diff --git a/.gitignore b/.gitignore index 0686354bc8..946326359b 100644 --- a/.gitignore +++ b/.gitignore @@ -301,3 +301,5 @@ Resources/MapImages /Content.Docfx/api/ /Content.Docfx/*site + +Resources/Prototypes/CM-SS14/Entities/Structures/Doors/airlocks.yml diff --git a/Content.Client/Audio/BackgroundAudioSystem.cs b/Content.Client/Audio/BackgroundAudioSystem.cs index 034ed16665..a655e36fb5 100644 --- a/Content.Client/Audio/BackgroundAudioSystem.cs +++ b/Content.Client/Audio/BackgroundAudioSystem.cs @@ -3,6 +3,7 @@ using Content.Client.GameTicking.Managers; using Content.Client.Lobby; using Content.Shared.CCVar; +using Content.Shared.Maps; using JetBrains.Annotations; using Robust.Client; using Robust.Client.GameObjects; @@ -11,6 +12,7 @@ using Robust.Client.State; using Robust.Shared.Audio; using Robust.Shared.Configuration; +using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; @@ -31,6 +33,8 @@ public sealed class BackgroundAudioSystem : EntitySystem [Dependency] private readonly IRobustRandom _robustRandom = default!; [Dependency] private readonly IStateManager _stateManager = default!; [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IMapManager _mappingManager = default!; + [Dependency] private readonly ITileDefinitionManager _tileDef = default!; private readonly AudioParams _ambientParams = new(-10f, 1, "Master", 0, 0, 0, true, 0f); private readonly AudioParams _lobbyParams = new(-5f, 1, "Master", 0, 0, 0, true, 0f); @@ -51,6 +55,7 @@ public sealed class BackgroundAudioSystem : EntitySystem private SoundCollectionPrototype _spaceAmbience = default!; private SoundCollectionPrototype _stationAmbience = default!; + private SoundCollectionPrototype _defaultAmbience = default!; public override void Initialize() { @@ -58,7 +63,8 @@ public override void Initialize() _stationAmbience = _prototypeManager.Index("StationAmbienceBase"); _spaceAmbience = _prototypeManager.Index("SpaceAmbienceBase"); - _currentCollection = _stationAmbience; + _defaultAmbience = _prototypeManager.Index("TileForestAmbience"); + _currentCollection = _defaultAmbience; // TODO: Ideally audio loading streamed better / we have more robust audio but this is quite annoying var cache = IoCManager.Resolve(); @@ -118,10 +124,33 @@ public override void Shutdown() EndLobbyMusic(); } + public override void FrameUpdate(float frameTime) + { + base.FrameUpdate(frameTime); + + if (_playMan.LocalPlayer?.ControlledEntity is not { } entity) + return; + + CheckAmbience(Transform(entity)); + } + private void CheckAmbience(TransformComponent xform) { if (xform.GridUid != null) - ChangeAmbience(_stationAmbience); + if (_mappingManager.TryGetGrid(xform.GridUid.Value, out var grid)) + { + var tile = grid.GetTileRef(xform.Coordinates); + var tileDef = (ContentTileDefinition)_tileDef[tile.Tile.TypeId]; + + if (tileDef.TileAmbientSound == "Stop") + ChangeAmbience(null); + + if (tileDef.TileAmbientSound != null && + _prototypeManager.TryIndex(tileDef.TileAmbientSound, out var soundCollection)) + ChangeAmbience(soundCollection); + else + return; + } else ChangeAmbience(_spaceAmbience); } @@ -137,7 +166,7 @@ private void EntParentChanged(ref EntParentChangedMessage message) CheckAmbience(message.Transform); } - private void ChangeAmbience(SoundCollectionPrototype newAmbience) + private void ChangeAmbience(SoundCollectionPrototype? newAmbience) { if (_currentCollection == newAmbience) return; diff --git a/Content.Client/Clothing/ClientClothingSystem.cs b/Content.Client/Clothing/ClientClothingSystem.cs index abf715191f..9a594714c4 100644 --- a/Content.Client/Clothing/ClientClothingSystem.cs +++ b/Content.Client/Clothing/ClientClothingSystem.cs @@ -41,6 +41,9 @@ public sealed class ClientClothingSystem : ClothingSystem {"pocket1", "POCKET1"}, {"pocket2", "POCKET2"}, {"suitstorage", "SUITSTORAGE"}, + {"underpants", "UNDERPANTS"}, + {"undershirt", "UNDERSHIRT"}, + {"socks", "SOCKS"}, }; [Dependency] private readonly IResourceCache _cache = default!; diff --git a/Content.Client/SimpleStation14/Overlays/Shaders/ColorTintOverlay.cs b/Content.Client/SimpleStation14/Overlays/Shaders/ColorTintOverlay.cs new file mode 100644 index 0000000000..1ea4274327 --- /dev/null +++ b/Content.Client/SimpleStation14/Overlays/Shaders/ColorTintOverlay.cs @@ -0,0 +1,56 @@ +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Enums; +using Robust.Shared.Prototypes; + +namespace Content.Client.SimpleStation14.Overlays +{ + /// + /// A simple overlay that applies a color tint to the screen. + /// + public sealed class ColorTintOverlay : Overlay + { + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] IEntityManager _entityManager = default!; + + public override bool RequestScreenTexture => true; + public override OverlaySpace Space => OverlaySpace.WorldSpace; + private readonly ShaderInstance _shader; + + /// + /// The color to tint the screen to as RGB on a scale of 0-1. + /// + public Vector3? tintColor = null; + /// + /// The percent to tint the screen by on a scale of 0-1. + /// + public float? tintAmount = null; + public Component? comp = null; + + public ColorTintOverlay() + { + IoCManager.InjectDependencies(this); + + _shader = _prototypeManager.Index("ColorTint").InstanceUnique(); + } + + protected override void Draw(in OverlayDrawArgs args) + { + if (ScreenTexture == null) return; + if (_playerManager.LocalPlayer?.ControlledEntity is not { Valid: true } player) return; + if (comp != null && !_entityManager.TryGetComponent(player, comp.GetType(), out IComponent? _)) return; + + _shader?.SetParameter("SCREEN_TEXTURE", ScreenTexture); + if (tintColor != null) _shader?.SetParameter("tint_color", (Vector3) tintColor); + if (tintAmount != null) _shader?.SetParameter("tint_amount", (float) tintAmount); + + var worldHandle = args.WorldHandle; + var viewport = args.WorldBounds; + worldHandle.SetTransform(Matrix3.Identity); + worldHandle.UseShader(_shader); + worldHandle.DrawRect(viewport, Color.White); + worldHandle.UseShader(null); + } + } +} diff --git a/Content.Client/SimpleStation14/Overlays/Shaders/NightvisionOverlay.cs b/Content.Client/SimpleStation14/Overlays/Shaders/NightvisionOverlay.cs new file mode 100644 index 0000000000..688e7b07cc --- /dev/null +++ b/Content.Client/SimpleStation14/Overlays/Shaders/NightvisionOverlay.cs @@ -0,0 +1,47 @@ +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Enums; +using Robust.Shared.Prototypes; +using Content.Shared.SimpleStation14.Overlays; + +namespace Content.Client.SimpleStation14.Overlays +{ + public sealed class NightvisionOverlay : Overlay + { + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] IEntityManager _entityManager = default!; + + + public override bool RequestScreenTexture => true; + public override OverlaySpace Space => OverlaySpace.WorldSpace; + private readonly ShaderInstance _shader; + + public NightvisionOverlay() + { + IoCManager.InjectDependencies(this); + _shader = _prototypeManager.Index("Nightvision").InstanceUnique(); + } + + protected override void Draw(in OverlayDrawArgs args) + { + if (ScreenTexture == null) return; + if (_playerManager.LocalPlayer?.ControlledEntity is not { Valid: true } player) return; + if (!_entityManager.TryGetComponent(player, out var component)) return; + + _shader?.SetParameter("SCREEN_TEXTURE", ScreenTexture); + + _shader?.SetParameter("tint", component.Tint); + _shader?.SetParameter("luminance_threshold", component.Strength); + _shader?.SetParameter("noise_amount", component.Noise); + + + var worldHandle = args.WorldHandle; + var viewport = args.WorldBounds; + worldHandle.SetTransform(Matrix3.Identity); + worldHandle.UseShader(_shader); + worldHandle.DrawRect(viewport, Color.White); + worldHandle.UseShader(null); + } + } +} diff --git a/Content.Client/SimpleStation14/Overlays/Systems/NightvisionSystem.cs b/Content.Client/SimpleStation14/Overlays/Systems/NightvisionSystem.cs new file mode 100644 index 0000000000..ff5226bc64 --- /dev/null +++ b/Content.Client/SimpleStation14/Overlays/Systems/NightvisionSystem.cs @@ -0,0 +1,142 @@ +using Robust.Client.GameObjects; +using Robust.Client.Graphics; +using Robust.Client.Player; +using Content.Shared.SimpleStation14.Overlays; +using Robust.Shared.Prototypes; +using Content.Shared.Actions.ActionTypes; +using Content.Shared.Actions; + +namespace Content.Client.SimpleStation14.Overlays; +public sealed class NightvisionSystem : EntitySystem +{ + [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly IOverlayManager _overlayMan = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly SharedActionsSystem _action = default!; + + private NightvisionOverlay _overlay = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnNightvisionStartup); + SubscribeLocalEvent(OnNightvisionShutdown); + + SubscribeLocalEvent(OnPlayerAttached); + SubscribeLocalEvent(OnPlayerDetached); + + SubscribeLocalEvent(OnNightvisionToggle); + + _overlay = new(); + } + + + private void OnNightvisionToggle(EntityUid uid, NightvisionComponent component, NightvisionToggleActionEvent args) + { + if (_player.LocalPlayer?.ControlledEntity == null) + { + Logger.Warning("Tried to toggle nightvision without a player!"); + return; + } + + // var uid = _player.LocalPlayer.ControlledEntity.Value; + // var component = _entityManager.GetComponent(uid); + + Logger.Warning("Toggled nightvision!"); + + if (!component.Enabled) + { + component.Enabled = true; + _overlayMan.AddOverlay(_overlay); + } + else + { + component.Enabled = false; + _overlayMan.RemoveOverlay(_overlay); + } + } + + /// + /// Handles adding the toggle Nightvision action to a player, based on the . + /// + /// The entity to add the action to. + /// The component to use for the action. + /// The entity that provides the action. Defaults to the entity itself. + /// Whether or not the action is enabled immediately. + private void AddNightvisionAction(EntityUid uid, NightvisionComponent component, EntityUid? provider = null, bool enabled = false) + { + if (!_prototypeManager.TryIndex("NightvisionToggleAction", out var toggleAction)) + return; + + var action = new InstantAction(toggleAction); + + action.DisplayName = component.ActionName; + action.Description = component.ActionDescription; + + if (component.Icon != null) + { + action.Icon = component.Icon; + + if (component.IconOn != null) + action.IconOn = component.IconOn; + } + else + + if (component.ToggleSound != null) + { + action.Sound = component.ToggleSound; + } + + _action.AddAction(uid, action, provider ?? uid); + + if (enabled) + { + _action.SetToggled(action, true); + } + } + + private void AddNightvision(EntityUid uid, NightvisionComponent component, EntityUid? provider = null) + { + if (component.Enabled) + { + _overlayMan.AddOverlay(_overlay); + } + + if (component.Toggle) + { + AddNightvisionAction(uid, component, uid, component.Enabled); + } + } + + private void RemoveOverlay(EntityUid uid, NightvisionComponent component) + { + _overlayMan.RemoveOverlay(_overlay); + } + + + private void OnNightvisionStartup(EntityUid uid, NightvisionComponent component, ComponentStartup args) + { + if (component.Granted && _player.LocalPlayer?.ControlledEntity == uid) + AddNightvision(uid, component); + } + + private void OnNightvisionShutdown(EntityUid uid, NightvisionComponent component, ComponentShutdown args) + { + if (component.Granted && _player.LocalPlayer?.ControlledEntity == uid) + RemoveOverlay(uid, component); + } + + private void OnPlayerAttached(EntityUid uid, NightvisionComponent component, PlayerAttachedEvent args) + { + if (component.Granted) + AddNightvision(uid, component); + } + + private void OnPlayerDetached(EntityUid uid, NightvisionComponent component, PlayerDetachedEvent args) + { + if (component.Granted) + RemoveOverlay(uid, component); + } +} diff --git a/Content.Server/CM-SS14/NPC/Components/NPCFacehuggerLeapComponent.cs b/Content.Server/CM-SS14/NPC/Components/NPCFacehuggerLeapComponent.cs new file mode 100644 index 0000000000..3b56dba224 --- /dev/null +++ b/Content.Server/CM-SS14/NPC/Components/NPCFacehuggerLeapComponent.cs @@ -0,0 +1,62 @@ +using Content.Server.NPC.Components; +using Content.Server.NPC.Systems; +using Robust.Shared.Audio; + +namespace Content.Server.CMSS14.NPC.Components; + +/// +/// Added to an NPC doing ranged combat. +/// +[RegisterComponent] +public sealed class NPCXenoJumpComponent : Component +{ + [ViewVariables] + public EntityUid Target; + + [ViewVariables] + public CombatStatus Status = CombatStatus.Normal; + + // Has the Facehugger jumped to the target yet? + [ViewVariables] + public bool HasJumped = false; + + // Most of the below is to deal with turrets. + + /// + /// If null it will instantly turn. + /// + [ViewVariables(VVAccess.ReadWrite)] public Angle? RotationSpeed; + + /// + /// Maximum distance, between our rotation and the target's, to consider shooting it. + /// + [ViewVariables(VVAccess.ReadWrite)] + public Angle AccuracyThreshold = Angle.FromDegrees(30); + + /// + /// How long until the last line of sight check. + /// + [ViewVariables(VVAccess.ReadWrite)] + public float LOSAccumulator = 0f; + + /// + /// Is the target still considered in LOS since the last check. + /// + [ViewVariables(VVAccess.ReadWrite)] + public bool TargetInLOS = false; + + /// + /// Delay after target is in LOS before we start shooting. + /// + [ViewVariables(VVAccess.ReadWrite)] + public float ShootDelay = 0.2f; + + [ViewVariables(VVAccess.ReadWrite)] + public float ShootAccumulator; + + /// + /// Sound to play if the target enters line of sight. + /// + [ViewVariables(VVAccess.ReadWrite)] + public SoundSpecifier? SoundTargetInLOS; +} diff --git a/Content.Server/CM-SS14/NPC/HTN/PrimitiveTasks/Operators/SoundOperator.cs b/Content.Server/CM-SS14/NPC/HTN/PrimitiveTasks/Operators/SoundOperator.cs new file mode 100644 index 0000000000..bcf2a725ab --- /dev/null +++ b/Content.Server/CM-SS14/NPC/HTN/PrimitiveTasks/Operators/SoundOperator.cs @@ -0,0 +1,28 @@ +using Content.Server.NPC; +using Content.Server.NPC.HTN; +using Content.Server.NPC.HTN.PrimitiveTasks; +using Robust.Shared.Audio; + +namespace Content.Server.CMSS14.NPC.HTN.PrimitiveTasks.Operators; + +public sealed class SoundOperator : HTNOperator +{ + private SharedAudioSystem _audio = default!; + + [DataField("sound", required: true)] + public SoundSpecifier Sound = default!; + + public override void Initialize(IEntitySystemManager sysManager) + { + base.Initialize(sysManager); + _audio = IoCManager.Resolve().GetEntitySystem(); + } + + public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTime) + { + var source = blackboard.GetValue(NPCBlackboard.Owner); + + _audio.PlayPvs(Sound, source); + return base.Update(blackboard, frameTime); + } +} diff --git a/Content.Server/CM-SS14/NPC/HTN/PrimitiveTasks/Operators/Xenos/XenoJumpOperator.cs b/Content.Server/CM-SS14/NPC/HTN/PrimitiveTasks/Operators/Xenos/XenoJumpOperator.cs new file mode 100644 index 0000000000..13877cbc34 --- /dev/null +++ b/Content.Server/CM-SS14/NPC/HTN/PrimitiveTasks/Operators/Xenos/XenoJumpOperator.cs @@ -0,0 +1,101 @@ +using System.Threading; +using System.Threading.Tasks; +using Content.Server.CMSS14.NPC.Components; +using Content.Server.NPC; +using Content.Server.NPC.Components; +using Content.Server.NPC.HTN; +using Content.Server.NPC.HTN.PrimitiveTasks; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Components; +using Robust.Shared.Audio; + +namespace Content.Server.CMSS14.NPC.HTN.PrimitiveTasks.Operators.Xenos; + +public sealed class XenoJumpOperator : HTNOperator +{ + [Dependency] private readonly IEntityManager _entManager = default!; + + /// + /// Key that contains the target entity. + /// + [DataField("targetKey", required: true)] + public string TargetKey = default!; + + /// + /// Minimum damage state that the target has to be in for us to consider attacking. + /// + [DataField("targetState")] + public MobState TargetState = MobState.Alive; + + // Like movement we add a component and pass it off to the dedicated system. + + public override async Task<(bool Valid, Dictionary? Effects)> Plan(NPCBlackboard blackboard, + CancellationToken cancelToken) + { + // Don't attack if they're already as wounded as we want them. + if (!blackboard.TryGetValue(TargetKey, out var target, _entManager)) + { + return (false, null); + } + + if (_entManager.TryGetComponent(target, out var mobState) && + mobState.CurrentState != null && + mobState.CurrentState > TargetState) + { + return (false, null); + } + + return (true, null); + } + + public override void Startup(NPCBlackboard blackboard) + { + base.Startup(blackboard); + var ranged = _entManager.EnsureComponent(blackboard.GetValue(NPCBlackboard.Owner)); + } + + public override void Shutdown(NPCBlackboard blackboard, HTNOperatorStatus status) + { + base.Shutdown(blackboard, status); + _entManager.RemoveComponent(blackboard.GetValue(NPCBlackboard.Owner)); + blackboard.Remove(TargetKey); + } + + public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTime) + { + base.Update(blackboard, frameTime); + var owner = blackboard.GetValue(NPCBlackboard.Owner); + var status = HTNOperatorStatus.Continuing; + + Logger.DebugS("htn", "XenoJumpOperator.Update()"); + + if (_entManager.TryGetComponent(owner, out var combat)) + { + // Success + if (combat.HasJumped) + { + status = HTNOperatorStatus.Finished; + } + else + { + switch (combat.Status) + { + case CombatStatus.TargetUnreachable: + case CombatStatus.NotInSight: + status = HTNOperatorStatus.Failed; + break; + case CombatStatus.Normal: + status = HTNOperatorStatus.Continuing; + break; + default: + status = HTNOperatorStatus.Failed; + break; + } + } + } + + Logger.DebugS("htn", "XenoJumpOperator.Update() - returning {0}", status); + + return status; + } +} diff --git a/Content.Server/CM-SS14/NPC/Systems/NPCCombatSystem.XenoJump.cs b/Content.Server/CM-SS14/NPC/Systems/NPCCombatSystem.XenoJump.cs new file mode 100644 index 0000000000..d6efc6fdca --- /dev/null +++ b/Content.Server/CM-SS14/NPC/Systems/NPCCombatSystem.XenoJump.cs @@ -0,0 +1,158 @@ +using Content.Server.NPC.Components; +using Content.Shared.CombatMode; +using Content.Shared.Interaction; +using Robust.Shared.Map; +using Robust.Shared.Physics.Components; +using Content.Server.CMSS14.NPC.Components; +using Content.Shared.Throwing; + +namespace Content.Server.NPC.Systems; + +public sealed partial class NPCCombatSystem +{ + // [Dependency] private readonly RotateToFaceSystem _rotate = default!; + [Dependency] private readonly ThrowingSystem _throwingSystem = default!; + + // // TODO: Don't predict for hitscan + // private const float ShootSpeed = 20f; + + // /// + // /// Cooldown on raycasting to check LOS. + // /// + // public const float UnoccludedCooldown = 0.2f; + + private void InitializeXenoJump() + { + SubscribeLocalEvent(OnXenoJumpStartup); + SubscribeLocalEvent(OnXenoJumpShutdown); + } + + private void OnXenoJumpStartup(EntityUid uid, NPCXenoJumpComponent component, ComponentStartup args) + { + if (TryComp(uid, out var combat)) + { + combat.IsInCombatMode = true; + } + else + { + component.Status = CombatStatus.Unspecified; + } + } + + private void OnXenoJumpShutdown(EntityUid uid, NPCXenoJumpComponent component, ComponentShutdown args) + { + if (TryComp(uid, out var combat)) + { + combat.IsInCombatMode = false; + } + } + + private void UpdateXenoJump(float frameTime) + { + var bodyQuery = GetEntityQuery(); + var xformQuery = GetEntityQuery(); + var combatQuery = GetEntityQuery(); + + foreach (var (comp, xform) in EntityQuery()) + { + if (comp.HasJumped) + { + continue; + } + + if (comp.Status == CombatStatus.Unspecified) + continue; + + if (!xformQuery.TryGetComponent(comp.Target, out var targetXform) || + !bodyQuery.TryGetComponent(comp.Target, out var targetBody)) + { + comp.Status = CombatStatus.TargetUnreachable; + comp.ShootAccumulator = 0f; + continue; + } + + if (targetXform.MapID != xform.MapID) + { + comp.Status = CombatStatus.TargetUnreachable; + comp.ShootAccumulator = 0f; + continue; + } + + if (combatQuery.TryGetComponent(comp.Owner, out var combatMode)) + { + combatMode.IsInCombatMode = true; + } + + comp.LOSAccumulator -= frameTime; + + var (worldPos, worldRot) = _transform.GetWorldPositionRotation(xform, xformQuery); + var (targetPos, targetRot) = _transform.GetWorldPositionRotation(targetXform, xformQuery); + + Logger.Debug(" 1 "); + + // We'll work out the projected spot of the target and shoot there instead of where they are. + var distance = (targetPos - worldPos).Length; + var oldInLos = comp.TargetInLOS; + + // TODO: Should be doing these raycasts in parallel + // Ideally we'd have 2 steps, 1. to go over the normal details for shooting and then 2. to handle beep / rotate / shoot + if (comp.LOSAccumulator < 0f) + { + comp.LOSAccumulator += UnoccludedCooldown; + comp.TargetInLOS = _interaction.InRangeUnobstructed(comp.Owner, comp.Target, distance + 0.1f); + } + + Logger.Debug(" 2 "); + + if (!comp.TargetInLOS) + { + comp.ShootAccumulator = 0f; + comp.Status = CombatStatus.TargetUnreachable; + continue; + } + + if (!oldInLos && comp.SoundTargetInLOS != null) + { + _audio.PlayPvs(comp.SoundTargetInLOS, comp.Owner); + } + + comp.ShootAccumulator += frameTime; + + if (comp.ShootAccumulator < comp.ShootDelay) + { + continue; + } + + Logger.Debug(" 3 "); + + var mapVelocity = targetBody.LinearVelocity; + var targetSpot = targetPos + mapVelocity * distance / ShootSpeed; + + // If we have a max rotation speed then do that. + var goalRotation = (targetSpot - worldPos).ToWorldAngle(); + var rotationSpeed = comp.RotationSpeed; + + if (!_rotate.TryRotateTo(comp.Owner, goalRotation, frameTime, comp.AccuracyThreshold, rotationSpeed?.Theta ?? double.MaxValue, xform)) + { + continue; + } + + Logger.Debug(" 4 "); + + if (!Enabled) + continue; + + // throwDirection equals the target's position minus the shooter's position + var throwDirection = targetSpot - worldPos; + + // throwStrength is the distance between the target and the shooter halved, then clamped between 0 and 2 + var throwStrength = Math.Clamp(throwDirection.Length / 2, 1f, 3); + + _throwingSystem.TryThrow(comp.Owner, throwDirection, throwStrength); + + Logger.Debug(" 5 "); + + comp.HasJumped = true; + } + } +} diff --git a/Content.Server/CM-SS14/Xenos/Components/FacehuggerComponent.cs b/Content.Server/CM-SS14/Xenos/Components/FacehuggerComponent.cs new file mode 100644 index 0000000000..12c3910f6f --- /dev/null +++ b/Content.Server/CM-SS14/Xenos/Components/FacehuggerComponent.cs @@ -0,0 +1,8 @@ +namespace Content.Server.CMSS14.Xenos.Components; + +[RegisterComponent] +public sealed class FacehuggerComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite)] [DataField("neutered")] + public bool Neutered = false; +} diff --git a/Content.Server/CM-SS14/Xenos/Systems/FacehuggerSystem.cs b/Content.Server/CM-SS14/Xenos/Systems/FacehuggerSystem.cs new file mode 100644 index 0000000000..f5ddd5e06f --- /dev/null +++ b/Content.Server/CM-SS14/Xenos/Systems/FacehuggerSystem.cs @@ -0,0 +1,24 @@ +using Content.Shared.Throwing; +using Content.Server.CMSS14.Xenos.Components; +using Content.Shared.Popups; +using Robust.Shared.Player; + +namespace Content.Server.CMSS14.Xenos; + +// Popup system dependency + +public sealed class FacehuggerSystem : EntitySystem +{ + [Dependency] private readonly SharedPopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnHit); + } + + private void OnHit(EntityUid uid, FacehuggerComponent component, ThrowDoHitEvent args) + { + _popup.PopupEntity(Loc.GetString("facehugger-hit"), uid, PopupType.MediumCaution); + } +} diff --git a/Content.Server/CM-SS14/Xenos/Systems/XenoSystem.cs b/Content.Server/CM-SS14/Xenos/Systems/XenoSystem.cs new file mode 100644 index 0000000000..19fa1d8cf3 --- /dev/null +++ b/Content.Server/CM-SS14/Xenos/Systems/XenoSystem.cs @@ -0,0 +1,65 @@ +using Content.Shared.Tag; +using Content.Shared.Popups; +using Content.Shared.Actions; +using Content.Shared.Actions.ActionTypes; +using Content.Shared.Pulling; +using Content.Shared.Administration.Logs; +using Robust.Server.Player; +using Robust.Shared.Prototypes; +using Content.Shared.CMSS14.Xenos; +using Content.Server.Humanoid; +using Content.Server.Preferences.Managers; +using Content.Shared.Mobs.Systems; +using Content.Shared.Inventory; + +namespace Content.Server.CMSS14.Xenos; + +public class HologramSystem : EntitySystem +{ + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] protected readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedPullingSystem _pulling = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly IPlayerManager _playerManager = null!; + [Dependency] private readonly HumanoidAppearanceSystem _humanoidSystem = default!; + [Dependency] private readonly MobStateSystem _mobStateSystem = default!; + [Dependency] private readonly TagSystem _tag = default!; + [Dependency] private readonly IServerPreferencesManager _prefs = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly SharedActionsSystem _actionSystem = default!; + + public readonly Dictionary ClonesWaitingForMind = new(); + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(Startup); + SubscribeLocalEvent(Shutdown); + SubscribeLocalEvent(OnXenoRestEvent); + } + + private void Startup(EntityUid uid, XenoComponent component, ComponentStartup args) + { + if (_prototypeManager.TryIndex(("XenoRestAction"), out var restAction)) + { + _actionSystem.AddAction(uid, new InstantAction(restAction), null); + } + } + + private void Shutdown(EntityUid uid, XenoComponent component, ComponentShutdown args) + { + if (_prototypeManager.TryIndex(("XenoRestAction"), out var restAction)) + { + _actionSystem.RemoveAction(uid, new InstantAction(restAction)); + } + } + + private void OnXenoRestEvent(EntityUid xeno, XenoComponent xenoComp, XenoRestActionEvent args) + { + RaiseLocalEvent(xeno, new SleepActionEvent()); + } +} diff --git a/Content.Server/Ghost/GhostSystem.cs b/Content.Server/Ghost/GhostSystem.cs index 5213ec83c0..6243f3b8fb 100644 --- a/Content.Server/Ghost/GhostSystem.cs +++ b/Content.Server/Ghost/GhostSystem.cs @@ -162,17 +162,20 @@ private void OnGhostExamine(EntityUid uid, GhostComponent component, ExaminedEve private void OnMindRemovedMessage(EntityUid uid, GhostComponent component, MindRemovedMessage args) { - DeleteEntity(uid); + if (!EntityManager.HasComponent(uid)) + DeleteEntity(uid); } private void OnMindUnvisitedMessage(EntityUid uid, GhostComponent component, MindUnvisitedMessage args) { - DeleteEntity(uid); + if (!EntityManager.HasComponent(uid)) + DeleteEntity(uid); } private void OnPlayerDetached(EntityUid uid, GhostComponent component, PlayerDetachedEvent args) { - QueueDel(uid); + if (!EntityManager.HasComponent(uid)) + QueueDel(uid); } private void OnGhostWarpsRequest(GhostWarpsRequestEvent msg, EntitySessionEventArgs args) diff --git a/Content.Server/NPC/Systems/NPCCombatSystem.cs b/Content.Server/NPC/Systems/NPCCombatSystem.cs index a06fd6a287..19bb19bfcc 100644 --- a/Content.Server/NPC/Systems/NPCCombatSystem.cs +++ b/Content.Server/NPC/Systems/NPCCombatSystem.cs @@ -34,6 +34,7 @@ public override void Initialize() base.Initialize(); InitializeMelee(); InitializeRanged(); + InitializeXenoJump(); } public override void Update(float frameTime) @@ -41,5 +42,6 @@ public override void Update(float frameTime) base.Update(frameTime); UpdateMelee(frameTime); UpdateRanged(frameTime); + UpdateXenoJump(frameTime); } } diff --git a/Content.Server/SimpleStation14/Administration/Commands/BriefCommand.cs b/Content.Server/SimpleStation14/Administration/Commands/BriefCommand.cs new file mode 100644 index 0000000000..4787737234 --- /dev/null +++ b/Content.Server/SimpleStation14/Administration/Commands/BriefCommand.cs @@ -0,0 +1,144 @@ +using System.Linq; +using Content.Server.GameTicking; +using Content.Server.Players; +using Content.Shared.Administration; +using Content.Shared.Roles; +using Robust.Server.Player; +using Robust.Shared.Console; +using Robust.Shared.Prototypes; + +namespace Content.Server.Administration.Commands.Brief +{ + [AdminCommand(AdminFlags.Admin)] + public sealed class BriefCommand : IConsoleCommand + { + [Dependency] private readonly IEntityManager _entities = default!; + [Dependency] private readonly IEntitySystemManager _entitysys = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + + public string Command => "brief"; + public string Description => "Makes you a mob of choice until the command is rerun."; + public string Help => $"Usage: {Command} "; + + public void Execute(IConsoleShell shell, string argStr, string[] args) + { + var player = shell.Player as IPlayerSession; + if (player == null) + { + shell.WriteLine("You aren't a player."); + return; + } + + var mind = player.ContentData()?.Mind; + + if (mind == null) + { + shell.WriteLine("You can't spawn without a mind."); + return; + } + + if (mind.VisitingEntity != default) + { + var didYouBrief = false; + if (args.Length >= 4) + if (args[3].ToLower() == "true") + didYouBrief = true; + + foreach (var officer in _entities.EntityQuery(true)) + { + if (officer.Owner == mind.VisitingEntity) + { + didYouBrief = true; + player.ContentData()!.Mind?.UnVisit(); + if (mind.CurrentEntity != null) _entities.RemoveComponent((EntityUid) mind.CurrentEntity); + _entities.QueueDeleteEntity(officer.Owner); + return; + } + } + + if (didYouBrief == false) + { + shell.WriteError("You are visiting something other than a brief already."); + return; + } + } + + var outfit = "CentcomGear"; + if (args.Length >= 1) + if (_prototypeManager.TryIndex(args[0], out var outfitProto)) + outfit = outfitProto.ID; + else + { + shell.WriteError("Given outfit is invalid."); + return; + } + + var coordinates = player.AttachedEntity != null + ? _entities.GetComponent(player.AttachedEntity.Value).Coordinates + : _entitysys.GetEntitySystem().GetObserverSpawnPoint(); + + var entName = "MobHuman"; + if (args.Length >= 3) + entName = args[2]; + _prototypeManager.TryIndex(entName, out var entProto); + if (entProto == null) + { + shell.WriteError("Entity prototype is invalid."); + return; + } + + var brief = _entities.SpawnEntity(entName, coordinates); + _entities.EnsureComponent(brief); + _entities.TryGetComponent(brief, out var briefTransform); + if (briefTransform != null) + briefTransform.AttachToGridOrMap(); + + if (args.Length >= 2) + _entities.GetComponent(brief).EntityName = args[1]; + + if (mind.CurrentEntity != null) _entities.EnsureComponent((EntityUid) mind.CurrentEntity); + mind.Visit(brief); + SetOutfitCommand.SetOutfit(brief, outfit, _entities); + } + + public CompletionResult GetCompletion(IConsoleShell shell, string[] args) + { + if (args.Length == 1) + { + var options = IoCManager.Resolve() + .EnumeratePrototypes() + .Select(p => new CompletionOption(p.ID)) + .OrderBy(p => p.Value); + + return CompletionResult.FromHintOptions(options, Loc.GetString("brief-command-arg-outfit")); + } + if (args.Length == 2) + { + // what a great solution + List list = new(); + list.Add(""); + return CompletionResult.FromHintOptions(list, Loc.GetString("brief-command-arg-name")); + } + if (args.Length == 3) + { + var options = IoCManager.Resolve() + .EnumeratePrototypes() + .Where(p => p.ID.StartsWith("Mob")) + .Select(p => new CompletionOption(p.ID)) + .OrderBy(p => p.Value); + + return CompletionResult.FromHintOptions(options, Loc.GetString("brief-command-arg-species")); + } + if (args.Length == 4) + { + // what a great solution 2 + List list = new(); + list.Add("true"); + list.Add("false"); + return CompletionResult.FromHintOptions(list, Loc.GetString("brief-command-arg-force")); + } + + return CompletionResult.Empty; + } + } +} diff --git a/Content.Server/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs index 0fb12fd55b..c3a7b082ba 100644 --- a/Content.Server/VendingMachines/VendingMachineSystem.cs +++ b/Content.Server/VendingMachines/VendingMachineSystem.cs @@ -20,6 +20,9 @@ using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Random; +using Content.Shared.Inventory; +using Content.Shared.Hands.Components; +using Content.Shared.Clothing.Components; namespace Content.Server.VendingMachines { @@ -35,6 +38,7 @@ public sealed class VendingMachineSystem : SharedVendingMachineSystem [Dependency] private readonly PricingSystem _pricing = default!; [Dependency] private readonly ThrowingSystem _throwingSystem = default!; [Dependency] private readonly UserInterfaceSystem _userInterfaceSystem = default!; + [Dependency] private readonly InventorySystem _inventorySystem = default!; private ISawmill _sawmill = default!; @@ -236,7 +240,7 @@ public bool IsAuthorized(EntityUid uid, EntityUid? sender, VendingMachineCompone /// The type of inventory the item is from /// The prototype ID of the item /// Whether the item should be thrown in a random direction after ejection - public void TryEjectVendorItem(EntityUid uid, InventoryType type, string itemId, bool throwItem, VendingMachineComponent? vendComponent = null) + public void TryEjectVendorItem(EntityUid uid, InventoryType type, string itemId, bool throwItem, VendingMachineComponent? vendComponent = null, EntityUid? sender = null) { if (!Resolve(uid, ref vendComponent)) return; @@ -272,6 +276,7 @@ public void TryEjectVendorItem(EntityUid uid, InventoryType type, string itemId, vendComponent.Ejecting = true; vendComponent.NextItemToEject = entry.ID; vendComponent.ThrowNextItem = throwItem; + vendComponent.NextEntityToEjectTo = sender; entry.Amount--; UpdateVendingMachineInterfaceState(vendComponent); TryUpdateVisualState(uid, vendComponent); @@ -288,7 +293,7 @@ public void AuthorizedVend(EntityUid uid, EntityUid sender, InventoryType type, { if (IsAuthorized(uid, sender, component)) { - TryEjectVendorItem(uid, type, itemId, component.CanShoot, component); + TryEjectVendorItem(uid, type, itemId, component.CanShoot, component, sender); } } @@ -374,6 +379,25 @@ private void EjectItem(VendingMachineComponent vendComponent, bool forceEject = var direction = new Vector2(_random.NextFloat(-range, range), _random.NextFloat(-range, range)); _throwingSystem.TryThrow(ent, direction, vendComponent.NonLimitedEjectForce); } + else if (vendComponent.NextEntityToEjectTo != null && vendComponent.EquipOnEject && + EntityManager.TryGetComponent(vendComponent.NextEntityToEjectTo, out var hands)) + { + var uid = vendComponent.NextEntityToEjectTo; + var slot = ""; + + if (EntityManager.TryGetComponent(ent, out var clothingComp)) + { + if (_inventorySystem.TryGetSlots(uid.Value, out var slotDefinitions) && slotDefinitions != null) + { + foreach (var slotCur in slotDefinitions) + { + if (!clothingComp.Slots.HasFlag(slotCur.SlotFlags)) continue; + slot = slotCur.Name; + } + } + } + _inventorySystem.TryEquip(uid.Value, ent, slot); + } vendComponent.NextItemToEject = null; vendComponent.ThrowNextItem = false; diff --git a/Content.Shared/CM-SS14/Xenos/Components/XenoComponent.cs b/Content.Shared/CM-SS14/Xenos/Components/XenoComponent.cs new file mode 100644 index 0000000000..2144043f92 --- /dev/null +++ b/Content.Shared/CM-SS14/Xenos/Components/XenoComponent.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.CMSS14.Xenos; + +[RegisterComponent] +public sealed class XenoComponent : Component +{ + +} diff --git a/Content.Shared/CM-SS14/Xenos/Components/XenoWeedsComponent.cs b/Content.Shared/CM-SS14/Xenos/Components/XenoWeedsComponent.cs new file mode 100644 index 0000000000..50a250018f --- /dev/null +++ b/Content.Shared/CM-SS14/Xenos/Components/XenoWeedsComponent.cs @@ -0,0 +1,38 @@ +using Content.Shared.Damage; + +namespace Content.Shared.CMSS14.Xenos.Weeds; + +[RegisterComponent] +public sealed class XenoWeedssComponent : Component +{ + /// + /// List of entities present on the weeds. + [ViewVariables] + public List PresentEntities = new List(); + + /// + /// Damage specifier for the weeds. + /// + [DataField("damage", required: true)] + [ViewVariables(VVAccess.ReadWrite)] + public DamageSpecifier Damage = default!; + + /// + /// Multiplier for damage when healing a sleeping entity. + /// + [DataField("restMultiplier")] + public float RestMultiplier = 3f; + + /// + /// Time between each heal, with a datafield. + /// + [ViewVariables] + [DataField("healTime")] + public float HealTime = 1f; + + /// . + /// Time until the next heal + /// + [ViewVariables] + public TimeSpan NextHealTime = TimeSpan.Zero; +} diff --git a/Content.Shared/CM-SS14/Xenos/Systems/SharedXenoSystem.cs b/Content.Shared/CM-SS14/Xenos/Systems/SharedXenoSystem.cs new file mode 100644 index 0000000000..da25cffbc3 --- /dev/null +++ b/Content.Shared/CM-SS14/Xenos/Systems/SharedXenoSystem.cs @@ -0,0 +1,5 @@ +using Content.Shared.Actions; + +namespace Content.Shared.CMSS14.Xenos; + +public sealed class XenoRestActionEvent : InstantActionEvent { } diff --git a/Content.Shared/CM-SS14/Xenos/Systems/SharedXenoWeedsSystem.cs b/Content.Shared/CM-SS14/Xenos/Systems/SharedXenoWeedsSystem.cs new file mode 100644 index 0000000000..6077bae3a0 --- /dev/null +++ b/Content.Shared/CM-SS14/Xenos/Systems/SharedXenoWeedsSystem.cs @@ -0,0 +1,89 @@ +using Robust.Shared.Physics.Events; +using Content.Shared.Popups; +using Robust.Shared.Timing; +using Content.Shared.CMSS14.Xenos; +using Content.Shared.Mobs.Systems; +using Content.Shared.Bed.Sleep; +using Content.Shared.Damage; + +namespace Content.Shared.CMSS14.Xenos.Weeds; + +public sealed class SharedXenoWeedsSystem : EntitySystem +{ + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] protected readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly MobStateSystem _mobStateSystem = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly DamageableSystem _damageableSystem = default!; + + // Subscribe to the start collide and end collide events. + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnStartCollide); + SubscribeLocalEvent(OnEndCollide); + } + + // Every frame, run code on each entity in the weeds list. + public override void Update(float frameTime) + { + base.Update(frameTime); + foreach (var weeds in EntityManager.EntityQuery()) + { + if (_timing.CurTime < weeds.NextHealTime) + continue; + + weeds.NextHealTime += TimeSpan.FromSeconds(weeds.HealTime); + + foreach (var entity in weeds.PresentEntities) + { + if (_mobStateSystem.IsDead(entity)) + continue; + + var damage = weeds.Damage; + + if (HasComp(entity) || _mobStateSystem.IsCritical(entity)) + damage *= weeds.RestMultiplier; + + _damageableSystem.TryChangeDamage(entity, damage, true, origin: weeds.Owner); + } + } + } + + // When an entity starts colliding with the weeds, add it to the list of entities present on the weeds. + private void OnStartCollide(EntityUid uid, XenoWeedssComponent component, ref StartCollideEvent args) + { + var target = args.OtherFixture.Body.Owner; + if (!component.PresentEntities.Contains(target) && _entityManager.TryGetComponent(target, out var xenoComponent)) + { + if (component.PresentEntities.Count > 3) + { + if (!_timing.InPrediction) + { + _popup.PopupEntity(Loc.GetString("xeno-weeds-list-too-big"), target, target); + } + return; + } + + // If predicting, don't play the sound. + if (!_timing.InPrediction) + { + _popup.PopupEntity(Loc.GetString("xeno-weeds-add-to-list"), target, target); + } + component.PresentEntities.Add(target); + } + } + + // When an entity stops colliding with the weeds, remove it from the list of entities present on the weeds. + private void OnEndCollide(EntityUid uid, XenoWeedssComponent component, ref EndCollideEvent args) + { + var target = args.OtherFixture.Body.Owner; + if (component.PresentEntities.Contains(target)) + { + component.PresentEntities.Remove(target); + } + } + +} diff --git a/Content.Shared/Inventory/SlotFlags.cs b/Content.Shared/Inventory/SlotFlags.cs index 8d5e33e348..9abb5cf8d2 100644 --- a/Content.Shared/Inventory/SlotFlags.cs +++ b/Content.Shared/Inventory/SlotFlags.cs @@ -26,5 +26,8 @@ public enum SlotFlags LEGS = 1 << 13, FEET = 1 << 14, SUITSTORAGE = 1 << 15, + UNDERPANTS = 1 << 16, + UNDERSHIRT = 1 << 17, + SOCKS = 1 << 18, All = ~NONE, } diff --git a/Content.Shared/Maps/ContentTileDefinition.cs b/Content.Shared/Maps/ContentTileDefinition.cs index 4a4555c560..7aacdb253a 100644 --- a/Content.Shared/Maps/ContentTileDefinition.cs +++ b/Content.Shared/Maps/ContentTileDefinition.cs @@ -74,6 +74,8 @@ public sealed class ContentTileDefinition : IPrototype, IInheritingPrototype, IT /// [DataField("weather")] public bool Weather = false; + [DataField("tileAmbientSound")] public String? TileAmbientSound { get;} + public void AssignTileId(ushort id) { TileId = id; diff --git a/Content.Shared/SimpleStation14/Administration/BriefOfficerComponent.cs b/Content.Shared/SimpleStation14/Administration/BriefOfficerComponent.cs new file mode 100644 index 0000000000..e5c5cafe5a --- /dev/null +++ b/Content.Shared/SimpleStation14/Administration/BriefOfficerComponent.cs @@ -0,0 +1,6 @@ +namespace Content.Shared.Administration +{ + [RegisterComponent] + public sealed class BriefOfficerComponent : Component + {} +} diff --git a/Content.Shared/SimpleStation14/Shaders/NightvisionComponent.cs b/Content.Shared/SimpleStation14/Shaders/NightvisionComponent.cs new file mode 100644 index 0000000000..6acab16caf --- /dev/null +++ b/Content.Shared/SimpleStation14/Shaders/NightvisionComponent.cs @@ -0,0 +1,98 @@ +using Content.Shared.Actions; +using Robust.Shared.Audio; +using Robust.Shared.Utility; + +namespace Content.Shared.SimpleStation14.Overlays; + + +public sealed class NightvisionToggleActionEvent : InstantActionEvent { } + + +[RegisterComponent] +public sealed class NightvisionComponent : Component +{ + /// + /// The tint color to apply to the screen, in RGB. Defaults to green. + /// + [DataField("tint"), ViewVariables(VVAccess.ReadWrite)] + public Vector3 Tint = new(0.5f, 0.5f, 0.5f); + + /// + /// The amount to boost the brightness of the screen. + /// + [DataField("strength"), ViewVariables(VVAccess.ReadWrite)] + public float Strength = 5f; + + /// + /// The intensity of the noise effect. + /// + [DataField("noise"), ViewVariables(VVAccess.ReadWrite)] + public float Noise = 0.0f; + + /// + /// Whether or not the nightvision applies to the owner. + /// Would be false for equipment that grants nightvision. + /// + /// + /// USEINHAND EQUIPCLOTHING + /// + [DataField("granted"), ViewVariables(VVAccess.ReadWrite)] + public bool Granted = true; + + /// + /// The entity that granted this nightvision, if valid + /// + [ViewVariables(VVAccess.ReadOnly)] + public EntityUid? GranterUid; + + /// + /// Can the nightvision be toggled on and off via action? + /// If true, grants an action. Action details can be defined in the YAML. + /// + [DataField("toggle"), ViewVariables(VVAccess.ReadOnly)] + public bool Toggle = false; + + /// + /// Is the nightvision currently enabled? + /// + [DataField("enabled"), ViewVariables(VVAccess.ReadWrite)] + public bool Enabled = true; + + + // For customizing the action. + + /// + /// The name of the action. + /// + [DataField("actionName")] + public string ActionName = "actions-nightvision-toggle-name"; + + /// + /// The description of the action. + /// + [DataField("actionDescription")] + public string ActionDescription = "actions-nightvision-toggle-description"; + + /// + /// Icon state for the action. + /// If null, the entity's icon will be used. + /// + [DataField("icon")] + public SpriteSpecifier? Icon; + + /// + /// State for when the night vision is toggled on. + /// If null, the regular state will be used. + /// + /// + /// This *must* be used with , not by itself. + /// + [DataField("iconOn")] + public SpriteSpecifier? IconOn; + + /// + /// Sound to play when the nightvision is toggled. + /// + [DataField("toggleSound")] + public SoundSpecifier? ToggleSound; +} diff --git a/Content.Shared/VendingMachines/VendingMachineComponent.cs b/Content.Shared/VendingMachines/VendingMachineComponent.cs index 52264aa4f3..d70b6ec908 100644 --- a/Content.Shared/VendingMachines/VendingMachineComponent.cs +++ b/Content.Shared/VendingMachines/VendingMachineComponent.cs @@ -47,9 +47,16 @@ public sealed class VendingMachineComponent : Component public bool DispenseOnHitCoolingDown; public string? NextItemToEject; + public EntityUid? NextEntityToEjectTo; public bool Broken; + /// + /// When true, will automatically equip dispensed items + /// + [DataField("equipOnEject")] + public bool EquipOnEject = false; + /// /// When true, will forcefully throw any object it dispenses /// diff --git a/README.md b/README.md index 8c13928fdd..35358a952c 100644 --- a/README.md +++ b/README.md @@ -1,32 +1,49 @@

Space Station 14

-Space Station 14 is a remake of SS13 that runs on [Robust Toolbox](https://github.com/space-wizards/RobustToolbox), our homegrown engine written in C#. +Welcome to CM-SS14 a colonial marines inspired remake of the original CM-SS13 running on [Robust Toolbox](https://github.com/space-wizards/RobustToolbox). -This is the primary repo for Space Station 14. To prevent people forking RobustToolbox, a "content" pack is loaded by the client and server. This content pack contains everything needed to play the game on one specific server. - -If you want to host or create content for SS14, this is the repo you need. It contains both RobustToolbox and the content pack for development of new content packs. +This is the primary repo for CM-SS14 and contains everything you need to use to run you own server. ## Links -[Website](https://spacestation14.io/) | [Discord](https://discord.ss14.io/) | [Forum](https://forum.spacestation14.io/) | [Steam](https://store.steampowered.com/app/1255460/Space_Station_14/) | [Standalone Download](https://spacestation14.io/about/nightlies/) +| [Discord](https://discord.gg/49KeKwXc8g) | -## Documentation/Wiki + -Our [docs site](https://docs.spacestation14.io/) has documentation on SS14s content, engine, game design and more. We also have lots of resources for new contributors to the project. + ## Contributing -We are happy to accept contributions from anybody. Get in Discord if you want to help. We've got a [list of issues](https://github.com/space-wizards/space-station-14-content/issues) that need to be done and anybody can pick them up. Don't be afraid to ask for help either! +We are happy to accept contributions from anybody. Get in Discord if you want to help. We've got a [list of issues](https://github.com/Park-Station/CM-SS14/issues) that need to be done and anybody can pick them up. Don't be afraid to ask for help either! -We are not currently accepting translations of the game on our main repository. If you would like to translate the game into another language consider creating a fork or contributing to a fork. +Refer to [the space wizards guide](https://docs.spacestation14.io/getting-started/dev-setup) for general information about setting up a dev environment but keep in mind that CM-SS14 is a distant fork of space wizards' SS14 and not everything applies. We provide some scripts for making the job easier. ## Building -1. Clone this repo. -2. Run `RUN_THIS.py` to init submodules and download the engine. -3. Compile the solution. +### Build dependencies + +> - Git +> - .NET SDK 7.0 or higher +> - python 3.7 or higher + + +### Windows + +> 1. Clone this repository. +> 2. Run `RUN_THIS.py` to init submodules and download the engine, or run `git submodule update --init --recursive` in a terminal. +> 3. Run the `Scripts/bat/run1buildDebug.bat` +> 4. Run the `Scripts/bat/run2configDev.bat` if you need other configurations run other config scripts. +> 5. Run both the `Scripts/bat/run3server.bat` and `Scripts/bat/run4client.bat` +> 6. Connect to localhost and play. + +### Linux -[More detailed instructions on building the project.](https://docs.spacestation14.io/getting-started/dev-setup) +> 1. Clone this repository. +> 2. Run `RUN_THIS.py` to init submodules and download the engine, or run `git submodule update --init --recursive` in a terminal. +> 3. Run the `Scripts/sh/run1buildDebug.sh` +> 4. Run the `Scripts/sh/run2configDev.sh` if you need other configurations run other config scripts. +> 5. Run both the `Scripts/sh/run3server.bat` and `scripts/sh/run4client.sh` +> 6. Connect to localhost and play. ## License diff --git a/Resources/Audio/CM-SS14/Ambience/Terrains/caveinterior_1.ogg b/Resources/Audio/CM-SS14/Ambience/Terrains/caveinterior_1.ogg new file mode 100644 index 0000000000..acaca767db Binary files /dev/null and b/Resources/Audio/CM-SS14/Ambience/Terrains/caveinterior_1.ogg differ diff --git a/Resources/Audio/CM-SS14/Ambience/Terrains/desert_1.ogg b/Resources/Audio/CM-SS14/Ambience/Terrains/desert_1.ogg new file mode 100644 index 0000000000..5bb0962e6a Binary files /dev/null and b/Resources/Audio/CM-SS14/Ambience/Terrains/desert_1.ogg differ diff --git a/Resources/Audio/CM-SS14/Ambience/Terrains/forest_1.ogg b/Resources/Audio/CM-SS14/Ambience/Terrains/forest_1.ogg new file mode 100644 index 0000000000..da031b0a2e Binary files /dev/null and b/Resources/Audio/CM-SS14/Ambience/Terrains/forest_1.ogg differ diff --git a/Resources/Audio/CM-SS14/Ambience/Terrains/jungle_1.ogg b/Resources/Audio/CM-SS14/Ambience/Terrains/jungle_1.ogg new file mode 100644 index 0000000000..c6b404b6d5 Binary files /dev/null and b/Resources/Audio/CM-SS14/Ambience/Terrains/jungle_1.ogg differ diff --git a/Resources/Audio/CM-SS14/Effects/Items/nightvision.ogg b/Resources/Audio/CM-SS14/Effects/Items/nightvision.ogg new file mode 100644 index 0000000000..6e24e7c340 Binary files /dev/null and b/Resources/Audio/CM-SS14/Effects/Items/nightvision.ogg differ diff --git a/Resources/Audio/CM-SS14/Mobs/Xenos/Facehuggers/attack.ogg b/Resources/Audio/CM-SS14/Mobs/Xenos/Facehuggers/attack.ogg new file mode 100644 index 0000000000..98e1f28441 Binary files /dev/null and b/Resources/Audio/CM-SS14/Mobs/Xenos/Facehuggers/attack.ogg differ diff --git a/Resources/Audio/CM-SS14/Mobs/Xenos/Facehuggers/death.ogg b/Resources/Audio/CM-SS14/Mobs/Xenos/Facehuggers/death.ogg new file mode 100644 index 0000000000..ed6c8a7a44 Binary files /dev/null and b/Resources/Audio/CM-SS14/Mobs/Xenos/Facehuggers/death.ogg differ diff --git a/Resources/Audio/CM-SS14/Mobs/Xenos/Facehuggers/idle.ogg b/Resources/Audio/CM-SS14/Mobs/Xenos/Facehuggers/idle.ogg new file mode 100644 index 0000000000..a1e7f672ac Binary files /dev/null and b/Resources/Audio/CM-SS14/Mobs/Xenos/Facehuggers/idle.ogg differ diff --git a/Resources/Audio/CM-SS14/Mobs/Xenos/Facehuggers/leap.ogg b/Resources/Audio/CM-SS14/Mobs/Xenos/Facehuggers/leap.ogg new file mode 100644 index 0000000000..f87d457080 Binary files /dev/null and b/Resources/Audio/CM-SS14/Mobs/Xenos/Facehuggers/leap.ogg differ diff --git a/Resources/Audio/CM-SS14/Mobs/Xenos/Facehuggers/pain.ogg b/Resources/Audio/CM-SS14/Mobs/Xenos/Facehuggers/pain.ogg new file mode 100644 index 0000000000..1c43571a18 Binary files /dev/null and b/Resources/Audio/CM-SS14/Mobs/Xenos/Facehuggers/pain.ogg differ diff --git a/Resources/Locale/en-US/simplestation14/administration/commands/brief-command.ftl b/Resources/Locale/en-US/simplestation14/administration/commands/brief-command.ftl new file mode 100644 index 0000000000..cbe1b3f7a2 --- /dev/null +++ b/Resources/Locale/en-US/simplestation14/administration/commands/brief-command.ftl @@ -0,0 +1,4 @@ +brief-command-arg-outfit = Outfit +brief-command-arg-name = Name +brief-command-arg-species = Entity Prototype +brief-command-arg-force = Force diff --git a/Resources/Maps/Test/admin_test_arena.yml b/Resources/Maps/Test/admin_test_arena.yml index b4cc10f759..6f5bbd1a60 100644 --- a/Resources/Maps/Test/admin_test_arena.yml +++ b/Resources/Maps/Test/admin_test_arena.yml @@ -317,18 +317,6 @@ entities: - pos: -8.5,7.5 parent: 104 type: Transform -- uid: 37 - type: AirlockCommandLocked - components: - - pos: -0.5,-5.5 - parent: 104 - type: Transform -- uid: 38 - type: AirlockCommandLocked - components: - - pos: -0.5,4.5 - parent: 104 - type: Transform - uid: 39 type: WallRiveted components: diff --git a/Resources/Maps/aspid.yml b/Resources/Maps/aspid.yml deleted file mode 100644 index 9b715c5652..0000000000 --- a/Resources/Maps/aspid.yml +++ /dev/null @@ -1,148346 +0,0 @@ -meta: - format: 3 - name: DemoStation - author: Space-Wizards - postmapinit: false -tilemap: - 0: Space - 1: FloorArcadeBlue - 2: FloorArcadeBlue2 - 3: FloorArcadeRed - 4: FloorAsteroidCoarseSand0 - 5: FloorAsteroidCoarseSandDug - 6: FloorAsteroidIronsand1 - 7: FloorAsteroidIronsand2 - 8: FloorAsteroidIronsand3 - 9: FloorAsteroidIronsand4 - 10: FloorAsteroidSand - 11: FloorAsteroidTile - 12: FloorBar - 13: FloorBasalt - 14: FloorBlue - 15: FloorBlueCircuit - 16: FloorBoxing - 17: FloorCarpetClown - 18: FloorCarpetOffice - 19: FloorCave - 20: FloorCaveDrought - 21: FloorClown - 22: FloorDark - 23: FloorDarkDiagonal - 24: FloorDarkDiagonalMini - 25: FloorDarkHerringbone - 26: FloorDarkMini - 27: FloorDarkMono - 28: FloorDarkOffset - 29: FloorDarkPavement - 30: FloorDarkPavementVertical - 31: FloorDarkPlastic - 32: FloorDesert - 33: FloorDirt - 34: FloorEighties - 35: FloorElevatorShaft - 36: FloorFlesh - 37: FloorFreezer - 38: FloorGlass - 39: FloorGold - 40: FloorGrass - 41: FloorGrassDark - 42: FloorGrassJungle - 43: FloorGrassLight - 44: FloorGreenCircuit - 45: FloorGym - 46: FloorHydro - 47: FloorKitchen - 48: FloorLaundry - 49: FloorLino - 50: FloorLowDesert - 51: FloorMetalDiamond - 52: FloorMime - 53: FloorMono - 54: FloorPlanetDirt - 55: FloorPlanetGrass - 56: FloorPlastic - 57: FloorRGlass - 58: FloorReinforced - 59: FloorRockVault - 60: FloorShowroom - 61: FloorShuttleBlue - 62: FloorShuttleOrange - 63: FloorShuttlePurple - 64: FloorShuttleRed - 65: FloorShuttleWhite - 66: FloorSilver - 67: FloorSnow - 68: FloorSteel - 69: FloorSteelDiagonal - 70: FloorSteelDiagonalMini - 71: FloorSteelDirty - 72: FloorSteelHerringbone - 73: FloorSteelMini - 74: FloorSteelMono - 75: FloorSteelOffset - 76: FloorSteelPavement - 77: FloorSteelPavementVertical - 78: FloorTechMaint - 79: FloorTechMaint2 - 80: FloorTechMaint3 - 81: FloorWhite - 82: FloorWhiteDiagonal - 83: FloorWhiteDiagonalMini - 84: FloorWhiteHerringbone - 85: FloorWhiteMini - 86: FloorWhiteMono - 87: FloorWhiteOffset - 88: FloorWhitePavement - 89: FloorWhitePavementVertical - 90: FloorWhitePlastic - 91: FloorWood - 92: FloorWoodTile - 93: Lattice - 94: Plating -entities: -- uid: 0 - components: - - type: MetaData - - type: Transform - - index: 2 - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - parallax: AspidParallax - type: Parallax -- uid: 1 - components: - - type: MetaData - - pos: 0.13793182,0.57805127 - parent: 0 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: XgAAAEoAAAFKAAAARAAAA0QAAABEAAADRAAAAkQAAANEAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABKAAABSgAAAkkAAAFJAAABSQAAA0kAAANEAAADSgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFJAAABSQAAAUkAAANJAAADRAAAAkQAAANEAAAARAAAAkQAAAJEAAABRAAAAUQAAAJEAAAAXgAAAEoAAAJKAAADSQAAA0kAAAFJAAACSQAAA0QAAABEAAAARAAAAUQAAANEAAADJgAAAEQAAAJEAAACJgAAAF4AAABKAAABSgAAAUQAAAJEAAADRAAAAUQAAANEAAABRAAAAF4AAABEAAAARAAAAUQAAAFEAAABRAAAA0QAAAFeAAAAXgAAAF4AAABKAAADSgAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAADXgAAAEQAAABEAAADRAAAAEQAAANEAAABRAAAAUQAAABEAAACRAAAAUQAAAJEAAADRAAAAEQAAABEAAACRAAAAkQAAANEAAACRAAAAEQAAABEAAAARAAAAUQAAANEAAADRAAAA0QAAABEAAACRAAAAUQAAANEAAACRAAAA0QAAAFEAAABRAAAAiYAAABEAAABRAAAAkQAAABEAAAARAAAA0QAAAFEAAADRAAAAkQAAAJEAAADRAAAAEQAAAJEAAABRAAAA0QAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAANeAAAAXgAAACIAAABeAAAAFgAAAxYAAAAWAAAAFgAAAhYAAAEWAAADFgAAAhYAAAIWAAACFgAAABYAAAMWAAAAFgAAABYAAAAiAAAAXgAAABYAAAMmAAAAFgAAAxYAAAMmAAAAFgAAABYAAAMmAAAAFgAAAxYAAAMmAAAAFgAAARYAAAAmAAAAIgAAACIAAAAWAAABFgAAABYAAAAWAAACFgAAARYAAAMWAAACFgAAARYAAAMWAAABFgAAABYAAAAWAAAAFgAAACIAAABeAAAAFgAAACYAAAAWAAAAFgAAAyYAAAAWAAAAFgAAASYAAAAWAAACFgAAASYAAAAWAAACFgAAAyYAAABeAAAAXgAAABYAAAEWAAADFgAAARYAAAAWAAADFgAAAxYAAAMWAAABFgAAARYAAAEWAAADFgAAABYAAAEWAAAAEQAAAF4AAAAWAAABFgAAAxYAAAEWAAADFgAAAxYAAAAWAAABFgAAAxYAAAAWAAADFgAAAhYAAAMWAAADFgAAAA== - -1,0: - ind: -1,0 - tiles: EQAAABEAAAAWAAABJgAAABYAAAMWAAABJgAAABYAAAMWAAADJgAAABYAAAIWAAADJgAAABYAAAIWAAAAJgAAABEAAABeAAAAGwAAARYAAAIWAAADFgAAAhYAAAMWAAABFgAAARYAAAEWAAABFgAAAhYAAAMWAAABFgAAAhYAAANeAAAAXgAAABYAAAImAAAAFgAAABYAAAAmAAAAFgAAAxYAAAEmAAAAFgAAAxYAAAEmAAAAFgAAARYAAAAmAAAANAAAAF4AAAAWAAACFgAAABYAAAAWAAAAFgAAABYAAAEWAAABFgAAARYAAAIWAAADFgAAARYAAAEWAAADFgAAAzQAAAA0AAAAFgAAARYAAAAWAAAAFgAAAFsAAAFbAAACWwAAAVsAAANbAAAAWwAAABYAAAAWAAAAFgAAABYAAAE0AAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAADWwAAA1sAAAFbAAACWwAAA1sAAAAmAAAAFgAAAxYAAAImAAAAXgAAAF4AAABeAAAAXgAAAFsAAAJbAAABWwAAAVsAAANbAAAAWwAAAlsAAAFbAAABFgAAAxYAAAEWAAAAFgAAA14AAABeAAAAXgAAAF4AAABbAAADWwAAAVsAAAFbAAABWwAAA1sAAANbAAADWwAAACYAAAAWAAADFgAAASYAAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAABbAAACWwAAAVsAAAJbAAAAWwAAAFsAAAMWAAACFgAAAhYAAAIWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADEAAABeAAAAXgAAAF4AAAAWAAACFgAAAhYAAAMWAAAAFgAAA14AAABeAAAAXgAAAE4AAABeAAAAMQAAADEAAAAxAAAAMQAAADEAAABeAAAAFgAAASYAAAAWAAABFgAAAyYAAABeAAAAXgAAAF4AAABeAAAATwAAADEAAAAxAAAAMQAAADEAAAAxAAAAXgAAABYAAAEWAAADFgAAARYAAAEWAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAASgAAAEoAAABeAAAAXgAAAEQAAANEAAABRAAAAkQAAANEAAAARAAAA0QAAANEAAADRAAAAEQAAAFEAAACRAAAAEQAAAJEAAADRAAAAUQAAANEAAADRAAAA0QAAAFEAAADRAAAAUQAAAJEAAAARAAAAEQAAANEAAABRAAAAEQAAAFEAAADRAAAAUQAAAFEAAABRAAAAUQAAAFEAAAARAAAAkQAAABEAAAARAAAAUQAAABEAAAARAAAAEQAAAJEAAAARAAAAkQAAAJEAAACRAAAAQ== - 0,-1: - ind: 0,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABPAAAARAAAAkQAAABEAAACRAAAA0QAAAFEAAACRAAAAkQAAAJeAAAADwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABSQAAAUkAAAFJAAACSQAAAkQAAAFEAAABXgAAABsAAAJEAAACRAAAAEQAAABEAAABRAAAA0QAAANEAAABRAAAAUkAAANJAAACSQAAAUkAAAFEAAAARAAAAV4AAAAPAAAARAAAAEQAAAEmAAAARAAAAUQAAANEAAABRAAAA0QAAABJAAACSQAAAUkAAANJAAADRAAAAEQAAAJeAAAATgAAAEQAAAJEAAAARAAAAUQAAANEAAADXgAAAEQAAAFEAAABRAAAAEQAAABEAAAARAAAAEQAAAJEAAABXgAAAE4AAABEAAABXgAAAEQAAANEAAACRAAAAl4AAABeAAAAXgAAAF4AAABeAAAASgAAAUoAAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANEAAACRAAAA0QAAABEAAACRAAAAUQAAAJEAAAARAAAAUQAAAFEAAADRAAAAUQAAAJEAAAARAAAAkQAAAJEAAACRAAAAUQAAANEAAAARAAAA0QAAANEAAADRAAAAUQAAAJEAAAARAAAAEQAAABEAAADRAAAA0QAAABEAAAARAAAA0QAAAJEAAAARAAAA0QAAAJEAAADRAAAA0QAAAFEAAADRAAAA0QAAAJEAAACRAAAAUQAAANEAAABXgAAABYAAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAEWAAACXgAAABsAAAMWAAAAXgAAABYAAAAWAAADFgAAABYAAAJeAAAAWgAAAFoAAAJWAAAAXgAAAEQAAAFEAAAARAAAA14AAABeAAAATwAAAF4AAAAWAAAAFgAAASYAAAAWAAADSgAAA1oAAANaAAAAWgAAAVoAAAFaAAADWgAAAFoAAANaAAABXgAAAF4AAABeAAAAFgAAABYAAAEWAAAAFgAAAl4AAABaAAACGgAAAxoAAAIaAAABGgAAARoAAAFaAAACWgAAA14AAABeAAAAXgAAABYAAAEWAAADJgAAABYAAANeAAAAWgAAAhoAAAMaAAACGgAAABoAAAIaAAACWgAAAVoAAANPAAAAXgAAAF4AAAAWAAADFgAAARYAAAIWAAAAXgAAAFoAAAMaAAACGgAAAxoAAAMaAAABGgAAAloAAAJaAAACXgAAAF4AAABeAAAAFgAAAhYAAAIWAAADFgAAAF4AAABaAAACGgAAABoAAANaAAACWgAAAloAAAJaAAADWgAAAF4AAABeAAAATgAAAA== - 0,0: - ind: 0,0 - tiles: FgAAABYAAAAmAAAAFgAAAV4AAABaAAADGgAAAxoAAABaAAACXgAAAF4AAAAlAAAAXgAAAF4AAABeAAAATgAAABYAAAMWAAADFgAAAxYAAAFeAAAAWgAAAhoAAAEaAAADWgAAAV4AAAAlAAAAJQAAACUAAABeAAAAXgAAAE4AAAAWAAAAFgAAAiYAAAAbAAABXgAAAFoAAAFaAAACWgAAAloAAAFeAAAAJQAAACUAAAAlAAAAXgAAAF4AAABOAAAAFgAAABYAAAIWAAACFgAAAkoAAAFeAAAAFgAAAxYAAAEWAAABXgAAACUAAAAlAAAAJQAAAF4AAABeAAAAXgAAABYAAAEWAAACFgAAAxYAAABeAAAAFgAAABYAAAEWAAAAFgAAAF4AAABeAAAAJQAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAAiYAAAAWAAABGwAAARYAAAMWAAABFgAAABYAAAMWAAACFgAAAhYAAANeAAAATgAAAF4AAABeAAAAFgAAAhYAAAMWAAAAFgAAAl4AAAAWAAABFgAAABoAAAIaAAABGgAAAxYAAAIWAAAATwAAAF4AAABeAAAAXgAAABYAAAIWAAABJgAAABYAAABeAAAAFgAAAhYAAAEaAAABGgAAARoAAAEWAAAAGwAAAF4AAABeAAAATwAAAF4AAAAWAAAAFgAAAhYAAAEWAAACXgAAABYAAAEWAAADGgAAAxoAAAIaAAABFgAAABYAAAJeAAAARAAAA0QAAABEAAAAFgAAAxYAAAMWAAADFgAAAF4AAAAWAAAAFgAAAhoAAAAaAAADGgAAAxYAAAAWAAADSgAAAUQAAABEAAABRAAAAhYAAAMWAAADJgAAABYAAANeAAAAFgAAAhYAAAMWAAACFgAAARYAAAAWAAACFgAAAl4AAABEAAABRAAAAEQAAAIWAAAAFgAAABYAAAEWAAABXgAAABYAAAAWAAADFgAAABYAAAEWAAABFgAAAxYAAAJeAAAARAAAAUQAAAJEAAADXgAAAEoAAABKAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAABXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAAkQAAAFEAAAARAAAAEQAAAJEAAABRAAAAEQAAAJEAAABRAAAAkQAAAFEAAACRAAAA0QAAABEAAAARAAAAUQAAAJEAAABRAAAAUQAAABEAAACRAAAAUQAAABEAAABRAAAAEQAAABEAAACRAAAAUQAAANEAAAARAAAAEQAAANEAAABRAAAAUQAAANEAAACRAAAA0QAAABEAAAARAAAA0QAAAJEAAACRAAAA0QAAANEAAAARAAAAQ== - -1,1: - ind: -1,1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAl4AAABEAAAARAAAABYAAAIbAAAAXgAAAEQAAAFEAAACGwAAAhsAAAAbAAACGwAAAxsAAANEAAABRAAAAEQAAABEAAACRAAAAUQAAAEWAAADGwAAAF4AAABEAAACRAAAARsAAAIbAAADGwAAARsAAAAbAAADRAAAAEQAAANEAAAARAAAA0QAAAAmAAAAFgAAARsAAANeAAAARAAAAkQAAAFeAAAAVQAAAFUAAAFVAAACXgAAAEQAAAFEAAADRAAAAEQAAANEAAACRAAAAxYAAAEbAAAAXgAAAEQAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAMWAAAAXgAAAF4AAABEAAAARAAAA0QAAAFEAAACXgAAAFEAAANRAAACUQAAAlEAAAJRAAAAXgAAAEQAAAEmAAAAFgAAAF4AAAAaAAAARAAAAkQAAAJEAAABRAAAAEoAAAFRAAAAVQAAAVUAAAJVAAABUQAAAF4AAABEAAACRAAAAl4AAABeAAAAGgAAA0QAAABEAAAARAAAAUoAAAJeAAAAUQAAAlUAAABVAAACVQAAAlEAAANeAAAARAAAAUQAAABEAAABRAAAA0QAAABEAAABRAAAA0QAAAJEAAAAXgAAAFEAAAFRAAABUQAAAVEAAAJRAAAAXgAAAEQAAAAmAAAARAAAAUQAAABEAAACRAAAAEQAAAFEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA14AAAAbAAADXgAAAF4AAABeAAAAGwAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAARAAAAEQAAAJVAAABFgAAAhYAAAFeAAAAFgAAABYAAAIWAAADXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAEQAAAMmAAAAVQAAAxYAAAMWAAAAXgAAABYAAAEWAAACFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABEAAACRAAAAxYAAAIbAAABXgAAAF4AAAAWAAABFgAAARYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAARAAAAUQAAAJKAAACRAAAAEQAAAJeAAAAFgAAABYAAAMWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAEQAAAMmAAAARAAAA0QAAANEAAACXgAAABYAAAIWAAACFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABEAAABRAAAAg== - 0,1: - ind: 0,1 - tiles: RAAAAl4AAABEAAAARAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAA0QAAAFEAAACVgAAAVEAAAFRAAADUQAAAVEAAAJRAAAAUQAAAFEAAANRAAADUQAAAVEAAABEAAADRAAAAEQAAAFEAAABRAAAA1YAAANRAAACUQAAA1EAAANRAAADUQAAA1EAAANRAAABUQAAAVEAAANRAAABRAAAAEQAAANEAAADRAAAAEQAAANeAAAAUQAAAFEAAANRAAABUQAAAVEAAANRAAADUQAAAFEAAABRAAABUQAAA0QAAAJeAAAAXgAAAEQAAAFEAAADXgAAAFEAAAJRAAABUQAAAlEAAABRAAADUQAAAFEAAAJRAAACUQAAAFEAAABEAAADXgAAAFEAAAFRAAADUQAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFYAAAFeAAAAXgAAAF4AAABPAAAARAAAA14AAABRAAADVQAAAlUAAAFRAAABUQAAA1EAAANRAAADUQAAAVEAAABRAAACUQAAAF4AAABeAAAAXgAAAEQAAANeAAAAUQAAA1UAAABVAAAAVQAAAlEAAAJRAAABUQAAA1EAAANRAAABUgAAAFEAAAJeAAAATwAAAF4AAABEAAACXgAAAFEAAAFVAAAAVQAAAlUAAAJRAAADUQAAAlEAAANeAAAAUQAAA1IAAAJRAAACXgAAAF4AAABeAAAARAAAAl4AAABRAAADUQAAAlEAAAJRAAAAUQAAAV4AAABeAAAAXgAAAFEAAAJSAAAAUQAAAV4AAABOAAAATgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAFYAAANeAAAAUQAAAVEAAABRAAACUgAAAlEAAAJeAAAAXgAAAF4AAABEAAABXgAAAFEAAANRAAABUQAAAV4AAABRAAACUQAAAFEAAABRAAAAUQAAAlIAAAFRAAABXgAAAFEAAAFRAAABRAAAAF4AAABRAAADXgAAAFEAAABeAAAAUQAAAFEAAAFRAAAAUQAAA1EAAABRAAADUQAAAFYAAANRAAAAUwAAAEQAAAFeAAAAUQAAA1EAAAFRAAAAXgAAAFYAAAJWAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAUQAAA1EAAAFEAAACXgAAAFEAAANeAAAAUQAAAVEAAAFRAAABUQAAAV4AAAAWAAACFgAAABYAAAAWAAAAXgAAAF4AAABeAAAARAAAAV4AAABRAAAAUQAAAFIAAABSAAACUgAAAlEAAAJeAAAAFgAAAhYAAAEWAAACFgAAAxsAAANbAAAAWwAAAw== - 1,0: - ind: 1,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAAABAAAAAQAAAAEAAAABAAAAXgAAAEQAAABEAAAARAAAA14AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAyYAAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABPAAAAMQAAADEAAAAxAAAAXgAAAEQAAANeAAAARAAAAEQAAAFEAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAADEAAAAxAAAAMQAAAEQAAANKAAACSgAAAUQAAANEAAACRAAAAl4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAABeAAAASgAAAV4AAABEAAABRAAAACYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAXgAAAEoAAAFeAAAARAAAAEQAAANEAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAADEAAAAxAAAAMQAAAF4AAABKAAACSgAAA0QAAAJEAAABRAAAAV4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAACYAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAAF4AAABeAAAAWwAAA1sAAAFeAAAARAAAAUQAAABEAAADXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAACWwAAAlsAAAJbAAADXgAAAEQAAAFEAAADRAAAA14AAABOAAAAXgAAAF4AAABOAAAATgAAAF4AAABbAAADWwAAA1sAAABbAAACWwAAAkQAAABEAAABRAAAACYAAABeAAAATgAAAF4AAABeAAAATgAAAE4AAABeAAAAWwAAAlsAAAFbAAACWwAAAVsAAAFeAAAARAAAA0QAAANEAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAJEAAADRAAAA0QAAANEAAABRAAAAEQAAAFEAAACRAAAAUQAAANEAAABRAAAAkQAAANEAAADRAAAA0QAAAFEAAABRAAAA0QAAAJEAAABRAAAAUQAAAJEAAACRAAAAUQAAABEAAADRAAAAUQAAAFEAAACRAAAAEQAAAImAAAARAAAAkQAAABEAAADRAAAAEQAAABEAAADRAAAA0QAAABEAAACRAAAAkQAAANEAAACRAAAAkQAAAJEAAABRAAAAQ== - 1,-1: - ind: 1,-1 - tiles: DwAAAA8AAAAaAAACGgAAAQ8AAAAPAAAADwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABsAAAIbAAAAGgAAAxoAAAIbAAABGwAAAhsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAAAPAAAADwAAABoAAAIaAAACDwAAAA8AAAAPAAAAXgAAAF4AAABeAAAAFgAAABYAAAMWAAACFgAAAhYAAAFeAAAATgAAABYAAAIbAAACGwAAAhYAAAFOAAAATgAAAF4AAABeAAAAXgAAABYAAAIWAAACFgAAAhYAAAIWAAACXgAAAE4AAAAWAAACFgAAAhYAAAMWAAABTgAAAE4AAABeAAAAXgAAAF4AAAAWAAABFgAAAxYAAAEWAAABFgAAAV4AAABeAAAAXgAAABsAAAMbAAADXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAABsAAABeAAAARAAAAkQAAAFeAAAARAAAAUQAAAJEAAADRAAAAUQAAABEAAAARAAAAkQAAABEAAACRAAAA0QAAABEAAACRAAAAUQAAAJEAAADRAAAAUQAAAFEAAADRAAAAUQAAANEAAAARAAAAkQAAAFEAAACRAAAAUQAAABEAAAARAAAAUQAAAFEAAACRAAAAyYAAABEAAABRAAAAEQAAABEAAACRAAAAkQAAAJEAAADRAAAAUQAAABEAAADRAAAAEQAAAFEAAACRAAAAUQAAANEAAADXgAAAF4AAABeAAAASgAAAV4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAi4AAABEAAACLgAAAEQAAAIuAAAARAAAAi4AAABeAAAAAQAAAAEAAAABAAAAAQAAAF4AAABEAAABRAAAAkQAAAJEAAADLgAAAEQAAAAuAAAARAAAAC4AAABEAAADXgAAAAEAAAABAAAAAQAAAAEAAABeAAAARAAAAEQAAAAmAAAALgAAAEoAAAIuAAAARAAAAy4AAABEAAACLgAAAF4AAAABAAAAAQAAAAEAAAABAAAAXgAAAEQAAAFEAAACRAAAAl4AAABeAAAATwAAAF4AAABEAAABLgAAAEQAAABeAAAAAQAAAAEAAAABAAAAAQAAAF4AAABEAAAARAAAA0QAAANeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAACXgAAAAEAAAABAAAAAQAAAAEAAABeAAAARAAAAkQAAAMmAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAAABAAAAAQAAAAEAAAABAAAAXgAAAEQAAAFEAAABRAAAAg== - 1,1: - ind: 1,1 - tiles: XgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAEoAAAJKAAACSgAAAl4AAABeAAAAXgAAAEQAAANEAAAARAAAA1EAAAJeAAAATgAAAF4AAABeAAAATAAAAkwAAAFMAAACTAAAA0gAAAApAAADKQAAA14AAABEAAADRAAAAUQAAAFRAAABXgAAAE4AAABeAAAAXgAAAEwAAAJMAAACTAAAAkgAAAJIAAACKQAAASkAAANeAAAARAAAA0QAAAAmAAAAUQAAA14AAABOAAAAXgAAAF4AAABMAAAATAAAAkgAAAFIAAABSAAAAU0AAAFNAAAASgAAAkQAAAFEAAAARAAAA1EAAAJeAAAATgAAAF4AAABeAAAAKQAAAikAAAApAAABSAAAA00AAANNAAADTQAAAUoAAAJEAAAARAAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAACkAAAIpAAABKQAAAE0AAANNAAADTQAAAk0AAAFKAAACRAAAAEQAAAImAAAAXgAAAF4AAABeAAAAXgAAAF4AAAApAAAAKQAAAykAAABNAAABTQAAAk0AAANNAAADXgAAAEQAAABEAAABRAAAAl4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABNAAABSgAAAF4AAABEAAAARAAAAUQAAANeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAEmAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABEAAABRAAAAEQAAAJEAAAARAAAAV4AAABeAAAAWgAAA1oAAAFaAAACHwAAAR8AAAFeAAAAXgAAAE4AAABeAAAASgAAAkQAAANEAAADRAAAAEQAAANRAAAAXgAAAFoAAAFaAAAAWgAAAh8AAAMfAAADTwAAAF4AAABOAAAAXgAAAEQAAAJEAAABRAAAA0QAAAEmAAAAUQAAAVYAAABaAAAAWgAAAFoAAAMfAAABHwAAAl4AAABeAAAATgAAAF4AAABEAAAARAAAAUQAAAJEAAABRAAAAFYAAAJeAAAAWgAAAloAAANaAAAAHwAAAx8AAAFeAAAAXgAAAE4AAABeAAAARAAAA0QAAABEAAADRAAAAUQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAAmAAAAWwAAAV4AAAAfAAAAHwAAAB8AAAAfAAABXgAAAEoAAAJEAAAASgAAAkoAAABKAAABXgAAAEQAAANEAAABRAAAAw== - -2,-1: - ind: -2,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAA6AAAAOgAAADoAAAAWAAACXgAAAEQAAANEAAAARAAAAU4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA1AAAANQAAADUAAAA1AAAANQAAAF4AAABeAAAARAAAAEQAAANEAAAAJQAAACUAAABeAAAATgAAAF4AAABeAAAANQAAADUAAAA1AAAANQAAADUAAABKAAAASgAAAEQAAANEAAACRAAAAyUAAAAlAAAAXgAAAE4AAABeAAAAXgAAADUAAAA1AAAANQAAADUAAAA1AAAAXgAAAF4AAABEAAADRAAAAkQAAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFEAAAARAAAA0QAAABEAAACRAAAAkQAAABEAAABRAAAAUQAAANEAAACRAAAAEQAAANEAAAARAAAAEQAAAJEAAABRAAAAyYAAABEAAAARAAAA0QAAAJEAAAARAAAAUQAAANEAAACRAAAAkQAAANEAAADRAAAAUQAAAJEAAAARAAAAkQAAANEAAAARAAAA0QAAANEAAAARAAAAEQAAABEAAAARAAAAkQAAABEAAABRAAAA0QAAANEAAABRAAAA0QAAAJEAAABRAAAA0QAAAFeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAIgAAACIAAAAmAAAARAAAA14AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAACIAAAAiAAAARAAAAEQAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAiAAAAIgAAAEQAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAIgAAACIAAAAmAAAARAAAAV4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABeAAAATgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAE4AAABeAAAAXgAAAE8AAAARAAAAEQAAAA== - -2,1: - ind: -2,1 - tiles: RAAAAUQAAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABEAAADRAAAAF4AAAAWAAACFgAAARYAAAImAAAARAAAA14AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAAbAAADFgAAABYAAAMWAAAARAAAAkQAAANeAAAATgAAAF4AAABeAAAAWwAAA1sAAABbAAACXgAAAEQAAAJEAAACGwAAABYAAAAWAAABFgAAAkQAAANEAAADXgAAAF4AAABeAAAAXgAAAFsAAAFbAAACWwAAAl4AAABEAAAARAAAAl4AAAAWAAABFgAAABYAAAAmAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAWwAAAFsAAANeAAAARAAAAEQAAABeAAAAXgAAABYAAAEWAAABRAAAAUoAAANeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAXgAAAEQAAANEAAACGgAAAF4AAAAWAAACFgAAA0QAAAJEAAABTwAAAF4AAABeAAAAXgAAADEAAAAxAAAAMQAAADEAAABEAAADRAAAAxoAAANeAAAAXgAAAF4AAAAmAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAADRAAAA0QAAABEAAADRAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEoAAABEAAAARAAAAEQAAANEAAADRAAAAEQAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAAAmAAAARAAAA14AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAARAAAAUQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABOAAAAXgAAAEQAAAFEAAACXgAAAEQAAANEAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAmAAAARAAAAEQAAAJEAAAASwAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAAARAAAAEQAAAJeAAAARAAAA0sAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACRAAAAA== - -2,0: - ind: -2,0 - tiles: RAAAA0QAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAARAAAAEQAAACYAAABEAAAATwAAAF4AAABeAAAATwAAADEAAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABeAAAAEQAAABEAAABEAAACRAAAA14AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABeAAAATgAAAE4AAABeAAAAMQAAADEAAAAxAAAAXgAAAE4AAABeAAAAXgAAAF4AAAA4AAADNAAAACYAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOAAAATQAAABEAAABRAAAAV4AAABbAAADWwAAAlsAAAJbAAAAWwAAAFsAAAFbAAABXgAAAE4AAABeAAAATwAAADgAAAI0AAAARAAAAkQAAANeAAAAWwAAAFsAAAFbAAABWwAAA1sAAAFbAAAAWwAAAV4AAABOAAAAXgAAAF4AAABeAAAAXgAAACYAAABEAAACXgAAAFsAAANbAAABWwAAA1sAAABbAAADWwAAAFsAAANPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAV4AAABbAAABWwAAAFsAAAFbAAAAWwAAAlsAAAJbAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJeAAAAWwAAA1sAAAFbAAACWwAAAFsAAAFbAAAAWwAAA14AAABeAAAARwAAAF4AAABeAAAATgAAACYAAABEAAADSgAAAlsAAABbAAADWwAAAFsAAAFbAAADWwAAAlsAAAJeAAAARwAAAF4AAABeAAAAXgAAAE4AAABEAAAARAAAAl4AAABbAAACWwAAAVsAAAFbAAABWwAAAVsAAANbAAAAXgAAAF4AAABeAAAARwAAAF4AAABOAAAARAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAASgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAAUQAAABEAAAARAAAAkQAAAJEAAABRAAAAkQAAABEAAAARAAAAEQAAANEAAACRAAAAUQAAAMmAAAARAAAAEQAAAFEAAADRAAAAUQAAABEAAAARAAAAEQAAANEAAABRAAAAEQAAAJEAAABRAAAA0QAAABEAAADRAAAAkQAAAJEAAADRAAAAEQAAAJEAAACRAAAA0QAAABEAAACRAAAAEQAAAFEAAAARAAAAUQAAAFEAAACRAAAAg== - 2,-1: - ind: 2,-1 - tiles: XgAAAF4AAABHAAAARwAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAACRAAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAA0QAAAJEAAADXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXgAAAEQAAAFEAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABEAAACRAAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANEAAACRAAAAUQAAABEAAAARAAAA0QAAABEAAADRAAAAkQAAANEAAADRAAAAUQAAANEAAADRAAAAEQAAAFEAAABRAAAAEQAAABEAAADRAAAAEQAAABEAAACRAAAAkQAAAFEAAAARAAAA0QAAAJEAAABRAAAAEQAAAFEAAADRAAAAkQAAANEAAADRAAAAUQAAANEAAADRAAAAEQAAAJEAAACRAAAAEQAAABEAAABRAAAAkQAAAFEAAADRAAAA0QAAABEAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEoAAANEAAADRAAAAEQAAAFeAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABEAAADXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAV4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAAV4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAANEAAACXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,0: - ind: 2,0 - tiles: RAAAA0QAAAFEAAACXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFEAAADRAAAA14AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAABEAAADXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAADRAAAAV4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAA0QAAAJEAAABRAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAAJEAAACRAAAAUQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAJKAAABXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEoAAANEAAADRAAAA0QAAAJEAAAARAAAAEQAAAJEAAADRAAAAEQAAABEAAADRAAAAkQAAAFEAAABRAAAAEQAAANEAAAARAAAAUQAAAJEAAAARAAAA0QAAABEAAAARAAAAUQAAABEAAACRAAAA0QAAAFEAAACRAAAAEQAAAFEAAAARAAAAUQAAAJEAAADRAAAAUQAAABEAAADRAAAAUQAAAFEAAAARAAAAkQAAAFEAAABRAAAAkQAAANEAAABRAAAAUQAAAJEAAACRAAAAA== - 2,1: - ind: 2,1 - tiles: RAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAEQAAAFeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAJQAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAACUAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAEcAAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAAkQAAAFHAAAAXgAAAEcAAABeAAAAGwAAABsAAAM6AAAAOgAAABsAAAMbAAAAXgAAAF4AAABeAAAATwAAABYAAAFEAAAAXgAAAF4AAABeAAAAXgAAABsAAAAbAAABOgAAADoAAAAbAAAAGwAAAl4AAABPAAAAXgAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAAF4AAAAbAAACGwAAAzoAAAA6AAAAGwAAABsAAAFeAAAAFgAAAhYAAAEWAAADXgAAAEQAAAEAAAAAAAAAAAAAAABeAAAAGwAAARsAAAA6AAAAOgAAABsAAAAbAAABXgAAABYAAAMWAAABFgAAAhsAAANEAAACAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAGwAAAhsAAANeAAAAXgAAAF4AAAAWAAAAFgAAAhYAAAFeAAAARAAAAQAAAAAAAAAAAAAAAF4AAABEAAACRAAAA0QAAAJEAAABRAAAAUoAAABeAAAAFgAAARYAAAAWAAACRAAAAEQAAAIAAAAAAAAAAAAAAABeAAAARAAAA0QAAANEAAACRAAAAkQAAAJEAAACGwAAARYAAAEWAAAAFgAAAkQAAABEAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANEAAACRAAAAEQAAANEAAACRAAAAV4AAAAWAAAAFgAAABYAAAJeAAAARAAAAA== - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEoAAAFEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAQAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABKAAAASgAAA0QAAANEAAABRAAAAEQAAABEAAABXgAAAEQAAAMAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAASgAAAEQAAABEAAACRAAAAkQAAAFEAAADRAAAA14AAABEAAACAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAAUQAAAFeAAAASgAAAF4AAABeAAAARAAAAQAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABKAAAARAAAAkQAAAJEAAACXgAAAEQAAAFEAAACSgAAAUQAAAIAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAASgAAAkoAAANEAAABRAAAAF4AAABKAAACRAAAA0oAAAFEAAACAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEoAAAJEAAABRAAAAUQAAABEAAACRAAAAUQAAANKAAABRAAAAAAAAAAAAAAAAAAAAF4AAABbAAABWwAAAF4AAABEAAAARAAAAkQAAABEAAACRAAAA0QAAAFEAAADSgAAA0QAAAMAAAAAAAAAAAAAAABeAAAAWwAAAlsAAAFeAAAARAAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAAAAAAAAAAAAAAAAAXgAAAFsAAAJbAAABSgAAAEQAAAJEAAACRAAAAl4AAAAWAAADFgAAAhYAAAJeAAAARAAAAwAAAAAAAAAAAAAAAF4AAABbAAACWwAAAF4AAABEAAADRAAAAkQAAAMbAAADFgAAAhYAAAIWAAABXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAWwAAA1sAAAFeAAAARAAAAUQAAAJEAAAAXgAAABYAAAAWAAAAFgAAAl4AAABEAAABRAAAA0QAAAFKAAAAXgAAAF4AAABeAAAAXgAAAF4AAABKAAADXgAAAF4AAABeAAAARAAAA14AAABeAAAARAAAAkQAAAJEAAABRAAAAEQAAABEAAACRAAAAUQAAANEAAABRAAAAEQAAANEAAACRAAAAUQAAAFEAAAARAAAAkQAAANEAAABRAAAAkQAAAFEAAACRAAAAEQAAANEAAABRAAAAkQAAAFEAAADRAAAAUQAAAFEAAAARAAAAkQAAABEAAACRAAAA0QAAAJEAAAARAAAAUQAAAFEAAACRAAAAUQAAANEAAABRAAAAUQAAAJEAAADRAAAAEQAAANEAAACRAAAAg== - -3,1: - ind: -3,1 - tiles: HQAAAR0AAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABsAAAJeAAAAFgAAAxsAAAFeAAAARAAAA14AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABeAAAAFgAAARYAAAMWAAAAXgAAAE8AAABeAAAAXgAAAEQAAAIAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAABYAAAAWAAABFgAAAl4AAABeAAAAXgAAAF4AAABEAAACXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF4AAAAWAAADFgAAAhYAAABeAAAAXgAAAF4AAABeAAAARAAAAgAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAFgAAABYAAAIWAAABXgAAAF4AAABeAAAAXgAAAEQAAAEAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAABYAAAIWAAAAFgAAAU8AAABeAAAAXgAAAF4AAABEAAADAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAAAWAAACFgAAAhYAAANeAAAAXgAAAF4AAABeAAAARAAAAwAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAAFgAAAhYAAAAWAAABFgAAAF4AAABeAAAATwAAAEQAAAEAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAABYAAANeAAAAXgAAAF4AAABEAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAMWAAABXgAAAF4AAABeAAAARAAAAgAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAACFgAAAV4AAABeAAAAXgAAAEQAAAMAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAABYAAANeAAAAXgAAAF4AAABEAAACAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAbAAADFgAAARYAAAEWAAAAXgAAAF4AAABeAAAARAAAAgAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAFgAAARYAAAMWAAADXgAAAF4AAABeAAAAXgAAAEQAAAMAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAABYAAAAWAAADFgAAAV4AAABOAAAAXgAAAF4AAABEAAADAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAARAAAAw== - 3,0: - ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAACTwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAA14AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAABPAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,1: - ind: 3,1 - tiles: TwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,2: - ind: 2,2 - tiles: RAAAAl4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABEAAABXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAEQAAAFEAAABRAAAAkQAAANEAAABRAAAAEQAAABEAAACRAAAAkQAAAFEAAAARAAAA0QAAANEAAABRAAAAkQAAAJEAAAARAAAAUQAAAFEAAABRAAAAkQAAAFEAAABRAAAAUQAAANEAAABRAAAAEQAAABEAAADRAAAA0QAAABEAAABRAAAAkQAAAFEAAACRAAAAUQAAAFEAAACRAAAAkQAAAJEAAADRAAAA0QAAAJEAAADRAAAAEQAAAJEAAABRAAAAl4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAUQAAAFEAAADRAAAAUQAAAIpAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABEAAADRAAAAEQAAAFEAAADRAAAAkQAAABEAAADKQAAAV4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAF4AAABEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAABYAAAIWAAADFgAAAhYAAAFeAAAARAAAAUQAAAIWAAABFgAAASYAAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAAAWAAADFgAAABYAAAMWAAADGwAAAkQAAANEAAAAFgAAABYAAAMWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAIWAAACFgAAA14AAABEAAABRAAAAhYAAAIWAAADJgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAARYAAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAADWwAAAFsAAANbAAADWwAAAlsAAAFeAAAAHQAAAh0AAAAmAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAADWwAAAFsAAAJbAAAAXgAAAFsAAAJbAAACXgAAAA== - 3,2: - ind: 3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAADTwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABPAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA14AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABeAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAl4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,2: - ind: 1,2 - tiles: WwAAA14AAAAfAAAAHwAAAB8AAAAfAAABXgAAAEoAAAFEAAAARAAAA0QAAABEAAAASgAAAEQAAAJEAAABRAAAAlsAAANeAAAAHwAAAx8AAAIfAAADHwAAA14AAABKAAACRAAAAEQAAAJEAAADRAAAAkoAAAFEAAADRAAAACYAAABbAAACXgAAAB8AAAEfAAADHwAAAB8AAAJeAAAASgAAAUQAAANEAAACRAAAAUoAAANeAAAARAAAAkQAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAASgAAAkoAAAJeAAAAXgAAAEQAAAFEAAABRAAAAkQAAAFEAAABSgAAAEQAAANEAAABRAAAA0QAAAFEAAACRAAAAEQAAABEAAAARAAAAUQAAANEAAACRAAAA0QAAANEAAAARAAAA0QAAANEAAADRAAAA0QAAANEAAAARAAAAEQAAABEAAABRAAAAUQAAAFEAAAARAAAAEQAAAMmAAAARAAAAUQAAAJEAAACRAAAA0QAAANEAAABRAAAAUQAAAJEAAADRAAAAkQAAANEAAAARAAAAEQAAAJEAAAARAAAAV4AAABEAAADRAAAAV4AAABeAAAAXgAAAEQAAAFEAAACXgAAAE8AAABeAAAAXgAAAF4AAABeAAAASgAAAUoAAABeAAAARAAAAkQAAANVAAABVQAAAlUAAABEAAAARAAAAl4AAABeAAAAXgAAAE4AAABeAAAAKQAAAU0AAAJNAAAAXgAAAEQAAABEAAACVQAAAVUAAABVAAAARAAAAUQAAAJeAAAAXgAAAF4AAABOAAAAXgAAACkAAANNAAAATQAAAF4AAABEAAACRAAAAlUAAABVAAACVQAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAASgAAAUoAAAJeAAAARAAAAkQAAAFEAAADRAAAAUQAAABEAAACRAAAAF4AAABeAAAAXgAAACYAAAAWAAABFgAAAR4AAAMeAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAABYAAAMeAAADHgAAAFoAAANaAAADWgAAAk8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAJgAAABYAAAAWAAABHgAAAh4AAAJeAAAAWgAAAVoAAAJeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAAAFgAAAh4AAAMeAAAAXgAAAFoAAAFaAAAAXgAAAE4AAABeAAAAXgAAAF4AAABbAAABWwAAAVsAAAImAAAAHQAAAx0AAAAZAAAAGQAAAQ== - 3,-1: - ind: 3,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAA14AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAAJeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAV4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAANeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFEAAADXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAA14AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAAFeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,-1: - ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,0: - ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAE8AAABEAAADRAAAA0QAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAA0QAAAFEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAATwAAAEQAAAJEAAADRAAAAg== - -4,1: - ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAB0AAAEdAAADHQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,2: - ind: 0,2 - tiles: RAAAAl4AAABRAAAAXgAAAFIAAAJSAAACUgAAAVEAAANeAAAAFgAAABYAAAMWAAACFgAAA14AAABbAAADWwAAAUQAAAFeAAAAUQAAAVEAAAFSAAABUgAAA1IAAAJRAAABXgAAABYAAAMWAAABFgAAABYAAAFeAAAAWwAAAVsAAANEAAAAXgAAAFEAAANeAAAAUQAAAFEAAAJRAAABVgAAAl4AAAAWAAACFgAAABYAAAMWAAADXgAAAFsAAAJbAAACRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAAkQAAANEAAADRAAAA0QAAAJEAAACRAAAAEQAAANEAAADRAAAAUQAAAJEAAACRAAAA0QAAABEAAADRAAAA0QAAABEAAABRAAAAkQAAANEAAABRAAAAUQAAABEAAADRAAAAEQAAANEAAAARAAAAUQAAAFEAAABRAAAAUQAAAJEAAACRAAAAkQAAAFEAAADRAAAAUQAAAFEAAACRAAAAUQAAANEAAADRAAAAUQAAAFEAAADRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAADXgAAAE4AAABOAAAATgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAADEAAAAxAAAAXgAAAEQAAANEAAACRAAAAU8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAMQAAAF4AAABEAAAARAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAARAAAAEQAAANEAAABXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAV4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABbAAAAWwAAAVsAAAJEAAADRAAAAEQAAANeAAAAXgAAAF4AAAAsAAAALAAAAF4AAABdAAAAXgAAAF4AAABeAAAAWwAAAlsAAABeAAAARAAAAEQAAANEAAAAGwAAARYAAAMbAAAAGgAAABoAAANeAAAAXQAAAF4AAABeAAAAXgAAAFsAAABbAAADXgAAAEQAAABEAAABRAAAARsAAAMWAAABGwAAAxoAAAIaAAACXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAQ== - -1,2: - ind: -1,2 - tiles: MwAAADMAAAAzAAAAXgAAABYAAAAWAAABFgAAAF4AAAAWAAADFgAAAxYAAANeAAAAXQAAAF4AAABEAAACRAAAADMAAAAzAAAAMwAAAF4AAAAWAAABFgAAARYAAAAbAAADXgAAAF4AAABeAAAAXgAAAF0AAABeAAAARAAAAiYAAAAzAAAAMwAAADMAAABeAAAAFgAAARYAAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAEQAAAJEAAACSgAAAkoAAANKAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAAJEAAACRAAAAUQAAANEAAACRAAAAUQAAAJEAAADRAAAAkQAAAFEAAABRAAAAEQAAAFEAAADRAAAAkQAAAJEAAABRAAAA0QAAANEAAAARAAAAUQAAAFEAAADRAAAAEQAAABEAAACRAAAAUQAAABEAAACRAAAAUQAAAFEAAABRAAAAUQAAABEAAACRAAAA0QAAAFEAAAARAAAAkQAAANEAAADRAAAAUQAAAFEAAADRAAAA0QAAAJEAAACRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAACXgAAAE4AAABOAAAAXgAAAE4AAABOAAAAXgAAAE4AAABOAAAAXgAAAE4AAABOAAAAXgAAAEQAAABEAAADRAAAAF4AAABOAAAATgAAAF4AAABOAAAATgAAAF4AAABOAAAATgAAAF4AAABOAAAATgAAAF4AAABEAAADJgAAAEQAAANeAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAARAAAAUQAAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAEQAAAJEAAABRAAAAUQAAANEAAABRAAAAUQAAABEAAAARAAAAEQAAAJEAAAARAAAAkQAAABEAAAARAAAAV4AAABEAAACJgAAAEQAAANEAAACRAAAAEQAAAJEAAABRAAAAEQAAANEAAABRAAAAEQAAANEAAADRAAAA0QAAAFeAAAARAAAA0QAAABEAAADRAAAAUQAAANEAAAARAAAA0QAAABEAAACRAAAAkQAAANEAAACRAAAA0QAAABEAAABXgAAAEQAAAMmAAAAXgAAAF4AAABEAAAARAAAA14AAABeAAAARAAAAUQAAANEAAAARAAAAV4AAABeAAAAXgAAAF4AAABEAAABRAAAAQ== - -2,2: - ind: -2,2 - tiles: RAAAAkQAAAJeAAAARAAAAUsAAABEAAADXgAAAE4AAABeAAAAXgAAAEQAAAJEAAADRAAAAUQAAAFEAAADRAAAASYAAABEAAABRAAAAUQAAAJLAAAARAAAAV4AAABOAAAAXgAAAF4AAABEAAABRAAAAkQAAANEAAABRAAAA0QAAANEAAAARAAAAV4AAABEAAACRAAAA0QAAAJeAAAATgAAAF4AAABeAAAARAAAA0QAAAFEAAABRAAAAEQAAABEAAAARAAAAkQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAEoAAAJeAAAAXgAAAEQAAABEAAABRAAAAUQAAAJEAAAARAAAAkQAAAFEAAAARAAAA0QAAAFEAAAARAAAA0QAAANEAAABRAAAA0QAAAMmAAAARAAAAkQAAANEAAABRAAAAEQAAAJEAAABRAAAA0QAAAJEAAACRAAAAUQAAANEAAAARAAAAEQAAAJEAAADRAAAAEQAAAJEAAAARAAAAkQAAAFEAAAARAAAAEoAAAJEAAAARAAAAUQAAAFEAAABRAAAAkQAAANEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAE4AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAAJEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABOAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAACRAAAAkcAAABHAAAARwAAAEcAAABHAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAA0QAAAJHAAAARwAAAEcAAABHAAAARwAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEoAAAJeAAAARwAAAEcAAABHAAAARwAAAEcAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAAARAAAAkcAAABHAAAARwAAAEcAAABHAAAAXgAAAF0AAABeAAAAXgAAAE8AAABPAAAAXgAAAEQAAANEAAACRAAAAEQAAAFHAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAA14AAABEAAACRAAAA0QAAABEAAADRwAAAEcAAAAbAAABFgAAARYAAAEbAAADFgAAAhYAAAAbAAABGwAAABsAAAMbAAAARAAAA0QAAABEAAACRAAAAQ== - -3,2: - ind: -3,2 - tiles: XQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAARAAAAgAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXgAAAE4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABEAAAAHQAAAB0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAAARAAAAkQAAABEAAACRAAAA0QAAANEAAAARAAAAUQAAAFEAAADRAAAA0QAAAFEAAADRAAAAEQAAANEAAACRAAAAUQAAABEAAAARAAAA0QAAAJEAAABRAAAA0QAAANEAAAARAAAAEQAAABEAAACRAAAAEQAAABEAAACRAAAA0QAAAJEAAAARAAAAkQAAABEAAABRAAAAkQAAAFEAAADRAAAAEQAAAJEAAABRAAAAEQAAABEAAADRAAAAl4AAABeAAAAXgAAAF4AAABEAAACRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAApAAADKQAAAikAAAMpAAACRAAAAUQAAAJeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAKQAAACkAAAEpAAAAKQAAAUQAAABEAAADXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAAUQAAABEAAADRAAAAl4AAABdAAAAXgAAAFsAAABbAAABXgAAAEcAAABHAAAARwAAAEcAAABEAAABRAAAAEQAAABEAAACRAAAAkQAAAJeAAAAXQAAAF4AAABbAAADWwAAAVsAAAFHAAAARwAAAEcAAABHAAAARAAAAUQAAABKAAADRAAAAE8AAABEAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAARwAAACEAAAJHAAAAIQAAAl4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABdAAAAXgAAAFsAAABbAAAAWwAAA0cAAAAhAAACRwAAACEAAAFeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXQAAAF4AAABbAAACWwAAAl4AAABHAAAAIQAAA0cAAAAhAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAARwAAAEcAAABHAAAARwAAAA== - -4,2: - ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAB0AAAEdAAADHQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAE8AAABEAAAARAAAAUQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAATwAAAEQAAAFEAAABRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAEQAAAJEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABEAAADRAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAARAAAA0QAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAEQAAANEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABEAAAARAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAA== - 0,-2: - ind: 0,-2 - tiles: XQAAAF0AAABdAAAAXgAAAF4AAABeAAAAGwAAABsAAAFeAAAAXgAAAF4AAABEAAACRAAAAUQAAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAA6AAAAXgAAAF4AAABeAAAAXgAAADoAAABeAAAARAAAAEQAAAFEAAABXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAEQAAAJEAAABRAAAA14AAABeAAAAXgAAAF4AAABdAAAAXgAAADoAAABeAAAAXgAAAF4AAABeAAAAOgAAAF4AAABEAAADRAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAABXgAAAF0AAABeAAAAXgAAAF0AAABeAAAAFgAAARYAAAEWAAACFgAAAF4AAABEAAAARAAAA0QAAAFEAAAARAAAA14AAABdAAAAXgAAAF4AAABdAAAAXgAAABYAAAAaAAACGgAAABYAAANKAAABRAAAA0QAAABEAAADRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAAWAAABGgAAAxoAAAIWAAABSgAAAUQAAAFEAAADRAAAAUQAAAJEAAABXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAFgAAAhYAAAEWAAADFgAAAF4AAABEAAACRAAAAEQAAANEAAAARAAAARsAAAMbAAADXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAABRAAAAkQAAANeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAAWAAAAFgAAAhYAAAEbAAADXgAAAEQAAAFEAAADRAAAAEQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAFgAAABYAAAEWAAACFgAAA0oAAAFEAAACRAAAAUQAAANEAAABRAAAAV4AAABdAAAAXgAAAF4AAABdAAAAXgAAABYAAAIWAAACFgAAABYAAAFeAAAAXgAAAF4AAABKAAABSgAAAl4AAABeAAAAXQAAAF4AAABeAAAAXQAAAF4AAAAWAAADFgAAABYAAAEWAAACTgAAAF4AAABOAAAAFgAAARYAAAFOAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAFgAAABYAAAMWAAABFgAAAk4AAABeAAAATgAAABYAAAIWAAAATgAAAF4AAAAPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABKAAABSgAAA14AAABeAAAAGwAAAA== - -1,-2: - ind: -1,-2 - tiles: XgAAAF4AAAAWAAAAFgAAAhYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAAAbAAACGwAAAhsAAAIbAAAAGwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAGwAAAxsAAAMbAAABGwAAAxsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAABsAAAIbAAACGwAAAxsAAAAbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAAAbAAADGwAAAxsAAAAbAAACGwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAIWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABOAAAAXgAAABYAAAMWAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAATgAAAF4AAAAWAAADFgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAE4AAABeAAAAFgAAABYAAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAABFgAAAxYAAAIWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAxYAAAAWAAADFgAAAxsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAIWAAACFgAAAhYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAASgAAA14AAABeAAAAXgAAABsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -3,3: - ind: -3,3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAARwAAAEcAAABHAAAARwAAAEcAAABHAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAARwAAAEcAAABHAAAARwAAAEcAAABdAAAAXQAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABXgAAAFsAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAl4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAJbAAABXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAXgAAAFsAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAADWwAAA14AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,3: - ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,3: - ind: -2,3 - tiles: RwAAAEcAAAAbAAACFgAAARYAAAIbAAADFgAAAhYAAAAbAAADGwAAAxsAAAIbAAADRAAAAUQAAANEAAADRAAAAkcAAABHAAAAXgAAABsAAAAbAAACXgAAAF4AAABeAAAAXgAAABYAAAEWAAAAXgAAAEQAAAJEAAADRAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAATwAAAF4AAABEAAADRAAAAUQAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAADRAAAAl4AAABeAAAAXgAAAFsAAAFeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAEQAAABbAAABXgAAAF4AAABeAAAAWwAAA14AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA0oAAANEAAAAXgAAAF4AAABbAAABWwAAA14AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAFsAAANeAAAAXgAAAFsAAABbAAADXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAATwAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAADXgAAAF4AAABbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAWwAAAlsAAAFbAAABXgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAABYAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAWAAADXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAE4AAABeAAAAFgAAA10AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABOAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -1,3: - ind: -1,3 - tiles: XgAAABYAAAIWAAADFgAAAhYAAAJEAAABRAAAAEQAAANEAAABRAAAAhsAAAAWAAADFgAAARsAAANEAAABRAAAAl4AAAAWAAABGgAAARoAAAIWAAAARAAAAUQAAABEAAAARAAAAkQAAAJeAAAAGwAAAhsAAANeAAAARAAAACYAAABeAAAAFgAAABYAAAEWAAAAFgAAAl4AAABEAAACRAAAAUQAAABEAAACGwAAAhYAAAMWAAADGwAAAEQAAANEAAABXgAAAF4AAABeAAAAGwAAAF4AAABeAAAARAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAUQAAANEAAADRAAAAkQAAAJEAAACRAAAAEQAAAFEAAAAXgAAABYAAAIWAAABXgAAAEQAAAJEAAACRAAAAkQAAAJEAAAARAAAAUQAAANEAAADRAAAAUQAAAJEAAADRAAAAl4AAAAWAAABFgAAAxYAAANEAAAARAAAA0QAAAMmAAAARAAAAEQAAANEAAACRAAAAEQAAABEAAACRAAAAkQAAAFeAAAAFgAAABYAAAAWAAACRAAAAUQAAAFEAAAARAAAAkQAAAFEAAAARAAAA0QAAANEAAADRAAAAkQAAABEAAABGwAAAhYAAAIWAAABXgAAAEQAAAJEAAACRAAAA0QAAANEAAABRAAAAEQAAANEAAADRAAAAUQAAANEAAABRAAAAV4AAAAWAAABFgAAAl4AAABEAAACRAAAA0QAAAImAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAA0QAAABeAAAAFgAAARYAAANeAAAASgAAAEQAAAFEAAADRAAAAxYAAAAWAAACFgAAAV4AAABEAAAARAAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAEaAAAAGgAAAhYAAAMbAAABRAAAAEQAAABEAAACRAAAABsAAAEWAAAAFgAAABsAAABeAAAAXgAAAEQAAAFEAAACFgAAAhYAAAAWAAACXgAAAEQAAAFEAAACRAAAAkQAAANeAAAAFgAAAhYAAAMbAAAAXgAAAF4AAABEAAACJgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAABGwAAAV4AAABeAAAARAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAADFgAAABYAAAAWAAADFgAAABsAAAJeAAAAXgAAAEQAAAJEAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAGwAAARYAAAIWAAABFgAAAxYAAAEbAAAAXgAAAF4AAABEAAADJgAAAA== - 0,3: - ind: 0,3 - tiles: RAAAAV4AAABeAAAAXgAAACwAAAAsAAAAXgAAAF0AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAATwAAAEQAAAJeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABEAAADXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACRAAAAF4AAAAbAAABFgAAARYAAAEWAAAAFgAAABYAAAMWAAACFgAAABYAAAIWAAADFgAAAV4AAABEAAAARAAAAUQAAAEbAAADFgAAABYAAAIWAAACFgAAABcAAAMXAAABFwAAABcAAAMXAAADFwAAABYAAANeAAAARAAAAEQAAANEAAACXgAAABYAAAEWAAADFgAAABYAAAAXAAACFwAAAhcAAAIXAAAAFwAAABcAAAIWAAACXgAAAEQAAABEAAAARAAAA14AAAAWAAABFgAAAxYAAAMWAAADFgAAAxYAAAAWAAADFgAAAhYAAAEWAAABFgAAAV4AAABEAAACRAAAA0QAAAIbAAABFgAAARYAAAIWAAAAWwAAA1sAAANbAAADWwAAA1sAAAFbAAAAWwAAAVsAAABeAAAARAAAAUQAAAFEAAABXgAAABYAAAIWAAABFgAAAVsAAANcAAAAXAAAAlsAAAJbAAAAXAAAAVwAAAFbAAABXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABWwAAAFsAAAJbAAAAWwAAA1sAAABbAAADWwAAAE8AAABEAAADXgAAADEAAAAxAAAAMQAAADEAAABeAAAAWwAAA1sAAAFcAAACXAAAAlwAAAFcAAACWwAAAlsAAAFeAAAARAAAA14AAAAxAAAAMQAAADEAAAAxAAAAMQAAAFsAAAFbAAADXAAAAVsAAABbAAACXAAAAVsAAABbAAAAXgAAAEQAAAFeAAAAMQAAADEAAAAxAAAAMQAAAF4AAABbAAADWwAAAFsAAAJbAAADWwAAAFsAAABbAAAAWwAAAV4AAABEAAABXgAAADEAAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAzEAAAAxAAAAMQAAADEAAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 1,3: - ind: 1,3 - tiles: XgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAAWAAADFgAAAhYAAAMeAAACHgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAA1sAAAFeAAAAJgAAABYAAAMWAAADHgAAAh4AAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADEAAAAxAAAAGwAAARYAAAJeAAAAXgAAAE8AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADEAAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAAAfAAACHwAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAHwAAACYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAB8AAAEmAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAATgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAE4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABOAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,3: - ind: 2,3 - tiles: FgAAAxYAAAIWAAACXgAAAF4AAABeAAAAXgAAAE8AAABbAAABWwAAA1sAAAJbAAAAXgAAAFsAAAJbAAADXgAAABYAAAMWAAACJgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAlsAAAFbAAACWwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAAFsAAAFeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAAlsAAANbAAABXgAAAF0AAAAAAAAAAAAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAHwAAAR8AAAEfAAABXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAACYAAAAmAAAAHwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAfAAAAJgAAAB8AAAJeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,4: - ind: -1,4 - tiles: TgAAAE4AAABeAAAATgAAAF4AAABeAAAAGwAAAhYAAAMbAAABGwAAAhYAAAAbAAADXgAAAF4AAABEAAAARAAAAV4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAEmAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAABYAAANEAAADRAAAAl0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAbAAABRAAAAkQAAAJdAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAVQAAA1UAAAFeAAAATgAAAF4AAABeAAAAXgAAABsAAANeAAAAXQAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAFUAAABVAAADXgAAAE4AAABeAAAAXgAAAF4AAAAWAAACFgAAAV0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABVAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAFgAAAhYAAAJdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAWwAAAVsAAABbAAADWwAAAl4AAABeAAAAXgAAABsAAAEbAAACXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAFsAAABbAAAAWwAAAVsAAANeAAAAXgAAAF4AAAAWAAABFgAAA10AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABbAAADWwAAAlsAAABbAAACXgAAAF4AAABeAAAAFgAAAhYAAAMAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAGwAAA14AAABeAAAAXgAAABsAAAFeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAABYAAAMWAAACFgAAABYAAAAWAAADFgAAABYAAAEWAAAAFgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAAAWAAACFgAAARYAAAMWAAACFgAAARYAAAIWAAAAFgAAAxYAAAIAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAABYAAAIWAAAAJgAAABYAAAMWAAACFgAAABYAAAEWAAADAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAWAAABFgAAABYAAAMmAAAAFgAAACYAAAAWAAACJgAAAA== - -2,4: - ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAATgAAAE4AAABOAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,4: - ind: 0,4 - tiles: RAAAAF4AAAAxAAAAMQAAADEAAAAxAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAATgAAAE4AAABOAAAAXgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAA0QAAABEAAADRAAAA0QAAAJEAAAARAAAAEQAAAJEAAADRAAAAEQAAANEAAACXgAAAF0AAABdAAAARAAAA0QAAAJEAAADRAAAA0QAAAJEAAABRAAAAEQAAANEAAADRAAAASYAAABEAAACRAAAAl4AAABdAAAAAAAAAEQAAANEAAADRAAAAkQAAAJEAAAARAAAA0QAAAJEAAAARAAAAUQAAABEAAACJgAAAEQAAANeAAAAXQAAAF0AAAAbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAJgAAAEQAAAFEAAAAXgAAAF0AAAAAAAAAFgAAAV4AAAAWAAACFgAAARYAAAMWAAACFgAAABYAAABeAAAARAAAAUQAAANEAAAARAAAA14AAABdAAAAAAAAABYAAAJeAAAAFgAAAxYAAANbAAABWwAAAVsAAAEWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAbAAAAXgAAABYAAAIWAAABWwAAAlsAAAJbAAADFgAAAV4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAFgAAAV4AAAAWAAAAFgAAAVsAAAJbAAAAWwAAABYAAAJeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAABYAAAJeAAAAFgAAARYAAAAWAAADFgAAAxYAAAAWAAABXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAbAAABXgAAAF4AAABeAAAAXgAAABsAAAFeAAAAXgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAFgAAAxYAAAMWAAACFgAAAxYAAAIWAAADFgAAAxYAAAFeAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAABFgAAAhYAAAAWAAACFgAAAhYAAAAWAAABXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAWAAADFgAAABYAAAMWAAADJgAAABYAAAAWAAACXgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAFgAAAyYAAAAWAAAAJgAAABYAAAEWAAACFgAAAF4AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,4: - ind: 1,4 - tiles: XgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,5: - ind: -1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAAAWAAADFgAAARYAAAEmAAAAFgAAABYAAAEWAAACJgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAABYAAAEmAAAAFgAAAhYAAAMWAAADFgAAABYAAAMAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAWAAAAFgAAAhYAAAImAAAAFgAAARYAAAMmAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAJgAAABYAAAAWAAACJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,5: - ind: 0,5 - tiles: FgAAAxYAAAIWAAABJgAAABYAAAAWAAABFgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAAAFgAAARYAAAAmAAAAFgAAAl4AAABeAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADFgAAAyYAAAAWAAABFgAAARYAAAJeAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAAmAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,-2: - ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAATgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAWwAAAVsAAAJbAAABXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAFsAAAJbAAABWwAAAlsAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABbAAADWwAAAFsAAAJbAAADTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAARwAAAF4AAABeAAAATgAAAE4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -2,-2: - ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABHAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAEcAAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAARwAAAEcAAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJKAAABRAAAAV4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAFgAAAxYAAAAWAAAAFgAAABsAAABEAAADRAAAAkQAAAJOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAADoAAAA6AAAAOgAAABYAAAFeAAAARAAAAUQAAAJEAAADXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAAA6AAAAOgAAADoAAAAWAAACXgAAAEQAAAJEAAADRAAAAw== - 1,-2: - ind: 1,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAF0AAABdAAAAXgAAABYAAAEWAAADXgAAAF0AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAABYAAAIaAAADFgAAA14AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACGgAAAxYAAAJeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAABoAAAAWAAADXgAAAF0AAABeAAAATgAAAE4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAA14AAABdAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAE4AAAAPAAAADwAAABoAAAIaAAADDwAAAA8AAAAPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAARsAAAMaAAABGgAAABsAAAMbAAACGwAAA14AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAA== - 2,-2: - ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAAXgAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAADEAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAXgAAADEAAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAADEAAAAxAAAAMQAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAMQAAADEAAABeAAAAXgAAAEcAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-3: - ind: 1,-3 - tiles: XQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFUAAABeAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABVAAACXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABHAAAARwAAADoAAABeAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAAEcAAAA6AAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEcAAABHAAAAOgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABHAAAARwAAADoAAABeAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAAEcAAAA6AAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,-3: - ind: 0,-3 - tiles: XgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABdAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXQAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABdAAAAXgAAABYAAAM6AAAAOgAAADoAAAA6AAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAAWAAABOgAAAF4AAABeAAAAOgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAFUAAANeAAAAXgAAAF0AAABeAAAAFgAAADoAAABeAAAAXgAAADoAAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABVAAACXgAAAF4AAABdAAAAXgAAABYAAAI6AAAAOgAAAF4AAAA6AAAAFgAAAl4AAABeAAAAGwAAAV4AAABeAAAATwAAAF0AAABdAAAAXQAAAF4AAAAWAAACFgAAAhYAAANeAAAAFgAAAxYAAAJeAAAARAAAAkQAAAFEAAACXgAAAE4AAABeAAAAXgAAAF0AAABeAAAAGwAAAhsAAAMWAAADFgAAARsAAAIbAAACXgAAAEQAAAFEAAABRAAAAl4AAABOAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAGwAAABsAAAFeAAAAXgAAAF4AAABEAAAARAAAAUQAAAJPAAAAXgAAAF4AAABeAAAAXQAAAF4AAABEAAABRAAAAEQAAABEAAAARAAAAUQAAANEAAAARAAAAUQAAANEAAABXgAAAF4AAABeAAAAXgAAAF0AAABeAAAARAAAAEQAAANEAAABRAAAA0QAAABEAAACRAAAAEQAAAFEAAABRAAAAl4AAABeAAAAXgAAAF4AAABdAAAAXgAAAEQAAANEAAAARAAAAkQAAANEAAAARAAAAEQAAAJEAAAARAAAA0QAAANeAAAAXgAAAA== - -1,-3: - ind: -1,-3 - tiles: XgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAMWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABeAAAATwAAABYAAAAWAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAATgAAAF4AAAAWAAACFgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAE4AAABeAAAAFgAAARYAAAMWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABOAAAAXgAAABYAAAMWAAADFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAATgAAAF4AAAAWAAABFgAAAhYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAA== - -2,-3: - ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABeAAAAVQAAAlUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAFUAAABVAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAARwAAAEcAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABHAAAARwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAEcAAABHAAAARwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAA== - -1,-4: - ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABdAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF0AAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF0AAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF0AAABdAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAXgAAAF0AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAF4AAABdAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXQAAAF4AAABdAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAA== - 0,-4: - ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAABdAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAXQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAABdAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAXQAAAF0AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABdAAAAXgAAAF0AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXQAAAF4AAABdAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF0AAABeAAAAXQAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAA== - -1,-5: - ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,-5: - ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,3: - ind: 3,3 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,4: - ind: 2,4 - tiles: AAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,5: - ind: 2,5 - tiles: XQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,5: - ind: 1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,5: - ind: 3,5 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,4: - ind: 3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,4: - ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,4: - ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAA== - -4,5: - ind: -4,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,5: - ind: -3,5 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,5: - ind: -2,5 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - type: OccluderTree - - type: Shuttle - - nextUpdate: 132705.6201203 - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - color: '#5A5A605A' - id: HalfTileOverlayGreyscale180 - decals: - 0: -2,76 - 1: -1,76 - 2: 0,76 - - node: - color: '#5A5A605A' - id: BrickTileWhiteLineS - decals: - 3: -2,76 - 4: -1,76 - 5: 0,76 - - node: - color: '#5A5A60FF' - id: BrickTileWhiteLineS - decals: - 6: -2,76 - 7: -1,76 - 8: 0,76 - - node: - color: '#5A5A6015' - id: HalfTileOverlayGreyscale - decals: - 9: -2,76 - 10: -1,76 - 11: 0,76 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 12: -2,76 - 13: -1,76 - 14: 0,76 - 33: -3,80 - 34: 1,80 - 422: 2,74 - 423: 3,74 - 424: 4,74 - 425: 5,74 - 426: 6,74 - 427: 7,74 - 520: -20,42 - 521: -19,42 - 522: -18,42 - 523: -17,42 - 524: -16,42 - 622: -5,49 - 630: -4,49 - 636: -23,48 - 637: -22,48 - 662: -15,50 - 663: -14,50 - 664: -13,50 - 665: -12,50 - 1185: -17,22 - 1262: 18,34 - 1263: 19,34 - 1264: 20,34 - 1265: 21,34 - 1593: 8,9 - 1778: 5,-18 - 1779: 6,-18 - 1780: 7,-18 - 1851: 14,29 - 1852: 15,29 - 1853: 16,29 - 1909: 17,-22 - 1950: -12,-18 - 1951: -13,-18 - 1952: -14,-18 - 1953: -15,-18 - 2081: -37,11 - 2082: -36,11 - 2083: -35,11 - 2230: 26,-12 - 2231: 27,-12 - 2232: 28,-12 - 2233: 29,-12 - 2234: 30,-12 - 2281: 41,44 - 2282: 42,44 - 2283: 43,44 - 2284: 44,44 - 2317: 9,54 - 2318: 10,54 - 2319: 11,54 - 2320: 12,54 - 5130: 22,-17 - 5131: 21,-17 - 5132: 20,-17 - 5133: 20,-15 - 5134: 21,-15 - 5135: 22,-15 - 5136: 15,-15 - 5137: 16,-15 - 5138: 17,-15 - 5139: 15,-17 - 5140: 16,-17 - 5141: 17,-17 - 5178: 18,-13 - 5179: 19,-13 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 15: -3,76 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 17: -2,77 - 18: -1,77 - 19: 0,77 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 20: -3,77 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 22: -3,76 - 30: -2,79 - 35: 2,79 - 49: -2,82 - 50: 5,81 - 60: 1,82 - 432: 0,74 - 433: 0,73 - 434: 0,71 - 435: 0,70 - 537: -9,51 - 538: -9,52 - 539: -9,53 - 540: -9,54 - 541: -9,55 - 542: -9,56 - 543: -9,57 - 544: -9,58 - 545: -9,59 - 546: -9,60 - 605: -7,47 - 606: -7,48 - 607: -7,49 - 608: -7,50 - 650: -6,57 - 651: -6,56 - 652: -6,55 - 653: -6,54 - 654: -6,53 - 655: -6,52 - 1024: 12,30 - 1025: 12,31 - 1026: 12,32 - 1027: 12,33 - 1028: 12,34 - 1101: -10,27 - 1102: -10,28 - 1103: -10,29 - 1104: -10,30 - 1105: -10,31 - 1106: -10,32 - 1107: -10,33 - 1108: -10,34 - 1113: -15,20 - 1114: -15,19 - 1115: -15,18 - 1116: -15,17 - 1187: -16,21 - 1250: -14,27 - 1251: -14,28 - 1254: 22,26 - 1255: 22,27 - 1256: 22,28 - 1257: 22,29 - 1585: 9,8 - 1586: 9,7 - 1720: 13,-24 - 1902: 17,-24 - 1903: 18,-24 - 1904: 18,-23 - 1905: 18,-25 - 1937: 19,-15 - 1938: 19,-16 - 1939: 19,-17 - 1947: -11,-19 - 1948: -11,-20 - 1989: 0,47 - 1990: 0,46 - 2024: 7,-26 - 2025: 7,-25 - 2026: 7,-24 - 2164: -37,28 - 2165: -37,27 - 2166: -37,23 - 2167: -37,26 - 2168: -37,25 - 2207: -35,-1 - 2208: -35,-2 - 2209: -35,-3 - 2210: -35,-4 - 2211: -35,-5 - 2212: -35,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 24: -2,77 - 25: -1,77 - 26: 0,77 - 386: -3,76 - 387: 1,76 - 388: 2,76 - 389: 3,76 - 390: 4,76 - 391: 5,76 - 392: 6,76 - 393: 7,76 - 394: -4,76 - 395: -5,76 - 396: -6,76 - 397: -7,76 - 398: -8,76 - 399: -9,76 - 416: 2,70 - 417: 3,70 - 418: 4,70 - 419: 5,70 - 420: 6,70 - 421: 7,70 - 499: -4,44 - 500: -5,44 - 501: -6,44 - 502: -7,44 - 503: -8,44 - 504: -9,44 - 505: -10,44 - 506: -11,44 - 507: -12,44 - 508: -13,44 - 509: -14,44 - 510: -15,44 - 511: -16,44 - 512: -17,44 - 513: -18,44 - 514: -19,44 - 515: -20,40 - 516: -19,40 - 517: -18,40 - 518: -17,40 - 519: -16,40 - 621: -5,49 - 631: -4,49 - 634: -23,47 - 635: -22,47 - 642: -17,58 - 643: -16,58 - 644: -15,58 - 645: -14,58 - 666: -15,48 - 667: -14,48 - 668: -13,48 - 669: -12,48 - 685: -8,62 - 686: -10,62 - 687: -9,62 - 1209: -10,17 - 1210: -9,17 - 1211: -8,17 - 1590: 8,6 - 1848: 15,27 - 1849: 14,27 - 1850: 16,27 - 1908: 17,-26 - 1917: 18,-10 - 1918: 19,-10 - 2027: 6,-27 - 2028: 5,-27 - 2029: 4,-27 - 2078: -37,9 - 2079: -36,9 - 2080: -35,9 - 2225: 26,-14 - 2226: 27,-14 - 2227: 28,-14 - 2228: 29,-14 - 2229: 30,-14 - 2277: 41,42 - 2278: 42,42 - 2279: 43,42 - 2280: 44,42 - 2321: 9,53 - 2322: 10,53 - 2323: 11,53 - 2324: 12,53 - 5118: 22,-15 - 5119: 21,-15 - 5120: 20,-15 - 5121: 17,-15 - 5122: 16,-15 - 5123: 15,-15 - 5124: 15,-17 - 5125: 16,-17 - 5126: 17,-17 - 5127: 20,-17 - 5128: 21,-17 - 5129: 22,-17 - 5176: 18,-13 - 5177: 19,-13 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSe - decals: - 27: -3,77 - 414: -3,76 - 1919: 17,-10 - 1944: 13,-23 - 1991: 0,48 - 2346: 18,-37 - 2350: 17,-38 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 23: 1,76 - 29: -4,79 - 36: 0,79 - 47: -7,81 - 48: -3,82 - 61: 0,82 - 428: -2,70 - 429: -2,71 - 430: -2,73 - 431: -2,74 - 525: -20,45 - 526: -20,46 - 527: -20,47 - 528: -20,48 - 529: -20,49 - 530: -20,50 - 531: -20,51 - 532: -20,52 - 533: -20,53 - 534: -17,54 - 535: -17,56 - 536: -17,55 - 547: -12,57 - 548: -12,58 - 549: -12,59 - 550: -12,60 - 678: -7,61 - 679: -7,60 - 680: -7,59 - 1029: 9,30 - 1030: 9,31 - 1031: 9,32 - 1032: 9,33 - 1033: 9,34 - 1093: -12,27 - 1094: -12,28 - 1095: -12,29 - 1096: -12,30 - 1097: -12,31 - 1098: -12,32 - 1099: -12,33 - 1100: -12,34 - 1179: -19,17 - 1180: -19,18 - 1181: -19,19 - 1182: -19,20 - 1183: -18,21 - 1258: 18,26 - 1259: 18,27 - 1260: 18,28 - 1261: 18,29 - 1591: 7,7 - 1592: 7,8 - 1714: 21,-27 - 1781: 4,-19 - 1782: 4,-20 - 1783: 4,-21 - 1784: 4,-22 - 1901: 17,-24 - 1940: 18,-17 - 1941: 18,-16 - 1942: 18,-15 - 1961: -14,-38 - 1962: -14,-37 - 1963: -14,-36 - 1964: -14,-35 - 1965: -14,-34 - 1966: -14,-33 - 1967: -14,-32 - 1968: -14,-25 - 1969: -14,-24 - 1970: -14,-23 - 1971: -14,-22 - 2154: -40,17 - 2155: -40,18 - 2156: -40,19 - 2157: -40,20 - 2158: -40,21 - 2159: -40,22 - 2160: -40,23 - 2161: -40,28 - 2162: -40,29 - 2163: -40,30 - 2201: -37,-1 - 2202: -37,-2 - 2203: -37,-3 - 2204: -37,-4 - 2205: -37,-5 - 2206: -37,-6 - 2380: 29,4 - 2381: 29,5 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 31: -4,80 - 37: 0,80 - 43: -7,82 - 44: -3,83 - 45: 0,83 - 46: 3,82 - 1184: -18,22 - 1588: 7,9 - 1777: 4,-18 - 1797: 5,-25 - 1936: 18,-14 - 2006: 4,47 - 2314: 8,54 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 32: -2,80 - 38: 2,80 - 39: 1,83 - 40: -2,83 - 41: 5,82 - 42: -5,82 - 1186: -16,22 - 1584: 9,9 - 1800: 6,-25 - 1906: 18,-22 - 1949: -11,-18 - 2005: 5,47 - 2313: 13,54 - 2348: 18,-34 - 5113: 19,-14 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineW - decals: - 51: -4,79 - 440: -2,74 - 441: -2,73 - 442: -2,71 - 443: -2,70 - 2386: 29,4 - 2387: 29,5 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 52: -3,80 - 450: 2,74 - 451: 3,74 - 452: 4,74 - 453: 6,74 - 454: 5,74 - 455: 7,74 - 1915: 17,-22 - 5142: 17,-15 - 5157: 20,-15 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineE - decals: - 53: -2,79 - 436: 0,74 - 437: 0,73 - 438: 0,71 - 439: 0,70 - 1776: 13,-24 - 1912: 18,-25 - 1913: 18,-24 - 1914: 18,-23 - 1995: 0,46 - 1996: 0,47 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNw - decals: - 54: -4,80 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNe - decals: - 55: -2,80 - 1910: 18,-22 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 66: -2,82 - 1152: -12,17 - 1153: -12,18 - 1154: -12,19 - 1155: -12,20 - 1156: -10,21 - 1157: -10,22 - 1158: -10,23 - 1188: -15,20 - 1189: -15,19 - 1190: -15,18 - 1191: -15,17 - 1197: -16,21 - 1243: -4,22 - 1244: -4,23 - 1245: -4,24 - 1252: -14,27 - 1253: -14,28 - - node: - color: '#D381C996' - id: BrickTileWhiteLineW - decals: - 67: -3,82 - 1058: -19,31 - 1063: -22,33 - 1171: -22,24 - 1172: -22,23 - 1173: -22,22 - 1174: -22,21 - 1175: -22,20 - 1176: -22,19 - 1177: -22,18 - 1178: -22,17 - 1192: -19,17 - 1193: -19,18 - 1194: -19,19 - 1195: -19,20 - 1196: -18,21 - 1845: -6,18 - 1846: -6,17 - 1847: -6,16 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNw - decals: - 68: -3,83 - 1064: -22,34 - 1170: -22,25 - 1199: -18,22 - 1841: -6,19 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNe - decals: - 69: -2,83 - 1198: -16,22 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerNe - decals: - 70: -5,82 - 1387: -8,-12 - 1958: -11,-18 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerNw - decals: - 71: -7,82 - 1411: 6,-12 - 1792: 4,-18 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineN - decals: - 72: -6,82 - 1388: -9,-12 - 1389: -10,-12 - 1390: -11,-12 - 1391: -12,-12 - 1392: -13,-12 - 1393: -14,-12 - 1394: -15,-12 - 1412: 7,-12 - 1413: 8,-12 - 1414: 9,-12 - 1415: 10,-12 - 1416: 11,-12 - 1417: 12,-12 - 1418: 13,-12 - 1785: 7,-18 - 1786: 6,-18 - 1787: 5,-18 - 1954: -15,-18 - 1955: -14,-18 - 1956: -13,-18 - 1957: -12,-18 - 5147: 17,-17 - 5156: 20,-17 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineW - decals: - 73: -7,81 - 1407: 6,-16 - 1408: 6,-15 - 1409: 6,-14 - 1410: 6,-13 - 1763: 11,-38 - 1764: 11,-37 - 1765: 11,-36 - 1766: 4,-35 - 1767: 4,-34 - 1768: 4,-33 - 1769: 9,-27 - 1770: 9,-26 - 1771: 9,-25 - 1772: 9,-24 - 1773: 9,-23 - 1774: 9,-22 - 1775: 9,-21 - 1788: 4,-22 - 1789: 4,-21 - 1790: 4,-20 - 1791: 4,-19 - 1972: -14,-22 - 1973: -14,-23 - 1974: -14,-24 - 1975: -14,-25 - 1976: -14,-32 - 1977: -14,-33 - 1978: -14,-34 - 1979: -14,-35 - 1980: -14,-36 - 1981: -14,-37 - 1982: -14,-38 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 213: -2,58 - 214: -2,59 - 215: -2,60 - 216: -2,61 - 217: -2,62 - 218: -2,63 - 219: -2,64 - 220: -2,65 - 221: -2,66 - 222: -2,68 - 223: 0,68 - 224: -1,68 - 225: 2,68 - 226: 3,68 - 227: 4,68 - 228: 5,68 - 229: 6,68 - 230: 7,68 - 2388: -2,67 - 2389: 1,68 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineS - decals: - 400: -3,76 - 401: -4,76 - 402: -5,76 - 403: -6,76 - 404: -7,76 - 405: -8,76 - 406: -9,76 - 407: 1,76 - 408: 2,76 - 409: 3,76 - 410: 4,76 - 411: 5,76 - 412: 6,76 - 413: 7,76 - 444: 2,70 - 445: 3,70 - 446: 4,70 - 447: 6,70 - 448: 5,70 - 449: 7,70 - 1916: 17,-26 - 1921: 18,-10 - 1922: 19,-10 - - node: - color: '#52B4E996' - id: StandClearGreyscale - decals: - 456: -2,72 - 457: -1,72 - 458: 0,72 - 1997: 1,47 - 1998: 1,46 - 1999: 3,47 - 2000: 3,46 - 2017: 15,-24 - 2018: 14,-24 - 2019: 18,-11 - 2020: 19,-11 - 5174: 18,-13 - 5175: 19,-13 - - node: - color: '#52B4E996' - id: BotGreyscale - decals: - 459: -2,72 - 460: -1,72 - 461: 0,72 - 2009: 1,47 - 2010: 1,46 - 2011: 3,47 - 2012: 3,46 - 2013: 18,-11 - 2014: 19,-11 - 2015: 14,-24 - 2016: 15,-24 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 485: -9,63 - 486: -9,64 - 487: -6,64 - 692: -9,62 - 1071: -16,33 - 1072: -16,34 - 1248: -15,27 - 1249: -15,28 - 1701: 5,-41 - 1702: 5,-40 - 1983: 11,-19 - 1984: 11,-18 - 2074: -42,-5 - 2075: -42,-6 - 2076: -42,-7 - 2077: -42,-8 - 2338: 19,-35 - 2339: 19,-34 - 2340: 19,-36 - 2341: 19,-37 - 2342: 19,-38 - 2378: -24,-17 - 5116: 17,-13 - 5117: 17,-12 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 488: -6,64 - 489: -6,63 - 490: -6,62 - 491: -6,61 - 492: -6,59 - 493: -6,60 - 494: -9,64 - 1075: -14,33 - 1076: -14,34 - 1299: -12,-38 - 1300: -12,-37 - 1301: -12,-36 - 1302: -12,-35 - 1303: -12,-34 - 1304: -12,-33 - 1305: -12,-32 - 1306: -12,-25 - 1307: -12,-24 - 1308: -12,-23 - 1309: -12,-22 - 1704: 8,-40 - 1705: 8,-41 - 1985: 12,-18 - 1986: 12,-19 - 2070: -41,-5 - 2071: -41,-6 - 2072: -41,-7 - 2073: -41,-8 - 2376: -22,-17 - 5114: 20,-12 - 5115: 20,-13 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelBox - decals: - 695: -4,-13 - 696: -1,-13 - 697: 2,-13 - 698: -1,-9 - 699: -1,18 - 700: -1,21 - 701: -1,24 - 702: -1,27 - 703: -1,30 - 704: -1,33 - 705: -1,41 - 706: -1,44 - 707: -1,46 - 708: -1,49 - 709: -1,53 - 710: -1,56 - 711: -1,60 - 712: -1,63 - 713: -1,66 - 744: 10,67 - 745: 11,68 - 746: 10,69 - 1866: -32,37 - 1867: -32,33 - 1868: -32,30 - 1869: -32,27 - 1870: -32,24 - 1871: -32,21 - 1872: -32,18 - 1873: -32,14 - 1874: -32,10 - 1875: -32,7 - 1876: -32,4 - 1877: -32,1 - 1878: -32,-2 - 1879: -32,-5 - 1880: -32,-9 - 1881: 31,-9 - 1882: 31,-5 - 1883: 31,-2 - 1884: 31,1 - 1885: 31,4 - 1886: 31,7 - 1887: 31,10 - 1888: 31,14 - 1889: 31,18 - 1890: 31,21 - 1891: 31,24 - 1892: 31,27 - 1893: 31,30 - 1894: 31,33 - 1895: 31,37 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkBox - decals: - 714: -6,78 - 715: -6,81 - 716: 4,81 - 717: 4,78 - 718: 1,79 - 719: -3,79 - 720: -1,79 - 721: -1,80 - 722: -5,79 - 723: -5,80 - 724: 3,79 - 725: 3,80 - 726: 27,43 - 727: 27,45 - 728: 27,47 - 729: 27,49 - 730: 34,49 - 731: 34,47 - 732: 34,45 - 733: 34,43 - 1429: -1,10 - 1430: -1,-3 - 1431: -1,-5 - 1432: 2,-5 - 1433: 2,-3 - 1434: 2,0 - 1435: 2,2 - 1436: 2,5 - 1437: 2,7 - 1438: 2,10 - 1439: -4,10 - 1440: -4,7 - 1441: -1,7 - 1442: -1,5 - 1443: -4,5 - 1444: -13,2 - 1445: -13,0 - 1446: -10,0 - 1447: -10,2 - 1448: -7,2 - 1449: -7,0 - 1450: -4,0 - 1451: -4,2 - 1452: -1,0 - 1453: -1,2 - 1454: -7,-3 - 1455: -7,-5 - 1456: -4,-5 - 1457: -4,-3 - 5108: -13,-5 - 5109: -13,-3 - 5110: -10,-3 - 5111: -10,-5 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndS - decals: - 1900: 17,-25 - 2037: -4,82 - 2038: -1,82 - 2039: 2,82 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndN - decals: - 1899: 17,-23 - 2040: -4,83 - 2041: -1,83 - 2042: 2,83 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 1279: -16,-27 - 1280: -15,-27 - 1281: -16,-28 - 1282: -15,-28 - 1283: -16,-29 - 1284: -15,-29 - 1285: -16,-30 - 1286: -15,-30 - 1287: -14,-27 - 1288: -14,-28 - 1289: -14,-29 - 1290: -14,-30 - 1710: 4,-37 - 1711: 5,-37 - 1712: 8,-37 - 1713: 9,-37 - 2022: 7,-22 - 2449: 27,23 - 2450: 27,26 - 2451: 48,42 - 2452: 27,43 - 2453: 18,36 - 2454: 16,29 - 2455: 7,34 - 2456: -10,23 - 2457: -22,25 - 2458: -16,30 - 2459: -25,38 - 2460: -31,22 - 2461: -40,28 - 2462: -46,44 - 2463: -18,53 - 2464: 4,52 - 2465: -4,57 - 2466: -3,68 - 2467: 2,70 - 2468: -8,76 - 2469: -2,27 - 2470: 16,20 - 2471: 45,12 - 2472: 33,7 - 2473: 45,-7 - 2474: 17,-4 - 2475: 10,-16 - 2476: -8,-15 - 2477: 3,2 - 2478: -14,1 - 2479: 11,7 - 2480: 7,-6 - 2481: -18,-20 - 2482: -39,-3 - 2483: -46,12 - 2484: -35,16 - 2485: -24,15 - 2486: 14,47 - 2487: -34,-9 - - node: - cleanable: True - color: '#83543273' - id: Dirt - decals: - 2592: 27,3 - 2593: 27,4 - 2594: 27,5 - 2595: 27,6 - 2596: 28,6 - 2597: 29,6 - 2598: 29,5 - 2599: 31,5 - 2600: 32,6 - 2601: 32,11 - 2602: 32,14 - 2603: 26,14 - 2604: 21,14 - 2605: 18,14 - 2606: 16,14 - 2607: 14,14 - 2608: 10,14 - 2609: 5,14 - 2610: 2,14 - 2611: -4,14 - 2612: -7,14 - 2613: -10,14 - 2614: -13,14 - 2615: -15,14 - 2616: -19,14 - 2617: -21,14 - 2618: -26,14 - 2619: -28,13 - 2620: -30,13 - 2621: -33,14 - 2622: -35,14 - 2623: -37,13 - 2624: -39,14 - 2625: -41,14 - 2626: -39,15 - 2627: -38,15 - 2628: -37,14 - 2629: -48,13 - 2630: -50,13 - 2631: -51,15 - 2632: -51,13 - 2633: -53,13 - 2634: -53,15 - 2635: -51,14 - 2636: -34,4 - 2637: -34,6 - 2638: -34,7 - 2639: -34,5 - 2640: -36,5 - 2641: -36,4 - 2642: -36,6 - 2643: -36,7 - 2644: -35,7 - 2645: -31,7 - 2646: -31,6 - 2647: -31,4 - 2648: -34,4 - 2649: -36,2 - 2650: -37,2 - 2651: -39,2 - 2652: -41,1 - 2653: -41,0 - 2654: -40,0 - 2655: -40,1 - 2656: -42,2 - 2657: -43,2 - 2658: -44,2 - 2659: -45,2 - 2660: -44,4 - 2661: -43,4 - 2662: -43,4 - 2663: -42,4 - 2664: -40,4 - 2665: -39,6 - 2666: -39,5 - 2667: -40,6 - 2668: -41,8 - 2669: -41,10 - 2670: -41,10 - 2671: -39,7 - 2672: -38,7 - 2673: -41,-1 - 2674: -42,-3 - 2675: -41,-3 - 2676: -42,-4 - 2677: -41,-4 - 2678: -42,-5 - 2679: -42,-6 - 2680: -41,-7 - 2681: -42,-8 - 2682: -44,-8 - 2683: -43,-6 - 2684: -40,-6 - 2685: -39,-6 - 2686: -39,-8 - 2687: -41,-8 - 2688: -39,-5 - 2689: -42,-2 - 2690: -42,-1 - 2691: -39,-2 - 2692: -39,1 - 2693: -37,1 - 2694: -36,-3 - 2695: -35,-5 - 2696: -35,-5 - 2697: -37,-3 - 2698: -40,-2 - 2699: -35,-6 - 2700: -36,-5 - 2701: -36,-4 - 2702: -37,-3 - 2703: -37,-2 - 2704: -33,-5 - 2705: -32,-5 - 2706: -33,-5 - 2707: -32,-3 - 2708: -32,-2 - 2709: -32,1 - 2710: -32,4 - 2711: -32,8 - 2712: -32,5 - 2713: -32,6 - 2714: -33,7 - 2715: -33,6 - 2716: -33,4 - 2717: -33,3 - 2718: -32,2 - 2719: -32,3 - 2720: -31,0 - 2721: -31,1 - 2722: -32,-6 - 2723: -31,-7 - 2724: -31,-8 - 2725: -30,-8 - 2726: -29,-9 - 2727: -28,-9 - 2728: -27,-8 - 2729: -28,-8 - 2730: -27,-9 - 2731: -28,-10 - 2732: -27,-10 - 2733: -29,-10 - 2734: -25,-9 - 2735: -21,-9 - 2736: -19,-9 - 2737: -17,-9 - 2738: -14,-9 - 2739: -11,-9 - 2740: -9,-9 - 2741: -6,-9 - 2742: -4,-9 - 2743: -2,-9 - 2744: 2,-9 - 2745: 4,-9 - 2746: 6,-9 - 2747: 9,-9 - 2748: 11,-9 - 2749: 13,-9 - 2750: 15,-9 - 2751: 18,-9 - 2752: 20,-9 - 2753: 23,-9 - 2754: 25,-9 - 2755: 27,-9 - 2756: 30,-9 - 2757: 32,-9 - 2758: 35,-9 - 2759: 37,-9 - 2760: 39,-9 - 2761: 42,-9 - 2762: 44,-9 - 2763: 46,-9 - 2764: 48,-9 - 2765: 46,-10 - 2766: 46,-9 - 2767: 47,-9 - 2768: 48,-10 - 2769: 49,-10 - 2770: 49,-9 - 2771: 50,-8 - 2772: 51,-8 - 2773: 50,-8 - 2774: 50,-10 - 2775: 48,-10 - 2776: 44,-10 - 2777: 38,-10 - 2778: 39,-10 - 2779: 41,-10 - 2780: 40,-9 - 2781: 38,-9 - 2782: 38,-10 - 2783: 37,-9 - 2784: 34,-8 - 2785: 33,-8 - 2786: 32,-8 - 2787: 32,-7 - 2788: 30,-8 - 2789: 30,-7 - 2790: 29,-8 - 2791: 29,-10 - 2792: 30,-10 - 2793: 26,-11 - 2794: 27,-10 - 2795: 27,-11 - 2796: 27,-12 - 2797: 27,-13 - 2798: 28,-13 - 2799: 28,-14 - 2800: 28,-15 - 2801: 27,-14 - 2802: 28,-14 - 2803: 27,-9 - 2804: 30,-5 - 2805: 30,-2 - 2806: 32,-2 - 2807: 31,-3 - 2808: 30,-4 - 2809: 30,-4 - 2810: 31,-6 - 2811: 32,-5 - 2812: 30,-1 - 2813: 30,2 - 2814: 29,3 - 2815: 33,3 - 2816: 34,0 - 2817: 34,2 - 2818: 34,5 - 2819: 34,1 - 2820: 32,0 - 2821: 29,4 - 2822: 31,8 - 2823: 32,11 - 2824: 30,14 - 2825: 35,13 - 2826: 39,12 - 2827: 42,14 - 2828: 45,14 - 2829: 50,13 - 2830: 51,13 - 2831: 51,15 - 2832: 50,15 - 2833: 51,15 - 2834: 49,15 - 2835: 48,15 - 2836: 48,17 - 2837: 48,17 - 2838: 48,15 - 2839: 46,15 - 2840: 46,16 - 2841: 46,17 - 2842: 46,15 - 2843: 45,13 - 2844: 48,13 - 2845: 50,13 - 2846: 49,13 - 2847: 46,13 - 2848: 42,13 - 2849: 40,14 - 2850: 39,14 - 2851: 36,13 - 2852: 34,15 - 2853: 31,14 - 2854: 30,13 - 2855: 27,13 - 2856: 26,14 - 2857: 24,15 - 2858: 22,14 - 2859: 21,13 - 2860: 30,16 - 2861: 31,18 - 2862: 29,20 - 2863: 31,22 - 2864: 30,24 - 2865: 28,26 - 2866: 29,26 - 2867: 28,26 - 2868: 28,28 - 2869: 27,25 - 2870: 28,25 - 2871: 28,25 - 2872: 29,25 - 2873: 28,28 - 2874: 29,32 - 2875: 29,32 - 2876: 29,33 - 2877: 27,33 - 2878: 27,32 - 2879: 26,32 - 2880: 25,33 - 2881: 25,35 - 2882: 25,35 - 2883: 26,35 - 2884: 25,36 - 2885: 27,36 - 2886: 25,36 - 2887: 26,36 - 2888: 27,36 - 2889: 30,36 - 2890: 30,37 - 2891: 30,38 - 2892: 31,41 - 2893: 30,41 - 2894: 31,40 - 2895: 30,44 - 2896: 30,45 - 2897: 31,46 - 2898: 31,44 - 2899: 30,47 - 2900: 31,49 - 2901: 32,47 - 2902: 35,47 - 2903: 34,48 - 2904: 31,47 - 2905: 28,47 - 2906: 27,47 - 2907: 27,45 - 2908: 27,43 - 2909: 27,47 - 2910: 27,49 - 2911: 29,47 - 2912: 31,48 - 2913: 32,37 - 2914: 34,37 - 2915: 37,37 - 2916: 41,38 - 2917: 46,37 - 2918: 34,38 - 2919: 34,38 - 2920: 36,38 - 2921: 35,38 - 2922: 35,37 - 2923: 39,37 - 2924: 45,36 - 2925: 41,37 - 2926: 41,39 - 2927: 43,40 - 2928: 42,40 - 2929: 41,40 - 2930: 42,40 - 2931: 41,40 - 2932: 45,40 - 2933: 47,41 - 2934: 47,43 - 2935: 47,44 - 2936: 46,42 - 2937: 47,38 - 2938: 47,37 - 2939: 48,40 - 2940: 48,38 - 2941: 49,37 - 2942: 49,36 - 2943: 50,38 - 2944: 51,38 - 2945: 51,38 - 2946: 48,38 - 2947: 51,36 - 2948: 50,36 - 2949: 49,36 - 2950: 51,36 - 2951: 49,38 - 2952: 48,36 - 2953: 48,35 - 2954: 48,35 - 2955: 49,34 - 2956: 47,35 - 2957: 44,36 - 2958: 46,35 - 2959: 46,35 - 2960: 46,36 - 2961: 46,34 - 2962: 46,34 - 2963: 46,37 - 2964: 43,36 - 2965: 43,36 - 2966: 45,38 - 2967: 44,38 - 2968: 45,39 - 2969: 42,39 - 2970: 46,37 - 2971: 43,37 - 2972: 41,37 - 2973: 44,38 - 2974: 45,38 - 2975: 38,37 - 2976: 41,37 - 2977: 42,37 - 2978: 40,37 - 2979: 42,39 - 2980: 41,40 - 2981: 45,43 - 2982: 45,43 - 2983: 44,43 - 2984: 41,43 - 2985: 41,43 - 2986: 43,43 - 2987: 44,43 - 2988: 41,43 - 2989: 44,42 - 2990: 43,42 - 2991: 27,37 - 2992: 25,38 - 2993: 24,38 - 2994: 25,38 - 2995: 26,38 - 2996: 22,40 - 2997: 22,42 - 2998: 20,42 - 2999: 18,41 - 3000: 17,40 - 3001: 18,39 - 3002: 19,41 - 3003: 22,41 - 3004: 22,40 - 3005: 24,38 - 3006: 17,38 - 3007: 14,39 - 3008: 14,41 - 3009: 14,42 - 3010: 13,42 - 3011: 12,44 - 3012: 12,45 - 3013: 14,45 - 3014: 16,46 - 3015: 17,46 - 3016: 18,46 - 3017: 18,45 - 3018: 18,45 - 3019: 18,46 - 3020: 17,46 - 3021: 18,45 - 3022: 20,45 - 3023: 21,45 - 3024: 21,46 - 3025: 21,47 - 3026: 21,48 - 3027: 20,49 - 3028: 16,50 - 3029: 15,47 - 3030: 15,48 - 3031: 15,49 - 3032: 14,44 - 3033: 15,37 - 3034: 13,38 - 3035: 11,38 - 3036: 7,38 - 3037: 12,38 - 3038: 12,38 - 3039: 7,36 - 3040: 3,36 - 3041: 0,36 - 3042: 0,37 - 3043: 5,37 - 3044: 4,37 - 3045: -5,37 - 3046: -9,37 - 3047: -12,37 - 3048: -13,37 - 3049: -7,37 - 3050: -6,37 - 3051: -13,38 - 3052: -18,37 - 3053: -22,37 - 3054: -27,37 - 3055: -29,37 - 3056: -13,42 - 3057: -14,42 - 3058: -14,41 - 3059: -13,41 - 3060: -13,42 - 3061: -15,40 - 3062: -13,40 - 3063: -13,41 - 3064: -14,40 - 3065: -14,40 - 3066: -13,42 - 3067: -13,42 - 3068: -14,40 - 3069: -13,42 - 3070: -11,42 - 3071: -10,41 - 3072: -11,40 - 3073: -11,42 - 3074: -11,41 - 3075: -10,41 - 3076: -11,42 - 3077: -11,40 - 3078: -10,40 - 3079: -10,42 - 3080: -10,40 - 3081: -10,41 - 3082: -10,42 - 3083: -10,42 - 3084: -10,42 - 3085: -7,42 - 3086: -7,41 - 3087: -7,40 - 3088: -7,42 - 3089: -7,40 - 3090: -7,40 - 3091: -8,42 - 3092: -7,40 - 3093: -7,42 - 3094: -8,41 - 3095: -7,42 - 3096: -7,42 - 3097: -4,42 - 3098: -4,41 - 3099: -5,41 - 3100: -5,40 - 3101: -4,40 - 3102: -4,41 - 3103: -5,42 - 3104: -5,42 - 3105: -4,40 - 3106: -4,40 - 3107: -5,42 - 3108: -5,40 - 3109: -4,42 - 3110: -4,42 - 3111: -4,42 - 3112: -5,41 - 3113: -4,44 - 3114: -5,45 - 3115: -7,45 - 3116: -9,46 - 3117: -6,44 - 3118: -8,45 - 3119: -7,44 - 3120: -8,46 - 3121: -12,46 - 3122: -10,44 - 3123: -11,45 - 3124: -13,46 - 3125: -11,45 - 3126: -10,43 - 3127: -13,45 - 3128: -12,43 - 3129: -14,45 - 3130: -15,46 - 3131: -13,44 - 3132: -16,46 - 3133: -14,45 - 3134: -17,46 - 3135: -18,47 - 3136: -18,50 - 3137: -17,52 - 3138: -17,46 - 3139: -18,48 - 3140: -19,48 - 3141: -20,47 - 3142: -20,48 - 3143: -22,48 - 3144: -22,47 - 3145: -23,47 - 3146: -23,48 - 3147: -24,48 - 3148: -22,49 - 3149: -23,46 - 3150: -24,46 - 3151: -22,46 - 3152: -22,49 - 3153: -23,49 - 3154: -22,46 - 3155: -25,48 - 3156: -26,47 - 3157: -26,47 - 3158: -25,48 - 3159: -29,47 - 3160: -29,48 - 3161: -28,48 - 3162: -29,47 - 3163: -28,48 - 3164: -31,47 - 3165: -32,48 - 3166: -36,48 - 3167: -35,47 - 3168: -33,47 - 3169: -34,48 - 3170: -35,48 - 3171: -32,48 - 3172: -32,46 - 3173: -32,45 - 3174: -32,43 - 3175: -34,43 - 3176: -35,43 - 3177: -30,42 - 3178: -30,43 - 3179: -36,43 - 3180: -35,43 - 3181: -31,42 - 3182: -30,43 - 3183: -34,43 - 3184: -27,42 - 3185: -28,43 - 3186: -28,45 - 3187: -29,45 - 3188: -29,44 - 3189: -29,43 - 3190: -18,49 - 3191: -18,52 - 3192: -16,54 - 3193: -15,55 - 3194: -14,53 - 3195: -11,54 - 3196: -10,56 - 3197: -11,58 - 3198: -10,59 - 3199: -11,59 - 3200: -12,59 - 3201: -14,59 - 3202: -16,59 - 3203: -14,59 - 3204: -14,59 - 3205: -12,59 - 3206: -11,58 - 3207: -10,59 - 3208: -9,59 - 3209: -7,59 - 3210: -6,60 - 3211: -7,59 - 3212: -7,60 - 3213: -7,61 - 3214: -7,62 - 3215: -9,63 - 3216: -9,64 - 3217: -9,62 - 3218: -6,63 - 3219: -9,58 - 3220: -9,54 - 3221: -9,53 - 3222: -8,55 - 3223: -7,56 - 3224: -7,54 - 3225: -6,53 - 3226: -7,53 - 3227: -8,55 - 3228: -11,55 - 3229: -9,51 - 3230: -10,50 - 3231: -6,50 - 3232: -3,50 - 3233: -2,50 - 3234: -5,50 - 3235: -8,50 - 3236: -6,50 - 3237: -2,50 - 3238: -2,50 - 3239: -4,50 - 3240: -4,50 - 3241: -2,51 - 3242: -2,51 - 3243: -4,53 - 3244: -4,53 - 3245: -4,54 - 3246: -1,52 - 3247: -1,54 - 3248: 0,57 - 3249: 0,60 - 3250: 0,56 - 3251: 0,54 - 3252: 0,52 - 3253: -2,53 - 3254: -1,56 - 3255: -2,59 - 3256: -1,60 - 3257: -1,64 - 3258: -1,66 - 3259: 0,68 - 3260: 0,67 - 3261: 0,66 - 3262: 0,62 - 3263: 0,59 - 3264: -2,61 - 3265: -1,66 - 3266: -1,69 - 3267: -2,65 - 3268: -1,68 - 3269: -2,71 - 3270: -2,74 - 3271: -1,77 - 3272: 0,67 - 3273: 0,71 - 3274: 0,75 - 3275: 0,78 - 3276: -3,77 - 3277: -5,78 - 3278: -4,79 - 3279: -3,80 - 3280: -4,78 - 3281: -6,77 - 3282: -6,80 - 3283: -4,81 - 3284: -1,81 - 3285: 1,82 - 3286: 3,81 - 3287: 4,81 - 3288: 4,78 - 3289: 5,77 - 3290: 6,76 - 3291: 2,76 - 3292: 1,78 - 3293: -1,79 - 3294: -4,78 - 3295: 1,79 - 3296: 2,79 - 3297: 2,80 - 3298: 4,80 - 3299: 4,78 - 3300: -2,77 - 3301: -6,78 - 3302: -6,80 - 3303: -4,82 - 3304: -8,76 - 3305: -8,75 - 3306: -6,76 - 3307: -6,74 - 3308: -9,72 - 3309: -8,72 - 3310: -9,71 - 3311: -9,70 - 3312: -9,69 - 3313: -8,70 - 3314: -8,69 - 3315: -9,69 - 3316: -9,72 - 3317: -6,75 - 3318: -6,76 - 3319: 1,67 - 3320: 4,67 - 3321: 8,67 - 3322: 9,68 - 3323: 10,69 - 3324: 13,69 - 3325: 7,66 - 3326: 6,67 - 3327: 7,66 - 3328: 9,67 - 3329: 7,66 - 3330: 6,66 - 3331: 9,66 - 3332: 8,66 - 3333: 1,67 - 3334: -1,66 - 3335: 0,62 - 3336: -1,59 - 3337: 1,56 - 3338: 3,55 - 3339: 2,56 - 3340: 3,56 - 3341: 4,56 - 3342: 5,55 - 3343: 7,53 - 3344: 10,53 - 3345: 11,53 - 3346: 14,54 - 3347: 13,55 - 3348: 10,54 - 3349: 7,54 - 3350: 6,52 - 3351: 8,52 - 3352: 11,52 - 3353: 13,52 - 3354: 14,52 - 3355: 11,52 - 3356: 7,52 - 3357: 5,53 - 3358: 3,53 - 3359: 4,53 - 3360: 1,53 - 3361: 0,52 - 3362: 2,52 - 3363: 4,53 - 3364: 0,53 - 3365: 0,50 - 3366: -1,50 - 3367: -1,49 - 3368: -1,47 - 3369: -1,45 - 3370: -1,47 - 3371: -3,48 - 3372: -2,47 - 3373: -2,47 - 3374: -2,48 - 3375: -1,48 - 3376: -1,46 - 3377: -1,44 - 3378: -1,44 - 3379: -2,40 - 3380: -2,39 - 3381: -3,38 - 3382: -4,37 - 3383: -2,38 - 3384: -2,40 - 3385: -2,38 - 3386: -4,38 - 3387: 0,40 - 3388: 0,38 - 3389: 2,37 - 3390: 1,38 - 3391: 0,39 - 3392: -1,40 - 3393: -1,41 - 3394: -1,43 - 3395: -1,44 - 3396: -1,44 - 3397: 1,37 - 3398: 2,37 - 3399: 5,37 - 3400: 10,37 - 3401: 5,37 - 3402: 12,37 - 3403: 15,37 - 3404: 20,37 - 3405: 20,37 - 3406: 11,37 - 3407: 2,37 - 3408: -1,35 - 3409: -1,33 - 3410: -1,31 - 3411: -1,29 - 3412: -1,28 - 3413: -1,28 - 3414: -1,26 - 3415: -1,24 - 3416: -1,22 - 3417: -1,21 - 3418: -1,20 - 3419: -1,18 - 3420: -5,18 - 3421: -6,18 - 3422: -7,18 - 3423: -6,17 - 3424: -7,17 - 3425: -10,17 - 3426: -12,17 - 3427: -9,17 - 3428: -7,17 - 3429: -11,18 - 3430: -9,18 - 3431: -8,17 - 3432: -10,17 - 3433: -6,17 - 3434: -3,17 - 3435: 1,17 - 3436: 5,17 - 3437: 6,17 - 3438: 3,18 - 3439: 10,18 - 3440: 5,18 - 3441: 8,18 - 3442: 12,18 - 3443: 16,18 - 3444: 16,19 - 3445: 15,20 - 3446: 15,20 - 3447: 15,19 - 3448: 14,20 - 3449: 15,20 - 3450: 16,19 - 3451: 10,18 - 3452: 7,18 - 3453: 6,18 - 3454: 5,17 - 3455: 11,19 - 3456: 11,20 - 3457: 11,23 - 3458: 11,22 - 3459: 11,21 - 3460: 10,23 - 3461: 10,24 - 3462: 10,26 - 3463: 11,27 - 3464: 11,25 - 3465: 10,26 - 3466: 9,27 - 3467: 7,28 - 3468: 6,28 - 3469: 8,27 - 3470: 6,25 - 3471: 4,23 - 3472: 3,22 - 3473: 7,23 - 3474: 5,24 - 3475: 3,24 - 3476: 7,27 - 3477: 6,28 - 3478: 6,30 - 3479: 6,33 - 3480: 5,34 - 3481: 4,33 - 3482: 4,32 - 3483: 4,31 - 3484: 4,29 - 3485: 3,27 - 3486: 4,27 - 3487: 4,27 - 3488: 4,29 - 3489: 5,32 - 3490: 5,33 - 3491: 6,31 - 3492: 6,29 - 3493: 7,29 - 3494: 7,31 - 3495: 8,28 - 3496: 11,28 - 3497: 11,28 - 3498: 13,28 - 3499: 15,28 - 3500: 12,28 - 3501: 14,28 - 3502: 19,29 - 3503: 19,30 - 3504: 19,29 - 3505: 19,31 - 3506: 19,32 - 3507: 20,33 - 3508: 20,34 - 3509: 20,33 - 3510: 19,31 - 3511: 18,31 - 3512: 18,33 - 3513: 18,27 - 3514: 19,26 - 3515: 22,27 - 3516: 21,26 - 3517: 21,26 - 3518: 21,27 - 3519: 21,28 - 3520: 20,32 - 3521: 20,33 - 3522: 20,33 - 3523: 19,32 - 3524: 19,31 - 3525: 19,34 - 3526: 19,34 - 3527: 20,33 - 3528: 20,31 - 3529: 20,31 - 3530: 20,32 - 3531: 20,33 - 3532: 20,34 - 3533: 20,32 - 3534: 19,32 - 3535: 19,34 - 3536: 19,31 - 3537: 14,17 - 3538: 11,22 - 3539: 10,23 - 3540: 10,25 - 3541: 18,14 - 3542: 20,14 - 3543: 25,14 - 3544: 23,14 - 3545: 23,17 - 3546: 25,19 - 3547: 26,21 - 3548: 27,22 - 3549: 26,21 - 3550: 24,19 - 3551: 23,18 - 3552: 22,18 - 3553: 22,19 - 3554: 24,20 - 3555: 26,22 - 3556: 27,22 - 3557: 27,20 - 3558: 24,18 - 3559: 23,18 - 3560: 27,20 - 3561: 26,20 - 3562: 25,18 - 3563: 25,17 - 3564: 24,17 - 3565: 24,16 - 3566: 23,15 - 3567: 23,16 - 3568: 25,16 - 3569: 25,16 - 3570: 24,16 - 3571: 25,17 - 3572: 28,19 - 3573: 29,20 - 3574: 29,21 - 3575: 28,19 - 3576: 28,20 - 3577: 29,21 - 3578: 29,22 - 3579: 27,25 - 3580: 30,31 - 3581: 30,28 - 3582: 31,26 - 3583: 31,19 - 3584: 31,18 - 3585: 33,16 - 3586: 39,14 - 3587: 44,15 - 3588: 19,13 - 3589: 18,13 - 3590: 17,14 - 3591: 17,13 - 3592: 18,13 - 3593: 19,15 - 3594: 18,14 - 3595: 18,15 - 3596: 23,16 - 3597: 22,17 - 3598: 25,21 - 3599: 27,21 - 3600: 28,21 - 3601: 27,19 - 3602: 27,21 - 3603: 25,18 - 3604: 24,17 - 3619: 10,-12 - 3620: 11,-12 - 3621: 11,-13 - 3622: 11,-15 - 3623: 11,-16 - 3624: 12,-17 - 3625: 11,-15 - 3626: 10,-11 - 3627: 8,-14 - 3628: 5,-16 - 3629: 6,-16 - 3630: 10,-12 - 3631: 12,-14 - 3632: 12,-17 - 3633: 12,-18 - 3634: 11,-14 - 3635: 9,-12 - 3636: 9,-13 - 3637: 5,-13 - 3638: 4,-10 - 3639: 4,-11 - 3640: 4,-13 - 3641: 4,-14 - 3642: 2,-14 - 3643: 4,-11 - 3644: 4,-12 - 3645: 3,-13 - 3646: -4,-14 - 3647: -6,-13 - 3648: -6,-11 - 3649: -7,-8 - 3650: -3,-13 - 3651: -6,-11 - 3652: -7,-9 - 3653: -5,-14 - 3654: -5,-10 - 3655: -1,-11 - 3656: 0,-11 - 3657: -5,-14 - 3658: -6,-11 - 3659: -8,-9 - 3660: -12,-9 - 3661: -10,-10 - 3662: -15,-10 - 3663: -19,-10 - 3664: -19,-13 - 3665: -19,-16 - 3666: -19,-19 - 3667: -16,-10 - 3668: -18,-18 - 3669: -19,-19 - 3670: -17,-12 - 3671: -18,-12 - 3672: -18,-13 - 3673: -19,-12 - 3674: -19,-10 - 3675: -17,-10 - 3676: -15,-9 - 3677: -11,-9 - 3678: -20,-10 - 3679: -20,-10 - 3680: -18,-17 - 3681: -17,-19 - 3682: -17,-20 - 3683: -17,-20 - 3684: -9,-14 - 3685: -13,-12 - 3686: -11,-13 - 3687: -10,-15 - 3688: -10,-15 - 3689: -14,-13 - 3690: -10,-13 - 3691: -9,-16 - 3692: -9,-15 - 3693: -10,-16 - 3694: -9,-16 - 3695: -13,-16 - 3696: -13,-15 - 3697: -13,-13 - 3698: -13,-14 - 3699: -13,-18 - 3700: -13,-19 - 3701: -13,-20 - 3702: -14,-19 - 3703: -12,-19 - 3704: -11,-19 - 3705: -15,-19 - 3706: -8,-19 - 3707: -8,-21 - 3708: -10,-23 - 3709: -8,-26 - 3710: -8,-28 - 3711: -7,-30 - 3712: -6,-32 - 3713: -9,-34 - 3714: -6,-36 - 3715: -9,-37 - 3716: -10,-39 - 3717: -10,-41 - 3718: -7,-41 - 3719: -9,-39 - 3720: -10,-36 - 3721: -11,-34 - 3722: -10,-38 - 3723: -10,-41 - 3724: -7,-39 - 3725: -7,-33 - 3754: -14,-38 - 3755: -13,-37 - 3756: -13,-35 - 3757: -13,-32 - 3758: -13,-24 - 3759: -13,-24 - 3760: -12,-23 - 3761: -12,-22 - 3762: -13,-22 - 3763: -13,-22 - 3764: -13,-23 - 3765: -13,-24 - 3766: -12,-25 - 3767: 12,-21 - 3768: 12,-22 - 3769: 12,-23 - 3770: 12,-25 - 3771: 12,-27 - 3772: 12,-29 - 3773: 12,-31 - 3774: 12,-33 - 3775: 12,-35 - 3776: 12,-36 - 3777: 12,-37 - 3778: 12,-38 - 3779: 12,-37 - 3780: 12,-35 - 3781: 12,-33 - 3782: 12,-31 - 3783: 12,-29 - 3784: 12,-27 - 3785: 12,-25 - 3786: 12,-23 - 3787: 12,-21 - 3788: 12,-21 - 3789: 12,-25 - 3790: 12,-27 - 3791: 12,-29 - 3792: 12,-32 - 3793: 12,-34 - 3828: 11,-21 - 3829: 11,-23 - 3830: 11,-25 - 3831: 11,-27 - 3832: 11,-30 - 3833: 11,-32 - 3834: 11,-35 - 3835: 11,-36 - 3836: 11,-35 - 3837: 11,-33 - 3838: 11,-30 - 3839: 11,-27 - 3840: 11,-24 - 3841: 11,-21 - 3842: 13,-24 - 3843: 13,-24 - 3844: 12,-24 - 3845: 11,-24 - 3846: 10,-25 - 3847: 9,-25 - 3848: 10,-25 - 3849: 7,-26 - 3850: 6,-27 - 3851: 4,-26 - 3852: 6,-25 - 3853: 7,-25 - 3854: 10,-21 - 3855: 8,-21 - 3856: 6,-21 - 3857: 5,-20 - 3858: 5,-19 - 3859: 7,-19 - 3861: 7,-18 - 3862: 7,-20 - 3864: 5,-21 - 3865: 5,-21 - 3867: 6,-19 - 3868: 5,-19 - 3869: 6,-20 - 3870: 6,-21 - 3871: 5,-21 - 3876: 10,-21 - 3877: 9,-21 - 3878: 10,-22 - 3879: 9,-22 - 3880: 10,-23 - 3881: 9,-22 - 3882: 11,-22 - 3915: 6,-35 - 3916: 11,-34 - 3917: 7,-37 - 3918: 6,-37 - 3919: 7,-38 - 3920: 7,-37 - 3921: 6,-37 - 3922: 6,-38 - 3923: 6,-38 - 3924: 6,-38 - 3925: 5,-38 - 3926: 4,-40 - 3949: 17,-37 - 3950: 18,-37 - 3951: 18,-37 - 3952: 18,-36 - 3953: 18,-35 - 3954: 18,-35 - 3955: 18,-34 - 3956: 18,-35 - 3957: 18,-35 - 3958: 17,-35 - 3959: 17,-35 - 3960: 17,-34 - 3961: 17,-34 - 3962: 17,-34 - 3963: 17,-34 - 3964: 18,-36 - 3965: 18,-36 - 3966: 18,-36 - 3967: 18,-36 - 3968: 18,-36 - 3979: 15,-41 - 3980: 15,-40 - 3981: 16,-40 - 3982: 16,-41 - 3983: 15,-41 - 3984: 15,-40 - 3985: 15,-38 - 3986: 15,-37 - 3987: 15,-37 - 3988: 15,-38 - 3989: 16,-41 - 3990: 16,-40 - 3991: 15,-41 - 3992: 15,-40 - 3993: 8,-38 - 3994: 9,-39 - 3995: 9,-41 - 3996: 4,-42 - 3997: 4,-39 - 3998: 5,-41 - 3999: -14,-38 - 4000: -13,-35 - 4001: -13,-32 - 4002: -13,-24 - 4003: -12,-23 - 4004: -13,-30 - 4005: -14,-30 - 4006: -16,-27 - 4007: -13,-27 - 4008: -14,-28 - 4009: -16,-29 - 4010: -16,-29 - 4011: -15,-27 - 4012: -13,-28 - 4013: -13,-29 - 4014: -14,-30 - 4015: -13,-29 - 4016: -13,-27 - 4017: -12,-29 - 4018: -7,-6 - 4019: -7,-4 - 4020: -5,-2 - 4021: -2,1 - 4022: -1,4 - 4023: 0,7 - 4024: 2,10 - 4025: 1,8 - 4026: 1,4 - 4027: -3,6 - 4028: -3,11 - 4029: -3,5 - 4030: 1,1 - 4031: -3,-2 - 4032: -1,-5 - 4033: 1,-6 - 4034: 1,-4 - 4035: 1,0 - 4036: 1,4 - 4037: 1,9 - 4038: 2,11 - 4039: 2,7 - 4040: 2,2 - 4041: 3,-2 - 4042: 3,-7 - 4043: 2,-4 - 4044: 1,0 - 4045: 1,5 - 4046: 1,8 - 4047: 1,11 - 4048: -2,11 - 4049: -4,7 - 4050: -4,2 - 4051: -3,-2 - 4052: 7,-5 - 4053: 6,-4 - 4054: 5,-1 - 4055: 6,1 - 4056: 7,0 - 4057: 7,-2 - 4058: 7,-3 - 4059: 10,-4 - 4060: 11,-5 - 4061: 11,-3 - 4062: 11,-3 - 4063: 9,-5 - 4064: 8,-5 - 4065: 10,-3 - 4066: 10,-1 - 4067: 8,-1 - 4068: 7,1 - 4069: 11,-1 - 4070: 11,-1 - 4071: 11,-2 - 4072: 11,-1 - 4073: 10,2 - 4074: 10,2 - 4075: 11,2 - 4076: 11,1 - 4077: 10,1 - 4078: 11,1 - 4079: 11,1 - 4080: 12,2 - 4081: 12,2 - 4094: 8,5 - 4095: 7,6 - 4096: 6,8 - 4097: 7,9 - 4098: 9,10 - 4099: 10,9 - 4100: 10,7 - 4101: 7,6 - 4102: 5,11 - 4103: 5,11 - 4104: 5,9 - 4105: 6,6 - 4106: 7,5 - 4107: 11,7 - 4108: 10,10 - 4109: 6,5 - 4110: 5,5 - 4111: 5,5 - 4112: 3,5 - 4113: 4,5 - 4114: 5,5 - 4115: 2,5 - 4116: 3,5 - 4117: 3,5 - 4118: 5,-4 - 4119: 5,-5 - 4120: 6,-5 - 4121: 6,1 - 4122: 7,2 - 4123: 6,2 - 4124: 5,-5 - 4125: 4,-5 - 4139: 7,-4 - 4140: 6,-4 - 4141: 5,-3 - 4142: 5,-3 - 4143: 3,-3 - 4144: 3,-2 - 4145: 3,-1 - 4146: 3,-4 - 4147: 2,-6 - 4148: 1,-6 - 4149: 1,-6 - 4150: 1,-5 - 4151: 2,-5 - 4152: 3,-3 - 4153: 3,-2 - 4154: 9,-8 - 4155: 10,-7 - 4156: 11,-7 - 4157: 9,-7 - 4158: 11,-7 - 4159: 10,-7 - 4160: 9,-8 - 4161: 10,-8 - 4162: 10,-9 - 4163: 7,-8 - 4164: 8,-8 - 4165: 7,-8 - 4166: 8,-8 - 4167: 10,-8 - 4168: 10,-7 - 4169: 11,-7 - 4170: 12,-8 - 4171: 13,-8 - 4172: 14,-8 - 4173: 12,-8 - 4174: 13,-9 - 4175: 11,-8 - 4176: 10,-7 - 4177: 9,-8 - 4178: 8,-8 - 4179: 6,-8 - 4180: 9,-8 - 4181: 9,-7 - 4182: 8,-9 - 4193: -3,-1 - 4194: -4,1 - 4195: -4,3 - 4196: -4,4 - 4197: -7,3 - 4198: -9,2 - 4199: -11,-1 - 4200: -11,-1 - 4201: -13,-2 - 4202: -13,-2 - 4203: -15,1 - 4204: -14,0 - 4205: -14,2 - 4206: -14,3 - 4207: -14,4 - 4208: -13,2 - 4209: -13,1 - 4210: -12,0 - 4211: -10,1 - 4212: -9,2 - 4213: -8,2 - 4214: -7,1 - 4215: -8,2 - 4216: -6,0 - 4217: -4,0 - 4218: -3,2 - 4219: -3,4 - 4220: -2,6 - 4221: 0,6 - 4228: 3,6 - 4229: 2,6 - 4232: -10,7 - 4233: -9,6 - 4234: -9,6 - 4235: -8,6 - 4236: -7,6 - 4237: -10,7 - 4238: -10,6 - 4239: -10,8 - 4240: -9,8 - 4241: -10,8 - 4242: -11,7 - 4243: -10,6 - 4244: -9,6 - 4245: -9,7 - 4246: -7,8 - 4247: -5,7 - 4248: -5,6 - 4249: -5,5 - 4250: -5,4 - 4251: -8,4 - 4252: -9,4 - 4253: -8,4 - 4254: -9,4 - 4255: -9,4 - 4256: -7,4 - 4257: -5,10 - 4258: -5,10 - 4259: -4,10 - 4260: -4,11 - 4261: -4,11 - 4262: -3,11 - 4263: -4,9 - 4264: -3,10 - 4265: -3,7 - 4266: -3,5 - 4267: -3,3 - 4268: -3,0 - 4269: -3,-2 - 4270: -3,0 - 4271: -3,4 - 4272: -3,8 - 4273: -3,11 - 4274: -3,1 - 4275: -3,-2 - 4276: -3,-5 - 4277: -3,-6 - 4372: -44,43 - 4373: -44,42 - 4374: -44,40 - 4375: -43,38 - 4376: -43,37 - 4377: -43,37 - 4378: -44,39 - 4379: -44,42 - 4380: -45,44 - 4381: -46,43 - 4382: -47,43 - 4383: -48,44 - 4384: -45,43 - 4385: -44,43 - 4386: -45,43 - 4387: -47,43 - 4388: -49,43 - 4389: -49,41 - 4390: -49,39 - 4391: -51,38 - 4392: -51,38 - 4393: -51,37 - 4394: -51,36 - 4395: -51,36 - 4396: -46,36 - 4397: -44,36 - 4398: -49,36 - 4399: -51,36 - 4400: -47,37 - 4401: -51,38 - 4402: -50,38 - 4403: -46,37 - 4404: -43,37 - 4405: -38,37 - 4406: -45,37 - 4407: -51,36 - 4408: -47,36 - 4409: -41,36 - 4410: -44,37 - 4411: -38,37 - 4412: -33,37 - 4413: -38,36 - 4414: -39,36 - 4415: -41,36 - 4416: -39,36 - 4417: -39,37 - 4418: -40,37 - 4419: -40,36 - 4420: -37,37 - 4421: -37,36 - 4422: -41,37 - 4423: -42,37 - 4424: -36,37 - 4425: -35,37 - 4426: -33,36 - 4427: -35,36 - 4428: -35,36 - 4429: -37,37 - 4430: -35,38 - 4431: -30,36 - 4432: -31,36 - 4433: -31,35 - 4434: -31,35 - 4435: -30,37 - 4436: -30,36 - 4437: -31,35 - 4438: -30,33 - 4439: -29,33 - 4440: -27,32 - 4441: -28,31 - 4442: -29,30 - 4443: -30,30 - 4444: -32,30 - 4445: -29,30 - 4446: -28,31 - 4447: -29,33 - 4448: -31,33 - 4449: -31,32 - 4450: -28,33 - 4451: -28,31 - 4452: -28,32 - 4453: -28,33 - 4454: -28,32 - 4455: -28,30 - 4456: -28,30 - 4457: -27,30 - 4458: -27,31 - 4459: -27,33 - 4502: -39,19 - 4503: -39,18 - 4504: -39,20 - 4505: -39,23 - 4506: -39,23 - 4507: -38,26 - 4508: -39,29 - 4509: -38,28 - 4510: -39,26 - 4511: -39,23 - 4512: -39,21 - 4513: -39,27 - 4514: -38,26 - 4515: -38,21 - 4516: -38,19 - 4517: -39,21 - 4518: -39,29 - 4519: -39,27 - 4520: -39,21 - 4521: -39,24 - 4522: -40,27 - 4523: -39,25 - 4524: -39,24 - 4525: -39,26 - 4526: -37,26 - 4527: -37,23 - 4528: -38,20 - 4529: -39,19 - 4530: -39,18 - 4531: -40,18 - 4532: -38,21 - 4533: -38,26 - 4534: -40,26 - 4535: -42,26 - 4536: -42,25 - 4537: -41,25 - 4538: -42,25 - 4539: -41,26 - 4540: -41,26 - 4570: -38,15 - 4571: -36,15 - 4572: -36,15 - 4573: -35,15 - 4574: -40,5 - 4575: -39,4 - 4576: -40,3 - 4577: -41,3 - 4578: -40,2 - 4579: -40,1 - 4580: -41,0 - 4581: -40,0 - 4582: -40,-1 - 4583: -42,-5 - 4584: -42,-7 - 4585: -41,-7 - 4586: -41,-1 - 4587: -41,-2 - 4588: -42,-2 - 4589: -43,-3 - 4590: -36,2 - 4591: -36,2 - 4592: -36,1 - 4593: -37,2 - 4594: -36,1 - 4595: -40,9 - 4596: -41,9 - 4597: -39,10 - 4598: -39,10 - 4599: -37,10 - 4600: -38,10 - 4601: -37,10 - 4602: -35,10 - 4603: -35,10 - 4604: -36,11 - 4605: -37,10 - 4649: -4,13 - 4650: 2,13 - 4651: 1,13 - 4652: 1,13 - 4653: -3,13 - 4654: -3,13 - 4655: -4,13 - 4656: -5,13 - 4657: -5,13 - 4658: -2,13 - 4659: -2,13 - 4660: 3,13 - 4661: 3,13 - 4662: 0,13 - 4663: 0,13 - 4675: -5,16 - 4676: -4,16 - 4677: -6,16 - 4678: -3,18 - 4679: -3,19 - 4680: 1,18 - 4681: 1,17 - 4682: 1,17 - 4683: 3,16 - 4684: 4,16 - 4685: 2,16 - 4715: 15,47 - 4716: 15,46 - 4717: 14,46 - 4718: 15,47 - 4755: 5,74 - 4756: 5,75 - 4757: 5,76 - 4758: 4,77 - 4759: 4,80 - 4760: 5,81 - 4761: 1,81 - 4762: -2,81 - 4763: 1,82 - 4764: 0,82 - 4765: 1,82 - 4766: 0,83 - 4767: 1,83 - 4768: 1,82 - 4769: 0,83 - 4770: 0,82 - 4771: -1,81 - 4772: -4,81 - 4773: -7,81 - 4774: -5,81 - 4775: 2,79 - 4776: 0,79 - 4777: 0,79 - 4778: -4,76 - 4779: -5,76 - 4780: -6,74 - 4781: -7,74 - 4782: -8,73 - 4783: -9,72 - 4784: -9,73 - 4785: -8,72 - 4786: -8,74 - 4787: -9,70 - 4788: -9,69 - 4789: -8,70 - 4790: 9,66 - 4791: 10,69 - 4792: 12,69 - 4793: 13,58 - 4794: 13,60 - 4795: 12,56 - 4796: 13,56 - 4797: 8,56 - 4798: 8,56 - 4799: 8,56 - 4800: 14,60 - 4801: 14,60 - 4802: 14,61 - 4803: 14,60 - 4804: 22,58 - 4805: 23,57 - 4806: 27,56 - 4807: 28,56 - 4808: 28,55 - 4809: 28,54 - 4810: 34,55 - 4811: 34,54 - 4812: 33,54 - 4813: 30,55 - 4814: 30,56 - 4815: 30,54 - 4816: 31,54 - 4817: 32,54 - 4825: 46,36 - 4826: 46,34 - 4877: 32,16 - 4878: 32,15 - 4879: 32,13 - 4880: 32,11 - 4881: 32,13 - 4910: 34,1 - 4911: 36,1 - 4912: 37,1 - 4913: 37,1 - 4914: 36,1 - 4915: 35,1 - 4916: 35,3 - 4917: 37,3 - 4918: 19,-4 - 4919: 18,-5 - 4920: 17,-6 - 4921: 17,-5 - 4922: 17,-4 - 4923: 18,-6 - 4924: 21,-6 - 4925: 19,-4 - 4926: 22,-4 - 4927: 21,-5 - 4928: 20,-6 - 4929: 22,-6 - 4930: 21,-4 - 4931: 21,-4 - 4932: 19,-5 - 4933: 20,-4 - 4934: 20,-4 - 4935: 20,-5 - 4936: 17,-4 - 4951: -9,-6 - 4952: -9,-5 - 4953: -9,-3 - 4954: -11,-2 - 4955: -10,-2 - 4956: -9,-3 - 4957: -9,-5 - 4958: -16,1 - 4959: -14,0 - 4960: -14,0 - 4961: -14,0 - 4962: -14,-1 - 4963: -13,0 - 4964: -13,1 - 4971: -10,-9 - 4972: -9,-10 - 4973: -6,-10 - 4974: -4,-11 - 4975: -2,-11 - 4976: -6,-14 - 4977: -6,-13 - 4978: 4,-14 - 4979: 4,-13 - 4980: 3,-11 - 4981: 3,-9 - 4982: 1,-9 - 4983: 5,-9 - 4984: 7,-9 - 4985: 8,-10 - 4986: 3,-5 - 4987: 4,-5 - 4988: 3,-5 - 5038: 12,9 - 5039: 13,9 - 5040: 14,9 - 5041: 14,8 - 5042: 14,7 - 5043: 15,9 - 5044: 15,10 - 5045: 15,10 - 5046: 13,10 - 5047: 9,10 - 5048: 6,10 - 5049: 6,8 - 5050: 7,6 - 5051: 7,9 - 5052: 8,8 - 5053: 7,7 - 5054: 8,7 - 5055: 8,9 - 5056: 8,6 - 5057: 8,7 - 5058: 8,9 - 5059: 7,10 - 5060: 6,11 - 5061: 8,11 - 5062: 10,10 - 5063: 10,6 - 5066: 14,38 - 5067: 15,38 - 5068: 14,38 - 5069: 15,38 - 5070: 14,38 - - node: - cleanable: True - color: '#83543273' - id: DirtHeavy - decals: - 3605: 29,6 - 3610: 46,-10 - 3611: 48,-10 - 3726: -13,-41 - 3727: -11,-41 - 3728: -11,-40 - 3729: -10,-37 - 3730: -9,-34 - 3731: -7,-37 - 3732: -8,-40 - 3733: -6,-39 - 3734: -7,-34 - 3735: -7,-28 - 3736: -7,-24 - 3737: -7,-26 - 3738: -7,-30 - 3739: -9,-35 - 3740: -10,-38 - 3741: -10,-40 - 3794: 12,-37 - 3795: 12,-35 - 3796: 12,-34 - 3797: 12,-32 - 3798: 12,-30 - 3799: 12,-28 - 3800: 12,-26 - 3801: 12,-23 - 3802: 12,-21 - 3803: 12,-20 - 3860: 6,-19 - 3863: 5,-19 - 3866: 5,-20 - 3883: 11,-22 - 3884: 11,-24 - 3885: 11,-27 - 3886: 11,-29 - 3887: 11,-32 - 3888: 11,-34 - 3889: 11,-36 - 3910: 7,-35 - 3911: 5,-35 - 3912: 9,-34 - 3913: 10,-34 - 3914: 8,-35 - 3927: 4,-39 - 3928: 6,-38 - 3929: 7,-38 - 3930: 7,-37 - 3931: 8,-38 - 3932: 9,-39 - 3933: 18,-38 - 3934: 18,-37 - 3935: 17,-37 - 3936: 17,-35 - 3937: 17,-34 - 3938: 17,-34 - 3972: 18,-36 - 3973: 18,-36 - 3974: 16,-41 - 4082: 10,1 - 4083: 10,1 - 4084: 12,2 - 4136: 11,-4 - 4137: 6,-1 - 4138: 8,-1 - 4183: 8,-8 - 4226: 3,4 - 4227: 2,4 - 4278: -3,-6 - 4279: -5,-6 - 4280: -3,-4 - 4281: -4,-2 - 4282: -3,1 - 4283: -4,4 - 4284: -4,6 - 4285: -3,8 - 4286: -5,9 - 4287: -3,10 - 4300: 3,14 - 4301: -1,17 - 4302: 0,20 - 4303: -1,25 - 4304: -1,30 - 4305: -1,33 - 4306: -1,36 - 4307: -2,38 - 4308: -1,49 - 4309: -1,50 - 4310: -2,50 - 4338: -7,48 - 4339: -8,48 - 4340: -9,46 - 4341: -10,45 - 4342: -11,45 - 4343: -13,45 - 4344: -16,45 - 4345: -17,45 - 4346: -9,46 - 4347: -7,46 - 4348: -5,45 - 4349: -7,46 - 4350: -8,48 - 4351: -9,49 - 4352: -11,53 - 4353: -14,55 - 4354: -17,53 - 4355: -13,53 - 4356: -12,54 - 4357: -14,53 - 4358: -16,53 - 4359: -18,52 - 4360: -19,51 - 4361: -19,50 - 4362: -19,48 - 4363: -20,48 - 4364: -20,47 - 4365: -20,47 - 4366: -18,46 - 4367: -16,45 - 4460: -27,33 - 4461: -30,33 - 4462: -29,33 - 4470: -29,33 - 4471: -27,30 - 4606: -41,10 - 4607: -40,10 - 4608: -40,9 - 4609: -40,8 - 4610: -39,5 - 4611: -39,4 - 4612: -39,5 - 4613: -40,2 - 4614: -40,1 - 4615: -41,2 - 4616: -41,4 - 4617: -41,4 - 4640: -38,6 - 4641: -39,4 - 4642: -38,3 - 4643: -39,3 - 4644: -38,2 - 4645: -38,1 - 4646: -36,2 - 4647: -36,4 - 4648: -36,3 - 4664: -5,13 - 4665: -3,13 - 4666: -2,13 - 4667: 1,13 - 4668: 2,13 - 4719: 15,47 - 4720: 15,47 - 4721: 15,46 - 4722: 14,46 - 4723: 15,45 - 4724: 15,44 - 4725: 2,56 - 4726: 2,54 - 4727: 3,53 - 4728: 4,53 - 4729: 2,53 - 4730: 4,54 - 4731: 4,56 - 4732: 4,56 - 4733: 5,55 - 4734: -2,54 - 4735: -2,54 - 4736: -2,70 - 4737: -2,70 - 4738: -2,68 - 4739: -2,68 - 4740: 0,68 - 4741: -2,67 - 4742: -3,67 - 4743: -3,67 - 4818: 32,54 - 4819: 33,54 - 4827: 46,36 - 4828: 45,36 - 4829: 46,36 - 4830: 49,36 - 4831: 48,36 - 4832: 48,35 - 4833: 48,34 - 4834: 48,35 - 4835: 48,36 - 4864: 27,25 - 4865: 29,25 - 4866: 30,26 - 4867: 30,23 - 4868: 30,24 - 4869: 30,25 - 4870: 30,24 - 4871: 32,19 - 4872: 32,16 - 4873: 32,15 - 4874: 33,15 - 4875: 32,15 - 4876: 32,16 - 4882: 39,14 - 4883: 41,15 - 4884: 42,15 - 4885: 45,14 - 4886: 46,15 - 4887: 48,15 - 4888: 47,15 - 4889: 49,15 - 4890: 49,13 - 4891: 45,15 - 4937: 17,-4 - 4938: 16,-5 - 4939: 16,-6 - 4940: 18,-5 - 4941: 18,-4 - 4942: 19,-6 - 4943: 20,-6 - 4944: 20,-4 - 4945: 20,-5 - 4946: 20,-5 - 4947: 21,-6 - 4948: 21,-4 - 4949: 22,-3 - 4950: 20,-3 - 4965: -12,-10 - 4966: -13,-10 - 4967: -12,-9 - 4968: -13,-10 - 4969: -12,-10 - 4970: -11,-10 - 4989: 3,-5 - 4990: 2,-6 - 5071: 14,38 - - node: - cleanable: True - color: '#83543273' - id: DirtMedium - decals: - 3607: 28,-14 - 3613: 48,-10 - 3614: 37,-9 - 3617: 11,-9 - 3618: 9,-9 - 3742: -10,-42 - 3743: -10,-37 - 3744: -10,-34 - 3745: -8,-33 - 3746: -14,-36 - 3747: -13,-33 - 3748: -12,-37 - 3749: -13,-36 - 3750: -12,-34 - 3751: -13,-34 - 3752: -13,-36 - 3753: -13,-37 - 3817: 11,-19 - 3818: 11,-18 - 3819: 12,-18 - 3820: 12,-20 - 3821: 12,-22 - 3822: 12,-25 - 3823: 12,-28 - 3824: 12,-30 - 3825: 12,-32 - 3826: 12,-34 - 3827: 12,-36 - 3874: 7,-21 - 3875: 7,-21 - 3890: 11,-37 - 3891: 11,-35 - 3892: 11,-32 - 3893: 11,-29 - 3894: 11,-26 - 3895: 11,-24 - 3896: 7,-31 - 3897: 6,-31 - 3898: 5,-35 - 3899: 6,-34 - 3900: 7,-34 - 3901: 6,-35 - 3902: 7,-35 - 3903: 6,-35 - 3904: 8,-34 - 3905: 10,-34 - 3906: 10,-35 - 3939: 17,-37 - 3940: 17,-36 - 3941: 17,-35 - 3942: 17,-35 - 3943: 17,-37 - 3944: 18,-37 - 3945: 18,-35 - 3946: 18,-34 - 3947: 18,-36 - 3948: 18,-37 - 3969: 17,-36 - 3970: 17,-36 - 3971: 18,-35 - 3977: 15,-40 - 3978: 15,-40 - 4085: 11,3 - 4086: 10,2 - 4087: 11,1 - 4088: 11,1 - 4089: 12,2 - 4090: 12,2 - 4091: 12,2 - 4092: 10,1 - 4093: 10,1 - 4130: 5,-1 - 4131: 8,2 - 4132: 8,-1 - 4133: 9,-5 - 4134: 6,-5 - 4135: 11,-5 - 4223: -3,5 - 4224: -4,6 - 4225: -2,5 - 4313: -7,50 - 4314: -7,47 - 4315: -8,50 - 4316: -9,47 - 4317: -9,46 - 4318: -14,45 - 4319: -16,45 - 4320: -19,47 - 4321: -19,49 - 4322: -17,53 - 4323: -15,54 - 4324: -13,54 - 4325: -11,55 - 4326: -10,57 - 4327: -10,58 - 4328: -9,55 - 4329: -9,55 - 4330: -9,55 - 4331: -10,56 - 4332: -12,59 - 4333: -12,59 - 4334: -7,48 - 4335: -7,48 - 4336: -7,50 - 4337: -7,50 - 4370: -44,43 - 4371: -44,43 - 4474: -27,33 - 4475: -27,30 - 4476: -33,25 - 4477: -33,24 - 4478: -33,22 - 4479: -33,20 - 4480: -33,17 - 4481: -36,13 - 4482: -43,13 - 4483: -48,14 - 4484: -50,14 - 4485: -46,14 - 4486: -45,14 - 4487: -45,14 - 4488: -46,15 - 4489: -48,15 - 4490: -49,13 - 4491: -42,14 - 4492: -39,15 - 4493: -38,15 - 4494: -36,15 - 4495: -39,17 - 4496: -38,17 - 4497: -38,18 - 4498: -39,16 - 4499: -38,18 - 4500: -39,19 - 4501: -38,17 - 4541: -41,26 - 4542: -42,25 - 4543: -42,25 - 4544: -41,25 - 4545: -38,28 - 4546: -38,29 - 4547: -38,28 - 4548: -40,29 - 4549: -40,29 - 4550: -39,27 - 4551: -39,25 - 4552: -38,23 - 4553: -39,21 - 4554: -39,20 - 4555: -39,19 - 4556: -41,18 - 4557: -40,17 - 4558: -40,18 - 4559: -39,17 - 4560: -38,18 - 4561: -38,15 - 4562: -39,15 - 4563: -38,14 - 4564: -37,15 - 4565: -36,14 - 4566: -36,15 - 4567: -36,16 - 4568: -36,16 - 4569: -36,16 - 4626: -36,2 - 4627: -36,3 - 4628: -35,4 - 4629: -38,6 - 4630: -38,7 - 4691: 3,17 - 4692: 4,17 - 4693: 3,18 - 4694: 3,18 - 4695: 3,17 - 4696: 4,27 - 4697: 2,27 - 4698: 2,31 - 4699: 7,30 - 4700: 6,30 - 4744: -3,67 - 4745: -3,67 - 4746: -2,68 - 4747: 0,68 - 4748: 0,70 - 4749: 0,74 - 4750: 2,76 - 4751: 3,76 - 4752: 5,76 - 4753: 5,75 - 4754: 5,74 - 4820: 32,54 - 4821: 31,54 - 4822: 40,47 - 4823: 44,43 - 4824: 42,43 - 4836: 47,36 - 4837: 47,37 - 4838: 47,36 - 4839: 47,37 - 4840: 47,37 - 4841: 45,37 - 4842: 45,35 - 4843: 43,36 - 4844: 42,37 - 4845: 41,37 - 4846: 41,40 - 4847: 41,40 - 4848: 39,37 - 4849: 39,36 - 4850: 36,38 - 4851: 34,38 - 4852: 32,38 - 4853: 29,37 - 4854: 30,36 - 4855: 30,38 - 4856: 31,38 - 4857: 31,38 - 4858: 31,38 - 4859: 28,26 - 4860: 27,25 - 4861: 27,25 - 4862: 29,29 - 4863: 30,27 - 4899: 46,15 - 4900: 48,15 - 4901: 46,16 - 4902: 46,17 - 4903: 46,16 - 4904: 34,5 - 4905: 34,5 - 4906: 35,5 - 4907: 34,3 - 4908: 34,3 - 4909: 34,1 - 4994: 2,-6 - 4995: 1,-5 - 4996: 0,-1 - 4997: 1,0 - 4998: 0,0 - 4999: -2,1 - 5000: -2,0 - 5001: 1,3 - 5002: 1,9 - 5003: -2,6 - 5004: -6,0 - 5005: -8,-2 - 5006: -10,-2 - 5007: -11,-1 - 5008: -7,-1 - 5009: -6,-1 - 5010: -4,-1 - 5011: -5,-1 - 5012: -5,0 - 5013: -8,3 - 5014: -9,3 - 5015: -9,3 - 5016: -7,3 - 5017: -4,6 - 5018: 7,4 - 5019: 6,5 - 5020: 6,7 - 5021: 10,10 - 5022: 10,8 - 5023: 10,5 - 5024: 8,5 - 5025: 9,5 - 5026: 13,9 - 5027: 14,8 - 5028: 14,8 - 5029: 14,9 - 5030: 13,10 - 5031: 14,9 - 5032: 15,10 - 5033: 15,9 - 5034: 13,10 - 5035: 15,10 - 5036: 14,10 - 5037: 13,9 - 5073: 14,38 - 5074: 15,38 - 5075: 15,38 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 16: 1,76 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 21: 1,77 - 462: 1,66 - 463: 3,66 - 464: 2,66 - 465: 4,66 - 466: 5,66 - 467: 6,66 - 468: 7,66 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - decals: - 28: 1,77 - 415: 1,76 - 684: -7,62 - 1920: 20,-10 - 2382: 29,7 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNe - decals: - 56: 5,82 - 916: 12,28 - 989: 7,34 - 1830: 4,19 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNw - decals: - 57: 3,82 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 58: 4,82 - 887: 11,28 - 888: 10,28 - 889: 9,28 - 890: 7,28 - 891: 8,28 - 892: 6,28 - 985: 4,34 - 986: 5,34 - 993: 6,34 - 1266: 18,34 - 1267: 20,34 - 1268: 19,34 - 1269: 21,34 - 1827: 1,19 - 1828: 2,19 - 1829: 3,19 - 1857: 14,29 - 1858: 15,29 - 1859: 16,29 - 5145: 15,-17 - 5152: 22,-17 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineE - decals: - 59: 5,81 - 881: 12,22 - 882: 12,23 - 883: 12,24 - 884: 12,25 - 885: 12,26 - 886: 12,27 - 990: 7,33 - 991: 7,32 - 992: 7,31 - 1274: 22,29 - 1275: 22,28 - 1276: 22,27 - 1277: 22,26 - 1831: 4,18 - 1832: 4,17 - 1833: 4,16 - - node: - color: '#A4610696' - id: BrickTileWhiteLineW - decals: - 62: 0,82 - 2122: -41,11 - 2123: -41,10 - 2124: -41,9 - 2125: -41,8 - 2126: -41,7 - 2127: -41,3 - 2128: -44,-1 - 2129: -44,-2 - 2130: -44,-3 - 2141: -36,6 - 2175: -40,30 - 2176: -40,29 - 2177: -40,28 - 2178: -40,23 - 2179: -40,22 - 2180: -40,21 - 2181: -40,20 - 2182: -40,19 - 2183: -40,18 - 2184: -40,17 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerNw - decals: - 63: 0,83 - 2142: -36,7 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerNe - decals: - 64: 1,83 - - node: - color: '#A4610696' - id: BrickTileWhiteLineE - decals: - 65: 1,82 - 2111: -35,1 - 2112: -35,2 - 2113: -39,-3 - 2114: -39,-2 - 2115: -39,-1 - 2116: -39,0 - 2117: -38,7 - 2118: -38,6 - 2119: -38,5 - 2120: -38,4 - 2121: -38,3 - 2169: -37,28 - 2170: -37,27 - 2171: -37,26 - 2172: -37,25 - 2173: -37,24 - 2174: -37,23 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 74: 0,79 - 577: -12,60 - 578: -12,59 - 579: -12,58 - 580: -12,57 - 581: -17,56 - 582: -17,55 - 583: -17,54 - 584: -20,53 - 585: -20,52 - 586: -20,51 - 587: -20,50 - 588: -20,49 - 589: -20,48 - 590: -20,47 - 591: -20,46 - 592: -20,45 - 681: -7,61 - 682: -7,60 - 683: -7,59 - 2195: -4,56 - 2196: -4,55 - 2197: -4,54 - 2198: -4,53 - 2219: -37,-6 - 2220: -37,-5 - 2221: -37,-4 - 2222: -37,-3 - 2223: -37,-2 - 2224: -37,-1 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 75: 1,80 - 595: -20,42 - 596: -19,42 - 597: -18,42 - 598: -17,42 - 599: -16,42 - 623: -5,49 - 632: -4,49 - 638: -23,48 - 639: -22,48 - 674: -15,50 - 675: -14,50 - 676: -13,50 - 677: -12,50 - 2193: -3,57 - 2235: 26,-12 - 2236: 27,-12 - 2237: 28,-12 - 2238: 29,-12 - 2239: 30,-12 - 2285: 41,44 - 2286: 42,44 - 2287: 43,44 - 2288: 44,44 - 5146: 16,-17 - 5153: 21,-17 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 76: 2,79 - 567: -9,51 - 568: -9,52 - 569: -9,53 - 570: -9,54 - 571: -9,55 - 572: -9,56 - 573: -9,57 - 574: -9,58 - 575: -9,59 - 576: -9,60 - 609: -7,50 - 610: -7,49 - 611: -7,48 - 612: -7,47 - 656: -6,57 - 657: -6,56 - 658: -6,55 - 659: -6,54 - 660: -6,53 - 661: -6,52 - 2213: -35,-6 - 2214: -35,-5 - 2215: -35,-4 - 2216: -35,-3 - 2217: -35,-2 - 2218: -35,-1 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNw - decals: - 77: 0,80 - 2194: -4,57 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNe - decals: - 78: 2,80 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 231: 0,65 - 232: 0,64 - 233: 0,63 - 234: 0,62 - 235: 0,61 - 236: 0,60 - 237: 0,59 - 238: 0,58 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 469: 4,70 - 470: 5,70 - 471: 6,70 - 749: 8,61 - 750: 9,61 - 751: 10,61 - 752: 11,61 - 753: 12,61 - 754: 13,61 - 816: 15,34 - 817: 16,34 - 1205: -25,21 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 472: 4,74 - 473: 5,74 - 474: 6,74 - 2293: 8,56 - 2294: 9,56 - 2295: 10,56 - 2296: 11,56 - 2297: 12,56 - 2298: 13,56 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 475: 3,71 - 476: 3,72 - 477: 3,73 - 759: 14,57 - 760: 14,58 - 761: 14,59 - 762: 14,60 - 1207: -24,20 - 1208: -24,19 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 478: 7,71 - 479: 7,72 - 480: 7,73 - 755: 7,60 - 756: 7,59 - 757: 7,58 - 758: 7,57 - 812: 14,31 - 813: 14,32 - 814: 14,33 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 481: 3,70 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 482: 7,70 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 483: 3,74 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - decals: - 484: 7,74 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 79: -7,15 - 80: -8,15 - 81: -9,15 - 82: -10,15 - 83: -11,15 - 84: -12,15 - 85: -13,15 - 86: -14,15 - 87: -15,15 - 88: -16,15 - 89: -17,15 - 90: -18,15 - 91: -19,15 - 92: -20,15 - 93: -21,15 - 94: -22,15 - 95: -23,15 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 96: -2,20 - 97: -2,21 - 98: -2,22 - 99: -2,23 - 100: -2,24 - 101: -2,25 - 102: -2,26 - 103: -2,27 - 104: -2,28 - 105: -2,29 - 106: -2,30 - 107: -2,31 - 108: -2,32 - 109: -2,33 - 110: -2,34 - 111: -2,35 - 112: -2,36 - 113: -3,36 - 114: -4,36 - 115: -5,36 - 116: -6,36 - 117: -7,36 - 118: -8,36 - 119: -9,36 - 120: -10,36 - 121: -11,36 - 122: -12,36 - 123: -13,36 - 124: -14,36 - 125: -15,36 - 126: -16,36 - 127: -17,36 - 128: -18,36 - 129: -19,36 - 130: -20,36 - 131: -21,36 - 132: -22,36 - 133: -23,36 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 736: 32,41 - 737: 32,40 - 778: 19,41 - 1040: -22,33 - 1045: -19,31 - 1136: -22,24 - 1137: -22,23 - 1138: -22,22 - 1139: -22,21 - 1140: -22,20 - 1141: -22,19 - 1142: -22,18 - 1143: -22,17 - 1151: -20,22 - 1339: -13,-14 - 1361: 8,-14 - 1403: 6,-13 - 1404: 6,-14 - 1405: 6,-15 - 1406: 6,-16 - 1733: 9,-21 - 1734: 9,-22 - 1735: 9,-23 - 1736: 9,-24 - 1737: 9,-25 - 1738: 9,-26 - 1739: 9,-27 - 1740: 4,-33 - 1741: 4,-34 - 1742: 4,-35 - 1743: 11,-36 - 1744: 11,-37 - 1745: 11,-38 - 1835: -6,18 - 1836: -6,17 - 1837: -6,16 - 1864: -48,40 - 2091: -44,-1 - 2092: -44,-2 - 2093: -44,-3 - 2103: -41,7 - 2104: -41,8 - 2105: -41,9 - 2106: -41,10 - 2107: -41,11 - 2108: -41,3 - 2133: -36,6 - 2187: -4,53 - 2188: -4,54 - 2189: -4,55 - 2190: -4,56 - 2275: -28,31 - 2276: -28,32 - 2400: 26,17 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSw - decals: - 773: 19,40 - 1041: -22,32 - 1046: -19,30 - 1335: -13,-15 - 1356: 8,-15 - 2132: -36,4 - 2186: -4,52 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - decals: - 779: 20,40 - 1042: -21,32 - 1043: -20,32 - 1047: -18,30 - 1048: -17,30 - 1049: -16,30 - 1050: -15,30 - 1051: -14,30 - 1340: -12,-15 - 1341: -11,-15 - 1364: 9,-15 - 1365: 10,-15 - 1366: -14,-16 - 1370: -14,-13 - 1371: -14,-12 - 1419: -14,-15 - 2136: -35,4 - 2137: -34,4 - 2185: -3,52 - 2404: 21,20 - 2418: 22,20 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 1052: -14,30 - 1053: -15,30 - 1054: -16,30 - 1055: -17,30 - 1056: -18,30 - 1060: -20,32 - 1061: -21,32 - 1212: -10,17 - 1213: -9,17 - 1214: -8,17 - 1238: -8,21 - 1239: -7,21 - 1240: -6,21 - 1241: -5,21 - 5160: 16,-17 - 5165: 21,-17 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSw - decals: - 1057: -19,30 - 1062: -22,32 - - node: - color: '#D381C9FF' - id: HalfTileOverlayGreyscale270 - decals: - 1077: -12,27 - 1078: -12,28 - 1079: -12,29 - 1080: -12,30 - 1081: -12,31 - 1082: -12,32 - 1083: -12,33 - 1084: -12,34 - - node: - color: '#D381C9FF' - id: HalfTileOverlayGreyscale90 - decals: - 1085: -10,27 - 1086: -10,28 - 1087: -10,29 - 1088: -10,30 - 1089: -10,31 - 1090: -10,32 - 1091: -10,33 - 1092: -10,34 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 1112: -7,27 - 1295: -12,-27 - 1296: -12,-28 - 1297: -12,-29 - 1298: -12,-30 - 1801: 8,-25 - 1802: 8,-21 - 1803: 11,-20 - 1804: 12,-20 - 1805: 11,-17 - 1806: 12,-17 - 1807: 10,-11 - 1808: 11,-11 - 1809: -12,-11 - 1810: -13,-11 - 1811: -13,-17 - 1812: -10,-19 - 1813: -13,-21 - 1814: 12,-39 - 1815: 6,-36 - 1816: 7,-36 - 1817: 6,-32 - 1818: 7,-32 - 1819: -20,-19 - 2021: -9,-17 - 2043: -42,9 - 2044: -38,10 - 2045: -36,3 - 2046: -42,-4 - 2047: -41,-4 - 2398: -20,-13 - 2399: -21,-13 - 5076: -40,12 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 734: 29,40 - 735: 29,41 - 776: 21,41 - 1117: -12,17 - 1118: -12,18 - 1119: -12,19 - 1120: -12,20 - 1121: -10,21 - 1122: -10,22 - 1123: -10,23 - 1148: -14,22 - 1338: -10,-14 - 1360: 11,-14 - 1372: -8,-16 - 1373: -8,-15 - 1374: -8,-14 - 1375: -8,-13 - 1715: 13,-21 - 1716: 13,-22 - 1717: 13,-23 - 1718: 13,-25 - 1719: 13,-26 - 1721: 13,-27 - 1722: 13,-28 - 1723: 13,-29 - 1724: 13,-30 - 1725: 13,-31 - 1726: 13,-32 - 1727: 13,-33 - 1728: 13,-34 - 1729: 13,-35 - 1730: 13,-36 - 1731: 13,-37 - 1732: 13,-38 - 1820: 4,16 - 1821: 4,17 - 1822: 4,18 - 1865: -45,40 - 2094: -39,-3 - 2095: -39,-2 - 2096: -39,-1 - 2097: -39,0 - 2098: -38,3 - 2099: -38,4 - 2100: -38,5 - 2101: -38,6 - 2102: -38,7 - 2109: -35,1 - 2110: -35,2 - 2273: -28,32 - 2274: -28,31 - 2402: 23,21 - 2403: 23,22 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 777: 20,42 - 1034: -21,34 - 1035: -20,34 - 1036: -19,34 - 1037: -18,34 - 1038: -17,34 - 1124: -11,25 - 1125: -12,25 - 1126: -13,25 - 1127: -14,25 - 1128: -15,25 - 1129: -16,25 - 1130: -17,25 - 1131: -18,25 - 1132: -19,25 - 1133: -20,25 - 1134: -21,25 - 1342: -12,-13 - 1343: -11,-13 - 1362: 9,-13 - 1363: 10,-13 - 1367: -14,-16 - 1368: -14,-12 - 1369: -14,-13 - 1377: -9,-12 - 1378: -10,-12 - 1379: -11,-12 - 1380: -12,-12 - 1381: -13,-12 - 1382: -15,-12 - 1395: 13,-12 - 1396: 12,-12 - 1397: 11,-12 - 1398: 10,-12 - 1399: 9,-12 - 1400: 8,-12 - 1401: 7,-12 - 1420: -14,-15 - 1824: 3,19 - 1825: 2,19 - 1826: 1,19 - 1838: -5,19 - 1839: -4,19 - 1840: -3,19 - 1860: -47,41 - 1861: -46,41 - 2134: -35,7 - 2135: -34,7 - 2192: -3,57 - 2406: 27,18 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNw - decals: - 775: 19,42 - 1039: -22,34 - 1135: -22,25 - 1150: -20,23 - 1337: -13,-13 - 1359: 8,-13 - 1402: 6,-12 - 1834: -6,19 - 1863: -48,41 - 2131: -36,7 - 2191: -4,57 - 2407: 26,18 - - node: - color: '#D381C996' - id: MiniTileCheckerAOverlay - decals: - 1144: -14,23 - 1145: -14,22 - - node: - color: '#D381C996' - id: MiniTileCheckerBOverlay - decals: - 1146: -20,23 - 1147: -20,22 - 1218: -7,22 - 1219: -6,22 - 1220: -5,22 - 1221: -5,23 - 1222: -6,23 - 1223: -7,23 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNe - decals: - 774: 21,42 - 1149: -14,23 - 1336: -10,-13 - 1358: 11,-13 - 1376: -8,-12 - 1823: 4,19 - 1862: -45,41 - - node: - color: '#D381C996' - id: BrickTileWhiteLineN - decals: - 1065: -21,34 - 1066: -20,34 - 1067: -19,34 - 1068: -18,34 - 1069: -17,34 - 1159: -11,25 - 1160: -12,25 - 1161: -13,25 - 1162: -14,25 - 1163: -15,25 - 1164: -16,25 - 1165: -17,25 - 1166: -18,25 - 1167: -19,25 - 1168: -20,25 - 1169: -21,25 - 1200: -17,22 - 1842: -5,19 - 1843: -4,19 - 1844: -3,19 - - node: - color: '#FFFFFFFF' - id: BotRight - decals: - 1201: -15,20 - 1202: -15,19 - 1203: -15,18 - 1204: -15,17 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - decals: - 748: 14,61 - 1206: -24,21 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 495: -7,63 - 496: -8,63 - 1215: -10,18 - 1216: -9,18 - 1217: -8,18 - 1703: 6,-39 - 2377: -23,-16 - 5181: -15,35 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 846: 15,17 - 847: 14,17 - 848: 13,17 - 849: 12,17 - 850: 11,17 - 851: 10,17 - 852: 9,17 - 853: 7,17 - 854: 8,17 - 863: 9,26 - 866: 7,27 - 867: 6,27 - 917: 3,21 - 918: 4,21 - 961: 5,30 - 962: 6,30 - 1012: 5,31 - 1224: -6,21 - 1225: -5,21 - 1234: -6,22 - 1236: -7,21 - 1237: -8,21 - 1691: 7,-4 - 1692: 8,-4 - 1693: 9,-4 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSe - decals: - 842: 16,17 - 954: 4,22 - 955: 5,23 - 963: 7,30 - 1009: 6,31 - 1226: -4,21 - 1227: -5,22 - 1681: 10,-4 - 2390: -17,-41 - 2395: 16,-41 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineE - decals: - 843: 16,18 - 844: 16,19 - 845: 16,20 - 875: 12,27 - 876: 12,26 - 877: 12,25 - 878: 12,24 - 879: 12,23 - 880: 12,22 - 910: 11,24 - 911: 11,25 - 912: 11,26 - 919: 8,22 - 920: 8,23 - 921: 8,24 - 964: 7,31 - 965: 7,32 - 966: 7,33 - 1010: 6,32 - 1228: -4,22 - 1229: -4,23 - 1230: -4,24 - 1685: 10,-3 - 1689: 7,-1 - 1690: 7,0 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - decals: - 874: 12,28 - 956: 5,24 - 988: 7,34 - 1007: 6,33 - 1231: -5,23 - 1683: 7,1 - 1686: 10,-2 - 2391: -17,-40 - 2396: 16,-40 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - decals: - 926: 2,25 - 957: 3,24 - 1008: 4,33 - 1232: -7,23 - 1682: 6,1 - 2393: -18,-40 - 2394: 15,-40 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSw - decals: - 841: 6,17 - 864: 8,26 - 930: 2,21 - 953: 3,22 - 1005: 4,31 - 1233: -7,22 - 1684: 6,-4 - 2392: -18,-41 - 2397: 15,-41 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - decals: - 868: 6,28 - 869: 7,28 - 870: 8,28 - 871: 9,28 - 872: 10,28 - 873: 11,28 - 922: 6,25 - 923: 5,25 - 924: 4,25 - 925: 3,25 - 958: 4,24 - 967: 5,34 - 968: 4,34 - 987: 6,34 - 1011: 5,33 - 1235: -6,23 - 1687: 9,-2 - 1688: 8,-2 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSe - decals: - 1242: -4,21 - - node: - color: '#DE3A3AFF' - id: WarnBox - decals: - 1246: -10,25 - 1421: -15,-15 - 1422: -15,-16 - - node: - color: '#52B4E9FF' - id: WarnBoxGreyscale - decals: - 1247: -10,24 - - node: - color: '#79150096' - id: CheckerNESW - decals: - 1458: -3,11 - 1459: -3,10 - 1460: -3,9 - 1461: -3,8 - 1462: -3,7 - 1463: 1,11 - 1464: 1,10 - 1465: 1,8 - 1466: 1,9 - 1467: 1,7 - 1468: 0,8 - 1469: -1,8 - 1470: -2,8 - 1471: -2,9 - 1472: -1,9 - 1473: 0,9 - 1474: -3,6 - 1475: -3,5 - 1476: -3,4 - 1477: -3,3 - 1478: -2,4 - 1479: -1,4 - 1480: 0,4 - 1481: -2,3 - 1482: -1,3 - 1483: 0,3 - 1484: 1,3 - 1485: 1,4 - 1486: 1,5 - 1487: 1,6 - 1488: -3,2 - 1489: -3,1 - 1490: -3,0 - 1491: -3,-1 - 1492: -3,-2 - 1493: -2,-1 - 1494: -2,-2 - 1495: -1,-2 - 1496: -1,-1 - 1497: 0,-1 - 1498: 0,-2 - 1499: 1,-2 - 1500: 1,-1 - 1501: 1,0 - 1502: 1,1 - 1503: 1,2 - 1504: 1,-3 - 1505: 1,-4 - 1506: 1,-5 - 1507: 1,-6 - 1508: -3,-6 - 1509: -3,-5 - 1510: -3,-4 - 1511: -3,-3 - 1512: -4,-2 - 1513: -5,-2 - 1514: -6,-2 - 1515: -7,-2 - 1516: -7,-1 - 1517: -6,-1 - 1518: -5,-1 - 1519: -4,-1 - 1520: -14,-1 - 1521: -14,-2 - 1522: -13,-2 - 1523: -12,-1 - 1524: -12,-2 - 1525: -13,-1 - 1526: -11,-1 - 1527: -11,-2 - 1528: -10,-2 - 1529: -10,-1 - 1530: -9,-1 - 1531: -9,-2 - 1532: -8,-2 - 1533: -8,-1 - 1534: -14,3 - 1535: -13,3 - 1536: -12,3 - 1537: -11,3 - 1538: -10,3 - 1539: -9,3 - 1540: -8,3 - 1541: -6,3 - 1542: -7,3 - 1543: -5,3 - 1544: -4,3 - 1545: -14,4 - 1546: -13,4 - 1547: -12,4 - 1548: -11,4 - 1549: -4,4 - - node: - color: '#FFD381FF' - id: WoodTrimThinCornerSe - decals: - 1550: -5,4 - - node: - color: '#FFD381FF' - id: WoodTrimThinLineE - decals: - 1551: -5,5 - 1552: -5,6 - 1553: -5,7 - - node: - color: '#FFD381FF' - id: WoodTrimThinCornerNe - decals: - 1554: -5,8 - - node: - color: '#FFD381FF' - id: WoodTrimThinLineS - decals: - 1555: -6,4 - 1556: -7,4 - 1557: -8,4 - 1558: -9,4 - 1562: -11,6 - - node: - color: '#FFD381FF' - id: WoodTrimThinCornerSw - decals: - 1559: -10,4 - 1563: -12,6 - - node: - color: '#FFD381FF' - id: WoodTrimThinLineW - decals: - 1560: -10,5 - 1564: -12,7 - - node: - color: '#FFD381FF' - id: WoodTrimThinInnerSw - decals: - 1561: -10,6 - - node: - color: '#FFD381FF' - id: WoodTrimThinCornerNw - decals: - 1565: -12,8 - - node: - color: '#FFD381FF' - id: WoodTrimThinLineN - decals: - 1566: -11,8 - 1567: -10,8 - 1568: -9,8 - 1569: -8,8 - 1570: -7,8 - 1571: -6,8 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale180 - decals: - 1626: -6,13 - 1627: -7,13 - 1628: -8,13 - 1629: -9,13 - 1630: -10,13 - 1631: -11,13 - 1632: -12,13 - 1633: -13,13 - 1634: -14,13 - 1635: -15,13 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndS - decals: - 2272: -28,30 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign1 - decals: - 2331: -4,14 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign2 - decals: - 2332: -3,14 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign3 - decals: - 2333: -2,14 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign4 - decals: - 2334: -1,14 - - node: - color: '#83543273' - id: Dirt - decals: - 2488: 6,-9 - 2489: 4,-9 - 2490: 2,-9 - 2491: 0,-9 - 2492: -2,-9 - 2493: -4,-9 - 2494: -6,-9 - 2495: -7,-9 - 2496: -9,-9 - 2497: -11,-9 - 2498: -13,-9 - 2499: -15,-9 - 2500: -17,-9 - 2501: -18,-9 - 2502: -19,-9 - 2503: -21,-9 - 2504: -23,-9 - 2505: -25,-9 - 2506: -27,-9 - 2507: -30,-9 - 2508: -32,-9 - 2509: -32,-7 - 2510: -32,-4 - 2511: -32,-1 - 2512: -32,0 - 2513: -32,4 - 2514: -32,8 - 2515: -32,12 - 2516: -32,14 - 2517: -34,14 - 2518: -36,14 - 2519: -38,14 - 2520: -39,14 - 2521: -42,14 - 2522: -44,14 - 2523: -46,14 - 2524: -48,14 - 2525: -50,14 - 2526: -48,14 - 2527: -46,14 - 2528: -44,14 - 2529: -42,14 - 2530: -40,14 - 2531: -38,14 - 2532: -36,14 - 2533: -29,14 - 2534: -27,14 - 2535: -25,14 - 2536: -23,14 - 2537: -21,14 - 2538: -19,14 - 2539: -17,14 - 2540: -15,14 - 2541: -13,14 - 2542: -11,14 - 2543: -9,14 - 2544: -7,14 - 2545: -5,14 - 2546: -3,14 - 2547: -1,14 - 2548: 1,14 - 2549: 3,14 - 2550: 5,14 - 2551: 7,14 - 2552: 9,14 - 2553: 11,14 - 2554: 13,14 - 2555: 15,14 - 2556: 17,14 - 2557: 19,14 - 2558: 21,14 - 2559: 23,14 - 2560: 25,14 - 2561: 27,14 - 2562: 29,14 - 2563: 31,14 - 2564: 33,14 - 2565: 35,14 - 2566: 37,14 - 2567: 39,14 - 2568: 41,14 - 2569: 43,14 - 2570: 45,14 - 2571: 47,14 - 2572: 49,14 - 2573: 30,14 - 2574: 30,15 - 2575: 30,17 - 2576: 30,19 - 2577: 30,22 - 2578: 30,24 - 2579: 30,26 - 2580: 30,28 - 2581: 30,30 - 2582: 30,32 - 2583: 30,34 - 2584: 31,28 - 2585: 31,24 - 2586: 31,20 - 2587: 32,19 - 2588: 31,10 - 2589: 31,6 - 2590: 30,5 - 2591: 28,3 - - node: - cleanable: True - color: '#83543273' - id: DirtLight - decals: - 3606: 29,6 - 3608: 46,-10 - 3609: 48,-10 - 3612: 46,-10 - 3615: 18,-9 - 3616: 22,-9 - 3804: 12,-36 - 3805: 12,-34 - 3806: 12,-32 - 3807: 12,-30 - 3808: 12,-28 - 3809: 12,-26 - 3810: 12,-24 - 3811: 12,-22 - 3812: 12,-20 - 3813: 12,-18 - 3814: 12,-18 - 3815: 11,-19 - 3816: 12,-19 - 3872: 6,-21 - 3873: 5,-19 - 3907: 9,-35 - 3908: 7,-35 - 3909: 8,-35 - 3975: 15,-40 - 3976: 16,-40 - 4126: 5,-5 - 4127: 7,-5 - 4128: 10,-5 - 4129: 11,-2 - 4184: 9,-8 - 4185: 10,-8 - 4186: 10,-9 - 4187: 10,-9 - 4188: 9,-9 - 4189: 9,-9 - 4190: 12,-9 - 4191: 11,-8 - 4192: 11,-9 - 4222: -1,6 - 4230: -8,6 - 4231: -11,7 - 4288: 1,11 - 4289: 2,10 - 4290: 1,8 - 4291: 1,6 - 4292: 2,4 - 4293: 0,2 - 4294: 2,0 - 4295: 1,-3 - 4296: 2,-5 - 4297: 1,-6 - 4298: 1,4 - 4299: 2,7 - 4311: -2,48 - 4312: -2,50 - 4368: -44,43 - 4369: -44,43 - 4463: -31,31 - 4464: -31,30 - 4465: -29,30 - 4466: -32,33 - 4467: -31,33 - 4468: -31,30 - 4469: -29,30 - 4472: -27,31 - 4473: -27,32 - 4618: -41,-1 - 4619: -42,-2 - 4620: -40,-1 - 4621: -40,2 - 4622: -37,2 - 4623: -36,2 - 4624: -36,4 - 4625: -35,4 - 4631: -39,10 - 4632: -36,10 - 4633: -35,10 - 4634: -37,10 - 4635: -38,10 - 4636: -36,11 - 4637: -41,10 - 4638: -41,9 - 4639: -42,9 - 4669: 1,13 - 4670: 3,13 - 4671: 5,14 - 4672: 5,14 - 4673: 3,15 - 4674: 2,15 - 4686: 3,16 - 4687: 3,16 - 4688: 4,17 - 4689: 4,18 - 4690: 3,18 - 4701: 6,28 - 4702: 7,28 - 4703: 7,29 - 4704: 6,29 - 4705: 6,30 - 4706: 3,31 - 4707: 3,33 - 4708: 2,33 - 4709: 2,27 - 4710: 2,29 - 4711: 5,29 - 4712: 4,28 - 4713: 4,28 - 4714: 4,30 - 4892: 46,15 - 4893: 46,17 - 4894: 46,17 - 4895: 48,17 - 4896: 49,17 - 4897: 49,17 - 4898: 48,17 - 4991: 3,-5 - 4992: 3,-5 - 4993: 2,-6 - 5072: 15,38 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 181: -2,38 - 182: -3,38 - 183: -2,39 - 184: -2,40 - 185: -2,41 - 186: -4,38 - 187: -5,38 - 188: -7,38 - 189: -6,38 - 190: -8,38 - 191: -9,38 - 192: -10,38 - 193: -11,38 - 194: -12,38 - 195: -13,38 - 196: -14,38 - 197: -15,38 - 198: -16,38 - 199: -17,38 - 200: -18,38 - 201: -19,38 - 202: -20,38 - 203: -21,38 - 204: -22,38 - 205: -23,38 - 206: -2,42 - 207: -2,43 - 208: -2,44 - 209: -2,46 - 210: -2,45 - 211: -2,47 - 212: -2,51 - 625: -2,48 - 626: -2,49 - 627: -2,50 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 497: -6,63 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 498: -9,63 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineS - decals: - 551: -19,44 - 552: -18,44 - 553: -17,44 - 554: -16,44 - 555: -15,44 - 556: -14,44 - 557: -13,44 - 558: -12,44 - 559: -11,44 - 560: -10,44 - 561: -9,44 - 562: -8,44 - 563: -7,44 - 564: -6,44 - 565: -5,44 - 566: -4,44 - 600: -20,40 - 601: -19,40 - 602: -18,40 - 603: -17,40 - 604: -16,40 - 624: -5,49 - 633: -4,49 - 640: -23,47 - 641: -22,47 - 646: -17,58 - 647: -16,58 - 648: -15,58 - 649: -14,58 - 670: -15,48 - 671: -14,48 - 672: -13,48 - 673: -12,48 - 688: -8,62 - 689: -9,62 - 690: -10,62 - 2200: -3,52 - 2240: 26,-14 - 2241: 27,-14 - 2242: 28,-14 - 2243: 29,-14 - 2244: 30,-14 - 2289: 41,42 - 2290: 42,42 - 2291: 43,42 - 2292: 44,42 - 5149: 16,-15 - 5154: 21,-15 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 593: -20,44 - 1587: 7,6 - 1799: 5,-26 - 1934: 18,-18 - 2008: 4,46 - 2316: 8,53 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSw - decals: - 594: -20,44 - 2199: -4,52 - - node: - color: '#DE3A3A96' - id: MiniTileCheckerBOverlay - decals: - 613: -14,49 - 614: -13,49 - 615: -16,59 - 616: -15,59 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndE - decals: - 617: -13,49 - 620: -15,59 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndW - decals: - 618: -14,49 - 619: -16,59 - - node: - color: '#DE3A3A96' - id: CautionGreyscale - decals: - 628: -4.9917116,48.825462 - 629: -3.992663,48.8136 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSw - decals: - 691: -7,62 - - node: - angle: 1.5707963267948966 rad - color: '#DE3A3A96' - id: CautionGreyscale - decals: - 693: -22.808884,47.519577 - 694: -21.814968,47.519577 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSw - decals: - 1044: -19,32 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSw - decals: - 1059: -19,32 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 1070: -15,32 - 1109: -8,32 - 1110: -7,32 - 1111: -6,32 - 1699: 6,-42 - 1700: 7,-42 - 2344: 18,-33 - 2351: 17,-33 - 2379: -23,-18 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 1073: -16,32 - 1706: 5,-42 - 2375: -24,-18 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 1074: -14,32 - 1707: 8,-42 - 2372: -22,-18 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndN - decals: - 2271: -28,33 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 1709: 8,-39 - 2374: -22,-16 - 5180: -14,35 - - node: - color: '#D381C9FF' - id: StandClearGreyscale - decals: - 5182: -16,35 - 5183: -15,35 - 5184: -14,35 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 1708: 5,-39 - 2373: -24,-16 - 5185: -16,35 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 134: 0,20 - 135: 0,21 - 136: 0,22 - 137: 0,23 - 138: 0,24 - 139: 0,25 - 140: 0,27 - 141: 0,26 - 142: 0,28 - 143: 0,29 - 144: 0,30 - 145: 0,31 - 146: 0,32 - 147: 0,33 - 148: 0,34 - 149: 0,35 - 150: 0,36 - 151: 1,36 - 152: 2,36 - 153: 3,36 - 154: 4,36 - 155: 5,36 - 156: 6,36 - 157: 7,36 - 158: 8,36 - 159: 9,36 - 160: 10,36 - 161: 11,36 - 162: 12,36 - 163: 13,36 - 164: 14,36 - 165: 15,36 - 166: 16,36 - 167: 17,36 - 840: 14,19 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 168: 5,15 - 169: 6,15 - 170: 7,15 - 171: 8,15 - 172: 9,15 - 173: 10,15 - 174: 11,15 - 175: 12,15 - 176: 13,15 - 177: 14,15 - 178: 15,15 - 179: 16,15 - 180: 17,15 - 839: 15,18 - - node: - color: '#18A2D50C' - id: FullTileOverlayGreyscale - decals: - 788: 24,31 - 789: 24,32 - 790: 24,33 - 791: 24,34 - 792: 24,31 - 793: 24,32 - 794: 24,33 - 795: 24,34 - - node: - color: '#18A2D50C' - id: MonoOverlay - decals: - 796: 27,31 - 797: 26,31 - 798: 25,31 - 799: 23,31 - 800: 23,32 - 801: 23,33 - 802: 23,34 - 803: 27,34 - 804: 27,34 - 805: 27,31 - 806: 26,31 - 807: 25,31 - 808: 23,31 - 809: 23,32 - 810: 23,33 - 811: 23,34 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 818: 6,18 - 819: 6,19 - 820: 6,20 - 1014: 9,30 - 1015: 9,31 - 1016: 9,32 - 1017: 9,33 - 1018: 9,34 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 821: 16,18 - 822: 16,19 - 823: 16,20 - 1019: 12,30 - 1020: 12,31 - 1021: 12,32 - 1022: 12,33 - 1023: 12,34 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 824: 7,17 - 825: 8,17 - 826: 10,17 - 827: 9,17 - 828: 11,17 - 829: 12,17 - 830: 13,17 - 831: 14,17 - 832: 15,17 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 833: 16,17 - 836: 7,19 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 834: 6,17 - 835: 15,19 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 837: 7,18 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 367: -2,-14 - 368: -4,-14 - 369: -6,-14 - 370: -6,-12 - 371: -6,-10 - 372: -8,-10 - 373: -10,-10 - 374: -12,-10 - 375: -14,-10 - 376: -16,-10 - 838: 8,19 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineW - decals: - 855: 6,18 - 856: 6,19 - 857: 6,20 - 858: 10,22 - 859: 10,23 - 860: 10,24 - 861: 10,25 - 913: 11,26 - 914: 11,25 - 915: 11,24 - 927: 2,24 - 928: 2,23 - 929: 2,22 - 959: 3,23 - 969: 2,34 - 970: 2,33 - 971: 2,32 - 972: 2,31 - 973: 2,30 - 974: 2,29 - 975: 2,28 - 976: 2,27 - 1013: 4,32 - 1694: 6,-3 - 1695: 6,-2 - 1696: 6,-1 - 1697: 6,0 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerSw - decals: - 862: 10,26 - 865: 8,27 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 893: 6,27 - 894: 7,27 - 895: 9,26 - 995: 6,30 - 996: 5,30 - 1854: 14,27 - 1855: 15,27 - 1856: 16,27 - 5150: 15,-15 - 5151: 22,-15 - - node: - color: '#52B4E996' - id: BrickTileWhiteInnerSw - decals: - 896: 8,27 - 897: 10,26 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSw - decals: - 898: 8,26 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineW - decals: - 899: 10,25 - 900: 10,24 - 901: 10,23 - 902: 10,22 - 977: 2,27 - 978: 2,28 - 979: 2,29 - 980: 2,30 - 981: 2,31 - 982: 2,32 - 983: 2,33 - 984: 2,34 - 1270: 18,29 - 1271: 18,28 - 1272: 18,27 - 1273: 18,26 - - node: - color: '#52B4E996' - id: DiagonalCheckerAOverlay - decals: - 903: 11,23 - 904: 11,24 - 905: 11,25 - 906: 11,26 - 907: 11,27 - 997: 4,31 - 998: 4,32 - 999: 4,33 - 1000: 6,33 - 1001: 6,32 - 1002: 6,31 - 1003: 5,31 - 1004: 5,32 - 1006: 5,33 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteEndN - decals: - 908: 11,27 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteEndS - decals: - 909: 11,23 - - node: - color: '#D56F18EF' - id: BrickTileWhiteCornerSw - decals: - 931: 2,21 - - node: - color: '#D56F18EF' - id: BrickTileWhiteLineW - decals: - 932: 2,22 - 933: 2,23 - 934: 2,24 - - node: - color: '#D56F18EF' - id: BrickTileWhiteCornerNw - decals: - 935: 2,25 - - node: - color: '#D56F18EF' - id: BrickTileWhiteLineN - decals: - 936: 3,25 - 937: 4,25 - 938: 5,25 - 939: 6,25 - - node: - color: '#D56F18EF' - id: BrickTileWhiteLineE - decals: - 940: 8,24 - 941: 8,23 - 942: 8,22 - - node: - color: '#D56F18EF' - id: BrickTileWhiteLineS - decals: - 943: 3,21 - 944: 4,21 - - node: - color: '#D56F18EF' - id: MiniTileCheckerBOverlay - decals: - 945: 3,22 - 946: 3,23 - 947: 3,24 - 948: 4,24 - 949: 5,24 - 950: 5,23 - 951: 4,23 - 952: 4,22 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerSe - decals: - 960: 4,23 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSe - decals: - 994: 7,30 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteBox - decals: - 1278: 15,28 - - node: - color: '#3E5C23A8' - id: MiniTileCheckerBOverlay - decals: - 1572: 7,9 - 1573: 8,9 - 1574: 9,9 - 1575: 7,8 - 1576: 8,8 - 1577: 9,8 - 1578: 7,7 - 1579: 8,7 - 1580: 9,7 - 1581: 7,6 - 1582: 8,6 - 1583: 9,6 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 1589: 9,6 - 1798: 6,-26 - 1907: 18,-26 - 1935: 19,-18 - 2007: 5,46 - 2023: 7,-27 - 2315: 13,53 - 2345: 18,-38 - - node: - color: '#3E5C23A8' - id: CheckerNWSE - decals: - 1594: 6,6 - 1595: 6,7 - 1596: 6,8 - 1597: 6,9 - 1598: 6,10 - 1599: 7,10 - 1600: 8,10 - 1601: 9,10 - 1602: 10,10 - 1603: 10,9 - 1604: 10,8 - 1605: 10,7 - 1606: 10,6 - 1607: 10,5 - 1608: 9,5 - 1609: 8,5 - 1610: 7,5 - 1611: 6,5 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - decals: - 1612: 5,13 - 1613: 6,13 - 1614: 8,13 - 1615: 7,13 - 1616: 9,13 - 1617: 10,13 - 1618: 11,13 - 1619: 12,13 - 1620: 13,13 - 1621: 14,13 - 1622: 15,13 - 1623: 16,13 - 1624: 17,13 - 1625: 4,13 - - node: - color: '#FFFFFFA8' - id: MiniTileCheckerAOverlay - decals: - 1660: 6,-4 - 1661: 8,-4 - 1662: 7,-4 - 1663: 9,-4 - 1664: 10,-4 - 1665: 10,-3 - 1666: 10,-2 - 1667: 9,-2 - 1668: 8,-2 - 1669: 7,-2 - 1670: 7,-1 - 1671: 7,0 - 1672: 7,1 - 1673: 6,1 - 1674: 6,0 - 1675: 6,-1 - 1676: 6,-2 - 1677: 6,-3 - 1678: 8,-3 - 1679: 7,-3 - 1680: 9,-3 - - node: - color: '#52B4E996' - id: BotLeftGreyscale - decals: - 2325: 27,5 - 2326: 27,6 - 2327: 27,4 - - node: - color: '#52B4E996' - id: DeliveryGreyscale - decals: - 2328: 27,3 - - node: - angle: 1.5707963267948966 rad - color: '#52B4E996' - id: LoadingAreaGreyscale - decals: - 2329: 28,3 - - node: - angle: -1.5707963267948966 rad - color: '#52B4E996' - id: LoadingAreaGreyscale - decals: - 2330: 28,6 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign5 - decals: - 2335: 0,14 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign6 - decals: - 2336: 1,14 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign7 - decals: - 2337: 2,14 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - decals: - 2383: 29,2 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSw - decals: - 1924: 20,-10 - 2384: 29,7 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNw - decals: - 2385: 29,2 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSe - decals: - 772: 21,40 - 1334: -10,-15 - 1357: 11,-15 - 2401: 23,20 - - node: - color: '#FFFFFFFF' - id: Rock03 - decals: - 2405: 22.524572,21.835993 - - node: - color: '#80C71FCA' - id: Bushb1 - decals: - 2408: 21.225384,20.367212 - - node: - color: '#80C71FCA' - id: Busha2 - decals: - 2409: 22.247696,21.53798 - - node: - color: '#80C71FAB' - id: Busha1 - decals: - 2410: 22.65236,20.282064 - - node: - color: '#80C71FAB' - id: Bushb3 - decals: - 2411: 26.187859,16.8762 - - node: - color: '#80C71FAB' - id: Bushf2 - decals: - 2412: 26.99719,17.621233 - - node: - color: '#80C71FAB' - id: Grassb3 - decals: - 2413: 21.821733,20.154345 - 2414: 26.954594,16.897486 - - node: - color: '#80C71FAB' - id: Grassb2 - decals: - 2415: 27.188873,17.578661 - 2416: 20.92721,20.111773 - 2417: 23.057028,20.239492 - - node: - color: '#80C71FAB' - id: Grassa4 - decals: - 2419: 21.885628,21.303825 - - node: - color: '#80C71FAB' - id: Grassa1 - decals: - 2420: 20.991104,21.857279 - 2422: 26.975891,16.94006 - - node: - color: '#80C71FAB' - id: Grassa5 - decals: - 2421: 26.209158,17.685093 - 2423: 21.566154,21.814705 - - node: - color: '#80C71FAE' - id: Flowersy3 - decals: - 2424: 22.013416,21.53798 - 2426: 26.379543,16.769766 - 2432: 21.928225,20.32464 - - node: - color: '#80C71FAE' - id: Flowersy2 - decals: - 2425: 21.097595,20.409784 - 2430: 21.012402,21.21868 - 2431: 22.780151,20.0692 - - node: - color: '#80C71FAE' - id: Flowersy4 - decals: - 2427: 27.061085,17.45094 - - node: - color: '#80C71FAE' - id: Flowerspv3 - decals: - 2428: 22.119907,20.303352 - - node: - color: '#80C71FAE' - id: Flowerspv2 - decals: - 2429: 22.31159,21.239965 - - node: - color: '#80C71F95' - id: Grassc4 - decals: - 2433: 21.054998,20.45236 - - node: - color: '#80C71F95' - id: Grasse2 - decals: - 2434: 22.375484,21.729559 - - node: - color: '#80C71F95' - id: Grasse3 - decals: - 2435: 22.65236,20.175632 - - node: - color: '#80C71F95' - id: Grassc3 - decals: - 2436: 26.52863,16.897486 - - node: - color: '#80C71F95' - id: Grassc2 - decals: - 2437: 26.081367,17.770239 - - node: - color: '#80C71F95' - id: Grassc1 - decals: - 2438: 27.061085,17.770239 - - node: - color: '#80C71F95' - id: Grasse1 - decals: - 2439: 26.379543,17.025208 - 2440: 21.331875,20.494932 - - node: - color: '#80C71F95' - id: Grassa3 - decals: - 2441: 22.247696,20.388498 - - node: - color: '#80C71FB4' - id: Grassa4 - decals: - 2442: 21.992119,21.3464 - 2448: 27.124979,17.599947 - - node: - color: '#80C71FB4' - id: Grassa5 - decals: - 2443: 21.523558,20.409784 - 2444: 20.756824,21.835993 - - node: - color: '#80C71FB4' - id: Grassa1 - decals: - 2445: 20.92721,20.19692 - - node: - color: '#80C71FB4' - id: Grassa2 - decals: - 2446: 22.865343,21.921139 - 2447: 26.358244,16.94006 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 239: 1,57 - 240: 2,57 - 241: 2,56 - 242: 2,55 - 243: 2,54 - 244: 2,53 - 245: 2,52 - 248: 0,51 - 249: 0,50 - 250: 0,44 - 251: 0,43 - 252: 0,42 - 253: 0,41 - 254: 0,40 - 255: 0,39 - 256: 0,38 - 257: 1,38 - 258: 2,38 - 259: 3,38 - 260: 4,38 - 261: 5,38 - 262: 7,38 - 263: 6,38 - 264: 8,38 - 265: 9,38 - 266: 10,38 - 267: 11,38 - 268: 13,38 - 269: 12,38 - 270: 16,38 - 271: 17,38 - 272: 18,38 - 273: 19,38 - 274: 20,38 - 275: 21,38 - 276: 22,38 - 277: 23,38 - 278: 24,38 - 1987: 0,49 - 1988: 0,48 - 5064: 14,38 - 5065: 15,38 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - decals: - 246: 2,52 - 247: 1,52 - - node: - color: '#D5188D95' - id: FullTileOverlayGreyscale - decals: - 738: 17,45 - 739: 17,46 - 740: 17,47 - 741: 18,47 - 742: 18,45 - 743: 18,46 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - decals: - 747: 7,61 - 815: 14,34 - - node: - color: '#52B4E9FF' - id: MiniTileCheckerAOverlay - decals: - 763: 19,40 - 764: 19,41 - 765: 19,42 - 766: 20,42 - 767: 21,42 - 768: 21,41 - 769: 21,40 - 770: 20,40 - 771: 20,41 - - node: - color: '#18A2D522' - id: FullTileOverlayGreyscale - decals: - 780: 25,34 - 781: 26,34 - 782: 25,33 - 783: 26,33 - 784: 25,32 - 785: 26,32 - 786: 27,32 - 787: 27,33 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNe - decals: - 1943: 13,-25 - 1992: 0,45 - 2347: 18,-35 - 2349: 17,-34 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSe - decals: - 1923: 17,-10 - 1945: 13,-23 - 1993: 0,48 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNe - decals: - 1946: 13,-25 - 1994: 0,45 - - node: - color: '#334E6DC8' - id: MiniTileCheckerAOverlay - decals: - 1896: 17,-25 - 1897: 17,-24 - 1898: 17,-23 - 1925: 18,-18 - 1926: 19,-18 - 1927: 19,-17 - 1928: 18,-17 - 1929: 18,-16 - 1930: 19,-16 - 1931: 19,-15 - 1932: 18,-15 - 1933: 18,-14 - 2001: 4,46 - 2002: 5,46 - 2003: 5,47 - 2004: 4,47 - 5112: 19,-14 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - decals: - 2299: 7,56 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - decals: - 2300: 14,56 - - node: - color: '#334E6DC8' - id: DiagonalCheckerAOverlay - decals: - 2301: 13,53 - 2302: 13,54 - 2303: 11,54 - 2304: 12,54 - 2305: 12,53 - 2306: 11,53 - 2307: 10,53 - 2308: 10,54 - 2309: 9,54 - 2310: 9,53 - 2311: 8,53 - 2312: 8,54 - - node: - color: '#FFFFFF7F' - id: Bushf3 - decals: - 2352: 32.108974,39.865433 - 2353: 28.87165,41.01491 - - node: - color: '#FFFFFF7F' - id: Bushf1 - decals: - 2354: 28.885849,40.418884 - 2355: 32.13737,41.057484 - - node: - color: '#FFFFFF7F' - id: Bushg3 - decals: - 2356: 28.843252,39.879623 - 2357: 32.165768,40.518223 - - node: - color: '#FFFFFF7F' - id: Busha2 - decals: - 2358: 28.87165,40.802044 - 2360: 32.094776,39.978962 - - node: - color: '#FFFFFF7F' - id: Busha3 - decals: - 2361: 28.928446,39.978962 - - node: - color: '#FFFFFF7F' - id: Bushb1 - decals: - 2362: 28.857452,41.01491 - 2363: 32.123173,41.043293 - - node: - color: '#FFFFFF7F' - id: Grassc3 - decals: - 2364: 28.90005,40.85881 - - node: - color: '#FFFFFF7F' - id: Grassc4 - decals: - 2365: 28.87165,40.035725 - - node: - color: '#FFFFFFEF' - id: Grassd2 - decals: - 2368: 28.90005,40.049915 - - node: - color: '#FFFFFFEF' - id: Grassd3 - decals: - 2369: 28.942644,41.057484 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 279: -33,-7 - 280: -33,-6 - 281: -33,-5 - 282: -33,-4 - 283: -33,-3 - 284: -33,-2 - 285: -33,-1 - 286: -33,0 - 287: -33,1 - 288: -33,2 - 289: -33,3 - 290: -33,8 - 291: -33,9 - 292: -33,10 - 293: -33,11 - 294: -33,12 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 2052: -41,6 - 2053: -41,0 - 2054: -44,-5 - 2055: -44,-6 - 2056: -44,-7 - 2057: -44,-8 - 2058: -43,-8 - 2059: -43,-7 - 2060: -43,-6 - 2061: -43,-5 - 2062: -39,-5 - 2063: -39,-6 - 2064: -39,-7 - 2065: -39,-8 - 2066: -40,-8 - 2067: -40,-7 - 2068: -40,-6 - 2069: -40,-5 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 295: -34,13 - 296: -35,13 - 297: -36,13 - 298: -37,13 - 299: -39,13 - 300: -38,13 - 301: -41,13 - 302: -42,13 - 303: -43,13 - 304: -44,13 - 305: -45,13 - 2084: -40,13 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 306: -45,15 - 307: -44,15 - 308: -43,15 - 309: -42,15 - 310: -41,15 - 311: -40,15 - 312: -39,15 - 313: -38,15 - 314: -37,15 - 315: -36,15 - 316: -35,15 - 317: -34,15 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 318: -33,16 - 319: -33,17 - 320: -33,18 - 321: -33,19 - 322: -33,20 - 323: -33,21 - 324: -33,22 - 325: -33,23 - 326: -33,24 - 327: -33,25 - 328: -33,26 - 329: -33,28 - 330: -33,27 - 331: -33,29 - 332: -33,30 - 333: -33,31 - 334: -33,32 - 335: -33,33 - 336: -33,34 - 337: -33,35 - 338: -33,36 - 339: -34,36 - 340: -35,36 - 341: -36,36 - 342: -37,36 - 343: -38,36 - 344: -39,36 - 345: -40,36 - 346: -41,36 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 2048: -40,1 - 2049: -40,5 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Delivery - decals: - 2050: -41,2 - 2051: -41,4 - - node: - color: '#A4610696' - id: BrickTileWhiteLineS - decals: - 2085: -37,9 - 2086: -36,9 - 2087: -35,9 - 2138: -34,4 - 2139: -35,4 - - node: - color: '#A4610696' - id: BrickTileWhiteLineN - decals: - 2088: -37,11 - 2089: -36,11 - 2090: -35,11 - 2143: -35,7 - 2144: -34,7 - 5143: 16,-15 - 5158: 21,-15 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerSw - decals: - 2140: -36,4 - - node: - angle: 1.5707963267948966 rad - color: '#A46105C0' - id: StandClear - decals: - 2145: -36,5 - - node: - angle: 1.5707963267948966 rad - color: '#A46105C0' - id: LoadingArea - decals: - 2146: -36,5 - - node: - color: '#A4610696' - id: StandClear - decals: - 2147: -38,16 - 2148: -40,26 - 2149: -40,25 - 2150: -43,26 - 2151: -43,25 - 2152: -40,25 - 2153: -40,26 - - node: - color: '#80C71FA4' - id: Grassa2 - decals: - 5077: -47.73545,40.050636 - 5081: -47.764923,40.698963 - 5083: -46.24703,40.743168 - 5084: -46.084923,39.918022 - - node: - color: '#80C71FA4' - id: Grassa3 - decals: - 5078: -45.421764,40.669495 - - node: - color: '#80C71FA4' - id: Grassa4 - decals: - 5079: -45.40703,39.918022 - - node: - color: '#80C71FA4' - id: Grassa5 - decals: - 5080: -46.60071,39.873817 - - node: - color: '#80C71FA4' - id: Grassc2 - decals: - 5082: -46.29124,40.640026 - - node: - color: '#80C71FA4' - id: Bushb1 - decals: - 5085: -46.05545,40.68423 - 5089: -47.396503,39.873817 - - node: - color: '#80C71FA4' - id: Busha1 - decals: - 5086: -47.70598,40.43374 - - node: - color: '#80C71FA4' - id: Bushc2 - decals: - 5087: -45.30387,39.903286 - - node: - color: '#80C71FA4' - id: Busha2 - decals: - 5088: -45.230186,40.743168 - - node: - color: '#80C71FA4' - id: Flowersy1 - decals: - 5090: -45.40703,40.65476 - 5092: -46.468082,40.168514 - - node: - color: '#80C71FA4' - id: Flowersy4 - decals: - 5091: -47.750187,39.991695 - - node: - color: '#80C71FA4' - id: Flowersbr1 - decals: - 5093: -45.480713,39.888554 - - node: - color: '#80C71FA4' - id: Flowersy3 - decals: - 5094: -46.61545,40.787373 - - node: - color: '#80C71FA4' - id: Flowersbr2 - decals: - 5095: -47.82387,40.787373 - - node: - color: '#80C71FA4' - id: Grassc3 - decals: - 5096: -47.70598,40.0359 - - node: - color: '#80C71FA4' - id: Grassb4 - decals: - 5097: -45.392292,40.65476 - 5100: -47.88282,40.743168 - 5102: -47.853344,39.991695 - 5104: -45.30387,40.919987 - - node: - color: '#80C71FA4' - id: Grassd3 - decals: - 5098: -45.30387,39.976963 - - node: - color: '#80C71FA4' - id: Grassc1 - decals: - 5099: -46.52703,40.301125 - - node: - color: '#80C71FA4' - id: Grassb2 - decals: - 5101: -46.541767,41.02313 - 5103: -44.994396,39.829613 - - node: - color: '#80C71F76' - id: grasssnowc1 - decals: - 5105: -47.55861,40.00643 - - node: - color: '#80C71F76' - id: grasssnowb1 - decals: - 5106: -45.952293,40.610558 - - node: - color: '#80C71F76' - id: grasssnowa2 - decals: - 5107: -45.348083,39.888554 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 347: 5,-10 - 348: 6,-10 - 349: 7,-10 - 350: 8,-10 - 351: 9,-10 - 352: 11,-10 - 353: 10,-10 - 354: 12,-10 - 355: 13,-10 - 356: 14,-10 - 361: 4,-14 - 362: 3,-14 - 363: 2,-14 - 364: 1,-14 - 365: 0,-14 - 366: -1,-14 - 377: -15,-10 - 378: -13,-10 - 379: -11,-10 - 380: -9,-10 - 381: -7,-10 - 382: -6,-11 - 383: -6,-13 - 384: -5,-14 - 385: -3,-14 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 357: 4,-11 - 358: 4,-12 - 359: 4,-13 - 360: 4,-14 - - node: - color: '#EFB34196' - id: MiniTileCheckerBOverlay - decals: - 1322: -13,-13 - 1323: -12,-13 - 1324: -11,-13 - 1325: -10,-13 - 1326: -10,-14 - 1327: -10,-15 - 1328: -11,-15 - 1329: -12,-15 - 1330: -13,-15 - 1331: -13,-14 - 1332: -12,-14 - 1333: -11,-14 - 1344: 8,-13 - 1345: 8,-14 - 1346: 8,-15 - 1347: 9,-15 - 1348: 9,-14 - 1349: 9,-13 - 1350: 10,-13 - 1351: 10,-14 - 1352: 10,-15 - 1353: 11,-15 - 1354: 11,-14 - 1355: 11,-13 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale - decals: - 1648: 4,-8 - 1649: 5,-8 - 1650: 6,-8 - 1651: 7,-8 - 1652: 8,-8 - 1653: 9,-8 - 1654: 10,-8 - 1655: 11,-8 - 1656: 12,-8 - - node: - color: '#79150096' - id: CheckerNWSE - decals: - 1657: 9,-7 - 1658: 10,-7 - 1659: 11,-7 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerNe - decals: - 1698: 7,-2 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineE - decals: - 1383: -8,-16 - 1384: -8,-15 - 1385: -8,-14 - 1386: -8,-13 - 1746: 13,-21 - 1747: 13,-22 - 1748: 13,-23 - 1749: 13,-25 - 1750: 13,-26 - 1751: 13,-27 - 1752: 13,-28 - 1753: 13,-29 - 1754: 13,-30 - 1755: 13,-31 - 1756: 13,-32 - 1757: 13,-33 - 1758: 13,-34 - 1759: 13,-35 - 1760: 13,-36 - 1761: 13,-37 - 1762: 13,-38 - 1959: -11,-19 - 1960: -11,-20 - 2034: 7,-26 - 2035: 7,-25 - 2036: 7,-24 - - node: - color: '#EFB34196' - id: MiniTileCheckerAOverlay - decals: - 1793: 5,-26 - 1794: 5,-25 - 1795: 6,-25 - 1796: 6,-26 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSe - decals: - 1911: 18,-26 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSe - decals: - 2030: 7,-27 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 2031: 6,-27 - 2032: 5,-27 - 2033: 4,-27 - 5148: 17,-15 - 5155: 20,-15 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineN - decals: - 5144: 15,-15 - 5159: 22,-15 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineS - decals: - 5161: 17,-17 - 5162: 20,-17 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineS - decals: - 5163: 15,-17 - 5164: 22,-17 - - node: - color: '#D4D4D426' - id: HalfTileOverlayGreyscale - decals: - 5166: 19,-12 - 5167: 18,-12 - - node: - color: '#D4D4D40C' - id: HalfTileOverlayGreyscale180 - decals: - 5168: 18,-12 - 5169: 19,-12 - - node: - color: '#D4D4D426' - id: BrickTileWhiteLineN - decals: - 5170: 18,-12 - 5171: 19,-12 - - node: - color: '#D4D4D479' - id: BrickTileDarkLineS - decals: - 5172: 18,-12 - 5173: 19,-12 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 1291: -13,-30 - 1292: -13,-29 - 1293: -13,-28 - 1294: -13,-27 - - node: - color: '#52B4E996' - id: MiniTileCheckerAOverlay - decals: - 1310: -13,-15 - 1311: -13,-14 - 1312: -13,-13 - 1313: -12,-13 - 1314: -11,-13 - 1315: -10,-13 - 1316: -10,-14 - 1317: -10,-15 - 1318: -11,-15 - 1319: -12,-15 - 1320: -12,-14 - 1321: -11,-14 - - node: - color: '#79150096' - id: WarnBox - decals: - 1423: -15,-13 - 1424: -15,-12 - - node: - color: '#791500FF' - id: WarnBox - decals: - 1425: -15,-13 - 1426: -15,-12 - - node: - color: '#52B4E996' - id: WarnBoxGreyscale - decals: - 1427: -15,-13 - 1428: -15,-12 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - decals: - 1636: -6,-8 - 1637: -7,-8 - 1638: -8,-8 - 1639: -9,-8 - 1640: -10,-8 - 1641: -11,-8 - 1642: -12,-8 - 1643: -13,-8 - 1644: -14,-8 - 1645: -15,-8 - 1646: -16,-8 - 1647: -17,-8 - - node: - color: '#E7B795FF' - id: WoodTrimThinLineE - decals: - 2245: 43,47 - 2246: 43,48 - 2247: 43,49 - 2248: 43,50 - 2265: 46,47 - - node: - color: '#E7B795FF' - id: WoodTrimThinCornerNe - decals: - 2249: 43,51 - 2266: 46,48 - - node: - color: '#E7B795FF' - id: WoodTrimThinCornerNw - decals: - 2250: 41,51 - 2255: 40,49 - 2267: 45,48 - - node: - color: '#E7B795FF' - id: WoodTrimThinLineN - decals: - 2251: 42,51 - 2270: 44,46 - - node: - color: '#E7B795FF' - id: WoodTrimThinLineW - decals: - 2252: 41,50 - 2256: 40,48 - 2257: 40,47 - 2268: 45,47 - - node: - color: '#E7B795FF' - id: WoodTrimThinInnerNw - decals: - 2253: 41,49 - 2269: 45,46 - - node: - color: '#E7B795FF' - id: WoodTrimThinInnerNe - decals: - 2254: 43,46 - - node: - color: '#E7B795FF' - id: WoodTrimThinCornerSw - decals: - 2258: 40,46 - - node: - color: '#E7B795FF' - id: WoodTrimThinLineS - decals: - 2259: 41,46 - 2260: 42,46 - 2261: 43,46 - 2262: 44,46 - 2263: 45,46 - - node: - color: '#E7B795FF' - id: WoodTrimThinCornerSe - decals: - 2264: 46,46 - - node: - color: '#FFFFFF7F' - id: Busha1 - decals: - 2359: 32.123173,40.915573 - - node: - color: '#FFFFFF7F' - id: Grassc2 - decals: - 2366: 32.108974,40.943954 - - node: - color: '#FFFFFF7F' - id: Grassc1 - decals: - 2367: 32.165768,40.007343 - - node: - color: '#FFFFFFEF' - id: Grassd1 - decals: - 2370: 32.13737,39.978962 - - node: - color: '#FFFFFFEF' - id: Grasse1 - decals: - 2371: 32.15157,40.943954 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 2343: 19,-33 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 5186: 46,-11 - 5187: 45,-11 - 5188: 46,-13 - 5189: 47,-14 - 5190: 48,-12 - 5191: 48,-12 - 5192: 48,-14 - 5193: 47,-14 - 5194: 49,-15 - 5195: 49,-8 - 5196: 48,-8 - type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 65535 - -1,0: - 0: 65535 - 0,-1: - 0: 65535 - 0,0: - 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: 65535 - -2,-1: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-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: 65023 - 1: 512 - -2,3: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 1,-4: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 64511 - 2: 1024 - 1,-1: - 0: 65535 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 32767 - 1: 32768 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,0: - 0: 65533 - 1: 2 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 1,3: - 0: 65535 - 2,0: - 0: 13103 - 1: 16 - 3: 36032 - 4: 16384 - 2,1: - 0: 65535 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,0: - 0: 61031 - 1: 136 - 3: 4368 - 3,1: - 0: 65535 - 3,2: - 0: 16383 - 1: 49152 - 3,3: - 0: 65535 - -4,4: - 0: 65535 - -4,5: - 0: 48127 - 1: 17408 - -4,6: - 0: 61439 - 1: 4096 - -4,7: - 1: 1 - 0: 65534 - -3,4: - 0: 16383 - 1: 49152 - -3,5: - 0: 65535 - -3,6: - 0: 65535 - -3,7: - 0: 65535 - -2,4: - 0: 61439 - 1: 4096 - -2,5: - 0: 65535 - -2,6: - 0: 65535 - -2,7: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 65535 - -1,6: - 0: 65535 - -1,7: - 0: 65535 - 0,4: - 0: 65535 - 0,5: - 0: 65535 - 0,6: - 0: 65407 - 1: 128 - 0,7: - 0: 65535 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 1,6: - 0: 65519 - 1: 16 - 1,7: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 3,6: - 0: 61167 - 1: 4368 - 3,7: - 0: 65471 - 1: 64 - 4,0: - 0: 65023 - 1: 512 - 4,1: - 0: 65535 - 4,2: - 0: 56799 - 1: 8736 - 4,3: - 0: 65535 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 65535 - 6,2: - 0: 49151 - 1: 16384 - 6,3: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 0: 65535 - 5,-3: - 0: 65535 - 5,-2: - 0: 65535 - 5,-1: - 0: 65487 - 1: 48 - 6,-4: - 0: 49151 - 1: 16384 - 6,-3: - 0: 65531 - 1: 4 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 65535 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 64991 - 1: 544 - 4,4: - 0: 48063 - 1: 17472 - 4,5: - 0: 65535 - 4,6: - 0: 63487 - 1: 2048 - 4,7: - 0: 65535 - 5,4: - 0: 65535 - 5,5: - 0: 65535 - 5,6: - 0: 65535 - 5,7: - 0: 65535 - 6,4: - 0: 65535 - 6,5: - 0: 65535 - 6,6: - 0: 57343 - 1: 8192 - 6,7: - 0: 65501 - 1: 34 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 65535 - 7,7: - 0: 65535 - -8,-4: - 0: 20479 - 1: 32768 - 3: 12288 - -8,-3: - 3: 3 - 0: 65012 - 1: 520 - -8,-2: - 0: 65535 - -8,-1: - 0: 30719 - 1: 34816 - -7,-4: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 0: 65527 - 1: 8 - -6,-4: - 0: 65535 - -6,-3: - 0: 65535 - -6,-2: - 0: 65535 - -6,-1: - 1: 1 - 0: 65534 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -8,4: - 0: 21887 - 1: 43648 - -8,5: - 0: 63359 - 1: 2176 - -8,6: - 0: 65535 - -8,7: - 0: 65535 - -7,4: - 0: 65535 - -7,5: - 0: 64511 - 1: 1024 - -7,6: - 0: 65535 - -7,7: - 0: 65535 - -6,4: - 0: 65407 - 1: 128 - -6,5: - 0: 65535 - -6,6: - 0: 65535 - -6,7: - 0: 65535 - -5,4: - 0: 65535 - -5,5: - 0: 61439 - 1: 4096 - -5,6: - 0: 65535 - -5,7: - 0: 65535 - -8,0: - 0: 65527 - 1: 8 - -8,1: - 0: 65535 - -8,2: - 0: 65535 - -8,3: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -7,3: - 0: 65535 - -6,0: - 0: 65471 - 1: 64 - -6,1: - 0: 65407 - 1: 128 - -6,2: - 0: 65535 - -6,3: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 30591 - 1: 34944 - -5,3: - 0: 65535 - 8,-4: - 0: 40959 - 1: 24576 - 8,-3: - 0: 65535 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 - 9,-4: - 0: 65527 - 5: 8 - 9,-3: - 0: 65535 - 9,-2: - 0: 8191 - 10,-4: - 0: 63999 - 10,-3: - 0: 65535 - 10,-2: - 0: 4095 - 11,-4: - 0: 65535 - 11,-3: - 0: 65535 - 11,-2: - 0: 65535 - 8,0: - 0: 65535 - 8,1: - 0: 65535 - 8,2: - 0: 65535 - 8,3: - 0: 65535 - 9,2: - 0: 63487 - 9,3: - 0: 65535 - 10,2: - 0: 61440 - 10,3: - 0: 65535 - 11,2: - 0: 65280 - 11,3: - 0: 65535 - 8,4: - 0: 32767 - 8,5: - 0: 13107 - 8,6: - 0: 13107 - 8,7: - 0: 13107 - 9,4: - 0: 255 - 10,4: - 0: 255 - 11,4: - 0: 4095 - -12,-4: - 0: 61440 - -12,-3: - 0: 65535 - -12,-2: - 0: 36863 - -12,-1: - 0: 34952 - -11,-3: - 0: 65535 - -11,-2: - 0: 65279 - 1: 256 - -11,-1: - 0: 65535 - -11,-4: - 0: 64640 - -10,-4: - 0: 65535 - -10,-3: - 0: 65535 - -10,-2: - 0: 57341 - 1: 8194 - -10,-1: - 0: 32767 - 1: 32768 - -9,-4: - 0: 24575 - 1: 8192 - 3: 32768 - -9,-3: - 0: 65493 - 1: 34 - 4: 8 - -9,-2: - 0: 65535 - -9,-1: - 0: 61439 - 1: 4096 - -12,2: - 0: 63624 - -12,3: - 0: 65535 - -12,0: - 0: 34952 - -12,1: - 0: 34952 - -11,0: - 0: 65535 - -11,1: - 0: 65535 - -11,2: - 0: 65519 - 1: 16 - -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 - -12,4: - 0: 32767 - -12,6: - 0: 52428 - -12,5: - 0: 32768 - -12,7: - 0: 8 - -11,4: - 0: 65535 - -11,5: - 0: 65535 - -11,6: - 0: 65535 - -11,7: - 0: 65535 - -10,4: - 0: 65535 - -10,5: - 0: 65535 - -10,6: - 0: 30591 - 1: 34944 - -10,7: - 0: 65535 - -9,4: - 0: 56831 - 1: 8704 - -9,5: - 0: 65533 - 1: 2 - -9,6: - 0: 65535 - -9,7: - 0: 65535 - 12,2: - 0: 65280 - 12,3: - 1: 3 - 0: 65532 - 13,2: - 0: 4096 - 13,3: - 0: 4369 - 12,4: - 0: 4095 - 13,4: - 0: 17 - 8,8: - 0: 65527 - 8,9: - 0: 65535 - 8,10: - 0: 65535 - 8,11: - 0: 65535 - 9,8: - 0: 65280 - 9,9: - 0: 65535 - 9,10: - 0: 65535 - 9,11: - 0: 65535 - 10,8: - 0: 65280 - 10,9: - 0: 65535 - 10,10: - 0: 65535 - 10,11: - 0: 64505 - 1: 1030 - 11,8: - 0: 65520 - 11,9: - 0: 65535 - 11,10: - 0: 65535 - 11,11: - 0: 65523 - 1: 12 - 12,8: - 0: 63344 - 12,9: - 0: 65535 - 12,10: - 0: 30591 - 12,11: - 0: 8183 - 13,8: - 0: 4096 - 13,9: - 0: 4369 - 13,10: - 0: 4369 - 13,11: - 0: 4369 - 4,8: - 0: 63095 - 1: 2440 - 4,9: - 0: 65535 - 4,10: - 0: 40959 - 1: 24576 - 4,11: - 0: 57343 - 1: 8192 - 5,8: - 1: 273 - 0: 65262 - 5,9: - 0: 65535 - 5,10: - 0: 8191 - 1: 57344 - 5,11: - 0: 61183 - 1: 4352 - 6,8: - 0: 65535 - 6,9: - 0: 65535 - 6,10: - 0: 65399 - 1: 136 - 6,11: - 0: 65535 - 7,8: - 0: 65535 - 7,9: - 0: 65535 - 7,10: - 0: 65535 - 7,11: - 0: 65535 - 12,-4: - 0: 32767 - 5: 32768 - 12,-3: - 0: 65527 - 5: 8 - 12,-2: - 0: 30671 - 1: 48 - 13,-3: - 0: 4368 - 13,-2: - 0: 17 - -14,-3: - 0: 52416 - -14,-2: - 0: 204 - -13,-4: - 0: 61440 - -13,-3: - 0: 65535 - -13,-2: - 0: 4095 - -14,3: - 0: 52428 - -13,2: - 0: 61440 - -13,3: - 0: 65529 - 1: 6 - -14,4: - 0: 2252 - -13,4: - 0: 65535 - 0,8: - 0: 65535 - 0,9: - 0: 65535 - 0,10: - 0: 65523 - 1: 12 - 0,11: - 0: 65535 - 1,8: - 0: 65535 - 1,9: - 0: 65535 - 1,10: - 1: 1 - 0: 65534 - 1,11: - 0: 65535 - 2,8: - 0: 65535 - 2,9: - 0: 65535 - 2,10: - 0: 65535 - 2,11: - 0: 65535 - 3,8: - 0: 65535 - 3,9: - 0: 65535 - 3,10: - 0: 65535 - 3,11: - 0: 65535 - -4,8: - 0: 65535 - -4,9: - 0: 65535 - -4,10: - 1: 1281 - 0: 64254 - -4,11: - 0: 65533 - 1: 2 - -3,8: - 0: 64511 - 1: 1024 - -3,9: - 0: 65535 - -3,10: - 0: 65023 - 1: 512 - -3,11: - 1: 9 - 0: 65526 - -2,8: - 0: 65535 - -2,9: - 0: 65535 - -2,10: - 0: 63231 - 1: 2304 - -2,11: - 0: 65531 - 1: 4 - -1,8: - 0: 65535 - -1,9: - 0: 65535 - -1,10: - 0: 65535 - -1,11: - 0: 65535 - -8,8: - 0: 65535 - -8,9: - 0: 65535 - -8,10: - 0: 65535 - -8,11: - 0: 65535 - -7,8: - 0: 63351 - 1: 2184 - -7,9: - 0: 65535 - -7,10: - 0: 65535 - -7,11: - 0: 65535 - -6,8: - 0: 65535 - -6,9: - 0: 65535 - -6,10: - 1: 17 - 0: 65518 - -6,11: - 0: 65535 - -5,8: - 0: 65535 - -5,9: - 0: 65535 - -5,10: - 0: 62711 - 1: 2824 - -5,11: - 0: 65535 - -12,8: - 0: 65527 - -12,9: - 0: 65535 - -12,10: - 0: 65535 - -12,11: - 1: 2051 - 0: 63484 - -11,8: - 0: 65535 - -11,9: - 0: 65535 - -11,10: - 0: 65535 - -11,11: - 0: 64991 - 1: 544 - -10,8: - 0: 63487 - 1: 2048 - -10,9: - 0: 65535 - -10,10: - 0: 64511 - 1: 1024 - -10,11: - 0: 64511 - 1: 1024 - -9,8: - 0: 64767 - 1: 768 - -9,9: - 0: 65535 - -9,10: - 0: 65535 - -9,11: - 0: 65535 - -14,8: - 0: 52352 - -14,9: - 0: 52428 - -14,10: - 0: 17484 - -13,8: - 0: 65535 - -13,9: - 0: 65535 - -13,10: - 0: 65535 - -13,11: - 0: 57343 - 0,-8: - 0: 65279 - 5: 256 - 0,-7: - 6: 1 - 0: 65278 - 5: 256 - 0,-6: - 5: 1 - 0: 65278 - 7: 256 - 0,-5: - 8: 1 - 0: 65534 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 61435 - 1: 4100 - 1,-5: - 1: 1793 - 0: 63742 - 2,-8: - 0: 65535 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65503 - 1: 32 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -4,-6: - 1: 273 - 0: 65262 - -4,-5: - 0: 63999 - 1: 1536 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -3,-6: - 0: 65535 - -3,-5: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 0: 64511 - 1: 1024 - -1,-8: - 0: 62463 - 5: 3072 - -1,-7: - 0: 62451 - 6: 12 - 5: 3072 - -1,-6: - 0: 62451 - 5: 12 - 7: 3072 - -1,-5: - 0: 65523 - 8: 12 - -12,12: - 0: 61439 - -12,13: - 0: 58111 - -11,12: - 0: 65535 - -11,13: - 0: 65279 - -11,14: - 0: 36463 - -10,12: - 0: 65535 - -10,13: - 0: 49151 - 1: 16384 - -10,14: - 0: 45055 - -10,15: - 0: 43690 - -9,12: - 0: 65535 - -9,13: - 0: 65535 - -9,14: - 0: 4095 - -9,15: - 0: 15 - -13,12: - 0: 20477 - -13,13: - 0: 204 - -8,12: - 0: 65535 - -8,13: - 0: 65535 - -8,14: - 0: 65535 - -8,15: - 0: 3871 - -7,12: - 0: 65519 - 1: 16 - -7,13: - 0: 65531 - 1: 4 - -7,14: - 0: 64511 - 1: 1024 - -7,15: - 0: 3855 - -6,12: - 0: 65535 - -6,13: - 0: 65023 - 1: 512 - -6,14: - 0: 64511 - 1: 1024 - -6,15: - 0: 53199 - -5,12: - 0: 65535 - -5,13: - 0: 61439 - 1: 4096 - -5,14: - 1: 1 - 0: 65534 - -5,15: - 0: 65527 - 1: 8 - -4,12: - 0: 64511 - 1: 1024 - -4,13: - 0: 65535 - -4,14: - 0: 65535 - -4,15: - 0: 32767 - 1: 32768 - -3,12: - 0: 65535 - -3,13: - 0: 65535 - -3,14: - 0: 65535 - -3,15: - 0: 65535 - -2,12: - 0: 65535 - -2,13: - 0: 65535 - -2,14: - 0: 65467 - 1: 68 - -2,15: - 0: 65535 - -1,12: - 0: 65535 - -1,13: - 0: 65535 - -1,14: - 0: 65535 - -1,15: - 0: 65535 - 0,12: - 0: 65535 - 0,13: - 0: 65535 - 0,14: - 0: 65535 - 0,15: - 0: 65535 - 1,12: - 0: 65535 - 1,13: - 0: 65535 - 1,14: - 0: 65535 - 1,15: - 0: 65407 - 1: 128 - 2,12: - 0: 65535 - 2,13: - 0: 65535 - 2,14: - 0: 65535 - 2,15: - 0: 65535 - 3,12: - 0: 65535 - 3,13: - 0: 65535 - 3,14: - 0: 65535 - 3,15: - 0: 65535 - 4,12: - 0: 65535 - 4,13: - 0: 65535 - 4,14: - 0: 65535 - 4,15: - 1: 1 - 0: 65534 - 5,12: - 1: 1 - 0: 65534 - 5,13: - 0: 65535 - 5,14: - 0: 65535 - 5,15: - 0: 7967 - 6,12: - 0: 65535 - 6,13: - 0: 65535 - 6,14: - 0: 65535 - 6,15: - 0: 3855 - 7,12: - 0: 65535 - 7,13: - 0: 65535 - 7,14: - 0: 32767 - 7,15: - 0: 1871 - 8,12: - 0: 65535 - 8,13: - 0: 61425 - 1: 4110 - 8,14: - 0: 36861 - 9: 2 - 8,15: - 0: 34959 - 9,12: - 0: 65535 - 9,13: - 0: 49151 - 1: 16384 - 9,14: - 0: 65535 - 9,15: - 0: 43775 - 10,12: - 0: 65535 - 10,13: - 0: 62463 - 10,14: - 0: 1895 - 11,12: - 0: 16383 - 11,13: - 0: 12863 - -4,16: - 0: 65535 - -4,17: - 0: 65535 - -4,18: - 0: 36639 - -4,19: - 0: 34952 - -3,16: - 0: 65535 - -3,17: - 0: 65535 - -3,18: - 0: 61423 - -3,19: - 0: 65134 - 1: 128 - -2,16: - 0: 65535 - -2,17: - 0: 64443 - 1: 1092 - -2,18: - 1: 1 - 0: 65534 - -2,19: - 0: 65535 - -1,16: - 0: 65535 - -1,17: - 0: 65535 - -1,18: - 0: 65535 - -1,19: - 0: 65535 - -6,16: - 0: 19660 - -6,17: - 0: 12 - -5,16: - 0: 4095 - -5,17: - 0: 15 - 0,16: - 0: 65535 - 0,17: - 0: 65535 - 0,18: - 0: 65535 - 0,19: - 0: 65535 - 1,16: - 0: 65535 - 1,17: - 0: 65535 - 1,18: - 0: 65535 - 1,19: - 0: 65527 - 1: 8 - 2,16: - 1: 2055 - 0: 63480 - 2,17: - 0: 65535 - 2,18: - 0: 48959 - 2,19: - 0: 64443 - 3,16: - 0: 32511 - 1: 256 - 3,17: - 0: 30591 - 3,18: - 0: 1863 - 4,16: - 0: 4095 - 4,17: - 0: 15 - 5,16: - 0: 4369 - 5,17: - 0: 1 - -3,20: - 0: 40925 - -3,21: - 0: 3592 - -2,20: - 0: 65535 - -2,21: - 0: 60303 - -1,20: - 0: 65535 - -1,21: - 0: 61695 - 0,20: - 0: 65535 - 0,21: - 0: 63743 - 1,20: - 0: 65535 - 1,21: - 0: 15887 - 2,20: - 0: 18261 - -9,-5: - 0: 65535 - -8,-5: - 0: 65535 - -8,-6: - 0: 65535 - -7,-6: - 0: 65535 - -7,-5: - 0: 65535 - -7,-8: - 0: 64698 - -7,-7: - 0: 64767 - 1: 768 - -6,-8: - 0: 65535 - -6,-7: - 0: 65535 - -6,-6: - 0: 65535 - -6,-5: - 0: 65535 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 - 4,-8: - 0: 65311 - 1: 224 - 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-8: - 0: 65535 - 5,-7: - 0: 65535 - 5,-6: - 0: 63487 - 1: 2048 - 5,-5: - 0: 65535 - 6,-6: - 0: 65503 - 1: 32 - 6,-5: - 0: 8191 - 1: 57344 - 7,-6: - 0: 61439 - 1: 4096 - 7,-5: - 0: 61439 - 1: 4096 - 8,-5: - 0: 65535 - 4,-11: - 0: 63474 - 4,-10: - 0: 65535 - 4,-9: - 0: 65535 - 5,-10: - 0: 48063 - 5,-9: - 0: 64443 - 0,-12: - 5: 13073 - 0: 52462 - 0,-11: - 5: 4355 - 0: 61180 - 0,-10: - 5: 1 - 0: 65534 - 0,-9: - 5: 273 - 0: 65262 - 1,-12: - 0: 65535 - 1,-11: - 0: 65535 - 1,-10: - 0: 53247 - 1: 12288 - 1,-9: - 0: 65535 - 2,-12: - 0: 65535 - 2,-11: - 0: 32767 - 1: 32768 - 2,-10: - 0: 53239 - 1: 12296 - 2,-9: - 0: 65535 - 3,-12: - 0: 63359 - 3,-11: - 0: 65535 - 3,-10: - 0: 65533 - 1: 2 - 3,-9: - 0: 65535 - -4,-12: - 0: 65535 - -4,-11: - 0: 56831 - 1: 8704 - -4,-10: - 0: 65533 - 1: 2 - -4,-9: - 1: 17 - 0: 65518 - -3,-12: - 0: 65535 - -3,-11: - 0: 65535 - -3,-10: - 0: 65535 - -3,-9: - 0: 65535 - -2,-12: - 0: 65535 - -2,-11: - 0: 65535 - -2,-10: - 0: 65535 - -2,-9: - 0: 65535 - -1,-12: - 0: 4403 - 5: 61132 - -1,-11: - 0: 13169 - 5: 52366 - -1,-10: - 0: 65523 - 5: 12 - -1,-9: - 0: 62259 - 5: 3276 - -6,-10: - 0: 61167 - -6,-9: - 0: 65262 - -5,-10: - 0: 65535 - -5,-9: - 0: 65503 - 1: 32 - -5,-11: - 0: 65530 - -5,-12: - 0: 41518 - -4,-13: - 0: 52352 - -3,-14: - 0: 65518 - -3,-13: - 0: 65535 - -3,-15: - 0: 60620 - -3,-16: - 0: 51336 - -2,-16: - 0: 30583 - -2,-15: - 0: 65535 - -2,-14: - 0: 65535 - -2,-13: - 0: 65535 - -1,-13: - 0: 16320 - 5: 49152 - 0,-13: - 5: 4096 - 0: 61336 - 0,-15: - 0: 34952 - 0,-14: - 0: 34952 - 1,-16: - 0: 65535 - 1,-15: - 0: 65535 - 1,-14: - 0: 65535 - 1,-13: - 0: 65535 - 2,-15: - 0: 12561 - 2,-14: - 0: 30515 - 2,-13: - 0: 65527 - -3,-18: - 0: 34944 - -3,-17: - 0: 34952 - -2,-18: - 0: 13105 - -2,-17: - 0: 29491 - 1,-18: - 0: 61156 - 1,-17: - 0: 65262 - 12,12: - 0: 4383 - 12,13: - 0: 1 - 13,12: - 0: 1 - 2,-16: - 0: 4096 - 3,-13: - 0: 4352 - -10,-5: - 0: 65535 - -10,-6: - 0: 61166 - -9,-6: - 0: 65023 - 1: 512 - -9,-7: - 0: 65521 - -8,-7: - 0: 63487 - 1: 2048 - 8,-6: - 0: 65535 - 9,-6: - 0: 13107 - 9,-5: - 0: 30583 - 9,-1: - 0: 65527 - 9,0: - 0: 65535 - 9,1: - 0: 65535 - -14,11: - 0: 3140 - -12,14: - 0: 14 - 2,21: - 0: 768 - -10,-7: - 0: 8928 - -9,-8: - 0: 61440 - -8,-8: - 0: 61937 - 6,-8: - 0: 61922 - 6,-7: - 0: 65535 - 7,-8: - 0: 62002 - 7,-7: - 0: 65527 - 8,-8: - 0: 28672 - 8,-7: - 0: 30708 - 9,-7: - 0: 8752 - 4,-12: - 0: 8739 - 5,-11: - 0: 8752 - 6,-9: - 0: 61440 - 7,-9: - 0: 12288 - -8,-9: - 0: 61440 - -7,-9: - 0: 63624 - -7,-10: - 0: 34952 - -6,-11: - 0: 41696 - 13,-4: - 0: 17 - 5: 256 - -11,15: - 0: 34952 - -8,17: - 0: 3967 - -8,18: - 0: 3967 - -8,19: - 0: 3967 - -7,16: - 0: 4352 - -7,17: - 0: 4369 - -7,18: - 0: 4369 - -7,19: - 0: 4369 - 6,16: - 0: 17408 - 6,17: - 0: 19532 - 6,18: - 0: 19532 - 6,19: - 0: 19532 - 7,17: - 0: 4095 - 7,18: - 0: 4095 - 7,19: - 0: 4095 - 10,-5: - 0: 65535 - 11,-6: - 0: 64799 - 11,-5: - 0: 65535 - 8,17: - 0: 36863 - 8,18: - 0: 36863 - 8,19: - 0: 36863 - 8,16: - 0: 34952 - 9,16: - 0: 44970 - 9,17: - 0: 43770 - 9,18: - 0: 43770 - 9,19: - 0: 64250 - 10,17: - 0: 4095 - 10,18: - 0: 4095 - 10,19: - 0: 4095 - 11,17: - 0: 3967 - 11,18: - 0: 3967 - 11,19: - 0: 3967 - 8,20: - 0: 143 - 9,20: - 0: 248 - 10,20: - 0: 15 - 11,20: - 0: 15 - 6,20: - 0: 12 - 7,20: - 0: 15 - 12,20: - 0: 1 - 12,16: - 0: 4352 - 12,17: - 0: 4369 - 12,18: - 0: 4369 - 12,19: - 0: 4369 - -12,17: - 0: 4095 - -12,18: - 0: 4095 - -12,19: - 0: 4095 - -11,17: - 0: 36863 - -11,18: - 0: 36863 - -11,19: - 0: 36863 - -11,16: - 0: 34952 - -10,17: - 0: 43770 - -10,18: - 0: 43770 - -10,19: - 0: 64250 - -10,16: - 0: 43690 - -9,17: - 0: 4095 - -9,18: - 0: 4095 - -9,19: - 0: 4095 - -13,16: - 0: 17408 - -13,17: - 0: 19532 - -13,18: - 0: 19532 - -13,19: - 0: 19532 - -13,20: - 0: 12 - -12,20: - 0: 15 - -11,20: - 0: 143 - -10,20: - 0: 248 - -9,20: - 0: 15 - -8,20: - 0: 15 - -7,20: - 0: 1 - 12,-6: - 0: 62799 - 12,-5: - 0: 65535 - 13,-5: - 0: 4369 - 10,-6: - 0: 32782 - 13,-6: - 0: 1 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 14.840918 - - 55.830124 - - 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: 235 - moles: - - 20.078888 - - 75.53487 - - 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 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 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: - - 18.472576 - - 69.49208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance - - id: Aspid - type: BecomesStation - - joints: - docking21482: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21482 - localAnchorB: -5,-1.5 - localAnchorA: 38,1.5 - damping: 791.72076 - stiffness: 7106.469 - docking21483: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21483 - localAnchorB: -5,0.5 - localAnchorA: 38,3.5 - damping: 791.72076 - stiffness: 7106.469 - type: Joint -- uid: 2 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 3.141592653589793 rad - pos: 48.5,18.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 44.5,18.5 - parent: 1 - type: Transform -- uid: 4 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 49.5,18.5 - parent: 1 - type: Transform -- uid: 5 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 1 - type: Transform -- uid: 6 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 37.5,7.5 - parent: 1 - type: Transform -- uid: 7 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 50.5,18.5 - parent: 1 - type: Transform -- uid: 8 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 44.5,17.5 - parent: 1 - type: Transform -- uid: 9 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 45.5,18.5 - parent: 1 - type: Transform -- uid: 10 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 47.5,18.5 - parent: 1 - type: Transform -- uid: 11 - type: ReinforcedWindow - components: - - pos: 50.5,-10.5 - parent: 1 - type: Transform -- uid: 12 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 44.5,33.5 - parent: 1 - type: Transform -- uid: 13 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 50.5,17.5 - parent: 1 - type: Transform -- uid: 14 - type: WallReinforced - components: - - pos: 44.5,16.5 - parent: 1 - type: Transform -- uid: 15 - type: WallReinforced - components: - - pos: 43.5,16.5 - parent: 1 - type: Transform -- uid: 16 - type: Grille - components: - - pos: 42.5,16.5 - parent: 1 - type: Transform -- uid: 17 - type: Grille - components: - - pos: 41.5,16.5 - parent: 1 - type: Transform -- uid: 18 - type: Grille - components: - - pos: 40.5,16.5 - parent: 1 - type: Transform -- uid: 19 - type: Grille - components: - - pos: 39.5,16.5 - parent: 1 - type: Transform -- uid: 20 - type: Grille - components: - - pos: 34.5,16.5 - parent: 1 - type: Transform -- uid: 21 - type: Grille - components: - - pos: 35.5,16.5 - parent: 1 - type: Transform -- uid: 22 - type: Grille - components: - - pos: 36.5,16.5 - parent: 1 - type: Transform -- uid: 23 - type: Grille - components: - - pos: 37.5,16.5 - parent: 1 - type: Transform -- uid: 24 - type: WallReinforced - components: - - pos: 38.5,16.5 - parent: 1 - type: Transform -- uid: 25 - type: WallReinforced - components: - - pos: 33.5,16.5 - parent: 1 - type: Transform -- uid: 26 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 3.141592653589793 rad - pos: 46.5,18.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 27 - type: WallReinforced - components: - - pos: 33.5,21.5 - parent: 1 - type: Transform -- uid: 28 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,20.5 - parent: 1 - type: Transform -- uid: 29 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 33.5,33.5 - parent: 1 - type: Transform -- uid: 30 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 33.5,23.5 - parent: 1 - type: Transform -- uid: 31 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 33.5,24.5 - parent: 1 - type: Transform -- uid: 32 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 33.5,28.5 - parent: 1 - type: Transform -- uid: 33 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 33.5,27.5 - parent: 1 - type: Transform -- uid: 34 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 33.5,24.5 - parent: 1 - type: Transform -- uid: 35 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 33.5,23.5 - parent: 1 - type: Transform -- uid: 36 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 33.5,33.5 - parent: 1 - type: Transform -- uid: 37 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 33.5,32.5 - parent: 1 - type: Transform -- uid: 38 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 33.5,22.5 - parent: 1 - type: Transform -- uid: 39 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 33.5,34.5 - parent: 1 - type: Transform -- uid: 40 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,31.5 - parent: 1 - type: Transform -- uid: 41 - type: Grille - components: - - pos: 33.5,19.5 - parent: 1 - type: Transform -- uid: 42 - type: Grille - components: - - pos: 33.5,18.5 - parent: 1 - type: Transform -- uid: 43 - type: Grille - components: - - pos: 33.5,17.5 - parent: 1 - type: Transform -- uid: 44 - type: WallReinforced - components: - - pos: 33.5,12.5 - parent: 1 - type: Transform -- uid: 45 - type: WallReinforced - components: - - pos: 38.5,12.5 - parent: 1 - type: Transform -- uid: 46 - type: WallReinforced - components: - - pos: 43.5,12.5 - parent: 1 - type: Transform -- uid: 47 - type: WallReinforced - components: - - pos: 44.5,12.5 - parent: 1 - type: Transform -- uid: 48 - type: ReinforcedWindow - components: - - pos: 51.5,-13.5 - parent: 1 - type: Transform -- uid: 49 - type: WallReinforced - components: - - pos: 50.5,12.5 - parent: 1 - type: Transform -- uid: 50 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - pos: 46.5,33.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 51 - type: WallReinforced - components: - - pos: 50.5,16.5 - parent: 1 - type: Transform -- uid: 52 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - pos: 48.5,33.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 53 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 45.5,16.5 - parent: 1 - type: Transform -- uid: 54 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 49.5,16.5 - parent: 1 - type: Transform -- uid: 55 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 47.5,16.5 - parent: 1 - type: Transform -- uid: 56 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 47.5,17.5 - parent: 1 - type: Transform -- uid: 57 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 45.5,18.5 - parent: 1 - type: Transform -- uid: 58 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 44.5,17.5 - parent: 1 - type: Transform -- uid: 59 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 45.5,16.5 - parent: 1 - type: Transform -- uid: 60 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 49.5,18.5 - parent: 1 - type: Transform -- uid: 61 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 50.5,17.5 - parent: 1 - type: Transform -- uid: 62 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 49.5,16.5 - parent: 1 - type: Transform -- uid: 63 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 44.5,35.5 - parent: 1 - type: Transform -- uid: 64 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 52.5,14.5 - parent: 1 - type: Transform -- uid: 65 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 50.5,14.5 - parent: 1 - type: Transform -- uid: 66 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 51.5,14.5 - parent: 1 - type: Transform -- uid: 67 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 52.5,16.5 - parent: 1 - type: Transform -- uid: 68 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 52.5,12.5 - parent: 1 - type: Transform -- uid: 69 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 51.5,16.5 - parent: 1 - type: Transform -- uid: 70 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 51.5,12.5 - parent: 1 - type: Transform -- uid: 71 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 43.5,35.5 - parent: 1 - type: Transform -- uid: 72 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 50.5,33.5 - parent: 1 - type: Transform -- uid: 73 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 50.5,35.5 - parent: 1 - type: Transform -- uid: 74 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 47.5,35.5 - parent: 1 - type: Transform -- uid: 75 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 47.5,34.5 - parent: 1 - type: Transform -- uid: 76 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 47.5,33.5 - parent: 1 - type: Transform -- uid: 77 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 51.5,39.5 - parent: 1 - type: Transform -- uid: 78 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 45.5,33.5 - parent: 1 - type: Transform -- uid: 79 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 44.5,34.5 - parent: 1 - type: Transform -- uid: 80 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 51.5,35.5 - parent: 1 - type: Transform -- uid: 81 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 50.5,34.5 - parent: 1 - type: Transform -- uid: 82 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 49.5,33.5 - parent: 1 - type: Transform -- uid: 83 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 52.5,39.5 - parent: 1 - type: Transform -- uid: 84 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 52.5,35.5 - parent: 1 - type: Transform -- uid: 85 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 52.5,37.5 - parent: 1 - type: Transform -- uid: 86 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 51.5,37.5 - parent: 1 - type: Transform -- uid: 87 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 52.5,15.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 88 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 50.5,37.5 - parent: 1 - type: Transform -- uid: 89 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 52.5,13.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 90 - type: ReinforcedWindow - components: - - pos: 50.5,-9.5 - parent: 1 - type: Transform -- uid: 91 - type: WallReinforced - components: - - pos: 47.5,11.5 - parent: 1 - type: Transform -- uid: 92 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 48.5,11.5 - parent: 1 - type: Transform -- uid: 93 - type: WallReinforced - components: - - pos: 51.5,-15.5 - parent: 1 - type: Transform -- uid: 94 - type: WallReinforced - components: - - pos: 52.5,-6.5 - parent: 1 - type: Transform -- uid: 95 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 34.5,0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 96 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 48.5,11.5 - parent: 1 - type: Transform -- uid: 97 - type: ReinforcedWindow - components: - - pos: 44.5,-12.5 - parent: 1 - type: Transform -- uid: 98 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 46.5,11.5 - parent: 1 - type: Transform -- uid: 99 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 44.5,11.5 - parent: 1 - type: Transform -- uid: 100 - type: ReinforcedWindow - components: - - pos: 45.5,-15.5 - parent: 1 - type: Transform -- uid: 101 - type: CableApcExtension - components: - - pos: 51.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 102 - type: Grille - components: - - pos: 50.5,-9.5 - parent: 1 - type: Transform -- uid: 103 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 49.5,11.5 - parent: 1 - type: Transform -- uid: 104 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 45.5,11.5 - parent: 1 - type: Transform -- uid: 105 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 45.5,11.5 - parent: 1 - type: Transform -- uid: 106 - type: Grille - components: - - pos: 41.5,-10.5 - parent: 1 - type: Transform -- uid: 107 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,11.5 - parent: 1 - type: Transform -- uid: 108 - type: WallReinforced - components: - - pos: -51.5,-10.5 - parent: 1 - type: Transform -- uid: 109 - type: BlastDoorOpen - components: - - pos: -44.5,5.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9363 - type: SignalReceiver -- uid: 110 - type: BlastDoorOpen - components: - - pos: -44.5,1.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9363 - type: SignalReceiver -- uid: 111 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -44.5,2.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 112 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -44.5,4.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 113 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -44.5,3.5 - parent: 1 - type: Transform -- uid: 114 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -44.5,6.5 - parent: 1 - type: Transform -- uid: 115 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -44.5,0.5 - parent: 1 - type: Transform -- uid: 116 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,7.5 - parent: 1 - type: Transform -- uid: 117 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,8.5 - parent: 1 - type: Transform -- uid: 118 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,9.5 - parent: 1 - type: Transform -- uid: 119 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -44.5,10.5 - parent: 1 - type: Transform -- uid: 120 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -44.5,11.5 - parent: 1 - type: Transform -- uid: 121 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -45.5,11.5 - parent: 1 - type: Transform -- uid: 122 - type: WallReinforced - components: - - pos: -41.5,7.5 - parent: 1 - type: Transform -- uid: 123 - type: WallReinforced - components: - - pos: -41.5,8.5 - parent: 1 - type: Transform -- uid: 124 - type: WallReinforced - components: - - pos: -41.5,10.5 - parent: 1 - type: Transform -- uid: 125 - type: WallReinforced - components: - - pos: -41.5,11.5 - parent: 1 - type: Transform -- uid: 126 - type: WallSolid - components: - - pos: -40.5,12.5 - parent: 1 - type: Transform -- uid: 127 - type: AirlockGlass - components: - - pos: 20.5,13.5 - parent: 1 - type: Transform -- uid: 128 - type: WallSolid - components: - - pos: -38.5,12.5 - parent: 1 - type: Transform -- uid: 129 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-0.5 - parent: 1 - type: Transform -- uid: 130 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-1.5 - parent: 1 - type: Transform -- uid: 131 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-2.5 - parent: 1 - type: Transform -- uid: 132 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-3.5 - parent: 1 - type: Transform -- uid: 133 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-4.5 - parent: 1 - type: Transform -- uid: 134 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-5.5 - parent: 1 - type: Transform -- uid: 135 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-5.5 - parent: 1 - type: Transform -- uid: 136 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-6.5 - parent: 1 - type: Transform -- uid: 137 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-8.5 - parent: 1 - type: Transform -- uid: 138 - type: WallSolid - components: - - pos: -28.5,-13.5 - parent: 1 - type: Transform -- uid: 139 - type: WallReinforced - components: - - pos: -37.5,-18.5 - parent: 1 - type: Transform -- uid: 140 - type: WallReinforced - components: - - pos: -38.5,-18.5 - parent: 1 - type: Transform -- uid: 141 - type: WallReinforced - components: - - pos: -39.5,-18.5 - parent: 1 - type: Transform -- uid: 142 - type: WallSolid - components: - - pos: -37.5,-7.5 - parent: 1 - type: Transform -- uid: 143 - type: WallSolid - components: - - pos: -33.5,16.5 - parent: 1 - type: Transform -- uid: 144 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -44.5,16.5 - parent: 1 - type: Transform -- uid: 145 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -45.5,16.5 - parent: 1 - type: Transform -- uid: 146 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -45.5,17.5 - parent: 1 - type: Transform -- uid: 147 - type: Grille - components: - - pos: -48.5,19.5 - parent: 1 - type: Transform -- uid: 148 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-10.5 - parent: 1 - type: Transform -- uid: 149 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-6.5 - parent: 1 - type: Transform -- uid: 150 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-6.5 - parent: 1 - type: Transform -- uid: 151 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-5.5 - parent: 1 - type: Transform -- uid: 152 - type: Grille - components: - - pos: -42.5,6.5 - parent: 1 - type: Transform -- uid: 153 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -46.5,11.5 - parent: 1 - type: Transform -- uid: 154 - type: WallReinforced - components: - - pos: -41.5,6.5 - parent: 1 - type: Transform -- uid: 155 - type: Grille - components: - - pos: -43.5,6.5 - parent: 1 - type: Transform -- uid: 156 - type: Grille - components: - - pos: -43.5,0.5 - parent: 1 - type: Transform -- uid: 157 - type: Grille - components: - - pos: -42.5,0.5 - parent: 1 - type: Transform -- uid: 158 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-5.5 - parent: 1 - type: Transform -- uid: 159 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-5.5 - parent: 1 - type: Transform -- uid: 160 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-5.5 - parent: 1 - type: Transform -- uid: 161 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-5.5 - parent: 1 - type: Transform -- uid: 162 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-5.5 - parent: 1 - type: Transform -- uid: 163 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -47.5,11.5 - parent: 1 - type: Transform -- uid: 164 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -48.5,11.5 - parent: 1 - type: Transform -- uid: 165 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -49.5,11.5 - parent: 1 - type: Transform -- uid: 166 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -50.5,11.5 - parent: 1 - type: Transform -- uid: 167 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -51.5,11.5 - parent: 1 - type: Transform -- uid: 168 - type: CableApcExtension - components: - - pos: 48.5,-12.5 - parent: 1 - type: Transform -- uid: 169 - type: Grille - components: - - pos: 44.5,-11.5 - parent: 1 - type: Transform -- uid: 170 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-1.5 - parent: 1 - type: Transform -- uid: 171 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 37.5,0.5 - parent: 1 - type: Transform -- uid: 172 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-1.5 - parent: 1 - type: Transform -- uid: 173 - type: Grille - components: - - pos: 45.5,-15.5 - parent: 1 - type: Transform -- uid: 174 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 36.5,4.5 - parent: 1 - type: Transform -- uid: 175 - type: CableHV - components: - - pos: -44.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 176 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 34.5,8.5 - parent: 1 - type: Transform -- uid: 177 - type: CableHV - components: - - pos: -43.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 178 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 1 - type: Transform -- uid: 179 - type: CableHV - components: - - pos: -45.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 180 - type: WallReinforced - components: - - pos: 33.5,8.5 - parent: 1 - type: Transform -- uid: 181 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 33.5,9.5 - parent: 1 - type: Transform -- uid: 182 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 33.5,10.5 - parent: 1 - type: Transform -- uid: 183 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 33.5,11.5 - parent: 1 - type: Transform -- uid: 184 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 34.5,12.5 - parent: 1 - type: Transform -- uid: 185 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 35.5,12.5 - parent: 1 - type: Transform -- uid: 186 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 36.5,12.5 - parent: 1 - type: Transform -- uid: 187 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 37.5,12.5 - parent: 1 - type: Transform -- uid: 188 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 39.5,12.5 - parent: 1 - type: Transform -- uid: 189 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 40.5,12.5 - parent: 1 - type: Transform -- uid: 190 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 41.5,12.5 - parent: 1 - type: Transform -- uid: 191 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 42.5,12.5 - parent: 1 - type: Transform -- uid: 192 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 42.5,16.5 - parent: 1 - type: Transform -- uid: 193 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 41.5,16.5 - parent: 1 - type: Transform -- uid: 194 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 40.5,16.5 - parent: 1 - type: Transform -- uid: 195 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 39.5,16.5 - parent: 1 - type: Transform -- uid: 196 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 42.5,12.5 - parent: 1 - type: Transform -- uid: 197 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 41.5,12.5 - parent: 1 - type: Transform -- uid: 198 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 40.5,12.5 - parent: 1 - type: Transform -- uid: 199 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 39.5,12.5 - parent: 1 - type: Transform -- uid: 200 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 37.5,12.5 - parent: 1 - type: Transform -- uid: 201 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 36.5,12.5 - parent: 1 - type: Transform -- uid: 202 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 35.5,12.5 - parent: 1 - type: Transform -- uid: 203 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 34.5,12.5 - parent: 1 - type: Transform -- uid: 204 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 37.5,16.5 - parent: 1 - type: Transform -- uid: 205 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 36.5,16.5 - parent: 1 - type: Transform -- uid: 206 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 35.5,16.5 - parent: 1 - type: Transform -- uid: 207 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 34.5,16.5 - parent: 1 - type: Transform -- uid: 208 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 33.5,17.5 - parent: 1 - type: Transform -- uid: 209 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 33.5,18.5 - parent: 1 - type: Transform -- uid: 210 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 33.5,19.5 - parent: 1 - type: Transform -- uid: 211 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 33.5,29.5 - parent: 1 - type: Transform -- uid: 212 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,25.5 - parent: 1 - type: Transform -- uid: 213 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,26.5 - parent: 1 - type: Transform -- uid: 214 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,30.5 - parent: 1 - type: Transform -- uid: 215 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 33.5,22.5 - parent: 1 - type: Transform -- uid: 216 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 33.5,27.5 - parent: 1 - type: Transform -- uid: 217 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 33.5,28.5 - parent: 1 - type: Transform -- uid: 218 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 33.5,29.5 - parent: 1 - type: Transform -- uid: 219 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 33.5,32.5 - parent: 1 - type: Transform -- uid: 220 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 33.5,34.5 - parent: 1 - type: Transform -- uid: 221 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,35.5 - parent: 1 - type: Transform -- uid: 222 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 34.5,35.5 - parent: 1 - type: Transform -- uid: 223 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 35.5,35.5 - parent: 1 - type: Transform -- uid: 224 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 36.5,35.5 - parent: 1 - type: Transform -- uid: 225 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 37.5,35.5 - parent: 1 - type: Transform -- uid: 226 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 39.5,35.5 - parent: 1 - type: Transform -- uid: 227 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 40.5,35.5 - parent: 1 - type: Transform -- uid: 228 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 41.5,35.5 - parent: 1 - type: Transform -- uid: 229 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 42.5,35.5 - parent: 1 - type: Transform -- uid: 230 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -51.5,12.5 - parent: 1 - type: Transform -- uid: 231 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -53.5,12.5 - parent: 1 - type: Transform -- uid: 232 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 233 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 51.5,12.5 - parent: 1 - type: Transform -- uid: 234 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 51.5,16.5 - parent: 1 - type: Transform -- uid: 235 - type: WallReinforced - components: - - pos: 47.5,-15.5 - parent: 1 - type: Transform -- uid: 236 - type: ReinforcedWindow - components: - - pos: 51.5,-8.5 - parent: 1 - type: Transform -- uid: 237 - type: Grille - components: - - pos: -43.5,3.5 - parent: 1 - type: Transform -- uid: 238 - type: Grille - components: - - pos: -42.5,3.5 - parent: 1 - type: Transform -- uid: 239 - type: Grille - components: - - pos: -46.5,19.5 - parent: 1 - type: Transform -- uid: 240 - type: ReinforcedWindow - components: - - pos: -44.5,-2.5 - parent: 1 - type: Transform -- uid: 241 - type: ReinforcedWindow - components: - - pos: -44.5,-1.5 - parent: 1 - type: Transform -- uid: 242 - type: ReinforcedWindow - components: - - pos: -44.5,-0.5 - parent: 1 - type: Transform -- uid: 243 - type: ReinforcedWindow - components: - - pos: -44.5,7.5 - parent: 1 - type: Transform -- uid: 244 - type: ReinforcedWindow - components: - - pos: -44.5,8.5 - parent: 1 - type: Transform -- uid: 245 - type: ReinforcedWindow - components: - - pos: -44.5,9.5 - parent: 1 - type: Transform -- uid: 246 - type: WallReinforced - components: - - pos: -33.5,12.5 - parent: 1 - type: Transform -- uid: 247 - type: WallReinforced - components: - - pos: -33.5,-6.5 - parent: 1 - type: Transform -- uid: 248 - type: WallSolid - components: - - pos: -30.5,-15.5 - parent: 1 - type: Transform -- uid: 249 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -42.5,6.5 - parent: 1 - type: Transform -- uid: 250 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -43.5,6.5 - parent: 1 - type: Transform -- uid: 251 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -42.5,3.5 - parent: 1 - type: Transform -- uid: 252 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -43.5,3.5 - parent: 1 - type: Transform -- uid: 253 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -42.5,0.5 - parent: 1 - type: Transform -- uid: 254 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -43.5,0.5 - parent: 1 - type: Transform -- uid: 255 - type: WallReinforced - components: - - pos: -41.5,3.5 - parent: 1 - type: Transform -- uid: 256 - type: WallReinforced - components: - - pos: -41.5,0.5 - parent: 1 - type: Transform -- uid: 257 - type: ReinforcedWindow - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform -- uid: 258 - type: ComputerCriminalRecords - components: - - rot: 3.141592653589793 rad - pos: -34.5,-3.5 - parent: 1 - type: Transform -- uid: 259 - type: ReinforcedWindow - components: - - pos: -37.5,-0.5 - parent: 1 - type: Transform -- uid: 260 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-5.5 - parent: 1 - type: Transform -- uid: 261 - type: WallSolid - components: - - pos: -33.5,9.5 - parent: 1 - type: Transform -- uid: 262 - type: WallSolid - components: - - pos: -33.5,8.5 - parent: 1 - type: Transform -- uid: 263 - type: WallSolid - components: - - pos: -36.5,8.5 - parent: 1 - type: Transform -- uid: 264 - type: WallSolid - components: - - pos: -33.5,2.5 - parent: 1 - type: Transform -- uid: 265 - type: WallSolid - components: - - pos: -34.5,8.5 - parent: 1 - type: Transform -- uid: 266 - type: TableReinforced - components: - - pos: -36.5,7.5 - parent: 1 - type: Transform -- uid: 267 - type: WallSolid - components: - - pos: -37.5,11.5 - parent: 1 - type: Transform -- uid: 268 - type: WallSolid - components: - - pos: -37.5,8.5 - parent: 1 - type: Transform -- uid: 269 - type: WallSolid - components: - - pos: -33.5,1.5 - parent: 1 - type: Transform -- uid: 270 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -33.5,0.5 - parent: 1 - type: Transform -- uid: 271 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -33.5,-2.5 - parent: 1 - type: Transform -- uid: 272 - type: IntercomSecurity - components: - - pos: -33.5,-0.5 - parent: 1 - type: Transform -- uid: 273 - type: WallSolid - components: - - pos: -33.5,11.5 - parent: 1 - type: Transform -- uid: 274 - type: Grille - components: - - pos: -33.5,10.5 - parent: 1 - type: Transform -- uid: 275 - type: WallSolid - components: - - pos: -43.5,-3.5 - parent: 1 - type: Transform -- uid: 276 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -33.5,-3.5 - parent: 1 - type: Transform -- uid: 277 - type: WallSolid - components: - - pos: -39.5,-3.5 - parent: 1 - type: Transform -- uid: 278 - type: WallReinforced - components: - - pos: -39.5,-15.5 - parent: 1 - type: Transform -- uid: 279 - type: WallSolid - components: - - pos: -42.5,-3.5 - parent: 1 - type: Transform -- uid: 280 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-6.5 - parent: 1 - type: Transform -- uid: 281 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-3.5 - parent: 1 - type: Transform -- uid: 282 - type: WallReinforced - components: - - pos: -44.5,12.5 - parent: 1 - type: Transform -- uid: 283 - type: WallReinforced - components: - - pos: -43.5,12.5 - parent: 1 - type: Transform -- uid: 284 - type: WallReinforced - components: - - pos: -41.5,12.5 - parent: 1 - type: Transform -- uid: 285 - type: WallReinforced - components: - - pos: -42.5,12.5 - parent: 1 - type: Transform -- uid: 286 - type: BlastDoorOpen - components: - - pos: -41.5,1.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9363 - type: SignalReceiver -- uid: 287 - type: BlastDoorOpen - components: - - pos: -41.5,5.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9363 - type: SignalReceiver -- uid: 288 - type: Grille - components: - - pos: -48.5,32.5 - parent: 1 - type: Transform -- uid: 289 - type: WallReinforced - components: - - pos: 35.5,57.5 - parent: 1 - type: Transform -- uid: 290 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -4.5,84.5 - parent: 1 - type: Transform -- uid: 291 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -4.5,83.5 - parent: 1 - type: Transform -- uid: 292 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -7.5,83.5 - parent: 1 - type: Transform -- uid: 293 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -7.5,81.5 - parent: 1 - type: Transform -- uid: 294 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -8.5,81.5 - parent: 1 - type: Transform -- uid: 295 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -8.5,78.5 - parent: 1 - type: Transform -- uid: 296 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -9.5,78.5 - parent: 1 - type: Transform -- uid: 297 - type: Grille - components: - - pos: 8.5,73.5 - parent: 1 - type: Transform -- uid: 298 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 7.5,78.5 - parent: 1 - type: Transform -- uid: 299 - type: Grille - components: - - pos: 8.5,72.5 - parent: 1 - type: Transform -- uid: 300 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 6.5,81.5 - parent: 1 - type: Transform -- uid: 301 - type: Grille - components: - - pos: 5.5,83.5 - parent: 1 - type: Transform -- uid: 302 - type: WallReinforced - components: - - pos: 3.5,83.5 - parent: 1 - type: Transform -- uid: 303 - type: WallReinforced - components: - - pos: 6.5,83.5 - parent: 1 - type: Transform -- uid: 304 - type: WallReinforced - components: - - pos: 7.5,81.5 - parent: 1 - type: Transform -- uid: 305 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -0.5,84.5 - parent: 1 - type: Transform -- uid: 306 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -3.5,84.5 - parent: 1 - type: Transform -- uid: 307 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -2.5,84.5 - parent: 1 - type: Transform -- uid: 308 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 0.5,84.5 - parent: 1 - type: Transform -- uid: 309 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 1.5,84.5 - parent: 1 - type: Transform -- uid: 310 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -6.5,83.5 - parent: 1 - type: Transform -- uid: 311 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -5.5,83.5 - parent: 1 - type: Transform -- uid: 312 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -7.5,82.5 - parent: 1 - type: Transform -- uid: 313 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -8.5,80.5 - parent: 1 - type: Transform -- uid: 314 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -8.5,79.5 - parent: 1 - type: Transform -- uid: 315 - type: WallReinforced - components: - - pos: 3.5,84.5 - parent: 1 - type: Transform -- uid: 316 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 4.5,83.5 - parent: 1 - type: Transform -- uid: 317 - type: ReinforcedWindow - components: - - pos: 5.5,69.5 - parent: 1 - type: Transform -- uid: 318 - type: ReinforcedWindow - components: - - pos: 6.5,69.5 - parent: 1 - type: Transform -- uid: 319 - type: ReinforcedWindow - components: - - pos: 8.5,72.5 - parent: 1 - type: Transform -- uid: 320 - type: ComputerCargoShuttle - components: - - pos: 0.5,83.5 - parent: 1 - type: Transform -- uid: 321 - type: TableReinforced - components: - - pos: -0.5,83.5 - parent: 1 - type: Transform -- uid: 322 - type: TableReinforced - components: - - pos: -0.5,82.5 - parent: 1 - type: Transform -- uid: 323 - type: ComputerCargoOrders - components: - - pos: 1.5,83.5 - parent: 1 - type: Transform -- uid: 324 - type: ComputerStationRecords - components: - - pos: -2.5,83.5 - parent: 1 - type: Transform -- uid: 325 - type: ComputerResearchAndDevelopment - components: - - pos: -1.5,83.5 - parent: 1 - type: Transform -- uid: 326 - type: TableReinforced - components: - - pos: -3.5,83.5 - parent: 1 - type: Transform -- uid: 327 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 1.5,76.5 - parent: 1 - type: Transform -- uid: 328 - type: WallReinforced - components: - - pos: -7.5,75.5 - parent: 1 - type: Transform -- uid: 329 - type: WallReinforced - components: - - pos: -6.5,75.5 - parent: 1 - type: Transform -- uid: 330 - type: WallReinforced - components: - - pos: -8.5,75.5 - parent: 1 - type: Transform -- uid: 331 - type: WallReinforced - components: - - pos: -9.5,75.5 - parent: 1 - type: Transform -- uid: 332 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -9.5,77.5 - parent: 1 - type: Transform -- uid: 333 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -9.5,76.5 - parent: 1 - type: Transform -- uid: 334 - type: ReinforcedWindow - components: - - pos: 8.5,73.5 - parent: 1 - type: Transform -- uid: 335 - type: ReinforcedWindow - components: - - pos: 8.5,74.5 - parent: 1 - type: Transform -- uid: 336 - type: TableReinforced - components: - - pos: -0.5,80.5 - parent: 1 - type: Transform -- uid: 337 - type: TableReinforced - components: - - pos: -4.5,79.5 - parent: 1 - type: Transform -- uid: 338 - type: TableReinforced - components: - - pos: -4.5,80.5 - parent: 1 - type: Transform -- uid: 339 - type: ComputerCriminalRecords - components: - - pos: 1.5,80.5 - parent: 1 - type: Transform -- uid: 340 - type: WallReinforced - components: - - pos: 7.5,75.5 - parent: 1 - type: Transform -- uid: 341 - type: WallReinforced - components: - - pos: 6.5,75.5 - parent: 1 - type: Transform -- uid: 342 - type: WallReinforced - components: - - pos: 1.5,75.5 - parent: 1 - type: Transform -- uid: 343 - type: WallReinforced - components: - - pos: 4.5,75.5 - parent: 1 - type: Transform -- uid: 344 - type: WallReinforced - components: - - pos: 1.5,72.5 - parent: 1 - type: Transform -- uid: 345 - type: WallReinforced - components: - - pos: -2.5,75.5 - parent: 1 - type: Transform -- uid: 346 - type: Grille - components: - - pos: -9.5,74.5 - parent: 1 - type: Transform -- uid: 347 - type: Grille - components: - - pos: -9.5,73.5 - parent: 1 - type: Transform -- uid: 348 - type: Grille - components: - - pos: -9.5,72.5 - parent: 1 - type: Transform -- uid: 349 - type: WallReinforced - components: - - pos: -9.5,71.5 - parent: 1 - type: Transform -- uid: 350 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -6.5,70.5 - parent: 1 - type: Transform -- uid: 351 - type: WallReinforced - components: - - pos: -7.5,71.5 - parent: 1 - type: Transform -- uid: 352 - type: WallReinforced - components: - - pos: -6.5,71.5 - parent: 1 - type: Transform -- uid: 353 - type: WallReinforced - components: - - pos: -4.5,75.5 - parent: 1 - type: Transform -- uid: 354 - type: WallReinforced - components: - - pos: -3.5,75.5 - parent: 1 - type: Transform -- uid: 355 - type: WallReinforced - components: - - pos: -4.5,74.5 - parent: 1 - type: Transform -- uid: 356 - type: WallReinforced - components: - - pos: -4.5,73.5 - parent: 1 - type: Transform -- uid: 357 - type: WallReinforced - components: - - pos: -2.5,74.5 - parent: 1 - type: Transform -- uid: 358 - type: WallReinforced - components: - - pos: -2.5,73.5 - parent: 1 - type: Transform -- uid: 359 - type: WallReinforced - components: - - pos: -0.5,75.5 - parent: 1 - type: Transform -- uid: 360 - type: WallReinforced - components: - - pos: -0.5,69.5 - parent: 1 - type: Transform -- uid: 361 - type: WallReinforced - components: - - pos: 1.5,69.5 - parent: 1 - type: Transform -- uid: 362 - type: Grille - components: - - pos: 1.5,74.5 - parent: 1 - type: Transform -- uid: 363 - type: ReinforcedWindow - components: - - pos: 2.5,75.5 - parent: 1 - type: Transform -- uid: 364 - type: ReinforcedWindow - components: - - pos: 3.5,75.5 - parent: 1 - type: Transform -- uid: 365 - type: Grille - components: - - pos: 3.5,75.5 - parent: 1 - type: Transform -- uid: 366 - type: Grille - components: - - pos: 2.5,75.5 - parent: 1 - type: Transform -- uid: 367 - type: Grille - components: - - pos: 1.5,73.5 - parent: 1 - type: Transform -- uid: 368 - type: WallReinforced - components: - - pos: -4.5,72.5 - parent: 1 - type: Transform -- uid: 369 - type: WallReinforced - components: - - pos: -4.5,71.5 - parent: 1 - type: Transform -- uid: 370 - type: WallReinforced - components: - - pos: -5.5,71.5 - parent: 1 - type: Transform -- uid: 371 - type: WallReinforced - components: - - pos: -2.5,72.5 - parent: 1 - type: Transform -- uid: 372 - type: WallReinforced - components: - - pos: -2.5,71.5 - parent: 1 - type: Transform -- uid: 373 - type: WallReinforced - components: - - pos: -2.5,70.5 - parent: 1 - type: Transform -- uid: 374 - type: Grille - components: - - pos: 1.5,71.5 - parent: 1 - type: Transform -- uid: 375 - type: Grille - components: - - pos: 5.5,69.5 - parent: 1 - type: Transform -- uid: 376 - type: Grille - components: - - pos: 6.5,69.5 - parent: 1 - type: Transform -- uid: 377 - type: WallReinforced - components: - - pos: 8.5,71.5 - parent: 1 - type: Transform -- uid: 378 - type: WallReinforced - components: - - pos: 4.5,69.5 - parent: 1 - type: Transform -- uid: 379 - type: WallReinforced - components: - - pos: 7.5,69.5 - parent: 1 - type: Transform -- uid: 380 - type: WallReinforced - components: - - pos: 13.5,71.5 - parent: 1 - type: Transform -- uid: 381 - type: WallReinforced - components: - - pos: 20.5,59.5 - parent: 1 - type: Transform -- uid: 382 - type: WallReinforced - components: - - pos: 19.5,60.5 - parent: 1 - type: Transform -- uid: 383 - type: WallReinforced - components: - - pos: 13.5,65.5 - parent: 1 - type: Transform -- uid: 384 - type: WallReinforced - components: - - pos: 19.5,65.5 - parent: 1 - type: Transform -- uid: 385 - type: WallReinforced - components: - - pos: 14.5,65.5 - parent: 1 - type: Transform -- uid: 386 - type: WallReinforced - components: - - pos: 13.5,66.5 - parent: 1 - type: Transform -- uid: 387 - type: WallReinforced - components: - - pos: 19.5,59.5 - parent: 1 - type: Transform -- uid: 388 - type: WallReinforced - components: - - pos: 8.5,69.5 - parent: 1 - type: Transform -- uid: 389 - type: WallReinforced - components: - - pos: 8.5,70.5 - parent: 1 - type: Transform -- uid: 390 - type: Grille - components: - - pos: 1.5,70.5 - parent: 1 - type: Transform -- uid: 391 - type: ReinforcedWindow - components: - - pos: 2.5,69.5 - parent: 1 - type: Transform -- uid: 392 - type: ReinforcedWindow - components: - - pos: 3.5,69.5 - parent: 1 - type: Transform -- uid: 393 - type: Grille - components: - - pos: 8.5,74.5 - parent: 1 - type: Transform -- uid: 394 - type: Grille - components: - - pos: 2.5,69.5 - parent: 1 - type: Transform -- uid: 395 - type: Grille - components: - - pos: 3.5,69.5 - parent: 1 - type: Transform -- uid: 396 - type: WallReinforced - components: - - pos: -2.5,69.5 - parent: 1 - type: Transform -- uid: 397 - type: WallSolid - components: - - pos: -3.5,69.5 - parent: 1 - type: Transform -- uid: 398 - type: WallReinforced - components: - - pos: 8.5,78.5 - parent: 1 - type: Transform -- uid: 399 - type: WallReinforced - components: - - pos: 8.5,75.5 - parent: 1 - type: Transform -- uid: 400 - type: Grille - components: - - pos: 2.5,84.5 - parent: 1 - type: Transform -- uid: 401 - type: Grille - components: - - pos: -1.5,84.5 - parent: 1 - type: Transform -- uid: 402 - type: Grille - components: - - pos: 6.5,82.5 - parent: 1 - type: Transform -- uid: 403 - type: Grille - components: - - pos: 7.5,80.5 - parent: 1 - type: Transform -- uid: 404 - type: Grille - components: - - pos: 7.5,79.5 - parent: 1 - type: Transform -- uid: 405 - type: Grille - components: - - pos: 8.5,77.5 - parent: 1 - type: Transform -- uid: 406 - type: Grille - components: - - pos: 8.5,76.5 - parent: 1 - type: Transform -- uid: 407 - type: ReinforcedWindow - components: - - pos: 8.5,76.5 - parent: 1 - type: Transform -- uid: 408 - type: ReinforcedWindow - components: - - pos: 8.5,77.5 - parent: 1 - type: Transform -- uid: 409 - type: ReinforcedWindow - components: - - pos: 7.5,79.5 - parent: 1 - type: Transform -- uid: 410 - type: ReinforcedWindow - components: - - pos: 7.5,80.5 - parent: 1 - type: Transform -- uid: 411 - type: ReinforcedWindow - components: - - pos: 6.5,82.5 - parent: 1 - type: Transform -- uid: 412 - type: ReinforcedWindow - components: - - pos: 4.5,83.5 - parent: 1 - type: Transform -- uid: 413 - type: ReinforcedWindow - components: - - pos: 2.5,84.5 - parent: 1 - type: Transform -- uid: 414 - type: ReinforcedWindow - components: - - pos: 1.5,84.5 - parent: 1 - type: Transform -- uid: 415 - type: ReinforcedWindow - components: - - pos: 0.5,84.5 - parent: 1 - type: Transform -- uid: 416 - type: ReinforcedWindow - components: - - pos: -1.5,84.5 - parent: 1 - type: Transform -- uid: 417 - type: ReinforcedWindow - components: - - pos: -2.5,84.5 - parent: 1 - type: Transform -- uid: 418 - type: ReinforcedWindow - components: - - pos: -3.5,84.5 - parent: 1 - type: Transform -- uid: 419 - type: ReinforcedWindow - components: - - pos: -5.5,83.5 - parent: 1 - type: Transform -- uid: 420 - type: ReinforcedWindow - components: - - pos: -6.5,83.5 - parent: 1 - type: Transform -- uid: 421 - type: ReinforcedWindow - components: - - pos: 5.5,83.5 - parent: 1 - type: Transform -- uid: 422 - type: WallReinforced - components: - - pos: 24.5,59.5 - parent: 1 - type: Transform -- uid: 423 - type: WallReinforced - components: - - pos: 25.5,59.5 - parent: 1 - type: Transform -- uid: 424 - type: WallReinforced - components: - - pos: 29.5,59.5 - parent: 1 - type: Transform -- uid: 425 - type: WallReinforced - components: - - pos: 29.5,57.5 - parent: 1 - type: Transform -- uid: 426 - type: WallReinforced - components: - - pos: 32.5,57.5 - parent: 1 - type: Transform -- uid: 427 - type: ComfyChair - components: - - pos: -50.5,16.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 428 - type: WallReinforced - components: - - pos: 35.5,55.5 - parent: 1 - type: Transform -- uid: 429 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 35.5,53.5 - parent: 1 - type: Transform -- uid: 430 - type: WallReinforced - components: - - pos: 40.5,52.5 - parent: 1 - type: Transform -- uid: 431 - type: WallReinforced - components: - - pos: 44.5,52.5 - parent: 1 - type: Transform -- uid: 432 - type: WallReinforced - components: - - pos: 44.5,49.5 - parent: 1 - type: Transform -- uid: 433 - type: WallReinforced - components: - - pos: 47.5,49.5 - parent: 1 - type: Transform -- uid: 434 - type: WallReinforced - components: - - pos: 47.5,45.5 - parent: 1 - type: Transform -- uid: 435 - type: WallReinforced - components: - - pos: 49.5,45.5 - parent: 1 - type: Transform -- uid: 436 - type: WallReinforced - components: - - pos: 50.5,39.5 - parent: 1 - type: Transform -- uid: 437 - type: WallReinforced - components: - - pos: 49.5,39.5 - parent: 1 - type: Transform -- uid: 438 - type: WallReinforced - components: - - pos: 49.5,40.5 - parent: 1 - type: Transform -- uid: 439 - type: WallSolid - components: - - pos: -37.5,12.5 - parent: 1 - type: Transform -- uid: 440 - type: WallSolid - components: - - pos: -37.5,9.5 - parent: 1 - type: Transform -- uid: 441 - type: WallSolid - components: - - pos: -34.5,3.5 - parent: 1 - type: Transform -- uid: 442 - type: WallSolid - components: - - pos: -36.5,12.5 - parent: 1 - type: Transform -- uid: 443 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-4.5 - parent: 1 - type: Transform -- uid: 444 - type: TableReinforced - components: - - pos: -35.5,12.5 - parent: 1 - type: Transform -- uid: 445 - type: WallSolid - components: - - pos: -34.5,12.5 - parent: 1 - type: Transform -- uid: 446 - type: WallSolid - components: - - pos: -36.5,3.5 - parent: 1 - type: Transform -- uid: 447 - type: WallSolid - components: - - pos: -33.5,3.5 - parent: 1 - type: Transform -- uid: 448 - type: TableReinforced - components: - - pos: -36.5,6.5 - parent: 1 - type: Transform -- uid: 449 - type: WallSolid - components: - - pos: -38.5,-3.5 - parent: 1 - type: Transform -- uid: 450 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 451 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -37.5,0.5 - parent: 1 - type: Transform -- uid: 452 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -36.5,0.5 - parent: 1 - type: Transform -- uid: 453 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -35.5,0.5 - parent: 1 - type: Transform -- uid: 454 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -34.5,0.5 - parent: 1 - type: Transform -- uid: 455 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-5.5 - parent: 1 - type: Transform -- uid: 456 - type: Grille - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform -- uid: 457 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-6.5 - parent: 1 - type: Transform -- uid: 458 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-6.5 - parent: 1 - type: Transform -- uid: 459 - type: PlasticFlapsAirtightClear - components: - - pos: -44.5,1.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 460 - type: PlasticFlapsAirtightClear - components: - - pos: -41.5,1.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 461 - type: PlasticFlapsAirtightClear - components: - - pos: -44.5,5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 462 - type: PlasticFlapsAirtightClear - components: - - pos: -41.5,5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 463 - type: PlasticFlapsAirtightClear - components: - - pos: -36.5,5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 464 - type: Window - components: - - pos: -36.5,4.5 - parent: 1 - type: Transform -- uid: 465 - type: Grille - components: - - pos: -36.5,4.5 - parent: 1 - type: Transform -- uid: 466 - type: PottedPlantRandom - components: - - pos: -49.5,35.5 - parent: 1 - type: Transform -- uid: 467 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -53.5,15.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 468 - type: Grille - components: - - pos: -1.5,12.5 - parent: 1 - type: Transform -- uid: 469 - type: Grille - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform -- uid: 470 - type: Grille - components: - - pos: 0.5,12.5 - parent: 1 - type: Transform -- uid: 471 - type: Grille - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform -- uid: 472 - type: Grille - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform -- uid: 473 - type: Grille - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform -- uid: 474 - type: Window - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform -- uid: 475 - type: Window - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform -- uid: 476 - type: Window - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform -- uid: 477 - type: Window - components: - - pos: -1.5,12.5 - parent: 1 - type: Transform -- uid: 478 - type: Window - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform -- uid: 479 - type: Window - components: - - pos: 0.5,12.5 - parent: 1 - type: Transform -- uid: 480 - type: TableReinforced - components: - - pos: 4.5,-2.5 - parent: 1 - type: Transform -- uid: 481 - type: TableReinforced - components: - - pos: 4.5,-1.5 - parent: 1 - type: Transform -- uid: 482 - type: TableReinforced - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform -- uid: 483 - type: Grille - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform -- uid: 484 - type: Grille - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform -- uid: 485 - type: Grille - components: - - pos: 3.5,12.5 - parent: 1 - type: Transform -- uid: 486 - type: Grille - components: - - pos: -4.5,12.5 - parent: 1 - type: Transform -- uid: 487 - type: Window - components: - - pos: -4.5,12.5 - parent: 1 - type: Transform -- uid: 488 - type: Window - components: - - pos: 3.5,12.5 - parent: 1 - type: Transform -- uid: 489 - type: Window - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform -- uid: 490 - type: Window - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform -- uid: 491 - type: TableReinforced - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform -- uid: 492 - type: TableReinforced - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform -- uid: 493 - type: TableReinforced - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform -- uid: 494 - type: WallSolid - components: - - pos: -12.5,5.5 - parent: 1 - type: Transform -- uid: 495 - type: WallSolid - components: - - pos: -9.5,12.5 - parent: 1 - type: Transform -- uid: 496 - type: WallSolid - components: - - pos: -12.5,7.5 - parent: 1 - type: Transform -- uid: 497 - type: WallSolid - components: - - pos: -12.5,6.5 - parent: 1 - type: Transform -- uid: 498 - type: WallSolid - components: - - pos: -12.5,8.5 - parent: 1 - type: Transform -- uid: 499 - type: WallSolid - components: - - pos: -12.5,9.5 - parent: 1 - type: Transform -- uid: 500 - type: WallSolid - components: - - pos: -10.5,9.5 - parent: 1 - type: Transform -- uid: 501 - type: WallSolid - components: - - pos: -11.5,9.5 - parent: 1 - type: Transform -- uid: 502 - type: WallSolid - components: - - pos: -5.5,-6.5 - parent: 1 - type: Transform -- uid: 503 - type: TableReinforced - components: - - pos: -11.5,7.5 - parent: 1 - type: Transform -- uid: 504 - type: WallSolid - components: - - pos: -5.5,12.5 - parent: 1 - type: Transform -- uid: 505 - type: TableReinforced - components: - - pos: -11.5,6.5 - parent: 1 - type: Transform -- uid: 506 - type: WallSolid - components: - - pos: -6.5,12.5 - parent: 1 - type: Transform -- uid: 507 - type: WallSolid - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform -- uid: 508 - type: WallSolid - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform -- uid: 509 - type: WallSolid - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform -- uid: 510 - type: WallSolid - components: - - pos: -10.5,5.5 - parent: 1 - type: Transform -- uid: 511 - type: WallWood - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform -- uid: 512 - type: TableReinforced - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform -- uid: 513 - type: TableReinforced - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform -- uid: 514 - type: TableReinforced - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform -- uid: 515 - type: WallSolid - components: - - pos: -5.5,9.5 - parent: 1 - type: Transform -- uid: 516 - type: WallSolid - components: - - pos: -5.5,11.5 - parent: 1 - type: Transform -- uid: 517 - type: WallSolid - components: - - pos: -6.5,9.5 - parent: 1 - type: Transform -- uid: 518 - type: WallSolid - components: - - pos: -5.5,10.5 - parent: 1 - type: Transform -- uid: 519 - type: WallSolid - components: - - pos: -8.5,12.5 - parent: 1 - type: Transform -- uid: 520 - type: WallSolid - components: - - pos: -7.5,12.5 - parent: 1 - type: Transform -- uid: 521 - type: WallSolid - components: - - pos: -11.5,10.5 - parent: 1 - type: Transform -- uid: 522 - type: WallSolid - components: - - pos: -9.5,9.5 - parent: 1 - type: Transform -- uid: 523 - type: WallSolid - components: - - pos: -7.5,9.5 - parent: 1 - type: Transform -- uid: 524 - type: TableReinforced - components: - - pos: -10.5,6.5 - parent: 1 - type: Transform -- uid: 525 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-5.5 - parent: 1 - type: Transform -- uid: 526 - type: CarpetPink - components: - - pos: -12.5,-2.5 - parent: 1 - type: Transform -- uid: 527 - type: CarpetPink - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform -- uid: 528 - type: CarpetPink - components: - - pos: -12.5,-3.5 - parent: 1 - type: Transform -- uid: 529 - type: CarpetPink - components: - - pos: -12.5,-4.5 - parent: 1 - type: Transform -- uid: 530 - type: CarpetPink - components: - - pos: -11.5,-4.5 - parent: 1 - type: Transform -- uid: 531 - type: WallSolid - components: - - pos: -9.5,-6.5 - parent: 1 - type: Transform -- uid: 532 - type: WallSolid - components: - - pos: -13.5,-6.5 - parent: 1 - type: Transform -- uid: 533 - type: WallSolid - components: - - pos: -14.5,-6.5 - parent: 1 - type: Transform -- uid: 534 - type: WallSolid - components: - - pos: -14.5,-5.5 - parent: 1 - type: Transform -- uid: 535 - type: WallSolid - components: - - pos: -14.5,-4.5 - parent: 1 - type: Transform -- uid: 536 - type: TintedWindow - components: - - pos: -14.5,-2.5 - parent: 1 - type: Transform -- uid: 537 - type: WallPlastic - components: - - pos: -14.5,1.5 - parent: 1 - type: Transform -- uid: 538 - type: WallPlastic - components: - - pos: -14.5,-0.5 - parent: 1 - type: Transform -- uid: 539 - type: WallSolid - components: - - pos: -14.5,5.5 - parent: 1 - type: Transform -- uid: 540 - type: WallSolid - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform -- uid: 541 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 1 - type: Transform -- uid: 542 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 1 - type: Transform -- uid: 543 - type: WallSolid - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform -- uid: 544 - type: WallSolid - components: - - pos: 4.5,12.5 - parent: 1 - type: Transform -- uid: 545 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 2.5,80.5 - parent: 1 - type: Transform -- uid: 546 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 0.5,80.5 - parent: 1 - type: Transform -- uid: 547 - type: WallSolid - components: - - pos: 7.5,12.5 - parent: 1 - type: Transform -- uid: 548 - type: TableReinforced - components: - - pos: 11.5,12.5 - parent: 1 - type: Transform -- uid: 549 - type: TableReinforced - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform -- uid: 550 - type: TableReinforced - components: - - pos: 9.5,12.5 - parent: 1 - type: Transform -- uid: 551 - type: WallSolid - components: - - pos: 12.5,12.5 - parent: 1 - type: Transform -- uid: 552 - type: WallSolid - components: - - pos: 6.5,12.5 - parent: 1 - type: Transform -- uid: 553 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -0.5,80.5 - parent: 1 - type: Transform -- uid: 554 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 3.5,80.5 - parent: 1 - type: Transform -- uid: 555 - type: FirelockGlass - components: - - pos: 9.5,12.5 - parent: 1 - type: Transform -- uid: 556 - type: WindoorHydroponicsLocked - components: - - pos: 11.5,12.5 - parent: 1 - type: Transform -- uid: 557 - type: WindoorHydroponicsLocked - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform -- uid: 558 - type: WallSolid - components: - - pos: 4.5,9.5 - parent: 1 - type: Transform -- uid: 559 - type: WallSolid - components: - - pos: 4.5,10.5 - parent: 1 - type: Transform -- uid: 560 - type: WallSolid - components: - - pos: 4.5,11.5 - parent: 1 - type: Transform -- uid: 561 - type: Grille - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform -- uid: 562 - type: Grille - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform -- uid: 563 - type: AirlockHydroGlassLocked - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform -- uid: 564 - type: Window - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform -- uid: 565 - type: Window - components: - - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 1 - type: Transform -- uid: 566 - type: GasVentScrubber - components: - - pos: -7.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 567 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 7.5,3.5 - parent: 1 - type: Transform -- uid: 568 - type: WallSolid - components: - - pos: 10.5,4.5 - parent: 1 - type: Transform -- uid: 569 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 8.5,3.5 - parent: 1 - type: Transform -- uid: 570 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: 8.5,-5.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7147 - - port: Toggle - uid: 7148 - - port: Toggle - uid: 7149 - - port: Toggle - uid: 7144 - - port: Toggle - uid: 7145 - - port: Toggle - uid: 7146 - type: SignalTransmitter -- uid: 571 - type: ComputerMedicalRecords - components: - - rot: -1.5707963267948966 rad - pos: -19.5,34.5 - parent: 1 - type: Transform -- uid: 572 - type: WallSolid - components: - - pos: 9.5,0.5 - parent: 1 - type: Transform -- uid: 573 - type: WallSolid - components: - - pos: 9.5,1.5 - parent: 1 - type: Transform -- uid: 574 - type: WallSolid - components: - - pos: 9.5,3.5 - parent: 1 - type: Transform -- uid: 575 - type: WallSolid - components: - - pos: 9.5,4.5 - parent: 1 - type: Transform -- uid: 576 - type: WallSolid - components: - - pos: 12.5,4.5 - parent: 1 - type: Transform -- uid: 577 - type: WallSolid - components: - - pos: 13.5,4.5 - parent: 1 - type: Transform -- uid: 578 - type: WallSolid - components: - - pos: 13.5,3.5 - parent: 1 - type: Transform -- uid: 579 - type: WallSolid - components: - - pos: 13.5,2.5 - parent: 1 - type: Transform -- uid: 580 - type: WallSolid - components: - - pos: 13.5,1.5 - parent: 1 - type: Transform -- uid: 581 - type: WallSolid - components: - - pos: 13.5,0.5 - parent: 1 - type: Transform -- uid: 582 - type: WallSolid - components: - - pos: 12.5,0.5 - parent: 1 - type: Transform -- uid: 583 - type: WallSolid - components: - - pos: 10.5,0.5 - parent: 1 - type: Transform -- uid: 584 - type: WallSolid - components: - - pos: 12.5,11.5 - parent: 1 - type: Transform -- uid: 585 - type: WallSolid - components: - - pos: 12.5,10.5 - parent: 1 - type: Transform -- uid: 586 - type: WallSolid - components: - - pos: 13.5,-0.5 - parent: 1 - type: Transform -- uid: 587 - type: WallSolid - components: - - pos: 12.5,8.5 - parent: 1 - type: Transform -- uid: 588 - type: WallSolid - components: - - pos: 12.5,7.5 - parent: 1 - type: Transform -- uid: 589 - type: WallSolid - components: - - pos: 13.5,-1.5 - parent: 1 - type: Transform -- uid: 590 - type: WallSolid - components: - - pos: 12.5,5.5 - parent: 1 - type: Transform -- uid: 591 - type: AirlockMaintKitchenLocked - components: - - rot: 3.141592653589793 rad - pos: 13.5,-2.5 - parent: 1 - type: Transform -- uid: 592 - type: WallSolid - components: - - pos: 13.5,-3.5 - parent: 1 - type: Transform -- uid: 593 - type: WallSolid - components: - - pos: 13.5,-4.5 - parent: 1 - type: Transform -- uid: 594 - type: WallSolid - components: - - pos: 13.5,-5.5 - parent: 1 - type: Transform -- uid: 595 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 12.5,-6.5 - parent: 1 - type: Transform -- uid: 596 - type: WallSolid - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform -- uid: 597 - type: WallSolid - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform -- uid: 598 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 8.5,-6.5 - parent: 1 - type: Transform -- uid: 599 - type: TableReinforced - components: - - pos: 9.5,-5.5 - parent: 1 - type: Transform -- uid: 600 - type: WallSolid - components: - - pos: 7.5,-6.5 - parent: 1 - type: Transform -- uid: 601 - type: WallSolid - components: - - pos: 4.5,-6.5 - parent: 1 - type: Transform -- uid: 602 - type: TableReinforced - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform -- uid: 603 - type: TableReinforced - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform -- uid: 604 - type: TableReinforced - components: - - pos: 12.5,-0.5 - parent: 1 - type: Transform -- uid: 605 - type: TableReinforced - components: - - pos: 12.5,-1.5 - parent: 1 - type: Transform -- uid: 606 - type: TableReinforced - components: - - pos: 7.5,-2.5 - parent: 1 - type: Transform -- uid: 607 - type: TableReinforced - components: - - pos: 8.5,-2.5 - parent: 1 - type: Transform -- uid: 608 - type: ReagentContainerRice - components: - - pos: 7.5164104,-3.0316958 - parent: 1 - type: Transform -- uid: 609 - type: Grille - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform -- uid: 610 - type: Grille - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform -- uid: 611 - type: Grille - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform -- uid: 612 - type: AirlockKitchenGlassLocked - components: - - pos: 4.5,-4.5 - parent: 1 - type: Transform -- uid: 613 - type: Window - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform -- uid: 614 - type: Window - components: - - pos: 4.5,-5.5 - parent: 1 - type: Transform -- uid: 615 - type: Window - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform -- uid: 616 - type: Window - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform -- uid: 617 - type: Window - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform -- uid: 618 - type: Window - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform -- uid: 619 - type: Grille - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform -- uid: 620 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -4.5,80.5 - parent: 1 - type: Transform -- uid: 621 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -3.5,80.5 - parent: 1 - type: Transform -- uid: 622 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -2.5,80.5 - parent: 1 - type: Transform -- uid: 623 - type: WallSolid - components: - - pos: 13.5,12.5 - parent: 1 - type: Transform -- uid: 624 - type: WallSolid - components: - - pos: 14.5,12.5 - parent: 1 - type: Transform -- uid: 625 - type: WallSolid - components: - - pos: 15.5,12.5 - parent: 1 - type: Transform -- uid: 626 - type: WallSolid - components: - - pos: 16.5,12.5 - parent: 1 - type: Transform -- uid: 627 - type: WallSolid - components: - - pos: 16.5,11.5 - parent: 1 - type: Transform -- uid: 628 - type: WallSolid - components: - - pos: 16.5,10.5 - parent: 1 - type: Transform -- uid: 629 - type: WallSolid - components: - - pos: 16.5,9.5 - parent: 1 - type: Transform -- uid: 630 - type: WallSolid - components: - - pos: 16.5,8.5 - parent: 1 - type: Transform -- uid: 631 - type: WallSolid - components: - - pos: 16.5,7.5 - parent: 1 - type: Transform -- uid: 632 - type: WallSolid - components: - - pos: 15.5,7.5 - parent: 1 - type: Transform -- uid: 633 - type: WallSolid - components: - - pos: 13.5,7.5 - parent: 1 - type: Transform -- uid: 634 - type: WallSolid - components: - - pos: 17.5,12.5 - parent: 1 - type: Transform -- uid: 635 - type: WallSolid - components: - - pos: 19.5,12.5 - parent: 1 - type: Transform -- uid: 636 - type: WallSolid - components: - - pos: 19.5,11.5 - parent: 1 - type: Transform -- uid: 637 - type: WallSolid - components: - - pos: 19.5,10.5 - parent: 1 - type: Transform -- uid: 638 - type: WallSolid - components: - - pos: 19.5,9.5 - parent: 1 - type: Transform -- uid: 639 - type: WallSolid - components: - - pos: 27.5,-6.5 - parent: 1 - type: Transform -- uid: 640 - type: WallSolid - components: - - pos: 19.5,7.5 - parent: 1 - type: Transform -- uid: 641 - type: WallSolid - components: - - pos: 19.5,6.5 - parent: 1 - type: Transform -- uid: 642 - type: WallSolid - components: - - pos: 19.5,5.5 - parent: 1 - type: Transform -- uid: 643 - type: WallSolid - components: - - pos: 18.5,5.5 - parent: 1 - type: Transform -- uid: 644 - type: WallSolid - components: - - pos: 16.5,5.5 - parent: 1 - type: Transform -- uid: 645 - type: WallSolid - components: - - pos: 17.5,5.5 - parent: 1 - type: Transform -- uid: 646 - type: WallSolid - components: - - pos: 16.5,4.5 - parent: 1 - type: Transform -- uid: 647 - type: WallSolid - components: - - pos: 16.5,3.5 - parent: 1 - type: Transform -- uid: 648 - type: WallSolid - components: - - pos: 16.5,2.5 - parent: 1 - type: Transform -- uid: 649 - type: WallSolid - components: - - pos: 16.5,1.5 - parent: 1 - type: Transform -- uid: 650 - type: WallSolid - components: - - pos: 16.5,0.5 - parent: 1 - type: Transform -- uid: 651 - type: WallSolid - components: - - pos: 16.5,-0.5 - parent: 1 - type: Transform -- uid: 652 - type: WallPlastic - components: - - pos: -15.5,-1.5 - parent: 1 - type: Transform -- uid: 653 - type: WallPlastic - components: - - pos: -16.5,-1.5 - parent: 1 - type: Transform -- uid: 654 - type: WallSolid - components: - - pos: -18.5,-1.5 - parent: 1 - type: Transform -- uid: 655 - type: WallSolid - components: - - pos: -18.5,-2.5 - parent: 1 - type: Transform -- uid: 656 - type: WallSolid - components: - - pos: -18.5,-3.5 - parent: 1 - type: Transform -- uid: 657 - type: WallSolid - components: - - pos: -18.5,-4.5 - parent: 1 - type: Transform -- uid: 658 - type: WallSolid - components: - - pos: -18.5,-6.5 - parent: 1 - type: Transform -- uid: 659 - type: WallSolid - components: - - pos: -17.5,-6.5 - parent: 1 - type: Transform -- uid: 660 - type: WallSolid - components: - - pos: -16.5,-6.5 - parent: 1 - type: Transform -- uid: 661 - type: WallPlastic - components: - - pos: -17.5,-1.5 - parent: 1 - type: Transform -- uid: 662 - type: WallSolid - components: - - pos: -15.5,-6.5 - parent: 1 - type: Transform -- uid: 663 - type: WallPlastic - components: - - pos: -14.5,-1.5 - parent: 1 - type: Transform -- uid: 664 - type: WallPlastic - components: - - pos: -14.5,2.5 - parent: 1 - type: Transform -- uid: 665 - type: TintedWindow - components: - - pos: -14.5,3.5 - parent: 1 - type: Transform -- uid: 666 - type: WallPlastic - components: - - pos: -15.5,2.5 - parent: 1 - type: Transform -- uid: 667 - type: WallPlastic - components: - - pos: -16.5,2.5 - parent: 1 - type: Transform -- uid: 668 - type: WallPlastic - components: - - pos: -17.5,2.5 - parent: 1 - type: Transform -- uid: 669 - type: WallSolid - components: - - pos: -14.5,6.5 - parent: 1 - type: Transform -- uid: 670 - type: WallSolid - components: - - pos: -15.5,6.5 - parent: 1 - type: Transform -- uid: 671 - type: WallSolid - components: - - pos: -16.5,6.5 - parent: 1 - type: Transform -- uid: 672 - type: WallSolid - components: - - pos: -17.5,6.5 - parent: 1 - type: Transform -- uid: 673 - type: WallSolid - components: - - pos: -18.5,0.5 - parent: 1 - type: Transform -- uid: 674 - type: WallSolid - components: - - pos: -18.5,1.5 - parent: 1 - type: Transform -- uid: 675 - type: WallSolid - components: - - pos: -18.5,2.5 - parent: 1 - type: Transform -- uid: 676 - type: WallSolid - components: - - pos: -18.5,3.5 - parent: 1 - type: Transform -- uid: 677 - type: WallSolid - components: - - pos: -18.5,4.5 - parent: 1 - type: Transform -- uid: 678 - type: WallSolid - components: - - pos: -18.5,6.5 - parent: 1 - type: Transform -- uid: 679 - type: WallSolid - components: - - pos: -19.5,-6.5 - parent: 1 - type: Transform -- uid: 680 - type: WallSolid - components: - - pos: -20.5,-6.5 - parent: 1 - type: Transform -- uid: 681 - type: WallSolid - components: - - pos: -21.5,-6.5 - parent: 1 - type: Transform -- uid: 682 - type: WallSolid - components: - - pos: -22.5,-6.5 - parent: 1 - type: Transform -- uid: 683 - type: WallSolid - components: - - pos: -23.5,-6.5 - parent: 1 - type: Transform -- uid: 684 - type: WallSolid - components: - - pos: -24.5,-6.5 - parent: 1 - type: Transform -- uid: 685 - type: WallSolid - components: - - pos: -25.5,-6.5 - parent: 1 - type: Transform -- uid: 686 - type: WallSolid - components: - - pos: -27.5,-6.5 - parent: 1 - type: Transform -- uid: 687 - type: WallSolid - components: - - pos: -28.5,-6.5 - parent: 1 - type: Transform -- uid: 688 - type: WallSolid - components: - - pos: -29.5,-6.5 - parent: 1 - type: Transform -- uid: 689 - type: WallSolid - components: - - pos: -29.5,-5.5 - parent: 1 - type: Transform -- uid: 690 - type: WallSolid - components: - - pos: -29.5,-4.5 - parent: 1 - type: Transform -- uid: 691 - type: WallSolid - components: - - pos: -29.5,-3.5 - parent: 1 - type: Transform -- uid: 692 - type: WallSolid - components: - - pos: -26.5,-4.5 - parent: 1 - type: Transform -- uid: 693 - type: WallSolid - components: - - pos: -25.5,-4.5 - parent: 1 - type: Transform -- uid: 694 - type: WallSolid - components: - - pos: -24.5,-4.5 - parent: 1 - type: Transform -- uid: 695 - type: WallSolid - components: - - pos: -23.5,-4.5 - parent: 1 - type: Transform -- uid: 696 - type: WallSolid - components: - - pos: -12.5,12.5 - parent: 1 - type: Transform -- uid: 697 - type: WallSolid - components: - - pos: -13.5,12.5 - parent: 1 - type: Transform -- uid: 698 - type: WallSolid - components: - - pos: -14.5,12.5 - parent: 1 - type: Transform -- uid: 699 - type: WallSolid - components: - - pos: -14.5,11.5 - parent: 1 - type: Transform -- uid: 700 - type: WallSolid - components: - - pos: -16.5,12.5 - parent: 1 - type: Transform -- uid: 701 - type: WallSolid - components: - - pos: -17.5,12.5 - parent: 1 - type: Transform -- uid: 702 - type: WallSolid - components: - - pos: -18.5,12.5 - parent: 1 - type: Transform -- uid: 703 - type: WallSolid - components: - - pos: -19.5,12.5 - parent: 1 - type: Transform -- uid: 704 - type: WallSolid - components: - - pos: -20.5,12.5 - parent: 1 - type: Transform -- uid: 705 - type: WallSolid - components: - - pos: -21.5,12.5 - parent: 1 - type: Transform -- uid: 706 - type: WallSolid - components: - - pos: -24.5,12.5 - parent: 1 - type: Transform -- uid: 707 - type: WallSolid - components: - - pos: -26.5,12.5 - parent: 1 - type: Transform -- uid: 708 - type: WallSolid - components: - - pos: -25.5,12.5 - parent: 1 - type: Transform -- uid: 709 - type: WallSolid - components: - - pos: -29.5,9.5 - parent: 1 - type: Transform -- uid: 710 - type: WallSolid - components: - - pos: -29.5,12.5 - parent: 1 - type: Transform -- uid: 711 - type: WallSolid - components: - - pos: -29.5,8.5 - parent: 1 - type: Transform -- uid: 712 - type: WallSolid - components: - - pos: -29.5,7.5 - parent: 1 - type: Transform -- uid: 713 - type: WallSolid - components: - - pos: -29.5,4.5 - parent: 1 - type: Transform -- uid: 714 - type: WallSolid - components: - - pos: -28.5,4.5 - parent: 1 - type: Transform -- uid: 715 - type: WallSolid - components: - - pos: -27.5,4.5 - parent: 1 - type: Transform -- uid: 716 - type: WallSolid - components: - - pos: -26.5,4.5 - parent: 1 - type: Transform -- uid: 717 - type: WallSolid - components: - - pos: -26.5,-3.5 - parent: 1 - type: Transform -- uid: 718 - type: WallSolid - components: - - pos: -26.5,-2.5 - parent: 1 - type: Transform -- uid: 719 - type: WallSolid - components: - - pos: -26.5,-1.5 - parent: 1 - type: Transform -- uid: 720 - type: WallSolid - components: - - pos: -26.5,-0.5 - parent: 1 - type: Transform -- uid: 721 - type: WallSolid - components: - - pos: -26.5,0.5 - parent: 1 - type: Transform -- uid: 722 - type: WallSolid - components: - - pos: -26.5,3.5 - parent: 1 - type: Transform -- uid: 723 - type: WallSolid - components: - - pos: -26.5,2.5 - parent: 1 - type: Transform -- uid: 724 - type: WallSolid - components: - - pos: -29.5,-2.5 - parent: 1 - type: Transform -- uid: 725 - type: WallSolid - components: - - pos: -29.5,-1.5 - parent: 1 - type: Transform -- uid: 726 - type: WallSolid - components: - - pos: -29.5,-0.5 - parent: 1 - type: Transform -- uid: 727 - type: WallSolid - components: - - pos: -29.5,0.5 - parent: 1 - type: Transform -- uid: 728 - type: WallSolid - components: - - pos: -29.5,2.5 - parent: 1 - type: Transform -- uid: 729 - type: WallSolid - components: - - pos: -29.5,3.5 - parent: 1 - type: Transform -- uid: 730 - type: WallSolid - components: - - pos: -21.5,11.5 - parent: 1 - type: Transform -- uid: 731 - type: WallSolid - components: - - pos: -21.5,10.5 - parent: 1 - type: Transform -- uid: 732 - type: WallSolid - components: - - pos: -21.5,9.5 - parent: 1 - type: Transform -- uid: 733 - type: WallSolid - components: - - pos: -21.5,8.5 - parent: 1 - type: Transform -- uid: 734 - type: WallSolid - components: - - pos: -25.5,4.5 - parent: 1 - type: Transform -- uid: 735 - type: WallSolid - components: - - pos: -23.5,4.5 - parent: 1 - type: Transform -- uid: 736 - type: WallSolid - components: - - pos: -25.5,0.5 - parent: 1 - type: Transform -- uid: 737 - type: WallSolid - components: - - pos: -24.5,0.5 - parent: 1 - type: Transform -- uid: 738 - type: WallSolid - components: - - pos: -23.5,0.5 - parent: 1 - type: Transform -- uid: 739 - type: WallSolid - components: - - pos: -22.5,0.5 - parent: 1 - type: Transform -- uid: 740 - type: WallSolid - components: - - pos: -22.5,2.5 - parent: 1 - type: Transform -- uid: 741 - type: WallSolid - components: - - pos: -22.5,4.5 - parent: 1 - type: Transform -- uid: 742 - type: WallSolid - components: - - pos: -21.5,4.5 - parent: 1 - type: Transform -- uid: 743 - type: WallSolid - components: - - pos: -22.5,3.5 - parent: 1 - type: Transform -- uid: 744 - type: WallSolid - components: - - pos: -22.5,1.5 - parent: 1 - type: Transform -- uid: 745 - type: WallSolid - components: - - pos: -20.5,4.5 - parent: 1 - type: Transform -- uid: 746 - type: WallSolid - components: - - pos: -20.5,8.5 - parent: 1 - type: Transform -- uid: 747 - type: WallSolid - components: - - pos: -18.5,8.5 - parent: 1 - type: Transform -- uid: 748 - type: WallSolid - components: - - pos: -17.5,8.5 - parent: 1 - type: Transform -- uid: 749 - type: Catwalk - components: - - pos: -15.5,11.5 - parent: 1 - type: Transform -- uid: 750 - type: Catwalk - components: - - pos: -15.5,10.5 - parent: 1 - type: Transform -- uid: 751 - type: Catwalk - components: - - pos: -15.5,9.5 - parent: 1 - type: Transform -- uid: 752 - type: WallSolid - components: - - pos: -14.5,10.5 - parent: 1 - type: Transform -- uid: 753 - type: WallSolid - components: - - pos: -14.5,9.5 - parent: 1 - type: Transform -- uid: 754 - type: WallSolid - components: - - pos: -14.5,7.5 - parent: 1 - type: Transform -- uid: 755 - type: WallSolid - components: - - pos: -21.5,5.5 - parent: 1 - type: Transform -- uid: 756 - type: WallSolid - components: - - pos: -21.5,6.5 - parent: 1 - type: Transform -- uid: 757 - type: WallSolid - components: - - pos: -22.5,-0.5 - parent: 1 - type: Transform -- uid: 758 - type: WallSolid - components: - - pos: -22.5,-4.5 - parent: 1 - type: Transform -- uid: 759 - type: WallSolid - components: - - pos: -22.5,-3.5 - parent: 1 - type: Transform -- uid: 760 - type: WallSolid - components: - - pos: -22.5,-1.5 - parent: 1 - type: Transform -- uid: 761 - type: WallSolid - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform -- uid: 762 - type: WallSolid - components: - - pos: -20.5,-1.5 - parent: 1 - type: Transform -- uid: 763 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -53.5,13.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 764 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-7.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 765 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-9.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 766 - type: WallReinforced - components: - - pos: 43.5,-6.5 - parent: 1 - type: Transform -- uid: 767 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -49.5,-12.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 768 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -47.5,-12.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 769 - type: Bookshelf - components: - - pos: -26.5,11.5 - parent: 1 - type: Transform -- uid: 770 - type: Bookshelf - components: - - pos: -24.5,11.5 - parent: 1 - type: Transform -- uid: 771 - type: Bookshelf - components: - - pos: -25.5,11.5 - parent: 1 - type: Transform -- uid: 772 - type: Bookshelf - components: - - pos: -26.5,9.5 - parent: 1 - type: Transform -- uid: 773 - type: Bookshelf - components: - - pos: -25.5,9.5 - parent: 1 - type: Transform -- uid: 774 - type: Bookshelf - components: - - pos: -24.5,9.5 - parent: 1 - type: Transform -- uid: 775 - type: Grille - components: - - pos: -29.5,6.5 - parent: 1 - type: Transform -- uid: 776 - type: Grille - components: - - pos: -29.5,5.5 - parent: 1 - type: Transform -- uid: 777 - type: Grille - components: - - pos: -28.5,12.5 - parent: 1 - type: Transform -- uid: 778 - type: Grille - components: - - pos: -27.5,12.5 - parent: 1 - type: Transform -- uid: 779 - type: Grille - components: - - pos: -23.5,12.5 - parent: 1 - type: Transform -- uid: 780 - type: TableReinforced - components: - - pos: -28.5,7.5 - parent: 1 - type: Transform -- uid: 781 - type: TableReinforced - components: - - pos: -27.5,7.5 - parent: 1 - type: Transform -- uid: 782 - type: TableReinforced - components: - - pos: -26.5,7.5 - parent: 1 - type: Transform -- uid: 783 - type: TableReinforced - components: - - pos: -26.5,6.5 - parent: 1 - type: Transform -- uid: 784 - type: Grille - components: - - pos: -29.5,11.5 - parent: 1 - type: Transform -- uid: 785 - type: Window - components: - - pos: -27.5,12.5 - parent: 1 - type: Transform -- uid: 786 - type: Window - components: - - pos: -28.5,12.5 - parent: 1 - type: Transform -- uid: 787 - type: Window - components: - - pos: -29.5,11.5 - parent: 1 - type: Transform -- uid: 788 - type: Window - components: - - pos: -23.5,12.5 - parent: 1 - type: Transform -- uid: 789 - type: Window - components: - - pos: -29.5,6.5 - parent: 1 - type: Transform -- uid: 790 - type: Window - components: - - pos: -29.5,5.5 - parent: 1 - type: Transform -- uid: 791 - type: WallReinforced - components: - - pos: -2.5,16.5 - parent: 1 - type: Transform -- uid: 792 - type: WallReinforced - components: - - pos: 1.5,16.5 - parent: 1 - type: Transform -- uid: 793 - type: WallReinforced - components: - - pos: -2.5,20.5 - parent: 1 - type: Transform -- uid: 794 - type: WallReinforced - components: - - pos: 1.5,20.5 - parent: 1 - type: Transform -- uid: 795 - type: WallReinforced - components: - - pos: -6.5,16.5 - parent: 1 - type: Transform -- uid: 796 - type: WallSolid - components: - - pos: 5.5,16.5 - parent: 1 - type: Transform -- uid: 797 - type: FirelockGlass - components: - - pos: -13.5,-7.5 - parent: 1 - type: Transform -- uid: 798 - type: TableReinforced - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform -- uid: 799 - type: TableReinforced - components: - - pos: -5.5,20.5 - parent: 1 - type: Transform -- uid: 800 - type: FirelockGlass - components: - - pos: -13.5,-8.5 - parent: 1 - type: Transform -- uid: 801 - type: TableReinforced - components: - - pos: -4.5,20.5 - parent: 1 - type: Transform -- uid: 802 - type: TableReinforced - components: - - pos: 4.5,20.5 - parent: 1 - type: Transform -- uid: 803 - type: WallReinforced - components: - - pos: -6.5,20.5 - parent: 1 - type: Transform -- uid: 804 - type: WallReinforced - components: - - pos: -6.5,19.5 - parent: 1 - type: Transform -- uid: 805 - type: WallReinforced - components: - - pos: 5.5,20.5 - parent: 1 - type: Transform -- uid: 806 - type: WallReinforced - components: - - pos: 5.5,19.5 - parent: 1 - type: Transform -- uid: 807 - type: Grille - components: - - pos: -3.5,20.5 - parent: 1 - type: Transform -- uid: 808 - type: Grille - components: - - pos: 2.5,20.5 - parent: 1 - type: Transform -- uid: 809 - type: ReinforcedWindow - components: - - pos: -3.5,20.5 - parent: 1 - type: Transform -- uid: 810 - type: ReinforcedWindow - components: - - pos: 2.5,20.5 - parent: 1 - type: Transform -- uid: 811 - type: WallReinforced - components: - - pos: -2.5,21.5 - parent: 1 - type: Transform -- uid: 812 - type: WallReinforced - components: - - pos: 1.5,21.5 - parent: 1 - type: Transform -- uid: 813 - type: WallReinforced - components: - - pos: -2.5,25.5 - parent: 1 - type: Transform -- uid: 814 - type: WallReinforced - components: - - pos: 1.5,25.5 - parent: 1 - type: Transform -- uid: 815 - type: WallReinforced - components: - - pos: -3.5,25.5 - parent: 1 - type: Transform -- uid: 816 - type: WallReinforced - components: - - pos: 4.5,26.5 - parent: 1 - type: Transform -- uid: 817 - type: WallReinforced - components: - - pos: -4.5,25.5 - parent: 1 - type: Transform -- uid: 818 - type: WallReinforced - components: - - pos: -8.5,26.5 - parent: 1 - type: Transform -- uid: 819 - type: WallReinforced - components: - - pos: -8.5,25.5 - parent: 1 - type: Transform -- uid: 820 - type: WallReinforced - components: - - pos: -2.5,26.5 - parent: 1 - type: Transform -- uid: 821 - type: WallReinforced - components: - - pos: 1.5,26.5 - parent: 1 - type: Transform -- uid: 822 - type: WallReinforced - components: - - pos: 1.5,27.5 - parent: 1 - type: Transform -- uid: 823 - type: WallReinforced - components: - - pos: -2.5,27.5 - parent: 1 - type: Transform -- uid: 824 - type: Grille - components: - - pos: -2.5,28.5 - parent: 1 - type: Transform -- uid: 825 - type: Grille - components: - - pos: -2.5,29.5 - parent: 1 - type: Transform -- uid: 826 - type: Grille - components: - - pos: -2.5,30.5 - parent: 1 - type: Transform -- uid: 827 - type: Grille - components: - - pos: 1.5,28.5 - parent: 1 - type: Transform -- uid: 828 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 1.5,29.5 - parent: 1 - type: Transform -- uid: 829 - type: Grille - components: - - pos: 1.5,30.5 - parent: 1 - type: Transform -- uid: 830 - type: WallReinforced - components: - - pos: -4.5,27.5 - parent: 1 - type: Transform -- uid: 831 - type: WallReinforced - components: - - pos: -4.5,31.5 - parent: 1 - type: Transform -- uid: 832 - type: WallReinforced - components: - - pos: -8.5,31.5 - parent: 1 - type: Transform -- uid: 833 - type: WallReinforced - components: - - pos: -8.5,27.5 - parent: 1 - type: Transform -- uid: 834 - type: WallReinforced - components: - - pos: -2.5,31.5 - parent: 1 - type: Transform -- uid: 835 - type: WallReinforced - components: - - pos: 40.5,44.5 - parent: 1 - type: Transform -- uid: 836 - type: WallReinforced - components: - - pos: 40.5,42.5 - parent: 1 - type: Transform -- uid: 837 - type: WallReinforced - components: - - pos: 40.5,41.5 - parent: 1 - type: Transform -- uid: 838 - type: WallReinforced - components: - - pos: 41.5,45.5 - parent: 1 - type: Transform -- uid: 839 - type: WallReinforced - components: - - pos: 42.5,45.5 - parent: 1 - type: Transform -- uid: 840 - type: WallReinforced - components: - - pos: 44.5,45.5 - parent: 1 - type: Transform -- uid: 841 - type: WallReinforced - components: - - pos: 45.5,45.5 - parent: 1 - type: Transform -- uid: 842 - type: WallReinforced - components: - - pos: 43.5,45.5 - parent: 1 - type: Transform -- uid: 843 - type: ReinforcedWindow - components: - - pos: 42.5,41.5 - parent: 1 - type: Transform -- uid: 844 - type: WallReinforced - components: - - pos: 46.5,45.5 - parent: 1 - type: Transform -- uid: 845 - type: AtmosDeviceFanTiny - components: - - rot: 1.5707963267948966 rad - pos: 37.5,1.5 - parent: 1 - type: Transform -- uid: 846 - type: WallSolid - components: - - pos: 40.5,39.5 - parent: 1 - type: Transform -- uid: 847 - type: Grille - components: - - pos: 49.5,41.5 - parent: 1 - type: Transform -- uid: 848 - type: Grille - components: - - pos: 49.5,42.5 - parent: 1 - type: Transform -- uid: 849 - type: Grille - components: - - pos: 49.5,43.5 - parent: 1 - type: Transform -- uid: 850 - type: Grille - components: - - pos: 49.5,44.5 - parent: 1 - type: Transform -- uid: 851 - type: Grille - components: - - pos: 48.5,45.5 - parent: 1 - type: Transform -- uid: 852 - type: ReinforcedWindow - components: - - pos: 49.5,44.5 - parent: 1 - type: Transform -- uid: 853 - type: ReinforcedWindow - components: - - pos: 49.5,43.5 - parent: 1 - type: Transform -- uid: 854 - type: ReinforcedWindow - components: - - pos: 49.5,42.5 - parent: 1 - type: Transform -- uid: 855 - type: ReinforcedWindow - components: - - pos: 49.5,41.5 - parent: 1 - type: Transform -- uid: 856 - type: ReinforcedWindow - components: - - pos: 51.5,39.5 - parent: 1 - type: Transform -- uid: 857 - type: ReinforcedWindow - components: - - pos: 51.5,35.5 - parent: 1 - type: Transform -- uid: 858 - type: ReinforcedWindow - components: - - pos: 50.5,34.5 - parent: 1 - type: Transform -- uid: 859 - type: ReinforcedWindow - components: - - pos: 49.5,33.5 - parent: 1 - type: Transform -- uid: 860 - type: ReinforcedWindow - components: - - pos: 45.5,33.5 - parent: 1 - type: Transform -- uid: 861 - type: ReinforcedWindow - components: - - pos: 44.5,34.5 - parent: 1 - type: Transform -- uid: 862 - type: ReinforcedWindow - components: - - pos: 42.5,35.5 - parent: 1 - type: Transform -- uid: 863 - type: ReinforcedWindow - components: - - pos: 41.5,35.5 - parent: 1 - type: Transform -- uid: 864 - type: ReinforcedWindow - components: - - pos: 40.5,35.5 - parent: 1 - type: Transform -- uid: 865 - type: ReinforcedWindow - components: - - pos: 39.5,35.5 - parent: 1 - type: Transform -- uid: 866 - type: ReinforcedWindow - components: - - pos: 37.5,35.5 - parent: 1 - type: Transform -- uid: 867 - type: ReinforcedWindow - components: - - pos: 36.5,35.5 - parent: 1 - type: Transform -- uid: 868 - type: ReinforcedWindow - components: - - pos: 35.5,35.5 - parent: 1 - type: Transform -- uid: 869 - type: ReinforcedWindow - components: - - pos: 34.5,35.5 - parent: 1 - type: Transform -- uid: 870 - type: WallReinforced - components: - - pos: 38.5,35.5 - parent: 1 - type: Transform -- uid: 871 - type: Grille - components: - - pos: 47.5,48.5 - parent: 1 - type: Transform -- uid: 872 - type: Grille - components: - - pos: 47.5,47.5 - parent: 1 - type: Transform -- uid: 873 - type: Grille - components: - - pos: 47.5,46.5 - parent: 1 - type: Transform -- uid: 874 - type: Grille - components: - - pos: 46.5,49.5 - parent: 1 - type: Transform -- uid: 875 - type: Grille - components: - - pos: 45.5,49.5 - parent: 1 - type: Transform -- uid: 876 - type: Grille - components: - - pos: 44.5,50.5 - parent: 1 - type: Transform -- uid: 877 - type: Grille - components: - - pos: 44.5,51.5 - parent: 1 - type: Transform -- uid: 878 - type: Grille - components: - - pos: 43.5,52.5 - parent: 1 - type: Transform -- uid: 879 - type: Grille - components: - - pos: 42.5,52.5 - parent: 1 - type: Transform -- uid: 880 - type: Grille - components: - - pos: 41.5,52.5 - parent: 1 - type: Transform -- uid: 881 - type: ReinforcedWindow - components: - - pos: 39.5,55.5 - parent: 1 - type: Transform -- uid: 882 - type: WallReinforced - components: - - pos: 40.5,53.5 - parent: 1 - type: Transform -- uid: 883 - type: ReinforcedWindow - components: - - pos: 39.5,54.5 - parent: 1 - type: Transform -- uid: 884 - type: WallReinforced - components: - - pos: 38.5,56.5 - parent: 1 - type: Transform -- uid: 885 - type: TableWood - components: - - pos: 24.5,54.5 - parent: 1 - type: Transform -- uid: 886 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 29.5,53.5 - parent: 1 - type: Transform -- uid: 887 - type: WallReinforced - components: - - pos: 35.5,56.5 - parent: 1 - type: Transform -- uid: 888 - type: Grille - components: - - pos: 34.5,57.5 - parent: 1 - type: Transform -- uid: 889 - type: Grille - components: - - pos: 33.5,57.5 - parent: 1 - type: Transform -- uid: 890 - type: Grille - components: - - pos: 31.5,57.5 - parent: 1 - type: Transform -- uid: 891 - type: Grille - components: - - pos: 30.5,57.5 - parent: 1 - type: Transform -- uid: 892 - type: Grille - components: - - pos: 29.5,58.5 - parent: 1 - type: Transform -- uid: 893 - type: Grille - components: - - pos: 28.5,59.5 - parent: 1 - type: Transform -- uid: 894 - type: Grille - components: - - pos: 27.5,59.5 - parent: 1 - type: Transform -- uid: 895 - type: Grille - components: - - pos: 26.5,59.5 - parent: 1 - type: Transform -- uid: 896 - type: Grille - components: - - pos: 23.5,59.5 - parent: 1 - type: Transform -- uid: 897 - type: Grille - components: - - pos: 22.5,59.5 - parent: 1 - type: Transform -- uid: 898 - type: Grille - components: - - pos: 21.5,59.5 - parent: 1 - type: Transform -- uid: 899 - type: Grille - components: - - pos: 19.5,61.5 - parent: 1 - type: Transform -- uid: 900 - type: Grille - components: - - pos: 19.5,62.5 - parent: 1 - type: Transform -- uid: 901 - type: Grille - components: - - pos: 19.5,63.5 - parent: 1 - type: Transform -- uid: 902 - type: Grille - components: - - pos: 19.5,64.5 - parent: 1 - type: Transform -- uid: 903 - type: Grille - components: - - pos: 18.5,65.5 - parent: 1 - type: Transform -- uid: 904 - type: Grille - components: - - pos: 17.5,65.5 - parent: 1 - type: Transform -- uid: 905 - type: Grille - components: - - pos: 16.5,65.5 - parent: 1 - type: Transform -- uid: 906 - type: Grille - components: - - pos: 15.5,65.5 - parent: 1 - type: Transform -- uid: 907 - type: Grille - components: - - pos: 13.5,67.5 - parent: 1 - type: Transform -- uid: 908 - type: Grille - components: - - pos: 13.5,68.5 - parent: 1 - type: Transform -- uid: 909 - type: Grille - components: - - pos: 13.5,69.5 - parent: 1 - type: Transform -- uid: 910 - type: Grille - components: - - pos: 13.5,70.5 - parent: 1 - type: Transform -- uid: 911 - type: Grille - components: - - pos: 12.5,71.5 - parent: 1 - type: Transform -- uid: 912 - type: Grille - components: - - pos: 11.5,71.5 - parent: 1 - type: Transform -- uid: 913 - type: Grille - components: - - pos: 10.5,71.5 - parent: 1 - type: Transform -- uid: 914 - type: Grille - components: - - pos: 9.5,71.5 - parent: 1 - type: Transform -- uid: 915 - type: ReinforcedWindow - components: - - pos: 47.5,46.5 - parent: 1 - type: Transform -- uid: 916 - type: ReinforcedWindow - components: - - pos: 47.5,47.5 - parent: 1 - type: Transform -- uid: 917 - type: ReinforcedWindow - components: - - pos: 47.5,48.5 - parent: 1 - type: Transform -- uid: 918 - type: ReinforcedWindow - components: - - pos: 46.5,49.5 - parent: 1 - type: Transform -- uid: 919 - type: ReinforcedWindow - components: - - pos: 45.5,49.5 - parent: 1 - type: Transform -- uid: 920 - type: ReinforcedWindow - components: - - pos: 48.5,45.5 - parent: 1 - type: Transform -- uid: 921 - type: ReinforcedWindow - components: - - pos: 44.5,50.5 - parent: 1 - type: Transform -- uid: 922 - type: ReinforcedWindow - components: - - pos: 44.5,51.5 - parent: 1 - type: Transform -- uid: 923 - type: ReinforcedWindow - components: - - pos: 43.5,52.5 - parent: 1 - type: Transform -- uid: 924 - type: ReinforcedWindow - components: - - pos: 42.5,52.5 - parent: 1 - type: Transform -- uid: 925 - type: ReinforcedWindow - components: - - pos: 41.5,52.5 - parent: 1 - type: Transform -- uid: 926 - type: ReinforcedWindow - components: - - pos: -39.5,53.5 - parent: 1 - type: Transform -- uid: 927 - type: WallReinforced - components: - - pos: 39.5,53.5 - parent: 1 - type: Transform -- uid: 928 - type: WallReinforced - components: - - pos: 39.5,56.5 - parent: 1 - type: Transform -- uid: 929 - type: WallReinforced - components: - - pos: 36.5,56.5 - parent: 1 - type: Transform -- uid: 930 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 38.5,53.5 - parent: 1 - type: Transform -- uid: 931 - type: Dresser - components: - - pos: 26.5,53.5 - parent: 1 - type: Transform -- uid: 932 - type: AirlockExternalGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: 37.5,56.5 - parent: 1 - type: Transform -- uid: 933 - type: ReinforcedWindow - components: - - pos: 34.5,57.5 - parent: 1 - type: Transform -- uid: 934 - type: ReinforcedWindow - components: - - pos: 33.5,57.5 - parent: 1 - type: Transform -- uid: 935 - type: ReinforcedWindow - components: - - pos: 31.5,57.5 - parent: 1 - type: Transform -- uid: 936 - type: ReinforcedWindow - components: - - pos: 30.5,57.5 - parent: 1 - type: Transform -- uid: 937 - type: ReinforcedWindow - components: - - pos: 29.5,58.5 - parent: 1 - type: Transform -- uid: 938 - type: ReinforcedWindow - components: - - pos: 28.5,59.5 - parent: 1 - type: Transform -- uid: 939 - type: ReinforcedWindow - components: - - pos: 27.5,59.5 - parent: 1 - type: Transform -- uid: 940 - type: ReinforcedWindow - components: - - pos: 26.5,59.5 - parent: 1 - type: Transform -- uid: 941 - type: ReinforcedWindow - components: - - pos: 23.5,59.5 - parent: 1 - type: Transform -- uid: 942 - type: ReinforcedWindow - components: - - pos: 22.5,59.5 - parent: 1 - type: Transform -- uid: 943 - type: ReinforcedWindow - components: - - pos: 21.5,59.5 - parent: 1 - type: Transform -- uid: 944 - type: ReinforcedWindow - components: - - pos: 19.5,61.5 - parent: 1 - type: Transform -- uid: 945 - type: ReinforcedWindow - components: - - pos: 19.5,62.5 - parent: 1 - type: Transform -- uid: 946 - type: ReinforcedWindow - components: - - pos: 19.5,63.5 - parent: 1 - type: Transform -- uid: 947 - type: ReinforcedWindow - components: - - pos: 19.5,64.5 - parent: 1 - type: Transform -- uid: 948 - type: ReinforcedWindow - components: - - pos: 18.5,65.5 - parent: 1 - type: Transform -- uid: 949 - type: ReinforcedWindow - components: - - pos: 17.5,65.5 - parent: 1 - type: Transform -- uid: 950 - type: ReinforcedWindow - components: - - pos: 16.5,65.5 - parent: 1 - type: Transform -- uid: 951 - type: ReinforcedWindow - components: - - pos: 15.5,65.5 - parent: 1 - type: Transform -- uid: 952 - type: ReinforcedWindow - components: - - pos: 13.5,67.5 - parent: 1 - type: Transform -- uid: 953 - type: ReinforcedWindow - components: - - pos: 13.5,68.5 - parent: 1 - type: Transform -- uid: 954 - type: ReinforcedWindow - components: - - pos: 13.5,69.5 - parent: 1 - type: Transform -- uid: 955 - type: ReinforcedWindow - components: - - pos: 13.5,70.5 - parent: 1 - type: Transform -- uid: 956 - type: ReinforcedWindow - components: - - pos: 12.5,71.5 - parent: 1 - type: Transform -- uid: 957 - type: ReinforcedWindow - components: - - pos: 11.5,71.5 - parent: 1 - type: Transform -- uid: 958 - type: ReinforcedWindow - components: - - pos: 10.5,71.5 - parent: 1 - type: Transform -- uid: 959 - type: ReinforcedWindow - components: - - pos: 9.5,71.5 - parent: 1 - type: Transform -- uid: 960 - type: ReinforcedWindow - components: - - pos: 1.5,70.5 - parent: 1 - type: Transform -- uid: 961 - type: ReinforcedWindow - components: - - pos: 1.5,71.5 - parent: 1 - type: Transform -- uid: 962 - type: ReinforcedWindow - components: - - pos: 1.5,73.5 - parent: 1 - type: Transform -- uid: 963 - type: ReinforcedWindow - components: - - pos: 1.5,74.5 - parent: 1 - type: Transform -- uid: 964 - type: ReinforcedWindow - components: - - pos: -9.5,72.5 - parent: 1 - type: Transform -- uid: 965 - type: ReinforcedWindow - components: - - pos: -9.5,73.5 - parent: 1 - type: Transform -- uid: 966 - type: ReinforcedWindow - components: - - pos: -9.5,74.5 - parent: 1 - type: Transform -- uid: 967 - type: ReinforcedWindow - components: - - pos: -9.5,76.5 - parent: 1 - type: Transform -- uid: 968 - type: ReinforcedWindow - components: - - pos: -9.5,77.5 - parent: 1 - type: Transform -- uid: 969 - type: ReinforcedWindow - components: - - pos: -8.5,79.5 - parent: 1 - type: Transform -- uid: 970 - type: ReinforcedWindow - components: - - pos: -8.5,80.5 - parent: 1 - type: Transform -- uid: 971 - type: ReinforcedWindow - components: - - pos: -7.5,82.5 - parent: 1 - type: Transform -- uid: 972 - type: WallReinforced - components: - - pos: -14.5,71.5 - parent: 1 - type: Transform -- uid: 973 - type: WallReinforced - components: - - pos: -14.5,66.5 - parent: 1 - type: Transform -- uid: 974 - type: WallReinforced - components: - - pos: -14.5,65.5 - parent: 1 - type: Transform -- uid: 975 - type: WallReinforced - components: - - pos: -15.5,65.5 - parent: 1 - type: Transform -- uid: 976 - type: WallReinforced - components: - - pos: -20.5,65.5 - parent: 1 - type: Transform -- uid: 977 - type: WallReinforced - components: - - pos: -20.5,60.5 - parent: 1 - type: Transform -- uid: 978 - type: WallReinforced - components: - - pos: -20.5,59.5 - parent: 1 - type: Transform -- uid: 979 - type: WallReinforced - components: - - pos: -21.5,59.5 - parent: 1 - type: Transform -- uid: 980 - type: WallReinforced - components: - - pos: -30.5,59.5 - parent: 1 - type: Transform -- uid: 981 - type: WallReinforced - components: - - pos: -30.5,57.5 - parent: 1 - type: Transform -- uid: 982 - type: WallReinforced - components: - - pos: -33.5,57.5 - parent: 1 - type: Transform -- uid: 983 - type: WallReinforced - components: - - pos: -36.5,57.5 - parent: 1 - type: Transform -- uid: 984 - type: WallReinforced - components: - - pos: -36.5,55.5 - parent: 1 - type: Transform -- uid: 985 - type: Catwalk - components: - - pos: -38.5,74.5 - parent: 1 - type: Transform -- uid: 986 - type: WallReinforced - components: - - pos: -41.5,52.5 - parent: 1 - type: Transform -- uid: 987 - type: WallReinforced - components: - - pos: -45.5,52.5 - parent: 1 - type: Transform -- uid: 988 - type: WallReinforced - components: - - pos: -45.5,49.5 - parent: 1 - type: Transform -- uid: 989 - type: WallReinforced - components: - - pos: -48.5,49.5 - parent: 1 - type: Transform -- uid: 990 - type: WallReinforced - components: - - pos: -48.5,45.5 - parent: 1 - type: Transform -- uid: 991 - type: WallReinforced - components: - - pos: -50.5,45.5 - parent: 1 - type: Transform -- uid: 992 - type: WallReinforced - components: - - pos: -50.5,40.5 - parent: 1 - type: Transform -- uid: 993 - type: WallReinforced - components: - - pos: -50.5,39.5 - parent: 1 - type: Transform -- uid: 994 - type: WallReinforced - components: - - pos: -51.5,39.5 - parent: 1 - type: Transform -- uid: 995 - type: WallReinforced - components: - - pos: -2.5,32.5 - parent: 1 - type: Transform -- uid: 996 - type: WallReinforced - components: - - pos: -2.5,33.5 - parent: 1 - type: Transform -- uid: 997 - type: WallReinforced - components: - - pos: -2.5,34.5 - parent: 1 - type: Transform -- uid: 998 - type: WallReinforced - components: - - pos: -2.5,35.5 - parent: 1 - type: Transform -- uid: 999 - type: WallReinforced - components: - - pos: -3.5,35.5 - parent: 1 - type: Transform -- uid: 1000 - type: WallReinforced - components: - - pos: -4.5,35.5 - parent: 1 - type: Transform -- uid: 1001 - type: WallReinforced - components: - - pos: 1.5,31.5 - parent: 1 - type: Transform -- uid: 1002 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 1.5,32.5 - parent: 1 - type: Transform -- uid: 1003 - type: WallReinforced - components: - - pos: 1.5,33.5 - parent: 1 - type: Transform -- uid: 1004 - type: WallReinforced - components: - - pos: 1.5,34.5 - parent: 1 - type: Transform -- uid: 1005 - type: WallReinforced - components: - - pos: 1.5,35.5 - parent: 1 - type: Transform -- uid: 1006 - type: WallReinforced - components: - - pos: 2.5,35.5 - parent: 1 - type: Transform -- uid: 1007 - type: WallReinforced - components: - - pos: 3.5,35.5 - parent: 1 - type: Transform -- uid: 1008 - type: WallReinforced - components: - - pos: -2.5,39.5 - parent: 1 - type: Transform -- uid: 1009 - type: WallReinforced - components: - - pos: -2.5,43.5 - parent: 1 - type: Transform -- uid: 1010 - type: WallReinforced - components: - - pos: -5.5,43.5 - parent: 1 - type: Transform -- uid: 1011 - type: WallReinforced - components: - - pos: -5.5,39.5 - parent: 1 - type: Transform -- uid: 1012 - type: WallReinforced - components: - - pos: -8.5,39.5 - parent: 1 - type: Transform -- uid: 1013 - type: WallReinforced - components: - - pos: -8.5,43.5 - parent: 1 - type: Transform -- uid: 1014 - type: WallReinforced - components: - - pos: -11.5,39.5 - parent: 1 - type: Transform -- uid: 1015 - type: WallReinforced - components: - - pos: -11.5,43.5 - parent: 1 - type: Transform -- uid: 1016 - type: WallReinforced - components: - - pos: -14.5,39.5 - parent: 1 - type: Transform -- uid: 1017 - type: WallReinforced - components: - - pos: -14.5,43.5 - parent: 1 - type: Transform -- uid: 1018 - type: WallReinforced - components: - - pos: -14.5,42.5 - parent: 1 - type: Transform -- uid: 1019 - type: WallReinforced - components: - - pos: -14.5,41.5 - parent: 1 - type: Transform -- uid: 1020 - type: WallReinforced - components: - - pos: -14.5,40.5 - parent: 1 - type: Transform -- uid: 1021 - type: WallReinforced - components: - - pos: -11.5,42.5 - parent: 1 - type: Transform -- uid: 1022 - type: WallReinforced - components: - - pos: -11.5,41.5 - parent: 1 - type: Transform -- uid: 1023 - type: WallReinforced - components: - - pos: -11.5,40.5 - parent: 1 - type: Transform -- uid: 1024 - type: WallReinforced - components: - - pos: -8.5,42.5 - parent: 1 - type: Transform -- uid: 1025 - type: WallReinforced - components: - - pos: -8.5,41.5 - parent: 1 - type: Transform -- uid: 1026 - type: WallReinforced - components: - - pos: -8.5,40.5 - parent: 1 - type: Transform -- uid: 1027 - type: WallReinforced - components: - - pos: -5.5,42.5 - parent: 1 - type: Transform -- uid: 1028 - type: WallReinforced - components: - - pos: -5.5,41.5 - parent: 1 - type: Transform -- uid: 1029 - type: WallReinforced - components: - - pos: -5.5,40.5 - parent: 1 - type: Transform -- uid: 1030 - type: WallReinforced - components: - - pos: -2.5,42.5 - parent: 1 - type: Transform -- uid: 1031 - type: WallReinforced - components: - - pos: -2.5,41.5 - parent: 1 - type: Transform -- uid: 1032 - type: WallReinforced - components: - - pos: -2.5,40.5 - parent: 1 - type: Transform -- uid: 1033 - type: WallReinforced - components: - - pos: -8.5,35.5 - parent: 1 - type: Transform -- uid: 1034 - type: WallReinforced - components: - - pos: -8.5,32.5 - parent: 1 - type: Transform -- uid: 1035 - type: WallReinforced - components: - - pos: -8.5,34.5 - parent: 1 - type: Transform -- uid: 1036 - type: WallReinforced - components: - - pos: -4.5,34.5 - parent: 1 - type: Transform -- uid: 1037 - type: WallReinforced - components: - - pos: -4.5,33.5 - parent: 1 - type: Transform -- uid: 1038 - type: Grille - components: - - pos: -7.5,31.5 - parent: 1 - type: Transform -- uid: 1039 - type: Grille - components: - - pos: -5.5,31.5 - parent: 1 - type: Transform -- uid: 1040 - type: Grille - components: - - pos: -7.5,35.5 - parent: 1 - type: Transform -- uid: 1041 - type: Grille - components: - - pos: -6.5,35.5 - parent: 1 - type: Transform -- uid: 1042 - type: Grille - components: - - pos: -5.5,35.5 - parent: 1 - type: Transform -- uid: 1043 - type: WallReinforced - components: - - pos: -4.5,32.5 - parent: 1 - type: Transform -- uid: 1044 - type: Grille - components: - - pos: -4.5,30.5 - parent: 1 - type: Transform -- uid: 1045 - type: ReinforcedWindow - components: - - pos: -4.5,29.5 - parent: 1 - type: Transform -- uid: 1046 - type: Grille - components: - - pos: -4.5,28.5 - parent: 1 - type: Transform -- uid: 1047 - type: Grille - components: - - pos: -7.5,27.5 - parent: 1 - type: Transform -- uid: 1048 - type: BlastDoorOpen - components: - - pos: -6.5,27.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8572 - type: SignalReceiver -- uid: 1049 - type: Grille - components: - - pos: -5.5,27.5 - parent: 1 - type: Transform -- uid: 1050 - type: Grille - components: - - pos: -8.5,28.5 - parent: 1 - type: Transform -- uid: 1051 - type: Grille - components: - - pos: -8.5,29.5 - parent: 1 - type: Transform -- uid: 1052 - type: Grille - components: - - pos: -8.5,30.5 - parent: 1 - type: Transform -- uid: 1053 - type: WallReinforced - components: - - pos: -9.5,35.5 - parent: 1 - type: Transform -- uid: 1054 - type: WallReinforced - components: - - pos: -10.5,35.5 - parent: 1 - type: Transform -- uid: 1055 - type: WallReinforced - components: - - pos: -11.5,35.5 - parent: 1 - type: Transform -- uid: 1056 - type: WallReinforced - components: - - pos: -12.5,35.5 - parent: 1 - type: Transform -- uid: 1057 - type: WallReinforced - components: - - pos: -12.5,34.5 - parent: 1 - type: Transform -- uid: 1058 - type: WallReinforced - components: - - pos: -12.5,32.5 - parent: 1 - type: Transform -- uid: 1059 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -12.5,31.5 - parent: 1 - type: Transform -- uid: 1060 - type: WallReinforced - components: - - pos: -16.5,35.5 - parent: 1 - type: Transform -- uid: 1061 - type: Grille - components: - - pos: -19.5,35.5 - parent: 1 - type: Transform -- uid: 1062 - type: WallReinforced - components: - - pos: -17.5,35.5 - parent: 1 - type: Transform -- uid: 1063 - type: WallSolid - components: - - pos: -25.5,33.5 - parent: 1 - type: Transform -- uid: 1064 - type: Grille - components: - - pos: -22.5,22.5 - parent: 1 - type: Transform -- uid: 1065 - type: ShuttersNormal - components: - - pos: -13.5,35.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6627 - type: SignalReceiver -- uid: 1066 - type: ShuttersNormal - components: - - pos: -15.5,35.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6627 - type: SignalReceiver -- uid: 1067 - type: WallReinforced - components: - - pos: -17.5,29.5 - parent: 1 - type: Transform -- uid: 1068 - type: LockerScienceFilled - components: - - pos: -13.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1069 - type: VendingMachineSciDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,22.5 - parent: 1 - type: Transform -- uid: 1070 - type: LockerScienceFilled - components: - - pos: -13.5,22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1071 - type: LockerScienceFilled - components: - - pos: -19.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1072 - type: WallReinforced - components: - - pos: -25.5,18.5 - parent: 1 - type: Transform -- uid: 1073 - type: Grille - components: - - pos: -13.5,26.5 - parent: 1 - type: Transform -- uid: 1074 - type: WallReinforced - components: - - pos: -16.5,28.5 - parent: 1 - type: Transform -- uid: 1075 - type: WallReinforced - components: - - pos: -16.5,27.5 - parent: 1 - type: Transform -- uid: 1076 - type: WallReinforced - components: - - pos: -12.5,33.5 - parent: 1 - type: Transform -- uid: 1077 - type: ReinforcedWindow - components: - - pos: -7.5,35.5 - parent: 1 - type: Transform -- uid: 1078 - type: ReinforcedWindow - components: - - pos: -6.5,35.5 - parent: 1 - type: Transform -- uid: 1079 - type: ReinforcedWindow - components: - - pos: -5.5,35.5 - parent: 1 - type: Transform -- uid: 1080 - type: ReinforcedWindow - components: - - pos: -4.5,30.5 - parent: 1 - type: Transform -- uid: 1081 - type: Grille - components: - - pos: -12.5,30.5 - parent: 1 - type: Transform -- uid: 1082 - type: ReinforcedWindow - components: - - pos: -4.5,28.5 - parent: 1 - type: Transform -- uid: 1083 - type: ReinforcedWindow - components: - - pos: -7.5,27.5 - parent: 1 - type: Transform -- uid: 1084 - type: Grille - components: - - pos: -4.5,29.5 - parent: 1 - type: Transform -- uid: 1085 - type: ReinforcedWindow - components: - - pos: -5.5,27.5 - parent: 1 - type: Transform -- uid: 1086 - type: ReinforcedWindow - components: - - pos: -8.5,28.5 - parent: 1 - type: Transform -- uid: 1087 - type: ReinforcedWindow - components: - - pos: -8.5,29.5 - parent: 1 - type: Transform -- uid: 1088 - type: ReinforcedWindow - components: - - pos: -8.5,30.5 - parent: 1 - type: Transform -- uid: 1089 - type: ReinforcedWindow - components: - - pos: -7.5,31.5 - parent: 1 - type: Transform -- uid: 1090 - type: ReinforcedWindow - components: - - pos: -5.5,31.5 - parent: 1 - type: Transform -- uid: 1091 - type: ReinforcedWindow - components: - - pos: -2.5,30.5 - parent: 1 - type: Transform -- uid: 1092 - type: ReinforcedWindow - components: - - pos: -2.5,29.5 - parent: 1 - type: Transform -- uid: 1093 - type: ReinforcedWindow - components: - - pos: -2.5,28.5 - parent: 1 - type: Transform -- uid: 1094 - type: WallReinforced - components: - - pos: -13.5,29.5 - parent: 1 - type: Transform -- uid: 1095 - type: Grille - components: - - pos: -12.5,28.5 - parent: 1 - type: Transform -- uid: 1096 - type: Grille - components: - - pos: -12.5,27.5 - parent: 1 - type: Transform -- uid: 1097 - type: ReinforcedWindow - components: - - pos: -12.5,30.5 - parent: 1 - type: Transform -- uid: 1098 - type: WallReinforced - components: - - pos: -12.5,29.5 - parent: 1 - type: Transform -- uid: 1099 - type: ReinforcedWindow - components: - - pos: -12.5,28.5 - parent: 1 - type: Transform -- uid: 1100 - type: ReinforcedWindow - components: - - pos: -12.5,27.5 - parent: 1 - type: Transform -- uid: 1101 - type: WallReinforced - components: - - pos: -12.5,26.5 - parent: 1 - type: Transform -- uid: 1102 - type: Grille - components: - - pos: -15.5,26.5 - parent: 1 - type: Transform -- uid: 1103 - type: WallReinforced - components: - - pos: -16.5,26.5 - parent: 1 - type: Transform -- uid: 1104 - type: ReinforcedWindow - components: - - pos: -15.5,26.5 - parent: 1 - type: Transform -- uid: 1105 - type: ReinforcedWindow - components: - - pos: -13.5,26.5 - parent: 1 - type: Transform -- uid: 1106 - type: ShuttersNormal - components: - - pos: -14.5,35.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6627 - type: SignalReceiver -- uid: 1107 - type: WallReinforced - components: - - pos: -23.5,18.5 - parent: 1 - type: Transform -- uid: 1108 - type: ReinforcedWindow - components: - - pos: -22.5,19.5 - parent: 1 - type: Transform -- uid: 1109 - type: TablePlasmaGlass - components: - - pos: -9.5,27.5 - parent: 1 - type: Transform -- uid: 1110 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -11.5,26.5 - parent: 1 - type: Transform -- uid: 1111 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -9.5,26.5 - parent: 1 - type: Transform -- uid: 1112 - type: Grille - components: - - pos: -7.5,25.5 - parent: 1 - type: Transform -- uid: 1113 - type: Grille - components: - - pos: -6.5,25.5 - parent: 1 - type: Transform -- uid: 1114 - type: Grille - components: - - pos: -5.5,25.5 - parent: 1 - type: Transform -- uid: 1115 - type: ReinforcedWindow - components: - - pos: -7.5,25.5 - parent: 1 - type: Transform -- uid: 1116 - type: ReinforcedWindow - components: - - pos: -6.5,25.5 - parent: 1 - type: Transform -- uid: 1117 - type: ReinforcedWindow - components: - - pos: -5.5,25.5 - parent: 1 - type: Transform -- uid: 1118 - type: WallReinforced - components: - - pos: -7.5,16.5 - parent: 1 - type: Transform -- uid: 1119 - type: WallReinforced - components: - - pos: -8.5,16.5 - parent: 1 - type: Transform -- uid: 1120 - type: WallReinforced - components: - - pos: -9.5,16.5 - parent: 1 - type: Transform -- uid: 1121 - type: WallReinforced - components: - - pos: -10.5,19.5 - parent: 1 - type: Transform -- uid: 1122 - type: WallReinforced - components: - - pos: -10.5,20.5 - parent: 1 - type: Transform -- uid: 1123 - type: WallReinforced - components: - - pos: -9.5,20.5 - parent: 1 - type: Transform -- uid: 1124 - type: WallReinforced - components: - - pos: -8.5,20.5 - parent: 1 - type: Transform -- uid: 1125 - type: WallReinforced - components: - - pos: -7.5,20.5 - parent: 1 - type: Transform -- uid: 1126 - type: WallReinforced - components: - - pos: -10.5,16.5 - parent: 1 - type: Transform -- uid: 1127 - type: WallReinforced - components: - - pos: -13.5,16.5 - parent: 1 - type: Transform -- uid: 1128 - type: WallReinforced - components: - - pos: -13.5,17.5 - parent: 1 - type: Transform -- uid: 1129 - type: WallReinforced - components: - - pos: -14.5,16.5 - parent: 1 - type: Transform -- uid: 1130 - type: Grille - components: - - pos: -15.5,16.5 - parent: 1 - type: Transform -- uid: 1131 - type: Grille - components: - - pos: -16.5,16.5 - parent: 1 - type: Transform -- uid: 1132 - type: Grille - components: - - pos: -17.5,16.5 - parent: 1 - type: Transform -- uid: 1133 - type: ReinforcedWindow - components: - - pos: -15.5,16.5 - parent: 1 - type: Transform -- uid: 1134 - type: ReinforcedWindow - components: - - pos: -16.5,16.5 - parent: 1 - type: Transform -- uid: 1135 - type: ReinforcedWindow - components: - - pos: -17.5,16.5 - parent: 1 - type: Transform -- uid: 1136 - type: WallReinforced - components: - - pos: -18.5,16.5 - parent: 1 - type: Transform -- uid: 1137 - type: WallReinforced - components: - - pos: -19.5,16.5 - parent: 1 - type: Transform -- uid: 1138 - type: WallReinforced - components: - - pos: -19.5,17.5 - parent: 1 - type: Transform -- uid: 1139 - type: Grille - components: - - pos: -13.5,18.5 - parent: 1 - type: Transform -- uid: 1140 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -20.5,16.5 - parent: 1 - type: Transform -- uid: 1141 - type: WallReinforced - components: - - pos: -14.5,21.5 - parent: 1 - type: Transform -- uid: 1142 - type: WallReinforced - components: - - pos: -14.5,22.5 - parent: 1 - type: Transform -- uid: 1143 - type: WallSolid - components: - - pos: -24.5,35.5 - parent: 1 - type: Transform -- uid: 1144 - type: WallSolid - components: - - pos: -25.5,35.5 - parent: 1 - type: Transform -- uid: 1145 - type: Grille - components: - - pos: -13.5,19.5 - parent: 1 - type: Transform -- uid: 1146 - type: WallReinforced - components: - - pos: -13.5,20.5 - parent: 1 - type: Transform -- uid: 1147 - type: WallReinforced - components: - - pos: -13.5,21.5 - parent: 1 - type: Transform -- uid: 1148 - type: Grille - components: - - pos: -11.5,16.5 - parent: 1 - type: Transform -- uid: 1149 - type: Grille - components: - - pos: -12.5,16.5 - parent: 1 - type: Transform -- uid: 1150 - type: ReinforcedWindow - components: - - pos: -11.5,16.5 - parent: 1 - type: Transform -- uid: 1151 - type: ReinforcedWindow - components: - - pos: -12.5,16.5 - parent: 1 - type: Transform -- uid: 1152 - type: Grille - components: - - pos: -2.5,22.5 - parent: 1 - type: Transform -- uid: 1153 - type: Grille - components: - - pos: -2.5,23.5 - parent: 1 - type: Transform -- uid: 1154 - type: Grille - components: - - pos: -2.5,24.5 - parent: 1 - type: Transform -- uid: 1155 - type: Grille - components: - - pos: 1.5,22.5 - parent: 1 - type: Transform -- uid: 1156 - type: Grille - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform -- uid: 1157 - type: Grille - components: - - pos: 1.5,24.5 - parent: 1 - type: Transform -- uid: 1158 - type: ReinforcedWindow - components: - - pos: -2.5,24.5 - parent: 1 - type: Transform -- uid: 1159 - type: ReinforcedWindow - components: - - pos: -2.5,23.5 - parent: 1 - type: Transform -- uid: 1160 - type: ReinforcedWindow - components: - - pos: -2.5,22.5 - parent: 1 - type: Transform -- uid: 1161 - type: ReinforcedWindow - components: - - pos: 1.5,24.5 - parent: 1 - type: Transform -- uid: 1162 - type: ReinforcedWindow - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform -- uid: 1163 - type: ReinforcedWindow - components: - - pos: 1.5,22.5 - parent: 1 - type: Transform -- uid: 1164 - type: WallReinforced - components: - - pos: -8.5,24.5 - parent: 1 - type: Transform -- uid: 1165 - type: WallReinforced - components: - - pos: -8.5,23.5 - parent: 1 - type: Transform -- uid: 1166 - type: Grille - components: - - pos: -8.5,21.5 - parent: 1 - type: Transform -- uid: 1167 - type: ReinforcedWindow - components: - - pos: -8.5,21.5 - parent: 1 - type: Transform -- uid: 1168 - type: WallReinforced - components: - - pos: -17.5,26.5 - parent: 1 - type: Transform -- uid: 1169 - type: Grille - components: - - pos: -15.5,39.5 - parent: 1 - type: Transform -- uid: 1170 - type: WallReinforced - components: - - pos: -18.5,21.5 - parent: 1 - type: Transform -- uid: 1171 - type: WallReinforced - components: - - pos: -18.5,22.5 - parent: 1 - type: Transform -- uid: 1172 - type: WallReinforced - components: - - pos: -19.5,21.5 - parent: 1 - type: Transform -- uid: 1173 - type: WallReinforced - components: - - pos: -19.5,20.5 - parent: 1 - type: Transform -- uid: 1174 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -21.5,16.5 - parent: 1 - type: Transform -- uid: 1175 - type: WallReinforced - components: - - pos: -22.5,16.5 - parent: 1 - type: Transform -- uid: 1176 - type: Rack - components: - - rot: -1.5707963267948966 rad - pos: -20.5,11.5 - parent: 1 - type: Transform -- uid: 1177 - type: WallReinforced - components: - - pos: -22.5,18.5 - parent: 1 - type: Transform -- uid: 1178 - type: WallReinforced - components: - - pos: -26.5,24.5 - parent: 1 - type: Transform -- uid: 1179 - type: WallReinforced - components: - - pos: -22.5,21.5 - parent: 1 - type: Transform -- uid: 1180 - type: WallReinforced - components: - - pos: -25.5,24.5 - parent: 1 - type: Transform -- uid: 1181 - type: WallReinforced - components: - - pos: -24.5,24.5 - parent: 1 - type: Transform -- uid: 1182 - type: WallReinforced - components: - - pos: -23.5,24.5 - parent: 1 - type: Transform -- uid: 1183 - type: WallReinforced - components: - - pos: -22.5,24.5 - parent: 1 - type: Transform -- uid: 1184 - type: WallReinforced - components: - - pos: -22.5,25.5 - parent: 1 - type: Transform -- uid: 1185 - type: WallReinforced - components: - - pos: -22.5,26.5 - parent: 1 - type: Transform -- uid: 1186 - type: WallReinforced - components: - - pos: -21.5,26.5 - parent: 1 - type: Transform -- uid: 1187 - type: WallReinforced - components: - - pos: -19.5,26.5 - parent: 1 - type: Transform -- uid: 1188 - type: WallReinforced - components: - - pos: -18.5,26.5 - parent: 1 - type: Transform -- uid: 1189 - type: WallReinforced - components: - - pos: -26.5,23.5 - parent: 1 - type: Transform -- uid: 1190 - type: WallReinforced - components: - - pos: -26.5,22.5 - parent: 1 - type: Transform -- uid: 1191 - type: WallReinforced - components: - - pos: -26.5,21.5 - parent: 1 - type: Transform -- uid: 1192 - type: WallReinforced - components: - - pos: -26.5,20.5 - parent: 1 - type: Transform -- uid: 1193 - type: WallReinforced - components: - - pos: -26.5,19.5 - parent: 1 - type: Transform -- uid: 1194 - type: WallReinforced - components: - - pos: -26.5,18.5 - parent: 1 - type: Transform -- uid: 1195 - type: WallReinforced - components: - - pos: -24.5,18.5 - parent: 1 - type: Transform -- uid: 1196 - type: WallReinforced - components: - - pos: -22.5,35.5 - parent: 1 - type: Transform -- uid: 1197 - type: WallReinforced - components: - - pos: -16.5,29.5 - parent: 1 - type: Transform -- uid: 1198 - type: TablePlasmaGlass - components: - - pos: -18.5,30.5 - parent: 1 - type: Transform -- uid: 1199 - type: WallSolid - components: - - pos: -26.5,16.5 - parent: 1 - type: Transform -- uid: 1200 - type: WallSolid - components: - - pos: -27.5,16.5 - parent: 1 - type: Transform -- uid: 1201 - type: WallSolid - components: - - pos: -28.5,16.5 - parent: 1 - type: Transform -- uid: 1202 - type: WallSolid - components: - - pos: -29.5,16.5 - parent: 1 - type: Transform -- uid: 1203 - type: WallSolid - components: - - pos: -29.5,22.5 - parent: 1 - type: Transform -- uid: 1204 - type: WallSolid - components: - - pos: -29.5,22.5 - parent: 1 - type: Transform -- uid: 1205 - type: WallSolid - components: - - pos: -29.5,21.5 - parent: 1 - type: Transform -- uid: 1206 - type: WallSolid - components: - - pos: -29.5,20.5 - parent: 1 - type: Transform -- uid: 1207 - type: WallSolid - components: - - pos: -29.5,19.5 - parent: 1 - type: Transform -- uid: 1208 - type: WallSolid - components: - - pos: -29.5,18.5 - parent: 1 - type: Transform -- uid: 1209 - type: WallSolid - components: - - pos: -29.5,17.5 - parent: 1 - type: Transform -- uid: 1210 - type: WallSolid - components: - - pos: -29.5,24.5 - parent: 1 - type: Transform -- uid: 1211 - type: WallSolid - components: - - pos: -29.5,25.5 - parent: 1 - type: Transform -- uid: 1212 - type: WallSolid - components: - - pos: -29.5,26.5 - parent: 1 - type: Transform -- uid: 1213 - type: WallSolid - components: - - pos: -29.5,27.5 - parent: 1 - type: Transform -- uid: 1214 - type: WallSolid - components: - - pos: -29.5,28.5 - parent: 1 - type: Transform -- uid: 1215 - type: WallSolid - components: - - pos: -28.5,24.5 - parent: 1 - type: Transform -- uid: 1216 - type: WallSolid - components: - - pos: -28.5,28.5 - parent: 1 - type: Transform -- uid: 1217 - type: WallSolid - components: - - pos: -27.5,28.5 - parent: 1 - type: Transform -- uid: 1218 - type: WallSolid - components: - - pos: -26.5,28.5 - parent: 1 - type: Transform -- uid: 1219 - type: WallSolid - components: - - pos: -33.5,17.5 - parent: 1 - type: Transform -- uid: 1220 - type: WallSolid - components: - - pos: -24.5,28.5 - parent: 1 - type: Transform -- uid: 1221 - type: WallSolid - components: - - pos: -25.5,28.5 - parent: 1 - type: Transform -- uid: 1222 - type: WallSolid - components: - - pos: -22.5,28.5 - parent: 1 - type: Transform -- uid: 1223 - type: WallSolid - components: - - pos: -21.5,28.5 - parent: 1 - type: Transform -- uid: 1224 - type: CableHV - components: - - pos: -20.5,28.5 - parent: 1 - type: Transform -- uid: 1225 - type: WallSolid - components: - - pos: -19.5,28.5 - parent: 1 - type: Transform -- uid: 1226 - type: WallReinforced - components: - - pos: -19.5,30.5 - parent: 1 - type: Transform -- uid: 1227 - type: WallReinforced - components: - - pos: -21.5,31.5 - parent: 1 - type: Transform -- uid: 1228 - type: WallSolid - components: - - pos: -25.5,34.5 - parent: 1 - type: Transform -- uid: 1229 - type: Rack - components: - - rot: -1.5707963267948966 rad - pos: -18.5,10.5 - parent: 1 - type: Transform -- uid: 1230 - type: WallReinforced - components: - - pos: -22.5,32.5 - parent: 1 - type: Transform -- uid: 1231 - type: WallReinforced - components: - - pos: -22.5,33.5 - parent: 1 - type: Transform -- uid: 1232 - type: WallReinforced - components: - - pos: -22.5,34.5 - parent: 1 - type: Transform -- uid: 1233 - type: WallReinforced - components: - - pos: -22.5,31.5 - parent: 1 - type: Transform -- uid: 1234 - type: WallSolid - components: - - pos: 8.5,12.5 - parent: 1 - type: Transform -- uid: 1235 - type: WallSolid - components: - - pos: 4.5,8.5 - parent: 1 - type: Transform -- uid: 1236 - type: WallReinforced - components: - - pos: -19.5,31.5 - parent: 1 - type: Transform -- uid: 1237 - type: WallReinforced - components: - - pos: -21.5,35.5 - parent: 1 - type: Transform -- uid: 1238 - type: ReinforcedWindow - components: - - pos: -19.5,35.5 - parent: 1 - type: Transform -- uid: 1239 - type: ReinforcedWindow - components: - - pos: -22.5,22.5 - parent: 1 - type: Transform -- uid: 1240 - type: Rack - components: - - rot: -1.5707963267948966 rad - pos: -18.5,11.5 - parent: 1 - type: Transform -- uid: 1241 - type: Grille - components: - - pos: -22.5,19.5 - parent: 1 - type: Transform -- uid: 1242 - type: WallReinforced - components: - - pos: -20.5,31.5 - parent: 1 - type: Transform -- uid: 1243 - type: WallSolid - components: - - pos: -22.5,30.5 - parent: 1 - type: Transform -- uid: 1244 - type: WallSolid - components: - - pos: -22.5,29.5 - parent: 1 - type: Transform -- uid: 1245 - type: WallSolid - components: - - pos: -29.5,35.5 - parent: 1 - type: Transform -- uid: 1246 - type: WallSolid - components: - - pos: -26.5,35.5 - parent: 1 - type: Transform -- uid: 1247 - type: WallSolid - components: - - pos: -29.5,32.5 - parent: 1 - type: Transform -- uid: 1248 - type: WallSolid - components: - - pos: -29.5,31.5 - parent: 1 - type: Transform -- uid: 1249 - type: WallSolid - components: - - pos: -33.5,18.5 - parent: 1 - type: Transform -- uid: 1250 - type: WallSolid - components: - - pos: -33.5,19.5 - parent: 1 - type: Transform -- uid: 1251 - type: WallSolid - components: - - pos: -33.5,20.5 - parent: 1 - type: Transform -- uid: 1252 - type: WallSolid - components: - - pos: -33.5,21.5 - parent: 1 - type: Transform -- uid: 1253 - type: WallSolid - components: - - pos: -33.5,22.5 - parent: 1 - type: Transform -- uid: 1254 - type: WallSolid - components: - - pos: -33.5,24.5 - parent: 1 - type: Transform -- uid: 1255 - type: WallSolid - components: - - pos: -33.5,25.5 - parent: 1 - type: Transform -- uid: 1256 - type: WallSolid - components: - - pos: -33.5,26.5 - parent: 1 - type: Transform -- uid: 1257 - type: WallSolid - components: - - pos: -33.5,27.5 - parent: 1 - type: Transform -- uid: 1258 - type: WallSolid - components: - - pos: -33.5,28.5 - parent: 1 - type: Transform -- uid: 1259 - type: WallSolid - components: - - pos: -33.5,29.5 - parent: 1 - type: Transform -- uid: 1260 - type: WallSolid - components: - - pos: -33.5,30.5 - parent: 1 - type: Transform -- uid: 1261 - type: WallSolid - components: - - pos: -33.5,31.5 - parent: 1 - type: Transform -- uid: 1262 - type: WallSolid - components: - - pos: -33.5,32.5 - parent: 1 - type: Transform -- uid: 1263 - type: WallSolid - components: - - pos: -33.5,33.5 - parent: 1 - type: Transform -- uid: 1264 - type: WallSolid - components: - - pos: -33.5,34.5 - parent: 1 - type: Transform -- uid: 1265 - type: WallSolid - components: - - pos: -33.5,35.5 - parent: 1 - type: Transform -- uid: 1266 - type: WallSolid - components: - - pos: -34.5,35.5 - parent: 1 - type: Transform -- uid: 1267 - type: WallSolid - components: - - pos: -35.5,35.5 - parent: 1 - type: Transform -- uid: 1268 - type: WallReinforced - components: - - pos: -40.5,35.5 - parent: 1 - type: Transform -- uid: 1269 - type: WallReinforced - components: - - pos: -44.5,35.5 - parent: 1 - type: Transform -- uid: 1270 - type: WallReinforced - components: - - pos: -45.5,35.5 - parent: 1 - type: Transform -- uid: 1271 - type: WallReinforced - components: - - pos: -45.5,34.5 - parent: 1 - type: Transform -- uid: 1272 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1273 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: -47.5,35.5 - parent: 1 - type: Transform -- uid: 1274 - type: WallReinforced - components: - - pos: -51.5,16.5 - parent: 1 - type: Transform -- uid: 1275 - type: WallReinforced - components: - - pos: -53.5,16.5 - parent: 1 - type: Transform -- uid: 1276 - type: WallReinforced - components: - - pos: -53.5,14.5 - parent: 1 - type: Transform -- uid: 1277 - type: WallReinforced - components: - - pos: -51.5,14.5 - parent: 1 - type: Transform -- uid: 1278 - type: Grille - components: - - pos: -47.5,17.5 - parent: 1 - type: Transform -- uid: 1279 - type: ReinforcedWindow - components: - - pos: -49.5,17.5 - parent: 1 - type: Transform -- uid: 1280 - type: Grille - components: - - pos: -49.5,32.5 - parent: 1 - type: Transform -- uid: 1281 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -46.5,16.5 - parent: 1 - type: Transform -- uid: 1282 - type: Grille - components: - - pos: -46.5,34.5 - parent: 1 - type: Transform -- uid: 1283 - type: Grille - components: - - pos: -49.5,34.5 - parent: 1 - type: Transform -- uid: 1284 - type: PottedPlantRandom - components: - - pos: -47.5,16.5 - parent: 1 - type: Transform -- uid: 1285 - type: WallReinforced - components: - - pos: -53.5,35.5 - parent: 1 - type: Transform -- uid: 1286 - type: WallReinforced - components: - - pos: -51.5,35.5 - parent: 1 - type: Transform -- uid: 1287 - type: WallReinforced - components: - - pos: -53.5,37.5 - parent: 1 - type: Transform -- uid: 1288 - type: WallReinforced - components: - - pos: -53.5,39.5 - parent: 1 - type: Transform -- uid: 1289 - type: WallReinforced - components: - - pos: -51.5,37.5 - parent: 1 - type: Transform -- uid: 1290 - type: ReinforcedWindow - components: - - pos: -46.5,34.5 - parent: 1 - type: Transform -- uid: 1291 - type: ReinforcedWindow - components: - - pos: -50.5,34.5 - parent: 1 - type: Transform -- uid: 1292 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -46.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1293 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1294 - type: ReinforcedWindow - components: - - pos: -46.5,17.5 - parent: 1 - type: Transform -- uid: 1295 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -48.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1296 - type: ReinforcedWindow - components: - - pos: -49.5,34.5 - parent: 1 - type: Transform -- uid: 1297 - type: ComfyChair - components: - - pos: -48.5,16.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1298 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -53.5,36.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 1299 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -53.5,38.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 1300 - type: WallSolid - components: - - pos: -25.5,30.5 - parent: 1 - type: Transform -- uid: 1301 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -22.5,20.5 - parent: 1 - type: Transform -- uid: 1302 - type: WallSolid - components: - - pos: -25.5,29.5 - parent: 1 - type: Transform -- uid: 1303 - type: ReinforcedWindow - components: - - pos: -22.5,20.5 - parent: 1 - type: Transform -- uid: 1304 - type: WallSolid - components: - - pos: -25.5,31.5 - parent: 1 - type: Transform -- uid: 1305 - type: WallSolid - components: - - pos: -25.5,32.5 - parent: 1 - type: Transform -- uid: 1306 - type: TablePlasmaGlass - components: - - pos: -17.5,30.5 - parent: 1 - type: Transform -- uid: 1307 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -18.5,23.5 - parent: 1 - type: Transform -- uid: 1308 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -14.5,23.5 - parent: 1 - type: Transform -- uid: 1309 - type: TablePlasmaGlass - components: - - pos: -10.5,34.5 - parent: 1 - type: Transform -- uid: 1310 - type: TablePlasmaGlass - components: - - pos: -11.5,34.5 - parent: 1 - type: Transform -- uid: 1311 - type: Grille - components: - - pos: -15.5,23.5 - parent: 1 - type: Transform -- uid: 1312 - type: Grille - components: - - pos: -16.5,23.5 - parent: 1 - type: Transform -- uid: 1313 - type: Grille - components: - - pos: -17.5,23.5 - parent: 1 - type: Transform -- uid: 1314 - type: Grille - components: - - pos: -16.5,39.5 - parent: 1 - type: Transform -- uid: 1315 - type: WallReinforced - components: - - pos: -17.5,39.5 - parent: 1 - type: Transform -- uid: 1316 - type: Grille - components: - - pos: -18.5,39.5 - parent: 1 - type: Transform -- uid: 1317 - type: Grille - components: - - pos: -19.5,39.5 - parent: 1 - type: Transform -- uid: 1318 - type: WallReinforced - components: - - pos: -20.5,39.5 - parent: 1 - type: Transform -- uid: 1319 - type: WallReinforced - components: - - pos: -20.5,40.5 - parent: 1 - type: Transform -- uid: 1320 - type: WallReinforced - components: - - pos: -20.5,41.5 - parent: 1 - type: Transform -- uid: 1321 - type: WallReinforced - components: - - pos: -20.5,42.5 - parent: 1 - type: Transform -- uid: 1322 - type: WallReinforced - components: - - pos: -20.5,43.5 - parent: 1 - type: Transform -- uid: 1323 - type: ReinforcedWindow - components: - - pos: -19.5,39.5 - parent: 1 - type: Transform -- uid: 1324 - type: ReinforcedWindow - components: - - pos: -18.5,39.5 - parent: 1 - type: Transform -- uid: 1325 - type: ReinforcedWindow - components: - - pos: -16.5,39.5 - parent: 1 - type: Transform -- uid: 1326 - type: ReinforcedWindow - components: - - pos: -15.5,39.5 - parent: 1 - type: Transform -- uid: 1327 - type: ReinforcedWindow - components: - - pos: -13.5,39.5 - parent: 1 - type: Transform -- uid: 1328 - type: ReinforcedWindow - components: - - pos: -12.5,39.5 - parent: 1 - type: Transform -- uid: 1329 - type: ReinforcedWindow - components: - - pos: -10.5,39.5 - parent: 1 - type: Transform -- uid: 1330 - type: ReinforcedWindow - components: - - pos: -9.5,39.5 - parent: 1 - type: Transform -- uid: 1331 - type: ReinforcedWindow - components: - - pos: -7.5,39.5 - parent: 1 - type: Transform -- uid: 1332 - type: ReinforcedWindow - components: - - pos: -6.5,39.5 - parent: 1 - type: Transform -- uid: 1333 - type: ReinforcedWindow - components: - - pos: -4.5,39.5 - parent: 1 - type: Transform -- uid: 1334 - type: ReinforcedWindow - components: - - pos: -3.5,39.5 - parent: 1 - type: Transform -- uid: 1335 - type: WallReinforced - components: - - pos: -2.5,44.5 - parent: 1 - type: Transform -- uid: 1336 - type: WallReinforced - components: - - pos: -2.5,45.5 - parent: 1 - type: Transform -- uid: 1337 - type: WallReinforced - components: - - pos: -2.5,46.5 - parent: 1 - type: Transform -- uid: 1338 - type: WallReinforced - components: - - pos: -2.5,47.5 - parent: 1 - type: Transform -- uid: 1339 - type: WallReinforced - components: - - pos: -2.5,49.5 - parent: 1 - type: Transform -- uid: 1340 - type: WallReinforced - components: - - pos: -2.5,51.5 - parent: 1 - type: Transform -- uid: 1341 - type: WallReinforced - components: - - pos: -3.5,51.5 - parent: 1 - type: Transform -- uid: 1342 - type: WallReinforced - components: - - pos: -4.5,51.5 - parent: 1 - type: Transform -- uid: 1343 - type: WallReinforced - components: - - pos: -4.5,55.5 - parent: 1 - type: Transform -- uid: 1344 - type: WallReinforced - components: - - pos: -5.5,51.5 - parent: 1 - type: Transform -- uid: 1345 - type: WallReinforced - components: - - pos: -6.5,51.5 - parent: 1 - type: Transform -- uid: 1346 - type: Grille - components: - - pos: -4.5,57.5 - parent: 1 - type: Transform -- uid: 1347 - type: Grille - components: - - pos: -4.5,56.5 - parent: 1 - type: Transform -- uid: 1348 - type: WallReinforced - components: - - pos: -4.5,58.5 - parent: 1 - type: Transform -- uid: 1349 - type: WallReinforced - components: - - pos: -3.5,58.5 - parent: 1 - type: Transform -- uid: 1350 - type: WallReinforced - components: - - pos: -2.5,58.5 - parent: 1 - type: Transform -- uid: 1351 - type: ReinforcedWindow - components: - - pos: -4.5,56.5 - parent: 1 - type: Transform -- uid: 1352 - type: ReinforcedWindow - components: - - pos: -4.5,57.5 - parent: 1 - type: Transform -- uid: 1353 - type: WallReinforced - components: - - pos: -7.5,51.5 - parent: 1 - type: Transform -- uid: 1354 - type: WallReinforced - components: - - pos: -7.5,54.5 - parent: 1 - type: Transform -- uid: 1355 - type: WallReinforced - components: - - pos: -16.5,57.5 - parent: 1 - type: Transform -- uid: 1356 - type: WallReinforced - components: - - pos: -7.5,58.5 - parent: 1 - type: Transform -- uid: 1357 - type: WallReinforced - components: - - pos: -6.5,58.5 - parent: 1 - type: Transform -- uid: 1358 - type: WallReinforced - components: - - pos: -5.5,58.5 - parent: 1 - type: Transform -- uid: 1359 - type: WallSolid - components: - - pos: -22.5,39.5 - parent: 1 - type: Transform -- uid: 1360 - type: Grille - components: - - pos: -7.5,53.5 - parent: 1 - type: Transform -- uid: 1361 - type: Grille - components: - - pos: -7.5,52.5 - parent: 1 - type: Transform -- uid: 1362 - type: ReinforcedWindow - components: - - pos: -7.5,53.5 - parent: 1 - type: Transform -- uid: 1363 - type: ReinforcedWindow - components: - - pos: -7.5,52.5 - parent: 1 - type: Transform -- uid: 1364 - type: WallReinforced - components: - - pos: -11.5,62.5 - parent: 1 - type: Transform -- uid: 1365 - type: WallReinforced - components: - - pos: -5.5,49.5 - parent: 1 - type: Transform -- uid: 1366 - type: WallReinforced - components: - - pos: -5.5,47.5 - parent: 1 - type: Transform -- uid: 1367 - type: ReinforcedWindow - components: - - pos: -13.5,43.5 - parent: 1 - type: Transform -- uid: 1368 - type: ReinforcedWindow - components: - - pos: -10.5,43.5 - parent: 1 - type: Transform -- uid: 1369 - type: ReinforcedWindow - components: - - pos: -7.5,43.5 - parent: 1 - type: Transform -- uid: 1370 - type: ReinforcedWindow - components: - - pos: -4.5,43.5 - parent: 1 - type: Transform -- uid: 1371 - type: ReinforcedWindow - components: - - pos: -3.5,47.5 - parent: 1 - type: Transform -- uid: 1372 - type: ReinforcedWindow - components: - - pos: -4.5,47.5 - parent: 1 - type: Transform -- uid: 1373 - type: Grille - components: - - pos: -3.5,47.5 - parent: 1 - type: Transform -- uid: 1374 - type: Grille - components: - - pos: -4.5,47.5 - parent: 1 - type: Transform -- uid: 1375 - type: Grille - components: - - pos: -4.5,43.5 - parent: 1 - type: Transform -- uid: 1376 - type: Grille - components: - - pos: -7.5,43.5 - parent: 1 - type: Transform -- uid: 1377 - type: Grille - components: - - pos: -10.5,43.5 - parent: 1 - type: Transform -- uid: 1378 - type: Grille - components: - - pos: -13.5,43.5 - parent: 1 - type: Transform -- uid: 1379 - type: Grille - components: - - pos: -13.5,39.5 - parent: 1 - type: Transform -- uid: 1380 - type: Grille - components: - - pos: -12.5,39.5 - parent: 1 - type: Transform -- uid: 1381 - type: Grille - components: - - pos: -10.5,39.5 - parent: 1 - type: Transform -- uid: 1382 - type: Grille - components: - - pos: -9.5,39.5 - parent: 1 - type: Transform -- uid: 1383 - type: Grille - components: - - pos: -7.5,39.5 - parent: 1 - type: Transform -- uid: 1384 - type: Grille - components: - - pos: -6.5,39.5 - parent: 1 - type: Transform -- uid: 1385 - type: Grille - components: - - pos: -4.5,39.5 - parent: 1 - type: Transform -- uid: 1386 - type: Grille - components: - - pos: -3.5,39.5 - parent: 1 - type: Transform -- uid: 1387 - type: Grille - components: - - pos: -15.5,43.5 - parent: 1 - type: Transform -- uid: 1388 - type: Grille - components: - - pos: -16.5,43.5 - parent: 1 - type: Transform -- uid: 1389 - type: Grille - components: - - pos: -19.5,43.5 - parent: 1 - type: Transform -- uid: 1390 - type: Grille - components: - - pos: -18.5,43.5 - parent: 1 - type: Transform -- uid: 1391 - type: ReinforcedWindow - components: - - pos: -19.5,43.5 - parent: 1 - type: Transform -- uid: 1392 - type: ReinforcedWindow - components: - - pos: -18.5,43.5 - parent: 1 - type: Transform -- uid: 1393 - type: ReinforcedWindow - components: - - pos: -16.5,43.5 - parent: 1 - type: Transform -- uid: 1394 - type: ReinforcedWindow - components: - - pos: -15.5,43.5 - parent: 1 - type: Transform -- uid: 1395 - type: WallReinforced - components: - - pos: -20.5,44.5 - parent: 1 - type: Transform -- uid: 1396 - type: WallReinforced - components: - - pos: -20.5,45.5 - parent: 1 - type: Transform -- uid: 1397 - type: WallReinforced - components: - - pos: -20.5,46.5 - parent: 1 - type: Transform -- uid: 1398 - type: WallReinforced - components: - - pos: -20.5,49.5 - parent: 1 - type: Transform -- uid: 1399 - type: WallReinforced - components: - - pos: -20.5,50.5 - parent: 1 - type: Transform -- uid: 1400 - type: WallReinforced - components: - - pos: -20.5,51.5 - parent: 1 - type: Transform -- uid: 1401 - type: WallReinforced - components: - - pos: -20.5,52.5 - parent: 1 - type: Transform -- uid: 1402 - type: WallReinforced - components: - - pos: -20.5,53.5 - parent: 1 - type: Transform -- uid: 1403 - type: WallReinforced - components: - - pos: -15.5,47.5 - parent: 1 - type: Transform -- uid: 1404 - type: WallReinforced - components: - - pos: -10.5,47.5 - parent: 1 - type: Transform -- uid: 1405 - type: WallReinforced - components: - - pos: -10.5,51.5 - parent: 1 - type: Transform -- uid: 1406 - type: WallReinforced - components: - - pos: -15.5,51.5 - parent: 1 - type: Transform -- uid: 1407 - type: Grille - components: - - pos: -10.5,50.5 - parent: 1 - type: Transform -- uid: 1408 - type: Grille - components: - - pos: -14.5,51.5 - parent: 1 - type: Transform -- uid: 1409 - type: Grille - components: - - pos: -13.5,51.5 - parent: 1 - type: Transform -- uid: 1410 - type: Grille - components: - - pos: -11.5,51.5 - parent: 1 - type: Transform -- uid: 1411 - type: Grille - components: - - pos: -15.5,50.5 - parent: 1 - type: Transform -- uid: 1412 - type: Grille - components: - - pos: -14.5,47.5 - parent: 1 - type: Transform -- uid: 1413 - type: Grille - components: - - pos: -11.5,47.5 - parent: 1 - type: Transform -- uid: 1414 - type: TableReinforced - components: - - pos: -13.5,47.5 - parent: 1 - type: Transform -- uid: 1415 - type: TableReinforced - components: - - pos: -12.5,47.5 - parent: 1 - type: Transform -- uid: 1416 - type: Grille - components: - - pos: -15.5,48.5 - parent: 1 - type: Transform -- uid: 1417 - type: Grille - components: - - pos: -15.5,49.5 - parent: 1 - type: Transform -- uid: 1418 - type: TableReinforced - components: - - pos: -10.5,49.5 - parent: 1 - type: Transform -- uid: 1419 - type: TableReinforced - components: - - pos: -10.5,48.5 - parent: 1 - type: Transform -- uid: 1420 - type: WallReinforced - components: - - pos: -20.5,54.5 - parent: 1 - type: Transform -- uid: 1421 - type: WallReinforced - components: - - pos: -19.5,54.5 - parent: 1 - type: Transform -- uid: 1422 - type: WallReinforced - components: - - pos: -18.5,54.5 - parent: 1 - type: Transform -- uid: 1423 - type: WallReinforced - components: - - pos: -17.5,54.5 - parent: 1 - type: Transform -- uid: 1424 - type: WallReinforced - components: - - pos: -13.5,57.5 - parent: 1 - type: Transform -- uid: 1425 - type: WallReinforced - components: - - pos: -12.5,57.5 - parent: 1 - type: Transform -- uid: 1426 - type: WallReinforced - components: - - pos: -17.5,56.5 - parent: 1 - type: Transform -- uid: 1427 - type: Grille - components: - - pos: -15.5,57.5 - parent: 1 - type: Transform -- uid: 1428 - type: WallReinforced - components: - - pos: -16.5,61.5 - parent: 1 - type: Transform -- uid: 1429 - type: WallReinforced - components: - - pos: -12.5,60.5 - parent: 1 - type: Transform -- uid: 1430 - type: WallReinforced - components: - - pos: -17.5,58.5 - parent: 1 - type: Transform -- uid: 1431 - type: WallReinforced - components: - - pos: -15.5,61.5 - parent: 1 - type: Transform -- uid: 1432 - type: WallReinforced - components: - - pos: -14.5,61.5 - parent: 1 - type: Transform -- uid: 1433 - type: WallReinforced - components: - - pos: -17.5,60.5 - parent: 1 - type: Transform -- uid: 1434 - type: WallReinforced - components: - - pos: -17.5,61.5 - parent: 1 - type: Transform -- uid: 1435 - type: WallReinforced - components: - - pos: -17.5,59.5 - parent: 1 - type: Transform -- uid: 1436 - type: WallReinforced - components: - - pos: -10.5,62.5 - parent: 1 - type: Transform -- uid: 1437 - type: WallReinforced - components: - - pos: -7.5,57.5 - parent: 1 - type: Transform -- uid: 1438 - type: Grille - components: - - pos: -8.5,61.5 - parent: 1 - type: Transform -- uid: 1439 - type: WallReinforced - components: - - pos: -10.5,61.5 - parent: 1 - type: Transform -- uid: 1440 - type: Grille - components: - - pos: -24.5,43.5 - parent: 1 - type: Transform -- uid: 1441 - type: Grille - components: - - pos: -24.5,44.5 - parent: 1 - type: Transform -- uid: 1442 - type: ReinforcedWindow - components: - - pos: -24.5,44.5 - parent: 1 - type: Transform -- uid: 1443 - type: ReinforcedWindow - components: - - pos: -24.5,43.5 - parent: 1 - type: Transform -- uid: 1444 - type: ReinforcedWindow - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform -- uid: 1445 - type: WallReinforced - components: - - pos: -10.5,66.5 - parent: 1 - type: Transform -- uid: 1446 - type: WallReinforced - components: - - pos: -10.5,65.5 - parent: 1 - type: Transform -- uid: 1447 - type: WallReinforced - components: - - pos: -10.5,64.5 - parent: 1 - type: Transform -- uid: 1448 - type: ReinforcedWindow - components: - - pos: -15.5,49.5 - parent: 1 - type: Transform -- uid: 1449 - type: ReinforcedWindow - components: - - pos: -15.5,48.5 - parent: 1 - type: Transform -- uid: 1450 - type: Grille - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform -- uid: 1451 - type: WallSolid - components: - - pos: -23.5,39.5 - parent: 1 - type: Transform -- uid: 1452 - type: WallReinforced - components: - - pos: -10.5,63.5 - parent: 1 - type: Transform -- uid: 1453 - type: WallReinforced - components: - - pos: -23.5,49.5 - parent: 1 - type: Transform -- uid: 1454 - type: WallReinforced - components: - - pos: -23.5,46.5 - parent: 1 - type: Transform -- uid: 1455 - type: WallReinforced - components: - - pos: -24.5,46.5 - parent: 1 - type: Transform -- uid: 1456 - type: WallReinforced - components: - - pos: -25.5,46.5 - parent: 1 - type: Transform -- uid: 1457 - type: WallReinforced - components: - - pos: -24.5,49.5 - parent: 1 - type: Transform -- uid: 1458 - type: WallReinforced - components: - - pos: -25.5,49.5 - parent: 1 - type: Transform -- uid: 1459 - type: WallReinforced - components: - - pos: -26.5,46.5 - parent: 1 - type: Transform -- uid: 1460 - type: WallReinforced - components: - - pos: -26.5,45.5 - parent: 1 - type: Transform -- uid: 1461 - type: Grille - components: - - pos: -26.5,44.5 - parent: 1 - type: Transform -- uid: 1462 - type: Grille - components: - - pos: -26.5,43.5 - parent: 1 - type: Transform -- uid: 1463 - type: Grille - components: - - pos: -26.5,42.5 - parent: 1 - type: Transform -- uid: 1464 - type: WallReinforced - components: - - pos: -26.5,41.5 - parent: 1 - type: Transform -- uid: 1465 - type: WallReinforced - components: - - pos: -27.5,41.5 - parent: 1 - type: Transform -- uid: 1466 - type: WallReinforced - components: - - pos: -28.5,41.5 - parent: 1 - type: Transform -- uid: 1467 - type: WallReinforced - components: - - pos: -24.5,41.5 - parent: 1 - type: Transform -- uid: 1468 - type: WallReinforced - components: - - pos: -24.5,40.5 - parent: 1 - type: Transform -- uid: 1469 - type: Grille - components: - - pos: -35.5,41.5 - parent: 1 - type: Transform -- uid: 1470 - type: WallReinforced - components: - - pos: -38.5,41.5 - parent: 1 - type: Transform -- uid: 1471 - type: WallReinforced - components: - - pos: -39.5,41.5 - parent: 1 - type: Transform -- uid: 1472 - type: Grille - components: - - pos: -34.5,39.5 - parent: 1 - type: Transform -- uid: 1473 - type: Grille - components: - - pos: -34.5,41.5 - parent: 1 - type: Transform -- uid: 1474 - type: Grille - components: - - pos: -39.5,46.5 - parent: 1 - type: Transform -- uid: 1475 - type: Grille - components: - - pos: -39.5,45.5 - parent: 1 - type: Transform -- uid: 1476 - type: WallReinforced - components: - - pos: -41.5,44.5 - parent: 1 - type: Transform -- uid: 1477 - type: WallReinforced - components: - - pos: -26.5,49.5 - parent: 1 - type: Transform -- uid: 1478 - type: WallReinforced - components: - - pos: -26.5,51.5 - parent: 1 - type: Transform -- uid: 1479 - type: WallReinforced - components: - - pos: -26.5,50.5 - parent: 1 - type: Transform -- uid: 1480 - type: WallReinforced - components: - - pos: -27.5,51.5 - parent: 1 - type: Transform -- uid: 1481 - type: WallReinforced - components: - - pos: -28.5,51.5 - parent: 1 - type: Transform -- uid: 1482 - type: WallReinforced - components: - - pos: -29.5,51.5 - parent: 1 - type: Transform -- uid: 1483 - type: WallReinforced - components: - - pos: -30.5,51.5 - parent: 1 - type: Transform -- uid: 1484 - type: WallReinforced - components: - - pos: -31.5,51.5 - parent: 1 - type: Transform -- uid: 1485 - type: WallReinforced - components: - - pos: -32.5,51.5 - parent: 1 - type: Transform -- uid: 1486 - type: WallReinforced - components: - - pos: -33.5,51.5 - parent: 1 - type: Transform -- uid: 1487 - type: WallReinforced - components: - - pos: -34.5,51.5 - parent: 1 - type: Transform -- uid: 1488 - type: WallReinforced - components: - - pos: -35.5,51.5 - parent: 1 - type: Transform -- uid: 1489 - type: WallReinforced - components: - - pos: -36.5,51.5 - parent: 1 - type: Transform -- uid: 1490 - type: WallReinforced - components: - - pos: -37.5,51.5 - parent: 1 - type: Transform -- uid: 1491 - type: WallReinforced - components: - - pos: -38.5,51.5 - parent: 1 - type: Transform -- uid: 1492 - type: WallReinforced - components: - - pos: -39.5,51.5 - parent: 1 - type: Transform -- uid: 1493 - type: WallReinforced - components: - - pos: -39.5,50.5 - parent: 1 - type: Transform -- uid: 1494 - type: WallReinforced - components: - - pos: -39.5,49.5 - parent: 1 - type: Transform -- uid: 1495 - type: WallReinforced - components: - - pos: -39.5,48.5 - parent: 1 - type: Transform -- uid: 1496 - type: WallReinforced - components: - - pos: -39.5,47.5 - parent: 1 - type: Transform -- uid: 1497 - type: WallReinforced - components: - - pos: -40.5,49.5 - parent: 1 - type: Transform -- uid: 1498 - type: WallReinforced - components: - - pos: -41.5,49.5 - parent: 1 - type: Transform -- uid: 1499 - type: WallReinforced - components: - - pos: -41.5,48.5 - parent: 1 - type: Transform -- uid: 1500 - type: Grille - components: - - pos: -41.5,46.5 - parent: 1 - type: Transform -- uid: 1501 - type: Catwalk - components: - - pos: -43.5,45.5 - parent: 1 - type: Transform -- uid: 1502 - type: WallReinforced - components: - - pos: -41.5,47.5 - parent: 1 - type: Transform -- uid: 1503 - type: Grille - components: - - pos: -41.5,43.5 - parent: 1 - type: Transform -- uid: 1504 - type: Grille - components: - - pos: -41.5,42.5 - parent: 1 - type: Transform -- uid: 1505 - type: WallReinforced - components: - - pos: -41.5,41.5 - parent: 1 - type: Transform -- uid: 1506 - type: WallReinforced - components: - - pos: -41.5,40.5 - parent: 1 - type: Transform -- uid: 1507 - type: WallReinforced - components: - - pos: -41.5,39.5 - parent: 1 - type: Transform -- uid: 1508 - type: WallReinforced - components: - - pos: -40.5,39.5 - parent: 1 - type: Transform -- uid: 1509 - type: WallReinforced - components: - - pos: -39.5,39.5 - parent: 1 - type: Transform -- uid: 1510 - type: WallReinforced - components: - - pos: -38.5,39.5 - parent: 1 - type: Transform -- uid: 1511 - type: Grille - components: - - pos: -35.5,39.5 - parent: 1 - type: Transform -- uid: 1512 - type: WallReinforced - components: - - pos: -24.5,45.5 - parent: 1 - type: Transform -- uid: 1513 - type: WallReinforced - components: - - pos: -26.5,39.5 - parent: 1 - type: Transform -- uid: 1514 - type: Grille - components: - - pos: -32.5,39.5 - parent: 1 - type: Transform -- uid: 1515 - type: Grille - components: - - pos: -31.5,39.5 - parent: 1 - type: Transform -- uid: 1516 - type: Grille - components: - - pos: -30.5,39.5 - parent: 1 - type: Transform -- uid: 1517 - type: WallReinforced - components: - - pos: -29.5,41.5 - parent: 1 - type: Transform -- uid: 1518 - type: ReinforcedWindow - components: - - pos: -39.5,46.5 - parent: 1 - type: Transform -- uid: 1519 - type: ReinforcedWindow - components: - - pos: -39.5,45.5 - parent: 1 - type: Transform -- uid: 1520 - type: WallReinforced - components: - - pos: -39.5,44.5 - parent: 1 - type: Transform -- uid: 1521 - type: ReinforcedWindow - components: - - pos: -26.5,44.5 - parent: 1 - type: Transform -- uid: 1522 - type: ReinforcedWindow - components: - - pos: -26.5,43.5 - parent: 1 - type: Transform -- uid: 1523 - type: ReinforcedWindow - components: - - pos: -26.5,42.5 - parent: 1 - type: Transform -- uid: 1524 - type: WallSolid - components: - - pos: -36.5,47.5 - parent: 1 - type: Transform -- uid: 1525 - type: ReinforcedWindow - components: - - pos: -32.5,41.5 - parent: 1 - type: Transform -- uid: 1526 - type: ReinforcedWindow - components: - - pos: -31.5,41.5 - parent: 1 - type: Transform -- uid: 1527 - type: ReinforcedWindow - components: - - pos: -30.5,41.5 - parent: 1 - type: Transform -- uid: 1528 - type: WallReinforced - components: - - pos: -27.5,39.5 - parent: 1 - type: Transform -- uid: 1529 - type: WallReinforced - components: - - pos: -24.5,39.5 - parent: 1 - type: Transform -- uid: 1530 - type: Grille - components: - - pos: -32.5,41.5 - parent: 1 - type: Transform -- uid: 1531 - type: Grille - components: - - pos: -31.5,41.5 - parent: 1 - type: Transform -- uid: 1532 - type: Grille - components: - - pos: -30.5,41.5 - parent: 1 - type: Transform -- uid: 1533 - type: WallReinforced - components: - - pos: -28.5,39.5 - parent: 1 - type: Transform -- uid: 1534 - type: WallReinforced - components: - - pos: -33.5,41.5 - parent: 1 - type: Transform -- uid: 1535 - type: Grille - components: - - pos: -36.5,42.5 - parent: 1 - type: Transform -- uid: 1536 - type: WallReinforced - components: - - pos: -37.5,41.5 - parent: 1 - type: Transform -- uid: 1537 - type: ReinforcedWindow - components: - - pos: -35.5,41.5 - parent: 1 - type: Transform -- uid: 1538 - type: Grille - components: - - pos: -36.5,46.5 - parent: 1 - type: Transform -- uid: 1539 - type: WallReinforced - components: - - pos: -37.5,39.5 - parent: 1 - type: Transform -- uid: 1540 - type: WallReinforced - components: - - pos: -33.5,39.5 - parent: 1 - type: Transform -- uid: 1541 - type: WallReinforced - components: - - pos: -36.5,39.5 - parent: 1 - type: Transform -- uid: 1542 - type: ReinforcedWindow - components: - - pos: -34.5,41.5 - parent: 1 - type: Transform -- uid: 1543 - type: ReinforcedWindow - components: - - pos: -34.5,39.5 - parent: 1 - type: Transform -- uid: 1544 - type: WallReinforced - components: - - pos: -36.5,41.5 - parent: 1 - type: Transform -- uid: 1545 - type: ReinforcedWindow - components: - - pos: -35.5,39.5 - parent: 1 - type: Transform -- uid: 1546 - type: WallReinforced - components: - - pos: -25.5,39.5 - parent: 1 - type: Transform -- uid: 1547 - type: ReinforcedWindow - components: - - pos: -32.5,39.5 - parent: 1 - type: Transform -- uid: 1548 - type: ReinforcedWindow - components: - - pos: -31.5,39.5 - parent: 1 - type: Transform -- uid: 1549 - type: ReinforcedWindow - components: - - pos: -30.5,39.5 - parent: 1 - type: Transform -- uid: 1550 - type: WallReinforced - components: - - pos: -29.5,39.5 - parent: 1 - type: Transform -- uid: 1551 - type: WallReinforced - components: - - pos: -38.5,50.5 - parent: 1 - type: Transform -- uid: 1552 - type: WallReinforced - components: - - pos: -37.5,50.5 - parent: 1 - type: Transform -- uid: 1553 - type: WallReinforced - components: - - pos: -36.5,50.5 - parent: 1 - type: Transform -- uid: 1554 - type: WallReinforced - components: - - pos: -35.5,50.5 - parent: 1 - type: Transform -- uid: 1555 - type: WallReinforced - components: - - pos: -34.5,50.5 - parent: 1 - type: Transform -- uid: 1556 - type: WallReinforced - components: - - pos: -33.5,50.5 - parent: 1 - type: Transform -- uid: 1557 - type: WallReinforced - components: - - pos: -32.5,50.5 - parent: 1 - type: Transform -- uid: 1558 - type: WallReinforced - components: - - pos: -31.5,50.5 - parent: 1 - type: Transform -- uid: 1559 - type: WallReinforced - components: - - pos: -30.5,50.5 - parent: 1 - type: Transform -- uid: 1560 - type: WallReinforced - components: - - pos: -29.5,50.5 - parent: 1 - type: Transform -- uid: 1561 - type: WallReinforced - components: - - pos: -28.5,50.5 - parent: 1 - type: Transform -- uid: 1562 - type: WallReinforced - components: - - pos: -27.5,50.5 - parent: 1 - type: Transform -- uid: 1563 - type: WallReinforced - components: - - pos: -40.5,50.5 - parent: 1 - type: Transform -- uid: 1564 - type: Grille - components: - - pos: -39.5,42.5 - parent: 1 - type: Transform -- uid: 1565 - type: WallReinforced - components: - - pos: -25.5,50.5 - parent: 1 - type: Transform -- uid: 1566 - type: ReinforcedWindow - components: - - pos: -39.5,43.5 - parent: 1 - type: Transform -- uid: 1567 - type: ReinforcedWindow - components: - - pos: -39.5,42.5 - parent: 1 - type: Transform -- uid: 1568 - type: WallSolid - components: - - pos: -37.5,47.5 - parent: 1 - type: Transform -- uid: 1569 - type: WallSolid - components: - - pos: -38.5,47.5 - parent: 1 - type: Transform -- uid: 1570 - type: WallReinforced - components: - - pos: -15.5,-41.5 - parent: 1 - type: Transform -- uid: 1571 - type: ReinforcedWindow - components: - - pos: -27.5,46.5 - parent: 1 - type: Transform -- uid: 1572 - type: WallReinforced - components: - - pos: -16.5,-41.5 - parent: 1 - type: Transform -- uid: 1573 - type: WallReinforced - components: - - pos: -15.5,-42.5 - parent: 1 - type: Transform -- uid: 1574 - type: WallReinforced - components: - - pos: -29.5,49.5 - parent: 1 - type: Transform -- uid: 1575 - type: Grille - components: - - pos: -27.5,46.5 - parent: 1 - type: Transform -- uid: 1576 - type: Grille - components: - - pos: -28.5,46.5 - parent: 1 - type: Transform -- uid: 1577 - type: ReinforcedWindow - components: - - pos: -41.5,46.5 - parent: 1 - type: Transform -- uid: 1578 - type: Grille - components: - - pos: -39.5,43.5 - parent: 1 - type: Transform -- uid: 1579 - type: Window - components: - - pos: -45.5,39.5 - parent: 1 - type: Transform -- uid: 1580 - type: ReinforcedWindow - components: - - pos: -41.5,43.5 - parent: 1 - type: Transform -- uid: 1581 - type: ReinforcedWindow - components: - - pos: -41.5,42.5 - parent: 1 - type: Transform -- uid: 1582 - type: WallSolid - components: - - pos: -38.5,44.5 - parent: 1 - type: Transform -- uid: 1583 - type: WallSolid - components: - - pos: -37.5,44.5 - parent: 1 - type: Transform -- uid: 1584 - type: WallSolid - components: - - pos: -36.5,44.5 - parent: 1 - type: Transform -- uid: 1585 - type: WallSolid - components: - - pos: -36.5,49.5 - parent: 1 - type: Transform -- uid: 1586 - type: Table - components: - - pos: -28.5,43.5 - parent: 1 - type: Transform -- uid: 1587 - type: Table - components: - - pos: -28.5,44.5 - parent: 1 - type: Transform -- uid: 1588 - type: Table - components: - - pos: -29.5,44.5 - parent: 1 - type: Transform -- uid: 1589 - type: Table - components: - - pos: -29.5,43.5 - parent: 1 - type: Transform -- uid: 1590 - type: ReinforcedWindow - components: - - pos: -28.5,46.5 - parent: 1 - type: Transform -- uid: 1591 - type: WallReinforced - components: - - pos: -29.5,46.5 - parent: 1 - type: Transform -- uid: 1592 - type: WallSolid - components: - - pos: -23.5,50.5 - parent: 1 - type: Transform -- uid: 1593 - type: WallSolid - components: - - pos: -23.5,45.5 - parent: 1 - type: Transform -- uid: 1594 - type: WallSolid - components: - - pos: -23.5,51.5 - parent: 1 - type: Transform -- uid: 1595 - type: WallSolid - components: - - pos: -23.5,52.5 - parent: 1 - type: Transform -- uid: 1596 - type: WallSolid - components: - - pos: -26.5,52.5 - parent: 1 - type: Transform -- uid: 1597 - type: WallSolid - components: - - pos: -26.5,53.5 - parent: 1 - type: Transform -- uid: 1598 - type: WallSolid - components: - - pos: -25.5,53.5 - parent: 1 - type: Transform -- uid: 1599 - type: WallSolid - components: - - pos: -23.5,53.5 - parent: 1 - type: Transform -- uid: 1600 - type: WallReinforced - components: - - pos: -26.5,59.5 - parent: 1 - type: Transform -- uid: 1601 - type: WallReinforced - components: - - pos: -25.5,59.5 - parent: 1 - type: Transform -- uid: 1602 - type: Grille - components: - - pos: -24.5,59.5 - parent: 1 - type: Transform -- uid: 1603 - type: Grille - components: - - pos: -23.5,59.5 - parent: 1 - type: Transform -- uid: 1604 - type: Grille - components: - - pos: -22.5,59.5 - parent: 1 - type: Transform -- uid: 1605 - type: Grille - components: - - pos: -29.5,59.5 - parent: 1 - type: Transform -- uid: 1606 - type: Grille - components: - - pos: -28.5,59.5 - parent: 1 - type: Transform -- uid: 1607 - type: Grille - components: - - pos: -27.5,59.5 - parent: 1 - type: Transform -- uid: 1608 - type: Grille - components: - - pos: -20.5,61.5 - parent: 1 - type: Transform -- uid: 1609 - type: Grille - components: - - pos: -20.5,62.5 - parent: 1 - type: Transform -- uid: 1610 - type: Grille - components: - - pos: -20.5,63.5 - parent: 1 - type: Transform -- uid: 1611 - type: Grille - components: - - pos: -20.5,64.5 - parent: 1 - type: Transform -- uid: 1612 - type: Grille - components: - - pos: -30.5,58.5 - parent: 1 - type: Transform -- uid: 1613 - type: Grille - components: - - pos: -32.5,57.5 - parent: 1 - type: Transform -- uid: 1614 - type: ReinforcedWindow - components: - - pos: -32.5,57.5 - parent: 1 - type: Transform -- uid: 1615 - type: Grille - components: - - pos: -35.5,57.5 - parent: 1 - type: Transform -- uid: 1616 - type: Grille - components: - - pos: -34.5,57.5 - parent: 1 - type: Transform -- uid: 1617 - type: WallReinforced - components: - - pos: -36.5,56.5 - parent: 1 - type: Transform -- uid: 1618 - type: Catwalk - components: - - pos: -38.5,73.5 - parent: 1 - type: Transform -- uid: 1619 - type: WallReinforced - components: - - pos: -39.5,56.5 - parent: 1 - type: Transform -- uid: 1620 - type: computerBodyScanner - components: - - pos: 4.5,82.5 - parent: 1 - type: Transform -- uid: 1621 - type: Catwalk - components: - - pos: -38.5,52.5 - parent: 1 - type: Transform -- uid: 1622 - type: ReinforcedWindow - components: - - pos: -40.5,55.5 - parent: 1 - type: Transform -- uid: 1623 - type: WallReinforced - components: - - pos: -41.5,53.5 - parent: 1 - type: Transform -- uid: 1624 - type: Grille - components: - - pos: -44.5,52.5 - parent: 1 - type: Transform -- uid: 1625 - type: Grille - components: - - pos: -43.5,52.5 - parent: 1 - type: Transform -- uid: 1626 - type: Grille - components: - - pos: -42.5,52.5 - parent: 1 - type: Transform -- uid: 1627 - type: Grille - components: - - pos: -45.5,51.5 - parent: 1 - type: Transform -- uid: 1628 - type: Grille - components: - - pos: -45.5,50.5 - parent: 1 - type: Transform -- uid: 1629 - type: Grille - components: - - pos: -47.5,49.5 - parent: 1 - type: Transform -- uid: 1630 - type: Grille - components: - - pos: -46.5,49.5 - parent: 1 - type: Transform -- uid: 1631 - type: Grille - components: - - pos: -48.5,48.5 - parent: 1 - type: Transform -- uid: 1632 - type: Grille - components: - - pos: -48.5,47.5 - parent: 1 - type: Transform -- uid: 1633 - type: Grille - components: - - pos: -48.5,46.5 - parent: 1 - type: Transform -- uid: 1634 - type: Grille - components: - - pos: -49.5,45.5 - parent: 1 - type: Transform -- uid: 1635 - type: Grille - components: - - pos: -50.5,44.5 - parent: 1 - type: Transform -- uid: 1636 - type: Grille - components: - - pos: -50.5,43.5 - parent: 1 - type: Transform -- uid: 1637 - type: Grille - components: - - pos: -50.5,42.5 - parent: 1 - type: Transform -- uid: 1638 - type: Grille - components: - - pos: -50.5,41.5 - parent: 1 - type: Transform -- uid: 1639 - type: Grille - components: - - pos: -52.5,39.5 - parent: 1 - type: Transform -- uid: 1640 - type: Grille - components: - - pos: -52.5,35.5 - parent: 1 - type: Transform -- uid: 1641 - type: WallReinforced - components: - - pos: -51.5,34.5 - parent: 1 - type: Transform -- uid: 1642 - type: Grille - components: - - pos: -50.5,34.5 - parent: 1 - type: Transform -- uid: 1643 - type: ReinforcedWindow - components: - - pos: -52.5,35.5 - parent: 1 - type: Transform -- uid: 1644 - type: ReinforcedWindow - components: - - pos: -52.5,39.5 - parent: 1 - type: Transform -- uid: 1645 - type: ReinforcedWindow - components: - - pos: -50.5,41.5 - parent: 1 - type: Transform -- uid: 1646 - type: ReinforcedWindow - components: - - pos: -50.5,42.5 - parent: 1 - type: Transform -- uid: 1647 - type: ReinforcedWindow - components: - - pos: -50.5,43.5 - parent: 1 - type: Transform -- uid: 1648 - type: ReinforcedWindow - components: - - pos: -50.5,44.5 - parent: 1 - type: Transform -- uid: 1649 - type: ReinforcedWindow - components: - - pos: -49.5,45.5 - parent: 1 - type: Transform -- uid: 1650 - type: ReinforcedWindow - components: - - pos: -48.5,46.5 - parent: 1 - type: Transform -- uid: 1651 - type: ReinforcedWindow - components: - - pos: -48.5,47.5 - parent: 1 - type: Transform -- uid: 1652 - type: ReinforcedWindow - components: - - pos: -48.5,48.5 - parent: 1 - type: Transform -- uid: 1653 - type: ReinforcedWindow - components: - - pos: -47.5,49.5 - parent: 1 - type: Transform -- uid: 1654 - type: ReinforcedWindow - components: - - pos: -46.5,49.5 - parent: 1 - type: Transform -- uid: 1655 - type: ReinforcedWindow - components: - - pos: -45.5,50.5 - parent: 1 - type: Transform -- uid: 1656 - type: ReinforcedWindow - components: - - pos: -45.5,51.5 - parent: 1 - type: Transform -- uid: 1657 - type: ReinforcedWindow - components: - - pos: -44.5,52.5 - parent: 1 - type: Transform -- uid: 1658 - type: ReinforcedWindow - components: - - pos: -43.5,52.5 - parent: 1 - type: Transform -- uid: 1659 - type: ReinforcedWindow - components: - - pos: -42.5,52.5 - parent: 1 - type: Transform -- uid: 1660 - type: WallReinforced - components: - - pos: -40.5,53.5 - parent: 1 - type: Transform -- uid: 1661 - type: ReinforcedWindow - components: - - pos: -40.5,54.5 - parent: 1 - type: Transform -- uid: 1662 - type: Catwalk - components: - - pos: -37.5,52.5 - parent: 1 - type: Transform -- uid: 1663 - type: Catwalk - components: - - pos: -38.5,77.5 - parent: 1 - type: Transform -- uid: 1664 - type: Catwalk - components: - - pos: -38.5,76.5 - parent: 1 - type: Transform -- uid: 1665 - type: Catwalk - components: - - pos: -38.5,75.5 - parent: 1 - type: Transform -- uid: 1666 - type: WallReinforced - components: - - pos: -37.5,56.5 - parent: 1 - type: Transform -- uid: 1667 - type: ReinforcedWindow - components: - - pos: -35.5,57.5 - parent: 1 - type: Transform -- uid: 1668 - type: ReinforcedWindow - components: - - pos: -34.5,57.5 - parent: 1 - type: Transform -- uid: 1669 - type: Grille - components: - - pos: -31.5,57.5 - parent: 1 - type: Transform -- uid: 1670 - type: BarSignOfficerBeersky - components: - - pos: -28.5,59.5 - parent: 1 - type: Transform -- uid: 1671 - type: ReinforcedWindow - components: - - pos: -30.5,58.5 - parent: 1 - type: Transform -- uid: 1672 - type: ReinforcedWindow - components: - - pos: -29.5,59.5 - parent: 1 - type: Transform -- uid: 1673 - type: ReinforcedWindow - components: - - pos: -28.5,59.5 - parent: 1 - type: Transform -- uid: 1674 - type: ReinforcedWindow - components: - - pos: -27.5,59.5 - parent: 1 - type: Transform -- uid: 1675 - type: ReinforcedWindow - components: - - pos: -24.5,59.5 - parent: 1 - type: Transform -- uid: 1676 - type: ReinforcedWindow - components: - - pos: -23.5,59.5 - parent: 1 - type: Transform -- uid: 1677 - type: ReinforcedWindow - components: - - pos: -22.5,59.5 - parent: 1 - type: Transform -- uid: 1678 - type: ReinforcedWindow - components: - - pos: -20.5,61.5 - parent: 1 - type: Transform -- uid: 1679 - type: ReinforcedWindow - components: - - pos: -20.5,62.5 - parent: 1 - type: Transform -- uid: 1680 - type: ReinforcedWindow - components: - - pos: -20.5,63.5 - parent: 1 - type: Transform -- uid: 1681 - type: ReinforcedWindow - components: - - pos: -20.5,64.5 - parent: 1 - type: Transform -- uid: 1682 - type: ReinforcedWindow - components: - - pos: -19.5,65.5 - parent: 1 - type: Transform -- uid: 1683 - type: ReinforcedWindow - components: - - pos: -18.5,65.5 - parent: 1 - type: Transform -- uid: 1684 - type: ReinforcedWindow - components: - - pos: -17.5,65.5 - parent: 1 - type: Transform -- uid: 1685 - type: ReinforcedWindow - components: - - pos: -16.5,65.5 - parent: 1 - type: Transform -- uid: 1686 - type: ReinforcedWindow - components: - - pos: -14.5,67.5 - parent: 1 - type: Transform -- uid: 1687 - type: ReinforcedWindow - components: - - pos: -14.5,68.5 - parent: 1 - type: Transform -- uid: 1688 - type: ReinforcedWindow - components: - - pos: -14.5,69.5 - parent: 1 - type: Transform -- uid: 1689 - type: ReinforcedWindow - components: - - pos: -14.5,70.5 - parent: 1 - type: Transform -- uid: 1690 - type: ReinforcedWindow - components: - - pos: -13.5,71.5 - parent: 1 - type: Transform -- uid: 1691 - type: ReinforcedWindow - components: - - pos: -12.5,71.5 - parent: 1 - type: Transform -- uid: 1692 - type: WallReinforced - components: - - pos: -11.5,70.5 - parent: 1 - type: Transform -- uid: 1693 - type: AirlockServiceCaptainLocked - components: - - pos: -8.5,71.5 - parent: 1 - type: Transform -- uid: 1694 - type: AirlockMaintCaptainLocked - components: - - pos: -9.5,69.5 - parent: 1 - type: Transform -- uid: 1695 - type: WallReinforced - components: - - pos: -11.5,71.5 - parent: 1 - type: Transform -- uid: 1696 - type: Grille - components: - - pos: -12.5,71.5 - parent: 1 - type: Transform -- uid: 1697 - type: Grille - components: - - pos: -13.5,71.5 - parent: 1 - type: Transform -- uid: 1698 - type: Grille - components: - - pos: -14.5,70.5 - parent: 1 - type: Transform -- uid: 1699 - type: Grille - components: - - pos: -14.5,69.5 - parent: 1 - type: Transform -- uid: 1700 - type: Grille - components: - - pos: -14.5,68.5 - parent: 1 - type: Transform -- uid: 1701 - type: Grille - components: - - pos: -14.5,67.5 - parent: 1 - type: Transform -- uid: 1702 - type: Grille - components: - - pos: -16.5,65.5 - parent: 1 - type: Transform -- uid: 1703 - type: Grille - components: - - pos: -17.5,65.5 - parent: 1 - type: Transform -- uid: 1704 - type: Grille - components: - - pos: -18.5,65.5 - parent: 1 - type: Transform -- uid: 1705 - type: Grille - components: - - pos: -19.5,65.5 - parent: 1 - type: Transform -- uid: 1706 - type: WallSolid - components: - - pos: -26.5,54.5 - parent: 1 - type: Transform -- uid: 1707 - type: WallSolid - components: - - pos: -26.5,55.5 - parent: 1 - type: Transform -- uid: 1708 - type: WallSolid - components: - - pos: -26.5,56.5 - parent: 1 - type: Transform -- uid: 1709 - type: WallSolid - components: - - pos: -26.5,58.5 - parent: 1 - type: Transform -- uid: 1710 - type: Barricade - components: - - pos: -36.5,52.5 - parent: 1 - type: Transform -- uid: 1711 - type: WallReinforced - components: - - pos: -36.5,54.5 - parent: 1 - type: Transform -- uid: 1712 - type: WallSolid - components: - - pos: -47.5,45.5 - parent: 1 - type: Transform -- uid: 1713 - type: WallSolid - components: - - pos: -46.5,45.5 - parent: 1 - type: Transform -- uid: 1714 - type: WallSolid - components: - - pos: -45.5,45.5 - parent: 1 - type: Transform -- uid: 1715 - type: Grille - components: - - pos: -45.5,39.5 - parent: 1 - type: Transform -- uid: 1716 - type: Window - components: - - pos: -46.5,39.5 - parent: 1 - type: Transform -- uid: 1717 - type: ReinforcedWindow - components: - - pos: -41.5,45.5 - parent: 1 - type: Transform -- uid: 1718 - type: Grille - components: - - pos: -40.5,34.5 - parent: 1 - type: Transform -- uid: 1719 - type: Grille - components: - - pos: -40.5,33.5 - parent: 1 - type: Transform -- uid: 1720 - type: Grille - components: - - pos: -40.5,32.5 - parent: 1 - type: Transform -- uid: 1721 - type: ReinforcedWindow - components: - - pos: -40.5,34.5 - parent: 1 - type: Transform -- uid: 1722 - type: ReinforcedWindow - components: - - pos: -40.5,33.5 - parent: 1 - type: Transform -- uid: 1723 - type: ReinforcedWindow - components: - - pos: -40.5,32.5 - parent: 1 - type: Transform -- uid: 1724 - type: Grille - components: - - pos: -43.5,35.5 - parent: 1 - type: Transform -- uid: 1725 - type: Grille - components: - - pos: -42.5,35.5 - parent: 1 - type: Transform -- uid: 1726 - type: Grille - components: - - pos: -41.5,35.5 - parent: 1 - type: Transform -- uid: 1727 - type: ReinforcedWindow - components: - - pos: -43.5,35.5 - parent: 1 - type: Transform -- uid: 1728 - type: ReinforcedWindow - components: - - pos: -42.5,35.5 - parent: 1 - type: Transform -- uid: 1729 - type: ReinforcedWindow - components: - - pos: -41.5,35.5 - parent: 1 - type: Transform -- uid: 1730 - type: WallSolid - components: - - pos: -45.5,46.5 - parent: 1 - type: Transform -- uid: 1731 - type: WallSolid - components: - - pos: -36.5,16.5 - parent: 1 - type: Transform -- uid: 1732 - type: WallSolid - components: - - pos: -36.5,17.5 - parent: 1 - type: Transform -- uid: 1733 - type: WallSolid - components: - - pos: -36.5,18.5 - parent: 1 - type: Transform -- uid: 1734 - type: WallReinforced - components: - - pos: -40.5,16.5 - parent: 1 - type: Transform -- uid: 1735 - type: WallReinforced - components: - - pos: -40.5,20.5 - parent: 1 - type: Transform -- uid: 1736 - type: WallReinforced - components: - - pos: -40.5,31.5 - parent: 1 - type: Transform -- uid: 1737 - type: WallSolid - components: - - pos: -39.5,35.5 - parent: 1 - type: Transform -- uid: 1738 - type: WallSolid - components: - - pos: -39.5,31.5 - parent: 1 - type: Transform -- uid: 1739 - type: WallSolid - components: - - pos: -38.5,31.5 - parent: 1 - type: Transform -- uid: 1740 - type: WallSolid - components: - - pos: -37.5,31.5 - parent: 1 - type: Transform -- uid: 1741 - type: WallSolid - components: - - pos: -36.5,31.5 - parent: 1 - type: Transform -- uid: 1742 - type: WallSolid - components: - - pos: -36.5,32.5 - parent: 1 - type: Transform -- uid: 1743 - type: WallSolid - components: - - pos: -36.5,35.5 - parent: 1 - type: Transform -- uid: 1744 - type: WallSolid - components: - - pos: -37.5,35.5 - parent: 1 - type: Transform -- uid: 1745 - type: WallSolid - components: - - pos: -37.5,34.5 - parent: 1 - type: Transform -- uid: 1746 - type: WallSolid - components: - - pos: -36.5,30.5 - parent: 1 - type: Transform -- uid: 1747 - type: WallSolid - components: - - pos: -36.5,29.5 - parent: 1 - type: Transform -- uid: 1748 - type: WallSolid - components: - - pos: -35.5,29.5 - parent: 1 - type: Transform -- uid: 1749 - type: WallSolid - components: - - pos: -35.5,28.5 - parent: 1 - type: Transform -- uid: 1750 - type: WallSolid - components: - - pos: -35.5,27.5 - parent: 1 - type: Transform -- uid: 1751 - type: WallSolid - components: - - pos: -35.5,26.5 - parent: 1 - type: Transform -- uid: 1752 - type: WallSolid - components: - - pos: -35.5,25.5 - parent: 1 - type: Transform -- uid: 1753 - type: WallSolid - components: - - pos: -35.5,24.5 - parent: 1 - type: Transform -- uid: 1754 - type: WallSolid - components: - - pos: -35.5,23.5 - parent: 1 - type: Transform -- uid: 1755 - type: WallSolid - components: - - pos: -35.5,22.5 - parent: 1 - type: Transform -- uid: 1756 - type: WallSolid - components: - - pos: -36.5,22.5 - parent: 1 - type: Transform -- uid: 1757 - type: WallSolid - components: - - pos: -36.5,19.5 - parent: 1 - type: Transform -- uid: 1758 - type: WallSolid - components: - - pos: -36.5,20.5 - parent: 1 - type: Transform -- uid: 1759 - type: WallSolid - components: - - pos: -38.5,16.5 - parent: 1 - type: Transform -- uid: 1760 - type: Grille - components: - - pos: -40.5,17.5 - parent: 1 - type: Transform -- uid: 1761 - type: Grille - components: - - pos: -40.5,18.5 - parent: 1 - type: Transform -- uid: 1762 - type: Grille - components: - - pos: -40.5,19.5 - parent: 1 - type: Transform -- uid: 1763 - type: ReinforcedWindow - components: - - pos: -40.5,17.5 - parent: 1 - type: Transform -- uid: 1764 - type: ReinforcedWindow - components: - - pos: -40.5,18.5 - parent: 1 - type: Transform -- uid: 1765 - type: ReinforcedWindow - components: - - pos: -40.5,19.5 - parent: 1 - type: Transform -- uid: 1766 - type: WallReinforced - components: - - pos: -42.5,27.5 - parent: 1 - type: Transform -- uid: 1767 - type: WallReinforced - components: - - pos: -42.5,24.5 - parent: 1 - type: Transform -- uid: 1768 - type: WallReinforced - components: - - pos: -41.5,27.5 - parent: 1 - type: Transform -- uid: 1769 - type: WallReinforced - components: - - pos: -41.5,24.5 - parent: 1 - type: Transform -- uid: 1770 - type: WallReinforced - components: - - pos: -40.5,24.5 - parent: 1 - type: Transform -- uid: 1771 - type: WallReinforced - components: - - pos: -40.5,27.5 - parent: 1 - type: Transform -- uid: 1772 - type: WallReinforced - components: - - pos: -39.5,27.5 - parent: 1 - type: Transform -- uid: 1773 - type: WallReinforced - components: - - pos: -39.5,24.5 - parent: 1 - type: Transform -- uid: 1774 - type: Grille - components: - - pos: -40.5,28.5 - parent: 1 - type: Transform -- uid: 1775 - type: Grille - components: - - pos: -40.5,29.5 - parent: 1 - type: Transform -- uid: 1776 - type: Grille - components: - - pos: -40.5,30.5 - parent: 1 - type: Transform -- uid: 1777 - type: ReinforcedWindow - components: - - pos: -40.5,30.5 - parent: 1 - type: Transform -- uid: 1778 - type: ReinforcedWindow - components: - - pos: -40.5,29.5 - parent: 1 - type: Transform -- uid: 1779 - type: ReinforcedWindow - components: - - pos: -40.5,28.5 - parent: 1 - type: Transform -- uid: 1780 - type: Grille - components: - - pos: -40.5,21.5 - parent: 1 - type: Transform -- uid: 1781 - type: Grille - components: - - pos: -40.5,22.5 - parent: 1 - type: Transform -- uid: 1782 - type: Grille - components: - - pos: -40.5,23.5 - parent: 1 - type: Transform -- uid: 1783 - type: ReinforcedWindow - components: - - pos: -40.5,21.5 - parent: 1 - type: Transform -- uid: 1784 - type: ReinforcedWindow - components: - - pos: -40.5,22.5 - parent: 1 - type: Transform -- uid: 1785 - type: ReinforcedWindow - components: - - pos: -40.5,23.5 - parent: 1 - type: Transform -- uid: 1786 - type: WallReinforced - components: - - pos: -4.5,52.5 - parent: 1 - type: Transform -- uid: 1787 - type: WallSolid - components: - - pos: -20.5,58.5 - parent: 1 - type: Transform -- uid: 1788 - type: WallReinforced - components: - - pos: -17.5,57.5 - parent: 1 - type: Transform -- uid: 1789 - type: WallReinforced - components: - - pos: -12.5,58.5 - parent: 1 - type: Transform -- uid: 1790 - type: WallReinforced - components: - - pos: -7.5,56.5 - parent: 1 - type: Transform -- uid: 1791 - type: WallReinforced - components: - - pos: -11.5,63.5 - parent: 1 - type: Transform -- uid: 1792 - type: WallReinforced - components: - - pos: -13.5,61.5 - parent: 1 - type: Transform -- uid: 1793 - type: WallReinforced - components: - - pos: -12.5,61.5 - parent: 1 - type: Transform -- uid: 1794 - type: WallReinforced - components: - - pos: -11.5,61.5 - parent: 1 - type: Transform -- uid: 1795 - type: Grille - components: - - pos: -14.5,57.5 - parent: 1 - type: Transform -- uid: 1796 - type: ReinforcedWindow - components: - - pos: -15.5,57.5 - parent: 1 - type: Transform -- uid: 1797 - type: ReinforcedWindow - components: - - pos: -14.5,57.5 - parent: 1 - type: Transform -- uid: 1798 - type: WallReinforced - components: - - pos: -11.5,64.5 - parent: 1 - type: Transform -- uid: 1799 - type: WallReinforced - components: - - pos: -11.5,65.5 - parent: 1 - type: Transform -- uid: 1800 - type: WallReinforced - components: - - pos: -11.5,66.5 - parent: 1 - type: Transform -- uid: 1801 - type: ReinforcedWindow - components: - - pos: -15.5,50.5 - parent: 1 - type: Transform -- uid: 1802 - type: WallReinforced - components: - - pos: -9.5,66.5 - parent: 1 - type: Transform -- uid: 1803 - type: WallReinforced - components: - - pos: -8.5,66.5 - parent: 1 - type: Transform -- uid: 1804 - type: WallReinforced - components: - - pos: -7.5,66.5 - parent: 1 - type: Transform -- uid: 1805 - type: ReinforcedWindow - components: - - pos: -14.5,47.5 - parent: 1 - type: Transform -- uid: 1806 - type: WallReinforced - components: - - pos: -4.5,65.5 - parent: 1 - type: Transform -- uid: 1807 - type: WallReinforced - components: - - pos: -5.5,65.5 - parent: 1 - type: Transform -- uid: 1808 - type: WallReinforced - components: - - pos: -6.5,66.5 - parent: 1 - type: Transform -- uid: 1809 - type: WallReinforced - components: - - pos: -6.5,65.5 - parent: 1 - type: Transform -- uid: 1810 - type: WallReinforced - components: - - pos: -5.5,66.5 - parent: 1 - type: Transform -- uid: 1811 - type: WallReinforced - components: - - pos: -7.5,65.5 - parent: 1 - type: Transform -- uid: 1812 - type: WallReinforced - components: - - pos: -4.5,66.5 - parent: 1 - type: Transform -- uid: 1813 - type: WallReinforced - components: - - pos: -8.5,65.5 - parent: 1 - type: Transform -- uid: 1814 - type: WallReinforced - components: - - pos: -3.5,66.5 - parent: 1 - type: Transform -- uid: 1815 - type: WallReinforced - components: - - pos: -9.5,65.5 - parent: 1 - type: Transform -- uid: 1816 - type: WallReinforced - components: - - pos: -2.5,66.5 - parent: 1 - type: Transform -- uid: 1817 - type: WallReinforced - components: - - pos: -2.5,65.5 - parent: 1 - type: Transform -- uid: 1818 - type: WallReinforced - components: - - pos: -2.5,64.5 - parent: 1 - type: Transform -- uid: 1819 - type: WallReinforced - components: - - pos: -2.5,63.5 - parent: 1 - type: Transform -- uid: 1820 - type: WallReinforced - components: - - pos: -2.5,62.5 - parent: 1 - type: Transform -- uid: 1821 - type: WallReinforced - components: - - pos: -2.5,61.5 - parent: 1 - type: Transform -- uid: 1822 - type: WallReinforced - components: - - pos: -2.5,60.5 - parent: 1 - type: Transform -- uid: 1823 - type: WallReinforced - components: - - pos: -2.5,59.5 - parent: 1 - type: Transform -- uid: 1824 - type: WallReinforced - components: - - pos: -3.5,65.5 - parent: 1 - type: Transform -- uid: 1825 - type: WallReinforced - components: - - pos: -3.5,64.5 - parent: 1 - type: Transform -- uid: 1826 - type: WallReinforced - components: - - pos: -3.5,63.5 - parent: 1 - type: Transform -- uid: 1827 - type: WallReinforced - components: - - pos: -3.5,62.5 - parent: 1 - type: Transform -- uid: 1828 - type: WallReinforced - components: - - pos: -3.5,61.5 - parent: 1 - type: Transform -- uid: 1829 - type: WallReinforced - components: - - pos: -3.5,60.5 - parent: 1 - type: Transform -- uid: 1830 - type: WallReinforced - components: - - pos: -3.5,59.5 - parent: 1 - type: Transform -- uid: 1831 - type: Grille - components: - - pos: -9.5,61.5 - parent: 1 - type: Transform -- uid: 1832 - type: WallReinforced - components: - - pos: -7.5,61.5 - parent: 1 - type: Transform -- uid: 1833 - type: ReinforcedWindow - components: - - pos: -14.5,51.5 - parent: 1 - type: Transform -- uid: 1834 - type: ReinforcedPlasmaWindow - components: - - pos: -8.5,61.5 - parent: 1 - type: Transform -- uid: 1835 - type: ReinforcedWindow - components: - - pos: -11.5,51.5 - parent: 1 - type: Transform -- uid: 1836 - type: ReinforcedPlasmaWindow - components: - - pos: -7.5,60.5 - parent: 1 - type: Transform -- uid: 1837 - type: Grille - components: - - pos: -7.5,60.5 - parent: 1 - type: Transform -- uid: 1838 - type: ReinforcedWindow - components: - - pos: -13.5,51.5 - parent: 1 - type: Transform -- uid: 1839 - type: ReinforcedWindow - components: - - pos: -10.5,50.5 - parent: 1 - type: Transform -- uid: 1840 - type: ReinforcedWindow - components: - - pos: -11.5,47.5 - parent: 1 - type: Transform -- uid: 1841 - type: ReinforcedPlasmaWindow - components: - - pos: -9.5,61.5 - parent: 1 - type: Transform -- uid: 1842 - type: TableReinforced - components: - - pos: -16.5,50.5 - parent: 1 - type: Transform -- uid: 1843 - type: TableReinforced - components: - - pos: -16.5,49.5 - parent: 1 - type: Transform -- uid: 1844 - type: TableReinforced - components: - - pos: -16.5,48.5 - parent: 1 - type: Transform -- uid: 1845 - type: TableReinforced - components: - - pos: -19.5,53.5 - parent: 1 - type: Transform -- uid: 1846 - type: TableReinforced - components: - - pos: -18.5,53.5 - parent: 1 - type: Transform -- uid: 1847 - type: TableReinforced - components: - - pos: -19.5,52.5 - parent: 1 - type: Transform -- uid: 1848 - type: TableReinforced - components: - - pos: -13.5,56.5 - parent: 1 - type: Transform -- uid: 1849 - type: TableReinforced - components: - - pos: -12.5,56.5 - parent: 1 - type: Transform -- uid: 1850 - type: TableReinforced - components: - - pos: -12.5,55.5 - parent: 1 - type: Transform -- uid: 1851 - type: WallSolid - components: - - pos: -22.5,53.5 - parent: 1 - type: Transform -- uid: 1852 - type: WallSolid - components: - - pos: -23.5,54.5 - parent: 1 - type: Transform -- uid: 1853 - type: Girder - components: - - pos: -23.5,55.5 - parent: 1 - type: Transform -- uid: 1854 - type: WallSolid - components: - - pos: -23.5,56.5 - parent: 1 - type: Transform -- uid: 1855 - type: WallSolid - components: - - pos: -20.5,55.5 - parent: 1 - type: Transform -- uid: 1856 - type: WallSolid - components: - - pos: -20.5,56.5 - parent: 1 - type: Transform -- uid: 1857 - type: WallReinforced - components: - - pos: 1.5,58.5 - parent: 1 - type: Transform -- uid: 1858 - type: WallReinforced - components: - - pos: 2.5,58.5 - parent: 1 - type: Transform -- uid: 1859 - type: WallReinforced - components: - - pos: 3.5,58.5 - parent: 1 - type: Transform -- uid: 1860 - type: WallReinforced - components: - - pos: 1.5,51.5 - parent: 1 - type: Transform -- uid: 1861 - type: WallReinforced - components: - - pos: 2.5,51.5 - parent: 1 - type: Transform -- uid: 1862 - type: WallReinforced - components: - - pos: 3.5,51.5 - parent: 1 - type: Transform -- uid: 1863 - type: Grille - components: - - pos: 3.5,54.5 - parent: 1 - type: Transform -- uid: 1864 - type: Grille - components: - - pos: 3.5,55.5 - parent: 1 - type: Transform -- uid: 1865 - type: Grille - components: - - pos: 3.5,57.5 - parent: 1 - type: Transform -- uid: 1866 - type: Grille - components: - - pos: 3.5,52.5 - parent: 1 - type: Transform -- uid: 1867 - type: Window - components: - - pos: 3.5,57.5 - parent: 1 - type: Transform -- uid: 1868 - type: Window - components: - - pos: 3.5,55.5 - parent: 1 - type: Transform -- uid: 1869 - type: Window - components: - - pos: 3.5,54.5 - parent: 1 - type: Transform -- uid: 1870 - type: Window - components: - - pos: 3.5,52.5 - parent: 1 - type: Transform -- uid: 1871 - type: Grille - components: - - pos: 1.5,59.5 - parent: 1 - type: Transform -- uid: 1872 - type: Grille - components: - - pos: 1.5,60.5 - parent: 1 - type: Transform -- uid: 1873 - type: Grille - components: - - pos: 1.5,61.5 - parent: 1 - type: Transform -- uid: 1874 - type: Window - components: - - pos: 1.5,59.5 - parent: 1 - type: Transform -- uid: 1875 - type: Window - components: - - pos: 1.5,60.5 - parent: 1 - type: Transform -- uid: 1876 - type: Window - components: - - pos: 1.5,61.5 - parent: 1 - type: Transform -- uid: 1877 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 4.5,64.5 - parent: 1 - type: Transform -- uid: 1878 - type: WallSolid - components: - - pos: 1.5,64.5 - parent: 1 - type: Transform -- uid: 1879 - type: WallSolid - components: - - pos: 1.5,65.5 - parent: 1 - type: Transform -- uid: 1880 - type: WallSolid - components: - - pos: 9.5,62.5 - parent: 1 - type: Transform -- uid: 1881 - type: AirlockGlass - components: - - pos: -29.5,30.5 - parent: 1 - type: Transform -- uid: 1882 - type: WallSolid - components: - - pos: 11.5,65.5 - parent: 1 - type: Transform -- uid: 1883 - type: WallSolid - components: - - pos: 10.5,65.5 - parent: 1 - type: Transform -- uid: 1884 - type: WallSolid - components: - - pos: 9.5,65.5 - parent: 1 - type: Transform -- uid: 1885 - type: WallSolid - components: - - pos: 12.5,65.5 - parent: 1 - type: Transform -- uid: 1886 - type: WallSolid - components: - - pos: 8.5,65.5 - parent: 1 - type: Transform -- uid: 1887 - type: WallSolid - components: - - pos: 6.5,65.5 - parent: 1 - type: Transform -- uid: 1888 - type: WallSolid - components: - - pos: 2.5,65.5 - parent: 1 - type: Transform -- uid: 1889 - type: WallSolid - components: - - pos: 5.5,65.5 - parent: 1 - type: Transform -- uid: 1890 - type: WallSolid - components: - - pos: 6.5,64.5 - parent: 1 - type: Transform -- uid: 1891 - type: WallSolid - components: - - pos: 6.5,63.5 - parent: 1 - type: Transform -- uid: 1892 - type: WallSolid - components: - - pos: 6.5,62.5 - parent: 1 - type: Transform -- uid: 1893 - type: WallSolid - components: - - pos: 6.5,61.5 - parent: 1 - type: Transform -- uid: 1894 - type: WallSolid - components: - - pos: 8.5,62.5 - parent: 1 - type: Transform -- uid: 1895 - type: WallSolid - components: - - pos: 6.5,59.5 - parent: 1 - type: Transform -- uid: 1896 - type: WallSolid - components: - - pos: 6.5,58.5 - parent: 1 - type: Transform -- uid: 1897 - type: WallSolid - components: - - pos: 4.5,58.5 - parent: 1 - type: Transform -- uid: 1898 - type: WallSolid - components: - - pos: 5.5,58.5 - parent: 1 - type: Transform -- uid: 1899 - type: WallSolid - components: - - pos: 7.5,62.5 - parent: 1 - type: Transform -- uid: 1900 - type: WallSolid - components: - - pos: 10.5,62.5 - parent: 1 - type: Transform -- uid: 1901 - type: WallSolid - components: - - pos: 11.5,62.5 - parent: 1 - type: Transform -- uid: 1902 - type: WallSolid - components: - - pos: 12.5,62.5 - parent: 1 - type: Transform -- uid: 1903 - type: WallSolid - components: - - pos: 13.5,62.5 - parent: 1 - type: Transform -- uid: 1904 - type: WallSolid - components: - - pos: 14.5,62.5 - parent: 1 - type: Transform -- uid: 1905 - type: WallSolid - components: - - pos: 15.5,62.5 - parent: 1 - type: Transform -- uid: 1906 - type: WallSolid - components: - - pos: 15.5,61.5 - parent: 1 - type: Transform -- uid: 1907 - type: WallSolid - components: - - pos: 15.5,60.5 - parent: 1 - type: Transform -- uid: 1908 - type: TableWood - components: - - pos: 12.5,60.5 - parent: 1 - type: Transform -- uid: 1909 - type: AirlockMaintSecLocked - components: - - pos: 15.5,58.5 - parent: 1 - type: Transform -- uid: 1910 - type: WallSolid - components: - - pos: 15.5,57.5 - parent: 1 - type: Transform -- uid: 1911 - type: WallSolid - components: - - pos: 15.5,56.5 - parent: 1 - type: Transform -- uid: 1912 - type: WallSolid - components: - - pos: 15.5,55.5 - parent: 1 - type: Transform -- uid: 1913 - type: WallSolid - components: - - pos: 15.5,54.5 - parent: 1 - type: Transform -- uid: 1914 - type: WallSolid - components: - - pos: 15.5,53.5 - parent: 1 - type: Transform -- uid: 1915 - type: WallSolid - components: - - pos: 15.5,52.5 - parent: 1 - type: Transform -- uid: 1916 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 8.5,51.5 - parent: 1 - type: Transform -- uid: 1917 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 6.5,51.5 - parent: 1 - type: Transform -- uid: 1918 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 5.5,51.5 - parent: 1 - type: Transform -- uid: 1919 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 7.5,51.5 - parent: 1 - type: Transform -- uid: 1920 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 4.5,51.5 - parent: 1 - type: Transform -- uid: 1921 - type: WallSolid - components: - - pos: 9.5,51.5 - parent: 1 - type: Transform -- uid: 1922 - type: WallSolid - components: - - pos: 11.5,51.5 - parent: 1 - type: Transform -- uid: 1923 - type: WallSolid - components: - - pos: 12.5,51.5 - parent: 1 - type: Transform -- uid: 1924 - type: WallSolid - components: - - pos: 13.5,51.5 - parent: 1 - type: Transform -- uid: 1925 - type: WallSolid - components: - - pos: 14.5,51.5 - parent: 1 - type: Transform -- uid: 1926 - type: WallSolid - components: - - pos: 15.5,51.5 - parent: 1 - type: Transform -- uid: 1927 - type: TableWood - components: - - pos: 9.5,59.5 - parent: 1 - type: Transform -- uid: 1928 - type: TableWood - components: - - pos: 10.5,59.5 - parent: 1 - type: Transform -- uid: 1929 - type: TableWood - components: - - pos: 11.5,59.5 - parent: 1 - type: Transform -- uid: 1930 - type: TableWood - components: - - pos: 12.5,59.5 - parent: 1 - type: Transform -- uid: 1931 - type: TableWood - components: - - pos: 9.5,60.5 - parent: 1 - type: Transform -- uid: 1932 - type: PaperOffice - components: - - pos: 8.646071,57.523205 - parent: 1 - type: Transform -- uid: 1933 - type: PaperOffice - components: - - pos: 8.354404,57.689873 - parent: 1 - type: Transform -- uid: 1934 - type: BoxFolderBlack - components: - - pos: 9.125238,57.460705 - parent: 1 - type: Transform -- uid: 1935 - type: BoxFolderBlack - components: - - pos: 12.500238,57.648205 - parent: 1 - type: Transform -- uid: 1936 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 6.5,57.5 - parent: 1 - type: Transform -- uid: 1937 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 6.5,56.5 - parent: 1 - type: Transform -- uid: 1938 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 20.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1939 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 19.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1940 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 9.5,54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1941 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 12.5,54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1942 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 14.5,54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1943 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 13.5,54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1944 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 8.5,52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1945 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 7.5,52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1946 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 9.5,52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1947 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 7.5,53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1948 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 8.5,53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1949 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 9.5,53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1950 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 12.5,52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1951 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 13.5,52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1952 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 14.5,52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1953 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 12.5,53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1954 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 13.5,53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1955 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 14.5,53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1956 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 21.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1957 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 8.5,54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1958 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 7.5,54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1959 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -52.5,-6.5 - parent: 1 - type: Transform -- uid: 1960 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -52.5,-10.5 - parent: 1 - type: Transform -- uid: 1961 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -50.5,-12.5 - parent: 1 - type: Transform -- uid: 1962 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -46.5,-12.5 - parent: 1 - type: Transform -- uid: 1963 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -50.5,-10.5 - parent: 1 - type: Transform -- uid: 1964 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -46.5,-10.5 - parent: 1 - type: Transform -- uid: 1965 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -45.5,-11.5 - parent: 1 - type: Transform -- uid: 1966 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -51.5,-11.5 - parent: 1 - type: Transform -- uid: 1967 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -50.5,-10.5 - parent: 1 - type: Transform -- uid: 1968 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -52.5,-10.5 - parent: 1 - type: Transform -- uid: 1969 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -51.5,-11.5 - parent: 1 - type: Transform -- uid: 1970 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -50.5,-12.5 - parent: 1 - type: Transform -- uid: 1971 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -46.5,-12.5 - parent: 1 - type: Transform -- uid: 1972 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -45.5,-11.5 - parent: 1 - type: Transform -- uid: 1973 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -46.5,-10.5 - parent: 1 - type: Transform -- uid: 1974 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -52.5,-6.5 - parent: 1 - type: Transform -- uid: 1975 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -50.5,-5.5 - parent: 1 - type: Transform -- uid: 1976 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -49.5,-5.5 - parent: 1 - type: Transform -- uid: 1977 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -48.5,-5.5 - parent: 1 - type: Transform -- uid: 1978 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -47.5,-5.5 - parent: 1 - type: Transform -- uid: 1979 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -46.5,-5.5 - parent: 1 - type: Transform -- uid: 1980 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -46.5,11.5 - parent: 1 - type: Transform -- uid: 1981 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -47.5,11.5 - parent: 1 - type: Transform -- uid: 1982 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -48.5,11.5 - parent: 1 - type: Transform -- uid: 1983 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -49.5,11.5 - parent: 1 - type: Transform -- uid: 1984 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -50.5,11.5 - parent: 1 - type: Transform -- uid: 1985 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -52.5,12.5 - parent: 1 - type: Transform -- uid: 1986 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -52.5,16.5 - parent: 1 - type: Transform -- uid: 1987 - type: Grille - components: - - pos: -50.5,19.5 - parent: 1 - type: Transform -- uid: 1988 - type: Grille - components: - - pos: -46.5,32.5 - parent: 1 - type: Transform -- uid: 1989 - type: Grille - components: - - pos: -47.5,19.5 - parent: 1 - type: Transform -- uid: 1990 - type: CableHV - components: - - pos: 22.5,-11.5 - parent: 1 - type: Transform -- uid: 1991 - type: Bed - components: - - pos: -13.5,60.5 - parent: 1 - type: Transform -- uid: 1992 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 36.5,5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1993 - type: ReinforcedWindow - components: - - pos: 48.5,-15.5 - parent: 1 - type: Transform -- uid: 1994 - type: WallReinforced - components: - - pos: 50.5,-15.5 - parent: 1 - type: Transform -- uid: 1995 - type: Grille - components: - - pos: 46.5,-15.5 - parent: 1 - type: Transform -- uid: 1996 - type: AtmosDeviceFanTiny - components: - - pos: 51.5,-7.5 - parent: 1 - type: Transform -- uid: 1997 - type: Grille - components: - - pos: 49.5,-15.5 - parent: 1 - type: Transform -- uid: 1998 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: 36.5,6.5 - parent: 1 - type: Transform -- uid: 1999 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-5.5 - parent: 1 - type: Transform -- uid: 2000 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-5.5 - parent: 1 - type: Transform -- uid: 2001 - type: Poweredlight - components: - - pos: 43.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2002 - type: CableApcExtension - components: - - pos: 47.5,-12.5 - parent: 1 - type: Transform -- uid: 2003 - type: CableApcExtension - components: - - pos: 48.5,-14.5 - parent: 1 - type: Transform -- uid: 2004 - type: ReinforcedWindow - components: - - pos: 41.5,-10.5 - parent: 1 - type: Transform -- uid: 2005 - type: WallReinforced - components: - - pos: 44.5,-10.5 - parent: 1 - type: Transform -- uid: 2006 - type: Grille - components: - - pos: 44.5,-13.5 - parent: 1 - type: Transform -- uid: 2007 - type: ReinforcedWindow - components: - - pos: 49.5,-15.5 - parent: 1 - type: Transform -- uid: 2008 - type: WallReinforced - components: - - pos: 52.5,-15.5 - parent: 1 - type: Transform -- uid: 2009 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-5.5 - parent: 1 - type: Transform -- uid: 2010 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 35.5,6.5 - parent: 1 - type: Transform -- uid: 2011 - type: WallReinforced - components: - - pos: 40.5,-10.5 - parent: 1 - type: Transform -- uid: 2012 - type: Grille - components: - - pos: 42.5,-6.5 - parent: 1 - type: Transform -- uid: 2013 - type: Grille - components: - - pos: 41.5,-6.5 - parent: 1 - type: Transform -- uid: 2014 - type: Grille - components: - - pos: 40.5,-6.5 - parent: 1 - type: Transform -- uid: 2015 - type: Grille - components: - - pos: 39.5,-6.5 - parent: 1 - type: Transform -- uid: 2016 - type: Grille - components: - - pos: 37.5,-6.5 - parent: 1 - type: Transform -- uid: 2017 - type: Grille - components: - - pos: 36.5,-6.5 - parent: 1 - type: Transform -- uid: 2018 - type: Grille - components: - - pos: 35.5,-6.5 - parent: 1 - type: Transform -- uid: 2019 - type: Grille - components: - - pos: 34.5,-6.5 - parent: 1 - type: Transform -- uid: 2020 - type: ReinforcedWindow - components: - - pos: 34.5,-6.5 - parent: 1 - type: Transform -- uid: 2021 - type: ReinforcedWindow - components: - - pos: 35.5,-6.5 - parent: 1 - type: Transform -- uid: 2022 - type: ReinforcedWindow - components: - - pos: 36.5,-6.5 - parent: 1 - type: Transform -- uid: 2023 - type: ReinforcedWindow - components: - - pos: 37.5,-6.5 - parent: 1 - type: Transform -- uid: 2024 - type: ReinforcedWindow - components: - - pos: 39.5,-6.5 - parent: 1 - type: Transform -- uid: 2025 - type: ReinforcedWindow - components: - - pos: 40.5,-6.5 - parent: 1 - type: Transform -- uid: 2026 - type: ReinforcedWindow - components: - - pos: 41.5,-6.5 - parent: 1 - type: Transform -- uid: 2027 - type: ReinforcedWindow - components: - - pos: 42.5,-6.5 - parent: 1 - type: Transform -- uid: 2028 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-5.5 - parent: 1 - type: Transform -- uid: 2029 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-5.5 - parent: 1 - type: Transform -- uid: 2030 - type: AirlockGlassShuttle - components: - - rot: 1.5707963267948966 rad - pos: 37.5,3.5 - parent: 1 - type: Transform - - dockJointId: docking21483 - dockedWith: 8865 - type: Docking - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 2031 - type: AtmosDeviceFanTiny - components: - - rot: 1.5707963267948966 rad - pos: 37.5,3.5 - parent: 1 - type: Transform -- uid: 2032 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-5.5 - parent: 1 - type: Transform -- uid: 2033 - type: DisposalUnit - components: - - pos: 33.5,7.5 - parent: 1 - type: Transform -- uid: 2034 - type: Grille - components: - - pos: 51.5,-13.5 - parent: 1 - type: Transform -- uid: 2035 - type: Grille - components: - - pos: 48.5,-15.5 - parent: 1 - type: Transform -- uid: 2036 - type: AtmosDeviceFanTiny - components: - - pos: 51.5,-14.5 - parent: 1 - type: Transform -- uid: 2037 - type: CableApcExtension - components: - - pos: 51.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2038 - type: CableApcExtension - components: - - pos: 48.5,-13.5 - parent: 1 - type: Transform -- uid: 2039 - type: CableApcExtension - components: - - pos: 49.5,-14.5 - parent: 1 - type: Transform -- uid: 2040 - type: Grille - components: - - pos: 44.5,-14.5 - parent: 1 - type: Transform -- uid: 2041 - type: WallReinforced - components: - - pos: 44.5,-15.5 - parent: 1 - type: Transform -- uid: 2042 - type: WallReinforced - components: - - pos: 50.5,-8.5 - parent: 1 - type: Transform -- uid: 2043 - type: SpawnPointLatejoin - components: - - pos: 42.5,-7.5 - parent: 1 - type: Transform -- uid: 2044 - type: SpawnPointLatejoin - components: - - pos: 40.5,-7.5 - parent: 1 - type: Transform -- uid: 2045 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-6.5 - parent: 1 - type: Transform -- uid: 2046 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-5.5 - parent: 1 - type: Transform -- uid: 2047 - type: AirlockGlassShuttle - components: - - rot: 1.5707963267948966 rad - pos: 37.5,1.5 - parent: 1 - type: Transform - - dockJointId: docking21482 - dockedWith: 8864 - type: Docking - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 2048 - type: CableHV - components: - - pos: -40.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2049 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-5.5 - parent: 1 - type: Transform -- uid: 2050 - type: WallReinforced - components: - - pos: -2.5,-48.5 - parent: 1 - type: Transform -- uid: 2051 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-5.5 - parent: 1 - type: Transform -- uid: 2052 - type: CableApcExtension - components: - - pos: 45.5,-12.5 - parent: 1 - type: Transform -- uid: 2053 - type: ReinforcedWindow - components: - - pos: 44.5,-13.5 - parent: 1 - type: Transform -- uid: 2054 - type: ReinforcedWindow - components: - - pos: 42.5,-10.5 - parent: 1 - type: Transform -- uid: 2055 - type: WallReinforced - components: - - pos: 51.5,-6.5 - parent: 1 - type: Transform -- uid: 2056 - type: Grille - components: - - pos: 50.5,-11.5 - parent: 1 - type: Transform -- uid: 2057 - type: CableApcExtension - components: - - pos: 50.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2058 - type: ReinforcedWindow - components: - - pos: 50.5,-12.5 - parent: 1 - type: Transform -- uid: 2059 - type: CableApcExtension - components: - - pos: 50.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2060 - type: CableApcExtension - components: - - pos: 46.5,-12.5 - parent: 1 - type: Transform -- uid: 2061 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-7.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 2062 - type: SignSpace - components: - - pos: 50.5,-6.5 - parent: 1 - type: Transform -- uid: 2063 - type: WallReinforced - components: - - pos: -2.5,-47.5 - parent: 1 - type: Transform -- uid: 2064 - type: WallReinforced - components: - - pos: 3.5,-42.5 - parent: 1 - type: Transform -- uid: 2065 - type: WallReinforced - components: - - pos: 1.5,-48.5 - parent: 1 - type: Transform -- uid: 2066 - type: WallReinforced - components: - - pos: 1.5,-47.5 - parent: 1 - type: Transform -- uid: 2067 - type: WallReinforced - components: - - pos: -4.5,-42.5 - parent: 1 - type: Transform -- uid: 2068 - type: Grille - components: - - pos: -4.5,-40.5 - parent: 1 - type: Transform -- uid: 2069 - type: WallReinforced - components: - - pos: -3.5,-46.5 - parent: 1 - type: Transform -- uid: 2070 - type: Grille - components: - - pos: -3.5,-43.5 - parent: 1 - type: Transform -- uid: 2071 - type: Grille - components: - - pos: -4.5,-41.5 - parent: 1 - type: Transform -- uid: 2072 - type: WallReinforced - components: - - pos: 2.5,-46.5 - parent: 1 - type: Transform -- uid: 2073 - type: Grille - components: - - pos: 2.5,-43.5 - parent: 1 - type: Transform -- uid: 2074 - type: Grille - components: - - pos: -3.5,-44.5 - parent: 1 - type: Transform -- uid: 2075 - type: Grille - components: - - pos: -3.5,-45.5 - parent: 1 - type: Transform -- uid: 2076 - type: Grille - components: - - pos: 2.5,-44.5 - parent: 1 - type: Transform -- uid: 2077 - type: Grille - components: - - pos: 2.5,-45.5 - parent: 1 - type: Transform -- uid: 2078 - type: WallReinforced - components: - - pos: -3.5,-42.5 - parent: 1 - type: Transform -- uid: 2079 - type: WallReinforced - components: - - pos: -2.5,-42.5 - parent: 1 - type: Transform -- uid: 2080 - type: WallReinforced - components: - - pos: -1.5,-42.5 - parent: 1 - type: Transform -- uid: 2081 - type: WallReinforced - components: - - pos: 0.5,-42.5 - parent: 1 - type: Transform -- uid: 2082 - type: WallReinforced - components: - - pos: 1.5,-42.5 - parent: 1 - type: Transform -- uid: 2083 - type: WallReinforced - components: - - pos: 2.5,-42.5 - parent: 1 - type: Transform -- uid: 2084 - type: WallReinforced - components: - - pos: -2.5,-38.5 - parent: 1 - type: Transform -- uid: 2085 - type: WallReinforced - components: - - pos: 1.5,-38.5 - parent: 1 - type: Transform -- uid: 2086 - type: WallReinforced - components: - - pos: -2.5,-46.5 - parent: 1 - type: Transform -- uid: 2087 - type: WallReinforced - components: - - pos: 1.5,-46.5 - parent: 1 - type: Transform -- uid: 2088 - type: Grille - components: - - pos: -4.5,-39.5 - parent: 1 - type: Transform -- uid: 2089 - type: Grille - components: - - pos: -4.5,-38.5 - parent: 1 - type: Transform -- uid: 2090 - type: Grille - components: - - pos: -4.5,-36.5 - parent: 1 - type: Transform -- uid: 2091 - type: Grille - components: - - pos: -4.5,-35.5 - parent: 1 - type: Transform -- uid: 2092 - type: Grille - components: - - pos: -4.5,-34.5 - parent: 1 - type: Transform -- uid: 2093 - type: Grille - components: - - pos: -4.5,-33.5 - parent: 1 - type: Transform -- uid: 2094 - type: Grille - components: - - pos: -4.5,-32.5 - parent: 1 - type: Transform -- uid: 2095 - type: WallReinforced - components: - - pos: -4.5,-37.5 - parent: 1 - type: Transform -- uid: 2096 - type: WallReinforced - components: - - pos: -4.5,-31.5 - parent: 1 - type: Transform -- uid: 2097 - type: WallReinforced - components: - - pos: 3.5,-31.5 - parent: 1 - type: Transform -- uid: 2098 - type: Grille - components: - - pos: 3.5,-37.5 - parent: 1 - type: Transform -- uid: 2099 - type: Grille - components: - - pos: 3.5,-41.5 - parent: 1 - type: Transform -- uid: 2100 - type: Grille - components: - - pos: 3.5,-40.5 - parent: 1 - type: Transform -- uid: 2101 - type: Grille - components: - - pos: 3.5,-39.5 - parent: 1 - type: Transform -- uid: 2102 - type: Grille - components: - - pos: 3.5,-38.5 - parent: 1 - type: Transform -- uid: 2103 - type: Grille - components: - - pos: 3.5,-36.5 - parent: 1 - type: Transform -- uid: 2104 - type: WallReinforced - components: - - pos: 3.5,-35.5 - parent: 1 - type: Transform -- uid: 2105 - type: Grille - components: - - pos: 3.5,-34.5 - parent: 1 - type: Transform -- uid: 2106 - type: Grille - components: - - pos: 3.5,-33.5 - parent: 1 - type: Transform -- uid: 2107 - type: Grille - components: - - pos: 3.5,-32.5 - parent: 1 - type: Transform -- uid: 2108 - type: WallReinforced - components: - - pos: 33.5,-6.5 - parent: 1 - type: Transform -- uid: 2109 - type: WallReinforced - components: - - pos: 38.5,-6.5 - parent: 1 - type: Transform -- uid: 2110 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 36.5,7.5 - parent: 1 - type: Transform -- uid: 2111 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 37.5,6.5 - parent: 1 - type: Transform -- uid: 2112 - type: ReinforcedWindow - components: - - pos: 33.5,-3.5 - parent: 1 - type: Transform -- uid: 2113 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 37.5,5.5 - parent: 1 - type: Transform -- uid: 2114 - type: Grille - components: - - pos: 33.5,-3.5 - parent: 1 - type: Transform -- uid: 2115 - type: Grille - components: - - pos: 33.5,-4.5 - parent: 1 - type: Transform -- uid: 2116 - type: Grille - components: - - pos: 33.5,-5.5 - parent: 1 - type: Transform -- uid: 2117 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 1 - type: Transform -- uid: 2118 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 35.5,0.5 - parent: 1 - type: Transform -- uid: 2119 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 34.5,7.5 - parent: 1 - type: Transform -- uid: 2120 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 36.5,0.5 - parent: 1 - type: Transform -- uid: 2121 - type: ReinforcedWindow - components: - - pos: 33.5,-4.5 - parent: 1 - type: Transform -- uid: 2122 - type: ReinforcedWindow - components: - - pos: 33.5,-5.5 - parent: 1 - type: Transform -- uid: 2123 - type: WallReinforced - components: - - pos: -14.5,-42.5 - parent: 1 - type: Transform -- uid: 2124 - type: WallReinforced - components: - - pos: -12.5,-42.5 - parent: 1 - type: Transform -- uid: 2125 - type: WallReinforced - components: - - pos: -11.5,-41.5 - parent: 1 - type: Transform -- uid: 2126 - type: WallReinforced - components: - - pos: -11.5,-42.5 - parent: 1 - type: Transform -- uid: 2127 - type: WallReinforced - components: - - pos: -10.5,-42.5 - parent: 1 - type: Transform -- uid: 2128 - type: WallReinforced - components: - - pos: -9.5,-42.5 - parent: 1 - type: Transform -- uid: 2129 - type: Grille - components: - - pos: -7.5,-42.5 - parent: 1 - type: Transform -- uid: 2130 - type: Grille - components: - - pos: -6.5,-42.5 - parent: 1 - type: Transform -- uid: 2131 - type: WallReinforced - components: - - pos: -5.5,-42.5 - parent: 1 - type: Transform -- uid: 2132 - type: WallReinforced - components: - - pos: -12.5,-38.5 - parent: 1 - type: Transform -- uid: 2133 - type: WallReinforced - components: - - pos: -15.5,-38.5 - parent: 1 - type: Transform -- uid: 2134 - type: WallReinforced - components: - - pos: -11.5,-38.5 - parent: 1 - type: Transform -- uid: 2135 - type: WallReinforced - components: - - pos: -14.5,-38.5 - parent: 1 - type: Transform -- uid: 2136 - type: WallReinforced - components: - - pos: -15.5,-40.5 - parent: 1 - type: Transform -- uid: 2137 - type: WallReinforced - components: - - pos: -15.5,-39.5 - parent: 1 - type: Transform -- uid: 2138 - type: WallReinforced - components: - - pos: -11.5,-40.5 - parent: 1 - type: Transform -- uid: 2139 - type: WallReinforced - components: - - pos: -11.5,-39.5 - parent: 1 - type: Transform -- uid: 2140 - type: Grille - components: - - pos: -52.5,12.5 - parent: 1 - type: Transform -- uid: 2141 - type: Grille - components: - - pos: -52.5,16.5 - parent: 1 - type: Transform -- uid: 2142 - type: Grille - components: - - pos: -50.5,32.5 - parent: 1 - type: Transform -- uid: 2143 - type: Grille - components: - - pos: -47.5,32.5 - parent: 1 - type: Transform -- uid: 2144 - type: Grille - components: - - pos: -49.5,19.5 - parent: 1 - type: Transform -- uid: 2145 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 52.5,36.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 2146 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 52.5,38.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 2147 - type: Catwalk - components: - - pos: 7.5,-38.5 - parent: 1 - type: Transform -- uid: 2148 - type: Grille - components: - - pos: -2.5,-39.5 - parent: 1 - type: Transform -- uid: 2149 - type: Grille - components: - - pos: -2.5,-40.5 - parent: 1 - type: Transform -- uid: 2150 - type: Grille - components: - - pos: -2.5,-41.5 - parent: 1 - type: Transform -- uid: 2151 - type: Grille - components: - - pos: 1.5,-39.5 - parent: 1 - type: Transform -- uid: 2152 - type: Grille - components: - - pos: 1.5,-40.5 - parent: 1 - type: Transform -- uid: 2153 - type: Grille - components: - - pos: 1.5,-41.5 - parent: 1 - type: Transform -- uid: 2154 - type: Grille - components: - - pos: -1.5,-38.5 - parent: 1 - type: Transform -- uid: 2155 - type: Grille - components: - - pos: -0.5,-38.5 - parent: 1 - type: Transform -- uid: 2156 - type: Grille - components: - - pos: 0.5,-38.5 - parent: 1 - type: Transform -- uid: 2157 - type: Grille - components: - - pos: -1.5,-36.5 - parent: 1 - type: Transform -- uid: 2158 - type: Grille - components: - - pos: -0.5,-36.5 - parent: 1 - type: Transform -- uid: 2159 - type: Grille - components: - - pos: 0.5,-36.5 - parent: 1 - type: Transform -- uid: 2160 - type: Grille - components: - - pos: 1.5,-35.5 - parent: 1 - type: Transform -- uid: 2161 - type: Grille - components: - - pos: 1.5,-34.5 - parent: 1 - type: Transform -- uid: 2162 - type: Grille - components: - - pos: 1.5,-33.5 - parent: 1 - type: Transform -- uid: 2163 - type: Grille - components: - - pos: 0.5,-32.5 - parent: 1 - type: Transform -- uid: 2164 - type: Grille - components: - - pos: -0.5,-32.5 - parent: 1 - type: Transform -- uid: 2165 - type: Grille - components: - - pos: -1.5,-32.5 - parent: 1 - type: Transform -- uid: 2166 - type: Grille - components: - - pos: -2.5,-33.5 - parent: 1 - type: Transform -- uid: 2167 - type: Grille - components: - - pos: -2.5,-34.5 - parent: 1 - type: Transform -- uid: 2168 - type: Grille - components: - - pos: -2.5,-35.5 - parent: 1 - type: Transform -- uid: 2169 - type: WallReinforced - components: - - pos: 1.5,-32.5 - parent: 1 - type: Transform -- uid: 2170 - type: WallReinforced - components: - - pos: -2.5,-32.5 - parent: 1 - type: Transform -- uid: 2171 - type: WallReinforced - components: - - pos: 1.5,-36.5 - parent: 1 - type: Transform -- uid: 2172 - type: WallReinforced - components: - - pos: -2.5,-36.5 - parent: 1 - type: Transform -- uid: 2173 - type: WallReinforced - components: - - pos: -2.5,-30.5 - parent: 1 - type: Transform -- uid: 2174 - type: WallReinforced - components: - - pos: -1.5,-30.5 - parent: 1 - type: Transform -- uid: 2175 - type: WallReinforced - components: - - pos: -0.5,-30.5 - parent: 1 - type: Transform -- uid: 2176 - type: WallReinforced - components: - - pos: 0.5,-30.5 - parent: 1 - type: Transform -- uid: 2177 - type: WallReinforced - components: - - pos: 1.5,-30.5 - parent: 1 - type: Transform -- uid: 2178 - type: WallReinforced - components: - - pos: 1.5,-29.5 - parent: 1 - type: Transform -- uid: 2179 - type: WallReinforced - components: - - pos: 1.5,-28.5 - parent: 1 - type: Transform -- uid: 2180 - type: WallReinforced - components: - - pos: 0.5,-28.5 - parent: 1 - type: Transform -- uid: 2181 - type: WallReinforced - components: - - pos: -0.5,-28.5 - parent: 1 - type: Transform -- uid: 2182 - type: WallReinforced - components: - - pos: -1.5,-28.5 - parent: 1 - type: Transform -- uid: 2183 - type: WallReinforced - components: - - pos: -2.5,-28.5 - parent: 1 - type: Transform -- uid: 2184 - type: WallReinforced - components: - - pos: 1.5,-27.5 - parent: 1 - type: Transform -- uid: 2185 - type: WallReinforced - components: - - pos: 1.5,-26.5 - parent: 1 - type: Transform -- uid: 2186 - type: WallReinforced - components: - - pos: 0.5,-26.5 - parent: 1 - type: Transform -- uid: 2187 - type: WallReinforced - components: - - pos: -0.5,-26.5 - parent: 1 - type: Transform -- uid: 2188 - type: WallReinforced - components: - - pos: -1.5,-26.5 - parent: 1 - type: Transform -- uid: 2189 - type: WallReinforced - components: - - pos: -2.5,-26.5 - parent: 1 - type: Transform -- uid: 2190 - type: WallReinforced - components: - - pos: 1.5,-25.5 - parent: 1 - type: Transform -- uid: 2191 - type: WallReinforced - components: - - pos: 1.5,-24.5 - parent: 1 - type: Transform -- uid: 2192 - type: WallReinforced - components: - - pos: 0.5,-24.5 - parent: 1 - type: Transform -- uid: 2193 - type: WallReinforced - components: - - pos: -0.5,-24.5 - parent: 1 - type: Transform -- uid: 2194 - type: WallReinforced - components: - - pos: -1.5,-24.5 - parent: 1 - type: Transform -- uid: 2195 - type: WallReinforced - components: - - pos: -2.5,-24.5 - parent: 1 - type: Transform -- uid: 2196 - type: WallReinforced - components: - - pos: 1.5,-23.5 - parent: 1 - type: Transform -- uid: 2197 - type: WallReinforced - components: - - pos: 1.5,-22.5 - parent: 1 - type: Transform -- uid: 2198 - type: WallReinforced - components: - - pos: 0.5,-22.5 - parent: 1 - type: Transform -- uid: 2199 - type: WallReinforced - components: - - pos: -0.5,-22.5 - parent: 1 - type: Transform -- uid: 2200 - type: WallReinforced - components: - - pos: -1.5,-22.5 - parent: 1 - type: Transform -- uid: 2201 - type: WallReinforced - components: - - pos: -2.5,-22.5 - parent: 1 - type: Transform -- uid: 2202 - type: WallReinforced - components: - - pos: 1.5,-21.5 - parent: 1 - type: Transform -- uid: 2203 - type: WallReinforced - components: - - pos: 1.5,-20.5 - parent: 1 - type: Transform -- uid: 2204 - type: WallReinforced - components: - - pos: 0.5,-20.5 - parent: 1 - type: Transform -- uid: 2205 - type: WallReinforced - components: - - pos: -0.5,-20.5 - parent: 1 - type: Transform -- uid: 2206 - type: WallReinforced - components: - - pos: -1.5,-20.5 - parent: 1 - type: Transform -- uid: 2207 - type: WallReinforced - components: - - pos: -2.5,-20.5 - parent: 1 - type: Transform -- uid: 2208 - type: WallReinforced - components: - - pos: 1.5,-19.5 - parent: 1 - type: Transform -- uid: 2209 - type: WallReinforced - components: - - pos: 1.5,-18.5 - parent: 1 - type: Transform -- uid: 2210 - type: WallReinforced - components: - - pos: 0.5,-18.5 - parent: 1 - type: Transform -- uid: 2211 - type: WallReinforced - components: - - pos: -0.5,-18.5 - parent: 1 - type: Transform -- uid: 2212 - type: WallReinforced - components: - - pos: -1.5,-18.5 - parent: 1 - type: Transform -- uid: 2213 - type: WallReinforced - components: - - pos: -2.5,-18.5 - parent: 1 - type: Transform -- uid: 2214 - type: WallSolid - components: - - pos: -17.5,-21.5 - parent: 1 - type: Transform -- uid: 2215 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-35.5 - parent: 1 - type: Transform -- uid: 2216 - type: WallReinforced - components: - - pos: -18.5,-41.5 - parent: 1 - type: Transform -- uid: 2217 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-21.5 - parent: 1 - type: Transform -- uid: 2218 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 1 - type: Transform -- uid: 2219 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-33.5 - parent: 1 - type: Transform -- uid: 2220 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-34.5 - parent: 1 - type: Transform -- uid: 2221 - type: WallReinforced - components: - - pos: -16.5,-28.5 - parent: 1 - type: Transform -- uid: 2222 - type: WallReinforced - components: - - pos: -16.5,-29.5 - parent: 1 - type: Transform -- uid: 2223 - type: WallReinforced - components: - - pos: -16.5,-30.5 - parent: 1 - type: Transform -- uid: 2224 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 1 - type: Transform -- uid: 2225 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 1 - type: Transform -- uid: 2226 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 1 - type: Transform -- uid: 2227 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-30.5 - parent: 1 - type: Transform -- uid: 2228 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-31.5 - parent: 1 - type: Transform -- uid: 2229 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 1 - type: Transform -- uid: 2230 - type: WallReinforced - components: - - pos: -15.5,-30.5 - parent: 1 - type: Transform -- uid: 2231 - type: WallReinforced - components: - - pos: -15.5,-20.5 - parent: 1 - type: Transform -- uid: 2232 - type: WallReinforced - components: - - pos: -15.5,-19.5 - parent: 1 - type: Transform -- uid: 2233 - type: WallReinforced - components: - - pos: -15.5,-18.5 - parent: 1 - type: Transform -- uid: 2234 - type: WallReinforced - components: - - pos: -15.5,-17.5 - parent: 1 - type: Transform -- uid: 2235 - type: WallReinforced - components: - - pos: -15.5,-16.5 - parent: 1 - type: Transform -- uid: 2236 - type: WallReinforced - components: - - pos: -14.5,-16.5 - parent: 1 - type: Transform -- uid: 2237 - type: WallReinforced - components: - - pos: -6.5,-16.5 - parent: 1 - type: Transform -- uid: 2238 - type: WallSolid - components: - - pos: 20.5,5.5 - parent: 1 - type: Transform -- uid: 2239 - type: AirlockAtmosphericsGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-16.5 - parent: 1 - type: Transform -- uid: 2240 - type: WallReinforced - components: - - pos: -10.5,-16.5 - parent: 1 - type: Transform -- uid: 2241 - type: Grille - components: - - pos: 9.5,-10.5 - parent: 1 - type: Transform -- uid: 2242 - type: WallReinforced - components: - - pos: -7.5,-16.5 - parent: 1 - type: Transform -- uid: 2243 - type: WallReinforced - components: - - pos: -18.5,-38.5 - parent: 1 - type: Transform -- uid: 2244 - type: WallReinforced - components: - - pos: -21.5,-38.5 - parent: 1 - type: Transform -- uid: 2245 - type: WallReinforced - components: - - pos: -5.5,-16.5 - parent: 1 - type: Transform -- uid: 2246 - type: WallReinforced - components: - - pos: -4.5,-16.5 - parent: 1 - type: Transform -- uid: 2247 - type: WallReinforced - components: - - pos: -3.5,-16.5 - parent: 1 - type: Transform -- uid: 2248 - type: WallReinforced - components: - - pos: -2.5,-16.5 - parent: 1 - type: Transform -- uid: 2249 - type: WallReinforced - components: - - pos: -1.5,-16.5 - parent: 1 - type: Transform -- uid: 2250 - type: AirlockExternalGlassLocked - components: - - pos: -0.5,-16.5 - parent: 1 - type: Transform -- uid: 2251 - type: WallReinforced - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform -- uid: 2252 - type: WallReinforced - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform -- uid: 2253 - type: WallReinforced - components: - - pos: 2.5,-16.5 - parent: 1 - type: Transform -- uid: 2254 - type: WallReinforced - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform -- uid: 2255 - type: Grille - components: - - pos: -4.5,-18.5 - parent: 1 - type: Transform -- uid: 2256 - type: Grille - components: - - pos: -4.5,-19.5 - parent: 1 - type: Transform -- uid: 2257 - type: Grille - components: - - pos: -4.5,-20.5 - parent: 1 - type: Transform -- uid: 2258 - type: Grille - components: - - pos: -4.5,-21.5 - parent: 1 - type: Transform -- uid: 2259 - type: Grille - components: - - pos: -4.5,-22.5 - parent: 1 - type: Transform -- uid: 2260 - type: Grille - components: - - pos: -4.5,-23.5 - parent: 1 - type: Transform -- uid: 2261 - type: Grille - components: - - pos: -4.5,-24.5 - parent: 1 - type: Transform -- uid: 2262 - type: Grille - components: - - pos: -4.5,-25.5 - parent: 1 - type: Transform -- uid: 2263 - type: Grille - components: - - pos: -4.5,-26.5 - parent: 1 - type: Transform -- uid: 2264 - type: Grille - components: - - pos: -4.5,-27.5 - parent: 1 - type: Transform -- uid: 2265 - type: Grille - components: - - pos: -4.5,-28.5 - parent: 1 - type: Transform -- uid: 2266 - type: Grille - components: - - pos: -4.5,-29.5 - parent: 1 - type: Transform -- uid: 2267 - type: Grille - components: - - pos: -4.5,-30.5 - parent: 1 - type: Transform -- uid: 2268 - type: ReinforcedWindow - components: - - pos: -4.5,-18.5 - parent: 1 - type: Transform -- uid: 2269 - type: ReinforcedWindow - components: - - pos: -4.5,-19.5 - parent: 1 - type: Transform -- uid: 2270 - type: ReinforcedWindow - components: - - pos: -4.5,-20.5 - parent: 1 - type: Transform -- uid: 2271 - type: ReinforcedWindow - components: - - pos: -4.5,-21.5 - parent: 1 - type: Transform -- uid: 2272 - type: ReinforcedWindow - components: - - pos: -4.5,-22.5 - parent: 1 - type: Transform -- uid: 2273 - type: ReinforcedWindow - components: - - pos: -4.5,-23.5 - parent: 1 - type: Transform -- uid: 2274 - type: ReinforcedWindow - components: - - pos: -4.5,-24.5 - parent: 1 - type: Transform -- uid: 2275 - type: ReinforcedWindow - components: - - pos: -4.5,-25.5 - parent: 1 - type: Transform -- uid: 2276 - type: ReinforcedWindow - components: - - pos: -4.5,-26.5 - parent: 1 - type: Transform -- uid: 2277 - type: ReinforcedWindow - components: - - pos: -4.5,-27.5 - parent: 1 - type: Transform -- uid: 2278 - type: ReinforcedWindow - components: - - pos: -4.5,-28.5 - parent: 1 - type: Transform -- uid: 2279 - type: ReinforcedWindow - components: - - pos: -4.5,-29.5 - parent: 1 - type: Transform -- uid: 2280 - type: ReinforcedWindow - components: - - pos: -4.5,-30.5 - parent: 1 - type: Transform -- uid: 2281 - type: WallReinforced - components: - - pos: -4.5,-17.5 - parent: 1 - type: Transform -- uid: 2282 - type: ReinforcedWindow - components: - - pos: -4.5,-32.5 - parent: 1 - type: Transform -- uid: 2283 - type: ReinforcedWindow - components: - - pos: -4.5,-33.5 - parent: 1 - type: Transform -- uid: 2284 - type: ReinforcedWindow - components: - - pos: -4.5,-34.5 - parent: 1 - type: Transform -- uid: 2285 - type: ReinforcedWindow - components: - - pos: -4.5,-35.5 - parent: 1 - type: Transform -- uid: 2286 - type: ReinforcedWindow - components: - - pos: -4.5,-36.5 - parent: 1 - type: Transform -- uid: 2287 - type: ReinforcedWindow - components: - - pos: -4.5,-38.5 - parent: 1 - type: Transform -- uid: 2288 - type: ReinforcedWindow - components: - - pos: -4.5,-39.5 - parent: 1 - type: Transform -- uid: 2289 - type: ReinforcedWindow - components: - - pos: -4.5,-40.5 - parent: 1 - type: Transform -- uid: 2290 - type: ReinforcedWindow - components: - - pos: -4.5,-41.5 - parent: 1 - type: Transform -- uid: 2291 - type: Grille - components: - - pos: -8.5,-42.5 - parent: 1 - type: Transform -- uid: 2292 - type: WallReinforced - components: - - pos: 4.5,-42.5 - parent: 1 - type: Transform -- uid: 2293 - type: Grille - components: - - pos: 7.5,-42.5 - parent: 1 - type: Transform -- uid: 2294 - type: Grille - components: - - pos: 6.5,-42.5 - parent: 1 - type: Transform -- uid: 2295 - type: Grille - components: - - pos: 5.5,-42.5 - parent: 1 - type: Transform -- uid: 2296 - type: WallReinforced - components: - - pos: 8.5,-42.5 - parent: 1 - type: Transform -- uid: 2297 - type: WallReinforced - components: - - pos: 9.5,-42.5 - parent: 1 - type: Transform -- uid: 2298 - type: WallReinforced - components: - - pos: 10.5,-42.5 - parent: 1 - type: Transform -- uid: 2299 - type: WallReinforced - components: - - pos: 11.5,-42.5 - parent: 1 - type: Transform -- uid: 2300 - type: ReinforcedWindow - components: - - pos: -8.5,-42.5 - parent: 1 - type: Transform -- uid: 2301 - type: WallReinforced - components: - - pos: 13.5,-42.5 - parent: 1 - type: Transform -- uid: 2302 - type: WallReinforced - components: - - pos: 14.5,-42.5 - parent: 1 - type: Transform -- uid: 2303 - type: WallReinforced - components: - - pos: 14.5,-41.5 - parent: 1 - type: Transform -- uid: 2304 - type: WallReinforced - components: - - pos: 14.5,-40.5 - parent: 1 - type: Transform -- uid: 2305 - type: WallReinforced - components: - - pos: 14.5,-39.5 - parent: 1 - type: Transform -- uid: 2306 - type: WallReinforced - components: - - pos: 14.5,-38.5 - parent: 1 - type: Transform -- uid: 2307 - type: WallReinforced - components: - - pos: 14.5,-37.5 - parent: 1 - type: Transform -- uid: 2308 - type: WallReinforced - components: - - pos: 14.5,-36.5 - parent: 1 - type: Transform -- uid: 2309 - type: WallReinforced - components: - - pos: 15.5,-41.5 - parent: 1 - type: Transform -- uid: 2310 - type: WallReinforced - components: - - pos: 14.5,-34.5 - parent: 1 - type: Transform -- uid: 2311 - type: WallReinforced - components: - - pos: 14.5,-33.5 - parent: 1 - type: Transform -- uid: 2312 - type: WallReinforced - components: - - pos: 14.5,-32.5 - parent: 1 - type: Transform -- uid: 2313 - type: WallReinforced - components: - - pos: 14.5,-31.5 - parent: 1 - type: Transform -- uid: 2314 - type: WallReinforced - components: - - pos: 14.5,-30.5 - parent: 1 - type: Transform -- uid: 2315 - type: WallReinforced - components: - - pos: 14.5,-29.5 - parent: 1 - type: Transform -- uid: 2316 - type: WallReinforced - components: - - pos: 14.5,-28.5 - parent: 1 - type: Transform -- uid: 2317 - type: WallReinforced - components: - - pos: 14.5,-27.5 - parent: 1 - type: Transform -- uid: 2318 - type: WallReinforced - components: - - pos: 14.5,-26.5 - parent: 1 - type: Transform -- uid: 2319 - type: WallReinforced - components: - - pos: 14.5,-25.5 - parent: 1 - type: Transform -- uid: 2320 - type: Grille - components: - - pos: 18.5,-20.5 - parent: 1 - type: Transform -- uid: 2321 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 14.5,-24.5 - parent: 1 - type: Transform -- uid: 2322 - type: WallReinforced - components: - - pos: 14.5,-22.5 - parent: 1 - type: Transform -- uid: 2323 - type: WallReinforced - components: - - pos: 14.5,-21.5 - parent: 1 - type: Transform -- uid: 2324 - type: WallReinforced - components: - - pos: 14.5,-20.5 - parent: 1 - type: Transform -- uid: 2325 - type: WallReinforced - components: - - pos: 14.5,-19.5 - parent: 1 - type: Transform -- uid: 2326 - type: WallReinforced - components: - - pos: 14.5,-18.5 - parent: 1 - type: Transform -- uid: 2327 - type: WallReinforced - components: - - pos: 14.5,-17.5 - parent: 1 - type: Transform -- uid: 2328 - type: WallReinforced - components: - - pos: 14.5,-16.5 - parent: 1 - type: Transform -- uid: 2329 - type: WallReinforced - components: - - pos: 13.5,-16.5 - parent: 1 - type: Transform -- uid: 2330 - type: WallReinforced - components: - - pos: 8.5,-16.5 - parent: 1 - type: Transform -- uid: 2331 - type: WallReinforced - components: - - pos: 9.5,-16.5 - parent: 1 - type: Transform -- uid: 2332 - type: WallReinforced - components: - - pos: 10.5,-16.5 - parent: 1 - type: Transform -- uid: 2333 - type: WallReinforced - components: - - pos: 6.5,-16.5 - parent: 1 - type: Transform -- uid: 2334 - type: ReinforcedWindow - components: - - pos: 5.5,-11.5 - parent: 1 - type: Transform -- uid: 2335 - type: Grille - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform -- uid: 2336 - type: WallReinforced - components: - - pos: 8.5,-21.5 - parent: 1 - type: Transform -- uid: 2337 - type: WallReinforced - components: - - pos: 5.5,-16.5 - parent: 1 - type: Transform -- uid: 2338 - type: WallReinforced - components: - - pos: 4.5,-16.5 - parent: 1 - type: Transform -- uid: 2339 - type: WallReinforced - components: - - pos: 13.5,-38.5 - parent: 1 - type: Transform -- uid: 2340 - type: WallReinforced - components: - - pos: 11.5,-38.5 - parent: 1 - type: Transform -- uid: 2341 - type: WallReinforced - components: - - pos: 10.5,-38.5 - parent: 1 - type: Transform -- uid: 2342 - type: WallReinforced - components: - - pos: 10.5,-39.5 - parent: 1 - type: Transform -- uid: 2343 - type: WallReinforced - components: - - pos: 10.5,-40.5 - parent: 1 - type: Transform -- uid: 2344 - type: WallReinforced - components: - - pos: 10.5,-41.5 - parent: 1 - type: Transform -- uid: 2345 - type: ReinforcedWindow - components: - - pos: -7.5,-42.5 - parent: 1 - type: Transform -- uid: 2346 - type: ReinforcedWindow - components: - - pos: -6.5,-42.5 - parent: 1 - type: Transform -- uid: 2347 - type: ReinforcedWindow - components: - - pos: 5.5,-42.5 - parent: 1 - type: Transform -- uid: 2348 - type: ReinforcedWindow - components: - - pos: 6.5,-42.5 - parent: 1 - type: Transform -- uid: 2349 - type: ReinforcedWindow - components: - - pos: 7.5,-42.5 - parent: 1 - type: Transform -- uid: 2350 - type: ReinforcedWindow - components: - - pos: 3.5,-32.5 - parent: 1 - type: Transform -- uid: 2351 - type: ReinforcedWindow - components: - - pos: 3.5,-33.5 - parent: 1 - type: Transform -- uid: 2352 - type: ReinforcedWindow - components: - - pos: 3.5,-34.5 - parent: 1 - type: Transform -- uid: 2353 - type: ReinforcedWindow - components: - - pos: 3.5,-37.5 - parent: 1 - type: Transform -- uid: 2354 - type: ReinforcedWindow - components: - - pos: 3.5,-36.5 - parent: 1 - type: Transform -- uid: 2355 - type: ReinforcedWindow - components: - - pos: 3.5,-38.5 - parent: 1 - type: Transform -- uid: 2356 - type: ReinforcedWindow - components: - - pos: 3.5,-39.5 - parent: 1 - type: Transform -- uid: 2357 - type: ReinforcedWindow - components: - - pos: 3.5,-40.5 - parent: 1 - type: Transform -- uid: 2358 - type: ReinforcedWindow - components: - - pos: 3.5,-41.5 - parent: 1 - type: Transform -- uid: 2359 - type: WallReinforced - components: - - pos: -21.5,-32.5 - parent: 1 - type: Transform -- uid: 2360 - type: WallReinforced - components: - - pos: -21.5,-31.5 - parent: 1 - type: Transform -- uid: 2361 - type: WallReinforced - components: - - pos: -10.5,-20.5 - parent: 1 - type: Transform -- uid: 2362 - type: WallReinforced - components: - - pos: -11.5,-20.5 - parent: 1 - type: Transform -- uid: 2363 - type: WallReinforced - components: - - pos: -9.5,-17.5 - parent: 1 - type: Transform -- uid: 2364 - type: WallReinforced - components: - - pos: -13.5,-20.5 - parent: 1 - type: Transform -- uid: 2365 - type: WallReinforced - components: - - pos: -14.5,-20.5 - parent: 1 - type: Transform -- uid: 2366 - type: WallSolid - components: - - pos: 36.5,-12.5 - parent: 1 - type: Transform -- uid: 2367 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -44.5,-10.5 - parent: 1 - type: Transform -- uid: 2368 - type: WallReinforced - components: - - pos: -21.5,-35.5 - parent: 1 - type: Transform -- uid: 2369 - type: ReinforcedWindow - components: - - pos: 38.5,-16.5 - parent: 1 - type: Transform -- uid: 2370 - type: ReinforcedWindow - components: - - pos: 36.5,-19.5 - parent: 1 - type: Transform -- uid: 2371 - type: ReinforcedWindow - components: - - pos: 36.5,-20.5 - parent: 1 - type: Transform -- uid: 2372 - type: Catwalk - components: - - pos: 7.5,-40.5 - parent: 1 - type: Transform -- uid: 2373 - type: Catwalk - components: - - pos: 7.5,-39.5 - parent: 1 - type: Transform -- uid: 2374 - type: ReinforcedWindow - components: - - pos: -6.5,-11.5 - parent: 1 - type: Transform -- uid: 2375 - type: Catwalk - components: - - pos: 6.5,-40.5 - parent: 1 - type: Transform -- uid: 2376 - type: Catwalk - components: - - pos: 6.5,-39.5 - parent: 1 - type: Transform -- uid: 2377 - type: WallReinforced - components: - - pos: -8.5,-10.5 - parent: 1 - type: Transform -- uid: 2378 - type: WallReinforced - components: - - pos: -2.5,-10.5 - parent: 1 - type: Transform -- uid: 2379 - type: WallReinforced - components: - - pos: 6.5,-10.5 - parent: 1 - type: Transform -- uid: 2380 - type: Grille - components: - - pos: 8.5,-10.5 - parent: 1 - type: Transform -- uid: 2381 - type: WallSolid - components: - - pos: -29.5,-13.5 - parent: 1 - type: Transform -- uid: 2382 - type: WallReinforced - components: - - pos: -7.5,-10.5 - parent: 1 - type: Transform -- uid: 2383 - type: WallReinforced - components: - - pos: 1.5,-10.5 - parent: 1 - type: Transform -- uid: 2384 - type: WallReinforced - components: - - pos: -6.5,-10.5 - parent: 1 - type: Transform -- uid: 2385 - type: WallReinforced - components: - - pos: 5.5,-10.5 - parent: 1 - type: Transform -- uid: 2386 - type: WallReinforced - components: - - pos: 7.5,-10.5 - parent: 1 - type: Transform -- uid: 2387 - type: Grille - components: - - pos: -9.5,-10.5 - parent: 1 - type: Transform -- uid: 2388 - type: Grille - components: - - pos: -10.5,-10.5 - parent: 1 - type: Transform -- uid: 2389 - type: WallReinforced - components: - - pos: 1.5,-14.5 - parent: 1 - type: Transform -- uid: 2390 - type: ReinforcedWindow - components: - - pos: -9.5,-10.5 - parent: 1 - type: Transform -- uid: 2391 - type: WallReinforced - components: - - pos: -2.5,-14.5 - parent: 1 - type: Transform -- uid: 2392 - type: Rack - components: - - pos: 8.5,-11.5 - parent: 1 - type: Transform -- uid: 2393 - type: WallReinforced - components: - - pos: -1.5,-14.5 - parent: 1 - type: Transform -- uid: 2394 - type: WallReinforced - components: - - pos: -0.5,-14.5 - parent: 1 - type: Transform -- uid: 2395 - type: WallReinforced - components: - - pos: 0.5,-14.5 - parent: 1 - type: Transform -- uid: 2396 - type: TableReinforced - components: - - pos: 5.5,-12.5 - parent: 1 - type: Transform -- uid: 2397 - type: Grille - components: - - pos: -6.5,-11.5 - parent: 1 - type: Transform -- uid: 2398 - type: TableReinforced - components: - - pos: -6.5,-13.5 - parent: 1 - type: Transform -- uid: 2399 - type: WallReinforced - components: - - pos: -6.5,-14.5 - parent: 1 - type: Transform -- uid: 2400 - type: WallReinforced - components: - - pos: -5.5,-14.5 - parent: 1 - type: Transform -- uid: 2401 - type: WallReinforced - components: - - pos: -4.5,-14.5 - parent: 1 - type: Transform -- uid: 2402 - type: WallReinforced - components: - - pos: -3.5,-14.5 - parent: 1 - type: Transform -- uid: 2403 - type: WallReinforced - components: - - pos: 2.5,-14.5 - parent: 1 - type: Transform -- uid: 2404 - type: WallReinforced - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform -- uid: 2405 - type: WallReinforced - components: - - pos: 4.5,-14.5 - parent: 1 - type: Transform -- uid: 2406 - type: WallReinforced - components: - - pos: 5.5,-14.5 - parent: 1 - type: Transform -- uid: 2407 - type: TableReinforced - components: - - pos: 5.5,-13.5 - parent: 1 - type: Transform -- uid: 2408 - type: Grille - components: - - pos: 5.5,-11.5 - parent: 1 - type: Transform -- uid: 2409 - type: TableReinforced - components: - - pos: -6.5,-12.5 - parent: 1 - type: Transform -- uid: 2410 - type: WallReinforced - components: - - pos: 3.5,-17.5 - parent: 1 - type: Transform -- uid: 2411 - type: WallReinforced - components: - - pos: 3.5,-18.5 - parent: 1 - type: Transform -- uid: 2412 - type: WallReinforced - components: - - pos: 3.5,-19.5 - parent: 1 - type: Transform -- uid: 2413 - type: WallReinforced - components: - - pos: 3.5,-20.5 - parent: 1 - type: Transform -- uid: 2414 - type: WallReinforced - components: - - pos: 3.5,-21.5 - parent: 1 - type: Transform -- uid: 2415 - type: WallReinforced - components: - - pos: 3.5,-22.5 - parent: 1 - type: Transform -- uid: 2416 - type: WallReinforced - components: - - pos: 3.5,-23.5 - parent: 1 - type: Transform -- uid: 2417 - type: WallReinforced - components: - - pos: 3.5,-24.5 - parent: 1 - type: Transform -- uid: 2418 - type: WallReinforced - components: - - pos: 3.5,-25.5 - parent: 1 - type: Transform -- uid: 2419 - type: WallReinforced - components: - - pos: 3.5,-26.5 - parent: 1 - type: Transform -- uid: 2420 - type: WallReinforced - components: - - pos: 3.5,-27.5 - parent: 1 - type: Transform -- uid: 2421 - type: WallReinforced - components: - - pos: 3.5,-28.5 - parent: 1 - type: Transform -- uid: 2422 - type: WallReinforced - components: - - pos: 3.5,-29.5 - parent: 1 - type: Transform -- uid: 2423 - type: WallReinforced - components: - - pos: 3.5,-30.5 - parent: 1 - type: Transform -- uid: 2424 - type: WallReinforced - components: - - pos: 10.5,-37.5 - parent: 1 - type: Transform -- uid: 2425 - type: WallReinforced - components: - - pos: 10.5,-36.5 - parent: 1 - type: Transform -- uid: 2426 - type: WallReinforced - components: - - pos: 10.5,-35.5 - parent: 1 - type: Transform -- uid: 2427 - type: WallReinforced - components: - - pos: 9.5,-35.5 - parent: 1 - type: Transform -- uid: 2428 - type: WallReinforced - components: - - pos: 8.5,-35.5 - parent: 1 - type: Transform -- uid: 2429 - type: WallReinforced - components: - - pos: 4.5,-35.5 - parent: 1 - type: Transform -- uid: 2430 - type: WallReinforced - components: - - pos: 5.5,-35.5 - parent: 1 - type: Transform -- uid: 2431 - type: WallReinforced - components: - - pos: 4.5,-31.5 - parent: 1 - type: Transform -- uid: 2432 - type: WallReinforced - components: - - pos: 5.5,-31.5 - parent: 1 - type: Transform -- uid: 2433 - type: WallReinforced - components: - - pos: 8.5,-31.5 - parent: 1 - type: Transform -- uid: 2434 - type: WallReinforced - components: - - pos: 9.5,-31.5 - parent: 1 - type: Transform -- uid: 2435 - type: WallReinforced - components: - - pos: 10.5,-31.5 - parent: 1 - type: Transform -- uid: 2436 - type: WallReinforced - components: - - pos: 10.5,-30.5 - parent: 1 - type: Transform -- uid: 2437 - type: Grille - components: - - pos: 10.5,-29.5 - parent: 1 - type: Transform -- uid: 2438 - type: WallReinforced - components: - - pos: 10.5,-28.5 - parent: 1 - type: Transform -- uid: 2439 - type: WallReinforced - components: - - pos: 10.5,-27.5 - parent: 1 - type: Transform -- uid: 2440 - type: WallReinforced - components: - - pos: 9.5,-27.5 - parent: 1 - type: Transform -- uid: 2441 - type: WallReinforced - components: - - pos: 8.5,-27.5 - parent: 1 - type: Transform -- uid: 2442 - type: Grille - components: - - pos: 6.5,-27.5 - parent: 1 - type: Transform -- uid: 2443 - type: Grille - components: - - pos: 7.5,-27.5 - parent: 1 - type: Transform -- uid: 2444 - type: WallReinforced - components: - - pos: 5.5,-27.5 - parent: 1 - type: Transform -- uid: 2445 - type: WallReinforced - components: - - pos: 4.5,-27.5 - parent: 1 - type: Transform -- uid: 2446 - type: ReinforcedWindow - components: - - pos: 6.5,-27.5 - parent: 1 - type: Transform -- uid: 2447 - type: ReinforcedWindow - components: - - pos: 7.5,-27.5 - parent: 1 - type: Transform -- uid: 2448 - type: ReinforcedWindow - components: - - pos: -10.5,-10.5 - parent: 1 - type: Transform -- uid: 2449 - type: Bed - components: - - pos: 4.5,-23.5 - parent: 1 - type: Transform -- uid: 2450 - type: WallReinforced - components: - - pos: -14.5,-10.5 - parent: 1 - type: Transform -- uid: 2451 - type: WallReinforced - components: - - pos: -15.5,-10.5 - parent: 1 - type: Transform -- uid: 2452 - type: WallReinforced - components: - - pos: -15.5,-11.5 - parent: 1 - type: Transform -- uid: 2453 - type: WallReinforced - components: - - pos: -15.5,-12.5 - parent: 1 - type: Transform -- uid: 2454 - type: WallReinforced - components: - - pos: -15.5,-13.5 - parent: 1 - type: Transform -- uid: 2455 - type: WallReinforced - components: - - pos: -15.5,-14.5 - parent: 1 - type: Transform -- uid: 2456 - type: WallReinforced - components: - - pos: -15.5,-15.5 - parent: 1 - type: Transform -- uid: 2457 - type: WallReinforced - components: - - pos: -9.5,-20.5 - parent: 1 - type: Transform -- uid: 2458 - type: WallReinforced - components: - - pos: -9.5,-19.5 - parent: 1 - type: Transform -- uid: 2459 - type: WallReinforced - components: - - pos: -9.5,-16.5 - parent: 1 - type: Transform -- uid: 2460 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-16.5 - parent: 1 - type: Transform -- uid: 2461 - type: WallSolid - components: - - pos: 20.5,4.5 - parent: 1 - type: Transform -- uid: 2462 - type: WallSolid - components: - - pos: 20.5,3.5 - parent: 1 - type: Transform -- uid: 2463 - type: WallSolid - components: - - pos: 20.5,2.5 - parent: 1 - type: Transform -- uid: 2464 - type: WallSolid - components: - - pos: 20.5,1.5 - parent: 1 - type: Transform -- uid: 2465 - type: WallSolid - components: - - pos: 19.5,1.5 - parent: 1 - type: Transform -- uid: 2466 - type: WallSolid - components: - - pos: 17.5,1.5 - parent: 1 - type: Transform -- uid: 2467 - type: WallSolid - components: - - pos: 15.5,-5.5 - parent: 1 - type: Transform -- uid: 2468 - type: WallSolid - components: - - pos: 15.5,-6.5 - parent: 1 - type: Transform -- uid: 2469 - type: WallSolid - components: - - pos: 16.5,-6.5 - parent: 1 - type: Transform -- uid: 2470 - type: WallSolid - components: - - pos: 17.5,-6.5 - parent: 1 - type: Transform -- uid: 2471 - type: WallSolid - components: - - pos: 18.5,-6.5 - parent: 1 - type: Transform -- uid: 2472 - type: TableReinforced - components: - - pos: 21.5,-6.5 - parent: 1 - type: Transform -- uid: 2473 - type: ReinforcedWindow - components: - - pos: 8.5,-10.5 - parent: 1 - type: Transform -- uid: 2474 - type: ReinforcedWindow - components: - - pos: 9.5,-10.5 - parent: 1 - type: Transform -- uid: 2475 - type: WallSolid - components: - - pos: 22.5,-6.5 - parent: 1 - type: Transform -- uid: 2476 - type: WallSolid - components: - - pos: 23.5,-6.5 - parent: 1 - type: Transform -- uid: 2477 - type: WallSolid - components: - - pos: 24.5,-6.5 - parent: 1 - type: Transform -- uid: 2478 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 24.5,-3.5 - parent: 1 - type: Transform -- uid: 2479 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 24.5,-1.5 - parent: 1 - type: Transform -- uid: 2480 - type: WallSolid - components: - - pos: 15.5,-4.5 - parent: 1 - type: Transform -- uid: 2481 - type: WallSolid - components: - - pos: 15.5,-3.5 - parent: 1 - type: Transform -- uid: 2482 - type: WallSolid - components: - - pos: 15.5,-2.5 - parent: 1 - type: Transform -- uid: 2483 - type: WallSolid - components: - - pos: 16.5,-2.5 - parent: 1 - type: Transform -- uid: 2484 - type: WallSolid - components: - - pos: 17.5,-2.5 - parent: 1 - type: Transform -- uid: 2485 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-24.5 - parent: 1 - type: Transform -- uid: 2486 - type: WallSolid - components: - - pos: 19.5,-2.5 - parent: 1 - type: Transform -- uid: 2487 - type: WallSolid - components: - - pos: 19.5,-1.5 - parent: 1 - type: Transform -- uid: 2488 - type: Dresser - components: - - pos: 27.5,8.5 - parent: 1 - type: Transform -- uid: 2489 - type: HospitalCurtainsOpen - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform -- uid: 2490 - type: BedsheetHOP - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform -- uid: 2491 - type: Barricade - components: - - pos: 21.5,9.5 - parent: 1 - type: Transform -- uid: 2492 - type: WallSolid - components: - - pos: 23.5,-0.5 - parent: 1 - type: Transform -- uid: 2493 - type: WallSolid - components: - - pos: 23.5,-2.5 - parent: 1 - type: Transform -- uid: 2494 - type: WallSolid - components: - - pos: 23.5,-1.5 - parent: 1 - type: Transform -- uid: 2495 - type: WallSolid - components: - - pos: 23.5,-3.5 - parent: 1 - type: Transform -- uid: 2496 - type: WallSolid - components: - - pos: 23.5,-4.5 - parent: 1 - type: Transform -- uid: 2497 - type: WallSolid - components: - - pos: 23.5,-5.5 - parent: 1 - type: Transform -- uid: 2498 - type: RandomArcade - components: - - pos: 27.5,-0.5 - parent: 1 - type: Transform -- uid: 2499 - type: WallReinforced - components: - - pos: 22.5,1.5 - parent: 1 - type: Transform -- uid: 2500 - type: VendingMachineCart - components: - - flags: SessionSpecific - type: MetaData - - pos: 24.5,7.5 - parent: 1 - type: Transform -- uid: 2501 - type: WallReinforced - components: - - pos: 22.5,12.5 - parent: 1 - type: Transform -- uid: 2502 - type: WallReinforced - components: - - pos: 22.5,11.5 - parent: 1 - type: Transform -- uid: 2503 - type: WallReinforced - components: - - pos: 22.5,10.5 - parent: 1 - type: Transform -- uid: 2504 - type: WallReinforced - components: - - pos: 22.5,9.5 - parent: 1 - type: Transform -- uid: 2505 - type: WallReinforced - components: - - pos: 22.5,6.5 - parent: 1 - type: Transform -- uid: 2506 - type: WallReinforced - components: - - pos: 22.5,5.5 - parent: 1 - type: Transform -- uid: 2507 - type: WallReinforced - components: - - pos: 22.5,8.5 - parent: 1 - type: Transform -- uid: 2508 - type: WallReinforced - components: - - pos: 22.5,7.5 - parent: 1 - type: Transform -- uid: 2509 - type: WallReinforced - components: - - pos: 22.5,4.5 - parent: 1 - type: Transform -- uid: 2510 - type: WallSolid - components: - - pos: 20.5,12.5 - parent: 1 - type: Transform -- uid: 2511 - type: WallSolid - components: - - pos: 21.5,12.5 - parent: 1 - type: Transform -- uid: 2512 - type: WallReinforced - components: - - pos: 22.5,3.5 - parent: 1 - type: Transform -- uid: 2513 - type: WallSolid - components: - - pos: 28.5,-6.5 - parent: 1 - type: Transform -- uid: 2514 - type: Grille - components: - - pos: 28.5,-5.5 - parent: 1 - type: Transform -- uid: 2515 - type: WallSolid - components: - - pos: 28.5,-4.5 - parent: 1 - type: Transform -- uid: 2516 - type: Grille - components: - - pos: 28.5,0.5 - parent: 1 - type: Transform -- uid: 2517 - type: WallSolid - components: - - pos: 28.5,-2.5 - parent: 1 - type: Transform -- uid: 2518 - type: Grille - components: - - pos: 28.5,-1.5 - parent: 1 - type: Transform -- uid: 2519 - type: WallSolid - components: - - pos: 28.5,-0.5 - parent: 1 - type: Transform -- uid: 2520 - type: Grille - components: - - pos: 28.5,-3.5 - parent: 1 - type: Transform -- uid: 2521 - type: WallSolid - components: - - pos: 28.5,1.5 - parent: 1 - type: Transform -- uid: 2522 - type: WallReinforced - components: - - pos: 27.5,7.5 - parent: 1 - type: Transform -- uid: 2523 - type: WallReinforced - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform -- uid: 2524 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 26.5,6.5 - parent: 1 - type: Transform -- uid: 2525 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 26.5,5.5 - parent: 1 - type: Transform -- uid: 2526 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 26.5,4.5 - parent: 1 - type: Transform -- uid: 2527 - type: WallReinforced - components: - - pos: 28.5,7.5 - parent: 1 - type: Transform -- uid: 2528 - type: WallReinforced - components: - - pos: 28.5,8.5 - parent: 1 - type: Transform -- uid: 2529 - type: WallReinforced - components: - - pos: 27.5,12.5 - parent: 1 - type: Transform -- uid: 2530 - type: WallReinforced - components: - - pos: 23.5,1.5 - parent: 1 - type: Transform -- uid: 2531 - type: WallReinforced - components: - - pos: 28.5,9.5 - parent: 1 - type: Transform -- uid: 2532 - type: WallReinforced - components: - - pos: 25.5,12.5 - parent: 1 - type: Transform -- uid: 2533 - type: WallReinforced - components: - - pos: 24.5,12.5 - parent: 1 - type: Transform -- uid: 2534 - type: WallReinforced - components: - - pos: 23.5,12.5 - parent: 1 - type: Transform -- uid: 2535 - type: WallReinforced - components: - - pos: 28.5,11.5 - parent: 1 - type: Transform -- uid: 2536 - type: WallReinforced - components: - - pos: 26.5,12.5 - parent: 1 - type: Transform -- uid: 2537 - type: WallReinforced - components: - - pos: 28.5,12.5 - parent: 1 - type: Transform -- uid: 2538 - type: ReinforcedWindow - components: - - pos: 33.5,11.5 - parent: 1 - type: Transform -- uid: 2539 - type: ReinforcedWindow - components: - - pos: 33.5,10.5 - parent: 1 - type: Transform -- uid: 2540 - type: ReinforcedWindow - components: - - pos: 33.5,9.5 - parent: 1 - type: Transform -- uid: 2541 - type: WallReinforced - components: - - pos: 33.5,-2.5 - parent: 1 - type: Transform -- uid: 2542 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-20.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2543 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-20.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2544 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-20.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2545 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-20.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2546 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-20.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2547 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2548 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2549 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2550 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2551 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2552 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2553 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2554 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2555 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2556 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2557 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-26.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2558 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-26.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2559 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-26.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2560 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2561 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-26.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2562 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2563 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2564 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2565 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2566 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2567 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2568 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2569 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2570 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2571 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2572 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-20.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2573 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2574 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2575 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-26.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2576 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2577 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2578 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2579 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2580 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2581 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2582 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2583 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2584 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2585 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2586 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2587 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2588 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2589 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2590 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2591 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2592 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-21.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2593 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2594 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2595 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2596 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2597 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2598 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2599 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2600 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2601 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2602 - type: GasFilterFlipped - components: - - rot: 3.141592653589793 rad - pos: -6.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2603 - type: GasFilterFlipped - components: - - rot: 3.141592653589793 rad - pos: -6.5,-22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2604 - type: GasFilterFlipped - components: - - rot: 3.141592653589793 rad - pos: -6.5,-24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2605 - type: GasFilterFlipped - components: - - rot: 3.141592653589793 rad - pos: -6.5,-26.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2606 - type: GasFilterFlipped - components: - - rot: 3.141592653589793 rad - pos: -6.5,-28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2607 - type: GasFilterFlipped - components: - - rot: 3.141592653589793 rad - pos: -6.5,-30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2608 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-31.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2609 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -6.5,-32.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2610 - type: GasValve - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - bodyType: Static - type: Physics -- uid: 2611 - type: GasMixer - components: - - rot: 3.141592653589793 rad - pos: -8.5,-19.5 - parent: 1 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2612 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-20.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2613 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-21.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2614 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-21.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2615 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-21.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2616 - type: GasPipeStraight - components: - - pos: -8.5,-20.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2617 - type: GasMixerFlipped - components: - - rot: 3.141592653589793 rad - pos: -8.5,-22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2618 - type: GasMixerFlipped - components: - - rot: 3.141592653589793 rad - pos: -8.5,-23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2619 - type: GasMixerFlipped - components: - - rot: 3.141592653589793 rad - pos: -8.5,-25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2620 - type: GasMixerFlipped - components: - - rot: 3.141592653589793 rad - pos: -8.5,-27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2621 - type: GasMixerFlipped - components: - - rot: 3.141592653589793 rad - pos: -8.5,-29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2622 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2623 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-31.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2624 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-32.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2625 - type: GasValve - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-32.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 2626 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2627 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-32.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2628 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2629 - type: GasValve - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2630 - type: GasPipeTJunction - components: - - pos: -6.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2631 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2632 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2633 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2634 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2635 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2636 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2637 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2638 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2639 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2640 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-21.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2641 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2642 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2643 - type: GasPipeTJunction - components: - - pos: -7.5,-19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2644 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-20.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2645 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-21.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2646 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2647 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2648 - type: GasPipeFourway - components: - - pos: -8.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2649 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2650 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2651 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2652 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2653 - type: GasPipeStraight - components: - - pos: -8.5,-34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2654 - type: GasPipeStraight - components: - - pos: -8.5,-35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2655 - type: GasPipeStraight - components: - - pos: -8.5,-36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2656 - type: GasPipeStraight - components: - - pos: -8.5,-37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2657 - type: GasPipeStraight - components: - - pos: -8.5,-38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2658 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2659 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2660 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2661 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 0.5,-39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2662 - type: GasPassiveVent - components: - - pos: 0.5,-35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2663 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2664 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2665 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2666 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2667 - type: GasOutletInjector - components: - - pos: 0.5,-29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2668 - type: GasOutletInjector - components: - - pos: 0.5,-27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2669 - type: GasOutletInjector - components: - - pos: 0.5,-25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2670 - type: GasOutletInjector - components: - - pos: 0.5,-23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2671 - type: GasOutletInjector - components: - - pos: 0.5,-21.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2672 - type: GasOutletInjector - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2673 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2674 - type: GasPipeStraight - components: - - pos: 0.5,-36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2675 - type: GasPipeStraight - components: - - pos: 0.5,-38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2676 - type: GasValve - components: - - pos: 0.5,-37.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 2677 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2678 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2679 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2680 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2681 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2682 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2683 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2684 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2685 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2686 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -8.5,-39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2687 - type: GasPipeTJunction - components: - - pos: -6.5,-35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2688 - type: GasPipeStraight - components: - - pos: -6.5,-36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2689 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2690 - type: GasPressurePump - components: - - pos: -6.5,-38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2691 - type: GasPipeFourway - components: - - pos: -6.5,-39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2692 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2693 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -7.5,-37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2694 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -7.5,-35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2695 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2696 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-31.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2697 - type: GasThermoMachineHeater - components: - - pos: -7.5,-34.5 - parent: 1 - type: Transform -- uid: 2698 - type: GasThermoMachineFreezer - components: - - pos: -7.5,-36.5 - parent: 1 - type: Transform -- uid: 2699 - type: GasPipeStraight - components: - - pos: -6.5,-40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2700 - type: GasPipeStraight - components: - - pos: -6.5,-41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2701 - type: GasPipeStraight - components: - - pos: -6.5,-42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2702 - type: GasPipeStraight - components: - - pos: -6.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2703 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -6.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2704 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2705 - type: GasPipeFourway - components: - - pos: -4.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2706 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2707 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -4.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2708 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2709 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2710 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2711 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2712 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2713 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2714 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2715 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-26.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2716 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2717 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2718 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2719 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2720 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2721 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2722 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2723 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2724 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2725 - type: GasPipeStraight - components: - - pos: -6.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2726 - type: GasPipeStraight - components: - - pos: -6.5,-21.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2727 - type: GasPipeStraight - components: - - pos: -6.5,-23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2728 - type: GasPipeStraight - components: - - pos: -6.5,-25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2729 - type: GasPipeStraight - components: - - pos: -6.5,-27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2730 - type: GasPipeStraight - components: - - pos: -6.5,-29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2731 - type: GasVolumePump - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2732 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2733 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2734 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2735 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2736 - type: GasPipeFourway - components: - - pos: -12.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2737 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2738 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2739 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2740 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -12.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2741 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2742 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2743 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2744 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2745 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -11.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2746 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2747 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2748 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2749 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2750 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2751 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2752 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2753 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2754 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -9.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2755 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -11.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2756 - type: GasPipeBend - components: - - pos: -11.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2757 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2758 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2759 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2760 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -10.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2761 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2762 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2763 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2764 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2765 - type: GasPipeTJunction - components: - - pos: -8.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2766 - type: GasPipeStraight - components: - - pos: -8.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2767 - type: GasPipeFourway - components: - - pos: -10.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2768 - type: GasThermoMachineHeater - components: - - pos: -10.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 2769 - type: GasThermoMachineFreezer - components: - - pos: -9.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 2770 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2771 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2772 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -5.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2773 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2774 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -4.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2775 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2776 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2777 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2778 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2779 - type: GasPipeTJunction - components: - - pos: -5.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2780 - type: GasPipeStraight - components: - - pos: -4.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2781 - type: GasPipeTJunction - components: - - pos: -4.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2782 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2783 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2784 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2785 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2786 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2787 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2788 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2789 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2790 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2791 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2792 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2793 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2794 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2795 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2796 - type: GasPipeTJunction - components: - - pos: -12.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2797 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2798 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-19.5 - parent: 1 - type: Transform -- uid: 2799 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 1 - type: Transform -- uid: 2800 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-23.5 - parent: 1 - type: Transform -- uid: 2801 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 1 - type: Transform -- uid: 2802 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-27.5 - parent: 1 - type: Transform -- uid: 2803 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-29.5 - parent: 1 - type: Transform -- uid: 2804 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-37.5 - parent: 1 - type: Transform -- uid: 2805 - type: WallReinforced - components: - - pos: -11.5,-25.5 - parent: 1 - type: Transform -- uid: 2806 - type: WallReinforced - components: - - pos: -11.5,-30.5 - parent: 1 - type: Transform -- uid: 2807 - type: Grille - components: - - pos: -13.5,-25.5 - parent: 1 - type: Transform -- uid: 2808 - type: Grille - components: - - pos: -12.5,-25.5 - parent: 1 - type: Transform -- uid: 2809 - type: WallReinforced - components: - - pos: -16.5,-25.5 - parent: 1 - type: Transform -- uid: 2810 - type: WallReinforced - components: - - pos: -15.5,-25.5 - parent: 1 - type: Transform -- uid: 2811 - type: Catwalk - components: - - pos: -10.5,-25.5 - parent: 1 - type: Transform -- uid: 2812 - type: Catwalk - components: - - pos: -10.5,-26.5 - parent: 1 - type: Transform -- uid: 2813 - type: BlastDoorOpen - components: - - pos: -11.5,-26.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -46508.617 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8738 - type: SignalReceiver -- uid: 2814 - type: BlastDoorOpen - components: - - pos: -11.5,-27.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -46508.617 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8738 - type: SignalReceiver -- uid: 2815 - type: Grille - components: - - pos: -13.5,-30.5 - parent: 1 - type: Transform -- uid: 2816 - type: Grille - components: - - pos: -12.5,-30.5 - parent: 1 - type: Transform -- uid: 2817 - type: Catwalk - components: - - pos: -10.5,-21.5 - parent: 1 - type: Transform -- uid: 2818 - type: Catwalk - components: - - pos: -10.5,-22.5 - parent: 1 - type: Transform -- uid: 2819 - type: Catwalk - components: - - pos: -10.5,-27.5 - parent: 1 - type: Transform -- uid: 2820 - type: Catwalk - components: - - pos: -10.5,-28.5 - parent: 1 - type: Transform -- uid: 2821 - type: BlastDoorOpen - components: - - pos: -11.5,-28.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -46508.617 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8738 - type: SignalReceiver -- uid: 2822 - type: BlastDoorOpen - components: - - pos: -11.5,-29.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -46508.617 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8738 - type: SignalReceiver -- uid: 2823 - type: WallReinforced - components: - - pos: -16.5,-27.5 - parent: 1 - type: Transform -- uid: 2824 - type: WallReinforced - components: - - pos: -16.5,-26.5 - parent: 1 - type: Transform -- uid: 2825 - type: Catwalk - components: - - pos: -10.5,-23.5 - parent: 1 - type: Transform -- uid: 2826 - type: Catwalk - components: - - pos: -10.5,-24.5 - parent: 1 - type: Transform -- uid: 2827 - type: Catwalk - components: - - pos: -10.5,-29.5 - parent: 1 - type: Transform -- uid: 2828 - type: Catwalk - components: - - pos: -9.5,-21.5 - parent: 1 - type: Transform -- uid: 2829 - type: WallSolid - components: - - pos: 16.5,57.5 - parent: 1 - type: Transform -- uid: 2830 - type: WallSolid - components: - - pos: 17.5,57.5 - parent: 1 - type: Transform -- uid: 2831 - type: TableGlass - components: - - pos: -13.5,-33.5 - parent: 1 - type: Transform -- uid: 2832 - type: TableGlass - components: - - pos: -13.5,-34.5 - parent: 1 - type: Transform -- uid: 2833 - type: TableGlass - components: - - pos: -13.5,-24.5 - parent: 1 - type: Transform -- uid: 2834 - type: TableGlass - components: - - pos: -13.5,-23.5 - parent: 1 - type: Transform -- uid: 2835 - type: WallSolid - components: - - pos: 18.5,57.5 - parent: 1 - type: Transform -- uid: 2836 - type: Catwalk - components: - - pos: 7.5,-37.5 - parent: 1 - type: Transform -- uid: 2837 - type: WallReinforced - components: - - pos: 10.5,-19.5 - parent: 1 - type: Transform -- uid: 2838 - type: WallReinforced - components: - - pos: 13.5,-10.5 - parent: 1 - type: Transform -- uid: 2839 - type: WallReinforced - components: - - pos: 14.5,-10.5 - parent: 1 - type: Transform -- uid: 2840 - type: WallReinforced - components: - - pos: 14.5,-11.5 - parent: 1 - type: Transform -- uid: 2841 - type: WallReinforced - components: - - pos: 14.5,-12.5 - parent: 1 - type: Transform -- uid: 2842 - type: WallReinforced - components: - - pos: 14.5,-13.5 - parent: 1 - type: Transform -- uid: 2843 - type: WallReinforced - components: - - pos: 14.5,-14.5 - parent: 1 - type: Transform -- uid: 2844 - type: WallReinforced - components: - - pos: 14.5,-15.5 - parent: 1 - type: Transform -- uid: 2845 - type: WallReinforced - components: - - pos: 8.5,-26.5 - parent: 1 - type: Transform -- uid: 2846 - type: WallReinforced - components: - - pos: 8.5,-25.5 - parent: 1 - type: Transform -- uid: 2847 - type: WallReinforced - components: - - pos: 8.5,-23.5 - parent: 1 - type: Transform -- uid: 2848 - type: WallReinforced - components: - - pos: 8.5,-22.5 - parent: 1 - type: Transform -- uid: 2849 - type: WallReinforced - components: - - pos: 7.5,-22.5 - parent: 1 - type: Transform -- uid: 2850 - type: WallReinforced - components: - - pos: 6.5,-22.5 - parent: 1 - type: Transform -- uid: 2851 - type: WallReinforced - components: - - pos: 5.5,-22.5 - parent: 1 - type: Transform -- uid: 2852 - type: WallReinforced - components: - - pos: 4.5,-22.5 - parent: 1 - type: Transform -- uid: 2853 - type: WallReinforced - components: - - pos: 8.5,-19.5 - parent: 1 - type: Transform -- uid: 2854 - type: WallReinforced - components: - - pos: 13.5,-19.5 - parent: 1 - type: Transform -- uid: 2855 - type: WallReinforced - components: - - pos: 9.5,-17.5 - parent: 1 - type: Transform -- uid: 2856 - type: WallReinforced - components: - - pos: 9.5,-18.5 - parent: 1 - type: Transform -- uid: 2857 - type: WallReinforced - components: - - pos: 9.5,-19.5 - parent: 1 - type: Transform -- uid: 2858 - type: Window - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform -- uid: 2859 - type: WallReinforced - components: - - pos: 17.5,-41.5 - parent: 1 - type: Transform -- uid: 2860 - type: WallReinforced - components: - - pos: 17.5,-38.5 - parent: 1 - type: Transform -- uid: 2861 - type: WallReinforced - components: - - pos: 20.5,-38.5 - parent: 1 - type: Transform -- uid: 2862 - type: WallReinforced - components: - - pos: 20.5,-35.5 - parent: 1 - type: Transform -- uid: 2863 - type: WallReinforced - components: - - pos: 20.5,-32.5 - parent: 1 - type: Transform -- uid: 2864 - type: WallReinforced - components: - - pos: 20.5,-31.5 - parent: 1 - type: Transform -- uid: 2865 - type: WallReinforced - components: - - pos: 22.5,-31.5 - parent: 1 - type: Transform -- uid: 2866 - type: WallReinforced - components: - - pos: 22.5,-28.5 - parent: 1 - type: Transform -- uid: 2867 - type: WallReinforced - components: - - pos: 23.5,-28.5 - parent: 1 - type: Transform -- uid: 2868 - type: WallReinforced - components: - - pos: -23.5,-28.5 - parent: 1 - type: Transform -- uid: 2869 - type: WallReinforced - components: - - pos: -24.5,-28.5 - parent: 1 - type: Transform -- uid: 2870 - type: WallReinforced - components: - - pos: -23.5,-31.5 - parent: 1 - type: Transform -- uid: 2871 - type: WallSolid - components: - - pos: 33.5,-16.5 - parent: 1 - type: Transform -- uid: 2872 - type: Grille - components: - - pos: 36.5,-19.5 - parent: 1 - type: Transform -- uid: 2873 - type: ReinforcedWindow - components: - - pos: 1.5,30.5 - parent: 1 - type: Transform -- uid: 2874 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 1.5,32.5 - parent: 1 - type: Transform -- uid: 2875 - type: ReinforcedWindow - components: - - pos: 1.5,28.5 - parent: 1 - type: Transform -- uid: 2876 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2877 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2878 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2879 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-15.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2880 - type: WallReinforced - components: - - pos: 26.5,2.5 - parent: 1 - type: Transform -- uid: 2881 - type: WallReinforced - components: - - pos: 26.5,1.5 - parent: 1 - type: Transform -- uid: 2882 - type: WallReinforced - components: - - pos: 25.5,1.5 - parent: 1 - type: Transform -- uid: 2883 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 28.5,2.5 - parent: 1 - type: Transform -- uid: 2884 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 28.5,5.5 - parent: 1 - type: Transform -- uid: 2885 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 28.5,4.5 - parent: 1 - type: Transform -- uid: 2886 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: 28.5,5.5 - parent: 1 - type: Transform -- uid: 2887 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: 28.5,4.5 - parent: 1 - type: Transform -- uid: 2888 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 26.5,4.5 - parent: 1 - type: Transform -- uid: 2889 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 26.5,5.5 - parent: 1 - type: Transform -- uid: 2890 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 26.5,6.5 - parent: 1 - type: Transform -- uid: 2891 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 - type: Transform -- uid: 2892 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 1 - type: Transform -- uid: 2893 - type: WallSolid - components: - - pos: 25.5,7.5 - parent: 1 - type: Transform -- uid: 2894 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 25.5,8.5 - parent: 1 - type: Transform -- uid: 2895 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 24.5,8.5 - parent: 1 - type: Transform -- uid: 2896 - type: WallReinforced - components: - - pos: 24.5,1.5 - parent: 1 - type: Transform -- uid: 2897 - type: WallSolid - components: - - pos: 27.5,1.5 - parent: 1 - type: Transform -- uid: 2898 - type: TableReinforced - components: - - pos: 25.5,4.5 - parent: 1 - type: Transform -- uid: 2899 - type: TableReinforced - components: - - pos: 24.5,4.5 - parent: 1 - type: Transform -- uid: 2900 - type: ComputerId - components: - - rot: 3.141592653589793 rad - pos: 25.5,2.5 - parent: 1 - type: Transform -- uid: 2901 - type: UniformPrinter - components: - - rot: 3.141592653589793 rad - pos: 25.5,6.5 - parent: 1 - type: Transform -- uid: 2902 - type: ComputerStationRecords - components: - - rot: -1.5707963267948966 rad - pos: 25.5,5.5 - parent: 1 - type: Transform -- uid: 2903 - type: Grille - components: - - pos: -17.5,-41.5 - parent: 1 - type: Transform -- uid: 2904 - type: Grille - components: - - pos: -18.5,-40.5 - parent: 1 - type: Transform -- uid: 2905 - type: Grille - components: - - pos: -18.5,-39.5 - parent: 1 - type: Transform -- uid: 2906 - type: Grille - components: - - pos: -19.5,-38.5 - parent: 1 - type: Transform -- uid: 2907 - type: Grille - components: - - pos: -20.5,-38.5 - parent: 1 - type: Transform -- uid: 2908 - type: Grille - components: - - pos: -21.5,-37.5 - parent: 1 - type: Transform -- uid: 2909 - type: Grille - components: - - pos: -21.5,-36.5 - parent: 1 - type: Transform -- uid: 2910 - type: Grille - components: - - pos: -21.5,-34.5 - parent: 1 - type: Transform -- uid: 2911 - type: Grille - components: - - pos: -21.5,-33.5 - parent: 1 - type: Transform -- uid: 2912 - type: Grille - components: - - pos: -22.5,-31.5 - parent: 1 - type: Transform -- uid: 2913 - type: Grille - components: - - pos: -23.5,-30.5 - parent: 1 - type: Transform -- uid: 2914 - type: Grille - components: - - pos: -23.5,-29.5 - parent: 1 - type: Transform -- uid: 2915 - type: WallSolid - components: - - pos: 32.5,-19.5 - parent: 1 - type: Transform -- uid: 2916 - type: WallReinforced - components: - - pos: -24.5,-27.5 - parent: 1 - type: Transform -- uid: 2917 - type: WallSolid - components: - - pos: 32.5,-18.5 - parent: 1 - type: Transform -- uid: 2918 - type: WallReinforced - components: - - pos: 39.5,-14.5 - parent: 1 - type: Transform -- uid: 2919 - type: ReinforcedWindow - components: - - pos: 38.5,-17.5 - parent: 1 - type: Transform -- uid: 2920 - type: ReinforcedWindow - components: - - pos: 35.5,-22.5 - parent: 1 - type: Transform -- uid: 2921 - type: ReinforcedWindow - components: - - pos: 33.5,-23.5 - parent: 1 - type: Transform -- uid: 2922 - type: ReinforcedWindow - components: - - pos: 33.5,-24.5 - parent: 1 - type: Transform -- uid: 2923 - type: ReinforcedWindow - components: - - pos: 32.5,-25.5 - parent: 1 - type: Transform -- uid: 2924 - type: WallSolid - components: - - pos: 29.5,-23.5 - parent: 1 - type: Transform -- uid: 2925 - type: Grille - components: - - pos: 38.5,-17.5 - parent: 1 - type: Transform -- uid: 2926 - type: Grille - components: - - pos: 36.5,-20.5 - parent: 1 - type: Transform -- uid: 2927 - type: Grille - components: - - pos: 35.5,-22.5 - parent: 1 - type: Transform -- uid: 2928 - type: WallReinforced - components: - - pos: 37.5,-18.5 - parent: 1 - type: Transform -- uid: 2929 - type: Grille - components: - - pos: 27.5,-27.5 - parent: 1 - type: Transform -- uid: 2930 - type: Grille - components: - - pos: 25.5,-27.5 - parent: 1 - type: Transform -- uid: 2931 - type: WallSolid - components: - - pos: 28.5,-21.5 - parent: 1 - type: Transform -- uid: 2932 - type: WallSolid - components: - - pos: 25.5,-21.5 - parent: 1 - type: Transform -- uid: 2933 - type: WallReinforced - components: - - pos: -24.5,-14.5 - parent: 1 - type: Transform -- uid: 2934 - type: WallReinforced - components: - - pos: -24.5,-18.5 - parent: 1 - type: Transform -- uid: 2935 - type: TableCarpet - components: - - pos: -38.5,-11.5 - parent: 1 - type: Transform -- uid: 2936 - type: WallReinforced - components: - - pos: 33.5,-22.5 - parent: 1 - type: Transform -- uid: 2937 - type: WallReinforced - components: - - pos: 29.5,-27.5 - parent: 1 - type: Transform -- uid: 2938 - type: WallReinforced - components: - - pos: -34.5,-25.5 - parent: 1 - type: Transform -- uid: 2939 - type: WallReinforced - components: - - pos: -30.5,-25.5 - parent: 1 - type: Transform -- uid: 2940 - type: WallReinforced - components: - - pos: -37.5,-22.5 - parent: 1 - type: Transform -- uid: 2941 - type: WallReinforced - components: - - pos: 36.5,-18.5 - parent: 1 - type: Transform -- uid: 2942 - type: WallReinforced - components: - - pos: 36.5,-22.5 - parent: 1 - type: Transform -- uid: 2943 - type: SurveillanceCameraRouterEngineering - components: - - pos: 20.5,-15.5 - parent: 1 - type: Transform -- uid: 2944 - type: WallReinforced - components: - - pos: -19.5,-19.5 - parent: 1 - type: Transform -- uid: 2945 - type: WallReinforced - components: - - pos: -19.5,-16.5 - parent: 1 - type: Transform -- uid: 2946 - type: WallReinforced - components: - - pos: -19.5,-17.5 - parent: 1 - type: Transform -- uid: 2947 - type: ReinforcedWindow - components: - - pos: -40.5,-13.5 - parent: 1 - type: Transform -- uid: 2948 - type: WallReinforced - components: - - pos: -41.5,-12.5 - parent: 1 - type: Transform -- uid: 2949 - type: WallReinforced - components: - - pos: -41.5,-10.5 - parent: 1 - type: Transform -- uid: 2950 - type: WallReinforced - components: - - pos: 40.5,-12.5 - parent: 1 - type: Transform -- uid: 2951 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2952 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2953 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2954 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2955 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2956 - type: GasPipeBend - components: - - pos: 3.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2957 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2958 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2959 - type: GasValve - components: - - rot: 3.141592653589793 rad - pos: 4.5,-44.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 2960 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2961 - type: GasPassiveVent - components: - - pos: 4.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2962 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-39.5 - parent: 1 - type: Transform -- uid: 2963 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-40.5 - parent: 1 - type: Transform -- uid: 2964 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-41.5 - parent: 1 - type: Transform -- uid: 2965 - type: ReinforcedPlasmaWindow - components: - - pos: -1.5,-38.5 - parent: 1 - type: Transform -- uid: 2966 - type: ReinforcedPlasmaWindow - components: - - pos: -0.5,-38.5 - parent: 1 - type: Transform -- uid: 2967 - type: ReinforcedPlasmaWindow - components: - - pos: 0.5,-38.5 - parent: 1 - type: Transform -- uid: 2968 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,-39.5 - parent: 1 - type: Transform -- uid: 2969 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,-40.5 - parent: 1 - type: Transform -- uid: 2970 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,-41.5 - parent: 1 - type: Transform -- uid: 2971 - type: ReinforcedPlasmaWindow - components: - - pos: -3.5,-43.5 - parent: 1 - type: Transform -- uid: 2972 - type: ReinforcedPlasmaWindow - components: - - pos: -3.5,-44.5 - parent: 1 - type: Transform -- uid: 2973 - type: ReinforcedPlasmaWindow - components: - - pos: -3.5,-45.5 - parent: 1 - type: Transform -- uid: 2974 - type: ReinforcedPlasmaWindow - components: - - pos: 2.5,-43.5 - parent: 1 - type: Transform -- uid: 2975 - type: ReinforcedPlasmaWindow - components: - - pos: 2.5,-44.5 - parent: 1 - type: Transform -- uid: 2976 - type: ReinforcedPlasmaWindow - components: - - pos: 2.5,-45.5 - parent: 1 - type: Transform -- uid: 2977 - type: ReinforcedPlasmaWindow - components: - - pos: -1.5,-36.5 - parent: 1 - type: Transform -- uid: 2978 - type: ReinforcedPlasmaWindow - components: - - pos: -0.5,-36.5 - parent: 1 - type: Transform -- uid: 2979 - type: ReinforcedPlasmaWindow - components: - - pos: 0.5,-36.5 - parent: 1 - type: Transform -- uid: 2980 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,-35.5 - parent: 1 - type: Transform -- uid: 2981 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,-34.5 - parent: 1 - type: Transform -- uid: 2982 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,-33.5 - parent: 1 - type: Transform -- uid: 2983 - type: ReinforcedPlasmaWindow - components: - - pos: 0.5,-32.5 - parent: 1 - type: Transform -- uid: 2984 - type: ReinforcedPlasmaWindow - components: - - pos: -0.5,-32.5 - parent: 1 - type: Transform -- uid: 2985 - type: ReinforcedPlasmaWindow - components: - - pos: -1.5,-32.5 - parent: 1 - type: Transform -- uid: 2986 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-33.5 - parent: 1 - type: Transform -- uid: 2987 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-34.5 - parent: 1 - type: Transform -- uid: 2988 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-35.5 - parent: 1 - type: Transform -- uid: 2989 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-29.5 - parent: 1 - type: Transform -- uid: 2990 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-27.5 - parent: 1 - type: Transform -- uid: 2991 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-25.5 - parent: 1 - type: Transform -- uid: 2992 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-23.5 - parent: 1 - type: Transform -- uid: 2993 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-21.5 - parent: 1 - type: Transform -- uid: 2994 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-19.5 - parent: 1 - type: Transform -- uid: 2995 - type: Catwalk - components: - - pos: -3.5,-41.5 - parent: 1 - type: Transform -- uid: 2996 - type: Catwalk - components: - - pos: -3.5,-40.5 - parent: 1 - type: Transform -- uid: 2997 - type: Catwalk - components: - - pos: -3.5,-39.5 - parent: 1 - type: Transform -- uid: 2998 - type: Catwalk - components: - - pos: -3.5,-38.5 - parent: 1 - type: Transform -- uid: 2999 - type: Catwalk - components: - - pos: -3.5,-37.5 - parent: 1 - type: Transform -- uid: 3000 - type: Catwalk - components: - - pos: -3.5,-36.5 - parent: 1 - type: Transform -- uid: 3001 - type: Catwalk - components: - - pos: -3.5,-35.5 - parent: 1 - type: Transform -- uid: 3002 - type: Catwalk - components: - - pos: -3.5,-34.5 - parent: 1 - type: Transform -- uid: 3003 - type: Catwalk - components: - - pos: -3.5,-33.5 - parent: 1 - type: Transform -- uid: 3004 - type: Catwalk - components: - - pos: -3.5,-32.5 - parent: 1 - type: Transform -- uid: 3005 - type: Catwalk - components: - - pos: -3.5,-31.5 - parent: 1 - type: Transform -- uid: 3006 - type: Catwalk - components: - - pos: -3.5,-30.5 - parent: 1 - type: Transform -- uid: 3007 - type: Catwalk - components: - - pos: -3.5,-29.5 - parent: 1 - type: Transform -- uid: 3008 - type: Catwalk - components: - - pos: -3.5,-28.5 - parent: 1 - type: Transform -- uid: 3009 - type: Catwalk - components: - - pos: -3.5,-27.5 - parent: 1 - type: Transform -- uid: 3010 - type: Catwalk - components: - - pos: -3.5,-26.5 - parent: 1 - type: Transform -- uid: 3011 - type: Catwalk - components: - - pos: -3.5,-25.5 - parent: 1 - type: Transform -- uid: 3012 - type: Catwalk - components: - - pos: -3.5,-24.5 - parent: 1 - type: Transform -- uid: 3013 - type: Catwalk - components: - - pos: -3.5,-23.5 - parent: 1 - type: Transform -- uid: 3014 - type: Catwalk - components: - - pos: -3.5,-22.5 - parent: 1 - type: Transform -- uid: 3015 - type: Catwalk - components: - - pos: -3.5,-21.5 - parent: 1 - type: Transform -- uid: 3016 - type: Catwalk - components: - - pos: -3.5,-20.5 - parent: 1 - type: Transform -- uid: 3017 - type: Catwalk - components: - - pos: -3.5,-19.5 - parent: 1 - type: Transform -- uid: 3018 - type: Catwalk - components: - - pos: -3.5,-18.5 - parent: 1 - type: Transform -- uid: 3019 - type: Catwalk - components: - - pos: -3.5,-17.5 - parent: 1 - type: Transform -- uid: 3020 - type: GasMinerCarbonDioxide - components: - - pos: -0.5,-23.5 - parent: 1 - type: Transform -- uid: 3021 - type: GasMinerNitrogen - components: - - pos: -0.5,-21.5 - parent: 1 - type: Transform -- uid: 3022 - type: GasMinerOxygen - components: - - pos: -0.5,-19.5 - parent: 1 - type: Transform -- uid: 3023 - type: GasMinerPlasma - components: - - pos: -0.5,-27.5 - parent: 1 - type: Transform -- uid: 3024 - type: StorageCanister - components: - - pos: 0.5,-29.5 - parent: 1 - type: Transform -- uid: 3025 - type: PlasmaCanister - components: - - pos: 0.5,-27.5 - parent: 1 - type: Transform -- uid: 3026 - type: OxygenCanister - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform -- uid: 3027 - type: NitrogenCanister - components: - - pos: 0.5,-21.5 - parent: 1 - type: Transform -- uid: 3028 - type: CarbonDioxideCanister - components: - - pos: 0.5,-23.5 - parent: 1 - type: Transform -- uid: 3029 - type: NitrousOxideCanister - components: - - pos: 0.5,-25.5 - parent: 1 - type: Transform -- uid: 3030 - type: Catwalk - components: - - pos: -9.5,-22.5 - parent: 1 - type: Transform -- uid: 3031 - type: Catwalk - components: - - pos: -9.5,-23.5 - parent: 1 - type: Transform -- uid: 3032 - type: Catwalk - components: - - pos: -9.5,-24.5 - parent: 1 - type: Transform -- uid: 3033 - type: Catwalk - components: - - pos: -9.5,-25.5 - parent: 1 - type: Transform -- uid: 3034 - type: Catwalk - components: - - pos: -9.5,-26.5 - parent: 1 - type: Transform -- uid: 3035 - type: Catwalk - components: - - pos: -9.5,-27.5 - parent: 1 - type: Transform -- uid: 3036 - type: Catwalk - components: - - pos: -9.5,-28.5 - parent: 1 - type: Transform -- uid: 3037 - type: Catwalk - components: - - pos: -9.5,-29.5 - parent: 1 - type: Transform -- uid: 3038 - type: OxygenCanister - components: - - pos: -15.5,-26.5 - parent: 1 - type: Transform -- uid: 3039 - type: OxygenCanister - components: - - pos: -15.5,-27.5 - parent: 1 - type: Transform -- uid: 3040 - type: NitrogenCanister - components: - - pos: -15.5,-28.5 - parent: 1 - type: Transform -- uid: 3041 - type: NitrogenCanister - components: - - pos: -15.5,-29.5 - parent: 1 - type: Transform -- uid: 3042 - type: PlasmaCanister - components: - - pos: -14.5,-26.5 - parent: 1 - type: Transform -- uid: 3043 - type: NitrousOxideCanister - components: - - pos: -14.5,-27.5 - parent: 1 - type: Transform -- uid: 3044 - type: CarbonDioxideCanister - components: - - pos: -14.5,-28.5 - parent: 1 - type: Transform -- uid: 3045 - type: StorageCanister - components: - - pos: -9.5,-30.5 - parent: 1 - type: Transform -- uid: 3046 - type: StorageCanister - components: - - pos: -9.5,-31.5 - parent: 1 - type: Transform -- uid: 3047 - type: StorageCanister - components: - - pos: -13.5,-26.5 - parent: 1 - type: Transform -- uid: 3048 - type: StorageCanister - components: - - pos: -13.5,-27.5 - parent: 1 - type: Transform -- uid: 3049 - type: WaterVaporCanister - components: - - pos: -14.5,-29.5 - parent: 1 - type: Transform -- uid: 3050 - type: BlastDoorOpen - components: - - pos: -0.5,-42.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8749 - type: SignalReceiver -- uid: 3051 - type: BlastDoorOpen - components: - - pos: -1.5,-48.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8750 - type: SignalReceiver -- uid: 3052 - type: BlastDoorOpen - components: - - pos: -0.5,-48.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8750 - type: SignalReceiver -- uid: 3053 - type: BlastDoorOpen - components: - - pos: 0.5,-48.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8750 - type: SignalReceiver -- uid: 3054 - type: AirlockGlass - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform -- uid: 3055 - type: AirlockGlass - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform -- uid: 3056 - type: AirlockGlass - components: - - pos: -2.5,-6.5 - parent: 1 - type: Transform -- uid: 3057 - type: AirlockGlass - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform -- uid: 3058 - type: AirlockGlass - components: - - pos: 2.5,12.5 - parent: 1 - type: Transform -- uid: 3059 - type: AirlockGlass - components: - - pos: 1.5,12.5 - parent: 1 - type: Transform -- uid: 3060 - type: AirlockGlass - components: - - pos: -2.5,12.5 - parent: 1 - type: Transform -- uid: 3061 - type: AirlockGlass - components: - - pos: -3.5,12.5 - parent: 1 - type: Transform -- uid: 3062 - type: Grille - components: - - pos: 16.5,-41.5 - parent: 1 - type: Transform -- uid: 3063 - type: Grille - components: - - pos: 17.5,-40.5 - parent: 1 - type: Transform -- uid: 3064 - type: Grille - components: - - pos: 17.5,-39.5 - parent: 1 - type: Transform -- uid: 3065 - type: Grille - components: - - pos: 18.5,-38.5 - parent: 1 - type: Transform -- uid: 3066 - type: BlastDoorOpen - components: - - pos: 19.5,-38.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -45501.867 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17649 - type: SignalReceiver -- uid: 3067 - type: Grille - components: - - pos: 20.5,-37.5 - parent: 1 - type: Transform -- uid: 3068 - type: Grille - components: - - pos: 20.5,-36.5 - parent: 1 - type: Transform -- uid: 3069 - type: Grille - components: - - pos: 20.5,-34.5 - parent: 1 - type: Transform -- uid: 3070 - type: Grille - components: - - pos: 20.5,-33.5 - parent: 1 - type: Transform -- uid: 3071 - type: Grille - components: - - pos: 21.5,-31.5 - parent: 1 - type: Transform -- uid: 3072 - type: Grille - components: - - pos: 22.5,-30.5 - parent: 1 - type: Transform -- uid: 3073 - type: Grille - components: - - pos: 22.5,-29.5 - parent: 1 - type: Transform -- uid: 3074 - type: WallSolid - components: - - pos: 35.5,-17.5 - parent: 1 - type: Transform -- uid: 3075 - type: WallSolid - components: - - pos: 35.5,-18.5 - parent: 1 - type: Transform -- uid: 3076 - type: WallSolid - components: - - pos: 34.5,-16.5 - parent: 1 - type: Transform -- uid: 3077 - type: Grille - components: - - pos: 38.5,-16.5 - parent: 1 - type: Transform -- uid: 3078 - type: WallReinforced - components: - - pos: 39.5,-12.5 - parent: 1 - type: Transform -- uid: 3079 - type: Grille - components: - - pos: 31.5,-25.5 - parent: 1 - type: Transform -- uid: 3080 - type: Grille - components: - - pos: 33.5,-24.5 - parent: 1 - type: Transform -- uid: 3081 - type: Grille - components: - - pos: 32.5,-25.5 - parent: 1 - type: Transform -- uid: 3082 - type: Grille - components: - - pos: 28.5,-27.5 - parent: 1 - type: Transform -- uid: 3083 - type: WallReinforced - components: - - pos: 23.5,-27.5 - parent: 1 - type: Transform -- uid: 3084 - type: WallReinforced - components: - - pos: 29.5,-26.5 - parent: 1 - type: Transform -- uid: 3085 - type: WallReinforced - components: - - pos: 29.5,-25.5 - parent: 1 - type: Transform -- uid: 3086 - type: WallReinforced - components: - - pos: -30.5,-27.5 - parent: 1 - type: Transform -- uid: 3087 - type: WallReinforced - components: - - pos: -34.5,-22.5 - parent: 1 - type: Transform -- uid: 3088 - type: WallReinforced - components: - - pos: 38.5,-14.5 - parent: 1 - type: Transform -- uid: 3089 - type: Grille - components: - - pos: 40.5,-11.5 - parent: 1 - type: Transform -- uid: 3090 - type: ReinforcedWindow - components: - - pos: 40.5,-11.5 - parent: 1 - type: Transform -- uid: 3091 - type: Grille - components: - - pos: 39.5,-13.5 - parent: 1 - type: Transform -- uid: 3092 - type: WallReinforced - components: - - pos: -30.5,-26.5 - parent: 1 - type: Transform -- uid: 3093 - type: WallReinforced - components: - - pos: -27.5,-27.5 - parent: 1 - type: Transform -- uid: 3094 - type: WallReinforced - components: - - pos: 33.5,-25.5 - parent: 1 - type: Transform -- uid: 3095 - type: WallReinforced - components: - - pos: 26.5,-27.5 - parent: 1 - type: Transform -- uid: 3096 - type: Grille - components: - - pos: 24.5,-27.5 - parent: 1 - type: Transform -- uid: 3097 - type: Grille - components: - - pos: 30.5,-25.5 - parent: 1 - type: Transform -- uid: 3098 - type: Grille - components: - - pos: 33.5,-23.5 - parent: 1 - type: Transform -- uid: 3099 - type: Grille - components: - - pos: 34.5,-22.5 - parent: 1 - type: Transform -- uid: 3100 - type: Grille - components: - - pos: 36.5,-21.5 - parent: 1 - type: Transform -- uid: 3101 - type: ReinforcedWindow - components: - - pos: 39.5,-13.5 - parent: 1 - type: Transform -- uid: 3102 - type: WallSolid - components: - - pos: 35.5,-12.5 - parent: 1 - type: Transform -- uid: 3103 - type: WallSolid - components: - - pos: 35.5,-16.5 - parent: 1 - type: Transform -- uid: 3104 - type: WallSolid - components: - - pos: 32.5,-16.5 - parent: 1 - type: Transform -- uid: 3105 - type: WallSolid - components: - - pos: 32.5,-17.5 - parent: 1 - type: Transform -- uid: 3106 - type: ReinforcedWindow - components: - - pos: 22.5,-29.5 - parent: 1 - type: Transform -- uid: 3107 - type: ReinforcedWindow - components: - - pos: 22.5,-30.5 - parent: 1 - type: Transform -- uid: 3108 - type: ReinforcedWindow - components: - - pos: 21.5,-31.5 - parent: 1 - type: Transform -- uid: 3109 - type: ReinforcedWindow - components: - - pos: 20.5,-33.5 - parent: 1 - type: Transform -- uid: 3110 - type: ReinforcedWindow - components: - - pos: 20.5,-34.5 - parent: 1 - type: Transform -- uid: 3111 - type: ReinforcedWindow - components: - - pos: 20.5,-36.5 - parent: 1 - type: Transform -- uid: 3112 - type: ReinforcedWindow - components: - - pos: 20.5,-37.5 - parent: 1 - type: Transform -- uid: 3113 - type: PlasticFlapsAirtightClear - components: - - pos: 19.5,-38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3114 - type: ReinforcedWindow - components: - - pos: 18.5,-38.5 - parent: 1 - type: Transform -- uid: 3115 - type: ReinforcedWindow - components: - - pos: 17.5,-39.5 - parent: 1 - type: Transform -- uid: 3116 - type: ReinforcedWindow - components: - - pos: 17.5,-40.5 - parent: 1 - type: Transform -- uid: 3117 - type: ReinforcedWindow - components: - - pos: -13.5,-25.5 - parent: 1 - type: Transform -- uid: 3118 - type: ReinforcedWindow - components: - - pos: -12.5,-25.5 - parent: 1 - type: Transform -- uid: 3119 - type: ReinforcedWindow - components: - - pos: -13.5,-30.5 - parent: 1 - type: Transform -- uid: 3120 - type: ReinforcedWindow - components: - - pos: -12.5,-30.5 - parent: 1 - type: Transform -- uid: 3121 - type: ReinforcedWindow - components: - - pos: -17.5,-41.5 - parent: 1 - type: Transform -- uid: 3122 - type: ReinforcedWindow - components: - - pos: -18.5,-40.5 - parent: 1 - type: Transform -- uid: 3123 - type: ReinforcedWindow - components: - - pos: -18.5,-39.5 - parent: 1 - type: Transform -- uid: 3124 - type: ReinforcedWindow - components: - - pos: -19.5,-38.5 - parent: 1 - type: Transform -- uid: 3125 - type: ReinforcedWindow - components: - - pos: -20.5,-38.5 - parent: 1 - type: Transform -- uid: 3126 - type: ReinforcedWindow - components: - - pos: -21.5,-37.5 - parent: 1 - type: Transform -- uid: 3127 - type: ReinforcedWindow - components: - - pos: -21.5,-36.5 - parent: 1 - type: Transform -- uid: 3128 - type: ReinforcedWindow - components: - - pos: -21.5,-34.5 - parent: 1 - type: Transform -- uid: 3129 - type: ReinforcedWindow - components: - - pos: -21.5,-33.5 - parent: 1 - type: Transform -- uid: 3130 - type: ReinforcedWindow - components: - - pos: -22.5,-31.5 - parent: 1 - type: Transform -- uid: 3131 - type: ReinforcedWindow - components: - - pos: -23.5,-30.5 - parent: 1 - type: Transform -- uid: 3132 - type: ReinforcedWindow - components: - - pos: -23.5,-29.5 - parent: 1 - type: Transform -- uid: 3133 - type: WallSolid - components: - - pos: 38.5,-12.5 - parent: 1 - type: Transform -- uid: 3134 - type: WallSolid - components: - - pos: 32.5,-21.5 - parent: 1 - type: Transform -- uid: 3135 - type: WallSolid - components: - - pos: 33.5,-21.5 - parent: 1 - type: Transform -- uid: 3136 - type: ReinforcedWindow - components: - - pos: 34.5,-22.5 - parent: 1 - type: Transform -- uid: 3137 - type: ReinforcedWindow - components: - - pos: 36.5,-21.5 - parent: 1 - type: Transform -- uid: 3138 - type: ReinforcedWindow - components: - - pos: 31.5,-25.5 - parent: 1 - type: Transform -- uid: 3139 - type: ReinforcedWindow - components: - - pos: 27.5,-27.5 - parent: 1 - type: Transform -- uid: 3140 - type: ReinforcedWindow - components: - - pos: 28.5,-27.5 - parent: 1 - type: Transform -- uid: 3141 - type: WallSolid - components: - - pos: 29.5,-22.5 - parent: 1 - type: Transform -- uid: 3142 - type: WallSolid - components: - - pos: 25.5,-19.5 - parent: 1 - type: Transform -- uid: 3143 - type: ReinforcedWindow - components: - - pos: -16.5,23.5 - parent: 1 - type: Transform -- uid: 3144 - type: WallReinforced - components: - - pos: -24.5,-17.5 - parent: 1 - type: Transform -- uid: 3145 - type: WallReinforced - components: - - pos: -24.5,-15.5 - parent: 1 - type: Transform -- uid: 3146 - type: WallReinforced - components: - - pos: -20.5,-19.5 - parent: 1 - type: Transform -- uid: 3147 - type: WallReinforced - components: - - pos: 38.5,-18.5 - parent: 1 - type: Transform -- uid: 3148 - type: WallReinforced - components: - - pos: -40.5,-12.5 - parent: 1 - type: Transform -- uid: 3149 - type: WallReinforced - components: - - pos: -40.5,-14.5 - parent: 1 - type: Transform -- uid: 3150 - type: WallReinforced - components: - - pos: 38.5,-15.5 - parent: 1 - type: Transform -- uid: 3151 - type: WallReinforced - components: - - pos: -21.5,-19.5 - parent: 1 - type: Transform -- uid: 3152 - type: WallReinforced - components: - - pos: -22.5,-19.5 - parent: 1 - type: Transform -- uid: 3153 - type: WallReinforced - components: - - pos: -24.5,-16.5 - parent: 1 - type: Transform -- uid: 3154 - type: ReinforcedWindow - components: - - pos: -17.5,23.5 - parent: 1 - type: Transform -- uid: 3155 - type: WallReinforced - components: - - pos: -20.5,-11.5 - parent: 1 - type: Transform -- uid: 3156 - type: WallSolid - components: - - pos: 29.5,-21.5 - parent: 1 - type: Transform -- uid: 3157 - type: ReinforcedWindow - components: - - pos: 24.5,-27.5 - parent: 1 - type: Transform -- uid: 3158 - type: ReinforcedWindow - components: - - pos: 25.5,-27.5 - parent: 1 - type: Transform -- uid: 3159 - type: ReinforcedWindow - components: - - pos: 30.5,-25.5 - parent: 1 - type: Transform -- uid: 3160 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -48.5,-12.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3161 - type: WallReinforced - components: - - pos: -51.5,-12.5 - parent: 1 - type: Transform -- uid: 3162 - type: WallReinforced - components: - - pos: -45.5,-12.5 - parent: 1 - type: Transform -- uid: 3163 - type: WallReinforced - components: - - pos: -45.5,-10.5 - parent: 1 - type: Transform -- uid: 3164 - type: SprayBottleSpaceCleaner - components: - - pos: 16.269894,-4.730578 - parent: 1 - type: Transform -- uid: 3165 - type: WallSolid - components: - - pos: -29.5,-12.5 - parent: 1 - type: Transform -- uid: 3166 - type: filingCabinetTallRandom - components: - - pos: -34.5,11.5 - parent: 1 - type: Transform -- uid: 3167 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-13.5 - parent: 1 - type: Transform -- uid: 3168 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-8.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3169 - type: TintedWindow - components: - - pos: -36.5,46.5 - parent: 1 - type: Transform -- uid: 3170 - type: TintedWindow - components: - - pos: -36.5,42.5 - parent: 1 - type: Transform -- uid: 3171 - type: WallWood - components: - - pos: 39.5,49.5 - parent: 1 - type: Transform -- uid: 3172 - type: WallWood - components: - - pos: 39.5,50.5 - parent: 1 - type: Transform -- uid: 3173 - type: WallWood - components: - - pos: 44.5,47.5 - parent: 1 - type: Transform -- uid: 3174 - type: WallWood - components: - - pos: 44.5,48.5 - parent: 1 - type: Transform -- uid: 3175 - type: TableWood - components: - - pos: 43.5,51.5 - parent: 1 - type: Transform -- uid: 3176 - type: WallWood - components: - - pos: 40.5,50.5 - parent: 1 - type: Transform -- uid: 3177 - type: TableWood - components: - - pos: 43.5,50.5 - parent: 1 - type: Transform -- uid: 3178 - type: TableWood - components: - - pos: 42.5,50.5 - parent: 1 - type: Transform -- uid: 3179 - type: WallWood - components: - - pos: 40.5,51.5 - parent: 1 - type: Transform -- uid: 3180 - type: WoodDoor - components: - - pos: 44.5,46.5 - parent: 1 - type: Transform -- uid: 3181 - type: WallWood - components: - - pos: 39.5,46.5 - parent: 1 - type: Transform -- uid: 3182 - type: WallReinforced - components: - - pos: 40.5,45.5 - parent: 1 - type: Transform -- uid: 3183 - type: TintedWindow - components: - - pos: 39.5,47.5 - parent: 1 - type: Transform -- uid: 3184 - type: Grille - components: - - pos: 39.5,47.5 - parent: 1 - type: Transform -- uid: 3185 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 43.5,49.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3186 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 42.5,49.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3187 - type: DrinkShotGlass - components: - - pos: 46.64082,46.78565 - parent: 1 - type: Transform -- uid: 3188 - type: RevolverCapGun - components: - - pos: 46.541428,46.92756 - parent: 1 - type: Transform -- uid: 3189 - type: PaperOffice - components: - - pos: 42.97566,50.574673 - parent: 1 - type: Transform -- uid: 3190 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 40.5,46.5 - parent: 1 - type: Transform -- uid: 3191 - type: Fireplace - components: - - pos: 45.5,48.5 - parent: 1 - type: Transform -- uid: 3192 - type: AirlockSecurityGlassLocked - components: - - pos: 39.5,48.5 - parent: 1 - type: Transform -- uid: 3193 - type: WallSolid - components: - - pos: 37.5,51.5 - parent: 1 - type: Transform -- uid: 3194 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 36.5,53.5 - parent: 1 - type: Transform -- uid: 3195 - type: WallSolid - components: - - pos: 33.5,39.5 - parent: 1 - type: Transform -- uid: 3196 - type: WallSolid - components: - - pos: 28.5,39.5 - parent: 1 - type: Transform -- uid: 3197 - type: WallSolid - components: - - pos: 28.5,40.5 - parent: 1 - type: Transform -- uid: 3198 - type: WallSolid - components: - - pos: 33.5,40.5 - parent: 1 - type: Transform -- uid: 3199 - type: WallSolid - components: - - pos: 39.5,39.5 - parent: 1 - type: Transform -- uid: 3200 - type: WallSolid - components: - - pos: 38.5,39.5 - parent: 1 - type: Transform -- uid: 3201 - type: WallSolid - components: - - pos: 37.5,39.5 - parent: 1 - type: Transform -- uid: 3202 - type: WallSolid - components: - - pos: 36.5,39.5 - parent: 1 - type: Transform -- uid: 3203 - type: WallSolid - components: - - pos: 35.5,39.5 - parent: 1 - type: Transform -- uid: 3204 - type: WallSolid - components: - - pos: 37.5,41.5 - parent: 1 - type: Transform -- uid: 3205 - type: WallSolid - components: - - pos: 37.5,42.5 - parent: 1 - type: Transform -- uid: 3206 - type: Girder - components: - - pos: 37.5,43.5 - parent: 1 - type: Transform -- uid: 3207 - type: WallSolid - components: - - pos: 37.5,44.5 - parent: 1 - type: Transform -- uid: 3208 - type: WallSolid - components: - - pos: 37.5,45.5 - parent: 1 - type: Transform -- uid: 3209 - type: WallSolid - components: - - pos: 37.5,46.5 - parent: 1 - type: Transform -- uid: 3210 - type: WallSolid - components: - - pos: 37.5,47.5 - parent: 1 - type: Transform -- uid: 3211 - type: WallSolid - components: - - pos: 33.5,41.5 - parent: 1 - type: Transform -- uid: 3212 - type: WallSolid - components: - - pos: 34.5,42.5 - parent: 1 - type: Transform -- uid: 3213 - type: WallSolid - components: - - pos: 33.5,42.5 - parent: 1 - type: Transform -- uid: 3214 - type: WallSolid - components: - - pos: 35.5,42.5 - parent: 1 - type: Transform -- uid: 3215 - type: WallSolid - components: - - pos: 35.5,43.5 - parent: 1 - type: Transform -- uid: 3216 - type: WallSolid - components: - - pos: 35.5,44.5 - parent: 1 - type: Transform -- uid: 3217 - type: WallSolid - components: - - pos: 35.5,45.5 - parent: 1 - type: Transform -- uid: 3218 - type: WallSolid - components: - - pos: 35.5,46.5 - parent: 1 - type: Transform -- uid: 3219 - type: WallSolid - components: - - pos: 35.5,47.5 - parent: 1 - type: Transform -- uid: 3220 - type: WallSolid - components: - - pos: 35.5,48.5 - parent: 1 - type: Transform -- uid: 3221 - type: WallSolid - components: - - pos: 35.5,49.5 - parent: 1 - type: Transform -- uid: 3222 - type: WallSolid - components: - - pos: 35.5,50.5 - parent: 1 - type: Transform -- uid: 3223 - type: WallSolid - components: - - pos: 34.5,50.5 - parent: 1 - type: Transform -- uid: 3224 - type: WallSolid - components: - - pos: 33.5,50.5 - parent: 1 - type: Transform -- uid: 3225 - type: WallSolid - components: - - pos: 32.5,50.5 - parent: 1 - type: Transform -- uid: 3226 - type: WallSolid - components: - - pos: 29.5,50.5 - parent: 1 - type: Transform -- uid: 3227 - type: WallSolid - components: - - pos: 28.5,50.5 - parent: 1 - type: Transform -- uid: 3228 - type: HospitalCurtainsOpen - components: - - rot: 3.141592653589793 rad - pos: 25.5,49.5 - parent: 1 - type: Transform -- uid: 3229 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 26.5,49.5 - parent: 1 - type: Transform -- uid: 3230 - type: TintedWindow - components: - - rot: 3.141592653589793 rad - pos: 25.5,48.5 - parent: 1 - type: Transform -- uid: 3231 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 24.5,48.5 - parent: 1 - type: Transform -- uid: 3232 - type: WoodDoor - components: - - rot: 3.141592653589793 rad - pos: 26.5,47.5 - parent: 1 - type: Transform -- uid: 3233 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 27.5,39.5 - parent: 1 - type: Transform -- uid: 3234 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,46.5 - parent: 1 - type: Transform -- uid: 3235 - type: WallSolid - components: - - pos: 26.5,44.5 - parent: 1 - type: Transform -- uid: 3236 - type: WallSolid - components: - - pos: 26.5,43.5 - parent: 1 - type: Transform -- uid: 3237 - type: WallSolid - components: - - pos: 26.5,42.5 - parent: 1 - type: Transform -- uid: 3238 - type: WallSolid - components: - - pos: 27.5,42.5 - parent: 1 - type: Transform -- uid: 3239 - type: WallSolid - components: - - pos: 28.5,42.5 - parent: 1 - type: Transform -- uid: 3240 - type: HospitalCurtainsOpen - components: - - rot: 3.141592653589793 rad - pos: 26.5,52.5 - parent: 1 - type: Transform -- uid: 3241 - type: TintedWindow - components: - - rot: 3.141592653589793 rad - pos: 24.5,48.5 - parent: 1 - type: Transform -- uid: 3242 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 25.5,48.5 - parent: 1 - type: Transform -- uid: 3243 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,46.5 - parent: 1 - type: Transform -- uid: 3244 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 25.5,46.5 - parent: 1 - type: Transform -- uid: 3245 - type: WallSolid - components: - - pos: 23.5,47.5 - parent: 1 - type: Transform -- uid: 3246 - type: WallSolid - components: - - pos: 23.5,48.5 - parent: 1 - type: Transform -- uid: 3247 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,49.5 - parent: 1 - type: Transform -- uid: 3248 - type: WallSolid - components: - - pos: 23.5,50.5 - parent: 1 - type: Transform -- uid: 3249 - type: CableHV - components: - - pos: -35.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3250 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 27.5,53.5 - parent: 1 - type: Transform -- uid: 3251 - type: WallSolid - components: - - pos: 29.5,56.5 - parent: 1 - type: Transform -- uid: 3252 - type: WallSolid - components: - - pos: 29.5,55.5 - parent: 1 - type: Transform -- uid: 3253 - type: WallSolid - components: - - pos: 29.5,54.5 - parent: 1 - type: Transform -- uid: 3254 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 30.5,54.5 - parent: 1 - type: Transform -- uid: 3255 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 35.5,54.5 - parent: 1 - type: Transform -- uid: 3256 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 34.5,54.5 - parent: 1 - type: Transform -- uid: 3257 - type: WallSolid - components: - - pos: 34.5,53.5 - parent: 1 - type: Transform -- uid: 3258 - type: WallSolid - components: - - pos: 33.5,53.5 - parent: 1 - type: Transform -- uid: 3259 - type: WallSolid - components: - - pos: 31.5,53.5 - parent: 1 - type: Transform -- uid: 3260 - type: WallSolid - components: - - pos: 30.5,53.5 - parent: 1 - type: Transform -- uid: 3261 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 28.5,51.5 - parent: 1 - type: Transform -- uid: 3262 - type: Bed - components: - - pos: 26.5,52.5 - parent: 1 - type: Transform -- uid: 3263 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 33.5,54.5 - parent: 1 - type: Transform -- uid: 3264 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 28.5,46.5 - parent: 1 - type: Transform -- uid: 3265 - type: WallSolid - components: - - pos: 27.5,54.5 - parent: 1 - type: Transform -- uid: 3266 - type: WallSolid - components: - - pos: 23.5,52.5 - parent: 1 - type: Transform -- uid: 3267 - type: WallSolid - components: - - pos: 23.5,53.5 - parent: 1 - type: Transform -- uid: 3268 - type: WallSolid - components: - - pos: 23.5,54.5 - parent: 1 - type: Transform -- uid: 3269 - type: WallSolid - components: - - pos: 23.5,55.5 - parent: 1 - type: Transform -- uid: 3270 - type: WallSolid - components: - - pos: 24.5,55.5 - parent: 1 - type: Transform -- uid: 3271 - type: WallSolid - components: - - pos: 25.5,55.5 - parent: 1 - type: Transform -- uid: 3272 - type: WallSolid - components: - - pos: 26.5,55.5 - parent: 1 - type: Transform -- uid: 3273 - type: WallSolid - components: - - pos: 27.5,55.5 - parent: 1 - type: Transform -- uid: 3274 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 29.5,46.5 - parent: 1 - type: Transform -- uid: 3275 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 28.5,45.5 - parent: 1 - type: Transform -- uid: 3276 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 29.5,45.5 - parent: 1 - type: Transform -- uid: 3277 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 28.5,44.5 - parent: 1 - type: Transform -- uid: 3278 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 29.5,44.5 - parent: 1 - type: Transform -- uid: 3279 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 32.5,46.5 - parent: 1 - type: Transform -- uid: 3280 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 33.5,46.5 - parent: 1 - type: Transform -- uid: 3281 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 32.5,45.5 - parent: 1 - type: Transform -- uid: 3282 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 33.5,45.5 - parent: 1 - type: Transform -- uid: 3283 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 32.5,44.5 - parent: 1 - type: Transform -- uid: 3284 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 33.5,44.5 - parent: 1 - type: Transform -- uid: 3285 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 27.5,52.5 - parent: 1 - type: Transform -- uid: 3286 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 28.5,41.5 - parent: 1 - type: Transform -- uid: 3287 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 31.5,54.5 - parent: 1 - type: Transform -- uid: 3288 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 26.5,39.5 - parent: 1 - type: Transform -- uid: 3289 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,39.5 - parent: 1 - type: Transform -- uid: 3290 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,40.5 - parent: 1 - type: Transform -- uid: 3291 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,41.5 - parent: 1 - type: Transform -- uid: 3292 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,42.5 - parent: 1 - type: Transform -- uid: 3293 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,43.5 - parent: 1 - type: Transform -- uid: 3294 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,44.5 - parent: 1 - type: Transform -- uid: 3295 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,44.5 - parent: 1 - type: Transform -- uid: 3296 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 22.5,44.5 - parent: 1 - type: Transform -- uid: 3297 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,44.5 - parent: 1 - type: Transform -- uid: 3298 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 20.5,44.5 - parent: 1 - type: Transform -- uid: 3299 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 19.5,44.5 - parent: 1 - type: Transform -- uid: 3300 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 18.5,44.5 - parent: 1 - type: Transform -- uid: 3301 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 17.5,44.5 - parent: 1 - type: Transform -- uid: 3302 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 16.5,44.5 - parent: 1 - type: Transform -- uid: 3303 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 16.5,43.5 - parent: 1 - type: Transform -- uid: 3304 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 16.5,42.5 - parent: 1 - type: Transform -- uid: 3305 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 16.5,41.5 - parent: 1 - type: Transform -- uid: 3306 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 16.5,40.5 - parent: 1 - type: Transform -- uid: 3307 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 16.5,39.5 - parent: 1 - type: Transform -- uid: 3308 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 13.5,39.5 - parent: 1 - type: Transform -- uid: 3309 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 13.5,40.5 - parent: 1 - type: Transform -- uid: 3310 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 12.5,39.5 - parent: 1 - type: Transform -- uid: 3311 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 11.5,39.5 - parent: 1 - type: Transform -- uid: 3312 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 10.5,39.5 - parent: 1 - type: Transform -- uid: 3313 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 9.5,39.5 - parent: 1 - type: Transform -- uid: 3314 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 10.5,40.5 - parent: 1 - type: Transform -- uid: 3315 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 10.5,41.5 - parent: 1 - type: Transform -- uid: 3316 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 7.5,39.5 - parent: 1 - type: Transform -- uid: 3317 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 6.5,39.5 - parent: 1 - type: Transform -- uid: 3318 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 5.5,39.5 - parent: 1 - type: Transform -- uid: 3319 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 8.5,50.5 - parent: 1 - type: Transform -- uid: 3320 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 8.5,49.5 - parent: 1 - type: Transform -- uid: 3321 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 3.5,49.5 - parent: 1 - type: Transform -- uid: 3322 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 3.5,48.5 - parent: 1 - type: Transform -- uid: 3323 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 2.5,48.5 - parent: 1 - type: Transform -- uid: 3324 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 4.5,49.5 - parent: 1 - type: Transform -- uid: 3325 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 6.5,51.5 - parent: 1 - type: Transform -- uid: 3326 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 6.5,49.5 - parent: 1 - type: Transform -- uid: 3327 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 6.5,49.5 - parent: 1 - type: Transform -- uid: 3328 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 6.5,48.5 - parent: 1 - type: Transform -- uid: 3329 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 6.5,47.5 - parent: 1 - type: Transform -- uid: 3330 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 6.5,46.5 - parent: 1 - type: Transform -- uid: 3331 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 6.5,45.5 - parent: 1 - type: Transform -- uid: 3332 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 6.5,44.5 - parent: 1 - type: Transform -- uid: 3333 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 5.5,44.5 - parent: 1 - type: Transform -- uid: 3334 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 4.5,44.5 - parent: 1 - type: Transform -- uid: 3335 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 3.5,44.5 - parent: 1 - type: Transform -- uid: 3336 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 3.5,45.5 - parent: 1 - type: Transform -- uid: 3337 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 2.5,45.5 - parent: 1 - type: Transform -- uid: 3338 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 5.5,51.5 - parent: 1 - type: Transform -- uid: 3339 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 5.5,49.5 - parent: 1 - type: Transform -- uid: 3340 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 5.5,49.5 - parent: 1 - type: Transform -- uid: 3341 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 1.5,48.5 - parent: 1 - type: Transform -- uid: 3342 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 1.5,45.5 - parent: 1 - type: Transform -- uid: 3343 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 1.5,49.5 - parent: 1 - type: Transform -- uid: 3344 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 1.5,50.5 - parent: 1 - type: Transform -- uid: 3345 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 1.5,43.5 - parent: 1 - type: Transform -- uid: 3346 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 1.5,44.5 - parent: 1 - type: Transform -- uid: 3347 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 1.5,44.5 - parent: 1 - type: Transform -- uid: 3348 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 1.5,42.5 - parent: 1 - type: Transform -- uid: 3349 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 2.5,42.5 - parent: 1 - type: Transform -- uid: 3350 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 3.5,42.5 - parent: 1 - type: Transform -- uid: 3351 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 4.5,42.5 - parent: 1 - type: Transform -- uid: 3352 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 5.5,42.5 - parent: 1 - type: Transform -- uid: 3353 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 6.5,42.5 - parent: 1 - type: Transform -- uid: 3354 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 7.5,42.5 - parent: 1 - type: Transform -- uid: 3355 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 8.5,42.5 - parent: 1 - type: Transform -- uid: 3356 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 8.5,43.5 - parent: 1 - type: Transform -- uid: 3357 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 8.5,44.5 - parent: 1 - type: Transform -- uid: 3358 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 8.5,45.5 - parent: 1 - type: Transform -- uid: 3359 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 8.5,46.5 - parent: 1 - type: Transform -- uid: 3360 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 8.5,47.5 - parent: 1 - type: Transform -- uid: 3361 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 8.5,48.5 - parent: 1 - type: Transform -- uid: 3362 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 4.5,39.5 - parent: 1 - type: Transform -- uid: 3363 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 3.5,39.5 - parent: 1 - type: Transform -- uid: 3364 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 2.5,39.5 - parent: 1 - type: Transform -- uid: 3365 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 1.5,39.5 - parent: 1 - type: Transform -- uid: 3366 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 1.5,40.5 - parent: 1 - type: Transform -- uid: 3367 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 1.5,49.5 - parent: 1 - type: Transform -- uid: 3368 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 8.5,39.5 - parent: 1 - type: Transform -- uid: 3369 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 10.5,42.5 - parent: 1 - type: Transform -- uid: 3370 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 13.5,43.5 - parent: 1 - type: Transform -- uid: 3371 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 12.5,43.5 - parent: 1 - type: Transform -- uid: 3372 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 11.5,43.5 - parent: 1 - type: Transform -- uid: 3373 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 10.5,43.5 - parent: 1 - type: Transform -- uid: 3374 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 10.5,44.5 - parent: 1 - type: Transform -- uid: 3375 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 10.5,45.5 - parent: 1 - type: Transform -- uid: 3376 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 10.5,46.5 - parent: 1 - type: Transform -- uid: 3377 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 10.5,47.5 - parent: 1 - type: Transform -- uid: 3378 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 11.5,47.5 - parent: 1 - type: Transform -- uid: 3379 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 12.5,47.5 - parent: 1 - type: Transform -- uid: 3380 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 13.5,47.5 - parent: 1 - type: Transform -- uid: 3381 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 13.5,46.5 - parent: 1 - type: Transform -- uid: 3382 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 16.5,47.5 - parent: 1 - type: Transform -- uid: 3383 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 16.5,48.5 - parent: 1 - type: Transform -- uid: 3384 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 17.5,48.5 - parent: 1 - type: Transform -- uid: 3385 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 18.5,48.5 - parent: 1 - type: Transform -- uid: 3386 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 13.5,48.5 - parent: 1 - type: Transform -- uid: 3387 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 13.5,49.5 - parent: 1 - type: Transform -- uid: 3388 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 17.5,51.5 - parent: 1 - type: Transform -- uid: 3389 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 20.5,51.5 - parent: 1 - type: Transform -- uid: 3390 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 19.5,51.5 - parent: 1 - type: Transform -- uid: 3391 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 18.5,51.5 - parent: 1 - type: Transform -- uid: 3392 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 27.5,51.5 - parent: 1 - type: Transform -- uid: 3393 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 24.5,49.5 - parent: 1 - type: Transform -- uid: 3394 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,51.5 - parent: 1 - type: Transform -- uid: 3395 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,52.5 - parent: 1 - type: Transform -- uid: 3396 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,53.5 - parent: 1 - type: Transform -- uid: 3397 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,54.5 - parent: 1 - type: Transform -- uid: 3398 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,55.5 - parent: 1 - type: Transform -- uid: 3399 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 20.5,55.5 - parent: 1 - type: Transform -- uid: 3400 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 19.5,55.5 - parent: 1 - type: Transform -- uid: 3401 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 18.5,55.5 - parent: 1 - type: Transform -- uid: 3402 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 17.5,55.5 - parent: 1 - type: Transform -- uid: 3403 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 17.5,54.5 - parent: 1 - type: Transform -- uid: 3404 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 17.5,53.5 - parent: 1 - type: Transform -- uid: 3405 - type: RandomArcade - components: - - pos: 24.5,-0.5 - parent: 1 - type: Transform -- uid: 3406 - type: RandomArcade - components: - - pos: 27.5,-2.5 - parent: 1 - type: Transform -- uid: 3407 - type: RandomArcade - components: - - pos: 24.5,-2.5 - parent: 1 - type: Transform -- uid: 3408 - type: RandomArcade - components: - - pos: 27.5,-4.5 - parent: 1 - type: Transform -- uid: 3409 - type: RandomArcade - components: - - pos: 24.5,-4.5 - parent: 1 - type: Transform -- uid: 3410 - type: Window - components: - - pos: 28.5,0.5 - parent: 1 - type: Transform -- uid: 3411 - type: Window - components: - - pos: 28.5,-1.5 - parent: 1 - type: Transform -- uid: 3412 - type: Window - components: - - pos: 28.5,-3.5 - parent: 1 - type: Transform -- uid: 3413 - type: Window - components: - - pos: 28.5,-5.5 - parent: 1 - type: Transform -- uid: 3414 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 24.5,-5.5 - parent: 1 - type: Transform -- uid: 3415 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 27.5,-5.5 - parent: 1 - type: Transform -- uid: 3416 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 27.5,-3.5 - parent: 1 - type: Transform -- uid: 3417 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 27.5,-1.5 - parent: 1 - type: Transform -- uid: 3418 - type: CarpetPink - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform -- uid: 3419 - type: FloraTree06 - components: - - pos: -46.77861,40.963207 - parent: 1 - type: Transform -- uid: 3420 - type: FloraTreeStump - components: - - pos: -44.965977,40.860065 - parent: 1 - type: Transform -- uid: 3421 - type: WallSolid - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform -- uid: 3422 - type: WallSolid - components: - - pos: -7.5,-6.5 - parent: 1 - type: Transform -- uid: 3423 - type: WallSolid - components: - - pos: -6.5,-6.5 - parent: 1 - type: Transform -- uid: 3424 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -43.5,-10.5 - parent: 1 - type: Transform -- uid: 3425 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -42.5,-10.5 - parent: 1 - type: Transform -- uid: 3426 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -13.5,-43.5 - parent: 1 - type: Transform -- uid: 3427 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -13.5,-44.5 - parent: 1 - type: Transform -- uid: 3428 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -13.5,-45.5 - parent: 1 - type: Transform -- uid: 3429 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -13.5,-46.5 - parent: 1 - type: Transform -- uid: 3430 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -13.5,-47.5 - parent: 1 - type: Transform -- uid: 3431 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -12.5,-47.5 - parent: 1 - type: Transform -- uid: 3432 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -11.5,-47.5 - parent: 1 - type: Transform -- uid: 3433 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -10.5,-47.5 - parent: 1 - type: Transform -- uid: 3434 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -9.5,-47.5 - parent: 1 - type: Transform -- uid: 3435 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -8.5,-47.5 - parent: 1 - type: Transform -- uid: 3436 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-47.5 - parent: 1 - type: Transform -- uid: 3437 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -6.5,-47.5 - parent: 1 - type: Transform -- uid: 3438 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -5.5,-47.5 - parent: 1 - type: Transform -- uid: 3439 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -4.5,-47.5 - parent: 1 - type: Transform -- uid: 3440 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -3.5,-47.5 - parent: 1 - type: Transform -- uid: 3441 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -3.5,-48.5 - parent: 1 - type: Transform -- uid: 3442 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -3.5,-49.5 - parent: 1 - type: Transform -- uid: 3443 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -5.5,33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3444 - type: Wrench - components: - - pos: -10.675615,34.54656 - parent: 1 - type: Transform -- uid: 3445 - type: BoxFolderBlue - components: - - pos: -9.412775,27.467733 - parent: 1 - type: Transform -- uid: 3446 - type: BoxFolderGrey - components: - - pos: -9.554764,27.609644 - parent: 1 - type: Transform -- uid: 3447 - type: AnomalyScanner - components: - - pos: -18.56863,17.749208 - parent: 1 - type: Transform -- uid: 3448 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 2.5,-49.5 - parent: 1 - type: Transform -- uid: 3449 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 2.5,-48.5 - parent: 1 - type: Transform -- uid: 3450 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 2.5,-47.5 - parent: 1 - type: Transform -- uid: 3451 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 8.5,-48.5 - parent: 1 - type: Transform -- uid: 3452 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 3.5,-47.5 - parent: 1 - type: Transform -- uid: 3453 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 4.5,-47.5 - parent: 1 - type: Transform -- uid: 3454 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 5.5,-47.5 - parent: 1 - type: Transform -- uid: 3455 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-47.5 - parent: 1 - type: Transform -- uid: 3456 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 7.5,-47.5 - parent: 1 - type: Transform -- uid: 3457 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 8.5,-47.5 - parent: 1 - type: Transform -- uid: 3458 - type: FirelockGlass - components: - - pos: 21.5,-6.5 - parent: 1 - type: Transform -- uid: 3459 - type: SMESBasic - components: - - pos: 15.5,-11.5 - parent: 1 - type: Transform -- uid: 3460 - type: CableHV - components: - - pos: 13.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3461 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 12.5,-47.5 - parent: 1 - type: Transform -- uid: 3462 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 12.5,-46.5 - parent: 1 - type: Transform -- uid: 3463 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 12.5,-45.5 - parent: 1 - type: Transform -- uid: 3464 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 12.5,-44.5 - parent: 1 - type: Transform -- uid: 3465 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 12.5,-43.5 - parent: 1 - type: Transform -- uid: 3466 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 8.5,-49.5 - parent: 1 - type: Transform -- uid: 3467 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 8.5,-50.5 - parent: 1 - type: Transform -- uid: 3468 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 8.5,-51.5 - parent: 1 - type: Transform -- uid: 3469 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 8.5,-52.5 - parent: 1 - type: Transform -- uid: 3470 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 8.5,-53.5 - parent: 1 - type: Transform -- uid: 3471 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 8.5,-54.5 - parent: 1 - type: Transform -- uid: 3472 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 7.5,-54.5 - parent: 1 - type: Transform -- uid: 3473 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-54.5 - parent: 1 - type: Transform -- uid: 3474 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-55.5 - parent: 1 - type: Transform -- uid: 3475 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-56.5 - parent: 1 - type: Transform -- uid: 3476 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-57.5 - parent: 1 - type: Transform -- uid: 3477 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-58.5 - parent: 1 - type: Transform -- uid: 3478 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-59.5 - parent: 1 - type: Transform -- uid: 3479 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-60.5 - parent: 1 - type: Transform -- uid: 3480 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-61.5 - parent: 1 - type: Transform -- uid: 3481 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-62.5 - parent: 1 - type: Transform -- uid: 3482 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-63.5 - parent: 1 - type: Transform -- uid: 3483 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-64.5 - parent: 1 - type: Transform -- uid: 3484 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-65.5 - parent: 1 - type: Transform -- uid: 3485 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-66.5 - parent: 1 - type: Transform -- uid: 3486 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-67.5 - parent: 1 - type: Transform -- uid: 3487 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-68.5 - parent: 1 - type: Transform -- uid: 3488 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-69.5 - parent: 1 - type: Transform -- uid: 3489 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-70.5 - parent: 1 - type: Transform -- uid: 3490 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-70.5 - parent: 1 - type: Transform -- uid: 3491 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-69.5 - parent: 1 - type: Transform -- uid: 3492 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-68.5 - parent: 1 - type: Transform -- uid: 3493 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-67.5 - parent: 1 - type: Transform -- uid: 3494 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-66.5 - parent: 1 - type: Transform -- uid: 3495 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-65.5 - parent: 1 - type: Transform -- uid: 3496 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-64.5 - parent: 1 - type: Transform -- uid: 3497 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-63.5 - parent: 1 - type: Transform -- uid: 3498 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-62.5 - parent: 1 - type: Transform -- uid: 3499 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-61.5 - parent: 1 - type: Transform -- uid: 3500 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-60.5 - parent: 1 - type: Transform -- uid: 3501 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-59.5 - parent: 1 - type: Transform -- uid: 3502 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-58.5 - parent: 1 - type: Transform -- uid: 3503 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-57.5 - parent: 1 - type: Transform -- uid: 3504 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-56.5 - parent: 1 - type: Transform -- uid: 3505 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-55.5 - parent: 1 - type: Transform -- uid: 3506 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-54.5 - parent: 1 - type: Transform -- uid: 3507 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -8.5,-54.5 - parent: 1 - type: Transform -- uid: 3508 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -9.5,-54.5 - parent: 1 - type: Transform -- uid: 3509 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -9.5,-53.5 - parent: 1 - type: Transform -- uid: 3510 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -9.5,-52.5 - parent: 1 - type: Transform -- uid: 3511 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -9.5,-51.5 - parent: 1 - type: Transform -- uid: 3512 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -9.5,-50.5 - parent: 1 - type: Transform -- uid: 3513 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -9.5,-49.5 - parent: 1 - type: Transform -- uid: 3514 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -9.5,-48.5 - parent: 1 - type: Transform -- uid: 3515 - type: SolarPanel - components: - - pos: 3.5,-59.5 - parent: 1 - type: Transform -- uid: 3516 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 16.5,-41.5 - parent: 1 - type: Transform -- uid: 3517 - type: WallReinforced - components: - - pos: -51.5,17.5 - parent: 1 - type: Transform -- uid: 3518 - type: Grille - components: - - pos: -50.5,17.5 - parent: 1 - type: Transform -- uid: 3519 - type: ReinforcedWindow - components: - - pos: -47.5,17.5 - parent: 1 - type: Transform -- uid: 3520 - type: Grille - components: - - pos: -49.5,17.5 - parent: 1 - type: Transform -- uid: 3521 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 19.5,48.5 - parent: 1 - type: Transform -- uid: 3522 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 19.5,47.5 - parent: 1 - type: Transform -- uid: 3523 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 19.5,46.5 - parent: 1 - type: Transform -- uid: 3524 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 13.5,41.5 - parent: 1 - type: Transform -- uid: 3525 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 13.5,45.5 - parent: 1 - type: Transform -- uid: 3526 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 16.5,46.5 - parent: 1 - type: Transform -- uid: 3527 - type: AirlockGlass - components: - - pos: 14.5,39.5 - parent: 1 - type: Transform -- uid: 3528 - type: AirlockGlass - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform -- uid: 3529 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -4.5,53.5 - parent: 1 - type: Transform -- uid: 3530 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 14.5,48.5 - parent: 1 - type: Transform -- uid: 3531 - type: WallReinforced - components: - - pos: 41.5,41.5 - parent: 1 - type: Transform -- uid: 3532 - type: Grille - components: - - pos: 42.5,41.5 - parent: 1 - type: Transform -- uid: 3533 - type: WallReinforced - components: - - pos: 45.5,41.5 - parent: 1 - type: Transform -- uid: 3534 - type: WallReinforced - components: - - pos: 45.5,42.5 - parent: 1 - type: Transform -- uid: 3535 - type: WallReinforced - components: - - pos: 45.5,44.5 - parent: 1 - type: Transform -- uid: 3536 - type: ComputerAnalysisConsole - components: - - rot: -1.5707963267948966 rad - pos: -9.5,29.5 - parent: 1 - type: Transform -- uid: 3537 - type: MachineArtifactAnalyzer - components: - - rot: -1.5707963267948966 rad - pos: -6.5,29.5 - parent: 1 - type: Transform -- uid: 3538 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -6.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3539 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -6.5,30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3540 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3541 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3542 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3543 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3544 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3545 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3546 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -10.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3547 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -10.5,30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3548 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -11.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3549 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -11.5,30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3550 - type: CrateArtifactContainer - components: - - pos: -9.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3551 - type: CircuitImprinter - components: - - pos: -5.5,24.5 - parent: 1 - type: Transform -- uid: 3552 - type: Autolathe - components: - - pos: -4.5,24.5 - parent: 1 - type: Transform -- uid: 3553 - type: Protolathe - components: - - pos: -3.5,24.5 - parent: 1 - type: Transform -- uid: 3554 - type: TablePlasmaGlass - components: - - pos: -7.5,24.5 - parent: 1 - type: Transform -- uid: 3555 - type: TablePlasmaGlass - components: - - pos: -6.5,24.5 - parent: 1 - type: Transform -- uid: 3556 - type: ComputerResearchAndDevelopment - components: - - rot: -1.5707963267948966 rad - pos: -3.5,21.5 - parent: 1 - type: Transform -- uid: 3557 - type: ResearchAndDevelopmentServer - components: - - pos: -25.5,23.5 - parent: 1 - type: Transform -- uid: 3558 - type: Bed - components: - - pos: -25.5,19.5 - parent: 1 - type: Transform -- uid: 3559 - type: BedsheetRD - components: - - pos: -25.5,19.5 - parent: 1 - type: Transform -- uid: 3560 - type: LockerResearchDirectorFilled - components: - - pos: -25.5,22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3561 - type: WallReinforced - components: - - pos: -25.5,21.5 - parent: 1 - type: Transform -- uid: 3562 - type: WallSolid - components: - - pos: 37.5,-10.5 - parent: 1 - type: Transform -- uid: 3563 - type: WallSolid - components: - - pos: 38.5,-10.5 - parent: 1 - type: Transform -- uid: 3564 - type: WallSolid - components: - - pos: 36.5,-10.5 - parent: 1 - type: Transform -- uid: 3565 - type: WallSolid - components: - - pos: 35.5,-10.5 - parent: 1 - type: Transform -- uid: 3566 - type: CableHV - components: - - pos: 38.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3567 - type: WallSolid - components: - - pos: 33.5,-10.5 - parent: 1 - type: Transform -- uid: 3568 - type: WallSolid - components: - - pos: 32.5,-10.5 - parent: 1 - type: Transform -- uid: 3569 - type: WallReinforced - components: - - pos: 31.5,-10.5 - parent: 1 - type: Transform -- uid: 3570 - type: TableReinforced - components: - - pos: 30.5,-10.5 - parent: 1 - type: Transform -- uid: 3571 - type: WallReinforced - components: - - pos: 31.5,-14.5 - parent: 1 - type: Transform -- uid: 3572 - type: WallReinforced - components: - - pos: 31.5,-13.5 - parent: 1 - type: Transform -- uid: 3573 - type: WallReinforced - components: - - pos: 31.5,-12.5 - parent: 1 - type: Transform -- uid: 3574 - type: TableReinforced - components: - - pos: 29.5,-10.5 - parent: 1 - type: Transform -- uid: 3575 - type: ReinforcedWindow - components: - - pos: 28.5,-10.5 - parent: 1 - type: Transform -- uid: 3576 - type: WallReinforced - components: - - pos: 31.5,-11.5 - parent: 1 - type: Transform -- uid: 3577 - type: WallReinforced - components: - - pos: 29.5,-14.5 - parent: 1 - type: Transform -- uid: 3578 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-18.5 - parent: 1 - type: Transform -- uid: 3579 - type: WallReinforced - components: - - pos: 27.5,-14.5 - parent: 1 - type: Transform -- uid: 3580 - type: WallReinforced - components: - - pos: 26.5,-14.5 - parent: 1 - type: Transform -- uid: 3581 - type: WallReinforced - components: - - pos: 25.5,-14.5 - parent: 1 - type: Transform -- uid: 3582 - type: Grille - components: - - pos: 23.5,-16.5 - parent: 1 - type: Transform -- uid: 3583 - type: TelecomServer - components: - - pos: 15.5,-15.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3587 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 3584 - type: FirelockGlass - components: - - pos: 30.5,-10.5 - parent: 1 - type: Transform -- uid: 3585 - type: WallReinforced - components: - - pos: 23.5,-13.5 - parent: 1 - type: Transform -- uid: 3586 - type: Grille - components: - - pos: 23.5,-15.5 - parent: 1 - type: Transform -- uid: 3587 - type: EncryptionKeyMedical - components: - - flags: InContainer - type: MetaData - - parent: 3583 - type: Transform - - canCollide: False - type: Physics -- uid: 3588 - type: WallReinforced - components: - - pos: 23.5,-10.5 - parent: 1 - type: Transform -- uid: 3589 - type: LockerEvidence - components: - - pos: 26.5,-11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3590 - type: LockerEvidence - components: - - pos: 26.5,-12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3591 - type: WallReinforced - components: - - pos: 26.5,-10.5 - parent: 1 - type: Transform -- uid: 3592 - type: WallReinforced - components: - - pos: 25.5,-10.5 - parent: 1 - type: Transform -- uid: 3593 - type: WallReinforced - components: - - pos: 25.5,-12.5 - parent: 1 - type: Transform -- uid: 3594 - type: WallSolid - components: - - pos: 35.5,-13.5 - parent: 1 - type: Transform -- uid: 3595 - type: WallSolid - components: - - pos: 34.5,-13.5 - parent: 1 - type: Transform -- uid: 3596 - type: WallSolid - components: - - pos: 33.5,-13.5 - parent: 1 - type: Transform -- uid: 3597 - type: WallReinforced - components: - - pos: 30.5,-14.5 - parent: 1 - type: Transform -- uid: 3598 - type: Girder - components: - - pos: 33.5,-15.5 - parent: 1 - type: Transform -- uid: 3599 - type: WallSolid - components: - - pos: 33.5,-14.5 - parent: 1 - type: Transform -- uid: 3600 - type: WallSolid - components: - - pos: 6.5,16.5 - parent: 1 - type: Transform -- uid: 3601 - type: WallSolid - components: - - pos: 10.5,16.5 - parent: 1 - type: Transform -- uid: 3602 - type: WallSolid - components: - - pos: 11.5,16.5 - parent: 1 - type: Transform -- uid: 3603 - type: WallSolid - components: - - pos: 12.5,16.5 - parent: 1 - type: Transform -- uid: 3604 - type: WallReinforced - components: - - pos: 5.5,21.5 - parent: 1 - type: Transform -- uid: 3605 - type: WallReinforced - components: - - pos: 6.5,21.5 - parent: 1 - type: Transform -- uid: 3606 - type: WallReinforced - components: - - pos: 7.5,21.5 - parent: 1 - type: Transform -- uid: 3607 - type: WallReinforced - components: - - pos: 8.5,21.5 - parent: 1 - type: Transform -- uid: 3608 - type: WallReinforced - components: - - pos: 9.5,21.5 - parent: 1 - type: Transform -- uid: 3609 - type: Grille - components: - - pos: 9.5,24.5 - parent: 1 - type: Transform -- uid: 3610 - type: ReinforcedWindow - components: - - pos: 9.5,24.5 - parent: 1 - type: Transform -- uid: 3611 - type: WallReinforced - components: - - pos: 9.5,25.5 - parent: 1 - type: Transform -- uid: 3612 - type: WallReinforced - components: - - pos: 8.5,25.5 - parent: 1 - type: Transform -- uid: 3613 - type: WallReinforced - components: - - pos: 7.5,25.5 - parent: 1 - type: Transform -- uid: 3614 - type: VendingMachineChemDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,25.5 - parent: 1 - type: Transform -- uid: 3615 - type: WallReinforced - components: - - pos: 2.5,26.5 - parent: 1 - type: Transform -- uid: 3616 - type: WallReinforced - components: - - pos: 3.5,26.5 - parent: 1 - type: Transform -- uid: 3617 - type: WallReinforced - components: - - pos: 5.5,26.5 - parent: 1 - type: Transform -- uid: 3618 - type: WallReinforced - components: - - pos: 5.5,27.5 - parent: 1 - type: Transform -- uid: 3619 - type: TableReinforced - components: - - pos: 9.5,23.5 - parent: 1 - type: Transform -- uid: 3620 - type: TableReinforced - components: - - pos: 9.5,22.5 - parent: 1 - type: Transform -- uid: 3621 - type: Grille - components: - - pos: 12.5,21.5 - parent: 1 - type: Transform -- uid: 3622 - type: Grille - components: - - pos: 10.5,21.5 - parent: 1 - type: Transform -- uid: 3623 - type: WallReinforced - components: - - pos: 13.5,21.5 - parent: 1 - type: Transform -- uid: 3624 - type: WallReinforced - components: - - pos: 13.5,22.5 - parent: 1 - type: Transform -- uid: 3625 - type: WallReinforced - components: - - pos: 13.5,23.5 - parent: 1 - type: Transform -- uid: 3626 - type: WallReinforced - components: - - pos: 13.5,24.5 - parent: 1 - type: Transform -- uid: 3627 - type: WallReinforced - components: - - pos: 13.5,25.5 - parent: 1 - type: Transform -- uid: 3628 - type: WallReinforced - components: - - pos: 13.5,26.5 - parent: 1 - type: Transform -- uid: 3629 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 9.5,20.5 - parent: 1 - type: Transform -- uid: 3630 - type: TableReinforced - components: - - pos: 9.5,19.5 - parent: 1 - type: Transform -- uid: 3631 - type: TableReinforced - components: - - pos: 10.5,19.5 - parent: 1 - type: Transform -- uid: 3632 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: 9.5,20.5 - parent: 1 - type: Transform -- uid: 3633 - type: TableReinforced - components: - - pos: 13.5,19.5 - parent: 1 - type: Transform -- uid: 3634 - type: TableReinforced - components: - - pos: 12.5,19.5 - parent: 1 - type: Transform -- uid: 3635 - type: WallSolid - components: - - pos: 16.5,16.5 - parent: 1 - type: Transform -- uid: 3636 - type: WallSolid - components: - - pos: 17.5,16.5 - parent: 1 - type: Transform -- uid: 3637 - type: WallSolid - components: - - pos: 17.5,17.5 - parent: 1 - type: Transform -- uid: 3638 - type: Grille - components: - - pos: 7.5,16.5 - parent: 1 - type: Transform -- uid: 3639 - type: WallSolid - components: - - pos: 17.5,18.5 - parent: 1 - type: Transform -- uid: 3640 - type: WallSolid - components: - - pos: 17.5,19.5 - parent: 1 - type: Transform -- uid: 3641 - type: WallSolid - components: - - pos: 17.5,20.5 - parent: 1 - type: Transform -- uid: 3642 - type: WallSolid - components: - - pos: 17.5,21.5 - parent: 1 - type: Transform -- uid: 3643 - type: WallSolid - components: - - pos: 16.5,21.5 - parent: 1 - type: Transform -- uid: 3644 - type: WallSolid - components: - - pos: 14.5,21.5 - parent: 1 - type: Transform -- uid: 3645 - type: Grille - components: - - pos: 8.5,16.5 - parent: 1 - type: Transform -- uid: 3646 - type: Grille - components: - - pos: 9.5,16.5 - parent: 1 - type: Transform -- uid: 3647 - type: Window - components: - - pos: 7.5,16.5 - parent: 1 - type: Transform -- uid: 3648 - type: Window - components: - - pos: 8.5,16.5 - parent: 1 - type: Transform -- uid: 3649 - type: Window - components: - - pos: 9.5,16.5 - parent: 1 - type: Transform -- uid: 3650 - type: Window - components: - - pos: 13.5,16.5 - parent: 1 - type: Transform -- uid: 3651 - type: Window - components: - - pos: 14.5,16.5 - parent: 1 - type: Transform -- uid: 3652 - type: Window - components: - - pos: 15.5,16.5 - parent: 1 - type: Transform -- uid: 3653 - type: Grille - components: - - pos: 13.5,16.5 - parent: 1 - type: Transform -- uid: 3654 - type: Grille - components: - - pos: 14.5,16.5 - parent: 1 - type: Transform -- uid: 3655 - type: Grille - components: - - pos: 15.5,16.5 - parent: 1 - type: Transform -- uid: 3656 - type: WallReinforced - components: - - pos: 14.5,26.5 - parent: 1 - type: Transform -- uid: 3657 - type: WallReinforced - components: - - pos: 15.5,26.5 - parent: 1 - type: Transform -- uid: 3658 - type: WallReinforced - components: - - pos: 16.5,26.5 - parent: 1 - type: Transform -- uid: 3659 - type: WallReinforced - components: - - pos: 17.5,26.5 - parent: 1 - type: Transform -- uid: 3660 - type: WallReinforced - components: - - pos: 17.5,27.5 - parent: 1 - type: Transform -- uid: 3661 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 17.5,24.5 - parent: 1 - type: Transform -- uid: 3662 - type: WallReinforced - components: - - pos: 17.5,29.5 - parent: 1 - type: Transform -- uid: 3663 - type: WallReinforced - components: - - pos: 17.5,30.5 - parent: 1 - type: Transform -- uid: 3664 - type: WallReinforced - components: - - pos: 17.5,31.5 - parent: 1 - type: Transform -- uid: 3665 - type: WallReinforced - components: - - pos: 17.5,32.5 - parent: 1 - type: Transform -- uid: 3666 - type: WallReinforced - components: - - pos: 13.5,29.5 - parent: 1 - type: Transform -- uid: 3667 - type: WallReinforced - components: - - pos: 13.5,30.5 - parent: 1 - type: Transform -- uid: 3668 - type: WallReinforced - components: - - pos: 14.5,30.5 - parent: 1 - type: Transform -- uid: 3669 - type: WallReinforced - components: - - pos: 16.5,30.5 - parent: 1 - type: Transform -- uid: 3670 - type: WallReinforced - components: - - pos: 17.5,33.5 - parent: 1 - type: Transform -- uid: 3671 - type: WallReinforced - components: - - pos: 17.5,34.5 - parent: 1 - type: Transform -- uid: 3672 - type: WallReinforced - components: - - pos: 17.5,35.5 - parent: 1 - type: Transform -- uid: 3673 - type: WallReinforced - components: - - pos: 13.5,35.5 - parent: 1 - type: Transform -- uid: 3674 - type: WallReinforced - components: - - pos: 9.5,35.5 - parent: 1 - type: Transform -- uid: 3675 - type: WallReinforced - components: - - pos: 8.5,35.5 - parent: 1 - type: Transform -- uid: 3676 - type: WallReinforced - components: - - pos: 7.5,35.5 - parent: 1 - type: Transform -- uid: 3677 - type: WallReinforced - components: - - pos: 8.5,34.5 - parent: 1 - type: Transform -- uid: 3678 - type: WallReinforced - components: - - pos: 8.5,33.5 - parent: 1 - type: Transform -- uid: 3679 - type: WallReinforced - components: - - pos: 8.5,32.5 - parent: 1 - type: Transform -- uid: 3680 - type: WallReinforced - components: - - pos: 8.5,31.5 - parent: 1 - type: Transform -- uid: 3681 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 9.5,29.5 - parent: 1 - type: Transform -- uid: 3682 - type: WallReinforced - components: - - pos: 13.5,34.5 - parent: 1 - type: Transform -- uid: 3683 - type: WallReinforced - components: - - pos: 13.5,33.5 - parent: 1 - type: Transform -- uid: 3684 - type: Grille - components: - - pos: 16.5,35.5 - parent: 1 - type: Transform -- uid: 3685 - type: Grille - components: - - pos: 15.5,35.5 - parent: 1 - type: Transform -- uid: 3686 - type: Grille - components: - - pos: 14.5,35.5 - parent: 1 - type: Transform -- uid: 3687 - type: ReinforcedWindow - components: - - pos: 16.5,35.5 - parent: 1 - type: Transform -- uid: 3688 - type: ReinforcedWindow - components: - - pos: 15.5,35.5 - parent: 1 - type: Transform -- uid: 3689 - type: ReinforcedWindow - components: - - pos: 14.5,35.5 - parent: 1 - type: Transform -- uid: 3690 - type: ReinforcedWindow - components: - - pos: 13.5,32.5 - parent: 1 - type: Transform -- uid: 3691 - type: ReinforcedWindow - components: - - pos: 13.5,32.5 - parent: 1 - type: Transform -- uid: 3692 - type: Grille - components: - - pos: 12.5,35.5 - parent: 1 - type: Transform -- uid: 3693 - type: Grille - components: - - pos: 11.5,35.5 - parent: 1 - type: Transform -- uid: 3694 - type: Grille - components: - - pos: 10.5,35.5 - parent: 1 - type: Transform -- uid: 3695 - type: ReinforcedWindow - components: - - pos: 12.5,35.5 - parent: 1 - type: Transform -- uid: 3696 - type: ReinforcedWindow - components: - - pos: 11.5,35.5 - parent: 1 - type: Transform -- uid: 3697 - type: ReinforcedWindow - components: - - pos: 10.5,35.5 - parent: 1 - type: Transform -- uid: 3698 - type: WallReinforced - components: - - pos: 8.5,29.5 - parent: 1 - type: Transform -- uid: 3699 - type: TableGlass - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform -- uid: 3700 - type: WallReinforced - components: - - pos: 5.5,28.5 - parent: 1 - type: Transform -- uid: 3701 - type: WallSolid - components: - - pos: 20.5,16.5 - parent: 1 - type: Transform -- uid: 3702 - type: WallSolid - components: - - pos: 18.5,16.5 - parent: 1 - type: Transform -- uid: 3703 - type: WallReinforced - components: - - pos: 12.5,29.5 - parent: 1 - type: Transform -- uid: 3704 - type: WallReinforced - components: - - pos: 18.5,30.5 - parent: 1 - type: Transform -- uid: 3705 - type: BoxBodyBag - components: - - pos: 18.323305,31.666723 - parent: 1 - type: Transform -- uid: 3706 - type: WallReinforced - components: - - pos: 20.5,30.5 - parent: 1 - type: Transform -- uid: 3707 - type: WallReinforced - components: - - pos: 21.5,30.5 - parent: 1 - type: Transform -- uid: 3708 - type: WallReinforced - components: - - pos: 22.5,30.5 - parent: 1 - type: Transform -- uid: 3709 - type: WallReinforced - components: - - pos: 17.5,25.5 - parent: 1 - type: Transform -- uid: 3710 - type: WallReinforced - components: - - pos: 18.5,25.5 - parent: 1 - type: Transform -- uid: 3711 - type: WallReinforced - components: - - pos: 19.5,25.5 - parent: 1 - type: Transform -- uid: 3712 - type: WallReinforced - components: - - pos: 20.5,25.5 - parent: 1 - type: Transform -- uid: 3713 - type: WallReinforced - components: - - pos: 21.5,25.5 - parent: 1 - type: Transform -- uid: 3714 - type: WallReinforced - components: - - pos: 22.5,25.5 - parent: 1 - type: Transform -- uid: 3715 - type: WallReinforced - components: - - pos: 23.5,25.5 - parent: 1 - type: Transform -- uid: 3716 - type: WallReinforced - components: - - pos: 23.5,26.5 - parent: 1 - type: Transform -- uid: 3717 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 17.5,23.5 - parent: 1 - type: Transform -- uid: 3718 - type: WallReinforced - components: - - pos: 23.5,28.5 - parent: 1 - type: Transform -- uid: 3719 - type: WallReinforced - components: - - pos: 23.5,29.5 - parent: 1 - type: Transform -- uid: 3720 - type: WallReinforced - components: - - pos: 23.5,30.5 - parent: 1 - type: Transform -- uid: 3721 - type: AirlockMedicalLocked - components: - - pos: 19.5,30.5 - parent: 1 - type: Transform -- uid: 3722 - type: ClosetL3VirologyFilled - components: - - pos: 14.5,29.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3723 - type: BoxNitrileGloves - components: - - pos: 18.361977,29.598766 - parent: 1 - type: Transform -- uid: 3724 - type: TableReinforcedGlass - components: - - rot: 3.141592653589793 rad - pos: 16.5,27.5 - parent: 1 - type: Transform -- uid: 3725 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 21.5,26.5 - parent: 1 - type: Transform -- uid: 3726 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 21.5,27.5 - parent: 1 - type: Transform -- uid: 3727 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 16.5,23.5 - parent: 1 - type: Transform -- uid: 3728 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 15.5,23.5 - parent: 1 - type: Transform -- uid: 3729 - type: TelecomServer - components: - - pos: 17.5,-17.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 3730 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 3730 - type: EncryptionKeyCommon - components: - - flags: InContainer - type: MetaData - - parent: 3729 - type: Transform - - canCollide: False - type: Physics -- uid: 3731 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-18.5 - parent: 1 - type: Transform -- uid: 3732 - type: Grille - components: - - pos: 22.5,-10.5 - parent: 1 - type: Transform -- uid: 3733 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3734 - type: ReinforcedWindow - components: - - pos: 22.5,-10.5 - parent: 1 - type: Transform -- uid: 3735 - type: TableGlass - components: - - pos: 18.5,-24.5 - parent: 1 - type: Transform -- uid: 3736 - type: TableWood - components: - - pos: 4.5,71.5 - parent: 1 - type: Transform -- uid: 3737 - type: WallReinforced - components: - - pos: 21.5,-26.5 - parent: 1 - type: Transform -- uid: 3738 - type: WallReinforced - components: - - pos: 20.5,-26.5 - parent: 1 - type: Transform -- uid: 3739 - type: WallReinforced - components: - - pos: 19.5,-28.5 - parent: 1 - type: Transform -- uid: 3740 - type: TableGlass - components: - - pos: 18.5,-22.5 - parent: 1 - type: Transform -- uid: 3741 - type: TableGlass - components: - - pos: 17.5,-25.5 - parent: 1 - type: Transform -- uid: 3742 - type: TableGlass - components: - - pos: 16.5,-22.5 - parent: 1 - type: Transform -- uid: 3743 - type: WallReinforced - components: - - pos: 16.5,-25.5 - parent: 1 - type: Transform -- uid: 3744 - type: WallReinforced - components: - - pos: 16.5,-28.5 - parent: 1 - type: Transform -- uid: 3745 - type: WallReinforced - components: - - pos: 15.5,-28.5 - parent: 1 - type: Transform -- uid: 3746 - type: WallReinforced - components: - - pos: 19.5,-20.5 - parent: 1 - type: Transform -- uid: 3747 - type: Grille - components: - - pos: 17.5,-20.5 - parent: 1 - type: Transform -- uid: 3748 - type: WallReinforced - components: - - pos: 16.5,-26.5 - parent: 1 - type: Transform -- uid: 3749 - type: WallReinforced - components: - - pos: 15.5,-25.5 - parent: 1 - type: Transform -- uid: 3750 - type: WallReinforced - components: - - pos: 19.5,-26.5 - parent: 1 - type: Transform -- uid: 3751 - type: Grille - components: - - pos: 18.5,-26.5 - parent: 1 - type: Transform -- uid: 3752 - type: WallReinforced - components: - - pos: 21.5,-21.5 - parent: 1 - type: Transform -- uid: 3753 - type: TableReinforced - components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform -- uid: 3754 - type: WallReinforced - components: - - pos: 16.5,-20.5 - parent: 1 - type: Transform -- uid: 3755 - type: WallReinforced - components: - - pos: 16.5,-21.5 - parent: 1 - type: Transform -- uid: 3756 - type: TableReinforced - components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform -- uid: 3757 - type: Grille - components: - - pos: 17.5,-26.5 - parent: 1 - type: Transform -- uid: 3758 - type: Grille - components: - - pos: 19.5,-24.5 - parent: 1 - type: Transform -- uid: 3759 - type: ChairOfficeLight - components: - - pos: 25.5,3.5 - parent: 1 - type: Transform -- uid: 3760 - type: WallReinforced - components: - - pos: 21.5,-25.5 - parent: 1 - type: Transform -- uid: 3761 - type: TableGlass - components: - - pos: 18.5,-25.5 - parent: 1 - type: Transform -- uid: 3762 - type: WallReinforced - components: - - pos: 15.5,-21.5 - parent: 1 - type: Transform -- uid: 3763 - type: Grille - components: - - pos: 19.5,-23.5 - parent: 1 - type: Transform -- uid: 3764 - type: Grille - components: - - pos: 19.5,-22.5 - parent: 1 - type: Transform -- uid: 3765 - type: TableGlass - components: - - pos: 18.5,-21.5 - parent: 1 - type: Transform -- uid: 3766 - type: TableGlass - components: - - pos: 17.5,-21.5 - parent: 1 - type: Transform -- uid: 3767 - type: TableGlass - components: - - pos: 16.5,-24.5 - parent: 1 - type: Transform -- uid: 3768 - type: WallReinforced - components: - - pos: 21.5,-20.5 - parent: 1 - type: Transform -- uid: 3769 - type: WallReinforced - components: - - pos: 19.5,-21.5 - parent: 1 - type: Transform -- uid: 3770 - type: WallReinforced - components: - - pos: 19.5,-25.5 - parent: 1 - type: Transform -- uid: 3771 - type: WallReinforced - components: - - pos: 15.5,-22.5 - parent: 1 - type: Transform -- uid: 3772 - type: WallReinforced - components: - - pos: 15.5,-24.5 - parent: 1 - type: Transform -- uid: 3773 - type: WallReinforced - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform -- uid: 3774 - type: Grille - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform -- uid: 3775 - type: FoodContainerEgg - components: - - pos: 7.601603,-3.2161803 - parent: 1 - type: Transform -- uid: 3776 - type: Grille - components: - - pos: 17.5,-28.5 - parent: 1 - type: Transform -- uid: 3777 - type: Grille - components: - - pos: 18.5,-28.5 - parent: 1 - type: Transform -- uid: 3778 - type: Grille - components: - - pos: 21.5,-24.5 - parent: 1 - type: Transform -- uid: 3779 - type: Grille - components: - - pos: 21.5,-23.5 - parent: 1 - type: Transform -- uid: 3780 - type: Grille - components: - - pos: 21.5,-22.5 - parent: 1 - type: Transform -- uid: 3781 - type: WallReinforced - components: - - pos: 21.5,-10.5 - parent: 1 - type: Transform -- uid: 3782 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 1 - type: Transform -- uid: 3783 - type: WallReinforced - components: - - pos: 20.5,-10.5 - parent: 1 - type: Transform -- uid: 3784 - type: WindoorCommandLocked - components: - - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 1 - type: Transform -- uid: 3785 - type: ReinforcedWindow - components: - - pos: 17.5,-20.5 - parent: 1 - type: Transform -- uid: 3786 - type: ReinforcedWindow - components: - - pos: 18.5,-20.5 - parent: 1 - type: Transform -- uid: 3787 - type: ReinforcedWindow - components: - - pos: 19.5,-22.5 - parent: 1 - type: Transform -- uid: 3788 - type: ReinforcedWindow - components: - - pos: 19.5,-23.5 - parent: 1 - type: Transform -- uid: 3789 - type: ReinforcedWindow - components: - - pos: 19.5,-24.5 - parent: 1 - type: Transform -- uid: 3790 - type: ReinforcedWindow - components: - - pos: 17.5,-26.5 - parent: 1 - type: Transform -- uid: 3791 - type: ReinforcedWindow - components: - - pos: 18.5,-26.5 - parent: 1 - type: Transform -- uid: 3792 - type: ReinforcedWindow - components: - - pos: 21.5,-22.5 - parent: 1 - type: Transform -- uid: 3793 - type: ReinforcedWindow - components: - - pos: 21.5,-23.5 - parent: 1 - type: Transform -- uid: 3794 - type: ReinforcedWindow - components: - - pos: 21.5,-24.5 - parent: 1 - type: Transform -- uid: 3795 - type: ReinforcedWindow - components: - - pos: 17.5,-28.5 - parent: 1 - type: Transform -- uid: 3796 - type: ReinforcedWindow - components: - - pos: 18.5,-28.5 - parent: 1 - type: Transform -- uid: 3797 - type: WallReinforced - components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform -- uid: 3798 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-11.5 - parent: 1 - type: Transform -- uid: 3799 - type: WallReinforced - components: - - pos: 16.5,-18.5 - parent: 1 - type: Transform -- uid: 3800 - type: WallReinforced - components: - - pos: 17.5,-18.5 - parent: 1 - type: Transform -- uid: 3801 - type: WallReinforced - components: - - pos: 21.5,-18.5 - parent: 1 - type: Transform -- uid: 3802 - type: WallReinforced - components: - - pos: 20.5,-18.5 - parent: 1 - type: Transform -- uid: 3803 - type: WindoorCommandLocked - components: - - rot: 3.141592653589793 rad - pos: 19.5,-13.5 - parent: 1 - type: Transform -- uid: 3804 - type: CrateNPCCow - components: - - pos: 6.5,-5.5 - parent: 1 - type: Transform - - air: - volume: 800 - immutable: False - temperature: 293.14987 - moles: - - 13.772371 - - 51.81035 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3805 - type: CableHV - components: - - pos: 15.5,-12.5 - parent: 1 - type: Transform -- uid: 3806 - type: WallReinforced - components: - - pos: 23.5,-18.5 - parent: 1 - type: Transform -- uid: 3807 - type: Grille - components: - - pos: 23.5,-14.5 - parent: 1 - type: Transform -- uid: 3808 - type: WallReinforced - components: - - pos: 23.5,-17.5 - parent: 1 - type: Transform -- uid: 3809 - type: ReinforcedWindow - components: - - pos: 23.5,-15.5 - parent: 1 - type: Transform -- uid: 3810 - type: ReinforcedWindow - components: - - pos: 23.5,-14.5 - parent: 1 - type: Transform -- uid: 3811 - type: ReinforcedWindow - components: - - pos: 23.5,-16.5 - parent: 1 - type: Transform -- uid: 3812 - type: WallSolid - components: - - pos: 25.5,-20.5 - parent: 1 - type: Transform -- uid: 3813 - type: WallSolid - components: - - pos: 27.5,-21.5 - parent: 1 - type: Transform -- uid: 3814 - type: WallSolid - components: - - pos: 26.5,-21.5 - parent: 1 - type: Transform -- uid: 3815 - type: WallReinforced - components: - - pos: 22.5,-20.5 - parent: 1 - type: Transform -- uid: 3816 - type: WallReinforced - components: - - pos: 23.5,-20.5 - parent: 1 - type: Transform -- uid: 3817 - type: WallReinforced - components: - - pos: 23.5,-19.5 - parent: 1 - type: Transform -- uid: 3818 - type: WallSolid - components: - - pos: 25.5,-18.5 - parent: 1 - type: Transform -- uid: 3819 - type: WallSolid - components: - - pos: 25.5,-17.5 - parent: 1 - type: Transform -- uid: 3820 - type: WallSolid - components: - - pos: 26.5,-17.5 - parent: 1 - type: Transform -- uid: 3821 - type: WallSolid - components: - - pos: 27.5,-17.5 - parent: 1 - type: Transform -- uid: 3822 - type: WallSolid - components: - - pos: 28.5,-17.5 - parent: 1 - type: Transform -- uid: 3823 - type: WallSolid - components: - - pos: 29.5,-17.5 - parent: 1 - type: Transform -- uid: 3824 - type: WallSolid - components: - - pos: 29.5,-18.5 - parent: 1 - type: Transform -- uid: 3825 - type: WallSolid - components: - - pos: 19.5,-31.5 - parent: 1 - type: Transform -- uid: 3826 - type: WallSolid - components: - - pos: 18.5,-31.5 - parent: 1 - type: Transform -- uid: 3827 - type: WallSolid - components: - - pos: 17.5,-31.5 - parent: 1 - type: Transform -- uid: 3828 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: 17.5,-37.5 - parent: 1 - type: Transform -- uid: 3829 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-33.5 - parent: 1 - type: Transform -- uid: 3830 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-32.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver -- uid: 3831 - type: SMESBasic - components: - - pos: 8.5,-29.5 - parent: 1 - type: Transform -- uid: 3832 - type: SMESBasic - components: - - pos: 6.5,-29.5 - parent: 1 - type: Transform -- uid: 3833 - type: CableHV - components: - - pos: 5.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3834 - type: CableHV - components: - - pos: 7.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3835 - type: SolarPanel - components: - - pos: -6.5,-70.5 - parent: 1 - type: Transform -- uid: 3836 - type: SolarPanel - components: - - pos: -6.5,-69.5 - parent: 1 - type: Transform -- uid: 3837 - type: SolarPanel - components: - - pos: -6.5,-68.5 - parent: 1 - type: Transform -- uid: 3838 - type: SolarPanel - components: - - pos: -6.5,-67.5 - parent: 1 - type: Transform -- uid: 3839 - type: SolarPanel - components: - - pos: -6.5,-66.5 - parent: 1 - type: Transform -- uid: 3840 - type: SolarPanel - components: - - pos: -6.5,-65.5 - parent: 1 - type: Transform -- uid: 3841 - type: SolarPanel - components: - - pos: -6.5,-64.5 - parent: 1 - type: Transform -- uid: 3842 - type: SolarPanel - components: - - pos: -8.5,-70.5 - parent: 1 - type: Transform -- uid: 3843 - type: SolarPanel - components: - - pos: -8.5,-69.5 - parent: 1 - type: Transform -- uid: 3844 - type: SolarPanel - components: - - pos: -8.5,-68.5 - parent: 1 - type: Transform -- uid: 3845 - type: SolarPanel - components: - - pos: -8.5,-67.5 - parent: 1 - type: Transform -- uid: 3846 - type: SolarPanel - components: - - pos: -8.5,-66.5 - parent: 1 - type: Transform -- uid: 3847 - type: SolarPanel - components: - - pos: -8.5,-65.5 - parent: 1 - type: Transform -- uid: 3848 - type: SolarPanel - components: - - pos: -8.5,-64.5 - parent: 1 - type: Transform -- uid: 3849 - type: SolarPanel - components: - - pos: -8.5,-62.5 - parent: 1 - type: Transform -- uid: 3850 - type: SolarPanel - components: - - pos: -8.5,-61.5 - parent: 1 - type: Transform -- uid: 3851 - type: SolarPanel - components: - - pos: -8.5,-60.5 - parent: 1 - type: Transform -- uid: 3852 - type: SolarPanel - components: - - pos: -9.5,-59.5 - parent: 1 - type: Transform -- uid: 3853 - type: SolarPanel - components: - - pos: -9.5,-58.5 - parent: 1 - type: Transform -- uid: 3854 - type: SolarPanel - components: - - pos: -9.5,-57.5 - parent: 1 - type: Transform -- uid: 3855 - type: SolarPanel - components: - - pos: -10.5,-56.5 - parent: 1 - type: Transform -- uid: 3856 - type: SolarPanel - components: - - pos: -10.5,-55.5 - parent: 1 - type: Transform -- uid: 3857 - type: SolarPanel - components: - - pos: -10.5,-54.5 - parent: 1 - type: Transform -- uid: 3858 - type: SolarPanel - components: - - pos: -10.5,-53.5 - parent: 1 - type: Transform -- uid: 3859 - type: SolarPanel - components: - - pos: -5.5,-62.5 - parent: 1 - type: Transform -- uid: 3860 - type: SolarPanel - components: - - pos: -5.5,-61.5 - parent: 1 - type: Transform -- uid: 3861 - type: SolarPanel - components: - - pos: -5.5,-60.5 - parent: 1 - type: Transform -- uid: 3862 - type: SolarPanel - components: - - pos: -4.5,-59.5 - parent: 1 - type: Transform -- uid: 3863 - type: SolarPanel - components: - - pos: -4.5,-58.5 - parent: 1 - type: Transform -- uid: 3864 - type: SolarPanel - components: - - pos: -4.5,-57.5 - parent: 1 - type: Transform -- uid: 3865 - type: SolarPanel - components: - - pos: -4.5,-56.5 - parent: 1 - type: Transform -- uid: 3866 - type: SolarPanel - components: - - pos: -4.5,-55.5 - parent: 1 - type: Transform -- uid: 3867 - type: SolarPanel - components: - - pos: -4.5,-54.5 - parent: 1 - type: Transform -- uid: 3868 - type: SolarPanel - components: - - pos: -4.5,-53.5 - parent: 1 - type: Transform -- uid: 3869 - type: SolarPanel - components: - - pos: 3.5,-58.5 - parent: 1 - type: Transform -- uid: 3870 - type: SolarPanel - components: - - pos: 3.5,-57.5 - parent: 1 - type: Transform -- uid: 3871 - type: SolarPanel - components: - - pos: 3.5,-56.5 - parent: 1 - type: Transform -- uid: 3872 - type: SolarPanel - components: - - pos: 3.5,-55.5 - parent: 1 - type: Transform -- uid: 3873 - type: SolarPanel - components: - - pos: 3.5,-54.5 - parent: 1 - type: Transform -- uid: 3874 - type: SolarPanel - components: - - pos: 3.5,-53.5 - parent: 1 - type: Transform -- uid: 3875 - type: SolarPanel - components: - - pos: 4.5,-60.5 - parent: 1 - type: Transform -- uid: 3876 - type: SolarPanel - components: - - pos: 4.5,-61.5 - parent: 1 - type: Transform -- uid: 3877 - type: SolarPanel - components: - - pos: 4.5,-62.5 - parent: 1 - type: Transform -- uid: 3878 - type: SolarPanel - components: - - pos: 5.5,-64.5 - parent: 1 - type: Transform -- uid: 3879 - type: SolarPanel - components: - - pos: 5.5,-65.5 - parent: 1 - type: Transform -- uid: 3880 - type: SolarPanel - components: - - pos: 5.5,-66.5 - parent: 1 - type: Transform -- uid: 3881 - type: SolarPanel - components: - - pos: 5.5,-67.5 - parent: 1 - type: Transform -- uid: 3882 - type: SolarPanel - components: - - pos: 5.5,-68.5 - parent: 1 - type: Transform -- uid: 3883 - type: SolarPanel - components: - - pos: 5.5,-69.5 - parent: 1 - type: Transform -- uid: 3884 - type: SolarPanel - components: - - pos: 5.5,-70.5 - parent: 1 - type: Transform -- uid: 3885 - type: SolarPanel - components: - - pos: 7.5,-64.5 - parent: 1 - type: Transform -- uid: 3886 - type: SolarPanel - components: - - pos: 7.5,-65.5 - parent: 1 - type: Transform -- uid: 3887 - type: SolarPanel - components: - - pos: 7.5,-66.5 - parent: 1 - type: Transform -- uid: 3888 - type: SolarPanel - components: - - pos: 7.5,-67.5 - parent: 1 - type: Transform -- uid: 3889 - type: SolarPanel - components: - - pos: 7.5,-68.5 - parent: 1 - type: Transform -- uid: 3890 - type: SolarPanel - components: - - pos: 7.5,-69.5 - parent: 1 - type: Transform -- uid: 3891 - type: SolarPanel - components: - - pos: 7.5,-70.5 - parent: 1 - type: Transform -- uid: 3892 - type: SolarPanel - components: - - pos: 7.5,-62.5 - parent: 1 - type: Transform -- uid: 3893 - type: SolarPanel - components: - - pos: 7.5,-61.5 - parent: 1 - type: Transform -- uid: 3894 - type: SolarPanel - components: - - pos: 7.5,-60.5 - parent: 1 - type: Transform -- uid: 3895 - type: SolarPanel - components: - - pos: 8.5,-59.5 - parent: 1 - type: Transform -- uid: 3896 - type: SolarPanel - components: - - pos: 8.5,-58.5 - parent: 1 - type: Transform -- uid: 3897 - type: SolarPanel - components: - - pos: 8.5,-57.5 - parent: 1 - type: Transform -- uid: 3898 - type: SolarPanel - components: - - pos: 9.5,-56.5 - parent: 1 - type: Transform -- uid: 3899 - type: SolarPanel - components: - - pos: 9.5,-55.5 - parent: 1 - type: Transform -- uid: 3900 - type: SolarPanel - components: - - pos: 9.5,-54.5 - parent: 1 - type: Transform -- uid: 3901 - type: SolarPanel - components: - - pos: 9.5,-53.5 - parent: 1 - type: Transform -- uid: 3902 - type: SolarPanel - components: - - pos: -15.5,-47.5 - parent: 1 - type: Transform -- uid: 3903 - type: SolarPanel - components: - - pos: -15.5,-46.5 - parent: 1 - type: Transform -- uid: 3904 - type: SolarPanel - components: - - pos: -15.5,-45.5 - parent: 1 - type: Transform -- uid: 3905 - type: SolarPanel - components: - - pos: -15.5,-44.5 - parent: 1 - type: Transform -- uid: 3906 - type: SolarPanel - components: - - pos: -15.5,-43.5 - parent: 1 - type: Transform -- uid: 3907 - type: SolarPanel - components: - - pos: -12.5,-49.5 - parent: 1 - type: Transform -- uid: 3908 - type: SolarPanel - components: - - pos: -12.5,-50.5 - parent: 1 - type: Transform -- uid: 3909 - type: SolarPanel - components: - - pos: -11.5,-50.5 - parent: 1 - type: Transform -- uid: 3910 - type: SolarPanel - components: - - pos: -11.5,-51.5 - parent: 1 - type: Transform -- uid: 3911 - type: SolarPanel - components: - - pos: 10.5,-51.5 - parent: 1 - type: Transform -- uid: 3912 - type: SolarPanel - components: - - pos: 10.5,-50.5 - parent: 1 - type: Transform -- uid: 3913 - type: SolarPanel - components: - - pos: 11.5,-50.5 - parent: 1 - type: Transform -- uid: 3914 - type: SolarPanel - components: - - pos: 11.5,-49.5 - parent: 1 - type: Transform -- uid: 3915 - type: SolarPanel - components: - - pos: 14.5,-47.5 - parent: 1 - type: Transform -- uid: 3916 - type: SolarPanel - components: - - pos: 14.5,-46.5 - parent: 1 - type: Transform -- uid: 3917 - type: SolarPanel - components: - - pos: 14.5,-45.5 - parent: 1 - type: Transform -- uid: 3918 - type: SolarPanel - components: - - pos: 14.5,-44.5 - parent: 1 - type: Transform -- uid: 3919 - type: SolarPanel - components: - - pos: 14.5,-43.5 - parent: 1 - type: Transform -- uid: 3920 - type: AirlockMaintLocked - components: - - pos: -27.5,-10.5 - parent: 1 - type: Transform -- uid: 3921 - type: WallSolid - components: - - pos: -33.5,-12.5 - parent: 1 - type: Transform -- uid: 3922 - type: WallSolid - components: - - pos: -33.5,-11.5 - parent: 1 - type: Transform -- uid: 3923 - type: WallSolid - components: - - pos: -28.5,-15.5 - parent: 1 - type: Transform -- uid: 3924 - type: WallSolid - components: - - pos: -29.5,-11.5 - parent: 1 - type: Transform -- uid: 3925 - type: WallSolid - components: - - pos: -28.5,-10.5 - parent: 1 - type: Transform -- uid: 3926 - type: WallSolid - components: - - pos: -31.5,-10.5 - parent: 1 - type: Transform -- uid: 3927 - type: WallSolid - components: - - pos: -29.5,-10.5 - parent: 1 - type: Transform -- uid: 3928 - type: WallSolid - components: - - pos: -30.5,-10.5 - parent: 1 - type: Transform -- uid: 3929 - type: WallSolid - components: - - pos: -32.5,-10.5 - parent: 1 - type: Transform -- uid: 3930 - type: WallSolid - components: - - pos: -33.5,-9.5 - parent: 1 - type: Transform -- uid: 3931 - type: WallSolid - components: - - pos: -33.5,-10.5 - parent: 1 - type: Transform -- uid: 3932 - type: WallSolid - components: - - pos: -27.5,-15.5 - parent: 1 - type: Transform -- uid: 3933 - type: WallSolid - components: - - pos: -26.5,-15.5 - parent: 1 - type: Transform -- uid: 3934 - type: WallReinforced - components: - - pos: -26.5,-14.5 - parent: 1 - type: Transform -- uid: 3935 - type: WallReinforced - components: - - pos: -26.5,-13.5 - parent: 1 - type: Transform -- uid: 3936 - type: WallReinforced - components: - - pos: -26.5,-12.5 - parent: 1 - type: Transform -- uid: 3937 - type: WallReinforced - components: - - pos: -26.5,-11.5 - parent: 1 - type: Transform -- uid: 3938 - type: WallReinforced - components: - - pos: -26.5,-10.5 - parent: 1 - type: Transform -- uid: 3939 - type: WallSolid - components: - - pos: -33.5,-13.5 - parent: 1 - type: Transform -- uid: 3940 - type: WallSolid - components: - - pos: -30.5,-13.5 - parent: 1 - type: Transform -- uid: 3941 - type: WallSolid - components: - - pos: -30.5,-14.5 - parent: 1 - type: Transform -- uid: 3942 - type: WallSolid - components: - - pos: -32.5,-13.5 - parent: 1 - type: Transform -- uid: 3943 - type: WallSolid - components: - - pos: -31.5,-13.5 - parent: 1 - type: Transform -- uid: 3944 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-12.5 - parent: 1 - type: Transform -- uid: 3945 - type: WallSolid - components: - - pos: -34.5,-9.5 - parent: 1 - type: Transform -- uid: 3946 - type: WallSolid - components: - - pos: -34.5,-8.5 - parent: 1 - type: Transform -- uid: 3947 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-11.5 - parent: 1 - type: Transform -- uid: 3948 - type: ChairFolding - components: - - pos: -38.5,-10.5 - parent: 1 - type: Transform -- uid: 3949 - type: ChairFolding - components: - - pos: -39.5,-10.5 - parent: 1 - type: Transform -- uid: 3950 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-12.5 - parent: 1 - type: Transform -- uid: 3951 - type: TableCarpet - components: - - pos: -38.5,-12.5 - parent: 1 - type: Transform -- uid: 3952 - type: WallSolid - components: - - pos: 29.5,-20.5 - parent: 1 - type: Transform -- uid: 3953 - type: WallSolid - components: - - pos: -28.5,-19.5 - parent: 1 - type: Transform -- uid: 3954 - type: WallSolid - components: - - pos: -27.5,-19.5 - parent: 1 - type: Transform -- uid: 3955 - type: WallSolid - components: - - pos: -27.5,-18.5 - parent: 1 - type: Transform -- uid: 3956 - type: WallSolid - components: - - pos: -27.5,-17.5 - parent: 1 - type: Transform -- uid: 3957 - type: WallSolid - components: - - pos: -26.5,-19.5 - parent: 1 - type: Transform -- uid: 3958 - type: WallSolid - components: - - pos: -25.5,-19.5 - parent: 1 - type: Transform -- uid: 3959 - type: WallReinforced - components: - - pos: -24.5,-19.5 - parent: 1 - type: Transform -- uid: 3960 - type: WallSolid - components: - - pos: -25.5,-20.5 - parent: 1 - type: Transform -- uid: 3961 - type: WallSolid - components: - - pos: -25.5,-22.5 - parent: 1 - type: Transform -- uid: 3962 - type: Grille - components: - - pos: 6.5,35.5 - parent: 1 - type: Transform -- uid: 3963 - type: Grille - components: - - pos: 5.5,35.5 - parent: 1 - type: Transform -- uid: 3964 - type: Grille - components: - - pos: 4.5,35.5 - parent: 1 - type: Transform -- uid: 3965 - type: ReinforcedWindow - components: - - pos: 4.5,35.5 - parent: 1 - type: Transform -- uid: 3966 - type: ReinforcedWindow - components: - - pos: 5.5,35.5 - parent: 1 - type: Transform -- uid: 3967 - type: ReinforcedWindow - components: - - pos: 6.5,35.5 - parent: 1 - type: Transform -- uid: 3968 - type: WallReinforced - components: - - pos: -25.5,-10.5 - parent: 1 - type: Transform -- uid: 3969 - type: WallReinforced - components: - - pos: -24.5,-10.5 - parent: 1 - type: Transform -- uid: 3970 - type: WallReinforced - components: - - pos: -22.5,-10.5 - parent: 1 - type: Transform -- uid: 3971 - type: WallReinforced - components: - - pos: -21.5,-10.5 - parent: 1 - type: Transform -- uid: 3972 - type: WallReinforced - components: - - pos: -20.5,-10.5 - parent: 1 - type: Transform -- uid: 3973 - type: WallReinforced - components: - - pos: -20.5,-13.5 - parent: 1 - type: Transform -- uid: 3974 - type: WallReinforced - components: - - pos: -19.5,-13.5 - parent: 1 - type: Transform -- uid: 3975 - type: WallReinforced - components: - - pos: -19.5,-11.5 - parent: 1 - type: Transform -- uid: 3976 - type: WallReinforced - components: - - pos: -20.5,-14.5 - parent: 1 - type: Transform -- uid: 3977 - type: WallReinforced - components: - - pos: -21.5,-14.5 - parent: 1 - type: Transform -- uid: 3978 - type: WallReinforced - components: - - pos: -22.5,-14.5 - parent: 1 - type: Transform -- uid: 3979 - type: WallReinforced - components: - - pos: -23.5,-14.5 - parent: 1 - type: Transform -- uid: 3980 - type: WallReinforced - components: - - pos: -25.5,-14.5 - parent: 1 - type: Transform -- uid: 3981 - type: SpawnMobDrone - components: - - pos: -24.5,-12.5 - parent: 1 - type: Transform -- uid: 3982 - type: TelecomServer - components: - - pos: 17.5,-15.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 4349 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 3983 - type: TableReinforced - components: - - pos: -25.5,-11.5 - parent: 1 - type: Transform -- uid: 3984 - type: TableReinforced - components: - - pos: -25.5,-12.5 - parent: 1 - type: Transform -- uid: 3985 - type: TableReinforced - components: - - pos: -25.5,-13.5 - parent: 1 - type: Transform -- uid: 3986 - type: WallReinforced - components: - - pos: -23.5,-10.5 - parent: 1 - type: Transform -- uid: 3987 - type: WallReinforced - components: - - pos: -19.5,-14.5 - parent: 1 - type: Transform -- uid: 3988 - type: WallReinforced - components: - - pos: -19.5,-10.5 - parent: 1 - type: Transform -- uid: 3989 - type: Recycler - components: - - pos: 19.5,-35.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver -- uid: 3990 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-34.5 - parent: 1 - type: Transform -- uid: 3991 - type: Grille - components: - - pos: 16.5,-35.5 - parent: 1 - type: Transform -- uid: 3992 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-35.5 - parent: 1 - type: Transform -- uid: 3993 - type: SignDisposalSpace - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-33.5 - parent: 1 - type: Transform -- uid: 3994 - type: ConveyorBelt - components: - - pos: 19.5,-38.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver -- uid: 3995 - type: ConveyorBelt - components: - - pos: 19.5,-39.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver -- uid: 3996 - type: ConveyorBelt - components: - - pos: 19.5,-37.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver -- uid: 3997 - type: ConveyorBelt - components: - - pos: 19.5,-36.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver -- uid: 3998 - type: ConveyorBelt - components: - - pos: 19.5,-35.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver -- uid: 3999 - type: ConveyorBelt - components: - - pos: 19.5,-34.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver -- uid: 4000 - type: ConveyorBelt - components: - - pos: 19.5,-33.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver -- uid: 4001 - type: ConveyorBelt - components: - - pos: 19.5,-32.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver -- uid: 4002 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-32.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4007 - Forward: - - port: Left - uid: 4007 - Off: - - port: Middle - uid: 4007 - type: SignalReceiver -- uid: 4003 - type: RailingCorner - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-33.5 - parent: 1 - type: Transform -- uid: 4004 - type: RailingCorner - components: - - pos: 18.5,-37.5 - parent: 1 - type: Transform -- uid: 4005 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: 18.5,-36.5 - parent: 1 - type: Transform -- uid: 4006 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-34.5 - parent: 1 - type: Transform -- uid: 4007 - type: TwoWayLever - components: - - pos: 18.5,-33.5 - parent: 1 - type: Transform - - outputs: - Left: - - port: Forward - uid: 3830 - - port: Forward - uid: 4002 - - port: Forward - uid: 4001 - - port: Forward - uid: 4000 - - port: Forward - uid: 3999 - - port: Forward - uid: 3989 - - port: Forward - uid: 3998 - - port: Forward - uid: 3997 - - port: Forward - uid: 3996 - - port: Forward - uid: 3994 - - port: Forward - uid: 3995 - Right: - - port: Reverse - uid: 3830 - - port: Reverse - uid: 4002 - - port: Reverse - uid: 4001 - - port: Reverse - uid: 4000 - - port: Reverse - uid: 3999 - - port: Reverse - uid: 3989 - - port: Reverse - uid: 3998 - - port: Reverse - uid: 3997 - - port: Reverse - uid: 3996 - - port: Reverse - uid: 3994 - - port: Reverse - uid: 3995 - Middle: - - port: Off - uid: 3830 - - port: Off - uid: 4002 - - port: Off - uid: 4001 - - port: Off - uid: 4000 - - port: Off - uid: 3999 - - port: Off - uid: 3989 - - port: Off - uid: 3998 - - port: Off - uid: 3997 - - port: Off - uid: 3996 - - port: Off - uid: 3994 - - port: Off - uid: 3995 - type: SignalTransmitter -- uid: 4008 - type: Grille - components: - - pos: 20.5,-6.5 - parent: 1 - type: Transform -- uid: 4009 - type: TintedWindow - components: - - pos: 20.5,-6.5 - parent: 1 - type: Transform -- uid: 4010 - type: WallSolid - components: - - pos: 22.5,-1.5 - parent: 1 - type: Transform -- uid: 4011 - type: WallSolid - components: - - pos: 21.5,-1.5 - parent: 1 - type: Transform -- uid: 4012 - type: WindoorSecureJanitorLocked - components: - - rot: 3.141592653589793 rad - pos: 21.5,-6.5 - parent: 1 - type: Transform -- uid: 4013 - type: WallSolid - components: - - pos: 20.5,-1.5 - parent: 1 - type: Transform -- uid: 4014 - type: TableReinforced - components: - - pos: 16.5,-5.5 - parent: 1 - type: Transform -- uid: 4015 - type: TableReinforced - components: - - pos: 16.5,-4.5 - parent: 1 - type: Transform -- uid: 4016 - type: TableReinforced - components: - - pos: 16.5,-3.5 - parent: 1 - type: Transform -- uid: 4017 - type: DisposalUnit - components: - - pos: 4.5,52.5 - parent: 1 - type: Transform -- uid: 4018 - type: JanitorialTrolley - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 1 - type: Transform -- uid: 4019 - type: MopBucket - components: - - pos: 22.417683,-3.5983407 - parent: 1 - type: Transform -- uid: 4020 - type: MopItem - components: - - pos: 22.389286,-3.6267226 - parent: 1 - type: Transform -- uid: 4021 - type: FloorDrain - components: - - pos: 19.5,-4.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 4022 - type: RailingCorner - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 1 - type: Transform -- uid: 4023 - type: RailingCorner - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 1 - type: Transform -- uid: 4024 - type: SurveillanceWirelessCameraMovableEntertainment - components: - - pos: -7.5,-0.5 - parent: 1 - type: Transform -- uid: 4025 - type: RandomFoodMeal - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform -- uid: 4026 - type: DrinkGlass - components: - - pos: -0.59446716,-0.80342096 - parent: 1 - type: Transform -- uid: 4027 - type: ClothingNeckIntersexPin - components: - - pos: -0.6386776,-0.42031726 - parent: 1 - type: Transform -- uid: 4028 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-3.5 - parent: 1 - type: Transform -- uid: 4029 - type: RailingCorner - components: - - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 1 - type: Transform -- uid: 4030 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-5.5 - parent: 1 - type: Transform -- uid: 4031 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-4.5 - parent: 1 - type: Transform -- uid: 4032 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-3.5 - parent: 1 - type: Transform -- uid: 4033 - type: VendingBarDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,11.5 - parent: 1 - type: Transform -- uid: 4034 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -8.5,4.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4035 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -7.5,4.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4036 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -6.5,4.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4037 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4038 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -4.5,7.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4039 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -4.5,6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4040 - type: AirlockBarGlassLocked - components: - - pos: -9.5,5.5 - parent: 1 - type: Transform -- uid: 4041 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,8.5 - parent: 1 - type: Transform -- uid: 4042 - type: LockerBoozeFilled - components: - - pos: -6.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4043 - type: BoozeDispenser - components: - - rot: 1.5707963267948966 rad - pos: -11.5,7.5 - parent: 1 - type: Transform -- uid: 4044 - type: soda_dispenser - components: - - rot: 1.5707963267948966 rad - pos: -11.5,6.5 - parent: 1 - type: Transform -- uid: 4045 - type: TableGlass - components: - - pos: 5.5,25.5 - parent: 1 - type: Transform -- uid: 4046 - type: chem_master - components: - - pos: 2.5,21.5 - parent: 1 - type: Transform -- uid: 4047 - type: chem_master - components: - - pos: 8.5,24.5 - parent: 1 - type: Transform -- uid: 4048 - type: KitchenReagentGrinder - components: - - pos: 2.5,24.5 - parent: 1 - type: Transform -- uid: 4049 - type: TableGlass - components: - - pos: 2.5,24.5 - parent: 1 - type: Transform -- uid: 4050 - type: chem_dispenser - components: - - pos: 2.5,22.5 - parent: 1 - type: Transform -- uid: 4051 - type: chem_dispenser - components: - - pos: 7.5,24.5 - parent: 1 - type: Transform -- uid: 4052 - type: ChemistryHotplate - components: - - pos: 5.5,22.5 - parent: 1 - type: Transform -- uid: 4053 - type: TableGlass - components: - - pos: 6.5,22.5 - parent: 1 - type: Transform -- uid: 4054 - type: TableGlass - components: - - pos: 5.5,22.5 - parent: 1 - type: Transform -- uid: 4055 - type: WallReinforced - components: - - pos: 7.5,26.5 - parent: 1 - type: Transform -- uid: 4056 - type: LockerChemistryFilled - components: - - pos: 3.5,25.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4057 - type: LockerChemistryFilled - components: - - pos: 4.5,25.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4058 - type: MedicalBed - components: - - pos: 2.5,28.5 - parent: 1 - type: Transform -- uid: 4059 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 2.5,28.5 - parent: 1 - type: Transform -- uid: 4060 - type: TintedWindow - components: - - rot: -1.5707963267948966 rad - pos: 3.5,32.5 - parent: 1 - type: Transform -- uid: 4061 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 2.5,30.5 - parent: 1 - type: Transform -- uid: 4062 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 3.5,28.5 - parent: 1 - type: Transform -- uid: 4063 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 2.5,32.5 - parent: 1 - type: Transform -- uid: 4064 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 3.5,32.5 - parent: 1 - type: Transform -- uid: 4065 - type: MedicalBed - components: - - pos: 2.5,30.5 - parent: 1 - type: Transform -- uid: 4066 - type: MedicalBed - components: - - pos: 2.5,32.5 - parent: 1 - type: Transform -- uid: 4067 - type: StasisBed - components: - - pos: 2.5,34.5 - parent: 1 - type: Transform -- uid: 4068 - type: TintedWindow - components: - - rot: -1.5707963267948966 rad - pos: 3.5,28.5 - parent: 1 - type: Transform -- uid: 4069 - type: TintedWindow - components: - - rot: -1.5707963267948966 rad - pos: 3.5,34.5 - parent: 1 - type: Transform -- uid: 4070 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 3.5,34.5 - parent: 1 - type: Transform -- uid: 4071 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 20.5,27.5 - parent: 1 - type: Transform -- uid: 4072 - type: HospitalCurtainsOpen - components: - - pos: 3.5,27.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -549733.8 - state: Closing - type: Door -- uid: 4073 - type: HospitalCurtainsOpen - components: - - pos: 3.5,29.5 - parent: 1 - type: Transform -- uid: 4074 - type: HospitalCurtainsOpen - components: - - pos: 3.5,31.5 - parent: 1 - type: Transform -- uid: 4075 - type: HospitalCurtainsOpen - components: - - pos: 3.5,33.5 - parent: 1 - type: Transform -- uid: 4076 - type: SheetPlastic - components: - - pos: 9.361496,26.53074 - parent: 1 - type: Transform -- uid: 4077 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 3.5,30.5 - parent: 1 - type: Transform -- uid: 4078 - type: TintedWindow - components: - - rot: -1.5707963267948966 rad - pos: 3.5,30.5 - parent: 1 - type: Transform -- uid: 4079 - type: TableGlass - components: - - pos: 7.5,33.5 - parent: 1 - type: Transform -- uid: 4080 - type: DiseaseDiagnoser - components: - - pos: 6.5,34.5 - parent: 1 - type: Transform -- uid: 4081 - type: Vaccinator - components: - - pos: 5.5,34.5 - parent: 1 - type: Transform -- uid: 4082 - type: DisposalUnit - components: - - pos: 7.5,34.5 - parent: 1 - type: Transform -- uid: 4083 - type: VendingMachineViroDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 4.5,34.5 - parent: 1 - type: Transform -- uid: 4084 - type: TableGlass - components: - - pos: 7.5,32.5 - parent: 1 - type: Transform -- uid: 4085 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 11.5,29.5 - parent: 1 - type: Transform -- uid: 4086 - type: WallReinforced - components: - - pos: 5.5,29.5 - parent: 1 - type: Transform -- uid: 4087 - type: WallSolid - components: - - pos: 20.5,17.5 - parent: 1 - type: Transform -- uid: 4088 - type: WallSolid - components: - - pos: 20.5,18.5 - parent: 1 - type: Transform -- uid: 4089 - type: WallSolid - components: - - pos: 20.5,19.5 - parent: 1 - type: Transform -- uid: 4090 - type: WallSolid - components: - - pos: 20.5,20.5 - parent: 1 - type: Transform -- uid: 4091 - type: WallSolid - components: - - pos: 20.5,21.5 - parent: 1 - type: Transform -- uid: 4092 - type: WallSolid - components: - - pos: 20.5,22.5 - parent: 1 - type: Transform -- uid: 4093 - type: WallSolid - components: - - pos: 20.5,23.5 - parent: 1 - type: Transform -- uid: 4094 - type: WallSolid - components: - - pos: 21.5,23.5 - parent: 1 - type: Transform -- uid: 4095 - type: WallSolid - components: - - pos: 22.5,23.5 - parent: 1 - type: Transform -- uid: 4096 - type: WallSolid - components: - - pos: 23.5,23.5 - parent: 1 - type: Transform -- uid: 4097 - type: WallSolid - components: - - pos: 24.5,23.5 - parent: 1 - type: Transform -- uid: 4098 - type: WallSolid - components: - - pos: 25.5,23.5 - parent: 1 - type: Transform -- uid: 4099 - type: WallSolid - components: - - pos: 25.5,24.5 - parent: 1 - type: Transform -- uid: 4100 - type: WallSolid - components: - - pos: 26.5,24.5 - parent: 1 - type: Transform -- uid: 4101 - type: Grille - components: - - pos: -53.5,46.5 - parent: 1 - type: Transform -- uid: 4102 - type: WallSolid - components: - - pos: 26.5,26.5 - parent: 1 - type: Transform -- uid: 4103 - type: WallSolid - components: - - pos: 26.5,27.5 - parent: 1 - type: Transform -- uid: 4104 - type: WallSolid - components: - - pos: 26.5,28.5 - parent: 1 - type: Transform -- uid: 4105 - type: WallSolid - components: - - pos: 26.5,29.5 - parent: 1 - type: Transform -- uid: 4106 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 27.5,35.5 - parent: 1 - type: Transform -- uid: 4107 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 24.5,35.5 - parent: 1 - type: Transform -- uid: 4108 - type: VendingMachineSalvage - components: - - flags: SessionSpecific - type: MetaData - - pos: -36.5,28.5 - parent: 1 - type: Transform -- uid: 4109 - type: LockerSalvageSpecialistFilled - components: - - pos: -36.5,27.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4110 - type: LockerSalvageSpecialistFilled - components: - - pos: -36.5,26.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4111 - type: LockerSalvageSpecialistFilled - components: - - pos: -36.5,25.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4112 - type: SalvageMagnet - components: - - rot: -1.5707963267948966 rad - pos: -45.5,27.5 - parent: 1 - type: Transform -- uid: 4113 - type: ComputerRadar - components: - - rot: 1.5707963267948966 rad - pos: -45.5,24.5 - parent: 1 - type: Transform -- uid: 4114 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -45.5,26.5 - parent: 1 - type: Transform -- uid: 4115 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -45.5,25.5 - parent: 1 - type: Transform -- uid: 4116 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -44.5,26.5 - parent: 1 - type: Transform -- uid: 4117 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -44.5,25.5 - parent: 1 - type: Transform -- uid: 4118 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -43.5,26.5 - parent: 1 - type: Transform -- uid: 4119 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -43.5,25.5 - parent: 1 - type: Transform -- uid: 4120 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -41.5,16.5 - parent: 1 - type: Transform -- uid: 4121 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -42.5,16.5 - parent: 1 - type: Transform -- uid: 4122 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -43.5,16.5 - parent: 1 - type: Transform -- uid: 4123 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -41.5,16.5 - parent: 1 - type: Transform -- uid: 4124 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -42.5,16.5 - parent: 1 - type: Transform -- uid: 4125 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -43.5,16.5 - parent: 1 - type: Transform -- uid: 4126 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -39.5,23.5 - parent: 1 - type: Transform -- uid: 4127 - type: Rack - components: - - pos: -36.5,24.5 - parent: 1 - type: Transform -- uid: 4128 - type: OreProcessor - components: - - pos: -36.5,23.5 - parent: 1 - type: Transform -- uid: 4129 - type: TableReinforced - components: - - pos: -37.5,30.5 - parent: 1 - type: Transform -- uid: 4130 - type: TableReinforced - components: - - pos: -38.5,30.5 - parent: 1 - type: Transform -- uid: 4131 - type: TableReinforced - components: - - pos: -39.5,21.5 - parent: 1 - type: Transform -- uid: 4132 - type: TableReinforced - components: - - pos: -39.5,20.5 - parent: 1 - type: Transform -- uid: 4133 - type: TableReinforced - components: - - pos: -39.5,19.5 - parent: 1 - type: Transform -- uid: 4134 - type: OxygenCanister - components: - - pos: -39.5,22.5 - parent: 1 - type: Transform -- uid: 4135 - type: NitrogenCanister - components: - - pos: -39.5,30.5 - parent: 1 - type: Transform -- uid: 4136 - type: TableReinforced - components: - - pos: -39.5,16.5 - parent: 1 - type: Transform -- uid: 4137 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -44.5,1.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver -- uid: 4138 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -43.5,1.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver -- uid: 4139 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -42.5,1.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver -- uid: 4140 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -41.5,1.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver -- uid: 4141 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -44.5,5.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver -- uid: 4142 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -43.5,5.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver -- uid: 4143 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -42.5,5.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver -- uid: 4144 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -41.5,5.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver -- uid: 4145 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -40.5,5.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver -- uid: 4146 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -37.5,5.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9364 - Forward: - - port: Left - uid: 9364 - Off: - - port: Middle - uid: 9364 - type: SignalReceiver -- uid: 4147 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -36.5,5.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9364 - Forward: - - port: Left - uid: 9364 - Off: - - port: Middle - uid: 9364 - type: SignalReceiver -- uid: 4148 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -40.5,1.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9362 - Forward: - - port: Left - uid: 9362 - Off: - - port: Middle - uid: 9362 - type: SignalReceiver -- uid: 4149 - type: TableReinforced - components: - - pos: -33.5,-1.5 - parent: 1 - type: Transform -- uid: 4150 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 1 - type: Transform -- uid: 4151 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -33.5,-0.5 - parent: 1 - type: Transform -- uid: 4152 - type: ComputerCargoOrders - components: - - rot: 1.5707963267948966 rad - pos: -38.5,7.5 - parent: 1 - type: Transform -- uid: 4153 - type: ComputerCargoShuttle - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-1.5 - parent: 1 - type: Transform -- uid: 4154 - type: ComputerShuttleCargo - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-0.5 - parent: 1 - type: Transform -- uid: 4155 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-2.5 - parent: 1 - type: Transform -- uid: 4156 - type: SignCargo - components: - - pos: -33.5,3.5 - parent: 1 - type: Transform -- uid: 4157 - type: SignCargoDock - components: - - pos: -44.5,3.5 - parent: 1 - type: Transform -- uid: 4158 - type: AirlockJanitorLocked - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-6.5 - parent: 1 - type: Transform -- uid: 4159 - type: Autolathe - components: - - pos: -34.5,1.5 - parent: 1 - type: Transform -- uid: 4160 - type: AirlockCargoGlassLocked - components: - - pos: -39.5,12.5 - parent: 1 - type: Transform -- uid: 4161 - type: AirlockGlass - components: - - pos: 20.5,15.5 - parent: 1 - type: Transform -- uid: 4162 - type: WaterCooler - components: - - pos: -40.5,11.5 - parent: 1 - type: Transform -- uid: 4163 - type: FirelockGlass - components: - - pos: -39.5,12.5 - parent: 1 - type: Transform -- uid: 4164 - type: Catwalk - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform -- uid: 4165 - type: Catwalk - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform -- uid: 4166 - type: Catwalk - components: - - pos: -3.5,-15.5 - parent: 1 - type: Transform -- uid: 4167 - type: AirlockExternalAtmosphericsLocked - components: - - pos: 1.5,-15.5 - parent: 1 - type: Transform -- uid: 4168 - type: Catwalk - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform -- uid: 4169 - type: Catwalk - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform -- uid: 4170 - type: Catwalk - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform -- uid: 4171 - type: AirlockExternalAtmosphericsLocked - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform -- uid: 4172 - type: Catwalk - components: - - pos: 2.5,-15.5 - parent: 1 - type: Transform -- uid: 4173 - type: Catwalk - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform -- uid: 4174 - type: Catwalk - components: - - pos: 4.5,-15.5 - parent: 1 - type: Transform -- uid: 4175 - type: Bed - components: - - pos: 11.5,40.5 - parent: 1 - type: Transform -- uid: 4176 - type: Bed - components: - - pos: 11.5,46.5 - parent: 1 - type: Transform -- uid: 4177 - type: Bed - components: - - pos: 18.5,47.5 - parent: 1 - type: Transform -- uid: 4178 - type: Bed - components: - - pos: 46.5,48.5 - parent: 1 - type: Transform -- uid: 4179 - type: LockerEngineerFilled - components: - - pos: 4.5,-17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4180 - type: LockerEngineerFilled - components: - - pos: 5.5,-17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4181 - type: LockerEngineerFilled - components: - - pos: 6.5,-17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4182 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,-17.5 - parent: 1 - type: Transform -- uid: 4183 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,-17.5 - parent: 1 - type: Transform -- uid: 4184 - type: Rack - components: - - pos: 10.5,-18.5 - parent: 1 - type: Transform -- uid: 4185 - type: CrateEngineeringCableBulk - components: - - pos: 13.5,-18.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4186 - type: SubstationBasic - components: - - pos: 8.5,-17.5 - parent: 1 - type: Transform -- uid: 4187 - type: SubstationBasic - components: - - pos: 8.5,-18.5 - parent: 1 - type: Transform -- uid: 4188 - type: TableReinforced - components: - - pos: 4.5,-21.5 - parent: 1 - type: Transform -- uid: 4189 - type: TableReinforced - components: - - pos: 5.5,-21.5 - parent: 1 - type: Transform -- uid: 4190 - type: TableReinforced - components: - - pos: 6.5,-21.5 - parent: 1 - type: Transform -- uid: 4191 - type: ComputerAlert - components: - - pos: 6.5,-11.5 - parent: 1 - type: Transform -- uid: 4192 - type: ComputerPowerMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-13.5 - parent: 1 - type: Transform -- uid: 4193 - type: TableReinforced - components: - - pos: 7.5,-11.5 - parent: 1 - type: Transform -- uid: 4194 - type: ComputerSolarControl - components: - - rot: 3.141592653589793 rad - pos: 8.5,-15.5 - parent: 1 - type: Transform -- uid: 4195 - type: TableReinforced - components: - - pos: 9.5,-15.5 - parent: 1 - type: Transform -- uid: 4196 - type: TableReinforced - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform -- uid: 4197 - type: TableReinforced - components: - - pos: 13.5,-12.5 - parent: 1 - type: Transform -- uid: 4198 - type: TableReinforced - components: - - pos: 13.5,-14.5 - parent: 1 - type: Transform -- uid: 4199 - type: BedsheetCE - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-23.5 - parent: 1 - type: Transform -- uid: 4200 - type: TableReinforced - components: - - pos: 13.5,-11.5 - parent: 1 - type: Transform -- uid: 4201 - type: WallReinforced - components: - - pos: 12.5,-10.5 - parent: 1 - type: Transform -- uid: 4202 - type: WallReinforced - components: - - pos: -13.5,-10.5 - parent: 1 - type: Transform -- uid: 4203 - type: TableReinforced - components: - - pos: 12.5,-11.5 - parent: 1 - type: Transform -- uid: 4204 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 1 - type: Transform -- uid: 4205 - type: BlastDoorOpen - components: - - pos: 14.5,-23.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -45524.54 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17648 - type: SignalReceiver -- uid: 4206 - type: ShuttleConsoleCircuitboard - components: - - pos: 18.514778,-22.284924 - parent: 1 - type: Transform -- uid: 4207 - type: CircuitImprinterMachineCircuitboard - components: - - pos: 18.52377,-24.42035 - parent: 1 - type: Transform -- uid: 4208 - type: BoozeDispenserMachineCircuitboard - components: - - pos: 18.665758,-21.968855 - parent: 1 - type: Transform -- uid: 4209 - type: ParticleAcceleratorComputerCircuitboard - components: - - pos: 18.63736,-21.27349 - parent: 1 - type: Transform -- uid: 4210 - type: CommsComputerCircuitboard - components: - - pos: 17.606056,-21.376692 - parent: 1 - type: Transform -- uid: 4211 - type: DawInstrumentMachineCircuitboard - components: - - pos: 17.549261,-25.435349 - parent: 1 - type: Transform -- uid: 4212 - type: SecurityTechFabCircuitboard - components: - - pos: 16.470152,-24.41359 - parent: 1 - type: Transform -- uid: 4213 - type: SpaceVillainArcadeComputerCircuitboard - components: - - pos: 16.583744,-22.398453 - parent: 1 - type: Transform -- uid: 4214 - type: Autolathe - components: - - pos: 13.5,-15.5 - parent: 1 - type: Transform -- uid: 4215 - type: GeneratorPlasma - components: - - pos: 9.5,-26.5 - parent: 1 - type: Transform -- uid: 4216 - type: ReinforcedWindow - components: - - pos: 10.5,-29.5 - parent: 1 - type: Transform -- uid: 4217 - type: GeneratorPlasma - components: - - pos: 9.5,-25.5 - parent: 1 - type: Transform -- uid: 4218 - type: TableReinforced - components: - - pos: 11.5,-37.5 - parent: 1 - type: Transform -- uid: 4219 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,-37.5 - parent: 1 - type: Transform -- uid: 4220 - type: VendingMachineHydrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,11.5 - parent: 1 - type: Transform -- uid: 4221 - type: AirlockFreezerKitchenHydroLocked - components: - - pos: 11.5,4.5 - parent: 1 - type: Transform -- uid: 4222 - type: hydroponicsTray - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform -- uid: 4223 - type: hydroponicsTray - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform -- uid: 4224 - type: hydroponicsTray - components: - - pos: 7.5,7.5 - parent: 1 - type: Transform -- uid: 4225 - type: hydroponicsTray - components: - - pos: 9.5,9.5 - parent: 1 - type: Transform -- uid: 4226 - type: hydroponicsTray - components: - - pos: 9.5,8.5 - parent: 1 - type: Transform -- uid: 4227 - type: hydroponicsTray - components: - - pos: 9.5,7.5 - parent: 1 - type: Transform -- uid: 4228 - type: hydroponicsTray - components: - - pos: 7.5,6.5 - parent: 1 - type: Transform -- uid: 4229 - type: hydroponicsTray - components: - - pos: 9.5,6.5 - parent: 1 - type: Transform -- uid: 4230 - type: AirlockMaintHydroLocked - components: - - pos: 12.5,6.5 - parent: 1 - type: Transform -- uid: 4231 - type: AirlockMaintHydroLocked - components: - - pos: 14.5,7.5 - parent: 1 - type: Transform -- uid: 4232 - type: LockerBotanistFilled - components: - - pos: 14.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4233 - type: LockerBotanistFilled - components: - - pos: 15.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4234 - type: HydroponicsToolSpade - components: - - pos: 8.610393,11.560773 - parent: 1 - type: Transform -- uid: 4235 - type: ClothingHandsGlovesLeather - components: - - pos: 15.58796,8.644276 - parent: 1 - type: Transform -- uid: 4236 - type: TableGlass - components: - - pos: 5.5,7.5 - parent: 1 - type: Transform -- uid: 4237 - type: ClothingHeadHatPumpkin - components: - - pos: 15.36078,8.743613 - parent: 1 - type: Transform -- uid: 4238 - type: TableGlass - components: - - pos: 5.5,6.5 - parent: 1 - type: Transform -- uid: 4239 - type: HydroponicsToolHatchet - components: - - pos: 8.448287,11.575508 - parent: 1 - type: Transform -- uid: 4240 - type: TableReinforced - components: - - pos: 13.5,8.5 - parent: 1 - type: Transform -- uid: 4241 - type: TableReinforced - components: - - pos: 15.5,8.5 - parent: 1 - type: Transform -- uid: 4242 - type: ClothingBeltPlant - components: - - pos: 15.602159,8.388835 - parent: 1 - type: Transform -- uid: 4243 - type: ClothingOuterApronBotanist - components: - - pos: 5.6728125,7.328458 - parent: 1 - type: Transform -- uid: 4244 - type: Grille - components: - - pos: -35.5,8.5 - parent: 1 - type: Transform -- uid: 4245 - type: Window - components: - - pos: -35.5,8.5 - parent: 1 - type: Transform -- uid: 4246 - type: Window - components: - - pos: -33.5,10.5 - parent: 1 - type: Transform -- uid: 4247 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4248 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-9.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4249 - type: PottedPlantRandomPlastic - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform -- uid: 4250 - type: PottedPlantRandom - components: - - pos: -30.5,8.5 - parent: 1 - type: Transform -- uid: 4251 - type: SpawnPointObserver - components: - - pos: -0.5,15.5 - parent: 1 - type: Transform -- uid: 4252 - type: SpawnPointObserver - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform -- uid: 4253 - type: SpawnPointAssistant - components: - - pos: 11.5,41.5 - parent: 1 - type: Transform -- uid: 4254 - type: SpawnPointAssistant - components: - - pos: 11.5,45.5 - parent: 1 - type: Transform -- uid: 4255 - type: SpawnPointAssistant - components: - - pos: 17.5,47.5 - parent: 1 - type: Transform -- uid: 4256 - type: ComputerId - components: - - pos: -3.5,80.5 - parent: 1 - type: Transform -- uid: 4257 - type: ComputerRadar - components: - - pos: -1.5,80.5 - parent: 1 - type: Transform -- uid: 4258 - type: TableReinforced - components: - - pos: -0.5,79.5 - parent: 1 - type: Transform -- uid: 4259 - type: ComputerSurveillanceCameraMonitor - components: - - pos: 2.5,80.5 - parent: 1 - type: Transform -- uid: 4260 - type: ComputerSurveillanceWirelessCameraMonitor - components: - - pos: 0.5,80.5 - parent: 1 - type: Transform -- uid: 4261 - type: TableReinforced - components: - - pos: -3.5,82.5 - parent: 1 - type: Transform -- uid: 4262 - type: ComputerComms - components: - - pos: -2.5,80.5 - parent: 1 - type: Transform -- uid: 4263 - type: TableReinforced - components: - - pos: 3.5,80.5 - parent: 1 - type: Transform -- uid: 4264 - type: TableReinforced - components: - - pos: 3.5,79.5 - parent: 1 - type: Transform -- uid: 4265 - type: TableReinforced - components: - - pos: 2.5,83.5 - parent: 1 - type: Transform -- uid: 4266 - type: TableReinforced - components: - - pos: 2.5,82.5 - parent: 1 - type: Transform -- uid: 4267 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -2.5,76.5 - parent: 1 - type: Transform -- uid: 4268 - type: ComputerSolarControl - components: - - pos: -5.5,82.5 - parent: 1 - type: Transform -- uid: 4269 - type: ComputerPowerMonitoring - components: - - pos: -4.5,82.5 - parent: 1 - type: Transform -- uid: 4270 - type: ComputerAlert - components: - - pos: -6.5,82.5 - parent: 1 - type: Transform -- uid: 4271 - type: ComputerCrewMonitoring - components: - - pos: 3.5,82.5 - parent: 1 - type: Transform -- uid: 4272 - type: ClosetEmergencyFilledRandom - components: - - pos: -8.5,77.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4273 - type: ComputerAlert - components: - - pos: 5.5,82.5 - parent: 1 - type: Transform -- uid: 4274 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: -2.5,77.5 - parent: 1 - type: Transform -- uid: 4275 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: 1.5,77.5 - parent: 1 - type: Transform -- uid: 4276 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -7.5,80.5 - parent: 1 - type: Transform -- uid: 4277 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -7.5,79.5 - parent: 1 - type: Transform -- uid: 4278 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 6.5,80.5 - parent: 1 - type: Transform -- uid: 4279 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 6.5,79.5 - parent: 1 - type: Transform -- uid: 4280 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -8.5,76.5 - parent: 1 - type: Transform -- uid: 4281 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 7.5,77.5 - parent: 1 - type: Transform -- uid: 4282 - type: BlastDoorBridgeOpen - components: - - pos: -9.5,76.5 - parent: 1 - type: Transform -- uid: 4283 - type: BlastDoorBridgeOpen - components: - - pos: -9.5,77.5 - parent: 1 - type: Transform -- uid: 4284 - type: BlastDoorBridgeOpen - components: - - pos: -8.5,79.5 - parent: 1 - type: Transform -- uid: 4285 - type: BlastDoorBridgeOpen - components: - - pos: -8.5,80.5 - parent: 1 - type: Transform -- uid: 4286 - type: BlastDoorBridgeOpen - components: - - pos: -7.5,82.5 - parent: 1 - type: Transform -- uid: 4287 - type: BlastDoorBridgeOpen - components: - - pos: -6.5,83.5 - parent: 1 - type: Transform -- uid: 4288 - type: BlastDoorBridgeOpen - components: - - pos: -5.5,83.5 - parent: 1 - type: Transform -- uid: 4289 - type: BlastDoorBridgeOpen - components: - - pos: -3.5,84.5 - parent: 1 - type: Transform -- uid: 4290 - type: BlastDoorBridgeOpen - components: - - pos: -2.5,84.5 - parent: 1 - type: Transform -- uid: 4291 - type: BlastDoorBridgeOpen - components: - - pos: -1.5,84.5 - parent: 1 - type: Transform -- uid: 4292 - type: BlastDoorBridgeOpen - components: - - pos: 0.5,84.5 - parent: 1 - type: Transform -- uid: 4293 - type: BlastDoorBridgeOpen - components: - - pos: 1.5,84.5 - parent: 1 - type: Transform -- uid: 4294 - type: BlastDoorBridgeOpen - components: - - pos: 2.5,84.5 - parent: 1 - type: Transform -- uid: 4295 - type: BlastDoorBridgeOpen - components: - - pos: 5.5,83.5 - parent: 1 - type: Transform -- uid: 4296 - type: BlastDoorBridgeOpen - components: - - pos: 4.5,83.5 - parent: 1 - type: Transform -- uid: 4297 - type: BlastDoorBridgeOpen - components: - - pos: 6.5,82.5 - parent: 1 - type: Transform -- uid: 4298 - type: BlastDoorBridgeOpen - components: - - pos: 7.5,80.5 - parent: 1 - type: Transform -- uid: 4299 - type: BlastDoorBridgeOpen - components: - - pos: 7.5,79.5 - parent: 1 - type: Transform -- uid: 4300 - type: BlastDoorBridgeOpen - components: - - pos: 8.5,77.5 - parent: 1 - type: Transform -- uid: 4301 - type: BlastDoorBridgeOpen - components: - - pos: 8.5,76.5 - parent: 1 - type: Transform -- uid: 4302 - type: BlastDoorBridgeOpen - components: - - pos: 0.5,72.5 - parent: 1 - type: Transform -- uid: 4303 - type: BlastDoorBridgeOpen - components: - - pos: -0.5,72.5 - parent: 1 - type: Transform -- uid: 4304 - type: BlastDoorBridgeOpen - components: - - pos: -1.5,72.5 - parent: 1 - type: Transform -- uid: 4305 - type: SignalButtonBridge - components: - - pos: -0.5,79.5 - parent: 1 - type: Transform -- uid: 4306 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: -2.5,79.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4307 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: 1.5,79.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4308 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: -2.5,82.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4309 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: 1.5,82.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4310 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: -5.5,81.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4311 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: 4.5,81.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4312 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: -1.5,82.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4313 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: 0.5,82.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4314 - type: ToiletDirtyWater - components: - - rot: -1.5707963267948966 rad - pos: -37.5,49.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4315 - type: HospitalCurtainsOpen - components: - - pos: -38.5,49.5 - parent: 1 - type: Transform -- uid: 4316 - type: FloorDrain - components: - - pos: -38.5,49.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 4317 - type: Bed - components: - - pos: -38.5,42.5 - parent: 1 - type: Transform -- uid: 4318 - type: Bed - components: - - pos: -38.5,46.5 - parent: 1 - type: Transform -- uid: 4319 - type: BedsheetSyndie - components: - - pos: -38.5,46.5 - parent: 1 - type: Transform -- uid: 4320 - type: hydroponicsSoil - components: - - pos: -34.5,45.5 - parent: 1 - type: Transform -- uid: 4321 - type: hydroponicsSoil - components: - - pos: -34.5,44.5 - parent: 1 - type: Transform -- uid: 4322 - type: hydroponicsSoil - components: - - pos: -32.5,45.5 - parent: 1 - type: Transform -- uid: 4323 - type: hydroponicsSoil - components: - - pos: -32.5,44.5 - parent: 1 - type: Transform -- uid: 4324 - type: Table - components: - - pos: -34.5,49.5 - parent: 1 - type: Transform -- uid: 4325 - type: Table - components: - - pos: -33.5,49.5 - parent: 1 - type: Transform -- uid: 4326 - type: Table - components: - - pos: -32.5,49.5 - parent: 1 - type: Transform -- uid: 4327 - type: KitchenMicrowave - components: - - pos: -34.5,49.5 - parent: 1 - type: Transform -- uid: 4328 - type: KitchenReagentGrinder - components: - - pos: -32.5,49.5 - parent: 1 - type: Transform -- uid: 4329 - type: VendingMachineSeedsUnlocked - components: - - flags: SessionSpecific - type: MetaData - - pos: -35.5,49.5 - parent: 1 - type: Transform -- uid: 4330 - type: SeedExtractor - components: - - pos: -31.5,49.5 - parent: 1 - type: Transform -- uid: 4331 - type: WaterTankFull - components: - - pos: -30.5,49.5 - parent: 1 - type: Transform -- uid: 4332 - type: hydroponicsSoil - components: - - pos: -34.5,46.5 - parent: 1 - type: Transform -- uid: 4333 - type: hydroponicsSoil - components: - - pos: -32.5,46.5 - parent: 1 - type: Transform -- uid: 4334 - type: OperatingTable - components: - - pos: -21.5,33.5 - parent: 1 - type: Transform -- uid: 4335 - type: TableReinforcedGlass - components: - - pos: -21.5,34.5 - parent: 1 - type: Transform -- uid: 4336 - type: computerBodyScanner - components: - - rot: 1.5707963267948966 rad - pos: -21.5,32.5 - parent: 1 - type: Transform -- uid: 4337 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -17.5,34.5 - parent: 1 - type: Transform -- uid: 4338 - type: FirelockGlass - components: - - pos: -19.5,18.5 - parent: 1 - type: Transform -- uid: 4339 - type: VendingMachineRoboDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -16.5,30.5 - parent: 1 - type: Transform -- uid: 4340 - type: FirelockGlass - components: - - pos: -22.5,23.5 - parent: 1 - type: Transform -- uid: 4341 - type: FirelockGlass - components: - - pos: -8.5,22.5 - parent: 1 - type: Transform -- uid: 4342 - type: WallReinforced - components: - - pos: -15.5,29.5 - parent: 1 - type: Transform -- uid: 4343 - type: FirelockGlass - components: - - pos: -10.5,17.5 - parent: 1 - type: Transform -- uid: 4344 - type: FirelockGlass - components: - - pos: -19.5,19.5 - parent: 1 - type: Transform -- uid: 4345 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: -30.5,20.5 - parent: 1 - type: Transform -- uid: 4346 - type: FaxMachineBase - components: - - pos: -34.5,9.5 - parent: 1 - type: Transform - - name: Mail Room - type: FaxMachine -- uid: 4347 - type: LockerEvidence - components: - - pos: 41.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4348 - type: LockerEvidence - components: - - pos: 42.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4349 - type: EncryptionKeyEngineering - components: - - flags: InContainer - type: MetaData - - parent: 3982 - type: Transform - - canCollide: False - type: Physics -- uid: 4350 - type: WallReinforced - components: - - pos: 23.5,-12.5 - parent: 1 - type: Transform -- uid: 4351 - type: LockerEvidence - components: - - pos: -5.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4352 - type: LockerEvidence - components: - - pos: -8.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4353 - type: LockerEvidence - components: - - pos: -11.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4354 - type: LockerEvidence - components: - - pos: -14.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4355 - type: SecurityTechFab - components: - - pos: -6.5,64.5 - parent: 1 - type: Transform -- uid: 4356 - type: Rack - components: - - pos: -7.5,64.5 - parent: 1 - type: Transform -- uid: 4357 - type: Rack - components: - - pos: -9.5,64.5 - parent: 1 - type: Transform -- uid: 4358 - type: Rack - components: - - pos: -9.5,63.5 - parent: 1 - type: Transform -- uid: 4359 - type: Rack - components: - - pos: -9.5,62.5 - parent: 1 - type: Transform -- uid: 4360 - type: Rack - components: - - pos: -4.5,64.5 - parent: 1 - type: Transform -- uid: 4361 - type: Rack - components: - - pos: -4.5,63.5 - parent: 1 - type: Transform -- uid: 4362 - type: Rack - components: - - pos: -4.5,62.5 - parent: 1 - type: Transform -- uid: 4363 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -4.5,61.5 - parent: 1 - type: Transform -- uid: 4364 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -5.5,61.5 - parent: 1 - type: Transform -- uid: 4365 - type: Rack - components: - - pos: -4.5,61.5 - parent: 1 - type: Transform -- uid: 4366 - type: Rack - components: - - pos: -4.5,60.5 - parent: 1 - type: Transform -- uid: 4367 - type: Rack - components: - - pos: -4.5,59.5 - parent: 1 - type: Transform -- uid: 4368 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -4.5,59.5 - parent: 1 - type: Transform -- uid: 4369 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -4.5,60.5 - parent: 1 - type: Transform -- uid: 4370 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -4.5,61.5 - parent: 1 - type: Transform -- uid: 4371 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: -6.5,61.5 - parent: 1 - type: Transform -- uid: 4372 - type: WindoorArmoryLocked - components: - - rot: -1.5707963267948966 rad - pos: -4.5,62.5 - parent: 1 - type: Transform -- uid: 4373 - type: WindoorArmoryLocked - components: - - rot: -1.5707963267948966 rad - pos: -4.5,63.5 - parent: 1 - type: Transform -- uid: 4374 - type: WindoorArmoryLocked - components: - - rot: -1.5707963267948966 rad - pos: -4.5,64.5 - parent: 1 - type: Transform -- uid: 4375 - type: WindoorArmoryLocked - components: - - rot: 1.5707963267948966 rad - pos: -9.5,62.5 - parent: 1 - type: Transform -- uid: 4376 - type: PlasmaReinforcedWindowDirectional - components: - - pos: -9.5,63.5 - parent: 1 - type: Transform -- uid: 4377 - type: WindoorArmoryLocked - components: - - rot: 1.5707963267948966 rad - pos: -9.5,63.5 - parent: 1 - type: Transform -- uid: 4378 - type: WindoorArmoryLocked - components: - - rot: 1.5707963267948966 rad - pos: -9.5,64.5 - parent: 1 - type: Transform -- uid: 4379 - type: PlasmaReinforcedWindowDirectional - components: - - pos: -9.5,64.5 - parent: 1 - type: Transform -- uid: 4380 - type: PlasmaReinforcedWindowDirectional - components: - - pos: -4.5,63.5 - parent: 1 - type: Transform -- uid: 4381 - type: PlasmaReinforcedWindowDirectional - components: - - pos: -4.5,64.5 - parent: 1 - type: Transform -- uid: 4382 - type: PortableFlasher - components: - - pos: -7.5,62.5 - parent: 1 - type: Transform -- uid: 4383 - type: DeployableBarrier - components: - - anchored: False - pos: -19.5,44.5 - parent: 1 - type: Transform -- uid: 4384 - type: DeployableBarrier - components: - - anchored: False - pos: -19.5,45.5 - parent: 1 - type: Transform -- uid: 4385 - type: VendingMachineSec - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,60.5 - parent: 1 - type: Transform -- uid: 4386 - type: DeployableBarrier - components: - - anchored: False - pos: -10.5,60.5 - parent: 1 - type: Transform -- uid: 4387 - type: Bed - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform -- uid: 4388 - type: Fireplace - components: - - pos: 25.5,11.5 - parent: 1 - type: Transform -- uid: 4389 - type: DisposalUnit - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform -- uid: 4390 - type: KitchenMicrowave - components: - - pos: 7.5,-2.5 - parent: 1 - type: Transform -- uid: 4391 - type: TelecomServer - components: - - pos: 16.5,-15.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 4569 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 4392 - type: ClosetFireFilled - components: - - pos: 17.5,-30.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4393 - type: PortableScrubber - components: - - pos: -9.5,25.5 - parent: 1 - type: Transform -- uid: 4394 - type: VendingMachineDinnerware - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,-3.5 - parent: 1 - type: Transform -- uid: 4395 - type: WindoorHydroponicsLocked - components: - - pos: 9.5,12.5 - parent: 1 - type: Transform -- uid: 4396 - type: TableGlass - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform -- uid: 4397 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 5.5,3.5 - parent: 1 - type: Transform -- uid: 4398 - type: VendingMachineChefDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,-0.5 - parent: 1 - type: Transform -- uid: 4399 - type: TableWood - components: - - pos: 29.5,49.5 - parent: 1 - type: Transform -- uid: 4400 - type: TableWood - components: - - pos: 28.5,49.5 - parent: 1 - type: Transform -- uid: 4401 - type: AltarSpawner - components: - - pos: 30.5,47.5 - parent: 1 - type: Transform -- uid: 4402 - type: GasPipeStraight - components: - - pos: 31.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4403 - type: Crematorium - components: - - pos: 32.5,56.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4404 - type: TableReinforcedGlass - components: - - pos: 31.5,56.5 - parent: 1 - type: Transform -- uid: 4405 - type: TableReinforcedGlass - components: - - pos: 33.5,56.5 - parent: 1 - type: Transform -- uid: 4406 - type: Grille - components: - - pos: 3.5,65.5 - parent: 1 - type: Transform -- uid: 4407 - type: WallReinforced - components: - - pos: -23.5,-19.5 - parent: 1 - type: Transform -- uid: 4408 - type: GravityGenerator - components: - - pos: -22.5,-16.5 - parent: 1 - type: Transform - - charge: 99 - type: GravityGenerator - - radius: 174 - type: PointLight -- uid: 4409 - type: Grille - components: - - pos: 29.5,42.5 - parent: 1 - type: Transform -- uid: 4410 - type: Grille - components: - - pos: 29.5,39.5 - parent: 1 - type: Transform -- uid: 4411 - type: Grille - components: - - pos: 32.5,42.5 - parent: 1 - type: Transform -- uid: 4412 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 32.5,39.5 - parent: 1 - type: Transform -- uid: 4413 - type: Window - components: - - pos: 29.5,39.5 - parent: 1 - type: Transform -- uid: 4414 - type: Window - components: - - pos: 29.5,42.5 - parent: 1 - type: Transform -- uid: 4415 - type: Window - components: - - pos: 32.5,42.5 - parent: 1 - type: Transform -- uid: 4416 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4417 - type: Grille - components: - - pos: 13.5,27.5 - parent: 1 - type: Transform -- uid: 4418 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 14.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4419 - type: Grille - components: - - pos: 15.5,30.5 - parent: 1 - type: Transform -- uid: 4420 - type: ReinforcedWindow - components: - - pos: 15.5,30.5 - parent: 1 - type: Transform -- uid: 4421 - type: Grille - components: - - pos: 13.5,32.5 - parent: 1 - type: Transform -- uid: 4422 - type: BedsheetCMO - components: - - pos: 14.5,34.5 - parent: 1 - type: Transform -- uid: 4423 - type: Bed - components: - - pos: 14.5,34.5 - parent: 1 - type: Transform -- uid: 4424 - type: LockerChiefMedicalOfficerFilled - components: - - pos: 16.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4425 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 9.5,-6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4426 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 10.5,-6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4427 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 11.5,-6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4428 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -29.5,34.5 - parent: 1 - type: Transform -- uid: 4429 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -29.5,29.5 - parent: 1 - type: Transform -- uid: 4430 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -28.5,35.5 - parent: 1 - type: Transform -- uid: 4431 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -27.5,35.5 - parent: 1 - type: Transform -- uid: 4432 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -28.5,35.5 - parent: 1 - type: Transform -- uid: 4433 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -27.5,35.5 - parent: 1 - type: Transform -- uid: 4434 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -29.5,34.5 - parent: 1 - type: Transform -- uid: 4435 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -29.5,29.5 - parent: 1 - type: Transform -- uid: 4436 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: -26.5,34.5 - parent: 1 - type: Transform -- uid: 4437 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: -27.5,34.5 - parent: 1 - type: Transform -- uid: 4438 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: -28.5,34.5 - parent: 1 - type: Transform -- uid: 4439 - type: TableReinforced - components: - - pos: -28.5,29.5 - parent: 1 - type: Transform -- uid: 4440 - type: TableReinforced - components: - - pos: -27.5,29.5 - parent: 1 - type: Transform -- uid: 4441 - type: TableReinforced - components: - - pos: -26.5,29.5 - parent: 1 - type: Transform -- uid: 4442 - type: Rack - components: - - pos: -28.5,32.5 - parent: 1 - type: Transform -- uid: 4443 - type: Rack - components: - - pos: -28.5,31.5 - parent: 1 - type: Transform -- uid: 4444 - type: TableWood - components: - - pos: -35.5,54.5 - parent: 1 - type: Transform -- uid: 4445 - type: TableWood - components: - - pos: -34.5,54.5 - parent: 1 - type: Transform -- uid: 4446 - type: TableWood - components: - - pos: -33.5,54.5 - parent: 1 - type: Transform -- uid: 4447 - type: TableWood - components: - - pos: -32.5,54.5 - parent: 1 - type: Transform -- uid: 4448 - type: TableWood - components: - - pos: -32.5,55.5 - parent: 1 - type: Transform -- uid: 4449 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: -35.5,56.5 - parent: 1 - type: Transform -- uid: 4450 - type: TableWood - components: - - pos: -34.5,56.5 - parent: 1 - type: Transform -- uid: 4451 - type: BoozeDispenser - components: - - pos: -34.5,56.5 - parent: 1 - type: Transform -- uid: 4452 - type: UprightPianoInstrument - components: - - rot: 1.5707963267948966 rad - pos: -27.5,52.5 - parent: 1 - type: Transform -- uid: 4453 - type: Barricade - components: - - pos: -30.5,55.5 - parent: 1 - type: Transform -- uid: 4454 - type: Barricade - components: - - pos: -31.5,52.5 - parent: 1 - type: Transform -- uid: 4455 - type: Barricade - components: - - pos: -33.5,55.5 - parent: 1 - type: Transform -- uid: 4456 - type: Barricade - components: - - pos: -35.5,55.5 - parent: 1 - type: Transform -- uid: 4457 - type: Barricade - components: - - pos: -27.5,56.5 - parent: 1 - type: Transform -- uid: 4458 - type: Barricade - components: - - pos: -26.5,57.5 - parent: 1 - type: Transform -- uid: 4459 - type: WallReinforced - components: - - pos: -36.5,53.5 - parent: 1 - type: Transform -- uid: 4460 - type: TableWood - components: - - pos: -29.5,53.5 - parent: 1 - type: Transform -- uid: 4461 - type: TableWood - components: - - pos: -29.5,56.5 - parent: 1 - type: Transform -- uid: 4462 - type: TableWood - components: - - pos: -33.5,52.5 - parent: 1 - type: Transform -- uid: 4463 - type: LockerHeadOfSecurityFilled - components: - - pos: -16.5,60.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4464 - type: Grille - components: - - pos: -51.5,49.5 - parent: 1 - type: Transform -- uid: 4465 - type: Grille - components: - - pos: 20.5,39.5 - parent: 1 - type: Transform -- uid: 4466 - type: Grille - components: - - pos: 19.5,39.5 - parent: 1 - type: Transform -- uid: 4467 - type: Grille - components: - - pos: 21.5,39.5 - parent: 1 - type: Transform -- uid: 4468 - type: Window - components: - - pos: 19.5,39.5 - parent: 1 - type: Transform -- uid: 4469 - type: Window - components: - - pos: 20.5,39.5 - parent: 1 - type: Transform -- uid: 4470 - type: Window - components: - - pos: 21.5,39.5 - parent: 1 - type: Transform -- uid: 4471 - type: Grille - components: - - pos: -40.5,-13.5 - parent: 1 - type: Transform -- uid: 4472 - type: WallReinforced - components: - - pos: -39.5,-14.5 - parent: 1 - type: Transform -- uid: 4473 - type: Grille - components: - - pos: -39.5,-16.5 - parent: 1 - type: Transform -- uid: 4474 - type: Grille - components: - - pos: -39.5,-17.5 - parent: 1 - type: Transform -- uid: 4475 - type: Grille - components: - - pos: -37.5,-19.5 - parent: 1 - type: Transform -- uid: 4476 - type: Grille - components: - - pos: -37.5,-20.5 - parent: 1 - type: Transform -- uid: 4477 - type: Grille - components: - - pos: -37.5,-21.5 - parent: 1 - type: Transform -- uid: 4478 - type: Grille - components: - - pos: -36.5,-22.5 - parent: 1 - type: Transform -- uid: 4479 - type: Grille - components: - - pos: -35.5,-22.5 - parent: 1 - type: Transform -- uid: 4480 - type: Grille - components: - - pos: -34.5,-23.5 - parent: 1 - type: Transform -- uid: 4481 - type: Grille - components: - - pos: -34.5,-24.5 - parent: 1 - type: Transform -- uid: 4482 - type: Grille - components: - - pos: -33.5,-25.5 - parent: 1 - type: Transform -- uid: 4483 - type: Grille - components: - - pos: -32.5,-25.5 - parent: 1 - type: Transform -- uid: 4484 - type: Grille - components: - - pos: -31.5,-25.5 - parent: 1 - type: Transform -- uid: 4485 - type: Grille - components: - - pos: -29.5,-27.5 - parent: 1 - type: Transform -- uid: 4486 - type: Grille - components: - - pos: -28.5,-27.5 - parent: 1 - type: Transform -- uid: 4487 - type: Grille - components: - - pos: -26.5,-27.5 - parent: 1 - type: Transform -- uid: 4488 - type: Grille - components: - - pos: -25.5,-27.5 - parent: 1 - type: Transform -- uid: 4489 - type: ReinforcedWindow - components: - - pos: -41.5,-11.5 - parent: 1 - type: Transform -- uid: 4490 - type: Grille - components: - - pos: -41.5,-11.5 - parent: 1 - type: Transform -- uid: 4491 - type: ReinforcedWindow - components: - - pos: -39.5,-16.5 - parent: 1 - type: Transform -- uid: 4492 - type: ReinforcedWindow - components: - - pos: -39.5,-17.5 - parent: 1 - type: Transform -- uid: 4493 - type: ReinforcedWindow - components: - - pos: -37.5,-19.5 - parent: 1 - type: Transform -- uid: 4494 - type: ReinforcedWindow - components: - - pos: -37.5,-20.5 - parent: 1 - type: Transform -- uid: 4495 - type: ReinforcedWindow - components: - - pos: -37.5,-21.5 - parent: 1 - type: Transform -- uid: 4496 - type: ReinforcedWindow - components: - - pos: -36.5,-22.5 - parent: 1 - type: Transform -- uid: 4497 - type: ReinforcedWindow - components: - - pos: -35.5,-22.5 - parent: 1 - type: Transform -- uid: 4498 - type: ReinforcedWindow - components: - - pos: -34.5,-23.5 - parent: 1 - type: Transform -- uid: 4499 - type: ReinforcedWindow - components: - - pos: -34.5,-24.5 - parent: 1 - type: Transform -- uid: 4500 - type: ReinforcedWindow - components: - - pos: -33.5,-25.5 - parent: 1 - type: Transform -- uid: 4501 - type: ReinforcedWindow - components: - - pos: -32.5,-25.5 - parent: 1 - type: Transform -- uid: 4502 - type: ReinforcedWindow - components: - - pos: -31.5,-25.5 - parent: 1 - type: Transform -- uid: 4503 - type: ReinforcedWindow - components: - - pos: -29.5,-27.5 - parent: 1 - type: Transform -- uid: 4504 - type: ReinforcedWindow - components: - - pos: -28.5,-27.5 - parent: 1 - type: Transform -- uid: 4505 - type: ReinforcedWindow - components: - - pos: -26.5,-27.5 - parent: 1 - type: Transform -- uid: 4506 - type: ReinforcedWindow - components: - - pos: -25.5,-27.5 - parent: 1 - type: Transform -- uid: 4507 - type: Grille - components: - - pos: 45.5,35.5 - parent: 1 - type: Transform -- uid: 4508 - type: Grille - components: - - pos: 49.5,35.5 - parent: 1 - type: Transform -- uid: 4509 - type: ReinforcedWindow - components: - - pos: 45.5,35.5 - parent: 1 - type: Transform -- uid: 4510 - type: ReinforcedWindow - components: - - pos: 49.5,35.5 - parent: 1 - type: Transform -- uid: 4511 - type: WallSolid - components: - - pos: -19.5,-20.5 - parent: 1 - type: Transform -- uid: 4512 - type: WallSolid - components: - - pos: -18.5,-20.5 - parent: 1 - type: Transform -- uid: 4513 - type: WallSolid - components: - - pos: -17.5,-20.5 - parent: 1 - type: Transform -- uid: 4514 - type: WallSolidRust - components: - - pos: -17.5,-22.5 - parent: 1 - type: Transform -- uid: 4515 - type: WallSolid - components: - - pos: -17.5,-23.5 - parent: 1 - type: Transform -- uid: 4516 - type: WallSolid - components: - - pos: -36.5,-15.5 - parent: 1 - type: Transform -- uid: 4517 - type: WallSolid - components: - - pos: -37.5,-15.5 - parent: 1 - type: Transform -- uid: 4518 - type: WallSolid - components: - - pos: -38.5,-15.5 - parent: 1 - type: Transform -- uid: 4519 - type: WallSolid - components: - - pos: -36.5,-16.5 - parent: 1 - type: Transform -- uid: 4520 - type: WallSolid - components: - - pos: -36.5,-17.5 - parent: 1 - type: Transform -- uid: 4521 - type: WallSolid - components: - - pos: -36.5,-18.5 - parent: 1 - type: Transform -- uid: 4522 - type: WallSolid - components: - - pos: -35.5,-18.5 - parent: 1 - type: Transform -- uid: 4523 - type: WallSolid - components: - - pos: -34.5,-18.5 - parent: 1 - type: Transform -- uid: 4524 - type: WallSolid - components: - - pos: -33.5,-18.5 - parent: 1 - type: Transform -- uid: 4525 - type: WallSolid - components: - - pos: -32.5,-18.5 - parent: 1 - type: Transform -- uid: 4526 - type: WallSolid - components: - - pos: -31.5,-18.5 - parent: 1 - type: Transform -- uid: 4527 - type: WallSolid - components: - - pos: -30.5,-18.5 - parent: 1 - type: Transform -- uid: 4528 - type: WallSolid - components: - - pos: -30.5,-19.5 - parent: 1 - type: Transform -- uid: 4529 - type: Girder - components: - - pos: -30.5,-20.5 - parent: 1 - type: Transform -- uid: 4530 - type: WallSolid - components: - - pos: -30.5,-21.5 - parent: 1 - type: Transform -- uid: 4531 - type: WallSolid - components: - - pos: -30.5,-22.5 - parent: 1 - type: Transform -- uid: 4532 - type: WallSolid - components: - - pos: -30.5,-24.5 - parent: 1 - type: Transform -- uid: 4533 - type: TableReinforced - components: - - pos: -22.5,-11.5 - parent: 1 - type: Transform -- uid: 4534 - type: TableReinforced - components: - - pos: -21.5,-11.5 - parent: 1 - type: Transform -- uid: 4535 - type: TableReinforced - components: - - pos: -22.5,-13.5 - parent: 1 - type: Transform -- uid: 4536 - type: TableReinforced - components: - - pos: -21.5,-13.5 - parent: 1 - type: Transform -- uid: 4537 - type: SpawnMobDrone - components: - - pos: -24.5,-11.5 - parent: 1 - type: Transform -- uid: 4538 - type: SpawnMobDrone - components: - - pos: -24.5,-13.5 - parent: 1 - type: Transform -- uid: 4539 - type: WallSolid - components: - - pos: -17.5,-25.5 - parent: 1 - type: Transform -- uid: 4540 - type: WallSolid - components: - - pos: -17.5,-38.5 - parent: 1 - type: Transform -- uid: 4541 - type: WallSolid - components: - - pos: -17.5,-37.5 - parent: 1 - type: Transform -- uid: 4542 - type: WallSolid - components: - - pos: -17.5,-36.5 - parent: 1 - type: Transform -- uid: 4543 - type: WallSolid - components: - - pos: -17.5,-35.5 - parent: 1 - type: Transform -- uid: 4544 - type: WallSolid - components: - - pos: -17.5,-34.5 - parent: 1 - type: Transform -- uid: 4545 - type: WallSolid - components: - - pos: -17.5,-33.5 - parent: 1 - type: Transform -- uid: 4546 - type: WallSolid - components: - - pos: -17.5,-32.5 - parent: 1 - type: Transform -- uid: 4547 - type: WallSolid - components: - - pos: -18.5,-32.5 - parent: 1 - type: Transform -- uid: 4548 - type: WallSolid - components: - - pos: -20.5,-32.5 - parent: 1 - type: Transform -- uid: 4549 - type: WallSolid - components: - - pos: -19.5,-24.5 - parent: 1 - type: Transform -- uid: 4550 - type: WallSolid - components: - - pos: -19.5,-23.5 - parent: 1 - type: Transform -- uid: 4551 - type: WallSolid - components: - - pos: -18.5,-23.5 - parent: 1 - type: Transform -- uid: 4552 - type: WallSolid - components: - - pos: -19.5,-25.5 - parent: 1 - type: Transform -- uid: 4553 - type: WallSolid - components: - - pos: -19.5,-26.5 - parent: 1 - type: Transform -- uid: 4554 - type: WallSolid - components: - - pos: -19.5,-27.5 - parent: 1 - type: Transform -- uid: 4555 - type: WallSolid - components: - - pos: -19.5,-28.5 - parent: 1 - type: Transform -- uid: 4556 - type: Girder - components: - - pos: -19.5,-29.5 - parent: 1 - type: Transform -- uid: 4557 - type: WallSolid - components: - - pos: -19.5,-30.5 - parent: 1 - type: Transform -- uid: 4558 - type: WallSolid - components: - - pos: -20.5,-25.5 - parent: 1 - type: Transform -- uid: 4559 - type: WallSolid - components: - - pos: -21.5,-25.5 - parent: 1 - type: Transform -- uid: 4560 - type: WallSolid - components: - - pos: -22.5,-25.5 - parent: 1 - type: Transform -- uid: 4561 - type: WallSolid - components: - - pos: -23.5,-25.5 - parent: 1 - type: Transform -- uid: 4562 - type: WallSolid - components: - - pos: -24.5,-25.5 - parent: 1 - type: Transform -- uid: 4563 - type: WallSolid - components: - - pos: -25.5,-25.5 - parent: 1 - type: Transform -- uid: 4564 - type: WallSolid - components: - - pos: -25.5,-24.5 - parent: 1 - type: Transform -- uid: 4565 - type: WallSolid - components: - - pos: -26.5,-24.5 - parent: 1 - type: Transform -- uid: 4566 - type: WallSolid - components: - - pos: -27.5,-24.5 - parent: 1 - type: Transform -- uid: 4567 - type: WallSolid - components: - - pos: -28.5,-24.5 - parent: 1 - type: Transform -- uid: 4568 - type: WallSolid - components: - - pos: -25.5,-23.5 - parent: 1 - type: Transform -- uid: 4569 - type: EncryptionKeySecurity - components: - - flags: InContainer - type: MetaData - - parent: 4391 - type: Transform - - canCollide: False - type: Physics -- uid: 4570 - type: ReinforcedWindow - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform -- uid: 4571 - type: CableMV - components: - - pos: 18.5,-11.5 - parent: 1 - type: Transform -- uid: 4572 - type: ReagentContainerFlour - components: - - pos: 7.857181,-3.1736069 - parent: 1 - type: Transform -- uid: 4573 - type: SurveillanceCameraRouterGeneral - components: - - pos: 20.5,-17.5 - parent: 1 - type: Transform -- uid: 4574 - type: SpawnPointChef - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform -- uid: 4575 - type: SurveillanceCameraRouterScience - components: - - pos: 21.5,-17.5 - parent: 1 - type: Transform -- uid: 4576 - type: SurveillanceCameraRouterService - components: - - pos: 22.5,-13.5 - parent: 1 - type: Transform -- uid: 4577 - type: ReinforcedWindow - components: - - pos: -15.5,23.5 - parent: 1 - type: Transform -- uid: 4578 - type: MachineAnomalyGenerator - components: - - pos: -16.5,21.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound -- uid: 4579 - type: SignAnomaly2 - components: - - pos: -19.5,20.5 - parent: 1 - type: Transform -- uid: 4580 - type: ReinforcedWindow - components: - - pos: -13.5,18.5 - parent: 1 - type: Transform -- uid: 4581 - type: ReinforcedWindow - components: - - pos: -13.5,19.5 - parent: 1 - type: Transform -- uid: 4582 - type: TablePlasmaGlass - components: - - pos: -18.5,17.5 - parent: 1 - type: Transform -- uid: 4583 - type: TablePlasmaGlass - components: - - pos: -18.5,20.5 - parent: 1 - type: Transform -- uid: 4584 - type: SubstationBasic - components: - - pos: -21.5,30.5 - parent: 1 - type: Transform -- uid: 4585 - type: SubstationBasic - components: - - pos: -25.5,-15.5 - parent: 1 - type: Transform -- uid: 4586 - type: TablePlasmaGlass - components: - - pos: -17.5,17.5 - parent: 1 - type: Transform -- uid: 4587 - type: SubstationBasic - components: - - pos: -24.5,50.5 - parent: 1 - type: Transform -- uid: 4588 - type: SubstationBasic - components: - - pos: 20.5,54.5 - parent: 1 - type: Transform -- uid: 4589 - type: SubstationBasic - components: - - pos: 16.5,25.5 - parent: 1 - type: Transform -- uid: 4590 - type: SubstationBasic - components: - - pos: 17.5,4.5 - parent: 1 - type: Transform -- uid: 4591 - type: SubstationBasic - components: - - pos: -25.5,-0.5 - parent: 1 - type: Transform -- uid: 4592 - type: CrateEngineeringCableBulk - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4593 - type: CrateEngineeringElectricalSupplies - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4594 - type: SubstationBasic - components: - - pos: 26.5,-18.5 - parent: 1 - type: Transform -- uid: 4595 - type: CableHV - components: - - pos: -6.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4596 - type: CableHV - components: - - pos: -6.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4597 - type: CableHV - components: - - pos: -6.5,-68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4598 - type: CableHV - components: - - pos: -6.5,-67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4599 - type: CableHV - components: - - pos: -6.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4600 - type: CableHV - components: - - pos: -6.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4601 - type: CableHV - components: - - pos: -6.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4602 - type: CableHV - components: - - pos: -8.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4603 - type: CableHV - components: - - pos: -8.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4604 - type: CableHV - components: - - pos: -8.5,-68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4605 - type: CableHV - components: - - pos: -8.5,-67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4606 - type: CableHV - components: - - pos: -8.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4607 - type: CableHV - components: - - pos: -8.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4608 - type: CableHV - components: - - pos: -8.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4609 - type: CableHV - components: - - pos: -7.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4610 - type: CableHV - components: - - pos: -7.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4611 - type: CableHV - components: - - pos: -7.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4612 - type: CableHV - components: - - pos: -7.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4613 - type: CableHV - components: - - pos: -7.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4614 - type: CableHV - components: - - pos: -7.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4615 - type: CableHV - components: - - pos: -7.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4616 - type: CableHV - components: - - pos: -7.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4617 - type: CableHV - components: - - pos: -7.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4618 - type: CableHV - components: - - pos: -7.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4619 - type: CableHV - components: - - pos: -7.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4620 - type: CableHV - components: - - pos: -8.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4621 - type: CableHV - components: - - pos: -9.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4622 - type: CableHV - components: - - pos: -9.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4623 - type: CableHV - components: - - pos: -9.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4624 - type: CableHV - components: - - pos: -9.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4625 - type: CableHV - components: - - pos: -9.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4626 - type: CableHV - components: - - pos: -9.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4627 - type: CableHV - components: - - pos: -9.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4628 - type: CableHV - components: - - pos: -9.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4629 - type: CableHV - components: - - pos: -10.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4630 - type: CableHV - components: - - pos: -11.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4631 - type: CableHV - components: - - pos: -12.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4632 - type: CableHV - components: - - pos: -13.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4633 - type: CableHV - components: - - pos: -14.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4634 - type: CableHV - components: - - pos: -15.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4635 - type: CableHV - components: - - pos: -15.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4636 - type: CableHV - components: - - pos: -15.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4637 - type: CableHV - components: - - pos: -15.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4638 - type: CableHV - components: - - pos: -15.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4639 - type: CableHV - components: - - pos: -10.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4640 - type: CableHV - components: - - pos: -11.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4641 - type: CableHV - components: - - pos: -11.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4642 - type: CableHV - components: - - pos: -12.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4643 - type: CableHV - components: - - pos: -12.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4644 - type: CableHV - components: - - pos: -10.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4645 - type: CableHV - components: - - pos: -10.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4646 - type: CableHV - components: - - pos: -10.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4647 - type: CableHV - components: - - pos: -10.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4648 - type: CableHV - components: - - pos: -9.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4649 - type: CableHV - components: - - pos: -9.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4650 - type: CableHV - components: - - pos: -9.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4651 - type: CableHV - components: - - pos: -9.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4652 - type: CableHV - components: - - pos: -8.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4653 - type: CableHV - components: - - pos: -8.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4654 - type: CableHV - components: - - pos: -8.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4655 - type: CableHV - components: - - pos: -8.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4656 - type: CableHV - components: - - pos: -6.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4657 - type: CableHV - components: - - pos: -5.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4658 - type: CableHV - components: - - pos: -5.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4659 - type: CableHV - components: - - pos: -5.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4660 - type: CableHV - components: - - pos: -5.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4661 - type: CableHV - components: - - pos: -4.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4662 - type: CableHV - components: - - pos: -4.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4663 - type: CableHV - components: - - pos: -4.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4664 - type: CableHV - components: - - pos: -4.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4665 - type: CableHV - components: - - pos: -4.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4666 - type: CableHV - components: - - pos: -4.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4667 - type: CableHV - components: - - pos: -4.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4668 - type: CableHV - components: - - pos: 3.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4669 - type: CableHV - components: - - pos: 3.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4670 - type: CableHV - components: - - pos: 3.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4671 - type: CableHV - components: - - pos: 3.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4672 - type: CableHV - components: - - pos: 3.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4673 - type: CableHV - components: - - pos: 3.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4674 - type: CableHV - components: - - pos: 3.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4675 - type: CableHV - components: - - pos: 4.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4676 - type: CableHV - components: - - pos: 4.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4677 - type: CableHV - components: - - pos: 4.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4678 - type: CableHV - components: - - pos: 4.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4679 - type: CableHV - components: - - pos: 5.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4680 - type: CableHV - components: - - pos: 6.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4681 - type: CableHV - components: - - pos: 6.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4682 - type: CableHV - components: - - pos: 6.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4683 - type: CableHV - components: - - pos: 6.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4684 - type: CableHV - components: - - pos: 6.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4685 - type: CableHV - components: - - pos: 6.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4686 - type: CableHV - components: - - pos: 6.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4687 - type: CableHV - components: - - pos: 6.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4688 - type: CableHV - components: - - pos: 6.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4689 - type: CableHV - components: - - pos: 6.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4690 - type: CableHV - components: - - pos: 6.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4691 - type: CableHV - components: - - pos: -8.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4692 - type: CableHV - components: - - pos: -7.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4693 - type: CableHV - components: - - pos: -6.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4694 - type: CableHV - components: - - pos: -5.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4695 - type: CableHV - components: - - pos: -4.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4696 - type: CableHV - components: - - pos: -3.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4697 - type: CableHV - components: - - pos: -3.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4698 - type: CableHV - components: - - pos: -3.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4699 - type: GasMixerFlipped - components: - - rot: -1.5707963267948966 rad - pos: -6.5,33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4700 - type: WelderIndustrial - components: - - pos: -10.518035,34.54518 - parent: 1 - type: Transform -- uid: 4701 - type: AnomalyScanner - components: - - pos: -18.171062,17.493765 - parent: 1 - type: Transform -- uid: 4702 - type: ClothingBeltUtilityFilled - components: - - pos: -17.489521,17.578913 - parent: 1 - type: Transform -- uid: 4703 - type: TelecomServer - components: - - pos: 16.5,-13.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 6461 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 4704 - type: CableHV - components: - - pos: 2.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4705 - type: CableHV - components: - - pos: 2.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4706 - type: CableHV - components: - - pos: 2.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4707 - type: CableHV - components: - - pos: 3.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4708 - type: CableHV - components: - - pos: 4.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4709 - type: CableHV - components: - - pos: 5.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4710 - type: CableHV - components: - - pos: 6.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4711 - type: CableHV - components: - - pos: 7.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4712 - type: CableHV - components: - - pos: 8.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4713 - type: CableHV - components: - - pos: 8.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4714 - type: CableHV - components: - - pos: 8.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4715 - type: CableHV - components: - - pos: 8.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4716 - type: CableHV - components: - - pos: 8.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4717 - type: CableHV - components: - - pos: 8.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4718 - type: CableHV - components: - - pos: 8.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4719 - type: CableHV - components: - - pos: 8.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4720 - type: CableHV - components: - - pos: 7.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4721 - type: CableHV - components: - - pos: 9.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4722 - type: CableHV - components: - - pos: 9.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4723 - type: CableHV - components: - - pos: 9.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4724 - type: CableHV - components: - - pos: 9.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4725 - type: CableHV - components: - - pos: 8.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4726 - type: CableHV - components: - - pos: 8.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4727 - type: CableHV - components: - - pos: 8.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4728 - type: CableHV - components: - - pos: 8.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4729 - type: CableHV - components: - - pos: 7.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4730 - type: CableHV - components: - - pos: 7.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4731 - type: CableHV - components: - - pos: 7.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4732 - type: CableHV - components: - - pos: 7.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4733 - type: CableHV - components: - - pos: 9.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4734 - type: CableHV - components: - - pos: 10.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4735 - type: CableHV - components: - - pos: 10.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4736 - type: CableHV - components: - - pos: 11.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4737 - type: CableHV - components: - - pos: 11.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4738 - type: CableHV - components: - - pos: 13.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4739 - type: CableHV - components: - - pos: 14.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4740 - type: CableHV - components: - - pos: 14.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4741 - type: CableHV - components: - - pos: 14.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4742 - type: CableHV - components: - - pos: 14.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4743 - type: CableHV - components: - - pos: 14.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4744 - type: CableHV - components: - - pos: 12.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4745 - type: CableHV - components: - - pos: 12.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4746 - type: CableHV - components: - - pos: 12.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4747 - type: CableHV - components: - - pos: 12.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4748 - type: CableHV - components: - - pos: 12.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4749 - type: CableHV - components: - - pos: 12.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4750 - type: CableHV - components: - - pos: 12.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4751 - type: CableHV - components: - - pos: 12.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4752 - type: CableHV - components: - - pos: 12.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4753 - type: CableHV - components: - - pos: 12.5,-38.5 - parent: 1 - type: Transform -- uid: 4754 - type: CableHV - components: - - pos: 12.5,-37.5 - parent: 1 - type: Transform -- uid: 4755 - type: CableHV - components: - - pos: 11.5,-37.5 - parent: 1 - type: Transform -- uid: 4756 - type: CableHV - components: - - pos: 11.5,-36.5 - parent: 1 - type: Transform -- uid: 4757 - type: CableHV - components: - - pos: 11.5,-35.5 - parent: 1 - type: Transform -- uid: 4758 - type: CableHV - components: - - pos: 14.5,-35.5 - parent: 1 - type: Transform -- uid: 4759 - type: CableHV - components: - - pos: 13.5,-35.5 - parent: 1 - type: Transform -- uid: 4760 - type: CableHV - components: - - pos: 13.5,-34.5 - parent: 1 - type: Transform -- uid: 4761 - type: CableHV - components: - - pos: 13.5,-33.5 - parent: 1 - type: Transform -- uid: 4762 - type: CableHV - components: - - pos: 13.5,-32.5 - parent: 1 - type: Transform -- uid: 4763 - type: CableHV - components: - - pos: 7.5,-33.5 - parent: 1 - type: Transform -- uid: 4764 - type: CableHV - components: - - pos: 7.5,-34.5 - parent: 1 - type: Transform -- uid: 4765 - type: CableHV - components: - - pos: 7.5,-35.5 - parent: 1 - type: Transform -- uid: 4766 - type: CableHV - components: - - pos: 7.5,-36.5 - parent: 1 - type: Transform -- uid: 4767 - type: CableHV - components: - - pos: 7.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4768 - type: CableHV - components: - - pos: 7.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4769 - type: CableHV - components: - - pos: 7.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4770 - type: CableHV - components: - - pos: 7.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4771 - type: CableHV - components: - - pos: 6.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4772 - type: CableHV - components: - - pos: 6.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4773 - type: CableHV - components: - - pos: 7.5,-32.5 - parent: 1 - type: Transform -- uid: 4774 - type: CableHV - components: - - pos: 7.5,-31.5 - parent: 1 - type: Transform -- uid: 4775 - type: CableHV - components: - - pos: 7.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4776 - type: CableHV - components: - - pos: 6.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4777 - type: CableHV - components: - - pos: 5.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4778 - type: CableHV - components: - - pos: 8.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4779 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 5.5,-30.5 - parent: 1 - type: Transform -- uid: 4780 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 6.5,-30.5 - parent: 1 - type: Transform -- uid: 4781 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 7.5,-30.5 - parent: 1 - type: Transform -- uid: 4782 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 8.5,-30.5 - parent: 1 - type: Transform -- uid: 4783 - type: CableHV - components: - - pos: 5.5,-29.5 - parent: 1 - type: Transform -- uid: 4784 - type: CableHV - components: - - pos: 6.5,-29.5 - parent: 1 - type: Transform -- uid: 4785 - type: CableHV - components: - - pos: 7.5,-29.5 - parent: 1 - type: Transform -- uid: 4786 - type: CableHV - components: - - pos: 8.5,-29.5 - parent: 1 - type: Transform -- uid: 4787 - type: CableHV - components: - - pos: 9.5,-29.5 - parent: 1 - type: Transform -- uid: 4788 - type: CableHV - components: - - pos: 10.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4789 - type: CableHV - components: - - pos: 11.5,-29.5 - parent: 1 - type: Transform -- uid: 4790 - type: CableHV - components: - - pos: 12.5,-29.5 - parent: 1 - type: Transform -- uid: 4791 - type: CableHV - components: - - pos: 12.5,-28.5 - parent: 1 - type: Transform -- uid: 4792 - type: CableHV - components: - - pos: 12.5,-27.5 - parent: 1 - type: Transform -- uid: 4793 - type: CableHV - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform -- uid: 4794 - type: CableHV - components: - - pos: 12.5,-25.5 - parent: 1 - type: Transform -- uid: 4795 - type: CableHV - components: - - pos: 12.5,-24.5 - parent: 1 - type: Transform -- uid: 4796 - type: CableHV - components: - - pos: 12.5,-23.5 - parent: 1 - type: Transform -- uid: 4797 - type: CableHV - components: - - pos: 12.5,-22.5 - parent: 1 - type: Transform -- uid: 4798 - type: CableHV - components: - - pos: 12.5,-21.5 - parent: 1 - type: Transform -- uid: 4799 - type: CableHV - components: - - pos: 12.5,-20.5 - parent: 1 - type: Transform -- uid: 4800 - type: CableHV - components: - - pos: 12.5,-19.5 - parent: 1 - type: Transform -- uid: 4801 - type: CableHV - components: - - pos: 12.5,-18.5 - parent: 1 - type: Transform -- uid: 4802 - type: CableHV - components: - - pos: 12.5,-17.5 - parent: 1 - type: Transform -- uid: 4803 - type: CableHV - components: - - pos: 12.5,-16.5 - parent: 1 - type: Transform -- uid: 4804 - type: CableHV - components: - - pos: 12.5,-15.5 - parent: 1 - type: Transform -- uid: 4805 - type: CableHV - components: - - pos: 12.5,-14.5 - parent: 1 - type: Transform -- uid: 4806 - type: CableHV - components: - - pos: 12.5,-13.5 - parent: 1 - type: Transform -- uid: 4807 - type: CableHV - components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform -- uid: 4808 - type: CableHV - components: - - pos: 11.5,-15.5 - parent: 1 - type: Transform -- uid: 4809 - type: CableHV - components: - - pos: 10.5,-15.5 - parent: 1 - type: Transform -- uid: 4810 - type: CableHV - components: - - pos: 9.5,-15.5 - parent: 1 - type: Transform -- uid: 4811 - type: CableHV - components: - - pos: 8.5,-15.5 - parent: 1 - type: Transform -- uid: 4812 - type: CableHV - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform -- uid: 4813 - type: CableHV - components: - - pos: 6.5,-15.5 - parent: 1 - type: Transform -- uid: 4814 - type: CableHV - components: - - pos: 5.5,-15.5 - parent: 1 - type: Transform -- uid: 4815 - type: CableHV - components: - - pos: 4.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4816 - type: CableHV - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4817 - type: CableHV - components: - - pos: 2.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4818 - type: CableHV - components: - - pos: 1.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4819 - type: CableHV - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4820 - type: CableHV - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4821 - type: CableHV - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4822 - type: CableHV - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4823 - type: CableHV - components: - - pos: -3.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4824 - type: CableHV - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4825 - type: CableHV - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4826 - type: CableHV - components: - - pos: -6.5,-15.5 - parent: 1 - type: Transform -- uid: 4827 - type: CableHV - components: - - pos: -7.5,-15.5 - parent: 1 - type: Transform -- uid: 4828 - type: CableHV - components: - - pos: -8.5,-15.5 - parent: 1 - type: Transform -- uid: 4829 - type: CableHV - components: - - pos: -9.5,-15.5 - parent: 1 - type: Transform -- uid: 4830 - type: CableHV - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform -- uid: 4831 - type: CableHV - components: - - pos: -11.5,-15.5 - parent: 1 - type: Transform -- uid: 4832 - type: CableHV - components: - - pos: -12.5,-15.5 - parent: 1 - type: Transform -- uid: 4833 - type: CableHV - components: - - pos: -12.5,-16.5 - parent: 1 - type: Transform -- uid: 4834 - type: CableHV - components: - - pos: -12.5,-17.5 - parent: 1 - type: Transform -- uid: 4835 - type: CableHV - components: - - pos: -12.5,-18.5 - parent: 1 - type: Transform -- uid: 4836 - type: CableHV - components: - - pos: -12.5,-19.5 - parent: 1 - type: Transform -- uid: 4837 - type: CableHV - components: - - pos: -12.5,-20.5 - parent: 1 - type: Transform -- uid: 4838 - type: CableHV - components: - - pos: -12.5,-21.5 - parent: 1 - type: Transform -- uid: 4839 - type: CableHV - components: - - pos: -12.5,-22.5 - parent: 1 - type: Transform -- uid: 4840 - type: CableHV - components: - - pos: -12.5,-23.5 - parent: 1 - type: Transform -- uid: 4841 - type: CableHV - components: - - pos: -12.5,-24.5 - parent: 1 - type: Transform -- uid: 4842 - type: CableHV - components: - - pos: -12.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4843 - type: CableHV - components: - - pos: -13.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4844 - type: CableHV - components: - - pos: -12.5,-26.5 - parent: 1 - type: Transform -- uid: 4845 - type: CableHV - components: - - pos: -12.5,-27.5 - parent: 1 - type: Transform -- uid: 4846 - type: CableHV - components: - - pos: -12.5,-28.5 - parent: 1 - type: Transform -- uid: 4847 - type: CableHV - components: - - pos: -12.5,-29.5 - parent: 1 - type: Transform -- uid: 4848 - type: CableHV - components: - - pos: -12.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4849 - type: CableHV - components: - - pos: -13.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4850 - type: CableHV - components: - - pos: -12.5,-31.5 - parent: 1 - type: Transform -- uid: 4851 - type: CableHV - components: - - pos: -12.5,-32.5 - parent: 1 - type: Transform -- uid: 4852 - type: CableHV - components: - - pos: -12.5,-33.5 - parent: 1 - type: Transform -- uid: 4853 - type: CableHV - components: - - pos: -12.5,-34.5 - parent: 1 - type: Transform -- uid: 4854 - type: CableHV - components: - - pos: -12.5,-35.5 - parent: 1 - type: Transform -- uid: 4855 - type: CableHV - components: - - pos: -12.5,-36.5 - parent: 1 - type: Transform -- uid: 4856 - type: CableHV - components: - - pos: -13.5,-36.5 - parent: 1 - type: Transform -- uid: 4857 - type: CableHV - components: - - pos: -14.5,-36.5 - parent: 1 - type: Transform -- uid: 4858 - type: CableHV - components: - - pos: -15.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4859 - type: CableHV - components: - - pos: -16.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4860 - type: CableHV - components: - - pos: -16.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4861 - type: CableHV - components: - - pos: -16.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4862 - type: CableHV - components: - - pos: -16.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4863 - type: CableHV - components: - - pos: -16.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4864 - type: CableHV - components: - - pos: -16.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4865 - type: CableHV - components: - - pos: -17.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4866 - type: CableHV - components: - - pos: -18.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4867 - type: CableHV - components: - - pos: -18.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4868 - type: CableHV - components: - - pos: -18.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4869 - type: CableHV - components: - - pos: -18.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4870 - type: CableHV - components: - - pos: -18.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4871 - type: CableHV - components: - - pos: -18.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4872 - type: CableHV - components: - - pos: -18.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4873 - type: CableHV - components: - - pos: -18.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4874 - type: CableHV - components: - - pos: -19.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4875 - type: CableHV - components: - - pos: -20.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4876 - type: CableHV - components: - - pos: -17.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4877 - type: CableHV - components: - - pos: -16.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4878 - type: CableHV - components: - - pos: -16.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4879 - type: CableHV - components: - - pos: -16.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4880 - type: CableHV - components: - - pos: -16.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4881 - type: CableHV - components: - - pos: -16.5,-20.5 - parent: 1 - type: Transform -- uid: 4882 - type: CableHV - components: - - pos: -16.5,-19.5 - parent: 1 - type: Transform -- uid: 4883 - type: CableHV - components: - - pos: -16.5,-18.5 - parent: 1 - type: Transform -- uid: 4884 - type: CableHV - components: - - pos: -16.5,-17.5 - parent: 1 - type: Transform -- uid: 4885 - type: CableHV - components: - - pos: -16.5,-16.5 - parent: 1 - type: Transform -- uid: 4886 - type: CableHV - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform -- uid: 4887 - type: CableHV - components: - - pos: -16.5,-14.5 - parent: 1 - type: Transform -- uid: 4888 - type: CableHV - components: - - pos: -16.5,-13.5 - parent: 1 - type: Transform -- uid: 4889 - type: CableHV - components: - - pos: -16.5,-12.5 - parent: 1 - type: Transform -- uid: 4890 - type: CableHV - components: - - pos: -16.5,-11.5 - parent: 1 - type: Transform -- uid: 4891 - type: CableHV - components: - - pos: -16.5,-10.5 - parent: 1 - type: Transform -- uid: 4892 - type: CableHV - components: - - pos: -16.5,-9.5 - parent: 1 - type: Transform -- uid: 4893 - type: CableHV - components: - - pos: -12.5,-9.5 - parent: 1 - type: Transform -- uid: 4894 - type: CableHV - components: - - pos: -12.5,-10.5 - parent: 1 - type: Transform -- uid: 4895 - type: CableHV - components: - - pos: -12.5,-11.5 - parent: 1 - type: Transform -- uid: 4896 - type: CableHV - components: - - pos: -12.5,-12.5 - parent: 1 - type: Transform -- uid: 4897 - type: CableHV - components: - - pos: -12.5,-13.5 - parent: 1 - type: Transform -- uid: 4898 - type: CableHV - components: - - pos: -12.5,-14.5 - parent: 1 - type: Transform -- uid: 4899 - type: CableHV - components: - - pos: -13.5,-9.5 - parent: 1 - type: Transform -- uid: 4900 - type: CableHV - components: - - pos: -14.5,-9.5 - parent: 1 - type: Transform -- uid: 4901 - type: CableHV - components: - - pos: -15.5,-9.5 - parent: 1 - type: Transform -- uid: 4902 - type: CableHV - components: - - pos: -20.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4903 - type: CableHV - components: - - pos: -20.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4904 - type: CableHV - components: - - pos: -20.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4905 - type: CableHV - components: - - pos: -20.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4906 - type: CableHV - components: - - pos: -20.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4907 - type: CableHV - components: - - pos: -21.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4908 - type: CableHV - components: - - pos: -22.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4909 - type: CableHV - components: - - pos: -23.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4910 - type: CableHV - components: - - pos: -24.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4911 - type: CableHV - components: - - pos: -25.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4912 - type: CableHV - components: - - pos: -26.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4913 - type: CableHV - components: - - pos: -27.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4914 - type: CableHV - components: - - pos: -28.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4915 - type: CableHV - components: - - pos: -29.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4916 - type: CableHV - components: - - pos: -29.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4917 - type: CableHV - components: - - pos: -29.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4918 - type: CableHV - components: - - pos: -29.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4919 - type: CableHV - components: - - pos: -29.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4920 - type: CableHV - components: - - pos: -29.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4921 - type: CableHV - components: - - pos: -29.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4922 - type: CableHV - components: - - pos: -29.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4923 - type: CableHV - components: - - pos: -29.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4924 - type: CableHV - components: - - pos: -29.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4925 - type: CableHV - components: - - pos: -29.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4926 - type: CableHV - components: - - pos: -28.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4927 - type: CableHV - components: - - pos: -27.5,-16.5 - parent: 1 - type: Transform -- uid: 4928 - type: CableHV - components: - - pos: -26.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4929 - type: CableHV - components: - - pos: -25.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4930 - type: CableHV - components: - - pos: -25.5,-15.5 - parent: 1 - type: Transform -- uid: 4931 - type: SubstationBasic - components: - - pos: -3.5,74.5 - parent: 1 - type: Transform -- uid: 4932 - type: CableHV - components: - - pos: -3.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4933 - type: CableHV - components: - - pos: -3.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4934 - type: CableHV - components: - - pos: -3.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4935 - type: CableHV - components: - - pos: -3.5,71.5 - parent: 1 - type: Transform -- uid: 4936 - type: CableHV - components: - - pos: -3.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4937 - type: CableHV - components: - - pos: -4.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4938 - type: CableHV - components: - - pos: -4.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4939 - type: CableHV - components: - - pos: -4.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4940 - type: CableHV - components: - - pos: -4.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4941 - type: CableHV - components: - - pos: -3.5,67.5 - parent: 1 - type: Transform -- uid: 4942 - type: CableHV - components: - - pos: -2.5,67.5 - parent: 1 - type: Transform -- uid: 4943 - type: CableHV - components: - - pos: -1.5,67.5 - parent: 1 - type: Transform -- uid: 4944 - type: CableHV - components: - - pos: -5.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4945 - type: CableHV - components: - - pos: -6.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4946 - type: CableHV - components: - - pos: -7.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4947 - type: CableHV - components: - - pos: -8.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4948 - type: CableHV - components: - - pos: -9.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4949 - type: CableHV - components: - - pos: -10.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4950 - type: CableHV - components: - - pos: -11.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4951 - type: CableHV - components: - - pos: -12.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4952 - type: CableHV - components: - - pos: -13.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4953 - type: CableHV - components: - - pos: -13.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4954 - type: CableHV - components: - - pos: -13.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4955 - type: CableHV - components: - - pos: -13.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4956 - type: CableHV - components: - - pos: -13.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4957 - type: CableHV - components: - - pos: -13.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4958 - type: CableHV - components: - - pos: -14.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4959 - type: CableHV - components: - - pos: -15.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4960 - type: CableHV - components: - - pos: -16.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4961 - type: CableHV - components: - - pos: -17.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4962 - type: CableHV - components: - - pos: -18.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4963 - type: CableHV - components: - - pos: -19.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4964 - type: CableHV - components: - - pos: -19.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4965 - type: CableHV - components: - - pos: -19.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4966 - type: CableHV - components: - - pos: -19.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4967 - type: CableHV - components: - - pos: -19.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4968 - type: CableHV - components: - - pos: -19.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4969 - type: CableHV - components: - - pos: -20.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4970 - type: CableHV - components: - - pos: -21.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4971 - type: CableHV - components: - - pos: -21.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4972 - type: CableHV - components: - - pos: -21.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4973 - type: CableHV - components: - - pos: -21.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4974 - type: CableHV - components: - - pos: -21.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4975 - type: CableHV - components: - - pos: -21.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4976 - type: CableHV - components: - - pos: -21.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4977 - type: CableHV - components: - - pos: -21.5,50.5 - parent: 1 - type: Transform -- uid: 4978 - type: CableHV - components: - - pos: -21.5,49.5 - parent: 1 - type: Transform -- uid: 4979 - type: CableHV - components: - - pos: -21.5,48.5 - parent: 1 - type: Transform -- uid: 4980 - type: CableHV - components: - - pos: -21.5,47.5 - parent: 1 - type: Transform -- uid: 4981 - type: CableHV - components: - - pos: -21.5,46.5 - parent: 1 - type: Transform -- uid: 4982 - type: CableHV - components: - - pos: -21.5,45.5 - parent: 1 - type: Transform -- uid: 4983 - type: CableHV - components: - - pos: -21.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4984 - type: CableHV - components: - - pos: -21.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4985 - type: CableHV - components: - - pos: -21.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4986 - type: CableHV - components: - - pos: -21.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4987 - type: CableHV - components: - - pos: -21.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4988 - type: CableHV - components: - - pos: -21.5,39.5 - parent: 1 - type: Transform -- uid: 4989 - type: CableHV - components: - - pos: -21.5,38.5 - parent: 1 - type: Transform -- uid: 4990 - type: CableHV - components: - - pos: -21.5,37.5 - parent: 1 - type: Transform -- uid: 4991 - type: CableHV - components: - - pos: -21.5,36.5 - parent: 1 - type: Transform -- uid: 4992 - type: CableHV - components: - - pos: -22.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4993 - type: CableHV - components: - - pos: -23.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4994 - type: CableHV - components: - - pos: -24.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4995 - type: CableHV - components: - - pos: -24.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4996 - type: CableHV - components: - - pos: -24.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4997 - type: CableHV - components: - - pos: -24.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4998 - type: CableHV - components: - - pos: -24.5,53.5 - parent: 1 - type: Transform -- uid: 4999 - type: CableHV - components: - - pos: -24.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5000 - type: CableHV - components: - - pos: -24.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5001 - type: CableHV - components: - - pos: -24.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5002 - type: CableHV - components: - - pos: -0.5,67.5 - parent: 1 - type: Transform -- uid: 5003 - type: CableHV - components: - - pos: 0.5,67.5 - parent: 1 - type: Transform -- uid: 5004 - type: CableHV - components: - - pos: 1.5,67.5 - parent: 1 - type: Transform -- uid: 5005 - type: CableHV - components: - - pos: 2.5,67.5 - parent: 1 - type: Transform -- uid: 5006 - type: CableHV - components: - - pos: 3.5,67.5 - parent: 1 - type: Transform -- uid: 5007 - type: CableHV - components: - - pos: 4.5,67.5 - parent: 1 - type: Transform -- uid: 5008 - type: CableHV - components: - - pos: 5.5,67.5 - parent: 1 - type: Transform -- uid: 5009 - type: CableHV - components: - - pos: 6.5,67.5 - parent: 1 - type: Transform -- uid: 5010 - type: CableHV - components: - - pos: 7.5,67.5 - parent: 1 - type: Transform -- uid: 5011 - type: CableHV - components: - - pos: 7.5,66.5 - parent: 1 - type: Transform -- uid: 5012 - type: CableHV - components: - - pos: 7.5,65.5 - parent: 1 - type: Transform -- uid: 5013 - type: CableHV - components: - - pos: 7.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5014 - type: CableHV - components: - - pos: 7.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5015 - type: CableHV - components: - - pos: 8.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5016 - type: CableHV - components: - - pos: 9.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5017 - type: CableHV - components: - - pos: 10.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5018 - type: CableHV - components: - - pos: 11.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5019 - type: CableHV - components: - - pos: 12.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5020 - type: CableHV - components: - - pos: 13.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5021 - type: CableHV - components: - - pos: 14.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5022 - type: CableHV - components: - - pos: 15.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5023 - type: CableHV - components: - - pos: 16.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5024 - type: CableHV - components: - - pos: 17.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5025 - type: CableHV - components: - - pos: 18.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5026 - type: CableHV - components: - - pos: 18.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5027 - type: CableHV - components: - - pos: 18.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5028 - type: CableHV - components: - - pos: 18.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5029 - type: CableHV - components: - - pos: 18.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5030 - type: CableHV - components: - - pos: 18.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5031 - type: CableHV - components: - - pos: 19.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5032 - type: CableHV - components: - - pos: 19.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5033 - type: CableHV - components: - - pos: 19.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5034 - type: CableHV - components: - - pos: 18.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5035 - type: CableHV - components: - - pos: 17.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5036 - type: CableHV - components: - - pos: 16.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5037 - type: CableHV - components: - - pos: 20.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5038 - type: CableHV - components: - - pos: 21.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5039 - type: CableHV - components: - - pos: 22.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5040 - type: CableHV - components: - - pos: 22.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5041 - type: CableHV - components: - - pos: 22.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5042 - type: CableHV - components: - - pos: 22.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5043 - type: CableHV - components: - - pos: 22.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5044 - type: CableHV - components: - - pos: 22.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5045 - type: CableHV - components: - - pos: 22.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5046 - type: CableHV - components: - - pos: 22.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5047 - type: CableHV - components: - - pos: 22.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5048 - type: CableHV - components: - - pos: 22.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5049 - type: CableHV - components: - - pos: 22.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5050 - type: CableHV - components: - - pos: 22.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5051 - type: CableHV - components: - - pos: 23.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5052 - type: CableHV - components: - - pos: 24.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5053 - type: CableHV - components: - - pos: 25.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5054 - type: CableHV - components: - - pos: 25.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5055 - type: CableHV - components: - - pos: 25.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5056 - type: CableHV - components: - - pos: 25.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5057 - type: CableHV - components: - - pos: 25.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5058 - type: CableHV - components: - - pos: 25.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5059 - type: CableHV - components: - - pos: 25.5,39.5 - parent: 1 - type: Transform -- uid: 5060 - type: CableHV - components: - - pos: 25.5,38.5 - parent: 1 - type: Transform -- uid: 5061 - type: CableHV - components: - - pos: 25.5,37.5 - parent: 1 - type: Transform -- uid: 5062 - type: CableHV - components: - - pos: 25.5,36.5 - parent: 1 - type: Transform -- uid: 5063 - type: CableHV - components: - - pos: 16.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5064 - type: CableHV - components: - - pos: 16.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5065 - type: CableHV - components: - - pos: 16.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5066 - type: CableHV - components: - - pos: 16.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5067 - type: CableHV - components: - - pos: 16.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5068 - type: CableHV - components: - - pos: 17.5,52.5 - parent: 1 - type: Transform -- uid: 5069 - type: CableHV - components: - - pos: 18.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5070 - type: CableHV - components: - - pos: 19.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5071 - type: CableHV - components: - - pos: 20.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5072 - type: CableHV - components: - - pos: 20.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5073 - type: CableHV - components: - - pos: 20.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5074 - type: CableHV - components: - - pos: -20.5,36.5 - parent: 1 - type: Transform -- uid: 5075 - type: CableHV - components: - - pos: -19.5,36.5 - parent: 1 - type: Transform -- uid: 5076 - type: CableHV - components: - - pos: -18.5,36.5 - parent: 1 - type: Transform -- uid: 5077 - type: CableHV - components: - - pos: -17.5,36.5 - parent: 1 - type: Transform -- uid: 5078 - type: CableHV - components: - - pos: -16.5,36.5 - parent: 1 - type: Transform -- uid: 5079 - type: CableHV - components: - - pos: -15.5,36.5 - parent: 1 - type: Transform -- uid: 5080 - type: CableHV - components: - - pos: -14.5,36.5 - parent: 1 - type: Transform -- uid: 5081 - type: CableHV - components: - - pos: -13.5,36.5 - parent: 1 - type: Transform -- uid: 5082 - type: CableHV - components: - - pos: -12.5,36.5 - parent: 1 - type: Transform -- uid: 5083 - type: CableHV - components: - - pos: -11.5,36.5 - parent: 1 - type: Transform -- uid: 5084 - type: CableHV - components: - - pos: -10.5,36.5 - parent: 1 - type: Transform -- uid: 5085 - type: CableHV - components: - - pos: -9.5,36.5 - parent: 1 - type: Transform -- uid: 5086 - type: CableHV - components: - - pos: -8.5,36.5 - parent: 1 - type: Transform -- uid: 5087 - type: CableHV - components: - - pos: -7.5,36.5 - parent: 1 - type: Transform -- uid: 5088 - type: CableHV - components: - - pos: -6.5,36.5 - parent: 1 - type: Transform -- uid: 5089 - type: CableHV - components: - - pos: -5.5,36.5 - parent: 1 - type: Transform -- uid: 5090 - type: CableHV - components: - - pos: -4.5,36.5 - parent: 1 - type: Transform -- uid: 5091 - type: CableHV - components: - - pos: -3.5,36.5 - parent: 1 - type: Transform -- uid: 5092 - type: CableHV - components: - - pos: -2.5,36.5 - parent: 1 - type: Transform -- uid: 5093 - type: CableHV - components: - - pos: -1.5,36.5 - parent: 1 - type: Transform -- uid: 5094 - type: CableHV - components: - - pos: -0.5,36.5 - parent: 1 - type: Transform -- uid: 5095 - type: CableHV - components: - - pos: 0.5,36.5 - parent: 1 - type: Transform -- uid: 5096 - type: CableHV - components: - - pos: 1.5,36.5 - parent: 1 - type: Transform -- uid: 5097 - type: CableHV - components: - - pos: 2.5,36.5 - parent: 1 - type: Transform -- uid: 5098 - type: CableHV - components: - - pos: 3.5,36.5 - parent: 1 - type: Transform -- uid: 5099 - type: CableHV - components: - - pos: 4.5,36.5 - parent: 1 - type: Transform -- uid: 5100 - type: CableHV - components: - - pos: 5.5,36.5 - parent: 1 - type: Transform -- uid: 5101 - type: CableHV - components: - - pos: 6.5,36.5 - parent: 1 - type: Transform -- uid: 5102 - type: CableHV - components: - - pos: 7.5,36.5 - parent: 1 - type: Transform -- uid: 5103 - type: CableHV - components: - - pos: 8.5,36.5 - parent: 1 - type: Transform -- uid: 5104 - type: CableHV - components: - - pos: 9.5,36.5 - parent: 1 - type: Transform -- uid: 5105 - type: CableHV - components: - - pos: 10.5,36.5 - parent: 1 - type: Transform -- uid: 5106 - type: CableHV - components: - - pos: 11.5,36.5 - parent: 1 - type: Transform -- uid: 5107 - type: CableHV - components: - - pos: 12.5,36.5 - parent: 1 - type: Transform -- uid: 5108 - type: CableHV - components: - - pos: 13.5,36.5 - parent: 1 - type: Transform -- uid: 5109 - type: CableHV - components: - - pos: 14.5,36.5 - parent: 1 - type: Transform -- uid: 5110 - type: CableHV - components: - - pos: 15.5,36.5 - parent: 1 - type: Transform -- uid: 5111 - type: CableHV - components: - - pos: 16.5,36.5 - parent: 1 - type: Transform -- uid: 5112 - type: CableHV - components: - - pos: 17.5,36.5 - parent: 1 - type: Transform -- uid: 5113 - type: CableHV - components: - - pos: 18.5,36.5 - parent: 1 - type: Transform -- uid: 5114 - type: CableHV - components: - - pos: 19.5,36.5 - parent: 1 - type: Transform -- uid: 5115 - type: CableHV - components: - - pos: 20.5,36.5 - parent: 1 - type: Transform -- uid: 5116 - type: CableHV - components: - - pos: 21.5,36.5 - parent: 1 - type: Transform -- uid: 5117 - type: CableHV - components: - - pos: 22.5,36.5 - parent: 1 - type: Transform -- uid: 5118 - type: CableHV - components: - - pos: 23.5,36.5 - parent: 1 - type: Transform -- uid: 5119 - type: CableHV - components: - - pos: 24.5,36.5 - parent: 1 - type: Transform -- uid: 5120 - type: CableHV - components: - - pos: -1.5,66.5 - parent: 1 - type: Transform -- uid: 5121 - type: CableHV - components: - - pos: -1.5,65.5 - parent: 1 - type: Transform -- uid: 5122 - type: CableHV - components: - - pos: -1.5,64.5 - parent: 1 - type: Transform -- uid: 5123 - type: CableHV - components: - - pos: -1.5,63.5 - parent: 1 - type: Transform -- uid: 5124 - type: CableHV - components: - - pos: -1.5,62.5 - parent: 1 - type: Transform -- uid: 5125 - type: CableHV - components: - - pos: -1.5,61.5 - parent: 1 - type: Transform -- uid: 5126 - type: CableHV - components: - - pos: -1.5,60.5 - parent: 1 - type: Transform -- uid: 5127 - type: CableHV - components: - - pos: -1.5,59.5 - parent: 1 - type: Transform -- uid: 5128 - type: CableHV - components: - - pos: -1.5,58.5 - parent: 1 - type: Transform -- uid: 5129 - type: CableHV - components: - - pos: -1.5,57.5 - parent: 1 - type: Transform -- uid: 5130 - type: CableHV - components: - - pos: -1.5,56.5 - parent: 1 - type: Transform -- uid: 5131 - type: CableHV - components: - - pos: -1.5,55.5 - parent: 1 - type: Transform -- uid: 5132 - type: CableHV - components: - - pos: -1.5,54.5 - parent: 1 - type: Transform -- uid: 5133 - type: CableHV - components: - - pos: -1.5,53.5 - parent: 1 - type: Transform -- uid: 5134 - type: CableHV - components: - - pos: -1.5,52.5 - parent: 1 - type: Transform -- uid: 5135 - type: CableHV - components: - - pos: -1.5,51.5 - parent: 1 - type: Transform -- uid: 5136 - type: CableHV - components: - - pos: -1.5,50.5 - parent: 1 - type: Transform -- uid: 5137 - type: CableHV - components: - - pos: -1.5,49.5 - parent: 1 - type: Transform -- uid: 5138 - type: CableHV - components: - - pos: -1.5,48.5 - parent: 1 - type: Transform -- uid: 5139 - type: CableHV - components: - - pos: -1.5,47.5 - parent: 1 - type: Transform -- uid: 5140 - type: CableHV - components: - - pos: -1.5,46.5 - parent: 1 - type: Transform -- uid: 5141 - type: CableHV - components: - - pos: -1.5,45.5 - parent: 1 - type: Transform -- uid: 5142 - type: CableHV - components: - - pos: -1.5,44.5 - parent: 1 - type: Transform -- uid: 5143 - type: CableHV - components: - - pos: -1.5,43.5 - parent: 1 - type: Transform -- uid: 5144 - type: CableHV - components: - - pos: -1.5,42.5 - parent: 1 - type: Transform -- uid: 5145 - type: CableHV - components: - - pos: -1.5,41.5 - parent: 1 - type: Transform -- uid: 5146 - type: CableHV - components: - - pos: -1.5,40.5 - parent: 1 - type: Transform -- uid: 5147 - type: CableHV - components: - - pos: -1.5,39.5 - parent: 1 - type: Transform -- uid: 5148 - type: CableHV - components: - - pos: -1.5,38.5 - parent: 1 - type: Transform -- uid: 5149 - type: CableHV - components: - - pos: -1.5,37.5 - parent: 1 - type: Transform -- uid: 5150 - type: CableHV - components: - - pos: 0.5,35.5 - parent: 1 - type: Transform -- uid: 5151 - type: CableHV - components: - - pos: 0.5,34.5 - parent: 1 - type: Transform -- uid: 5152 - type: CableHV - components: - - pos: 0.5,33.5 - parent: 1 - type: Transform -- uid: 5153 - type: CableHV - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform -- uid: 5154 - type: CableHV - components: - - pos: 0.5,31.5 - parent: 1 - type: Transform -- uid: 5155 - type: CableHV - components: - - pos: 0.5,30.5 - parent: 1 - type: Transform -- uid: 5156 - type: CableHV - components: - - pos: 0.5,29.5 - parent: 1 - type: Transform -- uid: 5157 - type: CableHV - components: - - pos: 0.5,28.5 - parent: 1 - type: Transform -- uid: 5158 - type: CableHV - components: - - pos: 0.5,27.5 - parent: 1 - type: Transform -- uid: 5159 - type: CableHV - components: - - pos: 0.5,26.5 - parent: 1 - type: Transform -- uid: 5160 - type: CableHV - components: - - pos: 0.5,25.5 - parent: 1 - type: Transform -- uid: 5161 - type: CableHV - components: - - pos: 0.5,24.5 - parent: 1 - type: Transform -- uid: 5162 - type: CableHV - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform -- uid: 5163 - type: CableHV - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform -- uid: 5164 - type: CableHV - components: - - pos: 0.5,21.5 - parent: 1 - type: Transform -- uid: 5165 - type: CableHV - components: - - pos: 0.5,20.5 - parent: 1 - type: Transform -- uid: 5166 - type: CableHV - components: - - pos: 0.5,19.5 - parent: 1 - type: Transform -- uid: 5167 - type: CableHV - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform -- uid: 5168 - type: CableHV - components: - - pos: 0.5,17.5 - parent: 1 - type: Transform -- uid: 5169 - type: CableHV - components: - - pos: 0.5,16.5 - parent: 1 - type: Transform -- uid: 5170 - type: CableHV - components: - - pos: 0.5,15.5 - parent: 1 - type: Transform -- uid: 5171 - type: CableHV - components: - - pos: 0.5,14.5 - parent: 1 - type: Transform -- uid: 5172 - type: CableHV - components: - - pos: 0.5,13.5 - parent: 1 - type: Transform -- uid: 5173 - type: CableHV - components: - - pos: 25.5,35.5 - parent: 1 - type: Transform -- uid: 5174 - type: CableHV - components: - - pos: 24.5,34.5 - parent: 1 - type: Transform -- uid: 5175 - type: CableHV - components: - - pos: 24.5,33.5 - parent: 1 - type: Transform -- uid: 5176 - type: CableHV - components: - - pos: 24.5,32.5 - parent: 1 - type: Transform -- uid: 5177 - type: CableHV - components: - - pos: 24.5,31.5 - parent: 1 - type: Transform -- uid: 5178 - type: CableHV - components: - - pos: 24.5,30.5 - parent: 1 - type: Transform -- uid: 5179 - type: CableHV - components: - - pos: 24.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5180 - type: CableHV - components: - - pos: 24.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5181 - type: CableHV - components: - - pos: 24.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5182 - type: CableHV - components: - - pos: 24.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5183 - type: CableHV - components: - - pos: 24.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5184 - type: CableHV - components: - - pos: 24.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5185 - type: CableHV - components: - - pos: 23.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5186 - type: CableHV - components: - - pos: 22.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5187 - type: CableHV - components: - - pos: 21.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5188 - type: CableHV - components: - - pos: 20.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5189 - type: CableHV - components: - - pos: 19.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5190 - type: CableHV - components: - - pos: 19.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5191 - type: CableHV - components: - - pos: 19.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5192 - type: CableHV - components: - - pos: 19.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5193 - type: CableHV - components: - - pos: 19.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5194 - type: CableHV - components: - - pos: 19.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5195 - type: CableHV - components: - - pos: 19.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5196 - type: CableHV - components: - - pos: 19.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5197 - type: CableHV - components: - - pos: 19.5,16.5 - parent: 1 - type: Transform -- uid: 5198 - type: CableHV - components: - - pos: 19.5,15.5 - parent: 1 - type: Transform -- uid: 5199 - type: CableHV - components: - - pos: 19.5,14.5 - parent: 1 - type: Transform -- uid: 5200 - type: CableHV - components: - - pos: 19.5,13.5 - parent: 1 - type: Transform -- uid: 5201 - type: CableHV - components: - - pos: 18.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5202 - type: CableHV - components: - - pos: 17.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5203 - type: CableHV - components: - - pos: 16.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5204 - type: CableHV - components: - - pos: 15.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5205 - type: CableHV - components: - - pos: 14.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5206 - type: CableHV - components: - - pos: 14.5,23.5 - parent: 1 - type: Transform -- uid: 5207 - type: CableHV - components: - - pos: 14.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5208 - type: CableHV - components: - - pos: 14.5,25.5 - parent: 1 - type: Transform -- uid: 5209 - type: CableHV - components: - - pos: 15.5,25.5 - parent: 1 - type: Transform -- uid: 5210 - type: CableHV - components: - - pos: 16.5,25.5 - parent: 1 - type: Transform -- uid: 5211 - type: CableHV - components: - - pos: 18.5,13.5 - parent: 1 - type: Transform -- uid: 5212 - type: CableHV - components: - - pos: 17.5,13.5 - parent: 1 - type: Transform -- uid: 5213 - type: CableHV - components: - - pos: 16.5,13.5 - parent: 1 - type: Transform -- uid: 5214 - type: CableHV - components: - - pos: 15.5,13.5 - parent: 1 - type: Transform -- uid: 5215 - type: CableHV - components: - - pos: 14.5,13.5 - parent: 1 - type: Transform -- uid: 5216 - type: CableHV - components: - - pos: 13.5,13.5 - parent: 1 - type: Transform -- uid: 5217 - type: CableHV - components: - - pos: 12.5,13.5 - parent: 1 - type: Transform -- uid: 5218 - type: CableHV - components: - - pos: 11.5,13.5 - parent: 1 - type: Transform -- uid: 5219 - type: CableHV - components: - - pos: 10.5,13.5 - parent: 1 - type: Transform -- uid: 5220 - type: CableHV - components: - - pos: 9.5,13.5 - parent: 1 - type: Transform -- uid: 5221 - type: CableHV - components: - - pos: 8.5,13.5 - parent: 1 - type: Transform -- uid: 5222 - type: CableHV - components: - - pos: 7.5,13.5 - parent: 1 - type: Transform -- uid: 5223 - type: CableHV - components: - - pos: 6.5,13.5 - parent: 1 - type: Transform -- uid: 5224 - type: CableHV - components: - - pos: 5.5,13.5 - parent: 1 - type: Transform -- uid: 5225 - type: CableHV - components: - - pos: 4.5,13.5 - parent: 1 - type: Transform -- uid: 5226 - type: CableHV - components: - - pos: 3.5,13.5 - parent: 1 - type: Transform -- uid: 5227 - type: CableHV - components: - - pos: 2.5,13.5 - parent: 1 - type: Transform -- uid: 5228 - type: CableHV - components: - - pos: 1.5,13.5 - parent: 1 - type: Transform -- uid: 5229 - type: CableHV - components: - - pos: 26.5,36.5 - parent: 1 - type: Transform -- uid: 5230 - type: CableHV - components: - - pos: 27.5,36.5 - parent: 1 - type: Transform -- uid: 5231 - type: CableHV - components: - - pos: 28.5,36.5 - parent: 1 - type: Transform -- uid: 5232 - type: CableHV - components: - - pos: 29.5,36.5 - parent: 1 - type: Transform -- uid: 5233 - type: CableHV - components: - - pos: 30.5,36.5 - parent: 1 - type: Transform -- uid: 5234 - type: CableHV - components: - - pos: 31.5,36.5 - parent: 1 - type: Transform -- uid: 5235 - type: CableHV - components: - - pos: 32.5,36.5 - parent: 1 - type: Transform -- uid: 5236 - type: CableHV - components: - - pos: 32.5,35.5 - parent: 1 - type: Transform -- uid: 5237 - type: CableHV - components: - - pos: 32.5,34.5 - parent: 1 - type: Transform -- uid: 5238 - type: CableHV - components: - - pos: 32.5,33.5 - parent: 1 - type: Transform -- uid: 5239 - type: CableHV - components: - - pos: 32.5,32.5 - parent: 1 - type: Transform -- uid: 5240 - type: CableHV - components: - - pos: 32.5,31.5 - parent: 1 - type: Transform -- uid: 5241 - type: CableHV - components: - - pos: 32.5,30.5 - parent: 1 - type: Transform -- uid: 5242 - type: CableHV - components: - - pos: 32.5,29.5 - parent: 1 - type: Transform -- uid: 5243 - type: CableHV - components: - - pos: 32.5,28.5 - parent: 1 - type: Transform -- uid: 5244 - type: CableHV - components: - - pos: 32.5,27.5 - parent: 1 - type: Transform -- uid: 5245 - type: CableHV - components: - - pos: 32.5,26.5 - parent: 1 - type: Transform -- uid: 5246 - type: CableHV - components: - - pos: 32.5,25.5 - parent: 1 - type: Transform -- uid: 5247 - type: CableHV - components: - - pos: 32.5,24.5 - parent: 1 - type: Transform -- uid: 5248 - type: CableHV - components: - - pos: 32.5,23.5 - parent: 1 - type: Transform -- uid: 5249 - type: CableHV - components: - - pos: 32.5,22.5 - parent: 1 - type: Transform -- uid: 5250 - type: CableHV - components: - - pos: 32.5,21.5 - parent: 1 - type: Transform -- uid: 5251 - type: CableHV - components: - - pos: 32.5,20.5 - parent: 1 - type: Transform -- uid: 5252 - type: CableHV - components: - - pos: 32.5,19.5 - parent: 1 - type: Transform -- uid: 5253 - type: CableHV - components: - - pos: 32.5,18.5 - parent: 1 - type: Transform -- uid: 5254 - type: CableHV - components: - - pos: 32.5,17.5 - parent: 1 - type: Transform -- uid: 5255 - type: CableHV - components: - - pos: 32.5,16.5 - parent: 1 - type: Transform -- uid: 5256 - type: CableHV - components: - - pos: 32.5,15.5 - parent: 1 - type: Transform -- uid: 5257 - type: CableHV - components: - - pos: 32.5,14.5 - parent: 1 - type: Transform -- uid: 5258 - type: CableHV - components: - - pos: 32.5,13.5 - parent: 1 - type: Transform -- uid: 5259 - type: CableHV - components: - - pos: 32.5,12.5 - parent: 1 - type: Transform -- uid: 5260 - type: CableHV - components: - - pos: 32.5,11.5 - parent: 1 - type: Transform -- uid: 5261 - type: CableHV - components: - - pos: 32.5,10.5 - parent: 1 - type: Transform -- uid: 5262 - type: CableHV - components: - - pos: 32.5,9.5 - parent: 1 - type: Transform -- uid: 5263 - type: CableHV - components: - - pos: 32.5,8.5 - parent: 1 - type: Transform -- uid: 5264 - type: CableHV - components: - - pos: 32.5,7.5 - parent: 1 - type: Transform -- uid: 5265 - type: CableHV - components: - - pos: 31.5,7.5 - parent: 1 - type: Transform -- uid: 5266 - type: CableHV - components: - - pos: 31.5,6.5 - parent: 1 - type: Transform -- uid: 5267 - type: CableHV - components: - - pos: 31.5,5.5 - parent: 1 - type: Transform -- uid: 5268 - type: CableHV - components: - - pos: 31.5,4.5 - parent: 1 - type: Transform -- uid: 5269 - type: CableHV - components: - - pos: 31.5,3.5 - parent: 1 - type: Transform -- uid: 5270 - type: CableHV - components: - - pos: 31.5,2.5 - parent: 1 - type: Transform -- uid: 5271 - type: CableHV - components: - - pos: 31.5,1.5 - parent: 1 - type: Transform -- uid: 5272 - type: CableHV - components: - - pos: 18.5,12.5 - parent: 1 - type: Transform -- uid: 5273 - type: CableHV - components: - - pos: 31.5,0.5 - parent: 1 - type: Transform -- uid: 5274 - type: CableHV - components: - - pos: 32.5,0.5 - parent: 1 - type: Transform -- uid: 5275 - type: CableHV - components: - - pos: 32.5,-0.5 - parent: 1 - type: Transform -- uid: 5276 - type: CableHV - components: - - pos: 32.5,-1.5 - parent: 1 - type: Transform -- uid: 5277 - type: CableHV - components: - - pos: 32.5,-2.5 - parent: 1 - type: Transform -- uid: 5278 - type: CableHV - components: - - pos: 32.5,-3.5 - parent: 1 - type: Transform -- uid: 5279 - type: CableHV - components: - - pos: 32.5,-4.5 - parent: 1 - type: Transform -- uid: 5280 - type: CableHV - components: - - pos: 32.5,-5.5 - parent: 1 - type: Transform -- uid: 5281 - type: CableHV - components: - - pos: 32.5,-6.5 - parent: 1 - type: Transform -- uid: 5282 - type: CableHV - components: - - pos: 32.5,-7.5 - parent: 1 - type: Transform -- uid: 5283 - type: CableHV - components: - - pos: 32.5,-8.5 - parent: 1 - type: Transform -- uid: 5284 - type: CableHV - components: - - pos: 32.5,-9.5 - parent: 1 - type: Transform -- uid: 5285 - type: CableHV - components: - - pos: 33.5,-9.5 - parent: 1 - type: Transform -- uid: 5286 - type: CableHV - components: - - pos: 34.5,-9.5 - parent: 1 - type: Transform -- uid: 5287 - type: CableHV - components: - - pos: 35.5,-9.5 - parent: 1 - type: Transform -- uid: 5288 - type: CableHV - components: - - pos: 36.5,-9.5 - parent: 1 - type: Transform -- uid: 5289 - type: CableHV - components: - - pos: 37.5,-9.5 - parent: 1 - type: Transform -- uid: 5290 - type: CableHV - components: - - pos: 18.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5291 - type: CableHV - components: - - pos: 18.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5292 - type: CableHV - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5293 - type: CableHV - components: - - pos: 18.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5294 - type: CableHV - components: - - pos: 18.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5295 - type: CableHV - components: - - pos: 18.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5296 - type: CableHV - components: - - pos: 17.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5297 - type: CableHV - components: - - pos: 16.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5298 - type: CableHV - components: - - pos: 15.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5299 - type: CableHV - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5300 - type: CableHV - components: - - pos: 14.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5301 - type: CableHV - components: - - pos: 14.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5302 - type: CableHV - components: - - pos: 14.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5303 - type: CableHV - components: - - pos: 14.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5304 - type: CableHV - components: - - pos: 14.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5305 - type: CableHV - components: - - pos: 14.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5306 - type: CableHV - components: - - pos: 14.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5307 - type: CableHV - components: - - pos: 14.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5308 - type: CableHV - components: - - pos: 14.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5309 - type: CableHV - components: - - pos: 14.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5310 - type: CableHV - components: - - pos: 14.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5311 - type: CableHV - components: - - pos: 14.5,-5.5 - parent: 1 - type: Transform -- uid: 5312 - type: CableHV - components: - - pos: 14.5,-6.5 - parent: 1 - type: Transform -- uid: 5313 - type: CableHV - components: - - pos: 15.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5314 - type: CableHV - components: - - pos: 16.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5315 - type: CableHV - components: - - pos: 17.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5316 - type: CableHV - components: - - pos: 18.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5317 - type: CableHV - components: - - pos: 18.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5318 - type: CableHV - components: - - pos: 18.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5319 - type: CableHV - components: - - pos: 18.5,1.5 - parent: 1 - type: Transform -- uid: 5320 - type: CableHV - components: - - pos: 18.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5321 - type: CableHV - components: - - pos: 18.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5322 - type: CableHV - components: - - pos: 18.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5323 - type: CableHV - components: - - pos: 17.5,4.5 - parent: 1 - type: Transform -- uid: 5324 - type: CableHV - components: - - pos: 31.5,-9.5 - parent: 1 - type: Transform -- uid: 5325 - type: CableHV - components: - - pos: 30.5,-9.5 - parent: 1 - type: Transform -- uid: 5326 - type: CableHV - components: - - pos: 29.5,-9.5 - parent: 1 - type: Transform -- uid: 5327 - type: CableHV - components: - - pos: 28.5,-9.5 - parent: 1 - type: Transform -- uid: 5328 - type: CableHV - components: - - pos: 27.5,-9.5 - parent: 1 - type: Transform -- uid: 5329 - type: CableHV - components: - - pos: 26.5,-9.5 - parent: 1 - type: Transform -- uid: 5330 - type: CableHV - components: - - pos: 25.5,-9.5 - parent: 1 - type: Transform -- uid: 5331 - type: CableHV - components: - - pos: 24.5,-9.5 - parent: 1 - type: Transform -- uid: 5332 - type: CableHV - components: - - pos: 23.5,-9.5 - parent: 1 - type: Transform -- uid: 5333 - type: CableHV - components: - - pos: 22.5,-9.5 - parent: 1 - type: Transform -- uid: 5334 - type: CableHV - components: - - pos: 21.5,-9.5 - parent: 1 - type: Transform -- uid: 5335 - type: CableHV - components: - - pos: 20.5,-9.5 - parent: 1 - type: Transform -- uid: 5336 - type: CableHV - components: - - pos: 19.5,-9.5 - parent: 1 - type: Transform -- uid: 5337 - type: CableHV - components: - - pos: 18.5,-9.5 - parent: 1 - type: Transform -- uid: 5338 - type: CableHV - components: - - pos: 17.5,-9.5 - parent: 1 - type: Transform -- uid: 5339 - type: CableHV - components: - - pos: 16.5,-9.5 - parent: 1 - type: Transform -- uid: 5340 - type: CableHV - components: - - pos: 15.5,-9.5 - parent: 1 - type: Transform -- uid: 5341 - type: CableHV - components: - - pos: 14.5,-9.5 - parent: 1 - type: Transform -- uid: 5342 - type: CableHV - components: - - pos: 13.5,-9.5 - parent: 1 - type: Transform -- uid: 5343 - type: CableHV - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform -- uid: 5344 - type: CableHV - components: - - pos: 11.5,-9.5 - parent: 1 - type: Transform -- uid: 5345 - type: CableHV - components: - - pos: 11.5,-12.5 - parent: 1 - type: Transform -- uid: 5346 - type: CableHV - components: - - pos: 11.5,-11.5 - parent: 1 - type: Transform -- uid: 5347 - type: CableHV - components: - - pos: 11.5,-10.5 - parent: 1 - type: Transform -- uid: 5348 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5349 - type: CableHV - components: - - pos: 13.5,-13.5 - parent: 1 - type: Transform -- uid: 5350 - type: CableHV - components: - - pos: 10.5,-9.5 - parent: 1 - type: Transform -- uid: 5351 - type: CableHV - components: - - pos: 9.5,-9.5 - parent: 1 - type: Transform -- uid: 5352 - type: CableHV - components: - - pos: 8.5,-9.5 - parent: 1 - type: Transform -- uid: 5353 - type: CableHV - components: - - pos: 7.5,-9.5 - parent: 1 - type: Transform -- uid: 5354 - type: CableHV - components: - - pos: 6.5,-9.5 - parent: 1 - type: Transform -- uid: 5355 - type: CableHV - components: - - pos: 5.5,-9.5 - parent: 1 - type: Transform -- uid: 5356 - type: CableHV - components: - - pos: 4.5,-9.5 - parent: 1 - type: Transform -- uid: 5357 - type: CableHV - components: - - pos: 3.5,-9.5 - parent: 1 - type: Transform -- uid: 5358 - type: CableHV - components: - - pos: 2.5,-9.5 - parent: 1 - type: Transform -- uid: 5359 - type: CableHV - components: - - pos: 1.5,-9.5 - parent: 1 - type: Transform -- uid: 5360 - type: CableHV - components: - - pos: 0.5,-9.5 - parent: 1 - type: Transform -- uid: 5361 - type: CableHV - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform -- uid: 5362 - type: CableHV - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform -- uid: 5363 - type: CableHV - components: - - pos: -2.5,-9.5 - parent: 1 - type: Transform -- uid: 5364 - type: CableHV - components: - - pos: -3.5,-9.5 - parent: 1 - type: Transform -- uid: 5365 - type: CableHV - components: - - pos: -4.5,-9.5 - parent: 1 - type: Transform -- uid: 5366 - type: CableHV - components: - - pos: -5.5,-9.5 - parent: 1 - type: Transform -- uid: 5367 - type: CableHV - components: - - pos: -6.5,-9.5 - parent: 1 - type: Transform -- uid: 5368 - type: CableHV - components: - - pos: -7.5,-9.5 - parent: 1 - type: Transform -- uid: 5369 - type: CableHV - components: - - pos: -8.5,-9.5 - parent: 1 - type: Transform -- uid: 5370 - type: CableHV - components: - - pos: -9.5,-9.5 - parent: 1 - type: Transform -- uid: 5371 - type: CableHV - components: - - pos: -10.5,-9.5 - parent: 1 - type: Transform -- uid: 5372 - type: CableHV - components: - - pos: -11.5,-9.5 - parent: 1 - type: Transform -- uid: 5373 - type: CableHV - components: - - pos: -17.5,-9.5 - parent: 1 - type: Transform -- uid: 5374 - type: CableHV - components: - - pos: -18.5,-9.5 - parent: 1 - type: Transform -- uid: 5375 - type: CableHV - components: - - pos: -19.5,-9.5 - parent: 1 - type: Transform -- uid: 5376 - type: CableHV - components: - - pos: -20.5,-9.5 - parent: 1 - type: Transform -- uid: 5377 - type: CableHV - components: - - pos: -21.5,-9.5 - parent: 1 - type: Transform -- uid: 5378 - type: CableHV - components: - - pos: -22.5,-9.5 - parent: 1 - type: Transform -- uid: 5379 - type: CableHV - components: - - pos: -23.5,-9.5 - parent: 1 - type: Transform -- uid: 5380 - type: CableHV - components: - - pos: -24.5,-9.5 - parent: 1 - type: Transform -- uid: 5381 - type: CableHV - components: - - pos: -25.5,-9.5 - parent: 1 - type: Transform -- uid: 5382 - type: CableHV - components: - - pos: -26.5,-9.5 - parent: 1 - type: Transform -- uid: 5383 - type: CableHV - components: - - pos: -27.5,-9.5 - parent: 1 - type: Transform -- uid: 5384 - type: CableHV - components: - - pos: -28.5,-9.5 - parent: 1 - type: Transform -- uid: 5385 - type: CableHV - components: - - pos: -29.5,-9.5 - parent: 1 - type: Transform -- uid: 5386 - type: CableHV - components: - - pos: -30.5,-9.5 - parent: 1 - type: Transform -- uid: 5387 - type: CableHV - components: - - pos: -31.5,-9.5 - parent: 1 - type: Transform -- uid: 5388 - type: CableHV - components: - - pos: -32.5,-9.5 - parent: 1 - type: Transform -- uid: 5389 - type: CableHV - components: - - pos: -32.5,-7.5 - parent: 1 - type: Transform -- uid: 5390 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5391 - type: CableHV - components: - - pos: -32.5,-6.5 - parent: 1 - type: Transform -- uid: 5392 - type: CableHV - components: - - pos: -32.5,-5.5 - parent: 1 - type: Transform -- uid: 5393 - type: CableHV - components: - - pos: -32.5,-4.5 - parent: 1 - type: Transform -- uid: 5394 - type: CableHV - components: - - pos: -32.5,-3.5 - parent: 1 - type: Transform -- uid: 5395 - type: CableHV - components: - - pos: -32.5,-2.5 - parent: 1 - type: Transform -- uid: 5396 - type: CableHV - components: - - pos: -32.5,-1.5 - parent: 1 - type: Transform -- uid: 5397 - type: CableHV - components: - - pos: -32.5,-0.5 - parent: 1 - type: Transform -- uid: 5398 - type: CableHV - components: - - pos: -32.5,0.5 - parent: 1 - type: Transform -- uid: 5399 - type: CableHV - components: - - pos: -32.5,1.5 - parent: 1 - type: Transform -- uid: 5400 - type: CableHV - components: - - pos: -32.5,2.5 - parent: 1 - type: Transform -- uid: 5401 - type: CableHV - components: - - pos: -32.5,3.5 - parent: 1 - type: Transform -- uid: 5402 - type: CableHV - components: - - pos: -32.5,4.5 - parent: 1 - type: Transform -- uid: 5403 - type: CableHV - components: - - pos: -32.5,5.5 - parent: 1 - type: Transform -- uid: 5404 - type: CableHV - components: - - pos: -32.5,6.5 - parent: 1 - type: Transform -- uid: 5405 - type: CableHV - components: - - pos: -32.5,7.5 - parent: 1 - type: Transform -- uid: 5406 - type: CableHV - components: - - pos: -32.5,8.5 - parent: 1 - type: Transform -- uid: 5407 - type: CableHV - components: - - pos: -32.5,9.5 - parent: 1 - type: Transform -- uid: 5408 - type: CableHV - components: - - pos: -32.5,10.5 - parent: 1 - type: Transform -- uid: 5409 - type: CableHV - components: - - pos: -32.5,11.5 - parent: 1 - type: Transform -- uid: 5410 - type: CableHV - components: - - pos: -32.5,12.5 - parent: 1 - type: Transform -- uid: 5411 - type: CableHV - components: - - pos: -32.5,13.5 - parent: 1 - type: Transform -- uid: 5412 - type: CableHV - components: - - pos: -31.5,13.5 - parent: 1 - type: Transform -- uid: 5413 - type: CableHV - components: - - pos: -30.5,13.5 - parent: 1 - type: Transform -- uid: 5414 - type: CableHV - components: - - pos: -29.5,13.5 - parent: 1 - type: Transform -- uid: 5415 - type: CableHV - components: - - pos: -28.5,13.5 - parent: 1 - type: Transform -- uid: 5416 - type: CableHV - components: - - pos: -27.5,13.5 - parent: 1 - type: Transform -- uid: 5417 - type: CableHV - components: - - pos: -26.5,13.5 - parent: 1 - type: Transform -- uid: 5418 - type: CableHV - components: - - pos: -25.5,13.5 - parent: 1 - type: Transform -- uid: 5419 - type: CableHV - components: - - pos: -24.5,13.5 - parent: 1 - type: Transform -- uid: 5420 - type: CableHV - components: - - pos: -23.5,13.5 - parent: 1 - type: Transform -- uid: 5421 - type: CableHV - components: - - pos: -22.5,13.5 - parent: 1 - type: Transform -- uid: 5422 - type: CableHV - components: - - pos: -21.5,13.5 - parent: 1 - type: Transform -- uid: 5423 - type: CableHV - components: - - pos: -20.5,13.5 - parent: 1 - type: Transform -- uid: 5424 - type: CableHV - components: - - pos: -19.5,13.5 - parent: 1 - type: Transform -- uid: 5425 - type: CableHV - components: - - pos: -18.5,13.5 - parent: 1 - type: Transform -- uid: 5426 - type: CableHV - components: - - pos: -17.5,13.5 - parent: 1 - type: Transform -- uid: 5427 - type: CableHV - components: - - pos: -16.5,13.5 - parent: 1 - type: Transform -- uid: 5428 - type: CableHV - components: - - pos: -15.5,13.5 - parent: 1 - type: Transform -- uid: 5429 - type: CableHV - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform -- uid: 5430 - type: CableHV - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform -- uid: 5431 - type: CableHV - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform -- uid: 5432 - type: CableHV - components: - - pos: -11.5,13.5 - parent: 1 - type: Transform -- uid: 5433 - type: CableHV - components: - - pos: -10.5,13.5 - parent: 1 - type: Transform -- uid: 5434 - type: CableHV - components: - - pos: -9.5,13.5 - parent: 1 - type: Transform -- uid: 5435 - type: CableHV - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform -- uid: 5436 - type: CableHV - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform -- uid: 5437 - type: CableHV - components: - - pos: -6.5,13.5 - parent: 1 - type: Transform -- uid: 5438 - type: CableHV - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform -- uid: 5439 - type: CableHV - components: - - pos: -4.5,13.5 - parent: 1 - type: Transform -- uid: 5440 - type: CableHV - components: - - pos: -3.5,13.5 - parent: 1 - type: Transform -- uid: 5441 - type: CableHV - components: - - pos: -2.5,13.5 - parent: 1 - type: Transform -- uid: 5442 - type: CableHV - components: - - pos: -1.5,13.5 - parent: 1 - type: Transform -- uid: 5443 - type: CableHV - components: - - pos: -0.5,13.5 - parent: 1 - type: Transform -- uid: 5444 - type: CableHV - components: - - pos: -30.5,14.5 - parent: 1 - type: Transform -- uid: 5445 - type: CableHV - components: - - pos: -30.5,15.5 - parent: 1 - type: Transform -- uid: 5446 - type: CableHV - components: - - pos: -30.5,16.5 - parent: 1 - type: Transform -- uid: 5447 - type: CableHV - components: - - pos: -30.5,17.5 - parent: 1 - type: Transform -- uid: 5448 - type: CableHV - components: - - pos: -30.5,18.5 - parent: 1 - type: Transform -- uid: 5449 - type: CableHV - components: - - pos: -30.5,19.5 - parent: 1 - type: Transform -- uid: 5450 - type: CableHV - components: - - pos: -30.5,20.5 - parent: 1 - type: Transform -- uid: 5451 - type: CableHV - components: - - pos: -30.5,21.5 - parent: 1 - type: Transform -- uid: 5452 - type: CableHV - components: - - pos: -30.5,22.5 - parent: 1 - type: Transform -- uid: 5453 - type: CableHV - components: - - pos: -30.5,23.5 - parent: 1 - type: Transform -- uid: 5454 - type: CableHV - components: - - pos: -30.5,24.5 - parent: 1 - type: Transform -- uid: 5455 - type: CableHV - components: - - pos: -30.5,25.5 - parent: 1 - type: Transform -- uid: 5456 - type: CableHV - components: - - pos: -30.5,26.5 - parent: 1 - type: Transform -- uid: 5457 - type: CableHV - components: - - pos: -30.5,27.5 - parent: 1 - type: Transform -- uid: 5458 - type: CableHV - components: - - pos: -30.5,28.5 - parent: 1 - type: Transform -- uid: 5459 - type: CableHV - components: - - pos: -30.5,29.5 - parent: 1 - type: Transform -- uid: 5460 - type: CableHV - components: - - pos: -30.5,30.5 - parent: 1 - type: Transform -- uid: 5461 - type: CableHV - components: - - pos: -30.5,31.5 - parent: 1 - type: Transform -- uid: 5462 - type: CableHV - components: - - pos: -30.5,32.5 - parent: 1 - type: Transform -- uid: 5463 - type: CableHV - components: - - pos: -30.5,33.5 - parent: 1 - type: Transform -- uid: 5464 - type: CableHV - components: - - pos: -30.5,34.5 - parent: 1 - type: Transform -- uid: 5465 - type: CableHV - components: - - pos: -30.5,35.5 - parent: 1 - type: Transform -- uid: 5466 - type: CableHV - components: - - pos: -30.5,36.5 - parent: 1 - type: Transform -- uid: 5467 - type: CableHV - components: - - pos: -29.5,36.5 - parent: 1 - type: Transform -- uid: 5468 - type: CableHV - components: - - pos: -28.5,36.5 - parent: 1 - type: Transform -- uid: 5469 - type: CableHV - components: - - pos: -27.5,36.5 - parent: 1 - type: Transform -- uid: 5470 - type: CableHV - components: - - pos: -26.5,36.5 - parent: 1 - type: Transform -- uid: 5471 - type: CableHV - components: - - pos: -25.5,36.5 - parent: 1 - type: Transform -- uid: 5472 - type: CableHV - components: - - pos: -24.5,36.5 - parent: 1 - type: Transform -- uid: 5473 - type: CableHV - components: - - pos: -23.5,36.5 - parent: 1 - type: Transform -- uid: 5474 - type: CableHV - components: - - pos: -22.5,36.5 - parent: 1 - type: Transform -- uid: 5475 - type: CableHV - components: - - pos: -26.5,-8.5 - parent: 1 - type: Transform -- uid: 5476 - type: CableHV - components: - - pos: -26.5,-7.5 - parent: 1 - type: Transform -- uid: 5477 - type: CableHV - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform -- uid: 5478 - type: CableHV - components: - - pos: -26.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5479 - type: CableHV - components: - - pos: -25.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5480 - type: CableHV - components: - - pos: -24.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5481 - type: CableHV - components: - - pos: -23.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5482 - type: CableHV - components: - - pos: -22.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5483 - type: CableHV - components: - - pos: -21.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5484 - type: CableHV - components: - - pos: -20.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5485 - type: CableHV - components: - - pos: -19.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5486 - type: CableHV - components: - - pos: -19.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5487 - type: CableHV - components: - - pos: -19.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5488 - type: CableHV - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5489 - type: CableHV - components: - - pos: -19.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5490 - type: CableHV - components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5491 - type: CableHV - components: - - pos: -19.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5492 - type: CableHV - components: - - pos: -19.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5493 - type: CableHV - components: - - pos: -19.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5494 - type: CableHV - components: - - pos: -19.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5495 - type: CableHV - components: - - pos: -19.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5496 - type: CableHV - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5497 - type: CableHV - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5498 - type: CableHV - components: - - pos: -19.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5499 - type: CableHV - components: - - pos: -18.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5500 - type: CableHV - components: - - pos: -17.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5501 - type: CableHV - components: - - pos: -16.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5502 - type: CableHV - components: - - pos: -15.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5503 - type: CableHV - components: - - pos: -15.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5504 - type: CableHV - components: - - pos: -15.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5505 - type: CableHV - components: - - pos: -15.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5506 - type: CableHV - components: - - pos: -15.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5507 - type: CableHV - components: - - pos: -15.5,12.5 - parent: 1 - type: Transform -- uid: 5508 - type: CableHV - components: - - pos: -20.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5509 - type: CableHV - components: - - pos: -21.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5510 - type: CableHV - components: - - pos: -22.5,-2.5 - parent: 1 - type: Transform -- uid: 5511 - type: CableHV - components: - - pos: -23.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5512 - type: CableHV - components: - - pos: -24.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5513 - type: CableHV - components: - - pos: -25.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5514 - type: CableHV - components: - - pos: -25.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5515 - type: CableHV - components: - - pos: -25.5,-0.5 - parent: 1 - type: Transform -- uid: 5516 - type: CableHV - components: - - pos: -23.5,35.5 - parent: 1 - type: Transform -- uid: 5517 - type: CableHV - components: - - pos: -23.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5518 - type: CableHV - components: - - pos: -23.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5519 - type: CableHV - components: - - pos: -23.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5520 - type: CableHV - components: - - pos: -23.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5521 - type: CableHV - components: - - pos: -23.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5522 - type: CableHV - components: - - pos: -23.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5523 - type: CableHV - components: - - pos: -23.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5524 - type: CableHV - components: - - pos: -23.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5525 - type: CableHV - components: - - pos: -23.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5526 - type: CableHV - components: - - pos: -23.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5527 - type: CableHV - components: - - pos: -22.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5528 - type: CableHV - components: - - pos: -21.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5529 - type: CableHV - components: - - pos: -20.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5530 - type: WallReinforced - components: - - pos: -19.5,29.5 - parent: 1 - type: Transform -- uid: 5531 - type: Railing - components: - - pos: -15.5,32.5 - parent: 1 - type: Transform -- uid: 5532 - type: Railing - components: - - pos: -14.5,32.5 - parent: 1 - type: Transform -- uid: 5533 - type: Railing - components: - - pos: -13.5,32.5 - parent: 1 - type: Transform -- uid: 5534 - type: MachineAnomalyVessel - components: - - rot: -1.5707963267948966 rad - pos: -14.5,18.5 - parent: 1 - type: Transform -- uid: 5535 - type: MachineAnomalyVessel - components: - - rot: -1.5707963267948966 rad - pos: -14.5,17.5 - parent: 1 - type: Transform -- uid: 5536 - type: CableHV - components: - - pos: -21.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5537 - type: CableHV - components: - - pos: -21.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5538 - type: CableHV - components: - - pos: -24.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5539 - type: CableHV - components: - - pos: -25.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5540 - type: CableHV - components: - - pos: -26.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5541 - type: CableHV - components: - - pos: -27.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5542 - type: CableHV - components: - - pos: -27.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5543 - type: CableHV - components: - - pos: -27.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5544 - type: CableHV - components: - - pos: -27.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5545 - type: CableHV - components: - - pos: -27.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5546 - type: CableHV - components: - - pos: -27.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5547 - type: CableHV - components: - - pos: -27.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5548 - type: CableHV - components: - - pos: -27.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5549 - type: CableHV - components: - - pos: -27.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5550 - type: CableHV - components: - - pos: -26.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5551 - type: CableHV - components: - - pos: -25.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5552 - type: CableHV - components: - - pos: -25.5,15.5 - parent: 1 - type: Transform -- uid: 5553 - type: CableHV - components: - - pos: -25.5,16.5 - parent: 1 - type: Transform -- uid: 5554 - type: Barricade - components: - - pos: -19.5,8.5 - parent: 1 - type: Transform -- uid: 5555 - type: CrateEmptySpawner - components: - - pos: -20.5,9.5 - parent: 1 - type: Transform -- uid: 5556 - type: CrateFilledSpawner - components: - - pos: -20.5,10.5 - parent: 1 - type: Transform -- uid: 5557 - type: CableHV - components: - - pos: -28.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5558 - type: CableHV - components: - - pos: -29.5,23.5 - parent: 1 - type: Transform -- uid: 5559 - type: CableHV - components: - - pos: 39.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5560 - type: CableHV - components: - - pos: 37.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5561 - type: CableHV - components: - - pos: 36.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5562 - type: CableHV - components: - - pos: 35.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5563 - type: CableHV - components: - - pos: 34.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5564 - type: CableHV - components: - - pos: 33.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5565 - type: CableHV - components: - - pos: 32.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5566 - type: CableHV - components: - - pos: 32.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5567 - type: CableHV - components: - - pos: 32.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5568 - type: CableHV - components: - - pos: 32.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5569 - type: CableHV - components: - - pos: 32.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5570 - type: CableHV - components: - - pos: 31.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5571 - type: CableHV - components: - - pos: 30.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5572 - type: CableHV - components: - - pos: 30.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5573 - type: CableHV - components: - - pos: 30.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5574 - type: CableHV - components: - - pos: 30.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5575 - type: CableHV - components: - - pos: 30.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5576 - type: CableHV - components: - - pos: 30.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5577 - type: CableHV - components: - - pos: 30.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5578 - type: CableHV - components: - - pos: 30.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5579 - type: CableHV - components: - - pos: 30.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5580 - type: CableHV - components: - - pos: 30.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5581 - type: CableHV - components: - - pos: 29.5,-19.5 - parent: 1 - type: Transform -- uid: 5582 - type: CableHV - components: - - pos: 28.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5583 - type: CableHV - components: - - pos: 27.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5584 - type: CableHV - components: - - pos: 26.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5585 - type: CableHV - components: - - pos: 26.5,-18.5 - parent: 1 - type: Transform -- uid: 5586 - type: CableHV - components: - - pos: 11.5,-34.5 - parent: 1 - type: Transform -- uid: 5587 - type: CableHV - components: - - pos: 10.5,-34.5 - parent: 1 - type: Transform -- uid: 5588 - type: CableHV - components: - - pos: 9.5,-34.5 - parent: 1 - type: Transform -- uid: 5589 - type: CableHV - components: - - pos: 8.5,-34.5 - parent: 1 - type: Transform -- uid: 5590 - type: CableHV - components: - - pos: 13.5,-31.5 - parent: 1 - type: Transform -- uid: 5591 - type: CableHV - components: - - pos: 13.5,-30.5 - parent: 1 - type: Transform -- uid: 5592 - type: CableHV - components: - - pos: 13.5,-29.5 - parent: 1 - type: Transform -- uid: 5593 - type: CableHV - components: - - pos: 15.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5594 - type: Catwalk - components: - - pos: 15.5,-33.5 - parent: 1 - type: Transform -- uid: 5595 - type: CableHV - components: - - pos: 15.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5596 - type: CableHV - components: - - pos: 15.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5597 - type: Catwalk - components: - - pos: 16.5,-29.5 - parent: 1 - type: Transform -- uid: 5598 - type: Catwalk - components: - - pos: 15.5,-31.5 - parent: 1 - type: Transform -- uid: 5599 - type: CableHV - components: - - pos: 15.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5600 - type: CableHV - components: - - pos: 16.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5601 - type: CableHV - components: - - pos: 17.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5602 - type: CableHV - components: - - pos: 18.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5603 - type: CableHV - components: - - pos: 19.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5604 - type: CableHV - components: - - pos: 20.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5605 - type: CableHV - components: - - pos: 21.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5606 - type: CableHV - components: - - pos: 21.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5607 - type: CableHV - components: - - pos: 21.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5608 - type: CableHV - components: - - pos: 22.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5609 - type: CableHV - components: - - pos: 22.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5610 - type: CableHV - components: - - pos: 22.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5611 - type: CableHV - components: - - pos: 22.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5612 - type: CableHV - components: - - pos: 23.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5613 - type: CableHV - components: - - pos: 24.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5614 - type: CableHV - components: - - pos: 25.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5615 - type: CableHV - components: - - pos: 26.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5616 - type: CableHV - components: - - pos: 27.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5617 - type: CableHV - components: - - pos: 28.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5618 - type: CableHV - components: - - pos: 29.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5619 - type: FirelockGlass - components: - - pos: -13.5,-9.5 - parent: 1 - type: Transform -- uid: 5620 - type: FirelockGlass - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform -- uid: 5621 - type: FirelockGlass - components: - - pos: -13.5,14.5 - parent: 1 - type: Transform -- uid: 5622 - type: FirelockGlass - components: - - pos: -13.5,15.5 - parent: 1 - type: Transform -- uid: 5623 - type: FirelockGlass - components: - - pos: 12.5,13.5 - parent: 1 - type: Transform -- uid: 5624 - type: FirelockGlass - components: - - pos: 12.5,14.5 - parent: 1 - type: Transform -- uid: 5625 - type: FirelockGlass - components: - - pos: 12.5,15.5 - parent: 1 - type: Transform -- uid: 5626 - type: FirelockGlass - components: - - pos: 12.5,-7.5 - parent: 1 - type: Transform -- uid: 5627 - type: FirelockGlass - components: - - pos: 12.5,-8.5 - parent: 1 - type: Transform -- uid: 5628 - type: FirelockGlass - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform -- uid: 5629 - type: FirelockGlass - components: - - pos: 13.5,36.5 - parent: 1 - type: Transform -- uid: 5630 - type: FirelockGlass - components: - - pos: 13.5,37.5 - parent: 1 - type: Transform -- uid: 5631 - type: FirelockGlass - components: - - pos: 13.5,38.5 - parent: 1 - type: Transform -- uid: 5632 - type: FirelockGlass - components: - - pos: -17.5,38.5 - parent: 1 - type: Transform -- uid: 5633 - type: FirelockGlass - components: - - pos: -17.5,37.5 - parent: 1 - type: Transform -- uid: 5634 - type: FirelockGlass - components: - - pos: -17.5,36.5 - parent: 1 - type: Transform -- uid: 5635 - type: FirelockGlass - components: - - pos: -1.5,39.5 - parent: 1 - type: Transform -- uid: 5636 - type: FirelockGlass - components: - - pos: -0.5,39.5 - parent: 1 - type: Transform -- uid: 5637 - type: FirelockGlass - components: - - pos: 0.5,39.5 - parent: 1 - type: Transform -- uid: 5638 - type: FirelockGlass - components: - - pos: -1.5,35.5 - parent: 1 - type: Transform -- uid: 5639 - type: FirelockGlass - components: - - pos: -0.5,35.5 - parent: 1 - type: Transform -- uid: 5640 - type: FirelockGlass - components: - - pos: 0.5,35.5 - parent: 1 - type: Transform -- uid: 5641 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -7.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 5642 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -6.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 5643 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -5.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 5644 - type: FirelockGlass - components: - - pos: 8.5,36.5 - parent: 1 - type: Transform -- uid: 5645 - type: FirelockGlass - components: - - pos: 8.5,37.5 - parent: 1 - type: Transform -- uid: 5646 - type: FirelockGlass - components: - - pos: 8.5,38.5 - parent: 1 - type: Transform -- uid: 5647 - type: AirlockGlass - components: - - pos: -33.5,15.5 - parent: 1 - type: Transform -- uid: 5648 - type: FirelockGlass - components: - - pos: -2.5,19.5 - parent: 1 - type: Transform -- uid: 5649 - type: AirlockGlass - components: - - pos: -33.5,14.5 - parent: 1 - type: Transform -- uid: 5650 - type: AirlockGlass - components: - - pos: -33.5,13.5 - parent: 1 - type: Transform -- uid: 5651 - type: FirelockGlass - components: - - pos: -2.5,18.5 - parent: 1 - type: Transform -- uid: 5652 - type: FirelockGlass - components: - - pos: -2.5,17.5 - parent: 1 - type: Transform -- uid: 5653 - type: FirelockGlass - components: - - pos: -3.5,16.5 - parent: 1 - type: Transform -- uid: 5654 - type: FirelockGlass - components: - - pos: -4.5,16.5 - parent: 1 - type: Transform -- uid: 5655 - type: FirelockGlass - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform -- uid: 5656 - type: FirelockGlass - components: - - pos: -5.5,20.5 - parent: 1 - type: Transform -- uid: 5657 - type: FirelockGlass - components: - - pos: -4.5,20.5 - parent: 1 - type: Transform -- uid: 5658 - type: FirelockGlass - components: - - pos: -1.5,16.5 - parent: 1 - type: Transform -- uid: 5659 - type: FirelockGlass - components: - - pos: -0.5,16.5 - parent: 1 - type: Transform -- uid: 5660 - type: FirelockGlass - components: - - pos: 0.5,16.5 - parent: 1 - type: Transform -- uid: 5661 - type: FirelockGlass - components: - - pos: 2.5,16.5 - parent: 1 - type: Transform -- uid: 5662 - type: FirelockGlass - components: - - pos: 3.5,16.5 - parent: 1 - type: Transform -- uid: 5663 - type: FirelockGlass - components: - - pos: 4.5,16.5 - parent: 1 - type: Transform -- uid: 5664 - type: FirelockGlass - components: - - pos: 1.5,17.5 - parent: 1 - type: Transform -- uid: 5665 - type: FirelockGlass - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform -- uid: 5666 - type: FirelockGlass - components: - - pos: 1.5,19.5 - parent: 1 - type: Transform -- uid: 5667 - type: FirelockGlass - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform -- uid: 5668 - type: FirelockGlass - components: - - pos: 4.5,20.5 - parent: 1 - type: Transform -- uid: 5669 - type: FirelockGlass - components: - - pos: -22.5,12.5 - parent: 1 - type: Transform -- uid: 5670 - type: FirelockGlass - components: - - pos: -29.5,10.5 - parent: 1 - type: Transform -- uid: 5671 - type: FirelockGlass - components: - - pos: -29.5,13.5 - parent: 1 - type: Transform -- uid: 5672 - type: FirelockGlass - components: - - pos: -29.5,14.5 - parent: 1 - type: Transform -- uid: 5673 - type: FirelockGlass - components: - - pos: -29.5,15.5 - parent: 1 - type: Transform -- uid: 5674 - type: FirelockGlass - components: - - pos: -33.5,13.5 - parent: 1 - type: Transform -- uid: 5675 - type: FirelockGlass - components: - - pos: -33.5,14.5 - parent: 1 - type: Transform -- uid: 5676 - type: FirelockGlass - components: - - pos: -33.5,15.5 - parent: 1 - type: Transform -- uid: 5677 - type: FirelockGlass - components: - - pos: -32.5,16.5 - parent: 1 - type: Transform -- uid: 5678 - type: FirelockGlass - components: - - pos: -31.5,16.5 - parent: 1 - type: Transform -- uid: 5679 - type: FirelockGlass - components: - - pos: -30.5,16.5 - parent: 1 - type: Transform -- uid: 5680 - type: FirelockGlass - components: - - pos: -32.5,12.5 - parent: 1 - type: Transform -- uid: 5681 - type: FirelockGlass - components: - - pos: -31.5,12.5 - parent: 1 - type: Transform -- uid: 5682 - type: FirelockGlass - components: - - pos: -30.5,12.5 - parent: 1 - type: Transform -- uid: 5683 - type: FirelockGlass - components: - - pos: 20.5,13.5 - parent: 1 - type: Transform -- uid: 5684 - type: FirelockGlass - components: - - pos: 20.5,14.5 - parent: 1 - type: Transform -- uid: 5685 - type: FirelockGlass - components: - - pos: 20.5,15.5 - parent: 1 - type: Transform -- uid: 5686 - type: FirelockGlass - components: - - pos: 23.5,39.5 - parent: 1 - type: Transform -- uid: 5687 - type: FirelockGlass - components: - - pos: 22.5,39.5 - parent: 1 - type: Transform -- uid: 5688 - type: FirelockGlass - components: - - pos: 17.5,39.5 - parent: 1 - type: Transform -- uid: 5689 - type: FirelockGlass - components: - - pos: 18.5,39.5 - parent: 1 - type: Transform -- uid: 5690 - type: FirelockGlass - components: - - pos: 14.5,39.5 - parent: 1 - type: Transform -- uid: 5691 - type: FirelockGlass - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform -- uid: 5692 - type: FirelockGlass - components: - - pos: 38.5,36.5 - parent: 1 - type: Transform -- uid: 5693 - type: FirelockGlass - components: - - pos: 38.5,37.5 - parent: 1 - type: Transform -- uid: 5694 - type: FirelockGlass - components: - - pos: 38.5,38.5 - parent: 1 - type: Transform -- uid: 5695 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,35.5 - parent: 1 - type: Transform -- uid: 5696 - type: WallSolid - components: - - pos: 28.5,16.5 - parent: 1 - type: Transform -- uid: 5697 - type: FirelockGlass - components: - - pos: 29.5,35.5 - parent: 1 - type: Transform -- uid: 5698 - type: FirelockGlass - components: - - pos: 30.5,35.5 - parent: 1 - type: Transform -- uid: 5699 - type: FirelockGlass - components: - - pos: 31.5,35.5 - parent: 1 - type: Transform -- uid: 5700 - type: FirelockGlass - components: - - pos: 32.5,35.5 - parent: 1 - type: Transform -- uid: 5701 - type: FirelockGlass - components: - - pos: 29.5,16.5 - parent: 1 - type: Transform -- uid: 5702 - type: FirelockGlass - components: - - pos: 30.5,16.5 - parent: 1 - type: Transform -- uid: 5703 - type: FirelockGlass - components: - - pos: 31.5,16.5 - parent: 1 - type: Transform -- uid: 5704 - type: FirelockGlass - components: - - pos: 32.5,16.5 - parent: 1 - type: Transform -- uid: 5705 - type: Window - components: - - pos: -47.5,39.5 - parent: 1 - type: Transform -- uid: 5706 - type: CableHV - components: - - pos: -32.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5707 - type: Grille - components: - - pos: -46.5,39.5 - parent: 1 - type: Transform -- uid: 5708 - type: FirelockGlass - components: - - pos: 28.5,36.5 - parent: 1 - type: Transform -- uid: 5709 - type: FirelockGlass - components: - - pos: 28.5,37.5 - parent: 1 - type: Transform -- uid: 5710 - type: FirelockGlass - components: - - pos: 28.5,38.5 - parent: 1 - type: Transform -- uid: 5711 - type: FirelockGlass - components: - - pos: 30.5,42.5 - parent: 1 - type: Transform -- uid: 5712 - type: FirelockGlass - components: - - pos: 31.5,42.5 - parent: 1 - type: Transform -- uid: 5713 - type: FirelockGlass - components: - - pos: 30.5,50.5 - parent: 1 - type: Transform -- uid: 5714 - type: FirelockGlass - components: - - pos: 31.5,50.5 - parent: 1 - type: Transform -- uid: 5715 - type: FirelockGlass - components: - - pos: 38.5,15.5 - parent: 1 - type: Transform -- uid: 5716 - type: FirelockGlass - components: - - pos: 38.5,14.5 - parent: 1 - type: Transform -- uid: 5717 - type: FirelockGlass - components: - - pos: 38.5,13.5 - parent: 1 - type: Transform -- uid: 5718 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 29.5,12.5 - parent: 1 - type: Transform -- uid: 5719 - type: FirelockGlass - components: - - pos: 30.5,12.5 - parent: 1 - type: Transform -- uid: 5720 - type: FirelockGlass - components: - - pos: 31.5,12.5 - parent: 1 - type: Transform -- uid: 5721 - type: FirelockGlass - components: - - pos: 32.5,12.5 - parent: 1 - type: Transform -- uid: 5722 - type: FirelockGlass - components: - - pos: 23.5,16.5 - parent: 1 - type: Transform -- uid: 5723 - type: FirelockGlass - components: - - pos: 24.5,16.5 - parent: 1 - type: Transform -- uid: 5724 - type: FirelockGlass - components: - - pos: 25.5,16.5 - parent: 1 - type: Transform -- uid: 5725 - type: FirelockGlass - components: - - pos: 28.5,19.5 - parent: 1 - type: Transform -- uid: 5726 - type: FirelockGlass - components: - - pos: 28.5,20.5 - parent: 1 - type: Transform -- uid: 5727 - type: FirelockGlass - components: - - pos: 28.5,21.5 - parent: 1 - type: Transform -- uid: 5728 - type: WallSolid - components: - - pos: 27.5,24.5 - parent: 1 - type: Transform -- uid: 5729 - type: WallSolid - components: - - pos: 28.5,24.5 - parent: 1 - type: Transform -- uid: 5730 - type: Grille - components: - - pos: 21.5,16.5 - parent: 1 - type: Transform -- uid: 5731 - type: Grille - components: - - pos: 22.5,16.5 - parent: 1 - type: Transform -- uid: 5732 - type: Grille - components: - - pos: 26.5,16.5 - parent: 1 - type: Transform -- uid: 5733 - type: Grille - components: - - pos: 27.5,16.5 - parent: 1 - type: Transform -- uid: 5734 - type: Grille - components: - - pos: 28.5,17.5 - parent: 1 - type: Transform -- uid: 5735 - type: Grille - components: - - pos: 28.5,18.5 - parent: 1 - type: Transform -- uid: 5736 - type: Grille - components: - - pos: 28.5,22.5 - parent: 1 - type: Transform -- uid: 5737 - type: Grille - components: - - pos: 28.5,23.5 - parent: 1 - type: Transform -- uid: 5738 - type: Window - components: - - pos: 21.5,16.5 - parent: 1 - type: Transform -- uid: 5739 - type: Window - components: - - pos: 22.5,16.5 - parent: 1 - type: Transform -- uid: 5740 - type: Window - components: - - pos: 26.5,16.5 - parent: 1 - type: Transform -- uid: 5741 - type: Window - components: - - pos: 27.5,16.5 - parent: 1 - type: Transform -- uid: 5742 - type: Window - components: - - pos: 28.5,17.5 - parent: 1 - type: Transform -- uid: 5743 - type: Window - components: - - pos: 28.5,18.5 - parent: 1 - type: Transform -- uid: 5744 - type: Window - components: - - pos: 28.5,22.5 - parent: 1 - type: Transform -- uid: 5745 - type: Window - components: - - pos: 28.5,23.5 - parent: 1 - type: Transform -- uid: 5746 - type: FirelockGlass - components: - - pos: -5.5,-10.5 - parent: 1 - type: Transform -- uid: 5747 - type: FirelockGlass - components: - - pos: -4.5,-10.5 - parent: 1 - type: Transform -- uid: 5748 - type: FirelockGlass - components: - - pos: -3.5,-10.5 - parent: 1 - type: Transform -- uid: 5749 - type: FirelockGlass - components: - - pos: -1.5,-10.5 - parent: 1 - type: Transform -- uid: 5750 - type: FirelockGlass - components: - - pos: -0.5,-10.5 - parent: 1 - type: Transform -- uid: 5751 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 28.5,31.5 - parent: 1 - type: Transform -- uid: 5752 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 28.5,34.5 - parent: 1 - type: Transform -- uid: 5753 - type: FirelockGlass - components: - - pos: 0.5,-10.5 - parent: 1 - type: Transform -- uid: 5754 - type: FirelockGlass - components: - - pos: 2.5,-10.5 - parent: 1 - type: Transform -- uid: 5755 - type: FirelockGlass - components: - - pos: 3.5,-10.5 - parent: 1 - type: Transform -- uid: 5756 - type: FirelockGlass - components: - - pos: 4.5,-10.5 - parent: 1 - type: Transform -- uid: 5757 - type: FirelockGlass - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform -- uid: 5758 - type: FirelockGlass - components: - - pos: -2.5,-6.5 - parent: 1 - type: Transform -- uid: 5759 - type: FirelockGlass - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform -- uid: 5760 - type: FirelockGlass - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform -- uid: 5761 - type: FirelockGlass - components: - - pos: 5.5,-12.5 - parent: 1 - type: Transform -- uid: 5762 - type: FirelockGlass - components: - - pos: 5.5,-13.5 - parent: 1 - type: Transform -- uid: 5763 - type: FirelockGlass - components: - - pos: -6.5,-12.5 - parent: 1 - type: Transform -- uid: 5764 - type: FirelockGlass - components: - - pos: -6.5,-13.5 - parent: 1 - type: Transform -- uid: 5765 - type: FirelockGlass - components: - - pos: -12.5,-10.5 - parent: 1 - type: Transform -- uid: 5766 - type: FirelockGlass - components: - - pos: -11.5,-10.5 - parent: 1 - type: Transform -- uid: 5767 - type: FirelockGlass - components: - - pos: 11.5,-10.5 - parent: 1 - type: Transform -- uid: 5768 - type: FirelockGlass - components: - - pos: 10.5,-10.5 - parent: 1 - type: Transform -- uid: 5769 - type: FirelockGlass - components: - - pos: -3.5,12.5 - parent: 1 - type: Transform -- uid: 5770 - type: FirelockGlass - components: - - pos: -2.5,12.5 - parent: 1 - type: Transform -- uid: 5771 - type: FirelockGlass - components: - - pos: 1.5,12.5 - parent: 1 - type: Transform -- uid: 5772 - type: FirelockGlass - components: - - pos: 2.5,12.5 - parent: 1 - type: Transform -- uid: 5773 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 1.5,80.5 - parent: 1 - type: Transform -- uid: 5774 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -1.5,80.5 - parent: 1 - type: Transform -- uid: 5775 - type: WallSolid - components: - - pos: 5.5,12.5 - parent: 1 - type: Transform -- uid: 5776 - type: FirelockGlass - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform -- uid: 5777 - type: FirelockGlass - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform -- uid: 5778 - type: FirelockGlass - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform -- uid: 5779 - type: FirelockGlass - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform -- uid: 5780 - type: FirelockGlass - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform -- uid: 5781 - type: FirelockGlass - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform -- uid: 5782 - type: FirelockGlass - components: - - pos: -9.5,5.5 - parent: 1 - type: Transform -- uid: 5783 - type: FirelockGlass - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform -- uid: 5784 - type: FirelockGlass - components: - - pos: 4.5,-1.5 - parent: 1 - type: Transform -- uid: 5785 - type: FirelockGlass - components: - - pos: 4.5,-2.5 - parent: 1 - type: Transform -- uid: 5786 - type: Grille - components: - - pos: 4.5,-5.5 - parent: 1 - type: Transform -- uid: 5787 - type: FirelockGlass - components: - - pos: 9.5,-5.5 - parent: 1 - type: Transform -- uid: 5788 - type: FirelockGlass - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform -- uid: 5789 - type: FirelockGlass - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform -- uid: 5790 - type: FirelockGlass - components: - - pos: 28.5,3.5 - parent: 1 - type: Transform -- uid: 5791 - type: FirelockGlass - components: - - pos: 26.5,3.5 - parent: 1 - type: Transform -- uid: 5792 - type: FirelockGlass - components: - - pos: 28.5,6.5 - parent: 1 - type: Transform -- uid: 5793 - type: FirelockGlass - components: - - pos: 29.5,-10.5 - parent: 1 - type: Transform -- uid: 5794 - type: Grille - components: - - pos: 28.5,-10.5 - parent: 1 - type: Transform -- uid: 5795 - type: FirelockGlass - components: - - pos: 23.5,-9.5 - parent: 1 - type: Transform -- uid: 5796 - type: FirelockGlass - components: - - pos: 23.5,-8.5 - parent: 1 - type: Transform -- uid: 5797 - type: FirelockGlass - components: - - pos: 23.5,-7.5 - parent: 1 - type: Transform -- uid: 5798 - type: FirelockGlass - components: - - pos: 38.5,-7.5 - parent: 1 - type: Transform -- uid: 5799 - type: FirelockGlass - components: - - pos: 38.5,-8.5 - parent: 1 - type: Transform -- uid: 5800 - type: FirelockGlass - components: - - pos: 38.5,-9.5 - parent: 1 - type: Transform -- uid: 5801 - type: FirelockGlass - components: - - pos: 25.5,-6.5 - parent: 1 - type: Transform -- uid: 5802 - type: FirelockGlass - components: - - pos: 26.5,-6.5 - parent: 1 - type: Transform -- uid: 5803 - type: WallReinforced - components: - - pos: 25.5,-11.5 - parent: 1 - type: Transform -- uid: 5804 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-6.5 - parent: 1 - type: Transform -- uid: 5805 - type: FirelockGlass - components: - - pos: 30.5,-6.5 - parent: 1 - type: Transform -- uid: 5806 - type: FirelockGlass - components: - - pos: 31.5,-6.5 - parent: 1 - type: Transform -- uid: 5807 - type: FirelockGlass - components: - - pos: 32.5,-6.5 - parent: 1 - type: Transform -- uid: 5808 - type: FirelockGlass - components: - - pos: -30.5,-6.5 - parent: 1 - type: Transform -- uid: 5809 - type: FirelockGlass - components: - - pos: -32.5,-6.5 - parent: 1 - type: Transform -- uid: 5810 - type: FirelockGlass - components: - - pos: -31.5,-6.5 - parent: 1 - type: Transform -- uid: 5811 - type: SheetPlastic - components: - - pos: -7.2642546,64.5313 - parent: 1 - type: Transform -- uid: 5812 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: 48.5,44.5 - parent: 1 - type: Transform -- uid: 5813 - type: SheetSteel - components: - - pos: -7.6600876,64.57297 - parent: 1 - type: Transform -- uid: 5814 - type: AirlockGlass - components: - - pos: -16.5,-10.5 - parent: 1 - type: Transform -- uid: 5815 - type: AirlockGlass - components: - - pos: -17.5,-10.5 - parent: 1 - type: Transform -- uid: 5816 - type: AirlockGlass - components: - - pos: -18.5,-10.5 - parent: 1 - type: Transform -- uid: 5817 - type: FirelockGlass - components: - - pos: -33.5,7.5 - parent: 1 - type: Transform -- uid: 5818 - type: FirelockGlass - components: - - pos: -33.5,6.5 - parent: 1 - type: Transform -- uid: 5819 - type: FirelockGlass - components: - - pos: -33.5,5.5 - parent: 1 - type: Transform -- uid: 5820 - type: FirelockGlass - components: - - pos: -33.5,4.5 - parent: 1 - type: Transform -- uid: 5821 - type: FirelockGlass - components: - - pos: -36.5,6.5 - parent: 1 - type: Transform -- uid: 5822 - type: FirelockGlass - components: - - pos: -36.5,7.5 - parent: 1 - type: Transform -- uid: 5823 - type: FirelockGlass - components: - - pos: -35.5,3.5 - parent: 1 - type: Transform -- uid: 5824 - type: FirelockGlass - components: - - pos: -35.5,12.5 - parent: 1 - type: Transform -- uid: 5825 - type: FirelockGlass - components: - - pos: -41.5,9.5 - parent: 1 - type: Transform -- uid: 5826 - type: FirelockGlass - components: - - pos: -37.5,10.5 - parent: 1 - type: Transform -- uid: 5827 - type: Grille - components: - - pos: -37.5,-0.5 - parent: 1 - type: Transform -- uid: 5828 - type: ShuttersNormalOpen - components: - - pos: -41.5,-3.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17634 - type: SignalReceiver -- uid: 5829 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -33.5,-3.5 - parent: 1 - type: Transform -- uid: 5830 - type: TableCarpet - components: - - pos: -38.5,-13.5 - parent: 1 - type: Transform -- uid: 5831 - type: FirelockGlass - components: - - pos: -39.5,16.5 - parent: 1 - type: Transform -- uid: 5832 - type: FirelockGlass - components: - - pos: -37.5,16.5 - parent: 1 - type: Transform -- uid: 5833 - type: FirelockGlass - components: - - pos: -33.5,37.5 - parent: 1 - type: Transform -- uid: 5834 - type: FirelockGlass - components: - - pos: -33.5,36.5 - parent: 1 - type: Transform -- uid: 5835 - type: FirelockGlass - components: - - pos: -33.5,38.5 - parent: 1 - type: Transform -- uid: 5836 - type: FirelockGlass - components: - - pos: -32.5,35.5 - parent: 1 - type: Transform -- uid: 5837 - type: FirelockGlass - components: - - pos: -31.5,35.5 - parent: 1 - type: Transform -- uid: 5838 - type: FirelockGlass - components: - - pos: -30.5,35.5 - parent: 1 - type: Transform -- uid: 5839 - type: FirelockGlass - components: - - pos: -29.5,36.5 - parent: 1 - type: Transform -- uid: 5840 - type: FirelockGlass - components: - - pos: -29.5,37.5 - parent: 1 - type: Transform -- uid: 5841 - type: FirelockGlass - components: - - pos: -29.5,38.5 - parent: 1 - type: Transform -- uid: 5842 - type: Catwalk - components: - - pos: -21.5,44.5 - parent: 1 - type: Transform -- uid: 5843 - type: Catwalk - components: - - pos: -21.5,43.5 - parent: 1 - type: Transform -- uid: 5844 - type: Catwalk - components: - - pos: -21.5,42.5 - parent: 1 - type: Transform -- uid: 5845 - type: Catwalk - components: - - pos: -21.5,41.5 - parent: 1 - type: Transform -- uid: 5846 - type: Catwalk - components: - - pos: -21.5,40.5 - parent: 1 - type: Transform -- uid: 5847 - type: Catwalk - components: - - pos: -21.5,51.5 - parent: 1 - type: Transform -- uid: 5848 - type: Catwalk - components: - - pos: -21.5,52.5 - parent: 1 - type: Transform -- uid: 5849 - type: Catwalk - components: - - pos: -21.5,53.5 - parent: 1 - type: Transform -- uid: 5850 - type: Catwalk - components: - - pos: -21.5,54.5 - parent: 1 - type: Transform -- uid: 5851 - type: Catwalk - components: - - pos: -21.5,55.5 - parent: 1 - type: Transform -- uid: 5852 - type: Catwalk - components: - - pos: -21.5,56.5 - parent: 1 - type: Transform -- uid: 5853 - type: Catwalk - components: - - pos: -22.5,57.5 - parent: 1 - type: Transform -- uid: 5854 - type: Catwalk - components: - - pos: -23.5,57.5 - parent: 1 - type: Transform -- uid: 5855 - type: Catwalk - components: - - pos: -19.5,58.5 - parent: 1 - type: Transform -- uid: 5856 - type: Catwalk - components: - - pos: -19.5,59.5 - parent: 1 - type: Transform -- uid: 5857 - type: Catwalk - components: - - pos: -19.5,60.5 - parent: 1 - type: Transform -- uid: 5858 - type: Catwalk - components: - - pos: -19.5,61.5 - parent: 1 - type: Transform -- uid: 5859 - type: Catwalk - components: - - pos: -18.5,62.5 - parent: 1 - type: Transform -- uid: 5860 - type: Catwalk - components: - - pos: -17.5,62.5 - parent: 1 - type: Transform -- uid: 5861 - type: Catwalk - components: - - pos: -16.5,62.5 - parent: 1 - type: Transform -- uid: 5862 - type: Catwalk - components: - - pos: -15.5,62.5 - parent: 1 - type: Transform -- uid: 5863 - type: Catwalk - components: - - pos: -14.5,62.5 - parent: 1 - type: Transform -- uid: 5864 - type: Catwalk - components: - - pos: -13.5,63.5 - parent: 1 - type: Transform -- uid: 5865 - type: Catwalk - components: - - pos: -13.5,64.5 - parent: 1 - type: Transform -- uid: 5866 - type: Catwalk - components: - - pos: -13.5,65.5 - parent: 1 - type: Transform -- uid: 5867 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: -13.5,66.5 - parent: 1 - type: Transform -- uid: 5868 - type: Catwalk - components: - - pos: -12.5,67.5 - parent: 1 - type: Transform -- uid: 5869 - type: Catwalk - components: - - pos: -11.5,67.5 - parent: 1 - type: Transform -- uid: 5870 - type: Catwalk - components: - - pos: -10.5,67.5 - parent: 1 - type: Transform -- uid: 5871 - type: Catwalk - components: - - pos: -9.5,67.5 - parent: 1 - type: Transform -- uid: 5872 - type: Catwalk - components: - - pos: -8.5,67.5 - parent: 1 - type: Transform -- uid: 5873 - type: Catwalk - components: - - pos: -7.5,67.5 - parent: 1 - type: Transform -- uid: 5874 - type: Catwalk - components: - - pos: -6.5,67.5 - parent: 1 - type: Transform -- uid: 5875 - type: Catwalk - components: - - pos: -5.5,67.5 - parent: 1 - type: Transform -- uid: 5876 - type: Catwalk - components: - - pos: -4.5,68.5 - parent: 1 - type: Transform -- uid: 5877 - type: Catwalk - components: - - pos: -4.5,69.5 - parent: 1 - type: Transform -- uid: 5878 - type: Catwalk - components: - - pos: 8.5,63.5 - parent: 1 - type: Transform -- uid: 5879 - type: Catwalk - components: - - pos: 9.5,63.5 - parent: 1 - type: Transform -- uid: 5880 - type: Catwalk - components: - - pos: 10.5,63.5 - parent: 1 - type: Transform -- uid: 5881 - type: Catwalk - components: - - pos: 11.5,63.5 - parent: 1 - type: Transform -- uid: 5882 - type: Catwalk - components: - - pos: 12.5,63.5 - parent: 1 - type: Transform -- uid: 5883 - type: Catwalk - components: - - pos: 13.5,63.5 - parent: 1 - type: Transform -- uid: 5884 - type: Catwalk - components: - - pos: 14.5,63.5 - parent: 1 - type: Transform -- uid: 5885 - type: Catwalk - components: - - pos: 15.5,63.5 - parent: 1 - type: Transform -- uid: 5886 - type: Catwalk - components: - - pos: 16.5,63.5 - parent: 1 - type: Transform -- uid: 5887 - type: Catwalk - components: - - pos: 17.5,63.5 - parent: 1 - type: Transform -- uid: 5888 - type: Catwalk - components: - - pos: 18.5,62.5 - parent: 1 - type: Transform -- uid: 5889 - type: Catwalk - components: - - pos: 18.5,61.5 - parent: 1 - type: Transform -- uid: 5890 - type: Catwalk - components: - - pos: 18.5,60.5 - parent: 1 - type: Transform -- uid: 5891 - type: Catwalk - components: - - pos: 18.5,59.5 - parent: 1 - type: Transform -- uid: 5892 - type: Catwalk - components: - - pos: 18.5,56.5 - parent: 1 - type: Transform -- uid: 5893 - type: Catwalk - components: - - pos: 17.5,56.5 - parent: 1 - type: Transform -- uid: 5894 - type: Catwalk - components: - - pos: 20.5,56.5 - parent: 1 - type: Transform -- uid: 5895 - type: Catwalk - components: - - pos: 21.5,56.5 - parent: 1 - type: Transform -- uid: 5896 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 16.5,55.5 - parent: 1 - type: Transform -- uid: 5897 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 22.5,55.5 - parent: 1 - type: Transform -- uid: 5898 - type: Catwalk - components: - - pos: 16.5,54.5 - parent: 1 - type: Transform -- uid: 5899 - type: Catwalk - components: - - pos: 16.5,53.5 - parent: 1 - type: Transform -- uid: 5900 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 28.5,55.5 - parent: 1 - type: Transform -- uid: 5901 - type: Catwalk - components: - - pos: 22.5,54.5 - parent: 1 - type: Transform -- uid: 5902 - type: Catwalk - components: - - pos: 22.5,53.5 - parent: 1 - type: Transform -- uid: 5903 - type: Catwalk - components: - - pos: 22.5,52.5 - parent: 1 - type: Transform -- uid: 5904 - type: Catwalk - components: - - pos: 22.5,51.5 - parent: 1 - type: Transform -- uid: 5905 - type: Catwalk - components: - - pos: 22.5,50.5 - parent: 1 - type: Transform -- uid: 5906 - type: Catwalk - components: - - pos: 21.5,49.5 - parent: 1 - type: Transform -- uid: 5907 - type: Catwalk - components: - - pos: 22.5,48.5 - parent: 1 - type: Transform -- uid: 5908 - type: Catwalk - components: - - pos: 22.5,47.5 - parent: 1 - type: Transform -- uid: 5909 - type: Catwalk - components: - - pos: 22.5,46.5 - parent: 1 - type: Transform -- uid: 5910 - type: Catwalk - components: - - pos: 23.5,45.5 - parent: 1 - type: Transform -- uid: 5911 - type: Catwalk - components: - - pos: 24.5,45.5 - parent: 1 - type: Transform -- uid: 5912 - type: Catwalk - components: - - pos: 25.5,44.5 - parent: 1 - type: Transform -- uid: 5913 - type: Catwalk - components: - - pos: 25.5,43.5 - parent: 1 - type: Transform -- uid: 5914 - type: Catwalk - components: - - pos: 25.5,42.5 - parent: 1 - type: Transform -- uid: 5915 - type: Catwalk - components: - - pos: 25.5,41.5 - parent: 1 - type: Transform -- uid: 5916 - type: Catwalk - components: - - pos: 25.5,40.5 - parent: 1 - type: Transform -- uid: 5917 - type: Catwalk - components: - - pos: 24.5,29.5 - parent: 1 - type: Transform -- uid: 5918 - type: Catwalk - components: - - pos: 24.5,28.5 - parent: 1 - type: Transform -- uid: 5919 - type: Catwalk - components: - - pos: 24.5,27.5 - parent: 1 - type: Transform -- uid: 5920 - type: Catwalk - components: - - pos: 24.5,26.5 - parent: 1 - type: Transform -- uid: 5921 - type: Catwalk - components: - - pos: 24.5,25.5 - parent: 1 - type: Transform -- uid: 5922 - type: Catwalk - components: - - pos: 23.5,24.5 - parent: 1 - type: Transform -- uid: 5923 - type: Catwalk - components: - - pos: 22.5,24.5 - parent: 1 - type: Transform -- uid: 5924 - type: Catwalk - components: - - pos: 21.5,24.5 - parent: 1 - type: Transform -- uid: 5925 - type: Catwalk - components: - - pos: 20.5,24.5 - parent: 1 - type: Transform -- uid: 5926 - type: Catwalk - components: - - pos: 19.5,21.5 - parent: 1 - type: Transform -- uid: 5927 - type: Catwalk - components: - - pos: 19.5,20.5 - parent: 1 - type: Transform -- uid: 5928 - type: Catwalk - components: - - pos: 19.5,19.5 - parent: 1 - type: Transform -- uid: 5929 - type: Catwalk - components: - - pos: 19.5,18.5 - parent: 1 - type: Transform -- uid: 5930 - type: Catwalk - components: - - pos: 19.5,17.5 - parent: 1 - type: Transform -- uid: 5931 - type: Catwalk - components: - - pos: 18.5,22.5 - parent: 1 - type: Transform -- uid: 5932 - type: Catwalk - components: - - pos: 17.5,22.5 - parent: 1 - type: Transform -- uid: 5933 - type: Catwalk - components: - - pos: 16.5,22.5 - parent: 1 - type: Transform -- uid: 5934 - type: Catwalk - components: - - pos: 15.5,22.5 - parent: 1 - type: Transform -- uid: 5935 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -24.5,16.5 - parent: 1 - type: Transform -- uid: 5936 - type: CableHV - components: - - pos: -25.5,14.5 - parent: 1 - type: Transform -- uid: 5937 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -23.5,16.5 - parent: 1 - type: Transform -- uid: 5938 - type: Catwalk - components: - - pos: -27.5,18.5 - parent: 1 - type: Transform -- uid: 5939 - type: Catwalk - components: - - pos: -27.5,19.5 - parent: 1 - type: Transform -- uid: 5940 - type: Catwalk - components: - - pos: -27.5,20.5 - parent: 1 - type: Transform -- uid: 5941 - type: Catwalk - components: - - pos: -27.5,21.5 - parent: 1 - type: Transform -- uid: 5942 - type: Catwalk - components: - - pos: -27.5,22.5 - parent: 1 - type: Transform -- uid: 5943 - type: Catwalk - components: - - pos: -26.5,25.5 - parent: 1 - type: Transform -- uid: 5944 - type: Catwalk - components: - - pos: -25.5,25.5 - parent: 1 - type: Transform -- uid: 5945 - type: Catwalk - components: - - pos: -24.5,25.5 - parent: 1 - type: Transform -- uid: 5946 - type: Catwalk - components: - - pos: -23.5,28.5 - parent: 1 - type: Transform -- uid: 5947 - type: Catwalk - components: - - pos: -23.5,29.5 - parent: 1 - type: Transform -- uid: 5948 - type: Catwalk - components: - - pos: -23.5,30.5 - parent: 1 - type: Transform -- uid: 5949 - type: Catwalk - components: - - pos: -23.5,31.5 - parent: 1 - type: Transform -- uid: 5950 - type: Catwalk - components: - - pos: -23.5,32.5 - parent: 1 - type: Transform -- uid: 5951 - type: Catwalk - components: - - pos: -23.5,33.5 - parent: 1 - type: Transform -- uid: 5952 - type: Catwalk - components: - - pos: -23.5,34.5 - parent: 1 - type: Transform -- uid: 5953 - type: Catwalk - components: - - pos: -22.5,27.5 - parent: 1 - type: Transform -- uid: 5954 - type: Catwalk - components: - - pos: -21.5,27.5 - parent: 1 - type: Transform -- uid: 5955 - type: CableHV - components: - - pos: -20.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5956 - type: WallReinforced - components: - - pos: -18.5,29.5 - parent: 1 - type: Transform -- uid: 5957 - type: CableHV - components: - - pos: 5.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5958 - type: CableHV - components: - - pos: 5.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5959 - type: CableHV - components: - - pos: 5.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5960 - type: CableHV - components: - - pos: 5.5,-67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5961 - type: CableHV - components: - - pos: 5.5,-68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5962 - type: CableHV - components: - - pos: 5.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5963 - type: CableHV - components: - - pos: 5.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5964 - type: CableHV - components: - - pos: 7.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5965 - type: CableHV - components: - - pos: 7.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5966 - type: CableHV - components: - - pos: 7.5,-68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5967 - type: CableHV - components: - - pos: 7.5,-67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5968 - type: CableHV - components: - - pos: 7.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5969 - type: CableHV - components: - - pos: 7.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5970 - type: CableHV - components: - - pos: 7.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5971 - type: CableHV - components: - - pos: -30.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5972 - type: CableHV - components: - - pos: -31.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5973 - type: CableHV - components: - - pos: -32.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5974 - type: CableHV - components: - - pos: -33.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5975 - type: CableHV - components: - - pos: -34.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5976 - type: CableHV - components: - - pos: -35.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5977 - type: CableHV - components: - - pos: -35.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5978 - type: CableHV - components: - - pos: -35.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5979 - type: CableHV - components: - - pos: -35.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5980 - type: CableHV - components: - - pos: -35.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5981 - type: CableHV - components: - - pos: -35.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5982 - type: CableHV - components: - - pos: -35.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5983 - type: CableHV - components: - - pos: -35.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5984 - type: CableHV - components: - - pos: -35.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5985 - type: CableHV - components: - - pos: -35.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5986 - type: CableHV - components: - - pos: -34.5,-7.5 - parent: 1 - type: Transform -- uid: 5987 - type: CableHV - components: - - pos: -33.5,-7.5 - parent: 1 - type: Transform -- uid: 5988 - type: Catwalk - components: - - pos: -35.5,-8.5 - parent: 1 - type: Transform -- uid: 5989 - type: Catwalk - components: - - pos: -35.5,-9.5 - parent: 1 - type: Transform -- uid: 5990 - type: Catwalk - components: - - pos: -35.5,-10.5 - parent: 1 - type: Transform -- uid: 5991 - type: Catwalk - components: - - pos: -35.5,-11.5 - parent: 1 - type: Transform -- uid: 5992 - type: Catwalk - components: - - pos: -35.5,-12.5 - parent: 1 - type: Transform -- uid: 5993 - type: Catwalk - components: - - pos: -35.5,-13.5 - parent: 1 - type: Transform -- uid: 5994 - type: Catwalk - components: - - pos: -35.5,-14.5 - parent: 1 - type: Transform -- uid: 5995 - type: Catwalk - components: - - pos: -35.5,-15.5 - parent: 1 - type: Transform -- uid: 5996 - type: Catwalk - components: - - pos: -34.5,-16.5 - parent: 1 - type: Transform -- uid: 5997 - type: Catwalk - components: - - pos: -33.5,-16.5 - parent: 1 - type: Transform -- uid: 5998 - type: Catwalk - components: - - pos: -32.5,-16.5 - parent: 1 - type: Transform -- uid: 5999 - type: Catwalk - components: - - pos: -31.5,-16.5 - parent: 1 - type: Transform -- uid: 6000 - type: CableApcExtension - components: - - pos: -29.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6001 - type: Catwalk - components: - - pos: -29.5,-17.5 - parent: 1 - type: Transform -- uid: 6002 - type: Catwalk - components: - - pos: -29.5,-18.5 - parent: 1 - type: Transform -- uid: 6003 - type: Catwalk - components: - - pos: -29.5,-19.5 - parent: 1 - type: Transform -- uid: 6004 - type: Catwalk - components: - - pos: -29.5,-20.5 - parent: 1 - type: Transform -- uid: 6005 - type: Catwalk - components: - - pos: -29.5,-21.5 - parent: 1 - type: Transform -- uid: 6006 - type: Catwalk - components: - - pos: -29.5,-22.5 - parent: 1 - type: Transform -- uid: 6007 - type: Catwalk - components: - - pos: -29.5,-23.5 - parent: 1 - type: Transform -- uid: 6008 - type: Catwalk - components: - - pos: -29.5,-24.5 - parent: 1 - type: Transform -- uid: 6009 - type: Catwalk - components: - - pos: -29.5,-25.5 - parent: 1 - type: Transform -- uid: 6010 - type: Catwalk - components: - - pos: -28.5,-26.5 - parent: 1 - type: Transform -- uid: 6011 - type: Catwalk - components: - - pos: -27.5,-26.5 - parent: 1 - type: Transform -- uid: 6012 - type: Catwalk - components: - - pos: -26.5,-26.5 - parent: 1 - type: Transform -- uid: 6013 - type: Catwalk - components: - - pos: -25.5,-26.5 - parent: 1 - type: Transform -- uid: 6014 - type: FirelockGlass - components: - - pos: -24.5,-26.5 - parent: 1 - type: Transform -- uid: 6015 - type: Catwalk - components: - - pos: -23.5,-26.5 - parent: 1 - type: Transform -- uid: 6016 - type: Catwalk - components: - - pos: -22.5,-26.5 - parent: 1 - type: Transform -- uid: 6017 - type: Catwalk - components: - - pos: -21.5,-26.5 - parent: 1 - type: Transform -- uid: 6018 - type: Catwalk - components: - - pos: -20.5,-27.5 - parent: 1 - type: Transform -- uid: 6019 - type: Catwalk - components: - - pos: -20.5,-28.5 - parent: 1 - type: Transform -- uid: 6020 - type: Catwalk - components: - - pos: -20.5,-29.5 - parent: 1 - type: Transform -- uid: 6021 - type: Catwalk - components: - - pos: -20.5,-30.5 - parent: 1 - type: Transform -- uid: 6022 - type: CableApcExtension - components: - - pos: -18.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6023 - type: Catwalk - components: - - pos: -18.5,-29.5 - parent: 1 - type: Transform -- uid: 6024 - type: Catwalk - components: - - pos: -18.5,-28.5 - parent: 1 - type: Transform -- uid: 6025 - type: Catwalk - components: - - pos: -18.5,-27.5 - parent: 1 - type: Transform -- uid: 6026 - type: Catwalk - components: - - pos: -18.5,-26.5 - parent: 1 - type: Transform -- uid: 6027 - type: Catwalk - components: - - pos: -18.5,-25.5 - parent: 1 - type: Transform -- uid: 6028 - type: Catwalk - components: - - pos: -16.5,-23.5 - parent: 1 - type: Transform -- uid: 6029 - type: Catwalk - components: - - pos: -16.5,-22.5 - parent: 1 - type: Transform -- uid: 6030 - type: Catwalk - components: - - pos: -16.5,-21.5 - parent: 1 - type: Transform -- uid: 6031 - type: Catwalk - components: - - pos: -16.5,-32.5 - parent: 1 - type: Transform -- uid: 6032 - type: Catwalk - components: - - pos: -16.5,-33.5 - parent: 1 - type: Transform -- uid: 6033 - type: Catwalk - components: - - pos: -16.5,-34.5 - parent: 1 - type: Transform -- uid: 6034 - type: Catwalk - components: - - pos: -16.5,-35.5 - parent: 1 - type: Transform -- uid: 6035 - type: WallSolid - components: - - pos: -34.5,17.5 - parent: 1 - type: Transform -- uid: 6036 - type: CableHV - components: - - pos: 14.5,-8.5 - parent: 1 - type: Transform -- uid: 6037 - type: CableHV - components: - - pos: 14.5,-7.5 - parent: 1 - type: Transform -- uid: 6038 - type: AirlockGlass - components: - - pos: -33.5,38.5 - parent: 1 - type: Transform -- uid: 6039 - type: AirlockGlass - components: - - pos: -33.5,37.5 - parent: 1 - type: Transform -- uid: 6040 - type: AirlockGlass - components: - - pos: -33.5,36.5 - parent: 1 - type: Transform -- uid: 6041 - type: AirlockGlass - components: - - pos: 26.5,-6.5 - parent: 1 - type: Transform -- uid: 6042 - type: AirlockGlass - components: - - pos: 25.5,-6.5 - parent: 1 - type: Transform -- uid: 6043 - type: AirlockGlass - components: - - pos: 33.5,-7.5 - parent: 1 - type: Transform -- uid: 6044 - type: AirlockGlass - components: - - pos: 33.5,-8.5 - parent: 1 - type: Transform -- uid: 6045 - type: AirlockGlass - components: - - pos: 33.5,-9.5 - parent: 1 - type: Transform -- uid: 6046 - type: CableHV - components: - - pos: 39.5,-10.5 - parent: 1 - type: Transform -- uid: 6047 - type: CableHV - components: - - pos: 39.5,-9.5 - parent: 1 - type: Transform -- uid: 6048 - type: CableHV - components: - - pos: 38.5,-9.5 - parent: 1 - type: Transform -- uid: 6049 - type: WallSolid - components: - - pos: 34.5,-10.5 - parent: 1 - type: Transform -- uid: 6050 - type: Catwalk - components: - - pos: 38.5,-11.5 - parent: 1 - type: Transform -- uid: 6051 - type: Catwalk - components: - - pos: 37.5,-11.5 - parent: 1 - type: Transform -- uid: 6052 - type: Catwalk - components: - - pos: 36.5,-11.5 - parent: 1 - type: Transform -- uid: 6053 - type: Catwalk - components: - - pos: 35.5,-11.5 - parent: 1 - type: Transform -- uid: 6054 - type: Catwalk - components: - - pos: 32.5,-12.5 - parent: 1 - type: Transform -- uid: 6055 - type: Catwalk - components: - - pos: 32.5,-13.5 - parent: 1 - type: Transform -- uid: 6056 - type: Catwalk - components: - - pos: 32.5,-14.5 - parent: 1 - type: Transform -- uid: 6057 - type: Catwalk - components: - - pos: 30.5,-16.5 - parent: 1 - type: Transform -- uid: 6058 - type: Catwalk - components: - - pos: 30.5,-17.5 - parent: 1 - type: Transform -- uid: 6059 - type: Catwalk - components: - - pos: 30.5,-18.5 - parent: 1 - type: Transform -- uid: 6060 - type: Catwalk - components: - - pos: 30.5,-20.5 - parent: 1 - type: Transform -- uid: 6061 - type: Catwalk - components: - - pos: 30.5,-21.5 - parent: 1 - type: Transform -- uid: 6062 - type: Catwalk - components: - - pos: 30.5,-22.5 - parent: 1 - type: Transform -- uid: 6063 - type: Catwalk - components: - - pos: 30.5,-23.5 - parent: 1 - type: Transform -- uid: 6064 - type: Catwalk - components: - - pos: 28.5,-24.5 - parent: 1 - type: Transform -- uid: 6065 - type: Catwalk - components: - - pos: 27.5,-24.5 - parent: 1 - type: Transform -- uid: 6066 - type: Catwalk - components: - - pos: 26.5,-24.5 - parent: 1 - type: Transform -- uid: 6067 - type: Catwalk - components: - - pos: 25.5,-24.5 - parent: 1 - type: Transform -- uid: 6068 - type: Catwalk - components: - - pos: 24.5,-23.5 - parent: 1 - type: Transform -- uid: 6069 - type: Catwalk - components: - - pos: 24.5,-22.5 - parent: 1 - type: Transform -- uid: 6070 - type: Catwalk - components: - - pos: 22.5,-25.5 - parent: 1 - type: Transform -- uid: 6071 - type: Catwalk - components: - - pos: 22.5,-26.5 - parent: 1 - type: Transform -- uid: 6072 - type: Catwalk - components: - - pos: 20.5,-29.5 - parent: 1 - type: Transform -- uid: 6073 - type: Catwalk - components: - - pos: 19.5,-29.5 - parent: 1 - type: Transform -- uid: 6074 - type: Catwalk - components: - - pos: 18.5,-29.5 - parent: 1 - type: Transform -- uid: 6075 - type: Catwalk - components: - - pos: 17.5,-29.5 - parent: 1 - type: Transform -- uid: 6076 - type: CableHV - components: - - pos: 15.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6077 - type: Catwalk - components: - - pos: 15.5,-32.5 - parent: 1 - type: Transform -- uid: 6078 - type: Catwalk - components: - - pos: 15.5,-30.5 - parent: 1 - type: Transform -- uid: 6079 - type: CableHV - components: - - pos: 15.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6080 - type: CableHV - components: - - pos: 15.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6081 - type: WardrobeBlackFilled - components: - - pos: 17.5,43.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6082 - type: WardrobeBlueFilled - components: - - pos: 18.5,43.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6083 - type: WardrobeGreenFilled - components: - - pos: 23.5,43.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6084 - type: WardrobeMixedFilled - components: - - pos: 22.5,43.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6085 - type: WardrobePinkFilled - components: - - pos: 21.5,43.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6086 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,43.5 - parent: 1 - type: Transform -- uid: 6087 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,43.5 - parent: 1 - type: Transform -- uid: 6088 - type: Table - components: - - pos: 20.5,40.5 - parent: 1 - type: Transform -- uid: 6089 - type: Table - components: - - pos: 20.5,41.5 - parent: 1 - type: Transform -- uid: 6090 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 19.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6091 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 19.5,41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6092 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 21.5,41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6093 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 21.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6094 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 23.5,35.5 - parent: 1 - type: Transform -- uid: 6095 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 27.5,30.5 - parent: 1 - type: Transform -- uid: 6096 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 28.5,34.5 - parent: 1 - type: Transform -- uid: 6097 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 28.5,31.5 - parent: 1 - type: Transform -- uid: 6098 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 25.5,30.5 - parent: 1 - type: Transform -- uid: 6099 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 26.5,30.5 - parent: 1 - type: Transform -- uid: 6100 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 18.5,33.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6101 - type: WallReinforced - components: - - pos: 19.5,35.5 - parent: 1 - type: Transform -- uid: 6102 - type: CableHV - components: - - pos: 25.5,34.5 - parent: 1 - type: Transform -- uid: 6103 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 27.5,35.5 - parent: 1 - type: Transform -- uid: 6104 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 24.5,35.5 - parent: 1 - type: Transform -- uid: 6105 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 21.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6106 - type: WallReinforced - components: - - pos: 21.5,35.5 - parent: 1 - type: Transform -- uid: 6107 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 28.5,35.5 - parent: 1 - type: Transform -- uid: 6108 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 28.5,30.5 - parent: 1 - type: Transform -- uid: 6109 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -4.5,54.5 - parent: 1 - type: Transform -- uid: 6110 - type: FirelockGlass - components: - - pos: -1.5,51.5 - parent: 1 - type: Transform -- uid: 6111 - type: FirelockGlass - components: - - pos: -0.5,51.5 - parent: 1 - type: Transform -- uid: 6112 - type: FirelockGlass - components: - - pos: 0.5,51.5 - parent: 1 - type: Transform -- uid: 6113 - type: FirelockGlass - components: - - pos: -1.5,58.5 - parent: 1 - type: Transform -- uid: 6114 - type: FirelockGlass - components: - - pos: -0.5,58.5 - parent: 1 - type: Transform -- uid: 6115 - type: FirelockGlass - components: - - pos: 0.5,58.5 - parent: 1 - type: Transform -- uid: 6116 - type: FirelockGlass - components: - - pos: -4.5,54.5 - parent: 1 - type: Transform -- uid: 6117 - type: FirelockGlass - components: - - pos: -4.5,53.5 - parent: 1 - type: Transform -- uid: 6118 - type: FirelockGlass - components: - - pos: 3.5,56.5 - parent: 1 - type: Transform -- uid: 6119 - type: FirelockGlass - components: - - pos: 3.5,53.5 - parent: 1 - type: Transform -- uid: 6120 - type: FirelockGlass - components: - - pos: -1.5,69.5 - parent: 1 - type: Transform -- uid: 6121 - type: FirelockGlass - components: - - pos: 0.5,69.5 - parent: 1 - type: Transform -- uid: 6122 - type: FirelockGlass - components: - - pos: -1.5,75.5 - parent: 1 - type: Transform -- uid: 6123 - type: FirelockGlass - components: - - pos: 0.5,75.5 - parent: 1 - type: Transform -- uid: 6124 - type: FirelockGlass - components: - - pos: -5.5,75.5 - parent: 1 - type: Transform -- uid: 6125 - type: FirelockGlass - components: - - pos: 5.5,75.5 - parent: 1 - type: Transform -- uid: 6126 - type: FirelockGlass - components: - - pos: 8.5,66.5 - parent: 1 - type: Transform -- uid: 6127 - type: FirelockGlass - components: - - pos: 8.5,68.5 - parent: 1 - type: Transform -- uid: 6128 - type: FirelockGlass - components: - - pos: 8.5,67.5 - parent: 1 - type: Transform -- uid: 6129 - type: FirelockGlass - components: - - pos: 1.5,63.5 - parent: 1 - type: Transform -- uid: 6130 - type: FirelockGlass - components: - - pos: -2.5,48.5 - parent: 1 - type: Transform -- uid: 6131 - type: FirelockGlass - components: - - pos: -2.5,50.5 - parent: 1 - type: Transform -- uid: 6132 - type: FirelockGlass - components: - - pos: 1.5,46.5 - parent: 1 - type: Transform -- uid: 6133 - type: FirelockGlass - components: - - pos: 1.5,47.5 - parent: 1 - type: Transform -- uid: 6134 - type: FirelockGlass - components: - - pos: -15.5,35.5 - parent: 1 - type: Transform -- uid: 6135 - type: FirelockGlass - components: - - pos: -14.5,35.5 - parent: 1 - type: Transform -- uid: 6136 - type: FirelockGlass - components: - - pos: -18.5,35.5 - parent: 1 - type: Transform -- uid: 6137 - type: FirelockGlass - components: - - pos: -13.5,35.5 - parent: 1 - type: Transform -- uid: 6138 - type: FirelockGlass - components: - - pos: -20.5,35.5 - parent: 1 - type: Transform -- uid: 6139 - type: TableReinforced - components: - - pos: -20.5,35.5 - parent: 1 - type: Transform -- uid: 6140 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6141 - type: Grille - components: - - pos: -38.5,-25.5 - parent: 1 - type: Transform -- uid: 6142 - type: Grille - components: - - pos: -38.5,-26.5 - parent: 1 - type: Transform -- uid: 6143 - type: Grille - components: - - pos: -37.5,-26.5 - parent: 1 - type: Transform -- uid: 6144 - type: Grille - components: - - pos: -36.5,-26.5 - parent: 1 - type: Transform -- uid: 6145 - type: Grille - components: - - pos: -18.5,-43.5 - parent: 1 - type: Transform -- uid: 6146 - type: Grille - components: - - pos: -34.5,-28.5 - parent: 1 - type: Transform -- uid: 6147 - type: Grille - components: - - pos: -33.5,-28.5 - parent: 1 - type: Transform -- uid: 6148 - type: WallSolid - components: - - pos: -45.5,47.5 - parent: 1 - type: Transform -- uid: 6149 - type: WallSolid - components: - - pos: -44.5,49.5 - parent: 1 - type: Transform -- uid: 6150 - type: Grille - components: - - pos: -31.5,-30.5 - parent: 1 - type: Transform -- uid: 6151 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 37.5,-25.5 - parent: 1 - type: Transform -- uid: 6152 - type: Grille - components: - - pos: -29.5,-30.5 - parent: 1 - type: Transform -- uid: 6153 - type: Grille - components: - - pos: -27.5,-30.5 - parent: 1 - type: Transform -- uid: 6154 - type: Grille - components: - - pos: -26.5,-31.5 - parent: 1 - type: Transform -- uid: 6155 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 48.5,52.5 - parent: 1 - type: Transform -- uid: 6156 - type: Grille - components: - - pos: -26.5,-32.5 - parent: 1 - type: Transform -- uid: 6157 - type: Grille - components: - - pos: -25.5,-32.5 - parent: 1 - type: Transform -- uid: 6158 - type: Grille - components: - - pos: -24.5,-33.5 - parent: 1 - type: Transform -- uid: 6159 - type: Grille - components: - - pos: -24.5,-34.5 - parent: 1 - type: Transform -- uid: 6160 - type: Grille - components: - - pos: -24.5,-35.5 - parent: 1 - type: Transform -- uid: 6161 - type: Grille - components: - - pos: -24.5,-36.5 - parent: 1 - type: Transform -- uid: 6162 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 52.5,40.5 - parent: 1 - type: Transform -- uid: 6163 - type: Grille - components: - - pos: -24.5,-38.5 - parent: 1 - type: Transform -- uid: 6164 - type: GrilleBroken - components: - - pos: 52.5,46.5 - parent: 1 - type: Transform -- uid: 6165 - type: Grille - components: - - pos: -24.5,-39.5 - parent: 1 - type: Transform -- uid: 6166 - type: Grille - components: - - pos: 37.5,-24.5 - parent: 1 - type: Transform -- uid: 6167 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 20.5,67.5 - parent: 1 - type: Transform -- uid: 6168 - type: Grille - components: - - pos: 37.5,-26.5 - parent: 1 - type: Transform -- uid: 6169 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 22.5,62.5 - parent: 1 - type: Transform -- uid: 6170 - type: Grille - components: - - pos: 35.5,-26.5 - parent: 1 - type: Transform -- uid: 6171 - type: GrilleBroken - components: - - pos: 52.5,48.5 - parent: 1 - type: Transform -- uid: 6172 - type: Grille - components: - - pos: 34.5,-28.5 - parent: 1 - type: Transform -- uid: 6173 - type: Grille - components: - - pos: 33.5,-28.5 - parent: 1 - type: Transform -- uid: 6174 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 26.5,62.5 - parent: 1 - type: Transform -- uid: 6175 - type: Grille - components: - - pos: 31.5,-28.5 - parent: 1 - type: Transform -- uid: 6176 - type: Grille - components: - - pos: 29.5,-29.5 - parent: 1 - type: Transform -- uid: 6177 - type: Grille - components: - - pos: 26.5,-30.5 - parent: 1 - type: Transform -- uid: 6178 - type: Grille - components: - - pos: 25.5,-31.5 - parent: 1 - type: Transform -- uid: 6179 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 1.5,87.5 - parent: 1 - type: Transform -- uid: 6180 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 27.5,62.5 - parent: 1 - type: Transform -- uid: 6181 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 32.5,60.5 - parent: 1 - type: Transform -- uid: 6182 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 52.5,42.5 - parent: 1 - type: Transform -- uid: 6183 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 42.5,58.5 - parent: 1 - type: Transform -- uid: 6184 - type: Grille - components: - - pos: 24.5,-32.5 - parent: 1 - type: Transform -- uid: 6185 - type: Grille - components: - - pos: 23.5,-33.5 - parent: 1 - type: Transform -- uid: 6186 - type: GrilleBroken - components: - - pos: 42.5,57.5 - parent: 1 - type: Transform -- uid: 6187 - type: Grille - components: - - pos: 23.5,-35.5 - parent: 1 - type: Transform -- uid: 6188 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 43.5,55.5 - parent: 1 - type: Transform -- uid: 6189 - type: Grille - components: - - pos: 23.5,-37.5 - parent: 1 - type: Transform -- uid: 6190 - type: Grille - components: - - pos: 23.5,-38.5 - parent: 1 - type: Transform -- uid: 6191 - type: Grille - components: - - pos: 23.5,-39.5 - parent: 1 - type: Transform -- uid: 6192 - type: Grille - components: - - pos: 16.5,-47.5 - parent: 1 - type: Transform -- uid: 6193 - type: Grille - components: - - pos: -28.5,-30.5 - parent: 1 - type: Transform -- uid: 6194 - type: Grille - components: - - pos: -35.5,-28.5 - parent: 1 - type: Transform -- uid: 6195 - type: Grille - components: - - pos: -51.5,47.5 - parent: 1 - type: Transform -- uid: 6196 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-26.5 - parent: 1 - type: Transform -- uid: 6197 - type: Grille - components: - - pos: -48.5,53.5 - parent: 1 - type: Transform -- uid: 6198 - type: PoweredSmallLight - components: - - pos: 51.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6199 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 29.5,-30.5 - parent: 1 - type: Transform -- uid: 6200 - type: Grille - components: - - pos: -49.5,51.5 - parent: 1 - type: Transform -- uid: 6201 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -6.5,87.5 - parent: 1 - type: Transform -- uid: 6202 - type: Grille - components: - - pos: -51.5,50.5 - parent: 1 - type: Transform -- uid: 6203 - type: Grille - components: - - pos: -47.5,53.5 - parent: 1 - type: Transform -- uid: 6204 - type: Grille - components: - - pos: -46.5,54.5 - parent: 1 - type: Transform -- uid: 6205 - type: Grille - components: - - pos: -46.5,55.5 - parent: 1 - type: Transform -- uid: 6206 - type: Grille - components: - - pos: -46.5,56.5 - parent: 1 - type: Transform -- uid: 6207 - type: Grille - components: - - pos: -45.5,56.5 - parent: 1 - type: Transform -- uid: 6208 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 51.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6209 - type: Grille - components: - - pos: -43.5,56.5 - parent: 1 - type: Transform -- uid: 6210 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -5.5,87.5 - parent: 1 - type: Transform -- uid: 6211 - type: ReinforcedWindow - components: - - pos: -37.5,53.5 - parent: 1 - type: Transform -- uid: 6212 - type: Grille - components: - - pos: -40.5,54.5 - parent: 1 - type: Transform -- uid: 6213 - type: Grille - components: - - pos: -40.5,55.5 - parent: 1 - type: Transform -- uid: 6214 - type: Grille - components: - - pos: -39.5,53.5 - parent: 1 - type: Transform -- uid: 6215 - type: Grille - components: - - pos: -37.5,53.5 - parent: 1 - type: Transform -- uid: 6216 - type: GrilleBroken - components: - - pos: -53.5,44.5 - parent: 1 - type: Transform -- uid: 6217 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-28.5 - parent: 1 - type: Transform -- uid: 6218 - type: Grille - components: - - pos: -34.5,60.5 - parent: 1 - type: Transform -- uid: 6219 - type: Grille - components: - - pos: -33.5,60.5 - parent: 1 - type: Transform -- uid: 6220 - type: Grille - components: - - pos: -32.5,60.5 - parent: 1 - type: Transform -- uid: 6221 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-30.5 - parent: 1 - type: Transform -- uid: 6222 - type: AirlockExternalGlass - components: - - pos: 46.5,16.5 - parent: 1 - type: Transform -- uid: 6223 - type: Grille - components: - - pos: -31.5,62.5 - parent: 1 - type: Transform -- uid: 6224 - type: Grille - components: - - pos: -30.5,62.5 - parent: 1 - type: Transform -- uid: 6225 - type: AirlockExternalGlass - components: - - pos: 50.5,-7.5 - parent: 1 - type: Transform -- uid: 6226 - type: Grille - components: - - pos: -28.5,62.5 - parent: 1 - type: Transform -- uid: 6227 - type: GrilleBroken - components: - - pos: 21.5,-40.5 - parent: 1 - type: Transform -- uid: 6228 - type: Grille - components: - - pos: -26.5,62.5 - parent: 1 - type: Transform -- uid: 6229 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 25.5,-32.5 - parent: 1 - type: Transform -- uid: 6230 - type: Grille - components: - - pos: -24.5,62.5 - parent: 1 - type: Transform -- uid: 6231 - type: Grille - components: - - pos: -23.5,62.5 - parent: 1 - type: Transform -- uid: 6232 - type: Grille - components: - - pos: -22.5,62.5 - parent: 1 - type: Transform -- uid: 6233 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -2.5,87.5 - parent: 1 - type: Transform -- uid: 6234 - type: Grille - components: - - pos: -21.5,68.5 - parent: 1 - type: Transform -- uid: 6235 - type: Grille - components: - - pos: -20.5,68.5 - parent: 1 - type: Transform -- uid: 6236 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 23.5,-36.5 - parent: 1 - type: Transform -- uid: 6237 - type: GrilleBroken - components: - - pos: 23.5,-34.5 - parent: 1 - type: Transform -- uid: 6238 - type: Grille - components: - - pos: -17.5,68.5 - parent: 1 - type: Transform -- uid: 6239 - type: Grille - components: - - pos: -16.5,68.5 - parent: 1 - type: Transform -- uid: 6240 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -1.5,87.5 - parent: 1 - type: Transform -- uid: 6241 - type: Grille - components: - - pos: -15.5,74.5 - parent: 1 - type: Transform -- uid: 6242 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 17.5,-46.5 - parent: 1 - type: Transform -- uid: 6243 - type: Grille - components: - - pos: -13.5,74.5 - parent: 1 - type: Transform -- uid: 6244 - type: Grille - components: - - pos: -12.5,74.5 - parent: 1 - type: Transform -- uid: 6245 - type: Grille - components: - - pos: -12.5,75.5 - parent: 1 - type: Transform -- uid: 6246 - type: Grille - components: - - pos: -12.5,76.5 - parent: 1 - type: Transform -- uid: 6247 - type: Grille - components: - - pos: -12.5,77.5 - parent: 1 - type: Transform -- uid: 6248 - type: Grille - components: - - pos: -12.5,78.5 - parent: 1 - type: Transform -- uid: 6249 - type: Grille - components: - - pos: -12.5,79.5 - parent: 1 - type: Transform -- uid: 6250 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -0.5,87.5 - parent: 1 - type: Transform -- uid: 6251 - type: Grille - components: - - pos: 31.5,60.5 - parent: 1 - type: Transform -- uid: 6252 - type: Grille - components: - - pos: -11.5,79.5 - parent: 1 - type: Transform -- uid: 6253 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-42.5 - parent: 1 - type: Transform -- uid: 6254 - type: Grille - components: - - pos: -11.5,81.5 - parent: 1 - type: Transform -- uid: 6255 - type: Grille - components: - - pos: -11.5,82.5 - parent: 1 - type: Transform -- uid: 6256 - type: Grille - components: - - pos: -11.5,83.5 - parent: 1 - type: Transform -- uid: 6257 - type: GrilleBroken - components: - - pos: -35.5,-27.5 - parent: 1 - type: Transform -- uid: 6258 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -6.5,86.5 - parent: 1 - type: Transform -- uid: 6259 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-30.5 - parent: 1 - type: Transform -- uid: 6260 - type: Grille - components: - - pos: 10.5,83.5 - parent: 1 - type: Transform -- uid: 6261 - type: Grille - components: - - pos: 10.5,81.5 - parent: 1 - type: Transform -- uid: 6262 - type: Grille - components: - - pos: 10.5,80.5 - parent: 1 - type: Transform -- uid: 6263 - type: Grille - components: - - pos: 10.5,79.5 - parent: 1 - type: Transform -- uid: 6264 - type: Grille - components: - - pos: 11.5,79.5 - parent: 1 - type: Transform -- uid: 6265 - type: Grille - components: - - pos: 11.5,78.5 - parent: 1 - type: Transform -- uid: 6266 - type: GrilleBroken - components: - - pos: -31.5,-29.5 - parent: 1 - type: Transform -- uid: 6267 - type: GrilleBroken - components: - - pos: -38.5,-24.5 - parent: 1 - type: Transform -- uid: 6268 - type: Grille - components: - - pos: 11.5,75.5 - parent: 1 - type: Transform -- uid: 6269 - type: Grille - components: - - pos: 11.5,74.5 - parent: 1 - type: Transform -- uid: 6270 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -7.5,86.5 - parent: 1 - type: Transform -- uid: 6271 - type: Grille - components: - - pos: 12.5,74.5 - parent: 1 - type: Transform -- uid: 6272 - type: Grille - components: - - pos: 13.5,74.5 - parent: 1 - type: Transform -- uid: 6273 - type: Grille - components: - - pos: 14.5,74.5 - parent: 1 - type: Transform -- uid: 6274 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -8.5,86.5 - parent: 1 - type: Transform -- uid: 6275 - type: Grille - components: - - pos: 15.5,68.5 - parent: 1 - type: Transform -- uid: 6276 - type: GrilleBroken - components: - - pos: -24.5,-37.5 - parent: 1 - type: Transform -- uid: 6277 - type: Grille - components: - - pos: 17.5,68.5 - parent: 1 - type: Transform -- uid: 6278 - type: Grille - components: - - pos: 18.5,68.5 - parent: 1 - type: Transform -- uid: 6279 - type: Grille - components: - - pos: 19.5,68.5 - parent: 1 - type: Transform -- uid: 6280 - type: Grille - components: - - pos: 20.5,68.5 - parent: 1 - type: Transform -- uid: 6281 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -9.5,86.5 - parent: 1 - type: Transform -- uid: 6282 - type: Grille - components: - - pos: 21.5,62.5 - parent: 1 - type: Transform -- uid: 6283 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-42.5 - parent: 1 - type: Transform -- uid: 6284 - type: Grille - components: - - pos: 23.5,62.5 - parent: 1 - type: Transform -- uid: 6285 - type: Grille - components: - - pos: 24.5,62.5 - parent: 1 - type: Transform -- uid: 6286 - type: Grille - components: - - pos: 25.5,62.5 - parent: 1 - type: Transform -- uid: 6287 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -18.5,-44.5 - parent: 1 - type: Transform -- uid: 6288 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 0.5,87.5 - parent: 1 - type: Transform -- uid: 6289 - type: Grille - components: - - pos: 28.5,62.5 - parent: 1 - type: Transform -- uid: 6290 - type: Grille - components: - - pos: 29.5,62.5 - parent: 1 - type: Transform -- uid: 6291 - type: Grille - components: - - pos: 30.5,62.5 - parent: 1 - type: Transform -- uid: 6292 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -52.5,46.5 - parent: 1 - type: Transform -- uid: 6293 - type: GrilleBroken - components: - - pos: -22.5,-40.5 - parent: 1 - type: Transform -- uid: 6294 - type: Grille - components: - - pos: 33.5,60.5 - parent: 1 - type: Transform -- uid: 6295 - type: Grille - components: - - pos: 34.5,60.5 - parent: 1 - type: Transform -- uid: 6296 - type: SolarPanel - components: - - pos: 41.5,76.5 - parent: 1 - type: Transform -- uid: 6297 - type: Grille - components: - - pos: -20.5,-42.5 - parent: 1 - type: Transform -- uid: 6298 - type: Catwalk - components: - - pos: 37.5,77.5 - parent: 1 - type: Transform -- uid: 6299 - type: Catwalk - components: - - pos: 37.5,78.5 - parent: 1 - type: Transform -- uid: 6300 - type: Grille - components: - - pos: 41.5,58.5 - parent: 1 - type: Transform -- uid: 6301 - type: Grille - components: - - pos: 42.5,56.5 - parent: 1 - type: Transform -- uid: 6302 - type: Grille - components: - - pos: 42.5,55.5 - parent: 1 - type: Transform -- uid: 6303 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 7.5,86.5 - parent: 1 - type: Transform -- uid: 6304 - type: Grille - components: - - pos: 44.5,55.5 - parent: 1 - type: Transform -- uid: 6305 - type: Grille - components: - - pos: 46.5,52.5 - parent: 1 - type: Transform -- uid: 6306 - type: Grille - components: - - pos: 47.5,52.5 - parent: 1 - type: Transform -- uid: 6307 - type: Grille - components: - - pos: 49.5,48.5 - parent: 1 - type: Transform -- uid: 6308 - type: Grille - components: - - pos: 50.5,48.5 - parent: 1 - type: Transform -- uid: 6309 - type: Grille - components: - - pos: 51.5,48.5 - parent: 1 - type: Transform -- uid: 6310 - type: Grille - components: - - pos: 52.5,47.5 - parent: 1 - type: Transform -- uid: 6311 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 11.5,77.5 - parent: 1 - type: Transform -- uid: 6312 - type: Grille - components: - - pos: 52.5,45.5 - parent: 1 - type: Transform -- uid: 6313 - type: Grille - components: - - pos: 52.5,44.5 - parent: 1 - type: Transform -- uid: 6314 - type: Grille - components: - - pos: 52.5,43.5 - parent: 1 - type: Transform -- uid: 6315 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 10.5,82.5 - parent: 1 - type: Transform -- uid: 6316 - type: Grille - components: - - pos: 52.5,41.5 - parent: 1 - type: Transform -- uid: 6317 - type: Grille - components: - - pos: 17.5,-45.5 - parent: 1 - type: Transform -- uid: 6318 - type: Grille - components: - - pos: 17.5,-44.5 - parent: 1 - type: Transform -- uid: 6319 - type: Grille - components: - - pos: 17.5,-43.5 - parent: 1 - type: Transform -- uid: 6320 - type: Grille - components: - - pos: 17.5,-47.5 - parent: 1 - type: Transform -- uid: 6321 - type: Grille - components: - - pos: -18.5,-45.5 - parent: 1 - type: Transform -- uid: 6322 - type: Grille - components: - - pos: -18.5,-46.5 - parent: 1 - type: Transform -- uid: 6323 - type: Grille - components: - - pos: -18.5,-47.5 - parent: 1 - type: Transform -- uid: 6324 - type: Grille - components: - - pos: -17.5,-47.5 - parent: 1 - type: Transform -- uid: 6325 - type: Grille - components: - - pos: -21.5,-42.5 - parent: 1 - type: Transform -- uid: 6326 - type: Grille - components: - - pos: -22.5,-42.5 - parent: 1 - type: Transform -- uid: 6327 - type: Grille - components: - - pos: -22.5,-41.5 - parent: 1 - type: Transform -- uid: 6328 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -3.5,87.5 - parent: 1 - type: Transform -- uid: 6329 - type: Grille - components: - - pos: 19.5,-42.5 - parent: 1 - type: Transform -- uid: 6330 - type: Grille - components: - - pos: 27.5,-30.5 - parent: 1 - type: Transform -- uid: 6331 - type: Grille - components: - - pos: 21.5,-42.5 - parent: 1 - type: Transform -- uid: 6332 - type: Grille - components: - - pos: 21.5,-41.5 - parent: 1 - type: Transform -- uid: 6333 - type: WallSolid - components: - - pos: -44.5,45.5 - parent: 1 - type: Transform -- uid: 6334 - type: Catwalk - components: - - pos: -43.5,46.5 - parent: 1 - type: Transform -- uid: 6335 - type: Catwalk - components: - - pos: -43.5,47.5 - parent: 1 - type: Transform -- uid: 6336 - type: Catwalk - components: - - pos: -43.5,48.5 - parent: 1 - type: Transform -- uid: 6337 - type: Catwalk - components: - - pos: -43.5,49.5 - parent: 1 - type: Transform -- uid: 6338 - type: Catwalk - components: - - pos: -43.5,50.5 - parent: 1 - type: Transform -- uid: 6339 - type: Catwalk - components: - - pos: -42.5,51.5 - parent: 1 - type: Transform -- uid: 6340 - type: Catwalk - components: - - pos: -41.5,51.5 - parent: 1 - type: Transform -- uid: 6341 - type: Grille - components: - - pos: 39.5,54.5 - parent: 1 - type: Transform -- uid: 6342 - type: Grille - components: - - pos: 39.5,55.5 - parent: 1 - type: Transform -- uid: 6343 - type: WallReinforced - components: - - pos: -40.5,56.5 - parent: 1 - type: Transform -- uid: 6344 - type: FirelockGlass - components: - - pos: 43.5,41.5 - parent: 1 - type: Transform -- uid: 6345 - type: FirelockGlass - components: - - pos: 44.5,41.5 - parent: 1 - type: Transform -- uid: 6346 - type: FirelockGlass - components: - - pos: 45.5,43.5 - parent: 1 - type: Transform -- uid: 6347 - type: TableReinforced - components: - - pos: 44.5,41.5 - parent: 1 - type: Transform -- uid: 6348 - type: TableReinforced - components: - - pos: 43.5,41.5 - parent: 1 - type: Transform -- uid: 6349 - type: WallSolid - components: - - pos: -12.5,68.5 - parent: 1 - type: Transform -- uid: 6350 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -10.5,68.5 - parent: 1 - type: Transform -- uid: 6351 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -11.5,68.5 - parent: 1 - type: Transform -- uid: 6352 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -9.5,70.5 - parent: 1 - type: Transform -- uid: 6353 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -8.5,68.5 - parent: 1 - type: Transform -- uid: 6354 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -7.5,68.5 - parent: 1 - type: Transform -- uid: 6355 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -44.5,56.5 - parent: 1 - type: Transform -- uid: 6356 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -6.5,68.5 - parent: 1 - type: Transform -- uid: 6357 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -6.5,69.5 - parent: 1 - type: Transform -- uid: 6358 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -9.5,68.5 - parent: 1 - type: Transform -- uid: 6359 - type: AirlockExternalLocked - components: - - pos: -10.5,71.5 - parent: 1 - type: Transform -- uid: 6360 - type: WallSolid - components: - - pos: -3.5,68.5 - parent: 1 - type: Transform -- uid: 6361 - type: AirlockGlass - components: - - pos: -29.5,33.5 - parent: 1 - type: Transform -- uid: 6362 - type: ExosuitFabricator - components: - - pos: -17.5,34.5 - parent: 1 - type: Transform -- uid: 6363 - type: FirelockGlass - components: - - pos: -14.5,26.5 - parent: 1 - type: Transform -- uid: 6364 - type: FirelockGlass - components: - - pos: -10.5,18.5 - parent: 1 - type: Transform -- uid: 6365 - type: FirelockGlass - components: - - pos: -10.5,26.5 - parent: 1 - type: Transform -- uid: 6366 - type: MachineAPE - components: - - rot: -1.5707963267948966 rad - pos: -14.5,20.5 - parent: 1 - type: Transform -- uid: 6367 - type: MachineAPE - components: - - rot: -1.5707963267948966 rad - pos: -14.5,19.5 - parent: 1 - type: Transform -- uid: 6368 - type: CryoPod - components: - - pos: 12.5,33.5 - parent: 1 - type: Transform -- uid: 6369 - type: GasPort - components: - - pos: 10.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6370 - type: GasThermoMachineFreezer - components: - - pos: 11.5,34.5 - parent: 1 - type: Transform -- uid: 6371 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 10.5,33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6372 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 11.5,33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6373 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: 11.5,32.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6374 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 12.5,32.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6375 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,31.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6376 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 12.5,30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6377 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 11.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6378 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 8.5,30.5 - parent: 1 - type: Transform -- uid: 6379 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 9.5,29.5 - parent: 1 - type: Transform -- uid: 6380 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 11.5,29.5 - parent: 1 - type: Transform -- uid: 6381 - type: MedicalScanner - components: - - pos: 9.5,32.5 - parent: 1 - type: Transform -- uid: 6382 - type: ComputerCloningConsole - components: - - rot: 1.5707963267948966 rad - pos: 9.5,33.5 - parent: 1 - type: Transform -- uid: 6383 - type: TableGlass - components: - - pos: 9.5,34.5 - parent: 1 - type: Transform -- uid: 6384 - type: CloningPod - components: - - pos: 9.5,31.5 - parent: 1 - type: Transform -- uid: 6385 - type: BiomassReclaimer - components: - - pos: 9.5,30.5 - parent: 1 - type: Transform -- uid: 6386 - type: TableGlass - components: - - pos: 12.5,22.5 - parent: 1 - type: Transform -- uid: 6387 - type: TableGlass - components: - - pos: 12.5,23.5 - parent: 1 - type: Transform -- uid: 6388 - type: TableGlass - components: - - pos: 12.5,24.5 - parent: 1 - type: Transform -- uid: 6389 - type: MedicalTechFab - components: - - pos: 8.5,26.5 - parent: 1 - type: Transform -- uid: 6390 - type: TableGlass - components: - - pos: 9.5,26.5 - parent: 1 - type: Transform -- uid: 6391 - type: FirelockGlass - components: - - pos: 9.5,23.5 - parent: 1 - type: Transform -- uid: 6392 - type: FirelockGlass - components: - - pos: 9.5,22.5 - parent: 1 - type: Transform -- uid: 6393 - type: FirelockGlass - components: - - pos: 6.5,26.5 - parent: 1 - type: Transform -- uid: 6394 - type: FirelockGlass - components: - - pos: 6.5,29.5 - parent: 1 - type: Transform -- uid: 6395 - type: FirelockGlass - components: - - pos: 7.5,29.5 - parent: 1 - type: Transform -- uid: 6396 - type: FirelockGlass - components: - - pos: 10.5,29.5 - parent: 1 - type: Transform -- uid: 6397 - type: FirelockGlass - components: - - pos: 13.5,28.5 - parent: 1 - type: Transform -- uid: 6398 - type: FirelockGlass - components: - - pos: 11.5,21.5 - parent: 1 - type: Transform -- uid: 6399 - type: FirelockGlass - components: - - pos: 5.5,18.5 - parent: 1 - type: Transform -- uid: 6400 - type: FirelockGlass - components: - - pos: 5.5,17.5 - parent: 1 - type: Transform -- uid: 6401 - type: ReinforcedWindow - components: - - pos: 10.5,21.5 - parent: 1 - type: Transform -- uid: 6402 - type: ReinforcedWindow - components: - - pos: 12.5,21.5 - parent: 1 - type: Transform -- uid: 6403 - type: DisposalUnit - components: - - pos: 16.5,20.5 - parent: 1 - type: Transform -- uid: 6404 - type: DisposalUnit - components: - - pos: 16.5,29.5 - parent: 1 - type: Transform -- uid: 6405 - type: AirlockMedicalGlassLocked - components: - - pos: 11.5,21.5 - parent: 1 - type: Transform -- uid: 6406 - type: PoweredlightLED - components: - - rot: -1.5707963267948966 rad - pos: 12.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6407 - type: PoweredlightLED - components: - - rot: 1.5707963267948966 rad - pos: 4.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6408 - type: CableHV - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6409 - type: CableHV - components: - - pos: 7.5,-17.5 - parent: 1 - type: Transform -- uid: 6410 - type: CableHV - components: - - pos: 8.5,-17.5 - parent: 1 - type: Transform -- uid: 6411 - type: CableHV - components: - - pos: 8.5,-18.5 - parent: 1 - type: Transform -- uid: 6412 - type: AirCanister - components: - - pos: -9.5,24.5 - parent: 1 - type: Transform -- uid: 6413 - type: WallSolid - components: - - pos: -17.5,11.5 - parent: 1 - type: Transform -- uid: 6414 - type: WallSolid - components: - - pos: -17.5,10.5 - parent: 1 - type: Transform -- uid: 6415 - type: WallSolid - components: - - pos: -17.5,9.5 - parent: 1 - type: Transform -- uid: 6416 - type: WallSolid - components: - - pos: -16.5,8.5 - parent: 1 - type: Transform -- uid: 6417 - type: Catwalk - components: - - pos: -15.5,8.5 - parent: 1 - type: Transform -- uid: 6418 - type: Catwalk - components: - - pos: -16.5,7.5 - parent: 1 - type: Transform -- uid: 6419 - type: Catwalk - components: - - pos: -17.5,7.5 - parent: 1 - type: Transform -- uid: 6420 - type: Catwalk - components: - - pos: -18.5,7.5 - parent: 1 - type: Transform -- uid: 6421 - type: Catwalk - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform -- uid: 6422 - type: Catwalk - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform -- uid: 6423 - type: Catwalk - components: - - pos: -19.5,4.5 - parent: 1 - type: Transform -- uid: 6424 - type: Catwalk - components: - - pos: -19.5,3.5 - parent: 1 - type: Transform -- uid: 6425 - type: Catwalk - components: - - pos: -19.5,2.5 - parent: 1 - type: Transform -- uid: 6426 - type: Catwalk - components: - - pos: -19.5,1.5 - parent: 1 - type: Transform -- uid: 6427 - type: Catwalk - components: - - pos: -19.5,0.5 - parent: 1 - type: Transform -- uid: 6428 - type: Catwalk - components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform -- uid: 6429 - type: Catwalk - components: - - pos: -19.5,-1.5 - parent: 1 - type: Transform -- uid: 6430 - type: Catwalk - components: - - pos: -20.5,-2.5 - parent: 1 - type: Transform -- uid: 6431 - type: Catwalk - components: - - pos: -21.5,-2.5 - parent: 1 - type: Transform -- uid: 6432 - type: Catwalk - components: - - pos: -19.5,-3.5 - parent: 1 - type: Transform -- uid: 6433 - type: Catwalk - components: - - pos: -19.5,-4.5 - parent: 1 - type: Transform -- uid: 6434 - type: Catwalk - components: - - pos: -20.5,-5.5 - parent: 1 - type: Transform -- uid: 6435 - type: Catwalk - components: - - pos: -21.5,-5.5 - parent: 1 - type: Transform -- uid: 6436 - type: Catwalk - components: - - pos: -22.5,-5.5 - parent: 1 - type: Transform -- uid: 6437 - type: Catwalk - components: - - pos: -23.5,-5.5 - parent: 1 - type: Transform -- uid: 6438 - type: Catwalk - components: - - pos: -24.5,-5.5 - parent: 1 - type: Transform -- uid: 6439 - type: Catwalk - components: - - pos: -25.5,-5.5 - parent: 1 - type: Transform -- uid: 6440 - type: CableHV - components: - - pos: -27.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6441 - type: CableHV - components: - - pos: -27.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6442 - type: CableHV - components: - - pos: -27.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6443 - type: CableHV - components: - - pos: -27.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6444 - type: CableHV - components: - - pos: -27.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6445 - type: CableHV - components: - - pos: -27.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6446 - type: CableHV - components: - - pos: -27.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6447 - type: CableHV - components: - - pos: -27.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6448 - type: CableHV - components: - - pos: -28.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6449 - type: CableHV - components: - - pos: -29.5,1.5 - parent: 1 - type: Transform -- uid: 6450 - type: CableHV - components: - - pos: -30.5,1.5 - parent: 1 - type: Transform -- uid: 6451 - type: CableHV - components: - - pos: -31.5,1.5 - parent: 1 - type: Transform -- uid: 6452 - type: Catwalk - components: - - pos: -27.5,-4.5 - parent: 1 - type: Transform -- uid: 6453 - type: Catwalk - components: - - pos: -27.5,-3.5 - parent: 1 - type: Transform -- uid: 6454 - type: Catwalk - components: - - pos: -27.5,-2.5 - parent: 1 - type: Transform -- uid: 6455 - type: Catwalk - components: - - pos: -27.5,-1.5 - parent: 1 - type: Transform -- uid: 6456 - type: Catwalk - components: - - pos: -27.5,-0.5 - parent: 1 - type: Transform -- uid: 6457 - type: Catwalk - components: - - pos: -27.5,0.5 - parent: 1 - type: Transform -- uid: 6458 - type: WallSolid - components: - - pos: -28.5,-2.5 - parent: 1 - type: Transform -- uid: 6459 - type: BananaPhoneInstrument - components: - - pos: -15.461665,-0.34175533 - parent: 1 - type: Transform -- uid: 6460 - type: HighSecCommandLocked - components: - - pos: 18.5,-10.5 - parent: 1 - type: Transform -- uid: 6461 - type: EncryptionKeyCargo - components: - - flags: InContainer - type: MetaData - - parent: 4703 - type: Transform - - canCollide: False - type: Physics -- uid: 6462 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 2.5,87.5 - parent: 1 - type: Transform -- uid: 6463 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 3.5,87.5 - parent: 1 - type: Transform -- uid: 6464 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 4.5,87.5 - parent: 1 - type: Transform -- uid: 6465 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 5.5,87.5 - parent: 1 - type: Transform -- uid: 6466 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 5.5,86.5 - parent: 1 - type: Transform -- uid: 6467 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 6.5,86.5 - parent: 1 - type: Transform -- uid: 6468 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-28.5 - parent: 1 - type: Transform -- uid: 6469 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 8.5,86.5 - parent: 1 - type: Transform -- uid: 6470 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 9.5,86.5 - parent: 1 - type: Transform -- uid: 6471 - type: WallSolid - components: - - pos: -32.5,-21.5 - parent: 1 - type: Transform -- uid: 6472 - type: WallSolid - components: - - pos: -32.5,-20.5 - parent: 1 - type: Transform -- uid: 6473 - type: Catwalk - components: - - pos: 5.5,-28.5 - parent: 1 - type: Transform -- uid: 6474 - type: Bookshelf - components: - - pos: -18.5,-33.5 - parent: 1 - type: Transform -- uid: 6475 - type: HighSecCommandLocked - components: - - pos: 3.5,47.5 - parent: 1 - type: Transform -- uid: 6476 - type: Bed - components: - - pos: -17.5,1.5 - parent: 1 - type: Transform -- uid: 6477 - type: AirlockExternalGlass - components: - - pos: 50.5,-14.5 - parent: 1 - type: Transform -- uid: 6478 - type: Grille - components: - - pos: -53.5,45.5 - parent: 1 - type: Transform -- uid: 6479 - type: SignSpace - components: - - pos: 50.5,-13.5 - parent: 1 - type: Transform -- uid: 6480 - type: Bed - components: - - pos: 33.5,-17.5 - parent: 1 - type: Transform -- uid: 6481 - type: ReinforcedWindow - components: - - pos: 46.5,-15.5 - parent: 1 - type: Transform -- uid: 6482 - type: Bed - components: - - pos: -10.5,40.5 - parent: 1 - type: Transform -- uid: 6483 - type: Grille - components: - - pos: -53.5,42.5 - parent: 1 - type: Transform -- uid: 6484 - type: HighSecCommandLocked - components: - - pos: 3.5,46.5 - parent: 1 - type: Transform -- uid: 6485 - type: Catwalk - components: - - pos: 7.5,-28.5 - parent: 1 - type: Transform -- uid: 6486 - type: Bed - components: - - pos: -17.5,3.5 - parent: 1 - type: Transform -- uid: 6487 - type: Bed - components: - - pos: -17.5,-2.5 - parent: 1 - type: Transform -- uid: 6488 - type: Catwalk - components: - - pos: 6.5,-28.5 - parent: 1 - type: Transform -- uid: 6489 - type: Bed - components: - - pos: -4.5,40.5 - parent: 1 - type: Transform -- uid: 6490 - type: Bed - components: - - pos: -7.5,40.5 - parent: 1 - type: Transform -- uid: 6491 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6492 - type: Grille - components: - - pos: -53.5,43.5 - parent: 1 - type: Transform -- uid: 6493 - type: Grille - components: - - pos: -53.5,41.5 - parent: 1 - type: Transform -- uid: 6494 - type: Bed - components: - - pos: -13.5,40.5 - parent: 1 - type: Transform -- uid: 6495 - type: ReinforcedWindow - components: - - pos: 43.5,-10.5 - parent: 1 - type: Transform -- uid: 6496 - type: WallReinforced - components: - - pos: 50.5,-13.5 - parent: 1 - type: Transform -- uid: 6497 - type: Grille - components: - - pos: 42.5,-10.5 - parent: 1 - type: Transform -- uid: 6498 - type: Grille - components: - - pos: 43.5,-10.5 - parent: 1 - type: Transform -- uid: 6499 - type: Grille - components: - - pos: 44.5,-12.5 - parent: 1 - type: Transform -- uid: 6500 - type: CableHV - components: - - pos: 9.5,-28.5 - parent: 1 - type: Transform -- uid: 6501 - type: WallSolid - components: - - pos: -33.5,-22.5 - parent: 1 - type: Transform -- uid: 6502 - type: TableCarpet - components: - - pos: -39.5,-11.5 - parent: 1 - type: Transform -- uid: 6503 - type: Dresser - components: - - pos: -35.5,-19.5 - parent: 1 - type: Transform -- uid: 6504 - type: HighSecCommandLocked - components: - - pos: 1.5,47.5 - parent: 1 - type: Transform -- uid: 6505 - type: HighSecCommandLocked - components: - - pos: 1.5,46.5 - parent: 1 - type: Transform -- uid: 6506 - type: Bed - components: - - pos: -10.5,10.5 - parent: 1 - type: Transform -- uid: 6507 - type: SMESBasic - components: - - pos: 5.5,-29.5 - parent: 1 - type: Transform -- uid: 6508 - type: WallSolid - components: - - pos: -33.5,-21.5 - parent: 1 - type: Transform -- uid: 6509 - type: WallReinforced - components: - - pos: 50.5,-6.5 - parent: 1 - type: Transform -- uid: 6510 - type: Grille - components: - - pos: 51.5,-8.5 - parent: 1 - type: Transform -- uid: 6511 - type: Grille - components: - - pos: 50.5,-10.5 - parent: 1 - type: Transform -- uid: 6512 - type: WallReinforced - components: - - pos: 52.5,-8.5 - parent: 1 - type: Transform -- uid: 6513 - type: WallReinforced - components: - - pos: 52.5,-13.5 - parent: 1 - type: Transform -- uid: 6514 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-14.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 6515 - type: Grille - components: - - pos: 50.5,-12.5 - parent: 1 - type: Transform -- uid: 6516 - type: SpawnPointLatejoin - components: - - pos: 41.5,-7.5 - parent: 1 - type: Transform -- uid: 6517 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6518 - type: ReinforcedWindow - components: - - pos: 50.5,-11.5 - parent: 1 - type: Transform -- uid: 6519 - type: CableHV - components: - - pos: -44.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6520 - type: CableHV - components: - - pos: -42.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6521 - type: CableApcExtension - components: - - pos: 48.5,-10.5 - parent: 1 - type: Transform -- uid: 6522 - type: AirlockExternalGlass - components: - - pos: 35.5,1.5 - parent: 1 - type: Transform -- uid: 6523 - type: ReinforcedWindow - components: - - pos: 44.5,-14.5 - parent: 1 - type: Transform -- uid: 6524 - type: ReinforcedWindow - components: - - pos: 44.5,-11.5 - parent: 1 - type: Transform -- uid: 6525 - type: CableApcExtension - components: - - pos: 48.5,-11.5 - parent: 1 - type: Transform -- uid: 6527 - type: CableHV - components: - - pos: -46.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6528 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 1 - type: Transform -- uid: 6529 - type: CableHV - components: - - pos: -40.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6532 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 37.5,6.5 - parent: 1 - type: Transform -- uid: 6536 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 36.5,7.5 - parent: 1 - type: Transform -- uid: 6537 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 35.5,7.5 - parent: 1 - type: Transform -- uid: 6538 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 36.5,0.5 - parent: 1 - type: Transform -- uid: 6539 - type: CableHV - components: - - pos: -45.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6540 - type: CableHV - components: - - pos: -47.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6541 - type: CableHV - components: - - pos: -46.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6548 - type: CableHV - components: - - pos: -36.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6549 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 37.5,4.5 - parent: 1 - type: Transform -- uid: 6555 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-2.5 - parent: 1 - type: Transform -- uid: 6556 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 35.5,7.5 - parent: 1 - type: Transform -- uid: 6557 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 1 - type: Transform -- uid: 6558 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 35.5,2.5 - parent: 1 - type: Transform -- uid: 6559 - type: AirlockExternalGlass - components: - - pos: 48.5,16.5 - parent: 1 - type: Transform -- uid: 6560 - type: AirlockExternalGlass - components: - - pos: 46.5,35.5 - parent: 1 - type: Transform -- uid: 6561 - type: AirlockExternalGlass - components: - - pos: 48.5,35.5 - parent: 1 - type: Transform -- uid: 6563 - type: AirlockExternalGlass - components: - - pos: 50.5,36.5 - parent: 1 - type: Transform -- uid: 6564 - type: AirlockExternalGlass - components: - - pos: 50.5,38.5 - parent: 1 - type: Transform -- uid: 6565 - type: AirlockExternalGlass - components: - - pos: 50.5,13.5 - parent: 1 - type: Transform -- uid: 6566 - type: AirlockExternalGlass - components: - - pos: 50.5,15.5 - parent: 1 - type: Transform -- uid: 6567 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 46.5,11.5 - parent: 1 - type: Transform -- uid: 6568 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 49.5,11.5 - parent: 1 - type: Transform -- uid: 6569 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-5.5 - parent: 1 - type: Transform -- uid: 6570 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-5.5 - parent: 1 - type: Transform -- uid: 6571 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 37.5,5.5 - parent: 1 - type: Transform -- uid: 6572 - type: CableHV - components: - - pos: -41.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6573 - type: CableHV - components: - - pos: -47.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6574 - type: CableHV - components: - - pos: -43.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6575 - type: SMESBasic - components: - - pos: 7.5,-29.5 - parent: 1 - type: Transform -- uid: 6576 - type: CableHV - components: - - pos: 6.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6577 - type: CableHV - components: - - pos: 8.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6578 - type: Catwalk - components: - - pos: 8.5,-28.5 - parent: 1 - type: Transform -- uid: 6579 - type: CableHV - components: - - pos: 6.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6580 - type: CableHV - components: - - pos: 7.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6581 - type: Grille - components: - - pos: 4.5,65.5 - parent: 1 - type: Transform -- uid: 6582 - type: Window - components: - - pos: 3.5,65.5 - parent: 1 - type: Transform -- uid: 6583 - type: Window - components: - - pos: 4.5,65.5 - parent: 1 - type: Transform -- uid: 6584 - type: GasPort - components: - - pos: -6.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6585 - type: GasPort - components: - - pos: -7.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6586 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -7.5,33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6587 - type: StorageCanister - components: - - pos: -6.5,34.5 - parent: 1 - type: Transform -- uid: 6588 - type: StorageCanister - components: - - pos: -7.5,34.5 - parent: 1 - type: Transform -- uid: 6589 - type: WaterVaporCanister - components: - - pos: -11.5,33.5 - parent: 1 - type: Transform -- uid: 6590 - type: NitrousOxideCanister - components: - - pos: -11.5,32.5 - parent: 1 - type: Transform -- uid: 6591 - type: PlasmaCanister - components: - - pos: -11.5,31.5 - parent: 1 - type: Transform -- uid: 6592 - type: SheetSteel - components: - - pos: -7.463681,24.509438 - parent: 1 - type: Transform -- uid: 6593 - type: SheetPlastic - components: - - pos: -7.1513085,24.509438 - parent: 1 - type: Transform -- uid: 6594 - type: SheetGlass - components: - - pos: -6.753741,24.452673 - parent: 1 - type: Transform -- uid: 6595 - type: Multitool - components: - - pos: -6.480236,24.566202 - parent: 1 - type: Transform -- uid: 6596 - type: ClosetL3ScienceFilled - components: - - pos: -8.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6597 - type: ClosetL3ScienceFilled - components: - - pos: -15.5,28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6598 - type: ClosetRadiationSuitFilled - components: - - pos: -15.5,27.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6599 - type: ClosetRadiationSuitFilled - components: - - pos: -7.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6600 - type: ClothingBackpackDuffelSurgeryFilled - components: - - pos: -21.460129,34.673306 - parent: 1 - type: Transform -- uid: 6601 - type: TableGlass - components: - - pos: -15.5,-5.5 - parent: 1 - type: Transform -- uid: 6602 - type: TableGlass - components: - - pos: -16.5,-5.5 - parent: 1 - type: Transform -- uid: 6603 - type: TableReinforced - components: - - pos: -15.5,-0.5 - parent: 1 - type: Transform -- uid: 6604 - type: TableReinforced - components: - - pos: -16.5,-0.5 - parent: 1 - type: Transform -- uid: 6605 - type: TableStone - components: - - pos: -15.5,5.5 - parent: 1 - type: Transform -- uid: 6606 - type: TableStone - components: - - pos: -16.5,5.5 - parent: 1 - type: Transform -- uid: 6607 - type: FoodPieBananaCream - components: - - pos: -15.830833,-0.5688125 - parent: 1 - type: Transform -- uid: 6608 - type: FoodPieBananaCream - components: - - pos: -15.8876295,-0.25660872 - parent: 1 - type: Transform -- uid: 6609 - type: FoodPieBananaCream - components: - - pos: -16.086414,-0.6255777 - parent: 1 - type: Transform -- uid: 6610 - type: LauncherCreamPie - components: - - pos: -15.972822,-0.42690194 - parent: 1 - type: Transform -- uid: 6611 - type: ClothingBackpackClown - components: - - pos: -16.569172,-0.39851928 - parent: 1 - type: Transform -- uid: 6612 - type: BedsheetClown - components: - - pos: -17.5,1.5 - parent: 1 - type: Transform -- uid: 6613 - type: Dresser - components: - - pos: -15.5,1.5 - parent: 1 - type: Transform -- uid: 6614 - type: Dresser - components: - - pos: -15.5,-2.5 - parent: 1 - type: Transform -- uid: 6615 - type: Dresser - components: - - pos: -15.5,3.5 - parent: 1 - type: Transform -- uid: 6616 - type: DrinkBottleOfNothingFull - components: - - pos: -15.221133,5.7888036 - parent: 1 - type: Transform -- uid: 6617 - type: ClothingHeadHatMimesoftFlipped - components: - - pos: -15.675494,5.6185107 - parent: 1 - type: Transform -- uid: 6618 - type: CrayonMime - components: - - pos: -15.95947,5.6185107 - parent: 1 - type: Transform -- uid: 6619 - type: FoodTartMime - components: - - pos: -16.442228,5.5049815 - parent: 1 - type: Transform -- uid: 6620 - type: BedsheetMime - components: - - pos: -17.5,3.5 - parent: 1 - type: Transform -- uid: 6621 - type: DawInstrumentMachineCircuitboard - components: - - pos: -15.5903015,-5.413738 - parent: 1 - type: Transform -- uid: 6622 - type: RandomInstruments - components: - - pos: -16.5,-5.5 - parent: 1 - type: Transform -- uid: 6623 - type: BedsheetCosmos - components: - - pos: -17.5,-2.5 - parent: 1 - type: Transform -- uid: 6624 - type: ClothingUniformJumpskirtPerformer - components: - - pos: -16.07306,-5.413738 - parent: 1 - type: Transform -- uid: 6625 - type: ClothingShoesBootsPerformer - components: - - pos: -16.470627,-5.3569727 - parent: 1 - type: Transform -- uid: 6626 - type: LockerFreezer - components: - - pos: 8.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6627 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: -19.5,31.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 1066 - - port: Toggle - uid: 1106 - - port: Toggle - uid: 1065 - type: SignalTransmitter - - type: ItemCooldown -- uid: 6628 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 4.5,3.5 - parent: 1 - type: Transform -- uid: 6629 - type: Drill - components: - - pos: -18.368849,30.698196 - parent: 1 - type: Transform -- uid: 6630 - type: AirlockFreezerKitchenHydroLocked - components: - - pos: 11.5,0.5 - parent: 1 - type: Transform -- uid: 6631 - type: FloorDrain - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 6632 - type: KitchenSpike - components: - - pos: 12.5,3.5 - parent: 1 - type: Transform -- uid: 6633 - type: LockerFreezer - components: - - pos: 10.5,3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 234.99968 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6634 - type: BoxMousetrap - components: - - pos: 12.496991,1.4858572 - parent: 1 - type: Transform -- uid: 6635 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -38.5,8.5 - parent: 1 - type: Transform -- uid: 6636 - type: AirlockExternalGlassCargoLocked - components: - - pos: -41.5,2.5 - parent: 1 - type: Transform -- uid: 6637 - type: AirlockExternalGlassCargoLocked - components: - - pos: -41.5,4.5 - parent: 1 - type: Transform -- uid: 6638 - type: AirlockExternalGlass - components: - - pos: -51.5,-9.5 - parent: 1 - type: Transform -- uid: 6639 - type: AirlockExternalGlass - components: - - pos: -51.5,-8.5 - parent: 1 - type: Transform -- uid: 6640 - type: AirlockExternalGlass - components: - - pos: -51.5,-7.5 - parent: 1 - type: Transform -- uid: 6641 - type: AirlockExternalGlass - components: - - pos: -49.5,-10.5 - parent: 1 - type: Transform -- uid: 6642 - type: AirlockExternalGlass - components: - - pos: -48.5,-10.5 - parent: 1 - type: Transform -- uid: 6643 - type: AirlockExternalGlass - components: - - pos: -47.5,-10.5 - parent: 1 - type: Transform -- uid: 6644 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-8.5 - parent: 1 - type: Transform -- uid: 6645 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-8.5 - parent: 1 - type: Transform -- uid: 6646 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-8.5 - parent: 1 - type: Transform -- uid: 6647 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-8.5 - parent: 1 - type: Transform -- uid: 6648 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-4.5 - parent: 1 - type: Transform -- uid: 6649 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 1 - type: Transform -- uid: 6650 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-1.5 - parent: 1 - type: Transform -- uid: 6651 - type: PowerCellRecharger - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-3.5 - parent: 1 - type: Transform -- uid: 6652 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,7.5 - parent: 1 - type: Transform -- uid: 6653 - type: ShuttersNormalOpen - components: - - pos: -40.5,-3.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17634 - type: SignalReceiver -- uid: 6654 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 - parent: 1 - type: Transform -- uid: 6655 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-8.5 - parent: 1 - type: Transform -- uid: 6656 - type: FirelockGlass - components: - - pos: -41.5,-3.5 - parent: 1 - type: Transform -- uid: 6657 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-7.5 - parent: 1 - type: Transform -- uid: 6658 - type: Barricade - components: - - pos: -45.5,-9.5 - parent: 1 - type: Transform -- uid: 6659 - type: Barricade - components: - - pos: -49.5,-7.5 - parent: 1 - type: Transform -- uid: 6660 - type: Barricade - components: - - pos: -48.5,-6.5 - parent: 1 - type: Transform -- uid: 6661 - type: ComputerSurveillanceCameraMonitor - components: - - pos: -34.5,-0.5 - parent: 1 - type: Transform -- uid: 6662 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,-14.5 - parent: 1 - type: Transform -- uid: 6663 - type: Holoprojector - components: - - pos: 16.524984,-4.1055784 - parent: 1 - type: Transform -- uid: 6664 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-0.5 - parent: 1 - type: Transform -- uid: 6665 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-2.5 - parent: 1 - type: Transform -- uid: 6666 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-1.5 - parent: 1 - type: Transform -- uid: 6667 - type: FirelockGlass - components: - - pos: -40.5,-3.5 - parent: 1 - type: Transform -- uid: 6668 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -27.5,6.5 - parent: 1 - type: Transform -- uid: 6669 - type: ClothingEyesGlasses - components: - - pos: -26.470171,6.9534106 - parent: 1 - type: Transform -- uid: 6670 - type: WarpPoint - components: - - pos: 30.5,4.5 - parent: 1 - type: Transform - - location: HoP - type: WarpPoint -- uid: 6671 - type: BookAtmosAirAlarms - components: - - pos: -27.804857,7.7764955 - parent: 1 - type: Transform -- uid: 6672 - type: BookAtmosDistro - components: - - pos: -27.606073,7.6062016 - parent: 1 - type: Transform -- uid: 6673 - type: BookAtmosVentsMore - components: - - pos: -27.293701,7.8048778 - parent: 1 - type: Transform -- uid: 6674 - type: BookAtmosWaste - components: - - pos: -27.151712,7.6062016 - parent: 1 - type: Transform -- uid: 6675 - type: BookAtmosWaste - components: - - pos: -27.151712,7.6062016 - parent: 1 - type: Transform -- uid: 6676 - type: FaxMachineBase - components: - - pos: -28.5,7.5 - parent: 1 - type: Transform - - name: Library - type: FaxMachine -- uid: 6677 - type: BookRandom - components: - - pos: -26.640556,7.8048778 - parent: 1 - type: Transform -- uid: 6678 - type: BookRandom - components: - - pos: -26.413376,7.5210557 - parent: 1 - type: Transform -- uid: 6679 - type: BooksBag - components: - - pos: -27.492485,6.5560603 - parent: 1 - type: Transform -- uid: 6680 - type: DogBed - components: - - pos: -28.5,6.5 - parent: 1 - type: Transform -- uid: 6681 - type: SpawnMobSlothPaperwork - components: - - pos: -28.5,6.5 - parent: 1 - type: Transform -- uid: 6682 - type: TableWood - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform -- uid: 6683 - type: TableWood - components: - - pos: -23.5,5.5 - parent: 1 - type: Transform -- uid: 6684 - type: ChairWood - components: - - pos: -22.5,6.5 - parent: 1 - type: Transform -- uid: 6685 - type: ChairWood - components: - - pos: -23.5,6.5 - parent: 1 - type: Transform -- uid: 6686 - type: CarpetGreen - components: - - pos: -23.5,5.5 - parent: 1 - type: Transform -- uid: 6687 - type: CarpetGreen - components: - - pos: -23.5,6.5 - parent: 1 - type: Transform -- uid: 6688 - type: CarpetGreen - components: - - pos: -22.5,6.5 - parent: 1 - type: Transform -- uid: 6689 - type: CarpetGreen - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform -- uid: 6690 - type: CarpetGreen - components: - - pos: -28.5,7.5 - parent: 1 - type: Transform -- uid: 6691 - type: CarpetGreen - components: - - pos: -28.5,6.5 - parent: 1 - type: Transform -- uid: 6692 - type: CarpetGreen - components: - - pos: -28.5,5.5 - parent: 1 - type: Transform -- uid: 6693 - type: CarpetGreen - components: - - pos: -27.5,7.5 - parent: 1 - type: Transform -- uid: 6694 - type: CarpetGreen - components: - - pos: -27.5,6.5 - parent: 1 - type: Transform -- uid: 6695 - type: CarpetGreen - components: - - pos: -27.5,5.5 - parent: 1 - type: Transform -- uid: 6696 - type: CarpetGreen - components: - - pos: -26.5,7.5 - parent: 1 - type: Transform -- uid: 6697 - type: CarpetGreen - components: - - pos: -26.5,6.5 - parent: 1 - type: Transform -- uid: 6698 - type: CarpetGreen - components: - - pos: -26.5,5.5 - parent: 1 - type: Transform -- uid: 6699 - type: CarpetOrange - components: - - pos: -26.5,11.5 - parent: 1 - type: Transform -- uid: 6700 - type: CarpetOrange - components: - - pos: -26.5,10.5 - parent: 1 - type: Transform -- uid: 6701 - type: CarpetOrange - components: - - pos: -26.5,9.5 - parent: 1 - type: Transform -- uid: 6702 - type: CarpetOrange - components: - - pos: -25.5,11.5 - parent: 1 - type: Transform -- uid: 6703 - type: CarpetOrange - components: - - pos: -25.5,10.5 - parent: 1 - type: Transform -- uid: 6704 - type: CarpetOrange - components: - - pos: -25.5,9.5 - parent: 1 - type: Transform -- uid: 6705 - type: CarpetOrange - components: - - pos: -24.5,11.5 - parent: 1 - type: Transform -- uid: 6706 - type: CarpetOrange - components: - - pos: -24.5,10.5 - parent: 1 - type: Transform -- uid: 6707 - type: CarpetOrange - components: - - pos: -24.5,9.5 - parent: 1 - type: Transform -- uid: 6708 - type: CableHV - components: - - pos: -35.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6709 - type: CableHV - components: - - pos: -35.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6710 - type: CableHV - components: - - pos: -35.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6711 - type: CableHV - components: - - pos: -32.5,23.5 - parent: 1 - type: Transform -- uid: 6712 - type: CableHV - components: - - pos: -33.5,23.5 - parent: 1 - type: Transform -- uid: 6713 - type: Catwalk - components: - - pos: -34.5,24.5 - parent: 1 - type: Transform -- uid: 6714 - type: Catwalk - components: - - pos: -34.5,25.5 - parent: 1 - type: Transform -- uid: 6715 - type: Catwalk - components: - - pos: -34.5,26.5 - parent: 1 - type: Transform -- uid: 6716 - type: Catwalk - components: - - pos: -34.5,27.5 - parent: 1 - type: Transform -- uid: 6717 - type: Catwalk - components: - - pos: -34.5,28.5 - parent: 1 - type: Transform -- uid: 6718 - type: Catwalk - components: - - pos: -34.5,29.5 - parent: 1 - type: Transform -- uid: 6719 - type: Catwalk - components: - - pos: -34.5,30.5 - parent: 1 - type: Transform -- uid: 6720 - type: Catwalk - components: - - pos: -34.5,31.5 - parent: 1 - type: Transform -- uid: 6721 - type: Catwalk - components: - - pos: -34.5,32.5 - parent: 1 - type: Transform -- uid: 6722 - type: Catwalk - components: - - pos: -35.5,33.5 - parent: 1 - type: Transform -- uid: 6723 - type: Catwalk - components: - - pos: -36.5,33.5 - parent: 1 - type: Transform -- uid: 6724 - type: Catwalk - components: - - pos: -37.5,33.5 - parent: 1 - type: Transform -- uid: 6725 - type: Catwalk - components: - - pos: -38.5,33.5 - parent: 1 - type: Transform -- uid: 6726 - type: CableHV - components: - - pos: -34.5,13.5 - parent: 1 - type: Transform -- uid: 6727 - type: CableHV - components: - - pos: -35.5,13.5 - parent: 1 - type: Transform -- uid: 6728 - type: CableHV - components: - - pos: -33.5,13.5 - parent: 1 - type: Transform -- uid: 6729 - type: CableHV - components: - - pos: -35.5,14.5 - parent: 1 - type: Transform -- uid: 6730 - type: CableHV - components: - - pos: -35.5,15.5 - parent: 1 - type: Transform -- uid: 6731 - type: CableHV - components: - - pos: -35.5,16.5 - parent: 1 - type: Transform -- uid: 6732 - type: CableHV - components: - - pos: -35.5,17.5 - parent: 1 - type: Transform -- uid: 6733 - type: CableHV - components: - - pos: -35.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6734 - type: CableHV - components: - - pos: -34.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6735 - type: Catwalk - components: - - pos: -35.5,20.5 - parent: 1 - type: Transform -- uid: 6736 - type: Catwalk - components: - - pos: -35.5,19.5 - parent: 1 - type: Transform -- uid: 6737 - type: Catwalk - components: - - pos: -35.5,18.5 - parent: 1 - type: Transform -- uid: 6738 - type: CableHV - components: - - pos: -34.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6739 - type: CableHV - components: - - pos: -34.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6740 - type: CableHV - components: - - pos: -34.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6741 - type: CableHV - components: - - pos: -34.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6742 - type: CableHV - components: - - pos: -34.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6743 - type: CableHV - components: - - pos: -34.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6744 - type: CableHV - components: - - pos: -34.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6745 - type: CableHV - components: - - pos: -34.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6746 - type: CableHV - components: - - pos: -34.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6747 - type: CableHV - components: - - pos: -34.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6748 - type: CableHV - components: - - pos: -34.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6749 - type: CableHV - components: - - pos: -34.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6750 - type: CableHV - components: - - pos: -35.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6751 - type: CableHV - components: - - pos: -36.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6752 - type: CableHV - components: - - pos: -37.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6753 - type: CableHV - components: - - pos: -38.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6754 - type: CableHV - components: - - pos: -38.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6755 - type: CableHV - components: - - pos: -38.5,35.5 - parent: 1 - type: Transform -- uid: 6756 - type: CableHV - components: - - pos: -38.5,36.5 - parent: 1 - type: Transform -- uid: 6757 - type: CableHV - components: - - pos: -37.5,36.5 - parent: 1 - type: Transform -- uid: 6758 - type: CableHV - components: - - pos: -36.5,36.5 - parent: 1 - type: Transform -- uid: 6759 - type: CableHV - components: - - pos: -35.5,36.5 - parent: 1 - type: Transform -- uid: 6760 - type: CableHV - components: - - pos: -34.5,36.5 - parent: 1 - type: Transform -- uid: 6761 - type: CableHV - components: - - pos: -33.5,36.5 - parent: 1 - type: Transform -- uid: 6762 - type: CableHV - components: - - pos: -32.5,36.5 - parent: 1 - type: Transform -- uid: 6763 - type: CableHV - components: - - pos: -31.5,36.5 - parent: 1 - type: Transform -- uid: 6767 - type: CableHV - components: - - pos: -41.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6768 - type: CableHV - components: - - pos: -42.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6771 - type: AtmosDeviceFanTiny - components: - - pos: 52.5,13.5 - parent: 1 - type: Transform -- uid: 6772 - type: AtmosDeviceFanTiny - components: - - pos: 52.5,15.5 - parent: 1 - type: Transform -- uid: 6773 - type: AtmosDeviceFanTiny - components: - - pos: 48.5,18.5 - parent: 1 - type: Transform -- uid: 6774 - type: AtmosDeviceFanTiny - components: - - pos: 46.5,18.5 - parent: 1 - type: Transform -- uid: 6775 - type: AtmosDeviceFanTiny - components: - - pos: 46.5,33.5 - parent: 1 - type: Transform -- uid: 6776 - type: AtmosDeviceFanTiny - components: - - pos: 48.5,33.5 - parent: 1 - type: Transform -- uid: 6777 - type: AtmosDeviceFanTiny - components: - - pos: 52.5,36.5 - parent: 1 - type: Transform -- uid: 6778 - type: AtmosDeviceFanTiny - components: - - pos: 52.5,38.5 - parent: 1 - type: Transform -- uid: 6779 - type: AirlockMaintLocked - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-38.5 - parent: 1 - type: Transform -- uid: 6780 - type: WallReinforced - components: - - pos: 20.5,-28.5 - parent: 1 - type: Transform -- uid: 6781 - type: WallReinforced - components: - - pos: 20.5,-27.5 - parent: 1 - type: Transform -- uid: 6782 - type: TableWood - components: - - pos: 5.5,71.5 - parent: 1 - type: Transform -- uid: 6783 - type: TableWood - components: - - pos: 6.5,71.5 - parent: 1 - type: Transform -- uid: 6784 - type: TableWood - components: - - pos: 6.5,72.5 - parent: 1 - type: Transform -- uid: 6785 - type: TableWood - components: - - pos: 6.5,73.5 - parent: 1 - type: Transform -- uid: 6786 - type: TableWood - components: - - pos: 5.5,73.5 - parent: 1 - type: Transform -- uid: 6787 - type: TableWood - components: - - pos: 4.5,73.5 - parent: 1 - type: Transform -- uid: 6788 - type: TableWood - components: - - pos: 4.5,72.5 - parent: 1 - type: Transform -- uid: 6789 - type: TableReinforcedGlass - components: - - pos: 5.5,72.5 - parent: 1 - type: Transform -- uid: 6790 - type: WallReinforced - components: - - pos: -11.5,69.5 - parent: 1 - type: Transform -- uid: 6791 - type: AirlockCaptainLocked - components: - - pos: -5.5,75.5 - parent: 1 - type: Transform -- uid: 6792 - type: AirlockCommandGlassLocked - components: - - pos: -1.5,75.5 - parent: 1 - type: Transform -- uid: 6793 - type: AirlockCommandGlassLocked - components: - - pos: 0.5,75.5 - parent: 1 - type: Transform -- uid: 6794 - type: AirlockCommandGlassLocked - components: - - pos: 5.5,75.5 - parent: 1 - type: Transform -- uid: 6795 - type: AirlockCommandGlassLocked - components: - - pos: -1.5,69.5 - parent: 1 - type: Transform -- uid: 6796 - type: AirlockCommandGlassLocked - components: - - pos: 0.5,69.5 - parent: 1 - type: Transform -- uid: 6797 - type: Bed - components: - - pos: -5.5,72.5 - parent: 1 - type: Transform -- uid: 6798 - type: HospitalCurtainsOpen - components: - - pos: -5.5,72.5 - parent: 1 - type: Transform -- uid: 6799 - type: SpawnPointCaptain - components: - - pos: -2.5,79.5 - parent: 1 - type: Transform -- uid: 6800 - type: FaxMachineCaptain - components: - - pos: -8.5,74.5 - parent: 1 - type: Transform -- uid: 6801 - type: BedsheetCaptain - components: - - pos: -5.5,72.5 - parent: 1 - type: Transform -- uid: 6802 - type: ComputerComms - components: - - pos: -7.5,74.5 - parent: 1 - type: Transform -- uid: 6803 - type: TableWood - components: - - pos: -8.5,74.5 - parent: 1 - type: Transform -- uid: 6804 - type: Fireplace - components: - - pos: -6.5,74.5 - parent: 1 - type: Transform -- uid: 6805 - type: PenCap - components: - - pos: -6.5470595,72.51975 - parent: 1 - type: Transform -- uid: 6806 - type: CarpetSBlue - components: - - pos: -5.5,72.5 - parent: 1 - type: Transform -- uid: 6807 - type: TableWood - components: - - pos: -6.5,72.5 - parent: 1 - type: Transform -- uid: 6808 - type: LockerCaptainFilled - components: - - pos: -7.5,72.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6809 - type: PaperCaptainsThoughts - components: - - pos: -6.583637,72.70018 - parent: 1 - type: Transform -- uid: 6810 - type: CarpetSBlue - components: - - pos: -5.5,73.5 - parent: 1 - type: Transform -- uid: 6811 - type: CarpetSBlue - components: - - pos: -6.5,73.5 - parent: 1 - type: Transform -- uid: 6812 - type: CarpetSBlue - components: - - pos: -6.5,72.5 - parent: 1 - type: Transform -- uid: 6813 - type: ToiletEmpty - components: - - rot: -1.5707963267948966 rad - pos: -7.5,70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6814 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -7.5,69.5 - parent: 1 - type: Transform -- uid: 6815 - type: HospitalCurtains - components: - - rot: 3.141592653589793 rad - pos: -7.5,69.5 - parent: 1 - type: Transform -- uid: 6816 - type: FloorDrain - components: - - pos: -7.5,69.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 6817 - type: BedsheetHOS - components: - - pos: -13.5,60.5 - parent: 1 - type: Transform -- uid: 6818 - type: HospitalCurtainsOpen - components: - - pos: -13.5,60.5 - parent: 1 - type: Transform -- uid: 6819 - type: TableReinforcedGlass - components: - - pos: -16.5,59.5 - parent: 1 - type: Transform -- uid: 6820 - type: TableReinforcedGlass - components: - - pos: -16.5,58.5 - parent: 1 - type: Transform -- uid: 6821 - type: TableReinforcedGlass - components: - - pos: -15.5,58.5 - parent: 1 - type: Transform -- uid: 6822 - type: WeaponCapacitorRecharger - components: - - pos: -15.5,58.5 - parent: 1 - type: Transform -- uid: 6823 - type: WeaponSubMachineGunWt550 - components: - - pos: -16.502504,59.51904 - parent: 1 - type: Transform -- uid: 6824 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: -16.587696,59.206833 - parent: 1 - type: Transform -- uid: 6825 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: -16.388914,59.03654 - parent: 1 - type: Transform -- uid: 6826 - type: HighSecArmoryLocked - components: - - pos: -7.5,59.5 - parent: 1 - type: Transform -- uid: 6827 - type: ClothingUniformJumpsuitHoSBlue - components: - - pos: -13.412797,60.456165 - parent: 1 - type: Transform -- uid: 6828 - type: ClothingNeckMantleHOS - components: - - pos: -13.651763,60.464382 - parent: 1 - type: Transform -- uid: 6829 - type: SpawnPointHeadOfSecurity - components: - - pos: 1.5,79.5 - parent: 1 - type: Transform -- uid: 6830 - type: SpawnPointChiefMedicalOfficer - components: - - pos: 4.5,81.5 - parent: 1 - type: Transform -- uid: 6831 - type: SpawnPointChiefEngineer - components: - - pos: -5.5,81.5 - parent: 1 - type: Transform -- uid: 6832 - type: SpawnPointResearchDirector - components: - - pos: -1.5,82.5 - parent: 1 - type: Transform -- uid: 6833 - type: SpawnPointQuartermaster - components: - - pos: 0.5,82.5 - parent: 1 - type: Transform -- uid: 6834 - type: SpawnPointHeadOfPersonnel - components: - - pos: 25.5,3.5 - parent: 1 - type: Transform -- uid: 6835 - type: SpawnPointWarden - components: - - pos: -12.5,49.5 - parent: 1 - type: Transform -- uid: 6836 - type: SpawnPointSecurityOfficer - components: - - pos: -18.5,41.5 - parent: 1 - type: Transform -- uid: 6837 - type: SpawnPointSecurityOfficer - components: - - pos: -17.5,41.5 - parent: 1 - type: Transform -- uid: 6838 - type: SpawnPointSecurityOfficer - components: - - pos: -16.5,41.5 - parent: 1 - type: Transform -- uid: 6839 - type: SpawnPointSecurityCadet - components: - - pos: -5.5,53.5 - parent: 1 - type: Transform -- uid: 6840 - type: SpawnPointSecurityCadet - components: - - pos: -5.5,54.5 - parent: 1 - type: Transform -- uid: 6841 - type: SpawnPointDetective - components: - - pos: 42.5,48.5 - parent: 1 - type: Transform -- uid: 6842 - type: Dresser - components: - - pos: 46.5,46.5 - parent: 1 - type: Transform -- uid: 6843 - type: BedsheetBrown - components: - - pos: 46.5,48.5 - parent: 1 - type: Transform -- uid: 6844 - type: filingCabinet - components: - - pos: 41.5,46.5 - parent: 1 - type: Transform -- uid: 6845 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6846 - type: LockerDetectiveFilled - components: - - pos: 42.5,46.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6847 - type: FaxMachineBase - components: - - pos: 40.5,46.5 - parent: 1 - type: Transform -- uid: 6848 - type: PaperOffice - components: - - pos: 43.131844,50.759155 - parent: 1 - type: Transform -- uid: 6849 - type: Lamp - components: - - pos: 42.492897,51.04298 - parent: 1 - type: Transform -- uid: 6850 - type: SmokingPipe - components: - - pos: 43.573822,50.730164 - parent: 1 - type: Transform -- uid: 6851 - type: GrilleBroken - components: - - pos: 37.5,50.5 - parent: 1 - type: Transform -- uid: 6852 - type: Grille - components: - - pos: 37.5,49.5 - parent: 1 - type: Transform -- uid: 6853 - type: VendingMachineDetDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 40.5,49.5 - parent: 1 - type: Transform -- uid: 6854 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6855 - type: Girder - components: - - pos: 37.5,48.5 - parent: 1 - type: Transform -- uid: 6856 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 26.5,48.5 - parent: 1 - type: Transform -- uid: 6857 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 26.5,51.5 - parent: 1 - type: Transform -- uid: 6858 - type: AirlockMaintChapelLocked - components: - - pos: 30.5,50.5 - parent: 1 - type: Transform -- uid: 6859 - type: AirlockMaintChapelLocked - components: - - pos: 31.5,50.5 - parent: 1 - type: Transform -- uid: 6860 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 26.5,46.5 - parent: 1 - type: Transform -- uid: 6861 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 28.5,46.5 - parent: 1 - type: Transform -- uid: 6862 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 29.5,46.5 - parent: 1 - type: Transform -- uid: 6863 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 29.5,45.5 - parent: 1 - type: Transform -- uid: 6864 - type: CarpetChapel - components: - - pos: 28.5,45.5 - parent: 1 - type: Transform -- uid: 6865 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 32.5,46.5 - parent: 1 - type: Transform -- uid: 6866 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 33.5,46.5 - parent: 1 - type: Transform -- uid: 6867 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 33.5,45.5 - parent: 1 - type: Transform -- uid: 6868 - type: CarpetChapel - components: - - pos: 32.5,45.5 - parent: 1 - type: Transform -- uid: 6869 - type: CarpetChapel - components: - - pos: 28.5,43.5 - parent: 1 - type: Transform -- uid: 6870 - type: CarpetChapel - components: - - pos: 32.5,43.5 - parent: 1 - type: Transform -- uid: 6871 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 28.5,44.5 - parent: 1 - type: Transform -- uid: 6872 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 32.5,44.5 - parent: 1 - type: Transform -- uid: 6873 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 29.5,44.5 - parent: 1 - type: Transform -- uid: 6874 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 33.5,43.5 - parent: 1 - type: Transform -- uid: 6875 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 33.5,44.5 - parent: 1 - type: Transform -- uid: 6876 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 29.5,43.5 - parent: 1 - type: Transform -- uid: 6877 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 29.5,48.5 - parent: 1 - type: Transform -- uid: 6878 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 33.5,48.5 - parent: 1 - type: Transform -- uid: 6879 - type: CarpetChapel - components: - - pos: 28.5,48.5 - parent: 1 - type: Transform -- uid: 6880 - type: CarpetChapel - components: - - pos: 32.5,48.5 - parent: 1 - type: Transform -- uid: 6881 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 28.5,49.5 - parent: 1 - type: Transform -- uid: 6882 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 32.5,49.5 - parent: 1 - type: Transform -- uid: 6883 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 29.5,49.5 - parent: 1 - type: Transform -- uid: 6884 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 33.5,49.5 - parent: 1 - type: Transform -- uid: 6885 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 32.5,49.5 - parent: 1 - type: Transform -- uid: 6886 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 33.5,49.5 - parent: 1 - type: Transform -- uid: 6887 - type: AirlockGlass - components: - - pos: 31.5,39.5 - parent: 1 - type: Transform -- uid: 6888 - type: AirlockGlass - components: - - pos: 30.5,39.5 - parent: 1 - type: Transform -- uid: 6889 - type: AirlockGlass - components: - - pos: 31.5,42.5 - parent: 1 - type: Transform -- uid: 6890 - type: AirlockGlass - components: - - pos: 30.5,42.5 - parent: 1 - type: Transform -- uid: 6891 - type: RailingCorner - components: - - pos: 23.5,20.5 - parent: 1 - type: Transform -- uid: 6892 - type: Railing - components: - - pos: 22.5,20.5 - parent: 1 - type: Transform -- uid: 6893 - type: Railing - components: - - pos: 21.5,20.5 - parent: 1 - type: Transform -- uid: 6894 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 23.5,21.5 - parent: 1 - type: Transform -- uid: 6895 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 23.5,22.5 - parent: 1 - type: Transform -- uid: 6896 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 27.5,18.5 - parent: 1 - type: Transform -- uid: 6897 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 26.5,17.5 - parent: 1 - type: Transform -- uid: 6898 - type: RailingCorner - components: - - rot: 3.141592653589793 rad - pos: 26.5,18.5 - parent: 1 - type: Transform -- uid: 6899 - type: Chair - components: - - pos: 24.5,22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6900 - type: Chair - components: - - pos: 25.5,22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6901 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 21.5,19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6902 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 21.5,18.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6903 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 22.5,31.5 - parent: 1 - type: Transform -- uid: 6904 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 22.5,34.5 - parent: 1 - type: Transform -- uid: 6905 - type: WallReinforced - components: - - pos: 22.5,33.5 - parent: 1 - type: Transform -- uid: 6906 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 21.5,32.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6907 - type: WallReinforced - components: - - pos: 22.5,32.5 - parent: 1 - type: Transform -- uid: 6908 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 21.5,33.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6909 - type: Rack - components: - - pos: 23.5,34.5 - parent: 1 - type: Transform -- uid: 6910 - type: Rack - components: - - pos: 23.5,33.5 - parent: 1 - type: Transform -- uid: 6911 - type: Rack - components: - - pos: 23.5,32.5 - parent: 1 - type: Transform -- uid: 6912 - type: Rack - components: - - pos: 23.5,31.5 - parent: 1 - type: Transform -- uid: 6913 - type: Rack - components: - - pos: 25.5,31.5 - parent: 1 - type: Transform -- uid: 6914 - type: NitrogenCanister - components: - - pos: 26.5,31.5 - parent: 1 - type: Transform -- uid: 6915 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,34.5 - parent: 1 - type: Transform -- uid: 6916 - type: OxygenCanister - components: - - pos: 27.5,31.5 - parent: 1 - type: Transform -- uid: 6917 - type: ClothingMaskBreath - components: - - pos: 25.301805,31.621096 - parent: 1 - type: Transform -- uid: 6918 - type: ClothingMaskBreath - components: - - pos: 25.415396,31.394037 - parent: 1 - type: Transform -- uid: 6919 - type: ClothingMaskBreath - components: - - pos: 25.642576,31.649477 - parent: 1 - type: Transform -- uid: 6920 - type: ClothingMaskBreath - components: - - pos: 25.756166,31.365656 - parent: 1 - type: Transform -- uid: 6921 - type: ClothingHeadHelmetEVA - components: - - pos: 23.342371,34.68637 - parent: 1 - type: Transform -- uid: 6922 - type: ClothingHeadHelmetEVA - components: - - pos: 23.285578,33.692997 - parent: 1 - type: Transform -- uid: 6923 - type: ClothingHeadHelmetEVA - components: - - pos: 23.285578,32.61447 - parent: 1 - type: Transform -- uid: 6924 - type: ClothingOuterHardsuitEVA - components: - - pos: 23.569551,34.62961 - parent: 1 - type: Transform -- uid: 6925 - type: ClothingOuterHardsuitEVA - components: - - pos: 23.541155,33.77814 - parent: 1 - type: Transform -- uid: 6926 - type: ClothingOuterHardsuitEVA - components: - - pos: 23.597952,32.784763 - parent: 1 - type: Transform -- uid: 6927 - type: JetpackMini - components: - - pos: 23.25718,31.763006 - parent: 1 - type: Transform -- uid: 6928 - type: JetpackMini - components: - - pos: 23.370771,31.479185 - parent: 1 - type: Transform -- uid: 6929 - type: ClothingShoesBootsMag - components: - - pos: 23.569551,31.592714 - parent: 1 - type: Transform -- uid: 6930 - type: AirlockEVAGlassLocked - components: - - pos: 28.5,33.5 - parent: 1 - type: Transform -- uid: 6931 - type: AirlockEVAGlassLocked - components: - - pos: 28.5,32.5 - parent: 1 - type: Transform -- uid: 6932 - type: AirlockEVAGlassLocked - components: - - pos: 25.5,35.5 - parent: 1 - type: Transform -- uid: 6933 - type: AirlockEVAGlassLocked - components: - - pos: 26.5,35.5 - parent: 1 - type: Transform -- uid: 6934 - type: AirlockMaintCommandLocked - components: - - pos: 24.5,30.5 - parent: 1 - type: Transform -- uid: 6935 - type: SignEVA - components: - - pos: 23.5,35.5 - parent: 1 - type: Transform -- uid: 6936 - type: SignEVA - components: - - pos: 28.5,30.5 - parent: 1 - type: Transform -- uid: 6937 - type: TintedWindow - components: - - pos: 13.5,41.5 - parent: 1 - type: Transform -- uid: 6938 - type: TintedWindow - components: - - pos: 13.5,45.5 - parent: 1 - type: Transform -- uid: 6939 - type: TintedWindow - components: - - pos: 16.5,46.5 - parent: 1 - type: Transform -- uid: 6940 - type: BedsheetSpawner - components: - - pos: 11.5,40.5 - parent: 1 - type: Transform -- uid: 6941 - type: BedsheetSpawner - components: - - pos: 11.5,46.5 - parent: 1 - type: Transform -- uid: 6942 - type: BedsheetSpawner - components: - - pos: 18.5,47.5 - parent: 1 - type: Transform -- uid: 6943 - type: PottedPlantRandomPlastic - components: - - pos: 30.5,56.5 - parent: 1 - type: Transform -- uid: 6944 - type: PottedPlantRandomPlastic - components: - - pos: 34.5,56.5 - parent: 1 - type: Transform -- uid: 6945 - type: Ash - components: - - pos: 31.405294,56.585308 - parent: 1 - type: Transform -- uid: 6946 - type: BodyBag_Folded - components: - - pos: 33.33633,56.840748 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.3955739 - - 12.773826 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6947 - type: BodyBag_Folded - components: - - pos: 33.648705,56.61369 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.1239278 - - 11.75192 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6948 - type: WaterCooler - components: - - pos: 26.5,23.5 - parent: 1 - type: Transform -- uid: 6949 - type: DisposalUnit - components: - - pos: 27.5,23.5 - parent: 1 - type: Transform -- uid: 6950 - type: PottedPlantRandom - components: - - pos: 21.5,17.5 - parent: 1 - type: Transform -- uid: 6951 - type: DrinkWaterCup - components: - - pos: 25.367998,22.514523 - parent: 1 - type: Transform -- uid: 6952 - type: DrinkWaterCup - components: - - pos: 25.48159,22.429377 - parent: 1 - type: Transform -- uid: 6953 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 20.5,26.5 - parent: 1 - type: Transform -- uid: 6954 - type: WallSolid - components: - - pos: 20.5,9.5 - parent: 1 - type: Transform -- uid: 6955 - type: Catwalk - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform -- uid: 6956 - type: Catwalk - components: - - pos: 14.5,4.5 - parent: 1 - type: Transform -- uid: 6957 - type: Catwalk - components: - - pos: 14.5,3.5 - parent: 1 - type: Transform -- uid: 6958 - type: Catwalk - components: - - pos: 14.5,2.5 - parent: 1 - type: Transform -- uid: 6959 - type: Catwalk - components: - - pos: 14.5,1.5 - parent: 1 - type: Transform -- uid: 6960 - type: Catwalk - components: - - pos: 14.5,0.5 - parent: 1 - type: Transform -- uid: 6961 - type: Catwalk - components: - - pos: 14.5,-0.5 - parent: 1 - type: Transform -- uid: 6962 - type: Catwalk - components: - - pos: 15.5,-1.5 - parent: 1 - type: Transform -- uid: 6963 - type: Catwalk - components: - - pos: 16.5,-1.5 - parent: 1 - type: Transform -- uid: 6964 - type: Catwalk - components: - - pos: 17.5,-1.5 - parent: 1 - type: Transform -- uid: 6965 - type: Catwalk - components: - - pos: 18.5,-0.5 - parent: 1 - type: Transform -- uid: 6966 - type: Catwalk - components: - - pos: 18.5,0.5 - parent: 1 - type: Transform -- uid: 6967 - type: Catwalk - components: - - pos: 15.5,6.5 - parent: 1 - type: Transform -- uid: 6968 - type: Catwalk - components: - - pos: 16.5,6.5 - parent: 1 - type: Transform -- uid: 6969 - type: Catwalk - components: - - pos: 17.5,6.5 - parent: 1 - type: Transform -- uid: 6970 - type: Catwalk - components: - - pos: 18.5,7.5 - parent: 1 - type: Transform -- uid: 6971 - type: Catwalk - components: - - pos: 18.5,8.5 - parent: 1 - type: Transform -- uid: 6972 - type: Catwalk - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform -- uid: 6973 - type: Catwalk - components: - - pos: 18.5,10.5 - parent: 1 - type: Transform -- uid: 6974 - type: Catwalk - components: - - pos: 18.5,11.5 - parent: 1 - type: Transform -- uid: 6975 - type: Catwalk - components: - - pos: 14.5,-2.5 - parent: 1 - type: Transform -- uid: 6976 - type: Catwalk - components: - - pos: 14.5,-3.5 - parent: 1 - type: Transform -- uid: 6977 - type: Catwalk - components: - - pos: 14.5,-4.5 - parent: 1 - type: Transform -- uid: 6978 - type: Carpet - components: - - pos: 10.5,58.5 - parent: 1 - type: Transform -- uid: 6979 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 10.5,57.5 - parent: 1 - type: Transform -- uid: 6980 - type: Carpet - components: - - pos: 10.5,56.5 - parent: 1 - type: Transform -- uid: 6981 - type: Carpet - components: - - pos: 11.5,58.5 - parent: 1 - type: Transform -- uid: 6982 - type: Carpet - components: - - pos: 11.5,57.5 - parent: 1 - type: Transform -- uid: 6983 - type: Carpet - components: - - pos: 11.5,56.5 - parent: 1 - type: Transform -- uid: 6984 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 8.5,57.5 - parent: 1 - type: Transform -- uid: 6985 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 9.5,57.5 - parent: 1 - type: Transform -- uid: 6986 - type: Carpet - components: - - pos: 9.5,58.5 - parent: 1 - type: Transform -- uid: 6987 - type: Carpet - components: - - pos: 12.5,58.5 - parent: 1 - type: Transform -- uid: 6988 - type: Carpet - components: - - pos: 10.5,60.5 - parent: 1 - type: Transform -- uid: 6989 - type: Carpet - components: - - pos: 11.5,60.5 - parent: 1 - type: Transform -- uid: 6990 - type: Carpet - components: - - pos: 11.5,61.5 - parent: 1 - type: Transform -- uid: 6991 - type: Carpet - components: - - pos: 10.5,61.5 - parent: 1 - type: Transform -- uid: 6992 - type: Barricade - components: - - pos: -25.5,-21.5 - parent: 1 - type: Transform -- uid: 6993 - type: AltarToolbox - components: - - pos: -22.5,-24.5 - parent: 1 - type: Transform -- uid: 6994 - type: WallSolid - components: - - pos: -23.5,-24.5 - parent: 1 - type: Transform -- uid: 6995 - type: WallSolid - components: - - pos: -21.5,-24.5 - parent: 1 - type: Transform -- uid: 6996 - type: WallSolidRust - components: - - pos: -19.5,-21.5 - parent: 1 - type: Transform -- uid: 6997 - type: WallSolidRust - components: - - pos: -19.5,-22.5 - parent: 1 - type: Transform -- uid: 6998 - type: Catwalk - components: - - pos: 36.5,41.5 - parent: 1 - type: Transform -- uid: 6999 - type: Catwalk - components: - - pos: 36.5,42.5 - parent: 1 - type: Transform -- uid: 7000 - type: Catwalk - components: - - pos: 36.5,43.5 - parent: 1 - type: Transform -- uid: 7001 - type: Catwalk - components: - - pos: 36.5,44.5 - parent: 1 - type: Transform -- uid: 7002 - type: Catwalk - components: - - pos: 36.5,45.5 - parent: 1 - type: Transform -- uid: 7003 - type: Catwalk - components: - - pos: 36.5,46.5 - parent: 1 - type: Transform -- uid: 7004 - type: Catwalk - components: - - pos: 36.5,47.5 - parent: 1 - type: Transform -- uid: 7005 - type: Catwalk - components: - - pos: 36.5,48.5 - parent: 1 - type: Transform -- uid: 7006 - type: Catwalk - components: - - pos: 36.5,49.5 - parent: 1 - type: Transform -- uid: 7007 - type: Catwalk - components: - - pos: 36.5,50.5 - parent: 1 - type: Transform -- uid: 7008 - type: Catwalk - components: - - pos: 35.5,51.5 - parent: 1 - type: Transform -- uid: 7009 - type: Catwalk - components: - - pos: 34.5,51.5 - parent: 1 - type: Transform -- uid: 7010 - type: Catwalk - components: - - pos: 33.5,51.5 - parent: 1 - type: Transform -- uid: 7011 - type: Catwalk - components: - - pos: 32.5,51.5 - parent: 1 - type: Transform -- uid: 7012 - type: Catwalk - components: - - pos: 31.5,51.5 - parent: 1 - type: Transform -- uid: 7013 - type: Catwalk - components: - - pos: 30.5,51.5 - parent: 1 - type: Transform -- uid: 7014 - type: Catwalk - components: - - pos: 28.5,54.5 - parent: 1 - type: Transform -- uid: 7015 - type: ClosetFireFilled - components: - - pos: 20.5,46.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7016 - type: Catwalk - components: - - pos: 28.5,56.5 - parent: 1 - type: Transform -- uid: 7017 - type: Catwalk - components: - - pos: 27.5,57.5 - parent: 1 - type: Transform -- uid: 7018 - type: Catwalk - components: - - pos: 26.5,57.5 - parent: 1 - type: Transform -- uid: 7019 - type: Catwalk - components: - - pos: 25.5,57.5 - parent: 1 - type: Transform -- uid: 7020 - type: Catwalk - components: - - pos: 24.5,57.5 - parent: 1 - type: Transform -- uid: 7021 - type: Catwalk - components: - - pos: 23.5,57.5 - parent: 1 - type: Transform -- uid: 7022 - type: FirelockGlass - components: - - pos: -26.5,48.5 - parent: 1 - type: Transform -- uid: 7023 - type: FirelockGlass - components: - - pos: -26.5,47.5 - parent: 1 - type: Transform -- uid: 7024 - type: Bed - components: - - pos: -23.5,1.5 - parent: 1 - type: Transform -- uid: 7025 - type: BedsheetSpawner - components: - - pos: -23.5,1.5 - parent: 1 - type: Transform -- uid: 7026 - type: Dresser - components: - - pos: -24.5,1.5 - parent: 1 - type: Transform -- uid: 7027 - type: HospitalCurtainsOpen - components: - - pos: -23.5,1.5 - parent: 1 - type: Transform -- uid: 7028 - type: TableWood - components: - - pos: -25.5,3.5 - parent: 1 - type: Transform -- uid: 7029 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -25.5,2.5 - parent: 1 - type: Transform -- uid: 7030 - type: DiceBag - components: - - pos: -25.707123,3.7152946 - parent: 1 - type: Transform -- uid: 7031 - type: PaperOffice - components: - - pos: -25.565134,3.6301482 - parent: 1 - type: Transform -- uid: 7032 - type: PaperOffice - components: - - pos: -25.309555,3.6869118 - parent: 1 - type: Transform -- uid: 7033 - type: PaperOffice - components: - - pos: -25.36635,3.4598548 - parent: 1 - type: Transform -- uid: 7034 - type: BookRandom - components: - - rot: 3.141592653589793 rad - pos: -22.513775,5.525197 - parent: 1 - type: Transform -- uid: 7035 - type: SurveillanceCameraRouterSecurity - components: - - pos: 21.5,-15.5 - parent: 1 - type: Transform -- uid: 7036 - type: AtmosFixNitrogenMarker - components: - - pos: -1.5,-21.5 - parent: 1 - type: Transform -- uid: 7037 - type: AtmosFixNitrogenMarker - components: - - pos: -0.5,-21.5 - parent: 1 - type: Transform -- uid: 7038 - type: AtmosFixNitrogenMarker - components: - - pos: 0.5,-21.5 - parent: 1 - type: Transform -- uid: 7039 - type: AtmosFixOxygenMarker - components: - - pos: -1.5,-19.5 - parent: 1 - type: Transform -- uid: 7040 - type: AtmosFixOxygenMarker - components: - - pos: -0.5,-19.5 - parent: 1 - type: Transform -- uid: 7041 - type: AtmosFixOxygenMarker - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform -- uid: 7042 - type: AtmosFixPlasmaMarker - components: - - pos: -1.5,-27.5 - parent: 1 - type: Transform -- uid: 7043 - type: AtmosFixPlasmaMarker - components: - - pos: -0.5,-27.5 - parent: 1 - type: Transform -- uid: 7044 - type: AtmosFixPlasmaMarker - components: - - pos: 0.5,-27.5 - parent: 1 - type: Transform -- uid: 7045 - type: AtmosFixBlockerMarker - components: - - pos: -1.5,-25.5 - parent: 1 - type: Transform -- uid: 7046 - type: AtmosFixBlockerMarker - components: - - pos: -0.5,-25.5 - parent: 1 - type: Transform -- uid: 7047 - type: AtmosFixBlockerMarker - components: - - pos: 0.5,-25.5 - parent: 1 - type: Transform -- uid: 7048 - type: AtmosFixBlockerMarker - components: - - pos: -1.5,-29.5 - parent: 1 - type: Transform -- uid: 7049 - type: AtmosFixBlockerMarker - components: - - pos: -0.5,-29.5 - parent: 1 - type: Transform -- uid: 7050 - type: AtmosFixBlockerMarker - components: - - pos: 0.5,-29.5 - parent: 1 - type: Transform -- uid: 7051 - type: AtmosFixBlockerMarker - components: - - pos: -1.5,-33.5 - parent: 1 - type: Transform -- uid: 7052 - type: AtmosFixBlockerMarker - components: - - pos: -1.5,-34.5 - parent: 1 - type: Transform -- uid: 7053 - type: AtmosFixBlockerMarker - components: - - pos: -1.5,-35.5 - parent: 1 - type: Transform -- uid: 7054 - type: AtmosFixBlockerMarker - components: - - pos: -0.5,-33.5 - parent: 1 - type: Transform -- uid: 7055 - type: AtmosFixBlockerMarker - components: - - pos: -0.5,-34.5 - parent: 1 - type: Transform -- uid: 7056 - type: AtmosFixBlockerMarker - components: - - pos: -0.5,-35.5 - parent: 1 - type: Transform -- uid: 7057 - type: AtmosFixBlockerMarker - components: - - pos: 0.5,-33.5 - parent: 1 - type: Transform -- uid: 7058 - type: AtmosFixBlockerMarker - components: - - pos: 0.5,-34.5 - parent: 1 - type: Transform -- uid: 7059 - type: AtmosFixBlockerMarker - components: - - pos: 0.5,-35.5 - parent: 1 - type: Transform -- uid: 7060 - type: AtmosFixBlockerMarker - components: - - pos: -1.5,-39.5 - parent: 1 - type: Transform -- uid: 7061 - type: AtmosFixBlockerMarker - components: - - pos: -1.5,-40.5 - parent: 1 - type: Transform -- uid: 7062 - type: AtmosFixBlockerMarker - components: - - pos: -1.5,-41.5 - parent: 1 - type: Transform -- uid: 7063 - type: AtmosFixBlockerMarker - components: - - pos: -0.5,-39.5 - parent: 1 - type: Transform -- uid: 7064 - type: AtmosFixBlockerMarker - components: - - pos: -0.5,-40.5 - parent: 1 - type: Transform -- uid: 7065 - type: AtmosFixBlockerMarker - components: - - pos: -0.5,-41.5 - parent: 1 - type: Transform -- uid: 7066 - type: AtmosFixBlockerMarker - components: - - pos: 0.5,-39.5 - parent: 1 - type: Transform -- uid: 7067 - type: AtmosFixBlockerMarker - components: - - pos: 0.5,-40.5 - parent: 1 - type: Transform -- uid: 7068 - type: AtmosFixBlockerMarker - components: - - pos: 0.5,-41.5 - parent: 1 - type: Transform -- uid: 7069 - type: AtmosFixBlockerMarker - components: - - pos: -0.5,-42.5 - parent: 1 - type: Transform -- uid: 7070 - type: AtmosFixBlockerMarker - components: - - pos: -2.5,-43.5 - parent: 1 - type: Transform -- uid: 7071 - type: AtmosFixBlockerMarker - components: - - pos: -2.5,-44.5 - parent: 1 - type: Transform -- uid: 7072 - type: AtmosFixBlockerMarker - components: - - pos: -2.5,-45.5 - parent: 1 - type: Transform -- uid: 7073 - type: AtmosFixBlockerMarker - components: - - pos: -1.5,-43.5 - parent: 1 - type: Transform -- uid: 7074 - type: AtmosFixBlockerMarker - components: - - pos: -1.5,-44.5 - parent: 1 - type: Transform -- uid: 7075 - type: AtmosFixBlockerMarker - components: - - pos: -1.5,-45.5 - parent: 1 - type: Transform -- uid: 7076 - type: AtmosFixBlockerMarker - components: - - pos: -0.5,-43.5 - parent: 1 - type: Transform -- uid: 7077 - type: AtmosFixBlockerMarker - components: - - pos: -0.5,-44.5 - parent: 1 - type: Transform -- uid: 7078 - type: AtmosFixBlockerMarker - components: - - pos: -0.5,-45.5 - parent: 1 - type: Transform -- uid: 7079 - type: AtmosFixBlockerMarker - components: - - pos: 0.5,-43.5 - parent: 1 - type: Transform -- uid: 7080 - type: AtmosFixBlockerMarker - components: - - pos: 0.5,-44.5 - parent: 1 - type: Transform -- uid: 7081 - type: AtmosFixBlockerMarker - components: - - pos: 0.5,-45.5 - parent: 1 - type: Transform -- uid: 7082 - type: AtmosFixBlockerMarker - components: - - pos: 1.5,-43.5 - parent: 1 - type: Transform -- uid: 7083 - type: AtmosFixBlockerMarker - components: - - pos: 1.5,-44.5 - parent: 1 - type: Transform -- uid: 7084 - type: AtmosFixBlockerMarker - components: - - pos: 1.5,-45.5 - parent: 1 - type: Transform -- uid: 7085 - type: AtmosFixBlockerMarker - components: - - pos: -1.5,-46.5 - parent: 1 - type: Transform -- uid: 7086 - type: AtmosFixBlockerMarker - components: - - pos: -1.5,-47.5 - parent: 1 - type: Transform -- uid: 7087 - type: AtmosFixBlockerMarker - components: - - pos: -1.5,-48.5 - parent: 1 - type: Transform -- uid: 7088 - type: AtmosFixBlockerMarker - components: - - pos: -0.5,-46.5 - parent: 1 - type: Transform -- uid: 7089 - type: AtmosFixBlockerMarker - components: - - pos: -0.5,-47.5 - parent: 1 - type: Transform -- uid: 7090 - type: AtmosFixBlockerMarker - components: - - pos: -0.5,-48.5 - parent: 1 - type: Transform -- uid: 7091 - type: AtmosFixBlockerMarker - components: - - pos: 0.5,-46.5 - parent: 1 - type: Transform -- uid: 7092 - type: AtmosFixBlockerMarker - components: - - pos: 0.5,-47.5 - parent: 1 - type: Transform -- uid: 7093 - type: AtmosFixBlockerMarker - components: - - pos: 0.5,-48.5 - parent: 1 - type: Transform -- uid: 7094 - type: LockerAtmosphericsFilled - components: - - pos: -14.5,-17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7095 - type: LockerAtmosphericsFilled - components: - - pos: -13.5,-17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7096 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,-17.5 - parent: 1 - type: Transform -- uid: 7097 - type: VendingMachineAtmosDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,-17.5 - parent: 1 - type: Transform -- uid: 7098 - type: Rack - components: - - pos: -11.5,-19.5 - parent: 1 - type: Transform -- uid: 7099 - type: Rack - components: - - pos: -10.5,-19.5 - parent: 1 - type: Transform -- uid: 7100 - type: TableGlass - components: - - pos: -14.5,-19.5 - parent: 1 - type: Transform -- uid: 7101 - type: TableGlass - components: - - pos: -13.5,-19.5 - parent: 1 - type: Transform -- uid: 7102 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-16.5 - parent: 1 - type: Transform -- uid: 7103 - type: AirlockAtmosphericsGlassLocked - components: - - pos: -12.5,-20.5 - parent: 1 - type: Transform -- uid: 7104 - type: AirlockAtmosphericsGlassLocked - components: - - pos: -9.5,-18.5 - parent: 1 - type: Transform -- uid: 7105 - type: AirlockAtmosphericsGlassLocked - components: - - pos: -8.5,-16.5 - parent: 1 - type: Transform -- uid: 7106 - type: FirelockGlass - components: - - pos: -8.5,-16.5 - parent: 1 - type: Transform -- uid: 7107 - type: FirelockGlass - components: - - pos: -12.5,-16.5 - parent: 1 - type: Transform -- uid: 7108 - type: FirelockGlass - components: - - pos: -9.5,-18.5 - parent: 1 - type: Transform -- uid: 7109 - type: FirelockGlass - components: - - pos: -12.5,-20.5 - parent: 1 - type: Transform -- uid: 7110 - type: AirlockExternalGlassAtmosphericsLocked - components: - - pos: -13.5,-38.5 - parent: 1 - type: Transform -- uid: 7111 - type: AirlockExternalGlassAtmosphericsLocked - components: - - pos: -13.5,-42.5 - parent: 1 - type: Transform -- uid: 7112 - type: AirlockMaintAtmoLocked - components: - - pos: -6.5,-15.5 - parent: 1 - type: Transform -- uid: 7113 - type: AirlockAtmosphericsLocked - components: - - pos: -12.5,-10.5 - parent: 1 - type: Transform -- uid: 7114 - type: AirlockAtmosphericsLocked - components: - - pos: -11.5,-10.5 - parent: 1 - type: Transform -- uid: 7115 - type: ComputerAlert - components: - - pos: -7.5,-11.5 - parent: 1 - type: Transform -- uid: 7116 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-11.5 - parent: 1 - type: Transform -- uid: 7117 - type: GasAnalyzer - components: - - pos: -11.540349,34.601944 - parent: 1 - type: Transform -- uid: 7118 - type: GeigerCounter - components: - - pos: -11.17118,34.431652 - parent: 1 - type: Transform -- uid: 7119 - type: TablePlasmaGlass - components: - - pos: -13.5,28.5 - parent: 1 - type: Transform -- uid: 7120 - type: TablePlasmaGlass - components: - - pos: -13.5,27.5 - parent: 1 - type: Transform -- uid: 7121 - type: MonkeyCubeBox - components: - - pos: -13.5745945,28.466234 - parent: 1 - type: Transform -- uid: 7122 - type: DiseaseSwab - components: - - pos: -13.290618,28.210794 - parent: 1 - type: Transform -- uid: 7123 - type: DiseaseSwab - components: - - pos: -13.432607,27.955353 - parent: 1 - type: Transform -- uid: 7124 - type: Syringe - components: - - rot: 1.5707963267948966 rad - pos: -13.489402,28.012117 - parent: 1 - type: Transform -- uid: 7125 - type: FireExtinguisher - components: - - pos: -13.517798,27.785059 - parent: 1 - type: Transform -- uid: 7126 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 9.5,2.5 - parent: 1 - type: Transform -- uid: 7127 - type: AtmosDeviceFanTiny - components: - - pos: 11.5,0.5 - parent: 1 - type: Transform -- uid: 7128 - type: AtmosDeviceFanTiny - components: - - pos: 11.5,4.5 - parent: 1 - type: Transform -- uid: 7129 - type: AtmosFixFreezerMarker - components: - - pos: 10.5,3.5 - parent: 1 - type: Transform -- uid: 7130 - type: AtmosFixFreezerMarker - components: - - pos: 10.5,2.5 - parent: 1 - type: Transform -- uid: 7131 - type: AtmosFixFreezerMarker - components: - - pos: 10.5,1.5 - parent: 1 - type: Transform -- uid: 7132 - type: AtmosFixFreezerMarker - components: - - pos: 11.5,3.5 - parent: 1 - type: Transform -- uid: 7133 - type: AtmosFixFreezerMarker - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform -- uid: 7134 - type: AtmosFixFreezerMarker - components: - - pos: 11.5,1.5 - parent: 1 - type: Transform -- uid: 7135 - type: AtmosFixFreezerMarker - components: - - pos: 12.5,3.5 - parent: 1 - type: Transform -- uid: 7136 - type: AtmosFixFreezerMarker - components: - - pos: 12.5,2.5 - parent: 1 - type: Transform -- uid: 7137 - type: AtmosFixFreezerMarker - components: - - pos: 12.5,1.5 - parent: 1 - type: Transform -- uid: 7138 - type: ShuttersNormalOpen - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9001 - type: SignalReceiver -- uid: 7139 - type: ShuttersNormalOpen - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9001 - type: SignalReceiver -- uid: 7140 - type: ShuttersNormalOpen - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9001 - type: SignalReceiver -- uid: 7141 - type: ShuttersNormalOpen - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9001 - type: SignalReceiver -- uid: 7142 - type: ShuttersNormalOpen - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9001 - type: SignalReceiver -- uid: 7143 - type: ShuttersNormalOpen - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9001 - type: SignalReceiver -- uid: 7144 - type: ShuttersNormalOpen - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 570 - type: SignalReceiver -- uid: 7145 - type: ShuttersNormalOpen - components: - - pos: 4.5,-1.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 570 - type: SignalReceiver -- uid: 7146 - type: ShuttersNormalOpen - components: - - pos: 4.5,-2.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 570 - type: SignalReceiver -- uid: 7147 - type: ShuttersNormalOpen - components: - - pos: 9.5,-5.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 570 - type: SignalReceiver -- uid: 7148 - type: ShuttersNormalOpen - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 570 - type: SignalReceiver -- uid: 7149 - type: ShuttersNormalOpen - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 570 - type: SignalReceiver -- uid: 7150 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 12.5,-42.5 - parent: 1 - type: Transform -- uid: 7151 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 12.5,-38.5 - parent: 1 - type: Transform -- uid: 7152 - type: ComputerSolarControl - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-40.5 - parent: 1 - type: Transform -- uid: 7153 - type: CrateEngineeringCableHV - components: - - pos: 13.5,-39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7154 - type: Rack - components: - - pos: 13.5,-41.5 - parent: 1 - type: Transform -- uid: 7155 - type: ClosetToolFilled - components: - - pos: 11.5,-39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7156 - type: ClosetRadiationSuitFilled - components: - - pos: 11.5,-40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7157 - type: ClothingMaskGas - components: - - pos: 11.357593,-37.31936 - parent: 1 - type: Transform -- uid: 7158 - type: ClothingMaskGas - components: - - pos: 11.641568,-37.518036 - parent: 1 - type: Transform -- uid: 7159 - type: ToolboxMechanicalFilled - components: - - pos: 13.367895,-41.31494 - parent: 1 - type: Transform -- uid: 7160 - type: ToolboxEmergencyFilled - components: - - pos: 13.566679,-41.456856 - parent: 1 - type: Transform -- uid: 7161 - type: FirelockGlass - components: - - pos: 11.5,-36.5 - parent: 1 - type: Transform -- uid: 7162 - type: FirelockGlass - components: - - pos: 12.5,-36.5 - parent: 1 - type: Transform -- uid: 7163 - type: FirelockGlass - components: - - pos: 13.5,-36.5 - parent: 1 - type: Transform -- uid: 7164 - type: FirelockGlass - components: - - pos: 6.5,-35.5 - parent: 1 - type: Transform -- uid: 7165 - type: FirelockGlass - components: - - pos: 7.5,-35.5 - parent: 1 - type: Transform -- uid: 7166 - type: Firelock - components: - - pos: -11.5,-26.5 - parent: 1 - type: Transform -- uid: 7167 - type: FirelockGlass - components: - - pos: 6.5,-31.5 - parent: 1 - type: Transform -- uid: 7168 - type: FirelockGlass - components: - - pos: 7.5,-31.5 - parent: 1 - type: Transform -- uid: 7169 - type: FirelockGlass - components: - - pos: 8.5,-24.5 - parent: 1 - type: Transform -- uid: 7170 - type: FirelockGlass - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform -- uid: 7171 - type: FirelockGlass - components: - - pos: 11.5,-19.5 - parent: 1 - type: Transform -- uid: 7172 - type: FirelockGlass - components: - - pos: 12.5,-19.5 - parent: 1 - type: Transform -- uid: 7173 - type: Firelock - components: - - pos: -11.5,-27.5 - parent: 1 - type: Transform -- uid: 7174 - type: Firelock - components: - - pos: -11.5,-28.5 - parent: 1 - type: Transform -- uid: 7175 - type: Firelock - components: - - pos: -11.5,-29.5 - parent: 1 - type: Transform -- uid: 7176 - type: AirlockExternalGlass - components: - - pos: -51.5,13.5 - parent: 1 - type: Transform -- uid: 7177 - type: AirlockExternalGlass - components: - - pos: -51.5,15.5 - parent: 1 - type: Transform -- uid: 7178 - type: Grille - components: - - pos: -46.5,17.5 - parent: 1 - type: Transform -- uid: 7179 - type: Grille - components: - - pos: -48.5,17.5 - parent: 1 - type: Transform -- uid: 7180 - type: ReinforcedWindow - components: - - pos: -48.5,34.5 - parent: 1 - type: Transform -- uid: 7181 - type: ReinforcedWindow - components: - - pos: -47.5,34.5 - parent: 1 - type: Transform -- uid: 7182 - type: AirlockExternalGlass - components: - - pos: -51.5,36.5 - parent: 1 - type: Transform -- uid: 7183 - type: AirlockExternalGlass - components: - - pos: -51.5,38.5 - parent: 1 - type: Transform -- uid: 7184 - type: Catwalk - components: - - pos: 2.5,41.5 - parent: 1 - type: Transform -- uid: 7185 - type: Catwalk - components: - - pos: 3.5,41.5 - parent: 1 - type: Transform -- uid: 7186 - type: Catwalk - components: - - pos: 4.5,41.5 - parent: 1 - type: Transform -- uid: 7187 - type: Catwalk - components: - - pos: 5.5,41.5 - parent: 1 - type: Transform -- uid: 7188 - type: Catwalk - components: - - pos: 6.5,41.5 - parent: 1 - type: Transform -- uid: 7189 - type: Catwalk - components: - - pos: 7.5,41.5 - parent: 1 - type: Transform -- uid: 7190 - type: Catwalk - components: - - pos: 8.5,41.5 - parent: 1 - type: Transform -- uid: 7191 - type: Catwalk - components: - - pos: 9.5,42.5 - parent: 1 - type: Transform -- uid: 7192 - type: Catwalk - components: - - pos: 9.5,43.5 - parent: 1 - type: Transform -- uid: 7193 - type: Catwalk - components: - - pos: 9.5,44.5 - parent: 1 - type: Transform -- uid: 7194 - type: Catwalk - components: - - pos: 9.5,45.5 - parent: 1 - type: Transform -- uid: 7195 - type: Catwalk - components: - - pos: 9.5,46.5 - parent: 1 - type: Transform -- uid: 7196 - type: Catwalk - components: - - pos: 9.5,47.5 - parent: 1 - type: Transform -- uid: 7197 - type: Catwalk - components: - - pos: 9.5,48.5 - parent: 1 - type: Transform -- uid: 7198 - type: Catwalk - components: - - pos: 9.5,49.5 - parent: 1 - type: Transform -- uid: 7199 - type: Catwalk - components: - - pos: 11.5,50.5 - parent: 1 - type: Transform -- uid: 7200 - type: Catwalk - components: - - pos: 10.5,50.5 - parent: 1 - type: Transform -- uid: 7201 - type: Catwalk - components: - - pos: 12.5,50.5 - parent: 1 - type: Transform -- uid: 7202 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 13.5,50.5 - parent: 1 - type: Transform -- uid: 7203 - type: Catwalk - components: - - pos: 14.5,50.5 - parent: 1 - type: Transform -- uid: 7204 - type: Catwalk - components: - - pos: 15.5,50.5 - parent: 1 - type: Transform -- uid: 7205 - type: Catwalk - components: - - pos: 17.5,49.5 - parent: 1 - type: Transform -- uid: 7206 - type: Catwalk - components: - - pos: 18.5,49.5 - parent: 1 - type: Transform -- uid: 7207 - type: Catwalk - components: - - pos: 19.5,49.5 - parent: 1 - type: Transform -- uid: 7208 - type: Catwalk - components: - - pos: 20.5,49.5 - parent: 1 - type: Transform -- uid: 7209 - type: CableHV - components: - - pos: 21.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7210 - type: CableHV - components: - - pos: 20.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7211 - type: CableHV - components: - - pos: 19.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7212 - type: CableHV - components: - - pos: 18.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7213 - type: CableHV - components: - - pos: 17.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7214 - type: CableHV - components: - - pos: 16.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7215 - type: CableHV - components: - - pos: 16.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7216 - type: CableHV - components: - - pos: 16.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7217 - type: CableHV - components: - - pos: 15.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7218 - type: CableHV - components: - - pos: 14.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7219 - type: CableHV - components: - - pos: 13.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7220 - type: CableHV - components: - - pos: 12.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7221 - type: CableHV - components: - - pos: 11.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7222 - type: CableHV - components: - - pos: 10.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7223 - type: CableHV - components: - - pos: 9.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7224 - type: CableHV - components: - - pos: 9.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7225 - type: CableHV - components: - - pos: 9.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7226 - type: CableHV - components: - - pos: 9.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7227 - type: CableHV - components: - - pos: 9.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7228 - type: CableHV - components: - - pos: 9.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7229 - type: CableHV - components: - - pos: 9.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7230 - type: CableHV - components: - - pos: 9.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7231 - type: CableHV - components: - - pos: 9.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7232 - type: CableHV - components: - - pos: 9.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7233 - type: CableHV - components: - - pos: 8.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7234 - type: CableHV - components: - - pos: 7.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7235 - type: CableHV - components: - - pos: 6.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7236 - type: CableHV - components: - - pos: 5.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7237 - type: CableHV - components: - - pos: 4.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7238 - type: CableHV - components: - - pos: 3.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7239 - type: CableHV - components: - - pos: 2.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7240 - type: CableHV - components: - - pos: 1.5,41.5 - parent: 1 - type: Transform -- uid: 7241 - type: CableHV - components: - - pos: 0.5,41.5 - parent: 1 - type: Transform -- uid: 7242 - type: CableHV - components: - - pos: -0.5,41.5 - parent: 1 - type: Transform -- uid: 7243 - type: VendingMachineGeneDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,30.5 - parent: 1 - type: Transform -- uid: 7244 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 3.141592653589793 rad - pos: 15.5,-17.5 - parent: 1 - type: Transform -- uid: 7245 - type: SurveillanceCameraRouterSupply - components: - - pos: 21.5,-13.5 - parent: 1 - type: Transform -- uid: 7246 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-18.5 - parent: 1 - type: Transform -- uid: 7247 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-18.5 - parent: 1 - type: Transform -- uid: 7248 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-15.5 - parent: 1 - type: Transform -- uid: 7249 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-15.5 - parent: 1 - type: Transform -- uid: 7250 - type: NuclearBomb - components: - - rot: 1.5707963267948966 rad - pos: 5.5,48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7251 - type: Rack - components: - - pos: 4.5,48.5 - parent: 1 - type: Transform -- uid: 7252 - type: TableReinforcedGlass - components: - - pos: 5.5,45.5 - parent: 1 - type: Transform -- uid: 7253 - type: TableReinforcedGlass - components: - - pos: 4.5,45.5 - parent: 1 - type: Transform -- uid: 7254 - type: IngotGold - components: - - pos: 5.539674,45.723473 - parent: 1 - type: Transform -- uid: 7255 - type: ToolboxGoldFilled - components: - - pos: 5.426082,45.55318 - parent: 1 - type: Transform -- uid: 7256 - type: PinpointerNuclear - components: - - pos: 4.3469753,48.675224 - parent: 1 - type: Transform -- uid: 7257 - type: CigarGoldCase - components: - - pos: 4.630952,48.731987 - parent: 1 - type: Transform -- uid: 7258 - type: DrinkGoldenCup - components: - - pos: 4.7445407,45.893764 - parent: 1 - type: Transform -- uid: 7259 - type: ClothingBeltChampion - components: - - pos: 4.51736,45.55318 - parent: 1 - type: Transform -- uid: 7260 - type: ClothingHeadHatHairflower - components: - - pos: 4.375372,45.69509 - parent: 1 - type: Transform -- uid: 7261 - type: Firelock - components: - - pos: 14.5,-23.5 - parent: 1 - type: Transform -- uid: 7262 - type: HighSecCommandLocked - components: - - pos: 15.5,-23.5 - parent: 1 - type: Transform -- uid: 7263 - type: VendingMachineNutri - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,11.5 - parent: 1 - type: Transform -- uid: 7264 - type: WallReinforced - components: - - pos: 18.5,35.5 - parent: 1 - type: Transform -- uid: 7265 - type: ReinforcedWindow - components: - - pos: -31.5,57.5 - parent: 1 - type: Transform -- uid: 7266 - type: WallReinforced - components: - - pos: 20.5,35.5 - parent: 1 - type: Transform -- uid: 7267 - type: FirelockGlass - components: - - pos: 25.5,35.5 - parent: 1 - type: Transform -- uid: 7268 - type: FirelockGlass - components: - - pos: 26.5,35.5 - parent: 1 - type: Transform -- uid: 7269 - type: FirelockGlass - components: - - pos: 28.5,32.5 - parent: 1 - type: Transform -- uid: 7270 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 18.5,32.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7271 - type: TableWood - components: - - pos: 2.5,61.5 - parent: 1 - type: Transform -- uid: 7272 - type: TableWood - components: - - pos: 3.5,61.5 - parent: 1 - type: Transform -- uid: 7273 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 3.5,60.5 - parent: 1 - type: Transform -- uid: 7274 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 5.5,64.5 - parent: 1 - type: Transform -- uid: 7275 - type: WallSolid - components: - - pos: 1.5,62.5 - parent: 1 - type: Transform -- uid: 7276 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 5.5,63.5 - parent: 1 - type: Transform -- uid: 7277 - type: VendingMachineLawDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,64.5 - parent: 1 - type: Transform -- uid: 7278 - type: Chair - components: - - pos: 2.5,64.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7279 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 4.5,60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7280 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 4.5,61.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7281 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 2.5,60.5 - parent: 1 - type: Transform -- uid: 7282 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 4.5,63.5 - parent: 1 - type: Transform -- uid: 7283 - type: FaxMachineBase - components: - - pos: 5.5,64.5 - parent: 1 - type: Transform - - name: Lawyer's Office - type: FaxMachine -- uid: 7284 - type: BoxFolderRed - components: - - pos: 5.333919,63.8167 - parent: 1 - type: Transform -- uid: 7285 - type: BoxFolderWhite - components: - - pos: 5.6462917,63.53288 - parent: 1 - type: Transform -- uid: 7286 - type: BriefcaseBrownFilled - components: - - pos: 4.538786,64.696556 - parent: 1 - type: Transform -- uid: 7287 - type: PaperBin5 - components: - - pos: 3.5,60.5 - parent: 1 - type: Transform -- uid: 7288 - type: LampGold - components: - - pos: 2.465765,62.00024 - parent: 1 - type: Transform -- uid: 7289 - type: BoxFolderRed - components: - - pos: 3.0905108,61.46098 - parent: 1 - type: Transform -- uid: 7290 - type: SolarPanel - components: - - pos: 40.5,76.5 - parent: 1 - type: Transform -- uid: 7291 - type: SheetPlasma1 - components: - - pos: -18.469332,20.58397 - parent: 1 - type: Transform - - count: 5 - type: Stack -- uid: 7292 - type: GeneratorPlasma - components: - - pos: 15.5,-12.5 - parent: 1 - type: Transform -- uid: 7293 - type: SurveillanceCameraWirelessRouterEntertainment - components: - - pos: 22.5,-17.5 - parent: 1 - type: Transform -- uid: 7294 - type: CableHV - components: - - pos: 29.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7295 - type: CableHV - components: - - pos: 28.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7296 - type: CableHV - components: - - pos: 27.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7297 - type: CableHV - components: - - pos: 26.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7298 - type: CableHV - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7299 - type: CableHV - components: - - pos: 24.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7300 - type: CableHV - components: - - pos: 24.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7301 - type: CableHV - components: - - pos: 24.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7302 - type: Catwalk - components: - - pos: 24.5,-21.5 - parent: 1 - type: Transform -- uid: 7303 - type: Catwalk - components: - - pos: 24.5,-20.5 - parent: 1 - type: Transform -- uid: 7304 - type: Catwalk - components: - - pos: 24.5,-19.5 - parent: 1 - type: Transform -- uid: 7305 - type: Catwalk - components: - - pos: 24.5,-18.5 - parent: 1 - type: Transform -- uid: 7306 - type: Catwalk - components: - - pos: 24.5,-17.5 - parent: 1 - type: Transform -- uid: 7307 - type: Catwalk - components: - - pos: 24.5,-16.5 - parent: 1 - type: Transform -- uid: 7308 - type: Catwalk - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform -- uid: 7309 - type: Catwalk - components: - - pos: 26.5,-15.5 - parent: 1 - type: Transform -- uid: 7310 - type: Catwalk - components: - - pos: 27.5,-15.5 - parent: 1 - type: Transform -- uid: 7311 - type: Catwalk - components: - - pos: 28.5,-15.5 - parent: 1 - type: Transform -- uid: 7312 - type: Catwalk - components: - - pos: 29.5,-15.5 - parent: 1 - type: Transform -- uid: 7313 - type: Catwalk - components: - - pos: 24.5,-14.5 - parent: 1 - type: Transform -- uid: 7314 - type: Catwalk - components: - - pos: 24.5,-13.5 - parent: 1 - type: Transform -- uid: 7315 - type: Catwalk - components: - - pos: 24.5,-12.5 - parent: 1 - type: Transform -- uid: 7316 - type: TelecomServer - components: - - pos: 17.5,-13.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 8436 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 7317 - type: Firelock - components: - - pos: 21.5,-28.5 - parent: 1 - type: Transform -- uid: 7318 - type: Firelock - components: - - pos: 29.5,-24.5 - parent: 1 - type: Transform -- uid: 7319 - type: WallReinforced - components: - - pos: 25.5,-13.5 - parent: 1 - type: Transform -- uid: 7320 - type: Catwalk - components: - - pos: 34.5,-11.5 - parent: 1 - type: Transform -- uid: 7321 - type: Catwalk - components: - - pos: 33.5,-11.5 - parent: 1 - type: Transform -- uid: 7322 - type: CableHV - components: - - pos: 24.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7323 - type: CableHV - components: - - pos: 24.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7324 - type: CableHV - components: - - pos: 24.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7325 - type: CableHV - components: - - pos: 24.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7326 - type: CableHV - components: - - pos: 24.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7327 - type: CableHV - components: - - pos: 24.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7328 - type: CableHV - components: - - pos: 24.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7329 - type: Catwalk - components: - - pos: 18.5,2.5 - parent: 1 - type: Transform -- uid: 7330 - type: Catwalk - components: - - pos: 18.5,3.5 - parent: 1 - type: Transform -- uid: 7331 - type: Catwalk - components: - - pos: 18.5,52.5 - parent: 1 - type: Transform -- uid: 7332 - type: Catwalk - components: - - pos: 19.5,52.5 - parent: 1 - type: Transform -- uid: 7333 - type: Catwalk - components: - - pos: -24.5,56.5 - parent: 1 - type: Transform -- uid: 7334 - type: Catwalk - components: - - pos: -24.5,55.5 - parent: 1 - type: Transform -- uid: 7335 - type: Catwalk - components: - - pos: -24.5,54.5 - parent: 1 - type: Transform -- uid: 7336 - type: CableHV - components: - - pos: -31.5,23.5 - parent: 1 - type: Transform -- uid: 7337 - type: CableHV - components: - - pos: 24.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7338 - type: CableHV - components: - - pos: 24.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7339 - type: CableHV - components: - - pos: 24.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7340 - type: CableHV - components: - - pos: 24.5,-10.5 - parent: 1 - type: Transform -- uid: 7341 - type: CableHV - components: - - pos: 36.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7342 - type: VendingMachineChapel - components: - - flags: SessionSpecific - type: MetaData - - pos: 26.5,54.5 - parent: 1 - type: Transform -- uid: 7343 - type: TableWood - components: - - pos: 24.5,53.5 - parent: 1 - type: Transform -- uid: 7344 - type: BedsheetBlack - components: - - rot: 3.141592653589793 rad - pos: 26.5,52.5 - parent: 1 - type: Transform -- uid: 7345 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 24.5,47.5 - parent: 1 - type: Transform -- uid: 7346 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 24.5,49.5 - parent: 1 - type: Transform -- uid: 7347 - type: CableHV - components: - - pos: 33.5,36.5 - parent: 1 - type: Transform -- uid: 7348 - type: CableHV - components: - - pos: 34.5,36.5 - parent: 1 - type: Transform -- uid: 7349 - type: CableHV - components: - - pos: 34.5,37.5 - parent: 1 - type: Transform -- uid: 7350 - type: CableHV - components: - - pos: 34.5,38.5 - parent: 1 - type: Transform -- uid: 7351 - type: CableHV - components: - - pos: 34.5,39.5 - parent: 1 - type: Transform -- uid: 7352 - type: CableHV - components: - - pos: 34.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7353 - type: CableHV - components: - - pos: 34.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7354 - type: CableHV - components: - - pos: 35.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7355 - type: CableHV - components: - - pos: 36.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7356 - type: CableHV - components: - - pos: 36.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7357 - type: CableHV - components: - - pos: 36.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7358 - type: CableHV - components: - - pos: 36.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7359 - type: CableHV - components: - - pos: 36.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7360 - type: CableHV - components: - - pos: 36.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7361 - type: CableHV - components: - - pos: 36.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7362 - type: CableHV - components: - - pos: 36.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7363 - type: CableHV - components: - - pos: 36.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7364 - type: CableHV - components: - - pos: 36.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7365 - type: CableHV - components: - - pos: 36.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7366 - type: CableHV - components: - - pos: 35.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7367 - type: CableHV - components: - - pos: 34.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7368 - type: CableHV - components: - - pos: 33.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7369 - type: CableHV - components: - - pos: 32.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7370 - type: CableHV - components: - - pos: 31.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7371 - type: CableHV - components: - - pos: 30.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7372 - type: CableHV - components: - - pos: 29.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7373 - type: CableHV - components: - - pos: 29.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7374 - type: CableHV - components: - - pos: 28.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7375 - type: CableHV - components: - - pos: 28.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7376 - type: CableHV - components: - - pos: 28.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7377 - type: CableHV - components: - - pos: 28.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7378 - type: CableHV - components: - - pos: 28.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7379 - type: CableHV - components: - - pos: 28.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7380 - type: CableHV - components: - - pos: 27.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7381 - type: CableHV - components: - - pos: 26.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7382 - type: CableHV - components: - - pos: 25.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7383 - type: CableHV - components: - - pos: 24.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7384 - type: CableHV - components: - - pos: 23.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7385 - type: CableHV - components: - - pos: 22.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7386 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 28.5,53.5 - parent: 1 - type: Transform -- uid: 7387 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,52.5 - parent: 1 - type: Transform -- uid: 7388 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,55.5 - parent: 1 - type: Transform -- uid: 7389 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,49.5 - parent: 1 - type: Transform -- uid: 7390 - type: TableReinforced - components: - - pos: -14.5,50.5 - parent: 1 - type: Transform -- uid: 7391 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: -14.5,48.5 - parent: 1 - type: Transform -- uid: 7392 - type: ComputerCriminalRecords - components: - - pos: -11.5,50.5 - parent: 1 - type: Transform -- uid: 7393 - type: ComputerStationRecords - components: - - rot: 1.5707963267948966 rad - pos: -14.5,49.5 - parent: 1 - type: Transform -- uid: 7394 - type: LockerWardenFilled - components: - - pos: -13.5,50.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7395 - type: WeaponCapacitorRecharger - components: - - pos: -14.5,50.5 - parent: 1 - type: Transform -- uid: 7396 - type: WeaponDisabler - components: - - pos: -14.632251,50.815887 - parent: 1 - type: Transform -- uid: 7397 - type: RadioHandheld - components: - - pos: -14.804126,50.394012 - parent: 1 - type: Transform -- uid: 7398 - type: WeaponCapacitorRecharger - components: - - pos: -16.5,50.5 - parent: 1 - type: Transform -- uid: 7399 - type: Catwalk - components: - - pos: 37.5,76.5 - parent: 1 - type: Transform -- uid: 7400 - type: Catwalk - components: - - pos: 37.5,75.5 - parent: 1 - type: Transform -- uid: 7401 - type: Catwalk - components: - - pos: 37.5,74.5 - parent: 1 - type: Transform -- uid: 7402 - type: Catwalk - components: - - pos: 37.5,73.5 - parent: 1 - type: Transform -- uid: 7403 - type: Catwalk - components: - - pos: 37.5,72.5 - parent: 1 - type: Transform -- uid: 7404 - type: Catwalk - components: - - pos: 37.5,71.5 - parent: 1 - type: Transform -- uid: 7405 - type: Catwalk - components: - - pos: 37.5,70.5 - parent: 1 - type: Transform -- uid: 7406 - type: Catwalk - components: - - pos: 37.5,69.5 - parent: 1 - type: Transform -- uid: 7407 - type: Catwalk - components: - - pos: 37.5,68.5 - parent: 1 - type: Transform -- uid: 7408 - type: Catwalk - components: - - pos: 37.5,67.5 - parent: 1 - type: Transform -- uid: 7409 - type: Catwalk - components: - - pos: 37.5,66.5 - parent: 1 - type: Transform -- uid: 7410 - type: Catwalk - components: - - pos: 37.5,65.5 - parent: 1 - type: Transform -- uid: 7411 - type: Catwalk - components: - - pos: 37.5,64.5 - parent: 1 - type: Transform -- uid: 7412 - type: Catwalk - components: - - pos: 37.5,63.5 - parent: 1 - type: Transform -- uid: 7413 - type: Catwalk - components: - - pos: 37.5,62.5 - parent: 1 - type: Transform -- uid: 7414 - type: Catwalk - components: - - pos: 37.5,61.5 - parent: 1 - type: Transform -- uid: 7415 - type: Catwalk - components: - - pos: 37.5,60.5 - parent: 1 - type: Transform -- uid: 7416 - type: Catwalk - components: - - pos: 37.5,59.5 - parent: 1 - type: Transform -- uid: 7417 - type: Catwalk - components: - - pos: 37.5,58.5 - parent: 1 - type: Transform -- uid: 7418 - type: Catwalk - components: - - pos: 37.5,57.5 - parent: 1 - type: Transform -- uid: 7419 - type: SolarPanel - components: - - pos: 42.5,76.5 - parent: 1 - type: Transform -- uid: 7420 - type: SolarPanel - components: - - pos: 43.5,76.5 - parent: 1 - type: Transform -- uid: 7421 - type: SolarPanel - components: - - pos: 44.5,76.5 - parent: 1 - type: Transform -- uid: 7422 - type: SolarPanel - components: - - pos: 45.5,76.5 - parent: 1 - type: Transform -- uid: 7423 - type: SolarPanel - components: - - pos: 46.5,76.5 - parent: 1 - type: Transform -- uid: 7424 - type: SolarPanel - components: - - pos: 40.5,78.5 - parent: 1 - type: Transform -- uid: 7425 - type: SolarPanel - components: - - pos: 41.5,78.5 - parent: 1 - type: Transform -- uid: 7426 - type: SolarPanel - components: - - pos: 42.5,78.5 - parent: 1 - type: Transform -- uid: 7427 - type: SolarPanel - components: - - pos: 43.5,78.5 - parent: 1 - type: Transform -- uid: 7428 - type: SolarPanel - components: - - pos: 44.5,78.5 - parent: 1 - type: Transform -- uid: 7429 - type: SolarPanel - components: - - pos: 45.5,78.5 - parent: 1 - type: Transform -- uid: 7430 - type: SolarPanel - components: - - pos: 46.5,78.5 - parent: 1 - type: Transform -- uid: 7431 - type: SolarPanel - components: - - pos: 34.5,78.5 - parent: 1 - type: Transform -- uid: 7432 - type: SolarPanel - components: - - pos: 33.5,78.5 - parent: 1 - type: Transform -- uid: 7433 - type: SolarPanel - components: - - pos: 32.5,78.5 - parent: 1 - type: Transform -- uid: 7434 - type: SolarPanel - components: - - pos: 31.5,78.5 - parent: 1 - type: Transform -- uid: 7435 - type: SolarPanel - components: - - pos: 30.5,78.5 - parent: 1 - type: Transform -- uid: 7436 - type: SolarPanel - components: - - pos: 29.5,78.5 - parent: 1 - type: Transform -- uid: 7437 - type: SolarPanel - components: - - pos: 28.5,78.5 - parent: 1 - type: Transform -- uid: 7438 - type: SolarPanel - components: - - pos: 28.5,76.5 - parent: 1 - type: Transform -- uid: 7439 - type: SolarPanel - components: - - pos: 29.5,76.5 - parent: 1 - type: Transform -- uid: 7440 - type: SolarPanel - components: - - pos: 30.5,76.5 - parent: 1 - type: Transform -- uid: 7441 - type: SolarPanel - components: - - pos: 31.5,76.5 - parent: 1 - type: Transform -- uid: 7442 - type: SolarPanel - components: - - pos: 32.5,76.5 - parent: 1 - type: Transform -- uid: 7443 - type: SolarPanel - components: - - pos: 33.5,76.5 - parent: 1 - type: Transform -- uid: 7444 - type: SolarPanel - components: - - pos: 34.5,76.5 - parent: 1 - type: Transform -- uid: 7445 - type: SolarPanel - components: - - pos: 40.5,74.5 - parent: 1 - type: Transform -- uid: 7446 - type: SolarPanel - components: - - pos: 41.5,74.5 - parent: 1 - type: Transform -- uid: 7447 - type: SolarPanel - components: - - pos: 42.5,74.5 - parent: 1 - type: Transform -- uid: 7448 - type: SolarPanel - components: - - pos: 43.5,74.5 - parent: 1 - type: Transform -- uid: 7449 - type: SolarPanel - components: - - pos: 44.5,74.5 - parent: 1 - type: Transform -- uid: 7450 - type: SolarPanel - components: - - pos: 45.5,74.5 - parent: 1 - type: Transform -- uid: 7451 - type: SolarPanel - components: - - pos: 46.5,74.5 - parent: 1 - type: Transform -- uid: 7452 - type: SolarPanel - components: - - pos: 40.5,72.5 - parent: 1 - type: Transform -- uid: 7453 - type: SolarPanel - components: - - pos: 41.5,72.5 - parent: 1 - type: Transform -- uid: 7454 - type: SolarPanel - components: - - pos: 42.5,72.5 - parent: 1 - type: Transform -- uid: 7455 - type: SolarPanel - components: - - pos: 43.5,72.5 - parent: 1 - type: Transform -- uid: 7456 - type: SolarPanel - components: - - pos: 44.5,72.5 - parent: 1 - type: Transform -- uid: 7457 - type: SolarPanel - components: - - pos: 45.5,72.5 - parent: 1 - type: Transform -- uid: 7458 - type: SolarPanel - components: - - pos: 46.5,72.5 - parent: 1 - type: Transform -- uid: 7459 - type: SolarPanel - components: - - pos: 39.5,72.5 - parent: 1 - type: Transform -- uid: 7460 - type: SolarPanel - components: - - pos: 39.5,74.5 - parent: 1 - type: Transform -- uid: 7461 - type: SolarPanel - components: - - pos: 39.5,76.5 - parent: 1 - type: Transform -- uid: 7462 - type: SolarPanel - components: - - pos: 39.5,78.5 - parent: 1 - type: Transform -- uid: 7463 - type: SolarPanel - components: - - pos: 35.5,78.5 - parent: 1 - type: Transform -- uid: 7464 - type: SolarPanel - components: - - pos: 35.5,76.5 - parent: 1 - type: Transform -- uid: 7465 - type: SolarPanel - components: - - pos: 35.5,74.5 - parent: 1 - type: Transform -- uid: 7466 - type: SolarPanel - components: - - pos: 34.5,74.5 - parent: 1 - type: Transform -- uid: 7467 - type: SolarPanel - components: - - pos: 33.5,74.5 - parent: 1 - type: Transform -- uid: 7468 - type: SolarPanel - components: - - pos: 32.5,74.5 - parent: 1 - type: Transform -- uid: 7469 - type: SolarPanel - components: - - pos: 31.5,74.5 - parent: 1 - type: Transform -- uid: 7470 - type: SolarPanel - components: - - pos: 30.5,74.5 - parent: 1 - type: Transform -- uid: 7471 - type: SolarPanel - components: - - pos: 29.5,74.5 - parent: 1 - type: Transform -- uid: 7472 - type: SolarPanel - components: - - pos: 28.5,74.5 - parent: 1 - type: Transform -- uid: 7473 - type: SolarPanel - components: - - pos: 28.5,72.5 - parent: 1 - type: Transform -- uid: 7474 - type: SolarPanel - components: - - pos: 29.5,72.5 - parent: 1 - type: Transform -- uid: 7475 - type: SolarPanel - components: - - pos: 30.5,72.5 - parent: 1 - type: Transform -- uid: 7476 - type: SolarPanel - components: - - pos: 31.5,72.5 - parent: 1 - type: Transform -- uid: 7477 - type: SolarPanel - components: - - pos: 32.5,72.5 - parent: 1 - type: Transform -- uid: 7478 - type: SolarPanel - components: - - pos: 33.5,72.5 - parent: 1 - type: Transform -- uid: 7479 - type: SolarPanel - components: - - pos: 34.5,72.5 - parent: 1 - type: Transform -- uid: 7480 - type: SolarPanel - components: - - pos: 35.5,72.5 - parent: 1 - type: Transform -- uid: 7481 - type: SolarPanel - components: - - pos: 35.5,68.5 - parent: 1 - type: Transform -- uid: 7482 - type: SolarPanel - components: - - pos: 39.5,70.5 - parent: 1 - type: Transform -- uid: 7483 - type: SolarPanel - components: - - pos: 40.5,70.5 - parent: 1 - type: Transform -- uid: 7484 - type: SolarPanel - components: - - pos: 41.5,70.5 - parent: 1 - type: Transform -- uid: 7485 - type: SolarPanel - components: - - pos: 42.5,70.5 - parent: 1 - type: Transform -- uid: 7486 - type: SolarPanel - components: - - pos: 43.5,70.5 - parent: 1 - type: Transform -- uid: 7487 - type: SolarPanel - components: - - pos: 44.5,70.5 - parent: 1 - type: Transform -- uid: 7488 - type: SolarPanel - components: - - pos: 45.5,70.5 - parent: 1 - type: Transform -- uid: 7489 - type: SolarPanel - components: - - pos: 46.5,70.5 - parent: 1 - type: Transform -- uid: 7490 - type: SolarPanel - components: - - pos: 46.5,68.5 - parent: 1 - type: Transform -- uid: 7491 - type: SolarPanel - components: - - pos: 45.5,68.5 - parent: 1 - type: Transform -- uid: 7492 - type: SolarPanel - components: - - pos: 44.5,68.5 - parent: 1 - type: Transform -- uid: 7493 - type: SolarPanel - components: - - pos: 43.5,68.5 - parent: 1 - type: Transform -- uid: 7494 - type: SolarPanel - components: - - pos: 42.5,68.5 - parent: 1 - type: Transform -- uid: 7495 - type: SolarPanel - components: - - pos: 41.5,68.5 - parent: 1 - type: Transform -- uid: 7496 - type: SolarPanel - components: - - pos: 40.5,68.5 - parent: 1 - type: Transform -- uid: 7497 - type: SolarPanel - components: - - pos: 39.5,68.5 - parent: 1 - type: Transform -- uid: 7498 - type: SolarPanel - components: - - pos: 34.5,68.5 - parent: 1 - type: Transform -- uid: 7499 - type: SolarPanel - components: - - pos: 33.5,68.5 - parent: 1 - type: Transform -- uid: 7500 - type: SolarPanel - components: - - pos: 32.5,68.5 - parent: 1 - type: Transform -- uid: 7501 - type: SolarPanel - components: - - pos: 31.5,68.5 - parent: 1 - type: Transform -- uid: 7502 - type: SolarPanel - components: - - pos: 30.5,68.5 - parent: 1 - type: Transform -- uid: 7503 - type: SolarPanel - components: - - pos: 29.5,68.5 - parent: 1 - type: Transform -- uid: 7504 - type: SolarPanel - components: - - pos: 28.5,68.5 - parent: 1 - type: Transform -- uid: 7505 - type: SolarPanel - components: - - pos: 28.5,70.5 - parent: 1 - type: Transform -- uid: 7506 - type: SolarPanel - components: - - pos: 29.5,70.5 - parent: 1 - type: Transform -- uid: 7507 - type: SolarPanel - components: - - pos: 30.5,70.5 - parent: 1 - type: Transform -- uid: 7508 - type: SolarPanel - components: - - pos: 31.5,70.5 - parent: 1 - type: Transform -- uid: 7509 - type: SolarPanel - components: - - pos: 32.5,70.5 - parent: 1 - type: Transform -- uid: 7510 - type: SolarPanel - components: - - pos: 33.5,70.5 - parent: 1 - type: Transform -- uid: 7511 - type: SolarPanel - components: - - pos: 34.5,70.5 - parent: 1 - type: Transform -- uid: 7512 - type: SolarPanel - components: - - pos: 35.5,70.5 - parent: 1 - type: Transform -- uid: 7513 - type: Catwalk - components: - - pos: 35.5,73.5 - parent: 1 - type: Transform -- uid: 7514 - type: Catwalk - components: - - pos: 34.5,73.5 - parent: 1 - type: Transform -- uid: 7515 - type: Catwalk - components: - - pos: 33.5,73.5 - parent: 1 - type: Transform -- uid: 7516 - type: Catwalk - components: - - pos: 32.5,73.5 - parent: 1 - type: Transform -- uid: 7517 - type: Catwalk - components: - - pos: 31.5,73.5 - parent: 1 - type: Transform -- uid: 7518 - type: Catwalk - components: - - pos: 30.5,73.5 - parent: 1 - type: Transform -- uid: 7519 - type: Catwalk - components: - - pos: 29.5,73.5 - parent: 1 - type: Transform -- uid: 7520 - type: Catwalk - components: - - pos: 28.5,73.5 - parent: 1 - type: Transform -- uid: 7521 - type: Catwalk - components: - - pos: 39.5,73.5 - parent: 1 - type: Transform -- uid: 7522 - type: Catwalk - components: - - pos: 40.5,73.5 - parent: 1 - type: Transform -- uid: 7523 - type: Catwalk - components: - - pos: 41.5,73.5 - parent: 1 - type: Transform -- uid: 7524 - type: Catwalk - components: - - pos: 42.5,73.5 - parent: 1 - type: Transform -- uid: 7525 - type: Catwalk - components: - - pos: 43.5,73.5 - parent: 1 - type: Transform -- uid: 7526 - type: Catwalk - components: - - pos: 44.5,73.5 - parent: 1 - type: Transform -- uid: 7527 - type: Catwalk - components: - - pos: 45.5,73.5 - parent: 1 - type: Transform -- uid: 7528 - type: Catwalk - components: - - pos: 46.5,73.5 - parent: 1 - type: Transform -- uid: 7529 - type: Catwalk - components: - - pos: 35.5,69.5 - parent: 1 - type: Transform -- uid: 7530 - type: Catwalk - components: - - pos: 34.5,69.5 - parent: 1 - type: Transform -- uid: 7531 - type: Catwalk - components: - - pos: 33.5,69.5 - parent: 1 - type: Transform -- uid: 7532 - type: Catwalk - components: - - pos: 32.5,69.5 - parent: 1 - type: Transform -- uid: 7533 - type: Catwalk - components: - - pos: 31.5,69.5 - parent: 1 - type: Transform -- uid: 7534 - type: Catwalk - components: - - pos: 30.5,69.5 - parent: 1 - type: Transform -- uid: 7535 - type: Catwalk - components: - - pos: 29.5,69.5 - parent: 1 - type: Transform -- uid: 7536 - type: Catwalk - components: - - pos: 28.5,69.5 - parent: 1 - type: Transform -- uid: 7537 - type: Catwalk - components: - - pos: 39.5,69.5 - parent: 1 - type: Transform -- uid: 7538 - type: Catwalk - components: - - pos: 40.5,69.5 - parent: 1 - type: Transform -- uid: 7539 - type: Catwalk - components: - - pos: 41.5,69.5 - parent: 1 - type: Transform -- uid: 7540 - type: Catwalk - components: - - pos: 42.5,69.5 - parent: 1 - type: Transform -- uid: 7541 - type: Catwalk - components: - - pos: 43.5,69.5 - parent: 1 - type: Transform -- uid: 7542 - type: Catwalk - components: - - pos: 44.5,69.5 - parent: 1 - type: Transform -- uid: 7543 - type: Catwalk - components: - - pos: 45.5,69.5 - parent: 1 - type: Transform -- uid: 7544 - type: Catwalk - components: - - pos: 46.5,69.5 - parent: 1 - type: Transform -- uid: 7545 - type: Catwalk - components: - - pos: -38.5,78.5 - parent: 1 - type: Transform -- uid: 7546 - type: CableHV - components: - - pos: 37.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7547 - type: CableHV - components: - - pos: 37.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7548 - type: CableHV - components: - - pos: 37.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7549 - type: CableHV - components: - - pos: 37.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7550 - type: CableHV - components: - - pos: 37.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7551 - type: CableHV - components: - - pos: 37.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7552 - type: CableHV - components: - - pos: 36.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7553 - type: CableHV - components: - - pos: 35.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7554 - type: CableHV - components: - - pos: 35.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7555 - type: CableHV - components: - - pos: 34.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7556 - type: CableHV - components: - - pos: 33.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7557 - type: CableHV - components: - - pos: 32.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7558 - type: CableHV - components: - - pos: 31.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7559 - type: CableHV - components: - - pos: 30.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7560 - type: CableHV - components: - - pos: 29.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7561 - type: CableHV - components: - - pos: 28.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7562 - type: CableHV - components: - - pos: 35.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7563 - type: CableHV - components: - - pos: 34.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7564 - type: CableHV - components: - - pos: 33.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7565 - type: CableHV - components: - - pos: 32.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7566 - type: CableHV - components: - - pos: 31.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7567 - type: CableHV - components: - - pos: 30.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7568 - type: CableHV - components: - - pos: 29.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7569 - type: CableHV - components: - - pos: 28.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7570 - type: CableHV - components: - - pos: 38.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7571 - type: CableHV - components: - - pos: 39.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7572 - type: CableHV - components: - - pos: 39.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7573 - type: CableHV - components: - - pos: 40.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7574 - type: CableHV - components: - - pos: 41.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7575 - type: CableHV - components: - - pos: 42.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7576 - type: CableHV - components: - - pos: 43.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7577 - type: CableHV - components: - - pos: 44.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7578 - type: CableHV - components: - - pos: 45.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7579 - type: CableHV - components: - - pos: 46.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7580 - type: CableHV - components: - - pos: 39.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7581 - type: CableHV - components: - - pos: 40.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7582 - type: CableHV - components: - - pos: 41.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7583 - type: CableHV - components: - - pos: 42.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7584 - type: CableHV - components: - - pos: 43.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7585 - type: CableHV - components: - - pos: 44.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7586 - type: CableHV - components: - - pos: 45.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7587 - type: CableHV - components: - - pos: 46.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7588 - type: CableHV - components: - - pos: 38.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7589 - type: CableHV - components: - - pos: 39.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7590 - type: CableHV - components: - - pos: 39.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7591 - type: CableHV - components: - - pos: 40.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7592 - type: CableHV - components: - - pos: 41.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7593 - type: CableHV - components: - - pos: 42.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7594 - type: CableHV - components: - - pos: 43.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7595 - type: CableHV - components: - - pos: 44.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7596 - type: CableHV - components: - - pos: 45.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7597 - type: CableHV - components: - - pos: 46.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7598 - type: CableHV - components: - - pos: 39.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7599 - type: CableHV - components: - - pos: 40.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7600 - type: CableHV - components: - - pos: 41.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7601 - type: CableHV - components: - - pos: 42.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7602 - type: CableHV - components: - - pos: 43.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7603 - type: CableHV - components: - - pos: 44.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7604 - type: CableHV - components: - - pos: 45.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7605 - type: CableHV - components: - - pos: 46.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7606 - type: CableHV - components: - - pos: 36.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7607 - type: CableHV - components: - - pos: 35.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7608 - type: CableHV - components: - - pos: 35.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7609 - type: CableHV - components: - - pos: 34.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7610 - type: CableHV - components: - - pos: 33.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7611 - type: CableHV - components: - - pos: 32.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7612 - type: CableHV - components: - - pos: 31.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7613 - type: CableHV - components: - - pos: 30.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7614 - type: CableHV - components: - - pos: 29.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7615 - type: CableHV - components: - - pos: 28.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7616 - type: CableHV - components: - - pos: 35.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7617 - type: CableHV - components: - - pos: 34.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7618 - type: CableHV - components: - - pos: 33.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7619 - type: CableHV - components: - - pos: 32.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7620 - type: CableHV - components: - - pos: 31.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7621 - type: CableHV - components: - - pos: 30.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7622 - type: CableHV - components: - - pos: 29.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7623 - type: CableHV - components: - - pos: 28.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7624 - type: CableHV - components: - - pos: 36.5,77.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7625 - type: CableHV - components: - - pos: 35.5,77.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7626 - type: CableHV - components: - - pos: 35.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7627 - type: CableHV - components: - - pos: 34.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7628 - type: CableHV - components: - - pos: 33.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7629 - type: CableHV - components: - - pos: 32.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7630 - type: CableHV - components: - - pos: 31.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7631 - type: CableHV - components: - - pos: 30.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7632 - type: CableHV - components: - - pos: 29.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7633 - type: CableHV - components: - - pos: 28.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7634 - type: CableHV - components: - - pos: 28.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7635 - type: CableHV - components: - - pos: 29.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7636 - type: CableHV - components: - - pos: 30.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7637 - type: CableHV - components: - - pos: 31.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7638 - type: CableHV - components: - - pos: 32.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7639 - type: CableHV - components: - - pos: 33.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7640 - type: CableHV - components: - - pos: 34.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7641 - type: CableHV - components: - - pos: 35.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7642 - type: Catwalk - components: - - pos: 35.5,77.5 - parent: 1 - type: Transform -- uid: 7643 - type: Catwalk - components: - - pos: 34.5,77.5 - parent: 1 - type: Transform -- uid: 7644 - type: Catwalk - components: - - pos: 33.5,77.5 - parent: 1 - type: Transform -- uid: 7645 - type: Catwalk - components: - - pos: 32.5,77.5 - parent: 1 - type: Transform -- uid: 7646 - type: Catwalk - components: - - pos: 31.5,77.5 - parent: 1 - type: Transform -- uid: 7647 - type: Catwalk - components: - - pos: 30.5,77.5 - parent: 1 - type: Transform -- uid: 7648 - type: Catwalk - components: - - pos: 29.5,77.5 - parent: 1 - type: Transform -- uid: 7649 - type: Catwalk - components: - - pos: 28.5,77.5 - parent: 1 - type: Transform -- uid: 7650 - type: Catwalk - components: - - pos: 39.5,77.5 - parent: 1 - type: Transform -- uid: 7651 - type: Catwalk - components: - - pos: 40.5,77.5 - parent: 1 - type: Transform -- uid: 7652 - type: Catwalk - components: - - pos: 41.5,77.5 - parent: 1 - type: Transform -- uid: 7653 - type: Catwalk - components: - - pos: 42.5,77.5 - parent: 1 - type: Transform -- uid: 7654 - type: Catwalk - components: - - pos: 43.5,77.5 - parent: 1 - type: Transform -- uid: 7655 - type: Catwalk - components: - - pos: 44.5,77.5 - parent: 1 - type: Transform -- uid: 7656 - type: Catwalk - components: - - pos: 45.5,77.5 - parent: 1 - type: Transform -- uid: 7657 - type: Catwalk - components: - - pos: 46.5,77.5 - parent: 1 - type: Transform -- uid: 7658 - type: CableHV - components: - - pos: 38.5,77.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7659 - type: CableHV - components: - - pos: 39.5,77.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7660 - type: CableHV - components: - - pos: 39.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7661 - type: CableHV - components: - - pos: 40.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7662 - type: CableHV - components: - - pos: 41.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7663 - type: CableHV - components: - - pos: 42.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7664 - type: CableHV - components: - - pos: 43.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7665 - type: CableHV - components: - - pos: 44.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7666 - type: CableHV - components: - - pos: 45.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7667 - type: CableHV - components: - - pos: 46.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7668 - type: CableHV - components: - - pos: 39.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7669 - type: CableHV - components: - - pos: 40.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7670 - type: CableHV - components: - - pos: 41.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7671 - type: CableHV - components: - - pos: 42.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7672 - type: CableHV - components: - - pos: 43.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7673 - type: CableHV - components: - - pos: 44.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7674 - type: CableHV - components: - - pos: 45.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7675 - type: CableHV - components: - - pos: 46.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7676 - type: SolarTracker - components: - - pos: 37.5,79.5 - parent: 1 - type: Transform -- uid: 7677 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 48.5,73.5 - parent: 1 - type: Transform -- uid: 7678 - type: Grille - components: - - pos: 26.5,67.5 - parent: 1 - type: Transform -- uid: 7679 - type: Grille - components: - - pos: 26.5,68.5 - parent: 1 - type: Transform -- uid: 7680 - type: Grille - components: - - pos: 26.5,69.5 - parent: 1 - type: Transform -- uid: 7681 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 48.5,78.5 - parent: 1 - type: Transform -- uid: 7682 - type: Grille - components: - - pos: 26.5,71.5 - parent: 1 - type: Transform -- uid: 7683 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 46.5,80.5 - parent: 1 - type: Transform -- uid: 7684 - type: Grille - components: - - pos: 26.5,73.5 - parent: 1 - type: Transform -- uid: 7685 - type: Grille - components: - - pos: 26.5,74.5 - parent: 1 - type: Transform -- uid: 7686 - type: Grille - components: - - pos: 26.5,75.5 - parent: 1 - type: Transform -- uid: 7687 - type: Grille - components: - - pos: 26.5,76.5 - parent: 1 - type: Transform -- uid: 7688 - type: Grille - components: - - pos: 26.5,77.5 - parent: 1 - type: Transform -- uid: 7689 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 42.5,80.5 - parent: 1 - type: Transform -- uid: 7690 - type: Grille - components: - - pos: 26.5,79.5 - parent: 1 - type: Transform -- uid: 7691 - type: Grille - components: - - pos: 26.5,80.5 - parent: 1 - type: Transform -- uid: 7692 - type: Grille - components: - - pos: 27.5,80.5 - parent: 1 - type: Transform -- uid: 7693 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 26.5,78.5 - parent: 1 - type: Transform -- uid: 7694 - type: Grille - components: - - pos: 29.5,80.5 - parent: 1 - type: Transform -- uid: 7695 - type: Grille - components: - - pos: 30.5,80.5 - parent: 1 - type: Transform -- uid: 7696 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 28.5,80.5 - parent: 1 - type: Transform -- uid: 7697 - type: Grille - components: - - pos: 32.5,80.5 - parent: 1 - type: Transform -- uid: 7698 - type: GrilleBroken - components: - - pos: 26.5,70.5 - parent: 1 - type: Transform -- uid: 7699 - type: Grille - components: - - pos: 34.5,80.5 - parent: 1 - type: Transform -- uid: 7700 - type: Grille - components: - - pos: 35.5,80.5 - parent: 1 - type: Transform -- uid: 7701 - type: GrilleBroken - components: - - pos: 26.5,72.5 - parent: 1 - type: Transform -- uid: 7702 - type: Grille - components: - - pos: 36.5,81.5 - parent: 1 - type: Transform -- uid: 7703 - type: Grille - components: - - pos: 37.5,81.5 - parent: 1 - type: Transform -- uid: 7704 - type: Grille - components: - - pos: 38.5,81.5 - parent: 1 - type: Transform -- uid: 7705 - type: Grille - components: - - pos: 39.5,81.5 - parent: 1 - type: Transform -- uid: 7706 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 26.5,72.5 - parent: 1 - type: Transform -- uid: 7707 - type: Grille - components: - - pos: 40.5,80.5 - parent: 1 - type: Transform -- uid: 7708 - type: Grille - components: - - pos: 41.5,80.5 - parent: 1 - type: Transform -- uid: 7709 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 26.5,70.5 - parent: 1 - type: Transform -- uid: 7710 - type: Grille - components: - - pos: 43.5,80.5 - parent: 1 - type: Transform -- uid: 7711 - type: Grille - components: - - pos: 44.5,80.5 - parent: 1 - type: Transform -- uid: 7712 - type: Grille - components: - - pos: 45.5,80.5 - parent: 1 - type: Transform -- uid: 7713 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 26.5,66.5 - parent: 1 - type: Transform -- uid: 7714 - type: Grille - components: - - pos: 47.5,80.5 - parent: 1 - type: Transform -- uid: 7715 - type: Grille - components: - - pos: 48.5,80.5 - parent: 1 - type: Transform -- uid: 7716 - type: Grille - components: - - pos: 48.5,79.5 - parent: 1 - type: Transform -- uid: 7717 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 48.5,66.5 - parent: 1 - type: Transform -- uid: 7718 - type: GrilleBroken - components: - - pos: 48.5,71.5 - parent: 1 - type: Transform -- uid: 7719 - type: Grille - components: - - pos: 48.5,76.5 - parent: 1 - type: Transform -- uid: 7720 - type: Grille - components: - - pos: 48.5,75.5 - parent: 1 - type: Transform -- uid: 7721 - type: Grille - components: - - pos: 48.5,74.5 - parent: 1 - type: Transform -- uid: 7722 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 33.5,80.5 - parent: 1 - type: Transform -- uid: 7723 - type: Grille - components: - - pos: 48.5,72.5 - parent: 1 - type: Transform -- uid: 7724 - type: GrilleBroken - components: - - pos: 48.5,73.5 - parent: 1 - type: Transform -- uid: 7725 - type: Grille - components: - - pos: 48.5,70.5 - parent: 1 - type: Transform -- uid: 7726 - type: Grille - components: - - pos: 48.5,69.5 - parent: 1 - type: Transform -- uid: 7727 - type: Grille - components: - - pos: 48.5,68.5 - parent: 1 - type: Transform -- uid: 7728 - type: Grille - components: - - pos: 48.5,67.5 - parent: 1 - type: Transform -- uid: 7729 - type: GrilleBroken - components: - - pos: 48.5,77.5 - parent: 1 - type: Transform -- uid: 7730 - type: Catwalk - components: - - pos: -38.5,72.5 - parent: 1 - type: Transform -- uid: 7731 - type: Catwalk - components: - - pos: -38.5,71.5 - parent: 1 - type: Transform -- uid: 7732 - type: Catwalk - components: - - pos: -38.5,70.5 - parent: 1 - type: Transform -- uid: 7733 - type: Catwalk - components: - - pos: -38.5,69.5 - parent: 1 - type: Transform -- uid: 7734 - type: Catwalk - components: - - pos: -38.5,68.5 - parent: 1 - type: Transform -- uid: 7735 - type: Catwalk - components: - - pos: -38.5,67.5 - parent: 1 - type: Transform -- uid: 7736 - type: Catwalk - components: - - pos: -38.5,66.5 - parent: 1 - type: Transform -- uid: 7737 - type: Catwalk - components: - - pos: -38.5,65.5 - parent: 1 - type: Transform -- uid: 7738 - type: Catwalk - components: - - pos: -38.5,64.5 - parent: 1 - type: Transform -- uid: 7739 - type: Catwalk - components: - - pos: -38.5,63.5 - parent: 1 - type: Transform -- uid: 7740 - type: Catwalk - components: - - pos: -38.5,62.5 - parent: 1 - type: Transform -- uid: 7741 - type: Catwalk - components: - - pos: -38.5,61.5 - parent: 1 - type: Transform -- uid: 7742 - type: Catwalk - components: - - pos: -38.5,60.5 - parent: 1 - type: Transform -- uid: 7743 - type: Catwalk - components: - - pos: -38.5,59.5 - parent: 1 - type: Transform -- uid: 7744 - type: Catwalk - components: - - pos: -38.5,58.5 - parent: 1 - type: Transform -- uid: 7745 - type: Catwalk - components: - - pos: -38.5,57.5 - parent: 1 - type: Transform -- uid: 7746 - type: Catwalk - components: - - pos: -40.5,73.5 - parent: 1 - type: Transform -- uid: 7747 - type: Catwalk - components: - - pos: -41.5,73.5 - parent: 1 - type: Transform -- uid: 7748 - type: Catwalk - components: - - pos: -42.5,73.5 - parent: 1 - type: Transform -- uid: 7749 - type: Catwalk - components: - - pos: -43.5,73.5 - parent: 1 - type: Transform -- uid: 7750 - type: Catwalk - components: - - pos: -44.5,73.5 - parent: 1 - type: Transform -- uid: 7751 - type: Catwalk - components: - - pos: -45.5,73.5 - parent: 1 - type: Transform -- uid: 7752 - type: Catwalk - components: - - pos: -46.5,73.5 - parent: 1 - type: Transform -- uid: 7753 - type: Catwalk - components: - - pos: -47.5,73.5 - parent: 1 - type: Transform -- uid: 7754 - type: Catwalk - components: - - pos: -36.5,73.5 - parent: 1 - type: Transform -- uid: 7755 - type: Catwalk - components: - - pos: -35.5,73.5 - parent: 1 - type: Transform -- uid: 7756 - type: Catwalk - components: - - pos: -34.5,73.5 - parent: 1 - type: Transform -- uid: 7757 - type: Catwalk - components: - - pos: -33.5,73.5 - parent: 1 - type: Transform -- uid: 7758 - type: Catwalk - components: - - pos: -32.5,73.5 - parent: 1 - type: Transform -- uid: 7759 - type: Catwalk - components: - - pos: -31.5,73.5 - parent: 1 - type: Transform -- uid: 7760 - type: Catwalk - components: - - pos: -30.5,73.5 - parent: 1 - type: Transform -- uid: 7761 - type: Catwalk - components: - - pos: -29.5,73.5 - parent: 1 - type: Transform -- uid: 7762 - type: Catwalk - components: - - pos: -36.5,77.5 - parent: 1 - type: Transform -- uid: 7763 - type: Catwalk - components: - - pos: -35.5,77.5 - parent: 1 - type: Transform -- uid: 7764 - type: Catwalk - components: - - pos: -34.5,77.5 - parent: 1 - type: Transform -- uid: 7765 - type: Catwalk - components: - - pos: -33.5,77.5 - parent: 1 - type: Transform -- uid: 7766 - type: Catwalk - components: - - pos: -32.5,77.5 - parent: 1 - type: Transform -- uid: 7767 - type: Catwalk - components: - - pos: -31.5,77.5 - parent: 1 - type: Transform -- uid: 7768 - type: Catwalk - components: - - pos: -30.5,77.5 - parent: 1 - type: Transform -- uid: 7769 - type: Catwalk - components: - - pos: -29.5,77.5 - parent: 1 - type: Transform -- uid: 7770 - type: Catwalk - components: - - pos: -40.5,77.5 - parent: 1 - type: Transform -- uid: 7771 - type: Catwalk - components: - - pos: -41.5,77.5 - parent: 1 - type: Transform -- uid: 7772 - type: Catwalk - components: - - pos: -42.5,77.5 - parent: 1 - type: Transform -- uid: 7773 - type: Catwalk - components: - - pos: -43.5,77.5 - parent: 1 - type: Transform -- uid: 7774 - type: Catwalk - components: - - pos: -44.5,77.5 - parent: 1 - type: Transform -- uid: 7775 - type: Catwalk - components: - - pos: -45.5,77.5 - parent: 1 - type: Transform -- uid: 7776 - type: Catwalk - components: - - pos: -46.5,77.5 - parent: 1 - type: Transform -- uid: 7777 - type: Catwalk - components: - - pos: -47.5,77.5 - parent: 1 - type: Transform -- uid: 7778 - type: Catwalk - components: - - pos: -40.5,69.5 - parent: 1 - type: Transform -- uid: 7779 - type: Catwalk - components: - - pos: -41.5,69.5 - parent: 1 - type: Transform -- uid: 7780 - type: Catwalk - components: - - pos: -42.5,69.5 - parent: 1 - type: Transform -- uid: 7781 - type: Catwalk - components: - - pos: -43.5,69.5 - parent: 1 - type: Transform -- uid: 7782 - type: Catwalk - components: - - pos: -44.5,69.5 - parent: 1 - type: Transform -- uid: 7783 - type: Catwalk - components: - - pos: -45.5,69.5 - parent: 1 - type: Transform -- uid: 7784 - type: Catwalk - components: - - pos: -46.5,69.5 - parent: 1 - type: Transform -- uid: 7785 - type: Catwalk - components: - - pos: -47.5,69.5 - parent: 1 - type: Transform -- uid: 7786 - type: Catwalk - components: - - pos: -36.5,69.5 - parent: 1 - type: Transform -- uid: 7787 - type: Catwalk - components: - - pos: -35.5,69.5 - parent: 1 - type: Transform -- uid: 7788 - type: Catwalk - components: - - pos: -34.5,69.5 - parent: 1 - type: Transform -- uid: 7789 - type: Catwalk - components: - - pos: -33.5,69.5 - parent: 1 - type: Transform -- uid: 7790 - type: Catwalk - components: - - pos: -32.5,69.5 - parent: 1 - type: Transform -- uid: 7791 - type: Catwalk - components: - - pos: -31.5,69.5 - parent: 1 - type: Transform -- uid: 7792 - type: Catwalk - components: - - pos: -30.5,69.5 - parent: 1 - type: Transform -- uid: 7793 - type: Catwalk - components: - - pos: -29.5,69.5 - parent: 1 - type: Transform -- uid: 7794 - type: CableHV - components: - - pos: -41.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7795 - type: CableHV - components: - - pos: -42.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7796 - type: CableHV - components: - - pos: -43.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7797 - type: CableHV - components: - - pos: -44.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7798 - type: CableHV - components: - - pos: -45.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7799 - type: CableHV - components: - - pos: -46.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7800 - type: CableHV - components: - - pos: -47.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7801 - type: CableHV - components: - - pos: -47.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7802 - type: CableHV - components: - - pos: -46.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7803 - type: CableHV - components: - - pos: -45.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7804 - type: CableHV - components: - - pos: -44.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7805 - type: CableHV - components: - - pos: -43.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7806 - type: CableHV - components: - - pos: -42.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7807 - type: CableHV - components: - - pos: -41.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7808 - type: CableHV - components: - - pos: -40.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7809 - type: CableHV - components: - - pos: -40.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7810 - type: CableHV - components: - - pos: -40.5,77.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7811 - type: CableHV - components: - - pos: -39.5,77.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7812 - type: CableHV - components: - - pos: -37.5,77.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7813 - type: CableHV - components: - - pos: -36.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7814 - type: CableHV - components: - - pos: -36.5,77.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7815 - type: CableHV - components: - - pos: -36.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7816 - type: CableHV - components: - - pos: -35.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7817 - type: CableHV - components: - - pos: -34.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7818 - type: CableHV - components: - - pos: -33.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7819 - type: CableHV - components: - - pos: -32.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7820 - type: CableHV - components: - - pos: -31.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7821 - type: CableHV - components: - - pos: -30.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7822 - type: CableHV - components: - - pos: -29.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7823 - type: CableHV - components: - - pos: -29.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7824 - type: CableHV - components: - - pos: -30.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7825 - type: CableHV - components: - - pos: -31.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7826 - type: CableHV - components: - - pos: -32.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7827 - type: CableHV - components: - - pos: -33.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7828 - type: CableHV - components: - - pos: -34.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7829 - type: CableHV - components: - - pos: -35.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7830 - type: CableHV - components: - - pos: -37.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7831 - type: CableHV - components: - - pos: -39.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7832 - type: CableHV - components: - - pos: -39.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7833 - type: CableHV - components: - - pos: -37.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7834 - type: CableHV - components: - - pos: -36.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7835 - type: CableHV - components: - - pos: -36.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7836 - type: CableHV - components: - - pos: -40.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7837 - type: CableHV - components: - - pos: -40.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7838 - type: CableHV - components: - - pos: -40.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7839 - type: CableHV - components: - - pos: -41.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7840 - type: CableHV - components: - - pos: -42.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7841 - type: CableHV - components: - - pos: -43.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7842 - type: CableHV - components: - - pos: -44.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7843 - type: CableHV - components: - - pos: -45.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7844 - type: CableHV - components: - - pos: -46.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7845 - type: CableHV - components: - - pos: -47.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7846 - type: CableHV - components: - - pos: -40.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7847 - type: CableHV - components: - - pos: -41.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7848 - type: CableHV - components: - - pos: -42.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7849 - type: CableHV - components: - - pos: -43.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7850 - type: CableHV - components: - - pos: -44.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7851 - type: CableHV - components: - - pos: -45.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7852 - type: CableHV - components: - - pos: -46.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7853 - type: CableHV - components: - - pos: -47.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7854 - type: CableHV - components: - - pos: -36.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7855 - type: CableHV - components: - - pos: -35.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7856 - type: CableHV - components: - - pos: -34.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7857 - type: CableHV - components: - - pos: -33.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7858 - type: CableHV - components: - - pos: -32.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7859 - type: CableHV - components: - - pos: -31.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7860 - type: CableHV - components: - - pos: -30.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7861 - type: CableHV - components: - - pos: -29.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7862 - type: CableHV - components: - - pos: -36.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7863 - type: CableHV - components: - - pos: -35.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7864 - type: CableHV - components: - - pos: -34.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7865 - type: CableHV - components: - - pos: -33.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7866 - type: CableHV - components: - - pos: -32.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7867 - type: CableHV - components: - - pos: -31.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7868 - type: CableHV - components: - - pos: -30.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7869 - type: CableHV - components: - - pos: -29.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7870 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 1 - type: Transform -- uid: 7871 - type: CableHV - components: - - pos: -38.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7872 - type: CableHV - components: - - pos: -38.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7873 - type: CableHV - components: - - pos: -38.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7874 - type: CableHV - components: - - pos: -38.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7875 - type: CableHV - components: - - pos: -38.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7876 - type: AtmosFixBlockerMarker - components: - - pos: -1.5,-23.5 - parent: 1 - type: Transform -- uid: 7877 - type: AtmosFixBlockerMarker - components: - - pos: -0.5,-23.5 - parent: 1 - type: Transform -- uid: 7878 - type: AtmosFixBlockerMarker - components: - - pos: 0.5,-23.5 - parent: 1 - type: Transform -- uid: 7879 - type: AirlockGlass - components: - - pos: 33.5,15.5 - parent: 1 - type: Transform -- uid: 7880 - type: AirlockGlass - components: - - pos: 33.5,14.5 - parent: 1 - type: Transform -- uid: 7881 - type: AirlockGlass - components: - - pos: 33.5,13.5 - parent: 1 - type: Transform -- uid: 7882 - type: WallSolid - components: - - pos: -44.5,44.5 - parent: 1 - type: Transform -- uid: 7883 - type: CableHV - components: - - pos: -35.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7884 - type: Window - components: - - pos: -44.5,39.5 - parent: 1 - type: Transform -- uid: 7885 - type: WallSolid - components: - - pos: -42.5,44.5 - parent: 1 - type: Transform -- uid: 7886 - type: Grille - components: - - pos: -47.5,39.5 - parent: 1 - type: Transform -- uid: 7887 - type: Grille - components: - - pos: -41.5,45.5 - parent: 1 - type: Transform -- uid: 7888 - type: Rack - components: - - pos: 41.5,42.5 - parent: 1 - type: Transform -- uid: 7889 - type: TableReinforced - components: - - pos: 44.5,44.5 - parent: 1 - type: Transform -- uid: 7890 - type: ComputerCriminalRecords - components: - - rot: 1.5707963267948966 rad - pos: 42.5,42.5 - parent: 1 - type: Transform -- uid: 7891 - type: AirlockGlass - components: - - pos: 33.5,38.5 - parent: 1 - type: Transform -- uid: 7892 - type: AirlockGlass - components: - - pos: 33.5,37.5 - parent: 1 - type: Transform -- uid: 7893 - type: AirlockGlass - components: - - pos: 33.5,36.5 - parent: 1 - type: Transform -- uid: 7894 - type: FirelockGlass - components: - - pos: -43.5,39.5 - parent: 1 - type: Transform -- uid: 7895 - type: FirelockGlass - components: - - pos: -42.5,39.5 - parent: 1 - type: Transform -- uid: 7896 - type: CableHV - components: - - pos: -34.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7897 - type: CableHV - components: - - pos: -30.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7898 - type: FirelockGlass - components: - - pos: -49.5,39.5 - parent: 1 - type: Transform -- uid: 7899 - type: FirelockGlass - components: - - pos: -48.5,39.5 - parent: 1 - type: Transform -- uid: 7900 - type: ComputerSurveillanceCameraMonitor - components: - - pos: 43.5,44.5 - parent: 1 - type: Transform -- uid: 7901 - type: WeaponCapacitorRecharger - components: - - rot: 1.5707963267948966 rad - pos: 44.5,44.5 - parent: 1 - type: Transform -- uid: 7902 - type: Grille - components: - - pos: -44.5,39.5 - parent: 1 - type: Transform -- uid: 7903 - type: CableHV - components: - - pos: -31.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7904 - type: CableHV - components: - - pos: -33.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7905 - type: CableHV - components: - - pos: -29.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7906 - type: CableHV - components: - - pos: -36.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7907 - type: CableHV - components: - - pos: -34.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7908 - type: CableHV - components: - - pos: -33.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7909 - type: CableHV - components: - - pos: -32.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7910 - type: CableHV - components: - - pos: -31.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7911 - type: CableHV - components: - - pos: -30.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7912 - type: CableHV - components: - - pos: -29.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7913 - type: SolarPanel - components: - - pos: -47.5,78.5 - parent: 1 - type: Transform -- uid: 7914 - type: SolarPanel - components: - - pos: -46.5,78.5 - parent: 1 - type: Transform -- uid: 7915 - type: SolarPanel - components: - - pos: -45.5,78.5 - parent: 1 - type: Transform -- uid: 7916 - type: SolarPanel - components: - - pos: -44.5,78.5 - parent: 1 - type: Transform -- uid: 7917 - type: SolarPanel - components: - - pos: -43.5,78.5 - parent: 1 - type: Transform -- uid: 7918 - type: SolarPanel - components: - - pos: -42.5,78.5 - parent: 1 - type: Transform -- uid: 7919 - type: SolarPanel - components: - - pos: -41.5,78.5 - parent: 1 - type: Transform -- uid: 7920 - type: SolarPanel - components: - - pos: -40.5,78.5 - parent: 1 - type: Transform -- uid: 7921 - type: SolarPanel - components: - - pos: -40.5,76.5 - parent: 1 - type: Transform -- uid: 7922 - type: SolarPanel - components: - - pos: -41.5,76.5 - parent: 1 - type: Transform -- uid: 7923 - type: SolarPanel - components: - - pos: -42.5,76.5 - parent: 1 - type: Transform -- uid: 7924 - type: SolarPanel - components: - - pos: -43.5,76.5 - parent: 1 - type: Transform -- uid: 7925 - type: SolarPanel - components: - - pos: -44.5,76.5 - parent: 1 - type: Transform -- uid: 7926 - type: SolarPanel - components: - - pos: -45.5,76.5 - parent: 1 - type: Transform -- uid: 7927 - type: SolarPanel - components: - - pos: -46.5,76.5 - parent: 1 - type: Transform -- uid: 7928 - type: SolarPanel - components: - - pos: -47.5,76.5 - parent: 1 - type: Transform -- uid: 7929 - type: SolarPanel - components: - - pos: -36.5,78.5 - parent: 1 - type: Transform -- uid: 7930 - type: SolarPanel - components: - - pos: -35.5,78.5 - parent: 1 - type: Transform -- uid: 7931 - type: SolarPanel - components: - - pos: -34.5,78.5 - parent: 1 - type: Transform -- uid: 7932 - type: SolarPanel - components: - - pos: -33.5,78.5 - parent: 1 - type: Transform -- uid: 7933 - type: SolarPanel - components: - - pos: -32.5,78.5 - parent: 1 - type: Transform -- uid: 7934 - type: SolarPanel - components: - - pos: -31.5,78.5 - parent: 1 - type: Transform -- uid: 7935 - type: SolarPanel - components: - - pos: -30.5,78.5 - parent: 1 - type: Transform -- uid: 7936 - type: SolarPanel - components: - - pos: -29.5,78.5 - parent: 1 - type: Transform -- uid: 7937 - type: SolarPanel - components: - - pos: -36.5,76.5 - parent: 1 - type: Transform -- uid: 7938 - type: SolarPanel - components: - - pos: -35.5,76.5 - parent: 1 - type: Transform -- uid: 7939 - type: SolarPanel - components: - - pos: -34.5,76.5 - parent: 1 - type: Transform -- uid: 7940 - type: SolarPanel - components: - - pos: -33.5,76.5 - parent: 1 - type: Transform -- uid: 7941 - type: SolarPanel - components: - - pos: -32.5,76.5 - parent: 1 - type: Transform -- uid: 7942 - type: SolarPanel - components: - - pos: -31.5,76.5 - parent: 1 - type: Transform -- uid: 7943 - type: SolarPanel - components: - - pos: -30.5,76.5 - parent: 1 - type: Transform -- uid: 7944 - type: SolarPanel - components: - - pos: -29.5,76.5 - parent: 1 - type: Transform -- uid: 7945 - type: SolarPanel - components: - - pos: -36.5,74.5 - parent: 1 - type: Transform -- uid: 7946 - type: SolarPanel - components: - - pos: -35.5,74.5 - parent: 1 - type: Transform -- uid: 7947 - type: SolarPanel - components: - - pos: -34.5,74.5 - parent: 1 - type: Transform -- uid: 7948 - type: SolarPanel - components: - - pos: -33.5,74.5 - parent: 1 - type: Transform -- uid: 7949 - type: SolarPanel - components: - - pos: -32.5,74.5 - parent: 1 - type: Transform -- uid: 7950 - type: SolarPanel - components: - - pos: -31.5,74.5 - parent: 1 - type: Transform -- uid: 7951 - type: SolarPanel - components: - - pos: -30.5,74.5 - parent: 1 - type: Transform -- uid: 7952 - type: SolarPanel - components: - - pos: -29.5,74.5 - parent: 1 - type: Transform -- uid: 7953 - type: SolarPanel - components: - - pos: -36.5,72.5 - parent: 1 - type: Transform -- uid: 7954 - type: SolarPanel - components: - - pos: -35.5,72.5 - parent: 1 - type: Transform -- uid: 7955 - type: SolarPanel - components: - - pos: -34.5,72.5 - parent: 1 - type: Transform -- uid: 7956 - type: SolarPanel - components: - - pos: -33.5,72.5 - parent: 1 - type: Transform -- uid: 7957 - type: SolarPanel - components: - - pos: -32.5,72.5 - parent: 1 - type: Transform -- uid: 7958 - type: SolarPanel - components: - - pos: -31.5,72.5 - parent: 1 - type: Transform -- uid: 7959 - type: SolarPanel - components: - - pos: -30.5,72.5 - parent: 1 - type: Transform -- uid: 7960 - type: SolarPanel - components: - - pos: -29.5,72.5 - parent: 1 - type: Transform -- uid: 7961 - type: SolarPanel - components: - - pos: -36.5,70.5 - parent: 1 - type: Transform -- uid: 7962 - type: SolarPanel - components: - - pos: -35.5,70.5 - parent: 1 - type: Transform -- uid: 7963 - type: SolarPanel - components: - - pos: -34.5,70.5 - parent: 1 - type: Transform -- uid: 7964 - type: SolarPanel - components: - - pos: -33.5,70.5 - parent: 1 - type: Transform -- uid: 7965 - type: SolarPanel - components: - - pos: -32.5,70.5 - parent: 1 - type: Transform -- uid: 7966 - type: SolarPanel - components: - - pos: -31.5,70.5 - parent: 1 - type: Transform -- uid: 7967 - type: SolarPanel - components: - - pos: -30.5,70.5 - parent: 1 - type: Transform -- uid: 7968 - type: SolarPanel - components: - - pos: -29.5,70.5 - parent: 1 - type: Transform -- uid: 7969 - type: SolarPanel - components: - - pos: -36.5,68.5 - parent: 1 - type: Transform -- uid: 7970 - type: SolarPanel - components: - - pos: -35.5,68.5 - parent: 1 - type: Transform -- uid: 7971 - type: SolarPanel - components: - - pos: -34.5,68.5 - parent: 1 - type: Transform -- uid: 7972 - type: SolarPanel - components: - - pos: -33.5,68.5 - parent: 1 - type: Transform -- uid: 7973 - type: SolarPanel - components: - - pos: -32.5,68.5 - parent: 1 - type: Transform -- uid: 7974 - type: SolarPanel - components: - - pos: -31.5,68.5 - parent: 1 - type: Transform -- uid: 7975 - type: SolarPanel - components: - - pos: -30.5,68.5 - parent: 1 - type: Transform -- uid: 7976 - type: SolarPanel - components: - - pos: -29.5,68.5 - parent: 1 - type: Transform -- uid: 7977 - type: SolarPanel - components: - - pos: -41.5,68.5 - parent: 1 - type: Transform -- uid: 7978 - type: SolarPanel - components: - - pos: -40.5,68.5 - parent: 1 - type: Transform -- uid: 7979 - type: SolarPanel - components: - - pos: -42.5,68.5 - parent: 1 - type: Transform -- uid: 7980 - type: SolarPanel - components: - - pos: -43.5,68.5 - parent: 1 - type: Transform -- uid: 7981 - type: SolarPanel - components: - - pos: -44.5,68.5 - parent: 1 - type: Transform -- uid: 7982 - type: SolarPanel - components: - - pos: -45.5,68.5 - parent: 1 - type: Transform -- uid: 7983 - type: SolarPanel - components: - - pos: -46.5,68.5 - parent: 1 - type: Transform -- uid: 7984 - type: SolarPanel - components: - - pos: -47.5,68.5 - parent: 1 - type: Transform -- uid: 7985 - type: SolarPanel - components: - - pos: -47.5,70.5 - parent: 1 - type: Transform -- uid: 7986 - type: SolarPanel - components: - - pos: -46.5,70.5 - parent: 1 - type: Transform -- uid: 7987 - type: SolarPanel - components: - - pos: -45.5,70.5 - parent: 1 - type: Transform -- uid: 7988 - type: SolarPanel - components: - - pos: -44.5,70.5 - parent: 1 - type: Transform -- uid: 7989 - type: SolarPanel - components: - - pos: -43.5,70.5 - parent: 1 - type: Transform -- uid: 7990 - type: SolarPanel - components: - - pos: -42.5,70.5 - parent: 1 - type: Transform -- uid: 7991 - type: SolarPanel - components: - - pos: -41.5,70.5 - parent: 1 - type: Transform -- uid: 7992 - type: SolarPanel - components: - - pos: -40.5,70.5 - parent: 1 - type: Transform -- uid: 7993 - type: SolarPanel - components: - - pos: -47.5,72.5 - parent: 1 - type: Transform -- uid: 7994 - type: SolarPanel - components: - - pos: -46.5,72.5 - parent: 1 - type: Transform -- uid: 7995 - type: SolarPanel - components: - - pos: -45.5,72.5 - parent: 1 - type: Transform -- uid: 7996 - type: SolarPanel - components: - - pos: -44.5,72.5 - parent: 1 - type: Transform -- uid: 7997 - type: SolarPanel - components: - - pos: -43.5,72.5 - parent: 1 - type: Transform -- uid: 7998 - type: SolarPanel - components: - - pos: -42.5,72.5 - parent: 1 - type: Transform -- uid: 7999 - type: SolarPanel - components: - - pos: -41.5,72.5 - parent: 1 - type: Transform -- uid: 8000 - type: SolarPanel - components: - - pos: -40.5,72.5 - parent: 1 - type: Transform -- uid: 8001 - type: SolarPanel - components: - - pos: -47.5,74.5 - parent: 1 - type: Transform -- uid: 8002 - type: SolarPanel - components: - - pos: -46.5,74.5 - parent: 1 - type: Transform -- uid: 8003 - type: SolarPanel - components: - - pos: -45.5,74.5 - parent: 1 - type: Transform -- uid: 8004 - type: SolarPanel - components: - - pos: -44.5,74.5 - parent: 1 - type: Transform -- uid: 8005 - type: SolarPanel - components: - - pos: -43.5,74.5 - parent: 1 - type: Transform -- uid: 8006 - type: SolarPanel - components: - - pos: -42.5,74.5 - parent: 1 - type: Transform -- uid: 8007 - type: SolarPanel - components: - - pos: -41.5,74.5 - parent: 1 - type: Transform -- uid: 8008 - type: SolarPanel - components: - - pos: -40.5,74.5 - parent: 1 - type: Transform -- uid: 8009 - type: SolarTracker - components: - - pos: -38.5,79.5 - parent: 1 - type: Transform -- uid: 8010 - type: ComputerSolarControl - components: - - rot: 1.5707963267948966 rad - pos: -39.5,54.5 - parent: 1 - type: Transform -- uid: 8011 - type: SMESBasic - components: - - pos: -39.5,55.5 - parent: 1 - type: Transform -- uid: 8012 - type: CableHV - components: - - pos: -25.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8013 - type: CableHV - components: - - pos: -26.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8014 - type: CableHV - components: - - pos: -27.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8015 - type: CableHV - components: - - pos: -27.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8016 - type: CableHV - components: - - pos: -27.5,55.5 - parent: 1 - type: Transform -- uid: 8017 - type: CableHV - components: - - pos: -27.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8018 - type: CableHV - components: - - pos: -27.5,53.5 - parent: 1 - type: Transform -- uid: 8019 - type: CableHV - components: - - pos: -27.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8020 - type: CableHV - components: - - pos: -28.5,52.5 - parent: 1 - type: Transform -- uid: 8021 - type: CableHV - components: - - pos: -29.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8022 - type: CableHV - components: - - pos: -30.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8023 - type: CableHV - components: - - pos: -31.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8024 - type: CableHV - components: - - pos: -32.5,52.5 - parent: 1 - type: Transform -- uid: 8025 - type: CableHV - components: - - pos: -33.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8026 - type: CableHV - components: - - pos: -34.5,52.5 - parent: 1 - type: Transform -- uid: 8027 - type: CableHV - components: - - pos: -35.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8028 - type: CableHV - components: - - pos: -36.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8029 - type: CableHV - components: - - pos: -37.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8030 - type: CableHV - components: - - pos: -38.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8031 - type: CableHV - components: - - pos: -39.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8032 - type: CableHV - components: - - pos: -40.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8033 - type: CableHV - components: - - pos: -40.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8034 - type: CableHV - components: - - pos: -41.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8035 - type: CableHV - components: - - pos: -42.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8036 - type: CableHV - components: - - pos: -43.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8037 - type: CableHV - components: - - pos: -43.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8038 - type: CableHV - components: - - pos: -43.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8039 - type: CableHV - components: - - pos: -43.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8040 - type: CableHV - components: - - pos: -43.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8041 - type: CableHV - components: - - pos: -43.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8042 - type: CableHV - components: - - pos: -43.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8043 - type: CableHV - components: - - pos: -43.5,44.5 - parent: 1 - type: Transform -- uid: 8044 - type: CableHV - components: - - pos: -43.5,43.5 - parent: 1 - type: Transform -- uid: 8045 - type: CableHV - components: - - pos: -43.5,42.5 - parent: 1 - type: Transform -- uid: 8046 - type: CableHV - components: - - pos: -43.5,41.5 - parent: 1 - type: Transform -- uid: 8047 - type: CableHV - components: - - pos: -43.5,40.5 - parent: 1 - type: Transform -- uid: 8048 - type: CableHV - components: - - pos: -43.5,39.5 - parent: 1 - type: Transform -- uid: 8049 - type: CableHV - components: - - pos: -43.5,38.5 - parent: 1 - type: Transform -- uid: 8050 - type: CableHV - components: - - pos: -43.5,37.5 - parent: 1 - type: Transform -- uid: 8051 - type: CableHV - components: - - pos: -43.5,36.5 - parent: 1 - type: Transform -- uid: 8052 - type: CableHV - components: - - pos: -42.5,36.5 - parent: 1 - type: Transform -- uid: 8053 - type: CableHV - components: - - pos: -41.5,36.5 - parent: 1 - type: Transform -- uid: 8054 - type: CableHV - components: - - pos: -40.5,36.5 - parent: 1 - type: Transform -- uid: 8055 - type: CableHV - components: - - pos: -39.5,36.5 - parent: 1 - type: Transform -- uid: 8056 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: -38.5,55.5 - parent: 1 - type: Transform -- uid: 8057 - type: CableHV - components: - - pos: -39.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8058 - type: CableHV - components: - - pos: -39.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8059 - type: CableHV - components: - - pos: -39.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8060 - type: ClosetFireFilled - components: - - pos: 7.5,76.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8061 - type: WeaponCapacitorRecharger - components: - - pos: 3.5,79.5 - parent: 1 - type: Transform -- uid: 8062 - type: PowerCellRecharger - components: - - pos: -7.5,80.5 - parent: 1 - type: Transform -- uid: 8063 - type: PaperBin5 - components: - - pos: -0.5,80.5 - parent: 1 - type: Transform -- uid: 8064 - type: RandomInstruments - components: - - pos: -8.5,76.5 - parent: 1 - type: Transform -- uid: 8065 - type: DisposalUnit - components: - - pos: -7.5,76.5 - parent: 1 - type: Transform -- uid: 8066 - type: ToolboxElectricalFilled - components: - - pos: 7.4163632,77.75221 - parent: 1 - type: Transform -- uid: 8067 - type: ToolboxMechanicalFilled - components: - - pos: 7.70034,77.49678 - parent: 1 - type: Transform -- uid: 8068 - type: ToolboxEmergencyFilled - components: - - pos: -3.4883027,83.51381 - parent: 1 - type: Transform -- uid: 8069 - type: HandheldHealthAnalyzer - components: - - pos: 6.4224486,80.533676 - parent: 1 - type: Transform -- uid: 8070 - type: GasAnalyzer - components: - - pos: -7.5491548,79.71059 - parent: 1 - type: Transform -- uid: 8071 - type: Handcuffs - components: - - pos: 3.5258956,80.448524 - parent: 1 - type: Transform -- uid: 8072 - type: Flash - components: - - pos: 3.497499,80.1647 - parent: 1 - type: Transform -- uid: 8073 - type: FoodBoxDonut - components: - - pos: -4.45382,80.533676 - parent: 1 - type: Transform -- uid: 8074 - type: DrinkFlask - components: - - pos: -4.482217,79.8525 - parent: 1 - type: Transform -- uid: 8075 - type: PaperCaptainsThoughts - components: - - pos: -6.441649,72.586655 - parent: 1 - type: Transform -- uid: 8076 - type: PaperCaptainsThoughts - components: - - pos: -6.32806,72.44474 - parent: 1 - type: Transform -- uid: 8077 - type: Multitool - components: - - pos: -3.4883027,82.77587 - parent: 1 - type: Transform -- uid: 8078 - type: BoxFolderBlue - components: - - pos: -0.5525799,82.65699 - parent: 1 - type: Transform -- uid: 8079 - type: BoxFolderWhite - components: - - pos: 2.6563458,82.571846 - parent: 1 - type: Transform -- uid: 8080 - type: BoxFolderBlack - components: - - pos: -0.32539943,82.85567 - parent: 1 - type: Transform -- uid: 8081 - type: ClothingEyesGlasses - components: - - pos: -0.46738756,83.39493 - parent: 1 - type: Transform -- uid: 8082 - type: ClothingEyesGlassesMeson - components: - - pos: -7.367997,79.81877 - parent: 1 - type: Transform -- uid: 8083 - type: RubberStampApproved - components: - - pos: 2.6653385,83.53684 - parent: 1 - type: Transform -- uid: 8084 - type: RubberStampDenied - components: - - pos: 2.4097614,83.2814 - parent: 1 - type: Transform -- uid: 8085 - type: MedkitAdvancedFilled - components: - - pos: 6.6862106,79.9808 - parent: 1 - type: Transform -- uid: 8086 - type: MedkitOxygenFilled - components: - - pos: 6.45903,79.668594 - parent: 1 - type: Transform -- uid: 8087 - type: DisposalUnit - components: - - pos: 2.5,70.5 - parent: 1 - type: Transform -- uid: 8088 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,74.5 - parent: 1 - type: Transform -- uid: 8089 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,78.5 - parent: 1 - type: Transform -- uid: 8090 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,73.5 - parent: 1 - type: Transform -- uid: 8091 - type: WaterCooler - components: - - pos: 2.5,72.5 - parent: 1 - type: Transform -- uid: 8092 - type: TableReinforcedGlass - components: - - pos: 2.5,71.5 - parent: 1 - type: Transform -- uid: 8093 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 3.5,73.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8094 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 3.5,72.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8095 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 3.5,71.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8096 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 4.5,70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8097 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 5.5,70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8098 - type: PhoneInstrument - components: - - pos: 5.4434214,72.491516 - parent: 1 - type: Transform -- uid: 8099 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 6.5,70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8100 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 7.5,73.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8101 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 7.5,72.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8102 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 7.5,71.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8103 - type: CigarGold - components: - - pos: 4.563099,71.78196 - parent: 1 - type: Transform -- uid: 8104 - type: BoxFolderYellow - components: - - pos: 4.5346994,73.39974 - parent: 1 - type: Transform -- uid: 8105 - type: BoxFolderGrey - components: - - pos: 6.4373384,71.640045 - parent: 1 - type: Transform -- uid: 8106 - type: CheapLighter - components: - - pos: 6.550927,72.406364 - parent: 1 - type: Transform -- uid: 8107 - type: SmokingPipe - components: - - pos: 6.465735,72.71857 - parent: 1 - type: Transform -- uid: 8108 - type: Pen - components: - - pos: 5.926182,71.5549 - parent: 1 - type: Transform -- uid: 8109 - type: PaperOffice - components: - - pos: 5.1594477,71.75358 - parent: 1 - type: Transform -- uid: 8110 - type: PaperOffice - components: - - pos: 5.528614,71.32784 - parent: 1 - type: Transform -- uid: 8111 - type: PaperOffice - components: - - pos: 6.4941316,73.59842 - parent: 1 - type: Transform -- uid: 8112 - type: PaperOffice - components: - - pos: 4.4211106,72.406364 - parent: 1 - type: Transform -- uid: 8113 - type: PaperOffice - components: - - pos: 5.6422024,63.981495 - parent: 1 - type: Transform -- uid: 8114 - type: PaperOffice - components: - - pos: 5.30143,63.58415 - parent: 1 - type: Transform -- uid: 8115 - type: GrilleBroken - components: - - pos: -51.5,48.5 - parent: 1 - type: Transform -- uid: 8116 - type: SpawnMobHamsterHamlet - components: - - pos: -3.5,79.5 - parent: 1 - type: Transform -- uid: 8117 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 12.5,55.5 - parent: 1 - type: Transform -- uid: 8118 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 7.5,55.5 - parent: 1 - type: Transform -- uid: 8119 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 13.5,56.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8120 - type: BriefcaseBrownFilled - components: - - pos: 13.062738,57.648205 - parent: 1 - type: Transform -- uid: 8121 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 9.5,56.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8122 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 8.5,56.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8123 - type: ChairPilotSeat - components: - - pos: 10.5,60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8124 - type: ChairPilotSeat - components: - - pos: 11.5,60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8125 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 8.5,55.5 - parent: 1 - type: Transform -- uid: 8126 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 9.5,55.5 - parent: 1 - type: Transform -- uid: 8127 - type: WindoorBrigLocked - components: - - rot: 3.141592653589793 rad - pos: 11.5,55.5 - parent: 1 - type: Transform -- uid: 8128 - type: WindoorBrigLocked - components: - - rot: 3.141592653589793 rad - pos: 10.5,55.5 - parent: 1 - type: Transform -- uid: 8129 - type: ClothingEyesGlasses - components: - - pos: 10.319884,59.595665 - parent: 1 - type: Transform -- uid: 8130 - type: ClothingHeadHatPwig - components: - - pos: 11.512583,59.624046 - parent: 1 - type: Transform -- uid: 8131 - type: ToyHonk - components: - - pos: 12.534896,59.680813 - parent: 1 - type: Transform -- uid: 8132 - type: RandomSoap - components: - - pos: -7.5,70.5 - parent: 1 - type: Transform -- uid: 8133 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -5.5,53.5 - parent: 1 - type: Transform -- uid: 8134 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -5.5,54.5 - parent: 1 - type: Transform -- uid: 8135 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 3.141592653589793 rad - pos: -5.5,52.5 - parent: 1 - type: Transform -- uid: 8136 - type: ComputerCriminalRecords - components: - - pos: -5.5,55.5 - parent: 1 - type: Transform -- uid: 8137 - type: TableReinforced - components: - - pos: -6.5,52.5 - parent: 1 - type: Transform -- uid: 8138 - type: WeaponCapacitorRecharger - components: - - pos: -6.5,52.5 - parent: 1 - type: Transform -- uid: 8139 - type: LockerEvidence - components: - - pos: -5.284855,57.41589 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8140 - type: WeaponShotgunKammerer - components: - - pos: -9.655828,62.691998 - parent: 1 - type: Transform -- uid: 8141 - type: WeaponShotgunKammerer - components: - - pos: -9.457045,62.521706 - parent: 1 - type: Transform -- uid: 8142 - type: WeaponShotgunKammerer - components: - - pos: -9.542236,62.32303 - parent: 1 - type: Transform -- uid: 8143 - type: MagazineRifle - components: - - pos: -4.213656,63.69002 - parent: 1 - type: Transform -- uid: 8144 - type: MagazineRifleRubber - components: - - pos: -4.29699,63.544186 - parent: 1 - type: Transform -- uid: 8145 - type: BoxShotgunIncendiary - components: - - pos: -4.3170853,62.748764 - parent: 1 - type: Transform -- uid: 8146 - type: BoxLethalshot - components: - - pos: -4.4590735,62.46494 - parent: 1 - type: Transform -- uid: 8147 - type: WeaponLaserCarbinePractice - components: - - pos: -10.327259,49.585735 - parent: 1 - type: Transform -- uid: 8148 - type: BoxShellTranquilizer - components: - - pos: -4.3140907,62.40508 - parent: 1 - type: Transform -- uid: 8149 - type: ClothingUniformJumpsuitDetective - components: - - pos: 21.540764,58.502357 - parent: 1 - type: Transform -- uid: 8150 - type: ClothingUniformJumpsuitSecBlue - components: - - pos: 21.707432,58.689857 - parent: 1 - type: Transform -- uid: 8151 - type: WeaponRifleLecter - components: - - pos: -9.536592,63.549747 - parent: 1 - type: Transform -- uid: 8152 - type: WeaponRifleLecter - components: - - pos: -9.6407585,63.737247 - parent: 1 - type: Transform -- uid: 8153 - type: WeaponLaserCarbine - components: - - pos: -9.734234,64.83081 - parent: 1 - type: Transform -- uid: 8154 - type: WeaponLaserCarbine - components: - - pos: -9.592246,64.66052 - parent: 1 - type: Transform -- uid: 8155 - type: WeaponLaserCarbine - components: - - pos: -9.592246,64.3767 - parent: 1 - type: Transform -- uid: 8156 - type: WeaponPistolMk58 - components: - - pos: -4.5658765,64.80243 - parent: 1 - type: Transform -- uid: 8157 - type: WeaponPistolMk58 - components: - - pos: -4.398214,64.60376 - parent: 1 - type: Transform -- uid: 8158 - type: WeaponPistolMk58 - components: - - pos: -4.225107,64.461845 - parent: 1 - type: Transform -- uid: 8159 - type: MagazineBoxPistol - components: - - pos: -4.5401993,64.63214 - parent: 1 - type: Transform -- uid: 8160 - type: MagazineBoxPistolRubber - components: - - pos: -4.2562256,64.60376 - parent: 1 - type: Transform -- uid: 8161 - type: ClothingOuterHardsuitSecurity - components: - - pos: -4.5935507,61.476887 - parent: 1 - type: Transform -- uid: 8162 - type: ClothingOuterHardsuitSecurity - components: - - pos: -4.5935507,60.54027 - parent: 1 - type: Transform -- uid: 8163 - type: ClothingOuterHardsuitSecurity - components: - - pos: -4.565154,59.518513 - parent: 1 - type: Transform -- uid: 8164 - type: JetpackSecurityFilled - components: - - pos: -4.36637,61.53365 - parent: 1 - type: Transform -- uid: 8165 - type: JetpackSecurityFilled - components: - - pos: -4.3379736,60.568657 - parent: 1 - type: Transform -- uid: 8166 - type: JetpackSecurityFilled - components: - - pos: -4.3095746,59.518513 - parent: 1 - type: Transform -- uid: 8167 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,60.5 - parent: 1 - type: Transform -- uid: 8168 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -4.5,60.5 - parent: 1 - type: Transform -- uid: 8169 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -4.5,59.5 - parent: 1 - type: Transform -- uid: 8170 - type: ClosetBombFilled - components: - - pos: -5.2650685,56.347507 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.4919806 - - 13.136498 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8171 - type: LockerSecurityFilled - components: - - pos: -19.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8172 - type: LockerSecurityFilled - components: - - pos: -18.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8173 - type: LockerSecurityFilled - components: - - pos: -15.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8174 - type: LockerSecurityFilled - components: - - pos: -16.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8175 - type: VendingMachineSecDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,40.5 - parent: 1 - type: Transform -- uid: 8176 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -18.5,40.5 - parent: 1 - type: Transform -- uid: 8177 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -17.5,40.5 - parent: 1 - type: Transform -- uid: 8178 - type: ClosetBombFilled - components: - - pos: -15.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8179 - type: ClosetL3SecurityFilled - components: - - pos: -16.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8180 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: -19.5,51.5 - parent: 1 - type: Transform -- uid: 8181 - type: ComputerSurveillanceCameraMonitor - components: - - pos: -14.5,56.5 - parent: 1 - type: Transform -- uid: 8182 - type: PowerCellRecharger - components: - - pos: -18.5,53.5 - parent: 1 - type: Transform -- uid: 8183 - type: WeaponCapacitorRecharger - components: - - pos: -13.5,56.5 - parent: 1 - type: Transform -- uid: 8184 - type: FlashlightSeclite - components: - - pos: -16.611473,49.69518 - parent: 1 - type: Transform -- uid: 8185 - type: WeaponDisabler - components: - - pos: -18.236473,40.361847 - parent: 1 - type: Transform -- uid: 8186 - type: WeaponDisablerPractice - components: - - pos: -10.325895,49.179844 - parent: 1 - type: Transform -- uid: 8187 - type: Stunbaton - components: - - pos: -18.632307,40.44518 - parent: 1 - type: Transform -- uid: 8188 - type: Stunbaton - components: - - pos: -18.694807,40.653515 - parent: 1 - type: Transform -- uid: 8189 - type: FlashlightSeclite - components: - - pos: -16.444807,50.07018 - parent: 1 - type: Transform -- uid: 8190 - type: FlashlightSeclite - components: - - pos: -17.624071,40.49489 - parent: 1 - type: Transform -- uid: 8191 - type: FlashlightSeclite - components: - - pos: -17.42529,40.80709 - parent: 1 - type: Transform -- uid: 8192 - type: WeaponDisabler - components: - - pos: -18.132307,40.57018 - parent: 1 - type: Transform -- uid: 8193 - type: WeaponDisabler - components: - - pos: -18.048973,40.75768 - parent: 1 - type: Transform -- uid: 8194 - type: BoxZiptie - components: - - pos: -16.340641,49.341015 - parent: 1 - type: Transform -- uid: 8195 - type: Bola - components: - - pos: -16.57336,48.668964 - parent: 1 - type: Transform -- uid: 8196 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: -13.5,47.5 - parent: 1 - type: Transform -- uid: 8197 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: -12.5,47.5 - parent: 1 - type: Transform -- uid: 8198 - type: WindoorArmoryLocked - components: - - rot: -1.5707963267948966 rad - pos: -10.5,48.5 - parent: 1 - type: Transform -- uid: 8199 - type: WindoorArmoryLocked - components: - - rot: -1.5707963267948966 rad - pos: -10.5,49.5 - parent: 1 - type: Transform -- uid: 8200 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -4.5,53.5 - parent: 1 - type: Transform -- uid: 8201 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -4.5,54.5 - parent: 1 - type: Transform -- uid: 8202 - type: AirlockBrigLocked - components: - - rot: -1.5707963267948966 rad - pos: -20.5,48.5 - parent: 1 - type: Transform -- uid: 8203 - type: AirlockBrigLocked - components: - - rot: -1.5707963267948966 rad - pos: -20.5,47.5 - parent: 1 - type: Transform -- uid: 8204 - type: AirlockBrigGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -2.5,50.5 - parent: 1 - type: Transform -- uid: 8205 - type: AirlockBrigGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -2.5,48.5 - parent: 1 - type: Transform -- uid: 8206 - type: AirlockBrigGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -5.5,48.5 - parent: 1 - type: Transform -- uid: 8207 - type: AirlockBrigGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -5.5,50.5 - parent: 1 - type: Transform -- uid: 8208 - type: AirlockArmoryLocked - components: - - rot: -1.5707963267948966 rad - pos: -12.5,51.5 - parent: 1 - type: Transform -- uid: 8209 - type: AirlockSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -23.5,47.5 - parent: 1 - type: Transform -- uid: 8210 - type: AirlockSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -23.5,48.5 - parent: 1 - type: Transform -- uid: 8211 - type: AirlockSecurityGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -26.5,47.5 - parent: 1 - type: Transform -- uid: 8212 - type: AirlockSecurityGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -26.5,48.5 - parent: 1 - type: Transform -- uid: 8213 - type: AirlockMaintSecLocked - components: - - rot: -1.5707963267948966 rad - pos: -17.5,55.5 - parent: 1 - type: Transform -- uid: 8214 - type: AirlockSecurityGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -17.5,43.5 - parent: 1 - type: Transform -- uid: 8215 - type: AirlockSecurityGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -12.5,43.5 - parent: 1 - type: Transform -- uid: 8216 - type: AirlockSecurityGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -9.5,43.5 - parent: 1 - type: Transform -- uid: 8217 - type: AirlockSecurityGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -6.5,43.5 - parent: 1 - type: Transform -- uid: 8218 - type: AirlockSecurityGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -3.5,43.5 - parent: 1 - type: Transform -- uid: 8219 - type: AirlockSecurityGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -7.5,55.5 - parent: 1 - type: Transform -- uid: 8220 - type: AirlockHeadOfSecurityGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -12.5,59.5 - parent: 1 - type: Transform -- uid: 8221 - type: WardrobePrisonFilled - components: - - pos: -13.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8222 - type: WardrobePrisonFilled - components: - - pos: -10.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8223 - type: WardrobePrisonFilled - components: - - pos: -7.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8224 - type: WardrobePrisonFilled - components: - - pos: -4.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8225 - type: SignPrison - components: - - rot: -1.5707963267948966 rad - pos: -20.5,49.5 - parent: 1 - type: Transform -- uid: 8226 - type: SignPrison - components: - - rot: -1.5707963267948966 rad - pos: -23.5,49.5 - parent: 1 - type: Transform -- uid: 8227 - type: SignPrison - components: - - rot: -1.5707963267948966 rad - pos: -33.5,41.5 - parent: 1 - type: Transform -- uid: 8228 - type: SignDirectionalBrig - components: - - rot: -1.5707963267948966 rad - pos: -20.5,46.5 - parent: 1 - type: Transform -- uid: 8229 - type: SignDirectionalBrig - components: - - rot: -1.5707963267948966 rad - pos: -23.5,46.5 - parent: 1 - type: Transform -- uid: 8230 - type: FaxMachineBase - components: - - pos: -19.5,53.5 - parent: 1 - type: Transform - - name: Security - type: FaxMachine -- uid: 8231 - type: LampGold - components: - - pos: -12.7610655,56.80089 - parent: 1 - type: Transform -- uid: 8232 - type: BoxFolderRed - components: - - pos: -19.604881,52.742233 - parent: 1 - type: Transform -- uid: 8233 - type: BoxFolderRed - components: - - pos: -12.278308,55.864277 - parent: 1 - type: Transform -- uid: 8234 - type: PaperOffice - components: - - pos: -19.304815,52.96929 - parent: 1 - type: Transform -- uid: 8235 - type: PaperOffice - components: - - pos: -19.333212,52.51518 - parent: 1 - type: Transform -- uid: 8236 - type: PaperOffice - components: - - pos: -12.631387,56.034573 - parent: 1 - type: Transform -- uid: 8237 - type: PaperOffice - components: - - pos: -12.489398,55.438545 - parent: 1 - type: Transform -- uid: 8238 - type: BedsheetOrange - components: - - pos: -13.5,40.5 - parent: 1 - type: Transform -- uid: 8239 - type: BedsheetOrange - components: - - pos: -10.5,40.5 - parent: 1 - type: Transform -- uid: 8240 - type: BedsheetOrange - components: - - pos: -7.5,40.5 - parent: 1 - type: Transform -- uid: 8241 - type: BedsheetOrange - components: - - pos: -4.5,40.5 - parent: 1 - type: Transform -- uid: 8242 - type: SpawnVehicleSecway - components: - - pos: -15.5,52.5 - parent: 1 - type: Transform -- uid: 8243 - type: SpawnVehicleSecway - components: - - pos: -14.5,52.5 - parent: 1 - type: Transform -- uid: 8244 - type: VehicleKeySecway - components: - - pos: -14.194751,50.769012 - parent: 1 - type: Transform -- uid: 8245 - type: VehicleKeySecway - components: - - pos: -14.257251,50.612762 - parent: 1 - type: Transform -- uid: 8246 - type: BoxFolderRed - components: - - pos: -13.392934,47.51383 - parent: 1 - type: Transform -- uid: 8247 - type: ClothingEyesGlassesSecurity - components: - - pos: -12.668796,47.542213 - parent: 1 - type: Transform -- uid: 8248 - type: Pen - components: - - pos: -13.293542,47.371918 - parent: 1 - type: Transform -- uid: 8249 - type: ClosetEmergencyFilledRandom - components: - - pos: -27.5,49.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8250 - type: Rack - components: - - pos: -28.5,49.5 - parent: 1 - type: Transform -- uid: 8251 - type: ClothingOuterHardsuitEVAPrisoner - components: - - pos: -28.683924,49.803032 - parent: 1 - type: Transform -- uid: 8252 - type: ClothingOuterHardsuitEVAPrisoner - components: - - pos: -28.48514,49.66112 - parent: 1 - type: Transform -- uid: 8253 - type: ClothingHeadHelmetEVA - components: - - pos: -28.513538,49.76046 - parent: 1 - type: Transform -- uid: 8254 - type: ClothingHeadHelmetEVA - components: - - pos: -28.343153,49.561783 - parent: 1 - type: Transform -- uid: 8255 - type: AirlockSecurityGlass - components: - - pos: -29.5,47.5 - parent: 1 - type: Transform -- uid: 8256 - type: AirlockSecurityGlass - components: - - pos: -29.5,48.5 - parent: 1 - type: Transform -- uid: 8257 - type: RandomInstruments - components: - - pos: -29.5,43.5 - parent: 1 - type: Transform -- uid: 8258 - type: AirlockSecurityGlass - components: - - pos: -36.5,45.5 - parent: 1 - type: Transform -- uid: 8259 - type: AirlockSecurityGlass - components: - - pos: -36.5,43.5 - parent: 1 - type: Transform -- uid: 8260 - type: BedsheetSpawner - components: - - pos: -38.5,42.5 - parent: 1 - type: Transform -- uid: 8261 - type: Basketball - components: - - pos: -38.63891,43.594166 - parent: 1 - type: Transform -- uid: 8262 - type: WardrobePrisonFilled - components: - - pos: -37.5,46.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8263 - type: Airlock - components: - - pos: -36.5,48.5 - parent: 1 - type: Transform -- uid: 8264 - type: ScalpelShiv - components: - - pos: -37.431377,49.512848 - parent: 1 - type: Transform -- uid: 8265 - type: RandomSoap - components: - - pos: -38.5,49.5 - parent: 1 - type: Transform -- uid: 8266 - type: FoodPlate - components: - - pos: -33.63939,49.881817 - parent: 1 - type: Transform -- uid: 8267 - type: FoodPlateSmall - components: - - pos: -33.667786,49.72571 - parent: 1 - type: Transform -- uid: 8268 - type: FoodBowlBig - components: - - pos: -33.667786,49.56961 - parent: 1 - type: Transform -- uid: 8269 - type: FoodBowlBig - components: - - pos: -33.41221,49.71152 - parent: 1 - type: Transform -- uid: 8270 - type: FoodPlateTin - components: - - pos: -33.327015,49.498657 - parent: 1 - type: Transform -- uid: 8271 - type: FoodPlateTin - components: - - pos: -33.142433,49.597996 - parent: 1 - type: Transform -- uid: 8272 - type: KnifePlastic - components: - - pos: -33.199226,49.54123 - parent: 1 - type: Transform -- uid: 8273 - type: FoodKebabSkewer - components: - - pos: -33.142433,49.626377 - parent: 1 - type: Transform -- uid: 8274 - type: HydroponicsToolMiniHoe - components: - - pos: -33.554195,46.106983 - parent: 1 - type: Transform -- uid: 8275 - type: HydroponicsToolSpade - components: - - pos: -33.497402,45.780586 - parent: 1 - type: Transform -- uid: 8276 - type: CannabisSeeds - components: - - pos: -38.424377,49.4277 - parent: 1 - type: Transform -- uid: 8277 - type: CornSeeds - components: - - pos: -29.621134,44.53177 - parent: 1 - type: Transform -- uid: 8278 - type: PineappleSeeds - components: - - pos: -29.408152,44.30471 - parent: 1 - type: Transform -- uid: 8279 - type: SmokingPipe - components: - - pos: -29.362019,44.061478 - parent: 1 - type: Transform -- uid: 8280 - type: Matchbox - components: - - pos: -28.99285,44.33111 - parent: 1 - type: Transform -- uid: 8281 - type: DrinkMug - components: - - pos: -28.63788,44.586548 - parent: 1 - type: Transform -- uid: 8282 - type: DrinkMug - components: - - pos: -28.353905,44.3453 - parent: 1 - type: Transform -- uid: 8283 - type: CrayonBox - components: - - pos: -28.997604,44.572357 - parent: 1 - type: Transform -- uid: 8284 - type: FaxMachineBase - components: - - pos: -28.5,43.5 - parent: 1 - type: Transform - - name: Perma - type: FaxMachine -- uid: 8285 - type: PaperOffice - components: - - pos: -28.742027,44.07567 - parent: 1 - type: Transform -- uid: 8286 - type: PaperOffice - components: - - pos: -28.869816,43.97633 - parent: 1 - type: Transform -- uid: 8287 - type: PaperOffice - components: - - pos: -29.0544,44.104053 - parent: 1 - type: Transform -- uid: 8288 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -30.5,44.5 - parent: 1 - type: Transform -- uid: 8289 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -30.5,43.5 - parent: 1 - type: Transform -- uid: 8290 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -27.5,44.5 - parent: 1 - type: Transform -- uid: 8291 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -27.5,43.5 - parent: 1 - type: Transform -- uid: 8292 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -31.5,44.5 - parent: 1 - type: Transform -- uid: 8293 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -31.5,45.5 - parent: 1 - type: Transform -- uid: 8294 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -31.5,46.5 - parent: 1 - type: Transform -- uid: 8295 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: -31.5,47.5 - parent: 1 - type: Transform -- uid: 8296 - type: Railing - components: - - pos: -32.5,47.5 - parent: 1 - type: Transform -- uid: 8297 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -32.5,43.5 - parent: 1 - type: Transform -- uid: 8298 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -34.5,43.5 - parent: 1 - type: Transform -- uid: 8299 - type: Railing - components: - - pos: -34.5,47.5 - parent: 1 - type: Transform -- uid: 8300 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -35.5,46.5 - parent: 1 - type: Transform -- uid: 8301 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: -35.5,47.5 - parent: 1 - type: Transform -- uid: 8302 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -35.5,45.5 - parent: 1 - type: Transform -- uid: 8303 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -35.5,44.5 - parent: 1 - type: Transform -- uid: 8304 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: -35.5,43.5 - parent: 1 - type: Transform -- uid: 8305 - type: RailingCornerSmall - components: - - pos: -31.5,43.5 - parent: 1 - type: Transform -- uid: 8306 - type: Football - components: - - pos: -38.624706,46.43239 - parent: 1 - type: Transform -- uid: 8307 - type: WardrobePrisonFilled - components: - - pos: -37.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8308 - type: AirlockMaintLocked - components: - - pos: -22.5,45.5 - parent: 1 - type: Transform -- uid: 8309 - type: AirlockMaintLocked - components: - - pos: -21.5,45.5 - parent: 1 - type: Transform -- uid: 8310 - type: AirlockMaintLocked - components: - - pos: -22.5,50.5 - parent: 1 - type: Transform -- uid: 8311 - type: AirlockMaintLocked - components: - - pos: -21.5,50.5 - parent: 1 - type: Transform -- uid: 8312 - type: AirlockMaintLocked - components: - - pos: -21.5,39.5 - parent: 1 - type: Transform -- uid: 8313 - type: AirlockMaintLocked - components: - - pos: -3.5,67.5 - parent: 1 - type: Transform -- uid: 8314 - type: AirlockMaintLocked - components: - - pos: 10.5,51.5 - parent: 1 - type: Transform -- uid: 8315 - type: AirlockMaintLocked - components: - - pos: 1.5,41.5 - parent: 1 - type: Transform -- uid: 8316 - type: AirlockMaintLocked - components: - - pos: 15.5,48.5 - parent: 1 - type: Transform -- uid: 8317 - type: AirlockMaintLocked - components: - - pos: 19.5,45.5 - parent: 1 - type: Transform -- uid: 8318 - type: AirlockMaintLocked - components: - - pos: 26.5,45.5 - parent: 1 - type: Transform -- uid: 8319 - type: AirlockMaintLocked - components: - - pos: 40.5,40.5 - parent: 1 - type: Transform -- uid: 8320 - type: AirlockMaintLocked - components: - - pos: 34.5,39.5 - parent: 1 - type: Transform -- uid: 8321 - type: AirlockMaintLocked - components: - - pos: 25.5,39.5 - parent: 1 - type: Transform -- uid: 8322 - type: AirlockMaintLocked - components: - - pos: -23.5,35.5 - parent: 1 - type: Transform -- uid: 8323 - type: AirlockMaintLocked - components: - - pos: -38.5,35.5 - parent: 1 - type: Transform -- uid: 8324 - type: AirlockMaintLocked - components: - - pos: -43.5,44.5 - parent: 1 - type: Transform -- uid: 8325 - type: AirlockMaintLocked - components: - - pos: 26.5,25.5 - parent: 1 - type: Transform -- uid: 8326 - type: AirlockMaintLocked - components: - - pos: 19.5,16.5 - parent: 1 - type: Transform -- uid: 8327 - type: AirlockMaintLocked - components: - - pos: 15.5,21.5 - parent: 1 - type: Transform -- uid: 8328 - type: AirlockMaintJanitorLocked - components: - - pos: 18.5,-2.5 - parent: 1 - type: Transform -- uid: 8329 - type: AirlockMaintLocked - components: - - pos: 14.5,-5.5 - parent: 1 - type: Transform -- uid: 8330 - type: AirlockMaintLocked - components: - - pos: 18.5,12.5 - parent: 1 - type: Transform -- uid: 8331 - type: AirlockMaintLocked - components: - - pos: 23.5,0.5 - parent: 1 - type: Transform -- uid: 8332 - type: AirlockMaintLocked - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform -- uid: 8333 - type: AirlockMaintLocked - components: - - pos: -29.5,1.5 - parent: 1 - type: Transform -- uid: 8334 - type: AirlockMaintLocked - components: - - pos: -15.5,12.5 - parent: 1 - type: Transform -- uid: 8335 - type: AirlockMaintLocked - components: - - pos: -21.5,7.5 - parent: 1 - type: Transform -- uid: 8336 - type: AirlockMaintLocked - components: - - pos: -34.5,-7.5 - parent: 1 - type: Transform -- uid: 8337 - type: AirlockMaintLocked - components: - - pos: -16.5,-20.5 - parent: 1 - type: Transform -- uid: 8338 - type: AirlockMaintLocked - components: - - pos: 24.5,-10.5 - parent: 1 - type: Transform -- uid: 8339 - type: AirlockMaintLocked - components: - - pos: 39.5,-10.5 - parent: 1 - type: Transform -- uid: 8341 - type: WallSolid - components: - - pos: 16.5,-38.5 - parent: 1 - type: Transform -- uid: 8343 - type: ChairOfficeDark - components: - - pos: -15.5,59.5 - parent: 1 - type: Transform -- uid: 8344 - type: BoxFolderRed - components: - - pos: -16.417713,58.622196 - parent: 1 - type: Transform -- uid: 8345 - type: Dresser - components: - - pos: -14.5,60.5 - parent: 1 - type: Transform -- uid: 8346 - type: PowerCellRecharger - components: - - pos: -26.5,29.5 - parent: 1 - type: Transform -- uid: 8347 - type: ClothingHeadHatWelding - components: - - pos: -28.660612,29.63867 - parent: 1 - type: Transform -- uid: 8348 - type: ToolboxElectricalFilled - components: - - pos: -28.01032,29.77007 - parent: 1 - type: Transform -- uid: 8349 - type: ToolboxEmergencyFilled - components: - - pos: -27.32878,29.77007 - parent: 1 - type: Transform -- uid: 8350 - type: ToolboxMechanicalFilled - components: - - pos: -27.882532,29.52882 - parent: 1 - type: Transform -- uid: 8351 - type: ToolboxArtistic - components: - - pos: -27.20099,29.52882 - parent: 1 - type: Transform -- uid: 8352 - type: GeigerCounter - components: - - pos: -28.472635,29.713726 - parent: 1 - type: Transform -- uid: 8353 - type: CarpetPink - components: - - pos: 42.5,51.5 - parent: 1 - type: Transform -- uid: 8354 - type: CarpetPink - components: - - pos: 43.5,51.5 - parent: 1 - type: Transform -- uid: 8355 - type: CarpetPink - components: - - pos: 43.5,50.5 - parent: 1 - type: Transform -- uid: 8356 - type: CarpetPink - components: - - pos: 42.5,50.5 - parent: 1 - type: Transform -- uid: 8357 - type: CarpetPink - components: - - pos: 41.5,50.5 - parent: 1 - type: Transform -- uid: 8358 - type: CarpetPink - components: - - pos: 41.5,51.5 - parent: 1 - type: Transform -- uid: 8359 - type: WallmountTelescreen - components: - - rot: -1.5707963267948966 rad - pos: 43.5,51.5 - parent: 1 - type: Transform -- uid: 8360 - type: HospitalCurtainsOpen - components: - - rot: -1.5707963267948966 rad - pos: 46.5,48.5 - parent: 1 - type: Transform -- uid: 8361 - type: BoxFolderRed - components: - - pos: 42.90648,50.630825 - parent: 1 - type: Transform -- uid: 8362 - type: DrinkRumBottleFull - components: - - pos: 43.673214,51.17009 - parent: 1 - type: Transform -- uid: 8363 - type: ChairOfficeDark - components: - - pos: 42.5,51.5 - parent: 1 - type: Transform -- uid: 8364 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8365 - type: MaintenanceWeaponSpawner - components: - - pos: 38.5,43.5 - parent: 1 - type: Transform -- uid: 8366 - type: PoweredSmallLight - components: - - pos: 25.5,58.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8367 - type: DrinkBottleWine - components: - - pos: 28.565235,49.837475 - parent: 1 - type: Transform -- uid: 8368 - type: DrinkWineGlass - components: - - pos: 28.820814,49.62461 - parent: 1 - type: Transform -- uid: 8369 - type: DrinkWineGlass - components: - - pos: 28.991198,49.88005 - parent: 1 - type: Transform -- uid: 8370 - type: FoodBreadPlain - components: - - pos: 33.378624,49.652992 - parent: 1 - type: Transform -- uid: 8371 - type: FoodBreadPlainSlice - components: - - pos: 32.38471,49.709755 - parent: 1 - type: Transform -- uid: 8372 - type: FoodBreadPlainSlice - components: - - pos: 32.526695,49.610416 - parent: 1 - type: Transform -- uid: 8373 - type: KnifePlastic - components: - - pos: 32.924263,49.596226 - parent: 1 - type: Transform -- uid: 8374 - type: BookRandom - components: - - pos: 29.490294,49.539463 - parent: 1 - type: Transform -- uid: 8375 - type: ChurchOrganInstrument - components: - - rot: 3.141592653589793 rad - pos: 34.5,49.5 - parent: 1 - type: Transform -- uid: 8376 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 34.5,48.5 - parent: 1 - type: Transform -- uid: 8377 - type: BookRandom - components: - - pos: 24.466179,53.695103 - parent: 1 - type: Transform -- uid: 8378 - type: ClothingOuterHoodieChaplain - components: - - pos: 24.56557,54.496185 - parent: 1 - type: Transform -- uid: 8379 - type: AirlockMaintChapelLocked - components: - - pos: 23.5,51.5 - parent: 1 - type: Transform -- uid: 8380 - type: AirlockChapelLocked - components: - - pos: 26.5,50.5 - parent: 1 - type: Transform -- uid: 8381 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8382 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8383 - type: PoweredSmallLight - components: - - pos: 25.5,54.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8384 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8385 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 28.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8386 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8387 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 33.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8388 - type: Airlock - components: - - rot: 1.5707963267948966 rad - pos: 13.5,42.5 - parent: 1 - type: Transform -- uid: 8389 - type: Airlock - components: - - rot: 1.5707963267948966 rad - pos: 13.5,44.5 - parent: 1 - type: Transform -- uid: 8390 - type: Airlock - components: - - rot: 1.5707963267948966 rad - pos: 16.5,45.5 - parent: 1 - type: Transform -- uid: 8391 - type: HospitalCurtainsOpen - components: - - rot: 1.5707963267948966 rad - pos: 11.5,40.5 - parent: 1 - type: Transform -- uid: 8392 - type: HospitalCurtainsOpen - components: - - rot: 1.5707963267948966 rad - pos: 11.5,46.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -463885.72 - state: Closing - type: Door -- uid: 8393 - type: HospitalCurtainsOpen - components: - - rot: 1.5707963267948966 rad - pos: 18.5,47.5 - parent: 1 - type: Transform -- uid: 8394 - type: CarpetPink - components: - - rot: 1.5707963267948966 rad - pos: 18.5,47.5 - parent: 1 - type: Transform -- uid: 8395 - type: CarpetPink - components: - - rot: 1.5707963267948966 rad - pos: 17.5,47.5 - parent: 1 - type: Transform -- uid: 8396 - type: WardrobePinkFilled - components: - - pos: 17.5,47.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8397 - type: SpawnPointAssistant - components: - - pos: 17.5,46.5 - parent: 1 - type: Transform -- uid: 8398 - type: PlushieSharkPink - components: - - pos: 18.47223,47.259647 - parent: 1 - type: Transform -- uid: 8399 - type: ClothingHeadPyjamaSyndicatePink - components: - - pos: 18.72468,47.52865 - parent: 1 - type: Transform -- uid: 8400 - type: CarpetBlack - components: - - pos: 11.5,46.5 - parent: 1 - type: Transform -- uid: 8401 - type: CarpetBlack - components: - - pos: 12.5,46.5 - parent: 1 - type: Transform -- uid: 8402 - type: Table - components: - - pos: 12.5,46.5 - parent: 1 - type: Transform -- uid: 8403 - type: CarpetBlack - components: - - pos: 12.5,45.5 - parent: 1 - type: Transform -- uid: 8404 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8405 - type: CarpetBlack - components: - - pos: 11.5,45.5 - parent: 1 - type: Transform -- uid: 8406 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8407 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8408 - type: Dresser - components: - - pos: 12.5,40.5 - parent: 1 - type: Transform -- uid: 8409 - type: Dresser - components: - - pos: 11.5,44.5 - parent: 1 - type: Transform -- uid: 8410 - type: TableWood - components: - - pos: 11.5,42.5 - parent: 1 - type: Transform -- uid: 8411 - type: RandomFoodBakedSingle - components: - - pos: 11.5,42.5 - parent: 1 - type: Transform -- uid: 8412 - type: RandomInstruments - components: - - pos: 12.5,46.5 - parent: 1 - type: Transform -- uid: 8413 - type: RandomPainting - components: - - rot: 3.141592653589793 rad - pos: 12.5,43.5 - parent: 1 - type: Transform -- uid: 8414 - type: RandomPainting - components: - - rot: 3.141592653589793 rad - pos: 19.5,47.5 - parent: 1 - type: Transform -- uid: 8415 - type: DisposalUnit - components: - - pos: -45.5,44.5 - parent: 1 - type: Transform -- uid: 8416 - type: ClosetFireFilled - components: - - pos: -46.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8417 - type: ClosetEmergencyFilledRandom - components: - - pos: -47.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8418 - type: RandomVending - components: - - pos: -48.5,44.5 - parent: 1 - type: Transform -- uid: 8419 - type: PowerCellRecharger - components: - - pos: -49.5,44.5 - parent: 1 - type: Transform -- uid: 8420 - type: TableGlass - components: - - pos: -49.5,44.5 - parent: 1 - type: Transform -- uid: 8421 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 18.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8422 - type: TableReinforcedGlass - components: - - rot: 3.141592653589793 rad - pos: 20.5,28.5 - parent: 1 - type: Transform -- uid: 8423 - type: TableReinforcedGlass - components: - - rot: 3.141592653589793 rad - pos: 20.5,27.5 - parent: 1 - type: Transform -- uid: 8424 - type: Sink - components: - - pos: 20.5,29.5 - parent: 1 - type: Transform -- uid: 8425 - type: FloorDrain - components: - - rot: 3.141592653589793 rad - pos: 15.5,28.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 8426 - type: TableReinforcedGlass - components: - - rot: 3.141592653589793 rad - pos: 20.5,26.5 - parent: 1 - type: Transform -- uid: 8427 - type: ClothingHandsGlovesLatex - components: - - pos: 21.532232,31.468046 - parent: 1 - type: Transform -- uid: 8428 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8429 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8430 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8431 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8432 - type: OperatingTable - components: - - pos: 19.5,27.5 - parent: 1 - type: Transform -- uid: 8433 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: 18.5,31.5 - parent: 1 - type: Transform -- uid: 8434 - type: TableReinforcedGlass - components: - - rot: 1.5707963267948966 rad - pos: 18.5,29.5 - parent: 1 - type: Transform -- uid: 8435 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: 21.5,31.5 - parent: 1 - type: Transform -- uid: 8436 - type: EncryptionKeyCommand - components: - - flags: InContainer - type: MetaData - - parent: 7316 - type: Transform - - canCollide: False - type: Physics -- uid: 8437 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 13.5,61.5 - parent: 1 - type: Transform -- uid: 8438 - type: filingCabinetTall - components: - - pos: 2.5,62.5 - parent: 1 - type: Transform -- uid: 8439 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 4.5,57.5 - parent: 1 - type: Transform -- uid: 8440 - type: WaterCooler - components: - - pos: 6.5,57.5 - parent: 1 - type: Transform -- uid: 8441 - type: TableGlass - components: - - pos: 5.5,57.5 - parent: 1 - type: Transform -- uid: 8442 - type: DrinkWaterCup - components: - - pos: 5.5438213,57.47714 - parent: 1 - type: Transform -- uid: 8443 - type: DrinkWaterCup - components: - - pos: 5.67161,57.67581 - parent: 1 - type: Transform -- uid: 8444 - type: DrinkMugMoebius - components: - - pos: 5.3876348,57.690006 - parent: 1 - type: Transform -- uid: 8445 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 1 - type: Transform -- uid: 8446 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 1.5,52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8447 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 2.5,52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8448 - type: Chair - components: - - pos: 1.5,57.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8449 - type: Chair - components: - - pos: 2.5,57.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8450 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -3.5,52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8451 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -2.5,52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8452 - type: PottedPlantRandomPlastic - components: - - pos: -2.5,57.5 - parent: 1 - type: Transform -- uid: 8453 - type: DisposalUnit - components: - - pos: -3.5,57.5 - parent: 1 - type: Transform -- uid: 8454 - type: DisposalUnit - components: - - pos: -2.5,68.5 - parent: 1 - type: Transform -- uid: 8455 - type: Chair - components: - - pos: 10.5,70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8456 - type: Chair - components: - - pos: 11.5,70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8457 - type: RandomVending - components: - - pos: 9.5,70.5 - parent: 1 - type: Transform -- uid: 8458 - type: TableGlass - components: - - pos: 12.5,70.5 - parent: 1 - type: Transform -- uid: 8459 - type: CigarGold - components: - - pos: 12.343604,70.664085 - parent: 1 - type: Transform -- uid: 8460 - type: CheapLighter - components: - - pos: 12.457194,70.49379 - parent: 1 - type: Transform -- uid: 8461 - type: MaintenanceFluffSpawner - components: - - pos: 11.5,70.5 - parent: 1 - type: Transform -- uid: 8462 - type: ClosetEmergencyFilledRandom - components: - - pos: 12.5,66.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8463 - type: ClosetFireFilled - components: - - pos: 11.5,66.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8464 - type: PottedPlantRandomPlastic - components: - - pos: 2.5,55.5 - parent: 1 - type: Transform -- uid: 8465 - type: PottedPlantRandomPlastic - components: - - pos: 2.5,54.5 - parent: 1 - type: Transform -- uid: 8466 - type: AirlockGlass - components: - - pos: 3.5,53.5 - parent: 1 - type: Transform -- uid: 8467 - type: AirlockGlass - components: - - pos: 3.5,56.5 - parent: 1 - type: Transform -- uid: 8468 - type: WallSolid - components: - - pos: 15.5,59.5 - parent: 1 - type: Transform -- uid: 8469 - type: AirlockBrigGlassLocked - components: - - pos: 1.5,63.5 - parent: 1 - type: Transform -- uid: 8470 - type: AirlockBrigLocked - components: - - pos: 6.5,60.5 - parent: 1 - type: Transform -- uid: 8471 - type: RandomInstruments - components: - - pos: 19.5,40.5 - parent: 1 - type: Transform -- uid: 8472 - type: CrayonBox - components: - - pos: 20.349487,40.573277 - parent: 1 - type: Transform -- uid: 8473 - type: CrayonPurple - components: - - pos: 20.718657,40.559086 - parent: 1 - type: Transform -- uid: 8474 - type: PaperOffice - components: - - pos: 20.335289,40.984818 - parent: 1 - type: Transform -- uid: 8475 - type: PaperOffice - components: - - pos: 20.56247,40.857098 - parent: 1 - type: Transform -- uid: 8476 - type: PaperOffice - components: - - pos: 20.732855,40.89967 - parent: 1 - type: Transform -- uid: 8477 - type: ChemBag - components: - - pos: 2.3789887,23.736757 - parent: 1 - type: Transform -- uid: 8478 - type: PlushieAtmosian - components: - - pos: -13.428453,-23.76954 - parent: 1 - type: Transform -- uid: 8479 - type: HospitalCurtainsOpen - components: - - pos: 14.5,34.5 - parent: 1 - type: Transform -- uid: 8480 - type: TableReinforcedGlass - components: - - pos: 16.5,32.5 - parent: 1 - type: Transform -- uid: 8481 - type: TableReinforcedGlass - components: - - pos: 16.5,33.5 - parent: 1 - type: Transform -- uid: 8482 - type: TableReinforcedGlass - components: - - pos: 15.5,32.5 - parent: 1 - type: Transform -- uid: 8483 - type: ChairOfficeLight - components: - - pos: 15.5,33.5 - parent: 1 - type: Transform -- uid: 8484 - type: CarpetSBlue - components: - - pos: 15.5,32.5 - parent: 1 - type: Transform -- uid: 8485 - type: CarpetSBlue - components: - - pos: 15.5,33.5 - parent: 1 - type: Transform -- uid: 8486 - type: CarpetSBlue - components: - - pos: 16.5,33.5 - parent: 1 - type: Transform -- uid: 8487 - type: CarpetSBlue - components: - - pos: 16.5,32.5 - parent: 1 - type: Transform -- uid: 8488 - type: CrewMonitoringServer - components: - - pos: 16.5,31.5 - parent: 1 - type: Transform -- uid: 8489 - type: DrinkDoctorsDelightGlass - components: - - pos: 16.144281,32.546616 - parent: 1 - type: Transform -- uid: 8490 - type: HandheldCrewMonitor - components: - - pos: 16.562784,32.85037 - parent: 1 - type: Transform -- uid: 8491 - type: ClothingNeckStethoscope - components: - - pos: 16.445831,32.692505 - parent: 1 - type: Transform -- uid: 8492 - type: ClothingEyesGlasses - components: - - pos: 15.420103,32.434727 - parent: 1 - type: Transform -- uid: 8493 - type: BoxFolderWhite - components: - - pos: 15.860265,32.633404 - parent: 1 - type: Transform -- uid: 8494 - type: PaperOffice - components: - - pos: 15.377507,32.661785 - parent: 1 - type: Transform -- uid: 8495 - type: PaperOffice - components: - - pos: 15.56209,32.61921 - parent: 1 - type: Transform -- uid: 8496 - type: Dresser - components: - - pos: 15.5,34.5 - parent: 1 - type: Transform -- uid: 8497 - type: ShuttersNormalOpen - components: - - pos: 14.5,35.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8571 - type: SignalReceiver -- uid: 8498 - type: ShuttersNormalOpen - components: - - pos: 15.5,35.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8571 - type: SignalReceiver -- uid: 8499 - type: ShuttersNormalOpen - components: - - pos: 16.5,35.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8571 - type: SignalReceiver -- uid: 8500 - type: ShuttersNormalOpen - components: - - pos: 13.5,32.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8571 - type: SignalReceiver -- uid: 8501 - type: ShuttersNormalOpen - components: - - pos: 15.5,30.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8571 - type: SignalReceiver -- uid: 8502 - type: AirlockMedicalGlassLocked - components: - - pos: 10.5,29.5 - parent: 1 - type: Transform -- uid: 8503 - type: AirlockMedicalGlassLocked - components: - - pos: 13.5,28.5 - parent: 1 - type: Transform -- uid: 8504 - type: HospitalCurtainsOpen - components: - - rot: 1.5707963267948966 rad - pos: 17.5,28.5 - parent: 1 - type: Transform -- uid: 8505 - type: AirlockMaintMedLocked - components: - - pos: 23.5,27.5 - parent: 1 - type: Transform -- uid: 8506 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 21.5,28.5 - parent: 1 - type: Transform -- uid: 8507 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 21.5,29.5 - parent: 1 - type: Transform -- uid: 8508 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 20.5,29.5 - parent: 1 - type: Transform -- uid: 8509 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 20.5,28.5 - parent: 1 - type: Transform -- uid: 8510 - type: Sink - components: - - rot: 3.141592653589793 rad - pos: 15.5,27.5 - parent: 1 - type: Transform -- uid: 8511 - type: LockerMedicalFilled - components: - - pos: 12.5,25.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8512 - type: LockerMedicalFilled - components: - - pos: 12.5,26.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8513 - type: LockerMedicineFilled - components: - - pos: 12.5,27.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8514 - type: BoxNitrileGloves - components: - - pos: 7.3813915,33.67951 - parent: 1 - type: Transform -- uid: 8515 - type: BoxMouthSwab - components: - - pos: 7.6369686,33.367302 - parent: 1 - type: Transform -- uid: 8516 - type: AirlockMedicalGlassLocked - components: - - pos: 6.5,29.5 - parent: 1 - type: Transform -- uid: 8517 - type: AirlockMedicalGlassLocked - components: - - pos: 7.5,29.5 - parent: 1 - type: Transform -- uid: 8518 - type: FaxMachineBase - components: - - pos: 7.5,32.5 - parent: 1 - type: Transform - - name: MedBay - type: FaxMachine -- uid: 8519 - type: BookEscalation - components: - - pos: -26.748653,7.4019933 - parent: 1 - type: Transform -- uid: 8520 - type: SheetSteel - components: - - pos: 9.602876,26.559124 - parent: 1 - type: Transform -- uid: 8521 - type: MedkitBruteFilled - components: - - pos: 12.53402,24.572369 - parent: 1 - type: Transform -- uid: 8522 - type: MedkitBurnFilled - components: - - pos: 12.548221,24.288546 - parent: 1 - type: Transform -- uid: 8523 - type: MedkitFilled - components: - - pos: 12.53402,24.033106 - parent: 1 - type: Transform -- uid: 8524 - type: MedkitOxygenFilled - components: - - pos: 12.548221,23.749285 - parent: 1 - type: Transform -- uid: 8525 - type: MedkitRadiationFilled - components: - - pos: 12.548221,23.451271 - parent: 1 - type: Transform -- uid: 8526 - type: MedkitToxinFilled - components: - - pos: 12.548221,23.167448 - parent: 1 - type: Transform -- uid: 8527 - type: HandheldHealthAnalyzer - components: - - pos: 12.42043,22.684952 - parent: 1 - type: Transform -- uid: 8528 - type: ClothingNeckStethoscope - components: - - pos: 12.562419,22.599804 - parent: 1 - type: Transform -- uid: 8529 - type: AirlockChemistryLocked - components: - - pos: 6.5,26.5 - parent: 1 - type: Transform -- uid: 8530 - type: CryostasisBeaker - components: - - pos: 5.672117,25.73491 - parent: 1 - type: Transform -- uid: 8531 - type: CryostasisBeaker - components: - - pos: 5.501731,25.564615 - parent: 1 - type: Transform -- uid: 8532 - type: BoxBeaker - components: - - pos: 5.345545,25.692337 - parent: 1 - type: Transform -- uid: 8533 - type: SheetPlasma1 - components: - - pos: 2.6427262,23.70671 - parent: 1 - type: Transform - - count: 5 - type: Stack -- uid: 8534 - type: BoxBottle - components: - - pos: 6.2325087,22.657133 - parent: 1 - type: Transform -- uid: 8535 - type: Dropper - components: - - pos: 6.6016774,22.699707 - parent: 1 - type: Transform -- uid: 8536 - type: Dropper - components: - - pos: 6.6584716,22.543604 - parent: 1 - type: Transform -- uid: 8537 - type: WindoorChemistryLocked - components: - - rot: 3.141592653589793 rad - pos: 3.5,20.5 - parent: 1 - type: Transform -- uid: 8538 - type: WindoorChemistryLocked - components: - - rot: 3.141592653589793 rad - pos: 4.5,20.5 - parent: 1 - type: Transform -- uid: 8539 - type: WindoorChemistryLocked - components: - - rot: -1.5707963267948966 rad - pos: 9.5,22.5 - parent: 1 - type: Transform -- uid: 8540 - type: WindoorChemistryLocked - components: - - rot: -1.5707963267948966 rad - pos: 9.5,23.5 - parent: 1 - type: Transform -- uid: 8541 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,21.5 - parent: 1 - type: Transform -- uid: 8542 - type: ChairOfficeLight - components: - - pos: 4.5,21.5 - parent: 1 - type: Transform -- uid: 8543 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 8.5,23.5 - parent: 1 - type: Transform -- uid: 8544 - type: ChairOfficeLight - components: - - pos: 10.5,20.5 - parent: 1 - type: Transform -- uid: 8545 - type: ComputerMedicalRecords - components: - - rot: -1.5707963267948966 rad - pos: 13.5,20.5 - parent: 1 - type: Transform -- uid: 8546 - type: ChairOfficeLight - components: - - pos: 12.5,20.5 - parent: 1 - type: Transform -- uid: 8547 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 9.5,19.5 - parent: 1 - type: Transform -- uid: 8548 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 13.5,20.5 - parent: 1 - type: Transform -- uid: 8549 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 13.5,19.5 - parent: 1 - type: Transform -- uid: 8550 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8551 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 11.5,17.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8552 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 12.5,17.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8553 - type: Chair - components: - - pos: 6.5,20.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8554 - type: Chair - components: - - pos: 7.5,20.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8555 - type: Chair - components: - - pos: 8.5,20.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8556 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 16.5,19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8557 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 16.5,18.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8558 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 16.5,17.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8559 - type: ClothingNeckStethoscope - components: - - pos: 9.630908,19.547152 - parent: 1 - type: Transform -- uid: 8560 - type: ClothingEyesHudMedical - components: - - pos: 13.322592,19.569056 - parent: 1 - type: Transform -- uid: 8561 - type: ClothingEyesGlasses - components: - - pos: 10.355046,19.611628 - parent: 1 - type: Transform -- uid: 8562 - type: BoxFolderWhite - components: - - pos: 12.811435,19.710966 - parent: 1 - type: Transform -- uid: 8563 - type: PaperOffice - components: - - pos: 12.328677,19.682583 - parent: 1 - type: Transform -- uid: 8564 - type: PaperOffice - components: - - pos: 12.513262,19.512291 - parent: 1 - type: Transform -- uid: 8565 - type: PottedPlantRandom - components: - - pos: 9.5,17.5 - parent: 1 - type: Transform -- uid: 8566 - type: PottedPlantRandom - components: - - pos: 13.5,17.5 - parent: 1 - type: Transform -- uid: 8567 - type: BannerEngineering - components: - - pos: -2.5,-11.5 - parent: 1 - type: Transform -- uid: 8568 - type: BannerScience - components: - - pos: -3.5,17.5 - parent: 1 - type: Transform -- uid: 8569 - type: BannerMedical - components: - - pos: 2.5,17.5 - parent: 1 - type: Transform -- uid: 8570 - type: BannerEngineering - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform -- uid: 8571 - type: SignalButton - components: - - rot: -1.5707963267948966 rad - pos: 16.5,33.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 8499 - - port: Toggle - uid: 8498 - - port: Toggle - uid: 8497 - - port: Toggle - uid: 8500 - - port: Toggle - uid: 8501 - type: SignalTransmitter -- uid: 8572 - type: SignalButton - components: - - rot: -1.5707963267948966 rad - pos: -8.5,31.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1048 - type: SignalTransmitter -- uid: 8573 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -7.5,33.5 - parent: 1 - type: Transform -- uid: 8574 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -5.5,34.5 - parent: 1 - type: Transform -- uid: 8575 - type: RailingCorner - components: - - rot: 3.141592653589793 rad - pos: -47.5,41.5 - parent: 1 - type: Transform -- uid: 8576 - type: PoweredlightLED - components: - - rot: 3.141592653589793 rad - pos: 11.5,17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8577 - type: PoweredlightLED - components: - - rot: 3.141592653589793 rad - pos: 5.5,22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8578 - type: PoweredlightLED - components: - - rot: 1.5707963267948966 rad - pos: 9.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8579 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8580 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8581 - type: PoweredlightLED - components: - - rot: 3.141592653589793 rad - pos: 19.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8582 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 21.5,29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8583 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 21.5,26.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8584 - type: PottedPlantRandom - components: - - pos: 14.5,20.5 - parent: 1 - type: Transform -- uid: 8585 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8586 - type: ClosetFireFilled - components: - - pos: -9.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8587 - type: WaterCooler - components: - - pos: -7.5,21.5 - parent: 1 - type: Transform -- uid: 8588 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -20.5,16.5 - parent: 1 - type: Transform -- uid: 8589 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -21.5,16.5 - parent: 1 - type: Transform -- uid: 8590 - type: DrinkMugDog - components: - - pos: -26.584906,6.5633206 - parent: 1 - type: Transform -- uid: 8591 - type: WaterCooler - components: - - pos: -27.5,11.5 - parent: 1 - type: Transform -- uid: 8592 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: -28.5,11.5 - parent: 1 - type: Transform -- uid: 8593 - type: AirlockGlass - components: - - pos: -22.5,12.5 - parent: 1 - type: Transform -- uid: 8594 - type: AirlockGlass - components: - - pos: -29.5,10.5 - parent: 1 - type: Transform -- uid: 8595 - type: Airlock - components: - - pos: -24.5,4.5 - parent: 1 - type: Transform -- uid: 8596 - type: AirlockMaint - components: - - pos: -26.5,1.5 - parent: 1 - type: Transform -- uid: 8597 - type: AirlockExternalGlass - components: - - pos: 35.5,3.5 - parent: 1 - type: Transform -- uid: 8598 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 8.5,0.5 - parent: 1 - type: Transform -- uid: 8599 - type: Hemostat - components: - - pos: -18.11327,30.456947 - parent: 1 - type: Transform -- uid: 8600 - type: Scalpel - components: - - pos: -18.439842,30.48533 - parent: 1 - type: Transform -- uid: 8601 - type: Saw - components: - - pos: -17.630512,30.59886 - parent: 1 - type: Transform -- uid: 8602 - type: SinkStemlessWater - components: - - rot: 1.5707963267948966 rad - pos: -18.5,31.5 - parent: 1 - type: Transform -- uid: 8603 - type: WindoorScienceLocked - components: - - pos: -20.5,35.5 - parent: 1 - type: Transform -- uid: 8604 - type: AirlockMedicalScienceLocked - components: - - pos: -18.5,35.5 - parent: 1 - type: Transform -- uid: 8605 - type: AirlockMedicalScienceLocked - components: - - pos: -14.5,29.5 - parent: 1 - type: Transform -- uid: 8606 - type: AirlockScienceGlassLocked - components: - - pos: -14.5,26.5 - parent: 1 - type: Transform -- uid: 8607 - type: AirlockMaintRnDLocked - components: - - pos: -20.5,26.5 - parent: 1 - type: Transform -- uid: 8608 - type: AirlockMaintRnDLocked - components: - - pos: -22.5,17.5 - parent: 1 - type: Transform -- uid: 8609 - type: AirlockScienceGlassLocked - components: - - pos: -19.5,19.5 - parent: 1 - type: Transform -- uid: 8610 - type: AirlockScienceGlassLocked - components: - - pos: -19.5,18.5 - parent: 1 - type: Transform -- uid: 8611 - type: AirlockScienceGlassLocked - components: - - pos: -10.5,26.5 - parent: 1 - type: Transform -- uid: 8612 - type: AirlockScienceGlassLocked - components: - - pos: -8.5,33.5 - parent: 1 - type: Transform -- uid: 8613 - type: AirlockScienceGlassLocked - components: - - pos: -6.5,31.5 - parent: 1 - type: Transform -- uid: 8614 - type: Catwalk - components: - - pos: -7.5,26.5 - parent: 1 - type: Transform -- uid: 8615 - type: Catwalk - components: - - pos: -6.5,26.5 - parent: 1 - type: Transform -- uid: 8616 - type: Catwalk - components: - - pos: -5.5,26.5 - parent: 1 - type: Transform -- uid: 8617 - type: Catwalk - components: - - pos: -4.5,26.5 - parent: 1 - type: Transform -- uid: 8618 - type: BagpipeInstrument - components: - - pos: -3.6259267,26.581953 - parent: 1 - type: Transform -- uid: 8619 - type: AirlockScienceGlassLocked - components: - - pos: -8.5,22.5 - parent: 1 - type: Transform -- uid: 8620 - type: ToyNuke - components: - - pos: -38.454323,46.531727 - parent: 1 - type: Transform -- uid: 8621 - type: AirlockResearchDirectorLocked - components: - - pos: -22.5,23.5 - parent: 1 - type: Transform -- uid: 8622 - type: ShuttersNormalOpen - components: - - pos: -22.5,22.5 - parent: 1 - type: Transform -- uid: 8623 - type: ShuttersNormalOpen - components: - - pos: -22.5,20.5 - parent: 1 - type: Transform -- uid: 8624 - type: ShuttersNormalOpen - components: - - pos: -22.5,19.5 - parent: 1 - type: Transform -- uid: 8625 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: -25.5,21.5 - parent: 1 - type: Transform -- uid: 8626 - type: Dresser - components: - - pos: -25.5,20.5 - parent: 1 - type: Transform -- uid: 8627 - type: TableGlass - components: - - pos: -23.5,19.5 - parent: 1 - type: Transform -- uid: 8628 - type: TableGlass - components: - - pos: -23.5,20.5 - parent: 1 - type: Transform -- uid: 8629 - type: TobaccoSeeds - components: - - pos: -38.497883,49.42718 - parent: 1 - type: Transform -- uid: 8630 - type: HospitalCurtainsOpen - components: - - rot: 1.5707963267948966 rad - pos: -25.5,19.5 - parent: 1 - type: Transform -- uid: 8631 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8632 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -25.5,20.5 - parent: 1 - type: Transform -- uid: 8633 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -25.5,19.5 - parent: 1 - type: Transform -- uid: 8634 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -24.5,20.5 - parent: 1 - type: Transform -- uid: 8635 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -24.5,19.5 - parent: 1 - type: Transform -- uid: 8636 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -23.5,20.5 - parent: 1 - type: Transform -- uid: 8637 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -23.5,19.5 - parent: 1 - type: Transform -- uid: 8638 - type: PoweredlightLED - components: - - rot: 1.5707963267948966 rad - pos: -18.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8639 - type: PoweredlightLED - components: - - rot: 1.5707963267948966 rad - pos: -7.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8640 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -12.5,31.5 - parent: 1 - type: Transform -- uid: 8641 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8642 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8643 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8644 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8645 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8646 - type: Poweredlight - components: - - pos: -8.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8647 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8648 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8649 - type: PoweredlightLED - components: - - rot: -1.5707963267948966 rad - pos: -5.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8650 - type: AirlockScienceLocked - components: - - rot: -1.5707963267948966 rad - pos: -10.5,18.5 - parent: 1 - type: Transform -- uid: 8651 - type: AirlockScienceLocked - components: - - rot: -1.5707963267948966 rad - pos: -10.5,17.5 - parent: 1 - type: Transform -- uid: 8652 - type: AirlockScienceLocked - components: - - rot: -1.5707963267948966 rad - pos: -6.5,18.5 - parent: 1 - type: Transform -- uid: 8653 - type: AirlockScienceLocked - components: - - rot: -1.5707963267948966 rad - pos: -6.5,17.5 - parent: 1 - type: Transform -- uid: 8654 - type: WindoorScienceLocked - components: - - rot: 3.141592653589793 rad - pos: -5.5,20.5 - parent: 1 - type: Transform -- uid: 8655 - type: WindoorScienceLocked - components: - - rot: 3.141592653589793 rad - pos: -4.5,20.5 - parent: 1 - type: Transform -- uid: 8656 - type: Multitool - components: - - pos: -23.455519,20.623178 - parent: 1 - type: Transform -- uid: 8657 - type: BoxFolderBlack - components: - - pos: -23.526514,19.927814 - parent: 1 - type: Transform -- uid: 8658 - type: BoxFolderGrey - components: - - pos: -23.384525,19.700756 - parent: 1 - type: Transform -- uid: 8659 - type: ChairOfficeLight - components: - - pos: -4.5,21.5 - parent: 1 - type: Transform -- uid: 8660 - type: ChairOfficeLight - components: - - pos: -5.5,21.5 - parent: 1 - type: Transform -- uid: 8661 - type: ChairOfficeLight - components: - - pos: -17.5,31.5 - parent: 1 - type: Transform -- uid: 8662 - type: ChairOfficeDark - components: - - pos: -17.5,18.5 - parent: 1 - type: Transform -- uid: 8663 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -10.5,29.5 - parent: 1 - type: Transform -- uid: 8664 - type: ClosetEmergencyFilledRandom - components: - - pos: -20.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8665 - type: AirlockMedicalGlass - components: - - pos: 5.5,18.5 - parent: 1 - type: Transform -- uid: 8666 - type: DisposalUnit - components: - - pos: -21.5,25.5 - parent: 1 - type: Transform -- uid: 8667 - type: TablePlasmaGlass - components: - - rot: 1.5707963267948966 rad - pos: -6.5,21.5 - parent: 1 - type: Transform -- uid: 8668 - type: CableApcStack - components: - - pos: -6.657152,21.752699 - parent: 1 - type: Transform -- uid: 8669 - type: Screwdriver - components: - - pos: -6.6287556,21.412113 - parent: 1 - type: Transform -- uid: 8670 - type: DrinkMugRainbow - components: - - pos: -6.3873754,21.667553 - parent: 1 - type: Transform -- uid: 8671 - type: AirlockMedicalGlass - components: - - pos: 5.5,17.5 - parent: 1 - type: Transform -- uid: 8672 - type: AirlockChiefMedicalOfficerLocked - components: - - pos: 13.5,31.5 - parent: 1 - type: Transform -- uid: 8673 - type: CrateMedicalSurgery - components: - - pos: 19.5,26.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8674 - type: ClothingHeadHatSurgcapBlue - components: - - pos: 16.454456,27.694899 - parent: 1 - type: Transform -- uid: 8675 - type: ClothingHeadHatSurgcapPurple - components: - - pos: 20.515308,26.531229 - parent: 1 - type: Transform -- uid: 8676 - type: ClothingHeadHatSurgcapGreen - components: - - pos: 16.568047,27.510414 - parent: 1 - type: Transform -- uid: 8677 - type: ClothingBackpackDuffelSurgeryFilled - components: - - pos: 20.475561,28.574747 - parent: 1 - type: Transform -- uid: 8678 - type: SignSurgery - components: - - pos: 13.5,26.5 - parent: 1 - type: Transform -- uid: 8679 - type: VendingMachineMediDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,27.5 - parent: 1 - type: Transform -- uid: 8680 - type: SawElectric - components: - - pos: 20.466082,27.893574 - parent: 1 - type: Transform -- uid: 8681 - type: ScalpelAdvanced - components: - - pos: 20.409286,27.45365 - parent: 1 - type: Transform -- uid: 8682 - type: Hemostat - components: - - pos: 20.466082,27.283358 - parent: 1 - type: Transform -- uid: 8683 - type: Cautery - components: - - pos: 20.508678,27.013725 - parent: 1 - type: Transform -- uid: 8684 - type: Gauze1 - components: - - pos: 20.395086,26.729904 - parent: 1 - type: Transform -- uid: 8685 - type: BoxSterileMask - components: - - pos: 18.549246,29.62489 - parent: 1 - type: Transform -- uid: 8686 - type: BoxSterileMask - components: - - pos: 9.895921,19.54264 - parent: 1 - type: Transform -- uid: 8687 - type: SpawnPointChemist - components: - - pos: 3.5,24.5 - parent: 1 - type: Transform -- uid: 8688 - type: SpawnPointChemist - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform -- uid: 8689 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8690 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8691 - type: SpawnPointMedicalIntern - components: - - pos: 10.5,20.5 - parent: 1 - type: Transform -- uid: 8692 - type: SpawnPointMedicalIntern - components: - - pos: 12.5,20.5 - parent: 1 - type: Transform -- uid: 8693 - type: AirlockMaintLocked - components: - - pos: -25.5,16.5 - parent: 1 - type: Transform -- uid: 8694 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -11.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8695 - type: SpawnPointScientist - components: - - pos: -12.5,22.5 - parent: 1 - type: Transform -- uid: 8696 - type: SpawnPointScientist - components: - - pos: -20.5,23.5 - parent: 1 - type: Transform -- uid: 8697 - type: FaxMachineBase - components: - - pos: -9.5,28.5 - parent: 1 - type: Transform - - name: Science - type: FaxMachine -- uid: 8698 - type: TablePlasmaGlass - components: - - pos: -9.5,28.5 - parent: 1 - type: Transform -- uid: 8699 - type: WelderIndustrialAdvanced - components: - - pos: -13.470308,-33.594826 - parent: 1 - type: Transform -- uid: 8700 - type: ClothingHandsGlovesColorYellow - components: - - pos: -13.44191,-34.247616 - parent: 1 - type: Transform -- uid: 8701 - type: SheetSteel - components: - - pos: -13.512904,-33.878647 - parent: 1 - type: Transform -- uid: 8702 - type: WeldingFuelTankFull - components: - - pos: -13.5,-32.5 - parent: 1 - type: Transform -- uid: 8703 - type: WaterTankFull - components: - - pos: -13.5,-31.5 - parent: 1 - type: Transform -- uid: 8704 - type: RCD - components: - - pos: -13.511377,-23.363 - parent: 1 - type: Transform -- uid: 8705 - type: RCDAmmo - components: - - pos: -13.667563,-23.646822 - parent: 1 - type: Transform -- uid: 8706 - type: ClothingShoesBootsMag - components: - - pos: -13.482979,-24.072556 - parent: 1 - type: Transform -- uid: 8707 - type: HandLabeler - components: - - pos: -13.497177,-24.441525 - parent: 1 - type: Transform -- uid: 8708 - type: HolofanProjector - components: - - pos: -13.493561,-19.411528 - parent: 1 - type: Transform -- uid: 8709 - type: PowerCellRecharger - components: - - pos: -14.5,-19.5 - parent: 1 - type: Transform -- uid: 8710 - type: CableApcStack - components: - - pos: -10.359692,-19.510866 - parent: 1 - type: Transform -- uid: 8711 - type: trayScanner - components: - - pos: -10.544276,-19.241236 - parent: 1 - type: Transform -- uid: 8712 - type: GeigerCounter - components: - - pos: -11.651781,-19.255426 - parent: 1 - type: Transform -- uid: 8713 - type: GasAnalyzer - components: - - pos: -11.3678055,-19.468292 - parent: 1 - type: Transform -- uid: 8714 - type: AirlockMaintAtmoLocked - components: - - pos: -14.5,-36.5 - parent: 1 - type: Transform -- uid: 8715 - type: InflatableDoorStack - components: - - pos: -11.275075,-15.582806 - parent: 1 - type: Transform -- uid: 8716 - type: TableGlass - components: - - pos: -11.5,-15.5 - parent: 1 - type: Transform -- uid: 8717 - type: TableGlass - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform -- uid: 8718 - type: WaterCooler - components: - - pos: -9.5,-15.5 - parent: 1 - type: Transform -- uid: 8719 - type: DrinkMugBlue - components: - - pos: -10.5935335,-15.327366 - parent: 1 - type: Transform -- uid: 8720 - type: DrinkMugHeart - components: - - pos: -10.394751,-15.49766 - parent: 1 - type: Transform -- uid: 8721 - type: RandomSnacks - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform -- uid: 8722 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 1 - type: Transform -- uid: 8723 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 1 - type: Transform -- uid: 8724 - type: SheetGlass - components: - - pos: -13.523513,-34.354816 - parent: 1 - type: Transform -- uid: 8725 - type: GasRecyclerMachineCircuitboard - components: - - pos: -10.353789,-19.334864 - parent: 1 - type: Transform -- uid: 8726 - type: PowerCellHigh - components: - - pos: -13.77224,-19.431416 - parent: 1 - type: Transform -- uid: 8727 - type: WindoorEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 1 - type: Transform -- uid: 8728 - type: WindoorEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 1 - type: Transform -- uid: 8729 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-16.5 - parent: 1 - type: Transform -- uid: 8730 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-16.5 - parent: 1 - type: Transform -- uid: 8731 - type: PortableScrubber - components: - - pos: -14.5,-15.5 - parent: 1 - type: Transform -- uid: 8732 - type: PortableScrubber - components: - - pos: -14.5,-14.5 - parent: 1 - type: Transform -- uid: 8733 - type: AirCanister - components: - - pos: -14.5,-12.5 - parent: 1 - type: Transform -- uid: 8734 - type: AirCanister - components: - - pos: -14.5,-11.5 - parent: 1 - type: Transform -- uid: 8735 - type: Railing - components: - - pos: -14.5,-13.5 - parent: 1 - type: Transform -- uid: 8736 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -14.5,-13.5 - parent: 1 - type: Transform -- uid: 8737 - type: PortableScrubber - components: - - pos: -13.5,-21.5 - parent: 1 - type: Transform -- uid: 8738 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-25.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 2813 - - port: Toggle - uid: 2814 - - port: Toggle - uid: 2821 - - port: Toggle - uid: 2822 - type: SignalTransmitter - - type: ItemCooldown -- uid: 8739 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-41.5 - parent: 1 - type: Transform -- uid: 8740 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,-39.5 - parent: 1 - type: Transform -- uid: 8741 - type: ClosetEmergencyFilledRandom - components: - - pos: -14.5,-39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8742 - type: ClosetFireFilled - components: - - pos: -14.5,-40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8743 - type: ClosetToolFilled - components: - - pos: -14.5,-41.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8744 - type: ClothingMaskGasAtmos - components: - - pos: -12.37689,-41.391964 - parent: 1 - type: Transform -- uid: 8745 - type: PlasmaTankFilled - components: - - pos: -12.675064,-41.406155 - parent: 1 - type: Transform -- uid: 8746 - type: Catwalk - components: - - pos: -13.5,-41.5 - parent: 1 - type: Transform -- uid: 8747 - type: Catwalk - components: - - pos: -13.5,-40.5 - parent: 1 - type: Transform -- uid: 8748 - type: Catwalk - components: - - pos: -13.5,-39.5 - parent: 1 - type: Transform -- uid: 8749 - type: SignalButton - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-37.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3050 - type: SignalTransmitter -- uid: 8750 - type: SignalButton - components: - - pos: -2.5,-48.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3052 - - port: Toggle - uid: 3051 - - port: Toggle - uid: 3053 - type: SignalTransmitter -- uid: 8751 - type: AirSensor - components: - - pos: -0.5,-34.5 - parent: 1 - type: Transform -- uid: 8752 - type: AirSensor - components: - - pos: -0.5,-40.5 - parent: 1 - type: Transform -- uid: 8753 - type: AirSensor - components: - - pos: -0.5,-45.5 - parent: 1 - type: Transform -- uid: 8754 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -5.5,-42.5 - parent: 1 - type: Transform - - devices: - - 8752 - - 8751 - - 8753 - type: DeviceList -- uid: 8755 - type: InflatableWallStack - components: - - pos: -11.574207,-15.350821 - parent: 1 - type: Transform -- uid: 8756 - components: - - type: MetaData - - pos: 43.1,3.5 - parent: 0 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAHwAAAR8AAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAASgAAAB8AAAIfAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEoAAAMfAAADSgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAHwAAAx8AAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAbAAACHwAAABsAAAIfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAF4AAAAfAAADHwAAAQ== - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAGwAAAx8AAAAbAAACHwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAB8AAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAABYAAAMWAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAADFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,0: - ind: 0,0 - tiles: GwAAAx8AAAAbAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAFeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAABSgAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAEoAAANeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAFeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAACHwAAABsAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAA14AAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - type: OccluderTree - - type: Shuttle - - nextUpdate: 97465.7475215 - 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: - 0: 0,-2 - 1: 2,-2 - 2: 0,0 - 3: 2,0 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: Bot - decals: - 8: -2,-2 - 9: -4,-2 - 10: -4,0 - 11: -2,0 - 12: 0,0 - 13: 0,-2 - 14: 2,-2 - 15: 2,0 - 16: 1,-4 - 17: 1,-5 - 18: -3,-4 - 19: -3,-5 - 20: -1,-4 - - node: - cleanable: True - color: '#83543273' - id: Dirt - decals: - 21: -4,0 - 22: -4,-1 - 23: -1,-1 - 24: 0,0 - 25: -1,-2 - 26: -2,-2 - 27: -2,-4 - 28: -2,-5 - 29: 0,-5 - 30: 0,-4 - 31: 0,-2 - 32: 0,-1 - 33: -1,2 - 34: -2,2 - 35: 0,-1 - 36: 2,0 - 37: 2,-1 - 38: 2,-2 - 39: 2,0 - 40: 1,0 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 4: -4,0 - 5: -4,-2 - 6: -2,0 - 7: -2,-2 - type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 65533 - 1: 2 - -1,0: - 0: 61439 - 0,0: - 0: 14335 - 0,-1: - 0: 65533 - 1: 2 - -2,-1: - 0: 34952 - -1,-2: - 0: 65534 - -1,-3: - 0: 49152 - -2,0: - 0: 136 - -1,1: - 0: 206 - 0,1: - 0: 19 - 0,-3: - 0: 4096 - 0,-2: - 0: 30579 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 15.142283 - - 56.963825 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance - - joints: - docking21482: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21482 - localAnchorB: -5,-1.5 - localAnchorA: 38,1.5 - damping: 791.72076 - stiffness: 7106.469 - docking21483: !type:WeldJoint - bodyB: 8756 - bodyA: 1 - id: docking21483 - localAnchorB: -5,0.5 - localAnchorA: 38,3.5 - damping: 791.72076 - stiffness: 7106.469 - type: Joint -- uid: 8757 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -4.5,-0.5 - parent: 8756 - type: Transform -- uid: 8758 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 8756 - type: Transform -- uid: 8759 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 8756 - type: Transform -- uid: 8760 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 8756 - type: Transform -- uid: 8761 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 8756 - type: Transform -- uid: 8762 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 8756 - type: Transform -- uid: 8763 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 8756 - type: Transform -- uid: 8764 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 8756 - type: Transform -- uid: 8765 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 8756 - type: Transform -- uid: 8766 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 8756 - type: Transform -- uid: 8767 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 8756 - type: Transform -- uid: 8768 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 8756 - type: Transform -- uid: 8769 - type: WallShuttleDiagonal - components: - - rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 8756 - type: Transform -- uid: 8770 - type: WallShuttleDiagonal - components: - - pos: -2.5,4.5 - parent: 8756 - type: Transform -- uid: 8771 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: 1.5,2.5 - parent: 8756 - type: Transform -- uid: 8772 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: 1.5,1.5 - parent: 8756 - type: Transform -- uid: 8773 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: 3.5,1.5 - parent: 8756 - type: Transform -- uid: 8774 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 8756 - type: Transform -- uid: 8775 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: 2.5,1.5 - parent: 8756 - type: Transform -- uid: 8776 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: -1.5,1.5 - parent: 8756 - type: Transform -- uid: 8777 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -1.5,1.5 - parent: 8756 - type: Transform -- uid: 8778 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 8756 - type: Transform -- uid: 8779 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 8756 - type: Transform -- uid: 8780 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 8756 - type: Transform -- uid: 8781 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 8756 - type: Transform -- uid: 8782 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 8756 - type: Transform -- uid: 8783 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -2.5,3.5 - parent: 8756 - type: Transform -- uid: 8784 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -1.5,4.5 - parent: 8756 - type: Transform -- uid: 8785 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 8756 - type: Transform -- uid: 8786 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 8756 - type: Transform -- uid: 8787 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 8756 - type: Transform -- uid: 8788 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 8756 - type: Transform -- uid: 8789 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 8756 - type: Transform -- uid: 8790 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: -0.5,4.5 - parent: 8756 - type: Transform -- uid: 8791 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: -1.5,4.5 - parent: 8756 - type: Transform -- uid: 8792 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 8756 - type: Transform -- uid: 8793 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -3.5,1.5 - parent: 8756 - type: Transform -- uid: 8794 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 2.5,1.5 - parent: 8756 - type: Transform -- uid: 8795 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 8756 - type: Transform -- uid: 8796 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 8756 - type: Transform -- uid: 8797 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 8756 - type: Transform -- uid: 8798 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 8756 - type: Transform -- uid: 8799 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 8756 - type: Transform -- uid: 8800 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 8756 - type: Transform -- uid: 8801 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 8756 - type: Transform -- uid: 8802 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 8756 - type: Transform -- uid: 8803 - type: WallShuttleDiagonal - components: - - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 8756 - type: Transform -- uid: 8804 - type: GeneratorUranium - components: - - pos: 0.5,-5.5 - parent: 8756 - type: Transform -- uid: 8805 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 8756 - type: Transform -- uid: 8806 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 8756 - type: Transform -- uid: 8807 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 8756 - type: Transform -- uid: 8808 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: -4.5,1.5 - parent: 8756 - type: Transform -- uid: 8809 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -3.5,-4.5 - parent: 8756 - type: Transform -- uid: 8810 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 8756 - type: Transform -- uid: 8811 - type: WallShuttle - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 8756 - type: Transform -- uid: 8812 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 8756 - type: Transform -- uid: 8813 - type: WallShuttle - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 8756 - type: Transform -- uid: 8814 - type: ShuttleWindow - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 8756 - type: Transform -- uid: 8815 - type: GravityGeneratorMini - components: - - pos: -0.5,-5.5 - parent: 8756 - type: Transform -- uid: 8816 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 8756 - type: Transform -- uid: 8817 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 8756 - type: Transform -- uid: 8818 - type: SubstationWallBasic - components: - - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 8756 - type: Transform -- uid: 8819 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 8756 - type: Transform -- uid: 8820 - type: Gyroscope - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 8756 - type: Transform - - bodyType: Static - type: Physics -- uid: 8821 - type: CableHV - components: - - pos: 0.5,-5.5 - parent: 8756 - type: Transform -- uid: 8822 - type: CableHV - components: - - pos: -0.5,-5.5 - parent: 8756 - type: Transform -- uid: 8823 - type: CableHV - components: - - pos: -1.5,-5.5 - parent: 8756 - type: Transform -- uid: 8824 - type: CableHV - components: - - pos: -2.5,-5.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8825 - type: CableMV - components: - - pos: -2.5,-5.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8826 - type: CableMV - components: - - pos: -1.5,-5.5 - parent: 8756 - type: Transform -- uid: 8827 - type: CableMV - components: - - pos: -0.5,-5.5 - parent: 8756 - type: Transform -- uid: 8828 - type: CableMV - components: - - pos: 0.5,-5.5 - parent: 8756 - type: Transform -- uid: 8829 - type: CableMV - components: - - pos: 1.5,-5.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8830 - type: CableApcExtension - components: - - pos: 1.5,-5.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8831 - type: CableApcExtension - components: - - pos: 1.5,-4.5 - parent: 8756 - type: Transform -- uid: 8832 - type: CableApcExtension - components: - - pos: 1.5,-3.5 - parent: 8756 - type: Transform -- uid: 8833 - type: CableApcExtension - components: - - pos: 1.5,-2.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8834 - type: CableApcExtension - components: - - pos: 1.5,-1.5 - parent: 8756 - type: Transform -- uid: 8835 - type: CableApcExtension - components: - - pos: 1.5,-0.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8836 - type: CableApcExtension - components: - - pos: 1.5,0.5 - parent: 8756 - type: Transform -- uid: 8837 - type: CableApcExtension - components: - - pos: 0.5,0.5 - parent: 8756 - type: Transform -- uid: 8838 - type: CableApcExtension - components: - - pos: 0.5,1.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8839 - type: CableApcExtension - components: - - pos: 0.5,2.5 - parent: 8756 - type: Transform -- uid: 8840 - type: CableApcExtension - components: - - pos: 0.5,3.5 - parent: 8756 - type: Transform -- uid: 8841 - type: CableApcExtension - components: - - pos: -0.5,3.5 - parent: 8756 - type: Transform -- uid: 8842 - type: CableApcExtension - components: - - pos: -1.5,3.5 - parent: 8756 - type: Transform -- uid: 8843 - type: CableApcExtension - components: - - pos: -1.5,2.5 - parent: 8756 - type: Transform -- uid: 8844 - type: CableApcExtension - components: - - pos: -1.5,1.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8845 - type: CableApcExtension - components: - - pos: -1.5,0.5 - parent: 8756 - type: Transform -- uid: 8846 - type: CableApcExtension - components: - - pos: -2.5,0.5 - parent: 8756 - type: Transform -- uid: 8847 - type: CableApcExtension - components: - - pos: -2.5,-0.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8848 - type: CableApcExtension - components: - - pos: -2.5,-1.5 - parent: 8756 - type: Transform -- uid: 8849 - type: CableApcExtension - components: - - pos: -2.5,-2.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8850 - type: CableApcExtension - components: - - pos: -2.5,-3.5 - parent: 8756 - type: Transform -- uid: 8851 - type: CableApcExtension - components: - - pos: -2.5,-4.5 - parent: 8756 - type: Transform -- uid: 8852 - type: CableApcExtension - components: - - pos: -2.5,-5.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8853 - type: CableApcExtension - components: - - pos: -1.5,-5.5 - parent: 8756 - type: Transform -- uid: 8854 - type: CableApcExtension - components: - - pos: -0.5,-5.5 - parent: 8756 - type: Transform -- uid: 8855 - type: CableApcExtension - components: - - pos: 0.5,-5.5 - parent: 8756 - type: Transform -- uid: 8856 - type: CableApcExtension - components: - - pos: 1.5,-5.5 - parent: 8756 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8857 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 8756 - type: Transform - - bodyType: Static - type: Physics -- uid: 8858 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 8756 - type: Transform - - bodyType: Static - type: Physics -- uid: 8859 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 8756 - type: Transform - - bodyType: Static - type: Physics -- uid: 8860 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 8756 - type: Transform - - bodyType: Static - type: Physics -- uid: 8861 - type: FirelockGlass - components: - - pos: -1.5,-2.5 - parent: 8756 - type: Transform -- uid: 8862 - type: FirelockGlass - components: - - pos: -0.5,-2.5 - parent: 8756 - type: Transform -- uid: 8863 - type: FirelockGlass - components: - - pos: 0.5,-2.5 - parent: 8756 - type: Transform -- uid: 8864 - type: AirlockGlassShuttle - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 8756 - type: Transform - - dockJointId: docking21482 - dockedWith: 2047 - type: Docking - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 8865 - type: AirlockGlassShuttle - components: - - rot: -1.5707963267948966 rad - pos: -4.5,0.5 - parent: 8756 - type: Transform - - dockJointId: docking21483 - dockedWith: 2030 - type: Docking - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 8866 - type: AirlockGlassShuttle - components: - - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 8756 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 8867 - type: AirlockGlassShuttle - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 8756 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 8868 - type: AtmosDeviceFanTiny - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 8756 - type: Transform -- uid: 8869 - type: AtmosDeviceFanTiny - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 8756 - type: Transform -- uid: 8870 - type: AtmosDeviceFanTiny - components: - - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 8756 - type: Transform -- uid: 8871 - type: AtmosDeviceFanTiny - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 8756 - type: Transform -- uid: 8872 - type: AirlockExternalGlass - components: - - pos: -2.5,-1.5 - parent: 8756 - type: Transform -- uid: 8873 - type: AirlockExternalGlass - components: - - pos: -2.5,0.5 - parent: 8756 - type: Transform -- uid: 8874 - type: AirlockExternalGlass - components: - - pos: 1.5,0.5 - parent: 8756 - type: Transform -- uid: 8875 - type: AirlockExternalGlass - components: - - pos: 1.5,-1.5 - parent: 8756 - type: Transform -- uid: 8876 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-1.5 - parent: 8756 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8877 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 8756 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8878 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 8756 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8879 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-4.5 - parent: 8756 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8880 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 8756 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8881 - type: Thruster - components: - - rot: 3.141592653589793 rad - pos: -3.5,-6.5 - parent: 8756 - type: Transform - - bodyType: Static - type: Physics -- uid: 8882 - type: Thruster - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 8756 - type: Transform - - bodyType: Static - type: Physics -- uid: 8883 - type: Thruster - components: - - rot: 1.5707963267948966 rad - pos: -3.5,2.5 - parent: 8756 - type: Transform - - bodyType: Static - type: Physics -- uid: 8884 - type: Thruster - components: - - pos: 2.5,2.5 - parent: 8756 - type: Transform - - bodyType: Static - type: Physics -- uid: 8885 - type: ChairPilotSeat - components: - - pos: -0.5,-3.5 - parent: 8756 - type: Transform - - bodyType: Static - type: Physics -- uid: 8886 - type: WallShuttleDiagonal - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-3.5 - parent: 8756 - type: Transform -- uid: 8887 - type: ComputerShuttle - components: - - pos: -0.5,3.5 - parent: 8756 - type: Transform -- uid: 8888 - type: ComputerStationRecords - components: - - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 8756 - type: Transform -- uid: 8889 - type: ComputerFrame - components: - - rot: 1.5707963267948966 rad - pos: -1.5,2.5 - parent: 8756 - type: Transform -- uid: 8890 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -1.5,3.5 - parent: 8756 - type: Transform -- uid: 8891 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 8756 - type: Transform -- uid: 8892 - type: PowerCellRecharger - components: - - pos: -1.5,3.5 - parent: 8756 - type: Transform -- uid: 8893 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 8756 - type: Transform -- uid: 8894 - type: AirlockCommandLocked - components: - - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 8756 - type: Transform -- uid: 8895 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: -0.5,2.5 - parent: 8756 - type: Transform - - bodyType: Static - type: Physics -- uid: 8896 - type: ClosetWallEmergencyFilledRandom - components: - - pos: -2.5,-2.5 - parent: 8756 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 2.747938 - - 10.337481 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8897 - type: ClosetWallEmergencyFilledRandom - components: - - pos: 1.5,-2.5 - parent: 8756 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 2.747938 - - 10.337481 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8898 - type: TableWood - components: - - pos: -0.5,9.5 - parent: 1 - type: Transform -- uid: 8899 - type: TableWood - components: - - pos: -0.5,8.5 - parent: 1 - type: Transform -- uid: 8900 - type: TableWood - components: - - pos: -0.5,4.5 - parent: 1 - type: Transform -- uid: 8901 - type: TableWood - components: - - pos: -0.5,3.5 - parent: 1 - type: Transform -- uid: 8902 - type: TableWood - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform -- uid: 8903 - type: TableWood - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform -- uid: 8904 - type: TableWood - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform -- uid: 8905 - type: TableWood - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform -- uid: 8906 - type: TableWood - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform -- uid: 8907 - type: TableWood - components: - - pos: -6.5,-5.5 - parent: 1 - type: Transform -- uid: 8908 - type: TableWood - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform -- uid: 8909 - type: TableWood - components: - - pos: -10.5,2.5 - parent: 1 - type: Transform -- uid: 8910 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 5.5,2.5 - parent: 1 - type: Transform -- uid: 8911 - type: TableWood - components: - - pos: -0.5,-5.5 - parent: 1 - type: Transform -- uid: 8912 - type: TableWood - components: - - pos: 3.5,8.5 - parent: 1 - type: Transform -- uid: 8913 - type: TableWood - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform -- uid: 8914 - type: TableWood - components: - - pos: -6.5,-3.5 - parent: 1 - type: Transform -- uid: 8915 - type: TableWood - components: - - pos: -4.5,11.5 - parent: 1 - type: Transform -- uid: 8916 - type: ChairWood - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform -- uid: 8917 - type: ChairWood - components: - - pos: -10.5,3.5 - parent: 1 - type: Transform -- uid: 8918 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -11.5,1.5 - parent: 1 - type: Transform -- uid: 8919 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -10.5,1.5 - parent: 1 - type: Transform -- uid: 8920 - type: Fork - components: - - pos: -11.613461,-3.25968 - parent: 1 - type: Transform -- uid: 8921 - type: TableWood - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform -- uid: 8922 - type: TableWood - components: - - pos: -5.5,-4.5 - parent: 1 - type: Transform -- uid: 8923 - type: TableReinforcedGlass - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-3.5 - parent: 1 - type: Transform -- uid: 8924 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -5.5,1.5 - parent: 1 - type: Transform -- uid: 8925 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -4.5,1.5 - parent: 1 - type: Transform -- uid: 8926 - type: FirelockGlass - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform -- uid: 8927 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 3.5,7.5 - parent: 1 - type: Transform -- uid: 8928 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -1.5,9.5 - parent: 1 - type: Transform -- uid: 8929 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -1.5,8.5 - parent: 1 - type: Transform -- uid: 8930 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -1.5,4.5 - parent: 1 - type: Transform -- uid: 8931 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -1.5,3.5 - parent: 1 - type: Transform -- uid: 8932 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 1 - type: Transform -- uid: 8933 - type: SinkStemlessWater - components: - - pos: -7.5,8.5 - parent: 1 - type: Transform -- uid: 8934 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 1 - type: Transform -- uid: 8935 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 1 - type: Transform -- uid: 8936 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1 - type: Transform -- uid: 8937 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 1 - type: Transform -- uid: 8938 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 1 - type: Transform -- uid: 8939 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1 - type: Transform -- uid: 8940 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 0.5,4.5 - parent: 1 - type: Transform -- uid: 8941 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 0.5,8.5 - parent: 1 - type: Transform -- uid: 8942 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 0.5,9.5 - parent: 1 - type: Transform -- uid: 8943 - type: ChairWood - components: - - pos: 3.5,9.5 - parent: 1 - type: Transform -- uid: 8944 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 1 - type: Transform -- uid: 8945 - type: Grille - components: - - pos: -10.5,-6.5 - parent: 1 - type: Transform -- uid: 8946 - type: Grille - components: - - pos: -11.5,-6.5 - parent: 1 - type: Transform -- uid: 8947 - type: ChairWood - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform -- uid: 8948 - type: ChairWood - components: - - pos: -12.5,-2.5 - parent: 1 - type: Transform -- uid: 8949 - type: ChairWood - components: - - pos: -5.5,3.5 - parent: 1 - type: Transform -- uid: 8950 - type: ChairWood - components: - - pos: -4.5,3.5 - parent: 1 - type: Transform -- uid: 8951 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -11.5,-4.5 - parent: 1 - type: Transform -- uid: 8952 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -12.5,-4.5 - parent: 1 - type: Transform -- uid: 8953 - type: TableWood - components: - - pos: -12.5,-3.5 - parent: 1 - type: Transform -- uid: 8954 - type: TableWood - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform -- uid: 8955 - type: FoodPlateSmall - components: - - pos: -12.011354,-3.421762 - parent: 1 - type: Transform -- uid: 8956 - type: DrinkGlass - components: - - pos: -12.645039,-3.25968 - parent: 1 - type: Transform -- uid: 8957 - type: CarpetOrange - components: - - pos: -1.5,4.5 - parent: 1 - type: Transform -- uid: 8958 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8959 - type: CarpetOrange - components: - - pos: -0.5,4.5 - parent: 1 - type: Transform -- uid: 8960 - type: CarpetOrange - components: - - pos: -1.5,3.5 - parent: 1 - type: Transform -- uid: 8961 - type: CarpetOrange - components: - - pos: -0.5,3.5 - parent: 1 - type: Transform -- uid: 8962 - type: CarpetOrange - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform -- uid: 8963 - type: CarpetOrange - components: - - pos: 0.5,4.5 - parent: 1 - type: Transform -- uid: 8964 - type: Carpet - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform -- uid: 8965 - type: Carpet - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform -- uid: 8966 - type: Carpet - components: - - pos: -11.5,1.5 - parent: 1 - type: Transform -- uid: 8967 - type: Carpet - components: - - pos: -10.5,1.5 - parent: 1 - type: Transform -- uid: 8968 - type: Carpet - components: - - pos: -10.5,2.5 - parent: 1 - type: Transform -- uid: 8969 - type: Carpet - components: - - pos: -10.5,3.5 - parent: 1 - type: Transform -- uid: 8970 - type: Carpet - components: - - pos: -1.5,-0.5 - parent: 1 - type: Transform -- uid: 8971 - type: Carpet - components: - - pos: -1.5,-1.5 - parent: 1 - type: Transform -- uid: 8972 - type: Carpet - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform -- uid: 8973 - type: Carpet - components: - - pos: 0.5,-1.5 - parent: 1 - type: Transform -- uid: 8974 - type: Carpet - components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform -- uid: 8975 - type: Carpet - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform -- uid: 8976 - type: CarpetBlue - components: - - pos: -5.5,3.5 - parent: 1 - type: Transform -- uid: 8977 - type: CarpetBlue - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform -- uid: 8978 - type: CarpetBlue - components: - - pos: -5.5,1.5 - parent: 1 - type: Transform -- uid: 8979 - type: CarpetBlue - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform -- uid: 8980 - type: CarpetBlue - components: - - pos: -4.5,1.5 - parent: 1 - type: Transform -- uid: 8981 - type: CarpetBlue - components: - - pos: -4.5,3.5 - parent: 1 - type: Transform -- uid: 8982 - type: CarpetBlue - components: - - pos: -1.5,8.5 - parent: 1 - type: Transform -- uid: 8983 - type: CarpetBlue - components: - - pos: -0.5,8.5 - parent: 1 - type: Transform -- uid: 8984 - type: CarpetBlue - components: - - pos: 0.5,8.5 - parent: 1 - type: Transform -- uid: 8985 - type: CarpetBlue - components: - - pos: 0.5,9.5 - parent: 1 - type: Transform -- uid: 8986 - type: CarpetBlue - components: - - pos: -0.5,9.5 - parent: 1 - type: Transform -- uid: 8987 - type: CarpetBlue - components: - - pos: -1.5,9.5 - parent: 1 - type: Transform -- uid: 8988 - type: Window - components: - - pos: -12.5,-6.5 - parent: 1 - type: Transform -- uid: 8989 - type: Grille - components: - - pos: -12.5,-6.5 - parent: 1 - type: Transform -- uid: 8990 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 1 - type: Transform -- uid: 8991 - type: TableWood - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform -- uid: 8992 - type: Window - components: - - pos: -10.5,-6.5 - parent: 1 - type: Transform -- uid: 8993 - type: Window - components: - - pos: -11.5,-6.5 - parent: 1 - type: Transform -- uid: 8994 - type: SmokingPipeFilledCannabis - components: - - pos: -4.659399,11.620097 - parent: 1 - type: Transform -- uid: 8995 - type: Matchbox - components: - - pos: -4.367732,11.515931 - parent: 1 - type: Transform -- uid: 8996 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,11.5 - parent: 1 - type: Transform -- uid: 8997 - type: Window - components: - - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 1 - type: Transform -- uid: 8998 - type: DisposalUnit - components: - - pos: -13.5,1.5 - parent: 1 - type: Transform -- uid: 8999 - type: SinkStemlessWater - components: - - rot: 3.141592653589793 rad - pos: 8.5,-4.5 - parent: 1 - type: Transform -- uid: 9000 - type: VendingMachineChefvend - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-0.5 - parent: 1 - type: Transform -- uid: 9001 - type: SignalButton - components: - - pos: -9.5,9.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7143 - - port: Toggle - uid: 7142 - - port: Toggle - uid: 7141 - - port: Toggle - uid: 7140 - - port: Toggle - uid: 7139 - - port: Toggle - uid: 7138 - type: SignalTransmitter -- uid: 9002 - type: BarSign - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform -- uid: 9003 - type: VendingMachineSeeds - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,11.5 - parent: 1 - type: Transform -- uid: 9004 - type: hydroponicsTray - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform -- uid: 9005 - type: HydroponicsToolScythe - components: - - pos: 5.5596075,7.522549 - parent: 1 - type: Transform -- uid: 9006 - type: Bucket - components: - - pos: 8.547974,11.674014 - parent: 1 - type: Transform -- uid: 9007 - type: PlantBag - components: - - pos: 5.4701166,7.468245 - parent: 1 - type: Transform -- uid: 9008 - type: RobustHarvestChemistryBottle - components: - - pos: 5.4284496,7.030745 - parent: 1 - type: Transform -- uid: 9009 - type: RobustHarvestChemistryBottle - components: - - pos: 5.5534496,7.0515785 - parent: 1 - type: Transform -- uid: 9010 - type: PineappleSeeds - components: - - pos: 5.4492836,6.4890785 - parent: 1 - type: Transform -- uid: 9011 - type: WindoorHydroponicsLocked - components: - - rot: 3.141592653589793 rad - pos: 7.5,3.5 - parent: 1 - type: Transform -- uid: 9012 - type: WindoorHydroponicsLocked - components: - - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 1 - type: Transform -- uid: 9013 - type: FirelockGlass - components: - - pos: 8.5,3.5 - parent: 1 - type: Transform -- uid: 9014 - type: FirelockGlass - components: - - pos: 7.5,3.5 - parent: 1 - type: Transform -- uid: 9015 - type: Window - components: - - rot: 3.141592653589793 rad - pos: 5.5,3.5 - parent: 1 - type: Transform -- uid: 9016 - type: VendingMachineHappyHonk - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,-4.5 - parent: 1 - type: Transform -- uid: 9017 - type: HospitalCurtainsOpen - components: - - pos: -17.5,3.5 - parent: 1 - type: Transform -- uid: 9018 - type: HospitalCurtainsOpen - components: - - pos: -17.5,1.5 - parent: 1 - type: Transform -- uid: 9019 - type: HospitalCurtainsOpen - components: - - pos: -17.5,-2.5 - parent: 1 - type: Transform -- uid: 9020 - type: PowerCellRecharger - components: - - pos: 13.5,8.5 - parent: 1 - type: Transform -- uid: 9021 - type: TableWood - components: - - pos: -13.5,2.5 - parent: 1 - type: Transform -- uid: 9022 - type: PowerCellRecharger - components: - - pos: -13.5,2.5 - parent: 1 - type: Transform -- uid: 9023 - type: PowerCellRecharger - components: - - pos: 5.5,-13.5 - parent: 1 - type: Transform -- uid: 9024 - type: CrateEngineeringAMEShielding - components: - - pos: 4.5,-36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9025 - type: CrateEngineeringAMEJar - components: - - pos: 8.5,-36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9026 - type: CrateEngineeringAMEShielding - components: - - pos: 5.5,-36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9027 - type: LockerWeldingSuppliesFilled - components: - - pos: 9.5,-36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9028 - type: FirelockGlass - components: - - pos: 11.5,-27.5 - parent: 1 - type: Transform -- uid: 9029 - type: FirelockGlass - components: - - pos: 13.5,-27.5 - parent: 1 - type: Transform -- uid: 9030 - type: FirelockGlass - components: - - pos: 12.5,-27.5 - parent: 1 - type: Transform -- uid: 9031 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 10.5,32.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9032 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 10.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9033 - type: GasPipeStraight - components: - - pos: 11.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9034 - type: GasPipeStraight - components: - - pos: 11.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9035 - type: GasPipeStraight - components: - - pos: 10.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9036 - type: GasVentPump - components: - - pos: 11.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9037 - type: GasVentScrubber - components: - - pos: 10.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9038 - type: NitrousOxideTankFilled - components: - - pos: 16.501478,27.555553 - parent: 1 - type: Transform -- uid: 9039 - type: VendingMachineWallMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,29.5 - parent: 1 - type: Transform -- uid: 9040 - type: RailingCorner - components: - - rot: 1.5707963267948966 rad - pos: -44.5,41.5 - parent: 1 - type: Transform -- uid: 9041 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -47.5,40.5 - parent: 1 - type: Transform -- uid: 9042 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -44.5,40.5 - parent: 1 - type: Transform -- uid: 9043 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -46.5,41.5 - parent: 1 - type: Transform -- uid: 9044 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -45.5,41.5 - parent: 1 - type: Transform -- uid: 9045 - type: SeedExtractor - components: - - pos: 11.5,8.5 - parent: 1 - type: Transform -- uid: 9046 - type: AirlockHydroGlassLocked - components: - - rot: 3.141592653589793 rad - pos: 12.5,9.5 - parent: 1 - type: Transform -- uid: 9047 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,3.5 - parent: 1 - type: Transform -- uid: 9048 - type: FirelockGlass - components: - - pos: 4.5,-4.5 - parent: 1 - type: Transform -- uid: 9049 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 6.5,3.5 - parent: 1 - type: Transform -- uid: 9050 - type: LockerFreezer - components: - - pos: 5.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9051 - type: KitchenMicrowave - components: - - pos: 5.5,2.5 - parent: 1 - type: Transform -- uid: 9052 - type: RandomVending - components: - - pos: 3.5,3.5 - parent: 1 - type: Transform -- uid: 9053 - type: WindowReinforcedDirectional - components: - - pos: -3.5,85.5 - parent: 1 - type: Transform -- uid: 9054 - type: WindowReinforcedDirectional - components: - - pos: -2.5,85.5 - parent: 1 - type: Transform -- uid: 9055 - type: WindowReinforcedDirectional - components: - - pos: -1.5,85.5 - parent: 1 - type: Transform -- uid: 9056 - type: WindowReinforcedDirectional - components: - - pos: 0.5,85.5 - parent: 1 - type: Transform -- uid: 9057 - type: WindowReinforcedDirectional - components: - - pos: 1.5,85.5 - parent: 1 - type: Transform -- uid: 9058 - type: WindowReinforcedDirectional - components: - - pos: 2.5,85.5 - parent: 1 - type: Transform -- uid: 9059 - type: WindowReinforcedDirectional - components: - - pos: 4.5,84.5 - parent: 1 - type: Transform -- uid: 9060 - type: WindowReinforcedDirectional - components: - - pos: 5.5,84.5 - parent: 1 - type: Transform -- uid: 9061 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 7.5,82.5 - parent: 1 - type: Transform -- uid: 9062 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 8.5,80.5 - parent: 1 - type: Transform -- uid: 9063 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 8.5,79.5 - parent: 1 - type: Transform -- uid: 9064 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 9.5,77.5 - parent: 1 - type: Transform -- uid: 9065 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 9.5,76.5 - parent: 1 - type: Transform -- uid: 9066 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,76.5 - parent: 1 - type: Transform -- uid: 9067 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,77.5 - parent: 1 - type: Transform -- uid: 9068 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -9.5,79.5 - parent: 1 - type: Transform -- uid: 9069 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -9.5,80.5 - parent: 1 - type: Transform -- uid: 9070 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -8.5,82.5 - parent: 1 - type: Transform -- uid: 9071 - type: WindowReinforcedDirectional - components: - - pos: -6.5,84.5 - parent: 1 - type: Transform -- uid: 9072 - type: WindowReinforcedDirectional - components: - - pos: -5.5,84.5 - parent: 1 - type: Transform -- uid: 9073 - type: AirlockEngineeringLocked - components: - - pos: 10.5,-10.5 - parent: 1 - type: Transform -- uid: 9074 - type: AirlockEngineeringLocked - components: - - pos: 11.5,-10.5 - parent: 1 - type: Transform -- uid: 9075 - type: AirlockEngineeringGlassLocked - components: - - pos: 11.5,-16.5 - parent: 1 - type: Transform -- uid: 9076 - type: AirlockEngineeringGlassLocked - components: - - pos: 12.5,-16.5 - parent: 1 - type: Transform -- uid: 9077 - type: AirlockEngineeringGlassLocked - components: - - pos: 11.5,-19.5 - parent: 1 - type: Transform -- uid: 9078 - type: AirlockEngineeringGlassLocked - components: - - pos: 12.5,-19.5 - parent: 1 - type: Transform -- uid: 9079 - type: CableMV - components: - - pos: 8.5,-17.5 - parent: 1 - type: Transform -- uid: 9080 - type: Catwalk - components: - - pos: 12.5,-39.5 - parent: 1 - type: Transform -- uid: 9081 - type: Catwalk - components: - - pos: 12.5,-40.5 - parent: 1 - type: Transform -- uid: 9082 - type: Catwalk - components: - - pos: 12.5,-41.5 - parent: 1 - type: Transform -- uid: 9083 - type: PowerCellRecharger - components: - - pos: 4.5,-21.5 - parent: 1 - type: Transform -- uid: 9084 - type: PowerCellRecharger - components: - - pos: 13.5,-14.5 - parent: 1 - type: Transform -- uid: 9085 - type: RadioHandheld - components: - - pos: 6.5608225,-21.29419 - parent: 1 - type: Transform -- uid: 9086 - type: trayScanner - components: - - pos: 6.7274895,-21.335855 - parent: 1 - type: Transform -- uid: 9087 - type: GeigerCounter - components: - - pos: 6.3722563,-21.377989 - parent: 1 - type: Transform -- uid: 9088 - type: Table - components: - - pos: 4.5,-33.5 - parent: 1 - type: Transform -- uid: 9089 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-34.5 - parent: 1 - type: Transform -- uid: 9090 - type: WaterCooler - components: - - pos: 4.5,-32.5 - parent: 1 - type: Transform -- uid: 9091 - type: DrinkMugDog - components: - - pos: 4.278154,-33.29549 - parent: 1 - type: Transform -- uid: 9092 - type: DrinkMugMetal - components: - - pos: 4.507321,-33.378826 - parent: 1 - type: Transform -- uid: 9093 - type: ClothingHandsGlovesColorYellow - components: - - pos: 7.4150662,-11.358664 - parent: 1 - type: Transform -- uid: 9094 - type: ClothingMaskGas - components: - - pos: 7.6234,-11.483664 - parent: 1 - type: Transform -- uid: 9095 - type: ToolboxMechanicalFilled - components: - - pos: 5.3108225,-21.315023 - parent: 1 - type: Transform -- uid: 9096 - type: ToolboxElectricalFilled - components: - - pos: 5.5191555,-21.48169 - parent: 1 - type: Transform -- uid: 9097 - type: DisposalUnit - components: - - pos: 10.5,-15.5 - parent: 1 - type: Transform -- uid: 9098 - type: RCD - components: - - pos: 6.6163073,-24.303488 - parent: 1 - type: Transform -- uid: 9099 - type: RCDAmmo - components: - - pos: 6.6163073,-24.511822 - parent: 1 - type: Transform -- uid: 9100 - type: RCDAmmo - components: - - pos: 6.4288073,-24.595156 - parent: 1 - type: Transform -- uid: 9101 - type: HolofanProjector - components: - - pos: 6.6579733,-24.865988 - parent: 1 - type: Transform -- uid: 9102 - type: AcousticGuitarInstrument - components: - - pos: 6.605979,-25.237396 - parent: 1 - type: Transform -- uid: 9103 - type: HospitalCurtainsOpen - components: - - pos: 4.5,-23.5 - parent: 1 - type: Transform -- uid: 9104 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 1 - type: Transform -- uid: 9105 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-25.5 - parent: 1 - type: Transform -- uid: 9106 - type: BoxFolderYellow - components: - - pos: 5.460146,-25.362396 - parent: 1 - type: Transform -- uid: 9107 - type: BoxFolderBlack - components: - - pos: 5.668479,-25.549896 - parent: 1 - type: Transform -- uid: 9108 - type: PaperOffice - components: - - pos: 5.647646,-25.362396 - parent: 1 - type: Transform -- uid: 9109 - type: PaperOffice - components: - - pos: 5.376813,-25.591562 - parent: 1 - type: Transform -- uid: 9110 - type: Dresser - components: - - pos: 5.5,-23.5 - parent: 1 - type: Transform -- uid: 9111 - type: LockerChiefEngineerFilled - components: - - pos: 6.5,-23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9112 - type: AirlockEngineeringGlassLocked - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform -- uid: 9113 - type: AirlockChiefEngineerGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-24.5 - parent: 1 - type: Transform -- uid: 9114 - type: ClothingBeltUtilityFilled - components: - - pos: 10.45504,-18.357496 - parent: 1 - type: Transform -- uid: 9115 - type: TableReinforced - components: - - pos: 13.5,-21.5 - parent: 1 - type: Transform -- uid: 9116 - type: TableReinforced - components: - - pos: 13.5,-20.5 - parent: 1 - type: Transform -- uid: 9117 - type: TableReinforced - components: - - pos: 13.5,-22.5 - parent: 1 - type: Transform -- uid: 9118 - type: TableReinforced - components: - - pos: 13.5,-24.5 - parent: 1 - type: Transform -- uid: 9119 - type: TableReinforced - components: - - pos: 13.5,-25.5 - parent: 1 - type: Transform -- uid: 9120 - type: SheetSteel - components: - - pos: 13.53321,-20.508276 - parent: 1 - type: Transform -- uid: 9121 - type: SheetGlass - components: - - pos: 13.53321,-20.862442 - parent: 1 - type: Transform -- uid: 9122 - type: SheetPGlass - components: - - pos: 13.554044,-21.237442 - parent: 1 - type: Transform -- uid: 9123 - type: PartRodMetal - components: - - pos: 13.554044,-21.633276 - parent: 1 - type: Transform -- uid: 9124 - type: CableHVStack - components: - - pos: 13.366544,-22.108011 - parent: 1 - type: Transform -- uid: 9125 - type: CableMVStack - components: - - pos: 13.491544,-22.233011 - parent: 1 - type: Transform -- uid: 9126 - type: CableApcStack - components: - - pos: 13.59571,-22.378843 - parent: 1 - type: Transform -- uid: 9127 - type: APCElectronics - components: - - pos: 13.367671,-24.354437 - parent: 1 - type: Transform -- uid: 9128 - type: AirAlarmElectronics - components: - - pos: 13.596838,-24.666937 - parent: 1 - type: Transform -- uid: 9129 - type: DoorElectronics - components: - - pos: 13.305171,-24.81277 - parent: 1 - type: Transform -- uid: 9130 - type: DoorElectronics - components: - - pos: 13.409338,-24.958605 - parent: 1 - type: Transform -- uid: 9131 - type: FireAlarmElectronics - components: - - pos: 13.701005,-25.229437 - parent: 1 - type: Transform -- uid: 9132 - type: FirelockElectronics - components: - - pos: 13.367671,-25.458605 - parent: 1 - type: Transform -- uid: 9133 - type: FirelockElectronics - components: - - pos: 13.263505,-25.166937 - parent: 1 - type: Transform -- uid: 9134 - type: TableReinforced - components: - - pos: 8.5,-32.5 - parent: 1 - type: Transform -- uid: 9135 - type: TableReinforced - components: - - pos: 9.5,-32.5 - parent: 1 - type: Transform -- uid: 9136 - type: AirlockEngineeringGlassLocked - components: - - pos: 7.5,-31.5 - parent: 1 - type: Transform -- uid: 9137 - type: AirlockEngineeringGlassLocked - components: - - pos: 6.5,-31.5 - parent: 1 - type: Transform -- uid: 9138 - type: AirlockEngineeringGlassLocked - components: - - pos: 7.5,-35.5 - parent: 1 - type: Transform -- uid: 9139 - type: AirlockEngineeringGlassLocked - components: - - pos: 6.5,-35.5 - parent: 1 - type: Transform -- uid: 9140 - type: TableReinforced - components: - - pos: 10.5,-32.5 - parent: 1 - type: Transform -- uid: 9141 - type: KitchenMicrowave - components: - - pos: 10.5,-32.5 - parent: 1 - type: Transform -- uid: 9142 - type: DonkpocketBoxSpawner - components: - - pos: 9.5,-32.5 - parent: 1 - type: Transform -- uid: 9143 - type: RandomDrinkGlass - components: - - pos: 8.5,-32.5 - parent: 1 - type: Transform -- uid: 9144 - type: AMEController - components: - - pos: 4.5,-37.5 - parent: 1 - type: Transform -- uid: 9145 - type: SpawnPointBartender - components: - - pos: -7.5,11.5 - parent: 1 - type: Transform -- uid: 9146 - type: SpawnPointBotanist - components: - - pos: 15.5,10.5 - parent: 1 - type: Transform -- uid: 9147 - type: SpawnPointBotanist - components: - - pos: 14.5,10.5 - parent: 1 - type: Transform -- uid: 9148 - type: SpawnPointChef - components: - - pos: 8.5,-1.5 - parent: 1 - type: Transform -- uid: 9149 - type: CaptainIDCard - components: - - pos: -6.3624535,72.644104 - parent: 1 - type: Transform -- uid: 9150 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -5.5,9.5 - parent: 1 - type: Transform - - devices: - - 5769 - - 5770 - - 5771 - - 5772 - - 8926 - - 5783 - - 5784 - - 5785 - - 9048 - - 5760 - - 5759 - - 5758 - - 5757 - - 5779 - - 5780 - - 5781 - - 5778 - - 5777 - - 5776 - type: DeviceList -- uid: 9151 - type: SpawnPointMime - components: - - pos: -16.5,4.5 - parent: 1 - type: Transform -- uid: 9152 - type: SpawnPointMusician - components: - - pos: -17.5,-4.5 - parent: 1 - type: Transform -- uid: 9153 - type: SpawnPointLawyer - components: - - pos: 4.5,63.5 - parent: 1 - type: Transform -- uid: 9154 - type: SpawnPointSalvageSpecialist - components: - - pos: -37.5,27.5 - parent: 1 - type: Transform -- uid: 9155 - type: SpawnPointSalvageSpecialist - components: - - pos: -37.5,26.5 - parent: 1 - type: Transform -- uid: 9156 - type: SpawnPointSalvageSpecialist - components: - - pos: -37.5,25.5 - parent: 1 - type: Transform -- uid: 9157 - type: SpawnPointCargoTechnician - components: - - pos: -36.5,11.5 - parent: 1 - type: Transform -- uid: 9158 - type: SpawnPointCargoTechnician - components: - - pos: -35.5,11.5 - parent: 1 - type: Transform -- uid: 9159 - type: VendingMachineCargoDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -36.5,9.5 - parent: 1 - type: Transform -- uid: 9160 - type: SpawnPointLibrarian - components: - - pos: -25.5,2.5 - parent: 1 - type: Transform -- uid: 9161 - type: WindowDirectional - components: - - pos: -26.5,6.5 - parent: 1 - type: Transform -- uid: 9162 - type: Fireplace - components: - - pos: -23.5,3.5 - parent: 1 - type: Transform -- uid: 9163 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: -26.5,5.5 - parent: 1 - type: Transform -- uid: 9164 - type: SpawnPointJanitor - components: - - pos: 17.5,-4.5 - parent: 1 - type: Transform -- uid: 9165 - type: SpawnPointJanitor - components: - - pos: 17.5,-5.5 - parent: 1 - type: Transform -- uid: 9166 - type: SpawnPointStationEngineer - components: - - pos: 4.5,-18.5 - parent: 1 - type: Transform -- uid: 9167 - type: SpawnPointStationEngineer - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform -- uid: 9168 - type: SpawnPointTechnicalAssistant - components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform -- uid: 9169 - type: SpawnPointTechnicalAssistant - components: - - pos: 8.5,-14.5 - parent: 1 - type: Transform -- uid: 9170 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-24.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 17632 - - port: Toggle - uid: 17633 - - port: Toggle - uid: 17631 - type: SignalTransmitter -- uid: 9171 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 1 - type: Transform -- uid: 9172 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -20.5,0.5 - parent: 1 - type: Transform -- uid: 9173 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -21.5,0.5 - parent: 1 - type: Transform -- uid: 9174 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 1 - type: Transform -- uid: 9175 - type: ChairOfficeLight - components: - - pos: 8.5,-14.5 - parent: 1 - type: Transform -- uid: 9176 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-12.5 - parent: 1 - type: Transform -- uid: 9177 - type: FaxMachineBase - components: - - pos: 13.5,-11.5 - parent: 1 - type: Transform - - name: Engineering - type: FaxMachine -- uid: 9178 - type: BoxFolderYellow - components: - - pos: 13.689603,-12.275042 - parent: 1 - type: Transform -- uid: 9179 - type: BoxFolderYellow - components: - - pos: 13.41877,-12.462542 - parent: 1 - type: Transform -- uid: 9180 - type: PaperOffice - components: - - pos: 13.647936,-12.608375 - parent: 1 - type: Transform -- uid: 9181 - type: PaperOffice - components: - - pos: 13.41877,-12.212542 - parent: 1 - type: Transform -- uid: 9182 - type: trayScanner - components: - - pos: 12.564603,-11.337542 - parent: 1 - type: Transform -- uid: 9183 - type: BookAtmosDistro - components: - - pos: 7.4437623,-15.369677 - parent: 1 - type: Transform -- uid: 9184 - type: BookAtmosVentsMore - components: - - pos: -11.074379,-15.383043 - parent: 1 - type: Transform -- uid: 9185 - type: BookAtmosAirAlarms - components: - - pos: 6.038775,-21.429781 - parent: 1 - type: Transform -- uid: 9186 - type: BookAtmosWaste - components: - - pos: -13.559183,-33.321575 - parent: 1 - type: Transform -- uid: 9187 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 1 - type: Transform -- uid: 9188 - type: SheetSteel - components: - - pos: 8.490331,-11.469109 - parent: 1 - type: Transform -- uid: 9189 - type: ClothingEyesGlassesMeson - components: - - pos: 9.406997,-15.281609 - parent: 1 - type: Transform -- uid: 9190 - type: ClothingUniformJumpsuitEngineeringHazard - components: - - pos: 9.531997,-15.469109 - parent: 1 - type: Transform -- uid: 9191 - type: FlashlightLantern - components: - - pos: 9.627577,-15.47229 - parent: 1 - type: Transform -- uid: 9192 - type: AirlockMaintEngiLocked - components: - - pos: 5.5,-15.5 - parent: 1 - type: Transform -- uid: 9193 - type: WindoorEngineeringLocked - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 - parent: 1 - type: Transform -- uid: 9194 - type: WindoorEngineeringLocked - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 1 - type: Transform -- uid: 9195 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9196 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9197 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9198 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9199 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9200 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9201 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9202 - type: StorageCanister - components: - - pos: -7.5,-41.5 - parent: 1 - type: Transform -- uid: 9203 - type: GasThermoMachineHeater - components: - - pos: -13.5,-35.5 - parent: 1 - type: Transform -- uid: 9204 - type: GasThermoMachineFreezer - components: - - pos: -13.5,-22.5 - parent: 1 - type: Transform -- uid: 9205 - type: FireAxeCabinetFilled - components: - - pos: -10.5,-20.5 - parent: 1 - type: Transform -- uid: 9206 - type: FireAxeCabinetFilled - components: - - rot: 1.5707963267948966 rad - pos: -7.5,81.5 - parent: 1 - type: Transform -- uid: 9207 - type: DrinkMugOne - components: - - pos: 2.4034402,71.704254 - parent: 1 - type: Transform -- uid: 9208 - type: DrinkMugBlue - components: - - pos: 2.5492742,71.47509 - parent: 1 - type: Transform -- uid: 9209 - type: RubberStampDenied - components: - - pos: 5.143981,72.62612 - parent: 1 - type: Transform -- uid: 9210 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -7.5,73.5 - parent: 1 - type: Transform -- uid: 9211 - type: MaterialDurathread - components: - - pos: 24.961397,4.401341 - parent: 1 - type: Transform -- uid: 9212 - type: MaterialCloth - components: - - pos: 24.961397,4.807591 - parent: 1 - type: Transform -- uid: 9213 - type: BrbSign - components: - - pos: 25.652977,4.377818 - parent: 1 - type: Transform -- uid: 9214 - type: RubberStampApproved - components: - - pos: 25.569645,4.690318 - parent: 1 - type: Transform -- uid: 9215 - type: RubberStampDenied - components: - - pos: 25.298811,4.5236516 - parent: 1 - type: Transform -- uid: 9216 - type: DogBed - components: - - pos: 24.5,2.5 - parent: 1 - type: Transform -- uid: 9217 - type: SpawnMobCorgi - components: - - pos: 24.5,2.5 - parent: 1 - type: Transform -- uid: 9218 - type: BoxFolderGrey - components: - - pos: 25.298811,4.565318 - parent: 1 - type: Transform -- uid: 9219 - type: BoxFolderGrey - components: - - pos: 25.548811,4.5861516 - parent: 1 - type: Transform -- uid: 9220 - type: PaperOffice - components: - - pos: 25.298811,4.502818 - parent: 1 - type: Transform -- uid: 9221 - type: PaperOffice - components: - - pos: 25.423811,4.7111516 - parent: 1 - type: Transform -- uid: 9222 - type: GrilleBroken - components: - - pos: -49.5,52.5 - parent: 1 - type: Transform -- uid: 9223 - type: PaperBin10 - components: - - pos: 27.5,2.5 - parent: 1 - type: Transform -- uid: 9224 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -35.5,60.5 - parent: 1 - type: Transform -- uid: 9225 - type: Pen - components: - - pos: 27.715477,2.7528179 - parent: 1 - type: Transform -- uid: 9226 - type: FaxMachineBase - components: - - pos: 24.5,4.5 - parent: 1 - type: Transform - - name: HoP's Office - type: FaxMachine -- uid: 9227 - type: SheetPlasteel - components: - - pos: 13.566712,-21.504738 - parent: 1 - type: Transform -- uid: 9228 - type: SheetPlasteel - components: - - pos: -25.454273,-11.628785 - parent: 1 - type: Transform -- uid: 9229 - type: SheetSteel - components: - - pos: -25.454273,-12.045451 - parent: 1 - type: Transform -- uid: 9230 - type: SheetGlass - components: - - pos: -25.433441,-12.420451 - parent: 1 - type: Transform -- uid: 9231 - type: PartRodMetal - components: - - pos: -25.391773,-12.691285 - parent: 1 - type: Transform -- uid: 9232 - type: PowerCellRecharger - components: - - pos: -25.5,-13.5 - parent: 1 - type: Transform -- uid: 9233 - type: GasAnalyzer - components: - - pos: -22.495941,-11.441285 - parent: 1 - type: Transform -- uid: 9234 - type: HolofanProjector - components: - - pos: -21.60011,-11.462118 - parent: 1 - type: Transform -- uid: 9235 - type: trayScanner - components: - - pos: -21.85011,-11.441285 - parent: 1 - type: Transform -- uid: 9236 - type: GeigerCounter - components: - - pos: -22.141773,-11.462118 - parent: 1 - type: Transform -- uid: 9237 - type: ToolboxElectricalFilled - components: - - pos: -22.433441,-13.274618 - parent: 1 - type: Transform -- uid: 9238 - type: ToolboxMechanicalFilled - components: - - pos: -22.28761,-13.462118 - parent: 1 - type: Transform -- uid: 9239 - type: ClothingHandsGlovesColorYellow - components: - - pos: -21.620941,-13.378785 - parent: 1 - type: Transform -- uid: 9240 - type: AirlockBarLocked - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform -- uid: 9241 - type: AirlockMaintBarLocked - components: - - pos: -11.5,11.5 - parent: 1 - type: Transform -- uid: 9242 - type: Grille - components: - - pos: -14.5,3.5 - parent: 1 - type: Transform -- uid: 9243 - type: Grille - components: - - pos: -14.5,-2.5 - parent: 1 - type: Transform -- uid: 9244 - type: AirlockTheatreLocked - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform -- uid: 9245 - type: AirlockTheatreLocked - components: - - pos: -14.5,4.5 - parent: 1 - type: Transform -- uid: 9246 - type: AirlockTheatreLocked - components: - - pos: -14.5,-3.5 - parent: 1 - type: Transform -- uid: 9247 - type: AirlockMaintTheatreLocked - components: - - pos: -18.5,-5.5 - parent: 1 - type: Transform -- uid: 9248 - type: AirlockMaintTheatreLocked - components: - - pos: -18.5,-0.5 - parent: 1 - type: Transform -- uid: 9249 - type: AirlockMaintTheatreLocked - components: - - pos: -18.5,5.5 - parent: 1 - type: Transform -- uid: 9250 - type: PoweredSmallLight - components: - - pos: -16.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9251 - type: PoweredSmallLight - components: - - pos: -16.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9252 - type: PoweredSmallLight - components: - - pos: -16.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9253 - type: SprayBottleSpaceCleaner - components: - - pos: 16.478226,-4.855578 - parent: 1 - type: Transform -- uid: 9254 - type: Soap - components: - - pos: 16.665726,-4.834745 - parent: 1 - type: Transform -- uid: 9255 - type: BoxTrashbag - components: - - pos: 16.332394,-5.251412 - parent: 1 - type: Transform -- uid: 9256 - type: WetFloorSign - components: - - pos: 16.624058,-5.188912 - parent: 1 - type: Transform -- uid: 9257 - type: WetFloorSign - components: - - pos: 16.769894,-5.480578 - parent: 1 - type: Transform -- uid: 9258 - type: WetFloorSign - components: - - pos: 19.594421,-7.376412 - parent: 1 - type: Transform -- uid: 9259 - type: VendingMachineJaniDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 22.5,-2.5 - parent: 1 - type: Transform -- uid: 9260 - type: ClosetL3JanitorFilled - components: - - pos: 21.5,-2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9261 - type: ClosetJanitorFilled - components: - - pos: 20.5,-2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9262 - type: LampGold - components: - - pos: 23.380928,11.849496 - parent: 1 - type: Transform -- uid: 9263 - type: TableWood - components: - - pos: 23.5,11.5 - parent: 1 - type: Transform -- uid: 9264 - type: TableWood - components: - - pos: 24.5,11.5 - parent: 1 - type: Transform -- uid: 9265 - type: Bookshelf - components: - - pos: 27.5,11.5 - parent: 1 - type: Transform -- uid: 9266 - type: CarpetSBlue - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform -- uid: 9267 - type: CarpetSBlue - components: - - pos: 27.5,8.5 - parent: 1 - type: Transform -- uid: 9268 - type: CarpetSBlue - components: - - pos: 27.5,9.5 - parent: 1 - type: Transform -- uid: 9269 - type: CarpetSBlue - components: - - pos: 26.5,9.5 - parent: 1 - type: Transform -- uid: 9270 - type: BookRandom - components: - - pos: 24.172997,11.661996 - parent: 1 - type: Transform -- uid: 9271 - type: ClothingEyesGlasses - components: - - pos: 24.589664,11.557829 - parent: 1 - type: Transform -- uid: 9272 - type: ClothingNeckMantleHOP - components: - - pos: 23.735497,11.474496 - parent: 1 - type: Transform -- uid: 9273 - type: PenHop - components: - - pos: 24.527164,11.786996 - parent: 1 - type: Transform -- uid: 9274 - type: AirlockMaintHOPLocked - components: - - pos: 22.5,2.5 - parent: 1 - type: Transform -- uid: 9275 - type: AirlockHeadOfPersonnelLocked - components: - - pos: 28.5,10.5 - parent: 1 - type: Transform -- uid: 9276 - type: AirlockHeadOfPersonnelGlassLocked - components: - - pos: 23.5,8.5 - parent: 1 - type: Transform -- uid: 9277 - type: WindoorHeadOfPersonnelLocked - components: - - rot: -1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 - type: Transform -- uid: 9278 - type: ShuttersNormalOpen - components: - - pos: 26.5,3.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17647 - type: SignalReceiver -- uid: 9279 - type: ShuttersNormalOpen - components: - - pos: 26.5,4.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17647 - type: SignalReceiver -- uid: 9280 - type: ShuttersNormalOpen - components: - - pos: 26.5,5.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17647 - type: SignalReceiver -- uid: 9281 - type: ShuttersNormalOpen - components: - - pos: 26.5,6.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17647 - type: SignalReceiver -- uid: 9282 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 24.5,10.5 - parent: 1 - type: Transform -- uid: 9283 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 23.5,10.5 - parent: 1 - type: Transform -- uid: 9284 - type: WeaponDisablerPractice - components: - - pos: 23.450686,10.918031 - parent: 1 - type: Transform -- uid: 9285 - type: WeaponCapacitorRecharger - components: - - pos: 23.5,10.5 - parent: 1 - type: Transform -- uid: 9286 - type: LockerHeadOfPersonnelFilled - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9287 - type: FoodKebabSkewer - components: - - pos: 12.36344,-0.23422778 - parent: 1 - type: Transform -- uid: 9288 - type: FoodKebabSkewer - components: - - pos: 12.571773,-0.33839428 - parent: 1 - type: Transform -- uid: 9289 - type: FoodBowlBig - components: - - pos: 12.48844,-0.40089428 - parent: 1 - type: Transform -- uid: 9290 - type: FoodPlateTin - components: - - pos: 12.42594,-0.8383943 - parent: 1 - type: Transform -- uid: 9291 - type: FoodPlate - components: - - pos: 12.33918,-1.1745799 - parent: 1 - type: Transform -- uid: 9292 - type: FoodPlateSmall - components: - - pos: 12.342606,-1.2967278 - parent: 1 - type: Transform -- uid: 9293 - type: DrinkGlass - components: - - pos: 12.67594,-1.3800613 - parent: 1 - type: Transform -- uid: 9294 - type: CableMV - components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform -- uid: 9295 - type: ClosetLegalFilled - components: - - pos: 7.5,61.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9296 - type: DiceBag - components: - - pos: 20.707039,40.88435 - parent: 1 - type: Transform -- uid: 9297 - type: ReagentContainerMilkOat - components: - - pos: 5.35893,2.077802 - parent: 1 - type: Transform -- uid: 9298 - type: ReagentContainerMilkSoy - components: - - pos: 5.504763,1.973635 - parent: 1 - type: Transform -- uid: 9299 - type: DrinkMilkCarton - components: - - pos: 5.60893,1.827802 - parent: 1 - type: Transform -- uid: 9300 - type: FoodCondimentBottleEnzyme - components: - - pos: 5.3300986,1.7788405 - parent: 1 - type: Transform -- uid: 9301 - type: FoodBoxNugget - components: - - pos: 8.655134,0.48492008 - parent: 1 - type: Transform -- uid: 9302 - type: DrinkLean - components: - - pos: 8.325398,0.6884294 - parent: 1 - type: Transform -- uid: 9303 - type: Rack - components: - - pos: -34.5,2.5 - parent: 1 - type: Transform -- uid: 9304 - type: SheetSteel - components: - - pos: -34.606266,2.567701 - parent: 1 - type: Transform -- uid: 9305 - type: SheetPlastic - components: - - pos: -34.293766,2.546868 - parent: 1 - type: Transform -- uid: 9306 - type: AirlockGlass - components: - - pos: 20.5,14.5 - parent: 1 - type: Transform -- uid: 9307 - type: PowerCellRecharger - components: - - pos: -38.5,8.5 - parent: 1 - type: Transform -- uid: 9308 - type: CrateFunArtSupplies - components: - - pos: -38.5,-7.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9309 - type: CrateServiceBooks - components: - - pos: -43.5,-5.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9310 - type: CrateServiceBureaucracy - components: - - pos: -38.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9311 - type: CrateFilledSpawner - components: - - pos: -39.5,-6.5 - parent: 1 - type: Transform -- uid: 9312 - type: CrateFilledSpawner - components: - - pos: -42.5,-4.5 - parent: 1 - type: Transform -- uid: 9313 - type: CrateFilledSpawner - components: - - pos: -40.5,6.5 - parent: 1 - type: Transform -- uid: 9314 - type: CrateEmptySpawner - components: - - pos: -38.5,-5.5 - parent: 1 - type: Transform -- uid: 9315 - type: CrateEmptySpawner - components: - - pos: -38.5,-6.5 - parent: 1 - type: Transform -- uid: 9316 - type: CrateEmptySpawner - components: - - pos: -39.5,-7.5 - parent: 1 - type: Transform -- uid: 9317 - type: CrateEmptySpawner - components: - - pos: -39.5,-5.5 - parent: 1 - type: Transform -- uid: 9318 - type: CrateEmptySpawner - components: - - pos: -43.5,-4.5 - parent: 1 - type: Transform -- uid: 9319 - type: CrateEmptySpawner - components: - - pos: -42.5,-5.5 - parent: 1 - type: Transform -- uid: 9320 - type: CrateEmptySpawner - components: - - pos: -43.5,-6.5 - parent: 1 - type: Transform -- uid: 9321 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: -43.5,-7.5 - parent: 1 - type: Transform -- uid: 9322 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: -39.5,-4.5 - parent: 1 - type: Transform -- uid: 9323 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: -42.5,-6.5 - parent: 1 - type: Transform -- uid: 9324 - type: BedsheetQM - components: - - pos: -42.5,11.5 - parent: 1 - type: Transform -- uid: 9325 - type: HospitalCurtainsOpen - components: - - pos: -42.5,11.5 - parent: 1 - type: Transform -- uid: 9326 - type: Bed - components: - - pos: -42.5,11.5 - parent: 1 - type: Transform -- uid: 9327 - type: Dresser - components: - - pos: -43.5,11.5 - parent: 1 - type: Transform -- uid: 9328 - type: TableWood - components: - - pos: -42.5,7.5 - parent: 1 - type: Transform -- uid: 9329 - type: TableWood - components: - - pos: -43.5,7.5 - parent: 1 - type: Transform -- uid: 9330 - type: TableWood - components: - - pos: -43.5,8.5 - parent: 1 - type: Transform -- uid: 9331 - type: ClothingHeadHatQMsoftFlipped - components: - - pos: -42.387295,7.580193 - parent: 1 - type: Transform -- uid: 9332 - type: AppraisalTool - components: - - pos: -42.699795,7.55936 - parent: 1 - type: Transform -- uid: 9333 - type: ClothingBeltHolster - components: - - pos: -43.116463,7.68436 - parent: 1 - type: Transform -- uid: 9334 - type: DrinkMugMoebius - components: - - pos: -43.366463,7.49686 - parent: 1 - type: Transform -- uid: 9335 - type: BoxFolderYellow - components: - - pos: -43.637295,8.517693 - parent: 1 - type: Transform -- uid: 9336 - type: BoxFolderYellow - components: - - pos: -43.366463,8.267693 - parent: 1 - type: Transform -- uid: 9337 - type: BoxFolderGrey - components: - - pos: -43.574795,8.288526 - parent: 1 - type: Transform -- uid: 9338 - type: RubberStampApproved - components: - - pos: -43.345627,8.726026 - parent: 1 - type: Transform -- uid: 9339 - type: RubberStampDenied - components: - - pos: -43.470627,8.455193 - parent: 1 - type: Transform -- uid: 9340 - type: LampGold - components: - - pos: -43.595627,7.955193 - parent: 1 - type: Transform -- uid: 9341 - type: ChairWood - components: - - pos: -42.5,8.5 - parent: 1 - type: Transform -- uid: 9342 - type: LockerQuarterMasterFilled - components: - - pos: -43.5,9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9343 - type: ShuttersNormalOpen - components: - - pos: -44.5,9.5 - parent: 1 - type: Transform -- uid: 9344 - type: ShuttersNormalOpen - components: - - pos: -44.5,8.5 - parent: 1 - type: Transform -- uid: 9345 - type: ShuttersNormalOpen - components: - - pos: -44.5,7.5 - parent: 1 - type: Transform -- uid: 9346 - type: ShuttersNormalOpen - components: - - pos: -43.5,6.5 - parent: 1 - type: Transform -- uid: 9347 - type: ShuttersNormalOpen - components: - - pos: -42.5,6.5 - parent: 1 - type: Transform -- uid: 9348 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: -44.5,10.5 - parent: 1 - type: Transform -- uid: 9349 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -43.5,11.5 - parent: 1 - type: Transform -- uid: 9350 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -43.5,10.5 - parent: 1 - type: Transform -- uid: 9351 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -42.5,11.5 - parent: 1 - type: Transform -- uid: 9352 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -42.5,10.5 - parent: 1 - type: Transform -- uid: 9353 - type: AirlockCargoLocked - components: - - rot: 1.5707963267948966 rad - pos: -35.5,3.5 - parent: 1 - type: Transform -- uid: 9354 - type: AirlockCargoGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: -37.5,10.5 - parent: 1 - type: Transform -- uid: 9355 - type: WindoorSecureCargoLocked - components: - - rot: -1.5707963267948966 rad - pos: -36.5,6.5 - parent: 1 - type: Transform -- uid: 9356 - type: WindoorSecureCargoLocked - components: - - rot: -1.5707963267948966 rad - pos: -36.5,7.5 - parent: 1 - type: Transform -- uid: 9357 - type: WindoorSecureCargoLocked - components: - - pos: -35.5,12.5 - parent: 1 - type: Transform -- uid: 9358 - type: AirlockQuartermasterGlassLocked - components: - - pos: -41.5,9.5 - parent: 1 - type: Transform -- uid: 9359 - type: AirlockSecurityGlassLocked - components: - - pos: -37.5,-1.5 - parent: 1 - type: Transform -- uid: 9360 - type: AirlockSecurityGlassLocked - components: - - pos: -33.5,-4.5 - parent: 1 - type: Transform -- uid: 9361 - type: AirlockMaintSecLocked - components: - - pos: -36.5,-6.5 - parent: 1 - type: Transform -- uid: 9362 - type: TwoWayLever - components: - - pos: -40.5,3.5 - parent: 1 - type: Transform - - outputs: - Left: - - port: Forward - uid: 4141 - - port: Forward - uid: 4142 - - port: Forward - uid: 4143 - - port: Forward - uid: 4144 - - port: Forward - uid: 4145 - - port: Forward - uid: 4137 - - port: Forward - uid: 4138 - - port: Forward - uid: 4139 - - port: Forward - uid: 4140 - - port: Forward - uid: 4148 - Right: - - port: Reverse - uid: 4141 - - port: Reverse - uid: 4142 - - port: Reverse - uid: 4143 - - port: Reverse - uid: 4144 - - port: Reverse - uid: 4145 - - port: Reverse - uid: 4137 - - port: Reverse - uid: 4138 - - port: Reverse - uid: 4139 - - port: Reverse - uid: 4140 - - port: Reverse - uid: 4148 - Middle: - - port: Off - uid: 4141 - - port: Off - uid: 4142 - - port: Off - uid: 4143 - - port: Off - uid: 4144 - - port: Off - uid: 4145 - - port: Off - uid: 4137 - - port: Off - uid: 4138 - - port: Off - uid: 4139 - - port: Off - uid: 4140 - - port: Off - uid: 4148 - type: SignalTransmitter -- uid: 9363 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: -41.5,3.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 110 - - port: Toggle - uid: 286 - - port: Toggle - uid: 109 - - port: Toggle - uid: 287 - type: SignalTransmitter -- uid: 9364 - type: TwoWayLever - components: - - pos: -37.5,4.5 - parent: 1 - type: Transform - - outputs: - Left: - - port: Forward - uid: 4147 - - port: Forward - uid: 4146 - Right: - - port: Reverse - uid: 4147 - - port: Reverse - uid: 4146 - Middle: - - port: Off - uid: 4147 - - port: Off - uid: 4146 - type: SignalTransmitter -- uid: 9365 - type: AirlockSalvageGlassLocked - components: - - pos: -37.5,16.5 - parent: 1 - type: Transform -- uid: 9366 - type: AirlockExternalGlassCargoLocked - components: - - pos: -39.5,25.5 - parent: 1 - type: Transform -- uid: 9367 - type: AirlockExternalGlassCargoLocked - components: - - pos: -39.5,26.5 - parent: 1 - type: Transform -- uid: 9368 - type: AirlockExternalGlassCargoLocked - components: - - pos: -42.5,25.5 - parent: 1 - type: Transform -- uid: 9369 - type: AirlockExternalGlassCargoLocked - components: - - pos: -42.5,26.5 - parent: 1 - type: Transform -- uid: 9370 - type: WindoorSecureSalvageLocked - components: - - rot: 3.141592653589793 rad - pos: -39.5,16.5 - parent: 1 - type: Transform -- uid: 9371 - type: AirlockMaintSalvageLocked - components: - - rot: 3.141592653589793 rad - pos: -36.5,21.5 - parent: 1 - type: Transform -- uid: 9372 - type: PowerCellRecharger - components: - - rot: 3.141592653589793 rad - pos: -39.5,19.5 - parent: 1 - type: Transform -- uid: 9373 - type: JetpackMini - components: - - pos: -39.45102,20.252634 - parent: 1 - type: Transform -- uid: 9374 - type: Pickaxe - components: - - pos: -36.617687,24.76819 - parent: 1 - type: Transform -- uid: 9375 - type: Pickaxe - components: - - pos: -36.346855,24.622356 - parent: 1 - type: Transform -- uid: 9376 - type: OreBag - components: - - pos: -36.51352,24.664022 - parent: 1 - type: Transform -- uid: 9377 - type: CableApcStack - components: - - pos: -39.617687,21.559856 - parent: 1 - type: Transform -- uid: 9378 - type: PartRodMetal - components: - - pos: -39.430187,21.351522 - parent: 1 - type: Transform -- uid: 9379 - type: FireExtinguisher - components: - - pos: -38.70102,30.86758 - parent: 1 - type: Transform -- uid: 9380 - type: FireExtinguisher - components: - - pos: -38.45102,30.68008 - parent: 1 - type: Transform -- uid: 9381 - type: HandheldGPSBasic - components: - - pos: -37.346855,30.78016 - parent: 1 - type: Transform -- uid: 9382 - type: HandheldGPSBasic - components: - - pos: -37.51352,30.59266 - parent: 1 - type: Transform -- uid: 9383 - type: RadioHandheld - components: - - pos: -37.659355,30.800995 - parent: 1 - type: Transform -- uid: 9384 - type: RadioHandheld - components: - - pos: -37.784355,30.550995 - parent: 1 - type: Transform -- uid: 9385 - type: Brutepack - components: - - pos: -38.034355,30.71766 - parent: 1 - type: Transform -- uid: 9386 - type: ToolboxMechanicalFilled - components: - - pos: -39.492687,20.65749 - parent: 1 - type: Transform -- uid: 9387 - type: ClosetEmergencyFilledRandom - components: - - pos: 48.5,-6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9388 - type: HandheldGPSBasic - components: - - pos: -43.72039,-2.2772734 - parent: 1 - type: Transform -- uid: 9389 - type: AppraisalTool - components: - - pos: -43.303722,-2.4856074 - parent: 1 - type: Transform -- uid: 9390 - type: CrateEmptySpawner - components: - - pos: -40.5,0.5 - parent: 1 - type: Transform -- uid: 9391 - type: LockerEvidence - components: - - pos: -36.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9392 - type: LockerEvidence - components: - - pos: -35.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9393 - type: TableReinforced - components: - - pos: -34.5,-5.5 - parent: 1 - type: Transform -- uid: 9394 - type: TableReinforced - components: - - pos: -35.5,-5.5 - parent: 1 - type: Transform -- uid: 9395 - type: WeaponCapacitorRecharger - components: - - pos: -35.5,-5.5 - parent: 1 - type: Transform -- uid: 9396 - type: Handcuffs - components: - - pos: -34.812588,-5.3036704 - parent: 1 - type: Transform -- uid: 9397 - type: Flash - components: - - pos: -34.791756,-5.4286704 - parent: 1 - type: Transform -- uid: 9398 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-1.5 - parent: 1 - type: Transform -- uid: 9399 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 1 - type: Transform -- uid: 9400 - type: DisposalUnit - components: - - pos: -7.5,-14.5 - parent: 1 - type: Transform -- uid: 9401 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,-19.5 - parent: 1 - type: Transform -- uid: 9402 - type: HighSecCommandLocked - components: - - pos: -19.5,-18.5 - parent: 1 - type: Transform -- uid: 9403 - type: SubstationBasic - components: - - pos: -23.5,-18.5 - parent: 1 - type: Transform -- uid: 9404 - type: SignalButton - components: - - pos: -20.5,-14.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9406 - type: SignalTransmitter -- uid: 9405 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -22.5,-19.5 - parent: 1 - type: Transform -- uid: 9406 - type: BlastDoor - components: - - pos: -19.5,-15.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9404 - type: SignalReceiver -- uid: 9407 - type: AirlockSecurityGlassLocked - components: - - pos: 27.5,-10.5 - parent: 1 - type: Transform -- uid: 9408 - type: AirlockMaintSecLocked - components: - - pos: 28.5,-14.5 - parent: 1 - type: Transform -- uid: 9409 - type: WindoorSecurityLocked - components: - - pos: 29.5,-10.5 - parent: 1 - type: Transform -- uid: 9410 - type: WindoorSecurityLocked - components: - - pos: 30.5,-10.5 - parent: 1 - type: Transform -- uid: 9411 - type: FirelockGlass - components: - - pos: 27.5,-10.5 - parent: 1 - type: Transform -- uid: 9412 - type: TableReinforced - components: - - pos: 30.5,-13.5 - parent: 1 - type: Transform -- uid: 9413 - type: TableReinforced - components: - - pos: 26.5,-13.5 - parent: 1 - type: Transform -- uid: 9414 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-11.5 - parent: 1 - type: Transform -- uid: 9415 - type: ComputerCriminalRecords - components: - - rot: 3.141592653589793 rad - pos: 30.5,-12.5 - parent: 1 - type: Transform -- uid: 9416 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 29.5,-11.5 - parent: 1 - type: Transform -- uid: 9417 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 30.5,-11.5 - parent: 1 - type: Transform -- uid: 9418 - type: Handcuffs - components: - - pos: 26.351677,-13.233653 - parent: 1 - type: Transform -- uid: 9419 - type: FlashlightSeclite - components: - - pos: 26.518345,-13.504487 - parent: 1 - type: Transform -- uid: 9420 - type: WeaponCapacitorRecharger - components: - - pos: 30.5,-13.5 - parent: 1 - type: Transform -- uid: 9421 - type: Bola - components: - - pos: 41.316933,42.55459 - parent: 1 - type: Transform -- uid: 9422 - type: Zipties - components: - - pos: 41.421097,42.74209 - parent: 1 - type: Transform -- uid: 9423 - type: Zipties - components: - - pos: 41.671097,42.596256 - parent: 1 - type: Transform -- uid: 9424 - type: AirlockMaintSecLocked - components: - - pos: 40.5,43.5 - parent: 1 - type: Transform -- uid: 9425 - type: AirlockSecurityGlassLocked - components: - - pos: 45.5,43.5 - parent: 1 - type: Transform -- uid: 9426 - type: WallWood - components: - - pos: 39.5,45.5 - parent: 1 - type: Transform -- uid: 9427 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: 43.5,41.5 - parent: 1 - type: Transform -- uid: 9428 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: 44.5,41.5 - parent: 1 - type: Transform -- uid: 9429 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -21.5,-9.5 - parent: 1 - type: Transform -- uid: 9430 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -21.5,-8.5 - parent: 1 - type: Transform -- uid: 9431 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -21.5,-7.5 - parent: 1 - type: Transform -- uid: 9432 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 48.5,43.5 - parent: 1 - type: Transform -- uid: 9433 - type: DisposalUnit - components: - - pos: 48.5,42.5 - parent: 1 - type: Transform -- uid: 9434 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,29.5 - parent: 1 - type: Transform -- uid: 9435 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,28.5 - parent: 1 - type: Transform -- uid: 9436 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,27.5 - parent: 1 - type: Transform -- uid: 9437 - type: DisposalUnit - components: - - pos: 27.5,26.5 - parent: 1 - type: Transform -- uid: 9438 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,-5.5 - parent: 1 - type: Transform -- uid: 9439 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,-4.5 - parent: 1 - type: Transform -- uid: 9440 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,-3.5 - parent: 1 - type: Transform -- uid: 9441 - type: DisposalUnit - components: - - pos: -33.5,-8.5 - parent: 1 - type: Transform -- uid: 9442 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -30.5,4.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9443 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -30.5,7.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9444 - type: GasPipeFourway - components: - - pos: 30.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9445 - type: DisposalUnit - components: - - pos: -30.5,22.5 - parent: 1 - type: Transform -- uid: 9446 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -30.5,21.5 - parent: 1 - type: Transform -- uid: 9447 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: -48.5,12.5 - parent: 1 - type: Transform -- uid: 9448 - type: CrateEmptySpawner - components: - - pos: -45.5,-6.5 - parent: 1 - type: Transform -- uid: 9449 - type: CrateEmptySpawner - components: - - pos: -46.5,-6.5 - parent: 1 - type: Transform -- uid: 9450 - type: Rack - components: - - pos: -45.5,-7.5 - parent: 1 - type: Transform -- uid: 9451 - type: Rack - components: - - pos: -50.5,-6.5 - parent: 1 - type: Transform -- uid: 9452 - type: DisposalUnit - components: - - pos: 7.5,-5.5 - parent: 1 - type: Transform -- uid: 9453 - type: AirlockMaintCargoLocked - components: - - pos: -40.5,-8.5 - parent: 1 - type: Transform -- uid: 9454 - type: DisposalUnit - components: - - pos: 45.5,-6.5 - parent: 1 - type: Transform -- uid: 9455 - type: DisposalUnit - components: - - pos: 45.5,12.5 - parent: 1 - type: Transform -- uid: 9456 - type: DisposalUnit - components: - - pos: -45.5,12.5 - parent: 1 - type: Transform -- uid: 9457 - type: ClosetFireFilled - components: - - pos: 46.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9458 - type: ClosetEmergencyFilledRandom - components: - - pos: 47.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9459 - type: DisposalUnit - components: - - pos: 14.5,47.5 - parent: 1 - type: Transform -- uid: 9460 - type: ClosetEmergencyFilledRandom - components: - - pos: 49.5,12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9461 - type: ClosetFireFilled - components: - - pos: 48.5,12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9462 - type: ClosetFireFilled - components: - - pos: 49.5,-6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9463 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 47.5,-6.5 - parent: 1 - type: Transform -- uid: 9464 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: 47.5,12.5 - parent: 1 - type: Transform -- uid: 9465 - type: ClosetEmergencyFilledRandom - components: - - pos: -50.5,12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9466 - type: ClosetFireFilled - components: - - pos: -49.5,12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9467 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -30.5,5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9468 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -30.5,6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9469 - type: DisposalUnit - components: - - pos: -34.5,16.5 - parent: 1 - type: Transform -- uid: 9470 - type: ClosetFireFilled - components: - - pos: -30.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9471 - type: ClosetEmergencyFilledRandom - components: - - pos: -30.5,18.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9472 - type: ClosetFireFilled - components: - - pos: 29.5,-2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9473 - type: ClosetEmergencyFilledRandom - components: - - pos: 29.5,-1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9474 - type: PottedPlantRandom - components: - - pos: 46.5,-6.5 - parent: 1 - type: Transform -- uid: 9475 - type: PottedPlantRandom - components: - - pos: 29.5,-0.5 - parent: 1 - type: Transform -- uid: 9476 - type: PottedPlantRandom - components: - - pos: 33.5,-1.5 - parent: 1 - type: Transform -- uid: 9477 - type: PottedPlantRandom - components: - - pos: 46.5,12.5 - parent: 1 - type: Transform -- uid: 9478 - type: PottedPlantRandom - components: - - pos: 48.5,41.5 - parent: 1 - type: Transform -- uid: 9479 - type: PottedPlantRandom - components: - - pos: 45.5,40.5 - parent: 1 - type: Transform -- uid: 9480 - type: PottedPlantRandom - components: - - pos: -42.5,43.5 - parent: 1 - type: Transform -- uid: 9481 - type: PottedPlantRandom - components: - - pos: 9.5,-11.5 - parent: 1 - type: Transform -- uid: 9482 - type: PottedPlantRandom - components: - - pos: -14.5,-13.5 - parent: 1 - type: Transform -- uid: 9483 - type: PottedPlantRandom - components: - - pos: -4.5,9.5 - parent: 1 - type: Transform -- uid: 9484 - type: PottedPlantRandom - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform -- uid: 9485 - type: PottedPlantRandom - components: - - pos: -13.5,3.5 - parent: 1 - type: Transform -- uid: 9486 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,0.5 - parent: 1 - type: Transform -- uid: 9487 - type: VendingMachineCondiments - components: - - flags: SessionSpecific - type: MetaData - - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 1 - type: Transform -- uid: 9488 - type: DisposalUnit - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform -- uid: 9489 - type: PottedPlantRandomPlastic - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform -- uid: 9490 - type: PottedPlantRandomPlastic - components: - - pos: 15.5,29.5 - parent: 1 - type: Transform -- uid: 9491 - type: PottedPlantRandomPlastic - components: - - pos: 22.5,26.5 - parent: 1 - type: Transform -- uid: 9492 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 22.5,29.5 - parent: 1 - type: Transform -- uid: 9493 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 21.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9494 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 21.5,27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9495 - type: PottedPlantRandom - components: - - pos: -3.5,46.5 - parent: 1 - type: Transform -- uid: 9496 - type: PottedPlantRandom - components: - - pos: -10.5,52.5 - parent: 1 - type: Transform -- uid: 9497 - type: PottedPlantRandom - components: - - pos: -16.5,47.5 - parent: 1 - type: Transform -- uid: 9498 - type: PottedPlantRandom - components: - - pos: -16.5,51.5 - parent: 1 - type: Transform -- uid: 9499 - type: PottedPlantRandom - components: - - pos: -16.5,56.5 - parent: 1 - type: Transform -- uid: 9500 - type: PottedPlantRandom - components: - - pos: -9.5,60.5 - parent: 1 - type: Transform -- uid: 9501 - type: PottedPlantRandom - components: - - pos: -7.5,78.5 - parent: 1 - type: Transform -- uid: 9502 - type: PottedPlantRandom - components: - - pos: 7.5,70.5 - parent: 1 - type: Transform -- uid: 9503 - type: PottedPlantRandom - components: - - pos: 10.5,66.5 - parent: 1 - type: Transform -- uid: 9504 - type: PottedPlantRandomPlastic - components: - - pos: 5.5,62.5 - parent: 1 - type: Transform -- uid: 9505 - type: PottedPlantRandomPlastic - components: - - pos: 8.5,61.5 - parent: 1 - type: Transform -- uid: 9506 - type: WindowReinforcedDirectional - components: - - pos: 14.5,60.5 - parent: 1 - type: Transform -- uid: 9507 - type: Chair - components: - - pos: 14.5,61.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9508 - type: WindoorBrigLocked - components: - - rot: 1.5707963267948966 rad - pos: 13.5,60.5 - parent: 1 - type: Transform -- uid: 9509 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 12.5,57.5 - parent: 1 - type: Transform -- uid: 9510 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 13.5,57.5 - parent: 1 - type: Transform -- uid: 9511 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 12.5,56.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9512 - type: PaperOffice - components: - - pos: 13.562738,57.689873 - parent: 1 - type: Transform -- uid: 9513 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 13.5,55.5 - parent: 1 - type: Transform -- uid: 9514 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 14.5,55.5 - parent: 1 - type: Transform -- uid: 9515 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 40.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9516 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 41.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9517 - type: Chair - components: - - pos: 44.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9518 - type: Chair - components: - - pos: 45.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9519 - type: Chair - components: - - pos: 43.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9520 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 43.5,39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9521 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 44.5,39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9522 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 45.5,39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9523 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 43.5,38.5 - parent: 1 - type: Transform -- uid: 9524 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 44.5,38.5 - parent: 1 - type: Transform -- uid: 9525 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 45.5,38.5 - parent: 1 - type: Transform -- uid: 9526 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 40.5,13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9527 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 41.5,13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9528 - type: Chair - components: - - pos: 40.5,-7.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9529 - type: Chair - components: - - pos: 41.5,-7.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9530 - type: Chair - components: - - pos: 42.5,-7.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9531 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 29.5,8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9532 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 29.5,7.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9533 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 29.5,0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9534 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 29.5,1.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9535 - type: PottedPlantRandom - components: - - pos: 29.5,9.5 - parent: 1 - type: Transform -- uid: 9536 - type: DisposalUnit - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform -- uid: 9537 - type: Chair - components: - - pos: -43.5,15.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9538 - type: Chair - components: - - pos: -42.5,15.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9539 - type: Chair - components: - - pos: -41.5,15.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9540 - type: Chair - components: - - pos: -25.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9541 - type: Chair - components: - - pos: -26.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9542 - type: Chair - components: - - pos: -27.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9543 - type: PottedPlantRandom - components: - - pos: -47.5,38.5 - parent: 1 - type: Transform -- uid: 9544 - type: Chair - components: - - pos: -46.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9545 - type: Chair - components: - - pos: -45.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9546 - type: Chair - components: - - pos: -44.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9547 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 32.5,29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9548 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 32.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9549 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 32.5,27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9550 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 32.5,24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9551 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 32.5,23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9552 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 32.5,22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9553 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 42.5,13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9554 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -32.5,-9.5 - parent: 1 - type: Transform -- uid: 9555 - type: Chair - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9556 - type: Chair - components: - - pos: -23.5,-7.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9557 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,-9.5 - parent: 1 - type: Transform -- uid: 9558 - type: ClosetEmergencyFilledRandom - components: - - pos: -30.5,-9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9559 - type: TableGlass - components: - - pos: -22.5,-7.5 - parent: 1 - type: Transform -- uid: 9560 - type: HighSecCaptainLocked - components: - - pos: -20.5,-12.5 - parent: 1 - type: Transform -- uid: 9561 - type: HighSecCaptainLocked - components: - - pos: -19.5,-12.5 - parent: 1 - type: Transform -- uid: 9562 - type: SignDrones - components: - - pos: -19.5,-13.5 - parent: 1 - type: Transform -- uid: 9563 - type: PosterContrabandFreeDrone - components: - - pos: -20.5,-11.5 - parent: 1 - type: Transform -- uid: 9564 - type: SignGravity - components: - - pos: -19.5,-17.5 - parent: 1 - type: Transform -- uid: 9565 - type: DisposalUnit - components: - - pos: 13.5,-6.5 - parent: 1 - type: Transform -- uid: 9566 - type: DisposalUnit - components: - - pos: -17.5,-19.5 - parent: 1 - type: Transform -- uid: 9567 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9568 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 25.5,13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9569 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 26.5,13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9570 - type: Chair - components: - - pos: -20.5,15.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9571 - type: Chair - components: - - pos: -21.5,15.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9572 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -32.5,30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9573 - type: Chair - components: - - pos: -22.5,15.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9574 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -32.5,29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9575 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -32.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9576 - type: Chair - components: - - pos: 6.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9577 - type: Chair - components: - - pos: 5.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9578 - type: Chair - components: - - pos: 4.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9581 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 16.5,68.5 - parent: 1 - type: Transform -- uid: 9585 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 14.5,73.5 - parent: 1 - type: Transform -- uid: 9586 - type: GrilleBroken - components: - - pos: 11.5,76.5 - parent: 1 - type: Transform -- uid: 9589 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -11.5,38.5 - parent: 1 - type: Transform -- uid: 9590 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -11.5,37.5 - parent: 1 - type: Transform -- uid: 9591 - type: FirelockGlass - components: - - pos: -11.5,36.5 - parent: 1 - type: Transform -- uid: 9592 - type: PoweredlightLED - components: - - rot: 1.5707963267948966 rad - pos: -11.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9593 - type: Chair - components: - - pos: 14.5,15.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9594 - type: Chair - components: - - pos: 15.5,15.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9595 - type: DisposalUnit - components: - - pos: 18.5,36.5 - parent: 1 - type: Transform -- uid: 9596 - type: TableGlass - components: - - pos: -8.5,36.5 - parent: 1 - type: Transform -- uid: 9597 - type: DisposalUnit - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform -- uid: 9598 - type: WallSolid - components: - - pos: 16.5,-37.5 - parent: 1 - type: Transform -- uid: 9599 - type: Window - components: - - pos: 16.5,-36.5 - parent: 1 - type: Transform -- uid: 9600 - type: Catwalk - components: - - pos: 15.5,-34.5 - parent: 1 - type: Transform -- uid: 9601 - type: WallSolid - components: - - pos: 16.5,-31.5 - parent: 1 - type: Transform -- uid: 9602 - type: WallSolid - components: - - pos: 16.5,-32.5 - parent: 1 - type: Transform -- uid: 9603 - type: WallSolid - components: - - pos: 16.5,-33.5 - parent: 1 - type: Transform -- uid: 9604 - type: Grille - components: - - pos: 16.5,-36.5 - parent: 1 - type: Transform -- uid: 9605 - type: SignDisposalSpace - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-38.5 - parent: 1 - type: Transform -- uid: 9702 - type: DisposalUnit - components: - - pos: -38.5,-2.5 - parent: 1 - type: Transform -- uid: 9703 - type: TableGlass - components: - - pos: -35.5,9.5 - parent: 1 - type: Transform -- uid: 9704 - type: TableGlass - components: - - pos: -34.5,9.5 - parent: 1 - type: Transform -- uid: 9705 - type: PaperOffice - components: - - pos: -35.3369,12.601174 - parent: 1 - type: Transform -- uid: 9706 - type: PaperOffice - components: - - pos: -35.4619,12.476174 - parent: 1 - type: Transform -- uid: 9707 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -31.5,61.5 - parent: 1 - type: Transform -- uid: 9708 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -29.5,62.5 - parent: 1 - type: Transform -- uid: 9709 - type: PottedPlantRandomPlastic - components: - - pos: -28.5,38.5 - parent: 1 - type: Transform -- uid: 9710 - type: PottedPlantRandomPlastic - components: - - pos: -4.5,36.5 - parent: 1 - type: Transform -- uid: 9711 - type: PottedPlantRandom - components: - - pos: 7.5,38.5 - parent: 1 - type: Transform -- uid: 9712 - type: PottedPlantRandomPlastic - components: - - pos: 22.5,36.5 - parent: 1 - type: Transform -- uid: 9713 - type: PottedPlantRandom - components: - - pos: 39.5,36.5 - parent: 1 - type: Transform -- uid: 9714 - type: PottedPlantRandom - components: - - pos: -3.5,19.5 - parent: 1 - type: Transform -- uid: 9715 - type: PottedPlantRandom - components: - - pos: 2.5,19.5 - parent: 1 - type: Transform -- uid: 9716 - type: PottedPlantRandom - components: - - pos: 39.5,-7.5 - parent: 1 - type: Transform -- uid: 9717 - type: PottedPlantRandomPlastic - components: - - pos: 39.5,13.5 - parent: 1 - type: Transform -- uid: 9718 - type: CableApcExtension - components: - - pos: -9.5,46.5 - parent: 1 - type: Transform -- uid: 9719 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9720 - type: PottedPlantRandomPlastic - components: - - pos: -16.5,-16.5 - parent: 1 - type: Transform -- uid: 9721 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 29.5,40.5 - parent: 1 - type: Transform -- uid: 9722 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 29.5,41.5 - parent: 1 - type: Transform -- uid: 9723 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 32.5,40.5 - parent: 1 - type: Transform -- uid: 9724 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 32.5,41.5 - parent: 1 - type: Transform -- uid: 9725 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9726 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9727 - type: CableHV - components: - - pos: -17.5,-18.5 - parent: 1 - type: Transform -- uid: 9728 - type: CableHV - components: - - pos: -18.5,-18.5 - parent: 1 - type: Transform -- uid: 9729 - type: CableHV - components: - - pos: -19.5,-18.5 - parent: 1 - type: Transform -- uid: 9730 - type: CableHV - components: - - pos: -20.5,-18.5 - parent: 1 - type: Transform -- uid: 9731 - type: CableHV - components: - - pos: -21.5,-18.5 - parent: 1 - type: Transform -- uid: 9732 - type: CableHV - components: - - pos: -22.5,-18.5 - parent: 1 - type: Transform -- uid: 9733 - type: CableHV - components: - - pos: -23.5,-18.5 - parent: 1 - type: Transform -- uid: 9734 - type: CableMV - components: - - pos: -23.5,-18.5 - parent: 1 - type: Transform -- uid: 9735 - type: CableMV - components: - - pos: -22.5,-18.5 - parent: 1 - type: Transform -- uid: 9736 - type: CableMV - components: - - pos: -22.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9737 - type: CableApcExtension - components: - - pos: -22.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9738 - type: CableApcExtension - components: - - pos: -22.5,-18.5 - parent: 1 - type: Transform -- uid: 9739 - type: CableApcExtension - components: - - pos: -21.5,-18.5 - parent: 1 - type: Transform -- uid: 9740 - type: CableApcExtension - components: - - pos: -20.5,-18.5 - parent: 1 - type: Transform -- uid: 9741 - type: CableApcExtension - components: - - pos: -20.5,-17.5 - parent: 1 - type: Transform -- uid: 9742 - type: CableApcExtension - components: - - pos: -20.5,-16.5 - parent: 1 - type: Transform -- uid: 9743 - type: CableApcExtension - components: - - pos: -20.5,-15.5 - parent: 1 - type: Transform -- uid: 9744 - type: CableApcExtension - components: - - pos: -23.5,-18.5 - parent: 1 - type: Transform -- uid: 9745 - type: CableApcExtension - components: - - pos: -23.5,-17.5 - parent: 1 - type: Transform -- uid: 9746 - type: CableApcExtension - components: - - pos: -23.5,-16.5 - parent: 1 - type: Transform -- uid: 9747 - type: CableApcExtension - components: - - pos: -23.5,-15.5 - parent: 1 - type: Transform -- uid: 9748 - type: CableApcExtension - components: - - pos: -22.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9749 - type: CableApcExtension - components: - - pos: -22.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9750 - type: CableApcExtension - components: - - pos: -22.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9751 - type: CableApcExtension - components: - - pos: -22.5,-23.5 - parent: 1 - type: Transform -- uid: 9752 - type: CableApcExtension - components: - - pos: -21.5,-20.5 - parent: 1 - type: Transform -- uid: 9753 - type: CableApcExtension - components: - - pos: -20.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9754 - type: CableApcExtension - components: - - pos: -20.5,-21.5 - parent: 1 - type: Transform -- uid: 9755 - type: CableApcExtension - components: - - pos: -20.5,-22.5 - parent: 1 - type: Transform -- uid: 9756 - type: CableApcExtension - components: - - pos: -20.5,-23.5 - parent: 1 - type: Transform -- uid: 9757 - type: CableApcExtension - components: - - pos: -20.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9758 - type: CableApcExtension - components: - - pos: -23.5,-20.5 - parent: 1 - type: Transform -- uid: 9759 - type: CableApcExtension - components: - - pos: -24.5,-20.5 - parent: 1 - type: Transform -- uid: 9760 - type: CableApcExtension - components: - - pos: -24.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9761 - type: CableApcExtension - components: - - pos: -24.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9762 - type: CableApcExtension - components: - - pos: -24.5,-23.5 - parent: 1 - type: Transform -- uid: 9763 - type: CableApcExtension - components: - - pos: -24.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9764 - type: APCBasic - components: - - pos: -31.5,-13.5 - parent: 1 - type: Transform -- uid: 9765 - type: CableMV - components: - - pos: -25.5,-15.5 - parent: 1 - type: Transform -- uid: 9766 - type: CableMV - components: - - pos: -25.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9767 - type: CableMV - components: - - pos: -26.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9768 - type: CableMV - components: - - pos: -27.5,-16.5 - parent: 1 - type: Transform -- uid: 9769 - type: CableMV - components: - - pos: -28.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9770 - type: CableMV - components: - - pos: -29.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9771 - type: CableMV - components: - - pos: -30.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9772 - type: CableMV - components: - - pos: -31.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9773 - type: CableMV - components: - - pos: -31.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9774 - type: CableMV - components: - - pos: -31.5,-14.5 - parent: 1 - type: Transform -- uid: 9775 - type: CableMV - components: - - pos: -31.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9776 - type: CableApcExtension - components: - - pos: -31.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9777 - type: CableApcExtension - components: - - pos: -31.5,-14.5 - parent: 1 - type: Transform -- uid: 9778 - type: CableApcExtension - components: - - pos: -31.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9779 - type: CableApcExtension - components: - - pos: -31.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9780 - type: CableApcExtension - components: - - pos: -30.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9781 - type: CableApcExtension - components: - - pos: -29.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9782 - type: CableApcExtension - components: - - pos: -28.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9783 - type: CableApcExtension - components: - - pos: -27.5,-16.5 - parent: 1 - type: Transform -- uid: 9784 - type: CableApcExtension - components: - - pos: -26.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9785 - type: CableApcExtension - components: - - pos: -25.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9786 - type: CableApcExtension - components: - - pos: -25.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9787 - type: CableApcExtension - components: - - pos: -25.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9788 - type: CableApcExtension - components: - - pos: -29.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9789 - type: CableApcExtension - components: - - pos: -29.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9790 - type: CableApcExtension - components: - - pos: -28.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9791 - type: CableApcExtension - components: - - pos: -27.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9792 - type: CableApcExtension - components: - - pos: -27.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9793 - type: CableApcExtension - components: - - pos: -27.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9794 - type: CableApcExtension - components: - - pos: -27.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9795 - type: CableApcExtension - components: - - pos: -32.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9796 - type: CableApcExtension - components: - - pos: -33.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9797 - type: CableApcExtension - components: - - pos: -34.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9798 - type: CableApcExtension - components: - - pos: -35.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9799 - type: CableApcExtension - components: - - pos: -35.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9800 - type: CableApcExtension - components: - - pos: -35.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9801 - type: CableApcExtension - components: - - pos: -35.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9802 - type: CableApcExtension - components: - - pos: -35.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9803 - type: CableApcExtension - components: - - pos: -35.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9804 - type: CableApcExtension - components: - - pos: -35.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9805 - type: CableApcExtension - components: - - pos: -35.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9806 - type: CableApcExtension - components: - - pos: -35.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9807 - type: CableApcExtension - components: - - pos: -35.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9808 - type: CableApcExtension - components: - - pos: -36.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9809 - type: CableApcExtension - components: - - pos: -37.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9810 - type: CableApcExtension - components: - - pos: -38.5,-11.5 - parent: 1 - type: Transform -- uid: 9811 - type: CableApcExtension - components: - - pos: -39.5,-11.5 - parent: 1 - type: Transform -- uid: 9812 - type: CableApcExtension - components: - - pos: -40.5,-11.5 - parent: 1 - type: Transform -- uid: 9813 - type: CableApcExtension - components: - - pos: -40.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9814 - type: CableApcExtension - components: - - pos: -40.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9815 - type: CableApcStack1 - components: - - pos: -41.44949,-9.492805 - parent: 1 - type: Transform -- uid: 9816 - type: CableApcStack1 - components: - - pos: -43.623955,-9.494401 - parent: 1 - type: Transform -- uid: 9817 - type: CableApcStack1 - components: - - pos: -42.65844,-9.466018 - parent: 1 - type: Transform -- uid: 9818 - type: CableApcExtension - components: - - pos: -44.5,-9.5 - parent: 1 - type: Transform -- uid: 9819 - type: CableApcExtension - components: - - pos: -45.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9820 - type: CableApcExtension - components: - - pos: -46.5,-9.5 - parent: 1 - type: Transform -- uid: 9821 - type: CableApcExtension - components: - - pos: -47.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9822 - type: CableApcExtension - components: - - pos: -48.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9823 - type: CableApcExtension - components: - - pos: -49.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9824 - type: CableApcExtension - components: - - pos: -50.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9825 - type: CableApcExtension - components: - - pos: -51.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9826 - type: CableApcExtension - components: - - pos: -52.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9827 - type: CableApcExtension - components: - - pos: -49.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9828 - type: CableApcExtension - components: - - pos: -49.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9829 - type: CableApcExtension - components: - - pos: -47.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9830 - type: CableApcExtension - components: - - pos: -47.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9831 - type: CableApcExtension - components: - - pos: -50.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9832 - type: CableApcExtension - components: - - pos: -50.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9833 - type: CableApcExtension - components: - - pos: -51.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9834 - type: CableApcExtension - components: - - pos: -52.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9835 - type: CableApcExtension - components: - - pos: -49.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9836 - type: CableApcExtension - components: - - pos: -48.5,-7.5 - parent: 1 - type: Transform -- uid: 9837 - type: CableApcExtension - components: - - pos: -47.5,-7.5 - parent: 1 - type: Transform -- uid: 9838 - type: CableApcExtension - components: - - pos: -46.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9839 - type: CableApcExtension - components: - - pos: -45.5,-7.5 - parent: 1 - type: Transform -- uid: 9840 - type: CableApcExtension - components: - - pos: -45.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9841 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9842 - type: PoweredSmallLight - components: - - pos: -52.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9843 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9844 - type: LockerFreezer - components: - - pos: -32.5,-11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 234.99968 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 9845 - - 9846 - - 9847 - - 9848 - - 9849 - - 9850 - - 9851 - type: ContainerContainer -- uid: 9845 - type: FoodFrozenSandwichStrawberry - components: - - flags: InContainer - type: MetaData - - parent: 9844 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 9846 - type: FoodFrozenPopsicleOrange - components: - - flags: InContainer - type: MetaData - - parent: 9844 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 9847 - type: FoodFrozenSandwich - components: - - flags: InContainer - type: MetaData - - parent: 9844 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 9848 - type: FoodFrozenPopsicleBerry - components: - - flags: InContainer - type: MetaData - - parent: 9844 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 9849 - type: FoodFrozenPopsicleJumbo - components: - - flags: InContainer - type: MetaData - - parent: 9844 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 9850 - type: FoodFrozenSundae - components: - - flags: InContainer - type: MetaData - - parent: 9844 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 9851 - type: DrinkIceCreamGlass - components: - - flags: InContainer - type: MetaData - - parent: 9844 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 9852 - type: GasThermoMachineFreezer - components: - - pos: -30.5,-11.5 - parent: 1 - type: Transform - - targetTemperature: 0 - enabled: False - type: GasThermoMachine -- uid: 9853 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -30.5,-12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9854 - type: AtmosFixFreezerMarker - components: - - pos: -32.5,-11.5 - parent: 1 - type: Transform -- uid: 9855 - type: AtmosFixFreezerMarker - components: - - pos: -32.5,-12.5 - parent: 1 - type: Transform -- uid: 9856 - type: AtmosFixFreezerMarker - components: - - pos: -31.5,-11.5 - parent: 1 - type: Transform -- uid: 9857 - type: AtmosFixFreezerMarker - components: - - pos: -31.5,-12.5 - parent: 1 - type: Transform -- uid: 9858 - type: AtmosFixFreezerMarker - components: - - pos: -30.5,-11.5 - parent: 1 - type: Transform -- uid: 9859 - type: AtmosFixFreezerMarker - components: - - pos: -30.5,-12.5 - parent: 1 - type: Transform -- uid: 9860 - type: CultAltarSpawner - components: - - pos: -37.5,-16.5 - parent: 1 - type: Transform -- uid: 9861 - type: ClothingOuterRobesCult - components: - - pos: -37.519897,-17.403341 - parent: 1 - type: Transform -- uid: 9862 - type: ClothingShoesCult - components: - - pos: -37.94586,-17.687162 - parent: 1 - type: Transform -- uid: 9863 - type: Machete - components: - - pos: -38.31503,-16.537683 - parent: 1 - type: Transform -- uid: 9864 - type: ClothingHeadHatHoodCulthood - components: - - pos: -37.818073,-17.247238 - parent: 1 - type: Transform -- uid: 9865 - type: Fireplace - components: - - pos: -36.5,-19.5 - parent: 1 - type: Transform -- uid: 9866 - type: Bookshelf - components: - - pos: -33.5,-20.5 - parent: 1 - type: Transform -- uid: 9867 - type: ClosetBase - components: - - pos: -34.5,-21.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9868 - type: Bed - components: - - pos: -36.5,-21.5 - parent: 1 - type: Transform -- uid: 9869 - type: TableWood - components: - - pos: -35.5,-21.5 - parent: 1 - type: Transform -- uid: 9870 - type: ChairWood - components: - - pos: -35.5,-20.5 - parent: 1 - type: Transform -- uid: 9871 - type: BedsheetSpawner - components: - - pos: -36.5,-21.5 - parent: 1 - type: Transform -- uid: 9872 - type: HospitalCurtainsOpen - components: - - pos: -36.5,-21.5 - parent: 1 - type: Transform -- uid: 9873 - type: CarpetPink - components: - - pos: -36.5,-21.5 - parent: 1 - type: Transform -- uid: 9874 - type: CarpetPink - components: - - pos: -36.5,-20.5 - parent: 1 - type: Transform -- uid: 9875 - type: CarpetPink - components: - - pos: -35.5,-21.5 - parent: 1 - type: Transform -- uid: 9876 - type: CarpetPink - components: - - pos: -35.5,-20.5 - parent: 1 - type: Transform -- uid: 9877 - type: Airlock - components: - - pos: -32.5,-19.5 - parent: 1 - type: Transform -- uid: 9878 - type: DisposalUnit - components: - - pos: -17.5,53.5 - parent: 1 - type: Transform -- uid: 9879 - type: PottedPlantRandom - components: - - pos: 32.5,30.5 - parent: 1 - type: Transform -- uid: 9880 - type: PottedPlantRandom - components: - - pos: 32.5,21.5 - parent: 1 - type: Transform -- uid: 9881 - type: PottedPlantRandom - components: - - pos: 23.5,13.5 - parent: 1 - type: Transform -- uid: 9882 - type: PottedPlantRandom - components: - - pos: -40.5,15.5 - parent: 1 - type: Transform -- uid: 9883 - type: PottedPlantRandom - components: - - pos: -38.5,9.5 - parent: 1 - type: Transform -- uid: 9884 - type: DisposalUnit - components: - - pos: -39.5,28.5 - parent: 1 - type: Transform -- uid: 9885 - type: AirlockPainter - components: - - pos: -28.646414,31.653807 - parent: 1 - type: Transform -- uid: 9886 - type: ClothingHeadHatWeldingMaskPainted - components: - - pos: -28.362438,31.526087 - parent: 1 - type: Transform -- uid: 9887 - type: MaintenanceToolSpawner - components: - - pos: -28.5,32.5 - parent: 1 - type: Transform -- uid: 9888 - type: DisposalUnit - components: - - pos: -23.5,15.5 - parent: 1 - type: Transform -- uid: 9889 - type: PottedPlantRandom - components: - - pos: -19.5,15.5 - parent: 1 - type: Transform -- uid: 9890 - type: PottedPlantRandom - components: - - pos: 13.5,15.5 - parent: 1 - type: Transform -- uid: 9891 - type: AirlockMaintLocked - components: - - pos: 7.5,65.5 - parent: 1 - type: Transform -- uid: 9892 - type: WallSolid - components: - - pos: 11.5,64.5 - parent: 1 - type: Transform -- uid: 9893 - type: ClosetEmergencyFilledRandom - components: - - pos: 9.5,64.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9894 - type: ClosetFireFilled - components: - - pos: 8.5,64.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9895 - type: WeldingFuelTankFull - components: - - pos: 38.5,42.5 - parent: 1 - type: Transform -- uid: 9896 - type: WaterTankFull - components: - - pos: 38.5,41.5 - parent: 1 - type: Transform -- uid: 9897 - type: Rack - components: - - pos: 10.5,48.5 - parent: 1 - type: Transform -- uid: 9898 - type: ClosetMaintenanceFilledRandom - components: - - pos: 4.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9899 - type: WeldingFuelTankFull - components: - - pos: 28.5,-22.5 - parent: 1 - type: Transform -- uid: 9900 - type: WaterTankFull - components: - - pos: 20.5,6.5 - parent: 1 - type: Transform -- uid: 9901 - type: WaterTankFull - components: - - pos: 18.5,24.5 - parent: 1 - type: Transform -- uid: 9902 - type: WeldingFuelTankFull - components: - - pos: 18.5,23.5 - parent: 1 - type: Transform -- uid: 9903 - type: WeldingFuelTankFull - components: - - pos: 20.5,7.5 - parent: 1 - type: Transform -- uid: 9904 - type: WaterTankFull - components: - - pos: 27.5,-22.5 - parent: 1 - type: Transform -- uid: 9905 - type: WeldingFuelTankFull - components: - - pos: 13.5,-26.5 - parent: 1 - type: Transform -- uid: 9906 - type: WeldingFuelTankFull - components: - - pos: -26.5,-20.5 - parent: 1 - type: Transform -- uid: 9907 - type: AirlockMaintLocked - components: - - pos: -16.5,-38.5 - parent: 1 - type: Transform -- uid: 9908 - type: WaterTankFull - components: - - pos: -27.5,-20.5 - parent: 1 - type: Transform -- uid: 9909 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,-33.5 - parent: 1 - type: Transform -- uid: 9910 - type: Table - components: - - pos: -19.5,-37.5 - parent: 1 - type: Transform -- uid: 9911 - type: Table - components: - - pos: -19.5,-36.5 - parent: 1 - type: Transform -- uid: 9912 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9913 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9914 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-36.5 - parent: 1 - type: Transform -- uid: 9915 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-36.5 - parent: 1 - type: Transform -- uid: 9916 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9917 - type: PaperOffice - components: - - rot: -1.5707963267948966 rad - pos: -19.778204,-37.45873 - parent: 1 - type: Transform -- uid: 9918 - type: PaperOffice - components: - - rot: -1.5707963267948966 rad - pos: -19.735607,-36.394398 - parent: 1 - type: Transform -- uid: 9919 - type: PaperOffice - components: - - rot: 1.5707963267948966 rad - pos: -19.281246,-36.53631 - parent: 1 - type: Transform -- uid: 9920 - type: PaperOffice - components: - - rot: 1.5707963267948966 rad - pos: -19.267048,-37.1891 - parent: 1 - type: Transform -- uid: 9921 - type: DiceBag - components: - - pos: -19.423235,-37.373585 - parent: 1 - type: Transform -- uid: 9922 - type: d20Dice - components: - - pos: -19.295444,-36.252487 - parent: 1 - type: Transform -- uid: 9923 - type: d4Dice - components: - - pos: -19.636215,-36.919468 - parent: 1 - type: Transform -- uid: 9924 - type: FigureSpawner - components: - - pos: -20.5,-37.5 - parent: 1 - type: Transform -- uid: 9925 - type: FigureSpawner - components: - - pos: -19.5,-36.5 - parent: 1 - type: Transform -- uid: 9926 - type: FigureSpawner - components: - - pos: -19.5,-37.5 - parent: 1 - type: Transform -- uid: 9927 - type: Pen - components: - - rot: -1.5707963267948966 rad - pos: -19.749805,-37.45873 - parent: 1 - type: Transform -- uid: 9928 - type: Pen - components: - - rot: 3.141592653589793 rad - pos: -19.70721,-36.42278 - parent: 1 - type: Transform -- uid: 9929 - type: Pen - components: - - rot: 1.5707963267948966 rad - pos: -19.323843,-36.607265 - parent: 1 - type: Transform -- uid: 9930 - type: Pen - components: - - pos: -19.210253,-37.174908 - parent: 1 - type: Transform -- uid: 9931 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-30.5 - parent: 1 - type: Transform -- uid: 9932 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-29.5 - parent: 1 - type: Transform -- uid: 9933 - type: MinimoogInstrument - components: - - pos: -22.5,-28.5 - parent: 1 - type: Transform -- uid: 9934 - type: GlowstickPurple - components: - - pos: -22.667574,-29.32562 - parent: 1 - type: Transform -- uid: 9935 - type: CigaretteSpent - components: - - pos: -22.582382,-29.382385 - parent: 1 - type: Transform -- uid: 9936 - type: CigaretteSpent - components: - - pos: -22.454592,-29.29724 - parent: 1 - type: Transform -- uid: 9937 - type: MaintenanceFluffSpawner - components: - - pos: -22.5,-30.5 - parent: 1 - type: Transform -- uid: 9938 - type: Airlock - components: - - pos: -19.5,-32.5 - parent: 1 - type: Transform -- uid: 9939 - type: MaintenanceWeaponSpawner - components: - - pos: -49.5,-6.5 - parent: 1 - type: Transform -- uid: 9940 - type: MaintenanceToolSpawner - components: - - pos: -50.5,-6.5 - parent: 1 - type: Transform -- uid: 9941 - type: MaintenanceToolSpawner - components: - - pos: -45.5,-7.5 - parent: 1 - type: Transform -- uid: 9942 - type: MaintenanceFluffSpawner - components: - - pos: -47.5,-6.5 - parent: 1 - type: Transform -- uid: 9943 - type: MaintenanceFluffSpawner - components: - - pos: -39.5,-12.5 - parent: 1 - type: Transform -- uid: 9944 - type: IngotGold1 - components: - - pos: -39.522156,-11.308753 - parent: 1 - type: Transform -- uid: 9945 - type: IngotGold1 - components: - - pos: -38.57084,-11.507429 - parent: 1 - type: Transform -- uid: 9946 - type: IngotGold1 - components: - - pos: -38.52824,-13.196171 - parent: 1 - type: Transform -- uid: 9947 - type: IngotSilver1 - components: - - pos: -38.613434,-12.656909 - parent: 1 - type: Transform -- uid: 9948 - type: SpaceCash - components: - - pos: -38.499844,-13.352273 - parent: 1 - type: Transform -- uid: 9949 - type: SpaceCash - components: - - pos: -38.54244,-12.855584 - parent: 1 - type: Transform -- uid: 9950 - type: SpaceCash - components: - - pos: -39.36597,-11.422282 - parent: 1 - type: Transform -- uid: 9951 - type: SpaceCash - components: - - pos: -38.812218,-11.251988 - parent: 1 - type: Transform -- uid: 9952 - type: SpaceCash - components: - - pos: -38.23007,-11.436473 - parent: 1 - type: Transform -- uid: 9953 - type: SpaceCash - components: - - pos: -38.329456,-12.387278 - parent: 1 - type: Transform -- uid: 9954 - type: Cigar - components: - - pos: -38.443047,-11.989926 - parent: 1 - type: Transform -- uid: 9955 - type: Cigar - components: - - pos: -38.443047,-11.989926 - parent: 1 - type: Transform -- uid: 9956 - type: RandomDrinkGlass - components: - - pos: -38.5,-11.5 - parent: 1 - type: Transform -- uid: 9957 - type: d6Dice - components: - - pos: -38.76962,-12.060882 - parent: 1 - type: Transform -- uid: 9958 - type: d6Dice - components: - - pos: -38.75542,-12.231175 - parent: 1 - type: Transform -- uid: 9959 - type: ChairFolding - components: - - pos: -23.5,-21.5 - parent: 1 - type: Transform -- uid: 9960 - type: ChairFolding - components: - - pos: -23.5,-22.5 - parent: 1 - type: Transform -- uid: 9961 - type: ChairFolding - components: - - pos: -21.5,-21.5 - parent: 1 - type: Transform -- uid: 9962 - type: ChairFolding - components: - - pos: -21.5,-22.5 - parent: 1 - type: Transform -- uid: 9963 - type: ChairFolding - components: - - pos: -24.5,-22.5 - parent: 1 - type: Transform -- uid: 9964 - type: ChairFolding - components: - - pos: -20.5,-22.5 - parent: 1 - type: Transform -- uid: 9965 - type: Rack - components: - - pos: -24.5,-24.5 - parent: 1 - type: Transform -- uid: 9966 - type: Rack - components: - - pos: -20.5,-24.5 - parent: 1 - type: Transform -- uid: 9967 - type: ToolboxElectricalFilled - components: - - pos: -24.569386,-24.282387 - parent: 1 - type: Transform -- uid: 9968 - type: ToolboxEmergencyFilled - components: - - pos: -24.427397,-24.45268 - parent: 1 - type: Transform -- uid: 9969 - type: ClothingMaskGas - components: - - pos: -20.622124,-24.324959 - parent: 1 - type: Transform -- uid: 9970 - type: Crowbar - components: - - pos: -20.366545,-24.481062 - parent: 1 - type: Transform -- uid: 9971 - type: ClothingShoesBootsWork - components: - - desc: Legendary boots worn by the king of the tiders - name: boots of the grey king - type: MetaData - - pos: -22.53896,-24.152784 - parent: 1 - type: Transform - - type: NoSlip -- uid: 9972 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-23.5 - parent: 1 - type: Transform -- uid: 9973 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-24.5 - parent: 1 - type: Transform -- uid: 9974 - type: MaintenanceFluffSpawner - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-23.5 - parent: 1 - type: Transform -- uid: 9975 - type: MaintenanceWeaponSpawner - components: - - pos: -33.5,-24.5 - parent: 1 - type: Transform -- uid: 9976 - type: AirCanister - components: - - pos: -31.5,-24.5 - parent: 1 - type: Transform -- uid: 9977 - type: AirlockEngineeringLocked - components: - - pos: -27.5,-16.5 - parent: 1 - type: Transform -- uid: 9978 - type: FoodTinPeachesMaint - components: - - pos: -33.61911,-24.182272 - parent: 1 - type: Transform -- uid: 9979 - type: ClosetMaintenanceFilledRandom - components: - - pos: -15.5,-23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9980 - type: ClosetEmergencyFilledRandom - components: - - pos: -15.5,-22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9981 - type: ClosetFireFilled - components: - - pos: -15.5,-21.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9982 - type: ClosetMaintenanceFilledRandom - components: - - pos: -26.5,-25.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9983 - type: ClosetEmergencyFilledRandom - components: - - pos: -27.5,-25.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9984 - type: ClosetFireFilled - components: - - pos: -28.5,-25.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9985 - type: RandomVending - components: - - pos: -26.5,-23.5 - parent: 1 - type: Transform -- uid: 9986 - type: Rack - components: - - pos: -27.5,-23.5 - parent: 1 - type: Transform -- uid: 9987 - type: MaintenanceToolSpawner - components: - - pos: -27.5,-23.5 - parent: 1 - type: Transform -- uid: 9988 - type: ComputerBroken - components: - - pos: -28.5,-20.5 - parent: 1 - type: Transform -- uid: 9989 - type: WallSolid - components: - - pos: -30.5,-17.5 - parent: 1 - type: Transform -- uid: 9990 - type: CableApcExtension - components: - - pos: -29.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9991 - type: CableApcExtension - components: - - pos: -29.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9992 - type: CableApcExtension - components: - - pos: -29.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9993 - type: CableApcExtension - components: - - pos: -29.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9994 - type: CableApcExtension - components: - - pos: -29.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9995 - type: CableApcExtension - components: - - pos: -29.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9996 - type: CableApcExtension - components: - - pos: -30.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9997 - type: CableApcExtension - components: - - pos: -31.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9998 - type: CableApcExtension - components: - - pos: -31.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9999 - type: CableApcExtension - components: - - pos: -31.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10000 - type: CableApcExtension - components: - - pos: -31.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10001 - type: CableApcExtension - components: - - pos: -31.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10002 - type: CableApcExtension - components: - - pos: -32.5,-19.5 - parent: 1 - type: Transform -- uid: 10003 - type: CableApcExtension - components: - - pos: -33.5,-19.5 - parent: 1 - type: Transform -- uid: 10004 - type: CableApcExtension - components: - - pos: -34.5,-19.5 - parent: 1 - type: Transform -- uid: 10005 - type: CableApcExtension - components: - - pos: -28.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10006 - type: CableApcExtension - components: - - pos: -27.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10007 - type: CableApcExtension - components: - - pos: -26.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10008 - type: CableApcExtension - components: - - pos: -29.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10009 - type: CableApcExtension - components: - - pos: -29.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10010 - type: CableApcExtension - components: - - pos: -29.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10011 - type: CableApcExtension - components: - - pos: -28.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10012 - type: CableApcExtension - components: - - pos: -27.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10013 - type: CableApcExtension - components: - - pos: -26.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10014 - type: CableApcExtension - components: - - pos: -25.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10015 - type: CableApcExtension - components: - - pos: -24.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10016 - type: CableApcExtension - components: - - pos: -23.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10017 - type: CableApcExtension - components: - - pos: -22.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10018 - type: CableApcExtension - components: - - pos: -21.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10019 - type: CableApcExtension - components: - - pos: -20.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10020 - type: CableApcExtension - components: - - pos: -20.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10021 - type: CableApcExtension - components: - - pos: -20.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10022 - type: CableApcExtension - components: - - pos: -20.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10023 - type: CableApcExtension - components: - - pos: -20.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10024 - type: CableApcExtension - components: - - pos: -20.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10025 - type: CableApcExtension - components: - - pos: -19.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10026 - type: CableApcExtension - components: - - pos: -19.5,-32.5 - parent: 1 - type: Transform -- uid: 10027 - type: CableApcExtension - components: - - pos: -19.5,-33.5 - parent: 1 - type: Transform -- uid: 10028 - type: CableApcExtension - components: - - pos: -19.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10029 - type: CableApcExtension - components: - - pos: -19.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10030 - type: CableApcExtension - components: - - pos: -19.5,-36.5 - parent: 1 - type: Transform -- uid: 10031 - type: CableApcExtension - components: - - pos: -19.5,-18.5 - parent: 1 - type: Transform -- uid: 10032 - type: CableApcExtension - components: - - pos: -18.5,-18.5 - parent: 1 - type: Transform -- uid: 10033 - type: CableApcExtension - components: - - pos: -17.5,-18.5 - parent: 1 - type: Transform -- uid: 10034 - type: CableApcExtension - components: - - pos: -16.5,-18.5 - parent: 1 - type: Transform -- uid: 10035 - type: CableApcExtension - components: - - pos: -16.5,-19.5 - parent: 1 - type: Transform -- uid: 10036 - type: CableApcExtension - components: - - pos: -16.5,-20.5 - parent: 1 - type: Transform -- uid: 10037 - type: CableApcExtension - components: - - pos: -16.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10038 - type: CableApcExtension - components: - - pos: -16.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10039 - type: CableApcExtension - components: - - pos: -16.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10040 - type: CableApcExtension - components: - - pos: -16.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10041 - type: CableApcExtension - components: - - pos: -17.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10042 - type: CableApcExtension - components: - - pos: -18.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10043 - type: CableApcExtension - components: - - pos: -18.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10044 - type: CableApcExtension - components: - - pos: -18.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10045 - type: CableApcExtension - components: - - pos: -18.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10046 - type: CableApcExtension - components: - - pos: -18.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10047 - type: CableApcExtension - components: - - pos: -18.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10048 - type: Catwalk - components: - - pos: -18.5,-30.5 - parent: 1 - type: Transform -- uid: 10049 - type: CableApcExtension - components: - - pos: -17.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10050 - type: CableApcExtension - components: - - pos: -16.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10051 - type: CableApcExtension - components: - - pos: -16.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10052 - type: CableApcExtension - components: - - pos: -16.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10053 - type: CableApcExtension - components: - - pos: -16.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10054 - type: CableApcExtension - components: - - pos: -16.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10055 - type: CableApcExtension - components: - - pos: -16.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10056 - type: CableApcExtension - components: - - pos: -16.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10057 - type: CableApcExtension - components: - - pos: -16.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10058 - type: CableApcExtension - components: - - pos: -16.5,-39.5 - parent: 1 - type: Transform -- uid: 10059 - type: CableApcExtension - components: - - pos: -16.5,-40.5 - parent: 1 - type: Transform -- uid: 10060 - type: ClosetFireFilled - components: - - pos: -34.5,-10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10061 - type: ClosetEmergencyFilledRandom - components: - - pos: -34.5,-11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10062 - type: ClosetMaintenanceFilledRandom - components: - - pos: -34.5,-12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10063 - type: AirCanister - components: - - pos: -31.5,-14.5 - parent: 1 - type: Transform -- uid: 10064 - type: NitrogenCanister - components: - - pos: -32.5,-14.5 - parent: 1 - type: Transform -- uid: 10065 - type: OxygenCanister - components: - - pos: -33.5,-14.5 - parent: 1 - type: Transform -- uid: 10066 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-14.5 - parent: 1 - type: Transform -- uid: 10067 - type: Firelock - components: - - pos: -30.5,-16.5 - parent: 1 - type: Transform -- uid: 10068 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-17.5 - parent: 1 - type: Transform -- uid: 10069 - type: TableCarpet - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-17.5 - parent: 1 - type: Transform -- uid: 10070 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-17.5 - parent: 1 - type: Transform -- uid: 10071 - type: ChessBoard - components: - - rot: 1.5707963267948966 rad - pos: -32.55108,-17.47344 - parent: 1 - type: Transform -- uid: 10072 - type: MaintenanceFluffSpawner - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-17.5 - parent: 1 - type: Transform -- uid: 10073 - type: MaintenanceWeaponSpawner - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-17.5 - parent: 1 - type: Transform -- uid: 10074 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-13.5 - parent: 1 - type: Transform -- uid: 10075 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-17.5 - parent: 1 - type: Transform -- uid: 10076 - type: MaintenanceToolSpawner - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-17.5 - parent: 1 - type: Transform -- uid: 10077 - type: MaintenanceToolSpawner - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-13.5 - parent: 1 - type: Transform -- uid: 10078 - type: ClosetEmergencyFilledRandom - components: - - pos: -28.5,-11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10079 - type: ClosetFireFilled - components: - - pos: -28.5,-12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10080 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10081 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10082 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10083 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10084 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10085 - type: ClosetFireFilled - components: - - pos: -15.5,-35.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10086 - type: ClosetEmergencyFilledRandom - components: - - pos: -15.5,-34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10087 - type: Rack - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-33.5 - parent: 1 - type: Transform -- uid: 10088 - type: MaintenanceToolSpawner - components: - - pos: -15.5,-33.5 - parent: 1 - type: Transform -- uid: 10089 - type: StorageCanister - components: - - pos: -15.5,-32.5 - parent: 1 - type: Transform -- uid: 10090 - type: OxygenCanister - components: - - pos: -17.5,-26.5 - parent: 1 - type: Transform -- uid: 10091 - type: NitrogenCanister - components: - - pos: -17.5,-27.5 - parent: 1 - type: Transform -- uid: 10092 - type: AirCanister - components: - - pos: -17.5,-28.5 - parent: 1 - type: Transform -- uid: 10093 - type: WindowDirectional - components: - - pos: -17.5,-28.5 - parent: 1 - type: Transform -- uid: 10094 - type: Rack - components: - - pos: -17.5,-29.5 - parent: 1 - type: Transform -- uid: 10095 - type: ClothingHeadHatBunny - components: - - pos: -13.595756,-19.311182 - parent: 1 - type: Transform -- uid: 10096 - type: FoodBoxPizzaFilled - components: - - pos: -17.506914,-29.281166 - parent: 1 - type: Transform -- uid: 10097 - type: ToiletDirtyWater - components: - - pos: -17.5,-39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10098 - type: Mirror - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-39.5 - parent: 1 - type: Transform -- uid: 10099 - type: SinkStemlessWater - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-39.5 - parent: 1 - type: Transform -- uid: 10100 - type: RandomSoap - components: - - pos: -16.5,-40.5 - parent: 1 - type: Transform -- uid: 10101 - type: BookBase - components: - - pos: -35.309326,-21.379847 - parent: 1 - type: Transform -- uid: 10102 - type: WallSolid - components: - - pos: 16.5,-30.5 - parent: 1 - type: Transform -- uid: 10103 - type: ToiletDirtyWater - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10104 - type: SinkStemlessWater - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-39.5 - parent: 1 - type: Transform -- uid: 10105 - type: Mirror - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-39.5 - parent: 1 - type: Transform -- uid: 10106 - type: RandomSoap - components: - - pos: 16.5,-39.5 - parent: 1 - type: Transform -- uid: 10107 - type: Rack - components: - - pos: -23.5,-27.5 - parent: 1 - type: Transform -- uid: 10108 - type: MaintenanceToolSpawner - components: - - pos: -23.5,-27.5 - parent: 1 - type: Transform -- uid: 10109 - type: GasCanisterBrokenBase - components: - - pos: -28.5,-18.5 - parent: 1 - type: Transform -- uid: 10110 - type: SolarPanelBroken - components: - - pos: 17.5,-37.5 - parent: 1 - type: Transform -- uid: 10111 - type: FoodBowlBigTrash - components: - - pos: 17.411285,-36.66307 - parent: 1 - type: Transform -- uid: 10112 - type: FoodBowlBigTrash - components: - - pos: 18.107027,-35.953514 - parent: 1 - type: Transform -- uid: 10113 - type: ZiptiesBroken - components: - - pos: 17.425484,-37.18814 - parent: 1 - type: Transform -- uid: 10114 - type: WaterTankHighCapacity - components: - - pos: 5.5,4.5 - parent: 1 - type: Transform -- uid: 10115 - type: hydroponicsTray - components: - - pos: 5.5,10.5 - parent: 1 - type: Transform -- uid: 10116 - type: hydroponicsTray - components: - - pos: 5.5,8.5 - parent: 1 - type: Transform -- uid: 10117 - type: hydroponicsTray - components: - - pos: 5.5,9.5 - parent: 1 - type: Transform -- uid: 10118 - type: ClosetEmergencyFilledRandom - components: - - pos: 18.5,-30.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10119 - type: ClosetMaintenanceFilledRandom - components: - - pos: 19.5,-30.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10120 - type: OxygenCanister - components: - - pos: 32.5,-22.5 - parent: 1 - type: Transform -- uid: 10121 - type: NitrogenCanister - components: - - pos: 32.5,-23.5 - parent: 1 - type: Transform -- uid: 10122 - type: AirCanister - components: - - pos: 32.5,-24.5 - parent: 1 - type: Transform -- uid: 10123 - type: ClosetMaintenanceFilledRandom - components: - - pos: 23.5,-21.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10124 - type: CableMV - components: - - pos: -24.5,36.5 - parent: 1 - type: Transform -- uid: 10125 - type: Rack - components: - - pos: 26.5,-22.5 - parent: 1 - type: Transform -- uid: 10126 - type: ClosetToolFilled - components: - - pos: 25.5,-22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10127 - type: ClosetRadiationSuitFilled - components: - - pos: 28.5,-16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10128 - type: ClosetMaintenanceFilledRandom - components: - - pos: 34.5,-12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10129 - type: ClosetEmergencyFilledRandom - components: - - pos: 33.5,-12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10130 - type: ClosetFireFilled - components: - - pos: 27.5,-16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10131 - type: ClosetEmergencyFilledRandom - components: - - pos: 26.5,-16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10132 - type: ClosetMaintenanceFilledRandom - components: - - pos: 25.5,-16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10133 - type: Rack - components: - - pos: 29.5,-16.5 - parent: 1 - type: Transform -- uid: 10134 - type: WallSolid - components: - - pos: 31.5,-17.5 - parent: 1 - type: Transform -- uid: 10135 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-19.5 - parent: 1 - type: Transform -- uid: 10136 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-18.5 - parent: 1 - type: Transform -- uid: 10137 - type: RandomVending - components: - - pos: 28.5,-26.5 - parent: 1 - type: Transform -- uid: 10138 - type: ChairFolding - components: - - pos: 26.5,-25.5 - parent: 1 - type: Transform -- uid: 10139 - type: ChairFolding - components: - - pos: 25.5,-25.5 - parent: 1 - type: Transform -- uid: 10140 - type: Table - components: - - pos: 25.5,-26.5 - parent: 1 - type: Transform -- uid: 10141 - type: Table - components: - - pos: 26.5,-26.5 - parent: 1 - type: Transform -- uid: 10142 - type: ComputerFrame - components: - - rot: 3.141592653589793 rad - pos: 24.5,-26.5 - parent: 1 - type: Transform -- uid: 10143 - type: ComputerBroken - components: - - rot: 3.141592653589793 rad - pos: 27.5,-26.5 - parent: 1 - type: Transform -- uid: 10144 - type: CableHV - components: - - pos: 36.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10145 - type: APCBasic - components: - - pos: 29.5,-14.5 - parent: 1 - type: Transform -- uid: 10146 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 38.5,53.5 - parent: 1 - type: Transform -- uid: 10147 - type: CableHV - components: - - pos: 36.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10148 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 36.5,53.5 - parent: 1 - type: Transform -- uid: 10149 - type: AirlockExternalGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: 37.5,53.5 - parent: 1 - type: Transform -- uid: 10150 - type: AirlockExternalGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: -38.5,56.5 - parent: 1 - type: Transform -- uid: 10151 - type: AirlockExternalGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: -38.5,53.5 - parent: 1 - type: Transform -- uid: 10152 - type: CableMV - components: - - pos: 26.5,-18.5 - parent: 1 - type: Transform -- uid: 10153 - type: CableMV - components: - - pos: 26.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10154 - type: CableMV - components: - - pos: 27.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10155 - type: CableMV - components: - - pos: 28.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10156 - type: CableMV - components: - - pos: 29.5,-19.5 - parent: 1 - type: Transform -- uid: 10157 - type: CableMV - components: - - pos: 30.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10158 - type: CableMV - components: - - pos: 30.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10159 - type: CableMV - components: - - pos: 30.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10160 - type: CableMV - components: - - pos: 30.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10161 - type: CableMV - components: - - pos: 30.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10162 - type: CableMV - components: - - pos: 29.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10163 - type: CableMV - components: - - pos: 29.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10164 - type: CableApcExtension - components: - - pos: 29.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10165 - type: CableApcExtension - components: - - pos: 29.5,-13.5 - parent: 1 - type: Transform -- uid: 10166 - type: CableApcExtension - components: - - pos: 29.5,-12.5 - parent: 1 - type: Transform -- uid: 10167 - type: CableApcExtension - components: - - pos: 29.5,-11.5 - parent: 1 - type: Transform -- uid: 10168 - type: CableApcExtension - components: - - pos: 28.5,-11.5 - parent: 1 - type: Transform -- uid: 10169 - type: CableApcExtension - components: - - pos: 27.5,-11.5 - parent: 1 - type: Transform -- uid: 10170 - type: CableApcExtension - components: - - pos: 26.5,-11.5 - parent: 1 - type: Transform -- uid: 10171 - type: CableApcExtension - components: - - pos: 30.5,-11.5 - parent: 1 - type: Transform -- uid: 10172 - type: CableApcExtension - components: - - pos: 29.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10173 - type: CableApcExtension - components: - - pos: 28.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10174 - type: CableApcExtension - components: - - pos: 27.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10175 - type: CableApcExtension - components: - - pos: 26.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10176 - type: CableApcExtension - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10177 - type: CableApcExtension - components: - - pos: 24.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10178 - type: CableApcExtension - components: - - pos: 24.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10179 - type: CableApcExtension - components: - - pos: 24.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10180 - type: CableApcExtension - components: - - pos: 24.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10181 - type: CableApcExtension - components: - - pos: 24.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10182 - type: CableApcExtension - components: - - pos: 24.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10183 - type: CableApcExtension - components: - - pos: 24.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10184 - type: CableApcExtension - components: - - pos: 24.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10185 - type: CableApcExtension - components: - - pos: 24.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10186 - type: CableApcExtension - components: - - pos: 24.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10187 - type: CableApcExtension - components: - - pos: 24.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10188 - type: CableApcExtension - components: - - pos: 24.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10189 - type: CableApcExtension - components: - - pos: 24.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10190 - type: CableApcExtension - components: - - pos: 23.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10191 - type: CableApcExtension - components: - - pos: 22.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10192 - type: CableApcExtension - components: - - pos: 22.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10193 - type: CableApcExtension - components: - - pos: 22.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10194 - type: CableApcExtension - components: - - pos: 22.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10195 - type: CableApcExtension - components: - - pos: 21.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10196 - type: CableApcExtension - components: - - pos: 21.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10197 - type: CableApcExtension - components: - - pos: 21.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10198 - type: CableApcExtension - components: - - pos: 20.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10199 - type: CableApcExtension - components: - - pos: 19.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10200 - type: CableApcExtension - components: - - pos: 18.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10201 - type: CableApcExtension - components: - - pos: 17.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10202 - type: CableApcExtension - components: - - pos: 16.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10203 - type: CableApcExtension - components: - - pos: 15.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10204 - type: CableApcExtension - components: - - pos: 15.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10205 - type: CableApcExtension - components: - - pos: 15.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10206 - type: CableApcExtension - components: - - pos: 15.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10207 - type: CableApcExtension - components: - - pos: 15.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10208 - type: CableApcExtension - components: - - pos: 15.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10209 - type: CableApcExtension - components: - - pos: 15.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10210 - type: CableApcExtension - components: - - pos: 16.5,-34.5 - parent: 1 - type: Transform -- uid: 10211 - type: CableApcExtension - components: - - pos: 17.5,-34.5 - parent: 1 - type: Transform -- uid: 10212 - type: CableApcExtension - components: - - pos: 18.5,-34.5 - parent: 1 - type: Transform -- uid: 10213 - type: CableApcExtension - components: - - pos: 19.5,-34.5 - parent: 1 - type: Transform -- uid: 10214 - type: CableApcExtension - components: - - pos: 19.5,-35.5 - parent: 1 - type: Transform -- uid: 10215 - type: CableApcExtension - components: - - pos: 19.5,-36.5 - parent: 1 - type: Transform -- uid: 10216 - type: CableApcExtension - components: - - pos: 19.5,-37.5 - parent: 1 - type: Transform -- uid: 10217 - type: CableApcExtension - components: - - pos: 19.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10218 - type: CableApcExtension - components: - - pos: 15.5,-36.5 - parent: 1 - type: Transform -- uid: 10219 - type: CableApcExtension - components: - - pos: 15.5,-37.5 - parent: 1 - type: Transform -- uid: 10220 - type: CableApcExtension - components: - - pos: 15.5,-38.5 - parent: 1 - type: Transform -- uid: 10221 - type: CableApcExtension - components: - - pos: 15.5,-39.5 - parent: 1 - type: Transform -- uid: 10222 - type: CableApcExtension - components: - - pos: 15.5,-40.5 - parent: 1 - type: Transform -- uid: 10223 - type: CableApcExtension - components: - - pos: 30.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10224 - type: CableApcExtension - components: - - pos: 31.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10225 - type: CableApcExtension - components: - - pos: 32.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10226 - type: CableApcExtension - components: - - pos: 32.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10227 - type: CableApcExtension - components: - - pos: 32.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10228 - type: CableApcExtension - components: - - pos: 32.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10229 - type: CableApcExtension - components: - - pos: 32.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10230 - type: CableApcExtension - components: - - pos: 33.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10231 - type: CableApcExtension - components: - - pos: 34.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10232 - type: CableApcExtension - components: - - pos: 35.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10233 - type: CableApcExtension - components: - - pos: 36.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10234 - type: CableApcExtension - components: - - pos: 37.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10235 - type: CableApcExtension - components: - - pos: 38.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10236 - type: CableApcExtension - components: - - pos: 39.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10237 - type: CableApcExtension - components: - - pos: 30.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10238 - type: CableApcExtension - components: - - pos: 30.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10239 - type: CableApcExtension - components: - - pos: 30.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10240 - type: CableApcExtension - components: - - pos: 30.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10241 - type: CableApcExtension - components: - - pos: 30.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10242 - type: CableApcExtension - components: - - pos: 30.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10243 - type: CableApcExtension - components: - - pos: 30.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10244 - type: CableApcExtension - components: - - pos: 30.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10245 - type: CableApcExtension - components: - - pos: 30.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10246 - type: CableApcExtension - components: - - pos: 29.5,-19.5 - parent: 1 - type: Transform -- uid: 10247 - type: CableApcExtension - components: - - pos: 28.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10248 - type: CableApcExtension - components: - - pos: 27.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10249 - type: CableApcExtension - components: - - pos: 26.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10250 - type: CableApcExtension - components: - - pos: 29.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10251 - type: CableApcExtension - components: - - pos: 28.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10252 - type: CableApcExtension - components: - - pos: 27.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10253 - type: CableApcExtension - components: - - pos: 26.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10254 - type: CableApcExtension - components: - - pos: 25.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10255 - type: CableApcExtension - components: - - pos: 31.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10256 - type: CableApcExtension - components: - - pos: 32.5,-20.5 - parent: 1 - type: Transform -- uid: 10257 - type: CableApcExtension - components: - - pos: 33.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10258 - type: CableApcExtension - components: - - pos: 34.5,-20.5 - parent: 1 - type: Transform -- uid: 10259 - type: CableApcExtension - components: - - pos: 35.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10260 - type: CableApcStack1 - components: - - pos: 37.522205,-12.480022 - parent: 1 - type: Transform -- uid: 10261 - type: CableApcExtension - components: - - pos: 37.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10262 - type: CableApcExtension - components: - - pos: 37.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10263 - type: CableApcExtension - components: - - pos: 37.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10264 - type: CableApcExtension - components: - - pos: 37.5,-16.5 - parent: 1 - type: Transform -- uid: 10265 - type: CableApcExtension - components: - - pos: 37.5,-17.5 - parent: 1 - type: Transform -- uid: 10266 - type: CableApcExtension - components: - - pos: 36.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10267 - type: CableApcExtension - components: - - pos: 35.5,-15.5 - parent: 1 - type: Transform -- uid: 10268 - type: CableApcExtension - components: - - pos: 34.5,-19.5 - parent: 1 - type: Transform -- uid: 10269 - type: CableApcExtension - components: - - pos: 34.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10270 - type: CableApcExtension - components: - - pos: 31.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10271 - type: CableApcExtension - components: - - pos: 32.5,-24.5 - parent: 1 - type: Transform -- uid: 10272 - type: CableMV - components: - - pos: -32.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10273 - type: CableMV - components: - - pos: -33.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10274 - type: CableMV - components: - - pos: -34.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10275 - type: CableMV - components: - - pos: -35.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10276 - type: CableMV - components: - - pos: -35.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10277 - type: CableMV - components: - - pos: -35.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10278 - type: CableMV - components: - - pos: -35.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10279 - type: CableMV - components: - - pos: -35.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10280 - type: CableMV - components: - - pos: -35.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10281 - type: CableMV - components: - - pos: -35.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10282 - type: CableMV - components: - - pos: -35.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10283 - type: CableMV - components: - - pos: -36.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10284 - type: CableMV - components: - - pos: -37.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10285 - type: CableMV - components: - - pos: -38.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10286 - type: CableMV - components: - - pos: -39.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10287 - type: CableMV - components: - - pos: -40.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10288 - type: CableMV - components: - - pos: -40.5,-8.5 - parent: 1 - type: Transform -- uid: 10289 - type: CableMV - components: - - pos: -40.5,-7.5 - parent: 1 - type: Transform -- uid: 10290 - type: CableMV - components: - - pos: -40.5,-6.5 - parent: 1 - type: Transform -- uid: 10291 - type: CableMV - components: - - pos: -40.5,-5.5 - parent: 1 - type: Transform -- uid: 10292 - type: CableMV - components: - - pos: -40.5,-4.5 - parent: 1 - type: Transform -- uid: 10293 - type: CableMV - components: - - pos: -40.5,-3.5 - parent: 1 - type: Transform -- uid: 10294 - type: CableMV - components: - - pos: -40.5,-2.5 - parent: 1 - type: Transform -- uid: 10295 - type: CableMV - components: - - pos: -40.5,-1.5 - parent: 1 - type: Transform -- uid: 10296 - type: CableMV - components: - - pos: -40.5,-0.5 - parent: 1 - type: Transform -- uid: 10297 - type: CableMV - components: - - pos: -39.5,-0.5 - parent: 1 - type: Transform -- uid: 10298 - type: CableMV - components: - - pos: -39.5,0.5 - parent: 1 - type: Transform -- uid: 10299 - type: CableMV - components: - - pos: -39.5,1.5 - parent: 1 - type: Transform -- uid: 10300 - type: CableMV - components: - - pos: -39.5,2.5 - parent: 1 - type: Transform -- uid: 10301 - type: CableMV - components: - - pos: -39.5,3.5 - parent: 1 - type: Transform -- uid: 10302 - type: CableMV - components: - - pos: -39.5,4.5 - parent: 1 - type: Transform -- uid: 10303 - type: CableMV - components: - - pos: -39.5,5.5 - parent: 1 - type: Transform -- uid: 10304 - type: CableMV - components: - - pos: -39.5,6.5 - parent: 1 - type: Transform -- uid: 10305 - type: CableMV - components: - - pos: -39.5,7.5 - parent: 1 - type: Transform -- uid: 10306 - type: CableMV - components: - - pos: -40.5,7.5 - parent: 1 - type: Transform -- uid: 10307 - type: CableMV - components: - - pos: -41.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10308 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -41.5,7.5 - parent: 1 - type: Transform -- uid: 10309 - type: CableApcExtension - components: - - pos: -41.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10310 - type: CableApcExtension - components: - - pos: -42.5,7.5 - parent: 1 - type: Transform -- uid: 10311 - type: CableApcExtension - components: - - pos: -43.5,7.5 - parent: 1 - type: Transform -- uid: 10312 - type: CableApcExtension - components: - - pos: -44.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10313 - type: CableApcExtension - components: - - pos: -44.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10314 - type: CableApcExtension - components: - - pos: -44.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10315 - type: CableApcExtension - components: - - pos: -43.5,9.5 - parent: 1 - type: Transform -- uid: 10316 - type: CableApcExtension - components: - - pos: -43.5,10.5 - parent: 1 - type: Transform -- uid: 10317 - type: CableApcExtension - components: - - pos: -43.5,11.5 - parent: 1 - type: Transform -- uid: 10318 - type: CableApcExtension - components: - - pos: -42.5,11.5 - parent: 1 - type: Transform -- uid: 10319 - type: CableApcExtension - components: - - pos: -40.5,7.5 - parent: 1 - type: Transform -- uid: 10320 - type: CableApcExtension - components: - - pos: -39.5,7.5 - parent: 1 - type: Transform -- uid: 10321 - type: CableApcExtension - components: - - pos: -38.5,7.5 - parent: 1 - type: Transform -- uid: 10322 - type: CableApcExtension - components: - - pos: -37.5,7.5 - parent: 1 - type: Transform -- uid: 10323 - type: CableApcExtension - components: - - pos: -36.5,7.5 - parent: 1 - type: Transform -- uid: 10324 - type: CableApcExtension - components: - - pos: -35.5,7.5 - parent: 1 - type: Transform -- uid: 10325 - type: CableApcExtension - components: - - pos: -34.5,7.5 - parent: 1 - type: Transform -- uid: 10326 - type: CableApcExtension - components: - - pos: -33.5,7.5 - parent: 1 - type: Transform -- uid: 10327 - type: CableApcExtension - components: - - pos: -33.5,6.5 - parent: 1 - type: Transform -- uid: 10328 - type: CableApcExtension - components: - - pos: -33.5,5.5 - parent: 1 - type: Transform -- uid: 10329 - type: CableApcExtension - components: - - pos: -33.5,4.5 - parent: 1 - type: Transform -- uid: 10330 - type: CableApcExtension - components: - - pos: -34.5,4.5 - parent: 1 - type: Transform -- uid: 10331 - type: CableApcExtension - components: - - pos: -35.5,4.5 - parent: 1 - type: Transform -- uid: 10332 - type: CableApcExtension - components: - - pos: -36.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10333 - type: CableApcExtension - components: - - pos: -37.5,4.5 - parent: 1 - type: Transform -- uid: 10334 - type: CableApcExtension - components: - - pos: -38.5,4.5 - parent: 1 - type: Transform -- uid: 10335 - type: CableApcExtension - components: - - pos: -39.5,4.5 - parent: 1 - type: Transform -- uid: 10336 - type: CableApcExtension - components: - - pos: -40.5,4.5 - parent: 1 - type: Transform -- uid: 10337 - type: CableApcExtension - components: - - pos: -40.5,5.5 - parent: 1 - type: Transform -- uid: 10338 - type: CableApcExtension - components: - - pos: -40.5,6.5 - parent: 1 - type: Transform -- uid: 10339 - type: CableApcExtension - components: - - pos: -40.5,3.5 - parent: 1 - type: Transform -- uid: 10340 - type: CableApcExtension - components: - - pos: -40.5,2.5 - parent: 1 - type: Transform -- uid: 10341 - type: CableApcExtension - components: - - pos: -40.5,1.5 - parent: 1 - type: Transform -- uid: 10342 - type: CableApcExtension - components: - - pos: -40.5,0.5 - parent: 1 - type: Transform -- uid: 10343 - type: CableApcExtension - components: - - pos: -40.5,-0.5 - parent: 1 - type: Transform -- uid: 10344 - type: CableApcExtension - components: - - pos: -40.5,-1.5 - parent: 1 - type: Transform -- uid: 10345 - type: CableApcExtension - components: - - pos: -40.5,-2.5 - parent: 1 - type: Transform -- uid: 10346 - type: CableApcExtension - components: - - pos: -40.5,-3.5 - parent: 1 - type: Transform -- uid: 10347 - type: CableApcExtension - components: - - pos: -40.5,-4.5 - parent: 1 - type: Transform -- uid: 10348 - type: CableApcExtension - components: - - pos: -40.5,-5.5 - parent: 1 - type: Transform -- uid: 10349 - type: CableApcExtension - components: - - pos: -40.5,-6.5 - parent: 1 - type: Transform -- uid: 10350 - type: CableApcExtension - components: - - pos: -40.5,-7.5 - parent: 1 - type: Transform -- uid: 10351 - type: CableApcExtension - components: - - pos: -39.5,-1.5 - parent: 1 - type: Transform -- uid: 10352 - type: CableApcExtension - components: - - pos: -38.5,-1.5 - parent: 1 - type: Transform -- uid: 10353 - type: CableApcExtension - components: - - pos: -37.5,-1.5 - parent: 1 - type: Transform -- uid: 10354 - type: CableApcExtension - components: - - pos: -36.5,-1.5 - parent: 1 - type: Transform -- uid: 10355 - type: CableApcExtension - components: - - pos: -35.5,-1.5 - parent: 1 - type: Transform -- uid: 10356 - type: CableApcExtension - components: - - pos: -34.5,-1.5 - parent: 1 - type: Transform -- uid: 10357 - type: CableApcExtension - components: - - pos: -38.5,2.5 - parent: 1 - type: Transform -- uid: 10358 - type: CableApcExtension - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform -- uid: 10359 - type: CableApcExtension - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform -- uid: 10360 - type: CableApcExtension - components: - - pos: -35.5,2.5 - parent: 1 - type: Transform -- uid: 10361 - type: CableApcExtension - components: - - pos: -34.5,2.5 - parent: 1 - type: Transform -- uid: 10362 - type: CableApcExtension - components: - - pos: -39.5,2.5 - parent: 1 - type: Transform -- uid: 10363 - type: CableApcExtension - components: - - pos: -41.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10364 - type: CableApcExtension - components: - - pos: -42.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10365 - type: CableApcExtension - components: - - pos: -43.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10366 - type: CableApcExtension - components: - - pos: -42.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10367 - type: CableApcExtension - components: - - pos: -43.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10368 - type: CableApcExtension - components: - - pos: -41.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10369 - type: CableApcExtension - components: - - pos: -41.5,-1.5 - parent: 1 - type: Transform -- uid: 10370 - type: CableApcExtension - components: - - pos: -42.5,-1.5 - parent: 1 - type: Transform -- uid: 10371 - type: CableApcExtension - components: - - pos: -43.5,-1.5 - parent: 1 - type: Transform -- uid: 10372 - type: CableApcExtension - components: - - pos: -41.5,-5.5 - parent: 1 - type: Transform -- uid: 10373 - type: CableApcExtension - components: - - pos: -42.5,-5.5 - parent: 1 - type: Transform -- uid: 10374 - type: CableApcExtension - components: - - pos: -43.5,-5.5 - parent: 1 - type: Transform -- uid: 10375 - type: CableApcExtension - components: - - pos: -34.5,-2.5 - parent: 1 - type: Transform -- uid: 10376 - type: CableApcExtension - components: - - pos: -34.5,-3.5 - parent: 1 - type: Transform -- uid: 10377 - type: CableApcExtension - components: - - pos: -34.5,-4.5 - parent: 1 - type: Transform -- uid: 10378 - type: CableApcExtension - components: - - pos: -34.5,-5.5 - parent: 1 - type: Transform -- uid: 10379 - type: CableApcExtension - components: - - pos: -39.5,8.5 - parent: 1 - type: Transform -- uid: 10380 - type: CableApcExtension - components: - - pos: -39.5,9.5 - parent: 1 - type: Transform -- uid: 10381 - type: CableApcExtension - components: - - pos: -39.5,10.5 - parent: 1 - type: Transform -- uid: 10382 - type: CableApcExtension - components: - - pos: -39.5,11.5 - parent: 1 - type: Transform -- uid: 10383 - type: HospitalCurtainsOpen - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-17.5 - parent: 1 - type: Transform -- uid: 10384 - type: BedsheetSpawner - components: - - pos: 33.5,-17.5 - parent: 1 - type: Transform -- uid: 10385 - type: Dresser - components: - - pos: 34.5,-17.5 - parent: 1 - type: Transform -- uid: 10386 - type: CableMV - components: - - pos: 30.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10387 - type: CableMV - components: - - pos: 30.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10388 - type: CableMV - components: - - pos: 30.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10389 - type: CableMV - components: - - pos: 30.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10390 - type: CableMV - components: - - pos: 30.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10391 - type: CableMV - components: - - pos: 29.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10392 - type: CableMV - components: - - pos: 28.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10393 - type: CableMV - components: - - pos: 27.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10394 - type: CableMV - components: - - pos: 26.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10395 - type: CableMV - components: - - pos: 25.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10396 - type: CableMV - components: - - pos: 24.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10397 - type: CableMV - components: - - pos: 23.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10398 - type: CableMV - components: - - pos: 22.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10399 - type: CableMV - components: - - pos: 22.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10400 - type: CableMV - components: - - pos: 22.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10401 - type: CableMV - components: - - pos: 22.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10402 - type: CableMV - components: - - pos: 21.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10403 - type: CableMV - components: - - pos: 21.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10404 - type: CableMV - components: - - pos: 21.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10405 - type: CableMV - components: - - pos: 20.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10406 - type: CableMV - components: - - pos: 19.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10407 - type: CableMV - components: - - pos: 18.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10408 - type: CableMV - components: - - pos: 17.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10409 - type: CableMV - components: - - pos: 16.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10410 - type: CableMV - components: - - pos: 15.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10411 - type: CableMV - components: - - pos: 15.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10412 - type: CableMV - components: - - pos: 15.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10413 - type: CableMV - components: - - pos: 15.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10414 - type: CableMV - components: - - pos: 15.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10415 - type: CableMV - components: - - pos: 15.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10416 - type: CableMV - components: - - pos: 8.5,-18.5 - parent: 1 - type: Transform -- uid: 10417 - type: AirlockMaintEngiLocked - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-35.5 - parent: 1 - type: Transform -- uid: 10418 - type: CableMV - components: - - pos: 13.5,-35.5 - parent: 1 - type: Transform -- uid: 10419 - type: CableMV - components: - - pos: 13.5,-34.5 - parent: 1 - type: Transform -- uid: 10420 - type: CableMV - components: - - pos: 13.5,-33.5 - parent: 1 - type: Transform -- uid: 10421 - type: CableMV - components: - - pos: 13.5,-32.5 - parent: 1 - type: Transform -- uid: 10422 - type: CableMV - components: - - pos: 13.5,-31.5 - parent: 1 - type: Transform -- uid: 10423 - type: CableMV - components: - - pos: 13.5,-30.5 - parent: 1 - type: Transform -- uid: 10424 - type: CableMV - components: - - pos: 13.5,-29.5 - parent: 1 - type: Transform -- uid: 10425 - type: CableMV - components: - - pos: 12.5,-29.5 - parent: 1 - type: Transform -- uid: 10426 - type: CableMV - components: - - pos: 12.5,-29.5 - parent: 1 - type: Transform -- uid: 10427 - type: CableMV - components: - - pos: 12.5,-28.5 - parent: 1 - type: Transform -- uid: 10428 - type: CableMV - components: - - pos: 12.5,-27.5 - parent: 1 - type: Transform -- uid: 10429 - type: CableMV - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform -- uid: 10430 - type: CableMV - components: - - pos: 12.5,-25.5 - parent: 1 - type: Transform -- uid: 10431 - type: CableMV - components: - - pos: 12.5,-24.5 - parent: 1 - type: Transform -- uid: 10432 - type: CableMV - components: - - pos: 12.5,-23.5 - parent: 1 - type: Transform -- uid: 10433 - type: CableMV - components: - - pos: 12.5,-22.5 - parent: 1 - type: Transform -- uid: 10434 - type: CableMV - components: - - pos: 12.5,-21.5 - parent: 1 - type: Transform -- uid: 10435 - type: CableMV - components: - - pos: 12.5,-20.5 - parent: 1 - type: Transform -- uid: 10436 - type: CableMV - components: - - pos: 13.5,-23.5 - parent: 1 - type: Transform -- uid: 10437 - type: CableMV - components: - - pos: 14.5,-23.5 - parent: 1 - type: Transform -- uid: 10438 - type: CableMV - components: - - pos: 15.5,-23.5 - parent: 1 - type: Transform -- uid: 10439 - type: CableMV - components: - - pos: 16.5,-23.5 - parent: 1 - type: Transform -- uid: 10440 - type: CableMV - components: - - pos: 16.5,-22.5 - parent: 1 - type: Transform -- uid: 10441 - type: CableMV - components: - - pos: 16.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10442 - type: APCBasic - components: - - pos: 16.5,-21.5 - parent: 1 - type: Transform -- uid: 10443 - type: CableApcExtension - components: - - pos: 16.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10444 - type: CableApcExtension - components: - - pos: 17.5,-21.5 - parent: 1 - type: Transform -- uid: 10445 - type: CableApcExtension - components: - - pos: 17.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10446 - type: CableApcExtension - components: - - pos: 18.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10447 - type: CableApcExtension - components: - - pos: 17.5,-22.5 - parent: 1 - type: Transform -- uid: 10448 - type: CableApcExtension - components: - - pos: 17.5,-23.5 - parent: 1 - type: Transform -- uid: 10449 - type: CableApcExtension - components: - - pos: 17.5,-24.5 - parent: 1 - type: Transform -- uid: 10450 - type: CableApcExtension - components: - - pos: 17.5,-25.5 - parent: 1 - type: Transform -- uid: 10451 - type: CableApcExtension - components: - - pos: 17.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10452 - type: CableApcExtension - components: - - pos: 18.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10453 - type: CableApcExtension - components: - - pos: 18.5,-23.5 - parent: 1 - type: Transform -- uid: 10454 - type: CableApcExtension - components: - - pos: 19.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10455 - type: CableApcExtension - components: - - pos: 19.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10456 - type: CableApcExtension - components: - - pos: 19.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10457 - type: CableApcExtension - components: - - pos: 16.5,-23.5 - parent: 1 - type: Transform -- uid: 10458 - type: APCBasic - components: - - pos: 5.5,-31.5 - parent: 1 - type: Transform -- uid: 10459 - type: CableMV - components: - - pos: 12.5,-34.5 - parent: 1 - type: Transform -- uid: 10460 - type: CableMV - components: - - pos: 11.5,-34.5 - parent: 1 - type: Transform -- uid: 10461 - type: CableMV - components: - - pos: 10.5,-34.5 - parent: 1 - type: Transform -- uid: 10462 - type: CableMV - components: - - pos: 9.5,-34.5 - parent: 1 - type: Transform -- uid: 10463 - type: CableMV - components: - - pos: 8.5,-34.5 - parent: 1 - type: Transform -- uid: 10464 - type: CableMV - components: - - pos: 7.5,-34.5 - parent: 1 - type: Transform -- uid: 10465 - type: CableMV - components: - - pos: 6.5,-34.5 - parent: 1 - type: Transform -- uid: 10466 - type: CableMV - components: - - pos: 5.5,-34.5 - parent: 1 - type: Transform -- uid: 10467 - type: CableMV - components: - - pos: 5.5,-33.5 - parent: 1 - type: Transform -- uid: 10468 - type: CableMV - components: - - pos: 5.5,-32.5 - parent: 1 - type: Transform -- uid: 10469 - type: CableMV - components: - - pos: 5.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10470 - type: CableApcExtension - components: - - pos: 5.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10471 - type: CableApcExtension - components: - - pos: 5.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10472 - type: CableApcExtension - components: - - pos: 5.5,-29.5 - parent: 1 - type: Transform -- uid: 10473 - type: CableApcExtension - components: - - pos: 5.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10474 - type: CableApcExtension - components: - - pos: 6.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10475 - type: CableApcExtension - components: - - pos: 7.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10476 - type: CableApcExtension - components: - - pos: 8.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10477 - type: CableApcExtension - components: - - pos: 8.5,-29.5 - parent: 1 - type: Transform -- uid: 10478 - type: CableApcExtension - components: - - pos: 8.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10479 - type: CableApcExtension - components: - - pos: 7.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10480 - type: CableApcExtension - components: - - pos: 7.5,-31.5 - parent: 1 - type: Transform -- uid: 10481 - type: CableApcExtension - components: - - pos: 7.5,-32.5 - parent: 1 - type: Transform -- uid: 10482 - type: CableApcExtension - components: - - pos: 7.5,-33.5 - parent: 1 - type: Transform -- uid: 10483 - type: CableApcExtension - components: - - pos: 7.5,-34.5 - parent: 1 - type: Transform -- uid: 10484 - type: CableApcExtension - components: - - pos: 7.5,-35.5 - parent: 1 - type: Transform -- uid: 10485 - type: CableApcExtension - components: - - pos: 7.5,-36.5 - parent: 1 - type: Transform -- uid: 10486 - type: CableApcExtension - components: - - pos: 7.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10487 - type: CableApcExtension - components: - - pos: 7.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10488 - type: CableApcExtension - components: - - pos: 7.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10489 - type: CableApcExtension - components: - - pos: 7.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10490 - type: CableApcExtension - components: - - pos: 6.5,-36.5 - parent: 1 - type: Transform -- uid: 10491 - type: CableApcExtension - components: - - pos: 5.5,-36.5 - parent: 1 - type: Transform -- uid: 10492 - type: CableApcExtension - components: - - pos: 4.5,-36.5 - parent: 1 - type: Transform -- uid: 10493 - type: CableApcExtension - components: - - pos: 4.5,-37.5 - parent: 1 - type: Transform -- uid: 10494 - type: CableApcExtension - components: - - pos: 4.5,-38.5 - parent: 1 - type: Transform -- uid: 10495 - type: CableApcExtension - components: - - pos: 4.5,-39.5 - parent: 1 - type: Transform -- uid: 10496 - type: CableApcExtension - components: - - pos: 4.5,-40.5 - parent: 1 - type: Transform -- uid: 10497 - type: CableApcExtension - components: - - pos: 4.5,-41.5 - parent: 1 - type: Transform -- uid: 10498 - type: CableApcExtension - components: - - pos: 8.5,-36.5 - parent: 1 - type: Transform -- uid: 10499 - type: CableApcExtension - components: - - pos: 9.5,-36.5 - parent: 1 - type: Transform -- uid: 10500 - type: CableApcExtension - components: - - pos: 9.5,-37.5 - parent: 1 - type: Transform -- uid: 10501 - type: CableApcExtension - components: - - pos: 9.5,-38.5 - parent: 1 - type: Transform -- uid: 10502 - type: CableApcExtension - components: - - pos: 9.5,-39.5 - parent: 1 - type: Transform -- uid: 10503 - type: CableApcExtension - components: - - pos: 9.5,-40.5 - parent: 1 - type: Transform -- uid: 10504 - type: CableApcExtension - components: - - pos: 9.5,-41.5 - parent: 1 - type: Transform -- uid: 10505 - type: CableApcExtension - components: - - pos: 8.5,-34.5 - parent: 1 - type: Transform -- uid: 10506 - type: CableApcExtension - components: - - pos: 9.5,-34.5 - parent: 1 - type: Transform -- uid: 10507 - type: CableApcExtension - components: - - pos: 10.5,-34.5 - parent: 1 - type: Transform -- uid: 10508 - type: CableApcExtension - components: - - pos: 11.5,-34.5 - parent: 1 - type: Transform -- uid: 10509 - type: CableApcExtension - components: - - pos: 12.5,-34.5 - parent: 1 - type: Transform -- uid: 10510 - type: CableApcExtension - components: - - pos: 12.5,-35.5 - parent: 1 - type: Transform -- uid: 10511 - type: CableApcExtension - components: - - pos: 12.5,-36.5 - parent: 1 - type: Transform -- uid: 10512 - type: CableApcExtension - components: - - pos: 12.5,-37.5 - parent: 1 - type: Transform -- uid: 10513 - type: CableApcExtension - components: - - pos: 12.5,-38.5 - parent: 1 - type: Transform -- uid: 10514 - type: CableApcExtension - components: - - pos: 12.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10515 - type: CableApcExtension - components: - - pos: 12.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10516 - type: CableApcExtension - components: - - pos: 12.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10517 - type: CableApcExtension - components: - - pos: 12.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10518 - type: CableApcExtension - components: - - pos: 12.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10519 - type: CableApcExtension - components: - - pos: 12.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10520 - type: CableApcExtension - components: - - pos: 12.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10521 - type: CableApcExtension - components: - - pos: 12.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10522 - type: CableApcExtension - components: - - pos: 12.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10523 - type: CableApcExtension - components: - - pos: 13.5,-34.5 - parent: 1 - type: Transform -- uid: 10524 - type: CableApcExtension - components: - - pos: 13.5,-33.5 - parent: 1 - type: Transform -- uid: 10525 - type: CableApcExtension - components: - - pos: 13.5,-32.5 - parent: 1 - type: Transform -- uid: 10526 - type: CableApcExtension - components: - - pos: 13.5,-31.5 - parent: 1 - type: Transform -- uid: 10527 - type: CableApcExtension - components: - - pos: 13.5,-30.5 - parent: 1 - type: Transform -- uid: 10528 - type: CableApcExtension - components: - - pos: 13.5,-29.5 - parent: 1 - type: Transform -- uid: 10529 - type: CableApcExtension - components: - - pos: 12.5,-29.5 - parent: 1 - type: Transform -- uid: 10530 - type: CableApcExtension - components: - - pos: 11.5,-29.5 - parent: 1 - type: Transform -- uid: 10531 - type: CableApcExtension - components: - - pos: 10.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10532 - type: CableApcExtension - components: - - pos: 9.5,-29.5 - parent: 1 - type: Transform -- uid: 10533 - type: CableApcExtension - components: - - pos: 5.5,-29.5 - parent: 1 - type: Transform -- uid: 10534 - type: CableApcExtension - components: - - pos: 4.5,-30.5 - parent: 1 - type: Transform -- uid: 10535 - type: CableApcExtension - components: - - pos: 4.5,-29.5 - parent: 1 - type: Transform -- uid: 10536 - type: CableApcExtension - components: - - pos: 4.5,-28.5 - parent: 1 - type: Transform -- uid: 10537 - type: CableApcExtension - components: - - pos: 5.5,-32.5 - parent: 1 - type: Transform -- uid: 10538 - type: CableApcExtension - components: - - pos: 5.5,-33.5 - parent: 1 - type: Transform -- uid: 10539 - type: CableApcExtension - components: - - pos: 5.5,-34.5 - parent: 1 - type: Transform -- uid: 10540 - type: CableApcExtension - components: - - pos: 6.5,-34.5 - parent: 1 - type: Transform -- uid: 10541 - type: CableHV - components: - - pos: 7.5,-41.5 - parent: 1 - type: Transform -- uid: 10542 - type: CableHV - components: - - pos: 7.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10543 - type: CableHV - components: - - pos: 6.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10544 - type: CableHV - components: - - pos: 5.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10545 - type: APCBasic - components: - - pos: 10.5,-19.5 - parent: 1 - type: Transform -- uid: 10546 - type: CableMV - components: - - pos: 11.5,-20.5 - parent: 1 - type: Transform -- uid: 10547 - type: CableMV - components: - - pos: 10.5,-20.5 - parent: 1 - type: Transform -- uid: 10548 - type: CableMV - components: - - pos: 10.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10549 - type: CableApcExtension - components: - - pos: 10.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10550 - type: CableApcExtension - components: - - pos: 10.5,-20.5 - parent: 1 - type: Transform -- uid: 10551 - type: CableApcExtension - components: - - pos: 10.5,-21.5 - parent: 1 - type: Transform -- uid: 10552 - type: CableApcExtension - components: - - pos: 10.5,-22.5 - parent: 1 - type: Transform -- uid: 10553 - type: CableApcExtension - components: - - pos: 10.5,-23.5 - parent: 1 - type: Transform -- uid: 10554 - type: CableApcExtension - components: - - pos: 10.5,-24.5 - parent: 1 - type: Transform -- uid: 10555 - type: CableApcExtension - components: - - pos: 10.5,-25.5 - parent: 1 - type: Transform -- uid: 10556 - type: CableApcExtension - components: - - pos: 10.5,-26.5 - parent: 1 - type: Transform -- uid: 10557 - type: CableApcExtension - components: - - pos: 11.5,-26.5 - parent: 1 - type: Transform -- uid: 10558 - type: CableApcExtension - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform -- uid: 10559 - type: CableApcExtension - components: - - pos: 13.5,-26.5 - parent: 1 - type: Transform -- uid: 10560 - type: CableApcExtension - components: - - pos: 13.5,-25.5 - parent: 1 - type: Transform -- uid: 10561 - type: CableApcExtension - components: - - pos: 13.5,-24.5 - parent: 1 - type: Transform -- uid: 10562 - type: CableApcExtension - components: - - pos: 13.5,-23.5 - parent: 1 - type: Transform -- uid: 10563 - type: CableApcExtension - components: - - pos: 13.5,-22.5 - parent: 1 - type: Transform -- uid: 10564 - type: CableApcExtension - components: - - pos: 13.5,-21.5 - parent: 1 - type: Transform -- uid: 10565 - type: CableApcExtension - components: - - pos: 13.5,-20.5 - parent: 1 - type: Transform -- uid: 10566 - type: CableApcExtension - components: - - pos: 12.5,-20.5 - parent: 1 - type: Transform -- uid: 10567 - type: CableApcExtension - components: - - pos: 12.5,-19.5 - parent: 1 - type: Transform -- uid: 10568 - type: CableApcExtension - components: - - pos: 12.5,-18.5 - parent: 1 - type: Transform -- uid: 10569 - type: CableApcExtension - components: - - pos: 11.5,-18.5 - parent: 1 - type: Transform -- uid: 10570 - type: CableApcExtension - components: - - pos: 10.5,-18.5 - parent: 1 - type: Transform -- uid: 10571 - type: CableApcExtension - components: - - pos: 10.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10572 - type: CableApcExtension - components: - - pos: 9.5,-20.5 - parent: 1 - type: Transform -- uid: 10573 - type: CableApcExtension - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform -- uid: 10574 - type: CableApcExtension - components: - - pos: 7.5,-20.5 - parent: 1 - type: Transform -- uid: 10575 - type: CableApcExtension - components: - - pos: 6.5,-20.5 - parent: 1 - type: Transform -- uid: 10576 - type: CableApcExtension - components: - - pos: 5.5,-20.5 - parent: 1 - type: Transform -- uid: 10577 - type: CableApcExtension - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform -- uid: 10578 - type: CableApcExtension - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform -- uid: 10579 - type: CableApcExtension - components: - - pos: 4.5,-18.5 - parent: 1 - type: Transform -- uid: 10580 - type: CableApcExtension - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform -- uid: 10581 - type: CableApcExtension - components: - - pos: 6.5,-18.5 - parent: 1 - type: Transform -- uid: 10582 - type: CableApcExtension - components: - - pos: 7.5,-18.5 - parent: 1 - type: Transform -- uid: 10583 - type: CableApcExtension - components: - - pos: 7.5,-19.5 - parent: 1 - type: Transform -- uid: 10584 - type: CableApcExtension - components: - - pos: 9.5,-24.5 - parent: 1 - type: Transform -- uid: 10585 - type: CableApcExtension - components: - - pos: 8.5,-24.5 - parent: 1 - type: Transform -- uid: 10586 - type: CableApcExtension - components: - - pos: 7.5,-24.5 - parent: 1 - type: Transform -- uid: 10587 - type: CableApcExtension - components: - - pos: 6.5,-24.5 - parent: 1 - type: Transform -- uid: 10588 - type: CableApcExtension - components: - - pos: 5.5,-24.5 - parent: 1 - type: Transform -- uid: 10589 - type: CableApcExtension - components: - - pos: 4.5,-24.5 - parent: 1 - type: Transform -- uid: 10590 - type: CableApcExtension - components: - - pos: 4.5,-25.5 - parent: 1 - type: Transform -- uid: 10591 - type: CableApcExtension - components: - - pos: 4.5,-26.5 - parent: 1 - type: Transform -- uid: 10592 - type: CableApcExtension - components: - - pos: 5.5,-26.5 - parent: 1 - type: Transform -- uid: 10593 - type: CableApcExtension - components: - - pos: 6.5,-26.5 - parent: 1 - type: Transform -- uid: 10594 - type: CableApcExtension - components: - - pos: 7.5,-26.5 - parent: 1 - type: Transform -- uid: 10595 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 6.5,-16.5 - parent: 1 - type: Transform -- uid: 10596 - type: CableApcExtension - components: - - pos: 6.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10597 - type: CableApcExtension - components: - - pos: 6.5,-15.5 - parent: 1 - type: Transform -- uid: 10598 - type: CableApcExtension - components: - - pos: 6.5,-14.5 - parent: 1 - type: Transform -- uid: 10599 - type: CableApcExtension - components: - - pos: 6.5,-13.5 - parent: 1 - type: Transform -- uid: 10600 - type: CableApcExtension - components: - - pos: 6.5,-12.5 - parent: 1 - type: Transform -- uid: 10601 - type: CableApcExtension - components: - - pos: 6.5,-11.5 - parent: 1 - type: Transform -- uid: 10602 - type: CableApcExtension - components: - - pos: 5.5,-12.5 - parent: 1 - type: Transform -- uid: 10603 - type: CableApcExtension - components: - - pos: 4.5,-12.5 - parent: 1 - type: Transform -- uid: 10604 - type: CableApcExtension - components: - - pos: 3.5,-12.5 - parent: 1 - type: Transform -- uid: 10605 - type: CableApcExtension - components: - - pos: 2.5,-12.5 - parent: 1 - type: Transform -- uid: 10606 - type: CableApcExtension - components: - - pos: 1.5,-12.5 - parent: 1 - type: Transform -- uid: 10607 - type: CableApcExtension - components: - - pos: 0.5,-12.5 - parent: 1 - type: Transform -- uid: 10608 - type: CableApcExtension - components: - - pos: 7.5,-12.5 - parent: 1 - type: Transform -- uid: 10609 - type: CableApcExtension - components: - - pos: 8.5,-12.5 - parent: 1 - type: Transform -- uid: 10610 - type: CableApcExtension - components: - - pos: 9.5,-12.5 - parent: 1 - type: Transform -- uid: 10611 - type: CableApcExtension - components: - - pos: 10.5,-12.5 - parent: 1 - type: Transform -- uid: 10612 - type: CableApcExtension - components: - - pos: 11.5,-12.5 - parent: 1 - type: Transform -- uid: 10613 - type: CableApcExtension - components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform -- uid: 10614 - type: CableApcExtension - components: - - pos: 13.5,-12.5 - parent: 1 - type: Transform -- uid: 10615 - type: CableApcExtension - components: - - pos: 13.5,-13.5 - parent: 1 - type: Transform -- uid: 10616 - type: CableApcExtension - components: - - pos: 13.5,-14.5 - parent: 1 - type: Transform -- uid: 10617 - type: CableApcExtension - components: - - pos: 13.5,-15.5 - parent: 1 - type: Transform -- uid: 10618 - type: CableApcExtension - components: - - pos: 12.5,-15.5 - parent: 1 - type: Transform -- uid: 10619 - type: CableApcExtension - components: - - pos: 11.5,-15.5 - parent: 1 - type: Transform -- uid: 10620 - type: CableApcExtension - components: - - pos: 10.5,-15.5 - parent: 1 - type: Transform -- uid: 10621 - type: CableApcExtension - components: - - pos: 9.5,-15.5 - parent: 1 - type: Transform -- uid: 10622 - type: CableApcExtension - components: - - pos: 8.5,-15.5 - parent: 1 - type: Transform -- uid: 10623 - type: CableApcExtension - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform -- uid: 10624 - type: CableApcExtension - components: - - pos: 6.5,-15.5 - parent: 1 - type: Transform -- uid: 10625 - type: CableApcExtension - components: - - pos: 5.5,-15.5 - parent: 1 - type: Transform -- uid: 10626 - type: CableApcExtension - components: - - pos: 4.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10627 - type: CableApcExtension - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10628 - type: CableApcExtension - components: - - pos: 2.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10629 - type: CableApcExtension - components: - - pos: 1.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10630 - type: CableApcExtension - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10631 - type: CableMV - components: - - pos: 28.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10632 - type: CableMV - components: - - pos: 27.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10633 - type: CableMV - components: - - pos: 26.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10634 - type: CableMV - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10635 - type: CableMV - components: - - pos: 24.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10636 - type: CableMV - components: - - pos: 24.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10637 - type: CableMV - components: - - pos: 24.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10638 - type: CableMV - components: - - pos: 24.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10639 - type: CableMV - components: - - pos: 24.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10640 - type: CableMV - components: - - pos: 24.5,-10.5 - parent: 1 - type: Transform -- uid: 10641 - type: CableMV - components: - - pos: 24.5,-9.5 - parent: 1 - type: Transform -- uid: 10642 - type: PowerCellRecharger - components: - - pos: 20.5,41.5 - parent: 1 - type: Transform -- uid: 10643 - type: TableReinforced - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform -- uid: 10644 - type: SpawnMobAlexander - components: - - pos: 5.5,-0.5 - parent: 1 - type: Transform -- uid: 10645 - type: ButchCleaver - components: - - pos: 8.613402,-2.6485355 - parent: 1 - type: Transform -- uid: 10646 - type: TableReinforced - components: - - pos: 9.5,-3.5 - parent: 1 - type: Transform -- uid: 10647 - type: HighSecCommandLocked - components: - - pos: 19.5,-10.5 - parent: 1 - type: Transform -- uid: 10648 - type: CableApcExtension - components: - - pos: 21.5,-11.5 - parent: 1 - type: Transform -- uid: 10649 - type: CableApcExtension - components: - - pos: 22.5,-11.5 - parent: 1 - type: Transform -- uid: 10650 - type: APCBasic - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform -- uid: 10651 - type: CableApcExtension - components: - - pos: 20.5,-11.5 - parent: 1 - type: Transform -- uid: 10652 - type: CableApcExtension - components: - - pos: 19.5,-11.5 - parent: 1 - type: Transform -- uid: 10653 - type: CableApcExtension - components: - - pos: 19.5,-12.5 - parent: 1 - type: Transform -- uid: 10654 - type: CableApcExtension - components: - - pos: 19.5,-13.5 - parent: 1 - type: Transform -- uid: 10655 - type: CableApcExtension - components: - - pos: 19.5,-14.5 - parent: 1 - type: Transform -- uid: 10656 - type: CableApcExtension - components: - - pos: 19.5,-15.5 - parent: 1 - type: Transform -- uid: 10657 - type: CableApcExtension - components: - - pos: 19.5,-16.5 - parent: 1 - type: Transform -- uid: 10658 - type: CableApcExtension - components: - - pos: 19.5,-17.5 - parent: 1 - type: Transform -- uid: 10659 - type: CableApcExtension - components: - - pos: 19.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10660 - type: CableApcExtension - components: - - pos: 18.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10661 - type: CableApcExtension - components: - - pos: 20.5,-15.5 - parent: 1 - type: Transform -- uid: 10662 - type: CableMV - components: - - pos: 19.5,-11.5 - parent: 1 - type: Transform -- uid: 10663 - type: CableHV - components: - - pos: 15.5,-11.5 - parent: 1 - type: Transform -- uid: 10664 - type: CableMV - components: - - pos: 22.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10665 - type: CableApcExtension - components: - - pos: 18.5,-15.5 - parent: 1 - type: Transform -- uid: 10666 - type: CableApcExtension - components: - - pos: 17.5,-15.5 - parent: 1 - type: Transform -- uid: 10667 - type: CableMV - components: - - pos: 7.5,-18.5 - parent: 1 - type: Transform -- uid: 10668 - type: CableMV - components: - - pos: 7.5,-19.5 - parent: 1 - type: Transform -- uid: 10669 - type: CableMV - components: - - pos: 7.5,-20.5 - parent: 1 - type: Transform -- uid: 10670 - type: CableMV - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform -- uid: 10671 - type: CableMV - components: - - pos: 9.5,-20.5 - parent: 1 - type: Transform -- uid: 10672 - type: CableMV - components: - - pos: 6.5,-18.5 - parent: 1 - type: Transform -- uid: 10673 - type: CableMV - components: - - pos: 6.5,-17.5 - parent: 1 - type: Transform -- uid: 10674 - type: CableMV - components: - - pos: 6.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10675 - type: CableMV - components: - - pos: 7.5,-17.5 - parent: 1 - type: Transform -- uid: 10676 - type: CableMV - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10677 - type: CableMV - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform -- uid: 10678 - type: CableMV - components: - - pos: 6.5,-15.5 - parent: 1 - type: Transform -- uid: 10679 - type: CableMV - components: - - pos: 5.5,-15.5 - parent: 1 - type: Transform -- uid: 10680 - type: CableMV - components: - - pos: 4.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10681 - type: CableMV - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10682 - type: CableMV - components: - - pos: 2.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10683 - type: CableMV - components: - - pos: 1.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10684 - type: CableMV - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10685 - type: CableMV - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10686 - type: CableMV - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10687 - type: CableMV - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10688 - type: CableMV - components: - - pos: -3.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10689 - type: CableMV - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10690 - type: CableMV - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10691 - type: CableMV - components: - - pos: -6.5,-15.5 - parent: 1 - type: Transform -- uid: 10692 - type: CableMV - components: - - pos: -7.5,-15.5 - parent: 1 - type: Transform -- uid: 10693 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -7.5,-16.5 - parent: 1 - type: Transform -- uid: 10694 - type: CableMV - components: - - pos: -8.5,-15.5 - parent: 1 - type: Transform -- uid: 10695 - type: CableMV - components: - - pos: -9.5,-15.5 - parent: 1 - type: Transform -- uid: 10696 - type: CableMV - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform -- uid: 10697 - type: CableMV - components: - - pos: -11.5,-15.5 - parent: 1 - type: Transform -- uid: 10698 - type: CableMV - components: - - pos: -12.5,-15.5 - parent: 1 - type: Transform -- uid: 10699 - type: CableMV - components: - - pos: -12.5,-16.5 - parent: 1 - type: Transform -- uid: 10700 - type: CableMV - components: - - pos: -12.5,-17.5 - parent: 1 - type: Transform -- uid: 10701 - type: CableMV - components: - - pos: -12.5,-18.5 - parent: 1 - type: Transform -- uid: 10702 - type: CableMV - components: - - pos: -12.5,-19.5 - parent: 1 - type: Transform -- uid: 10703 - type: CableMV - components: - - pos: -12.5,-20.5 - parent: 1 - type: Transform -- uid: 10704 - type: CableMV - components: - - pos: -12.5,-21.5 - parent: 1 - type: Transform -- uid: 10705 - type: CableMV - components: - - pos: -12.5,-22.5 - parent: 1 - type: Transform -- uid: 10706 - type: CableMV - components: - - pos: -12.5,-23.5 - parent: 1 - type: Transform -- uid: 10707 - type: CableMV - components: - - pos: -12.5,-24.5 - parent: 1 - type: Transform -- uid: 10708 - type: CableMV - components: - - pos: -12.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10709 - type: CableMV - components: - - pos: -12.5,-26.5 - parent: 1 - type: Transform -- uid: 10710 - type: CableMV - components: - - pos: -12.5,-27.5 - parent: 1 - type: Transform -- uid: 10711 - type: CableMV - components: - - pos: -12.5,-28.5 - parent: 1 - type: Transform -- uid: 10712 - type: CableMV - components: - - pos: -12.5,-29.5 - parent: 1 - type: Transform -- uid: 10713 - type: CableMV - components: - - pos: -12.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10714 - type: CableMV - components: - - pos: -12.5,-31.5 - parent: 1 - type: Transform -- uid: 10715 - type: CableMV - components: - - pos: -12.5,-32.5 - parent: 1 - type: Transform -- uid: 10716 - type: CableMV - components: - - pos: -12.5,-33.5 - parent: 1 - type: Transform -- uid: 10717 - type: CableMV - components: - - pos: -12.5,-34.5 - parent: 1 - type: Transform -- uid: 10718 - type: CableMV - components: - - pos: -12.5,-35.5 - parent: 1 - type: Transform -- uid: 10719 - type: CableMV - components: - - pos: -12.5,-36.5 - parent: 1 - type: Transform -- uid: 10720 - type: CableMV - components: - - pos: -12.5,-37.5 - parent: 1 - type: Transform -- uid: 10721 - type: CableMV - components: - - pos: -11.5,-37.5 - parent: 1 - type: Transform -- uid: 10722 - type: CableMV - components: - - pos: -11.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10723 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -11.5,-38.5 - parent: 1 - type: Transform -- uid: 10724 - type: CableApcExtension - components: - - pos: -11.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10725 - type: CableApcExtension - components: - - pos: -11.5,-37.5 - parent: 1 - type: Transform -- uid: 10726 - type: CableApcExtension - components: - - pos: -12.5,-37.5 - parent: 1 - type: Transform -- uid: 10727 - type: CableApcExtension - components: - - pos: -13.5,-37.5 - parent: 1 - type: Transform -- uid: 10728 - type: CableApcExtension - components: - - pos: -13.5,-38.5 - parent: 1 - type: Transform -- uid: 10729 - type: CableApcExtension - components: - - pos: -13.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10730 - type: CableApcExtension - components: - - pos: -13.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10731 - type: CableApcExtension - components: - - pos: -13.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10732 - type: CableApcExtension - components: - - pos: -13.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10733 - type: CableApcExtension - components: - - pos: -13.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10734 - type: CableApcExtension - components: - - pos: -13.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10735 - type: CableApcExtension - components: - - pos: -13.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10736 - type: CableApcExtension - components: - - pos: -13.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10737 - type: CableApcExtension - components: - - pos: -13.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10738 - type: CableApcExtension - components: - - pos: -12.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10739 - type: CableApcExtension - components: - - pos: -11.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10740 - type: CableApcExtension - components: - - pos: -10.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10741 - type: CableApcExtension - components: - - pos: -9.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10742 - type: CableApcExtension - components: - - pos: -8.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10743 - type: CableApcExtension - components: - - pos: -7.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10744 - type: CableApcExtension - components: - - pos: -6.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10745 - type: CableApcExtension - components: - - pos: -5.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10746 - type: CableApcExtension - components: - - pos: -4.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10747 - type: CableApcExtension - components: - - pos: -3.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10748 - type: CableApcExtension - components: - - pos: -10.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10749 - type: CableApcExtension - components: - - pos: -9.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10750 - type: CableApcExtension - components: - - pos: -8.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10751 - type: CableApcExtension - components: - - pos: -7.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10752 - type: CableApcExtension - components: - - pos: -6.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10753 - type: CableApcExtension - components: - - pos: -5.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10754 - type: CableApcExtension - components: - - pos: -4.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10755 - type: CableApcExtension - components: - - pos: -4.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10756 - type: CableApcExtension - components: - - pos: -4.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10757 - type: CableApcExtension - components: - - pos: -4.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10758 - type: CableApcExtension - components: - - pos: -4.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10759 - type: CableApcExtension - components: - - pos: -4.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10760 - type: CableApcExtension - components: - - pos: -4.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10761 - type: CableApcExtension - components: - - pos: -4.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10762 - type: CableApcExtension - components: - - pos: -4.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10763 - type: CableApcExtension - components: - - pos: -4.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10764 - type: CableApcExtension - components: - - pos: -4.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10765 - type: CableApcExtension - components: - - pos: -4.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10766 - type: CableApcExtension - components: - - pos: -4.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10767 - type: CableApcExtension - components: - - pos: -4.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10768 - type: CableApcExtension - components: - - pos: -4.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10769 - type: CableApcExtension - components: - - pos: -4.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10770 - type: CableApcExtension - components: - - pos: -4.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10771 - type: CableApcExtension - components: - - pos: -4.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10772 - type: CableApcExtension - components: - - pos: -4.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10773 - type: CableApcExtension - components: - - pos: -4.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10774 - type: CableApcExtension - components: - - pos: -4.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10775 - type: CableApcExtension - components: - - pos: -4.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10776 - type: CableApcExtension - components: - - pos: -4.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10777 - type: CableApcExtension - components: - - pos: -4.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10778 - type: CableApcExtension - components: - - pos: -3.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10779 - type: CableApcExtension - components: - - pos: -2.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10780 - type: CableApcExtension - components: - - pos: -1.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10781 - type: CableApcExtension - components: - - pos: -0.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10782 - type: CableApcExtension - components: - - pos: 0.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10783 - type: CableApcExtension - components: - - pos: 1.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10784 - type: CableApcExtension - components: - - pos: 1.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10785 - type: CableApcExtension - components: - - pos: 1.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10786 - type: CableApcExtension - components: - - pos: 1.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10787 - type: CableApcExtension - components: - - pos: 1.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10788 - type: CableApcExtension - components: - - pos: 1.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10789 - type: CableApcExtension - components: - - pos: 1.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10790 - type: CableApcExtension - components: - - pos: 1.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10791 - type: CableApcExtension - components: - - pos: 1.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10792 - type: CableApcExtension - components: - - pos: 1.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10793 - type: CableApcExtension - components: - - pos: 1.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10794 - type: CableApcExtension - components: - - pos: 1.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10795 - type: CableApcExtension - components: - - pos: 1.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10796 - type: CableApcExtension - components: - - pos: 1.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10797 - type: CableApcExtension - components: - - pos: 1.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10798 - type: CableApcExtension - components: - - pos: 1.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10799 - type: CableApcExtension - components: - - pos: 1.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10800 - type: CableApcExtension - components: - - pos: 1.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10801 - type: CableApcExtension - components: - - pos: 1.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10802 - type: CableApcExtension - components: - - pos: 1.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10803 - type: CableApcExtension - components: - - pos: 1.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10804 - type: CableApcExtension - components: - - pos: 1.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10805 - type: CableApcExtension - components: - - pos: 1.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10806 - type: CableApcExtension - components: - - pos: 1.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10807 - type: CableApcExtension - components: - - pos: 1.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10808 - type: CableApcExtension - components: - - pos: -4.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10809 - type: CableApcExtension - components: - - pos: -4.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10810 - type: CableApcExtension - components: - - pos: -4.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10811 - type: CableApcExtension - components: - - pos: -11.5,-36.5 - parent: 1 - type: Transform -- uid: 10812 - type: CableApcExtension - components: - - pos: -11.5,-35.5 - parent: 1 - type: Transform -- uid: 10813 - type: CableApcExtension - components: - - pos: -11.5,-34.5 - parent: 1 - type: Transform -- uid: 10814 - type: CableApcExtension - components: - - pos: -11.5,-33.5 - parent: 1 - type: Transform -- uid: 10815 - type: CableApcExtension - components: - - pos: -11.5,-32.5 - parent: 1 - type: Transform -- uid: 10816 - type: CableApcExtension - components: - - pos: -11.5,-31.5 - parent: 1 - type: Transform -- uid: 10817 - type: CableApcExtension - components: - - pos: -11.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10818 - type: CableApcExtension - components: - - pos: -11.5,-29.5 - parent: 1 - type: Transform -- uid: 10819 - type: CableApcExtension - components: - - pos: -11.5,-28.5 - parent: 1 - type: Transform -- uid: 10820 - type: CableApcExtension - components: - - pos: -11.5,-27.5 - parent: 1 - type: Transform -- uid: 10821 - type: CableApcExtension - components: - - pos: -11.5,-26.5 - parent: 1 - type: Transform -- uid: 10822 - type: CableApcExtension - components: - - pos: -11.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10823 - type: CableApcExtension - components: - - pos: -11.5,-24.5 - parent: 1 - type: Transform -- uid: 10824 - type: CableApcExtension - components: - - pos: -11.5,-23.5 - parent: 1 - type: Transform -- uid: 10825 - type: CableApcExtension - components: - - pos: -11.5,-22.5 - parent: 1 - type: Transform -- uid: 10826 - type: CableApcExtension - components: - - pos: -11.5,-21.5 - parent: 1 - type: Transform -- uid: 10827 - type: CableApcExtension - components: - - pos: -7.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10828 - type: CableApcExtension - components: - - pos: -7.5,-15.5 - parent: 1 - type: Transform -- uid: 10829 - type: CableApcExtension - components: - - pos: -7.5,-14.5 - parent: 1 - type: Transform -- uid: 10830 - type: CableApcExtension - components: - - pos: -7.5,-13.5 - parent: 1 - type: Transform -- uid: 10831 - type: CableApcExtension - components: - - pos: -7.5,-12.5 - parent: 1 - type: Transform -- uid: 10832 - type: CableApcExtension - components: - - pos: -7.5,-11.5 - parent: 1 - type: Transform -- uid: 10833 - type: CableApcExtension - components: - - pos: -6.5,-15.5 - parent: 1 - type: Transform -- uid: 10834 - type: CableApcExtension - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10835 - type: CableApcExtension - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10836 - type: CableApcExtension - components: - - pos: -3.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10837 - type: CableApcExtension - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10838 - type: CableApcExtension - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10839 - type: CableApcExtension - components: - - pos: -6.5,-12.5 - parent: 1 - type: Transform -- uid: 10840 - type: CableApcExtension - components: - - pos: -5.5,-12.5 - parent: 1 - type: Transform -- uid: 10841 - type: CableApcExtension - components: - - pos: -4.5,-12.5 - parent: 1 - type: Transform -- uid: 10842 - type: CableApcExtension - components: - - pos: -3.5,-12.5 - parent: 1 - type: Transform -- uid: 10843 - type: CableApcExtension - components: - - pos: -2.5,-12.5 - parent: 1 - type: Transform -- uid: 10844 - type: CableApcExtension - components: - - pos: -1.5,-12.5 - parent: 1 - type: Transform -- uid: 10845 - type: CableApcExtension - components: - - pos: -8.5,-12.5 - parent: 1 - type: Transform -- uid: 10846 - type: CableApcExtension - components: - - pos: -9.5,-12.5 - parent: 1 - type: Transform -- uid: 10847 - type: CableApcExtension - components: - - pos: -10.5,-12.5 - parent: 1 - type: Transform -- uid: 10848 - type: CableApcExtension - components: - - pos: -11.5,-12.5 - parent: 1 - type: Transform -- uid: 10849 - type: CableApcExtension - components: - - pos: -12.5,-12.5 - parent: 1 - type: Transform -- uid: 10850 - type: CableApcExtension - components: - - pos: -13.5,-12.5 - parent: 1 - type: Transform -- uid: 10851 - type: CableApcExtension - components: - - pos: -14.5,-12.5 - parent: 1 - type: Transform -- uid: 10852 - type: CableApcExtension - components: - - pos: -14.5,-13.5 - parent: 1 - type: Transform -- uid: 10853 - type: CableApcExtension - components: - - pos: -14.5,-14.5 - parent: 1 - type: Transform -- uid: 10854 - type: CableApcExtension - components: - - pos: -14.5,-15.5 - parent: 1 - type: Transform -- uid: 10855 - type: CableApcExtension - components: - - pos: -13.5,-15.5 - parent: 1 - type: Transform -- uid: 10856 - type: CableApcExtension - components: - - pos: -12.5,-15.5 - parent: 1 - type: Transform -- uid: 10857 - type: CableApcExtension - components: - - pos: -11.5,-15.5 - parent: 1 - type: Transform -- uid: 10858 - type: CableApcExtension - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform -- uid: 10859 - type: CableApcExtension - components: - - pos: -9.5,-15.5 - parent: 1 - type: Transform -- uid: 10860 - type: CableApcExtension - components: - - pos: -8.5,-15.5 - parent: 1 - type: Transform -- uid: 10861 - type: CableApcExtension - components: - - pos: -12.5,-16.5 - parent: 1 - type: Transform -- uid: 10862 - type: CableApcExtension - components: - - pos: -12.5,-17.5 - parent: 1 - type: Transform -- uid: 10863 - type: CableApcExtension - components: - - pos: -12.5,-18.5 - parent: 1 - type: Transform -- uid: 10864 - type: CableApcExtension - components: - - pos: -12.5,-19.5 - parent: 1 - type: Transform -- uid: 10865 - type: CableApcExtension - components: - - pos: -13.5,-18.5 - parent: 1 - type: Transform -- uid: 10866 - type: CableApcExtension - components: - - pos: -14.5,-18.5 - parent: 1 - type: Transform -- uid: 10867 - type: CableApcExtension - components: - - pos: -11.5,-18.5 - parent: 1 - type: Transform -- uid: 10868 - type: CableApcExtension - components: - - pos: -10.5,-18.5 - parent: 1 - type: Transform -- uid: 10869 - type: AirlockEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: 29.5,-19.5 - parent: 1 - type: Transform -- uid: 10870 - type: ComputerPowerMonitoring - components: - - pos: 27.5,-18.5 - parent: 1 - type: Transform -- uid: 10871 - type: CableHV - components: - - pos: 27.5,-18.5 - parent: 1 - type: Transform -- uid: 10872 - type: Catwalk - components: - - pos: 28.5,-19.5 - parent: 1 - type: Transform -- uid: 10873 - type: Catwalk - components: - - pos: 27.5,-19.5 - parent: 1 - type: Transform -- uid: 10874 - type: Catwalk - components: - - pos: 26.5,-19.5 - parent: 1 - type: Transform -- uid: 10875 - type: Rack - components: - - pos: 28.5,-18.5 - parent: 1 - type: Transform -- uid: 10876 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-20.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10877 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10878 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10879 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10880 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10881 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10882 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10883 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10884 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10885 - type: GasPipeBend - components: - - pos: 30.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10886 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10887 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10888 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10889 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10890 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10891 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 24.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10892 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10893 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10894 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10895 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10896 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10897 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10898 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10899 - type: GasPipeTJunction - components: - - pos: 24.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10900 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10901 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10902 - type: GasPipeTJunction - components: - - pos: 20.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10903 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 20.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10904 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 19.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10905 - type: GasPipeTJunction - components: - - pos: 18.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10906 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10907 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10908 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10909 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10910 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10911 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10912 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10913 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10914 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 9.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10915 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10916 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10917 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10918 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10919 - type: GasPipeTJunction - components: - - pos: 4.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10920 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10921 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10922 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10923 - type: GasPipeTJunction - components: - - pos: 0.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10924 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10925 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10926 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -2.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10927 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10928 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 27.5,-19.5 - parent: 1 - type: Transform -- uid: 10929 - type: AirCanister - components: - - pos: 26.5,-20.5 - parent: 1 - type: Transform -- uid: 10930 - type: ClosetToolFilled - components: - - pos: 28.5,-20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10931 - type: GeigerCounter - components: - - pos: 28.285597,-18.438898 - parent: 1 - type: Transform -- uid: 10932 - type: MaintenanceToolSpawner - components: - - rot: 3.141592653589793 rad - pos: 28.5,-18.5 - parent: 1 - type: Transform -- uid: 10933 - type: Fireplace - components: - - pos: 35.5,-19.5 - parent: 1 - type: Transform -- uid: 10934 - type: TableWood - components: - - pos: 35.5,-21.5 - parent: 1 - type: Transform -- uid: 10935 - type: TableWood - components: - - pos: 34.5,-21.5 - parent: 1 - type: Transform -- uid: 10936 - type: ClothingNeckTieRed - components: - - pos: 33.429047,-17.73465 - parent: 1 - type: Transform -- uid: 10937 - type: ClothingOuterCoatInspector - components: - - pos: 33.429047,-17.59274 - parent: 1 - type: Transform -- uid: 10938 - type: ClothingHeadHatFedoraBrown - components: - - pos: 33.51424,-17.677885 - parent: 1 - type: Transform -- uid: 10939 - type: ChairWood - components: - - pos: 35.5,-20.5 - parent: 1 - type: Transform -- uid: 10940 - type: Lamp - components: - - pos: 34.508152,-21.140514 - parent: 1 - type: Transform -- uid: 10941 - type: SheetPlasma1 - components: - - pos: 35.01931,-21.424337 - parent: 1 - type: Transform -- uid: 10942 - type: Barricade - components: - - pos: 33.5,-18.5 - parent: 1 - type: Transform -- uid: 10943 - type: Airlock - components: - - pos: 32.5,-20.5 - parent: 1 - type: Transform -- uid: 10944 - type: Screwdriver - components: - - pos: 26.312336,-26.50387 - parent: 1 - type: Transform -- uid: 10945 - type: AdvancedCapacitorStockPart - components: - - pos: 26.567915,-26.36196 - parent: 1 - type: Transform -- uid: 10946 - type: CableApcStack - components: - - pos: 25.602398,-26.447107 - parent: 1 - type: Transform -- uid: 10947 - type: MaintenanceToolSpawner - components: - - pos: 26.5,-22.5 - parent: 1 - type: Transform -- uid: 10948 - type: MaintenanceFluffSpawner - components: - - pos: 26.5,-25.5 - parent: 1 - type: Transform -- uid: 10949 - type: MaintenanceWeaponSpawner - components: - - pos: 17.5,-33.5 - parent: 1 - type: Transform -- uid: 10950 - type: MaintenanceWeaponSpawner - components: - - pos: 20.5,-30.5 - parent: 1 - type: Transform -- uid: 10951 - type: RandomFoodBakedWhole - components: - - pos: 31.5,-18.5 - parent: 1 - type: Transform -- uid: 10952 - type: MaintenanceFluffSpawner - components: - - pos: 31.5,-19.5 - parent: 1 - type: Transform -- uid: 10953 - type: MaintenanceToolSpawner - components: - - pos: 29.5,-16.5 - parent: 1 - type: Transform -- uid: 10954 - type: Barricade - components: - - pos: 37.5,-12.5 - parent: 1 - type: Transform -- uid: 10955 - type: SeedExtractor - components: - - pos: 38.5,-13.5 - parent: 1 - type: Transform -- uid: 10956 - type: hydroponicsSoil - components: - - pos: 36.5,-17.5 - parent: 1 - type: Transform -- uid: 10957 - type: hydroponicsSoil - components: - - pos: 37.5,-17.5 - parent: 1 - type: Transform -- uid: 10958 - type: hydroponicsSoil - components: - - pos: 37.5,-16.5 - parent: 1 - type: Transform -- uid: 10959 - type: hydroponicsSoil - components: - - pos: 36.5,-16.5 - parent: 1 - type: Transform -- uid: 10960 - type: TableGlass - components: - - pos: 34.5,-14.5 - parent: 1 - type: Transform -- uid: 10961 - type: VendingMachineNutri - components: - - flags: SessionSpecific - type: MetaData - - pos: 34.5,-15.5 - parent: 1 - type: Transform -- uid: 10962 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 36.5,-13.5 - parent: 1 - type: Transform -- uid: 10963 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 37.5,-13.5 - parent: 1 - type: Transform -- uid: 10964 - type: HydroponicsToolHatchet - components: - - pos: 34.467308,-14.410013 - parent: 1 - type: Transform -- uid: 10965 - type: Bucket - components: - - pos: 37.59104,-15.971035 - parent: 1 - type: Transform -- uid: 10966 - type: CannabisSeeds - components: - - pos: 36.56873,-16.396769 - parent: 1 - type: Transform -- uid: 10967 - type: NettleSeeds - components: - - pos: 36.511932,-17.276615 - parent: 1 - type: Transform -- uid: 10968 - type: CableMV - components: - - pos: 25.5,-9.5 - parent: 1 - type: Transform -- uid: 10969 - type: CableMV - components: - - pos: 26.5,-9.5 - parent: 1 - type: Transform -- uid: 10970 - type: CableMV - components: - - pos: 27.5,-9.5 - parent: 1 - type: Transform -- uid: 10971 - type: CableApcExtension - components: - - pos: -24.5,36.5 - parent: 1 - type: Transform -- uid: 10972 - type: CableMV - components: - - pos: 29.5,-9.5 - parent: 1 - type: Transform -- uid: 10973 - type: CableMV - components: - - pos: 30.5,-9.5 - parent: 1 - type: Transform -- uid: 10974 - type: CableMV - components: - - pos: 31.5,-9.5 - parent: 1 - type: Transform -- uid: 10975 - type: CableMV - components: - - pos: 32.5,-9.5 - parent: 1 - type: Transform -- uid: 10976 - type: CableMV - components: - - pos: 33.5,-9.5 - parent: 1 - type: Transform -- uid: 10977 - type: CableMV - components: - - pos: 34.5,-9.5 - parent: 1 - type: Transform -- uid: 10978 - type: CableMV - components: - - pos: 35.5,-9.5 - parent: 1 - type: Transform -- uid: 10979 - type: CableMV - components: - - pos: 36.5,-9.5 - parent: 1 - type: Transform -- uid: 10980 - type: CableMV - components: - - pos: 37.5,-9.5 - parent: 1 - type: Transform -- uid: 10981 - type: CableMV - components: - - pos: 38.5,-9.5 - parent: 1 - type: Transform -- uid: 10982 - type: CableMV - components: - - pos: 39.5,-9.5 - parent: 1 - type: Transform -- uid: 10983 - type: CableMV - components: - - pos: 40.5,-9.5 - parent: 1 - type: Transform -- uid: 10984 - type: CableMV - components: - - pos: 41.5,-9.5 - parent: 1 - type: Transform -- uid: 10985 - type: CableMV - components: - - pos: 42.5,-9.5 - parent: 1 - type: Transform -- uid: 10986 - type: CableMV - components: - - pos: 43.5,-9.5 - parent: 1 - type: Transform -- uid: 10987 - type: CableMV - components: - - pos: 44.5,-9.5 - parent: 1 - type: Transform -- uid: 10988 - type: CableMV - components: - - pos: 44.5,-8.5 - parent: 1 - type: Transform -- uid: 10989 - type: CableMV - components: - - pos: 44.5,-7.5 - parent: 1 - type: Transform -- uid: 10990 - type: CableMV - components: - - pos: 44.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10991 - type: APCBasic - components: - - pos: 44.5,-6.5 - parent: 1 - type: Transform -- uid: 10992 - type: CableApcExtension - components: - - pos: 44.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10993 - type: CableApcExtension - components: - - pos: 45.5,-6.5 - parent: 1 - type: Transform -- uid: 10994 - type: CableApcExtension - components: - - pos: 46.5,-6.5 - parent: 1 - type: Transform -- uid: 10995 - type: CableApcExtension - components: - - pos: 47.5,-6.5 - parent: 1 - type: Transform -- uid: 10996 - type: CableApcExtension - components: - - pos: 48.5,-6.5 - parent: 1 - type: Transform -- uid: 10997 - type: CableApcExtension - components: - - pos: 49.5,-6.5 - parent: 1 - type: Transform -- uid: 10998 - type: CableApcExtension - components: - - pos: 49.5,-7.5 - parent: 1 - type: Transform -- uid: 11001 - type: CableApcExtension - components: - - pos: 49.5,-8.5 - parent: 1 - type: Transform -- uid: 11002 - type: CableApcExtension - components: - - pos: 49.5,-9.5 - parent: 1 - type: Transform -- uid: 11005 - type: CableApcExtension - components: - - pos: 48.5,-9.5 - parent: 1 - type: Transform -- uid: 11006 - type: CableApcExtension - components: - - pos: 47.5,-9.5 - parent: 1 - type: Transform -- uid: 11007 - type: CableApcExtension - components: - - pos: 46.5,-9.5 - parent: 1 - type: Transform -- uid: 11008 - type: CableApcExtension - components: - - pos: 45.5,-9.5 - parent: 1 - type: Transform -- uid: 11009 - type: CableApcExtension - components: - - pos: 44.5,-9.5 - parent: 1 - type: Transform -- uid: 11010 - type: CableApcExtension - components: - - pos: 43.5,-9.5 - parent: 1 - type: Transform -- uid: 11011 - type: CableApcExtension - components: - - pos: 42.5,-9.5 - parent: 1 - type: Transform -- uid: 11012 - type: CableApcExtension - components: - - pos: 41.5,-9.5 - parent: 1 - type: Transform -- uid: 11013 - type: CableApcExtension - components: - - pos: 40.5,-9.5 - parent: 1 - type: Transform -- uid: 11014 - type: CableApcExtension - components: - - pos: 39.5,-9.5 - parent: 1 - type: Transform -- uid: 11015 - type: CableApcExtension - components: - - pos: 38.5,-9.5 - parent: 1 - type: Transform -- uid: 11016 - type: CableApcExtension - components: - - pos: 37.5,-9.5 - parent: 1 - type: Transform -- uid: 11017 - type: CableApcExtension - components: - - pos: 36.5,-9.5 - parent: 1 - type: Transform -- uid: 11018 - type: CableApcExtension - components: - - pos: 35.5,-9.5 - parent: 1 - type: Transform -- uid: 11019 - type: CableApcExtension - components: - - pos: 34.5,-9.5 - parent: 1 - type: Transform -- uid: 11020 - type: CableApcExtension - components: - - pos: 33.5,-9.5 - parent: 1 - type: Transform -- uid: 11021 - type: CableApcExtension - components: - - pos: 33.5,-8.5 - parent: 1 - type: Transform -- uid: 11022 - type: CableApcExtension - components: - - pos: 33.5,-7.5 - parent: 1 - type: Transform -- uid: 11023 - type: CableApcExtension - components: - - pos: 34.5,-7.5 - parent: 1 - type: Transform -- uid: 11024 - type: CableApcExtension - components: - - pos: 35.5,-7.5 - parent: 1 - type: Transform -- uid: 11025 - type: CableApcExtension - components: - - pos: 36.5,-7.5 - parent: 1 - type: Transform -- uid: 11026 - type: CableApcExtension - components: - - pos: 37.5,-7.5 - parent: 1 - type: Transform -- uid: 11027 - type: CableApcExtension - components: - - pos: 38.5,-7.5 - parent: 1 - type: Transform -- uid: 11028 - type: CableApcExtension - components: - - pos: 39.5,-7.5 - parent: 1 - type: Transform -- uid: 11029 - type: CableApcExtension - components: - - pos: 40.5,-7.5 - parent: 1 - type: Transform -- uid: 11030 - type: CableApcExtension - components: - - pos: 41.5,-7.5 - parent: 1 - type: Transform -- uid: 11031 - type: CableApcExtension - components: - - pos: 42.5,-7.5 - parent: 1 - type: Transform -- uid: 11032 - type: CableApcExtension - components: - - pos: 43.5,-7.5 - parent: 1 - type: Transform -- uid: 11033 - type: CableApcExtension - components: - - pos: 44.5,-7.5 - parent: 1 - type: Transform -- uid: 11038 - type: HydroponicsToolScythe - components: - - pos: 34.55647,-14.390314 - parent: 1 - type: Transform -- uid: 11039 - type: HydroponicsToolMiniHoe - components: - - pos: 37.22584,-16.547361 - parent: 1 - type: Transform -- uid: 11040 - type: HydroponicsToolSpade - components: - - pos: 37.28264,-16.37707 - parent: 1 - type: Transform -- uid: 11041 - type: HydroponicsToolClippers - components: - - pos: 34.58487,-14.532225 - parent: 1 - type: Transform -- uid: 11042 - type: PottedPlantRandom - components: - - pos: -23.5,11.5 - parent: 1 - type: Transform -- uid: 11043 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11044 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11045 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11046 - type: PoweredSmallLight - components: - - pos: 20.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11047 - type: ClosetMaintenanceFilledRandom - components: - - pos: 15.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11048 - type: OxygenCanister - components: - - pos: 22.5,-0.5 - parent: 1 - type: Transform -- uid: 11049 - type: ClosetEmergencyFilledRandom - components: - - pos: 15.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11050 - type: ClosetFireFilled - components: - - pos: 15.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11051 - type: AirCanister - components: - - pos: 20.5,-0.5 - parent: 1 - type: Transform -- uid: 11052 - type: NitrogenCanister - components: - - pos: 21.5,-0.5 - parent: 1 - type: Transform -- uid: 11053 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-0.5 - parent: 1 - type: Transform -- uid: 11054 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: 17.5,0.5 - parent: 1 - type: Transform -- uid: 11055 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-0.5 - parent: 1 - type: Transform -- uid: 11056 - type: CigPackRed - components: - - pos: 17.282892,-0.41129082 - parent: 1 - type: Transform -- uid: 11057 - type: CheapLighter - components: - - pos: 17.68046,-0.38290828 - parent: 1 - type: Transform -- uid: 11058 - type: MaintenanceFluffSpawner - components: - - pos: 17.5,0.5 - parent: 1 - type: Transform -- uid: 11059 - type: Rack - components: - - pos: 15.5,2.5 - parent: 1 - type: Transform -- uid: 11060 - type: RandomVending - components: - - pos: 15.5,5.5 - parent: 1 - type: Transform -- uid: 11061 - type: MaintenanceToolSpawner - components: - - pos: 15.5,2.5 - parent: 1 - type: Transform -- uid: 11062 - type: MaintenanceWeaponSpawner - components: - - pos: 15.5,3.5 - parent: 1 - type: Transform -- uid: 11063 - type: ComputerBroken - components: - - rot: -1.5707963267948966 rad - pos: 15.5,4.5 - parent: 1 - type: Transform -- uid: 11064 - type: ClosetFireFilled - components: - - pos: 17.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11065 - type: ClosetEmergencyFilledRandom - components: - - pos: 17.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11066 - type: Rack - components: - - rot: -1.5707963267948966 rad - pos: 17.5,8.5 - parent: 1 - type: Transform -- uid: 11067 - type: ClosetMaintenanceFilledRandom - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11068 - type: MaintenanceToolSpawner - components: - - pos: 17.5,8.5 - parent: 1 - type: Transform -- uid: 11069 - type: ComputerPowerMonitoring - components: - - pos: 18.5,4.5 - parent: 1 - type: Transform -- uid: 11070 - type: Rack - components: - - pos: 19.5,4.5 - parent: 1 - type: Transform -- uid: 11071 - type: ClosetToolFilled - components: - - pos: 17.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11072 - type: RandomArcade - components: - - pos: 19.5,2.5 - parent: 1 - type: Transform -- uid: 11073 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 18.5,3.5 - parent: 1 - type: Transform -- uid: 11074 - type: HolofanProjector - components: - - pos: 19.405106,4.6722174 - parent: 1 - type: Transform -- uid: 11075 - type: GeigerCounter - components: - - pos: 19.660683,4.558688 - parent: 1 - type: Transform -- uid: 11076 - type: AirlockEngineeringLocked - components: - - pos: 18.5,1.5 - parent: 1 - type: Transform -- uid: 11077 - type: PlushieRGBee - components: - - pos: 20.39902,10.361386 - parent: 1 - type: Transform -- uid: 11078 - type: ClothingHeadHatFez - components: - - pos: 20.427416,11.411529 - parent: 1 - type: Transform -- uid: 11079 - type: Grille - components: - - pos: 21.5,10.5 - parent: 1 - type: Transform -- uid: 11080 - type: Grille - components: - - pos: 21.5,11.5 - parent: 1 - type: Transform -- uid: 11081 - type: Rack - components: - - pos: 13.5,5.5 - parent: 1 - type: Transform -- uid: 11082 - type: Shovel - components: - - pos: 13.542923,5.535556 - parent: 1 - type: Transform -- uid: 11083 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 22.5,5.5 - parent: 1 - type: Transform -- uid: 11084 - type: CableMV - components: - - pos: 17.5,4.5 - parent: 1 - type: Transform -- uid: 11085 - type: CableMV - components: - - pos: 18.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11086 - type: CableMV - components: - - pos: 18.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11087 - type: CableMV - components: - - pos: 18.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11088 - type: CableMV - components: - - pos: 18.5,1.5 - parent: 1 - type: Transform -- uid: 11089 - type: CableMV - components: - - pos: 18.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11090 - type: CableMV - components: - - pos: 19.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11091 - type: CableMV - components: - - pos: 20.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11092 - type: CableMV - components: - - pos: 21.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11093 - type: CableMV - components: - - pos: 21.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11094 - type: CableMV - components: - - pos: 21.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11095 - type: CableMV - components: - - pos: 21.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11096 - type: CableMV - components: - - pos: 21.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11097 - type: CableMV - components: - - pos: 21.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11098 - type: CableMV - components: - - pos: 22.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11099 - type: CableMV - components: - - pos: 22.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11100 - type: CableMV - components: - - pos: 23.5,0.5 - parent: 1 - type: Transform -- uid: 11101 - type: CableMV - components: - - pos: 24.5,0.5 - parent: 1 - type: Transform -- uid: 11102 - type: CableMV - components: - - pos: 25.5,0.5 - parent: 1 - type: Transform -- uid: 11103 - type: CableMV - components: - - pos: 25.5,-0.5 - parent: 1 - type: Transform -- uid: 11104 - type: CableMV - components: - - pos: 25.5,-1.5 - parent: 1 - type: Transform -- uid: 11105 - type: CableMV - components: - - pos: 25.5,-2.5 - parent: 1 - type: Transform -- uid: 11106 - type: CableMV - components: - - pos: 25.5,-3.5 - parent: 1 - type: Transform -- uid: 11107 - type: CableMV - components: - - pos: 24.5,-3.5 - parent: 1 - type: Transform -- uid: 11108 - type: CableMV - components: - - pos: 23.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11109 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-3.5 - parent: 1 - type: Transform -- uid: 11110 - type: CableApcExtension - components: - - pos: 23.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11111 - type: CableApcExtension - components: - - pos: 22.5,-3.5 - parent: 1 - type: Transform -- uid: 11112 - type: CableApcExtension - components: - - pos: 21.5,-3.5 - parent: 1 - type: Transform -- uid: 11113 - type: CableApcExtension - components: - - pos: 20.5,-3.5 - parent: 1 - type: Transform -- uid: 11114 - type: CableApcExtension - components: - - pos: 19.5,-3.5 - parent: 1 - type: Transform -- uid: 11115 - type: CableApcExtension - components: - - pos: 18.5,-3.5 - parent: 1 - type: Transform -- uid: 11116 - type: CableApcExtension - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform -- uid: 11117 - type: CableApcExtension - components: - - pos: 16.5,-3.5 - parent: 1 - type: Transform -- uid: 11118 - type: CableApcExtension - components: - - pos: 18.5,-2.5 - parent: 1 - type: Transform -- uid: 11119 - type: CableApcExtension - components: - - pos: 18.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11120 - type: CableApcExtension - components: - - pos: 18.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11121 - type: CableApcExtension - components: - - pos: 18.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11122 - type: CableApcExtension - components: - - pos: 18.5,1.5 - parent: 1 - type: Transform -- uid: 11123 - type: CableApcExtension - components: - - pos: 18.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11124 - type: CableApcExtension - components: - - pos: 18.5,-4.5 - parent: 1 - type: Transform -- uid: 11125 - type: CableApcExtension - components: - - pos: 18.5,-5.5 - parent: 1 - type: Transform -- uid: 11126 - type: CableApcExtension - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform -- uid: 11127 - type: CableApcExtension - components: - - pos: 19.5,-6.5 - parent: 1 - type: Transform -- uid: 11128 - type: CableApcExtension - components: - - pos: 19.5,-7.5 - parent: 1 - type: Transform -- uid: 11129 - type: CableApcExtension - components: - - pos: 19.5,-8.5 - parent: 1 - type: Transform -- uid: 11130 - type: CableApcExtension - components: - - pos: 19.5,-9.5 - parent: 1 - type: Transform -- uid: 11131 - type: CableApcExtension - components: - - pos: 20.5,-9.5 - parent: 1 - type: Transform -- uid: 11132 - type: CableApcExtension - components: - - pos: 21.5,-9.5 - parent: 1 - type: Transform -- uid: 11133 - type: CableApcExtension - components: - - pos: 22.5,-9.5 - parent: 1 - type: Transform -- uid: 11134 - type: CableApcExtension - components: - - pos: 23.5,-9.5 - parent: 1 - type: Transform -- uid: 11135 - type: CableApcExtension - components: - - pos: 24.5,-9.5 - parent: 1 - type: Transform -- uid: 11136 - type: CableApcExtension - components: - - pos: 25.5,-9.5 - parent: 1 - type: Transform -- uid: 11137 - type: CableApcExtension - components: - - pos: 26.5,-9.5 - parent: 1 - type: Transform -- uid: 11138 - type: CableApcExtension - components: - - pos: 27.5,-9.5 - parent: 1 - type: Transform -- uid: 11139 - type: CableApcExtension - components: - - pos: 28.5,-9.5 - parent: 1 - type: Transform -- uid: 11140 - type: CableApcExtension - components: - - pos: 29.5,-9.5 - parent: 1 - type: Transform -- uid: 11141 - type: CableApcExtension - components: - - pos: 30.5,-9.5 - parent: 1 - type: Transform -- uid: 11142 - type: CableApcExtension - components: - - pos: 31.5,-9.5 - parent: 1 - type: Transform -- uid: 11143 - type: CableApcExtension - components: - - pos: 31.5,-8.5 - parent: 1 - type: Transform -- uid: 11144 - type: CableApcExtension - components: - - pos: 31.5,-7.5 - parent: 1 - type: Transform -- uid: 11145 - type: CableApcExtension - components: - - pos: 31.5,-6.5 - parent: 1 - type: Transform -- uid: 11146 - type: CableApcExtension - components: - - pos: 31.5,-5.5 - parent: 1 - type: Transform -- uid: 11147 - type: CableApcExtension - components: - - pos: 31.5,-4.5 - parent: 1 - type: Transform -- uid: 11148 - type: CableApcExtension - components: - - pos: 31.5,-3.5 - parent: 1 - type: Transform -- uid: 11149 - type: CableApcExtension - components: - - pos: 31.5,-2.5 - parent: 1 - type: Transform -- uid: 11150 - type: CableApcExtension - components: - - pos: 31.5,-1.5 - parent: 1 - type: Transform -- uid: 11151 - type: CableApcExtension - components: - - pos: 31.5,-0.5 - parent: 1 - type: Transform -- uid: 11152 - type: CableApcExtension - components: - - pos: 31.5,0.5 - parent: 1 - type: Transform -- uid: 11153 - type: CableApcExtension - components: - - pos: 32.5,0.5 - parent: 1 - type: Transform -- uid: 11154 - type: CableApcExtension - components: - - pos: 33.5,0.5 - parent: 1 - type: Transform -- uid: 11155 - type: CableApcExtension - components: - - pos: 34.5,0.5 - parent: 1 - type: Transform -- uid: 11156 - type: CableApcExtension - components: - - pos: 25.5,-8.5 - parent: 1 - type: Transform -- uid: 11157 - type: CableApcExtension - components: - - pos: 25.5,-7.5 - parent: 1 - type: Transform -- uid: 11158 - type: CableApcExtension - components: - - pos: 25.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11159 - type: CableApcExtension - components: - - pos: 25.5,-5.5 - parent: 1 - type: Transform -- uid: 11160 - type: CableApcExtension - components: - - pos: 25.5,-4.5 - parent: 1 - type: Transform -- uid: 11161 - type: CableApcExtension - components: - - pos: 25.5,-3.5 - parent: 1 - type: Transform -- uid: 11162 - type: CableApcExtension - components: - - pos: 24.5,-3.5 - parent: 1 - type: Transform -- uid: 11163 - type: CableApcExtension - components: - - pos: 25.5,-2.5 - parent: 1 - type: Transform -- uid: 11164 - type: CableApcExtension - components: - - pos: 25.5,-1.5 - parent: 1 - type: Transform -- uid: 11165 - type: CableApcExtension - components: - - pos: 25.5,-0.5 - parent: 1 - type: Transform -- uid: 11166 - type: CableApcExtension - components: - - pos: 25.5,0.5 - parent: 1 - type: Transform -- uid: 11167 - type: CableApcExtension - components: - - pos: 26.5,0.5 - parent: 1 - type: Transform -- uid: 11168 - type: CableApcExtension - components: - - pos: 27.5,0.5 - parent: 1 - type: Transform -- uid: 11169 - type: CableApcExtension - components: - - pos: 27.5,-0.5 - parent: 1 - type: Transform -- uid: 11170 - type: CableApcExtension - components: - - pos: 27.5,-1.5 - parent: 1 - type: Transform -- uid: 11171 - type: CableApcExtension - components: - - pos: 27.5,-2.5 - parent: 1 - type: Transform -- uid: 11172 - type: CableApcExtension - components: - - pos: 27.5,-3.5 - parent: 1 - type: Transform -- uid: 11173 - type: CableApcExtension - components: - - pos: 27.5,-4.5 - parent: 1 - type: Transform -- uid: 11174 - type: CableApcExtension - components: - - pos: 27.5,-5.5 - parent: 1 - type: Transform -- uid: 11175 - type: CableApcExtension - components: - - pos: 26.5,-5.5 - parent: 1 - type: Transform -- uid: 11176 - type: CableApcExtension - components: - - pos: 22.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11177 - type: CableApcExtension - components: - - pos: 23.5,5.5 - parent: 1 - type: Transform -- uid: 11178 - type: CableApcExtension - components: - - pos: 24.5,5.5 - parent: 1 - type: Transform -- uid: 11179 - type: CableApcExtension - components: - - pos: 25.5,5.5 - parent: 1 - type: Transform -- uid: 11180 - type: CableApcExtension - components: - - pos: 25.5,4.5 - parent: 1 - type: Transform -- uid: 11181 - type: CableApcExtension - components: - - pos: 25.5,3.5 - parent: 1 - type: Transform -- uid: 11182 - type: CableApcExtension - components: - - pos: 25.5,2.5 - parent: 1 - type: Transform -- uid: 11183 - type: CableApcExtension - components: - - pos: 24.5,2.5 - parent: 1 - type: Transform -- uid: 11184 - type: CableApcExtension - components: - - pos: 23.5,2.5 - parent: 1 - type: Transform -- uid: 11185 - type: CableApcExtension - components: - - pos: 22.5,2.5 - parent: 1 - type: Transform -- uid: 11186 - type: CableApcExtension - components: - - pos: 21.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11187 - type: CableApcExtension - components: - - pos: 21.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11188 - type: CableApcExtension - components: - - pos: 21.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11189 - type: CableApcExtension - components: - - pos: 21.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11190 - type: CableApcExtension - components: - - pos: 21.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11191 - type: CableApcExtension - components: - - pos: 21.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11192 - type: CableApcExtension - components: - - pos: 21.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11193 - type: CableApcExtension - components: - - pos: 20.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11194 - type: CableApcExtension - components: - - pos: 19.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11195 - type: CableApcExtension - components: - - pos: 18.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11196 - type: CableApcExtension - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11197 - type: CableApcExtension - components: - - pos: 18.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11198 - type: CableApcExtension - components: - - pos: 18.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11199 - type: CableApcExtension - components: - - pos: 21.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11200 - type: CableApcExtension - components: - - pos: 23.5,6.5 - parent: 1 - type: Transform -- uid: 11201 - type: CableApcExtension - components: - - pos: 23.5,7.5 - parent: 1 - type: Transform -- uid: 11202 - type: CableApcExtension - components: - - pos: 23.5,8.5 - parent: 1 - type: Transform -- uid: 11203 - type: CableApcExtension - components: - - pos: 23.5,9.5 - parent: 1 - type: Transform -- uid: 11204 - type: CableApcExtension - components: - - pos: 23.5,10.5 - parent: 1 - type: Transform -- uid: 11205 - type: CableApcExtension - components: - - pos: 24.5,10.5 - parent: 1 - type: Transform -- uid: 11206 - type: CableApcExtension - components: - - pos: 25.5,10.5 - parent: 1 - type: Transform -- uid: 11207 - type: CableApcExtension - components: - - pos: 26.5,10.5 - parent: 1 - type: Transform -- uid: 11208 - type: CableApcExtension - components: - - pos: 27.5,10.5 - parent: 1 - type: Transform -- uid: 11209 - type: CableApcExtension - components: - - pos: 28.5,10.5 - parent: 1 - type: Transform -- uid: 11210 - type: CableApcExtension - components: - - pos: 29.5,10.5 - parent: 1 - type: Transform -- uid: 11211 - type: CableApcExtension - components: - - pos: 30.5,10.5 - parent: 1 - type: Transform -- uid: 11212 - type: CableApcExtension - components: - - pos: 31.5,10.5 - parent: 1 - type: Transform -- uid: 11213 - type: CableApcExtension - components: - - pos: 32.5,10.5 - parent: 1 - type: Transform -- uid: 11214 - type: CableApcExtension - components: - - pos: 32.5,9.5 - parent: 1 - type: Transform -- uid: 11215 - type: CableApcExtension - components: - - pos: 32.5,8.5 - parent: 1 - type: Transform -- uid: 11216 - type: CableApcExtension - components: - - pos: 32.5,7.5 - parent: 1 - type: Transform -- uid: 11217 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 32.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11218 - type: CableApcExtension - components: - - pos: 32.5,5.5 - parent: 1 - type: Transform -- uid: 11219 - type: CableApcExtension - components: - - pos: 32.5,4.5 - parent: 1 - type: Transform -- uid: 11220 - type: CableApcExtension - components: - - pos: 32.5,3.5 - parent: 1 - type: Transform -- uid: 11221 - type: CableApcExtension - components: - - pos: 33.5,3.5 - parent: 1 - type: Transform -- uid: 11222 - type: CableApcExtension - components: - - pos: 34.5,3.5 - parent: 1 - type: Transform -- uid: 11223 - type: CableApcExtension - components: - - pos: 31.5,3.5 - parent: 1 - type: Transform -- uid: 11224 - type: CableApcExtension - components: - - pos: 30.5,3.5 - parent: 1 - type: Transform -- uid: 11225 - type: CableApcExtension - components: - - pos: 29.5,3.5 - parent: 1 - type: Transform -- uid: 11226 - type: CableApcExtension - components: - - pos: 28.5,3.5 - parent: 1 - type: Transform -- uid: 11227 - type: CableApcExtension - components: - - pos: 27.5,3.5 - parent: 1 - type: Transform -- uid: 11228 - type: CableApcExtension - components: - - pos: 26.5,3.5 - parent: 1 - type: Transform -- uid: 11229 - type: CableApcExtension - components: - - pos: 25.5,3.5 - parent: 1 - type: Transform -- uid: 11230 - type: CableApcExtension - components: - - pos: 26.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11231 - type: CableApcExtension - components: - - pos: 26.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11232 - type: CableApcExtension - components: - - pos: 26.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11233 - type: CableApcExtension - components: - - pos: 24.5,3.5 - parent: 1 - type: Transform -- uid: 11234 - type: CableApcExtension - components: - - pos: 23.5,3.5 - parent: 1 - type: Transform -- uid: 11235 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 16.5,9.5 - parent: 1 - type: Transform -- uid: 11236 - type: CableMV - components: - - pos: 16.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11237 - type: CableMV - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform -- uid: 11238 - type: CableMV - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11239 - type: CableMV - components: - - pos: 18.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11240 - type: CableMV - components: - - pos: 19.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11241 - type: CableMV - components: - - pos: 20.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11242 - type: CableMV - components: - - pos: 21.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11243 - type: CableMV - components: - - pos: 21.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11244 - type: CableMV - components: - - pos: 21.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11245 - type: CableApcExtension - components: - - pos: 16.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11246 - type: CableApcExtension - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform -- uid: 11247 - type: CableApcExtension - components: - - pos: 14.5,9.5 - parent: 1 - type: Transform -- uid: 11248 - type: CableApcExtension - components: - - pos: 13.5,9.5 - parent: 1 - type: Transform -- uid: 11249 - type: CableApcExtension - components: - - pos: 12.5,9.5 - parent: 1 - type: Transform -- uid: 11250 - type: CableApcExtension - components: - - pos: 11.5,9.5 - parent: 1 - type: Transform -- uid: 11251 - type: CableApcExtension - components: - - pos: 10.5,9.5 - parent: 1 - type: Transform -- uid: 11252 - type: CableApcExtension - components: - - pos: 9.5,9.5 - parent: 1 - type: Transform -- uid: 11253 - type: CableApcExtension - components: - - pos: 8.5,9.5 - parent: 1 - type: Transform -- uid: 11254 - type: CableApcExtension - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform -- uid: 11255 - type: CableApcExtension - components: - - pos: 6.5,9.5 - parent: 1 - type: Transform -- uid: 11256 - type: CableApcExtension - components: - - pos: 5.5,9.5 - parent: 1 - type: Transform -- uid: 11257 - type: CableApcExtension - components: - - pos: 5.5,10.5 - parent: 1 - type: Transform -- uid: 11258 - type: CableApcExtension - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform -- uid: 11259 - type: CableApcExtension - components: - - pos: 6.5,11.5 - parent: 1 - type: Transform -- uid: 11260 - type: CableApcExtension - components: - - pos: 7.5,11.5 - parent: 1 - type: Transform -- uid: 11261 - type: CableApcExtension - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform -- uid: 11262 - type: CableApcExtension - components: - - pos: 9.5,11.5 - parent: 1 - type: Transform -- uid: 11263 - type: CableApcExtension - components: - - pos: 10.5,11.5 - parent: 1 - type: Transform -- uid: 11264 - type: CableApcExtension - components: - - pos: 11.5,11.5 - parent: 1 - type: Transform -- uid: 11265 - type: CableApcExtension - components: - - pos: 11.5,10.5 - parent: 1 - type: Transform -- uid: 11266 - type: CableApcExtension - components: - - pos: 11.5,8.5 - parent: 1 - type: Transform -- uid: 11267 - type: CableApcExtension - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform -- uid: 11268 - type: CableApcExtension - components: - - pos: 11.5,6.5 - parent: 1 - type: Transform -- uid: 11269 - type: CableApcExtension - components: - - pos: 11.5,5.5 - parent: 1 - type: Transform -- uid: 11270 - type: CableApcExtension - components: - - pos: 11.5,4.5 - parent: 1 - type: Transform -- uid: 11271 - type: CableApcExtension - components: - - pos: 11.5,3.5 - parent: 1 - type: Transform -- uid: 11272 - type: CableApcExtension - components: - - pos: 10.5,5.5 - parent: 1 - type: Transform -- uid: 11273 - type: CableApcExtension - components: - - pos: 9.5,5.5 - parent: 1 - type: Transform -- uid: 11274 - type: CableApcExtension - components: - - pos: 8.5,5.5 - parent: 1 - type: Transform -- uid: 11275 - type: CableApcExtension - components: - - pos: 7.5,5.5 - parent: 1 - type: Transform -- uid: 11276 - type: CableApcExtension - components: - - pos: 6.5,5.5 - parent: 1 - type: Transform -- uid: 11277 - type: CableApcExtension - components: - - pos: 5.5,5.5 - parent: 1 - type: Transform -- uid: 11278 - type: CableApcExtension - components: - - pos: 5.5,6.5 - parent: 1 - type: Transform -- uid: 11279 - type: CableApcExtension - components: - - pos: 5.5,7.5 - parent: 1 - type: Transform -- uid: 11280 - type: CableApcExtension - components: - - pos: 5.5,8.5 - parent: 1 - type: Transform -- uid: 11281 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 1 - type: Transform -- uid: 11282 - type: CableMV - components: - - pos: 13.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11283 - type: CableMV - components: - - pos: 14.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11284 - type: CableMV - components: - - pos: 15.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11285 - type: CableMV - components: - - pos: 16.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11286 - type: CableMV - components: - - pos: 17.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11287 - type: CableMV - components: - - pos: 18.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11288 - type: CableMV - components: - - pos: 18.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11289 - type: CableApcExtension - components: - - pos: 13.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11290 - type: CableApcExtension - components: - - pos: 14.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11291 - type: CableApcExtension - components: - - pos: 14.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11292 - type: CableApcExtension - components: - - pos: 14.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11293 - type: CableApcExtension - components: - - pos: 14.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11294 - type: CableApcExtension - components: - - pos: 14.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11295 - type: CableApcExtension - components: - - pos: 14.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11296 - type: CableApcExtension - components: - - pos: 14.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11297 - type: CableApcExtension - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11298 - type: CableApcExtension - components: - - pos: 14.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11299 - type: CableApcExtension - components: - - pos: 15.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11300 - type: CableApcExtension - components: - - pos: 16.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11301 - type: CableApcExtension - components: - - pos: 17.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11302 - type: CableApcExtension - components: - - pos: 18.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11303 - type: CableApcExtension - components: - - pos: 14.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11304 - type: CableApcExtension - components: - - pos: 14.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11305 - type: CableApcExtension - components: - - pos: 14.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11306 - type: CableApcExtension - components: - - pos: 15.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11307 - type: CableApcExtension - components: - - pos: 12.5,-1.5 - parent: 1 - type: Transform -- uid: 11308 - type: CableApcExtension - components: - - pos: 11.5,-1.5 - parent: 1 - type: Transform -- uid: 11309 - type: CableApcExtension - components: - - pos: 10.5,-1.5 - parent: 1 - type: Transform -- uid: 11310 - type: CableApcExtension - components: - - pos: 9.5,-1.5 - parent: 1 - type: Transform -- uid: 11311 - type: CableApcExtension - components: - - pos: 8.5,-1.5 - parent: 1 - type: Transform -- uid: 11312 - type: CableApcExtension - components: - - pos: 7.5,-1.5 - parent: 1 - type: Transform -- uid: 11313 - type: CableApcExtension - components: - - pos: 6.5,-1.5 - parent: 1 - type: Transform -- uid: 11314 - type: CableApcExtension - components: - - pos: 5.5,-1.5 - parent: 1 - type: Transform -- uid: 11315 - type: CableApcExtension - components: - - pos: 5.5,-0.5 - parent: 1 - type: Transform -- uid: 11316 - type: CableApcExtension - components: - - pos: 5.5,0.5 - parent: 1 - type: Transform -- uid: 11317 - type: CableApcExtension - components: - - pos: 5.5,1.5 - parent: 1 - type: Transform -- uid: 11318 - type: CableApcExtension - components: - - pos: 5.5,2.5 - parent: 1 - type: Transform -- uid: 11319 - type: CableApcExtension - components: - - pos: 6.5,2.5 - parent: 1 - type: Transform -- uid: 11320 - type: CableApcExtension - components: - - pos: 7.5,2.5 - parent: 1 - type: Transform -- uid: 11321 - type: CableApcExtension - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform -- uid: 11322 - type: CableApcExtension - components: - - pos: 8.5,1.5 - parent: 1 - type: Transform -- uid: 11323 - type: CableApcExtension - components: - - pos: 8.5,0.5 - parent: 1 - type: Transform -- uid: 11324 - type: CableApcExtension - components: - - pos: 8.5,-0.5 - parent: 1 - type: Transform -- uid: 11325 - type: CableApcExtension - components: - - pos: 11.5,-0.5 - parent: 1 - type: Transform -- uid: 11326 - type: CableApcExtension - components: - - pos: 11.5,0.5 - parent: 1 - type: Transform -- uid: 11327 - type: CableApcExtension - components: - - pos: 11.5,1.5 - parent: 1 - type: Transform -- uid: 11328 - type: CableApcExtension - components: - - pos: 11.5,-2.5 - parent: 1 - type: Transform -- uid: 11329 - type: CableApcExtension - components: - - pos: 11.5,-3.5 - parent: 1 - type: Transform -- uid: 11330 - type: CableApcExtension - components: - - pos: 11.5,-4.5 - parent: 1 - type: Transform -- uid: 11331 - type: CableApcExtension - components: - - pos: 10.5,-4.5 - parent: 1 - type: Transform -- uid: 11332 - type: CableApcExtension - components: - - pos: 9.5,-4.5 - parent: 1 - type: Transform -- uid: 11333 - type: CableApcExtension - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform -- uid: 11334 - type: CableApcExtension - components: - - pos: 7.5,-4.5 - parent: 1 - type: Transform -- uid: 11335 - type: CableApcExtension - components: - - pos: 6.5,-4.5 - parent: 1 - type: Transform -- uid: 11336 - type: CableApcExtension - components: - - pos: 5.5,-4.5 - parent: 1 - type: Transform -- uid: 11337 - type: CableApcExtension - components: - - pos: 5.5,-3.5 - parent: 1 - type: Transform -- uid: 11338 - type: CableApcExtension - components: - - pos: 5.5,-2.5 - parent: 1 - type: Transform -- uid: 11339 - type: APCBasic - components: - - pos: 24.5,23.5 - parent: 1 - type: Transform -- uid: 11340 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11341 - type: EmergencyLight - components: - - pos: -18.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11342 - type: EmergencyLight - components: - - pos: 18.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11343 - type: EmergencyLight - components: - - pos: 44.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11344 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 44.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11345 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11346 - type: EmergencyLight - components: - - pos: 18.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11347 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -0.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11348 - type: EmergencyLight - components: - - pos: -18.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11349 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -44.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11350 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11351 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11352 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11353 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11354 - type: EmergencyLight - components: - - pos: 12.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11355 - type: EmergencyLight - components: - - pos: -8.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11356 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11357 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11358 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11359 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -34.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11360 - type: EmergencyLight - components: - - pos: -2.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11361 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11362 - type: EmergencyLight - components: - - pos: -33.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11363 - type: EmergencyLight - components: - - pos: -7.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11364 - type: EmergencyLight - components: - - pos: 11.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11365 - type: PoweredlightLED - components: - - rot: 3.141592653589793 rad - pos: -0.5,76.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11366 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -6.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11367 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 4.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11368 - type: PoweredlightLED - components: - - rot: -1.5707963267948966 rad - pos: 7.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11369 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11370 - type: EmergencyLight - components: - - pos: -16.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11371 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -15.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11372 - type: EmergencyLight - components: - - pos: 24.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11373 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11374 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 44.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11375 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -3.5,75.5 - parent: 1 - type: Transform -- uid: 11376 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -4.5,74.5 - parent: 1 - type: Transform -- uid: 11377 - type: APCBasic - components: - - pos: 6.5,75.5 - parent: 1 - type: Transform -- uid: 11378 - type: CableMV - components: - - pos: -4.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11379 - type: CableMV - components: - - pos: -3.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11380 - type: CableMV - components: - - pos: -3.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11381 - type: CableMV - components: - - pos: -3.5,76.5 - parent: 1 - type: Transform -- uid: 11382 - type: CableMV - components: - - pos: -4.5,76.5 - parent: 1 - type: Transform -- uid: 11383 - type: CableMV - components: - - pos: -5.5,76.5 - parent: 1 - type: Transform -- uid: 11384 - type: CableMV - components: - - pos: -6.5,76.5 - parent: 1 - type: Transform -- uid: 11385 - type: CableMV - components: - - pos: -7.5,76.5 - parent: 1 - type: Transform -- uid: 11386 - type: CableMV - components: - - pos: -8.5,76.5 - parent: 1 - type: Transform -- uid: 11387 - type: CableMV - components: - - pos: -9.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11388 - type: CableMV - components: - - pos: -9.5,77.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11389 - type: CableMV - components: - - pos: -9.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11390 - type: CableMV - components: - - pos: -8.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11391 - type: CableMV - components: - - pos: -8.5,79.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11392 - type: CableMV - components: - - pos: -8.5,80.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11393 - type: CableMV - components: - - pos: -8.5,81.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11394 - type: CableMV - components: - - pos: -7.5,81.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11395 - type: CableMV - components: - - pos: -7.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11396 - type: CableMV - components: - - pos: -7.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11397 - type: CableMV - components: - - pos: -6.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11398 - type: CableMV - components: - - pos: -5.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11399 - type: CableMV - components: - - pos: -4.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11400 - type: CableMV - components: - - pos: -4.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11401 - type: CableMV - components: - - pos: -3.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11402 - type: CableMV - components: - - pos: -2.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11403 - type: CableMV - components: - - pos: -1.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11404 - type: CableMV - components: - - pos: -0.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11405 - type: CableMV - components: - - pos: 0.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11406 - type: CableMV - components: - - pos: 1.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11407 - type: CableMV - components: - - pos: 2.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11408 - type: CableMV - components: - - pos: 3.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11409 - type: CableMV - components: - - pos: 3.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11410 - type: CableMV - components: - - pos: 4.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11411 - type: CableMV - components: - - pos: 5.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11412 - type: CableMV - components: - - pos: 6.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11413 - type: CableMV - components: - - pos: 6.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11414 - type: CableMV - components: - - pos: 6.5,81.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11415 - type: CableMV - components: - - pos: 7.5,81.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11416 - type: CableMV - components: - - pos: 7.5,80.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11417 - type: CableMV - components: - - pos: 7.5,79.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11418 - type: CableMV - components: - - pos: 7.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11419 - type: CableMV - components: - - pos: 8.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11420 - type: CableMV - components: - - pos: 8.5,77.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11421 - type: CableMV - components: - - pos: 8.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11422 - type: CableMV - components: - - pos: 8.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11423 - type: CableMV - components: - - pos: 7.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11424 - type: CableMV - components: - - pos: 6.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11425 - type: CableApcExtension - components: - - pos: 6.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11426 - type: CableApcExtension - components: - - pos: 6.5,74.5 - parent: 1 - type: Transform -- uid: 11427 - type: CableApcExtension - components: - - pos: 6.5,73.5 - parent: 1 - type: Transform -- uid: 11428 - type: CableApcExtension - components: - - pos: 6.5,72.5 - parent: 1 - type: Transform -- uid: 11429 - type: CableApcExtension - components: - - pos: 6.5,71.5 - parent: 1 - type: Transform -- uid: 11430 - type: CableApcExtension - components: - - pos: 6.5,70.5 - parent: 1 - type: Transform -- uid: 11431 - type: CableApcExtension - components: - - pos: 7.5,74.5 - parent: 1 - type: Transform -- uid: 11432 - type: CableApcExtension - components: - - pos: 8.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11433 - type: CableApcExtension - components: - - pos: 8.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11434 - type: CableApcExtension - components: - - pos: 8.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11435 - type: CableApcExtension - components: - - pos: 5.5,74.5 - parent: 1 - type: Transform -- uid: 11436 - type: CableApcExtension - components: - - pos: 4.5,74.5 - parent: 1 - type: Transform -- uid: 11437 - type: CableApcExtension - components: - - pos: 3.5,74.5 - parent: 1 - type: Transform -- uid: 11438 - type: CableApcExtension - components: - - pos: 2.5,74.5 - parent: 1 - type: Transform -- uid: 11439 - type: CableApcExtension - components: - - pos: 1.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11440 - type: CableApcExtension - components: - - pos: 2.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11441 - type: CableApcExtension - components: - - pos: 3.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11442 - type: CableApcExtension - components: - - pos: 1.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11443 - type: CableApcExtension - components: - - pos: 1.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11444 - type: CableApcExtension - components: - - pos: 1.5,71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11445 - type: CableApcExtension - components: - - pos: 1.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11446 - type: CableApcExtension - components: - - pos: 1.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11447 - type: CableApcExtension - components: - - pos: 2.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11448 - type: CableApcExtension - components: - - pos: 3.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11449 - type: CableApcExtension - components: - - pos: 4.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11450 - type: CableApcExtension - components: - - pos: 5.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11451 - type: CableApcExtension - components: - - pos: 6.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11452 - type: CableApcExtension - components: - - pos: 7.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11453 - type: CableApcExtension - components: - - pos: 8.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11454 - type: CableApcExtension - components: - - pos: 8.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11455 - type: CableApcExtension - components: - - pos: 8.5,71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11456 - type: CableApcExtension - components: - - pos: 8.5,68.5 - parent: 1 - type: Transform -- uid: 11457 - type: CableApcExtension - components: - - pos: 9.5,68.5 - parent: 1 - type: Transform -- uid: 11458 - type: CableApcExtension - components: - - pos: 10.5,68.5 - parent: 1 - type: Transform -- uid: 11459 - type: CableApcExtension - components: - - pos: 11.5,68.5 - parent: 1 - type: Transform -- uid: 11460 - type: CableApcExtension - components: - - pos: 12.5,68.5 - parent: 1 - type: Transform -- uid: 11461 - type: CableApcExtension - components: - - pos: 12.5,69.5 - parent: 1 - type: Transform -- uid: 11462 - type: CableApcExtension - components: - - pos: 12.5,70.5 - parent: 1 - type: Transform -- uid: 11463 - type: CableApcExtension - components: - - pos: 12.5,67.5 - parent: 1 - type: Transform -- uid: 11464 - type: CableApcExtension - components: - - pos: 12.5,66.5 - parent: 1 - type: Transform -- uid: 11465 - type: CableApcExtension - components: - - pos: 7.5,68.5 - parent: 1 - type: Transform -- uid: 11466 - type: CableApcExtension - components: - - pos: 6.5,68.5 - parent: 1 - type: Transform -- uid: 11467 - type: CableApcExtension - components: - - pos: 5.5,68.5 - parent: 1 - type: Transform -- uid: 11468 - type: CableApcExtension - components: - - pos: 4.5,68.5 - parent: 1 - type: Transform -- uid: 11469 - type: CableApcExtension - components: - - pos: 3.5,68.5 - parent: 1 - type: Transform -- uid: 11470 - type: CableApcExtension - components: - - pos: 2.5,68.5 - parent: 1 - type: Transform -- uid: 11471 - type: CableApcExtension - components: - - pos: 1.5,68.5 - parent: 1 - type: Transform -- uid: 11472 - type: CableApcExtension - components: - - pos: 0.5,68.5 - parent: 1 - type: Transform -- uid: 11473 - type: CableApcExtension - components: - - pos: -0.5,68.5 - parent: 1 - type: Transform -- uid: 11474 - type: CableApcExtension - components: - - pos: -1.5,68.5 - parent: 1 - type: Transform -- uid: 11475 - type: CableApcExtension - components: - - pos: -1.5,69.5 - parent: 1 - type: Transform -- uid: 11476 - type: CableApcExtension - components: - - pos: -1.5,70.5 - parent: 1 - type: Transform -- uid: 11477 - type: CableApcExtension - components: - - pos: -1.5,71.5 - parent: 1 - type: Transform -- uid: 11478 - type: CableApcExtension - components: - - pos: -1.5,72.5 - parent: 1 - type: Transform -- uid: 11479 - type: CableApcExtension - components: - - pos: -1.5,73.5 - parent: 1 - type: Transform -- uid: 11480 - type: CableApcExtension - components: - - pos: -1.5,74.5 - parent: 1 - type: Transform -- uid: 11481 - type: CableApcExtension - components: - - pos: 0.5,69.5 - parent: 1 - type: Transform -- uid: 11482 - type: CableApcExtension - components: - - pos: 0.5,70.5 - parent: 1 - type: Transform -- uid: 11483 - type: CableApcExtension - components: - - pos: 0.5,71.5 - parent: 1 - type: Transform -- uid: 11484 - type: CableApcExtension - components: - - pos: 0.5,72.5 - parent: 1 - type: Transform -- uid: 11485 - type: CableApcExtension - components: - - pos: 0.5,73.5 - parent: 1 - type: Transform -- uid: 11486 - type: CableApcExtension - components: - - pos: 0.5,74.5 - parent: 1 - type: Transform -- uid: 11487 - type: CableApcExtension - components: - - pos: -3.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11488 - type: CableApcExtension - components: - - pos: -3.5,76.5 - parent: 1 - type: Transform -- uid: 11489 - type: CableApcExtension - components: - - pos: 0.5,77.5 - parent: 1 - type: Transform -- uid: 11490 - type: CableApcExtension - components: - - pos: 1.5,77.5 - parent: 1 - type: Transform -- uid: 11491 - type: CableApcExtension - components: - - pos: 2.5,77.5 - parent: 1 - type: Transform -- uid: 11492 - type: CableApcExtension - components: - - pos: 3.5,77.5 - parent: 1 - type: Transform -- uid: 11493 - type: CableApcExtension - components: - - pos: 4.5,77.5 - parent: 1 - type: Transform -- uid: 11494 - type: CableApcExtension - components: - - pos: 5.5,77.5 - parent: 1 - type: Transform -- uid: 11495 - type: CableApcExtension - components: - - pos: -0.5,77.5 - parent: 1 - type: Transform -- uid: 11496 - type: CableApcExtension - components: - - pos: -1.5,77.5 - parent: 1 - type: Transform -- uid: 11497 - type: CableApcExtension - components: - - pos: -2.5,77.5 - parent: 1 - type: Transform -- uid: 11498 - type: CableApcExtension - components: - - pos: -3.5,77.5 - parent: 1 - type: Transform -- uid: 11499 - type: CableApcExtension - components: - - pos: 7.5,76.5 - parent: 1 - type: Transform -- uid: 11500 - type: CableApcExtension - components: - - pos: 6.5,77.5 - parent: 1 - type: Transform -- uid: 11501 - type: CableApcExtension - components: - - pos: -4.5,77.5 - parent: 1 - type: Transform -- uid: 11502 - type: CableApcExtension - components: - - pos: -5.5,77.5 - parent: 1 - type: Transform -- uid: 11503 - type: CableApcExtension - components: - - pos: -6.5,77.5 - parent: 1 - type: Transform -- uid: 11504 - type: CableApcExtension - components: - - pos: -7.5,77.5 - parent: 1 - type: Transform -- uid: 11505 - type: CableApcExtension - components: - - pos: -8.5,77.5 - parent: 1 - type: Transform -- uid: 11506 - type: CableApcExtension - components: - - pos: -5.5,78.5 - parent: 1 - type: Transform -- uid: 11507 - type: CableApcExtension - components: - - pos: -5.5,79.5 - parent: 1 - type: Transform -- uid: 11508 - type: CableApcExtension - components: - - pos: -5.5,80.5 - parent: 1 - type: Transform -- uid: 11509 - type: CableApcExtension - components: - - pos: -5.5,81.5 - parent: 1 - type: Transform -- uid: 11510 - type: CableApcExtension - components: - - pos: -5.5,82.5 - parent: 1 - type: Transform -- uid: 11511 - type: CableApcExtension - components: - - pos: 4.5,78.5 - parent: 1 - type: Transform -- uid: 11512 - type: CableApcExtension - components: - - pos: 4.5,79.5 - parent: 1 - type: Transform -- uid: 11513 - type: CableApcExtension - components: - - pos: 4.5,80.5 - parent: 1 - type: Transform -- uid: 11514 - type: CableApcExtension - components: - - pos: 4.5,81.5 - parent: 1 - type: Transform -- uid: 11515 - type: CableApcExtension - components: - - pos: 4.5,82.5 - parent: 1 - type: Transform -- uid: 11516 - type: CableApcExtension - components: - - pos: 3.5,81.5 - parent: 1 - type: Transform -- uid: 11517 - type: CableApcExtension - components: - - pos: 2.5,81.5 - parent: 1 - type: Transform -- uid: 11518 - type: CableApcExtension - components: - - pos: 1.5,81.5 - parent: 1 - type: Transform -- uid: 11519 - type: CableApcExtension - components: - - pos: 0.5,81.5 - parent: 1 - type: Transform -- uid: 11520 - type: CableApcExtension - components: - - pos: -0.5,81.5 - parent: 1 - type: Transform -- uid: 11521 - type: CableApcExtension - components: - - pos: -1.5,81.5 - parent: 1 - type: Transform -- uid: 11522 - type: CableApcExtension - components: - - pos: -2.5,81.5 - parent: 1 - type: Transform -- uid: 11523 - type: CableApcExtension - components: - - pos: -3.5,81.5 - parent: 1 - type: Transform -- uid: 11524 - type: CableApcExtension - components: - - pos: -4.5,81.5 - parent: 1 - type: Transform -- uid: 11525 - type: CableApcExtension - components: - - pos: -0.5,82.5 - parent: 1 - type: Transform -- uid: 11526 - type: CableApcExtension - components: - - pos: -0.5,83.5 - parent: 1 - type: Transform -- uid: 11527 - type: CableApcExtension - components: - - pos: -0.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11528 - type: CableApcExtension - components: - - pos: -1.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11529 - type: CableApcExtension - components: - - pos: -2.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11530 - type: CableApcExtension - components: - - pos: -3.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11531 - type: CableApcExtension - components: - - pos: 0.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11532 - type: CableApcExtension - components: - - pos: 1.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11533 - type: CableApcExtension - components: - - pos: 2.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11534 - type: CableApcExtension - components: - - pos: -4.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11535 - type: CableApcExtension - components: - - pos: -5.5,74.5 - parent: 1 - type: Transform -- uid: 11536 - type: CableApcExtension - components: - - pos: -6.5,74.5 - parent: 1 - type: Transform -- uid: 11537 - type: CableApcExtension - components: - - pos: -7.5,74.5 - parent: 1 - type: Transform -- uid: 11538 - type: CableApcExtension - components: - - pos: -8.5,74.5 - parent: 1 - type: Transform -- uid: 11539 - type: CableApcExtension - components: - - pos: -8.5,73.5 - parent: 1 - type: Transform -- uid: 11540 - type: CableApcExtension - components: - - pos: -8.5,72.5 - parent: 1 - type: Transform -- uid: 11541 - type: CableApcExtension - components: - - pos: -8.5,71.5 - parent: 1 - type: Transform -- uid: 11542 - type: CableApcExtension - components: - - pos: -8.5,70.5 - parent: 1 - type: Transform -- uid: 11543 - type: CableApcExtension - components: - - pos: -8.5,69.5 - parent: 1 - type: Transform -- uid: 11544 - type: CableApcExtension - components: - - pos: -9.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11545 - type: CableApcExtension - components: - - pos: -10.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11546 - type: CableApcExtension - components: - - pos: -10.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11547 - type: CableApcExtension - components: - - pos: -7.5,72.5 - parent: 1 - type: Transform -- uid: 11548 - type: CableApcExtension - components: - - pos: -6.5,72.5 - parent: 1 - type: Transform -- uid: 11549 - type: CableApcExtension - components: - - pos: -5.5,72.5 - parent: 1 - type: Transform -- uid: 11550 - type: CableApcExtension - components: - - pos: -5.5,73.5 - parent: 1 - type: Transform -- uid: 11551 - type: APCBasic - components: - - pos: -24.5,49.5 - parent: 1 - type: Transform -- uid: 11552 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -20.5,50.5 - parent: 1 - type: Transform -- uid: 11553 - type: CableMV - components: - - pos: -24.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11554 - type: CableMV - components: - - pos: -24.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11555 - type: CableMV - components: - - pos: -24.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11556 - type: CableMV - components: - - pos: -24.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11557 - type: CableMV - components: - - pos: -24.5,53.5 - parent: 1 - type: Transform -- uid: 11558 - type: CableMV - components: - - pos: -24.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11559 - type: CableMV - components: - - pos: -24.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11560 - type: CableMV - components: - - pos: -24.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11561 - type: CableMV - components: - - pos: -24.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11562 - type: CableMV - components: - - pos: -23.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11563 - type: CableMV - components: - - pos: -22.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11564 - type: CableMV - components: - - pos: -21.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11565 - type: CableMV - components: - - pos: -21.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11566 - type: CableMV - components: - - pos: -21.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11567 - type: CableMV - components: - - pos: -21.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11568 - type: CableMV - components: - - pos: -21.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11569 - type: CableMV - components: - - pos: -21.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11570 - type: CableMV - components: - - pos: -21.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11571 - type: CableMV - components: - - pos: -21.5,50.5 - parent: 1 - type: Transform -- uid: 11572 - type: CableMV - components: - - pos: -20.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11573 - type: APCBasic - components: - - pos: -42.5,44.5 - parent: 1 - type: Transform -- uid: 11574 - type: CableMV - components: - - pos: -42.5,44.5 - parent: 1 - type: Transform -- uid: 11575 - type: CableMV - components: - - pos: -43.5,44.5 - parent: 1 - type: Transform -- uid: 11576 - type: CableMV - components: - - pos: -43.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11577 - type: CableMV - components: - - pos: -43.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11578 - type: CableMV - components: - - pos: -43.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11579 - type: CableMV - components: - - pos: -43.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11580 - type: CableMV - components: - - pos: -43.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11581 - type: CableMV - components: - - pos: -43.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11582 - type: CableMV - components: - - pos: -43.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11583 - type: CableMV - components: - - pos: -41.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11584 - type: CableMV - components: - - pos: -42.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11585 - type: CableMV - components: - - pos: -40.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11586 - type: CableMV - components: - - pos: -40.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11587 - type: CableMV - components: - - pos: -39.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11588 - type: CableMV - components: - - pos: -38.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11589 - type: CableMV - components: - - pos: -37.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11590 - type: CableMV - components: - - pos: -36.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11591 - type: CableMV - components: - - pos: -35.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11592 - type: CableMV - components: - - pos: -34.5,52.5 - parent: 1 - type: Transform -- uid: 11593 - type: CableMV - components: - - pos: -33.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11594 - type: CableMV - components: - - pos: -32.5,52.5 - parent: 1 - type: Transform -- uid: 11595 - type: CableMV - components: - - pos: -31.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11596 - type: CableMV - components: - - pos: -30.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11597 - type: CableMV - components: - - pos: -29.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11598 - type: CableMV - components: - - pos: -28.5,52.5 - parent: 1 - type: Transform -- uid: 11599 - type: CableMV - components: - - pos: -27.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11600 - type: CableMV - components: - - pos: -27.5,53.5 - parent: 1 - type: Transform -- uid: 11601 - type: CableMV - components: - - pos: -27.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11602 - type: CableMV - components: - - pos: -27.5,55.5 - parent: 1 - type: Transform -- uid: 11603 - type: CableMV - components: - - pos: -27.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11604 - type: CableMV - components: - - pos: -27.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11605 - type: CableMV - components: - - pos: -30.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11606 - type: CableMV - components: - - pos: -30.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11607 - type: CableMV - components: - - pos: -29.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11608 - type: CableMV - components: - - pos: -26.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11609 - type: CableMV - components: - - pos: -25.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11610 - type: APCBasic - components: - - pos: -30.5,57.5 - parent: 1 - type: Transform -- uid: 11611 - type: CableApcExtension - components: - - pos: -30.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11612 - type: CableApcExtension - components: - - pos: -30.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11613 - type: CableApcExtension - components: - - pos: -31.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11614 - type: CableApcExtension - components: - - pos: -32.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11615 - type: CableApcExtension - components: - - pos: -33.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11616 - type: CableApcExtension - components: - - pos: -34.5,56.5 - parent: 1 - type: Transform -- uid: 11617 - type: CableApcExtension - components: - - pos: -35.5,56.5 - parent: 1 - type: Transform -- uid: 11618 - type: CableApcExtension - components: - - pos: -35.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11619 - type: CableApcExtension - components: - - pos: -35.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11620 - type: CableApcExtension - components: - - pos: -35.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11621 - type: CableApcExtension - components: - - pos: -35.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11622 - type: CableApcExtension - components: - - pos: -34.5,52.5 - parent: 1 - type: Transform -- uid: 11623 - type: CableApcExtension - components: - - pos: -33.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11624 - type: CableApcExtension - components: - - pos: -32.5,52.5 - parent: 1 - type: Transform -- uid: 11625 - type: CableApcExtension - components: - - pos: -31.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11626 - type: CableApcExtension - components: - - pos: -30.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11627 - type: CableApcExtension - components: - - pos: -29.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11628 - type: CableApcExtension - components: - - pos: -28.5,52.5 - parent: 1 - type: Transform -- uid: 11629 - type: CableApcExtension - components: - - pos: -27.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11630 - type: CableApcExtension - components: - - pos: -27.5,53.5 - parent: 1 - type: Transform -- uid: 11631 - type: CableApcExtension - components: - - pos: -27.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11632 - type: CableApcExtension - components: - - pos: -27.5,55.5 - parent: 1 - type: Transform -- uid: 11633 - type: CableApcExtension - components: - - pos: -27.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11634 - type: CableApcExtension - components: - - pos: -28.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11635 - type: CableApcExtension - components: - - pos: -29.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11636 - type: CableApcExtension - components: - - pos: -27.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11637 - type: CableApcExtension - components: - - pos: -26.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11638 - type: CableApcExtension - components: - - pos: -25.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11639 - type: CableApcExtension - components: - - pos: -24.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11640 - type: CableApcExtension - components: - - pos: -24.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11641 - type: CableApcExtension - components: - - pos: -24.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11642 - type: CableApcExtension - components: - - pos: -24.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11643 - type: CableApcExtension - components: - - pos: -24.5,53.5 - parent: 1 - type: Transform -- uid: 11644 - type: CableApcExtension - components: - - pos: -24.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11645 - type: CableApcExtension - components: - - pos: -24.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11646 - type: CableApcExtension - components: - - pos: -36.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11647 - type: CableApcExtension - components: - - pos: -37.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11648 - type: CableApcExtension - components: - - pos: -38.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11649 - type: CableApcExtension - components: - - pos: -38.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11650 - type: CableApcExtension - components: - - pos: -38.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11651 - type: CableApcExtension - components: - - pos: -38.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11652 - type: CableApcExtension - components: - - pos: -42.5,44.5 - parent: 1 - type: Transform -- uid: 11653 - type: CableApcExtension - components: - - pos: -43.5,44.5 - parent: 1 - type: Transform -- uid: 11654 - type: CableApcExtension - components: - - pos: -43.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11655 - type: CableApcExtension - components: - - pos: -43.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11656 - type: CableApcExtension - components: - - pos: -43.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11657 - type: CableApcExtension - components: - - pos: -43.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11658 - type: CableApcExtension - components: - - pos: -43.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11659 - type: CableApcExtension - components: - - pos: -43.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11660 - type: CableApcExtension - components: - - pos: -43.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11661 - type: CableApcExtension - components: - - pos: -42.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11662 - type: CableApcExtension - components: - - pos: -41.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11663 - type: CableApcExtension - components: - - pos: -44.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11664 - type: CableApcStack1 - components: - - pos: -45.537365,48.54528 - parent: 1 - type: Transform -- uid: 11665 - type: CableApcExtension - components: - - pos: -46.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11666 - type: CableApcExtension - components: - - pos: -47.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11667 - type: CableApcExtension - components: - - pos: -42.5,43.5 - parent: 1 - type: Transform -- uid: 11668 - type: CableApcExtension - components: - - pos: -43.5,43.5 - parent: 1 - type: Transform -- uid: 11669 - type: CableApcExtension - components: - - pos: -44.5,43.5 - parent: 1 - type: Transform -- uid: 11670 - type: CableApcExtension - components: - - pos: -45.5,43.5 - parent: 1 - type: Transform -- uid: 11671 - type: CableApcExtension - components: - - pos: -46.5,43.5 - parent: 1 - type: Transform -- uid: 11672 - type: CableApcExtension - components: - - pos: -47.5,43.5 - parent: 1 - type: Transform -- uid: 11673 - type: CableApcExtension - components: - - pos: -48.5,43.5 - parent: 1 - type: Transform -- uid: 11674 - type: CableApcExtension - components: - - pos: -49.5,43.5 - parent: 1 - type: Transform -- uid: 11675 - type: CableApcExtension - components: - - pos: -49.5,42.5 - parent: 1 - type: Transform -- uid: 11676 - type: CableApcExtension - components: - - pos: -49.5,41.5 - parent: 1 - type: Transform -- uid: 11677 - type: CableApcExtension - components: - - pos: -49.5,40.5 - parent: 1 - type: Transform -- uid: 11678 - type: CableApcExtension - components: - - pos: -49.5,39.5 - parent: 1 - type: Transform -- uid: 11679 - type: CableApcExtension - components: - - pos: -49.5,38.5 - parent: 1 - type: Transform -- uid: 11680 - type: CableApcExtension - components: - - pos: -49.5,37.5 - parent: 1 - type: Transform -- uid: 11681 - type: CableApcExtension - components: - - pos: -49.5,36.5 - parent: 1 - type: Transform -- uid: 11682 - type: CableApcExtension - components: - - pos: -49.5,35.5 - parent: 1 - type: Transform -- uid: 11683 - type: CableApcExtension - components: - - pos: -49.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11684 - type: CableApcExtension - components: - - pos: -50.5,38.5 - parent: 1 - type: Transform -- uid: 11685 - type: CableApcExtension - components: - - pos: -51.5,38.5 - parent: 1 - type: Transform -- uid: 11686 - type: CableApcExtension - components: - - pos: -52.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11687 - type: CableApcExtension - components: - - pos: -50.5,36.5 - parent: 1 - type: Transform -- uid: 11688 - type: CableApcExtension - components: - - pos: -51.5,36.5 - parent: 1 - type: Transform -- uid: 11689 - type: CableApcExtension - components: - - pos: -52.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11690 - type: CableApcExtension - components: - - pos: -48.5,36.5 - parent: 1 - type: Transform -- uid: 11691 - type: CableApcExtension - components: - - pos: -47.5,36.5 - parent: 1 - type: Transform -- uid: 11692 - type: CableApcExtension - components: - - pos: -47.5,35.5 - parent: 1 - type: Transform -- uid: 11693 - type: CableApcExtension - components: - - pos: -47.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11694 - type: CableApcExtension - components: - - pos: -46.5,36.5 - parent: 1 - type: Transform -- uid: 11695 - type: CableApcExtension - components: - - pos: -45.5,36.5 - parent: 1 - type: Transform -- uid: 11696 - type: CableApcExtension - components: - - pos: -44.5,36.5 - parent: 1 - type: Transform -- uid: 11697 - type: CableApcExtension - components: - - pos: -43.5,36.5 - parent: 1 - type: Transform -- uid: 11698 - type: CableApcExtension - components: - - pos: -42.5,36.5 - parent: 1 - type: Transform -- uid: 11699 - type: CableApcExtension - components: - - pos: -41.5,36.5 - parent: 1 - type: Transform -- uid: 11700 - type: CableApcExtension - components: - - pos: -40.5,36.5 - parent: 1 - type: Transform -- uid: 11701 - type: CableApcExtension - components: - - pos: -39.5,36.5 - parent: 1 - type: Transform -- uid: 11702 - type: CableApcExtension - components: - - pos: -38.5,36.5 - parent: 1 - type: Transform -- uid: 11703 - type: CableApcExtension - components: - - pos: -37.5,36.5 - parent: 1 - type: Transform -- uid: 11704 - type: CableApcExtension - components: - - pos: -36.5,36.5 - parent: 1 - type: Transform -- uid: 11705 - type: CableApcExtension - components: - - pos: -35.5,36.5 - parent: 1 - type: Transform -- uid: 11706 - type: CableApcExtension - components: - - pos: -34.5,36.5 - parent: 1 - type: Transform -- uid: 11707 - type: CableApcExtension - components: - - pos: -34.5,37.5 - parent: 1 - type: Transform -- uid: 11708 - type: CableApcExtension - components: - - pos: -34.5,38.5 - parent: 1 - type: Transform -- uid: 11709 - type: CableApcExtension - components: - - pos: -35.5,38.5 - parent: 1 - type: Transform -- uid: 11710 - type: CableApcExtension - components: - - pos: -36.5,38.5 - parent: 1 - type: Transform -- uid: 11711 - type: CableApcExtension - components: - - pos: -37.5,38.5 - parent: 1 - type: Transform -- uid: 11712 - type: CableApcExtension - components: - - pos: -38.5,38.5 - parent: 1 - type: Transform -- uid: 11713 - type: CableApcExtension - components: - - pos: -39.5,38.5 - parent: 1 - type: Transform -- uid: 11714 - type: CableApcExtension - components: - - pos: -40.5,38.5 - parent: 1 - type: Transform -- uid: 11715 - type: CableApcExtension - components: - - pos: -41.5,38.5 - parent: 1 - type: Transform -- uid: 11716 - type: CableApcExtension - components: - - pos: -42.5,38.5 - parent: 1 - type: Transform -- uid: 11717 - type: CableApcExtension - components: - - pos: -42.5,39.5 - parent: 1 - type: Transform -- uid: 11718 - type: CableApcExtension - components: - - pos: -42.5,40.5 - parent: 1 - type: Transform -- uid: 11719 - type: CableApcExtension - components: - - pos: -42.5,41.5 - parent: 1 - type: Transform -- uid: 11720 - type: CableApcExtension - components: - - pos: -42.5,42.5 - parent: 1 - type: Transform -- uid: 11721 - type: CableApcExtension - components: - - pos: -33.5,38.5 - parent: 1 - type: Transform -- uid: 11722 - type: CableApcExtension - components: - - pos: -32.5,38.5 - parent: 1 - type: Transform -- uid: 11723 - type: CableApcExtension - components: - - pos: -31.5,38.5 - parent: 1 - type: Transform -- uid: 11724 - type: CableApcExtension - components: - - pos: -30.5,38.5 - parent: 1 - type: Transform -- uid: 11725 - type: CableApcExtension - components: - - pos: -29.5,38.5 - parent: 1 - type: Transform -- uid: 11726 - type: CableApcExtension - components: - - pos: -28.5,38.5 - parent: 1 - type: Transform -- uid: 11727 - type: CableApcExtension - components: - - pos: -27.5,38.5 - parent: 1 - type: Transform -- uid: 11728 - type: CableApcExtension - components: - - pos: -26.5,38.5 - parent: 1 - type: Transform -- uid: 11729 - type: CableApcExtension - components: - - pos: -25.5,38.5 - parent: 1 - type: Transform -- uid: 11730 - type: CableApcExtension - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform -- uid: 11731 - type: CableApcExtension - components: - - pos: -24.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11732 - type: CableApcExtension - components: - - pos: -24.5,48.5 - parent: 1 - type: Transform -- uid: 11733 - type: CableApcExtension - components: - - pos: -24.5,47.5 - parent: 1 - type: Transform -- uid: 11734 - type: CableApcExtension - components: - - pos: -25.5,47.5 - parent: 1 - type: Transform -- uid: 11735 - type: CableApcExtension - components: - - pos: -26.5,47.5 - parent: 1 - type: Transform -- uid: 11736 - type: CableApcExtension - components: - - pos: -27.5,47.5 - parent: 1 - type: Transform -- uid: 11737 - type: CableApcExtension - components: - - pos: -28.5,47.5 - parent: 1 - type: Transform -- uid: 11738 - type: CableApcExtension - components: - - pos: -29.5,47.5 - parent: 1 - type: Transform -- uid: 11739 - type: CableApcExtension - components: - - pos: -30.5,47.5 - parent: 1 - type: Transform -- uid: 11740 - type: CableApcExtension - components: - - pos: -31.5,47.5 - parent: 1 - type: Transform -- uid: 11741 - type: CableApcExtension - components: - - pos: -32.5,47.5 - parent: 1 - type: Transform -- uid: 11742 - type: CableApcExtension - components: - - pos: -33.5,47.5 - parent: 1 - type: Transform -- uid: 11743 - type: CableApcExtension - components: - - pos: -34.5,47.5 - parent: 1 - type: Transform -- uid: 11744 - type: CableApcExtension - components: - - pos: -35.5,47.5 - parent: 1 - type: Transform -- uid: 11745 - type: CableApcExtension - components: - - pos: -35.5,48.5 - parent: 1 - type: Transform -- uid: 11746 - type: CableApcExtension - components: - - pos: -36.5,48.5 - parent: 1 - type: Transform -- uid: 11747 - type: CableApcExtension - components: - - pos: -37.5,48.5 - parent: 1 - type: Transform -- uid: 11748 - type: CableApcExtension - components: - - pos: -38.5,48.5 - parent: 1 - type: Transform -- uid: 11749 - type: CableApcExtension - components: - - pos: -32.5,48.5 - parent: 1 - type: Transform -- uid: 11750 - type: CableApcExtension - components: - - pos: -30.5,46.5 - parent: 1 - type: Transform -- uid: 11751 - type: CableApcExtension - components: - - pos: -30.5,45.5 - parent: 1 - type: Transform -- uid: 11752 - type: CableApcExtension - components: - - pos: -30.5,44.5 - parent: 1 - type: Transform -- uid: 11753 - type: CableApcExtension - components: - - pos: -30.5,43.5 - parent: 1 - type: Transform -- uid: 11754 - type: CableApcExtension - components: - - pos: -30.5,42.5 - parent: 1 - type: Transform -- uid: 11755 - type: CableApcExtension - components: - - pos: -29.5,42.5 - parent: 1 - type: Transform -- uid: 11756 - type: CableApcExtension - components: - - pos: -28.5,42.5 - parent: 1 - type: Transform -- uid: 11757 - type: CableApcExtension - components: - - pos: -27.5,42.5 - parent: 1 - type: Transform -- uid: 11758 - type: CableApcExtension - components: - - pos: -26.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11759 - type: CableApcExtension - components: - - pos: -26.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11760 - type: CableApcExtension - components: - - pos: -26.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11761 - type: CableApcExtension - components: - - pos: -30.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11762 - type: CableApcExtension - components: - - pos: -31.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11763 - type: CableApcExtension - components: - - pos: -32.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11764 - type: CableApcExtension - components: - - pos: -34.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11765 - type: CableApcExtension - components: - - pos: -35.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11766 - type: CableApcExtension - components: - - pos: -31.5,43.5 - parent: 1 - type: Transform -- uid: 11767 - type: CableApcExtension - components: - - pos: -32.5,43.5 - parent: 1 - type: Transform -- uid: 11768 - type: CableApcExtension - components: - - pos: -33.5,43.5 - parent: 1 - type: Transform -- uid: 11769 - type: CableApcExtension - components: - - pos: -34.5,43.5 - parent: 1 - type: Transform -- uid: 11770 - type: CableApcExtension - components: - - pos: -35.5,43.5 - parent: 1 - type: Transform -- uid: 11771 - type: CableApcExtension - components: - - pos: -36.5,43.5 - parent: 1 - type: Transform -- uid: 11772 - type: CableApcExtension - components: - - pos: -37.5,43.5 - parent: 1 - type: Transform -- uid: 11773 - type: CableApcExtension - components: - - pos: -38.5,43.5 - parent: 1 - type: Transform -- uid: 11774 - type: CableApcExtension - components: - - pos: -39.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11775 - type: CableApcExtension - components: - - pos: -39.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11776 - type: CableApcExtension - components: - - pos: -35.5,46.5 - parent: 1 - type: Transform -- uid: 11777 - type: CableApcExtension - components: - - pos: -35.5,45.5 - parent: 1 - type: Transform -- uid: 11778 - type: CableApcExtension - components: - - pos: -35.5,44.5 - parent: 1 - type: Transform -- uid: 11779 - type: CableApcExtension - components: - - pos: -36.5,45.5 - parent: 1 - type: Transform -- uid: 11780 - type: CableApcExtension - components: - - pos: -37.5,45.5 - parent: 1 - type: Transform -- uid: 11781 - type: CableApcExtension - components: - - pos: -38.5,45.5 - parent: 1 - type: Transform -- uid: 11782 - type: CableApcExtension - components: - - pos: -39.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11783 - type: CableApcExtension - components: - - pos: -39.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11784 - type: CableApcExtension - components: - - pos: -20.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11785 - type: CableApcExtension - components: - - pos: -19.5,50.5 - parent: 1 - type: Transform -- uid: 11786 - type: CableApcExtension - components: - - pos: -18.5,50.5 - parent: 1 - type: Transform -- uid: 11787 - type: CableApcExtension - components: - - pos: -17.5,50.5 - parent: 1 - type: Transform -- uid: 11788 - type: CableApcExtension - components: - - pos: -16.5,50.5 - parent: 1 - type: Transform -- uid: 11789 - type: CableApcExtension - components: - - pos: -16.5,51.5 - parent: 1 - type: Transform -- uid: 11790 - type: CableApcExtension - components: - - pos: -16.5,52.5 - parent: 1 - type: Transform -- uid: 11791 - type: CableApcExtension - components: - - pos: -16.5,53.5 - parent: 1 - type: Transform -- uid: 11792 - type: CableApcExtension - components: - - pos: -16.5,54.5 - parent: 1 - type: Transform -- uid: 11793 - type: CableApcExtension - components: - - pos: -16.5,55.5 - parent: 1 - type: Transform -- uid: 11794 - type: CableApcExtension - components: - - pos: -16.5,56.5 - parent: 1 - type: Transform -- uid: 11795 - type: CableApcExtension - components: - - pos: -15.5,56.5 - parent: 1 - type: Transform -- uid: 11796 - type: CableApcExtension - components: - - pos: -14.5,56.5 - parent: 1 - type: Transform -- uid: 11797 - type: CableApcExtension - components: - - pos: -13.5,56.5 - parent: 1 - type: Transform -- uid: 11798 - type: CableApcExtension - components: - - pos: -12.5,56.5 - parent: 1 - type: Transform -- uid: 11799 - type: CableApcExtension - components: - - pos: -12.5,55.5 - parent: 1 - type: Transform -- uid: 11800 - type: CableApcExtension - components: - - pos: -12.5,54.5 - parent: 1 - type: Transform -- uid: 11801 - type: CableApcExtension - components: - - pos: -12.5,53.5 - parent: 1 - type: Transform -- uid: 11802 - type: CableApcExtension - components: - - pos: -12.5,52.5 - parent: 1 - type: Transform -- uid: 11803 - type: CableApcExtension - components: - - pos: -12.5,51.5 - parent: 1 - type: Transform -- uid: 11804 - type: CableApcExtension - components: - - pos: -12.5,50.5 - parent: 1 - type: Transform -- uid: 11805 - type: CableApcExtension - components: - - pos: -12.5,49.5 - parent: 1 - type: Transform -- uid: 11806 - type: CableApcExtension - components: - - pos: -12.5,48.5 - parent: 1 - type: Transform -- uid: 11807 - type: CableApcExtension - components: - - pos: -12.5,47.5 - parent: 1 - type: Transform -- uid: 11808 - type: CableApcExtension - components: - - pos: -12.5,46.5 - parent: 1 - type: Transform -- uid: 11809 - type: CableApcExtension - components: - - pos: -12.5,45.5 - parent: 1 - type: Transform -- uid: 11810 - type: CableApcExtension - components: - - pos: -12.5,44.5 - parent: 1 - type: Transform -- uid: 11811 - type: CableApcExtension - components: - - pos: -12.5,43.5 - parent: 1 - type: Transform -- uid: 11812 - type: CableApcExtension - components: - - pos: -12.5,42.5 - parent: 1 - type: Transform -- uid: 11813 - type: CableApcExtension - components: - - pos: -12.5,41.5 - parent: 1 - type: Transform -- uid: 11814 - type: CableApcExtension - components: - - pos: -12.5,40.5 - parent: 1 - type: Transform -- uid: 11815 - type: CableApcExtension - components: - - pos: -12.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11816 - type: CableApcExtension - components: - - pos: -13.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11817 - type: CableApcExtension - components: - - pos: -13.5,44.5 - parent: 1 - type: Transform -- uid: 11818 - type: CableApcExtension - components: - - pos: -14.5,44.5 - parent: 1 - type: Transform -- uid: 11819 - type: CableApcExtension - components: - - pos: -15.5,44.5 - parent: 1 - type: Transform -- uid: 11820 - type: CableApcExtension - components: - - pos: -16.5,44.5 - parent: 1 - type: Transform -- uid: 11821 - type: CableApcExtension - components: - - pos: -17.5,44.5 - parent: 1 - type: Transform -- uid: 11822 - type: CableApcExtension - components: - - pos: -17.5,43.5 - parent: 1 - type: Transform -- uid: 11823 - type: CableApcExtension - components: - - pos: -17.5,42.5 - parent: 1 - type: Transform -- uid: 11824 - type: CableApcExtension - components: - - pos: -17.5,41.5 - parent: 1 - type: Transform -- uid: 11825 - type: CableApcExtension - components: - - pos: -17.5,40.5 - parent: 1 - type: Transform -- uid: 11826 - type: CableApcExtension - components: - - pos: -17.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11827 - type: CableApcExtension - components: - - pos: -18.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11828 - type: CableApcExtension - components: - - pos: -19.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11829 - type: CableApcExtension - components: - - pos: -16.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11830 - type: CableApcExtension - components: - - pos: -15.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11831 - type: CableApcExtension - components: - - pos: -18.5,44.5 - parent: 1 - type: Transform -- uid: 11832 - type: CableApcExtension - components: - - pos: -19.5,44.5 - parent: 1 - type: Transform -- uid: 11833 - type: CableApcExtension - components: - - pos: -19.5,45.5 - parent: 1 - type: Transform -- uid: 11834 - type: CableApcExtension - components: - - pos: -19.5,46.5 - parent: 1 - type: Transform -- uid: 11835 - type: CableApcExtension - components: - - pos: -19.5,47.5 - parent: 1 - type: Transform -- uid: 11836 - type: CableApcExtension - components: - - pos: -19.5,48.5 - parent: 1 - type: Transform -- uid: 11837 - type: CableApcExtension - components: - - pos: -19.5,49.5 - parent: 1 - type: Transform -- uid: 11838 - type: CableApcExtension - components: - - pos: -19.5,50.5 - parent: 1 - type: Transform -- uid: 11839 - type: CableMV - components: - - pos: -21.5,49.5 - parent: 1 - type: Transform -- uid: 11840 - type: CableMV - components: - - pos: -21.5,48.5 - parent: 1 - type: Transform -- uid: 11841 - type: CableMV - components: - - pos: -20.5,48.5 - parent: 1 - type: Transform -- uid: 11842 - type: CableMV - components: - - pos: -19.5,48.5 - parent: 1 - type: Transform -- uid: 11843 - type: CableMV - components: - - pos: -19.5,49.5 - parent: 1 - type: Transform -- uid: 11844 - type: CableMV - components: - - pos: -19.5,50.5 - parent: 1 - type: Transform -- uid: 11845 - type: CableMV - components: - - pos: -18.5,50.5 - parent: 1 - type: Transform -- uid: 11846 - type: CableMV - components: - - pos: -17.5,50.5 - parent: 1 - type: Transform -- uid: 11847 - type: CableMV - components: - - pos: -16.5,50.5 - parent: 1 - type: Transform -- uid: 11848 - type: CableMV - components: - - pos: -16.5,51.5 - parent: 1 - type: Transform -- uid: 11849 - type: CableMV - components: - - pos: -16.5,52.5 - parent: 1 - type: Transform -- uid: 11850 - type: CableMV - components: - - pos: -16.5,53.5 - parent: 1 - type: Transform -- uid: 11851 - type: CableMV - components: - - pos: -16.5,54.5 - parent: 1 - type: Transform -- uid: 11852 - type: CableMV - components: - - pos: -16.5,55.5 - parent: 1 - type: Transform -- uid: 11853 - type: CableMV - components: - - pos: -16.5,56.5 - parent: 1 - type: Transform -- uid: 11854 - type: CableMV - components: - - pos: -15.5,56.5 - parent: 1 - type: Transform -- uid: 11855 - type: CableMV - components: - - pos: -14.5,56.5 - parent: 1 - type: Transform -- uid: 11856 - type: CableMV - components: - - pos: -13.5,56.5 - parent: 1 - type: Transform -- uid: 11857 - type: CableMV - components: - - pos: -12.5,56.5 - parent: 1 - type: Transform -- uid: 11858 - type: CableMV - components: - - pos: -11.5,56.5 - parent: 1 - type: Transform -- uid: 11859 - type: CableMV - components: - - pos: -10.5,56.5 - parent: 1 - type: Transform -- uid: 11860 - type: CableMV - components: - - pos: -9.5,56.5 - parent: 1 - type: Transform -- uid: 11861 - type: CableMV - components: - - pos: -8.5,56.5 - parent: 1 - type: Transform -- uid: 11862 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -7.5,56.5 - parent: 1 - type: Transform -- uid: 11863 - type: CableMV - components: - - pos: -7.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11864 - type: CableApcExtension - components: - - pos: -7.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11865 - type: CableApcExtension - components: - - pos: -8.5,56.5 - parent: 1 - type: Transform -- uid: 11866 - type: CableApcExtension - components: - - pos: -9.5,56.5 - parent: 1 - type: Transform -- uid: 11867 - type: CableApcExtension - components: - - pos: -10.5,56.5 - parent: 1 - type: Transform -- uid: 11868 - type: CableApcExtension - components: - - pos: -10.5,57.5 - parent: 1 - type: Transform -- uid: 11869 - type: CableApcExtension - components: - - pos: -10.5,58.5 - parent: 1 - type: Transform -- uid: 11870 - type: CableApcExtension - components: - - pos: -10.5,59.5 - parent: 1 - type: Transform -- uid: 11871 - type: CableApcExtension - components: - - pos: -11.5,59.5 - parent: 1 - type: Transform -- uid: 11872 - type: CableApcExtension - components: - - pos: -12.5,59.5 - parent: 1 - type: Transform -- uid: 11873 - type: CableApcExtension - components: - - pos: -13.5,59.5 - parent: 1 - type: Transform -- uid: 11874 - type: CableApcExtension - components: - - pos: -14.5,59.5 - parent: 1 - type: Transform -- uid: 11875 - type: CableApcExtension - components: - - pos: -15.5,59.5 - parent: 1 - type: Transform -- uid: 11876 - type: CableApcExtension - components: - - pos: -16.5,59.5 - parent: 1 - type: Transform -- uid: 11877 - type: CableApcExtension - components: - - pos: -9.5,59.5 - parent: 1 - type: Transform -- uid: 11878 - type: CableApcExtension - components: - - pos: -8.5,59.5 - parent: 1 - type: Transform -- uid: 11879 - type: CableApcExtension - components: - - pos: -7.5,59.5 - parent: 1 - type: Transform -- uid: 11880 - type: CableApcExtension - components: - - pos: -6.5,59.5 - parent: 1 - type: Transform -- uid: 11881 - type: CableApcExtension - components: - - pos: -5.5,59.5 - parent: 1 - type: Transform -- uid: 11882 - type: CableApcExtension - components: - - pos: -5.5,60.5 - parent: 1 - type: Transform -- uid: 11883 - type: CableApcExtension - components: - - pos: -5.5,61.5 - parent: 1 - type: Transform -- uid: 11884 - type: CableApcExtension - components: - - pos: -5.5,62.5 - parent: 1 - type: Transform -- uid: 11885 - type: CableApcExtension - components: - - pos: -5.5,63.5 - parent: 1 - type: Transform -- uid: 11886 - type: CableApcExtension - components: - - pos: -5.5,64.5 - parent: 1 - type: Transform -- uid: 11887 - type: CableApcExtension - components: - - pos: -6.5,64.5 - parent: 1 - type: Transform -- uid: 11888 - type: CableApcExtension - components: - - pos: -7.5,64.5 - parent: 1 - type: Transform -- uid: 11889 - type: CableApcExtension - components: - - pos: -8.5,64.5 - parent: 1 - type: Transform -- uid: 11890 - type: CableApcExtension - components: - - pos: -8.5,63.5 - parent: 1 - type: Transform -- uid: 11891 - type: CableApcExtension - components: - - pos: -8.5,62.5 - parent: 1 - type: Transform -- uid: 11892 - type: CableApcExtension - components: - - pos: -8.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11893 - type: CableApcExtension - components: - - pos: -9.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11894 - type: CableApcExtension - components: - - pos: -7.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11895 - type: CableApcExtension - components: - - pos: -6.5,56.5 - parent: 1 - type: Transform -- uid: 11896 - type: CableApcExtension - components: - - pos: -5.5,56.5 - parent: 1 - type: Transform -- uid: 11897 - type: CableApcExtension - components: - - pos: -5.5,55.5 - parent: 1 - type: Transform -- uid: 11898 - type: CableApcExtension - components: - - pos: -5.5,54.5 - parent: 1 - type: Transform -- uid: 11899 - type: CableApcExtension - components: - - pos: -5.5,53.5 - parent: 1 - type: Transform -- uid: 11900 - type: CableApcExtension - components: - - pos: -5.5,52.5 - parent: 1 - type: Transform -- uid: 11901 - type: CableApcExtension - components: - - pos: -4.5,54.5 - parent: 1 - type: Transform -- uid: 11902 - type: CableApcExtension - components: - - pos: -3.5,54.5 - parent: 1 - type: Transform -- uid: 11903 - type: CableApcExtension - components: - - pos: -2.5,54.5 - parent: 1 - type: Transform -- uid: 11904 - type: CableApcExtension - components: - - pos: -1.5,54.5 - parent: 1 - type: Transform -- uid: 11905 - type: CableApcExtension - components: - - pos: -3.5,53.5 - parent: 1 - type: Transform -- uid: 11906 - type: CableApcExtension - components: - - pos: -3.5,52.5 - parent: 1 - type: Transform -- uid: 11907 - type: CableApcExtension - components: - - pos: -3.5,55.5 - parent: 1 - type: Transform -- uid: 11908 - type: CableApcExtension - components: - - pos: -3.5,56.5 - parent: 1 - type: Transform -- uid: 11909 - type: CableApcExtension - components: - - pos: -1.5,53.5 - parent: 1 - type: Transform -- uid: 11910 - type: CableApcExtension - components: - - pos: -1.5,52.5 - parent: 1 - type: Transform -- uid: 11911 - type: CableApcExtension - components: - - pos: -1.5,51.5 - parent: 1 - type: Transform -- uid: 11912 - type: CableApcExtension - components: - - pos: -1.5,50.5 - parent: 1 - type: Transform -- uid: 11913 - type: CableApcExtension - components: - - pos: -1.5,49.5 - parent: 1 - type: Transform -- uid: 11914 - type: CableApcExtension - components: - - pos: -1.5,48.5 - parent: 1 - type: Transform -- uid: 11915 - type: CableApcExtension - components: - - pos: -2.5,48.5 - parent: 1 - type: Transform -- uid: 11916 - type: CableApcExtension - components: - - pos: -3.5,48.5 - parent: 1 - type: Transform -- uid: 11917 - type: CableApcExtension - components: - - pos: -4.5,48.5 - parent: 1 - type: Transform -- uid: 11918 - type: CableApcExtension - components: - - pos: -5.5,48.5 - parent: 1 - type: Transform -- uid: 11919 - type: CableApcExtension - components: - - pos: -6.5,48.5 - parent: 1 - type: Transform -- uid: 11920 - type: CableApcExtension - components: - - pos: -7.5,48.5 - parent: 1 - type: Transform -- uid: 11921 - type: CableApcExtension - components: - - pos: -8.5,48.5 - parent: 1 - type: Transform -- uid: 11922 - type: CableApcExtension - components: - - pos: -9.5,48.5 - parent: 1 - type: Transform -- uid: 11923 - type: CableApcExtension - components: - - pos: -9.5,49.5 - parent: 1 - type: Transform -- uid: 11924 - type: CableApcExtension - components: - - pos: -9.5,50.5 - parent: 1 - type: Transform -- uid: 11925 - type: CableApcExtension - components: - - pos: -9.5,51.5 - parent: 1 - type: Transform -- uid: 11926 - type: CableApcExtension - components: - - pos: -9.5,52.5 - parent: 1 - type: Transform -- uid: 11927 - type: CableApcExtension - components: - - pos: -9.5,53.5 - parent: 1 - type: Transform -- uid: 11928 - type: CableApcExtension - components: - - pos: -9.5,54.5 - parent: 1 - type: Transform -- uid: 11929 - type: CableApcExtension - components: - - pos: -9.5,55.5 - parent: 1 - type: Transform -- uid: 11930 - type: CableApcExtension - components: - - pos: -9.5,47.5 - parent: 1 - type: Transform -- uid: 11931 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11932 - type: CableApcExtension - components: - - pos: -9.5,45.5 - parent: 1 - type: Transform -- uid: 11933 - type: CableApcExtension - components: - - pos: -9.5,44.5 - parent: 1 - type: Transform -- uid: 11934 - type: CableApcExtension - components: - - pos: -9.5,43.5 - parent: 1 - type: Transform -- uid: 11935 - type: CableApcExtension - components: - - pos: -9.5,42.5 - parent: 1 - type: Transform -- uid: 11936 - type: CableApcExtension - components: - - pos: -9.5,41.5 - parent: 1 - type: Transform -- uid: 11937 - type: CableApcExtension - components: - - pos: -9.5,40.5 - parent: 1 - type: Transform -- uid: 11938 - type: CableApcExtension - components: - - pos: -9.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11939 - type: CableApcExtension - components: - - pos: -10.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11940 - type: CableApcExtension - components: - - pos: -6.5,43.5 - parent: 1 - type: Transform -- uid: 11941 - type: CableApcExtension - components: - - pos: -6.5,44.5 - parent: 1 - type: Transform -- uid: 11942 - type: CableApcExtension - components: - - pos: -6.5,45.5 - parent: 1 - type: Transform -- uid: 11943 - type: CableApcExtension - components: - - pos: -6.5,46.5 - parent: 1 - type: Transform -- uid: 11944 - type: CableApcExtension - components: - - pos: -6.5,47.5 - parent: 1 - type: Transform -- uid: 11945 - type: CableApcExtension - components: - - pos: -6.5,42.5 - parent: 1 - type: Transform -- uid: 11946 - type: CableApcExtension - components: - - pos: -6.5,41.5 - parent: 1 - type: Transform -- uid: 11947 - type: CableApcExtension - components: - - pos: -6.5,40.5 - parent: 1 - type: Transform -- uid: 11948 - type: CableApcExtension - components: - - pos: -6.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11949 - type: CableApcExtension - components: - - pos: -7.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11950 - type: CableApcExtension - components: - - pos: -3.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11951 - type: CableApcExtension - components: - - pos: -3.5,40.5 - parent: 1 - type: Transform -- uid: 11952 - type: CableApcExtension - components: - - pos: -3.5,41.5 - parent: 1 - type: Transform -- uid: 11953 - type: CableApcExtension - components: - - pos: -3.5,42.5 - parent: 1 - type: Transform -- uid: 11954 - type: CableApcExtension - components: - - pos: -3.5,43.5 - parent: 1 - type: Transform -- uid: 11955 - type: CableApcExtension - components: - - pos: -3.5,44.5 - parent: 1 - type: Transform -- uid: 11956 - type: CableApcExtension - components: - - pos: -3.5,45.5 - parent: 1 - type: Transform -- uid: 11957 - type: CableApcExtension - components: - - pos: -3.5,46.5 - parent: 1 - type: Transform -- uid: 11958 - type: CableApcExtension - components: - - pos: -3.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11959 - type: CableApcExtension - components: - - pos: -4.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11960 - type: CableApcExtension - components: - - pos: -23.5,47.5 - parent: 1 - type: Transform -- uid: 11961 - type: CableApcExtension - components: - - pos: -22.5,47.5 - parent: 1 - type: Transform -- uid: 11962 - type: CableApcExtension - components: - - pos: -22.5,48.5 - parent: 1 - type: Transform -- uid: 11963 - type: CableApcExtension - components: - - pos: -21.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11964 - type: CableApcExtension - components: - - pos: -21.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11965 - type: CableApcExtension - components: - - pos: -21.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11966 - type: CableApcExtension - components: - - pos: -21.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11967 - type: CableApcExtension - components: - - pos: -21.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11968 - type: CableApcExtension - components: - - pos: -21.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11969 - type: CableApcExtension - components: - - pos: -21.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11970 - type: CableApcExtension - components: - - pos: -20.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11971 - type: CableApcExtension - components: - - pos: -19.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11972 - type: CableApcExtension - components: - - pos: -19.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11973 - type: CableApcExtension - components: - - pos: -19.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11974 - type: CableApcExtension - components: - - pos: -19.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11975 - type: CableApcExtension - components: - - pos: -19.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11976 - type: CableApcExtension - components: - - pos: -19.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11977 - type: CableApcExtension - components: - - pos: -18.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11978 - type: CableApcExtension - components: - - pos: -17.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11979 - type: CableApcExtension - components: - - pos: -16.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11980 - type: CableApcExtension - components: - - pos: -15.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11981 - type: CableApcExtension - components: - - pos: -14.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11982 - type: CableApcExtension - components: - - pos: -13.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11983 - type: CableApcExtension - components: - - pos: -13.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11984 - type: CableApcExtension - components: - - pos: -13.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11985 - type: CableApcExtension - components: - - pos: -13.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11986 - type: CableApcExtension - components: - - pos: -13.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11987 - type: CableApcExtension - components: - - pos: -13.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11988 - type: CableApcExtension - components: - - pos: -13.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11989 - type: CableApcExtension - components: - - pos: -13.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11990 - type: CableApcExtension - components: - - pos: -13.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11991 - type: CableApcExtension - components: - - pos: -12.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11992 - type: CableApcExtension - components: - - pos: -11.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11993 - type: CableApcExtension - components: - - pos: -10.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11994 - type: CableApcExtension - components: - - pos: -9.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11995 - type: CableApcExtension - components: - - pos: -8.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11996 - type: CableApcExtension - components: - - pos: -7.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11997 - type: CableApcExtension - components: - - pos: -6.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11998 - type: CableApcExtension - components: - - pos: -5.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11999 - type: CableApcExtension - components: - - pos: -4.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12000 - type: CableApcExtension - components: - - pos: -4.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12001 - type: CableApcExtension - components: - - pos: -4.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12002 - type: CableApcExtension - components: - - pos: -4.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12003 - type: CableApcExtension - components: - - pos: -3.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12004 - type: CableApcExtension - components: - - pos: -1.5,47.5 - parent: 1 - type: Transform -- uid: 12005 - type: CableApcExtension - components: - - pos: -1.5,46.5 - parent: 1 - type: Transform -- uid: 12006 - type: CableApcExtension - components: - - pos: -1.5,45.5 - parent: 1 - type: Transform -- uid: 12007 - type: CableApcExtension - components: - - pos: -1.5,44.5 - parent: 1 - type: Transform -- uid: 12008 - type: CableApcExtension - components: - - pos: -1.5,43.5 - parent: 1 - type: Transform -- uid: 12009 - type: CableApcExtension - components: - - pos: -1.5,42.5 - parent: 1 - type: Transform -- uid: 12010 - type: CableApcExtension - components: - - pos: -1.5,41.5 - parent: 1 - type: Transform -- uid: 12011 - type: CableApcExtension - components: - - pos: -1.5,40.5 - parent: 1 - type: Transform -- uid: 12012 - type: CableApcExtension - components: - - pos: -22.5,46.5 - parent: 1 - type: Transform -- uid: 12013 - type: CableApcExtension - components: - - pos: -21.5,46.5 - parent: 1 - type: Transform -- uid: 12014 - type: CableApcExtension - components: - - pos: -21.5,45.5 - parent: 1 - type: Transform -- uid: 12015 - type: CableApcExtension - components: - - pos: -21.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12016 - type: CableApcExtension - components: - - pos: -21.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12017 - type: CableApcExtension - components: - - pos: -21.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12018 - type: CableApcExtension - components: - - pos: -21.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12019 - type: CableApcExtension - components: - - pos: -21.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12020 - type: CableMV - components: - - pos: -28.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12021 - type: PoweredSmallLightEmpty - components: - - pos: -33.5,56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12022 - type: PoweredSmallLightEmpty - components: - - rot: 3.141592653589793 rad - pos: -28.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12023 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -20.5,31.5 - parent: 1 - type: Transform -- uid: 12024 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -25.5,32.5 - parent: 1 - type: Transform -- uid: 12025 - type: APCBasic - components: - - pos: -17.5,26.5 - parent: 1 - type: Transform -- uid: 12026 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -8.5,23.5 - parent: 1 - type: Transform -- uid: 12027 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -12.5,32.5 - parent: 1 - type: Transform -- uid: 12028 - type: CableMV - components: - - pos: -21.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12029 - type: CableMV - components: - - pos: -20.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12030 - type: CableMV - components: - - pos: -20.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12031 - type: CableMV - components: - - pos: -20.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12032 - type: CableMV - components: - - pos: -20.5,28.5 - parent: 1 - type: Transform -- uid: 12033 - type: CableMV - components: - - pos: -20.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12034 - type: CableMV - components: - - pos: -20.5,26.5 - parent: 1 - type: Transform -- uid: 12035 - type: CableMV - components: - - pos: -20.5,25.5 - parent: 1 - type: Transform -- uid: 12036 - type: CableMV - components: - - pos: -19.5,25.5 - parent: 1 - type: Transform -- uid: 12037 - type: CableMV - components: - - pos: -18.5,25.5 - parent: 1 - type: Transform -- uid: 12038 - type: CableMV - components: - - pos: -17.5,25.5 - parent: 1 - type: Transform -- uid: 12039 - type: CableMV - components: - - pos: -17.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12040 - type: CableMV - components: - - pos: -16.5,25.5 - parent: 1 - type: Transform -- uid: 12041 - type: CableMV - components: - - pos: -15.5,25.5 - parent: 1 - type: Transform -- uid: 12042 - type: CableMV - components: - - pos: -14.5,25.5 - parent: 1 - type: Transform -- uid: 12043 - type: CableMV - components: - - pos: -13.5,25.5 - parent: 1 - type: Transform -- uid: 12044 - type: CableMV - components: - - pos: -12.5,25.5 - parent: 1 - type: Transform -- uid: 12045 - type: CableMV - components: - - pos: -11.5,25.5 - parent: 1 - type: Transform -- uid: 12046 - type: CableMV - components: - - pos: -10.5,25.5 - parent: 1 - type: Transform -- uid: 12047 - type: CableMV - components: - - pos: -10.5,24.5 - parent: 1 - type: Transform -- uid: 12048 - type: CableMV - components: - - pos: -10.5,23.5 - parent: 1 - type: Transform -- uid: 12049 - type: CableMV - components: - - pos: -9.5,23.5 - parent: 1 - type: Transform -- uid: 12050 - type: CableMV - components: - - pos: -8.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12051 - type: CableMV - components: - - pos: -10.5,26.5 - parent: 1 - type: Transform -- uid: 12052 - type: CableMV - components: - - pos: -10.5,27.5 - parent: 1 - type: Transform -- uid: 12053 - type: CableMV - components: - - pos: -10.5,28.5 - parent: 1 - type: Transform -- uid: 12054 - type: CableMV - components: - - pos: -10.5,29.5 - parent: 1 - type: Transform -- uid: 12055 - type: CableMV - components: - - pos: -10.5,30.5 - parent: 1 - type: Transform -- uid: 12056 - type: CableMV - components: - - pos: -10.5,31.5 - parent: 1 - type: Transform -- uid: 12057 - type: CableMV - components: - - pos: -10.5,32.5 - parent: 1 - type: Transform -- uid: 12058 - type: CableMV - components: - - pos: -11.5,32.5 - parent: 1 - type: Transform -- uid: 12059 - type: CableMV - components: - - pos: -12.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12060 - type: CableApcExtension - components: - - pos: -12.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12061 - type: CableApcExtension - components: - - pos: -11.5,32.5 - parent: 1 - type: Transform -- uid: 12062 - type: CableApcExtension - components: - - pos: -10.5,32.5 - parent: 1 - type: Transform -- uid: 12063 - type: CableApcExtension - components: - - pos: -9.5,32.5 - parent: 1 - type: Transform -- uid: 12064 - type: CableApcExtension - components: - - pos: -9.5,33.5 - parent: 1 - type: Transform -- uid: 12065 - type: CableApcExtension - components: - - pos: -8.5,33.5 - parent: 1 - type: Transform -- uid: 12066 - type: CableApcExtension - components: - - pos: -7.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12067 - type: CableApcExtension - components: - - pos: -6.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12068 - type: CableApcExtension - components: - - pos: -6.5,32.5 - parent: 1 - type: Transform -- uid: 12069 - type: CableApcExtension - components: - - pos: -6.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12070 - type: CableApcExtension - components: - - pos: -6.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12071 - type: CableApcExtension - components: - - pos: -6.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12072 - type: CableApcExtension - components: - - pos: -6.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12073 - type: CableApcExtension - components: - - pos: -6.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12074 - type: CableApcExtension - components: - - pos: -9.5,31.5 - parent: 1 - type: Transform -- uid: 12075 - type: CableApcExtension - components: - - pos: -9.5,30.5 - parent: 1 - type: Transform -- uid: 12076 - type: CableApcExtension - components: - - pos: -9.5,29.5 - parent: 1 - type: Transform -- uid: 12077 - type: CableApcExtension - components: - - pos: -9.5,28.5 - parent: 1 - type: Transform -- uid: 12078 - type: CableApcExtension - components: - - pos: -9.5,27.5 - parent: 1 - type: Transform -- uid: 12079 - type: CableApcExtension - components: - - pos: -10.5,27.5 - parent: 1 - type: Transform -- uid: 12080 - type: CableApcExtension - components: - - pos: -11.5,27.5 - parent: 1 - type: Transform -- uid: 12081 - type: CableApcExtension - components: - - pos: -11.5,28.5 - parent: 1 - type: Transform -- uid: 12082 - type: CableApcExtension - components: - - pos: -11.5,29.5 - parent: 1 - type: Transform -- uid: 12083 - type: CableApcExtension - components: - - pos: -11.5,30.5 - parent: 1 - type: Transform -- uid: 12084 - type: CableApcExtension - components: - - pos: -11.5,31.5 - parent: 1 - type: Transform -- uid: 12085 - type: CableApcExtension - components: - - pos: -11.5,33.5 - parent: 1 - type: Transform -- uid: 12086 - type: CableApcExtension - components: - - pos: -11.5,34.5 - parent: 1 - type: Transform -- uid: 12087 - type: CableApcExtension - components: - - pos: -10.5,34.5 - parent: 1 - type: Transform -- uid: 12088 - type: CableApcExtension - components: - - pos: -20.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12089 - type: CableApcExtension - components: - - pos: -20.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12090 - type: CableApcExtension - components: - - pos: -20.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12091 - type: CableApcExtension - components: - - pos: -20.5,28.5 - parent: 1 - type: Transform -- uid: 12092 - type: CableApcExtension - components: - - pos: -20.5,32.5 - parent: 1 - type: Transform -- uid: 12093 - type: CableApcExtension - components: - - pos: -20.5,33.5 - parent: 1 - type: Transform -- uid: 12094 - type: CableApcExtension - components: - - pos: -20.5,34.5 - parent: 1 - type: Transform -- uid: 12095 - type: CableApcExtension - components: - - pos: -20.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12096 - type: CableApcExtension - components: - - pos: -20.5,36.5 - parent: 1 - type: Transform -- uid: 12097 - type: CableApcExtension - components: - - pos: -21.5,36.5 - parent: 1 - type: Transform -- uid: 12098 - type: CableApcExtension - components: - - pos: -22.5,36.5 - parent: 1 - type: Transform -- uid: 12099 - type: CableApcExtension - components: - - pos: -23.5,36.5 - parent: 1 - type: Transform -- uid: 12100 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12101 - type: CableApcExtension - components: - - pos: -25.5,36.5 - parent: 1 - type: Transform -- uid: 12102 - type: CableApcExtension - components: - - pos: -26.5,36.5 - parent: 1 - type: Transform -- uid: 12103 - type: CableApcExtension - components: - - pos: -27.5,36.5 - parent: 1 - type: Transform -- uid: 12104 - type: CableApcExtension - components: - - pos: -28.5,36.5 - parent: 1 - type: Transform -- uid: 12105 - type: CableApcExtension - components: - - pos: -19.5,36.5 - parent: 1 - type: Transform -- uid: 12106 - type: CableApcExtension - components: - - pos: -18.5,36.5 - parent: 1 - type: Transform -- uid: 12107 - type: CableApcExtension - components: - - pos: -17.5,36.5 - parent: 1 - type: Transform -- uid: 12108 - type: CableApcExtension - components: - - pos: -16.5,36.5 - parent: 1 - type: Transform -- uid: 12109 - type: CableApcExtension - components: - - pos: -15.5,36.5 - parent: 1 - type: Transform -- uid: 12110 - type: CableApcExtension - components: - - pos: -14.5,36.5 - parent: 1 - type: Transform -- uid: 12111 - type: CableApcExtension - components: - - pos: -13.5,36.5 - parent: 1 - type: Transform -- uid: 12112 - type: CableApcExtension - components: - - pos: -12.5,36.5 - parent: 1 - type: Transform -- uid: 12113 - type: CableApcExtension - components: - - pos: -11.5,36.5 - parent: 1 - type: Transform -- uid: 12114 - type: CableApcExtension - components: - - pos: -10.5,36.5 - parent: 1 - type: Transform -- uid: 12115 - type: CableApcExtension - components: - - pos: -9.5,36.5 - parent: 1 - type: Transform -- uid: 12116 - type: CableApcExtension - components: - - pos: -8.5,36.5 - parent: 1 - type: Transform -- uid: 12117 - type: CableApcExtension - components: - - pos: -7.5,36.5 - parent: 1 - type: Transform -- uid: 12118 - type: CableApcExtension - components: - - pos: -6.5,36.5 - parent: 1 - type: Transform -- uid: 12119 - type: CableApcExtension - components: - - pos: -5.5,36.5 - parent: 1 - type: Transform -- uid: 12120 - type: CableApcExtension - components: - - pos: -4.5,36.5 - parent: 1 - type: Transform -- uid: 12121 - type: CableApcExtension - components: - - pos: -3.5,36.5 - parent: 1 - type: Transform -- uid: 12122 - type: CableApcExtension - components: - - pos: -2.5,36.5 - parent: 1 - type: Transform -- uid: 12123 - type: CableApcExtension - components: - - pos: -19.5,32.5 - parent: 1 - type: Transform -- uid: 12124 - type: CableApcExtension - components: - - pos: -18.5,32.5 - parent: 1 - type: Transform -- uid: 12125 - type: CableApcExtension - components: - - pos: -17.5,32.5 - parent: 1 - type: Transform -- uid: 12126 - type: CableApcExtension - components: - - pos: -16.5,32.5 - parent: 1 - type: Transform -- uid: 12127 - type: CableApcExtension - components: - - pos: -15.5,32.5 - parent: 1 - type: Transform -- uid: 12128 - type: CableApcExtension - components: - - pos: -14.5,32.5 - parent: 1 - type: Transform -- uid: 12129 - type: CableApcExtension - components: - - pos: -14.5,31.5 - parent: 1 - type: Transform -- uid: 12130 - type: CableApcExtension - components: - - pos: -14.5,30.5 - parent: 1 - type: Transform -- uid: 12131 - type: CableApcExtension - components: - - pos: -14.5,29.5 - parent: 1 - type: Transform -- uid: 12132 - type: CableApcExtension - components: - - pos: -14.5,28.5 - parent: 1 - type: Transform -- uid: 12133 - type: CableApcExtension - components: - - pos: -14.5,27.5 - parent: 1 - type: Transform -- uid: 12134 - type: CableApcExtension - components: - - pos: -14.5,33.5 - parent: 1 - type: Transform -- uid: 12135 - type: CableApcExtension - components: - - pos: -14.5,34.5 - parent: 1 - type: Transform -- uid: 12136 - type: CableApcExtension - components: - - pos: -17.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12137 - type: CableApcExtension - components: - - pos: -17.5,25.5 - parent: 1 - type: Transform -- uid: 12138 - type: CableApcExtension - components: - - pos: -17.5,24.5 - parent: 1 - type: Transform -- uid: 12139 - type: CableApcExtension - components: - - pos: -16.5,24.5 - parent: 1 - type: Transform -- uid: 12140 - type: CableApcExtension - components: - - pos: -15.5,24.5 - parent: 1 - type: Transform -- uid: 12141 - type: CableApcExtension - components: - - pos: -14.5,24.5 - parent: 1 - type: Transform -- uid: 12142 - type: CableApcExtension - components: - - pos: -13.5,24.5 - parent: 1 - type: Transform -- uid: 12143 - type: CableApcExtension - components: - - pos: -12.5,24.5 - parent: 1 - type: Transform -- uid: 12144 - type: CableApcExtension - components: - - pos: -11.5,24.5 - parent: 1 - type: Transform -- uid: 12145 - type: CableApcExtension - components: - - pos: -10.5,24.5 - parent: 1 - type: Transform -- uid: 12146 - type: CableApcExtension - components: - - pos: -10.5,23.5 - parent: 1 - type: Transform -- uid: 12147 - type: CableApcExtension - components: - - pos: -10.5,22.5 - parent: 1 - type: Transform -- uid: 12148 - type: CableApcExtension - components: - - pos: -10.5,21.5 - parent: 1 - type: Transform -- uid: 12149 - type: CableApcExtension - components: - - pos: -11.5,21.5 - parent: 1 - type: Transform -- uid: 12150 - type: CableApcExtension - components: - - pos: -11.5,20.5 - parent: 1 - type: Transform -- uid: 12151 - type: CableApcExtension - components: - - pos: -11.5,19.5 - parent: 1 - type: Transform -- uid: 12152 - type: CableApcExtension - components: - - pos: -11.5,18.5 - parent: 1 - type: Transform -- uid: 12153 - type: CableApcExtension - components: - - pos: -18.5,24.5 - parent: 1 - type: Transform -- uid: 12154 - type: CableApcExtension - components: - - pos: -19.5,24.5 - parent: 1 - type: Transform -- uid: 12155 - type: CableApcExtension - components: - - pos: -20.5,24.5 - parent: 1 - type: Transform -- uid: 12156 - type: CableApcExtension - components: - - pos: -20.5,23.5 - parent: 1 - type: Transform -- uid: 12157 - type: CableApcExtension - components: - - pos: -20.5,22.5 - parent: 1 - type: Transform -- uid: 12158 - type: CableApcExtension - components: - - pos: -20.5,21.5 - parent: 1 - type: Transform -- uid: 12159 - type: CableApcExtension - components: - - pos: -20.5,20.5 - parent: 1 - type: Transform -- uid: 12160 - type: CableApcExtension - components: - - pos: -20.5,19.5 - parent: 1 - type: Transform -- uid: 12161 - type: CableApcExtension - components: - - pos: -20.5,18.5 - parent: 1 - type: Transform -- uid: 12162 - type: CableApcExtension - components: - - pos: -20.5,17.5 - parent: 1 - type: Transform -- uid: 12163 - type: CableApcExtension - components: - - pos: -19.5,18.5 - parent: 1 - type: Transform -- uid: 12164 - type: CableApcExtension - components: - - pos: -18.5,18.5 - parent: 1 - type: Transform -- uid: 12165 - type: CableApcExtension - components: - - pos: -17.5,18.5 - parent: 1 - type: Transform -- uid: 12166 - type: CableApcExtension - components: - - pos: -16.5,18.5 - parent: 1 - type: Transform -- uid: 12167 - type: CableApcExtension - components: - - pos: -15.5,18.5 - parent: 1 - type: Transform -- uid: 12168 - type: CableApcExtension - components: - - pos: -14.5,18.5 - parent: 1 - type: Transform -- uid: 12169 - type: CableApcExtension - components: - - pos: -16.5,19.5 - parent: 1 - type: Transform -- uid: 12170 - type: CableApcExtension - components: - - pos: -16.5,20.5 - parent: 1 - type: Transform -- uid: 12171 - type: CableApcExtension - components: - - pos: -16.5,21.5 - parent: 1 - type: Transform -- uid: 12172 - type: CableApcExtension - components: - - pos: -16.5,22.5 - parent: 1 - type: Transform -- uid: 12173 - type: CableApcExtension - components: - - pos: -21.5,23.5 - parent: 1 - type: Transform -- uid: 12174 - type: CableApcExtension - components: - - pos: -22.5,23.5 - parent: 1 - type: Transform -- uid: 12175 - type: CableApcExtension - components: - - pos: -23.5,23.5 - parent: 1 - type: Transform -- uid: 12176 - type: CableApcExtension - components: - - pos: -24.5,23.5 - parent: 1 - type: Transform -- uid: 12177 - type: CableApcExtension - components: - - pos: -25.5,23.5 - parent: 1 - type: Transform -- uid: 12178 - type: CableApcExtension - components: - - pos: -24.5,22.5 - parent: 1 - type: Transform -- uid: 12179 - type: CableApcExtension - components: - - pos: -24.5,21.5 - parent: 1 - type: Transform -- uid: 12180 - type: CableApcExtension - components: - - pos: -24.5,20.5 - parent: 1 - type: Transform -- uid: 12181 - type: CableApcExtension - components: - - pos: -24.5,19.5 - parent: 1 - type: Transform -- uid: 12182 - type: CableApcExtension - components: - - pos: -20.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12183 - type: CableApcExtension - components: - - pos: -21.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12184 - type: CableApcExtension - components: - - pos: -22.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12185 - type: CableApcExtension - components: - - pos: -23.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12186 - type: CableApcExtension - components: - - pos: -23.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12187 - type: CableApcExtension - components: - - pos: -23.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12188 - type: CableApcExtension - components: - - pos: -23.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12189 - type: CableApcExtension - components: - - pos: -23.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12190 - type: CableApcExtension - components: - - pos: -23.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12191 - type: CableApcExtension - components: - - pos: -23.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12192 - type: CableApcExtension - components: - - pos: -23.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12193 - type: CableApcExtension - components: - - pos: -23.5,35.5 - parent: 1 - type: Transform -- uid: 12194 - type: CableApcExtension - components: - - pos: -23.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12195 - type: CableApcExtension - components: - - pos: -23.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12196 - type: CableApcExtension - components: - - pos: -24.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12197 - type: CableApcExtension - components: - - pos: -25.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12198 - type: CableApcExtension - components: - - pos: -26.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12199 - type: CableApcExtension - components: - - pos: -27.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12200 - type: CableApcExtension - components: - - pos: -27.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12201 - type: CableApcExtension - components: - - pos: -27.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12202 - type: CableApcExtension - components: - - pos: -27.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12203 - type: CableApcExtension - components: - - pos: -27.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12204 - type: CableApcExtension - components: - - pos: -27.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12205 - type: CableApcExtension - components: - - pos: -27.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12206 - type: CableApcExtension - components: - - pos: -27.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12207 - type: CableApcExtension - components: - - pos: -27.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12208 - type: CableApcExtension - components: - - pos: -26.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12209 - type: CableApcExtension - components: - - pos: -25.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12210 - type: CableApcExtension - components: - - pos: -28.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12211 - type: CableApcExtension - components: - - pos: -25.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12212 - type: CableApcExtension - components: - - pos: -26.5,32.5 - parent: 1 - type: Transform -- uid: 12213 - type: CableApcExtension - components: - - pos: -27.5,32.5 - parent: 1 - type: Transform -- uid: 12214 - type: CableApcExtension - components: - - pos: -28.5,32.5 - parent: 1 - type: Transform -- uid: 12215 - type: CableApcExtension - components: - - pos: -28.5,33.5 - parent: 1 - type: Transform -- uid: 12216 - type: CableApcExtension - components: - - pos: -29.5,33.5 - parent: 1 - type: Transform -- uid: 12217 - type: CableApcExtension - components: - - pos: -30.5,33.5 - parent: 1 - type: Transform -- uid: 12218 - type: CableApcExtension - components: - - pos: -30.5,32.5 - parent: 1 - type: Transform -- uid: 12219 - type: CableApcExtension - components: - - pos: -30.5,31.5 - parent: 1 - type: Transform -- uid: 12220 - type: CableApcExtension - components: - - pos: -30.5,30.5 - parent: 1 - type: Transform -- uid: 12221 - type: CableApcExtension - components: - - pos: -30.5,29.5 - parent: 1 - type: Transform -- uid: 12222 - type: CableApcExtension - components: - - pos: -30.5,28.5 - parent: 1 - type: Transform -- uid: 12223 - type: CableApcExtension - components: - - pos: -30.5,27.5 - parent: 1 - type: Transform -- uid: 12224 - type: CableApcExtension - components: - - pos: -30.5,26.5 - parent: 1 - type: Transform -- uid: 12225 - type: CableApcExtension - components: - - pos: -30.5,25.5 - parent: 1 - type: Transform -- uid: 12226 - type: CableApcExtension - components: - - pos: -30.5,24.5 - parent: 1 - type: Transform -- uid: 12227 - type: CableApcExtension - components: - - pos: -30.5,23.5 - parent: 1 - type: Transform -- uid: 12228 - type: CableApcExtension - components: - - pos: -30.5,22.5 - parent: 1 - type: Transform -- uid: 12229 - type: CableApcExtension - components: - - pos: -30.5,21.5 - parent: 1 - type: Transform -- uid: 12230 - type: CableApcExtension - components: - - pos: -30.5,20.5 - parent: 1 - type: Transform -- uid: 12231 - type: CableApcExtension - components: - - pos: -30.5,19.5 - parent: 1 - type: Transform -- uid: 12232 - type: CableApcExtension - components: - - pos: -30.5,18.5 - parent: 1 - type: Transform -- uid: 12233 - type: CableApcExtension - components: - - pos: -30.5,17.5 - parent: 1 - type: Transform -- uid: 12234 - type: CableApcExtension - components: - - pos: -27.5,31.5 - parent: 1 - type: Transform -- uid: 12235 - type: CableApcExtension - components: - - pos: -27.5,30.5 - parent: 1 - type: Transform -- uid: 12236 - type: CableMV - components: - - pos: -21.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12237 - type: CableMV - components: - - pos: -22.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12238 - type: CableMV - components: - - pos: -23.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12239 - type: CableMV - components: - - pos: -23.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12240 - type: CableMV - components: - - pos: -23.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12241 - type: CableMV - components: - - pos: -23.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12242 - type: CableMV - components: - - pos: -23.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12243 - type: CableMV - components: - - pos: -23.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12244 - type: CableMV - components: - - pos: -24.5,32.5 - parent: 1 - type: Transform -- uid: 12245 - type: CableMV - components: - - pos: -25.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12246 - type: CableApcExtension - components: - - pos: -8.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12247 - type: CableApcExtension - components: - - pos: -7.5,23.5 - parent: 1 - type: Transform -- uid: 12248 - type: CableApcExtension - components: - - pos: -6.5,23.5 - parent: 1 - type: Transform -- uid: 12249 - type: CableApcExtension - components: - - pos: -5.5,23.5 - parent: 1 - type: Transform -- uid: 12250 - type: CableApcExtension - components: - - pos: -4.5,23.5 - parent: 1 - type: Transform -- uid: 12251 - type: CableApcExtension - components: - - pos: -3.5,23.5 - parent: 1 - type: Transform -- uid: 12252 - type: CableApcExtension - components: - - pos: -5.5,22.5 - parent: 1 - type: Transform -- uid: 12253 - type: CableApcExtension - components: - - pos: -5.5,21.5 - parent: 1 - type: Transform -- uid: 12254 - type: CableApcExtension - components: - - pos: -5.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12255 - type: CableApcExtension - components: - - pos: -5.5,19.5 - parent: 1 - type: Transform -- uid: 12256 - type: CableApcExtension - components: - - pos: -5.5,18.5 - parent: 1 - type: Transform -- uid: 12257 - type: CableApcExtension - components: - - pos: -5.5,17.5 - parent: 1 - type: Transform -- uid: 12258 - type: CableApcExtension - components: - - pos: -4.5,19.5 - parent: 1 - type: Transform -- uid: 12259 - type: CableApcExtension - components: - - pos: -3.5,19.5 - parent: 1 - type: Transform -- uid: 12260 - type: CableApcExtension - components: - - pos: -2.5,19.5 - parent: 1 - type: Transform -- uid: 12261 - type: CableApcExtension - components: - - pos: -1.5,19.5 - parent: 1 - type: Transform -- uid: 12262 - type: CableApcExtension - components: - - pos: -1.5,20.5 - parent: 1 - type: Transform -- uid: 12263 - type: CableApcExtension - components: - - pos: -1.5,21.5 - parent: 1 - type: Transform -- uid: 12264 - type: CableApcExtension - components: - - pos: -1.5,22.5 - parent: 1 - type: Transform -- uid: 12265 - type: CableApcExtension - components: - - pos: -1.5,23.5 - parent: 1 - type: Transform -- uid: 12266 - type: CableApcExtension - components: - - pos: -1.5,24.5 - parent: 1 - type: Transform -- uid: 12267 - type: CableApcExtension - components: - - pos: -1.5,25.5 - parent: 1 - type: Transform -- uid: 12268 - type: CableApcExtension - components: - - pos: -1.5,26.5 - parent: 1 - type: Transform -- uid: 12269 - type: CableApcExtension - components: - - pos: -1.5,27.5 - parent: 1 - type: Transform -- uid: 12270 - type: CableApcExtension - components: - - pos: -1.5,28.5 - parent: 1 - type: Transform -- uid: 12271 - type: CableApcExtension - components: - - pos: -1.5,29.5 - parent: 1 - type: Transform -- uid: 12272 - type: CableApcExtension - components: - - pos: -1.5,30.5 - parent: 1 - type: Transform -- uid: 12273 - type: CableApcExtension - components: - - pos: -1.5,31.5 - parent: 1 - type: Transform -- uid: 12274 - type: CableApcExtension - components: - - pos: -1.5,32.5 - parent: 1 - type: Transform -- uid: 12275 - type: CableApcExtension - components: - - pos: -1.5,33.5 - parent: 1 - type: Transform -- uid: 12276 - type: CableApcExtension - components: - - pos: -1.5,34.5 - parent: 1 - type: Transform -- uid: 12277 - type: CableApcExtension - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform -- uid: 12278 - type: CableApcExtension - components: - - pos: -5.5,15.5 - parent: 1 - type: Transform -- uid: 12279 - type: CableApcExtension - components: - - pos: -6.5,15.5 - parent: 1 - type: Transform -- uid: 12280 - type: CableApcExtension - components: - - pos: -7.5,15.5 - parent: 1 - type: Transform -- uid: 12281 - type: CableApcExtension - components: - - pos: -8.5,15.5 - parent: 1 - type: Transform -- uid: 12282 - type: CableApcExtension - components: - - pos: -9.5,15.5 - parent: 1 - type: Transform -- uid: 12283 - type: CableApcExtension - components: - - pos: -10.5,15.5 - parent: 1 - type: Transform -- uid: 12284 - type: CableApcExtension - components: - - pos: -11.5,15.5 - parent: 1 - type: Transform -- uid: 12285 - type: CableApcExtension - components: - - pos: -12.5,15.5 - parent: 1 - type: Transform -- uid: 12286 - type: CableApcExtension - components: - - pos: -4.5,15.5 - parent: 1 - type: Transform -- uid: 12287 - type: CableApcExtension - components: - - pos: -3.5,15.5 - parent: 1 - type: Transform -- uid: 12288 - type: CableApcExtension - components: - - pos: -2.5,15.5 - parent: 1 - type: Transform -- uid: 12289 - type: CableApcExtension - components: - - pos: -1.5,15.5 - parent: 1 - type: Transform -- uid: 12290 - type: CableMV - components: - - pos: -23.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12291 - type: CableMV - components: - - pos: -23.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12292 - type: CableMV - components: - - pos: -23.5,35.5 - parent: 1 - type: Transform -- uid: 12293 - type: CableMV - components: - - pos: -23.5,36.5 - parent: 1 - type: Transform -- uid: 12294 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12295 - type: CableMV - components: - - pos: -25.5,36.5 - parent: 1 - type: Transform -- uid: 12296 - type: CableMV - components: - - pos: -26.5,36.5 - parent: 1 - type: Transform -- uid: 12297 - type: CableMV - components: - - pos: -27.5,36.5 - parent: 1 - type: Transform -- uid: 12298 - type: CableMV - components: - - pos: -28.5,36.5 - parent: 1 - type: Transform -- uid: 12299 - type: CableMV - components: - - pos: -29.5,36.5 - parent: 1 - type: Transform -- uid: 12300 - type: CableMV - components: - - pos: -30.5,36.5 - parent: 1 - type: Transform -- uid: 12301 - type: CableMV - components: - - pos: -31.5,36.5 - parent: 1 - type: Transform -- uid: 12302 - type: CableMV - components: - - pos: -32.5,36.5 - parent: 1 - type: Transform -- uid: 12303 - type: CableMV - components: - - pos: -33.5,36.5 - parent: 1 - type: Transform -- uid: 12304 - type: CableMV - components: - - pos: -34.5,36.5 - parent: 1 - type: Transform -- uid: 12305 - type: CableMV - components: - - pos: -35.5,36.5 - parent: 1 - type: Transform -- uid: 12306 - type: CableMV - components: - - pos: -36.5,36.5 - parent: 1 - type: Transform -- uid: 12307 - type: CableMV - components: - - pos: -37.5,36.5 - parent: 1 - type: Transform -- uid: 12308 - type: CableMV - components: - - pos: -38.5,36.5 - parent: 1 - type: Transform -- uid: 12309 - type: CableMV - components: - - pos: -38.5,35.5 - parent: 1 - type: Transform -- uid: 12310 - type: CableMV - components: - - pos: -38.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12311 - type: CableMV - components: - - pos: -38.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12312 - type: CableMV - components: - - pos: -37.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12313 - type: CableMV - components: - - pos: -36.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12314 - type: CableMV - components: - - pos: -35.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12315 - type: CableMV - components: - - pos: -34.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12316 - type: CableMV - components: - - pos: -34.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12317 - type: CableMV - components: - - pos: -34.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12318 - type: CableMV - components: - - pos: -34.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12319 - type: CableMV - components: - - pos: -34.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12320 - type: CableMV - components: - - pos: -34.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12321 - type: CableMV - components: - - pos: -34.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12322 - type: CableMV - components: - - pos: -34.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12323 - type: CableMV - components: - - pos: -34.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12324 - type: CableMV - components: - - pos: -35.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12325 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -35.5,25.5 - parent: 1 - type: Transform -- uid: 12326 - type: CableApcExtension - components: - - pos: -35.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12327 - type: CableApcExtension - components: - - pos: -36.5,25.5 - parent: 1 - type: Transform -- uid: 12328 - type: CableApcExtension - components: - - pos: -37.5,25.5 - parent: 1 - type: Transform -- uid: 12329 - type: CableApcExtension - components: - - pos: -38.5,25.5 - parent: 1 - type: Transform -- uid: 12330 - type: CableApcExtension - components: - - pos: -39.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12331 - type: CableApcExtension - components: - - pos: -40.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12332 - type: CableApcExtension - components: - - pos: -41.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12333 - type: CableApcExtension - components: - - pos: -42.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12334 - type: CableApcExtension - components: - - pos: -43.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12335 - type: CableApcExtension - components: - - pos: -44.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12336 - type: CableApcExtension - components: - - pos: -45.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12337 - type: CableApcExtension - components: - - pos: -38.5,26.5 - parent: 1 - type: Transform -- uid: 12338 - type: CableApcExtension - components: - - pos: -38.5,27.5 - parent: 1 - type: Transform -- uid: 12339 - type: CableApcExtension - components: - - pos: -38.5,28.5 - parent: 1 - type: Transform -- uid: 12340 - type: CableApcExtension - components: - - pos: -38.5,29.5 - parent: 1 - type: Transform -- uid: 12341 - type: CableApcExtension - components: - - pos: -38.5,30.5 - parent: 1 - type: Transform -- uid: 12342 - type: CableApcExtension - components: - - pos: -38.5,24.5 - parent: 1 - type: Transform -- uid: 12343 - type: CableApcExtension - components: - - pos: -38.5,23.5 - parent: 1 - type: Transform -- uid: 12344 - type: CableApcExtension - components: - - pos: -38.5,22.5 - parent: 1 - type: Transform -- uid: 12345 - type: CableApcExtension - components: - - pos: -38.5,21.5 - parent: 1 - type: Transform -- uid: 12346 - type: CableApcExtension - components: - - pos: -38.5,20.5 - parent: 1 - type: Transform -- uid: 12347 - type: CableApcExtension - components: - - pos: -38.5,19.5 - parent: 1 - type: Transform -- uid: 12348 - type: CableApcExtension - components: - - pos: -38.5,18.5 - parent: 1 - type: Transform -- uid: 12349 - type: CableApcExtension - components: - - pos: -38.5,17.5 - parent: 1 - type: Transform -- uid: 12350 - type: CableApcExtension - components: - - pos: -37.5,17.5 - parent: 1 - type: Transform -- uid: 12351 - type: CableApcExtension - components: - - pos: -37.5,16.5 - parent: 1 - type: Transform -- uid: 12352 - type: CableApcExtension - components: - - pos: -37.5,15.5 - parent: 1 - type: Transform -- uid: 12353 - type: CableApcExtension - components: - - pos: -38.5,15.5 - parent: 1 - type: Transform -- uid: 12354 - type: CableApcExtension - components: - - pos: -39.5,15.5 - parent: 1 - type: Transform -- uid: 12355 - type: CableApcExtension - components: - - pos: -40.5,15.5 - parent: 1 - type: Transform -- uid: 12356 - type: CableApcExtension - components: - - pos: -41.5,15.5 - parent: 1 - type: Transform -- uid: 12357 - type: CableApcExtension - components: - - pos: -42.5,15.5 - parent: 1 - type: Transform -- uid: 12358 - type: CableApcExtension - components: - - pos: -43.5,15.5 - parent: 1 - type: Transform -- uid: 12359 - type: CableApcExtension - components: - - pos: -44.5,15.5 - parent: 1 - type: Transform -- uid: 12360 - type: CableApcExtension - components: - - pos: -45.5,15.5 - parent: 1 - type: Transform -- uid: 12361 - type: CableApcExtension - components: - - pos: -46.5,15.5 - parent: 1 - type: Transform -- uid: 12362 - type: CableApcExtension - components: - - pos: -47.5,15.5 - parent: 1 - type: Transform -- uid: 12363 - type: CableApcExtension - components: - - pos: -48.5,15.5 - parent: 1 - type: Transform -- uid: 12364 - type: CableApcExtension - components: - - pos: -49.5,15.5 - parent: 1 - type: Transform -- uid: 12365 - type: CableApcExtension - components: - - pos: -50.5,15.5 - parent: 1 - type: Transform -- uid: 12366 - type: CableApcExtension - components: - - pos: -52.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12367 - type: CableApcExtension - components: - - pos: -51.5,15.5 - parent: 1 - type: Transform -- uid: 12368 - type: CableApcExtension - components: - - pos: -49.5,16.5 - parent: 1 - type: Transform -- uid: 12369 - type: CableApcExtension - components: - - pos: -49.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12370 - type: CableApcExtension - components: - - pos: -47.5,16.5 - parent: 1 - type: Transform -- uid: 12371 - type: CableApcExtension - components: - - pos: -47.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12372 - type: CableApcExtension - components: - - pos: -49.5,14.5 - parent: 1 - type: Transform -- uid: 12373 - type: CableApcExtension - components: - - pos: -49.5,13.5 - parent: 1 - type: Transform -- uid: 12374 - type: CableApcExtension - components: - - pos: -50.5,13.5 - parent: 1 - type: Transform -- uid: 12375 - type: CableApcExtension - components: - - pos: -51.5,13.5 - parent: 1 - type: Transform -- uid: 12376 - type: CableApcExtension - components: - - pos: -52.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12377 - type: CableApcExtension - components: - - pos: -36.5,15.5 - parent: 1 - type: Transform -- uid: 12378 - type: CableApcExtension - components: - - pos: -35.5,15.5 - parent: 1 - type: Transform -- uid: 12379 - type: CableApcExtension - components: - - pos: -35.5,16.5 - parent: 1 - type: Transform -- uid: 12380 - type: CableApcExtension - components: - - pos: -35.5,17.5 - parent: 1 - type: Transform -- uid: 12381 - type: CableApcExtension - components: - - pos: -35.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12382 - type: CableApcExtension - components: - - pos: -35.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12383 - type: CableApcExtension - components: - - pos: -35.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12384 - type: CableApcExtension - components: - - pos: -35.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12385 - type: CableApcExtension - components: - - pos: -34.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12386 - type: CableApcExtension - components: - - pos: -34.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12387 - type: CableApcExtension - components: - - pos: -34.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12388 - type: CableApcExtension - components: - - pos: -34.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12389 - type: CableApcExtension - components: - - pos: -34.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12390 - type: CableApcExtension - components: - - pos: -34.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12391 - type: CableApcExtension - components: - - pos: -34.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12392 - type: CableApcExtension - components: - - pos: -34.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12393 - type: CableApcExtension - components: - - pos: -34.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12394 - type: CableApcExtension - components: - - pos: -34.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12395 - type: CableApcExtension - components: - - pos: -34.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12396 - type: CableApcExtension - components: - - pos: -34.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12397 - type: CableApcExtension - components: - - pos: -34.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12398 - type: CableApcExtension - components: - - pos: -35.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12399 - type: CableApcExtension - components: - - pos: -36.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12400 - type: CableApcExtension - components: - - pos: -37.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12401 - type: CableApcExtension - components: - - pos: -38.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12402 - type: CableApcExtension - components: - - pos: -38.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12403 - type: AirlockEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -20.5,28.5 - parent: 1 - type: Transform -- uid: 12404 - type: AirlockChiefEngineerLocked - components: - - rot: -1.5707963267948966 rad - pos: -3.5,71.5 - parent: 1 - type: Transform -- uid: 12405 - type: APCBasic - components: - - pos: 10.5,62.5 - parent: 1 - type: Transform -- uid: 12406 - type: APCBasic - components: - - pos: 27.5,51.5 - parent: 1 - type: Transform -- uid: 12407 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 24.5,42.5 - parent: 1 - type: Transform -- uid: 12408 - type: APCBasic - components: - - pos: 41.5,41.5 - parent: 1 - type: Transform -- uid: 12409 - type: CableMV - components: - - pos: 20.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12410 - type: CableMV - components: - - pos: 20.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12411 - type: CableMV - components: - - pos: 20.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12412 - type: CableMV - components: - - pos: 19.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12413 - type: CableMV - components: - - pos: 18.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12414 - type: CableMV - components: - - pos: 17.5,52.5 - parent: 1 - type: Transform -- uid: 12415 - type: CableMV - components: - - pos: 16.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12416 - type: CableMV - components: - - pos: 16.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12417 - type: CableMV - components: - - pos: 16.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12418 - type: CableMV - components: - - pos: 16.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12419 - type: CableMV - components: - - pos: 16.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12420 - type: CableMV - components: - - pos: 17.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12421 - type: CableMV - components: - - pos: 18.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12422 - type: CableMV - components: - - pos: 19.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12423 - type: CableMV - components: - - pos: 19.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12424 - type: CableMV - components: - - pos: 19.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12425 - type: CableMV - components: - - pos: 18.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12426 - type: CableMV - components: - - pos: 18.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12427 - type: CableMV - components: - - pos: 18.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12428 - type: CableMV - components: - - pos: 18.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12429 - type: CableMV - components: - - pos: 18.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12430 - type: CableMV - components: - - pos: 18.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12431 - type: CableMV - components: - - pos: 17.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12432 - type: CableMV - components: - - pos: 16.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12433 - type: CableMV - components: - - pos: 15.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12434 - type: CableMV - components: - - pos: 14.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12435 - type: CableMV - components: - - pos: 13.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12436 - type: CableMV - components: - - pos: 12.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12437 - type: CableMV - components: - - pos: 11.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12438 - type: CableMV - components: - - pos: 10.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12439 - type: CableMV - components: - - pos: 10.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12440 - type: CableMV - components: - - pos: 16.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12441 - type: CableMV - components: - - pos: 16.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12442 - type: CableMV - components: - - pos: 16.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12443 - type: CableMV - components: - - pos: 17.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12444 - type: CableMV - components: - - pos: 18.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12445 - type: CableMV - components: - - pos: 19.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12446 - type: CableMV - components: - - pos: 20.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12447 - type: CableMV - components: - - pos: 21.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12448 - type: CableMV - components: - - pos: 22.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12449 - type: CableMV - components: - - pos: 22.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12450 - type: CableMV - components: - - pos: 22.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12451 - type: CableMV - components: - - pos: 22.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12452 - type: CableMV - components: - - pos: 22.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12453 - type: CableMV - components: - - pos: 23.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12454 - type: CableMV - components: - - pos: 24.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12455 - type: CableMV - components: - - pos: 25.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12456 - type: CableMV - components: - - pos: 25.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12457 - type: CableMV - components: - - pos: 25.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12458 - type: CableMV - components: - - pos: 25.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12459 - type: CableMV - components: - - pos: 24.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12460 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 6.5,46.5 - parent: 1 - type: Transform -- uid: 12461 - type: CableMV - components: - - pos: 6.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12462 - type: CableMV - components: - - pos: 5.5,46.5 - parent: 1 - type: Transform -- uid: 12463 - type: CableMV - components: - - pos: 4.5,46.5 - parent: 1 - type: Transform -- uid: 12464 - type: CableMV - components: - - pos: 3.5,46.5 - parent: 1 - type: Transform -- uid: 12465 - type: CableMV - components: - - pos: 2.5,46.5 - parent: 1 - type: Transform -- uid: 12466 - type: CableMV - components: - - pos: 1.5,46.5 - parent: 1 - type: Transform -- uid: 12467 - type: CableMV - components: - - pos: 0.5,46.5 - parent: 1 - type: Transform -- uid: 12468 - type: CableMV - components: - - pos: 0.5,47.5 - parent: 1 - type: Transform -- uid: 12469 - type: CableMV - components: - - pos: 0.5,48.5 - parent: 1 - type: Transform -- uid: 12470 - type: CableMV - components: - - pos: 0.5,49.5 - parent: 1 - type: Transform -- uid: 12471 - type: CableMV - components: - - pos: 0.5,50.5 - parent: 1 - type: Transform -- uid: 12472 - type: CableMV - components: - - pos: 0.5,51.5 - parent: 1 - type: Transform -- uid: 12473 - type: CableMV - components: - - pos: 0.5,52.5 - parent: 1 - type: Transform -- uid: 12474 - type: CableMV - components: - - pos: 0.5,53.5 - parent: 1 - type: Transform -- uid: 12475 - type: CableMV - components: - - pos: 1.5,53.5 - parent: 1 - type: Transform -- uid: 12476 - type: CableMV - components: - - pos: 2.5,53.5 - parent: 1 - type: Transform -- uid: 12477 - type: CableMV - components: - - pos: 3.5,53.5 - parent: 1 - type: Transform -- uid: 12478 - type: CableMV - components: - - pos: 4.5,53.5 - parent: 1 - type: Transform -- uid: 12479 - type: CableMV - components: - - pos: 5.5,53.5 - parent: 1 - type: Transform -- uid: 12480 - type: CableMV - components: - - pos: 6.5,53.5 - parent: 1 - type: Transform -- uid: 12481 - type: CableMV - components: - - pos: 7.5,53.5 - parent: 1 - type: Transform -- uid: 12482 - type: CableMV - components: - - pos: 8.5,53.5 - parent: 1 - type: Transform -- uid: 12483 - type: CableMV - components: - - pos: 9.5,53.5 - parent: 1 - type: Transform -- uid: 12484 - type: CableMV - components: - - pos: 10.5,53.5 - parent: 1 - type: Transform -- uid: 12485 - type: CableMV - components: - - pos: 11.5,53.5 - parent: 1 - type: Transform -- uid: 12486 - type: CableMV - components: - - pos: 12.5,53.5 - parent: 1 - type: Transform -- uid: 12487 - type: CableMV - components: - - pos: 13.5,53.5 - parent: 1 - type: Transform -- uid: 12488 - type: CableMV - components: - - pos: 14.5,53.5 - parent: 1 - type: Transform -- uid: 12489 - type: CableMV - components: - - pos: 5.5,47.5 - parent: 1 - type: Transform -- uid: 12490 - type: CableMV - components: - - pos: 5.5,48.5 - parent: 1 - type: Transform -- uid: 12491 - type: CableMV - components: - - pos: 5.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12492 - type: CableMV - components: - - pos: 14.5,54.5 - parent: 1 - type: Transform -- uid: 12493 - type: CableMV - components: - - pos: 14.5,55.5 - parent: 1 - type: Transform -- uid: 12494 - type: CableMV - components: - - pos: 14.5,56.5 - parent: 1 - type: Transform -- uid: 12495 - type: CableMV - components: - - pos: 14.5,57.5 - parent: 1 - type: Transform -- uid: 12496 - type: CableMV - components: - - pos: 14.5,58.5 - parent: 1 - type: Transform -- uid: 12497 - type: CableMV - components: - - pos: 15.5,58.5 - parent: 1 - type: Transform -- uid: 12498 - type: CableMV - components: - - pos: 16.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12499 - type: CableMV - components: - - pos: 17.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12500 - type: CableMV - components: - - pos: 20.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12501 - type: CableMV - components: - - pos: 21.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12502 - type: CableMV - components: - - pos: 22.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12503 - type: CableMV - components: - - pos: 22.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12504 - type: CableMV - components: - - pos: 23.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12505 - type: CableMV - components: - - pos: 24.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12506 - type: CableMV - components: - - pos: 25.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12507 - type: CableMV - components: - - pos: 26.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12508 - type: CableMV - components: - - pos: 27.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12509 - type: CableMV - components: - - pos: 28.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12510 - type: CableMV - components: - - pos: 28.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12511 - type: CableMV - components: - - pos: 28.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12512 - type: CableMV - components: - - pos: 28.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12513 - type: CableMV - components: - - pos: 28.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12514 - type: CableMV - components: - - pos: 28.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12515 - type: CableMV - components: - - pos: 28.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12516 - type: CableMV - components: - - pos: 27.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12517 - type: CableMV - components: - - pos: 29.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12518 - type: CableMV - components: - - pos: 29.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12519 - type: CableMV - components: - - pos: 30.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12520 - type: CableMV - components: - - pos: 31.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12521 - type: CableMV - components: - - pos: 32.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12522 - type: CableMV - components: - - pos: 33.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12523 - type: CableMV - components: - - pos: 34.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12524 - type: CableMV - components: - - pos: 35.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12525 - type: CableMV - components: - - pos: 36.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12526 - type: CableMV - components: - - pos: 36.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12527 - type: CableMV - components: - - pos: 36.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12528 - type: CableMV - components: - - pos: 36.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12529 - type: CableMV - components: - - pos: 36.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12530 - type: CableMV - components: - - pos: 36.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12531 - type: CableMV - components: - - pos: 36.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12532 - type: CableMV - components: - - pos: 36.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12533 - type: CableMV - components: - - pos: 36.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12534 - type: CableMV - components: - - pos: 36.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12535 - type: CableMV - components: - - pos: 36.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12536 - type: CableMV - components: - - pos: 36.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12537 - type: CableMV - components: - - pos: 37.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12538 - type: CableMV - components: - - pos: 38.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12539 - type: CableMV - components: - - pos: 39.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12540 - type: CableMV - components: - - pos: 40.5,40.5 - parent: 1 - type: Transform -- uid: 12541 - type: CableMV - components: - - pos: 41.5,40.5 - parent: 1 - type: Transform -- uid: 12542 - type: CableMV - components: - - pos: 41.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12543 - type: CableApcExtension - components: - - pos: 41.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12544 - type: CableApcExtension - components: - - pos: 41.5,42.5 - parent: 1 - type: Transform -- uid: 12545 - type: CableApcExtension - components: - - pos: 41.5,43.5 - parent: 1 - type: Transform -- uid: 12546 - type: CableApcExtension - components: - - pos: 41.5,44.5 - parent: 1 - type: Transform -- uid: 12547 - type: CableApcExtension - components: - - pos: 42.5,44.5 - parent: 1 - type: Transform -- uid: 12548 - type: CableApcExtension - components: - - pos: 43.5,44.5 - parent: 1 - type: Transform -- uid: 12549 - type: CableApcExtension - components: - - pos: 44.5,44.5 - parent: 1 - type: Transform -- uid: 12550 - type: CableApcExtension - components: - - pos: 44.5,43.5 - parent: 1 - type: Transform -- uid: 12551 - type: CableApcExtension - components: - - pos: 45.5,43.5 - parent: 1 - type: Transform -- uid: 12552 - type: CableApcExtension - components: - - pos: 46.5,43.5 - parent: 1 - type: Transform -- uid: 12553 - type: CableApcExtension - components: - - pos: 47.5,43.5 - parent: 1 - type: Transform -- uid: 12554 - type: CableApcExtension - components: - - pos: 48.5,43.5 - parent: 1 - type: Transform -- uid: 12555 - type: CableApcExtension - components: - - pos: 48.5,42.5 - parent: 1 - type: Transform -- uid: 12556 - type: CableApcExtension - components: - - pos: 48.5,41.5 - parent: 1 - type: Transform -- uid: 12557 - type: CableApcExtension - components: - - pos: 48.5,40.5 - parent: 1 - type: Transform -- uid: 12558 - type: CableApcExtension - components: - - pos: 48.5,39.5 - parent: 1 - type: Transform -- uid: 12559 - type: CableApcExtension - components: - - pos: 48.5,38.5 - parent: 1 - type: Transform -- uid: 12560 - type: CableApcExtension - components: - - pos: 48.5,37.5 - parent: 1 - type: Transform -- uid: 12561 - type: CableApcExtension - components: - - pos: 48.5,36.5 - parent: 1 - type: Transform -- uid: 12562 - type: CableApcExtension - components: - - pos: 48.5,35.5 - parent: 1 - type: Transform -- uid: 12563 - type: CableApcExtension - components: - - pos: 48.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12564 - type: CableApcExtension - components: - - pos: 47.5,36.5 - parent: 1 - type: Transform -- uid: 12565 - type: CableApcExtension - components: - - pos: 46.5,36.5 - parent: 1 - type: Transform -- uid: 12566 - type: CableApcExtension - components: - - pos: 45.5,36.5 - parent: 1 - type: Transform -- uid: 12567 - type: CableApcExtension - components: - - pos: 44.5,36.5 - parent: 1 - type: Transform -- uid: 12568 - type: CableApcExtension - components: - - pos: 43.5,36.5 - parent: 1 - type: Transform -- uid: 12569 - type: CableApcExtension - components: - - pos: 42.5,36.5 - parent: 1 - type: Transform -- uid: 12570 - type: CableApcExtension - components: - - pos: 41.5,36.5 - parent: 1 - type: Transform -- uid: 12571 - type: CableApcExtension - components: - - pos: 40.5,36.5 - parent: 1 - type: Transform -- uid: 12572 - type: CableApcExtension - components: - - pos: 39.5,36.5 - parent: 1 - type: Transform -- uid: 12573 - type: CableApcExtension - components: - - pos: 38.5,36.5 - parent: 1 - type: Transform -- uid: 12574 - type: CableApcExtension - components: - - pos: 37.5,36.5 - parent: 1 - type: Transform -- uid: 12575 - type: CableApcExtension - components: - - pos: 36.5,36.5 - parent: 1 - type: Transform -- uid: 12576 - type: CableApcExtension - components: - - pos: 35.5,36.5 - parent: 1 - type: Transform -- uid: 12577 - type: CableApcExtension - components: - - pos: 34.5,36.5 - parent: 1 - type: Transform -- uid: 12578 - type: CableApcExtension - components: - - pos: 34.5,37.5 - parent: 1 - type: Transform -- uid: 12579 - type: CableApcExtension - components: - - pos: 34.5,38.5 - parent: 1 - type: Transform -- uid: 12580 - type: CableApcExtension - components: - - pos: 34.5,39.5 - parent: 1 - type: Transform -- uid: 12581 - type: CableApcExtension - components: - - pos: 34.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12582 - type: CableApcExtension - components: - - pos: 35.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12583 - type: CableApcExtension - components: - - pos: 36.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12584 - type: CableApcExtension - components: - - pos: 37.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12585 - type: CableApcExtension - components: - - pos: 38.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12586 - type: CableApcExtension - components: - - pos: 39.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12587 - type: CableApcExtension - components: - - pos: 39.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12588 - type: CableApcExtension - components: - - pos: 39.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12589 - type: CableApcExtension - components: - - pos: 39.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12590 - type: CableApcExtension - components: - - pos: 39.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12591 - type: CableApcExtension - components: - - pos: 40.5,43.5 - parent: 1 - type: Transform -- uid: 12592 - type: CableApcExtension - components: - - pos: 38.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12593 - type: CableApcExtension - components: - - pos: 38.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12594 - type: CableApcExtension - components: - - pos: 38.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12595 - type: CableApcExtension - components: - - pos: 38.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12596 - type: CableApcExtension - components: - - pos: 38.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12597 - type: CableApcExtension - components: - - pos: 39.5,48.5 - parent: 1 - type: Transform -- uid: 12598 - type: CableApcExtension - components: - - pos: 40.5,48.5 - parent: 1 - type: Transform -- uid: 12599 - type: CableApcExtension - components: - - pos: 41.5,48.5 - parent: 1 - type: Transform -- uid: 12600 - type: CableApcExtension - components: - - pos: 42.5,48.5 - parent: 1 - type: Transform -- uid: 12601 - type: CableApcExtension - components: - - pos: 43.5,48.5 - parent: 1 - type: Transform -- uid: 12602 - type: CableApcExtension - components: - - pos: 42.5,49.5 - parent: 1 - type: Transform -- uid: 12603 - type: CableApcExtension - components: - - pos: 42.5,50.5 - parent: 1 - type: Transform -- uid: 12604 - type: CableApcExtension - components: - - pos: 42.5,51.5 - parent: 1 - type: Transform -- uid: 12605 - type: CableApcExtension - components: - - pos: 43.5,47.5 - parent: 1 - type: Transform -- uid: 12606 - type: CableApcExtension - components: - - pos: 43.5,46.5 - parent: 1 - type: Transform -- uid: 12607 - type: CableApcExtension - components: - - pos: 44.5,46.5 - parent: 1 - type: Transform -- uid: 12608 - type: CableApcExtension - components: - - pos: 45.5,46.5 - parent: 1 - type: Transform -- uid: 12609 - type: CableApcExtension - components: - - pos: 43.5,37.5 - parent: 1 - type: Transform -- uid: 12610 - type: CableApcExtension - components: - - pos: 43.5,38.5 - parent: 1 - type: Transform -- uid: 12611 - type: CableApcExtension - components: - - pos: 43.5,39.5 - parent: 1 - type: Transform -- uid: 12612 - type: CableApcExtension - components: - - pos: 43.5,40.5 - parent: 1 - type: Transform -- uid: 12613 - type: CableApcExtension - components: - - pos: 43.5,41.5 - parent: 1 - type: Transform -- uid: 12614 - type: CableApcExtension - components: - - pos: 43.5,42.5 - parent: 1 - type: Transform -- uid: 12615 - type: CableApcExtension - components: - - pos: 43.5,43.5 - parent: 1 - type: Transform -- uid: 12616 - type: CableApcExtension - components: - - pos: 46.5,35.5 - parent: 1 - type: Transform -- uid: 12617 - type: CableApcExtension - components: - - pos: 46.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12618 - type: CableApcExtension - components: - - pos: 50.5,36.5 - parent: 1 - type: Transform -- uid: 12619 - type: CableApcExtension - components: - - pos: 51.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12620 - type: CableApcExtension - components: - - pos: 51.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12621 - type: CableApcExtension - components: - - pos: 50.5,38.5 - parent: 1 - type: Transform -- uid: 12622 - type: CableApcExtension - components: - - pos: 49.5,38.5 - parent: 1 - type: Transform -- uid: 12623 - type: CableApcExtension - components: - - pos: 49.5,36.5 - parent: 1 - type: Transform -- uid: 12624 - type: CableApcExtension - components: - - pos: 27.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12625 - type: CableApcExtension - components: - - pos: 27.5,50.5 - parent: 1 - type: Transform -- uid: 12626 - type: CableApcExtension - components: - - pos: 27.5,49.5 - parent: 1 - type: Transform -- uid: 12627 - type: CableApcExtension - components: - - pos: 27.5,48.5 - parent: 1 - type: Transform -- uid: 12628 - type: CableApcExtension - components: - - pos: 27.5,47.5 - parent: 1 - type: Transform -- uid: 12629 - type: CableApcExtension - components: - - pos: 27.5,46.5 - parent: 1 - type: Transform -- uid: 12630 - type: CableApcExtension - components: - - pos: 27.5,45.5 - parent: 1 - type: Transform -- uid: 12631 - type: CableApcExtension - components: - - pos: 27.5,44.5 - parent: 1 - type: Transform -- uid: 12632 - type: CableApcExtension - components: - - pos: 27.5,43.5 - parent: 1 - type: Transform -- uid: 12633 - type: CableApcExtension - components: - - pos: 28.5,43.5 - parent: 1 - type: Transform -- uid: 12634 - type: CableApcExtension - components: - - pos: 29.5,43.5 - parent: 1 - type: Transform -- uid: 12635 - type: CableApcExtension - components: - - pos: 30.5,43.5 - parent: 1 - type: Transform -- uid: 12636 - type: CableApcExtension - components: - - pos: 31.5,43.5 - parent: 1 - type: Transform -- uid: 12637 - type: CableApcExtension - components: - - pos: 32.5,43.5 - parent: 1 - type: Transform -- uid: 12638 - type: CableApcExtension - components: - - pos: 33.5,43.5 - parent: 1 - type: Transform -- uid: 12639 - type: CableApcExtension - components: - - pos: 34.5,43.5 - parent: 1 - type: Transform -- uid: 12640 - type: CableApcExtension - components: - - pos: 34.5,44.5 - parent: 1 - type: Transform -- uid: 12641 - type: CableApcExtension - components: - - pos: 34.5,45.5 - parent: 1 - type: Transform -- uid: 12642 - type: CableApcExtension - components: - - pos: 34.5,46.5 - parent: 1 - type: Transform -- uid: 12643 - type: CableApcExtension - components: - - pos: 34.5,47.5 - parent: 1 - type: Transform -- uid: 12644 - type: CableApcExtension - components: - - pos: 34.5,48.5 - parent: 1 - type: Transform -- uid: 12645 - type: CableApcExtension - components: - - pos: 34.5,49.5 - parent: 1 - type: Transform -- uid: 12646 - type: CableApcExtension - components: - - pos: 33.5,49.5 - parent: 1 - type: Transform -- uid: 12647 - type: CableApcExtension - components: - - pos: 32.5,49.5 - parent: 1 - type: Transform -- uid: 12648 - type: CableApcExtension - components: - - pos: 31.5,49.5 - parent: 1 - type: Transform -- uid: 12649 - type: CableApcExtension - components: - - pos: 30.5,49.5 - parent: 1 - type: Transform -- uid: 12650 - type: CableApcExtension - components: - - pos: 29.5,49.5 - parent: 1 - type: Transform -- uid: 12651 - type: CableApcExtension - components: - - pos: 28.5,49.5 - parent: 1 - type: Transform -- uid: 12652 - type: CableApcExtension - components: - - pos: 31.5,50.5 - parent: 1 - type: Transform -- uid: 12653 - type: CableApcExtension - components: - - pos: 31.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12654 - type: CableApcExtension - components: - - pos: 32.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12655 - type: CableApcExtension - components: - - pos: 32.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12656 - type: CableApcExtension - components: - - pos: 32.5,53.5 - parent: 1 - type: Transform -- uid: 12657 - type: CableApcExtension - components: - - pos: 32.5,54.5 - parent: 1 - type: Transform -- uid: 12658 - type: CableApcExtension - components: - - pos: 32.5,55.5 - parent: 1 - type: Transform -- uid: 12659 - type: CableApcExtension - components: - - pos: 32.5,56.5 - parent: 1 - type: Transform -- uid: 12660 - type: CableApcExtension - components: - - pos: 31.5,55.5 - parent: 1 - type: Transform -- uid: 12661 - type: CableApcExtension - components: - - pos: 30.5,55.5 - parent: 1 - type: Transform -- uid: 12662 - type: CableApcExtension - components: - - pos: 33.5,55.5 - parent: 1 - type: Transform -- uid: 12663 - type: CableApcExtension - components: - - pos: 34.5,55.5 - parent: 1 - type: Transform -- uid: 12664 - type: CableApcExtension - components: - - pos: 33.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12665 - type: CableApcExtension - components: - - pos: 34.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12666 - type: CableApcExtension - components: - - pos: 35.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12667 - type: CableApcExtension - components: - - pos: 36.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12668 - type: CableApcExtension - components: - - pos: 36.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12669 - type: CableApcExtension - components: - - pos: 36.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12670 - type: CableApcExtension - components: - - pos: 36.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12671 - type: CableApcExtension - components: - - pos: 36.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12672 - type: CableApcExtension - components: - - pos: 36.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12673 - type: CableApcExtension - components: - - pos: 36.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12674 - type: CableApcExtension - components: - - pos: 36.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12675 - type: CableApcExtension - components: - - pos: 36.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12676 - type: CableApcExtension - components: - - pos: 36.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12677 - type: CableApcExtension - components: - - pos: 36.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12678 - type: CableApcExtension - components: - - pos: 36.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12679 - type: CableApcExtension - components: - - pos: 30.5,42.5 - parent: 1 - type: Transform -- uid: 12680 - type: CableApcExtension - components: - - pos: 30.5,41.5 - parent: 1 - type: Transform -- uid: 12681 - type: CableApcExtension - components: - - pos: 30.5,40.5 - parent: 1 - type: Transform -- uid: 12682 - type: CableApcExtension - components: - - pos: 30.5,39.5 - parent: 1 - type: Transform -- uid: 12683 - type: CableApcExtension - components: - - pos: 30.5,38.5 - parent: 1 - type: Transform -- uid: 12684 - type: CableApcExtension - components: - - pos: 29.5,38.5 - parent: 1 - type: Transform -- uid: 12685 - type: CableApcExtension - components: - - pos: 28.5,38.5 - parent: 1 - type: Transform -- uid: 12686 - type: CableApcExtension - components: - - pos: 27.5,38.5 - parent: 1 - type: Transform -- uid: 12687 - type: CableApcExtension - components: - - pos: 26.5,38.5 - parent: 1 - type: Transform -- uid: 12688 - type: CableApcExtension - components: - - pos: 25.5,38.5 - parent: 1 - type: Transform -- uid: 12689 - type: CableApcExtension - components: - - pos: 26.5,47.5 - parent: 1 - type: Transform -- uid: 12690 - type: CableApcExtension - components: - - pos: 25.5,47.5 - parent: 1 - type: Transform -- uid: 12691 - type: CableApcExtension - components: - - pos: 26.5,50.5 - parent: 1 - type: Transform -- uid: 12692 - type: CableApcExtension - components: - - pos: 25.5,50.5 - parent: 1 - type: Transform -- uid: 12693 - type: CableApcExtension - components: - - pos: 25.5,51.5 - parent: 1 - type: Transform -- uid: 12694 - type: CableApcExtension - components: - - pos: 25.5,52.5 - parent: 1 - type: Transform -- uid: 12695 - type: CableApcExtension - components: - - pos: 25.5,53.5 - parent: 1 - type: Transform -- uid: 12696 - type: CableApcExtension - components: - - pos: 25.5,54.5 - parent: 1 - type: Transform -- uid: 12697 - type: CableApcExtension - components: - - pos: 24.5,51.5 - parent: 1 - type: Transform -- uid: 12698 - type: CableApcExtension - components: - - pos: 23.5,51.5 - parent: 1 - type: Transform -- uid: 12699 - type: CableApcExtension - components: - - pos: 22.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12700 - type: CableApcExtension - components: - - pos: 22.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12701 - type: CableApcExtension - components: - - pos: 22.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12702 - type: CableApcExtension - components: - - pos: 22.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12703 - type: CableApcExtension - components: - - pos: 22.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12704 - type: CableApcExtension - components: - - pos: 22.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12705 - type: CableApcExtension - components: - - pos: 22.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12706 - type: CableApcExtension - components: - - pos: 23.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12707 - type: CableApcExtension - components: - - pos: 24.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12708 - type: CableApcExtension - components: - - pos: 25.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12709 - type: CableApcExtension - components: - - pos: 26.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12710 - type: CableApcExtension - components: - - pos: 27.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12711 - type: CableApcExtension - components: - - pos: 28.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12712 - type: CableApcExtension - components: - - pos: 28.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12713 - type: CableApcExtension - components: - - pos: 28.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12714 - type: CableApcExtension - components: - - pos: 28.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12715 - type: CableApcExtension - components: - - pos: 28.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12716 - type: CableApcExtension - components: - - pos: 28.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12717 - type: CableApcExtension - components: - - pos: 29.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12718 - type: CableApcExtension - components: - - pos: 29.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12719 - type: CableApcExtension - components: - - pos: 30.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12720 - type: CableApcExtension - components: - - pos: 24.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12721 - type: CableApcExtension - components: - - pos: 23.5,42.5 - parent: 1 - type: Transform -- uid: 12722 - type: CableApcExtension - components: - - pos: 22.5,42.5 - parent: 1 - type: Transform -- uid: 12723 - type: CableApcExtension - components: - - pos: 21.5,42.5 - parent: 1 - type: Transform -- uid: 12724 - type: CableApcExtension - components: - - pos: 20.5,42.5 - parent: 1 - type: Transform -- uid: 12725 - type: CableApcExtension - components: - - pos: 19.5,42.5 - parent: 1 - type: Transform -- uid: 12726 - type: CableApcExtension - components: - - pos: 18.5,42.5 - parent: 1 - type: Transform -- uid: 12727 - type: CableApcExtension - components: - - pos: 17.5,42.5 - parent: 1 - type: Transform -- uid: 12728 - type: CableApcExtension - components: - - pos: 25.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12729 - type: CableApcExtension - components: - - pos: 25.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12730 - type: CableApcExtension - components: - - pos: 25.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12731 - type: CableApcExtension - components: - - pos: 25.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12732 - type: CableApcExtension - components: - - pos: 24.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12733 - type: CableApcExtension - components: - - pos: 23.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12734 - type: CableApcExtension - components: - - pos: 22.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12735 - type: CableApcExtension - components: - - pos: 22.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12736 - type: CableApcExtension - components: - - pos: 22.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12737 - type: CableApcExtension - components: - - pos: 22.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12738 - type: CableApcExtension - components: - - pos: 22.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12739 - type: CableApcExtension - components: - - pos: 21.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12740 - type: CableApcExtension - components: - - pos: 20.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12741 - type: CableApcExtension - components: - - pos: 19.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12742 - type: CableApcExtension - components: - - pos: 18.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12743 - type: CableApcExtension - components: - - pos: 17.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12744 - type: CableApcExtension - components: - - pos: 16.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12745 - type: CableApcExtension - components: - - pos: 16.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12746 - type: CableApcExtension - components: - - pos: 16.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12747 - type: CableApcExtension - components: - - pos: 16.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12748 - type: CableApcExtension - components: - - pos: 17.5,52.5 - parent: 1 - type: Transform -- uid: 12749 - type: CableApcExtension - components: - - pos: 18.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12750 - type: CableApcExtension - components: - - pos: 19.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12751 - type: CableApcExtension - components: - - pos: 20.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12752 - type: CableApcExtension - components: - - pos: 20.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12753 - type: CableApcExtension - components: - - pos: 15.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12754 - type: CableApcExtension - components: - - pos: 15.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12755 - type: CableApcExtension - components: - - pos: 15.5,48.5 - parent: 1 - type: Transform -- uid: 12756 - type: CableApcExtension - components: - - pos: 15.5,47.5 - parent: 1 - type: Transform -- uid: 12757 - type: CableApcExtension - components: - - pos: 15.5,46.5 - parent: 1 - type: Transform -- uid: 12758 - type: CableApcExtension - components: - - pos: 15.5,45.5 - parent: 1 - type: Transform -- uid: 12759 - type: CableApcExtension - components: - - pos: 15.5,44.5 - parent: 1 - type: Transform -- uid: 12760 - type: CableApcExtension - components: - - pos: 15.5,43.5 - parent: 1 - type: Transform -- uid: 12761 - type: CableApcExtension - components: - - pos: 15.5,42.5 - parent: 1 - type: Transform -- uid: 12762 - type: CableApcExtension - components: - - pos: 15.5,41.5 - parent: 1 - type: Transform -- uid: 12763 - type: CableApcExtension - components: - - pos: 15.5,40.5 - parent: 1 - type: Transform -- uid: 12764 - type: CableApcExtension - components: - - pos: 16.5,45.5 - parent: 1 - type: Transform -- uid: 12765 - type: CableApcExtension - components: - - pos: 17.5,45.5 - parent: 1 - type: Transform -- uid: 12766 - type: CableApcExtension - components: - - pos: 18.5,45.5 - parent: 1 - type: Transform -- uid: 12767 - type: CableApcExtension - components: - - pos: 19.5,45.5 - parent: 1 - type: Transform -- uid: 12768 - type: CableApcExtension - components: - - pos: 20.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12769 - type: CableApcExtension - components: - - pos: 21.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12770 - type: CableApcExtension - components: - - pos: 14.5,44.5 - parent: 1 - type: Transform -- uid: 12771 - type: CableApcExtension - components: - - pos: 13.5,44.5 - parent: 1 - type: Transform -- uid: 12772 - type: CableApcExtension - components: - - pos: 12.5,44.5 - parent: 1 - type: Transform -- uid: 12773 - type: CableApcExtension - components: - - pos: 11.5,44.5 - parent: 1 - type: Transform -- uid: 12774 - type: CableApcExtension - components: - - pos: 14.5,42.5 - parent: 1 - type: Transform -- uid: 12775 - type: CableApcExtension - components: - - pos: 13.5,42.5 - parent: 1 - type: Transform -- uid: 12776 - type: CableApcExtension - components: - - pos: 12.5,42.5 - parent: 1 - type: Transform -- uid: 12777 - type: CableApcExtension - components: - - pos: 11.5,42.5 - parent: 1 - type: Transform -- uid: 12778 - type: CableApcExtension - components: - - pos: 14.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12779 - type: CableApcExtension - components: - - pos: 13.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12780 - type: CableApcExtension - components: - - pos: 12.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12781 - type: CableApcExtension - components: - - pos: 11.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12782 - type: CableApcExtension - components: - - pos: 10.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12783 - type: CableApcExtension - components: - - pos: 9.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12784 - type: CableApcExtension - components: - - pos: 9.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12785 - type: CableApcExtension - components: - - pos: 9.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12786 - type: CableApcExtension - components: - - pos: 9.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12787 - type: CableApcExtension - components: - - pos: 9.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12788 - type: CableApcExtension - components: - - pos: 9.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12789 - type: CableApcExtension - components: - - pos: 9.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12790 - type: CableApcExtension - components: - - pos: 9.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12791 - type: CableApcExtension - components: - - pos: 9.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12792 - type: CableApcExtension - components: - - pos: 9.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12793 - type: CableApcExtension - components: - - pos: 8.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12794 - type: CableApcExtension - components: - - pos: 7.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12795 - type: CableApcExtension - components: - - pos: 6.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12796 - type: CableApcExtension - components: - - pos: 5.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12797 - type: CableApcExtension - components: - - pos: 4.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12798 - type: CableApcExtension - components: - - pos: 3.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12799 - type: CableApcExtension - components: - - pos: 2.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12800 - type: CableApcExtension - components: - - pos: 6.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12801 - type: CableApcExtension - components: - - pos: 5.5,46.5 - parent: 1 - type: Transform -- uid: 12802 - type: CableApcExtension - components: - - pos: 4.5,46.5 - parent: 1 - type: Transform -- uid: 12803 - type: CableApcExtension - components: - - pos: 3.5,46.5 - parent: 1 - type: Transform -- uid: 12804 - type: CableApcExtension - components: - - pos: 2.5,46.5 - parent: 1 - type: Transform -- uid: 12805 - type: CableApcExtension - components: - - pos: 1.5,46.5 - parent: 1 - type: Transform -- uid: 12806 - type: CableApcExtension - components: - - pos: 0.5,46.5 - parent: 1 - type: Transform -- uid: 12807 - type: CableApcExtension - components: - - pos: 0.5,47.5 - parent: 1 - type: Transform -- uid: 12808 - type: CableApcExtension - components: - - pos: 0.5,48.5 - parent: 1 - type: Transform -- uid: 12809 - type: CableApcExtension - components: - - pos: 0.5,49.5 - parent: 1 - type: Transform -- uid: 12810 - type: CableApcExtension - components: - - pos: 0.5,50.5 - parent: 1 - type: Transform -- uid: 12811 - type: CableApcExtension - components: - - pos: 0.5,45.5 - parent: 1 - type: Transform -- uid: 12812 - type: CableApcExtension - components: - - pos: 0.5,44.5 - parent: 1 - type: Transform -- uid: 12813 - type: CableApcExtension - components: - - pos: 0.5,43.5 - parent: 1 - type: Transform -- uid: 12814 - type: CableApcExtension - components: - - pos: 0.5,42.5 - parent: 1 - type: Transform -- uid: 12815 - type: CableApcExtension - components: - - pos: 0.5,41.5 - parent: 1 - type: Transform -- uid: 12816 - type: CableApcExtension - components: - - pos: 0.5,40.5 - parent: 1 - type: Transform -- uid: 12817 - type: CableApcExtension - components: - - pos: 5.5,47.5 - parent: 1 - type: Transform -- uid: 12818 - type: CableApcExtension - components: - - pos: 5.5,48.5 - parent: 1 - type: Transform -- uid: 12819 - type: CableApcExtension - components: - - pos: 5.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12820 - type: AirlockEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: 17.5,52.5 - parent: 1 - type: Transform -- uid: 12821 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 15.5,63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12822 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12823 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12824 - type: PoweredSmallLight - components: - - pos: 32.5,56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12825 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12826 - type: CableApcExtension - components: - - pos: 36.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12827 - type: CableApcExtension - components: - - pos: 37.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12828 - type: CableApcExtension - components: - - pos: 37.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12829 - type: CableApcExtension - components: - - pos: 37.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12830 - type: CableApcExtension - components: - - pos: 37.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12831 - type: CableApcExtension - components: - - pos: 37.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12832 - type: CableApcExtension - components: - - pos: 37.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12833 - type: CableApcExtension - components: - - pos: 37.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12834 - type: CableApcExtension - components: - - pos: 17.5,41.5 - parent: 1 - type: Transform -- uid: 12835 - type: CableApcExtension - components: - - pos: 17.5,40.5 - parent: 1 - type: Transform -- uid: 12836 - type: CableApcExtension - components: - - pos: 17.5,39.5 - parent: 1 - type: Transform -- uid: 12837 - type: CableApcExtension - components: - - pos: 17.5,38.5 - parent: 1 - type: Transform -- uid: 12838 - type: CableApcExtension - components: - - pos: 16.5,38.5 - parent: 1 - type: Transform -- uid: 12839 - type: CableApcExtension - components: - - pos: 15.5,38.5 - parent: 1 - type: Transform -- uid: 12840 - type: CableApcExtension - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform -- uid: 12841 - type: CableApcExtension - components: - - pos: 13.5,38.5 - parent: 1 - type: Transform -- uid: 12842 - type: CableApcExtension - components: - - pos: 12.5,38.5 - parent: 1 - type: Transform -- uid: 12843 - type: CableApcExtension - components: - - pos: 11.5,38.5 - parent: 1 - type: Transform -- uid: 12844 - type: CableApcExtension - components: - - pos: 10.5,38.5 - parent: 1 - type: Transform -- uid: 12845 - type: CableApcExtension - components: - - pos: 9.5,38.5 - parent: 1 - type: Transform -- uid: 12846 - type: CableApcExtension - components: - - pos: 8.5,38.5 - parent: 1 - type: Transform -- uid: 12847 - type: CableApcExtension - components: - - pos: 7.5,38.5 - parent: 1 - type: Transform -- uid: 12848 - type: CableApcExtension - components: - - pos: 6.5,38.5 - parent: 1 - type: Transform -- uid: 12849 - type: CableApcExtension - components: - - pos: 5.5,38.5 - parent: 1 - type: Transform -- uid: 12850 - type: CableApcExtension - components: - - pos: 4.5,38.5 - parent: 1 - type: Transform -- uid: 12851 - type: CableApcExtension - components: - - pos: 3.5,38.5 - parent: 1 - type: Transform -- uid: 12852 - type: CableApcExtension - components: - - pos: 2.5,38.5 - parent: 1 - type: Transform -- uid: 12853 - type: CableApcExtension - components: - - pos: 1.5,38.5 - parent: 1 - type: Transform -- uid: 12854 - type: CableApcExtension - components: - - pos: 0.5,38.5 - parent: 1 - type: Transform -- uid: 12855 - type: CableApcExtension - components: - - pos: -8.5,37.5 - parent: 1 - type: Transform -- uid: 12856 - type: CableApcExtension - components: - - pos: 18.5,38.5 - parent: 1 - type: Transform -- uid: 12857 - type: CableApcExtension - components: - - pos: 19.5,38.5 - parent: 1 - type: Transform -- uid: 12858 - type: CableApcExtension - components: - - pos: 20.5,38.5 - parent: 1 - type: Transform -- uid: 12859 - type: CableApcExtension - components: - - pos: 21.5,38.5 - parent: 1 - type: Transform -- uid: 12860 - type: CableApcExtension - components: - - pos: 22.5,38.5 - parent: 1 - type: Transform -- uid: 12861 - type: CableApcExtension - components: - - pos: 23.5,38.5 - parent: 1 - type: Transform -- uid: 12862 - type: APCBasic - components: - - pos: 20.5,30.5 - parent: 1 - type: Transform -- uid: 12863 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 8.5,31.5 - parent: 1 - type: Transform -- uid: 12864 - type: APCBasic - components: - - pos: 5.5,26.5 - parent: 1 - type: Transform -- uid: 12865 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 17.5,19.5 - parent: 1 - type: Transform -- uid: 12866 - type: CableMV - components: - - pos: 16.5,25.5 - parent: 1 - type: Transform -- uid: 12867 - type: CableMV - components: - - pos: 15.5,25.5 - parent: 1 - type: Transform -- uid: 12868 - type: CableMV - components: - - pos: 14.5,25.5 - parent: 1 - type: Transform -- uid: 12869 - type: CableMV - components: - - pos: 14.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12870 - type: CableMV - components: - - pos: 14.5,23.5 - parent: 1 - type: Transform -- uid: 12871 - type: CableMV - components: - - pos: 14.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12872 - type: CableMV - components: - - pos: 15.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12873 - type: CableMV - components: - - pos: 16.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12874 - type: CableMV - components: - - pos: 17.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12875 - type: CableMV - components: - - pos: 18.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12876 - type: CableMV - components: - - pos: 19.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12877 - type: CableMV - components: - - pos: 19.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12878 - type: CableMV - components: - - pos: 19.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12879 - type: CableMV - components: - - pos: 19.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12880 - type: CableMV - components: - - pos: 18.5,19.5 - parent: 1 - type: Transform -- uid: 12881 - type: CableMV - components: - - pos: 17.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12882 - type: CableMV - components: - - pos: 19.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12883 - type: CableMV - components: - - pos: 19.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12884 - type: CableMV - components: - - pos: 20.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12885 - type: CableMV - components: - - pos: 21.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12886 - type: CableMV - components: - - pos: 22.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12887 - type: CableMV - components: - - pos: 23.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12888 - type: CableMV - components: - - pos: 24.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12889 - type: CableMV - components: - - pos: 24.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12890 - type: CableMV - components: - - pos: 24.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12891 - type: CableMV - components: - - pos: 24.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12892 - type: CableMV - components: - - pos: 24.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12893 - type: CableMV - components: - - pos: 23.5,27.5 - parent: 1 - type: Transform -- uid: 12894 - type: CableMV - components: - - pos: 22.5,27.5 - parent: 1 - type: Transform -- uid: 12895 - type: CableMV - components: - - pos: 21.5,27.5 - parent: 1 - type: Transform -- uid: 12896 - type: CableMV - components: - - pos: 20.5,27.5 - parent: 1 - type: Transform -- uid: 12897 - type: CableMV - components: - - pos: 20.5,28.5 - parent: 1 - type: Transform -- uid: 12898 - type: CableMV - components: - - pos: 20.5,29.5 - parent: 1 - type: Transform -- uid: 12899 - type: CableMV - components: - - pos: 20.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12900 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12901 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 18.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12902 - type: CableMV - components: - - pos: 17.5,28.5 - parent: 1 - type: Transform -- uid: 12903 - type: CableMV - components: - - pos: 16.5,28.5 - parent: 1 - type: Transform -- uid: 12904 - type: CableMV - components: - - pos: 15.5,28.5 - parent: 1 - type: Transform -- uid: 12905 - type: CableMV - components: - - pos: 14.5,28.5 - parent: 1 - type: Transform -- uid: 12906 - type: CableMV - components: - - pos: 13.5,28.5 - parent: 1 - type: Transform -- uid: 12907 - type: CableMV - components: - - pos: 12.5,28.5 - parent: 1 - type: Transform -- uid: 12908 - type: CableMV - components: - - pos: 11.5,28.5 - parent: 1 - type: Transform -- uid: 12909 - type: CableMV - components: - - pos: 10.5,28.5 - parent: 1 - type: Transform -- uid: 12910 - type: CableMV - components: - - pos: 9.5,28.5 - parent: 1 - type: Transform -- uid: 12911 - type: CableMV - components: - - pos: 8.5,28.5 - parent: 1 - type: Transform -- uid: 12912 - type: CableMV - components: - - pos: 7.5,28.5 - parent: 1 - type: Transform -- uid: 12913 - type: CableMV - components: - - pos: 6.5,28.5 - parent: 1 - type: Transform -- uid: 12914 - type: CableMV - components: - - pos: 6.5,27.5 - parent: 1 - type: Transform -- uid: 12915 - type: CableMV - components: - - pos: 6.5,26.5 - parent: 1 - type: Transform -- uid: 12916 - type: CableMV - components: - - pos: 5.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12917 - type: CableMV - components: - - pos: 15.5,21.5 - parent: 1 - type: Transform -- uid: 12918 - type: CableMV - components: - - pos: 10.5,29.5 - parent: 1 - type: Transform -- uid: 12919 - type: CableMV - components: - - pos: 10.5,30.5 - parent: 1 - type: Transform -- uid: 12920 - type: CableMV - components: - - pos: 10.5,31.5 - parent: 1 - type: Transform -- uid: 12921 - type: CableMV - components: - - pos: 9.5,31.5 - parent: 1 - type: Transform -- uid: 12922 - type: CableMV - components: - - pos: 8.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12923 - type: CableApcExtension - components: - - pos: 2.5,31.5 - parent: 1 - type: Transform -- uid: 12924 - type: CableApcExtension - components: - - pos: 3.5,31.5 - parent: 1 - type: Transform -- uid: 12925 - type: CableApcExtension - components: - - pos: 4.5,31.5 - parent: 1 - type: Transform -- uid: 12926 - type: CableApcExtension - components: - - pos: 5.5,31.5 - parent: 1 - type: Transform -- uid: 12927 - type: CableApcExtension - components: - - pos: 6.5,31.5 - parent: 1 - type: Transform -- uid: 12928 - type: CableApcExtension - components: - - pos: 7.5,31.5 - parent: 1 - type: Transform -- uid: 12929 - type: CableApcExtension - components: - - pos: 8.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12930 - type: CableApcExtension - components: - - pos: 9.5,31.5 - parent: 1 - type: Transform -- uid: 12931 - type: CableApcExtension - components: - - pos: 10.5,31.5 - parent: 1 - type: Transform -- uid: 12932 - type: CableApcExtension - components: - - pos: 11.5,31.5 - parent: 1 - type: Transform -- uid: 12933 - type: CableApcExtension - components: - - pos: 12.5,31.5 - parent: 1 - type: Transform -- uid: 12934 - type: CableApcExtension - components: - - pos: 13.5,31.5 - parent: 1 - type: Transform -- uid: 12935 - type: CableApcExtension - components: - - pos: 14.5,31.5 - parent: 1 - type: Transform -- uid: 12936 - type: CableApcExtension - components: - - pos: 15.5,31.5 - parent: 1 - type: Transform -- uid: 12937 - type: CableApcExtension - components: - - pos: 16.5,31.5 - parent: 1 - type: Transform -- uid: 12938 - type: CableApcExtension - components: - - pos: 16.5,32.5 - parent: 1 - type: Transform -- uid: 12939 - type: CableApcExtension - components: - - pos: 16.5,33.5 - parent: 1 - type: Transform -- uid: 12940 - type: CableApcExtension - components: - - pos: 16.5,34.5 - parent: 1 - type: Transform -- uid: 12941 - type: CableApcExtension - components: - - pos: 2.5,32.5 - parent: 1 - type: Transform -- uid: 12942 - type: CableApcExtension - components: - - pos: 2.5,33.5 - parent: 1 - type: Transform -- uid: 12943 - type: CableApcExtension - components: - - pos: 2.5,34.5 - parent: 1 - type: Transform -- uid: 12944 - type: CableApcExtension - components: - - pos: 5.5,32.5 - parent: 1 - type: Transform -- uid: 12945 - type: CableApcExtension - components: - - pos: 5.5,33.5 - parent: 1 - type: Transform -- uid: 12946 - type: CableApcExtension - components: - - pos: 5.5,34.5 - parent: 1 - type: Transform -- uid: 12947 - type: CableApcExtension - components: - - pos: 10.5,32.5 - parent: 1 - type: Transform -- uid: 12948 - type: CableApcExtension - components: - - pos: 10.5,33.5 - parent: 1 - type: Transform -- uid: 12949 - type: CableApcExtension - components: - - pos: 10.5,34.5 - parent: 1 - type: Transform -- uid: 12950 - type: CableApcExtension - components: - - pos: 4.5,30.5 - parent: 1 - type: Transform -- uid: 12951 - type: CableApcExtension - components: - - pos: 4.5,29.5 - parent: 1 - type: Transform -- uid: 12952 - type: CableApcExtension - components: - - pos: 4.5,28.5 - parent: 1 - type: Transform -- uid: 12953 - type: CableApcExtension - components: - - pos: 4.5,27.5 - parent: 1 - type: Transform -- uid: 12954 - type: CableApcExtension - components: - - pos: 10.5,30.5 - parent: 1 - type: Transform -- uid: 12955 - type: CableApcExtension - components: - - pos: 6.5,30.5 - parent: 1 - type: Transform -- uid: 12956 - type: CableApcExtension - components: - - pos: 5.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12957 - type: CableApcExtension - components: - - pos: 6.5,26.5 - parent: 1 - type: Transform -- uid: 12958 - type: CableApcExtension - components: - - pos: 6.5,25.5 - parent: 1 - type: Transform -- uid: 12959 - type: CableApcExtension - components: - - pos: 6.5,24.5 - parent: 1 - type: Transform -- uid: 12960 - type: CableApcExtension - components: - - pos: 6.5,23.5 - parent: 1 - type: Transform -- uid: 12961 - type: CableApcExtension - components: - - pos: 6.5,22.5 - parent: 1 - type: Transform -- uid: 12962 - type: CableApcExtension - components: - - pos: 7.5,22.5 - parent: 1 - type: Transform -- uid: 12963 - type: CableApcExtension - components: - - pos: 8.5,22.5 - parent: 1 - type: Transform -- uid: 12964 - type: CableApcExtension - components: - - pos: 9.5,22.5 - parent: 1 - type: Transform -- uid: 12965 - type: CableApcExtension - components: - - pos: 9.5,23.5 - parent: 1 - type: Transform -- uid: 12966 - type: CableApcExtension - components: - - pos: 5.5,23.5 - parent: 1 - type: Transform -- uid: 12967 - type: CableApcExtension - components: - - pos: 4.5,23.5 - parent: 1 - type: Transform -- uid: 12968 - type: CableApcExtension - components: - - pos: 3.5,23.5 - parent: 1 - type: Transform -- uid: 12969 - type: CableApcExtension - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform -- uid: 12970 - type: CableApcExtension - components: - - pos: 2.5,22.5 - parent: 1 - type: Transform -- uid: 12971 - type: CableApcExtension - components: - - pos: 2.5,21.5 - parent: 1 - type: Transform -- uid: 12972 - type: CableApcExtension - components: - - pos: 3.5,21.5 - parent: 1 - type: Transform -- uid: 12973 - type: CableApcExtension - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform -- uid: 12974 - type: CableApcExtension - components: - - pos: 3.5,24.5 - parent: 1 - type: Transform -- uid: 12975 - type: CableApcExtension - components: - - pos: 3.5,25.5 - parent: 1 - type: Transform -- uid: 12976 - type: CableApcExtension - components: - - pos: 10.5,22.5 - parent: 1 - type: Transform -- uid: 12977 - type: CableApcExtension - components: - - pos: 10.5,23.5 - parent: 1 - type: Transform -- uid: 12978 - type: CableApcExtension - components: - - pos: 10.5,24.5 - parent: 1 - type: Transform -- uid: 12979 - type: CableApcExtension - components: - - pos: 10.5,25.5 - parent: 1 - type: Transform -- uid: 12980 - type: CableApcExtension - components: - - pos: 10.5,26.5 - parent: 1 - type: Transform -- uid: 12981 - type: CableApcExtension - components: - - pos: 10.5,27.5 - parent: 1 - type: Transform -- uid: 12982 - type: CableApcExtension - components: - - pos: 9.5,27.5 - parent: 1 - type: Transform -- uid: 12983 - type: CableApcExtension - components: - - pos: 8.5,27.5 - parent: 1 - type: Transform -- uid: 12984 - type: CableApcExtension - components: - - pos: 7.5,27.5 - parent: 1 - type: Transform -- uid: 12985 - type: CableApcExtension - components: - - pos: 6.5,27.5 - parent: 1 - type: Transform -- uid: 12986 - type: CableApcExtension - components: - - pos: 11.5,27.5 - parent: 1 - type: Transform -- uid: 12987 - type: CableApcExtension - components: - - pos: 12.5,27.5 - parent: 1 - type: Transform -- uid: 12988 - type: CableApcExtension - components: - - pos: 12.5,26.5 - parent: 1 - type: Transform -- uid: 12989 - type: CableApcExtension - components: - - pos: 12.5,25.5 - parent: 1 - type: Transform -- uid: 12990 - type: CableApcExtension - components: - - pos: 12.5,24.5 - parent: 1 - type: Transform -- uid: 12991 - type: CableApcExtension - components: - - pos: 12.5,23.5 - parent: 1 - type: Transform -- uid: 12992 - type: CableApcExtension - components: - - pos: 12.5,22.5 - parent: 1 - type: Transform -- uid: 12993 - type: CableApcExtension - components: - - pos: 11.5,22.5 - parent: 1 - type: Transform -- uid: 12994 - type: CableApcExtension - components: - - pos: 17.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12995 - type: CableApcExtension - components: - - pos: 16.5,19.5 - parent: 1 - type: Transform -- uid: 12996 - type: CableApcExtension - components: - - pos: 15.5,19.5 - parent: 1 - type: Transform -- uid: 12997 - type: CableApcExtension - components: - - pos: 14.5,19.5 - parent: 1 - type: Transform -- uid: 12998 - type: CableApcExtension - components: - - pos: 13.5,19.5 - parent: 1 - type: Transform -- uid: 12999 - type: CableApcExtension - components: - - pos: 12.5,19.5 - parent: 1 - type: Transform -- uid: 13000 - type: CableApcExtension - components: - - pos: 11.5,19.5 - parent: 1 - type: Transform -- uid: 13001 - type: CableApcExtension - components: - - pos: 10.5,19.5 - parent: 1 - type: Transform -- uid: 13002 - type: CableApcExtension - components: - - pos: 9.5,19.5 - parent: 1 - type: Transform -- uid: 13003 - type: CableApcExtension - components: - - pos: 8.5,19.5 - parent: 1 - type: Transform -- uid: 13004 - type: CableApcExtension - components: - - pos: 7.5,19.5 - parent: 1 - type: Transform -- uid: 13005 - type: CableApcExtension - components: - - pos: 6.5,19.5 - parent: 1 - type: Transform -- uid: 13006 - type: CableApcExtension - components: - - pos: 6.5,18.5 - parent: 1 - type: Transform -- uid: 13007 - type: CableApcExtension - components: - - pos: 5.5,18.5 - parent: 1 - type: Transform -- uid: 13008 - type: CableApcExtension - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform -- uid: 13009 - type: CableApcExtension - components: - - pos: 3.5,18.5 - parent: 1 - type: Transform -- uid: 13010 - type: CableApcExtension - components: - - pos: 2.5,18.5 - parent: 1 - type: Transform -- uid: 13011 - type: CableApcExtension - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform -- uid: 13012 - type: CableApcExtension - components: - - pos: 4.5,17.5 - parent: 1 - type: Transform -- uid: 13013 - type: CableApcExtension - components: - - pos: 4.5,16.5 - parent: 1 - type: Transform -- uid: 13014 - type: CableApcExtension - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform -- uid: 13015 - type: CableApcExtension - components: - - pos: 3.5,15.5 - parent: 1 - type: Transform -- uid: 13016 - type: CableApcExtension - components: - - pos: 2.5,15.5 - parent: 1 - type: Transform -- uid: 13017 - type: CableApcExtension - components: - - pos: 1.5,15.5 - parent: 1 - type: Transform -- uid: 13018 - type: CableApcExtension - components: - - pos: 0.5,15.5 - parent: 1 - type: Transform -- uid: 13019 - type: CableApcExtension - components: - - pos: 5.5,15.5 - parent: 1 - type: Transform -- uid: 13020 - type: CableApcExtension - components: - - pos: 6.5,15.5 - parent: 1 - type: Transform -- uid: 13021 - type: CableApcExtension - components: - - pos: 7.5,15.5 - parent: 1 - type: Transform -- uid: 13022 - type: CableApcExtension - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform -- uid: 13023 - type: CableApcExtension - components: - - pos: 9.5,15.5 - parent: 1 - type: Transform -- uid: 13024 - type: CableApcExtension - components: - - pos: 10.5,15.5 - parent: 1 - type: Transform -- uid: 13025 - type: CableApcExtension - components: - - pos: 11.5,15.5 - parent: 1 - type: Transform -- uid: 13026 - type: CableApcExtension - components: - - pos: 12.5,15.5 - parent: 1 - type: Transform -- uid: 13027 - type: CableApcExtension - components: - - pos: 13.5,15.5 - parent: 1 - type: Transform -- uid: 13028 - type: CableApcExtension - components: - - pos: 14.5,15.5 - parent: 1 - type: Transform -- uid: 13029 - type: CableApcExtension - components: - - pos: 15.5,15.5 - parent: 1 - type: Transform -- uid: 13030 - type: CableApcExtension - components: - - pos: 16.5,15.5 - parent: 1 - type: Transform -- uid: 13031 - type: CableApcExtension - components: - - pos: 17.5,15.5 - parent: 1 - type: Transform -- uid: 13032 - type: CableApcExtension - components: - - pos: 18.5,15.5 - parent: 1 - type: Transform -- uid: 13033 - type: CableApcExtension - components: - - pos: 19.5,15.5 - parent: 1 - type: Transform -- uid: 13034 - type: CableApcExtension - components: - - pos: 19.5,16.5 - parent: 1 - type: Transform -- uid: 13035 - type: CableApcExtension - components: - - pos: 19.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13036 - type: CableApcExtension - components: - - pos: 19.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13037 - type: CableApcExtension - components: - - pos: 19.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13038 - type: CableApcExtension - components: - - pos: 18.5,19.5 - parent: 1 - type: Transform -- uid: 13039 - type: CableApcExtension - components: - - pos: 20.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13040 - type: CableApcExtension - components: - - pos: 20.5,31.5 - parent: 1 - type: Transform -- uid: 13041 - type: CableApcExtension - components: - - pos: 20.5,32.5 - parent: 1 - type: Transform -- uid: 13042 - type: CableApcExtension - components: - - pos: 20.5,33.5 - parent: 1 - type: Transform -- uid: 13043 - type: CableApcExtension - components: - - pos: 20.5,34.5 - parent: 1 - type: Transform -- uid: 13044 - type: CableApcExtension - components: - - pos: 19.5,34.5 - parent: 1 - type: Transform -- uid: 13045 - type: CableApcExtension - components: - - pos: 21.5,34.5 - parent: 1 - type: Transform -- uid: 13046 - type: CableApcExtension - components: - - pos: 20.5,29.5 - parent: 1 - type: Transform -- uid: 13047 - type: CableApcExtension - components: - - pos: 20.5,28.5 - parent: 1 - type: Transform -- uid: 13048 - type: CableApcExtension - components: - - pos: 20.5,27.5 - parent: 1 - type: Transform -- uid: 13049 - type: CableApcExtension - components: - - pos: 20.5,26.5 - parent: 1 - type: Transform -- uid: 13050 - type: CableApcExtension - components: - - pos: 21.5,27.5 - parent: 1 - type: Transform -- uid: 13051 - type: CableApcExtension - components: - - pos: 22.5,27.5 - parent: 1 - type: Transform -- uid: 13052 - type: GasPipeStraight - components: - - pos: 19.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13053 - type: CableApcExtension - components: - - pos: 18.5,27.5 - parent: 1 - type: Transform -- uid: 13054 - type: CableApcExtension - components: - - pos: 18.5,28.5 - parent: 1 - type: Transform -- uid: 13055 - type: CableApcExtension - components: - - pos: 17.5,28.5 - parent: 1 - type: Transform -- uid: 13056 - type: CableApcExtension - components: - - pos: 16.5,28.5 - parent: 1 - type: Transform -- uid: 13057 - type: CableApcExtension - components: - - pos: 15.5,28.5 - parent: 1 - type: Transform -- uid: 13058 - type: CableApcExtension - components: - - pos: 14.5,28.5 - parent: 1 - type: Transform -- uid: 13059 - type: CableApcExtension - components: - - pos: 23.5,27.5 - parent: 1 - type: Transform -- uid: 13060 - type: CableApcExtension - components: - - pos: 24.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13061 - type: CableApcExtension - components: - - pos: 24.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13062 - type: CableApcExtension - components: - - pos: 24.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13063 - type: CableApcExtension - components: - - pos: 24.5,30.5 - parent: 1 - type: Transform -- uid: 13064 - type: CableApcExtension - components: - - pos: 24.5,31.5 - parent: 1 - type: Transform -- uid: 13065 - type: CableApcExtension - components: - - pos: 24.5,32.5 - parent: 1 - type: Transform -- uid: 13066 - type: CableApcExtension - components: - - pos: 24.5,33.5 - parent: 1 - type: Transform -- uid: 13067 - type: CableApcExtension - components: - - pos: 24.5,34.5 - parent: 1 - type: Transform -- uid: 13068 - type: CableApcExtension - components: - - pos: 25.5,34.5 - parent: 1 - type: Transform -- uid: 13069 - type: CableApcExtension - components: - - pos: 26.5,34.5 - parent: 1 - type: Transform -- uid: 13070 - type: CableApcExtension - components: - - pos: 27.5,34.5 - parent: 1 - type: Transform -- uid: 13071 - type: CableApcExtension - components: - - pos: 27.5,33.5 - parent: 1 - type: Transform -- uid: 13072 - type: CableApcExtension - components: - - pos: 27.5,32.5 - parent: 1 - type: Transform -- uid: 13073 - type: CableApcExtension - components: - - pos: 27.5,31.5 - parent: 1 - type: Transform -- uid: 13074 - type: CableApcExtension - components: - - pos: 24.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13075 - type: CableApcExtension - components: - - pos: 24.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13076 - type: CableApcExtension - components: - - pos: 24.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13077 - type: CableApcExtension - components: - - pos: 25.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13078 - type: CableApcExtension - components: - - pos: 26.5,25.5 - parent: 1 - type: Transform -- uid: 13079 - type: CableApcExtension - components: - - pos: 27.5,25.5 - parent: 1 - type: Transform -- uid: 13080 - type: CableApcExtension - components: - - pos: 28.5,25.5 - parent: 1 - type: Transform -- uid: 13081 - type: CableApcExtension - components: - - pos: 29.5,25.5 - parent: 1 - type: Transform -- uid: 13082 - type: CableApcExtension - components: - - pos: 30.5,25.5 - parent: 1 - type: Transform -- uid: 13083 - type: CableApcExtension - components: - - pos: 31.5,25.5 - parent: 1 - type: Transform -- uid: 13084 - type: CableApcExtension - components: - - pos: 32.5,25.5 - parent: 1 - type: Transform -- uid: 13085 - type: CableApcExtension - components: - - pos: 32.5,26.5 - parent: 1 - type: Transform -- uid: 13086 - type: CableApcExtension - components: - - pos: 32.5,27.5 - parent: 1 - type: Transform -- uid: 13087 - type: CableApcExtension - components: - - pos: 32.5,28.5 - parent: 1 - type: Transform -- uid: 13088 - type: CableApcExtension - components: - - pos: 32.5,29.5 - parent: 1 - type: Transform -- uid: 13089 - type: CableApcExtension - components: - - pos: 32.5,30.5 - parent: 1 - type: Transform -- uid: 13090 - type: CableApcExtension - components: - - pos: 32.5,31.5 - parent: 1 - type: Transform -- uid: 13091 - type: CableApcExtension - components: - - pos: 32.5,32.5 - parent: 1 - type: Transform -- uid: 13092 - type: CableApcExtension - components: - - pos: 32.5,33.5 - parent: 1 - type: Transform -- uid: 13093 - type: CableApcExtension - components: - - pos: 32.5,34.5 - parent: 1 - type: Transform -- uid: 13094 - type: CableApcExtension - components: - - pos: 32.5,24.5 - parent: 1 - type: Transform -- uid: 13095 - type: CableApcExtension - components: - - pos: 32.5,23.5 - parent: 1 - type: Transform -- uid: 13096 - type: CableApcExtension - components: - - pos: 32.5,22.5 - parent: 1 - type: Transform -- uid: 13097 - type: CableApcExtension - components: - - pos: 32.5,21.5 - parent: 1 - type: Transform -- uid: 13098 - type: CableApcExtension - components: - - pos: 32.5,20.5 - parent: 1 - type: Transform -- uid: 13099 - type: CableApcExtension - components: - - pos: 32.5,19.5 - parent: 1 - type: Transform -- uid: 13100 - type: CableApcExtension - components: - - pos: 32.5,18.5 - parent: 1 - type: Transform -- uid: 13101 - type: CableApcExtension - components: - - pos: 32.5,17.5 - parent: 1 - type: Transform -- uid: 13102 - type: CableApcExtension - components: - - pos: 32.5,16.5 - parent: 1 - type: Transform -- uid: 13103 - type: CableApcExtension - components: - - pos: 32.5,15.5 - parent: 1 - type: Transform -- uid: 13104 - type: CableApcExtension - components: - - pos: 32.5,14.5 - parent: 1 - type: Transform -- uid: 13105 - type: CableApcExtension - components: - - pos: 32.5,13.5 - parent: 1 - type: Transform -- uid: 13106 - type: CableApcExtension - components: - - pos: 31.5,13.5 - parent: 1 - type: Transform -- uid: 13107 - type: CableApcExtension - components: - - pos: 30.5,13.5 - parent: 1 - type: Transform -- uid: 13108 - type: CableApcExtension - components: - - pos: 29.5,13.5 - parent: 1 - type: Transform -- uid: 13109 - type: CableApcExtension - components: - - pos: 28.5,13.5 - parent: 1 - type: Transform -- uid: 13110 - type: CableApcExtension - components: - - pos: 27.5,13.5 - parent: 1 - type: Transform -- uid: 13111 - type: CableApcExtension - components: - - pos: 26.5,13.5 - parent: 1 - type: Transform -- uid: 13112 - type: CableApcExtension - components: - - pos: 25.5,13.5 - parent: 1 - type: Transform -- uid: 13113 - type: CableApcExtension - components: - - pos: 24.5,13.5 - parent: 1 - type: Transform -- uid: 13114 - type: CableApcExtension - components: - - pos: 23.5,13.5 - parent: 1 - type: Transform -- uid: 13115 - type: CableApcExtension - components: - - pos: 22.5,13.5 - parent: 1 - type: Transform -- uid: 13116 - type: CableApcExtension - components: - - pos: 21.5,13.5 - parent: 1 - type: Transform -- uid: 13117 - type: CableApcExtension - components: - - pos: 23.5,14.5 - parent: 1 - type: Transform -- uid: 13118 - type: CableApcExtension - components: - - pos: 23.5,15.5 - parent: 1 - type: Transform -- uid: 13119 - type: CableApcExtension - components: - - pos: 23.5,16.5 - parent: 1 - type: Transform -- uid: 13120 - type: CableApcExtension - components: - - pos: 23.5,17.5 - parent: 1 - type: Transform -- uid: 13121 - type: CableApcExtension - components: - - pos: 23.5,18.5 - parent: 1 - type: Transform -- uid: 13122 - type: CableApcExtension - components: - - pos: 23.5,19.5 - parent: 1 - type: Transform -- uid: 13123 - type: CableApcExtension - components: - - pos: 24.5,19.5 - parent: 1 - type: Transform -- uid: 13124 - type: CableApcExtension - components: - - pos: 24.5,20.5 - parent: 1 - type: Transform -- uid: 13125 - type: CableApcExtension - components: - - pos: 24.5,21.5 - parent: 1 - type: Transform -- uid: 13126 - type: CableApcExtension - components: - - pos: 24.5,22.5 - parent: 1 - type: Transform -- uid: 13127 - type: CableApcExtension - components: - - pos: 25.5,22.5 - parent: 1 - type: Transform -- uid: 13128 - type: CableApcExtension - components: - - pos: 26.5,22.5 - parent: 1 - type: Transform -- uid: 13129 - type: CableApcExtension - components: - - pos: 27.5,22.5 - parent: 1 - type: Transform -- uid: 13130 - type: CableApcExtension - components: - - pos: 27.5,21.5 - parent: 1 - type: Transform -- uid: 13131 - type: CableApcExtension - components: - - pos: 28.5,21.5 - parent: 1 - type: Transform -- uid: 13132 - type: CableApcExtension - components: - - pos: 29.5,21.5 - parent: 1 - type: Transform -- uid: 13133 - type: CableApcExtension - components: - - pos: 30.5,21.5 - parent: 1 - type: Transform -- uid: 13134 - type: CableApcExtension - components: - - pos: 31.5,21.5 - parent: 1 - type: Transform -- uid: 13135 - type: CableApcExtension - components: - - pos: 29.5,14.5 - parent: 1 - type: Transform -- uid: 13136 - type: CableApcExtension - components: - - pos: 29.5,15.5 - parent: 1 - type: Transform -- uid: 13137 - type: CableApcExtension - components: - - pos: 29.5,16.5 - parent: 1 - type: Transform -- uid: 13138 - type: CableApcExtension - components: - - pos: 29.5,17.5 - parent: 1 - type: Transform -- uid: 13139 - type: CableApcExtension - components: - - pos: 30.5,17.5 - parent: 1 - type: Transform -- uid: 13140 - type: CableApcExtension - components: - - pos: 31.5,17.5 - parent: 1 - type: Transform -- uid: 13141 - type: CableHV - components: - - pos: 20.5,13.5 - parent: 1 - type: Transform -- uid: 13142 - type: CableHV - components: - - pos: 21.5,13.5 - parent: 1 - type: Transform -- uid: 13143 - type: CableHV - components: - - pos: 22.5,13.5 - parent: 1 - type: Transform -- uid: 13144 - type: CableHV - components: - - pos: 23.5,13.5 - parent: 1 - type: Transform -- uid: 13145 - type: CableHV - components: - - pos: 24.5,13.5 - parent: 1 - type: Transform -- uid: 13146 - type: CableHV - components: - - pos: 25.5,13.5 - parent: 1 - type: Transform -- uid: 13147 - type: CableHV - components: - - pos: 26.5,13.5 - parent: 1 - type: Transform -- uid: 13148 - type: CableHV - components: - - pos: 27.5,13.5 - parent: 1 - type: Transform -- uid: 13149 - type: CableHV - components: - - pos: 28.5,13.5 - parent: 1 - type: Transform -- uid: 13150 - type: CableHV - components: - - pos: 29.5,13.5 - parent: 1 - type: Transform -- uid: 13151 - type: CableHV - components: - - pos: 30.5,13.5 - parent: 1 - type: Transform -- uid: 13152 - type: CableHV - components: - - pos: 31.5,13.5 - parent: 1 - type: Transform -- uid: 13153 - type: ClosetMaintenanceFilledRandom - components: - - pos: 18.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13154 - type: ClosetEmergencyFilledRandom - components: - - pos: 18.5,18.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13155 - type: ClosetFireFilled - components: - - pos: 18.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13156 - type: Rack - components: - - rot: -1.5707963267948966 rad - pos: 18.5,20.5 - parent: 1 - type: Transform -- uid: 13157 - type: MaintenanceToolSpawner - components: - - rot: -1.5707963267948966 rad - pos: 18.5,20.5 - parent: 1 - type: Transform -- uid: 13158 - type: AirlockEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: 14.5,23.5 - parent: 1 - type: Transform -- uid: 13159 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13160 - type: Catwalk - components: - - pos: 15.5,24.5 - parent: 1 - type: Transform -- uid: 13161 - type: ComputerPowerMonitoring - components: - - pos: 15.5,25.5 - parent: 1 - type: Transform -- uid: 13162 - type: Rack - components: - - pos: 14.5,25.5 - parent: 1 - type: Transform -- uid: 13163 - type: Catwalk - components: - - pos: 16.5,24.5 - parent: 1 - type: Transform -- uid: 13164 - type: Catwalk - components: - - pos: 14.5,24.5 - parent: 1 - type: Transform -- uid: 13165 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 15.5,24.5 - parent: 1 - type: Transform -- uid: 13166 - type: ClosetFireFilled - components: - - pos: 25.5,29.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13167 - type: ClosetEmergencyFilledRandom - components: - - pos: 25.5,28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13168 - type: ClosetMaintenanceFilledRandom - components: - - pos: 25.5,27.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13169 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 25.5,26.5 - parent: 1 - type: Transform -- uid: 13170 - type: ToolboxElectricalFilled - components: - - pos: 14.440446,25.49164 - parent: 1 - type: Transform -- uid: 13171 - type: GasPort - components: - - pos: -23.5,-0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13172 - type: GasPressurePump - components: - - pos: -23.5,-1.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13173 - type: AirCanister - components: - - pos: -23.5,-0.5 - parent: 1 - type: Transform -- uid: 13174 - type: AirCanister - components: - - pos: -24.5,-0.5 - parent: 1 - type: Transform -- uid: 13175 - type: Catwalk - components: - - pos: -25.5,-2.5 - parent: 1 - type: Transform -- uid: 13176 - type: Catwalk - components: - - pos: -24.5,-2.5 - parent: 1 - type: Transform -- uid: 13177 - type: Catwalk - components: - - pos: -23.5,-2.5 - parent: 1 - type: Transform -- uid: 13178 - type: CableHV - components: - - pos: -25.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13179 - type: CableHV - components: - - pos: -25.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13180 - type: ComputerPowerMonitoring - components: - - rot: 3.141592653589793 rad - pos: -25.5,-18.5 - parent: 1 - type: Transform -- uid: 13181 - type: ComputerPowerMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-1.5 - parent: 1 - type: Transform -- uid: 13182 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-3.5 - parent: 1 - type: Transform -- uid: 13183 - type: CrateEngineeringCableBulk - components: - - pos: -23.5,-3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13184 - type: LockerWeldingSuppliesFilled - components: - - pos: -24.5,-3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13185 - type: LockerWeldingSuppliesFilled - components: - - pos: -5.5,-17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13186 - type: CableApcExtension - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform -- uid: 13187 - type: CableApcExtension - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform -- uid: 13188 - type: CableApcExtension - components: - - pos: 11.5,-7.5 - parent: 1 - type: Transform -- uid: 13189 - type: CableApcExtension - components: - - pos: 10.5,-7.5 - parent: 1 - type: Transform -- uid: 13190 - type: CableApcExtension - components: - - pos: 9.5,-7.5 - parent: 1 - type: Transform -- uid: 13191 - type: CableApcExtension - components: - - pos: 8.5,-7.5 - parent: 1 - type: Transform -- uid: 13192 - type: CableApcExtension - components: - - pos: 7.5,-7.5 - parent: 1 - type: Transform -- uid: 13193 - type: CableApcExtension - components: - - pos: 6.5,-7.5 - parent: 1 - type: Transform -- uid: 13194 - type: CableApcExtension - components: - - pos: 5.5,-7.5 - parent: 1 - type: Transform -- uid: 13195 - type: CableApcExtension - components: - - pos: 4.5,-7.5 - parent: 1 - type: Transform -- uid: 13196 - type: APCBasic - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform -- uid: 13197 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -21.5,8.5 - parent: 1 - type: Transform -- uid: 13198 - type: APCBasic - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform -- uid: 13199 - type: Rack - components: - - pos: -26.5,-18.5 - parent: 1 - type: Transform -- uid: 13200 - type: MaintenanceWeaponSpawner - components: - - pos: -26.5,-18.5 - parent: 1 - type: Transform -- uid: 13201 - type: MaintenanceToolSpawner - components: - - pos: -25.5,-3.5 - parent: 1 - type: Transform -- uid: 13202 - type: Catwalk - components: - - pos: -26.5,-16.5 - parent: 1 - type: Transform -- uid: 13203 - type: Catwalk - components: - - pos: -25.5,-16.5 - parent: 1 - type: Transform -- uid: 13204 - type: Catwalk - components: - - pos: -25.5,-17.5 - parent: 1 - type: Transform -- uid: 13205 - type: ChairOfficeDark - components: - - pos: -25.5,-17.5 - parent: 1 - type: Transform -- uid: 13206 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -47.5,12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13207 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -46.5,12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13208 - type: CableApcExtension - components: - - pos: 1.5,19.5 - parent: 1 - type: Transform -- uid: 13209 - type: CableApcExtension - components: - - pos: 0.5,19.5 - parent: 1 - type: Transform -- uid: 13210 - type: CableApcExtension - components: - - pos: 0.5,20.5 - parent: 1 - type: Transform -- uid: 13211 - type: CableApcExtension - components: - - pos: 0.5,21.5 - parent: 1 - type: Transform -- uid: 13212 - type: CableApcExtension - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform -- uid: 13213 - type: CableApcExtension - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform -- uid: 13214 - type: CableApcExtension - components: - - pos: 0.5,24.5 - parent: 1 - type: Transform -- uid: 13215 - type: CableApcExtension - components: - - pos: 0.5,25.5 - parent: 1 - type: Transform -- uid: 13216 - type: CableApcExtension - components: - - pos: 0.5,26.5 - parent: 1 - type: Transform -- uid: 13217 - type: CableApcExtension - components: - - pos: 0.5,27.5 - parent: 1 - type: Transform -- uid: 13218 - type: CableApcExtension - components: - - pos: 0.5,28.5 - parent: 1 - type: Transform -- uid: 13219 - type: CableApcExtension - components: - - pos: 0.5,29.5 - parent: 1 - type: Transform -- uid: 13220 - type: CableApcExtension - components: - - pos: 0.5,30.5 - parent: 1 - type: Transform -- uid: 13221 - type: CableApcExtension - components: - - pos: 0.5,31.5 - parent: 1 - type: Transform -- uid: 13222 - type: CableApcExtension - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform -- uid: 13223 - type: CableApcExtension - components: - - pos: 0.5,33.5 - parent: 1 - type: Transform -- uid: 13224 - type: CableApcExtension - components: - - pos: 0.5,34.5 - parent: 1 - type: Transform -- uid: 13225 - type: CableApcExtension - components: - - pos: 15.5,20.5 - parent: 1 - type: Transform -- uid: 13226 - type: CableApcExtension - components: - - pos: 15.5,21.5 - parent: 1 - type: Transform -- uid: 13227 - type: CableApcExtension - components: - - pos: 15.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13228 - type: CableApcExtension - components: - - pos: 14.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13229 - type: CableApcExtension - components: - - pos: 14.5,23.5 - parent: 1 - type: Transform -- uid: 13230 - type: CableApcExtension - components: - - pos: 14.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13231 - type: CableApcExtension - components: - - pos: 15.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13232 - type: CableApcExtension - components: - - pos: 16.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13233 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13234 - type: CableApcExtension - components: - - pos: 16.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13235 - type: CableApcExtension - components: - - pos: 17.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13236 - type: CableApcExtension - components: - - pos: 28.5,26.5 - parent: 1 - type: Transform -- uid: 13237 - type: CableApcExtension - components: - - pos: 28.5,27.5 - parent: 1 - type: Transform -- uid: 13238 - type: CableApcExtension - components: - - pos: 28.5,29.5 - parent: 1 - type: Transform -- uid: 13239 - type: CableApcExtension - components: - - pos: 28.5,28.5 - parent: 1 - type: Transform -- uid: 13240 - type: CableApcExtension - components: - - pos: 23.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13241 - type: CableApcExtension - components: - - pos: 22.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13242 - type: CableApcExtension - components: - - pos: 21.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13243 - type: CableApcExtension - components: - - pos: 20.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13244 - type: CableApcExtension - components: - - pos: 19.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13245 - type: CableApcExtension - components: - - pos: 24.5,17.5 - parent: 1 - type: Transform -- uid: 13246 - type: CableApcExtension - components: - - pos: 25.5,17.5 - parent: 1 - type: Transform -- uid: 13247 - type: CableApcExtension - components: - - pos: 27.5,20.5 - parent: 1 - type: Transform -- uid: 13248 - type: CableApcExtension - components: - - pos: 27.5,19.5 - parent: 1 - type: Transform -- uid: 13249 - type: CableApcExtension - components: - - pos: 33.5,14.5 - parent: 1 - type: Transform -- uid: 13250 - type: CableApcExtension - components: - - pos: 34.5,14.5 - parent: 1 - type: Transform -- uid: 13251 - type: CableApcExtension - components: - - pos: 35.5,14.5 - parent: 1 - type: Transform -- uid: 13252 - type: CableApcExtension - components: - - pos: 36.5,14.5 - parent: 1 - type: Transform -- uid: 13253 - type: CableApcExtension - components: - - pos: 37.5,14.5 - parent: 1 - type: Transform -- uid: 13254 - type: CableApcExtension - components: - - pos: 38.5,14.5 - parent: 1 - type: Transform -- uid: 13255 - type: CableApcExtension - components: - - pos: 39.5,14.5 - parent: 1 - type: Transform -- uid: 13256 - type: CableApcExtension - components: - - pos: 40.5,14.5 - parent: 1 - type: Transform -- uid: 13257 - type: CableApcExtension - components: - - pos: 41.5,14.5 - parent: 1 - type: Transform -- uid: 13258 - type: CableApcExtension - components: - - pos: 42.5,14.5 - parent: 1 - type: Transform -- uid: 13259 - type: CableApcExtension - components: - - pos: 43.5,14.5 - parent: 1 - type: Transform -- uid: 13260 - type: CableApcExtension - components: - - pos: 44.5,14.5 - parent: 1 - type: Transform -- uid: 13261 - type: CableApcExtension - components: - - pos: 45.5,14.5 - parent: 1 - type: Transform -- uid: 13262 - type: CableApcExtension - components: - - pos: 46.5,14.5 - parent: 1 - type: Transform -- uid: 13263 - type: CableApcExtension - components: - - pos: 47.5,14.5 - parent: 1 - type: Transform -- uid: 13264 - type: CableApcExtension - components: - - pos: 48.5,14.5 - parent: 1 - type: Transform -- uid: 13265 - type: CableApcExtension - components: - - pos: 49.5,14.5 - parent: 1 - type: Transform -- uid: 13266 - type: CableApcExtension - components: - - pos: 49.5,15.5 - parent: 1 - type: Transform -- uid: 13267 - type: CableApcExtension - components: - - pos: 50.5,15.5 - parent: 1 - type: Transform -- uid: 13268 - type: CableApcExtension - components: - - pos: 51.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13269 - type: CableApcExtension - components: - - pos: 48.5,15.5 - parent: 1 - type: Transform -- uid: 13270 - type: CableApcExtension - components: - - pos: 48.5,16.5 - parent: 1 - type: Transform -- uid: 13271 - type: CableApcExtension - components: - - pos: 48.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13272 - type: CableApcExtension - components: - - pos: 46.5,15.5 - parent: 1 - type: Transform -- uid: 13273 - type: CableApcExtension - components: - - pos: 46.5,16.5 - parent: 1 - type: Transform -- uid: 13274 - type: CableApcExtension - components: - - pos: 46.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13275 - type: CableApcExtension - components: - - pos: 49.5,13.5 - parent: 1 - type: Transform -- uid: 13276 - type: CableApcExtension - components: - - pos: 50.5,13.5 - parent: 1 - type: Transform -- uid: 13277 - type: CableApcExtension - components: - - pos: 51.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13278 - type: CableApcExtension - components: - - pos: 46.5,13.5 - parent: 1 - type: Transform -- uid: 13279 - type: CableApcExtension - components: - - pos: 46.5,12.5 - parent: 1 - type: Transform -- uid: 13280 - type: CableApcExtension - components: - - pos: -33.5,23.5 - parent: 1 - type: Transform -- uid: 13281 - type: CableApcExtension - components: - - pos: -32.5,23.5 - parent: 1 - type: Transform -- uid: 13282 - type: CableApcExtension - components: - - pos: -32.5,24.5 - parent: 1 - type: Transform -- uid: 13283 - type: CableApcExtension - components: - - pos: -32.5,25.5 - parent: 1 - type: Transform -- uid: 13284 - type: CableApcExtension - components: - - pos: -32.5,26.5 - parent: 1 - type: Transform -- uid: 13285 - type: CableApcExtension - components: - - pos: -32.5,27.5 - parent: 1 - type: Transform -- uid: 13286 - type: CableApcExtension - components: - - pos: -32.5,28.5 - parent: 1 - type: Transform -- uid: 13287 - type: CableApcExtension - components: - - pos: -32.5,29.5 - parent: 1 - type: Transform -- uid: 13288 - type: CableApcExtension - components: - - pos: -32.5,30.5 - parent: 1 - type: Transform -- uid: 13289 - type: CableApcExtension - components: - - pos: -32.5,31.5 - parent: 1 - type: Transform -- uid: 13290 - type: CableApcExtension - components: - - pos: -32.5,32.5 - parent: 1 - type: Transform -- uid: 13291 - type: CableApcExtension - components: - - pos: -32.5,33.5 - parent: 1 - type: Transform -- uid: 13292 - type: CableApcExtension - components: - - pos: -32.5,34.5 - parent: 1 - type: Transform -- uid: 13293 - type: CableApcExtension - components: - - pos: -32.5,22.5 - parent: 1 - type: Transform -- uid: 13294 - type: CableApcExtension - components: - - pos: -32.5,21.5 - parent: 1 - type: Transform -- uid: 13295 - type: CableApcExtension - components: - - pos: -32.5,20.5 - parent: 1 - type: Transform -- uid: 13296 - type: CableApcExtension - components: - - pos: -32.5,19.5 - parent: 1 - type: Transform -- uid: 13297 - type: CableApcExtension - components: - - pos: -32.5,18.5 - parent: 1 - type: Transform -- uid: 13298 - type: CableApcExtension - components: - - pos: -32.5,17.5 - parent: 1 - type: Transform -- uid: 13299 - type: AirlockEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-2.5 - parent: 1 - type: Transform -- uid: 13300 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13301 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13302 - type: PoweredSmallLight - components: - - pos: -24.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13303 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13304 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -13.5,7.5 - parent: 1 - type: Transform -- uid: 13305 - type: RitualDagger - components: - - pos: -13.567444,6.478457 - parent: 1 - type: Transform -- uid: 13306 - type: ClothingHeadHelmetSyndicate - components: - - pos: -21.718893,-0.28347415 - parent: 1 - type: Transform -- uid: 13307 - type: VehicleKeySyndicateSegway - components: - - pos: -21.378124,-0.6524431 - parent: 1 - type: Transform -- uid: 13308 - type: ClosetEmergencyFilledRandom - components: - - pos: -28.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13309 - type: ClosetFireFilled - components: - - pos: -28.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13310 - type: ClosetMaintenanceFilledRandom - components: - - pos: -28.5,-1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13311 - type: ChairFolding - components: - - pos: -27.5,3.5 - parent: 1 - type: Transform -- uid: 13312 - type: Table - components: - - pos: -28.5,3.5 - parent: 1 - type: Transform -- uid: 13313 - type: RandomDrinkBottle - components: - - pos: -28.5,3.5 - parent: 1 - type: Transform -- uid: 13314 - type: DrinkShotGlass - components: - - pos: -28.208918,3.5744889 - parent: 1 - type: Transform -- uid: 13315 - type: OxygenCanister - components: - - pos: -28.5,-3.5 - parent: 1 - type: Transform -- uid: 13316 - type: NitrogenCanister - components: - - pos: -28.5,-4.5 - parent: 1 - type: Transform -- uid: 13317 - type: AirCanister - components: - - pos: -28.5,-5.5 - parent: 1 - type: Transform -- uid: 13318 - type: Rack - components: - - pos: -21.5,-3.5 - parent: 1 - type: Transform -- uid: 13319 - type: BedsheetBlack - components: - - pos: -10.5,10.5 - parent: 1 - type: Transform -- uid: 13320 - type: ClosetMaintenanceFilledRandom - components: - - pos: -20.5,5.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13321 - type: Rack - components: - - pos: -20.5,6.5 - parent: 1 - type: Transform -- uid: 13322 - type: ClosetMaintenanceFilledRandom - components: - - pos: -16.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13323 - type: ClosetEmergencyFilledRandom - components: - - pos: -16.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13324 - type: ClosetFireFilled - components: - - pos: -16.5,9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13325 - type: WeldingFuelTankFull - components: - - pos: -21.5,3.5 - parent: 1 - type: Transform -- uid: 13326 - type: WaterTankFull - components: - - pos: -21.5,2.5 - parent: 1 - type: Transform -- uid: 13327 - type: LockerWeldingSuppliesFilled - components: - - pos: -21.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13328 - type: Rack - components: - - pos: -9.5,10.5 - parent: 1 - type: Transform -- uid: 13329 - type: HospitalCurtainsOpen - components: - - pos: -10.5,10.5 - parent: 1 - type: Transform -- uid: 13330 - type: FoodCakeBirthdaySlice - components: - - pos: -9.337922,10.467162 - parent: 1 - type: Transform -- uid: 13331 - type: BoxBeanbag - components: - - pos: -9.5083065,10.722602 - parent: 1 - type: Transform -- uid: 13332 - type: CigCartonBlack - components: - - pos: -12.518449,10.410398 - parent: 1 - type: Transform -- uid: 13333 - type: Table - components: - - pos: -12.5,10.5 - parent: 1 - type: Transform -- uid: 13334 - type: CheapLighter - components: - - pos: -12.437875,10.642552 - parent: 1 - type: Transform -- uid: 13335 - type: CheapRollerBed - components: - - pos: 14.5,17.5 - parent: 1 - type: Transform -- uid: 13336 - type: CheapRollerBed - components: - - pos: 15.5,17.5 - parent: 1 - type: Transform -- uid: 13337 - type: CheapRollerBed - components: - - pos: 8.5,17.5 - parent: 1 - type: Transform -- uid: 13338 - type: CheapRollerBed - components: - - pos: 7.5,17.5 - parent: 1 - type: Transform -- uid: 13339 - type: EmergencyRollerBed - components: - - pos: 18.5,26.5 - parent: 1 - type: Transform -- uid: 13340 - type: MaintenanceWeaponSpawner - components: - - pos: -21.5,-4.5 - parent: 1 - type: Transform -- uid: 13341 - type: MaintenanceToolSpawner - components: - - pos: -21.5,-3.5 - parent: 1 - type: Transform -- uid: 13342 - type: MaintenanceFluffSpawner - components: - - pos: -27.5,3.5 - parent: 1 - type: Transform -- uid: 13343 - type: MaintenanceToolSpawner - components: - - pos: -20.5,6.5 - parent: 1 - type: Transform -- uid: 13344 - type: MaintenanceWeaponSpawner - components: - - pos: -18.5,11.5 - parent: 1 - type: Transform -- uid: 13345 - type: MaintenanceToolSpawner - components: - - pos: -20.5,11.5 - parent: 1 - type: Transform -- uid: 13346 - type: MaintenanceToolSpawner - components: - - pos: -18.5,10.5 - parent: 1 - type: Transform -- uid: 13347 - type: AirlockMaintLocked - components: - - pos: -35.5,17.5 - parent: 1 - type: Transform -- uid: 13348 - type: AirlockMaintLocked - components: - - pos: -33.5,23.5 - parent: 1 - type: Transform -- uid: 13349 - type: ClosetMaintenanceFilledRandom - components: - - pos: -34.5,20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13350 - type: ClosetEmergencyFilledRandom - components: - - pos: -34.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13351 - type: ClosetFireFilled - components: - - pos: -34.5,18.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13352 - type: WeldingFuelTankFull - components: - - pos: -35.5,30.5 - parent: 1 - type: Transform -- uid: 13353 - type: OxygenCanister - components: - - pos: -35.5,31.5 - parent: 1 - type: Transform -- uid: 13354 - type: NitrogenCanister - components: - - pos: -35.5,32.5 - parent: 1 - type: Transform -- uid: 13355 - type: ClosetMaintenanceFilledRandom - components: - - pos: -34.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13356 - type: ClosetEmergencyFilledRandom - components: - - pos: -35.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13357 - type: ClosetFireFilled - components: - - pos: -36.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13358 - type: Table - components: - - pos: -39.5,34.5 - parent: 1 - type: Transform -- uid: 13359 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -39.5,33.5 - parent: 1 - type: Transform -- uid: 13360 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: -39.5,32.5 - parent: 1 - type: Transform -- uid: 13361 - type: MaintenanceFluffSpawner - components: - - rot: 1.5707963267948966 rad - pos: -39.5,33.5 - parent: 1 - type: Transform -- uid: 13362 - type: MaintenanceToolSpawner - components: - - pos: -39.5,32.5 - parent: 1 - type: Transform -- uid: 13363 - type: MaintenanceWeaponSpawner - components: - - pos: -37.5,32.5 - parent: 1 - type: Transform -- uid: 13364 - type: RandomFoodMeal - components: - - pos: -39.5,34.5 - parent: 1 - type: Transform -- uid: 13365 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13366 - type: PoweredSmallLight - components: - - pos: -41.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13367 - type: AirlockMaintLocked - components: - - pos: -29.5,23.5 - parent: 1 - type: Transform -- uid: 13368 - type: WallSolid - components: - - pos: -28.5,20.5 - parent: 1 - type: Transform -- uid: 13369 - type: ClosetFireFilled - components: - - pos: -28.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13370 - type: ClosetEmergencyFilledRandom - components: - - pos: -28.5,18.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13371 - type: ClosetMaintenanceFilledRandom - components: - - pos: -28.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13372 - type: ClosetToolFilled - components: - - pos: -28.5,21.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13373 - type: LockerWeldingSuppliesFilled - components: - - pos: -28.5,22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13374 - type: WeldingFuelTankFull - components: - - pos: -28.5,27.5 - parent: 1 - type: Transform -- uid: 13375 - type: WaterTankFull - components: - - pos: -27.5,27.5 - parent: 1 - type: Transform -- uid: 13376 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -26.5,27.5 - parent: 1 - type: Transform -- uid: 13377 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -24.5,27.5 - parent: 1 - type: Transform -- uid: 13378 - type: NitrogenCanister - components: - - pos: -26.5,27.5 - parent: 1 - type: Transform -- uid: 13379 - type: OxygenCanister - components: - - pos: -25.5,27.5 - parent: 1 - type: Transform -- uid: 13380 - type: AirCanister - components: - - pos: -24.5,27.5 - parent: 1 - type: Transform -- uid: 13381 - type: Barricade - components: - - rot: 1.5707963267948966 rad - pos: -19.5,27.5 - parent: 1 - type: Transform -- uid: 13382 - type: ToyAi - components: - - pos: -18.633104,28.672619 - parent: 1 - type: Transform -- uid: 13383 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.292332,28.360415 - parent: 1 - type: Transform -- uid: 13384 - type: CowToolboxFilled - components: - - pos: -17.809574,28.530706 - parent: 1 - type: Transform -- uid: 13385 - type: MaintenanceWeaponSpawner - components: - - pos: -17.5,27.5 - parent: 1 - type: Transform -- uid: 13386 - type: ClosetFireFilled - components: - - pos: -24.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13387 - type: ClosetEmergencyFilledRandom - components: - - pos: -24.5,33.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13388 - type: ClosetMaintenanceFilledRandom - components: - - pos: -24.5,32.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13389 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -24.5,31.5 - parent: 1 - type: Transform -- uid: 13390 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -24.5,30.5 - parent: 1 - type: Transform -- uid: 13391 - type: MaintenanceWeaponSpawner - components: - - pos: -28.5,25.5 - parent: 1 - type: Transform -- uid: 13392 - type: MaintenanceFluffSpawner - components: - - pos: -24.5,31.5 - parent: 1 - type: Transform -- uid: 13393 - type: RandomFoodSingle - components: - - pos: -24.5,30.5 - parent: 1 - type: Transform -- uid: 13394 - type: RandomVending - components: - - pos: -24.5,29.5 - parent: 1 - type: Transform -- uid: 13395 - type: ClosetFireFilled - components: - - pos: -23.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13396 - type: ClosetEmergencyFilledRandom - components: - - pos: -23.5,41.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13397 - type: Table - components: - - pos: -23.5,43.5 - parent: 1 - type: Transform -- uid: 13398 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -23.5,44.5 - parent: 1 - type: Transform -- uid: 13399 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -23.5,42.5 - parent: 1 - type: Transform -- uid: 13400 - type: RadioHandheld - components: - - pos: -23.682875,43.57468 - parent: 1 - type: Transform -- uid: 13401 - type: Cigar - components: - - pos: -23.455694,43.57468 - parent: 1 - type: Transform -- uid: 13402 - type: CigarSpent - components: - - pos: -23.228514,43.489532 - parent: 1 - type: Transform -- uid: 13403 - type: MatchstickSpent - components: - - pos: -23.342106,43.347622 - parent: 1 - type: Transform -- uid: 13404 - type: Matchbox - components: - - pos: -23.569286,43.8585 - parent: 1 - type: Transform -- uid: 13405 - type: MaintenanceFluffSpawner - components: - - pos: -23.5,42.5 - parent: 1 - type: Transform -- uid: 13406 - type: HospitalCurtainsOpen - components: - - pos: -38.5,42.5 - parent: 1 - type: Transform -- uid: 13407 - type: HospitalCurtainsOpen - components: - - pos: -38.5,46.5 - parent: 1 - type: Transform -- uid: 13408 - type: ClosetMaintenanceFilledRandom - components: - - pos: -22.5,54.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13409 - type: ClosetFireFilled - components: - - pos: -19.5,55.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13410 - type: ClosetEmergencyFilledRandom - components: - - pos: -19.5,56.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13411 - type: Rack - components: - - pos: -25.5,51.5 - parent: 1 - type: Transform -- uid: 13412 - type: Rack - components: - - pos: -22.5,55.5 - parent: 1 - type: Transform -- uid: 13413 - type: RandomArcade - components: - - pos: -12.5,69.5 - parent: 1 - type: Transform -- uid: 13414 - type: Rack - components: - - pos: -14.5,64.5 - parent: 1 - type: Transform -- uid: 13415 - type: RandomArcade - components: - - pos: -12.5,70.5 - parent: 1 - type: Transform -- uid: 13416 - type: AirCanister - components: - - pos: -18.5,61.5 - parent: 1 - type: Transform -- uid: 13417 - type: NitrogenCanister - components: - - pos: -18.5,60.5 - parent: 1 - type: Transform -- uid: 13418 - type: OxygenCanister - components: - - pos: -18.5,59.5 - parent: 1 - type: Transform -- uid: 13419 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -18.5,61.5 - parent: 1 - type: Transform -- uid: 13420 - type: WindowDirectional - components: - - pos: -18.5,59.5 - parent: 1 - type: Transform -- uid: 13421 - type: WeldingFuelTankFull - components: - - pos: -25.5,54.5 - parent: 1 - type: Transform -- uid: 13422 - type: WaterTankFull - components: - - pos: -25.5,55.5 - parent: 1 - type: Transform -- uid: 13423 - type: ClosetMaintenanceFilledRandom - components: - - pos: -25.5,58.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13424 - type: ClosetToolFilled - components: - - pos: -21.5,58.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13425 - type: PlushieLizard - components: - - pos: -23.497978,60.479168 - parent: 1 - type: Transform -- uid: 13426 - type: ChairFolding - components: - - pos: -24.5,58.5 - parent: 1 - type: Transform -- uid: 13427 - type: ChairFolding - components: - - pos: -22.5,58.5 - parent: 1 - type: Transform -- uid: 13428 - type: TableCarpet - components: - - pos: -23.5,58.5 - parent: 1 - type: Transform -- uid: 13429 - type: IngotGold1 - components: - - pos: -23.753557,58.80462 - parent: 1 - type: Transform -- uid: 13430 - type: IngotGold1 - components: - - pos: -23.61157,58.520798 - parent: 1 - type: Transform -- uid: 13431 - type: SpaceCash - components: - - pos: -23.58317,58.71947 - parent: 1 - type: Transform -- uid: 13432 - type: SpaceCash - components: - - pos: -23.497978,58.520798 - parent: 1 - type: Transform -- uid: 13433 - type: SpaceCash - components: - - pos: -23.412786,58.747852 - parent: 1 - type: Transform -- uid: 13434 - type: SpaceCash - components: - - pos: -23.35599,58.94653 - parent: 1 - type: Transform -- uid: 13435 - type: MaintenanceFluffSpawner - components: - - pos: -22.5,58.5 - parent: 1 - type: Transform -- uid: 13436 - type: MaintenanceToolSpawner - components: - - pos: -22.5,55.5 - parent: 1 - type: Transform -- uid: 13437 - type: MaintenanceWeaponSpawner - components: - - pos: -22.5,56.5 - parent: 1 - type: Transform -- uid: 13438 - type: MachineFrameDestroyed - components: - - pos: -25.5,56.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13439 - type: CrateEngineeringGear - components: - - pos: -25.5,52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13440 - type: AirlockEngineeringLocked - components: - - pos: -24.5,53.5 - parent: 1 - type: Transform -- uid: 13441 - type: CrateEngineeringCableHV - components: - - pos: -37.5,55.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13442 - type: CrateEngineeringCableHV - components: - - pos: 38.5,55.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13443 - type: Rack - components: - - pos: 38.5,54.5 - parent: 1 - type: Transform -- uid: 13444 - type: Rack - components: - - pos: -37.5,54.5 - parent: 1 - type: Transform -- uid: 13445 - type: Wirecutter - components: - - pos: -37.329777,54.494305 - parent: 1 - type: Transform -- uid: 13446 - type: Multitool - components: - - pos: -37.556957,54.69298 - parent: 1 - type: Transform -- uid: 13447 - type: ClosetMaintenanceFilledRandom - components: - - pos: -44.5,46.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13448 - type: ClosetFireFilled - components: - - pos: -42.5,45.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13449 - type: ClosetEmergencyFilledRandom - components: - - pos: -42.5,46.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13450 - type: MachineFrame - components: - - pos: -47.5,46.5 - parent: 1 - type: Transform -- uid: 13451 - type: Table - components: - - pos: -46.5,46.5 - parent: 1 - type: Transform -- uid: 13452 - type: Barricade - components: - - pos: -45.5,48.5 - parent: 1 - type: Transform -- uid: 13453 - type: AdvancedCapacitorStockPart - components: - - pos: -46.782776,46.69757 - parent: 1 - type: Transform -- uid: 13454 - type: AdvancedMatterBinStockPart - components: - - pos: -46.41361,46.78272 - parent: 1 - type: Transform -- uid: 13455 - type: ChairFolding - components: - - pos: -46.5,47.5 - parent: 1 - type: Transform -- uid: 13456 - type: WeldingFuelTankFull - components: - - pos: -44.5,50.5 - parent: 1 - type: Transform -- uid: 13457 - type: WaterTankFull - components: - - pos: -44.5,51.5 - parent: 1 - type: Transform -- uid: 13458 - type: Rack - components: - - pos: -41.5,50.5 - parent: 1 - type: Transform -- uid: 13459 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -44.5,47.5 - parent: 1 - type: Transform -- uid: 13460 - type: PoweredSmallLight - components: - - pos: -41.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13461 - type: PoweredSmallLight - components: - - pos: -20.5,57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13462 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -14.5,62.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13463 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -12.5,66.5 - parent: 1 - type: Transform -- uid: 13464 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: -36.5,52.5 - parent: 1 - type: Transform -- uid: 13465 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: -26.5,57.5 - parent: 1 - type: Transform -- uid: 13466 - type: ClosetFireFilled - components: - - pos: -5.5,70.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13467 - type: ClosetEmergencyFilledRandom - components: - - pos: -5.5,69.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13468 - type: ClosetMaintenanceFilledRandom - components: - - pos: -5.5,68.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13469 - type: Bookshelf - components: - - pos: -19.5,64.5 - parent: 1 - type: Transform -- uid: 13470 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -17.5,64.5 - parent: 1 - type: Transform -- uid: 13471 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -18.5,64.5 - parent: 1 - type: Transform -- uid: 13472 - type: BookRandom - components: - - pos: -17.602375,64.72776 - parent: 1 - type: Transform -- uid: 13473 - type: Rack - components: - - pos: -15.5,64.5 - parent: 1 - type: Transform -- uid: 13474 - type: MachineFrameDestroyed - components: - - pos: -16.5,64.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13475 - type: TableWood - components: - - pos: -12.5,64.5 - parent: 1 - type: Transform -- uid: 13476 - type: ChairWood - components: - - pos: -12.5,65.5 - parent: 1 - type: Transform -- uid: 13477 - type: BookRandom - components: - - pos: -12.50277,64.65098 - parent: 1 - type: Transform -- uid: 13478 - type: ClosetMaintenanceFilledRandom - components: - - pos: -12.5,63.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13479 - type: Barricade - components: - - pos: -13.5,68.5 - parent: 1 - type: Transform -- uid: 13480 - type: MaintenanceFluffSpawner - components: - - pos: -24.5,58.5 - parent: 1 - type: Transform -- uid: 13481 - type: MaintenanceFluffSpawner - components: - - pos: -44.5,47.5 - parent: 1 - type: Transform -- uid: 13482 - type: MaintenanceToolSpawner - components: - - pos: -41.5,50.5 - parent: 1 - type: Transform -- uid: 13483 - type: MaintenanceToolSpawner - components: - - pos: -25.5,51.5 - parent: 1 - type: Transform -- uid: 13484 - type: MaintenanceToolSpawner - components: - - pos: -15.5,64.5 - parent: 1 - type: Transform -- uid: 13485 - type: MaintenanceWeaponSpawner - components: - - pos: -14.5,64.5 - parent: 1 - type: Transform -- uid: 13486 - type: MaintenanceWeaponSpawner - components: - - pos: -12.5,62.5 - parent: 1 - type: Transform -- uid: 13487 - type: MaintenanceFluffSpawner - components: - - pos: -18.5,64.5 - parent: 1 - type: Transform -- uid: 13488 - type: MaintenanceWeaponSpawner - components: - - pos: -13.5,70.5 - parent: 1 - type: Transform -- uid: 13489 - type: Mirror - components: - - rot: 1.5707963267948966 rad - pos: -9.5,70.5 - parent: 1 - type: Transform -- uid: 13490 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -8.5,69.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13491 - type: CableMV - components: - - pos: -7.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13492 - type: GasPipeStraight - components: - - pos: 4.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13493 - type: PoweredlightLED - components: - - rot: 1.5707963267948966 rad - pos: 2.5,72.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13494 - type: PoweredlightLED - components: - - rot: -1.5707963267948966 rad - pos: 5.5,81.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13495 - type: PoweredlightLED - components: - - rot: 1.5707963267948966 rad - pos: -6.5,81.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13496 - type: PoweredlightLED - components: - - rot: 3.141592653589793 rad - pos: -0.5,70.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13497 - type: CableMV - components: - - pos: -25.5,-0.5 - parent: 1 - type: Transform -- uid: 13498 - type: CableMV - components: - - pos: -25.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13499 - type: CableMV - components: - - pos: -25.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13500 - type: CableMV - components: - - pos: -24.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13501 - type: CableMV - components: - - pos: -23.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13502 - type: CableMV - components: - - pos: -22.5,-2.5 - parent: 1 - type: Transform -- uid: 13503 - type: CableMV - components: - - pos: -21.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13504 - type: CableMV - components: - - pos: -20.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13505 - type: CableMV - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13506 - type: CableMV - components: - - pos: -19.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13507 - type: CableMV - components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13508 - type: CableMV - components: - - pos: -19.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13509 - type: CableMV - components: - - pos: -19.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13510 - type: CableMV - components: - - pos: -19.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13511 - type: CableMV - components: - - pos: -19.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13512 - type: CableMV - components: - - pos: -19.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13513 - type: CableMV - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13514 - type: CableMV - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13515 - type: CableMV - components: - - pos: -19.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13516 - type: CableMV - components: - - pos: -20.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13517 - type: CableMV - components: - - pos: -21.5,7.5 - parent: 1 - type: Transform -- uid: 13518 - type: CableMV - components: - - pos: -21.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13519 - type: CableMV - components: - - pos: -18.5,-0.5 - parent: 1 - type: Transform -- uid: 13520 - type: CableMV - components: - - pos: -17.5,-0.5 - parent: 1 - type: Transform -- uid: 13521 - type: CableMV - components: - - pos: -16.5,-0.5 - parent: 1 - type: Transform -- uid: 13522 - type: CableMV - components: - - pos: -15.5,-0.5 - parent: 1 - type: Transform -- uid: 13523 - type: CableMV - components: - - pos: -15.5,0.5 - parent: 1 - type: Transform -- uid: 13524 - type: CableMV - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform -- uid: 13525 - type: CableMV - components: - - pos: -13.5,0.5 - parent: 1 - type: Transform -- uid: 13526 - type: CableMV - components: - - pos: -12.5,0.5 - parent: 1 - type: Transform -- uid: 13527 - type: CableMV - components: - - pos: -11.5,0.5 - parent: 1 - type: Transform -- uid: 13528 - type: CableMV - components: - - pos: -11.5,1.5 - parent: 1 - type: Transform -- uid: 13529 - type: CableMV - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform -- uid: 13530 - type: CableMV - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform -- uid: 13531 - type: CableMV - components: - - pos: -11.5,4.5 - parent: 1 - type: Transform -- uid: 13532 - type: CableMV - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13533 - type: CableMV - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13534 - type: CableApcExtension - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13535 - type: CableApcExtension - components: - - pos: -21.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13536 - type: CableApcExtension - components: - - pos: -22.5,-2.5 - parent: 1 - type: Transform -- uid: 13537 - type: CableApcExtension - components: - - pos: -23.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13538 - type: CableApcExtension - components: - - pos: -24.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13539 - type: CableApcExtension - components: - - pos: -25.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13540 - type: CableApcExtension - components: - - pos: -20.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13541 - type: CableApcExtension - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13542 - type: CableApcExtension - components: - - pos: -19.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13543 - type: CableApcExtension - components: - - pos: -19.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13544 - type: CableApcExtension - components: - - pos: -19.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13545 - type: CableApcExtension - components: - - pos: -20.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13546 - type: CableApcExtension - components: - - pos: -21.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13547 - type: CableApcExtension - components: - - pos: -22.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13548 - type: CableApcExtension - components: - - pos: -23.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13549 - type: CableApcExtension - components: - - pos: -24.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13550 - type: CableApcExtension - components: - - pos: -25.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13551 - type: CableApcExtension - components: - - pos: -26.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13552 - type: CableApcExtension - components: - - pos: -27.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13553 - type: CableApcExtension - components: - - pos: -27.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13554 - type: CableApcExtension - components: - - pos: -27.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13555 - type: CableApcExtension - components: - - pos: -27.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13556 - type: CableApcExtension - components: - - pos: -27.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13557 - type: CableApcExtension - components: - - pos: -27.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13558 - type: CableApcExtension - components: - - pos: -27.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13559 - type: CableApcExtension - components: - - pos: -27.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13560 - type: CableApcExtension - components: - - pos: -28.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13561 - type: CableApcExtension - components: - - pos: -29.5,1.5 - parent: 1 - type: Transform -- uid: 13562 - type: CableApcExtension - components: - - pos: -30.5,1.5 - parent: 1 - type: Transform -- uid: 13563 - type: CableApcExtension - components: - - pos: -30.5,2.5 - parent: 1 - type: Transform -- uid: 13564 - type: CableApcExtension - components: - - pos: -30.5,3.5 - parent: 1 - type: Transform -- uid: 13565 - type: CableApcExtension - components: - - pos: -30.5,0.5 - parent: 1 - type: Transform -- uid: 13566 - type: CableApcExtension - components: - - pos: -30.5,-0.5 - parent: 1 - type: Transform -- uid: 13567 - type: CableApcExtension - components: - - pos: -30.5,-1.5 - parent: 1 - type: Transform -- uid: 13568 - type: CableApcExtension - components: - - pos: -30.5,-2.5 - parent: 1 - type: Transform -- uid: 13569 - type: CableApcExtension - components: - - pos: -30.5,-3.5 - parent: 1 - type: Transform -- uid: 13570 - type: CableApcExtension - components: - - pos: -30.5,-4.5 - parent: 1 - type: Transform -- uid: 13571 - type: CableApcExtension - components: - - pos: -30.5,-5.5 - parent: 1 - type: Transform -- uid: 13572 - type: CableApcExtension - components: - - pos: -30.5,-6.5 - parent: 1 - type: Transform -- uid: 13573 - type: CableApcExtension - components: - - pos: -30.5,-7.5 - parent: 1 - type: Transform -- uid: 13574 - type: CableApcExtension - components: - - pos: -29.5,-7.5 - parent: 1 - type: Transform -- uid: 13575 - type: CableApcExtension - components: - - pos: -28.5,-7.5 - parent: 1 - type: Transform -- uid: 13576 - type: CableApcExtension - components: - - pos: -27.5,-7.5 - parent: 1 - type: Transform -- uid: 13577 - type: CableApcExtension - components: - - pos: -26.5,-7.5 - parent: 1 - type: Transform -- uid: 13578 - type: CableApcExtension - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform -- uid: 13579 - type: CableApcExtension - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform -- uid: 13580 - type: CableApcExtension - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform -- uid: 13581 - type: CableApcExtension - components: - - pos: -23.5,-7.5 - parent: 1 - type: Transform -- uid: 13582 - type: CableApcExtension - components: - - pos: -22.5,-7.5 - parent: 1 - type: Transform -- uid: 13583 - type: CableApcExtension - components: - - pos: -21.5,-7.5 - parent: 1 - type: Transform -- uid: 13584 - type: CableApcExtension - components: - - pos: -20.5,-7.5 - parent: 1 - type: Transform -- uid: 13585 - type: CableApcExtension - components: - - pos: -19.5,-7.5 - parent: 1 - type: Transform -- uid: 13586 - type: CableApcExtension - components: - - pos: -18.5,-7.5 - parent: 1 - type: Transform -- uid: 13587 - type: CableApcExtension - components: - - pos: -17.5,-7.5 - parent: 1 - type: Transform -- uid: 13588 - type: CableApcExtension - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform -- uid: 13589 - type: CableApcExtension - components: - - pos: -16.5,-17.5 - parent: 1 - type: Transform -- uid: 13590 - type: CableApcExtension - components: - - pos: -16.5,-16.5 - parent: 1 - type: Transform -- uid: 13591 - type: CableApcExtension - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform -- uid: 13592 - type: CableApcExtension - components: - - pos: -16.5,-14.5 - parent: 1 - type: Transform -- uid: 13593 - type: CableApcExtension - components: - - pos: -16.5,-13.5 - parent: 1 - type: Transform -- uid: 13594 - type: CableApcExtension - components: - - pos: -16.5,-12.5 - parent: 1 - type: Transform -- uid: 13595 - type: CableApcExtension - components: - - pos: -17.5,-12.5 - parent: 1 - type: Transform -- uid: 13596 - type: CableApcExtension - components: - - pos: -18.5,-12.5 - parent: 1 - type: Transform -- uid: 13597 - type: CableApcExtension - components: - - pos: -19.5,-12.5 - parent: 1 - type: Transform -- uid: 13598 - type: CableApcExtension - components: - - pos: -20.5,-12.5 - parent: 1 - type: Transform -- uid: 13599 - type: CableApcExtension - components: - - pos: -21.5,-12.5 - parent: 1 - type: Transform -- uid: 13600 - type: CableApcExtension - components: - - pos: -22.5,-12.5 - parent: 1 - type: Transform -- uid: 13601 - type: CableApcExtension - components: - - pos: -23.5,-12.5 - parent: 1 - type: Transform -- uid: 13602 - type: CableApcExtension - components: - - pos: -24.5,-12.5 - parent: 1 - type: Transform -- uid: 13603 - type: CableApcExtension - components: - - pos: -28.5,-11.5 - parent: 1 - type: Transform -- uid: 13604 - type: CableApcExtension - components: - - pos: -31.5,-7.5 - parent: 1 - type: Transform -- uid: 13605 - type: CableApcExtension - components: - - pos: -32.5,-7.5 - parent: 1 - type: Transform -- uid: 13606 - type: CableApcExtension - components: - - pos: -19.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13607 - type: CableApcExtension - components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13608 - type: CableApcExtension - components: - - pos: -19.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13609 - type: CableApcExtension - components: - - pos: -19.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13610 - type: CableApcExtension - components: - - pos: -19.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13611 - type: CableApcExtension - components: - - pos: -19.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13612 - type: CableApcExtension - components: - - pos: -19.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13613 - type: CableApcExtension - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13614 - type: CableApcExtension - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13615 - type: CableApcExtension - components: - - pos: -19.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13616 - type: CableApcExtension - components: - - pos: -18.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13617 - type: CableApcExtension - components: - - pos: -17.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13618 - type: CableApcExtension - components: - - pos: -16.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13619 - type: CableApcExtension - components: - - pos: -15.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13620 - type: CableApcExtension - components: - - pos: -15.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13621 - type: CableApcExtension - components: - - pos: -15.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13622 - type: CableApcExtension - components: - - pos: -15.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13623 - type: CableApcExtension - components: - - pos: -15.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13624 - type: CableApcExtension - components: - - pos: -21.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13625 - type: CableApcExtension - components: - - pos: -22.5,8.5 - parent: 1 - type: Transform -- uid: 13626 - type: CableApcExtension - components: - - pos: -23.5,8.5 - parent: 1 - type: Transform -- uid: 13627 - type: CableApcExtension - components: - - pos: -24.5,8.5 - parent: 1 - type: Transform -- uid: 13628 - type: CableApcExtension - components: - - pos: -25.5,8.5 - parent: 1 - type: Transform -- uid: 13629 - type: CableApcExtension - components: - - pos: -26.5,8.5 - parent: 1 - type: Transform -- uid: 13630 - type: CableApcExtension - components: - - pos: -27.5,8.5 - parent: 1 - type: Transform -- uid: 13631 - type: CableApcExtension - components: - - pos: -28.5,8.5 - parent: 1 - type: Transform -- uid: 13632 - type: CableApcExtension - components: - - pos: -24.5,1.5 - parent: 1 - type: Transform -- uid: 13633 - type: CableApcExtension - components: - - pos: -24.5,2.5 - parent: 1 - type: Transform -- uid: 13634 - type: CableApcExtension - components: - - pos: -24.5,3.5 - parent: 1 - type: Transform -- uid: 13635 - type: CableApcExtension - components: - - pos: -24.5,4.5 - parent: 1 - type: Transform -- uid: 13636 - type: CableApcExtension - components: - - pos: -24.5,5.5 - parent: 1 - type: Transform -- uid: 13637 - type: CableApcExtension - components: - - pos: -24.5,6.5 - parent: 1 - type: Transform -- uid: 13638 - type: CableApcExtension - components: - - pos: -24.5,7.5 - parent: 1 - type: Transform -- uid: 13639 - type: CableApcExtension - components: - - pos: -24.5,9.5 - parent: 1 - type: Transform -- uid: 13640 - type: CableApcExtension - components: - - pos: -24.5,10.5 - parent: 1 - type: Transform -- uid: 13641 - type: CableApcExtension - components: - - pos: -24.5,11.5 - parent: 1 - type: Transform -- uid: 13642 - type: CableApcExtension - components: - - pos: -23.5,11.5 - parent: 1 - type: Transform -- uid: 13643 - type: CableApcExtension - components: - - pos: -22.5,11.5 - parent: 1 - type: Transform -- uid: 13644 - type: CableApcExtension - components: - - pos: -22.5,12.5 - parent: 1 - type: Transform -- uid: 13645 - type: CableApcExtension - components: - - pos: -22.5,13.5 - parent: 1 - type: Transform -- uid: 13646 - type: CableApcExtension - components: - - pos: -23.5,13.5 - parent: 1 - type: Transform -- uid: 13647 - type: CableApcExtension - components: - - pos: -24.5,13.5 - parent: 1 - type: Transform -- uid: 13648 - type: CableApcExtension - components: - - pos: -25.5,13.5 - parent: 1 - type: Transform -- uid: 13649 - type: CableApcExtension - components: - - pos: -26.5,13.5 - parent: 1 - type: Transform -- uid: 13650 - type: CableApcExtension - components: - - pos: -27.5,13.5 - parent: 1 - type: Transform -- uid: 13651 - type: CableApcExtension - components: - - pos: -28.5,13.5 - parent: 1 - type: Transform -- uid: 13652 - type: CableApcExtension - components: - - pos: -29.5,13.5 - parent: 1 - type: Transform -- uid: 13653 - type: CableApcExtension - components: - - pos: -30.5,13.5 - parent: 1 - type: Transform -- uid: 13654 - type: CableApcExtension - components: - - pos: -30.5,12.5 - parent: 1 - type: Transform -- uid: 13655 - type: CableApcExtension - components: - - pos: -30.5,11.5 - parent: 1 - type: Transform -- uid: 13656 - type: CableApcExtension - components: - - pos: -30.5,10.5 - parent: 1 - type: Transform -- uid: 13657 - type: CableApcExtension - components: - - pos: -30.5,9.5 - parent: 1 - type: Transform -- uid: 13658 - type: CableApcExtension - components: - - pos: -30.5,8.5 - parent: 1 - type: Transform -- uid: 13659 - type: CableApcExtension - components: - - pos: -30.5,7.5 - parent: 1 - type: Transform -- uid: 13660 - type: CableApcExtension - components: - - pos: -30.5,6.5 - parent: 1 - type: Transform -- uid: 13661 - type: CableApcExtension - components: - - pos: -21.5,13.5 - parent: 1 - type: Transform -- uid: 13662 - type: CableApcExtension - components: - - pos: -20.5,13.5 - parent: 1 - type: Transform -- uid: 13663 - type: CableApcExtension - components: - - pos: -19.5,13.5 - parent: 1 - type: Transform -- uid: 13664 - type: CableApcExtension - components: - - pos: -18.5,13.5 - parent: 1 - type: Transform -- uid: 13665 - type: CableApcExtension - components: - - pos: -17.5,13.5 - parent: 1 - type: Transform -- uid: 13666 - type: CableApcExtension - components: - - pos: -16.5,13.5 - parent: 1 - type: Transform -- uid: 13667 - type: CableApcExtension - components: - - pos: -15.5,13.5 - parent: 1 - type: Transform -- uid: 13668 - type: CableApcExtension - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform -- uid: 13669 - type: CableApcExtension - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform -- uid: 13670 - type: CableApcExtension - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform -- uid: 13671 - type: CableApcExtension - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13672 - type: CableApcExtension - components: - - pos: -11.5,4.5 - parent: 1 - type: Transform -- uid: 13673 - type: CableApcExtension - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform -- uid: 13674 - type: CableApcExtension - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform -- uid: 13675 - type: CableApcExtension - components: - - pos: -11.5,1.5 - parent: 1 - type: Transform -- uid: 13676 - type: CableApcExtension - components: - - pos: -11.5,0.5 - parent: 1 - type: Transform -- uid: 13677 - type: CableApcExtension - components: - - pos: -11.5,-0.5 - parent: 1 - type: Transform -- uid: 13678 - type: CableApcExtension - components: - - pos: -11.5,-1.5 - parent: 1 - type: Transform -- uid: 13679 - type: CableApcExtension - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform -- uid: 13680 - type: CableApcExtension - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform -- uid: 13681 - type: CableApcExtension - components: - - pos: -11.5,-4.5 - parent: 1 - type: Transform -- uid: 13682 - type: CableApcExtension - components: - - pos: -11.5,-5.5 - parent: 1 - type: Transform -- uid: 13683 - type: CableApcExtension - components: - - pos: -12.5,-3.5 - parent: 1 - type: Transform -- uid: 13684 - type: CableApcExtension - components: - - pos: -13.5,-3.5 - parent: 1 - type: Transform -- uid: 13685 - type: CableApcExtension - components: - - pos: -14.5,-3.5 - parent: 1 - type: Transform -- uid: 13686 - type: CableApcExtension - components: - - pos: -15.5,-3.5 - parent: 1 - type: Transform -- uid: 13687 - type: CableApcExtension - components: - - pos: -16.5,-3.5 - parent: 1 - type: Transform -- uid: 13688 - type: CableApcExtension - components: - - pos: -17.5,-3.5 - parent: 1 - type: Transform -- uid: 13689 - type: CableApcExtension - components: - - pos: -12.5,0.5 - parent: 1 - type: Transform -- uid: 13690 - type: CableApcExtension - components: - - pos: -13.5,0.5 - parent: 1 - type: Transform -- uid: 13691 - type: CableApcExtension - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform -- uid: 13692 - type: CableApcExtension - components: - - pos: -15.5,0.5 - parent: 1 - type: Transform -- uid: 13693 - type: CableApcExtension - components: - - pos: -16.5,0.5 - parent: 1 - type: Transform -- uid: 13694 - type: CableApcExtension - components: - - pos: -17.5,0.5 - parent: 1 - type: Transform -- uid: 13695 - type: CableApcExtension - components: - - pos: -12.5,4.5 - parent: 1 - type: Transform -- uid: 13696 - type: CableApcExtension - components: - - pos: -13.5,4.5 - parent: 1 - type: Transform -- uid: 13697 - type: CableApcExtension - components: - - pos: -14.5,4.5 - parent: 1 - type: Transform -- uid: 13698 - type: CableApcExtension - components: - - pos: -15.5,4.5 - parent: 1 - type: Transform -- uid: 13699 - type: CableApcExtension - components: - - pos: -16.5,4.5 - parent: 1 - type: Transform -- uid: 13700 - type: CableApcExtension - components: - - pos: -17.5,4.5 - parent: 1 - type: Transform -- uid: 13701 - type: CableApcExtension - components: - - pos: -10.5,4.5 - parent: 1 - type: Transform -- uid: 13702 - type: CableApcExtension - components: - - pos: -9.5,4.5 - parent: 1 - type: Transform -- uid: 13703 - type: CableApcExtension - components: - - pos: -9.5,5.5 - parent: 1 - type: Transform -- uid: 13704 - type: CableApcExtension - components: - - pos: -9.5,6.5 - parent: 1 - type: Transform -- uid: 13705 - type: CableApcExtension - components: - - pos: -9.5,7.5 - parent: 1 - type: Transform -- uid: 13706 - type: CableApcExtension - components: - - pos: -9.5,8.5 - parent: 1 - type: Transform -- uid: 13707 - type: CableApcExtension - components: - - pos: -8.5,8.5 - parent: 1 - type: Transform -- uid: 13708 - type: CableApcExtension - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform -- uid: 13709 - type: CableApcExtension - components: - - pos: -8.5,10.5 - parent: 1 - type: Transform -- uid: 13710 - type: CableApcExtension - components: - - pos: -8.5,11.5 - parent: 1 - type: Transform -- uid: 13711 - type: CableApcExtension - components: - - pos: -9.5,11.5 - parent: 1 - type: Transform -- uid: 13712 - type: CableApcExtension - components: - - pos: -10.5,11.5 - parent: 1 - type: Transform -- uid: 13713 - type: CableApcExtension - components: - - pos: -11.5,11.5 - parent: 1 - type: Transform -- uid: 13714 - type: CableApcExtension - components: - - pos: -12.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13715 - type: CableApcExtension - components: - - pos: -13.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13716 - type: CableApcExtension - components: - - pos: -13.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13717 - type: CableApcExtension - components: - - pos: -7.5,11.5 - parent: 1 - type: Transform -- uid: 13718 - type: CableApcExtension - components: - - pos: -6.5,11.5 - parent: 1 - type: Transform -- uid: 13719 - type: CableApcExtension - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform -- uid: 13720 - type: CableApcExtension - components: - - pos: -7.5,4.5 - parent: 1 - type: Transform -- uid: 13721 - type: CableApcExtension - components: - - pos: -6.5,4.5 - parent: 1 - type: Transform -- uid: 13722 - type: CableApcExtension - components: - - pos: -5.5,4.5 - parent: 1 - type: Transform -- uid: 13723 - type: CableApcExtension - components: - - pos: -4.5,4.5 - parent: 1 - type: Transform -- uid: 13724 - type: CableApcExtension - components: - - pos: -4.5,5.5 - parent: 1 - type: Transform -- uid: 13725 - type: CableApcExtension - components: - - pos: -4.5,6.5 - parent: 1 - type: Transform -- uid: 13726 - type: CableApcExtension - components: - - pos: -4.5,7.5 - parent: 1 - type: Transform -- uid: 13727 - type: CableApcExtension - components: - - pos: -4.5,8.5 - parent: 1 - type: Transform -- uid: 13728 - type: CableApcExtension - components: - - pos: -4.5,9.5 - parent: 1 - type: Transform -- uid: 13729 - type: CableApcExtension - components: - - pos: -4.5,10.5 - parent: 1 - type: Transform -- uid: 13730 - type: CableApcExtension - components: - - pos: -4.5,11.5 - parent: 1 - type: Transform -- uid: 13731 - type: CableApcExtension - components: - - pos: -3.5,11.5 - parent: 1 - type: Transform -- uid: 13732 - type: CableApcExtension - components: - - pos: -2.5,11.5 - parent: 1 - type: Transform -- uid: 13733 - type: CableApcExtension - components: - - pos: -1.5,11.5 - parent: 1 - type: Transform -- uid: 13734 - type: CableApcExtension - components: - - pos: -0.5,11.5 - parent: 1 - type: Transform -- uid: 13735 - type: CableApcExtension - components: - - pos: 0.5,11.5 - parent: 1 - type: Transform -- uid: 13736 - type: CableApcExtension - components: - - pos: 1.5,11.5 - parent: 1 - type: Transform -- uid: 13737 - type: CableApcExtension - components: - - pos: 2.5,11.5 - parent: 1 - type: Transform -- uid: 13738 - type: CableApcExtension - components: - - pos: 2.5,10.5 - parent: 1 - type: Transform -- uid: 13739 - type: CableApcExtension - components: - - pos: 2.5,9.5 - parent: 1 - type: Transform -- uid: 13740 - type: CableApcExtension - components: - - pos: 2.5,8.5 - parent: 1 - type: Transform -- uid: 13741 - type: CableApcExtension - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform -- uid: 13742 - type: CableApcExtension - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform -- uid: 13743 - type: CableApcExtension - components: - - pos: 2.5,5.5 - parent: 1 - type: Transform -- uid: 13744 - type: CableApcExtension - components: - - pos: 2.5,4.5 - parent: 1 - type: Transform -- uid: 13745 - type: CableApcExtension - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform -- uid: 13746 - type: CableApcExtension - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform -- uid: 13747 - type: CableApcExtension - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform -- uid: 13748 - type: CableApcExtension - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform -- uid: 13749 - type: CableApcExtension - components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform -- uid: 13750 - type: CableApcExtension - components: - - pos: 2.5,-1.5 - parent: 1 - type: Transform -- uid: 13751 - type: CableApcExtension - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform -- uid: 13752 - type: CableApcExtension - components: - - pos: 2.5,-3.5 - parent: 1 - type: Transform -- uid: 13753 - type: CableApcExtension - components: - - pos: 2.5,-4.5 - parent: 1 - type: Transform -- uid: 13754 - type: CableApcExtension - components: - - pos: 2.5,-5.5 - parent: 1 - type: Transform -- uid: 13755 - type: CableApcExtension - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform -- uid: 13756 - type: CableApcExtension - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform -- uid: 13757 - type: CableApcExtension - components: - - pos: 1.5,-7.5 - parent: 1 - type: Transform -- uid: 13758 - type: CableApcExtension - components: - - pos: 0.5,-7.5 - parent: 1 - type: Transform -- uid: 13759 - type: CableApcExtension - components: - - pos: -0.5,-7.5 - parent: 1 - type: Transform -- uid: 13760 - type: CableApcExtension - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform -- uid: 13761 - type: CableApcExtension - components: - - pos: -2.5,-7.5 - parent: 1 - type: Transform -- uid: 13762 - type: CableApcExtension - components: - - pos: -3.5,-7.5 - parent: 1 - type: Transform -- uid: 13763 - type: CableApcExtension - components: - - pos: -4.5,-7.5 - parent: 1 - type: Transform -- uid: 13764 - type: CableApcExtension - components: - - pos: -5.5,-7.5 - parent: 1 - type: Transform -- uid: 13765 - type: CableApcExtension - components: - - pos: -6.5,-7.5 - parent: 1 - type: Transform -- uid: 13766 - type: CableApcExtension - components: - - pos: -7.5,-7.5 - parent: 1 - type: Transform -- uid: 13767 - type: CableApcExtension - components: - - pos: -8.5,-7.5 - parent: 1 - type: Transform -- uid: 13768 - type: CableApcExtension - components: - - pos: -9.5,-7.5 - parent: 1 - type: Transform -- uid: 13769 - type: CableApcExtension - components: - - pos: -10.5,-7.5 - parent: 1 - type: Transform -- uid: 13770 - type: CableApcExtension - components: - - pos: -11.5,-7.5 - parent: 1 - type: Transform -- uid: 13771 - type: CableApcExtension - components: - - pos: -12.5,-7.5 - parent: 1 - type: Transform -- uid: 13772 - type: CableApcExtension - components: - - pos: -13.5,-7.5 - parent: 1 - type: Transform -- uid: 13773 - type: CableApcExtension - components: - - pos: -14.5,-7.5 - parent: 1 - type: Transform -- uid: 13774 - type: CableApcExtension - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform -- uid: 13775 - type: CableApcExtension - components: - - pos: -3.5,-5.5 - parent: 1 - type: Transform -- uid: 13776 - type: CableApcExtension - components: - - pos: -3.5,-4.5 - parent: 1 - type: Transform -- uid: 13777 - type: CableApcExtension - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform -- uid: 13778 - type: CableApcExtension - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform -- uid: 13779 - type: CableApcExtension - components: - - pos: -5.5,-3.5 - parent: 1 - type: Transform -- uid: 13780 - type: CableApcExtension - components: - - pos: -6.5,-3.5 - parent: 1 - type: Transform -- uid: 13781 - type: CableApcExtension - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform -- uid: 13782 - type: CableApcExtension - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform -- uid: 13783 - type: CableApcExtension - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform -- uid: 13784 - type: CableApcExtension - components: - - pos: -10.5,-3.5 - parent: 1 - type: Transform -- uid: 13785 - type: CableApcExtension - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform -- uid: 13786 - type: CableApcExtension - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform -- uid: 13787 - type: CableApcExtension - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform -- uid: 13788 - type: CableApcExtension - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform -- uid: 13789 - type: CableApcExtension - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform -- uid: 13790 - type: CableApcExtension - components: - - pos: -3.5,-2.5 - parent: 1 - type: Transform -- uid: 13791 - type: CableApcExtension - components: - - pos: -3.5,-1.5 - parent: 1 - type: Transform -- uid: 13792 - type: CableApcExtension - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform -- uid: 13793 - type: CableApcExtension - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform -- uid: 13794 - type: CableApcExtension - components: - - pos: -3.5,1.5 - parent: 1 - type: Transform -- uid: 13795 - type: CableApcExtension - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform -- uid: 13796 - type: CableApcExtension - components: - - pos: -3.5,3.5 - parent: 1 - type: Transform -- uid: 13797 - type: CableApcExtension - components: - - pos: -3.5,4.5 - parent: 1 - type: Transform -- uid: 13798 - type: CableApcExtension - components: - - pos: -2.5,4.5 - parent: 1 - type: Transform -- uid: 13799 - type: CableApcExtension - components: - - pos: -1.5,4.5 - parent: 1 - type: Transform -- uid: 13800 - type: CableApcExtension - components: - - pos: -0.5,4.5 - parent: 1 - type: Transform -- uid: 13801 - type: CableApcExtension - components: - - pos: 0.5,4.5 - parent: 1 - type: Transform -- uid: 13802 - type: CableApcExtension - components: - - pos: 1.5,4.5 - parent: 1 - type: Transform -- uid: 13803 - type: CableApcExtension - components: - - pos: -8.5,3.5 - parent: 1 - type: Transform -- uid: 13804 - type: CableApcExtension - components: - - pos: -8.5,2.5 - parent: 1 - type: Transform -- uid: 13805 - type: CableApcExtension - components: - - pos: -8.5,1.5 - parent: 1 - type: Transform -- uid: 13806 - type: CableApcExtension - components: - - pos: -8.5,0.5 - parent: 1 - type: Transform -- uid: 13807 - type: CableApcExtension - components: - - pos: -8.5,-0.5 - parent: 1 - type: Transform -- uid: 13808 - type: CableApcExtension - components: - - pos: -8.5,-1.5 - parent: 1 - type: Transform -- uid: 13809 - type: CableApcExtension - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform -- uid: 13810 - type: CableApcExtension - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform -- uid: 13811 - type: CableApcExtension - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform -- uid: 13812 - type: CableApcExtension - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform -- uid: 13813 - type: CableApcExtension - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform -- uid: 13814 - type: CableApcExtension - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform -- uid: 13815 - type: CableApcExtension - components: - - pos: -3.5,8.5 - parent: 1 - type: Transform -- uid: 13816 - type: CableApcExtension - components: - - pos: -2.5,8.5 - parent: 1 - type: Transform -- uid: 13817 - type: CableApcExtension - components: - - pos: -1.5,8.5 - parent: 1 - type: Transform -- uid: 13818 - type: CableApcExtension - components: - - pos: -0.5,8.5 - parent: 1 - type: Transform -- uid: 13819 - type: CableApcExtension - components: - - pos: 0.5,8.5 - parent: 1 - type: Transform -- uid: 13820 - type: CableApcExtension - components: - - pos: 1.5,8.5 - parent: 1 - type: Transform -- uid: 13821 - type: CableApcExtension - components: - - pos: -3.5,12.5 - parent: 1 - type: Transform -- uid: 13822 - type: CableApcExtension - components: - - pos: -3.5,13.5 - parent: 1 - type: Transform -- uid: 13823 - type: CableApcExtension - components: - - pos: -4.5,13.5 - parent: 1 - type: Transform -- uid: 13824 - type: CableApcExtension - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform -- uid: 13825 - type: CableApcExtension - components: - - pos: -6.5,13.5 - parent: 1 - type: Transform -- uid: 13826 - type: CableApcExtension - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform -- uid: 13827 - type: CableApcExtension - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform -- uid: 13828 - type: CableApcExtension - components: - - pos: -9.5,13.5 - parent: 1 - type: Transform -- uid: 13829 - type: CableApcExtension - components: - - pos: -10.5,13.5 - parent: 1 - type: Transform -- uid: 13830 - type: CableApcExtension - components: - - pos: -2.5,13.5 - parent: 1 - type: Transform -- uid: 13831 - type: CableApcExtension - components: - - pos: -1.5,13.5 - parent: 1 - type: Transform -- uid: 13832 - type: CableApcExtension - components: - - pos: -0.5,13.5 - parent: 1 - type: Transform -- uid: 13833 - type: CableApcExtension - components: - - pos: 0.5,13.5 - parent: 1 - type: Transform -- uid: 13834 - type: CableApcExtension - components: - - pos: 1.5,13.5 - parent: 1 - type: Transform -- uid: 13835 - type: CableApcExtension - components: - - pos: 2.5,13.5 - parent: 1 - type: Transform -- uid: 13836 - type: CableApcExtension - components: - - pos: 3.5,13.5 - parent: 1 - type: Transform -- uid: 13837 - type: CableApcExtension - components: - - pos: 4.5,13.5 - parent: 1 - type: Transform -- uid: 13838 - type: CableApcExtension - components: - - pos: 5.5,13.5 - parent: 1 - type: Transform -- uid: 13839 - type: CableApcExtension - components: - - pos: 6.5,13.5 - parent: 1 - type: Transform -- uid: 13840 - type: CableApcExtension - components: - - pos: 7.5,13.5 - parent: 1 - type: Transform -- uid: 13841 - type: CableApcExtension - components: - - pos: 8.5,13.5 - parent: 1 - type: Transform -- uid: 13842 - type: CableApcExtension - components: - - pos: 9.5,13.5 - parent: 1 - type: Transform -- uid: 13843 - type: CableApcExtension - components: - - pos: 10.5,13.5 - parent: 1 - type: Transform -- uid: 13844 - type: CableApcExtension - components: - - pos: 11.5,13.5 - parent: 1 - type: Transform -- uid: 13845 - type: CableApcExtension - components: - - pos: 12.5,13.5 - parent: 1 - type: Transform -- uid: 13846 - type: CableApcExtension - components: - - pos: 13.5,13.5 - parent: 1 - type: Transform -- uid: 13847 - type: CableApcExtension - components: - - pos: 14.5,13.5 - parent: 1 - type: Transform -- uid: 13848 - type: CableApcExtension - components: - - pos: 15.5,13.5 - parent: 1 - type: Transform -- uid: 13849 - type: CableApcExtension - components: - - pos: 16.5,13.5 - parent: 1 - type: Transform -- uid: 13850 - type: CableApcExtension - components: - - pos: 17.5,13.5 - parent: 1 - type: Transform -- uid: 13851 - type: CableApcExtension - components: - - pos: 18.5,13.5 - parent: 1 - type: Transform -- uid: 13852 - type: AirCanister - components: - - pos: 18.5,54.5 - parent: 1 - type: Transform -- uid: 13853 - type: ComputerPowerMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 20.5,53.5 - parent: 1 - type: Transform -- uid: 13854 - type: Rack - components: - - rot: -1.5707963267948966 rad - pos: 20.5,52.5 - parent: 1 - type: Transform -- uid: 13855 - type: GasPort - components: - - pos: 18.5,54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13856 - type: GasPressurePump - components: - - pos: 18.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13857 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 18.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13858 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13859 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 16.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13860 - type: GasPipeStraight - components: - - pos: 16.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13861 - type: GasPipeStraight - components: - - pos: 16.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13862 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 16.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13863 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13864 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13865 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13866 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13867 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13868 - type: GasPipeBend - components: - - pos: 22.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13869 - type: GasPipeStraight - components: - - pos: 22.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13870 - type: GasPipeStraight - components: - - pos: 22.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13871 - type: GasPipeStraight - components: - - pos: 22.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13872 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 22.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13873 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13874 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13875 - type: GasPipeBend - components: - - pos: 25.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13876 - type: GasPipeStraight - components: - - pos: 25.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13877 - type: GasPipeStraight - components: - - pos: 25.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13878 - type: GasPipeStraight - components: - - pos: 25.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13879 - type: GasPipeStraight - components: - - pos: 25.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13880 - type: GasPipeStraight - components: - - pos: 25.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13881 - type: GasPipeStraight - components: - - pos: 25.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13882 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 25.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13883 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13884 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13885 - type: GasAnalyzer - components: - - pos: 20.339535,52.7268 - parent: 1 - type: Transform -- uid: 13886 - type: Wrench - components: - - pos: 20.623508,52.47136 - parent: 1 - type: Transform -- uid: 13887 - type: CableApcExtension - components: - - pos: 10.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13888 - type: CableApcExtension - components: - - pos: 10.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13889 - type: CableApcExtension - components: - - pos: 9.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13890 - type: CableApcExtension - components: - - pos: 8.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13891 - type: CableApcExtension - components: - - pos: 7.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13892 - type: CableApcExtension - components: - - pos: 7.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13893 - type: CableApcExtension - components: - - pos: 7.5,65.5 - parent: 1 - type: Transform -- uid: 13894 - type: CableApcExtension - components: - - pos: 7.5,66.5 - parent: 1 - type: Transform -- uid: 13895 - type: CableApcExtension - components: - - pos: 10.5,61.5 - parent: 1 - type: Transform -- uid: 13896 - type: CableApcExtension - components: - - pos: 9.5,61.5 - parent: 1 - type: Transform -- uid: 13897 - type: CableApcExtension - components: - - pos: 8.5,61.5 - parent: 1 - type: Transform -- uid: 13898 - type: CableApcExtension - components: - - pos: 7.5,61.5 - parent: 1 - type: Transform -- uid: 13899 - type: CableApcExtension - components: - - pos: 7.5,60.5 - parent: 1 - type: Transform -- uid: 13900 - type: CableApcExtension - components: - - pos: 6.5,60.5 - parent: 1 - type: Transform -- uid: 13901 - type: CableApcExtension - components: - - pos: 5.5,60.5 - parent: 1 - type: Transform -- uid: 13902 - type: CableApcExtension - components: - - pos: 4.5,60.5 - parent: 1 - type: Transform -- uid: 13903 - type: CableApcExtension - components: - - pos: 3.5,60.5 - parent: 1 - type: Transform -- uid: 13904 - type: CableApcExtension - components: - - pos: 2.5,60.5 - parent: 1 - type: Transform -- uid: 13905 - type: CableApcExtension - components: - - pos: 2.5,61.5 - parent: 1 - type: Transform -- uid: 13906 - type: CableApcExtension - components: - - pos: 2.5,62.5 - parent: 1 - type: Transform -- uid: 13907 - type: CableApcExtension - components: - - pos: 2.5,63.5 - parent: 1 - type: Transform -- uid: 13908 - type: CableApcExtension - components: - - pos: 1.5,63.5 - parent: 1 - type: Transform -- uid: 13909 - type: CableApcExtension - components: - - pos: 0.5,63.5 - parent: 1 - type: Transform -- uid: 13910 - type: CableApcExtension - components: - - pos: 0.5,64.5 - parent: 1 - type: Transform -- uid: 13911 - type: CableApcExtension - components: - - pos: 0.5,65.5 - parent: 1 - type: Transform -- uid: 13912 - type: CableApcExtension - components: - - pos: 0.5,66.5 - parent: 1 - type: Transform -- uid: 13913 - type: CableApcExtension - components: - - pos: 1.5,66.5 - parent: 1 - type: Transform -- uid: 13914 - type: CableApcExtension - components: - - pos: 2.5,66.5 - parent: 1 - type: Transform -- uid: 13915 - type: CableApcExtension - components: - - pos: 3.5,66.5 - parent: 1 - type: Transform -- uid: 13916 - type: CableApcExtension - components: - - pos: 4.5,66.5 - parent: 1 - type: Transform -- uid: 13917 - type: CableApcExtension - components: - - pos: 5.5,66.5 - parent: 1 - type: Transform -- uid: 13918 - type: CableApcExtension - components: - - pos: 6.5,66.5 - parent: 1 - type: Transform -- uid: 13919 - type: CableApcExtension - components: - - pos: 0.5,62.5 - parent: 1 - type: Transform -- uid: 13920 - type: CableApcExtension - components: - - pos: 0.5,61.5 - parent: 1 - type: Transform -- uid: 13921 - type: CableApcExtension - components: - - pos: 0.5,60.5 - parent: 1 - type: Transform -- uid: 13922 - type: CableApcExtension - components: - - pos: 0.5,59.5 - parent: 1 - type: Transform -- uid: 13923 - type: CableApcExtension - components: - - pos: 0.5,58.5 - parent: 1 - type: Transform -- uid: 13924 - type: CableApcExtension - components: - - pos: 0.5,57.5 - parent: 1 - type: Transform -- uid: 13925 - type: CableApcExtension - components: - - pos: 0.5,56.5 - parent: 1 - type: Transform -- uid: 13926 - type: CableApcExtension - components: - - pos: 0.5,55.5 - parent: 1 - type: Transform -- uid: 13927 - type: CableApcExtension - components: - - pos: 0.5,54.5 - parent: 1 - type: Transform -- uid: 13928 - type: CableApcExtension - components: - - pos: 0.5,53.5 - parent: 1 - type: Transform -- uid: 13929 - type: CableApcExtension - components: - - pos: 0.5,52.5 - parent: 1 - type: Transform -- uid: 13930 - type: CableApcExtension - components: - - pos: 1.5,56.5 - parent: 1 - type: Transform -- uid: 13931 - type: CableApcExtension - components: - - pos: 2.5,56.5 - parent: 1 - type: Transform -- uid: 13932 - type: CableApcExtension - components: - - pos: 3.5,56.5 - parent: 1 - type: Transform -- uid: 13933 - type: CableApcExtension - components: - - pos: 4.5,56.5 - parent: 1 - type: Transform -- uid: 13934 - type: CableApcExtension - components: - - pos: 5.5,56.5 - parent: 1 - type: Transform -- uid: 13935 - type: CableApcExtension - components: - - pos: 6.5,56.5 - parent: 1 - type: Transform -- uid: 13936 - type: CableApcExtension - components: - - pos: 7.5,56.5 - parent: 1 - type: Transform -- uid: 13937 - type: CableApcExtension - components: - - pos: 8.5,56.5 - parent: 1 - type: Transform -- uid: 13938 - type: CableApcExtension - components: - - pos: 9.5,56.5 - parent: 1 - type: Transform -- uid: 13939 - type: CableApcExtension - components: - - pos: 10.5,56.5 - parent: 1 - type: Transform -- uid: 13940 - type: CableApcExtension - components: - - pos: 11.5,56.5 - parent: 1 - type: Transform -- uid: 13941 - type: CableApcExtension - components: - - pos: 12.5,56.5 - parent: 1 - type: Transform -- uid: 13942 - type: CableApcExtension - components: - - pos: 13.5,56.5 - parent: 1 - type: Transform -- uid: 13943 - type: CableApcExtension - components: - - pos: 14.5,56.5 - parent: 1 - type: Transform -- uid: 13944 - type: CableApcExtension - components: - - pos: 14.5,57.5 - parent: 1 - type: Transform -- uid: 13945 - type: CableApcExtension - components: - - pos: 14.5,58.5 - parent: 1 - type: Transform -- uid: 13946 - type: CableApcExtension - components: - - pos: 14.5,59.5 - parent: 1 - type: Transform -- uid: 13947 - type: CableApcExtension - components: - - pos: 14.5,60.5 - parent: 1 - type: Transform -- uid: 13948 - type: CableApcExtension - components: - - pos: 14.5,61.5 - parent: 1 - type: Transform -- uid: 13949 - type: CableApcExtension - components: - - pos: 13.5,61.5 - parent: 1 - type: Transform -- uid: 13950 - type: CableApcExtension - components: - - pos: 12.5,61.5 - parent: 1 - type: Transform -- uid: 13951 - type: CableApcExtension - components: - - pos: 11.5,61.5 - parent: 1 - type: Transform -- uid: 13952 - type: CableApcExtension - components: - - pos: 10.5,61.5 - parent: 1 - type: Transform -- uid: 13953 - type: CableApcExtension - components: - - pos: 15.5,58.5 - parent: 1 - type: Transform -- uid: 13954 - type: CableApcExtension - components: - - pos: 16.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13955 - type: CableApcExtension - components: - - pos: 17.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13956 - type: CableApcExtension - components: - - pos: 18.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13957 - type: CableApcExtension - components: - - pos: 18.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13958 - type: CableApcExtension - components: - - pos: 18.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13959 - type: CableApcExtension - components: - - pos: 18.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13960 - type: CableApcExtension - components: - - pos: 18.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13961 - type: CableApcExtension - components: - - pos: 18.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13962 - type: CableApcExtension - components: - - pos: 17.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13963 - type: CableApcExtension - components: - - pos: 16.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13964 - type: CableApcExtension - components: - - pos: 15.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13965 - type: CableApcExtension - components: - - pos: 14.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13966 - type: CableApcExtension - components: - - pos: 13.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13967 - type: CableApcExtension - components: - - pos: 12.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13968 - type: CableApcExtension - components: - - pos: 11.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13969 - type: CableApcExtension - components: - - pos: 14.5,55.5 - parent: 1 - type: Transform -- uid: 13970 - type: CableApcExtension - components: - - pos: 14.5,54.5 - parent: 1 - type: Transform -- uid: 13971 - type: CableApcExtension - components: - - pos: 14.5,53.5 - parent: 1 - type: Transform -- uid: 13972 - type: CableApcExtension - components: - - pos: 14.5,52.5 - parent: 1 - type: Transform -- uid: 13973 - type: CableApcExtension - components: - - pos: 13.5,52.5 - parent: 1 - type: Transform -- uid: 13974 - type: CableApcExtension - components: - - pos: 12.5,52.5 - parent: 1 - type: Transform -- uid: 13975 - type: CableApcExtension - components: - - pos: 11.5,52.5 - parent: 1 - type: Transform -- uid: 13976 - type: CableApcExtension - components: - - pos: 10.5,52.5 - parent: 1 - type: Transform -- uid: 13977 - type: CableApcExtension - components: - - pos: 9.5,52.5 - parent: 1 - type: Transform -- uid: 13978 - type: CableApcExtension - components: - - pos: 8.5,52.5 - parent: 1 - type: Transform -- uid: 13979 - type: CableApcExtension - components: - - pos: 7.5,52.5 - parent: 1 - type: Transform -- uid: 13980 - type: CableApcExtension - components: - - pos: 6.5,52.5 - parent: 1 - type: Transform -- uid: 13981 - type: CableApcExtension - components: - - pos: 5.5,52.5 - parent: 1 - type: Transform -- uid: 13982 - type: CableApcExtension - components: - - pos: 4.5,52.5 - parent: 1 - type: Transform -- uid: 13983 - type: CableApcExtension - components: - - pos: 4.5,53.5 - parent: 1 - type: Transform -- uid: 13984 - type: CableApcExtension - components: - - pos: 4.5,54.5 - parent: 1 - type: Transform -- uid: 13985 - type: CableApcExtension - components: - - pos: 4.5,55.5 - parent: 1 - type: Transform -- uid: 13986 - type: CableApcExtension - components: - - pos: 19.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13987 - type: CableApcExtension - components: - - pos: 19.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13988 - type: CableApcExtension - components: - - pos: 19.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13989 - type: CableApcExtension - components: - - pos: 18.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13990 - type: CableApcExtension - components: - - pos: 17.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13991 - type: CableApcExtension - components: - - pos: 16.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13992 - type: CableApcExtension - components: - - pos: 16.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13993 - type: CableApcExtension - components: - - pos: 16.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13994 - type: EmergencyLight - components: - - pos: -0.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 13995 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 13996 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 13997 - type: WeldingFuelTankFull - components: - - pos: 16.5,62.5 - parent: 1 - type: Transform -- uid: 13998 - type: WaterTankFull - components: - - pos: 16.5,61.5 - parent: 1 - type: Transform -- uid: 13999 - type: ClosetMaintenanceFilledRandom - components: - - pos: 10.5,64.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14000 - type: AirCanister - components: - - pos: 12.5,64.5 - parent: 1 - type: Transform -- uid: 14001 - type: NitrogenCanister - components: - - pos: 13.5,64.5 - parent: 1 - type: Transform -- uid: 14002 - type: OxygenCanister - components: - - pos: 14.5,64.5 - parent: 1 - type: Transform -- uid: 14003 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 14.5,64.5 - parent: 1 - type: Transform -- uid: 14004 - type: ChairFolding - components: - - pos: 17.5,64.5 - parent: 1 - type: Transform -- uid: 14005 - type: Table - components: - - pos: 18.5,64.5 - parent: 1 - type: Transform -- uid: 14006 - type: RandomVending - components: - - pos: 15.5,64.5 - parent: 1 - type: Transform -- uid: 14007 - type: Rack - components: - - pos: 16.5,59.5 - parent: 1 - type: Transform -- uid: 14008 - type: LockerWeldingSuppliesFilled - components: - - pos: 16.5,60.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14009 - type: WeldingFuelTankFull - components: - - pos: 12.5,48.5 - parent: 1 - type: Transform -- uid: 14010 - type: WaterTankFull - components: - - pos: 11.5,48.5 - parent: 1 - type: Transform -- uid: 14011 - type: ClosetFireFilled - components: - - pos: 2.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14012 - type: ClosetEmergencyFilledRandom - components: - - pos: 3.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14013 - type: AirCanister - components: - - pos: 7.5,40.5 - parent: 1 - type: Transform -- uid: 14014 - type: NitrogenCanister - components: - - pos: 8.5,40.5 - parent: 1 - type: Transform -- uid: 14015 - type: OxygenCanister - components: - - pos: 9.5,40.5 - parent: 1 - type: Transform -- uid: 14016 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 7.5,40.5 - parent: 1 - type: Transform -- uid: 14017 - type: Rack - components: - - rot: -1.5707963267948966 rad - pos: 5.5,40.5 - parent: 1 - type: Transform -- uid: 14018 - type: ClosetEmergencyFilledRandom - components: - - pos: 20.5,47.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14019 - type: ClosetMaintenanceFilledRandom - components: - - pos: 20.5,48.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14020 - type: Rack - components: - - rot: -1.5707963267948966 rad - pos: 18.5,50.5 - parent: 1 - type: Transform -- uid: 14021 - type: ChairFolding - components: - - pos: 19.5,50.5 - parent: 1 - type: Transform -- uid: 14022 - type: VibraphoneInstrument - components: - - pos: 20.5,50.5 - parent: 1 - type: Transform -- uid: 14023 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: 26.5,58.5 - parent: 1 - type: Transform -- uid: 14024 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 28.5,58.5 - parent: 1 - type: Transform -- uid: 14025 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 27.5,58.5 - parent: 1 - type: Transform -- uid: 14026 - type: ParchisBoard - components: - - rot: -1.5707963267948966 rad - pos: 27.411753,58.600853 - parent: 1 - type: Transform -- uid: 14027 - type: d6Dice - components: - - rot: -1.5707963267948966 rad - pos: 27.553741,58.430557 - parent: 1 - type: Transform -- uid: 14028 - type: d6Dice - components: - - rot: -1.5707963267948966 rad - pos: 27.638933,58.82791 - parent: 1 - type: Transform -- uid: 14029 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 20.5,58.5 - parent: 1 - type: Transform -- uid: 14030 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 20.5,57.5 - parent: 1 - type: Transform -- uid: 14031 - type: Rack - components: - - rot: -1.5707963267948966 rad - pos: 21.5,58.5 - parent: 1 - type: Transform -- uid: 14032 - type: ClosetFireFilled - components: - - pos: 27.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14033 - type: ComputerBroken - components: - - pos: 25.5,58.5 - parent: 1 - type: Transform -- uid: 14034 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 24.5,58.5 - parent: 1 - type: Transform -- uid: 14035 - type: OxygenCanister - components: - - pos: 27.5,56.5 - parent: 1 - type: Transform -- uid: 14036 - type: NitrogenCanister - components: - - pos: 26.5,56.5 - parent: 1 - type: Transform -- uid: 14037 - type: AirCanister - components: - - pos: 25.5,56.5 - parent: 1 - type: Transform -- uid: 14038 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 27.5,56.5 - parent: 1 - type: Transform -- uid: 14039 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 25.5,56.5 - parent: 1 - type: Transform -- uid: 14040 - type: Rack - components: - - rot: -1.5707963267948966 rad - pos: 24.5,56.5 - parent: 1 - type: Transform -- uid: 14041 - type: ClosetEmergencyFilledRandom - components: - - pos: 27.5,41.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14042 - type: PlushieVox - components: - - pos: 39.577625,52.527256 - parent: 1 - type: Transform -- uid: 14043 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 37.5,55.5 - parent: 1 - type: Transform -- uid: 14044 - type: SMESBasic - components: - - pos: 36.5,55.5 - parent: 1 - type: Transform -- uid: 14045 - type: CableHV - components: - - pos: 36.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14046 - type: ComputerSolarControl - components: - - rot: 1.5707963267948966 rad - pos: 36.5,54.5 - parent: 1 - type: Transform -- uid: 14047 - type: Multitool - components: - - pos: 38.328133,54.646866 - parent: 1 - type: Transform -- uid: 14048 - type: Screwdriver - components: - - pos: 38.58371,54.56172 - parent: 1 - type: Transform -- uid: 14049 - type: AirlockChapelLocked - components: - - pos: 32.5,53.5 - parent: 1 - type: Transform -- uid: 14050 - type: SignChapel - components: - - pos: 32.5,50.5 - parent: 1 - type: Transform -- uid: 14051 - type: SignChapel - components: - - pos: 31.5,53.5 - parent: 1 - type: Transform -- uid: 14052 - type: SignDirectionalChapel - components: - - rot: 3.141592653589793 rad - pos: 33.5,39.5 - parent: 1 - type: Transform -- uid: 14053 - type: SignChapel - components: - - pos: 28.5,39.5 - parent: 1 - type: Transform -- uid: 14054 - type: ClosetEmergencyFilledRandom - components: - - pos: 33.5,52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14055 - type: ClosetFireFilled - components: - - pos: 34.5,52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14056 - type: ClosetMaintenanceFilledRandom - components: - - pos: 35.5,52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14057 - type: MaintenanceFluffSpawner - components: - - pos: 25.5,26.5 - parent: 1 - type: Transform -- uid: 14058 - type: MaintenanceWeaponSpawner - components: - - pos: 39.5,51.5 - parent: 1 - type: Transform -- uid: 14059 - type: MaintenanceToolSpawner - components: - - pos: 24.5,56.5 - parent: 1 - type: Transform -- uid: 14060 - type: ClothingUniformJumpskirtDetective - components: - - pos: 21.290764,58.71069 - parent: 1 - type: Transform -- uid: 14061 - type: MaintenanceFluffSpawner - components: - - pos: 28.5,58.5 - parent: 1 - type: Transform -- uid: 14062 - type: MaintenanceFluffSpawner - components: - - pos: 19.5,50.5 - parent: 1 - type: Transform -- uid: 14063 - type: MaintenanceToolSpawner - components: - - pos: 18.5,50.5 - parent: 1 - type: Transform -- uid: 14064 - type: MaintenanceWeaponSpawner - components: - - pos: 12.5,49.5 - parent: 1 - type: Transform -- uid: 14065 - type: MaintenanceToolSpawner - components: - - pos: 10.5,48.5 - parent: 1 - type: Transform -- uid: 14066 - type: MaintenanceToolSpawner - components: - - pos: 5.5,40.5 - parent: 1 - type: Transform -- uid: 14067 - type: MaintenanceToolSpawner - components: - - pos: 16.5,59.5 - parent: 1 - type: Transform -- uid: 14068 - type: MaintenanceWeaponSpawner - components: - - pos: 16.5,64.5 - parent: 1 - type: Transform -- uid: 14069 - type: MaintenanceFluffSpawner - components: - - pos: 17.5,64.5 - parent: 1 - type: Transform -- uid: 14070 - type: RandomDrinkGlass - components: - - pos: 18.5,64.5 - parent: 1 - type: Transform -- uid: 14071 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 19.5,53.5 - parent: 1 - type: Transform -- uid: 14072 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 35.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14073 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14074 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14075 - type: Poweredlight - components: - - pos: -23.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14076 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14077 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14078 - type: Poweredlight - components: - - pos: -35.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14079 - type: Poweredlight - components: - - pos: -34.5,7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14080 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14081 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14082 - type: Poweredlight - components: - - pos: -39.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14083 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14084 - type: TableGlass - components: - - pos: -49.5,16.5 - parent: 1 - type: Transform -- uid: 14085 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14086 - type: ReinforcedWindow - components: - - pos: -48.5,17.5 - parent: 1 - type: Transform -- uid: 14087 - type: ReinforcedWindow - components: - - pos: -50.5,17.5 - parent: 1 - type: Transform -- uid: 14088 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14089 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14090 - type: Poweredlight - components: - - pos: -44.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14091 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14092 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14093 - type: Grille - components: - - pos: -48.5,34.5 - parent: 1 - type: Transform -- uid: 14094 - type: Grille - components: - - pos: -47.5,34.5 - parent: 1 - type: Transform -- uid: 14095 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -26.5,36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14096 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14097 - type: Poweredlight - components: - - pos: -14.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14098 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14099 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 1.5,36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14100 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14101 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14102 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14103 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -16.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14104 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14105 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14106 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 4.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14107 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -5.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14108 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -25.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14109 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 17.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14110 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14111 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14112 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 29.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14113 - type: Poweredlight - components: - - pos: 44.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14114 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14115 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14116 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 51.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14117 - type: PoweredSmallLight - components: - - pos: 51.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14118 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14119 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14120 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14122 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14123 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14124 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14125 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14126 - type: Poweredlight - components: - - pos: 4.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14127 - type: Poweredlight - components: - - pos: -5.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14128 - type: Poweredlight - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14129 - type: Poweredlight - components: - - pos: -2.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14130 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14131 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14132 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14133 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14134 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14135 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14136 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14137 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14138 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14139 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14140 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14141 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14142 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14143 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14144 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14145 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14146 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14147 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14148 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14149 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14150 - type: Poweredlight - components: - - pos: -11.5,-31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14151 - type: PoweredSmallLight - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14152 - type: PoweredSmallLight - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14153 - type: PoweredSmallLight - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14154 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14155 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14156 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14157 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14158 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14159 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14160 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14161 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14162 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14163 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14164 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14165 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14166 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14167 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14168 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14169 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14170 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14171 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14172 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14173 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14174 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14175 - type: PoweredSmallLight - components: - - pos: -10.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14176 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 25.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14177 - type: Poweredlight - components: - - pos: 20.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14178 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14179 - type: Poweredlight - components: - - pos: 42.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14180 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14181 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14182 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14183 - type: PoweredSmallLight - components: - - pos: 51.5,36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14184 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 51.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14185 - type: Poweredlight - components: - - pos: 10.5,61.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14186 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 11.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14187 - type: Poweredlight - components: - - pos: 1.5,57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14188 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14189 - type: PoweredSmallLight - components: - - pos: -38.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14190 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14191 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14192 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14193 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14194 - type: Poweredlight - components: - - pos: -15.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14195 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -10.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14196 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14197 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14198 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14199 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14200 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -17.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14201 - type: Poweredlight - components: - - pos: -15.5,60.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14202 - type: Poweredlight - components: - - pos: -5.5,64.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14203 - type: Poweredlight - components: - - pos: -8.5,64.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14204 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,69.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14205 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,62.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14206 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,62.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14207 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14208 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -38.5,42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14209 - type: Poweredlight - components: - - pos: -32.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14210 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -33.5,42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14211 - type: Poweredlight - components: - - pos: -27.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14212 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14213 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14214 - type: PoweredSmallLight - components: - - pos: -10.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14215 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14216 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14217 - type: Poweredlight - components: - - pos: -36.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14218 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14219 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14220 - type: GasPipeStraight - components: - - pos: 4.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14221 - type: GasPipeStraight - components: - - pos: 4.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14222 - type: GasPipeStraight - components: - - pos: 4.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14223 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 4.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14224 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14225 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 3.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14226 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14227 - type: GasPipeTJunction - components: - - pos: 3.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14228 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14229 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14230 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14231 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14232 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14233 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 1.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14234 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14235 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14236 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14237 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14238 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14239 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14240 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14241 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14242 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14243 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14244 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14245 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 1.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14246 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14247 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14248 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14249 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14250 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14251 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14252 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14253 - type: GasPipeTJunction - components: - - pos: 9.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14254 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 9.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14255 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14256 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14257 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14258 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14259 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14260 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14261 - type: GasPipeTJunction - components: - - pos: 10.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14262 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 11.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14263 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14264 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14265 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14266 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14267 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14268 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14269 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14270 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14271 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14272 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14273 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14274 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14275 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14276 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14277 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 17.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14278 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14279 - type: GasPipeTJunction - components: - - pos: 19.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14280 - type: GasPipeStraight - components: - - pos: 19.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14281 - type: GasPipeStraight - components: - - pos: 19.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14282 - type: GasPipeStraight - components: - - pos: 19.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14283 - type: GasPipeStraight - components: - - pos: 19.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14284 - type: GasPipeStraight - components: - - pos: 19.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14285 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 19.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14286 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 18.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14287 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14288 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14289 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14290 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14291 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14292 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14293 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14294 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14295 - type: GasVentPump - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14296 - type: GasVentScrubber - components: - - pos: 21.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14297 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14298 - type: GasVentScrubber - components: - - pos: 17.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14299 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14300 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14301 - type: GasPipeBend - components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14302 - type: GasPipeStraight - components: - - pos: 10.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14303 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14304 - type: GasPipeBend - components: - - pos: 11.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14305 - type: GasPipeStraight - components: - - pos: 11.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14306 - type: GasPipeStraight - components: - - pos: 11.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14307 - type: GasPipeStraight - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14308 - type: GasPipeStraight - components: - - pos: 11.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14309 - type: GasPipeStraight - components: - - pos: 11.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14310 - type: GasPipeStraight - components: - - pos: 11.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14311 - type: GasPipeStraight - components: - - pos: 10.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14312 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 10.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14313 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14314 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14315 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14316 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14317 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14318 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14319 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14320 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14321 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14322 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14323 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14324 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14325 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14326 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14327 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14328 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14329 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 6.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14330 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 5.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14331 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14332 - type: GasVentPump - components: - - pos: 6.5,-19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14333 - type: GasVentScrubber - components: - - pos: 5.5,-19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14334 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14335 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14336 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14337 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14338 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14339 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14340 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14341 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14342 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14343 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14344 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14345 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14346 - type: GasPipeStraight - components: - - pos: 11.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14347 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14348 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14349 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14350 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14351 - type: GasPipeTJunction - components: - - pos: 28.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14352 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14353 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14354 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14355 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14356 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14357 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14358 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14359 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14360 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14361 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14362 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14363 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14364 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14365 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14366 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14367 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14368 - type: GasPipeStraight - components: - - pos: 11.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14369 - type: GasPipeStraight - components: - - pos: 11.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14370 - type: GasPipeStraight - components: - - pos: 11.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14371 - type: GasPipeStraight - components: - - pos: 12.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14372 - type: GasPipeStraight - components: - - pos: 12.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14373 - type: GasPipeStraight - components: - - pos: 12.5,-29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14374 - type: GasPipeStraight - components: - - pos: 11.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14375 - type: GasPipeStraight - components: - - pos: 11.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14376 - type: GasPipeStraight - components: - - pos: 11.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14377 - type: GasPipeStraight - components: - - pos: 11.5,-30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14378 - type: GasPipeStraight - components: - - pos: 11.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14379 - type: CableMV - components: - - pos: 28.5,-9.5 - parent: 1 - type: Transform -- uid: 14380 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14381 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14382 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14383 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14384 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14385 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14386 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 11.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14387 - type: GasPipeStraight - components: - - pos: -32.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14388 - type: GasPipeStraight - components: - - pos: 12.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14389 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 12.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14390 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14391 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14392 - type: GasPipeTJunction - components: - - pos: 8.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14393 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14394 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14395 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14396 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14397 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14398 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14399 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 7.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14400 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14401 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14402 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14403 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14404 - type: GasVentScrubber - components: - - pos: 7.5,-30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14405 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14406 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14407 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14408 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14409 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14410 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14411 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14412 - type: GasPipeFourway - components: - - pos: 6.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14413 - type: GasPipeStraight - components: - - pos: 6.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14414 - type: GasPipeStraight - components: - - pos: 6.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14415 - type: GasVentPump - components: - - pos: 6.5,-30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14416 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 8.5,-33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14417 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14418 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14419 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 21.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14420 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14421 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14422 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14423 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14424 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 26.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14425 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14426 - type: GasPipeStraight - components: - - pos: -30.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14427 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 29.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14428 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14429 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14430 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 32.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14431 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14432 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14433 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14434 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14435 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14436 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14437 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14438 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14439 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14440 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14441 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14442 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14443 - type: GasPipeStraight - components: - - pos: 32.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14444 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14445 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 32.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14446 - type: CableApcExtension - components: - - pos: 32.5,6.5 - parent: 1 - type: Transform -- uid: 14447 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14448 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14449 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 32.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14450 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 32.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14451 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14452 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14453 - type: GasPipeFourway - components: - - pos: 32.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14454 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14455 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14456 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14457 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 35.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14458 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14459 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14460 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14461 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14462 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14463 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14464 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14465 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14466 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14467 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14468 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14469 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 28.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14470 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14471 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14472 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14473 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14474 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14475 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14476 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14477 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14478 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14479 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14480 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14481 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14482 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 15.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14483 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14484 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14485 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14486 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14487 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14488 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14489 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 8.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14490 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14491 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14492 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14493 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14494 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14495 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14496 - type: GasPipeTJunction - components: - - pos: 1.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14497 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14498 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14499 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14500 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14501 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 1.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14502 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14503 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14504 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14505 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14506 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14507 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14508 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14509 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14510 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14511 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14512 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14513 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14514 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14515 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14516 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14517 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14518 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14519 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14520 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14521 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14522 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -2.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14523 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14524 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14525 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14526 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14527 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14528 - type: GasPipeTJunction - components: - - pos: -2.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14529 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14530 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14531 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14532 - type: GasPipeTJunction - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14533 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14534 - type: GasPipeTJunction - components: - - pos: -18.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14535 - type: GasPipeTJunction - components: - - pos: -16.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14536 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14537 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14538 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14539 - type: GasPipeTJunction - components: - - pos: -16.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14540 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14541 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14542 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14543 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14544 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14545 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14546 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14547 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14548 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14549 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14550 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14551 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14552 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14553 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14554 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14555 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14556 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14557 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14558 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14559 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14560 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14561 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14562 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14563 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -17.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14564 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14565 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14566 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14567 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -18.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14568 - type: GasPipeStraight - components: - - pos: -18.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14569 - type: GasVentScrubber - components: - - pos: -17.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14570 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14571 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14572 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14573 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14574 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14575 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14576 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14577 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14578 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14579 - type: GasPipeTJunction - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14580 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -26.5,-7.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14581 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14582 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14583 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14584 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14585 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14586 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14587 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -28.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14588 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14589 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -30.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14590 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -32.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14591 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14592 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14593 - type: GasPipeStraight - components: - - pos: -30.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14594 - type: GasPipeStraight - components: - - pos: -30.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14595 - type: GasPipeStraight - components: - - pos: -30.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14596 - type: GasPipeStraight - components: - - pos: -30.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14597 - type: GasPipeStraight - components: - - pos: -30.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14598 - type: GasPipeStraight - components: - - pos: -30.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14599 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14600 - type: GasPipeStraight - components: - - pos: -30.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14601 - type: GasPipeStraight - components: - - pos: -30.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14602 - type: GasPipeStraight - components: - - pos: -30.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14603 - type: GasPipeStraight - components: - - pos: -30.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14604 - type: GasPipeStraight - components: - - pos: -30.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14605 - type: GasPipeStraight - components: - - pos: -30.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14606 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -30.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14607 - type: GasPipeStraight - components: - - pos: -30.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14608 - type: GasPipeStraight - components: - - pos: -30.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14609 - type: GasPipeStraight - components: - - pos: -30.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14610 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -32.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14611 - type: GasPipeStraight - components: - - pos: -30.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14612 - type: GasPipeStraight - components: - - pos: -30.5,10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14613 - type: GasPipeStraight - components: - - pos: -30.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14614 - type: GasPipeStraight - components: - - pos: -32.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14615 - type: GasPipeTJunction - components: - - pos: -22.5,13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14616 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -30.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14617 - type: GasPipeStraight - components: - - pos: -32.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14618 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -32.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14619 - type: GasPipeStraight - components: - - pos: -32.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14620 - type: GasPipeStraight - components: - - pos: -32.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14621 - type: GasPipeStraight - components: - - pos: -32.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14622 - type: GasPipeStraight - components: - - pos: -32.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14623 - type: GasPipeStraight - components: - - pos: -32.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14624 - type: GasPipeStraight - components: - - pos: -32.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14625 - type: GasPipeStraight - components: - - pos: -32.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14626 - type: GasPipeStraight - components: - - pos: -32.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14627 - type: GasPipeStraight - components: - - pos: -32.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14628 - type: GasPipeStraight - components: - - pos: -32.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14629 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14630 - type: GasPipeStraight - components: - - pos: -32.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14631 - type: GasPipeStraight - components: - - pos: -32.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14632 - type: GasPipeStraight - components: - - pos: -32.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14633 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14634 - type: CableHV - components: - - pos: -32.5,-8.5 - parent: 1 - type: Transform -- uid: 14635 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 2.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14636 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -3.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14637 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14638 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14639 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14640 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14641 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14642 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14643 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14644 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14645 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14646 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14647 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14648 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -6.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14649 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14650 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14651 - type: GasPipeStraight - components: - - pos: -8.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14652 - type: GasPipeStraight - components: - - pos: -8.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14653 - type: GasPipeStraight - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14654 - type: GasPipeStraight - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14655 - type: GasPipeStraight - components: - - pos: -8.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14656 - type: GasPipeStraight - components: - - pos: -6.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14657 - type: GasPipeStraight - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14658 - type: GasPipeStraight - components: - - pos: -6.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14659 - type: GasVentPump - components: - - pos: -6.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14660 - type: GasVentScrubber - components: - - pos: -8.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14661 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14662 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14663 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14664 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14665 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14666 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14667 - type: GasPipeTJunction - components: - - pos: -12.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14668 - type: GasPipeFourway - components: - - pos: -13.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14669 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14670 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -11.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14671 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14672 - type: GasVentScrubber - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14673 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1 - type: Transform - - devices: - - 5769 - - 5770 - - 5771 - - 5772 - - 8926 - - 5783 - - 5784 - - 5785 - - 9048 - - 5760 - - 5759 - - 5758 - - 5757 - - 5779 - - 5780 - - 5781 - - 5778 - - 5777 - - 5776 - - 14635 - - 14636 - - 14633 - - 5390 - - 14659 - - 14660 - - 14672 - - 14683 - - 14697 - type: DeviceList -- uid: 14674 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14675 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14676 - type: GasPipeBend - components: - - pos: -13.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14677 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14678 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14679 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14680 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14681 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14682 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -16.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14683 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -16.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14684 - type: SpawnPointClown - components: - - pos: -16.5,1.5 - parent: 1 - type: Transform -- uid: 14685 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -16.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14686 - type: GasPipeStraight - components: - - pos: -12.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14687 - type: GasPipeStraight - components: - - pos: -12.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14688 - type: GasPipeFourway - components: - - pos: -12.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14689 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14690 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14691 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14692 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14693 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14694 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14695 - type: GasPipeStraight - components: - - pos: -13.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14696 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -11.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14697 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -16.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14698 - type: GasPipeStraight - components: - - pos: -12.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14699 - type: GasPipeStraight - components: - - pos: -12.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14700 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14701 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14702 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14703 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14704 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14705 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14706 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14707 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14708 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14709 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14710 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14711 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14712 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -16.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14713 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14714 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14715 - type: GasPipeStraight - components: - - pos: 11.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14716 - type: GasPipeStraight - components: - - pos: 11.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14717 - type: GasVentScrubber - components: - - pos: 11.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14718 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14719 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14720 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14721 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14722 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14723 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14724 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14725 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 6.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14726 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14727 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14728 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14729 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14730 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14731 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14732 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14733 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14734 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14735 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14736 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14737 - type: GasPipeBend - components: - - pos: 9.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14738 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 8.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14739 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14740 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14741 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14742 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14743 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14744 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14745 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 8.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14746 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 10.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14747 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14748 - type: GasVentPump - components: - - pos: 10.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14749 - type: GasVentScrubber - components: - - pos: 6.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14750 - type: GasVentScrubber - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14751 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 0.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14752 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14753 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14754 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14755 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14756 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14757 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14758 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14759 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14760 - type: GasVentScrubber - components: - - pos: 26.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14761 - type: GasVentPump - components: - - pos: 25.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14762 - type: GasPipeStraight - components: - - pos: 25.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14763 - type: GasPipeStraight - components: - - pos: 25.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14764 - type: GasPipeStraight - components: - - pos: 25.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14765 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 25.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14766 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14767 - type: GasPipeStraight - components: - - pos: -32.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14768 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14769 - type: GasPipeTJunction - components: - - pos: 27.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14770 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14771 - type: GasVentScrubber - components: - - pos: 29.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14772 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 27.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14773 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14774 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14775 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14776 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14777 - type: GasPipeTJunction - components: - - pos: 35.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14778 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 36.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14779 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14780 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14781 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14782 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14783 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14784 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14785 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14786 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14787 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14788 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14789 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14790 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14791 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14792 - type: GasVentScrubber - components: - - pos: 46.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14793 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 48.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14794 - type: GasPipeBend - components: - - pos: 48.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14795 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14796 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14797 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14798 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14799 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14800 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14801 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14802 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14803 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14804 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14805 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14806 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14807 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 35.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14808 - type: GasVentScrubber - components: - - pos: 36.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14809 - type: GasPipeStraight - components: - - pos: 30.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14810 - type: GasPipeStraight - components: - - pos: 30.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14811 - type: GasPipeStraight - components: - - pos: 30.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14812 - type: GasPipeStraight - components: - - pos: 30.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14813 - type: GasPipeStraight - components: - - pos: 30.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14814 - type: GasPipeStraight - components: - - pos: 30.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14815 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14816 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14817 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14818 - type: GasPipeStraight - components: - - pos: 30.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14819 - type: GasPipeStraight - components: - - pos: 30.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14820 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14821 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 30.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14822 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14823 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14824 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14825 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14826 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 31.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14827 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14828 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14829 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14830 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14831 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14832 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14833 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14834 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14835 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14836 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14837 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14838 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14839 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14840 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 24.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14841 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 24.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14842 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 31.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14843 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 30.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14844 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 31.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14845 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 30.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14846 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14847 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14848 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14849 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14850 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14851 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14852 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14853 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14854 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14855 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14856 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 25.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14857 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 25.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14858 - type: GasPipeStraight - components: - - pos: 30.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14859 - type: GasPipeStraight - components: - - pos: 30.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14860 - type: GasPipeStraight - components: - - pos: 30.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14861 - type: GasPipeStraight - components: - - pos: 30.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14862 - type: GasPipeStraight - components: - - pos: 30.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14863 - type: GasPipeFourway - components: - - pos: 30.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14864 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14865 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14866 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14867 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14868 - type: GasPipeTJunction - components: - - pos: 35.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14869 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14870 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14871 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14872 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14873 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14874 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14875 - type: GasVentScrubber - components: - - pos: 36.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14876 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 36.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14877 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 46.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14878 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14879 - type: GasVentScrubber - components: - - pos: 46.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14880 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 48.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14881 - type: GasPipeBend - components: - - pos: 48.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14882 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14883 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14884 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14885 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14886 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14887 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14888 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14889 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14890 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14891 - type: GasPipeFourway - components: - - pos: 30.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14892 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14893 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14894 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14895 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14896 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14897 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14898 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 32.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14899 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 31.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14900 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 31.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14901 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14902 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14903 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14904 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14905 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 25.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14906 - type: GasVentPump - components: - - pos: 25.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14907 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 23.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14908 - type: GasPipeBend - components: - - pos: 24.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14909 - type: GasPipeStraight - components: - - pos: 24.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14910 - type: GasPipeStraight - components: - - pos: 24.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14911 - type: GasPipeStraight - components: - - pos: 24.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14912 - type: GasPipeStraight - components: - - pos: 24.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14913 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14914 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14915 - type: GasPipeTJunction - components: - - pos: 27.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14916 - type: GasVentScrubber - components: - - pos: 28.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14917 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 27.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14918 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14919 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14920 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14921 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14922 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14923 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14924 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14925 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14926 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14927 - type: GasPipeTJunction - components: - - pos: 17.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14928 - type: GasVentScrubber - components: - - pos: 15.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14929 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 17.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14930 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14931 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14932 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14933 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14934 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14935 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14936 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14937 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14938 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14939 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14940 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 32.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14941 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 30.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14942 - type: GasPipeStraight - components: - - pos: 30.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14943 - type: GasPipeStraight - components: - - pos: 30.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14944 - type: GasPipeStraight - components: - - pos: 30.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14945 - type: GasPipeStraight - components: - - pos: 30.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14946 - type: GasPipeStraight - components: - - pos: 30.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14947 - type: GasPipeStraight - components: - - pos: 30.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14948 - type: GasPipeStraight - components: - - pos: 30.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14949 - type: GasPipeStraight - components: - - pos: 30.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14950 - type: GasPipeStraight - components: - - pos: 30.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14951 - type: GasPipeStraight - components: - - pos: 30.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14952 - type: GasPipeStraight - components: - - pos: 30.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14953 - type: GasPipeStraight - components: - - pos: 30.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14954 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 31.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14955 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 31.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14956 - type: GasPipeStraight - components: - - pos: 32.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14957 - type: GasPipeStraight - components: - - pos: 32.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14958 - type: GasPipeStraight - components: - - pos: 32.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14959 - type: GasPipeStraight - components: - - pos: 32.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14960 - type: GasPipeFourway - components: - - pos: 32.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14961 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14962 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14963 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 35.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14964 - type: GasPipeBend - components: - - pos: 32.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14965 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 31.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14966 - type: Window - components: - - rot: 3.141592653589793 rad - pos: 32.5,39.5 - parent: 1 - type: Transform -- uid: 14967 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14968 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 30.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14969 - type: GasPipeStraight - components: - - pos: 30.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14970 - type: GasPipeStraight - components: - - pos: 30.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14971 - type: GasPipeStraight - components: - - pos: 30.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14972 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 30.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14973 - type: GasPipeFourway - components: - - pos: 30.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14974 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14975 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14976 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14977 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14978 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14979 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14980 - type: GasPipeTJunction - components: - - pos: 25.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14981 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14982 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14983 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 31.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14984 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14985 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14986 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 31.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14987 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 30.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14988 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 31.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14989 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14990 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14991 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 30.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14992 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14993 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14994 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14995 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14996 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14997 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14998 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14999 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 31.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15000 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 30.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15001 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 32.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15002 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 29.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15003 - type: GasPipeStraight - components: - - pos: 30.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15004 - type: GasPipeStraight - components: - - pos: 30.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15005 - type: GasPipeStraight - components: - - pos: 30.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15006 - type: GasPipeStraight - components: - - pos: 30.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15007 - type: GasPipeStraight - components: - - pos: 30.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15008 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 31.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15009 - type: GasPipeBend - components: - - pos: 30.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15010 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15011 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15012 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15013 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15014 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15015 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15016 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 27.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15017 - type: GasPipeBend - components: - - pos: 27.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15018 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15019 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 25.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15020 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 25.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15021 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 25.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15022 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15023 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15024 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15025 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 24.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15026 - type: GasPipeStraight - components: - - pos: 24.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15027 - type: GasPipeStraight - components: - - pos: 24.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15028 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 24.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15029 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 24.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15030 - type: GasVentPump - components: - - pos: 24.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15031 - type: GasVentScrubber - components: - - pos: 25.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15032 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15033 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15034 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15035 - type: GasPipeTJunction - components: - - pos: 36.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15036 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 36.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15037 - type: GasVentScrubber - components: - - pos: 35.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15038 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15039 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15040 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15041 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15042 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15043 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15044 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15045 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15046 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 44.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15047 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15048 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15049 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15050 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15051 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15052 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15053 - type: GasPipeBend - components: - - pos: 44.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15054 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 43.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15055 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15056 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15057 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15058 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15059 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15060 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15061 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 43.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15062 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15063 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15064 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15065 - type: GasVentPump - components: - - pos: 43.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15066 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 46.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15067 - type: GasVentScrubber - components: - - pos: 46.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15068 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 46.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15069 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15070 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15071 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15072 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15073 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15074 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15075 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 26.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15076 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 25.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15077 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15078 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15079 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15080 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 31.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15081 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 32.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15082 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15083 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15084 - type: GasVentScrubber - components: - - pos: 32.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15085 - type: GasPipeFourway - components: - - pos: 22.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15086 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 18.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15087 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15088 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15089 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15090 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15091 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15092 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 22.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15093 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 18.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15094 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 19.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15095 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 21.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15096 - type: GasPipeStraight - components: - - pos: 18.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15097 - type: GasPipeStraight - components: - - pos: 18.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15098 - type: GasPipeStraight - components: - - pos: 18.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15099 - type: GasPipeStraight - components: - - pos: 22.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15100 - type: GasPipeStraight - components: - - pos: 22.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15101 - type: GasVentPump - components: - - pos: 22.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15102 - type: GasVentScrubber - components: - - pos: 18.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15103 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15104 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15105 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15106 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15107 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15108 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15109 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15110 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 15.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15111 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15112 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15113 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15114 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15115 - type: GasPipeStraight - components: - - pos: 14.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15116 - type: GasPipeStraight - components: - - pos: 14.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15117 - type: GasPipeStraight - components: - - pos: 14.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15118 - type: GasPipeStraight - components: - - pos: 14.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15119 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 14.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15120 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 14.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15121 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 14.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15122 - type: GasPipeStraight - components: - - pos: 14.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15123 - type: GasPipeStraight - components: - - pos: 14.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15124 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 14.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15125 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15126 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15127 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15128 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15129 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 12.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15130 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 12.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15131 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 17.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15132 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 15.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15133 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 14.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15134 - type: GasPipeTJunction - components: - - pos: 15.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15135 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15136 - type: GasPipeStraight - components: - - pos: 15.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15137 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15138 - type: GasPipeStraight - components: - - pos: 15.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15139 - type: GasPipeStraight - components: - - pos: 15.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15140 - type: GasPipeStraight - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15141 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15142 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15143 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15144 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15145 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15146 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 17.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15147 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 12.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15148 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 12.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15149 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15150 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15151 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15152 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15153 - type: GasPipeTJunction - components: - - pos: 11.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15154 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 11.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15155 - type: GasVentScrubber - components: - - pos: 10.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15156 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15157 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15158 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15159 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 10.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15160 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15161 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15162 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15163 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15164 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15165 - type: GasPipeTJunction - components: - - pos: 5.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15166 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 4.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15167 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15168 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15169 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15170 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15171 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15172 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 5.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15173 - type: GasVentScrubber - components: - - pos: 4.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15174 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15175 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15176 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15177 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15178 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15179 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15180 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15181 - type: GasPipeFourway - components: - - pos: 0.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15182 - type: GasPipeFourway - components: - - pos: -1.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15183 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15184 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15185 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15186 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15187 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15188 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15189 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15190 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15191 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15192 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -7.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15193 - type: GasPipeTJunction - components: - - pos: -8.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15194 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15195 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15196 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15197 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15198 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15199 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15200 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -8.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15201 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15202 - type: GasPipeStraight - components: - - pos: 0.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15203 - type: GasPipeStraight - components: - - pos: 0.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15204 - type: GasPipeStraight - components: - - pos: 0.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15205 - type: GasPipeStraight - components: - - pos: 0.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15206 - type: GasPipeStraight - components: - - pos: -1.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15207 - type: GasPipeStraight - components: - - pos: -1.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15208 - type: GasPipeStraight - components: - - pos: -1.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15209 - type: GasPipeStraight - components: - - pos: -1.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15210 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15211 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15212 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15213 - type: GasPipeTJunction - components: - - pos: -13.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15214 - type: GasPipeFourway - components: - - pos: -15.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15215 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15216 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15217 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15218 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15219 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15220 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15221 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15222 - type: GasPipeStraight - components: - - pos: -15.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15223 - type: GasPipeStraight - components: - - pos: -15.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15224 - type: GasPipeStraight - components: - - pos: -15.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15225 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -13.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15226 - type: GasVentScrubber - components: - - pos: -15.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15227 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15228 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15229 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15230 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15231 - type: GasPipeTJunction - components: - - pos: -20.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15232 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15233 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15234 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15235 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15236 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15237 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15238 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15239 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -15.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15240 - type: GasPipeStraight - components: - - pos: -15.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15241 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -15.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15242 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -13.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15243 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15244 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15245 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15246 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -13.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15247 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15248 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15249 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15250 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15251 - type: GasPipeBend - components: - - pos: -13.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15252 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15253 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15254 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15255 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15256 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15257 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -20.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15258 - type: GasPipeStraight - components: - - pos: -20.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15259 - type: GasPipeStraight - components: - - pos: -20.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15260 - type: GasPipeStraight - components: - - pos: -20.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15261 - type: GasPipeStraight - components: - - pos: -20.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15262 - type: GasPipeTJunction - components: - - pos: -17.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15263 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -17.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15264 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -16.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15265 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -14.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15266 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -14.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15267 - type: GasPipeTJunction - components: - - pos: -12.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15268 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -11.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15269 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15270 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -9.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15271 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -9.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15272 - type: GasPipeFourway - components: - - pos: -10.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15273 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15274 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15275 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15276 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15277 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15278 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15279 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15280 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15281 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15282 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -11.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15283 - type: GasVentScrubber - components: - - pos: -10.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15284 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -10.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15285 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15286 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15287 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -10.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15288 - type: GasPipeTJunction - components: - - pos: -9.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15289 - type: GasPipeStraight - components: - - pos: -9.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15290 - type: GasPipeStraight - components: - - pos: -9.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15291 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -9.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15292 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15293 - type: GasPipeTJunction - components: - - pos: -7.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15294 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -7.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15295 - type: GasVentPump - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15296 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -9.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15297 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15298 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15299 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15300 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15301 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15302 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15303 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15304 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -5.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15305 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -5.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15306 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -4.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15307 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15308 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15309 - type: GasPipeStraight - components: - - pos: -4.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15310 - type: GasPipeStraight - components: - - pos: -4.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15311 - type: GasPipeStraight - components: - - pos: -4.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15312 - type: GasPipeStraight - components: - - pos: -4.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15313 - type: GasPipeStraight - components: - - pos: -5.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15314 - type: GasPipeBend - components: - - pos: -5.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15315 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -6.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15316 - type: GasVentScrubber - components: - - pos: -6.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15317 - type: GasVentPump - components: - - pos: -4.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15318 - type: GasPipeStraight - components: - - pos: -1.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15319 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15320 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15321 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15322 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15323 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15324 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15325 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -0.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15326 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -0.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15327 - type: GasPipeStraight - components: - - pos: -1.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15328 - type: GasPipeStraight - components: - - pos: -1.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15329 - type: GasPipeStraight - components: - - pos: -1.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15330 - type: GasPipeStraight - components: - - pos: -1.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15331 - type: GasPipeStraight - components: - - pos: -1.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15332 - type: GasPipeStraight - components: - - pos: -1.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15333 - type: GasPipeStraight - components: - - pos: -1.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15334 - type: GasPipeStraight - components: - - pos: -1.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15335 - type: GasPipeStraight - components: - - pos: -1.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15336 - type: GasPipeStraight - components: - - pos: -1.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15337 - type: GasPipeStraight - components: - - pos: -1.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15338 - type: GasPipeStraight - components: - - pos: 0.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15339 - type: GasPipeStraight - components: - - pos: 0.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15340 - type: GasPipeStraight - components: - - pos: 0.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15341 - type: GasPipeStraight - components: - - pos: 0.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15342 - type: GasPipeStraight - components: - - pos: 0.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15343 - type: GasPipeStraight - components: - - pos: 0.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15344 - type: GasPipeStraight - components: - - pos: 0.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15345 - type: GasPipeStraight - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15346 - type: GasPipeStraight - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15347 - type: GasPipeStraight - components: - - pos: 0.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15348 - type: GasPipeStraight - components: - - pos: 0.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15349 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15350 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15351 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -0.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15352 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15353 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15354 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15355 - type: GasPipeFourway - components: - - pos: -1.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15356 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15357 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15358 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15359 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15360 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15361 - type: GasPipeFourway - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15362 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15363 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15364 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15365 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15366 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15367 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15368 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15369 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15370 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15371 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15372 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15373 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15374 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15375 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15376 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15377 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15378 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15379 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15380 - type: GasPipeTJunction - components: - - pos: 9.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15381 - type: GasVentScrubber - components: - - pos: 8.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15382 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 9.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15383 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15384 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15385 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15386 - type: CableApcExtension - components: - - pos: -35.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15387 - type: CableApcExtension - components: - - pos: -35.5,9.5 - parent: 1 - type: Transform -- uid: 15388 - type: CableApcExtension - components: - - pos: -35.5,10.5 - parent: 1 - type: Transform -- uid: 15389 - type: CableApcExtension - components: - - pos: -45.5,14.5 - parent: 1 - type: Transform -- uid: 15390 - type: CableApcExtension - components: - - pos: -45.5,13.5 - parent: 1 - type: Transform -- uid: 15391 - type: CableApcExtension - components: - - pos: -35.5,12.5 - parent: 1 - type: Transform -- uid: 15392 - type: CableApcExtension - components: - - pos: -35.5,13.5 - parent: 1 - type: Transform -- uid: 15393 - type: CableApcExtension - components: - - pos: -36.5,13.5 - parent: 1 - type: Transform -- uid: 15394 - type: CableApcExtension - components: - - pos: -37.5,13.5 - parent: 1 - type: Transform -- uid: 15395 - type: CableApcExtension - components: - - pos: -38.5,13.5 - parent: 1 - type: Transform -- uid: 15396 - type: CableApcExtension - components: - - pos: -39.5,13.5 - parent: 1 - type: Transform -- uid: 15397 - type: CableApcExtension - components: - - pos: -40.5,13.5 - parent: 1 - type: Transform -- uid: 15398 - type: CableApcExtension - components: - - pos: -34.5,10.5 - parent: 1 - type: Transform -- uid: 15399 - type: CableApcExtension - components: - - pos: -33.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15400 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -37.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15401 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -44.5,36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15402 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15403 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15404 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -12.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15405 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15406 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15407 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15408 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15409 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15410 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -12.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15411 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -11.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15412 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15413 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15414 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15415 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15416 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15417 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15418 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15419 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15420 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15421 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -21.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15422 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -20.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15423 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15424 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15425 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15426 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15427 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15428 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15429 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15430 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15431 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15432 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15433 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -20.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15434 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15435 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15436 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15437 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15438 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15439 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15440 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15441 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -21.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15442 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15443 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -21.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15444 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15445 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15446 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -24.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15447 - type: GasVentScrubber - components: - - pos: -24.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15448 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15449 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15450 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15451 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -24.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15452 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -24.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15453 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15454 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15455 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15456 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -21.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15457 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -21.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15458 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -20.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15459 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -16.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15460 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -16.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15461 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15462 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15463 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15464 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15465 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15466 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15467 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15468 - type: GasPipeTJunction - components: - - pos: -10.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15469 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15470 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15471 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15472 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15473 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15474 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15475 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15476 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15477 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15478 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -9.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15479 - type: GasVentScrubber - components: - - pos: -9.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15480 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -10.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15481 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 4.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15482 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15483 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15484 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 7.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15485 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15486 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15487 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 10.5,17.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15488 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15489 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15490 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15491 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15492 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15493 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15494 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15495 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15496 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15497 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15498 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15499 - type: GasVentPump - components: - - pos: 7.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15500 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 15.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15501 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15502 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15503 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15504 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15505 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15506 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 10.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15507 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15508 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15509 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15510 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15511 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15512 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15513 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15514 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15515 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15516 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15517 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15518 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15519 - type: GasPipeFourway - components: - - pos: 11.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15520 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15521 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15522 - type: SpawnPointMedicalDoctor - components: - - pos: 11.5,25.5 - parent: 1 - type: Transform -- uid: 15523 - type: SpawnPointMedicalDoctor - components: - - pos: 11.5,26.5 - parent: 1 - type: Transform -- uid: 15524 - type: GasVentPump - components: - - pos: 4.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15525 - type: GasVentScrubber - components: - - pos: 3.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15526 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 10.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15527 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15528 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15529 - type: GasPipeStraight - components: - - pos: 10.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15530 - type: GasPipeStraight - components: - - pos: 10.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15531 - type: GasPipeStraight - components: - - pos: 10.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15532 - type: GasPipeStraight - components: - - pos: 10.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15533 - type: GasPipeFourway - components: - - pos: 10.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15534 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15535 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15536 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15537 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 11.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15538 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15539 - type: GasPipeTJunction - components: - - pos: 9.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15540 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15541 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 7.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15542 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15543 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15544 - type: GasVentPump - components: - - pos: 7.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15545 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 6.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15546 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15547 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15548 - type: GasPipeBend - components: - - pos: 6.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15549 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15550 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 4.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15551 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15552 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15553 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15554 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 15.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15555 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15556 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15557 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15558 - type: GasVentPump - components: - - pos: 20.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15559 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 19.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15560 - type: GasPipeStraight - components: - - pos: 19.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15561 - type: GasPipeStraight - components: - - pos: 19.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15562 - type: GasVentScrubber - components: - - pos: 19.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15563 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15564 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 20.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15565 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15566 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 22.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15567 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15568 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15569 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15570 - type: Window - components: - - pos: 13.5,27.5 - parent: 1 - type: Transform -- uid: 15571 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15572 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15573 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15574 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15575 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 19.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15576 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15577 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15578 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 22.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15579 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 9.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15580 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15581 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15582 - type: GasVentPump - components: - - pos: 15.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15583 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15584 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15585 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15586 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15587 - type: GasVentScrubber - components: - - pos: 14.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15588 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15589 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15590 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15591 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15592 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15593 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15594 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15595 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15596 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -19.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15597 - type: GasPipeTJunction - components: - - pos: -22.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15598 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15599 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15600 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15601 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15602 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15603 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15604 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15605 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15606 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15607 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15608 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15609 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -22.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15610 - type: GasVentScrubber - components: - - pos: -19.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15611 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15612 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15613 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15614 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15615 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15616 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15617 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15618 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15619 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15620 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15621 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15622 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -32.5,10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15623 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15624 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15625 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15626 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15627 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15628 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15629 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15630 - type: GasPipeFourway - components: - - pos: -30.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15631 - type: GasPipeFourway - components: - - pos: -32.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15632 - type: GasPipeStraight - components: - - pos: -32.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15633 - type: GasPipeStraight - components: - - pos: -32.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15634 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15635 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15636 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15637 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15638 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -37.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15639 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -39.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15640 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15641 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15642 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15643 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15644 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15645 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15646 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15647 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15648 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15649 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15650 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15651 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15652 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15653 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15654 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15655 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15656 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15657 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -47.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15658 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -49.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15659 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15660 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15661 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15662 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15663 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15664 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15665 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15666 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15667 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15668 - type: GasVentScrubber - components: - - pos: -49.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15669 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -47.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15670 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15671 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15672 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15673 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15674 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15675 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15676 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15677 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15678 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15679 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -39.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15680 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -38.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15681 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -38.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15682 - type: GasPipeBend - components: - - pos: -37.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15683 - type: GasPipeStraight - components: - - pos: -37.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15684 - type: GasPipeStraight - components: - - pos: -37.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15685 - type: GasPipeStraight - components: - - pos: -37.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15686 - type: GasPipeStraight - components: - - pos: -37.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15687 - type: GasPipeStraight - components: - - pos: -37.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15688 - type: GasPipeStraight - components: - - pos: -37.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15689 - type: GasPipeStraight - components: - - pos: -37.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15690 - type: GasPipeStraight - components: - - pos: -37.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15691 - type: GasPipeStraight - components: - - pos: -37.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15692 - type: GasPipeStraight - components: - - pos: -37.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15693 - type: GasPipeStraight - components: - - pos: -37.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15694 - type: GasPipeStraight - components: - - pos: -37.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15695 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -31.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15696 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -31.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15697 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15698 - type: GasPipeTJunction - components: - - pos: -34.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15699 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -34.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15700 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -34.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15701 - type: GasVentScrubber - components: - - pos: -34.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15702 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15703 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15704 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15705 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15706 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15707 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15708 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -40.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15709 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -40.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15710 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -39.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15711 - type: GasPipeBend - components: - - pos: -40.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15712 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15713 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -42.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15714 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15715 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15716 - type: GasPipeStraight - components: - - pos: -40.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15717 - type: GasPipeStraight - components: - - pos: -40.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15718 - type: GasPipeStraight - components: - - pos: -40.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15719 - type: GasPipeStraight - components: - - pos: -40.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15720 - type: GasPipeStraight - components: - - pos: -40.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15721 - type: GasPipeStraight - components: - - pos: -40.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15722 - type: GasPipeStraight - components: - - pos: -40.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15723 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15724 - type: GasPipeStraight - components: - - pos: -40.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15725 - type: GasPipeStraight - components: - - pos: -40.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15726 - type: GasPipeStraight - components: - - pos: -40.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15727 - type: GasPipeStraight - components: - - pos: -40.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15728 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -40.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15729 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -41.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15730 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15731 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15732 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15733 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15734 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15735 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15736 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15737 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -39.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15738 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -38.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15739 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15740 - type: GasPipeBend - components: - - pos: -35.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15741 - type: GasPipeStraight - components: - - pos: -35.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15742 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -35.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15743 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -36.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15744 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15745 - type: GasPipeBend - components: - - pos: -36.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15746 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15747 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15748 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15749 - type: GasPipeStraight - components: - - pos: -38.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15750 - type: GasPipeStraight - components: - - pos: -38.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15751 - type: GasPipeStraight - components: - - pos: -38.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15752 - type: GasPipeStraight - components: - - pos: -38.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15753 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -38.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15754 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15755 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15756 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15757 - type: GasVentScrubber - components: - - pos: -39.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15758 - type: GasPipeStraight - components: - - pos: -38.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15759 - type: GasPipeStraight - components: - - pos: -38.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15760 - type: GasPipeStraight - components: - - pos: -38.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15761 - type: GasPipeStraight - components: - - pos: -38.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15762 - type: GasPipeStraight - components: - - pos: -38.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15763 - type: GasPipeTJunction - components: - - pos: -38.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15764 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15765 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15766 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15767 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -42.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15768 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -42.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15769 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15770 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15771 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -35.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15772 - type: GasPipeBend - components: - - pos: -17.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15773 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15774 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -16.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15775 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -25.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15776 - type: GasVentScrubber - components: - - pos: -28.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15777 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15778 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15779 - type: GasPipeStraight - components: - - pos: -32.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15780 - type: GasPipeStraight - components: - - pos: -32.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15781 - type: GasPipeStraight - components: - - pos: -32.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15782 - type: GasPipeStraight - components: - - pos: -30.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15783 - type: GasPipeStraight - components: - - pos: -30.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15784 - type: GasPipeStraight - components: - - pos: -30.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15785 - type: GasPipeStraight - components: - - pos: -30.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15786 - type: GasPipeStraight - components: - - pos: -30.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15787 - type: GasPipeStraight - components: - - pos: -30.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15788 - type: GasPipeStraight - components: - - pos: -32.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15789 - type: GasPipeStraight - components: - - pos: -32.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15790 - type: GasPipeStraight - components: - - pos: -32.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15791 - type: GasPipeStraight - components: - - pos: -32.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15792 - type: GasPipeStraight - components: - - pos: -32.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15793 - type: GasPipeStraight - components: - - pos: -32.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15794 - type: GasPipeStraight - components: - - pos: -32.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15795 - type: GasPipeStraight - components: - - pos: -32.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15796 - type: GasPipeStraight - components: - - pos: -32.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15797 - type: GasPipeStraight - components: - - pos: -32.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15798 - type: GasPipeStraight - components: - - pos: -32.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15799 - type: GasPipeStraight - components: - - pos: -32.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15800 - type: GasPipeStraight - components: - - pos: -30.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15801 - type: GasPipeStraight - components: - - pos: -30.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15802 - type: GasPipeStraight - components: - - pos: -30.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15803 - type: GasPipeStraight - components: - - pos: -30.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15804 - type: GasPipeStraight - components: - - pos: -30.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15805 - type: GasPipeStraight - components: - - pos: -30.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15806 - type: GasPipeStraight - components: - - pos: -30.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15807 - type: GasPipeStraight - components: - - pos: -30.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15808 - type: GasPipeStraight - components: - - pos: -30.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15809 - type: GasPipeStraight - components: - - pos: -30.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15810 - type: GasPipeStraight - components: - - pos: -30.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15811 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -30.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15812 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -32.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15813 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -32.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15814 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -32.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15815 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -30.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15816 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -30.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15817 - type: GasPipeStraight - components: - - pos: -30.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15818 - type: GasPipeStraight - components: - - pos: -30.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15819 - type: GasPipeStraight - components: - - pos: -32.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15820 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15821 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15822 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15823 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15824 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15825 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15826 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -27.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15827 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -31.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15828 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -31.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15829 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -31.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15830 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -31.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15831 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -27.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15832 - type: GasPipeTJunction - components: - - pos: -30.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15833 - type: GasPipeTJunction - components: - - pos: -32.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15834 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15835 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15836 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15837 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15838 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15839 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15840 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15841 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15842 - type: GasPipeTJunction - components: - - pos: -22.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15843 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15844 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15845 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15846 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15847 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15848 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -24.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15849 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15850 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15851 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15852 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15853 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15854 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15855 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15856 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15857 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15858 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15859 - type: GasVentScrubber - components: - - pos: -24.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15860 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -22.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15861 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15862 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15863 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15864 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15865 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15866 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15867 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15868 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15869 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15870 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15871 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15872 - type: GasPipeTJunction - components: - - pos: -37.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15873 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -36.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15874 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15875 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15876 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15877 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15878 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15879 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -43.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15880 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15881 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15882 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15883 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15884 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15885 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -49.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15886 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15887 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15888 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15889 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15890 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15891 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15892 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15893 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15894 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15895 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15896 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -47.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15897 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -48.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15898 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15899 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15900 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15901 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15902 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15903 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -43.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15904 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -43.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15905 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -43.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15906 - type: GasVentScrubber - components: - - pos: -36.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15907 - type: GasVentScrubber - components: - - pos: -47.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15908 - type: GasVentScrubber - components: - - pos: -48.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15909 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -49.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15910 - type: GasVentPump - components: - - pos: -43.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15911 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -37.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15912 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15913 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15914 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15915 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15916 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15917 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15918 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15919 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15920 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15921 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -0.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15922 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -0.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15923 - type: GasPipeStraight - components: - - pos: 0.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15924 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15925 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15926 - type: GasPipeStraight - components: - - pos: -1.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15927 - type: GasPipeStraight - components: - - pos: -1.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15928 - type: GasPipeStraight - components: - - pos: -1.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15929 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15930 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15931 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15932 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15933 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15934 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15935 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15936 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15937 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15938 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15939 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15940 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15941 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15942 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15943 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15944 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 5.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15945 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 5.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15946 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15947 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15948 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15949 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15950 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15951 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15952 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15953 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15954 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15955 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15956 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15957 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15958 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15959 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15960 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15961 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15962 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15963 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15964 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15965 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15966 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15967 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15968 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15969 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15970 - type: GasPipeStraight - components: - - pos: -1.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15971 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15972 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15973 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15974 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15975 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15976 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15977 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15978 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15979 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15980 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15981 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -0.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15982 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -0.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15983 - type: GasPipeFourway - components: - - pos: -8.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15984 - type: GasPipeFourway - components: - - pos: -9.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15985 - type: GasPipeStraight - components: - - pos: -8.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15986 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15987 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -9.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15988 - type: GasPipeStraight - components: - - pos: -8.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15989 - type: GasPipeStraight - components: - - pos: -8.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15990 - type: GasPipeStraight - components: - - pos: -8.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15991 - type: GasPipeStraight - components: - - pos: -8.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15992 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -8.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15993 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15994 - type: GasPipeStraight - components: - - pos: -8.5,60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15995 - type: GasPipeStraight - components: - - pos: -8.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15996 - type: GasPipeStraight - components: - - pos: -8.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15997 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15998 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -6.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15999 - type: GasVentScrubber - components: - - pos: -8.5,63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16000 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16001 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16002 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16003 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16004 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16005 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16006 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -12.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16007 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -12.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16008 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16009 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16010 - type: GasPipeStraight - components: - - pos: -9.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16011 - type: GasPipeStraight - components: - - pos: -9.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16012 - type: GasPipeStraight - components: - - pos: -9.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16013 - type: GasPipeStraight - components: - - pos: -9.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16014 - type: GasPipeStraight - components: - - pos: -9.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16015 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -8.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16016 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -9.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16017 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -9.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16018 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -10.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16019 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16020 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16021 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16022 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -6.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16023 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -6.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16024 - type: GasVentPump - components: - - pos: -6.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16025 - type: GasVentScrubber - components: - - pos: -6.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16026 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16027 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16028 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16029 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -9.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16030 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -9.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16031 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -9.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16032 - type: GasPipeStraight - components: - - pos: -9.5,62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16033 - type: GasPipeStraight - components: - - pos: -9.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16034 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16035 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16036 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16037 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -5.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16038 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16039 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16040 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -6.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16041 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16042 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16043 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16044 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16045 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16046 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16047 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16048 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16049 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -13.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16050 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -14.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16051 - type: GasPipeStraight - components: - - pos: -9.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16052 - type: GasPipeFourway - components: - - pos: -9.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16053 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16054 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16055 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16056 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16057 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16058 - type: GasPipeTJunction - components: - - pos: -7.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16059 - type: GasPipeBend - components: - - pos: -4.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16060 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16061 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16062 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16063 - type: GasPipeTJunction - components: - - pos: -10.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16064 - type: GasPipeTJunction - components: - - pos: -13.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16065 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16066 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16067 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16068 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16069 - type: GasPipeTJunction - components: - - pos: -6.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16070 - type: GasPipeBend - components: - - pos: -3.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16071 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16072 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16073 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16074 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16075 - type: GasPipeTJunction - components: - - pos: -12.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16076 - type: GasPipeTJunction - components: - - pos: -16.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16077 - type: GasPipeTJunction - components: - - pos: -15.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16078 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16079 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16080 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16081 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16082 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16083 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16084 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16085 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16086 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -15.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16087 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -18.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16088 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16089 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16090 - type: GasPipeStraight - components: - - pos: -18.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16091 - type: GasPipeStraight - components: - - pos: -18.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16092 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16093 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16094 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -16.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16095 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -18.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16096 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16097 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16098 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16099 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16100 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16101 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16102 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16103 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16104 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16105 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16106 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16107 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16108 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16109 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16110 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16111 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16112 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16113 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16114 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16115 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16116 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16117 - type: GasPipeStraight - components: - - pos: -17.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16118 - type: GasPipeBend - components: - - pos: -17.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16119 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16120 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16121 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16122 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16123 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16124 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16125 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16126 - type: GasPipeTJunction - components: - - pos: -25.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16127 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16128 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16129 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -24.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16130 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -27.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16131 - type: GasPipeTJunction - components: - - pos: -28.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16132 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16133 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16134 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16135 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16136 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16137 - type: GasPipeBend - components: - - pos: -18.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16138 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16139 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -18.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16140 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -18.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16141 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -17.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16142 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -17.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16143 - type: GasVentScrubber - components: - - pos: -24.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16144 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16145 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16146 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16147 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16148 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -31.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16149 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16150 - type: GasPipeTJunction - components: - - pos: -30.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16151 - type: GasPipeStraight - components: - - pos: -31.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16152 - type: GasPipeStraight - components: - - pos: -31.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16153 - type: GasPipeStraight - components: - - pos: -31.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16154 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16155 - type: GasVentScrubber - components: - - pos: -27.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16156 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -30.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16157 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -31.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16158 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -28.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16159 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16160 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16161 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16162 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16163 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -35.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16164 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -35.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16165 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -35.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16166 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -35.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16167 - type: GasPipeBend - components: - - pos: -35.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16168 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16169 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -37.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16170 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -37.5,45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 16171 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -37.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16172 - type: GasPipeStraight - components: - - pos: -35.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16173 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16174 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16175 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -25.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16176 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16177 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16178 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16179 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16180 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16181 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16182 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16183 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -3.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16184 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -6.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16185 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -9.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16186 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -12.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16187 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -13.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16188 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -10.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16189 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -7.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16190 - type: GasPipeTJunction - components: - - pos: 6.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16191 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -4.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16192 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16193 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16194 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 6.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16195 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 6.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16196 - type: GasVentScrubber - components: - - pos: 6.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16197 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16198 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16199 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16200 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16201 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 11.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16202 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16203 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 8.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16204 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16205 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16206 - type: GasVentPump - components: - - pos: 8.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16207 - type: GasPipeStraight - components: - - pos: 11.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16208 - type: GasPipeStraight - components: - - pos: 11.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16209 - type: GasPipeStraight - components: - - pos: 11.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16210 - type: GasPipeStraight - components: - - pos: 11.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16211 - type: GasPipeStraight - components: - - pos: 11.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16212 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 11.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16213 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16214 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 13.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16215 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16216 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16217 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16218 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16219 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16220 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16221 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16222 - type: GasPipeStraight - components: - - pos: -1.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16223 - type: GasPipeStraight - components: - - pos: -1.5,58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16224 - type: GasPipeStraight - components: - - pos: -1.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16225 - type: GasPipeStraight - components: - - pos: -1.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16226 - type: GasPipeStraight - components: - - pos: -1.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16227 - type: GasPipeStraight - components: - - pos: -1.5,62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16228 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16229 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16230 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16231 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16232 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16233 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16234 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16235 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16236 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16237 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 4.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16238 - type: GasVentScrubber - components: - - pos: 4.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16239 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 3.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16240 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -0.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16241 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -0.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16242 - type: GasPipeStraight - components: - - pos: 0.5,64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16243 - type: GasPipeStraight - components: - - pos: 0.5,63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16244 - type: GasPipeStraight - components: - - pos: 0.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16245 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16246 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16247 - type: GasPipeStraight - components: - - pos: -1.5,65.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16248 - type: GasPipeStraight - components: - - pos: -1.5,66.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16249 - type: GasPipeStraight - components: - - pos: -1.5,67.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16250 - type: GasPipeStraight - components: - - pos: 0.5,67.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16251 - type: GasPipeStraight - components: - - pos: 0.5,68.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16252 - type: GasPipeStraight - components: - - pos: 0.5,69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16253 - type: GasPipeStraight - components: - - pos: 0.5,70.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16254 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,71.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16255 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,74.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16256 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,70.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16257 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16258 - type: GasPipeStraight - components: - - pos: -1.5,69.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16259 - type: GasPipeStraight - components: - - pos: -1.5,71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16260 - type: GasPipeStraight - components: - - pos: -1.5,72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16261 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16262 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16263 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16264 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16265 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16266 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16267 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16268 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16269 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16270 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16271 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16272 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16273 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16274 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16275 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16276 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16277 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16278 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16279 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16280 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16281 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16282 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 11.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16283 - type: GasVentScrubber - components: - - pos: 11.5,67.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16284 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 10.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16285 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -0.5,70.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16286 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -0.5,73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16287 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -0.5,71.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16288 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -0.5,74.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16289 - type: GasPipeStraight - components: - - pos: 0.5,72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16290 - type: GasPipeStraight - components: - - pos: 0.5,73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16291 - type: GasPipeStraight - components: - - pos: -1.5,74.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16292 - type: GasPipeStraight - components: - - pos: -1.5,75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16293 - type: GasPipeStraight - components: - - pos: -1.5,76.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16294 - type: GasPipeStraight - components: - - pos: 0.5,75.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16295 - type: GasPipeStraight - components: - - pos: 0.5,76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16296 - type: GasPipeTJunction - components: - - pos: 0.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16297 - type: GasPipeTJunction - components: - - pos: -1.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16298 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16299 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16300 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16301 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16302 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16303 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16304 - type: GasPipeTJunction - components: - - pos: 3.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16305 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 5.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16306 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16307 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16308 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16309 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16310 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16311 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16312 - type: GasPipeTJunction - components: - - pos: -5.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16313 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -6.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16314 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16315 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16316 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16317 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16318 - type: GasPipeStraight - components: - - pos: -5.5,76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16319 - type: GasPipeStraight - components: - - pos: -5.5,75.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16320 - type: GasPipeStraight - components: - - pos: -5.5,74.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16321 - type: GasPipeStraight - components: - - pos: -6.5,77.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16322 - type: GasPipeStraight - components: - - pos: -6.5,76.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16323 - type: GasPipeStraight - components: - - pos: -6.5,75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16324 - type: GasPipeStraight - components: - - pos: -6.5,74.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16325 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -6.5,73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16326 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,77.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16327 - type: GasVentPump - components: - - pos: -6.5,79.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16328 - type: GasVentPump - components: - - pos: 5.5,79.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16329 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16330 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16331 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 5.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16332 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -6.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16333 - type: GasPipeStraight - components: - - pos: -5.5,73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16334 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -7.5,73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16335 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -5.5,72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16336 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16337 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16338 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16339 - type: GasVentScrubber - components: - - pos: -8.5,73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16340 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -8.5,70.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16341 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,71.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16342 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16343 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,75.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16344 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,77.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16345 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,76.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16346 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16347 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 5.5,74.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16348 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 6.5,74.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16349 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 3.5,74.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16350 - type: GasPipeStraight - components: - - pos: 28.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16351 - type: GasPipeStraight - components: - - pos: 28.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16352 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16353 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16354 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16355 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16356 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16357 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16358 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16359 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16360 - type: GasPipeStraight - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16361 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16362 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16363 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16364 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16365 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16366 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16367 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16368 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16369 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16370 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16371 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16372 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16373 - type: GasPipeStraight - components: - - pos: 12.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16374 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16375 - type: MedkitAdvancedFilled - components: - - pos: -10.381355,48.62417 - parent: 1 - type: Transform -- uid: 16376 - type: RollerBed - components: - - pos: -15.5,56.5 - parent: 1 - type: Transform -- uid: 16377 - type: SpawnVehicleJanicart - components: - - pos: 22.5,-5.5 - parent: 1 - type: Transform -- uid: 16378 - type: VehicleKeyJanicart - components: - - pos: 16.5,-4.5 - parent: 1 - type: Transform -- uid: 16379 - type: VehicleJanicartDestroyed - components: - - pos: 24.5,58.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 16380 - type: CableHV - components: - - pos: 15.5,-13.5 - parent: 1 - type: Transform -- uid: 16381 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-24.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Tech Storage - type: SurveillanceCamera -- uid: 16382 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 8.5,-28.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES Room - type: SurveillanceCamera -- uid: 16383 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-39.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - type: SurveillanceCamera -- uid: 16384 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -9.5,-43.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Port Thruster Exterior - type: SurveillanceCamera -- uid: 16385 - type: CableApcExtension - components: - - pos: -12.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16386 - type: CableApcExtension - components: - - pos: -11.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16387 - type: CableApcExtension - components: - - pos: -10.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16388 - type: CableApcExtension - components: - - pos: 11.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16389 - type: CableApcExtension - components: - - pos: 10.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16390 - type: CableApcExtension - components: - - pos: 9.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16391 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 8.5,-43.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Starboard Thruster Exterior - type: SurveillanceCamera -- uid: 16392 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-33.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Atrium B - type: SurveillanceCamera -- uid: 16393 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-22.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - type: SurveillanceCamera -- uid: 16394 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-19.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - type: SurveillanceCamera -- uid: 16395 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 6.5,-23.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Chief Engineer's Office - type: SurveillanceCamera -- uid: 16396 - type: SurveillanceCameraEngineering - components: - - pos: 9.5,-15.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Reception - type: SurveillanceCamera -- uid: 16397 - type: SurveillanceCameraEngineering - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Reception - type: SurveillanceCamera -- uid: 16398 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-18.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Locker Room - type: SurveillanceCamera -- uid: 16399 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-27.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Canister Storage - type: SurveillanceCamera -- uid: 16400 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Storage Tanks - type: SurveillanceCamera -- uid: 16401 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-39.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Mixing Chambers - type: SurveillanceCamera -- uid: 16402 - type: SurveillanceCameraGeneral - components: - - pos: -0.5,-13.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Engineering Lobby - type: SurveillanceCamera -- uid: 16403 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -1.5,-13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 16404 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -0.5,-13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 16405 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 16406 - type: PottedPlantRandom - components: - - pos: 1.5,-13.5 - parent: 1 - type: Transform -- uid: 16407 - type: SurveillanceCameraService - components: - - pos: -5.5,-5.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: South Cafeteria - type: SurveillanceCamera -- uid: 16408 - type: PottedPlantRandom - components: - - pos: -2.5,-13.5 - parent: 1 - type: Transform -- uid: 16409 - type: SurveillanceCameraService - components: - - rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: North Cafeteria - type: SurveillanceCamera -- uid: 16410 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Middle Cafeteria - type: SurveillanceCamera -- uid: 16411 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: -7.5,8.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - type: SurveillanceCamera -- uid: 16412 - type: SurveillanceCameraService - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - type: SurveillanceCamera -- uid: 16413 - type: SurveillanceCameraService - components: - - pos: 9.5,5.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany - type: SurveillanceCamera -- uid: 16414 - type: SurveillanceCameraCommand - components: - - pos: -23.5,-13.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Drone Storage - type: SurveillanceCamera -- uid: 16415 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-17.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Gravity - type: SurveillanceCamera -- uid: 16416 - type: SurveillanceCameraSupply - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-6.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - type: SurveillanceCamera -- uid: 16417 - type: SurveillanceCameraSupply - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-8.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Loading Dock - type: SurveillanceCamera -- uid: 16418 - type: SurveillanceCameraSupply - components: - - rot: 1.5707963267948966 rad - pos: -37.5,3.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Loading Bay - type: SurveillanceCamera -- uid: 16419 - type: SurveillanceCameraSupply - components: - - rot: 1.5707963267948966 rad - pos: -30.5,7.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Lobby - type: SurveillanceCamera -- uid: 16420 - type: SurveillanceCameraSupply - components: - - pos: -34.5,9.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Mail Room - type: SurveillanceCamera -- uid: 16421 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -42.5,8.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Quartermaster's Office - type: SurveillanceCamera -- uid: 16422 - type: SurveillanceCameraSupply - components: - - rot: 1.5707963267948966 rad - pos: -36.5,25.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage - type: SurveillanceCamera -- uid: 16423 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: 19.5,-3.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitor Closet - type: SurveillanceCamera -- uid: 16424 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: HoP Line - type: SurveillanceCamera -- uid: 16425 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 23.5,4.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP's Office - type: SurveillanceCamera -- uid: 16426 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 27.5,9.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP's Bedroom - type: SurveillanceCamera -- uid: 16427 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 23.5,32.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EVA Storage - type: SurveillanceCamera -- uid: 16428 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 24.5,22.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Public Park - type: SurveillanceCamera -- uid: 16429 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: -22.5,8.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Library - type: SurveillanceCamera -- uid: 16430 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: 34.5,46.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Chapel - type: SurveillanceCamera -- uid: 16431 - type: SurveillanceCameraService - components: - - pos: 33.5,54.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Crematorium - type: SurveillanceCamera -- uid: 16432 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 43.5,48.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective's Office - type: SurveillanceCamera -- uid: 16433 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 43.5,44.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: EVAC Checkpoint - type: SurveillanceCamera -- uid: 16434 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 17.5,41.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Laundry Room - type: SurveillanceCamera -- uid: 16435 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 15.5,42.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms - type: SurveillanceCamera -- uid: 16436 - type: SurveillanceCameraMedical - components: - - pos: 11.5,17.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Reception - type: SurveillanceCamera -- uid: 16437 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 12.5,26.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Atrium - type: SurveillanceCamera -- uid: 16438 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 26.5,0.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arcade - type: SurveillanceCamera -- uid: 16439 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 49.5,37.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: EVAC A - type: SurveillanceCamera -- uid: 16440 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 49.5,14.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: EVAV B - type: SurveillanceCamera -- uid: 16442 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Arrivals Checkpoint - type: SurveillanceCamera -- uid: 16443 - type: SurveillanceCameraGeneral - components: - - pos: 13.5,-9.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Aft Hallway 2 - type: SurveillanceCamera -- uid: 16444 - type: SurveillanceCameraGeneral - components: - - pos: -22.5,-9.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Aft Hallway 1 - type: SurveillanceCamera -- uid: 16445 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-3.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cargo Checkpoint - type: SurveillanceCamera -- uid: 16446 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -50.5,14.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Port Docking Hangar - type: SurveillanceCamera -- uid: 16447 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -32.5,22.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Port Hallway - type: SurveillanceCamera -- uid: 16448 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -26.5,31.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Tool Room - type: SurveillanceCamera -- uid: 16449 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -44.5,43.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Port Garden - type: SurveillanceCamera -- uid: 16450 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -29.5,45.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig - type: SurveillanceCamera -- uid: 16451 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -10.5,46.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Atrium 2 - type: SurveillanceCamera -- uid: 16452 - type: SurveillanceCameraSecurity - components: - - pos: -10.5,52.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Atrium 1 - type: SurveillanceCamera -- uid: 16453 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -19.5,41.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Locker Room - type: SurveillanceCamera -- uid: 16454 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -14.5,60.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoS' Office - type: SurveillanceCamera -- uid: 16455 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -6.5,64.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - type: SurveillanceCamera -- uid: 16456 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 11.5,61.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court Room - type: SurveillanceCamera -- uid: 16457 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 5.5,61.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Lawyer's Office - type: SurveillanceCamera -- uid: 16458 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 5.5,46.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - type: SurveillanceCamera -- uid: 16459 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -1.5,46.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Fore Hallway - type: SurveillanceCamera -- uid: 16460 - type: SurveillanceCameraGeneral - components: - - pos: 9.5,66.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bridge Observatory - type: SurveillanceCamera -- uid: 16461 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: -1.5,71.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge Hallway - type: SurveillanceCamera -- uid: 16462 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 4.5,74.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference Room - type: SurveillanceCamera -- uid: 16463 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -0.5,83.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge - type: SurveillanceCamera -- uid: 16464 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -5.5,73.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Bedroom - type: SurveillanceCamera -- uid: 16465 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: 9.5,32.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cloning - type: SurveillanceCamera -- uid: 16466 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 7.5,31.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Ward - type: SurveillanceCamera -- uid: 16467 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 16.5,32.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: CMO's Office - type: SurveillanceCamera -- uid: 16468 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: 20.5,34.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue - type: SurveillanceCamera -- uid: 16469 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: 18.5,27.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery - type: SurveillanceCamera -- uid: 16470 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: 4.5,25.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - type: SurveillanceCamera -- uid: 16471 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16472 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16473 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16474 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16475 - type: SurveillanceCameraGeneral - components: - - pos: -0.5,13.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Med/Sci Lobby - type: SurveillanceCamera -- uid: 16476 - type: SurveillanceCameraGeneral - components: - - pos: -18.5,13.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Aft Port Hallway - type: SurveillanceCamera -- uid: 16477 - type: SurveillanceCameraGeneral - components: - - pos: 16.5,13.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Aft Starboard Hallway - type: SurveillanceCamera -- uid: 16478 - type: SurveillanceCameraScience - components: - - rot: 1.5707963267948966 rad - pos: -13.5,32.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics - type: SurveillanceCamera -- uid: 16479 - type: SurveillanceCameraScience - components: - - rot: -1.5707963267948966 rad - pos: -11.5,29.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: XenoArch - type: SurveillanceCamera -- uid: 16480 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: -4.5,24.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: R&D - type: SurveillanceCamera -- uid: 16481 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: -12.5,25.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Atrium - type: SurveillanceCamera -- uid: 16482 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -24.5,23.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: RD's Office - type: SurveillanceCamera -- uid: 16483 - type: SurveillanceCameraScience - components: - - pos: -14.5,17.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Anomalous Materials - type: SurveillanceCamera -- uid: 16484 - type: SurveillanceCameraGeneral - components: - - pos: -16.5,36.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Fore Port Hallway - type: SurveillanceCamera -- uid: 16485 - type: SurveillanceCameraGeneral - components: - - pos: 17.5,36.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Fore Starboard Hallway - type: SurveillanceCamera -- uid: 16486 - type: SurveillanceWirelessCameraMovableEntertainment - components: - - rot: 3.141592653589793 rad - pos: 10.5,54.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: Court TV - type: SurveillanceCamera -- uid: 16487 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 0.5,27.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Midships Hallway - type: SurveillanceCamera -- uid: 16488 - type: TableWood - components: - - pos: -5.5,-5.5 - parent: 1 - type: Transform -- uid: 16489 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Aft Port Access - type: SurveillanceCamera -- uid: 16490 - type: DisposalYJunction - components: - - pos: 0.5,76.5 - parent: 1 - type: Transform -- uid: 16491 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 2.5,70.5 - parent: 1 - type: Transform -- uid: 16492 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,70.5 - parent: 1 - type: Transform -- uid: 16493 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,70.5 - parent: 1 - type: Transform -- uid: 16494 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 5.5,70.5 - parent: 1 - type: Transform -- uid: 16495 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,71.5 - parent: 1 - type: Transform -- uid: 16496 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,72.5 - parent: 1 - type: Transform -- uid: 16497 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,73.5 - parent: 1 - type: Transform -- uid: 16498 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,74.5 - parent: 1 - type: Transform -- uid: 16499 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,75.5 - parent: 1 - type: Transform -- uid: 16500 - type: DisposalBend - components: - - pos: 5.5,76.5 - parent: 1 - type: Transform -- uid: 16501 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,76.5 - parent: 1 - type: Transform -- uid: 16502 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,76.5 - parent: 1 - type: Transform -- uid: 16503 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,76.5 - parent: 1 - type: Transform -- uid: 16504 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,76.5 - parent: 1 - type: Transform -- uid: 16505 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -7.5,76.5 - parent: 1 - type: Transform -- uid: 16506 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,76.5 - parent: 1 - type: Transform -- uid: 16507 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,76.5 - parent: 1 - type: Transform -- uid: 16508 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,76.5 - parent: 1 - type: Transform -- uid: 16509 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,76.5 - parent: 1 - type: Transform -- uid: 16510 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,76.5 - parent: 1 - type: Transform -- uid: 16511 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,76.5 - parent: 1 - type: Transform -- uid: 16512 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,76.5 - parent: 1 - type: Transform -- uid: 16513 - type: DisposalPipe - components: - - pos: 0.5,75.5 - parent: 1 - type: Transform -- uid: 16514 - type: DisposalPipe - components: - - pos: 0.5,74.5 - parent: 1 - type: Transform -- uid: 16515 - type: DisposalPipe - components: - - pos: 0.5,73.5 - parent: 1 - type: Transform -- uid: 16516 - type: DisposalPipe - components: - - pos: 0.5,72.5 - parent: 1 - type: Transform -- uid: 16517 - type: DisposalPipe - components: - - pos: 0.5,71.5 - parent: 1 - type: Transform -- uid: 16518 - type: DisposalPipe - components: - - pos: 0.5,70.5 - parent: 1 - type: Transform -- uid: 16519 - type: DisposalPipe - components: - - pos: 0.5,69.5 - parent: 1 - type: Transform -- uid: 16520 - type: DisposalJunction - components: - - pos: 0.5,68.5 - parent: 1 - type: Transform -- uid: 16521 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,68.5 - parent: 1 - type: Transform -- uid: 16522 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,68.5 - parent: 1 - type: Transform -- uid: 16523 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -2.5,68.5 - parent: 1 - type: Transform -- uid: 16524 - type: DisposalPipe - components: - - pos: 0.5,67.5 - parent: 1 - type: Transform -- uid: 16525 - type: DisposalPipe - components: - - pos: 0.5,66.5 - parent: 1 - type: Transform -- uid: 16526 - type: DisposalPipe - components: - - pos: 0.5,65.5 - parent: 1 - type: Transform -- uid: 16527 - type: DisposalPipe - components: - - pos: 0.5,64.5 - parent: 1 - type: Transform -- uid: 16528 - type: DisposalPipe - components: - - pos: 0.5,63.5 - parent: 1 - type: Transform -- uid: 16529 - type: DisposalPipe - components: - - pos: 0.5,62.5 - parent: 1 - type: Transform -- uid: 16530 - type: DisposalPipe - components: - - pos: 0.5,61.5 - parent: 1 - type: Transform -- uid: 16531 - type: DisposalPipe - components: - - pos: 0.5,60.5 - parent: 1 - type: Transform -- uid: 16532 - type: DisposalPipe - components: - - pos: 0.5,59.5 - parent: 1 - type: Transform -- uid: 16533 - type: DisposalPipe - components: - - pos: 0.5,58.5 - parent: 1 - type: Transform -- uid: 16534 - type: DisposalJunction - components: - - pos: 0.5,57.5 - parent: 1 - type: Transform -- uid: 16535 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -3.5,57.5 - parent: 1 - type: Transform -- uid: 16536 - type: PottedPlantRandomPlastic - components: - - pos: 5.5,52.5 - parent: 1 - type: Transform -- uid: 16537 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,57.5 - parent: 1 - type: Transform -- uid: 16538 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,57.5 - parent: 1 - type: Transform -- uid: 16539 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,57.5 - parent: 1 - type: Transform -- uid: 16540 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,52.5 - parent: 1 - type: Transform -- uid: 16541 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,52.5 - parent: 1 - type: Transform -- uid: 16542 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,52.5 - parent: 1 - type: Transform -- uid: 16543 - type: DisposalJunctionFlipped - components: - - pos: 0.5,52.5 - parent: 1 - type: Transform -- uid: 16544 - type: DisposalPipe - components: - - pos: 0.5,56.5 - parent: 1 - type: Transform -- uid: 16545 - type: DisposalPipe - components: - - pos: 0.5,55.5 - parent: 1 - type: Transform -- uid: 16546 - type: DisposalPipe - components: - - pos: 0.5,54.5 - parent: 1 - type: Transform -- uid: 16547 - type: DisposalPipe - components: - - pos: 0.5,53.5 - parent: 1 - type: Transform -- uid: 16548 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 4.5,52.5 - parent: 1 - type: Transform -- uid: 16549 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -17.5,53.5 - parent: 1 - type: Transform -- uid: 16550 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,53.5 - parent: 1 - type: Transform -- uid: 16551 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,53.5 - parent: 1 - type: Transform -- uid: 16552 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,53.5 - parent: 1 - type: Transform -- uid: 16553 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,53.5 - parent: 1 - type: Transform -- uid: 16554 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,53.5 - parent: 1 - type: Transform -- uid: 16555 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,53.5 - parent: 1 - type: Transform -- uid: 16556 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,53.5 - parent: 1 - type: Transform -- uid: 16557 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,53.5 - parent: 1 - type: Transform -- uid: 16558 - type: DisposalBend - components: - - pos: -8.5,53.5 - parent: 1 - type: Transform -- uid: 16559 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -8.5,50.5 - parent: 1 - type: Transform -- uid: 16560 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -8.5,52.5 - parent: 1 - type: Transform -- uid: 16561 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -8.5,51.5 - parent: 1 - type: Transform -- uid: 16562 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,50.5 - parent: 1 - type: Transform -- uid: 16563 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,50.5 - parent: 1 - type: Transform -- uid: 16564 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,50.5 - parent: 1 - type: Transform -- uid: 16565 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,50.5 - parent: 1 - type: Transform -- uid: 16566 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,50.5 - parent: 1 - type: Transform -- uid: 16567 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,50.5 - parent: 1 - type: Transform -- uid: 16568 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,50.5 - parent: 1 - type: Transform -- uid: 16569 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,50.5 - parent: 1 - type: Transform -- uid: 16570 - type: DisposalJunction - components: - - pos: 0.5,50.5 - parent: 1 - type: Transform -- uid: 16571 - type: DisposalPipe - components: - - pos: 0.5,51.5 - parent: 1 - type: Transform -- uid: 16572 - type: DisposalPipe - components: - - pos: 0.5,49.5 - parent: 1 - type: Transform -- uid: 16573 - type: DisposalPipe - components: - - pos: 0.5,48.5 - parent: 1 - type: Transform -- uid: 16574 - type: DisposalPipe - components: - - pos: 0.5,47.5 - parent: 1 - type: Transform -- uid: 16575 - type: DisposalPipe - components: - - pos: 0.5,46.5 - parent: 1 - type: Transform -- uid: 16576 - type: DisposalPipe - components: - - pos: 0.5,45.5 - parent: 1 - type: Transform -- uid: 16577 - type: DisposalPipe - components: - - pos: 0.5,44.5 - parent: 1 - type: Transform -- uid: 16578 - type: DisposalPipe - components: - - pos: 0.5,43.5 - parent: 1 - type: Transform -- uid: 16579 - type: DisposalPipe - components: - - pos: 0.5,42.5 - parent: 1 - type: Transform -- uid: 16580 - type: DisposalPipe - components: - - pos: 0.5,41.5 - parent: 1 - type: Transform -- uid: 16581 - type: DisposalPipe - components: - - pos: 0.5,40.5 - parent: 1 - type: Transform -- uid: 16582 - type: DisposalPipe - components: - - pos: 0.5,39.5 - parent: 1 - type: Transform -- uid: 16583 - type: DisposalJunction - components: - - pos: 0.5,38.5 - parent: 1 - type: Transform -- uid: 16584 - type: DisposalJunctionFlipped - components: - - pos: 0.5,37.5 - parent: 1 - type: Transform -- uid: 16585 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,38.5 - parent: 1 - type: Transform -- uid: 16586 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,38.5 - parent: 1 - type: Transform -- uid: 16587 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -2.5,38.5 - parent: 1 - type: Transform -- uid: 16588 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,38.5 - parent: 1 - type: Transform -- uid: 16589 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,38.5 - parent: 1 - type: Transform -- uid: 16590 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,38.5 - parent: 1 - type: Transform -- uid: 16591 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,38.5 - parent: 1 - type: Transform -- uid: 16592 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,38.5 - parent: 1 - type: Transform -- uid: 16593 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,38.5 - parent: 1 - type: Transform -- uid: 16594 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,38.5 - parent: 1 - type: Transform -- uid: 16595 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,38.5 - parent: 1 - type: Transform -- uid: 16596 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,38.5 - parent: 1 - type: Transform -- uid: 16597 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,38.5 - parent: 1 - type: Transform -- uid: 16598 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,38.5 - parent: 1 - type: Transform -- uid: 16599 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,38.5 - parent: 1 - type: Transform -- uid: 16600 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,38.5 - parent: 1 - type: Transform -- uid: 16601 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,38.5 - parent: 1 - type: Transform -- uid: 16602 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,38.5 - parent: 1 - type: Transform -- uid: 16603 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -23.5,37.5 - parent: 1 - type: Transform -- uid: 16604 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -23.5,38.5 - parent: 1 - type: Transform -- uid: 16605 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,38.5 - parent: 1 - type: Transform -- uid: 16606 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,38.5 - parent: 1 - type: Transform -- uid: 16607 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,38.5 - parent: 1 - type: Transform -- uid: 16608 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,38.5 - parent: 1 - type: Transform -- uid: 16609 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -18.5,38.5 - parent: 1 - type: Transform -- uid: 16610 - type: DisposalUnit - components: - - pos: -15.5,30.5 - parent: 1 - type: Transform -- uid: 16611 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -15.5,30.5 - parent: 1 - type: Transform -- uid: 16612 - type: DisposalBend - components: - - pos: -15.5,31.5 - parent: 1 - type: Transform -- uid: 16613 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -18.5,31.5 - parent: 1 - type: Transform -- uid: 16614 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,31.5 - parent: 1 - type: Transform -- uid: 16615 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,31.5 - parent: 1 - type: Transform -- uid: 16616 - type: DisposalPipe - components: - - pos: -18.5,32.5 - parent: 1 - type: Transform -- uid: 16617 - type: DisposalPipe - components: - - pos: -18.5,33.5 - parent: 1 - type: Transform -- uid: 16618 - type: DisposalPipe - components: - - pos: -18.5,34.5 - parent: 1 - type: Transform -- uid: 16619 - type: DisposalPipe - components: - - pos: -18.5,35.5 - parent: 1 - type: Transform -- uid: 16620 - type: DisposalPipe - components: - - pos: -18.5,36.5 - parent: 1 - type: Transform -- uid: 16621 - type: DisposalPipe - components: - - pos: -18.5,37.5 - parent: 1 - type: Transform -- uid: 16622 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -24.5,37.5 - parent: 1 - type: Transform -- uid: 16623 - type: DisposalTrunk - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform -- uid: 16624 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,37.5 - parent: 1 - type: Transform -- uid: 16625 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,37.5 - parent: 1 - type: Transform -- uid: 16626 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,37.5 - parent: 1 - type: Transform -- uid: 16627 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,37.5 - parent: 1 - type: Transform -- uid: 16628 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,37.5 - parent: 1 - type: Transform -- uid: 16629 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,37.5 - parent: 1 - type: Transform -- uid: 16630 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -31.5,37.5 - parent: 1 - type: Transform -- uid: 16631 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -32.5,37.5 - parent: 1 - type: Transform -- uid: 16632 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -33.5,37.5 - parent: 1 - type: Transform -- uid: 16633 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,37.5 - parent: 1 - type: Transform -- uid: 16634 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -35.5,37.5 - parent: 1 - type: Transform -- uid: 16635 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -36.5,37.5 - parent: 1 - type: Transform -- uid: 16636 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -37.5,37.5 - parent: 1 - type: Transform -- uid: 16637 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -38.5,37.5 - parent: 1 - type: Transform -- uid: 16638 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -39.5,37.5 - parent: 1 - type: Transform -- uid: 16639 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -40.5,37.5 - parent: 1 - type: Transform -- uid: 16640 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -41.5,37.5 - parent: 1 - type: Transform -- uid: 16641 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -42.5,37.5 - parent: 1 - type: Transform -- uid: 16642 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -43.5,37.5 - parent: 1 - type: Transform -- uid: 16643 - type: DisposalBend - components: - - pos: -43.5,42.5 - parent: 1 - type: Transform -- uid: 16644 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -45.5,42.5 - parent: 1 - type: Transform -- uid: 16645 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -44.5,42.5 - parent: 1 - type: Transform -- uid: 16646 - type: DisposalPipe - components: - - pos: -43.5,41.5 - parent: 1 - type: Transform -- uid: 16647 - type: DisposalPipe - components: - - pos: -43.5,40.5 - parent: 1 - type: Transform -- uid: 16648 - type: DisposalPipe - components: - - pos: -43.5,39.5 - parent: 1 - type: Transform -- uid: 16649 - type: DisposalPipe - components: - - pos: -43.5,38.5 - parent: 1 - type: Transform -- uid: 16650 - type: DisposalPipe - components: - - pos: -45.5,43.5 - parent: 1 - type: Transform -- uid: 16651 - type: DisposalTrunk - components: - - pos: -45.5,44.5 - parent: 1 - type: Transform -- uid: 16652 - type: TableGlass - components: - - pos: -32.5,31.5 - parent: 1 - type: Transform -- uid: 16653 - type: PottedPlantRandom - components: - - pos: -32.5,27.5 - parent: 1 - type: Transform -- uid: 16654 - type: DisposalUnit - components: - - pos: -9.5,23.5 - parent: 1 - type: Transform -- uid: 16655 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -9.5,23.5 - parent: 1 - type: Transform -- uid: 16656 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,23.5 - parent: 1 - type: Transform -- uid: 16657 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -11.5,23.5 - parent: 1 - type: Transform -- uid: 16658 - type: DisposalPipe - components: - - pos: -11.5,22.5 - parent: 1 - type: Transform -- uid: 16659 - type: DisposalPipe - components: - - pos: -11.5,21.5 - parent: 1 - type: Transform -- uid: 16660 - type: DisposalPipe - components: - - pos: -11.5,20.5 - parent: 1 - type: Transform -- uid: 16661 - type: DisposalPipe - components: - - pos: -11.5,19.5 - parent: 1 - type: Transform -- uid: 16662 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -11.5,18.5 - parent: 1 - type: Transform -- uid: 16663 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,18.5 - parent: 1 - type: Transform -- uid: 16664 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,18.5 - parent: 1 - type: Transform -- uid: 16665 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,18.5 - parent: 1 - type: Transform -- uid: 16666 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,18.5 - parent: 1 - type: Transform -- uid: 16667 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,18.5 - parent: 1 - type: Transform -- uid: 16668 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,18.5 - parent: 1 - type: Transform -- uid: 16669 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,18.5 - parent: 1 - type: Transform -- uid: 16670 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,18.5 - parent: 1 - type: Transform -- uid: 16671 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,18.5 - parent: 1 - type: Transform -- uid: 16672 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,18.5 - parent: 1 - type: Transform -- uid: 16673 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,18.5 - parent: 1 - type: Transform -- uid: 16674 - type: DisposalPipe - components: - - pos: 0.5,36.5 - parent: 1 - type: Transform -- uid: 16675 - type: DisposalPipe - components: - - pos: 0.5,35.5 - parent: 1 - type: Transform -- uid: 16676 - type: DisposalPipe - components: - - pos: 0.5,34.5 - parent: 1 - type: Transform -- uid: 16677 - type: DisposalPipe - components: - - pos: 0.5,33.5 - parent: 1 - type: Transform -- uid: 16678 - type: DisposalPipe - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform -- uid: 16679 - type: DisposalPipe - components: - - pos: 0.5,31.5 - parent: 1 - type: Transform -- uid: 16680 - type: DisposalPipe - components: - - pos: 0.5,30.5 - parent: 1 - type: Transform -- uid: 16681 - type: DisposalPipe - components: - - pos: 0.5,29.5 - parent: 1 - type: Transform -- uid: 16682 - type: DisposalPipe - components: - - pos: 0.5,28.5 - parent: 1 - type: Transform -- uid: 16683 - type: DisposalJunction - components: - - pos: 0.5,27.5 - parent: 1 - type: Transform -- uid: 16684 - type: DisposalPipe - components: - - pos: 0.5,26.5 - parent: 1 - type: Transform -- uid: 16685 - type: DisposalPipe - components: - - pos: 0.5,25.5 - parent: 1 - type: Transform -- uid: 16686 - type: DisposalPipe - components: - - pos: 0.5,24.5 - parent: 1 - type: Transform -- uid: 16687 - type: DisposalPipe - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform -- uid: 16688 - type: DisposalPipe - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform -- uid: 16689 - type: DisposalPipe - components: - - pos: 0.5,21.5 - parent: 1 - type: Transform -- uid: 16690 - type: DisposalPipe - components: - - pos: 0.5,20.5 - parent: 1 - type: Transform -- uid: 16691 - type: DisposalPipe - components: - - pos: 0.5,19.5 - parent: 1 - type: Transform -- uid: 16692 - type: DisposalUnit - components: - - pos: -1.5,27.5 - parent: 1 - type: Transform -- uid: 16693 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -1.5,26.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 16694 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -1.5,25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 16695 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -1.5,27.5 - parent: 1 - type: Transform -- uid: 16696 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,27.5 - parent: 1 - type: Transform -- uid: 16697 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 18.5,36.5 - parent: 1 - type: Transform -- uid: 16698 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 18.5,37.5 - parent: 1 - type: Transform -- uid: 16699 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,37.5 - parent: 1 - type: Transform -- uid: 16700 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,37.5 - parent: 1 - type: Transform -- uid: 16701 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,37.5 - parent: 1 - type: Transform -- uid: 16702 - type: DisposalTrunk - components: - - pos: 14.5,47.5 - parent: 1 - type: Transform -- uid: 16703 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,37.5 - parent: 1 - type: Transform -- uid: 16704 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,37.5 - parent: 1 - type: Transform -- uid: 16705 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,37.5 - parent: 1 - type: Transform -- uid: 16706 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,37.5 - parent: 1 - type: Transform -- uid: 16707 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,37.5 - parent: 1 - type: Transform -- uid: 16708 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,37.5 - parent: 1 - type: Transform -- uid: 16709 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,37.5 - parent: 1 - type: Transform -- uid: 16710 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,37.5 - parent: 1 - type: Transform -- uid: 16711 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,37.5 - parent: 1 - type: Transform -- uid: 16712 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,37.5 - parent: 1 - type: Transform -- uid: 16713 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,37.5 - parent: 1 - type: Transform -- uid: 16714 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,37.5 - parent: 1 - type: Transform -- uid: 16715 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,37.5 - parent: 1 - type: Transform -- uid: 16716 - type: DisposalPipe - components: - - pos: 14.5,46.5 - parent: 1 - type: Transform -- uid: 16717 - type: DisposalPipe - components: - - pos: 14.5,45.5 - parent: 1 - type: Transform -- uid: 16718 - type: DisposalPipe - components: - - pos: 14.5,44.5 - parent: 1 - type: Transform -- uid: 16719 - type: DisposalPipe - components: - - pos: 14.5,43.5 - parent: 1 - type: Transform -- uid: 16720 - type: DisposalPipe - components: - - pos: 14.5,42.5 - parent: 1 - type: Transform -- uid: 16721 - type: DisposalPipe - components: - - pos: 14.5,41.5 - parent: 1 - type: Transform -- uid: 16722 - type: DisposalPipe - components: - - pos: 14.5,40.5 - parent: 1 - type: Transform -- uid: 16723 - type: DisposalPipe - components: - - pos: 14.5,39.5 - parent: 1 - type: Transform -- uid: 16724 - type: DisposalPipe - components: - - pos: 14.5,38.5 - parent: 1 - type: Transform -- uid: 16725 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 14.5,37.5 - parent: 1 - type: Transform -- uid: 16726 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,37.5 - parent: 1 - type: Transform -- uid: 16727 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,37.5 - parent: 1 - type: Transform -- uid: 16728 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,37.5 - parent: 1 - type: Transform -- uid: 16729 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 22.5,37.5 - parent: 1 - type: Transform -- uid: 16730 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,37.5 - parent: 1 - type: Transform -- uid: 16731 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,37.5 - parent: 1 - type: Transform -- uid: 16732 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,37.5 - parent: 1 - type: Transform -- uid: 16733 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,37.5 - parent: 1 - type: Transform -- uid: 16734 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,37.5 - parent: 1 - type: Transform -- uid: 16735 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,37.5 - parent: 1 - type: Transform -- uid: 16736 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,37.5 - parent: 1 - type: Transform -- uid: 16737 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,37.5 - parent: 1 - type: Transform -- uid: 16738 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 31.5,37.5 - parent: 1 - type: Transform -- uid: 16739 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,38.5 - parent: 1 - type: Transform -- uid: 16740 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,39.5 - parent: 1 - type: Transform -- uid: 16741 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,40.5 - parent: 1 - type: Transform -- uid: 16742 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,41.5 - parent: 1 - type: Transform -- uid: 16743 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,42.5 - parent: 1 - type: Transform -- uid: 16744 - type: DisposalBend - components: - - pos: 31.5,43.5 - parent: 1 - type: Transform -- uid: 16745 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,43.5 - parent: 1 - type: Transform -- uid: 16746 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,43.5 - parent: 1 - type: Transform -- uid: 16747 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,43.5 - parent: 1 - type: Transform -- uid: 16748 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 27.5,43.5 - parent: 1 - type: Transform -- uid: 16749 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,37.5 - parent: 1 - type: Transform -- uid: 16750 - type: DisposalUnit - components: - - pos: 27.5,43.5 - parent: 1 - type: Transform -- uid: 16751 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,37.5 - parent: 1 - type: Transform -- uid: 16752 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,37.5 - parent: 1 - type: Transform -- uid: 16753 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,37.5 - parent: 1 - type: Transform -- uid: 16754 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,37.5 - parent: 1 - type: Transform -- uid: 16755 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,37.5 - parent: 1 - type: Transform -- uid: 16756 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,37.5 - parent: 1 - type: Transform -- uid: 16757 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,37.5 - parent: 1 - type: Transform -- uid: 16758 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 40.5,37.5 - parent: 1 - type: Transform -- uid: 16759 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 41.5,37.5 - parent: 1 - type: Transform -- uid: 16760 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 42.5,37.5 - parent: 1 - type: Transform -- uid: 16761 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 43.5,37.5 - parent: 1 - type: Transform -- uid: 16762 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 44.5,37.5 - parent: 1 - type: Transform -- uid: 16763 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 45.5,37.5 - parent: 1 - type: Transform -- uid: 16764 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 46.5,37.5 - parent: 1 - type: Transform -- uid: 16765 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 47.5,37.5 - parent: 1 - type: Transform -- uid: 16766 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 48.5,37.5 - parent: 1 - type: Transform -- uid: 16767 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 48.5,38.5 - parent: 1 - type: Transform -- uid: 16768 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 48.5,39.5 - parent: 1 - type: Transform -- uid: 16769 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 48.5,40.5 - parent: 1 - type: Transform -- uid: 16770 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 48.5,41.5 - parent: 1 - type: Transform -- uid: 16771 - type: DisposalTrunk - components: - - pos: 48.5,42.5 - parent: 1 - type: Transform -- uid: 16772 - type: DisposalJunction - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform -- uid: 16773 - type: DisposalJunctionFlipped - components: - - pos: 0.5,17.5 - parent: 1 - type: Transform -- uid: 16774 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,17.5 - parent: 1 - type: Transform -- uid: 16775 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,17.5 - parent: 1 - type: Transform -- uid: 16776 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,17.5 - parent: 1 - type: Transform -- uid: 16777 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,17.5 - parent: 1 - type: Transform -- uid: 16778 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,17.5 - parent: 1 - type: Transform -- uid: 16779 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,17.5 - parent: 1 - type: Transform -- uid: 16780 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,17.5 - parent: 1 - type: Transform -- uid: 16781 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,17.5 - parent: 1 - type: Transform -- uid: 16782 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,17.5 - parent: 1 - type: Transform -- uid: 16783 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 1 - type: Transform -- uid: 16784 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,17.5 - parent: 1 - type: Transform -- uid: 16785 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,17.5 - parent: 1 - type: Transform -- uid: 16786 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,17.5 - parent: 1 - type: Transform -- uid: 16787 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,17.5 - parent: 1 - type: Transform -- uid: 16788 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 16.5,17.5 - parent: 1 - type: Transform -- uid: 16789 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,18.5 - parent: 1 - type: Transform -- uid: 16790 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,19.5 - parent: 1 - type: Transform -- uid: 16791 - type: DisposalTrunk - components: - - pos: 16.5,20.5 - parent: 1 - type: Transform -- uid: 16792 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 1 - type: Transform -- uid: 16793 - type: DisposalTrunk - components: - - pos: 7.5,34.5 - parent: 1 - type: Transform -- uid: 16794 - type: DisposalPipe - components: - - pos: 7.5,33.5 - parent: 1 - type: Transform -- uid: 16795 - type: DisposalPipe - components: - - pos: 7.5,32.5 - parent: 1 - type: Transform -- uid: 16796 - type: DisposalPipe - components: - - pos: 7.5,31.5 - parent: 1 - type: Transform -- uid: 16797 - type: DisposalPipe - components: - - pos: 7.5,30.5 - parent: 1 - type: Transform -- uid: 16798 - type: DisposalPipe - components: - - pos: 7.5,29.5 - parent: 1 - type: Transform -- uid: 16799 - type: DisposalYJunction - components: - - pos: 11.5,28.5 - parent: 1 - type: Transform -- uid: 16800 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 7.5,28.5 - parent: 1 - type: Transform -- uid: 16801 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,28.5 - parent: 1 - type: Transform -- uid: 16802 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,28.5 - parent: 1 - type: Transform -- uid: 16803 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,28.5 - parent: 1 - type: Transform -- uid: 16804 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,28.5 - parent: 1 - type: Transform -- uid: 16805 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,28.5 - parent: 1 - type: Transform -- uid: 16806 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,28.5 - parent: 1 - type: Transform -- uid: 16807 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,28.5 - parent: 1 - type: Transform -- uid: 16808 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 16.5,28.5 - parent: 1 - type: Transform -- uid: 16809 - type: DisposalTrunk - components: - - pos: 16.5,29.5 - parent: 1 - type: Transform -- uid: 16810 - type: DisposalPipe - components: - - pos: 11.5,27.5 - parent: 1 - type: Transform -- uid: 16811 - type: DisposalPipe - components: - - pos: 11.5,26.5 - parent: 1 - type: Transform -- uid: 16812 - type: DisposalPipe - components: - - pos: 11.5,25.5 - parent: 1 - type: Transform -- uid: 16813 - type: DisposalPipe - components: - - pos: 11.5,24.5 - parent: 1 - type: Transform -- uid: 16814 - type: DisposalPipe - components: - - pos: 11.5,23.5 - parent: 1 - type: Transform -- uid: 16815 - type: DisposalPipe - components: - - pos: 11.5,22.5 - parent: 1 - type: Transform -- uid: 16816 - type: DisposalPipe - components: - - pos: 11.5,21.5 - parent: 1 - type: Transform -- uid: 16817 - type: DisposalPipe - components: - - pos: 11.5,20.5 - parent: 1 - type: Transform -- uid: 16818 - type: DisposalPipe - components: - - pos: 11.5,19.5 - parent: 1 - type: Transform -- uid: 16819 - type: DisposalPipe - components: - - pos: 11.5,18.5 - parent: 1 - type: Transform -- uid: 16820 - type: DisposalPipe - components: - - pos: 0.5,16.5 - parent: 1 - type: Transform -- uid: 16821 - type: DisposalJunction - components: - - pos: 0.5,15.5 - parent: 1 - type: Transform -- uid: 16822 - type: DisposalJunctionFlipped - components: - - pos: 0.5,14.5 - parent: 1 - type: Transform -- uid: 16823 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,15.5 - parent: 1 - type: Transform -- uid: 16824 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,14.5 - parent: 1 - type: Transform -- uid: 16825 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 27.5,26.5 - parent: 1 - type: Transform -- uid: 16826 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,26.5 - parent: 1 - type: Transform -- uid: 16827 - type: DisposalBend - components: - - pos: 30.5,26.5 - parent: 1 - type: Transform -- uid: 16828 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,26.5 - parent: 1 - type: Transform -- uid: 16829 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,25.5 - parent: 1 - type: Transform -- uid: 16830 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,24.5 - parent: 1 - type: Transform -- uid: 16831 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,23.5 - parent: 1 - type: Transform -- uid: 16832 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,22.5 - parent: 1 - type: Transform -- uid: 16833 - type: DisposalJunction - components: - - pos: 30.5,21.5 - parent: 1 - type: Transform -- uid: 16834 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,21.5 - parent: 1 - type: Transform -- uid: 16835 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,21.5 - parent: 1 - type: Transform -- uid: 16836 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 27.5,21.5 - parent: 1 - type: Transform -- uid: 16837 - type: DisposalPipe - components: - - pos: 27.5,22.5 - parent: 1 - type: Transform -- uid: 16838 - type: DisposalTrunk - components: - - pos: 27.5,23.5 - parent: 1 - type: Transform -- uid: 16839 - type: DisposalPipe - components: - - pos: 30.5,20.5 - parent: 1 - type: Transform -- uid: 16840 - type: DisposalPipe - components: - - pos: 30.5,19.5 - parent: 1 - type: Transform -- uid: 16841 - type: DisposalPipe - components: - - pos: 30.5,18.5 - parent: 1 - type: Transform -- uid: 16842 - type: DisposalPipe - components: - - pos: 30.5,17.5 - parent: 1 - type: Transform -- uid: 16843 - type: DisposalPipe - components: - - pos: 30.5,16.5 - parent: 1 - type: Transform -- uid: 16844 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16845 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16846 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16847 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16848 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16849 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16850 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16851 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 45.5,12.5 - parent: 1 - type: Transform -- uid: 16852 - type: DisposalBend - components: - - pos: 45.5,13.5 - parent: 1 - type: Transform -- uid: 16853 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 44.5,13.5 - parent: 1 - type: Transform -- uid: 16854 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 43.5,13.5 - parent: 1 - type: Transform -- uid: 16855 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 42.5,13.5 - parent: 1 - type: Transform -- uid: 16856 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 41.5,13.5 - parent: 1 - type: Transform -- uid: 16857 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 40.5,13.5 - parent: 1 - type: Transform -- uid: 16858 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 39.5,13.5 - parent: 1 - type: Transform -- uid: 16859 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 38.5,13.5 - parent: 1 - type: Transform -- uid: 16860 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 37.5,13.5 - parent: 1 - type: Transform -- uid: 16861 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 36.5,13.5 - parent: 1 - type: Transform -- uid: 16862 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 35.5,13.5 - parent: 1 - type: Transform -- uid: 16863 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 34.5,13.5 - parent: 1 - type: Transform -- uid: 16864 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 33.5,13.5 - parent: 1 - type: Transform -- uid: 16865 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,13.5 - parent: 1 - type: Transform -- uid: 16866 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,13.5 - parent: 1 - type: Transform -- uid: 16867 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 30.5,13.5 - parent: 1 - type: Transform -- uid: 16868 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,15.5 - parent: 1 - type: Transform -- uid: 16869 - type: DisposalYJunction - components: - - rot: -1.5707963267948966 rad - pos: 30.5,14.5 - parent: 1 - type: Transform -- uid: 16870 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,14.5 - parent: 1 - type: Transform -- uid: 16871 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,14.5 - parent: 1 - type: Transform -- uid: 16872 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,14.5 - parent: 1 - type: Transform -- uid: 16873 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,14.5 - parent: 1 - type: Transform -- uid: 16874 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,14.5 - parent: 1 - type: Transform -- uid: 16875 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,14.5 - parent: 1 - type: Transform -- uid: 16876 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,14.5 - parent: 1 - type: Transform -- uid: 16877 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 22.5,14.5 - parent: 1 - type: Transform -- uid: 16878 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,14.5 - parent: 1 - type: Transform -- uid: 16879 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,14.5 - parent: 1 - type: Transform -- uid: 16880 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,14.5 - parent: 1 - type: Transform -- uid: 16881 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,14.5 - parent: 1 - type: Transform -- uid: 16882 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,14.5 - parent: 1 - type: Transform -- uid: 16883 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,14.5 - parent: 1 - type: Transform -- uid: 16884 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,14.5 - parent: 1 - type: Transform -- uid: 16885 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,14.5 - parent: 1 - type: Transform -- uid: 16886 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,14.5 - parent: 1 - type: Transform -- uid: 16887 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,14.5 - parent: 1 - type: Transform -- uid: 16888 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,14.5 - parent: 1 - type: Transform -- uid: 16889 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,14.5 - parent: 1 - type: Transform -- uid: 16890 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,14.5 - parent: 1 - type: Transform -- uid: 16891 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,14.5 - parent: 1 - type: Transform -- uid: 16892 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,14.5 - parent: 1 - type: Transform -- uid: 16893 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,14.5 - parent: 1 - type: Transform -- uid: 16894 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,14.5 - parent: 1 - type: Transform -- uid: 16895 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,14.5 - parent: 1 - type: Transform -- uid: 16896 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,14.5 - parent: 1 - type: Transform -- uid: 16897 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,14.5 - parent: 1 - type: Transform -- uid: 16898 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -1.5,15.5 - parent: 1 - type: Transform -- uid: 16899 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -1.5,14.5 - parent: 1 - type: Transform -- uid: 16900 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -2.5,14.5 - parent: 1 - type: Transform -- uid: 16901 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,14.5 - parent: 1 - type: Transform -- uid: 16902 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,14.5 - parent: 1 - type: Transform -- uid: 16903 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,14.5 - parent: 1 - type: Transform -- uid: 16904 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,14.5 - parent: 1 - type: Transform -- uid: 16905 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,14.5 - parent: 1 - type: Transform -- uid: 16906 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,14.5 - parent: 1 - type: Transform -- uid: 16907 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,14.5 - parent: 1 - type: Transform -- uid: 16908 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,14.5 - parent: 1 - type: Transform -- uid: 16909 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,14.5 - parent: 1 - type: Transform -- uid: 16910 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,14.5 - parent: 1 - type: Transform -- uid: 16911 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,14.5 - parent: 1 - type: Transform -- uid: 16912 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,14.5 - parent: 1 - type: Transform -- uid: 16913 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,14.5 - parent: 1 - type: Transform -- uid: 16914 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,14.5 - parent: 1 - type: Transform -- uid: 16915 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,14.5 - parent: 1 - type: Transform -- uid: 16916 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,14.5 - parent: 1 - type: Transform -- uid: 16917 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,14.5 - parent: 1 - type: Transform -- uid: 16918 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,14.5 - parent: 1 - type: Transform -- uid: 16919 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,14.5 - parent: 1 - type: Transform -- uid: 16920 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,14.5 - parent: 1 - type: Transform -- uid: 16921 - type: DisposalTrunk - components: - - pos: -23.5,15.5 - parent: 1 - type: Transform -- uid: 16922 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -23.5,14.5 - parent: 1 - type: Transform -- uid: 16923 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,14.5 - parent: 1 - type: Transform -- uid: 16924 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,14.5 - parent: 1 - type: Transform -- uid: 16925 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -26.5,14.5 - parent: 1 - type: Transform -- uid: 16926 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,14.5 - parent: 1 - type: Transform -- uid: 16927 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,14.5 - parent: 1 - type: Transform -- uid: 16928 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,14.5 - parent: 1 - type: Transform -- uid: 16929 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,14.5 - parent: 1 - type: Transform -- uid: 16930 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -31.5,14.5 - parent: 1 - type: Transform -- uid: 16931 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -32.5,14.5 - parent: 1 - type: Transform -- uid: 16932 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -33.5,14.5 - parent: 1 - type: Transform -- uid: 16933 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -45.5,14.5 - parent: 1 - type: Transform -- uid: 16934 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -45.5,12.5 - parent: 1 - type: Transform -- uid: 16935 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -45.5,13.5 - parent: 1 - type: Transform -- uid: 16936 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -44.5,14.5 - parent: 1 - type: Transform -- uid: 16937 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -43.5,14.5 - parent: 1 - type: Transform -- uid: 16938 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -42.5,14.5 - parent: 1 - type: Transform -- uid: 16939 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -41.5,14.5 - parent: 1 - type: Transform -- uid: 16940 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -40.5,14.5 - parent: 1 - type: Transform -- uid: 16941 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -39.5,14.5 - parent: 1 - type: Transform -- uid: 16942 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -38.5,14.5 - parent: 1 - type: Transform -- uid: 16943 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -39.5,28.5 - parent: 1 - type: Transform -- uid: 16944 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -36.5,14.5 - parent: 1 - type: Transform -- uid: 16945 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -35.5,14.5 - parent: 1 - type: Transform -- uid: 16946 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -34.5,14.5 - parent: 1 - type: Transform -- uid: 16947 - type: DisposalPipe - components: - - pos: -34.5,15.5 - parent: 1 - type: Transform -- uid: 16948 - type: DisposalTrunk - components: - - pos: -34.5,16.5 - parent: 1 - type: Transform -- uid: 16949 - type: DisposalPipe - components: - - pos: -31.5,15.5 - parent: 1 - type: Transform -- uid: 16950 - type: DisposalPipe - components: - - pos: -31.5,16.5 - parent: 1 - type: Transform -- uid: 16951 - type: DisposalPipe - components: - - pos: -31.5,17.5 - parent: 1 - type: Transform -- uid: 16952 - type: DisposalPipe - components: - - pos: -31.5,18.5 - parent: 1 - type: Transform -- uid: 16953 - type: DisposalPipe - components: - - pos: -31.5,19.5 - parent: 1 - type: Transform -- uid: 16954 - type: DisposalPipe - components: - - pos: -31.5,20.5 - parent: 1 - type: Transform -- uid: 16955 - type: DisposalPipe - components: - - pos: -31.5,21.5 - parent: 1 - type: Transform -- uid: 16956 - type: DisposalBend - components: - - pos: -37.5,28.5 - parent: 1 - type: Transform -- uid: 16957 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -38.5,28.5 - parent: 1 - type: Transform -- uid: 16958 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,27.5 - parent: 1 - type: Transform -- uid: 16959 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,26.5 - parent: 1 - type: Transform -- uid: 16960 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,25.5 - parent: 1 - type: Transform -- uid: 16961 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,24.5 - parent: 1 - type: Transform -- uid: 16962 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,23.5 - parent: 1 - type: Transform -- uid: 16963 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,22.5 - parent: 1 - type: Transform -- uid: 16964 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,21.5 - parent: 1 - type: Transform -- uid: 16965 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,20.5 - parent: 1 - type: Transform -- uid: 16966 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,19.5 - parent: 1 - type: Transform -- uid: 16967 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,18.5 - parent: 1 - type: Transform -- uid: 16968 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,17.5 - parent: 1 - type: Transform -- uid: 16969 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,16.5 - parent: 1 - type: Transform -- uid: 16970 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,15.5 - parent: 1 - type: Transform -- uid: 16971 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -37.5,14.5 - parent: 1 - type: Transform -- uid: 16972 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -30.5,22.5 - parent: 1 - type: Transform -- uid: 16973 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -31.5,22.5 - parent: 1 - type: Transform -- uid: 16974 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 1 - type: Transform -- uid: 16975 - type: DisposalBend - components: - - pos: 1.5,13.5 - parent: 1 - type: Transform -- uid: 16976 - type: DisposalPipe - components: - - pos: 1.5,12.5 - parent: 1 - type: Transform -- uid: 16977 - type: DisposalPipe - components: - - pos: 1.5,11.5 - parent: 1 - type: Transform -- uid: 16978 - type: DisposalPipe - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform -- uid: 16979 - type: DisposalPipe - components: - - pos: 1.5,9.5 - parent: 1 - type: Transform -- uid: 16980 - type: DisposalPipe - components: - - pos: 1.5,8.5 - parent: 1 - type: Transform -- uid: 16981 - type: DisposalPipe - components: - - pos: 1.5,7.5 - parent: 1 - type: Transform -- uid: 16982 - type: DisposalPipe - components: - - pos: 1.5,6.5 - parent: 1 - type: Transform -- uid: 16983 - type: DisposalPipe - components: - - pos: 1.5,4.5 - parent: 1 - type: Transform -- uid: 16984 - type: DisposalPipe - components: - - pos: 1.5,3.5 - parent: 1 - type: Transform -- uid: 16985 - type: DisposalPipe - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform -- uid: 16986 - type: DisposalPipe - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform -- uid: 16987 - type: DisposalPipe - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform -- uid: 16988 - type: DisposalPipe - components: - - pos: 1.5,-2.5 - parent: 1 - type: Transform -- uid: 16989 - type: DisposalPipe - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform -- uid: 16990 - type: DisposalPipe - components: - - pos: 1.5,-5.5 - parent: 1 - type: Transform -- uid: 16991 - type: DisposalPipe - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform -- uid: 16992 - type: DisposalPipe - components: - - pos: 1.5,-7.5 - parent: 1 - type: Transform -- uid: 16993 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-8.5 - parent: 1 - type: Transform -- uid: 16994 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -13.5,1.5 - parent: 1 - type: Transform -- uid: 16995 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 1 - type: Transform -- uid: 16996 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,1.5 - parent: 1 - type: Transform -- uid: 16997 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,1.5 - parent: 1 - type: Transform -- uid: 16998 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1 - type: Transform -- uid: 16999 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,1.5 - parent: 1 - type: Transform -- uid: 17000 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - type: Transform -- uid: 17001 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 1 - type: Transform -- uid: 17002 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,1.5 - parent: 1 - type: Transform -- uid: 17003 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,1.5 - parent: 1 - type: Transform -- uid: 17004 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 1 - type: Transform -- uid: 17005 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 1 - type: Transform -- uid: 17006 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,1.5 - parent: 1 - type: Transform -- uid: 17007 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 1 - type: Transform -- uid: 17008 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 1 - type: Transform -- uid: 17009 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - type: Transform -- uid: 17010 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 1 - type: Transform -- uid: 17011 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,5.5 - parent: 1 - type: Transform -- uid: 17012 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,5.5 - parent: 1 - type: Transform -- uid: 17013 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,5.5 - parent: 1 - type: Transform -- uid: 17014 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,5.5 - parent: 1 - type: Transform -- uid: 17015 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,5.5 - parent: 1 - type: Transform -- uid: 17016 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,5.5 - parent: 1 - type: Transform -- uid: 17017 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 1 - type: Transform -- uid: 17018 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,5.5 - parent: 1 - type: Transform -- uid: 17019 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,5.5 - parent: 1 - type: Transform -- uid: 17020 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 11.5,5.5 - parent: 1 - type: Transform -- uid: 17021 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 11.5,6.5 - parent: 1 - type: Transform -- uid: 17022 - type: DisposalTrunk - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform -- uid: 17023 - type: DisposalJunctionFlipped - components: - - pos: 1.5,5.5 - parent: 1 - type: Transform -- uid: 17024 - type: DisposalJunctionFlipped - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform -- uid: 17025 - type: DisposalJunction - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform -- uid: 17026 - type: RailingCorner - components: - - rot: 3.141592653589793 rad - pos: -8.5,-2.5 - parent: 1 - type: Transform -- uid: 17027 - type: DisposalJunctionFlipped - components: - - pos: 1.5,-4.5 - parent: 1 - type: Transform -- uid: 17028 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1 - type: Transform -- uid: 17029 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 1 - type: Transform -- uid: 17030 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 1 - type: Transform -- uid: 17031 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 1 - type: Transform -- uid: 17032 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 1 - type: Transform -- uid: 17033 - type: DisposalBend - components: - - pos: 7.5,-4.5 - parent: 1 - type: Transform -- uid: 17034 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 7.5,-5.5 - parent: 1 - type: Transform -- uid: 17035 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -17.5,-19.5 - parent: 1 - type: Transform -- uid: 17036 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-18.5 - parent: 1 - type: Transform -- uid: 17037 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-17.5 - parent: 1 - type: Transform -- uid: 17038 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-16.5 - parent: 1 - type: Transform -- uid: 17039 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-15.5 - parent: 1 - type: Transform -- uid: 17040 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-14.5 - parent: 1 - type: Transform -- uid: 17041 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-13.5 - parent: 1 - type: Transform -- uid: 17042 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-12.5 - parent: 1 - type: Transform -- uid: 17043 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-11.5 - parent: 1 - type: Transform -- uid: 17044 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-10.5 - parent: 1 - type: Transform -- uid: 17045 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 1 - type: Transform -- uid: 17046 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -38.5,-2.5 - parent: 1 - type: Transform -- uid: 17047 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -38.5,-1.5 - parent: 1 - type: Transform -- uid: 17048 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -38.5,-0.5 - parent: 1 - type: Transform -- uid: 17049 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -38.5,0.5 - parent: 1 - type: Transform -- uid: 17050 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -38.5,1.5 - parent: 1 - type: Transform -- uid: 17051 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -38.5,2.5 - parent: 1 - type: Transform -- uid: 17052 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -35.5,2.5 - parent: 1 - type: Transform -- uid: 17053 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -35.5,4.5 - parent: 1 - type: Transform -- uid: 17054 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -37.5,2.5 - parent: 1 - type: Transform -- uid: 17055 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -36.5,2.5 - parent: 1 - type: Transform -- uid: 17056 - type: DisposalPipe - components: - - pos: -35.5,3.5 - parent: 1 - type: Transform -- uid: 17057 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,4.5 - parent: 1 - type: Transform -- uid: 17058 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -33.5,4.5 - parent: 1 - type: Transform -- uid: 17059 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -32.5,4.5 - parent: 1 - type: Transform -- uid: 17060 - type: DisposalBend - components: - - pos: -31.5,4.5 - parent: 1 - type: Transform -- uid: 17061 - type: DisposalPipe - components: - - pos: -31.5,3.5 - parent: 1 - type: Transform -- uid: 17062 - type: DisposalPipe - components: - - pos: -31.5,2.5 - parent: 1 - type: Transform -- uid: 17063 - type: DisposalPipe - components: - - pos: -31.5,1.5 - parent: 1 - type: Transform -- uid: 17064 - type: DisposalPipe - components: - - pos: -31.5,0.5 - parent: 1 - type: Transform -- uid: 17065 - type: DisposalPipe - components: - - pos: -31.5,-0.5 - parent: 1 - type: Transform -- uid: 17066 - type: DisposalPipe - components: - - pos: -31.5,-1.5 - parent: 1 - type: Transform -- uid: 17067 - type: DisposalPipe - components: - - pos: -31.5,-2.5 - parent: 1 - type: Transform -- uid: 17068 - type: DisposalPipe - components: - - pos: -31.5,-3.5 - parent: 1 - type: Transform -- uid: 17069 - type: DisposalPipe - components: - - pos: -31.5,-4.5 - parent: 1 - type: Transform -- uid: 17070 - type: DisposalPipe - components: - - pos: -31.5,-5.5 - parent: 1 - type: Transform -- uid: 17071 - type: DisposalPipe - components: - - pos: -31.5,-6.5 - parent: 1 - type: Transform -- uid: 17072 - type: DisposalPipe - components: - - pos: -31.5,-7.5 - parent: 1 - type: Transform -- uid: 17073 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-8.5 - parent: 1 - type: Transform -- uid: 17074 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-8.5 - parent: 1 - type: Transform -- uid: 17075 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-8.5 - parent: 1 - type: Transform -- uid: 17076 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 1 - type: Transform -- uid: 17077 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-8.5 - parent: 1 - type: Transform -- uid: 17078 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-8.5 - parent: 1 - type: Transform -- uid: 17079 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-8.5 - parent: 1 - type: Transform -- uid: 17080 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-8.5 - parent: 1 - type: Transform -- uid: 17081 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-8.5 - parent: 1 - type: Transform -- uid: 17082 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-8.5 - parent: 1 - type: Transform -- uid: 17083 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-8.5 - parent: 1 - type: Transform -- uid: 17084 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-8.5 - parent: 1 - type: Transform -- uid: 17085 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-8.5 - parent: 1 - type: Transform -- uid: 17086 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-8.5 - parent: 1 - type: Transform -- uid: 17087 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-8.5 - parent: 1 - type: Transform -- uid: 17088 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-8.5 - parent: 1 - type: Transform -- uid: 17089 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-8.5 - parent: 1 - type: Transform -- uid: 17090 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-8.5 - parent: 1 - type: Transform -- uid: 17091 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-8.5 - parent: 1 - type: Transform -- uid: 17092 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-8.5 - parent: 1 - type: Transform -- uid: 17093 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-8.5 - parent: 1 - type: Transform -- uid: 17094 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 1 - type: Transform -- uid: 17095 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 1 - type: Transform -- uid: 17096 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 1 - type: Transform -- uid: 17097 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-14.5 - parent: 1 - type: Transform -- uid: 17098 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -11.5,-14.5 - parent: 1 - type: Transform -- uid: 17099 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -11.5,-13.5 - parent: 1 - type: Transform -- uid: 17100 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -11.5,-12.5 - parent: 1 - type: Transform -- uid: 17101 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -11.5,-11.5 - parent: 1 - type: Transform -- uid: 17102 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -11.5,-10.5 - parent: 1 - type: Transform -- uid: 17103 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -11.5,-9.5 - parent: 1 - type: Transform -- uid: 17104 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-8.5 - parent: 1 - type: Transform -- uid: 17105 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-8.5 - parent: 1 - type: Transform -- uid: 17106 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-8.5 - parent: 1 - type: Transform -- uid: 17107 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-8.5 - parent: 1 - type: Transform -- uid: 17108 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-8.5 - parent: 1 - type: Transform -- uid: 17109 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-8.5 - parent: 1 - type: Transform -- uid: 17110 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-8.5 - parent: 1 - type: Transform -- uid: 17111 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-8.5 - parent: 1 - type: Transform -- uid: 17112 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 1 - type: Transform -- uid: 17113 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-8.5 - parent: 1 - type: Transform -- uid: 17114 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 1 - type: Transform -- uid: 17115 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 1 - type: Transform -- uid: 17116 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 1 - type: Transform -- uid: 17117 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 10.5,-15.5 - parent: 1 - type: Transform -- uid: 17118 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 10.5,-14.5 - parent: 1 - type: Transform -- uid: 17119 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 10.5,-13.5 - parent: 1 - type: Transform -- uid: 17120 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 10.5,-12.5 - parent: 1 - type: Transform -- uid: 17121 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 10.5,-11.5 - parent: 1 - type: Transform -- uid: 17122 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 10.5,-10.5 - parent: 1 - type: Transform -- uid: 17123 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 10.5,-9.5 - parent: 1 - type: Transform -- uid: 17124 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 1 - type: Transform -- uid: 17125 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 1 - type: Transform -- uid: 17126 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 1 - type: Transform -- uid: 17127 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 1 - type: Transform -- uid: 17128 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 1 - type: Transform -- uid: 17129 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-8.5 - parent: 1 - type: Transform -- uid: 17130 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-8.5 - parent: 1 - type: Transform -- uid: 17131 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-8.5 - parent: 1 - type: Transform -- uid: 17132 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-8.5 - parent: 1 - type: Transform -- uid: 17133 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 1 - type: Transform -- uid: 17134 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 1 - type: Transform -- uid: 17135 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-8.5 - parent: 1 - type: Transform -- uid: 17136 - type: DisposalPipe - components: - - pos: 13.5,-7.5 - parent: 1 - type: Transform -- uid: 17137 - type: DisposalTrunk - components: - - pos: 13.5,-6.5 - parent: 1 - type: Transform -- uid: 17138 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-8.5 - parent: 1 - type: Transform -- uid: 17139 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-8.5 - parent: 1 - type: Transform -- uid: 17140 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-8.5 - parent: 1 - type: Transform -- uid: 17141 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-8.5 - parent: 1 - type: Transform -- uid: 17142 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-8.5 - parent: 1 - type: Transform -- uid: 17143 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 1 - type: Transform -- uid: 17144 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 1 - type: Transform -- uid: 17145 - type: DisposalBend - components: - - pos: 19.5,-3.5 - parent: 1 - type: Transform -- uid: 17146 - type: DisposalPipe - components: - - pos: 19.5,-4.5 - parent: 1 - type: Transform -- uid: 17147 - type: DisposalPipe - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform -- uid: 17148 - type: DisposalPipe - components: - - pos: 19.5,-6.5 - parent: 1 - type: Transform -- uid: 17149 - type: DisposalPipe - components: - - pos: 19.5,-7.5 - parent: 1 - type: Transform -- uid: 17150 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-8.5 - parent: 1 - type: Transform -- uid: 17151 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-8.5 - parent: 1 - type: Transform -- uid: 17152 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 1 - type: Transform -- uid: 17153 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 1 - type: Transform -- uid: 17154 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-8.5 - parent: 1 - type: Transform -- uid: 17155 - type: DisposalYJunction - components: - - pos: 24.5,-8.5 - parent: 1 - type: Transform -- uid: 17156 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-8.5 - parent: 1 - type: Transform -- uid: 17157 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-8.5 - parent: 1 - type: Transform -- uid: 17158 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 1 - type: Transform -- uid: 17159 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 1 - type: Transform -- uid: 17160 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-8.5 - parent: 1 - type: Transform -- uid: 17161 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-8.5 - parent: 1 - type: Transform -- uid: 17162 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 1 - type: Transform -- uid: 17163 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-8.5 - parent: 1 - type: Transform -- uid: 17164 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-8.5 - parent: 1 - type: Transform -- uid: 17165 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-8.5 - parent: 1 - type: Transform -- uid: 17166 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-8.5 - parent: 1 - type: Transform -- uid: 17167 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-8.5 - parent: 1 - type: Transform -- uid: 17168 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-8.5 - parent: 1 - type: Transform -- uid: 17169 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-8.5 - parent: 1 - type: Transform -- uid: 17170 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-8.5 - parent: 1 - type: Transform -- uid: 17171 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-8.5 - parent: 1 - type: Transform -- uid: 17172 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-8.5 - parent: 1 - type: Transform -- uid: 17173 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-8.5 - parent: 1 - type: Transform -- uid: 17174 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-8.5 - parent: 1 - type: Transform -- uid: 17175 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-8.5 - parent: 1 - type: Transform -- uid: 17176 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 45.5,-7.5 - parent: 1 - type: Transform -- uid: 17177 - type: DisposalTrunk - components: - - pos: 45.5,-6.5 - parent: 1 - type: Transform -- uid: 17178 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-8.5 - parent: 1 - type: Transform -- uid: 17179 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,-7.5 - parent: 1 - type: Transform -- uid: 17180 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,-6.5 - parent: 1 - type: Transform -- uid: 17181 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,-5.5 - parent: 1 - type: Transform -- uid: 17182 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,-4.5 - parent: 1 - type: Transform -- uid: 17183 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,-3.5 - parent: 1 - type: Transform -- uid: 17184 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,-2.5 - parent: 1 - type: Transform -- uid: 17185 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,-1.5 - parent: 1 - type: Transform -- uid: 17186 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,-0.5 - parent: 1 - type: Transform -- uid: 17187 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,0.5 - parent: 1 - type: Transform -- uid: 17188 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,1.5 - parent: 1 - type: Transform -- uid: 17189 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,2.5 - parent: 1 - type: Transform -- uid: 17190 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,3.5 - parent: 1 - type: Transform -- uid: 17191 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,4.5 - parent: 1 - type: Transform -- uid: 17192 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,5.5 - parent: 1 - type: Transform -- uid: 17193 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,6.5 - parent: 1 - type: Transform -- uid: 17194 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 31.5,7.5 - parent: 1 - type: Transform -- uid: 17195 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,7.5 - parent: 1 - type: Transform -- uid: 17196 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 33.5,7.5 - parent: 1 - type: Transform -- uid: 17197 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-9.5 - parent: 1 - type: Transform -- uid: 17198 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-10.5 - parent: 1 - type: Transform -- uid: 17199 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-11.5 - parent: 1 - type: Transform -- uid: 17200 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-12.5 - parent: 1 - type: Transform -- uid: 17201 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-13.5 - parent: 1 - type: Transform -- uid: 17202 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-14.5 - parent: 1 - type: Transform -- uid: 17203 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-15.5 - parent: 1 - type: Transform -- uid: 17204 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-16.5 - parent: 1 - type: Transform -- uid: 17205 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-17.5 - parent: 1 - type: Transform -- uid: 17206 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-18.5 - parent: 1 - type: Transform -- uid: 17207 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-19.5 - parent: 1 - type: Transform -- uid: 17208 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-20.5 - parent: 1 - type: Transform -- uid: 17209 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-21.5 - parent: 1 - type: Transform -- uid: 17210 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-22.5 - parent: 1 - type: Transform -- uid: 17211 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-23.5 - parent: 1 - type: Transform -- uid: 17212 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-24.5 - parent: 1 - type: Transform -- uid: 17213 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 1 - type: Transform -- uid: 17214 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 1 - type: Transform -- uid: 17215 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-25.5 - parent: 1 - type: Transform -- uid: 17216 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-26.5 - parent: 1 - type: Transform -- uid: 17217 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-27.5 - parent: 1 - type: Transform -- uid: 17218 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-27.5 - parent: 1 - type: Transform -- uid: 17219 - type: DisposalPipe - components: - - pos: 21.5,-28.5 - parent: 1 - type: Transform -- uid: 17220 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-29.5 - parent: 1 - type: Transform -- uid: 17221 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-29.5 - parent: 1 - type: Transform -- uid: 17222 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-29.5 - parent: 1 - type: Transform -- uid: 17223 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-29.5 - parent: 1 - type: Transform -- uid: 17224 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-29.5 - parent: 1 - type: Transform -- uid: 17225 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-29.5 - parent: 1 - type: Transform -- uid: 17226 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-29.5 - parent: 1 - type: Transform -- uid: 17227 - type: DisposalPipe - components: - - pos: 15.5,-30.5 - parent: 1 - type: Transform -- uid: 17228 - type: DisposalPipe - components: - - pos: 15.5,-31.5 - parent: 1 - type: Transform -- uid: 17229 - type: DisposalPipe - components: - - pos: 15.5,-32.5 - parent: 1 - type: Transform -- uid: 17230 - type: DisposalPipe - components: - - pos: 15.5,-33.5 - parent: 1 - type: Transform -- uid: 17231 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 15.5,-34.5 - parent: 1 - type: Transform -- uid: 17232 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-34.5 - parent: 1 - type: Transform -- uid: 17233 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-34.5 - parent: 1 - type: Transform -- uid: 17234 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 17.5,-33.5 - parent: 1 - type: Transform -- uid: 17235 - type: DisposalTrunk - components: - - pos: 17.5,-32.5 - parent: 1 - type: Transform -- uid: 17236 - type: SurveillanceCameraCommand - components: - - pos: -0.5,-5.5 - parent: 8756 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Private Shuttle - type: SurveillanceCamera -- uid: 17237 - type: PoweredSmallLight - components: - - pos: 36.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17238 - type: CableMV - components: - - pos: 18.5,28.5 - parent: 1 - type: Transform -- uid: 17239 - type: CableMV - components: - - pos: 19.5,28.5 - parent: 1 - type: Transform -- uid: 17240 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17241 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17242 - type: PoweredSmallLight - components: - - pos: -5.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17243 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17244 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17245 - type: PoweredSmallLight - components: - - pos: 16.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17246 - type: PoweredSmallLight - components: - - pos: -8.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17247 - type: PoweredSmallLight - components: - - pos: -31.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17248 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17249 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17250 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17251 - type: Poweredlight - components: - - pos: 10.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17252 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 20.5,36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17253 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17254 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17255 - type: Poweredlight - components: - - pos: 37.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17256 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17257 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 2.5,66.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17258 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17259 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17268 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17269 - type: TableReinforced - components: - - pos: -23.5,-13.5 - parent: 1 - type: Transform -- uid: 17270 - type: MopItem - components: - - pos: -23.582245,-13.364458 - parent: 1 - type: Transform -- uid: 17271 - type: MopItem - components: - - pos: -23.433157,-13.470892 - parent: 1 - type: Transform -- uid: 17272 - type: TrashBag - components: - - pos: -22.985895,-13.407032 - parent: 1 - type: Transform -- uid: 17273 - type: TrashBag - components: - - pos: -23.198877,-13.492178 - parent: 1 - type: Transform -- uid: 17274 - type: SprayBottleSpaceCleaner - components: - - pos: -23.710033,-13.449605 - parent: 1 - type: Transform -- uid: 17275 - type: SprayBottleSpaceCleaner - components: - - pos: -23.539648,-13.279312 - parent: 1 - type: Transform -- uid: 17276 - type: MopBucket - components: - - pos: -23.497051,-11.512519 - parent: 1 - type: Transform -- uid: 17277 - type: FloorDrain - components: - - pos: -23.5,-12.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 17278 - type: RandomDrinkGlass - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform -- uid: 17279 - type: RandomDrinkGlass - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform -- uid: 17280 - type: RandomDrinkGlass - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform -- uid: 17281 - type: RandomDrinkGlass - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform -- uid: 17282 - type: TableWood - components: - - pos: -6.5,-2.5 - parent: 1 - type: Transform -- uid: 17283 - type: RandomFoodSingle - components: - - pos: -0.5,4.5 - parent: 1 - type: Transform -- uid: 17284 - type: RandomFoodSingle - components: - - pos: 3.5,8.5 - parent: 1 - type: Transform -- uid: 17285 - type: FoodCondimentPacketAstrotame - components: - - pos: -0.6371541,9.529309 - parent: 1 - type: Transform -- uid: 17286 - type: FoodCondimentPacketHorseradish - components: - - pos: -0.25378847,-0.7095739 - parent: 1 - type: Transform -- uid: 17287 - type: FoodCondimentPacketSoy - components: - - pos: -10.562105,2.6537187 - parent: 1 - type: Transform -- uid: 17288 - type: Spoon - components: - - pos: -10.945471,2.5472858 - parent: 1 - type: Transform -- uid: 17289 - type: Spoon - components: - - pos: -0.38157701,9.21001 - parent: 1 - type: Transform -- uid: 17290 - type: TableWood - components: - - pos: -9.5,-5.5 - parent: 1 - type: Transform -- uid: 17291 - type: Fork - components: - - pos: -0.80753946,4.3779383 - parent: 1 - type: Transform -- uid: 17292 - type: FoodPlate - components: - - pos: -0.4880681,3.8883455 - parent: 1 - type: Transform -- uid: 17293 - type: TableWood - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform -- uid: 17294 - type: FoodPlateSmall - components: - - pos: -10.796385,2.6324317 - parent: 1 - type: Transform -- uid: 17295 - type: FoodPlateSmall - components: - - pos: -0.40287447,9.14615 - parent: 1 - type: Transform -- uid: 17296 - type: DrinkGlass - components: - - pos: -4.7264047,2.7601516 - parent: 1 - type: Transform -- uid: 17297 - type: TableWood - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform -- uid: 17298 - type: TableWood - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform -- uid: 17299 - type: DrinkShaker - components: - - pos: -10.796385,6.7194715 - parent: 1 - type: Transform -- uid: 17300 - type: DrinkShaker - components: - - pos: -10.6047,6.421458 - parent: 1 - type: Transform -- uid: 17301 - type: PottedPlantRandom - components: - - pos: -1.5,24.5 - parent: 1 - type: Transform -- uid: 17302 - type: DrinkShotGlass - components: - - pos: -11.013691,6.5249143 - parent: 1 - type: Transform -- uid: 17303 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -38.5,48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17304 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -39.5,57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17305 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 38.5,57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17306 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 32.5,58.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17307 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 25.5,60.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17308 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 19.5,66.5 - parent: 1 - type: Transform -- uid: 17309 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 13.5,72.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17310 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,81.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17311 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -0.5,85.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17312 - type: CableApcExtension - components: - - pos: 5.5,80.5 - parent: 1 - type: Transform -- uid: 17313 - type: CableApcExtension - components: - - pos: 6.5,80.5 - parent: 1 - type: Transform -- uid: 17314 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,81.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17315 - type: CableApcExtension - components: - - pos: -6.5,80.5 - parent: 1 - type: Transform -- uid: 17316 - type: CableApcExtension - components: - - pos: -6.5,80.5 - parent: 1 - type: Transform -- uid: 17317 - type: CableApcExtension - components: - - pos: -7.5,80.5 - parent: 1 - type: Transform -- uid: 17318 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -14.5,72.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17319 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,75.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17320 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,75.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17321 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -20.5,66.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17322 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -26.5,60.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17323 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -33.5,58.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17324 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17325 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17326 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17327 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17328 - type: CableApcExtension - components: - - pos: 43.5,51.5 - parent: 1 - type: Transform -- uid: 17329 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 1.5,75.5 - parent: 1 - type: Transform - - devices: - - 6125 - - 6124 - - 6122 - - 6123 - type: DeviceList -- uid: 17330 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -2.5,75.5 - parent: 1 - type: Transform - - devices: - - 6125 - - 6124 - - 6122 - - 6123 - - 17332 - - 16339 - - 16334 - - 16332 - - 16327 - - 16331 - - 16328 - - 16348 - - 16349 - type: DeviceList -- uid: 17331 - type: Firelock - components: - - pos: -8.5,71.5 - parent: 1 - type: Transform -- uid: 17332 - type: AirSensor - components: - - pos: -0.5,72.5 - parent: 1 - type: Transform -- uid: 17333 - type: FireAlarm - components: - - pos: 7.5,75.5 - parent: 1 - type: Transform - - devices: - - 6125 - type: DeviceList -- uid: 17334 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 8.5,71.5 - parent: 1 - type: Transform - - devices: - - 6125 - - 16348 - - 16349 - - 17335 - type: DeviceList -- uid: 17335 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: -0.5,78.5 - parent: 1 - type: Transform -- uid: 17336 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -2.5,71.5 - parent: 1 - type: Transform - - devices: - - 6120 - - 6121 - - 6123 - - 6122 - - 16285 - - 16287 - - 16286 - - 16288 - - 17335 - - 17338 - type: DeviceList -- uid: 17337 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -2.5,70.5 - parent: 1 - type: Transform - - devices: - - 6120 - - 6121 - - 6123 - - 6122 - type: DeviceList -- uid: 17338 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: -0.5,67.5 - parent: 1 - type: Transform -- uid: 17339 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -2.5,65.5 - parent: 1 - type: Transform - - devices: - - 6121 - - 6120 - - 6127 - - 6128 - - 6126 - - 6115 - - 6114 - - 6113 - - 6129 - - 16240 - - 16241 - - 17332 - - 16283 - - 16284 - - 17341 - type: DeviceList -- uid: 17340 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -2.5,66.5 - parent: 1 - type: Transform - - devices: - - 6121 - - 6120 - - 6127 - - 6128 - - 6126 - - 6115 - - 6114 - - 6113 - - 6129 - type: DeviceList -- uid: 17341 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: 3.5,62.5 - parent: 1 - type: Transform -- uid: 17342 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 6.5,62.5 - parent: 1 - type: Transform - - devices: - - 6129 - type: DeviceList -- uid: 17343 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 6.5,63.5 - parent: 1 - type: Transform - - devices: - - 6129 - - 16238 - - 16239 - - 17338 - - 17344 - type: DeviceList -- uid: 17344 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: 6.5,56.5 - parent: 1 - type: Transform -- uid: 17345 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 7.5,51.5 - parent: 1 - type: Transform - - devices: - - 6119 - - 6118 - type: DeviceList -- uid: 17346 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 8.5,51.5 - parent: 1 - type: Transform - - devices: - - 6119 - - 6118 - - 16196 - - 16195 - - 16214 - - 16206 - - 17347 - type: DeviceList -- uid: 17347 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: -0.5,57.5 - parent: 1 - type: Transform -- uid: 17348 - type: FireAlarm - components: - - pos: -3.5,58.5 - parent: 1 - type: Transform - - devices: - - 6113 - - 6114 - - 6115 - - 6110 - - 6111 - - 6112 - - 6119 - - 6118 - - 6116 - - 6117 - type: DeviceList -- uid: 17349 - type: AirAlarm - components: - - pos: 2.5,58.5 - parent: 1 - type: Transform - - devices: - - 6113 - - 6114 - - 6115 - - 6110 - - 6111 - - 6112 - - 6119 - - 6118 - - 6116 - - 6117 - - 17338 - - 17344 - - 17350 - - 15982 - - 15981 - - 17351 - type: DeviceList -- uid: 17350 - type: AirSensor - components: - - pos: -0.5,47.5 - parent: 1 - type: Transform -- uid: 17351 - type: AirSensor - components: - - pos: -5.5,56.5 - parent: 1 - type: Transform -- uid: 17352 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -2.5,43.5 - parent: 1 - type: Transform - - devices: - - 6130 - - 6131 - - 6110 - - 6111 - - 6112 - - 6133 - - 6132 - - 5635 - - 5636 - - 5637 - - 15921 - - 15922 - - 15945 - - 15944 - - 17347 - - 17354 - type: DeviceList -- uid: 17353 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 1.5,43.5 - parent: 1 - type: Transform - - devices: - - 6130 - - 6131 - - 6110 - - 6111 - - 6112 - - 6133 - - 6132 - - 5635 - - 5636 - - 5637 - type: DeviceList -- uid: 17354 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: -10.5,53.5 - parent: 1 - type: Transform -- uid: 17355 - type: AirAlarm - components: - - pos: -12.5,57.5 - parent: 1 - type: Transform - - devices: - - 6116 - - 6117 - - 17363 - - 17362 - - 8180 - - 17359 - - 17360 - - 17361 - - 17364 - - 16017 - - 16018 - - 16049 - - 16050 - - 17365 - - 17347 - type: DeviceList -- uid: 17356 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -7.5,54.5 - parent: 1 - type: Transform - - devices: - - 6116 - - 6117 - - 17363 - - 17362 - - 8180 - - 17359 - - 17360 - - 17361 - - 17364 - type: DeviceList -- uid: 17357 - type: SignHead - components: - - pos: -12.5,58.5 - parent: 1 - type: Transform -- uid: 17358 - type: AirAlarm - components: - - pos: -5.5,65.5 - parent: 1 - type: Transform - - devices: - - 15999 - - 16037 - - 16040 - - 15998 - type: DeviceList -- uid: 17359 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: -18.5,51.5 - parent: 1 - type: Transform -- uid: 17360 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: -17.5,51.5 - parent: 1 - type: Transform -- uid: 17361 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: -16.5,51.5 - parent: 1 - type: Transform -- uid: 17362 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: -9.5,51.5 - parent: 1 - type: Transform -- uid: 17363 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: -8.5,51.5 - parent: 1 - type: Transform -- uid: 17364 - type: FirelockGlass - components: - - pos: -12.5,51.5 - parent: 1 - type: Transform -- uid: 17365 - type: AirSensor - components: - - pos: -18.5,46.5 - parent: 1 - type: Transform -- uid: 17366 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -20.5,45.5 - parent: 1 - type: Transform - - devices: - - 8180 - - 17359 - - 17360 - - 17361 - - 17368 - - 17369 - - 17370 - - 17371 - - 6130 - - 6131 - - 16142 - - 16141 - - 16006 - - 16007 - - 17354 - - 16183 - - 16191 - - 16184 - - 16189 - - 16185 - - 16188 - - 16186 - - 16187 - - 16095 - - 16094 - type: DeviceList -- uid: 17367 - type: FireAlarm - components: - - pos: -15.5,47.5 - parent: 1 - type: Transform - - devices: - - 8180 - - 17359 - - 17360 - - 17361 - - 17368 - - 17369 - - 17370 - - 17371 - - 6130 - - 6131 - type: DeviceList -- uid: 17368 - type: FirelockGlass - components: - - pos: -13.5,47.5 - parent: 1 - type: Transform -- uid: 17369 - type: FirelockGlass - components: - - pos: -12.5,47.5 - parent: 1 - type: Transform -- uid: 17370 - type: FirelockGlass - components: - - pos: -20.5,48.5 - parent: 1 - type: Transform -- uid: 17371 - type: FirelockGlass - components: - - pos: -20.5,47.5 - parent: 1 - type: Transform -- uid: 17372 - type: AirSensor - components: - - pos: -25.5,48.5 - parent: 1 - type: Transform -- uid: 17373 - type: AirAlarm - components: - - pos: -33.5,50.5 - parent: 1 - type: Transform - - devices: - - 7022 - - 7023 - - 16143 - - 16175 - - 16155 - - 16158 - - 16156 - - 16157 - - 16171 - - 16170 - - 16169 - type: DeviceList -- uid: 17374 - type: FireAlarm - components: - - pos: -32.5,50.5 - parent: 1 - type: Transform - - devices: - - 7022 - - 7023 - type: DeviceList -- uid: 17375 - type: AirSensor - components: - - pos: -48.5,37.5 - parent: 1 - type: Transform -- uid: 17376 - type: AirAlarm - components: - - pos: -47.5,45.5 - parent: 1 - type: Transform - - devices: - - 7898 - - 7899 - - 7894 - - 7895 - - 15910 - - 15908 - - 17375 - type: DeviceList -- uid: 17377 - type: FireAlarm - components: - - pos: -46.5,45.5 - parent: 1 - type: Transform - - devices: - - 7898 - - 7899 - - 7894 - - 7895 - type: DeviceList -- uid: 17378 - type: AirSensor - components: - - pos: -46.5,42.5 - parent: 1 - type: Transform -- uid: 17379 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: -48.5,14.5 - parent: 1 - type: Transform -- uid: 17380 - type: ChessBoard - components: - - pos: -47.624664,35.52521 - parent: 1 - type: Transform -- uid: 17381 - type: DrinkDriestMartiniGlass - components: - - pos: -47.28389,35.84451 - parent: 1 - type: Transform -- uid: 17382 - type: CigarGold - components: - - pos: -49.609077,16.675528 - parent: 1 - type: Transform -- uid: 17383 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -50.5,35.5 - parent: 1 - type: Transform -- uid: 17384 - type: CheapLighter - components: - - pos: -49.49224,16.547865 - parent: 1 - type: Transform -- uid: 17385 - type: FireAlarm - components: - - pos: -39.5,39.5 - parent: 1 - type: Transform - - devices: - - 7898 - - 7899 - - 7894 - - 7895 - - 5835 - - 5833 - - 5834 - type: DeviceList -- uid: 17386 - type: AirAlarm - components: - - pos: -38.5,39.5 - parent: 1 - type: Transform - - devices: - - 7898 - - 7899 - - 7894 - - 7895 - - 5835 - - 5833 - - 5834 - - 15909 - - 15907 - - 17378 - - 15911 - - 15906 - - 17387 - type: DeviceList -- uid: 17387 - type: AirSensor - components: - - pos: -31.5,38.5 - parent: 1 - type: Transform -- uid: 17388 - type: FireAlarm - components: - - pos: -20.5,39.5 - parent: 1 - type: Transform - - devices: - - 5632 - - 5633 - - 5634 - - 5839 - - 5840 - - 5841 - - 6138 - - 6136 - type: DeviceList -- uid: 17389 - type: AirAlarm - components: - - pos: -22.5,39.5 - parent: 1 - type: Transform - - devices: - - 5632 - - 5633 - - 5634 - - 5839 - - 5840 - - 5841 - - 6138 - - 6136 - - 15859 - - 15860 - - 17387 - - 17390 - - 15226 - - 15225 - type: DeviceList -- uid: 17390 - type: AirSensor - components: - - pos: -14.5,37.5 - parent: 1 - type: Transform -- uid: 17391 - type: AirSensor - components: - - pos: -23.5,37.5 - parent: 1 - type: Transform -- uid: 17392 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -12.5,35.5 - parent: 1 - type: Transform - - devices: - - 9591 - - 9590 - - 9589 - - 5633 - - 5632 - - 5634 - - 6134 - - 6135 - - 6137 - type: DeviceList -- uid: 17393 - type: AirSensor - components: - - pos: -6.5,37.5 - parent: 1 - type: Transform -- uid: 17394 - type: AirAlarm - components: - - pos: -14.5,39.5 - parent: 1 - type: Transform - - devices: - - 9591 - - 9590 - - 9589 - - 5633 - - 5632 - - 5634 - - 6134 - - 6135 - - 6137 - - 15225 - - 15226 - - 17391 - - 17393 - - 17395 - type: DeviceList -- uid: 17395 - type: AirSensor - components: - - pos: -16.5,31.5 - parent: 1 - type: Transform -- uid: 17396 - type: AirAlarm - components: - - pos: 4.5,39.5 - parent: 1 - type: Transform - - devices: - - 5644 - - 5645 - - 5646 - - 5640 - - 5639 - - 5638 - - 5637 - - 5636 - - 5635 - - 9591 - - 9590 - - 9589 - - 17398 - - 15200 - - 566 - - 15172 - - 15173 - - 15154 - - 15155 - - 17350 - - 17390 - type: DeviceList -- uid: 17397 - type: FireAlarm - components: - - pos: -5.5,39.5 - parent: 1 - type: Transform - - devices: - - 5644 - - 5645 - - 5646 - - 5640 - - 5639 - - 5638 - - 5637 - - 5636 - - 5635 - - 9591 - - 9590 - - 9589 - type: DeviceList -- uid: 17398 - type: AirSensor - components: - - pos: -0.5,25.5 - parent: 1 - type: Transform -- uid: 17399 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 19.5,35.5 - parent: 1 - type: Transform - - devices: - - 5631 - - 5630 - - 5629 - - 5688 - - 5689 - - 5690 - - 5691 - - 5687 - - 5686 - - 7267 - - 7268 - - 5708 - - 5709 - - 5710 - type: DeviceList -- uid: 17400 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 20.5,35.5 - parent: 1 - type: Transform - - devices: - - 5631 - - 5630 - - 5629 - - 5688 - - 5689 - - 5690 - - 5691 - - 5687 - - 5686 - - 7267 - - 7268 - - 5708 - - 5709 - - 5710 - - 15155 - - 15154 - - 15094 - - 17402 - - 17401 - - 15095 - - 14983 - - 15076 - - 15075 - type: DeviceList -- uid: 17401 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: 20.5,42.5 - parent: 1 - type: Transform -- uid: 17402 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 31.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17403 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 16.5,41.5 - parent: 1 - type: Transform - - devices: - - 5686 - - 5687 - - 5689 - - 5688 - - 15101 - - 15102 - - 17405 - type: DeviceList -- uid: 17404 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 24.5,41.5 - parent: 1 - type: Transform - - devices: - - 5686 - - 5687 - - 5689 - - 5688 - type: DeviceList -- uid: 17405 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: 20.5,37.5 - parent: 1 - type: Transform -- uid: 17406 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 16.5,44.5 - parent: 1 - type: Transform - - devices: - - 5691 - - 5690 - - 15129 - - 15148 - - 15147 - - 15130 - - 15133 - - 15132 - - 15146 - - 15131 - - 17405 - type: DeviceList -- uid: 17407 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 13.5,40.5 - parent: 1 - type: Transform - - devices: - - 5691 - - 5690 - type: DeviceList -- uid: 17408 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 35.5,47.5 - parent: 1 - type: Transform - - devices: - - 5712 - - 5711 - - 14988 - - 14987 - - 15001 - - 15002 - - 15029 - - 15028 - - 15031 - - 15030 - - 17402 - - 14983 - type: DeviceList -- uid: 17409 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 33.5,41.5 - parent: 1 - type: Transform - - devices: - - 5700 - - 5699 - - 5698 - - 5697 - - 5708 - - 5709 - - 5710 - - 5711 - - 5712 - - 5692 - - 5693 - - 5694 - type: DeviceList -- uid: 17410 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 35.5,45.5 - parent: 1 - type: Transform - - devices: - - 5712 - - 5711 - type: DeviceList -- uid: 17411 - type: FireAlarm - components: - - pos: 35.5,39.5 - parent: 1 - type: Transform - - devices: - - 5694 - - 5693 - - 5692 - - 5700 - - 5699 - - 5698 - - 5697 - - 5708 - - 5709 - - 5710 - - 5711 - - 5712 - type: DeviceList -- uid: 17412 - type: AirAlarm - components: - - pos: 36.5,39.5 - parent: 1 - type: Transform - - devices: - - 5694 - - 5693 - - 5692 - - 5700 - - 5699 - - 5698 - - 5697 - - 5708 - - 5709 - - 5710 - - 5711 - - 5712 - - 15036 - - 15037 - - 14983 - - 17402 - - 17413 - - 17405 - - 17414 - type: DeviceList -- uid: 17413 - type: AirSensor - components: - - pos: 31.5,26.5 - parent: 1 - type: Transform -- uid: 17414 - type: AirSensor - components: - - pos: 46.5,39.5 - parent: 1 - type: Transform -- uid: 17415 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 43.5,35.5 - parent: 1 - type: Transform - - devices: - - 5692 - - 5693 - - 5694 - - 6344 - - 6345 - - 6346 - type: DeviceList -- uid: 17416 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 44.5,35.5 - parent: 1 - type: Transform - - devices: - - 5692 - - 5693 - - 5694 - - 6344 - - 6345 - - 6346 - - 15065 - - 15054 - - 15066 - - 15067 - type: DeviceList -- uid: 17417 - type: PowerCellRecharger - components: - - rot: 3.141592653589793 rad - pos: 36.5,6.5 - parent: 1 - type: Transform -- uid: 17418 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 33.5,26.5 - parent: 1 - type: Transform - - devices: - - 5704 - - 5703 - - 5702 - - 5701 - - 5725 - - 5726 - - 5727 - - 7269 - - 17420 - - 5697 - - 5698 - - 5699 - - 5700 - - 17402 - - 14983 - - 14954 - - 14955 - - 14899 - - 14900 - - 17421 - - 17422 - type: DeviceList -- uid: 17419 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 33.5,25.5 - parent: 1 - type: Transform - - devices: - - 5704 - - 5703 - - 5702 - - 5701 - - 5725 - - 5726 - - 5727 - - 7269 - - 17420 - - 5697 - - 5698 - - 5699 - - 5700 - type: DeviceList -- uid: 17420 - type: FirelockGlass - components: - - pos: 28.5,33.5 - parent: 1 - type: Transform -- uid: 17421 - type: AirSensor - components: - - pos: 24.5,19.5 - parent: 1 - type: Transform -- uid: 17422 - type: AirSensor - components: - - pos: 29.5,14.5 - parent: 1 - type: Transform -- uid: 17423 - type: FireAlarm - components: - - pos: 25.5,23.5 - parent: 1 - type: Transform - - devices: - - 5727 - - 5726 - - 5725 - - 5724 - - 5723 - - 5722 - type: DeviceList -- uid: 17424 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 20.5,19.5 - parent: 1 - type: Transform - - devices: - - 5727 - - 5726 - - 5725 - - 5724 - - 5723 - - 5722 - - 14906 - - 14907 - - 17413 - - 17422 - type: DeviceList -- uid: 17425 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 28.5,12.5 - parent: 1 - type: Transform - - devices: - - 5722 - - 5723 - - 5724 - - 5685 - - 5684 - - 5683 - - 5701 - - 5702 - - 5703 - - 5704 - - 5719 - - 5720 - - 5721 - - 5717 - - 5716 - - 5715 - type: DeviceList -- uid: 17426 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 27.5,12.5 - parent: 1 - type: Transform - - devices: - - 5722 - - 5723 - - 5724 - - 5685 - - 5684 - - 5683 - - 5701 - - 5702 - - 5703 - - 5704 - - 5719 - - 5720 - - 5721 - - 5717 - - 5716 - - 5715 - - 14917 - - 14916 - - 17413 - - 17421 - - 17427 - - 17428 - - 17429 - type: DeviceList -- uid: 17427 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: 47.5,14.5 - parent: 1 - type: Transform -- uid: 17428 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: 32.5,2.5 - parent: 1 - type: Transform -- uid: 17429 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: 16.5,14.5 - parent: 1 - type: Transform -- uid: 17430 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 44.5,12.5 - parent: 1 - type: Transform - - devices: - - 5717 - - 5716 - - 5715 - - 14879 - - 14880 - - 17422 - type: DeviceList -- uid: 17431 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 43.5,12.5 - parent: 1 - type: Transform - - devices: - - 5717 - - 5716 - - 5715 - type: DeviceList -- uid: 17432 - type: FireAlarm - components: - - pos: 17.5,16.5 - parent: 1 - type: Transform - - devices: - - 5683 - - 5684 - - 5685 - - 5623 - - 5624 - - 5625 - type: DeviceList -- uid: 17433 - type: AirAlarm - components: - - pos: 16.5,16.5 - parent: 1 - type: Transform - - devices: - - 5683 - - 5684 - - 5685 - - 5623 - - 5624 - - 5625 - - 14929 - - 14928 - - 17422 - - 17434 - type: DeviceList -- uid: 17434 - type: AirSensor - components: - - pos: -8.5,14.5 - parent: 1 - type: Transform -- uid: 17435 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -11.5,12.5 - parent: 1 - type: Transform - - devices: - - 5623 - - 5624 - - 5625 - - invalid - - 5663 - - 5662 - - 5661 - - 5772 - - 5771 - - 5769 - - 5620 - - 5621 - - 5622 - - 5655 - - 5654 - - 5653 - - 5658 - - 5659 - - 5660 - type: DeviceList -- uid: 17436 - type: FireAlarm - components: - - pos: 10.5,16.5 - parent: 1 - type: Transform - - devices: - - 5623 - - 5624 - - 5625 - - invalid - - 5663 - - 5662 - - 5661 - - 5772 - - 5771 - - 5769 - - 5620 - - 5621 - - 5622 - - 5655 - - 5654 - - 5653 - - 5658 - - 5659 - - 5660 - - 555 - - 18237 - - 18238 - type: DeviceList -- uid: 17437 - type: AirSensor - components: - - pos: -4.5,18.5 - parent: 1 - type: Transform -- uid: 17438 - type: AirSensor - components: - - pos: 3.5,18.5 - parent: 1 - type: Transform -- uid: 17439 - type: AirAlarm - components: - - pos: -8.5,16.5 - parent: 1 - type: Transform - - devices: - - 5623 - - 5624 - - 5625 - - invalid - - 5663 - - 5662 - - 5661 - - 5772 - - 5771 - - 5769 - - 5620 - - 5621 - - 5622 - - 5655 - - 5654 - - 5653 - - 5658 - - 5659 - - 5660 - - 15382 - - 15381 - - 15480 - - 15479 - - 17398 - - 17437 - - 17438 - - 17469 - - 17468 - type: DeviceList -- uid: 17440 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -7.5,20.5 - parent: 1 - type: Transform - - devices: - - 5657 - - 5656 - - 4341 - type: DeviceList -- uid: 17441 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -8.5,24.5 - parent: 1 - type: Transform - - devices: - - 5657 - - 5656 - - 4341 - - 15294 - - 15295 - - 15316 - - 15317 - - 17437 - - 17442 - type: DeviceList -- uid: 17442 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: -16.5,24.5 - parent: 1 - type: Transform -- uid: 17443 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: -8.5,18.5 - parent: 1 - type: Transform -- uid: 17444 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -14.5,23.5 - parent: 1 - type: Transform - - devices: - - 6363 - - 4341 - - 4344 - - 4338 - - 4340 - - 6364 - - 4343 - - 6365 - type: DeviceList -- uid: 17445 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -18.5,23.5 - parent: 1 - type: Transform - - devices: - - 6363 - - 4341 - - 4344 - - 4338 - - 4340 - - 6364 - - 4343 - - 6365 - - 15458 - - 15457 - - 15447 - - 15452 - - 15411 - - 8694 - - 17443 - - 15459 - - 15460 - - 15265 - - 15266 - type: DeviceList -- uid: 17446 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -21.5,31.5 - parent: 1 - type: Transform - - devices: - - 6138 - - 6134 - - 6135 - - 6137 - - 6363 - type: DeviceList -- uid: 17447 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -13.5,29.5 - parent: 1 - type: Transform - - devices: - - 6138 - - 6134 - - 6135 - - 6137 - - 6363 - - 15263 - - 15264 - - 15265 - - 15266 - - 17390 - - 17391 - type: DeviceList -- uid: 17448 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -12.5,29.5 - parent: 1 - type: Transform - - devices: - - 17449 - - 6365 - type: DeviceList -- uid: 17449 - type: FirelockGlass - components: - - pos: -8.5,33.5 - parent: 1 - type: Transform -- uid: 17450 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -8.5,32.5 - parent: 1 - type: Transform - - devices: - - 17449 - - 6365 - - 15283 - - 15284 - - 17442 - type: DeviceList -- uid: 17451 - type: FireAlarm - components: - - pos: 7.5,21.5 - parent: 1 - type: Transform - - devices: - - 6399 - - 6400 - - 6398 - type: DeviceList -- uid: 17452 - type: AirAlarm - components: - - pos: 8.5,21.5 - parent: 1 - type: Transform - - devices: - - 6399 - - 6400 - - 6398 - - 15499 - - 15500 - - 17453 - - 17438 - type: DeviceList -- uid: 17453 - type: AirSensor - components: - - pos: 10.5,27.5 - parent: 1 - type: Transform -- uid: 17454 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 9.5,25.5 - parent: 1 - type: Transform - - devices: - - 6398 - - 6391 - - 6392 - - 6396 - - 6397 - - 6394 - - 6395 - - 6393 - type: DeviceList -- uid: 17455 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 13.5,24.5 - parent: 1 - type: Transform - - devices: - - 6398 - - 6391 - - 6392 - - 6396 - - 6397 - - 6394 - - 6395 - - 6393 - - 17457 - - 15537 - - 15579 - - 17458 - - 17459 - - 17462 - type: DeviceList -- uid: 17456 - type: FloorDrain - components: - - rot: -1.5707963267948966 rad - pos: 6.5,23.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 17457 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: 5.5,23.5 - parent: 1 - type: Transform -- uid: 17458 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: 5.5,30.5 - parent: 1 - type: Transform -- uid: 17459 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: 19.5,28.5 - parent: 1 - type: Transform -- uid: 17460 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 19.5,25.5 - parent: 1 - type: Transform - - devices: - - 15562 - - 15566 - - 15578 - - 15558 - - 12901 - - 17453 - type: DeviceList -- uid: 17461 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 8.5,32.5 - parent: 1 - type: Transform - - devices: - - 15587 - - 9036 - - 9037 - - 17453 - - 6396 - type: DeviceList -- uid: 17462 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: 10.5,32.5 - parent: 1 - type: Transform -- uid: 17463 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 8.5,33.5 - parent: 1 - type: Transform - - devices: - - 15550 - - 15544 - - 17453 - - 6394 - - 6395 - type: DeviceList -- uid: 17464 - type: AirAlarm - components: - - pos: 3.5,26.5 - parent: 1 - type: Transform - - devices: - - 5667 - - 5668 - - 6392 - - 6391 - - 6393 - - 15524 - - 15525 - - 17453 - - 17438 - type: DeviceList -- uid: 17465 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 7.5,25.5 - parent: 1 - type: Transform - - devices: - - 5667 - - 5668 - - 6392 - - 6391 - - 6393 - type: DeviceList -- uid: 17466 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -2.5,26.5 - parent: 1 - type: Transform - - devices: - - 5638 - - 5639 - - 5640 - - 5648 - - 5651 - - 5652 - - 5658 - - 5659 - - 5660 - - 5664 - - 5665 - - 5666 - - 15325 - - 15326 - - 15352 - - 15351 - - 17438 - - 17437 - - 17434 - - 17393 - type: DeviceList -- uid: 17467 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -2.5,25.5 - parent: 1 - type: Transform - - devices: - - 5638 - - 5639 - - 5640 - - 5648 - - 5651 - - 5652 - - 5658 - - 5659 - - 5660 - - 5664 - - 5665 - - 5666 - type: DeviceList -- uid: 17468 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: -23.5,14.5 - parent: 1 - type: Transform -- uid: 17469 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 1 - type: Transform -- uid: 17470 - type: AirAlarm - components: - - pos: -24.5,16.5 - parent: 1 - type: Transform - - devices: - - 5620 - - 5621 - - 5622 - - 5673 - - 5672 - - 5671 - - 5669 - - 5670 - - 15609 - - 15610 - - 17434 - - 17472 - type: DeviceList -- uid: 17471 - type: FireAlarm - components: - - pos: -26.5,16.5 - parent: 1 - type: Transform - - devices: - - 5620 - - 5621 - - 5622 - - 5673 - - 5672 - - 5671 - - 5669 - - 5670 - type: DeviceList -- uid: 17472 - type: AirSensor - components: - - pos: -32.5,14.5 - parent: 1 - type: Transform -- uid: 17473 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17474 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17475 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17476 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17477 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17478 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17479 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -22.5,10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17480 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -27.5,10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17481 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -23.5,10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17482 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -29.5,8.5 - parent: 1 - type: Transform - - devices: - - 5669 - - 5670 - type: DeviceList -- uid: 17483 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -21.5,9.5 - parent: 1 - type: Transform - - devices: - - 5669 - - 5670 - - 17481 - - 17480 - - 17468 - - 17484 - type: DeviceList -- uid: 17484 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: -31.5,2.5 - parent: 1 - type: Transform -- uid: 17485 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: -31.5,25.5 - parent: 1 - type: Transform -- uid: 17486 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -33.5,28.5 - parent: 1 - type: Transform - - devices: - - 5677 - - 5678 - - 5679 - - 5838 - - 5837 - - 5836 - - 15830 - - 15827 - - 15828 - - 15829 - - 15826 - - 15831 - - 17387 - - 17472 - type: DeviceList -- uid: 17487 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -33.5,32.5 - parent: 1 - type: Transform - - devices: - - 5677 - - 5678 - - 5679 - - 5838 - - 5837 - - 5836 - type: DeviceList -- uid: 17488 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -33.5,18.5 - parent: 1 - type: Transform -- uid: 17489 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -35.5,26.5 - parent: 1 - type: Transform - - devices: - - 5832 - - 5831 - - 15680 - - 15681 - - 17379 - type: DeviceList -- uid: 17490 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -36.5,18.5 - parent: 1 - type: Transform - - devices: - - 5832 - - 5831 - type: DeviceList -- uid: 17491 - type: SolarTracker - components: - - pos: 6.5,-71.5 - parent: 1 - type: Transform -- uid: 17492 - type: AirAlarm - components: - - pos: -45.5,16.5 - parent: 1 - type: Transform - - devices: - - 5674 - - 5675 - - 5676 - - 5824 - - 5832 - - 5831 - - 15668 - - 15669 - - 17472 - type: DeviceList -- uid: 17493 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -38.5,12.5 - parent: 1 - type: Transform - - devices: - - 5674 - - 5675 - - 5676 - - 5824 - - 5832 - - 5831 - type: DeviceList -- uid: 17494 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -41.5,8.5 - parent: 1 - type: Transform - - devices: - - 5821 - - 5822 - - 5823 - - 6656 - - 6667 - - 5825 - - 5824 - - 15710 - - 15757 - - 15701 - - 15700 - - 17484 - - 6650 - - 15743 - - 15742 - - 15728 - - 15729 - type: DeviceList -- uid: 17495 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -41.5,10.5 - parent: 1 - type: Transform - - devices: - - 5824 - - 5826 - - 5822 - - 5821 - - 5823 - - 6650 - - 6667 - - 6656 - - 5825 - type: DeviceList -- uid: 17496 - type: FireAlarm - components: - - pos: -34.5,8.5 - parent: 1 - type: Transform - - devices: - - 5817 - - 5818 - - 5819 - - 5820 - - 5823 - - 5822 - - 5821 - type: DeviceList -- uid: 17497 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -29.5,2.5 - parent: 1 - type: Transform - - devices: - - 5808 - - 5810 - - 5809 - - 5820 - - 5819 - - 5818 - - 5817 - - 5670 - - 5680 - - 5681 - - 5682 - - 6649 - - 6666 - - 15778 - - 15777 - - 15742 - - 15743 - - 15696 - - 15695 - - 15701 - - 15700 - - 17472 - - 17499 - type: DeviceList -- uid: 17498 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -29.5,0.5 - parent: 1 - type: Transform - - devices: - - 5808 - - 5810 - - 5809 - - 5820 - - 5819 - - 5818 - - 5817 - - 5670 - - 5680 - - 5681 - - 5682 - - 6649 - - 6666 - type: DeviceList -- uid: 17499 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 1 - type: Transform -- uid: 17500 - type: FireAlarm - components: - - pos: -25.5,-6.5 - parent: 1 - type: Transform - - devices: - - 9431 - - 9430 - - 9429 - - 5809 - - 5810 - - 5808 - type: DeviceList -- uid: 17501 - type: AirAlarm - components: - - pos: -27.5,-6.5 - parent: 1 - type: Transform - - devices: - - 9431 - - 9430 - - 9429 - - 5809 - - 5810 - - 5808 - - 15775 - - 15776 - - 17484 - - 17502 - type: DeviceList -- uid: 17502 - type: AirSensor - components: - - pos: -17.5,-8.5 - parent: 1 - type: Transform -- uid: 17503 - type: FireAlarm - components: - - pos: -18.5,-6.5 - parent: 1 - type: Transform - - devices: - - 9429 - - 9430 - - 9431 - - 5619 - - 800 - - 797 - type: DeviceList -- uid: 17504 - type: AirAlarm - components: - - pos: -16.5,-6.5 - parent: 1 - type: Transform - - devices: - - 9429 - - 9430 - - 9431 - - 5619 - - 800 - - 797 - - 15774 - - 15773 - - 14570 - - 14569 - - 14571 - - 14572 - - 17505 - - 17499 - type: DeviceList -- uid: 17505 - type: AirSensor - components: - - pos: -0.5,-7.5 - parent: 1 - type: Transform -- uid: 17506 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -7.5,-10.5 - parent: 1 - type: Transform - - devices: - - 797 - - 800 - - 5619 - - 5765 - - 5766 - - 5746 - - 5747 - - 5748 - - 5757 - - 5758 - - 5759 - - 5760 - - 5749 - - 5750 - - 5753 - - 5754 - - 5755 - - 5756 - - 5628 - - 5627 - - 5626 - - 5768 - - 5767 - - 5789 - - 5788 - - 5787 - type: DeviceList -- uid: 17507 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 6.5,-10.5 - parent: 1 - type: Transform - - devices: - - 797 - - 800 - - 5619 - - 5765 - - 5766 - - 5746 - - 5747 - - 5748 - - 5757 - - 5758 - - 5759 - - 5760 - - 5749 - - 5750 - - 5753 - - 5754 - - 5755 - - 5756 - - 5628 - - 5627 - - 5626 - - 5768 - - 5767 - - 5789 - - 5788 - - 5787 - - 14751 - - 14750 - - 17509 - - 17510 - - 17511 - - 17469 - type: DeviceList -- uid: 17508 - type: FireAlarm - components: - - pos: 7.5,-6.5 - parent: 1 - type: Transform - - devices: - - 797 - - 800 - - 5619 - - 5765 - - 5766 - - 5746 - - 5747 - - 5748 - - 5757 - - 5758 - - 5759 - - 5760 - - 5749 - - 5750 - - 5753 - - 5754 - - 5755 - - 5756 - - 5628 - - 5627 - - 5626 - - 5768 - - 5767 - - 5789 - - 5788 - - 5787 - type: DeviceList -- uid: 17509 - type: AirSensor - components: - - pos: -0.5,-11.5 - parent: 1 - type: Transform -- uid: 17510 - type: AirSensor - components: - - pos: -13.5,-13.5 - parent: 1 - type: Transform -- uid: 17511 - type: AirSensor - components: - - pos: 12.5,-13.5 - parent: 1 - type: Transform -- uid: 17512 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -1.5,-14.5 - parent: 1 - type: Transform - - devices: - - 5746 - - 5747 - - 5748 - - 5749 - - 5750 - - 5753 - - 5754 - - 5755 - - 5756 - - 5763 - - 5764 - - 5761 - - 5762 - type: DeviceList -- uid: 17513 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 1 - type: Transform - - devices: - - 5746 - - 5747 - - 5748 - - 5749 - - 5750 - - 5753 - - 5754 - - 5755 - - 5756 - - 5763 - - 5764 - - 5761 - - 5762 - - 2774 - - 14225 - - 17505 - - 17510 - - 17511 - type: DeviceList -- uid: 17514 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 9.5,2.5 - parent: 1 - type: Transform - - devices: - - 5789 - - 5788 - - 5787 - - 9048 - - 5785 - - 5784 - - 5783 - - 9014 - - 9013 - - 9049 - type: DeviceList -- uid: 17515 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 9.5,1.5 - parent: 1 - type: Transform - - devices: - - 5789 - - 5788 - - 5787 - - 9048 - - 5785 - - 5784 - - 5783 - - 9014 - - 9013 - - 9049 - - 14718 - - 14720 - type: DeviceList -- uid: 17516 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 12.5,10.5 - parent: 1 - type: Transform - - devices: - - invalid - - 8926 - - 9014 - - 9013 - - 9049 - - 555 - - 18237 - - 18238 - type: DeviceList -- uid: 17517 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 1 - type: Transform - - devices: - - invalid - - 8926 - - 9014 - - 9013 - - 9049 - - 14749 - - 14748 - - 17469 - - 17434 - type: DeviceList -- uid: 17518 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 22.5,4.5 - parent: 1 - type: Transform - - devices: - - 5791 - - 5790 - - 5792 - - 17520 - type: DeviceList -- uid: 17519 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 22.5,6.5 - parent: 1 - type: Transform - - devices: - - 5791 - - 5790 - - 5792 - - 17520 - - 14840 - - 14841 - - 14857 - - 14856 - - 17428 - type: DeviceList -- uid: 17520 - type: FirelockGlass - components: - - pos: 28.5,10.5 - parent: 1 - type: Transform -- uid: 17521 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 1 - type: Transform - - devices: - - 5719 - - 5720 - - 5721 - - 17520 - - 5792 - - 5790 - - 5807 - - 5806 - - 5805 - - 14827 - - 14826 - - 14815 - - 14816 - - 14844 - - 14842 - - 17422 - - 17524 - type: DeviceList -- uid: 17522 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-2.5 - parent: 1 - type: Transform - - devices: - - 5719 - - 5720 - - 5721 - - 17520 - - 5792 - - 5790 - - 5807 - - 5806 - - 5805 - type: DeviceList -- uid: 17523 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 33.5,8.5 - parent: 1 - type: Transform - - devices: - - 5719 - - 5720 - - 5721 - - 17520 - - 5792 - - 5790 - - 5807 - - 5806 - - 5805 - type: DeviceList -- uid: 17524 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 1 - type: Transform -- uid: 17525 - type: AirAlarm - components: - - pos: 43.5,-6.5 - parent: 1 - type: Transform - - devices: - - 5800 - - 5799 - - 5798 - - 14792 - - 14793 - - 17524 - type: DeviceList -- uid: 17526 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 40.5,-10.5 - parent: 1 - type: Transform - - devices: - - 5800 - - 5799 - - 5798 - type: DeviceList -- uid: 17527 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 32.5,-10.5 - parent: 1 - type: Transform - - devices: - - 5800 - - 5799 - - 5798 - - 5807 - - 5806 - - 5805 - - 5793 - - 3584 - - 5795 - - 5796 - - 5797 - - 5801 - - 5802 - - 14772 - - 14771 - - 14807 - - 14808 - - 17529 - - 17530 - - 14761 - - 14760 - - 16358 - - 16359 - - 17428 - type: DeviceList -- uid: 17528 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 25.5,-10.5 - parent: 1 - type: Transform - - devices: - - 5800 - - 5799 - - 5798 - - 5807 - - 5806 - - 5805 - - 5793 - - 3584 - - 5795 - - 5796 - - 5797 - - 5801 - - 5802 - type: DeviceList -- uid: 17529 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: 47.5,-8.5 - parent: 1 - type: Transform -- uid: 17530 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: 15.5,-8.5 - parent: 1 - type: Transform -- uid: 17531 - type: FireAlarm - components: - - pos: 15.5,-6.5 - parent: 1 - type: Transform - - devices: - - 5628 - - 5627 - - 5626 - - 5795 - - 5796 - - 5797 - - 3458 - - 17533 - type: DeviceList -- uid: 17532 - type: AirAlarm - components: - - pos: 16.5,-6.5 - parent: 1 - type: Transform - - devices: - - 5628 - - 5627 - - 5626 - - 5795 - - 5796 - - 5797 - - 3458 - - 17533 - - 14298 - - 10903 - - 14286 - - 14285 - - 14295 - - 14296 - - 17524 - - 17505 - type: DeviceList -- uid: 17533 - type: Firelock - components: - - pos: 19.5,-6.5 - parent: 1 - type: Transform -- uid: 17534 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -9.5,-16.5 - parent: 1 - type: Transform - - devices: - - 5766 - - 5765 - - 5763 - - 5764 - - 7107 - - 7106 - - 2759 - - 2760 - - 17509 - - 17505 - - 2741 - - 2745 - type: DeviceList -- uid: 17535 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -14.5,-16.5 - parent: 1 - type: Transform - - devices: - - 5766 - - 5765 - - 5763 - - 5764 - - 7107 - - 7106 - type: DeviceList -- uid: 17536 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-34.5 - parent: 1 - type: Transform - - devices: - - 7106 - - 7108 - - 7109 - - 7166 - - 7173 - - 7174 - - 7175 - - 2737 - - 2740 - - 17510 - type: DeviceList -- uid: 17537 - type: FireAlarm - components: - - pos: -9.5,-20.5 - parent: 1 - type: Transform - - devices: - - 7106 - - 7108 - - 7109 - - 7166 - - 7173 - - 7174 - - 7175 - type: DeviceList -- uid: 17538 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-19.5 - parent: 1 - type: Transform - - devices: - - 7170 - type: DeviceList -- uid: 17539 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-19.5 - parent: 1 - type: Transform - - devices: - - 7170 - - invalid - - 17542 - type: DeviceList -- uid: 17540 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 13.5,-16.5 - parent: 1 - type: Transform - - devices: - - 5767 - - 5768 - - 5761 - - 5762 - - 7171 - - 7172 - type: DeviceList -- uid: 17541 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 9.5,-16.5 - parent: 1 - type: Transform - - devices: - - 5767 - - 5768 - - 5761 - - 5762 - - 7171 - - 7172 - - 14312 - - 14254 - - 17505 - - 17509 - - 17542 - - 14319 - - 14318 - type: DeviceList -- uid: 17542 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: 11.5,-23.5 - parent: 1 - type: Transform -- uid: 17543 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 1 - type: Transform - - devices: - - 7261 - - 7172 - - 7171 - - 7170 - - 7169 - - 9028 - - 9030 - - 9029 - - 11931 - - invalid - - 17545 - - 17546 - type: DeviceList -- uid: 17544 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-24.5 - parent: 1 - type: Transform - - devices: - - 7261 - - 7172 - - 7171 - - 7170 - - 7169 - - 9028 - - 9030 - - 9029 - type: DeviceList -- uid: 17545 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-19.5 - parent: 1 - type: Transform -- uid: 17546 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 1 - type: Transform -- uid: 17547 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-31.5 - parent: 1 - type: Transform - - devices: - - 9029 - - 9030 - - 9028 - - 7168 - - 7167 - - 7164 - - 7165 - - 7161 - - 7162 - - 7163 - type: DeviceList -- uid: 17548 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-30.5 - parent: 1 - type: Transform - - devices: - - 9029 - - 9030 - - 9028 - - 7168 - - 7167 - - 7164 - - 7165 - - 7161 - - 7162 - - 7163 - - invalid - - 14389 - - 17542 - type: DeviceList -- uid: 17553 - type: Intercom - components: - - pos: 47.5,16.5 - parent: 1 - type: Transform -- uid: 17554 - type: Intercom - components: - - rot: 3.141592653589793 rad - pos: 47.5,35.5 - parent: 1 - type: Transform -- uid: 17555 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: 24.5,40.5 - parent: 1 - type: Transform -- uid: 17556 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: 20.5,18.5 - parent: 1 - type: Transform -- uid: 17557 - type: Intercom - components: - - pos: -12.5,5.5 - parent: 1 - type: Transform -- uid: 17558 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -21.5,11.5 - parent: 1 - type: Transform -- uid: 17559 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -51.5,14.5 - parent: 1 - type: Transform -- uid: 17560 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -25.5,31.5 - parent: 1 - type: Transform -- uid: 17561 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -51.5,37.5 - parent: 1 - type: Transform -- uid: 17562 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: 8.5,69.5 - parent: 1 - type: Transform -- uid: 17563 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: 15.5,54.5 - parent: 1 - type: Transform -- uid: 17564 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: 35.5,2.5 - parent: 1 - type: Transform -- uid: 17565 - type: Intercom - components: - - pos: 27.5,7.5 - parent: 1 - type: Transform -- uid: 17566 - type: IntercomSecurity - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 - parent: 1 - type: Transform -- uid: 17567 - type: IntercomEngineering - components: - - rot: 3.141592653589793 rad - pos: 5.5,-14.5 - parent: 1 - type: Transform -- uid: 17568 - type: IntercomEngineering - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 1 - type: Transform -- uid: 17569 - type: IntercomCommand - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 1 - type: Transform -- uid: 17570 - type: IntercomEngineering - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-34.5 - parent: 1 - type: Transform -- uid: 17571 - type: IntercomEngineering - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-37.5 - parent: 1 - type: Transform -- uid: 17572 - type: IntercomEngineering - components: - - rot: 3.141592653589793 rad - pos: -6.5,-14.5 - parent: 1 - type: Transform -- uid: 17573 - type: IntercomEngineering - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-46.5 - parent: 1 - type: Transform -- uid: 17574 - type: IntercomService - components: - - rot: -1.5707963267948966 rad - pos: 9.5,3.5 - parent: 1 - type: Transform -- uid: 17575 - type: IntercomService - components: - - pos: -7.5,9.5 - parent: 1 - type: Transform -- uid: 17576 - type: IntercomService - components: - - rot: -1.5707963267948966 rad - pos: 16.5,10.5 - parent: 1 - type: Transform -- uid: 17577 - type: IntercomService - components: - - pos: -25.5,4.5 - parent: 1 - type: Transform -- uid: 17578 - type: IntercomEngineering - components: - - rot: 3.141592653589793 rad - pos: -21.5,-19.5 - parent: 1 - type: Transform -- uid: 17579 - type: IntercomSupply - components: - - pos: -36.5,8.5 - parent: 1 - type: Transform -- uid: 17580 - type: IntercomSupply - components: - - rot: 1.5707963267948966 rad - pos: -37.5,11.5 - parent: 1 - type: Transform -- uid: 17581 - type: IntercomSupply - components: - - rot: 3.141592653589793 rad - pos: -42.5,-3.5 - parent: 1 - type: Transform -- uid: 17582 - type: IntercomCommand - components: - - rot: -1.5707963267948966 rad - pos: -41.5,11.5 - parent: 1 - type: Transform -- uid: 17583 - type: IntercomSupply - components: - - rot: -1.5707963267948966 rad - pos: -36.5,22.5 - parent: 1 - type: Transform -- uid: 17584 - type: IntercomSupply - components: - - rot: -1.5707963267948966 rad - pos: -42.5,24.5 - parent: 1 - type: Transform -- uid: 17585 - type: IntercomSupply - components: - - pos: -38.5,16.5 - parent: 1 - type: Transform -- uid: 17586 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -39.5,17.5 - parent: 1 - type: Transform -- uid: 17587 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -35.5,11.5 - parent: 1 - type: Transform -- uid: 17588 - type: IntercomScience - components: - - pos: -14.5,21.5 - parent: 1 - type: Transform -- uid: 17589 - type: IntercomScience - components: - - rot: 1.5707963267948966 rad - pos: -21.5,35.5 - parent: 1 - type: Transform -- uid: 17590 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,34.5 - parent: 1 - type: Transform -- uid: 17591 - type: IntercomScience - components: - - rot: 1.5707963267948966 rad - pos: -6.5,20.5 - parent: 1 - type: Transform -- uid: 17592 - type: IntercomScience - components: - - rot: 1.5707963267948966 rad - pos: -12.5,33.5 - parent: 1 - type: Transform -- uid: 17593 - type: IntercomCommand - components: - - rot: 3.141592653589793 rad - pos: -24.5,18.5 - parent: 1 - type: Transform -- uid: 17594 - type: IntercomMedical - components: - - rot: -1.5707963267948966 rad - pos: 5.5,20.5 - parent: 1 - type: Transform -- uid: 17595 - type: IntercomMedical - components: - - pos: 13.5,21.5 - parent: 1 - type: Transform -- uid: 17596 - type: IntercomMedical - components: - - rot: 3.141592653589793 rad - pos: 6.5,21.5 - parent: 1 - type: Transform -- uid: 17597 - type: IntercomMedical - components: - - rot: -1.5707963267948966 rad - pos: 5.5,27.5 - parent: 1 - type: Transform -- uid: 17598 - type: IntercomCommand - components: - - rot: -1.5707963267948966 rad - pos: 17.5,33.5 - parent: 1 - type: Transform -- uid: 17599 - type: IntercomMedical - components: - - rot: 1.5707963267948966 rad - pos: 17.5,27.5 - parent: 1 - type: Transform -- uid: 17600 - type: IntercomService - components: - - rot: -1.5707963267948966 rad - pos: 35.5,46.5 - parent: 1 - type: Transform -- uid: 17601 - type: IntercomSecurity - components: - - rot: -1.5707963267948966 rad - pos: 45.5,41.5 - parent: 1 - type: Transform -- uid: 17602 - type: IntercomSecurity - components: - - rot: -1.5707963267948966 rad - pos: 44.5,49.5 - parent: 1 - type: Transform -- uid: 17603 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: 13.5,43.5 - parent: 1 - type: Transform -- uid: 17604 - type: IntercomSecurity - components: - - rot: -1.5707963267948966 rad - pos: -26.5,45.5 - parent: 1 - type: Transform -- uid: 17605 - type: IntercomSecurity - components: - - pos: -4.5,55.5 - parent: 1 - type: Transform -- uid: 17606 - type: IntercomSecurity - components: - - rot: 3.141592653589793 rad - pos: -10.5,51.5 - parent: 1 - type: Transform -- uid: 17607 - type: IntercomCommand - components: - - pos: -15.5,61.5 - parent: 1 - type: Transform -- uid: 17608 - type: IntercomSecurity - components: - - rot: 3.141592653589793 rad - pos: -5.5,58.5 - parent: 1 - type: Transform -- uid: 17609 - type: IntercomSecurity - components: - - rot: -1.5707963267948966 rad - pos: -14.5,41.5 - parent: 1 - type: Transform -- uid: 17610 - type: IntercomCommand - components: - - pos: 4.5,75.5 - parent: 1 - type: Transform -- uid: 17611 - type: IntercomCommand - components: - - rot: -1.5707963267948966 rad - pos: 6.5,81.5 - parent: 1 - type: Transform -- uid: 17612 - type: SignalButtonWindows - components: - - rot: -1.5707963267948966 rad - pos: -4.5,73.5 - parent: 1 - type: Transform -- uid: 17613 - type: FaxMachineBase - components: - - pos: 5.5,73.5 - parent: 1 - type: Transform - - name: Bridge - type: FaxMachine -- uid: 17614 - type: SoapOmega - components: - - pos: 7.506346,46.726536 - parent: 1 - type: Transform -- uid: 17615 - type: SyringeSpaceacillin - components: - - pos: 7.474396,33.593372 - parent: 1 - type: Transform -- uid: 17616 - type: BookEscalationSecurity - components: - - pos: -26.365288,7.1252666 - parent: 1 - type: Transform -- uid: 17617 - type: WarpPoint - components: - - pos: 10.5,26.5 - parent: 1 - type: Transform - - location: Medbay - type: WarpPoint -- uid: 17618 - type: WarpPoint - components: - - pos: -16.5,25.5 - parent: 1 - type: Transform - - location: Science - type: WarpPoint -- uid: 17619 - type: WarpPoint - components: - - pos: -37.5,24.5 - parent: 1 - type: Transform - - location: Salvage - type: WarpPoint -- uid: 17620 - type: WarpPoint - components: - - pos: -38.5,3.5 - parent: 1 - type: Transform - - location: Cargo - type: WarpPoint -- uid: 17621 - type: WarpPoint - components: - - pos: -0.5,2.5 - parent: 1 - type: Transform - - location: Bar - type: WarpPoint -- uid: 17622 - type: WarpPoint - components: - - pos: -8.5,-26.5 - parent: 1 - type: Transform - - location: Atmos - type: WarpPoint -- uid: 17623 - type: WarpPoint - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform - - location: Engineering - type: WarpPoint -- uid: 17624 - type: WarpPoint - components: - - pos: 32.5,25.5 - parent: 1 - type: Transform - - location: Evac - type: WarpPoint -- uid: 17625 - type: WarpPoint - components: - - pos: 31.5,46.5 - parent: 1 - type: Transform - - location: Chapel - type: WarpPoint -- uid: 17626 - type: AltarSpawner - components: - - pos: 31.5,47.5 - parent: 1 - type: Transform -- uid: 17627 - type: WarpPoint - components: - - pos: 4.5,46.5 - parent: 1 - type: Transform - - location: Vault - type: WarpPoint -- uid: 17628 - type: WarpPoint - components: - - pos: -13.5,48.5 - parent: 1 - type: Transform - - location: Security - type: WarpPoint -- uid: 17629 - type: WarpPoint - components: - - pos: 10.5,58.5 - parent: 1 - type: Transform - - location: Courtroom - type: WarpPoint -- uid: 17630 - type: WarpPoint - components: - - pos: -0.5,79.5 - parent: 1 - type: Transform - - location: Bridge - type: WarpPoint -- uid: 17631 - type: ShuttersNormalOpen - components: - - pos: 8.5,-24.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9170 - type: SignalReceiver -- uid: 17632 - type: ShuttersNormalOpen - components: - - pos: 6.5,-27.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9170 - type: SignalReceiver -- uid: 17633 - type: ShuttersNormalOpen - components: - - pos: 7.5,-27.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9170 - type: SignalReceiver -- uid: 17634 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: -39.5,-3.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6653 - - port: Toggle - uid: 5828 - type: SignalTransmitter -- uid: 17635 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: -44.5,4.5 - parent: 1 - type: Transform -- uid: 17636 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: -44.5,2.5 - parent: 1 - type: Transform -- uid: 17637 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: -53.5,36.5 - parent: 1 - type: Transform -- uid: 17638 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: -53.5,38.5 - parent: 1 - type: Transform -- uid: 17639 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: -53.5,15.5 - parent: 1 - type: Transform -- uid: 17640 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: -53.5,13.5 - parent: 1 - type: Transform -- uid: 17641 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: -53.5,-7.5 - parent: 1 - type: Transform -- uid: 17642 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: -53.5,-8.5 - parent: 1 - type: Transform -- uid: 17643 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: -53.5,-9.5 - parent: 1 - type: Transform -- uid: 17644 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: -49.5,-12.5 - parent: 1 - type: Transform -- uid: 17645 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: -48.5,-12.5 - parent: 1 - type: Transform -- uid: 17646 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: -47.5,-12.5 - parent: 1 - type: Transform -- uid: 17647 - type: SignalButton - components: - - pos: 25.5,7.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9281 - - port: Toggle - uid: 9280 - - port: Toggle - uid: 9279 - - port: Toggle - uid: 9278 - type: SignalTransmitter -- uid: 17648 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-26.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 4205 - type: SignalTransmitter - - type: ItemCooldown -- uid: 17649 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: 17.5,-38.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 3066 - type: SignalTransmitter - - type: ItemCooldown -- uid: 17650 - type: Poweredlight - components: - - pos: 9.5,-43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17651 - type: Poweredlight - components: - - pos: -10.5,-43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17652 - type: SolarTracker - components: - - pos: -7.5,-71.5 - parent: 1 - type: Transform -- uid: 17653 - type: ClothingNeckCloakMiner - components: - - pos: -44.542686,34.539337 - parent: 1 - type: Transform -- uid: 17654 - type: OxygenCanister - components: - - pos: 11.5,-41.5 - parent: 1 - type: Transform -- uid: 17655 - type: FloraTree02 - components: - - pos: 21.618893,21.654818 - parent: 1 - type: Transform -- uid: 17656 - type: FloraTreeStump - components: - - pos: 23.131063,21.378092 - parent: 1 - type: Transform -- uid: 17657 - type: FloraTree05 - components: - - pos: 27.071226,18.057373 - parent: 1 - type: Transform -- uid: 17658 - type: RandomArtifactSpawner - components: - - pos: -6.5,29.5 - parent: 1 - type: Transform -- uid: 17659 - type: RandomArtifactSpawner - components: - - pos: -5.5,34.5 - parent: 1 - type: Transform -- uid: 17660 - type: RandomSnacks - components: - - pos: 41.5,36.5 - parent: 1 - type: Transform -- uid: 17661 - type: RandomFoodSingle - components: - - pos: -8.5,36.5 - parent: 1 - type: Transform -- uid: 17662 - type: RandomFoodMeal - components: - - pos: -32.5,31.5 - parent: 1 - type: Transform -- uid: 17663 - type: RandomSnacks - components: - - pos: -20.5,15.5 - parent: 1 - type: Transform -- uid: 17664 - type: RandomFoodBakedSingle - components: - - pos: 44.5,41.5 - parent: 1 - type: Transform -- uid: 17665 - type: RandomFoodBakedWhole - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform -- uid: 17666 - type: RandomFoodMeal - components: - - pos: 4.5,-1.5 - parent: 1 - type: Transform -- uid: 17667 - type: RandomSnacks - components: - - pos: -37.5,7.5 - parent: 1 - type: Transform -- uid: 17668 - type: RandomSpawner - components: - - pos: -34.5,21.5 - parent: 1 - type: Transform -- uid: 17669 - type: RandomSpawner - components: - - pos: -39.5,32.5 - parent: 1 - type: Transform -- uid: 17670 - type: RandomSpawner - components: - - pos: -48.5,43.5 - parent: 1 - type: Transform -- uid: 17671 - type: RandomSpawner - components: - - pos: -25.5,38.5 - parent: 1 - type: Transform -- uid: 17672 - type: RandomSpawner - components: - - pos: -30.5,45.5 - parent: 1 - type: Transform -- uid: 17673 - type: RandomSpawner - components: - - pos: -35.5,53.5 - parent: 1 - type: Transform -- uid: 17674 - type: RandomSpawner - components: - - pos: -38.5,45.5 - parent: 1 - type: Transform -- uid: 17675 - type: RandomSpawner - components: - - pos: -28.5,57.5 - parent: 1 - type: Transform -- uid: 17676 - type: RandomSpawner - components: - - pos: -24.5,54.5 - parent: 1 - type: Transform -- uid: 17677 - type: RandomSpawner - components: - - pos: -17.5,63.5 - parent: 1 - type: Transform -- uid: 17678 - type: RandomSpawner - components: - - pos: -4.5,67.5 - parent: 1 - type: Transform -- uid: 17679 - type: RandomSpawner - components: - - pos: 11.5,69.5 - parent: 1 - type: Transform -- uid: 17680 - type: RandomSpawner - components: - - pos: 17.5,59.5 - parent: 1 - type: Transform -- uid: 17681 - type: RandomSpawner - components: - - pos: 30.5,52.5 - parent: 1 - type: Transform -- uid: 17682 - type: RandomSpawner - components: - - pos: 20.5,36.5 - parent: 1 - type: Transform -- uid: 17683 - type: RandomSpawner - components: - - pos: 44.5,38.5 - parent: 1 - type: Transform -- uid: 17684 - type: RandomSpawner - components: - - pos: 32.5,28.5 - parent: 1 - type: Transform -- uid: 17685 - type: RandomSpawner - components: - - pos: 22.5,18.5 - parent: 1 - type: Transform -- uid: 17687 - type: RandomSpawner - components: - - pos: 14.5,-8.5 - parent: 1 - type: Transform -- uid: 17688 - type: RandomSpawner - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform -- uid: 17689 - type: RandomDrinkGlass - components: - - pos: -22.5,-7.5 - parent: 1 - type: Transform -- uid: 17690 - type: RandomSpawner - components: - - pos: -47.5,-7.5 - parent: 1 - type: Transform -- uid: 17691 - type: RandomSpawner - components: - - pos: -49.5,-8.5 - parent: 1 - type: Transform -- uid: 17692 - type: RandomSpawner - components: - - pos: -35.5,-13.5 - parent: 1 - type: Transform -- uid: 17693 - type: RandomSpawner - components: - - pos: -27.5,-21.5 - parent: 1 - type: Transform -- uid: 17694 - type: RandomSpawner - components: - - pos: -15.5,-37.5 - parent: 1 - type: Transform -- uid: 17695 - type: RandomSpawner - components: - - pos: 17.5,-35.5 - parent: 1 - type: Transform -- uid: 17696 - type: RandomSpawner - components: - - pos: 17.5,-34.5 - parent: 1 - type: Transform -- uid: 17697 - type: RandomSpawner - components: - - pos: 18.5,-40.5 - parent: 1 - type: Transform -- uid: 17698 - type: RandomSpawner - components: - - pos: 20.5,-39.5 - parent: 1 - type: Transform -- uid: 17699 - type: RandomSpawner - components: - - pos: 21.5,-37.5 - parent: 1 - type: Transform -- uid: 17700 - type: RandomSpawner - components: - - pos: 23.5,-25.5 - parent: 1 - type: Transform -- uid: 17701 - type: RandomSpawner - components: - - pos: 37.5,-14.5 - parent: 1 - type: Transform -- uid: 17702 - type: RandomSpawner - components: - - pos: 25.5,-0.5 - parent: 1 - type: Transform -- uid: 17703 - type: RandomSpawner - components: - - pos: 26.5,-2.5 - parent: 1 - type: Transform -- uid: 17704 - type: MaintenanceFluffSpawner - components: - - pos: -30.5,6.5 - parent: 1 - type: Transform -- uid: 17705 - type: MaintenanceFluffSpawner - components: - - pos: -32.5,30.5 - parent: 1 - type: Transform -- uid: 17706 - type: MaintenanceFluffSpawner - components: - - pos: -45.5,38.5 - parent: 1 - type: Transform -- uid: 17707 - type: MaintenanceFluffSpawner - components: - - pos: -6.5,36.5 - parent: 1 - type: Transform -- uid: 17708 - type: MaintenanceFluffSpawner - components: - - pos: 45.5,39.5 - parent: 1 - type: Transform -- uid: 17709 - type: MaintenanceFluffSpawner - components: - - pos: -1.5,26.5 - parent: 1 - type: Transform -- uid: 17710 - type: MaintenanceFluffSpawner - components: - - pos: 26.5,13.5 - parent: 1 - type: Transform -- uid: 17711 - type: MaintenanceFluffSpawner - components: - - pos: -1.5,-13.5 - parent: 1 - type: Transform -- uid: 17712 - type: ClothingNeckLGBTPin - components: - - pos: 14.597307,15.443957 - parent: 1 - type: Transform -- uid: 17713 - type: ClothingNeckAromanticPin - components: - - pos: 43.669888,38.451065 - parent: 1 - type: Transform -- uid: 17714 - type: ClothingNeckAsexualPin - components: - - pos: 1.4304651,57.357273 - parent: 1 - type: Transform -- uid: 17715 - type: ClothingNeckBisexualPin - components: - - pos: -44.6231,38.434673 - parent: 1 - type: Transform -- uid: 17716 - type: TableReinforcedGlass - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-4.5 - parent: 1 - type: Transform -- uid: 17717 - type: ClothingNeckLesbianPin - components: - - pos: -16.415733,-15.699648 - parent: 1 - type: Transform -- uid: 17718 - type: ClothingNeckNonBinaryPin - components: - - pos: 27.622953,-1.5417068 - parent: 1 - type: Transform -- uid: 17719 - type: ClothingNeckPansexualPin - components: - - pos: 21.441319,19.536022 - parent: 1 - type: Transform -- uid: 17720 - type: ClothingNeckTransPin - components: - - pos: 19.415567,41.43221 - parent: 1 - type: Transform -- uid: 17721 - type: ClothingNeckTransPin - components: - - pos: -4.304539,54.705074 - parent: 1 - type: Transform -- uid: 17722 - type: PlushieBee - components: - - pos: 9.581463,59.56483 - parent: 1 - type: Transform -- uid: 17723 - type: PlushieSharkBlue - components: - - pos: 21.557299,40.40908 - parent: 1 - type: Transform -- uid: 17724 - type: PlushieSharkGrey - components: - - pos: 24.59281,-5.6428246 - parent: 1 - type: Transform -- uid: 17725 - type: PlushieLamp - components: - - pos: -51.39804,40.513123 - parent: 1 - type: Transform -- uid: 17726 - type: PlushieLizard - components: - - pos: -18.010359,27.487123 - parent: 1 - type: Transform -- uid: 17727 - type: PlushieNar - components: - - pos: 26.419394,52.54221 - parent: 1 - type: Transform -- uid: 17728 - type: PlushieNuke - components: - - pos: 5.0785303,45.68808 - parent: 1 - type: Transform -- uid: 17729 - type: PlushieSharkPink - components: - - pos: 24.515884,22.427027 - parent: 1 - type: Transform -- uid: 17730 - type: PlushieRatvar - components: - - pos: -16.502522,-42.49368 - parent: 1 - type: Transform -- uid: 17731 - type: PlushieSlime - components: - - pos: -30.556288,7.2912984 - parent: 1 - type: Transform -- uid: 17732 - type: PlushieSpaceLizard - components: - - pos: -0.54218626,85.39831 - parent: 1 - type: Transform -- uid: 17733 - type: PlushieVox - components: - - pos: -44.60638,-11.570459 - parent: 1 - type: Transform -- uid: 17734 - type: ClothingNeckCloakGoliathCloak - components: - - pos: 7.523013,47.61037 - parent: 1 - type: Transform -- uid: 17735 - type: ClothingHeadHatHoodGoliathCloak - components: - - pos: 7.560631,48.036102 - parent: 1 - type: Transform -- uid: 17736 - type: ClothingNeckCloakHerald - components: - - pos: 50.46923,40.362823 - parent: 1 - type: Transform -- uid: 17737 - type: BassGuitarInstrument - components: - - pos: 6.633194,-70.24802 - parent: 1 - type: Transform -- uid: 17739 - type: FoodSnackSus - components: - - pos: 27.402672,-19.487795 - parent: 1 - type: Transform -- uid: 17740 - type: FoodMeatBaconCooked - components: - - pos: 24.415808,-29.499893 - parent: 1 - type: Transform -- uid: 17741 - type: FoodPieBaklava - components: - - pos: -7.44179,-70.460884 - parent: 1 - type: Transform -- uid: 17742 - type: FoodFrozenCornuto - components: - - pos: -40.54875,81.53063 - parent: 1 - type: Transform -- uid: 17743 - type: FoodBakedPancakeBb - components: - - pos: -35.421543,-26.464243 - parent: 1 - type: Transform -- uid: 17744 - type: FoodBakedCannoli - components: - - pos: 14.449461,66.43389 - parent: 1 - type: Transform -- uid: 17745 - type: SignShipDock - components: - - rot: 3.141592653589793 rad - pos: 37.5,2.5 - parent: 1 - type: Transform -- uid: 17746 - type: FoodMealMemoryleek - components: - - pos: 47.57065,78.500336 - parent: 1 - type: Transform -- uid: 17747 - type: FoodMealMilkape - components: - - pos: -3.4239073,34.287933 - parent: 1 - type: Transform -- uid: 17749 - type: ClothingBeltHolster - components: - - pos: -15.469988,66.40932 - parent: 1 - type: Transform -- uid: 17750 - type: ClothingOuterVestWebMerc - components: - - pos: 20.426132,60.536144 - parent: 1 - type: Transform -- uid: 17751 - type: ClothingShoesBootsCombatFilled - components: - - pos: 34.459908,-27.393188 - parent: 1 - type: Transform -- uid: 17752 - type: MedkitCombatFilled - components: - - pos: -27.470833,-28.539835 - parent: 1 - type: Transform -- uid: 17753 - type: ClothingShoesSpaceNinja - components: - - pos: 15.335373,-42.41446 - parent: 1 - type: Transform -- uid: 17754 - type: WeaponRevolverDeckard - components: - - pos: 15.523123,-26.506323 - parent: 1 - type: Transform -- uid: 17755 - type: SyringeEphedrine - components: - - pos: -40.359406,48.047718 - parent: 1 - type: Transform -- uid: 17756 - type: RailingCornerSmall - components: - - pos: 20.5,-12.5 - parent: 1 - type: Transform -- uid: 17757 - type: SignSmoking - components: - - pos: 14.5,-29.5 - parent: 1 - type: Transform -- uid: 17758 - type: SignSmoking - components: - - pos: -14.5,-32.5 - parent: 1 - type: Transform -- uid: 17759 - type: ClothingHeadNurseHat - components: - - pos: 13.17942,19.795881 - parent: 1 - type: Transform -- uid: 17760 - type: ClothingHeadHatOutlawHat - components: - - pos: -18.557217,-21.471539 - parent: 1 - type: Transform -- uid: 17761 - type: ClothingUniformJumpskirtJanimaid - components: - - pos: -18.64241,-22.485422 - parent: 1 - type: Transform -- uid: 17762 - type: StatueVenusRed - components: - - pos: 35.5,-4.5 - parent: 1 - type: Transform -- uid: 17763 - type: StatueVenusBlue - components: - - pos: 35.5,10.5 - parent: 1 - type: Transform -- uid: 17764 - type: RailingCorner - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-3.5 - parent: 1 - type: Transform -- uid: 17765 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-4.5 - parent: 1 - type: Transform -- uid: 17766 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-5.5 - parent: 1 - type: Transform -- uid: 17767 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 35.5,-3.5 - parent: 1 - type: Transform -- uid: 17768 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-3.5 - parent: 1 - type: Transform -- uid: 17769 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 36.5,11.5 - parent: 1 - type: Transform -- uid: 17770 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 36.5,10.5 - parent: 1 - type: Transform -- uid: 17771 - type: RailingCorner - components: - - pos: 36.5,9.5 - parent: 1 - type: Transform -- uid: 17772 - type: MaintenanceFluffSpawner - components: - - pos: 32.5,23.5 - parent: 1 - type: Transform -- uid: 17773 - type: Railing - components: - - pos: 35.5,9.5 - parent: 1 - type: Transform -- uid: 17774 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: 34.5,9.5 - parent: 1 - type: Transform -- uid: 17775 - type: Catwalk - components: - - pos: -3.5,72.5 - parent: 1 - type: Transform -- uid: 17776 - type: Catwalk - components: - - pos: -3.5,73.5 - parent: 1 - type: Transform -- uid: 17777 - type: SignDirectionalEvac - components: - - pos: 1.5,65.5 - parent: 1 - type: Transform -- uid: 17778 - type: SignDirectionalSupply - components: - - pos: 1.5,65 - parent: 1 - type: Transform -- uid: 17779 - type: SignDirectionalEng - components: - - pos: 1.5,64.5 - parent: 1 - type: Transform -- uid: 17780 - type: SignDirectionalSec - components: - - pos: 1.5024469,65.24607 - parent: 1 - type: Transform -- uid: 17781 - type: SignDirectionalMed - components: - - pos: 1.5024469,64.74938 - parent: 1 - type: Transform -- uid: 17782 - type: SignDirectionalSci - components: - - pos: 1.5024469,65.749855 - parent: 1 - type: Transform -- uid: 17783 - type: SignDirectionalFood - components: - - pos: 1.5024469,64.25979 - parent: 1 - type: Transform -- uid: 17784 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: 1.5,39.5 - parent: 1 - type: Transform -- uid: 17785 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: 1.5,40 - parent: 1 - type: Transform -- uid: 17786 - type: SignDirectionalSci - components: - - pos: 1.5,40.5 - parent: 1 - type: Transform -- uid: 17787 - type: SignDirectionalMed - components: - - pos: 1.4998497,40.250824 - parent: 1 - type: Transform -- uid: 17788 - type: SignDirectionalSupply - components: - - pos: 1.4998497,39.754135 - parent: 1 - type: Transform -- uid: 17789 - type: SignDirectionalHop - components: - - rot: 1.5707963267948966 rad - pos: 1.4986358,39.25191 - parent: 1 - type: Transform -- uid: 17790 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 1.5,16.5 - parent: 1 - type: Transform -- uid: 17791 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: -2.5,16.5 - parent: 1 - type: Transform -- uid: 17792 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: 1.4961122,16.741375 - parent: 1 - type: Transform -- uid: 17793 - type: SignDirectionalEng - components: - - pos: 1.5032121,16.251781 - parent: 1 - type: Transform -- uid: 17794 - type: SignDirectionalSupply - components: - - rot: -1.5707963267948966 rad - pos: -2.5079443,16.755566 - parent: 1 - type: Transform -- uid: 17795 - type: SignDirectionalHop - components: - - rot: 1.5707963267948966 rad - pos: -2.5008452,16.251781 - parent: 1 - type: Transform -- uid: 17796 - type: SignDirectionalEng - components: - - pos: 1.5012997,40.742867 - parent: 1 - type: Transform -- uid: 17797 - type: SignDirectionalEng - components: - - pos: -29.5,17.5 - parent: 1 - type: Transform -- uid: 17798 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -29.5,17 - parent: 1 - type: Transform -- uid: 17799 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: -29.5,16.5 - parent: 1 - type: Transform -- uid: 17800 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: -29.49926,17.251825 - parent: 1 - type: Transform -- uid: 17801 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: -29.49926,16.75212 - parent: 1 - type: Transform -- uid: 17802 - type: SignDirectionalSalvage - components: - - rot: -1.5707963267948966 rad - pos: -33.5,16.5 - parent: 1 - type: Transform -- uid: 17803 - type: SignDirectionalSupply - components: - - pos: -29.492693,16.258232 - parent: 1 - type: Transform -- uid: 17804 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: -29.499792,17.748297 - parent: 1 - type: Transform -- uid: 17805 - type: SignCargo - components: - - rot: 3.141592653589793 rad - pos: -33.5,8.5 - parent: 1 - type: Transform -- uid: 17806 - type: SignDirectionalGravity - components: - - pos: -19.5,-10.5 - parent: 1 - type: Transform -- uid: 17807 - type: SignDirectionalJanitor - components: - - rot: 3.141592653589793 rad - pos: 18.5,-6.5 - parent: 1 - type: Transform -- uid: 17808 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-10.5 - parent: 1 - type: Transform -- uid: 17809 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-6.5 - parent: 1 - type: Transform -- uid: 17810 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: -29.5,-6 - parent: 1 - type: Transform -- uid: 17811 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: -29.496174,-6.248038 - parent: 1 - type: Transform -- uid: 17812 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: -29.496174,-6.737631 - parent: 1 - type: Transform -- uid: 17813 - type: SignDirectionalHop - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 1 - type: Transform -- uid: 17814 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 1.5,-10.5 - parent: 1 - type: Transform -- uid: 17815 - type: SignDirectionalMed - components: - - rot: 3.141592653589793 rad - pos: 1.5044566,-10.254558 - parent: 1 - type: Transform -- uid: 17816 - type: SignDirectionalSci - components: - - rot: 3.141592653589793 rad - pos: 1.5044566,-10.751246 - parent: 1 - type: Transform -- uid: 17817 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -2.4996006,-10.751246 - parent: 1 - type: Transform -- uid: 17818 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: -2.4996006,-10.254558 - parent: 1 - type: Transform -- uid: 17819 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-6.5 - parent: 1 - type: Transform -- uid: 17820 - type: SignDirectionalSupply - components: - - rot: -1.5707963267948966 rad - pos: 33.501915,-6.7516565 - parent: 1 - type: Transform -- uid: 17821 - type: SignDirectionalHop - components: - - rot: 3.141592653589793 rad - pos: 33.501915,-6.2549677 - parent: 1 - type: Transform -- uid: 17822 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 1 - type: Transform -- uid: 17823 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 29.50534,-6.2478724 - parent: 1 - type: Transform -- uid: 17824 - type: SignDirectionalMed - components: - - rot: 3.141592653589793 rad - pos: 29.50534,-6.7516565 - parent: 1 - type: Transform -- uid: 17825 - type: SignDirectionalSci - components: - - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 1 - type: Transform -- uid: 17826 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: 28.501215,-6.252189 - parent: 1 - type: Transform -- uid: 17827 - type: SignDirectionalFood - components: - - rot: -1.5707963267948966 rad - pos: 28.499456,-6.7559733 - parent: 1 - type: Transform -- uid: 17828 - type: SignDirectionalMed - components: - - rot: -1.5707963267948966 rad - pos: 29.5,12.5 - parent: 1 - type: Transform -- uid: 17829 - type: SignDirectionalSec - components: - - rot: -1.5707963267948966 rad - pos: 29.504549,12.753135 - parent: 1 - type: Transform -- uid: 17830 - type: SignDirectionalSci - components: - - rot: -1.5707963267948966 rad - pos: 29.504549,12.249351 - parent: 1 - type: Transform -- uid: 17831 - type: SignDirectionalSupply - components: - - rot: -1.5707963267948966 rad - pos: 33.5,12.5 - parent: 1 - type: Transform -- uid: 17832 - type: SignDirectionalEng - components: - - pos: 33.501507,12.256447 - parent: 1 - type: Transform -- uid: 17833 - type: SignDirectionalFood - components: - - rot: -1.5707963267948966 rad - pos: 33.501507,12.767326 - parent: 1 - type: Transform -- uid: 17834 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 33.5,16.5 - parent: 1 - type: Transform -- uid: 17835 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: 33.510975,16.238834 - parent: 1 - type: Transform -- uid: 17836 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: 33.510975,16.766766 - parent: 1 - type: Transform -- uid: 17837 - type: SignDirectionalHop - components: - - pos: 33.5,35.5 - parent: 1 - type: Transform -- uid: 17838 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: 33.50556,35.762794 - parent: 1 - type: Transform -- uid: 17839 - type: SignDirectionalSec - components: - - rot: -1.5707963267948966 rad - pos: 28.5,35.5 - parent: 1 - type: Transform -- uid: 17840 - type: SignDirectionalSupply - components: - - rot: -1.5707963267948966 rad - pos: 28.50573,35.759808 - parent: 1 - type: Transform -- uid: 17841 - type: SignDirectionalEng - components: - - pos: 33.496597,35.248928 - parent: 1 - type: Transform -- uid: 17842 - type: SignDirectionalMed - components: - - rot: -1.5707963267948966 rad - pos: 28.502005,35.256023 - parent: 1 - type: Transform -- uid: 17843 - type: SignDirectionalDorms - components: - - rot: 3.141592653589793 rad - pos: 13.5,39.5 - parent: 1 - type: Transform -- uid: 17844 - type: SignDirectionalWash - components: - - rot: 3.141592653589793 rad - pos: 24.5,39.5 - parent: 1 - type: Transform -- uid: 17845 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: 37.5,41.5 - parent: 1 - type: Transform -- uid: 17846 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: 37.5,51.5 - parent: 1 - type: Transform -- uid: 17847 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: -38.5,51.5 - parent: 1 - type: Transform -- uid: 17848 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: -44.5,44.5 - parent: 1 - type: Transform -- uid: 17849 - type: SignArmory - components: - - rot: 3.141592653589793 rad - pos: -7.5,58.5 - parent: 1 - type: Transform -- uid: 17850 - type: SignAtmos - components: - - rot: 3.141592653589793 rad - pos: -6.5,-10.5 - parent: 1 - type: Transform -- uid: 17851 - type: SignAtmosMinsky - components: - - rot: 3.141592653589793 rad - pos: -10.5,-16.5 - parent: 1 - type: Transform -- uid: 17852 - type: SignBar - components: - - rot: 3.141592653589793 rad - pos: -5.5,12.5 - parent: 1 - type: Transform -- uid: 17853 - type: SignBar - components: - - rot: 3.141592653589793 rad - pos: -5.5,-6.5 - parent: 1 - type: Transform -- uid: 17854 - type: SignChem - components: - - rot: 3.141592653589793 rad - pos: 7.5,26.5 - parent: 1 - type: Transform -- uid: 17855 - type: SignCloning - components: - - rot: 3.141592653589793 rad - pos: 12.5,29.5 - parent: 1 - type: Transform -- uid: 17856 - type: SignShipDock - components: - - rot: 3.141592653589793 rad - pos: 47.5,33.5 - parent: 1 - type: Transform -- uid: 17857 - type: SignShipDock - components: - - rot: 3.141592653589793 rad - pos: 52.5,37.5 - parent: 1 - type: Transform -- uid: 17858 - type: SignShipDock - components: - - rot: 3.141592653589793 rad - pos: 47.5,18.5 - parent: 1 - type: Transform -- uid: 17859 - type: SignShipDock - components: - - rot: 3.141592653589793 rad - pos: 52.5,14.5 - parent: 1 - type: Transform -- uid: 17860 - type: Poweredlight - components: - - pos: 22.5,-32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17863 - type: SignEngineering - components: - - rot: 3.141592653589793 rad - pos: 5.5,-10.5 - parent: 1 - type: Transform -- uid: 17864 - type: SignEngine - components: - - rot: 3.141592653589793 rad - pos: 8.5,-35.5 - parent: 1 - type: Transform -- uid: 17865 - type: SignFire - components: - - rot: 3.141592653589793 rad - pos: 1.5,-48.5 - parent: 1 - type: Transform -- uid: 17866 - type: SignFlammableMed - components: - - rot: 3.141592653589793 rad - pos: -2.5,-46.5 - parent: 1 - type: Transform -- uid: 17867 - type: SignFlammableMed - components: - - rot: 3.141592653589793 rad - pos: 1.5,-46.5 - parent: 1 - type: Transform -- uid: 17868 - type: SignFlammableMed - components: - - rot: 3.141592653589793 rad - pos: 1.5,-38.5 - parent: 1 - type: Transform -- uid: 17869 - type: SignFire - components: - - rot: 3.141592653589793 rad - pos: -2.5,-38.5 - parent: 1 - type: Transform -- uid: 17870 - type: SignFire - components: - - rot: 3.141592653589793 rad - pos: 1.5,-36.5 - parent: 1 - type: Transform -- uid: 17871 - type: SignFlammableMed - components: - - rot: 3.141592653589793 rad - pos: -2.5,-36.5 - parent: 1 - type: Transform -- uid: 17872 - type: SignHydro1 - components: - - rot: 3.141592653589793 rad - pos: 4.5,8.5 - parent: 1 - type: Transform -- uid: 17873 - type: SignLibrary - components: - - rot: 3.141592653589793 rad - pos: -29.5,9.5 - parent: 1 - type: Transform -- uid: 17874 - type: SignLibrary - components: - - rot: 3.141592653589793 rad - pos: -24.5,12.5 - parent: 1 - type: Transform -- uid: 17875 - type: SignMail - components: - - rot: 3.141592653589793 rad - pos: -34.5,12.5 - parent: 1 - type: Transform -- uid: 17876 - type: SignMinerDock - components: - - rot: 3.141592653589793 rad - pos: -42.5,27.5 - parent: 1 - type: Transform -- uid: 17877 - type: SignMorgue - components: - - rot: 3.141592653589793 rad - pos: 18.5,30.5 - parent: 1 - type: Transform -- uid: 17878 - type: SignRND - components: - - rot: 3.141592653589793 rad - pos: -2.5,20.5 - parent: 1 - type: Transform -- uid: 17879 - type: SignScience - components: - - rot: 3.141592653589793 rad - pos: -6.5,19.5 - parent: 1 - type: Transform -- uid: 17880 - type: SignRobo - components: - - rot: 3.141592653589793 rad - pos: -16.5,35.5 - parent: 1 - type: Transform -- uid: 17881 - type: SignRobo - components: - - rot: 3.141592653589793 rad - pos: -15.5,29.5 - parent: 1 - type: Transform -- uid: 17882 - type: SignScience1 - components: - - rot: 3.141592653589793 rad - pos: -22.5,25.5 - parent: 1 - type: Transform -- uid: 17883 - type: SignScience2 - components: - - rot: 3.141592653589793 rad - pos: -13.5,21.5 - parent: 1 - type: Transform -- uid: 17884 - type: SignSecureSmallRed - components: - - rot: 3.141592653589793 rad - pos: 1.5,48.5 - parent: 1 - type: Transform -- uid: 17885 - type: SignSecureSmallRed - components: - - rot: 3.141592653589793 rad - pos: 1.5,45.5 - parent: 1 - type: Transform -- uid: 17886 - type: SignShield - components: - - rot: 3.141592653589793 rad - pos: -2.5,49.5 - parent: 1 - type: Transform -- uid: 17887 - type: SignToolStorage - components: - - rot: 3.141592653589793 rad - pos: -29.5,32.5 - parent: 1 - type: Transform -- uid: 17888 - type: SignAnomaly - components: - - rot: 3.141592653589793 rad - pos: -11.5,26.5 - parent: 1 - type: Transform -- uid: 17889 - type: SignTelecomms - components: - - rot: 3.141592653589793 rad - pos: 17.5,-10.5 - parent: 1 - type: Transform -- uid: 17890 - type: SignSecureSmall - components: - - rot: 3.141592653589793 rad - pos: 20.5,-10.5 - parent: 1 - type: Transform -- uid: 17891 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 21.5,-13.5 - parent: 1 - type: Transform -- uid: 17892 - type: SignKiddiePlaque - components: - - rot: 1.5707963267948966 rad - pos: 5.5,44.5 - parent: 1 - type: Transform -- uid: 17893 - type: SignHead - components: - - rot: 1.5707963267948966 rad - pos: -6.5,75.5 - parent: 1 - type: Transform -- uid: 17894 - type: SignConference - components: - - rot: 1.5707963267948966 rad - pos: 4.5,69.5 - parent: 1 - type: Transform -- uid: 17895 - type: SignBridge - components: - - rot: 1.5707963267948966 rad - pos: -0.5,69.5 - parent: 1 - type: Transform -- uid: 17896 - type: SignBridge - components: - - rot: 1.5707963267948966 rad - pos: -0.5,75.5 - parent: 1 - type: Transform -- uid: 17897 - type: PlaqueAtmos - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-10.5 - parent: 1 - type: Transform -- uid: 17898 - type: PosterContrabandAtmosiaDeclarationIndependence - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-40.5 - parent: 1 - type: Transform -- uid: 17899 - type: PosterLegitBuild - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-32.5 - parent: 1 - type: Transform -- uid: 17900 - type: PosterContrabandBountyHunters - components: - - rot: 1.5707963267948966 rad - pos: 43.5,45.5 - parent: 1 - type: Transform -- uid: 17901 - type: PosterLegitDickGumshue - components: - - rot: 1.5707963267948966 rad - pos: 39.5,50.5 - parent: 1 - type: Transform -- uid: 17902 - type: PosterContrabandDonutCorp - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-4.5 - parent: 1 - type: Transform -- uid: 17903 - type: PosterContrabandHackingGuide - components: - - rot: 1.5707963267948966 rad - pos: -25.5,30.5 - parent: 1 - type: Transform -- uid: 17904 - type: PosterContrabandGreyTide - components: - - rot: 1.5707963267948966 rad - pos: -25.5,33.5 - parent: 1 - type: Transform -- uid: 17905 - type: PosterLegitJustAWeekAway - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 1 - type: Transform -- uid: 17906 - type: PosterContrabandMissingGloves - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-22.5 - parent: 1 - type: Transform -- uid: 17907 - type: PosterLegitNanotrasenLogo - components: - - rot: 1.5707963267948966 rad - pos: 8.5,62.5 - parent: 1 - type: Transform -- uid: 17908 - type: PosterLegitNanotrasenLogo - components: - - rot: 1.5707963267948966 rad - pos: 13.5,62.5 - parent: 1 - type: Transform -- uid: 17909 - type: PosterLegitNanotrasenLogo - components: - - rot: 1.5707963267948966 rad - pos: 7.5,78.5 - parent: 1 - type: Transform -- uid: 17910 - type: PosterLegitNanotrasenLogo - components: - - rot: 1.5707963267948966 rad - pos: -8.5,78.5 - parent: 1 - type: Transform -- uid: 17911 - type: PosterLegitPDAAd - components: - - rot: 1.5707963267948966 rad - pos: 26.5,2.5 - parent: 1 - type: Transform -- uid: 17912 - type: PosterLegitSafetyEyeProtection - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 1 - type: Transform -- uid: 17913 - type: PosterLegitSafetyInternals - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-37.5 - parent: 1 - type: Transform -- uid: 17914 - type: PosterLegitUeNo - components: - - rot: 1.5707963267948966 rad - pos: -36.5,29.5 - parent: 1 - type: Transform -- uid: 17915 - type: PosterContrabandVoteWeh - components: - - rot: 1.5707963267948966 rad - pos: -28.5,24.5 - parent: 1 - type: Transform -- uid: 17916 - type: PosterContrabandWehWatches - components: - - rot: 1.5707963267948966 rad - pos: -28.5,20.5 - parent: 1 - type: Transform -- uid: 17917 - type: PosterContrabandNuclearDeviceInformational - components: - - rot: 1.5707963267948966 rad - pos: 6.5,47.5 - parent: 1 - type: Transform -- uid: 17918 - type: PosterLegitLoveIan - components: - - rot: 1.5707963267948966 rad - pos: 24.5,8.5 - parent: 1 - type: Transform -- uid: 17919 - type: PosterLegitHighClassMartini - components: - - rot: 1.5707963267948966 rad - pos: -11.5,9.5 - parent: 1 - type: Transform -- uid: 17920 - type: PosterContrabandClown - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 1 - type: Transform -- uid: 17921 - type: PosterContrabandEnergySwords - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-1.5 - parent: 1 - type: Transform -- uid: 17922 - type: PosterLegitFoamForceAd - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 1 - type: Transform -- uid: 17923 - type: PosterLegitCleanliness - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-6.5 - parent: 1 - type: Transform -- uid: 17924 - type: PosterLegit12Gauge - components: - - rot: 1.5707963267948966 rad - pos: -8.5,65.5 - parent: 1 - type: Transform -- uid: 17925 - type: PosterLegitEnlist - components: - - rot: 1.5707963267948966 rad - pos: -3.5,63.5 - parent: 1 - type: Transform -- uid: 17926 - type: PosterContrabandAmbrosiaVulgaris - components: - - rot: 1.5707963267948966 rad - pos: 16.5,8.5 - parent: 1 - type: Transform -- uid: 17927 - type: PosterContrabandEAT - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 1 - type: Transform -- uid: 17928 - type: WallmountTelevision - components: - - pos: 27.5,24.5 - parent: 1 - type: Transform -- uid: 17929 - type: WallmountTelevision - components: - - rot: 3.141592653589793 rad - pos: 35.5,-10.5 - parent: 1 - type: Transform -- uid: 17930 - type: WallmountTelevision - components: - - pos: 39.5,39.5 - parent: 1 - type: Transform -- uid: 17931 - type: WallmountTelevision - components: - - pos: 10.5,39.5 - parent: 1 - type: Transform -- uid: 17932 - type: WallmountTelevision - components: - - pos: -26.5,39.5 - parent: 1 - type: Transform -- uid: 17933 - type: WallmountTelevision - components: - - rot: 1.5707963267948966 rad - pos: -2.5,45.5 - parent: 1 - type: Transform -- uid: 17934 - type: WallmountTelevision - components: - - rot: 3.141592653589793 rad - pos: 10.5,65.5 - parent: 1 - type: Transform -- uid: 17935 - type: WallmountTelevision - components: - - rot: 3.141592653589793 rad - pos: -8.5,12.5 - parent: 1 - type: Transform -- uid: 17936 - type: WallmountTelevision - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 1 - type: Transform -- uid: 17937 - type: WallmountTelevision - components: - - rot: 3.141592653589793 rad - pos: -24.5,-10.5 - parent: 1 - type: Transform -- uid: 17938 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -21.5,-6.5 - parent: 1 - type: Transform -- uid: 17939 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -30.5,-10.5 - parent: 1 - type: Transform -- uid: 17940 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -41.5,12.5 - parent: 1 - type: Transform -- uid: 17941 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -33.5,26.5 - parent: 1 - type: Transform -- uid: 17942 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -33.5,30.5 - parent: 1 - type: Transform -- uid: 17943 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -35.5,35.5 - parent: 1 - type: Transform -- uid: 17944 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -50.5,40.5 - parent: 1 - type: Transform -- uid: 17945 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -41.5,40.5 - parent: 1 - type: Transform -- uid: 17946 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -9.5,35.5 - parent: 1 - type: Transform -- uid: 17947 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -2.5,60.5 - parent: 1 - type: Transform -- uid: 17948 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -2.5,64.5 - parent: 1 - type: Transform -- uid: 17949 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 12.5,65.5 - parent: 1 - type: Transform -- uid: 17950 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 6.5,39.5 - parent: 1 - type: Transform -- uid: 17951 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 22.5,44.5 - parent: 1 - type: Transform -- uid: 17952 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 16.5,42.5 - parent: 1 - type: Transform -- uid: 17953 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 46.5,45.5 - parent: 1 - type: Transform -- uid: 17954 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 35.5,53.5 - parent: 1 - type: Transform -- uid: 17955 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 26.5,55.5 - parent: 1 - type: Transform -- uid: 17956 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 17.5,57.5 - parent: 1 - type: Transform -- uid: 17957 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 13.5,49.5 - parent: 1 - type: Transform -- uid: 17958 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: 8.5,44.5 - parent: 1 - type: Transform -- uid: 17959 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: 8.5,48.5 - parent: 1 - type: Transform -- uid: 17960 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: 4.5,42.5 - parent: 1 - type: Transform -- uid: 17961 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 22.5,23.5 - parent: 1 - type: Transform -- uid: 17962 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 17.5,21.5 - parent: 1 - type: Transform -- uid: 17963 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 23.5,25.5 - parent: 1 - type: Transform -- uid: 17964 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 28.5,1.5 - parent: 1 - type: Transform -- uid: 17965 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 28.5,8.5 - parent: 1 - type: Transform -- uid: 17966 - type: SignHead - components: - - rot: 3.141592653589793 rad - pos: 28.5,9.5 - parent: 1 - type: Transform -- uid: 17967 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 19.5,59.5 - parent: 1 - type: Transform -- uid: 17968 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 29.5,57.5 - parent: 1 - type: Transform -- uid: 17969 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 12.5,51.5 - parent: 1 - type: Transform -- uid: 17970 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 10.5,47.5 - parent: 1 - type: Transform -- uid: 17971 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 17.5,32.5 - parent: 1 - type: Transform -- uid: 17972 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 22.5,32.5 - parent: 1 - type: Transform -- uid: 17973 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: 17.5,25.5 - parent: 1 - type: Transform -- uid: 17974 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 20.5,9.5 - parent: 1 - type: Transform -- uid: 17975 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 19.5,6.5 - parent: 1 - type: Transform -- uid: 17976 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 15.5,-2.5 - parent: 1 - type: Transform -- uid: 17977 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: 20.5,3.5 - parent: 1 - type: Transform -- uid: 17978 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 26.5,-14.5 - parent: 1 - type: Transform -- uid: 17979 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 25.5,-17.5 - parent: 1 - type: Transform -- uid: 17980 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: 27.5,-21.5 - parent: 1 - type: Transform -- uid: 17981 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 23.5,-20.5 - parent: 1 - type: Transform -- uid: 17982 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: 20.5,-27.5 - parent: 1 - type: Transform -- uid: 17983 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 29.5,-25.5 - parent: 1 - type: Transform -- uid: 17984 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 16.5,-30.5 - parent: 1 - type: Transform -- uid: 17985 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 32.5,-16.5 - parent: 1 - type: Transform -- uid: 17986 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: 35.5,-16.5 - parent: 1 - type: Transform -- uid: 17987 - type: RandomPainting - components: - - rot: 3.141592653589793 rad - pos: 33.5,-21.5 - parent: 1 - type: Transform -- uid: 17988 - type: FloorTileItemLino - components: - - pos: 34.302074,-18.390522 - parent: 1 - type: Transform - - count: 20 - type: Stack -- uid: 17989 - type: FloorTileItemGold - components: - - pos: 45.45488,55.465294 - parent: 1 - type: Transform - - count: 20 - type: Stack -- uid: 17990 - type: PosterContrabandFunPolice - components: - - rot: 3.141592653589793 rad - pos: -17.5,39.5 - parent: 1 - type: Transform -- uid: 17991 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -20.5,52.5 - parent: 1 - type: Transform -- uid: 17992 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -4.5,51.5 - parent: 1 - type: Transform -- uid: 17993 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: -22.5,28.5 - parent: 1 - type: Transform -- uid: 17994 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -27.5,28.5 - parent: 1 - type: Transform -- uid: 17995 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -29.5,20.5 - parent: 1 - type: Transform -- uid: 17996 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -29.5,24.5 - parent: 1 - type: Transform -- uid: 17997 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -20.5,4.5 - parent: 1 - type: Transform -- uid: 17998 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -16.5,8.5 - parent: 1 - type: Transform -- uid: 17999 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: -13.5,7.5 - parent: 1 - type: Transform -- uid: 18000 - type: PosterBroken - components: - - rot: 3.141592653589793 rad - pos: -13.5,5.5 - parent: 1 - type: Transform -- uid: 18001 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 1 - type: Transform -- uid: 18002 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: -26.5,-1.5 - parent: 1 - type: Transform -- uid: 18003 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: -20.5,-0.5 - parent: 1 - type: Transform -- uid: 18004 - type: PosterLegitStateLaws - components: - - rot: 3.141592653589793 rad - pos: -20.5,-13.5 - parent: 1 - type: Transform -- uid: 18005 - type: PosterContrabandGreyTide - components: - - rot: 3.141592653589793 rad - pos: -21.5,-24.5 - parent: 1 - type: Transform -- uid: 18006 - type: PosterContrabandMissingGloves - components: - - rot: 3.141592653589793 rad - pos: -23.5,-24.5 - parent: 1 - type: Transform -- uid: 18007 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 18.5,-31.5 - parent: 1 - type: Transform -- uid: 18008 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -17.5,-36.5 - parent: 1 - type: Transform -- uid: 18009 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -20.5,-32.5 - parent: 1 - type: Transform -- uid: 18010 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -19.5,-28.5 - parent: 1 - type: Transform -- uid: 18011 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -30.5,-21.5 - parent: 1 - type: Transform -- uid: 18012 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -34.5,-18.5 - parent: 1 - type: Transform -- uid: 18013 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: -37.5,-15.5 - parent: 1 - type: Transform -- uid: 18014 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: -41.5,-10.5 - parent: 1 - type: Transform -- uid: 18015 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -44.5,-8.5 - parent: 1 - type: Transform -- uid: 18016 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -37.5,-8.5 - parent: 1 - type: Transform -- uid: 18017 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -35.5,0.5 - parent: 1 - type: Transform -- uid: 18018 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -37.5,8.5 - parent: 1 - type: Transform -- uid: 18019 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -36.5,19.5 - parent: 1 - type: Transform -- uid: 18020 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: -35.5,27.5 - parent: 1 - type: Transform -- uid: 18021 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: -36.5,32.5 - parent: 1 - type: Transform -- uid: 18022 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -37.5,44.5 - parent: 1 - type: Transform -- uid: 18023 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -37.5,47.5 - parent: 1 - type: Transform -- uid: 18024 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -30.5,50.5 - parent: 1 - type: Transform -- uid: 18025 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -35.5,50.5 - parent: 1 - type: Transform -- uid: 18026 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: -26.5,54.5 - parent: 1 - type: Transform -- uid: 18027 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: -34.5,51.5 - parent: 1 - type: Transform -- uid: 18028 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: -36.5,55.5 - parent: 1 - type: Transform -- uid: 18029 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -20.5,56.5 - parent: 1 - type: Transform -- uid: 18030 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -22.5,53.5 - parent: 1 - type: Transform -- uid: 18031 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -14.5,61.5 - parent: 1 - type: Transform -- uid: 18032 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -14.5,65.5 - parent: 1 - type: Transform -- uid: 18033 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: -11.5,64.5 - parent: 1 - type: Transform -- uid: 18034 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: -9.5,68.5 - parent: 1 - type: Transform -- uid: 18035 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -6.5,70.5 - parent: 1 - type: Transform -- uid: 18036 - type: PaintingEmpty - components: - - rot: 3.141592653589793 rad - pos: -4.5,72.5 - parent: 1 - type: Transform -- uid: 18037 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: 21.5,53.5 - parent: 1 - type: Transform -- uid: 18038 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: 17.5,54.5 - parent: 1 - type: Transform -- uid: 18039 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 23.5,48.5 - parent: 1 - type: Transform -- uid: 18040 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 18.5,51.5 - parent: 1 - type: Transform -- uid: 18041 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 26.5,42.5 - parent: 1 - type: Transform -- uid: 18042 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: 37.5,45.5 - parent: 1 - type: Transform -- uid: 18043 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 49.5,39.5 - parent: 1 - type: Transform -- uid: 18044 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 1 - type: Transform -- uid: 18045 - type: SignSpace - components: - - rot: 3.141592653589793 rad - pos: 35.5,0.5 - parent: 1 - type: Transform -- uid: 18046 - type: SignSpace - components: - - rot: 3.141592653589793 rad - pos: 50.5,14.5 - parent: 1 - type: Transform -- uid: 18047 - type: SignSpace - components: - - rot: 3.141592653589793 rad - pos: 44.5,16.5 - parent: 1 - type: Transform -- uid: 18048 - type: SignSpace - components: - - rot: 3.141592653589793 rad - pos: 50.5,37.5 - parent: 1 - type: Transform -- uid: 18049 - type: SignSpace - components: - - rot: 3.141592653589793 rad - pos: 38.5,56.5 - parent: 1 - type: Transform -- uid: 18050 - type: SignSpace - components: - - rot: 3.141592653589793 rad - pos: -39.5,56.5 - parent: 1 - type: Transform -- uid: 18051 - type: SignSpace - components: - - rot: 3.141592653589793 rad - pos: -51.5,39.5 - parent: 1 - type: Transform -- uid: 18052 - type: SignShipDock - components: - - rot: 3.141592653589793 rad - pos: -53.5,37.5 - parent: 1 - type: Transform -- uid: 18053 - type: SignSpace - components: - - rot: 3.141592653589793 rad - pos: -51.5,16.5 - parent: 1 - type: Transform -- uid: 18054 - type: SignShipDock - components: - - rot: 3.141592653589793 rad - pos: -53.5,14.5 - parent: 1 - type: Transform -- uid: 18055 - type: SignCargoDock - components: - - rot: 3.141592653589793 rad - pos: -53.5,-6.5 - parent: 1 - type: Transform -- uid: 18056 - type: SignCargoDock - components: - - rot: 3.141592653589793 rad - pos: -51.5,-12.5 - parent: 1 - type: Transform -- uid: 18057 - type: SignSpace - components: - - rot: 3.141592653589793 rad - pos: -51.5,-10.5 - parent: 1 - type: Transform -- uid: 18058 - type: SignSpace - components: - - rot: 3.141592653589793 rad - pos: -12.5,-42.5 - parent: 1 - type: Transform -- uid: 18059 - type: SignSpace - components: - - rot: 3.141592653589793 rad - pos: -12.5,-38.5 - parent: 1 - type: Transform -- uid: 18060 - type: SignSpace - components: - - rot: 3.141592653589793 rad - pos: 11.5,-42.5 - parent: 1 - type: Transform -- uid: 18061 - type: SignSpace - components: - - rot: 3.141592653589793 rad - pos: 11.5,-38.5 - parent: 1 - type: Transform -- uid: 18062 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18063 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18064 - type: CableApcExtension - components: - - pos: 16.5,-40.5 - parent: 1 - type: Transform -- uid: 18065 - type: Poweredlight - components: - - pos: 38.5,-19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18066 - type: CableApcExtension - components: - - pos: 21.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18067 - type: Poweredlight - components: - - pos: 33.5,-26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18068 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18069 - type: CableApcExtension - components: - - pos: -17.5,-40.5 - parent: 1 - type: Transform -- uid: 18070 - type: Poweredlight - components: - - pos: -24.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18071 - type: Poweredlight - components: - - pos: -37.5,-23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18072 - type: CableApcExtension - components: - - pos: -35.5,-19.5 - parent: 1 - type: Transform -- uid: 18073 - type: CableApcExtension - components: - - pos: -36.5,-19.5 - parent: 1 - type: Transform -- uid: 18074 - type: CableApcExtension - components: - - pos: -36.5,-20.5 - parent: 1 - type: Transform -- uid: 18075 - type: CableApcExtension - components: - - pos: -36.5,-21.5 - parent: 1 - type: Transform -- uid: 18076 - type: Poweredlight - components: - - pos: -44.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18077 - type: RandomPosterLegit - components: - - pos: -15.5,-12.5 - parent: 1 - type: Transform -- uid: 18078 - type: RandomPosterLegit - components: - - pos: -15.5,-17.5 - parent: 1 - type: Transform -- uid: 18079 - type: RandomPosterContraband - components: - - pos: -16.5,-27.5 - parent: 1 - type: Transform -- uid: 18080 - type: RandomPosterContraband - components: - - pos: -3.5,-16.5 - parent: 1 - type: Transform -- uid: 18081 - type: RandomPosterContraband - components: - - pos: 2.5,-16.5 - parent: 1 - type: Transform -- uid: 18082 - type: RandomPosterLegit - components: - - pos: 14.5,-13.5 - parent: 1 - type: Transform -- uid: 18083 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-18.5 - parent: 1 - type: Transform -- uid: 18084 - type: SurveillanceCameraRouterMedical - components: - - pos: 22.5,-15.5 - parent: 1 - type: Transform -- uid: 18085 - type: RandomPosterContraband - components: - - pos: 34.5,-13.5 - parent: 1 - type: Transform -- uid: 18087 - type: RandomPosterAny - components: - - pos: 26.5,28.5 - parent: 1 - type: Transform -- uid: 18088 - type: RandomPosterAny - components: - - pos: -2.5,33.5 - parent: 1 - type: Transform -- uid: 18089 - type: PosterLegit50thAnniversaryVintageReprint - components: - - pos: -4.5,33.5 - parent: 1 - type: Transform -- uid: 18090 - type: RandomPosterContraband - components: - - pos: -33.5,-12.5 - parent: 1 - type: Transform -- uid: 18091 - type: RandomPosterContraband - components: - - pos: -28.5,-13.5 - parent: 1 - type: Transform -- uid: 18092 - type: RandomPosterAny - components: - - pos: -25.5,-25.5 - parent: 1 - type: Transform -- uid: 18093 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18094 - type: CableApcExtension - components: - - pos: -44.5,51.5 - parent: 1 - type: Transform -- uid: 18095 - type: BoxLightbulb - components: - - pos: -46.66187,46.44237 - parent: 1 - type: Transform -- uid: 18096 - type: RandomDrinkBottle - components: - - pos: -34.5,54.5 - parent: 1 - type: Transform -- uid: 18097 - type: ClothingBeltUtilityFilled - components: - - pos: -32.452248,55.430744 - parent: 1 - type: Transform -- uid: 18098 - type: MaterialWoodPlank - components: - - pos: -32.693626,54.607662 - parent: 1 - type: Transform -- uid: 18099 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -29.5,55.5 - parent: 1 - type: Transform -- uid: 18100 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -32.5,52.5 - parent: 1 - type: Transform -- uid: 18101 - type: ClothingHandsGlovesBoxingBlue - components: - - pos: -29.678068,53.78091 - parent: 1 - type: Transform -- uid: 18102 - type: ClothingHandsGlovesBoxingGreen - components: - - pos: -29.522928,53.4829 - parent: 1 - type: Transform -- uid: 18103 - type: SpaceCash - components: - - pos: -29.227093,53.8533 - parent: 1 - type: Transform -- uid: 18104 - type: SpaceCash - components: - - pos: -29.25549,53.668816 - parent: 1 - type: Transform -- uid: 18105 - type: SpaceCash - components: - - pos: -29.653055,53.73977 - parent: 1 - type: Transform -- uid: 18106 - type: Spear - components: - - pos: -35.403564,54.591236 - parent: 1 - type: Transform -- uid: 18107 - type: ClothingOuterGhostSheet - components: - - pos: -13.221982,69.88774 - parent: 1 - type: Transform -- uid: 18108 - type: ClothingOuterGhostSheet - components: - - pos: 35.625576,-21.402008 - parent: 1 - type: Transform -- uid: 18109 - type: ClothingShoeSlippersDuck - components: - - pos: 35.418114,-20.345602 - parent: 1 - type: Transform -- uid: 18110 - type: RandomPosterContraband - components: - - pos: -41.5,49.5 - parent: 1 - type: Transform -- uid: 18111 - type: RandomPosterContraband - components: - - pos: -45.5,46.5 - parent: 1 - type: Transform -- uid: 18112 - type: SignHead - components: - - pos: 13.5,33.5 - parent: 1 - type: Transform -- uid: 18113 - type: SignHead - components: - - pos: -22.5,24.5 - parent: 1 - type: Transform -- uid: 18114 - type: SignHead - components: - - pos: 8.5,-25.5 - parent: 1 - type: Transform -- uid: 18115 - type: PosterContrabandHighEffectEngineering - components: - - pos: 8.5,-16.5 - parent: 1 - type: Transform -- uid: 18116 - type: RandomPosterLegit - components: - - pos: 9.5,-31.5 - parent: 1 - type: Transform -- uid: 18117 - type: RandomPosterLegit - components: - - pos: 14.5,-21.5 - parent: 1 - type: Transform -- uid: 18118 - type: SignSecureSmallRed - components: - - pos: 14.5,-22.5 - parent: 1 - type: Transform -- uid: 18119 - type: SignRedFour - components: - - pos: -5.5,43.5 - parent: 1 - type: Transform -- uid: 18120 - type: SignRedThree - components: - - pos: -8.5,43.5 - parent: 1 - type: Transform -- uid: 18121 - type: SignRedTwo - components: - - pos: -11.5,43.5 - parent: 1 - type: Transform -- uid: 18122 - type: SignRedOne - components: - - pos: -14.5,43.5 - parent: 1 - type: Transform -- uid: 18123 - type: SignShield - components: - - pos: -15.5,51.5 - parent: 1 - type: Transform -- uid: 18124 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-4.5 - parent: 1 - type: Transform -- uid: 18125 - type: RandomPosterLegit - components: - - pos: -7.5,-6.5 - parent: 1 - type: Transform -- uid: 18126 - type: RailingCornerSmall - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform -- uid: 18127 - type: SpawnPointResearchAssistant - components: - - pos: -12.5,23.5 - parent: 1 - type: Transform -- uid: 18128 - type: SpawnPointResearchAssistant - components: - - pos: -20.5,22.5 - parent: 1 - type: Transform -- uid: 18129 - type: ClothingNeckMantleRD - components: - - pos: -23.627796,20.473478 - parent: 1 - type: Transform -- uid: 18130 - type: ClothingNeckMantleCap - components: - - pos: -5.496665,72.46058 - parent: 1 - type: Transform -- uid: 18131 - type: ClothingNeckMantleCMO - components: - - pos: 14.511182,34.456318 - parent: 1 - type: Transform -- uid: 18132 - type: CableApcExtension - components: - - pos: 14.5,38.5 - parent: 1 - type: Transform -- uid: 18133 - type: CableApcExtension - components: - - pos: -33.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18134 - type: CableApcExtension - components: - - pos: -23.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18135 - type: CableApcExtension - components: - - pos: -22.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18136 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 33.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18137 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18138 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18139 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18140 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -23.5,-2.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18141 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-2.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18142 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-2.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18143 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18144 - type: GasPipeBend - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18145 - type: GasPipeStraight - components: - - pos: -19.5,-3.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18146 - type: GasPipeStraight - components: - - pos: -19.5,-4.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18147 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18148 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18149 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18150 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18151 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18152 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18153 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18154 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18155 - type: GasPipeStraight - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18156 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 18157 - type: EmergencyLight - components: - - pos: -20.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 18158 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 18159 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 18160 - type: EmergencyLight - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 18161 - type: EmergencyLight - components: - - pos: -9.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 18162 - type: EmergencyLight - components: - - pos: 8.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 18163 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 18164 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 28.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 18165 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 18166 - type: EmergencyLight - components: - - pos: 35.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 18167 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 18168 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 18169 - type: EmergencyLight - components: - - pos: -0.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 18170 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 18171 - type: SpawnPointAtmos - components: - - pos: -14.5,-18.5 - parent: 1 - type: Transform -- uid: 18172 - type: SpawnPointAtmos - components: - - pos: -13.5,-18.5 - parent: 1 - type: Transform -- uid: 18173 - type: SpawnPointChaplain - components: - - pos: 25.5,53.5 - parent: 1 - type: Transform -- uid: 18174 - type: SpawnPointServiceWorker - components: - - pos: 7.5,-1.5 - parent: 1 - type: Transform -- uid: 18175 - type: FaxMachineBase - components: - - pos: 0.5,3.5 - parent: 8756 - type: Transform - - name: Captain's Private Shuttle - type: FaxMachine -- uid: 18176 - type: WarpPoint - components: - - pos: -0.5,-0.5 - parent: 8756 - type: Transform - - location: Captain's Private Shuttle - type: WarpPoint -- uid: 18177 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-30.5 - parent: 1 - type: Transform -- uid: 18178 - type: PaperBin5 - components: - - pos: -35.5,9.5 - parent: 1 - type: Transform -- uid: 18179 - type: BoxFolderYellow - components: - - pos: -35.620438,12.58034 - parent: 1 - type: Transform -- uid: 18180 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -27.5,62.5 - parent: 1 - type: Transform -- uid: 18181 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -25.5,62.5 - parent: 1 - type: Transform -- uid: 18182 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -25.5,62.5 - parent: 1 - type: Transform -- uid: 18183 - type: GrilleBroken - components: - - pos: -11.5,80.5 - parent: 1 - type: Transform -- uid: 18184 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -19.5,68.5 - parent: 1 - type: Transform -- uid: 18185 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -18.5,68.5 - parent: 1 - type: Transform -- uid: 18186 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -15.5,73.5 - parent: 1 - type: Transform -- uid: 18187 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -14.5,74.5 - parent: 1 - type: Transform -- uid: 18188 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -10.5,86.5 - parent: 1 - type: Transform -- uid: 18189 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -4.5,87.5 - parent: 1 - type: Transform -- uid: 18190 - type: SpawnPointLawyer - components: - - pos: 2.5,60.5 - parent: 1 - type: Transform -- uid: 18191 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18192 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18193 - type: Poweredlight - components: - - pos: 2.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18194 - type: SurveillanceCameraRouterCommand - components: - - pos: 20.5,-13.5 - parent: 1 - type: Transform -- uid: 18195 - type: MopBucket - components: - - pos: 18.47802,-5.4857326 - parent: 1 - type: Transform -- uid: 18196 - type: MopItem - components: - - pos: 18.457188,-5.589899 - parent: 1 - type: Transform -- uid: 18197 - type: CableApcExtension - components: - - pos: 34.5,4.5 - parent: 1 - type: Transform -- uid: 18198 - type: CableApcExtension - components: - - pos: 34.5,5.5 - parent: 1 - type: Transform -- uid: 18199 - type: CableApcExtension - components: - - pos: 35.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18200 - type: CableApcExtension - components: - - pos: 36.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18201 - type: CableApcExtension - components: - - pos: 34.5,1.5 - parent: 1 - type: Transform -- uid: 18202 - type: CableApcExtension - components: - - pos: 35.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18203 - type: CableApcExtension - components: - - pos: 36.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18204 - type: CableApcExtension - components: - - pos: 34.5,6.5 - parent: 1 - type: Transform -- uid: 18205 - type: GasThermoMachineFreezer - components: - - pos: 21.5,-11.5 - parent: 1 - type: Transform -- uid: 18206 - type: SpawnMobBandito - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform -- uid: 18207 - type: SpawnMobCatException - components: - - pos: -6.5,-18.5 - parent: 1 - type: Transform -- uid: 18208 - type: SpawnMobMouse - components: - - pos: 23.5,-22.5 - parent: 1 - type: Transform -- uid: 18209 - type: MouseTimedSpawner - components: - - pos: 36.5,-15.5 - parent: 1 - type: Transform -- uid: 18210 - type: SpawnMobMouse - components: - - pos: 25.5,10.5 - parent: 1 - type: Transform -- uid: 18211 - type: SpawnMobMouse - components: - - pos: 38.5,52.5 - parent: 1 - type: Transform -- uid: 18212 - type: SpawnMobMouse - components: - - pos: 18.5,63.5 - parent: 1 - type: Transform -- uid: 18213 - type: SpawnMobMouse - components: - - pos: -13.5,67.5 - parent: 1 - type: Transform -- uid: 18214 - type: SpawnMobMouse - components: - - pos: -46.5,48.5 - parent: 1 - type: Transform -- uid: 18215 - type: SpawnMobMouse - components: - - pos: -42.5,9.5 - parent: 1 - type: Transform -- uid: 18216 - type: SpawnMobMouse - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform -- uid: 18217 - type: SpawnMobPossumMorty - components: - - pos: 20.5,33.5 - parent: 1 - type: Transform -- uid: 18218 - type: SpawnMobRaccoonMorticia - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform -- uid: 18219 - type: SpawnMobWalter - components: - - pos: 3.5,21.5 - parent: 1 - type: Transform -- uid: 18220 - type: SpawnMobCatRuntime - components: - - pos: 15.5,33.5 - parent: 1 - type: Transform -- uid: 18221 - type: SpawnMobMcGriff - components: - - pos: -11.5,49.5 - parent: 1 - type: Transform -- uid: 18222 - type: SpawnMobCatFloppa - components: - - pos: -23.5,27.5 - parent: 1 - type: Transform -- uid: 18223 - type: SpawnMobFoxRenault - components: - - pos: -6.5,73.5 - parent: 1 - type: Transform -- uid: 18224 - type: AirlockGlass - components: - - pos: -13.5,15.5 - parent: 1 - type: Transform -- uid: 18225 - type: AirlockGlass - components: - - pos: -13.5,14.5 - parent: 1 - type: Transform -- uid: 18226 - type: AirlockGlass - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform -- uid: 18227 - type: AirlockGlass - components: - - pos: -1.5,39.5 - parent: 1 - type: Transform -- uid: 18228 - type: AirlockGlass - components: - - pos: -0.5,39.5 - parent: 1 - type: Transform -- uid: 18229 - type: AirlockGlass - components: - - pos: 0.5,39.5 - parent: 1 - type: Transform -- uid: 18230 - type: AirlockGlass - components: - - pos: -17.5,38.5 - parent: 1 - type: Transform -- uid: 18231 - type: AirlockGlass - components: - - pos: -17.5,37.5 - parent: 1 - type: Transform -- uid: 18232 - type: AirlockGlass - components: - - pos: -17.5,36.5 - parent: 1 - type: Transform -- uid: 18233 - type: AirlockGlass - components: - - pos: 13.5,38.5 - parent: 1 - type: Transform -- uid: 18234 - type: AirlockGlass - components: - - pos: 13.5,37.5 - parent: 1 - type: Transform -- uid: 18235 - type: AirlockGlass - components: - - pos: 13.5,36.5 - parent: 1 - type: Transform -- uid: 18236 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 42.5,80.5 - parent: 1 - type: Transform -- uid: 18237 - type: FirelockGlass - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform -- uid: 18238 - type: FirelockGlass - components: - - pos: 11.5,12.5 - parent: 1 - type: Transform -- uid: 18239 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-4.5 - parent: 1 - type: Transform -- uid: 18240 - type: RailingCorner - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform -- uid: 18241 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: -10.5,-3.5 - parent: 1 - type: Transform -- uid: 18242 - type: RailingCorner - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-3.5 - parent: 1 - type: Transform -- uid: 18243 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 1 - type: Transform -- uid: 18244 - type: Railing - components: - - pos: -8.5,-1.5 - parent: 1 - type: Transform -- uid: 18245 - type: Railing - components: - - pos: -7.5,-1.5 - parent: 1 - type: Transform -- uid: 18246 - type: Railing - components: - - pos: -6.5,-1.5 - parent: 1 - type: Transform -- uid: 18247 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 1 - type: Transform -- uid: 18248 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 1 - type: Transform -- uid: 18249 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-5.5 - parent: 1 - type: Transform -- uid: 18250 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: -9.5,-1.5 - parent: 1 - type: Transform -- uid: 18251 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 1 - type: Transform -- uid: 18252 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-3.5 - parent: 1 - type: Transform -- uid: 18253 - type: BassGuitarInstrument - components: - - pos: -8.426775,-5.4377656 - parent: 1 - type: Transform -- uid: 18254 - type: ElectricGuitarInstrument - components: - - pos: -7.8667755,-5.4672356 - parent: 1 - type: Transform -- uid: 18255 - type: SynthesizerInstrument - components: - - pos: -7.1741433,-5.4672356 - parent: 1 - type: Transform -- uid: 18256 - type: MicrophoneInstrument - components: - - rot: 1.5707963267948966 rad - pos: -7.4394073,-2.5350158 - parent: 1 - type: Transform -- uid: 18257 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 37.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18258 - type: Poweredlight - components: - - pos: 37.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18259 - type: CableApcExtension - components: - - pos: 35.5,6.5 - parent: 1 - type: Transform -- uid: 18260 - type: CableApcExtension - components: - - pos: 36.5,6.5 - parent: 1 - type: Transform -- uid: 18261 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 39.5,80.5 - parent: 1 - type: Transform -- uid: 18262 - type: GrilleBroken - components: - - pos: 35.5,81.5 - parent: 1 - type: Transform -- uid: 18263 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 31.5,80.5 - parent: 1 - type: Transform -- uid: 18264 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -43.5,80.5 - parent: 1 - type: Transform -- uid: 18265 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,80.5 - parent: 1 - type: Transform -- uid: 18266 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -27.5,66.5 - parent: 1 - type: Transform -- uid: 18267 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,78.5 - parent: 1 - type: Transform -- uid: 18268 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,77.5 - parent: 1 - type: Transform -- uid: 18269 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,76.5 - parent: 1 - type: Transform -- uid: 18270 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,75.5 - parent: 1 - type: Transform -- uid: 18271 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,74.5 - parent: 1 - type: Transform -- uid: 18272 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,72.5 - parent: 1 - type: Transform -- uid: 18273 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,71.5 - parent: 1 - type: Transform -- uid: 18274 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,70.5 - parent: 1 - type: Transform -- uid: 18275 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,69.5 - parent: 1 - type: Transform -- uid: 18276 - type: GrilleBroken - components: - - pos: -27.5,68.5 - parent: 1 - type: Transform -- uid: 18277 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,67.5 - parent: 1 - type: Transform -- uid: 18278 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -27.5,73.5 - parent: 1 - type: Transform -- uid: 18279 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -29.5,80.5 - parent: 1 - type: Transform -- uid: 18280 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -30.5,80.5 - parent: 1 - type: Transform -- uid: 18281 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -31.5,80.5 - parent: 1 - type: Transform -- uid: 18282 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -27.5,79.5 - parent: 1 - type: Transform -- uid: 18283 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -33.5,80.5 - parent: 1 - type: Transform -- uid: 18284 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -34.5,80.5 - parent: 1 - type: Transform -- uid: 18285 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -35.5,80.5 - parent: 1 - type: Transform -- uid: 18286 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -36.5,81.5 - parent: 1 - type: Transform -- uid: 18287 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -32.5,80.5 - parent: 1 - type: Transform -- uid: 18288 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -37.5,81.5 - parent: 1 - type: Transform -- uid: 18289 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -38.5,81.5 - parent: 1 - type: Transform -- uid: 18290 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -39.5,81.5 - parent: 1 - type: Transform -- uid: 18291 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -41.5,80.5 - parent: 1 - type: Transform -- uid: 18292 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -42.5,80.5 - parent: 1 - type: Transform -- uid: 18293 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -28.5,80.5 - parent: 1 - type: Transform -- uid: 18294 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -44.5,80.5 - parent: 1 - type: Transform -- uid: 18295 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -45.5,80.5 - parent: 1 - type: Transform -- uid: 18296 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -32.5,80.5 - parent: 1 - type: Transform -- uid: 18297 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -47.5,80.5 - parent: 1 - type: Transform -- uid: 18298 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -48.5,80.5 - parent: 1 - type: Transform -- uid: 18299 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -49.5,80.5 - parent: 1 - type: Transform -- uid: 18300 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -49.5,79.5 - parent: 1 - type: Transform -- uid: 18301 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -49.5,78.5 - parent: 1 - type: Transform -- uid: 18302 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -36.5,80.5 - parent: 1 - type: Transform -- uid: 18303 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -49.5,76.5 - parent: 1 - type: Transform -- uid: 18304 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -49.5,75.5 - parent: 1 - type: Transform -- uid: 18305 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -49.5,74.5 - parent: 1 - type: Transform -- uid: 18306 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -49.5,73.5 - parent: 1 - type: Transform -- uid: 18307 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -49.5,72.5 - parent: 1 - type: Transform -- uid: 18308 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -40.5,81.5 - parent: 1 - type: Transform -- uid: 18309 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -40.5,80.5 - parent: 1 - type: Transform -- uid: 18310 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -49.5,69.5 - parent: 1 - type: Transform -- uid: 18311 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -49.5,68.5 - parent: 1 - type: Transform -- uid: 18312 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -49.5,67.5 - parent: 1 - type: Transform -- uid: 18313 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -46.5,80.5 - parent: 1 - type: Transform -- uid: 18314 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -49.5,77.5 - parent: 1 - type: Transform -- uid: 18315 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -49.5,71.5 - parent: 1 - type: Transform -- uid: 18316 - type: GrilleBroken - components: - - pos: -49.5,70.5 - parent: 1 - type: Transform -- uid: 18317 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -49.5,66.5 - parent: 1 - type: Transform -- uid: 18318 - type: CableApcExtension - components: - - pos: -19.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18319 - type: CableApcExtension - components: - - pos: -19.5,64.5 - parent: 1 - type: Transform -- uid: 18320 - type: ClothingBackpackSatchelLeather - components: - - pos: 40.47693,-7.527403 - parent: 1 - type: Transform -- uid: 18321 - type: ClothingBackpackSatchelLeather - components: - - pos: -33.544666,54.621593 - parent: 1 - type: Transform -- uid: 18322 - type: WoodblockInstrument - components: - - pos: -6.344803,-5.494177 - parent: 1 - type: Transform -- uid: 18323 - type: TaikoInstrument - components: - - pos: -16.5,-2.5 - parent: 1 - type: Transform -- uid: 18324 - type: CigPackGreen - components: - - pos: -0.35198832,-5.3871837 - parent: 1 - type: Transform -- uid: 18325 - type: CheapLighter - components: - - pos: -0.54356754,-5.4461226 - parent: 1 - type: Transform -- uid: 18326 - type: CigaretteSpent - components: - - pos: -0.79409397,-5.3871837 - parent: 1 - type: Transform -- uid: 18327 - type: CigaretteSpent - components: - - pos: -0.83830374,-5.2693057 - parent: 1 - type: Transform -- uid: 18328 - type: GroundCannabis - components: - - pos: -4.3371787,11.84107 - parent: 1 - type: Transform -- uid: 18329 - type: HydroponicsToolMiniHoe - components: - - pos: 5.441926,6.893481 - parent: 1 - type: Transform -- uid: 18330 - type: RandomPosterAny - components: - - pos: 6.5,12.5 - parent: 1 - type: Transform -- uid: 18331 - type: MachineParticleAcceleratorEmitterLeftCircuitboard - components: - - pos: 18.41018,-21.741798 - parent: 1 - type: Transform -- uid: 18332 - type: MachineParticleAcceleratorEmitterRightCircuitboard - components: - - pos: 18.552168,-21.543123 - parent: 1 - type: Transform -- uid: 18333 - type: ShuttleConsoleCircuitboard - components: - - pos: 18.39598,-25.385345 - parent: 1 - type: Transform -- uid: 18334 - type: IDComputerCircuitboard - components: - - pos: 18.594763,-24.917038 - parent: 1 - type: Transform -- uid: 18335 - type: ResearchComputerCircuitboard - components: - - pos: 18.514442,-25.182604 - parent: 1 - type: Transform -- uid: 18336 - type: WindoorSecure - components: - - rot: 1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 - type: Transform -- uid: 18337 - type: MachineParticleAcceleratorEndCapCircuitboard - components: - - pos: 17.998415,-21.571505 - parent: 1 - type: Transform -- uid: 18338 - type: MachineParticleAcceleratorEmitterCenterCircuitboard - components: - - pos: 18.069408,-21.38702 - parent: 1 - type: Transform -- uid: 18339 - type: MachineParticleAcceleratorPowerBoxCircuitboard - components: - - pos: 18.140402,-21.174154 - parent: 1 - type: Transform -- uid: 18340 - type: CableMV - components: - - pos: -9.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18341 - type: CableMV - components: - - pos: -9.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18342 - type: CableMV - components: - - pos: -9.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18343 - type: CableMV - components: - - pos: -9.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18344 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -24.5,20.5 - parent: 1 - type: Transform -- uid: 18345 - type: ComputerResearchAndDevelopment - components: - - rot: -1.5707963267948966 rad - pos: -23.5,21.5 - parent: 1 - type: Transform -- uid: 18346 - type: ClothingUniformJumpsuitDetectiveGrey - components: - - pos: -33.618862,52.69466 - parent: 1 - type: Transform -- uid: 18347 - type: ClothingUniformJumpskirtDetectiveGrey - components: - - pos: -33.43428,52.538555 - parent: 1 - type: Transform -- uid: 18348 - type: ClothingHeadHatFedoraGrey - components: - - pos: -46.5004,47.295025 - parent: 1 - type: Transform -- uid: 18349 - type: BedsheetMedical - components: - - pos: 2.5,32.5 - parent: 1 - type: Transform -- uid: 18350 - type: BedsheetMedical - components: - - pos: 2.5,30.5 - parent: 1 - type: Transform -- uid: 18351 - type: BedsheetMedical - components: - - pos: 2.5,28.5 - parent: 1 - type: Transform -- uid: 18352 - type: LockerBoozeFilled - components: - - pos: -18.5,-34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18353 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18354 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18355 - type: ComputerTechnologyDiskTerminal - components: - - rot: 1.5707963267948966 rad - pos: -16.5,34.5 - parent: 1 - type: Transform -- uid: 18356 - type: FloodlightBroken - components: - - pos: -40.523964,60.07001 - parent: 1 - type: Transform -- uid: 18357 - type: ClothingOuterCoatJensen - components: - - pos: 37.44033,50.617104 - parent: 1 - type: Transform -- uid: 18358 - type: ClothingShoesBootsJack - components: - - pos: 37.606995,50.742104 - parent: 1 - type: Transform -- uid: 18359 - type: ClothingUnderSocksCoder - components: - - pos: 18.34029,46.950535 - parent: 1 - type: Transform -- uid: 18360 - type: BlastDoorWindowsOpen - components: - - pos: -9.5,74.5 - parent: 1 - type: Transform -- uid: 18361 - type: BlastDoorWindowsOpen - components: - - pos: -9.5,73.5 - parent: 1 - type: Transform -- uid: 18362 - type: BlastDoorWindowsOpen - components: - - pos: -9.5,72.5 - parent: 1 - type: Transform -- uid: 18363 - type: IntercomAll - components: - - pos: -7.5,71.5 - parent: 1 - type: Transform -- uid: 18364 - type: MagazineRifle - components: - - pos: -4.504134,63.69002 - parent: 1 - type: Transform -- uid: 18365 - type: MagazineRifleHighVelocity - components: - - pos: -4.6083,63.52335 - parent: 1 - type: Transform -- uid: 18366 - type: MagazineBoxRifle - components: - - pos: -4.43326,63.75252 - parent: 1 - type: Transform -- uid: 18367 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-35.5 - parent: 1 - type: Transform -- uid: 18368 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 1 - type: Transform -- uid: 18369 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-12.5 - parent: 1 - type: Transform -- uid: 18370 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-30.5 - parent: 1 - type: Transform -- uid: 18371 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 1 - type: Transform -- uid: 18372 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-10.5 - parent: 1 - type: Transform -- uid: 18374 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 34.5,7.5 - parent: 1 - type: Transform -- uid: 18375 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 43.5,16.5 - parent: 1 - type: Transform -- uid: 18376 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 20.5,17.5 - parent: 1 - type: Transform -- uid: 18377 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 45.5,42.5 - parent: 1 - type: Transform -- uid: 18378 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 22.5,35.5 - parent: 1 - type: Transform -- uid: 18379 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 3.5,39.5 - parent: 1 - type: Transform -- uid: 18380 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -2.5,27.5 - parent: 1 - type: Transform -- uid: 18381 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 4.5,10.5 - parent: 1 - type: Transform -- uid: 18382 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-4.5 - parent: 1 - type: Transform -- uid: 18383 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-10.5 - parent: 1 - type: Transform -- uid: 18384 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-5.5 - parent: 1 - type: Transform -- uid: 18385 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -41.5,0.5 - parent: 1 - type: Transform -- uid: 18386 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -44.5,12.5 - parent: 1 - type: Transform -- uid: 18387 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -35.5,24.5 - parent: 1 - type: Transform -- uid: 18388 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -13.5,20.5 - parent: 1 - type: Transform -- uid: 18389 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -12.5,34.5 - parent: 1 - type: Transform -- uid: 18390 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -23.5,39.5 - parent: 1 - type: Transform -- uid: 18391 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -33.5,33.5 - parent: 1 - type: Transform -- uid: 18392 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -41.5,39.5 - parent: 1 - type: Transform -- uid: 18393 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -7.5,51.5 - parent: 1 - type: Transform -- uid: 18394 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -17.5,54.5 - parent: 1 - type: Transform -- uid: 18395 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 6.5,65.5 - parent: 1 - type: Transform -- uid: 18396 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 15.5,53.5 - parent: 1 - type: Transform -- uid: 18397 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -2.5,58.5 - parent: 1 - type: Transform -- uid: 18398 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 26.5,46.5 - parent: 1 - type: Transform -- uid: 18399 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 22.5,7.5 - parent: 1 - type: Transform -- uid: 18400 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 12.5,0.5 - parent: 1 - type: Transform -- uid: 18401 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 16.5,11.5 - parent: 1 - type: Transform -- uid: 18402 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-2.5 - parent: 1 - type: Transform -- uid: 18403 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 5.5,21.5 - parent: 1 - type: Transform -- uid: 18404 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 14.5,21.5 - parent: 1 - type: Transform -- uid: 18405 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 5.5,29.5 - parent: 1 - type: Transform -- uid: 18406 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 17.5,29.5 - parent: 1 - type: Transform -- uid: 18407 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -4.5,75.5 - parent: 1 - type: Transform -- uid: 18408 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -4.5,83.5 - parent: 1 - type: Transform -- uid: 18409 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 33.5,30.5 - parent: 1 - type: Transform -- uid: 18410 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-37.5 - parent: 1 - type: Transform -- uid: 18411 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-7.5 - parent: 1 - type: Transform -- uid: 18412 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -18.5,12.5 - parent: 1 - type: Transform -- uid: 18413 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 5.5,16.5 - parent: 1 - type: Transform -- uid: 18414 - type: Crowbar - components: - - pos: -5.550656,32.42306 - parent: 1 - type: Transform -- uid: 18415 - type: ClothingUniformJumpsuitJesterAlt - components: - - pos: -28.181301,52.660778 - parent: 1 - type: Transform -- uid: 18416 - type: ClothingShoesJester - components: - - pos: -28.389633,52.43161 - parent: 1 - type: Transform -- uid: 18417 - type: ClothingHeadHatJesterAlt - components: - - pos: -28.410465,52.86911 - parent: 1 - type: Transform -- uid: 18418 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: -28.5,52.5 - parent: 1 - type: Transform -- uid: 18419 - type: ChairWood - components: - - pos: -29.5,57.5 - parent: 1 - type: Transform -- uid: 18420 - type: lantern - components: - - pos: -29.358017,56.723278 - parent: 1 - type: Transform -- uid: 18421 - type: Floodlight - components: - - pos: 39.53336,61.486675 - parent: 1 - type: Transform -- uid: 18422 - type: Floodlight - components: - - pos: -44.507248,28.485949 - parent: 1 - type: Transform -- uid: 18423 - type: Floodlight - components: - - pos: -44.53658,23.689919 - parent: 1 - type: Transform -- uid: 18424 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -36.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18425 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18426 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18427 - type: VendingMachineEngiDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,-17.5 - parent: 1 - type: Transform -- uid: 18428 - type: ToyAmongPequeno - components: - - pos: 5.8128443,72.69741 - parent: 1 - type: Transform -- uid: 18429 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18430 - type: BoxFlashbang - components: - - pos: -16.611473,48.986847 - parent: 1 - type: Transform -- uid: 18431 - type: BoxHandcuff - components: - - pos: -16.528141,49.174347 - parent: 1 - type: Transform -- uid: 18432 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: 18.5,-23.5 - parent: 1 - type: Transform -- uid: 18433 - type: ChairOfficeDark - components: - - pos: 44.5,42.5 - parent: 1 - type: Transform -- uid: 18434 - type: TelecomServer - components: - - pos: 16.5,-17.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 18435 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 18435 - type: EncryptionKeyScience - components: - - flags: InContainer - type: MetaData - - parent: 18434 - type: Transform - - canCollide: False - type: Physics -- uid: 18436 - type: ChairOfficeDark - components: - - pos: 43.5,42.5 - parent: 1 - type: Transform -- uid: 18437 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-11.5 - parent: 1 - type: Transform -- uid: 18438 - type: TableReinforced - components: - - pos: 8.5,-0.5 - parent: 1 - type: Transform -- uid: 18439 - type: WallReinforced - components: - - pos: 15.5,-18.5 - parent: 1 - type: Transform -- uid: 18440 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18441 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-15.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Telecomms - type: SurveillanceCamera -- uid: 18442 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 16.5,-13.5 - parent: 1 - type: Transform -- uid: 18443 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 15.5,-13.5 - parent: 1 - type: Transform -- uid: 18444 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 20.5,-13.5 - parent: 1 - type: Transform -- uid: 18445 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 22.5,-13.5 - parent: 1 - type: Transform -- uid: 18446 - type: TelecomServer - components: - - pos: 15.5,-13.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 18447 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 18447 - type: EncryptionKeyService - components: - - flags: InContainer - type: MetaData - - parent: 18446 - type: Transform - - canCollide: False - type: Physics -- uid: 18448 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 17.5,-13.5 - parent: 1 - type: Transform -- uid: 18449 - type: KitchenReagentGrinder - components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform -- uid: 18450 - type: ClothingHeadHatChef - components: - - pos: 8.40042,-2.435669 - parent: 1 - type: Transform -- uid: 18451 - type: CableMV - components: - - pos: 20.5,-11.5 - parent: 1 - type: Transform -- uid: 18452 - type: CableMV - components: - - pos: 22.5,-11.5 - parent: 1 - type: Transform -- uid: 18453 - type: CableMV - components: - - pos: 21.5,-11.5 - parent: 1 - type: Transform -- uid: 18454 - type: CableHV - components: - - pos: 22.5,-12.5 - parent: 1 - type: Transform -- uid: 18455 - type: CableHV - components: - - pos: 22.5,-13.5 - parent: 1 - type: Transform -- uid: 18456 - type: CableHV - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18457 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-11.5 - parent: 1 - type: Transform -- uid: 18458 - type: CableHV - components: - - pos: 16.5,-11.5 - parent: 1 - type: Transform -- uid: 18459 - type: CableHV - components: - - pos: 16.5,-13.5 - parent: 1 - type: Transform -- uid: 18460 - type: CableHV - components: - - pos: 17.5,-13.5 - parent: 1 - type: Transform -- uid: 18461 - type: CableHV - components: - - pos: 18.5,-13.5 - parent: 1 - type: Transform -- uid: 18462 - type: CableHV - components: - - pos: 19.5,-13.5 - parent: 1 - type: Transform -- uid: 18463 - type: CableHV - components: - - pos: 20.5,-13.5 - parent: 1 - type: Transform -- uid: 18464 - type: CableHV - components: - - pos: 21.5,-13.5 - parent: 1 - type: Transform -- uid: 18465 - type: CableMV - components: - - pos: 16.5,-11.5 - parent: 1 - type: Transform -- uid: 18466 - type: CableMV - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18467 - type: CableApcExtension - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18468 - type: CableApcExtension - components: - - pos: 16.5,-11.5 - parent: 1 - type: Transform -- uid: 18469 - type: CableApcExtension - components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform -- uid: 18470 - type: CableApcExtension - components: - - pos: 18.5,-11.5 - parent: 1 - type: Transform -- uid: 18471 - type: WallReinforced - components: - - pos: 23.5,-11.5 - parent: 1 - type: Transform -- uid: 18472 - type: SubstationBasic - components: - - pos: 22.5,-11.5 - parent: 1 - type: Transform -- uid: 18473 - type: TableReinforced - components: - - pos: 22.5,-12.5 - parent: 1 - type: Transform -- uid: 18474 - type: CableMV - components: - - pos: 15.5,-11.5 - parent: 1 - type: Transform -- uid: 18475 - type: CableMV - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18476 - type: ClothingHandsGlovesPowerglove - components: - - pos: 22.441998,-12.412416 - parent: 1 - type: Transform -- uid: 18477 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18478 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 20.5,-12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18479 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 17.5,-12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18480 - type: GasPassiveVent - components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18481 - type: GasPassiveVent - components: - - pos: 20.5,-11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18482 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18483 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18484 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.303054,42.624207 - parent: 1 - type: Transform -- uid: 18485 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 21.527178,41.51094 - parent: 1 - type: Transform -- uid: 18487 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.31035,3.6511037 - parent: 1 - type: Transform -- uid: 18488 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5730453,83.05458 - parent: 1 - type: Transform -- uid: 18489 - type: RadioHandheld - components: - - pos: 18.316277,50.63189 - parent: 1 - type: Transform -- uid: 18490 - type: RadioHandheld - components: - - pos: 12.759903,-11.244627 - parent: 1 - type: Transform -- uid: 18491 - type: RadioHandheld - components: - - pos: 12.944487,-11.471684 - parent: 1 - type: Transform -- uid: 18492 - type: RadioHandheld - components: - - pos: -6.2471366,24.59688 - parent: 1 - type: Transform -- uid: 18493 - type: RadioHandheld - components: - - pos: -18.58066,20.716656 - parent: 1 - type: Transform -- uid: 18494 - type: RadioHandheld - components: - - pos: -16.067932,58.611973 - parent: 1 - type: Transform -- uid: 18495 - type: RadioHandheld - components: - - pos: -16.426508,49.945545 - parent: 1 - type: Transform -- uid: 18496 - type: TableGlass - components: - - pos: 6.5,52.5 - parent: 1 - type: Transform -- uid: 18497 - type: PowerCellRecharger - components: - - pos: 6.5,52.5 - parent: 1 - type: Transform -- uid: 18498 - type: PowerCellRecharger - components: - - pos: 43.5,41.5 - parent: 1 - type: Transform -- uid: 18499 - type: PowerCellRecharger - components: - - pos: 30.5,-10.5 - parent: 1 - type: Transform -- uid: 18500 - type: PowerCellRecharger - components: - - pos: -6.5,-13.5 - parent: 1 - type: Transform -- uid: 18501 - type: PowerCellRecharger - components: - - pos: -23.5,5.5 - parent: 1 - type: Transform -- uid: 18502 - type: ComputerStationRecords - components: - - pos: -6.5,57.5 - parent: 1 - type: Transform -... diff --git a/Resources/Maps/atlas.yml b/Resources/Maps/atlas.yml new file mode 100644 index 0000000000..07368d2b12 --- /dev/null +++ b/Resources/Maps/atlas.yml @@ -0,0 +1,64736 @@ +meta: + format: 2 + name: DemoStation + author: Space-Wizards + postmapinit: false +tilemap: + 0: Space + 1: FloorArcadeBlue + 2: FloorArcadeBlue2 + 3: FloorArcadeRed + 4: FloorAsteroidIronsand1 + 5: FloorAsteroidIronsand2 + 6: FloorAsteroidIronsand3 + 7: FloorAsteroidIronsand4 + 8: FloorBoxing + 9: FloorCarpetClown + 10: FloorCarpetOffice + 11: FloorEighties + 12: FloorGrassJungle + 13: FloorGym + 14: FloorMetalDiamond + 15: FloorShuttleBlue + 16: FloorShuttleOrange + 17: FloorShuttlePurple + 18: FloorShuttleRed + 19: FloorShuttleWhite + 20: FloorAsteroidCoarseSand0 + 21: FloorAsteroidCoarseSand1 + 22: FloorAsteroidCoarseSand2 + 23: FloorAsteroidCoarseSandDug + 24: FloorAsteroidSand + 25: FloorAsteroidTile + 26: FloorBar + 27: FloorBlue + 28: FloorBlueCircuit + 29: FloorClown + 30: AlmayerSteelDark + 31: AlmayerOuterHull + 32: FloorFreezer + 33: FloorGlass + 34: FloorGold + 35: FloorGrass + 36: FloorGreenCircuit + 37: FloorHydro + 38: AlmayerSteelSterileWhite + 39: AlmayerSteelSterileGreen + 40: FloorLino + 41: FloorMime + 42: FloorMono + 43: AlmayerOuterHull + 44: FloorRGlass + 45: FloorRockVault + 46: FloorShowroom + 47: FloorSilver + 48: FloorSnow + 49: AlmayerSteel + 50: AlmayerAI + 51: AlmayerAI + 52: AlmayerSteelSterileWhite + 53: AlmayerWood + 54: Lattice + 55: Plating +grids: +- settings: + chunksize: 16 + tilesize: 1 + chunks: + - ind: -1,0 + tiles: JgAAACYAAAA3AAAAJQAAACUAAAAlAAAAJQAAACMAAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAANwAAACYAAAAmAAAANwAAACUAAAAlAAAAJQAAACUAAAAjAAAANwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAmAAAAJgAAACUAAAAlAAAAJQAAACUAAAAlAAAAJQAAACUAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAJgAAACYAAAA3AAAAJQAAACUAAAAlAAAAJQAAACMAAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAACAAAAA3AAAANwAAACUAAAAlAAAAJQAAACUAAAAjAAAANwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADcAAAAgAAAAIAAAADcAAAAlAAAAIwAAACMAAAAjAAAAIwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAA3AAAAIAAAACAAAAA3AAAANwAAACMAAAAjAAAAIwAAADcAAAA3AAAAMQAAADEAAAA3AAAAMQAAADEAAAAxAAAANwAAACAAAAAgAAAAIAAAADcAAAA3AAAANwAAADcAAAA3AAAAMQAAADEAAAAxAAAANwAAADEAAAAxAAAAMQAAADcAAAA3AAAANwAAADcAAAA3AAAAIwAAACMAAAAjAAAAMQAAADEAAAAxAAAAMQAAADcAAAAeAAAAHgAAAB4AAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAA3AAAAHgAAAB4AAAAeAAAANQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAANwAAAB4AAAAeAAAAHgAAADUAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADcAAAAeAAAAHgAAAB4AAAA1AAAANwAAADcAAAA3AAAANwAAADcAAAAxAAAANwAAADcAAAA3AAAAHgAAADcAAAA3AAAAHgAAAB4AAAAeAAAANQAAADEAAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAA3AAAAHgAAAB4AAAAeAAAANwAAAB4AAAAeAAAAHgAAADUAAAAxAAAANwAAADEAAAAxAAAAMQAAADEAAAAxAAAANwAAAB0AAAAdAAAAKQAAADcAAAA3AAAANwAAADcAAAA3AAAAMQAAADcAAAAxAAAAMQAAADEAAAAxAAAAMQAAADcAAAAdAAAAHQAAACkAAAA3AAAANwAAADcAAAA3AAAANwAAAA== + - ind: -1,-1 + tiles: NwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADMAAAAzAAAANwAAADcAAAA1AAAANQAAAB4AAAAeAAAAHgAAADcAAAA3AAAANwAAAAkAAAAJAAAANwAAADcAAAAzAAAANwAAADcAAAA3AAAANQAAADUAAAAeAAAAHgAAAB4AAAA3AAAACQAAAAkAAAAJAAAANwAAADcAAAA3AAAAMwAAADcAAAA3AAAANwAAADcAAAA1AAAAHgAAAB4AAAAeAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA0AAAANAAAAB4AAAAeAAAAHgAAADcAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADcAAAA3AAAANAAAADQAAAAeAAAAHgAAADcAAAA3AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADcAAAA3AAAANwAAADQAAAA3AAAANwAAADcAAAA3AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANwAAADQAAAA0AAAANAAAADEAAAAxAAAAMQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADcAAAA0AAAANAAAADQAAAAxAAAAMQAAADcAAAA3AAAANwAAADcAAAA3AAAANQAAADcAAAA3AAAANwAAADcAAAA3AAAANAAAADQAAAA0AAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAA3AAAANAAAADQAAAA0AAAANAAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAANwAAADQAAAA0AAAANAAAADQAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADcAAAA0AAAANAAAADQAAAA3AAAANwAAADcAAAA3AAAANwAAACMAAAAjAAAAIwAAADEAAAAxAAAAMQAAADEAAAA3AAAANwAAADcAAAA3AAAANwAAACYAAAAmAAAAJgAAADcAAAA3AAAANwAAADcAAAA3AAAAMQAAADEAAAAxAAAANwAAADEAAAAxAAAAMQAAADcAAAAmAAAAJgAAADcAAAA3AAAAIwAAACMAAAAjAAAANwAAADcAAAAxAAAAMQAAADcAAAAxAAAAMQAAADEAAAA0AAAAJgAAACYAAAA3AAAAJQAAACMAAAAjAAAAIwAAACMAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAANwAAAA== + - ind: 0,0 + tiles: NwAAADQAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAACMAAAAjAAAAIwAAACMAAAAjAAAAIwAAACMAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADcAAAA3AAAAKAAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAMQAAADcAAAAoAAAAKAAAACgAAAAoAAAANwAAADEAAAAxAAAANwAAADEAAAAxAAAANwAAADEAAAAxAAAANwAAADEAAAAxAAAAKAAAACgAAAAoAAAAKAAAADcAAAAxAAAAMQAAADcAAAAxAAAAMQAAADcAAAAxAAAAMQAAADcAAAAxAAAAMQAAACgAAAAoAAAAKAAAACgAAAA3AAAANwAAADEAAAA3AAAANwAAADEAAAA3AAAANwAAADEAAAA3AAAAMQAAADEAAAA3AAAANwAAACgAAAA3AAAANwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAANwAAADEAAAA3AAAANQAAADUAAAA1AAAANQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADUAAAA1AAAANQAAADUAAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAA1AAAANQAAADUAAAA1AAAANwAAADEAAAAxAAAAMQAAADEAAAAxAAAANwAAADEAAAAxAAAANwAAADEAAAAxAAAANQAAADUAAAA1AAAANQAAADcAAAAxAAAAMQAAADEAAAAxAAAAMQAAADcAAAAeAAAAHgAAADcAAAAxAAAAMQAAADUAAAA1AAAANQAAAB4AAAAeAAAAMQAAADEAAAAxAAAAMQAAADEAAAAeAAAAHgAAAB4AAAA3AAAAMQAAADEAAAA3AAAANwAAADcAAAA3AAAANwAAAB4AAAA3AAAANwAAAB4AAAA3AAAANwAAADcAAAA3AAAANwAAAC4AAAA3AAAAKAAAADcAAAA1AAAANQAAADUAAAAeAAAANwAAACsAAAArAAAAKwAAACsAAAA3AAAALgAAAC4AAAAuAAAALgAAAA== + - ind: 1,0 + tiles: NwAAADEAAAAxAAAAMQAAADcAAAA3AAAANwAAADcAAAA3AAAAMQAAAB4AAAAeAAAAHgAAAB4AAAA3AAAAHgAAADEAAAAxAAAAMQAAADEAAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAAeAAAAHgAAAB4AAAAeAAAANwAAAB4AAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAMQAAADEAAAAxAAAAMQAAADcAAAAxAAAAMQAAADEAAAAxAAAAMQAAAB4AAAAeAAAAHgAAAB4AAAA3AAAAHgAAADcAAAAxAAAAMQAAADEAAAA3AAAANwAAAB4AAAAeAAAANwAAADEAAAA3AAAAHgAAAB4AAAAeAAAANwAAAB4AAAA3AAAAMQAAADEAAAAxAAAANwAAAB4AAAAeAAAAHgAAADcAAAA3AAAANwAAADcAAAAeAAAANwAAADcAAAA1AAAAMQAAADEAAAAxAAAAMQAAADcAAAAeAAAAHgAAAB4AAAAeAAAANwAAAB4AAAAeAAAAHgAAADcAAAA1AAAANQAAADcAAAAxAAAAMQAAADEAAAA3AAAAHgAAAB4AAAAeAAAAHgAAADcAAAAeAAAAHgAAAB4AAAA3AAAANQAAADUAAAA3AAAAMQAAADEAAAAxAAAANwAAAB4AAAAeAAAAHgAAAB4AAAA3AAAAHgAAAB4AAAAeAAAANwAAADUAAAA1AAAANwAAADEAAAAxAAAAMQAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA1AAAANQAAADcAAAAxAAAAMQAAADEAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAHgAAAB4AAAA3AAAAMQAAADEAAAAxAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADEAAAAxAAAAMQAAADcAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA3AAAANwAAADcAAAA2AAAANgAAADcAAAAxAAAAMQAAADEAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANwAAADcAAAA3AAAAAAAAAAAAAAA3AAAAMQAAADEAAAAxAAAANQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADcAAAA3AAAANwAAADYAAAAAAAAANwAAADEAAAAxAAAAMQAAADUAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA3AAAANwAAADcAAAAAAAAAAAAAAA== + - ind: 1,-1 + tiles: NwAAACcAAAAnAAAAJwAAACcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAAAAAAAAAAADcAAAAnAAAAJwAAACcAAAAnAAAANwAAADcAAAA3AAAAMwAAADMAAAAzAAAANwAAADcAAAA3AAAAAAAAAAAAAAA3AAAANwAAADEAAAAxAAAANwAAADcAAAAeAAAANwAAADcAAAAzAAAAMwAAADcAAAA3AAAANwAAAAAAAAAAAAAAMwAAADcAAAAxAAAAMQAAADcAAAAeAAAAJQAAAB4AAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA2AAAAAAAAADMAAAA3AAAAMQAAADEAAAA3AAAAHgAAACUAAAAeAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANgAAAAAAAAAzAAAANwAAADEAAAAxAAAAHgAAAB4AAAAlAAAAHgAAADcAAAAzAAAAMwAAADMAAAAzAAAANwAAADYAAAAAAAAAMwAAADcAAAAxAAAAMQAAAB4AAAAeAAAAJQAAAB4AAAA3AAAAMwAAADMAAAAzAAAAMwAAADcAAAAAAAAAAAAAADMAAAA3AAAAMQAAADEAAAA3AAAAHgAAACUAAAAeAAAANwAAADcAAAAzAAAANwAAADcAAAA3AAAANgAAAAAAAAAzAAAANwAAADEAAAAxAAAANwAAAB4AAAAlAAAAHgAAADcAAAAeAAAAHgAAAB4AAAAeAAAANwAAADYAAAA2AAAANwAAADcAAAAxAAAAMQAAADcAAAAeAAAAJQAAAB4AAAA3AAAAHgAAAB4AAAAeAAAAHgAAADcAAAA3AAAANwAAADcAAAA3AAAAMQAAADEAAAA3AAAAHgAAAB4AAAAeAAAANwAAADcAAAA3AAAANwAAAB4AAAA3AAAANQAAADUAAAA3AAAANwAAADEAAAAxAAAANwAAADcAAAA3AAAANwAAADcAAAAoAAAAKAAAACgAAAAoAAAANwAAADUAAAA1AAAANwAAADcAAAAxAAAAMQAAADcAAAAuAAAALgAAAC4AAAA3AAAAKAAAACgAAAAoAAAAKAAAADcAAAA3AAAANQAAADEAAAAxAAAAMQAAADEAAAA3AAAALgAAAC4AAAAuAAAANwAAACgAAAAoAAAAKAAAACgAAAA3AAAANQAAADUAAAAxAAAAMQAAADEAAAAxAAAALgAAAC4AAAAuAAAALgAAADcAAAAoAAAAKAAAACgAAAAoAAAANwAAADUAAAA1AAAAMQAAADEAAAAxAAAAMQAAADcAAAAuAAAALgAAAC4AAAA3AAAANwAAADcAAAA3AAAAHgAAADcAAAA3AAAAHgAAAA== + - ind: 2,0 + tiles: HgAAADcAAAAeAAAAHgAAAB4AAAA3AAAANwAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAHgAAADcAAAA2AAAANgAAADYAAAAAAAAAAAAAADYAAAAAAAAAAAAAAAAAAAAeAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAA3AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAAAAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAeAAAANwAAADYAAAA2AAAANgAAAAAAAAAAAAAANgAAAAAAAAAAAAAAAAAAAB4AAAA3AAAAHgAAAB4AAAAeAAAANwAAADcAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAADcAAAA1AAAANQAAADUAAAA3AAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUAAAA1AAAANQAAADUAAAA1AAAANwAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1AAAANwAAADUAAAA1AAAANwAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAADcAAAA3AAAANwAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAA3AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAANwAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + - ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAADcAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUAAAA3AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1AAAANwAAADcAAAA3AAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAADcAAAAeAAAAHgAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUAAAA1AAAAHgAAAB4AAAAeAAAANwAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1AAAANwAAAB4AAAAeAAAAHgAAADcAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + - ind: 0,1 + tiles: KAAAADcAAAA1AAAANQAAADUAAAAeAAAAHgAAACsAAAArAAAAKwAAACsAAAA3AAAALgAAAC4AAAAuAAAALgAAADcAAAA3AAAANQAAADUAAAA1AAAAHgAAADcAAAArAAAAKwAAACsAAAArAAAANwAAAC4AAAAuAAAALgAAAC4AAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAuAAAALgAAAC4AAAAuAAAADQAAADcAAAANAAAADQAAAA0AAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAuAAAALgAAAC4AAAAuAAAALgAAAA0AAAANAAAADQAAADcAAAA3AAAANwAAADcAAAAzAAAAMwAAADMAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADYAAAA2AAAANgAAADYAAAAoAAAANQAAADUAAAA3AAAAIgAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAAAAAAAAAAAAAAAAA2AAAAKAAAADUAAAA1AAAANwAAADcAAAA3AAAANgAAADYAAAA2AAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAANgAAACgAAAA1AAAANQAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAANwAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + - ind: 1,1 + tiles: NwAAADEAAAAxAAAAMQAAADcAAAA1AAAANQAAADUAAAA1AAAANQAAADUAAAA3AAAANwAAADcAAAA2AAAAAAAAADcAAAAxAAAAMQAAADEAAAA3AAAANwAAACgAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANgAAAAAAAAA3AAAAMQAAADEAAAAxAAAANwAAACgAAAAoAAAAKAAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADYAAAAAAAAANwAAADEAAAAxAAAAMQAAADcAAAA3AAAAKAAAACgAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA2AAAAAAAAADcAAAAnAAAAJwAAACcAAAAnAAAANwAAADcAAAA3AAAANwAAADMAAAA3AAAANwAAADcAAAA3AAAANgAAAAAAAAAnAAAAJwAAACcAAAAnAAAAJwAAACcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAAAAAAAAAAAANwAAACcAAAAnAAAAJwAAACcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAADcAAAAnAAAAJwAAACcAAAAnAAAANwAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAAJwAAACcAAAAnAAAAJwAAADcAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAA3AAAANwAAADcAAAA3AAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAANwAAADcAAAA3AAAANwAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADcAAAA3AAAANwAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + - ind: -1,1 + tiles: MQAAADcAAAAxAAAAMQAAADEAAAAxAAAAMQAAADcAAAAeAAAAHgAAAB4AAAA3AAAANwAAADcAAAA3AAAAKAAAADEAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAxAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAMQAAADcAAAA3AAAANQAAADcAAAA3AAAANwAAADUAAAA3AAAANwAAADcAAAAzAAAAMwAAADMAAAAzAAAANwAAADEAAAA3AAAANwAAADcAAAA1AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAMwAAADMAAAA3AAAANwAAADcAAAAxAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADMAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADYAAAA2AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAAAAAANgAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAACgAAAA3AAAANwAAADcAAAA3AAAANgAAADYAAAAAAAAANgAAAAAAAAAAAAAAAAAAADYAAAA3AAAAKAAAACgAAAAoAAAANwAAADcAAAA3AAAANwAAADYAAAA2AAAAAAAAADYAAAAAAAAAAAAAAAAAAAA2AAAANwAAACgAAAAoAAAAKAAAADcAAAA3AAAANwAAADcAAAAAAAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADcAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAAAAAAANgAAAAAAAAAAAAAAAAAAADYAAAA3AAAANwAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + - ind: 0,-1 + tiles: NQAAADcAAAAeAAAAHgAAAB4AAAA3AAAAMwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADUAAAA3AAAAHgAAAB4AAAAeAAAANwAAADQAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAeAAAANwAAADcAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADcAAAA3AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA3AAAANwAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADcAAAA0AAAANwAAADcAAAA3AAAANAAAADQAAAA0AAAANwAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADcAAAA3AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADcAAAA3AAAANwAAADcAAAA0AAAANwAAADQAAAA3AAAANwAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANwAAADcAAAA0AAAANAAAADQAAAA0AAAALgAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADcAAAA3AAAANAAAADQAAAA0AAAALgAAAC4AAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA3AAAANwAAADQAAAA0AAAANAAAAC4AAAAuAAAANAAAADQAAAA0AAAANAAAADQAAAA3AAAANAAAADQAAAA0AAAANwAAADcAAAA0AAAANAAAADQAAAA0AAAALgAAADQAAAA0AAAANAAAADQAAAA0AAAANwAAADQAAAA0AAAANAAAADcAAAA3AAAANAAAADQAAAA0AAAANwAAAC4AAAA0AAAANAAAADQAAAA3AAAANwAAADcAAAA0AAAANwAAADQAAAA3AAAANwAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANwAAADEAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAAxAAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA3AAAAMQAAAA== + - ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAAAAAAAAAAAAAAAAAAAAAAAA3AAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAA2AAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAANwAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAAAAAANgAAAAAAAAA2AAAAAAAAAAAAAAAAAAAAAAAAADcAAAA0AAAANAAAADcAAAA3AAAAMwAAADMAAAA3AAAAAAAAADYAAAA3AAAANwAAADcAAAAAAAAAAAAAAAAAAAA3AAAANAAAADQAAAA3AAAANwAAADcAAAA3AAAANwAAADYAAAA2AAAANwAAADcAAAA3AAAAAAAAAAAAAAAAAAAANwAAADQAAAA0AAAANAAAADcAAAA3AAAANwAAADcAAAAAAAAANgAAADcAAAA3AAAANwAAADYAAAA2AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAMwAAADMAAAAzAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAA== + - ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADcAAAA3AAAANwAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAADcAAAA3AAAANwAAADQAAAA0AAAANAAAADcAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADcAAAAnAAAAJwAAACcAAAA0AAAANAAAADQAAAA3AAAANwAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAAJwAAACcAAAAnAAAANAAAADQAAAA0AAAANAAAADQAAAA3AAAANgAAADYAAAA2AAAANgAAADYAAAAAAAAANwAAACcAAAAnAAAAJwAAADcAAAA3AAAANwAAADcAAAA0AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAzAAAAMwAAADMAAAAzAAAAMwAAADMAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAMwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAA== + - ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADcAAAAAAAAAAAAAAAAAAAA3AAAANwAAADcAAAA3AAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAACcAAAAnAAAAJwAAADcAAAA3AAAANwAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACcAAAAnAAAAJwAAACcAAAAnAAAAJwAAACcAAAAnAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAJwAAACcAAAAnAAAAJwAAACcAAAAnAAAAJwAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAACcAAAAnAAAAJwAAACcAAAAnAAAAJwAAACcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADcAAAAnAAAAJwAAACcAAAAnAAAANwAAADcAAAA3AAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAAJwAAACcAAAAnAAAAJwAAADcAAAA3AAAANwAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAACcAAAAnAAAAJwAAACcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANgAAADYAAAAAAAAAAAAAAA== + - ind: -2,-1 + tiles: NwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAMQAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAeAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAA3AAAAHgAAAB4AAAA3AAAANwAAADcAAAA3AAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAeAAAANwAAADcAAAA3AAAANwAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAHgAAADUAAAA1AAAANQAAADcAAAAeAAAAHgAAAB4AAAA3AAAANwAAADcAAAA0AAAANwAAADcAAAA3AAAAHgAAAB4AAAA1AAAANQAAADUAAAA3AAAAHgAAAB4AAAAeAAAANwAAAB4AAAA0AAAANAAAADQAAAA0AAAANwAAAB4AAAAeAAAANQAAADUAAAA1AAAANwAAAB4AAAAeAAAAHgAAADcAAAAeAAAANAAAADQAAAA0AAAANAAAADcAAAA3AAAANwAAAB4AAAAeAAAAHgAAADcAAAA3AAAAHgAAADcAAAA3AAAAHgAAADQAAAA0AAAANAAAADQAAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADEAAAAxAAAANwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADcAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAANwAAADEAAAAxAAAAMQAAADEAAAA3AAAANwAAABoAAAAaAAAAGgAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAMQAAADEAAAAxAAAANwAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAJgAAACYAAAAxAAAANwAAADEAAAAxAAAAMQAAADcAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAACYAAAAmAAAAMQAAADcAAAAxAAAAMQAAADEAAAA3AAAAGgAAABoAAAAaAAAAGgAAAB4AAAAeAAAAHgAAADcAAAA3AAAAJgAAAA== + - ind: -2,0 + tiles: MQAAADEAAAAxAAAAMQAAADEAAAA3AAAAGgAAABoAAAAaAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAA3AAAAJgAAADEAAAA3AAAAMQAAADEAAAAxAAAAGgAAABoAAAAaAAAAGgAAAB4AAAAeAAAAHgAAAB4AAAAeAAAANwAAACYAAAAxAAAAMQAAADEAAAAxAAAAMQAAABoAAAAaAAAAGgAAABoAAAAeAAAAHgAAAB4AAAAeAAAAHgAAACYAAAAmAAAAMQAAADcAAAAxAAAAMQAAADEAAAAaAAAAGgAAABoAAAAaAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAA3AAAAJgAAADEAAAA3AAAAMQAAADEAAAAxAAAANwAAABoAAAAaAAAAGgAAAB4AAAAeAAAAHgAAAB4AAAAeAAAANwAAADcAAAAxAAAANwAAADEAAAAxAAAAMQAAADcAAAAaAAAAGgAAABoAAAAaAAAAHgAAAB4AAAAeAAAANwAAADcAAAAgAAAAMQAAADcAAAAxAAAAMQAAADEAAAA3AAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAgAAAAIAAAADcAAAA3AAAAMQAAADEAAAAxAAAANwAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAANwAAACAAAAA3AAAAMQAAADEAAAAxAAAAMQAAADcAAAA3AAAAGgAAABoAAAAaAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADcAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAANwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADEAAAAxAAAAMQAAADcAAAA3AAAAMQAAADcAAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAANwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAANwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAA== + - ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAAAAAAADYAAAAAAAAAAAAAAAAAAAA2AAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAADYAAAA2AAAAAAAAAAAAAAAAAAAANgAAAAAAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAAAAAAANgAAAAAAAAAAAAAAAAAAADYAAAAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAAAAAAADYAAAAAAAAAAAAAADcAAAA3AAAAKwAAADcAAAA3AAAANgAAADYAAAA2AAAANgAAADYAAAA3AAAANwAAACsAAAA3AAAANgAAADYAAAA3AAAAKwAAACsAAAArAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAACsAAAArAAAAKwAAADcAAAA3AAAANwAAACsAAAArAAAAKwAAADEAAAA0AAAANAAAADQAAAA0AAAANAAAADEAAAArAAAAKwAAACsAAAA3AAAAMwAAADcAAAA3AAAANwAAADcAAAA3AAAANAAAADQAAAA0AAAANAAAADQAAAA3AAAANwAAADcAAAA3AAAANwAAADMAAAA3AAAAMQAAADEAAAAxAAAAMQAAADQAAAA0AAAANAAAADQAAAA0AAAAMQAAADEAAAAxAAAAMQAAADcAAAAzAAAANwAAADEAAAAxAAAAMQAAADEAAAA0AAAANAAAADQAAAA0AAAANAAAADEAAAAxAAAAMQAAADEAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAxAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAxAAAAMQAAADEAAAA3AAAANwAAADcAAAA3AAAANwAAAA== + - ind: -3,-1 + tiles: AAAAAAAAAAA3AAAANwAAACsAAAArAAAAKwAAACsAAAArAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAAAAAAA2AAAANwAAACsAAAArAAAAKwAAACsAAAArAAAAKwAAADcAAAAxAAAAMQAAADEAAAAxAAAANwAAADcAAAAAAAAANgAAADcAAAArAAAAKwAAACsAAAArAAAAKwAAACsAAAAxAAAAMQAAADEAAAAxAAAAMQAAADcAAAA3AAAAAAAAADYAAAA3AAAAKwAAACsAAAArAAAAKwAAACsAAAArAAAAMQAAADEAAAAxAAAAMQAAADEAAAA3AAAANwAAAAAAAAA2AAAANwAAACsAAAArAAAAKwAAACsAAAArAAAAKwAAADcAAAAxAAAAMQAAADEAAAAxAAAANwAAAB4AAAAAAAAANgAAADcAAAArAAAAKwAAACsAAAArAAAAKwAAACsAAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAAeAAAANgAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADEAAAAxAAAAMQAAADEAAAA3AAAAHgAAADYAAAA3AAAAMwAAADMAAAAzAAAAMwAAADMAAAAzAAAAMwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAB4AAAA2AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADEAAAAxAAAANgAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANQAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA1AAAANQAAADUAAAA3AAAANwAAADUAAAA1AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAMwAAADcAAAA3AAAANQAAADcAAAA3AAAANQAAADUAAAA3AAAANQAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADMAAAA3AAAANwAAADcAAAA1AAAANQAAADcAAAA3AAAANwAAADUAAAA3AAAAHgAAAB4AAAAeAAAAHgAAADcAAAAzAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAB4AAAA3AAAANwAAAB4AAAA3AAAAMwAAADcAAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAANwAAADEAAAAxAAAANwAAADcAAAA3AAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAMQAAADcAAAAxAAAAMQAAADcAAAAxAAAAMQAAAA== + - ind: -3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAA2AAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAADYAAAAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAANwAAAAAAAAAAAAAAAAAAAAAAAAA2AAAAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAADcAAAAAAAAAAAAAAAAAAAA2AAAANgAAAAAAAAA2AAAAAAAAADYAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAAAAAAAAAAAA2AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAA== + - ind: -2,1 + tiles: MQAAADEAAAAxAAAANwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADcAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADcAAAA1AAAANQAAADEAAAAxAAAAMQAAADcAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAA3AAAANQAAADUAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAA3AAAANwAAADUAAAA1AAAAMQAAADEAAAAxAAAANwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAANwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + - ind: -3,0 + tiles: NwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAeAAAAMQAAADcAAAAxAAAAMQAAADcAAAAxAAAAMQAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAHgAAADEAAAA3AAAAMQAAADEAAAA3AAAAMQAAADEAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAB4AAAAxAAAANwAAADEAAAAxAAAANwAAADEAAAAxAAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAAeAAAAMQAAADcAAAAxAAAAMQAAADcAAAAxAAAAMQAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAHgAAADEAAAA3AAAAMQAAADEAAAA3AAAAMQAAADEAAAA3AAAANwAAADcAAAAeAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAxAAAANwAAADEAAAAxAAAANwAAADEAAAAxAAAANwAAADcAAAAzAAAANwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADcAAAAxAAAAMQAAADcAAAA3AAAAMwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADEAAAA3AAAANwAAADEAAAA3AAAANwAAADMAAAA3AAAAKwAAACsAAAArAAAANwAAADEAAAAxAAAANwAAADEAAAAxAAAAMQAAADEAAAAxAAAANwAAADcAAAAzAAAANwAAACsAAAArAAAAKwAAAB4AAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADcAAAA3AAAANwAAADcAAAArAAAAKwAAACsAAAA3AAAAMQAAADEAAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAA2AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADMAAAAzAAAAMwAAADMAAAA3AAAANgAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADYAAAA3AAAAMwAAADMAAAAzAAAAMwAAADMAAAA3AAAANwAAADcAAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAA2AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADEAAAAxAAAAAAAAADYAAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADcAAAAxAAAAMQAAAA== + - ind: -3,1 + tiles: AAAAADYAAAA3AAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADcAAAAxAAAAMQAAAAAAAAA2AAAANwAAACsAAAArAAAAKwAAACsAAAArAAAAKwAAADEAAAAxAAAAMQAAADEAAAA3AAAAMQAAADEAAAAAAAAANgAAADcAAAArAAAAKwAAACsAAAArAAAAKwAAACsAAAAxAAAAMQAAADEAAAA3AAAANwAAADcAAAAxAAAAAAAAADYAAAA3AAAAKwAAACsAAAArAAAAKwAAACsAAAArAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAAAAAAAAAAAANwAAADcAAAArAAAAKwAAACsAAAArAAAAKwAAADcAAAA3AAAANwAAADcAAAAxAAAAMQAAADEAAAAAAAAAAAAAADYAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAAMQAAADEAAAAxAAAAAAAAAAAAAAAAAAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANwAAADcAAAA3AAAANwAAADcAAAA3AAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAAA2AAAAAAAAADYAAAA2AAAANgAAAAAAAAA2AAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + - ind: -4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAADcAAAA3AAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAA3AAAANwAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAANwAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAADcAAAA3AAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAA3AAAANwAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADcAAAA3AAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + - ind: -4,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANwAAADcAAAA3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADcAAAA3AAAANwAAAA== +entities: +- uid: 0 + type: WallAlmayer + components: + - pos: -7.5,3.5 + parent: 30 + type: Transform +- uid: 1 + type: WallAlmayer + components: + - pos: -12.5,-3.5 + parent: 30 + type: Transform +- uid: 2 + type: WallAlmayer + components: + - pos: -7.5,1.5 + parent: 30 + type: Transform +- uid: 3 + type: WallAlmayer + components: + - pos: -8.5,-2.5 + parent: 30 + type: Transform +- uid: 4 + type: CableHV + components: + - pos: -31.5,13.5 + parent: 30 + type: Transform +- uid: 5 + type: Grille + components: + - pos: 16.5,2.5 + parent: 30 + type: Transform +- uid: 6 + type: AirlockGlassAlpha + components: + - pos: 16.5,1.5 + parent: 30 + type: Transform +- uid: 7 + type: WallAlmayer + components: + - pos: 1.5,4.5 + parent: 30 + type: Transform +- uid: 8 + type: AirlockGlassAlpha + components: + - pos: 2.5,4.5 + parent: 30 + type: Transform +- uid: 9 + type: AirlockGlassAlpha + components: + - pos: -0.5,1.5 + parent: 30 + type: Transform +- uid: 10 + type: WindowAlmayer + components: + - pos: -4.5,6.5 + parent: 30 + type: Transform +- uid: 11 + type: WallAlmayer + components: + - pos: -0.5,-3.5 + parent: 30 + type: Transform +- uid: 12 + type: WindowAlmayer + components: + - pos: -4.5,7.5 + parent: 30 + type: Transform +- uid: 13 + type: WallAlmayer + components: + - pos: -4.5,-3.5 + parent: 30 + type: Transform +- uid: 14 + type: WallAlmayer + components: + - pos: -13.5,5.5 + parent: 30 + type: Transform +- uid: 15 + type: AirlockGlassAlpha + components: + - pos: 16.5,3.5 + parent: 30 + type: Transform +- uid: 16 + type: WindowAlmayer + components: + - pos: 16.5,2.5 + parent: 30 + type: Transform +- uid: 17 + type: WindowAlmayer + components: + - pos: 20.5,1.5 + parent: 30 + type: Transform +- uid: 18 + type: WindowAlmayer + components: + - pos: 20.5,3.5 + parent: 30 + type: Transform +- uid: 19 + type: WindoorKitchenHydroponicsLocked + components: + - rot: 1.5707963267948966 rad + pos: -13.5,1.5 + parent: 30 + type: Transform +- uid: 20 + type: WallAlmayer + components: + - pos: -13.5,0.5 + parent: 30 + type: Transform +- uid: 21 + type: FirelockGlass + components: + - pos: -13.5,1.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 22 + type: ClosetEmergencyFilledRandom + components: + - pos: 16.5,-5.5 + parent: 30 + type: Transform +- uid: 23 + type: WindowAlmayer + components: + - pos: -0.5,2.5 + parent: 30 + type: Transform +- uid: 24 + type: WindowAlmayer + components: + - pos: -4.5,-2.5 + parent: 30 + type: Transform +- uid: 25 + type: Autolathe + components: + - pos: -23.5,21.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + type: Lathe + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 26 + type: WallAlmayer + components: + - pos: 3.5,18.5 + parent: 30 + type: Transform +- uid: 27 + type: WallAlmayer + components: + - pos: -11.5,-12.5 + parent: 30 + type: Transform +- uid: 28 + type: WindowAlmayer + components: + - pos: 6.5,4.5 + parent: 30 + type: Transform +- uid: 29 + type: CableApcExtension + components: + - pos: -49.5,1.5 + parent: 30 + type: Transform +- uid: 30 + components: + - pos: 2.2710133,-2.4148211 + parent: null + type: Transform + - index: 0 + type: MapGrid + - angularDamping: 100 + linearDamping: 50 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: [] + type: Fixtures + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + 0,0: + 0: + color: '#FFFFFFFF' + id: WarningLine + coordinates: 28,6 + 1: + color: '#FFFFFFFF' + id: WarningLine + coordinates: 27,6 + 2: + color: '#FFFFFFFF' + id: WarningLine + coordinates: 26,6 + 3: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + coordinates: 16,6 + 4: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + coordinates: 15,5 + 5: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + coordinates: 15,6 + 6: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + coordinates: 15,7 + 7: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + coordinates: 26,0 + 8: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + coordinates: 27,0 + 9: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + coordinates: 28,0 + 10: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + coordinates: 29,0 + 11: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + coordinates: 21,3 + 12: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + coordinates: 22,3 + 13: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + coordinates: 23,3 + 14: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + coordinates: 24,3 + 15: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + coordinates: 21,1 + 16: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + coordinates: 22,1 + 17: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + coordinates: 23,1 + 18: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: 25,0 + 19: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale + coordinates: 25,4 + 20: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + coordinates: 27,4 + 21: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + coordinates: 28,4 + 22: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + coordinates: 29,4 + 23: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + coordinates: 31,4 + 26: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + coordinates: 31,0 + 101: + color: '#FFFFFFFF' + id: Grasse3 + coordinates: 10.489519,2.1861625 + 102: + color: '#FFFFFFFF' + id: Grasse3 + coordinates: 8.692644,1.9986625 + 103: + color: '#FFFFFFFF' + id: Grasse1 + coordinates: 5.489519,2.0455375 + 104: + color: '#FFFFFFFF' + id: Grassd3 + coordinates: 4.895769,2.0767875 + 105: + color: '#FFFFFFFF' + id: Grassd2 + coordinates: 7.692644,2.1080375 + 106: + color: '#FFFFFFFF' + id: Grassd1 + coordinates: 6.583269,2.0611625 + 107: + color: '#FFFFFFFF' + id: Grassd3 + coordinates: 9.661394,2.0142875 + 108: + color: '#FFFFFFFF' + id: Grassb1 + coordinates: 5.270769,2.0299125 + 109: + color: '#FFFFFFFF' + id: Grassb2 + coordinates: 11.052019,1.9986625 + 110: + color: '#FFFFFFFF' + id: Grassa4 + coordinates: 7.145769,1.9517875 + 111: + color: '#FFFFFFFF' + id: Grassb4 + coordinates: 6.161394,2.0299125 + 112: + color: '#FFFFFFFF' + id: Grassb5 + coordinates: 8.364519,2.0455375 + 113: + color: '#FFFFFFFF' + id: Bushc2 + coordinates: 6.661394,2.0611625 + 114: + color: '#FFFFFFFF' + id: Bushb3 + coordinates: 10.255144,2.0299125 + 115: + color: '#FFFFFFFF' + id: Rock01 + coordinates: 7.911394,1.9986625 + 116: + color: '#FFFFFFFF' + id: Rock04 + coordinates: 9.458269,1.9830375 + 117: + color: '#FFFFFFFF' + id: Bushm3 + coordinates: 5.442644,2.0767875 + 118: + color: '#FFFFFFFF' + id: Bushm2 + coordinates: 7.348894,2.1080375 + 119: + color: '#FFFFFFFF' + id: Bushm1 + coordinates: 8.848894,2.1236625 + 120: + color: '#FFFFFFFF' + id: Bushl4 + coordinates: 10.880144,2.1549125 + 121: + color: '#FFFFFFFF' + id: Bushj2 + coordinates: 8.192644,2.1861625 + 122: + color: '#FFFFFFFF' + id: Bushj1 + coordinates: 10.130144,2.1392875 + 123: + color: '#FFFFFFFF' + id: Bushj3 + coordinates: 6.036394,2.2174125 + 165: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + coordinates: 24,1 + 734: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + coordinates: 17,4 + 735: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + coordinates: 17,5 + 736: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + coordinates: 17,6 + 737: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + coordinates: 17,7 + 738: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + coordinates: 17,8 + 739: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + coordinates: 11,19 + 740: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + coordinates: 12,17 + 741: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + coordinates: 12,16 + 742: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + coordinates: 12,15 + 743: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + coordinates: 15,9 + 744: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + coordinates: 15,10 + 745: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + coordinates: 15,11 + 746: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + coordinates: 15,12 + 747: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + coordinates: 14,14 + 748: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + coordinates: 12,8 + 749: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + coordinates: 11,8 + 750: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + coordinates: 10,8 + 751: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + coordinates: 9,8 + 752: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + coordinates: 8,8 + 753: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + coordinates: 7,8 + 754: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + coordinates: 6,8 + 755: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + coordinates: 5,8 + 756: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + coordinates: 12,7 + 757: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + coordinates: 9,7 + 758: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + coordinates: 6,7 + 759: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + coordinates: 5,8 + 760: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + coordinates: 5,9 + 761: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + coordinates: 5,10 + 762: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + coordinates: 5,11 + 763: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + coordinates: 5,12 + 764: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + coordinates: 5,13 + 765: + color: '#DE3A3A96' + id: CheckerNWSE + coordinates: 11,12 + 766: + color: '#DE3A3A96' + id: CheckerNWSE + coordinates: 12,12 + 767: + color: '#DE3A3A96' + id: CheckerNWSE + coordinates: 12,13 + 768: + color: '#DE3A3A96' + id: CheckerNWSE + coordinates: 11,13 + 769: + color: '#DE3A3A96' + id: CheckerNWSE + coordinates: 10,13 + 770: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + coordinates: 12,18 + 771: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + coordinates: 12,19 + 772: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + coordinates: 13,19 + 773: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + coordinates: 14,19 + 774: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + coordinates: 15,19 + 775: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + coordinates: 12,19 + 776: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + coordinates: 15,19 + 777: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + coordinates: 15,18 + 778: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + coordinates: 15,17 + 779: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + coordinates: 15,16 + 780: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + coordinates: 15,15 + 781: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + coordinates: 15,13 + 782: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + coordinates: 13,3 + 783: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + coordinates: 12,3 + 784: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + coordinates: 11,3 + 785: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + coordinates: 10,3 + 786: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + coordinates: 9,3 + 787: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + coordinates: 8,3 + 788: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + coordinates: 7,3 + 789: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + coordinates: 6,3 + 790: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + coordinates: 5,3 + 791: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + coordinates: 4,3 + 792: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 13,1 + 793: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 12,1 + 794: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 11,1 + 795: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 10,1 + 796: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 9,1 + 797: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 8,1 + 798: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 7,1 + 799: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 6,1 + 800: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 5,1 + 801: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 4,1 + 802: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 3,1 + 803: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + coordinates: 3,3 + 814: + color: '#FFFFFFFF' + id: Delivery + coordinates: 25,2 + 815: + color: '#FFFFFFFF' + id: Bot + coordinates: 24,2 + 816: + color: '#FFFFFFFF' + id: Bot + coordinates: 23,2 + 817: + color: '#FFFFFFFF' + id: Bot + coordinates: 22,2 + 818: + color: '#FFFFFFFF' + id: Arrows + coordinates: 25,3 + 819: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + coordinates: 17,10 + 844: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + coordinates: 17,12 + 845: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + coordinates: 17,13 + 846: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + coordinates: 17,14 + 847: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + coordinates: 17,15 + 848: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + coordinates: 17,16 + 849: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + coordinates: 17,17 + 850: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + coordinates: 17,18 + 1,0: + 24: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + coordinates: 32,4 + 25: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + coordinates: 32,0 + 27: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + coordinates: 35,4 + 28: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + coordinates: 34,4 + 29: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + coordinates: 36,4 + 30: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + coordinates: 37,1 + 31: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + coordinates: 37,2 + 32: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + coordinates: 37,3 + 33: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + coordinates: 36,0 + 34: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + coordinates: 35,0 + 35: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + coordinates: 34,0 + 36: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 36,3 + 37: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 36,1 + -1,-1: + 38: + color: '#DCCF8B96' + id: FullTileOverlayGreyscale + coordinates: -4,-7 + 39: + color: '#DCCF8B96' + id: FullTileOverlayGreyscale + coordinates: -4,-6 + 40: + color: '#DCCF8B96' + id: FullTileOverlayGreyscale + coordinates: -4,-5 + 41: + color: '#DCCF8B96' + id: FullTileOverlayGreyscale + coordinates: -3,-5 + 42: + color: '#DCCF8B96' + id: FullTileOverlayGreyscale + coordinates: -2,-5 + 43: + color: '#DCCF8B96' + id: ThreeQuarterTileOverlayGreyscale + coordinates: -3,-6 + 44: + color: '#DCCF8B96' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: -2,-6 + 45: + color: '#DCCF8B96' + id: HalfTileOverlayGreyscale90 + coordinates: -2,-7 + 46: + color: '#DCCF8B96' + id: HalfTileOverlayGreyscale270 + coordinates: -3,-7 + 47: + color: '#DCCF8B96' + id: HalfTileOverlayGreyscale270 + coordinates: -3,-8 + 48: + color: '#DCCF8B96' + id: HalfTileOverlayGreyscale270 + coordinates: -3,-9 + 49: + color: '#DCCF8B96' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: -3,-10 + 50: + color: '#DCCF8B96' + id: HalfTileOverlayGreyscale180 + coordinates: -2,-10 + 51: + color: '#DCCF8B96' + id: QuarterTileOverlayGreyscale90 + coordinates: -2,-8 + 57: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + coordinates: -7,-1 + 65: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + coordinates: -7,-2 + 74: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + coordinates: -8,-3 + 75: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + coordinates: -9,-4 + 76: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + coordinates: -12,-5 + 77: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + coordinates: -11,-5 + 78: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + coordinates: -10,-5 + 79: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + coordinates: -9,-5 + 80: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + coordinates: -8,-4 + 81: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + coordinates: -7,-3 + 84: + color: '#9FED5896' + id: FullTileOverlayGreyscale + coordinates: -13,-1 + 124: + color: '#FFFFFFFF' + id: Grassd1 + coordinates: -11.956756,-3.8787117 + 125: + color: '#FFFFFFFF' + id: Grasse3 + coordinates: -11.113006,-3.9568367 + 126: + color: '#FFFFFFFF' + id: Grasse1 + coordinates: -10.269256,-3.9568367 + 127: + color: '#FFFFFFFF' + id: Flowersy2 + coordinates: -11.738006,-3.9568367 + 128: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -10.738006,-3.9568367 + 129: + color: '#FFFFFFFF' + id: Flowersy4 + coordinates: -10.003631,-3.9568367 + 139: + color: '#FFFFFFFF' + id: Grasse2 + coordinates: -9.503631,-1.1161952 + 140: + color: '#FFFFFFFF' + id: Grasse3 + coordinates: -11.550506,-1.8036952 + 141: + color: '#FFFFFFFF' + id: Grassd3 + coordinates: -12.191131,-0.8818202 + 142: + color: '#FFFFFFFF' + id: Grassd3 + coordinates: -10.566131,-1.4911952 + 143: + color: '#FFFFFFFF' + id: Grassd2 + coordinates: -11.409881,-0.9911952 + 150: + color: '#FFFFFFFF' + id: Grassb3 + coordinates: -8.894256,-0.7997091 + 151: + color: '#FFFFFFFF' + id: Grassb2 + coordinates: -10.113006,-1.8309591 + 152: + color: '#FFFFFFFF' + id: Grassb1 + coordinates: -12.066131,-1.6590841 + 153: + color: '#FFFFFFFF' + id: Grassa4 + coordinates: -10.456756,-1.0184591 + 157: + color: '#FFFFFFFF' + id: Bushf1 + coordinates: -11.878631,-0.9396708 + 160: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -11.144256,-1.2990458 + 164: + color: '#FFFFFFFF' + id: Bushg2 + coordinates: -10.000841,-1.02491 + 166: + color: '#52B4E996' + id: FullTileOverlayGreyscale + coordinates: -29,-20 + 167: + color: '#52B4E996' + id: FullTileOverlayGreyscale + coordinates: -29,-19 + 168: + color: '#52B4E996' + id: FullTileOverlayGreyscale + coordinates: -19,-20 + 169: + color: '#52B4E996' + id: FullTileOverlayGreyscale + coordinates: -19,-19 + 170: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + coordinates: -27,-20 + 171: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + coordinates: -27,-19 + 172: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + coordinates: -17,-20 + 173: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + coordinates: -17,-19 + 174: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -28,-20 + 175: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -28,-19 + 176: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -28,-20 + 177: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -28,-19 + 178: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -18,-20 + 179: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -18,-19 + 180: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -18,-20 + 181: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -18,-19 + 182: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -20,-20 + 183: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -20,-19 + 184: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -26,-20 + 185: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -26,-19 + 186: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -20,-20 + 187: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -20,-19 + 188: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -26,-20 + 189: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -26,-19 + 190: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: -18,-15 + 191: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale + coordinates: -18,-11 + 192: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: -15,-11 + 193: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: -14,-12 + 194: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + coordinates: -15,-12 + 195: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: -14,-15 + 196: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -15,-15 + 197: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -16,-15 + 198: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -17,-15 + 199: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -18,-13 + 200: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -18,-12 + 201: + color: '#D381C996' + id: HalfTileOverlayGreyscale + coordinates: -16,-11 + 202: + color: '#D381C996' + id: HalfTileOverlayGreyscale + coordinates: -17,-11 + 203: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + coordinates: -14,-14 + 204: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + coordinates: -14,-13 + 205: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -21,-22 + 206: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -22,-22 + 207: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -23,-22 + 208: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -24,-22 + 209: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -25,-22 + 210: + color: '#D381C996' + id: HalfTileOverlayGreyscale + coordinates: -21,-19 + 211: + color: '#D381C996' + id: HalfTileOverlayGreyscale + coordinates: -22,-19 + 212: + color: '#D381C996' + id: HalfTileOverlayGreyscale + coordinates: -23,-19 + 213: + color: '#D381C996' + id: HalfTileOverlayGreyscale + coordinates: -24,-19 + 214: + color: '#D381C996' + id: HalfTileOverlayGreyscale + coordinates: -25,-19 + 311: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -32,-1 + 312: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -32,-2 + 318: + color: '#474F52FF' + id: CheckerNESW + coordinates: -32,-2 + 319: + color: '#474F52FF' + id: CheckerNESW + coordinates: -32,-1 + 394: + color: '#52B4E996' + id: CheckerNWSE + coordinates: -1,-13 + 395: + color: '#52B4E996' + id: CheckerNWSE + coordinates: -2,-13 + 396: + color: '#52B4E996' + id: CheckerNWSE + coordinates: -2,-12 + 397: + color: '#52B4E996' + id: CheckerNWSE + coordinates: -1,-12 + 410: + color: '#9FED58D6' + id: FullTileOverlayGreyscale + coordinates: -1,-20 + 411: + color: '#9FED58D6' + id: CheckerNWSE + coordinates: -3,-22 + 412: + color: '#9FED58D6' + id: CheckerNWSE + coordinates: -3,-21 + 413: + color: '#9FED58D6' + id: CheckerNWSE + coordinates: -2,-21 + 414: + color: '#9FED58D6' + id: CheckerNWSE + coordinates: -2,-20 + 415: + color: '#9FED58D6' + id: CheckerNWSE + coordinates: -3,-20 + 416: + color: '#9FED58DC' + id: CheckerNWSE + coordinates: -2,-22 + 418: + color: '#D381C996' + id: FullTileOverlayGreyscale + coordinates: -22,-12 + 419: + color: '#D381C996' + id: CheckerNWSE + coordinates: -23,-11 + 420: + color: '#D381C996' + id: CheckerNWSE + coordinates: -23,-10 + 421: + color: '#D381C996' + id: CheckerNWSE + coordinates: -23,-9 + 422: + color: '#D381C996' + id: CheckerNWSE + coordinates: -22,-9 + 423: + color: '#D381C996' + id: CheckerNWSE + coordinates: -22,-10 + 424: + color: '#D381C996' + id: CheckerNWSE + coordinates: -22,-11 + 425: + color: '#D381C996' + id: CheckerNWSE + coordinates: -21,-11 + 426: + color: '#D381C996' + id: CheckerNWSE + coordinates: -21,-10 + 427: + color: '#D381C996' + id: CheckerNWSE + coordinates: -21,-9 + 428: + color: '#D381C996' + id: CheckerNWSE + coordinates: -20,-9 + 429: + color: '#D381C996' + id: CheckerNWSE + coordinates: -20,-10 + 430: + color: '#D381C996' + id: CheckerNWSE + coordinates: -20,-11 + 521: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: -20,-13 + 522: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: -20,-15 + 523: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -21,-15 + 524: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -22,-15 + 525: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -23,-15 + 526: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -24,-15 + 527: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -25,-15 + 528: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -26,-15 + 529: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -27,-15 + 530: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -28,-15 + 531: + color: '#D381C996' + id: HalfTileOverlayGreyscale + coordinates: -21,-13 + 532: + color: '#D381C996' + id: HalfTileOverlayGreyscale + coordinates: -22,-13 + 533: + color: '#D381C996' + id: HalfTileOverlayGreyscale + coordinates: -23,-13 + 534: + color: '#D381C996' + id: HalfTileOverlayGreyscale + coordinates: -24,-13 + 535: + color: '#D381C996' + id: HalfTileOverlayGreyscale + coordinates: -25,-13 + 536: + color: '#D381C996' + id: CheckerNESW + coordinates: -26,-9 + 537: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + coordinates: -28,-15 + 538: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -28,-14 + 539: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -28,-13 + 540: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -28,-12 + 541: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -28,-11 + 542: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -28,-10 + 543: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + coordinates: -26,-12 + 544: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + coordinates: -26,-11 + 545: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + coordinates: -26,-10 + 546: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + coordinates: -26,-13 + 658: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + coordinates: -15,-9 + 659: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + coordinates: -16,-9 + 660: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + coordinates: -17,-9 + 661: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + coordinates: -18,-9 + 662: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + coordinates: -18,-8 + 663: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + coordinates: -19,-7 + 664: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + coordinates: -20,-7 + 665: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + coordinates: -21,-7 + 666: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + coordinates: -23,-7 + 667: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + coordinates: -24,-7 + 668: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + coordinates: -25,-7 + 669: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -27,-8 + 670: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + coordinates: -28,-8 + 671: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + coordinates: -26,-8 + 726: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -26,-8 + 727: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -17,-9 + 728: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -18,-5 + 809: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: -2,-3 + 810: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: -2,-2 + 811: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: -2,-1 + 812: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -4,-3 + 813: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -4,-2 + 828: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -30,-1 + 829: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -30,-2 + 830: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -30,-3 + 835: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -31,-4 + 836: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -31,-5 + 837: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -31,-6 + 838: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -31,-7 + 843: + color: '#FFFFFFFF' + id: Bot + coordinates: -18,-5 + 867: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -30,-8 + 868: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -31,-8 + 869: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -32,-9 + 870: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -28,-7 + 871: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -29,-4 + 872: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -21,-6 + 873: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -24,-6 + 874: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -24,-3 + 875: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -23,-2 + 0,-1: + 52: + color: '#52B4E996' + id: FullTileOverlayGreyscale + coordinates: 1,-3 + 53: + color: '#52B4E996' + id: FullTileOverlayGreyscale + coordinates: 1,-2 + 54: + color: '#52B4E996' + id: FullTileOverlayGreyscale + coordinates: 0,-2 + 55: + color: '#52B4E996' + id: FullTileOverlayGreyscale + coordinates: 1,-1 + 56: + color: '#52B4E996' + id: FullTileOverlayGreyscale + coordinates: 2,-2 + 393: + color: '#52B4E996' + id: CheckerNWSE + coordinates: 0,-13 + 398: + color: '#52B4E996' + id: CheckerNWSE + coordinates: 0,-12 + 399: + color: '#52B4E996' + id: FullTileOverlayGreyscale + coordinates: 1,-13 + 400: + color: '#9FED58D6' + id: CheckerNWSE + coordinates: 2,-22 + 401: + color: '#9FED58D6' + id: CheckerNWSE + coordinates: 1,-22 + 402: + color: '#9FED58D6' + id: CheckerNWSE + coordinates: 0,-22 + 403: + color: '#9FED58D6' + id: CheckerNWSE + coordinates: 0,-21 + 404: + color: '#9FED58D6' + id: CheckerNWSE + coordinates: 1,-21 + 405: + color: '#9FED58D6' + id: CheckerNWSE + coordinates: 2,-21 + 406: + color: '#9FED58D6' + id: CheckerNWSE + coordinates: 2,-20 + 407: + color: '#9FED58D6' + id: CheckerNWSE + coordinates: 1,-20 + 408: + color: '#9FED58D6' + id: CheckerNWSE + coordinates: 0,-20 + 409: + color: '#9FED58D6' + id: FullTileOverlayGreyscale + coordinates: 3,-20 + 417: + color: '#FFFFFFFF' + id: WarnBox + coordinates: 4,-20 + 445: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 11,-5 + 446: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 12,-5 + 447: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 13,-5 + 448: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 13,-9 + 449: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 12,-9 + 450: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 11,-9 + 451: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: 8,-14 + 452: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + coordinates: 8,-11 + 453: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 13,-11 + 454: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 13,-14 + 455: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 12,-14 + 456: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 11,-14 + 457: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 10,-14 + 458: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 9,-14 + 459: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + coordinates: 13,-13 + 460: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + coordinates: 13,-12 + 461: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 12,-11 + 462: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 11,-11 + 463: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 10,-11 + 464: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 9,-11 + 465: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: 8,-13 + 466: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: 8,-12 + 467: + color: '#52B4E996' + id: FullTileOverlayGreyscale + coordinates: 7,-12 + 468: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 6,-12 + 469: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 5,-12 + 470: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 4,-12 + 471: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 3,-12 + 472: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 2,-12 + 473: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 6,-10 + 474: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 5,-10 + 475: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 4,-10 + 476: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 3,-10 + 477: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 2,-10 + 478: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 1,-10 + 479: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 0,-10 + 480: + color: '#52B4E996' + id: FullTileOverlayGreyscale + coordinates: 5,-11 + 481: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + coordinates: 0,-10 + 482: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: 0,-9 + 483: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: 0,-8 + 484: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: 0,-7 + 485: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: 0,-6 + 486: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: 6,-10 + 487: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 6,-9 + 488: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 7,-9 + 489: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 8,-9 + 490: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 9,-9 + 491: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + coordinates: 9,-8 + 492: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 9,-7 + 493: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 8,-7 + 494: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: 7,-7 + 495: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + coordinates: 7,-6 + 496: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + coordinates: 7,-5 + 497: + color: '#52B4E996' + id: FullTileOverlayGreyscale + coordinates: 10,-8 + 498: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 13,-3 + 499: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 12,-3 + 500: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 11,-3 + 501: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 10,-3 + 502: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 13,-1 + 503: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 12,-1 + 504: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 11,-1 + 505: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 10,-1 + 506: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 0,-4 + 507: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 1,-4 + 508: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 2,-4 + 509: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + coordinates: 4,-1 + 510: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: 8,-1 + 511: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 7,-1 + 512: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 6,-1 + 513: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + coordinates: 5,-1 + 514: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + coordinates: 6,-14 + 515: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: 4,-3 + 516: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: 4,-2 + 517: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + coordinates: 8,-2 + 518: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: 8,-3 + 519: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: 7,-3 + 520: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + coordinates: 7,-4 + 804: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: 15,-3 + 805: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: 16,-3 + 806: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: 17,-3 + 807: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + coordinates: 15,-1 + 808: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + coordinates: 16,-1 + 851: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + coordinates: 18,-13 + 852: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + coordinates: 18,-12 + 853: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + coordinates: 18,-11 + 854: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + coordinates: 18,-10 + 855: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + coordinates: 18,-9 + 856: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + coordinates: 18,-8 + 857: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + coordinates: 18,-6 + 858: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + coordinates: 18,-5 + 859: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + coordinates: 18,-4 + -1,0: + 58: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + coordinates: -7,0 + 59: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + coordinates: -7,1 + 60: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + coordinates: -7,2 + 61: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + coordinates: -7,3 + 62: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + coordinates: -7,4 + 63: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + coordinates: -7,5 + 64: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + coordinates: -7,6 + 66: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: -8,7 + 67: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: -9,8 + 68: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + coordinates: -10,9 + 69: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + coordinates: -11,9 + 70: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + coordinates: -12,9 + 71: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale270 + coordinates: -9,9 + 72: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale270 + coordinates: -8,8 + 73: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale270 + coordinates: -7,7 + 82: + color: '#9FED5896' + id: FullTileOverlayGreyscale + coordinates: -8,2 + 83: + color: '#9FED5896' + id: FullTileOverlayGreyscale + coordinates: -9,2 + 85: + color: '#9FED5896' + id: FullTileOverlayGreyscale + coordinates: -13,0 + 86: + color: '#9FED5896' + id: FullTileOverlayGreyscale + coordinates: -13,5 + 87: + color: '#9FED5896' + id: FullTileOverlayGreyscale + coordinates: -13,4 + 88: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: -10,4 + 89: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: -10,0 + 90: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + coordinates: -10,1 + 91: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + coordinates: -10,2 + 92: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + coordinates: -10,3 + 93: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: -13,1 + 94: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + coordinates: -13,3 + 95: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + coordinates: -11,0 + 96: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + coordinates: -12,0 + 97: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + coordinates: -11,4 + 98: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + coordinates: -12,4 + 99: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + coordinates: -13,2 + 100: + color: '#FFFFFFFF' + id: Bot + coordinates: -11,1 + 130: + color: '#FFFFFFFF' + id: Grasse3 + coordinates: -12.113006,8.030721 + 131: + color: '#FFFFFFFF' + id: Grasse3 + coordinates: -11.488006,8.015096 + 132: + color: '#FFFFFFFF' + id: Grassd2 + coordinates: -9.988006,8.077596 + 133: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -11.738006,8.030721 + 134: + color: '#FFFFFFFF' + id: Flowerspv2 + coordinates: -10.706756,7.9838457 + 135: + color: '#FFFFFFFF' + id: Grasse3 + coordinates: -11.644256,5.46193 + 136: + color: '#FFFFFFFF' + id: Grasse3 + coordinates: -11.191131,6.133805 + 137: + color: '#FFFFFFFF' + id: Grasse3 + coordinates: -10.581756,5.46193 + 138: + color: '#FFFFFFFF' + id: Grasse2 + coordinates: -9.456756,5.11818 + 144: + color: '#FFFFFFFF' + id: Grassd2 + coordinates: -9.003631,1.0400547 + 145: + color: '#FFFFFFFF' + id: Grassd2 + coordinates: -8.894256,4.36818 + 146: + color: '#FFFFFFFF' + id: Grassd2 + coordinates: -12.113006,5.02443 + 147: + color: '#FFFFFFFF' + id: Grassd2 + coordinates: -9.941131,6.1786513 + 148: + color: '#FFFFFFFF' + id: Grassb5 + coordinates: -12.097381,6.1005263 + 149: + color: '#FFFFFFFF' + id: Grassb4 + coordinates: -8.925506,5.0127907 + 154: + color: '#FFFFFFFF' + id: Grassb2 + coordinates: -10.691131,4.9822044 + 155: + color: '#FFFFFFFF' + id: Bushf2 + coordinates: -11.378631,5.1072044 + 156: + color: '#FFFFFFFF' + id: Bushf1 + coordinates: -9.909881,6.294704 + 158: + color: '#FFFFFFFF' + id: Flowersy2 + coordinates: -10.050506,5.1072044 + 159: + color: '#FFFFFFFF' + id: Flowersbr2 + coordinates: -12.003631,5.0290794 + 161: + color: '#FFFFFFFF' + id: Flowersy1 + coordinates: -8.972381,0.2478292 + 162: + color: '#FFFFFFFF' + id: Bushg4 + coordinates: -9.000841,3.084465 + 163: + color: '#FFFFFFFF' + id: Bushg3 + coordinates: -10.578966,6.209465 + 215: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: -24,13 + 216: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + coordinates: -24,14 + 217: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + coordinates: -24,15 + 218: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + coordinates: -24,16 + 219: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + coordinates: -24,17 + 220: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + coordinates: -24,18 + 221: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + coordinates: -24,19 + 222: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + coordinates: -24,20 + 223: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + coordinates: -24,21 + 224: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -16,16 + 225: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -16,17 + 226: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -16,18 + 227: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -16,19 + 228: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -16,20 + 229: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + coordinates: -16,20 + 230: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + coordinates: -17,20 + 231: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -17,21 + 232: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -17,22 + 233: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -25,16 + 234: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -24,16 + 235: + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -22,22 + 236: + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -22,20 + 237: + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -22,21 + 238: + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -23,22 + 239: + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -21,22 + 240: + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -23,19 + 241: + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -21,18 + 242: + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -20,21 + 243: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -21,21 + 244: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -20,22 + 245: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -19,20 + 246: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -24,20 + 247: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -24,21 + 248: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -23,20 + 249: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -23,17 + 250: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -24,18 + 251: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -22,17 + 252: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -23,15 + 253: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -16,16 + 254: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -17,17 + 255: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -27,12 + 256: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -27,11 + 257: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -26,12 + 258: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -23,11 + 287: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -31,2 + 304: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -32,6 + 305: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -32,5 + 306: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -32,4 + 307: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -32,3 + 308: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -32,2 + 309: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -32,1 + 310: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -32,0 + 320: + color: '#474F52FF' + id: CheckerNESW + coordinates: -32,0 + 321: + color: '#474F52FF' + id: CheckerNESW + coordinates: -32,1 + 322: + color: '#474F52FF' + id: CheckerNESW + coordinates: -32,2 + 323: + color: '#474F52FF' + id: CheckerNESW + coordinates: -32,3 + 324: + color: '#474F52FF' + id: CheckerNESW + coordinates: -32,4 + 325: + color: '#474F52FF' + id: CheckerNESW + coordinates: -32,5 + 326: + color: '#474F52FF' + id: CheckerNESW + coordinates: -32,6 + 329: + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -31,2 + 330: + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -32,2 + 331: + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -32,3 + 335: + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -32,5 + 342: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -32,4 + 437: + angle: -3.141592653589793 rad + color: '#A4610696' + id: FullTileOverlayGreyscale + coordinates: -25,20 + 438: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -26,19 + 439: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -26,20 + 440: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -26,21 + 547: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: -16,13 + 548: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -16,14 + 549: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -16,15 + 550: + color: '#A4610696' + id: CheckerNESW + coordinates: -32,19 + 551: + color: '#A4610696' + id: CheckerNESW + coordinates: -32,20 + 577: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + coordinates: -17,13 + 578: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + coordinates: -18,13 + 579: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + coordinates: -19,13 + 580: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + coordinates: -23,13 + 581: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + coordinates: -22,13 + 582: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + coordinates: -21,13 + 583: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + coordinates: -20,13 + 584: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -17,23 + 585: + color: '#A4610696' + id: FullTileOverlayGreyscale + coordinates: -25,16 + 586: + color: '#A4610696' + id: FullTileOverlayGreyscale + coordinates: -25,17 + 587: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -26,14 + 588: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -26,15 + 589: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -26,16 + 590: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -26,17 + 591: + color: '#A4610696' + id: HalfTileOverlayGreyscale + coordinates: -30,17 + 592: + color: '#A4610696' + id: HalfTileOverlayGreyscale + coordinates: -31,17 + 593: + color: '#A4610696' + id: HalfTileOverlayGreyscale + coordinates: -32,17 + 597: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + coordinates: -28,19 + 598: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + coordinates: -28,20 + 599: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + coordinates: -28,21 + 600: + color: '#FFFFFFFF' + id: Delivery + coordinates: -30,16 + 601: + color: '#FFFFFFFF' + id: Bot + coordinates: -31,16 + 602: + color: '#FFFFFFFF' + id: Bot + coordinates: -32,16 + 603: + color: '#FFFFFFFF' + id: Bot + coordinates: -18,14 + 604: + color: '#FFFFFFFF' + id: Bot + coordinates: -19,14 + 605: + color: '#FFFFFFFF' + id: Bot + coordinates: -19,16 + 606: + color: '#FFFFFFFF' + id: Bot + coordinates: -18,16 + 607: + color: '#FFFFFFFF' + id: Bot + coordinates: -19,18 + 608: + color: '#FFFFFFFF' + id: Bot + coordinates: -18,18 + 609: + color: '#FFFFFFFF' + id: Delivery + coordinates: -19,20 + 610: + color: '#FFFFFFFF' + id: Delivery + coordinates: -18,20 + 611: + color: '#FFFFFFFF' + id: Delivery + coordinates: -20,14 + 612: + color: '#FFFFFFFF' + id: Delivery + coordinates: -20,16 + 613: + color: '#FFFFFFFF' + id: Delivery + coordinates: -20,18 + 614: + color: '#FFFFFFFF' + id: Delivery + coordinates: -20,20 + 615: + color: '#FFFFFFFF' + id: LoadingArea + coordinates: -19,21 + 616: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + coordinates: -23,21 + 617: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + coordinates: -26,15 + 618: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -17,23 + 619: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -18,23 + 620: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -19,23 + 621: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -20,23 + 622: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -21,23 + 623: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -22,23 + 624: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -23,23 + 625: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -16,13 + 626: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -17,13 + 627: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -24,16 + 628: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -23,17 + 629: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -22,15 + 630: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -21,14 + 631: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -23,14 + 632: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -24,15 + 633: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -23,16 + 634: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -26,16 + 635: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -27,15 + 636: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -28,14 + 637: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -24,18 + 638: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -28,19 + 639: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -27,21 + 640: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -19,13 + 641: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -20,13 + 642: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -21,15 + 643: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -17,15 + 644: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -19,17 + 645: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -17,19 + 672: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + coordinates: -16,11 + 673: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + coordinates: -17,11 + 674: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + coordinates: -18,11 + 675: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + coordinates: -19,11 + 676: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + coordinates: -20,11 + 677: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + coordinates: -21,11 + 678: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + coordinates: -23,11 + 679: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + coordinates: -24,11 + 680: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + coordinates: -25,11 + 681: + color: '#A4610696' + id: HalfTileOverlayGreyscale + coordinates: -26,12 + 682: + color: '#A4610696' + id: HalfTileOverlayGreyscale + coordinates: -27,12 + 683: + color: '#A4610696' + id: HalfTileOverlayGreyscale + coordinates: -28,12 + 684: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + coordinates: -29,12 + 729: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + coordinates: -2,5 + 730: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + coordinates: -2,6 + 731: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + coordinates: -2,7 + 732: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + coordinates: -4,6 + 733: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + coordinates: -4,7 + 820: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + coordinates: -30,2 + 821: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + coordinates: -30,3 + 822: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + coordinates: -30,4 + 823: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + coordinates: -30,5 + 824: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + coordinates: -30,6 + 825: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + coordinates: -30,7 + 826: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -30,1 + 827: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -30,0 + 831: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + coordinates: -31,8 + 832: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + coordinates: -31,9 + 833: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + coordinates: -31,10 + 834: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + coordinates: -31,11 + 839: + color: '#FFFFFFFF' + id: Bot + coordinates: -31,8 + 840: + color: '#FFFFFFFF' + id: Bot + coordinates: -16,17 + 841: + color: '#FFFFFFFF' + id: Bot + coordinates: -12,13 + 842: + color: '#FFFFFFFF' + id: Bot + coordinates: -18,9 + 860: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + coordinates: -21,9 + 861: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + coordinates: -20,9 + 862: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + coordinates: -19,9 + 863: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + coordinates: -17,9 + 864: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + coordinates: -16,9 + 865: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + coordinates: -15,9 + 866: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + coordinates: -14,9 + 876: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -24,7 + 877: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -25,9 + 878: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -28,9 + 879: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -29,8 + 880: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -29,6 + 881: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -30,4 + 882: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -30,0 + 883: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -16,10 + 884: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -7,9 + -2,-1: + 259: + color: '#FFFFFFFF' + id: WarningLine + coordinates: -40,-16 + 260: + color: '#FFFFFFFF' + id: WarningLine + coordinates: -41,-16 + 261: + color: '#FFFFFFFF' + id: WarningLine + coordinates: -42,-16 + 262: + color: '#FFFFFFFF' + id: WarningLine + coordinates: -43,-16 + 263: + color: '#FFFFFFFF' + id: WarningLine + coordinates: -44,-16 + 264: + color: '#FFFFFFFF' + id: Arrows + coordinates: -41,-15 + 265: + color: '#FFFFFFFF' + id: Arrows + coordinates: -43,-15 + 266: + color: '#FFFFFFFF' + id: StandClear + coordinates: -42,-15 + 267: + color: '#FFFFFFFF' + id: Bot + coordinates: -43,-12 + 268: + color: '#FFFFFFFF' + id: Bot + coordinates: -41,-12 + 269: + color: '#FFFFFFFF' + id: Delivery + coordinates: -45,-11 + 270: + color: '#FFFFFFFF' + id: BotRight + coordinates: -45,-12 + 271: + color: '#FFFFFFFF' + id: BotRight + coordinates: -45,-13 + 272: + color: '#FFFFFFFF' + id: BotRight + coordinates: -45,-14 + 273: + color: '#FFFFFFFF' + id: BotRight + coordinates: -45,-15 + 288: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -33,-1 + 289: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -34,-1 + 313: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -33,-2 + 314: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -34,-2 + 315: + color: '#D4D4D428' + id: CheckerNESW + coordinates: -34,-2 + 316: + color: '#474F52FF' + id: CheckerNESW + coordinates: -34,-2 + 317: + color: '#474F52FF' + id: CheckerNESW + coordinates: -33,-2 + 338: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -34,-1 + 339: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -33,-1 + 340: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -33,-2 + 359: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + coordinates: -36,-1 + 360: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale180 + coordinates: -36,-2 + 361: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + coordinates: -37,-2 + 362: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + coordinates: -38,-2 + 363: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + coordinates: -39,-2 + 364: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + coordinates: -40,-2 + 365: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + coordinates: -41,-2 + 366: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + coordinates: -42,-2 + 367: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + coordinates: -43,-2 + 368: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + coordinates: -44,-2 + 369: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -33,-3 + 370: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -36,-3 + 371: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + coordinates: -33,-4 + 372: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + coordinates: -34,-4 + 373: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + coordinates: -35,-4 + 374: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + coordinates: -36,-4 + 376: + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -36,-2 + 377: + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -37,-2 + 378: + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -38,-2 + 379: + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -37,-1 + 384: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -39,-2 + 385: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -36,-1 + 391: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -40,-1 + 392: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -42,-1 + 431: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -44,-1 + 432: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -43,-1 + 433: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -42,-1 + 434: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -41,-1 + 436: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLineCorner + coordinates: -40,-1 + -2,0: + 274: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -40,20 + 275: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -41,20 + 276: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -42,20 + 277: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -43,20 + 278: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -44,20 + 279: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + coordinates: -41,19 + 280: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + coordinates: -43,19 + 281: + color: '#FFFFFFFF' + id: StandClear + coordinates: -42,19 + 282: + color: '#FFFFFFFF' + id: Bot + coordinates: -41,18 + 283: + color: '#FFFFFFFF' + id: Bot + coordinates: -43,18 + 284: + color: '#FFFFFFFF' + id: Delivery + coordinates: -45,19 + 285: + color: '#FFFFFFFF' + id: BotRight + coordinates: -45,18 + 286: + color: '#FFFFFFFF' + id: BotRight + coordinates: -45,17 + 290: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -34,0 + 291: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -33,0 + 292: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -33,1 + 293: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -34,1 + 294: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -34,2 + 295: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -33,2 + 296: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -33,3 + 297: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -34,3 + 298: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -34,4 + 299: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -33,4 + 300: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -33,5 + 301: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -34,5 + 302: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -34,6 + 303: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -33,6 + 327: + color: '#474F52FF' + id: CheckerNESW + coordinates: -33,6 + 328: + color: '#474F52FF' + id: CheckerNESW + coordinates: -34,6 + 332: + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -33,1 + 333: + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -33,6 + 334: + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -33,5 + 336: + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -33,3 + 337: + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -33,0 + 341: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -33,4 + 343: + color: '#FFFFFFFF' + id: WarningLine + coordinates: -44,5 + 344: + color: '#FFFFFFFF' + id: WarningLine + coordinates: -43,5 + 345: + color: '#FFFFFFFF' + id: WarningLine + coordinates: -41,5 + 346: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -40,4 + 347: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -40,3 + 348: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -40,2 + 349: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -40,1 + 350: + color: '#FFFFFFFF' + id: WarningLineCornerFlipped + coordinates: -40,5 + 351: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -33,7 + 352: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + coordinates: -36,6 + 353: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + coordinates: -36,5 + 354: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + coordinates: -36,4 + 355: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + coordinates: -36,3 + 356: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + coordinates: -36,2 + 357: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + coordinates: -36,1 + 358: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + coordinates: -36,0 + 375: + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -36,6 + 380: + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -37,0 + 381: + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -37,6 + 382: + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -37,4 + 383: + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -39,3 + 386: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -37,1 + 387: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -37,3 + 388: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -37,5 + 389: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -38,6 + 390: + color: '#FFFFFFFF' + id: DirtLight + coordinates: -39,2 + 435: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarningLine + coordinates: -40,0 + 441: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -41,9 + 442: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -43,6 + 443: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -41,6 + 444: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -40,5 + 552: + color: '#A4610696' + id: CheckerNESW + coordinates: -33,20 + 553: + color: '#A4610696' + id: CheckerNESW + coordinates: -33,21 + 554: + color: '#A4610696' + id: CheckerNESW + coordinates: -33,19 + 555: + color: '#A4610696' + id: CheckerNESW + coordinates: -34,19 + 556: + color: '#A4610696' + id: CheckerNESW + coordinates: -34,20 + 557: + color: '#A4610696' + id: CheckerNESW + coordinates: -34,21 + 558: + color: '#A4610696' + id: CheckerNESW + coordinates: -35,21 + 559: + color: '#A4610696' + id: CheckerNESW + coordinates: -35,20 + 560: + color: '#A4610696' + id: CheckerNESW + coordinates: -35,19 + 561: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + coordinates: -45,15 + 562: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + coordinates: -45,16 + 563: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -40,15 + 564: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -40,16 + 565: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + coordinates: -39,16 + 566: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + coordinates: -39,17 + 567: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + coordinates: -39,18 + 568: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + coordinates: -39,19 + 569: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: -37,19 + 570: + color: '#A4610696' + id: FullTileOverlayGreyscale + coordinates: -36,19 + 571: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + coordinates: -36,17 + 572: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -36,16 + 573: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -37,18 + 574: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + coordinates: -37,17 + 575: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + coordinates: -39,15 + 576: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + coordinates: -36,15 + 594: + color: '#A4610696' + id: HalfTileOverlayGreyscale + coordinates: -33,17 + 595: + color: '#A4610696' + id: HalfTileOverlayGreyscale + coordinates: -34,17 + 596: + color: '#A4610696' + id: FullTileOverlayGreyscale + coordinates: -33,18 + 646: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -43,16 + 647: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -42,16 + 648: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -41,15 + 649: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -38,19 + 650: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -39,18 + 651: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -39,19 + 652: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -38,18 + 653: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -38,16 + 654: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -38,17 + 655: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -37,15 + 656: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -38,15 + 657: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -44,16 + 685: + color: '#FFFFFFFF' + id: Bot + coordinates: -43,9 + 686: + color: '#FFFFFFFF' + id: BotRight + coordinates: -44,10 + 687: + color: '#FFFFFFFF' + id: BotRight + coordinates: -42,8 + 688: + color: '#FFFFFFFF' + id: BotLeft + coordinates: -42,10 + 689: + color: '#FFFFFFFF' + id: BotLeft + coordinates: -44,8 + 690: + color: '#FFFFFFFF' + id: BotGreyscale + coordinates: -43,8 + 691: + color: '#FFFFFFFF' + id: BotGreyscale + coordinates: -44,9 + 692: + color: '#FFFFFFFF' + id: BotGreyscale + coordinates: -43,10 + 693: + color: '#FFFFFFFF' + id: BotGreyscale + coordinates: -42,9 + 694: + color: '#FFFFFFFF' + id: WarningLine + coordinates: -42,5 + 695: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -39,8 + 696: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -40,8 + 697: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -40,9 + 698: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -39,9 + 699: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -39,10 + 700: + color: '#EFB34196' + id: CheckerNWSE + coordinates: -40,10 + 701: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -38,9 + 702: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + coordinates: -33,8 + 703: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + coordinates: -34,8 + 704: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + coordinates: -35,8 + 705: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + coordinates: -36,8 + 706: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + coordinates: -37,8 + 707: + color: '#EFB34196' + id: FullTileOverlayGreyscale + coordinates: -36,7 + 708: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + coordinates: -33,10 + 709: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + coordinates: -34,10 + 710: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + coordinates: -35,10 + 711: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + coordinates: -36,10 + 712: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + coordinates: -37,10 + 713: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -33,8 + 714: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -35,9 + 715: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -36,9 + 716: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -36,8 + 717: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + coordinates: -37,9 + 718: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -39,9 + 719: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + coordinates: -36,10 + 720: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -37,10 + 721: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -35,10 + 722: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -34,9 + 723: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -36,7 + 724: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -40,9 + 725: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + coordinates: -34,10 + type: DecalGrid + - tiles: + -5,-2: 0 + -5,-1: 1 + -4,-10: 1 + -4,-4: 1 + -4,-3: 1 + -3,-11: 1 + -3,-8: 0 + -3,-7: 0 + -3,-6: 0 + -2,-11: 0 + -2,-9: 0 + -2,-8: 0 + -2,-7: 0 + -2,-6: 0 + -2,-5: 0 + -2,-4: 0 + -2,-3: 0 + -2,-1: 0 + -1,-11: 1 + -1,-9: 0 + -1,-8: 0 + -1,-7: 0 + -1,-6: 0 + -1,-5: 0 + -1,-4: 0 + -1,-3: 0 + -1,-1: 0 + -5,5: 1 + -5,6: 0 + -5,7: 0 + -4,1: 0 + -4,2: 0 + -4,3: 0 + -4,7: 1 + -4,8: 0 + -4,9: 1 + -3,12: 1 + -3,13: 1 + -3,14: 1 + -2,0: 0 + -2,1: 0 + -2,2: 0 + -2,3: 0 + -2,4: 0 + -2,5: 0 + -2,7: 0 + -2,8: 0 + -2,9: 0 + -2,10: 0 + -1,0: 0 + -1,1: 0 + -1,2: 0 + -1,3: 0 + -1,4: 0 + -1,5: 0 + -1,7: 0 + -1,8: 0 + -1,9: 0 + -1,10: 0 + -1,12: 0 + -1,13: 0 + -1,14: 0 + 0,-11: 0 + 0,-9: 0 + 0,-8: 0 + 0,-7: 0 + 0,-6: 0 + 0,-5: 0 + 0,-4: 0 + 0,-3: 0 + 1,-11: 0 + 1,-9: 0 + 1,-8: 0 + 1,-7: 0 + 1,-6: 0 + 1,-5: 0 + 1,-4: 0 + 1,-3: 0 + 1,-1: 0 + 2,-11: 0 + 2,-9: 0 + 2,-8: 0 + 2,-7: 0 + 2,-6: 0 + 2,-5: 0 + 2,-4: 0 + 2,-3: 0 + 2,-1: 0 + 3,-11: 0 + 3,-9: 0 + 3,-8: 0 + 3,-7: 0 + 3,-6: 0 + 3,-5: 0 + 3,-4: 0 + 3,-3: 0 + 3,-1: 0 + 4,-11: 0 + 4,-8: 0 + 4,-7: 0 + 4,-6: 0 + 5,-10: 1 + 5,-4: 0 + 5,-3: 1 + 6,-2: 0 + 6,-1: 1 + 0,7: 0 + 0,8: 0 + 0,9: 0 + 0,10: 0 + 0,12: 0 + 0,13: 0 + 0,14: 0 + 0,15: 0 + 1,0: 0 + 1,1: 0 + 1,2: 0 + 1,3: 0 + 1,4: 0 + 1,5: 0 + 1,7: 0 + 1,8: 0 + 1,9: 0 + 1,10: 0 + 1,12: 0 + 1,13: 0 + 1,14: 0 + 1,15: 0 + 2,0: 0 + 2,1: 0 + 2,2: 0 + 2,3: 0 + 2,4: 0 + 2,5: 0 + 2,7: 0 + 2,8: 0 + 2,9: 0 + 2,10: 0 + 2,12: 0 + 2,13: 0 + 2,14: 0 + 3,0: 0 + 3,1: 0 + 3,2: 0 + 3,3: 0 + 3,4: 0 + 3,5: 0 + 3,7: 0 + 3,8: 0 + 3,9: 0 + 3,10: 0 + 4,12: 0 + 4,13: 0 + 4,14: 0 + 5,1: 0 + 5,2: 0 + 5,3: 0 + 5,7: 1 + 5,8: 1 + 5,9: 1 + 6,1: 0 + 6,2: 0 + 6,3: 0 + 6,5: 0 + 6,6: 0 + 6,7: 0 + 0,17: 0 + 1,17: 0 + 2,17: 0 + 3,16: 0 + -2,16: 1 + -1,17: 0 + -4,-9: 0 + -4,-8: 0 + -4,-7: 0 + -4,-6: 0 + -4,-5: 0 + -3,-10: 0 + -3,-9: 0 + -3,-5: 0 + -3,-4: 2 + -3,-3: 0 + -3,-2: 0 + -3,-1: 0 + -2,-10: 0 + -2,-2: 0 + -1,-10: 0 + -1,-2: 0 + -5,0: 0 + -5,1: 0 + -5,2: 0 + -5,3: 0 + -5,4: 0 + -4,0: 0 + -4,4: 0 + -3,0: 0 + -3,1: 0 + -3,2: 0 + -3,3: 0 + -3,4: 0 + -3,5: 0 + -3,6: 0 + -3,7: 0 + -3,8: 0 + -3,9: 0 + -3,10: 0 + -3,11: 0 + -2,6: 0 + -2,11: 0 + -2,12: 0 + -2,13: 0 + -2,14: 0 + -2,15: 0 + -1,6: 0 + -1,11: 0 + -1,15: 0 + 0,-10: 0 + 0,-2: 0 + 0,-1: 0 + 1,-10: 0 + 1,-2: 0 + 2,-10: 0 + 2,-2: 0 + 3,-10: 0 + 3,-2: 0 + 4,-10: 0 + 4,-9: 0 + 4,-5: 0 + 4,-4: 0 + 4,-3: 0 + 4,-2: 0 + 4,-1: 0 + 5,-9: 0 + 5,-8: 0 + 5,-7: 0 + 5,-6: 0 + 5,-5: 0 + 0,0: 0 + 0,1: 0 + 0,2: 0 + 0,3: 0 + 0,4: 0 + 0,5: 0 + 0,6: 0 + 0,11: 0 + 1,6: 0 + 1,11: 0 + 2,6: 0 + 2,11: 0 + 2,15: 0 + 3,6: 0 + 3,11: 0 + 3,12: 0 + 3,13: 0 + 3,14: 0 + 3,15: 0 + 4,0: 0 + 4,1: 0 + 4,2: 0 + 4,3: 0 + 4,4: 0 + 4,5: 0 + 4,6: 0 + 4,7: 0 + 4,8: 0 + 4,9: 0 + 4,10: 0 + 4,11: 0 + 5,0: 0 + 5,4: 0 + 6,0: 0 + 6,4: 0 + 0,16: 0 + 1,16: 0 + 2,16: 0 + -1,16: 0 + -15,12: 0 + -15,13: 0 + -15,14: 0 + -15,15: 0 + -14,0: 0 + -14,1: 0 + -14,2: 0 + -14,3: 0 + -14,4: 0 + -14,5: 0 + -14,6: 0 + -14,12: 0 + -14,13: 0 + -14,14: 0 + -14,15: 0 + -13,0: 0 + -13,1: 0 + -13,2: 0 + -13,3: 0 + -13,4: 0 + -13,5: 0 + -13,6: 0 + -13,7: 0 + -13,8: 0 + -13,9: 0 + -13,10: 0 + -13,11: 0 + -13,12: 0 + -13,13: 0 + -13,14: 0 + -13,15: 0 + -12,0: 0 + -12,1: 0 + -12,2: 0 + -12,3: 0 + -12,4: 0 + -12,5: 0 + -12,6: 0 + -12,7: 0 + -12,8: 0 + -12,9: 0 + -12,10: 0 + -12,11: 0 + -12,12: 0 + -12,13: 0 + -12,14: 0 + -12,15: 0 + -11,0: 0 + -11,1: 0 + -11,2: 0 + -11,3: 0 + -11,4: 0 + -11,5: 0 + -11,6: 0 + -11,7: 0 + -11,8: 0 + -11,9: 0 + -11,10: 0 + -11,11: 0 + -11,12: 0 + -11,13: 0 + -11,14: 0 + -11,15: 0 + -10,0: 0 + -10,1: 0 + -10,2: 0 + -10,3: 0 + -10,4: 0 + -10,5: 0 + -10,6: 0 + -10,7: 0 + -10,8: 0 + -10,9: 0 + -10,10: 0 + -10,11: 0 + -10,12: 0 + -10,13: 0 + -10,14: 0 + -10,15: 0 + -9,0: 0 + -9,1: 0 + -9,2: 0 + -9,3: 0 + -9,4: 0 + -9,5: 0 + -9,6: 0 + -9,7: 0 + -9,8: 0 + -9,9: 0 + -9,10: 0 + -9,11: 0 + -9,12: 0 + -9,13: 0 + -9,14: 0 + -9,15: 0 + -8,0: 0 + -8,1: 0 + -8,2: 0 + -8,3: 0 + -8,4: 0 + -8,5: 0 + -8,6: 0 + -8,7: 0 + -8,8: 0 + -8,9: 0 + -8,10: 0 + -8,11: 0 + -8,12: 0 + -8,13: 0 + -8,14: 0 + -8,15: 0 + -7,0: 0 + -7,1: 0 + -7,2: 0 + -7,3: 0 + -7,4: 0 + -7,5: 0 + -7,6: 0 + -7,7: 0 + -7,8: 0 + -7,9: 0 + -7,10: 0 + -7,11: 0 + -7,12: 0 + -7,13: 0 + -7,14: 0 + -7,15: 0 + -6,0: 0 + -6,1: 0 + -6,2: 0 + -6,3: 0 + -6,4: 0 + -6,5: 0 + -6,6: 0 + -6,7: 0 + -6,8: 0 + -6,9: 0 + -6,10: 0 + -6,11: 0 + -6,12: 0 + -6,13: 0 + -6,14: 0 + -6,15: 0 + -5,8: 0 + -5,9: 0 + -5,10: 0 + -5,11: 0 + -5,12: 0 + -5,13: 0 + -5,14: 0 + -5,15: 0 + -4,5: 0 + -4,6: 0 + -4,10: 0 + -4,11: 0 + -4,12: 0 + -4,13: 0 + -4,14: 0 + -4,15: 0 + -3,15: 0 + -14,-2: 0 + -14,-1: 0 + -13,-8: 0 + -13,-7: 0 + -13,-6: 0 + -13,-5: 0 + -13,-4: 0 + -13,-3: 0 + -13,-2: 0 + -13,-1: 0 + -12,-8: 0 + -12,-7: 0 + -12,-6: 0 + -12,-5: 0 + -12,-4: 0 + -12,-3: 0 + -12,-2: 0 + -12,-1: 0 + -11,-8: 0 + -11,-7: 0 + -11,-6: 0 + -11,-5: 0 + -11,-4: 0 + -11,-3: 0 + -11,-2: 0 + -11,-1: 0 + -10,-8: 0 + -10,-7: 0 + -10,-6: 0 + -10,-5: 0 + -10,-4: 0 + -10,-3: 0 + -10,-2: 0 + -10,-1: 0 + -9,-8: 0 + -9,-7: 0 + -9,-6: 0 + -9,-5: 0 + -9,-4: 0 + -9,-3: 0 + -9,-2: 0 + -9,-1: 0 + -8,-8: 0 + -8,-7: 0 + -8,-6: 0 + -8,-5: 0 + -8,-4: 0 + -8,-3: 0 + -8,-2: 0 + -8,-1: 0 + -7,-8: 0 + -7,-7: 0 + -7,-6: 0 + -7,-5: 0 + -7,-4: 0 + -7,-3: 0 + -7,-2: 0 + -7,-1: 0 + -6,-8: 0 + -6,-7: 0 + -6,-6: 0 + -6,-5: 0 + -6,-4: 0 + -6,-3: 0 + -6,-2: 0 + -6,-1: 0 + -5,-8: 0 + -5,-7: 0 + -5,-6: 0 + -5,-5: 0 + -5,-4: 0 + -5,-3: 0 + -4,-2: 0 + -4,-1: 0 + 4,15: 0 + 5,5: 0 + 5,6: 0 + 5,10: 0 + 5,11: 0 + 5,12: 0 + 5,13: 0 + 5,14: 0 + 5,15: 0 + 6,8: 0 + 6,9: 0 + 6,10: 0 + 6,11: 0 + 6,12: 0 + 6,13: 0 + 6,14: 0 + 6,15: 0 + 7,0: 0 + 7,1: 0 + 7,2: 0 + 7,3: 0 + 7,4: 0 + 7,5: 0 + 7,6: 0 + 7,7: 0 + 7,8: 0 + 7,9: 0 + 7,10: 0 + 7,11: 0 + 7,12: 0 + 7,13: 0 + 7,14: 0 + 7,15: 0 + 8,0: 0 + 8,1: 0 + 8,2: 0 + 8,3: 0 + 8,4: 0 + 8,5: 0 + 8,6: 0 + 8,7: 0 + 8,8: 0 + 8,9: 0 + 8,10: 0 + 8,11: 0 + 8,12: 0 + 8,13: 0 + 8,14: 0 + 8,15: 0 + 9,0: 0 + 9,1: 0 + 9,2: 0 + 9,3: 0 + 9,4: 0 + 9,5: 0 + 9,6: 0 + 9,7: 0 + 9,8: 0 + 9,9: 0 + 9,10: 0 + 9,11: 0 + 9,12: 0 + 9,13: 0 + 9,14: 0 + 9,15: 0 + 10,0: 0 + 10,1: 0 + 10,2: 0 + 10,3: 0 + 10,4: 0 + 10,5: 0 + 10,6: 0 + 10,7: 0 + 10,8: 0 + 10,9: 0 + 10,10: 0 + 10,11: 0 + 10,12: 0 + 10,13: 0 + 10,14: 0 + 10,15: 0 + 11,0: 0 + 11,1: 0 + 11,2: 0 + 11,3: 0 + 11,4: 0 + 11,5: 0 + 11,6: 0 + 11,7: 0 + 11,8: 0 + 11,9: 0 + 11,10: 0 + 11,11: 0 + 11,12: 0 + 11,13: 0 + 11,14: 0 + 11,15: 0 + 12,0: 0 + 12,1: 0 + 12,2: 0 + 12,3: 0 + 12,4: 0 + 12,5: 0 + 12,6: 0 + 12,7: 0 + 12,8: 0 + 12,9: 0 + 12,10: 0 + 12,11: 0 + 12,12: 0 + 12,13: 0 + 12,14: 0 + 12,15: 0 + 13,0: 0 + 13,1: 0 + 13,2: 0 + 13,3: 0 + 13,4: 0 + 13,5: 0 + 13,6: 0 + 13,7: 0 + 13,8: 0 + 13,9: 0 + 13,10: 0 + 13,11: 0 + 13,12: 0 + 13,13: 0 + 13,14: 0 + 13,15: 0 + 14,0: 0 + 14,1: 0 + 14,2: 0 + 14,3: 0 + 14,4: 0 + 14,5: 0 + 14,6: 0 + 14,7: 0 + 14,8: 0 + 14,9: 0 + 14,10: 0 + 14,11: 0 + 14,12: 0 + 14,13: 0 + 14,14: 0 + 14,15: 0 + 15,0: 0 + 15,1: 0 + 15,2: 0 + 15,3: 0 + 15,4: 0 + 15,5: 0 + 15,6: 0 + 15,7: 0 + 15,8: 0 + 15,9: 0 + 15,10: 0 + 15,11: 0 + 15,12: 0 + 15,13: 0 + 15,14: 0 + 15,15: 0 + 16,0: 0 + 16,1: 0 + 16,2: 0 + 16,3: 0 + 16,4: 0 + 16,5: 0 + 16,6: 0 + 16,7: 0 + 16,8: 0 + 16,9: 0 + 16,10: 0 + 16,11: 0 + 16,12: 0 + 16,13: 0 + 16,14: 0 + 16,15: 0 + 17,1: 0 + 17,2: 0 + 17,3: 0 + 17,4: 0 + 17,5: 0 + 17,6: 0 + 17,7: 0 + 17,8: 0 + 17,9: 0 + 17,10: 0 + 17,11: 0 + 17,12: 0 + 17,13: 0 + 17,14: 0 + 17,15: 0 + 18,1: 0 + 18,2: 0 + 18,3: 0 + 18,4: 0 + 18,5: 0 + 18,6: 0 + 18,7: 0 + 18,8: 0 + 18,9: 0 + 18,10: 0 + 18,11: 0 + 18,12: 0 + 18,13: 0 + 18,14: 0 + 18,15: 0 + 19,1: 0 + 19,2: 0 + 19,3: 0 + 19,4: 0 + 19,5: 0 + 19,6: 0 + 19,7: 0 + 19,8: 0 + 19,9: 0 + 19,10: 0 + 19,11: 0 + 19,12: 0 + 19,13: 0 + 19,14: 0 + 19,15: 0 + 20,0: 0 + 20,1: 0 + 20,2: 0 + 20,3: 0 + 20,4: 0 + 20,5: 0 + 20,6: 0 + 20,7: 0 + 20,8: 0 + 20,9: 0 + 20,10: 0 + 20,11: 0 + 20,12: 0 + 20,13: 0 + 20,14: 0 + 20,15: 0 + 21,0: 0 + 21,1: 0 + 21,2: 0 + 21,3: 0 + 21,4: 0 + 21,5: 0 + 21,6: 0 + 21,7: 0 + 21,8: 0 + 21,9: 0 + 21,10: 0 + 21,11: 0 + 21,12: 0 + 21,13: 0 + 21,14: 0 + 21,15: 0 + 22,0: 0 + 22,1: 0 + 22,2: 0 + 22,3: 0 + 22,4: 0 + 22,5: 0 + 22,6: 0 + 22,7: 0 + 22,8: 0 + 22,9: 0 + 22,10: 0 + 22,11: 0 + 22,12: 0 + 22,13: 0 + 22,14: 0 + 22,15: 0 + 23,0: 0 + 23,1: 0 + 23,2: 0 + 23,3: 0 + 23,4: 0 + 23,5: 0 + 23,6: 0 + 23,7: 0 + 23,8: 0 + 23,9: 0 + 23,10: 0 + 23,11: 0 + 23,12: 0 + 23,13: 0 + 23,14: 0 + 23,15: 0 + 24,0: 0 + 24,1: 0 + 24,2: 0 + 24,3: 0 + 24,4: 0 + 24,5: 0 + 24,6: 0 + 24,7: 0 + 24,8: 0 + 24,9: 0 + 24,10: 0 + 24,11: 0 + 24,12: 0 + 24,13: 0 + 24,14: 0 + 24,15: 0 + 25,0: 0 + 25,1: 0 + 25,2: 0 + 25,3: 0 + 25,4: 0 + 25,5: 0 + 25,6: 0 + 25,7: 0 + 25,8: 0 + 25,9: 0 + 25,10: 0 + 25,11: 0 + 25,12: 0 + 25,13: 0 + 25,14: 0 + 25,15: 0 + 26,0: 0 + 26,1: 0 + 26,2: 0 + 26,3: 0 + 26,4: 0 + 26,5: 0 + 26,6: 0 + 26,7: 0 + 26,8: 0 + 26,9: 0 + 26,10: 0 + 26,11: 0 + 26,12: 0 + 26,13: 0 + 26,14: 0 + 26,15: 0 + 27,0: 0 + 27,1: 0 + 27,2: 0 + 27,3: 0 + 27,4: 0 + 27,5: 0 + 27,6: 0 + 27,7: 0 + 27,8: 0 + 27,9: 0 + 27,10: 0 + 27,11: 0 + 27,12: 0 + 27,13: 0 + 27,14: 0 + 27,15: 0 + 28,0: 0 + 28,1: 0 + 28,2: 0 + 28,3: 0 + 28,4: 0 + 28,5: 0 + 28,6: 0 + 28,7: 0 + 28,8: 0 + 28,9: 0 + 28,10: 0 + 28,11: 0 + 28,12: 0 + 28,13: 0 + 28,14: 0 + 28,15: 0 + 29,0: 0 + 29,1: 0 + 29,2: 0 + 29,3: 0 + 29,4: 0 + 29,5: 0 + 29,6: 0 + 29,7: 0 + 29,8: 0 + 29,9: 0 + 29,10: 0 + 29,11: 0 + 29,12: 0 + 29,13: 0 + 29,14: 0 + 29,15: 0 + 30,0: 0 + 30,1: 0 + 30,2: 0 + 30,3: 0 + 30,4: 0 + 30,5: 0 + 30,6: 0 + 30,7: 0 + 30,8: 0 + 30,9: 0 + 30,10: 0 + 30,11: 0 + 30,12: 0 + 31,0: 0 + 31,1: 0 + 31,2: 0 + 31,3: 0 + 31,4: 0 + 31,5: 0 + 31,6: 0 + 31,7: 0 + 31,8: 0 + 31,9: 0 + 31,10: 0 + 31,11: 0 + 31,12: 0 + 20,-5: 0 + 20,-4: 0 + 20,-3: 0 + 20,-2: 0 + 20,-1: 0 + 21,-5: 0 + 21,-4: 0 + 21,-3: 0 + 21,-2: 0 + 21,-1: 0 + 22,-5: 0 + 22,-4: 0 + 22,-3: 0 + 22,-2: 0 + 22,-1: 0 + 23,-5: 0 + 23,-4: 0 + 23,-3: 0 + 23,-2: 0 + 23,-1: 0 + 24,-10: 0 + 24,-9: 0 + 24,-8: 0 + 24,-7: 0 + 24,-6: 0 + 24,-5: 0 + 24,-4: 0 + 24,-3: 0 + 24,-2: 0 + 24,-1: 0 + 25,-10: 0 + 25,-9: 0 + 25,-8: 0 + 25,-7: 0 + 25,-6: 0 + 25,-5: 0 + 25,-4: 0 + 25,-3: 0 + 25,-2: 0 + 25,-1: 0 + 26,-10: 0 + 26,-9: 0 + 26,-8: 0 + 26,-7: 0 + 26,-6: 0 + 26,-5: 0 + 26,-4: 0 + 26,-3: 0 + 26,-2: 0 + 26,-1: 0 + 27,-10: 0 + 27,-9: 0 + 27,-8: 0 + 27,-7: 0 + 27,-6: 0 + 27,-5: 0 + 27,-4: 0 + 27,-3: 0 + 27,-2: 0 + 27,-1: 0 + 28,-10: 0 + 28,-9: 0 + 28,-8: 0 + 28,-7: 0 + 28,-6: 0 + 28,-5: 0 + 28,-4: 0 + 28,-3: 0 + 28,-2: 0 + 28,-1: 0 + 29,-10: 0 + 29,-9: 0 + 29,-8: 0 + 29,-7: 0 + 29,-6: 0 + 29,-5: 0 + 29,-4: 0 + 29,-3: 0 + 29,-2: 0 + 29,-1: 0 + 30,-9: 0 + 30,-8: 0 + 30,-7: 0 + 30,-6: 0 + 30,-5: 0 + 30,-4: 0 + 30,-3: 0 + 30,-2: 0 + 30,-1: 0 + 31,-8: 0 + 31,-7: 0 + 31,-6: 0 + 31,-5: 0 + 31,-4: 0 + 31,-3: 0 + 31,-2: 0 + 31,-1: 0 + 32,0: 0 + 32,1: 0 + 32,2: 0 + 32,3: 0 + 32,4: 0 + 32,5: 0 + 32,6: 0 + 32,7: 0 + 32,8: 0 + 32,9: 0 + 32,10: 0 + 32,11: 0 + 32,12: 0 + 33,0: 0 + 33,1: 0 + 33,2: 0 + 33,3: 0 + 33,4: 0 + 33,5: 0 + 33,6: 0 + 33,7: 0 + 33,8: 0 + 33,9: 0 + 33,10: 0 + 33,11: 0 + 33,12: 0 + 34,0: 0 + 34,1: 0 + 34,2: 0 + 34,3: 0 + 34,4: 0 + 34,5: 0 + 34,6: 0 + 34,7: 0 + 34,8: 0 + 34,9: 0 + 34,10: 0 + 34,11: 0 + 35,0: 0 + 35,1: 0 + 35,2: 0 + 35,3: 0 + 35,4: 0 + 35,5: 0 + 35,6: 0 + 35,7: 0 + 35,8: 0 + 35,9: 0 + 35,10: 0 + 36,0: 0 + 36,1: 0 + 36,2: 0 + 36,3: 0 + 36,4: 0 + 36,5: 0 + 36,6: 0 + 36,7: 0 + 36,8: 0 + 36,9: 0 + 36,10: 0 + 37,0: 0 + 37,1: 0 + 37,2: 0 + 37,3: 0 + 37,4: 0 + 37,5: 0 + 37,6: 0 + 37,7: 0 + 37,8: 0 + 37,10: 0 + 38,0: 0 + 38,1: 0 + 38,2: 0 + 38,3: 0 + 38,4: 0 + 38,5: 0 + 38,6: 0 + 38,7: 0 + 38,10: 0 + 39,0: 0 + 39,1: 0 + 39,2: 0 + 39,3: 0 + 39,4: 0 + 39,10: 0 + 40,1: 0 + 40,2: 0 + 40,3: 0 + 41,1: 0 + 41,2: 0 + 41,3: 0 + 42,2: 0 + 43,2: 0 + 44,1: 0 + 44,2: 0 + 44,3: 0 + 45,2: 0 + 46,2: 0 + 32,-8: 0 + 32,-7: 0 + 32,-6: 0 + 32,-5: 0 + 32,-4: 0 + 32,-3: 0 + 32,-2: 0 + 32,-1: 0 + 33,-8: 0 + 33,-7: 0 + 33,-6: 0 + 33,-5: 0 + 33,-4: 0 + 33,-3: 0 + 33,-2: 0 + 33,-1: 0 + 34,-7: 0 + 34,-6: 0 + 34,-5: 0 + 34,-4: 0 + 34,-3: 0 + 34,-2: 0 + 34,-1: 0 + 35,-6: 0 + 35,-5: 0 + 35,-4: 0 + 35,-3: 0 + 35,-2: 0 + 35,-1: 0 + 36,-6: 0 + 36,-5: 0 + 36,-4: 0 + 36,-3: 0 + 36,-2: 0 + 36,-1: 0 + 37,-6: 0 + 37,-4: 0 + 37,-3: 0 + 37,-2: 0 + 37,-1: 0 + 38,-6: 0 + 38,-3: 0 + 38,-2: 0 + 38,-1: 0 + 39,-6: 0 + 0,18: 0 + 0,19: 0 + 0,20: 0 + 0,21: 0 + 0,22: 0 + 0,23: 0 + 0,24: 0 + 0,25: 0 + 0,26: 0 + 0,27: 0 + 1,18: 0 + 1,19: 0 + 1,20: 0 + 1,21: 0 + 1,22: 0 + 1,23: 0 + 1,24: 0 + 1,25: 0 + 1,26: 0 + 1,27: 0 + 2,18: 0 + 2,19: 0 + 2,20: 0 + 2,21: 0 + 2,22: 0 + 2,23: 0 + 2,24: 0 + 2,25: 0 + 2,26: 0 + 2,27: 0 + 3,17: 0 + 3,18: 0 + 3,19: 0 + 3,20: 0 + 3,21: 0 + 3,22: 0 + 3,23: 0 + 3,24: 0 + 3,25: 0 + 3,26: 0 + 3,27: 0 + 4,16: 0 + 4,17: 0 + 4,18: 0 + 4,19: 0 + 4,20: 0 + 4,21: 0 + 4,22: 0 + 4,23: 0 + 4,24: 0 + 4,25: 0 + 4,26: 0 + 5,16: 0 + 5,17: 0 + 5,18: 0 + 5,19: 0 + 5,20: 0 + 5,21: 0 + 5,22: 0 + 5,23: 0 + 5,24: 0 + 5,25: 0 + 6,16: 0 + 6,17: 0 + 6,18: 0 + 6,19: 0 + 6,20: 0 + 6,21: 0 + 6,22: 0 + 6,23: 0 + 6,24: 0 + 7,16: 0 + 7,17: 0 + 7,18: 0 + 7,19: 0 + 7,20: 0 + 7,21: 0 + 7,22: 0 + 7,23: 0 + 7,24: 0 + 8,16: 0 + 8,17: 0 + 8,18: 0 + 8,19: 0 + 8,20: 0 + 8,21: 0 + 8,22: 0 + 8,23: 0 + 8,24: 0 + 9,16: 0 + 9,17: 0 + 9,18: 0 + 9,19: 0 + 9,20: 0 + 9,21: 0 + 9,22: 0 + 9,23: 0 + 9,24: 0 + 10,16: 0 + 10,17: 0 + 10,18: 0 + 10,19: 0 + 10,20: 0 + 10,21: 0 + 10,22: 0 + 10,23: 0 + 10,24: 0 + 11,16: 0 + 11,17: 0 + 11,18: 0 + 11,19: 0 + 11,20: 0 + 11,21: 0 + 11,22: 0 + 11,23: 0 + 11,24: 0 + 12,16: 0 + 12,17: 0 + 12,18: 0 + 12,19: 0 + 12,20: 0 + 12,21: 0 + 12,22: 0 + 12,23: 0 + 13,16: 0 + 13,17: 0 + 13,18: 0 + 13,19: 0 + 13,20: 0 + 13,21: 0 + 13,22: 0 + 13,23: 0 + 14,16: 0 + 14,17: 0 + 14,18: 0 + 14,19: 0 + 14,20: 0 + 14,21: 0 + 14,22: 0 + 14,23: 0 + 15,16: 0 + 15,17: 0 + 15,18: 0 + 15,19: 0 + 15,20: 0 + 15,21: 0 + 15,22: 0 + 15,23: 0 + 16,16: 0 + 16,17: 0 + 16,18: 0 + 16,19: 0 + 16,20: 0 + 16,21: 0 + 16,22: 0 + 16,23: 0 + 16,24: 0 + 16,25: 0 + 17,16: 0 + 17,17: 0 + 17,18: 0 + 17,19: 0 + 17,20: 0 + 17,21: 0 + 17,22: 0 + 17,23: 0 + 17,24: 0 + 17,25: 0 + 17,26: 0 + 17,27: 0 + 17,28: 0 + 18,16: 0 + 18,17: 0 + 18,18: 0 + 18,19: 0 + 18,20: 0 + 18,21: 0 + 18,22: 0 + 18,23: 0 + 18,24: 0 + 18,25: 0 + 18,26: 0 + 18,27: 0 + 18,28: 0 + 19,16: 0 + 19,17: 0 + 19,18: 0 + 19,19: 0 + 19,20: 0 + 19,21: 0 + 19,22: 0 + 19,23: 0 + 19,24: 0 + 19,25: 0 + 19,26: 0 + 19,27: 0 + 19,28: 0 + 20,16: 0 + 20,17: 0 + 20,18: 0 + 20,19: 0 + 20,20: 0 + 20,21: 0 + 20,22: 0 + 20,23: 0 + 20,24: 0 + 20,25: 0 + 20,26: 0 + 20,27: 0 + 20,28: 0 + 21,16: 0 + 21,17: 0 + 21,18: 0 + 21,19: 0 + 21,20: 0 + 21,21: 0 + 21,22: 0 + 21,23: 0 + 21,24: 0 + 21,25: 0 + 22,16: 0 + 22,17: 0 + 22,18: 0 + 22,19: 0 + 22,20: 0 + 22,21: 0 + 22,22: 0 + 23,16: 0 + 23,17: 0 + 23,18: 0 + 23,19: 0 + 23,20: 0 + 23,21: 0 + 23,22: 0 + 24,16: 0 + 24,17: 0 + 24,18: 0 + 24,19: 0 + 24,20: 0 + 24,21: 0 + 24,22: 0 + 25,16: 0 + 25,17: 0 + 25,18: 0 + 25,19: 0 + 25,20: 0 + 25,21: 0 + 25,22: 0 + 26,16: 0 + 26,17: 0 + 26,18: 0 + 26,19: 0 + 26,20: 0 + 26,21: 0 + 26,22: 0 + 27,16: 0 + 27,17: 0 + 27,18: 0 + 27,19: 0 + 27,20: 0 + 27,21: 0 + 27,22: 0 + 28,16: 0 + 28,17: 0 + 28,18: 0 + 28,19: 0 + 28,20: 0 + 28,21: 0 + 29,16: 0 + 29,17: 0 + 29,18: 0 + 29,19: 0 + 29,20: 0 + 29,21: 0 + -15,16: 0 + -15,17: 0 + -15,18: 0 + -15,19: 0 + -15,20: 0 + -15,21: 0 + -15,22: 0 + -15,23: 0 + -14,16: 0 + -14,17: 0 + -14,18: 0 + -14,19: 0 + -14,20: 0 + -14,21: 0 + -14,22: 0 + -14,23: 0 + -13,16: 0 + -13,17: 0 + -13,18: 0 + -13,19: 0 + -13,20: 0 + -13,21: 0 + -13,22: 0 + -13,23: 0 + -12,16: 0 + -12,17: 0 + -12,18: 0 + -12,19: 0 + -12,20: 0 + -11,16: 0 + -11,17: 0 + -11,18: 0 + -11,19: 0 + -11,20: 0 + -10,16: 0 + -10,17: 0 + -10,18: 0 + -10,19: 0 + -10,20: 0 + -10,21: 0 + -10,22: 0 + -10,23: 0 + -9,16: 0 + -9,17: 0 + -9,18: 0 + -9,19: 0 + -9,20: 0 + -9,21: 0 + -9,22: 0 + -9,23: 0 + -8,16: 0 + -8,17: 0 + -8,18: 0 + -8,19: 0 + -8,20: 0 + -8,21: 0 + -8,22: 0 + -8,23: 0 + -7,16: 0 + -7,17: 0 + -7,18: 0 + -7,19: 0 + -7,20: 0 + -7,21: 0 + -7,22: 0 + -7,23: 0 + -6,16: 0 + -6,17: 0 + -6,18: 0 + -6,19: 0 + -6,20: 0 + -6,21: 0 + -6,22: 0 + -6,23: 0 + -5,16: 0 + -5,17: 0 + -5,18: 0 + -5,19: 0 + -5,20: 0 + -5,21: 0 + -5,22: 0 + -5,23: 0 + -5,24: 0 + -5,25: 0 + -5,26: 0 + -5,27: 0 + -4,16: 0 + -4,17: 0 + -4,18: 0 + -4,19: 0 + -4,20: 0 + -4,21: 0 + -4,22: 0 + -4,23: 0 + -4,24: 0 + -4,25: 0 + -4,26: 0 + -4,27: 0 + -3,16: 0 + -3,17: 0 + -3,18: 0 + -3,19: 0 + -3,20: 0 + -3,21: 0 + -3,22: 0 + -3,23: 0 + -3,24: 0 + -3,25: 0 + -3,26: 0 + -3,27: 0 + -2,17: 0 + -2,18: 0 + -2,19: 0 + -2,20: 0 + -2,21: 0 + -2,22: 0 + -2,23: 0 + -2,24: 0 + -2,25: 0 + -2,26: 0 + -2,27: 0 + -1,18: 0 + -1,19: 0 + -1,20: 0 + -1,21: 0 + -1,22: 0 + -1,23: 0 + -1,24: 0 + -1,25: 0 + -1,26: 0 + -1,27: 0 + -14,-11: 0 + -14,-10: 0 + -14,-9: 0 + -14,-8: 0 + -13,-13: 0 + -13,-12: 0 + -13,-11: 0 + -13,-10: 0 + -13,-9: 0 + -12,-13: 0 + -12,-12: 0 + -12,-11: 0 + -12,-10: 0 + -12,-9: 0 + -11,-13: 0 + -11,-12: 0 + -11,-11: 0 + -11,-10: 0 + -11,-9: 0 + -10,-13: 0 + -10,-12: 0 + -10,-11: 0 + -10,-10: 0 + -10,-9: 0 + -9,-13: 0 + -9,-12: 0 + -9,-11: 0 + -9,-10: 0 + -9,-9: 0 + -8,-13: 0 + -8,-12: 0 + -8,-11: 0 + -8,-10: 0 + -8,-9: 0 + -7,-13: 0 + -7,-12: 0 + -7,-11: 0 + -7,-10: 0 + -7,-9: 0 + -6,-13: 0 + -6,-12: 0 + -6,-11: 0 + -6,-10: 0 + -6,-9: 0 + -5,-16: 0 + -5,-15: 0 + -5,-14: 0 + -5,-13: 0 + -5,-12: 0 + -5,-11: 0 + -5,-10: 0 + -5,-9: 0 + -4,-16: 0 + -4,-15: 0 + -4,-14: 0 + -4,-13: 0 + -4,-12: 0 + -4,-11: 0 + -3,-16: 0 + -3,-15: 0 + -3,-14: 0 + -3,-13: 0 + -3,-12: 0 + -2,-16: 0 + -2,-15: 0 + -2,-14: 0 + -2,-13: 0 + -2,-12: 0 + -1,-16: 0 + -1,-15: 0 + -1,-14: 0 + -1,-13: 0 + -1,-12: 0 + 17,0: 0 + 18,0: 0 + 19,0: 0 + 16,-16: 0 + 16,-15: 0 + 16,-14: 0 + 16,-13: 0 + 16,-12: 0 + 16,-11: 0 + 16,-10: 0 + 16,-9: 0 + 16,-8: 0 + 16,-7: 0 + 16,-6: 0 + 16,-5: 0 + 16,-4: 0 + 16,-3: 0 + 16,-2: 0 + 16,-1: 0 + 17,-16: 0 + 17,-15: 0 + 17,-14: 0 + 17,-13: 0 + 17,-12: 0 + 17,-11: 0 + 17,-10: 0 + 17,-9: 0 + 17,-8: 0 + 17,-7: 0 + 17,-6: 0 + 17,-5: 0 + 17,-4: 0 + 17,-3: 0 + 17,-2: 0 + 17,-1: 0 + 18,-16: 0 + 18,-15: 0 + 18,-14: 0 + 18,-13: 0 + 18,-12: 0 + 18,-11: 0 + 18,-10: 0 + 18,-9: 0 + 18,-8: 0 + 18,-7: 0 + 18,-6: 0 + 18,-5: 0 + 18,-4: 0 + 18,-3: 0 + 18,-2: 0 + 18,-1: 0 + 19,-16: 0 + 19,-15: 0 + 19,-14: 0 + 19,-13: 0 + 19,-12: 0 + 19,-11: 0 + 19,-10: 0 + 19,-9: 0 + 19,-8: 0 + 19,-7: 0 + 19,-6: 0 + 19,-5: 0 + 19,-4: 0 + 19,-3: 0 + 19,-2: 0 + 19,-1: 0 + 20,-16: 0 + 20,-15: 0 + 20,-14: 0 + 20,-13: 0 + 20,-12: 0 + 20,-11: 0 + 20,-10: 0 + 20,-9: 0 + 20,-8: 0 + 20,-7: 0 + 20,-6: 0 + 21,-16: 0 + 21,-15: 0 + 21,-14: 0 + 21,-13: 0 + 21,-12: 0 + 21,-11: 0 + 21,-10: 0 + 21,-9: 0 + 21,-8: 0 + 21,-7: 0 + 21,-6: 0 + 22,-16: 0 + 22,-15: 0 + 22,-14: 0 + 22,-13: 0 + 22,-12: 0 + 22,-11: 0 + 22,-10: 0 + 22,-9: 0 + 22,-8: 0 + 22,-7: 0 + 22,-6: 0 + 23,-16: 0 + 23,-15: 0 + 23,-14: 0 + 23,-13: 0 + 23,-12: 0 + 23,-11: 0 + 23,-10: 0 + 23,-9: 0 + 23,-8: 0 + 23,-7: 0 + 23,-6: 0 + 24,-16: 0 + 24,-15: 0 + 24,-14: 0 + 24,-13: 0 + 24,-12: 0 + 24,-11: 0 + 25,-16: 0 + 25,-15: 0 + 25,-14: 0 + 25,-13: 0 + 25,-12: 0 + 25,-11: 0 + 26,-16: 0 + 26,-15: 0 + 26,-14: 0 + 26,-13: 0 + 26,-12: 0 + 26,-11: 0 + 27,-16: 0 + 27,-15: 0 + 27,-14: 0 + 27,-13: 0 + 27,-12: 0 + 27,-11: 0 + 28,-16: 0 + 28,-15: 0 + 28,-14: 0 + 28,-13: 0 + 28,-12: 0 + 28,-11: 0 + 29,-16: 0 + 29,-15: 0 + 29,-14: 0 + 29,-13: 0 + 29,-12: 0 + 29,-11: 0 + 15,24: 0 + 15,25: 0 + 16,26: 0 + 16,27: 0 + 21,26: 0 + 21,27: 0 + 22,23: 0 + 22,24: 0 + 22,25: 0 + 0,-16: 0 + 0,-15: 0 + 0,-14: 0 + 0,-13: 0 + 0,-12: 0 + 1,-16: 0 + 1,-15: 0 + 1,-14: 0 + 1,-13: 0 + 1,-12: 0 + 2,-16: 0 + 2,-15: 0 + 2,-14: 0 + 2,-13: 0 + 2,-12: 0 + 3,-16: 0 + 3,-15: 0 + 3,-14: 0 + 3,-13: 0 + 3,-12: 0 + 4,-16: 0 + 4,-15: 0 + 4,-14: 0 + 4,-13: 0 + 4,-12: 0 + 5,-16: 0 + 5,-15: 0 + 5,-14: 0 + 5,-13: 0 + 5,-12: 0 + 5,-11: 0 + 5,-2: 0 + 5,-1: 0 + 6,-16: 0 + 6,-15: 0 + 6,-14: 0 + 6,-13: 0 + 6,-12: 0 + 6,-11: 0 + 6,-10: 0 + 6,-9: 0 + 6,-8: 0 + 6,-7: 0 + 6,-6: 0 + 6,-5: 0 + 6,-4: 0 + 6,-3: 0 + 7,-16: 0 + 7,-15: 0 + 7,-14: 0 + 7,-13: 0 + 7,-12: 0 + 7,-11: 0 + 7,-10: 0 + 7,-9: 0 + 7,-8: 0 + 7,-7: 0 + 7,-6: 0 + 7,-5: 0 + 7,-4: 0 + 7,-3: 0 + 7,-2: 0 + 7,-1: 0 + 8,-16: 0 + 8,-15: 0 + 8,-14: 0 + 8,-13: 0 + 8,-12: 0 + 8,-11: 0 + 8,-10: 0 + 8,-9: 0 + 8,-8: 0 + 8,-7: 0 + 8,-6: 0 + 8,-5: 0 + 8,-4: 0 + 8,-3: 0 + 8,-2: 0 + 8,-1: 0 + 9,-16: 0 + 9,-15: 0 + 9,-14: 0 + 9,-13: 0 + 9,-12: 0 + 9,-11: 0 + 9,-10: 0 + 9,-9: 0 + 9,-8: 0 + 9,-7: 0 + 9,-6: 0 + 9,-5: 0 + 9,-4: 0 + 9,-3: 0 + 9,-2: 0 + 9,-1: 0 + 10,-16: 0 + 10,-15: 0 + 10,-14: 0 + 10,-13: 0 + 10,-12: 0 + 10,-11: 0 + 10,-10: 0 + 10,-9: 0 + 10,-8: 0 + 10,-7: 0 + 10,-6: 0 + 10,-5: 0 + 10,-4: 0 + 10,-3: 0 + 10,-2: 0 + 10,-1: 0 + 11,-16: 0 + 11,-15: 0 + 11,-14: 0 + 11,-13: 0 + 11,-12: 0 + 11,-11: 0 + 11,-10: 0 + 11,-9: 0 + 11,-8: 0 + 11,-7: 0 + 11,-6: 0 + 11,-5: 0 + 11,-4: 0 + 11,-3: 0 + 11,-2: 0 + 11,-1: 0 + 12,-16: 0 + 12,-15: 0 + 12,-14: 0 + 12,-13: 0 + 12,-12: 0 + 12,-11: 0 + 12,-10: 0 + 12,-9: 0 + 12,-8: 0 + 12,-7: 0 + 12,-6: 0 + 12,-5: 0 + 12,-4: 0 + 12,-3: 0 + 12,-2: 0 + 12,-1: 0 + 13,-16: 0 + 13,-15: 0 + 13,-14: 0 + 13,-13: 0 + 13,-12: 0 + 13,-11: 0 + 13,-10: 0 + 13,-9: 0 + 13,-8: 0 + 13,-7: 0 + 13,-6: 0 + 13,-5: 0 + 13,-4: 0 + 13,-3: 0 + 13,-2: 0 + 13,-1: 0 + 14,-16: 0 + 14,-15: 0 + 14,-14: 0 + 14,-13: 0 + 14,-12: 0 + 14,-11: 0 + 14,-10: 0 + 14,-9: 0 + 14,-8: 0 + 14,-7: 0 + 14,-6: 0 + 14,-5: 0 + 14,-4: 0 + 14,-3: 0 + 14,-2: 0 + 14,-1: 0 + 15,-16: 0 + 15,-15: 0 + 15,-14: 0 + 15,-13: 0 + 15,-12: 0 + 15,-11: 0 + 15,-10: 0 + 15,-9: 0 + 15,-8: 0 + 15,-7: 0 + 15,-6: 0 + 15,-5: 0 + 15,-4: 0 + 15,-3: 0 + 15,-2: 0 + 15,-1: 0 + -5,-19: 0 + -5,-18: 0 + -5,-17: 0 + -4,-19: 0 + -4,-18: 0 + -4,-17: 0 + -3,-19: 0 + -3,-18: 0 + -3,-17: 0 + -2,-19: 0 + -2,-18: 0 + -2,-17: 0 + -1,-19: 0 + -1,-18: 0 + -1,-17: 0 + 0,-19: 0 + 0,-18: 0 + 0,-17: 0 + 1,-19: 0 + 1,-18: 0 + 1,-17: 0 + 2,-19: 0 + 2,-18: 0 + 2,-17: 0 + 3,-19: 0 + 3,-18: 0 + 3,-17: 0 + 4,-19: 0 + 4,-18: 0 + 4,-17: 0 + 5,-19: 0 + 5,-18: 0 + 5,-17: 0 + 6,-19: 0 + 6,-18: 0 + 6,-17: 0 + 7,-19: 0 + 7,-18: 0 + 7,-17: 0 + 8,-19: 0 + 8,-18: 0 + 8,-17: 0 + 9,-19: 0 + 9,-18: 0 + 9,-17: 0 + 10,-19: 0 + 10,-18: 0 + 10,-17: 0 + 11,-19: 0 + 11,-18: 0 + 11,-17: 0 + 12,-17: 0 + 13,-17: 0 + 14,-17: 0 + 15,-20: 0 + 15,-19: 0 + 15,-18: 0 + 15,-17: 0 + 16,-22: 0 + 16,-21: 0 + 16,-20: 0 + 16,-19: 0 + 16,-18: 0 + 16,-17: 0 + 17,-23: 0 + 17,-22: 0 + 17,-21: 0 + 17,-20: 0 + 17,-19: 0 + 17,-18: 0 + 17,-17: 0 + 18,-23: 0 + 18,-22: 0 + 18,-21: 0 + 18,-20: 0 + 18,-19: 0 + 18,-18: 0 + 18,-17: 0 + 19,-23: 0 + 19,-22: 0 + 19,-21: 0 + 19,-20: 0 + 19,-19: 0 + 19,-18: 0 + 19,-17: 0 + 20,-23: 0 + 20,-22: 0 + 20,-21: 0 + 20,-20: 0 + 20,-19: 0 + 20,-18: 0 + 20,-17: 0 + 21,-22: 0 + 21,-21: 0 + 21,-20: 0 + 21,-19: 0 + 21,-18: 0 + 21,-17: 0 + 22,-20: 0 + 22,-19: 0 + 22,-18: 0 + 22,-17: 0 + 23,-17: 0 + 24,-17: 0 + 25,-17: 0 + 26,-17: 0 + 27,-17: 0 + -16,0: 0 + -16,1: 0 + -16,2: 0 + -16,3: 0 + -16,4: 0 + -16,5: 0 + -16,6: 0 + -16,7: 0 + -16,8: 0 + -16,9: 0 + -16,10: 0 + -16,11: 0 + -16,12: 0 + -16,13: 0 + -16,14: 0 + -15,0: 0 + -15,1: 0 + -15,2: 0 + -15,3: 0 + -15,4: 0 + -15,5: 0 + -15,6: 0 + -15,7: 0 + -15,8: 0 + -15,9: 0 + -15,10: 0 + -15,11: 0 + -14,7: 0 + -14,8: 0 + -14,9: 0 + -14,10: 0 + -14,11: 0 + -16,-10: 0 + -16,-9: 0 + -16,-8: 0 + -16,-7: 0 + -16,-6: 0 + -16,-5: 0 + -16,-4: 0 + -16,-3: 0 + -16,-2: 0 + -16,-1: 0 + -15,-10: 0 + -15,-9: 0 + -15,-8: 0 + -15,-7: 0 + -15,-6: 0 + -15,-5: 0 + -15,-4: 0 + -15,-3: 0 + -15,-2: 0 + -15,-1: 0 + -14,-7: 0 + -14,-6: 0 + -14,-5: 0 + -14,-4: 0 + -14,-3: 0 + -12,-16: 0 + -12,-14: 0 + -11,-16: 0 + -11,-14: 0 + -10,-16: 0 + -10,-14: 0 + -9,-16: 0 + -9,-14: 0 + -8,-16: 0 + -8,-14: 0 + -7,-16: 0 + -7,-14: 0 + -6,-16: 0 + -6,-14: 0 + -4,-23: 0 + -4,-22: 0 + -4,-21: 0 + -4,-20: 0 + -3,-23: 0 + -3,-22: 0 + -3,-21: 0 + -3,-20: 0 + -2,-23: 0 + -2,-22: 0 + -2,-21: 0 + -2,-20: 0 + -1,-23: 0 + -1,-22: 0 + -1,-21: 0 + -1,-20: 0 + 0,-23: 0 + 0,-22: 0 + 0,-21: 0 + 0,-20: 0 + 1,-23: 0 + 1,-22: 0 + 1,-21: 0 + 1,-20: 0 + 2,-23: 0 + 2,-22: 0 + 2,-21: 0 + 2,-20: 0 + 3,-23: 0 + 3,-22: 0 + 3,-21: 0 + 3,-20: 0 + 4,-22: 0 + 4,-21: 0 + 4,-20: 0 + 5,-21: 0 + 5,-20: 0 + -30,-9: 0 + -30,-8: 0 + -30,-7: 0 + -30,-6: 0 + -30,-5: 0 + -30,-4: 0 + -30,-3: 0 + -30,-2: 0 + -30,-1: 0 + -29,-9: 0 + -29,-8: 0 + -29,-7: 0 + -29,-6: 0 + -29,-5: 0 + -29,-4: 0 + -29,-3: 0 + -29,-2: 0 + -29,-1: 0 + -28,-9: 0 + -28,-8: 0 + -28,-7: 0 + -28,-6: 0 + -28,-5: 0 + -28,-4: 0 + -28,-3: 0 + -28,-2: 0 + -28,-1: 0 + -27,-9: 0 + -27,-8: 0 + -27,-7: 0 + -27,-6: 0 + -27,-5: 0 + -27,-4: 0 + -27,-3: 0 + -27,-2: 0 + -27,-1: 0 + -26,-9: 0 + -26,-8: 0 + -26,-7: 0 + -26,-6: 0 + -26,-5: 0 + -26,-4: 0 + -26,-3: 0 + -26,-2: 0 + -26,-1: 0 + -25,-9: 0 + -25,-8: 0 + -25,-7: 0 + -25,-6: 0 + -25,-5: 0 + -25,-4: 0 + -25,-3: 0 + -25,-2: 0 + -25,-1: 0 + -24,-8: 0 + -24,-7: 0 + -24,-6: 0 + -24,-5: 0 + -24,-4: 0 + -24,-3: 0 + -24,-2: 0 + -24,-1: 0 + -23,-8: 0 + -23,-7: 0 + -23,-6: 0 + -23,-5: 0 + -23,-4: 0 + -23,-3: 0 + -23,-2: 0 + -23,-1: 0 + -22,-8: 0 + -22,-7: 0 + -22,-6: 0 + -22,-5: 0 + -22,-4: 0 + -22,-3: 0 + -22,-2: 0 + -22,-1: 0 + -21,-8: 0 + -21,-7: 0 + -21,-6: 0 + -21,-5: 0 + -21,-4: 0 + -21,-3: 0 + -21,-2: 0 + -21,-1: 0 + -20,-8: 0 + -20,-7: 0 + -20,-6: 0 + -20,-5: 0 + -20,-4: 0 + -20,-3: 0 + -20,-2: 0 + -20,-1: 0 + -19,-10: 0 + -19,-9: 0 + -19,-8: 0 + -19,-7: 0 + -19,-6: 0 + -19,-5: 0 + -19,-4: 0 + -19,-3: 0 + -19,-2: 0 + -19,-1: 0 + -18,-10: 0 + -18,-9: 0 + -18,-8: 0 + -18,-7: 0 + -18,-6: 0 + -18,-5: 0 + -18,-4: 0 + -18,-3: 0 + -18,-2: 0 + -18,-1: 0 + -17,-10: 0 + -17,-9: 0 + -17,-8: 0 + -17,-7: 0 + -17,-6: 0 + -17,-5: 0 + -17,-4: 0 + -17,-3: 0 + -17,-2: 0 + -17,-1: 0 + -30,0: 0 + -30,1: 0 + -30,2: 0 + -30,3: 0 + -30,4: 0 + -30,5: 0 + -30,6: 0 + -30,7: 0 + -30,8: 0 + -30,9: 0 + -30,10: 0 + -30,11: 0 + -30,12: 0 + -30,13: 0 + -29,0: 0 + -29,1: 0 + -29,2: 0 + -29,3: 0 + -29,4: 0 + -29,5: 0 + -29,6: 0 + -29,7: 0 + -29,8: 0 + -29,9: 0 + -29,10: 0 + -29,11: 0 + -29,12: 0 + -29,13: 0 + -28,0: 0 + -28,1: 0 + -28,2: 0 + -28,3: 0 + -28,4: 0 + -28,5: 0 + -28,6: 0 + -28,7: 0 + -28,8: 0 + -28,9: 0 + -28,10: 0 + -28,11: 0 + -28,12: 0 + -28,13: 0 + -27,1: 0 + -27,2: 0 + -27,3: 0 + -27,5: 0 + -27,6: 0 + -27,7: 0 + -27,8: 0 + -27,9: 0 + -27,10: 0 + -27,11: 0 + -27,12: 0 + -27,13: 0 + -26,1: 0 + -26,2: 0 + -26,3: 0 + -26,5: 0 + -26,6: 0 + -26,7: 0 + -26,8: 0 + -26,9: 0 + -26,10: 0 + -26,11: 0 + -26,12: 0 + -26,13: 0 + -25,0: 0 + -25,1: 0 + -25,2: 0 + -25,3: 0 + -25,4: 0 + -25,5: 0 + -25,6: 0 + -25,7: 0 + -25,8: 0 + -25,9: 0 + -25,10: 0 + -25,11: 0 + -25,12: 0 + -25,13: 0 + -24,0: 0 + -24,1: 0 + -24,2: 0 + -24,3: 0 + -24,4: 0 + -24,5: 0 + -24,6: 0 + -24,7: 0 + -24,8: 0 + -24,9: 0 + -24,10: 0 + -24,11: 0 + -24,12: 0 + -23,0: 0 + -23,1: 0 + -23,2: 0 + -23,3: 0 + -23,4: 0 + -23,5: 0 + -23,6: 0 + -23,7: 0 + -23,8: 0 + -23,9: 0 + -23,10: 0 + -23,11: 0 + -23,12: 0 + -22,0: 0 + -22,1: 0 + -22,2: 0 + -22,3: 0 + -22,4: 0 + -22,5: 0 + -22,6: 0 + -22,7: 0 + -22,8: 0 + -22,9: 0 + -22,10: 0 + -22,11: 0 + -22,12: 0 + -21,0: 0 + -21,1: 0 + -21,2: 0 + -21,3: 0 + -21,4: 0 + -21,5: 0 + -21,6: 0 + -21,7: 0 + -21,8: 0 + -21,9: 0 + -21,10: 0 + -21,11: 0 + -21,12: 0 + -20,0: 0 + -20,1: 0 + -20,2: 0 + -20,3: 0 + -20,4: 0 + -20,5: 0 + -20,6: 0 + -20,7: 0 + -20,8: 0 + -20,9: 0 + -20,10: 0 + -20,11: 0 + -20,12: 0 + -19,0: 0 + -19,1: 0 + -19,2: 0 + -19,3: 0 + -19,4: 0 + -19,5: 0 + -19,6: 0 + -19,7: 0 + -19,8: 0 + -19,9: 0 + -19,10: 0 + -19,11: 0 + -19,12: 0 + -19,13: 0 + -19,14: 0 + -18,0: 0 + -18,1: 0 + -18,2: 0 + -18,3: 0 + -18,4: 0 + -18,5: 0 + -18,6: 0 + -18,7: 0 + -18,8: 0 + -18,9: 0 + -18,10: 0 + -18,11: 0 + -18,12: 0 + -18,13: 0 + -18,14: 0 + -17,0: 0 + -17,1: 0 + -17,2: 0 + -17,3: 0 + -17,4: 0 + -17,5: 0 + -17,6: 0 + -17,7: 0 + -17,8: 0 + -17,9: 0 + -17,10: 0 + -17,11: 0 + -17,12: 0 + -17,13: 0 + -17,14: 0 + -16,15: 0 + -16,-16: 0 + -16,-15: 0 + -16,-14: 0 + -16,-13: 0 + -16,-12: 0 + -16,-11: 0 + -15,-16: 0 + -15,-15: 0 + -15,-14: 0 + -15,-13: 0 + -15,-12: 0 + -15,-11: 0 + -14,-16: 0 + -14,-15: 0 + -14,-14: 0 + -14,-13: 0 + -14,-12: 0 + -13,-16: 0 + -13,-15: 0 + -13,-14: 0 + -16,16: 0 + -16,17: 0 + -16,18: 0 + -16,19: 0 + -16,20: 0 + -16,21: 0 + -16,22: 0 + -16,23: 0 + -16,24: 0 + -16,25: 0 + -16,26: 0 + -16,27: 0 + -16,28: 0 + -16,29: 0 + -15,24: 0 + -15,25: 0 + -15,26: 0 + -15,27: 0 + -15,29: 0 + -14,24: 0 + -14,25: 0 + -14,26: 0 + -14,27: 0 + -14,30: 0 + -14,31: 0 + -13,24: 0 + -13,25: 0 + -13,26: 0 + -13,27: 0 + -13,28: 0 + -13,29: 0 + -13,30: 0 + -13,31: 0 + -12,22: 0 + -12,24: 0 + -12,25: 0 + -12,27: 0 + -12,29: 0 + -12,30: 0 + -12,31: 0 + -11,22: 0 + -11,23: 0 + -11,24: 0 + -11,25: 0 + -11,26: 0 + -11,27: 0 + -11,28: 0 + -11,29: 0 + -10,29: 0 + -10,30: 0 + -10,31: 0 + -9,24: 0 + -9,25: 0 + -9,26: 0 + -9,27: 0 + -9,28: 0 + -9,29: 0 + -9,30: 0 + -9,31: 0 + -8,30: 0 + -8,31: 0 + -16,-24: 0 + -16,-23: 0 + -16,-22: 0 + -16,-21: 0 + -16,-20: 0 + -16,-19: 0 + -16,-18: 0 + -16,-17: 0 + -15,-22: 0 + -15,-21: 0 + -15,-20: 0 + -15,-19: 0 + -15,-18: 0 + -15,-17: 0 + -14,-32: 0 + -14,-31: 0 + -14,-30: 0 + -14,-29: 0 + -14,-28: 0 + -14,-27: 0 + -14,-26: 0 + -14,-22: 0 + -14,-21: 0 + -14,-20: 0 + -14,-19: 0 + -14,-18: 0 + -14,-17: 0 + -13,-32: 0 + -13,-31: 0 + -13,-30: 0 + -13,-29: 0 + -13,-28: 0 + -13,-27: 0 + -13,-26: 0 + -13,-25: 0 + -13,-24: 0 + -13,-23: 0 + -13,-22: 0 + -13,-21: 0 + -13,-20: 0 + -13,-19: 0 + -13,-18: 0 + -13,-17: 0 + -12,-32: 0 + -12,-31: 0 + -12,-30: 0 + -12,-29: 0 + -12,-28: 0 + -12,-27: 0 + -12,-26: 0 + -12,-25: 0 + -12,-21: 0 + -12,-20: 0 + -12,-19: 0 + -12,-17: 0 + -11,-25: 0 + -11,-24: 0 + -11,-23: 0 + -11,-22: 0 + -11,-21: 0 + -11,-20: 0 + -11,-19: 0 + -11,-18: 0 + -11,-17: 0 + -10,-32: 0 + -10,-31: 0 + -10,-30: 0 + -10,-29: 0 + -10,-28: 0 + -10,-27: 0 + -10,-26: 0 + -10,-25: 0 + -10,-17: 0 + -9,-32: 0 + -9,-31: 0 + -9,-30: 0 + -9,-29: 0 + -9,-28: 0 + -9,-27: 0 + -9,-26: 0 + -9,-25: 0 + -9,-24: 0 + -9,-23: 0 + -9,-22: 0 + -9,-21: 0 + -9,-20: 0 + -9,-19: 0 + -9,-18: 0 + -9,-17: 0 + -8,-32: 0 + -8,-31: 0 + -8,-30: 0 + -8,-29: 0 + -8,-28: 0 + -8,-27: 0 + -8,-26: 0 + -8,-17: 0 + -7,-18: 0 + -7,-17: 0 + -6,-18: 0 + -6,-17: 0 + -32,-16: 0 + -32,-15: 0 + -32,-14: 0 + -32,-13: 0 + -32,-12: 0 + -32,-11: 0 + -32,-10: 0 + -32,-9: 0 + -32,-8: 0 + -32,-7: 0 + -32,-6: 0 + -32,-5: 0 + -32,-4: 0 + -32,-3: 0 + -31,-16: 0 + -31,-15: 0 + -31,-14: 0 + -31,-13: 0 + -31,-12: 0 + -31,-11: 0 + -31,-10: 0 + -31,-9: 0 + -31,-8: 0 + -31,-7: 0 + -31,-6: 0 + -31,-5: 0 + -31,-4: 0 + -31,-3: 0 + -31,-2: 0 + -31,-1: 0 + -30,-16: 0 + -30,-15: 0 + -30,-14: 0 + -30,-13: 0 + -30,-12: 0 + -30,-11: 0 + -30,-10: 0 + -29,-16: 0 + -29,-15: 0 + -29,-14: 0 + -29,-13: 0 + -29,-12: 0 + -29,-11: 0 + -29,-10: 0 + -28,-16: 0 + -28,-15: 0 + -28,-14: 0 + -28,-13: 0 + -28,-12: 0 + -28,-11: 0 + -28,-10: 0 + -27,-16: 0 + -27,-15: 0 + -27,-14: 0 + -27,-13: 0 + -27,-12: 0 + -27,-11: 0 + -27,-10: 0 + -26,-16: 0 + -26,-15: 0 + -26,-14: 0 + -26,-13: 0 + -26,-12: 0 + -26,-11: 0 + -26,-10: 0 + -25,-16: 0 + -25,-15: 0 + -25,-14: 0 + -25,-13: 0 + -25,-12: 0 + -25,-11: 0 + -25,-10: 0 + -24,-16: 0 + -24,-15: 0 + -24,-14: 0 + -24,-13: 0 + -24,-12: 0 + -24,-11: 0 + -24,-10: 0 + -24,-9: 0 + -23,-16: 0 + -23,-15: 0 + -23,-14: 0 + -23,-13: 0 + -23,-12: 0 + -23,-11: 0 + -23,-10: 0 + -23,-9: 0 + -22,-16: 0 + -22,-15: 0 + -22,-14: 0 + -22,-13: 0 + -22,-12: 0 + -22,-11: 0 + -22,-10: 0 + -22,-9: 0 + -21,-16: 0 + -21,-15: 0 + -21,-14: 0 + -21,-13: 0 + -21,-12: 0 + -21,-11: 0 + -21,-10: 0 + -21,-9: 0 + -20,-16: 0 + -20,-15: 0 + -20,-14: 0 + -20,-13: 0 + -20,-12: 0 + -20,-11: 0 + -20,-10: 0 + -20,-9: 0 + -19,-16: 0 + -19,-15: 0 + -19,-14: 0 + -19,-13: 0 + -19,-12: 0 + -19,-11: 0 + -18,-16: 0 + -18,-15: 0 + -18,-14: 0 + -18,-13: 0 + -18,-12: 0 + -18,-11: 0 + -17,-16: 0 + -17,-15: 0 + -17,-14: 0 + -17,-13: 0 + -17,-12: 0 + -17,-11: 0 + -31,0: 0 + -31,1: 0 + -31,2: 0 + -31,3: 0 + -31,4: 0 + -31,5: 0 + -31,6: 0 + -31,7: 0 + -31,8: 0 + -31,9: 0 + -31,10: 0 + -31,11: 0 + -31,12: 0 + -31,13: 0 + -29,14: 0 + -29,15: 0 + -28,14: 0 + -28,15: 0 + -27,14: 0 + -27,15: 0 + -26,4: 0 + -26,14: 0 + -26,15: 0 + -25,14: 0 + -25,15: 0 + -24,13: 0 + -24,14: 0 + -24,15: 0 + -23,13: 0 + -23,14: 0 + -23,15: 0 + -22,13: 0 + -22,14: 0 + -22,15: 0 + -21,13: 0 + -21,14: 0 + -21,15: 0 + -20,13: 0 + -20,14: 0 + -20,15: 0 + -19,15: 0 + -18,15: 0 + -17,15: 0 + -32,-22: 0 + -32,-21: 0 + -32,-20: 0 + -32,-19: 0 + -32,-18: 0 + -32,-17: 0 + -31,-22: 0 + -31,-21: 0 + -31,-20: 0 + -31,-19: 0 + -31,-18: 0 + -31,-17: 0 + -30,-24: 0 + -30,-23: 0 + -30,-22: 0 + -30,-21: 0 + -30,-20: 0 + -30,-19: 0 + -30,-18: 0 + -30,-17: 0 + -29,-28: 0 + -29,-27: 0 + -29,-26: 0 + -29,-25: 0 + -29,-24: 0 + -29,-23: 3 + -29,-22: 3 + -29,-21: 0 + -29,-20: 0 + -29,-19: 0 + -29,-18: 0 + -29,-17: 0 + -28,-27: 0 + -28,-24: 0 + -28,-23: 3 + -28,-22: 3 + -28,-21: 0 + -28,-20: 0 + -28,-19: 0 + -28,-18: 0 + -28,-17: 0 + -27,-28: 0 + -27,-27: 0 + -27,-26: 0 + -27,-25: 0 + -27,-24: 0 + -27,-23: 3 + -27,-22: 3 + -27,-21: 0 + -27,-20: 0 + -27,-19: 0 + -27,-18: 0 + -27,-17: 0 + -26,-24: 0 + -26,-23: 0 + -26,-22: 4 + -26,-21: 0 + -26,-20: 0 + -26,-19: 0 + -26,-18: 0 + -26,-17: 0 + -25,-24: 0 + -25,-23: 0 + -25,-22: 0 + -25,-21: 0 + -25,-20: 0 + -25,-19: 0 + -25,-18: 0 + -25,-17: 0 + -24,-24: 0 + -24,-23: 0 + -24,-22: 0 + -24,-21: 0 + -24,-20: 0 + -24,-19: 0 + -24,-18: 0 + -24,-17: 0 + -23,-24: 0 + -23,-23: 0 + -23,-22: 0 + -23,-21: 0 + -23,-20: 0 + -23,-19: 0 + -23,-18: 0 + -23,-17: 0 + -22,-24: 0 + -22,-23: 0 + -22,-22: 0 + -22,-21: 0 + -22,-20: 0 + -22,-19: 0 + -22,-18: 0 + -22,-17: 0 + -21,-24: 0 + -21,-23: 0 + -21,-22: 0 + -21,-21: 0 + -21,-20: 0 + -21,-19: 0 + -21,-18: 0 + -21,-17: 0 + -20,-24: 0 + -20,-23: 0 + -20,-22: 4 + -20,-21: 0 + -20,-20: 0 + -20,-19: 0 + -20,-18: 0 + -20,-17: 0 + -19,-28: 0 + -19,-27: 0 + -19,-26: 0 + -19,-25: 0 + -19,-24: 0 + -19,-23: 3 + -19,-22: 3 + -19,-21: 0 + -19,-20: 0 + -19,-19: 0 + -19,-18: 0 + -19,-17: 0 + -18,-27: 0 + -18,-24: 0 + -18,-23: 3 + -18,-22: 3 + -18,-21: 0 + -18,-20: 0 + -18,-19: 0 + -18,-18: 0 + -18,-17: 0 + -17,-28: 0 + -17,-27: 0 + -17,-26: 0 + -17,-25: 0 + -17,-24: 0 + -17,-23: 3 + -17,-22: 3 + -17,-21: 0 + -17,-20: 0 + -17,-19: 0 + -17,-18: 0 + -17,-17: 0 + -35,-16: 0 + -35,-9: 0 + -35,-8: 0 + -35,-7: 0 + -34,-16: 0 + -34,-15: 0 + -34,-14: 0 + -34,-13: 0 + -34,-12: 0 + -34,-11: 0 + -34,-10: 0 + -34,-9: 0 + -34,-8: 0 + -34,-7: 0 + -33,-16: 0 + -33,-15: 0 + -33,-14: 0 + -33,-13: 0 + -33,-12: 0 + -33,-11: 0 + -33,-10: 0 + -33,-9: 0 + -33,-8: 0 + -33,-7: 0 + -35,-18: 0 + -35,-17: 0 + -34,-21: 0 + -34,-20: 0 + -34,-19: 0 + -34,-18: 0 + -34,-17: 0 + -33,-22: 0 + -33,-21: 0 + -33,-20: 0 + -33,-19: 0 + -33,-18: 0 + -33,-17: 0 + -14,-34: 0 + -14,-33: 0 + -13,-35: 0 + -13,-34: 0 + -13,-33: 0 + -12,-35: 0 + -12,-34: 0 + -12,-33: 0 + -11,-36: 0 + -11,-35: 0 + -10,-35: 0 + -10,-34: 0 + -10,-33: 0 + -9,-35: 0 + -9,-34: 0 + -9,-33: 0 + -8,-34: 0 + -8,-33: 0 + -29,16: 0 + -29,17: 0 + -29,18: 0 + -29,19: 0 + -29,20: 0 + -29,21: 0 + -29,22: 0 + -28,16: 0 + -28,17: 0 + -28,18: 0 + -28,19: 0 + -28,20: 0 + -28,21: 0 + -28,22: 0 + -27,16: 0 + -27,17: 0 + -27,18: 0 + -27,19: 0 + -27,20: 0 + -27,21: 0 + -27,22: 0 + -27,25: 0 + -27,26: 0 + -27,27: 0 + -27,28: 0 + -26,16: 0 + -26,17: 0 + -26,18: 0 + -26,19: 0 + -26,20: 0 + -26,21: 0 + -26,22: 0 + -26,25: 0 + -26,26: 0 + -26,27: 0 + -26,28: 0 + -25,16: 0 + -25,17: 0 + -25,18: 0 + -25,19: 0 + -25,20: 0 + -25,21: 0 + -25,22: 0 + -25,25: 0 + -25,26: 0 + -25,27: 0 + -25,28: 0 + -24,16: 0 + -24,17: 0 + -24,18: 0 + -24,19: 0 + -24,20: 0 + -24,21: 0 + -24,22: 0 + -24,23: 0 + -24,24: 0 + -24,25: 0 + -24,26: 0 + -24,27: 0 + -24,28: 0 + -24,29: 0 + -23,16: 0 + -23,17: 0 + -23,18: 0 + -23,19: 0 + -23,20: 0 + -23,21: 0 + -23,22: 0 + -23,23: 0 + -23,24: 0 + -23,25: 0 + -23,26: 0 + -23,27: 0 + -23,28: 0 + -23,29: 0 + -22,16: 0 + -22,17: 0 + -22,18: 0 + -22,19: 0 + -22,20: 0 + -22,21: 0 + -22,22: 0 + -22,23: 0 + -22,24: 0 + -22,25: 0 + -22,26: 0 + -22,27: 0 + -22,28: 0 + -22,29: 0 + -21,16: 0 + -21,17: 0 + -21,18: 0 + -21,19: 0 + -21,20: 0 + -21,21: 0 + -21,22: 0 + -21,23: 0 + -21,24: 0 + -21,25: 0 + -21,26: 0 + -21,27: 0 + -21,28: 0 + -21,29: 0 + -20,16: 0 + -20,17: 0 + -20,18: 0 + -20,19: 0 + -20,20: 0 + -20,21: 0 + -20,22: 0 + -20,23: 0 + -20,24: 0 + -20,25: 0 + -20,26: 0 + -20,27: 0 + -20,28: 0 + -20,29: 0 + -19,16: 0 + -19,17: 0 + -19,18: 0 + -19,19: 0 + -19,20: 0 + -19,21: 0 + -19,22: 0 + -19,23: 0 + -19,24: 0 + -19,25: 0 + -19,26: 0 + -19,27: 0 + -19,28: 0 + -19,29: 0 + -18,16: 0 + -18,17: 0 + -18,18: 0 + -18,19: 0 + -18,20: 0 + -18,21: 0 + -18,22: 0 + -18,23: 0 + -18,24: 0 + -18,25: 0 + -18,26: 0 + -18,27: 0 + -18,28: 0 + -18,29: 0 + -17,16: 0 + -17,17: 0 + -17,18: 0 + -17,19: 0 + -17,20: 0 + -17,21: 0 + -17,22: 0 + -17,23: 0 + -17,24: 0 + -17,25: 0 + -17,26: 0 + -17,27: 0 + -17,28: 0 + -17,29: 0 + -14,32: 0 + -14,33: 0 + -14,34: 0 + -14,35: 0 + -14,36: 0 + -14,37: 0 + -14,38: 0 + -13,32: 0 + -13,33: 0 + -13,34: 0 + -13,35: 0 + -13,36: 0 + -13,37: 0 + -13,38: 0 + -13,39: 0 + -12,32: 0 + -12,33: 0 + -12,34: 0 + -12,35: 0 + -12,36: 0 + -12,37: 0 + -12,38: 0 + -12,39: 0 + -11,39: 0 + -11,40: 0 + -10,32: 0 + -10,33: 0 + -10,34: 0 + -10,35: 0 + -10,36: 0 + -10,37: 0 + -10,38: 0 + -10,39: 0 + -9,32: 0 + -9,33: 0 + -9,34: 0 + -9,35: 0 + -9,36: 0 + -9,37: 0 + -9,38: 0 + -9,39: 0 + -8,32: 0 + -8,33: 0 + -8,34: 0 + -8,35: 0 + -8,36: 0 + -8,37: 0 + -8,38: 0 + -22,30: 0 + -22,31: 0 + -21,30: 0 + -20,30: 0 + -19,30: 0 + -18,30: 0 + -17,30: 0 + -17,31: 0 + -32,11: 0 + -32,12: 0 + -32,13: 0 + -31,14: 0 + -31,15: 0 + -30,14: 0 + -30,15: 0 + -32,21: 0 + -32,22: 0 + -32,23: 0 + -31,16: 0 + -31,17: 0 + -31,18: 0 + -31,19: 0 + -31,20: 0 + -31,21: 0 + -31,22: 0 + -31,23: 0 + -30,16: 0 + -30,17: 0 + -30,18: 0 + -30,19: 0 + -30,20: 0 + -30,21: 0 + -30,22: 0 + -30,23: 0 + -29,23: 0 + -25,23: 0 + -25,24: 0 + -22,32: 0 + -22,33: 0 + -21,32: 0 + -20,32: 0 + -19,32: 0 + -18,32: 0 + -17,32: 0 + -17,33: 0 + -35,11: 0 + -35,12: 0 + -35,13: 0 + -34,11: 0 + -34,12: 0 + -34,13: 0 + -33,11: 0 + -33,12: 0 + -33,13: 0 + -32,7: 0 + -32,8: 0 + -32,9: 0 + -32,10: 0 + -32,14: 0 + -32,15: 0 + -48,-10: 0 + -48,-9: 0 + -48,-8: 0 + -48,-7: 0 + -48,-6: 0 + -48,-5: 0 + -48,-4: 0 + -48,-3: 0 + -48,-2: 0 + -48,-1: 0 + -47,-15: 0 + -47,-14: 0 + -47,-13: 0 + -47,-12: 0 + -47,-11: 0 + -47,-10: 0 + -47,-9: 0 + -47,-8: 0 + -47,-7: 0 + -47,-6: 0 + -47,-5: 0 + -47,-4: 0 + -47,-3: 0 + -47,-2: 0 + -47,-1: 0 + -46,-16: 0 + -46,-15: 0 + -46,-14: 0 + -46,-13: 0 + -46,-12: 0 + -46,-11: 0 + -46,-10: 0 + -46,-9: 0 + -46,-8: 0 + -46,-7: 0 + -46,-6: 0 + -46,-5: 0 + -46,-4: 0 + -46,-3: 0 + -46,-2: 0 + -46,-1: 0 + -45,-16: 0 + -45,-15: 0 + -45,-14: 0 + -45,-13: 0 + -45,-12: 0 + -45,-11: 0 + -45,-10: 0 + -45,-9: 0 + -45,-8: 0 + -45,-7: 0 + -45,-6: 0 + -45,-5: 0 + -45,-4: 0 + -45,-3: 0 + -45,-2: 0 + -45,-1: 0 + -44,-16: 0 + -44,-15: 0 + -44,-14: 0 + -44,-13: 0 + -44,-12: 0 + -44,-11: 0 + -44,-10: 0 + -44,-9: 0 + -44,-8: 0 + -44,-7: 0 + -44,-6: 0 + -44,-5: 0 + -44,-4: 0 + -44,-3: 0 + -43,-16: 0 + -43,-15: 0 + -43,-14: 0 + -43,-13: 0 + -43,-12: 0 + -43,-11: 0 + -43,-10: 0 + -43,-9: 0 + -43,-8: 0 + -43,-7: 0 + -43,-6: 0 + -43,-5: 0 + -43,-4: 0 + -43,-3: 0 + -42,-16: 0 + -42,-15: 0 + -42,-14: 0 + -42,-13: 0 + -42,-12: 0 + -42,-11: 0 + -42,-10: 0 + -42,-9: 0 + -42,-8: 0 + -42,-7: 0 + -42,-6: 0 + -42,-5: 0 + -42,-4: 0 + -42,-3: 0 + -41,-16: 0 + -41,-15: 0 + -41,-14: 0 + -41,-13: 0 + -41,-12: 0 + -41,-11: 0 + -41,-10: 0 + -41,-9: 0 + -41,-8: 0 + -41,-7: 0 + -41,-6: 0 + -41,-5: 0 + -41,-4: 0 + -41,-3: 0 + -40,-16: 0 + -40,-15: 0 + -40,-14: 0 + -40,-13: 0 + -40,-12: 0 + -40,-11: 0 + -40,-10: 0 + -40,-9: 0 + -40,-8: 0 + -40,-7: 0 + -40,-6: 0 + -40,-5: 0 + -40,-4: 0 + -40,-3: 0 + -39,-16: 0 + -39,-15: 0 + -39,-14: 0 + -39,-13: 0 + -39,-12: 0 + -39,-11: 0 + -39,-10: 0 + -39,-9: 0 + -39,-8: 0 + -39,-7: 0 + -39,-6: 0 + -39,-5: 0 + -39,-4: 0 + -39,-3: 0 + -38,-16: 0 + -38,-15: 0 + -38,-14: 0 + -38,-13: 0 + -38,-12: 0 + -38,-11: 0 + -38,-10: 0 + -38,-9: 0 + -38,-8: 0 + -38,-7: 0 + -38,-6: 0 + -38,-5: 0 + -38,-4: 0 + -38,-3: 0 + -37,-16: 0 + -37,-15: 0 + -37,-14: 0 + -37,-13: 0 + -37,-12: 0 + -37,-11: 0 + -37,-10: 0 + -37,-9: 0 + -37,-8: 0 + -37,-7: 0 + -37,-6: 0 + -37,-5: 0 + -37,-4: 0 + -37,-3: 0 + -36,-16: 0 + -36,-15: 0 + -36,-14: 0 + -36,-13: 0 + -36,-12: 0 + -36,-11: 0 + -36,-10: 0 + -36,-9: 0 + -36,-8: 0 + -36,-7: 0 + -35,-15: 0 + -35,-14: 0 + -35,-13: 0 + -35,-12: 0 + -35,-11: 0 + -35,-10: 0 + -45,-17: 0 + -44,-17: 0 + -43,-17: 0 + -42,-17: 0 + -41,-17: 0 + -40,-17: 0 + -39,-18: 0 + -39,-17: 0 + -38,-18: 0 + -38,-17: 0 + -37,-18: 0 + -37,-17: 0 + -36,-18: 0 + -36,-17: 0 + -32,16: 0 + -32,17: 0 + -32,18: 0 + -32,19: 0 + -32,20: 0 + -23,30: 0 + -23,31: 0 + -21,31: 0 + -19,31: 0 + -18,31: 0 + -23,32: 0 + -48,0: 0 + -48,4: 0 + -48,5: 0 + -48,6: 0 + -48,7: 0 + -48,8: 0 + -48,9: 0 + -48,10: 0 + -48,11: 0 + -48,12: 0 + -48,13: 0 + -48,14: 0 + -47,0: 0 + -47,4: 0 + -47,5: 0 + -47,6: 0 + -47,7: 0 + -47,8: 0 + -47,9: 0 + -47,10: 0 + -47,11: 0 + -47,12: 0 + -47,13: 0 + -47,14: 0 + -47,15: 0 + -46,0: 0 + -46,4: 0 + -46,5: 0 + -46,6: 0 + -46,7: 0 + -46,8: 0 + -46,9: 0 + -46,10: 0 + -46,11: 0 + -46,12: 0 + -46,13: 0 + -46,14: 0 + -46,15: 0 + -45,0: 0 + -45,4: 0 + -45,5: 0 + -45,6: 0 + -45,7: 0 + -45,8: 0 + -45,9: 0 + -45,10: 0 + -45,11: 0 + -45,12: 0 + -45,13: 0 + -45,14: 0 + -45,15: 0 + -44,7: 0 + -44,8: 0 + -44,9: 0 + -44,10: 0 + -44,11: 0 + -44,12: 0 + -44,13: 0 + -44,14: 0 + -44,15: 0 + -43,7: 0 + -43,8: 0 + -43,9: 0 + -43,10: 0 + -43,11: 0 + -43,12: 0 + -43,13: 0 + -43,14: 0 + -43,15: 0 + -42,7: 0 + -42,8: 0 + -42,9: 0 + -42,10: 0 + -42,11: 0 + -42,12: 0 + -42,13: 0 + -42,14: 0 + -42,15: 0 + -41,11: 0 + -41,12: 0 + -41,13: 0 + -41,14: 0 + -41,15: 0 + -40,11: 0 + -40,12: 0 + -40,13: 0 + -40,14: 0 + -40,15: 0 + -39,11: 0 + -39,12: 0 + -39,13: 0 + -39,14: 0 + -39,15: 0 + -38,11: 0 + -38,12: 0 + -38,13: 0 + -38,14: 0 + -38,15: 0 + -37,11: 0 + -37,12: 0 + -37,13: 0 + -37,14: 0 + -37,15: 0 + -36,11: 0 + -36,12: 0 + -36,13: 0 + -36,14: 0 + -36,15: 0 + -35,14: 0 + -35,15: 0 + -34,14: 0 + -34,15: 0 + -33,14: 0 + -33,15: 0 + -47,16: 0 + -47,17: 0 + -47,18: 0 + -47,19: 0 + -46,16: 0 + -46,17: 0 + -46,18: 0 + -46,19: 0 + -46,20: 0 + -45,16: 0 + -45,17: 0 + -45,18: 0 + -45,19: 0 + -45,20: 0 + -45,21: 0 + -44,16: 0 + -44,17: 0 + -44,18: 0 + -44,19: 0 + -44,20: 0 + -44,21: 0 + -43,16: 0 + -43,17: 0 + -43,18: 0 + -43,19: 0 + -43,20: 0 + -43,21: 0 + -42,16: 0 + -42,17: 0 + -42,18: 0 + -42,19: 0 + -42,20: 0 + -42,21: 0 + -41,16: 0 + -41,17: 0 + -41,18: 0 + -41,19: 0 + -41,20: 0 + -41,21: 0 + -40,16: 0 + -40,17: 0 + -40,18: 0 + -40,19: 0 + -40,20: 0 + -40,21: 0 + -39,16: 0 + -39,17: 0 + -39,18: 0 + -39,19: 0 + -39,20: 0 + -39,21: 0 + -39,22: 0 + -38,16: 0 + -38,17: 0 + -38,18: 0 + -38,19: 0 + -38,20: 0 + -38,21: 0 + -38,22: 0 + -37,16: 0 + -37,17: 0 + -37,18: 0 + -37,19: 0 + -37,20: 0 + -37,21: 0 + -37,22: 0 + -36,16: 0 + -36,17: 0 + -36,18: 0 + -36,19: 0 + -36,20: 0 + -36,21: 0 + -36,22: 0 + -35,16: 0 + -35,17: 0 + -35,18: 0 + -35,19: 0 + -35,20: 0 + -35,21: 0 + -35,22: 0 + -34,16: 0 + -34,17: 0 + -34,18: 0 + -34,19: 0 + -34,20: 0 + -34,21: 0 + -34,22: 0 + -33,16: 0 + -33,17: 0 + -33,18: 0 + -33,19: 0 + -33,20: 0 + -33,21: 0 + -33,22: 0 + -51,0: 0 + -51,4: 0 + -51,5: 0 + -51,6: 0 + -50,0: 0 + -50,4: 0 + -50,5: 0 + -50,6: 0 + -49,0: 0 + -49,4: 0 + -49,5: 0 + -49,6: 0 + -49,7: 0 + -49,8: 0 + -49,9: 0 + -49,10: 0 + -51,-2: 0 + -51,-1: 0 + -50,-2: 0 + -50,-1: 0 + -49,-6: 0 + -49,-5: 0 + -49,-4: 0 + -49,-3: 0 + -49,-2: 0 + -49,-1: 0 + -32,-2: 0 + -32,-1: 0 + -32,0: 0 + -32,1: 0 + -32,2: 0 + -32,3: 0 + -32,4: 0 + -32,5: 0 + -32,6: 0 + -44,-2: 0 + -44,-1: 0 + -43,-2: 0 + -43,-1: 0 + -42,-2: 0 + -42,-1: 0 + -41,-2: 0 + -41,-1: 0 + -40,-2: 0 + -40,-1: 0 + -39,-2: 0 + -39,-1: 0 + -38,-2: 0 + -38,-1: 0 + -37,-2: 0 + -37,-1: 0 + -36,-6: 0 + -36,-5: 0 + -36,-4: 0 + -36,-3: 0 + -36,-2: 0 + -36,-1: 0 + -35,-6: 0 + -35,-5: 0 + -35,-4: 0 + -35,-3: 0 + -35,-2: 0 + -35,-1: 0 + -34,-6: 0 + -34,-5: 0 + -34,-4: 0 + -34,-3: 0 + -34,-2: 0 + -34,-1: 0 + -33,-6: 0 + -33,-5: 0 + -33,-4: 0 + -33,-3: 0 + -33,-2: 0 + -33,-1: 0 + -46,-17: 0 + -45,-18: 0 + -44,-22: 0 + -44,-21: 0 + -44,-20: 0 + -44,-19: 0 + -44,-18: 0 + -43,-22: 0 + -42,-22: 0 + -42,-21: 0 + -42,-20: 0 + -42,-19: 0 + -42,-18: 0 + -40,-18: 0 + -44,0: 0 + -44,1: 0 + -44,2: 0 + -44,3: 0 + -44,4: 0 + -44,5: 0 + -44,6: 0 + -43,0: 0 + -43,1: 0 + -43,2: 0 + -43,3: 0 + -43,4: 0 + -43,5: 0 + -43,6: 0 + -42,0: 0 + -42,1: 0 + -42,2: 0 + -42,3: 0 + -42,4: 0 + -42,5: 0 + -42,6: 0 + -41,0: 0 + -41,1: 0 + -41,2: 0 + -41,3: 0 + -41,4: 0 + -41,5: 0 + -41,6: 0 + -41,7: 0 + -41,8: 0 + -41,9: 0 + -41,10: 0 + -40,0: 0 + -40,1: 0 + -40,2: 0 + -40,3: 0 + -40,4: 0 + -40,5: 0 + -40,6: 0 + -40,7: 0 + -40,8: 0 + -40,9: 0 + -40,10: 0 + -39,0: 0 + -39,1: 0 + -39,2: 0 + -39,3: 0 + -39,4: 0 + -39,5: 0 + -39,6: 0 + -39,7: 0 + -39,8: 0 + -39,9: 0 + -39,10: 0 + -38,0: 0 + -38,1: 0 + -38,2: 0 + -38,3: 0 + -38,4: 0 + -38,5: 0 + -38,6: 0 + -38,7: 0 + -38,8: 0 + -38,9: 0 + -38,10: 0 + -37,0: 0 + -37,1: 0 + -37,2: 0 + -37,3: 0 + -37,4: 0 + -37,5: 0 + -37,6: 0 + -37,7: 0 + -37,8: 0 + -37,9: 0 + -37,10: 0 + -36,0: 0 + -36,1: 0 + -36,2: 0 + -36,3: 0 + -36,4: 0 + -36,5: 0 + -36,6: 0 + -36,7: 0 + -36,8: 0 + -36,9: 0 + -36,10: 0 + -35,0: 0 + -35,1: 0 + -35,2: 0 + -35,3: 0 + -35,4: 0 + -35,5: 0 + -35,6: 0 + -35,7: 0 + -35,8: 0 + -35,9: 0 + -35,10: 0 + -34,0: 0 + -34,1: 0 + -34,2: 0 + -34,3: 0 + -34,4: 0 + -34,5: 0 + -34,6: 0 + -34,7: 0 + -34,8: 0 + -34,9: 0 + -34,10: 0 + -33,0: 0 + -33,1: 0 + -33,2: 0 + -33,3: 0 + -33,4: 0 + -33,5: 0 + -33,6: 0 + -33,7: 0 + -33,8: 0 + -33,9: 0 + -33,10: 0 + -46,21: 0 + -45,22: 0 + -44,22: 0 + -44,23: 0 + -44,24: 0 + -44,25: 0 + -44,26: 0 + -43,26: 0 + -42,22: 0 + -42,23: 0 + -42,24: 0 + -42,25: 0 + -42,26: 0 + -40,22: 0 + -39,23: 0 + -37,23: 0 + -35,23: 0 + -33,23: 0 + -48,1: 5 + -48,2: 0 + -48,3: 6 + -47,1: 5 + -47,2: 0 + -47,3: 6 + -46,1: 5 + -46,2: 0 + -46,3: 6 + -45,1: 0 + -45,2: 0 + -45,3: 0 + -52,0: 0 + -52,1: 0 + -52,2: 0 + -52,3: 0 + -52,4: 0 + -51,1: 0 + -51,2: 0 + -51,3: 0 + -50,1: 0 + -50,2: 0 + -50,3: 0 + -49,1: 0 + -49,2: 0 + -49,3: 0 + 6,25: 0 + 7,25: 0 + 8,25: 0 + 9,25: 0 + 10,25: 0 + 6,-20: 0 + 7,-20: 0 + 8,-20: 0 + 9,-20: 0 + 10,-20: 0 + -32,-23: 0 + -31,-23: 0 + -33,-23: 0 + -34,23: 0 + 30,14: 0 + 30,-13: 0 + 30,-12: 0 + 30,-11: 0 + 30,16: 0 + 30,17: 0 + 30,18: 0 + 30,19: 0 + 30,20: 0 + -26,0: 0 + -12,-15: 0 + -11,-15: 0 + -10,-15: 0 + -9,-15: 0 + -8,-15: 0 + -7,-15: 0 + -6,-15: 0 + -12,21: 0 + -11,21: 0 + -15,-23: 0 + -14,-23: 0 + -12,-18: 0 + -10,-21: 0 + -10,-20: 0 + -10,-19: 0 + -10,-18: 0 + -8,-23: 0 + -8,-21: 0 + -8,-20: 0 + -8,-19: 0 + -8,-18: 0 + -7,-23: 0 + -7,-19: 0 + -6,-23: 0 + -6,-19: 0 + -5,-23: 0 + 28,-17: 0 + 29,-17: 0 + -27,0: 0 + -27,4: 0 + -43,22: 0 + -43,23: 0 + -41,22: 0 + -41,23: 0 + -38,23: 0 + 0,28: 0 + 1,28: 0 + 2,28: 0 + -10,26: 0 + -10,28: 0 + -8,26: 0 + -8,28: 0 + -7,26: 0 + -7,28: 0 + -6,26: 0 + -6,28: 0 + -5,28: 0 + -4,28: 0 + -3,28: 0 + -2,28: 0 + -1,28: 0 + -16,-25: 0 + -15,-25: 0 + -15,-24: 0 + -14,-25: 0 + -12,-23: 0 + -10,-23: 0 + -8,-25: 0 + -8,-24: 0 + -7,-25: 0 + -7,-24: 0 + -6,-25: 0 + -6,-24: 0 + -5,-25: 0 + -5,-24: 0 + -4,-25: 0 + -4,-24: 0 + -3,-25: 0 + -3,-24: 0 + -2,-25: 0 + -2,-24: 0 + -1,-25: 0 + -1,-24: 0 + 0,-25: 0 + 0,-24: 0 + 1,-25: 0 + 1,-24: 0 + 2,-25: 0 + 2,-24: 0 + 12,-25: 0 + 12,-24: 0 + 12,-23: 0 + 12,-22: 0 + 12,-21: 0 + 13,-25: 0 + 13,-24: 0 + 13,-23: 0 + 13,-22: 0 + 13,-21: 0 + 14,-25: 0 + 14,-24: 0 + 14,-23: 0 + 14,-22: 0 + 14,-21: 0 + 15,-25: 0 + 15,-24: 0 + 15,-23: 0 + 15,-22: 0 + 15,-21: 0 + 16,-25: 0 + 16,-24: 0 + 16,-23: 0 + 17,-24: 0 + 18,-24: 0 + 19,-24: 0 + 20,-25: 0 + 20,-24: 0 + 21,-25: 0 + 21,-24: 0 + 21,-23: 0 + 22,-25: 0 + 22,-24: 0 + 22,-23: 0 + 22,-22: 0 + 22,-21: 0 + 23,-25: 0 + 23,-24: 0 + 23,-23: 0 + 23,-22: 0 + 23,-21: 0 + 24,-25: 0 + 24,-24: 0 + 24,-23: 0 + 24,-22: 0 + 24,-21: 0 + 12,-20: 3 + 12,-19: 3 + 12,-18: 3 + 13,-20: 3 + 13,-19: 3 + 13,-18: 3 + 14,-20: 3 + 14,-19: 3 + 14,-18: 3 + 23,-20: 3 + 23,-19: 3 + 23,-18: 3 + 24,-20: 3 + 24,-19: 3 + 24,-18: 3 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 220.53749 + moles: + - 16.36866 + - 61.57734 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 16.36866 + - 61.57734 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: GridAtmosphere + - id: Atlas + type: BecomesStation +- uid: 31 + type: AirlockGlassAlpha + components: + - pos: 26.5,0.5 + parent: 30 + type: Transform +- uid: 32 + type: WallAlmayer + components: + - pos: -8.5,7.5 + parent: 30 + type: Transform +- uid: 33 + type: VendingMachineBooze + components: + - pos: -43.5,-5.5 + parent: 30 + type: Transform +- uid: 34 + type: WallAlmayer + components: + - pos: -13.5,6.5 + parent: 30 + type: Transform +- uid: 35 + type: CableApcExtension + components: + - pos: -16.5,11.5 + parent: 30 + type: Transform +- uid: 36 + type: Poweredlight + components: + - pos: -34.5,-3.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 37 + type: Grille + components: + - pos: -0.5,2.5 + parent: 30 + type: Transform +- uid: 38 + type: AirlockGlassAlpha + components: + - pos: -0.5,3.5 + parent: 30 + type: Transform +- uid: 39 + type: WallAlmayer + components: + - pos: -0.5,0.5 + parent: 30 + type: Transform +- uid: 40 + type: WindowAlmayer + components: + - pos: -0.5,-2.5 + parent: 30 + type: Transform +- uid: 41 + type: WindowAlmayer + components: + - pos: -0.5,-0.5 + parent: 30 + type: Transform +- uid: 42 + type: ClothingBeltMilitaryWebbing + components: + - pos: 6.460475,-19.327284 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 43 + type: WallAlmayer + components: + - pos: -13.5,3.5 + parent: 30 + type: Transform +- uid: 44 + type: WallAlmayer + components: + - pos: 16.5,-6.5 + parent: 30 + type: Transform +- uid: 45 + type: WallAlmayer + components: + - pos: -8.5,-1.5 + parent: 30 + type: Transform +- uid: 46 + type: WallAlmayer + components: + - pos: -13.5,4.5 + parent: 30 + type: Transform +- uid: 47 + type: Grille + components: + - pos: -10.5,-17.5 + parent: 30 + type: Transform +- uid: 48 + type: WindowReinforcedDirectional + components: + - rot: 3.141592653589793 rad + pos: -18.5,-8.5 + parent: 30 + type: Transform +- uid: 49 + type: WallAlmayer + components: + - pos: -12.5,8.5 + parent: 30 + type: Transform +- uid: 50 + type: WallAlmayer + components: + - pos: -12.5,-1.5 + parent: 30 + type: Transform +- uid: 51 + type: Grille + components: + - pos: 15.5,14.5 + parent: 30 + type: Transform +- uid: 52 + type: WallAlmayer + components: + - pos: -4.5,8.5 + parent: 30 + type: Transform +- uid: 53 + type: WallAlmayer + components: + - pos: -12.5,7.5 + parent: 30 + type: Transform +- uid: 54 + type: WindowAlmayer + components: + - pos: -4.5,-1.5 + parent: 30 + type: Transform +- uid: 55 + type: WindoorSecurityLocked + components: + - pos: 6.5,7.5 + parent: 30 + type: Transform +- uid: 56 + type: WallAlmayer + components: + - pos: -8.5,6.5 + parent: 30 + type: Transform +- uid: 57 + type: WindoorSecurityLocked + components: + - pos: 12.5,7.5 + parent: 30 + type: Transform +- uid: 58 + type: WallAlmayer + components: + - pos: -12.5,6.5 + parent: 30 + type: Transform +- uid: 59 + type: WallAlmayer + components: + - pos: -13.5,-1.5 + parent: 30 + type: Transform +- uid: 60 + type: WindowAlmayer + components: + - pos: -13.5,-0.5 + parent: 30 + type: Transform +- uid: 61 + type: WallAlmayer + components: + - pos: -12.5,-2.5 + parent: 30 + type: Transform +- uid: 62 + type: CableHV + components: + - pos: -14.5,20.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 63 + type: WallAlmayer + components: + - pos: 30.5,-0.5 + parent: 30 + type: Transform +- uid: 64 + type: WallAlmayer + components: + - pos: 29.5,-0.5 + parent: 30 + type: Transform +- uid: 65 + type: PoweredSmallLight + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-6.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 66 + type: WallAlmayer + components: + - pos: 30.5,5.5 + parent: 30 + type: Transform +- uid: 67 + type: WallAlmayer + components: + - pos: 29.5,5.5 + parent: 30 + type: Transform +- uid: 68 + type: WallAlmayer + components: + - pos: 33.5,4.5 + parent: 30 + type: Transform +- uid: 69 + type: WallAlmayer + components: + - pos: 33.5,5.5 + parent: 30 + type: Transform +- uid: 70 + type: WallAlmayer + components: + - pos: 32.5,5.5 + parent: 30 + type: Transform +- uid: 71 + type: WallAlmayer + components: + - pos: 33.5,6.5 + parent: 30 + type: Transform +- uid: 72 + type: WallAlmayer + components: + - pos: 34.5,5.5 + parent: 30 + type: Transform +- uid: 73 + type: WallAlmayer + components: + - pos: 35.5,5.5 + parent: 30 + type: Transform +- uid: 74 + type: WallAlmayer + components: + - pos: 36.5,5.5 + parent: 30 + type: Transform +- uid: 75 + type: WallAlmayer + components: + - pos: 37.5,5.5 + parent: 30 + type: Transform +- uid: 76 + type: WallAlmayer + components: + - pos: 33.5,8.5 + parent: 30 + type: Transform +- uid: 77 + type: WallAlmayer + components: + - pos: 33.5,9.5 + parent: 30 + type: Transform +- uid: 78 + type: WallAlmayer + components: + - pos: 33.5,10.5 + parent: 30 + type: Transform +- uid: 79 + type: WallAlmayer + components: + - pos: 33.5,11.5 + parent: 30 + type: Transform +- uid: 80 + type: WallAlmayer + components: + - pos: 29.5,11.5 + parent: 30 + type: Transform +- uid: 81 + type: WallAlmayer + components: + - pos: 29.5,10.5 + parent: 30 + type: Transform +- uid: 82 + type: WallAlmayer + components: + - pos: 29.5,9.5 + parent: 30 + type: Transform +- uid: 83 + type: WallAlmayer + components: + - pos: 29.5,8.5 + parent: 30 + type: Transform +- uid: 84 + type: WallAlmayer + components: + - pos: 29.5,7.5 + parent: 30 + type: Transform +- uid: 85 + type: WallAlmayer + components: + - pos: 29.5,6.5 + parent: 30 + type: Transform +- uid: 86 + type: WallAlmayer + components: + - pos: 27.5,5.5 + parent: 30 + type: Transform +- uid: 87 + type: WallAlmayer + components: + - pos: 25.5,5.5 + parent: 30 + type: Transform +- uid: 88 + type: WallAlmayer + components: + - pos: 25.5,5.5 + parent: 30 + type: Transform +- uid: 89 + type: WallAlmayer + components: + - pos: 25.5,6.5 + parent: 30 + type: Transform +- uid: 90 + type: WallAlmayer + components: + - pos: 25.5,8.5 + parent: 30 + type: Transform +- uid: 91 + type: WallAlmayer + components: + - pos: 26.5,5.5 + parent: 30 + type: Transform +- uid: 92 + type: WallAlmayer + components: + - pos: 25.5,7.5 + parent: 30 + type: Transform +- uid: 93 + type: WallAlmayer + components: + - pos: 25.5,9.5 + parent: 30 + type: Transform +- uid: 94 + type: WallAlmayer + components: + - pos: 26.5,9.5 + parent: 30 + type: Transform +- uid: 95 + type: WallAlmayer + components: + - pos: 27.5,9.5 + parent: 30 + type: Transform +- uid: 96 + type: WallAlmayer + components: + - pos: 28.5,9.5 + parent: 30 + type: Transform +- uid: 97 + type: WallAlmayer + components: + - pos: 24.5,5.5 + parent: 30 + type: Transform +- uid: 98 + type: WallAlmayer + components: + - pos: 24.5,4.5 + parent: 30 + type: Transform +- uid: 99 + type: BlastDoor + components: + - pos: 23.5,4.5 + parent: 30 + type: Transform + - inputs: + Open: + - port: Left + uid: 365 + - port: Right + uid: 365 + Close: + - port: Middle + uid: 365 + Toggle: [] + type: SignalReceiver +- uid: 100 + type: WallAlmayer + components: + - pos: 21.5,4.5 + parent: 30 + type: Transform +- uid: 101 + type: WallAlmayer + components: + - pos: 20.5,4.5 + parent: 30 + type: Transform +- uid: 102 + type: WallAlmayer + components: + - pos: 20.5,5.5 + parent: 30 + type: Transform +- uid: 103 + type: WallAlmayer + components: + - pos: 20.5,6.5 + parent: 30 + type: Transform +- uid: 104 + type: WallAlmayer + components: + - pos: 20.5,7.5 + parent: 30 + type: Transform +- uid: 105 + type: WallAlmayer + components: + - pos: 20.5,8.5 + parent: 30 + type: Transform +- uid: 106 + type: WallAlmayer + components: + - pos: 20.5,9.5 + parent: 30 + type: Transform +- uid: 107 + type: WallAlmayer + components: + - pos: 21.5,9.5 + parent: 30 + type: Transform +- uid: 108 + type: WallAlmayer + components: + - pos: 22.5,9.5 + parent: 30 + type: Transform +- uid: 109 + type: WallAlmayer + components: + - pos: 23.5,9.5 + parent: 30 + type: Transform +- uid: 110 + type: WallAlmayer + components: + - pos: 24.5,9.5 + parent: 30 + type: Transform +- uid: 111 + type: WallAlmayer + components: + - pos: 29.5,-9.5 + parent: 30 + type: Transform +- uid: 112 + type: Grille + components: + - pos: 29.5,-7.5 + parent: 30 + type: Transform +- uid: 113 + type: WallAlmayer + components: + - pos: 29.5,-8.5 + parent: 30 + type: Transform +- uid: 114 + type: WallAlmayer + components: + - pos: 29.5,-6.5 + parent: 30 + type: Transform +- uid: 115 + type: WallAlmayer + components: + - pos: 29.5,-5.5 + parent: 30 + type: Transform +- uid: 116 + type: WallAlmayer + components: + - pos: 29.5,-4.5 + parent: 30 + type: Transform +- uid: 117 + type: WallAlmayer + components: + - pos: 29.5,-3.5 + parent: 30 + type: Transform +- uid: 118 + type: WallAlmayer + components: + - pos: 29.5,-2.5 + parent: 30 + type: Transform +- uid: 119 + type: WallAlmayer + components: + - pos: 29.5,-1.5 + parent: 30 + type: Transform +- uid: 120 + type: CableHV + components: + - pos: 24.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 121 + type: CableHV + components: + - pos: 23.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 122 + type: CableHV + components: + - pos: 22.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 123 + type: CableHV + components: + - pos: 21.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 124 + type: AirlockGlassAlpha + components: + - pos: 24.5,-9.5 + parent: 30 + type: Transform +- uid: 125 + type: CableHV + components: + - pos: 20.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 126 + type: WallAlmayer + components: + - pos: 24.5,-7.5 + parent: 30 + type: Transform +- uid: 127 + type: WallAlmayer + components: + - pos: 24.5,-6.5 + parent: 30 + type: Transform +- uid: 128 + type: WallAlmayer + components: + - pos: 24.5,-5.5 + parent: 30 + type: Transform +- uid: 129 + type: WallAlmayer + components: + - pos: 24.5,-4.5 + parent: 30 + type: Transform +- uid: 130 + type: WallAlmayer + components: + - pos: 24.5,-3.5 + parent: 30 + type: Transform +- uid: 131 + type: WallAlmayer + components: + - pos: 24.5,-2.5 + parent: 30 + type: Transform +- uid: 132 + type: WallAlmayer + components: + - pos: 24.5,-1.5 + parent: 30 + type: Transform +- uid: 133 + type: WallAlmayer + components: + - pos: 24.5,-0.5 + parent: 30 + type: Transform +- uid: 134 + type: WallAlmayer + components: + - pos: 27.5,-0.5 + parent: 30 + type: Transform +- uid: 135 + type: WindowAlmayer + components: + - pos: 25.5,-0.5 + parent: 30 + type: Transform +- uid: 136 + type: WallAlmayer + components: + - pos: 26.5,-0.5 + parent: 30 + type: Transform +- uid: 137 + type: WallAlmayer + components: + - pos: 33.5,-6.5 + parent: 30 + type: Transform +- uid: 138 + type: WallAlmayer + components: + - pos: 33.5,-5.5 + parent: 30 + type: Transform +- uid: 139 + type: WallAlmayer + components: + - pos: 33.5,-4.5 + parent: 30 + type: Transform +- uid: 140 + type: WallAlmayer + components: + - pos: 33.5,-3.5 + parent: 30 + type: Transform +- uid: 141 + type: WallAlmayer + components: + - pos: 37.5,-1.5 + parent: 30 + type: Transform +- uid: 142 + type: WallAlmayer + components: + - pos: 37.5,-0.5 + parent: 30 + type: Transform +- uid: 143 + type: WallAlmayer + components: + - pos: 36.5,-0.5 + parent: 30 + type: Transform +- uid: 144 + type: WallAlmayer + components: + - pos: 35.5,-0.5 + parent: 30 + type: Transform +- uid: 145 + type: WallAlmayer + components: + - pos: 34.5,-0.5 + parent: 30 + type: Transform +- uid: 146 + type: WallAlmayer + components: + - pos: 33.5,-0.5 + parent: 30 + type: Transform +- uid: 147 + type: WallAlmayer + components: + - pos: 33.5,-1.5 + parent: 30 + type: Transform +- uid: 148 + type: WallAlmayer + components: + - pos: 32.5,-0.5 + parent: 30 + type: Transform +- uid: 149 + type: WallAlmayer + components: + - pos: 33.5,0.5 + parent: 30 + type: Transform +- uid: 150 + type: WallAlmayer + components: + - pos: 24.5,0.5 + parent: 30 + type: Transform +- uid: 151 + type: WallAlmayer + components: + - pos: 23.5,0.5 + parent: 30 + type: Transform +- uid: 152 + type: WallAlmayer + components: + - pos: 22.5,0.5 + parent: 30 + type: Transform +- uid: 153 + type: WallAlmayer + components: + - pos: 21.5,0.5 + parent: 30 + type: Transform +- uid: 154 + type: WallAlmayer + components: + - pos: 20.5,0.5 + parent: 30 + type: Transform +- uid: 155 + type: WindowAlmayer + components: + - pos: 37.5,0.5 + parent: 30 + type: Transform +- uid: 156 + type: WindowAlmayer + components: + - pos: 38.5,0.5 + parent: 30 + type: Transform +- uid: 157 + type: WindowAlmayer + components: + - pos: 38.5,1.5 + parent: 30 + type: Transform +- uid: 158 + type: WindowAlmayer + components: + - pos: 38.5,2.5 + parent: 30 + type: Transform +- uid: 159 + type: WindowAlmayer + components: + - pos: 38.5,3.5 + parent: 30 + type: Transform +- uid: 160 + type: WindowAlmayer + components: + - pos: 38.5,4.5 + parent: 30 + type: Transform +- uid: 161 + type: WindowAlmayer + components: + - pos: 37.5,4.5 + parent: 30 + type: Transform +- uid: 162 + type: WindowAlmayer + components: + - pos: 32.5,11.5 + parent: 30 + type: Transform +- uid: 163 + type: WindowAlmayer + components: + - pos: 31.5,11.5 + parent: 30 + type: Transform +- uid: 164 + type: WindowAlmayer + components: + - pos: 30.5,11.5 + parent: 30 + type: Transform +- uid: 165 + type: WindowAlmayer + components: + - pos: 32.5,-6.5 + parent: 30 + type: Transform +- uid: 166 + type: WindowAlmayer + components: + - pos: 31.5,-6.5 + parent: 30 + type: Transform +- uid: 167 + type: WindowAlmayer + components: + - pos: 30.5,-6.5 + parent: 30 + type: Transform +- uid: 168 + type: WindowAlmayer + components: + - pos: 37.5,7.5 + parent: 30 + type: Transform +- uid: 169 + type: WindowAlmayer + components: + - pos: 34.5,-4.5 + parent: 30 + type: Transform +- uid: 170 + type: WindowAlmayer + components: + - pos: 35.5,-4.5 + parent: 30 + type: Transform +- uid: 171 + type: WindowAlmayer + components: + - pos: 36.5,-4.5 + parent: 30 + type: Transform +- uid: 172 + type: WindowAlmayer + components: + - pos: 36.5,-3.5 + parent: 30 + type: Transform +- uid: 173 + type: WindowAlmayer + components: + - pos: 37.5,-3.5 + parent: 30 + type: Transform +- uid: 174 + type: WindowAlmayer + components: + - pos: 37.5,-2.5 + parent: 30 + type: Transform +- uid: 175 + type: DogBed + components: + - pos: 35.5,6.5 + parent: 30 + type: Transform +- uid: 176 + type: LampGold + components: + - pos: 36.403763,7.7186003 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 177 + type: Dresser + components: + - pos: 34.5,8.5 + parent: 30 + type: Transform +- uid: 178 + type: WallAlmayer + components: + - pos: 34.5,9.5 + parent: 30 + type: Transform +- uid: 179 + type: WallAlmayer + components: + - pos: 36.5,9.5 + parent: 30 + type: Transform +- uid: 180 + type: WallAlmayer + components: + - pos: 37.5,8.5 + parent: 30 + type: Transform +- uid: 181 + type: WindowAlmayer + components: + - pos: 30.5,0.5 + parent: 30 + type: Transform +- uid: 182 + type: WindowAlmayer + components: + - pos: 30.5,1.5 + parent: 30 + type: Transform +- uid: 183 + type: WindowAlmayer + components: + - pos: 30.5,3.5 + parent: 30 + type: Transform +- uid: 184 + type: WindowAlmayer + components: + - pos: 30.5,4.5 + parent: 30 + type: Transform +- uid: 185 + type: Grille + components: + - pos: 30.5,0.5 + parent: 30 + type: Transform +- uid: 186 + type: Grille + components: + - pos: 30.5,1.5 + parent: 30 + type: Transform +- uid: 187 + type: Grille + components: + - pos: 30.5,3.5 + parent: 30 + type: Transform +- uid: 188 + type: Grille + components: + - pos: 30.5,4.5 + parent: 30 + type: Transform +- uid: 189 + type: Grille + components: + - pos: 32.5,-6.5 + parent: 30 + type: Transform +- uid: 190 + type: Grille + components: + - pos: 31.5,-6.5 + parent: 30 + type: Transform +- uid: 191 + type: Grille + components: + - pos: 30.5,-6.5 + parent: 30 + type: Transform +- uid: 192 + type: Grille + components: + - pos: 34.5,-4.5 + parent: 30 + type: Transform +- uid: 193 + type: Grille + components: + - pos: 35.5,-4.5 + parent: 30 + type: Transform +- uid: 194 + type: Grille + components: + - pos: 36.5,-4.5 + parent: 30 + type: Transform +- uid: 195 + type: Grille + components: + - pos: 36.5,-3.5 + parent: 30 + type: Transform +- uid: 196 + type: Grille + components: + - pos: 37.5,-3.5 + parent: 30 + type: Transform +- uid: 197 + type: Grille + components: + - pos: 37.5,-2.5 + parent: 30 + type: Transform +- uid: 198 + type: Grille + components: + - pos: 37.5,0.5 + parent: 30 + type: Transform +- uid: 199 + type: Grille + components: + - pos: 38.5,0.5 + parent: 30 + type: Transform +- uid: 200 + type: Grille + components: + - pos: 38.5,1.5 + parent: 30 + type: Transform +- uid: 201 + type: Grille + components: + - pos: 38.5,2.5 + parent: 30 + type: Transform +- uid: 202 + type: Grille + components: + - pos: 38.5,3.5 + parent: 30 + type: Transform +- uid: 203 + type: Grille + components: + - pos: 38.5,4.5 + parent: 30 + type: Transform +- uid: 204 + type: Grille + components: + - pos: 37.5,4.5 + parent: 30 + type: Transform +- uid: 205 + type: DrinkFlask + components: + - pos: 36.638138,7.6717253 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 206 + type: TableWood + components: + - pos: 36.5,7.5 + parent: 30 + type: Transform +- uid: 207 + type: Fireplace + components: + - pos: 35.5,8.5 + parent: 30 + type: Transform +- uid: 208 + type: WallAlmayer + components: + - pos: 35.5,9.5 + parent: 30 + type: Transform +- uid: 209 + type: WallAlmayer + components: + - pos: 36.5,8.5 + parent: 30 + type: Transform +- uid: 210 + type: WindowAlmayer + components: + - pos: 37.5,6.5 + parent: 30 + type: Transform +- uid: 211 + type: Grille + components: + - pos: 32.5,11.5 + parent: 30 + type: Transform +- uid: 212 + type: Grille + components: + - pos: 31.5,11.5 + parent: 30 + type: Transform +- uid: 213 + type: Grille + components: + - pos: 30.5,11.5 + parent: 30 + type: Transform +- uid: 214 + type: Grille + components: + - pos: 26.5,1.5 + parent: 30 + type: Transform +- uid: 215 + type: Grille + components: + - pos: 26.5,3.5 + parent: 30 + type: Transform +- uid: 216 + type: WindowAlmayer + components: + - pos: 26.5,1.5 + parent: 30 + type: Transform +- uid: 217 + type: WindowAlmayer + components: + - pos: 26.5,3.5 + parent: 30 + type: Transform +- uid: 218 + type: WindoorCommandLocked + components: + - rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 30 + type: Transform +- uid: 219 + type: WindoorSecure + components: + - rot: -1.5707963267948966 rad + pos: 26.5,2.5 + parent: 30 + type: Transform +- uid: 220 + type: TableReinforced + components: + - pos: 26.5,2.5 + parent: 30 + type: Transform +- uid: 221 + type: AirlockGlassAlpha + components: + - pos: 30.5,2.5 + parent: 30 + type: Transform +- uid: 222 + type: AirlockCommand + components: + - pos: 28.5,5.5 + parent: 30 + type: Transform +- uid: 223 + type: AirlockGlassAlpha + components: + - pos: 33.5,7.5 + parent: 30 + type: Transform +- uid: 224 + type: AirlockGlassAlpha + components: + - pos: 31.5,-0.5 + parent: 30 + type: Transform +- uid: 225 + type: AirlockGlassAlpha + components: + - pos: 33.5,-2.5 + parent: 30 + type: Transform +- uid: 226 + type: AirlockGlassAlpha + components: + - pos: 28.5,-5.5 + parent: 30 + type: Transform +- uid: 227 + type: AirlockGlassAlpha + components: + - pos: 28.5,-0.5 + parent: 30 + type: Transform +- uid: 228 + type: ComputerFrame + components: + - rot: 3.141592653589793 rad + pos: 36.5,1.5 + parent: 30 + type: Transform +- uid: 229 + type: ComputerId + components: + - pos: 27.5,3.5 + parent: 30 + type: Transform + - containers: + IdCardConsole-privilegedId: !type:ContainerSlot {} + IdCardConsole-targetId: !type:ContainerSlot {} + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 230 + type: ChairOfficeDark + components: + - rot: -1.5707963267948966 rad + pos: 27.5,2.5 + parent: 30 + type: Transform +- uid: 231 + type: ComputerComms + components: + - pos: 36.5,3.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 232 + type: TableReinforced + components: + - pos: 37.5,1.5 + parent: 30 + type: Transform +- uid: 233 + type: ComputerAlert + components: + - rot: 3.141592653589793 rad + pos: 35.5,0.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 234 + type: SurveillanceCameraRouterCommand + components: + - pos: 35.5,-1.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 235 + type: TableReinforced + components: + - pos: 37.5,3.5 + parent: 30 + type: Transform +- uid: 236 + type: ChairPilotSeat + components: + - rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 30 + type: Transform +- uid: 237 + type: ComputerCriminalRecords + components: + - pos: 35.5,4.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 238 + type: ComputerCrewMonitoring + components: + - pos: 34.5,4.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 239 + type: ComputerBroken + components: + - rot: -1.5707963267948966 rad + pos: 37.5,2.5 + parent: 30 + type: Transform +- uid: 240 + type: ComputerSurveillanceCameraMonitor + components: + - rot: 3.141592653589793 rad + pos: 34.5,0.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 241 + type: TableReinforced + components: + - pos: 36.5,0.5 + parent: 30 + type: Transform +- uid: 242 + type: TableReinforced + components: + - pos: 36.5,4.5 + parent: 30 + type: Transform +- uid: 243 + type: ChairOfficeDark + components: + - rot: 3.141592653589793 rad + pos: 35.5,3.5 + parent: 30 + type: Transform +- uid: 244 + type: ChairOfficeDark + components: + - pos: 34.5,1.5 + parent: 30 + type: Transform +- uid: 245 + type: AirlockGlassAlpha + components: + - pos: 31.5,5.5 + parent: 30 + type: Transform +- uid: 246 + type: LockerCaptainFilled + components: + - pos: 34.5,6.5 + parent: 30 + type: Transform +- uid: 247 + type: Bed + components: + - pos: 36.5,6.5 + parent: 30 + type: Transform +- uid: 248 + type: BedsheetCaptain + components: + - pos: 36.5,6.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 249 + type: SpawnMobFoxRenault + components: + - pos: 35.5,6.5 + parent: 30 + type: Transform +- uid: 250 + type: SpawnPointCaptain + components: + - pos: 35.5,7.5 + parent: 30 + type: Transform +- uid: 251 + type: WindowAlmayer + components: + - pos: -0.5,-20.5 + parent: 30 + type: Transform +- uid: 252 + type: Grille + components: + - pos: 37.5,6.5 + parent: 30 + type: Transform +- uid: 253 + type: Grille + components: + - pos: 37.5,7.5 + parent: 30 + type: Transform +- uid: 254 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 38.5,6.5 + parent: 30 + type: Transform +- uid: 255 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 38.5,7.5 + parent: 30 + type: Transform +- uid: 256 + type: WindowReinforcedDirectional + components: + - pos: 38.5,5.5 + parent: 30 + type: Transform +- uid: 257 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 39.5,4.5 + parent: 30 + type: Transform +- uid: 258 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 39.5,3.5 + parent: 30 + type: Transform +- uid: 259 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 39.5,2.5 + parent: 30 + type: Transform +- uid: 260 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 39.5,1.5 + parent: 30 + type: Transform +- uid: 261 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 39.5,0.5 + parent: 30 + type: Transform +- uid: 262 + type: WindowReinforcedDirectional + components: + - rot: 3.141592653589793 rad + pos: 38.5,-0.5 + parent: 30 + type: Transform +- uid: 263 + type: WindowReinforcedDirectional + components: + - rot: 3.141592653589793 rad + pos: 30.5,-7.5 + parent: 30 + type: Transform +- uid: 264 + type: WindowReinforcedDirectional + components: + - rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 30 + type: Transform +- uid: 265 + type: WindowReinforcedDirectional + components: + - rot: 3.141592653589793 rad + pos: 32.5,-7.5 + parent: 30 + type: Transform +- uid: 266 + type: WindowReinforcedDirectional + components: + - pos: 32.5,12.5 + parent: 30 + type: Transform +- uid: 267 + type: WindowReinforcedDirectional + components: + - pos: 31.5,12.5 + parent: 30 + type: Transform +- uid: 268 + type: WindowReinforcedDirectional + components: + - pos: 30.5,12.5 + parent: 30 + type: Transform +- uid: 269 + type: CarpetBlue + components: + - pos: 34.5,6.5 + parent: 30 + type: Transform +- uid: 270 + type: CarpetBlue + components: + - pos: 34.5,7.5 + parent: 30 + type: Transform +- uid: 271 + type: CarpetBlue + components: + - pos: 35.5,7.5 + parent: 30 + type: Transform +- uid: 272 + type: CarpetBlue + components: + - pos: 35.5,6.5 + parent: 30 + type: Transform +- uid: 273 + type: PosterLegitNanotrasenLogo + components: + - pos: 34.5,9.5 + parent: 30 + type: Transform +- uid: 274 + type: BannerNanotrasen + components: + - pos: 32.5,4.5 + parent: 30 + type: Transform +- uid: 275 + type: PosterLegitNanomichiAd + components: + - pos: 25.5,5.5 + parent: 30 + type: Transform +- uid: 276 + type: LockerFreezer + components: + - pos: 26.5,6.5 + parent: 30 + type: Transform + - containers: + entity_storage: !type:Container + ents: + - 292 + - 291 + type: ContainerContainer +- uid: 277 + type: TableReinforced + components: + - pos: 28.5,8.5 + parent: 30 + type: Transform +- uid: 278 + type: TableReinforced + components: + - pos: 27.5,8.5 + parent: 30 + type: Transform +- uid: 279 + type: TableReinforced + components: + - pos: 26.5,8.5 + parent: 30 + type: Transform +- uid: 280 + type: SpawnPointAtmos + components: + - pos: -36.5,10.5 + parent: 30 + type: Transform +- uid: 281 + type: NuclearBomb + components: + - pos: 26.5,7.5 + parent: 30 + type: Transform + - containers: + Nuke: !type:ContainerSlot {} + type: ContainerContainer +- uid: 282 + type: PosterContrabandNuclearDeviceInformational + components: + - pos: 27.5,9.5 + parent: 30 + type: Transform +- uid: 283 + type: DrinkGoldenCup + components: + - pos: 26.358307,8.808434 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 284 + type: IngotGold + components: + - pos: 26.748932,8.620934 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 285 + type: ToolboxGoldFilled + components: + - pos: 27.452057,8.745934 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 286 + type: CigarGoldCase + components: + - pos: 28.639406,8.595735 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 287 + type: DrinkGoldschlagerBottleFull + components: + - pos: 27.014406,8.908235 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 288 + type: PinpointerNuclear + components: + - pos: 28.576906,8.45511 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 289 + type: ClothingHeadHatHairflower + components: + - pos: 27.123781,8.439485 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 290 + type: IngotSilver + components: + - pos: 28.155031,8.70511 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 291 + type: BoxFolderBlack + components: + - name: secret documents + type: MetaData + - parent: 276 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 292 + type: Omnitool + components: + - parent: 276 + type: Transform + - useSound: !type:SoundPathSpecifier + path: /Audio/Items/drill_use.ogg + type: Tool + - canCollide: False + type: Physics +- uid: 293 + type: ClothingBeltChampion + components: + - pos: 27.514406,8.51761 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 294 + type: ComputerComms + components: + - rot: 1.5707963267948966 rad + pos: 30.5,9.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 295 + type: VendingMachineBooze + components: + - pos: 30.5,10.5 + parent: 30 + type: Transform +- uid: 296 + type: ComfyChair + components: + - pos: 31.5,9.5 + parent: 30 + type: Transform +- uid: 297 + type: TableWood + components: + - pos: 30.5,8.5 + parent: 30 + type: Transform +- uid: 298 + type: TableWood + components: + - pos: 31.5,8.5 + parent: 30 + type: Transform +- uid: 299 + type: TableWood + components: + - pos: 31.5,10.5 + parent: 30 + type: Transform +- uid: 300 + type: TableWood + components: + - pos: 32.5,10.5 + parent: 30 + type: Transform +- uid: 301 + type: LampGold + components: + - pos: 30.507174,8.695788 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 302 + type: ComfyChair + components: + - rot: 3.141592653589793 rad + pos: 31.5,7.5 + parent: 30 + type: Transform +- uid: 303 + type: WindowAlmayer + components: + - rot: 3.141592653589793 rad + pos: -11.5,-2.5 + parent: 30 + type: Transform +- uid: 304 + type: WindowAlmayer + components: + - rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 30 + type: Transform +- uid: 305 + type: WindowAlmayer + components: + - rot: 3.141592653589793 rad + pos: -9.5,-2.5 + parent: 30 + type: Transform +- uid: 306 + type: WindowAlmayer + components: + - rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 30 + type: Transform +- uid: 307 + type: PosterContrabandTools + components: + - pos: -14.5,15.5 + parent: 30 + type: Transform +- uid: 308 + type: WindowAlmayer + components: + - rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 30 + type: Transform +- uid: 309 + type: WindowAlmayer + components: + - rot: 3.141592653589793 rad + pos: -7.5,4.5 + parent: 30 + type: Transform +- uid: 310 + type: WindoorKitchenHydroponicsLocked + components: + - rot: -1.5707963267948966 rad + pos: -7.5,5.5 + parent: 30 + type: Transform +- uid: 311 + type: WindowAlmayer + components: + - rot: 3.141592653589793 rad + pos: -7.5,6.5 + parent: 30 + type: Transform +- uid: 312 + type: WindowAlmayer + components: + - rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 30 + type: Transform +- uid: 313 + type: WindowAlmayer + components: + - rot: 3.141592653589793 rad + pos: -10.5,7.5 + parent: 30 + type: Transform +- uid: 314 + type: WindowAlmayer + components: + - rot: 3.141592653589793 rad + pos: -11.5,7.5 + parent: 30 + type: Transform +- uid: 315 + type: Grille + components: + - rot: 3.141592653589793 rad + pos: -9.5,-2.5 + parent: 30 + type: Transform +- uid: 316 + type: Grille + components: + - rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 30 + type: Transform +- uid: 317 + type: Grille + components: + - rot: 3.141592653589793 rad + pos: -11.5,-2.5 + parent: 30 + type: Transform +- uid: 318 + type: Grille + components: + - rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 30 + type: Transform +- uid: 319 + type: WindoorHydroponicsLocked + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 30 + type: Transform +- uid: 320 + type: Grille + components: + - rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 30 + type: Transform +- uid: 321 + type: Grille + components: + - rot: 3.141592653589793 rad + pos: -7.5,4.5 + parent: 30 + type: Transform +- uid: 322 + type: TableReinforced + components: + - pos: -7.5,5.5 + parent: 30 + type: Transform +- uid: 323 + type: Grille + components: + - rot: 3.141592653589793 rad + pos: -7.5,6.5 + parent: 30 + type: Transform +- uid: 324 + type: Grille + components: + - rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 30 + type: Transform +- uid: 325 + type: Grille + components: + - rot: 3.141592653589793 rad + pos: -10.5,7.5 + parent: 30 + type: Transform +- uid: 326 + type: Grille + components: + - rot: 3.141592653589793 rad + pos: -11.5,7.5 + parent: 30 + type: Transform +- uid: 327 + type: MedkitFilled + components: + - pos: 36.534096,4.6035953 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 328 + type: Multitool + components: + - pos: 36.472916,0.60618997 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 329 + type: Flash + components: + - pos: 37.51847,3.5410953 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 330 + type: ShuttersNormalOpen + components: + - rot: -1.5707963267948966 rad + pos: 33.5,1.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 333 + type: SignalReceiver +- uid: 331 + type: ShuttersWindowOpen + components: + - rot: -1.5707963267948966 rad + pos: 33.5,2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - airBlocked: False + type: Airtight + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 333 + type: SignalReceiver +- uid: 332 + type: ShuttersNormalOpen + components: + - rot: -1.5707963267948966 rad + pos: 33.5,3.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 333 + type: SignalReceiver +- uid: 333 + type: SignalButton + components: + - pos: 35.5,5.5 + parent: 30 + type: Transform + - fixtures: [] + type: Fixtures + - outputs: + Pressed: + - port: Toggle + uid: 332 + - port: Toggle + uid: 331 + - port: Toggle + uid: 330 + type: SignalTransmitter +- uid: 334 + type: FirelockGlass + components: + - pos: 33.5,1.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 335 + type: FirelockGlass + components: + - pos: 33.5,2.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 336 + type: FirelockGlass + components: + - pos: 33.5,3.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 337 + type: Grille + components: + - pos: 20.5,1.5 + parent: 30 + type: Transform +- uid: 338 + type: Grille + components: + - pos: 20.5,3.5 + parent: 30 + type: Transform +- uid: 339 + type: AirlockGlassAlpha + components: + - pos: 22.5,4.5 + parent: 30 + type: Transform +- uid: 340 + type: OxygenCanister + components: + - pos: 21.5,5.5 + parent: 30 + type: Transform +- uid: 341 + type: Rack + components: + - pos: 21.5,6.5 + parent: 30 + type: Transform +- uid: 342 + type: Rack + components: + - pos: 21.5,7.5 + parent: 30 + type: Transform +- uid: 343 + type: Rack + components: + - pos: 21.5,8.5 + parent: 30 + type: Transform +- uid: 344 + type: ClothingOuterHardsuitEVA + components: + - pos: 21.575674,6.5671134 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 345 + type: ClothingOuterHardsuitEVA + components: + - pos: 21.62255,7.6452384 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 346 + type: ClothingOuterHardsuitEVA + components: + - pos: 21.62255,8.613989 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 347 + type: ClothingHeadHelmetEVA + components: + - pos: 21.325674,8.535864 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 348 + type: ClothingHeadHelmetEVA + components: + - pos: 21.325674,7.5358634 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 349 + type: ClothingHeadHelmetEVA + components: + - pos: 21.325674,6.4889884 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 350 + type: Table + components: + - pos: 24.5,6.5 + parent: 30 + type: Transform +- uid: 351 + type: Table + components: + - pos: 24.5,7.5 + parent: 30 + type: Transform +- uid: 352 + type: Table + components: + - pos: 24.5,8.5 + parent: 30 + type: Transform +- uid: 353 + type: Table + components: + - pos: 23.5,8.5 + parent: 30 + type: Transform +- uid: 354 + type: ClothingShoesBootsMag + components: + - pos: 23.575674,8.663017 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 355 + type: ClothingShoesBootsMag + components: + - pos: 23.325472,8.795675 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 356 + type: ClothingShoesBootsMag + components: + - pos: 23.684847,8.545675 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 357 + type: DoubleEmergencyOxygenTankFilled + components: + - pos: 24.544424,6.5536423 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 358 + type: DoubleEmergencyOxygenTankFilled + components: + - pos: 24.544424,6.8661423 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 359 + type: YellowOxygenTankFilled + components: + - pos: 24.325472,8.701925 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 360 + type: YellowOxygenTankFilled + components: + - pos: 24.700472,8.670675 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 361 + type: ClothingMaskBreath + components: + - pos: 24.49755,8.241142 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 362 + type: ClothingMaskBreath + components: + - pos: 24.49755,8.116142 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 363 + type: ClothingMaskBreath + components: + - pos: 24.49755,8.022392 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 364 + type: SignEVA + components: + - pos: 21.5,4.5 + parent: 30 + type: Transform +- uid: 365 + type: TwoWayLever + components: + - pos: 22.5,8.5 + parent: 30 + type: Transform + - outputs: + Middle: + - port: Close + uid: 99 + Right: + - port: Open + uid: 99 + Left: + - port: Open + uid: 99 + type: SignalTransmitter +- uid: 366 + type: WallAlmayer + components: + - pos: 26.5,4.5 + parent: 30 + type: Transform +- uid: 367 + type: Table + components: + - pos: 27.5,4.5 + parent: 30 + type: Transform +- uid: 368 + type: RubberStampApproved + components: + - pos: 27.331532,4.6061897 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 369 + type: RubberStampDenied + components: + - pos: 27.675282,4.6218147 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 370 + type: CarpetBlue + components: + - pos: 31.5,7.5 + parent: 30 + type: Transform +- uid: 371 + type: CarpetBlue + components: + - pos: 32.5,7.5 + parent: 30 + type: Transform +- uid: 372 + type: CarpetBlue + components: + - pos: 32.5,6.5 + parent: 30 + type: Transform +- uid: 373 + type: GasVentScrubber + components: + - rot: 1.5707963267948966 rad + pos: 30.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 374 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 32.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 375 + type: CarpetBlue + components: + - pos: 30.5,7.5 + parent: 30 + type: Transform +- uid: 376 + type: PosterLegitNanotrasenLogo + components: + - pos: 30.5,5.5 + parent: 30 + type: Transform +- uid: 377 + type: PosterLegitNanotrasenLogo + components: + - pos: 30.5,-0.5 + parent: 30 + type: Transform +- uid: 378 + type: DisposalUnit + components: + - pos: 25.5,4.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 379 + type: PottedPlantRandom + components: + - pos: 29.5,0.5 + parent: 30 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 380 + type: VendingMachineCart + components: + - pos: 29.5,4.5 + parent: 30 + type: Transform +- uid: 381 + type: GasVentScrubber + components: + - pos: 22.5,6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 382 + type: GasVentPump + components: + - pos: 23.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 383 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 34.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 384 + type: GasVentPump + components: + - pos: 32.5,7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 385 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 34.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 386 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 33.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 387 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 33.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 388 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 32.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 389 + type: GasPipeStraight + components: + - pos: 32.5,5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 390 + type: GasPipeStraight + components: + - pos: 32.5,4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 391 + type: GasPipeFourway + components: + - pos: 32.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 392 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 31.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 393 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 30.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 394 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 29.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 395 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 28.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 396 + type: GasPipeFourway + components: + - pos: 27.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 397 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 25.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 398 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 26.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 399 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 23.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 400 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 23.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 401 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 23.5,4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 402 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 23.5,5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 403 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 22.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 404 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 22.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 405 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 22.5,3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 406 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 22.5,4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 407 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 22.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 408 + type: GasPipeTJunction + components: + - pos: 24.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 409 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 410 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 25.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 411 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 26.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 412 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 27.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 413 + type: GasPipeFourway + components: + - pos: 28.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 414 + type: GasPipeTJunction + components: + - pos: 29.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 415 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 30.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 416 + type: GasPipeFourway + components: + - pos: 31.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 417 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 32.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 418 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 33.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 419 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 420 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 34.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 421 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 34.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 422 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 31.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 423 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 31.5,3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 424 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: 32.5,0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 425 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 31.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 426 + type: GasPipeTJunction + components: + - pos: 31.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 427 + type: GasPipeStraight + components: + - pos: 31.5,6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 428 + type: CarpetBlue + components: + - rot: 1.5707963267948966 rad + pos: 30.5,6.5 + parent: 30 + type: Transform +- uid: 429 + type: CarpetBlue + components: + - rot: 1.5707963267948966 rad + pos: 31.5,6.5 + parent: 30 + type: Transform +- uid: 430 + type: GasPipeStraight + components: + - pos: 32.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 431 + type: GasPipeStraight + components: + - pos: 32.5,1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 432 + type: GasPipeStraight + components: + - pos: 32.5,-0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 433 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 31.5,4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 434 + type: GasPipeStraight + components: + - pos: 32.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 435 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 436 + type: GasPipeStraight + components: + - pos: 31.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 437 + type: GasPipeStraight + components: + - pos: 31.5,-0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 438 + type: GasPipeStraight + components: + - pos: 31.5,-1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 439 + type: GasPipeStraight + components: + - pos: 31.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 440 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 441 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 442 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 443 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 444 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 445 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 446 + type: GasPipeStraight + components: + - pos: 32.5,-3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 447 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 32.5,-4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 448 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 449 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 450 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: 31.5,-4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 451 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 27.5,4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 452 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 27.5,5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 453 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 28.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 454 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 28.5,3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 455 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 28.5,4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 456 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 28.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 457 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 27.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 458 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 28.5,6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 459 + type: GasVentPump + components: + - pos: 27.5,7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 460 + type: GasVentScrubber + components: + - pos: 28.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 461 + type: GasPipeStraight + components: + - pos: 27.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 462 + type: GasPipeStraight + components: + - pos: 27.5,1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 463 + type: GasPipeStraight + components: + - pos: 27.5,0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 464 + type: GasPipeStraight + components: + - pos: 27.5,-0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 465 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 466 + type: GasPipeStraight + components: + - pos: 28.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 467 + type: GasPipeStraight + components: + - pos: 28.5,-0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 468 + type: GasPipeStraight + components: + - pos: 28.5,-1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 469 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 470 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 471 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: 28.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 472 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 25.5,-2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 473 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 21.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 474 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 22.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 475 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 21.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 476 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 20.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 477 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 20.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 478 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 24.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 479 + type: GasVentScrubber + components: + - pos: 23.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 480 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: 29.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 481 + type: GasVentPump + components: + - pos: 29.5,4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 482 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: 31.5,0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 483 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 32.5,4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 484 + type: LockerHeadOfPersonnelFilled + components: + - pos: 34.5,-1.5 + parent: 30 + type: Transform +- uid: 485 + type: Rack + components: + - pos: 36.5,-2.5 + parent: 30 + type: Transform +- uid: 486 + type: CableMV + components: + - pos: 36.5,-1.5 + parent: 30 + type: Transform +- uid: 487 + type: Table + components: + - pos: 35.5,-3.5 + parent: 30 + type: Transform +- uid: 488 + type: Table + components: + - pos: 34.5,-3.5 + parent: 30 + type: Transform +- uid: 489 + type: CableHV + components: + - pos: 36.5,-1.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 490 + type: ChairOfficeDark + components: + - pos: 35.5,-2.5 + parent: 30 + type: Transform +- uid: 491 + type: SpaceCash100 + components: + - pos: 36.50493,-2.3700976 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 492 + type: CigarGoldCase + components: + - pos: 36.66118,-2.5107226 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 493 + type: ComputerTelevision + components: + - pos: 32.5,10.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 494 + type: SignBridge + components: + - pos: 20.5,4.5 + parent: 30 + type: Transform +- uid: 495 + type: PosterLegitHighClassMartini + components: + - pos: 29.5,9.5 + parent: 30 + type: Transform +- uid: 496 + type: DrinkGlass + components: + - pos: 31.373415,10.717659 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 497 + type: Paper + components: + - pos: 31.538588,8.483753 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 498 + type: Paper + components: + - pos: 31.366713,8.577503 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 499 + type: Paper + components: + - pos: 31.288588,8.624378 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 500 + type: SignBridge + components: + - pos: 33.5,4.5 + parent: 30 + type: Transform +- uid: 501 + type: DrinkGlass + components: + - pos: 31.529665,10.608284 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 502 + type: PosterLegitCohibaRobustoAd + components: + - pos: 29.5,7.5 + parent: 30 + type: Transform +- uid: 503 + type: Bed + components: + - pos: 32.5,-5.5 + parent: 30 + type: Transform +- uid: 504 + type: BedsheetIan + components: + - pos: 36.44243,-2.4794726 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 505 + type: PosterLegitLoveIan + components: + - pos: 33.5,-4.5 + parent: 30 + type: Transform +- uid: 506 + type: BedsheetHOP + components: + - pos: 32.5,-5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 507 + type: DogBed + components: + - pos: 31.5,-5.5 + parent: 30 + type: Transform +- uid: 508 + type: SpawnMobCorgi + components: + - pos: 31.5,-5.5 + parent: 30 + type: Transform +- uid: 509 + type: Dresser + components: + - pos: 32.5,-1.5 + parent: 30 + type: Transform +- uid: 510 + type: TableWood + components: + - pos: 30.5,-1.5 + parent: 30 + type: Transform +- uid: 511 + type: TableWood + components: + - pos: 30.5,-2.5 + parent: 30 + type: Transform +- uid: 512 + type: WallAlmayer + components: + - pos: 30.5,-3.5 + parent: 30 + type: Transform +- uid: 513 + type: CarpetSBlue + components: + - pos: 31.5,-3.5 + parent: 30 + type: Transform +- uid: 514 + type: CarpetSBlue + components: + - pos: 31.5,-2.5 + parent: 30 + type: Transform +- uid: 515 + type: CarpetSBlue + components: + - pos: 31.5,-1.5 + parent: 30 + type: Transform +- uid: 516 + type: CarpetSBlue + components: + - pos: 32.5,-1.5 + parent: 30 + type: Transform +- uid: 517 + type: CarpetSBlue + components: + - pos: 32.5,-3.5 + parent: 30 + type: Transform +- uid: 518 + type: CarpetSBlue + components: + - pos: 32.5,-2.5 + parent: 30 + type: Transform +- uid: 519 + type: Fireplace + components: + - pos: 30.5,-4.5 + parent: 30 + type: Transform +- uid: 520 + type: SpawnPointHeadOfPersonnel + components: + - pos: 32.5,-4.5 + parent: 30 + type: Transform +- uid: 521 + type: LampGold + components: + - pos: 30.495,-1.4105568 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 522 + type: BoxFolderBlack + components: + - pos: 35.212433,-3.4523635 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 523 + type: BoxFolderBlue + components: + - pos: 35.306183,-3.4992385 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 524 + type: BoxFolderRed + components: + - pos: 35.134308,-3.3742385 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 525 + type: DisposalUnit + components: + - pos: 32.5,0.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 526 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 527 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 528 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 529 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 530 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 531 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 532 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 533 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 534 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 535 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 536 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 537 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 538 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 539 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 540 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 541 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 542 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 543 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 544 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 545 + type: Paper + components: + - pos: 35.432976,-3.4093738 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 546 + type: Lamp + components: + - pos: 34.60009,-3.2560658 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 547 + type: Poweredlight + components: + - pos: 35.5,4.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 548 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: 35.5,0.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 549 + type: Poweredlight + components: + - pos: 32.5,4.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 550 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: 32.5,0.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 551 + type: Poweredlight + components: + - pos: 35.5,-1.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 552 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 553 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 554 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: 30.5,9.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 555 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: 30.5,6.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 556 + type: PoweredSmallLight + components: + - pos: 34.5,8.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 557 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 28.5,7.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 558 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: 26.5,7.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 559 + type: Poweredlight + components: + - pos: 27.5,4.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 560 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: 27.5,0.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 561 + type: Poweredlight + components: + - pos: 22.5,8.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 562 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 24.5,6.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 563 + type: WindowAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 30 + type: Transform +- uid: 564 + type: WindowAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-5.5 + parent: 30 + type: Transform +- uid: 565 + type: WindowAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 30 + type: Transform +- uid: 566 + type: Grille + components: + - pos: 27.5,-5.5 + parent: 30 + type: Transform +- uid: 567 + type: Grille + components: + - pos: 26.5,-5.5 + parent: 30 + type: Transform +- uid: 568 + type: Grille + components: + - pos: 25.5,-5.5 + parent: 30 + type: Transform +- uid: 569 + type: TableWood + components: + - pos: 26.5,-3.5 + parent: 30 + type: Transform +- uid: 570 + type: TableWood + components: + - pos: 26.5,-2.5 + parent: 30 + type: Transform +- uid: 571 + type: TableWood + components: + - pos: 27.5,-2.5 + parent: 30 + type: Transform +- uid: 572 + type: TableWood + components: + - pos: 27.5,-3.5 + parent: 30 + type: Transform +- uid: 573 + type: ChairOfficeDark + components: + - pos: 26.5,-1.5 + parent: 30 + type: Transform +- uid: 574 + type: ChairOfficeDark + components: + - pos: 27.5,-1.5 + parent: 30 + type: Transform +- uid: 575 + type: ChairOfficeDark + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-2.5 + parent: 30 + type: Transform +- uid: 576 + type: ChairOfficeDark + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-3.5 + parent: 30 + type: Transform +- uid: 577 + type: ChairOfficeDark + components: + - rot: 3.141592653589793 rad + pos: 27.5,-4.5 + parent: 30 + type: Transform +- uid: 578 + type: ChairOfficeDark + components: + - rot: 3.141592653589793 rad + pos: 26.5,-4.5 + parent: 30 + type: Transform +- uid: 579 + type: ChairOfficeDark + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-3.5 + parent: 30 + type: Transform +- uid: 580 + type: ChairOfficeDark + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-2.5 + parent: 30 + type: Transform +- uid: 581 + type: VendingMachineCoffee + components: + - name: Hot drinks machine + type: MetaData + - pos: 25.5,-6.5 + parent: 30 + type: Transform +- uid: 582 + type: Table + components: + - pos: 26.5,-6.5 + parent: 30 + type: Transform +- uid: 583 + type: WaterCooler + components: + - pos: 27.5,-6.5 + parent: 30 + type: Transform +- uid: 584 + type: FoodBoxDonut + components: + - pos: 26.574675,-6.3743386 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 585 + type: SignConference + components: + - pos: 27.5,-0.5 + parent: 30 + type: Transform +- uid: 586 + type: WallAlmayer + components: + - pos: 23.5,-4.5 + parent: 30 + type: Transform +- uid: 587 + type: WallAlmayer + components: + - pos: 22.5,-4.5 + parent: 30 + type: Transform +- uid: 588 + type: WallAlmayer + components: + - pos: 21.5,-4.5 + parent: 30 + type: Transform +- uid: 589 + type: WallAlmayer + components: + - pos: 20.5,-4.5 + parent: 30 + type: Transform +- uid: 590 + type: WallAlmayer + components: + - pos: 20.5,-3.5 + parent: 30 + type: Transform +- uid: 591 + type: WallAlmayer + components: + - pos: 20.5,-2.5 + parent: 30 + type: Transform +- uid: 592 + type: WallAlmayer + components: + - pos: 20.5,-0.5 + parent: 30 + type: Transform +- uid: 593 + type: WallAlmayer + components: + - pos: 21.5,-14.5 + parent: 30 + type: Transform +- uid: 594 + type: WallAlmayer + components: + - pos: 21.5,-13.5 + parent: 30 + type: Transform +- uid: 595 + type: Lamp + components: + - pos: 26.634676,-2.576604 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 596 + type: BoxFolderYellow + components: + - pos: 27.462801,-3.310979 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 597 + type: Pen + components: + - pos: 26.962801,-3.154729 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 598 + type: CarpetBlack + components: + - pos: 27.5,-3.5 + parent: 30 + type: Transform +- uid: 599 + type: CarpetBlack + components: + - pos: 26.5,-3.5 + parent: 30 + type: Transform +- uid: 600 + type: CarpetBlack + components: + - pos: 26.5,-2.5 + parent: 30 + type: Transform +- uid: 601 + type: CarpetBlack + components: + - pos: 27.5,-2.5 + parent: 30 + type: Transform +- uid: 602 + type: Grille + components: + - pos: 25.5,-0.5 + parent: 30 + type: Transform +- uid: 603 + type: CableHV + components: + - pos: 25.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 604 + type: WindowAlmayer + components: + - pos: 29.5,-7.5 + parent: 30 + type: Transform +- uid: 605 + type: CableHV + components: + - pos: 26.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 606 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-7.5 + parent: 30 + type: Transform +- uid: 607 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 16.5,4.5 + parent: 30 + type: Transform +- uid: 608 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 13.5,4.5 + parent: 30 + type: Transform +- uid: 609 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 13.5,5.5 + parent: 30 + type: Transform +- uid: 610 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 13.5,6.5 + parent: 30 + type: Transform +- uid: 611 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 13.5,7.5 + parent: 30 + type: Transform +- uid: 612 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 30 + type: Transform +- uid: 613 + type: WindowAlmayer + components: + - pos: 11.5,7.5 + parent: 30 + type: Transform +- uid: 614 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 16.5,8.5 + parent: 30 + type: Transform +- uid: 615 + type: WindowAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 30 + type: Transform +- uid: 616 + type: WindowAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 30 + type: Transform +- uid: 617 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 30 + type: Transform +- uid: 618 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 30 + type: Transform +- uid: 619 + type: WindowAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 16.5,5.5 + parent: 30 + type: Transform +- uid: 620 + type: WindowAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 16.5,7.5 + parent: 30 + type: Transform +- uid: 621 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 16.5,5.5 + parent: 30 + type: Transform +- uid: 622 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 16.5,7.5 + parent: 30 + type: Transform +- uid: 623 + type: TableReinforced + components: + - pos: 16.5,6.5 + parent: 30 + type: Transform +- uid: 624 + type: WindoorSecurityLocked + components: + - rot: -1.5707963267948966 rad + pos: 16.5,6.5 + parent: 30 + type: Transform +- uid: 625 + type: Windoor + components: + - rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 30 + type: Transform +- uid: 626 + type: AirlockGlassAlpha + components: + - pos: 14.5,4.5 + parent: 30 + type: Transform +- uid: 627 + type: AirlockGlassAlpha + components: + - pos: 14.5,8.5 + parent: 30 + type: Transform +- uid: 628 + type: WallAlmayer + components: + - pos: 29.5,12.5 + parent: 30 + type: Transform +- uid: 629 + type: WallAlmayer + components: + - pos: 27.5,11.5 + parent: 30 + type: Transform +- uid: 630 + type: AirlockGlassAlpha + components: + - pos: 26.5,11.5 + parent: 30 + type: Transform +- uid: 631 + type: WallAlmayer + components: + - pos: 25.5,11.5 + parent: 30 + type: Transform +- uid: 632 + type: WallAlmayer + components: + - pos: 24.5,11.5 + parent: 30 + type: Transform +- uid: 633 + type: WallAlmayer + components: + - pos: 23.5,11.5 + parent: 30 + type: Transform +- uid: 634 + type: WallAlmayer + components: + - pos: 22.5,11.5 + parent: 30 + type: Transform +- uid: 635 + type: WallAlmayer + components: + - pos: 21.5,11.5 + parent: 30 + type: Transform +- uid: 636 + type: WallAlmayer + components: + - pos: 20.5,11.5 + parent: 30 + type: Transform +- uid: 637 + type: WindowAlmayer + components: + - pos: 8.5,7.5 + parent: 30 + type: Transform +- uid: 638 + type: WindowAlmayer + components: + - pos: 5.5,7.5 + parent: 30 + type: Transform +- uid: 639 + type: WindowAlmayer + components: + - pos: 10.5,6.5 + parent: 30 + type: Transform +- uid: 640 + type: AirlockGlassAlpha + components: + - pos: 19.5,11.5 + parent: 30 + type: Transform +- uid: 641 + type: AirlockGlassAlpha + components: + - pos: 18.5,11.5 + parent: 30 + type: Transform +- uid: 642 + type: CarpetGreen + components: + - rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 30 + type: Transform +- uid: 643 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 0.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 644 + type: CarpetGreen + components: + - rot: 1.5707963267948966 rad + pos: 3.5,12.5 + parent: 30 + type: Transform +- uid: 645 + type: Poweredlight + components: + - pos: -2.5,13.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 646 + type: WarpPoint + components: + - pos: -21.5,2.5 + parent: 30 + type: Transform + - location: bar + type: WarpPoint +- uid: 647 + type: SpawnPointLawyer + components: + - pos: 0.5,5.5 + parent: 30 + type: Transform +- uid: 648 + type: SignHead + components: + - pos: -0.5,8.5 + parent: 30 + type: Transform +- uid: 649 + type: Carpet + components: + - rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 30 + type: Transform +- uid: 650 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 30 + type: Transform +- uid: 651 + type: WallAlmayer + components: + - pos: 6.5,14.5 + parent: 30 + type: Transform +- uid: 652 + type: Carpet + components: + - rot: 1.5707963267948966 rad + pos: 0.5,12.5 + parent: 30 + type: Transform +- uid: 653 + type: ClothingOuterRobesJudge + components: + - pos: 2.5277042,11.641056 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 654 + type: WindowAlmayer + components: + - pos: 9.5,14.5 + parent: 30 + type: Transform +- uid: 655 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-4.5 + parent: 30 + type: Transform +- uid: 656 + type: WallAlmayer + components: + - pos: 7.5,18.5 + parent: 30 + type: Transform +- uid: 657 + type: WindowAlmayer + components: + - pos: 6.5,15.5 + parent: 30 + type: Transform +- uid: 658 + type: ComputerCrewMonitoring + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 659 + type: WallAlmayer + components: + - pos: 10.5,14.5 + parent: 30 + type: Transform +- uid: 660 + type: Carpet + components: + - rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 30 + type: Transform +- uid: 661 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 30 + type: Transform +- uid: 662 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 30 + type: Transform +- uid: 663 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 30 + type: Transform +- uid: 664 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 30 + type: Transform +- uid: 665 + type: CableMV + components: + - pos: 12.5,20.5 + parent: 30 + type: Transform +- uid: 666 + type: AirlockGlassAlpha + components: + - pos: 6.5,16.5 + parent: 30 + type: Transform +- uid: 667 + type: CableMV + components: + - pos: 11.5,21.5 + parent: 30 + type: Transform +- uid: 668 + type: CableMV + components: + - pos: 9.5,21.5 + parent: 30 + type: Transform +- uid: 669 + type: WindoorBrigLocked + components: + - rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 30 + type: Transform +- uid: 670 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 30 + type: Transform +- uid: 671 + type: CableMV + components: + - pos: 31.5,7.5 + parent: 30 + type: Transform +- uid: 672 + type: BoxFolderRed + components: + - pos: 0.32457924,12.609806 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 673 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 674 + type: Sink + components: + - rot: 1.5707963267948966 rad + pos: -18.5,2.5 + parent: 30 + type: Transform +- uid: 675 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 676 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 677 + type: WallAlmayer + components: + - pos: 16.5,11.5 + parent: 30 + type: Transform +- uid: 678 + type: WallAlmayer + components: + - pos: 29.5,20.5 + parent: 30 + type: Transform +- uid: 679 + type: WallAlmayer + components: + - pos: 21.5,22.5 + parent: 30 + type: Transform +- uid: 680 + type: AirlockGlassAlpha + components: + - pos: 8.5,14.5 + parent: 30 + type: Transform +- uid: 681 + type: WallAlmayer + components: + - pos: 2.5,18.5 + parent: 30 + type: Transform +- uid: 682 + type: CableMV + components: + - pos: 10.5,21.5 + parent: 30 + type: Transform +- uid: 683 + type: CableMV + components: + - pos: 8.5,21.5 + parent: 30 + type: Transform +- uid: 684 + type: FirelockGlass + components: + - pos: 17.5,9.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 685 + type: TableWood + components: + - pos: 3.5,17.5 + parent: 30 + type: Transform +- uid: 686 + type: WindowAlmayer + components: + - pos: 7.5,6.5 + parent: 30 + type: Transform +- uid: 687 + type: CableMV + components: + - pos: 30.5,11.5 + parent: 30 + type: Transform +- uid: 688 + type: CableMV + components: + - pos: 37.5,-3.5 + parent: 30 + type: Transform +- uid: 689 + type: CableMV + components: + - pos: 31.5,6.5 + parent: 30 + type: Transform +- uid: 690 + type: CableMV + components: + - pos: 31.5,5.5 + parent: 30 + type: Transform +- uid: 691 + type: Grille + components: + - pos: 9.5,4.5 + parent: 30 + type: Transform +- uid: 692 + type: CableMV + components: + - pos: 38.5,0.5 + parent: 30 + type: Transform +- uid: 693 + type: CableMV + components: + - pos: 35.5,-4.5 + parent: 30 + type: Transform +- uid: 694 + type: CableMV + components: + - pos: 37.5,6.5 + parent: 30 + type: Transform +- uid: 695 + type: CableMV + components: + - pos: 37.5,7.5 + parent: 30 + type: Transform +- uid: 696 + type: CableMV + components: + - pos: 31.5,-4.5 + parent: 30 + type: Transform +- uid: 697 + type: CableMV + components: + - pos: 36.5,-4.5 + parent: 30 + type: Transform +- uid: 698 + type: SpawnPointChaplain + components: + - pos: 22.5,18.5 + parent: 30 + type: Transform +- uid: 699 + type: WallAlmayer + components: + - pos: 4.5,18.5 + parent: 30 + type: Transform +- uid: 700 + type: WeaponDisabler + components: + - pos: 14.379679,19.704338 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 701 + type: WallAlmayer + components: + - pos: 6.5,19.5 + parent: 30 + type: Transform +- uid: 702 + type: WallAlmayer + components: + - pos: 5.5,18.5 + parent: 30 + type: Transform +- uid: 703 + type: FireAxeCabinetFilled + components: + - pos: -38.5,7.5 + parent: 30 + type: Transform + - containers: + ItemCabinet: !type:ContainerSlot {} + type: ContainerContainer +- uid: 704 + type: ClosetFireFilled + components: + - pos: -43.5,6.5 + parent: 30 + type: Transform +- uid: 705 + type: CableMV + components: + - pos: 37.5,0.5 + parent: 30 + type: Transform +- uid: 706 + type: CableMV + components: + - pos: 37.5,4.5 + parent: 30 + type: Transform +- uid: 707 + type: WallAlmayer + components: + - pos: 10.5,19.5 + parent: 30 + type: Transform +- uid: 708 + type: WallAlmayer + components: + - pos: 9.5,19.5 + parent: 30 + type: Transform +- uid: 709 + type: WallAlmayer + components: + - pos: 8.5,19.5 + parent: 30 + type: Transform +- uid: 710 + type: WallAlmayer + components: + - pos: 7.5,19.5 + parent: 30 + type: Transform +- uid: 711 + type: ShuttersNormalOpen + components: + - pos: 11.5,4.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 3697 + type: SignalReceiver +- uid: 712 + type: AirlockGlassAlpha + components: + - pos: 11.5,20.5 + parent: 30 + type: Transform +- uid: 713 + type: WallAlmayer + components: + - pos: 12.5,20.5 + parent: 30 + type: Transform +- uid: 714 + type: ShuttersNormalOpen + components: + - pos: 12.5,4.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 3697 + type: SignalReceiver +- uid: 715 + type: WallAlmayer + components: + - pos: 4.5,4.5 + parent: 30 + type: Transform +- uid: 716 + type: WallAlmayer + components: + - pos: 13.5,20.5 + parent: 30 + type: Transform +- uid: 717 + type: WallAlmayer + components: + - pos: 14.5,20.5 + parent: 30 + type: Transform +- uid: 718 + type: WallAlmayer + components: + - pos: 3.5,4.5 + parent: 30 + type: Transform +- uid: 719 + type: CableMV + components: + - pos: 35.5,2.5 + parent: 30 + type: Transform +- uid: 720 + type: WallAlmayer + components: + - pos: 15.5,20.5 + parent: 30 + type: Transform +- uid: 721 + type: WallAlmayer + components: + - pos: 16.5,20.5 + parent: 30 + type: Transform +- uid: 722 + type: WallAlmayer + components: + - pos: 16.5,19.5 + parent: 30 + type: Transform +- uid: 723 + type: WallAlmayer + components: + - pos: 10.5,20.5 + parent: 30 + type: Transform +- uid: 724 + type: WallAlmayer + components: + - pos: -0.5,5.5 + parent: 30 + type: Transform +- uid: 725 + type: WallAlmayer + components: + - pos: -0.5,6.5 + parent: 30 + type: Transform +- uid: 726 + type: WallAlmayer + components: + - pos: -0.5,7.5 + parent: 30 + type: Transform +- uid: 727 + type: CableMV + components: + - pos: 37.5,-2.5 + parent: 30 + type: Transform +- uid: 728 + type: CableMV + components: + - pos: 35.5,7.5 + parent: 30 + type: Transform +- uid: 729 + type: CableMV + components: + - pos: 36.5,7.5 + parent: 30 + type: Transform +- uid: 730 + type: CableMV + components: + - pos: 32.5,11.5 + parent: 30 + type: Transform +- uid: 731 + type: CableMV + components: + - pos: 31.5,9.5 + parent: 30 + type: Transform +- uid: 732 + type: PosterLegitReportCrimes + components: + - pos: -4.5,8.5 + parent: 30 + type: Transform +- uid: 733 + type: AirlockGlassAlpha + components: + - pos: 5.5,14.5 + parent: 30 + type: Transform +- uid: 734 + type: CableMV + components: + - pos: 31.5,11.5 + parent: 30 + type: Transform +- uid: 735 + type: WindowAlmayer + components: + - pos: 9.5,4.5 + parent: 30 + type: Transform +- uid: 736 + type: WindowAlmayer + components: + - pos: 8.5,4.5 + parent: 30 + type: Transform +- uid: 737 + type: CableMV + components: + - pos: 34.5,-4.5 + parent: 30 + type: Transform +- uid: 738 + type: WindowAlmayer + components: + - pos: 12.5,4.5 + parent: 30 + type: Transform +- uid: 739 + type: WindowAlmayer + components: + - pos: 11.5,4.5 + parent: 30 + type: Transform +- uid: 740 + type: SpawnMobMouse + components: + - pos: 7.5,21.5 + parent: 30 + type: Transform +- uid: 741 + type: CableMV + components: + - pos: 31.5,-5.5 + parent: 30 + type: Transform +- uid: 742 + type: Grille + components: + - pos: 10.5,5.5 + parent: 30 + type: Transform +- uid: 743 + type: Grille + components: + - pos: 8.5,7.5 + parent: 30 + type: Transform +- uid: 744 + type: WallAlmayer + components: + - pos: 11.5,17.5 + parent: 30 + type: Transform +- uid: 745 + type: WallAlmayer + components: + - pos: 11.5,18.5 + parent: 30 + type: Transform +- uid: 746 + type: Grille + components: + - pos: 7.5,14.5 + parent: 30 + type: Transform +- uid: 747 + type: APCBasic + components: + - pos: 12.5,20.5 + parent: 30 + type: Transform +- uid: 748 + type: PosterLegitSafetyInternals + components: + - pos: -12.5,-13.5 + parent: 30 + type: Transform +- uid: 749 + type: WaterCooler + components: + - pos: -3.5,7.5 + parent: 30 + type: Transform +- uid: 750 + type: ChairOfficeDark + components: + - rot: 3.141592653589793 rad + pos: -40.5,5.5 + parent: 30 + type: Transform +- uid: 751 + type: ChairOfficeDark + components: + - pos: -42.5,5.5 + parent: 30 + type: Transform +- uid: 752 + type: SurveillanceCameraRouterSupply + components: + - pos: -26.5,21.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 753 + type: Table + components: + - pos: -19.5,-4.5 + parent: 30 + type: Transform +- uid: 754 + type: WallAlmayer + components: + - pos: 11.5,16.5 + parent: 30 + type: Transform +- uid: 755 + type: GasPipeFourway + components: + - pos: 19.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 756 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 18.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 757 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 17.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 758 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 16.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 759 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 15.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 760 + type: GasPipeStraight + components: + - pos: 15.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 761 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 13.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 762 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 12.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 763 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 764 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 765 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 766 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 767 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 768 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 769 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 770 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 771 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 772 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 773 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 774 + type: GasPipeStraight + components: + - pos: 2.5,-0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 775 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 776 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 777 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 778 + type: GasPipeFourway + components: + - pos: -3.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 779 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 780 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 19.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 781 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 17.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 782 + type: GasPipeFourway + components: + - pos: 18.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 783 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 16.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 784 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 15.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 785 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 14.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 786 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 787 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 12.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 788 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 789 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 790 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 791 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 792 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 793 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 6.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 794 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 795 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 796 + type: Grille + components: + - pos: 5.5,4.5 + parent: 30 + type: Transform +- uid: 797 + type: GasPipeTJunction + components: + - pos: 0.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 798 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 799 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 800 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 801 + type: GasPipeFourway + components: + - pos: -1.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 802 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 803 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 804 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 805 + type: GasPipeFourway + components: + - pos: 14.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 806 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 15.5,3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 807 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 15.5,4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 808 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 14.5,4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 809 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 14.5,5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 810 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 15.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 811 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 15.5,6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 812 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 813 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 814 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: 15.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 815 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 15.5,8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 816 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 14.5,8.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 817 + type: WallAlmayer + components: + - pos: 1.5,16.5 + parent: 30 + type: Transform +- uid: 818 + type: WallAlmayer + components: + - pos: 2.5,14.5 + parent: 30 + type: Transform +- uid: 819 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 15.5,5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 820 + type: GasVentScrubber + components: + - rot: 1.5707963267948966 rad + pos: 14.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 821 + type: WallAlmayer + components: + - pos: 3.5,8.5 + parent: 30 + type: Transform +- uid: 822 + type: WallAlmayer + components: + - pos: 4.5,10.5 + parent: 30 + type: Transform +- uid: 823 + type: PoweredSmallLight + components: + - pos: 1.5,7.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 824 + type: CableApcExtension + components: + - pos: 2.5,11.5 + parent: 30 + type: Transform +- uid: 825 + type: TableWood + components: + - pos: 2.5,11.5 + parent: 30 + type: Transform +- uid: 826 + type: CableApcExtension + components: + - pos: 1.5,11.5 + parent: 30 + type: Transform +- uid: 827 + type: CableApcExtension + components: + - pos: 0.5,11.5 + parent: 30 + type: Transform +- uid: 828 + type: CableApcExtension + components: + - pos: -1.5,11.5 + parent: 30 + type: Transform +- uid: 829 + type: CableApcExtension + components: + - pos: -2.5,9.5 + parent: 30 + type: Transform +- uid: 830 + type: CableMV + components: + - pos: -2.5,16.5 + parent: 30 + type: Transform +- uid: 831 + type: CableApcExtension + components: + - pos: 2.5,10.5 + parent: 30 + type: Transform +- uid: 832 + type: CableApcExtension + components: + - pos: 2.5,7.5 + parent: 30 + type: Transform +- uid: 833 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 834 + type: CableApcExtension + components: + - pos: -2.5,14.5 + parent: 30 + type: Transform +- uid: 835 + type: WindowAlmayer + components: + - pos: -4.5,9.5 + parent: 30 + type: Transform +- uid: 836 + type: WindowReinforcedDirectional + components: + - rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 30 + type: Transform +- uid: 837 + type: CableApcExtension + components: + - pos: -2.5,12.5 + parent: 30 + type: Transform +- uid: 838 + type: BoxFolderRed + components: + - pos: 1.4552288,6.551431 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 839 + type: WallAlmayer + components: + - pos: -2.5,14.5 + parent: 30 + type: Transform +- uid: 840 + type: WindowReinforcedDirectional + components: + - rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 30 + type: Transform +- uid: 841 + type: CableMV + components: + - pos: 38.5,2.5 + parent: 30 + type: Transform +- uid: 842 + type: CableMV + components: + - pos: 26.5,2.5 + parent: 30 + type: Transform +- uid: 843 + type: CableMV + components: + - pos: 26.5,1.5 + parent: 30 + type: Transform +- uid: 844 + type: CableMV + components: + - pos: 37.5,2.5 + parent: 30 + type: Transform +- uid: 845 + type: GasVentScrubber + components: + - pos: -1.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 846 + type: WallAlmayer + components: + - pos: 1.5,17.5 + parent: 30 + type: Transform +- uid: 847 + type: AirlockGlassAlpha + components: + - pos: -3.5,14.5 + parent: 30 + type: Transform +- uid: 848 + type: CableApcExtension + components: + - pos: 2.5,6.5 + parent: 30 + type: Transform +- uid: 849 + type: Chair + components: + - pos: 3.5,13.5 + parent: 30 + type: Transform +- uid: 850 + type: Rack + components: + - pos: 3.5,6.5 + parent: 30 + type: Transform +- uid: 851 + type: WallAlmayer + components: + - pos: 3.5,14.5 + parent: 30 + type: Transform +- uid: 852 + type: WindowReinforcedDirectional + components: + - rot: 3.141592653589793 rad + pos: 3.5,12.5 + parent: 30 + type: Transform +- uid: 853 + type: CableApcExtension + components: + - pos: 2.5,9.5 + parent: 30 + type: Transform +- uid: 854 + type: CableMV + components: + - pos: -2.5,15.5 + parent: 30 + type: Transform +- uid: 855 + type: TableWood + components: + - pos: 2.5,12.5 + parent: 30 + type: Transform +- uid: 856 + type: Lamp + components: + - pos: 2.6224327,12.399162 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 857 + type: TableWood + components: + - pos: -0.5,12.5 + parent: 30 + type: Transform +- uid: 858 + type: ChairOfficeDark + components: + - pos: -0.5,13.5 + parent: 30 + type: Transform +- uid: 859 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 860 + type: Grille + components: + - pos: -4.5,9.5 + parent: 30 + type: Transform +- uid: 861 + type: CableMV + components: + - pos: 36.5,2.5 + parent: 30 + type: Transform +- uid: 862 + type: CableApcExtension + components: + - pos: -2.5,10.5 + parent: 30 + type: Transform +- uid: 863 + type: GasPipeStraight + components: + - pos: -3.5,10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 864 + type: WindowAlmayer + components: + - pos: -4.5,11.5 + parent: 30 + type: Transform +- uid: 865 + type: AirlockGlassAlpha + components: + - pos: 4.5,13.5 + parent: 30 + type: Transform +- uid: 866 + type: AirlockGlassAlpha + components: + - pos: 4.5,9.5 + parent: 30 + type: Transform +- uid: 867 + type: SpawnPointLawyer + components: + - pos: 0.5,6.5 + parent: 30 + type: Transform +- uid: 868 + type: CableApcExtension + components: + - pos: 2.5,4.5 + parent: 30 + type: Transform +- uid: 869 + type: WallAlmayer + components: + - pos: 4.5,8.5 + parent: 30 + type: Transform +- uid: 870 + type: CarpetBlack + components: + - pos: 0.5,6.5 + parent: 30 + type: Transform +- uid: 871 + type: CarpetBlack + components: + - pos: 0.5,7.5 + parent: 30 + type: Transform +- uid: 872 + type: CarpetBlack + components: + - pos: 1.5,5.5 + parent: 30 + type: Transform +- uid: 873 + type: VendingMachineLawDrobe + components: + - pos: 3.5,5.5 + parent: 30 + type: Transform +- uid: 874 + type: TableWood + components: + - pos: 1.5,5.5 + parent: 30 + type: Transform +- uid: 875 + type: TableWood + components: + - pos: 1.5,6.5 + parent: 30 + type: Transform +- uid: 876 + type: CableMV + components: + - pos: 31.5,-6.5 + parent: 30 + type: Transform +- uid: 877 + type: filingCabinet + components: + - pos: 3.5,7.5 + parent: 30 + type: Transform + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 878 + type: Grille + components: + - pos: 7.5,5.5 + parent: 30 + type: Transform +- uid: 879 + type: Grille + components: + - pos: 5.5,7.5 + parent: 30 + type: Transform +- uid: 880 + type: CableMV + components: + - pos: 31.5,-3.5 + parent: 30 + type: Transform +- uid: 881 + type: ChairOfficeDark + components: + - pos: 11.5,12.5 + parent: 30 + type: Transform +- uid: 882 + type: PosterLegitSafetyEyeProtection + components: + - pos: -12.5,-12.5 + parent: 30 + type: Transform +- uid: 883 + type: GasAnalyzer + components: + - pos: -40.670486,6.6158085 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 884 + type: GasAnalyzer + components: + - pos: -40.37361,6.3501835 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 885 + type: PottedPlantRandom + components: + - pos: -1.5,7.5 + parent: 30 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 886 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 30 + type: Transform +- uid: 887 + type: Chair + components: + - pos: 4.5,-11.5 + parent: 30 + type: Transform +- uid: 888 + type: VendingMachineCola + components: + - pos: -5.5,10.5 + parent: 30 + type: Transform +- uid: 889 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 30 + type: Transform +- uid: 890 + type: WallAlmayer + components: + - pos: 11.5,15.5 + parent: 30 + type: Transform +- uid: 891 + type: ClothingHeadHatPwig + components: + - pos: 2.5745792,11.984806 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 892 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 893 + type: APCBasic + components: + - pos: -2.5,14.5 + parent: 30 + type: Transform +- uid: 894 + type: CableMV + components: + - pos: -2.5,18.5 + parent: 30 + type: Transform +- uid: 895 + type: WindowReinforcedDirectional + components: + - rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 30 + type: Transform +- uid: 896 + type: GasPipeStraight + components: + - pos: -3.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 897 + type: ChairOfficeDark + components: + - rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 30 + type: Transform +- uid: 898 + type: ChairOfficeDark + components: + - pos: 0.5,13.5 + parent: 30 + type: Transform +- uid: 899 + type: CableApcExtension + components: + - pos: -0.5,11.5 + parent: 30 + type: Transform +- uid: 900 + type: AirlockGlassAlpha + components: + - pos: 20.5,2.5 + parent: 30 + type: Transform +- uid: 901 + type: CableMV + components: + - pos: 31.5,10.5 + parent: 30 + type: Transform +- uid: 902 + type: CableMV + components: + - pos: 31.5,8.5 + parent: 30 + type: Transform +- uid: 903 + type: CableMV + components: + - pos: 33.5,7.5 + parent: 30 + type: Transform +- uid: 904 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 5.5,10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 905 + type: GasPipeTJunction + components: + - pos: 8.5,10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 906 + type: WarpPoint + components: + - pos: 32.5,2.5 + parent: 30 + type: Transform + - location: bridge + type: WarpPoint +- uid: 907 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 908 + type: CableMV + components: + - pos: 38.5,1.5 + parent: 30 + type: Transform +- uid: 909 + type: WarpPoint + components: + - pos: 8.5,16.5 + parent: 30 + type: Transform + - location: armory + type: WarpPoint +- uid: 910 + type: WarpPoint + components: + - pos: 9.5,10.5 + parent: 30 + type: Transform + - location: sec + type: WarpPoint +- uid: 911 + type: GasPipeStraight + components: + - pos: 14.5,9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 912 + type: Chair + components: + - pos: 3.5,-11.5 + parent: 30 + type: Transform +- uid: 913 + type: WallAlmayer + components: + - pos: 11.5,14.5 + parent: 30 + type: Transform +- uid: 914 + type: ClosetLegalFilled + components: + - pos: 2.5,13.5 + parent: 30 + type: Transform +- uid: 915 + type: WallAlmayer + components: + - pos: 10.5,18.5 + parent: 30 + type: Transform +- uid: 916 + type: WallAlmayer + components: + - pos: 9.5,18.5 + parent: 30 + type: Transform +- uid: 917 + type: ChairOfficeDark + components: + - rot: -1.5707963267948966 rad + pos: -32.5,2.5 + parent: 30 + type: Transform +- uid: 918 + type: PosterLegitSafetyReport + components: + - pos: -12.5,-11.5 + parent: 30 + type: Transform +- uid: 919 + type: WallAlmayer + components: + - pos: 4.5,11.5 + parent: 30 + type: Transform +- uid: 920 + type: WallAlmayer + components: + - pos: 4.5,12.5 + parent: 30 + type: Transform +- uid: 921 + type: ChairOfficeDark + components: + - rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 30 + type: Transform +- uid: 922 + type: CableMV + components: + - pos: 36.5,-3.5 + parent: 30 + type: Transform +- uid: 923 + type: CarpetBlack + components: + - pos: 1.5,6.5 + parent: 30 + type: Transform +- uid: 924 + type: LampGold + components: + - pos: 1.5489788,5.676431 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 925 + type: ChairOfficeDark + components: + - rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 30 + type: Transform +- uid: 926 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 927 + type: CarpetBlack + components: + - pos: 1.5,7.5 + parent: 30 + type: Transform +- uid: 928 + type: WarpPoint + components: + - pos: -15.5,-12.5 + parent: 30 + type: Transform + - location: rnd + type: WarpPoint +- uid: 929 + type: GasVentScrubber + components: + - pos: 2.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 930 + type: WarpPoint + components: + - pos: -41.5,-13.5 + parent: 30 + type: Transform + - location: hangar + type: WarpPoint +- uid: 931 + type: GasPipeStraight + components: + - pos: 5.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 932 + type: Grille + components: + - pos: 10.5,6.5 + parent: 30 + type: Transform +- uid: 933 + type: Grille + components: + - pos: 11.5,7.5 + parent: 30 + type: Transform +- uid: 934 + type: CableMV + components: + - pos: 32.5,-6.5 + parent: 30 + type: Transform +- uid: 935 + type: CableMV + components: + - pos: 30.5,-6.5 + parent: 30 + type: Transform +- uid: 936 + type: GasPipeTJunction + components: + - pos: 11.5,10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 937 + type: LockerSyndicatePersonal + components: + - pos: 7.5,17.5 + parent: 30 + type: Transform + - containers: + entity_storage: !type:Container + ents: + - 1555 + - 1206 + type: ContainerContainer +- uid: 938 + type: Rack + components: + - pos: 10.5,16.5 + parent: 30 + type: Transform +- uid: 939 + type: ClosetBombFilled + components: + - pos: 9.5,17.5 + parent: 30 + type: Transform +- uid: 940 + type: Rack + components: + - pos: 7.5,15.5 + parent: 30 + type: Transform +- uid: 941 + type: WarpPoint + components: + - pos: -22.5,-20.5 + parent: 30 + type: Transform + - location: toxins + type: WarpPoint +- uid: 942 + type: CableMV + components: + - pos: 32.5,7.5 + parent: 30 + type: Transform +- uid: 943 + type: ClothingShoeSlippersDuck + components: + - pos: -0.5283655,26.196354 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 944 + type: Rack + components: + - pos: 9.5,15.5 + parent: 30 + type: Transform +- uid: 945 + type: Machete + components: + - pos: -44.54799,16.476885 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 946 + type: Table + components: + - pos: 8.5,17.5 + parent: 30 + type: Transform +- uid: 947 + type: CableApcExtension + components: + - pos: 11.5,21.5 + parent: 30 + type: Transform +- uid: 948 + type: WarpPoint + components: + - pos: 28.5,2.5 + parent: 30 + type: Transform + - location: hop + type: WarpPoint +- uid: 949 + type: CableApcExtension + components: + - pos: 12.5,21.5 + parent: 30 + type: Transform +- uid: 950 + type: WarpPoint + components: + - pos: -8.5,-9.5 + parent: 30 + type: Transform + - location: library + type: WarpPoint +- uid: 951 + type: WindowAlmayer + components: + - pos: 7.5,14.5 + parent: 30 + type: Transform +- uid: 952 + type: ChairOfficeDark + components: + - pos: 15.5,6.5 + parent: 30 + type: Transform +- uid: 953 + type: ComputerCriminalRecords + components: + - pos: 15.5,7.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 954 + type: PosterLegitReportCrimes + components: + - pos: 13.5,4.5 + parent: 30 + type: Transform +- uid: 955 + type: WallAlmayer + components: + - pos: 7.5,7.5 + parent: 30 + type: Transform +- uid: 956 + type: CableApcExtension + components: + - pos: 12.5,20.5 + parent: 30 + type: Transform +- uid: 957 + type: WaterTankFull + components: + - pos: -45.5,13.5 + parent: 30 + type: Transform +- uid: 958 + type: SurveillanceCameraRouterSecurity + components: + - pos: 10.5,17.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 959 + type: GasPipeStraight + components: + - pos: 5.5,12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 960 + type: WarpPoint + components: + - pos: 1.5,11.5 + parent: 30 + type: Transform + - location: court + type: WarpPoint +- uid: 961 + type: WarpPoint + components: + - pos: 22.5,6.5 + parent: 30 + type: Transform + - location: eva + type: WarpPoint +- uid: 962 + type: WarpPoint + components: + - pos: 32.5,8.5 + parent: 30 + type: Transform + - location: cap + type: WarpPoint +- uid: 963 + type: PowerCellRecharger + components: + - pos: 16.5,6.5 + parent: 30 + type: Transform + - fixtures: [] + type: Fixtures + - containers: + charger-slot: !type:ContainerSlot {} + type: ContainerContainer +- uid: 964 + type: BoxFolderBlue + components: + - pos: -0.30042076,10.609806 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 965 + type: CableMV + components: + - pos: 34.5,7.5 + parent: 30 + type: Transform +- uid: 966 + type: SignSecureSmallRed + components: + - pos: 16.5,8.5 + parent: 30 + type: Transform +- uid: 967 + type: CableMV + components: + - pos: 38.5,4.5 + parent: 30 + type: Transform +- uid: 968 + type: CableMV + components: + - pos: 34.5,2.5 + parent: 30 + type: Transform +- uid: 969 + type: WallAlmayer + components: + - pos: 0.5,4.5 + parent: 30 + type: Transform +- uid: 970 + type: WindowAlmayer + components: + - pos: 7.5,5.5 + parent: 30 + type: Transform +- uid: 971 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: -3.5,24.5 + parent: 30 + type: Transform +- uid: 972 + type: WallAlmayer + components: + - pos: 20.5,12.5 + parent: 30 + type: Transform +- uid: 973 + type: WindowAlmayer + components: + - rot: 1.5707963267948966 rad + pos: 27.5,15.5 + parent: 30 + type: Transform +- uid: 974 + type: WallAlmayer + components: + - pos: 29.5,14.5 + parent: 30 + type: Transform +- uid: 975 + type: WindowAlmayer + components: + - rot: 1.5707963267948966 rad + pos: 27.5,13.5 + parent: 30 + type: Transform +- uid: 976 + type: WallAlmayer + components: + - pos: 29.5,16.5 + parent: 30 + type: Transform +- uid: 977 + type: WallAlmayer + components: + - pos: 29.5,17.5 + parent: 30 + type: Transform +- uid: 978 + type: WallAlmayer + components: + - pos: 29.5,18.5 + parent: 30 + type: Transform +- uid: 979 + type: WallAlmayer + components: + - pos: 29.5,19.5 + parent: 30 + type: Transform +- uid: 980 + type: WallAlmayer + components: + - pos: 29.5,21.5 + parent: 30 + type: Transform +- uid: 981 + type: WallAlmayer + components: + - pos: 20.5,16.5 + parent: 30 + type: Transform +- uid: 982 + type: WallAlmayer + components: + - pos: 20.5,17.5 + parent: 30 + type: Transform +- uid: 983 + type: WallAlmayer + components: + - pos: 20.5,18.5 + parent: 30 + type: Transform +- uid: 984 + type: WallAlmayer + components: + - pos: 20.5,19.5 + parent: 30 + type: Transform +- uid: 985 + type: AirlockGlassAlpha + components: + - pos: 22.5,17.5 + parent: 30 + type: Transform +- uid: 986 + type: WallAlmayer + components: + - pos: 21.5,20.5 + parent: 30 + type: Transform +- uid: 987 + type: WallAlmayer + components: + - pos: 22.5,20.5 + parent: 30 + type: Transform +- uid: 988 + type: WallAlmayer + components: + - pos: 23.5,20.5 + parent: 30 + type: Transform +- uid: 989 + type: WallAlmayer + components: + - pos: 24.5,20.5 + parent: 30 + type: Transform +- uid: 990 + type: WallAlmayer + components: + - pos: 24.5,19.5 + parent: 30 + type: Transform +- uid: 991 + type: WallAlmayer + components: + - pos: 24.5,18.5 + parent: 30 + type: Transform +- uid: 992 + type: WallAlmayer + components: + - pos: 24.5,17.5 + parent: 30 + type: Transform +- uid: 993 + type: WallAlmayer + components: + - pos: 23.5,17.5 + parent: 30 + type: Transform +- uid: 994 + type: VendingMachineChapel + components: + - pos: 21.5,18.5 + parent: 30 + type: Transform + - sprite: Structures/Machines/VendingMachines/chapel.rsi + type: Sprite +- uid: 995 + type: WallAlmayer + components: + - pos: 21.5,19.5 + parent: 30 + type: Transform +- uid: 996 + type: WallAlmayer + components: + - pos: 27.5,12.5 + parent: 30 + type: Transform +- uid: 997 + type: WindowAlmayer + components: + - rot: 1.5707963267948966 rad + pos: 29.5,15.5 + parent: 30 + type: Transform +- uid: 998 + type: WallAlmayer + components: + - pos: 27.5,14.5 + parent: 30 + type: Transform +- uid: 999 + type: WindowAlmayer + components: + - rot: 1.5707963267948966 rad + pos: 29.5,13.5 + parent: 30 + type: Transform +- uid: 1000 + type: WallAlmayer + components: + - pos: 27.5,16.5 + parent: 30 + type: Transform +- uid: 1001 + type: WallAlmayer + components: + - pos: 27.5,17.5 + parent: 30 + type: Transform +- uid: 1002 + type: WallAlmayer + components: + - pos: 26.5,17.5 + parent: 30 + type: Transform +- uid: 1003 + type: WallAlmayer + components: + - pos: 25.5,17.5 + parent: 30 + type: Transform +- uid: 1004 + type: WallAlmayer + components: + - pos: 21.5,17.5 + parent: 30 + type: Transform +- uid: 1005 + type: Crematorium + components: + - rot: -1.5707963267948966 rad + pos: 23.5,18.5 + parent: 30 + type: Transform + - containers: + entity_storage: !type:Container + ents: [] + type: ContainerContainer +- uid: 1006 + type: Chair + components: + - pos: 5.5,-0.5 + parent: 30 + type: Transform +- uid: 1007 + type: AirlockGlassAlpha + components: + - pos: 20.5,13.5 + parent: 30 + type: Transform +- uid: 1008 + type: WindowAlmayer + components: + - rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 30 + type: Transform +- uid: 1009 + type: AirlockGlassAlpha + components: + - pos: 20.5,15.5 + parent: 30 + type: Transform +- uid: 1010 + type: Bed + components: + - pos: 23.5,19.5 + parent: 30 + type: Transform +- uid: 1011 + type: BedsheetCult + components: + - pos: 23.5,19.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1012 + type: FoodBreadMoldySlice + components: + - pos: 26.5,16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1013 + type: TableWood + components: + - pos: 25.5,14.5 + parent: 30 + type: Transform +- uid: 1014 + type: TableWood + components: + - pos: 26.5,16.5 + parent: 30 + type: Transform +- uid: 1015 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 26.5,14.5 + parent: 30 + type: Transform +- uid: 1016 + type: ChurchOrganInstrument + components: + - rot: 3.141592653589793 rad + pos: 26.5,15.5 + parent: 30 + type: Transform +- uid: 1017 + type: ChairWood + components: + - rot: 1.5707963267948966 rad + pos: 23.5,13.5 + parent: 30 + type: Transform +- uid: 1018 + type: ChairWood + components: + - rot: 1.5707963267948966 rad + pos: 22.5,13.5 + parent: 30 + type: Transform +- uid: 1019 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 30 + type: Transform +- uid: 1020 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: 29.5,13.5 + parent: 30 + type: Transform +- uid: 1021 + type: ChairWood + components: + - rot: 1.5707963267948966 rad + pos: 23.5,15.5 + parent: 30 + type: Transform +- uid: 1022 + type: ChairWood + components: + - rot: 1.5707963267948966 rad + pos: 22.5,15.5 + parent: 30 + type: Transform +- uid: 1023 + type: ChairWood + components: + - rot: 1.5707963267948966 rad + pos: 23.5,12.5 + parent: 30 + type: Transform +- uid: 1024 + type: ChairWood + components: + - rot: 1.5707963267948966 rad + pos: 22.5,12.5 + parent: 30 + type: Transform +- uid: 1025 + type: ChairWood + components: + - rot: 1.5707963267948966 rad + pos: 22.5,16.5 + parent: 30 + type: Transform +- uid: 1026 + type: ChairWood + components: + - rot: 1.5707963267948966 rad + pos: 23.5,16.5 + parent: 30 + type: Transform +- uid: 1027 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: 29.5,15.5 + parent: 30 + type: Transform +- uid: 1028 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: 27.5,15.5 + parent: 30 + type: Transform +- uid: 1029 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: 27.5,13.5 + parent: 30 + type: Transform +- uid: 1030 + type: CarpetChapel + components: + - pos: 21.5,12.5 + parent: 30 + type: Transform +- uid: 1031 + type: CarpetChapel + components: + - rot: -1.5707963267948966 rad + pos: 21.5,13.5 + parent: 30 + type: Transform +- uid: 1032 + type: CarpetChapel + components: + - rot: 3.141592653589793 rad + pos: 22.5,13.5 + parent: 30 + type: Transform +- uid: 1033 + type: CarpetChapel + components: + - rot: 1.5707963267948966 rad + pos: 22.5,12.5 + parent: 30 + type: Transform +- uid: 1034 + type: CarpetChapel + components: + - pos: 23.5,12.5 + parent: 30 + type: Transform +- uid: 1035 + type: CarpetChapel + components: + - rot: -1.5707963267948966 rad + pos: 23.5,13.5 + parent: 30 + type: Transform +- uid: 1036 + type: CarpetChapel + components: + - rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 30 + type: Transform +- uid: 1037 + type: CarpetChapel + components: + - rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 30 + type: Transform +- uid: 1038 + type: CarpetChapel + components: + - pos: 21.5,15.5 + parent: 30 + type: Transform +- uid: 1039 + type: CarpetChapel + components: + - pos: 23.5,15.5 + parent: 30 + type: Transform +- uid: 1040 + type: CarpetChapel + components: + - rot: -1.5707963267948966 rad + pos: 21.5,16.5 + parent: 30 + type: Transform +- uid: 1041 + type: CarpetChapel + components: + - rot: -1.5707963267948966 rad + pos: 23.5,16.5 + parent: 30 + type: Transform +- uid: 1042 + type: CarpetChapel + components: + - rot: 3.141592653589793 rad + pos: 22.5,16.5 + parent: 30 + type: Transform +- uid: 1043 + type: CarpetChapel + components: + - rot: 3.141592653589793 rad + pos: 24.5,16.5 + parent: 30 + type: Transform +- uid: 1044 + type: CarpetChapel + components: + - rot: 1.5707963267948966 rad + pos: 24.5,15.5 + parent: 30 + type: Transform +- uid: 1045 + type: CarpetChapel + components: + - rot: 1.5707963267948966 rad + pos: 22.5,15.5 + parent: 30 + type: Transform +- uid: 1046 + type: Carpet + components: + - rot: 1.5707963267948966 rad + pos: 21.5,14.5 + parent: 30 + type: Transform +- uid: 1047 + type: Carpet + components: + - rot: 1.5707963267948966 rad + pos: 22.5,14.5 + parent: 30 + type: Transform +- uid: 1048 + type: Carpet + components: + - rot: 1.5707963267948966 rad + pos: 23.5,14.5 + parent: 30 + type: Transform +- uid: 1049 + type: Carpet + components: + - rot: 1.5707963267948966 rad + pos: 24.5,14.5 + parent: 30 + type: Transform +- uid: 1050 + type: Carpet + components: + - rot: 1.5707963267948966 rad + pos: 25.5,14.5 + parent: 30 + type: Transform +- uid: 1051 + type: Carpet + components: + - rot: 1.5707963267948966 rad + pos: 25.5,13.5 + parent: 30 + type: Transform +- uid: 1052 + type: Carpet + components: + - rot: 1.5707963267948966 rad + pos: 25.5,12.5 + parent: 30 + type: Transform +- uid: 1053 + type: Carpet + components: + - rot: 1.5707963267948966 rad + pos: 25.5,15.5 + parent: 30 + type: Transform +- uid: 1054 + type: Carpet + components: + - rot: 1.5707963267948966 rad + pos: 25.5,16.5 + parent: 30 + type: Transform +- uid: 1055 + type: Carpet + components: + - rot: 1.5707963267948966 rad + pos: 26.5,14.5 + parent: 30 + type: Transform +- uid: 1056 + type: CarpetChapel + components: + - rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 30 + type: Transform +- uid: 1057 + type: CarpetChapel + components: + - rot: 3.141592653589793 rad + pos: 26.5,13.5 + parent: 30 + type: Transform +- uid: 1058 + type: CarpetChapel + components: + - rot: 3.141592653589793 rad + pos: 26.5,16.5 + parent: 30 + type: Transform +- uid: 1059 + type: CarpetChapel + components: + - rot: 1.5707963267948966 rad + pos: 26.5,15.5 + parent: 30 + type: Transform +- uid: 1060 + type: DrinkBottleWine + components: + - pos: 26.695837,16.837381 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: RefillableSolution + - solution: drink + type: DrainableSolution +- uid: 1061 + type: AirlockGlassAlpha + components: + - pos: 20.5,10.5 + parent: 30 + type: Transform +- uid: 1062 + type: SignChapel + components: + - pos: 20.5,16.5 + parent: 30 + type: Transform +- uid: 1063 + type: WallAlmayer + components: + - pos: 28.5,21.5 + parent: 30 + type: Transform +- uid: 1064 + type: WallAlmayer + components: + - pos: 27.5,21.5 + parent: 30 + type: Transform +- uid: 1065 + type: WallAlmayer + components: + - pos: 27.5,22.5 + parent: 30 + type: Transform +- uid: 1066 + type: WallAlmayer + components: + - pos: 26.5,22.5 + parent: 30 + type: Transform +- uid: 1067 + type: WallAlmayer + components: + - pos: 25.5,22.5 + parent: 30 + type: Transform +- uid: 1068 + type: WallAlmayer + components: + - pos: 24.5,22.5 + parent: 30 + type: Transform +- uid: 1069 + type: WallAlmayer + components: + - pos: 23.5,22.5 + parent: 30 + type: Transform +- uid: 1070 + type: WallAlmayer + components: + - pos: 22.5,22.5 + parent: 30 + type: Transform +- uid: 1071 + type: WallAlmayer + components: + - pos: 17.5,28.5 + parent: 30 + type: Transform +- uid: 1072 + type: WallAlmayer + components: + - pos: 20.5,28.5 + parent: 30 + type: Transform +- uid: 1073 + type: WallAlmayer + components: + - pos: 17.5,25.5 + parent: 30 + type: Transform +- uid: 1074 + type: WallAlmayer + components: + - pos: 20.5,25.5 + parent: 30 + type: Transform +- uid: 1075 + type: WindowAlmayer + components: + - pos: 17.5,26.5 + parent: 30 + type: Transform +- uid: 1076 + type: WindowAlmayer + components: + - pos: 17.5,27.5 + parent: 30 + type: Transform +- uid: 1077 + type: WindowAlmayer + components: + - pos: 20.5,26.5 + parent: 30 + type: Transform +- uid: 1078 + type: WindowAlmayer + components: + - pos: 20.5,27.5 + parent: 30 + type: Transform +- uid: 1079 + type: WindowAlmayer + components: + - pos: 21.5,23.5 + parent: 30 + type: Transform +- uid: 1080 + type: WindowAlmayer + components: + - pos: 21.5,24.5 + parent: 30 + type: Transform +- uid: 1081 + type: WindowAlmayer + components: + - pos: 21.5,25.5 + parent: 30 + type: Transform +- uid: 1082 + type: WindowAlmayer + components: + - pos: 16.5,25.5 + parent: 30 + type: Transform +- uid: 1083 + type: WindowAlmayer + components: + - pos: 16.5,24.5 + parent: 30 + type: Transform +- uid: 1084 + type: Grille + components: + - pos: 16.5,24.5 + parent: 30 + type: Transform +- uid: 1085 + type: Grille + components: + - pos: 16.5,25.5 + parent: 30 + type: Transform +- uid: 1086 + type: Grille + components: + - pos: 21.5,23.5 + parent: 30 + type: Transform +- uid: 1087 + type: Grille + components: + - pos: 21.5,24.5 + parent: 30 + type: Transform +- uid: 1088 + type: Grille + components: + - pos: 21.5,25.5 + parent: 30 + type: Transform +- uid: 1089 + type: Grille + components: + - pos: 20.5,26.5 + parent: 30 + type: Transform +- uid: 1090 + type: Grille + components: + - pos: 20.5,27.5 + parent: 30 + type: Transform +- uid: 1091 + type: Grille + components: + - pos: 17.5,26.5 + parent: 30 + type: Transform +- uid: 1092 + type: Grille + components: + - pos: 17.5,27.5 + parent: 30 + type: Transform +- uid: 1093 + type: AirlockGlassAlpha + components: + - pos: 22.5,21.5 + parent: 30 + type: Transform +- uid: 1094 + type: FirelockGlass + components: + - pos: 27.5,10.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 1095 + type: FirelockGlass + components: + - pos: 24.5,21.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 1096 + type: AirlockGlassAlpha + components: + - rot: 3.141592653589793 rad + pos: 19.5,28.5 + parent: 30 + type: Transform + - fixtures: + - shape: !type:PolygonShape + vertices: + - 0.49,-0.49 + - 0.49,0.49 + - -0.49,0.49 + - -0.49,-0.49 + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + layer: + - MidImpassable + - HighImpassable + - BulletImpassable + - InteractImpassable + - Opaque + mass: 100 + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures +- uid: 1097 + type: AirlockGlassAlpha + components: + - rot: 3.141592653589793 rad + pos: 18.5,28.5 + parent: 30 + type: Transform + - fixtures: + - shape: !type:PolygonShape + vertices: + - 0.49,-0.49 + - 0.49,0.49 + - -0.49,0.49 + - -0.49,-0.49 + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + layer: + - MidImpassable + - HighImpassable + - BulletImpassable + - InteractImpassable + - Opaque + mass: 100 + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures +- uid: 1098 + type: AirlockGlassAlpha + components: + - pos: 19.5,25.5 + parent: 30 + type: Transform +- uid: 1099 + type: AirlockGlassAlpha + components: + - pos: 18.5,25.5 + parent: 30 + type: Transform +- uid: 1100 + type: CrateFilledSpawner + components: + - pos: -18.5,14.5 + parent: 30 + type: Transform +- uid: 1101 + type: AirlockGlassAlpha + components: + - pos: 19.5,19.5 + parent: 30 + type: Transform +- uid: 1102 + type: AirlockGlassAlpha + components: + - pos: 18.5,19.5 + parent: 30 + type: Transform +- uid: 1103 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1104 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1105 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1106 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 18.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1107 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1108 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1109 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1110 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1111 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1112 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1113 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1114 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1115 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,14.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1116 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 19.5,13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1117 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: 19.5,14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1118 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,17.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1119 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,18.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1120 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,19.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1121 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,20.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1122 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,21.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1123 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1124 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1125 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1126 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: 19.5,7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1127 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,8.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1128 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1129 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1130 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1131 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1132 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 18.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1133 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 18.5,16.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1134 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1135 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1136 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1137 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,18.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1138 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,19.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1139 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,20.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1140 + type: GasPipeFourway + components: + - pos: 19.5,21.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1141 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1142 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1143 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 19.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1144 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 20.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1145 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 20.5,13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1146 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 21.5,13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1147 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 21.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1148 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: 18.5,14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1149 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 19.5,16.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1150 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: 18.5,7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1151 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 19.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1152 + type: GasVentScrubber + components: + - pos: 18.5,22.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1153 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 19.5,22.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1154 + type: GasPipeStraight + components: + - pos: 19.5,23.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1155 + type: GasPipeStraight + components: + - pos: 19.5,24.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1156 + type: GasPipeStraight + components: + - pos: 19.5,25.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1157 + type: GasVentPump + components: + - pos: 19.5,26.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1158 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 20.5,22.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1159 + type: WallAlmayer + components: + - pos: 7.5,24.5 + parent: 30 + type: Transform +- uid: 1160 + type: WallAlmayer + components: + - pos: 8.5,24.5 + parent: 30 + type: Transform +- uid: 1161 + type: WallAlmayer + components: + - pos: 9.5,24.5 + parent: 30 + type: Transform +- uid: 1162 + type: WallAlmayer + components: + - pos: 12.5,22.5 + parent: 30 + type: Transform +- uid: 1163 + type: WallAlmayer + components: + - pos: 13.5,22.5 + parent: 30 + type: Transform +- uid: 1164 + type: FirelockGlass + components: + - pos: 13.5,21.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 1165 + type: WindowAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 16.5,23.5 + parent: 30 + type: Transform +- uid: 1166 + type: AirlockGlassAlpha + components: + - pos: 15.5,21.5 + parent: 30 + type: Transform +- uid: 1167 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: 12.5,21.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1168 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 13.5,21.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1169 + type: WeaponShotgunKammerer + components: + - pos: 10.599479,16.304556 + parent: 30 + type: Transform + - unspawnedCount: 4 + type: BallisticAmmoProvider + - canCollide: False + type: Physics + - containers: + ballistic-ammo: !type:Container + ents: [] + type: ContainerContainer +- uid: 1170 + type: CrateEmptySpawner + components: + - pos: -17.5,20.5 + parent: 30 + type: Transform +- uid: 1171 + type: Rack + components: + - pos: -21.5,13.5 + parent: 30 + type: Transform +- uid: 1172 + type: PlasticFlapsAirtightClear + components: + - pos: -22.5,24.5 + parent: 30 + type: Transform +- uid: 1173 + type: PoweredSmallLight + components: + - pos: -14.5,7.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 1174 + type: Table + components: + - pos: -15.5,13.5 + parent: 30 + type: Transform +- uid: 1175 + type: WallAlmayer + components: + - pos: -4.5,17.5 + parent: 30 + type: Transform +- uid: 1176 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -14.5,3.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 1177 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 1178 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -18.5,3.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 1179 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: -14.5,-8.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 1180 + type: SignSpace + components: + - pos: -33.5,-8.5 + parent: 30 + type: Transform +- uid: 1181 + type: WeaponLaserCarbine + components: + - pos: 9.568229,15.507681 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1182 + type: Table + components: + - pos: -23.5,13.5 + parent: 30 + type: Transform +- uid: 1183 + type: Table + components: + - pos: -23.5,14.5 + parent: 30 + type: Transform +- uid: 1184 + type: PlasticFlapsAirtightClear + components: + - pos: -22.5,26.5 + parent: 30 + type: Transform +- uid: 1185 + type: VendingMachineSecDrobe + components: + - pos: 12.5,16.5 + parent: 30 + type: Transform +- uid: 1186 + type: WeaponSubMachineGunVector + components: + - pos: 8.551415,17.517046 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1187 + type: MagazinePistolPractice + components: + - pos: 7.6463537,15.679556 + parent: 30 + type: Transform + - unspawnedCount: 10 + type: BallisticAmmoProvider + - canCollide: False + type: Physics +- uid: 1188 + type: WeaponPistolMk58 + components: + - pos: 7.5682287,15.570181 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1189 + type: CableMV + components: + - pos: 30.5,3.5 + parent: 30 + type: Transform +- uid: 1190 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -12.5,4.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 1191 + type: GeneratorPlasmaMachineCircuitboard + components: + - pos: 39.394554,-5.4941945 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1192 + type: WallAlmayer + components: + - pos: -4.5,12.5 + parent: 30 + type: Transform +- uid: 1193 + type: WallAlmayer + components: + - pos: -4.5,16.5 + parent: 30 + type: Transform +- uid: 1194 + type: WallAlmayer + components: + - pos: -4.5,15.5 + parent: 30 + type: Transform +- uid: 1195 + type: WallAlmayer + components: + - pos: -4.5,14.5 + parent: 30 + type: Transform +- uid: 1196 + type: WallAlmayer + components: + - pos: -4.5,13.5 + parent: 30 + type: Transform +- uid: 1197 + type: CableApcExtension + components: + - pos: 6.5,10.5 + parent: 30 + type: Transform +- uid: 1198 + type: CableApcExtension + components: + - pos: 10.5,10.5 + parent: 30 + type: Transform +- uid: 1199 + type: Bed + components: + - pos: 6.5,5.5 + parent: 30 + type: Transform +- uid: 1200 + type: Bed + components: + - pos: 12.5,5.5 + parent: 30 + type: Transform +- uid: 1201 + type: WallAlmayer + components: + - pos: 11.5,24.5 + parent: 30 + type: Transform +- uid: 1202 + type: LockerSecurityFilled + components: + - pos: 15.5,15.5 + parent: 30 + type: Transform +- uid: 1203 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 14.5,22.5 + parent: 30 + type: Transform +- uid: 1204 + type: WeaponSubMachineGunVector + components: + - pos: 8.488915,17.595171 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1205 + type: WeaponDisabler + components: + - pos: 14.489054,19.641838 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1206 + type: ClothingOuterHardsuitSecurity + components: + - parent: 937 + type: Transform + - canCollide: False + type: Physics + - containers: + toggleable-clothing: !type:ContainerSlot {} + type: ContainerContainer +- uid: 1207 + type: MagazineMagnumSubMachineGun + components: + - pos: 8.25454,17.642046 + parent: 30 + type: Transform + - unspawnedCount: 25 + type: BallisticAmmoProvider + - canCollide: False + type: Physics +- uid: 1208 + type: MagazineMagnumSubMachineGun + components: + - pos: 8.41079,17.642046 + parent: 30 + type: Transform + - unspawnedCount: 25 + type: BallisticAmmoProvider + - canCollide: False + type: Physics +- uid: 1209 + type: WallAlmayer + components: + - pos: 10.5,24.5 + parent: 30 + type: Transform +- uid: 1210 + type: WallAlmayer + components: + - pos: 11.5,23.5 + parent: 30 + type: Transform +- uid: 1211 + type: WallAlmayer + components: + - pos: 11.5,22.5 + parent: 30 + type: Transform +- uid: 1212 + type: WallAlmayer + components: + - pos: 5.5,25.5 + parent: 30 + type: Transform +- uid: 1213 + type: WallAlmayer + components: + - pos: 4.5,25.5 + parent: 30 + type: Transform +- uid: 1214 + type: WallAlmayer + components: + - pos: 4.5,26.5 + parent: 30 + type: Transform +- uid: 1215 + type: WallAlmayer + components: + - pos: 3.5,26.5 + parent: 30 + type: Transform +- uid: 1216 + type: WallAlmayer + components: + - pos: 3.5,27.5 + parent: 30 + type: Transform +- uid: 1217 + type: WallAlmayer + components: + - pos: 2.5,27.5 + parent: 30 + type: Transform +- uid: 1218 + type: WindowAlmayer + components: + - pos: -3.5,24.5 + parent: 30 + type: Transform +- uid: 1219 + type: WindowAlmayer + components: + - pos: -3.5,25.5 + parent: 30 + type: Transform +- uid: 1220 + type: WallAlmayer + components: + - pos: -0.5,27.5 + parent: 30 + type: Transform +- uid: 1221 + type: WindowAlmayer + components: + - pos: -3.5,26.5 + parent: 30 + type: Transform +- uid: 1222 + type: WindowAlmayer + components: + - pos: -2.5,27.5 + parent: 30 + type: Transform +- uid: 1223 + type: WallAlmayer + components: + - pos: -3.5,27.5 + parent: 30 + type: Transform +- uid: 1224 + type: WindowAlmayer + components: + - pos: -1.5,27.5 + parent: 30 + type: Transform +- uid: 1225 + type: WindowAlmayer + components: + - pos: 0.5,27.5 + parent: 30 + type: Transform +- uid: 1226 + type: WindowAlmayer + components: + - pos: 1.5,27.5 + parent: 30 + type: Transform +- uid: 1227 + type: WallAlmayer + components: + - pos: -3.5,23.5 + parent: 30 + type: Transform +- uid: 1228 + type: WallAlmayer + components: + - pos: -4.5,23.5 + parent: 30 + type: Transform +- uid: 1229 + type: CarpetBlue + components: + - rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 30 + type: Transform +- uid: 1230 + type: CrateFilledSpawner + components: + - pos: -17.5,16.5 + parent: 30 + type: Transform +- uid: 1231 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1232 + type: CarpetBlue + components: + - rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 30 + type: Transform +- uid: 1233 + type: CarpetGreen + components: + - rot: 1.5707963267948966 rad + pos: 2.5,11.5 + parent: 30 + type: Transform +- uid: 1234 + type: CarpetBlue + components: + - rot: 1.5707963267948966 rad + pos: 0.5,9.5 + parent: 30 + type: Transform +- uid: 1235 + type: CarpetGreen + components: + - rot: 1.5707963267948966 rad + pos: 2.5,10.5 + parent: 30 + type: Transform +- uid: 1236 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 20.5,21.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1237 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 21.5,21.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1238 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 22.5,21.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1239 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 23.5,21.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1240 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 24.5,21.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1241 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 18.5,21.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1242 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 17.5,21.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1243 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 16.5,21.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1244 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 15.5,21.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1245 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 14.5,21.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1246 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 25.5,21.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1247 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 16.5,22.5 + parent: 30 + type: Transform +- uid: 1248 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 15.5,22.5 + parent: 30 + type: Transform +- uid: 1249 + type: WallAlmayer + components: + - pos: 6.5,24.5 + parent: 30 + type: Transform +- uid: 1250 + type: WallAlmayer + components: + - pos: 5.5,24.5 + parent: 30 + type: Transform +- uid: 1251 + type: Grille + components: + - pos: 16.5,23.5 + parent: 30 + type: Transform +- uid: 1252 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 3.5,24.5 + parent: 30 + type: Transform +- uid: 1253 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 4.5,23.5 + parent: 30 + type: Transform +- uid: 1254 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 3.5,23.5 + parent: 30 + type: Transform +- uid: 1255 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 3.5,25.5 + parent: 30 + type: Transform +- uid: 1256 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 5.5,23.5 + parent: 30 + type: Transform +- uid: 1257 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: -3.5,25.5 + parent: 30 + type: Transform +- uid: 1258 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: -3.5,26.5 + parent: 30 + type: Transform +- uid: 1259 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: -2.5,27.5 + parent: 30 + type: Transform +- uid: 1260 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: -1.5,27.5 + parent: 30 + type: Transform +- uid: 1261 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 0.5,27.5 + parent: 30 + type: Transform +- uid: 1262 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 1.5,27.5 + parent: 30 + type: Transform +- uid: 1263 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -2.5,23.5 + parent: 30 + type: Transform +- uid: 1264 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -1.5,23.5 + parent: 30 + type: Transform +- uid: 1265 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 2.5,23.5 + parent: 30 + type: Transform +- uid: 1266 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 1.5,23.5 + parent: 30 + type: Transform +- uid: 1267 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 0.5,23.5 + parent: 30 + type: Transform +- uid: 1268 + type: AirlockGlassAlpha + components: + - pos: -0.5,23.5 + parent: 30 + type: Transform +- uid: 1269 + type: Chair + components: + - rot: 3.141592653589793 rad + pos: -1.5,24.5 + parent: 30 + type: Transform +- uid: 1270 + type: TableWood + components: + - pos: -0.5,25.5 + parent: 30 + type: Transform +- uid: 1271 + type: TableWood + components: + - pos: -1.5,25.5 + parent: 30 + type: Transform +- uid: 1272 + type: TableWood + components: + - pos: -2.5,25.5 + parent: 30 + type: Transform +- uid: 1273 + type: LockerDetectiveFilled + components: + - pos: 2.5,24.5 + parent: 30 + type: Transform +- uid: 1274 + type: VendingMachineDetDrobe + components: + - pos: 2.5,26.5 + parent: 30 + type: Transform +- uid: 1275 + type: CarpetBlack + components: + - pos: 0.5,5.5 + parent: 30 + type: Transform +- uid: 1276 + type: DisposalUnit + components: + - pos: 2.5,25.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 1277 + type: ComputerSurveillanceCameraMonitor + components: + - rot: 1.5707963267948966 rad + pos: -2.5,26.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 1278 + type: ComfyChair + components: + - pos: -1.5,26.5 + parent: 30 + type: Transform +- uid: 1279 + type: Lamp + components: + - pos: -2.4682102,25.711802 + parent: 30 + type: Transform + - toggleAction: + icon: Objects/Tools/flashlight.rsi/flashlight.png + iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png + name: action-name-toggle-light + description: action-description-toggle-light + keywords: [] + event: !type:ToggleActionEvent {} + type: HandheldLight + - canCollide: False + type: Physics +- uid: 1280 + type: ClosetBase + components: + - pos: -2.5,24.5 + parent: 30 + type: Transform + - containers: + entity_storage: !type:Container + ents: + - 1281 + type: ContainerContainer +- uid: 1281 + type: SheetPlasma + components: + - parent: 1280 + type: Transform + - canCollide: False + type: Physics +- uid: 1282 + type: ClothingOuterCoatInspector + components: + - pos: -1.5700053,25.66876 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 1283 + type: DrinkDetFlask + components: + - pos: -0.63380504,25.633677 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 1284 + type: ClothingHeadHatFedoraBrown + components: + - pos: -2.5034542,26.758677 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1285 + type: PhoneInstrument + components: + - pos: 30.935675,8.570768 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1286 + type: PosterLegitDickGumshue + components: + - pos: -0.5,27.5 + parent: 30 + type: Transform +- uid: 1287 + type: PoweredSmallLight + components: + - pos: -0.5,26.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 1288 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: 17.5,23.5 + parent: 30 + type: Transform +- uid: 1289 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: 17.5,24.5 + parent: 30 + type: Transform +- uid: 1290 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: 20.5,23.5 + parent: 30 + type: Transform +- uid: 1291 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: 20.5,24.5 + parent: 30 + type: Transform +- uid: 1292 + type: VendingMachineCola + components: + - pos: 17.5,22.5 + parent: 30 + type: Transform +- uid: 1293 + type: PottedPlantRandom + components: + - pos: 20.5,22.5 + parent: 30 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 1294 + type: SpawnPointLatejoin + components: + - pos: 18.5,24.5 + parent: 30 + type: Transform +- uid: 1295 + type: SpawnPointLatejoin + components: + - pos: 19.5,24.5 + parent: 30 + type: Transform +- uid: 1296 + type: SpawnPointLatejoin + components: + - pos: 19.5,23.5 + parent: 30 + type: Transform +- uid: 1297 + type: SpawnPointLatejoin + components: + - pos: 18.5,23.5 + parent: 30 + type: Transform +- uid: 1298 + type: WallAlmayer + components: + - pos: 16.5,12.5 + parent: 30 + type: Transform +- uid: 1299 + type: WallAlmayer + components: + - pos: 16.5,13.5 + parent: 30 + type: Transform +- uid: 1300 + type: WallAlmayer + components: + - pos: 16.5,14.5 + parent: 30 + type: Transform +- uid: 1301 + type: WallAlmayer + components: + - pos: 16.5,15.5 + parent: 30 + type: Transform +- uid: 1302 + type: FirelockGlass + components: + - pos: 19.5,9.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 1303 + type: FirelockGlass + components: + - pos: 18.5,9.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 1304 + type: FirelockGlass + components: + - pos: 31.5,5.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 1305 + type: FirelockGlass + components: + - pos: 31.5,-0.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 1306 + type: FirelockGlass + components: + - pos: 28.5,-5.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 1307 + type: Carpet + components: + - pos: -1.5,26.5 + parent: 30 + type: Transform +- uid: 1308 + type: Carpet + components: + - pos: -0.5,26.5 + parent: 30 + type: Transform +- uid: 1309 + type: Carpet + components: + - pos: -0.5,25.5 + parent: 30 + type: Transform +- uid: 1310 + type: Carpet + components: + - pos: -1.5,25.5 + parent: 30 + type: Transform +- uid: 1311 + type: Carpet + components: + - pos: -1.5,24.5 + parent: 30 + type: Transform +- uid: 1312 + type: Carpet + components: + - pos: -0.5,24.5 + parent: 30 + type: Transform +- uid: 1313 + type: Chair + components: + - pos: 1.5,26.5 + parent: 30 + type: Transform +- uid: 1314 + type: FirelockGlass + components: + - pos: 5.5,22.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 1315 + type: Grille + components: + - pos: -9.5,-18.5 + parent: 30 + type: Transform +- uid: 1316 + type: CableApcExtension + components: + - pos: -11.5,-16.5 + parent: 30 + type: Transform +- uid: 1317 + type: AirlockGlassAlpha + components: + - pos: -12.5,-6.5 + parent: 30 + type: Transform +- uid: 1318 + type: AirlockGlassAlpha + components: + - pos: -12.5,-5.5 + parent: 30 + type: Transform +- uid: 1319 + type: WallAlmayer + components: + - pos: -5.5,23.5 + parent: 30 + type: Transform +- uid: 1320 + type: WallAlmayer + components: + - pos: -6.5,23.5 + parent: 30 + type: Transform +- uid: 1321 + type: WallAlmayer + components: + - pos: -7.5,23.5 + parent: 30 + type: Transform +- uid: 1322 + type: Grille + components: + - pos: -8.5,23.5 + parent: 30 + type: Transform +- uid: 1323 + type: WallAlmayer + components: + - pos: -9.5,23.5 + parent: 30 + type: Transform +- uid: 1324 + type: WallAlmayer + components: + - pos: -9.5,21.5 + parent: 30 + type: Transform +- uid: 1325 + type: WallAlmayer + components: + - pos: -8.5,21.5 + parent: 30 + type: Transform +- uid: 1326 + type: WallAlmayer + components: + - pos: -7.5,21.5 + parent: 30 + type: Transform +- uid: 1327 + type: WallAlmayer + components: + - pos: -6.5,21.5 + parent: 30 + type: Transform +- uid: 1328 + type: AirlockGlassAlpha + components: + - rot: 3.141592653589793 rad + pos: -21.5,26.5 + parent: 30 + type: Transform + - fixtures: + - shape: !type:PolygonShape + vertices: + - 0.49,-0.49 + - 0.49,0.49 + - -0.49,0.49 + - -0.49,-0.49 + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + layer: + - MidImpassable + - HighImpassable + - BulletImpassable + - InteractImpassable + - Opaque + mass: 100 + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures +- uid: 1329 + type: AirlockGlassAlpha + components: + - rot: 3.141592653589793 rad + pos: -19.5,26.5 + parent: 30 + type: Transform + - fixtures: + - shape: !type:PolygonShape + vertices: + - 0.49,-0.49 + - 0.49,0.49 + - -0.49,0.49 + - -0.49,-0.49 + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + layer: + - MidImpassable + - HighImpassable + - BulletImpassable + - InteractImpassable + - Opaque + mass: 100 + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures +- uid: 1330 + type: AirlockGlassAlpha + components: + - pos: -19.5,24.5 + parent: 30 + type: Transform +- uid: 1331 + type: Grille + components: + - pos: -23.5,25.5 + parent: 30 + type: Transform +- uid: 1332 + type: Grille + components: + - pos: -23.5,24.5 + parent: 30 + type: Transform +- uid: 1333 + type: Grille + components: + - pos: -23.5,23.5 + parent: 30 + type: Transform +- uid: 1334 + type: Grille + components: + - pos: -20.5,24.5 + parent: 30 + type: Transform +- uid: 1335 + type: Grille + components: + - pos: -20.5,25.5 + parent: 30 + type: Transform +- uid: 1336 + type: WindowAlmayer + components: + - pos: -11.5,21.5 + parent: 30 + type: Transform +- uid: 1337 + type: WindowAlmayer + components: + - pos: -14.5,19.5 + parent: 30 + type: Transform +- uid: 1338 + type: AirlockGlassAlpha + components: + - pos: -12.5,24.5 + parent: 30 + type: Transform +- uid: 1339 + type: AirlockGlassAlpha + components: + - pos: -9.5,22.5 + parent: 30 + type: Transform +- uid: 1340 + type: FirelockGlass + components: + - pos: -6.5,22.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 1341 + type: WallAlmayer + components: + - pos: -12.5,21.5 + parent: 30 + type: Transform +- uid: 1342 + type: WallAlmayer + components: + - pos: -15.5,22.5 + parent: 30 + type: Transform +- uid: 1343 + type: AirlockGlassAlpha + components: + - pos: -13.5,22.5 + parent: 30 + type: Transform +- uid: 1344 + type: WindowAlmayer + components: + - pos: -11.5,12.5 + parent: 30 + type: Transform +- uid: 1345 + type: WallAlmayer + components: + - pos: -12.5,12.5 + parent: 30 + type: Transform +- uid: 1346 + type: WindowAlmayer + components: + - pos: -9.5,12.5 + parent: 30 + type: Transform +- uid: 1347 + type: WallAlmayer + components: + - pos: -14.5,12.5 + parent: 30 + type: Transform +- uid: 1348 + type: WallAlmayer + components: + - pos: -14.5,13.5 + parent: 30 + type: Transform +- uid: 1349 + type: WallAlmayer + components: + - pos: -14.5,14.5 + parent: 30 + type: Transform +- uid: 1350 + type: WallAlmayer + components: + - pos: -14.5,15.5 + parent: 30 + type: Transform +- uid: 1351 + type: WallAlmayer + components: + - pos: -14.5,17.5 + parent: 30 + type: Transform +- uid: 1352 + type: WallAlmayer + components: + - pos: -14.5,16.5 + parent: 30 + type: Transform +- uid: 1353 + type: AirlockGlassAlpha + components: + - pos: -13.5,17.5 + parent: 30 + type: Transform +- uid: 1354 + type: WallAlmayer + components: + - pos: -12.5,17.5 + parent: 30 + type: Transform +- uid: 1355 + type: WallAlmayer + components: + - pos: -11.5,17.5 + parent: 30 + type: Transform +- uid: 1356 + type: WallAlmayer + components: + - pos: -10.5,17.5 + parent: 30 + type: Transform +- uid: 1357 + type: WallAlmayer + components: + - pos: -9.5,17.5 + parent: 30 + type: Transform +- uid: 1358 + type: WallAlmayer + components: + - pos: -8.5,17.5 + parent: 30 + type: Transform +- uid: 1359 + type: WallAlmayer + components: + - pos: -8.5,16.5 + parent: 30 + type: Transform +- uid: 1360 + type: WallAlmayer + components: + - pos: -8.5,15.5 + parent: 30 + type: Transform +- uid: 1361 + type: WallAlmayer + components: + - pos: -8.5,14.5 + parent: 30 + type: Transform +- uid: 1362 + type: WallAlmayer + components: + - pos: -8.5,13.5 + parent: 30 + type: Transform +- uid: 1363 + type: WallAlmayer + components: + - pos: -8.5,12.5 + parent: 30 + type: Transform +- uid: 1364 + type: WindowAlmayer + components: + - pos: -13.5,12.5 + parent: 30 + type: Transform +- uid: 1365 + type: WallAlmayer + components: + - pos: -7.5,12.5 + parent: 30 + type: Transform +- uid: 1366 + type: WallAlmayer + components: + - pos: -5.5,12.5 + parent: 30 + type: Transform +- uid: 1367 + type: WallAlmayer + components: + - pos: -5.5,17.5 + parent: 30 + type: Transform +- uid: 1368 + type: AirlockGlassAlpha + components: + - pos: -6.5,17.5 + parent: 30 + type: Transform +- uid: 1369 + type: WallAlmayer + components: + - pos: -7.5,17.5 + parent: 30 + type: Transform +- uid: 1370 + type: AirlockGlassAlpha + components: + - pos: -10.5,12.5 + parent: 30 + type: Transform +- uid: 1371 + type: Grille + components: + - pos: -13.5,12.5 + parent: 30 + type: Transform +- uid: 1372 + type: Grille + components: + - pos: -11.5,12.5 + parent: 30 + type: Transform +- uid: 1373 + type: Grille + components: + - pos: -9.5,12.5 + parent: 30 + type: Transform +- uid: 1374 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1375 + type: Grille + components: + - pos: -3.5,8.5 + parent: 30 + type: Transform +- uid: 1376 + type: GasPipeStraight + components: + - pos: 7.5,15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1377 + type: GasPipeStraight + components: + - pos: 7.5,12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1378 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -2.5,13.5 + parent: 30 + type: Transform +- uid: 1379 + type: ShuttersNormalOpen + components: + - pos: -14.5,-3.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 2158 + type: SignalReceiver +- uid: 1380 + type: ShuttersNormalOpen + components: + - pos: -16.5,-3.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 2158 + type: SignalReceiver +- uid: 1381 + type: CableApcExtension + components: + - pos: 11.5,8.5 + parent: 30 + type: Transform +- uid: 1382 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1383 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1384 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1385 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1386 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1387 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1388 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1389 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1390 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1391 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1392 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1393 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1394 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1395 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1396 + type: CableApcExtension + components: + - pos: 12.5,8.5 + parent: 30 + type: Transform +- uid: 1397 + type: CableApcExtension + components: + - pos: 12.5,7.5 + parent: 30 + type: Transform +- uid: 1398 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1399 + type: CableApcExtension + components: + - pos: 8.5,16.5 + parent: 30 + type: Transform +- uid: 1400 + type: FirelockGlass + components: + - pos: -15.5,-3.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 1401 + type: GasVentPump + components: + - pos: 14.5,17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1402 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1403 + type: WindowAlmayer + components: + - pos: 13.5,11.5 + parent: 30 + type: Transform +- uid: 1404 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 9.5,10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1405 + type: CableApcExtension + components: + - pos: 8.5,15.5 + parent: 30 + type: Transform +- uid: 1406 + type: FirelockGlass + components: + - pos: -14.5,-3.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 1407 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 15.5,16.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1408 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1409 + type: AirlockGlassAlpha + components: + - pos: 14.5,14.5 + parent: 30 + type: Transform +- uid: 1410 + type: CableApcExtension + components: + - pos: 14.5,17.5 + parent: 30 + type: Transform +- uid: 1411 + type: CableApcExtension + components: + - pos: 6.5,13.5 + parent: 30 + type: Transform +- uid: 1412 + type: CableApcExtension + components: + - pos: 10.5,13.5 + parent: 30 + type: Transform +- uid: 1413 + type: CableApcExtension + components: + - pos: 8.5,13.5 + parent: 30 + type: Transform +- uid: 1414 + type: CableApcExtension + components: + - pos: 12.5,18.5 + parent: 30 + type: Transform +- uid: 1415 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1416 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1417 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1418 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 6.5,8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1419 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1420 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1421 + type: GasVentScrubber + components: + - pos: 15.5,17.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1422 + type: Table + components: + - pos: 13.5,19.5 + parent: 30 + type: Transform +- uid: 1423 + type: CableApcExtension + components: + - pos: 8.5,14.5 + parent: 30 + type: Transform +- uid: 1424 + type: CableApcExtension + components: + - pos: 12.5,20.5 + parent: 30 + type: Transform +- uid: 1425 + type: BoxShotgunIncendiary + components: + - pos: 10.521353,16.597214 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 1426 + type: WallAlmayer + components: + - pos: 12.5,14.5 + parent: 30 + type: Transform +- uid: 1427 + type: CableApcExtension + components: + - pos: 2.5,17.5 + parent: 30 + type: Transform +- uid: 1428 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1429 + type: Shovel + components: + - pos: -21.519508,13.52734 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1430 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1431 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1432 + type: CableApcExtension + components: + - pos: 14.5,14.5 + parent: 30 + type: Transform +- uid: 1433 + type: CableApcExtension + components: + - pos: 14.5,15.5 + parent: 30 + type: Transform +- uid: 1434 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: 9.5,13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1435 + type: CableApcExtension + components: + - pos: 14.5,16.5 + parent: 30 + type: Transform +- uid: 1436 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1437 + type: GasVentPump + components: + - pos: 6.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1438 + type: GasPipeTJunction + components: + - pos: 9.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1439 + type: WindowAlmayer + components: + - pos: 15.5,14.5 + parent: 30 + type: Transform +- uid: 1440 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: 10.5,11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1441 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1442 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 13.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1443 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1444 + type: CableApcExtension + components: + - pos: 14.5,12.5 + parent: 30 + type: Transform +- uid: 1445 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 15.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1446 + type: PosterContrabandShamblersJuice + components: + - pos: -13.5,-3.5 + parent: 30 + type: Transform +- uid: 1447 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1448 + type: CableApcExtension + components: + - pos: 5.5,14.5 + parent: 30 + type: Transform +- uid: 1449 + type: CableApcExtension + components: + - pos: 5.5,16.5 + parent: 30 + type: Transform +- uid: 1450 + type: Multitool + components: + - pos: -25.4987,14.667965 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1451 + type: SheetSteel + components: + - pos: -15.504057,15.308662 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1452 + type: WindoorSecurityLocked + components: + - pos: 9.5,7.5 + parent: 30 + type: Transform +- uid: 1453 + type: WindowAlmayer + components: + - pos: 5.5,4.5 + parent: 30 + type: Transform +- uid: 1454 + type: CarpetBlue + components: + - rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 30 + type: Transform +- uid: 1455 + type: CarpetGreen + components: + - rot: 1.5707963267948966 rad + pos: 2.5,12.5 + parent: 30 + type: Transform +- uid: 1456 + type: Bed + components: + - pos: 9.5,5.5 + parent: 30 + type: Transform +- uid: 1457 + type: CableApcExtension + components: + - pos: 14.5,10.5 + parent: 30 + type: Transform +- uid: 1458 + type: GeneratorPlasmaMachineCircuitboard + components: + - pos: 12.430352,23.4899 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1459 + type: CableMV + components: + - pos: 30.5,1.5 + parent: 30 + type: Transform +- uid: 1460 + type: CableMV + components: + - pos: 30.5,0.5 + parent: 30 + type: Transform +- uid: 1461 + type: CableApcExtension + components: + - pos: 9.5,6.5 + parent: 30 + type: Transform +- uid: 1462 + type: CableApcExtension + components: + - pos: 11.5,7.5 + parent: 30 + type: Transform +- uid: 1463 + type: CableApcExtension + components: + - pos: 6.5,15.5 + parent: 30 + type: Transform +- uid: 1464 + type: CableApcExtension + components: + - pos: 8.5,7.5 + parent: 30 + type: Transform +- uid: 1465 + type: CableApcExtension + components: + - pos: 5.5,7.5 + parent: 30 + type: Transform +- uid: 1466 + type: CableApcExtension + components: + - pos: 9.5,5.5 + parent: 30 + type: Transform +- uid: 1467 + type: CableApcExtension + components: + - pos: 6.5,11.5 + parent: 30 + type: Transform +- uid: 1468 + type: CableApcExtension + components: + - pos: 9.5,7.5 + parent: 30 + type: Transform +- uid: 1469 + type: CableApcExtension + components: + - pos: 9.5,14.5 + parent: 30 + type: Transform +- uid: 1470 + type: CableApcExtension + components: + - pos: 7.5,14.5 + parent: 30 + type: Transform +- uid: 1471 + type: SpawnPointServiceWorker + components: + - pos: -16.5,0.5 + parent: 30 + type: Transform +- uid: 1472 + type: WeaponLaserCarbine + components: + - pos: 9.396354,15.663931 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1473 + type: AirlockGlassAlpha + components: + - pos: -7.5,2.5 + parent: 30 + type: Transform +- uid: 1474 + type: ClosetL3SecurityFilled + components: + - pos: 12.5,17.5 + parent: 30 + type: Transform +- uid: 1475 + type: CableApcExtension + components: + - pos: 7.5,11.5 + parent: 30 + type: Transform +- uid: 1476 + type: MagazinePistol + components: + - pos: 7.4276037,15.710806 + parent: 30 + type: Transform + - unspawnedCount: 10 + type: BallisticAmmoProvider + - canCollide: False + type: Physics +- uid: 1477 + type: Table + components: + - pos: -13.5,1.5 + parent: 30 + type: Transform +- uid: 1478 + type: hydroponicsTray + components: + - pos: -10.5,6.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 1479 + type: hydroponicsTray + components: + - pos: -9.5,6.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 1480 + type: hydroponicsTray + components: + - pos: -11.5,6.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 1481 + type: hydroponicsTray + components: + - pos: -8.5,3.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 1482 + type: hydroponicsTray + components: + - pos: -8.5,4.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 1483 + type: hydroponicsTray + components: + - pos: -8.5,5.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 1484 + type: hydroponicsTray + components: + - pos: -9.5,-1.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 1485 + type: hydroponicsTray + components: + - pos: -10.5,-1.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 1486 + type: hydroponicsTray + components: + - pos: -11.5,-1.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 1487 + type: hydroponicsTray + components: + - pos: -8.5,-0.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 1488 + type: hydroponicsTray + components: + - pos: -8.5,0.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 1489 + type: hydroponicsTray + components: + - pos: -8.5,1.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 1490 + type: VendingMachineHydrobe + components: + - pos: -12.5,-0.5 + parent: 30 + type: Transform +- uid: 1491 + type: VendingMachineSeeds + components: + - pos: -12.5,5.5 + parent: 30 + type: Transform +- uid: 1492 + type: SeedExtractor + components: + - pos: -10.5,2.5 + parent: 30 + type: Transform +- uid: 1493 + type: WaterTankHighCapacity + components: + - pos: -10.5,3.5 + parent: 30 + type: Transform +- uid: 1494 + type: VendingMachineNutri + components: + - pos: -12.5,3.5 + parent: 30 + type: Transform +- uid: 1495 + type: LockerBotanistFilled + components: + - pos: -12.5,0.5 + parent: 30 + type: Transform +- uid: 1496 + type: SecurityTechFab + components: + - pos: 10.5,15.5 + parent: 30 + type: Transform + - materialWhiteList: + - Glass + - Plastic + - Steel + type: Lathe + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 1497 + type: Table + components: + - pos: -12.5,4.5 + parent: 30 + type: Transform +- uid: 1498 + type: HydroponicsToolHatchet + components: + - pos: -12.538984,4.612352 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1499 + type: HydroponicsToolSpade + components: + - pos: -12.492109,4.627977 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1500 + type: DisposalTrunk + components: + - pos: -17.5,-4.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 1501 + type: HydroponicsToolMiniHoe + components: + - pos: -12.452371,4.646164 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1502 + type: ClothingHandsGlovesLeather + components: + - pos: -12.530496,4.552414 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1503 + type: ClothingHeadHatTrucker + components: + - pos: -12.546121,4.458664 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1504 + type: DisposalUnit + components: + - pos: -10.5,1.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 1505 + type: DisposalUnit + components: + - pos: 15.5,9.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 1506 + type: DisposalPipe + components: + - pos: 14.5,4.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 1507 + type: DisposalPipe + components: + - pos: 14.5,6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 1508 + type: DisposalPipe + components: + - pos: 14.5,8.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 1509 + type: DisposalTrunk + components: + - rot: -1.5707963267948966 rad + pos: 15.5,9.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 1510 + type: DisposalBend + components: + - rot: 1.5707963267948966 rad + pos: 14.5,9.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 1511 + type: BedsheetHOS + components: + - parent: 1642 + type: Transform +- uid: 1512 + type: DisposalPipe + components: + - pos: 14.5,7.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 1513 + type: Carpet + components: + - rot: -1.5707963267948966 rad + pos: 4.5,16.5 + parent: 30 + type: Transform +- uid: 1514 + type: DisposalPipe + components: + - pos: 14.5,3.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 1515 + type: DisposalUnit + components: + - pos: -17.5,9.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 1516 + type: DisposalPipe + components: + - pos: -17.5,-5.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 1517 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -28.5,1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 1518 + type: Carpet + components: + - rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 30 + type: Transform +- uid: 1519 + type: WeaponSubMachineGunWt550 + components: + - pos: 3.4787679,16.643839 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1520 + type: PosterLegitStateLaws + components: + - pos: 1.5,4.5 + parent: 30 + type: Transform +- uid: 1521 + type: FirelockGlass + components: + - pos: -7.5,-0.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 1522 + type: MagazinePistolSubMachineGunTopMounted + components: + - pos: 3.5881429,16.925089 + parent: 30 + type: Transform + - unspawnedCount: 30 + type: BallisticAmmoProvider + - canCollide: False + type: Physics + - containers: + ballistic-ammo: !type:Container + ents: [] + type: ContainerContainer +- uid: 1523 + type: Lamp + components: + - pos: 3.5725179,17.534464 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1524 + type: DisposalUnit + components: + - pos: -17.5,-4.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 1525 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -27.5,1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 1526 + type: CableApcExtension + components: + - pos: 14.5,11.5 + parent: 30 + type: Transform +- uid: 1527 + type: CableApcExtension + components: + - pos: 13.5,11.5 + parent: 30 + type: Transform +- uid: 1528 + type: CableApcExtension + components: + - pos: 6.5,17.5 + parent: 30 + type: Transform +- uid: 1529 + type: Railing + components: + - rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 30 + type: Transform +- uid: 1530 + type: Railing + components: + - rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 30 + type: Transform +- uid: 1531 + type: Railing + components: + - rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 30 + type: Transform +- uid: 1532 + type: DisposalTrunk + components: + - rot: 3.141592653589793 rad + pos: -25.5,0.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 1533 + type: DisposalUnit + components: + - pos: -25.5,0.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 1534 + type: VendingMachineCoffee + components: + - name: Hot drinks machine + type: MetaData + - pos: 17.5,16.5 + parent: 30 + type: Transform +- uid: 1535 + type: FirelockGlass + components: + - pos: -7.5,5.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 1536 + type: Railing + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 30 + type: Transform +- uid: 1537 + type: SpawnPointBotanist + components: + - pos: -11.5,3.5 + parent: 30 + type: Transform +- uid: 1538 + type: SpawnPointBotanist + components: + - pos: -11.5,1.5 + parent: 30 + type: Transform +- uid: 1539 + type: Bucket + components: + - pos: -12.560255,4.627368 + parent: 30 + type: Transform + - solution: bucket + type: Drink + - canCollide: False + type: Physics +- uid: 1540 + type: Bucket + components: + - pos: -12.32588,4.642993 + parent: 30 + type: Transform + - solution: bucket + type: Drink + - canCollide: False + type: Physics +- uid: 1541 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -16.5,9.5 + parent: 30 + type: Transform +- uid: 1542 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -14.5,9.5 + parent: 30 + type: Transform +- uid: 1543 + type: Table + components: + - pos: -15.5,9.5 + parent: 30 + type: Transform +- uid: 1544 + type: PottedPlantRandom + components: + - pos: 17.5,13.5 + parent: 30 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 1545 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 30 + type: Transform +- uid: 1546 + type: DisposalBend + components: + - pos: -25.5,1.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 1547 + type: Carpet + components: + - rot: -1.5707963267948966 rad + pos: 3.5,16.5 + parent: 30 + type: Transform +- uid: 1548 + type: Carpet + components: + - rot: -1.5707963267948966 rad + pos: 2.5,16.5 + parent: 30 + type: Transform +- uid: 1549 + type: ChairOfficeDark + components: + - rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 30 + type: Transform +- uid: 1550 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 2.5,16.5 + parent: 30 + type: Transform +- uid: 1551 + type: SpawnPointScientist + components: + - pos: -22.5,-13.5 + parent: 30 + type: Transform +- uid: 1552 + type: ChairOfficeDark + components: + - rot: -1.5707963267948966 rad + pos: 4.5,16.5 + parent: 30 + type: Transform +- uid: 1553 + type: Carpet + components: + - rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 30 + type: Transform +- uid: 1554 + type: RailingCornerSmall + components: + - pos: -8.5,-4.5 + parent: 30 + type: Transform +- uid: 1555 + type: ClothingOuterHardsuitSecurity + components: + - parent: 937 + type: Transform + - canCollide: False + type: Physics + - containers: + toggleable-clothing: !type:ContainerSlot {} + type: ContainerContainer +- uid: 1556 + type: TableReinforced + components: + - pos: -7.5,-0.5 + parent: 30 + type: Transform +- uid: 1557 + type: SignHydro2 + components: + - pos: -8.5,7.5 + parent: 30 + type: Transform +- uid: 1558 + type: SignHydro3 + components: + - pos: -8.5,-2.5 + parent: 30 + type: Transform +- uid: 1559 + type: GasPipeFourway + components: + - pos: -6.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1560 + type: GasPipeFourway + components: + - pos: -5.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1561 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1562 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -7.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1563 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -8.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1564 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1565 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -8.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1566 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1567 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1568 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -9.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1569 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -10.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1570 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1571 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1572 + type: GasVentScrubber + components: + - rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1573 + type: GasPipeStraight + components: + - pos: -5.5,1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1574 + type: GasPipeStraight + components: + - pos: -5.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1575 + type: GasPipeStraight + components: + - pos: -6.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1576 + type: GasPipeStraight + components: + - pos: -6.5,3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 1577 + type: AirlockGlassAlpha + components: + - pos: -6.5,12.5 + parent: 30 + type: Transform +- uid: 1578 + type: VendingMachineTheater + components: + - pos: -7.5,16.5 + parent: 30 + type: Transform +- uid: 1579 + type: Table + components: + - pos: -5.5,16.5 + parent: 30 + type: Transform +- uid: 1580 + type: PosterContrabandClown + components: + - pos: -7.5,12.5 + parent: 30 + type: Transform +- uid: 1581 + type: SpawnPointClown + components: + - pos: -7.5,15.5 + parent: 30 + type: Transform +- uid: 1582 + type: SpawnPointMime + components: + - pos: -6.5,14.5 + parent: 30 + type: Transform +- uid: 1583 + type: LockerEvidence + components: + - pos: 5.5,11.5 + parent: 30 + type: Transform +- uid: 1584 + type: WindoorArmoryLocked + components: + - rot: -1.5707963267948966 rad + pos: 10.5,13.5 + parent: 30 + type: Transform +- uid: 1585 + type: LockerWardenFilled + components: + - pos: 12.5,13.5 + parent: 30 + type: Transform +- uid: 1586 + type: Table + components: + - pos: 8.5,11.5 + parent: 30 + type: Transform +- uid: 1587 + type: FirelockGlass + components: + - pos: 13.5,10.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 1588 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: 14.5,17.5 + parent: 30 + type: Transform +- uid: 1589 + type: CableApcExtension + components: + - pos: 12.5,11.5 + parent: 30 + type: Transform +- uid: 1590 + type: Chair + components: + - pos: 15.5,18.5 + parent: 30 + type: Transform +- uid: 1591 + type: CableApcExtension + components: + - pos: 6.5,7.5 + parent: 30 + type: Transform +- uid: 1592 + type: CableApcExtension + components: + - pos: 9.5,11.5 + parent: 30 + type: Transform +- uid: 1593 + type: SpawnPointMusician + components: + - pos: -6.5,15.5 + parent: 30 + type: Transform +- uid: 1594 + type: Table + components: + - pos: -7.5,13.5 + parent: 30 + type: Transform +- uid: 1595 + type: Table + components: + - pos: -5.5,13.5 + parent: 30 + type: Transform +- uid: 1596 + type: Chair + components: + - pos: -5.5,14.5 + parent: 30 + type: Transform +- uid: 1597 + type: ChairOfficeDark + components: + - rot: 1.5707963267948966 rad + pos: -6.5,16.5 + parent: 30 + type: Transform +- uid: 1598 + type: ChairWood + components: + - pos: -7.5,14.5 + parent: 30 + type: Transform +- uid: 1599 + type: ClothingNeckScarfStripedZebra + components: + - pos: -5.5265217,14.365646 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1600 + type: CrayonBox + components: + - pos: -5.4640217,13.553146 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 1601 + type: DrinkBottleOfNothingFull + components: + - pos: -5.4171467,13.818771 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 1602 + type: BikeHorn + components: + - pos: -7.4952717,13.553146 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1603 + type: BikeHornInstrument + components: + - pos: -7.5421467,13.428146 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1604 + type: DawInstrumentMachineCircuitboard + components: + - pos: -5.5108967,16.662521 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1605 + type: EuphoniumInstrument + components: + - pos: -5.4796467,16.568771 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1606 + type: TubaInstrument + components: + - pos: -5.5,15.5 + parent: 30 + type: Transform +- uid: 1607 + type: SynthesizerInstrument + components: + - pos: -5.4952717,16.521896 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1608 + type: SignToolStorage + components: + - pos: -12.5,12.5 + parent: 30 + type: Transform +- uid: 1609 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -12.5,0.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 1610 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 1611 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -8.5,1.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 1612 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -8.5,3.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 1613 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 1614 + type: CableApcExtension + components: + - pos: 10.5,11.5 + parent: 30 + type: Transform +- uid: 1615 + type: Table + components: + - pos: 15.5,17.5 + parent: 30 + type: Transform +- uid: 1616 + type: WeaponCapacitorRecharger + components: + - pos: 14.5,19.5 + parent: 30 + type: Transform + - containers: + charger-slot: !type:ContainerSlot {} + type: ContainerContainer +- uid: 1617 + type: SpawnVehicleSecway + components: + - pos: 15.5,13.5 + parent: 30 + type: Transform +- uid: 1618 + type: KitchenMicrowave + components: + - pos: 13.5,19.5 + parent: 30 + type: Transform + - containers: + microwave_entity_container: !type:Container + ents: [] + type: ContainerContainer +- uid: 1619 + type: SignArmory + components: + - pos: 10.5,14.5 + parent: 30 + type: Transform +- uid: 1620 + type: SpawnPointWarden + components: + - pos: 11.5,13.5 + parent: 30 + type: Transform +- uid: 1621 + type: Table + components: + - pos: 15.5,12.5 + parent: 30 + type: Transform +- uid: 1622 + type: VehicleKeySecway + components: + - pos: 15.46822,12.503206 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1623 + type: WeaponCapacitorRecharger + components: + - pos: 8.5,11.5 + parent: 30 + type: Transform + - containers: + charger-slot: !type:ContainerSlot {} + type: ContainerContainer +- uid: 1624 + type: Table + components: + - pos: 9.5,11.5 + parent: 30 + type: Transform +- uid: 1625 + type: BoxHandcuff + components: + - pos: 15.6194935,19.560446 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 1626 + type: BoxBeanbag + components: + - pos: 10.505729,16.710806 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 1627 + type: Table + components: + - pos: 14.5,19.5 + parent: 30 + type: Transform +- uid: 1628 + type: WeaponShotgunKammerer + components: + - pos: 10.490104,16.41393 + parent: 30 + type: Transform + - unspawnedCount: 4 + type: BallisticAmmoProvider + - canCollide: False + type: Physics + - containers: + ballistic-ammo: !type:Container + ents: [] + type: ContainerContainer +- uid: 1629 + type: Table + components: + - pos: 15.5,19.5 + parent: 30 + type: Transform +- uid: 1630 + type: CableApcExtension + components: + - pos: 8.5,11.5 + parent: 30 + type: Transform +- uid: 1631 + type: BedsheetOrange + components: + - pos: 9.5,5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1632 + type: WardrobePrisonFilled + components: + - pos: 11.5,5.5 + parent: 30 + type: Transform +- uid: 1633 + type: WindowAlmayer + components: + - pos: 13.5,12.5 + parent: 30 + type: Transform +- uid: 1634 + type: TableReinforced + components: + - pos: 12.5,11.5 + parent: 30 + type: Transform +- uid: 1635 + type: TableReinforced + components: + - pos: 11.5,11.5 + parent: 30 + type: Transform +- uid: 1636 + type: Grille + components: + - pos: 13.5,12.5 + parent: 30 + type: Transform +- uid: 1637 + type: SpawnPointSecurityOfficer + components: + - pos: 13.5,16.5 + parent: 30 + type: Transform +- uid: 1638 + type: Grille + components: + - pos: 10.5,11.5 + parent: 30 + type: Transform +- uid: 1639 + type: Carpet + components: + - rot: -1.5707963267948966 rad + pos: 3.5,15.5 + parent: 30 + type: Transform +- uid: 1640 + type: SpawnPointHeadOfSecurity + components: + - pos: 4.5,16.5 + parent: 30 + type: Transform +- uid: 1641 + type: ComputerSurveillanceCameraMonitor + components: + - pos: 2.5,17.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 1642 + type: LockerHeadOfSecurityFilled + components: + - pos: 5.5,17.5 + parent: 30 + type: Transform + - containers: + entity_storage: !type:Container + ents: + - 1511 + type: ContainerContainer +- uid: 1643 + type: BoxZiptie + components: + - pos: 15.3694935,19.685446 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 1644 + type: TrashBananaPeel + components: + - pos: -7.533994,15.330118 + parent: 30 + type: Transform +- uid: 1645 + type: LampBanana + components: + - pos: -7.362119,13.986368 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1646 + type: FoodBanana + components: + - pos: -7.690244,13.673868 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1647 + type: FoodBanana + components: + - pos: -7.580869,13.642618 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1648 + type: FoodBanana + components: + - pos: -7.393369,13.611368 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1649 + type: FoodPieBananaCream + components: + - pos: -7.627744,13.736368 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1650 + type: FoodPieBananaCream + components: + - pos: -7.471494,13.720743 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1651 + type: FoodPieBananaCream + components: + - pos: -7.362119,13.720743 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1652 + type: ClothingHeadHatMimesoft + components: + - pos: -5.565244,13.830118 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1653 + type: BedsheetMime + components: + - pos: -5.5,13.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1654 + type: LockerSecurityFilled + components: + - pos: 15.5,16.5 + parent: 30 + type: Transform +- uid: 1655 + type: WardrobePrisonFilled + components: + - pos: 5.5,5.5 + parent: 30 + type: Transform +- uid: 1656 + type: BedsheetOrange + components: + - pos: 6.5,5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1657 + type: WardrobePrisonFilled + components: + - pos: 8.5,5.5 + parent: 30 + type: Transform +- uid: 1658 + type: WindowAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 10.5,11.5 + parent: 30 + type: Transform +- uid: 1659 + type: Grille + components: + - pos: -11.5,21.5 + parent: 30 + type: Transform +- uid: 1660 + type: PosterContrabandHackingGuide + components: + - pos: -11.5,17.5 + parent: 30 + type: Transform +- uid: 1661 + type: VendingMachineYouTool + components: + - pos: -10.5,16.5 + parent: 30 + type: Transform +- uid: 1662 + type: Table + components: + - pos: -11.5,16.5 + parent: 30 + type: Transform +- uid: 1663 + type: Table + components: + - pos: -12.5,16.5 + parent: 30 + type: Transform +- uid: 1664 + type: Rack + components: + - pos: -9.5,16.5 + parent: 30 + type: Transform +- uid: 1665 + type: VendingMachineCola + components: + - pos: -13.5,13.5 + parent: 30 + type: Transform +- uid: 1666 + type: VendingMachineDiscount + components: + - pos: -13.5,14.5 + parent: 30 + type: Transform +- uid: 1667 + type: LockerWeldingSuppliesFilled + components: + - pos: -9.5,13.5 + parent: 30 + type: Transform +- uid: 1668 + type: ClothingHandsGlovesColorYellow + components: + - pos: -9.484882,16.52652 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1669 + type: PosterContrabandMissingGloves + components: + - pos: -9.5,17.5 + parent: 30 + type: Transform +- uid: 1670 + type: WindowAlmayer + components: + - pos: -10.5,21.5 + parent: 30 + type: Transform +- uid: 1671 + type: Grille + components: + - pos: -10.5,21.5 + parent: 30 + type: Transform +- uid: 1672 + type: CableMV + components: + - pos: 30.5,4.5 + parent: 30 + type: Transform +- uid: 1673 + type: ClothingBeltUtilityFilled + components: + - pos: -12.471369,16.573904 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 1674 + type: DisposalUnit + components: + - pos: -11.5,13.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 1675 + type: SpawnPointSecurityOfficer + components: + - pos: 13.5,17.5 + parent: 30 + type: Transform +- uid: 1676 + type: ChairOfficeLight + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 30 + type: Transform +- uid: 1677 + type: ClothingBeltHolster + components: + - pos: -1.612056,25.655512 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 1678 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -26.5,1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 1679 + type: WallWeaponCapacitorRecharger + components: + - pos: 11.5,14.5 + parent: 30 + type: Transform + - containers: + charger-slot: !type:ContainerSlot {} + type: ContainerContainer +- uid: 1680 + type: CableApcExtension + components: + - pos: 7.5,8.5 + parent: 30 + type: Transform +- uid: 1681 + type: CableApcExtension + components: + - pos: 11.5,11.5 + parent: 30 + type: Transform +- uid: 1682 + type: PosterLegitUeNo + components: + - pos: 21.5,22.5 + parent: 30 + type: Transform +- uid: 1683 + type: WallAlmayer + components: + - pos: -0.5,4.5 + parent: 30 + type: Transform +- uid: 1684 + type: PosterLegitNanotrasenLogo + components: + - pos: 16.5,22.5 + parent: 30 + type: Transform +- uid: 1685 + type: PosterLegitIan + components: + - pos: 29.5,-2.5 + parent: 30 + type: Transform +- uid: 1686 + type: Grille + components: + - pos: 6.5,17.5 + parent: 30 + type: Transform +- uid: 1687 + type: TableReinforced + components: + - pos: -19.5,2.5 + parent: 30 + type: Transform +- uid: 1688 + type: Grille + components: + - pos: 8.5,4.5 + parent: 30 + type: Transform +- uid: 1689 + type: PonderingOrb + components: + - pos: 4.5,24.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1690 + type: WallAlmayer + components: + - pos: 9.5,22.5 + parent: 30 + type: Transform +- uid: 1691 + type: WallAlmayer + components: + - pos: 10.5,22.5 + parent: 30 + type: Transform +- uid: 1692 + type: WallAlmayer + components: + - pos: 8.5,22.5 + parent: 30 + type: Transform +- uid: 1693 + type: AirlockGlassAlpha + components: + - pos: 8.5,23.5 + parent: 30 + type: Transform +- uid: 1694 + type: SubstationBasic + components: + - pos: 10.5,23.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1695 + type: SubstationBasic + components: + - pos: 25.5,18.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 1696 + type: WallAlmayer + components: + - pos: 25.5,19.5 + parent: 30 + type: Transform +- uid: 1697 + type: WallAlmayer + components: + - pos: 26.5,19.5 + parent: 30 + type: Transform +- uid: 1698 + type: WallAlmayer + components: + - pos: 27.5,19.5 + parent: 30 + type: Transform +- uid: 1699 + type: ChairOfficeDark + components: + - pos: 27.5,7.5 + parent: 30 + type: Transform +- uid: 1700 + type: ChairOfficeDark + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-2.5 + parent: 30 + type: Transform +- uid: 1701 + type: AirlockGlassAlpha + components: + - pos: 27.5,18.5 + parent: 30 + type: Transform +- uid: 1702 + type: APCBasic + components: + - pos: 32.5,5.5 + parent: 30 + type: Transform +- uid: 1703 + type: APCBasic + components: + - pos: 24.5,4.5 + parent: 30 + type: Transform +- uid: 1704 + type: APCBasic + components: + - pos: 26.5,-0.5 + parent: 30 + type: Transform +- uid: 1705 + type: CableMV + components: + - pos: 35.5,-1.5 + parent: 30 + type: Transform +- uid: 1706 + type: CableMV + components: + - pos: 35.5,-2.5 + parent: 30 + type: Transform +- uid: 1707 + type: CableMV + components: + - pos: 34.5,-2.5 + parent: 30 + type: Transform +- uid: 1708 + type: CableMV + components: + - pos: 33.5,-2.5 + parent: 30 + type: Transform +- uid: 1709 + type: CableMV + components: + - pos: 32.5,-2.5 + parent: 30 + type: Transform +- uid: 1710 + type: CableMV + components: + - pos: 31.5,-2.5 + parent: 30 + type: Transform +- uid: 1711 + type: CableMV + components: + - pos: 31.5,-1.5 + parent: 30 + type: Transform +- uid: 1712 + type: CableMV + components: + - pos: 31.5,-0.5 + parent: 30 + type: Transform +- uid: 1713 + type: CableMV + components: + - pos: 31.5,0.5 + parent: 30 + type: Transform +- uid: 1714 + type: CableMV + components: + - pos: 36.5,-2.5 + parent: 30 + type: Transform +- uid: 1715 + type: CableMV + components: + - pos: 31.5,2.5 + parent: 30 + type: Transform +- uid: 1716 + type: CableMV + components: + - pos: 32.5,2.5 + parent: 30 + type: Transform +- uid: 1717 + type: Grille + components: + - pos: 12.5,4.5 + parent: 30 + type: Transform +- uid: 1718 + type: CableMV + components: + - pos: 32.5,4.5 + parent: 30 + type: Transform +- uid: 1719 + type: CableMV + components: + - pos: 32.5,5.5 + parent: 30 + type: Transform +- uid: 1720 + type: CableMV + components: + - pos: 30.5,2.5 + parent: 30 + type: Transform +- uid: 1721 + type: CableMV + components: + - pos: 29.5,2.5 + parent: 30 + type: Transform +- uid: 1722 + type: CableMV + components: + - pos: 28.5,2.5 + parent: 30 + type: Transform +- uid: 1723 + type: CableMV + components: + - pos: 28.5,1.5 + parent: 30 + type: Transform +- uid: 1724 + type: CableMV + components: + - pos: 28.5,0.5 + parent: 30 + type: Transform +- uid: 1725 + type: CableMV + components: + - pos: 28.5,-0.5 + parent: 30 + type: Transform +- uid: 1726 + type: CableMV + components: + - pos: 28.5,-1.5 + parent: 30 + type: Transform +- uid: 1727 + type: CableMV + components: + - pos: 27.5,-1.5 + parent: 30 + type: Transform +- uid: 1728 + type: CableMV + components: + - pos: 26.5,-1.5 + parent: 30 + type: Transform +- uid: 1729 + type: CableMV + components: + - pos: 26.5,-0.5 + parent: 30 + type: Transform +- uid: 1730 + type: CableMV + components: + - pos: 27.5,0.5 + parent: 30 + type: Transform +- uid: 1731 + type: CableMV + components: + - pos: 26.5,0.5 + parent: 30 + type: Transform +- uid: 1732 + type: Grille + components: + - pos: 11.5,4.5 + parent: 30 + type: Transform +- uid: 1733 + type: CrateEmptySpawner + components: + - pos: -18.5,20.5 + parent: 30 + type: Transform +- uid: 1734 + type: CableMV + components: + - pos: 25.5,2.5 + parent: 30 + type: Transform +- uid: 1735 + type: CableMV + components: + - pos: 24.5,2.5 + parent: 30 + type: Transform +- uid: 1736 + type: CableMV + components: + - pos: 24.5,3.5 + parent: 30 + type: Transform +- uid: 1737 + type: CableMV + components: + - pos: 24.5,4.5 + parent: 30 + type: Transform +- uid: 1738 + type: CableApcExtension + components: + - pos: 24.5,4.5 + parent: 30 + type: Transform +- uid: 1739 + type: CableApcExtension + components: + - pos: 24.5,3.5 + parent: 30 + type: Transform +- uid: 1740 + type: CableApcExtension + components: + - pos: 24.5,2.5 + parent: 30 + type: Transform +- uid: 1741 + type: CableApcExtension + components: + - pos: 25.5,2.5 + parent: 30 + type: Transform +- uid: 1742 + type: CableApcExtension + components: + - pos: 23.5,2.5 + parent: 30 + type: Transform +- uid: 1743 + type: CableApcExtension + components: + - pos: 22.5,2.5 + parent: 30 + type: Transform +- uid: 1744 + type: CableApcExtension + components: + - pos: 21.5,2.5 + parent: 30 + type: Transform +- uid: 1745 + type: CableApcExtension + components: + - pos: 22.5,3.5 + parent: 30 + type: Transform +- uid: 1746 + type: CableApcExtension + components: + - pos: 22.5,4.5 + parent: 30 + type: Transform +- uid: 1747 + type: CableApcExtension + components: + - pos: 22.5,5.5 + parent: 30 + type: Transform +- uid: 1748 + type: CableApcExtension + components: + - pos: 22.5,6.5 + parent: 30 + type: Transform +- uid: 1749 + type: CableApcExtension + components: + - pos: 22.5,7.5 + parent: 30 + type: Transform +- uid: 1750 + type: CableApcExtension + components: + - pos: 22.5,8.5 + parent: 30 + type: Transform +- uid: 1751 + type: CableApcExtension + components: + - pos: 23.5,7.5 + parent: 30 + type: Transform +- uid: 1752 + type: CableApcExtension + components: + - pos: 26.5,2.5 + parent: 30 + type: Transform +- uid: 1753 + type: CableApcExtension + components: + - pos: 27.5,2.5 + parent: 30 + type: Transform +- uid: 1754 + type: CableApcExtension + components: + - pos: 28.5,2.5 + parent: 30 + type: Transform +- uid: 1755 + type: CableApcExtension + components: + - pos: 28.5,3.5 + parent: 30 + type: Transform +- uid: 1756 + type: CableApcExtension + components: + - pos: 28.5,4.5 + parent: 30 + type: Transform +- uid: 1757 + type: CableApcExtension + components: + - pos: 28.5,5.5 + parent: 30 + type: Transform +- uid: 1758 + type: CableApcExtension + components: + - pos: 28.5,6.5 + parent: 30 + type: Transform +- uid: 1759 + type: CableApcExtension + components: + - pos: 28.5,7.5 + parent: 30 + type: Transform +- uid: 1760 + type: CableApcExtension + components: + - pos: 27.5,7.5 + parent: 30 + type: Transform +- uid: 1761 + type: CableApcExtension + components: + - pos: 28.5,1.5 + parent: 30 + type: Transform +- uid: 1762 + type: CableApcExtension + components: + - pos: 28.5,0.5 + parent: 30 + type: Transform +- uid: 1763 + type: CableApcExtension + components: + - pos: 25.5,1.5 + parent: 30 + type: Transform +- uid: 1764 + type: CableApcExtension + components: + - pos: 25.5,0.5 + parent: 30 + type: Transform +- uid: 1765 + type: CableApcExtension + components: + - pos: 22.5,1.5 + parent: 30 + type: Transform +- uid: 1766 + type: CableApcExtension + components: + - pos: 29.5,2.5 + parent: 30 + type: Transform +- uid: 1767 + type: CableApcExtension + components: + - pos: 30.5,2.5 + parent: 30 + type: Transform +- uid: 1768 + type: CableApcExtension + components: + - pos: 32.5,5.5 + parent: 30 + type: Transform +- uid: 1769 + type: CableApcExtension + components: + - pos: 32.5,4.5 + parent: 30 + type: Transform +- uid: 1770 + type: CableApcExtension + components: + - pos: 32.5,3.5 + parent: 30 + type: Transform +- uid: 1771 + type: CableApcExtension + components: + - pos: 32.5,2.5 + parent: 30 + type: Transform +- uid: 1772 + type: CableApcExtension + components: + - pos: 33.5,2.5 + parent: 30 + type: Transform +- uid: 1773 + type: CableApcExtension + components: + - pos: 34.5,2.5 + parent: 30 + type: Transform +- uid: 1774 + type: CableApcExtension + components: + - pos: 35.5,2.5 + parent: 30 + type: Transform +- uid: 1775 + type: CableApcExtension + components: + - pos: 36.5,2.5 + parent: 30 + type: Transform +- uid: 1776 + type: CableApcExtension + components: + - pos: 32.5,6.5 + parent: 30 + type: Transform +- uid: 1777 + type: CableApcExtension + components: + - pos: 32.5,7.5 + parent: 30 + type: Transform +- uid: 1778 + type: CableApcExtension + components: + - pos: 32.5,8.5 + parent: 30 + type: Transform +- uid: 1779 + type: CableApcExtension + components: + - pos: 32.5,9.5 + parent: 30 + type: Transform +- uid: 1780 + type: CableApcExtension + components: + - pos: 31.5,9.5 + parent: 30 + type: Transform +- uid: 1781 + type: CableApcExtension + components: + - pos: 33.5,7.5 + parent: 30 + type: Transform +- uid: 1782 + type: CableApcExtension + components: + - pos: 34.5,7.5 + parent: 30 + type: Transform +- uid: 1783 + type: CableApcExtension + components: + - pos: 35.5,7.5 + parent: 30 + type: Transform +- uid: 1784 + type: CableApcExtension + components: + - pos: 35.5,6.5 + parent: 30 + type: Transform +- uid: 1785 + type: CableApcExtension + components: + - pos: 36.5,6.5 + parent: 30 + type: Transform +- uid: 1786 + type: CableApcExtension + components: + - pos: 32.5,1.5 + parent: 30 + type: Transform +- uid: 1787 + type: CableApcExtension + components: + - pos: 32.5,0.5 + parent: 30 + type: Transform +- uid: 1788 + type: CableApcExtension + components: + - pos: 31.5,0.5 + parent: 30 + type: Transform +- uid: 1789 + type: CableApcExtension + components: + - pos: 31.5,-0.5 + parent: 30 + type: Transform +- uid: 1790 + type: CableApcExtension + components: + - pos: 31.5,-1.5 + parent: 30 + type: Transform +- uid: 1791 + type: CableApcExtension + components: + - pos: 31.5,-2.5 + parent: 30 + type: Transform +- uid: 1792 + type: CableApcExtension + components: + - pos: 31.5,-3.5 + parent: 30 + type: Transform +- uid: 1793 + type: CableApcExtension + components: + - pos: 31.5,-4.5 + parent: 30 + type: Transform +- uid: 1794 + type: CableApcExtension + components: + - pos: 31.5,-5.5 + parent: 30 + type: Transform +- uid: 1795 + type: CableApcExtension + components: + - pos: 32.5,-2.5 + parent: 30 + type: Transform +- uid: 1796 + type: CableApcExtension + components: + - pos: 33.5,-2.5 + parent: 30 + type: Transform +- uid: 1797 + type: CableApcExtension + components: + - pos: 34.5,-2.5 + parent: 30 + type: Transform +- uid: 1798 + type: CableApcExtension + components: + - pos: 35.5,-2.5 + parent: 30 + type: Transform +- uid: 1799 + type: APCHyperCapacity + components: + - pos: 20.5,25.5 + parent: 30 + type: Transform +- uid: 1800 + type: APCBasic + components: + - pos: 24.5,17.5 + parent: 30 + type: Transform +- uid: 1801 + type: APCBasic + components: + - rot: 1.5707963267948966 rad + pos: 13.5,7.5 + parent: 30 + type: Transform +- uid: 1802 + type: CableMV + components: + - pos: 6.5,21.5 + parent: 30 + type: Transform +- uid: 1803 + type: CableMV + components: + - pos: 20.5,25.5 + parent: 30 + type: Transform +- uid: 1804 + type: CableMV + components: + - pos: 20.5,24.5 + parent: 30 + type: Transform +- uid: 1805 + type: CableMV + components: + - pos: 20.5,23.5 + parent: 30 + type: Transform +- uid: 1806 + type: CableMV + components: + - pos: 20.5,22.5 + parent: 30 + type: Transform +- uid: 1807 + type: CableMV + components: + - pos: 20.5,21.5 + parent: 30 + type: Transform +- uid: 1808 + type: CableMV + components: + - pos: 21.5,21.5 + parent: 30 + type: Transform +- uid: 1809 + type: CableMV + components: + - pos: 22.5,21.5 + parent: 30 + type: Transform +- uid: 1810 + type: CableMV + components: + - pos: 23.5,21.5 + parent: 30 + type: Transform +- uid: 1811 + type: CableMV + components: + - pos: 24.5,21.5 + parent: 30 + type: Transform +- uid: 1812 + type: CableMV + components: + - pos: 25.5,21.5 + parent: 30 + type: Transform +- uid: 1813 + type: CableMV + components: + - pos: 26.5,21.5 + parent: 30 + type: Transform +- uid: 1814 + type: CableMV + components: + - pos: 26.5,20.5 + parent: 30 + type: Transform +- uid: 1815 + type: CableMV + components: + - pos: 27.5,20.5 + parent: 30 + type: Transform +- uid: 1816 + type: CableMV + components: + - pos: 28.5,20.5 + parent: 30 + type: Transform +- uid: 1817 + type: CableMV + components: + - pos: 28.5,19.5 + parent: 30 + type: Transform +- uid: 1818 + type: CableMV + components: + - pos: 28.5,18.5 + parent: 30 + type: Transform +- uid: 1819 + type: CableMV + components: + - pos: 27.5,18.5 + parent: 30 + type: Transform +- uid: 1820 + type: CableMV + components: + - pos: 26.5,18.5 + parent: 30 + type: Transform +- uid: 1821 + type: CableMV + components: + - pos: 25.5,18.5 + parent: 30 + type: Transform +- uid: 1822 + type: CableMV + components: + - pos: 28.5,17.5 + parent: 30 + type: Transform +- uid: 1823 + type: CableMV + components: + - pos: 28.5,16.5 + parent: 30 + type: Transform +- uid: 1824 + type: CableMV + components: + - pos: 28.5,15.5 + parent: 30 + type: Transform +- uid: 1825 + type: CableMV + components: + - pos: 28.5,14.5 + parent: 30 + type: Transform +- uid: 1826 + type: CableMV + components: + - pos: 28.5,13.5 + parent: 30 + type: Transform +- uid: 1827 + type: CableMV + components: + - pos: 28.5,12.5 + parent: 30 + type: Transform +- uid: 1828 + type: CableMV + components: + - pos: 28.5,11.5 + parent: 30 + type: Transform +- uid: 1829 + type: CableMV + components: + - pos: 28.5,10.5 + parent: 30 + type: Transform +- uid: 1830 + type: CableMV + components: + - pos: 27.5,10.5 + parent: 30 + type: Transform +- uid: 1831 + type: CableMV + components: + - pos: 26.5,10.5 + parent: 30 + type: Transform +- uid: 1832 + type: CableMV + components: + - pos: 25.5,10.5 + parent: 30 + type: Transform +- uid: 1833 + type: CableMV + components: + - pos: 24.5,10.5 + parent: 30 + type: Transform +- uid: 1834 + type: CableMV + components: + - pos: 23.5,10.5 + parent: 30 + type: Transform +- uid: 1835 + type: CableMV + components: + - pos: 22.5,10.5 + parent: 30 + type: Transform +- uid: 1836 + type: CableMV + components: + - pos: 21.5,10.5 + parent: 30 + type: Transform +- uid: 1837 + type: CableMV + components: + - pos: 20.5,10.5 + parent: 30 + type: Transform +- uid: 1838 + type: CableMV + components: + - pos: 19.5,10.5 + parent: 30 + type: Transform +- uid: 1839 + type: CableMV + components: + - pos: 19.5,11.5 + parent: 30 + type: Transform +- uid: 1840 + type: CableMV + components: + - pos: 19.5,12.5 + parent: 30 + type: Transform +- uid: 1841 + type: CableMV + components: + - pos: 19.5,13.5 + parent: 30 + type: Transform +- uid: 1842 + type: CableMV + components: + - pos: 19.5,14.5 + parent: 30 + type: Transform +- uid: 1843 + type: CableMV + components: + - pos: 19.5,15.5 + parent: 30 + type: Transform +- uid: 1844 + type: CableMV + components: + - pos: 20.5,15.5 + parent: 30 + type: Transform +- uid: 1845 + type: CableMV + components: + - pos: 21.5,15.5 + parent: 30 + type: Transform +- uid: 1846 + type: CableMV + components: + - pos: 22.5,15.5 + parent: 30 + type: Transform +- uid: 1847 + type: CableMV + components: + - pos: 23.5,15.5 + parent: 30 + type: Transform +- uid: 1848 + type: CableMV + components: + - pos: 24.5,15.5 + parent: 30 + type: Transform +- uid: 1849 + type: CableMV + components: + - pos: 24.5,16.5 + parent: 30 + type: Transform +- uid: 1850 + type: CableMV + components: + - pos: 24.5,17.5 + parent: 30 + type: Transform +- uid: 1851 + type: CableMV + components: + - pos: 19.5,16.5 + parent: 30 + type: Transform +- uid: 1852 + type: CableMV + components: + - pos: 19.5,17.5 + parent: 30 + type: Transform +- uid: 1853 + type: CableMV + components: + - pos: 19.5,18.5 + parent: 30 + type: Transform +- uid: 1854 + type: CableMV + components: + - pos: 19.5,19.5 + parent: 30 + type: Transform +- uid: 1855 + type: CableMV + components: + - pos: 19.5,20.5 + parent: 30 + type: Transform +- uid: 1856 + type: CableMV + components: + - pos: 19.5,21.5 + parent: 30 + type: Transform +- uid: 1857 + type: CableApcExtension + components: + - pos: 20.5,25.5 + parent: 30 + type: Transform +- uid: 1858 + type: CableApcExtension + components: + - pos: 20.5,24.5 + parent: 30 + type: Transform +- uid: 1859 + type: CableApcExtension + components: + - pos: 19.5,24.5 + parent: 30 + type: Transform +- uid: 1860 + type: CableApcExtension + components: + - pos: 18.5,24.5 + parent: 30 + type: Transform +- uid: 1861 + type: CableApcExtension + components: + - pos: 18.5,25.5 + parent: 30 + type: Transform +- uid: 1862 + type: CableApcExtension + components: + - pos: 18.5,26.5 + parent: 30 + type: Transform +- uid: 1863 + type: CableApcExtension + components: + - pos: 18.5,27.5 + parent: 30 + type: Transform +- uid: 1864 + type: CableApcExtension + components: + - pos: 18.5,23.5 + parent: 30 + type: Transform +- uid: 1865 + type: CableApcExtension + components: + - pos: 18.5,22.5 + parent: 30 + type: Transform +- uid: 1866 + type: CableApcExtension + components: + - pos: 18.5,21.5 + parent: 30 + type: Transform +- uid: 1867 + type: CableApcExtension + components: + - pos: 18.5,20.5 + parent: 30 + type: Transform +- uid: 1868 + type: CableApcExtension + components: + - pos: 17.5,21.5 + parent: 30 + type: Transform +- uid: 1869 + type: CableApcExtension + components: + - pos: 16.5,21.5 + parent: 30 + type: Transform +- uid: 1870 + type: CableApcExtension + components: + - pos: 15.5,21.5 + parent: 30 + type: Transform +- uid: 1871 + type: CableApcExtension + components: + - pos: 14.5,21.5 + parent: 30 + type: Transform +- uid: 1872 + type: CableApcExtension + components: + - pos: 19.5,21.5 + parent: 30 + type: Transform +- uid: 1873 + type: CableApcExtension + components: + - pos: 20.5,21.5 + parent: 30 + type: Transform +- uid: 1874 + type: CableApcExtension + components: + - pos: 21.5,21.5 + parent: 30 + type: Transform +- uid: 1875 + type: CableApcExtension + components: + - pos: 22.5,21.5 + parent: 30 + type: Transform +- uid: 1876 + type: CableApcExtension + components: + - pos: 23.5,21.5 + parent: 30 + type: Transform +- uid: 1877 + type: CableApcExtension + components: + - pos: 24.5,21.5 + parent: 30 + type: Transform +- uid: 1878 + type: CableApcExtension + components: + - pos: 25.5,21.5 + parent: 30 + type: Transform +- uid: 1879 + type: CableApcExtension + components: + - pos: 26.5,21.5 + parent: 30 + type: Transform +- uid: 1880 + type: CableApcExtension + components: + - pos: 26.5,20.5 + parent: 30 + type: Transform +- uid: 1881 + type: CableApcExtension + components: + - pos: 27.5,20.5 + parent: 30 + type: Transform +- uid: 1882 + type: CableApcExtension + components: + - pos: 28.5,20.5 + parent: 30 + type: Transform +- uid: 1883 + type: CableApcExtension + components: + - pos: 28.5,19.5 + parent: 30 + type: Transform +- uid: 1884 + type: CableApcExtension + components: + - pos: 18.5,19.5 + parent: 30 + type: Transform +- uid: 1885 + type: CableApcExtension + components: + - pos: 18.5,18.5 + parent: 30 + type: Transform +- uid: 1886 + type: CableApcExtension + components: + - pos: 18.5,17.5 + parent: 30 + type: Transform +- uid: 1887 + type: CableApcExtension + components: + - pos: 18.5,16.5 + parent: 30 + type: Transform +- uid: 1888 + type: CableApcExtension + components: + - pos: 18.5,15.5 + parent: 30 + type: Transform +- uid: 1889 + type: CableApcExtension + components: + - pos: 18.5,14.5 + parent: 30 + type: Transform +- uid: 1890 + type: CableApcExtension + components: + - pos: 18.5,13.5 + parent: 30 + type: Transform +- uid: 1891 + type: CableApcExtension + components: + - pos: 18.5,12.5 + parent: 30 + type: Transform +- uid: 1892 + type: CableApcExtension + components: + - pos: 24.5,17.5 + parent: 30 + type: Transform +- uid: 1893 + type: CableApcExtension + components: + - pos: 24.5,16.5 + parent: 30 + type: Transform +- uid: 1894 + type: CableApcExtension + components: + - pos: 24.5,15.5 + parent: 30 + type: Transform +- uid: 1895 + type: CableApcExtension + components: + - pos: 24.5,14.5 + parent: 30 + type: Transform +- uid: 1896 + type: CableApcExtension + components: + - pos: 24.5,13.5 + parent: 30 + type: Transform +- uid: 1897 + type: CableApcExtension + components: + - pos: 24.5,12.5 + parent: 30 + type: Transform +- uid: 1898 + type: CableApcExtension + components: + - pos: 23.5,16.5 + parent: 30 + type: Transform +- uid: 1899 + type: CableApcExtension + components: + - pos: 22.5,16.5 + parent: 30 + type: Transform +- uid: 1900 + type: CableApcExtension + components: + - pos: 21.5,16.5 + parent: 30 + type: Transform +- uid: 1901 + type: CableApcExtension + components: + - pos: 21.5,17.5 + parent: 30 + type: Transform +- uid: 1902 + type: CableApcExtension + components: + - pos: 21.5,18.5 + parent: 30 + type: Transform +- uid: 1903 + type: CableApcExtension + components: + - pos: 22.5,18.5 + parent: 30 + type: Transform +- uid: 1904 + type: CableApcExtension + components: + - pos: 22.5,19.5 + parent: 30 + type: Transform +- uid: 1905 + type: CableApcExtension + components: + - pos: 23.5,19.5 + parent: 30 + type: Transform +- uid: 1906 + type: CableApcExtension + components: + - pos: 25.5,12.5 + parent: 30 + type: Transform +- uid: 1907 + type: CableApcExtension + components: + - pos: 26.5,12.5 + parent: 30 + type: Transform +- uid: 1908 + type: CableApcExtension + components: + - pos: 26.5,11.5 + parent: 30 + type: Transform +- uid: 1909 + type: CableApcExtension + components: + - pos: 26.5,10.5 + parent: 30 + type: Transform +- uid: 1910 + type: CableApcExtension + components: + - pos: 25.5,10.5 + parent: 30 + type: Transform +- uid: 1911 + type: CableApcExtension + components: + - pos: 24.5,10.5 + parent: 30 + type: Transform +- uid: 1912 + type: CableApcExtension + components: + - pos: 23.5,10.5 + parent: 30 + type: Transform +- uid: 1913 + type: CableApcExtension + components: + - pos: 22.5,10.5 + parent: 30 + type: Transform +- uid: 1914 + type: CableApcExtension + components: + - pos: 21.5,10.5 + parent: 30 + type: Transform +- uid: 1915 + type: CableApcExtension + components: + - pos: 20.5,10.5 + parent: 30 + type: Transform +- uid: 1916 + type: CableApcExtension + components: + - pos: 19.5,10.5 + parent: 30 + type: Transform +- uid: 1917 + type: CableApcExtension + components: + - pos: 19.5,9.5 + parent: 30 + type: Transform +- uid: 1918 + type: CableApcExtension + components: + - pos: 27.5,10.5 + parent: 30 + type: Transform +- uid: 1919 + type: CableApcExtension + components: + - pos: 28.5,10.5 + parent: 30 + type: Transform +- uid: 1920 + type: CableApcExtension + components: + - pos: 28.5,11.5 + parent: 30 + type: Transform +- uid: 1921 + type: CableApcExtension + components: + - pos: 28.5,12.5 + parent: 30 + type: Transform +- uid: 1922 + type: CableApcExtension + components: + - pos: 28.5,13.5 + parent: 30 + type: Transform +- uid: 1923 + type: CableApcExtension + components: + - pos: 28.5,14.5 + parent: 30 + type: Transform +- uid: 1924 + type: CableApcExtension + components: + - pos: 28.5,15.5 + parent: 30 + type: Transform +- uid: 1925 + type: CableApcExtension + components: + - pos: 28.5,16.5 + parent: 30 + type: Transform +- uid: 1926 + type: CableMV + components: + - pos: 10.5,23.5 + parent: 30 + type: Transform +- uid: 1927 + type: CableMV + components: + - pos: 9.5,23.5 + parent: 30 + type: Transform +- uid: 1928 + type: CableMV + components: + - pos: 8.5,23.5 + parent: 30 + type: Transform +- uid: 1929 + type: CableMV + components: + - pos: 7.5,23.5 + parent: 30 + type: Transform +- uid: 1930 + type: CableMV + components: + - pos: 6.5,23.5 + parent: 30 + type: Transform +- uid: 1931 + type: CableMV + components: + - pos: 6.5,22.5 + parent: 30 + type: Transform +- uid: 1932 + type: CableMV + components: + - pos: 5.5,22.5 + parent: 30 + type: Transform +- uid: 1933 + type: CableMV + components: + - pos: 4.5,22.5 + parent: 30 + type: Transform +- uid: 1934 + type: CableMV + components: + - pos: 3.5,22.5 + parent: 30 + type: Transform +- uid: 1935 + type: AirlockGlassAlpha + components: + - pos: 2.5,8.5 + parent: 30 + type: Transform +- uid: 1936 + type: CableMV + components: + - pos: 18.5,10.5 + parent: 30 + type: Transform +- uid: 1937 + type: CableMV + components: + - pos: 18.5,9.5 + parent: 30 + type: Transform +- uid: 1938 + type: CableMV + components: + - pos: 18.5,8.5 + parent: 30 + type: Transform +- uid: 1939 + type: CableMV + components: + - pos: 18.5,7.5 + parent: 30 + type: Transform +- uid: 1940 + type: CableMV + components: + - pos: 18.5,6.5 + parent: 30 + type: Transform +- uid: 1941 + type: CableMV + components: + - pos: 18.5,5.5 + parent: 30 + type: Transform +- uid: 1942 + type: CableMV + components: + - pos: 18.5,4.5 + parent: 30 + type: Transform +- uid: 1943 + type: CableMV + components: + - pos: 18.5,3.5 + parent: 30 + type: Transform +- uid: 1944 + type: CableMV + components: + - pos: 17.5,3.5 + parent: 30 + type: Transform +- uid: 1945 + type: CableMV + components: + - pos: 16.5,3.5 + parent: 30 + type: Transform +- uid: 1946 + type: CableMV + components: + - pos: 15.5,3.5 + parent: 30 + type: Transform +- uid: 1947 + type: CableMV + components: + - pos: 14.5,3.5 + parent: 30 + type: Transform +- uid: 1948 + type: CableMV + components: + - pos: 14.5,4.5 + parent: 30 + type: Transform +- uid: 1949 + type: CableMV + components: + - pos: 14.5,5.5 + parent: 30 + type: Transform +- uid: 1950 + type: CableMV + components: + - pos: 14.5,6.5 + parent: 30 + type: Transform +- uid: 1951 + type: CableMV + components: + - pos: 14.5,7.5 + parent: 30 + type: Transform +- uid: 1952 + type: CableMV + components: + - pos: 13.5,7.5 + parent: 30 + type: Transform +- uid: 1953 + type: CableApcExtension + components: + - pos: 13.5,7.5 + parent: 30 + type: Transform +- uid: 1954 + type: CableApcExtension + components: + - pos: 14.5,7.5 + parent: 30 + type: Transform +- uid: 1955 + type: CableApcExtension + components: + - pos: 14.5,6.5 + parent: 30 + type: Transform +- uid: 1956 + type: CableApcExtension + components: + - pos: 14.5,5.5 + parent: 30 + type: Transform +- uid: 1957 + type: CableApcExtension + components: + - pos: 14.5,4.5 + parent: 30 + type: Transform +- uid: 1958 + type: CableApcExtension + components: + - pos: 14.5,3.5 + parent: 30 + type: Transform +- uid: 1959 + type: CableApcExtension + components: + - pos: 15.5,3.5 + parent: 30 + type: Transform +- uid: 1960 + type: CableApcExtension + components: + - pos: 16.5,3.5 + parent: 30 + type: Transform +- uid: 1961 + type: CableApcExtension + components: + - pos: 17.5,3.5 + parent: 30 + type: Transform +- uid: 1962 + type: CableApcExtension + components: + - pos: 18.5,3.5 + parent: 30 + type: Transform +- uid: 1963 + type: CableApcExtension + components: + - pos: 18.5,2.5 + parent: 30 + type: Transform +- uid: 1964 + type: CableApcExtension + components: + - pos: 18.5,4.5 + parent: 30 + type: Transform +- uid: 1965 + type: CableApcExtension + components: + - pos: 18.5,5.5 + parent: 30 + type: Transform +- uid: 1966 + type: CableApcExtension + components: + - pos: 18.5,6.5 + parent: 30 + type: Transform +- uid: 1967 + type: CableApcExtension + components: + - pos: 18.5,7.5 + parent: 30 + type: Transform +- uid: 1968 + type: CableApcExtension + components: + - pos: 18.5,8.5 + parent: 30 + type: Transform +- uid: 1969 + type: CableApcExtension + components: + - pos: 14.5,2.5 + parent: 30 + type: Transform +- uid: 1970 + type: CableApcExtension + components: + - pos: 13.5,2.5 + parent: 30 + type: Transform +- uid: 1971 + type: CableApcExtension + components: + - pos: 12.5,2.5 + parent: 30 + type: Transform +- uid: 1972 + type: CableApcExtension + components: + - pos: 11.5,2.5 + parent: 30 + type: Transform +- uid: 1973 + type: CableApcExtension + components: + - pos: 14.5,8.5 + parent: 30 + type: Transform +- uid: 1974 + type: WallAlmayer + components: + - pos: 1.5,18.5 + parent: 30 + type: Transform +- uid: 1975 + type: WallAlmayer + components: + - pos: 0.5,14.5 + parent: 30 + type: Transform +- uid: 1976 + type: TableWood + components: + - pos: 3.5,16.5 + parent: 30 + type: Transform +- uid: 1977 + type: WallAlmayer + components: + - pos: 1.5,14.5 + parent: 30 + type: Transform +- uid: 1978 + type: WallAlmayer + components: + - pos: -1.5,14.5 + parent: 30 + type: Transform +- uid: 1979 + type: WallAlmayer + components: + - pos: -0.5,14.5 + parent: 30 + type: Transform +- uid: 1980 + type: WallAlmayer + components: + - pos: 10.5,4.5 + parent: 30 + type: Transform +- uid: 1981 + type: ShuttersNormalOpen + components: + - pos: 6.5,4.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 3697 + type: SignalReceiver +- uid: 1982 + type: ShuttersNormalOpen + components: + - pos: 5.5,4.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 3697 + type: SignalReceiver +- uid: 1983 + type: ShuttersNormalOpen + components: + - pos: 9.5,4.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 3697 + type: SignalReceiver +- uid: 1984 + type: WallAlmayer + components: + - pos: 7.5,4.5 + parent: 30 + type: Transform +- uid: 1985 + type: ShuttersNormalOpen + components: + - pos: 8.5,4.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 3697 + type: SignalReceiver +- uid: 1986 + type: WallAlmayer + components: + - pos: 1.5,15.5 + parent: 30 + type: Transform +- uid: 1987 + type: CableApcExtension + components: + - pos: 2.5,5.5 + parent: 30 + type: Transform +- uid: 1988 + type: BoxFolderBlue + components: + - pos: 1.5802288,6.332681 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 1989 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: -1.5,12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 1990 + type: CableApcExtension + components: + - pos: -2.5,13.5 + parent: 30 + type: Transform +- uid: 1991 + type: CableMV + components: + - pos: -4.5,18.5 + parent: 30 + type: Transform +- uid: 1992 + type: CableMV + components: + - pos: -3.5,18.5 + parent: 30 + type: Transform +- uid: 1993 + type: WallAlmayer + components: + - pos: 4.5,7.5 + parent: 30 + type: Transform +- uid: 1994 + type: CableMV + components: + - pos: 33.5,2.5 + parent: 30 + type: Transform +- uid: 1995 + type: CableMV + components: + - pos: 26.5,3.5 + parent: 30 + type: Transform +- uid: 1996 + type: FoodNoodlesSpesslaw + components: + - pos: 3.4864788,6.660806 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 1997 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: 3.5,11.5 + parent: 30 + type: Transform +- uid: 1998 + type: WindowReinforcedDirectional + components: + - rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 30 + type: Transform +- uid: 1999 + type: TableWood + components: + - pos: 2.5,10.5 + parent: 30 + type: Transform +- uid: 2000 + type: TableWood + components: + - pos: 0.5,12.5 + parent: 30 + type: Transform +- uid: 2001 + type: TableWood + components: + - pos: -0.5,10.5 + parent: 30 + type: Transform +- uid: 2002 + type: TableWood + components: + - pos: 0.5,10.5 + parent: 30 + type: Transform +- uid: 2003 + type: ChairOfficeDark + components: + - rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 30 + type: Transform +- uid: 2004 + type: GasPipeStraight + components: + - pos: -3.5,9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2005 + type: CableApcExtension + components: + - pos: -2.5,11.5 + parent: 30 + type: Transform +- uid: 2006 + type: CableMV + components: + - pos: -2.5,17.5 + parent: 30 + type: Transform +- uid: 2007 + type: WindowReinforcedDirectional + components: + - rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 30 + type: Transform +- uid: 2008 + type: Grille + components: + - pos: -4.5,11.5 + parent: 30 + type: Transform +- uid: 2009 + type: Grille + components: + - pos: -4.5,10.5 + parent: 30 + type: Transform +- uid: 2010 + type: AirlockGlassAlpha + components: + - pos: -2.5,8.5 + parent: 30 + type: Transform +- uid: 2011 + type: CableApcExtension + components: + - pos: 2.5,8.5 + parent: 30 + type: Transform +- uid: 2012 + type: CableMV + components: + - pos: -2.5,14.5 + parent: 30 + type: Transform +- uid: 2013 + type: WindowAlmayer + components: + - pos: -4.5,10.5 + parent: 30 + type: Transform +- uid: 2014 + type: WindowAlmayer + components: + - pos: -1.5,8.5 + parent: 30 + type: Transform +- uid: 2015 + type: WindowAlmayer + components: + - pos: -3.5,8.5 + parent: 30 + type: Transform +- uid: 2016 + type: GasPipeStraight + components: + - pos: 14.5,12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2017 + type: APCBasic + components: + - pos: -12.5,17.5 + parent: 30 + type: Transform +- uid: 2018 + type: CableMV + components: + - pos: -12.5,17.5 + parent: 30 + type: Transform +- uid: 2019 + type: CableMV + components: + - pos: -12.5,18.5 + parent: 30 + type: Transform +- uid: 2020 + type: CableMV + components: + - pos: -11.5,18.5 + parent: 30 + type: Transform +- uid: 2021 + type: CableMV + components: + - pos: -10.5,18.5 + parent: 30 + type: Transform +- uid: 2022 + type: CableMV + components: + - pos: -9.5,18.5 + parent: 30 + type: Transform +- uid: 2023 + type: CableMV + components: + - pos: -8.5,18.5 + parent: 30 + type: Transform +- uid: 2024 + type: CableMV + components: + - pos: -6.5,18.5 + parent: 30 + type: Transform +- uid: 2025 + type: CableMV + components: + - pos: -7.5,18.5 + parent: 30 + type: Transform +- uid: 2026 + type: CableMV + components: + - pos: -5.5,18.5 + parent: 30 + type: Transform +- uid: 2027 + type: CableMV + components: + - pos: -5.5,19.5 + parent: 30 + type: Transform +- uid: 2028 + type: CableMV + components: + - pos: -5.5,20.5 + parent: 30 + type: Transform +- uid: 2029 + type: CableMV + components: + - pos: -5.5,22.5 + parent: 30 + type: Transform +- uid: 2030 + type: CableMV + components: + - pos: -5.5,21.5 + parent: 30 + type: Transform +- uid: 2031 + type: CableMV + components: + - pos: 2.5,22.5 + parent: 30 + type: Transform +- uid: 2032 + type: CableMV + components: + - pos: 1.5,22.5 + parent: 30 + type: Transform +- uid: 2033 + type: CableMV + components: + - pos: 0.5,22.5 + parent: 30 + type: Transform +- uid: 2034 + type: CableMV + components: + - pos: -0.5,22.5 + parent: 30 + type: Transform +- uid: 2035 + type: CableMV + components: + - pos: -1.5,22.5 + parent: 30 + type: Transform +- uid: 2036 + type: CableMV + components: + - pos: -2.5,22.5 + parent: 30 + type: Transform +- uid: 2037 + type: CableMV + components: + - pos: -3.5,22.5 + parent: 30 + type: Transform +- uid: 2038 + type: CableMV + components: + - pos: -4.5,22.5 + parent: 30 + type: Transform +- uid: 2039 + type: CableApcExtension + components: + - pos: -12.5,17.5 + parent: 30 + type: Transform +- uid: 2040 + type: CableApcExtension + components: + - pos: -12.5,16.5 + parent: 30 + type: Transform +- uid: 2041 + type: CableApcExtension + components: + - pos: -12.5,15.5 + parent: 30 + type: Transform +- uid: 2042 + type: CableApcExtension + components: + - pos: -12.5,14.5 + parent: 30 + type: Transform +- uid: 2043 + type: CableApcExtension + components: + - pos: -12.5,13.5 + parent: 30 + type: Transform +- uid: 2044 + type: CableApcExtension + components: + - pos: -12.5,18.5 + parent: 30 + type: Transform +- uid: 2045 + type: CableApcExtension + components: + - pos: -11.5,18.5 + parent: 30 + type: Transform +- uid: 2046 + type: CableApcExtension + components: + - pos: -9.5,18.5 + parent: 30 + type: Transform +- uid: 2047 + type: CableApcExtension + components: + - pos: -10.5,18.5 + parent: 30 + type: Transform +- uid: 2048 + type: CableApcExtension + components: + - pos: -8.5,18.5 + parent: 30 + type: Transform +- uid: 2049 + type: CableApcExtension + components: + - pos: -7.5,18.5 + parent: 30 + type: Transform +- uid: 2050 + type: CableApcExtension + components: + - pos: -6.5,18.5 + parent: 30 + type: Transform +- uid: 2051 + type: CableApcExtension + components: + - pos: -6.5,17.5 + parent: 30 + type: Transform +- uid: 2052 + type: CableApcExtension + components: + - pos: -6.5,16.5 + parent: 30 + type: Transform +- uid: 2053 + type: CableApcExtension + components: + - pos: -6.5,15.5 + parent: 30 + type: Transform +- uid: 2054 + type: CableApcExtension + components: + - pos: -6.5,13.5 + parent: 30 + type: Transform +- uid: 2055 + type: CableApcExtension + components: + - pos: -6.5,14.5 + parent: 30 + type: Transform +- uid: 2056 + type: CableApcExtension + components: + - pos: -6.5,12.5 + parent: 30 + type: Transform +- uid: 2057 + type: CableApcExtension + components: + - pos: -6.5,11.5 + parent: 30 + type: Transform +- uid: 2058 + type: CableApcExtension + components: + - pos: -8.5,11.5 + parent: 30 + type: Transform +- uid: 2059 + type: CableApcExtension + components: + - pos: -7.5,11.5 + parent: 30 + type: Transform +- uid: 2060 + type: CableApcExtension + components: + - pos: -9.5,11.5 + parent: 30 + type: Transform +- uid: 2061 + type: CableApcExtension + components: + - pos: -10.5,11.5 + parent: 30 + type: Transform +- uid: 2062 + type: CableApcExtension + components: + - pos: -10.5,12.5 + parent: 30 + type: Transform +- uid: 2063 + type: CableApcExtension + components: + - pos: -10.5,13.5 + parent: 30 + type: Transform +- uid: 2064 + type: CableApcExtension + components: + - pos: -10.5,14.5 + parent: 30 + type: Transform +- uid: 2065 + type: CableApcExtension + components: + - pos: -10.5,15.5 + parent: 30 + type: Transform +- uid: 2066 + type: CableApcExtension + components: + - pos: -11.5,15.5 + parent: 30 + type: Transform +- uid: 2067 + type: CableApcExtension + components: + - pos: -13.5,15.5 + parent: 30 + type: Transform +- uid: 2068 + type: CableApcExtension + components: + - pos: -9.5,15.5 + parent: 30 + type: Transform +- uid: 2069 + type: CableApcExtension + components: + - pos: -6.5,10.5 + parent: 30 + type: Transform +- uid: 2070 + type: CableApcExtension + components: + - pos: -6.5,9.5 + parent: 30 + type: Transform +- uid: 2071 + type: CableApcExtension + components: + - pos: -5.5,10.5 + parent: 30 + type: Transform +- uid: 2072 + type: CableApcExtension + components: + - pos: -10.5,10.5 + parent: 30 + type: Transform +- uid: 2073 + type: CableApcExtension + components: + - pos: -10.5,9.5 + parent: 30 + type: Transform +- uid: 2074 + type: CableApcExtension + components: + - pos: -10.5,8.5 + parent: 30 + type: Transform +- uid: 2075 + type: CableApcExtension + components: + - pos: -6.5,8.5 + parent: 30 + type: Transform +- uid: 2076 + type: CableApcExtension + components: + - pos: -11.5,10.5 + parent: 30 + type: Transform +- uid: 2077 + type: CableApcExtension + components: + - pos: -13.5,18.5 + parent: 30 + type: Transform +- uid: 2078 + type: CableApcExtension + components: + - pos: -5.5,18.5 + parent: 30 + type: Transform +- uid: 2079 + type: CableApcExtension + components: + - pos: -5.5,19.5 + parent: 30 + type: Transform +- uid: 2080 + type: GasPipeStraight + components: + - pos: 14.5,14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2081 + type: GasPipeStraight + components: + - pos: 14.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2082 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2083 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: 15.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2084 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2085 + type: GasVentScrubber + components: + - rot: 1.5707963267948966 rad + pos: 9.5,11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2086 + type: WallAlmayer + components: + - pos: 13.5,14.5 + parent: 30 + type: Transform +- uid: 2087 + type: CableApcExtension + components: + - pos: 14.5,13.5 + parent: 30 + type: Transform +- uid: 2088 + type: CableApcExtension + components: + - pos: 3.5,17.5 + parent: 30 + type: Transform +- uid: 2089 + type: CableMV + components: + - pos: 7.5,21.5 + parent: 30 + type: Transform +- uid: 2090 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 15.5,11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2091 + type: CableApcExtension + components: + - pos: 3.5,22.5 + parent: 30 + type: Transform +- uid: 2092 + type: CableApcExtension + components: + - pos: 2.5,22.5 + parent: 30 + type: Transform +- uid: 2093 + type: CableApcExtension + components: + - pos: 1.5,22.5 + parent: 30 + type: Transform +- uid: 2094 + type: CableApcExtension + components: + - pos: 0.5,22.5 + parent: 30 + type: Transform +- uid: 2095 + type: CableApcExtension + components: + - pos: -0.5,22.5 + parent: 30 + type: Transform +- uid: 2096 + type: CableApcExtension + components: + - pos: -1.5,22.5 + parent: 30 + type: Transform +- uid: 2097 + type: CableApcExtension + components: + - pos: -2.5,22.5 + parent: 30 + type: Transform +- uid: 2098 + type: CableApcExtension + components: + - pos: -3.5,22.5 + parent: 30 + type: Transform +- uid: 2099 + type: CableApcExtension + components: + - pos: -4.5,22.5 + parent: 30 + type: Transform +- uid: 2100 + type: CableApcExtension + components: + - pos: 4.5,22.5 + parent: 30 + type: Transform +- uid: 2101 + type: CableApcExtension + components: + - pos: 5.5,22.5 + parent: 30 + type: Transform +- uid: 2102 + type: CableApcExtension + components: + - pos: 6.5,22.5 + parent: 30 + type: Transform +- uid: 2103 + type: CableApcExtension + components: + - pos: 6.5,21.5 + parent: 30 + type: Transform +- uid: 2104 + type: CableApcExtension + components: + - pos: 7.5,21.5 + parent: 30 + type: Transform +- uid: 2105 + type: CableApcExtension + components: + - pos: 8.5,21.5 + parent: 30 + type: Transform +- uid: 2106 + type: CableApcExtension + components: + - pos: 9.5,21.5 + parent: 30 + type: Transform +- uid: 2107 + type: CableApcExtension + components: + - pos: 10.5,21.5 + parent: 30 + type: Transform +- uid: 2108 + type: CableApcExtension + components: + - pos: 6.5,23.5 + parent: 30 + type: Transform +- uid: 2109 + type: CableApcExtension + components: + - pos: 7.5,23.5 + parent: 30 + type: Transform +- uid: 2110 + type: CableApcExtension + components: + - pos: 8.5,23.5 + parent: 30 + type: Transform +- uid: 2111 + type: CableApcExtension + components: + - pos: 9.5,23.5 + parent: 30 + type: Transform +- uid: 2112 + type: CableApcExtension + components: + - pos: -0.5,23.5 + parent: 30 + type: Transform +- uid: 2113 + type: CableApcExtension + components: + - pos: -0.5,24.5 + parent: 30 + type: Transform +- uid: 2114 + type: CableApcExtension + components: + - pos: -0.5,25.5 + parent: 30 + type: Transform +- uid: 2115 + type: CableApcExtension + components: + - pos: -0.5,26.5 + parent: 30 + type: Transform +- uid: 2116 + type: CableApcExtension + components: + - pos: 0.5,25.5 + parent: 30 + type: Transform +- uid: 2117 + type: CableApcExtension + components: + - pos: 1.5,25.5 + parent: 30 + type: Transform +- uid: 2118 + type: CableApcExtension + components: + - pos: 2.5,25.5 + parent: 30 + type: Transform +- uid: 2119 + type: CableApcExtension + components: + - pos: -2.5,25.5 + parent: 30 + type: Transform +- uid: 2120 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 15.5,12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2121 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 15.5,14.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2122 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 15.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2123 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2124 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 14.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2125 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 11.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2126 + type: GasPipeStraight + components: + - pos: 10.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2127 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2128 + type: CableApcExtension + components: + - pos: 14.5,18.5 + parent: 30 + type: Transform +- uid: 2129 + type: CableApcExtension + components: + - pos: 13.5,18.5 + parent: 30 + type: Transform +- uid: 2130 + type: CableApcExtension + components: + - pos: 12.5,19.5 + parent: 30 + type: Transform +- uid: 2131 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: 12.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2132 + type: CableApcExtension + components: + - pos: 9.5,13.5 + parent: 30 + type: Transform +- uid: 2133 + type: CableApcExtension + components: + - pos: 7.5,13.5 + parent: 30 + type: Transform +- uid: 2134 + type: CableApcExtension + components: + - pos: 5.5,13.5 + parent: 30 + type: Transform +- uid: 2135 + type: CableApcExtension + components: + - pos: 5.5,15.5 + parent: 30 + type: Transform +- uid: 2136 + type: CableApcExtension + components: + - pos: 5.5,17.5 + parent: 30 + type: Transform +- uid: 2137 + type: CableApcExtension + components: + - pos: 4.5,17.5 + parent: 30 + type: Transform +- uid: 2138 + type: CableApcExtension + components: + - pos: 12.5,5.5 + parent: 30 + type: Transform +- uid: 2139 + type: CableApcExtension + components: + - pos: 11.5,13.5 + parent: 30 + type: Transform +- uid: 2140 + type: CableApcExtension + components: + - pos: 12.5,13.5 + parent: 30 + type: Transform +- uid: 2141 + type: GasPipeTJunction + components: + - pos: 12.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2142 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2143 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2144 + type: SheetSteel + components: + - pos: -15.504057,15.308662 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2145 + type: Table + components: + - pos: -16.5,13.5 + parent: 30 + type: Transform +- uid: 2146 + type: GasPipeBend + components: + - pos: 10.5,13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2147 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 9.5,14.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2148 + type: GasVentScrubber + components: + - pos: 9.5,16.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2149 + type: StoolBar + components: + - rot: 3.141592653589793 rad + pos: -14.5,-4.5 + parent: 30 + type: Transform +- uid: 2150 + type: StoolBar + components: + - rot: 3.141592653589793 rad + pos: -15.5,-4.5 + parent: 30 + type: Transform +- uid: 2151 + type: StoolBar + components: + - rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 30 + type: Transform +- uid: 2152 + type: Table + components: + - pos: -15.5,15.5 + parent: 30 + type: Transform +- uid: 2153 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2154 + type: ShuttersNormalOpen + components: + - pos: -15.5,-3.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 2158 + type: SignalReceiver +- uid: 2155 + type: GasPipeStraight + components: + - pos: 7.5,14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2156 + type: ClothingBeltUtilityFilled + components: + - pos: -23.483074,13.62109 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2157 + type: SheetGlass + components: + - pos: -15.504057,14.496162 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2158 + type: SignalButton + components: + - pos: -13.5,-1.5 + parent: 30 + type: Transform + - fixtures: [] + type: Fixtures + - outputs: + Pressed: + - port: Toggle + uid: 1379 + - port: Toggle + uid: 2154 + - port: Toggle + uid: 1380 + type: SignalTransmitter +- uid: 2159 + type: FirelockGlass + components: + - pos: -16.5,-3.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2160 + type: Pickaxe + components: + - pos: -31.48742,19.52734 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2161 + type: PartRodMetal + components: + - pos: -35.52964,15.553667 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2162 + type: WeldingFuelTankFull + components: + - pos: -16.5,22.5 + parent: 30 + type: Transform +- uid: 2163 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2164 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2165 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 5.5,9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2166 + type: SheetPlasteel + components: + - pos: -15.488432,13.777412 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2167 + type: Table + components: + - pos: -16.5,23.5 + parent: 30 + type: Transform +- uid: 2168 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -2.5,12.5 + parent: 30 + type: Transform +- uid: 2169 + type: WallAlmayer + components: + - pos: 8.5,18.5 + parent: 30 + type: Transform +- uid: 2170 + type: CableApcExtension + components: + - pos: 2.5,3.5 + parent: 30 + type: Transform +- uid: 2171 + type: CableApcExtension + components: + - pos: 1.5,3.5 + parent: 30 + type: Transform +- uid: 2172 + type: CableApcExtension + components: + - pos: 3.5,3.5 + parent: 30 + type: Transform +- uid: 2173 + type: CableApcExtension + components: + - pos: 4.5,3.5 + parent: 30 + type: Transform +- uid: 2174 + type: CableApcExtension + components: + - pos: 5.5,3.5 + parent: 30 + type: Transform +- uid: 2175 + type: CableApcExtension + components: + - pos: 6.5,3.5 + parent: 30 + type: Transform +- uid: 2176 + type: CableApcExtension + components: + - pos: 6.5,2.5 + parent: 30 + type: Transform +- uid: 2177 + type: CableApcExtension + components: + - pos: 7.5,2.5 + parent: 30 + type: Transform +- uid: 2178 + type: CableApcExtension + components: + - pos: 8.5,2.5 + parent: 30 + type: Transform +- uid: 2179 + type: CableApcExtension + components: + - pos: 1.5,2.5 + parent: 30 + type: Transform +- uid: 2180 + type: CableApcExtension + components: + - pos: 0.5,2.5 + parent: 30 + type: Transform +- uid: 2181 + type: CableApcExtension + components: + - pos: 3.5,2.5 + parent: 30 + type: Transform +- uid: 2182 + type: CableApcExtension + components: + - pos: -2.5,8.5 + parent: 30 + type: Transform +- uid: 2183 + type: CableApcExtension + components: + - pos: -2.5,7.5 + parent: 30 + type: Transform +- uid: 2184 + type: CableApcExtension + components: + - pos: -2.5,6.5 + parent: 30 + type: Transform +- uid: 2185 + type: CableApcExtension + components: + - pos: -2.5,5.5 + parent: 30 + type: Transform +- uid: 2186 + type: CableApcExtension + components: + - pos: -2.5,4.5 + parent: 30 + type: Transform +- uid: 2187 + type: CableApcExtension + components: + - pos: -1.5,5.5 + parent: 30 + type: Transform +- uid: 2188 + type: CableApcExtension + components: + - pos: -3.5,5.5 + parent: 30 + type: Transform +- uid: 2189 + type: CableApcExtension + components: + - pos: 26.5,-0.5 + parent: 30 + type: Transform +- uid: 2190 + type: CableApcExtension + components: + - pos: 26.5,-1.5 + parent: 30 + type: Transform +- uid: 2191 + type: CableApcExtension + components: + - pos: 25.5,-1.5 + parent: 30 + type: Transform +- uid: 2192 + type: CableApcExtension + components: + - pos: 27.5,-1.5 + parent: 30 + type: Transform +- uid: 2193 + type: CableApcExtension + components: + - pos: 28.5,-1.5 + parent: 30 + type: Transform +- uid: 2194 + type: CableApcExtension + components: + - pos: 28.5,-2.5 + parent: 30 + type: Transform +- uid: 2195 + type: CableApcExtension + components: + - pos: 28.5,-3.5 + parent: 30 + type: Transform +- uid: 2196 + type: CableApcExtension + components: + - pos: 28.5,-4.5 + parent: 30 + type: Transform +- uid: 2197 + type: CableApcExtension + components: + - pos: 27.5,-4.5 + parent: 30 + type: Transform +- uid: 2198 + type: CableApcExtension + components: + - pos: 26.5,-4.5 + parent: 30 + type: Transform +- uid: 2199 + type: CableApcExtension + components: + - pos: 25.5,-4.5 + parent: 30 + type: Transform +- uid: 2200 + type: CableApcExtension + components: + - pos: 25.5,-3.5 + parent: 30 + type: Transform +- uid: 2201 + type: CableApcExtension + components: + - pos: 25.5,-2.5 + parent: 30 + type: Transform +- uid: 2202 + type: CableApcExtension + components: + - pos: 28.5,-5.5 + parent: 30 + type: Transform +- uid: 2203 + type: CableApcExtension + components: + - pos: 28.5,-6.5 + parent: 30 + type: Transform +- uid: 2204 + type: CableApcExtension + components: + - pos: 28.5,-7.5 + parent: 30 + type: Transform +- uid: 2205 + type: CableApcExtension + components: + - pos: 28.5,-8.5 + parent: 30 + type: Transform +- uid: 2206 + type: CableApcExtension + components: + - pos: 27.5,-8.5 + parent: 30 + type: Transform +- uid: 2207 + type: CableApcExtension + components: + - pos: 26.5,-8.5 + parent: 30 + type: Transform +- uid: 2208 + type: CableApcExtension + components: + - pos: 25.5,-8.5 + parent: 30 + type: Transform +- uid: 2209 + type: CableHV + components: + - pos: 26.5,-10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 2210 + type: PoweredSmallLight + components: + - rot: 1.5707963267948966 rad + pos: 18.5,26.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2211 + type: PoweredSmallLight + components: + - pos: 22.5,19.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2212 + type: WallAlmayer + components: + - pos: -0.5,8.5 + parent: 30 + type: Transform +- uid: 2213 + type: WallAlmayer + components: + - pos: 4.5,14.5 + parent: 30 + type: Transform +- uid: 2214 + type: WindowAlmayer + components: + - pos: 6.5,17.5 + parent: 30 + type: Transform +- uid: 2215 + type: CableMV + components: + - pos: 12.5,21.5 + parent: 30 + type: Transform +- uid: 2216 + type: CableMV + components: + - pos: 31.5,4.5 + parent: 30 + type: Transform +- uid: 2217 + type: CableMV + components: + - pos: 38.5,3.5 + parent: 30 + type: Transform +- uid: 2218 + type: CarpetGreen + components: + - rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 30 + type: Transform +- uid: 2219 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2220 + type: Poweredlight + components: + - pos: 13.5,3.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2221 + type: CableApcExtension + components: + - pos: 6.5,5.5 + parent: 30 + type: Transform +- uid: 2222 + type: CableApcExtension + components: + - pos: 8.5,8.5 + parent: 30 + type: Transform +- uid: 2223 + type: CableApcExtension + components: + - pos: 6.5,6.5 + parent: 30 + type: Transform +- uid: 2224 + type: CableApcExtension + components: + - pos: 6.5,8.5 + parent: 30 + type: Transform +- uid: 2225 + type: CableApcExtension + components: + - pos: 10.5,8.5 + parent: 30 + type: Transform +- uid: 2226 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 10.5,12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2227 + type: CableApcExtension + components: + - pos: 13.5,13.5 + parent: 30 + type: Transform +- uid: 2228 + type: AirlockGlassAlpha + components: + - pos: 17.5,19.5 + parent: 30 + type: Transform +- uid: 2229 + type: PoweredSmallLight + components: + - pos: -10.5,18.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2230 + type: PoweredSmallLight + components: + - pos: -2.5,22.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2231 + type: PoweredSmallLight + components: + - pos: 11.5,21.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2232 + type: Poweredlight + components: + - pos: 20.5,24.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2233 + type: Poweredlight + components: + - pos: 17.5,24.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2234 + type: LockerEvidence + components: + - pos: 5.5,10.5 + parent: 30 + type: Transform +- uid: 2235 + type: PoweredSmallLight + components: + - rot: 1.5707963267948966 rad + pos: -7.5,15.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2236 + type: PoweredSmallLight + components: + - rot: -1.5707963267948966 rad + pos: -5.5,14.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2237 + type: Chair + components: + - rot: 3.141592653589793 rad + pos: 9.5,10.5 + parent: 30 + type: Transform +- uid: 2238 + type: FirelockGlass + components: + - pos: 13.5,9.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2239 + type: WindowAlmayer + components: + - pos: 13.5,13.5 + parent: 30 + type: Transform +- uid: 2240 + type: Table + components: + - pos: -15.5,14.5 + parent: 30 + type: Transform +- uid: 2241 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2242 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2243 + type: SheetGlass + components: + - pos: -15.504057,14.496162 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2244 + type: Grille + components: + - pos: 10.5,12.5 + parent: 30 + type: Transform +- uid: 2245 + type: Chair + components: + - pos: 9.5,12.5 + parent: 30 + type: Transform +- uid: 2246 + type: Chair + components: + - pos: 11.5,-0.5 + parent: 30 + type: Transform +- uid: 2247 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2248 + type: ComputerSurveillanceCameraMonitor + components: + - rot: -1.5707963267948966 rad + pos: 12.5,12.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 2249 + type: Chair + components: + - pos: 8.5,12.5 + parent: 30 + type: Transform +- uid: 2250 + type: WindoorArmoryLocked + components: + - rot: 3.141592653589793 rad + pos: 12.5,11.5 + parent: 30 + type: Transform +- uid: 2251 + type: VendingMachineSec + components: + - pos: 12.5,15.5 + parent: 30 + type: Transform +- uid: 2252 + type: DonkpocketBoxSpawner + components: + - pos: 15.5,17.5 + parent: 30 + type: Transform +- uid: 2253 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2254 + type: AirlockGlassAlpha + components: + - pos: 17.5,11.5 + parent: 30 + type: Transform +- uid: 2255 + type: WindowAlmayer + components: + - pos: 10.5,5.5 + parent: 30 + type: Transform +- uid: 2256 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 30 + type: Transform +- uid: 2257 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: 17.5,4.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2258 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 19.5,7.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2259 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2260 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2261 + type: Poweredlight + components: + - pos: -8.5,11.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2262 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2263 + type: Poweredlight + components: + - pos: -8.5,-3.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2264 + type: WallAlmayer + components: + - pos: 16.5,0.5 + parent: 30 + type: Transform +- uid: 2265 + type: WindowAlmayer + components: + - pos: 15.5,0.5 + parent: 30 + type: Transform +- uid: 2266 + type: WallAlmayer + components: + - pos: 14.5,0.5 + parent: 30 + type: Transform +- uid: 2267 + type: WallAlmayer + components: + - pos: 13.5,0.5 + parent: 30 + type: Transform +- uid: 2268 + type: WindowAlmayer + components: + - pos: 11.5,0.5 + parent: 30 + type: Transform +- uid: 2269 + type: WindowAlmayer + components: + - pos: 12.5,0.5 + parent: 30 + type: Transform +- uid: 2270 + type: WindowAlmayer + components: + - pos: 10.5,0.5 + parent: 30 + type: Transform +- uid: 2271 + type: WallAlmayer + components: + - pos: 9.5,0.5 + parent: 30 + type: Transform +- uid: 2272 + type: WallAlmayer + components: + - pos: 8.5,0.5 + parent: 30 + type: Transform +- uid: 2273 + type: WindowAlmayer + components: + - pos: 6.5,0.5 + parent: 30 + type: Transform +- uid: 2274 + type: WallAlmayer + components: + - pos: -25.5,18.5 + parent: 30 + type: Transform +- uid: 2275 + type: Grille + components: + - pos: 6.5,0.5 + parent: 30 + type: Transform +- uid: 2276 + type: WallAlmayer + components: + - pos: 4.5,0.5 + parent: 30 + type: Transform +- uid: 2277 + type: WallAlmayer + components: + - pos: 3.5,0.5 + parent: 30 + type: Transform +- uid: 2278 + type: WindowAlmayer + components: + - pos: 2.5,0.5 + parent: 30 + type: Transform +- uid: 2279 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 30 + type: Transform +- uid: 2280 + type: WindowAlmayer + components: + - pos: 0.5,0.5 + parent: 30 + type: Transform +- uid: 2281 + type: AirlockGlassAlpha + components: + - pos: 18.5,-6.5 + parent: 30 + type: Transform +- uid: 2282 + type: AirlockGlassAlpha + components: + - pos: 19.5,-6.5 + parent: 30 + type: Transform +- uid: 2283 + type: WallAlmayer + components: + - pos: 20.5,-6.5 + parent: 30 + type: Transform +- uid: 2284 + type: WallAlmayer + components: + - pos: 20.5,-5.5 + parent: 30 + type: Transform +- uid: 2285 + type: WallAlmayer + components: + - pos: 17.5,-3.5 + parent: 30 + type: Transform +- uid: 2286 + type: WallAlmayer + components: + - pos: 16.5,-3.5 + parent: 30 + type: Transform +- uid: 2287 + type: WallAlmayer + components: + - pos: 15.5,-3.5 + parent: 30 + type: Transform +- uid: 2288 + type: WallAlmayer + components: + - pos: 17.5,-5.5 + parent: 30 + type: Transform +- uid: 2289 + type: WallAlmayer + components: + - pos: 17.5,-6.5 + parent: 30 + type: Transform +- uid: 2290 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 30 + type: Transform +- uid: 2291 + type: WindowAlmayer + components: + - pos: 11.5,-3.5 + parent: 30 + type: Transform +- uid: 2292 + type: WallAlmayer + components: + - pos: -4.5,-7.5 + parent: 30 + type: Transform +- uid: 2293 + type: WindowAlmayer + components: + - pos: 7.5,-12.5 + parent: 30 + type: Transform +- uid: 2294 + type: WindowAlmayer + components: + - pos: 3.5,-2.5 + parent: 30 + type: Transform +- uid: 2295 + type: WallAlmayer + components: + - pos: -0.5,-4.5 + parent: 30 + type: Transform +- uid: 2296 + type: Grille + components: + - pos: 3.5,-7.5 + parent: 30 + type: Transform +- uid: 2297 + type: Grille + components: + - pos: 9.5,-0.5 + parent: 30 + type: Transform +- uid: 2298 + type: WallAlmayer + components: + - pos: -3.5,-7.5 + parent: 30 + type: Transform +- uid: 2299 + type: SpawnPointChemist + components: + - pos: -2.5,-6.5 + parent: 30 + type: Transform +- uid: 2300 + type: WallAlmayer + components: + - pos: -3.5,-9.5 + parent: 30 + type: Transform +- uid: 2301 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 30 + type: Transform +- uid: 2302 + type: Grille + components: + - pos: -4.5,-2.5 + parent: 30 + type: Transform +- uid: 2303 + type: Grille + components: + - pos: -4.5,-1.5 + parent: 30 + type: Transform +- uid: 2304 + type: Grille + components: + - pos: -4.5,6.5 + parent: 30 + type: Transform +- uid: 2305 + type: Grille + components: + - pos: -4.5,7.5 + parent: 30 + type: Transform +- uid: 2306 + type: WindowAlmayer + components: + - pos: -4.5,-6.5 + parent: 30 + type: Transform +- uid: 2307 + type: WindowAlmayer + components: + - pos: -4.5,-5.5 + parent: 30 + type: Transform +- uid: 2308 + type: WindowAlmayer + components: + - pos: -4.5,-4.5 + parent: 30 + type: Transform +- uid: 2309 + type: WindowAlmayer + components: + - pos: -3.5,-3.5 + parent: 30 + type: Transform +- uid: 2310 + type: Grille + components: + - pos: 7.5,-12.5 + parent: 30 + type: Transform +- uid: 2311 + type: WindowAlmayer + components: + - pos: -1.5,-3.5 + parent: 30 + type: Transform +- uid: 2312 + type: WallAlmayer + components: + - pos: -3.5,-10.5 + parent: 30 + type: Transform +- uid: 2313 + type: WallAlmayer + components: + - pos: -2.5,-10.5 + parent: 30 + type: Transform +- uid: 2314 + type: WindowAlmayer + components: + - pos: 0.5,-10.5 + parent: 30 + type: Transform +- uid: 2315 + type: WallAlmayer + components: + - pos: -0.5,-10.5 + parent: 30 + type: Transform +- uid: 2316 + type: FirelockGlass + components: + - pos: 1.5,-4.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2317 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 30 + type: Transform +- uid: 2318 + type: CloningPod + components: + - pos: 12.5,-8.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + CloningPod-bodyContainer: !type:ContainerSlot {} + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 2319 + type: WindowAlmayer + components: + - pos: 13.5,-3.5 + parent: 30 + type: Transform +- uid: 2320 + type: Grille + components: + - pos: 0.5,-10.5 + parent: 30 + type: Transform +- uid: 2321 + type: CableApcExtension + components: + - pos: -0.5,-17.5 + parent: 30 + type: Transform +- uid: 2322 + type: CableApcExtension + components: + - pos: 2.5,-17.5 + parent: 30 + type: Transform +- uid: 2323 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 30 + type: Transform +- uid: 2324 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 30 + type: Transform +- uid: 2325 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 30 + type: Transform +- uid: 2326 + type: Grille + components: + - pos: 9.5,-2.5 + parent: 30 + type: Transform +- uid: 2327 + type: WindoorMedicalLocked + components: + - pos: 1.5,-4.5 + parent: 30 + type: Transform +- uid: 2328 + type: AirlockGlassAlpha + components: + - pos: 4.5,-7.5 + parent: 30 + type: Transform +- uid: 2329 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 30 + type: Transform +- uid: 2330 + type: ChairOfficeLight + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 30 + type: Transform +- uid: 2331 + type: Windoor + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 30 + type: Transform +- uid: 2332 + type: WindowDirectional + components: + - rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 30 + type: Transform +- uid: 2333 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 30 + type: Transform +- uid: 2334 + type: CableMV + components: + - pos: -32.5,4.5 + parent: 30 + type: Transform +- uid: 2335 + type: Lamp + components: + - pos: 11.768,-13.231518 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2336 + type: MedkitBruteFilled + components: + - pos: 13.533625,-12.794018 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2337 + type: Grille + components: + - pos: 5.5,-4.5 + parent: 30 + type: Transform +- uid: 2338 + type: GasVentScrubber + components: + - pos: 4.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2339 + type: BedsheetOrange + components: + - pos: 12.5,5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2340 + type: WarpPoint + components: + - pos: -25.5,-13.5 + parent: 30 + type: Transform + - location: sci + type: WarpPoint +- uid: 2341 + type: WallAlmayer + components: + - pos: 6.5,18.5 + parent: 30 + type: Transform +- uid: 2342 + type: WallAlmayer + components: + - pos: 20.5,-7.5 + parent: 30 + type: Transform +- uid: 2343 + type: WallAlmayer + components: + - pos: 20.5,-12.5 + parent: 30 + type: Transform +- uid: 2344 + type: WallAlmayer + components: + - pos: 23.5,-14.5 + parent: 30 + type: Transform +- uid: 2345 + type: WallAlmayer + components: + - pos: 22.5,-14.5 + parent: 30 + type: Transform +- uid: 2346 + type: SpawnPointJanitor + components: + - pos: 22.5,-1.5 + parent: 30 + type: Transform +- uid: 2347 + type: GasVentPump + components: + - pos: 0.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2348 + type: Grille + components: + - pos: -4.5,-6.5 + parent: 30 + type: Transform +- uid: 2349 + type: Grille + components: + - pos: -4.5,-5.5 + parent: 30 + type: Transform +- uid: 2350 + type: Grille + components: + - pos: -4.5,-4.5 + parent: 30 + type: Transform +- uid: 2351 + type: Grille + components: + - pos: -3.5,-3.5 + parent: 30 + type: Transform +- uid: 2352 + type: TableReinforced + components: + - pos: -2.5,-3.5 + parent: 30 + type: Transform +- uid: 2353 + type: Grille + components: + - pos: -1.5,-3.5 + parent: 30 + type: Transform +- uid: 2354 + type: Grille + components: + - pos: -0.5,-2.5 + parent: 30 + type: Transform +- uid: 2355 + type: Grille + components: + - pos: -0.5,-0.5 + parent: 30 + type: Transform +- uid: 2356 + type: Grille + components: + - pos: 0.5,0.5 + parent: 30 + type: Transform +- uid: 2357 + type: Grille + components: + - pos: 2.5,0.5 + parent: 30 + type: Transform +- uid: 2358 + type: Grille + components: + - pos: 3.5,-0.5 + parent: 30 + type: Transform +- uid: 2359 + type: TableReinforced + components: + - pos: 1.5,-4.5 + parent: 30 + type: Transform +- uid: 2360 + type: WindowAlmayer + components: + - pos: 5.5,-6.5 + parent: 30 + type: Transform +- uid: 2361 + type: WallAlmayer + components: + - pos: 3.5,-10.5 + parent: 30 + type: Transform +- uid: 2362 + type: PottedPlantRandom + components: + - pos: 13.5,-0.5 + parent: 30 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2363 + type: WallAlmayer + components: + - pos: 2.5,-10.5 + parent: 30 + type: Transform +- uid: 2364 + type: Chair + components: + - pos: 12.5,-0.5 + parent: 30 + type: Transform +- uid: 2365 + type: WarpPoint + components: + - pos: -20.5,17.5 + parent: 30 + type: Transform + - location: cargo + type: WarpPoint +- uid: 2366 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 30 + type: Transform +- uid: 2367 + type: Grille + components: + - pos: 5.5,-5.5 + parent: 30 + type: Transform +- uid: 2368 + type: WindoorChemistryLocked + components: + - pos: -2.5,-3.5 + parent: 30 + type: Transform +- uid: 2369 + type: WallAlmayer + components: + - pos: 5.5,-7.5 + parent: 30 + type: Transform +- uid: 2370 + type: WindowAlmayer + components: + - pos: 2.5,-5.5 + parent: 30 + type: Transform +- uid: 2371 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-8.5 + parent: 30 + type: Transform +- uid: 2372 + type: CableApcExtension + components: + - pos: -3.5,-17.5 + parent: 30 + type: Transform +- uid: 2373 + type: WindowAlmayer + components: + - pos: 6.5,-10.5 + parent: 30 + type: Transform +- uid: 2374 + type: Grille + components: + - pos: 6.5,-10.5 + parent: 30 + type: Transform +- uid: 2375 + type: CableApcExtension + components: + - pos: 0.5,-17.5 + parent: 30 + type: Transform +- uid: 2376 + type: WallAlmayer + components: + - pos: -3.5,-8.5 + parent: 30 + type: Transform +- uid: 2377 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 30 + type: Transform +- uid: 2378 + type: AirlockGlassAlpha + components: + - pos: 14.5,-5.5 + parent: 30 + type: Transform +- uid: 2379 + type: Grille + components: + - pos: 5.5,0.5 + parent: 30 + type: Transform +- uid: 2380 + type: Grille + components: + - pos: 7.5,0.5 + parent: 30 + type: Transform +- uid: 2381 + type: WindowAlmayer + components: + - pos: 5.5,0.5 + parent: 30 + type: Transform +- uid: 2382 + type: WindowAlmayer + components: + - pos: 7.5,0.5 + parent: 30 + type: Transform +- uid: 2383 + type: WindowAlmayer + components: + - pos: 11.5,-9.5 + parent: 30 + type: Transform +- uid: 2384 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 30 + type: Transform +- uid: 2385 + type: Grille + components: + - pos: 15.5,0.5 + parent: 30 + type: Transform +- uid: 2386 + type: Grille + components: + - pos: 14.5,-2.5 + parent: 30 + type: Transform +- uid: 2387 + type: Grille + components: + - pos: 14.5,-0.5 + parent: 30 + type: Transform +- uid: 2388 + type: WindowAlmayer + components: + - pos: 14.5,-2.5 + parent: 30 + type: Transform +- uid: 2389 + type: WindowAlmayer + components: + - pos: 14.5,-0.5 + parent: 30 + type: Transform +- uid: 2390 + type: GasVentPump + components: + - pos: 3.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2391 + type: DogBed + components: + - pos: -2.5,-8.5 + parent: 30 + type: Transform +- uid: 2392 + type: SpawnPointChemist + components: + - pos: -1.5,-7.5 + parent: 30 + type: Transform +- uid: 2393 + type: AirlockGlassAlpha + components: + - pos: 5.5,-10.5 + parent: 30 + type: Transform +- uid: 2394 + type: WallAlmayer + components: + - pos: 5.5,-3.5 + parent: 30 + type: Transform +- uid: 2395 + type: ComputerCrewMonitoring + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 2396 + type: Grille + components: + - pos: -1.5,-10.5 + parent: 30 + type: Transform +- uid: 2397 + type: Windoor + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 30 + type: Transform +- uid: 2398 + type: WindowAlmayer + components: + - pos: 2.5,-6.5 + parent: 30 + type: Transform +- uid: 2399 + type: Grille + components: + - pos: 0.5,-4.5 + parent: 30 + type: Transform +- uid: 2400 + type: AirlockGlassAlpha + components: + - pos: 9.5,-1.5 + parent: 30 + type: Transform +- uid: 2401 + type: AirlockGlassAlpha + components: + - pos: 3.5,-1.5 + parent: 30 + type: Transform +- uid: 2402 + type: BoxFolderWhite + components: + - pos: -0.51966,-11.457195 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2403 + type: AirlockGlassAlpha + components: + - pos: 7.5,-11.5 + parent: 30 + type: Transform +- uid: 2404 + type: APCBasic + components: + - pos: 2.5,-10.5 + parent: 30 + type: Transform +- uid: 2405 + type: WallAlmayer + components: + - pos: 20.5,-13.5 + parent: 30 + type: Transform +- uid: 2406 + type: WallAlmayer + components: + - pos: 3.5,-3.5 + parent: 30 + type: Transform +- uid: 2407 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 30 + type: Transform +- uid: 2408 + type: AirlockGlassAlpha + components: + - pos: -0.5,-1.5 + parent: 30 + type: Transform +- uid: 2409 + type: AirlockGlassAlpha + components: + - pos: 1.5,0.5 + parent: 30 + type: Transform +- uid: 2410 + type: AirlockGlassAlpha + components: + - pos: 14.5,-1.5 + parent: 30 + type: Transform +- uid: 2411 + type: WallAlmayer + components: + - pos: -2.5,-11.5 + parent: 30 + type: Transform +- uid: 2412 + type: WallAlmayer + components: + - pos: -2.5,-12.5 + parent: 30 + type: Transform +- uid: 2413 + type: WallAlmayer + components: + - pos: -2.5,-13.5 + parent: 30 + type: Transform +- uid: 2414 + type: WallAlmayer + components: + - pos: -2.5,-14.5 + parent: 30 + type: Transform +- uid: 2415 + type: WallAlmayer + components: + - pos: -2.5,-15.5 + parent: 30 + type: Transform +- uid: 2416 + type: WallAlmayer + components: + - pos: -2.5,-16.5 + parent: 30 + type: Transform +- uid: 2417 + type: WallAlmayer + components: + - pos: -1.5,-16.5 + parent: 30 + type: Transform +- uid: 2418 + type: WallAlmayer + components: + - pos: -0.5,-16.5 + parent: 30 + type: Transform +- uid: 2419 + type: WallAlmayer + components: + - pos: 0.5,-16.5 + parent: 30 + type: Transform +- uid: 2420 + type: WallAlmayer + components: + - pos: 1.5,-16.5 + parent: 30 + type: Transform +- uid: 2421 + type: WallAlmayer + components: + - pos: 1.5,-15.5 + parent: 30 + type: Transform +- uid: 2422 + type: WallAlmayer + components: + - pos: 1.5,-14.5 + parent: 30 + type: Transform +- uid: 2423 + type: WallAlmayer + components: + - pos: 1.5,-13.5 + parent: 30 + type: Transform +- uid: 2424 + type: WallAlmayer + components: + - pos: 2.5,-13.5 + parent: 30 + type: Transform +- uid: 2425 + type: WallAlmayer + components: + - pos: 2.5,-16.5 + parent: 30 + type: Transform +- uid: 2426 + type: WallAlmayer + components: + - pos: 3.5,-16.5 + parent: 30 + type: Transform +- uid: 2427 + type: WallAlmayer + components: + - pos: 4.5,-16.5 + parent: 30 + type: Transform +- uid: 2428 + type: WallAlmayer + components: + - pos: 5.5,-16.5 + parent: 30 + type: Transform +- uid: 2429 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-14.5 + parent: 30 + type: Transform +- uid: 2430 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 30 + type: Transform +- uid: 2431 + type: WallAlmayer + components: + - pos: 5.5,-15.5 + parent: 30 + type: Transform +- uid: 2432 + type: WallAlmayer + components: + - pos: 5.5,-14.5 + parent: 30 + type: Transform +- uid: 2433 + type: WallAlmayer + components: + - pos: 5.5,-13.5 + parent: 30 + type: Transform +- uid: 2434 + type: WallAlmayer + components: + - pos: 4.5,-13.5 + parent: 30 + type: Transform +- uid: 2435 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 30 + type: Transform +- uid: 2436 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 30 + type: Transform +- uid: 2437 + type: SpawnPointMedicalDoctor + components: + - pos: 11.5,-11.5 + parent: 30 + type: Transform +- uid: 2438 + type: SignMorgue + components: + - pos: 4.5,-13.5 + parent: 30 + type: Transform +- uid: 2439 + type: AirlockGlassAlpha + components: + - pos: 3.5,-13.5 + parent: 30 + type: Transform +- uid: 2440 + type: SpawnMobPossumMorty + components: + - pos: 3.5,-15.5 + parent: 30 + type: Transform +- uid: 2441 + type: Grille + components: + - pos: 12.5,0.5 + parent: 30 + type: Transform +- uid: 2442 + type: Grille + components: + - pos: 11.5,0.5 + parent: 30 + type: Transform +- uid: 2443 + type: Grille + components: + - pos: 10.5,0.5 + parent: 30 + type: Transform +- uid: 2444 + type: Windoor + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 30 + type: Transform +- uid: 2445 + type: WindowAlmayer + components: + - pos: 4.5,-10.5 + parent: 30 + type: Transform +- uid: 2446 + type: WindowAlmayer + components: + - pos: 5.5,-4.5 + parent: 30 + type: Transform +- uid: 2447 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2448 + type: CableApcExtension + components: + - pos: -2.5,-17.5 + parent: 30 + type: Transform +- uid: 2449 + type: WindowDirectional + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 30 + type: Transform +- uid: 2450 + type: Grille + components: + - pos: 10.5,-8.5 + parent: 30 + type: Transform +- uid: 2451 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-14.5 + parent: 30 + type: Transform +- uid: 2452 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-14.5 + parent: 30 + type: Transform +- uid: 2453 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 30 + type: Transform +- uid: 2454 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 30 + type: Transform +- uid: 2455 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-12.5 + parent: 30 + type: Transform +- uid: 2456 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 30 + type: Transform +- uid: 2457 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 30 + type: Transform +- uid: 2458 + type: MagazinePistolSubMachineGunTopMounted + components: + - pos: 3.4631429,17.018839 + parent: 30 + type: Transform + - unspawnedCount: 30 + type: BallisticAmmoProvider + - canCollide: False + type: Physics + - containers: + ballistic-ammo: !type:Container + ents: [] + type: ContainerContainer +- uid: 2459 + type: ComputerMedicalRecords + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 2460 + type: MedkitBurnFilled + components: + - pos: 13.533625,-12.559643 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2461 + type: TableGlass + components: + - pos: 11.5,-13.5 + parent: 30 + type: Transform +- uid: 2462 + type: MedkitFilled + components: + - pos: 13.518,-12.356518 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2463 + type: SpawnMobWalter + components: + - pos: -2.5,-8.5 + parent: 30 + type: Transform +- uid: 2464 + type: StasisBed + components: + - pos: 3.5,-5.5 + parent: 30 + type: Transform +- uid: 2465 + type: SignChemistry2 + components: + - pos: -0.5,-3.5 + parent: 30 + type: Transform +- uid: 2466 + type: CableApcExtension + components: + - pos: -6.5,-16.5 + parent: 30 + type: Transform +- uid: 2467 + type: WindowAlmayer + components: + - pos: 10.5,-8.5 + parent: 30 + type: Transform +- uid: 2468 + type: VendingMachineMedical + components: + - pos: 4.5,-0.5 + parent: 30 + type: Transform +- uid: 2469 + type: chem_dispenser + components: + - pos: -3.5,-4.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + ReagentDispenser-beaker: !type:ContainerSlot {} + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 2470 + type: chem_master + components: + - pos: -1.5,-4.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + ChemMaster-beaker: !type:ContainerSlot {} + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer + - solutions: + buffer: + reagents: [] + type: SolutionContainerManager +- uid: 2471 + type: CrowbarRed + components: + - pos: 10.514304,-13.520046 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2472 + type: ChairOfficeLight + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 30 + type: Transform +- uid: 2473 + type: Wrench + components: + - pos: 10.514304,-13.410671 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2474 + type: Table + components: + - pos: 8.5,-8.5 + parent: 30 + type: Transform +- uid: 2475 + type: Table + components: + - pos: 13.5,-6.5 + parent: 30 + type: Transform +- uid: 2476 + type: SignChem + components: + - pos: -4.5,-3.5 + parent: 30 + type: Transform +- uid: 2477 + type: Grille + components: + - pos: 3.5,-2.5 + parent: 30 + type: Transform +- uid: 2478 + type: WindowAlmayer + components: + - pos: 9.5,-0.5 + parent: 30 + type: Transform +- uid: 2479 + type: WindowAlmayer + components: + - pos: 9.5,-2.5 + parent: 30 + type: Transform +- uid: 2480 + type: WindowAlmayer + components: + - pos: 10.5,-6.5 + parent: 30 + type: Transform +- uid: 2481 + type: MedicalScanner + components: + - pos: 12.5,-4.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + MedicalScanner-bodyContainer: !type:ContainerSlot {} + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 2482 + type: Grille + components: + - pos: 10.5,-6.5 + parent: 30 + type: Transform +- uid: 2483 + type: GasPipeStraight + components: + - pos: 7.5,-3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2484 + type: WarpPoint + components: + - pos: -32.5,2.5 + parent: 30 + type: Transform + - location: eng + type: WarpPoint +- uid: 2485 + type: PottedPlantRandom + components: + - pos: 8.5,-0.5 + parent: 30 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2486 + type: PottedPlantRandom + components: + - pos: 2.5,-11.5 + parent: 30 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2487 + type: VendingMachineChemDrobe + components: + - pos: -3.5,-6.5 + parent: 30 + type: Transform +- uid: 2488 + type: Table + components: + - pos: -3.5,-5.5 + parent: 30 + type: Transform +- uid: 2489 + type: Grille + components: + - pos: -0.5,-9.5 + parent: 30 + type: Transform +- uid: 2490 + type: WindowAlmayer + components: + - pos: -0.5,-5.5 + parent: 30 + type: Transform +- uid: 2491 + type: BoxPillCanister + components: + - pos: -3.6001704,-5.319798 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2492 + type: WarpPoint + components: + - pos: 6.5,-1.5 + parent: 30 + type: Transform + - location: med + type: WarpPoint +- uid: 2493 + type: HandheldHealthAnalyzer + components: + - pos: 9.4865885,-8.416983 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2494 + type: BoxBeaker + components: + - pos: -3.3814204,-5.429173 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2495 + type: chem_dispenser + components: + - pos: -1.5,-9.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + ReagentDispenser-beaker: !type:ContainerSlot {} + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 2496 + type: chem_master + components: + - pos: -2.5,-9.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + ChemMaster-beaker: !type:ContainerSlot {} + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer + - solutions: + buffer: + reagents: [] + type: SolutionContainerManager +- uid: 2497 + type: ChairOfficeLight + components: + - pos: -1.5,-8.5 + parent: 30 + type: Transform +- uid: 2498 + type: Table + components: + - pos: 9.5,-8.5 + parent: 30 + type: Transform +- uid: 2499 + type: StoolBar + components: + - rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 30 + type: Transform +- uid: 2500 + type: HandLabeler + components: + - pos: -3.6685562,-5.5019546 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2501 + type: Dropper + components: + - pos: -3.5516922,-5.398 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2502 + type: Dropper + components: + - pos: -3.5516922,-5.398 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2503 + type: Morgue + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 30 + type: Transform +- uid: 2504 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2505 + type: Poweredlight + components: + - pos: 9.5,-4.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2506 + type: Table + components: + - pos: 4.5,-14.5 + parent: 30 + type: Transform +- uid: 2507 + type: BoxBodyBag + components: + - pos: 4.5,-14.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2508 + type: Poweredlight + components: + - pos: 0.5,-0.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2509 + type: Poweredlight + components: + - pos: 4.5,-0.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2510 + type: Poweredlight + components: + - pos: 8.5,-0.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2511 + type: Poweredlight + components: + - pos: 12.5,-4.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2512 + type: Poweredlight + components: + - pos: 12.5,-10.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2513 + type: Poweredlight + components: + - pos: 9.5,-10.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2514 + type: Poweredlight + components: + - pos: 3.5,-11.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2515 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2516 + type: Poweredlight + components: + - pos: 3.5,-5.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2517 + type: WallAlmayer + components: + - pos: -32.5,22.5 + parent: 30 + type: Transform +- uid: 2518 + type: FirelockGlass + components: + - pos: 7.5,-3.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2519 + type: WindowAlmayer + components: + - pos: -0.5,-9.5 + parent: 30 + type: Transform +- uid: 2520 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2521 + type: GasPipeStraight + components: + - pos: 18.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2522 + type: WallAlmayer + components: + - pos: 2.5,-7.5 + parent: 30 + type: Transform +- uid: 2523 + type: AirlockGlassAlpha + components: + - pos: 6.5,-14.5 + parent: 30 + type: Transform +- uid: 2524 + type: APCBasic + components: + - pos: 13.5,0.5 + parent: 30 + type: Transform +- uid: 2525 + type: ComputerCrewMonitoring + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 2526 + type: GasPipeStraight + components: + - pos: 18.5,-1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2527 + type: GasPipeFourway + components: + - pos: 18.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2528 + type: GasPipeStraight + components: + - pos: 18.5,-3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2529 + type: GasPipeStraight + components: + - pos: 18.5,-4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2530 + type: GasPipeStraight + components: + - pos: 18.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2531 + type: GasPipeStraight + components: + - pos: 18.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2532 + type: GasPipeStraight + components: + - pos: 19.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2533 + type: GasPipeStraight + components: + - pos: 19.5,-5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2534 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2535 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2536 + type: GasPipeStraight + components: + - pos: 19.5,-2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2537 + type: GasPipeFourway + components: + - pos: 19.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2538 + type: GasPipeStraight + components: + - pos: 19.5,-0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2539 + type: GasPipeStraight + components: + - pos: 19.5,0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2540 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2541 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2542 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2543 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2544 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2545 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2546 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2547 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2548 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2549 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2550 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2551 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2552 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2553 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2554 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2555 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2556 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2557 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2558 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2559 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2560 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2561 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2562 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2563 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2564 + type: GasPipeTJunction + components: + - pos: 7.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2565 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2566 + type: GasPipeFourway + components: + - pos: 6.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2567 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2568 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2569 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2570 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2571 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2572 + type: GasPipeTJunction + components: + - pos: 11.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2573 + type: GasPipeFourway + components: + - pos: 12.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2574 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2575 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2576 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2577 + type: GasPipeFourway + components: + - pos: 5.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2578 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2579 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2580 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2581 + type: GasPipeTJunction + components: + - pos: 1.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2582 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2583 + type: GasPipeStraight + components: + - pos: 2.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2584 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2585 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2586 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2587 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2588 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2589 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2590 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2591 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2592 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2593 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2594 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2595 + type: GasPipeStraight + components: + - pos: 2.5,-1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2596 + type: GasPipeStraight + components: + - pos: 0.5,-0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2597 + type: GasPipeStraight + components: + - pos: 0.5,0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2598 + type: GasPipeStraight + components: + - pos: 0.5,1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2599 + type: GasPipeFourway + components: + - pos: 2.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2600 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2601 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2602 + type: GasVentPump + components: + - pos: 1.5,-0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2603 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2604 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2605 + type: GasVentScrubber + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2606 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2607 + type: GasVentScrubber + components: + - pos: 2.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2608 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 14.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2609 + type: GasVentScrubber + components: + - pos: 13.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2610 + type: GasPipeStraight + components: + - pos: 10.5,-2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2611 + type: GasPipeStraight + components: + - pos: 10.5,-3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2612 + type: GasPipeStraight + components: + - pos: 10.5,-4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2613 + type: GasPipeStraight + components: + - pos: 10.5,-5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2614 + type: GasPipeStraight + components: + - pos: 12.5,-3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2615 + type: GasPipeStraight + components: + - pos: 12.5,-4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2616 + type: GasPipeStraight + components: + - pos: 12.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2617 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2618 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: 12.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2619 + type: CableMV + components: + - pos: 5.5,-3.5 + parent: 30 + type: Transform +- uid: 2620 + type: GasPipeStraight + components: + - pos: 5.5,-4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2621 + type: GasPipeStraight + components: + - pos: 5.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2622 + type: GasPipeStraight + components: + - pos: 5.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2623 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2624 + type: GasPipeStraight + components: + - pos: 5.5,-8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2625 + type: GasPipeStraight + components: + - pos: 5.5,-9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2626 + type: GasPipeStraight + components: + - pos: 5.5,-10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2627 + type: GasPipeStraight + components: + - pos: 5.5,-11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2628 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 5.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2629 + type: GasPipeFourway + components: + - pos: 6.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2630 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2631 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2632 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2633 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2634 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2635 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2636 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2637 + type: CableApcExtension + components: + - pos: 1.5,-17.5 + parent: 30 + type: Transform +- uid: 2638 + type: Grille + components: + - pos: 11.5,-3.5 + parent: 30 + type: Transform +- uid: 2639 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2640 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2641 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2642 + type: GasPipeTJunction + components: + - pos: 4.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2643 + type: GasPipeFourway + components: + - pos: 3.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2644 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2645 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2646 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2647 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2648 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2649 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2650 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2651 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2652 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2653 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2654 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2655 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2656 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2657 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2658 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2659 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2660 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2661 + type: GasPipeTJunction + components: + - pos: 1.5,-7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2662 + type: GasPipeTJunction + components: + - pos: 0.5,-8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2663 + type: GasPipeStraight + components: + - pos: 1.5,-8.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2664 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2665 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2666 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2667 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2668 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2669 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2670 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2671 + type: GasVentScrubber + components: + - pos: -2.5,-7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2672 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2673 + type: GasVentPump + components: + - pos: -1.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2674 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2675 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2676 + type: GasVentScrubber + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2677 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2678 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2679 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2680 + type: GasPipeTJunction + components: + - pos: 10.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2681 + type: GasPipeStraight + components: + - pos: 5.5,-3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2682 + type: GasVentScrubber + components: + - pos: 12.5,-1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2683 + type: GasPipeStraight + components: + - pos: 5.5,-1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2684 + type: GasVentPump + components: + - pos: 6.5,-0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2685 + type: GasVentScrubber + components: + - pos: 5.5,-0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2686 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2687 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2688 + type: GasPipeStraight + components: + - pos: 3.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2689 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2690 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2691 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 6.5,-13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2692 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 6.5,-14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2693 + type: GasPipeStraight + components: + - pos: 6.5,-15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2694 + type: CableApcExtension + components: + - pos: 2.5,-11.5 + parent: 30 + type: Transform +- uid: 2695 + type: WindowAlmayer + components: + - pos: -1.5,-10.5 + parent: 30 + type: Transform +- uid: 2696 + type: WallAlmayer + components: + - pos: 0.5,-13.5 + parent: 30 + type: Transform +- uid: 2697 + type: TableWood + components: + - pos: -4.5,-8.5 + parent: 30 + type: Transform +- uid: 2698 + type: Bed + components: + - pos: 0.5,-15.5 + parent: 30 + type: Transform +- uid: 2699 + type: AirlockGlassAlpha + components: + - pos: -0.5,-13.5 + parent: 30 + type: Transform +- uid: 2700 + type: BedsheetCMO + components: + - pos: 0.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2701 + type: TableGlass + components: + - pos: -1.5,-15.5 + parent: 30 + type: Transform +- uid: 2702 + type: TableGlass + components: + - pos: -1.5,-14.5 + parent: 30 + type: Transform +- uid: 2703 + type: ChairOfficeLight + components: + - pos: -0.5,-14.5 + parent: 30 + type: Transform +- uid: 2704 + type: Lamp + components: + - pos: -1.5114588,-14.286842 + parent: 30 + type: Transform + - toggleAction: + icon: Objects/Tools/flashlight.rsi/flashlight.png + iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png + name: action-name-toggle-light + description: action-description-toggle-light + keywords: [] + event: !type:ToggleActionEvent {} + type: HandheldLight + - canCollide: False + type: Physics +- uid: 2705 + type: WindowAlmayer + components: + - pos: 1.5,-11.5 + parent: 30 + type: Transform +- uid: 2706 + type: TableGlass + components: + - pos: -0.5,-11.5 + parent: 30 + type: Transform +- uid: 2707 + type: LockerChiefMedicalOfficerFilled + components: + - pos: 0.5,-14.5 + parent: 30 + type: Transform +- uid: 2708 + type: CarpetSBlue + components: + - pos: -0.5,-15.5 + parent: 30 + type: Transform +- uid: 2709 + type: CarpetSBlue + components: + - pos: -0.5,-14.5 + parent: 30 + type: Transform +- uid: 2710 + type: CarpetSBlue + components: + - pos: 0.5,-14.5 + parent: 30 + type: Transform +- uid: 2711 + type: CarpetSBlue + components: + - pos: 0.5,-15.5 + parent: 30 + type: Transform +- uid: 2712 + type: AirlockGlassAlpha + components: + - pos: 1.5,-12.5 + parent: 30 + type: Transform +- uid: 2713 + type: MedkitCombatFilled + components: + - pos: -1.5202415,-14.755592 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2714 + type: DrinkDoctorsDelightGlass + components: + - pos: -1.5358665,-15.224342 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 2715 + type: ChairOfficeLight + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 30 + type: Transform +- uid: 2716 + type: SpawnPointChiefMedicalOfficer + components: + - pos: -0.5,-15.5 + parent: 30 + type: Transform +- uid: 2717 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2718 + type: GasVentScrubber + components: + - pos: 3.5,-11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2719 + type: PoweredSmallLight + components: + - pos: 0.5,-14.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2720 + type: WallAlmayer + components: + - pos: -1.5,-13.5 + parent: 30 + type: Transform +- uid: 2721 + type: StoolBar + components: + - rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 30 + type: Transform +- uid: 2722 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 30 + type: Transform +- uid: 2723 + type: Morgue + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 30 + type: Transform +- uid: 2724 + type: Morgue + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 30 + type: Transform +- uid: 2725 + type: Grille + components: + - pos: 13.5,-3.5 + parent: 30 + type: Transform +- uid: 2726 + type: ClothingNeckStethoscope + components: + - pos: 12.502375,-13.356518 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2727 + type: WindowAlmayer + components: + - pos: 3.5,-0.5 + parent: 30 + type: Transform +- uid: 2728 + type: WindowAlmayer + components: + - pos: 13.5,-9.5 + parent: 30 + type: Transform +- uid: 2729 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2730 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2731 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2732 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -5.5,8.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2733 + type: GasPipeStraight + components: + - pos: 6.5,-3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2734 + type: CableApcExtension + components: + - pos: -0.5,-4.5 + parent: 30 + type: Transform +- uid: 2735 + type: Poweredlight + components: + - pos: 13.5,-0.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2736 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2737 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2738 + type: CableApcExtension + components: + - pos: -4.5,-16.5 + parent: 30 + type: Transform +- uid: 2739 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 30 + type: Transform +- uid: 2740 + type: CableApcExtension + components: + - pos: -3.5,-16.5 + parent: 30 + type: Transform +- uid: 2741 + type: Grille + components: + - pos: -0.5,-20.5 + parent: 30 + type: Transform +- uid: 2742 + type: Grille + components: + - pos: -0.5,-21.5 + parent: 30 + type: Transform +- uid: 2743 + type: LockerChemistryFilled + components: + - pos: -1.5,-5.5 + parent: 30 + type: Transform +- uid: 2744 + type: SheetPlasma + components: + - pos: -3.480597,-5.409103 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2745 + type: MedicalBed + components: + - pos: 9.5,-5.5 + parent: 30 + type: Transform +- uid: 2746 + type: SpawnPointMedicalDoctor + components: + - pos: 10.5,-11.5 + parent: 30 + type: Transform +- uid: 2747 + type: MedicalBed + components: + - pos: -1.5,-21.5 + parent: 30 + type: Transform +- uid: 2748 + type: LockerMedicalFilled + components: + - pos: 11.5,-10.5 + parent: 30 + type: Transform +- uid: 2749 + type: VendingMachineMediDrobe + components: + - pos: 9.5,-10.5 + parent: 30 + type: Transform +- uid: 2750 + type: MedicalBed + components: + - pos: -1.5,-20.5 + parent: 30 + type: Transform +- uid: 2751 + type: BoxMouthSwab + components: + - pos: 0.41628838,-20.205555 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2752 + type: MedkitToxinFilled + components: + - pos: 13.54925,-13.012768 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2753 + type: MedkitRadiationFilled + components: + - pos: 13.54925,-13.231518 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2754 + type: WindowDirectional + components: + - rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 30 + type: Transform +- uid: 2755 + type: Chair + components: + - pos: -23.5,-12.5 + parent: 30 + type: Transform +- uid: 2756 + type: SignExamroom + components: + - pos: 5.5,-3.5 + parent: 30 + type: Transform +- uid: 2757 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-14.5 + parent: 30 + type: Transform +- uid: 2758 + type: CableApcExtension + components: + - pos: -3.5,-5.5 + parent: 30 + type: Transform +- uid: 2759 + type: VendingMachineSmartFridge + components: + - pos: -0.5,-8.5 + parent: 30 + type: Transform +- uid: 2760 + type: WallAlmayer + components: + - pos: -33.5,22.5 + parent: 30 + type: Transform +- uid: 2761 + type: ChairOfficeLight + components: + - rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 30 + type: Transform +- uid: 2762 + type: BoxLatexGloves + components: + - pos: 10.618573,-10.325268 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2763 + type: TableGlass + components: + - pos: 13.5,-13.5 + parent: 30 + type: Transform +- uid: 2764 + type: TableGlass + components: + - pos: 13.5,-12.5 + parent: 30 + type: Transform +- uid: 2765 + type: WindowAlmayer + components: + - pos: 3.5,-7.5 + parent: 30 + type: Transform +- uid: 2766 + type: SignMedical + components: + - pos: -0.5,0.5 + parent: 30 + type: Transform +- uid: 2767 + type: SignMedical + components: + - pos: 14.5,0.5 + parent: 30 + type: Transform +- uid: 2768 + type: PottedPlantRandom + components: + - pos: 0.5,-0.5 + parent: 30 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2769 + type: TableGlass + components: + - pos: 12.5,-13.5 + parent: 30 + type: Transform +- uid: 2770 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2771 + type: Chair + components: + - pos: -22.5,-12.5 + parent: 30 + type: Transform +- uid: 2772 + type: BoxSterileMask + components: + - pos: 0.5569134,-20.455555 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 2773 + type: Table + components: + - pos: 10.5,-10.5 + parent: 30 + type: Transform +- uid: 2774 + type: AirlockGlassAlpha + components: + - pos: 17.5,-4.5 + parent: 30 + type: Transform +- uid: 2775 + type: AirlockGlassAlpha + components: + - pos: 14.5,-11.5 + parent: 30 + type: Transform +- uid: 2776 + type: computerBodyScanner + components: + - pos: 11.5,-4.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 2777 + type: ChairOfficeLight + components: + - pos: 12.5,-12.5 + parent: 30 + type: Transform +- uid: 2778 + type: Grille + components: + - pos: 5.5,-6.5 + parent: 30 + type: Transform +- uid: 2779 + type: CableApcExtension + components: + - pos: -1.5,-17.5 + parent: 30 + type: Transform +- uid: 2780 + type: CableApcExtension + components: + - pos: 3.5,-17.5 + parent: 30 + type: Transform +- uid: 2781 + type: WarpPoint + components: + - pos: -9.5,2.5 + parent: 30 + type: Transform + - location: botany + type: WarpPoint +- uid: 2782 + type: WindowAlmayer + components: + - pos: -5.5,-7.5 + parent: 30 + type: Transform +- uid: 2783 + type: FirelockGlass + components: + - pos: -2.5,-3.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2784 + type: Grille + components: + - pos: 7.5,-13.5 + parent: 30 + type: Transform +- uid: 2785 + type: WindowAlmayer + components: + - pos: 5.5,-5.5 + parent: 30 + type: Transform +- uid: 2786 + type: WallAlmayer + components: + - pos: -12.5,-11.5 + parent: 30 + type: Transform +- uid: 2787 + type: WindowAlmayer + components: + - pos: -6.5,-7.5 + parent: 30 + type: Transform +- uid: 2788 + type: WindowAlmayer + components: + - pos: -10.5,-7.5 + parent: 30 + type: Transform +- uid: 2789 + type: WindowAlmayer + components: + - pos: -11.5,-7.5 + parent: 30 + type: Transform +- uid: 2790 + type: AirlockGlassAlpha + components: + - pos: -13.5,-8.5 + parent: 30 + type: Transform +- uid: 2791 + type: WallAlmayer + components: + - pos: -12.5,-10.5 + parent: 30 + type: Transform +- uid: 2792 + type: WallAlmayer + components: + - pos: -12.5,-12.5 + parent: 30 + type: Transform +- uid: 2793 + type: WallAlmayer + components: + - pos: -13.5,-10.5 + parent: 30 + type: Transform +- uid: 2794 + type: WallAlmayer + components: + - pos: -13.5,-9.5 + parent: 30 + type: Transform +- uid: 2795 + type: WallAlmayer + components: + - pos: -4.5,-10.5 + parent: 30 + type: Transform +- uid: 2796 + type: WallAlmayer + components: + - pos: -13.5,-7.5 + parent: 30 + type: Transform +- uid: 2797 + type: AirlockGlassAlpha + components: + - pos: -4.5,-11.5 + parent: 30 + type: Transform +- uid: 2798 + type: WallAlmayer + components: + - pos: -12.5,-7.5 + parent: 30 + type: Transform +- uid: 2799 + type: WallAlmayer + components: + - pos: -4.5,-12.5 + parent: 30 + type: Transform +- uid: 2800 + type: BedsheetGreen + components: + - pos: -1.5,-21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2801 + type: RailingCornerSmall + components: + - rot: 1.5707963267948966 rad + pos: -8.5,9.5 + parent: 30 + type: Transform +- uid: 2802 + type: SignDirectionalEng + components: + - rot: -1.5707963267948966 rad + pos: -12.5,8.5 + parent: 30 + type: Transform +- uid: 2803 + type: SignDirectionalSupply + components: + - rot: -1.5707963267948966 rad + pos: -12.50373,8.724296 + parent: 30 + type: Transform +- uid: 2804 + type: SignDirectionalMed + components: + - rot: 1.5707963267948966 rad + pos: -12.50373,-3.2935715 + parent: 30 + type: Transform +- uid: 2805 + type: RandomPosterLegit + components: + - pos: -26.5,-1.5 + parent: 30 + type: Transform +- uid: 2806 + type: RandomPosterLegit + components: + - pos: -15.5,8.5 + parent: 30 + type: Transform +- uid: 2807 + type: WallAlmayer + components: + - pos: -9.5,-7.5 + parent: 30 + type: Transform +- uid: 2808 + type: WallAlmayer + components: + - pos: -7.5,-7.5 + parent: 30 + type: Transform +- uid: 2809 + type: SignDirectionalSci + components: + - rot: -1.5707963267948966 rad + pos: -12.50373,-3.6998215 + parent: 30 + type: Transform +- uid: 2810 + type: SignDirectionalSec + components: + - rot: 1.5707963267948966 rad + pos: -12.50373,8.299931 + parent: 30 + type: Transform +- uid: 2811 + type: RandomPosterLegit + components: + - pos: -26.5,6.5 + parent: 30 + type: Transform +- uid: 2812 + type: Railing + components: + - rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 30 + type: Transform +- uid: 2813 + type: SignDirectionalEng + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 30 + type: Transform +- uid: 2814 + type: BedsheetGreen + components: + - pos: -1.5,-20.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2815 + type: WallAlmayer + components: + - pos: -5.5,-12.5 + parent: 30 + type: Transform +- uid: 2816 + type: Grille + components: + - pos: -5.5,-7.5 + parent: 30 + type: Transform +- uid: 2817 + type: Grille + components: + - pos: -6.5,-7.5 + parent: 30 + type: Transform +- uid: 2818 + type: Grille + components: + - pos: -10.5,-7.5 + parent: 30 + type: Transform +- uid: 2819 + type: Grille + components: + - pos: -11.5,-7.5 + parent: 30 + type: Transform +- uid: 2820 + type: AirlockGlassAlpha + components: + - pos: -8.5,-7.5 + parent: 30 + type: Transform +- uid: 2821 + type: WallAlmayer + components: + - pos: 3.5,-4.5 + parent: 30 + type: Transform +- uid: 2822 + type: WallAlmayer + components: + - pos: 16.5,-13.5 + parent: 30 + type: Transform +- uid: 2823 + type: WallAlmayer + components: + - pos: 21.5,-16.5 + parent: 30 + type: Transform +- uid: 2824 + type: WallAlmayer + components: + - pos: 17.5,-12.5 + parent: 30 + type: Transform +- uid: 2825 + type: WallAlmayer + components: + - pos: 17.5,-11.5 + parent: 30 + type: Transform +- uid: 2826 + type: WallAlmayer + components: + - pos: 17.5,-10.5 + parent: 30 + type: Transform +- uid: 2827 + type: WallAlmayer + components: + - pos: 17.5,-9.5 + parent: 30 + type: Transform +- uid: 2828 + type: WallAlmayer + components: + - pos: 17.5,-8.5 + parent: 30 + type: Transform +- uid: 2829 + type: WallAlmayer + components: + - pos: 17.5,-7.5 + parent: 30 + type: Transform +- uid: 2830 + type: WallAlmayer + components: + - pos: 16.5,-14.5 + parent: 30 + type: Transform +- uid: 2831 + type: WallAlmayer + components: + - pos: 17.5,-13.5 + parent: 30 + type: Transform +- uid: 2832 + type: WallAlmayer + components: + - pos: 12.5,-18.5 + parent: 30 + type: Transform +- uid: 2833 + type: WallAlmayer + components: + - pos: 24.5,-18.5 + parent: 30 + type: Transform +- uid: 2834 + type: WindowAlmayer + components: + - pos: 24.5,-17.5 + parent: 30 + type: Transform +- uid: 2835 + type: WindowAlmayer + components: + - pos: 24.5,-19.5 + parent: 30 + type: Transform +- uid: 2836 + type: WallAlmayer + components: + - pos: 11.5,-16.5 + parent: 30 + type: Transform +- uid: 2837 + type: WallAlmayer + components: + - pos: 10.5,-16.5 + parent: 30 + type: Transform +- uid: 2838 + type: WallAlmayer + components: + - pos: 9.5,-16.5 + parent: 30 + type: Transform +- uid: 2839 + type: WallAlmayer + components: + - pos: -6.5,-12.5 + parent: 30 + type: Transform +- uid: 2840 + type: WallAlmayer + components: + - pos: -7.5,-12.5 + parent: 30 + type: Transform +- uid: 2841 + type: Catwalk + components: + - pos: -3.5,-13.5 + parent: 30 + type: Transform +- uid: 2842 + type: FirelockGlass + components: + - pos: -27.5,-1.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2843 + type: WallAlmayer + components: + - pos: -4.5,-17.5 + parent: 30 + type: Transform +- uid: 2844 + type: WallAlmayer + components: + - pos: -4.5,-18.5 + parent: 30 + type: Transform +- uid: 2845 + type: WallAlmayer + components: + - pos: -3.5,-18.5 + parent: 30 + type: Transform +- uid: 2846 + type: WallAlmayer + components: + - pos: -2.5,-18.5 + parent: 30 + type: Transform +- uid: 2847 + type: WallAlmayer + components: + - pos: -1.5,-18.5 + parent: 30 + type: Transform +- uid: 2848 + type: WallAlmayer + components: + - pos: -0.5,-18.5 + parent: 30 + type: Transform +- uid: 2849 + type: WallAlmayer + components: + - pos: 0.5,-18.5 + parent: 30 + type: Transform +- uid: 2850 + type: WallAlmayer + components: + - pos: 1.5,-18.5 + parent: 30 + type: Transform +- uid: 2851 + type: WallAlmayer + components: + - pos: 2.5,-18.5 + parent: 30 + type: Transform +- uid: 2852 + type: WallAlmayer + components: + - pos: 3.5,-18.5 + parent: 30 + type: Transform +- uid: 2853 + type: WindowAlmayer + components: + - pos: -3.5,-21.5 + parent: 30 + type: Transform +- uid: 2854 + type: WallAlmayer + components: + - pos: 5.5,-18.5 + parent: 30 + type: Transform +- uid: 2855 + type: WallAlmayer + components: + - pos: 6.5,-18.5 + parent: 30 + type: Transform +- uid: 2856 + type: WallAlmayer + components: + - pos: 7.5,-18.5 + parent: 30 + type: Transform +- uid: 2857 + type: WallAlmayer + components: + - pos: 9.5,-18.5 + parent: 30 + type: Transform +- uid: 2858 + type: WallAlmayer + components: + - pos: 8.5,-18.5 + parent: 30 + type: Transform +- uid: 2859 + type: WallAlmayer + components: + - pos: 8.5,-16.5 + parent: 30 + type: Transform +- uid: 2860 + type: AirlockGlassAlpha + components: + - pos: 16.5,-15.5 + parent: 30 + type: Transform +- uid: 2861 + type: WindowAlmayer + components: + - pos: 12.5,-23.5 + parent: 30 + type: Transform +- uid: 2862 + type: ClosetEmergencyFilledRandom + components: + - pos: 17.5,-17.5 + parent: 30 + type: Transform +- uid: 2863 + type: WallAlmayer + components: + - pos: 16.5,-18.5 + parent: 30 + type: Transform +- uid: 2864 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-16.5 + parent: 30 + type: Transform +- uid: 2865 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-18.5 + parent: 30 + type: Transform +- uid: 2866 + type: Grille + components: + - pos: 24.5,-17.5 + parent: 30 + type: Transform +- uid: 2867 + type: WallAlmayer + components: + - pos: 16.5,-17.5 + parent: 30 + type: Transform +- uid: 2868 + type: CableApcExtension + components: + - pos: 14.5,-20.5 + parent: 30 + type: Transform +- uid: 2869 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-17.5 + parent: 30 + type: Transform +- uid: 2870 + type: Grille + components: + - pos: 12.5,-19.5 + parent: 30 + type: Transform +- uid: 2871 + type: Grille + components: + - pos: 24.5,-19.5 + parent: 30 + type: Transform +- uid: 2872 + type: WindowAlmayer + components: + - pos: 24.5,-22.5 + parent: 30 + type: Transform +- uid: 2873 + type: WindowAlmayer + components: + - pos: 24.5,-21.5 + parent: 30 + type: Transform +- uid: 2874 + type: WindowAlmayer + components: + - pos: 20.5,-22.5 + parent: 30 + type: Transform +- uid: 2875 + type: WindowAlmayer + components: + - pos: 16.5,-23.5 + parent: 30 + type: Transform +- uid: 2876 + type: PottedPlant22 + components: + - pos: 17.5,-16.5 + parent: 30 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 2877 + type: AirlockGlassAlpha + components: + - pos: 14.5,-18.5 + parent: 30 + type: Transform +- uid: 2878 + type: CableApcExtension + components: + - pos: 23.5,-20.5 + parent: 30 + type: Transform +- uid: 2879 + type: WindowAlmayer + components: + - pos: 20.5,-23.5 + parent: 30 + type: Transform +- uid: 2880 + type: WindowAlmayer + components: + - pos: 16.5,-24.5 + parent: 30 + type: Transform +- uid: 2881 + type: WindowAlmayer + components: + - pos: 24.5,-23.5 + parent: 30 + type: Transform +- uid: 2882 + type: Rack + components: + - pos: 15.5,-17.5 + parent: 30 + type: Transform +- uid: 2883 + type: PoweredSmallLight + components: + - pos: 12.5,-15.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2884 + type: WallAlmayer + components: + - pos: 16.5,-16.5 + parent: 30 + type: Transform +- uid: 2885 + type: WallAlmayer + components: + - pos: 22.5,-18.5 + parent: 30 + type: Transform +- uid: 2886 + type: WallAlmayer + components: + - pos: 21.5,-18.5 + parent: 30 + type: Transform +- uid: 2887 + type: ClosetMaintenanceFilledRandom + components: + - pos: 12.5,-17.5 + parent: 30 + type: Transform +- uid: 2888 + type: WindowAlmayer + components: + - pos: 12.5,-21.5 + parent: 30 + type: Transform +- uid: 2889 + type: RandomSpawner + components: + - pos: 21.5,-20.5 + parent: 30 + type: Transform +- uid: 2890 + type: WallAlmayer + components: + - pos: 23.5,-13.5 + parent: 30 + type: Transform +- uid: 2891 + type: WallAlmayer + components: + - pos: 24.5,-13.5 + parent: 30 + type: Transform +- uid: 2892 + type: WallAlmayer + components: + - pos: 24.5,-12.5 + parent: 30 + type: Transform +- uid: 2893 + type: WallAlmayer + components: + - pos: 24.5,-11.5 + parent: 30 + type: Transform +- uid: 2894 + type: WallAlmayer + components: + - pos: 24.5,-10.5 + parent: 30 + type: Transform +- uid: 2895 + type: CableApcExtension + components: + - pos: 23.5,-19.5 + parent: 30 + type: Transform +- uid: 2896 + type: CableApcExtension + components: + - pos: 23.5,-18.5 + parent: 30 + type: Transform +- uid: 2897 + type: WindowAlmayer + components: + - pos: 29.5,-15.5 + parent: 30 + type: Transform +- uid: 2898 + type: WindowAlmayer + components: + - pos: 26.5,-16.5 + parent: 30 + type: Transform +- uid: 2899 + type: WindowAlmayer + components: + - pos: 27.5,-16.5 + parent: 30 + type: Transform +- uid: 2900 + type: WindowAlmayer + components: + - pos: 25.5,-16.5 + parent: 30 + type: Transform +- uid: 2901 + type: CableApcExtension + components: + - pos: 23.5,-17.5 + parent: 30 + type: Transform +- uid: 2902 + type: WindowAlmayer + components: + - pos: 29.5,-14.5 + parent: 30 + type: Transform +- uid: 2903 + type: WindowAlmayer + components: + - pos: 27.5,-15.5 + parent: 30 + type: Transform +- uid: 2904 + type: WindowAlmayer + components: + - pos: 28.5,-15.5 + parent: 30 + type: Transform +- uid: 2905 + type: WindowAlmayer + components: + - pos: 29.5,-13.5 + parent: 30 + type: Transform +- uid: 2906 + type: WallAlmayer + components: + - pos: 29.5,-12.5 + parent: 30 + type: Transform +- uid: 2907 + type: AirlockGlassAlpha + components: + - pos: 21.5,-15.5 + parent: 30 + type: Transform +- uid: 2908 + type: WallAlmayer + components: + - pos: 29.5,-10.5 + parent: 30 + type: Transform +- uid: 2909 + type: WindowReinforcedDirectional + components: + - rot: 1.5707963267948966 rad + pos: 15.5,23.5 + parent: 30 + type: Transform +- uid: 2910 + type: WindowReinforcedDirectional + components: + - rot: 1.5707963267948966 rad + pos: 15.5,24.5 + parent: 30 + type: Transform +- uid: 2911 + type: WindowReinforcedDirectional + components: + - pos: 16.5,26.5 + parent: 30 + type: Transform +- uid: 2912 + type: WindowReinforcedDirectional + components: + - rot: 1.5707963267948966 rad + pos: 15.5,25.5 + parent: 30 + type: Transform +- uid: 2913 + type: WindowReinforcedDirectional + components: + - rot: 1.5707963267948966 rad + pos: 16.5,26.5 + parent: 30 + type: Transform +- uid: 2914 + type: WindowReinforcedDirectional + components: + - rot: 1.5707963267948966 rad + pos: 16.5,27.5 + parent: 30 + type: Transform +- uid: 2915 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 21.5,26.5 + parent: 30 + type: Transform +- uid: 2916 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 21.5,27.5 + parent: 30 + type: Transform +- uid: 2917 + type: WindowReinforcedDirectional + components: + - pos: 21.5,26.5 + parent: 30 + type: Transform +- uid: 2918 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 22.5,25.5 + parent: 30 + type: Transform +- uid: 2919 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 22.5,24.5 + parent: 30 + type: Transform +- uid: 2920 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: 22.5,23.5 + parent: 30 + type: Transform +- uid: 2921 + type: WindowAlmayer + components: + - pos: 20.5,-24.5 + parent: 30 + type: Transform +- uid: 2922 + type: WindowAlmayer + components: + - pos: 22.5,-22.5 + parent: 30 + type: Transform +- uid: 2923 + type: WindowAlmayer + components: + - pos: 22.5,-23.5 + parent: 30 + type: Transform +- uid: 2924 + type: WallAlmayer + components: + - pos: 21.5,-17.5 + parent: 30 + type: Transform +- uid: 2925 + type: PosterLegitUeNo + components: + - pos: 21.5,-18.5 + parent: 30 + type: Transform +- uid: 2926 + type: WindowAlmayer + components: + - pos: 22.5,-24.5 + parent: 30 + type: Transform +- uid: 2927 + type: Grille + components: + - pos: 12.5,-21.5 + parent: 30 + type: Transform +- uid: 2928 + type: Grille + components: + - pos: 12.5,-22.5 + parent: 30 + type: Transform +- uid: 2929 + type: PosterLegitNanotrasenLogo + components: + - pos: 16.5,-18.5 + parent: 30 + type: Transform +- uid: 2930 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-7.5 + parent: 30 + type: Transform +- uid: 2931 + type: WallAlmayer + components: + - pos: 24.5,-16.5 + parent: 30 + type: Transform +- uid: 2932 + type: WindowAlmayer + components: + - pos: 12.5,-19.5 + parent: 30 + type: Transform +- uid: 2933 + type: Catwalk + components: + - pos: 22.5,-15.5 + parent: 30 + type: Transform +- uid: 2934 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-16.5 + parent: 30 + type: Transform +- uid: 2935 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-16.5 + parent: 30 + type: Transform +- uid: 2936 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-16.5 + parent: 30 + type: Transform +- uid: 2937 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-15.5 + parent: 30 + type: Transform +- uid: 2938 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-15.5 + parent: 30 + type: Transform +- uid: 2939 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-15.5 + parent: 30 + type: Transform +- uid: 2940 + type: Grille + components: + - pos: 29.5,-14.5 + parent: 30 + type: Transform +- uid: 2941 + type: Grille + components: + - pos: 29.5,-13.5 + parent: 30 + type: Transform +- uid: 2942 + type: HandheldHealthAnalyzer + components: + - pos: -1.5512757,-15.574924 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2943 + type: FirelockEdge + components: + - pos: 18.5,-5.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2944 + type: FirelockEdge + components: + - pos: 19.5,-5.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2945 + type: AirlockGlassAlpha + components: + - pos: 18.5,-13.5 + parent: 30 + type: Transform +- uid: 2946 + type: AirlockGlassAlpha + components: + - pos: 19.5,-13.5 + parent: 30 + type: Transform +- uid: 2947 + type: FirelockEdge + components: + - pos: 18.5,-12.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2948 + type: FirelockEdge + components: + - pos: 19.5,-12.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2949 + type: FirelockGlass + components: + - pos: -28.5,-1.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 2950 + type: Catwalk + components: + - pos: 15.5,-13.5 + parent: 30 + type: Transform +- uid: 2951 + type: DisposalUnit + components: + - pos: 17.5,-14.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 2952 + type: WindowAlmayer + components: + - pos: 16.5,-22.5 + parent: 30 + type: Transform +- uid: 2953 + type: WindowAlmayer + components: + - pos: 14.5,-24.5 + parent: 30 + type: Transform +- uid: 2954 + type: WindowAlmayer + components: + - pos: 14.5,-23.5 + parent: 30 + type: Transform +- uid: 2955 + type: WindowAlmayer + components: + - pos: 18.5,-23.5 + parent: 30 + type: Transform +- uid: 2956 + type: WindowAlmayer + components: + - pos: 17.5,-23.5 + parent: 30 + type: Transform +- uid: 2957 + type: WindowAlmayer + components: + - pos: 14.5,-22.5 + parent: 30 + type: Transform +- uid: 2958 + type: VendingMachineSnack + components: + - pos: 20.5,-14.5 + parent: 30 + type: Transform +- uid: 2959 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2960 + type: Catwalk + components: + - pos: 23.5,-15.5 + parent: 30 + type: Transform +- uid: 2961 + type: CheapRollerBed + components: + - pos: 1.4785833,-8.943417 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2962 + type: CheapRollerBed + components: + - pos: 1.4785833,-9.396542 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2963 + type: CheapRollerBed + components: + - pos: 8.472589,-2.0432668 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2964 + type: CheapRollerBed + components: + - pos: 8.472589,-2.4338918 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 2965 + type: WallAlmayer + components: + - pos: 24.5,-24.5 + parent: 30 + type: Transform +- uid: 2966 + type: DisposalTrunk + components: + - rot: 3.141592653589793 rad + pos: 32.5,0.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 2967 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 32.5,1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 2968 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: 17.5,0.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2969 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-2.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2970 + type: Poweredlight + components: + - pos: 16.5,-0.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2971 + type: GasPipeStraight + components: + - pos: 19.5,-7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2972 + type: GasPipeStraight + components: + - pos: 19.5,-8.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2973 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2974 + type: GasPipeStraight + components: + - pos: 19.5,-10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2975 + type: GasPipeStraight + components: + - pos: 19.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2976 + type: GasPipeStraight + components: + - pos: 19.5,-12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2977 + type: GasPipeStraight + components: + - pos: 19.5,-14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2978 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2979 + type: GasPipeStraight + components: + - pos: 19.5,-16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2980 + type: GasPipeStraight + components: + - pos: 19.5,-13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2981 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2982 + type: GasPipeStraight + components: + - pos: 19.5,-18.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2983 + type: WallAlmayer + components: + - pos: 12.5,-24.5 + parent: 30 + type: Transform +- uid: 2984 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 2985 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,-7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2986 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,-8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2987 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,-9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2988 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2989 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2990 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2991 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2992 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 18.5,-14.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2993 + type: GasPipeStraight + components: + - pos: 18.5,-15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2994 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: 18.5,-16.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 2995 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2996 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2997 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2998 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 2999 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3000 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3001 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3002 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3003 + type: GasPipeTJunction + components: + - pos: 26.5,-14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3004 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: 25.5,-14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3005 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3006 + type: GasVentPump + components: + - pos: 25.5,-13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3007 + type: GasVentPump + components: + - pos: 27.5,-13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3008 + type: GasPipeFourway + components: + - pos: 19.5,-9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3009 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3010 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3011 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3012 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3013 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3014 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3015 + type: WindowAlmayer + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-11.5 + parent: 30 + type: Transform +- uid: 3016 + type: WindowAlmayer + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-8.5 + parent: 30 + type: Transform +- uid: 3017 + type: AirlockGlassAlpha + components: + - pos: 20.5,-10.5 + parent: 30 + type: Transform +- uid: 3018 + type: AirlockGlassAlpha + components: + - pos: 20.5,-9.5 + parent: 30 + type: Transform +- uid: 3019 + type: Grille + components: + - pos: 20.5,-11.5 + parent: 30 + type: Transform +- uid: 3020 + type: Grille + components: + - pos: 20.5,-8.5 + parent: 30 + type: Transform +- uid: 3021 + type: WallAlmayer + components: + - pos: 10.5,-18.5 + parent: 30 + type: Transform +- uid: 3022 + type: SubstationBasic + components: + - pos: 10.5,-17.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 3023 + type: WallAlmayer + components: + - pos: 11.5,-18.5 + parent: 30 + type: Transform +- uid: 3024 + type: WallAlmayer + components: + - pos: 11.5,-17.5 + parent: 30 + type: Transform +- uid: 3025 + type: AirlockGlassAlpha + components: + - pos: 8.5,-17.5 + parent: 30 + type: Transform +- uid: 3026 + type: CableMV + components: + - pos: 10.5,-17.5 + parent: 30 + type: Transform +- uid: 3027 + type: CableMV + components: + - pos: 9.5,-17.5 + parent: 30 + type: Transform +- uid: 3028 + type: CableMV + components: + - pos: 8.5,-17.5 + parent: 30 + type: Transform +- uid: 3029 + type: CableMV + components: + - pos: 7.5,-17.5 + parent: 30 + type: Transform +- uid: 3030 + type: CableMV + components: + - pos: 6.5,-17.5 + parent: 30 + type: Transform +- uid: 3031 + type: CableMV + components: + - pos: 6.5,-16.5 + parent: 30 + type: Transform +- uid: 3032 + type: CableMV + components: + - pos: 6.5,-15.5 + parent: 30 + type: Transform +- uid: 3033 + type: CableMV + components: + - pos: 6.5,-14.5 + parent: 30 + type: Transform +- uid: 3034 + type: CableMV + components: + - pos: 6.5,-13.5 + parent: 30 + type: Transform +- uid: 3035 + type: CableMV + components: + - pos: 6.5,-12.5 + parent: 30 + type: Transform +- uid: 3036 + type: CableMV + components: + - pos: 5.5,-12.5 + parent: 30 + type: Transform +- uid: 3037 + type: CableMV + components: + - pos: 4.5,-12.5 + parent: 30 + type: Transform +- uid: 3038 + type: CableMV + components: + - pos: 3.5,-12.5 + parent: 30 + type: Transform +- uid: 3039 + type: CableMV + components: + - pos: 1.5,-12.5 + parent: 30 + type: Transform +- uid: 3040 + type: CableMV + components: + - pos: 2.5,-12.5 + parent: 30 + type: Transform +- uid: 3041 + type: CableMV + components: + - pos: 1.5,-11.5 + parent: 30 + type: Transform +- uid: 3042 + type: CableApcExtension + components: + - pos: 2.5,-9.5 + parent: 30 + type: Transform +- uid: 3043 + type: AirlockGlassAlpha + components: + - pos: -0.5,-7.5 + parent: 30 + type: Transform +- uid: 3044 + type: TableReinforced + components: + - pos: -0.5,-6.5 + parent: 30 + type: Transform +- uid: 3045 + type: WindoorChemistryLocked + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 30 + type: Transform +- uid: 3046 + type: Grille + components: + - pos: -0.5,-5.5 + parent: 30 + type: Transform +- uid: 3047 + type: DisposalUnit + components: + - pos: 0.5,-9.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3048 + type: FirelockGlass + components: + - pos: 6.5,-3.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 3049 + type: CableMV + components: + - pos: 5.5,-11.5 + parent: 30 + type: Transform +- uid: 3050 + type: CableMV + components: + - pos: 5.5,-10.5 + parent: 30 + type: Transform +- uid: 3051 + type: CableMV + components: + - pos: 5.5,-9.5 + parent: 30 + type: Transform +- uid: 3052 + type: CableMV + components: + - pos: 5.5,-8.5 + parent: 30 + type: Transform +- uid: 3053 + type: CableMV + components: + - pos: 5.5,-7.5 + parent: 30 + type: Transform +- uid: 3054 + type: CableMV + components: + - pos: 5.5,-6.5 + parent: 30 + type: Transform +- uid: 3055 + type: CableMV + components: + - pos: 5.5,-5.5 + parent: 30 + type: Transform +- uid: 3056 + type: CableMV + components: + - pos: 5.5,-4.5 + parent: 30 + type: Transform +- uid: 3057 + type: Grille + components: + - pos: 13.5,-9.5 + parent: 30 + type: Transform +- uid: 3058 + type: CableMV + components: + - pos: 5.5,-2.5 + parent: 30 + type: Transform +- uid: 3059 + type: CableMV + components: + - pos: 6.5,-2.5 + parent: 30 + type: Transform +- uid: 3060 + type: CableMV + components: + - pos: 7.5,-2.5 + parent: 30 + type: Transform +- uid: 3061 + type: CableMV + components: + - pos: 8.5,-2.5 + parent: 30 + type: Transform +- uid: 3062 + type: CableMV + components: + - pos: 9.5,-2.5 + parent: 30 + type: Transform +- uid: 3063 + type: CableMV + components: + - pos: 10.5,-2.5 + parent: 30 + type: Transform +- uid: 3064 + type: CableMV + components: + - pos: 12.5,-2.5 + parent: 30 + type: Transform +- uid: 3065 + type: CableMV + components: + - pos: 11.5,-2.5 + parent: 30 + type: Transform +- uid: 3066 + type: CableMV + components: + - pos: 13.5,-2.5 + parent: 30 + type: Transform +- uid: 3067 + type: CableMV + components: + - pos: 13.5,-1.5 + parent: 30 + type: Transform +- uid: 3068 + type: CableMV + components: + - pos: 13.5,-0.5 + parent: 30 + type: Transform +- uid: 3069 + type: CableMV + components: + - pos: 13.5,0.5 + parent: 30 + type: Transform +- uid: 3070 + type: CableMV + components: + - pos: 7.5,-15.5 + parent: 30 + type: Transform +- uid: 3071 + type: CableMV + components: + - pos: 8.5,-15.5 + parent: 30 + type: Transform +- uid: 3072 + type: CableMV + components: + - pos: 9.5,-15.5 + parent: 30 + type: Transform +- uid: 3073 + type: CableMV + components: + - pos: 10.5,-15.5 + parent: 30 + type: Transform +- uid: 3074 + type: CableMV + components: + - pos: 11.5,-15.5 + parent: 30 + type: Transform +- uid: 3075 + type: CableMV + components: + - pos: 12.5,-15.5 + parent: 30 + type: Transform +- uid: 3076 + type: CableMV + components: + - pos: 13.5,-15.5 + parent: 30 + type: Transform +- uid: 3077 + type: CableMV + components: + - pos: 14.5,-15.5 + parent: 30 + type: Transform +- uid: 3078 + type: CableMV + components: + - pos: 15.5,-15.5 + parent: 30 + type: Transform +- uid: 3079 + type: CableMV + components: + - pos: 15.5,-14.5 + parent: 30 + type: Transform +- uid: 3080 + type: CableMV + components: + - pos: 15.5,-13.5 + parent: 30 + type: Transform +- uid: 3081 + type: CableMV + components: + - pos: 15.5,-12.5 + parent: 30 + type: Transform +- uid: 3082 + type: CableMV + components: + - pos: 15.5,-11.5 + parent: 30 + type: Transform +- uid: 3083 + type: CableMV + components: + - pos: 15.5,-10.5 + parent: 30 + type: Transform +- uid: 3084 + type: CableMV + components: + - pos: 15.5,-9.5 + parent: 30 + type: Transform +- uid: 3085 + type: CableMV + components: + - pos: 15.5,-8.5 + parent: 30 + type: Transform +- uid: 3086 + type: CableMV + components: + - pos: 15.5,-6.5 + parent: 30 + type: Transform +- uid: 3087 + type: CableMV + components: + - pos: 15.5,-7.5 + parent: 30 + type: Transform +- uid: 3088 + type: CableMV + components: + - pos: 15.5,-5.5 + parent: 30 + type: Transform +- uid: 3089 + type: CableMV + components: + - pos: 15.5,-4.5 + parent: 30 + type: Transform +- uid: 3090 + type: CableMV + components: + - pos: 16.5,-4.5 + parent: 30 + type: Transform +- uid: 3091 + type: CableMV + components: + - pos: 17.5,-4.5 + parent: 30 + type: Transform +- uid: 3092 + type: CableMV + components: + - pos: 18.5,-4.5 + parent: 30 + type: Transform +- uid: 3093 + type: CableMV + components: + - pos: 18.5,-3.5 + parent: 30 + type: Transform +- uid: 3094 + type: CableMV + components: + - pos: 18.5,-2.5 + parent: 30 + type: Transform +- uid: 3095 + type: CableMV + components: + - pos: 18.5,-1.5 + parent: 30 + type: Transform +- uid: 3096 + type: CableMV + components: + - pos: 17.5,-1.5 + parent: 30 + type: Transform +- uid: 3097 + type: CableMV + components: + - pos: 17.5,-1.5 + parent: 30 + type: Transform +- uid: 3098 + type: CableMV + components: + - pos: 15.5,-1.5 + parent: 30 + type: Transform +- uid: 3099 + type: CableMV + components: + - pos: 16.5,-1.5 + parent: 30 + type: Transform +- uid: 3100 + type: CableMV + components: + - pos: 14.5,-1.5 + parent: 30 + type: Transform +- uid: 3101 + type: APCBasic + components: + - pos: 17.5,-13.5 + parent: 30 + type: Transform +- uid: 3102 + type: CableMV + components: + - pos: 16.5,-15.5 + parent: 30 + type: Transform +- uid: 3103 + type: CableMV + components: + - pos: 17.5,-15.5 + parent: 30 + type: Transform +- uid: 3104 + type: CableMV + components: + - pos: 17.5,-14.5 + parent: 30 + type: Transform +- uid: 3105 + type: CableMV + components: + - pos: 17.5,-13.5 + parent: 30 + type: Transform +- uid: 3106 + type: CableApcExtension + components: + - pos: 17.5,-13.5 + parent: 30 + type: Transform +- uid: 3107 + type: CableApcExtension + components: + - pos: 17.5,-14.5 + parent: 30 + type: Transform +- uid: 3108 + type: CableApcExtension + components: + - pos: 17.5,-15.5 + parent: 30 + type: Transform +- uid: 3109 + type: CableApcExtension + components: + - pos: 16.5,-15.5 + parent: 30 + type: Transform +- uid: 3110 + type: CableApcExtension + components: + - pos: 15.5,-15.5 + parent: 30 + type: Transform +- uid: 3111 + type: CableApcExtension + components: + - pos: 14.5,-15.5 + parent: 30 + type: Transform +- uid: 3112 + type: CableApcExtension + components: + - pos: 15.5,-14.5 + parent: 30 + type: Transform +- uid: 3113 + type: CableApcExtension + components: + - pos: 15.5,-13.5 + parent: 30 + type: Transform +- uid: 3114 + type: CableApcExtension + components: + - pos: 15.5,-12.5 + parent: 30 + type: Transform +- uid: 3115 + type: CableApcExtension + components: + - pos: 15.5,-11.5 + parent: 30 + type: Transform +- uid: 3116 + type: CableApcExtension + components: + - pos: 13.5,-15.5 + parent: 30 + type: Transform +- uid: 3117 + type: CableApcExtension + components: + - pos: 12.5,-15.5 + parent: 30 + type: Transform +- uid: 3118 + type: CableApcExtension + components: + - pos: 11.5,-15.5 + parent: 30 + type: Transform +- uid: 3119 + type: CableApcExtension + components: + - pos: 10.5,-15.5 + parent: 30 + type: Transform +- uid: 3120 + type: CableApcExtension + components: + - pos: 9.5,-15.5 + parent: 30 + type: Transform +- uid: 3121 + type: CableApcExtension + components: + - pos: 8.5,-15.5 + parent: 30 + type: Transform +- uid: 3122 + type: CableApcExtension + components: + - pos: 7.5,-15.5 + parent: 30 + type: Transform +- uid: 3123 + type: CableApcExtension + components: + - pos: 7.5,-16.5 + parent: 30 + type: Transform +- uid: 3124 + type: CableApcExtension + components: + - pos: 7.5,-17.5 + parent: 30 + type: Transform +- uid: 3125 + type: CableApcExtension + components: + - pos: 8.5,-17.5 + parent: 30 + type: Transform +- uid: 3126 + type: CableApcExtension + components: + - pos: 9.5,-17.5 + parent: 30 + type: Transform +- uid: 3127 + type: CableApcExtension + components: + - pos: 18.5,-15.5 + parent: 30 + type: Transform +- uid: 3128 + type: CableApcExtension + components: + - pos: 18.5,-16.5 + parent: 30 + type: Transform +- uid: 3129 + type: CableApcExtension + components: + - pos: 18.5,-17.5 + parent: 30 + type: Transform +- uid: 3130 + type: CableApcExtension + components: + - pos: 18.5,-18.5 + parent: 30 + type: Transform +- uid: 3131 + type: SignDirectionalEvac + components: + - pos: 20.5,0.5 + parent: 30 + type: Transform +- uid: 3132 + type: AirlockGlassAlpha + components: + - pos: 23.5,-22.5 + parent: 30 + type: Transform +- uid: 3133 + type: AirlockGlassAlpha + components: + - pos: 21.5,-22.5 + parent: 30 + type: Transform +- uid: 3134 + type: CableApcExtension + components: + - pos: 19.5,-15.5 + parent: 30 + type: Transform +- uid: 3135 + type: CableApcExtension + components: + - pos: 20.5,-15.5 + parent: 30 + type: Transform +- uid: 3136 + type: CableApcExtension + components: + - pos: 21.5,-15.5 + parent: 30 + type: Transform +- uid: 3137 + type: CableApcExtension + components: + - pos: 23.5,-15.5 + parent: 30 + type: Transform +- uid: 3138 + type: CableApcExtension + components: + - pos: 22.5,-15.5 + parent: 30 + type: Transform +- uid: 3139 + type: CableApcExtension + components: + - pos: 24.5,-15.5 + parent: 30 + type: Transform +- uid: 3140 + type: CableApcExtension + components: + - pos: 25.5,-15.5 + parent: 30 + type: Transform +- uid: 3141 + type: CableApcExtension + components: + - pos: 26.5,-15.5 + parent: 30 + type: Transform +- uid: 3142 + type: CableApcExtension + components: + - pos: 26.5,-14.5 + parent: 30 + type: Transform +- uid: 3143 + type: CableApcExtension + components: + - pos: 26.5,-13.5 + parent: 30 + type: Transform +- uid: 3144 + type: CableApcExtension + components: + - pos: 26.5,-12.5 + parent: 30 + type: Transform +- uid: 3145 + type: CableApcExtension + components: + - pos: 26.5,-11.5 + parent: 30 + type: Transform +- uid: 3146 + type: CableApcExtension + components: + - pos: 26.5,-10.5 + parent: 30 + type: Transform +- uid: 3147 + type: CableApcExtension + components: + - pos: 27.5,-14.5 + parent: 30 + type: Transform +- uid: 3148 + type: CableApcExtension + components: + - pos: 28.5,-14.5 + parent: 30 + type: Transform +- uid: 3149 + type: CableApcExtension + components: + - pos: 28.5,-13.5 + parent: 30 + type: Transform +- uid: 3150 + type: CableApcExtension + components: + - pos: 28.5,-12.5 + parent: 30 + type: Transform +- uid: 3151 + type: CableApcExtension + components: + - pos: 28.5,-11.5 + parent: 30 + type: Transform +- uid: 3152 + type: CableApcExtension + components: + - pos: 28.5,-10.5 + parent: 30 + type: Transform +- uid: 3153 + type: CableApcExtension + components: + - pos: 29.5,-11.5 + parent: 30 + type: Transform +- uid: 3154 + type: CableApcExtension + components: + - pos: 25.5,-11.5 + parent: 30 + type: Transform +- uid: 3155 + type: CableApcExtension + components: + - pos: 18.5,-14.5 + parent: 30 + type: Transform +- uid: 3156 + type: CableApcExtension + components: + - pos: 18.5,-13.5 + parent: 30 + type: Transform +- uid: 3157 + type: CableApcExtension + components: + - pos: 18.5,-12.5 + parent: 30 + type: Transform +- uid: 3158 + type: CableApcExtension + components: + - pos: 18.5,-11.5 + parent: 30 + type: Transform +- uid: 3159 + type: CableApcExtension + components: + - pos: 18.5,-10.5 + parent: 30 + type: Transform +- uid: 3160 + type: CableApcExtension + components: + - pos: 18.5,-9.5 + parent: 30 + type: Transform +- uid: 3161 + type: CableApcExtension + components: + - pos: 18.5,-8.5 + parent: 30 + type: Transform +- uid: 3162 + type: CableApcExtension + components: + - pos: 18.5,-7.5 + parent: 30 + type: Transform +- uid: 3163 + type: CableApcExtension + components: + - pos: 18.5,-6.5 + parent: 30 + type: Transform +- uid: 3164 + type: CableApcExtension + components: + - pos: 18.5,-5.5 + parent: 30 + type: Transform +- uid: 3165 + type: CableApcExtension + components: + - pos: 18.5,-4.5 + parent: 30 + type: Transform +- uid: 3166 + type: CableApcExtension + components: + - pos: 18.5,-3.5 + parent: 30 + type: Transform +- uid: 3167 + type: CableApcExtension + components: + - pos: 18.5,-2.5 + parent: 30 + type: Transform +- uid: 3168 + type: CableApcExtension + components: + - pos: 18.5,-1.5 + parent: 30 + type: Transform +- uid: 3169 + type: CableApcExtension + components: + - pos: 18.5,-0.5 + parent: 30 + type: Transform +- uid: 3170 + type: CableApcExtension + components: + - pos: 18.5,0.5 + parent: 30 + type: Transform +- uid: 3171 + type: CableApcExtension + components: + - pos: 19.5,-1.5 + parent: 30 + type: Transform +- uid: 3172 + type: CableApcExtension + components: + - pos: 20.5,-1.5 + parent: 30 + type: Transform +- uid: 3173 + type: CableApcExtension + components: + - pos: 21.5,-1.5 + parent: 30 + type: Transform +- uid: 3174 + type: CableApcExtension + components: + - pos: 22.5,-1.5 + parent: 30 + type: Transform +- uid: 3175 + type: CableApcExtension + components: + - pos: 22.5,-2.5 + parent: 30 + type: Transform +- uid: 3176 + type: CableApcExtension + components: + - pos: 22.5,-3.5 + parent: 30 + type: Transform +- uid: 3177 + type: CableApcExtension + components: + - pos: 22.5,-0.5 + parent: 30 + type: Transform +- uid: 3178 + type: CableApcExtension + components: + - pos: 23.5,-1.5 + parent: 30 + type: Transform +- uid: 3179 + type: CableApcExtension + components: + - pos: 17.5,-1.5 + parent: 30 + type: Transform +- uid: 3180 + type: CableApcExtension + components: + - pos: 16.5,-1.5 + parent: 30 + type: Transform +- uid: 3181 + type: CableApcExtension + components: + - pos: 19.5,-9.5 + parent: 30 + type: Transform +- uid: 3182 + type: CableApcExtension + components: + - pos: 20.5,-9.5 + parent: 30 + type: Transform +- uid: 3183 + type: CableApcExtension + components: + - pos: 21.5,-9.5 + parent: 30 + type: Transform +- uid: 3184 + type: CableApcExtension + components: + - pos: 22.5,-9.5 + parent: 30 + type: Transform +- uid: 3185 + type: CableApcExtension + components: + - pos: 22.5,-8.5 + parent: 30 + type: Transform +- uid: 3186 + type: CableApcExtension + components: + - pos: 22.5,-7.5 + parent: 30 + type: Transform +- uid: 3187 + type: CableApcExtension + components: + - pos: 22.5,-6.5 + parent: 30 + type: Transform +- uid: 3188 + type: CableApcExtension + components: + - pos: 22.5,-5.5 + parent: 30 + type: Transform +- uid: 3189 + type: CableApcExtension + components: + - pos: 22.5,-10.5 + parent: 30 + type: Transform +- uid: 3190 + type: CableApcExtension + components: + - pos: 22.5,-11.5 + parent: 30 + type: Transform +- uid: 3191 + type: CableApcExtension + components: + - pos: 22.5,-12.5 + parent: 30 + type: Transform +- uid: 3192 + type: CableApcExtension + components: + - pos: 22.5,-13.5 + parent: 30 + type: Transform +- uid: 3193 + type: Grille + components: + - pos: 4.5,-10.5 + parent: 30 + type: Transform +- uid: 3194 + type: CableApcExtension + components: + - pos: -0.5,-7.5 + parent: 30 + type: Transform +- uid: 3195 + type: CableApcExtension + components: + - pos: -0.5,-8.5 + parent: 30 + type: Transform +- uid: 3196 + type: CableApcExtension + components: + - pos: -1.5,-8.5 + parent: 30 + type: Transform +- uid: 3197 + type: CableApcExtension + components: + - pos: -2.5,-8.5 + parent: 30 + type: Transform +- uid: 3198 + type: CableApcExtension + components: + - pos: -2.5,-7.5 + parent: 30 + type: Transform +- uid: 3199 + type: CableApcExtension + components: + - pos: -2.5,-6.5 + parent: 30 + type: Transform +- uid: 3200 + type: CableApcExtension + components: + - pos: -2.5,-5.5 + parent: 30 + type: Transform +- uid: 3201 + type: CableApcExtension + components: + - pos: -2.5,-4.5 + parent: 30 + type: Transform +- uid: 3202 + type: CableApcExtension + components: + - pos: 0.5,-8.5 + parent: 30 + type: Transform +- uid: 3203 + type: CableApcExtension + components: + - pos: 1.5,-8.5 + parent: 30 + type: Transform +- uid: 3204 + type: CableApcExtension + components: + - pos: 1.5,-7.5 + parent: 30 + type: Transform +- uid: 3205 + type: CableApcExtension + components: + - pos: 1.5,-6.5 + parent: 30 + type: Transform +- uid: 3206 + type: CableApcExtension + components: + - pos: 1.5,-5.5 + parent: 30 + type: Transform +- uid: 3207 + type: CableApcExtension + components: + - pos: 1.5,-9.5 + parent: 30 + type: Transform +- uid: 3208 + type: CableApcExtension + components: + - pos: 2.5,-10.5 + parent: 30 + type: Transform +- uid: 3209 + type: CableApcExtension + components: + - pos: 1.5,-11.5 + parent: 30 + type: Transform +- uid: 3210 + type: CableApcExtension + components: + - pos: 1.5,-12.5 + parent: 30 + type: Transform +- uid: 3211 + type: CableApcExtension + components: + - pos: 0.5,-12.5 + parent: 30 + type: Transform +- uid: 3212 + type: CableApcExtension + components: + - pos: -0.5,-12.5 + parent: 30 + type: Transform +- uid: 3213 + type: CableApcExtension + components: + - pos: -0.5,-13.5 + parent: 30 + type: Transform +- uid: 3214 + type: CableApcExtension + components: + - pos: -0.5,-14.5 + parent: 30 + type: Transform +- uid: 3215 + type: CableApcExtension + components: + - pos: -0.5,-15.5 + parent: 30 + type: Transform +- uid: 3216 + type: CableApcExtension + components: + - pos: 2.5,-12.5 + parent: 30 + type: Transform +- uid: 3217 + type: CableApcExtension + components: + - pos: 3.5,-12.5 + parent: 30 + type: Transform +- uid: 3218 + type: CableApcExtension + components: + - pos: 3.5,-13.5 + parent: 30 + type: Transform +- uid: 3219 + type: CableApcExtension + components: + - pos: 3.5,-14.5 + parent: 30 + type: Transform +- uid: 3220 + type: CableApcExtension + components: + - pos: 3.5,-15.5 + parent: 30 + type: Transform +- uid: 3221 + type: CableApcExtension + components: + - pos: 4.5,-12.5 + parent: 30 + type: Transform +- uid: 3222 + type: CableApcExtension + components: + - pos: 5.5,-12.5 + parent: 30 + type: Transform +- uid: 3223 + type: CableApcExtension + components: + - pos: 6.5,-12.5 + parent: 30 + type: Transform +- uid: 3224 + type: CableApcExtension + components: + - pos: 6.5,-13.5 + parent: 30 + type: Transform +- uid: 3225 + type: CableApcExtension + components: + - pos: 7.5,-12.5 + parent: 30 + type: Transform +- uid: 3226 + type: CableApcExtension + components: + - pos: 8.5,-12.5 + parent: 30 + type: Transform +- uid: 3227 + type: CableApcExtension + components: + - pos: 9.5,-12.5 + parent: 30 + type: Transform +- uid: 3228 + type: CableApcExtension + components: + - pos: 10.5,-12.5 + parent: 30 + type: Transform +- uid: 3229 + type: CableApcExtension + components: + - pos: 11.5,-12.5 + parent: 30 + type: Transform +- uid: 3230 + type: CableApcExtension + components: + - pos: 12.5,-12.5 + parent: 30 + type: Transform +- uid: 3231 + type: CableApcExtension + components: + - pos: 13.5,-12.5 + parent: 30 + type: Transform +- uid: 3232 + type: CableApcExtension + components: + - pos: 9.5,-11.5 + parent: 30 + type: Transform +- uid: 3233 + type: CableApcExtension + components: + - pos: 9.5,-10.5 + parent: 30 + type: Transform +- uid: 3234 + type: LockerMedicalFilled + components: + - pos: 12.5,-10.5 + parent: 30 + type: Transform +- uid: 3235 + type: CableApcExtension + components: + - pos: 9.5,-13.5 + parent: 30 + type: Transform +- uid: 3236 + type: CableApcExtension + components: + - pos: 12.5,-13.5 + parent: 30 + type: Transform +- uid: 3237 + type: CableApcExtension + components: + - pos: 12.5,-11.5 + parent: 30 + type: Transform +- uid: 3238 + type: CableApcExtension + components: + - pos: 12.5,-10.5 + parent: 30 + type: Transform +- uid: 3239 + type: VendingMachineMedical + components: + - pos: 13.5,-10.5 + parent: 30 + type: Transform +- uid: 3240 + type: CableApcExtension + components: + - pos: 13.5,0.5 + parent: 30 + type: Transform +- uid: 3241 + type: CableApcExtension + components: + - pos: 13.5,-0.5 + parent: 30 + type: Transform +- uid: 3242 + type: CableApcExtension + components: + - pos: 13.5,-1.5 + parent: 30 + type: Transform +- uid: 3243 + type: CableApcExtension + components: + - pos: 13.5,-2.5 + parent: 30 + type: Transform +- uid: 3244 + type: CableApcExtension + components: + - pos: 12.5,-1.5 + parent: 30 + type: Transform +- uid: 3245 + type: CableApcExtension + components: + - pos: 11.5,-1.5 + parent: 30 + type: Transform +- uid: 3246 + type: CableApcExtension + components: + - pos: 10.5,-1.5 + parent: 30 + type: Transform +- uid: 3247 + type: CableApcExtension + components: + - pos: 9.5,-1.5 + parent: 30 + type: Transform +- uid: 3248 + type: CableApcExtension + components: + - pos: 8.5,-1.5 + parent: 30 + type: Transform +- uid: 3249 + type: CableApcExtension + components: + - pos: 7.5,-1.5 + parent: 30 + type: Transform +- uid: 3250 + type: CableApcExtension + components: + - pos: 6.5,-1.5 + parent: 30 + type: Transform +- uid: 3251 + type: CableApcExtension + components: + - pos: 5.5,-1.5 + parent: 30 + type: Transform +- uid: 3252 + type: CableApcExtension + components: + - pos: 4.5,-1.5 + parent: 30 + type: Transform +- uid: 3253 + type: CableApcExtension + components: + - pos: 3.5,-1.5 + parent: 30 + type: Transform +- uid: 3254 + type: CableApcExtension + components: + - pos: 2.5,-1.5 + parent: 30 + type: Transform +- uid: 3255 + type: CableApcExtension + components: + - pos: 1.5,-1.5 + parent: 30 + type: Transform +- uid: 3256 + type: CableApcExtension + components: + - pos: 0.5,-1.5 + parent: 30 + type: Transform +- uid: 3257 + type: CableApcExtension + components: + - pos: -0.5,-1.5 + parent: 30 + type: Transform +- uid: 3258 + type: CableApcExtension + components: + - pos: -1.5,-1.5 + parent: 30 + type: Transform +- uid: 3259 + type: CableApcExtension + components: + - pos: -2.5,-1.5 + parent: 30 + type: Transform +- uid: 3260 + type: CableApcExtension + components: + - pos: -3.5,-1.5 + parent: 30 + type: Transform +- uid: 3261 + type: CableApcExtension + components: + - pos: -2.5,-2.5 + parent: 30 + type: Transform +- uid: 3262 + type: CableApcExtension + components: + - pos: 5.5,-2.5 + parent: 30 + type: Transform +- uid: 3263 + type: CableApcExtension + components: + - pos: 5.5,-3.5 + parent: 30 + type: Transform +- uid: 3264 + type: CableApcExtension + components: + - pos: 5.5,-4.5 + parent: 30 + type: Transform +- uid: 3265 + type: CableApcExtension + components: + - pos: 5.5,-5.5 + parent: 30 + type: Transform +- uid: 3266 + type: CableApcExtension + components: + - pos: 5.5,-6.5 + parent: 30 + type: Transform +- uid: 3267 + type: CableApcExtension + components: + - pos: 5.5,-6.5 + parent: 30 + type: Transform +- uid: 3268 + type: CableApcExtension + components: + - pos: 5.5,-7.5 + parent: 30 + type: Transform +- uid: 3269 + type: CableApcExtension + components: + - pos: 5.5,-8.5 + parent: 30 + type: Transform +- uid: 3270 + type: CableApcExtension + components: + - pos: 5.5,-9.5 + parent: 30 + type: Transform +- uid: 3271 + type: CableApcExtension + components: + - pos: 6.5,-6.5 + parent: 30 + type: Transform +- uid: 3272 + type: CableApcExtension + components: + - pos: 7.5,-6.5 + parent: 30 + type: Transform +- uid: 3273 + type: CableApcExtension + components: + - pos: 8.5,-6.5 + parent: 30 + type: Transform +- uid: 3274 + type: CableApcExtension + components: + - pos: 9.5,-6.5 + parent: 30 + type: Transform +- uid: 3275 + type: CableApcExtension + components: + - pos: 10.5,-6.5 + parent: 30 + type: Transform +- uid: 3276 + type: CableApcExtension + components: + - pos: 11.5,-6.5 + parent: 30 + type: Transform +- uid: 3277 + type: CableApcExtension + components: + - pos: 12.5,-6.5 + parent: 30 + type: Transform +- uid: 3278 + type: CableApcExtension + components: + - pos: 13.5,-6.5 + parent: 30 + type: Transform +- uid: 3279 + type: CableApcExtension + components: + - pos: 11.5,-5.5 + parent: 30 + type: Transform +- uid: 3280 + type: CableApcExtension + components: + - pos: 11.5,-4.5 + parent: 30 + type: Transform +- uid: 3281 + type: CableApcExtension + components: + - pos: 11.5,-3.5 + parent: 30 + type: Transform +- uid: 3282 + type: CableApcExtension + components: + - pos: 11.5,-2.5 + parent: 30 + type: Transform +- uid: 3283 + type: CableApcExtension + components: + - pos: 11.5,-7.5 + parent: 30 + type: Transform +- uid: 3284 + type: CableApcExtension + components: + - pos: -2.5,-0.5 + parent: 30 + type: Transform +- uid: 3285 + type: CableApcExtension + components: + - pos: -2.5,0.5 + parent: 30 + type: Transform +- uid: 3286 + type: CableApcExtension + components: + - pos: -2.5,3.5 + parent: 30 + type: Transform +- uid: 3287 + type: ClosetL3JanitorFilled + components: + - pos: 23.5,-0.5 + parent: 30 + type: Transform +- uid: 3288 + type: AirlockGlassAlpha + components: + - pos: 20.5,-1.5 + parent: 30 + type: Transform +- uid: 3289 + type: JanitorialTrolley + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-0.5 + parent: 30 + type: Transform + - containers: + storagebase: !type:Container + ents: [] + mop_slot: !type:ContainerSlot {} + trashbag_slot: !type:ContainerSlot {} + type: ContainerContainer +- uid: 3290 + type: VendingMachineJaniDrobe + components: + - pos: 21.5,-0.5 + parent: 30 + type: Transform +- uid: 3291 + type: MopBucket + components: + - pos: 21.491993,-2.5611682 + parent: 30 + type: Transform +- uid: 3292 + type: MopBucket + components: + - pos: 21.491993,-3.1392932 + parent: 30 + type: Transform +- uid: 3293 + type: Table + components: + - pos: 23.5,-3.5 + parent: 30 + type: Transform +- uid: 3294 + type: Poweredlight + components: + - pos: 22.5,-0.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3295 + type: Table + components: + - pos: 23.5,-2.5 + parent: 30 + type: Transform +- uid: 3296 + type: SprayBottleSpaceCleaner + components: + - pos: 23.320118,-2.2174182 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 3297 + type: SprayBottleSpaceCleaner + components: + - pos: 23.601368,-2.2486682 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 3298 + type: SprayBottleSpaceCleaner + components: + - pos: 23.476368,-2.3892932 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 3299 + type: Soap + components: + - pos: 23.460743,-1.4986682 + parent: 30 + type: Transform +- uid: 3300 + type: DisposalUnit + components: + - pos: 22.5,-3.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3301 + type: TrashBag + components: + - pos: 23.361088,-3.1549182 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3302 + type: TrashBag + components: + - pos: 23.642338,-3.1705432 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3303 + type: LightReplacer + components: + - pos: 23.564213,-2.6392932 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + light_replacer_storage: !type:Container + ents: [] + type: ContainerContainer +- uid: 3304 + type: BoxLightMixed + components: + - pos: 21.439213,-3.5924182 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3305 + type: MopItem + components: + - pos: 23.517338,-3.3267932 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 3306 + type: PosterLegitCleanliness + components: + - pos: 20.5,-0.5 + parent: 30 + type: Transform +- uid: 3307 + type: PoweredSmallLight + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-12.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3308 + type: PoweredSmallLight + components: + - pos: 7.5,-15.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3309 + type: PoweredSmallLight + components: + - pos: 2.5,-17.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3310 + type: PoweredSmallLight + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3311 + type: RandomSpawner + components: + - pos: 13.5,-17.5 + parent: 30 + type: Transform +- uid: 3312 + type: CableApcExtension + components: + - pos: 14.5,-17.5 + parent: 30 + type: Transform +- uid: 3313 + type: CableApcExtension + components: + - pos: -5.5,-16.5 + parent: 30 + type: Transform +- uid: 3314 + type: AirlockGlassAlpha + components: + - pos: 23.5,-18.5 + parent: 30 + type: Transform +- uid: 3315 + type: FirelockGlass + components: + - pos: 8.5,-15.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 3316 + type: WallAlmayer + components: + - pos: 16.5,16.5 + parent: 30 + type: Transform +- uid: 3317 + type: FirelockGlass + components: + - pos: 20.5,2.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 3318 + type: WindowAlmayer + components: + - pos: 7.5,-13.5 + parent: 30 + type: Transform +- uid: 3319 + type: TableCarpet + components: + - pos: 22.5,-8.5 + parent: 30 + type: Transform +- uid: 3320 + type: TableCarpet + components: + - pos: 22.5,-7.5 + parent: 30 + type: Transform +- uid: 3321 + type: TableCarpet + components: + - pos: 22.5,-6.5 + parent: 30 + type: Transform +- uid: 3322 + type: ChairOfficeDark + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-6.5 + parent: 30 + type: Transform +- uid: 3323 + type: ChairOfficeDark + components: + - pos: 22.5,-5.5 + parent: 30 + type: Transform +- uid: 3324 + type: ChairOfficeDark + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 30 + type: Transform +- uid: 3325 + type: ChairOfficeDark + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-7.5 + parent: 30 + type: Transform +- uid: 3326 + type: ChairOfficeDark + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 30 + type: Transform +- uid: 3327 + type: ChairOfficeDark + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 30 + type: Transform +- uid: 3328 + type: ChairOfficeDark + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-7.5 + parent: 30 + type: Transform +- uid: 3329 + type: d6Dice + components: + - pos: 22.328156,-6.60611 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 3330 + type: d6Dice + components: + - pos: 22.59378,-6.79361 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 3331 + type: d6Dice + components: + - pos: 22.328156,-6.91861 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 3332 + type: VendingMachineClothing + components: + - pos: 23.5,-11.5 + parent: 30 + type: Transform +- uid: 3333 + type: VendingMachineCigs + components: + - name: cigarette machine + type: MetaData + - pos: 23.5,-10.5 + parent: 30 + type: Transform +- uid: 3334 + type: ClothingNeckBling + components: + - pos: 22.50003,-8.152985 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 3335 + type: ClothingOuterCoatBomber + components: + - pos: 23.472637,-12.439182 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 3336 + type: TableWood + components: + - pos: 23.5,-12.5 + parent: 30 + type: Transform +- uid: 3337 + type: ClothingHeadHatFez + components: + - pos: 23.484406,-12.215485 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 3338 + type: ComfyChair + components: + - rot: 3.141592653589793 rad + pos: 22.5,-13.5 + parent: 30 + type: Transform +- uid: 3339 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-12.5 + parent: 30 + type: Transform +- uid: 3340 + type: PottedPlantRandom + components: + - pos: 21.5,-11.5 + parent: 30 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 3341 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-5.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3342 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3343 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-12.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3344 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3345 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3346 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3347 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3348 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3349 + type: VendingMachineCoffee + components: + - name: Hot drinks machine + type: MetaData + - pos: 15.5,-0.5 + parent: 30 + type: Transform +- uid: 3350 + type: Chair + components: + - rot: 3.141592653589793 rad + pos: 15.5,-2.5 + parent: 30 + type: Transform +- uid: 3351 + type: Chair + components: + - rot: 3.141592653589793 rad + pos: 16.5,-2.5 + parent: 30 + type: Transform +- uid: 3352 + type: Chair + components: + - pos: 16.5,-0.5 + parent: 30 + type: Transform +- uid: 3353 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 30 + type: Transform +- uid: 3354 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 30 + type: Transform +- uid: 3355 + type: CableMV + components: + - pos: -31.5,21.5 + parent: 30 + type: Transform +- uid: 3356 + type: WindowAlmayer + components: + - pos: 0.5,-4.5 + parent: 30 + type: Transform +- uid: 3357 + type: Rack + components: + - pos: 10.5,-13.5 + parent: 30 + type: Transform +- uid: 3358 + type: WallAlmayer + components: + - pos: 2.5,-4.5 + parent: 30 + type: Transform +- uid: 3359 + type: AirlockGlassAlpha + components: + - pos: -0.5,-19.5 + parent: 30 + type: Transform +- uid: 3360 + type: ClothingHandsGlovesNitrile + components: + - pos: 0.606864,-20.47118 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 3361 + type: CableHV + components: + - pos: 10.5,23.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3362 + type: CableHV + components: + - pos: 9.5,23.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3363 + type: CableHV + components: + - pos: 8.5,23.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3364 + type: CableHV + components: + - pos: 7.5,23.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3365 + type: CableHV + components: + - pos: 7.5,22.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3366 + type: CableHV + components: + - pos: 7.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3367 + type: CableHV + components: + - pos: 8.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3368 + type: CableHV + components: + - pos: 9.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3369 + type: CableHV + components: + - pos: 10.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3370 + type: CableHV + components: + - pos: 11.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3371 + type: CableHV + components: + - pos: 12.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3372 + type: CableHV + components: + - pos: 13.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3373 + type: CableHV + components: + - pos: 14.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3374 + type: CableHV + components: + - pos: 15.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3375 + type: CableHV + components: + - pos: 16.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3376 + type: CableHV + components: + - pos: 17.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3377 + type: CableHV + components: + - pos: 18.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3378 + type: CableHV + components: + - pos: 19.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3379 + type: CableHV + components: + - pos: 20.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3380 + type: CableHV + components: + - pos: 21.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3381 + type: CableHV + components: + - pos: 22.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3382 + type: CableHV + components: + - pos: 23.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3383 + type: CableHV + components: + - pos: 24.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3384 + type: CableHV + components: + - pos: 25.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3385 + type: CableHV + components: + - pos: 26.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3386 + type: CableHV + components: + - pos: 26.5,20.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3387 + type: CableHV + components: + - pos: 27.5,20.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3388 + type: CableHV + components: + - pos: 28.5,20.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3389 + type: CableHV + components: + - pos: 28.5,19.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3390 + type: CableHV + components: + - pos: 28.5,18.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3391 + type: CableHV + components: + - pos: 27.5,18.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3392 + type: CableHV + components: + - pos: 26.5,18.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3393 + type: CableHV + components: + - pos: 25.5,18.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3394 + type: CableHV + components: + - pos: 28.5,17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3395 + type: CableHV + components: + - pos: 28.5,16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3396 + type: CableHV + components: + - pos: 28.5,15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3397 + type: CableHV + components: + - pos: 28.5,14.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3398 + type: CableHV + components: + - pos: 28.5,13.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3399 + type: CableHV + components: + - pos: 28.5,12.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3400 + type: CableHV + components: + - pos: 28.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3401 + type: CableHV + components: + - pos: 28.5,10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3402 + type: CableHV + components: + - pos: 27.5,10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3403 + type: CableHV + components: + - pos: 26.5,10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3404 + type: CableHV + components: + - pos: 25.5,10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3405 + type: CableHV + components: + - pos: 24.5,10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3406 + type: CableHV + components: + - pos: 23.5,10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3407 + type: CableHV + components: + - pos: 22.5,10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3408 + type: CableHV + components: + - pos: 21.5,10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3409 + type: CableHV + components: + - pos: 20.5,10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3410 + type: CableHV + components: + - pos: 19.5,10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3411 + type: CableHV + components: + - pos: 19.5,9.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3412 + type: CableHV + components: + - pos: 19.5,8.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3413 + type: CableHV + components: + - pos: 19.5,7.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3414 + type: CableHV + components: + - pos: 19.5,6.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3415 + type: CableHV + components: + - pos: 19.5,5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3416 + type: CableHV + components: + - pos: 19.5,4.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3417 + type: CableHV + components: + - pos: 19.5,3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3418 + type: CableHV + components: + - pos: 20.5,3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3419 + type: CableHV + components: + - pos: 21.5,3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3420 + type: CableHV + components: + - pos: 22.5,3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3421 + type: CableHV + components: + - pos: 23.5,3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3422 + type: CableHV + components: + - pos: 24.5,3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3423 + type: CableHV + components: + - pos: 25.5,3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3424 + type: CableHV + components: + - pos: 26.5,3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3425 + type: CableHV + components: + - pos: 27.5,3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3426 + type: CableHV + components: + - pos: 28.5,3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3427 + type: CableHV + components: + - pos: 29.5,3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3428 + type: CableHV + components: + - pos: 30.5,3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3429 + type: CableHV + components: + - pos: 31.5,3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3430 + type: CableHV + components: + - pos: 31.5,2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3431 + type: CableHV + components: + - pos: 31.5,1.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3432 + type: CableHV + components: + - pos: 31.5,0.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3433 + type: CableHV + components: + - pos: 31.5,-0.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3434 + type: CableHV + components: + - pos: 31.5,-1.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3435 + type: CableHV + components: + - pos: 31.5,-2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3436 + type: CableHV + components: + - pos: 32.5,-2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3437 + type: CableHV + components: + - pos: 33.5,-2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3438 + type: CableHV + components: + - pos: 34.5,-2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3439 + type: CableHV + components: + - pos: 35.5,-2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3440 + type: CableHV + components: + - pos: 35.5,-1.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3441 + type: CableHV + components: + - pos: 30.5,0.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3442 + type: CableHV + components: + - pos: 29.5,0.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3443 + type: CableHV + components: + - pos: 28.5,0.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3444 + type: CableHV + components: + - pos: 28.5,-0.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3445 + type: CableHV + components: + - pos: 28.5,-1.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3446 + type: CableHV + components: + - pos: 28.5,-2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3447 + type: CableHV + components: + - pos: 28.5,-3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3448 + type: CableHV + components: + - pos: 28.5,-4.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3449 + type: CableHV + components: + - pos: 28.5,-5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3450 + type: CableHV + components: + - pos: 28.5,-6.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3451 + type: CableHV + components: + - pos: 28.5,-7.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3452 + type: CableHV + components: + - pos: 27.5,-7.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3453 + type: CableHV + components: + - pos: 26.5,-7.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3454 + type: CableHV + components: + - pos: 26.5,-8.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3455 + type: WallAlmayer + components: + - pos: 24.5,-8.5 + parent: 30 + type: Transform +- uid: 3456 + type: CableHV + components: + - pos: 26.5,-9.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3457 + type: CableHV + components: + - pos: 26.5,-11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3458 + type: CableHV + components: + - pos: 26.5,-12.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3459 + type: CableHV + components: + - pos: 26.5,-13.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3460 + type: CableHV + components: + - pos: 26.5,-14.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3461 + type: CableHV + components: + - pos: 20.5,-9.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3462 + type: CableHV + components: + - pos: 19.5,-9.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3463 + type: CableHV + components: + - pos: 19.5,-10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3464 + type: CableHV + components: + - pos: 19.5,-11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3465 + type: CableHV + components: + - pos: 19.5,-12.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3466 + type: CableHV + components: + - pos: 19.5,-13.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3467 + type: CableHV + components: + - pos: 19.5,-14.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3468 + type: CableHV + components: + - pos: 19.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3469 + type: CableHV + components: + - pos: 18.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3470 + type: CableHV + components: + - pos: 17.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3471 + type: CableHV + components: + - pos: 16.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3472 + type: CableHV + components: + - pos: 15.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3473 + type: CableHV + components: + - pos: 14.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3474 + type: CableHV + components: + - pos: 13.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3475 + type: CableHV + components: + - pos: 12.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3476 + type: CableHV + components: + - pos: 11.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3477 + type: CableHV + components: + - pos: 10.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3478 + type: CableHV + components: + - pos: 10.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3479 + type: CableHV + components: + - pos: 9.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3480 + type: CableHV + components: + - pos: 8.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3481 + type: CableHV + components: + - pos: 7.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3482 + type: CableHV + components: + - pos: 7.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3483 + type: CableHV + components: + - pos: 7.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3484 + type: CableHV + components: + - pos: 8.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3485 + type: CableHV + components: + - pos: 9.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3486 + type: CableHV + components: + - pos: 10.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3487 + type: CableHV + components: + - pos: 19.5,-8.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3488 + type: CableHV + components: + - pos: 19.5,-7.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3489 + type: CableHV + components: + - pos: 19.5,-6.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3490 + type: CableHV + components: + - pos: 19.5,-5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3491 + type: CableHV + components: + - pos: 19.5,-4.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3492 + type: CableHV + components: + - pos: 19.5,-3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3493 + type: CableHV + components: + - pos: 19.5,-2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3494 + type: CableHV + components: + - pos: 19.5,-1.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3495 + type: CableHV + components: + - pos: 19.5,-0.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3496 + type: CableHV + components: + - pos: 19.5,0.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3497 + type: CableHV + components: + - pos: 19.5,1.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3498 + type: CableHV + components: + - pos: 19.5,2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 3499 + type: Catwalk + components: + - pos: 23.5,21.5 + parent: 30 + type: Transform +- uid: 3500 + type: Catwalk + components: + - pos: 26.5,10.5 + parent: 30 + type: Transform +- uid: 3501 + type: Catwalk + components: + - pos: 25.5,10.5 + parent: 30 + type: Transform +- uid: 3502 + type: Catwalk + components: + - pos: 24.5,10.5 + parent: 30 + type: Transform +- uid: 3503 + type: Catwalk + components: + - pos: 23.5,10.5 + parent: 30 + type: Transform +- uid: 3504 + type: Catwalk + components: + - pos: 22.5,10.5 + parent: 30 + type: Transform +- uid: 3505 + type: Catwalk + components: + - pos: 21.5,10.5 + parent: 30 + type: Transform +- uid: 3506 + type: Catwalk + components: + - pos: 28.5,11.5 + parent: 30 + type: Transform +- uid: 3507 + type: Catwalk + components: + - pos: 28.5,12.5 + parent: 30 + type: Transform +- uid: 3508 + type: Catwalk + components: + - pos: 28.5,13.5 + parent: 30 + type: Transform +- uid: 3509 + type: Catwalk + components: + - pos: 28.5,14.5 + parent: 30 + type: Transform +- uid: 3510 + type: Catwalk + components: + - pos: 28.5,15.5 + parent: 30 + type: Transform +- uid: 3511 + type: Catwalk + components: + - pos: 28.5,16.5 + parent: 30 + type: Transform +- uid: 3512 + type: Catwalk + components: + - pos: 28.5,17.5 + parent: 30 + type: Transform +- uid: 3513 + type: Catwalk + components: + - pos: 28.5,18.5 + parent: 30 + type: Transform +- uid: 3514 + type: Catwalk + components: + - pos: 28.5,19.5 + parent: 30 + type: Transform +- uid: 3515 + type: ClosetMaintenanceFilledRandom + components: + - pos: 25.5,20.5 + parent: 30 + type: Transform +- uid: 3516 + type: DisposalTrunk + components: + - pos: 27.5,-11.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 3517 + type: DisposalBend + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-12.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3518 + type: DisposalBend + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-12.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3519 + type: ConveyorBelt + components: + - pos: 28.5,-11.5 + parent: 30 + type: Transform + - inputs: + Off: + - port: Middle + uid: 3526 + Forward: + - port: Left + uid: 3526 + Reverse: + - port: Right + uid: 3526 + type: SignalReceiver +- uid: 3520 + type: Recycler + components: + - pos: 28.5,-14.5 + parent: 30 + type: Transform + - inputs: + Off: + - port: Middle + uid: 3527 + Forward: + - port: Left + uid: 3527 + Reverse: + - port: Right + uid: 3527 + type: SignalReceiver +- uid: 3521 + type: ConveyorBelt + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-11.5 + parent: 30 + type: Transform + - inputs: + Off: + - port: Middle + uid: 3526 + Forward: + - port: Left + uid: 3526 + Reverse: + - port: Right + uid: 3526 + type: SignalReceiver +- uid: 3522 + type: ConveyorBelt + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-11.5 + parent: 30 + type: Transform + - inputs: + Off: + - port: Middle + uid: 3526 + Forward: + - port: Left + uid: 3526 + Reverse: + - port: Right + uid: 3526 + type: SignalReceiver +- uid: 3523 + type: ConveyorBelt + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-11.5 + parent: 30 + type: Transform + - inputs: + Off: + - port: Middle + uid: 3526 + Forward: + - port: Left + uid: 3526 + Reverse: + - port: Right + uid: 3526 + type: SignalReceiver +- uid: 3524 + type: ConveyorBelt + components: + - pos: 28.5,-12.5 + parent: 30 + type: Transform + - inputs: + Off: + - port: Middle + uid: 3526 + Forward: + - port: Left + uid: 3526 + Reverse: + - port: Right + uid: 3526 + type: SignalReceiver +- uid: 3525 + type: ConveyorBelt + components: + - pos: 28.5,-13.5 + parent: 30 + type: Transform + - inputs: + Off: + - port: Middle + uid: 3526 + Forward: + - port: Left + uid: 3526 + Reverse: + - port: Right + uid: 3526 + type: SignalReceiver +- uid: 3526 + type: TwoWayLever + components: + - pos: 25.5,-12.5 + parent: 30 + type: Transform + - outputs: + Middle: + - port: Off + uid: 3523 + - port: Off + uid: 3522 + - port: Off + uid: 3521 + - port: Off + uid: 3519 + - port: Off + uid: 3524 + - port: Off + uid: 3525 + Right: + - port: Reverse + uid: 3523 + - port: Reverse + uid: 3522 + - port: Reverse + uid: 3521 + - port: Reverse + uid: 3519 + - port: Reverse + uid: 3524 + - port: Reverse + uid: 3525 + Left: + - port: Forward + uid: 3523 + - port: Forward + uid: 3522 + - port: Forward + uid: 3521 + - port: Forward + uid: 3519 + - port: Forward + uid: 3524 + - port: Forward + uid: 3525 + type: SignalTransmitter +- uid: 3527 + type: TwoWayLever + components: + - pos: 27.5,-12.5 + parent: 30 + type: Transform + - outputs: + Middle: + - port: Off + uid: 3520 + Right: + - port: Reverse + uid: 3520 + Left: + - port: Forward + uid: 3520 + type: SignalTransmitter +- uid: 3528 + type: WallAlmayer + components: + - pos: 29.5,-11.5 + parent: 30 + type: Transform +- uid: 3529 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-12.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3530 + type: Poweredlight + components: + - pos: 21.5,16.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3531 + type: Poweredlight + components: + - pos: 23.5,16.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3532 + type: Poweredlight + components: + - pos: 25.5,16.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3533 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: 25.5,12.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3534 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: 23.5,12.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3535 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: 21.5,12.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3536 + type: PoweredSmallLight + components: + - pos: 25.5,21.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3537 + type: PoweredSmallLight + components: + - pos: 24.5,10.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3538 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-2.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3539 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-2.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3540 + type: PoweredSmallLight + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-6.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3541 + type: PoweredSmallLight + components: + - pos: 24.5,-14.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3542 + type: WindowAlmayer + components: + - pos: -0.5,-21.5 + parent: 30 + type: Transform +- uid: 3543 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-7.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3544 + type: DisposalPipe + components: + - pos: 19.5,7.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3545 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: 20.5,20.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3546 + type: Poweredlight + components: + - pos: 17.5,-14.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3547 + type: Poweredlight + components: + - pos: 20.5,-14.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3548 + type: Grille + components: + - pos: 12.5,-23.5 + parent: 30 + type: Transform +- uid: 3549 + type: WindowAlmayer + components: + - pos: 19.5,-23.5 + parent: 30 + type: Transform +- uid: 3550 + type: DisposalBend + components: + - pos: 32.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3551 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 31.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3552 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 30.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3553 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 29.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3554 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 28.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3555 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 27.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3556 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 26.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3557 + type: DisposalJunction + components: + - rot: -1.5707963267948966 rad + pos: 25.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 3558 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 25.5,3.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3559 + type: DisposalTrunk + components: + - pos: 25.5,4.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 3560 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 24.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3561 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 23.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3562 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3563 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 21.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3564 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 20.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3565 + type: DisposalJunctionFlipped + components: + - pos: 19.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 3566 + type: DisposalPipe + components: + - pos: 19.5,1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3567 + type: DisposalPipe + components: + - pos: 19.5,0.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3568 + type: DisposalPipe + components: + - pos: 19.5,-0.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3569 + type: DisposalJunctionFlipped + components: + - pos: 19.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 3570 + type: DisposalJunction + components: + - pos: 19.5,-2.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 3571 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3572 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3573 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 22.5,-2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3574 + type: DisposalBend + components: + - pos: 22.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3575 + type: DisposalTrunk + components: + - rot: 3.141592653589793 rad + pos: 22.5,-3.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 3576 + type: DisposalBend + components: + - rot: 3.141592653589793 rad + pos: 18.5,-2.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3577 + type: DisposalBend + components: + - pos: 18.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3578 + type: DisposalUnit + components: + - pos: 7.5,-0.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3579 + type: DisposalTrunk + components: + - pos: 7.5,-0.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 3580 + type: DisposalUnit + components: + - pos: 8.5,-10.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3581 + type: DisposalTrunk + components: + - pos: 8.5,-10.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 3582 + type: DisposalPipe + components: + - pos: 8.5,-11.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3583 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3584 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3585 + type: DisposalJunctionFlipped + components: + - rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 3586 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3587 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3588 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3589 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3590 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3591 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3592 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3593 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3594 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3595 + type: DisposalPipe + components: + - pos: 5.5,-2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3596 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3597 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3598 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3599 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3600 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3601 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3602 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3603 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3604 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3605 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3606 + type: DisposalBend + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3607 + type: DisposalJunctionFlipped + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 3608 + type: DisposalBend + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3609 + type: DisposalBend + components: + - rot: 3.141592653589793 rad + pos: 5.5,-12.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3610 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 19.5,-3.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3611 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 19.5,-4.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3612 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 19.5,-5.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3613 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 19.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3614 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 19.5,-7.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3615 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 19.5,-8.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3616 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 19.5,-9.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3617 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 19.5,-10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3618 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 19.5,-11.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3619 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 19.5,-12.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3620 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 19.5,-13.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3621 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 19.5,-14.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3622 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-15.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3623 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-15.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3624 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-15.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3625 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-15.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3626 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-15.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3627 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3628 + type: DisposalPipe + components: + - pos: 26.5,-14.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3629 + type: DisposalPipe + components: + - pos: 26.5,-13.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3630 + type: DisposalBend + components: + - rot: 3.141592653589793 rad + pos: 19.5,-15.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3631 + type: DisposalBend + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-15.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3632 + type: DisposalTrunk + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 3633 + type: DisposalBend + components: + - pos: 1.5,-9.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3634 + type: DisposalBend + components: + - rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3635 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3636 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3637 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3638 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3639 + type: DisposalJunction + components: + - pos: 19.5,3.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 3640 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 19.5,4.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3641 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 19.5,5.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3642 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: 19.5,6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3643 + type: WallAlmayer + components: + - pos: 16.5,9.5 + parent: 30 + type: Transform +- uid: 3644 + type: WallAlmayer + components: + - pos: 16.5,10.5 + parent: 30 + type: Transform +- uid: 3645 + type: DisposalJunctionFlipped + components: + - pos: 19.5,20.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 3646 + type: DisposalPipe + components: + - pos: 19.5,8.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3647 + type: DisposalPipe + components: + - pos: 19.5,9.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3648 + type: DisposalPipe + components: + - pos: 19.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3649 + type: DisposalPipe + components: + - pos: 19.5,11.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3650 + type: DisposalPipe + components: + - pos: 19.5,12.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3651 + type: DisposalPipe + components: + - pos: 19.5,13.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3652 + type: DisposalPipe + components: + - pos: 19.5,14.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3653 + type: DisposalPipe + components: + - pos: 19.5,15.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3654 + type: DisposalPipe + components: + - pos: 19.5,16.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3655 + type: DisposalPipe + components: + - pos: 19.5,17.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3656 + type: DisposalPipe + components: + - pos: 19.5,18.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3657 + type: DisposalPipe + components: + - pos: 19.5,19.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3658 + type: WallAlmayer + components: + - pos: 16.5,18.5 + parent: 30 + type: Transform +- uid: 3659 + type: DisposalBend + components: + - pos: 19.5,21.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3660 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 17.5,21.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3661 + type: CableApcExtension + components: + - pos: 9.5,16.5 + parent: 30 + type: Transform +- uid: 3662 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 18.5,21.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3663 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 16.5,21.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3664 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 15.5,21.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3665 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 14.5,21.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3666 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 13.5,21.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3667 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 12.5,21.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3668 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 11.5,21.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3669 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 10.5,21.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3670 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 9.5,21.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3671 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 8.5,21.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3672 + type: DisposalJunction + components: + - rot: 1.5707963267948966 rad + pos: 7.5,21.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 3673 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 5.5,22.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3674 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 4.5,22.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3675 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 3.5,22.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3676 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 2.5,22.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3677 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 1.5,22.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3678 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 0.5,22.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3679 + type: DisposalBend + components: + - rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3680 + type: DisposalBend + components: + - pos: 6.5,22.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3681 + type: DisposalBend + components: + - rot: 3.141592653589793 rad + pos: -0.5,22.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3682 + type: DisposalBend + components: + - rot: 1.5707963267948966 rad + pos: -0.5,25.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3683 + type: DisposalPipe + components: + - pos: -0.5,23.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3684 + type: DisposalPipe + components: + - pos: -0.5,24.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3685 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 0.5,25.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3686 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 1.5,25.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3687 + type: DisposalTrunk + components: + - rot: -1.5707963267948966 rad + pos: 2.5,25.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 3688 + type: GasPipeStraight + components: + - pos: 14.5,15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3689 + type: GasPipeStraight + components: + - pos: 14.5,13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3690 + type: GasVentPump + components: + - pos: 5.5,15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3691 + type: DisposalTrunk + components: + - rot: -1.5707963267948966 rad + pos: 20.5,20.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 3692 + type: DisposalUnit + components: + - pos: 20.5,20.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3693 + type: GasPipeStraight + components: + - pos: 14.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3694 + type: WallAlmayer + components: + - pos: 16.5,17.5 + parent: 30 + type: Transform +- uid: 3695 + type: CableApcExtension + components: + - pos: 12.5,6.5 + parent: 30 + type: Transform +- uid: 3696 + type: CableHV + components: + - pos: -6.5,-22.5 + parent: 30 + type: Transform +- uid: 3697 + type: SignalButton + components: + - pos: 13.5,8.5 + parent: 30 + type: Transform + - fixtures: [] + type: Fixtures + - outputs: + Pressed: + - port: Toggle + uid: 1982 + - port: Toggle + uid: 1981 + - port: Toggle + uid: 1985 + - port: Toggle + uid: 1983 + - port: Toggle + uid: 711 + - port: Toggle + uid: 714 + type: SignalTransmitter +- uid: 3698 + type: DisposalTrunk + components: + - rot: 1.5707963267948966 rad + pos: -11.5,13.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 3699 + type: DisposalBend + components: + - pos: -10.5,13.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3700 + type: DisposalPipe + components: + - pos: -10.5,12.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3701 + type: DisposalPipe + components: + - pos: -10.5,11.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3702 + type: DisposalJunctionFlipped + components: + - rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 3703 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3704 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3705 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3706 + type: DisposalBend + components: + - pos: -6.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3707 + type: DisposalJunctionFlipped + components: + - pos: -6.5,9.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 3708 + type: DisposalBend + components: + - rot: -1.5707963267948966 rad + pos: -5.5,9.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3709 + type: DisposalBend + components: + - rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3710 + type: DisposalTrunk + components: + - rot: 1.5707963267948966 rad + pos: -10.5,1.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 3711 + type: DisposalBend + components: + - rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3712 + type: DisposalBend + components: + - rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3713 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3714 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3715 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3716 + type: DisposalJunctionFlipped + components: + - rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 3717 + type: DisposalJunction + components: + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 3718 + type: DisposalBend + components: + - pos: -4.5,3.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3719 + type: DisposalBend + components: + - rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3720 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3721 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3722 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3723 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: -6.5,7.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3724 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: -6.5,8.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3725 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3726 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3727 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3728 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3729 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3730 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3731 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3732 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3733 + type: DisposalJunctionFlipped + components: + - rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 3734 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3735 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3736 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3737 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3738 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3739 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3740 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3741 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3742 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3743 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3744 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3745 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 15.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3746 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 16.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3747 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: 17.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3748 + type: DisposalBend + components: + - rot: -1.5707963267948966 rad + pos: 18.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3749 + type: DisposalBend + components: + - rot: 1.5707963267948966 rad + pos: 18.5,3.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3750 + type: DisposalPipe + components: + - pos: -5.5,1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3751 + type: DisposalPipe + components: + - pos: -5.5,0.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3752 + type: DisposalPipe + components: + - pos: -5.5,-0.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3753 + type: DisposalPipe + components: + - pos: -5.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3754 + type: DisposalPipe + components: + - pos: -5.5,-2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3755 + type: DisposalPipe + components: + - pos: -5.5,-3.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3756 + type: DisposalPipe + components: + - pos: -5.5,-4.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3757 + type: DisposalPipe + components: + - pos: -5.5,-5.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3758 + type: DisposalBend + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 3759 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3760 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3761 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3762 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3763 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 3764 + type: Grille + components: + - pos: -1.5,8.5 + parent: 30 + type: Transform +- uid: 3765 + type: GasPipeStraight + components: + - pos: 7.5,13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3766 + type: GasPipeStraight + components: + - pos: 7.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3767 + type: GasPipeStraight + components: + - pos: 5.5,14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3768 + type: Pickaxe + components: + - pos: -31.51867,19.74609 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 3769 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 9.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3770 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 8.5,8.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3771 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3772 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3773 + type: SheetSteel + components: + - pos: -41.514236,6.5689335 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 3774 + type: Poweredlight + components: + - pos: -11.5,16.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3775 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: -12.5,13.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3776 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3777 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3778 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3779 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3780 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -5.5,8.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3781 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3782 + type: GasPipeBend + components: + - pos: -5.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3783 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -7.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3784 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -9.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3785 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -10.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3786 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -11.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3787 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -12.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3788 + type: GasPipeTJunction + components: + - pos: -10.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3789 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -6.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3790 + type: GasPipeStraight + components: + - pos: -5.5,10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3791 + type: GasPipeStraight + components: + - pos: -9.5,12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3792 + type: GasPipeStraight + components: + - pos: -9.5,13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3793 + type: GasPipeStraight + components: + - pos: -7.5,12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3794 + type: GasPipeStraight + components: + - pos: -7.5,13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3795 + type: GasPipeStraight + components: + - pos: -6.5,4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3796 + type: GasPipeStraight + components: + - pos: -6.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3797 + type: GasPipeStraight + components: + - pos: -6.5,6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3798 + type: GasPipeStraight + components: + - pos: -6.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3799 + type: GasPipeStraight + components: + - pos: -6.5,8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3800 + type: GasPipeStraight + components: + - pos: -6.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3801 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3802 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -11.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3803 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -11.5,11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3804 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -11.5,12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3805 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -11.5,13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3806 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -12.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3807 + type: GasPipeTJunction + components: + - pos: -8.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3808 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3809 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3810 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3811 + type: GasPipeStraight + components: + - pos: -6.5,11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3812 + type: GasPipeStraight + components: + - pos: -6.5,12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3813 + type: GasPipeStraight + components: + - pos: -6.5,13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3814 + type: GasVentScrubber + components: + - pos: -11.5,14.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3815 + type: GasVentScrubber + components: + - pos: -6.5,14.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3816 + type: GasVentPump + components: + - pos: -9.5,14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3817 + type: GasVentPump + components: + - pos: -7.5,14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3818 + type: GasPipeStraight + components: + - pos: -5.5,0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3819 + type: GasPipeStraight + components: + - pos: -5.5,-0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3820 + type: GasPipeStraight + components: + - pos: -5.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3821 + type: GasPipeStraight + components: + - pos: -5.5,-2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3822 + type: GasPipeStraight + components: + - pos: -5.5,-3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3823 + type: GasPipeStraight + components: + - pos: -5.5,-4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3824 + type: GasPipeStraight + components: + - pos: -5.5,-5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3825 + type: GasPipeTJunction + components: + - pos: -6.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3826 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3827 + type: GasPipeFourway + components: + - pos: -10.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3828 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3829 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3830 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3831 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3832 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3833 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3834 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3835 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3836 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -10.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3837 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -10.5,-7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3838 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3839 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3840 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3841 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3842 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3843 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3844 + type: GasPipeStraight + components: + - pos: -6.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3845 + type: GasPipeStraight + components: + - pos: -6.5,-0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3846 + type: GasPipeStraight + components: + - pos: -6.5,-1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3847 + type: GasPipeStraight + components: + - pos: -6.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3848 + type: GasPipeStraight + components: + - pos: -6.5,-3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3849 + type: GasPipeStraight + components: + - pos: -6.5,-4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3850 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3851 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3852 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: -10.5,-9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3853 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: -10.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3854 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: -8.5,10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3855 + type: GasVentScrubber + components: + - pos: -10.5,-4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3856 + type: GasVentPump + components: + - pos: -8.5,-5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3857 + type: FirelockGlass + components: + - pos: -5.5,-1.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 3858 + type: FirelockGlass + components: + - pos: -6.5,-1.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 3859 + type: FirelockGlass + components: + - pos: -5.5,6.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 3860 + type: FirelockGlass + components: + - pos: -6.5,6.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 3861 + type: FirelockEdge + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 3862 + type: FirelockEdge + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 3863 + type: FirelockEdge + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 3864 + type: InflatableWallStack + components: + - pos: -42.576736,6.6626835 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 3865 + type: InflatableDoorStack + components: + - pos: -42.326736,6.4283085 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 3866 + type: Table + components: + - pos: -40.5,6.5 + parent: 30 + type: Transform +- uid: 3867 + type: FirelockEdge + components: + - rot: 1.5707963267948966 rad + pos: 15.5,1.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 3868 + type: FirelockEdge + components: + - rot: 1.5707963267948966 rad + pos: 15.5,2.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 3869 + type: FirelockEdge + components: + - rot: 1.5707963267948966 rad + pos: 15.5,3.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 3870 + type: Table + components: + - pos: -41.5,6.5 + parent: 30 + type: Transform +- uid: 3871 + type: Table + components: + - pos: -42.5,6.5 + parent: 30 + type: Transform +- uid: 3872 + type: CableApcExtension + components: + - pos: -23.5,-0.5 + parent: 30 + type: Transform +- uid: 3873 + type: CableApcExtension + components: + - pos: -17.5,6.5 + parent: 30 + type: Transform +- uid: 3874 + type: CableApcExtension + components: + - pos: -18.5,6.5 + parent: 30 + type: Transform +- uid: 3875 + type: CableApcExtension + components: + - pos: -19.5,6.5 + parent: 30 + type: Transform +- uid: 3876 + type: CableApcExtension + components: + - pos: -23.5,2.5 + parent: 30 + type: Transform +- uid: 3877 + type: CableApcExtension + components: + - pos: -23.5,3.5 + parent: 30 + type: Transform +- uid: 3878 + type: CableApcExtension + components: + - pos: -23.5,4.5 + parent: 30 + type: Transform +- uid: 3879 + type: CableApcExtension + components: + - pos: -23.5,5.5 + parent: 30 + type: Transform +- uid: 3880 + type: CableApcExtension + components: + - pos: -23.5,8.5 + parent: 30 + type: Transform +- uid: 3881 + type: CableApcExtension + components: + - pos: -23.5,9.5 + parent: 30 + type: Transform +- uid: 3882 + type: CableApcExtension + components: + - pos: -22.5,6.5 + parent: 30 + type: Transform +- uid: 3883 + type: CableApcExtension + components: + - pos: -21.5,6.5 + parent: 30 + type: Transform +- uid: 3884 + type: CableApcExtension + components: + - pos: -20.5,6.5 + parent: 30 + type: Transform +- uid: 3885 + type: CableApcExtension + components: + - pos: -23.5,1.5 + parent: 30 + type: Transform +- uid: 3886 + type: CableApcExtension + components: + - pos: -23.5,0.5 + parent: 30 + type: Transform +- uid: 3887 + type: GasPipeStraight + components: + - pos: -24.5,-2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3888 + type: GasPipeStraight + components: + - pos: -24.5,-3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3889 + type: GasVentScrubber + components: + - pos: -19.5,-1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3890 + type: APCBasic + components: + - rot: -1.5707963267948966 rad + pos: -13.5,3.5 + parent: 30 + type: Transform +- uid: 3891 + type: CableApcExtension + components: + - pos: -13.5,3.5 + parent: 30 + type: Transform +- uid: 3892 + type: CableApcExtension + components: + - pos: -15.5,3.5 + parent: 30 + type: Transform +- uid: 3893 + type: CableApcExtension + components: + - pos: -15.5,6.5 + parent: 30 + type: Transform +- uid: 3894 + type: CableApcExtension + components: + - pos: -15.5,0.5 + parent: 30 + type: Transform +- uid: 3895 + type: CableApcExtension + components: + - pos: -15.5,-2.5 + parent: 30 + type: Transform +- uid: 3896 + type: CableApcExtension + components: + - pos: -19.5,-1.5 + parent: 30 + type: Transform +- uid: 3897 + type: CableApcExtension + components: + - pos: -22.5,-1.5 + parent: 30 + type: Transform +- uid: 3898 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3899 + type: WallAlmayer + components: + - pos: -36.5,-8.5 + parent: 30 + type: Transform +- uid: 3900 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -15.5,-1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3901 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -15.5,-0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3902 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3903 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3904 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -23.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3905 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -19.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3906 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -19.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3907 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3908 + type: GasPipeStraight + components: + - pos: -24.5,10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3909 + type: CableApcExtension + components: + - pos: -12.5,3.5 + parent: 30 + type: Transform +- uid: 3910 + type: CableApcExtension + components: + - pos: -11.5,3.5 + parent: 30 + type: Transform +- uid: 3911 + type: CableApcExtension + components: + - pos: -11.5,2.5 + parent: 30 + type: Transform +- uid: 3912 + type: CableApcExtension + components: + - pos: -10.5,2.5 + parent: 30 + type: Transform +- uid: 3913 + type: CableApcExtension + components: + - pos: -9.5,2.5 + parent: 30 + type: Transform +- uid: 3914 + type: CableApcExtension + components: + - pos: -8.5,2.5 + parent: 30 + type: Transform +- uid: 3915 + type: CableApcExtension + components: + - pos: -10.5,3.5 + parent: 30 + type: Transform +- uid: 3916 + type: CableApcExtension + components: + - pos: -10.5,4.5 + parent: 30 + type: Transform +- uid: 3917 + type: CableApcExtension + components: + - pos: -10.5,5.5 + parent: 30 + type: Transform +- uid: 3918 + type: CableApcExtension + components: + - pos: -10.5,6.5 + parent: 30 + type: Transform +- uid: 3919 + type: CableApcExtension + components: + - pos: -10.5,1.5 + parent: 30 + type: Transform +- uid: 3920 + type: CableApcExtension + components: + - pos: -10.5,0.5 + parent: 30 + type: Transform +- uid: 3921 + type: CableApcExtension + components: + - pos: -10.5,-0.5 + parent: 30 + type: Transform +- uid: 3922 + type: CableApcExtension + components: + - pos: -10.5,-1.5 + parent: 30 + type: Transform +- uid: 3923 + type: CableApcExtension + components: + - pos: -11.5,-1.5 + parent: 30 + type: Transform +- uid: 3924 + type: CableApcExtension + components: + - pos: -9.5,-1.5 + parent: 30 + type: Transform +- uid: 3925 + type: CableApcExtension + components: + - pos: -11.5,6.5 + parent: 30 + type: Transform +- uid: 3926 + type: CableApcExtension + components: + - pos: -9.5,6.5 + parent: 30 + type: Transform +- uid: 3927 + type: CableApcExtension + components: + - pos: -8.5,3.5 + parent: 30 + type: Transform +- uid: 3928 + type: CableApcExtension + components: + - pos: -8.5,4.5 + parent: 30 + type: Transform +- uid: 3929 + type: CableApcExtension + components: + - pos: -8.5,1.5 + parent: 30 + type: Transform +- uid: 3930 + type: CableApcExtension + components: + - pos: -8.5,0.5 + parent: 30 + type: Transform +- uid: 3931 + type: CableApcExtension + components: + - pos: -11.5,1.5 + parent: 30 + type: Transform +- uid: 3932 + type: CableApcExtension + components: + - pos: -11.5,0.5 + parent: 30 + type: Transform +- uid: 3933 + type: CableApcExtension + components: + - pos: -12.5,0.5 + parent: 30 + type: Transform +- uid: 3934 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -15.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 3935 + type: SurveillanceCameraRouterMedical + components: + - pos: -1.5,-11.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 3936 + type: WindowAlmayer + components: + - pos: -3.5,-20.5 + parent: 30 + type: Transform +- uid: 3937 + type: WindowAlmayer + components: + - pos: -3.5,-19.5 + parent: 30 + type: Transform +- uid: 3938 + type: WallAlmayer + components: + - pos: -3.5,-22.5 + parent: 30 + type: Transform +- uid: 3939 + type: WindowAlmayer + components: + - pos: -2.5,-22.5 + parent: 30 + type: Transform +- uid: 3940 + type: WindowAlmayer + components: + - pos: -1.5,-22.5 + parent: 30 + type: Transform +- uid: 3941 + type: WallAlmayer + components: + - pos: -0.5,-22.5 + parent: 30 + type: Transform +- uid: 3942 + type: WallAlmayer + components: + - pos: 2.5,-22.5 + parent: 30 + type: Transform +- uid: 3943 + type: WindowAlmayer + components: + - pos: 0.5,-22.5 + parent: 30 + type: Transform +- uid: 3944 + type: WindowAlmayer + components: + - pos: 1.5,-22.5 + parent: 30 + type: Transform +- uid: 3945 + type: WallAlmayer + components: + - pos: 3.5,-22.5 + parent: 30 + type: Transform +- uid: 3946 + type: WallAlmayer + components: + - pos: 3.5,-21.5 + parent: 30 + type: Transform +- uid: 3947 + type: WallAlmayer + components: + - pos: 3.5,-20.5 + parent: 30 + type: Transform +- uid: 3948 + type: WallAlmayer + components: + - pos: 4.5,-20.5 + parent: 30 + type: Transform +- uid: 3949 + type: WallAlmayer + components: + - pos: 5.5,-20.5 + parent: 30 + type: Transform +- uid: 3950 + type: WallAlmayer + components: + - pos: 5.5,-19.5 + parent: 30 + type: Transform +- uid: 3951 + type: AirlockGlassAlpha + components: + - pos: 3.5,-19.5 + parent: 30 + type: Transform +- uid: 3952 + type: AirlockGlassAlpha + components: + - pos: 4.5,-18.5 + parent: 30 + type: Transform +- uid: 3953 + type: Grille + components: + - pos: -3.5,-21.5 + parent: 30 + type: Transform +- uid: 3954 + type: Grille + components: + - pos: -3.5,-20.5 + parent: 30 + type: Transform +- uid: 3955 + type: Grille + components: + - pos: -3.5,-19.5 + parent: 30 + type: Transform +- uid: 3956 + type: Grille + components: + - pos: -2.5,-22.5 + parent: 30 + type: Transform +- uid: 3957 + type: Grille + components: + - pos: -1.5,-22.5 + parent: 30 + type: Transform +- uid: 3958 + type: Grille + components: + - pos: 1.5,-22.5 + parent: 30 + type: Transform +- uid: 3959 + type: Grille + components: + - pos: 0.5,-22.5 + parent: 30 + type: Transform +- uid: 3960 + type: SignVirology + components: + - pos: 3.5,-18.5 + parent: 30 + type: Transform +- uid: 3961 + type: Windoor + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 30 + type: Transform +- uid: 3962 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 30 + type: Transform +- uid: 3963 + type: CableMV + components: + - pos: 2.5,-11.5 + parent: 30 + type: Transform +- uid: 3964 + type: WallAlmayer + components: + - pos: 28.5,-8.5 + parent: 30 + type: Transform +- uid: 3965 + type: WallAlmayer + components: + - pos: 27.5,-8.5 + parent: 30 + type: Transform +- uid: 3966 + type: AirlockGlassAlpha + components: + - pos: 26.5,-8.5 + parent: 30 + type: Transform +- uid: 3967 + type: Grille + components: + - pos: 7.5,6.5 + parent: 30 + type: Transform +- uid: 3968 + type: WallAlmayer + components: + - pos: 1.5,-10.5 + parent: 30 + type: Transform +- uid: 3969 + type: Poweredlight + components: + - pos: -0.5,-11.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3970 + type: Poweredlight + components: + - pos: 6.5,13.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3971 + type: PoweredSmallLight + components: + - pos: 27.5,-9.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3972 + type: CableApcExtension + components: + - pos: 6.5,-17.5 + parent: 30 + type: Transform +- uid: 3973 + type: CableApcExtension + components: + - pos: 5.5,-17.5 + parent: 30 + type: Transform +- uid: 3974 + type: CableApcExtension + components: + - pos: 4.5,-17.5 + parent: 30 + type: Transform +- uid: 3975 + type: CableApcExtension + components: + - pos: 4.5,-18.5 + parent: 30 + type: Transform +- uid: 3976 + type: CableApcExtension + components: + - pos: 4.5,-19.5 + parent: 30 + type: Transform +- uid: 3977 + type: CableApcExtension + components: + - pos: 3.5,-19.5 + parent: 30 + type: Transform +- uid: 3978 + type: CableApcExtension + components: + - pos: 2.5,-19.5 + parent: 30 + type: Transform +- uid: 3979 + type: CableApcExtension + components: + - pos: 1.5,-19.5 + parent: 30 + type: Transform +- uid: 3980 + type: CableApcExtension + components: + - pos: 1.5,-20.5 + parent: 30 + type: Transform +- uid: 3981 + type: CableApcExtension + components: + - pos: 0.5,-20.5 + parent: 30 + type: Transform +- uid: 3982 + type: CableApcExtension + components: + - pos: -0.5,-20.5 + parent: 30 + type: Transform +- uid: 3983 + type: CableApcExtension + components: + - pos: -1.5,-20.5 + parent: 30 + type: Transform +- uid: 3984 + type: Poweredlight + components: + - pos: 1.5,-19.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3985 + type: Poweredlight + components: + - pos: -2.5,-19.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 3986 + type: GasPipeStraight + components: + - pos: 6.5,-16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3987 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3988 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3989 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3990 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3991 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 4.5,-18.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3992 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3993 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-19.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3994 + type: GasPipeTJunction + components: + - pos: 1.5,-19.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3995 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 1.5,-20.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 3996 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: 2.5,-21.5 + parent: 30 + type: Transform +- uid: 3997 + type: GasPassiveVent + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-21.5 + parent: 30 + type: Transform +- uid: 3998 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 30 + type: Transform +- uid: 3999 + type: WallAlmayer + components: + - pos: 13.5,-18.5 + parent: 30 + type: Transform +- uid: 4000 + type: CableMV + components: + - pos: 2.5,-10.5 + parent: 30 + type: Transform +- uid: 4001 + type: WallAlmayer + components: + - pos: 25.5,-8.5 + parent: 30 + type: Transform +- uid: 4002 + type: PoweredSmallLight + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-12.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 4003 + type: Catwalk + components: + - pos: 14.5,-15.5 + parent: 30 + type: Transform +- uid: 4004 + type: Catwalk + components: + - pos: 13.5,-15.5 + parent: 30 + type: Transform +- uid: 4005 + type: Catwalk + components: + - pos: 12.5,-15.5 + parent: 30 + type: Transform +- uid: 4006 + type: Catwalk + components: + - pos: 11.5,-15.5 + parent: 30 + type: Transform +- uid: 4007 + type: Catwalk + components: + - pos: 10.5,-15.5 + parent: 30 + type: Transform +- uid: 4008 + type: Catwalk + components: + - pos: 9.5,-15.5 + parent: 30 + type: Transform +- uid: 4009 + type: MaintenanceToolSpawner + components: + - pos: 22.5,-17.5 + parent: 30 + type: Transform +- uid: 4010 + type: Catwalk + components: + - pos: 24.5,-15.5 + parent: 30 + type: Transform +- uid: 4011 + type: Catwalk + components: + - pos: 25.5,-15.5 + parent: 30 + type: Transform +- uid: 4012 + type: Catwalk + components: + - pos: 26.5,-15.5 + parent: 30 + type: Transform +- uid: 4013 + type: Catwalk + components: + - pos: 7.5,-17.5 + parent: 30 + type: Transform +- uid: 4014 + type: Rack + components: + - pos: 7.5,-16.5 + parent: 30 + type: Transform +- uid: 4015 + type: Catwalk + components: + - pos: 7.5,-15.5 + parent: 30 + type: Transform +- uid: 4016 + type: CableApcExtension + components: + - pos: -4.5,-5.5 + parent: 30 + type: Transform +- uid: 4017 + type: CableApcExtension + components: + - pos: -4.5,-8.5 + parent: 30 + type: Transform +- uid: 4018 + type: CableApcExtension + components: + - pos: -5.5,-8.5 + parent: 30 + type: Transform +- uid: 4019 + type: CableApcExtension + components: + - pos: -6.5,-8.5 + parent: 30 + type: Transform +- uid: 4020 + type: CableApcExtension + components: + - pos: -7.5,-8.5 + parent: 30 + type: Transform +- uid: 4021 + type: CableApcExtension + components: + - pos: -8.5,-8.5 + parent: 30 + type: Transform +- uid: 4022 + type: CableApcExtension + components: + - pos: -9.5,-8.5 + parent: 30 + type: Transform +- uid: 4023 + type: CableApcExtension + components: + - pos: -10.5,-8.5 + parent: 30 + type: Transform +- uid: 4024 + type: CableApcExtension + components: + - pos: -11.5,-8.5 + parent: 30 + type: Transform +- uid: 4025 + type: CableApcExtension + components: + - pos: -12.5,-8.5 + parent: 30 + type: Transform +- uid: 4026 + type: CableApcExtension + components: + - pos: -10.5,-9.5 + parent: 30 + type: Transform +- uid: 4027 + type: CableApcExtension + components: + - pos: -10.5,-9.5 + parent: 30 + type: Transform +- uid: 4028 + type: CableApcExtension + components: + - pos: -10.5,-10.5 + parent: 30 + type: Transform +- uid: 4029 + type: CableApcExtension + components: + - pos: -10.5,-11.5 + parent: 30 + type: Transform +- uid: 4030 + type: CableApcExtension + components: + - pos: -6.5,-9.5 + parent: 30 + type: Transform +- uid: 4031 + type: CableApcExtension + components: + - pos: -6.5,-10.5 + parent: 30 + type: Transform +- uid: 4032 + type: CableApcExtension + components: + - pos: -6.5,-11.5 + parent: 30 + type: Transform +- uid: 4033 + type: CableApcExtension + components: + - pos: -8.5,-7.5 + parent: 30 + type: Transform +- uid: 4034 + type: CableApcExtension + components: + - pos: -8.5,-6.5 + parent: 30 + type: Transform +- uid: 4035 + type: CableApcExtension + components: + - pos: -8.5,-5.5 + parent: 30 + type: Transform +- uid: 4036 + type: CableApcExtension + components: + - pos: -9.5,-5.5 + parent: 30 + type: Transform +- uid: 4037 + type: CableApcExtension + components: + - pos: -10.5,-5.5 + parent: 30 + type: Transform +- uid: 4038 + type: CableApcExtension + components: + - pos: -11.5,-5.5 + parent: 30 + type: Transform +- uid: 4039 + type: CableApcExtension + components: + - pos: -7.5,-5.5 + parent: 30 + type: Transform +- uid: 4040 + type: CableApcExtension + components: + - pos: -6.5,-5.5 + parent: 30 + type: Transform +- uid: 4041 + type: CableApcExtension + components: + - pos: -5.5,-5.5 + parent: 30 + type: Transform +- uid: 4042 + type: CableApcExtension + components: + - pos: -6.5,-4.5 + parent: 30 + type: Transform +- uid: 4043 + type: CableApcExtension + components: + - pos: -6.5,-3.5 + parent: 30 + type: Transform +- uid: 4044 + type: CableApcExtension + components: + - pos: -6.5,-2.5 + parent: 30 + type: Transform +- uid: 4045 + type: CableApcExtension + components: + - pos: -3.5,0.5 + parent: 30 + type: Transform +- uid: 4046 + type: CableApcExtension + components: + - pos: -4.5,0.5 + parent: 30 + type: Transform +- uid: 4047 + type: CableApcExtension + components: + - pos: -5.5,0.5 + parent: 30 + type: Transform +- uid: 4048 + type: CableApcExtension + components: + - pos: -5.5,1.5 + parent: 30 + type: Transform +- uid: 4049 + type: CableApcExtension + components: + - pos: -3.5,3.5 + parent: 30 + type: Transform +- uid: 4050 + type: CableApcExtension + components: + - pos: -4.5,3.5 + parent: 30 + type: Transform +- uid: 4051 + type: CableApcExtension + components: + - pos: -5.5,3.5 + parent: 30 + type: Transform +- uid: 4052 + type: CableApcExtension + components: + - pos: -5.5,4.5 + parent: 30 + type: Transform +- uid: 4053 + type: Bookshelf + components: + - pos: -5.5,-8.5 + parent: 30 + type: Transform +- uid: 4054 + type: Bookshelf + components: + - pos: -9.5,-8.5 + parent: 30 + type: Transform +- uid: 4055 + type: Bookshelf + components: + - pos: -6.5,-8.5 + parent: 30 + type: Transform +- uid: 4056 + type: Bookshelf + components: + - pos: -7.5,-8.5 + parent: 30 + type: Transform +- uid: 4057 + type: Bookshelf + components: + - pos: -11.5,-11.5 + parent: 30 + type: Transform +- uid: 4058 + type: Bookshelf + components: + - pos: -11.5,-10.5 + parent: 30 + type: Transform +- uid: 4059 + type: Bookshelf + components: + - pos: -10.5,-8.5 + parent: 30 + type: Transform +- uid: 4060 + type: SpawnPointLibrarian + components: + - pos: -10.5,-9.5 + parent: 30 + type: Transform +- uid: 4061 + type: Bookshelf + components: + - pos: -10.5,-11.5 + parent: 30 + type: Transform +- uid: 4062 + type: Bookshelf + components: + - pos: -9.5,-11.5 + parent: 30 + type: Transform +- uid: 4063 + type: Bookshelf + components: + - pos: -8.5,-11.5 + parent: 30 + type: Transform +- uid: 4064 + type: Bookshelf + components: + - pos: -5.5,-10.5 + parent: 30 + type: Transform +- uid: 4065 + type: Bookshelf + components: + - pos: -6.5,-10.5 + parent: 30 + type: Transform +- uid: 4066 + type: TableCarpet + components: + - pos: -9.5,-10.5 + parent: 30 + type: Transform +- uid: 4067 + type: TableCarpet + components: + - pos: -8.5,-10.5 + parent: 30 + type: Transform +- uid: 4068 + type: ChairWood + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-10.5 + parent: 30 + type: Transform +- uid: 4069 + type: ChairWood + components: + - pos: -9.5,-9.5 + parent: 30 + type: Transform +- uid: 4070 + type: ChairWood + components: + - pos: -8.5,-9.5 + parent: 30 + type: Transform +- uid: 4071 + type: ChairWood + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 30 + type: Transform +- uid: 4072 + type: CarpetGreen + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 30 + type: Transform +- uid: 4073 + type: SpawnMobSlothPaperwork + components: + - pos: -7.5,-9.5 + parent: 30 + type: Transform +- uid: 4074 + type: Bookshelf + components: + - pos: -11.5,-8.5 + parent: 30 + type: Transform +- uid: 4075 + type: CarpetGreen + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 30 + type: Transform +- uid: 4076 + type: CarpetOrange + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 30 + type: Transform +- uid: 4077 + type: CarpetOrange + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 30 + type: Transform +- uid: 4078 + type: CarpetOrange + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 30 + type: Transform +- uid: 4079 + type: CarpetOrange + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 30 + type: Transform +- uid: 4080 + type: CarpetPurple + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 30 + type: Transform +- uid: 4081 + type: CarpetPurple + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 30 + type: Transform +- uid: 4082 + type: CarpetPurple + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 30 + type: Transform +- uid: 4083 + type: PoweredSmallLight + components: + - pos: -9.5,-8.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 4084 + type: PoweredSmallLight + components: + - pos: -7.5,-8.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 4085 + type: PoweredSmallLight + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 4086 + type: PoweredSmallLight + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-10.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 4087 + type: DiceBag + components: + - pos: -9.517567,-10.395037 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 4088 + type: ToyGriffin + components: + - pos: -9.017567,-10.254412 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4089 + type: ToyFireRipley + components: + - pos: -8.736317,-10.395037 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4090 + type: ToyDurand + components: + - pos: -8.423817,-10.176287 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4091 + type: Paper + components: + - pos: -9.283192,-10.395037 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4092 + type: Paper + components: + - pos: -9.142567,-10.410662 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4093 + type: Paper + components: + - pos: -9.001942,-10.457537 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4094 + type: Paper + components: + - pos: -9.142567,-10.441912 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4095 + type: Paper + components: + - pos: -9.142567,-10.441912 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4096 + type: Paper + components: + - pos: -9.080067,-10.441912 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4097 + type: Paper + components: + - pos: -9.080067,-10.441912 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4098 + type: ClothingNeckScarfStripedGreen + components: + - pos: -4.4588356,-8.442022 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4099 + type: ClothingEyesGlasses + components: + - pos: -9.751942,-10.566912 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4100 + type: Rack + components: + - pos: 22.5,-17.5 + parent: 30 + type: Transform +- uid: 4101 + type: Catwalk + components: + - pos: 14.5,21.5 + parent: 30 + type: Transform +- uid: 4102 + type: Catwalk + components: + - pos: 12.5,21.5 + parent: 30 + type: Transform +- uid: 4103 + type: Catwalk + components: + - pos: 11.5,21.5 + parent: 30 + type: Transform +- uid: 4104 + type: Catwalk + components: + - pos: 10.5,21.5 + parent: 30 + type: Transform +- uid: 4105 + type: Catwalk + components: + - pos: 9.5,21.5 + parent: 30 + type: Transform +- uid: 4106 + type: Catwalk + components: + - pos: 8.5,21.5 + parent: 30 + type: Transform +- uid: 4107 + type: Catwalk + components: + - pos: 7.5,21.5 + parent: 30 + type: Transform +- uid: 4108 + type: Rack + components: + - pos: 9.5,20.5 + parent: 30 + type: Transform +- uid: 4109 + type: OxygenCanister + components: + - pos: 8.5,20.5 + parent: 30 + type: Transform +- uid: 4110 + type: MaintenanceFluffSpawner + components: + - pos: 9.5,20.5 + parent: 30 + type: Transform +- uid: 4111 + type: Catwalk + components: + - pos: 4.5,22.5 + parent: 30 + type: Transform +- uid: 4112 + type: Catwalk + components: + - pos: 3.5,22.5 + parent: 30 + type: Transform +- uid: 4113 + type: Catwalk + components: + - pos: 2.5,22.5 + parent: 30 + type: Transform +- uid: 4114 + type: Catwalk + components: + - pos: 1.5,22.5 + parent: 30 + type: Transform +- uid: 4115 + type: Catwalk + components: + - pos: 0.5,22.5 + parent: 30 + type: Transform +- uid: 4116 + type: Catwalk + components: + - pos: -0.5,22.5 + parent: 30 + type: Transform +- uid: 4117 + type: Catwalk + components: + - pos: -1.5,22.5 + parent: 30 + type: Transform +- uid: 4118 + type: Catwalk + components: + - pos: -2.5,22.5 + parent: 30 + type: Transform +- uid: 4119 + type: Catwalk + components: + - pos: -3.5,22.5 + parent: 30 + type: Transform +- uid: 4120 + type: Catwalk + components: + - pos: -4.5,22.5 + parent: 30 + type: Transform +- uid: 4121 + type: CableApcExtension + components: + - pos: -5.5,22.5 + parent: 30 + type: Transform +- uid: 4122 + type: Catwalk + components: + - pos: 9.5,23.5 + parent: 30 + type: Transform +- uid: 4123 + type: ClosetFireFilled + components: + - pos: 6.5,23.5 + parent: 30 + type: Transform +- uid: 4124 + type: ClothingNeckTieRed + components: + - pos: -1.6637553,25.590635 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4125 + type: LockerFreezer + components: + - pos: -14.5,5.5 + parent: 30 + type: Transform +- uid: 4126 + type: HandheldGPSBasic + components: + - pos: 10.323393,-10.496094 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4127 + type: ClothingHeadHelmetTemplar + components: + - pos: 24.456139,-14.492622 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4128 + type: ClothingShoesTourist + components: + - pos: 18.5487,26.437227 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4129 + type: ClothingHeadHatCone + components: + - pos: 23.477053,5.3146996 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4130 + type: ClothingHeadHelmetWizardHelm + components: + - pos: -10.446817,-18.41771 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4131 + type: VendingMachineDinnerware + components: + - name: Dinnerware + type: MetaData + - pos: -16.5,3.5 + parent: 30 + type: Transform +- uid: 4132 + type: ClosetChefFilled + components: + - pos: -13.5,-2.5 + parent: 30 + type: Transform +- uid: 4133 + type: FoodMeat + components: + - pos: -16.44794,5.4269447 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4134 + type: FoodMeat + components: + - pos: -14.682316,6.551945 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4135 + type: KitchenMicrowave + components: + - pos: -15.5,1.5 + parent: 30 + type: Transform + - containers: + microwave_entity_container: !type:Container + ents: [] + type: ContainerContainer +- uid: 4136 + type: FirelockGlass + components: + - pos: -21.5,11.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 4137 + type: PaintingCafeTerraceAtNight + components: + - pos: 33.5,-1.5 + parent: 30 + type: Transform +- uid: 4138 + type: WallAlmayer + components: + - pos: -11.5,-15.5 + parent: 30 + type: Transform +- uid: 4139 + type: ClosetMaintenanceFilledRandom + components: + - pos: -11.5,-13.5 + parent: 30 + type: Transform +- uid: 4140 + type: WallAlmayer + components: + - pos: 5.5,20.5 + parent: 30 + type: Transform +- uid: 4141 + type: CableHV + components: + - pos: -21.5,-5.5 + parent: 30 + type: Transform +- uid: 4142 + type: CableHV + components: + - pos: -19.5,-5.5 + parent: 30 + type: Transform +- uid: 4143 + type: CableMV + components: + - pos: -30.5,2.5 + parent: 30 + type: Transform +- uid: 4144 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4145 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4146 + type: Chair + components: + - rot: 3.141592653589793 rad + pos: -31.5,-11.5 + parent: 30 + type: Transform +- uid: 4147 + type: GasPipeStraight + components: + - pos: -22.5,6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4148 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4149 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4150 + type: Chair + components: + - pos: -29.5,-9.5 + parent: 30 + type: Transform +- uid: 4151 + type: WallAlmayer + components: + - pos: 3.5,21.5 + parent: 30 + type: Transform +- uid: 4152 + type: GasPipeStraight + components: + - pos: -22.5,3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4153 + type: GasPipeStraight + components: + - pos: -22.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4154 + type: WallAlmayer + components: + - pos: 0.5,18.5 + parent: 30 + type: Transform +- uid: 4155 + type: FloorTileItemCarpetClown + components: + - pos: -8.668429,-14.372507 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4156 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4157 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4158 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4159 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4160 + type: GasPipeStraight + components: + - pos: -22.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4161 + type: CableMV + components: + - pos: -21.5,2.5 + parent: 30 + type: Transform +- uid: 4162 + type: CableHV + components: + - pos: -14.5,10.5 + parent: 30 + type: Transform +- uid: 4163 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -10.5,20.5 + parent: 30 + type: Transform +- uid: 4164 + type: ComfyChair + components: + - pos: -8.5,20.5 + parent: 30 + type: Transform +- uid: 4165 + type: SyringeEphedrine + components: + - pos: -9.3869705,-14.478947 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4166 + type: CableApcExtension + components: + - pos: -10.5,-14.5 + parent: 30 + type: Transform +- uid: 4167 + type: VendingMachineChang + components: + - pos: -29.5,-13.5 + parent: 30 + type: Transform + - sprite: Structures/Machines/VendingMachines/cigs.rsi + type: Sprite +- uid: 4168 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -25.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4169 + type: CableApcExtension + components: + - pos: -23.5,-2.5 + parent: 30 + type: Transform +- uid: 4170 + type: CableHV + components: + - pos: -18.5,-5.5 + parent: 30 + type: Transform +- uid: 4171 + type: CableHV + components: + - pos: -16.5,-5.5 + parent: 30 + type: Transform +- uid: 4172 + type: CigPackRed + components: + - pos: -9.462895,20.407572 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 4173 + type: ClothingHeadHatBunny + components: + - pos: -9.525395,20.485697 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4174 + type: StoolBar + components: + - rot: 3.141592653589793 rad + pos: -29.5,-16.5 + parent: 30 + type: Transform +- uid: 4175 + type: Grille + components: + - pos: -13.5,-0.5 + parent: 30 + type: Transform +- uid: 4176 + type: StoolBar + components: + - rot: 3.141592653589793 rad + pos: -30.5,-16.5 + parent: 30 + type: Transform +- uid: 4177 + type: CableApcExtension + components: + - pos: -6.5,-13.5 + parent: 30 + type: Transform +- uid: 4178 + type: Bed + components: + - pos: -8.5,-14.5 + parent: 30 + type: Transform +- uid: 4179 + type: CableApcExtension + components: + - pos: -6.5,-14.5 + parent: 30 + type: Transform +- uid: 4180 + type: CableApcExtension + components: + - pos: -21.5,2.5 + parent: 30 + type: Transform +- uid: 4181 + type: CableApcExtension + components: + - pos: -19.5,2.5 + parent: 30 + type: Transform +- uid: 4182 + type: WallAlmayer + components: + - pos: -0.5,21.5 + parent: 30 + type: Transform +- uid: 4183 + type: GasPipeStraight + components: + - pos: -22.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4184 + type: GasPipeStraight + components: + - pos: -22.5,-1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4185 + type: WallAlmayer + components: + - pos: -0.5,18.5 + parent: 30 + type: Transform +- uid: 4186 + type: WallAlmayer + components: + - pos: 1.5,21.5 + parent: 30 + type: Transform +- uid: 4187 + type: GasPipeStraight + components: + - pos: -22.5,4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4188 + type: GasPipeStraight + components: + - pos: -22.5,-0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4189 + type: CableApcExtension + components: + - pos: -2.5,18.5 + parent: 30 + type: Transform +- uid: 4190 + type: CableHV + components: + - pos: -17.5,-5.5 + parent: 30 + type: Transform +- uid: 4191 + type: CableHV + components: + - pos: -15.5,-5.5 + parent: 30 + type: Transform +- uid: 4192 + type: WardrobeBlackFilled + components: + - pos: -11.5,20.5 + parent: 30 + type: Transform +- uid: 4193 + type: Barricade + components: + - pos: -12.5,20.5 + parent: 30 + type: Transform +- uid: 4194 + type: GasPipeStraight + components: + - pos: -22.5,-3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4195 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4196 + type: CableHV + components: + - pos: -14.5,-5.5 + parent: 30 + type: Transform +- uid: 4197 + type: PosterLegitSpaceCops + components: + - pos: 12.5,14.5 + parent: 30 + type: Transform +- uid: 4198 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: -27.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4199 + type: GasPipeStraight + components: + - pos: -22.5,-4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4200 + type: TableStone + components: + - pos: 4.5,20.5 + parent: 30 + type: Transform +- uid: 4201 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: 3.5,19.5 + parent: 30 + type: Transform +- uid: 4202 + type: TableStone + components: + - pos: 4.5,19.5 + parent: 30 + type: Transform +- uid: 4203 + type: CableApcExtension + components: + - pos: -21.5,23.5 + parent: 30 + type: Transform +- uid: 4204 + type: FoodNoodlesMeatball + components: + - pos: -25.44564,7.7010655 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4205 + type: AirlockGlassAlpha + components: + - pos: -14.5,20.5 + parent: 30 + type: Transform +- uid: 4206 + type: WallAlmayer + components: + - pos: -14.5,21.5 + parent: 30 + type: Transform +- uid: 4207 + type: WallAlmayer + components: + - pos: -14.5,22.5 + parent: 30 + type: Transform +- uid: 4208 + type: WallAlmayer + components: + - pos: -12.5,22.5 + parent: 30 + type: Transform +- uid: 4209 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4210 + type: SignAtmosMinsky + components: + - pos: -44.5,6.5 + parent: 30 + type: Transform +- uid: 4211 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: -18.5,-6.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 4212 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4213 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4214 + type: GasPipeStraight + components: + - pos: -24.5,8.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4215 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4216 + type: ClothingShoesChef + components: + - pos: -14.432316,-2.7933173 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4217 + type: CableApcExtension + components: + - pos: -26.5,2.5 + parent: 30 + type: Transform +- uid: 4218 + type: CrateEmptySpawner + components: + - pos: -29.5,-14.5 + parent: 30 + type: Transform +- uid: 4219 + type: CableApcExtension + components: + - pos: -10.5,-15.5 + parent: 30 + type: Transform +- uid: 4220 + type: GasPipeStraight + components: + - pos: -24.5,7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4221 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: -24.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4222 + type: GasPipeStraight + components: + - pos: -24.5,5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4223 + type: GasPipeStraight + components: + - pos: -24.5,4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4224 + type: GasPipeStraight + components: + - pos: -24.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4225 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: -24.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4226 + type: GasPipeStraight + components: + - pos: -24.5,1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4227 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4228 + type: DrinkShaker + components: + - pos: -19.322855,5.530008 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 4229 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4230 + type: GasPipeStraight + components: + - pos: -22.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4231 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: -22.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4232 + type: PosterLegitCohibaRobustoAd + components: + - pos: -17.5,4.5 + parent: 30 + type: Transform +- uid: 4233 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4234 + type: DrinkShotGlass + components: + - pos: -21.18223,5.108133 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 4235 + type: GasPipeStraight + components: + - pos: -22.5,8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4236 + type: FirelockGlass + components: + - pos: -21.5,-4.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 4237 + type: FirelockGlass + components: + - pos: -21.5,-5.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 4238 + type: Grille + components: + - pos: 0.5,21.5 + parent: 30 + type: Transform +- uid: 4239 + type: VendingMachineGames + components: + - pos: -5.5,-6.5 + parent: 30 + type: Transform +- uid: 4240 + type: VendingMachineCoffee + components: + - name: Hot drinks machine + type: MetaData + - pos: -6.5,-6.5 + parent: 30 + type: Transform +- uid: 4241 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 30 + type: Transform +- uid: 4242 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 30 + type: Transform +- uid: 4243 + type: SpawnPointAssistant + components: + - pos: -12.5,15.5 + parent: 30 + type: Transform +- uid: 4244 + type: SpawnPointAssistant + components: + - pos: -11.5,15.5 + parent: 30 + type: Transform +- uid: 4245 + type: SpawnPointAssistant + components: + - pos: -10.5,15.5 + parent: 30 + type: Transform +- uid: 4246 + type: Girder + components: + - pos: -6.5,20.5 + parent: 30 + type: Transform +- uid: 4247 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4248 + type: CableMV + components: + - pos: -24.5,2.5 + parent: 30 + type: Transform +- uid: 4249 + type: CableHV + components: + - pos: -27.5,-5.5 + parent: 30 + type: Transform +- uid: 4250 + type: PosterContrabandVoteWeh + components: + - pos: -6.5,-12.5 + parent: 30 + type: Transform +- uid: 4251 + type: WallAlmayer + components: + - pos: -7.5,-14.5 + parent: 30 + type: Transform +- uid: 4252 + type: ClothingOuterSuitChicken + components: + - pos: 4.478327,-11.4409485 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4253 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 4254 + type: CableMV + components: + - pos: -29.5,2.5 + parent: 30 + type: Transform +- uid: 4255 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4256 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4257 + type: Sink + components: + - pos: -9.5,-13.5 + parent: 30 + type: Transform +- uid: 4258 + type: Railing + components: + - rot: -1.5707963267948966 rad + pos: -7.5,19.5 + parent: 30 + type: Transform +- uid: 4259 + type: WallAlmayer + components: + - pos: -8.5,-15.5 + parent: 30 + type: Transform +- uid: 4260 + type: CableMV + components: + - pos: -27.5,2.5 + parent: 30 + type: Transform +- uid: 4261 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4262 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4263 + type: Chair + components: + - rot: 3.141592653589793 rad + pos: -29.5,-11.5 + parent: 30 + type: Transform +- uid: 4264 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: 3.5,20.5 + parent: 30 + type: Transform +- uid: 4265 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: 1.5,20.5 + parent: 30 + type: Transform +- uid: 4266 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 30 + type: Transform +- uid: 4267 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: 1.5,19.5 + parent: 30 + type: Transform +- uid: 4268 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 30 + type: Transform +- uid: 4269 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: 0.5,20.5 + parent: 30 + type: Transform +- uid: 4270 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: 0.5,19.5 + parent: 30 + type: Transform +- uid: 4271 + type: FirelockGlass + components: + - pos: -27.5,6.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 4272 + type: DisposalTrunk + components: + - rot: 3.141592653589793 rad + pos: -17.5,9.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 4273 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 4274 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 4275 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 4276 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 4277 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 4278 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 4279 + type: FirelockGlass + components: + - pos: -29.5,-1.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 4280 + type: DisposalJunctionFlipped + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 4281 + type: Chair + components: + - pos: -30.5,-14.5 + parent: 30 + type: Transform +- uid: 4282 + type: Table + components: + - pos: -30.5,-15.5 + parent: 30 + type: Transform +- uid: 4283 + type: GasPipeStraight + components: + - pos: -24.5,9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4284 + type: CableApcExtension + components: + - pos: -25.5,2.5 + parent: 30 + type: Transform +- uid: 4285 + type: GrilleBroken + components: + - pos: 2.5,21.5 + parent: 30 + type: Transform +- uid: 4286 + type: WallAlmayer + components: + - pos: -26.5,7.5 + parent: 30 + type: Transform +- uid: 4287 + type: WallAlmayer + components: + - pos: -18.5,-7.5 + parent: 30 + type: Transform +- uid: 4288 + type: WallAlmayer + components: + - pos: -21.5,-7.5 + parent: 30 + type: Transform +- uid: 4289 + type: WallAlmayer + components: + - pos: -24.5,-7.5 + parent: 30 + type: Transform +- uid: 4290 + type: WallAlmayer + components: + - pos: -24.5,-15.5 + parent: 30 + type: Transform +- uid: 4291 + type: WindowReinforcedDirectional + components: + - pos: -24.5,-9.5 + parent: 30 + type: Transform +- uid: 4292 + type: WindowReinforcedDirectional + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 30 + type: Transform +- uid: 4293 + type: WindowReinforcedDirectional + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-8.5 + parent: 30 + type: Transform +- uid: 4294 + type: WindowReinforcedDirectional + components: + - rot: 3.141592653589793 rad + pos: -24.5,-8.5 + parent: 30 + type: Transform +- uid: 4295 + type: WindowReinforcedDirectional + components: + - pos: -23.5,-7.5 + parent: 30 + type: Transform +- uid: 4296 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-8.5 + parent: 30 + type: Transform +- uid: 4297 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 30 + type: Transform +- uid: 4298 + type: WindowReinforcedDirectional + components: + - rot: 3.141592653589793 rad + pos: -19.5,-7.5 + parent: 30 + type: Transform +- uid: 4299 + type: AirlockGlassAlpha + components: + - pos: -26.5,1.5 + parent: 30 + type: Transform +- uid: 4300 + type: WindowAlmayer + components: + - pos: -26.5,0.5 + parent: 30 + type: Transform +- uid: 4301 + type: WindowReinforcedDirectional + components: + - rot: 3.141592653589793 rad + pos: -23.5,-7.5 + parent: 30 + type: Transform +- uid: 4302 + type: WindowReinforcedDirectional + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 30 + type: Transform +- uid: 4303 + type: WindowReinforcedDirectional + components: + - rot: 3.141592653589793 rad + pos: -22.5,-7.5 + parent: 30 + type: Transform +- uid: 4304 + type: Catwalk + components: + - pos: -3.5,-12.5 + parent: 30 + type: Transform +- uid: 4305 + type: WallAlmayer + components: + - pos: -4.5,-13.5 + parent: 30 + type: Transform +- uid: 4306 + type: WallAlmayer + components: + - pos: -26.5,-2.5 + parent: 30 + type: Transform +- uid: 4307 + type: AirlockGlassAlpha + components: + - pos: -17.5,-2.5 + parent: 30 + type: Transform +- uid: 4308 + type: Catwalk + components: + - pos: -3.5,-14.5 + parent: 30 + type: Transform +- uid: 4309 + type: Railing + components: + - pos: -10.5,9.5 + parent: 30 + type: Transform +- uid: 4310 + type: WallAlmayer + components: + - pos: -28.5,-13.5 + parent: 30 + type: Transform +- uid: 4311 + type: WallAlmayer + components: + - pos: -28.5,-12.5 + parent: 30 + type: Transform +- uid: 4312 + type: Table + components: + - pos: -29.5,-15.5 + parent: 30 + type: Transform +- uid: 4313 + type: CrateArtifactContainer + components: + - pos: -27.5,-14.5 + parent: 30 + type: Transform + - isPlaceable: False + type: PlaceableSurface + - containers: + entity_storage: !type:Container + ents: [] + paper_label: !type:ContainerSlot {} + type: ContainerContainer +- uid: 4314 + type: WallAlmayer + components: + - pos: -28.5,-10.5 + parent: 30 + type: Transform +- uid: 4315 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -29.5,-9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4316 + type: WallAlmayer + components: + - pos: -21.5,-15.5 + parent: 30 + type: Transform +- uid: 4317 + type: WallAlmayer + components: + - pos: -29.5,-19.5 + parent: 30 + type: Transform +- uid: 4318 + type: WallAlmayer + components: + - pos: -20.5,-15.5 + parent: 30 + type: Transform +- uid: 4319 + type: WallAlmayer + components: + - pos: -19.5,-15.5 + parent: 30 + type: Transform +- uid: 4320 + type: Catwalk + components: + - pos: -8.5,-21.5 + parent: 30 + type: Transform +- uid: 4321 + type: WallAlmayer + components: + - pos: -18.5,-15.5 + parent: 30 + type: Transform +- uid: 4322 + type: WallAlmayer + components: + - pos: -17.5,-15.5 + parent: 30 + type: Transform +- uid: 4323 + type: WallAlmayer + components: + - pos: -16.5,-15.5 + parent: 30 + type: Transform +- uid: 4324 + type: WallAlmayer + components: + - pos: -15.5,-15.5 + parent: 30 + type: Transform +- uid: 4325 + type: WallAlmayer + components: + - pos: -14.5,-15.5 + parent: 30 + type: Transform +- uid: 4326 + type: WallAlmayer + components: + - pos: -13.5,-15.5 + parent: 30 + type: Transform +- uid: 4327 + type: WallAlmayer + components: + - pos: -12.5,-15.5 + parent: 30 + type: Transform +- uid: 4328 + type: WallAlmayer + components: + - pos: -12.5,-14.5 + parent: 30 + type: Transform +- uid: 4329 + type: WallAlmayer + components: + - pos: -12.5,-13.5 + parent: 30 + type: Transform +- uid: 4330 + type: WallAlmayer + components: + - pos: -24.5,-11.5 + parent: 30 + type: Transform +- uid: 4331 + type: WallAlmayer + components: + - pos: -24.5,-10.5 + parent: 30 + type: Transform +- uid: 4332 + type: WallAlmayer + components: + - pos: -23.5,-11.5 + parent: 30 + type: Transform +- uid: 4333 + type: WallAlmayer + components: + - pos: -18.5,-11.5 + parent: 30 + type: Transform +- uid: 4334 + type: WallAlmayer + components: + - pos: -18.5,-12.5 + parent: 30 + type: Transform +- uid: 4335 + type: WallAlmayer + components: + - pos: -18.5,-10.5 + parent: 30 + type: Transform +- uid: 4336 + type: WallAlmayer + components: + - pos: -19.5,-11.5 + parent: 30 + type: Transform +- uid: 4337 + type: WallAlmayer + components: + - pos: -20.5,-11.5 + parent: 30 + type: Transform +- uid: 4338 + type: WindowReinforcedDirectional + components: + - pos: -22.5,-7.5 + parent: 30 + type: Transform +- uid: 4339 + type: WallAlmayer + components: + - pos: -25.5,-15.5 + parent: 30 + type: Transform +- uid: 4340 + type: WallAlmayer + components: + - pos: -18.5,-14.5 + parent: 30 + type: Transform +- uid: 4341 + type: AirlockGlassAlpha + components: + - pos: -21.5,-11.5 + parent: 30 + type: Transform +- uid: 4342 + type: SignScience + components: + - pos: -24.5,-7.5 + parent: 30 + type: Transform +- uid: 4343 + type: AirlockGlassAlpha + components: + - pos: -26.5,2.5 + parent: 30 + type: Transform +- uid: 4344 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 30 + type: Transform +- uid: 4345 + type: WindowReinforcedDirectional + components: + - rot: 3.141592653589793 rad + pos: -20.5,-7.5 + parent: 30 + type: Transform +- uid: 4346 + type: WallAlmayer + components: + - pos: -26.5,-0.5 + parent: 30 + type: Transform +- uid: 4347 + type: WallAlmayer + components: + - pos: -26.5,8.5 + parent: 30 + type: Transform +- uid: 4348 + type: WallAlmayer + components: + - pos: -26.5,-15.5 + parent: 30 + type: Transform +- uid: 4349 + type: WallAlmayer + components: + - pos: -22.5,-11.5 + parent: 30 + type: Transform +- uid: 4350 + type: Grille + components: + - pos: -24.5,-9.5 + parent: 30 + type: Transform +- uid: 4351 + type: Grille + components: + - pos: -24.5,-8.5 + parent: 30 + type: Transform +- uid: 4352 + type: Catwalk + components: + - pos: -8.5,-22.5 + parent: 30 + type: Transform +- uid: 4353 + type: GasPipeStraight + components: + - pos: 5.5,13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4354 + type: Grille + components: + - pos: -18.5,-9.5 + parent: 30 + type: Transform +- uid: 4355 + type: Grille + components: + - pos: -18.5,-8.5 + parent: 30 + type: Transform +- uid: 4356 + type: Grille + components: + - pos: -19.5,-7.5 + parent: 30 + type: Transform +- uid: 4357 + type: Grille + components: + - pos: -20.5,-7.5 + parent: 30 + type: Transform +- uid: 4358 + type: Grille + components: + - pos: -22.5,-7.5 + parent: 30 + type: Transform +- uid: 4359 + type: Grille + components: + - pos: -23.5,-7.5 + parent: 30 + type: Transform +- uid: 4360 + type: TableReinforced + components: + - pos: -16.5,-9.5 + parent: 30 + type: Transform +- uid: 4361 + type: WindowAlmayer + components: + - pos: -17.5,-9.5 + parent: 30 + type: Transform +- uid: 4362 + type: AirlockGlassAlpha + components: + - pos: 10.5,-7.5 + parent: 30 + type: Transform +- uid: 4363 + type: WindowAlmayer + components: + - pos: -15.5,-9.5 + parent: 30 + type: Transform +- uid: 4364 + type: WallAlmayer + components: + - pos: -14.5,-9.5 + parent: 30 + type: Transform +- uid: 4365 + type: Grille + components: + - pos: -15.5,-9.5 + parent: 30 + type: Transform +- uid: 4366 + type: Grille + components: + - pos: -17.5,-9.5 + parent: 30 + type: Transform +- uid: 4367 + type: WindoorScienceLocked + components: + - pos: -16.5,-9.5 + parent: 30 + type: Transform +- uid: 4368 + type: AirlockGlassAlpha + components: + - pos: -18.5,-13.5 + parent: 30 + type: Transform +- uid: 4369 + type: CableApcExtension + components: + - pos: -21.5,24.5 + parent: 30 + type: Transform +- uid: 4370 + type: WallAlmayer + components: + - pos: -26.5,18.5 + parent: 30 + type: Transform +- uid: 4371 + type: AirlockGlassAlpha + components: + - pos: -12.5,11.5 + parent: 30 + type: Transform +- uid: 4372 + type: ComfyChair + components: + - rot: 3.141592653589793 rad + pos: -27.5,-12.5 + parent: 30 + type: Transform +- uid: 4373 + type: WindowAlmayer + components: + - pos: -23.5,26.5 + parent: 30 + type: Transform +- uid: 4374 + type: FirelockGlass + components: + - pos: -13.5,17.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 4375 + type: Grille + components: + - pos: -25.5,-8.5 + parent: 30 + type: Transform +- uid: 4376 + type: WindowReinforcedDirectional + components: + - pos: -20.5,-7.5 + parent: 30 + type: Transform +- uid: 4377 + type: ComfyChair + components: + - pos: -27.5,-10.5 + parent: 30 + type: Transform +- uid: 4378 + type: AirlockGlassAlpha + components: + - pos: -12.5,10.5 + parent: 30 + type: Transform +- uid: 4379 + type: Railing + components: + - pos: -11.5,9.5 + parent: 30 + type: Transform +- uid: 4380 + type: WallAlmayer + components: + - pos: -4.5,-14.5 + parent: 30 + type: Transform +- uid: 4381 + type: Catwalk + components: + - pos: -8.5,-23.5 + parent: 30 + type: Transform +- uid: 4382 + type: WallAlmayer + components: + - pos: -8.5,-12.5 + parent: 30 + type: Transform +- uid: 4383 + type: WindowAlmayer + components: + - pos: -10.5,-17.5 + parent: 30 + type: Transform +- uid: 4384 + type: WindowAlmayer + components: + - pos: -9.5,-19.5 + parent: 30 + type: Transform +- uid: 4385 + type: WallAlmayer + components: + - pos: -5.5,-17.5 + parent: 30 + type: Transform +- uid: 4386 + type: WallAlmayer + components: + - pos: -16.5,-17.5 + parent: 30 + type: Transform +- uid: 4387 + type: WallAlmayer + components: + - pos: -12.5,-17.5 + parent: 30 + type: Transform +- uid: 4388 + type: AirlockGlassAlpha + components: + - pos: -13.5,-17.5 + parent: 30 + type: Transform +- uid: 4389 + type: WallAlmayer + components: + - pos: -14.5,-17.5 + parent: 30 + type: Transform +- uid: 4390 + type: WallAlmayer + components: + - pos: -15.5,-17.5 + parent: 30 + type: Transform +- uid: 4391 + type: WallAlmayer + components: + - pos: -17.5,-17.5 + parent: 30 + type: Transform +- uid: 4392 + type: WallAlmayer + components: + - pos: -18.5,-17.5 + parent: 30 + type: Transform +- uid: 4393 + type: WallAlmayer + components: + - pos: -19.5,-17.5 + parent: 30 + type: Transform +- uid: 4394 + type: WallAlmayer + components: + - pos: -20.5,-17.5 + parent: 30 + type: Transform +- uid: 4395 + type: WallAlmayer + components: + - pos: -21.5,-17.5 + parent: 30 + type: Transform +- uid: 4396 + type: WallAlmayer + components: + - pos: -28.5,-17.5 + parent: 30 + type: Transform +- uid: 4397 + type: WallAlmayer + components: + - pos: -29.5,-18.5 + parent: 30 + type: Transform +- uid: 4398 + type: WallAlmayer + components: + - pos: -27.5,-17.5 + parent: 30 + type: Transform +- uid: 4399 + type: WallAlmayer + components: + - pos: -26.5,-17.5 + parent: 30 + type: Transform +- uid: 4400 + type: WallAlmayer + components: + - pos: -25.5,-17.5 + parent: 30 + type: Transform +- uid: 4401 + type: WallAlmayer + components: + - pos: -24.5,-17.5 + parent: 30 + type: Transform +- uid: 4402 + type: WallAlmayer + components: + - pos: -23.5,-17.5 + parent: 30 + type: Transform +- uid: 4403 + type: WallAlmayer + components: + - pos: -33.5,-12.5 + parent: 30 + type: Transform +- uid: 4404 + type: WallAlmayer + components: + - pos: -29.5,-17.5 + parent: 30 + type: Transform +- uid: 4405 + type: WallAlmayer + components: + - pos: -30.5,-17.5 + parent: 30 + type: Transform +- uid: 4406 + type: WallAlmayer + components: + - pos: -30.5,-21.5 + parent: 30 + type: Transform +- uid: 4407 + type: WallAlmayer + components: + - pos: -32.5,-17.5 + parent: 30 + type: Transform +- uid: 4408 + type: WallAlmayer + components: + - pos: -33.5,-17.5 + parent: 30 + type: Transform +- uid: 4409 + type: WallAlmayer + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-17.5 + parent: 30 + type: Transform +- uid: 4410 + type: WallAlmayer + components: + - pos: -33.5,-13.5 + parent: 30 + type: Transform +- uid: 4411 + type: WallAlmayer + components: + - pos: -33.5,-14.5 + parent: 30 + type: Transform +- uid: 4412 + type: WallAlmayer + components: + - pos: -33.5,-15.5 + parent: 30 + type: Transform +- uid: 4413 + type: WallAlmayer + components: + - pos: -12.5,-21.5 + parent: 30 + type: Transform +- uid: 4414 + type: WallAlmayer + components: + - pos: -15.5,-18.5 + parent: 30 + type: Transform +- uid: 4415 + type: WallAlmayer + components: + - pos: -15.5,-19.5 + parent: 30 + type: Transform +- uid: 4416 + type: WallAlmayer + components: + - pos: -15.5,-20.5 + parent: 30 + type: Transform +- uid: 4417 + type: WallAlmayer + components: + - pos: -15.5,-21.5 + parent: 30 + type: Transform +- uid: 4418 + type: WallAlmayer + components: + - pos: -14.5,-21.5 + parent: 30 + type: Transform +- uid: 4419 + type: WallAlmayer + components: + - pos: -13.5,-21.5 + parent: 30 + type: Transform +- uid: 4420 + type: WindowAlmayer + components: + - pos: -12.5,-19.5 + parent: 30 + type: Transform +- uid: 4421 + type: WindowAlmayer + components: + - pos: -9.5,-20.5 + parent: 30 + type: Transform +- uid: 4422 + type: WallAlmayer + components: + - pos: -12.5,-18.5 + parent: 30 + type: Transform +- uid: 4423 + type: WindowAlmayer + components: + - pos: -7.5,-19.5 + parent: 30 + type: Transform +- uid: 4424 + type: WallAlmayer + components: + - pos: -9.5,-12.5 + parent: 30 + type: Transform +- uid: 4425 + type: SMESBasic + components: + - pos: -14.5,-19.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 4426 + type: ComputerSolarControl + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-20.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 4427 + type: CableTerminal + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-19.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4428 + type: CableHV + components: + - pos: -14.5,-19.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4429 + type: CableHV + components: + - pos: -14.5,-18.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4430 + type: CableHV + components: + - pos: -13.5,-19.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4431 + type: CableHV + components: + - pos: -12.5,-19.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4432 + type: CableHV + components: + - pos: -14.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4433 + type: JetpackMini + components: + - pos: 24.528597,7.4831753 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4434 + type: CableHV + components: + - pos: -8.5,-22.5 + parent: 30 + type: Transform +- uid: 4435 + type: CableHV + components: + - pos: -8.5,-24.5 + parent: 30 + type: Transform +- uid: 4436 + type: CableHV + components: + - pos: -5.5,-24.5 + parent: 30 + type: Transform +- uid: 4437 + type: CableHV + components: + - pos: -7.5,-24.5 + parent: 30 + type: Transform +- uid: 4438 + type: SolarTracker + components: + - pos: -13.5,-24.5 + parent: 30 + type: Transform +- uid: 4439 + type: SolarPanel + components: + - pos: -11.5,-24.5 + parent: 30 + type: Transform +- uid: 4440 + type: SolarPanel + components: + - pos: -9.5,-24.5 + parent: 30 + type: Transform +- uid: 4441 + type: SolarPanel + components: + - pos: -6.5,-24.5 + parent: 30 + type: Transform +- uid: 4442 + type: SolarPanel + components: + - pos: -4.5,-24.5 + parent: 30 + type: Transform +- uid: 4443 + type: AirlockGlassAlpha + components: + - pos: 23.5,-24.5 + parent: 30 + type: Transform + - fixtures: + - shape: !type:PolygonShape + vertices: + - 0.49,-0.49 + - 0.49,0.49 + - -0.49,0.49 + - -0.49,-0.49 + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + layer: + - MidImpassable + - HighImpassable + - BulletImpassable + - InteractImpassable + - Opaque + mass: 100 + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures +- uid: 4444 + type: CableHV + components: + - pos: -11.5,-22.5 + parent: 30 + type: Transform +- uid: 4445 + type: CableHV + components: + - pos: -13.5,-22.5 + parent: 30 + type: Transform +- uid: 4446 + type: CableHV + components: + - pos: -12.5,-24.5 + parent: 30 + type: Transform +- uid: 4447 + type: Catwalk + components: + - pos: -8.5,-24.5 + parent: 30 + type: Transform +- uid: 4448 + type: CableHV + components: + - pos: -11.5,-24.5 + parent: 30 + type: Transform +- uid: 4449 + type: CableHV + components: + - pos: -9.5,-24.5 + parent: 30 + type: Transform +- uid: 4450 + type: CableHV + components: + - pos: -10.5,-24.5 + parent: 30 + type: Transform +- uid: 4451 + type: JetpackMini + components: + - pos: 24.512972,7.7644253 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4452 + type: CableHV + components: + - pos: -8.5,-23.5 + parent: 30 + type: Transform +- uid: 4453 + type: CableHV + components: + - pos: -7.5,-22.5 + parent: 30 + type: Transform +- uid: 4454 + type: CableHV + components: + - pos: -6.5,-24.5 + parent: 30 + type: Transform +- uid: 4455 + type: CableHV + components: + - pos: -13.5,-24.5 + parent: 30 + type: Transform +- uid: 4456 + type: SolarPanel + components: + - pos: -12.5,-24.5 + parent: 30 + type: Transform +- uid: 4457 + type: SolarPanel + components: + - pos: -10.5,-24.5 + parent: 30 + type: Transform +- uid: 4458 + type: SolarPanel + components: + - pos: -7.5,-24.5 + parent: 30 + type: Transform +- uid: 4459 + type: SolarPanel + components: + - pos: -5.5,-24.5 + parent: 30 + type: Transform +- uid: 4460 + type: AirlockGlassAlpha + components: + - pos: 15.5,-22.5 + parent: 30 + type: Transform +- uid: 4461 + type: AirlockGlassAlpha + components: + - pos: 15.5,-24.5 + parent: 30 + type: Transform + - fixtures: + - shape: !type:PolygonShape + vertices: + - 0.49,-0.49 + - 0.49,0.49 + - -0.49,0.49 + - -0.49,-0.49 + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + layer: + - MidImpassable + - HighImpassable + - BulletImpassable + - InteractImpassable + - Opaque + mass: 100 + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures +- uid: 4462 + type: SolarPanel + components: + - pos: -4.5,-22.5 + parent: 30 + type: Transform +- uid: 4463 + type: SolarPanel + components: + - pos: -6.5,-22.5 + parent: 30 + type: Transform +- uid: 4464 + type: SolarPanel + components: + - pos: -7.5,-22.5 + parent: 30 + type: Transform +- uid: 4465 + type: SolarPanel + components: + - pos: -5.5,-22.5 + parent: 30 + type: Transform +- uid: 4466 + type: CableHV + components: + - pos: -5.5,-22.5 + parent: 30 + type: Transform +- uid: 4467 + type: CableHV + components: + - pos: -4.5,-22.5 + parent: 30 + type: Transform +- uid: 4468 + type: SolarPanel + components: + - pos: -13.5,-22.5 + parent: 30 + type: Transform +- uid: 4469 + type: SolarPanel + components: + - pos: -11.5,-22.5 + parent: 30 + type: Transform +- uid: 4470 + type: CableHV + components: + - pos: -14.5,-22.5 + parent: 30 + type: Transform +- uid: 4471 + type: CableHV + components: + - pos: -12.5,-22.5 + parent: 30 + type: Transform +- uid: 4472 + type: AirlockGlassAlpha + components: + - pos: 13.5,-24.5 + parent: 30 + type: Transform + - fixtures: + - shape: !type:PolygonShape + vertices: + - 0.49,-0.49 + - 0.49,0.49 + - -0.49,0.49 + - -0.49,-0.49 + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + layer: + - MidImpassable + - HighImpassable + - BulletImpassable + - InteractImpassable + - Opaque + mass: 100 + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures +- uid: 4473 + type: AirlockGlassAlpha + components: + - pos: 21.5,-24.5 + parent: 30 + type: Transform + - fixtures: + - shape: !type:PolygonShape + vertices: + - 0.49,-0.49 + - 0.49,0.49 + - -0.49,0.49 + - -0.49,-0.49 + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + layer: + - MidImpassable + - HighImpassable + - BulletImpassable + - InteractImpassable + - Opaque + mass: 100 + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures +- uid: 4474 + type: AirlockGlassAlpha + components: + - pos: 13.5,-22.5 + parent: 30 + type: Transform +- uid: 4475 + type: CableHV + components: + - pos: -4.5,-24.5 + parent: 30 + type: Transform +- uid: 4476 + type: SolarPanel + components: + - pos: -12.5,-22.5 + parent: 30 + type: Transform +- uid: 4477 + type: SolarPanel + components: + - pos: -14.5,-22.5 + parent: 30 + type: Transform +- uid: 4478 + type: CableHV + components: + - pos: -1.5,28.5 + parent: 30 + type: Transform +- uid: 4479 + type: CableHV + components: + - pos: 0.5,28.5 + parent: 30 + type: Transform +- uid: 4480 + type: CableHV + components: + - pos: 2.5,28.5 + parent: 30 + type: Transform +- uid: 4481 + type: SolarPanel + components: + - pos: -7.5,26.5 + parent: 30 + type: Transform +- uid: 4482 + type: CableHV + components: + - pos: -11.5,-19.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4483 + type: CableHV + components: + - pos: -12.5,-19.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4484 + type: CableHV + components: + - pos: -13.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4485 + type: CableHV + components: + - pos: -13.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4486 + type: CableHV + components: + - pos: -12.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4487 + type: CableHV + components: + - pos: -11.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4488 + type: CableHV + components: + - pos: -10.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4489 + type: CableHV + components: + - pos: -9.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4490 + type: CableHV + components: + - pos: -8.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4491 + type: CableHV + components: + - pos: -7.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4492 + type: CableHV + components: + - pos: -6.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4493 + type: CableHV + components: + - pos: -5.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4494 + type: CableHV + components: + - pos: -4.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4495 + type: CableHV + components: + - pos: 6.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4496 + type: CableHV + components: + - pos: 5.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4497 + type: CableHV + components: + - pos: 4.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4498 + type: CableHV + components: + - pos: 3.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4499 + type: CableHV + components: + - pos: 2.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4500 + type: CableHV + components: + - pos: 1.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4501 + type: CableHV + components: + - pos: -0.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4502 + type: CableHV + components: + - pos: 0.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4503 + type: CableHV + components: + - pos: -1.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4504 + type: CableHV + components: + - pos: -2.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4505 + type: CableHV + components: + - pos: -3.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4506 + type: CableHV + components: + - pos: -3.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4507 + type: CableHV + components: + - pos: -14.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4508 + type: CableHV + components: + - pos: -15.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4509 + type: CableHV + components: + - pos: -16.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4510 + type: CableHV + components: + - pos: -17.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4511 + type: CableHV + components: + - pos: -18.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4512 + type: CableHV + components: + - pos: -19.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4513 + type: CableHV + components: + - pos: -20.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4514 + type: CableHV + components: + - pos: -21.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4515 + type: CableHV + components: + - pos: -22.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4516 + type: CableHV + components: + - pos: -23.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4517 + type: CableHV + components: + - pos: -24.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4518 + type: CableHV + components: + - pos: -25.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4519 + type: CableHV + components: + - pos: -26.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4520 + type: CableHV + components: + - pos: -26.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4521 + type: CableHV + components: + - pos: -27.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4522 + type: CableHV + components: + - pos: -28.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4523 + type: CableHV + components: + - pos: -29.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4524 + type: CableHV + components: + - pos: -29.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4525 + type: CableHV + components: + - pos: -30.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4526 + type: CableHV + components: + - pos: -31.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4527 + type: CableHV + components: + - pos: -32.5,-16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4528 + type: CableHV + components: + - pos: -32.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4529 + type: CableHV + components: + - pos: -32.5,-14.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4530 + type: CableHV + components: + - pos: -32.5,-13.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4531 + type: SolarPanel + components: + - pos: -5.5,26.5 + parent: 30 + type: Transform +- uid: 4532 + type: SolarPanel + components: + - pos: -9.5,28.5 + parent: 30 + type: Transform +- uid: 4533 + type: SolarPanel + components: + - pos: -7.5,28.5 + parent: 30 + type: Transform +- uid: 4534 + type: SolarPanel + components: + - pos: -5.5,28.5 + parent: 30 + type: Transform +- uid: 4535 + type: SolarPanel + components: + - pos: -3.5,28.5 + parent: 30 + type: Transform +- uid: 4536 + type: CableHV + components: + - pos: -3.5,28.5 + parent: 30 + type: Transform +- uid: 4537 + type: CableHV + components: + - pos: -4.5,27.5 + parent: 30 + type: Transform +- uid: 4538 + type: Catwalk + components: + - pos: -10.5,28.5 + parent: 30 + type: Transform +- uid: 4539 + type: Catwalk + components: + - pos: -10.5,26.5 + parent: 30 + type: Transform +- uid: 4540 + type: Catwalk + components: + - pos: -10.5,24.5 + parent: 30 + type: Transform +- uid: 4541 + type: CableHV + components: + - pos: -0.5,28.5 + parent: 30 + type: Transform +- uid: 4542 + type: CableHV + components: + - pos: 1.5,28.5 + parent: 30 + type: Transform +- uid: 4543 + type: SolarTracker + components: + - pos: -8.5,26.5 + parent: 30 + type: Transform +- uid: 4544 + type: SolarPanel + components: + - pos: -6.5,26.5 + parent: 30 + type: Transform +- uid: 4545 + type: SolarPanel + components: + - pos: -4.5,26.5 + parent: 30 + type: Transform +- uid: 4546 + type: SolarPanel + components: + - pos: -8.5,28.5 + parent: 30 + type: Transform +- uid: 4547 + type: SolarPanel + components: + - pos: -6.5,28.5 + parent: 30 + type: Transform +- uid: 4548 + type: SolarPanel + components: + - pos: -4.5,28.5 + parent: 30 + type: Transform +- uid: 4549 + type: SolarPanel + components: + - pos: -2.5,28.5 + parent: 30 + type: Transform +- uid: 4550 + type: CableHV + components: + - pos: -8.5,26.5 + parent: 30 + type: Transform +- uid: 4551 + type: CableHV + components: + - pos: -2.5,28.5 + parent: 30 + type: Transform +- uid: 4552 + type: CableHV + components: + - pos: -4.5,28.5 + parent: 30 + type: Transform +- uid: 4553 + type: CableHV + components: + - pos: -5.5,28.5 + parent: 30 + type: Transform +- uid: 4554 + type: CableHV + components: + - pos: -6.5,28.5 + parent: 30 + type: Transform +- uid: 4555 + type: CableHV + components: + - pos: -7.5,28.5 + parent: 30 + type: Transform +- uid: 4556 + type: CableHV + components: + - pos: -8.5,28.5 + parent: 30 + type: Transform +- uid: 4557 + type: CableHV + components: + - pos: -9.5,28.5 + parent: 30 + type: Transform +- uid: 4558 + type: CableHV + components: + - pos: -4.5,26.5 + parent: 30 + type: Transform +- uid: 4559 + type: CableHV + components: + - pos: -5.5,26.5 + parent: 30 + type: Transform +- uid: 4560 + type: CableHV + components: + - pos: -6.5,26.5 + parent: 30 + type: Transform +- uid: 4561 + type: CableHV + components: + - pos: -7.5,26.5 + parent: 30 + type: Transform +- uid: 4562 + type: Catwalk + components: + - pos: -10.5,27.5 + parent: 30 + type: Transform +- uid: 4563 + type: Catwalk + components: + - pos: -10.5,25.5 + parent: 30 + type: Transform +- uid: 4564 + type: GasOutletInjector + components: + - rot: 3.141592653589793 rad + pos: -47.5,1.5 + parent: 30 + type: Transform +- uid: 4565 + type: GasOutletInjector + components: + - rot: 3.141592653589793 rad + pos: -47.5,3.5 + parent: 30 + type: Transform +- uid: 4566 + type: SignalButton + components: + - pos: -17.5,24.5 + parent: 30 + type: Transform + - fixtures: [] + type: Fixtures + - outputs: + Pressed: + - port: Toggle + uid: 5935 + - port: Toggle + uid: 5838 + type: SignalTransmitter +- uid: 4567 + type: WindowAlmayer + components: + - pos: -9.5,-18.5 + parent: 30 + type: Transform +- uid: 4568 + type: WindowAlmayer + components: + - pos: -9.5,-17.5 + parent: 30 + type: Transform +- uid: 4569 + type: WindowAlmayer + components: + - pos: -6.5,-17.5 + parent: 30 + type: Transform +- uid: 4570 + type: WindowAlmayer + components: + - pos: -7.5,-20.5 + parent: 30 + type: Transform +- uid: 4571 + type: Railing + components: + - pos: -9.5,9.5 + parent: 30 + type: Transform +- uid: 4572 + type: WindowAlmayer + components: + - pos: -7.5,-17.5 + parent: 30 + type: Transform +- uid: 4573 + type: WindowAlmayer + components: + - pos: -7.5,-18.5 + parent: 30 + type: Transform +- uid: 4574 + type: WallAlmayer + components: + - pos: -11.5,-17.5 + parent: 30 + type: Transform +- uid: 4575 + type: WallAlmayer + components: + - pos: -12.5,-20.5 + parent: 30 + type: Transform +- uid: 4576 + type: AirlockGlassAlpha + components: + - pos: -8.5,-20.5 + parent: 30 + type: Transform +- uid: 4577 + type: AirlockGlassAlpha + components: + - pos: -8.5,-17.5 + parent: 30 + type: Transform +- uid: 4578 + type: CableApcExtension + components: + - pos: -7.5,-16.5 + parent: 30 + type: Transform +- uid: 4579 + type: Catwalk + components: + - pos: -3.5,-15.5 + parent: 30 + type: Transform +- uid: 4580 + type: Grille + components: + - pos: -34.5,4.5 + parent: 30 + type: Transform +- uid: 4581 + type: Grille + components: + - pos: -34.5,0.5 + parent: 30 + type: Transform +- uid: 4582 + type: WindowAlmayer + components: + - pos: -34.5,2.5 + parent: 30 + type: Transform +- uid: 4583 + type: WindowAlmayer + components: + - pos: -34.5,0.5 + parent: 30 + type: Transform +- uid: 4584 + type: WallAlmayer + components: + - pos: -34.5,1.5 + parent: 30 + type: Transform +- uid: 4585 + type: PlasticFlapsAirtightClear + components: + - pos: -18.5,26.5 + parent: 30 + type: Transform +- uid: 4586 + type: SignalButton + components: + - pos: -20.5,25.5 + parent: 30 + type: Transform + - fixtures: [] + type: Fixtures + - outputs: + Pressed: + - port: Toggle + uid: 5929 + - port: Toggle + uid: 5836 + type: SignalTransmitter +- uid: 4587 + type: PlasticFlapsAirtightClear + components: + - pos: -18.5,24.5 + parent: 30 + type: Transform +- uid: 4588 + type: Grille + components: + - pos: -34.5,2.5 + parent: 30 + type: Transform +- uid: 4589 + type: WindowAlmayer + components: + - pos: -34.5,4.5 + parent: 30 + type: Transform +- uid: 4590 + type: WallAlmayer + components: + - pos: -34.5,5.5 + parent: 30 + type: Transform +- uid: 4591 + type: WallAlmayer + components: + - pos: -34.5,3.5 + parent: 30 + type: Transform +- uid: 4592 + type: WallAlmayer + components: + - pos: -34.5,-0.5 + parent: 30 + type: Transform +- uid: 4593 + type: OxygenCanister + components: + - pos: -43.5,2.5 + parent: 30 + type: Transform +- uid: 4594 + type: NitrogenCanister + components: + - pos: -43.5,4.5 + parent: 30 + type: Transform +- uid: 4595 + type: SolarPanel + components: + - pos: -1.5,28.5 + parent: 30 + type: Transform +- uid: 4596 + type: SolarPanel + components: + - pos: -0.5,28.5 + parent: 30 + type: Transform +- uid: 4597 + type: SolarPanel + components: + - pos: 0.5,28.5 + parent: 30 + type: Transform +- uid: 4598 + type: SolarPanel + components: + - pos: 1.5,28.5 + parent: 30 + type: Transform +- uid: 4599 + type: SolarPanel + components: + - pos: 2.5,28.5 + parent: 30 + type: Transform +- uid: 4600 + type: ComputerShuttleCargo + components: + - pos: -20.5,23.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 4601 + type: ComputerCargoShuttle + components: + - rot: 1.5707963267948966 rad + pos: -23.5,18.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 4602 + type: WallAlmayer + components: + - pos: 12.5,-20.5 + parent: 30 + type: Transform +- uid: 4603 + type: WindowAlmayer + components: + - pos: 12.5,-22.5 + parent: 30 + type: Transform +- uid: 4604 + type: WallAlmayer + components: + - pos: 24.5,-20.5 + parent: 30 + type: Transform +- uid: 4605 + type: MaintenanceFluffSpawner + components: + - pos: 15.5,-17.5 + parent: 30 + type: Transform +- uid: 4606 + type: Grille + components: + - pos: 24.5,-21.5 + parent: 30 + type: Transform +- uid: 4607 + type: Grille + components: + - pos: 24.5,-22.5 + parent: 30 + type: Transform +- uid: 4608 + type: CrateEngineeringCableBulk + components: + - pos: -14.5,-18.5 + parent: 30 + type: Transform + - containers: + - EntityStorageComponent + type: Construction + - isPlaceable: False + type: PlaceableSurface +- uid: 4609 + type: ChairOfficeDark + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-20.5 + parent: 30 + type: Transform +- uid: 4610 + type: PoweredSmallLight + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-19.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 4611 + type: PoweredSmallLight + components: + - pos: -13.5,-16.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 4612 + type: AirlockGlassAlpha + components: + - pos: -26.5,3.5 + parent: 30 + type: Transform +- uid: 4613 + type: FirelockGlass + components: + - pos: -15.5,-16.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 4614 + type: WallAlmayer + components: + - pos: -29.5,-20.5 + parent: 30 + type: Transform +- uid: 4615 + type: WallAlmayer + components: + - pos: -29.5,-21.5 + parent: 30 + type: Transform +- uid: 4616 + type: WallAlmayer + components: + - pos: -29.5,-22.5 + parent: 30 + type: Transform +- uid: 4617 + type: WallAlmayer + components: + - pos: -29.5,-23.5 + parent: 30 + type: Transform +- uid: 4618 + type: WallAlmayer + components: + - pos: -15.5,-22.5 + parent: 30 + type: Transform +- uid: 4619 + type: WallAlmayer + components: + - pos: -15.5,-23.5 + parent: 30 + type: Transform +- uid: 4620 + type: WallAlmayer + components: + - pos: -16.5,-23.5 + parent: 30 + type: Transform +- uid: 4621 + type: WallAlmayer + components: + - pos: -18.5,-23.5 + parent: 30 + type: Transform +- uid: 4622 + type: WallAlmayer + components: + - pos: -19.5,-23.5 + parent: 30 + type: Transform +- uid: 4623 + type: WallAlmayer + components: + - pos: -25.5,-23.5 + parent: 30 + type: Transform +- uid: 4624 + type: WallAlmayer + components: + - pos: -26.5,-23.5 + parent: 30 + type: Transform +- uid: 4625 + type: WallAlmayer + components: + - pos: -28.5,-23.5 + parent: 30 + type: Transform +- uid: 4626 + type: WallAlmayer + components: + - pos: -25.5,-22.5 + parent: 30 + type: Transform +- uid: 4627 + type: AirlockGlassAlpha + components: + - pos: -19.5,-21.5 + parent: 30 + type: Transform +- uid: 4628 + type: WallAlmayer + components: + - pos: -25.5,-20.5 + parent: 30 + type: Transform +- uid: 4629 + type: WallAlmayer + components: + - pos: -19.5,-22.5 + parent: 30 + type: Transform +- uid: 4630 + type: AirlockGlassAlpha + components: + - pos: -25.5,-21.5 + parent: 30 + type: Transform +- uid: 4631 + type: WallAlmayer + components: + - pos: -19.5,-20.5 + parent: 30 + type: Transform +- uid: 4632 + type: Grille + components: + - pos: -16.5,-20.5 + parent: 30 + type: Transform +- uid: 4633 + type: Grille + components: + - pos: -28.5,-20.5 + parent: 30 + type: Transform +- uid: 4634 + type: GasPipeStraight + components: + - pos: -26.5,-20.5 + parent: 30 + type: Transform +- uid: 4635 + type: GasPipeStraight + components: + - pos: -16.5,-20.5 + parent: 30 + type: Transform +- uid: 4636 + type: WallAlmayer + components: + - pos: -22.5,-22.5 + parent: 30 + type: Transform +- uid: 4637 + type: WindowAlmayer + components: + - pos: -23.5,-22.5 + parent: 30 + type: Transform +- uid: 4638 + type: WindowAlmayer + components: + - pos: -24.5,-22.5 + parent: 30 + type: Transform +- uid: 4639 + type: GasPipeTJunction + components: + - pos: -23.5,-21.5 + parent: 30 + type: Transform +- uid: 4640 + type: WindowAlmayer + components: + - pos: -20.5,-22.5 + parent: 30 + type: Transform +- uid: 4641 + type: WindowAlmayer + components: + - pos: -16.5,-20.5 + parent: 30 + type: Transform +- uid: 4642 + type: Grille + components: + - pos: -18.5,-20.5 + parent: 30 + type: Transform +- uid: 4643 + type: GasPipeStraight + components: + - pos: -18.5,-20.5 + parent: 30 + type: Transform +- uid: 4644 + type: GasPipeStraight + components: + - pos: -28.5,-20.5 + parent: 30 + type: Transform +- uid: 4645 + type: Grille + components: + - pos: -23.5,-22.5 + parent: 30 + type: Transform +- uid: 4646 + type: Grille + components: + - pos: -24.5,-22.5 + parent: 30 + type: Transform +- uid: 4647 + type: Grille + components: + - pos: -20.5,-22.5 + parent: 30 + type: Transform +- uid: 4648 + type: Grille + components: + - pos: -21.5,-22.5 + parent: 30 + type: Transform +- uid: 4649 + type: AirlockGlassAlpha + components: + - pos: -22.5,-17.5 + parent: 30 + type: Transform +- uid: 4650 + type: AirlockGlassAlpha + components: + - pos: -22.5,-15.5 + parent: 30 + type: Transform +- uid: 4651 + type: BlastDoor + components: + - pos: -27.5,-23.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 7371 + type: SignalReceiver +- uid: 4652 + type: BlastDoor + components: + - pos: -17.5,-23.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 7372 + type: SignalReceiver +- uid: 4653 + type: GasAnalyzer + components: + - pos: -23.224174,-21.452734 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4654 + type: StorageCanister + components: + - pos: -17.5,-18.5 + parent: 30 + type: Transform +- uid: 4655 + type: StorageCanister + components: + - pos: -25.5,-18.5 + parent: 30 + type: Transform +- uid: 4656 + type: Table + components: + - pos: -23.5,-21.5 + parent: 30 + type: Transform +- uid: 4657 + type: GasAnalyzer + components: + - pos: -23.536674,-21.452734 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4658 + type: WindowAlmayer + components: + - pos: -27.5,-20.5 + parent: 30 + type: Transform +- uid: 4659 + type: WindowAlmayer + components: + - pos: -17.5,-20.5 + parent: 30 + type: Transform +- uid: 4660 + type: Grille + components: + - pos: -27.5,-20.5 + parent: 30 + type: Transform +- uid: 4661 + type: Grille + components: + - pos: -17.5,-20.5 + parent: 30 + type: Transform +- uid: 4662 + type: ClothingNeckCloakHerald + components: + - pos: 7.5517178,-16.46739 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4663 + type: MaintenanceToolSpawner + components: + - pos: 7.5,-16.5 + parent: 30 + type: Transform +- uid: 4664 + type: NitrogenCanister + components: + - pos: -22.5,-21.5 + parent: 30 + type: Transform +- uid: 4665 + type: OxygenCanister + components: + - pos: -21.5,-21.5 + parent: 30 + type: Transform +- uid: 4666 + type: GasPipeStraight + components: + - pos: -24.5,-20.5 + parent: 30 + type: Transform +- uid: 4667 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -24.5,-21.5 + parent: 30 + type: Transform +- uid: 4668 + type: GasPipeStraight + components: + - pos: -23.5,-22.5 + parent: 30 + type: Transform +- uid: 4669 + type: WindowAlmayer + components: + - pos: -21.5,-22.5 + parent: 30 + type: Transform +- uid: 4670 + type: GasPassiveVent + components: + - rot: 3.141592653589793 rad + pos: -23.5,-23.5 + parent: 30 + type: Transform +- uid: 4671 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-21.5 + parent: 30 + type: Transform +- uid: 4672 + type: Grille + components: + - pos: -26.5,-20.5 + parent: 30 + type: Transform +- uid: 4673 + type: WindowAlmayer + components: + - pos: -18.5,-20.5 + parent: 30 + type: Transform +- uid: 4674 + type: GasPressurePump + components: + - pos: -18.5,-19.5 + parent: 30 + type: Transform +- uid: 4675 + type: GasPressurePump + components: + - rot: 3.141592653589793 rad + pos: -16.5,-19.5 + parent: 30 + type: Transform +- uid: 4676 + type: GasPassiveVent + components: + - rot: 3.141592653589793 rad + pos: -28.5,-21.5 + parent: 30 + type: Transform +- uid: 4677 + type: GasPassiveVent + components: + - rot: 3.141592653589793 rad + pos: -26.5,-21.5 + parent: 30 + type: Transform +- uid: 4678 + type: GasPassiveVent + components: + - rot: 3.141592653589793 rad + pos: -18.5,-21.5 + parent: 30 + type: Transform +- uid: 4679 + type: GasPassiveVent + components: + - rot: 3.141592653589793 rad + pos: -16.5,-21.5 + parent: 30 + type: Transform +- uid: 4680 + type: WindowAlmayer + components: + - pos: -26.5,-20.5 + parent: 30 + type: Transform +- uid: 4681 + type: WindowAlmayer + components: + - pos: -28.5,-20.5 + parent: 30 + type: Transform +- uid: 4682 + type: GasPressurePump + components: + - rot: 3.141592653589793 rad + pos: -26.5,-19.5 + parent: 30 + type: Transform +- uid: 4683 + type: GasPressurePump + components: + - pos: -28.5,-19.5 + parent: 30 + type: Transform +- uid: 4684 + type: GasPort + components: + - pos: -28.5,-18.5 + parent: 30 + type: Transform +- uid: 4685 + type: GasPort + components: + - pos: -26.5,-18.5 + parent: 30 + type: Transform +- uid: 4686 + type: GasPort + components: + - pos: -18.5,-18.5 + parent: 30 + type: Transform +- uid: 4687 + type: GasPort + components: + - pos: -16.5,-18.5 + parent: 30 + type: Transform +- uid: 4688 + type: AtmosFixBlockerMarker + components: + - pos: -26.5,-22.5 + parent: 30 + type: Transform +- uid: 4689 + type: AtmosFixBlockerMarker + components: + - pos: -26.5,-21.5 + parent: 30 + type: Transform +- uid: 4690 + type: AtmosFixBlockerMarker + components: + - pos: -27.5,-21.5 + parent: 30 + type: Transform +- uid: 4691 + type: AtmosFixBlockerMarker + components: + - pos: -27.5,-22.5 + parent: 30 + type: Transform +- uid: 4692 + type: AtmosFixBlockerMarker + components: + - pos: -28.5,-22.5 + parent: 30 + type: Transform +- uid: 4693 + type: AtmosFixBlockerMarker + components: + - pos: -28.5,-21.5 + parent: 30 + type: Transform +- uid: 4694 + type: AtmosFixBlockerMarker + components: + - pos: -18.5,-22.5 + parent: 30 + type: Transform +- uid: 4695 + type: AtmosFixBlockerMarker + components: + - pos: -18.5,-21.5 + parent: 30 + type: Transform +- uid: 4696 + type: AtmosFixBlockerMarker + components: + - pos: -17.5,-21.5 + parent: 30 + type: Transform +- uid: 4697 + type: AtmosFixBlockerMarker + components: + - pos: -17.5,-22.5 + parent: 30 + type: Transform +- uid: 4698 + type: AtmosFixBlockerMarker + components: + - pos: -16.5,-22.5 + parent: 30 + type: Transform +- uid: 4699 + type: AtmosFixBlockerMarker + components: + - pos: -16.5,-21.5 + parent: 30 + type: Transform +- uid: 4700 + type: SignBiohazardMed + components: + - pos: -23.5,-17.5 + parent: 30 + type: Transform +- uid: 4701 + type: SignFlammableMed + components: + - pos: -21.5,-17.5 + parent: 30 + type: Transform +- uid: 4702 + type: SignFire + components: + - pos: -26.5,-23.5 + parent: 30 + type: Transform +- uid: 4703 + type: SignFire + components: + - pos: -16.5,-23.5 + parent: 30 + type: Transform +- uid: 4704 + type: WarningWaste + components: + - pos: -28.5,-23.5 + parent: 30 + type: Transform +- uid: 4705 + type: WarningWaste + components: + - pos: -18.5,-23.5 + parent: 30 + type: Transform +- uid: 4706 + type: SpawnPointResearchDirector + components: + - pos: -21.5,-10.5 + parent: 30 + type: Transform +- uid: 4707 + type: WindowDirectional + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-10.5 + parent: 30 + type: Transform +- uid: 4708 + type: ChairOfficeLight + components: + - rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 30 + type: Transform +- uid: 4709 + type: ClothingHandsGlovesColorYellow + components: + - pos: -33.50279,-5.4293866 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4710 + type: LockerResearchDirectorFilled + components: + - pos: -22.5,-8.5 + parent: 30 + type: Transform + - containers: + entity_storage: !type:Container + ents: + - 5073 + type: ContainerContainer +- uid: 4711 + type: WindowDirectional + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-8.5 + parent: 30 + type: Transform +- uid: 4712 + type: ComputerCargoOrders + components: + - pos: -35.5,17.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 4713 + type: Windoor + components: + - rot: -1.5707963267948966 rad + pos: -17.5,1.5 + parent: 30 + type: Transform +- uid: 4714 + type: ChairOfficeDark + components: + - pos: -20.5,-8.5 + parent: 30 + type: Transform +- uid: 4715 + type: SignRND + components: + - pos: -18.5,-12.5 + parent: 30 + type: Transform +- uid: 4716 + type: FirelockGlass + components: + - pos: -17.5,1.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 4717 + type: SignBar + components: + - pos: -25.5,-3.5 + parent: 30 + type: Transform +- uid: 4718 + type: WindoorScienceLocked + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 30 + type: Transform +- uid: 4719 + type: ToolboxElectricalFilled + components: + - pos: -33.518414,-5.3668866 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 4720 + type: WindowReinforcedDirectional + components: + - pos: -19.5,-7.5 + parent: 30 + type: Transform +- uid: 4721 + type: DisposalUnit + components: + - pos: -17.5,-14.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 4722 + type: VendingMachineCoffee + components: + - name: Hot drinks machine + type: MetaData + - pos: -27.5,-9.5 + parent: 30 + type: Transform +- uid: 4723 + type: ComputerResearchAndDevelopment + components: + - pos: -17.5,-10.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 4724 + type: Protolathe + components: + - pos: -13.5,-11.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - materialWhiteList: + - Steel + - Glass + - Plastic + - Wood + - Gold + type: Lathe + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 4725 + type: Autolathe + components: + - pos: -13.5,-12.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + type: Lathe + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 4726 + type: CircuitImprinter + components: + - pos: -13.5,-13.5 + parent: 30 + type: Transform + - materialWhiteList: + - Steel + - Glass + - Gold + type: Lathe + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 4727 + type: Table + components: + - pos: -14.5,-10.5 + parent: 30 + type: Transform +- uid: 4728 + type: Table + components: + - pos: -15.5,-10.5 + parent: 30 + type: Transform +- uid: 4729 + type: ChairOfficeDark + components: + - pos: -16.5,-10.5 + parent: 30 + type: Transform +- uid: 4730 + type: ChairOfficeDark + components: + - pos: -15.5,-13.5 + parent: 30 + type: Transform +- uid: 4731 + type: Table + components: + - pos: -13.5,-14.5 + parent: 30 + type: Transform +- uid: 4732 + type: Table + components: + - pos: -14.5,-14.5 + parent: 30 + type: Transform +- uid: 4733 + type: Table + components: + - pos: -15.5,-14.5 + parent: 30 + type: Transform +- uid: 4734 + type: Table + components: + - pos: -16.5,-14.5 + parent: 30 + type: Transform +- uid: 4735 + type: SheetPlastic + components: + - pos: -15.427509,-14.515339 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4736 + type: SheetSteel + components: + - pos: -16.43514,-14.472076 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4737 + type: SheetSteel + components: + - pos: -16.43514,-14.472076 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4738 + type: SheetGlass + components: + - pos: -15.950766,-14.518951 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4739 + type: SheetGlass + components: + - pos: -15.950766,-14.518951 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4740 + type: Multitool + components: + - pos: -15.456451,-10.433016 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 4741 + type: ClothingBeltUtilityFilled + components: + - pos: -13.534576,-14.386141 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 4742 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -24.5,-5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4743 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -16.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4744 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4745 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4746 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4747 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4748 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4749 + type: GasPipeTJunction + components: + - pos: -18.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4750 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: -29.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4751 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -29.5,10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4752 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -22.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4753 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4754 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4755 + type: GasPipeTJunction + components: + - pos: -19.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4756 + type: GasPipeTJunction + components: + - pos: -25.5,-5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4757 + type: GasPipeStraight + components: + - pos: -25.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4758 + type: GasPipeStraight + components: + - pos: -25.5,-7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4759 + type: GasPipeStraight + components: + - pos: -25.5,-8.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4760 + type: GasPipeStraight + components: + - pos: -25.5,-9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4761 + type: GasPipeStraight + components: + - pos: -25.5,-10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4762 + type: GasPipeStraight + components: + - pos: -25.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4763 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -25.5,-12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4764 + type: GasPipeFourway + components: + - pos: -22.5,-12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4765 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4766 + type: GasPipeTJunction + components: + - pos: -23.5,-12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4767 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4768 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4769 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4770 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4771 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4772 + type: GasPipeStraight + components: + - pos: -22.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4773 + type: GasPipeStraight + components: + - pos: -22.5,-10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4774 + type: GasPipeStraight + components: + - pos: -22.5,-13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4775 + type: GasPipeStraight + components: + - pos: -22.5,-14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4776 + type: GasPipeStraight + components: + - pos: -22.5,-15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4777 + type: GasPipeStraight + components: + - pos: -22.5,-16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4778 + type: GasPipeStraight + components: + - pos: -22.5,-17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4779 + type: GasPipeStraight + components: + - pos: -22.5,-18.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4780 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: -22.5,-19.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4781 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4782 + type: GasVentPump + components: + - pos: -22.5,-9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4783 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: -23.5,-13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4784 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4785 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4786 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4787 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -28.5,-4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4788 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -28.5,-3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4789 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -28.5,-2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4790 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -28.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4791 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -28.5,-0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4792 + type: GasPipeStraight + components: + - pos: -28.5,4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4793 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -28.5,1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4794 + type: GasPipeStraight + components: + - pos: -29.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4795 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -28.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4796 + type: GasPipeStraight + components: + - pos: -28.5,0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4797 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -28.5,5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4798 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -28.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4799 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -28.5,7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4800 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -28.5,8.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4801 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -28.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4802 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -13.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4803 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -14.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4804 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -15.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4805 + type: GasPipeTJunction + components: + - pos: -24.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4806 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -15.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4807 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: -29.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4808 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -18.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4809 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -20.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4810 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -21.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4811 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -22.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4812 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -23.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4813 + type: GasPipeTJunction + components: + - pos: -22.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4814 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -25.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4815 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -26.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4816 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -27.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4817 + type: GasPipeBend + components: + - pos: -29.5,8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4818 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: -30.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4819 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -28.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4820 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4821 + type: GasPipeStraight + components: + - pos: -29.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4822 + type: GasPipeStraight + components: + - pos: -29.5,-4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4823 + type: GasPipeStraight + components: + - pos: -29.5,-3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4824 + type: GasPipeStraight + components: + - pos: -29.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4825 + type: GasPipeStraight + components: + - pos: -29.5,-1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4826 + type: GasPipeStraight + components: + - pos: -29.5,-0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4827 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4828 + type: Grille + components: + - pos: -9.5,-17.5 + parent: 30 + type: Transform +- uid: 4829 + type: GasPipeFourway + components: + - pos: -28.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4830 + type: GasPipeStraight + components: + - pos: -29.5,4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4831 + type: GasPipeStraight + components: + - pos: -29.5,3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4832 + type: GasPipeStraight + components: + - pos: -29.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4833 + type: GasPipeStraight + components: + - pos: -29.5,6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4834 + type: GasPipeStraight + components: + - pos: -29.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4835 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -30.5,8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4836 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -29.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4837 + type: GasPipeStraight + components: + - pos: -30.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4838 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -27.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4839 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -26.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4840 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -25.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4841 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -24.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4842 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -23.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4843 + type: WallAlmayer + components: + - pos: 4.5,5.5 + parent: 30 + type: Transform +- uid: 4844 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -21.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4845 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -20.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4846 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -17.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4847 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -14.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4848 + type: GasVentScrubber + components: + - pos: -16.5,11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4849 + type: GasPipeBend + components: + - pos: -17.5,-4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4850 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4851 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -18.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4852 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -19.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4853 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4854 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4855 + type: GasPipeTJunction + components: + - pos: -26.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4856 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4857 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4858 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4859 + type: WallAlmayer + components: + - pos: -7.5,-15.5 + parent: 30 + type: Transform +- uid: 4860 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4861 + type: Table + components: + - pos: -31.5,-14.5 + parent: 30 + type: Transform +- uid: 4862 + type: WindowAlmayer + components: + - pos: -27.5,-8.5 + parent: 30 + type: Transform +- uid: 4863 + type: WallAlmayer + components: + - pos: -28.5,-14.5 + parent: 30 + type: Transform +- uid: 4864 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -17.5,-5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4865 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4866 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4867 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4868 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -15.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 4869 + type: GasPipeStraight + components: + - pos: -26.5,-7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4870 + type: GasPipeStraight + components: + - pos: -26.5,-8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4871 + type: GasPipeStraight + components: + - pos: -26.5,-9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4872 + type: GasPipeStraight + components: + - pos: -26.5,-10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4873 + type: GasPipeStraight + components: + - pos: -26.5,-11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4874 + type: GasPipeStraight + components: + - pos: -26.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4875 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -26.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4876 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4877 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4878 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4879 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4880 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4881 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -21.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4882 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4883 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4884 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4885 + type: GasPipeTJunction + components: + - pos: -24.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4886 + type: GasPipeStraight + components: + - pos: -21.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4887 + type: GasPipeStraight + components: + - pos: -21.5,-11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4888 + type: GasPipeStraight + components: + - pos: -21.5,-10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4889 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: -24.5,-14.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4890 + type: GasVentScrubber + components: + - pos: -21.5,-9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 4891 + type: ChairOfficeDark + components: + - rot: 3.141592653589793 rad + pos: -20.5,-10.5 + parent: 30 + type: Transform +- uid: 4892 + type: BaseResearchAndDevelopmentPointSource + components: + - pos: -23.5,-10.5 + parent: 30 + type: Transform +- uid: 4893 + type: ResearchAndDevelopmentServer + components: + - pos: -23.5,-8.5 + parent: 30 + type: Transform +- uid: 4894 + type: TableReinforcedGlass + components: + - pos: -19.5,-9.5 + parent: 30 + type: Transform +- uid: 4895 + type: ComputerResearchAndDevelopment + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-8.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 4896 + type: TableReinforcedGlass + components: + - pos: -20.5,-9.5 + parent: 30 + type: Transform +- uid: 4897 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-19.5 + parent: 30 + type: Transform +- uid: 4898 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-19.5 + parent: 30 + type: Transform +- uid: 4899 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-19.5 + parent: 30 + type: Transform +- uid: 4900 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-19.5 + parent: 30 + type: Transform +- uid: 4901 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-19.5 + parent: 30 + type: Transform +- uid: 4902 + type: GasVentScrubber + components: + - pos: -24.5,-18.5 + parent: 30 + type: Transform +- uid: 4903 + type: GasVentScrubber + components: + - pos: -20.5,-18.5 + parent: 30 + type: Transform +- uid: 4904 + type: APCBasic + components: + - pos: -24.5,-11.5 + parent: 30 + type: Transform +- uid: 4905 + type: WallAlmayer + components: + - pos: -31.5,-21.5 + parent: 30 + type: Transform +- uid: 4906 + type: WallAlmayer + components: + - pos: -32.5,-21.5 + parent: 30 + type: Transform +- uid: 4907 + type: WallAlmayer + components: + - pos: -32.5,-20.5 + parent: 30 + type: Transform +- uid: 4908 + type: WallAlmayer + components: + - pos: -33.5,-20.5 + parent: 30 + type: Transform +- uid: 4909 + type: WallAlmayer + components: + - pos: -33.5,-19.5 + parent: 30 + type: Transform +- uid: 4910 + type: WallAlmayer + components: + - pos: -33.5,-18.5 + parent: 30 + type: Transform +- uid: 4911 + type: CableApcExtension + components: + - pos: -31.5,-20.5 + parent: 30 + type: Transform +- uid: 4912 + type: AirlockGlassAlpha + components: + - pos: -31.5,-17.5 + parent: 30 + type: Transform +- uid: 4913 + type: CableHV + components: + - pos: -31.5,-20.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4914 + type: CableHV + components: + - pos: -31.5,-19.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4915 + type: CableHV + components: + - pos: -31.5,-18.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4916 + type: CableHV + components: + - pos: -31.5,-17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 4917 + type: APCBasic + components: + - pos: -24.5,-17.5 + parent: 30 + type: Transform +- uid: 4918 + type: CableMV + components: + - pos: -31.5,-20.5 + parent: 30 + type: Transform +- uid: 4919 + type: CableMV + components: + - pos: -31.5,-19.5 + parent: 30 + type: Transform +- uid: 4920 + type: CableMV + components: + - pos: -31.5,-18.5 + parent: 30 + type: Transform +- uid: 4921 + type: CableMV + components: + - pos: -31.5,-17.5 + parent: 30 + type: Transform +- uid: 4922 + type: CableMV + components: + - pos: -31.5,-16.5 + parent: 30 + type: Transform +- uid: 4923 + type: CableMV + components: + - pos: -30.5,-16.5 + parent: 30 + type: Transform +- uid: 4924 + type: CableMV + components: + - pos: -29.5,-16.5 + parent: 30 + type: Transform +- uid: 4925 + type: CableMV + components: + - pos: -28.5,-16.5 + parent: 30 + type: Transform +- uid: 4926 + type: CableMV + components: + - pos: -27.5,-16.5 + parent: 30 + type: Transform +- uid: 4927 + type: CableMV + components: + - pos: -26.5,-16.5 + parent: 30 + type: Transform +- uid: 4928 + type: CableMV + components: + - pos: -25.5,-16.5 + parent: 30 + type: Transform +- uid: 4929 + type: CableMV + components: + - pos: -24.5,-16.5 + parent: 30 + type: Transform +- uid: 4930 + type: CableMV + components: + - pos: -24.5,-17.5 + parent: 30 + type: Transform +- uid: 4931 + type: CableMV + components: + - pos: -23.5,-16.5 + parent: 30 + type: Transform +- uid: 4932 + type: CableMV + components: + - pos: -22.5,-16.5 + parent: 30 + type: Transform +- uid: 4933 + type: CableMV + components: + - pos: -22.5,-15.5 + parent: 30 + type: Transform +- uid: 4934 + type: CableMV + components: + - pos: -22.5,-14.5 + parent: 30 + type: Transform +- uid: 4935 + type: CableMV + components: + - pos: -22.5,-13.5 + parent: 30 + type: Transform +- uid: 4936 + type: CableMV + components: + - pos: -23.5,-13.5 + parent: 30 + type: Transform +- uid: 4937 + type: CableMV + components: + - pos: -24.5,-13.5 + parent: 30 + type: Transform +- uid: 4938 + type: CableMV + components: + - pos: -24.5,-12.5 + parent: 30 + type: Transform +- uid: 4939 + type: CableMV + components: + - pos: -24.5,-11.5 + parent: 30 + type: Transform +- uid: 4940 + type: CableApcExtension + components: + - pos: -24.5,-17.5 + parent: 30 + type: Transform +- uid: 4941 + type: CableApcExtension + components: + - pos: -24.5,-18.5 + parent: 30 + type: Transform +- uid: 4942 + type: CableApcExtension + components: + - pos: -23.5,-18.5 + parent: 30 + type: Transform +- uid: 4943 + type: CableApcExtension + components: + - pos: -22.5,-18.5 + parent: 30 + type: Transform +- uid: 4944 + type: CableApcExtension + components: + - pos: -22.5,-19.5 + parent: 30 + type: Transform +- uid: 4945 + type: CableApcExtension + components: + - pos: -22.5,-20.5 + parent: 30 + type: Transform +- uid: 4946 + type: CableApcExtension + components: + - pos: -22.5,-21.5 + parent: 30 + type: Transform +- uid: 4947 + type: CableApcExtension + components: + - pos: -23.5,-21.5 + parent: 30 + type: Transform +- uid: 4948 + type: CableApcExtension + components: + - pos: -24.5,-21.5 + parent: 30 + type: Transform +- uid: 4949 + type: CableApcExtension + components: + - pos: -25.5,-21.5 + parent: 30 + type: Transform +- uid: 4950 + type: CableApcExtension + components: + - pos: -26.5,-21.5 + parent: 30 + type: Transform +- uid: 4951 + type: CableApcExtension + components: + - pos: -27.5,-21.5 + parent: 30 + type: Transform +- uid: 4952 + type: CableApcExtension + components: + - pos: -28.5,-21.5 + parent: 30 + type: Transform +- uid: 4953 + type: CableApcExtension + components: + - pos: -28.5,-22.5 + parent: 30 + type: Transform +- uid: 4954 + type: CableApcExtension + components: + - pos: -21.5,-21.5 + parent: 30 + type: Transform +- uid: 4955 + type: CableApcExtension + components: + - pos: -20.5,-21.5 + parent: 30 + type: Transform +- uid: 4956 + type: CableApcExtension + components: + - pos: -19.5,-21.5 + parent: 30 + type: Transform +- uid: 4957 + type: CableApcExtension + components: + - pos: -18.5,-21.5 + parent: 30 + type: Transform +- uid: 4958 + type: CableApcExtension + components: + - pos: -17.5,-21.5 + parent: 30 + type: Transform +- uid: 4959 + type: CableApcExtension + components: + - pos: -16.5,-21.5 + parent: 30 + type: Transform +- uid: 4960 + type: CableApcExtension + components: + - pos: -16.5,-22.5 + parent: 30 + type: Transform +- uid: 4961 + type: CableApcExtension + components: + - pos: -22.5,-17.5 + parent: 30 + type: Transform +- uid: 4962 + type: CableApcExtension + components: + - pos: -22.5,-16.5 + parent: 30 + type: Transform +- uid: 4963 + type: CableApcExtension + components: + - pos: -21.5,-16.5 + parent: 30 + type: Transform +- uid: 4964 + type: CableApcExtension + components: + - pos: -20.5,-16.5 + parent: 30 + type: Transform +- uid: 4965 + type: CableApcExtension + components: + - pos: -19.5,-16.5 + parent: 30 + type: Transform +- uid: 4966 + type: CableApcExtension + components: + - pos: -18.5,-16.5 + parent: 30 + type: Transform +- uid: 4967 + type: CableApcExtension + components: + - pos: -17.5,-16.5 + parent: 30 + type: Transform +- uid: 4968 + type: CableApcExtension + components: + - pos: -16.5,-16.5 + parent: 30 + type: Transform +- uid: 4969 + type: CableApcExtension + components: + - pos: -15.5,-16.5 + parent: 30 + type: Transform +- uid: 4970 + type: CableApcExtension + components: + - pos: -14.5,-16.5 + parent: 30 + type: Transform +- uid: 4971 + type: CableApcExtension + components: + - pos: -13.5,-16.5 + parent: 30 + type: Transform +- uid: 4972 + type: CableApcExtension + components: + - pos: -13.5,-17.5 + parent: 30 + type: Transform +- uid: 4973 + type: CableApcExtension + components: + - pos: -13.5,-18.5 + parent: 30 + type: Transform +- uid: 4974 + type: CableApcExtension + components: + - pos: -13.5,-19.5 + parent: 30 + type: Transform +- uid: 4975 + type: CableApcExtension + components: + - pos: -13.5,-20.5 + parent: 30 + type: Transform +- uid: 4976 + type: CableApcExtension + components: + - pos: -23.5,-16.5 + parent: 30 + type: Transform +- uid: 4977 + type: CableApcExtension + components: + - pos: -24.5,-16.5 + parent: 30 + type: Transform +- uid: 4978 + type: CableApcExtension + components: + - pos: -25.5,-16.5 + parent: 30 + type: Transform +- uid: 4979 + type: CableApcExtension + components: + - pos: -27.5,-16.5 + parent: 30 + type: Transform +- uid: 4980 + type: CableApcExtension + components: + - pos: -26.5,-16.5 + parent: 30 + type: Transform +- uid: 4981 + type: CableApcExtension + components: + - pos: -28.5,-16.5 + parent: 30 + type: Transform +- uid: 4982 + type: CableApcExtension + components: + - pos: -29.5,-16.5 + parent: 30 + type: Transform +- uid: 4983 + type: CableApcExtension + components: + - pos: -30.5,-16.5 + parent: 30 + type: Transform +- uid: 4984 + type: CableApcExtension + components: + - pos: -31.5,-16.5 + parent: 30 + type: Transform +- uid: 4985 + type: CableApcExtension + components: + - pos: -31.5,-17.5 + parent: 30 + type: Transform +- uid: 4986 + type: CableApcExtension + components: + - pos: -31.5,-18.5 + parent: 30 + type: Transform +- uid: 4987 + type: CableApcExtension + components: + - pos: -31.5,-19.5 + parent: 30 + type: Transform +- uid: 4988 + type: CableApcExtension + components: + - pos: -30.5,-19.5 + parent: 30 + type: Transform +- uid: 4989 + type: CableApcExtension + components: + - pos: -32.5,-16.5 + parent: 30 + type: Transform +- uid: 4990 + type: CableApcExtension + components: + - pos: -32.5,-15.5 + parent: 30 + type: Transform +- uid: 4991 + type: CableApcExtension + components: + - pos: -32.5,-14.5 + parent: 30 + type: Transform +- uid: 4992 + type: CableApcExtension + components: + - pos: -32.5,-13.5 + parent: 30 + type: Transform +- uid: 4993 + type: CableApcExtension + components: + - pos: -24.5,-11.5 + parent: 30 + type: Transform +- uid: 4994 + type: CableApcExtension + components: + - pos: -24.5,-12.5 + parent: 30 + type: Transform +- uid: 4995 + type: CableApcExtension + components: + - pos: -24.5,-13.5 + parent: 30 + type: Transform +- uid: 4996 + type: CableApcExtension + components: + - pos: -24.5,-14.5 + parent: 30 + type: Transform +- uid: 4997 + type: CableApcExtension + components: + - pos: -23.5,-13.5 + parent: 30 + type: Transform +- uid: 4998 + type: CableApcExtension + components: + - pos: -22.5,-13.5 + parent: 30 + type: Transform +- uid: 4999 + type: CableApcExtension + components: + - pos: -21.5,-13.5 + parent: 30 + type: Transform +- uid: 5000 + type: CableApcExtension + components: + - pos: -20.5,-13.5 + parent: 30 + type: Transform +- uid: 5001 + type: CableApcExtension + components: + - pos: -19.5,-13.5 + parent: 30 + type: Transform +- uid: 5002 + type: CableApcExtension + components: + - pos: -18.5,-13.5 + parent: 30 + type: Transform +- uid: 5003 + type: CableApcExtension + components: + - pos: -17.5,-13.5 + parent: 30 + type: Transform +- uid: 5004 + type: CableApcExtension + components: + - pos: -16.5,-13.5 + parent: 30 + type: Transform +- uid: 5005 + type: CableApcExtension + components: + - pos: -15.5,-13.5 + parent: 30 + type: Transform +- uid: 5006 + type: CableApcExtension + components: + - pos: -14.5,-13.5 + parent: 30 + type: Transform +- uid: 5007 + type: CableApcExtension + components: + - pos: -13.5,-13.5 + parent: 30 + type: Transform +- uid: 5008 + type: CableApcExtension + components: + - pos: -15.5,-12.5 + parent: 30 + type: Transform +- uid: 5009 + type: CableApcExtension + components: + - pos: -15.5,-11.5 + parent: 30 + type: Transform +- uid: 5010 + type: CableApcExtension + components: + - pos: -15.5,-10.5 + parent: 30 + type: Transform +- uid: 5011 + type: CableApcExtension + components: + - pos: -21.5,-12.5 + parent: 30 + type: Transform +- uid: 5012 + type: CableApcExtension + components: + - pos: -21.5,-11.5 + parent: 30 + type: Transform +- uid: 5013 + type: CableApcExtension + components: + - pos: -21.5,-10.5 + parent: 30 + type: Transform +- uid: 5014 + type: CableApcExtension + components: + - pos: -21.5,-9.5 + parent: 30 + type: Transform +- uid: 5015 + type: CableApcExtension + components: + - pos: -21.5,-8.5 + parent: 30 + type: Transform +- uid: 5016 + type: CableApcExtension + components: + - pos: -22.5,-9.5 + parent: 30 + type: Transform +- uid: 5017 + type: CableApcExtension + components: + - pos: -23.5,-9.5 + parent: 30 + type: Transform +- uid: 5018 + type: CableApcExtension + components: + - pos: -20.5,-9.5 + parent: 30 + type: Transform +- uid: 5019 + type: CableApcExtension + components: + - pos: -19.5,-9.5 + parent: 30 + type: Transform +- uid: 5020 + type: CableApcExtension + components: + - pos: -25.5,-13.5 + parent: 30 + type: Transform +- uid: 5021 + type: CableApcExtension + components: + - pos: -26.5,-13.5 + parent: 30 + type: Transform +- uid: 5022 + type: WallAlmayer + components: + - pos: -28.5,-15.5 + parent: 30 + type: Transform +- uid: 5023 + type: CableApcExtension + components: + - pos: -8.5,-19.5 + parent: 30 + type: Transform +- uid: 5024 + type: CableApcExtension + components: + - pos: -8.5,-18.5 + parent: 30 + type: Transform +- uid: 5025 + type: WallAlmayer + components: + - pos: -28.5,-11.5 + parent: 30 + type: Transform +- uid: 5026 + type: CableApcExtension + components: + - pos: -8.5,-17.5 + parent: 30 + type: Transform +- uid: 5027 + type: WindowAlmayer + components: + - pos: -25.5,-8.5 + parent: 30 + type: Transform +- uid: 5028 + type: WallAlmayer + components: + - pos: -27.5,-15.5 + parent: 30 + type: Transform +- uid: 5029 + type: CableHV + components: + - pos: -26.5,-5.5 + parent: 30 + type: Transform +- uid: 5030 + type: CableApcExtension + components: + - pos: -25.5,-11.5 + parent: 30 + type: Transform +- uid: 5031 + type: CableApcExtension + components: + - pos: -25.5,-10.5 + parent: 30 + type: Transform +- uid: 5032 + type: CableApcExtension + components: + - pos: -25.5,-9.5 + parent: 30 + type: Transform +- uid: 5033 + type: CableApcExtension + components: + - pos: -15.5,-14.5 + parent: 30 + type: Transform +- uid: 5034 + type: CableHV + components: + - pos: -24.5,-5.5 + parent: 30 + type: Transform +- uid: 5035 + type: CableApcExtension + components: + - pos: -20.5,-14.5 + parent: 30 + type: Transform +- uid: 5036 + type: CableApcExtension + components: + - pos: -16.5,-11.5 + parent: 30 + type: Transform +- uid: 5037 + type: CableApcExtension + components: + - pos: -17.5,-11.5 + parent: 30 + type: Transform +- uid: 5038 + type: CableApcExtension + components: + - pos: -25.5,-8.5 + parent: 30 + type: Transform +- uid: 5039 + type: CableApcExtension + components: + - pos: -25.5,-7.5 + parent: 30 + type: Transform +- uid: 5040 + type: CableApcExtension + components: + - pos: -25.5,-6.5 + parent: 30 + type: Transform +- uid: 5041 + type: CableApcExtension + components: + - pos: -24.5,-6.5 + parent: 30 + type: Transform +- uid: 5042 + type: CableApcExtension + components: + - pos: -23.5,-6.5 + parent: 30 + type: Transform +- uid: 5043 + type: CableApcExtension + components: + - pos: -22.5,-6.5 + parent: 30 + type: Transform +- uid: 5044 + type: CableApcExtension + components: + - pos: -21.5,-6.5 + parent: 30 + type: Transform +- uid: 5045 + type: CableApcExtension + components: + - pos: -20.5,-6.5 + parent: 30 + type: Transform +- uid: 5046 + type: CableApcExtension + components: + - pos: -19.5,-6.5 + parent: 30 + type: Transform +- uid: 5047 + type: CableApcExtension + components: + - pos: -18.5,-6.5 + parent: 30 + type: Transform +- uid: 5048 + type: CableApcExtension + components: + - pos: -17.5,-6.5 + parent: 30 + type: Transform +- uid: 5049 + type: CableApcExtension + components: + - pos: -16.5,-6.5 + parent: 30 + type: Transform +- uid: 5050 + type: CableApcExtension + components: + - pos: -15.5,-6.5 + parent: 30 + type: Transform +- uid: 5051 + type: CableApcExtension + components: + - pos: -14.5,-6.5 + parent: 30 + type: Transform +- uid: 5052 + type: CableApcExtension + components: + - pos: -16.5,-7.5 + parent: 30 + type: Transform +- uid: 5053 + type: CableApcExtension + components: + - pos: -16.5,-8.5 + parent: 30 + type: Transform +- uid: 5054 + type: CableApcExtension + components: + - pos: -15.5,-8.5 + parent: 30 + type: Transform +- uid: 5055 + type: CableApcExtension + components: + - pos: -14.5,-8.5 + parent: 30 + type: Transform +- uid: 5056 + type: CableApcExtension + components: + - pos: -21.5,-5.5 + parent: 30 + type: Transform +- uid: 5057 + type: CableHV + components: + - pos: -22.5,-5.5 + parent: 30 + type: Transform +- uid: 5058 + type: CableMV + components: + - pos: -28.5,2.5 + parent: 30 + type: Transform +- uid: 5059 + type: Railing + components: + - rot: -1.5707963267948966 rad + pos: -7.5,20.5 + parent: 30 + type: Transform +- uid: 5060 + type: GrilleBroken + components: + - pos: -6.5,19.5 + parent: 30 + type: Transform +- uid: 5061 + type: CableApcExtension + components: + - pos: -2.5,15.5 + parent: 30 + type: Transform +- uid: 5062 + type: CableApcExtension + components: + - pos: -25.5,-5.5 + parent: 30 + type: Transform +- uid: 5063 + type: PottedPlantRandom + components: + - pos: -29.5,-8.5 + parent: 30 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 5064 + type: WallAlmayer + components: + - pos: -2.5,21.5 + parent: 30 + type: Transform +- uid: 5065 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5066 + type: Table + components: + - pos: -31.5,-15.5 + parent: 30 + type: Transform +- uid: 5067 + type: FirelockGlass + components: + - pos: -29.5,6.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 5068 + type: CableApcExtension + components: + - pos: -17.5,-5.5 + parent: 30 + type: Transform +- uid: 5069 + type: PosterLegitBuild + components: + - pos: -33.5,12.5 + parent: 30 + type: Transform +- uid: 5070 + type: WallAlmayer + components: + - pos: -9.5,-15.5 + parent: 30 + type: Transform +- uid: 5071 + type: FirelockGlass + components: + - pos: -21.5,-6.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 5072 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-10.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5073 + type: BedsheetRD + components: + - parent: 4710 + type: Transform + - canCollide: False + type: Physics +- uid: 5074 + type: ClosetRadiationSuitFilled + components: + - pos: -23.5,-18.5 + parent: 30 + type: Transform +- uid: 5075 + type: ClosetFireFilled + components: + - pos: -24.5,-18.5 + parent: 30 + type: Transform +- uid: 5076 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-22.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5077 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-22.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5078 + type: Poweredlight + components: + - pos: -19.5,-18.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5079 + type: Poweredlight + components: + - pos: -25.5,-18.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5080 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 30 + type: Transform +- uid: 5081 + type: AirlockGlassAlpha + components: + - pos: -12.5,-4.5 + parent: 30 + type: Transform +- uid: 5082 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5083 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-11.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5084 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: -15.5,-14.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5085 + type: Poweredlight + components: + - pos: -19.5,-12.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5086 + type: Poweredlight + components: + - pos: -23.5,-12.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5087 + type: PottedPlantRD + components: + - pos: -19.5,-10.5 + parent: 30 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 5088 + type: SignSpace + components: + - pos: -7.5,-17.5 + parent: 30 + type: Transform +- uid: 5089 + type: AirlockGlassAlpha + components: + - pos: -12.5,9.5 + parent: 30 + type: Transform +- uid: 5090 + type: WallAlmayer + components: + - pos: -23.5,-15.5 + parent: 30 + type: Transform +- uid: 5091 + type: WallAlmayer + components: + - pos: -31.5,-12.5 + parent: 30 + type: Transform +- uid: 5092 + type: Poweredlight + components: + - pos: -21.5,-8.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5093 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-10.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5094 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-10.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5095 + type: SpawnMobBandito + components: + - pos: -21.5,-9.5 + parent: 30 + type: Transform +- uid: 5096 + type: LockerScienceFilled + components: + - pos: -19.5,-14.5 + parent: 30 + type: Transform +- uid: 5097 + type: LockerScienceFilled + components: + - pos: -20.5,-14.5 + parent: 30 + type: Transform +- uid: 5098 + type: SpawnPointScientist + components: + - pos: -21.5,-13.5 + parent: 30 + type: Transform +- uid: 5099 + type: SpawnPointScientist + components: + - pos: -20.5,-13.5 + parent: 30 + type: Transform +- uid: 5100 + type: VendingMachineSciDrobe + components: + - pos: -19.5,-12.5 + parent: 30 + type: Transform +- uid: 5101 + type: VendingMachineRoboDrobe + components: + - pos: -20.5,-12.5 + parent: 30 + type: Transform +- uid: 5102 + type: Grille + components: + - pos: -6.5,-17.5 + parent: 30 + type: Transform +- uid: 5103 + type: WallAlmayer + components: + - pos: -29.5,-12.5 + parent: 30 + type: Transform +- uid: 5104 + type: AirlockGlassAlpha + components: + - pos: -26.5,-8.5 + parent: 30 + type: Transform +- uid: 5105 + type: AirlockGlassAlpha + components: + - pos: -24.5,-16.5 + parent: 30 + type: Transform +- uid: 5106 + type: Grille + components: + - pos: 9.5,14.5 + parent: 30 + type: Transform +- uid: 5107 + type: Catwalk + components: + - pos: -31.5,-16.5 + parent: 30 + type: Transform +- uid: 5108 + type: Catwalk + components: + - pos: -30.5,-16.5 + parent: 30 + type: Transform +- uid: 5109 + type: Catwalk + components: + - pos: -29.5,-16.5 + parent: 30 + type: Transform +- uid: 5110 + type: Catwalk + components: + - pos: -28.5,-16.5 + parent: 30 + type: Transform +- uid: 5111 + type: Catwalk + components: + - pos: -27.5,-16.5 + parent: 30 + type: Transform +- uid: 5112 + type: Catwalk + components: + - pos: -26.5,-16.5 + parent: 30 + type: Transform +- uid: 5113 + type: Catwalk + components: + - pos: -25.5,-16.5 + parent: 30 + type: Transform +- uid: 5114 + type: Grille + components: + - pos: 6.5,15.5 + parent: 30 + type: Transform +- uid: 5115 + type: BedsheetCE + components: + - parent: 6526 + type: Transform +- uid: 5116 + type: AirlockGlassAlpha + components: + - pos: -20.5,-16.5 + parent: 30 + type: Transform +- uid: 5117 + type: WallAlmayer + components: + - pos: -35.5,-8.5 + parent: 30 + type: Transform +- uid: 5118 + type: WallAlmayer + components: + - pos: -34.5,-8.5 + parent: 30 + type: Transform +- uid: 5119 + type: Catwalk + components: + - pos: -19.5,-16.5 + parent: 30 + type: Transform +- uid: 5120 + type: Catwalk + components: + - pos: -18.5,-16.5 + parent: 30 + type: Transform +- uid: 5121 + type: Catwalk + components: + - pos: -17.5,-16.5 + parent: 30 + type: Transform +- uid: 5122 + type: Catwalk + components: + - pos: -16.5,-16.5 + parent: 30 + type: Transform +- uid: 5123 + type: Catwalk + components: + - pos: -13.5,-16.5 + parent: 30 + type: Transform +- uid: 5124 + type: Table + components: + - pos: -32.5,-19.5 + parent: 30 + type: Transform +- uid: 5125 + type: Table + components: + - pos: -32.5,-18.5 + parent: 30 + type: Transform +- uid: 5126 + type: LockerWeldingSuppliesFilled + components: + - pos: -30.5,-20.5 + parent: 30 + type: Transform +- uid: 5127 + type: WeldingFuelTankFull + components: + - pos: -30.5,-18.5 + parent: 30 + type: Transform +- uid: 5128 + type: ToolboxElectricalFilled + components: + - pos: -32.48716,-18.438372 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 5129 + type: ToolboxEmergencyFilled + components: + - pos: -32.48716,-18.782122 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 5130 + type: ClothingHeadHatWelding + components: + - pos: -32.502785,-19.219622 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5131 + type: OxygenCanister + components: + - pos: -30.5,-19.5 + parent: 30 + type: Transform +- uid: 5132 + type: PoweredSmallLight + components: + - pos: -19.5,-16.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5133 + type: PoweredSmallLight + components: + - pos: -30.5,-16.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5134 + type: PoweredSmallLight + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-19.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5135 + type: WallAlmayer + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-16.5 + parent: 30 + type: Transform +- uid: 5136 + type: WallAlmayer + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-15.5 + parent: 30 + type: Transform +- uid: 5137 + type: ClosetMaintenanceFilledRandom + components: + - pos: -33.5,-16.5 + parent: 30 + type: Transform +- uid: 5138 + type: AirlockGlassAlpha + components: + - pos: -32.5,-12.5 + parent: 30 + type: Transform +- uid: 5139 + type: DisposalUnit + components: + - pos: -24.5,-12.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5140 + type: DisposalTrunk + components: + - pos: -24.5,-12.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 5141 + type: DisposalTrunk + components: + - rot: 3.141592653589793 rad + pos: -17.5,-14.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 5142 + type: DisposalBend + components: + - pos: -17.5,-13.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 5143 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-13.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5144 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-13.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5145 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5146 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5147 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5148 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-13.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5149 + type: DisposalJunction + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-13.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 5150 + type: DisposalBend + components: + - rot: 3.141592653589793 rad + pos: -25.5,-13.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 5151 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: -25.5,-12.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5152 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: -25.5,-11.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5153 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: -25.5,-10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5154 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: -25.5,-9.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5155 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: -25.5,-8.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5156 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: -25.5,-7.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5157 + type: DisposalJunction + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 5158 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5159 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5160 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5161 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5162 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5163 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5164 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5165 + type: SignScience2 + components: + - pos: -18.5,-7.5 + parent: 30 + type: Transform +- uid: 5166 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-8.5 + parent: 30 + type: Transform +- uid: 5167 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-7.5 + parent: 30 + type: Transform +- uid: 5168 + type: WindowAlmayer + components: + - pos: -33.5,-8.5 + parent: 30 + type: Transform +- uid: 5169 + type: WindowAlmayer + components: + - pos: -33.5,-9.5 + parent: 30 + type: Transform +- uid: 5170 + type: WindowAlmayer + components: + - pos: -33.5,-11.5 + parent: 30 + type: Transform +- uid: 5171 + type: WallAlmayer + components: + - pos: 10.5,7.5 + parent: 30 + type: Transform +- uid: 5172 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5173 + type: WallAlmayer + components: + - pos: -34.5,-6.5 + parent: 30 + type: Transform +- uid: 5174 + type: WallAlmayer + components: + - pos: -33.5,-6.5 + parent: 30 + type: Transform +- uid: 5175 + type: WallAlmayer + components: + - pos: -32.5,-6.5 + parent: 30 + type: Transform +- uid: 5176 + type: WallAlmayer + components: + - pos: -31.5,-6.5 + parent: 30 + type: Transform +- uid: 5177 + type: BrbSign + components: + - pos: 30.732641,-2.6161294 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5178 + type: WallAlmayer + components: + - pos: -31.5,-5.5 + parent: 30 + type: Transform +- uid: 5179 + type: WallAlmayer + components: + - pos: -31.5,-4.5 + parent: 30 + type: Transform +- uid: 5180 + type: WallAlmayer + components: + - pos: -31.5,-3.5 + parent: 30 + type: Transform +- uid: 5181 + type: WallAlmayer + components: + - pos: -31.5,-2.5 + parent: 30 + type: Transform +- uid: 5182 + type: WallAlmayer + components: + - pos: -30.5,-2.5 + parent: 30 + type: Transform +- uid: 5183 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -15.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5184 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -15.5,3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5185 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -15.5,4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5186 + type: WindowReinforcedDirectional + components: + - pos: -18.5,-9.5 + parent: 30 + type: Transform +- uid: 5187 + type: Grille + components: + - pos: -7.5,-20.5 + parent: 30 + type: Transform +- uid: 5188 + type: CableMV + components: + - pos: -23.5,2.5 + parent: 30 + type: Transform +- uid: 5189 + type: SignDangerMed + components: + - pos: -11.5,-15.5 + parent: 30 + type: Transform +- uid: 5190 + type: CableApcExtension + components: + - pos: -24.5,2.5 + parent: 30 + type: Transform +- uid: 5191 + type: CableMV + components: + - pos: -22.5,2.5 + parent: 30 + type: Transform +- uid: 5192 + type: CableHV + components: + - pos: -28.5,-5.5 + parent: 30 + type: Transform +- uid: 5193 + type: Table + components: + - pos: -9.5,20.5 + parent: 30 + type: Transform +- uid: 5194 + type: PoweredSmallLight + components: + - rot: 3.141592653589793 rad + pos: -9.5,-14.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5195 + type: SignBiohazardMed + components: + - pos: -7.5,-14.5 + parent: 30 + type: Transform +- uid: 5196 + type: AirlockGlassAlpha + components: + - pos: -7.5,-13.5 + parent: 30 + type: Transform +- uid: 5197 + type: Poweredlight + components: + - pos: -19.5,7.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5198 + type: ClothingHeadHatChickenhead + components: + - pos: 4.4612703,-11.1283 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5199 + type: GasPipeStraight + components: + - pos: -24.5,0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5200 + type: AirlockGlassAlpha + components: + - pos: -10.5,-15.5 + parent: 30 + type: Transform +- uid: 5201 + type: CableApcExtension + components: + - pos: -2.5,17.5 + parent: 30 + type: Transform +- uid: 5202 + type: CableApcExtension + components: + - pos: -17.5,10.5 + parent: 30 + type: Transform +- uid: 5203 + type: CableApcExtension + components: + - pos: -17.5,11.5 + parent: 30 + type: Transform +- uid: 5204 + type: DrinkMugDog + components: + - pos: -31.473253,-10.391098 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 5205 + type: CableApcExtension + components: + - pos: -2.5,16.5 + parent: 30 + type: Transform +- uid: 5206 + type: BlastDoor + components: + - pos: -0.5,19.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 6520 + type: SignalReceiver +- uid: 5207 + type: WallAlmayer + components: + - pos: -34.5,18.5 + parent: 30 + type: Transform +- uid: 5208 + type: WallAlmayer + components: + - pos: -21.5,12.5 + parent: 30 + type: Transform +- uid: 5209 + type: WindowAlmayer + components: + - pos: -18.5,12.5 + parent: 30 + type: Transform +- uid: 5210 + type: WallAlmayer + components: + - pos: -24.5,12.5 + parent: 30 + type: Transform +- uid: 5211 + type: VendingMachineChang + components: + - pos: 17.5,15.5 + parent: 30 + type: Transform + - sprite: Structures/Machines/VendingMachines/cigs.rsi + type: Sprite +- uid: 5212 + type: DisposalPipe + components: + - pos: 14.5,5.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5213 + type: WallAlmayer + components: + - pos: -31.5,8.5 + parent: 30 + type: Transform +- uid: 5214 + type: WallAlmayer + components: + - pos: -31.5,7.5 + parent: 30 + type: Transform +- uid: 5215 + type: WallAlmayer + components: + - pos: -30.5,7.5 + parent: 30 + type: Transform +- uid: 5216 + type: WallAlmayer + components: + - pos: -30.5,6.5 + parent: 30 + type: Transform +- uid: 5217 + type: WindowAlmayer + components: + - pos: -30.5,5.5 + parent: 30 + type: Transform +- uid: 5218 + type: WallAlmayer + components: + - pos: -30.5,3.5 + parent: 30 + type: Transform +- uid: 5219 + type: CableMV + components: + - pos: -32.5,10.5 + parent: 30 + type: Transform +- uid: 5220 + type: CableHV + components: + - pos: -32.5,9.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5221 + type: WindoorEngineeringLocked + components: + - rot: -1.5707963267948966 rad + pos: -30.5,0.5 + parent: 30 + type: Transform +- uid: 5222 + type: CableMV + components: + - pos: -33.5,9.5 + parent: 30 + type: Transform +- uid: 5223 + type: CableMV + components: + - pos: -33.5,10.5 + parent: 30 + type: Transform +- uid: 5224 + type: WallAlmayer + components: + - pos: -30.5,-1.5 + parent: 30 + type: Transform +- uid: 5225 + type: CableApcExtension + components: + - pos: -2.5,19.5 + parent: 30 + type: Transform +- uid: 5226 + type: WallAlmayer + components: + - pos: -30.5,-12.5 + parent: 30 + type: Transform +- uid: 5227 + type: CableApcExtension + components: + - pos: -1.5,19.5 + parent: 30 + type: Transform +- uid: 5228 + type: PersonalAI + components: + - pos: 36.36972,0.5528728 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5229 + type: CableMV + components: + - pos: -16.5,2.5 + parent: 30 + type: Transform +- uid: 5230 + type: CableMV + components: + - pos: -13.5,3.5 + parent: 30 + type: Transform +- uid: 5231 + type: WallAlmayer + components: + - pos: 5.5,19.5 + parent: 30 + type: Transform +- uid: 5232 + type: CableApcExtension + components: + - pos: -17.5,2.5 + parent: 30 + type: Transform +- uid: 5233 + type: BedsheetClown + components: + - pos: -8.5,-14.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5234 + type: FirelockGlass + components: + - pos: -21.5,10.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 5235 + type: RandomPosterLegit + components: + - pos: -0.5,5.5 + parent: 30 + type: Transform +- uid: 5236 + type: TableGlass + components: + - pos: -31.5,-10.5 + parent: 30 + type: Transform +- uid: 5237 + type: PosterContrabandDonutCorp + components: + - pos: 16.5,17.5 + parent: 30 + type: Transform +- uid: 5238 + type: TableGlass + components: + - pos: -29.5,-10.5 + parent: 30 + type: Transform +- uid: 5239 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5240 + type: CableMV + components: + - pos: -14.5,2.5 + parent: 30 + type: Transform +- uid: 5241 + type: CableMV + components: + - pos: -32.5,5.5 + parent: 30 + type: Transform +- uid: 5242 + type: MaintenanceWeaponSpawner + components: + - pos: -12.5,19.5 + parent: 30 + type: Transform +- uid: 5243 + type: TableCarpet + components: + - pos: -5.5,-14.5 + parent: 30 + type: Transform +- uid: 5244 + type: CableMV + components: + - pos: -32.5,7.5 + parent: 30 + type: Transform +- uid: 5245 + type: CableMV + components: + - pos: -32.5,3.5 + parent: 30 + type: Transform +- uid: 5246 + type: CableMV + components: + - pos: -31.5,2.5 + parent: 30 + type: Transform +- uid: 5247 + type: CableMV + components: + - pos: -32.5,8.5 + parent: 30 + type: Transform +- uid: 5248 + type: Chair + components: + - pos: -5.5,-13.5 + parent: 30 + type: Transform +- uid: 5249 + type: PlushieLizard + components: + - pos: -5.530057,-13.550093 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5250 + type: CableApcExtension + components: + - pos: -6.5,-15.5 + parent: 30 + type: Transform +- uid: 5251 + type: FoodRiceBoiled + components: + - pos: -30.52126,-15.304827 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5252 + type: GasVentPump + components: + - pos: -27.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5253 + type: CableApcExtension + components: + - pos: -18.5,2.5 + parent: 30 + type: Transform +- uid: 5254 + type: DrinkWineBottleFull + components: + - pos: -5.358182,-14.128218 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 5255 + type: DrinkWineGlass + components: + - pos: -5.608182,-14.081343 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 5256 + type: MachineFrame + components: + - pos: -11.5,-14.5 + parent: 30 + type: Transform + - defaultTarget: machine + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 5257 + type: StoolBar + components: + - rot: 3.141592653589793 rad + pos: -31.5,-16.5 + parent: 30 + type: Transform +- uid: 5258 + type: RandomPainting + components: + - pos: 3.5,18.5 + parent: 30 + type: Transform +- uid: 5259 + type: WindowAlmayer + components: + - pos: -20.5,12.5 + parent: 30 + type: Transform +- uid: 5260 + type: FirelockGlass + components: + - pos: -21.5,9.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 5261 + type: CableApcExtension + components: + - pos: -16.5,2.5 + parent: 30 + type: Transform +- uid: 5262 + type: PosterLegitReportCrimes + components: + - pos: 16.5,10.5 + parent: 30 + type: Transform +- uid: 5263 + type: WallAlmayer + components: + - pos: -28.5,-8.5 + parent: 30 + type: Transform +- uid: 5264 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -28.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5265 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -27.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5266 + type: DrinkWineGlass + components: + - pos: -5.530057,-14.300093 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 5267 + type: ClothingShoesClown + components: + - pos: -10.5432205,-14.572697 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5268 + type: CableMV + components: + - pos: -18.5,2.5 + parent: 30 + type: Transform +- uid: 5269 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5270 + type: BlastDoor + components: + - pos: -0.5,20.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 6520 + type: SignalReceiver +- uid: 5271 + type: CableApcExtension + components: + - pos: -0.5,19.5 + parent: 30 + type: Transform +- uid: 5272 + type: CableHV + components: + - pos: -25.5,-5.5 + parent: 30 + type: Transform +- uid: 5273 + type: CableMV + components: + - pos: -25.5,2.5 + parent: 30 + type: Transform +- uid: 5274 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: -18.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5275 + type: GasVentPump + components: + - pos: -15.5,-5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5276 + type: CableMV + components: + - pos: -26.5,2.5 + parent: 30 + type: Transform +- uid: 5277 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -22.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5278 + type: CableHV + components: + - pos: -23.5,-5.5 + parent: 30 + type: Transform +- uid: 5279 + type: GasPipeStraight + components: + - pos: -24.5,-0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5280 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -25.5,6.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5281 + type: Table + components: + - pos: -15.5,0.5 + parent: 30 + type: Transform +- uid: 5282 + type: Girder + components: + - pos: -1.5,18.5 + parent: 30 + type: Transform +- uid: 5283 + type: FloorTileItemCarpetClown + components: + - pos: -8.637179,-14.388132 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5284 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5285 + type: CableMV + components: + - pos: -15.5,2.5 + parent: 30 + type: Transform +- uid: 5286 + type: CableMV + components: + - pos: -32.5,6.5 + parent: 30 + type: Transform +- uid: 5287 + type: MaintenanceFluffSpawner + components: + - pos: -9.5,19.5 + parent: 30 + type: Transform +- uid: 5288 + type: Chair + components: + - rot: 3.141592653589793 rad + pos: -5.5,-15.5 + parent: 30 + type: Transform +- uid: 5289 + type: CableMV + components: + - pos: -14.5,3.5 + parent: 30 + type: Transform +- uid: 5290 + type: CableMV + components: + - pos: -17.5,2.5 + parent: 30 + type: Transform +- uid: 5291 + type: PlushieSpaceLizard + components: + - pos: -5.514432,-15.456343 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5292 + type: FoodMeatClown + components: + - pos: -8.579699,-13.663832 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5293 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -10.5,19.5 + parent: 30 + type: Transform +- uid: 5294 + type: CableMV + components: + - pos: -33.5,6.5 + parent: 30 + type: Transform +- uid: 5295 + type: CableMV + components: + - pos: -19.5,2.5 + parent: 30 + type: Transform +- uid: 5296 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5297 + type: FloorTileItemCarpetClown + components: + - pos: -8.668429,-14.372507 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5298 + type: FirelockGlass + components: + - pos: -24.5,8.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 5299 + type: FirelockGlass + components: + - pos: -23.5,8.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 5300 + type: WallAlmayer + components: + - pos: -28.5,13.5 + parent: 30 + type: Transform +- uid: 5301 + type: FirelockGlass + components: + - pos: -24.5,-3.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 5302 + type: FirelockGlass + components: + - pos: -23.5,-3.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 5303 + type: WallAlmayer + components: + - pos: -28.5,18.5 + parent: 30 + type: Transform +- uid: 5304 + type: WindowAlmayer + components: + - pos: -28.5,17.5 + parent: 30 + type: Transform +- uid: 5305 + type: WindowAlmayer + components: + - pos: -28.5,15.5 + parent: 30 + type: Transform +- uid: 5306 + type: CarpetOrange + components: + - pos: -26.5,19.5 + parent: 30 + type: Transform +- uid: 5307 + type: CarpetOrange + components: + - pos: -29.5,19.5 + parent: 30 + type: Transform +- uid: 5308 + type: WallAlmayer + components: + - pos: -15.5,23.5 + parent: 30 + type: Transform +- uid: 5309 + type: WallAlmayer + components: + - pos: -15.5,24.5 + parent: 30 + type: Transform +- uid: 5310 + type: AirlockGlassAlpha + components: + - pos: -7.5,22.5 + parent: 30 + type: Transform +- uid: 5311 + type: CableApcExtension + components: + - pos: -19.5,23.5 + parent: 30 + type: Transform +- uid: 5312 + type: WallAlmayer + components: + - pos: -14.5,26.5 + parent: 30 + type: Transform +- uid: 5313 + type: WallAlmayer + components: + - pos: -13.5,26.5 + parent: 30 + type: Transform +- uid: 5314 + type: WallAlmayer + components: + - pos: -12.5,23.5 + parent: 30 + type: Transform +- uid: 5315 + type: WindowAlmayer + components: + - pos: -12.5,25.5 + parent: 30 + type: Transform +- uid: 5316 + type: WallAlmayer + components: + - pos: -12.5,26.5 + parent: 30 + type: Transform +- uid: 5317 + type: Grille + components: + - pos: -20.5,12.5 + parent: 30 + type: Transform +- uid: 5318 + type: Grille + components: + - pos: -12.5,25.5 + parent: 30 + type: Transform +- uid: 5319 + type: WindowAlmayer + components: + - pos: -8.5,23.5 + parent: 30 + type: Transform +- uid: 5320 + type: Grille + components: + - pos: 24.5,-23.5 + parent: 30 + type: Transform +- uid: 5321 + type: Grille + components: + - pos: 22.5,-24.5 + parent: 30 + type: Transform +- uid: 5322 + type: Grille + components: + - pos: 22.5,-23.5 + parent: 30 + type: Transform +- uid: 5323 + type: Grille + components: + - pos: 22.5,-22.5 + parent: 30 + type: Transform +- uid: 5324 + type: Grille + components: + - pos: 14.5,-24.5 + parent: 30 + type: Transform +- uid: 5325 + type: Grille + components: + - pos: 14.5,-23.5 + parent: 30 + type: Transform +- uid: 5326 + type: Grille + components: + - pos: 14.5,-22.5 + parent: 30 + type: Transform +- uid: 5327 + type: Grille + components: + - pos: 16.5,-24.5 + parent: 30 + type: Transform +- uid: 5328 + type: Grille + components: + - pos: 16.5,-23.5 + parent: 30 + type: Transform +- uid: 5329 + type: Grille + components: + - pos: 16.5,-22.5 + parent: 30 + type: Transform +- uid: 5330 + type: Grille + components: + - pos: 17.5,-23.5 + parent: 30 + type: Transform +- uid: 5331 + type: Grille + components: + - pos: 18.5,-23.5 + parent: 30 + type: Transform +- uid: 5332 + type: Grille + components: + - pos: 19.5,-23.5 + parent: 30 + type: Transform +- uid: 5333 + type: Grille + components: + - pos: 20.5,-24.5 + parent: 30 + type: Transform +- uid: 5334 + type: Grille + components: + - pos: 20.5,-23.5 + parent: 30 + type: Transform +- uid: 5335 + type: Grille + components: + - pos: 20.5,-22.5 + parent: 30 + type: Transform +- uid: 5336 + type: ClosetEmergencyFilledRandom + components: + - pos: 13.5,-19.5 + parent: 30 + type: Transform +- uid: 5337 + type: Chair + components: + - pos: 22.5,-19.5 + parent: 30 + type: Transform +- uid: 5338 + type: Chair + components: + - pos: 16.5,-19.5 + parent: 30 + type: Transform +- uid: 5339 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: 19.5,-21.5 + parent: 30 + type: Transform +- uid: 5340 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,-20.5 + parent: 30 + type: Transform +- uid: 5341 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 19.5,-19.5 + parent: 30 + type: Transform +- uid: 5342 + type: Chair + components: + - pos: 15.5,-19.5 + parent: 30 + type: Transform +- uid: 5343 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5344 + type: ClosetFireFilled + components: + - pos: 17.5,-18.5 + parent: 30 + type: Transform +- uid: 5345 + type: CableApcExtension + components: + - pos: 14.5,-18.5 + parent: 30 + type: Transform +- uid: 5346 + type: CableApcExtension + components: + - pos: 14.5,-19.5 + parent: 30 + type: Transform +- uid: 5347 + type: WallAlmayer + components: + - pos: 15.5,-18.5 + parent: 30 + type: Transform +- uid: 5348 + type: BarSignOfficerBeersky + components: + - pos: -20.5,8.5 + parent: 30 + type: Transform +- uid: 5349 + type: CableApcExtension + components: + - pos: 18.5,-19.5 + parent: 30 + type: Transform +- uid: 5350 + type: CableApcExtension + components: + - pos: 18.5,-20.5 + parent: 30 + type: Transform +- uid: 5351 + type: Chair + components: + - rot: 3.141592653589793 rad + pos: 17.5,-22.5 + parent: 30 + type: Transform +- uid: 5352 + type: Chair + components: + - rot: 3.141592653589793 rad + pos: 18.5,-22.5 + parent: 30 + type: Transform +- uid: 5353 + type: Chair + components: + - rot: 3.141592653589793 rad + pos: 19.5,-22.5 + parent: 30 + type: Transform +- uid: 5354 + type: CableApcExtension + components: + - pos: 18.5,-21.5 + parent: 30 + type: Transform +- uid: 5355 + type: CableApcExtension + components: + - pos: 18.5,-22.5 + parent: 30 + type: Transform +- uid: 5356 + type: CableApcExtension + components: + - pos: 17.5,-21.5 + parent: 30 + type: Transform +- uid: 5357 + type: CableApcExtension + components: + - pos: 16.5,-21.5 + parent: 30 + type: Transform +- uid: 5358 + type: CableApcExtension + components: + - pos: 15.5,-21.5 + parent: 30 + type: Transform +- uid: 5359 + type: CableApcExtension + components: + - pos: 14.5,-21.5 + parent: 30 + type: Transform +- uid: 5360 + type: CableApcExtension + components: + - pos: 13.5,-21.5 + parent: 30 + type: Transform +- uid: 5361 + type: CableApcExtension + components: + - pos: 13.5,-22.5 + parent: 30 + type: Transform +- uid: 5362 + type: CableHV + components: + - pos: -12.5,24.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5363 + type: CableHV + components: + - pos: -11.5,24.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5364 + type: CableApcExtension + components: + - pos: 15.5,-22.5 + parent: 30 + type: Transform +- uid: 5365 + type: CableApcExtension + components: + - pos: 19.5,-21.5 + parent: 30 + type: Transform +- uid: 5366 + type: CableApcExtension + components: + - pos: 20.5,-21.5 + parent: 30 + type: Transform +- uid: 5367 + type: CableApcExtension + components: + - pos: 21.5,-21.5 + parent: 30 + type: Transform +- uid: 5368 + type: CableApcExtension + components: + - pos: 22.5,-21.5 + parent: 30 + type: Transform +- uid: 5369 + type: CableApcExtension + components: + - pos: 23.5,-21.5 + parent: 30 + type: Transform +- uid: 5370 + type: CableHV + components: + - pos: -13.5,24.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5371 + type: CableHV + components: + - pos: -14.5,24.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5372 + type: SMESBasic + components: + - pos: -14.5,24.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 5373 + type: CableTerminal + components: + - rot: -1.5707963267948966 rad + pos: -13.5,24.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5374 + type: CableHV + components: + - pos: -14.5,23.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5375 + type: CableHV + components: + - pos: -14.5,22.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5376 + type: CableHV + components: + - pos: -13.5,22.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5377 + type: CableHV + components: + - pos: -13.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5378 + type: CableHV + components: + - pos: -13.5,20.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5379 + type: CableHV + components: + - pos: -13.5,19.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5380 + type: CableHV + components: + - pos: -13.5,18.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5381 + type: CableHV + components: + - pos: -12.5,18.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5382 + type: CableHV + components: + - pos: -11.5,18.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5383 + type: CableHV + components: + - pos: -10.5,18.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5384 + type: CableHV + components: + - pos: -9.5,18.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5385 + type: CableHV + components: + - pos: -8.5,18.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5386 + type: CableHV + components: + - pos: -7.5,18.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5387 + type: CableHV + components: + - pos: -6.5,18.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5388 + type: CableHV + components: + - pos: -5.5,18.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5389 + type: CableHV + components: + - pos: -5.5,19.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5390 + type: CableHV + components: + - pos: -5.5,20.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5391 + type: CableHV + components: + - pos: -5.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5392 + type: CableHV + components: + - pos: -5.5,22.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5393 + type: CableHV + components: + - pos: 6.5,22.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5394 + type: CableHV + components: + - pos: 5.5,22.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5395 + type: CableHV + components: + - pos: 4.5,22.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5396 + type: CableHV + components: + - pos: 3.5,22.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5397 + type: CableHV + components: + - pos: 2.5,22.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5398 + type: CableHV + components: + - pos: 1.5,22.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5399 + type: CableHV + components: + - pos: 0.5,22.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5400 + type: CableHV + components: + - pos: -0.5,22.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5401 + type: CableHV + components: + - pos: -1.5,22.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5402 + type: CableHV + components: + - pos: -2.5,22.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5403 + type: CableHV + components: + - pos: -3.5,22.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5404 + type: CableHV + components: + - pos: -4.5,22.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5405 + type: CableApcExtension + components: + - pos: 23.5,-22.5 + parent: 30 + type: Transform +- uid: 5406 + type: CableApcExtension + components: + - pos: 21.5,-22.5 + parent: 30 + type: Transform +- uid: 5407 + type: SignSpace + components: + - pos: 14.5,-22.5 + parent: 30 + type: Transform +- uid: 5408 + type: SignSpace + components: + - pos: 22.5,-22.5 + parent: 30 + type: Transform +- uid: 5409 + type: PoweredSmallLight + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-23.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5410 + type: PoweredSmallLight + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5411 + type: PoweredSmallLight + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5412 + type: PoweredSmallLight + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-23.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5413 + type: Chair + components: + - pos: 21.5,-19.5 + parent: 30 + type: Transform +- uid: 5414 + type: SpawnPointDetective + components: + - pos: -0.5,26.5 + parent: 30 + type: Transform +- uid: 5415 + type: EmergencyLight + components: + - pos: 4.5,3.5 + parent: 30 + type: Transform +- uid: 5416 + type: EmergencyLight + components: + - rot: -1.5707963267948966 rad + pos: 20.5,22.5 + parent: 30 + type: Transform +- uid: 5417 + type: EmergencyLight + components: + - rot: 3.141592653589793 rad + pos: 23.5,1.5 + parent: 30 + type: Transform +- uid: 5418 + type: SignDisposalSpace + components: + - pos: 21.5,-14.5 + parent: 30 + type: Transform +- uid: 5419 + type: EmergencyLight + components: + - pos: 36.5,4.5 + parent: 30 + type: Transform +- uid: 5420 + type: EmergencyLight + components: + - pos: 6.5,13.5 + parent: 30 + type: Transform +- uid: 5421 + type: EmergencyLight + components: + - rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 30 + type: Transform +- uid: 5422 + type: EmergencyLight + components: + - rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 30 + type: Transform +- uid: 5423 + type: EmergencyLight + components: + - rot: 1.5707963267948966 rad + pos: -25.5,5.5 + parent: 30 + type: Transform +- uid: 5424 + type: EmergencyLight + components: + - rot: 3.141592653589793 rad + pos: -38.5,-1.5 + parent: 30 + type: Transform +- uid: 5425 + type: EmergencyLight + components: + - pos: -25.5,17.5 + parent: 30 + type: Transform +- uid: 5426 + type: EmergencyLight + components: + - rot: 1.5707963267948966 rad + pos: -44.5,18.5 + parent: 30 + type: Transform +- uid: 5427 + type: EmergencyLight + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-11.5 + parent: 30 + type: Transform +- uid: 5428 + type: EmergencyLight + components: + - pos: -20.5,-18.5 + parent: 30 + type: Transform +- uid: 5429 + type: EmergencyLight + components: + - rot: 3.141592653589793 rad + pos: -15.5,-14.5 + parent: 30 + type: Transform +- uid: 5430 + type: MagazineMagnumSubMachineGun + components: + - pos: 8.56704,17.642046 + parent: 30 + type: Transform + - unspawnedCount: 25 + type: BallisticAmmoProvider + - canCollide: False + type: Physics +- uid: 5431 + type: Chair + components: + - pos: 6.5,-0.5 + parent: 30 + type: Transform +- uid: 5432 + type: Gyroscope + components: + - pos: 8.5,25.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 5433 + type: Gyroscope + components: + - pos: 8.5,-19.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 5470 + type: Catwalk + components: + - pos: -11.5,24.5 + parent: 30 + type: Transform +- uid: 5476 + type: Catwalk + components: + - pos: -10.5,22.5 + parent: 30 + type: Transform +- uid: 5477 + type: Catwalk + components: + - pos: -10.5,23.5 + parent: 30 + type: Transform +- uid: 5478 + type: WallAlmayer + components: + - pos: -15.5,26.5 + parent: 30 + type: Transform +- uid: 5479 + type: WallAlmayer + components: + - pos: -24.5,22.5 + parent: 30 + type: Transform +- uid: 5480 + type: WindowAlmayer + components: + - pos: -15.5,12.5 + parent: 30 + type: Transform +- uid: 5481 + type: StoolBar + components: + - rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 30 + type: Transform +- uid: 5482 + type: TableReinforced + components: + - pos: -20.5,5.5 + parent: 30 + type: Transform +- uid: 5483 + type: WindowAlmayer + components: + - pos: -22.5,12.5 + parent: 30 + type: Transform +- uid: 5484 + type: WindowAlmayer + components: + - pos: -24.5,21.5 + parent: 30 + type: Transform +- uid: 5485 + type: WallAlmayer + components: + - pos: -23.5,22.5 + parent: 30 + type: Transform +- uid: 5486 + type: WindowAlmayer + components: + - pos: -23.5,12.5 + parent: 30 + type: Transform +- uid: 5487 + type: WindowAlmayer + components: + - pos: -19.5,12.5 + parent: 30 + type: Transform +- uid: 5488 + type: WindowAlmayer + components: + - pos: -16.5,12.5 + parent: 30 + type: Transform +- uid: 5489 + type: PlasticFlapsAirtightClear + components: + - pos: -14.5,18.5 + parent: 30 + type: Transform +- uid: 5490 + type: Grille + components: + - pos: -14.5,19.5 + parent: 30 + type: Transform +- uid: 5491 + type: TableReinforced + components: + - pos: -21.5,5.5 + parent: 30 + type: Transform +- uid: 5492 + type: TableReinforced + components: + - pos: -22.5,2.5 + parent: 30 + type: Transform +- uid: 5493 + type: Grille + components: + - pos: -23.5,12.5 + parent: 30 + type: Transform +- uid: 5494 + type: Grille + components: + - pos: -22.5,12.5 + parent: 30 + type: Transform +- uid: 5495 + type: AirlockGlassAlpha + components: + - pos: -26.5,13.5 + parent: 30 + type: Transform +- uid: 5496 + type: TableReinforced + components: + - pos: -22.5,3.5 + parent: 30 + type: Transform +- uid: 5497 + type: WallAlmayer + components: + - pos: -27.5,13.5 + parent: 30 + type: Transform +- uid: 5498 + type: WindowAlmayer + components: + - pos: -25.5,13.5 + parent: 30 + type: Transform +- uid: 5499 + type: Grille + components: + - pos: -25.5,13.5 + parent: 30 + type: Transform +- uid: 5500 + type: TableReinforced + components: + - pos: -20.5,2.5 + parent: 30 + type: Transform +- uid: 5501 + type: WindowAlmayer + components: + - rot: 3.141592653589793 rad + pos: -20.5,-3.5 + parent: 30 + type: Transform +- uid: 5502 + type: WallAlmayer + components: + - pos: -20.5,8.5 + parent: 30 + type: Transform +- uid: 5503 + type: AirlockGlassAlpha + components: + - pos: -15.5,4.5 + parent: 30 + type: Transform +- uid: 5504 + type: AirlockGlassAlpha + components: + - pos: -17.5,-1.5 + parent: 30 + type: Transform +- uid: 5505 + type: TableReinforced + components: + - pos: -21.5,0.5 + parent: 30 + type: Transform +- uid: 5506 + type: WallAlmayer + components: + - pos: -19.5,8.5 + parent: 30 + type: Transform +- uid: 5507 + type: Table + components: + - pos: -17.5,1.5 + parent: 30 + type: Transform +- uid: 5508 + type: WallAlmayer + components: + - pos: -13.5,-3.5 + parent: 30 + type: Transform +- uid: 5509 + type: Table + components: + - pos: -14.5,-3.5 + parent: 30 + type: Transform +- uid: 5510 + type: WindowAlmayer + components: + - pos: -28.5,22.5 + parent: 30 + type: Transform +- uid: 5511 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -21.5,24.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5512 + type: BoxFolderYellow + components: + - pos: -27.37276,20.54336 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 5513 + type: CarpetOrange + components: + - pos: -29.5,20.5 + parent: 30 + type: Transform +- uid: 5514 + type: WallAlmayer + components: + - pos: -31.5,18.5 + parent: 30 + type: Transform +- uid: 5515 + type: WallAlmayer + components: + - pos: -27.5,22.5 + parent: 30 + type: Transform +- uid: 5516 + type: WindowAlmayer + components: + - pos: -25.5,22.5 + parent: 30 + type: Transform +- uid: 5517 + type: WindowAlmayer + components: + - pos: -26.5,22.5 + parent: 30 + type: Transform +- uid: 5518 + type: WallAlmayer + components: + - pos: -33.5,18.5 + parent: 30 + type: Transform +- uid: 5519 + type: WallAlmayer + components: + - pos: -24.5,18.5 + parent: 30 + type: Transform +- uid: 5520 + type: Table + components: + - pos: -15.5,-3.5 + parent: 30 + type: Transform +- uid: 5521 + type: WallAlmayer + components: + - pos: -17.5,7.5 + parent: 30 + type: Transform +- uid: 5522 + type: WindowAlmayer + components: + - pos: -24.5,19.5 + parent: 30 + type: Transform +- uid: 5523 + type: SpawnMobCat + components: + - pos: -0.5,-12.5 + parent: 30 + type: Transform +- uid: 5524 + type: BedsheetQM + components: + - pos: -29.5,19.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5525 + type: CarpetOrange + components: + - pos: -28.5,19.5 + parent: 30 + type: Transform +- uid: 5526 + type: Grille + components: + - pos: -25.5,22.5 + parent: 30 + type: Transform +- uid: 5527 + type: Grille + components: + - pos: -26.5,22.5 + parent: 30 + type: Transform +- uid: 5528 + type: WindoorSecureSalvageLocked + components: + - rot: -1.5707963267948966 rad + pos: -38.5,15.5 + parent: 30 + type: Transform +- uid: 5529 + type: WallAlmayer + components: + - pos: -27.5,18.5 + parent: 30 + type: Transform +- uid: 5530 + type: VendingMachineBooze + components: + - pos: -18.5,4.5 + parent: 30 + type: Transform +- uid: 5531 + type: WallAlmayer + components: + - pos: -21.5,8.5 + parent: 30 + type: Transform +- uid: 5532 + type: GasVentPump + components: + - pos: -26.5,17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5533 + type: StoolBar + components: + - rot: 1.5707963267948966 rad + pos: -23.5,1.5 + parent: 30 + type: Transform +- uid: 5534 + type: PoweredSmallLight + components: + - pos: -27.5,21.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5535 + type: AirlockGlassAlpha + components: + - pos: -24.5,20.5 + parent: 30 + type: Transform +- uid: 5536 + type: Grille + components: + - pos: -26.5,0.5 + parent: 30 + type: Transform +- uid: 5537 + type: StoolBar + components: + - rot: 1.5707963267948966 rad + pos: -23.5,2.5 + parent: 30 + type: Transform +- uid: 5538 + type: Poweredlight + components: + - pos: -26.5,17.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5539 + type: SpawnPointQuartermaster + components: + - pos: -28.5,20.5 + parent: 30 + type: Transform +- uid: 5540 + type: SpawnMobRaccoonMorticia + components: + - pos: -28.5,19.5 + parent: 30 + type: Transform +- uid: 5541 + type: StoolBar + components: + - pos: -22.5,5.5 + parent: 30 + type: Transform +- uid: 5542 + type: StoolBar + components: + - rot: 1.5707963267948966 rad + pos: -23.5,4.5 + parent: 30 + type: Transform +- uid: 5543 + type: Grille + components: + - pos: -26.5,4.5 + parent: 30 + type: Transform +- uid: 5544 + type: StoolBar + components: + - rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 30 + type: Transform +- uid: 5545 + type: TableReinforced + components: + - pos: -22.5,1.5 + parent: 30 + type: Transform +- uid: 5546 + type: FirelockGlass + components: + - pos: -22.5,8.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 5547 + type: TwoWayLever + components: + - pos: -21.5,22.5 + parent: 30 + type: Transform + - outputs: + Left: + - port: Forward + uid: 5941 + - port: Forward + uid: 5599 + - port: Forward + uid: 5598 + - port: Forward + uid: 5580 + - port: Forward + uid: 5591 + Right: + - port: Reverse + uid: 5941 + - port: Reverse + uid: 5599 + - port: Reverse + uid: 5598 + - port: Reverse + uid: 5580 + - port: Reverse + uid: 5591 + Middle: + - port: Off + uid: 5941 + - port: Off + uid: 5599 + - port: Off + uid: 5598 + - port: Off + uid: 5580 + - port: Off + uid: 5591 + type: SignalTransmitter +- uid: 5548 + type: ChairOfficeDark + components: + - pos: -28.5,20.5 + parent: 30 + type: Transform +- uid: 5549 + type: CigarGold + components: + - pos: -27.59151,21.01211 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5550 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -26.5,20.5 + parent: 30 + type: Transform +- uid: 5551 + type: GasVentPump + components: + - pos: -21.5,25.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5552 + type: FirelockGlass + components: + - pos: -13.5,21.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 5553 + type: Catwalk + components: + - pos: -13.5,19.5 + parent: 30 + type: Transform +- uid: 5554 + type: Catwalk + components: + - pos: -13.5,20.5 + parent: 30 + type: Transform +- uid: 5555 + type: Catwalk + components: + - pos: -12.5,18.5 + parent: 30 + type: Transform +- uid: 5556 + type: Catwalk + components: + - pos: -11.5,18.5 + parent: 30 + type: Transform +- uid: 5557 + type: Catwalk + components: + - pos: -10.5,18.5 + parent: 30 + type: Transform +- uid: 5558 + type: Catwalk + components: + - pos: -9.5,18.5 + parent: 30 + type: Transform +- uid: 5559 + type: Catwalk + components: + - pos: -7.5,18.5 + parent: 30 + type: Transform +- uid: 5560 + type: Catwalk + components: + - pos: -6.5,18.5 + parent: 30 + type: Transform +- uid: 5561 + type: Catwalk + components: + - pos: -5.5,19.5 + parent: 30 + type: Transform +- uid: 5562 + type: Catwalk + components: + - pos: -5.5,20.5 + parent: 30 + type: Transform +- uid: 5563 + type: Catwalk + components: + - pos: -5.5,21.5 + parent: 30 + type: Transform +- uid: 5564 + type: CableApcExtension + components: + - pos: -6.5,22.5 + parent: 30 + type: Transform +- uid: 5565 + type: CableApcExtension + components: + - pos: -7.5,22.5 + parent: 30 + type: Transform +- uid: 5566 + type: CableApcExtension + components: + - pos: -8.5,22.5 + parent: 30 + type: Transform +- uid: 5567 + type: CableApcExtension + components: + - pos: -9.5,22.5 + parent: 30 + type: Transform +- uid: 5568 + type: CableApcExtension + components: + - pos: -13.5,19.5 + parent: 30 + type: Transform +- uid: 5569 + type: CableApcExtension + components: + - pos: -13.5,20.5 + parent: 30 + type: Transform +- uid: 5570 + type: CableApcExtension + components: + - pos: -13.5,21.5 + parent: 30 + type: Transform +- uid: 5571 + type: CableApcExtension + components: + - pos: -13.5,22.5 + parent: 30 + type: Transform +- uid: 5572 + type: CableApcExtension + components: + - pos: -13.5,23.5 + parent: 30 + type: Transform +- uid: 5573 + type: CableApcExtension + components: + - pos: -13.5,24.5 + parent: 30 + type: Transform +- uid: 5574 + type: CableApcExtension + components: + - pos: -13.5,25.5 + parent: 30 + type: Transform +- uid: 5575 + type: CableApcExtension + components: + - pos: -12.5,24.5 + parent: 30 + type: Transform +- uid: 5576 + type: ComputerSolarControl + components: + - rot: 1.5707963267948966 rad + pos: -14.5,25.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 5577 + type: ChairOfficeDark + components: + - rot: -1.5707963267948966 rad + pos: -13.5,25.5 + parent: 30 + type: Transform +- uid: 5578 + type: PoweredSmallLight + components: + - pos: -13.5,25.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5579 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -19.5,24.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5580 + type: ConveyorBelt + components: + - pos: -22.5,25.5 + parent: 30 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 5547 + Forward: + - port: Left + uid: 5547 + Off: + - port: Middle + uid: 5547 + type: SignalReceiver +- uid: 5581 + type: GasVentPump + components: + - pos: -19.5,25.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5582 + type: TwoWayLever + components: + - pos: -17.5,22.5 + parent: 30 + type: Transform + - outputs: + Left: + - port: Forward + uid: 5944 + - port: Forward + uid: 5942 + - port: Forward + uid: 5940 + - port: Forward + uid: 5609 + - port: Forward + uid: 5943 + Right: + - port: Reverse + uid: 5944 + - port: Reverse + uid: 5942 + - port: Reverse + uid: 5940 + - port: Reverse + uid: 5609 + - port: Reverse + uid: 5943 + Middle: + - port: Off + uid: 5944 + - port: Off + uid: 5942 + - port: Off + uid: 5940 + - port: Off + uid: 5609 + - port: Off + uid: 5943 + type: SignalTransmitter +- uid: 5583 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -21.5,23.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5584 + type: WallAlmayer + components: + - pos: -15.5,25.5 + parent: 30 + type: Transform +- uid: 5585 + type: Poweredlight + components: + - pos: -31.5,17.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5586 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -36.5,18.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5587 + type: PoweredSmallLight + components: + - rot: 1.5707963267948966 rad + pos: -19.5,25.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5588 + type: SpawnPointSalvageSpecialist + components: + - pos: -32.5,20.5 + parent: 30 + type: Transform +- uid: 5589 + type: SpawnPointCargoTechnician + components: + - pos: -26.5,16.5 + parent: 30 + type: Transform +- uid: 5590 + type: AirlockGlassAlpha + components: + - pos: -28.5,14.5 + parent: 30 + type: Transform +- uid: 5591 + type: ConveyorBelt + components: + - pos: -22.5,26.5 + parent: 30 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 5547 + Forward: + - port: Left + uid: 5547 + Off: + - port: Middle + uid: 5547 + type: SignalReceiver +- uid: 5592 + type: LockerSalvageSpecialistFilled + components: + - pos: -34.5,21.5 + parent: 30 + type: Transform +- uid: 5593 + type: Grille + components: + - pos: -34.5,17.5 + parent: 30 + type: Transform +- uid: 5594 + type: PlasticFlapsAirtightClear + components: + - pos: -24.5,15.5 + parent: 30 + type: Transform +- uid: 5595 + type: ExtinguisherCabinetFilled + components: + - pos: -30.5,20.5 + parent: 30 + type: Transform + - containers: + ItemCabinet: !type:ContainerSlot {} + type: ContainerContainer +- uid: 5596 + type: SignCargo + components: + - pos: -28.5,13.5 + parent: 30 + type: Transform +- uid: 5597 + type: Chair + components: + - pos: -30.5,17.5 + parent: 30 + type: Transform +- uid: 5598 + type: ConveyorBelt + components: + - pos: -22.5,24.5 + parent: 30 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 5547 + Forward: + - port: Left + uid: 5547 + Off: + - port: Middle + uid: 5547 + type: SignalReceiver +- uid: 5599 + type: ConveyorBelt + components: + - pos: -22.5,23.5 + parent: 30 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 5547 + Forward: + - port: Left + uid: 5547 + Off: + - port: Middle + uid: 5547 + type: SignalReceiver +- uid: 5600 + type: SpawnPointCargoTechnician + components: + - pos: -26.5,15.5 + parent: 30 + type: Transform +- uid: 5601 + type: PoweredSmallLight + components: + - rot: -1.5707963267948966 rad + pos: -21.5,25.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5602 + type: WindoorSecureCargoLocked + components: + - rot: 1.5707963267948966 rad + pos: -28.5,16.5 + parent: 30 + type: Transform +- uid: 5603 + type: ComputerCargoOrders + components: + - pos: -27.5,17.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 5604 + type: SignSpace + components: + - pos: -20.5,24.5 + parent: 30 + type: Transform +- uid: 5605 + type: FireExtinguisher + components: + - pos: -32.42331,21.664116 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5606 + type: ChairOfficeDark + components: + - rot: -1.5707963267948966 rad + pos: -27.5,16.5 + parent: 30 + type: Transform +- uid: 5607 + type: Table + components: + - pos: -31.5,19.5 + parent: 30 + type: Transform +- uid: 5608 + type: BoozeDispenser + components: + - pos: -19.5,2.5 + parent: 30 + type: Transform + - containers: + ReagentDispenser-beaker: !type:ContainerSlot {} + type: ContainerContainer +- uid: 5609 + type: ConveyorBelt + components: + - rot: 3.141592653589793 rad + pos: -18.5,23.5 + parent: 30 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 5582 + Forward: + - port: Left + uid: 5582 + Off: + - port: Middle + uid: 5582 + type: SignalReceiver +- uid: 5610 + type: StoolBar + components: + - rot: 1.5707963267948966 rad + pos: -23.5,0.5 + parent: 30 + type: Transform +- uid: 5611 + type: LockerSalvageSpecialistFilled + components: + - pos: -33.5,21.5 + parent: 30 + type: Transform +- uid: 5612 + type: Table + components: + - pos: -28.5,16.5 + parent: 30 + type: Transform +- uid: 5613 + type: Grille + components: + - pos: -24.5,21.5 + parent: 30 + type: Transform +- uid: 5614 + type: SalvageMagnet + components: + - rot: 3.141592653589793 rad + pos: -41.5,20.5 + parent: 30 + type: Transform +- uid: 5615 + type: Grille + components: + - pos: -28.5,17.5 + parent: 30 + type: Transform +- uid: 5616 + type: CableApcExtension + components: + - pos: -19.5,25.5 + parent: 30 + type: Transform +- uid: 5617 + type: CableApcExtension + components: + - pos: -19.5,24.5 + parent: 30 + type: Transform +- uid: 5618 + type: WallAlmayer + components: + - pos: -17.5,5.5 + parent: 30 + type: Transform +- uid: 5619 + type: OreProcessor + components: + - pos: -36.5,15.5 + parent: 30 + type: Transform + - materialWhiteList: + - Steel + - Glass + - Plasma + - Uranium + - Gold + - Silver + type: Lathe + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 5620 + type: PowerCellRecharger + components: + - pos: -25.5,14.5 + parent: 30 + type: Transform + - containers: + charger-slot: !type:ContainerSlot {} + type: ContainerContainer +- uid: 5621 + type: WallAlmayer + components: + - pos: -14.5,4.5 + parent: 30 + type: Transform +- uid: 5622 + type: soda_dispenser + components: + - pos: -20.5,2.5 + parent: 30 + type: Transform + - containers: + ReagentDispenser-beaker: !type:ContainerSlot {} + type: ContainerContainer +- uid: 5623 + type: SignCargoDock + components: + - pos: -23.5,22.5 + parent: 30 + type: Transform +- uid: 5624 + type: ChairOfficeDark + components: + - pos: -35.5,16.5 + parent: 30 + type: Transform +- uid: 5625 + type: WeldingFuelTankFull + components: + - pos: -44.5,15.5 + parent: 30 + type: Transform +- uid: 5626 + type: FireExtinguisher + components: + - pos: -32.67331,21.77349 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5627 + type: WallAlmayer + components: + - pos: -16.5,8.5 + parent: 30 + type: Transform +- uid: 5628 + type: WallAlmayer + components: + - pos: -17.5,3.5 + parent: 30 + type: Transform +- uid: 5629 + type: WallAlmayer + components: + - pos: -18.5,5.5 + parent: 30 + type: Transform +- uid: 5630 + type: WallAlmayer + components: + - pos: -17.5,-0.5 + parent: 30 + type: Transform +- uid: 5631 + type: WallAlmayer + components: + - pos: -18.5,-0.5 + parent: 30 + type: Transform +- uid: 5632 + type: TableReinforced + components: + - pos: -20.5,-0.5 + parent: 30 + type: Transform +- uid: 5633 + type: WallAlmayer + components: + - pos: -17.5,8.5 + parent: 30 + type: Transform +- uid: 5634 + type: WallAlmayer + components: + - pos: -13.5,8.5 + parent: 30 + type: Transform +- uid: 5635 + type: WallAlmayer + components: + - pos: -17.5,4.5 + parent: 30 + type: Transform +- uid: 5636 + type: WindowAlmayer + components: + - pos: -16.5,24.5 + parent: 30 + type: Transform +- uid: 5637 + type: WindowAlmayer + components: + - pos: -23.5,23.5 + parent: 30 + type: Transform +- uid: 5638 + type: SubstationBasic + components: + - pos: -15.5,21.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 5639 + type: CableHV + components: + - pos: -15.5,20.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5640 + type: CableHV + components: + - pos: -15.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 5641 + type: APCBasic + components: + - rot: 1.5707963267948966 rad + pos: -24.5,18.5 + parent: 30 + type: Transform +- uid: 5642 + type: CableMV + components: + - pos: -15.5,21.5 + parent: 30 + type: Transform +- uid: 5643 + type: CableMV + components: + - pos: -15.5,20.5 + parent: 30 + type: Transform +- uid: 5644 + type: CableMV + components: + - pos: -16.5,20.5 + parent: 30 + type: Transform +- uid: 5645 + type: CableMV + components: + - pos: -17.5,20.5 + parent: 30 + type: Transform +- uid: 5646 + type: CableMV + components: + - pos: -18.5,20.5 + parent: 30 + type: Transform +- uid: 5647 + type: CableMV + components: + - pos: -19.5,20.5 + parent: 30 + type: Transform +- uid: 5648 + type: CableMV + components: + - pos: -20.5,20.5 + parent: 30 + type: Transform +- uid: 5649 + type: CableMV + components: + - pos: -22.5,20.5 + parent: 30 + type: Transform +- uid: 5650 + type: CableMV + components: + - pos: -21.5,20.5 + parent: 30 + type: Transform +- uid: 5651 + type: CableMV + components: + - pos: -23.5,20.5 + parent: 30 + type: Transform +- uid: 5652 + type: CableMV + components: + - pos: -23.5,19.5 + parent: 30 + type: Transform +- uid: 5653 + type: CableMV + components: + - pos: -23.5,18.5 + parent: 30 + type: Transform +- uid: 5654 + type: CableMV + components: + - pos: -24.5,18.5 + parent: 30 + type: Transform +- uid: 5655 + type: CableApcExtension + components: + - pos: -24.5,18.5 + parent: 30 + type: Transform +- uid: 5656 + type: CableApcExtension + components: + - pos: -23.5,18.5 + parent: 30 + type: Transform +- uid: 5657 + type: CableApcExtension + components: + - pos: -22.5,18.5 + parent: 30 + type: Transform +- uid: 5658 + type: CableApcExtension + components: + - pos: -22.5,19.5 + parent: 30 + type: Transform +- uid: 5659 + type: CableApcExtension + components: + - pos: -22.5,20.5 + parent: 30 + type: Transform +- uid: 5660 + type: CableApcExtension + components: + - pos: -23.5,20.5 + parent: 30 + type: Transform +- uid: 5661 + type: CableApcExtension + components: + - pos: -24.5,20.5 + parent: 30 + type: Transform +- uid: 5662 + type: CableApcExtension + components: + - pos: -25.5,20.5 + parent: 30 + type: Transform +- uid: 5663 + type: CableApcExtension + components: + - pos: -26.5,20.5 + parent: 30 + type: Transform +- uid: 5664 + type: CableApcExtension + components: + - pos: -27.5,20.5 + parent: 30 + type: Transform +- uid: 5665 + type: CableApcExtension + components: + - pos: -22.5,17.5 + parent: 30 + type: Transform +- uid: 5666 + type: CableApcExtension + components: + - pos: -22.5,16.5 + parent: 30 + type: Transform +- uid: 5667 + type: CableApcExtension + components: + - pos: -22.5,15.5 + parent: 30 + type: Transform +- uid: 5668 + type: CableApcExtension + components: + - pos: -23.5,16.5 + parent: 30 + type: Transform +- uid: 5669 + type: CableApcExtension + components: + - pos: -24.5,16.5 + parent: 30 + type: Transform +- uid: 5670 + type: CableApcExtension + components: + - pos: -25.5,16.5 + parent: 30 + type: Transform +- uid: 5671 + type: CableApcExtension + components: + - pos: -26.5,16.5 + parent: 30 + type: Transform +- uid: 5672 + type: CableApcExtension + components: + - pos: -26.5,15.5 + parent: 30 + type: Transform +- uid: 5673 + type: CableApcExtension + components: + - pos: -26.5,14.5 + parent: 30 + type: Transform +- uid: 5674 + type: CableApcExtension + components: + - pos: -26.5,13.5 + parent: 30 + type: Transform +- uid: 5675 + type: CableApcExtension + components: + - pos: -26.5,12.5 + parent: 30 + type: Transform +- uid: 5676 + type: CableApcExtension + components: + - pos: -22.5,14.5 + parent: 30 + type: Transform +- uid: 5677 + type: CableApcExtension + components: + - pos: -22.5,13.5 + parent: 30 + type: Transform +- uid: 5678 + type: CableApcExtension + components: + - pos: -21.5,13.5 + parent: 30 + type: Transform +- uid: 5679 + type: CableApcExtension + components: + - pos: -19.5,13.5 + parent: 30 + type: Transform +- uid: 5680 + type: CableApcExtension + components: + - pos: -20.5,13.5 + parent: 30 + type: Transform +- uid: 5681 + type: CableApcExtension + components: + - pos: -18.5,13.5 + parent: 30 + type: Transform +- uid: 5682 + type: CableApcExtension + components: + - pos: -21.5,16.5 + parent: 30 + type: Transform +- uid: 5683 + type: CableApcExtension + components: + - pos: -20.5,16.5 + parent: 30 + type: Transform +- uid: 5684 + type: CableApcExtension + components: + - pos: -19.5,16.5 + parent: 30 + type: Transform +- uid: 5685 + type: CableApcExtension + components: + - pos: -18.5,16.5 + parent: 30 + type: Transform +- uid: 5686 + type: CableApcExtension + components: + - pos: -17.5,16.5 + parent: 30 + type: Transform +- uid: 5687 + type: CableApcExtension + components: + - pos: -16.5,16.5 + parent: 30 + type: Transform +- uid: 5688 + type: CableApcExtension + components: + - pos: -15.5,16.5 + parent: 30 + type: Transform +- uid: 5689 + type: CableApcExtension + components: + - pos: -15.5,15.5 + parent: 30 + type: Transform +- uid: 5690 + type: CableApcExtension + components: + - pos: -15.5,14.5 + parent: 30 + type: Transform +- uid: 5691 + type: CableApcExtension + components: + - pos: -15.5,13.5 + parent: 30 + type: Transform +- uid: 5692 + type: CableApcExtension + components: + - pos: -15.5,12.5 + parent: 30 + type: Transform +- uid: 5693 + type: CableApcExtension + components: + - pos: -15.5,11.5 + parent: 30 + type: Transform +- uid: 5694 + type: CableApcExtension + components: + - pos: -16.5,12.5 + parent: 30 + type: Transform +- uid: 5695 + type: CableApcExtension + components: + - pos: -15.5,10.5 + parent: 30 + type: Transform +- uid: 5696 + type: CableApcExtension + components: + - pos: -14.5,11.5 + parent: 30 + type: Transform +- uid: 5697 + type: CableApcExtension + components: + - pos: -13.5,11.5 + parent: 30 + type: Transform +- uid: 5698 + type: CableApcExtension + components: + - pos: -16.5,17.5 + parent: 30 + type: Transform +- uid: 5699 + type: CableApcExtension + components: + - pos: -16.5,18.5 + parent: 30 + type: Transform +- uid: 5700 + type: CableApcExtension + components: + - pos: -16.5,19.5 + parent: 30 + type: Transform +- uid: 5701 + type: CableApcExtension + components: + - pos: -16.5,20.5 + parent: 30 + type: Transform +- uid: 5702 + type: CableApcExtension + components: + - pos: -16.5,21.5 + parent: 30 + type: Transform +- uid: 5703 + type: CableApcExtension + components: + - pos: -19.5,17.5 + parent: 30 + type: Transform +- uid: 5704 + type: CableApcExtension + components: + - pos: -19.5,18.5 + parent: 30 + type: Transform +- uid: 5705 + type: CableApcExtension + components: + - pos: -19.5,19.5 + parent: 30 + type: Transform +- uid: 5706 + type: CableApcExtension + components: + - pos: -19.5,20.5 + parent: 30 + type: Transform +- uid: 5707 + type: CableApcExtension + components: + - pos: -19.5,21.5 + parent: 30 + type: Transform +- uid: 5708 + type: CableApcExtension + components: + - pos: -19.5,22.5 + parent: 30 + type: Transform +- uid: 5709 + type: CableApcExtension + components: + - pos: -20.5,22.5 + parent: 30 + type: Transform +- uid: 5710 + type: CableApcExtension + components: + - pos: -21.5,22.5 + parent: 30 + type: Transform +- uid: 5711 + type: Table + components: + - pos: -35.5,15.5 + parent: 30 + type: Transform +- uid: 5712 + type: WallAlmayer + components: + - pos: -26.5,-1.5 + parent: 30 + type: Transform +- uid: 5713 + type: Railing + components: + - pos: -33.5,14.5 + parent: 30 + type: Transform +- uid: 5714 + type: Table + components: + - pos: -25.5,14.5 + parent: 30 + type: Transform +- uid: 5715 + type: WindowAlmayer + components: + - pos: -17.5,26.5 + parent: 30 + type: Transform +- uid: 5716 + type: WindowAlmayer + components: + - pos: -17.5,25.5 + parent: 30 + type: Transform +- uid: 5717 + type: WindowAlmayer + components: + - pos: -17.5,24.5 + parent: 30 + type: Transform +- uid: 5718 + type: WindowAlmayer + components: + - pos: -20.5,25.5 + parent: 30 + type: Transform +- uid: 5719 + type: FirelockGlass + components: + - pos: -34.5,16.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 5720 + type: Grille + components: + - pos: -34.5,15.5 + parent: 30 + type: Transform +- uid: 5721 + type: FirelockGlass + components: + - pos: -28.5,16.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 5722 + type: Grille + components: + - pos: -28.5,15.5 + parent: 30 + type: Transform +- uid: 5723 + type: WindowAlmayer + components: + - pos: -23.5,24.5 + parent: 30 + type: Transform +- uid: 5724 + type: Grille + components: + - rot: 3.141592653589793 rad + pos: -18.5,-3.5 + parent: 30 + type: Transform +- uid: 5725 + type: SpawnPointSalvageSpecialist + components: + - pos: -33.5,20.5 + parent: 30 + type: Transform +- uid: 5726 + type: WallAlmayer + components: + - pos: -15.5,8.5 + parent: 30 + type: Transform +- uid: 5727 + type: WindowAlmayer + components: + - rot: 3.141592653589793 rad + pos: -19.5,-3.5 + parent: 30 + type: Transform +- uid: 5728 + type: WallAlmayer + components: + - pos: -18.5,8.5 + parent: 30 + type: Transform +- uid: 5729 + type: WindowAlmayer + components: + - pos: -20.5,24.5 + parent: 30 + type: Transform +- uid: 5730 + type: WallAlmayer + components: + - pos: 0.5,8.5 + parent: 30 + type: Transform +- uid: 5731 + type: CableApcExtension + components: + - pos: -16.5,22.5 + parent: 30 + type: Transform +- uid: 5732 + type: CableApcExtension + components: + - pos: -17.5,22.5 + parent: 30 + type: Transform +- uid: 5733 + type: WallAlmayer + components: + - pos: 1.5,8.5 + parent: 30 + type: Transform +- uid: 5734 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -25.5,11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5735 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -25.5,12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5736 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -25.5,13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5737 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -25.5,14.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5738 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -26.5,12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5739 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -26.5,13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5740 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -26.5,14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5741 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -26.5,15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5742 + type: WallAlmayer + components: + - pos: -17.5,12.5 + parent: 30 + type: Transform +- uid: 5743 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -17.5,11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5744 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: -17.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5745 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: -19.5,10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5746 + type: GasPipeTJunction + components: + - pos: -25.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5747 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -25.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5748 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -24.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5749 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: -21.5,18.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5750 + type: WallAlmayer + components: + - pos: -25.5,8.5 + parent: 30 + type: Transform +- uid: 5751 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -21.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5752 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -20.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5753 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -19.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5754 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -18.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5755 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -22.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5756 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: -26.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5757 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -17.5,18.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5758 + type: GasPipeBend + components: + - pos: -15.5,18.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5759 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -23.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5760 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -24.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5761 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -23.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5762 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -22.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5763 + type: GasPipeStraight + components: + - pos: -21.5,16.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5764 + type: GasPipeStraight + components: + - pos: -21.5,17.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5765 + type: GasPipeStraight + components: + - pos: -15.5,11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5766 + type: GasPipeStraight + components: + - pos: -15.5,12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5767 + type: GasPipeStraight + components: + - pos: -15.5,13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5768 + type: GasPipeStraight + components: + - pos: -15.5,14.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5769 + type: GasPipeStraight + components: + - pos: -15.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5770 + type: GasPipeStraight + components: + - pos: -15.5,16.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5771 + type: GasPipeStraight + components: + - pos: -15.5,17.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5772 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -16.5,18.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5773 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: -21.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5774 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -18.5,18.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5775 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -19.5,18.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5776 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -20.5,18.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5777 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -16.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5778 + type: Grille + components: + - pos: -16.5,24.5 + parent: 30 + type: Transform +- uid: 5779 + type: Grille + components: + - pos: -17.5,25.5 + parent: 30 + type: Transform +- uid: 5780 + type: GasVentScrubber + components: + - rot: 1.5707963267948966 rad + pos: -26.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5781 + type: GasVentPump + components: + - pos: -22.5,17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5782 + type: GasVentPump + components: + - pos: -17.5,17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5783 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: -21.5,14.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5784 + type: GasVentScrubber + components: + - pos: -17.5,19.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5785 + type: GasPipeStraight + components: + - pos: -23.5,17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5786 + type: GasPipeStraight + components: + - pos: -23.5,18.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5787 + type: GasPipeBend + components: + - pos: -23.5,19.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5788 + type: GasPipeBend + components: + - pos: -21.5,20.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5789 + type: GasPipeStraight + components: + - pos: -21.5,19.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5790 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -22.5,20.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5791 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -23.5,20.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5792 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -24.5,20.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5793 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -24.5,19.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5794 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: -25.5,19.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5795 + type: GasVentScrubber + components: + - rot: 1.5707963267948966 rad + pos: -25.5,20.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5796 + type: GasPipeStraight + components: + - pos: -19.5,17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5797 + type: GasPipeStraight + components: + - pos: -19.5,18.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5798 + type: GasPipeStraight + components: + - pos: -19.5,19.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5799 + type: GasPipeStraight + components: + - pos: -19.5,20.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5800 + type: GasPipeStraight + components: + - pos: -19.5,21.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5801 + type: GasPipeStraight + components: + - pos: -19.5,22.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5802 + type: SignMinerDock + components: + - pos: -34.5,14.5 + parent: 30 + type: Transform +- uid: 5803 + type: WaterCooler + components: + - pos: -31.5,20.5 + parent: 30 + type: Transform +- uid: 5804 + type: Grille + components: + - pos: -17.5,26.5 + parent: 30 + type: Transform +- uid: 5805 + type: Grille + components: + - pos: -17.5,24.5 + parent: 30 + type: Transform +- uid: 5806 + type: Chair + components: + - pos: -31.5,17.5 + parent: 30 + type: Transform +- uid: 5807 + type: Rack + components: + - pos: -32.5,21.5 + parent: 30 + type: Transform +- uid: 5808 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: -19.5,23.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5809 + type: RailingCornerSmall + components: + - rot: 1.5707963267948966 rad + pos: -32.5,14.5 + parent: 30 + type: Transform +- uid: 5810 + type: PottedPlantRandom + components: + - pos: -29.5,17.5 + parent: 30 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 5811 + type: WindowAlmayer + components: + - pos: -23.5,25.5 + parent: 30 + type: Transform +- uid: 5812 + type: CableApcExtension + components: + - pos: -21.5,25.5 + parent: 30 + type: Transform +- uid: 5813 + type: TableReinforced + components: + - pos: -21.5,-0.5 + parent: 30 + type: Transform +- uid: 5814 + type: TableReinforced + components: + - pos: -22.5,0.5 + parent: 30 + type: Transform +- uid: 5815 + type: TableReinforced + components: + - pos: -22.5,4.5 + parent: 30 + type: Transform +- uid: 5816 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -15.5,17.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5817 + type: Grille + components: + - pos: -18.5,12.5 + parent: 30 + type: Transform +- uid: 5818 + type: Grille + components: + - pos: -23.5,26.5 + parent: 30 + type: Transform +- uid: 5819 + type: WindowAlmayer + components: + - pos: -20.5,26.5 + parent: 30 + type: Transform +- uid: 5820 + type: AirlockGlassAlpha + components: + - pos: -24.5,17.5 + parent: 30 + type: Transform +- uid: 5822 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -20.5,23.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5823 + type: TableReinforced + components: + - pos: -21.5,4.5 + parent: 30 + type: Transform +- uid: 5824 + type: Table + components: + - pos: -16.5,-3.5 + parent: 30 + type: Transform +- uid: 5825 + type: WallAlmayer + components: + - pos: -17.5,-3.5 + parent: 30 + type: Transform +- uid: 5826 + type: Grille + components: + - pos: -28.5,22.5 + parent: 30 + type: Transform +- uid: 5827 + type: Grille + components: + - pos: -29.5,22.5 + parent: 30 + type: Transform +- uid: 5828 + type: Table + components: + - pos: -27.5,20.5 + parent: 30 + type: Transform +- uid: 5829 + type: CigarGold + components: + - pos: -27.49776,20.933985 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5830 + type: SignDirectionalSupply + components: + - rot: -1.5707963267948966 rad + pos: -24.5,12.5 + parent: 30 + type: Transform +- uid: 5831 + type: Rack + components: + - pos: -44.5,16.5 + parent: 30 + type: Transform +- uid: 5832 + type: ShowcaseRobotAntique + components: + - pos: -25.5,21.5 + parent: 30 + type: Transform +- uid: 5833 + type: ComputerCargoOrders + components: + - pos: -28.5,21.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer + - outputs: + OrderSender: [] + type: SignalTransmitter +- uid: 5834 + type: LockerQuarterMasterFilled + components: + - pos: -29.5,21.5 + parent: 30 + type: Transform +- uid: 5835 + type: Table + components: + - pos: -27.5,21.5 + parent: 30 + type: Transform +- uid: 5836 + type: BlastDoor + components: + - pos: -18.5,26.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 4586 + type: SignalReceiver +- uid: 5837 + type: WallAlmayer + components: + - pos: -24.5,14.5 + parent: 30 + type: Transform +- uid: 5838 + type: BlastDoor + components: + - pos: -22.5,24.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 4566 + type: SignalReceiver +- uid: 5839 + type: DogBed + components: + - pos: -29.5,20.5 + parent: 30 + type: Transform +- uid: 5840 + type: GasVentPump + components: + - pos: 7.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5841 + type: Grille + components: + - pos: -9.5,-19.5 + parent: 30 + type: Transform +- uid: 5842 + type: DisposalUnit + components: + - pos: -15.5,17.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5843 + type: DisposalJunction + components: + - rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 5844 + type: WallAlmayer + components: + - pos: -14.5,8.5 + parent: 30 + type: Transform +- uid: 5845 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -11.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5846 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -13.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5847 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -14.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5848 + type: DisposalJunctionFlipped + components: + - rot: 1.5707963267948966 rad + pos: -15.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 5849 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -16.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5850 + type: WallAlmayer + components: + - pos: -17.5,0.5 + parent: 30 + type: Transform +- uid: 5851 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -19.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5852 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -18.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5853 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -20.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5854 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -21.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5855 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -22.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5856 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -23.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5857 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -24.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5858 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -25.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5859 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -26.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5860 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -27.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5861 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -28.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5862 + type: DisposalPipe + components: + - pos: -15.5,11.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5863 + type: DisposalPipe + components: + - pos: -15.5,12.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5864 + type: DisposalPipe + components: + - pos: -15.5,13.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5865 + type: DisposalPipe + components: + - pos: -15.5,14.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5866 + type: DisposalPipe + components: + - pos: -15.5,15.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5867 + type: DisposalTrunk + components: + - pos: -15.5,17.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 5868 + type: DisposalPipe + components: + - pos: -15.5,16.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 5869 + type: AirlockGlassAlpha + components: + - pos: -17.5,2.5 + parent: 30 + type: Transform +- uid: 5870 + type: TableReinforced + components: + - pos: -19.5,5.5 + parent: 30 + type: Transform +- uid: 5871 + type: CableApcExtension + components: + - pos: -18.5,-1.5 + parent: 30 + type: Transform +- uid: 5872 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: -15.5,6.5 + parent: 30 + type: Transform +- uid: 5873 + type: CableApcExtension + components: + - pos: -17.5,-1.5 + parent: 30 + type: Transform +- uid: 5874 + type: CableApcExtension + components: + - pos: -15.5,-1.5 + parent: 30 + type: Transform +- uid: 5875 + type: Rack + components: + - pos: 16.5,-7.5 + parent: 30 + type: Transform +- uid: 5876 + type: OxygenCanister + components: + - pos: 16.5,-8.5 + parent: 30 + type: Transform +- uid: 5877 + type: AirCanister + components: + - pos: 16.5,-9.5 + parent: 30 + type: Transform +- uid: 5878 + type: NitrogenCanister + components: + - pos: 16.5,-10.5 + parent: 30 + type: Transform +- uid: 5879 + type: WindowDirectional + components: + - pos: 16.5,-10.5 + parent: 30 + type: Transform +- uid: 5880 + type: Welder + components: + - pos: 16.481377,-7.4876637 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5881 + type: ClothingHeadHatWeldingMaskFlameBlue + components: + - pos: 16.481377,-7.5657887 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5882 + type: ClothingOuterCoatJensen + components: + - pos: 16.46766,-11.487663 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 5883 + type: Rack + components: + - pos: 16.5,-12.5 + parent: 30 + type: Transform +- uid: 5884 + type: MaintenanceToolSpawner + components: + - pos: 16.5,-12.5 + parent: 30 + type: Transform +- uid: 5885 + type: Catwalk + components: + - pos: 15.5,-14.5 + parent: 30 + type: Transform +- uid: 5886 + type: Catwalk + components: + - pos: 15.5,-12.5 + parent: 30 + type: Transform +- uid: 5887 + type: Catwalk + components: + - pos: 15.5,-11.5 + parent: 30 + type: Transform +- uid: 5888 + type: Catwalk + components: + - pos: 15.5,-10.5 + parent: 30 + type: Transform +- uid: 5889 + type: Catwalk + components: + - pos: 15.5,-9.5 + parent: 30 + type: Transform +- uid: 5890 + type: Catwalk + components: + - pos: 15.5,-8.5 + parent: 30 + type: Transform +- uid: 5891 + type: Catwalk + components: + - pos: 15.5,-7.5 + parent: 30 + type: Transform +- uid: 5892 + type: Catwalk + components: + - pos: 15.5,-6.5 + parent: 30 + type: Transform +- uid: 5893 + type: Catwalk + components: + - pos: 15.5,-5.5 + parent: 30 + type: Transform +- uid: 5894 + type: CableApcExtension + components: + - pos: -15.5,1.5 + parent: 30 + type: Transform +- uid: 5895 + type: CableApcExtension + components: + - pos: -15.5,5.5 + parent: 30 + type: Transform +- uid: 5896 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: -23.5,5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5897 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5898 + type: CrateFilledSpawner + components: + - pos: 25.5,-9.5 + parent: 30 + type: Transform +- uid: 5899 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5900 + type: GasPressurePump + components: + - rot: 1.5707963267948966 rad + pos: -17.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5901 + type: CableApcExtension + components: + - pos: -21.5,-1.5 + parent: 30 + type: Transform +- uid: 5902 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -20.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 5903 + type: AirlockCommand + components: + - pos: -40.5,9.5 + parent: 30 + type: Transform +- uid: 5904 + type: WallAlmayer + components: + - pos: -30.5,19.5 + parent: 30 + type: Transform +- uid: 5905 + type: CarpetOrange + components: + - pos: -26.5,20.5 + parent: 30 + type: Transform +- uid: 5906 + type: WallAlmayer + components: + - pos: -30.5,20.5 + parent: 30 + type: Transform +- uid: 5907 + type: VendingMachineEngiDrobe + components: + - pos: -31.5,6.5 + parent: 30 + type: Transform +- uid: 5908 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -31.5,22.5 + parent: 30 + type: Transform +- uid: 5909 + type: SubstationBasic + components: + - pos: -31.5,21.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 5910 + type: WallAlmayer + components: + - pos: -30.5,21.5 + parent: 30 + type: Transform +- uid: 5911 + type: WallAlmayer + components: + - pos: -25.5,-3.5 + parent: 30 + type: Transform +- uid: 5912 + type: LockerEngineerFilled + components: + - pos: -33.5,11.5 + parent: 30 + type: Transform +- uid: 5913 + type: CableApcExtension + components: + - pos: -30.5,18.5 + parent: 30 + type: Transform +- uid: 5914 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: -38.5,-0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 5915 + type: Grille + components: + - pos: -39.5,7.5 + parent: 30 + type: Transform +- uid: 5916 + type: PlaqueAtmos + components: + - pos: -40.5,7.5 + parent: 30 + type: Transform +- uid: 5917 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: -21.5,13.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 5918 + type: Protolathe + components: + - pos: -33.5,5.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - materialWhiteList: + - Steel + - Glass + - Plastic + - Wood + - Gold + type: Lathe + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 5919 + type: CableHV + components: + - pos: -32.5,11.5 + parent: 30 + type: Transform +- uid: 5920 + type: WallAlmayer + components: + - pos: -31.5,9.5 + parent: 30 + type: Transform +- uid: 5921 + type: CableMV + components: + - pos: -32.5,11.5 + parent: 30 + type: Transform +- uid: 5922 + type: SubstationBasic + components: + - pos: -32.5,11.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 5923 + type: WindowAlmayer + components: + - pos: -37.5,8.5 + parent: 30 + type: Transform +- uid: 5924 + type: AirlockGlassAlpha + components: + - pos: -24.5,16.5 + parent: 30 + type: Transform +- uid: 5925 + type: Carpet + components: + - rot: 1.5707963267948966 rad + pos: -0.5,12.5 + parent: 30 + type: Transform +- uid: 5926 + type: Grille + components: + - pos: -27.5,-8.5 + parent: 30 + type: Transform +- uid: 5927 + type: LampGold + components: + - pos: -27.513386,21.51211 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 5928 + type: ExtinguisherCabinetFilled + components: + - pos: -14.5,16.5 + parent: 30 + type: Transform + - containers: + ItemCabinet: !type:ContainerSlot {} + type: ContainerContainer +- uid: 5929 + type: BlastDoor + components: + - pos: -22.5,26.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 4586 + type: SignalReceiver +- uid: 5930 + type: ExtinguisherCabinetFilled + components: + - pos: 20.5,7.5 + parent: 30 + type: Transform + - containers: + ItemCabinet: !type:ContainerSlot {} + type: ContainerContainer +- uid: 5931 + type: ExtinguisherCabinetFilled + components: + - pos: 20.5,-12.5 + parent: 30 + type: Transform + - containers: + ItemCabinet: !type:ContainerSlot {} + type: ContainerContainer +- uid: 5932 + type: ExtinguisherCabinetFilled + components: + - pos: 20.5,17.5 + parent: 30 + type: Transform + - containers: + ItemCabinet: !type:ContainerSlot {} + type: ContainerContainer +- uid: 5933 + type: ExtinguisherCabinetFilled + components: + - pos: 33.5,0.5 + parent: 30 + type: Transform + - opened: True + type: ItemCabinet + - containers: + ItemCabinet: !type:ContainerSlot {} + type: ContainerContainer +- uid: 5934 + type: Grille + components: + - pos: 11.5,-9.5 + parent: 30 + type: Transform +- uid: 5935 + type: BlastDoor + components: + - pos: -18.5,24.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 4566 + type: SignalReceiver +- uid: 5936 + type: ExtinguisherCabinetFilled + components: + - pos: -24.5,-10.5 + parent: 30 + type: Transform + - containers: + ItemCabinet: !type:ContainerSlot {} + type: ContainerContainer +- uid: 5937 + type: ExtinguisherCabinetFilled + components: + - pos: -19.5,-17.5 + parent: 30 + type: Transform + - containers: + ItemCabinet: !type:ContainerSlot {} + type: ContainerContainer +- uid: 5938 + type: Grille + components: + - pos: -16.5,12.5 + parent: 30 + type: Transform +- uid: 5939 + type: Grille + components: + - pos: -15.5,12.5 + parent: 30 + type: Transform +- uid: 5940 + type: ConveyorBelt + components: + - rot: 3.141592653589793 rad + pos: -18.5,24.5 + parent: 30 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 5582 + Forward: + - port: Left + uid: 5582 + Off: + - port: Middle + uid: 5582 + type: SignalReceiver +- uid: 5941 + type: ConveyorBelt + components: + - pos: -22.5,22.5 + parent: 30 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 5547 + Forward: + - port: Left + uid: 5547 + Off: + - port: Middle + uid: 5547 + type: SignalReceiver +- uid: 5942 + type: ConveyorBelt + components: + - rot: 3.141592653589793 rad + pos: -18.5,25.5 + parent: 30 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 5582 + Forward: + - port: Left + uid: 5582 + Off: + - port: Middle + uid: 5582 + type: SignalReceiver +- uid: 5943 + type: ConveyorBelt + components: + - rot: 3.141592653589793 rad + pos: -18.5,22.5 + parent: 30 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 5582 + Forward: + - port: Left + uid: 5582 + Off: + - port: Middle + uid: 5582 + type: SignalReceiver +- uid: 5944 + type: ConveyorBelt + components: + - rot: 3.141592653589793 rad + pos: -18.5,26.5 + parent: 30 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 5582 + Forward: + - port: Left + uid: 5582 + Off: + - port: Middle + uid: 5582 + type: SignalReceiver +- uid: 5945 + type: WallAlmayer + components: + - pos: -29.5,18.5 + parent: 30 + type: Transform +- uid: 5946 + type: WallAlmayer + components: + - pos: -35.5,18.5 + parent: 30 + type: Transform +- uid: 5947 + type: WallAlmayer + components: + - pos: -34.5,22.5 + parent: 30 + type: Transform +- uid: 5948 + type: WallAlmayer + components: + - pos: -35.5,22.5 + parent: 30 + type: Transform +- uid: 5949 + type: WallAlmayer + components: + - pos: -35.5,21.5 + parent: 30 + type: Transform +- uid: 5950 + type: WallAlmayer + components: + - pos: -35.5,20.5 + parent: 30 + type: Transform +- uid: 5951 + type: AirlockGlassAlpha + components: + - pos: -32.5,18.5 + parent: 30 + type: Transform +- uid: 5952 + type: WindowAlmayer + components: + - pos: -36.5,20.5 + parent: 30 + type: Transform +- uid: 5953 + type: WindowAlmayer + components: + - pos: -36.5,22.5 + parent: 30 + type: Transform +- uid: 5954 + type: SurveillanceCameraRouterEngineering + components: + - pos: -38.5,10.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 5955 + type: WallAlmayer + components: + - pos: -38.5,22.5 + parent: 30 + type: Transform +- uid: 5956 + type: ComfyChair + components: + - rot: -1.5707963267948966 rad + pos: -18.5,7.5 + parent: 30 + type: Transform +- uid: 5957 + type: WallAlmayer + components: + - pos: -38.5,20.5 + parent: 30 + type: Transform +- uid: 5958 + type: WallAlmayer + components: + - pos: -38.5,21.5 + parent: 30 + type: Transform +- uid: 5959 + type: SignBar + components: + - pos: -25.5,8.5 + parent: 30 + type: Transform +- uid: 5960 + type: WindowAlmayer + components: + - pos: -34.5,17.5 + parent: 30 + type: Transform +- uid: 5961 + type: WindoorSecureSalvageLocked + components: + - rot: -1.5707963267948966 rad + pos: -34.5,16.5 + parent: 30 + type: Transform +- uid: 5962 + type: WallAlmayer + components: + - pos: -44.5,14.5 + parent: 30 + type: Transform +- uid: 5963 + type: WallAlmayer + components: + - pos: -34.5,14.5 + parent: 30 + type: Transform +- uid: 5964 + type: WindowAlmayer + components: + - pos: -35.5,14.5 + parent: 30 + type: Transform +- uid: 5965 + type: WindowAlmayer + components: + - pos: -36.5,14.5 + parent: 30 + type: Transform +- uid: 5966 + type: WindowAlmayer + components: + - pos: -37.5,10.5 + parent: 30 + type: Transform +- uid: 5967 + type: Grille + components: + - pos: -37.5,10.5 + parent: 30 + type: Transform +- uid: 5968 + type: WallAlmayer + components: + - pos: -37.5,14.5 + parent: 30 + type: Transform +- uid: 5969 + type: WallAlmayer + components: + - pos: -38.5,14.5 + parent: 30 + type: Transform +- uid: 5970 + type: WallAlmayer + components: + - pos: -37.5,11.5 + parent: 30 + type: Transform +- uid: 5971 + type: BlastDoor + components: + - pos: -39.5,21.5 + parent: 30 + type: Transform + - inputs: + Open: + - port: Left + uid: 6453 + - port: Right + uid: 6453 + Close: + - port: Middle + uid: 6453 + Toggle: [] + type: SignalReceiver +- uid: 5972 + type: BlastDoor + components: + - pos: -40.5,21.5 + parent: 30 + type: Transform + - inputs: + Open: + - port: Left + uid: 6453 + - port: Right + uid: 6453 + Close: + - port: Middle + uid: 6453 + Toggle: [] + type: SignalReceiver +- uid: 5973 + type: BlastDoor + components: + - pos: -41.5,21.5 + parent: 30 + type: Transform + - inputs: + Open: + - port: Left + uid: 6453 + - port: Right + uid: 6453 + Close: + - port: Middle + uid: 6453 + Toggle: [] + type: SignalReceiver +- uid: 5974 + type: BlastDoor + components: + - pos: -42.5,21.5 + parent: 30 + type: Transform + - inputs: + Open: + - port: Left + uid: 6453 + - port: Right + uid: 6453 + Close: + - port: Middle + uid: 6453 + Toggle: [] + type: SignalReceiver +- uid: 5975 + type: BlastDoor + components: + - pos: -43.5,21.5 + parent: 30 + type: Transform + - inputs: + Open: + - port: Left + uid: 6453 + - port: Right + uid: 6453 + Close: + - port: Middle + uid: 6453 + Toggle: [] + type: SignalReceiver +- uid: 5976 + type: WallAlmayer + components: + - pos: -44.5,21.5 + parent: 30 + type: Transform +- uid: 5977 + type: WallAlmayer + components: + - pos: -44.5,20.5 + parent: 30 + type: Transform +- uid: 5978 + type: WallAlmayer + components: + - pos: -45.5,20.5 + parent: 30 + type: Transform +- uid: 5979 + type: WallAlmayer + components: + - pos: -45.5,19.5 + parent: 30 + type: Transform +- uid: 5980 + type: WallAlmayer + components: + - pos: -45.5,18.5 + parent: 30 + type: Transform +- uid: 5981 + type: WallAlmayer + components: + - pos: -45.5,17.5 + parent: 30 + type: Transform +- uid: 5982 + type: WallAlmayer + components: + - pos: -45.5,16.5 + parent: 30 + type: Transform +- uid: 5983 + type: WallAlmayer + components: + - pos: -45.5,15.5 + parent: 30 + type: Transform +- uid: 5984 + type: WallAlmayer + components: + - pos: -39.5,14.5 + parent: 30 + type: Transform +- uid: 5985 + type: WallAlmayer + components: + - pos: -40.5,14.5 + parent: 30 + type: Transform +- uid: 5986 + type: AirlockGlassAlpha + components: + - pos: -41.5,14.5 + parent: 30 + type: Transform +- uid: 5987 + type: WallAlmayer + components: + - pos: -42.5,14.5 + parent: 30 + type: Transform +- uid: 5988 + type: WallAlmayer + components: + - pos: -43.5,14.5 + parent: 30 + type: Transform +- uid: 5989 + type: Table + components: + - pos: -38.5,8.5 + parent: 30 + type: Transform +- uid: 5990 + type: AirlockGlassAlpha + components: + - pos: -37.5,22.5 + parent: 30 + type: Transform +- uid: 5991 + type: WallAlmayer + components: + - pos: -45.5,14.5 + parent: 30 + type: Transform +- uid: 5992 + type: WallAlmayer + components: + - pos: -31.5,10.5 + parent: 30 + type: Transform +- uid: 5993 + type: AirlockGlassAlpha + components: + - pos: -37.5,20.5 + parent: 30 + type: Transform +- uid: 5994 + type: AirlockCommand + components: + - pos: -44.5,9.5 + parent: 30 + type: Transform +- uid: 5995 + type: WallAlmayer + components: + - pos: -40.5,8.5 + parent: 30 + type: Transform +- uid: 5996 + type: WallAlmayer + components: + - pos: -46.5,14.5 + parent: 30 + type: Transform +- uid: 5997 + type: WallAlmayer + components: + - pos: -46.5,13.5 + parent: 30 + type: Transform +- uid: 5998 + type: WallAlmayer + components: + - pos: -46.5,12.5 + parent: 30 + type: Transform +- uid: 5999 + type: WallAlmayer + components: + - pos: -46.5,11.5 + parent: 30 + type: Transform +- uid: 6000 + type: WallAlmayer + components: + - pos: -38.5,11.5 + parent: 30 + type: Transform +- uid: 6001 + type: WallAlmayer + components: + - pos: -39.5,11.5 + parent: 30 + type: Transform +- uid: 6002 + type: WallAlmayer + components: + - pos: -40.5,11.5 + parent: 30 + type: Transform +- uid: 6003 + type: WallAlmayer + components: + - pos: -41.5,11.5 + parent: 30 + type: Transform +- uid: 6004 + type: Autolathe + components: + - pos: -32.5,10.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + type: Lathe + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 6005 + type: WallAlmayer + components: + - pos: -44.5,8.5 + parent: 30 + type: Transform +- uid: 6006 + type: WallAlmayer + components: + - pos: -44.5,10.5 + parent: 30 + type: Transform +- uid: 6007 + type: WallAlmayer + components: + - pos: -44.5,11.5 + parent: 30 + type: Transform +- uid: 6008 + type: WallAlmayer + components: + - pos: -42.5,11.5 + parent: 30 + type: Transform +- uid: 6009 + type: WallAlmayer + components: + - pos: -44.5,7.5 + parent: 30 + type: Transform +- uid: 6010 + type: WindowAlmayer + components: + - pos: -41.5,7.5 + parent: 30 + type: Transform +- uid: 6011 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -32.5,9.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6012 + type: FirelockGlass + components: + - pos: -49.5,4.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 6013 + type: WallAlmayer + components: + - pos: -37.5,-8.5 + parent: 30 + type: Transform +- uid: 6014 + type: WallAlmayer + components: + - pos: -43.5,7.5 + parent: 30 + type: Transform +- uid: 6015 + type: WallAlmayer + components: + - pos: -42.5,7.5 + parent: 30 + type: Transform +- uid: 6016 + type: WeldingFuelTankFull + components: + - pos: -14.5,23.5 + parent: 30 + type: Transform +- uid: 6017 + type: WallAlmayer + components: + - pos: -46.5,10.5 + parent: 30 + type: Transform +- uid: 6018 + type: WallAlmayer + components: + - pos: -47.5,10.5 + parent: 30 + type: Transform +- uid: 6019 + type: WallAlmayer + components: + - pos: -47.5,9.5 + parent: 30 + type: Transform +- uid: 6020 + type: WallAlmayer + components: + - pos: -47.5,8.5 + parent: 30 + type: Transform +- uid: 6021 + type: WallAlmayer + components: + - pos: -47.5,7.5 + parent: 30 + type: Transform +- uid: 6022 + type: WallAlmayer + components: + - pos: -48.5,6.5 + parent: 30 + type: Transform +- uid: 6023 + type: WallAlmayer + components: + - pos: -47.5,6.5 + parent: 30 + type: Transform +- uid: 6024 + type: WallAlmayer + components: + - pos: -49.5,6.5 + parent: 30 + type: Transform +- uid: 6025 + type: WallAlmayer + components: + - pos: -50.5,6.5 + parent: 30 + type: Transform +- uid: 6026 + type: WallAlmayer + components: + - pos: -50.5,5.5 + parent: 30 + type: Transform +- uid: 6027 + type: WallAlmayer + components: + - pos: -50.5,4.5 + parent: 30 + type: Transform +- uid: 6028 + type: WallAlmayer + components: + - pos: -48.5,4.5 + parent: 30 + type: Transform +- uid: 6029 + type: WallAlmayer + components: + - pos: -38.5,-8.5 + parent: 30 + type: Transform +- uid: 6030 + type: GasPassiveVent + components: + - rot: 1.5707963267948966 rad + pos: -45.5,3.5 + parent: 30 + type: Transform +- uid: 6031 + type: GasPassiveVent + components: + - rot: 1.5707963267948966 rad + pos: -45.5,1.5 + parent: 30 + type: Transform +- uid: 6034 + type: AirlockGlassAlpha + components: + - pos: -44.5,5.5 + parent: 30 + type: Transform +- uid: 6035 + type: WallAlmayer + components: + - pos: -44.5,6.5 + parent: 30 + type: Transform +- uid: 6036 + type: WallAlmayer + components: + - pos: -38.5,-9.5 + parent: 30 + type: Transform +- uid: 6037 + type: WallAlmayer + components: + - pos: -35.5,-17.5 + parent: 30 + type: Transform +- uid: 6038 + type: WallAlmayer + components: + - pos: -35.5,-15.5 + parent: 30 + type: Transform +- uid: 6039 + type: WallAlmayer + components: + - pos: -37.5,-15.5 + parent: 30 + type: Transform +- uid: 6040 + type: WallAlmayer + components: + - pos: -37.5,-17.5 + parent: 30 + type: Transform +- uid: 6041 + type: WallAlmayer + components: + - pos: -38.5,-17.5 + parent: 30 + type: Transform +- uid: 6042 + type: WallAlmayer + components: + - pos: -38.5,-16.5 + parent: 30 + type: Transform +- uid: 6043 + type: WallAlmayer + components: + - pos: -38.5,-15.5 + parent: 30 + type: Transform +- uid: 6044 + type: WallAlmayer + components: + - pos: -39.5,-9.5 + parent: 30 + type: Transform +- uid: 6045 + type: WallAlmayer + components: + - pos: -40.5,-9.5 + parent: 30 + type: Transform +- uid: 6046 + type: WallAlmayer + components: + - pos: -35.5,-6.5 + parent: 30 + type: Transform +- uid: 6047 + type: WallAlmayer + components: + - pos: -36.5,-6.5 + parent: 30 + type: Transform +- uid: 6048 + type: WallAlmayer + components: + - pos: -37.5,-6.5 + parent: 30 + type: Transform +- uid: 6049 + type: WallAlmayer + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-6.5 + parent: 30 + type: Transform +- uid: 6050 + type: WindowAlmayer + components: + - pos: -38.5,-14.5 + parent: 30 + type: Transform +- uid: 6051 + type: WindowAlmayer + components: + - pos: -38.5,-10.5 + parent: 30 + type: Transform +- uid: 6052 + type: WindowAlmayer + components: + - pos: -38.5,-11.5 + parent: 30 + type: Transform +- uid: 6053 + type: WallAlmayer + components: + - pos: -41.5,-9.5 + parent: 30 + type: Transform +- uid: 6054 + type: WallAlmayer + components: + - pos: -42.5,-9.5 + parent: 30 + type: Transform +- uid: 6055 + type: WallAlmayer + components: + - pos: -43.5,-9.5 + parent: 30 + type: Transform +- uid: 6056 + type: WallAlmayer + components: + - pos: -44.5,-9.5 + parent: 30 + type: Transform +- uid: 6057 + type: AirlockGlassAlpha + components: + - pos: -36.5,-15.5 + parent: 30 + type: Transform +- uid: 6058 + type: AirlockGlassAlpha + components: + - pos: -36.5,-17.5 + parent: 30 + type: Transform +- uid: 6059 + type: WallAlmayer + components: + - pos: -45.5,-9.5 + parent: 30 + type: Transform +- uid: 6060 + type: WallAlmayer + components: + - pos: -45.5,-15.5 + parent: 30 + type: Transform +- uid: 6061 + type: WallAlmayer + components: + - pos: -45.5,-14.5 + parent: 30 + type: Transform +- uid: 6062 + type: WallAlmayer + components: + - pos: -45.5,-13.5 + parent: 30 + type: Transform +- uid: 6063 + type: WallAlmayer + components: + - pos: -45.5,-12.5 + parent: 30 + type: Transform +- uid: 6064 + type: WallAlmayer + components: + - pos: -45.5,-11.5 + parent: 30 + type: Transform +- uid: 6065 + type: WallAlmayer + components: + - pos: -45.5,-10.5 + parent: 30 + type: Transform +- uid: 6066 + type: WallAlmayer + components: + - pos: -44.5,-15.5 + parent: 30 + type: Transform +- uid: 6067 + type: WallAlmayer + components: + - pos: -44.5,-16.5 + parent: 30 + type: Transform +- uid: 6068 + type: BlastDoor + components: + - pos: -43.5,-16.5 + parent: 30 + type: Transform + - inputs: + Open: + - port: Left + uid: 6367 + - port: Right + uid: 6367 + Close: + - port: Middle + uid: 6367 + Toggle: [] + type: SignalReceiver +- uid: 6069 + type: BlastDoor + components: + - pos: -42.5,-16.5 + parent: 30 + type: Transform + - inputs: + Open: + - port: Left + uid: 6367 + - port: Right + uid: 6367 + Close: + - port: Middle + uid: 6367 + Toggle: [] + type: SignalReceiver +- uid: 6070 + type: BlastDoor + components: + - pos: -41.5,-16.5 + parent: 30 + type: Transform + - inputs: + Open: + - port: Left + uid: 6367 + - port: Right + uid: 6367 + Close: + - port: Middle + uid: 6367 + Toggle: [] + type: SignalReceiver +- uid: 6071 + type: BlastDoor + components: + - pos: -40.5,-16.5 + parent: 30 + type: Transform + - inputs: + Open: + - port: Left + uid: 6367 + - port: Right + uid: 6367 + Close: + - port: Middle + uid: 6367 + Toggle: [] + type: SignalReceiver +- uid: 6072 + type: BlastDoor + components: + - pos: -39.5,-16.5 + parent: 30 + type: Transform + - inputs: + Open: + - port: Left + uid: 6367 + - port: Right + uid: 6367 + Close: + - port: Middle + uid: 6367 + Toggle: [] + type: SignalReceiver +- uid: 6073 + type: VendingMachineSnack + components: + - pos: -5.5,11.5 + parent: 30 + type: Transform +- uid: 6074 + type: AirlockGlassAlpha + components: + - pos: -13.5,2.5 + parent: 30 + type: Transform +- uid: 6075 + type: WallAlmayer + components: + - pos: -46.5,-9.5 + parent: 30 + type: Transform +- uid: 6076 + type: WallAlmayer + components: + - pos: -46.5,-8.5 + parent: 30 + type: Transform +- uid: 6077 + type: WallAlmayer + components: + - pos: -46.5,-7.5 + parent: 30 + type: Transform +- uid: 6078 + type: WallAlmayer + components: + - pos: -46.5,-6.5 + parent: 30 + type: Transform +- uid: 6079 + type: WallAlmayer + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-3.5 + parent: 30 + type: Transform +- uid: 6080 + type: WindowAlmayer + components: + - pos: -42.5,-6.5 + parent: 30 + type: Transform +- uid: 6081 + type: WindowAlmayer + components: + - pos: -40.5,-6.5 + parent: 30 + type: Transform +- uid: 6082 + type: WindowAlmayer + components: + - pos: -41.5,-6.5 + parent: 30 + type: Transform +- uid: 6083 + type: WindowAlmayer + components: + - pos: -44.5,-4.5 + parent: 30 + type: Transform +- uid: 6084 + type: WallAlmayer + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-5.5 + parent: 30 + type: Transform +- uid: 6085 + type: WallAlmayer + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-6.5 + parent: 30 + type: Transform +- uid: 6086 + type: WallAlmayer + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-6.5 + parent: 30 + type: Transform +- uid: 6087 + type: WallAlmayer + components: + - pos: -44.5,-2.5 + parent: 30 + type: Transform +- uid: 6088 + type: WallAlmayer + components: + - pos: -43.5,-2.5 + parent: 30 + type: Transform +- uid: 6089 + type: WallAlmayer + components: + - pos: -42.5,-2.5 + parent: 30 + type: Transform +- uid: 6090 + type: WallAlmayer + components: + - pos: -41.5,-2.5 + parent: 30 + type: Transform +- uid: 6091 + type: WallAlmayer + components: + - pos: -40.5,-2.5 + parent: 30 + type: Transform +- uid: 6092 + type: WallAlmayer + components: + - pos: -39.5,-2.5 + parent: 30 + type: Transform +- uid: 6093 + type: WallAlmayer + components: + - pos: -38.5,-2.5 + parent: 30 + type: Transform +- uid: 6094 + type: WallAlmayer + components: + - pos: -37.5,-2.5 + parent: 30 + type: Transform +- uid: 6095 + type: WallAlmayer + components: + - pos: -36.5,-2.5 + parent: 30 + type: Transform +- uid: 6096 + type: WallAlmayer + components: + - pos: -36.5,-3.5 + parent: 30 + type: Transform +- uid: 6097 + type: WallAlmayer + components: + - pos: -36.5,-4.5 + parent: 30 + type: Transform +- uid: 6098 + type: WallAlmayer + components: + - pos: -36.5,-5.5 + parent: 30 + type: Transform +- uid: 6099 + type: WallAlmayer + components: + - pos: -46.5,-5.5 + parent: 30 + type: Transform +- uid: 6100 + type: WallAlmayer + components: + - pos: -47.5,-5.5 + parent: 30 + type: Transform +- uid: 6101 + type: WallAlmayer + components: + - pos: -47.5,-4.5 + parent: 30 + type: Transform +- uid: 6102 + type: WallAlmayer + components: + - pos: -47.5,-3.5 + parent: 30 + type: Transform +- uid: 6103 + type: WallAlmayer + components: + - pos: -47.5,-2.5 + parent: 30 + type: Transform +- uid: 6104 + type: WallAlmayer + components: + - pos: -47.5,-1.5 + parent: 30 + type: Transform +- uid: 6105 + type: WallAlmayer + components: + - pos: -48.5,-1.5 + parent: 30 + type: Transform +- uid: 6106 + type: WallAlmayer + components: + - pos: -49.5,-1.5 + parent: 30 + type: Transform +- uid: 6107 + type: WallAlmayer + components: + - pos: -50.5,-1.5 + parent: 30 + type: Transform +- uid: 6108 + type: WallAlmayer + components: + - pos: -50.5,-0.5 + parent: 30 + type: Transform +- uid: 6109 + type: WallAlmayer + components: + - pos: -44.5,-1.5 + parent: 30 + type: Transform +- uid: 6110 + type: AirlockGlassAlpha + components: + - pos: -44.5,-0.5 + parent: 30 + type: Transform +- uid: 6111 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -45.5,2.5 + parent: 30 + type: Transform +- uid: 6112 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -46.5,2.5 + parent: 30 + type: Transform +- uid: 6113 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -43.5,4.5 + parent: 30 + type: Transform +- uid: 6114 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -44.5,4.5 + parent: 30 + type: Transform +- uid: 6115 + type: WallAlmayer + components: + - pos: -48.5,0.5 + parent: 30 + type: Transform +- uid: 6116 + type: WallAlmayer + components: + - pos: -16.5,4.5 + parent: 30 + type: Transform +- uid: 6117 + type: WallAlmayer + components: + - pos: -50.5,0.5 + parent: 30 + type: Transform +- uid: 6118 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -36.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6119 + type: WindoorSecureSalvageLocked + components: + - rot: -1.5707963267948966 rad + pos: -38.5,16.5 + parent: 30 + type: Transform +- uid: 6120 + type: WindoorSecureSalvageLocked + components: + - rot: 3.141592653589793 rad + pos: -41.5,16.5 + parent: 30 + type: Transform +- uid: 6121 + type: GasVentPump + components: + - pos: -38.5,5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6122 + type: AirlockGlassAlpha + components: + - pos: -33.5,-10.5 + parent: 30 + type: Transform +- uid: 6123 + type: AirlockGlassAlpha + components: + - pos: -38.5,-13.5 + parent: 30 + type: Transform +- uid: 6124 + type: AirlockGlassAlpha + components: + - pos: -38.5,-12.5 + parent: 30 + type: Transform +- uid: 6125 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: -38.5,19.5 + parent: 30 + type: Transform +- uid: 6126 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: -38.5,18.5 + parent: 30 + type: Transform +- uid: 6127 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: -38.5,17.5 + parent: 30 + type: Transform +- uid: 6128 + type: WindowReinforcedDirectional + components: + - rot: 3.141592653589793 rad + pos: -44.5,16.5 + parent: 30 + type: Transform +- uid: 6129 + type: WindowReinforcedDirectional + components: + - rot: 3.141592653589793 rad + pos: -43.5,16.5 + parent: 30 + type: Transform +- uid: 6130 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -20.5,7.5 + parent: 30 + type: Transform +- uid: 6131 + type: VendingBarDrobe + components: + - pos: -19.5,4.5 + parent: 30 + type: Transform +- uid: 6132 + type: WindowReinforcedDirectional + components: + - rot: 3.141592653589793 rad + pos: -40.5,16.5 + parent: 30 + type: Transform +- uid: 6133 + type: WindowReinforcedDirectional + components: + - rot: 3.141592653589793 rad + pos: -39.5,16.5 + parent: 30 + type: Transform +- uid: 6134 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -16.5,6.5 + parent: 30 + type: Transform +- uid: 6135 + type: CableHV + components: + - pos: -31.5,21.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6136 + type: APCBasic + components: + - pos: -30.5,18.5 + parent: 30 + type: Transform +- uid: 6137 + type: CableMV + components: + - pos: -31.5,20.5 + parent: 30 + type: Transform +- uid: 6138 + type: CableMV + components: + - pos: -31.5,19.5 + parent: 30 + type: Transform +- uid: 6139 + type: CableMV + components: + - pos: -31.5,18.5 + parent: 30 + type: Transform +- uid: 6140 + type: CableMV + components: + - pos: -32.5,18.5 + parent: 30 + type: Transform +- uid: 6141 + type: CableMV + components: + - pos: -33.5,18.5 + parent: 30 + type: Transform +- uid: 6142 + type: CableMV + components: + - pos: -34.5,18.5 + parent: 30 + type: Transform +- uid: 6143 + type: CableApcExtension + components: + - pos: -34.5,18.5 + parent: 30 + type: Transform +- uid: 6144 + type: CableApcExtension + components: + - pos: -33.5,18.5 + parent: 30 + type: Transform +- uid: 6145 + type: CableApcExtension + components: + - pos: -32.5,18.5 + parent: 30 + type: Transform +- uid: 6146 + type: CableApcExtension + components: + - pos: -32.5,19.5 + parent: 30 + type: Transform +- uid: 6147 + type: CableApcExtension + components: + - pos: -32.5,20.5 + parent: 30 + type: Transform +- uid: 6148 + type: CableApcExtension + components: + - pos: -33.5,20.5 + parent: 30 + type: Transform +- uid: 6149 + type: CableApcExtension + components: + - pos: -34.5,20.5 + parent: 30 + type: Transform +- uid: 6150 + type: WallAlmayer + components: + - pos: -43.5,11.5 + parent: 30 + type: Transform +- uid: 6151 + type: TableCarpet + components: + - pos: -19.5,7.5 + parent: 30 + type: Transform +- uid: 6152 + type: CableHV + components: + - pos: -32.5,17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6153 + type: CableHV + components: + - pos: -31.5,17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6154 + type: CableHV + components: + - pos: -31.5,18.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6155 + type: CableHV + components: + - pos: -31.5,19.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6156 + type: CableHV + components: + - pos: -31.5,20.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6157 + type: CableHV + components: + - pos: -32.5,16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6158 + type: CableHV + components: + - pos: -32.5,15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6159 + type: LockerBoozeFilled + components: + - pos: -18.5,0.5 + parent: 30 + type: Transform + - containers: + entity_storage: !type:Container + ents: + - 7062 + type: ContainerContainer +- uid: 6160 + type: WindowAlmayer + components: + - pos: -34.5,15.5 + parent: 30 + type: Transform +- uid: 6161 + type: Table + components: + - pos: -34.5,16.5 + parent: 30 + type: Transform +- uid: 6162 + type: AirlockGlassAlpha + components: + - pos: -37.5,13.5 + parent: 30 + type: Transform +- uid: 6163 + type: FirelockGlass + components: + - pos: -22.5,-3.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 6164 + type: SpawnPointStationEngineer + components: + - pos: -35.5,10.5 + parent: 30 + type: Transform +- uid: 6165 + type: CableMV + components: + - pos: -30.5,18.5 + parent: 30 + type: Transform +- uid: 6166 + type: CableApcExtension + components: + - pos: -34.5,13.5 + parent: 30 + type: Transform +- uid: 6167 + type: Grille + components: + - pos: -36.5,14.5 + parent: 30 + type: Transform +- uid: 6168 + type: Grille + components: + - pos: -35.5,14.5 + parent: 30 + type: Transform +- uid: 6169 + type: Thruster + components: + - rot: 1.5707963267948966 rad + pos: -47.5,11.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 6170 + type: Thruster + components: + - rot: 1.5707963267948966 rad + pos: -47.5,12.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 6171 + type: Thruster + components: + - rot: 1.5707963267948966 rad + pos: -47.5,13.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 6172 + type: FirelockGlass + components: + - pos: -44.5,-0.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 6173 + type: FirelockGlass + components: + - pos: -19.5,-21.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 6174 + type: FirelockGlass + components: + - pos: -25.5,-21.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 6175 + type: Thruster + components: + - rot: 1.5707963267948966 rad + pos: -46.5,16.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 6176 + type: Thruster + components: + - rot: 1.5707963267948966 rad + pos: -46.5,17.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 6177 + type: Thruster + components: + - rot: 1.5707963267948966 rad + pos: -46.5,18.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 6178 + type: InflatableWallStack + components: + - pos: -37.496536,-10.4613495 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 6179 + type: FirelockGlass + components: + - pos: -44.5,5.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 6180 + type: VendingMachineSovietSoda + components: + - pos: -44.5,13.5 + parent: 30 + type: Transform +- uid: 6181 + type: Thruster + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-6.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 6182 + type: Thruster + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-7.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 6183 + type: Thruster + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-8.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 6184 + type: Thruster + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-11.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 6185 + type: Thruster + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-12.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 6186 + type: Thruster + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-13.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 6187 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-6.5 + parent: 30 + type: Transform +- uid: 6188 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 30 + type: Transform +- uid: 6189 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-6.5 + parent: 30 + type: Transform +- uid: 6190 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-14.5 + parent: 30 + type: Transform +- uid: 6191 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-11.5 + parent: 30 + type: Transform +- uid: 6192 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-10.5 + parent: 30 + type: Transform +- uid: 6193 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-11.5 + parent: 30 + type: Transform +- uid: 6194 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-9.5 + parent: 30 + type: Transform +- uid: 6195 + type: Grille + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 30 + type: Transform +- uid: 6196 + type: LockerEngineerFilled + components: + - pos: -35.5,11.5 + parent: 30 + type: Transform +- uid: 6197 + type: WallAlmayer + components: + - pos: -32.5,12.5 + parent: 30 + type: Transform +- uid: 6198 + type: UniformPrinter + components: + - pos: 27.5,1.5 + parent: 30 + type: Transform + - materialWhiteList: + - Cloth + - Durathread + type: Lathe + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 6199 + type: ComfyChair + components: + - pos: -39.5,8.5 + parent: 30 + type: Transform +- uid: 6200 + type: MaterialDurathread + components: + - pos: 30.482595,-2.5732226 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 6201 + type: MaterialCloth + components: + - pos: 30.43572,-1.9482226 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 6202 + type: SubstationBasic + components: + - pos: 36.5,-1.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 6203 + type: RandomPosterLegit + components: + - pos: -28.5,-10.5 + parent: 30 + type: Transform +- uid: 6204 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -29.5,-10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6205 + type: Rack + components: + - pos: -36.5,-9.5 + parent: 30 + type: Transform +- uid: 6206 + type: Rack + components: + - pos: -35.5,-9.5 + parent: 30 + type: Transform +- uid: 6207 + type: Table + components: + - pos: -37.5,-11.5 + parent: 30 + type: Transform +- uid: 6208 + type: Table + components: + - pos: -37.5,-10.5 + parent: 30 + type: Transform +- uid: 6209 + type: Table + components: + - pos: -37.5,-9.5 + parent: 30 + type: Transform +- uid: 6210 + type: Table + components: + - pos: -37.5,-14.5 + parent: 30 + type: Transform +- uid: 6211 + type: WeldingFuelTankFull + components: + - pos: -34.5,-14.5 + parent: 30 + type: Transform +- uid: 6212 + type: Catwalk + components: + - pos: -36.5,-16.5 + parent: 30 + type: Transform +- uid: 6213 + type: ClosetEmergencyFilledRandom + components: + - pos: -37.5,-16.5 + parent: 30 + type: Transform +- uid: 6214 + type: OxygenCanister + components: + - pos: -35.5,-16.5 + parent: 30 + type: Transform +- uid: 6215 + type: WallAlmayer + components: + - pos: -28.5,-9.5 + parent: 30 + type: Transform +- uid: 6216 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -29.5,-8.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6217 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6218 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6219 + type: GasPipeFourway + components: + - pos: -32.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6220 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6221 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6222 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6223 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6224 + type: SpawnPointStationEngineer + components: + - pos: -34.5,10.5 + parent: 30 + type: Transform +- uid: 6225 + type: GasPipeStraight + components: + - pos: -28.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6226 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6227 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6228 + type: GasPipeFourway + components: + - pos: -36.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6229 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6230 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6231 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6232 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-11.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6233 + type: GasVentPump + components: + - pos: -36.5,-10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6234 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: -36.5,-16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6235 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -36.5,-15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6236 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -36.5,-14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6237 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -36.5,-13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6238 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -36.5,-12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6239 + type: PosterContrabandHighEffectEngineering + components: + - pos: -37.5,7.5 + parent: 30 + type: Transform +- uid: 6240 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -32.5,-12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6241 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -32.5,-13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6242 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: -32.5,-14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6243 + type: GasVentPump + components: + - pos: -32.5,-10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6244 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6245 + type: GasPipeTJunction + components: + - pos: -32.5,-7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6246 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6247 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6248 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6249 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -32.5,-8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6250 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6251 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6252 + type: GasPipeStraight + components: + - pos: -34.5,-10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6253 + type: GasPipeStraight + components: + - pos: -34.5,-11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6254 + type: GasPipeStraight + components: + - pos: -34.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6255 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6256 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -35.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6257 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6258 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6259 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6260 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6261 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6262 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6263 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -42.5,-13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6264 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -42.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6265 + type: GasVentScrubber + components: + - pos: -42.5,-11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6266 + type: GasVentScrubber + components: + - pos: -35.5,-12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6267 + type: GasVentScrubber + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6268 + type: DisposalUnit + components: + - pos: -34.5,-9.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 6269 + type: DisposalTrunk + components: + - pos: -34.5,-9.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 6270 + type: DisposalBend + components: + - rot: 3.141592653589793 rad + pos: -34.5,-10.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 6271 + type: DisposalBend + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-10.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 6272 + type: DisposalBend + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-7.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 6273 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 6274 + type: DisposalPipe + components: + - pos: -32.5,-9.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 6275 + type: DisposalPipe + components: + - pos: -32.5,-8.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 6276 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-7.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 6277 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-7.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 6278 + type: DisposalBend + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 6279 + type: DisposalJunction + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 6280 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-7.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 6281 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 6282 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 6283 + type: PoweredlightLED + components: + - pos: -39.5,-10.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6284 + type: PoweredlightLED + components: + - pos: -43.5,-10.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6285 + type: Poweredlight + components: + - pos: -37.5,-9.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6286 + type: Poweredlight + components: + - pos: -34.5,-9.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6287 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: -34.5,-14.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6288 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: -37.5,-14.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6289 + type: PoweredSmallLight + components: + - pos: -35.5,-16.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6290 + type: APCBasic + components: + - pos: -34.5,-8.5 + parent: 30 + type: Transform +- uid: 6291 + type: CableMV + components: + - pos: -32.5,-16.5 + parent: 30 + type: Transform +- uid: 6292 + type: CableMV + components: + - pos: -32.5,-15.5 + parent: 30 + type: Transform +- uid: 6293 + type: CableMV + components: + - pos: -32.5,-14.5 + parent: 30 + type: Transform +- uid: 6294 + type: CableMV + components: + - pos: -32.5,-13.5 + parent: 30 + type: Transform +- uid: 6295 + type: CableMV + components: + - pos: -32.5,-12.5 + parent: 30 + type: Transform +- uid: 6296 + type: CableMV + components: + - pos: -32.5,-11.5 + parent: 30 + type: Transform +- uid: 6297 + type: CableMV + components: + - pos: -32.5,-10.5 + parent: 30 + type: Transform +- uid: 6298 + type: CableMV + components: + - pos: -33.5,-10.5 + parent: 30 + type: Transform +- uid: 6299 + type: CableMV + components: + - pos: -34.5,-10.5 + parent: 30 + type: Transform +- uid: 6300 + type: CableMV + components: + - pos: -34.5,-9.5 + parent: 30 + type: Transform +- uid: 6301 + type: CableMV + components: + - pos: -34.5,-8.5 + parent: 30 + type: Transform +- uid: 6302 + type: CableApcExtension + components: + - pos: -34.5,-8.5 + parent: 30 + type: Transform +- uid: 6303 + type: CableApcExtension + components: + - pos: -34.5,-9.5 + parent: 30 + type: Transform +- uid: 6304 + type: CableApcExtension + components: + - pos: -34.5,-10.5 + parent: 30 + type: Transform +- uid: 6305 + type: CableApcExtension + components: + - pos: -34.5,-11.5 + parent: 30 + type: Transform +- uid: 6306 + type: CableApcExtension + components: + - pos: -34.5,-12.5 + parent: 30 + type: Transform +- uid: 6307 + type: CableApcExtension + components: + - pos: -34.5,-13.5 + parent: 30 + type: Transform +- uid: 6308 + type: CableApcExtension + components: + - pos: -35.5,-13.5 + parent: 30 + type: Transform +- uid: 6309 + type: CableApcExtension + components: + - pos: -36.5,-13.5 + parent: 30 + type: Transform +- uid: 6310 + type: CableApcExtension + components: + - pos: -36.5,-14.5 + parent: 30 + type: Transform +- uid: 6311 + type: CableApcExtension + components: + - pos: -36.5,-15.5 + parent: 30 + type: Transform +- uid: 6312 + type: CableApcExtension + components: + - pos: -36.5,-16.5 + parent: 30 + type: Transform +- uid: 6313 + type: CableApcExtension + components: + - pos: -36.5,-17.5 + parent: 30 + type: Transform +- uid: 6314 + type: CableApcExtension + components: + - pos: -37.5,-13.5 + parent: 30 + type: Transform +- uid: 6315 + type: CableApcExtension + components: + - pos: -38.5,-13.5 + parent: 30 + type: Transform +- uid: 6316 + type: CableApcExtension + components: + - pos: -39.5,-13.5 + parent: 30 + type: Transform +- uid: 6317 + type: CableApcExtension + components: + - pos: -40.5,-13.5 + parent: 30 + type: Transform +- uid: 6318 + type: CableApcExtension + components: + - pos: -41.5,-13.5 + parent: 30 + type: Transform +- uid: 6319 + type: CableApcExtension + components: + - pos: -42.5,-13.5 + parent: 30 + type: Transform +- uid: 6320 + type: CableApcExtension + components: + - pos: -43.5,-13.5 + parent: 30 + type: Transform +- uid: 6321 + type: CableApcExtension + components: + - pos: -44.5,-13.5 + parent: 30 + type: Transform +- uid: 6322 + type: CableApcExtension + components: + - pos: -43.5,-14.5 + parent: 30 + type: Transform +- uid: 6323 + type: CableApcExtension + components: + - pos: -43.5,-15.5 + parent: 30 + type: Transform +- uid: 6324 + type: CableApcExtension + components: + - pos: -40.5,-14.5 + parent: 30 + type: Transform +- uid: 6325 + type: CableApcExtension + components: + - pos: -40.5,-15.5 + parent: 30 + type: Transform +- uid: 6326 + type: CableApcExtension + components: + - pos: -39.5,-12.5 + parent: 30 + type: Transform +- uid: 6327 + type: CableApcExtension + components: + - pos: -39.5,-11.5 + parent: 30 + type: Transform +- uid: 6328 + type: CableApcExtension + components: + - pos: -42.5,-12.5 + parent: 30 + type: Transform +- uid: 6329 + type: CableApcExtension + components: + - pos: -42.5,-10.5 + parent: 30 + type: Transform +- uid: 6330 + type: CableApcExtension + components: + - pos: -42.5,-11.5 + parent: 30 + type: Transform +- uid: 6331 + type: CableApcExtension + components: + - pos: -44.5,-12.5 + parent: 30 + type: Transform +- uid: 6332 + type: CableApcExtension + components: + - pos: -44.5,-11.5 + parent: 30 + type: Transform +- uid: 6333 + type: CableApcExtension + components: + - pos: -44.5,-10.5 + parent: 30 + type: Transform +- uid: 6334 + type: CableApcExtension + components: + - pos: -34.5,-7.5 + parent: 30 + type: Transform +- uid: 6335 + type: CableApcExtension + components: + - pos: -35.5,-7.5 + parent: 30 + type: Transform +- uid: 6336 + type: CableApcExtension + components: + - pos: -36.5,-7.5 + parent: 30 + type: Transform +- uid: 6337 + type: CableApcExtension + components: + - pos: -37.5,-7.5 + parent: 30 + type: Transform +- uid: 6338 + type: CableApcExtension + components: + - pos: -38.5,-7.5 + parent: 30 + type: Transform +- uid: 6339 + type: CableApcExtension + components: + - pos: -39.5,-7.5 + parent: 30 + type: Transform +- uid: 6340 + type: CableApcExtension + components: + - pos: -39.5,-8.5 + parent: 30 + type: Transform +- uid: 6341 + type: CableApcExtension + components: + - pos: -40.5,-8.5 + parent: 30 + type: Transform +- uid: 6342 + type: CableApcExtension + components: + - pos: -41.5,-8.5 + parent: 30 + type: Transform +- uid: 6343 + type: CableApcExtension + components: + - pos: -42.5,-8.5 + parent: 30 + type: Transform +- uid: 6344 + type: CableApcExtension + components: + - pos: -33.5,-7.5 + parent: 30 + type: Transform +- uid: 6345 + type: CableApcExtension + components: + - pos: -32.5,-7.5 + parent: 30 + type: Transform +- uid: 6346 + type: CableApcExtension + components: + - pos: -31.5,-7.5 + parent: 30 + type: Transform +- uid: 6347 + type: CableApcExtension + components: + - pos: -30.5,-7.5 + parent: 30 + type: Transform +- uid: 6348 + type: CableApcExtension + components: + - pos: -29.5,-7.5 + parent: 30 + type: Transform +- uid: 6349 + type: CableApcExtension + components: + - pos: -28.5,-7.5 + parent: 30 + type: Transform +- uid: 6350 + type: CableApcExtension + components: + - pos: -28.5,-6.5 + parent: 30 + type: Transform +- uid: 6351 + type: CableApcExtension + components: + - pos: -28.5,-5.5 + parent: 30 + type: Transform +- uid: 6352 + type: CableApcExtension + components: + - pos: -28.5,-4.5 + parent: 30 + type: Transform +- uid: 6353 + type: CableApcExtension + components: + - pos: -29.5,-4.5 + parent: 30 + type: Transform +- uid: 6354 + type: CableApcExtension + components: + - pos: -29.5,-3.5 + parent: 30 + type: Transform +- uid: 6355 + type: ClothingOuterSuitEmergency + components: + - pos: -36.481194,-9.381878 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + toggleable-clothing: !type:ContainerSlot {} + type: ContainerContainer +- uid: 6356 + type: ClothingOuterSuitEmergency + components: + - pos: -35.49682,-9.335003 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + toggleable-clothing: !type:ContainerSlot {} + type: ContainerContainer +- uid: 6357 + type: OxygenTankFilled + components: + - pos: -36.449944,-9.475628 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 6358 + type: OxygenTankFilled + components: + - pos: -35.512444,-9.460003 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 6359 + type: ClothingMaskBreath + components: + - pos: -36.71557,-9.553753 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 6360 + type: ClothingMaskBreath + components: + - pos: -35.793694,-9.538128 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 6361 + type: FlashlightLantern + components: + - pos: -37.52807,-11.428753 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 6362 + type: FlashlightLantern + components: + - pos: -37.52807,-11.131878 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 6363 + type: Multitool + components: + - pos: -37.48091,-10.011986 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 6364 + type: ClothingBeltUtility + components: + - pos: -37.512444,-9.444378 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 6365 + type: WaterTankFull + components: + - pos: -34.5,-13.5 + parent: 30 + type: Transform +- uid: 6366 + type: ClothingShoesBootsMag + components: + - pos: -37.56227,-14.598135 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 6367 + type: TwoWayLever + components: + - pos: -39.5,-14.5 + parent: 30 + type: Transform + - outputs: + Middle: + - port: Close + uid: 6072 + - port: Close + uid: 6071 + - port: Close + uid: 6070 + - port: Close + uid: 6069 + - port: Close + uid: 6068 + Right: + - port: Open + uid: 6072 + - port: Open + uid: 6071 + - port: Open + uid: 6070 + - port: Open + uid: 6069 + - port: Open + uid: 6068 + Left: + - port: Open + uid: 6072 + - port: Open + uid: 6071 + - port: Open + uid: 6070 + - port: Open + uid: 6069 + - port: Open + uid: 6068 + type: SignalTransmitter +- uid: 6368 + type: Catwalk + components: + - pos: -37.5,21.5 + parent: 30 + type: Transform +- uid: 6369 + type: OxygenCanister + components: + - pos: -36.5,21.5 + parent: 30 + type: Transform +- uid: 6370 + type: GasPipeStraight + components: + - pos: -29.5,12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6371 + type: GasPipeStraight + components: + - pos: -29.5,13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6372 + type: GasPipeStraight + components: + - pos: -29.5,14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6373 + type: GasPipeStraight + components: + - pos: -29.5,15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6374 + type: WallAlmayer + components: + - pos: -37.5,7.5 + parent: 30 + type: Transform +- uid: 6375 + type: WallAlmayer + components: + - pos: -36.5,7.5 + parent: 30 + type: Transform +- uid: 6376 + type: GravityGeneratorMini + components: + - pos: -42.5,9.5 + parent: 30 + type: Transform + - charge: 100 + type: GravityGenerator + - enabled: False + type: AmbientSound + - powerLoad: 500 + type: ApcPowerReceiver + - radius: 175.75 + type: PointLight +- uid: 6377 + type: PowerCellRecharger + components: + - pos: -38.5,8.5 + parent: 30 + type: Transform + - containers: + charger-slot: !type:ContainerSlot {} + type: ContainerContainer +- uid: 6378 + type: CableApcExtension + components: + - pos: -30.5,17.5 + parent: 30 + type: Transform +- uid: 6379 + type: GasPipeBend + components: + - pos: -30.5,14.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6380 + type: GasPipeStraight + components: + - pos: -30.5,13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6381 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -30.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6382 + type: GasPipeFourway + components: + - pos: -31.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6383 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -32.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6384 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -33.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6385 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -34.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6386 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -37.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6387 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -35.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6388 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -36.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6389 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: -37.5,17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6390 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -38.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6391 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -39.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6392 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -40.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6393 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: -41.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6394 + type: GasPipeBend + components: + - pos: -41.5,17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6395 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -42.5,17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6396 + type: GasVentPump + components: + - pos: -42.5,18.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6397 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: -41.5,15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6398 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: -36.5,17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6399 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -37.5,18.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6400 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -37.5,19.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6401 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -37.5,20.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6402 + type: GasVentPump + components: + - pos: -37.5,21.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6403 + type: GasVentPump + components: + - pos: -31.5,17.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6404 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: -31.5,13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6405 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -31.5,14.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6406 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -31.5,15.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6407 + type: GasPipeStraight + components: + - pos: -28.5,11.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6408 + type: GasPipeBend + components: + - pos: -28.5,12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6409 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -29.5,12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6410 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -31.5,14.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6411 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: -32.5,14.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6412 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: -32.5,13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6413 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -30.5,12.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6414 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -33.5,13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6415 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -34.5,13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6416 + type: GasPipeBend + components: + - pos: -32.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6417 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -33.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6418 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -33.5,16.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6419 + type: GasVentScrubber + components: + - pos: -33.5,17.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6420 + type: WallAlmayer + components: + - pos: -31.5,11.5 + parent: 30 + type: Transform +- uid: 6421 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -35.5,13.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6422 + type: Grille + components: + - rot: 3.141592653589793 rad + pos: -19.5,-3.5 + parent: 30 + type: Transform +- uid: 6423 + type: GasPipeBend + components: + - pos: -35.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6424 + type: Stool + components: + - rot: 3.141592653589793 rad + pos: -25.5,4.5 + parent: 30 + type: Transform +- uid: 6425 + type: GasPipeStraight + components: + - pos: -35.5,14.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6426 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -36.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6427 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -37.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6428 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -38.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6429 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -39.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6430 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -40.5,15.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6431 + type: GasPipeStraight + components: + - pos: -40.5,16.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6432 + type: GasPipeStraight + components: + - pos: -40.5,17.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6433 + type: GasVentScrubber + components: + - pos: -40.5,18.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6434 + type: GasVentScrubber + components: + - pos: -38.5,16.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6435 + type: ChairWood + components: + - rot: -1.5707963267948966 rad + pos: -24.5,7.5 + parent: 30 + type: Transform +- uid: 6436 + type: ChairWood + components: + - rot: 3.141592653589793 rad + pos: -25.5,-2.5 + parent: 30 + type: Transform +- uid: 6437 + type: ChairWood + components: + - rot: 3.141592653589793 rad + pos: -25.5,6.5 + parent: 30 + type: Transform +- uid: 6438 + type: ChairWood + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 30 + type: Transform +- uid: 6439 + type: TableWood + components: + - pos: -25.5,7.5 + parent: 30 + type: Transform +- uid: 6440 + type: PianoInstrument + components: + - rot: 3.141592653589793 rad + pos: -25.5,5.5 + parent: 30 + type: Transform +- uid: 6441 + type: ChairWood + components: + - pos: -25.5,-0.5 + parent: 30 + type: Transform +- uid: 6442 + type: Grille + components: + - rot: 3.141592653589793 rad + pos: -20.5,-3.5 + parent: 30 + type: Transform +- uid: 6443 + type: AirlockGlassAlpha + components: + - pos: -35.5,19.5 + parent: 30 + type: Transform +- uid: 6444 + type: TableWood + components: + - pos: -25.5,-1.5 + parent: 30 + type: Transform +- uid: 6445 + type: SignDirectionalEng + components: + - pos: -26.5,8.5 + parent: 30 + type: Transform +- uid: 6446 + type: SignDirectionalSci + components: + - pos: -26.497742,8.283747 + parent: 30 + type: Transform +- uid: 6447 + type: SignDirectionalEng + components: + - rot: 3.141592653589793 rad + pos: -26.5,-3.5 + parent: 30 + type: Transform +- uid: 6448 + type: CableApcExtension + components: + - pos: 1.5,19.5 + parent: 30 + type: Transform +- uid: 6449 + type: CableApcExtension + components: + - pos: 0.5,19.5 + parent: 30 + type: Transform +- uid: 6450 + type: ClothingUnderSocksCoder + components: + - pos: -43.450752,8.473622 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 6451 + type: SignDirectionalSec + components: + - rot: 1.5707963267948966 rad + pos: -26.497742,8.736872 + parent: 30 + type: Transform +- uid: 6452 + type: SignDirectionalMed + components: + - rot: 1.5707963267948966 rad + pos: -26.497742,-3.7221842 + parent: 30 + type: Transform +- uid: 6453 + type: TwoWayLever + components: + - pos: -41.5,18.5 + parent: 30 + type: Transform + - outputs: + Middle: + - port: Close + uid: 5971 + - port: Close + uid: 5972 + - port: Close + uid: 5973 + - port: Close + uid: 5974 + - port: Close + uid: 5975 + Right: + - port: Open + uid: 5971 + - port: Open + uid: 5972 + - port: Open + uid: 5973 + - port: Open + uid: 5974 + - port: Open + uid: 5975 + Left: + - port: Open + uid: 5971 + - port: Open + uid: 5972 + - port: Open + uid: 5973 + - port: Open + uid: 5974 + - port: Open + uid: 5975 + type: SignalTransmitter +- uid: 6454 + type: Grille + components: + - pos: -36.5,20.5 + parent: 30 + type: Transform +- uid: 6455 + type: PoweredSmallLight + components: + - rot: -1.5707963267948966 rad + pos: -36.5,21.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6456 + type: PoweredlightLED + components: + - rot: 1.5707963267948966 rad + pos: -44.5,18.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6457 + type: WallAlmayer + components: + - pos: -21.5,-3.5 + parent: 30 + type: Transform +- uid: 6458 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -44.5,15.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6459 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: -39.5,15.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6460 + type: Grille + components: + - pos: -19.5,12.5 + parent: 30 + type: Transform +- uid: 6461 + type: Poweredlight + components: + - pos: -32.5,21.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6462 + type: Poweredlight + components: + - pos: -34.5,13.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6463 + type: GasPipeBend + components: + - pos: -29.5,16.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6464 + type: WallAlmayer + components: + - pos: 4.5,6.5 + parent: 30 + type: Transform +- uid: 6465 + type: WallAlmayer + components: + - pos: -26.5,-3.5 + parent: 30 + type: Transform +- uid: 6466 + type: Grille + components: + - pos: 6.5,4.5 + parent: 30 + type: Transform +- uid: 6467 + type: Poweredlight + components: + - pos: -24.5,11.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6468 + type: Poweredlight + components: + - pos: -14.5,11.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6469 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -23.5,18.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6470 + type: WallAlmayer + components: + - pos: -30.5,18.5 + parent: 30 + type: Transform +- uid: 6471 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-2.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6472 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -29.5,7.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6473 + type: WallAlmayer + components: + - pos: -38.5,7.5 + parent: 30 + type: Transform +- uid: 6474 + type: CableApcExtension + components: + - pos: -33.5,17.5 + parent: 30 + type: Transform +- uid: 6475 + type: CableApcExtension + components: + - pos: -33.5,15.5 + parent: 30 + type: Transform +- uid: 6476 + type: CableApcExtension + components: + - pos: -33.5,16.5 + parent: 30 + type: Transform +- uid: 6477 + type: CableApcExtension + components: + - pos: -32.5,15.5 + parent: 30 + type: Transform +- uid: 6478 + type: CableApcExtension + components: + - pos: -32.5,14.5 + parent: 30 + type: Transform +- uid: 6479 + type: CableApcExtension + components: + - pos: -32.5,16.5 + parent: 30 + type: Transform +- uid: 6480 + type: CableApcExtension + components: + - pos: -31.5,16.5 + parent: 30 + type: Transform +- uid: 6481 + type: CableApcExtension + components: + - pos: -30.5,16.5 + parent: 30 + type: Transform +- uid: 6482 + type: CableApcExtension + components: + - pos: -29.5,16.5 + parent: 30 + type: Transform +- uid: 6483 + type: WindowAlmayer + components: + - pos: -39.5,7.5 + parent: 30 + type: Transform +- uid: 6484 + type: WindowAlmayer + components: + - pos: -29.5,22.5 + parent: 30 + type: Transform +- uid: 6485 + type: VendingMachineAtmosDrobe + components: + - pos: -33.5,6.5 + parent: 30 + type: Transform +- uid: 6486 + type: Grille + components: + - pos: -36.5,22.5 + parent: 30 + type: Transform +- uid: 6487 + type: WallAlmayer + components: + - pos: -30.5,22.5 + parent: 30 + type: Transform +- uid: 6488 + type: CableApcExtension + components: + - pos: 2.5,19.5 + parent: 30 + type: Transform +- uid: 6489 + type: CableApcExtension + components: + - pos: -29.5,15.5 + parent: 30 + type: Transform +- uid: 6490 + type: CableApcExtension + components: + - pos: -29.5,14.5 + parent: 30 + type: Transform +- uid: 6491 + type: CableApcExtension + components: + - pos: -34.5,16.5 + parent: 30 + type: Transform +- uid: 6492 + type: CableApcExtension + components: + - pos: -35.5,16.5 + parent: 30 + type: Transform +- uid: 6493 + type: CableApcExtension + components: + - pos: -36.5,16.5 + parent: 30 + type: Transform +- uid: 6494 + type: CableApcExtension + components: + - pos: -37.5,16.5 + parent: 30 + type: Transform +- uid: 6495 + type: CableApcExtension + components: + - pos: -37.5,17.5 + parent: 30 + type: Transform +- uid: 6496 + type: CableApcExtension + components: + - pos: -37.5,18.5 + parent: 30 + type: Transform +- uid: 6497 + type: CableApcExtension + components: + - pos: -37.5,19.5 + parent: 30 + type: Transform +- uid: 6498 + type: CableApcExtension + components: + - pos: -37.5,20.5 + parent: 30 + type: Transform +- uid: 6499 + type: CableApcExtension + components: + - pos: -37.5,21.5 + parent: 30 + type: Transform +- uid: 6500 + type: CableApcExtension + components: + - pos: -38.5,16.5 + parent: 30 + type: Transform +- uid: 6501 + type: CableApcExtension + components: + - pos: -39.5,16.5 + parent: 30 + type: Transform +- uid: 6502 + type: CableApcExtension + components: + - pos: -40.5,16.5 + parent: 30 + type: Transform +- uid: 6503 + type: CableApcExtension + components: + - pos: -41.5,16.5 + parent: 30 + type: Transform +- uid: 6504 + type: CableApcExtension + components: + - pos: -42.5,16.5 + parent: 30 + type: Transform +- uid: 6505 + type: CableApcExtension + components: + - pos: -43.5,16.5 + parent: 30 + type: Transform +- uid: 6506 + type: CableApcExtension + components: + - pos: -41.5,17.5 + parent: 30 + type: Transform +- uid: 6507 + type: CableApcExtension + components: + - pos: -41.5,18.5 + parent: 30 + type: Transform +- uid: 6508 + type: CableApcExtension + components: + - pos: -41.5,19.5 + parent: 30 + type: Transform +- uid: 6509 + type: CableApcExtension + components: + - pos: -41.5,20.5 + parent: 30 + type: Transform +- uid: 6510 + type: CableApcExtension + components: + - pos: -42.5,19.5 + parent: 30 + type: Transform +- uid: 6511 + type: CableApcExtension + components: + - pos: -43.5,19.5 + parent: 30 + type: Transform +- uid: 6512 + type: CableApcExtension + components: + - pos: -44.5,19.5 + parent: 30 + type: Transform +- uid: 6513 + type: CableApcExtension + components: + - pos: -40.5,19.5 + parent: 30 + type: Transform +- uid: 6514 + type: CableApcExtension + components: + - pos: -39.5,19.5 + parent: 30 + type: Transform +- uid: 6515 + type: CableApcExtension + components: + - pos: -39.5,18.5 + parent: 30 + type: Transform +- uid: 6516 + type: CableApcExtension + components: + - pos: -44.5,18.5 + parent: 30 + type: Transform +- uid: 6517 + type: CableApcExtension + components: + - pos: -23.5,-1.5 + parent: 30 + type: Transform +- uid: 6518 + type: CableApcExtension + components: + - pos: -30.5,18.5 + parent: 30 + type: Transform +- uid: 6519 + type: AirlockGlassAlpha + components: + - pos: -34.5,-7.5 + parent: 30 + type: Transform +- uid: 6520 + type: SignalButton + components: + - pos: 1.5,18.5 + parent: 30 + type: Transform + - fixtures: [] + type: Fixtures + - outputs: + Pressed: + - port: Toggle + uid: 5206 + - port: Toggle + uid: 5270 + type: SignalTransmitter +- uid: 6521 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 10.5,16.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6522 + type: WindoorSecureSalvageLocked + components: + - rot: 3.141592653589793 rad + pos: -42.5,16.5 + parent: 30 + type: Transform +- uid: 6523 + type: AirlockGlassAlpha + components: + - pos: -37.5,9.5 + parent: 30 + type: Transform +- uid: 6524 + type: FirelockEdge + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-13.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 6525 + type: FirelockEdge + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-12.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 6526 + type: LockerChiefEngineerFilled + components: + - pos: -39.5,10.5 + parent: 30 + type: Transform + - containers: + entity_storage: !type:Container + ents: + - 5115 + type: ContainerContainer +- uid: 6527 + type: CableHV + components: + - pos: -30.5,13.5 + parent: 30 + type: Transform +- uid: 6528 + type: WallAlmayer + components: + - pos: -31.5,12.5 + parent: 30 + type: Transform +- uid: 6529 + type: ClosetEmergencyFilledRandom + components: + - pos: -45.5,7.5 + parent: 30 + type: Transform +- uid: 6530 + type: Table + components: + - pos: -45.5,6.5 + parent: 30 + type: Transform +- uid: 6531 + type: Rack + components: + - pos: -45.5,8.5 + parent: 30 + type: Transform +- uid: 6532 + type: MaintenanceFluffSpawner + components: + - pos: -45.5,8.5 + parent: 30 + type: Transform +- uid: 6533 + type: CableHV + components: + - pos: -14.5,20.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6534 + type: CableHV + components: + - pos: -15.5,19.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6535 + type: CableHV + components: + - pos: -15.5,18.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6536 + type: CableHV + components: + - pos: -15.5,17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6537 + type: CableHV + components: + - pos: -15.5,16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6538 + type: CableHV + components: + - pos: -15.5,15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6539 + type: CableHV + components: + - pos: -15.5,14.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6540 + type: CableHV + components: + - pos: -15.5,13.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6541 + type: CableHV + components: + - pos: -15.5,12.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6542 + type: CableHV + components: + - pos: -15.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6543 + type: CableHV + components: + - pos: -16.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6544 + type: CableHV + components: + - pos: -17.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6545 + type: CableHV + components: + - pos: -18.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6546 + type: CableHV + components: + - pos: -19.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6547 + type: CableHV + components: + - pos: -20.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6548 + type: CableHV + components: + - pos: -21.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6549 + type: CableHV + components: + - pos: -22.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6550 + type: CableHV + components: + - pos: -23.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6551 + type: CableHV + components: + - pos: -24.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6552 + type: CableHV + components: + - pos: -25.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6553 + type: CableHV + components: + - pos: -26.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6554 + type: CableHV + components: + - pos: -27.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6555 + type: CableHV + components: + - pos: -28.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6556 + type: CableHV + components: + - pos: -29.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6557 + type: CableHV + components: + - pos: -29.5,12.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6558 + type: CableHV + components: + - pos: -30.5,12.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6559 + type: WallAlmayer + components: + - pos: -26.5,5.5 + parent: 30 + type: Transform +- uid: 6560 + type: WallAlmayer + components: + - pos: -26.5,6.5 + parent: 30 + type: Transform +- uid: 6561 + type: CableHV + components: + - pos: -32.5,13.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6562 + type: CableHV + components: + - pos: -32.5,14.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6563 + type: CableHV + components: + - pos: -32.5,-12.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6564 + type: CableHV + components: + - pos: -32.5,-11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6565 + type: CableHV + components: + - pos: -32.5,-10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6566 + type: CableHV + components: + - pos: -32.5,-9.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6567 + type: CableHV + components: + - pos: -32.5,-8.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6568 + type: CableHV + components: + - pos: -32.5,-7.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6569 + type: CableHV + components: + - pos: -31.5,-7.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6570 + type: CableHV + components: + - pos: -30.5,-7.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6571 + type: CableHV + components: + - pos: -29.5,-7.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6572 + type: CableHV + components: + - pos: -29.5,-6.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6573 + type: CableHV + components: + - pos: -29.5,-5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6574 + type: CableHV + components: + - pos: -29.5,-4.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6575 + type: CableHV + components: + - pos: -29.5,-3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6576 + type: CableHV + components: + - pos: -29.5,-2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6577 + type: CableHV + components: + - pos: -29.5,-1.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6578 + type: CableHV + components: + - pos: -29.5,-0.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6579 + type: CableHV + components: + - pos: -29.5,0.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6580 + type: CableHV + components: + - pos: -29.5,1.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6581 + type: CableHV + components: + - pos: -29.5,2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6582 + type: CableHV + components: + - pos: -29.5,3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6583 + type: CableHV + components: + - pos: -29.5,4.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6584 + type: CableHV + components: + - pos: -29.5,5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6585 + type: CableHV + components: + - pos: -29.5,6.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6586 + type: CableHV + components: + - pos: -29.5,7.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6587 + type: CableHV + components: + - pos: -29.5,8.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6588 + type: CableHV + components: + - pos: -29.5,9.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6589 + type: CableHV + components: + - pos: -29.5,10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6590 + type: CableHV + components: + - pos: -3.5,-15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6591 + type: CableHV + components: + - pos: -3.5,-14.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6592 + type: CableHV + components: + - pos: -3.5,-13.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6593 + type: CableHV + components: + - pos: -3.5,-12.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6594 + type: CableHV + components: + - pos: -3.5,-11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6595 + type: CableHV + components: + - pos: -4.5,-11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6596 + type: CableHV + components: + - pos: -5.5,-11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6597 + type: CableHV + components: + - pos: -6.5,-11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6598 + type: CableHV + components: + - pos: -7.5,-11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6599 + type: CableHV + components: + - pos: -8.5,-11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6600 + type: CableHV + components: + - pos: -8.5,-10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6601 + type: CableHV + components: + - pos: -8.5,-9.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6602 + type: CableHV + components: + - pos: -8.5,-8.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6603 + type: CableHV + components: + - pos: -8.5,-7.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6604 + type: CableHV + components: + - pos: -8.5,-6.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6605 + type: CableHV + components: + - pos: -8.5,-5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6606 + type: CableHV + components: + - pos: -8.5,-4.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6607 + type: CableHV + components: + - pos: -7.5,-4.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6608 + type: CableHV + components: + - pos: -7.5,-3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6609 + type: CableHV + components: + - pos: -7.5,-2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6610 + type: CableHV + components: + - pos: -6.5,-2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6611 + type: CableHV + components: + - pos: -6.5,-1.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6612 + type: CableHV + components: + - pos: -6.5,-0.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6613 + type: CableHV + components: + - pos: -6.5,0.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6614 + type: CableHV + components: + - pos: -6.5,1.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6615 + type: CableHV + components: + - pos: -6.5,2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6616 + type: CableHV + components: + - pos: -6.5,3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6617 + type: CableHV + components: + - pos: -6.5,4.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6618 + type: CableHV + components: + - pos: -6.5,5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6619 + type: CableHV + components: + - pos: -6.5,6.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6620 + type: CableHV + components: + - pos: -6.5,7.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6621 + type: CableHV + components: + - pos: -7.5,7.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6622 + type: CableHV + components: + - pos: -7.5,8.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6623 + type: CableHV + components: + - pos: -7.5,9.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6624 + type: CableHV + components: + - pos: -8.5,9.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6625 + type: CableHV + components: + - pos: -9.5,9.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6626 + type: CableHV + components: + - pos: -9.5,10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6627 + type: CableHV + components: + - pos: -9.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6628 + type: CableHV + components: + - pos: -10.5,11.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6629 + type: CableHV + components: + - pos: -10.5,12.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6630 + type: CableHV + components: + - pos: -10.5,13.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6631 + type: CableHV + components: + - pos: -10.5,14.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6632 + type: CableHV + components: + - pos: -11.5,14.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6633 + type: CableHV + components: + - pos: -12.5,14.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6634 + type: CableHV + components: + - pos: -13.5,14.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6635 + type: CableHV + components: + - pos: -13.5,15.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6636 + type: CableHV + components: + - pos: -13.5,16.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6637 + type: CableHV + components: + - pos: -13.5,17.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6638 + type: CrateFilledSpawner + components: + - pos: 27.5,-9.5 + parent: 30 + type: Transform +- uid: 6639 + type: TablePlasmaGlass + components: + - pos: 0.5,-20.5 + parent: 30 + type: Transform +- uid: 6640 + type: ClosetJanitorFilled + components: + - pos: 28.5,-9.5 + parent: 30 + type: Transform +- uid: 6641 + type: WallAlmayer + components: + - pos: -33.5,7.5 + parent: 30 + type: Transform +- uid: 6642 + type: WallAlmayer + components: + - pos: -34.5,6.5 + parent: 30 + type: Transform +- uid: 6643 + type: Table + components: + - pos: -33.5,-5.5 + parent: 30 + type: Transform +- uid: 6644 + type: WallAlmayer + components: + - pos: -34.5,7.5 + parent: 30 + type: Transform +- uid: 6645 + type: WallAlmayer + components: + - pos: -34.5,-2.5 + parent: 30 + type: Transform +- uid: 6646 + type: WallAlmayer + components: + - pos: -34.5,-1.5 + parent: 30 + type: Transform +- uid: 6654 + type: WallAlmayer + components: + - pos: -33.5,-2.5 + parent: 30 + type: Transform +- uid: 6655 + type: LockerEngineerFilled + components: + - pos: -34.5,11.5 + parent: 30 + type: Transform +- uid: 6656 + type: WallAlmayer + components: + - pos: -40.5,10.5 + parent: 30 + type: Transform +- uid: 6657 + type: CableHV + components: + - pos: -32.5,-5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6658 + type: CableHV + components: + - pos: -33.5,-5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6659 + type: CableHV + components: + - pos: -34.5,-5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6660 + type: GasPipeBend + components: + - pos: -32.5,9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6661 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -32.5,8.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6662 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -32.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6663 + type: WallAlmayer + components: + - pos: -33.5,12.5 + parent: 30 + type: Transform +- uid: 6664 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6672 + type: AirlockGlassAlpha + components: + - pos: -30.5,2.5 + parent: 30 + type: Transform +- uid: 6673 + type: CableTerminal + components: + - pos: -35.5,-4.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6674 + type: WallAlmayer + components: + - pos: -30.5,1.5 + parent: 30 + type: Transform +- uid: 6675 + type: WindowAlmayer + components: + - pos: -30.5,-0.5 + parent: 30 + type: Transform +- uid: 6676 + type: Grille + components: + - pos: -7.5,-18.5 + parent: 30 + type: Transform +- uid: 6677 + type: CableTerminal + components: + - pos: -34.5,-4.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6678 + type: CableHV + components: + - pos: -35.5,-5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6679 + type: CableHV + components: + - pos: -35.5,-4.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6680 + type: CableHV + components: + - pos: -35.5,-2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6681 + type: CableHV + components: + - pos: -35.5,-3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6682 + type: CableHV + components: + - pos: -34.5,-4.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6683 + type: CableHV + components: + - pos: -32.5,-4.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6684 + type: CableHV + components: + - pos: -32.5,-3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6685 + type: CableHV + components: + - pos: -32.5,-2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6686 + type: CableHV + components: + - pos: -32.5,-1.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6687 + type: CableHV + components: + - pos: -32.5,0.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6688 + type: CableHV + components: + - pos: -32.5,-0.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6689 + type: CableHV + components: + - pos: -32.5,1.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6690 + type: CableHV + components: + - pos: -32.5,2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6691 + type: CableHV + components: + - pos: -31.5,2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6692 + type: CableHV + components: + - pos: -30.5,2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6693 + type: CableHV + components: + - pos: -34.5,-6.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6694 + type: CableHV + components: + - pos: -32.5,10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6695 + type: CableApcExtension + components: + - pos: -49.5,0.5 + parent: 30 + type: Transform +- uid: 6696 + type: FoodSnackPopcorn + components: + - pos: -2.501235,12.342747 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 6697 + type: CableHV + components: + - pos: -33.5,-6.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6698 + type: SMESBasic + components: + - pos: -35.5,-5.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 6699 + type: CableHV + components: + - pos: -35.5,-6.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6700 + type: SignElectricalMed + components: + - pos: -33.5,-2.5 + parent: 30 + type: Transform +- uid: 6701 + type: AirlockGlassAlpha + components: + - pos: -32.5,-2.5 + parent: 30 + type: Transform +- uid: 6702 + type: AirlockGlassAlpha + components: + - pos: -35.5,-2.5 + parent: 30 + type: Transform +- uid: 6703 + type: SMESBasic + components: + - pos: -34.5,-5.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 6704 + type: LockerElectricalSuppliesFilled + components: + - pos: -32.5,-5.5 + parent: 30 + type: Transform +- uid: 6705 + type: WindowAlmayer + components: + - pos: -30.5,4.5 + parent: 30 + type: Transform +- uid: 6706 + type: AirlockGlassAlpha + components: + - pos: -32.5,7.5 + parent: 30 + type: Transform +- uid: 6707 + type: SignDirectionalEng + components: + - rot: -1.5707963267948966 rad + pos: 16.5,4.5 + parent: 30 + type: Transform +- uid: 6708 + type: FirelockGlass + components: + - pos: -49.5,0.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 6709 + type: WindowReinforcedDirectional + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-7.5 + parent: 30 + type: Transform +- uid: 6710 + type: CableHV + components: + - pos: -35.5,-1.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6711 + type: CableHV + components: + - pos: -37.5,-0.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6712 + type: LampGold + components: + - pos: -25.709179,-1.1156881 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 6713 + type: BlastDoor + components: + - pos: -48.5,3.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 7020 + type: SignalReceiver +- uid: 6714 + type: WallAlmayer + components: + - pos: -48.5,2.5 + parent: 30 + type: Transform +- uid: 6715 + type: BlastDoor + components: + - pos: -48.5,1.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 7020 + type: SignalReceiver +- uid: 6716 + type: CableApcExtension + components: + - pos: -49.5,5.5 + parent: 30 + type: Transform +- uid: 6717 + type: CableApcExtension + components: + - pos: -35.5,13.5 + parent: 30 + type: Transform +- uid: 6718 + type: CableApcExtension + components: + - pos: -33.5,13.5 + parent: 30 + type: Transform +- uid: 6719 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: -33.5,9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6720 + type: CableApcExtension + components: + - pos: -49.5,4.5 + parent: 30 + type: Transform +- uid: 6721 + type: CableHV + components: + - pos: -32.5,3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6722 + type: CableHV + components: + - pos: -32.5,4.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6723 + type: CableHV + components: + - pos: -32.5,5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6724 + type: CableHV + components: + - pos: -32.5,6.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6725 + type: CableHV + components: + - pos: -32.5,7.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6726 + type: CableHV + components: + - pos: -32.5,8.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6727 + type: Grille + components: + - pos: -30.5,-0.5 + parent: 30 + type: Transform +- uid: 6728 + type: Grille + components: + - pos: -30.5,5.5 + parent: 30 + type: Transform +- uid: 6729 + type: APCBasic + components: + - pos: -43.5,7.5 + parent: 30 + type: Transform +- uid: 6730 + type: APCBasic + components: + - pos: -33.5,7.5 + parent: 30 + type: Transform +- uid: 6731 + type: CableMV + components: + - pos: -33.5,7.5 + parent: 30 + type: Transform +- uid: 6732 + type: CableMV + components: + - pos: -33.5,8.5 + parent: 30 + type: Transform +- uid: 6733 + type: Table + components: + - pos: -30.5,0.5 + parent: 30 + type: Transform +- uid: 6734 + type: Grille + components: + - pos: -30.5,4.5 + parent: 30 + type: Transform +- uid: 6735 + type: SignEngineering + components: + - pos: -30.5,3.5 + parent: 30 + type: Transform +- uid: 6736 + type: CableMV + components: + - pos: -34.5,8.5 + parent: 30 + type: Transform +- uid: 6737 + type: CableMV + components: + - pos: -35.5,8.5 + parent: 30 + type: Transform +- uid: 6738 + type: CableMV + components: + - pos: -35.5,7.5 + parent: 30 + type: Transform +- uid: 6739 + type: CableMV + components: + - pos: -35.5,6.5 + parent: 30 + type: Transform +- uid: 6740 + type: CableMV + components: + - pos: -36.5,6.5 + parent: 30 + type: Transform +- uid: 6741 + type: CableMV + components: + - pos: -37.5,6.5 + parent: 30 + type: Transform +- uid: 6742 + type: CableMV + components: + - pos: -38.5,6.5 + parent: 30 + type: Transform +- uid: 6743 + type: CableMV + components: + - pos: -39.5,6.5 + parent: 30 + type: Transform +- uid: 6744 + type: CableMV + components: + - pos: -40.5,6.5 + parent: 30 + type: Transform +- uid: 6745 + type: CableMV + components: + - pos: -41.5,6.5 + parent: 30 + type: Transform +- uid: 6746 + type: CableMV + components: + - pos: -42.5,6.5 + parent: 30 + type: Transform +- uid: 6747 + type: CableMV + components: + - pos: -43.5,6.5 + parent: 30 + type: Transform +- uid: 6748 + type: CableMV + components: + - pos: -43.5,7.5 + parent: 30 + type: Transform +- uid: 6749 + type: CableApcExtension + components: + - pos: -33.5,7.5 + parent: 30 + type: Transform +- uid: 6750 + type: CableApcExtension + components: + - pos: -33.5,6.5 + parent: 30 + type: Transform +- uid: 6751 + type: CableApcExtension + components: + - pos: -32.5,6.5 + parent: 30 + type: Transform +- uid: 6752 + type: CableApcExtension + components: + - pos: -32.5,5.5 + parent: 30 + type: Transform +- uid: 6753 + type: CableApcExtension + components: + - pos: -32.5,4.5 + parent: 30 + type: Transform +- uid: 6754 + type: CableApcExtension + components: + - pos: -32.5,3.5 + parent: 30 + type: Transform +- uid: 6755 + type: CableApcExtension + components: + - pos: -32.5,2.5 + parent: 30 + type: Transform +- uid: 6756 + type: CableApcExtension + components: + - pos: -32.5,1.5 + parent: 30 + type: Transform +- uid: 6757 + type: CableApcExtension + components: + - pos: -32.5,0.5 + parent: 30 + type: Transform +- uid: 6758 + type: CableApcExtension + components: + - pos: -32.5,-0.5 + parent: 30 + type: Transform +- uid: 6759 + type: CableApcExtension + components: + - pos: -32.5,-1.5 + parent: 30 + type: Transform +- uid: 6760 + type: CableApcExtension + components: + - pos: -32.5,-2.5 + parent: 30 + type: Transform +- uid: 6761 + type: CableApcExtension + components: + - pos: -32.5,-3.5 + parent: 30 + type: Transform +- uid: 6762 + type: CableApcExtension + components: + - pos: -32.5,-4.5 + parent: 30 + type: Transform +- uid: 6763 + type: CableApcExtension + components: + - pos: -33.5,-4.5 + parent: 30 + type: Transform +- uid: 6764 + type: CableApcExtension + components: + - pos: -34.5,-4.5 + parent: 30 + type: Transform +- uid: 6765 + type: CableApcExtension + components: + - pos: -35.5,-4.5 + parent: 30 + type: Transform +- uid: 6766 + type: CableApcExtension + components: + - pos: -35.5,-3.5 + parent: 30 + type: Transform +- uid: 6767 + type: CableApcExtension + components: + - pos: -33.5,-0.5 + parent: 30 + type: Transform +- uid: 6768 + type: CableApcExtension + components: + - pos: -31.5,-0.5 + parent: 30 + type: Transform +- uid: 6769 + type: CableApcExtension + components: + - pos: -33.5,4.5 + parent: 30 + type: Transform +- uid: 6770 + type: CableApcExtension + components: + - pos: -31.5,4.5 + parent: 30 + type: Transform +- uid: 6771 + type: CableApcExtension + components: + - pos: -31.5,2.5 + parent: 30 + type: Transform +- uid: 6772 + type: CableApcExtension + components: + - pos: -30.5,2.5 + parent: 30 + type: Transform +- uid: 6773 + type: CableApcExtension + components: + - pos: -29.5,2.5 + parent: 30 + type: Transform +- uid: 6774 + type: CableApcExtension + components: + - pos: -29.5,1.5 + parent: 30 + type: Transform +- uid: 6775 + type: CableApcExtension + components: + - pos: -29.5,3.5 + parent: 30 + type: Transform +- uid: 6776 + type: CableApcExtension + components: + - pos: -29.5,4.5 + parent: 30 + type: Transform +- uid: 6777 + type: CableApcExtension + components: + - pos: -29.5,5.5 + parent: 30 + type: Transform +- uid: 6778 + type: CableApcExtension + components: + - pos: -29.5,6.5 + parent: 30 + type: Transform +- uid: 6779 + type: CableApcExtension + components: + - pos: -29.5,7.5 + parent: 30 + type: Transform +- uid: 6780 + type: CableApcExtension + components: + - pos: -29.5,8.5 + parent: 30 + type: Transform +- uid: 6781 + type: CableApcExtension + components: + - pos: -29.5,9.5 + parent: 30 + type: Transform +- uid: 6782 + type: CableApcExtension + components: + - pos: -29.5,0.5 + parent: 30 + type: Transform +- uid: 6783 + type: CableApcExtension + components: + - pos: -29.5,-0.5 + parent: 30 + type: Transform +- uid: 6784 + type: CableApcExtension + components: + - pos: -29.5,-1.5 + parent: 30 + type: Transform +- uid: 6785 + type: CableApcExtension + components: + - pos: -28.5,-1.5 + parent: 30 + type: Transform +- uid: 6786 + type: CableApcExtension + components: + - pos: -28.5,8.5 + parent: 30 + type: Transform +- uid: 6787 + type: CableApcExtension + components: + - pos: -29.5,10.5 + parent: 30 + type: Transform +- uid: 6788 + type: CableApcExtension + components: + - pos: -29.5,11.5 + parent: 30 + type: Transform +- uid: 6789 + type: CableApcExtension + components: + - pos: -33.5,8.5 + parent: 30 + type: Transform +- uid: 6790 + type: CableApcExtension + components: + - pos: -33.5,9.5 + parent: 30 + type: Transform +- uid: 6791 + type: CableApcExtension + components: + - pos: -34.5,9.5 + parent: 30 + type: Transform +- uid: 6792 + type: CableApcExtension + components: + - pos: -35.5,9.5 + parent: 30 + type: Transform +- uid: 6793 + type: CableApcExtension + components: + - pos: -36.5,9.5 + parent: 30 + type: Transform +- uid: 6794 + type: CableApcExtension + components: + - pos: -37.5,9.5 + parent: 30 + type: Transform +- uid: 6795 + type: CableApcExtension + components: + - pos: -38.5,9.5 + parent: 30 + type: Transform +- uid: 6796 + type: CableApcExtension + components: + - pos: -39.5,9.5 + parent: 30 + type: Transform +- uid: 6797 + type: CableApcExtension + components: + - pos: -40.5,9.5 + parent: 30 + type: Transform +- uid: 6798 + type: CableApcExtension + components: + - pos: -43.5,7.5 + parent: 30 + type: Transform +- uid: 6799 + type: CableApcExtension + components: + - pos: -43.5,6.5 + parent: 30 + type: Transform +- uid: 6800 + type: CableApcExtension + components: + - pos: -43.5,5.5 + parent: 30 + type: Transform +- uid: 6801 + type: CableApcExtension + components: + - pos: -42.5,5.5 + parent: 30 + type: Transform +- uid: 6802 + type: CableApcExtension + components: + - pos: -41.5,5.5 + parent: 30 + type: Transform +- uid: 6803 + type: CableApcExtension + components: + - pos: -40.5,5.5 + parent: 30 + type: Transform +- uid: 6804 + type: CableApcExtension + components: + - pos: -39.5,5.5 + parent: 30 + type: Transform +- uid: 6805 + type: CableApcExtension + components: + - pos: -38.5,5.5 + parent: 30 + type: Transform +- uid: 6806 + type: CableApcExtension + components: + - pos: -37.5,5.5 + parent: 30 + type: Transform +- uid: 6807 + type: CableApcExtension + components: + - pos: -36.5,5.5 + parent: 30 + type: Transform +- uid: 6808 + type: CableApcExtension + components: + - pos: -43.5,4.5 + parent: 30 + type: Transform +- uid: 6809 + type: CableApcExtension + components: + - pos: -43.5,3.5 + parent: 30 + type: Transform +- uid: 6810 + type: CableApcExtension + components: + - pos: -43.5,2.5 + parent: 30 + type: Transform +- uid: 6811 + type: CableApcExtension + components: + - pos: -43.5,1.5 + parent: 30 + type: Transform +- uid: 6812 + type: CableApcExtension + components: + - pos: -43.5,0.5 + parent: 30 + type: Transform +- uid: 6813 + type: CableApcExtension + components: + - pos: -43.5,-0.5 + parent: 30 + type: Transform +- uid: 6814 + type: CableApcExtension + components: + - pos: -42.5,-0.5 + parent: 30 + type: Transform +- uid: 6815 + type: CableApcExtension + components: + - pos: -41.5,-0.5 + parent: 30 + type: Transform +- uid: 6816 + type: CableApcExtension + components: + - pos: -40.5,-0.5 + parent: 30 + type: Transform +- uid: 6817 + type: CableApcExtension + components: + - pos: -39.5,-0.5 + parent: 30 + type: Transform +- uid: 6818 + type: CableApcExtension + components: + - pos: -38.5,-0.5 + parent: 30 + type: Transform +- uid: 6819 + type: CableApcExtension + components: + - pos: -37.5,-0.5 + parent: 30 + type: Transform +- uid: 6820 + type: CableApcExtension + components: + - pos: -36.5,-0.5 + parent: 30 + type: Transform +- uid: 6821 + type: CableApcExtension + components: + - pos: -42.5,3.5 + parent: 30 + type: Transform +- uid: 6822 + type: CableApcExtension + components: + - pos: -41.5,3.5 + parent: 30 + type: Transform +- uid: 6823 + type: CableApcExtension + components: + - pos: -40.5,3.5 + parent: 30 + type: Transform +- uid: 6824 + type: CableApcExtension + components: + - pos: -39.5,3.5 + parent: 30 + type: Transform +- uid: 6825 + type: CableApcExtension + components: + - pos: -38.5,3.5 + parent: 30 + type: Transform +- uid: 6826 + type: CableApcExtension + components: + - pos: -37.5,3.5 + parent: 30 + type: Transform +- uid: 6827 + type: CableApcExtension + components: + - pos: -36.5,3.5 + parent: 30 + type: Transform +- uid: 6828 + type: CableApcExtension + components: + - pos: -44.5,-0.5 + parent: 30 + type: Transform +- uid: 6829 + type: CableApcExtension + components: + - pos: -45.5,-0.5 + parent: 30 + type: Transform +- uid: 6830 + type: CableApcExtension + components: + - pos: -46.5,-0.5 + parent: 30 + type: Transform +- uid: 6831 + type: CableApcExtension + components: + - pos: -47.5,-0.5 + parent: 30 + type: Transform +- uid: 6832 + type: CableApcExtension + components: + - pos: -48.5,-0.5 + parent: 30 + type: Transform +- uid: 6833 + type: CableApcExtension + components: + - pos: -49.5,-0.5 + parent: 30 + type: Transform +- uid: 6834 + type: CableApcExtension + components: + - pos: -45.5,-1.5 + parent: 30 + type: Transform +- uid: 6835 + type: CableApcExtension + components: + - pos: -45.5,-2.5 + parent: 30 + type: Transform +- uid: 6836 + type: CableApcExtension + components: + - pos: -45.5,-3.5 + parent: 30 + type: Transform +- uid: 6837 + type: CableApcExtension + components: + - pos: -45.5,-4.5 + parent: 30 + type: Transform +- uid: 6838 + type: CableApcExtension + components: + - pos: -45.5,-5.5 + parent: 30 + type: Transform +- uid: 6839 + type: CableApcExtension + components: + - pos: -45.5,-6.5 + parent: 30 + type: Transform +- uid: 6840 + type: CableApcExtension + components: + - pos: -45.5,-7.5 + parent: 30 + type: Transform +- uid: 6841 + type: CableApcExtension + components: + - pos: -44.5,-7.5 + parent: 30 + type: Transform +- uid: 6842 + type: CableApcExtension + components: + - pos: -38.5,-6.5 + parent: 30 + type: Transform +- uid: 6843 + type: CableApcExtension + components: + - pos: -38.5,-5.5 + parent: 30 + type: Transform +- uid: 6844 + type: CableApcExtension + components: + - pos: -38.5,-4.5 + parent: 30 + type: Transform +- uid: 6845 + type: CableApcExtension + components: + - pos: -39.5,-4.5 + parent: 30 + type: Transform +- uid: 6846 + type: CableApcExtension + components: + - pos: -40.5,-4.5 + parent: 30 + type: Transform +- uid: 6847 + type: CableApcExtension + components: + - pos: -41.5,-4.5 + parent: 30 + type: Transform +- uid: 6848 + type: CableApcExtension + components: + - pos: -42.5,-4.5 + parent: 30 + type: Transform +- uid: 6849 + type: CableApcExtension + components: + - pos: -44.5,5.5 + parent: 30 + type: Transform +- uid: 6850 + type: CableApcExtension + components: + - pos: -45.5,5.5 + parent: 30 + type: Transform +- uid: 6851 + type: CableApcExtension + components: + - pos: -46.5,5.5 + parent: 30 + type: Transform +- uid: 6852 + type: CableApcExtension + components: + - pos: -47.5,5.5 + parent: 30 + type: Transform +- uid: 6853 + type: CableApcExtension + components: + - pos: -48.5,5.5 + parent: 30 + type: Transform +- uid: 6854 + type: CableApcExtension + components: + - pos: -46.5,6.5 + parent: 30 + type: Transform +- uid: 6855 + type: CableApcExtension + components: + - pos: -46.5,7.5 + parent: 30 + type: Transform +- uid: 6856 + type: CableApcExtension + components: + - pos: -46.5,8.5 + parent: 30 + type: Transform +- uid: 6857 + type: CableApcExtension + components: + - pos: -46.5,9.5 + parent: 30 + type: Transform +- uid: 6858 + type: CableApcExtension + components: + - pos: -45.5,9.5 + parent: 30 + type: Transform +- uid: 6859 + type: CableApcExtension + components: + - pos: -45.5,10.5 + parent: 30 + type: Transform +- uid: 6860 + type: CableApcExtension + components: + - pos: -45.5,11.5 + parent: 30 + type: Transform +- uid: 6861 + type: CableApcExtension + components: + - pos: -45.5,12.5 + parent: 30 + type: Transform +- uid: 6862 + type: CableApcExtension + components: + - pos: -44.5,12.5 + parent: 30 + type: Transform +- uid: 6863 + type: CableApcExtension + components: + - pos: -43.5,12.5 + parent: 30 + type: Transform +- uid: 6864 + type: CableApcExtension + components: + - pos: -42.5,12.5 + parent: 30 + type: Transform +- uid: 6865 + type: CableApcExtension + components: + - pos: -41.5,12.5 + parent: 30 + type: Transform +- uid: 6866 + type: CableApcExtension + components: + - pos: -40.5,12.5 + parent: 30 + type: Transform +- uid: 6867 + type: CableApcExtension + components: + - pos: -39.5,12.5 + parent: 30 + type: Transform +- uid: 6868 + type: CableApcExtension + components: + - pos: -38.5,12.5 + parent: 30 + type: Transform +- uid: 6869 + type: CableApcExtension + components: + - pos: -32.5,13.5 + parent: 30 + type: Transform +- uid: 6870 + type: CableApcExtension + components: + - pos: -31.5,13.5 + parent: 30 + type: Transform +- uid: 6871 + type: CableApcExtension + components: + - pos: -36.5,13.5 + parent: 30 + type: Transform +- uid: 6872 + type: CableApcExtension + components: + - pos: -41.5,9.5 + parent: 30 + type: Transform +- uid: 6873 + type: Table + components: + - pos: -9.5,19.5 + parent: 30 + type: Transform +- uid: 6874 + type: ToiletDirtyWater + components: + - pos: -10.5,-13.5 + parent: 30 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 6875 + type: CableApcExtension + components: + - pos: -30.5,12.5 + parent: 30 + type: Transform +- uid: 6876 + type: CableApcExtension + components: + - pos: -43.5,10.5 + parent: 30 + type: Transform +- uid: 6877 + type: CableApcExtension + components: + - pos: -43.5,9.5 + parent: 30 + type: Transform +- uid: 6878 + type: CableApcExtension + components: + - pos: -42.5,9.5 + parent: 30 + type: Transform +- uid: 6879 + type: CableApcExtension + components: + - pos: -49.5,3.5 + parent: 30 + type: Transform +- uid: 6880 + type: CableApcExtension + components: + - pos: -49.5,2.5 + parent: 30 + type: Transform +- uid: 6881 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -45.5,4.5 + parent: 30 + type: Transform +- uid: 6882 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -46.5,4.5 + parent: 30 + type: Transform +- uid: 6883 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: -47.5,4.5 + parent: 30 + type: Transform +- uid: 6884 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: -47.5,2.5 + parent: 30 + type: Transform +- uid: 6885 + type: WindowAlmayer + components: + - pos: -44.5,1.5 + parent: 30 + type: Transform +- uid: 6886 + type: WindowAlmayer + components: + - pos: -44.5,3.5 + parent: 30 + type: Transform +- uid: 6887 + type: Grille + components: + - pos: -44.5,1.5 + parent: 30 + type: Transform +- uid: 6888 + type: Grille + components: + - pos: -44.5,3.5 + parent: 30 + type: Transform +- uid: 6889 + type: GasMinerOxygen + components: + - pos: -46.5,1.5 + parent: 30 + type: Transform + - fixtures: [] + type: Fixtures +- uid: 6890 + type: GasMinerNitrogen + components: + - pos: -46.5,3.5 + parent: 30 + type: Transform + - fixtures: [] + type: Fixtures +- uid: 6891 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -44.5,2.5 + parent: 30 + type: Transform +- uid: 6892 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -43.5,2.5 + parent: 30 + type: Transform +- uid: 6893 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -44.5,1.5 + parent: 30 + type: Transform +- uid: 6894 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -44.5,3.5 + parent: 30 + type: Transform +- uid: 6895 + type: GasPressurePump + components: + - rot: 1.5707963267948966 rad + pos: -43.5,1.5 + parent: 30 + type: Transform +- uid: 6896 + type: GasPressurePump + components: + - rot: 1.5707963267948966 rad + pos: -43.5,3.5 + parent: 30 + type: Transform +- uid: 6897 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -36.5,3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6898 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: -42.5,1.5 + parent: 30 + type: Transform +- uid: 6899 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -42.5,2.5 + parent: 30 + type: Transform +- uid: 6900 + type: WallAlmayer + components: + - pos: -47.5,2.5 + parent: 30 + type: Transform +- uid: 6901 + type: WallAlmayer + components: + - pos: -46.5,2.5 + parent: 30 + type: Transform +- uid: 6902 + type: WallAlmayer + components: + - pos: -45.5,2.5 + parent: 30 + type: Transform +- uid: 6903 + type: WallAlmayer + components: + - pos: -44.5,2.5 + parent: 30 + type: Transform +- uid: 6904 + type: WallAlmayer + components: + - pos: -47.5,0.5 + parent: 30 + type: Transform +- uid: 6905 + type: WallAlmayer + components: + - pos: -45.5,0.5 + parent: 30 + type: Transform +- uid: 6906 + type: WallAlmayer + components: + - pos: -46.5,0.5 + parent: 30 + type: Transform +- uid: 6907 + type: WallAlmayer + components: + - pos: -44.5,0.5 + parent: 30 + type: Transform +- uid: 6908 + type: WallAlmayer + components: + - pos: -44.5,4.5 + parent: 30 + type: Transform +- uid: 6909 + type: WallAlmayer + components: + - pos: -45.5,4.5 + parent: 30 + type: Transform +- uid: 6910 + type: WallAlmayer + components: + - pos: -46.5,4.5 + parent: 30 + type: Transform +- uid: 6911 + type: WallAlmayer + components: + - pos: -47.5,4.5 + parent: 30 + type: Transform +- uid: 6912 + type: GasFilterFlipped + components: + - pos: -41.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6913 + type: GasFilterFlipped + components: + - pos: -41.5,4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6914 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -42.5,2.5 + parent: 30 + type: Transform +- uid: 6915 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -42.5,4.5 + parent: 30 + type: Transform +- uid: 6916 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -41.5,3.5 + parent: 30 + type: Transform +- uid: 6917 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -29.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6918 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -30.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6919 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -31.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6920 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -38.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6921 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -33.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6922 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -34.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6923 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -35.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6924 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -36.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6925 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -38.5,4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6926 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -37.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6927 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -39.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6928 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -40.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6929 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -36.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6930 + type: GasMixer + components: + - rot: 1.5707963267948966 rad + pos: -42.5,3.5 + parent: 30 + type: Transform + - inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + type: GasMixer +- uid: 6931 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -36.5,6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6932 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -36.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6933 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -36.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6934 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -36.5,8.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6935 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -17.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6936 + type: WallAlmayer + components: + - pos: 5.5,21.5 + parent: 30 + type: Transform +- uid: 6937 + type: GasPipeBend + components: + - pos: -28.5,9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6938 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -29.5,9.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6939 + type: FirelockGlass + components: + - pos: -28.5,6.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 6940 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6941 + type: WallAlmayer + components: + - pos: -37.5,12.5 + parent: 30 + type: Transform +- uid: 6942 + type: WallAlmayer + components: + - pos: -36.5,12.5 + parent: 30 + type: Transform +- uid: 6943 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6944 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6945 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -30.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6946 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -31.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6947 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -32.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6948 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -33.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6949 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -34.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6950 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -35.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6951 + type: GasPipeTJunction + components: + - pos: -38.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6952 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -37.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6953 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -38.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6954 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -39.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6955 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -40.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6956 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -41.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6957 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -41.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6958 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -43.5,5.5 + parent: 30 + type: Transform +- uid: 6959 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -42.5,5.5 + parent: 30 + type: Transform +- uid: 6960 + type: GasPressurePump + components: + - rot: 1.5707963267948966 rad + pos: -41.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6961 + type: GasPipeBend + components: + - pos: -41.5,5.5 + parent: 30 + type: Transform +- uid: 6962 + type: GasPipeBend + components: + - pos: -40.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 6963 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -44.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6964 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -45.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6965 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -46.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6966 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -47.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6967 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -48.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6968 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -49.5,4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6969 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -49.5,3.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6970 + type: GasPipeBend + components: + - rot: -1.5707963267948966 rad + pos: -49.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6971 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: -49.5,4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6972 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: -49.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6973 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -50.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6974 + type: GasPassiveVent + components: + - rot: 1.5707963267948966 rad + pos: -51.5,2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 6975 + type: BlastDoor + components: + - pos: -50.5,1.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 7020 + type: SignalReceiver +- uid: 6976 + type: BlastDoor + components: + - pos: -50.5,2.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 7020 + type: SignalReceiver +- uid: 6977 + type: BlastDoor + components: + - pos: -50.5,3.5 + parent: 30 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 7020 + type: SignalReceiver +- uid: 6978 + type: Catwalk + components: + - pos: -49.5,1.5 + parent: 30 + type: Transform +- uid: 6979 + type: Catwalk + components: + - pos: -49.5,2.5 + parent: 30 + type: Transform +- uid: 6980 + type: Catwalk + components: + - pos: -49.5,3.5 + parent: 30 + type: Transform +- uid: 6981 + type: Poweredlight + components: + - pos: -46.5,3.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6982 + type: Poweredlight + components: + - pos: -46.5,1.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 6983 + type: CableHV + components: + - pos: -36.5,-1.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6984 + type: CableHV + components: + - pos: -37.5,-1.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6985 + type: CableHV + components: + - pos: -37.5,0.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6986 + type: CableHV + components: + - pos: -37.5,1.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6987 + type: CableHV + components: + - pos: -37.5,2.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6988 + type: CableHV + components: + - pos: -37.5,3.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6989 + type: CableHV + components: + - pos: -37.5,4.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6990 + type: CableHV + components: + - pos: -37.5,5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 6991 + type: Catwalk + components: + - pos: -37.5,-0.5 + parent: 30 + type: Transform +- uid: 6992 + type: Catwalk + components: + - pos: -37.5,0.5 + parent: 30 + type: Transform +- uid: 6993 + type: Catwalk + components: + - pos: -37.5,1.5 + parent: 30 + type: Transform +- uid: 6994 + type: Catwalk + components: + - pos: -37.5,2.5 + parent: 30 + type: Transform +- uid: 6995 + type: Catwalk + components: + - pos: -37.5,3.5 + parent: 30 + type: Transform +- uid: 6996 + type: Catwalk + components: + - pos: -37.5,4.5 + parent: 30 + type: Transform +- uid: 6997 + type: Catwalk + components: + - pos: -37.5,5.5 + parent: 30 + type: Transform +- uid: 6998 + type: AMEController + components: + - pos: -35.5,2.5 + parent: 30 + type: Transform + - containers: + AMEController-fuelJarContainer: !type:ContainerSlot {} + type: ContainerContainer +- uid: 6999 + type: CrateEngineeringAMEJar + components: + - pos: -35.5,3.5 + parent: 30 + type: Transform + - isPlaceable: False + type: PlaceableSurface + - containers: + - EntityStorageComponent + type: Construction + - containers: + entity_storage: !type:Container + ents: [] + paper_label: !type:ContainerSlot {} + type: ContainerContainer +- uid: 7000 + type: CrateEngineeringAMEShielding + components: + - pos: -35.5,4.5 + parent: 30 + type: Transform + - isPlaceable: False + type: PlaceableSurface + - containers: + - EntityStorageComponent + type: Construction + - containers: + entity_storage: !type:Container + ents: [] + paper_label: !type:ContainerSlot {} + type: ContainerContainer +- uid: 7001 + type: CrateEngineeringAMEShielding + components: + - pos: -35.5,5.5 + parent: 30 + type: Transform + - isPlaceable: False + type: PlaceableSurface + - containers: + - EntityStorageComponent + type: Construction + - containers: + entity_storage: !type:Container + ents: [] + paper_label: !type:ContainerSlot {} + type: ContainerContainer +- uid: 7002 + type: WallAlmayer + components: + - pos: -40.5,7.5 + parent: 30 + type: Transform +- uid: 7005 + type: WarningO2 + components: + - pos: -44.5,2.5 + parent: 30 + type: Transform +- uid: 7006 + type: WarningN2 + components: + - pos: -44.5,4.5 + parent: 30 + type: Transform +- uid: 7007 + type: FirelockGlass + components: + - pos: 11.5,11.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 7008 + type: Grille + components: + - pos: 13.5,13.5 + parent: 30 + type: Transform +- uid: 7009 + type: Windoor + components: + - rot: 1.5707963267948966 rad + pos: -30.5,0.5 + parent: 30 + type: Transform +- uid: 7010 + type: FirelockGlass + components: + - pos: -30.5,0.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 7011 + type: FirelockGlass + components: + - pos: -30.5,2.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 7012 + type: PowerCellRecharger + components: + - pos: -31.5,-0.5 + parent: 30 + type: Transform + - fixtures: [] + type: Fixtures + - containers: + charger-slot: !type:ContainerSlot {} + type: ContainerContainer +- uid: 7013 + type: ComputerAlert + components: + - rot: 1.5707963267948966 rad + pos: -33.5,3.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 7014 + type: ComputerPowerMonitoring + components: + - rot: 1.5707963267948966 rad + pos: -33.5,1.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 7015 + type: ComputerSolarControl + components: + - rot: 1.5707963267948966 rad + pos: -33.5,2.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 7016 + type: Table + components: + - pos: -31.5,-1.5 + parent: 30 + type: Transform +- uid: 7017 + type: Table + components: + - pos: -31.5,-0.5 + parent: 30 + type: Transform +- uid: 7018 + type: ChairOfficeDark + components: + - rot: 1.5707963267948966 rad + pos: -31.5,0.5 + parent: 30 + type: Transform +- uid: 7019 + type: Multitool + components: + - pos: -31.449524,-1.3103302 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7020 + type: SignalButton + components: + - desc: Exposes atmos tanks to vacuum. The 'oh shit' button. + name: emergency atmos vac + type: MetaData + - pos: -44.5,0.5 + parent: 30 + type: Transform + - fixtures: [] + type: Fixtures + - outputs: + Pressed: + - port: Toggle + uid: 6715 + - port: Toggle + uid: 6713 + - port: Toggle + uid: 6975 + - port: Toggle + uid: 6976 + - port: Toggle + uid: 6977 + type: SignalTransmitter +- uid: 7021 + type: Chair + components: + - rot: 3.141592653589793 rad + pos: 8.5,10.5 + parent: 30 + type: Transform +- uid: 7022 + type: LockerAtmosphericsFilled + components: + - pos: -36.5,8.5 + parent: 30 + type: Transform +- uid: 7023 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 30 + type: Transform +- uid: 7024 + type: MedicalBed + components: + - pos: 9.5,-4.5 + parent: 30 + type: Transform +- uid: 7025 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 30 + type: Transform +- uid: 7026 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7027 + type: GasPipeStraight + components: + - pos: 7.5,-5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7028 + type: VendingMachineSec + components: + - pos: 10.5,10.5 + parent: 30 + type: Transform +- uid: 7029 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7030 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -32.5,4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7031 + type: FirelockGlass + components: + - pos: 12.5,11.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 7032 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -32.5,5.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7033 + type: Table + components: + - pos: -43.5,-1.5 + parent: 30 + type: Transform +- uid: 7034 + type: CrateEngineeringCableBulk + components: + - pos: -42.5,-1.5 + parent: 30 + type: Transform + - containers: + - EntityStorageComponent + type: Construction + - isPlaceable: False + type: PlaceableSurface +- uid: 7035 + type: Table + components: + - pos: -40.5,-1.5 + parent: 30 + type: Transform +- uid: 7036 + type: Table + components: + - pos: -39.5,-1.5 + parent: 30 + type: Transform +- uid: 7037 + type: GeneratorUranium + components: + - pos: -41.5,-1.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 7038 + type: GasPipeStraight + components: + - pos: 7.5,-4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7039 + type: Chair + components: + - pos: 10.5,-0.5 + parent: 30 + type: Transform +- uid: 7040 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 30 + type: Transform +- uid: 7041 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 30 + type: Transform +- uid: 7042 + type: Grille + components: + - pos: 13.5,11.5 + parent: 30 + type: Transform +- uid: 7043 + type: SheetSteel + components: + - pos: -40.51451,-1.4674377 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7044 + type: SheetSteel + components: + - pos: -40.51451,-1.4674377 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7045 + type: SheetGlass + components: + - pos: -40.092636,-1.4674377 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7046 + type: SheetGlass + components: + - pos: -40.092636,-1.4674377 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7047 + type: PartRodMetal + components: + - pos: -39.54576,-1.4049377 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7048 + type: PartRodMetal + components: + - pos: -39.54576,-1.4049377 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7049 + type: SheetPlasma + components: + - pos: -43.530136,-1.4518127 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7050 + type: WindoorArmoryLocked + components: + - rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 30 + type: Transform +- uid: 7051 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -16.5,22.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7052 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -36.5,1.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7053 + type: ComputerCriminalRecords + components: + - rot: 1.5707963267948966 rad + pos: 5.5,8.5 + parent: 30 + type: Transform + - containers: + board: !type:Container + ents: [] + type: ContainerContainer +- uid: 7054 + type: KitchenSpike + components: + - pos: -15.5,7.5 + parent: 30 + type: Transform +- uid: 7055 + type: SpawnPointStationEngineer + components: + - pos: -33.5,10.5 + parent: 30 + type: Transform +- uid: 7056 + type: GasVentScrubber + components: + - pos: -36.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7057 + type: VendingMachineYouTool + components: + - pos: -33.5,8.5 + parent: 30 + type: Transform +- uid: 7058 + type: CableApcExtension + components: + - pos: -30.5,13.5 + parent: 30 + type: Transform +- uid: 7059 + type: WallAlmayer + components: + - pos: -35.5,12.5 + parent: 30 + type: Transform +- uid: 7060 + type: LockerAtmosphericsFilled + components: + - pos: -36.5,11.5 + parent: 30 + type: Transform +- uid: 7061 + type: SignDirectionalSalvage + components: + - rot: -1.5707963267948966 rad + pos: -24.503786,12.682968 + parent: 30 + type: Transform +- uid: 7062 + type: BoxBeanbag + components: + - parent: 6159 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 7063 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -32.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7064 + type: KitchenKnife + components: + - pos: -15.479191,0.56605744 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7065 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7066 + type: DrinkLithiumFlask + components: + - pos: -19.459728,-0.3406999 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 7067 + type: WindowReinforcedDirectional + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-7.5 + parent: 30 + type: Transform +- uid: 7068 + type: Grille + components: + - pos: -7.5,-17.5 + parent: 30 + type: Transform +- uid: 7069 + type: Grille + components: + - pos: -7.5,-19.5 + parent: 30 + type: Transform +- uid: 7070 + type: SignDirectionalSupply + components: + - rot: -1.5707963267948966 rad + pos: 16.50702,4.742607 + parent: 30 + type: Transform +- uid: 7071 + type: SignDirectionalHydro + components: + - rot: -1.5707963267948966 rad + pos: 16.50702,4.258232 + parent: 30 + type: Transform +- uid: 7072 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-7.5 + parent: 30 + type: Transform +- uid: 7073 + type: WindowAlmayer + components: + - pos: -26.5,4.5 + parent: 30 + type: Transform +- uid: 7074 + type: WallAlmayer + components: + - pos: -10.5,-12.5 + parent: 30 + type: Transform +- uid: 7075 + type: SignDirectionalSci + components: + - rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 30 + type: Transform +- uid: 7076 + type: SignDirectionalBridge + components: + - rot: 3.141592653589793 rad + pos: 20.5,-13.5 + parent: 30 + type: Transform +- uid: 7077 + type: SignDirectionalBridge + components: + - pos: 20.5,19.5 + parent: 30 + type: Transform +- uid: 7078 + type: SignDirectionalChapel + components: + - pos: 20.501799,19.734549 + parent: 30 + type: Transform +- uid: 7079 + type: SignDirectionalChapel + components: + - rot: 3.141592653589793 rad + pos: 20.501799,-13.273079 + parent: 30 + type: Transform +- uid: 7080 + type: SignDirectionalSec + components: + - rot: 3.141592653589793 rad + pos: 20.501799,-13.741829 + parent: 30 + type: Transform +- uid: 7081 + type: SignDirectionalSec + components: + - pos: 20.486174,19.258167 + parent: 30 + type: Transform +- uid: 7082 + type: SignElectricalMed + components: + - pos: -34.5,6.5 + parent: 30 + type: Transform +- uid: 7083 + type: SignFire + components: + - pos: -48.5,2.5 + parent: 30 + type: Transform +- uid: 7084 + type: Grille + components: + - pos: -20.5,26.5 + parent: 30 + type: Transform +- uid: 7085 + type: SignDisposalSpace + components: + - pos: -38.5,-15.5 + parent: 30 + type: Transform +- uid: 7086 + type: CableMV + components: + - pos: -0.5,-4.5 + parent: 30 + type: Transform +- uid: 7087 + type: SignHead + components: + - pos: 26.5,5.5 + parent: 30 + type: Transform +- uid: 7088 + type: SignLibrary + components: + - pos: -7.5,-7.5 + parent: 30 + type: Transform +- uid: 7089 + type: SignNosmoking + components: + - pos: -42.5,7.5 + parent: 30 + type: Transform +- uid: 7090 + type: SignSecureMed + components: + - pos: -34.5,-1.5 + parent: 30 + type: Transform +- uid: 7091 + type: SignDirectionalSolar + components: + - rot: -1.5707963267948966 rad + pos: 8.5,22.5 + parent: 30 + type: Transform +- uid: 7092 + type: WallAlmayer + components: + - pos: -34.5,12.5 + parent: 30 + type: Transform +- uid: 7093 + type: GasPipeStraight + components: + - pos: -22.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7094 + type: SignDirectionalSolar + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 30 + type: Transform +- uid: 7095 + type: SignToxins + components: + - pos: -20.5,-17.5 + parent: 30 + type: Transform +- uid: 7096 + type: Poweredlight + components: + - pos: -39.5,10.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7097 + type: PoweredSmallLight + components: + - pos: -42.5,10.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7098 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7099 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -32.5,3.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7100 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -43.5,4.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7101 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -43.5,0.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7102 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7103 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -35.5,6.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7104 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -31.5,1.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7105 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: -31.5,3.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7106 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7107 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -33.5,6.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7108 + type: ReagentContainerFlour + components: + - pos: -15.666691,0.53480744 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7109 + type: FoodCondimentBottleEnzyme + components: + - pos: -15.588566,-1.2776926 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: food + type: RefillableSolution + - solution: food + type: DrainableSolution +- uid: 7110 + type: PoweredSmallLight + components: + - pos: -36.5,-7.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7111 + type: PoweredSmallLight + components: + - pos: -48.5,-0.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7112 + type: PoweredSmallLight + components: + - rot: -1.5707963267948966 rad + pos: -49.5,2.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7113 + type: PoweredSmallLight + components: + - pos: -48.5,5.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7114 + type: PoweredSmallLight + components: + - pos: -40.5,13.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7115 + type: PoweredSmallLight + components: + - pos: -46.5,9.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7116 + type: PoweredSmallLight + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-3.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7117 + type: PoweredSmallLight + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-7.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7118 + type: FirelockGlass + components: + - pos: -45.5,-6.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 7119 + type: FirelockGlass + components: + - pos: -45.5,11.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 7120 + type: Table + components: + - pos: -15.5,1.5 + parent: 30 + type: Transform +- uid: 7121 + type: KitchenReagentGrinder + components: + - pos: -15.5,-0.5 + parent: 30 + type: Transform + - containers: + ReagentGrinder-reagentContainerContainer: !type:ContainerSlot {} + ReagentGrinder-entityContainerContainer: !type:Container + ents: [] + type: ContainerContainer +- uid: 7122 + type: FoodMeat + components: + - pos: -16.41669,6.645695 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7123 + type: FoodCondimentBottleEnzyme + components: + - pos: -15.666691,-1.0901926 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: food + type: RefillableSolution + - solution: food + type: DrainableSolution +- uid: 7124 + type: Table + components: + - pos: -27.5,-11.5 + parent: 30 + type: Transform +- uid: 7125 + type: WindowReinforcedDirectional + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 30 + type: Transform +- uid: 7126 + type: Table + components: + - pos: -15.5,-1.5 + parent: 30 + type: Transform +- uid: 7127 + type: GasThermoMachineFreezer + components: + - pos: -16.5,7.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 7128 + type: VendingMachineChefDrobe + components: + - pos: -14.5,3.5 + parent: 30 + type: Transform +- uid: 7129 + type: CrateNPCCow + components: + - pos: -13.5,7.5 + parent: 30 + type: Transform + - containers: + - EntityStorageComponent + type: Construction + - isPlaceable: False + type: PlaceableSurface +- uid: 7130 + type: CableApcExtension + components: + - pos: -10.5,-16.5 + parent: 30 + type: Transform +- uid: 7131 + type: WindowReinforcedDirectional + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 30 + type: Transform +- uid: 7132 + type: CableApcExtension + components: + - pos: -9.5,-16.5 + parent: 30 + type: Transform +- uid: 7133 + type: CableApcExtension + components: + - pos: -8.5,-16.5 + parent: 30 + type: Transform +- uid: 7134 + type: Grille + components: + - pos: -9.5,-20.5 + parent: 30 + type: Transform +- uid: 7135 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -13.5,10.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7136 + type: Grille + components: + - pos: -12.5,-19.5 + parent: 30 + type: Transform +- uid: 7137 + type: DisposalPipe + components: + - rot: -1.5707963267948966 rad + pos: -12.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 7138 + type: DrinkCognacBottleFull + components: + - pos: -19.55723,5.733133 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 7139 + type: DrinkShotGlass + components: + - pos: -21.479105,4.905008 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 7140 + type: DisposalJunctionFlipped + components: + - pos: -29.5,1.5 + parent: 30 + type: Transform + - containers: + DisposalJunction: !type:Container + ents: [] + type: ContainerContainer +- uid: 7141 + type: ClosetMaintenanceFilledRandom + components: + - pos: 0.5,17.5 + parent: 30 + type: Transform +- uid: 7142 + type: VendingMachineCigs + components: + - name: cigarette machine + type: MetaData + - pos: -30.5,-3.5 + parent: 30 + type: Transform +- uid: 7143 + type: VendingMachineDiscount + components: + - pos: -30.5,-5.5 + parent: 30 + type: Transform +- uid: 7144 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-4.5 + parent: 30 + type: Transform +- uid: 7145 + type: VendingMachineSnack + components: + - pos: -30.5,10.5 + parent: 30 + type: Transform +- uid: 7146 + type: VendingMachineCola + components: + - pos: -30.5,9.5 + parent: 30 + type: Transform +- uid: 7147 + type: DisposalUnit + components: + - pos: -30.5,8.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 7148 + type: DisposalTrunk + components: + - rot: 1.5707963267948966 rad + pos: -30.5,8.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 7149 + type: DisposalBend + components: + - rot: -1.5707963267948966 rad + pos: -29.5,8.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 7150 + type: DisposalBend + components: + - rot: 1.5707963267948966 rad + pos: -29.5,10.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 7151 + type: DisposalPipe + components: + - pos: -29.5,9.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 7152 + type: DisposalUnit + components: + - pos: -33.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalUnit: !type:Container + ents: [] + type: ContainerContainer +- uid: 7153 + type: DisposalTrunk + components: + - rot: 3.141592653589793 rad + pos: -33.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalEntry: !type:Container + ents: [] + type: ContainerContainer +- uid: 7154 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: -33.5,-0.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 7155 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: -33.5,0.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 7156 + type: DisposalPipe + components: + - rot: 3.141592653589793 rad + pos: -33.5,1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 7157 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -32.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 7158 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -31.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 7159 + type: DisposalPipe + components: + - rot: 1.5707963267948966 rad + pos: -30.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 7160 + type: VendingMachineEngivend + components: + - pos: -34.5,8.5 + parent: 30 + type: Transform +- uid: 7161 + type: DisposalPipe + components: + - pos: -29.5,0.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 7162 + type: DisposalPipe + components: + - pos: -29.5,-0.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 7163 + type: DisposalPipe + components: + - pos: -29.5,-1.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 7164 + type: DisposalPipe + components: + - pos: -29.5,-2.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 7165 + type: DisposalPipe + components: + - pos: -29.5,-3.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 7166 + type: DisposalPipe + components: + - pos: -29.5,-4.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 7167 + type: DisposalPipe + components: + - pos: -29.5,-5.5 + parent: 30 + type: Transform + - containers: + DisposalTransit: !type:Container + ents: [] + type: ContainerContainer +- uid: 7168 + type: DisposalBend + components: + - rot: 1.5707963267948966 rad + pos: -33.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 7169 + type: DisposalBend + components: + - pos: -29.5,2.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 7170 + type: DisposalBend + components: + - rot: 3.141592653589793 rad + pos: -29.5,-6.5 + parent: 30 + type: Transform + - containers: + DisposalBend: !type:Container + ents: [] + type: ContainerContainer +- uid: 7171 + type: AtmosFixOxygenMarker + components: + - pos: -47.5,1.5 + parent: 30 + type: Transform +- uid: 7172 + type: AtmosFixOxygenMarker + components: + - pos: -46.5,1.5 + parent: 30 + type: Transform +- uid: 7173 + type: AtmosFixOxygenMarker + components: + - pos: -45.5,1.5 + parent: 30 + type: Transform +- uid: 7174 + type: AtmosFixNitrogenMarker + components: + - pos: -45.5,3.5 + parent: 30 + type: Transform +- uid: 7175 + type: AtmosFixNitrogenMarker + components: + - pos: -46.5,3.5 + parent: 30 + type: Transform +- uid: 7176 + type: AtmosFixNitrogenMarker + components: + - pos: -47.5,3.5 + parent: 30 + type: Transform +- uid: 7177 + type: SignGravity + components: + - pos: -40.5,10.5 + parent: 30 + type: Transform +- uid: 7178 + type: CableHV + components: + - pos: -15.5,10.5 + parent: 30 + type: Transform +- uid: 7179 + type: Grille + components: + - pos: -41.5,7.5 + parent: 30 + type: Transform +- uid: 7180 + type: CableMV + components: + - pos: -20.5,2.5 + parent: 30 + type: Transform +- uid: 7181 + type: GasPipeStraight + components: + - pos: -24.5,-4.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7182 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7183 + type: CableMV + components: + - pos: -32.5,2.5 + parent: 30 + type: Transform +- uid: 7184 + type: DrinkSakeGlass + components: + - pos: -29.498474,-15.381128 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 7185 + type: PaintingMonkey + components: + - pos: -17.5,3.5 + parent: 30 + type: Transform +- uid: 7186 + type: Table + components: + - pos: -9.5,-14.5 + parent: 30 + type: Transform +- uid: 7187 + type: CableApcExtension + components: + - pos: -10.5,-13.5 + parent: 30 + type: Transform +- uid: 7188 + type: PosterContrabandShamblersJuice + components: + - pos: -30.5,-12.5 + parent: 30 + type: Transform +- uid: 7189 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -26.5,2.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7190 + type: ComfyChair + components: + - pos: 0.5,16.5 + parent: 30 + type: Transform +- uid: 7191 + type: ComfyChair + components: + - rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 30 + type: Transform +- uid: 7192 + type: ElectricGuitarInstrument + components: + - pos: -28.401499,-27.478956 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7193 + type: ToyAi + components: + - pos: 39.531425,10.634985 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7194 + type: PaintingMoony + components: + - pos: 22.5,-4.5 + parent: 30 + type: Transform +- uid: 7195 + type: MaintenanceFluffSpawner + components: + - pos: -3.5,21.5 + parent: 30 + type: Transform +- uid: 7196 + type: Rack + components: + - pos: -3.5,21.5 + parent: 30 + type: Transform +- uid: 7197 + type: PlasmaTankFilled + components: + - pos: -0.4600892,17.4888 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7198 + type: ToolboxElectricalFilled + components: + - pos: -2.5675037,15.380804 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 7199 + type: ClothingOuterSuitBomb + components: + - pos: -0.4913392,15.58255 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7200 + type: RandomPosterLegit + components: + - pos: 1.5,23.5 + parent: 30 + type: Transform +- uid: 7201 + type: RandomPosterLegit + components: + - pos: -4.5,15.5 + parent: 30 + type: Transform +- uid: 7202 + type: WallAlmayer + components: + - pos: -1.5,17.5 + parent: 30 + type: Transform +- uid: 7203 + type: WallAlmayer + components: + - pos: -1.5,15.5 + parent: 30 + type: Transform +- uid: 7204 + type: ClothingHeadHatFedoraGrey + components: + - pos: 0.5583248,16.404882 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7205 + type: VendingMachineTankDispenserEngineering + components: + - name: tank dispenser + type: MetaData + - pos: -39.5,6.5 + parent: 30 + type: Transform +- uid: 7206 + type: VendingMachineTankDispenserEVA + components: + - name: tank dispenser + type: MetaData + - pos: -36.5,18.5 + parent: 30 + type: Transform +- uid: 7207 + type: WoodDoor + components: + - pos: -1.5,16.5 + parent: 30 + type: Transform +- uid: 7208 + type: GrilleBroken + components: + - rot: -1.5707963267948966 rad + pos: -1.5,21.5 + parent: 30 + type: Transform +- uid: 7209 + type: GrilleBroken + components: + - rot: 1.5707963267948966 rad + pos: -1.5,21.5 + parent: 30 + type: Transform +- uid: 7210 + type: MouseTimedSpawner + components: + - pos: -3.5,17.5 + parent: 30 + type: Transform +- uid: 7211 + type: CableApcExtension + components: + - pos: 3.5,19.5 + parent: 30 + type: Transform +- uid: 7212 + type: WindowAlmayer + components: + - pos: 10.5,12.5 + parent: 30 + type: Transform +- uid: 7213 + type: SignDirectionalSupply + components: + - rot: 3.141592653589793 rad + pos: -26.497742,-3.2846842 + parent: 30 + type: Transform +- uid: 7214 + type: SpawnPointAtmos + components: + - pos: -36.5,9.5 + parent: 30 + type: Transform +- uid: 7215 + type: WarpPoint + components: + - pos: 27.5,6.5 + parent: 30 + type: Transform + - location: vault + type: WarpPoint +- uid: 7216 + type: Table + components: + - pos: -33.5,4.5 + parent: 30 + type: Transform +- uid: 7217 + type: ClothingBeltUtilityFilled + components: + - pos: -33.481915,4.594943 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 7218 + type: ToySpawner + components: + - pos: -1.5,19.5 + parent: 30 + type: Transform +- uid: 7219 + type: CableHVStack + components: + - pos: -33.391838,0.4581771 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7220 + type: Table + components: + - pos: -33.5,0.5 + parent: 30 + type: Transform +- uid: 7221 + type: CableMVStack + components: + - pos: -33.516838,0.6300521 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7222 + type: CableApcStack + components: + - pos: -33.610588,0.7706771 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7223 + type: Barricade + components: + - pos: -38.5,-6.5 + parent: 30 + type: Transform +- uid: 7224 + type: Barricade + components: + - pos: -37.5,-5.5 + parent: 30 + type: Transform +- uid: 7225 + type: BoozeDispenser + components: + - pos: -42.5,-3.5 + parent: 30 + type: Transform + - containers: + ReagentDispenser-beaker: !type:ContainerSlot {} + type: ContainerContainer +- uid: 7226 + type: soda_dispenser + components: + - pos: -43.5,-3.5 + parent: 30 + type: Transform + - containers: + ReagentDispenser-beaker: !type:ContainerSlot {} + type: ContainerContainer +- uid: 7227 + type: TableWood + components: + - pos: -43.5,-3.5 + parent: 30 + type: Transform +- uid: 7228 + type: TableWood + components: + - pos: -42.5,-3.5 + parent: 30 + type: Transform +- uid: 7229 + type: TableWood + components: + - pos: -40.5,-5.5 + parent: 30 + type: Transform +- uid: 7230 + type: TableWood + components: + - pos: -40.5,-4.5 + parent: 30 + type: Transform +- uid: 7231 + type: StoolBar + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-5.5 + parent: 30 + type: Transform +- uid: 7232 + type: StoolBar + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-4.5 + parent: 30 + type: Transform +- uid: 7233 + type: Grille + components: + - pos: -44.5,-4.5 + parent: 30 + type: Transform +- uid: 7234 + type: PoweredSmallLight + components: + - pos: -41.5,-3.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7235 + type: PoweredSmallLight + components: + - pos: -38.5,-3.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7236 + type: MinimoogInstrument + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-3.5 + parent: 30 + type: Transform +- uid: 7237 + type: Thruster + components: + - rot: 3.141592653589793 rad + pos: 7.5,-19.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 7238 + type: Thruster + components: + - pos: 7.5,25.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 7239 + type: ClothingHeadHatUshanka + components: + - pos: -40.510765,-8.439907 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7240 + type: Thruster + components: + - pos: 9.5,25.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 7241 + type: StoolBar + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 30 + type: Transform +- uid: 7242 + type: Thruster + components: + - rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 7243 + type: Thruster + components: + - pos: -32.5,23.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 7244 + type: SignBar + components: + - pos: -36.5,-6.5 + parent: 30 + type: Transform +- uid: 7245 + type: Thruster + components: + - pos: -34.5,23.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 7246 + type: Thruster + components: + - rot: 3.141592653589793 rad + pos: -30.5,-22.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 7247 + type: StoolBar + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 30 + type: Transform +- uid: 7248 + type: Thruster + components: + - rot: 3.141592653589793 rad + pos: -32.5,-22.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 7249 + type: SubstationBasic + components: + - pos: -31.5,-20.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 7250 + type: CableApcExtension + components: + - pos: -31.5,-21.5 + parent: 30 + type: Transform +- uid: 7251 + type: Rack + components: + - pos: -46.5,-4.5 + parent: 30 + type: Transform +- uid: 7252 + type: Rack + components: + - pos: -46.5,-3.5 + parent: 30 + type: Transform +- uid: 7253 + type: WaterTankFull + components: + - pos: -45.5,-8.5 + parent: 30 + type: Transform +- uid: 7254 + type: OxygenCanister + components: + - pos: -44.5,-8.5 + parent: 30 + type: Transform +- uid: 7255 + type: ClosetMaintenanceFilledRandom + components: + - pos: -43.5,-8.5 + parent: 30 + type: Transform +- uid: 7256 + type: ClosetToolFilled + components: + - pos: -46.5,-2.5 + parent: 30 + type: Transform +- uid: 7257 + type: Welder + components: + - pos: -46.463425,-4.4814734 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7258 + type: ClothingHeadHatWeldingMaskFlame + components: + - pos: -46.3853,-4.5908484 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7259 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -36.5,4.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7260 + type: Grille + components: + - pos: -37.5,8.5 + parent: 30 + type: Transform +- uid: 7261 + type: CableApcExtension + components: + - pos: 9.5,8.5 + parent: 30 + type: Transform +- uid: 7262 + type: FirelockGlass + components: + - pos: -0.5,-6.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 7263 + type: ClothingShoesLeather + components: + - pos: 32.483543,6.1282325 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7264 + type: ClothingOuterVestWebMerc + components: + - pos: -45.477623,-16.345137 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 7265 + type: ClothingEyesGlassesMeson + components: + - pos: -31.624142,-1.5253935 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7266 + type: ClothingEyesGlassesMeson + components: + - pos: -31.624142,-1.3222685 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7267 + type: ClothingEyesGlassesThermal + components: + - pos: -31.624142,-1.1191435 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7268 + type: ClothingShoesSwat + components: + - pos: 28.480145,10.329752 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7270 + type: ClothingNeckHeadphones + components: + - pos: 22.538504,-7.5182843 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7271 + type: ClothingEyesGlasses + components: + - pos: -14.492541,-14.353022 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7272 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 30 + type: Transform +- uid: 7273 + type: AirlockGlassAlpha + components: + - pos: -21.5,24.5 + parent: 30 + type: Transform +- uid: 7274 + type: PosterLegit50thAnniversaryVintageReprint + components: + - pos: -13.5,-10.5 + parent: 30 + type: Transform +- uid: 7275 + type: CableHV + components: + - pos: -20.5,-5.5 + parent: 30 + type: Transform +- uid: 7276 + type: RandomPosterLegit + components: + - pos: 17.5,-10.5 + parent: 30 + type: Transform +- uid: 7277 + type: RandomPosterLegit + components: + - pos: 20.5,-3.5 + parent: 30 + type: Transform +- uid: 7278 + type: PaintingTheGreatWave + components: + - pos: 33.5,8.5 + parent: 30 + type: Transform +- uid: 7279 + type: FloorTileItemCarpetClown + components: + - pos: -8.652804,-14.403757 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7280 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -32.5,7.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7281 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: -17.5,13.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7282 + type: PosterContrabandFreeSyndicateEncryptionKey + components: + - pos: 9.5,22.5 + parent: 30 + type: Transform +- uid: 7283 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7284 + type: PosterContrabandLamarr + components: + - pos: -18.5,-10.5 + parent: 30 + type: Transform +- uid: 7285 + type: RandomPosterLegit + components: + - pos: -30.5,-2.5 + parent: 30 + type: Transform +- uid: 7286 + type: SpawnPointBartender + components: + - pos: -19.5,1.5 + parent: 30 + type: Transform +- uid: 7287 + type: CableApcExtension + components: + - pos: -23.5,7.5 + parent: 30 + type: Transform +- uid: 7288 + type: CableApcExtension + components: + - pos: -14.5,3.5 + parent: 30 + type: Transform +- uid: 7289 + type: GasVentPump + components: + - pos: -23.5,-0.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7290 + type: PosterContrabandUnreadableAnnouncement + components: + - pos: -29.5,-18.5 + parent: 30 + type: Transform +- uid: 7291 + type: RandomPosterContraband + components: + - pos: -44.5,-3.5 + parent: 30 + type: Transform +- uid: 7292 + type: PosterContrabandRebelsUnite + components: + - pos: -39.5,-2.5 + parent: 30 + type: Transform +- uid: 7293 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7294 + type: PosterContrabandLustyExomorph + components: + - pos: -38.5,20.5 + parent: 30 + type: Transform +- uid: 7295 + type: MaterialWoodPlank + components: + - pos: -40.526375,-5.323625 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7296 + type: MaterialWoodPlank + components: + - pos: 7.541479,-17.517324 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7297 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7298 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -18.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7299 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -21.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7300 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7301 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7302 + type: Table + components: + - pos: -15.5,-0.5 + parent: 30 + type: Transform +- uid: 7303 + type: CableApcExtension + components: + - pos: -15.5,4.5 + parent: 30 + type: Transform +- uid: 7304 + type: CableApcExtension + components: + - pos: -15.5,2.5 + parent: 30 + type: Transform +- uid: 7305 + type: CableApcExtension + components: + - pos: -15.5,-0.5 + parent: 30 + type: Transform +- uid: 7306 + type: CableApcExtension + components: + - pos: -16.5,-1.5 + parent: 30 + type: Transform +- uid: 7307 + type: CableApcExtension + components: + - pos: -20.5,-1.5 + parent: 30 + type: Transform +- uid: 7308 + type: CableHV + components: + - pos: -13.5,10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 7309 + type: CableHV + components: + - pos: -12.5,10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 7310 + type: CableHV + components: + - pos: -11.5,10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 7311 + type: CableHV + components: + - pos: -10.5,10.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 7312 + type: GasPipeTJunction + components: + - rot: 3.141592653589793 rad + pos: -15.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7313 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7314 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -15.5,0.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7315 + type: CableApcExtension + components: + - pos: -23.5,6.5 + parent: 30 + type: Transform +- uid: 7316 + type: CableApcExtension + components: + - pos: -20.5,2.5 + parent: 30 + type: Transform +- uid: 7317 + type: SpawnPointChef + components: + - pos: -14.5,0.5 + parent: 30 + type: Transform +- uid: 7318 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: -21.5,7.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7319 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7320 + type: CableHV + components: + - pos: -13.5,-5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 7321 + type: CableHV + components: + - pos: -12.5,-5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 7322 + type: CableHV + components: + - pos: -11.5,-5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 7323 + type: CableHV + components: + - pos: -9.5,-5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 7324 + type: CableHV + components: + - pos: -10.5,-5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - fixtures: [] + type: Fixtures +- uid: 7325 + type: AirlockGlassAlpha + components: + - pos: -17.5,6.5 + parent: 30 + type: Transform +- uid: 7326 + type: StoolBar + components: + - rot: 1.5707963267948966 rad + pos: -23.5,3.5 + parent: 30 + type: Transform +- uid: 7327 + type: WallAlmayer + components: + - pos: -24.5,13.5 + parent: 30 + type: Transform +- uid: 7328 + type: Poweredlight + components: + - pos: 1.5,13.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7329 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7330 + type: CableMV + components: + - pos: -13.5,3.5 + parent: 30 + type: Transform +- uid: 7331 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7332 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -2.5,13.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7333 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7334 + type: Grille + components: + - pos: -24.5,19.5 + parent: 30 + type: Transform +- uid: 7335 + type: CarpetOrange + components: + - pos: -28.5,20.5 + parent: 30 + type: Transform +- uid: 7336 + type: Thruster + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 7337 + type: Thruster + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 7338 + type: Thruster + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-11.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 7339 + type: Thruster + components: + - rot: -1.5707963267948966 rad + pos: 30.5,17.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 7340 + type: Thruster + components: + - rot: -1.5707963267948966 rad + pos: 30.5,18.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 7341 + type: Thruster + components: + - rot: -1.5707963267948966 rad + pos: 30.5,19.5 + parent: 30 + type: Transform + - enabled: False + type: AmbientSound +- uid: 7342 + type: TableWood + components: + - pos: -40.5,-8.5 + parent: 30 + type: Transform +- uid: 7343 + type: ClothingNeckScarfStripedGreen + components: + - pos: -40.573265,-4.4399076 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7344 + type: CableApcExtension + components: + - pos: -35.5,-0.5 + parent: 30 + type: Transform +- uid: 7345 + type: CableApcExtension + components: + - pos: -35.5,-1.5 + parent: 30 + type: Transform +- uid: 7346 + type: CableApcExtension + components: + - pos: -34.5,-1.5 + parent: 30 + type: Transform +- uid: 7347 + type: SpawnPointObserver + components: + - pos: 8.5,2.5 + parent: 30 + type: Transform +- uid: 7348 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-19.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7349 + type: GasVentScrubber + components: + - pos: 2.5,-20.5 + parent: 30 + type: Transform +- uid: 7350 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-19.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7351 + type: FirelockGlass + components: + - pos: -0.5,-8.5 + parent: 30 + type: Transform + - airBlocked: False + type: Airtight + - canCollide: False + type: Physics +- uid: 7352 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 30 + type: Transform +- uid: 7353 + type: ClosetL3VirologyFilled + components: + - pos: 0.5,-21.5 + parent: 30 + type: Transform +- uid: 7354 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 30 + type: Transform +- uid: 7355 + type: DiseaseDiagnoser + components: + - pos: 2.5,-20.5 + parent: 30 + type: Transform +- uid: 7356 + type: Vaccinator + components: + - pos: 2.5,-21.5 + parent: 30 + type: Transform + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 7357 + type: GasPipeBend + components: + - rot: 3.141592653589793 rad + pos: -2.5,-21.5 + parent: 30 + type: Transform +- uid: 7358 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 30 + type: Transform +- uid: 7359 + type: Bed + components: + - pos: -29.5,19.5 + parent: 30 + type: Transform +- uid: 7360 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 30 + type: Transform +- uid: 7361 + type: GasVentScrubber + components: + - pos: -2.5,-20.5 + parent: 30 + type: Transform +- uid: 7362 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-19.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7363 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: -1.5,-20.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7364 + type: CableApcExtension + components: + - pos: -43.5,-7.5 + parent: 30 + type: Transform +- uid: 7365 + type: CableApcExtension + components: + - pos: -42.5,-7.5 + parent: 30 + type: Transform +- uid: 7366 + type: SpawnPointChiefEngineer + components: + - pos: -38.5,9.5 + parent: 30 + type: Transform +- uid: 7367 + type: CableApcExtension + components: + - pos: -23.5,-3.5 + parent: 30 + type: Transform +- uid: 7368 + type: Chair + components: + - pos: -31.5,-9.5 + parent: 30 + type: Transform +- uid: 7369 + type: FloorTileItemCarpetClown + components: + - pos: -8.668429,-14.372507 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7370 + type: WarpPoint + components: + - pos: -41.5,17.5 + parent: 30 + type: Transform + - location: salv + type: WarpPoint +- uid: 7371 + type: SignalButton + components: + - pos: -25.5,-20.5 + parent: 30 + type: Transform + - fixtures: [] + type: Fixtures + - outputs: + Pressed: + - port: Toggle + uid: 4651 + type: SignalTransmitter +- uid: 7372 + type: SignalButton + components: + - pos: -19.5,-20.5 + parent: 30 + type: Transform + - fixtures: [] + type: Fixtures + - outputs: + Pressed: + - port: Toggle + uid: 4652 + type: SignalTransmitter +- uid: 7373 + type: Rack + components: + - pos: -43.5,13.5 + parent: 30 + type: Transform +- uid: 7374 + type: Chair + components: + - pos: -42.5,13.5 + parent: 30 + type: Transform +- uid: 7375 + type: ClothingOuterCoatGentle + components: + - pos: -43.454224,13.5549965 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - containers: + storagebase: !type:Container + ents: [] + type: ContainerContainer +- uid: 7376 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7377 + type: ClothingShoesSlippers + components: + - pos: -40.52884,13.472727 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7378 + type: ClothingHeadHatFez + components: + - pos: -43.5011,13.7112465 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7379 + type: MaintenanceToolSpawner + components: + - pos: -45.5,6.5 + parent: 30 + type: Transform +- uid: 7380 + type: MaintenanceWeaponSpawner + components: + - pos: -46.5,-3.5 + parent: 30 + type: Transform +- uid: 7381 + type: Catwalk + components: + - pos: 18.5,26.5 + parent: 30 + type: Transform +- uid: 7382 + type: Catwalk + components: + - pos: 18.5,27.5 + parent: 30 + type: Transform +- uid: 7383 + type: Catwalk + components: + - pos: 19.5,27.5 + parent: 30 + type: Transform +- uid: 7384 + type: Catwalk + components: + - pos: 19.5,26.5 + parent: 30 + type: Transform +- uid: 7389 + type: GeneratorRTG + components: + - pos: -44.5,-13.5 + parent: 30 + type: Transform +- uid: 7390 + type: GeneratorRTG + components: + - pos: -44.5,-12.5 + parent: 30 + type: Transform +- uid: 7391 + type: GeneratorPlasma + components: + - pos: -44.5,18.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction +- uid: 7392 + type: TableReinforced + components: + - pos: -19.5,-0.5 + parent: 30 + type: Transform +- uid: 7393 + type: SawElectric + components: + - pos: -48.5429,7.436538 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7394 + type: Grille + components: + - pos: 4.5,21.5 + parent: 30 + type: Transform +- uid: 7395 + type: FloorDrain + components: + - pos: -1.5,-7.5 + parent: 30 + type: Transform + - fixtures: [] + type: Fixtures +- uid: 7396 + type: FloorDrain + components: + - pos: 21.5,-1.5 + parent: 30 + type: Transform + - fixtures: [] + type: Fixtures +- uid: 7397 + type: VehicleKeyJanicart + components: + - pos: 23.47368,-2.1477566 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7398 + type: SpawnMobMcGriff + components: + - pos: 11.5,12.5 + parent: 30 + type: Transform +- uid: 7399 + type: AirlockGlassAlpha + components: + - pos: 4.5,-3.5 + parent: 30 + type: Transform +- uid: 7400 + type: RCD + components: + - pos: -38.5,8.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7401 + type: AirlockGlassAlpha + components: + - pos: -35.5,7.5 + parent: 30 + type: Transform +- uid: 7402 + type: WarpPoint + components: + - pos: -2.5,-5.5 + parent: 30 + type: Transform + - location: chem + type: WarpPoint +- uid: 7403 + type: WindowAlmayer + components: + - rot: 3.141592653589793 rad + pos: -18.5,-3.5 + parent: 30 + type: Transform +- uid: 7404 + type: SpawnMobMouse + components: + - pos: -42.5,-5.5 + parent: 30 + type: Transform +- uid: 7405 + type: WarpPoint + components: + - pos: 24.5,14.5 + parent: 30 + type: Transform + - location: chapel + type: WarpPoint +- uid: 7406 + type: SpawnPointSecurityCadet + components: + - pos: 13.5,15.5 + parent: 30 + type: Transform +- uid: 7407 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: -22.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7408 + type: SpawnVehicleJanicart + components: + - pos: 22.5,-2.5 + parent: 30 + type: Transform +- uid: 7409 + type: GasPipeTJunction + components: + - pos: -23.5,6.5 + parent: 30 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- uid: 7410 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7411 + type: SpawnPointMedicalIntern + components: + - pos: 9.5,-11.5 + parent: 30 + type: Transform +- uid: 7412 + type: GasVentScrubber + components: + - pos: -15.5,5.5 + parent: 30 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- uid: 7413 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: 2.5,16.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7414 + type: BedsheetMedical + components: + - pos: 9.5,-5.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7415 + type: BedsheetMedical + components: + - pos: 9.5,-4.5 + parent: 30 + type: Transform + - canCollide: False + type: Physics +- uid: 7416 + type: Grille + components: + - pos: 2.5,-6.5 + parent: 30 + type: Transform +- uid: 7417 + type: Grille + components: + - pos: 2.5,-5.5 + parent: 30 + type: Transform +- uid: 7418 + type: CableApcExtension + components: + - pos: 0.5,-5.5 + parent: 30 + type: Transform +- uid: 7419 + type: CableApcExtension + components: + - pos: 2.5,-7.5 + parent: 30 + type: Transform +- uid: 7420 + type: CableApcExtension + components: + - pos: 3.5,-9.5 + parent: 30 + type: Transform +- uid: 7421 + type: CableApcExtension + components: + - pos: 4.5,-9.5 + parent: 30 + type: Transform +- uid: 7422 + type: CableApcExtension + components: + - pos: -1.5,-4.5 + parent: 30 + type: Transform +- uid: 7423 + type: CableApcExtension + components: + - pos: -2.5,-3.5 + parent: 30 + type: Transform +- uid: 7424 + type: CableApcExtension + components: + - pos: -1.5,-5.5 + parent: 30 + type: Transform +- uid: 7425 + type: CableApcExtension + components: + - pos: -0.5,-5.5 + parent: 30 + type: Transform +- uid: 7426 + type: CableApcExtension + components: + - pos: -0.5,-7.5 + parent: 30 + type: Transform +- uid: 7427 + type: CableApcExtension + components: + - pos: -0.5,-6.5 + parent: 30 + type: Transform +- uid: 7428 + type: CableApcExtension + components: + - pos: -3.5,-6.5 + parent: 30 + type: Transform +- uid: 7429 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7430 + type: PottedPlantRandom + components: + - pos: 6.5,-9.5 + parent: 30 + type: Transform + - containers: + stash: !type:ContainerSlot {} + type: ContainerContainer +- uid: 7431 + type: ChairOfficeLight + components: + - pos: 8.5,-4.5 + parent: 30 + type: Transform +- uid: 7432 + type: Poweredlight + components: + - pos: 11.5,13.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7433 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 15.5,17.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7434 + type: PoweredSmallLight + components: + - rot: -1.5707963267948966 rad + pos: 12.5,6.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7435 + type: PoweredSmallLight + components: + - rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7436 + type: PoweredSmallLight + components: + - rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - containers: + light_bulb: !type:ContainerSlot {} + type: ContainerContainer + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7437 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7438 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: -30.5,-11.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7439 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: -30.5,11.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7440 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: 10.5,8.5 + parent: 30 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver + - inputs: + On: [] + Off: [] + Toggle: [] + type: SignalReceiver +- uid: 7441 + type: DrinkDemonsBlood + components: + - desc: It's MORBIN time! + name: morb drink + type: MetaData + - pos: 4.5189705,20.187204 + parent: 30 + type: Transform + - canCollide: False + type: Physics + - solution: drink + type: DrainableSolution +- uid: 7442 + type: SurveillanceCameraEngineering + components: + - rot: -1.5707963267948966 rad + pos: -43.5,2.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Atmos + type: SurveillanceCamera +- uid: 7443 + type: SurveillanceCameraEngineering + components: + - rot: 3.141592653589793 rad + pos: -37.5,6.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: AME + type: SurveillanceCamera +- uid: 7444 + type: SurveillanceCameraEngineering + components: + - rot: 3.141592653589793 rad + pos: -42.5,10.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Grav + type: SurveillanceCamera +- uid: 7445 + type: SurveillanceCameraEngineering + components: + - rot: 1.5707963267948966 rad + pos: -32.5,9.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi Locker Room + type: SurveillanceCamera +- uid: 7446 + type: SurveillanceCameraEngineering + components: + - rot: -1.5707963267948966 rad + pos: -29.5,1.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Engi Hall + type: SurveillanceCamera +- uid: 7447 + type: SurveillanceCameraEngineering + components: + - rot: 3.141592653589793 rad + pos: -33.5,-3.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: SMES Bank + type: SurveillanceCamera +- uid: 7448 + type: SurveillanceCameraSupply + components: + - pos: -39.5,15.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Bay + type: SurveillanceCamera +- uid: 7449 + type: SurveillanceCameraSupply + components: + - rot: 3.141592653589793 rad + pos: -30.5,17.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Lobby + type: SurveillanceCamera +- uid: 7450 + type: SurveillanceCameraSupply + components: + - rot: -1.5707963267948966 rad + pos: -23.5,18.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Bay + type: SurveillanceCamera +- uid: 7451 + type: SurveillanceCameraSecurity + components: + - rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell Block + type: SurveillanceCamera +- uid: 7452 + type: SurveillanceCameraSecurity + components: + - rot: 3.141592653589793 rad + pos: 9.5,17.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + type: SurveillanceCamera +- uid: 7453 + type: SurveillanceCameraSecurity + components: + - rot: 3.141592653589793 rad + pos: 14.5,19.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Sec Locker Room + type: SurveillanceCamera +- uid: 7454 + type: SurveillanceCameraSecurity + components: + - rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Court Room + type: SurveillanceCamera +- uid: 7455 + type: SurveillanceCameraSecurity + components: + - rot: 3.141592653589793 rad + pos: 10.5,3.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Sec Hall + type: SurveillanceCamera +- uid: 7456 + type: SurveillanceCameraSecurity + components: + - rot: -1.5707963267948966 rad + pos: 14.5,5.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Sec Entrance + type: SurveillanceCamera +- uid: 7457 + type: SurveillanceCameraCommand + components: + - rot: 3.141592653589793 rad + pos: 23.5,8.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: EVA Supply + type: SurveillanceCamera +- uid: 7458 + type: SurveillanceCameraCommand + components: + - rot: 1.5707963267948966 rad + pos: 28.5,6.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Vault + type: SurveillanceCamera +- uid: 7459 + type: SurveillanceCameraCommand + components: + - rot: 1.5707963267948966 rad + pos: 32.5,8.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Office + type: SurveillanceCamera +- uid: 7460 + type: SurveillanceCameraCommand + components: + - rot: -1.5707963267948966 rad + pos: 34.5,6.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Captain's Bedroom + type: SurveillanceCamera +- uid: 7461 + type: SurveillanceCameraCommand + components: + - rot: 3.141592653589793 rad + pos: 36.5,4.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge + type: SurveillanceCamera +- uid: 7462 + type: SurveillanceCameraCommand + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP Bedroom + type: SurveillanceCamera +- uid: 7463 + type: SurveillanceCameraCommand + components: + - rot: 3.141592653589793 rad + pos: 27.5,-1.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conference Room + type: SurveillanceCamera +- uid: 7464 + type: SurveillanceCameraCommand + components: + - rot: 3.141592653589793 rad + pos: 24.5,3.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HoP Line + type: SurveillanceCamera +- uid: 7465 + type: SurveillanceCameraMedical + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Chemistry + type: SurveillanceCamera +- uid: 7466 + type: SurveillanceCameraMedical + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Cloning + type: SurveillanceCamera +- uid: 7467 + type: SurveillanceCameraMedical + components: + - rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: CMO's Office + type: SurveillanceCamera +- uid: 7468 + type: SurveillanceCameraMedical + components: + - rot: 3.141592653589793 rad + pos: 1.5,-19.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Virology + type: SurveillanceCamera +- uid: 7469 + type: SurveillanceCameraRouterScience + components: + - pos: -27.5,-13.5 + parent: 30 + type: Transform + - containers: + - machine_parts + - machine_board + type: Construction + - containers: + machine_board: !type:Container + ents: [] + machine_parts: !type:Container + ents: [] + type: ContainerContainer +- uid: 7470 + type: SurveillanceCameraScience + components: + - rot: 3.141592653589793 rad + pos: -21.5,-18.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Toxins + type: SurveillanceCamera +- uid: 7471 + type: SurveillanceCameraScience + components: + - rot: 3.141592653589793 rad + pos: -22.5,-12.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science Foyer + type: SurveillanceCamera +- uid: 7472 + type: SurveillanceCameraScience + components: + - rot: 3.141592653589793 rad + pos: -21.5,-8.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: RD's Room + type: SurveillanceCamera +- uid: 7473 + type: SurveillanceCameraScience + components: + - rot: 3.141592653589793 rad + pos: -14.5,-10.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: RND + type: SurveillanceCamera +- uid: 7474 + type: SurveillanceCameraScience + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-7.5 + parent: 30 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Sci Hall + type: SurveillanceCamera +... diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml deleted file mode 100644 index fec96a2e62..0000000000 --- a/Resources/Maps/bagel.yml +++ /dev/null @@ -1,190859 +0,0 @@ -meta: - format: 3 - name: DemoStation - author: Space-Wizards - postmapinit: false -tilemap: - 0: Space - 1: FloorArcadeBlue - 10: FloorAsteroidSand - 12: FloorBar - 15: FloorBlueCircuit - 21: FloorClown - 22: FloorDark - 23: FloorDarkDiagonal - 26: FloorDarkMini - 27: FloorDarkMono - 29: FloorDarkPavement - 31: FloorDarkPlastic - 37: FloorFreezer - 38: FloorGlass - 39: FloorGold - 40: FloorGrass - 41: FloorGrassDark - 42: FloorGrassJungle - 44: FloorGreenCircuit - 46: FloorHydro - 48: FloorLaundry - 49: FloorLino - 51: FloorMetalDiamond - 52: FloorMime - 53: FloorMono - 55: FloorPlanetGrass - 56: FloorPlastic - 57: FloorRGlass - 58: FloorReinforced - 60: FloorShowroom - 61: FloorShuttleBlue - 62: FloorShuttleOrange - 64: FloorShuttleRed - 65: FloorShuttleWhite - 67: FloorSnow - 68: FloorSteel - 71: FloorSteelDirty - 74: FloorSteelMono - 76: FloorSteelPavement - 78: FloorTechMaint - 79: FloorTechMaint2 - 80: FloorTechMaint3 - 81: FloorWhite - 84: FloorWhiteHerringbone - 85: FloorWhiteMini - 86: FloorWhiteMono - 88: FloorWhitePavement - 89: FloorWhitePavementVertical - 90: FloorWhitePlastic - 91: FloorWood - 92: FloorWoodTile - 93: Lattice - 94: Plating -entities: -- uid: 0 - type: WallReinforced - components: - - pos: -62.5,-23.5 - parent: 60 - type: Transform -- uid: 1 - type: Window - components: - - pos: -64.5,1.5 - parent: 60 - type: Transform -- uid: 2 - type: ClothingNeckScarfStripedGreen - components: - - pos: -15.652456,-29.638643 - parent: 60 - type: Transform -- uid: 3 - type: SpawnPointJanitor - components: - - pos: -4.5,-27.5 - parent: 60 - type: Transform -- uid: 4 - type: WallSolidRust - components: - - pos: -62.5,9.5 - parent: 60 - type: Transform -- uid: 5 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-23.5 - parent: 60 - type: Transform -- uid: 6 - type: WallReinforced - components: - - pos: -32.5,-5.5 - parent: 60 - type: Transform -- uid: 7 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -9.5,-27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8 - type: ReinforcedWindow - components: - - pos: -26.5,-17.5 - parent: 60 - type: Transform -- uid: 9 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-7.5 - parent: 60 - type: Transform -- uid: 10 - type: ReinforcedWindow - components: - - pos: -28.5,-8.5 - parent: 60 - type: Transform -- uid: 11 - type: WallReinforced - components: - - pos: 56.5,-4.5 - parent: 60 - type: Transform -- uid: 12 - type: WallReinforced - components: - - pos: -24.5,-6.5 - parent: 60 - type: Transform -- uid: 13 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -35.5,-5.5 - parent: 60 - type: Transform -- uid: 14 - type: ClothingNeckScarfStripedRed - components: - - pos: -17.449331,-29.623018 - parent: 60 - type: Transform -- uid: 15 - type: CableMV - components: - - pos: 43.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16 - type: WallSolid - components: - - pos: -62.5,13.5 - parent: 60 - type: Transform -- uid: 17 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-6.5 - parent: 60 - type: Transform -- uid: 18 - type: RandomInstruments - components: - - pos: 55.5,-5.5 - parent: 60 - type: Transform -- uid: 19 - type: ToolboxElectricalFilled - components: - - pos: 37.455032,-37.40484 - parent: 60 - type: Transform -- uid: 20 - type: WallReinforced - components: - - pos: -20.5,-8.5 - parent: 60 - type: Transform -- uid: 21 - type: PlushieLizard - components: - - pos: 55.62253,-8.328542 - parent: 60 - type: Transform -- uid: 22 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-10.5 - parent: 60 - type: Transform -- uid: 23 - type: CableApcExtension - components: - - pos: -61.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-12.5 - parent: 60 - type: Transform -- uid: 25 - type: ReinforcedWindow - components: - - pos: -32.5,-7.5 - parent: 60 - type: Transform -- uid: 26 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 27 - type: CableApcExtension - components: - - pos: -66.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28 - type: CableApcExtension - components: - - pos: -65.5,7.5 - parent: 60 - type: Transform -- uid: 29 - type: TableCarpet - components: - - pos: 47.5,-38.5 - parent: 60 - type: Transform -- uid: 30 - type: TableReinforced - components: - - pos: -63.5,9.5 - parent: 60 - type: Transform -- uid: 31 - type: WallSolid - components: - - pos: -56.5,-20.5 - parent: 60 - type: Transform -- uid: 32 - type: CableHV - components: - - pos: -69.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33 - type: WallSolid - components: - - pos: -61.5,-20.5 - parent: 60 - type: Transform -- uid: 34 - type: Grille - components: - - pos: -69.5,-19.5 - parent: 60 - type: Transform -- uid: 35 - type: CableHV - components: - - pos: -65.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 36 - type: AirlockHeadOfPersonnelLocked - components: - - name: EVA Storage - type: MetaData - - pos: 2.5,-37.5 - parent: 60 - type: Transform -- uid: 37 - type: hydroponicsTray - components: - - pos: -59.5,-24.5 - parent: 60 - type: Transform -- uid: 38 - type: WallReinforced - components: - - pos: -64.5,-8.5 - parent: 60 - type: Transform -- uid: 39 - type: Grille - components: - - pos: -55.5,-24.5 - parent: 60 - type: Transform -- uid: 40 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,24.5 - parent: 60 - type: Transform -- uid: 41 - type: WallSolid - components: - - pos: 18.5,10.5 - parent: 60 - type: Transform -- uid: 42 - type: Stool - components: - - pos: -62.5,-14.5 - parent: 60 - type: Transform -- uid: 43 - type: WeldingFuelTankFull - components: - - pos: -55.5,-13.5 - parent: 60 - type: Transform -- uid: 44 - type: WallReinforced - components: - - pos: -64.5,14.5 - parent: 60 - type: Transform -- uid: 45 - type: Catwalk - components: - - pos: 30.5,-60.5 - parent: 60 - type: Transform -- uid: 46 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -33.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 47 - type: GasPipeStraight - components: - - pos: -36.5,-11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 48 - type: WallReinforced - components: - - pos: -62.5,-17.5 - parent: 60 - type: Transform -- uid: 49 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-27.5 - parent: 60 - type: Transform -- uid: 50 - type: WallSolid - components: - - pos: 34.5,-8.5 - parent: 60 - type: Transform -- uid: 51 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 52 - type: SignalButton - components: - - pos: -15.5,-51.5 - parent: 60 - type: Transform -- uid: 53 - type: WallSolid - components: - - pos: 54.5,-7.5 - parent: 60 - type: Transform -- uid: 54 - type: TableWood - components: - - pos: 49.5,-18.5 - parent: 60 - type: Transform -- uid: 55 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-7.5 - parent: 60 - type: Transform -- uid: 56 - type: CableMV - components: - - pos: -11.5,4.5 - parent: 60 - type: Transform -- uid: 57 - type: ReinforcedWindow - components: - - pos: -21.5,-16.5 - parent: 60 - type: Transform -- uid: 58 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-20.5 - parent: 60 - type: Transform -- uid: 59 - type: MedicalBed - components: - - pos: 41.5,-19.5 - parent: 60 - type: Transform -- uid: 60 - components: - - type: MetaData - - pos: 0.4558292,0.42837813 - parent: 943 - type: Transform - - chunks: - 0,-1: - ind: 0,-1 - tiles: RAAAAkQAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAARAAAA0QAAAJeAAAARAAAAkQAAANEAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAEQAAAJEAAADRAAAAkQAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAACRAAAA0QAAABEAAADTwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAA0QAAABEAAACRAAAAF4AAABeAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABEAAADRAAAAkQAAAFeAAAATgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAADgAAAMWAAADFgAAAl4AAAA6AAAAOgAAADoAAAA6AAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAADFgAAAhYAAAAWAAACOgAAADoAAAA6AAAAOgAAAF4AAABOAAAAXgAAAF4AAABdAAAAAAAAAF0AAABeAAAARAAAAxYAAAEWAAAAXgAAADoAAAAPAAAAOgAAADoAAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAABdAAAAXgAAAEQAAAEWAAACFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAXQAAAF4AAABEAAACFgAAAxYAAABeAAAAFgAAAhYAAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAARAAAARYAAAIWAAABXgAAAF4AAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAABdAAAAXgAAAEQAAAIWAAADXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAADFgAAAxYAAAAWAAAAFgAAARYAAANeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAAA== - -1,-1: - ind: -1,-1 - tiles: RAAAAUQAAABeAAAAXQAAAF4AAABHAAAARwAAABYAAAIWAAAAFgAAARYAAAJeAAAAAAAAAAAAAABeAAAARAAAA0QAAAFEAAABXgAAAF0AAABeAAAARwAAAEcAAABEAAAARwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAEQAAAJEAAABRAAAA14AAABdAAAAXgAAAEQAAAJHAAAARAAAA0cAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAAUQAAAJeAAAAXQAAAF4AAABHAAAARwAAAEcAAABHAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAACXgAAAF0AAABeAAAARAAAAEcAAABEAAACRAAAA14AAAAAAAAAXgAAAF4AAAAlAAAAXgAAAEQAAANEAAABRAAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABVAAADVQAAA14AAABEAAAARAAAAUQAAAJeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAVQAAAFQAAANeAAAARAAAAEQAAABEAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABRAAADXgAAAF4AAABEAAADRAAAAV4AAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFbAAADWwAAA14AAAAWAAABRAAAAEQAAAFeAAAAXQAAAAAAAABdAAAAXgAAAF4AAABbAAADWwAAAyoAAABbAAAAWwAAAFsAAABeAAAAFgAAAEQAAAJEAAADXgAAAF0AAAAAAAAAXQAAAF4AAABbAAAAWwAAAVsAAAEqAAAAWwAAAVsAAANbAAABXgAAABYAAAJEAAAARAAAAV4AAABdAAAAAAAAAF0AAABeAAAAWwAAAVsAAANbAAACGwAAAVsAAABbAAADWwAAAl4AAAAWAAADRAAAAEQAAAJeAAAAXQAAAF0AAABdAAAAXgAAAFsAAABbAAACWwAAAF4AAABbAAACWwAAAVsAAABeAAAAFgAAADgAAAI4AAAAXgAAAF4AAAAAAAAAXQAAAF4AAABeAAAAFgAAAxYAAANeAAAAFgAAABYAAAMWAAABXgAAABYAAABEAAABRAAAA0QAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABXgAAAF4AAABeAAAARAAAAUQAAABEAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAFgAAAxYAAAMWAAACFgAAAA== - 0,0: - ind: 0,0 - tiles: FgAAABYAAAIWAAAAFgAAAxYAAAFeAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAARAAAAxYAAAEWAAAAFgAAABYAAAAWAAACXgAAAF0AAAAAAAAAAAAAAF0AAAAmAAAAJgAAACYAAABdAAAAXgAAAEQAAAMWAAADFgAAABYAAAAWAAAAXgAAAF4AAABdAAAAAAAAAF0AAAAmAAAANwAAAjcAAAE3AAADJgAAAF4AAABEAAAAFgAAAxYAAAEWAAAAFgAAAl4AAABdAAAAAAAAAF0AAAAmAAAANwAAADcAAAE3AAACNwAAATcAAAImAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAABdAAAAJgAAADcAAAA3AAADNwAAAjcAAAM3AAADJgAAAEQAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAACYAAAAWAAAANwAAAjcAAAM3AAADFgAAACYAAABEAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAJgAAACYAAAA5AAAAJgAAACYAAABeAAAAOAAAAl0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAADRAAAAUQAAAJEAAABRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACRAAAAUQAAABEAAAARAAAAUQAAAFEAAAARAAAAEQAAABEAAABRAAAAEQAAAFEAAACRAAAAkQAAABEAAAARAAAAEQAAANEAAACRAAAAkQAAAFEAAACRAAAAEQAAAJEAAADRAAAAkQAAAJEAAACRAAAAUQAAAJEAAAARAAAAEQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADgAAAJEAAACRAAAAEQAAANEAAABRAAAAl4AAABeAAAAXgAAAF4AAABEAAAARAAAAUQAAAFEAAACRAAAA14AAABEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAARAAAAUQAAAFEAAADRAAAAEQAAANeAAAARAAAAkQAAANEAAACXgAAAEQAAABEAAAARAAAAEQAAABEAAACXgAAAEQAAABEAAAARAAAAUQAAABEAAAARAAAAkQAAANEAAAARAAAAkQAAABEAAAARAAAAEQAAABEAAAARAAAAUQAAAJEAAAARAAAA0QAAAFEAAADRAAAA14AAABEAAADRAAAAEQAAABeAAAARAAAAkQAAAJEAAABRAAAAUQAAAFeAAAARAAAAkQAAANEAAAARAAAAUQAAAJeAAAARAAAAA== - -1,0: - ind: -1,0 - tiles: RAAAA0QAAAFEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAFgAAAhYAAAEWAAAAFgAAAUQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAABYAAAAWAAACFgAAAhYAAAJEAAAARAAAAV4AAABPAAAATwAAABYAAAIWAAADFgAAABYAAAJeAAAAXQAAAF4AAABeAAAAFgAAAxYAAAEWAAABRAAAAkQAAAAWAAABTwAAAE8AAAA6AAAAOgAAADoAAAAWAAAAXgAAAAAAAABdAAAAXgAAABYAAAIWAAACFgAAAEQAAANEAAACXgAAAE8AAABPAAAAOgAAADoAAAA6AAAAFgAAAl4AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA14AAAAsAAAALAAAADoAAAA6AAAAOgAAABYAAANeAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAOAAAAjgAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAEQAAABEAAADRAAAAkQAAAJEAAAARAAAAEQAAANEAAADRAAAA14AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABEAAADRAAAA0QAAABEAAAARAAAAUQAAAFEAAADRAAAAkQAAABEAAACRAAAAEQAAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAADRAAAAEQAAABEAAADRAAAAUQAAABEAAABRAAAAkQAAABEAAAARAAAAEQAAABEAAADRAAAADgAAAE4AAABXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAEQAAAFEAAABRAAAA0QAAAJEAAADRAAAAEQAAAJEAAAARAAAAxYAAAEWAAACXgAAAFsAAABbAAADWwAAA14AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAFEAAABRAAAAUQAAAIWAAACFgAAAV4AAABbAAADWwAAAVsAAAJbAAAAWwAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADFgAAARYAAANeAAAAWwAAAFsAAABbAAAAWwAAAlsAAAJeAAAAFgAAAhYAAAEWAAABXgAAAEQAAAJEAAAARAAAA14AAABeAAAAXgAAAFsAAABbAAABWwAAAlsAAAJbAAADXgAAABYAAAEWAAADFgAAAUQAAAFEAAADRAAAAUQAAAFeAAAAWwAAAFsAAAFbAAADWwAAA1sAAAJbAAACWwAAA14AAAAWAAABFgAAARYAAANeAAAARAAAAA== - 0,-2: - ind: 0,-2 - tiles: RAAAAUQAAABeAAAAFgAAAxYAAAIWAAABWwAAAVsAAABbAAAAXgAAADEAAAAxAAAAMQAAADEAAAAxAAAAXgAAAEQAAABEAAACXgAAABYAAAEWAAABFgAAAV4AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAAAxAAAAMQAAAF4AAABEAAACRAAAAhYAAAIWAAACFgAAABYAAAAWAAAAFgAAAxYAAAJeAAAAXgAAAF4AAAA5AAAAXgAAAF4AAAAWAAACRAAAA0QAAANeAAAAFgAAAxYAAAAWAAABFgAAARYAAAMWAAACXgAAAAwAAANbAAABWwAAA1sAAANbAAACWwAAAUQAAAJEAAACXgAAABYAAAAWAAAAFgAAABYAAAIWAAABFgAAAV4AAAAMAAADWwAAAVsAAAFbAAADWwAAAFsAAANEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAADAAAAgwAAAAMAAADDAAAAwwAAAIMAAACRAAAA0QAAANeAAAAOAAAAzgAAAM4AAADOAAAATgAAAM4AAAAXgAAAF4AAABeAAAAXgAAAAwAAAFeAAAAXgAAAEQAAABEAAABOAAAAEQAAANEAAAARAAAAkQAAANEAAAARAAAAkQAAAFEAAABRAAAA0QAAAFEAAAARAAAAEQAAAFEAAACRAAAADgAAAJEAAADRAAAAUQAAABEAAACRAAAAUQAAANEAAADRAAAAEQAAAJEAAAARAAAA0QAAABEAAABRAAAAEQAAAM4AAACRAAAAUQAAANEAAABRAAAAEQAAAJEAAACRAAAAkQAAAFEAAACRAAAAkQAAAJEAAACRAAAA0QAAANEAAABXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAF4AAABdAAAAXQAAAF4AAABEAAACRAAAAEQAAANEAAAARAAAAxYAAAEWAAAAFgAAAl4AAABEAAAARAAAAkQAAANeAAAAAAAAAAAAAABeAAAARAAAAkQAAABEAAADRAAAAF4AAAAWAAAAFgAAARYAAABeAAAARAAAA0QAAAFEAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAJeAAAAXgAAAEQAAAJEAAACRAAAAl4AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABEAAABRAAAAV4AAABEAAACRAAAAUQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAAARAAAAg== - -1,-2: - ind: -1,-2 - tiles: XgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAEQAAAFbAAACXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAADEAAAAxAAAAMQAAADEAAAAWAAADFgAAAhYAAAEWAAACFgAAAhYAAAJeAAAARAAAAF4AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAAAxAAAAFgAAAhYAAAMWAAADFgAAABYAAAMWAAADXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAMQAAABYAAAIWAAAAFgAAABYAAAIWAAABFgAAAF4AAABEAAACTwAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAARYAAABeAAAARAAAAEQAAANEAAADRAAAAEQAAAJEAAACRAAAAkQAAABEAAADRAAAAUQAAAFEAAABRAAAA0QAAAJEAAADOAAAAkQAAANEAAADRAAAAEQAAANEAAAARAAAAkQAAABEAAACRAAAAkQAAABEAAABRAAAAEQAAAFEAAABRAAAADgAAANEAAABRAAAAEQAAAJEAAADRAAAAkQAAAJEAAADRAAAAkQAAAFEAAADRAAAAkQAAABEAAAARAAAAEQAAAI4AAAARAAAAEQAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAF4AAABdAAAAXQAAAF0AAABeAAAAFgAAAl4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABEAAACRAAAA0QAAAFeAAAAXQAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAARAAAAkQAAAJEAAACXgAAAF0AAABeAAAAJQAAAF4AAAAWAAADFgAAAxYAAAMWAAABXgAAAAAAAAAAAAAAXgAAAEQAAAA4AAAAOAAAA14AAABdAAAAXgAAACUAAABeAAAAFgAAAxYAAAIWAAADFgAAAl4AAAAAAAAAAAAAAF4AAABEAAABRAAAAUQAAAFeAAAAXQAAAF4AAABQAAACXgAAAF4AAABeAAAAMwAAAF4AAABeAAAAAAAAAAAAAABeAAAARAAAAA== - 0,-3: - ind: 0,-3 - tiles: RAAAAUQAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAV4AAAA1AAAANQAAADUAAAA1AAAAXgAAAF4AAABeAAAARwAAAEcAAABeAAAAXgAAAF4AAABEAAACRAAAAkQAAAA1AAAANQAAADUAAAA1AAAANQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAARAAAAUQAAAFEAAAAXgAAADUAAAA1AAAANQAAADUAAABeAAAAXgAAAEcAAABeAAAAXgAAAEcAAABeAAAAXgAAAEQAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAARwAAAF4AAABeAAAARwAAAF4AAABEAAAARAAAAV4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAl4AAAAWAAADFgAAAhYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAARAAAAEQAAANeAAAAFgAAARYAAAMWAAABXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABPAAAAXgAAAEQAAABEAAADFgAAARYAAAIWAAADFgAAAk8AAABeAAAAXgAAABYAAAEWAAACFgAAAF4AAAAxAAAAMQAAABYAAAFEAAAARAAAA14AAAAWAAAAFgAAARYAAANeAAAAXgAAAF4AAABbAAABWwAAAFsAAAJeAAAAMQAAADEAAABeAAAARAAAAEQAAANeAAAAFgAAAxYAAAEWAAADXgAAAF4AAABeAAAAWwAAA1sAAABbAAAAXgAAADEAAAAxAAAAXgAAAEQAAANEAAACXgAAABYAAAMWAAAAFgAAAF4AAABeAAAAXgAAAFsAAANbAAACWwAAAl4AAAAxAAAAMQAAAF4AAABEAAAARAAAA14AAABeAAAAXgAAABYAAAJeAAAATwAAAF4AAABeAAAAWwAAA14AAABeAAAAMQAAADEAAABeAAAARAAAAEQAAAJeAAAAFgAAAhYAAAMWAAABXgAAAFsAAAJbAAAAXgAAADEAAAAxAAAAMQAAADEAAAAxAAAAXgAAAA== - -1,-3: - ind: -1,-3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAUcAAABeAAAAXgAAAF4AAABeAAAARwAAAE8AAAAWAAACFgAAAU4AAAAWAAABFgAAABYAAANEAAAARAAAA0QAAABHAAAARwAAAEcAAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAANeAAAAFgAAAhYAAAEWAAADRAAAAkQAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAACXgAAABYAAAMWAAACFgAAAV4AAABEAAADRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABeAAAARAAAA14AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXgAAAEQAAAJeAAAATgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAF4AAABEAAABXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAA== - 1,-2: - ind: 1,-2 - tiles: WwAAAVsAAAJbAAABWwAAAVsAAAFbAAACXgAAAAwAAAIMAAABDAAAAwwAAAFeAAAATAAAAkwAAABMAAABLgAAAFsAAABbAAABWwAAA1sAAANbAAADWwAAA14AAAAMAAAADAAAAgwAAAMMAAABXgAAAC4AAAAuAAAATAAAAC4AAABbAAACWwAAAVsAAABbAAAAWwAAAFsAAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAAAuAAAALgAAAEwAAAEuAAAAWwAAAFsAAAFbAAACWwAAAlsAAAJbAAAAXgAAACUAAAAlAAAAJQAAACUAAABeAAAALgAAAC4AAABMAAACTAAAAlsAAABbAAABWwAAAFsAAAFbAAADWwAAAF4AAAAlAAAAJQAAACUAAAAlAAAAXgAAAEwAAAJMAAADTAAAAEwAAAEMAAABDAAAAwwAAAMMAAAADAAAAQwAAAJeAAAAJQAAACUAAAAlAAAAJQAAAF4AAABMAAADLgAAAEwAAAFMAAACDAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAA14AAABeAAAALgAAAF4AAAAuAAAALgAAAEQAAABEAAACOAAAAEQAAAJEAAACRAAAA0QAAANEAAADRAAAAEQAAAFEAAACRAAAAUQAAAFEAAABRAAAAUQAAAE4AAAARAAAATgAAABEAAAARAAAAUQAAABEAAACRAAAAUQAAABEAAABRAAAAUQAAAFEAAACRAAAAEQAAAFEAAACRAAAAEQAAAE4AAABRAAAA0QAAABEAAABRAAAAEQAAABEAAADRAAAAkQAAABEAAACRAAAAEQAAANEAAACRAAAA0QAAANEAAAAXgAAAF4AAAAMAAABDAAAAgwAAAMMAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAV4AAAAWAAABDAAAAQwAAAIMAAABDAAAAAwAAAJbAAADWwAAA1sAAAFeAAAAUQAAAVEAAAFeAAAARAAAAUQAAAJeAAAAFgAAAQwAAAAMAAADDAAAAAwAAAMMAAABWwAAAFsAAAFbAAACXgAAAFEAAABRAAAAUQAAAUQAAAFEAAADFgAAAhYAAAMMAAACDAAAAQwAAAAMAAABDAAAAVsAAANbAAACWwAAAV4AAABeAAAAXgAAAF4AAABEAAABRAAAAxYAAAEWAAADDAAAAQwAAAMMAAABDAAAAQwAAABbAAACWwAAA1sAAANeAAAAUQAAAFEAAABeAAAARAAAAEQAAABeAAAAFgAAAgwAAAIMAAAADAAAAAwAAAEMAAABWwAAA1sAAAFbAAACXgAAAFEAAAJRAAAAUQAAAQ== - 1,-1: - ind: 1,-1 - tiles: RAAAAEQAAAFeAAAAFgAAAQwAAAIMAAADDAAAAgwAAAMMAAAAWwAAA1sAAABbAAABXgAAAF4AAABeAAAAXgAAAEQAAANEAAACXgAAAF4AAAAVAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAl4AAABbAAABWwAAAFEAAAFEAAAARAAAA14AAAAWAAADFQAAABUAAAAVAAAAFQAAADQAAAA0AAAANAAAABYAAANeAAAAWwAAAlsAAANbAAABRAAAAkQAAAFeAAAAFgAAABUAAAAVAAAAFQAAABUAAAA0AAAANAAAADQAAAAWAAADXgAAAFsAAAFbAAACXgAAAEQAAABEAAACXgAAABYAAAEVAAAAFQAAABUAAAAVAAAANAAAADQAAAA0AAAAFgAAAV4AAABeAAAAXgAAAF4AAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAARAAAA0QAAAJPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAADgAAAM4AAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA14AAAA6AAAAOgAAADoAAAA6AAAAFgAAA14AAAAWAAACFgAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANeAAAAOgAAADoAAAA6AAAAOgAAABYAAAEWAAAAFgAAAhYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAAXgAAADoAAAA6AAAAOgAAADoAAAAWAAABFgAAABYAAANeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABEAAABRAAAAl4AAAA6AAAAOgAAADoAAAA6AAAAFgAAABYAAAFeAAAAXgAAAF4AAABOAAAATgAAAF4AAABOAAAARAAAAkQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAARAAAAl4AAABEAAAARAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAARAAAAl4AAABeAAAARAAAAkQAAABeAAAAXQAAAF4AAAAWAAACFgAAAA8AAAAWAAAAFgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAA== - 1,0: - ind: 1,0 - tiles: RAAAAUQAAABeAAAAAAAAAF4AAAAsAAAARAAAAQ8AAAAWAAADLAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACXgAAAAAAAABeAAAALAAAACwAAAAPAAAALAAAACwAAABeAAAAAAAAAF4AAABEAAACXgAAAF4AAABEAAAARAAAAF4AAAAAAAAAXgAAAEQAAANEAAAADwAAAEQAAAFEAAAAXgAAAAAAAABeAAAARAAAAF4AAABeAAAARAAAAkQAAANeAAAAXQAAAF4AAABeAAAAXgAAABYAAAFeAAAAXgAAAF4AAABdAAAAXgAAAEQAAANEAAACXgAAAEQAAABEAAADXgAAAAAAAABeAAAAFgAAADEAAAAxAAAAMQAAAF4AAABeAAAAAAAAAF4AAABEAAAARAAAAEQAAABEAAABRAAAAV4AAABeAAAAXgAAAF4AAAAWAAACFgAAABYAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFeAAAAOAAAAzgAAAFeAAAARAAAA0QAAAFeAAAAXgAAABYAAAFeAAAAXgAAAEQAAAJEAAACXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAAEQAAAFEAAABRAAAA0QAAAJEAAABRAAAAkQAAAFEAAAARAAAA0QAAABEAAAARAAAAUQAAAJEAAAARAAAAEQAAANEAAABRAAAA0QAAANEAAAARAAAAUQAAANEAAAARAAAAkQAAAFEAAAARAAAAUQAAABEAAABRAAAAUQAAAFEAAAARAAAAkQAAAFEAAADRAAAA0QAAANEAAAARAAAA0QAAANEAAACRAAAA0QAAABEAAADRAAAAzgAAAA4AAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABEAAABRAAAAl4AAABVAAABVQAAAl4AAAAAAAAAAAAAAAAAAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJRAAABVQAAA1UAAAFeAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABOAAAAXgAAAF4AAABOAAAATgAAAEQAAANEAAAAXgAAAFUAAABVAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAF4AAABVAAAAVQAAAl4AAAAPAAAADwAAAA8AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAA== - -2,-2: - ind: -2,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAADWwAAAV4AAABeAAAAXgAAAE4AAABeAAAAMQAAADEAAAAxAAAAMQAAAFsAAABeAAAATgAAAF4AAABeAAAAXgAAAEMAAAheAAAAXgAAAF4AAABOAAAAXgAAADEAAAAxAAAAMQAAADEAAABbAAACXgAAAE4AAABeAAAAXgAAAF4AAABDAAAAXQAAAF4AAABeAAAATgAAAF4AAAAxAAAAMQAAADEAAAAxAAAAWwAAAF4AAABOAAAAXgAAAF4AAABbAAACXgAAAF0AAABeAAAAXgAAAE4AAABeAAAAMQAAADEAAAAxAAAAMQAAAFsAAAFeAAAATgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABOAAAAXgAAAFsAAAFbAAAAWwAAAFsAAAJcAAACXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADRAAAAEQAAAFEAAACOAAAAUQAAAJEAAACRAAAAEQAAANEAAAARAAAAUQAAAJEAAACRAAAAUQAAANEAAADRAAAA0QAAAJEAAAARAAAAzgAAAJEAAADRAAAAEQAAANEAAADRAAAA0QAAANEAAACRAAAA0QAAAJEAAABRAAAAkQAAAJEAAAARAAAAkQAAAM4AAAARAAAA0QAAANEAAACRAAAA0QAAAJEAAADRAAAAUQAAAJEAAADRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAAAXgAAAEQAAAJeAAAARAAAAEQAAAFEAAAARAAAAUQAAANEAAABRAAAAkQAAAAWAAADRAAAA0QAAANEAAAARAAAAUQAAANEAAAAFgAAAUQAAAJEAAAARAAAAkQAAANEAAACRAAAA0QAAANEAAADFgAAAV4AAABEAAACRAAAAEQAAABEAAAARAAAAF4AAABEAAAARAAAAEQAAANEAAABRAAAA0QAAAJEAAAARAAAABYAAAFEAAAARAAAAkQAAANEAAABRAAAAkQAAANeAAAAXgAAAF4AAABeAAAARAAAAl4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAF4AAAA4AAACFgAAAkQAAABEAAABRAAAA0QAAABEAAABRAAAAkQAAAFEAAACRAAAA14AAAAWAAAAFgAAABYAAAJeAAAARAAAAw== - -2,-1: - ind: -2,-1 - tiles: XgAAAEQAAANEAAACRAAAAkQAAABEAAADRAAAAkQAAAFEAAADRAAAABYAAAAWAAABFgAAAxYAAAFeAAAARAAAA0QAAABEAAAARAAAAUQAAANEAAABRAAAAEQAAABEAAABRAAAAEQAAABEAAADXgAAAF4AAABeAAAAXgAAAEQAAABEAAADRAAAAUQAAABEAAAARAAAA0QAAAJEAAABRAAAAUQAAANEAAABRAAAAl4AAAAWAAAAFgAAAV4AAABEAAADRAAAAUQAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA0QAAANEAAABFgAAARYAAABeAAAARAAAAUQAAABEAAACRAAAAl4AAAAWAAACFgAAAxYAAABeAAAARAAAAkQAAANEAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAV4AAABeAAAAFgAAARYAAAAWAAACXgAAAF4AAABEAAACRAAAAl4AAAAWAAABFgAAAV4AAABEAAADRAAAAUQAAAIWAAAAFgAAAxYAAAIWAAADFgAAAxYAAAMWAAAARAAAAEQAAAFEAAAAFgAAAxYAAABeAAAARAAAAUQAAAJEAAACXgAAAF4AAAAWAAACFgAAABYAAANeAAAAXgAAAEQAAAFEAAACXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAAkQAAAFeAAAAFgAAABYAAAAWAAADXgAAAEQAAAFEAAAARAAAAF4AAABRAAACUQAAA14AAABEAAACRAAAAUQAAANEAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABEAAAARAAAAkQAAAJEAAABUQAAA1EAAAFeAAAARAAAAEQAAABEAAACRAAAA0QAAAJEAAACRAAAA0QAAAJEAAADRAAAAkQAAAJEAAABXgAAABYAAAAWAAABXgAAAEQAAABeAAAARAAAAkQAAAFEAAADRAAAA0QAAABEAAAARAAAAkQAAABEAAAARAAAAV4AAABEAAAARAAAA1EAAANEAAACFgAAAEQAAAJEAAABRAAAAUQAAABEAAACRAAAAUQAAANEAAACRAAAAEQAAAAWAAABRAAAA0QAAABeAAAARAAAAV4AAABEAAACRAAAAkQAAABEAAADRAAAAUQAAANEAAACRAAAAkQAAABEAAADXgAAABYAAAEWAAACXgAAADgAAAFeAAAAPAAAAEQAAAJEAAADXgAAABYAAAJeAAAARAAAAEQAAABeAAAAFgAAA14AAABeAAAAXgAAAF4AAABEAAACPAAAADwAAABEAAACOgAAADoAAAA6AAAAOgAAADoAAABEAAACFgAAARYAAAIWAAADFgAAAl4AAABEAAABRAAAAQ== - -2,0: - ind: -2,0 - tiles: PAAAADwAAABEAAACOgAAADoAAAA6AAAAOgAAADoAAABEAAACWwAAAVsAAAJbAAABWwAAAF4AAABEAAAARAAAADwAAAA8AAAARAAAADoAAAA6AAAAOgAAADoAAAA6AAAARAAAAFsAAANbAAADWwAAAlsAAABeAAAARAAAAkQAAAE8AAAAPAAAAEQAAAA6AAAAOgAAADoAAAA6AAAAOgAAAEQAAAMWAAACFgAAABYAAAIWAAACXgAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAARYAAAIWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAEQAAAAWAAAAFgAAAU8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOAAAAEQAAANEAAAARAAAA0QAAAJEAAADRAAAA0QAAAFEAAABRAAAA0QAAANEAAACRAAAA0QAAAFEAAAARAAAAkQAAANEAAABRAAAAUQAAAFEAAABRAAAAEQAAANEAAADRAAAAkQAAABEAAACRAAAAEQAAAFEAAABRAAAAUQAAAFEAAACRAAAAUQAAAJEAAAARAAAAkQAAABEAAACRAAAAkQAAAJEAAADRAAAAkQAAAJEAAAARAAAAkQAAAJEAAABRAAAAhYAAANeAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADgAAAJEAAACFgAAAF4AAAAXAAACWwAAA1sAAAJbAAACWwAAA1sAAAIXAAAAXgAAAF0AAABdAAAAXQAAAF4AAABEAAADDwAAABYAAAJeAAAAFwAAAlsAAANbAAAAWwAAAFsAAAFbAAABFwAAAV4AAAAAAAAAAAAAAAAAAABeAAAARAAAAw8AAABEAAABXgAAABcAAAFbAAAAWwAAAFsAAANbAAADWwAAABcAAAJeAAAAXQAAAF0AAABdAAAAXgAAAEQAAAEPAAAAFgAAAF4AAAAXAAABWwAAAFsAAAFbAAAAWwAAAFsAAAEXAAADXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAARYAAANeAAAAFwAAAFsAAAJbAAABWwAAAVsAAABbAAACFwAAAl4AAAAWAAABFgAAAxYAAABeAAAARAAAAQ== - 1,-3: - ind: 1,-3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAF4AAABHAAAAXgAAAF4AAABeAAAATgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAABYAAAEWAAABFgAAAhYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAATwAAABYAAAIWAAAAFgAAAxYAAAAWAAADFgAAAF4AAAAMAAADDAAAAAwAAAAMAAADDAAAA14AAAAuAAAALgAAAC4AAABbAAABWwAAAVsAAABbAAACWwAAAFsAAAEWAAACDAAAAgwAAAAMAAABDAAAAgwAAAIWAAADTAAAAEwAAAJMAAACWwAAAVsAAAJbAAABWwAAAVsAAABbAAAAXgAAAAwAAAMMAAACDAAAAQwAAAEMAAACXgAAAEwAAAAuAAAALgAAAFsAAAJbAAABWwAAAVsAAAJbAAADWwAAAF4AAAAMAAACDAAAAgwAAAMMAAACXgAAAF4AAABMAAADXgAAAF4AAABbAAABWwAAAFsAAAJbAAACWwAAAVsAAAFeAAAADAAAAgwAAAIMAAAADAAAAF4AAABMAAAATAAAA0wAAAMuAAAAWwAAAFsAAABbAAAAWwAAAlsAAANbAAADXgAAAAwAAAEMAAACDAAAAwwAAAFeAAAATAAAAUwAAABMAAABTAAAAQ== - -3,0: - ind: -3,0 - tiles: FgAAAhYAAAEWAAACFgAAA14AAABaAAADWgAAAl4AAAA4AAAARAAAA0QAAANEAAADXgAAADwAAAA8AAAAPAAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAAV4AAAA8AAAAPAAAADwAAAAWAAABFgAAA14AAAAWAAABFgAAAhYAAAIWAAAAFgAAAV4AAABEAAADRAAAAkQAAANeAAAAPAAAADwAAAA8AAAAFgAAABYAAAMWAAADFgAAAhYAAAIWAAACFgAAABYAAANeAAAARAAAAUQAAAFEAAACXgAAAF4AAABeAAAAFgAAABYAAAMWAAABXgAAABYAAAMWAAABFgAAAxYAAAIWAAACXgAAAEQAAABEAAADRAAAA08AAAAWAAAAFgAAARYAAAApAAAAKQAAA14AAAAWAAACFgAAAhYAAAIWAAAAFgAAAF4AAAA4AAADOAAAATgAAABeAAAAFgAAABYAAAAWAAACXgAAAF4AAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAXgAAABYAAANbAAADWwAAAF4AAABbAAAAXgAAAEQAAABEAAAARAAAAzgAAAJEAAABRAAAAUQAAAFdAAAAAAAAAF4AAAAWAAADWwAAAlsAAAIWAAAAWwAAAF4AAABEAAAARAAAAUQAAAA4AAAARAAAAUQAAABEAAACXQAAAAAAAABeAAAAFgAAAlsAAABbAAACXgAAAFsAAABeAAAARAAAAkQAAAFEAAAAOAAAAUQAAAJEAAABRAAAAl4AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAADwAAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAEWAAACFgAAABYAAAAWAAACXgAAABYAAAEWAAADFgAAABYAAAI8AAAAJQAAACUAAABeAAAARAAAA0QAAAFEAAABHwAAARYAAAIWAAABFgAAAl4AAAAWAAACFgAAABYAAAAWAAACPAAAADwAAAAlAAAAXgAAAEQAAAEPAAAARAAAAh8AAAEWAAABFgAAARYAAAMWAAABPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAJQAAABYAAAFEAAABDwAAAA8AAAAWAAABFgAAARYAAAIWAAAAXgAAADwAAAAlAAAAJQAAACUAAAA8AAAAPAAAADwAAABeAAAARAAAAQ8AAABEAAABSgAAAEQAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAAw== - -3,-2: - ind: -3,-2 - tiles: RwAAAF4AAABHAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAARwAAAEcAAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAE4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAAEQAAAJEAAAARAAAA0QAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABEAAACRAAAAEQAAANEAAAARAAAA0QAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAAARAAAAUQAAABEAAACRAAAAl4AAAAWAAAAFgAAAxYAAAAWAAAAFgAAAxYAAAMWAAACHwAAAUQAAAFEAAAARAAAAV4AAABeAAAAXgAAAF4AAAAWAAADFgAAAhYAAAAWAAAAFgAAAhYAAAAWAAADFgAAAx8AAAFEAAACRAAAAEQAAABeAAAAFgAAAxYAAAEWAAAAXgAAABYAAAAWAAAAFgAAAxYAAAMWAAADFgAAAxYAAAAfAAACRAAAAEQAAAJEAAAAXgAAABYAAAEWAAAAFgAAAF4AAABbAAAAWwAAAlsAAABbAAACWwAAAVsAAAJbAAACXgAAAEQAAAJEAAACRAAAA14AAAAWAAAAFgAAAxYAAABeAAAAWwAAAlsAAAFbAAABWwAAAVsAAABbAAACWwAAA14AAAA4AAACOAAAADgAAANeAAAAFgAAABYAAAMWAAACFgAAA1sAAABbAAADWwAAAFsAAANbAAACWwAAA1sAAABeAAAARAAAAEQAAAFEAAADXgAAABYAAAMWAAABFgAAAw== - -3,-1: - ind: -3,-1 - tiles: XgAAAFwAAANcAAADWwAAAVsAAAFbAAADXAAAAlwAAABeAAAARAAAAkQAAANEAAABXgAAABYAAAMWAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABEAAADRAAAAkQAAAFeAAAAFgAAAhYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAARAAAAkQAAABEAAABXgAAABYAAAMWAAABRAAAA04AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAl4AAABeAAAAXgAAAF4AAABOAAAAXgAAABYAAAEWAAADFgAAAUQAAANEAAABRAAAAV4AAABEAAAARAAAA0QAAABeAAAAFgAAAxYAAANeAAAAXgAAAF4AAAAWAAAAFgAAAhYAAABEAAAARAAAAUQAAAFeAAAARAAAAUQAAAJEAAABXgAAABYAAAMWAAACRAAAAhYAAANeAAAAFgAAARYAAAMWAAADFgAAABYAAANeAAAARAAAAUQAAAFEAAACRAAAA14AAABeAAAAXgAAAF4AAAAWAAAAXgAAABYAAAAWAAACFgAAAhYAAAIWAAACXgAAAEQAAANEAAACRAAAA0QAAABeAAAAFgAAARYAAAJeAAAAFgAAAV4AAAAWAAAAFgAAAhYAAAIWAAAAFgAAA14AAABEAAABRAAAAkQAAAJEAAACXgAAABYAAAIWAAAARAAAABYAAAEWAAABFgAAABYAAAMWAAAAFgAAABYAAAJeAAAARAAAAUQAAANEAAABRAAAA14AAABeAAAAXgAAAF4AAAAWAAACXgAAABYAAAMWAAABFgAAAhYAAAEWAAAAFgAAAEQAAABEAAADRAAAAUQAAAJeAAAAFgAAARYAAAAWAAAAFgAAAl4AAAAWAAAAFgAAARYAAAIWAAADFgAAA14AAABEAAABRAAAAkQAAANEAAAAXgAAABYAAAAWAAADFgAAARYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAA14AAAAWAAAAFgAAAhYAAAIWAAACFgAAABYAAAAWAAADXgAAAFoAAANOAAAAXgAAADgAAANEAAAARAAAA0QAAANeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAMWAAABFgAAARYAAAMfAAADHwAAAhYAAAM4AAAARAAAAEQAAAJEAAAAXgAAADwAAAA8AAAAPAAAAA== - 2,-3: - ind: 2,-3 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAFsAAABbAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAAFsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAFsAAAJbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABOAAAAXgAAAE4AAABeAAAAWwAAAVsAAANbAAAAWwAAAwAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAC4AAAAuAAAALgAAAC4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAEcAAABMAAADTAAAAkwAAAIuAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAALgAAAC4AAABMAAABLgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAARwAAAF4AAABeAAAATAAAAl4AAABeAAAATgAAAF4AAAA4AAAAOAAAATgAAAJeAAAAUQAAA1EAAAJRAAABXgAAAF4AAAAuAAAATAAAAEwAAAFMAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAFEAAABaAAADUQAAA14AAABeAAAATAAAAUwAAAIuAAAALgAAAF4AAABRAAADUQAAAFEAAANRAAACUQAAA14AAABRAAACWgAAA1EAAABRAAADUQAAAg== - 2,-2: - ind: 2,-2 - tiles: LgAAAEwAAAEuAAAALgAAAF4AAABRAAADVAAAAFkAAAJUAAADUQAAAVEAAANRAAADWgAAAlEAAANRAAABUQAAAy4AAABMAAADLgAAAC4AAABeAAAAUQAAAlQAAAJZAAABVAAAAFEAAAJeAAAAUQAAA1oAAAJRAAADUQAAAlEAAAIuAAAATAAAA0wAAAJMAAACRAAAAFEAAANYAAACVAAAAFgAAABRAAAAUQAAAlEAAAJaAAAAUQAAA1EAAAJWAAABTAAAAUwAAAMuAAAALgAAAF4AAABRAAAAVAAAAlkAAABUAAAAUQAAAF4AAABRAAADWgAAAFEAAAJRAAAAVgAAAkwAAANMAAADLgAAAC4AAABeAAAAUQAAA1QAAAJZAAACVAAAAFEAAAJRAAABUQAAAVoAAAFRAAAAUQAAAlYAAABMAAACLgAAAC4AAAAuAAAAXgAAAFEAAANRAAAAUQAAAFEAAANRAAAAXgAAAFEAAANRAAAAUQAAA1EAAAJRAAACLgAAACgAAAAoAAAAKAAAAF4AAABeAAAAUQAAAlEAAANeAAAAXgAAAF4AAABeAAAAUQAAAF4AAABRAAAAUQAAA0QAAANEAAAARAAAAkQAAABeAAAAUQAAAFEAAABRAAABUQAAAFEAAAFeAAAAUQAAAVEAAAJRAAACXgAAAF4AAABEAAAARAAAAEQAAANEAAADUQAAAFEAAAJaAAAAWgAAAloAAABRAAACUQAAA1EAAAJaAAACUQAAAl4AAABRAAABRAAAA0QAAAJEAAADRAAAAV4AAABRAAADUQAAA1EAAAFRAAADUQAAAV4AAABRAAAAWgAAAVEAAAJeAAAAUQAAA14AAABRAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAFoAAABRAAABUQAAAVEAAAJRAAAAUQAAAFEAAANRAAACUQAAAlEAAAFRAAAAWgAAAFEAAAJRAAAAUQAAAVEAAAJaAAABUQAAAF4AAABRAAAAUQAAAVYAAABWAAADUQAAAF4AAABRAAAAUQAAAVoAAANRAAACUQAAAF4AAABRAAADWgAAAVEAAANeAAAAXgAAAFEAAAJWAAADVgAAAFEAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAA1oAAAJRAAABUQAAAlEAAAJRAAACVgAAAlYAAAFRAAABWgAAA1EAAAFRAAADUQAAA1EAAAFRAAADWgAAA1EAAABaAAABUQAAAFEAAANRAAABUQAAAlEAAAFRAAADUQAAAVoAAABRAAABUQAAAVEAAAJRAAACUQAAAFoAAAJRAAACUQAAAFEAAABRAAADUQAAAQ== - 3,-3: - ind: 3,-3 - tiles: XgAAAFsAAABbAAACWwAAA1sAAAJbAAAAXgAAAFsAAANeAAAARwAAAF4AAABeAAAAXgAAAAAAAABdAAAAXQAAAFsAAABbAAADXgAAAFsAAABbAAADWwAAAjEAAABbAAABWwAAAlsAAANHAAAARwAAAF4AAAAAAAAAXQAAAAAAAABbAAADWwAAA14AAABbAAABWwAAAF4AAAAxAAAAMQAAADEAAABbAAAARwAAAF4AAABeAAAAAAAAAF0AAABdAAAAWwAAAlsAAANbAAACWwAAAFsAAABeAAAAMQAAADEAAABeAAAAWwAAAUcAAABeAAAAXgAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAE4AAABOAAAAXgAAAEQAAAFHAAAAXgAAAEQAAABHAAAARwAAAEcAAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkcAAABHAAAARAAAAF4AAABEAAADXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAARAAAA0cAAABHAAAARAAAAEcAAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABeAAAARwAAAEQAAANHAAAARwAAAF4AAABHAAAAXgAAAF4AAABOAAAAXgAAAAAAAABdAAAAXQAAAF4AAABeAAAARwAAAEcAAABHAAAARAAAAV4AAABeAAAARwAAAF4AAABeAAAATgAAAF4AAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABdAAAAUQAAA1EAAABRAAAAUQAAA1EAAAFeAAAAXQAAAF0AAABeAAAATgAAAF4AAABOAAAAXgAAAAAAAABdAAAAXQAAAA== - 3,-2: - ind: 3,-2 - tiles: UQAAAVEAAAFRAAABWgAAAlEAAAFeAAAAAAAAAAAAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAFEAAAFRAAAAUQAAAFoAAANRAAABXgAAAAAAAAAAAAAAXgAAAE4AAABeAAAAXgAAAFsAAABeAAAAXgAAAF0AAABWAAACVgAAAVEAAANaAAAAUQAAAV4AAAAAAAAAAAAAAF4AAABOAAAAXgAAAF4AAABeAAAAWwAAAF4AAABdAAAAVgAAAlYAAAJRAAAAWgAAA1EAAAFeAAAAXQAAAAAAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAFYAAABWAAACUQAAA1oAAANRAAADXgAAAAAAAAAAAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABRAAADUQAAAFEAAANaAAADUQAAAl4AAAAAAAAAAAAAAF4AAABOAAAAXgAAAF4AAABbAAABXgAAAF4AAABdAAAAUQAAA1EAAAFRAAABUQAAAVEAAAFeAAAAXQAAAF0AAABeAAAATgAAAF4AAABeAAAAWwAAAlsAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABRAAABUQAAAVEAAANRAAABXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAAAAAABdAAAAWgAAAVoAAABaAAACUQAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAAAAAAAXQAAAFoAAABaAAAAWgAAAlEAAAFeAAAATgAAAF4AAABOAAAATgAAAE4AAABOAAAAXgAAAF0AAABeAAAAAAAAAF0AAABRAAADUQAAAlEAAAJRAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABdAAAAXgAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXQAAAF4AAAAAAAAAXQAAAFEAAAJRAAADXgAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAABaAAADUQAAAV4AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAABdAAAAUQAAAVEAAANeAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAA== - 2,-1: - ind: 2,-1 - tiles: XgAAAFEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABaAAAAWgAAAloAAABRAAADXgAAAFEAAAFRAAADUQAAAVEAAAJRAAACXgAAADwAAAA8AAAAPAAAADwAAABeAAAAUQAAA1EAAABRAAACXgAAABYAAABRAAACUQAAAVEAAAFRAAAAUQAAAl4AAAA8AAAAPAAAADwAAAA8AAAAPAAAAFEAAANaAAADUQAAARYAAAEWAAAAUQAAA1EAAANRAAADUQAAAlEAAAJeAAAAPAAAADwAAAA8AAAAPAAAAF4AAABRAAADWgAAAlEAAABeAAAAFgAAAl4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAVoAAABRAAADXgAAAF4AAAAWAAAAFgAAABYAAANeAAAAFgAAABYAAAIWAAACFgAAABYAAAMWAAACXgAAAFEAAAFaAAABUQAAAV4AAABRAAACFgAAAxYAAAMWAAABXgAAABYAAAMWAAACFgAAABYAAAAWAAAAFgAAAhYAAABRAAADWgAAAFEAAANRAAABUQAAAl4AAABeAAAAXgAAAF4AAAAWAAADFgAAAhYAAAEWAAACFgAAAhYAAAJeAAAAUQAAAFEAAAFRAAAAXgAAAFEAAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAMWAAAAFgAAABYAAAEWAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAATwAAABYAAAAWAAADFgAAAxYAAAMWAAADFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAWAAADFgAAAxYAAAIWAAAAFgAAAxYAAANeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAARAAAAkQAAAJEAAADXgAAAEQAAABEAAABRAAAA14AAAAWAAABRAAAAUQAAABEAAADXgAAAF4AAABeAAAAXgAAABYAAAJEAAACRAAAAEQAAAFEAAABRAAAAEQAAAJeAAAAFgAAAkQAAANEAAABRAAAAw== - 3,-1: - ind: 3,-1 - tiles: XgAAAF4AAABRAAABAAAAAF0AAABeAAAAXgAAAEcAAABHAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAABYAAAIWAAACXgAAAAAAAABdAAAAXgAAAF4AAABeAAAARwAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAWAAAAFgAAAV4AAAAAAAAAXQAAAF4AAABeAAAARwAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAFgAAARYAAAFeAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABRAAAAUQAAAVEAAAJeAAAATgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAUQAAAVEAAAFRAAACXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAFEAAAJRAAABUQAAAF4AAABOAAAAXgAAAF4AAABHAAAARwAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAEcAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAAkQAAABEAAADXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAABEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-4: - ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAADEAAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAAAxAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAMQAAAF4AAABeAAAATgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAA== - 2,-4: - ind: 2,-4 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAABOAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAATgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAE4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABOAAAAXgAAAE4AAABeAAAAXQAAAF4AAABeAAAAXgAAAA== - -5,-1: - ind: -5,-1 - tiles: AAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAABeAAAATgAAAE4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAA== - -5,-2: - ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAA== - 3,-4: - ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXQAAAA== - -2,-3: - ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -4,-1: - ind: -4,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAUAAAAlAAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAFAAAAFeAAAAUAAAAV4AAABOAAAATgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABeAAAAFgAAAxYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAACXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAAWAAAAFgAAAV4AAAAWAAAAFgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAABFgAAAhYAAANeAAAAFgAAABYAAABdAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAABYAAAAWAAAAXgAAABYAAAMWAAABXQAAAF4AAABeAAAAXgAAAE4AAABeAAAAFgAAARYAAAIWAAACFgAAAxYAAAMWAAABFgAAAV4AAAAWAAABFgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAABYAAAIWAAABFgAAAxYAAAAWAAABFgAAARYAAANeAAAAFgAAAxYAAANOAAAAXgAAAF4AAABeAAAATgAAAF4AAAAWAAAAJgAAABYAAAImAAAAFgAAASYAAAAWAAACXgAAABYAAAEWAAABXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAFgAAARYAAAIWAAAAFgAAAxYAAAAWAAAAFgAAAV4AAAAWAAAAFgAAAQ== - -4,-2: - ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAARwAAAEcAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARwAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABEAAACRAAAA0QAAABeAAAAXgAAAEQAAAJEAAADRAAAAV4AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADEAAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAADEAAAAxAAAAMQAAAA== - -6,-1: - ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -6,-2: - ind: -6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAA== - -4,0: - ind: -4,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAA14AAAAWAAADUQAAA14AAAAWAAACXgAAAF4AAAAWAAACFgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAhYAAAJeAAAAFgAAAl4AAAAWAAABFgAAARYAAANeAAAAFgAAAhYAAAJeAAAAXgAAAF4AAABeAAAAFgAAARYAAAIWAAADXgAAABYAAAEWAAAAFgAAAxYAAAAWAAAAFgAAABYAAAMWAAABXgAAAF4AAABeAAAAXgAAAE8AAABPAAAATwAAAF4AAAAWAAABFgAAABYAAAIWAAADFgAAABYAAAMWAAADFgAAAF4AAABeAAAAXgAAAF4AAABPAAAATwAAAE8AAABeAAAAFgAAAhYAAAAWAAAAFgAAAxYAAAMWAAADFgAAARYAAAJeAAAAXgAAAF4AAABeAAAATwAAAE8AAABPAAAAXgAAABYAAAEWAAAAFgAAAV4AAAAWAAADFgAAAhYAAANeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA4AAACOAAAATgAAAFeAAAAXgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAAFEAAAAXgAAACwAAAAWAAAADwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAUQAAA1EAAANRAAADUQAAAF4AAAAsAAAAFgAAAw8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAABRAAADUQAAAVEAAAFeAAAALAAAABYAAAMPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAACUQAAAVEAAABRAAACXgAAAF4AAAAWAAACXgAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAVEAAAFRAAAAUQAAAl4AAAAWAAAAFgAAABYAAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAANRAAABUQAAAlEAAAAWAAACFgAAAx8AAAIfAAACHwAAAF4AAABeAAAATwAAAEQAAAFeAAAAXgAAAE8AAABRAAADUQAAAFEAAAFRAAADXgAAABYAAAEfAAAAHwAAAB8AAAFeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAARAAAA0QAAAJEAAADRAAAA14AAAAWAAACFgAAARYAAAIWAAACXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAB8AAAJeAAAAXgAAAA== - -4,-3: - ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEcAAABHAAAAXgAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABHAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAAXgAAAA== - 0,-4: - ind: 0,-4 - tiles: RAAAAkQAAANEAAACRAAAA14AAABeAAAAXgAAAD4AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPgAAAEQAAANEAAACRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAQQAAAEEAAABBAAAAQQAAAEEAAABBAAAAQQAAAF4AAABEAAACRAAAAUQAAAFEAAACXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAACRAAAA14AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAADXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABEAAABRAAAA0QAAAJEAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAANEAAABRAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFEAAACRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAAkQAAABEAAAARAAAA0QAAANEAAABRAAAA0QAAABEAAABRAAAAl4AAABeAAAAXgAAAAAAAAAAAAAARAAAAkQAAAJEAAADRAAAAkQAAAJEAAABRAAAAEQAAANEAAAARAAAAUQAAANeAAAAXgAAAF4AAAAAAAAAAAAAAEQAAAJEAAADRAAAAkQAAANEAAACRAAAAUQAAABEAAAARAAAAkQAAAFEAAADXgAAAF4AAABeAAAAAAAAAAAAAABEAAADRAAAA14AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAARAAAAkQAAANEAAACXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABEAAACRAAAAEQAAAFPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAA== - -1,-4: - ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAABEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAJEAAABRAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAEQAAAJEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAABRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAUQAAAJEAAADRAAAAkQAAAJEAAAARAAAA0QAAABEAAABRAAAA0QAAANEAAADRAAAAkQAAAJEAAACRAAAAkQAAAFEAAADRAAAAEQAAAJEAAADRAAAAUQAAAFEAAACRAAAAEQAAAFEAAAARAAAA0QAAABEAAAARAAAA0QAAANEAAAARAAAAkQAAANEAAADRAAAAEQAAAFEAAABRAAAA0QAAAJEAAADRAAAA0QAAANEAAAARAAAA0QAAAFEAAAARAAAAUQAAAFeAAAAWwAAAkQAAANEAAACRAAAA14AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAFsAAAFbAAACWwAAAlsAAANeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAF4AAABbAAAAWwAAAlsAAABbAAABXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACTgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABEAAACRAAAAA== - -2,-4: - ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAANEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAABRAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAA== - -1,-6: - ind: -1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== - 0,-5: - ind: 0,-5 - tiles: XgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAA0QAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAEQAAAFEAAAARAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAQQAAAF4AAABeAAAAAAAAAAAAAABEAAABRAAAA14AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAQQAAAD0AAABBAAAAXgAAAAAAAAAAAAAARAAAAEQAAANEAAAARAAAAl4AAAAAAAAAAAAAAAAAAABdAAAAXgAAAEEAAAA9AAAAQQAAAF4AAABdAAAAAAAAAEQAAAJEAAABRAAAA0QAAAJeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAPQAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAAJEAAAAXgAAAF4AAABeAAAAXgAAAEEAAABBAAAAQQAAAD0AAABBAAAAQQAAAEEAAABeAAAARAAAAUQAAAJEAAADRAAAA14AAABeAAAAXgAAAD4AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPgAAACgAAAAoAAAARAAAAkQAAANeAAAAXgAAAF4AAABeAAAAQQAAAD0AAABBAAAAXgAAAEEAAAA9AAAAQQAAAF4AAAAoAAAAKAAAAEQAAANEAAAARAAAAwoAAABeAAAAXgAAAEEAAAA9AAAAQQAAACgAAABBAAAAPQAAAEEAAABeAAAAKAAAACgAAABEAAABRAAAA0QAAAEKAAAAXgAAAF4AAABBAAAAPQAAAEEAAAAoAAAAQQAAAD0AAABBAAAAXgAAACgAAAAoAAAARAAAAUQAAAFEAAADCgAAAF4AAABeAAAAQQAAAD0AAABBAAAAKAAAAEEAAAA9AAAAQQAAAF4AAAAoAAAAKAAAAEQAAABEAAACRAAAAwoAAABeAAAAXgAAAEEAAAA9AAAAQQAAACgAAABBAAAAPQAAAEEAAABeAAAAKAAAACgAAABEAAADRAAAAl4AAABeAAAAXgAAAF4AAABBAAAAPQAAAEEAAABeAAAAQQAAAD0AAABBAAAAXgAAAA== - -3,-3: - ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABbAAAAWwAAAl4AAABeAAAAAQAAAAEAAAABAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAXgAAAAEAAAABAAAAAQAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAFsAAABeAAAAXgAAAF4AAAABAAAAAQAAAAEAAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAARwAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -1,1: - ind: -1,1 - tiles: RAAAAEQAAAFEAAADWwAAA1sAAANbAAADWwAAAlsAAANbAAACWwAAAl4AAAAWAAADFgAAARYAAANeAAAAXgAAAEQAAANEAAAAXgAAAFsAAAFbAAACWwAAAVsAAAFbAAADWwAAAlsAAABeAAAARAAAA0QAAABEAAACRAAAAUQAAAJEAAACRAAAA14AAABbAAABWwAAAVsAAABbAAAAWwAAAVsAAAJbAAADXgAAAEQAAAJEAAAARAAAA0QAAAJEAAAARAAAAEQAAAJeAAAAWwAAAVsAAABbAAABWwAAA1sAAAFbAAABWwAAAl4AAABEAAABRAAAAEQAAANEAAAARAAAAUQAAANEAAACXgAAAFsAAABbAAADWwAAAFsAAAAWAAACFgAAARYAAAJeAAAARAAAAEQAAANEAAADRAAAAUQAAAJEAAACRAAAAF4AAABbAAACWwAAAlsAAANbAAAAFgAAAxYAAAEWAAADXgAAAEQAAAJEAAACRAAAAEQAAAFEAAAAOAAAADgAAANeAAAAWwAAAVsAAABbAAABWwAAAxYAAAIWAAABFgAAA14AAABeAAAARAAAA0QAAAJeAAAAXgAAAEQAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAAF4AAABeAAAARAAAAkQAAANEAAABRAAAAUQAAAAmAAAARAAAAV4AAABeAAAATgAAAE4AAABeAAAAMQAAADEAAAAxAAAAXgAAAEQAAAFEAAAARAAAAhYAAAEWAAAARAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAADEAAAAxAAAAMQAAAF4AAABEAAADRAAAA0QAAAIWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFEAAACXgAAAF4AAABEAAADRAAAAV4AAABEAAABRAAAAEQAAANEAAADRAAAA0QAAAJEAAADRAAAA0QAAANEAAABRAAAA0QAAAFEAAACRAAAAUQAAANEAAAARAAAAkQAAANEAAADRAAAAEQAAAFEAAADRAAAAEQAAABEAAACRAAAAUQAAABEAAAARAAAAEQAAAJEAAABXgAAAEQAAANEAAABRAAAAhYAAAIWAAADFgAAABYAAAEWAAAAFgAAAxYAAAAWAAACFgAAABYAAAFEAAACRAAAAl4AAABEAAACRAAAA0QAAANeAAAAXgAAAF4AAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAAXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAABEAAACRAAAAw== - 3,0: - ind: 3,0 - tiles: RAAAA0QAAAFEAAADRAAAAl4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAJEAAAARAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAAUQAAAFEAAABXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAANEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAADRAAAAUQAAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAABEAAACRAAAA0QAAAJEAAABRAAAAEQAAANEAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAACRAAAA0QAAAFEAAACRAAAAUQAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAAkQAAAJEAAADRAAAAkQAAAFEAAABRAAAAEQAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAABRAAAAEQAAAJEAAACRAAAA0QAAABEAAACXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAACRAAAAUQAAANEAAABRAAAAUQAAAJEAAADRAAAAV4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAA0QAAANEAAADRAAAA0QAAABEAAADRAAAAkQAAANeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAAJEAAADRAAAAEQAAAFEAAADRAAAAEQAAABEAAADXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFEAAAARAAAAkQAAAJEAAADRAAAAEQAAANEAAADRAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAAEQAAABEAAABRAAAAkQAAABEAAADRAAAAkQAAANeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAARAAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAABEAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,1: - ind: 0,1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAABRAAAA0QAAAJEAAABRAAAAEQAAANeAAAAFgAAAhYAAAMWAAADXgAAAFsAAAFbAAACXgAAAEQAAANEAAACRAAAAUQAAAFEAAAARAAAAkQAAANEAAAAXgAAABYAAAMWAAAAFgAAAV4AAABbAAAAWwAAAF4AAABEAAADRAAAAkQAAABEAAABRAAAAkQAAANEAAADRAAAARYAAAAWAAAAFgAAAhYAAAAWAAACWwAAAVsAAAJeAAAARAAAAEQAAAJEAAADRAAAAEQAAABEAAABRAAAA0QAAAJeAAAAFgAAAxYAAAIWAAADXgAAAFsAAAJbAAADXgAAAEQAAABEAAAARAAAAkQAAAJEAAACRAAAAUQAAANEAAAAXgAAABYAAAAWAAADFgAAAl4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAOAAAAkQAAAFEAAABRAAAAl4AAABEAAADRAAAAkQAAANEAAADRAAAAF4AAABdAAAAAAAAAAAAAABdAAAAXgAAAEQAAAMWAAADFgAAARYAAABEAAAARAAAAUQAAABeAAAARAAAAkQAAAJeAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABEAAAAXgAAAF4AAAAWAAADXgAAAEQAAANEAAACXgAAAEQAAAFEAAACXgAAAF0AAAAAAAAAAAAAAF0AAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAV4AAABEAAAARAAAAV4AAABdAAAAAAAAAAAAAABdAAAAXgAAADgAAABEAAAARAAAABYAAANeAAAARAAAAUQAAANeAAAARAAAA0QAAANeAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABEAAABRAAAAUQAAAMWAAADXgAAAEQAAAFEAAABXgAAAEQAAAFEAAACXgAAAF0AAAAAAAAAAAAAAF0AAABeAAAARAAAAxYAAAEWAAACFgAAAl4AAABEAAAARAAAAl4AAABEAAABRAAAAl4AAABdAAAAAAAAAAAAAABdAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAARAAAA0QAAANeAAAARAAAAEQAAAFeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAARAAAA0QAAANEAAABXgAAAEQAAAJEAAACXgAAAEQAAAJEAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXgAAAA== - 0,-6: - ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,-5: - ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADRAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFEAAADRAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADRAAAAEQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAADRAAAAygAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAoAAABEAAADRAAAA0QAAAEoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAKAAAARAAAAEQAAANEAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAACgAAAEQAAABEAAAARAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAoAAABEAAADRAAAA0QAAAMoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAAJEAAABKAAAAA== - 1,1: - ind: 1,1 - tiles: RAAAAUQAAAFeAAAAOAAAAjgAAAFeAAAAXgAAAB8AAAFeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADXgAAABYAAAMWAAABFgAAABYAAAIWAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAhYAAAMWAAABFgAAABYAAAMWAAAAFgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAARAAAAUQAAABeAAAAFgAAABYAAAIWAAABFgAAARYAAAMWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACXgAAABYAAAMWAAABFgAAAhYAAAAWAAACFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAV4AAAAWAAAAFgAAABYAAAIWAAADFgAAAhYAAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAOAAAAjgAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAAARAAAAUQAAANEAAACRAAAAEQAAABEAAADRAAAAUQAAAJEAAABRAAAAkQAAABEAAACRAAAAEQAAABEAAACRAAAAUQAAANEAAAARAAAAkQAAANEAAACRAAAA0QAAABEAAADRAAAAkQAAABEAAAARAAAAEQAAAFEAAABRAAAAkQAAABEAAADRAAAA0QAAAFEAAACRAAAAkQAAABEAAABRAAAAkQAAABEAAABRAAAAUQAAABEAAABRAAAATgAAAI4AAABXgAAAEQAAAFEAAAARAAAAkQAAAFEAAACRAAAAUQAAAFEAAAARAAAAkQAAAFEAAADRAAAAUQAAAFEAAADRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,1: - ind: 2,1 - tiles: XgAAAF4AAAAdAAAAHQAAAR0AAAMdAAADXgAAAEQAAAFEAAAARAAAA14AAABeAAAAXgAAAF4AAABEAAADRAAAAE4AAABeAAAAHQAAAyYAAAAmAAAAJgAAAF4AAABEAAABRAAAAkQAAAJeAAAAXQAAAF0AAABdAAAAXgAAAEQAAAJeAAAAXgAAAB0AAAEmAAAAJgAAACYAAABeAAAARAAAAkQAAAJEAAABXgAAAAAAAAAAAAAAXQAAAF4AAABEAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAAFEAAAARAAAAUQAAABEAAAARAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAARAAAAUQAAAJEAAACRAAAAEQAAAFEAAADRAAAAEQAAAFEAAADRAAAA0QAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAkQAAAJEAAACRAAAA0QAAAFEAAACRAAAAEQAAANEAAADRAAAAUQAAABEAAABRAAAAjgAAANEAAADRAAAAEQAAABEAAACRAAAAUQAAAFEAAABRAAAAV4AAABEAAABRAAAAUQAAAFEAAADRAAAAEQAAAE4AAACRAAAA0QAAANEAAADRAAAAEQAAABEAAAARAAAAUQAAABEAAADRAAAAEQAAAFEAAADRAAAA0QAAANEAAADOAAAAkQAAANEAAABRAAAAUQAAANEAAADRAAAA0QAAAFEAAAARAAAAUQAAABEAAABRAAAAEQAAANEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAARAAAA0oAAABEAAADSgAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 4,-2: - ind: 4,-2 - tiles: XQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAAAnAAAAXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - 4,-3: - ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA== - 4,-4: - ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,0: - ind: 2,0 - tiles: XgAAAF4AAABeAAAAXgAAABYAAAFEAAACRAAAA0QAAAFEAAABRAAAAEQAAAJeAAAAFgAAA0QAAAJEAAACRAAAAV4AAABeAAAAXgAAAF4AAAAWAAAARAAAA0QAAANeAAAARAAAA0QAAANEAAABXgAAAF4AAABEAAADRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAACXgAAAEQAAABEAAABRAAAAkQAAAJEAAADRAAAAEQAAAFEAAABXgAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABEAAADRAAAAkQAAAJEAAADRAAAAUQAAANEAAAARAAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA0QAAANeAAAARAAAAV4AAABeAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAABRAAAAUQAAAJEAAABRAAAAUQAAAFEAAAARAAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAADRAAAAkQAAAJEAAAARAAAAEQAAABEAAADRAAAAkQAAAJEAAADXgAAAEQAAAJEAAACRAAAA0QAAAJEAAADRAAAAEQAAANEAAABRAAAAEQAAANeAAAARAAAAEQAAAFEAAACRAAAAUQAAAJEAAADRAAAAUQAAANEAAAARAAAAEQAAAFEAAADRAAAAkQAAAJEAAABRAAAAkQAAABEAAACRAAAAkQAAANEAAADRAAAAUQAAAJEAAACRAAAAUQAAABEAAABRAAAAUQAAABEAAABRAAAAEQAAANEAAAARAAAA0QAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA0QAAAJEAAADRAAAAkQAAAFeAAAAFgAAARYAAAMWAAABFgAAA14AAABeAAAAXgAAAF4AAABPAAAARAAAAUQAAAFEAAAARAAAAkQAAAJEAAADXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAA14AAAAWAAAAFgAAAxYAAABeAAAARAAAAF4AAABeAAAAMQAAADEAAAAxAAAAMQAAAF4AAABEAAABRAAAAkQAAANeAAAAWwAAAlsAAAFbAAACRAAAAkQAAAFeAAAAXgAAADEAAAAxAAAAMQAAADEAAAAWAAAARAAAAkQAAAJEAAADXgAAAFsAAABbAAABWwAAA14AAABEAAACXgAAAF4AAAAxAAAAMQAAADEAAAAxAAAAXgAAAEQAAABEAAAARAAAAV4AAABbAAAAWwAAAlsAAAFeAAAAXgAAAA== - 3,1: - ind: 3,1 - tiles: RAAAA0QAAAJEAAABRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAADRAAAAkQAAAJeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAAUQAAAJEAAABXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA14AAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAADRAAAAEQAAAFEAAABRAAAAkQAAAFEAAABRAAAAl4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAAEQAAABEAAADRAAAA0QAAAFEAAAARAAAAUQAAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAAFEAAAARAAAAEQAAABEAAACRAAAA0QAAANEAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAAF4AAABEAAACRAAAA0QAAAFEAAAARAAAAV4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAAkQAAABEAAACRAAAAUQAAAJEAAAARAAAAkQAAAJeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAABEAAAARAAAAUQAAAFEAAABRAAAAUQAAAFEAAADXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAACRAAAA0QAAAFKAAACRAAAAUoAAAJEAAADRAAAA14AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAADcAAAI3AAAANwAAA14AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,1: - ind: -3,1 - tiles: SgAAA0QAAANEAAADXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABPAAAAXgAAAEoAAAJKAAAASgAAAU8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAlsAAANbAAACXgAAAEQAAANEAAADRAAAAF4AAAAwAAAAMAAAAF4AAAAxAAAAMQAAADEAAABeAAAAWwAAA1sAAAFbAAAAWwAAAkQAAAJEAAADRAAAAUQAAAFeAAAAMAAAADAAAABeAAAAMQAAADEAAAAxAAAAXgAAAFsAAANbAAACWwAAAFsAAABeAAAARAAAAEQAAAFEAAABXgAAADAAAAAwAAAAXgAAADEAAAAxAAAAMQAAAF4AAABbAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAAF4AAABeAAAAMAAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAAFsAAABbAAADWwAAAF4AAABEAAADRAAAAUQAAAFEAAABRAAAAUQAAAJEAAACRAAAAEQAAAFEAAABRAAAA0QAAAJbAAAAWwAAAlsAAANEAAAARAAAAkQAAANEAAAARAAAACYAAABEAAAAJgAAAEQAAAMmAAAARAAAAyYAAABEAAABWwAAAVsAAANbAAAAXgAAAEQAAANEAAADRAAAA0QAAAJEAAABRAAAAkQAAAFEAAADRAAAAUQAAANEAAACRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAACFgAAABYAAAIWAAACFgAAAhYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAA== - -4,1: - ind: -4,1 - tiles: XgAAAF4AAABeAAAAXgAAAEcAAABeAAAARAAAAF4AAABEAAABRwAAAEQAAAJeAAAAOgAAADoAAAA6AAAAXgAAABYAAAMWAAADFgAAAhYAAAFEAAADXgAAAF4AAABEAAAARAAAAkQAAAFEAAADHwAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAAF4AAABeAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAWwAAAlsAAANeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAJgAAAEQAAAFEAAACWwAAAlsAAAJbAAACXgAAAAAAAAAAAAAAAAAAAF4AAAAxAAAAMQAAADEAAABeAAAAXgAAACYAAABEAAABXgAAAFsAAAJbAAADWwAAAV4AAAAAAAAAAAAAAAAAAABeAAAAMQAAADEAAABeAAAAXgAAAEQAAAAmAAAARwAAAEQAAANeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAADEAAAAxAAAAMQAAADEAAABEAAAAJgAAAF4AAABeAAAAWwAAAVsAAANbAAADXgAAAAAAAAAAAAAAAAAAAF4AAAAxAAAAMQAAADEAAABeAAAARwAAACYAAABeAAAARAAAA1sAAAFbAAACWwAAA14AAAAAAAAAAAAAAAAAAABeAAAAMQAAADEAAAAxAAAAXgAAAF4AAABEAAAARAAAAl4AAABbAAACXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAl4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAF0AAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAA== - -2,1: - ind: -2,1 - tiles: XgAAAF4AAABeAAAAFwAAAVsAAABbAAAAWwAAA1sAAAFbAAAAFwAAAF4AAAAWAAACFgAAAhYAAANeAAAARAAAA14AAABeAAAATwAAABcAAABbAAABWwAAAFsAAAFbAAAAWwAAABcAAAIWAAACMQAAADEAAAAxAAAAXgAAAEQAAAFeAAAAXgAAAF4AAAAXAAADWwAAAVsAAANbAAADWwAAAVsAAAMXAAABXgAAADEAAAAxAAAAMQAAAF4AAABEAAABWwAAA1sAAANeAAAAFwAAAVsAAAFbAAACWwAAAlsAAAJbAAACFwAAA14AAABeAAAAXgAAABYAAANeAAAARAAAAVsAAABbAAABXgAAABcAAABbAAAAWwAAAVsAAAJbAAADWwAAARcAAAEWAAABGgAAAhYAAAIaAAACXgAAAEQAAABbAAABWwAAA14AAAAXAAACWwAAAFsAAABbAAAAWwAAAlsAAAEXAAADXgAAABoAAAMWAAADGgAAAl4AAABEAAADRAAAA14AAABeAAAAXgAAAF4AAABEAAACRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOAAAAUQAAAFEAAAARAAAAkQAAAJEAAADRAAAA0QAAAFEAAABRAAAAkQAAAJEAAADRAAAAkQAAAJEAAACRAAAAUQAAAFEAAAARAAAASYAAABEAAACJgAAAEQAAAMmAAAARAAAAiYAAABEAAADJgAAAEQAAAEmAAAARAAAACYAAABEAAADRAAAAUQAAAFEAAACRAAAAkQAAAFEAAABRAAAAUQAAABEAAABRAAAAUQAAANEAAACRAAAAUQAAAFEAAADRAAAARYAAAMWAAADFgAAAhYAAAAWAAACFgAAAxYAAAEWAAABXgAAADgAAAI4AAAAOAAAAl4AAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA14AAABeAAAARAAAAUQAAAJEAAACXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABeAAAARAAAA0QAAANEAAADRAAAA0QAAANEAAABRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAA0QAAAFEAAADRAAAAUQAAABEAAACRAAAA0QAAAFEAAADRAAAAUQAAABEAAACRAAAAEQAAANEAAACRAAAAEQAAAFEAAACRAAAAEQAAABEAAACRAAAA0QAAABEAAADRAAAA0QAAAJEAAABRAAAAkQAAANEAAAARAAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAA== - -2,2: - ind: -2,2 - tiles: XgAAAEQAAAJEAAADRAAAA0QAAAJEAAAARAAAAkQAAABEAAACRAAAAEQAAAJEAAACXgAAAEQAAAFEAAACRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABEAAACRAAAAEQAAABeAAAAOgAAABYAAAEWAAACFgAAARYAAAIWAAADFgAAAhYAAABEAAADRAAAAkQAAAJEAAAARAAAA0QAAANEAAABXgAAADoAAAAWAAADOgAAADoAAAA6AAAAOgAAADoAAAAWAAADRAAAAkQAAABEAAAARAAAAUQAAANEAAACRAAAAl4AAAAWAAABFgAAAzoAAAA6AAAAOgAAADoAAAA6AAAAFgAAAxYAAAMWAAACFgAAARYAAAIWAAADFgAAAhYAAAFeAAAAFgAAAxYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAATgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAOgAAADoAAAA6AAAAOgAAADoAAABdAAAAXQAAAF0AAABdAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -1,3: - ind: -1,3 - tiles: OgAAADoAAAA6AAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAAF4AAABeAAAATgAAAF4AAABdAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAABeAAAAXgAAAE4AAABeAAAAXQAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAADoAAAA6AAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXQAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABeAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,2: - ind: -1,2 - tiles: RAAAAUQAAANeAAAARAAAAkQAAAFEAAACXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAABEAAABTgAAAEQAAAJEAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAE4AAABEAAABRAAAAUQAAAJEAAADRAAAAkQAAAFeAAAAKgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANOAAAARAAAA0QAAABEAAACRAAAA0QAAANEAAACXgAAACoAAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABEAAACTgAAABYAAAIWAAABFgAAABYAAAEWAAABFgAAAl4AAAAqAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAADoAAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAOgAAADoAAAA6AAAAOgAAAF4AAABOAAAAXgAAAF0AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAABeAAAATgAAAF4AAABdAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAXgAAAE4AAABeAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABdAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXQAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - -3,2: - ind: -3,2 - tiles: XgAAAF4AAAA6AAAAOgAAADoAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA6AAAAOgAAADoAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAAA6AAAAOgAAADoAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAA== - 0,3: - ind: 0,3 - tiles: XQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABdAAAAXgAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXQAAAF4AAABdAAAAAAAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABdAAAAXgAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXQAAAF4AAABdAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXQAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,3: - ind: -3,3 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAA== - -2,3: - ind: -2,3 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAOgAAADoAAAA6AAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAADoAAAA6AAAAOgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAA6AAAAOgAAADoAAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAA== - 0,2: - ind: 0,2 - tiles: TgAAAE4AAABEAAABXgAAAEQAAABEAAABRAAAAEQAAAJEAAACXgAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABOAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAATgAAAEQAAANEAAADXgAAAE8AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAATgAAAE4AAABEAAADRAAAA14AAABPAAAAXgAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAEQAAANEAAAARAAAAkQAAAJPAAAATwAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF0AAABeAAAAXQAAAAAAAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABdAAAAXgAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF0AAABeAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABdAAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXQAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAA== - -4,2: - ind: -4,2 - tiles: AAAAAAAAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAWAAACFgAAARYAAAIWAAACXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAFgAAABYAAAIWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAA6AAAAOgAAADoAAABeAAAAXQAAAA== - -4,3: - ind: -4,3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAOgAAADoAAAA6AAAAXgAAAF0AAABEAAACFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAARAAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAA6AAAAOgAAADoAAABeAAAAXQAAAEQAAAMWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,1: - ind: -5,1 - tiles: AAAAAAAAAABdAAAAXQAAAF0AAABeAAAAFgAAAxYAAAIWAAABFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAABFgAAABYAAAIWAAABFgAAAxYAAAMWAAACFgAAARYAAAIAAAAAAAAAAAAAAABdAAAAXQAAAF4AAAAWAAACFgAAABYAAAIWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAAAWAAACFgAAA14AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAFgAAAF4AAAAWAAABFgAAARYAAANeAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAADEAAAAxAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAF4AAAAxAAAAMQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABeAAAAMQAAADEAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAXgAAADEAAAAxAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAF4AAAAxAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,0: - ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABeAAAARAAAAUQAAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXgAAAEQAAABEAAADRAAAAl4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAF4AAABEAAADRAAAA0QAAAJeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABeAAAARAAAAEQAAAJeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXgAAAEQAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXQAAAA== - 2,-5: - ind: 2,-5 - tiles: AAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-5: - ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - 1,-6: - ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAA== - 2,-6: - ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,-1: - ind: 4,-1 - tiles: XQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,-3: - ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,-1: - ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,-2: - ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,2: - ind: 1,2 - tiles: XQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,4: - ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAA== - -2,5: - ind: -2,5 - tiles: AAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,4: - ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAA== - -3,5: - ind: -3,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -6,1: - ind: -6,1 - tiles: FgAAAxYAAAAWAAACXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAABYAAAAWAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAABYAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -7,1: - ind: -7,1 - tiles: MQAAADEAAAAxAAAAFgAAAF4AAAAWAAADFgAAARYAAAEWAAADFgAAAF4AAAAWAAABFgAAAxYAAAIWAAAAFgAAAjEAAAAxAAAAMQAAABYAAAEWAAABFgAAARYAAAIWAAAAFgAAARYAAAMWAAAAFgAAARYAAAAWAAACFgAAAxYAAAIxAAAAMQAAADEAAAAWAAACXgAAABYAAAMWAAABFgAAABYAAAIWAAADXgAAABYAAAIWAAADFgAAARYAAAMWAAAAFgAAAxYAAAEWAAACFgAAAF4AAAAWAAABFgAAARYAAAAWAAACFgAAAl4AAABdAAAAFgAAAV4AAABdAAAAXQAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAABYAAAJeAAAAXgAAAF4AAAAWAAAAFgAAABYAAAMWAAAAOgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAAAWAAAAXgAAAF4AAABeAAAAGgAAARoAAAIaAAABGgAAAhYAAAMWAAADXgAAAF4AAABdAAAAFgAAAxYAAAIWAAABFgAAAF4AAABeAAAAXQAAABoAAAIsAAAALAAAABoAAAIWAAAAFgAAAl4AAABeAAAAXQAAABYAAANdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAACwAAAAaAAAAFgAAARYAAABeAAAAXgAAAF0AAAAWAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAALAAAAF4AAAAsAAAAGgAAAxYAAABeAAAAXgAAAF4AAABdAAAAFgAAA10AAABdAAAAXQAAAF0AAABdAAAAXQAAABoAAAEaAAABGgAAARoAAAEaAAADLAAAAF4AAABeAAAAXQAAABYAAANdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAACwAAAAaAAACFgAAA14AAABeAAAAXgAAAF0AAAAWAAADXQAAAAAAAABdAAAAXQAAAF0AAABdAAAALAAAACwAAAAsAAAAGgAAAxYAAAIWAAABXgAAAF4AAABdAAAAFgAAAl0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAABoAAAIaAAABGgAAAhoAAAIWAAADFgAAAl4AAABeAAAAXQAAABYAAAFdAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAWAAAAFgAAABYAAAIWAAABOgAAAF4AAABeAAAAXgAAAF0AAAAWAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAFgAAARYAAANeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAFgAAAV0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAA== - -6,0: - ind: -6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAA== - -7,0: - ind: -7,0 - tiles: XQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAAhYAAAJdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAhYAAAAWAAADXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAIWAAAAFgAAABYAAAMWAAADFgAAAxYAAAMWAAABXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAFgAAAV0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAFgAAAl4AAAAAAAAAXQAAAAAAAAAAAAAAXQAAABYAAANdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAABYAAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAWAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAWAAABDwAAAA8AAABeAAAAXgAAAF0AAABdAAAAFgAAAV0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAFgAAARsAAAAbAAADDwAAAF4AAAAAAAAAXQAAABYAAAJdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAABYAAAIPAAAAGwAAAA8AAABeAAAAAAAAAF0AAAAWAAADXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAWAAACGwAAARYAAAMbAAADXgAAAAAAAABdAAAAFgAAAl0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAFgAAAA8AAAAbAAABDwAAAF4AAABdAAAAXQAAABYAAAMWAAADFgAAAhYAAAEWAAAAFgAAAF0AAABdAAAAXQAAABYAAAIWAAAAFgAAAQ8AAABeAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAABYAAABdAAAAAAAAAF0AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAWAAACXQAAAAAAAABdAAAAFgAAARYAAAMWAAADFgAAA14AAAAWAAADFgAAAxYAAAEWAAADFgAAAV4AAABdAAAAFgAAA10AAABdAAAAXQAAAA== - -8,0: - ind: -8,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAABYAAAEWAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAABYAAAEWAAAAFgAAABYAAAMWAAAAFgAAARYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAWAAACXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAFgAAAl0AAAAAAAAAAAAAAF0AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAABYAAANdAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAWAAADXQAAAF0AAABeAAAAXgAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAFgAAAl0AAAAAAAAAXgAAAA8AAAAbAAADGwAAAQAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAABYAAAJdAAAAAAAAAF4AAAAPAAAAGwAAAw8AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAWAAACXQAAAAAAAABeAAAAGwAAARYAAAEbAAACAAAAAF0AAAAAAAAAXQAAABYAAAAWAAACFgAAABYAAAEWAAACFgAAAF0AAABdAAAAXgAAAA8AAAAbAAACDwAAAAAAAABdAAAAXQAAAF0AAAAWAAADXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF4AAAAPAAAAFgAAARYAAAEAAAAAXQAAAAAAAABdAAAAFgAAA10AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABdAAAAXQAAABYAAAJdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAAw== - -8,1: - ind: -8,1 - tiles: AAAAAF0AAAAAAAAAXQAAABYAAAMWAAAAXgAAABYAAAIWAAAAFgAAAhYAAAMWAAACXgAAABYAAAMxAAAAMQAAAAAAAABdAAAAXQAAAF0AAAAWAAAAFgAAABYAAAMWAAADFgAAARYAAAMWAAABFgAAAhYAAAAWAAAAMQAAADEAAAAAAAAAXQAAAAAAAABdAAAAFgAAAhYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAATEAAAAxAAAAAAAAAF0AAABdAAAAXQAAABYAAANdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAACFgAAAQAAAABdAAAAAAAAAF0AAAAWAAADXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABdAAAAFgAAA10AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAAA6AAAAFgAAARYAAAEWAAABAAAAAF0AAAAAAAAAXQAAABYAAAMWAAAAFgAAARYAAANdAAAAXgAAAF4AAAAWAAABFgAAARoAAAMaAAABGgAAAgAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAWAAACXQAAAF4AAABeAAAAFgAAARYAAAMaAAADLAAAACwAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAFgAAA10AAABeAAAAXgAAABYAAAIWAAAAGgAAAywAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAABYAAAJdAAAAXgAAAF4AAABeAAAAFgAAAxoAAAEsAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAWAAADXQAAAF4AAABeAAAALAAAABoAAAIaAAACGgAAABoAAAIAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAFgAAA10AAABeAAAAXgAAAF4AAAAWAAABGgAAAiwAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAABYAAAJdAAAAXgAAAF4AAAAWAAACFgAAABoAAAAsAAAALAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAWAAACXQAAAF4AAABeAAAAFgAAAxYAAAAaAAACGgAAAxoAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAFgAAA10AAABeAAAAXgAAAF4AAAA6AAAAFgAAABYAAAMWAAABAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAABYAAAJdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAQ== - -8,2: - ind: -8,2 - tiles: AAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAABYAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAWAAACXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAFgAAA10AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAABYAAAIWAAAAFgAAABYAAAAWAAAAFgAAAhYAAAAWAAADFgAAAwAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAFgAAAhYAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAABYAAAAWAAADAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -7,2: - ind: -7,2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAFgAAA10AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAABYAAANdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAWAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAFgAAARYAAAIWAAAAFgAAAxYAAAIWAAABFgAAABYAAAMWAAACFgAAAV0AAABdAAAAXQAAAAAAAAAAAAAAAAAAABYAAAIWAAAAFgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -7,-1: - ind: -7,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -8,-1: - ind: -8,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - -5,3: - ind: -5,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,2: - ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - id: Bagel - type: BecomesStation - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 834: -30,36 - 1389: -56,1 - 1825: -9,-21 - 3310: -11,27 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 467: -4,13 - 468: -4,14 - 469: -4,15 - 470: -4,16 - 668: 49,-1 - 811: 41,6 - 1158: -3,-64 - 1159: -3,-71 - 3309: -19,29 - 3311: -4,18 - 3312: -4,19 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 667: 49,3 - 860: -62,40 - 1160: 3,-71 - 1161: 3,-64 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 915: 54,25 - 916: 52,25 - 917: 46,25 - 918: 44,25 - 1025: -51,14 - 2939: 4,-39 - 3427: 53,14 - - node: - color: '#FFFFFFFF' - id: ArrowsGreyscale - decals: - 680: 23,17 - - node: - cleanable: True - color: '#FFFFFFFF' - id: ArrowsGreyscale - decals: - 2971: 9,-41 - - node: - cleanable: True - color: '#8932B8FF' - id: Blasto - decals: - 2588: -46.09135,-29.907255 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 164: 4,-26 - 165: 5,-26 - 166: 6,-26 - 203: -2,-45 - 204: 12,11 - 433: -37,1 - 475: -27,35 - 476: -28,35 - 477: -29,35 - 478: -29,36 - 479: -28,36 - 480: -27,36 - 608: -15,-10 - 609: -32,26 - 676: 22,18 - 677: 22,19 - 678: 20,18 - 679: 20,19 - 812: -9,-38 - 840: -31,34 - 841: -31,35 - 842: -105,17 - 843: -119,17 - 844: -98,17 - 912: 54,26 - 913: 52,26 - 914: 46,26 - 1026: 44,26 - 1156: -4,-69 - 1157: -17,-54 - 1182: -28,2 - 1183: -26,2 - 1340: -52,13 - 1341: -50,13 - 1350: -55,16 - 1351: -56,16 - 1383: -58,-4 - 1384: -57,-4 - 1385: -56,-4 - 1454: 54,8 - 1455: 53,8 - 1456: 52,8 - 1457: 54,10 - 1458: 53,10 - 1459: 52,10 - 1462: 54,12 - 1463: 53,12 - 1464: 52,12 - 1511: 6,-20 - 1629: 30,-23 - 1659: -48,16 - 1660: -47,17 - 1853: -25,-6 - 1962: -19,27 - 1980: -26,32 - 1981: -27,32 - 1982: -28,32 - 1983: -23,32 - 1984: -21,32 - 2116: -33,12 - 2117: -33,14 - 2120: -41,14 - 2136: -40,-6 - 2143: -41,-10 - 2161: -42,-8 - 2171: -57,7 - 2172: -57,14 - 2173: -44,-4 - 2233: -40,-20 - 2315: -11,32 - 2316: -13,32 - 2391: 3,11 - 2392: 3,15 - 2419: -5,21 - 2420: -5,20 - 2499: 17,28 - 2500: 47,14 - 2501: 47,-2 - 2502: 45,-9 - 2503: 19,-21 - 2519: 2,-1 - 2525: 3,-8 - 2529: -20,5 - 2530: -19,5 - 2534: -13,11 - 2543: -42,19 - 2544: -42,20 - 2545: 30,9 - 2546: 36,4 - 2717: 20,16 - 2718: 19,16 - 2953: 4,-35 - 2982: -31,-19 - 2983: -6,-27 - 2984: 3,-28 - 3031: 45,-27 - 3032: 37,-25 - 3033: 32,-21 - 3034: 50,-32 - 3083: 19,26 - 3137: 29,-27 - 3145: 45,10 - - node: - color: '#DE3A3AFF' - id: BotLeft - decals: - 2980: -33,-21 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 1386: -52,-1 - 1387: -52,-2 - 1388: -52,-3 - 2135: -40,-5 - 2144: -43,-11 - 2187: -32,4 - 2429: 2,28 - 2430: 2,29 - 2431: 6,23 - 2432: 7,23 - 2433: 8,23 - 2951: 4,-37 - - node: - color: '#FFFFFFFF' - id: BotLeftGreyscale - decals: - 2565: 39,-6 - - node: - color: '#DE3A3AFF' - id: BotRight - decals: - 2977: -35,-17 - 2978: -35,-18 - 2979: -35,-19 - 2981: -35,-20 - - node: - color: '#FFFFFFFF' - id: BotRight - decals: - 2186: -35,5 - 2415: -5,13 - 2416: -5,14 - 2417: -5,15 - 2418: -5,16 - 2421: -5,19 - 2422: -5,18 - 2423: 5,13 - 2952: 4,-36 - - node: - color: '#FF8FC9FF' - id: BotRightGreyscale - decals: - 2228: -45,7 - - node: - color: '#EFB341FF' - id: Box - decals: - 2049: -30,-13 - - node: - color: '#9FED5896' - id: Box - decals: - 2051: -30,-8 - - node: - color: '#79150096' - id: Box - decals: - 2052: -24,-12 - 2053: -24,-13 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 1734: 53,24 - 1735: 45,24 - 1736: 38,6 - 1737: 38,10 - 2188: -26,0 - 2189: -28,0 - - node: - color: '#52B4E996' - id: BoxGreyscale - decals: - 2050: -30,-12 - - node: - color: '#DE3A3A96' - id: BoxGreyscale - decals: - 1823: -9,-21 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkBox - decals: - 1390: -53,-2 - 1391: -55,-2 - 1392: -57,-2 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 2531: -13,13 - 2540: -19,18 - 3258: 25,1 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 2537: -21,18 - 3259: 21,1 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 2532: -13,11 - 2538: -19,17 - 3194: -110,9 - 3205: -115,12 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 2539: -21,17 - 3191: -114,9 - 3210: -109,12 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndN - decals: - 3262: 23,2 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndS - decals: - 3256: 21,0 - 3257: 25,0 - 3263: 23,-1 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNe - decals: - 2535: -14,13 - 3202: -114,9 - 3273: 23,1 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - decals: - 3201: -110,9 - 3274: 23,1 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSe - decals: - 2536: -14,11 - 3261: 21,1 - 3272: 23,1 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - decals: - 3260: 25,1 - 3271: 23,1 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 2533: -13,12 - 3197: -110,10 - 3198: -114,10 - 3212: -115,13 - 3264: 23,0 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 2542: -20,18 - 3199: -111,9 - 3200: -113,9 - 3203: -115,10 - 3204: -109,10 - 3206: -111,10 - 3207: -113,10 - 3269: 22,1 - 3270: 24,1 - 3446: 37,15 - 3447: 36,15 - 3448: 35,15 - 3449: 34,15 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 2541: -20,17 - 3192: -113,9 - 3193: -111,9 - 3208: -111,12 - 3209: -113,12 - 3267: 24,1 - 3268: 22,1 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 3195: -114,10 - 3196: -110,10 - 3211: -109,13 - 3265: 23,0 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelBox - decals: - 1541: -38,24 - 1542: -36,24 - 1543: -34,24 - 1544: -26,24 - 1545: -28,24 - 1546: -30,24 - 3156: -24,24 - 3157: -22,24 - 3158: -20,24 - 3159: -18,24 - 3160: -16,24 - 3161: -40,24 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerNe - decals: - 2042: -34,-10 - 2201: -20,-5 - 2202: -20,-5 - - node: - color: '#9FED5896' - id: BrickTileSteelCornerNe - decals: - 1672: -3,-26 - 2039: -34,-7 - - node: - color: '#DE3A3A96' - id: BrickTileSteelCornerNe - decals: - 1879: -19,-16 - 2029: -19,-10 - 2030: -19,-13 - 2176: -31,5 - 2914: -8,-45 - - node: - color: '#D381C996' - id: BrickTileSteelCornerNe - decals: - 1346: -45,14 - 2061: -50,5 - 2071: -45,0 - 2106: -42,-4 - 2153: -40,12 - - node: - color: '#DE3A3A96' - id: BrickTileSteelCornerNw - decals: - 1880: -21,-16 - 2031: -20,-10 - 2032: -20,-13 - 2177: -35,5 - 2915: -9,-45 - - node: - color: '#9FED5896' - id: BrickTileSteelCornerNw - decals: - 1674: -5,-26 - 1675: -8,-27 - 2040: -35,-7 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerNw - decals: - 2041: -35,-10 - 2203: -19,-5 - 2204: -19,-5 - - node: - color: '#D381C996' - id: BrickTileSteelCornerNw - decals: - 1247: -52,5 - 2102: -46,-4 - 2154: -43,12 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerSe - decals: - 2044: -34,-11 - 2207: -20,-4 - 2208: -20,-4 - - node: - color: '#DE3A3A96' - id: BrickTileSteelCornerSe - decals: - 1882: -19,-17 - 2035: -19,-14 - 2036: -19,-11 - 2179: -31,4 - - node: - color: '#9FED5896' - id: BrickTileSteelCornerSe - decals: - 2037: -34,-8 - - node: - color: '#D381C996' - id: BrickTileSteelCornerSe - decals: - 1370: -52,-7 - 2072: -45,-2 - 2081: -48,-9 - 2109: -42,-9 - 2156: -40,11 - 2175: -44,-11 - - node: - color: '#9FED5896' - id: BrickTileSteelCornerSw - decals: - 2038: -35,-8 - - node: - color: '#D381C996' - id: BrickTileSteelCornerSw - decals: - 1360: -58,-3 - 1367: -55,-7 - 1396: -60,1 - 2082: -50,-9 - 2096: -46,-11 - 2155: -43,11 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerSw - decals: - 2043: -35,-11 - 2205: -19,-4 - 2206: -19,-4 - - node: - color: '#DE3A3A96' - id: BrickTileSteelCornerSw - decals: - 1881: -21,-17 - 2033: -20,-14 - 2034: -20,-11 - 2178: -35,4 - - node: - color: '#D381C996' - id: BrickTileSteelInnerNe - decals: - 1022: -51,14 - 2062: -50,4 - 2068: -48,0 - - node: - color: '#9FED5896' - id: BrickTileSteelInnerNw - decals: - 1676: -5,-27 - - node: - color: '#D381C996' - id: BrickTileSteelInnerNw - decals: - 1021: -51,14 - 1248: -52,4 - - node: - color: '#D381C996' - id: BrickTileSteelInnerSe - decals: - 2067: -48,2 - 2075: -48,-2 - 2111: -44,-9 - - node: - color: '#D381C996' - id: BrickTileSteelInnerSw - decals: - 1363: -55,-3 - - node: - color: '#D381C996' - id: BrickTileSteelLineE - decals: - 1371: -52,-6 - 1372: -52,-5 - 1373: -52,-4 - 1374: -52,-3 - 1375: -52,-2 - 1382: -52,-1 - 2076: -48,-4 - 2077: -48,-3 - 2078: -48,-5 - 2079: -48,-7 - 2080: -48,-8 - 2107: -42,-7 - 2108: -42,-8 - 2112: -44,-10 - - node: - color: '#DE3A3A96' - id: BrickTileSteelLineE - decals: - 2916: -8,-46 - - node: - color: '#9FED5896' - id: BrickTileSteelLineE - decals: - 1669: -3,-29 - 1670: -3,-28 - 1671: -3,-27 - - node: - color: '#DE3A3A96' - id: BrickTileSteelLineN - decals: - 1804: -8,-18 - 1805: -9,-18 - 1812: -6,-18 - 1883: -20,-16 - 2180: -32,5 - 2181: -33,5 - 2182: -34,5 - - node: - color: '#9FED5896' - id: BrickTileSteelLineN - decals: - 1673: -4,-26 - 1677: -6,-27 - 1678: -7,-27 - - node: - color: '#D381C996' - id: BrickTileSteelLineN - decals: - 1019: -50,14 - 1020: -52,14 - 1249: -53,4 - 1342: -49,14 - 1343: -48,14 - 1344: -47,14 - 1376: -55,-1 - 1377: -57,-1 - 2063: -49,4 - 2064: -48,4 - 2065: -47,4 - 2069: -47,0 - 2070: -46,0 - 2103: -45,-4 - 2104: -44,-4 - 2105: -43,-4 - - node: - color: '#DE3A3A96' - id: BrickTileSteelLineS - decals: - 1806: -6,-19 - 1807: -7,-19 - 1808: -8,-19 - 1884: -20,-17 - 2183: -32,4 - 2184: -34,4 - - node: - color: '#D381C996' - id: BrickTileSteelLineS - decals: - 1013: -46,11 - 1014: -47,11 - 1015: -48,11 - 1016: -49,11 - 1017: -50,11 - 1018: -52,11 - 1355: -55,2 - 1361: -57,-3 - 1362: -56,-3 - 1368: -54,-7 - 1369: -53,-7 - 1395: -59,1 - 2066: -47,2 - 2073: -46,-2 - 2074: -47,-2 - 2110: -43,-9 - 2157: -41,11 - 2158: -42,11 - 2174: -45,-11 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 924: 18,12 - - node: - color: '#DE3A3A96' - id: BrickTileSteelLineW - decals: - 2917: -9,-46 - - node: - color: '#9FED5896' - id: BrickTileSteelLineW - decals: - 1667: -8,-29 - 1668: -8,-28 - - node: - color: '#D381C996' - id: BrickTileSteelLineW - decals: - 1364: -55,-4 - 1365: -55,-5 - 1366: -55,-6 - 1393: -58,-2 - 1397: -60,2 - 2083: -50,-8 - 2084: -50,-7 - 2085: -50,-6 - 2086: -50,-5 - 2087: -50,-4 - 2088: -50,-3 - 2089: -50,-2 - 2090: -50,-1 - 2091: -50,0 - 2097: -46,-10 - 2098: -46,-9 - 2099: -46,-8 - 2100: -46,-7 - 2101: -46,-5 - 2225: -45,7 - 2226: -45,8 - 2227: -45,9 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteBox - decals: - 3250: 25,-1 - - node: - color: '#9FED5896' - id: BrickTileWhiteBox - decals: - 3251: 22,0 - - node: - color: '#334E6DC8' - id: BrickTileWhiteBox - decals: - 3249: 21,-1 - - node: - color: '#D381C996' - id: BrickTileWhiteBox - decals: - 3254: 21,2 - - node: - color: '#A4610696' - id: BrickTileWhiteBox - decals: - 3255: 25,2 - - node: - color: '#52B4E996' - id: BrickTileWhiteBox - decals: - 3253: 22,2 - - node: - color: '#D4D4D496' - id: BrickTileWhiteBox - decals: - 3252: 24,0 - - node: - color: '#EFB34196' - id: BrickTileWhiteBox - decals: - 3266: 24,2 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - decals: - 871: 40,-28 - 932: 20,14 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNe - decals: - 2923: 8,-28 - 2944: 5,-39 - - node: - color: '#B02E26FF' - id: BrickTileWhiteCornerNe - decals: - 2907: -4,-45 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNe - decals: - 2170: -54,7 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNe - decals: - 1860: -24,-19 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerNe - decals: - 2701: 24,21 - - node: - color: '#EFB34141' - id: BrickTileWhiteCornerNe - decals: - 2045: -34,-13 - - node: - color: '#79150096' - id: BrickTileWhiteCornerNe - decals: - 2218: -41,-20 - - node: - color: '#EFD54196' - id: BrickTileWhiteCornerNe - decals: - 1952: -21,32 - 1974: -25,32 - - node: - color: '#EFD84196' - id: BrickTileWhiteCornerNe - decals: - 1991: -15,29 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerNw - decals: - 2700: 19,21 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNw - decals: - 2924: 3,-28 - 2943: 3,-39 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNw - decals: - 1859: -31,-19 - - node: - color: '#EFCC4196' - id: BrickTileWhiteCornerNw - decals: - 2310: -13,32 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - decals: - 869: 38,-28 - 931: 19,14 - 2528: -4,-10 - - node: - color: '#EFB34141' - id: BrickTileWhiteCornerNw - decals: - 2046: -35,-13 - - node: - color: '#EFD54196' - id: BrickTileWhiteCornerNw - decals: - 1953: -23,32 - 1973: -31,32 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNw - decals: - 1348: -47,16 - 2169: -56,7 - - node: - color: '#79150096' - id: BrickTileWhiteCornerNw - decals: - 2219: -47,-20 - - node: - color: '#B02E26FF' - id: BrickTileWhiteCornerNw - decals: - 2910: -6,-45 - - node: - color: '#EFB34141' - id: BrickTileWhiteCornerSe - decals: - 2047: -34,-14 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSe - decals: - 1861: -24,-21 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSe - decals: - 870: 40,-32 - 930: 20,11 - - node: - color: '#79150096' - id: BrickTileWhiteCornerSe - decals: - 2220: -41,-22 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSe - decals: - 2702: 24,17 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSe - decals: - 2930: 5,-33 - 2936: 8,-30 - 2940: 5,-40 - - node: - color: '#EFD54196' - id: BrickTileWhiteCornerSe - decals: - 1950: -15,27 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerSe - decals: - 3109: 33,-36 - - node: - color: '#EFCC4196' - id: BrickTileWhiteCornerSw - decals: - 2306: -13,27 - 2326: -5,23 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSw - decals: - 1862: -31,-21 - - node: - color: '#EFB34141' - id: BrickTileWhiteCornerSw - decals: - 2048: -35,-14 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSw - decals: - 868: 38,-32 - 929: 19,11 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerSw - decals: - 3108: 30,-36 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSw - decals: - 2703: 19,17 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSw - decals: - 2928: 3,-33 - 2942: 3,-40 - - node: - color: '#EFD54196' - id: BrickTileWhiteCornerSw - decals: - 1955: -23,28 - 1959: -19,27 - - node: - color: '#79150096' - id: BrickTileWhiteCornerSw - decals: - 2221: -47,-22 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerNe - decals: - 1857: -29,-14 - 1900: -22,-23 - - node: - color: '#EFD84196' - id: BrickTileWhiteInnerNe - decals: - 1997: -21,29 - - node: - color: '#EFCC4196' - id: BrickTileWhiteInnerNe - decals: - 2304: -3,23 - 2450: -3,21 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerNw - decals: - 1848: -31,-6 - 1858: -25,-14 - 1898: -18,-23 - 1899: -17,-22 - - node: - color: '#EFCC4196' - id: BrickTileWhiteInnerNw - decals: - 2449: -4,21 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerNw - decals: - 3117: 35,-38 - - node: - color: '#52B4E996' - id: BrickTileWhiteInnerNw - decals: - 3046: 43,-17 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSe - decals: - 1852: -29,-6 - 2026: -31,-17 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSe - decals: - 2933: 5,-30 - - node: - color: '#EFCC4196' - id: BrickTileWhiteInnerSe - decals: - 2329: -3,23 - 2428: -3,27 - - node: - color: '#52B4E996' - id: BrickTileWhiteInnerSw - decals: - 3045: 43,-18 - - node: - color: '#EFCC4196' - id: BrickTileWhiteInnerSw - decals: - 2323: -5,27 - 2328: -4,23 - - node: - color: '#EFD54196' - id: BrickTileWhiteInnerSw - decals: - 1958: -19,28 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSw - decals: - 1851: -25,-6 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineE - decals: - 2931: 5,-32 - 2932: 5,-31 - 2937: 8,-29 - - node: - color: '#B02E26FF' - id: BrickTileWhiteLineE - decals: - 2908: -4,-46 - - node: - color: '#EFCC4196' - id: BrickTileWhiteLineE - decals: - 2302: -3,24 - 2303: -3,25 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineE - decals: - 876: 40,-31 - 877: 40,-30 - 878: 40,-29 - 926: 20,12 - 927: 20,13 - 928: 20,14 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 965: -33,-21 - 966: -33,-19 - 967: -33,-18 - 968: -33,-16 - 1833: -22,-6 - 1834: -22,-5 - 1873: -24,-20 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineE - decals: - 2713: 24,20 - 2714: 24,19 - 2715: 24,18 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineE - decals: - 3052: 45,-25 - 3053: 45,-24 - 3054: 45,-23 - 3055: 45,-21 - 3056: 45,-20 - 3059: 45,-19 - 3060: 45,-18 - 3061: 45,-17 - - node: - color: '#EFD54196' - id: BrickTileWhiteLineE - decals: - 1951: -21,31 - - node: - color: '#EFD84196' - id: BrickTileWhiteLineE - decals: - 1998: -21,30 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineN - decals: - 3112: 34,-38 - 3113: 33,-38 - 3114: 31,-38 - 3115: 30,-38 - 3116: 29,-38 - 3151: 32,-38 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 1837: -23,-3 - 1838: -24,-3 - 1839: -25,-3 - 1840: -26,-3 - 1841: -28,-3 - 1842: -29,-3 - 1843: -30,-3 - 1854: -26,-14 - 1855: -27,-14 - 1856: -28,-14 - 1869: -25,-19 - 1870: -27,-19 - 1871: -29,-19 - 1872: -30,-19 - 1892: -19,-23 - 1893: -20,-23 - 1894: -21,-23 - - node: - color: '#EFD54196' - id: BrickTileWhiteLineN - decals: - 1975: -26,32 - 1976: -27,32 - 1977: -28,32 - 1978: -29,32 - 1979: -30,32 - - node: - color: '#79150096' - id: BrickTileWhiteLineN - decals: - 2214: -42,-20 - 2215: -43,-20 - 2216: -45,-20 - 2217: -46,-20 - - node: - color: '#EFD5692E' - id: BrickTileWhiteLineN - decals: - 2749: 39,-35 - 2750: 40,-35 - 2751: 41,-35 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 3035: 38,-17 - 3036: 39,-17 - 3037: 40,-17 - 3038: 41,-17 - 3044: 37,-17 - - node: - color: '#D381C996' - id: BrickTileWhiteLineN - decals: - 1349: -46,16 - 2168: -55,7 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - decals: - 879: 39,-28 - - node: - color: '#EFD84196' - id: BrickTileWhiteLineN - decals: - 1992: -16,29 - 1993: -18,29 - 1994: -17,29 - 1995: -19,29 - 1996: -20,29 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineN - decals: - 2709: 20,21 - 2710: 21,21 - 2711: 22,21 - 2712: 23,21 - - node: - color: '#B02E26FF' - id: BrickTileWhiteLineN - decals: - 2911: -5,-45 - - node: - color: '#EFCC4196' - id: BrickTileWhiteLineN - decals: - 2297: 2,23 - 2298: 1,23 - 2299: 0,23 - 2300: -1,23 - 2301: -2,23 - 2311: -11,32 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 2920: 4,-28 - 2921: 5,-28 - 2922: 6,-28 - - node: - color: '#EFB3414A' - id: BrickTileWhiteLineN - decals: - 3288: 22,5 - 3289: 24,5 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 3039: 41,-18 - 3040: 40,-18 - 3041: 39,-18 - 3042: 38,-18 - 3043: 37,-18 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineS - decals: - 3110: 32,-36 - 3111: 31,-36 - - node: - color: '#D381C925' - id: BrickTileWhiteLineS - decals: - 920: -44,6 - - node: - color: '#EFD54196' - id: BrickTileWhiteLineS - decals: - 1956: -21,28 - 1957: -20,28 - 1960: -17,27 - 1961: -16,27 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 2704: 21,17 - 2705: 20,17 - 2706: 22,17 - - node: - color: '#EFCC4196' - id: BrickTileWhiteLineS - decals: - 2292: 2,23 - 2293: 1,23 - 2294: 0,23 - 2295: -1,23 - 2296: -2,23 - 2305: -11,27 - 2317: -10,27 - 2318: -9,27 - 2319: -8,27 - 2320: -7,27 - 2321: -6,27 - 2424: 1,27 - 2425: 0,27 - 2426: -1,27 - 2427: -2,27 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 2164: -54,14 - 2165: -55,14 - 2166: -56,14 - 2167: -57,14 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineS - decals: - 1849: -26,-6 - 1850: -28,-6 - 1863: -30,-21 - 1864: -29,-21 - 1865: -28,-21 - 1866: -27,-21 - 1867: -26,-21 - 1868: -25,-21 - 2020: -23,-17 - 2021: -24,-17 - 2022: -25,-17 - 2023: -27,-17 - 2024: -29,-17 - 2025: -30,-17 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineS - decals: - 2510: 3,-1 - 2511: 2,-1 - 2512: 1,-1 - 2513: -1,-1 - 2514: -2,-1 - 2515: -3,-1 - 2929: 4,-33 - 2934: 6,-30 - 2935: 7,-30 - 2941: 4,-40 - - node: - color: '#79150096' - id: BrickTileWhiteLineS - decals: - 2209: -42,-22 - 2210: -43,-22 - 2211: -44,-22 - 2212: -45,-22 - 2213: -46,-22 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 872: 39,-32 - 903: -3,-9 - 2526: -3,-11 - 2527: -4,-11 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineW - decals: - 3047: 43,-19 - 3048: 43,-20 - 3049: 43,-22 - 3050: 43,-23 - 3051: 43,-25 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 3118: 35,-37 - 3119: 35,-36 - - node: - color: '#B02E26FF' - id: BrickTileWhiteLineW - decals: - 2909: -6,-46 - - node: - color: '#EFD54196' - id: BrickTileWhiteLineW - decals: - 1954: -23,29 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineW - decals: - 873: 38,-31 - 874: 38,-30 - 875: 38,-29 - 925: 19,13 - - node: - color: '#D381C996' - id: BrickTileWhiteLineW - decals: - 1347: -47,15 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineW - decals: - 2707: 19,19 - 2708: 19,20 - - node: - color: '#EFCC4196' - id: BrickTileWhiteLineW - decals: - 2307: -13,29 - 2308: -13,30 - 2309: -13,31 - 2322: -5,26 - 2324: -5,25 - 2325: -5,24 - 2327: -4,22 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 959: -35,-21 - 960: -35,-20 - 961: -35,-19 - 962: -35,-18 - 963: -35,-17 - 964: -35,-16 - 1847: -31,-5 - 1895: -17,-21 - 1896: -17,-20 - 1897: -17,-19 - 2017: -21,-20 - 2018: -21,-22 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineW - decals: - 2925: 3,-29 - 2926: 3,-31 - 2927: 3,-32 - - node: - color: '#FFFFFFFF' - id: Bushb1 - decals: - 1063: -5.0759892,-67.511505 - - node: - color: '#FFFFFFFF' - id: Bushb2 - decals: - 590: -6.033051,-6.006569 - - node: - color: '#FFFFFFFF' - id: Bushb3 - decals: - 515: -8.918216,35.06559 - 1064: 5.128752,-67.43338 - - node: - color: '#FFFFFFFF' - id: Bushe2 - decals: - 1073: -4.964998,-66.74588 - 1689: -48.067986,5.0444627 - - node: - color: '#FFFFFFFF' - id: Bushe3 - decals: - 1039: 49.993763,22.959341 - - node: - color: '#FFFFFFFF' - id: Bushe4 - decals: - 1038: 48.900013,22.974966 - 1072: -5.339998,-66.605255 - 1074: 5.097502,-68.605255 - 1690: -46.83361,5.0444627 - - node: - color: '#FFFFFFFF' - id: Bushf1 - decals: - 1687: -46.89611,5.0132127 - - node: - color: '#FFFFFFFF' - id: Bushf3 - decals: - 1688: -48.14611,4.9663377 - - node: - color: '#FFFFFFFF' - id: Bushh1 - decals: - 1477: 11.007317,-66.29063 - - node: - color: '#FFFFFFFF' - id: Bushh2 - decals: - 1478: 11.022942,-68.72813 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 238: 32.840233,-26.000742 - 466: 8.857405,4.0894966 - 520: -8.808841,36.12809 - 1035: 48.025013,28.959341 - - node: - color: '#FFFFFFFF' - id: Bushi2 - decals: - 522: -9.136966,33.87809 - 1472: 11.038567,-68.5875 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 237: 34.512108,-25.938242 - 464: 12.107405,4.5426216 - 519: -9.121341,33.831215 - 1036: 49.946888,28.959341 - 1091: -0.82901984,-67.68338 - 1471: 10.976067,-67.41563 - - node: - color: '#FFFFFFFF' - id: Bushi4 - decals: - 465: 11.013655,3.2457466 - 1090: 0.8428552,-67.55838 - 1470: 10.991692,-65.86875 - - node: - color: '#FFFFFFFF' - id: Bushj2 - decals: - 239: 33.887108,-25.969492 - 1076: -5.121248,-68.96463 - 1686: -47.52111,5.1225877 - - node: - color: '#FFFFFFFF' - id: Bushj3 - decals: - 1075: 5.097502,-65.99588 - 1092: -5,-66 - - node: - color: '#FFFFFFFF' - id: Bushm2 - decals: - 1476: 10.991692,-67.525 - - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 591: -6.033051,-6.444069 - 1037: 48.978138,29.037466 - - node: - color: '#FFFFFFFF' - id: Caution - decals: - 512: -7,31 - 1184: -27,-1 - 1824: -9,-21 - 2699: -55,17 - - node: - color: '#DE3A3A96' - id: CautionGreyscale - decals: - 1826: -7,-18 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 1479: -20,-8 - 1480: -20,-7 - 1481: -19,-7 - 1482: -19,-8 - - node: - color: '#D4D4D46C' - id: CheckerNESW - decals: - 1418: 23,-37 - 1419: 23,-38 - 1420: 24,-38 - 1421: 24,-37 - 1422: 25,-37 - 1423: 25,-38 - 1424: 26,-38 - 1425: 26,-37 - 1426: 27,-38 - 1427: 27,-37 - 1428: 27,-36 - 1429: 26,-36 - 1430: 25,-36 - 1431: 24,-36 - 1432: 23,-36 - 1433: 23,-35 - 1434: 24,-35 - 1435: 25,-35 - 1436: 26,-35 - 1437: 26,-34 - 1438: 24,-34 - 1439: 23,-34 - 1440: 25,-34 - 1441: 26,-33 - 1442: 25,-33 - 1443: 24,-33 - 1444: 23,-33 - 1445: 23,-32 - 1446: 24,-32 - 1447: 25,-32 - 1448: 26,-32 - 1449: 26,-31 - 1450: 25,-31 - 1451: 24,-31 - 1452: 23,-31 - - node: - color: '#D4D4D428' - id: CheckerNESW - decals: - 175: 2,-46 - 176: 2,-45 - 178: -37,-5 - 179: -37,-4 - 180: -37,-3 - - node: - color: '#D4D4D453' - id: CheckerNESW - decals: - 1985: -20,30 - 1986: -17,30 - 1987: -16,30 - - node: - color: '#D381C93E' - id: CheckerNWSE - decals: - 391: -45,2 - 392: -45,3 - 393: -44,3 - 394: -44,2 - 395: -43,2 - 396: -43,3 - 397: -42,3 - 398: -42,2 - 399: -42,4 - 400: -43,4 - 401: -44,4 - 402: -45,4 - 403: -45,5 - 404: -44,5 - 405: -43,5 - 406: -42,5 - - node: - color: '#D381C996' - id: CheckerNWSE - decals: - 409: -54,8 - 410: -55,8 - 411: -56,8 - 412: -57,8 - 413: -57,9 - 414: -56,9 - 415: -55,9 - 416: -54,9 - 417: -54,10 - 418: -55,10 - 419: -56,10 - 420: -57,10 - 421: -57,11 - 422: -56,11 - 423: -55,11 - 424: -54,11 - 425: -54,12 - 426: -55,12 - 427: -56,12 - 428: -57,12 - 429: -57,13 - 430: -56,13 - 431: -55,13 - 432: -54,13 - - node: - color: '#334E6DC8' - id: CheckerNWSE - decals: - 725: -63,17 - 726: -64,17 - 727: -65,17 - 728: -66,17 - 729: -67,17 - 730: -68,17 - 731: -69,17 - 732: -62,17 - - node: - color: '#FFEF9292' - id: CheckerNWSE - decals: - 2999: 44,-28 - 3000: 44,-29 - 3001: 44,-30 - 3002: 44,-31 - 3003: 44,-32 - 3004: 44,-33 - 3005: 44,-34 - - node: - color: '#A4610696' - id: CheckerNWSE - decals: - 625: 48,16 - 626: 47,16 - 627: 47,17 - 628: 47,18 - 629: 48,18 - 630: 48,17 - 631: 49,16 - 632: 49,17 - 633: 49,18 - 634: 50,18 - 635: 50,17 - 636: 51,18 - 637: 51,17 - 821: 50,16 - 822: 51,16 - - node: - color: '#D4D4D406' - id: CheckerNWSE - decals: - 2570: -33,-4 - 2571: -33,-3 - 2572: -34,-3 - 2573: -35,-3 - 2574: -35,-4 - 2575: -34,-4 - 2576: -35,-5 - 2577: -34,-5 - 2578: -33,-5 - - node: - color: '#52B4E996' - id: CheckerNWSE - decals: - 241: 32,-13 - 242: 32,-14 - 243: 32,-15 - 244: 33,-15 - 245: 34,-15 - 246: 35,-15 - 247: 36,-15 - 248: 36,-14 - 249: 35,-14 - 250: 34,-14 - 251: 33,-14 - 252: 33,-13 - 253: 34,-13 - 254: 35,-13 - 255: 36,-13 - 1990: -20,30 - 3013: 44,-14 - 3014: 44,-13 - 3015: 44,-12 - 3016: 44,-11 - 3017: 44,-10 - 3290: 47,-11 - 3291: 47,-10 - 3292: 47,-9 - 3293: 48,-9 - 3294: 48,-10 - 3295: 48,-11 - 3296: 49,-11 - 3297: 49,-10 - 3298: 49,-9 - 3299: 50,-9 - 3300: 50,-10 - 3301: 50,-11 - - node: - color: '#DE3A3A96' - id: CheckerNWSE - decals: - 1988: -16,30 - 1989: -17,30 - - node: - color: '#D4D4D44A' - id: CheckerNWSE - decals: - 1024: 26,-35 - - node: - color: '#79150096' - id: CheckerNWSE - decals: - 1813: -9,-16 - 1814: -8,-16 - 1815: -7,-16 - 1816: -6,-16 - - node: - color: '#EFB34196' - id: CheckerNWSE - decals: - 493: 10,17 - 494: 9,17 - 495: 8,17 - 496: 8,18 - 497: 9,18 - 498: 10,18 - 499: 10,19 - 500: 9,19 - 501: 8,19 - 502: 8,20 - 503: 8,21 - 504: 9,21 - 505: 9,20 - 506: 10,20 - 507: 10,21 - - node: - color: '#D4D4D428' - id: CheckerNWSE - decals: - 177: -2,-45 - 184: 11,13 - 185: 12,13 - 186: 12,12 - 187: 11,12 - 188: 10,12 - 189: 10,13 - 190: 10,14 - 191: 11,14 - 192: 12,14 - 436: 14,-14 - 437: 14,-13 - 438: 14,-12 - 1201: 1,-55 - 1202: 0,-55 - 1203: -1,-55 - 1204: -1,-56 - 1205: 0,-56 - 1206: 1,-56 - 1207: 1,-57 - 1208: 0,-57 - 1209: -1,-57 - 1210: 0,-58 - 1211: 0,-54 - - node: - color: '#D4D4D496' - id: CheckerNWSE - decals: - 1338: 26,-35 - 1339: 25,-35 - - node: - cleanable: True - color: '#00000069' - id: Damaged - decals: - 2966: -58,26 - 2967: -59,26 - 2968: -60,27 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 167: 7,-26 - 471: -25,35 - 472: -25,36 - 473: -26,36 - 474: -26,35 - 1460: 51,10 - 1461: 51,8 - 1465: 51,12 - 1661: -46,17 - 1731: 41,19 - 1732: 40,19 - 1733: 39,19 - 1946: -21,26 - 1947: -23,26 - 2115: -41,-5 - 2752: 41,-35 - 3153: 42,6 - 3154: -18,26 - 3302: 0,30 - 3313: 23,3 - 3326: 38,1 - - node: - angle: 1.5707963267948966 rad - color: '#79150096' - id: Delivery - decals: - 2963: -7,-47 - - node: - color: '#DE3A3A96' - id: Delivery - decals: - 3155: -32,-20 - - node: - color: '#D381C996' - id: DeliveryGreyscale - decals: - 1356: -56,1 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DeliveryGreyscale - decals: - 3473: -61,17 - 3474: -70,17 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Dirt - decals: - 144: -15,-43 - 145: -16,-43 - 146: -14,-43 - 147: -16,-41 - 148: -16,-42 - 149: -15,-40 - 150: -12,-42 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 62: 16,-49 - 63: 16,-49 - 64: 16,-51 - 65: 18,-50 - 66: 19,-49 - 67: 19,-49 - 68: 18,-49 - 69: 18,-51 - 70: 17,-51 - 71: 17,-51 - 2616: -45,-32 - 2617: -46,-32 - 2618: -46,-33 - 2619: -47,-33 - 2620: -46,-34 - 2621: -48,-32 - 2622: -49,-31 - 2623: -46,-30 - 2624: -49,-33 - 2625: -49,-32 - 2626: -48,-33 - 2627: -50,-32 - 2628: -50,-31 - 2629: -47,-32 - 2630: -48,-31 - 2631: -47,-34 - 2632: -47,-35 - 2633: -46,-35 - 2634: -45,-34 - 2635: -44,-34 - 2636: -44,-32 - 2637: -46,-31 - 2638: -49,-30 - 2639: -52,-30 - 2640: -52,-33 - 2641: -45,-29 - 2642: -31,-31 - 2643: -31,-32 - 2644: -29,-32 - 2645: -32,-32 - 2646: -35,-32 - 2647: -34,-32 - 2648: -39,-32 - 2649: -40,-31 - 2650: -34,-31 - 2651: -20,-35 - 2652: -11,-45 - 2653: -11,-44 - 2654: -13,-45 - 2655: -14,-45 - 2662: 53,-7 - 2663: 53,-9 - 2664: 53,-10 - 2665: 53,-11 - 2666: 54,-11 - 2667: 55,-12 - 2668: 55,-15 - 2669: 50,-6 - 2670: 47,-5 - 2671: 33,-5 - 2672: 33,-6 - 2673: 31,-7 - 2674: 29,-8 - 2675: 33,-3 - 2676: 30,-10 - 2677: 31,-2 - 2678: 30,-1 - 2679: 32,1 - 2680: 31,2 - 2681: 57,-25 - 2682: 59,-42 - 2683: 58,-43 - 2684: 56,-43 - 2685: 47,-43 - 2686: 45,-41 - 2687: 25,-41 - 2688: 28,-40 - 2689: 31,-40 - 2690: 30,-40 - 2691: 25,-40 - 2719: 36,20 - 2720: 37,20 - 2721: 35,21 - 2722: 32,20 - 2723: 30,20 - 2724: 27,21 - 2725: 31,17 - 2726: 32,11 - 2727: 29,12 - 2736: -31,-35 - 2737: -33,-36 - 2738: -30,-35 - 2739: -17,-38 - 2740: -17,-37 - 2741: -18,-35 - 2742: -13,-46 - 2743: -12,-47 - 2744: -8,-50 - 2745: -8,-52 - 2746: -15,-49 - 2809: 13,-46 - 2810: 14,-47 - 2811: 15,-45 - 2812: 17,-44 - 2813: 19,-47 - 2814: 11,-46 - 2815: 10,-47 - 2816: 10,-49 - 2817: 13,-40 - 2818: 12,-40 - 2819: 11,-41 - 2820: 5,-51 - 2954: 5,-43 - 2955: 6,-43 - 2956: 7,-35 - 2957: -3,-43 - 2958: -6,-41 - 2959: -13,-40 - 2960: -12,-41 - 2961: -12,-42 - 2962: -14,-41 - 2972: 41,-50 - 2973: 42,-52 - 2974: 41,-49 - 2975: 38,-52 - 2976: 22,-49 - 3162: -59,44 - 3163: -59,45 - 3164: -60,46 - 3165: -58,47 - 3166: -57,44 - 3167: -58,43 - 3168: -59,40 - 3169: -60,41 - 3170: -60,42 - 3171: -61,43 - 3172: -61,44 - 3173: -62,45 - 3174: -62,47 - 3175: -63,47 - 3176: -61,48 - 3177: -61,49 - 3178: -62,50 - 3179: -62,51 - 3180: -58,52 - 3181: -58,51 - 3182: -59,51 - 3183: -59,50 - 3184: -58,49 - 3185: -53,46 - 3186: -56,46 - 3187: -58,37 - 3188: -59,37 - 3189: -60,39 - 3190: -59,36 - 3469: 40,-48 - 3470: 41,-45 - 3471: 40,-44 - 3472: 43,-46 - 3475: -23,-33 - 3476: -24,-33 - - node: - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 3327: 37,-2 - 3328: 37,2 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 130: -16,-43 - 131: -14,-43 - 132: -14,-44 - 133: -16,-42 - 134: -16,-40 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 82: 53,-38 - 83: 60,-28 - 104: 13,11 - 151: -51,-30 - 168: -39,-14 - 561: -59,19 - 562: -60,22 - 563: -60,23 - 688: 51,0 - 689: 50,0 - 690: 49,-1 - 691: 49,3 - 945: -5,-25 - 946: -4,-25 - 1771: -39,9 - 1791: -10,-15 - 1822: -7,-16 - 2393: -1,13 - 2469: 52,-38 - 2470: 52,-38 - 2582: 53,-22 - 2583: 53,-23 - 2589: -46,-30 - 2590: -45,-30 - 2591: -45,-32 - 2592: -46,-33 - 2593: -46,-33 - 2594: -50,-33 - 2595: -48,-32 - 2728: 30,12 - 2729: 27,11 - 2730: 30,18 - 2731: 29,21 - 2903: -63,-10 - 2969: -59,26 - 2970: -60,26 - 3146: 45,9 - 3373: 43,2 - 3374: 45,0 - 3375: 45,-1 - 3376: 48,4 - 3423: 40,-2 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 349: -23,-6 - 350: -23,-8 - 351: -28,-20 - 352: -25,-19 - 353: -29,-16 - 354: -30,-15 - 355: -24,-15 - 356: -23,-12 - 357: -32,-11 - 618: -38,8 - 619: -38,6 - 620: -38,5 - 621: -37,8 - 622: -34,9 - 623: -33,8 - 624: -39,12 - 970: -30,-20 - 971: -21,-19 - 972: -33,-20 - 973: -33,-17 - 974: -32,-20 - 3334: 37,1 - 3335: 37,-1 - 3336: 38,0 - 3337: 36,0 - 3338: 36,-1 - 3339: 40,0 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: DirtLight - decals: - 125: 19,-13 - 126: 20,-11 - 127: 17,-12 - 128: 17,-13 - 129: -1,-31 - 137: -11,-43 - 138: -13,-43 - 139: -10,-43 - 140: -9,-43 - 141: -7,-43 - 142: -6,-42 - 143: -15,-40 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 72: -7,-24 - 73: 11,-29 - 75: 13,-28 - 76: 16,-38 - 77: 21,-38 - 78: 23,-38 - 79: 37,-22 - 80: 44,-37 - 81: 44,-38 - 85: 30,-12 - 86: 31,-12 - 87: 33,-12 - 88: -45,9 - 89: -44,9 - 90: -45,8 - 91: -20,8 - 94: -12,8 - 95: -13,9 - 97: -7,9 - 99: 17,12 - 100: 16,13 - 101: 17,14 - 102: 15,16 - 103: 11,11 - 107: 11,15 - 109: 1,-42 - 110: 1,-35 - 111: 15,-17 - 112: 13,-17 - 113: 17,-9 - 114: 17,-4 - 115: 17,5 - 116: -37,0 - 118: -17,-1 - 119: -17,-2 - 120: -15,-12 - 121: -1,-24 - 122: 0,-28 - 123: 16,-21 - 124: 19,-30 - 153: -47,-33 - 154: -45,-35 - 155: -50,-30 - 171: -38,-13 - 172: -38,-14 - 173: -38,-18 - 174: -39,-19 - 434: 11,-21 - 435: 12,-21 - 445: 15,-14 - 446: 15,-15 - 447: 15,-12 - 448: 15,-11 - 449: 16,-9 - 450: 17,-2 - 451: 17,0 - 452: 17,1 - 453: 16,2 - 454: 16,-5 - 484: -26,31 - 485: -27,30 - 486: -23,31 - 487: -23,29 - 488: -21,29 - 489: -18,29 - 490: -22,27 - 491: -24,30 - 492: -29,31 - 554: -16,12 - 555: -16,23 - 556: -23,24 - 557: -39,24 - 558: -42,22 - 559: -43,21 - 560: -56,16 - 566: -58,20 - 567: -59,18 - 568: -60,17 - 569: -59,25 - 570: -60,24 - 571: -56,24 - 572: -57,20 - 695: 47,-1 - 696: 48,-2 - 697: 49,-2 - 698: 51,1 - 699: 50,1 - 700: 51,2 - 701: 48,2 - 702: 47,0 - 703: 44,4 - 704: 49,4 - 705: 43,5 - 706: 43,6 - 707: 55,12 - 708: 54,11 - 709: 53,11 - 710: 55,13 - 711: 55,9 - 712: 49,14 - 713: 50,13 - 714: 41,6 - 715: 41,5 - 716: 40,5 - 717: 37,4 - 718: 36,5 - 785: -22,25 - 786: -17,18 - 787: -37,4 - 788: -37,-11 - 789: -37,-15 - 790: -19,-20 - 791: -17,-14 - 792: -17,-7 - 793: -16,-5 - 801: -16,7 - 803: -16,4 - 804: -15,9 - 805: -16,0 - 942: -9,-25 - 943: -8,-25 - 944: -8,-25 - 949: -4,-24 - 950: -1,-25 - 951: 7,-21 - 952: 16,-25 - 953: 16,-25 - 954: 13,-25 - 1003: 7,-20 - 1004: 8,-20 - 1005: 9,-20 - 1006: 9,-21 - 1007: 10,-23 - 1008: 12,-23 - 1009: -6,-23 - 1010: -25,-23 - 1011: -34,-23 - 1012: -37,-24 - 1185: -10,-55 - 1186: -14,-56 - 1187: -19,-55 - 1188: -7,-54 - 1189: -2,-54 - 1190: -3,-57 - 1191: 2,-59 - 1192: -3,-64 - 1193: 0,-61 - 1194: -3,-66 - 1195: -3,-71 - 1196: -1,-73 - 1197: 2,-71 - 1198: 1,-55 - 1199: -1,-47 - 1200: 0,-45 - 1269: 20,24 - 1270: 15,25 - 1271: 16,27 - 1272: 34,23 - 1273: 38,24 - 1274: 44,26 - 1275: 45,25 - 1276: 52,25 - 1277: 53,26 - 1278: 52,21 - 1279: 44,21 - 1280: 41,20 - 1281: 52,14 - 1282: 48,18 - 1283: 49,16 - 1284: 45,7 - 1285: 20,8 - 1286: 32,7 - 1287: 34,8 - 1288: 16,8 - 1289: 5,8 - 1290: -7,9 - 1291: -8,8 - 1330: 7,-22 - 1331: 5,-23 - 1332: 4,-23 - 1333: 7,-24 - 1334: 23,-23 - 1335: 18,-28 - 1336: 21,-35 - 1337: 19,-34 - 1772: -38,9 - 1773: -39,8 - 1774: -39,7 - 1775: -35,8 - 1776: -39,-1 - 1793: -10,-16 - 1794: -10,-14 - 1795: -11,-14 - 1796: -10,-13 - 1797: -11,-13 - 1798: -8,-12 - 1799: -8,-14 - 1800: -9,-13 - 1801: -10,-13 - 1802: -11,-17 - 1803: -11,-18 - 1819: -9,-16 - 1820: -8,-16 - 1821: -8,-16 - 2145: -39,-12 - 2146: -39,-8 - 2147: -40,-7 - 2148: -39,-8 - 2150: -39,-9 - 2151: -39,-3 - 2152: -39,3 - 2397: 1,13 - 2398: 0,14 - 2399: 0,15 - 2400: 0,15 - 2401: 1,15 - 2402: 3,14 - 2403: 5,15 - 2404: 7,13 - 2405: 9,14 - 2406: 11,12 - 2407: 11,14 - 2408: 5,17 - 2409: 4,17 - 2410: 4,18 - 2411: -4,17 - 2412: -4,19 - 2413: -3,20 - 2414: -2,17 - 2451: 3,19 - 2452: 4,20 - 2454: -4,21 - 2455: -3,22 - 2456: -3,24 - 2457: -2,21 - 2458: -2,20 - 2459: -3,23 - 2460: -5,28 - 2461: -5,27 - 2462: -11,28 - 2463: -12,29 - 2464: -13,30 - 2465: -13,31 - 2466: -12,32 - 2467: -22,31 - 2468: -30,30 - 2471: 51,-38 - 2472: 51,-38 - 2481: 49,-39 - 2603: -52,-35 - 2604: -52,-35 - 2605: -52,-32 - 2606: -49,-31 - 2607: -49,-31 - 2608: -48,-32 - 2609: -48,-32 - 2610: -45,-33 - 2611: -45,-33 - 2612: -45,-33 - 2613: -46,-32 - 2614: -46,-32 - 2615: -46,-32 - 2732: 28,21 - 2733: 31,18 - 2734: 31,12 - 2735: 27,12 - 3147: 44,9 - 3148: 46,8 - 3149: 44,10 - 3150: 45,12 - 3380: 45,3 - 3381: 46,3 - 3382: 43,3 - 3383: 42,3 - 3384: 44,2 - 3385: 45,1 - 3386: 46,-1 - 3387: 45,-2 - 3388: 46,1 - 3389: 47,2 - 3390: 48,1 - 3391: 51,4 - 3392: 48,3 - 3393: 46,2 - 3394: 40,2 - 3406: 49,6 - 3407: 48,7 - 3408: 53,6 - 3409: 45,5 - 3410: 41,8 - 3411: 40,9 - 3412: 39,8 - 3413: 41,13 - 3414: 41,15 - 3415: 40,16 - 3416: 56,7 - 3417: 41,1 - 3418: 41,0 - 3419: 42,2 - 3426: 40,-1 - 3437: 56,12 - 3438: 54,15 - 3439: 49,17 - 3440: 55,7 - 3441: 49,9 - 3442: 50,11 - 3443: 37,7 - - node: - color: '#FFFFFFFF' - id: DirtMedium - decals: - 345: -26,-19 - 346: -25,-20 - 347: -28,-19 - 348: -23,-5 - 615: -38,7 - 616: -39,10 - 617: -39,11 - 969: -31,-20 - 3329: 36,-2 - 3330: 38,-2 - 3331: 36,2 - 3332: 38,2 - 3333: 37,1 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: DirtMedium - decals: - 135: -16,-42 - 136: -12,-43 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - decals: - 74: 11,-28 - 84: 35,-12 - 92: -19,8 - 93: -13,8 - 96: -7,10 - 98: 17,13 - 105: 12,11 - 106: 10,15 - 108: -1,-42 - 117: -37,-1 - 152: -50,-33 - 169: -39,-15 - 170: -39,-16 - 444: 14,-14 - 481: -23,30 - 482: -22,29 - 483: -25,31 - 564: -58,21 - 565: -59,25 - 692: 50,2 - 693: 50,4 - 694: 49,0 - 800: -16,6 - 802: -14,7 - 947: -3,-25 - 948: -6,-25 - 1329: 6,-22 - 1792: -11,-16 - 2149: -40,-8 - 2394: 0,13 - 2395: -1,14 - 2396: 1,14 - 2453: -3,21 - 2473: 52,-36 - 2474: 52,-37 - 2475: 56,-37 - 2476: 55,-38 - 2477: 47,-36 - 2478: 48,-36 - 2479: 50,-39 - 2480: 50,-39 - 2584: 53,-21 - 2585: 53,-24 - 2596: -46,-32 - 2597: -46,-34 - 2598: -45,-33 - 2599: -47,-30 - 2600: -49,-31 - 2601: -51,-33 - 2602: -52,-34 - 2904: -64,-10 - 2905: -62,-9 - 2906: -60,-12 - 3377: 49,4 - 3378: 44,3 - 3379: 40,3 - 3424: 41,-2 - 3425: 42,-2 - - node: - cleanable: True - color: '#FED83DFF' - id: Donk - decals: - 2579: -62.43933,-13.441491 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 236: 34.965233,-25.985117 - 1473: 11.007317,-66.54063 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 1088: -0.48526984,-68.87088 - 1089: 0.23348016,-66.02713 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 1087: 0.7647302,-68.49588 - 1475: 11.007317,-69.05625 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 516: -8.949466,34.143715 - 1033: 48.118763,22.943716 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 234: 33.152733,-25.953867 - 1085: 0.6866052,-66.792755 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 235: 33.933983,-26.047617 - 462: 12.076155,3.7926216 - 518: -9.011966,36.081215 - 1086: -0.76651984,-68.074005 - 1474: 11.038567,-68.22813 - - node: - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 1034: 49.540638,22.974966 - 1084: -0.48526984,-65.65213 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 463: 11.34178,4.3394966 - 587: -5.970551,-6.928444 - 588: -5.986176,-6.053444 - 823: 9.393604,3.3875775 - 1083: -0.26651984,-69.93338 - - node: - color: '#A4610696' - id: FullTileOverlayGreyscale - decals: - 638: 48,15 - 645: 42,6 - 646: 42,5 - 657: 44,4 - 658: 47,8 - 659: 47,7 - 3314: 37,3 - 3315: 39,-1 - 3316: 39,0 - 3317: 36,-2 - 3318: 37,-2 - 3319: 38,-2 - 3320: 38,2 - 3321: 37,2 - 3322: 36,2 - 3395: 49,5 - 3396: 48,5 - 3420: 40,-2 - 3421: 41,-2 - 3422: 42,-2 - - node: - color: '#EFB34196' - id: FullTileOverlayGreyscale - decals: - 157: 5,16 - - node: - color: '#D4D4D406' - id: FullTileOverlayGreyscale - decals: - 2547: 41,-10 - 2548: 40,-10 - 2549: 39,-10 - 2550: 38,-10 - 2551: 37,-10 - 2552: 36,-10 - 2553: 36,-9 - 2554: 36,-8 - 2555: 36,-7 - 2556: 36,-6 - 2557: 38,-9 - 2558: 38,-8 - 2559: 38,-7 - 2560: 38,-6 - 2561: 40,-9 - 2562: 40,-8 - 2563: 40,-7 - 2564: 40,-6 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 240: 46,-22 - 256: 33,-16 - 270: 31,-17 - 271: 31,-20 - 273: 41,-21 - 274: 41,-20 - 275: 37,-21 - 276: 37,-20 - 277: 36,-21 - 278: 42,-21 - 302: 46,-10 - 303: 42,-24 - 3030: 33,-22 - 3057: 46,-17 - 3058: 46,-19 - 3068: 46,-18 - - node: - color: '#D381C93E' - id: FullTileOverlayGreyscale - decals: - 390: -46,3 - - node: - color: '#EFD84196' - id: FullTileOverlayGreyscale - decals: - 1999: -19,30 - 2000: -18,30 - 2001: -15,30 - - node: - color: '#D381C996' - id: FullTileOverlayGreyscale - decals: - 368: -53,0 - 610: -39,10 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 592: 0,3 - 593: 1,3 - 594: 2,3 - 595: 3,3 - 596: -1,3 - 597: -2,3 - 598: -3,3 - 2947: 5,-36 - 2948: 3,-36 - 2949: 5,-37 - 2950: 3,-37 - - node: - color: '#EFCC4196' - id: FullTileOverlayGreyscale - decals: - 2371: -2,14 - 2372: 2,14 - 2373: 1,13 - 2374: 0,13 - 2375: -1,13 - 2376: -1,14 - 2377: 0,14 - 2378: 1,14 - 2379: 1,15 - 2380: 0,15 - 2381: -1,15 - 2382: 0,12 - - node: - color: '#D0BF4AA7' - id: FullTileOverlayGreyscale - decals: - 222: 42,-28 - 223: 42,-32 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 309: -33,-13 - 310: -33,-10 - 311: -33,-7 - 312: -21,-13 - 313: -21,-10 - 314: -21,-7 - 328: -31,-2 - 343: -26,-18 - 344: -28,-18 - 358: -22,-21 - 359: -22,-19 - - node: - cleanable: True - color: '#169C9CFF' - id: Gene - decals: - 2581: 53.01786,-22.012398 - - node: - color: '#FFFFFFFF' - id: Grassb1 - decals: - 231: 34.980858,-25.969492 - - node: - color: '#FFFFFFFF' - id: Grassb2 - decals: - 233: 33.699608,-25.985117 - 521: -8.918216,34.34684 - 1066: -5.121248,-69.02713 - - node: - color: '#FFFFFFFF' - id: Grassb3 - decals: - 1065: 5.175627,-68.99588 - - node: - color: '#FFFFFFFF' - id: Grassb4 - decals: - 589: -5.939301,-7.022194 - 1068: 5.144377,-65.90213 - - node: - color: '#FFFFFFFF' - id: Grassb5 - decals: - 232: 32.824608,-26.016367 - 1067: -5.105623,-65.949005 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 461: 11.06053,2.6519966 - 1081: -0.84464484,-69.58963 - - node: - color: '#FFFFFFFF' - id: Grassd2 - decals: - 230: 35.121483,-26.016367 - 460: 10.02928,3.2613716 - 1031: 50,29 - 1032: 48,23 - 1077: 0.9053552,-65.02713 - 1082: 0.8272302,-69.83963 - 1469: 10.976067,-66.05625 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 459: 11.107405,3.8082466 - 1078: -0.92276984,-64.99588 - - node: - color: '#FFFFFFFF' - id: Grasse1 - decals: - 229: 34.449608,-26.000742 - 457: 10.37303,4.2613716 - 458: 11.919905,3.4176216 - 1079: 0.48348016,-65.511505 - 1080: -0.71964484,-67.042755 - 1468: 11.054192,-66.97813 - 1683: -46.974236,5.0132127 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 228: 33.683983,-26.016367 - 455: 9.31053,4.0426216 - 456: 11.357405,4.8394966 - 517: -8.980716,36.081215 - 1027: 49,23 - 1028: 49,29 - 1467: 11.007317,-67.97813 - 1682: -47.98986,4.9819627 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 227: 32.949608,-25.985117 - 514: -9.011966,34.12809 - 585: -6.001801,-6.928444 - 586: -6.017426,-6.131569 - 1029: 50,23 - 1030: 48,29 - 1466: 10.976067,-68.97813 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 684: 47,14 - 685: 48,14 - 686: 49,14 - 3143: 45,9 - 3144: 44,9 - 3428: 56,15 - 3429: 55,15 - 3430: 54,15 - 3431: 53,15 - - node: - color: '#EFCC4196' - id: HalfTileOverlayGreyscale - decals: - 2276: 8,32 - 2277: 7,32 - 2278: 6,32 - 2279: 5,32 - 2280: 4,32 - 2341: 5,21 - 2342: 4,21 - 2343: 3,21 - 2344: 2,21 - 2345: 1,21 - 2346: 0,21 - 2347: -1,21 - 2348: -2,21 - 2368: 6,15 - 2369: 4,15 - - node: - color: '#D0BF4AA7' - id: HalfTileOverlayGreyscale - decals: - 209: 40,-27 - 210: 38,-27 - 211: 39,-27 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - decals: - 15: 48,-21 - 16: 49,-21 - 17: 50,-21 - 292: 33,-17 - 293: 34,-17 - 294: 35,-17 - 3069: 47,-17 - 3070: 48,-17 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale - decals: - 160: 13,-16 - 161: 12,-16 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 378: -42,14 - 379: -41,14 - 380: -40,14 - 381: -39,14 - 382: -38,14 - 611: -34,9 - 612: -33,9 - 613: -32,9 - 1777: -43,0 - 1778: -42,0 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - decals: - 35: 48,-26 - 36: 49,-26 - 37: 50,-26 - 38: 51,-26 - 39: 52,-26 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 338: -34,2 - 339: -33,2 - 340: -32,2 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 158: 13,-18 - 159: 12,-18 - - node: - color: '#D0BF4AA7' - id: HalfTileOverlayGreyscale180 - decals: - 224: 40,-33 - 225: 39,-33 - 226: 38,-33 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 651: 44,5 - 652: 45,5 - 664: 47,12 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale180 - decals: - 31: 48,-27 - 33: 49,-27 - 50: 51,-33 - - node: - color: '#D381C93E' - id: HalfTileOverlayGreyscale180 - decals: - 407: -36,2 - - node: - color: '#EFCC4196' - id: HalfTileOverlayGreyscale180 - decals: - 2281: 8,23 - 2282: 7,23 - 2283: 6,23 - 2284: 5,23 - 2285: 4,23 - 2333: 4,17 - 2334: 3,17 - 2335: 1,17 - 2336: 2,17 - 2337: 0,17 - 2338: -1,17 - 2339: -2,17 - 2340: -3,17 - 2365: 5,13 - 2366: 4,13 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 333: -32,-1 - 334: -33,-1 - 335: -34,-1 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 374: -38,11 - 375: -42,13 - 376: -41,13 - 377: -40,13 - 1779: -43,-2 - 2139: -42,-11 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 5: 49,-24 - 6: 48,-24 - 7: 47,-24 - 3028: 34,-21 - 3029: 33,-21 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 648: 43,6 - 649: 43,7 - 650: 43,8 - 660: 48,7 - 661: 48,8 - 662: 48,9 - 663: 48,10 - 3397: 48,6 - - node: - color: '#EFCC4196' - id: HalfTileOverlayGreyscale270 - decals: - 2330: -5,18 - 2331: -5,19 - 2332: -5,20 - 2355: 9,14 - 2367: 3,14 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 600: -4,1 - 601: -3,2 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 383: -39,12 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 322: -32,-13 - 323: -32,-12 - 324: -32,-11 - 325: -32,-10 - 326: -32,-9 - 327: -32,-8 - 336: -35,0 - 337: -35,1 - 1831: -32,-14 - 1832: -32,-7 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - decals: - 22: 50,-33 - 23: 50,-32 - 24: 50,-31 - 25: 50,-30 - 26: 50,-29 - 27: 50,-28 - 28: 47,-27 - 29: 47,-26 - 2992: 43,-27 - 2993: 43,-29 - 2994: 43,-30 - 2995: 43,-31 - 2996: 43,-33 - 2997: 43,-34 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale270 - decals: - 182: -39,-24 - 193: 15,-2 - 194: 15,-1 - 195: 15,0 - 196: 15,-4 - - node: - color: '#D0BF4AA7' - id: HalfTileOverlayGreyscale270 - decals: - 212: 37,-32 - 213: 37,-31 - 214: 37,-30 - 215: 37,-29 - 216: 37,-28 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 11: 47,-23 - 12: 47,-22 - 13: 47,-21 - 272: 32,-19 - 285: 43,-9 - 286: 43,-10 - 287: 43,-11 - 288: 43,-12 - 289: 43,-13 - 290: 43,-14 - 291: 43,-15 - 3024: 32,-18 - 3025: 32,-20 - - node: - cleanable: True - color: '#D2B758FF' - id: HalfTileOverlayGreyscale270 - decals: - 0: 37,-34 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 41: 52,-27 - 42: 52,-28 - 43: 52,-29 - 44: 52,-30 - 45: 52,-31 - 46: 52,-32 - 47: 52,-33 - 2985: 45,-34 - 2986: 45,-32 - 2987: 45,-31 - 2988: 45,-30 - 2989: 45,-29 - 2990: 45,-28 - 2991: 45,-27 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 315: -22,-13 - 316: -22,-12 - 317: -22,-11 - 318: -22,-10 - 319: -22,-9 - 320: -22,-8 - 321: -22,-7 - 341: -31,0 - 342: -31,1 - 1830: -22,-14 - - node: - color: '#EFCC4196' - id: HalfTileOverlayGreyscale90 - decals: - 2353: 6,18 - 2354: 6,20 - 2363: 7,13 - 2364: 7,14 - - node: - color: '#D0BF4AA7' - id: HalfTileOverlayGreyscale90 - decals: - 217: 41,-32 - 218: 41,-31 - 219: 41,-30 - 220: 41,-29 - 221: 41,-28 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 1: 51,-24 - 2: 51,-23 - 3: 51,-22 - 4: 51,-21 - 283: 35,-20 - 284: 35,-19 - 295: 45,-15 - 296: 45,-14 - 297: 45,-13 - 298: 45,-12 - 299: 45,-11 - 300: 45,-10 - 301: 45,-9 - 3071: 49,-18 - 3072: 49,-19 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 639: 41,5 - 640: 41,6 - 641: 41,7 - 642: 41,8 - 643: 41,9 - 644: 41,10 - 654: 46,6 - 655: 46,7 - 656: 46,8 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 372: -37,12 - 373: -37,13 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale90 - decals: - 181: 17,-9 - 183: -37,-1 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 599: 3,2 - 794: -15,3 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 163: 8,-26 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 162: 3,-26 - 614: -33,9 - 3080: -18,27 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 666: 54,11 - 810: 43,6 - - node: - angle: 1.5707963267948966 rad - color: '#D381C996' - id: LoadingAreaGreyscale - decals: - 2114: -42,-5 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkCornerNe - decals: - 3242: -116,21 - 3243: -116,25 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkCornerNw - decals: - 3240: -108,21 - 3244: -108,25 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkCornerSe - decals: - 3239: -116,30 - 3245: -116,27 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkCornerSw - decals: - 3241: -108,30 - 3246: -108,27 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkLineE - decals: - 3213: -116,22 - 3214: -116,23 - 3215: -116,24 - 3216: -116,26 - 3217: -116,28 - 3218: -116,29 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkLineN - decals: - 3232: -109,21 - 3233: -110,21 - 3234: -111,21 - 3235: -112,21 - 3236: -113,21 - 3237: -114,21 - 3238: -115,21 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkLineS - decals: - 3225: -109,30 - 3226: -110,30 - 3227: -111,30 - 3228: -112,30 - 3229: -113,30 - 3230: -114,30 - 3231: -115,30 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkLineW - decals: - 1655: -41,2 - 1656: -41,3 - 1657: -41,4 - 1658: -41,5 - 3219: -108,22 - 3220: -108,23 - 3221: -108,24 - 3222: -108,26 - 3223: -108,28 - 3224: -108,29 - - node: - color: '#80C71F95' - id: MonoOverlay - decals: - 1662: 47,-30 - 1663: 48,-29 - 1664: 49,-28 - 1665: 49,-30 - 1666: 47,-28 - - node: - color: '#52B4E996' - id: MonoOverlay - decals: - 3020: 34,-20 - 3021: 33,-19 - 3022: 34,-18 - - node: - color: '#D4D4D428' - id: PavementCheckerAOverlay - decals: - 3092: 34,-36 - 3093: 31,-37 - 3094: 29,-34 - 3095: 30,-32 - 3096: 28,-34 - 3097: 28,-27 - 3098: 30,-29 - 3099: 32,-27 - 3100: 33,-28 - 3101: 33,-31 - 3102: 33,-30 - 3103: 34,-34 - 3104: 33,-33 - - node: - color: '#D4D4D40C' - id: PavementCheckerAOverlay - decals: - 3105: 35,-34 - 3106: 32,-33 - 3107: 31,-29 - - node: - color: '#D4D4D412' - id: PavementCheckerBOverlay - decals: - 3121: 30,-33 - 3122: 30,-34 - 3123: 29,-32 - 3124: 28,-33 - 3125: 30,-31 - 3126: 28,-28 - 3127: 30,-27 - 3128: 30,-28 - 3129: 31,-29 - - node: - color: '#D4D4D40C' - id: PavementCheckerBOverlay - decals: - 3130: 30,-37 - 3131: 32,-37 - 3132: 34,-37 - 3133: 33,-34 - 3134: 28,-32 - 3135: 31,-27 - 3136: 32,-28 - - node: - color: '#D4D4D428' - id: PavementCheckerBOverlay - decals: - 3084: 35,-30 - 3085: 32,-29 - 3086: 31,-28 - 3087: 29,-28 - 3088: 30,-30 - 3089: 29,-33 - 3090: 29,-36 - 3091: 33,-37 - 3120: 31,-33 - - node: - cleanable: True - color: '#169C9CFF' - id: Prima - decals: - 2901: 4.4262443,-52.031498 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 687: 50,14 - 742: 27,9 - 743: 25,9 - 744: 26,9 - 745: 21,9 - 746: 20,9 - 747: 19,9 - 3323: 37,1 - 3324: 37,0 - 3325: 37,-1 - 3340: 51,4 - 3341: 50,4 - 3342: 49,4 - 3343: 48,4 - 3344: 48,3 - 3345: 47,3 - 3346: 46,3 - 3347: 45,3 - 3348: 44,3 - 3349: 43,3 - 3350: 42,3 - 3351: 41,3 - 3352: 40,3 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 385: -35,11 - 386: -35,12 - 387: -35,13 - 388: -35,14 - 389: -35,15 - 1738: -31,9 - 1740: -37,9 - 1741: -38,9 - 1742: -39,9 - 1743: -39,8 - 1744: -39,7 - 1745: -39,6 - 2121: -40,-4 - 2122: -39,-4 - 2123: -39,-3 - 2567: 48,-22 - - node: - color: '#EFCC4196' - id: QuarterTileOverlayGreyscale - decals: - 2361: 9,13 - 2383: -1,11 - 2384: -2,11 - 2385: -3,11 - 2386: -4,11 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale - decals: - 197: 15,-5 - 198: 15,-6 - 199: 15,-7 - 439: 15,-14 - 440: 15,-13 - 441: 15,-12 - 442: 15,-11 - 443: 15,-15 - 1233: -3,-54 - 1240: -2,-52 - 1241: -2,-51 - 1242: -2,-50 - 1243: -2,-49 - 1244: -2,-48 - 1245: -2,-47 - 1246: -2,-46 - 1292: -17,11 - 1293: -17,12 - 1294: -17,13 - 1295: -17,14 - 1296: -17,15 - 1297: -17,17 - 1298: -17,16 - 1299: -17,18 - 1300: -17,19 - 1301: -17,20 - 1302: -17,21 - 1501: 6,-22 - 1502: 6,-21 - 1503: 6,-20 - 1504: 7,-20 - 1505: 8,-20 - 1506: 9,-20 - 1507: 6,-23 - 1508: 5,-23 - 1509: 4,-23 - 1510: 3,-23 - 1531: -4,10 - 1532: -5,10 - 1533: -6,10 - 1534: -7,10 - 1535: -7,9 - 1536: -8,9 - 1537: -9,9 - 1538: -10,9 - 1539: -11,9 - 1540: -12,9 - 1566: -31,25 - 1567: -29,25 - 1568: -30,25 - 1569: -28,25 - 1570: -27,25 - 1571: -26,25 - 1572: -25,25 - 1573: -24,25 - 1598: -22,-23 - 1599: -23,-23 - 1600: -24,-23 - 1601: -25,-23 - 1602: -26,-23 - 1606: 10,-23 - 1607: 11,-23 - 1608: 12,-23 - 1609: 13,-23 - 1610: 14,-23 - 1630: 36,10 - 1631: 36,11 - 1632: 37,11 - 1633: 38,11 - 1770: 8,7 - 2234: -39,-19 - 2235: -39,-20 - 2236: -39,-21 - 2237: -39,-22 - 2238: -39,-23 - 2273: -10,-23 - 2274: -11,-23 - 2275: -12,-23 - 2487: -28,9 - 2488: -29,9 - 2489: -30,9 - 2490: -17,5 - 2491: -17,4 - 2492: -17,3 - 2493: -18,9 - 2496: -17,9 - 2771: 15,12 - 2772: 15,11 - 2773: 15,9 - 2775: 15,-22 - 2776: 15,-23 - 2779: -17,-23 - 2804: 15,23 - 2805: 15,24 - 2806: 15,25 - 2807: 15,27 - 2808: 15,28 - 2822: -1,-41 - 2823: -1,-40 - 2824: -1,-39 - 2825: -1,-38 - 2826: -1,-37 - 2827: -1,-36 - 2828: -1,-35 - 2829: -1,-34 - 2830: -1,-33 - 2831: -1,-32 - 2832: -1,-31 - 2833: -1,-30 - 2834: -1,-29 - 2835: -1,-28 - - node: - color: '#52B4E92E' - id: QuarterTileOverlayGreyscale - decals: - 1124: 4,-66 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale - decals: - 1050: 45,26 - 1051: 48,27 - 2858: 37,26 - 2859: 36,26 - 2860: 35,26 - 2861: 34,26 - 2862: 33,26 - 2863: 32,26 - 2864: 20,26 - 2865: 21,26 - 2866: 22,26 - 2867: 23,26 - 2868: 24,26 - 2869: 25,26 - 2870: 26,26 - 2871: 27,26 - 2872: 28,26 - 2873: 29,26 - 2874: 30,26 - 2875: 31,26 - 3081: 19,26 - - node: - color: '#D4D4D437' - id: QuarterTileOverlayGreyscale - decals: - 1125: -3,-61 - 1126: -3,-62 - 1127: -3,-63 - 1128: -3,-64 - 1129: -3,-65 - 1130: -3,-66 - 1131: -4,-66 - 1132: -4,-67 - 1133: -4,-68 - 1134: -4,-69 - 1135: -3,-70 - 1136: -3,-71 - 1137: -3,-72 - 1138: -3,-73 - 1139: -3,-74 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 761: -17,-17 - 762: -17,-16 - 763: -17,-15 - 764: -17,-14 - 765: -17,-13 - 766: -17,-12 - 767: -17,-11 - 768: -17,-10 - 769: -17,-9 - 770: -17,-8 - 771: -17,-7 - 772: -17,-6 - 808: -18,1 - 809: -18,2 - 1780: -11,-16 - 1781: -11,-15 - 1782: -11,-14 - 1783: -11,-13 - 1784: -11,-12 - 1790: -10,-12 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 573: -1,-8 - 574: -1,-7 - 575: -1,-6 - 576: -1,-5 - 577: -1,-4 - 578: -1,-3 - 605: -3,1 - 606: -4,0 - 723: -74,18 - 724: -73,18 - 991: -1,-21 - 992: -1,-20 - 993: -1,-19 - 994: -1,-18 - 995: -1,-17 - 996: -1,-16 - 997: -1,-15 - 998: -1,-14 - 999: -1,-13 - 1000: -1,-12 - 1001: -1,-11 - 1002: -1,-10 - - node: - color: '#D4D4D441' - id: QuarterTileOverlayGreyscale - decals: - 1060: 43,26 - 1061: 47,26 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale - decals: - 1691: 51,22 - 1692: 50,22 - 1693: 49,22 - 1694: 48,22 - 1695: 47,22 - 1703: 52,23 - 1704: 52,22 - 1722: 41,18 - 1723: 40,18 - 1724: 39,18 - - node: - color: '#FFEF9292' - id: QuarterTileOverlayGreyscale - decals: - 3006: 44,-35 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 9: 51,-21 - 14: 47,-24 - 3019: 44,-15 - 3066: 48,-19 - - node: - color: '#52B4E944' - id: QuarterTileOverlayGreyscale - decals: - 1179: -3,-59 - 1180: -3,-58 - 1181: -3,-57 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 735: 41,11 - 748: 34,7 - 749: 33,7 - 750: 32,7 - 751: 31,7 - 752: 30,7 - 753: 29,7 - 754: 28,7 - 756: 38,4 - 757: 41,13 - 758: 41,14 - 759: 41,15 - 760: 41,16 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale180 - decals: - 1696: 46,23 - 1697: 46,24 - 1698: 47,24 - 1699: 48,24 - 1700: 49,24 - 1701: 50,24 - 1702: 51,24 - 1725: 39,20 - 1726: 40,20 - 1727: 41,20 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - decals: - 30: 47,-27 - 40: 52,-26 - 48: 50,-33 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 2568: 50,-23 - - node: - color: '#D4D4D437' - id: QuarterTileOverlayGreyscale180 - decals: - 1140: -4,-69 - 1173: 3,-59 - 1174: 3,-58 - 1175: 3,-57 - - node: - color: '#EFB34160' - id: QuarterTileOverlayGreyscale180 - decals: - 2753: 17,19 - 2754: 17,20 - 2755: 17,21 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 304: 41,-25 - 305: 40,-25 - 306: 39,-25 - 307: 38,-25 - 308: 37,-25 - 3018: 44,-9 - 3067: 47,-18 - - node: - color: '#52B4E92E' - id: QuarterTileOverlayGreyscale180 - decals: - 1109: 3,-61 - 1110: 3,-62 - 1111: 3,-63 - 1112: 3,-64 - 1113: 3,-65 - 1114: 4,-66 - 1115: 4,-67 - 1116: 4,-68 - 1117: 4,-69 - 1118: 3,-70 - 1119: 3,-71 - 1120: 3,-72 - 1121: 3,-73 - 1122: 3,-74 - 1123: 3,-69 - - node: - color: '#D4D4D441' - id: QuarterTileOverlayGreyscale180 - decals: - 1055: 56,21 - 1056: 55,20 - 1057: 53,20 - - node: - color: '#EFB3414A' - id: QuarterTileOverlayGreyscale180 - decals: - 3280: 19,6 - 3281: 20,6 - 3282: 20,7 - 3283: 21,7 - 3284: 22,7 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale180 - decals: - 1581: -28,7 - 1582: -29,7 - 1583: -30,7 - 1584: -31,7 - 1585: -32,7 - 1586: -33,7 - 1587: -34,7 - 1588: -35,7 - 1603: 9,-20 - 1604: 9,-21 - 1605: 9,-22 - 1637: -14,-2 - 1638: -15,-2 - 1639: -15,-3 - 1640: -15,-4 - 1641: -15,-5 - 1642: -15,-6 - 1643: -15,-7 - 1644: -15,-8 - 1645: -15,-9 - 1646: -15,5 - 1647: -15,6 - 1648: -15,7 - 1649: -14,7 - 1650: 10,7 - 1651: 9,7 - 1652: 8,7 - 1746: -12,7 - 1747: -11,7 - 1748: -10,7 - 1749: -9,7 - 1750: -8,7 - 1751: -8,8 - 1752: -7,8 - 1753: -6,8 - 1754: -5,8 - 1755: -5,9 - 1756: -4,9 - 1757: -3,9 - 1758: -2,9 - 1759: -1,9 - 2258: -28,-25 - 2259: -29,-25 - 2800: -28,23 - 2801: -29,23 - 2802: -30,23 - 2803: -31,23 - 2851: 1,-43 - 2852: 2,-78 - 2853: 2,-77 - 2854: 2,-76 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale180 - decals: - 1043: 56,20 - 1044: 54,20 - 1045: 52,20 - 1048: 56,22 - - node: - color: '#FFEF9292' - id: QuarterTileOverlayGreyscale180 - decals: - 3007: 44,-27 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 795: -15,4 - - node: - color: '#DF81C96C' - id: QuarterTileOverlayGreyscale270 - decals: - 3365: 48,4 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - decals: - 1040: 42,20 - 1041: 44,20 - 1042: 46,20 - 1712: 47,24 - 1713: 48,24 - 1714: 49,24 - 1715: 50,24 - 1716: 51,24 - 1717: 52,24 - 1718: 52,23 - 1728: 41,20 - 1729: 40,20 - 1730: 39,20 - - node: - color: '#EFB3414A' - id: QuarterTileOverlayGreyscale270 - decals: - 3275: 27,6 - 3276: 26,6 - 3277: 26,7 - 3278: 25,7 - 3279: 24,7 - - node: - color: '#D4D4D441' - id: QuarterTileOverlayGreyscale270 - decals: - 1058: 45,20 - 1059: 43,20 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 8: 51,-24 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 665: 48,12 - 755: 36,4 - 3366: 45,-2 - 3367: 45,-1 - 3368: 45,0 - 3369: 45,1 - 3370: 45,2 - 3371: 44,2 - 3372: 43,2 - 3398: 49,6 - 3399: 50,6 - 3400: 54,6 - 3401: 51,6 - 3402: 52,6 - 3403: 53,6 - 3404: 55,6 - 3405: 56,6 - - node: - color: '#D4D4D437' - id: QuarterTileOverlayGreyscale270 - decals: - 1155: 4,-69 - 1170: -3,-59 - 1171: -3,-58 - 1172: -3,-57 - - node: - color: '#9FED584A' - id: QuarterTileOverlayGreyscale270 - decals: - 3450: 39,16 - 3451: 39,15 - 3452: 39,14 - 3453: 39,13 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 720: -74,16 - 721: -73,16 - 722: -72,16 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 384: -39,13 - 2124: -39,1 - 2125: -39,2 - 2126: -39,3 - 2127: -39,4 - 2128: -40,-8 - 2129: -39,-8 - 2130: -39,-9 - 2131: -39,-10 - 2132: -39,-11 - 2133: -39,-12 - 2134: -40,-7 - 2566: 48,-23 - - node: - color: '#EFCC4196' - id: QuarterTileOverlayGreyscale270 - decals: - 2362: 9,15 - 2370: 6,13 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - decals: - 32: 50,-27 - 49: 52,-33 - - node: - color: '#52B4E92E' - id: QuarterTileOverlayGreyscale270 - decals: - 1093: -3,-74 - 1094: -3,-73 - 1095: -3,-72 - 1096: -3,-71 - 1097: -3,-70 - 1098: -3,-69 - 1099: -4,-69 - 1100: -4,-68 - 1101: -4,-67 - 1102: -4,-66 - 1103: -3,-65 - 1104: -3,-64 - 1105: -3,-63 - 1106: -3,-62 - 1107: -3,-61 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale270 - decals: - 200: 15,2 - 201: 15,3 - 202: 15,4 - 1212: -5,-56 - 1213: -6,-56 - 1214: -7,-56 - 1215: -8,-56 - 1216: -9,-56 - 1217: -10,-56 - 1218: -11,-56 - 1219: -12,-56 - 1220: -13,-56 - 1221: -14,-56 - 1222: -15,-56 - 1223: -16,-56 - 1224: -17,-56 - 1225: -18,-56 - 1226: -19,-56 - 1255: 20,23 - 1256: 21,23 - 1257: 22,23 - 1258: 23,23 - 1259: 24,23 - 1260: 25,23 - 1261: 27,23 - 1262: 28,23 - 1263: 29,23 - 1264: 30,23 - 1265: 34,23 - 1266: 35,23 - 1267: 36,23 - 1268: 37,23 - 1547: -44,19 - 1548: -44,20 - 1549: -44,21 - 1550: -44,22 - 1551: -44,23 - 1552: -44,24 - 1553: -44,25 - 1574: -20,7 - 1575: -21,7 - 1576: -22,7 - 1577: -23,7 - 1578: -24,7 - 1579: -25,7 - 1580: -26,7 - 1589: -39,-25 - 1590: -38,-25 - 1591: -37,-25 - 1592: -36,-25 - 1593: -35,-25 - 1594: -34,-25 - 1595: -33,-25 - 1596: -32,-25 - 1597: -31,-25 - 1653: 12,7 - 1654: 13,7 - 1760: 1,9 - 1761: 2,9 - 1762: 3,9 - 1763: 4,9 - 1764: 5,9 - 1765: 5,8 - 1766: 6,8 - 1767: 7,8 - 1768: 8,8 - 1769: 8,7 - 2254: -39,-17 - 2255: -39,-16 - 2256: -39,-15 - 2257: -39,-14 - 2260: -26,-25 - 2261: -25,-25 - 2262: -24,-25 - 2263: -23,-25 - 2264: -22,-25 - 2265: -21,-25 - 2266: -20,-25 - 2267: -19,-25 - 2268: -18,-25 - 2269: -17,-25 - 2270: -16,-25 - 2271: -15,-25 - 2272: -14,-25 - 2497: -17,7 - 2498: -18,7 - 2763: 15,14 - 2764: 15,15 - 2765: 15,16 - 2766: 15,17 - 2767: 15,18 - 2768: 15,19 - 2769: 15,20 - 2770: 15,21 - 2780: -17,-22 - 2794: -24,23 - 2795: -23,23 - 2796: -22,23 - 2797: -21,23 - 2798: -20,23 - 2799: -19,23 - 2850: -1,-43 - 2855: -2,-78 - 2856: -2,-77 - 2857: -2,-76 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 806: -18,-1 - 807: -18,0 - - node: - color: '#DF81C96C' - id: QuarterTileOverlayGreyscale90 - decals: - 3353: 40,3 - 3354: 41,3 - 3355: 42,3 - 3356: 43,3 - 3357: 44,3 - 3358: 45,3 - 3359: 46,3 - 3360: 47,3 - 3361: 48,4 - 3362: 49,4 - 3363: 50,4 - 3364: 51,4 - - node: - color: '#EFB34160' - id: QuarterTileOverlayGreyscale90 - decals: - 2756: 17,17 - 2757: 17,16 - 2758: 17,15 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 10: 47,-21 - 257: 37,-23 - 258: 38,-23 - 259: 39,-23 - 260: 40,-23 - 261: 41,-23 - - node: - color: '#D4D4D437' - id: QuarterTileOverlayGreyscale90 - decals: - 1141: 3,-61 - 1142: 3,-62 - 1143: 3,-63 - 1144: 3,-64 - 1145: 3,-65 - 1146: 4,-66 - 1147: 4,-67 - 1148: 4,-68 - 1149: 4,-69 - 1150: 3,-70 - 1151: 3,-71 - 1152: 3,-72 - 1153: 3,-73 - 1154: 3,-74 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 34: 47,-26 - - node: - color: '#52B4E944' - id: QuarterTileOverlayGreyscale90 - decals: - 1176: 3,-59 - 1177: 3,-58 - 1178: 3,-57 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale90 - decals: - 1227: 10,-54 - 1228: 9,-54 - 1229: 7,-54 - 1230: 8,-54 - 1231: 5,-54 - 1232: 3,-54 - 1234: 2,-47 - 1235: 2,-48 - 1236: 2,-49 - 1237: 2,-50 - 1238: 2,-51 - 1239: 2,-52 - 1512: -3,-23 - 1513: -4,-23 - 1514: -5,-23 - 1515: -6,-23 - 1516: -7,-23 - 1517: -8,-23 - 1518: -13,-23 - 1519: -14,-23 - 1520: 5,10 - 1521: 6,10 - 1522: 7,10 - 1523: 4,10 - 1524: 7,9 - 1525: 8,9 - 1526: 9,9 - 1527: 10,9 - 1528: 11,9 - 1529: 12,9 - 1530: 13,9 - 1554: -44,25 - 1555: -43,25 - 1556: -42,25 - 1557: -41,25 - 1558: -40,25 - 1559: -39,25 - 1560: -38,25 - 1561: -37,25 - 1562: -36,25 - 1563: -35,25 - 1564: -34,25 - 1565: -33,25 - 1611: 35,-23 - 1612: 34,-23 - 1613: 32,-23 - 1614: 31,-23 - 1615: 33,-23 - 1616: 30,-23 - 1617: 29,-23 - 1618: 28,-23 - 1619: 27,-23 - 1620: 26,-23 - 1621: 25,-23 - 1622: 24,-23 - 1623: 23,-23 - 1624: 22,-23 - 1625: 21,-23 - 1626: 20,-23 - 1627: 19,-23 - 1628: 18,-23 - 1634: -15,1 - 1635: -15,0 - 1636: -14,0 - 2002: -15,21 - 2003: -15,20 - 2004: -15,19 - 2005: -15,18 - 2006: -15,17 - 2007: -15,16 - 2008: -15,15 - 2009: -15,14 - 2010: -15,13 - 2011: -15,12 - 2012: -15,11 - 2240: -28,-23 - 2241: -29,-23 - 2242: -30,-23 - 2243: -31,-23 - 2244: -32,-23 - 2245: -33,-23 - 2246: -34,-23 - 2247: -35,-23 - 2248: -36,-23 - 2249: -37,-23 - 2250: -37,-22 - 2251: -37,-21 - 2252: -37,-20 - 2253: -37,-19 - 2482: -20,9 - 2483: -21,9 - 2484: -22,9 - 2485: -23,9 - 2486: -24,9 - 2494: -14,9 - 2495: -15,9 - 2759: 17,14 - 2760: 17,13 - 2761: 17,12 - 2762: 17,11 - 2774: 17,9 - 2777: 17,-22 - 2778: 17,-23 - 2781: -18,-23 - 2782: -15,-23 - 2783: -15,-22 - 2784: -15,-21 - 2785: -15,-20 - 2786: -15,-19 - 2787: -15,-17 - 2788: -15,-16 - 2789: -15,-15 - 2790: -15,-14 - 2791: -15,-13 - 2792: -15,-12 - 2793: -15,-11 - 2836: 1,-28 - 2837: 1,-29 - 2838: 1,-30 - 2839: 1,-31 - 2840: 1,-32 - 2841: 1,-33 - 2842: 1,-34 - 2843: 1,-35 - 2844: 1,-36 - 2845: 1,-37 - 2846: 1,-38 - 2847: 1,-39 - 2848: 1,-40 - 2849: 1,-41 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale90 - decals: - 2876: 20,26 - 2877: 21,26 - 2878: 22,26 - 2879: 23,26 - 2880: 24,26 - 2881: 25,26 - 2882: 26,26 - 2883: 27,26 - 2884: 28,26 - 2885: 29,26 - 2886: 37,26 - 2887: 36,26 - 2888: 35,26 - 2889: 34,26 - 2890: 33,26 - 2891: 32,26 - 2892: 31,26 - 2893: 30,26 - 3082: 19,26 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 736: 34,9 - 737: 33,9 - 738: 32,9 - 739: 31,9 - 740: 30,9 - 741: 29,9 - - node: - color: '#EFCC4196' - id: QuarterTileOverlayGreyscale90 - decals: - 2387: 1,11 - 2388: 2,11 - 2389: 3,11 - 2390: 4,11 - 2434: -15,23 - 2435: -15,24 - 2436: -15,25 - 2437: -16,25 - 2438: -17,25 - 2439: -18,25 - 2440: -19,25 - 2441: -20,25 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 773: -37,-17 - 774: -37,-16 - 775: -37,-15 - 776: -37,-14 - 777: -37,-13 - 778: -37,-12 - 779: -37,-11 - 780: -37,-10 - 781: -37,-9 - 782: -37,-8 - 783: -37,-7 - 784: -37,-6 - 1785: -8,-15 - 1786: -8,-14 - 1787: -8,-13 - 1788: -8,-12 - 1789: -9,-12 - - node: - color: '#D4D4D441' - id: QuarterTileOverlayGreyscale90 - decals: - 1053: 55,26 - 1054: 56,25 - 1062: 51,26 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - decals: - 1046: 56,26 - 1047: 56,24 - 1049: 53,26 - 1052: 50,27 - 1705: 51,22 - 1706: 50,22 - 1707: 49,22 - 1708: 48,22 - 1709: 47,22 - 1710: 46,22 - 1711: 46,23 - 1719: 41,18 - 1720: 40,18 - 1721: 39,18 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 579: 1,-8 - 580: 1,-7 - 581: 1,-6 - 582: 1,-5 - 583: 1,-4 - 584: 1,-3 - 603: 3,1 - 604: -4,1 - 607: 4,0 - 798: -15,2 - 979: 1,-10 - 980: 1,-11 - 981: 1,-12 - 982: 1,-13 - 983: 1,-14 - 984: 1,-15 - 985: 1,-16 - 986: 1,-17 - 987: 1,-18 - 988: 1,-19 - 989: 1,-20 - 990: 1,-21 - - node: - color: '#52B4E92E' - id: QuarterTileOverlayGreyscale90 - decals: - 1108: -4,-66 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 1739: -35,9 - 2569: 50,-22 - 2694: -55,17 - 2695: -56,17 - 2696: -57,17 - 2697: -54,17 - - node: - color: '#FFFFFFFF' - id: Remains - decals: - 2894: -63.989975,-10.123885 - - node: - color: '#FFFFFFFF' - id: Rock01 - decals: - 1069: -5.089998,-68.511505 - 1071: 5.097502,-68.08963 - - node: - color: '#FFFFFFFF' - id: Rock03 - decals: - 1684: -47.98986,4.9975877 - - node: - color: '#FFFFFFFF' - id: Rock04 - decals: - 1070: 5.097502,-66.74588 - 1685: -47.02111,4.9975877 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Rust - decals: - 51: 10,-44 - 52: 10,-44 - 53: 11,-47 - 54: 15,-46 - 55: 16,-45 - 56: 16,-45 - 57: 18,-45 - 58: 13,-44 - 59: 13,-44 - 60: 13,-45 - 61: 18,-47 - 156: -45,-35 - - node: - cleanable: True - color: '#80C71FFF' - id: Sirius - decals: - 2900: -9.970831,-51.964848 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign1 - decals: - 861: -3,10 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign2 - decals: - 862: -2,10 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign3 - decals: - 863: -1,10 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign4 - decals: - 864: 0,10 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign5 - decals: - 865: 1,10 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign6 - decals: - 866: 2,10 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign7 - decals: - 867: 3,10 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 408: -40,-1 - 513: -6,31 - 1891: -23,-20 - 1945: -22,26 - - node: - color: '#D381C996' - id: StandClearGreyscale - decals: - 1359: -53,1 - 2092: -49,1 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 262: 29,-20 - 267: 29,-17 - 280: 38,-20 - 3023: 32,-17 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 330: -35,2 - - node: - color: '#D0BF4AA7' - id: ThreeQuarterTileOverlayGreyscale - decals: - 207: 37,-27 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 3141: 43,9 - - node: - color: '#EFCC4196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2349: -5,21 - 2359: 3,15 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 371: -43,14 - 2138: -43,-10 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 264: 30,-21 - 269: 30,-18 - 282: 40,-21 - 3027: 35,-21 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 3011: 45,-35 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2119: -37,11 - 2137: -41,-11 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 653: 46,5 - - node: - color: '#D0BF4AA7' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 205: 41,-33 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 332: -31,-1 - - node: - color: '#EFCC4196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2350: 6,17 - 2360: 7,12 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 331: -35,-1 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 265: 29,-21 - 266: 29,-18 - 279: 38,-21 - 3026: 32,-21 - 3065: 48,-18 - - node: - color: '#EFCC4196' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2352: -5,17 - 2356: 6,12 - 2357: 3,13 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 3010: 43,-35 - - node: - color: '#D0BF4AA7' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 208: 37,-33 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 369: -39,11 - 370: -43,13 - 2142: -43,-11 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 647: 43,5 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 329: -31,2 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 3142: 46,9 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 263: 30,-20 - 268: 30,-17 - 281: 40,-20 - 3073: 49,-17 - - node: - color: '#D0BF4AA7' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 206: 41,-27 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2118: -37,14 - 2141: -41,-10 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 602: 4,1 - - node: - color: '#EFCC4196' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2351: 6,21 - 2358: 7,15 - - node: - cleanable: True - color: '#B02E26FF' - id: Tunnel - decals: - 2587: 32.016933,17.019823 - - node: - color: '#FFFFFFFF' - id: VentSmall - decals: - 904: -3,-9 - - node: - cleanable: True - color: '#835432FF' - id: Waffle - decals: - 2895: -15.97007,-46.029713 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 2190: -25,2 - 3454: 12,-55 - 3455: -25,-36 - 3456: 23,-47 - 3457: 20,28 - 3458: 5,-71 - 3459: -5,-71 - 3460: -5,-64 - 3461: 5,-64 - 3462: 39,-47 - - node: - color: '#FFFFFFFF' - id: WarnCorner - decals: - 18: 47,-33 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCorner - decals: - 525: -16,50 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnCorner - decals: - 20: 48,-32 - - node: - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 19: 48,-33 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 530: -18,50 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 21: 47,-32 - - node: - color: '#DE3A3A96' - id: WarnCornerGreyscaleNE - decals: - 1836: -22,-3 - - node: - color: '#DE3A3A96' - id: WarnCornerGreyscaleNW - decals: - 1844: -31,-3 - - node: - color: '#D381C996' - id: WarnCornerGreyscaleNW - decals: - 1394: -58,-1 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 830: -30,34 - 975: -12,2 - 1500: -2,31 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 955: -8,2 - 1499: 2,31 - 2291: 2,24 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 1166: -2,-78 - 1498: -2,36 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 839: -30,36 - 1165: 2,-78 - 1497: 2,36 - 2748: 40,-35 - - node: - color: '#D381C996' - id: WarnFullGreyscale - decals: - 2163: -58,0 - - node: - color: '#FFFFFFFF' - id: WarnFullGreyscale - decals: - 3286: 23,6 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 829: -30,36 - 835: -30,35 - 855: -100,20 - 856: -100,21 - 976: -12,3 - 977: -12,4 - 978: -12,5 - 1023: -54,16 - 1490: -2,32 - 1491: -2,33 - 1492: -2,34 - 1493: -2,35 - 1906: -15,-18 - 1910: -37,-18 - 1914: -37,5 - 1919: -15,6 - 1920: -15,10 - 1921: -15,22 - 1925: 17,6 - 1926: 17,10 - 1927: 41,12 - 1935: 17,22 - 1936: 17,26 - 1937: 17,-9 - 1949: -21,26 - 2014: -15,-3 - 2055: -54,6 - 2058: -52,1 - 2059: -48,1 - 2289: -2,25 - 2447: -3,26 - 2448: -3,22 - 2698: -54,17 - 3074: 45,-16 - 3306: 3,34 - 3307: 3,35 - 3308: 3,36 - 3432: 56,15 - 3433: 56,14 - 3434: 56,13 - 3435: 56,12 - 3436: 56,11 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleE - decals: - 3064: 45,-22 - - node: - color: '#D381C996' - id: WarnLineGreyscaleE - decals: - 2093: -48,-6 - 2095: -45,-1 - 2113: -42,-6 - - node: - color: '#9FED5896' - id: WarnLineGreyscaleE - decals: - 2998: 45,-33 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleE - decals: - 1835: -22,-4 - 1877: -33,-20 - 1878: -33,-17 - 2918: -8,-47 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - decals: - 1888: -23,-21 - 1889: -23,-20 - 1890: -23,-19 - 1901: -18,-21 - 1902: -18,-20 - 1903: -18,-19 - 1964: -15,28 - 1969: -25,30 - 1970: -25,31 - 2443: 6,19 - 2524: 3,-6 - - node: - color: '#B02E26FF' - id: WarnLineGreyscaleE - decals: - 2913: -4,-47 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - decals: - 1966: -22,32 - 2140: -42,-10 - 2314: -12,32 - 2444: 5,15 - 3287: 23,5 - - node: - color: '#D381C996' - id: WarnLineGreyscaleN - decals: - 1250: -54,4 - 1251: -55,4 - 1252: -51,5 - 1345: -46,14 - 1358: -56,4 - 1378: -56,-1 - 1379: -54,-1 - 1380: -53,-1 - 1381: -52,-1 - 2159: -41,12 - 2160: -42,12 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleN - decals: - 1846: -27,-3 - 1874: -26,-19 - 1875: -28,-19 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleS - decals: - 1829: -27,-6 - 2027: -26,-17 - 2028: -28,-17 - 2185: -33,4 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - decals: - 1904: -19,-22 - 1905: -20,-22 - 1963: -18,27 - 1965: -22,28 - 2019: -21,-22 - 2312: -12,27 - 2442: 5,17 - 3285: 23,7 - - node: - color: '#D381C996' - id: WarnLineGreyscaleS - decals: - 1253: -51,11 - 1254: -45,11 - 1352: -52,2 - 1353: -53,2 - 1354: -54,2 - 1357: -56,2 - 2162: -58,1 - - node: - color: '#9FED5896' - id: WarnLineGreyscaleS - decals: - 3012: 44,-35 - - node: - color: '#334E6DC8' - id: WarnLineGreyscaleS - decals: - 2516: 4,-1 - 2517: -4,-1 - 2518: 0,-1 - - node: - color: '#B02E26FF' - id: WarnLineGreyscaleW - decals: - 2912: -6,-47 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleW - decals: - 3062: 43,-24 - 3063: 43,-21 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - decals: - 1885: -23,-21 - 1886: -23,-20 - 1887: -23,-19 - 1967: -23,30 - 1968: -23,31 - 1971: -31,30 - 1972: -31,31 - 2313: -13,28 - 2523: 5,-6 - 2716: 19,18 - - node: - color: '#9FED5896' - id: WarnLineGreyscaleW - decals: - 3008: 43,-28 - 3009: 43,-32 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleW - decals: - 1845: -31,-4 - 1876: -31,-20 - 2015: -21,-21 - 2016: -21,-19 - 2919: -9,-47 - - node: - color: '#D381C996' - id: WarnLineGreyscaleW - decals: - 2094: -46,-6 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 816: -25,-1 - 817: -26,-1 - 818: -27,-1 - 819: -28,-1 - 820: -29,-1 - 838: -31,36 - 850: -117,18 - 851: -118,18 - 852: -119,18 - 853: -120,18 - 854: -121,18 - 1162: 0,-78 - 1163: 1,-78 - 1164: -1,-78 - 1494: -1,36 - 1495: 0,36 - 1496: 1,36 - 1908: -27,-25 - 1911: -40,-2 - 1915: -36,7 - 1930: 35,7 - 1931: 38,23 - 1941: 2,-25 - 1942: -2,-25 - 1943: 18,-25 - 2747: 39,-35 - 3076: 42,-18 - 3077: 36,-18 - 3247: -41,23 - 3444: 43,2 - - node: - color: '#DE3A3A96' - id: WarnLineN - decals: - 1809: -9,-19 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 831: -24,34 - 832: -24,35 - 833: -24,36 - 836: -30,34 - 837: -30,35 - 956: -8,3 - 957: -8,4 - 958: -8,5 - 1167: -20,-56 - 1168: -20,-55 - 1169: -20,-54 - 1486: 2,32 - 1487: 2,33 - 1488: 2,34 - 1489: 2,35 - 1907: -17,-18 - 1909: -39,-18 - 1913: -39,5 - 1917: -17,6 - 1918: -17,10 - 1922: -17,22 - 1923: 15,10 - 1924: 15,6 - 1928: 39,12 - 1933: 15,22 - 1934: 15,26 - 1938: 15,-9 - 1948: -23,26 - 2013: -17,-3 - 2056: -56,6 - 2057: -54,1 - 2060: -50,1 - 2290: 2,25 - 2445: -4,22 - 2446: -5,26 - 2520: 3,-8 - 2521: 3,-7 - 2522: 3,-6 - 3075: 43,-16 - - node: - color: '#DE3A3A96' - id: WarnLineS - decals: - 1817: -9,-16 - - node: - color: '#DE3A3A96' - id: WarnLineW - decals: - 1811: -7,-18 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 813: -9,2 - 814: -10,2 - 815: -11,2 - 824: -25,34 - 825: -26,34 - 826: -27,34 - 827: -28,34 - 828: -29,34 - 845: -117,15 - 846: -118,15 - 847: -119,15 - 848: -120,15 - 849: -121,15 - 857: -62,40 - 858: -63,40 - 859: -64,40 - 1483: -1,31 - 1484: 0,31 - 1485: 1,31 - 1679: -58,2 - 1680: -59,2 - 1681: -60,2 - 1912: -40,0 - 1916: -36,9 - 1929: 35,9 - 1932: 38,25 - 1939: 2,-23 - 1940: -2,-23 - 1944: 18,-23 - 2054: -42,-2 - 2239: -27,-23 - 2286: 0,24 - 2287: 1,24 - 2288: -1,24 - 2938: 4,-39 - 2945: 5,-39 - 2946: 3,-39 - 3078: 42,-17 - 3079: 36,-17 - 3248: -41,25 - 3303: 0,29 - 3304: 1,29 - 3305: -1,29 - 3445: 43,3 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 528: -18,48 - 529: -18,49 - 531: -19,51 - 533: -14,48 - 534: -14,49 - 535: -14,50 - 536: -14,51 - 669: 51,0 - 670: 51,1 - 671: 51,2 - 672: 51,3 - 673: 51,-1 - 674: 51,-2 - 796: -15,3 - - node: - color: '#FFFFFFFF' - id: WarningLine - decals: - 360: -32,11 - 361: -33,11 - 362: -34,11 - 365: -43,0 - 366: -42,0 - 508: -6,31 - 509: -7,31 - 681: 24,15 - 682: 23,15 - 683: 22,15 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 523: -16,48 - 524: -16,49 - 526: -15,51 - 537: -20,48 - 538: -20,49 - 539: -20,50 - 540: -20,51 - 733: -72,20 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 367: -43,-2 - 541: -11,36 - 542: -12,36 - 543: -13,36 - 544: -14,36 - 545: -15,36 - 546: -16,36 - 547: -17,36 - 548: -18,36 - 549: -19,36 - 550: -20,36 - 551: -21,36 - 552: -22,36 - 553: -23,36 - - node: - color: '#FFFFFFFF' - id: WarningLineCorner - decals: - 364: -35,11 - 510: -8,31 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLineCorner - decals: - 532: -19,50 - 675: 56,10 - 799: -15,2 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLineCornerFlipped - decals: - 797: -15,4 - - node: - color: '#FFFFFFFF' - id: WarningLineCornerFlipped - decals: - 363: -31,11 - 511: -5,31 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLineCornerFlipped - decals: - 527: -15,50 - 734: -72,19 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinBox - decals: - 1453: 12,-30 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 1324: -7,14 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 1314: -12,19 - 1411: 10,-27 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - decals: - 941: -23,-27 - 1319: -7,19 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 891: -29,11 - 892: -29,12 - 893: -29,13 - 894: -29,14 - 895: -29,15 - 896: -29,16 - 897: -29,17 - 898: -29,18 - 899: -29,19 - 900: -29,20 - 901: -29,21 - 905: -6,-5 - 919: 11,19 - 922: -42,8 - 933: -24,-31 - 934: -24,-30 - 935: -24,-29 - 936: -24,-28 - 1310: -12,15 - 1311: -12,16 - 1312: -12,17 - 1313: -12,18 - 1409: 10,-29 - 1410: 10,-28 - 2199: -24,-27 - 2224: -46,-16 - 2504: 24,-21 - 2505: 24,-20 - 2506: 24,-19 - 2507: 24,-18 - 2508: 24,-17 - 2509: 24,-16 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 902: -3,-9 - 921: -44,6 - 937: -24,-28 - 938: -25,-28 - 939: -26,-28 - 940: -27,-28 - 1303: -7,19 - 1304: -8,19 - 1305: -9,19 - 1306: -10,19 - 1307: -11,19 - 1308: -12,19 - 1309: -13,19 - 1325: -8,14 - 1326: -9,14 - 1327: -10,14 - 1328: -11,14 - 1412: 17,-38 - 1413: 16,-38 - 1414: 18,-38 - 1415: 19,-38 - 1416: 20,-38 - 1417: 21,-38 - 2195: -20,-1 - 2196: -21,-1 - 2197: -22,-1 - 2198: -23,-1 - 2200: -23,-28 - 2230: -41,9 - 2231: -44,9 - 2232: -43,9 - 3138: 43,12 - 3139: 44,12 - 3140: 45,12 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 907: -3,-3 - 908: -4,-3 - 909: -5,-3 - 910: -7,-3 - 911: -8,-3 - 1315: -11,19 - 1316: -10,19 - 1317: -9,19 - 1318: -8,19 - 1398: 21,-27 - 1399: 20,-27 - 1400: 19,-27 - 1401: 18,-27 - 1402: 17,-27 - 1403: 16,-27 - 1404: 14,-27 - 1405: 15,-27 - 1406: 13,-27 - 1407: 12,-27 - 1408: 11,-27 - 2191: -20,2 - 2192: -21,2 - 2193: -22,2 - 2194: -23,2 - 2222: -47,-16 - 2223: -46,-16 - 2229: -41,7 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 880: -23,11 - 881: -23,12 - 882: -23,13 - 883: -23,14 - 884: -23,15 - 885: -23,16 - 886: -23,17 - 887: -23,18 - 888: -23,19 - 889: -23,20 - 890: -23,21 - 906: -6,-5 - 923: -42,8 - 1320: -7,18 - 1321: -7,17 - 1322: -7,16 - 1323: -7,15 - - node: - cleanable: True - color: '#474F52FF' - id: amyjon - decals: - 2897: -59.733913,26.110247 - - node: - cleanable: True - color: '#FFFFFFFF' - id: b - decals: - 2965: -64,51 - - node: - cleanable: True - color: '#B02E26FF' - id: beepsky - decals: - 2692: -51.97618,-34.20235 - - node: - cleanable: True - color: '#FFFFFFFF' - id: body - decals: - 2693: -45.397133,-31.934364 - - node: - cleanable: True - color: '#1D1D21FF' - id: clawprint - decals: - 2657: 51.849873,-10.273688 - 2658: 52.068623,-9.992438 - 2659: 51.849873,-9.726813 - 2660: 52.084248,-9.383063 - 2661: 51.849873,-9.070563 - - node: - color: '#DE3A3A96' - id: clown - decals: - 1810: -9,-13 - - node: - cleanable: True - color: '#F38BAAFF' - id: clown - decals: - 2899: 29.974606,-11.088503 - - node: - cleanable: True - color: '#79150096' - id: electricdanger - decals: - 2821: -10.991777,-32.08159 - - node: - cleanable: True - color: '#B02E26FF' - id: end - decals: - 2586: 32.02958,-5.0098457 - - node: - cleanable: True - color: '#79150096' - id: end - decals: - 1828: -60,-9 - - node: - cleanable: True - color: '#A4610696' - id: engie - decals: - 1827: 32,-54 - - node: - cleanable: True - color: '#F38BAAFF' - id: evac - decals: - 2656: 36.93115,20.930944 - - node: - cleanable: True - color: '#F9801DFF' - id: food - decals: - 2580: 25.008858,-39.996895 - - node: - color: '#D4D4D428' - id: footprint - decals: - 3463: 39.8631,-46.230442 - 3464: 40.128723,-45.902317 - 3465: 39.8631,-45.636692 - 3466: 40.159973,-45.371067 - 3467: 39.909973,-44.996067 - 3468: 40.191223,-44.621067 - - node: - cleanable: True - color: '#FFFFFFFF' - id: guy - decals: - 2898: -67.988,9.536162 - 3152: 35,-29 - - node: - cleanable: True - color: '#DE3A3AFF' - id: largebrush - decals: - 2964: -64,51 - - node: - color: '#D4D4D428' - id: matt - decals: - 1818: -30,-36 - - node: - cleanable: True - color: '#FED83DFF' - id: shop - decals: - 2896: -66.02228,7.9843655 - - node: - cleanable: True - color: '#DE3A3A18' - id: splatter - decals: - 719: 19,-8 - - node: - cleanable: True - color: '#B02E26FF' - id: stickman - decals: - 2902: 9.979055,-45.00161 - type: DecalGrid - - version: 2 - data: - tiles: - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - -1,-1: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 0,-1: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 65023 - -1,2: - 0: 65535 - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 1,0: - 0: 63359 - 1,1: - 0: 65471 - 1,2: - 0: 65535 - -1,-4: - 0: 65516 - 0,-4: - 0: 65527 - 1,-4: - 0: 63280 - 2,-1: - 0: 6143 - 2,0: - 0: 65517 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 61439 - 2,-3: - 0: 63280 - 2,-2: - 0: 65535 - -3,-3: - 0: 52479 - -3,-2: - 0: 61164 - -2,0: - 0: 65533 - -2,1: - 0: 65339 - 2,-4: - 0: 7935 - 3,-4: - 0: 65535 - 3,-3: - 0: 61167 - 3,-2: - 0: 61167 - 3,-1: - 0: 61167 - -4,-4: - 0: 65535 - -4,-3: - 0: 65535 - -4,-2: - 0: 65535 - -4,-1: - 0: 65535 - -3,-1: - 0: 61167 - -2,-4: - 0: 65535 - 0,3: - 0: 65535 - 1,3: - 0: 65535 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -4,2: - 0: 65535 - -4,3: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 65535 - -2,2: - 0: 65535 - -2,3: - 0: 65535 - -1,3: - 0: 65535 - 0,-8: - 0: 65535 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65407 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - -4,-7: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 65535 - -3,-7: - 0: 65535 - -3,-6: - 0: 65535 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 61134 - -1,-8: - 0: 65535 - 0,-9: - 0: 65535 - -1,-9: - 0: 65535 - 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - -5,-7: - 0: 65535 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -3,-4: - 0: 65535 - 2,1: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - 1,-8: - 0: 65535 - 1,-5: - 0: 3311 - 2,-8: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 65535 - -4,-8: - 0: 65535 - -3,-8: - 0: 65535 - -3,-5: - 0: 65535 - -2,-8: - 0: 65535 - -2,-5: - 0: 65535 - 0,-12: - 0: 65535 - 0,-11: - 0: 65535 - 0,-10: - 0: 65535 - 1,-11: - 0: 65535 - 1,-10: - 0: 65535 - 1,-9: - 0: 65535 - 2,-11: - 0: 65535 - 2,-10: - 0: 65535 - 2,-9: - 0: 65535 - 3,-11: - 0: 65535 - 3,-10: - 0: 65535 - 3,-9: - 0: 65535 - -4,-9: - 0: 65535 - -1,-12: - 0: 65535 - -1,-11: - 0: 65535 - -1,-10: - 0: 65535 - 4,-8: - 0: 65535 - 5,-8: - 0: 32767 - 1: 32768 - 5,-7: - 0: 65399 - 1: 136 - 5,-6: - 0: 65535 - 5,-5: - 0: 65535 - 6,-8: - 0: 36863 - 1: 28672 - 6,-7: - 1: 119 - 0: 65416 - 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-8: - 0: 65535 - 7,-7: - 0: 65535 - 7,-6: - 0: 65535 - 7,-5: - 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 - 7,-4: - 0: 65535 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - -8,-7: - 0: 65535 - -8,-6: - 0: 65535 - -8,-5: - 0: 65535 - -8,-8: - 0: 65535 - -7,-8: - 0: 65535 - -7,-7: - 0: 65535 - -7,-6: - 0: 65535 - -7,-5: - 0: 65535 - -6,-8: - 0: 65535 - -6,-7: - 0: 65535 - -6,-6: - 0: 65535 - -6,-5: - 0: 65535 - -5,-8: - 0: 65535 - -8,-4: - 0: 65535 - -8,-3: - 0: 65535 - -8,-2: - 0: 65535 - -8,-1: - 0: 65535 - -7,-4: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-4: - 0: 65535 - -6,-3: - 0: 65535 - -6,-2: - 0: 65535 - -6,-1: - 0: 65535 - -8,0: - 0: 65535 - -8,1: - 0: 65535 - -8,2: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -6,2: - 0: 65535 - 4,-11: - 0: 65535 - 4,-10: - 0: 65535 - 4,-9: - 0: 65535 - 5,-11: - 0: 65535 - 5,-10: - 0: 65535 - 5,-9: - 0: 65535 - 6,-11: - 0: 65535 - 6,-10: - 0: 65535 - 6,-9: - 0: 65535 - 7,-11: - 0: 65523 - 7,-10: - 0: 65535 - 7,-9: - 0: 65535 - -11,0: - 0: 65535 - -11,1: - 0: 65535 - -11,2: - 0: 65535 - -10,0: - 0: 65535 - -10,1: - 0: 65535 - -10,2: - 0: 65535 - -9,0: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 65535 - -11,-7: - 0: 65535 - -11,-6: - 0: 65535 - -11,-5: - 0: 65535 - -10,-7: - 0: 65535 - -10,-6: - 0: 65535 - -10,-5: - 0: 65535 - -9,-7: - 0: 65520 - -9,-6: - 0: 65535 - -9,-5: - 0: 65535 - -11,-4: - 0: 65535 - -11,-3: - 0: 65535 - -11,-2: - 0: 65535 - -11,-1: - 0: 65535 - -10,-4: - 0: 65535 - -10,-3: - 0: 65535 - -10,-2: - 0: 65535 - -10,-1: - 0: 65535 - -9,-4: - 0: 65535 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - 8,-11: - 0: 65535 - 8,-10: - 0: 65535 - 8,-9: - 0: 65535 - 9,-11: - 0: 65535 - 9,-10: - 0: 65535 - 9,-9: - 0: 65535 - 10,-11: - 0: 65535 - 10,-10: - 0: 65535 - 10,-9: - 0: 65535 - 11,-11: - 0: 65535 - 11,-10: - 0: 65535 - 11,-9: - 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: 65535 - 10,-7: - 0: 65535 - 10,-6: - 0: 65535 - 10,-5: - 0: 65535 - 11,-8: - 0: 65535 - 11,-7: - 0: 65535 - 11,-6: - 0: 65535 - 11,-5: - 0: 65535 - 12,-11: - 0: 65535 - 12,-10: - 0: 65535 - 12,-9: - 0: 65535 - 12,-8: - 0: 65535 - 12,-7: - 0: 65535 - 12,-6: - 0: 65535 - 12,-5: - 0: 65535 - 8,-4: - 0: 65535 - 8,-3: - 0: 65535 - 8,-2: - 0: 65535 - 9,-4: - 0: 65535 - 9,-3: - 0: 65535 - 9,-2: - 0: 65535 - 10,-4: - 0: 65535 - 10,-3: - 0: 65535 - 10,-2: - 0: 65535 - 11,-4: - 0: 65535 - 11,-3: - 0: 65535 - 11,-2: - 0: 65535 - 12,-4: - 0: 65535 - 12,-3: - 0: 65535 - 12,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-1: - 0: 65535 - 5,-12: - 0: 65535 - 6,-12: - 0: 12561 - 7,-12: - 0: 12 - 8,-12: - 0: 17477 - 9,-12: - 0: 34952 - 3: 25668 - 10,-12: - 0: 65535 - 11,-12: - 0: 65535 - 12,-12: - 0: 65535 - 13,-11: - 0: 65535 - 13,-10: - 0: 65535 - 13,-9: - 0: 65535 - 14,-11: - 0: 65535 - 14,-10: - 0: 65535 - 14,-9: - 0: 65535 - 13,-8: - 0: 29503 - 13,-7: - 0: 65331 - 13,-6: - 0: 65535 - 13,-5: - 0: 65535 - 14,-8: - 0: 65535 - 14,-7: - 0: 65535 - 14,-6: - 0: 65535 - 8,-1: - 0: 65535 - 9,-1: - 0: 65535 - 10,-1: - 0: 65535 - 11,-1: - 0: 65535 - 12,-1: - 0: 65535 - 13,-4: - 0: 65535 - 13,-3: - 0: 65535 - 13,-2: - 0: 65535 - 13,-1: - 0: 65535 - 5,-13: - 0: 65535 - 5,-16: - 0: 60623 - 5,-14: - 0: 65367 - 6,-16: - 0: 65535 - 6,-15: - 0: 15 - 6,-14: - 0: 65481 - 6,-13: - 0: 65535 - 7,-16: - 0: 64511 - 7,-15: - 0: 65231 - 7,-14: - 0: 65535 - 7,-13: - 0: 65535 - 8,-16: - 0: 65279 - 8,-15: - 0: 29471 - 8,-14: - 0: 65407 - 8,-13: - 0: 65535 - 9,-16: - 0: 65535 - 9,-15: - 0: 15 - 9,-14: - 0: 65295 - 9,-13: - 0: 65535 - 10,-16: - 0: 65303 - 10,-14: - 0: 65311 - 10,-13: - 0: 65535 - 11,-14: - 0: 9199 - 11,-13: - 0: 65312 - 5,-17: - 0: 65484 - 6,-18: - 0: 65535 - 6,-17: - 0: 65535 - 7,-18: - 0: 65535 - 7,-17: - 0: 65535 - 7,-19: - 0: 65279 - 7,-20: - 0: 63738 - 8,-20: - 0: 63730 - 8,-19: - 0: 62463 - 8,-18: - 0: 65535 - 8,-17: - 0: 65535 - 9,-18: - 0: 65527 - 9,-17: - 0: 65535 - 10,-17: - 0: 30481 - 12,-14: - 0: 4607 - 12,-13: - 0: 65297 - -4,-12: - 0: 65535 - -4,-11: - 0: 65535 - -4,-10: - 0: 30719 - -3,-12: - 0: 65535 - -3,-11: - 0: 65535 - -3,-10: - 0: 52479 - -3,-9: - 0: 63359 - -2,-11: - 0: 65535 - -2,-10: - 0: 30591 - -2,-9: - 0: 61455 - -12,0: - 0: 65535 - -12,-7: - 0: 65535 - -12,-6: - 0: 65535 - -12,-5: - 0: 65535 - -11,-8: - 0: 65535 - -10,-8: - 0: 65535 - -9,-8: - 0: 4095 - -12,-4: - 0: 65535 - -12,-3: - 0: 65535 - -12,-2: - 0: 65535 - -12,-1: - 0: 65535 - 13,-12: - 0: 65535 - 14,-12: - 0: 65535 - 15,-12: - 0: 56829 - 15,-10: - 0: 65535 - 15,-9: - 0: 56797 - 15,-11: - 0: 64989 - 15,-8: - 0: 65535 - 15,-7: - 0: 65535 - 15,-6: - 0: 48059 - 15,-5: - 0: 35227 - 11,-15: - 0: 26214 - -6,-9: - 0: 65535 - -5,-9: - 0: 65535 - -5,-12: - 0: 65416 - -5,-11: - 0: 61439 - -5,-10: - 0: 65534 - -16,-4: - 0: 65535 - -14,-4: - 0: 65535 - -14,-3: - 0: 65535 - -14,-2: - 0: 65535 - -14,-1: - 0: 65535 - -13,-4: - 0: 65535 - -13,-3: - 0: 65535 - -13,-2: - 0: 65535 - -16,-7: - 0: 65535 - -16,-6: - 0: 65535 - -16,-5: - 0: 65535 - -15,-7: - 0: 65532 - -15,-5: - 0: 65535 - -15,-6: - 0: 65535 - -14,-7: - 0: 65534 - -14,-6: - 0: 65535 - -14,-5: - 0: 65535 - -14,-8: - 0: 64767 - -13,-7: - 0: 65535 - -13,-6: - 0: 65535 - -13,-5: - 0: 65535 - -20,-5: - 0: 65535 - -20,-6: - 0: 65535 - -19,-5: - 0: 65535 - -19,-6: - 0: 65535 - -18,-6: - 0: 65535 - -18,-5: - 0: 65535 - -18,-7: - 0: 65528 - -17,-7: - 0: 65535 - -17,-6: - 0: 64443 - -17,-5: - 0: 65535 - -19,-4: - 0: 65535 - -18,-4: - 0: 65535 - -17,-4: - 0: 48123 - -14,0: - 0: 65535 - -14,1: - 0: 65535 - -13,0: - 0: 65535 - -14,-9: - 0: 64750 - 2,-12: - 0: 65535 - 3,-12: - 0: 65535 - -2,-12: - 0: 65535 - 5,2: - 0: 65535 - -8,3: - 0: 65535 - -7,3: - 0: 65535 - -6,3: - 0: 65535 - 4,-12: - 0: 65535 - -12,1: - 0: 65535 - -12,2: - 0: 65535 - -10,3: - 0: 65535 - -9,3: - 0: 65535 - 14,-5: - 0: 65535 - 4,-13: - 0: 65535 - -8,-10: - 0: 65395 - -8,-9: - 0: 65535 - -7,-10: - 0: 62256 - -7,-9: - 0: 65535 - -6,-12: - 0: 61320 - -14,2: - 0: 65535 - -14,3: - 0: 65535 - -13,2: - 0: 65535 - -13,1: - 0: 65535 - -13,-9: - 0: 65535 - 0,-16: - 0: 65535 - 0,-15: - 0: 65535 - 0,-14: - 0: 65535 - 0,-13: - 0: 65535 - 1,-13: - 0: 65535 - 2,-13: - 0: 65535 - 3,-13: - 0: 65535 - -4,-16: - 0: 65535 - -4,-15: - 0: 65295 - -4,-14: - 0: 65535 - -3,-16: - 0: 65535 - -3,-15: - 0: 65487 - -3,-14: - 0: 65535 - -2,-16: - 0: 32767 - -2,-15: - 0: 65303 - -2,-14: - 0: 65535 - -1,-15: - 0: 65535 - -1,-14: - 0: 65535 - -1,-13: - 0: 65535 - -1,-16: - 0: 65535 - -7,-16: - 0: 52974 - -6,-16: - 0: 65535 - -6,-15: - 0: 52239 - -6,-14: - 0: 36863 - -5,-16: - 0: 65535 - -5,-15: - 0: 65519 - -5,-14: - 0: 65535 - -4,-19: - 0: 64655 - -4,-18: - 0: 65535 - -4,-17: - 0: 65519 - -3,-19: - 0: 65535 - -3,-18: - 0: 65535 - -3,-17: - 0: 65535 - -2,-19: - 0: 63751 - -2,-18: - 0: 65535 - -2,-17: - 0: 65535 - -1,-19: - 0: 65534 - -1,-18: - 0: 65535 - -1,-17: - 0: 65535 - -1,-20: - 0: 65260 - 0,-20: - 0: 65527 - 0,-19: - 0: 65535 - 0,-18: - 0: 65535 - 0,-17: - 0: 65535 - -7,-17: - 0: 49152 - -6,-17: - 0: 65292 - -6,-18: - 0: 52431 - -6,-19: - 0: 34958 - -5,-19: - 0: 63629 - -5,-18: - 0: 65535 - -5,-17: - 0: 65519 - -12,-9: - 0: 65535 - -11,-10: - 0: 65504 - -11,-9: - 0: 65535 - -10,-10: - 0: 65520 - -10,-9: - 0: 65535 - -9,-10: - 0: 65528 - -9,-9: - 0: 65535 - -6,4: - 0: 65535 - -6,5: - 0: 65535 - -6,6: - 0: 65535 - -5,4: - 0: 65535 - -5,5: - 0: 65535 - -5,6: - 0: 65535 - -4,4: - 0: 65535 - -4,5: - 0: 65535 - -4,6: - 0: 65535 - -3,4: - 0: 65535 - -3,5: - 0: 65535 - -3,6: - 0: 65535 - -2,4: - 0: 65535 - -2,5: - 0: 65535 - -2,6: - 0: 65535 - -14,4: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 14,-4: - 0: 63359 - 14,-3: - 0: 30583 - -6,7: - 0: 65535 - -5,7: - 0: 65535 - -4,7: - 0: 65535 - -3,7: - 0: 65535 - -2,7: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 65535 - -1,6: - 0: 65535 - -1,7: - 0: 65535 - 8,0: - 0: 65535 - 8,1: - 0: 65535 - 9,0: - 0: 65535 - 9,1: - 0: 65535 - 10,0: - 0: 65535 - 10,1: - 0: 65535 - 11,0: - 0: 65535 - 11,1: - 0: 65535 - -4,8: - 0: 65535 - -4,9: - 0: 65535 - -4,10: - 0: 65535 - -3,8: - 0: 65535 - -3,9: - 0: 65535 - -3,10: - 0: 65535 - -6,8: - 0: 65535 - -6,9: - 0: 65535 - -5,8: - 0: 65535 - -5,9: - 0: 65535 - -5,10: - 0: 65535 - 12,0: - 0: 65535 - 12,1: - 0: 65535 - 13,0: - 0: 65535 - 13,1: - 0: 65535 - 0,4: - 0: 65535 - 0,5: - 0: 65535 - 0,6: - 0: 65535 - 0,7: - 0: 65535 - 1,-16: - 0: 65535 - 1,-15: - 0: 65535 - 1,-14: - 0: 65535 - -4,-13: - 0: 65535 - -3,-13: - 0: 65534 - 2: 1 - -2,-13: - 0: 65535 - -7,-14: - 0: 34944 - -7,-13: - 0: 2184 - -6,-13: - 0: 36232 - -5,-13: - 0: 36744 - -2,-20: - 0: 50176 - 1,-20: - 0: 64748 - 1,-19: - 0: 62804 - 1,-17: - 0: 65535 - 1,-18: - 0: 65535 - -7,-19: - 0: 34816 - -7,-18: - 0: 136 - 8,2: - 0: 65535 - 9,2: - 0: 65535 - 10,2: - 0: 65535 - 11,2: - 0: 65535 - -4,11: - 0: 65535 - -3,11: - 0: 65535 - -8,8: - 0: 65535 - -8,9: - 0: 65535 - -8,10: - 0: 65535 - -8,11: - 0: 64719 - 3: 816 - -7,8: - 0: 65535 - -7,9: - 0: 65535 - -7,10: - 0: 65535 - -7,11: - 0: 65535 - -6,10: - 0: 65535 - -6,11: - 0: 65535 - -5,11: - 0: 65535 - 12,2: - 0: 65535 - 2,4: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 61439 - 0,-21: - 0: 13056 - -1,-21: - 0: 34816 - 4,4: - 0: 65535 - 4,5: - 0: 65535 - -12,10: - 0: 62451 - 3: 3072 - 4: 12 - -11,10: - 3: 256 - 0: 65278 - 4: 1 - -11,11: - 0: 52478 - 3: 1 - -10,10: - 0: 65535 - -10,8: - 0: 65535 - -10,9: - 0: 65535 - -10,11: - 0: 65535 - -9,8: - 0: 65535 - -9,9: - 0: 65535 - -9,10: - 0: 65535 - -9,11: - 0: 63359 - 3: 2176 - -8,12: - 0: 48063 - -7,12: - 0: 61183 - -10,12: - 0: 143 - -9,12: - 0: 35007 - 4,-14: - 0: 61759 - -2,8: - 0: 65535 - -2,9: - 0: 65535 - -2,10: - 0: 65535 - -1,8: - 0: 65535 - -1,9: - 0: 65535 - -1,10: - 0: 65535 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - 2,5: - 0: 32767 - 3,6: - 0: 61166 - 4,6: - 0: 65535 - 4,7: - 0: 32767 - 0,8: - 0: 65535 - 0,9: - 0: 65535 - 0,10: - 0: 65535 - 1,8: - 0: 65535 - 1,9: - 0: 65535 - 1,10: - 0: 65535 - 3,9: - 0: 65263 - 3,8: - 0: 29486 - 3,10: - 0: 28415 - 3,11: - 0: 45806 - 4,8: - 0: 4375 - 4,9: - 0: 4599 - 4,10: - 0: 5919 - 4,11: - 0: 12567 - 4,12: - 0: 65535 - 4,13: - 0: 65535 - 4,14: - 0: 65535 - 4,15: - 0: 65535 - 5,12: - 0: 18275 - 5,13: - 0: 40860 - 5,14: - 0: 39321 - 5,15: - 0: 40857 - 2,13: - 0: 65535 - 2,14: - 0: 65279 - 2,15: - 0: 11811 - 2,12: - 0: 65535 - 3,12: - 0: 61439 - 3,13: - 0: 65534 - 3,14: - 0: 65535 - 3,15: - 0: 65535 - 2,18: - 0: 61919 - 2,19: - 0: 53759 - 2,16: - 0: 19554 - 2,17: - 0: 57956 - 3,16: - 0: 61423 - 3,17: - 0: 61580 - 3,18: - 0: 61695 - 3,19: - 0: 61695 - 4,16: - 0: 65535 - 4,17: - 0: 61751 - 4,18: - 0: 61951 - 4,19: - 0: 61951 - 5,16: - 0: 18377 - 5,17: - 0: 63684 - 5,18: - 0: 61567 - 5,19: - 0: 28927 - 6,18: - 0: 4369 - 6,19: - 0: 4369 - 4,20: - 0: 12799 - 4,21: - 0: 4465 - 4,22: - 0: 2011 - 5,20: - 0: 51455 - 5,21: - 0: 12900 - 5,22: - 0: 1 - 6,20: - 0: 1 - 2,20: - 0: 25327 - 2,21: - 0: 2244 - 3,20: - 0: 33023 - 3,21: - 0: 4544 - 3,22: - 0: 3179 - 5,3: - 0: 65535 - 6,3: - 0: 65535 - 7,3: - 0: 65535 - 8,3: - 0: 65535 - 9,3: - 0: 65535 - 10,3: - 0: 65535 - 11,3: - 0: 65535 - 13,2: - 0: 65535 - 13,3: - 0: 65535 - 2,6: - 0: 30583 - 5,4: - 0: 65535 - 6,4: - 0: 65535 - 7,4: - 0: 65535 - 8,4: - 0: 65535 - 9,4: - 0: 65535 - 10,4: - 0: 65535 - 11,4: - 0: 65535 - 12,4: - 0: 65535 - 13,4: - 0: 65535 - -2,11: - 0: 65535 - -1,11: - 0: 65535 - -5,12: - 0: 65535 - -5,13: - 0: 65535 - -5,14: - 0: 65535 - -5,15: - 0: 65535 - 0,11: - 0: 63487 - 0,12: - 0: 63351 - 0,13: - 0: 65399 - 0,14: - 0: 65535 - -4,12: - 0: 65535 - -4,13: - 0: 65535 - -4,14: - 0: 65535 - -4,15: - 0: 61951 - -3,12: - 0: 65535 - -3,13: - 0: 65535 - -3,14: - 0: 65535 - -3,15: - 0: 65279 - -2,12: - 0: 65535 - -2,13: - 0: 65535 - -2,14: - 0: 65535 - -2,15: - 0: 65535 - -1,12: - 0: 65535 - -1,13: - 0: 65535 - -1,14: - 0: 65535 - -1,15: - 0: 23 - -3,16: - 0: 12 - -2,16: - 0: 7 - -7,13: - 0: 65535 - -7,14: - 0: 8191 - 3: 57344 - -7,15: - 3: 238 - 0: 65297 - -6,12: - 0: 65535 - -6,13: - 0: 65535 - -6,14: - 0: 65535 - -6,15: - 0: 65023 - -4,16: - 0: 17 - -4,19: - 0: 4080 - -3,19: - 0: 28660 - -3,18: - 0: 20224 - -2,19: - 0: 26416 - -8,19: - 0: 65520 - -7,18: - 0: 65524 - -7,19: - 0: 65525 - -6,19: - 0: 65528 - -6,16: - 0: 65532 - -6,17: - 0: 65520 - -6,18: - 0: 65528 - -5,16: - 0: 32767 - -5,17: - 0: 32631 - -5,18: - 0: 65535 - -5,19: - 0: 32767 - -8,20: - 0: 16375 - -8,21: - 0: 13107 - -8,22: - 0: 16179 - -8,23: - 0: 13107 - -7,20: - 0: 32759 - -7,21: - 0: 48063 - -7,22: - 0: 49083 - -7,23: - 0: 48059 - -6,20: - 0: 8180 - -6,21: - 0: 11791 - -6,22: - 0: 12066 - -5,20: - 0: 12278 - -5,21: - 0: 12079 - -5,22: - 0: 12066 - -5,23: - 0: 12066 - -4,20: - 0: 4080 - -4,21: - 0: 43919 - -4,22: - 0: 44970 - -4,23: - 0: 35754 - -3,20: - 0: 28662 - -3,22: - 0: 28518 - -3,21: - 0: 26214 - -3,23: - 0: 26214 - -2,20: - 0: 26614 - -2,22: - 0: 28518 - -2,21: - 0: 26214 - -2,23: - 0: 26214 - -1,20: - 0: 562 - -1,22: - 0: 12066 - -4,24: - 0: 65295 - -4,25: - 0: 65280 - -3,24: - 0: 65382 - -3,25: - 0: 65382 - -3,26: - 0: 3908 - -2,24: - 0: 63334 - -2,25: - 0: 14182 - -1,24: - 0: 29218 - -8,24: - 0: 65331 - -8,25: - 0: 61235 - -7,24: - 0: 65339 - -7,25: - 0: 65331 - -7,26: - 0: 7953 - -7,27: - 0: 1 - -6,24: - 0: 65295 - -6,25: - 0: 65280 - -5,24: - 0: 65327 - -5,25: - 0: 65314 - -5,26: - 0: 12066 - -5,27: - 0: 8738 - -10,22: - 0: 3072 - -9,20: - 0: 8950 - -9,22: - 0: 12064 - -9,24: - 0: 61984 - -5,28: - 0: 2 - -6,23: - 0: 3618 - -15,0: - 0: 65535 - -15,1: - 0: 65535 - -12,3: - 0: 65535 - -11,3: - 0: 65535 - -16,-1: - 0: 65535 - -15,-1: - 0: 65535 - -16,0: - 0: 65535 - -16,1: - 0: 65535 - -16,2: - 0: 65535 - -16,3: - 0: 65535 - -15,2: - 0: 65535 - -15,3: - 0: 65535 - -13,3: - 0: 65535 - -17,0: - 0: 65535 - -17,1: - 0: 65535 - -18,1: - 0: 65527 - 1,-12: - 0: 65535 - -12,-8: - 0: 65535 - -13,-1: - 0: 65535 - -15,-8: - 0: 52428 - -13,-8: - 0: 65535 - -16,-12: - 0: 65058 - -16,-11: - 0: 65535 - -16,-10: - 0: 8750 - -16,-9: - 0: 2 - -15,-12: - 0: 63232 - -15,-11: - 0: 65535 - -15,-10: - 0: 7 - -15,-9: - 0: 52360 - -14,-12: - 0: 61440 - -14,-11: - 0: 65535 - -14,-10: - 0: 36608 - -13,-12: - 0: 61440 - -13,-11: - 0: 65535 - -13,-10: - 0: 64392 - 3,-14: - 0: 65471 - -12,-12: - 0: 61440 - -12,-11: - 0: 65535 - -12,-10: - 0: 64307 - -11,-12: - 0: 28672 - -11,-11: - 0: 32767 - -10,-11: - 0: 61439 - -10,-12: - 0: 57344 - -9,-12: - 0: 12288 - -9,-11: - 0: 14199 - -4,18: - 0: 3072 - -2,18: - 0: 3840 - -1,18: - 0: 8960 - -1,19: - 0: 8736 - -8,18: - 0: 65520 - -1,21: - 0: 8736 - -1,23: - 0: 8738 - -4,26: - 0: 3840 - -2,26: - 0: 3840 - -1,26: - 0: 802 - -1,25: - 0: 546 - -8,26: - 0: 3840 - -6,26: - 0: 3584 - -9,21: - 0: 8738 - -9,23: - 0: 8738 - -9,25: - 0: 546 - -9,26: - 0: 3618 - -16,-13: - 0: 8704 - -18,-11: - 0: 2048 - -17,-11: - 0: 53231 - -9,18: - 0: 52932 - -9,19: - 0: 59110 - 5,5: - 0: 65535 - -7,-12: - 0: 44544 - -6,-10: - 0: 39144 - 13,-14: - 0: 8959 - 13,-13: - 0: 65314 - 14,-14: - 0: 247 - 14,-13: - 0: 65280 - 15,-14: - 0: 52479 - 15,-13: - 0: 53196 - 15,-15: - 0: 34944 - 16,-7: - 0: 6623 - 16,-6: - 0: 4593 - 16,-8: - 0: 55569 - 17,-8: - 0: 29457 - 17,-7: - 4: 1 - 0: 4990 - 17,-6: - 0: 4593 - 18,-7: - 0: 33315 - 18,-8: - 0: 8738 - 16,-9: - 0: 61688 - 17,-9: - 0: 28945 - 18,-9: - 0: 12424 - 16,-14: - 0: 1 - 2,-16: - 0: 65535 - 3,-16: - 0: 65535 - 2,-20: - 0: 65535 - 2,-19: - 0: 65518 - 2,-18: - 0: 65535 - 2,-17: - 0: 65535 - 3,-20: - 0: 65535 - 3,-18: - 0: 65535 - 3,-19: - 0: 63351 - 3,-17: - 0: 65535 - 2,-15: - 0: 65535 - 2,-14: - 0: 65535 - 3,-15: - 0: 62727 - -8,13: - 0: 64175 - -8,14: - 0: 32755 - -8,15: - 0: 58982 - 1,11: - 0: 63999 - -8,4: - 0: 65535 - -8,5: - 0: 65535 - -8,6: - 0: 65535 - -8,7: - 0: 65535 - -7,4: - 0: 65535 - -7,5: - 0: 65535 - -7,6: - 0: 65535 - -7,7: - 0: 65535 - -12,4: - 0: 65535 - -12,5: - 0: 65535 - -12,6: - 0: 65535 - -12,7: - 0: 61999 - -11,5: - 0: 65535 - -11,4: - 0: 65535 - -11,6: - 0: 65535 - -11,7: - 0: 64719 - -10,4: - 0: 65535 - -10,5: - 0: 65535 - -10,6: - 0: 65535 - -10,7: - 0: 65535 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -9,6: - 0: 65535 - -9,7: - 0: 65535 - 2,7: - 0: 32631 - 2,8: - 0: 57207 - 2,9: - 0: 65535 - 2,10: - 0: 65535 - 2,11: - 0: 65535 - 5,-15: - 0: 17791 - 10,-15: - 0: 4369 - 5,-18: - 0: 52428 - 10,-18: - 0: 4369 - -16,-3: - 0: 65535 - -19,-7: - 0: 64240 - -19,-3: - 0: 4602 - -18,-3: - 0: 32511 - -17,-3: - 0: 35771 - -12,8: - 0: 62451 - 5: 12 - 6: 3072 - -12,9: - 0: 62451 - 3: 3084 - -12,11: - 0: 8947 - 3: 12 - -12,12: - 0: 8751 - -12,13: - 0: 61999 - -12,15: - 0: 49152 - -11,13: - 0: 62543 - -10,13: - 0: 61455 - -9,13: - 0: 61455 - -12,16: - 0: 207 - -11,16: - 0: 19 - -13,16: - 0: 128 - -20,1: - 0: 62192 - -19,1: - 0: 64507 - -19,0: - 0: 49049 - -19,2: - 0: 36751 - -18,0: - 0: 30515 - -18,2: - 0: 65535 - 12,3: - 0: 65535 - 3,7: - 0: 61422 - 5,6: - 0: 65535 - 6,5: - 0: 65535 - 6,6: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 65535 - 8,5: - 0: 65535 - 8,6: - 0: 65535 - 9,5: - 0: 65535 - 9,6: - 0: 65535 - 10,5: - 0: 65535 - 10,6: - 0: 65535 - 11,5: - 0: 65535 - 11,6: - 0: 65535 - 12,5: - 0: 65535 - 12,6: - 0: 65535 - 13,5: - 0: 65535 - 13,6: - 0: 65535 - 5,7: - 0: 3967 - 6,7: - 0: 36687 - 7,7: - 0: 65535 - 6,10: - 0: 14 - 6,8: - 0: 49152 - 6,11: - 0: 8 - 7,8: - 0: 65535 - 7,9: - 0: 65535 - 7,10: - 0: 65535 - 7,11: - 0: 4095 - 8,7: - 0: 16255 - 10,7: - 0: 53247 - 11,7: - 0: 65535 - 12,7: - 0: 65535 - 13,7: - 0: 65535 - 8,8: - 0: 14199 - 8,9: - 0: 13107 - 8,10: - 0: 30579 - 8,11: - 0: 819 - 10,8: - 0: 36044 - 10,10: - 0: 52424 - 10,9: - 0: 34952 - 10,11: - 0: 2184 - 11,8: - 0: 65535 - 11,9: - 0: 65535 - 11,10: - 0: 65535 - 11,11: - 0: 4095 - 12,8: - 0: 61713 - 12,9: - 0: 4369 - 12,10: - 0: 4375 - 12,11: - 0: 275 - -16,-2: - 0: 65535 - -15,-2: - 0: 65535 - -15,-4: - 0: 65535 - -15,-3: - 0: 65535 - 14,-2: - 0: 30711 - 9,7: - 0: 4095 - -20,-7: - 0: 64240 - -20,-4: - 0: 65535 - -21,-5: - 0: 61182 - -21,-7: - 0: 60144 - -21,-6: - 0: 61166 - -21,-4: - 0: 61166 - -15,4: - 0: 65535 - -15,5: - 0: 65535 - -14,5: - 0: 65535 - -13,4: - 0: 65535 - -13,5: - 0: 36863 - 15,-4: - 0: 63631 - 15,-2: - 0: 35064 - 15,-3: - 0: 34952 - -17,-2: - 0: 50191 - -17,-1: - 0: 65524 - -16,5: - 0: 65535 - -16,6: - 0: 57343 - -16,4: - 0: 61439 - -16,7: - 0: 2303 - -15,6: - 0: 65535 - -15,7: - 0: 32767 - -14,6: - 0: 65535 - -13,6: - 0: 65416 - -13,7: - 0: 39327 - -11,8: - 5: 1 - 0: 65278 - 6: 256 - -11,9: - 3: 257 - 0: 65278 - 1,12: - 0: 63897 - 1,13: - 0: 65433 - 1,14: - 0: 61695 - -11,12: - 0: 17487 - -15,8: - 0: 65407 - -13,8: - 0: 39417 - -13,9: - 0: 39305 - -13,10: - 0: 63897 - -13,11: - 0: 65497 - -13,12: - 0: 53199 - 6: 48 - 5: 12288 - -13,13: - 0: 61727 - -18,4: - 0: 32767 - -18,5: - 0: 63103 - -18,6: - 0: 65126 - -18,7: - 0: 1791 - -17,4: - 0: 12287 - -17,5: - 0: 65263 - -17,6: - 0: 4078 - -18,3: - 0: 32767 - -17,3: - 0: 61439 - -17,2: - 0: 65535 - 14,-1: - 0: 4369 - 4,-15: - 0: 64640 - 11,-16: - 0: 30464 - -20,-3: - 0: 250 - -18,-2: - 0: 30591 - -18,-1: - 0: 13302 - -6,-11: - 0: 34956 - -23,-4: - 0: 34952 - -23,-3: - 0: 136 - -22,-4: - 0: 61182 - -22,-3: - 0: 250 - -21,-3: - 0: 250 - -23,-6: - 0: 63624 - -23,-5: - 0: 62965 - -23,-7: - 0: 34944 - -22,-7: - 0: 60144 - -22,-6: - 0: 61182 - -22,-5: - 0: 61182 - 14,0: - 0: 4369 - 14,1: - 0: 13169 - 14,2: - 0: 65459 - 14,3: - 0: 65535 - 2,-21: - 0: 57344 - 3,-21: - 0: 61440 - 16,-5: - 0: 4369 - 14,4: - 0: 62463 - 14,5: - 0: 64443 - 14,6: - 0: 64443 - -19,4: - 0: 65535 - -19,3: - 0: 65423 - 9,-20: - 0: 61680 - 9,-19: - 0: 61687 - 10,-20: - 0: 4368 - 10,-19: - 0: 4369 - 4,-20: - 0: 32767 - 5,-20: - 0: 50687 - 5,-19: - 0: 50380 - 6,-20: - 0: 63728 - 6,-19: - 0: 61695 - 4,-21: - 0: 61440 - 5,-21: - 0: 4096 - 7,-21: - 0: 57344 - 8,-21: - 0: 12288 - 16,-4: - 0: 1 - 14,7: - 0: 6282 - 17,-5: - 0: 61713 - 18,-5: - 0: 61576 - 18,-6: - 0: 32904 - 19,-7: - 0: 63740 - 19,-6: - 0: 63743 - 19,-5: - 0: 63743 - 19,-8: - 0: 32776 - 16,-11: - 0: 39152 - 16,-10: - 0: 40959 - 17,-11: - 0: 4096 - 17,-10: - 0: 4593 - 18,-10: - 0: 33008 - 18,-12: - 0: 34944 - 18,-11: - 0: 34944 - 19,-12: - 0: 65520 - 19,-11: - 0: 65528 - 19,-10: - 0: 63736 - 19,-9: - 0: 35071 - 0,15: - 0: 204 - 1,15: - 0: 255 - -12,14: - 0: 128 - -11,14: - 0: 3320 - -10,14: - 0: 61439 - -9,14: - 0: 65535 - -9,15: - 0: 17476 - 17,-4: - 0: 273 - 18,-4: - 0: 34944 - 19,-4: - 0: 65528 - 20,-12: - 0: 65520 - 20,-11: - 0: 65520 - 20,-10: - 0: 61488 - 20,-9: - 0: 4351 - 21,-12: - 0: 18244 - 21,-11: - 0: 18244 - 21,-9: - 0: 1095 - 21,-10: - 0: 17412 - 20,-4: - 0: 65520 - 21,-4: - 0: 18244 - 21,-3: - 0: 4 - 20,-7: - 0: 61440 - 20,-6: - 0: 61695 - 20,-5: - 0: 255 - 21,-6: - 0: 17479 - 21,-5: - 0: 17479 - 21,-7: - 0: 16384 - -8,16: - 0: 65520 - -8,17: - 0: 65520 - -7,16: - 0: 65524 - -7,17: - 0: 65524 - -9,16: - 0: 50372 - -9,17: - 0: 50372 - -20,4: - 0: 2300 - -20,6: - 0: 61688 - -20,5: - 0: 34959 - -19,5: - 0: 61951 - -19,6: - 0: 61552 - -20,3: - 0: 20303 - -21,4: - 0: 17652 - -14,7: - 0: 255 - -17,7: - 0: 255 - -19,-2: - 0: 4381 - -19,-1: - 0: 4593 - -20,7: - 0: 249 - -19,7: - 0: 248 - -20,2: - 0: 36744 - -24,4: - 0: 65535 - -24,5: - 0: 1011 - -24,6: - 0: 61680 - -24,7: - 0: 249 - -23,4: - 0: 61951 - -23,5: - 0: 4593 - -23,6: - 0: 61937 - -23,7: - 0: 241 - -22,4: - 0: 13043 - -22,5: - 0: 8766 - -22,6: - 0: 62194 - -22,7: - 0: 249 - -21,5: - 0: 17487 - -21,6: - 0: 62708 - -21,7: - 0: 244 - -28,4: - 0: 65535 - -28,5: - 0: 65535 - -28,6: - 0: 65535 - -28,7: - 0: 65535 - -27,4: - 0: 65535 - -27,5: - 0: 65535 - -27,6: - 0: 65535 - -27,7: - 0: 32767 - -26,4: - 0: 65535 - -26,5: - 0: 65535 - -26,6: - 0: 30711 - -26,7: - 0: 32631 - -25,4: - 0: 65535 - -25,5: - 0: 65535 - -25,6: - 0: 61937 - -25,7: - 0: 4593 - -24,1: - 0: 62704 - -24,2: - 0: 3840 - -24,3: - 0: 61455 - -23,1: - 0: 61936 - -23,2: - 0: 7953 - -23,3: - 0: 4383 - -22,1: - 0: 62960 - -22,2: - 0: 12032 - -22,3: - 0: 11823 - -21,1: - 0: 62704 - -21,2: - 0: 20292 - -21,3: - 0: 20303 - -28,0: - 0: 65525 - -28,1: - 0: 64511 - -28,2: - 0: 65535 - -28,3: - 0: 65535 - -27,0: - 0: 64226 - -27,1: - 0: 52479 - -27,2: - 0: 56799 - -27,3: - 0: 65503 - -26,0: - 0: 21616 - -26,1: - 0: 21975 - -26,2: - 0: 62935 - -26,3: - 0: 65535 - -25,1: - 0: 43760 - -25,2: - 0: 47610 - -25,3: - 0: 64447 - -32,2: - 0: 44544 - -32,3: - 0: 60138 - -31,2: - 0: 63308 - -31,3: - 0: 65535 - -31,0: - 0: 17600 - -31,1: - 0: 19532 - -30,0: - 0: 64248 - -30,1: - 0: 30719 - -30,2: - 0: 30591 - -30,3: - 0: 65407 - -29,0: - 0: 65252 - -29,1: - 0: 60159 - -29,2: - 0: 65535 - -29,3: - 0: 65535 - -32,4: - 0: 60138 - -32,5: - 0: 43754 - -32,6: - 0: 14 - -31,4: - 0: 65535 - -31,5: - 0: 65535 - -31,6: - 0: 56829 - -31,7: - 0: 56829 - -30,4: - 0: 65535 - -30,5: - 0: 65535 - -30,6: - 0: 65535 - -30,7: - 0: 57343 - -29,4: - 0: 65535 - -29,5: - 0: 65535 - -29,6: - 0: 65535 - -29,7: - 0: 65535 - -31,8: - 0: 65021 - -31,9: - 0: 3997 - -30,8: - 0: 65407 - -30,9: - 0: 36751 - -30,10: - 0: 8 - -29,8: - 0: 65503 - -29,9: - 0: 20463 - -29,10: - 0: 15 - -28,8: - 0: 65407 - -28,9: - 0: 24575 - -28,10: - 0: 15 - -27,8: - 0: 65503 - -27,9: - 0: 12079 - -27,10: - 0: 3 - -26,8: - 0: 63359 - -26,9: - 0: 3879 - -25,8: - 0: 4369 - -25,9: - 0: 273 - -28,-1: - 0: 61440 - -27,-1: - 0: 12288 - -30,-1: - 0: 32768 - -29,-1: - 0: 61440 - -16,9: - 0: 63624 - -16,10: - 0: 65535 - -16,11: - 0: 65535 - -16,8: - 0: 34828 - -15,9: - 0: 65535 - -15,10: - 0: 65535 - -15,11: - 0: 65535 - -14,8: - 0: 1 - -14,9: - 0: 61440 - -14,10: - 0: 61747 - -14,11: - 0: 64305 - -16,12: - 0: 65535 - -16,13: - 0: 255 - -15,12: - 0: 65535 - -15,13: - 0: 255 - -14,12: - 0: 32639 - 6: 128 - 5: 32768 - -14,13: - 0: 31 - -17,12: - 0: 52428 - -17,13: - 0: 204 - -17,10: - 0: 52360 - -17,11: - 0: 52428 - -17,9: - 0: 32768 - -3,-20: - 0: 28672 - 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: - - 21.596506 - - 81.243996 - - 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 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 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 - chunkSize: 4 - type: GridAtmosphere - - type: OccluderTree - - type: Shuttle - - nextUpdate: 8187.135845 - type: GridPathfinding - - type: RadiationGridResistance - - type: GasTileOverlay -- uid: 61 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 62 - type: WallReinforced - components: - - pos: 46.5,19.5 - parent: 60 - type: Transform -- uid: 63 - type: FirelockEdge - components: - - pos: -18.5,-21.5 - parent: 60 - type: Transform -- uid: 64 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-5.5 - parent: 60 - type: Transform -- uid: 65 - type: SolarPanel - components: - - pos: 37.5,-64.5 - parent: 60 - type: Transform -- uid: 66 - type: FoodTomato - components: - - pos: 21.644495,-18.456367 - parent: 60 - type: Transform -- uid: 67 - type: Grille - components: - - pos: -21.5,-16.5 - parent: 60 - type: Transform -- uid: 68 - type: GasPipeBend - components: - - pos: 44.5,-8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 69 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-18.5 - parent: 60 - type: Transform -- uid: 70 - type: CableApcExtension - components: - - pos: 1.5,-77.5 - parent: 60 - type: Transform -- uid: 71 - type: Table - components: - - pos: 35.5,-36.5 - parent: 60 - type: Transform -- uid: 72 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 60 - type: Transform -- uid: 73 - type: MedkitToxinFilled - components: - - pos: 50.005993,-8.435179 - parent: 60 - type: Transform -- uid: 74 - type: FirelockGlass - components: - - pos: 36.5,-16.5 - parent: 60 - type: Transform -- uid: 75 - type: DisposalUnit - components: - - pos: 19.5,-20.5 - parent: 60 - type: Transform -- uid: 76 - type: ReinforcedWindow - components: - - pos: -23.5,-8.5 - parent: 60 - type: Transform -- uid: 77 - type: DisposalUnit - components: - - pos: -30.5,-18.5 - parent: 60 - type: Transform -- uid: 78 - type: Table - components: - - pos: 37.5,-37.5 - parent: 60 - type: Transform -- uid: 79 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-15.5 - parent: 60 - type: Transform -- uid: 80 - type: DisposalPipe - components: - - pos: 44.5,-18.5 - parent: 60 - type: Transform -- uid: 81 - type: FirelockEdge - components: - - pos: -19.5,-21.5 - parent: 60 - type: Transform -- uid: 82 - type: Table - components: - - pos: -23.5,-9.5 - parent: 60 - type: Transform -- uid: 83 - type: DisposalPipe - components: - - pos: 44.5,-20.5 - parent: 60 - type: Transform -- uid: 84 - type: Chair - components: - - pos: -28.5,-18.5 - parent: 60 - type: Transform -- uid: 85 - type: Poweredlight - components: - - pos: 41.5,-19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 86 - type: Table - components: - - pos: 9.5,-36.5 - parent: 60 - type: Transform -- uid: 87 - type: Catwalk - components: - - pos: 6.5,-49.5 - parent: 60 - type: Transform -- uid: 88 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 89 - type: filingCabinetRandom - components: - - pos: -49.5,-15.5 - parent: 60 - type: Transform -- uid: 90 - type: WallReinforced - components: - - pos: 8.5,-44.5 - parent: 60 - type: Transform -- uid: 91 - type: WallReinforced - components: - - pos: -29.5,15.5 - parent: 60 - type: Transform -- uid: 92 - type: Catwalk - components: - - pos: -56.5,-18.5 - parent: 60 - type: Transform -- uid: 93 - type: DisposalPipe - components: - - pos: 44.5,-16.5 - parent: 60 - type: Transform -- uid: 94 - type: FirelockGlass - components: - - pos: 42.5,-17.5 - parent: 60 - type: Transform -- uid: 95 - type: hydroponicsTray - components: - - pos: 35.5,-31.5 - parent: 60 - type: Transform -- uid: 96 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-7.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 97 - type: ReinforcedWindow - components: - - pos: -28.5,-7.5 - parent: 60 - type: Transform -- uid: 98 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 99 - type: ReinforcedWindow - components: - - pos: 43.5,27.5 - parent: 60 - type: Transform -- uid: 100 - type: CheapRollerBed - components: - - pos: 35.46979,-18.379112 - parent: 60 - type: Transform -- uid: 101 - type: AirlockMaintMedLocked - components: - - name: medbay - type: MetaData - - pos: 44.5,-7.5 - parent: 60 - type: Transform -- uid: 102 - type: DisposalBend - components: - - pos: 33.5,-20.5 - parent: 60 - type: Transform -- uid: 103 - type: MedkitToxinFilled - components: - - pos: 49.990368,-8.232054 - parent: 60 - type: Transform -- uid: 104 - type: Table - components: - - pos: 40.5,-19.5 - parent: 60 - type: Transform -- uid: 105 - type: ReinforcedWindow - components: - - pos: -17.5,-12.5 - parent: 60 - type: Transform -- uid: 106 - type: Table - components: - - pos: 49.5,-8.5 - parent: 60 - type: Transform -- uid: 107 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-23.5 - parent: 60 - type: Transform -- uid: 108 - type: Table - components: - - pos: 48.5,-8.5 - parent: 60 - type: Transform -- uid: 109 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-17.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 110 - type: DisposalPipe - components: - - pos: 44.5,-14.5 - parent: 60 - type: Transform -- uid: 111 - type: MedkitBurnFilled - components: - - pos: 48.927868,-8.450804 - parent: 60 - type: Transform -- uid: 112 - type: FirelockEdge - components: - - pos: -20.5,-21.5 - parent: 60 - type: Transform -- uid: 113 - type: Grille - components: - - pos: -18.5,-17.5 - parent: 60 - type: Transform -- uid: 114 - type: GasVentPump - components: - - pos: 49.5,-9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 115 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-12.5 - parent: 60 - type: Transform -- uid: 116 - type: WallReinforced - components: - - pos: -32.5,-11.5 - parent: 60 - type: Transform -- uid: 117 - type: MedkitRadiationFilled - components: - - pos: 50.537243,-8.247679 - parent: 60 - type: Transform -- uid: 118 - type: ClothingNeckTieRed - components: - - pos: 19.387941,-50.49055 - parent: 60 - type: Transform -- uid: 119 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -35.5,-4.5 - parent: 60 - type: Transform -- uid: 120 - type: CableMV - components: - - pos: 4.5,-32.5 - parent: 60 - type: Transform -- uid: 121 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-20.5 - parent: 60 - type: Transform -- uid: 122 - type: WallReinforced - components: - - pos: -32.5,-8.5 - parent: 60 - type: Transform -- uid: 123 - type: ShuttersNormalOpen - components: - - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6972 - - port: Pressed - uid: 1488 - type: SignalReceiver -- uid: 124 - type: ReinforcedWindow - components: - - pos: -23.5,-10.5 - parent: 60 - type: Transform -- uid: 125 - type: MedkitBruteFilled - components: - - pos: 49.459118,-8.232054 - parent: 60 - type: Transform -- uid: 126 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-24.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 127 - type: GasVentPump - components: - - pos: 20.5,-12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 128 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-17.5 - parent: 60 - type: Transform -- uid: 129 - type: MedkitRadiationFilled - components: - - pos: 50.552868,-8.466429 - parent: 60 - type: Transform -- uid: 130 - type: ReinforcedWindow - components: - - pos: -32.5,-10.5 - parent: 60 - type: Transform -- uid: 131 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-7.5 - parent: 60 - type: Transform -- uid: 132 - type: Grille - components: - - pos: -28.5,-7.5 - parent: 60 - type: Transform -- uid: 133 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 134 - type: ClothingEyesHudMedical - components: - - pos: 49.589993,-17.822021 - parent: 60 - type: Transform -- uid: 135 - type: ShuttersNormalOpen - components: - - pos: 39.5,-21.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7070 - type: SignalReceiver -- uid: 136 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-7.5 - parent: 60 - type: Transform -- uid: 137 - type: SpawnPointSecurityOfficer - components: - - pos: -33.5,-17.5 - parent: 60 - type: Transform -- uid: 138 - type: Poweredlight - components: - - pos: 41.5,-22.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 139 - type: ClothingEyesHudMedical - components: - - pos: 49.558743,-17.662226 - parent: 60 - type: Transform -- uid: 140 - type: WallSolid - components: - - pos: 54.5,-5.5 - parent: 60 - type: Transform -- uid: 141 - type: DisposalPipe - components: - - pos: 44.5,-15.5 - parent: 60 - type: Transform -- uid: 142 - type: MedkitBurnFilled - components: - - pos: 48.912243,-8.247679 - parent: 60 - type: Transform -- uid: 143 - type: WallReinforced - components: - - pos: -27.5,-6.5 - parent: 60 - type: Transform -- uid: 144 - type: AirlockBrigGlassLocked - components: - - pos: -21.5,-18.5 - parent: 60 - type: Transform -- uid: 145 - type: DisposalPipe - components: - - pos: 44.5,-17.5 - parent: 60 - type: Transform -- uid: 146 - type: Gauze - components: - - pos: 40.472416,-19.403461 - parent: 60 - type: Transform -- uid: 147 - type: LockerMedicalFilled - components: - - pos: 50.5,-9.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 148 - type: ShuttersNormalOpen - components: - - rot: 3.141592653589793 rad - pos: -17.5,-6.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6972 - type: SignalReceiver -- uid: 149 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-12.5 - parent: 60 - type: Transform -- uid: 150 - type: WallReinforced - components: - - pos: -33.5,-5.5 - parent: 60 - type: Transform -- uid: 151 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-9.5 - parent: 60 - type: Transform -- uid: 152 - type: WallReinforced - components: - - pos: -31.5,-18.5 - parent: 60 - type: Transform -- uid: 153 - type: ClothingHeadHatRichard - components: - - pos: 56.419407,-8.359792 - parent: 60 - type: Transform -- uid: 154 - type: PosterContrabandWehWatches - components: - - pos: 54.5,-7.5 - parent: 60 - type: Transform -- uid: 155 - type: Grille - components: - - pos: -20.5,-17.5 - parent: 60 - type: Transform -- uid: 156 - type: ReinforcedWindow - components: - - pos: -28.5,-11.5 - parent: 60 - type: Transform -- uid: 157 - type: ReinforcedWindow - components: - - pos: -29.5,-17.5 - parent: 60 - type: Transform -- uid: 158 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-18.5 - parent: 60 - type: Transform -- uid: 159 - type: Poweredlight - components: - - pos: 39.5,-12.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 160 - type: WallSolid - components: - - pos: -28.5,6.5 - parent: 60 - type: Transform -- uid: 161 - type: SignElectricalMed - components: - - pos: 38.5,-35.5 - parent: 60 - type: Transform -- uid: 162 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-13.5 - parent: 60 - type: Transform -- uid: 163 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-8.5 - parent: 60 - type: Transform -- uid: 164 - type: DisposalPipe - components: - - pos: 44.5,-13.5 - parent: 60 - type: Transform -- uid: 165 - type: WallReinforced - components: - - pos: 57.5,-8.5 - parent: 60 - type: Transform -- uid: 166 - type: Poweredlight - components: - - pos: 37.5,-16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 167 - type: SpawnPointMedicalIntern - components: - - pos: 44.5,-10.5 - parent: 60 - type: Transform -- uid: 168 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-23.5 - parent: 60 - type: Transform -- uid: 169 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-23.5 - parent: 60 - type: Transform -- uid: 170 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-23.5 - parent: 60 - type: Transform -- uid: 171 - type: GasPipeStraight - components: - - pos: 44.5,-12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 172 - type: BoxBodyBag - components: - - pos: 40.456047,-10.342315 - parent: 60 - type: Transform -- uid: 173 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-8.5 - parent: 60 - type: Transform -- uid: 174 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-8.5 - parent: 60 - type: Transform -- uid: 175 - type: WallSolid - components: - - pos: -33.5,6.5 - parent: 60 - type: Transform -- uid: 176 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 177 - type: WallSolid - components: - - pos: -29.5,6.5 - parent: 60 - type: Transform -- uid: 178 - type: WallSolid - components: - - pos: -32.5,6.5 - parent: 60 - type: Transform -- uid: 179 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 180 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 181 - type: Bed - components: - - pos: 52.5,-44.5 - parent: 60 - type: Transform -- uid: 182 - type: ReinforcedWindow - components: - - pos: -17.5,-13.5 - parent: 60 - type: Transform -- uid: 183 - type: WallSolid - components: - - pos: 41.5,-4.5 - parent: 60 - type: Transform -- uid: 184 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -35.5,-16.5 - parent: 60 - type: Transform -- uid: 185 - type: ShuttersNormalOpen - components: - - pos: -17.5,-10.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1488 - type: SignalReceiver -- uid: 186 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -35.5,-14.5 - parent: 60 - type: Transform -- uid: 187 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -35.5,-15.5 - parent: 60 - type: Transform -- uid: 188 - type: ShuttersNormalOpen - components: - - pos: -17.5,-7.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6972 - type: SignalReceiver -- uid: 189 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -35.5,-17.5 - parent: 60 - type: Transform -- uid: 190 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -35.5,-11.5 - parent: 60 - type: Transform -- uid: 191 - type: LockerSecurityFilled - components: - - pos: -34.5,-17.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 192 - type: Table - components: - - pos: 50.5,-8.5 - parent: 60 - type: Transform -- uid: 193 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 50.5,-10.5 - parent: 60 - type: Transform -- uid: 194 - type: VendingMachineMediDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 47.5,-8.5 - parent: 60 - type: Transform -- uid: 195 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 196 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 197 - type: WallSolid - components: - - pos: 37.5,-38.5 - parent: 60 - type: Transform -- uid: 198 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 199 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 200 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-10.5 - parent: 60 - type: Transform -- uid: 201 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-8.5 - parent: 60 - type: Transform -- uid: 202 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 203 - type: PoweredSmallLight - components: - - pos: 54.5,-10.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 204 - type: WallSolid - components: - - pos: 38.5,-38.5 - parent: 60 - type: Transform -- uid: 205 - type: WallSolid - components: - - pos: -27.5,6.5 - parent: 60 - type: Transform -- uid: 206 - type: WallReinforced - components: - - pos: -35.5,-21.5 - parent: 60 - type: Transform -- uid: 207 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -35.5,2.5 - parent: 60 - type: Transform -- uid: 208 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -35.5,3.5 - parent: 60 - type: Transform -- uid: 209 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 60 - type: Transform -- uid: 210 - type: ReinforcedWindow - components: - - pos: -24.5,-11.5 - parent: 60 - type: Transform -- uid: 211 - type: WallReinforced - components: - - pos: 57.5,27.5 - parent: 60 - type: Transform -- uid: 212 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 213 - type: WallReinforced - components: - - pos: -20.5,-14.5 - parent: 60 - type: Transform -- uid: 214 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 8.5,-32.5 - parent: 60 - type: Transform -- uid: 215 - type: Dresser - components: - - pos: -21.5,2.5 - parent: 60 - type: Transform -- uid: 216 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-8.5 - parent: 60 - type: Transform -- uid: 217 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 218 - type: WallSolid - components: - - pos: -17.5,6.5 - parent: 60 - type: Transform -- uid: 219 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 26.5,-16.5 - parent: 60 - type: Transform -- uid: 220 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 221 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 222 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 20.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 223 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 224 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 225 - type: WallReinforced - components: - - pos: 42.5,27.5 - parent: 60 - type: Transform -- uid: 226 - type: SpawnPointMedicalDoctor - components: - - pos: 49.5,-9.5 - parent: 60 - type: Transform -- uid: 227 - type: AirlockExternalGlass - components: - - pos: 44.5,27.5 - parent: 60 - type: Transform -- uid: 228 - type: SignExamroom - components: - - pos: 31.5,-18.5 - parent: 60 - type: Transform -- uid: 229 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-6.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 230 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-6.5 - parent: 60 - type: Transform -- uid: 231 - type: ReinforcedWindow - components: - - pos: -20.5,-10.5 - parent: 60 - type: Transform -- uid: 232 - type: Grille - components: - - pos: -23.5,-17.5 - parent: 60 - type: Transform -- uid: 233 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-10.5 - parent: 60 - type: Transform -- uid: 234 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 235 - type: WallSolid - components: - - pos: -33.5,-11.5 - parent: 60 - type: Transform -- uid: 236 - type: WallSolid - components: - - pos: -18.5,-8.5 - parent: 60 - type: Transform -- uid: 237 - type: WallReinforced - components: - - pos: -28.5,-6.5 - parent: 60 - type: Transform -- uid: 238 - type: Grille - components: - - pos: -20.5,-13.5 - parent: 60 - type: Transform -- uid: 239 - type: WallReinforced - components: - - pos: -34.5,-5.5 - parent: 60 - type: Transform -- uid: 240 - type: WallSolid - components: - - pos: -34.5,-11.5 - parent: 60 - type: Transform -- uid: 241 - type: AirlockMedicalLocked - components: - - name: Brig Med - type: MetaData - - pos: -17.5,-4.5 - parent: 60 - type: Transform -- uid: 242 - type: WallReinforced - components: - - pos: -18.5,-14.5 - parent: 60 - type: Transform -- uid: 243 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-12.5 - parent: 60 - type: Transform -- uid: 244 - type: AirlockBrigGlassLocked - components: - - pos: -27.5,-17.5 - parent: 60 - type: Transform -- uid: 245 - type: Grille - components: - - pos: -20.5,-10.5 - parent: 60 - type: Transform -- uid: 246 - type: WallReinforced - components: - - pos: -33.5,-14.5 - parent: 60 - type: Transform -- uid: 247 - type: WallSolid - components: - - pos: -21.5,6.5 - parent: 60 - type: Transform -- uid: 248 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -24.5,-29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 249 - type: AirAlarm - components: - - pos: -24.5,-1.5 - parent: 60 - type: Transform - - devices: - - 5562 - - 5565 - - 5563 - - 8466 - - 21733 - - 9154 - - 8413 - type: DeviceList -- uid: 250 - type: Poweredlight - components: - - pos: 37.5,-22.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 251 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-11.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 252 - type: WallReinforced - components: - - pos: 45.5,28.5 - parent: 60 - type: Transform -- uid: 253 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-9.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 254 - type: WallSolid - components: - - pos: 56.5,-9.5 - parent: 60 - type: Transform -- uid: 255 - type: WallSolid - components: - - pos: -33.5,-8.5 - parent: 60 - type: Transform -- uid: 256 - type: ReinforcedWindow - components: - - pos: 57.5,-5.5 - parent: 60 - type: Transform -- uid: 257 - type: Wrench - components: - - pos: 51.521786,-20.438395 - parent: 60 - type: Transform - - nextAttack: 476.1492185 - type: MeleeWeapon -- uid: 258 - type: RandomSpawner - components: - - pos: -16.5,21.5 - parent: 60 - type: Transform -- uid: 259 - type: ReinforcedWindow - components: - - pos: 55.5,27.5 - parent: 60 - type: Transform -- uid: 260 - type: ReinforcedWindow - components: - - pos: 57.5,-6.5 - parent: 60 - type: Transform -- uid: 261 - type: BoxLatexGloves - components: - - pos: 39.731613,-10.351491 - parent: 60 - type: Transform -- uid: 262 - type: WallSolid - components: - - pos: 38.5,-4.5 - parent: 60 - type: Transform -- uid: 263 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 264 - type: AirlockEngineeringLocked - components: - - pos: 38.5,-36.5 - parent: 60 - type: Transform -- uid: 265 - type: SignMorgue - components: - - pos: 42.5,-8.5 - parent: 60 - type: Transform -- uid: 266 - type: WallSolid - components: - - pos: -22.5,6.5 - parent: 60 - type: Transform -- uid: 267 - type: WallReinforced - components: - - pos: -34.5,-14.5 - parent: 60 - type: Transform -- uid: 268 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-9.5 - parent: 60 - type: Transform -- uid: 269 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-12.5 - parent: 60 - type: Transform -- uid: 270 - type: SpawnPointSecurityOfficer - components: - - pos: -33.5,-18.5 - parent: 60 - type: Transform -- uid: 271 - type: TableWood - components: - - pos: 25.5,-15.5 - parent: 60 - type: Transform -- uid: 272 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 273 - type: BedsheetSpawner - components: - - pos: 52.5,-44.5 - parent: 60 - type: Transform -- uid: 274 - type: Rack - components: - - pos: 5.5,-36.5 - parent: 60 - type: Transform -- uid: 275 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 21.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 276 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 7.5,-32.5 - parent: 60 - type: Transform -- uid: 277 - type: WallReinforced - components: - - pos: 4.5,-33.5 - parent: 60 - type: Transform -- uid: 278 - type: WallReinforced - components: - - pos: -21.5,-14.5 - parent: 60 - type: Transform -- uid: 279 - type: DisposalPipe - components: - - pos: 44.5,-21.5 - parent: 60 - type: Transform -- uid: 280 - type: WallReinforced - components: - - pos: 45.5,29.5 - parent: 60 - type: Transform -- uid: 281 - type: CableMV - components: - - pos: 43.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 282 - type: WallSolid - components: - - pos: 38.5,-37.5 - parent: 60 - type: Transform -- uid: 283 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 4.5,-33.5 - parent: 60 - type: Transform -- uid: 284 - type: Grille - components: - - pos: -28.5,-8.5 - parent: 60 - type: Transform -- uid: 285 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: 39.5,-25.5 - parent: 60 - type: Transform -- uid: 286 - type: hydroponicsTray - components: - - pos: -62.5,-22.5 - parent: 60 - type: Transform -- uid: 287 - type: SubstationBasic - components: - - name: South Cargo Substation - type: MetaData - - pos: 54.5,-3.5 - parent: 60 - type: Transform -- uid: 288 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-23.5 - parent: 60 - type: Transform -- uid: 289 - type: CableHV - components: - - pos: 28.5,-76.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 290 - type: WallReinforced - components: - - pos: 42.5,-4.5 - parent: 60 - type: Transform -- uid: 291 - type: WallSolid - components: - - pos: -19.5,-8.5 - parent: 60 - type: Transform -- uid: 292 - type: FoodNoodlesMeatball - components: - - pos: 23.456995,-16.221992 - parent: 60 - type: Transform -- uid: 293 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 294 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 295 - type: RandomSpawner - components: - - pos: -35.5,25.5 - parent: 60 - type: Transform -- uid: 296 - type: PosterContrabandHaveaPuff - components: - - pos: 36.5,-35.5 - parent: 60 - type: Transform -- uid: 297 - type: AtmosDeviceFanTiny - components: - - pos: 52.5,31.5 - parent: 60 - type: Transform -- uid: 298 - type: WallReinforced - components: - - pos: 57.5,-4.5 - parent: 60 - type: Transform -- uid: 299 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 300 - type: AirlockMedicalGlassLocked - components: - - name: Medical Storage - type: MetaData - - pos: 46.5,-9.5 - parent: 60 - type: Transform -- uid: 301 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 302 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 303 - type: MedkitFilled - components: - - pos: 48.380993,-8.450804 - parent: 60 - type: Transform -- uid: 304 - type: AppleSeeds - components: - - pos: 10.5,2.5 - parent: 60 - type: Transform -- uid: 305 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 306 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 307 - type: AirlockBrigGlassLocked - components: - - pos: -21.5,-20.5 - parent: 60 - type: Transform -- uid: 308 - type: WardrobeSecurityFilled - components: - - pos: -34.5,-19.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 309 - type: WallReinforced - components: - - pos: -32.5,-14.5 - parent: 60 - type: Transform -- uid: 310 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 311 - type: GasPipeBend - components: - - pos: 27.5,-12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 312 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 313 - type: ReinforcedWindow - components: - - pos: -29.5,-10.5 - parent: 60 - type: Transform -- uid: 314 - type: WallReinforced - components: - - pos: -17.5,-3.5 - parent: 60 - type: Transform -- uid: 315 - type: DisposalBend - components: - - pos: 20.5,-20.5 - parent: 60 - type: Transform -- uid: 316 - type: FoodNoodles - components: - - pos: 23.50387,-19.253242 - parent: 60 - type: Transform -- uid: 317 - type: WallReinforced - components: - - pos: 56.5,27.5 - parent: 60 - type: Transform -- uid: 318 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 319 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-8.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 320 - type: ReinforcedWindow - components: - - pos: 57.5,-7.5 - parent: 60 - type: Transform -- uid: 321 - type: CableHV - components: - - pos: 49.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 322 - type: SpawnPointMedicalDoctor - components: - - pos: 47.5,-9.5 - parent: 60 - type: Transform -- uid: 323 - type: RandomSpawner - components: - - pos: -16.5,-3.5 - parent: 60 - type: Transform -- uid: 324 - type: WallReinforced - components: - - pos: 51.5,-7.5 - parent: 60 - type: Transform -- uid: 325 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-5.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 326 - type: WallSolid - components: - - pos: 35.5,-7.5 - parent: 60 - type: Transform -- uid: 327 - type: ClothingMaskBreathMedical - components: - - pos: 3.4602647,-3.610754 - parent: 60 - type: Transform -- uid: 328 - type: Table - components: - - pos: 56.5,-8.5 - parent: 60 - type: Transform -- uid: 329 - type: ReinforcedWindow - components: - - pos: 51.5,27.5 - parent: 60 - type: Transform -- uid: 330 - type: CarpetSBlue - components: - - pos: 30.5,-13.5 - parent: 60 - type: Transform -- uid: 331 - type: PottedPlant22 - components: - - pos: 38.5,-19.5 - parent: 60 - type: Transform -- uid: 332 - type: StasisBed - components: - - pos: 39.5,-19.5 - parent: 60 - type: Transform -- uid: 333 - type: WallSolid - components: - - pos: -19.5,6.5 - parent: 60 - type: Transform -- uid: 334 - type: WallSolid - components: - - pos: -20.5,6.5 - parent: 60 - type: Transform -- uid: 335 - type: WallSolid - components: - - pos: -17.5,5.5 - parent: 60 - type: Transform -- uid: 336 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -35.5,-1.5 - parent: 60 - type: Transform -- uid: 337 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 338 - type: WallSolid - components: - - pos: 54.5,-4.5 - parent: 60 - type: Transform -- uid: 339 - type: ReinforcedWindow - components: - - pos: 47.5,27.5 - parent: 60 - type: Transform -- uid: 340 - type: WallSolid - components: - - pos: -23.5,6.5 - parent: 60 - type: Transform -- uid: 341 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -35.5,-0.5 - parent: 60 - type: Transform -- uid: 342 - type: WallReinforced - components: - - pos: -19.5,-14.5 - parent: 60 - type: Transform -- uid: 343 - type: WallReinforced - components: - - pos: 55.5,-4.5 - parent: 60 - type: Transform -- uid: 344 - type: CableHV - components: - - pos: 30.5,-76.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 345 - type: SignElectricalMed - components: - - pos: 51.5,-4.5 - parent: 60 - type: Transform -- uid: 346 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-23.5 - parent: 60 - type: Transform -- uid: 347 - type: SpawnPointMedicalDoctor - components: - - pos: 48.5,-9.5 - parent: 60 - type: Transform -- uid: 348 - type: RollerBed - components: - - pos: 41.440662,-10.344523 - parent: 60 - type: Transform -- uid: 349 - type: WallSolid - components: - - pos: 39.5,-4.5 - parent: 60 - type: Transform -- uid: 350 - type: CableMV - components: - - pos: 45.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 351 - type: WallReinforced - components: - - pos: 35.5,-4.5 - parent: 60 - type: Transform -- uid: 352 - type: RandomSpawner - components: - - pos: -22.5,9.5 - parent: 60 - type: Transform -- uid: 353 - type: WallReinforced - components: - - pos: 53.5,30.5 - parent: 60 - type: Transform -- uid: 354 - type: CableHV - components: - - pos: 51.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 355 - type: PoweredSmallLight - components: - - pos: 55.5,-5.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 356 - type: ReinforcedWindow - components: - - pos: -20.5,-13.5 - parent: 60 - type: Transform -- uid: 357 - type: ReinforcedWindow - components: - - pos: -32.5,-13.5 - parent: 60 - type: Transform -- uid: 358 - type: FoodTomato - components: - - pos: 21.41012,-18.206367 - parent: 60 - type: Transform -- uid: 359 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-20.5 - parent: 60 - type: Transform -- uid: 360 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 361 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 362 - type: LampGold - components: - - pos: 25.565468,-15.324441 - parent: 60 - type: Transform -- uid: 363 - type: AirlockMaintLocked - components: - - pos: -26.5,6.5 - parent: 60 - type: Transform -- uid: 364 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -35.5,-2.5 - parent: 60 - type: Transform -- uid: 365 - type: WallSolid - components: - - pos: -24.5,6.5 - parent: 60 - type: Transform -- uid: 366 - type: WallReinforced - components: - - pos: -6.5,7.5 - parent: 60 - type: Transform -- uid: 367 - type: WallSolid - components: - - pos: 43.5,0.5 - parent: 60 - type: Transform -- uid: 368 - type: CableHV - components: - - pos: 54.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 369 - type: Grille - components: - - pos: -1.5,-13.5 - parent: 60 - type: Transform -- uid: 370 - type: Grille - components: - - pos: -1.5,-14.5 - parent: 60 - type: Transform -- uid: 371 - type: Grille - components: - - pos: 2.5,-13.5 - parent: 60 - type: Transform -- uid: 372 - type: Grille - components: - - pos: 2.5,-14.5 - parent: 60 - type: Transform -- uid: 373 - type: Grille - components: - - pos: 2.5,-16.5 - parent: 60 - type: Transform -- uid: 374 - type: Grille - components: - - pos: 2.5,-17.5 - parent: 60 - type: Transform -- uid: 375 - type: Grille - components: - - pos: -1.5,-16.5 - parent: 60 - type: Transform -- uid: 376 - type: Grille - components: - - pos: -1.5,-17.5 - parent: 60 - type: Transform -- uid: 377 - type: Grille - components: - - pos: -1.5,-19.5 - parent: 60 - type: Transform -- uid: 378 - type: Grille - components: - - pos: -1.5,-20.5 - parent: 60 - type: Transform -- uid: 379 - type: Grille - components: - - pos: 2.5,-20.5 - parent: 60 - type: Transform -- uid: 380 - type: Grille - components: - - pos: 2.5,-19.5 - parent: 60 - type: Transform -- uid: 381 - type: WallReinforced - components: - - pos: -1.5,-18.5 - parent: 60 - type: Transform -- uid: 382 - type: WallReinforced - components: - - pos: 2.5,-18.5 - parent: 60 - type: Transform -- uid: 383 - type: WallReinforced - components: - - pos: 2.5,-15.5 - parent: 60 - type: Transform -- uid: 384 - type: WallReinforced - components: - - pos: -1.5,-15.5 - parent: 60 - type: Transform -- uid: 385 - type: ReinforcedWindow - components: - - pos: -1.5,-14.5 - parent: 60 - type: Transform -- uid: 386 - type: ReinforcedWindow - components: - - pos: -1.5,-13.5 - parent: 60 - type: Transform -- uid: 387 - type: ReinforcedWindow - components: - - pos: 2.5,-13.5 - parent: 60 - type: Transform -- uid: 388 - type: ReinforcedWindow - components: - - pos: 2.5,-14.5 - parent: 60 - type: Transform -- uid: 389 - type: ReinforcedWindow - components: - - pos: 2.5,-16.5 - parent: 60 - type: Transform -- uid: 390 - type: ReinforcedWindow - components: - - pos: 2.5,-17.5 - parent: 60 - type: Transform -- uid: 391 - type: ReinforcedWindow - components: - - pos: -1.5,-16.5 - parent: 60 - type: Transform -- uid: 392 - type: ReinforcedWindow - components: - - pos: -1.5,-17.5 - parent: 60 - type: Transform -- uid: 393 - type: ReinforcedWindow - components: - - pos: -1.5,-19.5 - parent: 60 - type: Transform -- uid: 394 - type: ReinforcedWindow - components: - - pos: -1.5,-20.5 - parent: 60 - type: Transform -- uid: 395 - type: ReinforcedWindow - components: - - pos: 2.5,-19.5 - parent: 60 - type: Transform -- uid: 396 - type: ReinforcedWindow - components: - - pos: 2.5,-20.5 - parent: 60 - type: Transform -- uid: 397 - type: Grille - components: - - pos: 57.5,9.5 - parent: 60 - type: Transform -- uid: 398 - type: Grille - components: - - pos: 57.5,7.5 - parent: 60 - type: Transform -- uid: 399 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 60 - type: Transform -- uid: 400 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 60 - type: Transform -- uid: 401 - type: PosterContrabandMissingGloves - components: - - pos: 9.5,-18.5 - parent: 60 - type: Transform -- uid: 402 - type: WindowReinforcedDirectional - components: - - pos: -4.5,-18.5 - parent: 60 - type: Transform -- uid: 403 - type: WallReinforced - components: - - pos: 21.5,-1.5 - parent: 60 - type: Transform -- uid: 404 - type: ReinforcedWindow - components: - - pos: 20.5,2.5 - parent: 60 - type: Transform -- uid: 405 - type: WallReinforced - components: - - pos: 20.5,-1.5 - parent: 60 - type: Transform -- uid: 406 - type: WallReinforced - components: - - pos: 20.5,-0.5 - parent: 60 - type: Transform -- uid: 407 - type: WallReinforced - components: - - pos: 26.5,-0.5 - parent: 60 - type: Transform -- uid: 408 - type: ReinforcedWindow - components: - - pos: 20.5,1.5 - parent: 60 - type: Transform -- uid: 409 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 410 - type: Table - components: - - pos: 55.5,-8.5 - parent: 60 - type: Transform -- uid: 411 - type: WallSolid - components: - - pos: 42.5,-6.5 - parent: 60 - type: Transform -- uid: 412 - type: GasPipeStraight - components: - - pos: 1.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 413 - type: GasPipeStraight - components: - - pos: 1.5,-14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 414 - type: GasPipeStraight - components: - - pos: 1.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 415 - type: GasPipeStraight - components: - - pos: 1.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 416 - type: GasPipeStraight - components: - - pos: 1.5,-17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 417 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 418 - type: GasPipeStraight - components: - - pos: 1.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 419 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-10.5 - parent: 60 - type: Transform -- uid: 420 - type: GasPipeStraight - components: - - pos: -0.5,-13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 421 - type: GasPipeStraight - components: - - pos: -0.5,-15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 422 - type: GasPipeStraight - components: - - pos: -0.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 423 - type: GasPipeStraight - components: - - pos: -0.5,-16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 424 - type: GasPipeStraight - components: - - pos: -0.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 425 - type: GasPipeStraight - components: - - pos: -0.5,-18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 426 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 427 - type: GasPipeStraight - components: - - pos: -0.5,-20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 428 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 429 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 430 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-22.5 - parent: 60 - type: Transform -- uid: 431 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-23.5 - parent: 60 - type: Transform -- uid: 432 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-23.5 - parent: 60 - type: Transform -- uid: 433 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-23.5 - parent: 60 - type: Transform -- uid: 434 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-23.5 - parent: 60 - type: Transform -- uid: 435 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-24.5 - parent: 60 - type: Transform -- uid: 436 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-23.5 - parent: 60 - type: Transform -- uid: 437 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-23.5 - parent: 60 - type: Transform -- uid: 438 - type: HandLabeler - components: - - pos: 41.484077,-28.457115 - parent: 60 - type: Transform -- uid: 439 - type: ClosetWallAtmospherics - components: - - pos: -62.5,42.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 440 - type: GasPipeStraight - components: - - pos: 44.5,-10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 441 - type: CableHV - components: - - pos: 1.5,-37.5 - parent: 60 - type: Transform -- uid: 442 - type: WallReinforced - components: - - pos: -1.5,-21.5 - parent: 60 - type: Transform -- uid: 443 - type: WallReinforced - components: - - pos: -2.5,-21.5 - parent: 60 - type: Transform -- uid: 444 - type: WallReinforced - components: - - pos: 2.5,-21.5 - parent: 60 - type: Transform -- uid: 445 - type: WallReinforced - components: - - pos: 3.5,-21.5 - parent: 60 - type: Transform -- uid: 446 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -5.5,-25.5 - parent: 60 - type: Transform -- uid: 447 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -1.5,-28.5 - parent: 60 - type: Transform -- uid: 448 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -6.5,-25.5 - parent: 60 - type: Transform -- uid: 449 - type: Grille - components: - - pos: 40.5,-21.5 - parent: 60 - type: Transform -- uid: 450 - type: WallSolid - components: - - pos: -8.5,-25.5 - parent: 60 - type: Transform -- uid: 451 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -7.5,-25.5 - parent: 60 - type: Transform -- uid: 452 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -10.5,-25.5 - parent: 60 - type: Transform -- uid: 453 - type: WallSolid - components: - - pos: -15.5,-27.5 - parent: 60 - type: Transform -- uid: 454 - type: SignBridge - components: - - pos: -1.5,-21.5 - parent: 60 - type: Transform -- uid: 455 - type: WallReinforced - components: - - pos: 10.5,-2.5 - parent: 60 - type: Transform -- uid: 456 - type: WallReinforced - components: - - pos: 5.5,-1.5 - parent: 60 - type: Transform -- uid: 457 - type: WallReinforced - components: - - pos: 3.5,-4.5 - parent: 60 - type: Transform -- uid: 458 - type: FirelockEdge - components: - - pos: 1.5,-20.5 - parent: 60 - type: Transform -- uid: 459 - type: FirelockEdge - components: - - pos: 0.5,-20.5 - parent: 60 - type: Transform -- uid: 460 - type: FirelockEdge - components: - - pos: -0.5,-20.5 - parent: 60 - type: Transform -- uid: 461 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-23.5 - parent: 60 - type: Transform -- uid: 462 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 463 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 464 - type: Rack - components: - - pos: -63.5,-8.5 - parent: 60 - type: Transform -- uid: 465 - type: GasPipeStraight - components: - - pos: 45.5,-12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 466 - type: ComputerAnalysisConsole - components: - - rot: 1.5707963267948966 rad - pos: -47.5,16.5 - parent: 60 - type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 9442 - type: SignalTransmitter -- uid: 467 - type: GasPipeFourway - components: - - pos: 1.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 468 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 469 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 470 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 471 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 472 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 473 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 474 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 475 - type: GasPipeStraight - components: - - pos: 1.5,-24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 476 - type: GasPipeStraight - components: - - pos: 1.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 477 - type: GasPipeStraight - components: - - pos: 1.5,-26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 478 - type: GasPipeStraight - components: - - pos: 1.5,-27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 479 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 480 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 481 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 482 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 483 - type: GasPipeFourway - components: - - pos: -0.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 484 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-25.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 485 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-26.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 486 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 487 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-23.5 - parent: 60 - type: Transform -- uid: 488 - type: DisposalBend - components: - - pos: 1.5,-40.5 - parent: 60 - type: Transform -- uid: 489 - type: AirlockGlass - components: - - pos: -0.5,-21.5 - parent: 60 - type: Transform -- uid: 490 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 - parent: 60 - type: Transform -- uid: 491 - type: FirelockGlass - components: - - pos: -36.5,5.5 - parent: 60 - type: Transform -- uid: 492 - type: WallReinforced - components: - - pos: -24.5,-21.5 - parent: 60 - type: Transform -- uid: 493 - type: ReinforcedWindow - components: - - pos: -24.5,-8.5 - parent: 60 - type: Transform -- uid: 494 - type: WallSolid - components: - - pos: -18.5,6.5 - parent: 60 - type: Transform -- uid: 495 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 496 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 497 - type: CableApcExtension - components: - - pos: -65.5,8.5 - parent: 60 - type: Transform -- uid: 498 - type: WallReinforced - components: - - pos: -13.5,-21.5 - parent: 60 - type: Transform -- uid: 499 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 500 - type: CableApcExtension - components: - - pos: -11.5,2.5 - parent: 60 - type: Transform -- uid: 501 - type: ReinforcedWindow - components: - - pos: -5.5,-21.5 - parent: 60 - type: Transform -- uid: 502 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 60 - type: Transform -- uid: 503 - type: WallReinforced - components: - - pos: 10.5,-21.5 - parent: 60 - type: Transform -- uid: 504 - type: WallReinforced - components: - - pos: 14.5,-21.5 - parent: 60 - type: Transform -- uid: 505 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 506 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 507 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 508 - type: GasPipeTJunction - components: - - pos: 3.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 509 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 510 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 511 - type: GasPipeTJunction - components: - - pos: -3.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 512 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 513 - type: ReinforcedWindow - components: - - pos: -13.5,-12.5 - parent: 60 - type: Transform -- uid: 514 - type: CableHV - components: - - pos: 31.5,-60.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 515 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-9.5 - parent: 60 - type: Transform -- uid: 516 - type: GasVentScrubber - components: - - pos: -19.5,-23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 517 - type: WallReinforced - components: - - pos: -13.5,-6.5 - parent: 60 - type: Transform -- uid: 518 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -13.5,2.5 - parent: 60 - type: Transform -- uid: 519 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -13.5,6.5 - parent: 60 - type: Transform -- uid: 520 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-17.5 - parent: 60 - type: Transform -- uid: 521 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-12.5 - parent: 60 - type: Transform -- uid: 522 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 60 - type: Transform -- uid: 523 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-5.5 - parent: 60 - type: Transform -- uid: 524 - type: ReinforcedWindow - components: - - pos: -5.5,7.5 - parent: 60 - type: Transform -- uid: 525 - type: ReinforcedWindow - components: - - pos: 5.5,7.5 - parent: 60 - type: Transform -- uid: 526 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-24.5 - parent: 60 - type: Transform -- uid: 527 - type: WallSolid - components: - - pos: -25.5,6.5 - parent: 60 - type: Transform -- uid: 528 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-21.5 - parent: 60 - type: Transform -- uid: 529 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 60 - type: Transform -- uid: 530 - type: ClothingBackpackDuffelSurgeryFilled - components: - - pos: 38.489937,-12.380952 - parent: 60 - type: Transform -- uid: 531 - type: CrateFreezer - components: - - pos: 40.5,-14.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 532 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 533 - type: Table - components: - - pos: 39.5,-14.5 - parent: 60 - type: Transform -- uid: 534 - type: Grille - components: - - pos: 40.5,-15.5 - parent: 60 - type: Transform -- uid: 535 - type: WallReinforced - components: - - pos: -4.5,-21.5 - parent: 60 - type: Transform -- uid: 536 - type: Grille - components: - - pos: -13.5,-18.5 - parent: 60 - type: Transform -- uid: 537 - type: Grille - components: - - pos: 38.5,-15.5 - parent: 60 - type: Transform -- uid: 538 - type: Grille - components: - - pos: -5.5,-21.5 - parent: 60 - type: Transform -- uid: 539 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 60 - type: Transform -- uid: 540 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 60 - type: Transform -- uid: 541 - type: ReinforcedWindow - components: - - pos: -13.5,-18.5 - parent: 60 - type: Transform -- uid: 542 - type: WallReinforced - components: - - pos: -13.5,-19.5 - parent: 60 - type: Transform -- uid: 543 - type: WallReinforced - components: - - pos: -13.5,-17.5 - parent: 60 - type: Transform -- uid: 544 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: -13.495151,-21.717422 - parent: 60 - type: Transform -- uid: 545 - type: WallReinforced - components: - - pos: -13.5,-16.5 - parent: 60 - type: Transform -- uid: 546 - type: ReinforcedWindow - components: - - pos: -13.5,-14.5 - parent: 60 - type: Transform -- uid: 547 - type: WallReinforced - components: - - pos: -13.5,-15.5 - parent: 60 - type: Transform -- uid: 548 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 549 - type: ReinforcedWindow - components: - - pos: -13.5,-13.5 - parent: 60 - type: Transform -- uid: 550 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-10.5 - parent: 60 - type: Transform -- uid: 551 - type: CableApcExtension - components: - - pos: -10.5,2.5 - parent: 60 - type: Transform -- uid: 552 - type: ShuttersNormalOpen - components: - - pos: -17.5,-13.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1485 - type: SignalReceiver -- uid: 553 - type: WallReinforced - components: - - pos: -13.5,-2.5 - parent: 60 - type: Transform -- uid: 554 - type: WallReinforced - components: - - pos: -13.5,-8.5 - parent: 60 - type: Transform -- uid: 555 - type: AirlockMaintLocked - components: - - pos: -43.5,26.5 - parent: 60 - type: Transform -- uid: 556 - type: ReinforcedWindow - components: - - pos: -13.5,-3.5 - parent: 60 - type: Transform -- uid: 557 - type: CableApcExtension - components: - - pos: -7.5,5.5 - parent: 60 - type: Transform -- uid: 558 - type: WallReinforced - components: - - pos: -13.5,-7.5 - parent: 60 - type: Transform -- uid: 559 - type: ReinforcedWindow - components: - - pos: -13.5,-4.5 - parent: 60 - type: Transform -- uid: 560 - type: ReinforcedWindow - components: - - pos: -13.5,-5.5 - parent: 60 - type: Transform -- uid: 561 - type: CableApcExtension - components: - - pos: -8.5,2.5 - parent: 60 - type: Transform -- uid: 562 - type: ReinforcedWindow - components: - - pos: -17.5,-10.5 - parent: 60 - type: Transform -- uid: 563 - type: ReinforcedWindow - components: - - pos: -68.5,11.5 - parent: 60 - type: Transform -- uid: 564 - type: CableMV - components: - - pos: -17.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 565 - type: WallReinforced - components: - - pos: -12.5,-2.5 - parent: 60 - type: Transform -- uid: 566 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -13.5,1.5 - parent: 60 - type: Transform -- uid: 567 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -6.5,1.5 - parent: 60 - type: Transform -- uid: 568 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -13.5,4.5 - parent: 60 - type: Transform -- uid: 569 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -13.5,5.5 - parent: 60 - type: Transform -- uid: 570 - type: CableApcExtension - components: - - pos: -10.5,5.5 - parent: 60 - type: Transform -- uid: 571 - type: Grille - components: - - pos: 5.5,-20.5 - parent: 60 - type: Transform -- uid: 572 - type: Grille - components: - - pos: 5.5,-19.5 - parent: 60 - type: Transform -- uid: 573 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-21.5 - parent: 60 - type: Transform -- uid: 574 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-21.5 - parent: 60 - type: Transform -- uid: 575 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 60 - type: Transform -- uid: 576 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 60 - type: Transform -- uid: 577 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-21.5 - parent: 60 - type: Transform -- uid: 578 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-21.5 - parent: 60 - type: Transform -- uid: 579 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-20.5 - parent: 60 - type: Transform -- uid: 580 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-19.5 - parent: 60 - type: Transform -- uid: 581 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-18.5 - parent: 60 - type: Transform -- uid: 582 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-18.5 - parent: 60 - type: Transform -- uid: 583 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-17.5 - parent: 60 - type: Transform -- uid: 584 - type: RandomSpawner - components: - - pos: -2.5,-24.5 - parent: 60 - type: Transform -- uid: 585 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 60 - type: Transform -- uid: 586 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-15.5 - parent: 60 - type: Transform -- uid: 587 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-15.5 - parent: 60 - type: Transform -- uid: 588 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-15.5 - parent: 60 - type: Transform -- uid: 589 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-15.5 - parent: 60 - type: Transform -- uid: 590 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-14.5 - parent: 60 - type: Transform -- uid: 591 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 14.5,-11.5 - parent: 60 - type: Transform -- uid: 592 - type: WaterCooler - components: - - pos: 14.5,-13.5 - parent: 60 - type: Transform -- uid: 593 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-10.5 - parent: 60 - type: Transform -- uid: 594 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 60 - type: Transform -- uid: 595 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 60 - type: Transform -- uid: 596 - type: WallSolid - components: - - pos: 38.5,-35.5 - parent: 60 - type: Transform -- uid: 597 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-8.5 - parent: 60 - type: Transform -- uid: 598 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 60 - type: Transform -- uid: 599 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 60 - type: Transform -- uid: 600 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 60 - type: Transform -- uid: 601 - type: Grille - components: - - pos: 14.5,-3.5 - parent: 60 - type: Transform -- uid: 602 - type: Grille - components: - - pos: 14.5,-2.5 - parent: 60 - type: Transform -- uid: 603 - type: ReinforcedWindow - components: - - pos: 14.5,-4.5 - parent: 60 - type: Transform -- uid: 604 - type: ReinforcedWindow - components: - - pos: -4.5,7.5 - parent: 60 - type: Transform -- uid: 605 - type: ReinforcedWindow - components: - - pos: -2.5,8.5 - parent: 60 - type: Transform -- uid: 606 - type: Grille - components: - - pos: 14.5,-4.5 - parent: 60 - type: Transform -- uid: 607 - type: ReinforcedWindow - components: - - pos: -1.5,8.5 - parent: 60 - type: Transform -- uid: 608 - type: ReinforcedWindow - components: - - pos: -0.5,8.5 - parent: 60 - type: Transform -- uid: 609 - type: ReinforcedWindow - components: - - pos: 1.5,8.5 - parent: 60 - type: Transform -- uid: 610 - type: ReinforcedWindow - components: - - pos: 2.5,8.5 - parent: 60 - type: Transform -- uid: 611 - type: ReinforcedWindow - components: - - pos: 3.5,8.5 - parent: 60 - type: Transform -- uid: 612 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-27.5 - parent: 60 - type: Transform -- uid: 613 - type: ReinforcedWindow - components: - - pos: 6.5,7.5 - parent: 60 - type: Transform -- uid: 614 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-26.5 - parent: 60 - type: Transform -- uid: 615 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-30.5 - parent: 60 - type: Transform -- uid: 616 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-25.5 - parent: 60 - type: Transform -- uid: 617 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -19.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 618 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 619 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 620 - type: WallSolid - components: - - pos: -17.5,-25.5 - parent: 60 - type: Transform -- uid: 621 - type: PosterLegitCleanliness - components: - - pos: 46.5,-26.5 - parent: 60 - type: Transform -- uid: 622 - type: WallSolid - components: - - pos: 38.5,-34.5 - parent: 60 - type: Transform -- uid: 623 - type: PosterContrabandGreyTide - components: - - pos: -1.5,-35.5 - parent: 60 - type: Transform -- uid: 624 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 7.5,6.5 - parent: 60 - type: Transform -- uid: 625 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 7.5,7.5 - parent: 60 - type: Transform -- uid: 626 - type: WallReinforced - components: - - pos: 22.5,22.5 - parent: 60 - type: Transform -- uid: 627 - type: computerBodyScanner - components: - - pos: 40.5,-12.5 - parent: 60 - type: Transform -- uid: 628 - type: CableMV - components: - - pos: -28.5,-16.5 - parent: 60 - type: Transform -- uid: 629 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 19.5,-35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 630 - type: CableApcExtension - components: - - pos: -33.5,-16.5 - parent: 60 - type: Transform -- uid: 631 - type: Grille - components: - - pos: 66.5,-32.5 - parent: 60 - type: Transform -- uid: 632 - type: GasPipeStraight - components: - - pos: -14.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 633 - type: AirlockMedicalLocked - components: - - name: morgue - type: MetaData - - pos: 42.5,-9.5 - parent: 60 - type: Transform -- uid: 634 - type: CableMV - components: - - pos: -35.5,-7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 635 - type: CableMV - components: - - pos: -29.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 636 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -6.5,6.5 - parent: 60 - type: Transform -- uid: 637 - type: ReinforcedWindow - components: - - pos: -9.5,1.5 - parent: 60 - type: Transform -- uid: 638 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: -52.5,49.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 639 - type: WallReinforced - components: - - pos: -7.5,1.5 - parent: 60 - type: Transform -- uid: 640 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -10.5,6.5 - parent: 60 - type: Transform -- uid: 641 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -11.5,6.5 - parent: 60 - type: Transform -- uid: 642 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -12.5,6.5 - parent: 60 - type: Transform -- uid: 643 - type: CableApcExtension - components: - - pos: -9.5,5.5 - parent: 60 - type: Transform -- uid: 644 - type: CableApcExtension - components: - - pos: -11.5,5.5 - parent: 60 - type: Transform -- uid: 645 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 60 - type: Transform -- uid: 646 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 60 - type: Transform -- uid: 647 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-18.5 - parent: 60 - type: Transform -- uid: 648 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 60 - type: Transform -- uid: 649 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 60 - type: Transform -- uid: 650 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-18.5 - parent: 60 - type: Transform -- uid: 651 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-18.5 - parent: 60 - type: Transform -- uid: 652 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-18.5 - parent: 60 - type: Transform -- uid: 653 - type: Table - components: - - pos: 13.5,-20.5 - parent: 60 - type: Transform -- uid: 654 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-18.5 - parent: 60 - type: Transform -- uid: 655 - type: CableMVStack - components: - - pos: 13.470122,-20.417242 - parent: 60 - type: Transform -- uid: 656 - type: SubstationBasic - components: - - name: North Bar Substation - type: MetaData - - pos: 13.5,-19.5 - parent: 60 - type: Transform -- uid: 657 - type: WallReinforced - components: - - pos: 11.5,-21.5 - parent: 60 - type: Transform -- uid: 658 - type: AirlockEngineeringLocked - components: - - name: Storage/Bagel EVA - type: MetaData - - pos: 14.5,-16.5 - parent: 60 - type: Transform -- uid: 659 - type: ClosetToolFilled - components: - - pos: 11.5,-19.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 660 - type: SignElectricalMed - components: - - pos: 10.5,-19.5 - parent: 60 - type: Transform -- uid: 661 - type: RandomSpawner - components: - - pos: 13.5,-20.5 - parent: 60 - type: Transform -- uid: 662 - type: CableApcStack - components: - - pos: 13.360747,-20.339117 - parent: 60 - type: Transform -- uid: 663 - type: Poweredlight - components: - - pos: 3.5,-22.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 664 - type: Poweredlight - components: - - pos: -2.5,-22.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 665 - type: ReinforcedWindow - components: - - pos: 5.5,-20.5 - parent: 60 - type: Transform -- uid: 666 - type: RandomVendingSnacks - components: - - pos: 7.5,-19.5 - parent: 60 - type: Transform -- uid: 667 - type: Grille - components: - - pos: -33.5,-21.5 - parent: 60 - type: Transform -- uid: 668 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-23.5 - parent: 60 - type: Transform -- uid: 669 - type: Chair - components: - - pos: 9.5,-19.5 - parent: 60 - type: Transform -- uid: 670 - type: FirelockGlass - components: - - pos: -1.5,-24.5 - parent: 60 - type: Transform -- uid: 671 - type: FirelockGlass - components: - - pos: -1.5,-22.5 - parent: 60 - type: Transform -- uid: 672 - type: FirelockGlass - components: - - pos: -1.5,-23.5 - parent: 60 - type: Transform -- uid: 673 - type: FirelockGlass - components: - - pos: 2.5,-22.5 - parent: 60 - type: Transform -- uid: 674 - type: FirelockGlass - components: - - pos: 2.5,-23.5 - parent: 60 - type: Transform -- uid: 675 - type: FirelockGlass - components: - - pos: 2.5,-24.5 - parent: 60 - type: Transform -- uid: 676 - type: AirlockGlass - components: - - pos: -0.5,-26.5 - parent: 60 - type: Transform -- uid: 677 - type: AirlockGlass - components: - - pos: 0.5,-26.5 - parent: 60 - type: Transform -- uid: 678 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-39.5 - parent: 60 - type: Transform -- uid: 679 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 680 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-23.5 - parent: 60 - type: Transform -- uid: 681 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-23.5 - parent: 60 - type: Transform -- uid: 682 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-23.5 - parent: 60 - type: Transform -- uid: 683 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-23.5 - parent: 60 - type: Transform -- uid: 684 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-21.5 - parent: 60 - type: Transform -- uid: 685 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-20.5 - parent: 60 - type: Transform -- uid: 686 - type: DisposalTrunk - components: - - pos: 6.5,-19.5 - parent: 60 - type: Transform -- uid: 687 - type: DisposalUnit - components: - - pos: 6.5,-19.5 - parent: 60 - type: Transform -- uid: 688 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-23.5 - parent: 60 - type: Transform -- uid: 689 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 0.5,-40.5 - parent: 60 - type: Transform -- uid: 690 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-37.5 - parent: 60 - type: Transform -- uid: 691 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-38.5 - parent: 60 - type: Transform -- uid: 692 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-35.5 - parent: 60 - type: Transform -- uid: 693 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-36.5 - parent: 60 - type: Transform -- uid: 694 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-33.5 - parent: 60 - type: Transform -- uid: 695 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-34.5 - parent: 60 - type: Transform -- uid: 696 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-32.5 - parent: 60 - type: Transform -- uid: 697 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-31.5 - parent: 60 - type: Transform -- uid: 698 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-23.5 - parent: 60 - type: Transform -- uid: 699 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-22.5 - parent: 60 - type: Transform -- uid: 700 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-23.5 - parent: 60 - type: Transform -- uid: 701 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-23.5 - parent: 60 - type: Transform -- uid: 702 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-23.5 - parent: 60 - type: Transform -- uid: 703 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-23.5 - parent: 60 - type: Transform -- uid: 704 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-23.5 - parent: 60 - type: Transform -- uid: 705 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-23.5 - parent: 60 - type: Transform -- uid: 706 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-23.5 - parent: 60 - type: Transform -- uid: 707 - type: RandomSpawner - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 60 - type: Transform -- uid: 708 - type: SignBridge - components: - - pos: 2.5,-1.5 - parent: 60 - type: Transform -- uid: 709 - type: SignDirectionalSci - components: - - rot: -1.5707963267948966 rad - pos: -2.5056667,-21.711515 - parent: 60 - type: Transform -- uid: 710 - type: SignDirectionalSec - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 60 - type: Transform -- uid: 711 - type: SignDirectionalGravity - components: - - rot: 3.141592653589793 rad - pos: -13.495151,-21.295547 - parent: 60 - type: Transform -- uid: 712 - type: SignDirectionalSupply - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-21.5 - parent: 60 - type: Transform -- uid: 713 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -38.5,10.5 - parent: 60 - type: Transform -- uid: 714 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -36.5,8.5 - parent: 60 - type: Transform -- uid: 715 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -38.5,11.5 - parent: 60 - type: Transform -- uid: 716 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 717 - type: WallReinforced - components: - - pos: -68.5,5.5 - parent: 60 - type: Transform -- uid: 718 - type: CableMV - components: - - pos: -56.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 719 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -22.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 720 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 721 - type: Grille - components: - - pos: -35.5,-10.5 - parent: 60 - type: Transform -- uid: 722 - type: AirlockGlass - components: - - pos: 18.5,7.5 - parent: 60 - type: Transform -- uid: 723 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: 14.5,-21.5 - parent: 60 - type: Transform -- uid: 724 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: 3.4964921,-21.28964 - parent: 60 - type: Transform -- uid: 725 - type: WallSolid - components: - - pos: -10.5,-29.5 - parent: 60 - type: Transform -- uid: 726 - type: WallSolid - components: - - pos: -13.5,-25.5 - parent: 60 - type: Transform -- uid: 727 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -18.5,-30.5 - parent: 60 - type: Transform -- uid: 728 - type: SpawnVehicleJanicart - components: - - pos: -3.5,-26.5 - parent: 60 - type: Transform -- uid: 729 - type: ClosetJanitorFilled - components: - - pos: -8.5,-26.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 730 - type: Table - components: - - pos: -6.5,-28.5 - parent: 60 - type: Transform -- uid: 731 - type: WallSolid - components: - - pos: 2.5,-25.5 - parent: 60 - type: Transform -- uid: 732 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-28.5 - parent: 60 - type: Transform -- uid: 733 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 60 - type: Transform -- uid: 734 - type: CrateServiceJanitorialSupplies - components: - - pos: -7.5,-28.5 - parent: 60 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 735 - type: GasPipeStraight - components: - - pos: 30.5,-31.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 736 - type: AirlockGlass - components: - - pos: 13.5,-25.5 - parent: 60 - type: Transform -- uid: 737 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 60 - type: Transform -- uid: 738 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-25.5 - parent: 60 - type: Transform -- uid: 739 - type: Chair - components: - - pos: 38.5,-22.5 - parent: 60 - type: Transform -- uid: 740 - type: DisposalJunction - components: - - pos: 0.5,-22.5 - parent: 60 - type: Transform -- uid: 741 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-23.5 - parent: 60 - type: Transform -- uid: 742 - type: PosterLegitCleanliness - components: - - pos: -7.5,-25.5 - parent: 60 - type: Transform -- uid: 743 - type: WallSolid - components: - - pos: -6.5,-29.5 - parent: 60 - type: Transform -- uid: 744 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -1.5,-27.5 - parent: 60 - type: Transform -- uid: 745 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -1.5,-26.5 - parent: 60 - type: Transform -- uid: 746 - type: AirlockJanitorLocked - components: - - name: Janitor's Closet - type: MetaData - - pos: -9.5,-25.5 - parent: 60 - type: Transform -- uid: 747 - type: WallSolid - components: - - pos: -1.5,-25.5 - parent: 60 - type: Transform -- uid: 748 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-23.5 - parent: 60 - type: Transform -- uid: 749 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-23.5 - parent: 60 - type: Transform -- uid: 750 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-23.5 - parent: 60 - type: Transform -- uid: 751 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-23.5 - parent: 60 - type: Transform -- uid: 752 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 60 - type: Transform -- uid: 753 - type: WallSolid - components: - - pos: -17.5,-32.5 - parent: 60 - type: Transform -- uid: 754 - type: WallSolid - components: - - pos: -15.5,-32.5 - parent: 60 - type: Transform -- uid: 755 - type: Table - components: - - pos: -5.5,-28.5 - parent: 60 - type: Transform -- uid: 756 - type: WallSolid - components: - - pos: -17.5,-27.5 - parent: 60 - type: Transform -- uid: 757 - type: WallSolidRust - components: - - pos: -14.5,-27.5 - parent: 60 - type: Transform -- uid: 758 - type: AirlockMaintLocked - components: - - pos: -15.5,-25.5 - parent: 60 - type: Transform -- uid: 759 - type: WallSolid - components: - - pos: -12.5,-27.5 - parent: 60 - type: Transform -- uid: 760 - type: WallSolid - components: - - pos: -12.5,-25.5 - parent: 60 - type: Transform -- uid: 761 - type: WallSolid - components: - - pos: -12.5,-28.5 - parent: 60 - type: Transform -- uid: 762 - type: Chair - components: - - pos: 40.5,-22.5 - parent: 60 - type: Transform -- uid: 763 - type: WallSolid - components: - - pos: -14.5,-25.5 - parent: 60 - type: Transform -- uid: 764 - type: GasPipeStraight - components: - - pos: -27.5,-17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 765 - type: WallReinforced - components: - - pos: -13.5,-20.5 - parent: 60 - type: Transform -- uid: 766 - type: CableMV - components: - - pos: -31.5,-5.5 - parent: 60 - type: Transform -- uid: 767 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-10.5 - parent: 60 - type: Transform -- uid: 768 - type: ReinforcedWindow - components: - - pos: 5.5,-19.5 - parent: 60 - type: Transform -- uid: 769 - type: WallReinforced - components: - - pos: -13.5,-11.5 - parent: 60 - type: Transform -- uid: 770 - type: WallReinforced - components: - - pos: -21.5,-27.5 - parent: 60 - type: Transform -- uid: 771 - type: Cautery - components: - - pos: 39.41481,-14.341514 - parent: 60 - type: Transform -- uid: 772 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: 41.5,-12.5 - parent: 60 - type: Transform -- uid: 773 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-7.5 - parent: 60 - type: Transform -- uid: 774 - type: CableMV - components: - - pos: -34.5,-6.5 - parent: 60 - type: Transform -- uid: 775 - type: WallSolid - components: - - pos: -1.5,-31.5 - parent: 60 - type: Transform -- uid: 776 - type: CableMV - components: - - pos: -29.5,-16.5 - parent: 60 - type: Transform -- uid: 777 - type: CableMV - components: - - pos: -22.5,-14.5 - parent: 60 - type: Transform -- uid: 778 - type: CableApcExtension - components: - - pos: -32.5,-15.5 - parent: 60 - type: Transform -- uid: 779 - type: CableMV - components: - - pos: -27.5,-5.5 - parent: 60 - type: Transform -- uid: 780 - type: FirelockGlass - components: - - pos: -35.5,7.5 - parent: 60 - type: Transform -- uid: 781 - type: CableApcExtension - components: - - pos: -32.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 782 - type: CableMV - components: - - pos: -35.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 783 - type: CableMV - components: - - pos: -34.5,-12.5 - parent: 60 - type: Transform -- uid: 784 - type: WallReinforced - components: - - pos: -20.5,-5.5 - parent: 60 - type: Transform -- uid: 785 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-12.5 - parent: 60 - type: Transform -- uid: 786 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-11.5 - parent: 60 - type: Transform -- uid: 787 - type: ReinforcedWindow - components: - - pos: -12.5,-0.5 - parent: 60 - type: Transform -- uid: 788 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 789 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-14.5 - parent: 60 - type: Transform -- uid: 790 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-13.5 - parent: 60 - type: Transform -- uid: 791 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-15.5 - parent: 60 - type: Transform -- uid: 792 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 793 - type: CableMV - components: - - pos: -35.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 794 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 795 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 796 - type: GasPipeTJunction - components: - - pos: -18.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 797 - type: ReinforcedWindow - components: - - pos: -17.5,12.5 - parent: 60 - type: Transform -- uid: 798 - type: ReinforcedWindow - components: - - pos: -17.5,11.5 - parent: 60 - type: Transform -- uid: 799 - type: PosterContrabandRIPBadger - components: - - pos: -5.5,12.5 - parent: 60 - type: Transform -- uid: 800 - type: WallSolid - components: - - pos: -13.5,19.5 - parent: 60 - type: Transform -- uid: 801 - type: WallSolid - components: - - pos: -13.5,20.5 - parent: 60 - type: Transform -- uid: 802 - type: WallSolid - components: - - pos: -13.5,21.5 - parent: 60 - type: Transform -- uid: 803 - type: WallSolid - components: - - pos: -13.5,18.5 - parent: 60 - type: Transform -- uid: 804 - type: WallSolid - components: - - pos: -13.5,22.5 - parent: 60 - type: Transform -- uid: 805 - type: BedsheetSpawner - components: - - pos: -6.5,24.5 - parent: 60 - type: Transform -- uid: 806 - type: Bed - components: - - pos: -6.5,24.5 - parent: 60 - type: Transform -- uid: 807 - type: CableHV - components: - - pos: -10.5,27.5 - parent: 60 - type: Transform -- uid: 808 - type: Grille - components: - - pos: -1.5,8.5 - parent: 60 - type: Transform -- uid: 809 - type: WallReinforced - components: - - pos: 13.5,-10.5 - parent: 60 - type: Transform -- uid: 810 - type: Grille - components: - - pos: 13.5,-13.5 - parent: 60 - type: Transform -- uid: 811 - type: ReinforcedWindow - components: - - pos: 13.5,-12.5 - parent: 60 - type: Transform -- uid: 812 - type: ReinforcedWindow - components: - - pos: 13.5,-11.5 - parent: 60 - type: Transform -- uid: 813 - type: CableMV - components: - - pos: -22.5,-5.5 - parent: 60 - type: Transform -- uid: 814 - type: CableMV - components: - - pos: -58.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 815 - type: ReinforcedWindow - components: - - pos: 13.5,-13.5 - parent: 60 - type: Transform -- uid: 816 - type: Grille - components: - - pos: -2.5,8.5 - parent: 60 - type: Transform -- uid: 817 - type: RandomSpawner - components: - - pos: 47.5,0.5 - parent: 60 - type: Transform -- uid: 818 - type: ShuttersNormalOpen - components: - - pos: 38.5,-21.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7070 - type: SignalReceiver -- uid: 819 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 14.5,10.5 - parent: 60 - type: Transform -- uid: 820 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 13.5,10.5 - parent: 60 - type: Transform -- uid: 821 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 12.5,10.5 - parent: 60 - type: Transform -- uid: 822 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 11.5,10.5 - parent: 60 - type: Transform -- uid: 823 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 8.5,10.5 - parent: 60 - type: Transform -- uid: 824 - type: DisposalJunctionFlipped - components: - - pos: 16.5,9.5 - parent: 60 - type: Transform -- uid: 825 - type: Table - components: - - pos: 39.5,-10.5 - parent: 60 - type: Transform -- uid: 826 - type: DisposalPipe - components: - - pos: 16.5,10.5 - parent: 60 - type: Transform -- uid: 827 - type: HighSecCommandLocked - components: - - pos: -13.5,3.5 - parent: 60 - type: Transform -- uid: 828 - type: TableReinforced - components: - - pos: -66.5,9.5 - parent: 60 - type: Transform -- uid: 829 - type: Chair - components: - - pos: -67.5,8.5 - parent: 60 - type: Transform -- uid: 830 - type: WallSolid - components: - - pos: 31.5,-10.5 - parent: 60 - type: Transform -- uid: 831 - type: TableReinforced - components: - - pos: -64.5,9.5 - parent: 60 - type: Transform -- uid: 832 - type: TableReinforced - components: - - pos: -65.5,9.5 - parent: 60 - type: Transform -- uid: 833 - type: WallReinforced - components: - - pos: -67.5,-2.5 - parent: 60 - type: Transform -- uid: 834 - type: APCBasic - components: - - pos: -6.5,-29.5 - parent: 60 - type: Transform - - startingCharge: 12000 - type: Battery -- uid: 835 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 836 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-19.5 - parent: 60 - type: Transform -- uid: 837 - type: Grille - components: - - pos: -26.5,-17.5 - parent: 60 - type: Transform -- uid: 838 - type: WallReinforced - components: - - pos: -22.5,-21.5 - parent: 60 - type: Transform -- uid: 839 - type: WallReinforced - components: - - pos: -20.5,-11.5 - parent: 60 - type: Transform -- uid: 840 - type: ReinforcedWindow - components: - - pos: -20.5,-7.5 - parent: 60 - type: Transform -- uid: 841 - type: WallSolid - components: - - pos: -34.5,-8.5 - parent: 60 - type: Transform -- uid: 842 - type: WallSolid - components: - - pos: -18.5,-11.5 - parent: 60 - type: Transform -- uid: 843 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-6.5 - parent: 60 - type: Transform -- uid: 844 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-12.5 - parent: 60 - type: Transform -- uid: 845 - type: ReinforcedWindow - components: - - pos: -29.5,-8.5 - parent: 60 - type: Transform -- uid: 846 - type: WindoorArmoryLocked - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-9.5 - parent: 60 - type: Transform -- uid: 847 - type: WallSolid - components: - - pos: -20.5,-25.5 - parent: 60 - type: Transform -- uid: 848 - type: WallSolid - components: - - pos: -19.5,-25.5 - parent: 60 - type: Transform -- uid: 849 - type: WallSolid - components: - - pos: -18.5,-25.5 - parent: 60 - type: Transform -- uid: 850 - type: WallSolid - components: - - pos: -16.5,-25.5 - parent: 60 - type: Transform -- uid: 851 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-23.5 - parent: 60 - type: Transform -- uid: 852 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-23.5 - parent: 60 - type: Transform -- uid: 853 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-23.5 - parent: 60 - type: Transform -- uid: 854 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-23.5 - parent: 60 - type: Transform -- uid: 855 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-23.5 - parent: 60 - type: Transform -- uid: 856 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 857 - type: PowerCellRecharger - components: - - pos: 0.5,20.5 - parent: 60 - type: Transform -- uid: 858 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-23.5 - parent: 60 - type: Transform -- uid: 859 - type: AirlockGlass - components: - - pos: -12.5,-22.5 - parent: 60 - type: Transform -- uid: 860 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-23.5 - parent: 60 - type: Transform -- uid: 861 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-23.5 - parent: 60 - type: Transform -- uid: 862 - type: DisposalPipe - components: - - pos: -4.5,-25.5 - parent: 60 - type: Transform -- uid: 863 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 60 - type: Transform -- uid: 864 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-26.5 - parent: 60 - type: Transform -- uid: 865 - type: DisposalUnit - components: - - pos: -5.5,-26.5 - parent: 60 - type: Transform -- uid: 866 - type: WallReinforced - components: - - pos: 8.5,-26.5 - parent: 60 - type: Transform -- uid: 867 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-29.5 - parent: 60 - type: Transform -- uid: 868 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,-28.5 - parent: 60 - type: Transform -- uid: 869 - type: WallSolid - components: - - pos: 49.5,-34.5 - parent: 60 - type: Transform -- uid: 870 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 871 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 872 - type: GasPipeFourway - components: - - pos: 44.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 873 - type: CableApcExtension - components: - - pos: -60.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 874 - type: GasPipeStraight - components: - - pos: -3.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 875 - type: GasPipeStraight - components: - - pos: -3.5,-24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 876 - type: CrateMedicalSurgery - components: - - pos: 41.5,-14.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 877 - type: GasPipeTJunction - components: - - pos: -4.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 878 - type: GasPipeTJunction - components: - - pos: -8.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 879 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 880 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 881 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 882 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-25.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 883 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-26.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 884 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-25.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 885 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-26.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 886 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 887 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -10.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 888 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 889 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 890 - type: GasPipeStraight - components: - - pos: -9.5,-24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 891 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 892 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 893 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 894 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 895 - type: CableMV - components: - - pos: -9.5,-15.5 - parent: 60 - type: Transform -- uid: 896 - type: GasPipeTJunction - components: - - pos: -9.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 897 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 898 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 899 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 900 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 901 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 902 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 903 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 904 - type: GasVentScrubber - components: - - pos: -10.5,-23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 905 - type: GasPipeStraight - components: - - pos: -9.5,-25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 906 - type: GasPipeStraight - components: - - pos: -9.5,-26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 907 - type: WallSolid - components: - - pos: -11.5,-25.5 - parent: 60 - type: Transform -- uid: 908 - type: GasPipeStraight - components: - - pos: -3.5,-25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 909 - type: GasPipeStraight - components: - - pos: -3.5,-26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 910 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -3.5,-27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 911 - type: PosterLegitNanotrasenLogo - components: - - pos: -11.5,-25.5 - parent: 60 - type: Transform -- uid: 912 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -8.5,-27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 913 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -4.5,-27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 914 - type: ShuttersNormal - components: - - pos: -3.5,-25.5 - parent: 60 - type: Transform - - inputs: - Open: - - port: Right - uid: 1189 - - port: Left - uid: 1189 - Close: - - port: Middle - uid: 1189 - Toggle: - - port: Pressed - uid: 3017 - type: SignalReceiver -- uid: 915 - type: SpawnPointJanitor - components: - - pos: -6.5,-27.5 - parent: 60 - type: Transform -- uid: 916 - type: SprayBottleSpaceCleaner - components: - - pos: -6.7018414,-28.410858 - parent: 60 - type: Transform -- uid: 917 - type: GasPipeStraight - components: - - pos: 30.5,-30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 918 - type: VehicleKeyJanicart - components: - - pos: -4.5299664,-28.410858 - parent: 60 - type: Transform -- uid: 919 - type: SprayBottleSpaceCleaner - components: - - pos: -6.7018414,-28.238983 - parent: 60 - type: Transform -- uid: 920 - type: ShuttersNormal - components: - - pos: -2.5,-25.5 - parent: 60 - type: Transform - - inputs: - Open: - - port: Right - uid: 1189 - - port: Left - uid: 1189 - Close: - - port: Middle - uid: 1189 - Toggle: - - port: Pressed - uid: 3017 - type: SignalReceiver -- uid: 921 - type: LightReplacer - components: - - pos: -5.6705914,-28.301483 - parent: 60 - type: Transform -- uid: 922 - type: Chair - components: - - pos: 39.5,-22.5 - parent: 60 - type: Transform -- uid: 923 - type: PosterLegitWorkForAFuture - components: - - pos: -1.5,-26.5 - parent: 60 - type: Transform -- uid: 924 - type: AirlockMaintJanitorLocked - components: - - name: Janitor's Maint - type: MetaData - - pos: -9.5,-29.5 - parent: 60 - type: Transform -- uid: 925 - type: SprayBottleSpaceCleaner - components: - - pos: -6.7018414,-28.567108 - parent: 60 - type: Transform -- uid: 926 - type: TrashBag - components: - - pos: -6.1549664,-28.379608 - parent: 60 - type: Transform -- uid: 927 - type: RandomPosterLegit - components: - - pos: 12.5,-21.5 - parent: 60 - type: Transform -- uid: 928 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 929 - type: Lamp - components: - - pos: -11.4531975,-27.495203 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 930 - type: SurveillanceCameraRouterService - components: - - pos: -11.5,-26.5 - parent: 60 - type: Transform -- uid: 931 - type: Grille - components: - - pos: 39.5,-21.5 - parent: 60 - type: Transform -- uid: 932 - type: SignDirectionalSci - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-21.5 - parent: 60 - type: Transform -- uid: 933 - type: SpawnPointChemist - components: - - pos: 39.5,-28.5 - parent: 60 - type: Transform -- uid: 934 - type: Paper - components: - - pos: -10.55104,-28.480585 - parent: 60 - type: Transform -- uid: 935 - type: Pen - components: - - pos: -10.316665,-28.324335 - parent: 60 - type: Transform -- uid: 936 - type: PlantBGoneSpray - components: - - pos: 55.748558,-45.756844 - parent: 60 - type: Transform -- uid: 937 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-27.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 938 - type: TwoWayLever - components: - - pos: -13.5,-42.5 - parent: 60 - type: Transform - - outputs: - Middle: - - port: Off - uid: 7725 - - port: Off - uid: 7724 - - port: Off - uid: 7723 - - port: Off - uid: 3860 - - port: Off - uid: 3894 - - port: Off - uid: 3895 - - port: Off - uid: 3896 - Right: - - port: Reverse - uid: 7725 - - port: Reverse - uid: 7724 - - port: Reverse - uid: 7723 - - port: Reverse - uid: 3860 - - port: Reverse - uid: 3894 - - port: Reverse - uid: 3895 - - port: Reverse - uid: 3896 - Left: - - port: Forward - uid: 7725 - - port: Forward - uid: 7724 - - port: Forward - uid: 7723 - - port: Forward - uid: 3860 - - port: Forward - uid: 3894 - - port: Forward - uid: 3895 - - port: Forward - uid: 3896 - type: SignalTransmitter -- uid: 939 - type: BoxPillCanister - components: - - pos: 38.117302,-32.42313 - parent: 60 - type: Transform -- uid: 940 - type: CableApcExtension - components: - - pos: -65.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 941 - type: ClothingUniformOveralls - components: - - pos: -61.552307,-21.588282 - parent: 60 - type: Transform -- uid: 942 - type: GasPipeFourway - components: - - pos: 45.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 943 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - parallax: BagelStation - type: Parallax -- uid: 944 - type: ScalpelLaser - components: - - pos: 39.35231,-14.575889 - parent: 60 - type: Transform - - nextAttack: 2015.728645 - type: MeleeWeapon -- uid: 945 - type: Retractor - components: - - pos: 38.60231,-14.544639 - parent: 60 - type: Transform -- uid: 946 - type: ClothingHandsGlovesNitrile - components: - - pos: 39.51033,-14.217034 - parent: 60 - type: Transform -- uid: 947 - type: GasPipeBend - components: - - pos: 16.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 948 - type: Table - components: - - pos: -66.5,6.5 - parent: 60 - type: Transform -- uid: 949 - type: Grille - components: - - pos: -67.5,5.5 - parent: 60 - type: Transform -- uid: 950 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 951 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 952 - type: HatBandGold - components: - - pos: -66.48321,13.590916 - parent: 60 - type: Transform -- uid: 953 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 954 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-7.5 - parent: 60 - type: Transform -- uid: 955 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-9.5 - parent: 60 - type: Transform -- uid: 956 - type: Grille - components: - - pos: -72.5,-26.5 - parent: 60 - type: Transform -- uid: 957 - type: WallSolid - components: - - pos: 51.5,-4.5 - parent: 60 - type: Transform -- uid: 958 - type: Rack - components: - - pos: 29.5,-10.5 - parent: 60 - type: Transform -- uid: 959 - type: PosterMapBagel - components: - - pos: -4.5,-52.5 - parent: 60 - type: Transform -- uid: 960 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 961 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 962 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-23.5 - parent: 60 - type: Transform -- uid: 963 - type: Grille - components: - - pos: -20.5,-7.5 - parent: 60 - type: Transform -- uid: 964 - type: AirlockMaintLocked - components: - - pos: -1.5,-30.5 - parent: 60 - type: Transform -- uid: 965 - type: DisposalPipe - components: - - pos: -15.5,-22.5 - parent: 60 - type: Transform -- uid: 966 - type: DisposalPipe - components: - - pos: -15.5,-21.5 - parent: 60 - type: Transform -- uid: 967 - type: DisposalPipe - components: - - pos: -15.5,-20.5 - parent: 60 - type: Transform -- uid: 968 - type: DisposalPipe - components: - - pos: -15.5,-20.5 - parent: 60 - type: Transform -- uid: 969 - type: DisposalPipe - components: - - pos: -15.5,-18.5 - parent: 60 - type: Transform -- uid: 970 - type: DisposalPipe - components: - - pos: -15.5,-19.5 - parent: 60 - type: Transform -- uid: 971 - type: DisposalPipe - components: - - pos: -15.5,-16.5 - parent: 60 - type: Transform -- uid: 972 - type: DisposalPipe - components: - - pos: -15.5,-17.5 - parent: 60 - type: Transform -- uid: 973 - type: DisposalPipe - components: - - pos: -15.5,-15.5 - parent: 60 - type: Transform -- uid: 974 - type: DisposalPipe - components: - - pos: -15.5,-14.5 - parent: 60 - type: Transform -- uid: 975 - type: DisposalPipe - components: - - pos: -15.5,-13.5 - parent: 60 - type: Transform -- uid: 976 - type: DisposalPipe - components: - - pos: -15.5,-12.5 - parent: 60 - type: Transform -- uid: 977 - type: DisposalPipe - components: - - pos: -15.5,-11.5 - parent: 60 - type: Transform -- uid: 978 - type: DisposalPipe - components: - - pos: -15.5,-10.5 - parent: 60 - type: Transform -- uid: 979 - type: DisposalJunctionFlipped - components: - - pos: -15.5,-9.5 - parent: 60 - type: Transform -- uid: 980 - type: DisposalPipe - components: - - pos: -15.5,-8.5 - parent: 60 - type: Transform -- uid: 981 - type: DisposalPipe - components: - - pos: -15.5,-7.5 - parent: 60 - type: Transform -- uid: 982 - type: DisposalPipe - components: - - pos: -15.5,-6.5 - parent: 60 - type: Transform -- uid: 983 - type: DisposalPipe - components: - - pos: -15.5,-5.5 - parent: 60 - type: Transform -- uid: 984 - type: DisposalPipe - components: - - pos: -15.5,-4.5 - parent: 60 - type: Transform -- uid: 985 - type: DisposalPipe - components: - - pos: -15.5,-3.5 - parent: 60 - type: Transform -- uid: 986 - type: DisposalPipe - components: - - pos: -15.5,-1.5 - parent: 60 - type: Transform -- uid: 987 - type: DisposalPipe - components: - - pos: -15.5,-2.5 - parent: 60 - type: Transform -- uid: 988 - type: DisposalPipe - components: - - pos: -15.5,-0.5 - parent: 60 - type: Transform -- uid: 989 - type: DisposalPipe - components: - - pos: -15.5,0.5 - parent: 60 - type: Transform -- uid: 990 - type: DisposalPipe - components: - - pos: -15.5,1.5 - parent: 60 - type: Transform -- uid: 991 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 992 - type: DisposalPipe - components: - - pos: -15.5,3.5 - parent: 60 - type: Transform -- uid: 993 - type: DisposalPipe - components: - - pos: -15.5,4.5 - parent: 60 - type: Transform -- uid: 994 - type: CableHV - components: - - pos: 7.5,-33.5 - parent: 60 - type: Transform -- uid: 995 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 996 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 997 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-23.5 - parent: 60 - type: Transform -- uid: 998 - type: DisposalPipe - components: - - pos: 16.5,-21.5 - parent: 60 - type: Transform -- uid: 999 - type: DisposalPipe - components: - - pos: 16.5,-20.5 - parent: 60 - type: Transform -- uid: 1000 - type: DisposalPipe - components: - - pos: 16.5,-19.5 - parent: 60 - type: Transform -- uid: 1001 - type: DisposalPipe - components: - - pos: 16.5,-18.5 - parent: 60 - type: Transform -- uid: 1002 - type: DisposalPipe - components: - - pos: 16.5,-17.5 - parent: 60 - type: Transform -- uid: 1003 - type: DisposalPipe - components: - - pos: 16.5,-16.5 - parent: 60 - type: Transform -- uid: 1004 - type: DisposalPipe - components: - - pos: 16.5,-15.5 - parent: 60 - type: Transform -- uid: 1005 - type: DisposalPipe - components: - - pos: 16.5,-13.5 - parent: 60 - type: Transform -- uid: 1006 - type: DisposalPipe - components: - - pos: 16.5,-14.5 - parent: 60 - type: Transform -- uid: 1007 - type: DisposalPipe - components: - - pos: 16.5,-12.5 - parent: 60 - type: Transform -- uid: 1008 - type: DisposalPipe - components: - - pos: 16.5,-11.5 - parent: 60 - type: Transform -- uid: 1009 - type: DisposalPipe - components: - - pos: 16.5,-10.5 - parent: 60 - type: Transform -- uid: 1010 - type: DisposalPipe - components: - - pos: 16.5,-9.5 - parent: 60 - type: Transform -- uid: 1011 - type: DisposalPipe - components: - - pos: 16.5,-8.5 - parent: 60 - type: Transform -- uid: 1012 - type: DisposalPipe - components: - - pos: 16.5,-7.5 - parent: 60 - type: Transform -- uid: 1013 - type: DisposalPipe - components: - - pos: 16.5,-6.5 - parent: 60 - type: Transform -- uid: 1014 - type: DisposalPipe - components: - - pos: 16.5,-5.5 - parent: 60 - type: Transform -- uid: 1015 - type: DisposalPipe - components: - - pos: 16.5,-4.5 - parent: 60 - type: Transform -- uid: 1016 - type: DisposalPipe - components: - - pos: 16.5,-3.5 - parent: 60 - type: Transform -- uid: 1017 - type: FirelockGlass - components: - - pos: -35.5,9.5 - parent: 60 - type: Transform -- uid: 1018 - type: DisposalPipe - components: - - pos: 16.5,1.5 - parent: 60 - type: Transform -- uid: 1019 - type: DisposalPipe - components: - - pos: 16.5,-0.5 - parent: 60 - type: Transform -- uid: 1020 - type: DisposalPipe - components: - - pos: 16.5,0.5 - parent: 60 - type: Transform -- uid: 1021 - type: DisposalPipe - components: - - pos: 16.5,2.5 - parent: 60 - type: Transform -- uid: 1022 - type: ShuttersNormalOpen - components: - - rot: 3.141592653589793 rad - pos: -18.5,1.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3741 - type: SignalReceiver -- uid: 1023 - type: DisposalPipe - components: - - pos: 16.5,3.5 - parent: 60 - type: Transform -- uid: 1024 - type: DisposalPipe - components: - - pos: 16.5,4.5 - parent: 60 - type: Transform -- uid: 1025 - type: DisposalJunction - components: - - pos: 16.5,5.5 - parent: 60 - type: Transform -- uid: 1026 - type: DisposalPipe - components: - - pos: 16.5,6.5 - parent: 60 - type: Transform -- uid: 1027 - type: DisposalPipe - components: - - pos: 16.5,7.5 - parent: 60 - type: Transform -- uid: 1028 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-22.5 - parent: 60 - type: Transform -- uid: 1029 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1030 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1031 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1032 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1033 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1034 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1035 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1036 - type: GasPipeTJunction - components: - - pos: 11.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1037 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1038 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1039 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1040 - type: GasPipeFourway - components: - - pos: 15.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1041 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1042 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1043 - type: GasPipeTJunction - components: - - pos: 7.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1044 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1045 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1046 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1047 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 12.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1048 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1049 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1050 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1051 - type: GasPipeTJunction - components: - - pos: 16.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1052 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 17.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1053 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1054 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1055 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1056 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1057 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1058 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1059 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1060 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1061 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1062 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1063 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1064 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1065 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1066 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 9.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1067 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1068 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1069 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1070 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1071 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1072 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1073 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1074 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1075 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1076 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1077 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1078 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1079 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1080 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1081 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1082 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1083 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1084 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1085 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1086 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1087 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1088 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1089 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1090 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1091 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1092 - type: GasPipeStraight - components: - - pos: 17.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1093 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1094 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1095 - type: GasPipeStraight - components: - - pos: 15.5,-1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1096 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 15.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1097 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1098 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1099 - type: WallSolid - components: - - pos: 37.5,-4.5 - parent: 60 - type: Transform -- uid: 1100 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1101 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1102 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1103 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1104 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1105 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1106 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1107 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1108 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1109 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1110 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1111 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1112 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1113 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1114 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -14.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1115 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -16.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1116 - type: GasPipeTJunction - components: - - pos: -24.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1117 - type: WallSolid - components: - - pos: 36.5,-4.5 - parent: 60 - type: Transform -- uid: 1118 - type: CableHV - components: - - pos: 43.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1119 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1120 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1121 - type: Grille - components: - - pos: -67.5,0.5 - parent: 60 - type: Transform -- uid: 1122 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1123 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1124 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1125 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1126 - type: GasPipeStraight - components: - - pos: -16.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1127 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1128 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1129 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1130 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1131 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1132 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1133 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1134 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1135 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1136 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1137 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1138 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1139 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1140 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1141 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1142 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1143 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1144 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1145 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1146 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1147 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1148 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1149 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1150 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1151 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1152 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1153 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1154 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1155 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1156 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1157 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1158 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1159 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1160 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1161 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1162 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1163 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1164 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1165 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1166 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1167 - type: CableApcExtension - components: - - pos: -65.5,10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1168 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1169 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1170 - type: WallSolid - components: - - pos: -62.5,10.5 - parent: 60 - type: Transform -- uid: 1171 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1172 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1173 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1174 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1175 - type: WallSolid - components: - - pos: -35.5,6.5 - parent: 60 - type: Transform -- uid: 1176 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1177 - type: GasPipeFourway - components: - - pos: -16.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1178 - type: WallSolid - components: - - pos: -8.5,-29.5 - parent: 60 - type: Transform -- uid: 1179 - type: WallSolid - components: - - pos: -18.5,-27.5 - parent: 60 - type: Transform -- uid: 1180 - type: WallSolid - components: - - pos: -18.5,-28.5 - parent: 60 - type: Transform -- uid: 1181 - type: WallSolidRust - components: - - pos: -18.5,-29.5 - parent: 60 - type: Transform -- uid: 1182 - type: WeaponLaserCarbine - components: - - pos: -28.497345,1.4258263 - parent: 60 - type: Transform -- uid: 1183 - type: WallSolid - components: - - pos: -18.5,-31.5 - parent: 60 - type: Transform -- uid: 1184 - type: Grille - components: - - pos: 4.5,-26.5 - parent: 60 - type: Transform -- uid: 1185 - type: WallSolid - components: - - pos: -14.5,-31.5 - parent: 60 - type: Transform -- uid: 1186 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 10.5,10.5 - parent: 60 - type: Transform -- uid: 1187 - type: WallSolid - components: - - pos: -14.5,-33.5 - parent: 60 - type: Transform -- uid: 1188 - type: VendingMachineJaniDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,-26.5 - parent: 60 - type: Transform -- uid: 1189 - type: TwoWayLever - components: - - pos: -2.5,-26.5 - parent: 60 - type: Transform - - outputs: - Middle: - - port: Close - uid: 920 - - port: Close - uid: 914 - - port: Close - uid: 7697 - Right: - - port: Open - uid: 920 - - port: Open - uid: 914 - - port: Open - uid: 7697 - Left: - - port: Open - uid: 920 - - port: Open - uid: 914 - - port: Open - uid: 7697 - type: SignalTransmitter -- uid: 1190 - type: WallSolid - components: - - pos: -3.5,-29.5 - parent: 60 - type: Transform -- uid: 1191 - type: FirelockGlass - components: - - pos: -12.5,-30.5 - parent: 60 - type: Transform -- uid: 1192 - type: ReinforcedWindow - components: - - pos: -6.5,-32.5 - parent: 60 - type: Transform -- uid: 1193 - type: ReinforcedWindow - components: - - pos: -7.5,-32.5 - parent: 60 - type: Transform -- uid: 1194 - type: ReinforcedWindow - components: - - pos: -8.5,-32.5 - parent: 60 - type: Transform -- uid: 1195 - type: MopBucket - components: - - pos: -2.5178943,-28.468857 - parent: 60 - type: Transform -- uid: 1196 - type: JanitorialTrolley - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-28.5 - parent: 60 - type: Transform -- uid: 1197 - type: MopBucket - components: - - pos: -2.5178943,-27.531357 - parent: 60 - type: Transform -- uid: 1198 - type: FirelockGlass - components: - - pos: 16.5,-8.5 - parent: 60 - type: Transform -- uid: 1199 - type: PoweredSmallLight - components: - - pos: -8.5,-30.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1200 - type: CableApcExtension - components: - - pos: -63.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1201 - type: TransmitterSubspaceStockPart - components: - - pos: -63.585518,9.577888 - parent: 60 - type: Transform -- uid: 1202 - type: ClothingNeckTieRed - components: - - pos: -63.651737,-1.4881696 - parent: 60 - type: Transform -- uid: 1203 - type: CableHV - components: - - pos: -78.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1204 - type: CableHV - components: - - pos: -76.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1205 - type: AirlockMedicalLocked - components: - - name: surgery - type: MetaData - - pos: 42.5,-13.5 - parent: 60 - type: Transform -- uid: 1206 - type: Table - components: - - pos: 38.5,-12.5 - parent: 60 - type: Transform -- uid: 1207 - type: WallReinforced - components: - - pos: 2.5,-26.5 - parent: 60 - type: Transform -- uid: 1208 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-41.5 - parent: 60 - type: Transform -- uid: 1209 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1210 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-20.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1211 - type: PoweredSmallLight - components: - - pos: 26.5,-11.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1212 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-41.5 - parent: 60 - type: Transform -- uid: 1213 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-41.5 - parent: 60 - type: Transform -- uid: 1214 - type: GasPipeStraight - components: - - pos: -14.5,4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1215 - type: GasPipeStraight - components: - - pos: -16.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1216 - type: GasPipeStraight - components: - - pos: -14.5,6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1217 - type: GasPipeTJunction - components: - - pos: -14.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1218 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1219 - type: GasPipeStraight - components: - - pos: -16.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1220 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1221 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1222 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1223 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1224 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1225 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -9.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1226 - type: GasPipeTJunction - components: - - pos: -10.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1227 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1228 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1229 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -8.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1230 - type: CableApcExtension - components: - - pos: -59.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1231 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1232 - type: WallReinforced - components: - - pos: -3.5,7.5 - parent: 60 - type: Transform -- uid: 1233 - type: Grille - components: - - pos: -4.5,7.5 - parent: 60 - type: Transform -- uid: 1234 - type: WallReinforced - components: - - pos: -1.5,12.5 - parent: 60 - type: Transform -- uid: 1235 - type: WallReinforced - components: - - pos: -2.5,12.5 - parent: 60 - type: Transform -- uid: 1236 - type: DisposalPipe - components: - - pos: 0.5,-17.5 - parent: 60 - type: Transform -- uid: 1237 - type: Grille - components: - - pos: -0.5,8.5 - parent: 60 - type: Transform -- uid: 1238 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 26.5,-22.5 - parent: 60 - type: Transform -- uid: 1239 - type: WallReinforced - components: - - pos: -3.5,12.5 - parent: 60 - type: Transform -- uid: 1240 - type: Chair - components: - - pos: 28.5,-22.5 - parent: 60 - type: Transform -- uid: 1241 - type: Grille - components: - - pos: 3.5,8.5 - parent: 60 - type: Transform -- uid: 1242 - type: Chair - components: - - pos: 25.5,-22.5 - parent: 60 - type: Transform -- uid: 1243 - type: Grille - components: - - pos: 2.5,8.5 - parent: 60 - type: Transform -- uid: 1244 - type: SignHead - components: - - pos: 2.5,-25.5 - parent: 60 - type: Transform -- uid: 1245 - type: WallReinforced - components: - - pos: 4.5,7.5 - parent: 60 - type: Transform -- uid: 1246 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1247 - type: Grille - components: - - pos: 1.5,8.5 - parent: 60 - type: Transform -- uid: 1248 - type: WallSolid - components: - - pos: -50.5,-14.5 - parent: 60 - type: Transform -- uid: 1249 - type: Grille - components: - - pos: 5.5,7.5 - parent: 60 - type: Transform -- uid: 1250 - type: RandomPosterAny - components: - - pos: -54.5,-21.5 - parent: 60 - type: Transform -- uid: 1251 - type: Grille - components: - - pos: 6.5,7.5 - parent: 60 - type: Transform -- uid: 1252 - type: CableApcExtension - components: - - pos: -56.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1253 - type: WallReinforced - components: - - pos: 0.5,8.5 - parent: 60 - type: Transform -- uid: 1254 - type: SignDirectionalSolar - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-17.5 - parent: 60 - type: Transform -- uid: 1255 - type: WallReinforced - components: - - pos: -5.5,11.5 - parent: 60 - type: Transform -- uid: 1256 - type: WallReinforced - components: - - pos: 6.5,-34.5 - parent: 60 - type: Transform -- uid: 1257 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1258 - type: CableHV - components: - - pos: 30.5,-55.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1259 - type: GasPipeTJunction - components: - - pos: 13.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1260 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1261 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1262 - type: GasPipeTJunction - components: - - pos: 10.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1263 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1264 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1265 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 12.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1266 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1267 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1268 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1269 - type: GasPipeTJunction - components: - - pos: 9.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1270 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1271 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1272 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1273 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 15.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1274 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1275 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1276 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 17.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1277 - type: DisposalJunction - components: - - pos: 16.5,8.5 - parent: 60 - type: Transform -- uid: 1278 - type: ChairOfficeDark - components: - - pos: -54.5,13.5 - parent: 60 - type: Transform -- uid: 1279 - type: PaperBin5 - components: - - pos: -53.5,10.5 - parent: 60 - type: Transform -- uid: 1280 - type: AirlockGlass - components: - - pos: -18.5,7.5 - parent: 60 - type: Transform -- uid: 1281 - type: GasPipeStraight - components: - - pos: -16.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1282 - type: WallSolid - components: - - pos: -62.5,49.5 - parent: 60 - type: Transform -- uid: 1283 - type: WallSolid - components: - - pos: -63.5,49.5 - parent: 60 - type: Transform -- uid: 1284 - type: WallSolid - components: - - pos: -64.5,49.5 - parent: 60 - type: Transform -- uid: 1285 - type: Window - components: - - pos: -60.5,-8.5 - parent: 60 - type: Transform -- uid: 1286 - type: Grille - components: - - pos: -5.5,7.5 - parent: 60 - type: Transform -- uid: 1287 - type: SolarPanel - components: - - pos: -80.5,-24.5 - parent: 60 - type: Transform -- uid: 1288 - type: ClothingHeadHatCone - components: - - pos: -44.225258,-31.10624 - parent: 60 - type: Transform -- uid: 1289 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-23.5 - parent: 60 - type: Transform -- uid: 1290 - type: WallReinforced - components: - - pos: 5.5,11.5 - parent: 60 - type: Transform -- uid: 1291 - type: ClothingShoesSlippers - components: - - pos: -42.79365,7.17041 - parent: 60 - type: Transform -- uid: 1292 - type: WallReinforced - components: - - pos: 4.5,12.5 - parent: 60 - type: Transform -- uid: 1293 - type: WallReinforced - components: - - pos: 3.5,12.5 - parent: 60 - type: Transform -- uid: 1294 - type: WallReinforced - components: - - pos: 2.5,12.5 - parent: 60 - type: Transform -- uid: 1295 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -54.5,2.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1296 - type: CryostasisBeaker - components: - - name: Antique Cryostasis Beaker - type: MetaData - - pos: -40.48115,9.579285 - parent: 60 - type: Transform -- uid: 1297 - type: Grille - components: - - pos: -5.5,-19.5 - parent: 60 - type: Transform -- uid: 1298 - type: WallReinforced - components: - - pos: -4.5,11.5 - parent: 60 - type: Transform -- uid: 1299 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,8.5 - parent: 60 - type: Transform -- uid: 1300 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,8.5 - parent: 60 - type: Transform -- uid: 1301 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,8.5 - parent: 60 - type: Transform -- uid: 1302 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,8.5 - parent: 60 - type: Transform -- uid: 1303 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,8.5 - parent: 60 - type: Transform -- uid: 1304 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,8.5 - parent: 60 - type: Transform -- uid: 1305 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,8.5 - parent: 60 - type: Transform -- uid: 1306 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1307 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-27.5 - parent: 60 - type: Transform -- uid: 1308 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1309 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 4.5,-32.5 - parent: 60 - type: Transform -- uid: 1310 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-30.5 - parent: 60 - type: Transform -- uid: 1311 - type: AirlockMaintHOPLocked - components: - - name: HoP Maint - type: MetaData - - pos: 7.5,-33.5 - parent: 60 - type: Transform -- uid: 1312 - type: WallReinforced - components: - - pos: 8.5,-33.5 - parent: 60 - type: Transform -- uid: 1313 - type: WallReinforced - components: - - pos: 9.5,-32.5 - parent: 60 - type: Transform -- uid: 1314 - type: WallReinforced - components: - - pos: 2.5,-33.5 - parent: 60 - type: Transform -- uid: 1315 - type: WallReinforced - components: - - pos: 9.5,-33.5 - parent: 60 - type: Transform -- uid: 1316 - type: WallReinforced - components: - - pos: 2.5,-32.5 - parent: 60 - type: Transform -- uid: 1317 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-31.5 - parent: 60 - type: Transform -- uid: 1318 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-30.5 - parent: 60 - type: Transform -- uid: 1319 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-29.5 - parent: 60 - type: Transform -- uid: 1320 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-28.5 - parent: 60 - type: Transform -- uid: 1321 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-26.5 - parent: 60 - type: Transform -- uid: 1322 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-27.5 - parent: 60 - type: Transform -- uid: 1323 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-25.5 - parent: 60 - type: Transform -- uid: 1324 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-29.5 - parent: 60 - type: Transform -- uid: 1325 - type: DisposalTrunk - components: - - pos: 3.5,-27.5 - parent: 60 - type: Transform -- uid: 1326 - type: WallReinforced - components: - - pos: -63.5,-2.5 - parent: 60 - type: Transform -- uid: 1327 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,-34.5 - parent: 60 - type: Transform -- uid: 1328 - type: WallSolid - components: - - pos: 6.5,-32.5 - parent: 60 - type: Transform -- uid: 1329 - type: ClothingOuterHardsuitEVA - components: - - pos: 3.5,-36.5 - parent: 60 - type: Transform -- uid: 1330 - type: Grille - components: - - pos: -64.5,-9.5 - parent: 60 - type: Transform -- uid: 1331 - type: Grille - components: - - pos: -64.5,-12.5 - parent: 60 - type: Transform -- uid: 1332 - type: WallSolid - components: - - pos: 6.5,-30.5 - parent: 60 - type: Transform -- uid: 1333 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 19.5,-30.5 - parent: 60 - type: Transform -- uid: 1334 - type: WallSolid - components: - - pos: 8.5,-30.5 - parent: 60 - type: Transform -- uid: 1335 - type: Grille - components: - - pos: 5.5,-26.5 - parent: 60 - type: Transform -- uid: 1336 - type: Grille - components: - - pos: 6.5,-26.5 - parent: 60 - type: Transform -- uid: 1337 - type: ReinforcedWindow - components: - - pos: 6.5,-26.5 - parent: 60 - type: Transform -- uid: 1338 - type: ReinforcedWindow - components: - - pos: 5.5,-26.5 - parent: 60 - type: Transform -- uid: 1339 - type: TableReinforced - components: - - pos: 7.5,-26.5 - parent: 60 - type: Transform -- uid: 1340 - type: WindoorHeadOfPersonnelLocked - components: - - pos: 7.5,-26.5 - parent: 60 - type: Transform -- uid: 1341 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: 7.5,-26.5 - parent: 60 - type: Transform -- uid: 1342 - type: CableApcExtension - components: - - pos: -61.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1343 - type: WallReinforced - components: - - pos: 6.5,-33.5 - parent: 60 - type: Transform -- uid: 1344 - type: CableApcExtension - components: - - pos: -58.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1345 - type: WindowReinforcedDirectional - components: - - pos: 4.5,-24.5 - parent: 60 - type: Transform -- uid: 1346 - type: WindowReinforcedDirectional - components: - - pos: 5.5,-24.5 - parent: 60 - type: Transform -- uid: 1347 - type: WindowReinforcedDirectional - components: - - pos: 6.5,-24.5 - parent: 60 - type: Transform -- uid: 1348 - type: WindowReinforcedDirectional - components: - - pos: 7.5,-24.5 - parent: 60 - type: Transform -- uid: 1349 - type: Windoor - components: - - pos: 8.5,-24.5 - parent: 60 - type: Transform -- uid: 1350 - type: Windoor - components: - - pos: 3.5,-24.5 - parent: 60 - type: Transform -- uid: 1351 - type: DisposalUnit - components: - - pos: 3.5,-27.5 - parent: 60 - type: Transform -- uid: 1352 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-30.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver -- uid: 1353 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-31.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver -- uid: 1354 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-32.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver -- uid: 1355 - type: WallReinforced - components: - - pos: -64.5,-16.5 - parent: 60 - type: Transform -- uid: 1356 - type: CableApcExtension - components: - - pos: -56.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1357 - type: ShuttersNormalOpen - components: - - pos: 14.5,-29.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver -- uid: 1358 - type: CableApcExtension - components: - - pos: -55.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1359 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1360 - type: CableApcExtension - components: - - pos: -57.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1361 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-13.5 - parent: 60 - type: Transform -- uid: 1362 - type: Catwalk - components: - - pos: -61.5,-18.5 - parent: 60 - type: Transform -- uid: 1363 - type: Catwalk - components: - - pos: 31.5,-60.5 - parent: 60 - type: Transform -- uid: 1364 - type: Catwalk - components: - - pos: 32.5,-60.5 - parent: 60 - type: Transform -- uid: 1365 - type: CableApcExtension - components: - - pos: -58.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1366 - type: Catwalk - components: - - pos: -73.5,-24.5 - parent: 60 - type: Transform -- uid: 1367 - type: WallReinforced - components: - - pos: 3.5,-26.5 - parent: 60 - type: Transform -- uid: 1368 - type: SolarPanel - components: - - pos: -86.5,-17.5 - parent: 60 - type: Transform -- uid: 1369 - type: Catwalk - components: - - pos: -77.5,-12.5 - parent: 60 - type: Transform -- uid: 1370 - type: WallSolid - components: - - pos: -61.5,-10.5 - parent: 60 - type: Transform -- uid: 1371 - type: CableHV - components: - - pos: -72.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1372 - type: Rack - components: - - pos: -55.5,-14.5 - parent: 60 - type: Transform -- uid: 1373 - type: PosterLegitLoveIan - components: - - pos: 9.5,-27.5 - parent: 60 - type: Transform -- uid: 1374 - type: AirlockHeadOfPersonnelLocked - components: - - name: HoP Office - type: MetaData - - pos: 2.5,-29.5 - parent: 60 - type: Transform -- uid: 1375 - type: CableApcExtension - components: - - pos: -54.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1376 - type: ReinforcedWindow - components: - - pos: 29.5,27.5 - parent: 60 - type: Transform -- uid: 1377 - type: Poweredlight - components: - - pos: 3.5,-27.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1378 - type: ComputerId - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-27.5 - parent: 60 - type: Transform -- uid: 1379 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 7.5,-27.5 - parent: 60 - type: Transform -- uid: 1380 - type: MaterialCloth - components: - - pos: 3.494194,-31.19716 - parent: 60 - type: Transform -- uid: 1381 - type: CableHV - components: - - pos: -88.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1382 - type: WaterCooler - components: - - pos: -67.5,6.5 - parent: 60 - type: Transform -- uid: 1383 - type: CableHV - components: - - pos: -86.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1384 - type: Grille - components: - - pos: -17.5,-13.5 - parent: 60 - type: Transform -- uid: 1385 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1386 - type: Grille - components: - - pos: -17.5,-12.5 - parent: 60 - type: Transform -- uid: 1387 - type: WallReinforced - components: - - pos: 24.5,22.5 - parent: 60 - type: Transform -- uid: 1388 - type: GasPipeBend - components: - - pos: 4.5,-28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1389 - type: GasPipeStraight - components: - - pos: 3.5,-27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1390 - type: GasPipeStraight - components: - - pos: 3.5,-26.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1391 - type: GasPipeStraight - components: - - pos: 3.5,-25.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1392 - type: BedsheetCMO - components: - - pos: 34.5,-10.5 - parent: 60 - type: Transform -- uid: 1393 - type: AirlockServiceGlassLocked - components: - - name: Reporter's Room - type: MetaData - - pos: 38.5,14.5 - parent: 60 - type: Transform -- uid: 1394 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 5.5,-30.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1395 - type: GasPipeStraight - components: - - pos: 4.5,-29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1396 - type: GasPipeStraight - components: - - pos: 4.5,-30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1397 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 4.5,-31.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1398 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 3.5,-29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1399 - type: GasPipeStraight - components: - - pos: 7.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1400 - type: GasPipeStraight - components: - - pos: 7.5,-24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1401 - type: GasPipeStraight - components: - - pos: 7.5,-25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1402 - type: GasPipeStraight - components: - - pos: 7.5,-26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1403 - type: GasPipeStraight - components: - - pos: 7.5,-27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1404 - type: GasPipeStraight - components: - - pos: 7.5,-28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1405 - type: HatBandRed - components: - - pos: 31.542542,14.714021 - parent: 60 - type: Transform -- uid: 1406 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 7.5,-28.5 - parent: 60 - type: Transform -- uid: 1407 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 7.5,-29.5 - parent: 60 - type: Transform -- uid: 1408 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-29.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1409 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-29.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1410 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1411 - type: CableHV - components: - - pos: 1.5,-38.5 - parent: 60 - type: Transform -- uid: 1412 - type: WallSolid - components: - - pos: -16.5,-27.5 - parent: 60 - type: Transform -- uid: 1413 - type: GasPipeStraight - components: - - pos: -0.5,-28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1414 - type: GasPipeStraight - components: - - pos: -0.5,-29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1415 - type: GasPipeStraight - components: - - pos: 1.5,-28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1416 - type: GasPipeStraight - components: - - pos: 1.5,-29.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1417 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1418 - type: GasPipeStraight - components: - - pos: 1.5,-30.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1419 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1420 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-31.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1421 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-32.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1422 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-33.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1423 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-34.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1424 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1425 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-32.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1426 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-33.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1427 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-34.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1428 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-35.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1429 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1430 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1431 - type: Grille - components: - - pos: 9.5,-17.5 - parent: 60 - type: Transform -- uid: 1432 - type: Grille - components: - - pos: 9.5,-15.5 - parent: 60 - type: Transform -- uid: 1433 - type: Grille - components: - - pos: 9.5,-16.5 - parent: 60 - type: Transform -- uid: 1434 - type: WallReinforced - components: - - pos: 9.5,-14.5 - parent: 60 - type: Transform -- uid: 1435 - type: AirlockExternalLocked - components: - - pos: 11.5,-16.5 - parent: 60 - type: Transform -- uid: 1436 - type: WallReinforced - components: - - pos: 11.5,-14.5 - parent: 60 - type: Transform -- uid: 1437 - type: WallReinforced - components: - - pos: 12.5,-14.5 - parent: 60 - type: Transform -- uid: 1438 - type: WallReinforced - components: - - pos: 13.5,-14.5 - parent: 60 - type: Transform -- uid: 1439 - type: WallReinforced - components: - - pos: 11.5,-17.5 - parent: 60 - type: Transform -- uid: 1440 - type: WallReinforced - components: - - pos: 11.5,-15.5 - parent: 60 - type: Transform -- uid: 1441 - type: AirlockExternal - components: - - pos: 10.5,-14.5 - parent: 60 - type: Transform -- uid: 1442 - type: ReinforcedWindow - components: - - pos: 9.5,-17.5 - parent: 60 - type: Transform -- uid: 1443 - type: ReinforcedWindow - components: - - pos: 9.5,-16.5 - parent: 60 - type: Transform -- uid: 1444 - type: ReinforcedWindow - components: - - pos: 9.5,-15.5 - parent: 60 - type: Transform -- uid: 1445 - type: LockerWeldingSuppliesFilled - components: - - pos: 12.5,-15.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1446 - type: LockerElectricalSuppliesFilled - components: - - pos: 13.5,-15.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1447 - type: AirlockEngineeringLocked - components: - - name: Storage/Bagel EVA - type: MetaData - - pos: 12.5,-18.5 - parent: 60 - type: Transform -- uid: 1448 - type: Rack - components: - - pos: 13.5,-17.5 - parent: 60 - type: Transform -- uid: 1449 - type: ChairWood - components: - - pos: 18.5,-28.5 - parent: 60 - type: Transform -- uid: 1450 - type: ReinforcedWindow - components: - - pos: 2.5,-36.5 - parent: 60 - type: Transform -- uid: 1451 - type: SignSpace - components: - - pos: 11.5,-15.5 - parent: 60 - type: Transform -- uid: 1452 - type: SignEVA - components: - - pos: 14.5,-15.5 - parent: 60 - type: Transform -- uid: 1453 - type: AirlockEngineeringLocked - components: - - name: Electrical Room - type: MetaData - - pos: 10.5,-20.5 - parent: 60 - type: Transform -- uid: 1454 - type: PoweredSmallLight - components: - - pos: 13.5,-15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1455 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 11.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1456 - type: GasVentScrubber - components: - - pos: 12.5,-23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1457 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-17.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1458 - type: PosterLegitSpaceCops - components: - - pos: 14.5,-18.5 - parent: 60 - type: Transform -- uid: 1459 - type: Grille - components: - - pos: -29.5,-8.5 - parent: 60 - type: Transform -- uid: 1460 - type: SpawnPointSecurityCadet - components: - - pos: -32.5,-18.5 - parent: 60 - type: Transform -- uid: 1461 - type: WeaponCapacitorRecharger - components: - - pos: -25.5,-7.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 1462 - type: ClosetL3SecurityFilled - components: - - pos: -32.5,-20.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1463 - type: SpawnMobMcGriff - components: - - pos: -27.5,-10.5 - parent: 60 - type: Transform -- uid: 1464 - type: Grille - components: - - pos: -29.5,-10.5 - parent: 60 - type: Transform -- uid: 1465 - type: Grille - components: - - pos: -24.5,-11.5 - parent: 60 - type: Transform -- uid: 1466 - type: WindoorSecure - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-9.5 - parent: 60 - type: Transform -- uid: 1467 - type: AirlockArmoryGlassLocked - components: - - pos: -26.5,-6.5 - parent: 60 - type: Transform -- uid: 1468 - type: SignalButton - components: - - pos: -32.5,-5.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6746 - - port: Toggle - uid: 6203 - type: SignalTransmitter -- uid: 1469 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-12.5 - parent: 60 - type: Transform -- uid: 1470 - type: WallReinforced - components: - - pos: 7.5,-43.5 - parent: 60 - type: Transform -- uid: 1471 - type: Table - components: - - pos: -29.5,-9.5 - parent: 60 - type: Transform -- uid: 1472 - type: WindoorArmoryLocked - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-9.5 - parent: 60 - type: Transform -- uid: 1473 - type: Grille - components: - - pos: -28.5,-11.5 - parent: 60 - type: Transform -- uid: 1474 - type: Grille - components: - - pos: -24.5,-7.5 - parent: 60 - type: Transform -- uid: 1475 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-14.5 - parent: 60 - type: Transform -- uid: 1476 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-10.5 - parent: 60 - type: Transform -- uid: 1477 - type: Grille - components: - - pos: -23.5,-10.5 - parent: 60 - type: Transform -- uid: 1478 - type: Table - components: - - pos: -32.5,-15.5 - parent: 60 - type: Transform -- uid: 1479 - type: OxygenCanister - components: - - pos: 10.5,-17.5 - parent: 60 - type: Transform -- uid: 1480 - type: YellowOxygenTankFilled - components: - - pos: 13.496357,-17.48587 - parent: 60 - type: Transform -- uid: 1481 - type: WallWeaponCapacitorRecharger - components: - - pos: -25.5,-6.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 1482 - type: VendingMachineSecDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,-20.5 - parent: 60 - type: Transform -- uid: 1483 - type: Grille - components: - - pos: -23.5,-8.5 - parent: 60 - type: Transform -- uid: 1484 - type: Grille - components: - - pos: -24.5,-8.5 - parent: 60 - type: Transform -- uid: 1485 - type: SignalButton - components: - - pos: -20.5,-11.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 8002 - - port: Toggle - uid: 552 - type: SignalTransmitter -- uid: 1486 - type: SignalButton - components: - - pos: -32.5,-11.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6206 - - port: Toggle - uid: 6733 - type: SignalTransmitter -- uid: 1487 - type: AirlockBrigGlassLocked - components: - - name: Front Desk - type: MetaData - - pos: -21.5,-15.5 - parent: 60 - type: Transform -- uid: 1488 - type: SignalButton - components: - - pos: -20.5,-8.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 185 - - port: Toggle - uid: 123 - type: SignalTransmitter -- uid: 1489 - type: Table - components: - - pos: -25.5,-7.5 - parent: 60 - type: Transform -- uid: 1490 - type: SpawnPointSecurityCadet - components: - - pos: -32.5,-17.5 - parent: 60 - type: Transform -- uid: 1491 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-12.5 - parent: 60 - type: Transform -- uid: 1492 - type: WallSolid - components: - - pos: -19.5,-11.5 - parent: 60 - type: Transform -- uid: 1493 - type: WallSolidRust - components: - - pos: -14.5,-28.5 - parent: 60 - type: Transform -- uid: 1494 - type: WallSolidRust - components: - - pos: -14.5,-30.5 - parent: 60 - type: Transform -- uid: 1495 - type: WallReinforced - components: - - pos: -21.5,-25.5 - parent: 60 - type: Transform -- uid: 1496 - type: WallReinforced - components: - - pos: -22.5,-25.5 - parent: 60 - type: Transform -- uid: 1497 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1498 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -19.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1499 - type: CableMV - components: - - pos: 52.5,-27.5 - parent: 60 - type: Transform -- uid: 1500 - type: GasPipeStraight - components: - - pos: -36.5,-14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1501 - type: CableMV - components: - - pos: 4.5,-27.5 - parent: 60 - type: Transform -- uid: 1502 - type: BedsheetMedical - components: - - pos: -18.5,-7.5 - parent: 60 - type: Transform -- uid: 1503 - type: ReinforcedWindow - components: - - pos: -31.5,-2.5 - parent: 60 - type: Transform -- uid: 1504 - type: CableMV - components: - - pos: -26.5,-15.5 - parent: 60 - type: Transform -- uid: 1505 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1506 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1507 - type: CableHV - components: - - pos: 31.5,-55.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1508 - type: CableHV - components: - - pos: 31.5,-56.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1509 - type: CableHV - components: - - pos: 31.5,-58.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1510 - type: GasPipeTJunction - components: - - pos: -20.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1511 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -20.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1512 - type: WallReinforced - components: - - pos: -3.5,8.5 - parent: 60 - type: Transform -- uid: 1513 - type: WallReinforced - components: - - pos: 4.5,8.5 - parent: 60 - type: Transform -- uid: 1514 - type: VendingMachineSeeds - components: - - flags: SessionSpecific - type: MetaData - - pos: -55.5,-21.5 - parent: 60 - type: Transform -- uid: 1515 - type: WallReinforced - components: - - pos: -4.5,12.5 - parent: 60 - type: Transform -- uid: 1516 - type: WallReinforced - components: - - pos: 5.5,12.5 - parent: 60 - type: Transform -- uid: 1517 - type: WallReinforced - components: - - pos: 8.5,11.5 - parent: 60 - type: Transform -- uid: 1518 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-23.5 - parent: 60 - type: Transform -- uid: 1519 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1520 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-23.5 - parent: 60 - type: Transform -- uid: 1521 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-23.5 - parent: 60 - type: Transform -- uid: 1522 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-23.5 - parent: 60 - type: Transform -- uid: 1523 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-23.5 - parent: 60 - type: Transform -- uid: 1524 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -37.5,-23.5 - parent: 60 - type: Transform -- uid: 1525 - type: WallSolidRust - components: - - pos: -60.5,-14.5 - parent: 60 - type: Transform -- uid: 1526 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1527 - type: CableMV - components: - - pos: -21.5,-6.5 - parent: 60 - type: Transform -- uid: 1528 - type: WallReinforced - components: - - pos: -22.5,-17.5 - parent: 60 - type: Transform -- uid: 1529 - type: Poweredlight - components: - - pos: -33.5,-15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1530 - type: WallReinforced - components: - - pos: -33.5,3.5 - parent: 60 - type: Transform -- uid: 1531 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1532 - type: Fireplace - components: - - pos: -20.5,2.5 - parent: 60 - type: Transform -- uid: 1533 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,24.5 - parent: 60 - type: Transform -- uid: 1534 - type: PowerCellRecharger - components: - - pos: 4.5,13.5 - parent: 60 - type: Transform -- uid: 1535 - type: WallReinforced - components: - - pos: -29.5,-0.5 - parent: 60 - type: Transform -- uid: 1536 - type: Poweredlight - components: - - pos: -25.5,-7.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1537 - type: Poweredlight - components: - - pos: -27.5,-7.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1538 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,24.5 - parent: 60 - type: Transform -- uid: 1539 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,24.5 - parent: 60 - type: Transform -- uid: 1540 - type: Stunbaton - components: - - pos: -30.436169,1.8062131 - parent: 60 - type: Transform -- uid: 1541 - type: CableMV - components: - - pos: -29.5,-14.5 - parent: 60 - type: Transform -- uid: 1542 - type: CableMV - components: - - pos: -21.5,-11.5 - parent: 60 - type: Transform -- uid: 1543 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,24.5 - parent: 60 - type: Transform -- uid: 1544 - type: TableReinforced - components: - - pos: -30.5,1.5 - parent: 60 - type: Transform -- uid: 1545 - type: WallSolid - components: - - pos: -32.5,-1.5 - parent: 60 - type: Transform -- uid: 1546 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,24.5 - parent: 60 - type: Transform -- uid: 1547 - type: WallReinforced - components: - - pos: -27.5,3.5 - parent: 60 - type: Transform -- uid: 1548 - type: PosterContrabandUnreadableAnnouncement - components: - - pos: -33.512638,-14.264637 - parent: 60 - type: Transform -- uid: 1549 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,1.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1550 - type: WallReinforced - components: - - pos: -24.5,-1.5 - parent: 60 - type: Transform -- uid: 1551 - type: CableMV - components: - - pos: -21.5,-7.5 - parent: 60 - type: Transform -- uid: 1552 - type: CableMV - components: - - pos: -21.5,-9.5 - parent: 60 - type: Transform -- uid: 1553 - type: CableMV - components: - - pos: -31.5,-6.5 - parent: 60 - type: Transform -- uid: 1554 - type: CableMV - components: - - pos: 34.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1555 - type: CableApcExtension - components: - - pos: -25.5,-20.5 - parent: 60 - type: Transform -- uid: 1556 - type: Wrench - components: - - pos: -25.456688,-11.384605 - parent: 60 - type: Transform -- uid: 1557 - type: CableMV - components: - - pos: -21.5,-10.5 - parent: 60 - type: Transform -- uid: 1558 - type: CableMV - components: - - pos: -20.5,-7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1559 - type: FirelockGlass - components: - - pos: -22.5,-20.5 - parent: 60 - type: Transform -- uid: 1560 - type: CableApcExtension - components: - - pos: -27.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1561 - type: CableMV - components: - - pos: -22.5,-13.5 - parent: 60 - type: Transform -- uid: 1562 - type: WallReinforced - components: - - pos: -25.5,-25.5 - parent: 60 - type: Transform -- uid: 1563 - type: WallReinforced - components: - - pos: -26.5,-25.5 - parent: 60 - type: Transform -- uid: 1564 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1565 - type: CableMV - components: - - pos: 34.5,-16.5 - parent: 60 - type: Transform -- uid: 1566 - type: CableMV - components: - - pos: 32.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1567 - type: CableMV - components: - - pos: 35.5,-16.5 - parent: 60 - type: Transform -- uid: 1568 - type: CableMV - components: - - pos: -20.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1569 - type: CableMV - components: - - pos: -23.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1570 - type: CableMV - components: - - pos: -31.5,-10.5 - parent: 60 - type: Transform -- uid: 1571 - type: CableMV - components: - - pos: -31.5,-11.5 - parent: 60 - type: Transform -- uid: 1572 - type: CableMV - components: - - pos: -32.5,-6.5 - parent: 60 - type: Transform -- uid: 1573 - type: CableMV - components: - - pos: -33.5,-6.5 - parent: 60 - type: Transform -- uid: 1574 - type: CableMV - components: - - pos: -31.5,-7.5 - parent: 60 - type: Transform -- uid: 1575 - type: CableMV - components: - - pos: -31.5,-8.5 - parent: 60 - type: Transform -- uid: 1576 - type: CableMV - components: - - pos: -26.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1577 - type: CableMV - components: - - pos: -23.5,-16.5 - parent: 60 - type: Transform -- uid: 1578 - type: CableMV - components: - - pos: -29.5,-5.5 - parent: 60 - type: Transform -- uid: 1579 - type: CableMV - components: - - pos: -20.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1580 - type: CableMV - components: - - pos: -32.5,-7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1581 - type: CableMV - components: - - pos: -21.5,-8.5 - parent: 60 - type: Transform -- uid: 1582 - type: CableMV - components: - - pos: -32.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1583 - type: CableMV - components: - - pos: -23.5,-18.5 - parent: 60 - type: Transform -- uid: 1584 - type: CableMV - components: - - pos: -32.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1585 - type: CableMV - components: - - pos: -28.5,-14.5 - parent: 60 - type: Transform -- uid: 1586 - type: CableMV - components: - - pos: -21.5,-13.5 - parent: 60 - type: Transform -- uid: 1587 - type: ReinforcedWindow - components: - - pos: -35.5,-13.5 - parent: 60 - type: Transform -- uid: 1588 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1589 - type: CableMV - components: - - pos: -28.5,-5.5 - parent: 60 - type: Transform -- uid: 1590 - type: CableMV - components: - - pos: 35.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1591 - type: CableMV - components: - - pos: 4.5,-28.5 - parent: 60 - type: Transform -- uid: 1592 - type: GasPipeStraight - components: - - pos: -28.5,-25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1593 - type: AirlockSecurityGlassLocked - components: - - name: detective office - type: MetaData - - pos: -24.5,-25.5 - parent: 60 - type: Transform -- uid: 1594 - type: WallReinforced - components: - - pos: -29.5,1.5 - parent: 60 - type: Transform -- uid: 1595 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 19.5,24.5 - parent: 60 - type: Transform -- uid: 1596 - type: WallReinforced - components: - - pos: -29.5,0.5 - parent: 60 - type: Transform -- uid: 1597 - type: CableMV - components: - - pos: -31.5,-13.5 - parent: 60 - type: Transform -- uid: 1598 - type: CableMV - components: - - pos: 32.5,-16.5 - parent: 60 - type: Transform -- uid: 1599 - type: CableMV - components: - - pos: -22.5,-19.5 - parent: 60 - type: Transform -- uid: 1600 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1601 - type: GasPipeStraight - components: - - pos: -25.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1602 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1603 - type: RandomVendingSnacks - components: - - pos: -17.5,2.5 - parent: 60 - type: Transform -- uid: 1604 - type: WallReinforced - components: - - pos: -30.5,-25.5 - parent: 60 - type: Transform -- uid: 1605 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1606 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1607 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1608 - type: GasPipeTJunction - components: - - pos: -29.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1609 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1610 - type: GasPipeTJunction - components: - - pos: -23.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1611 - type: DisposalPipe - components: - - pos: -37.5,-22.5 - parent: 60 - type: Transform -- uid: 1612 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1613 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1614 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1615 - type: AirlockSecurityLocked - components: - - name: Sec Maint - type: MetaData - - pos: -32.5,3.5 - parent: 60 - type: Transform -- uid: 1616 - type: ClothingNeckCloakGoliathCloak - components: - - pos: -47.5,-26.5 - parent: 60 - type: Transform -- uid: 1617 - type: CableMV - components: - - pos: -21.5,-12.5 - parent: 60 - type: Transform -- uid: 1618 - type: CableMV - components: - - pos: -30.5,-14.5 - parent: 60 - type: Transform -- uid: 1619 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1620 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1621 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 5.5,-28.5 - parent: 60 - type: Transform -- uid: 1622 - type: FoodBoxDonut - components: - - pos: -21.551075,0.6451446 - parent: 60 - type: Transform -- uid: 1623 - type: CableMV - components: - - pos: -26.5,-16.5 - parent: 60 - type: Transform -- uid: 1624 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -34.5,0.5 - parent: 60 - type: Transform -- uid: 1625 - type: WallReinforced - components: - - pos: -30.5,3.5 - parent: 60 - type: Transform -- uid: 1626 - type: CableHV - components: - - pos: 31.5,-57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1627 - type: WallSolid - components: - - pos: -54.5,-16.5 - parent: 60 - type: Transform -- uid: 1628 - type: CableApcExtension - components: - - pos: -65.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1629 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1630 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1631 - type: PottedPlantRandom - components: - - pos: -17.5,-0.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1632 - type: CrowbarRed - components: - - pos: -25.487938,-11.52523 - parent: 60 - type: Transform -- uid: 1633 - type: FirelockGlass - components: - - pos: -22.5,-18.5 - parent: 60 - type: Transform -- uid: 1634 - type: VendingMachineSec - components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,-15.5 - parent: 60 - type: Transform -- uid: 1635 - type: PosterLegitReportCrimes - components: - - pos: -29.5,-21.5 - parent: 60 - type: Transform -- uid: 1636 - type: FirelockGlass - components: - - pos: -22.5,-19.5 - parent: 60 - type: Transform -- uid: 1637 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-19.5 - parent: 60 - type: Transform -- uid: 1638 - type: PottedPlantRandom - components: - - pos: -26.5,-18.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1639 - type: SignInterrogation - components: - - pos: -31.5,-5.5 - parent: 60 - type: Transform -- uid: 1640 - type: LockerSecurityFilled - components: - - pos: -34.5,-16.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1641 - type: LockerMedicineFilled - components: - - pos: -19.5,-2.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1642 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -33.5,-4.5 - parent: 60 - type: Transform -- uid: 1643 - type: WardrobePrisonFilled - components: - - pos: -19.5,-13.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1644 - type: Table - components: - - pos: -34.5,-3.5 - parent: 60 - type: Transform -- uid: 1645 - type: WallReinforced - components: - - pos: -26.5,3.5 - parent: 60 - type: Transform -- uid: 1646 - type: Table - components: - - pos: -33.5,-3.5 - parent: 60 - type: Transform -- uid: 1647 - type: WardrobePrisonFilled - components: - - pos: -34.5,-7.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1648 - type: WallReinforced - components: - - pos: -29.5,3.5 - parent: 60 - type: Transform -- uid: 1649 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,24.5 - parent: 60 - type: Transform -- uid: 1650 - type: Grille - components: - - pos: -31.5,-2.5 - parent: 60 - type: Transform -- uid: 1651 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1652 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1653 - type: Stunbaton - components: - - pos: -30.342419,1.7905881 - parent: 60 - type: Transform -- uid: 1654 - type: CableApcExtension - components: - - pos: -2.5,-70.5 - parent: 60 - type: Transform -- uid: 1655 - type: WallReinforced - components: - - pos: -18.5,-0.5 - parent: 60 - type: Transform -- uid: 1656 - type: Carpet - components: - - pos: -20.5,0.5 - parent: 60 - type: Transform -- uid: 1657 - type: GasPipeStraight - components: - - pos: -25.5,-16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1658 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -31.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1659 - type: CableMV - components: - - pos: -21.5,0.5 - parent: 60 - type: Transform -- uid: 1660 - type: WallReinforced - components: - - pos: -24.5,3.5 - parent: 60 - type: Transform -- uid: 1661 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 29.5,24.5 - parent: 60 - type: Transform -- uid: 1662 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 40.5,24.5 - parent: 60 - type: Transform -- uid: 1663 - type: Poweredlight - components: - - pos: -24.5,2.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1664 - type: WallReinforced - components: - - pos: -31.5,3.5 - parent: 60 - type: Transform -- uid: 1665 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1666 - type: BoxZiptie - components: - - pos: -30.691933,2.653679 - parent: 60 - type: Transform -- uid: 1667 - type: WallReinforced - components: - - pos: -27.5,-25.5 - parent: 60 - type: Transform -- uid: 1668 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1669 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1670 - type: AirlockMaintLocked - components: - - pos: -29.5,-25.5 - parent: 60 - type: Transform -- uid: 1671 - type: CableApcExtension - components: - - pos: -22.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1672 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-2.5 - parent: 60 - type: Transform -- uid: 1673 - type: WeldingFuelTankFull - components: - - pos: -28.5,-27.5 - parent: 60 - type: Transform -- uid: 1674 - type: trayScanner - components: - - pos: -31.45853,-30.433151 - parent: 60 - type: Transform -- uid: 1675 - type: CableApcExtension - components: - - pos: -20.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1676 - type: ReinforcedWindow - components: - - pos: -23.5,-25.5 - parent: 60 - type: Transform -- uid: 1677 - type: Rack - components: - - pos: -31.5,-30.5 - parent: 60 - type: Transform -- uid: 1678 - type: Table - components: - - pos: 9.5,-51.5 - parent: 60 - type: Transform -- uid: 1679 - type: AirCanister - components: - - pos: -28.5,-28.5 - parent: 60 - type: Transform -- uid: 1680 - type: WallReinforced - components: - - pos: -21.5,-28.5 - parent: 60 - type: Transform -- uid: 1681 - type: WallReinforced - components: - - pos: -21.5,3.5 - parent: 60 - type: Transform -- uid: 1682 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1683 - type: Grille - components: - - pos: 66.5,-22.5 - parent: 60 - type: Transform -- uid: 1684 - type: ReinforcedWindow - components: - - pos: -27.5,-21.5 - parent: 60 - type: Transform -- uid: 1685 - type: Grille - components: - - pos: 67.5,-32.5 - parent: 60 - type: Transform -- uid: 1686 - type: Grille - components: - - pos: 73.5,-31.5 - parent: 60 - type: Transform -- uid: 1687 - type: Grille - components: - - pos: 67.5,-22.5 - parent: 60 - type: Transform -- uid: 1688 - type: Grille - components: - - pos: 68.5,-22.5 - parent: 60 - type: Transform -- uid: 1689 - type: Grille - components: - - pos: 69.5,-22.5 - parent: 60 - type: Transform -- uid: 1690 - type: Grille - components: - - pos: 73.5,-27.5 - parent: 60 - type: Transform -- uid: 1691 - type: Grille - components: - - pos: 73.5,-28.5 - parent: 60 - type: Transform -- uid: 1692 - type: GasPipeStraight - components: - - pos: -36.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1693 - type: Grille - components: - - pos: 73.5,-32.5 - parent: 60 - type: Transform -- uid: 1694 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1695 - type: CableMV - components: - - pos: 52.5,-30.5 - parent: 60 - type: Transform -- uid: 1696 - type: ClothingBeltSecurityFilled - components: - - pos: -30.430656,1.4332149 - parent: 60 - type: Transform -- uid: 1697 - type: ClosetBombFilled - components: - - pos: -31.5,4.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1698 - type: PosterLegitSafetyReport - components: - - pos: -17.5,-16.5 - parent: 60 - type: Transform -- uid: 1699 - type: SignPrison - components: - - pos: -27.5,-6.5 - parent: 60 - type: Transform -- uid: 1700 - type: Lamp - components: - - pos: -34.421402,-3.2097733 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 1701 - type: Chair - components: - - pos: -33.5,-2.5 - parent: 60 - type: Transform -- uid: 1702 - type: WardrobePrisonFilled - components: - - pos: -19.5,-10.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1703 - type: CableMV - components: - - pos: 36.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1704 - type: CableMV - components: - - pos: 4.5,-29.5 - parent: 60 - type: Transform -- uid: 1705 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1706 - type: ReinforcedWindow - components: - - pos: -33.5,-21.5 - parent: 60 - type: Transform -- uid: 1707 - type: DisposalPipe - components: - - pos: -37.5,-21.5 - parent: 60 - type: Transform -- uid: 1708 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-19.5 - parent: 60 - type: Transform -- uid: 1709 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-18.5 - parent: 60 - type: Transform -- uid: 1710 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-17.5 - parent: 60 - type: Transform -- uid: 1711 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-16.5 - parent: 60 - type: Transform -- uid: 1712 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1713 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1714 - type: GasPipeTJunction - components: - - pos: -28.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1715 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -30.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1716 - type: CableApcExtension - components: - - pos: 1.5,-6.5 - parent: 60 - type: Transform -- uid: 1717 - type: BedsheetOrange - components: - - pos: -18.5,-10.5 - parent: 60 - type: Transform -- uid: 1718 - type: BedsheetOrange - components: - - pos: -18.5,-13.5 - parent: 60 - type: Transform -- uid: 1719 - type: BedsheetOrange - components: - - pos: -33.5,-7.5 - parent: 60 - type: Transform -- uid: 1720 - type: BedsheetOrange - components: - - pos: -33.5,-10.5 - parent: 60 - type: Transform -- uid: 1721 - type: BedsheetOrange - components: - - pos: -33.5,-13.5 - parent: 60 - type: Transform -- uid: 1722 - type: Bed - components: - - pos: -18.5,-10.5 - parent: 60 - type: Transform -- uid: 1723 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1724 - type: WallReinforced - components: - - pos: -23.5,-0.5 - parent: 60 - type: Transform -- uid: 1725 - type: LockerEvidence - components: - - pos: -29.5,-12.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1726 - type: DisposalUnit - components: - - pos: 43.5,26.5 - parent: 60 - type: Transform -- uid: 1727 - type: WallReinforced - components: - - pos: -20.5,3.5 - parent: 60 - type: Transform -- uid: 1728 - type: CableMV - components: - - pos: -18.5,0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1729 - type: AirlockHeadOfSecurityGlassLocked - components: - - name: HoS's Room - type: MetaData - - pos: -21.5,-1.5 - parent: 60 - type: Transform -- uid: 1730 - type: GasPipeStraight - components: - - pos: -38.5,-0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1731 - type: SpawnPointHeadOfSecurity - components: - - pos: -20.5,1.5 - parent: 60 - type: Transform -- uid: 1732 - type: Table - components: - - pos: -27.5,-8.5 - parent: 60 - type: Transform -- uid: 1733 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1734 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: -22.5,1.5 - parent: 60 - type: Transform -- uid: 1735 - type: WallReinforced - components: - - pos: -19.5,3.5 - parent: 60 - type: Transform -- uid: 1736 - type: DisposalTrunk - components: - - pos: 19.5,26.5 - parent: 60 - type: Transform -- uid: 1737 - type: WallReinforced - components: - - pos: -23.5,3.5 - parent: 60 - type: Transform -- uid: 1738 - type: TableReinforced - components: - - pos: -24.5,-0.5 - parent: 60 - type: Transform -- uid: 1739 - type: Bed - components: - - pos: -18.5,-13.5 - parent: 60 - type: Transform -- uid: 1740 - type: WallSolid - components: - - pos: -33.5,-1.5 - parent: 60 - type: Transform -- uid: 1741 - type: Table - components: - - pos: -27.5,-7.5 - parent: 60 - type: Transform -- uid: 1742 - type: CableMV - components: - - pos: 4.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1743 - type: CableMV - components: - - pos: 6.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1744 - type: ReinforcedWindow - components: - - pos: -17.5,-6.5 - parent: 60 - type: Transform -- uid: 1745 - type: ReinforcedWindow - components: - - pos: -17.5,-7.5 - parent: 60 - type: Transform -- uid: 1746 - type: CableMV - components: - - pos: 5.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1747 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1748 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-21.5 - parent: 60 - type: Transform -- uid: 1749 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1750 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1751 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1752 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1753 - type: GasPipeStraight - components: - - pos: -38.5,0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1754 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1755 - type: GasPipeStraight - components: - - pos: -38.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1756 - type: GasPipeTJunction - components: - - pos: -22.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1757 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1758 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-21.5 - parent: 60 - type: Transform -- uid: 1759 - type: CableMV - components: - - pos: 52.5,-25.5 - parent: 60 - type: Transform -- uid: 1760 - type: CableMV - components: - - pos: 52.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1761 - type: CableMV - components: - - pos: 52.5,-28.5 - parent: 60 - type: Transform -- uid: 1762 - type: CableApcExtension - components: - - pos: -33.5,-15.5 - parent: 60 - type: Transform -- uid: 1763 - type: CableApcExtension - components: - - pos: 51.5,-25.5 - parent: 60 - type: Transform -- uid: 1764 - type: Bed - components: - - pos: -33.5,-10.5 - parent: 60 - type: Transform -- uid: 1765 - type: ReinforcedWindow - components: - - pos: -35.5,-9.5 - parent: 60 - type: Transform -- uid: 1766 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: -29.5,-18.5 - parent: 60 - type: Transform -- uid: 1767 - type: Bed - components: - - pos: -33.5,-7.5 - parent: 60 - type: Transform -- uid: 1768 - type: GasPipeTJunction - components: - - pos: -25.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1769 - type: GasPipeStraight - components: - - pos: -36.5,-1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1770 - type: GasPipeStraight - components: - - pos: -36.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1771 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1772 - type: GasPipeStraight - components: - - pos: -36.5,2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1773 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1774 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1775 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -20.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1776 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1777 - type: GasPipeStraight - components: - - pos: -36.5,1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1778 - type: GasPipeStraight - components: - - pos: -38.5,-20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1779 - type: GasPipeStraight - components: - - pos: -36.5,5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1780 - type: GasVentPump - components: - - pos: -20.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1781 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1782 - type: GasPipeStraight - components: - - pos: -38.5,1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1783 - type: GasPipeStraight - components: - - pos: -36.5,6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1784 - type: GasPipeStraight - components: - - pos: -36.5,-7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1785 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1786 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1787 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -37.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1788 - type: GasPipeStraight - components: - - pos: -38.5,-13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1789 - type: SinkWide - components: - - rot: 1.5707963267948966 rad - pos: 9.5,4.5 - parent: 60 - type: Transform -- uid: 1790 - type: Grille - components: - - pos: -27.5,-1.5 - parent: 60 - type: Transform -- uid: 1791 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1792 - type: Rack - components: - - pos: -24.5,0.5 - parent: 60 - type: Transform -- uid: 1793 - type: TableReinforced - components: - - pos: -24.5,2.5 - parent: 60 - type: Transform -- uid: 1794 - type: WallReinforced - components: - - pos: -28.5,4.5 - parent: 60 - type: Transform -- uid: 1795 - type: DisposalPipe - components: - - pos: 29.5,-35.5 - parent: 60 - type: Transform -- uid: 1796 - type: ClusterBangFull - components: - - pos: -27.50749,-8.399244 - parent: 60 - type: Transform -- uid: 1797 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1798 - type: WallReinforced - components: - - pos: -23.5,4.5 - parent: 60 - type: Transform -- uid: 1799 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -35.5,1.5 - parent: 60 - type: Transform -- uid: 1800 - type: WallReinforced - components: - - pos: -18.5,3.5 - parent: 60 - type: Transform -- uid: 1801 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 41.5,24.5 - parent: 60 - type: Transform -- uid: 1802 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,24.5 - parent: 60 - type: Transform -- uid: 1803 - type: ComputerSurveillanceCameraMonitor - components: - - pos: -3.5,-44.5 - parent: 60 - type: Transform -- uid: 1804 - type: Grille - components: - - pos: -17.5,-9.5 - parent: 60 - type: Transform -- uid: 1805 - type: ReinforcedWindow - components: - - pos: -17.5,-9.5 - parent: 60 - type: Transform -- uid: 1806 - type: BarSign - components: - - desc: This bar isn't actually located in outer space. - name: The Outer Spess - type: MetaData - - pos: 11.5,-25.5 - parent: 60 - type: Transform - - current: TheOuterSpess - type: BarSign -- uid: 1807 - type: CableApcExtension - components: - - pos: -57.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1808 - type: Rack - components: - - pos: -28.5,-0.5 - parent: 60 - type: Transform -- uid: 1809 - type: GasPipeStraight - components: - - pos: -31.5,-9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1810 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-42.5 - parent: 60 - type: Transform -- uid: 1811 - type: Grille - components: - - pos: -25.5,-1.5 - parent: 60 - type: Transform -- uid: 1812 - type: Grille - components: - - pos: -20.5,-2.5 - parent: 60 - type: Transform -- uid: 1813 - type: GasPipeTJunction - components: - - pos: -26.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1814 - type: SignArmory - components: - - pos: -28.5,-1.5 - parent: 60 - type: Transform -- uid: 1815 - type: DisposalUnit - components: - - pos: 19.5,26.5 - parent: 60 - type: Transform -- uid: 1816 - type: ClothingOuterArmorRiot - components: - - pos: -24.316319,1.574405 - parent: 60 - type: Transform -- uid: 1817 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -29.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1818 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,24.5 - parent: 60 - type: Transform -- uid: 1819 - type: Rack - components: - - pos: -24.5,1.5 - parent: 60 - type: Transform -- uid: 1820 - type: PortableFlasher - components: - - pos: -27.5,-0.5 - parent: 60 - type: Transform -- uid: 1821 - type: TableReinforced - components: - - pos: -28.5,0.5 - parent: 60 - type: Transform -- uid: 1822 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1823 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1824 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-5.5 - parent: 60 - type: Transform -- uid: 1825 - type: GasPipeStraight - components: - - pos: -38.5,-11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1826 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1827 - type: GasPipeStraight - components: - - pos: -38.5,-7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1828 - type: GasPipeStraight - components: - - pos: -38.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1829 - type: GasPipeStraight - components: - - pos: -36.5,-17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1830 - type: ReinforcedWindow - components: - - pos: -22.5,-1.5 - parent: 60 - type: Transform -- uid: 1831 - type: Poweredlight - components: - - pos: -28.5,2.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1832 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,24.5 - parent: 60 - type: Transform -- uid: 1833 - type: WallReinforced - components: - - pos: -20.5,-1.5 - parent: 60 - type: Transform -- uid: 1834 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1835 - type: AirlockSecurityLocked - components: - - pos: -31.5,-16.5 - parent: 60 - type: Transform -- uid: 1836 - type: GasPipeBend - components: - - pos: -30.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1837 - type: GasPipeStraight - components: - - pos: -36.5,-9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1838 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1839 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1840 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1841 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1842 - type: GasPipeStraight - components: - - pos: -38.5,-10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1843 - type: CableMV - components: - - pos: -18.5,1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1844 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1845 - type: GasPipeTJunction - components: - - pos: -27.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1846 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1847 - type: AirlockMaintSecLocked - components: - - name: Sec Maint - type: MetaData - - pos: -29.5,5.5 - parent: 60 - type: Transform -- uid: 1848 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1849 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,24.5 - parent: 60 - type: Transform -- uid: 1850 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1851 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1852 - type: Bed - components: - - pos: -18.5,-7.5 - parent: 60 - type: Transform -- uid: 1853 - type: ReinforcedWindow - components: - - pos: -35.5,-7.5 - parent: 60 - type: Transform -- uid: 1854 - type: ReinforcedWindow - components: - - pos: -35.5,-6.5 - parent: 60 - type: Transform -- uid: 1855 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1856 - type: ReinforcedWindow - components: - - pos: -35.5,-10.5 - parent: 60 - type: Transform -- uid: 1857 - type: Bed - components: - - pos: -33.5,-13.5 - parent: 60 - type: Transform -- uid: 1858 - type: Table - components: - - pos: -20.5,-16.5 - parent: 60 - type: Transform -- uid: 1859 - type: ReinforcedWindow - components: - - pos: -35.5,-12.5 - parent: 60 - type: Transform -- uid: 1860 - type: CableMV - components: - - pos: 36.5,-16.5 - parent: 60 - type: Transform -- uid: 1861 - type: ChairOfficeDark - components: - - pos: -19.5,-16.5 - parent: 60 - type: Transform -- uid: 1862 - type: CableApcExtension - components: - - pos: -33.5,-18.5 - parent: 60 - type: Transform -- uid: 1863 - type: WallReinforced - components: - - pos: -23.5,2.5 - parent: 60 - type: Transform -- uid: 1864 - type: WallReinforced - components: - - pos: -28.5,3.5 - parent: 60 - type: Transform -- uid: 1865 - type: LockerSyndicatePersonal - components: - - pos: -27.5,2.5 - parent: 60 - type: Transform - - locked: False - type: Lock - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1885 - - 1886 - type: ContainerContainer -- uid: 1866 - type: ClothingHeadHelmetRiot - components: - - pos: -24.644444,1.636905 - parent: 60 - type: Transform -- uid: 1867 - type: ClothingHeadHelmetRiot - components: - - pos: -24.644444,1.636905 - parent: 60 - type: Transform -- uid: 1868 - type: WallReinforced - components: - - pos: -34.5,3.5 - parent: 60 - type: Transform -- uid: 1869 - type: WallReinforced - components: - - pos: -22.5,3.5 - parent: 60 - type: Transform -- uid: 1870 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-0.5 - parent: 60 - type: Transform -- uid: 1871 - type: TableWood - components: - - pos: -21.5,0.5 - parent: 60 - type: Transform -- uid: 1872 - type: WeaponCapacitorRecharger - components: - - pos: -30.5,0.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 1873 - type: WeaponDisabler - components: - - pos: -30.490433,0.9149604 - parent: 60 - type: Transform -- uid: 1874 - type: GasPipeStraight - components: - - pos: -38.5,-18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1875 - type: GasPipeStraight - components: - - pos: -38.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1876 - type: GasPipeStraight - components: - - pos: -38.5,-16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1877 - type: GasPipeStraight - components: - - pos: -38.5,-15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1878 - type: GasPipeStraight - components: - - pos: -38.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1879 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1880 - type: GasPipeStraight - components: - - pos: -36.5,-5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1881 - type: Poweredlight - components: - - pos: -19.5,-15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1882 - type: LockerHeadOfSecurityFilled - components: - - pos: -19.5,2.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1883 - type: RiotShield - components: - - pos: -24.660069,1.386905 - parent: 60 - type: Transform -- uid: 1884 - type: DisposalTrunk - components: - - pos: 43.5,26.5 - parent: 60 - type: Transform -- uid: 1885 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 1865 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 1886 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 1865 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 1887 - type: RiotShield - components: - - pos: -24.660069,1.386905 - parent: 60 - type: Transform -- uid: 1888 - type: Bed - components: - - pos: -19.5,0.5 - parent: 60 - type: Transform -- uid: 1889 - type: AirlockSecurityLocked - components: - - name: Sec Maint - type: MetaData - - pos: -35.5,4.5 - parent: 60 - type: Transform -- uid: 1890 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,-0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1891 - type: CableApcExtension - components: - - pos: 52.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1892 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -27.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1893 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1894 - type: GasPipeStraight - components: - - pos: -24.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1895 - type: GasPipeStraight - components: - - pos: -38.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1896 - type: GasPipeStraight - components: - - pos: -36.5,-8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1897 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1898 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1899 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1900 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1901 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1902 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1903 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1904 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -17.5,-18.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Entrance - type: SurveillanceCamera -- uid: 1905 - type: ComputerSurveillanceCameraMonitor - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-16.5 - parent: 60 - type: Transform -- uid: 1906 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1907 - type: SecurityTechFab - components: - - pos: -26.5,2.5 - parent: 60 - type: Transform - - materialWhiteList: - - Glass - - Plastic - - Steel - type: MaterialStorage -- uid: 1908 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1909 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -29.5,-13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1910 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,-11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1911 - type: BoxFolderRed - components: - - pos: -20.476631,-16.393358 - parent: 60 - type: Transform -- uid: 1912 - type: RCD - components: - - pos: -28.460785,32.561153 - parent: 60 - type: Transform -- uid: 1913 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1914 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,-10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1915 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1916 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1917 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1918 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1919 - type: FoodBoxDonut - components: - - pos: -26.46309,-14.295396 - parent: 60 - type: Transform -- uid: 1920 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1921 - type: GasPipeStraight - components: - - pos: -21.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1922 - type: GasPipeBend - components: - - pos: -23.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1923 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1924 - type: GasPipeTJunction - components: - - pos: -30.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1925 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1926 - type: GasPipeBend - components: - - pos: -29.5,-12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1927 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -30.5,-12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1928 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1929 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1930 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1931 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1932 - type: GasPipeFourway - components: - - pos: -25.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1933 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1934 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1935 - type: GasPipeStraight - components: - - pos: -21.5,-5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1936 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1937 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1938 - type: GasPipeStraight - components: - - pos: -31.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1939 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1940 - type: GasPipeBend - components: - - pos: -21.5,-4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1941 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1942 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1943 - type: GasPipeTJunction - components: - - pos: -22.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1944 - type: WeaponCapacitorRecharger - components: - - pos: -27.5,-13.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 1945 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1946 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1947 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1948 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -22.5,-12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1949 - type: Bed - components: - - pos: -18.5,-3.5 - parent: 60 - type: Transform -- uid: 1950 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,24.5 - parent: 60 - type: Transform -- uid: 1951 - type: WallReinforced - components: - - pos: -27.5,4.5 - parent: 60 - type: Transform -- uid: 1952 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,25.5 - parent: 60 - type: Transform -- uid: 1953 - type: WallReinforced - components: - - pos: -23.5,0.5 - parent: 60 - type: Transform -- uid: 1954 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,24.5 - parent: 60 - type: Transform -- uid: 1955 - type: WallReinforced - components: - - pos: -25.5,4.5 - parent: 60 - type: Transform -- uid: 1956 - type: TableWood - components: - - pos: -22.5,0.5 - parent: 60 - type: Transform -- uid: 1957 - type: ComfyChair - components: - - pos: -21.5,1.5 - parent: 60 - type: Transform -- uid: 1958 - type: GasPipeFourway - components: - - pos: -27.5,-4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1959 - type: SignHydro3 - components: - - pos: 29.5,-25.5 - parent: 60 - type: Transform -- uid: 1960 - type: GasPipeTJunction - components: - - pos: -26.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1961 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1962 - type: Carpet - components: - - pos: -21.5,1.5 - parent: 60 - type: Transform -- uid: 1963 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 6.5,-29.5 - parent: 60 - type: Transform -- uid: 1964 - type: Table - components: - - pos: -33.5,-0.5 - parent: 60 - type: Transform -- uid: 1965 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1966 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -23.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1967 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1968 - type: GasPipeStraight - components: - - pos: -22.5,-14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1969 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1970 - type: AirlockSecurityGlassLocked - components: - - pos: -20.5,-3.5 - parent: 60 - type: Transform -- uid: 1971 - type: CableMV - components: - - pos: -21.5,-0.5 - parent: 60 - type: Transform -- uid: 1972 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1973 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1974 - type: GasPipeStraight - components: - - pos: -30.5,-14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1975 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1976 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1977 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1978 - type: Poweredlight - components: - - pos: -24.5,-18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1979 - type: CableMV - components: - - pos: -23.5,-15.5 - parent: 60 - type: Transform -- uid: 1980 - type: TableReinforced - components: - - pos: -30.5,0.5 - parent: 60 - type: Transform -- uid: 1981 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1982 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -21.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1983 - type: GasPipeStraight - components: - - pos: -31.5,-12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1984 - type: Grille - components: - - pos: 68.5,-32.5 - parent: 60 - type: Transform -- uid: 1985 - type: GasPipeStraight - components: - - pos: -31.5,-11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1986 - type: FoodBoxDonkpocketPizza - components: - - pos: -33.505833,2.6771145 - parent: 60 - type: Transform -- uid: 1987 - type: Grille - components: - - pos: -31.5,-4.5 - parent: 60 - type: Transform -- uid: 1988 - type: TableReinforced - components: - - pos: -28.5,2.5 - parent: 60 - type: Transform -- uid: 1989 - type: Grille - components: - - pos: -32.5,-7.5 - parent: 60 - type: Transform -- uid: 1990 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1991 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1992 - type: GasPipeStraight - components: - - pos: -38.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1993 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1994 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1995 - type: GasPipeStraight - components: - - pos: -36.5,-3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1996 - type: GasVentPump - components: - - pos: -33.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1997 - type: GasPipeStraight - components: - - pos: -38.5,3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1998 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1999 - type: GasPipeStraight - components: - - pos: -36.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2000 - type: GasPipeStraight - components: - - pos: -38.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2001 - type: GasPipeStraight - components: - - pos: -38.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2002 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2003 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 42.5,24.5 - parent: 60 - type: Transform -- uid: 2004 - type: ReinforcedPlasmaWindow - components: - - pos: -27.5,-1.5 - parent: 60 - type: Transform -- uid: 2005 - type: WallSolid - components: - - pos: -31.5,-1.5 - parent: 60 - type: Transform -- uid: 2006 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2007 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2008 - type: WardrobePrisonFilled - components: - - pos: -34.5,-10.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2009 - type: ReinforcedPlasmaWindow - components: - - pos: -25.5,-1.5 - parent: 60 - type: Transform -- uid: 2010 - type: GasPipeStraight - components: - - pos: -24.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2011 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2012 - type: Grille - components: - - pos: -32.5,-10.5 - parent: 60 - type: Transform -- uid: 2013 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2014 - type: WallReinforced - components: - - pos: -21.5,-26.5 - parent: 60 - type: Transform -- uid: 2015 - type: Grille - components: - - pos: -22.5,-1.5 - parent: 60 - type: Transform -- uid: 2016 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2017 - type: Poweredlight - components: - - pos: -28.5,-18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2018 - type: SpawnPointObserver - components: - - pos: 0.5,-23.5 - parent: 60 - type: Transform -- uid: 2019 - type: CableApcExtension - components: - - pos: -21.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2020 - type: GasPipeStraight - components: - - pos: -23.5,-26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2021 - type: GasPipeStraight - components: - - pos: -23.5,-25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2022 - type: TableWood - components: - - pos: -25.5,-28.5 - parent: 60 - type: Transform -- uid: 2023 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,-28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2024 - type: ComputerCriminalRecords - components: - - rot: 3.141592653589793 rad - pos: -26.5,-30.5 - parent: 60 - type: Transform -- uid: 2025 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -23.5,-27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2026 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2027 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2028 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,-27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2029 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2030 - type: Grille - components: - - pos: -23.5,-25.5 - parent: 60 - type: Transform -- uid: 2031 - type: GasPipeStraight - components: - - pos: -23.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2032 - type: GasPipeStraight - components: - - pos: -24.5,-25.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2033 - type: GasPipeStraight - components: - - pos: -24.5,-26.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2034 - type: CrateEngineeringCableLV - components: - - pos: -32.5,-30.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 2035 - type: CableApcExtension - components: - - pos: -23.5,-29.5 - parent: 60 - type: Transform -- uid: 2036 - type: PoweredSmallLight - components: - - pos: -19.5,-26.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2037 - type: WallSolid - components: - - pos: -7.5,-29.5 - parent: 60 - type: Transform -- uid: 2038 - type: WallSolid - components: - - pos: -18.5,-32.5 - parent: 60 - type: Transform -- uid: 2039 - type: WallSolid - components: - - pos: -14.5,-29.5 - parent: 60 - type: Transform -- uid: 2040 - type: WallSolid - components: - - pos: -12.5,-29.5 - parent: 60 - type: Transform -- uid: 2041 - type: WallSolid - components: - - pos: -11.5,-29.5 - parent: 60 - type: Transform -- uid: 2042 - type: Lamp - components: - - pos: -22.39201,0.9298079 - parent: 60 - type: Transform -- uid: 2043 - type: TableReinforced - components: - - pos: -19.5,-0.5 - parent: 60 - type: Transform -- uid: 2044 - type: FirelockGlass - components: - - pos: -20.5,-31.5 - parent: 60 - type: Transform -- uid: 2045 - type: CigarGold - components: - - pos: -24.470377,-28.90423 - parent: 60 - type: Transform -- uid: 2046 - type: ClothingHandsGlovesLatex - components: - - pos: -24.52533,-29.77923 - parent: 60 - type: Transform -- uid: 2047 - type: CigarGold - components: - - pos: -24.626627,-28.84173 - parent: 60 - type: Transform -- uid: 2048 - type: KitchenMicrowave - components: - - pos: -63.5,-11.5 - parent: 60 - type: Transform -- uid: 2049 - type: BodyBag_Container - components: - - pos: -23.485973,-26.24637 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - folded: True - type: Foldable -- uid: 2050 - type: WallSolid - components: - - pos: -53.5,-12.5 - parent: 60 - type: Transform -- uid: 2051 - type: WallReinforced - components: - - pos: -42.5,-33.5 - parent: 60 - type: Transform -- uid: 2052 - type: AirCanister - components: - - pos: -34.5,-30.5 - parent: 60 - type: Transform -- uid: 2053 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 60 - type: Transform -- uid: 2054 - type: WallReinforced - components: - - pos: -30.5,-29.5 - parent: 60 - type: Transform -- uid: 2055 - type: WallReinforced - components: - - pos: -30.5,-28.5 - parent: 60 - type: Transform -- uid: 2056 - type: WallReinforced - components: - - pos: -30.5,-26.5 - parent: 60 - type: Transform -- uid: 2057 - type: ReinforcedWindow - components: - - pos: -30.5,-27.5 - parent: 60 - type: Transform -- uid: 2058 - type: CableMV - components: - - pos: -28.5,-25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2059 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 9.5,10.5 - parent: 60 - type: Transform -- uid: 2060 - type: WallSolid - components: - - pos: -11.5,-32.5 - parent: 60 - type: Transform -- uid: 2061 - type: WallSolid - components: - - pos: -10.5,-32.5 - parent: 60 - type: Transform -- uid: 2062 - type: AirlockEngineeringLocked - components: - - pos: -13.5,-32.5 - parent: 60 - type: Transform -- uid: 2063 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-33.5 - parent: 60 - type: Transform -- uid: 2064 - type: WallSolid - components: - - pos: -14.5,-32.5 - parent: 60 - type: Transform -- uid: 2065 - type: DisposalJunctionFlipped - components: - - pos: 0.5,-29.5 - parent: 60 - type: Transform -- uid: 2066 - type: DisposalJunctionFlipped - components: - - pos: 0.5,-23.5 - parent: 60 - type: Transform -- uid: 2067 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-28.5 - parent: 60 - type: Transform -- uid: 2068 - type: ComputerSurveillanceCameraMonitor - components: - - pos: -1.5,3.5 - parent: 60 - type: Transform -- uid: 2069 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: 3.462276,-39.47909 - parent: 60 - type: Transform - - nextAttack: 1563.1370534 - type: MeleeWeapon -- uid: 2070 - type: Rack - components: - - pos: 3.5,-35.5 - parent: 60 - type: Transform -- uid: 2071 - type: TablePlasmaGlass - components: - - pos: 52.5,-28.5 - parent: 60 - type: Transform -- uid: 2072 - type: WallReinforced - components: - - pos: 6.5,-35.5 - parent: 60 - type: Transform -- uid: 2073 - type: WallSolidRust - components: - - pos: 8.5,-38.5 - parent: 60 - type: Transform -- uid: 2074 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-38.5 - parent: 60 - type: Transform -- uid: 2075 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-38.5 - parent: 60 - type: Transform -- uid: 2076 - type: Table - components: - - pos: 11.5,-37.5 - parent: 60 - type: Transform -- uid: 2077 - type: Catwalk - components: - - pos: 9.5,-44.5 - parent: 60 - type: Transform -- uid: 2078 - type: LockerBoozeFilled - components: - - pos: 11.5,-36.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2079 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-38.5 - parent: 60 - type: Transform -- uid: 2080 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 8.5,-34.5 - parent: 60 - type: Transform -- uid: 2081 - type: CableMV - components: - - pos: 11.5,-20.5 - parent: 60 - type: Transform -- uid: 2082 - type: PottedPlant2 - components: - - pos: 52.503082,-25.802689 - parent: 60 - type: Transform -- uid: 2083 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,24.5 - parent: 60 - type: Transform -- uid: 2084 - type: VendingMachineSec - components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,2.5 - parent: 60 - type: Transform -- uid: 2085 - type: TableReinforced - components: - - pos: -33.5,2.5 - parent: 60 - type: Transform -- uid: 2086 - type: AirlockSecurityGlassLocked - components: - - name: Sec Breakroom - type: MetaData - - pos: -30.5,-1.5 - parent: 60 - type: Transform -- uid: 2087 - type: WallReinforced - components: - - pos: -23.5,-1.5 - parent: 60 - type: Transform -- uid: 2088 - type: WallReinforced - components: - - pos: -29.5,-1.5 - parent: 60 - type: Transform -- uid: 2089 - type: Syringe - components: - - pos: -18.598316,-2.4746413 - parent: 60 - type: Transform -- uid: 2090 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,1.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2091 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-3.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2092 - type: WardrobePrisonFilled - components: - - pos: -19.5,-7.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2093 - type: WindowReinforcedDirectional - components: - - pos: -19.5,-5.5 - parent: 60 - type: Transform -- uid: 2094 - type: PoweredSmallLight - components: - - pos: -19.5,-12.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2095 - type: PoweredSmallLight - components: - - pos: -19.5,-9.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2096 - type: PoweredSmallLight - components: - - pos: -33.5,-6.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2097 - type: PoweredSmallLight - components: - - pos: -33.5,-9.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2098 - type: Carpet - components: - - pos: -20.5,1.5 - parent: 60 - type: Transform -- uid: 2099 - type: Grille - components: - - pos: -18.5,0.5 - parent: 60 - type: Transform -- uid: 2100 - type: Grille - components: - - pos: -25.5,-21.5 - parent: 60 - type: Transform -- uid: 2101 - type: PortableFlasher - components: - - pos: -25.5,-0.5 - parent: 60 - type: Transform -- uid: 2102 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,24.5 - parent: 60 - type: Transform -- uid: 2103 - type: TableReinforced - components: - - pos: -34.5,2.5 - parent: 60 - type: Transform -- uid: 2104 - type: WallReinforced - components: - - pos: -19.5,-1.5 - parent: 60 - type: Transform -- uid: 2105 - type: CableMV - components: - - pos: -21.5,-1.5 - parent: 60 - type: Transform -- uid: 2106 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,1.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2107 - type: GasPipeStraight - components: - - pos: -36.5,-18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2108 - type: GasPipeStraight - components: - - pos: -36.5,-19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2109 - type: GasPipeStraight - components: - - pos: -36.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2110 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2111 - type: GasPipeStraight - components: - - pos: -38.5,-12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2112 - type: GasPipeStraight - components: - - pos: -36.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2113 - type: Grille - components: - - pos: -27.5,-21.5 - parent: 60 - type: Transform -- uid: 2114 - type: DisposalPipe - components: - - pos: 0.5,-12.5 - parent: 60 - type: Transform -- uid: 2115 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-5.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2116 - type: DisposalPipe - components: - - pos: 0.5,-21.5 - parent: 60 - type: Transform -- uid: 2117 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-29.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2118 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-5.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2119 - type: CableApcExtension - components: - - pos: -25.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2120 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-14.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2121 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-14.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2122 - type: GasPipeStraight - components: - - pos: -36.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2123 - type: GasPipeStraight - components: - - pos: -38.5,-21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2124 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2125 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2126 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2127 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -26.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2128 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2129 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2130 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -43.5,42.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 2131 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2132 - type: WeaponCapacitorRecharger - components: - - pos: -32.5,-15.5 - parent: 60 - type: Transform -- uid: 2133 - type: ChairOfficeDark - components: - - pos: -26.5,-10.5 - parent: 60 - type: Transform -- uid: 2134 - type: WallReinforced - components: - - pos: -6.5,-21.5 - parent: 60 - type: Transform -- uid: 2135 - type: Grille - components: - - pos: 31.5,-20.5 - parent: 60 - type: Transform -- uid: 2136 - type: Grille - components: - - pos: 36.5,-19.5 - parent: 60 - type: Transform -- uid: 2137 - type: SignSurgery - components: - - pos: 42.5,-14.5 - parent: 60 - type: Transform -- uid: 2138 - type: OperatingTable - components: - - pos: 39.5,-12.5 - parent: 60 - type: Transform -- uid: 2139 - type: ReinforcedWindow - components: - - pos: 38.5,-15.5 - parent: 60 - type: Transform -- uid: 2140 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: 42.5,-30.5 - parent: 60 - type: Transform -- uid: 2141 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2142 - type: SpawnMobCat - components: - - pos: 33.5,-13.5 - parent: 60 - type: Transform -- uid: 2143 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 35.5,-14.5 - parent: 60 - type: Transform -- uid: 2144 - type: ComputerCrewMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-12.5 - parent: 60 - type: Transform -- uid: 2145 - type: Lamp - components: - - pos: 34.77564,-13.074253 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 2146 - type: MedkitAdvancedFilled - components: - - pos: 29.515877,-12.379152 - parent: 60 - type: Transform -- uid: 2147 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-13.5 - parent: 60 - type: Transform -- uid: 2148 - type: LockerChiefMedicalOfficerFilled - components: - - pos: 29.5,-14.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2149 - type: PlushieLizard - components: - - pos: 30.651426,-14.7669 - parent: 60 - type: Transform - - nextAttack: 280.3558487 - type: MeleeWeapon -- uid: 2150 - type: Bed - components: - - pos: 30.5,-14.5 - parent: 60 - type: Transform -- uid: 2151 - type: TableReinforcedGlass - components: - - pos: 35.5,-13.5 - parent: 60 - type: Transform -- uid: 2152 - type: ReinforcedWindow - components: - - pos: 32.5,-15.5 - parent: 60 - type: Transform -- uid: 2153 - type: ReinforcedWindow - components: - - pos: 34.5,-15.5 - parent: 60 - type: Transform -- uid: 2154 - type: Grille - components: - - pos: 36.5,-15.5 - parent: 60 - type: Transform -- uid: 2155 - type: ReinforcedWindow - components: - - pos: 35.5,-15.5 - parent: 60 - type: Transform -- uid: 2156 - type: Grille - components: - - pos: 31.5,-12.5 - parent: 60 - type: Transform -- uid: 2157 - type: WallReinforced - components: - - pos: 37.5,-12.5 - parent: 60 - type: Transform -- uid: 2158 - type: WallReinforced - components: - - pos: -65.5,-2.5 - parent: 60 - type: Transform -- uid: 2159 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2160 - type: CableMV - components: - - pos: -23.5,-19.5 - parent: 60 - type: Transform -- uid: 2161 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2162 - type: RandomSpawner - components: - - pos: -27.5,-22.5 - parent: 60 - type: Transform -- uid: 2163 - type: RandomSpawner - components: - - pos: -11.5,-30.5 - parent: 60 - type: Transform -- uid: 2164 - type: SpawnMobMouse - components: - - pos: -13.5,-30.5 - parent: 60 - type: Transform -- uid: 2165 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-37.5 - parent: 60 - type: Transform -- uid: 2166 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-38.5 - parent: 60 - type: Transform -- uid: 2167 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-37.5 - parent: 60 - type: Transform -- uid: 2168 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-37.5 - parent: 60 - type: Transform -- uid: 2169 - type: SpawnPointBartender - components: - - pos: 10.5,-36.5 - parent: 60 - type: Transform -- uid: 2170 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-38.5 - parent: 60 - type: Transform -- uid: 2171 - type: CableMV - components: - - pos: 9.5,-20.5 - parent: 60 - type: Transform -- uid: 2172 - type: PosterLegit12Gauge - components: - - pos: 8.5,-35.5 - parent: 60 - type: Transform -- uid: 2173 - type: LockerBoozeFilled - components: - - pos: 11.5,-34.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2174 - type: Rack - components: - - pos: 11.5,-35.5 - parent: 60 - type: Transform -- uid: 2175 - type: VendingBarDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-37.5 - parent: 60 - type: Transform -- uid: 2176 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-38.5 - parent: 60 - type: Transform -- uid: 2177 - type: BoxBeanbag - components: - - pos: 11.479033,-35.451874 - parent: 60 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 2178 - type: BoxShotgunFlare - components: - - pos: 11.479033,-35.3425 - parent: 60 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 2179 - type: WeaponDisabler - components: - - pos: -27.5802,-8.028072 - parent: 60 - type: Transform -- uid: 2180 - type: WeaponDisabler - components: - - pos: -30.506058,1.0555854 - parent: 60 - type: Transform -- uid: 2181 - type: DrinkShaker - components: - - pos: 11.698658,-37.234303 - parent: 60 - type: Transform -- uid: 2182 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-35.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2183 - type: WallSolid - components: - - pos: 8.5,-35.5 - parent: 60 - type: Transform -- uid: 2184 - type: Grille - components: - - pos: 38.5,-21.5 - parent: 60 - type: Transform -- uid: 2185 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-33.5 - parent: 60 - type: Transform -- uid: 2186 - type: WallSolid - components: - - pos: 11.5,-29.5 - parent: 60 - type: Transform -- uid: 2187 - type: Grille - components: - - pos: 10.5,-25.5 - parent: 60 - type: Transform -- uid: 2188 - type: Grille - components: - - pos: 11.5,-25.5 - parent: 60 - type: Transform -- uid: 2189 - type: Window - components: - - pos: 10.5,-25.5 - parent: 60 - type: Transform -- uid: 2190 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-25.5 - parent: 60 - type: Transform -- uid: 2191 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-25.5 - parent: 60 - type: Transform -- uid: 2192 - type: Window - components: - - pos: 11.5,-25.5 - parent: 60 - type: Transform -- uid: 2193 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-25.5 - parent: 60 - type: Transform -- uid: 2194 - type: GasPipeStraight - components: - - pos: 15.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2195 - type: GasPipeStraight - components: - - pos: 15.5,-24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2196 - type: GasPipeStraight - components: - - pos: 15.5,-25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2197 - type: GasPipeStraight - components: - - pos: 15.5,-26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2198 - type: GasPipeStraight - components: - - pos: 15.5,-27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2199 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-34.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2200 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2201 - type: GasPipeStraight - components: - - pos: 16.5,-25.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2202 - type: GasPipeStraight - components: - - pos: 16.5,-26.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2203 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 15.5,-28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2204 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-35.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2205 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2206 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-33.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2207 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 32.5,-33.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2208 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 34.5,-36.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2209 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-34.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2210 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,-34.5 - parent: 60 - type: Transform -- uid: 2211 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,-27.5 - parent: 60 - type: Transform -- uid: 2212 - type: TableReinforced - components: - - pos: 15.5,-36.5 - parent: 60 - type: Transform -- uid: 2213 - type: FirelockGlass - components: - - pos: 15.5,-30.5 - parent: 60 - type: Transform -- uid: 2214 - type: TableReinforced - components: - - pos: 15.5,-35.5 - parent: 60 - type: Transform -- uid: 2215 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2216 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-37.5 - parent: 60 - type: Transform -- uid: 2217 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 29.5,-36.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2218 - type: TableReinforced - components: - - pos: 15.5,-32.5 - parent: 60 - type: Transform -- uid: 2219 - type: TableReinforced - components: - - pos: 15.5,-31.5 - parent: 60 - type: Transform -- uid: 2220 - type: TableReinforced - components: - - pos: 15.5,-30.5 - parent: 60 - type: Transform -- uid: 2221 - type: TableReinforced - components: - - pos: 13.5,-29.5 - parent: 60 - type: Transform -- uid: 2222 - type: WallSolid - components: - - pos: 15.5,-37.5 - parent: 60 - type: Transform -- uid: 2223 - type: TableReinforced - components: - - pos: 14.5,-29.5 - parent: 60 - type: Transform -- uid: 2224 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-31.5 - parent: 60 - type: Transform -- uid: 2225 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-33.5 - parent: 60 - type: Transform -- uid: 2226 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-35.5 - parent: 60 - type: Transform -- uid: 2227 - type: FirelockGlass - components: - - pos: 15.5,-32.5 - parent: 60 - type: Transform -- uid: 2228 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-32.5 - parent: 60 - type: Transform -- uid: 2229 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-32.5 - parent: 60 - type: Transform -- uid: 2230 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-34.5 - parent: 60 - type: Transform -- uid: 2231 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-33.5 - parent: 60 - type: Transform -- uid: 2232 - type: FirelockGlass - components: - - pos: 14.5,-29.5 - parent: 60 - type: Transform -- uid: 2233 - type: FirelockGlass - components: - - pos: 13.5,-29.5 - parent: 60 - type: Transform -- uid: 2234 - type: WallSolid - components: - - pos: 15.5,-29.5 - parent: 60 - type: Transform -- uid: 2235 - type: WindoorBarLocked - components: - - rot: 3.141592653589793 rad - pos: 12.5,-29.5 - parent: 60 - type: Transform -- uid: 2236 - type: WallSolid - components: - - pos: 10.5,-29.5 - parent: 60 - type: Transform -- uid: 2237 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-33.5 - parent: 60 - type: Transform -- uid: 2238 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-35.5 - parent: 60 - type: Transform -- uid: 2239 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-34.5 - parent: 60 - type: Transform -- uid: 2240 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-37.5 - parent: 60 - type: Transform -- uid: 2241 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-38.5 - parent: 60 - type: Transform -- uid: 2242 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-36.5 - parent: 60 - type: Transform -- uid: 2243 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-38.5 - parent: 60 - type: Transform -- uid: 2244 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-36.5 - parent: 60 - type: Transform -- uid: 2245 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-38.5 - parent: 60 - type: Transform -- uid: 2246 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-37.5 - parent: 60 - type: Transform -- uid: 2247 - type: DrinkShaker - components: - - pos: 11.374469,-37.07544 - parent: 60 - type: Transform -- uid: 2248 - type: SpawnPointBartender - components: - - pos: 10.5,-34.5 - parent: 60 - type: Transform -- uid: 2249 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-35.5 - parent: 60 - type: Transform -- uid: 2250 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-38.5 - parent: 60 - type: Transform -- uid: 2251 - type: ClothingHeadHatCone - components: - - pos: -45.803383,-31.778114 - parent: 60 - type: Transform -- uid: 2252 - type: ClothingEyesGlassesSunglasses - components: - - pos: 11.495399,-35.596832 - parent: 60 - type: Transform -- uid: 2253 - type: BoozeDispenser - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-35.5 - parent: 60 - type: Transform -- uid: 2254 - type: TableWood - components: - - pos: 13.5,-34.5 - parent: 60 - type: Transform -- uid: 2255 - type: TableWood - components: - - pos: 13.5,-35.5 - parent: 60 - type: Transform -- uid: 2256 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,-37.5 - parent: 60 - type: Transform -- uid: 2257 - type: soda_dispenser - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-34.5 - parent: 60 - type: Transform -- uid: 2258 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,-26.5 - parent: 60 - type: Transform -- uid: 2259 - type: TableWood - components: - - pos: 11.5,-30.5 - parent: 60 - type: Transform -- uid: 2260 - type: TableWood - components: - - pos: 10.5,-30.5 - parent: 60 - type: Transform -- uid: 2261 - type: soda_dispenser - components: - - pos: 10.5,-30.5 - parent: 60 - type: Transform -- uid: 2262 - type: BoozeDispenser - components: - - pos: 11.5,-30.5 - parent: 60 - type: Transform -- uid: 2263 - type: TableWood - components: - - pos: 13.5,-36.5 - parent: 60 - type: Transform -- uid: 2264 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-23.5 - parent: 60 - type: Transform -- uid: 2265 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 13.5,-24.5 - parent: 60 - type: Transform -- uid: 2266 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 13.5,-25.5 - parent: 60 - type: Transform -- uid: 2267 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 13.5,-26.5 - parent: 60 - type: Transform -- uid: 2268 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 13.5,-27.5 - parent: 60 - type: Transform -- uid: 2269 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-28.5 - parent: 60 - type: Transform -- uid: 2270 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-28.5 - parent: 60 - type: Transform -- uid: 2271 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-28.5 - parent: 60 - type: Transform -- uid: 2272 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-28.5 - parent: 60 - type: Transform -- uid: 2273 - type: DisposalUnit - components: - - pos: 10.5,-28.5 - parent: 60 - type: Transform -- uid: 2274 - type: GasPipeBend - components: - - pos: 34.5,-33.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2275 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 7.5,-30.5 - parent: 60 - type: Transform -- uid: 2276 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-32.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2277 - type: Poweredlight - components: - - pos: 14.5,-26.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2278 - type: Poweredlight - components: - - pos: 18.5,-26.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2279 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-32.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2280 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-36.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2281 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-35.5 - parent: 60 - type: Transform -- uid: 2282 - type: AirlockKitchenGlassLocked - components: - - pos: 22.5,-36.5 - parent: 60 - type: Transform -- uid: 2283 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-37.5 - parent: 60 - type: Transform -- uid: 2284 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,-25.5 - parent: 60 - type: Transform -- uid: 2285 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 22.5,-28.5 - parent: 60 - type: Transform -- uid: 2286 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 22.5,-29.5 - parent: 60 - type: Transform -- uid: 2287 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 21.5,-36.5 - parent: 60 - type: Transform -- uid: 2288 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2289 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 22.5,-25.5 - parent: 60 - type: Transform -- uid: 2290 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,-25.5 - parent: 60 - type: Transform -- uid: 2291 - type: AirlockFreezerKitchenHydroLocked - components: - - name: Freezer - type: MetaData - - pos: 25.5,-25.5 - parent: 60 - type: Transform -- uid: 2292 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 26.5,-25.5 - parent: 60 - type: Transform -- uid: 2293 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 27.5,-25.5 - parent: 60 - type: Transform -- uid: 2294 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 27.5,-28.5 - parent: 60 - type: Transform -- uid: 2295 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 27.5,-27.5 - parent: 60 - type: Transform -- uid: 2296 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 27.5,-26.5 - parent: 60 - type: Transform -- uid: 2297 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 27.5,-29.5 - parent: 60 - type: Transform -- uid: 2298 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 27.5,-30.5 - parent: 60 - type: Transform -- uid: 2299 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 26.5,-29.5 - parent: 60 - type: Transform -- uid: 2300 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 25.5,-29.5 - parent: 60 - type: Transform -- uid: 2301 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-22.5 - parent: 60 - type: Transform -- uid: 2302 - type: CableMV - components: - - pos: -54.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2303 - type: AirlockFreezerKitchenHydroLocked - components: - - name: Freezer - type: MetaData - - pos: 23.5,-29.5 - parent: 60 - type: Transform -- uid: 2304 - type: FirelockGlass - components: - - pos: 27.5,-31.5 - parent: 60 - type: Transform -- uid: 2305 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 38.5,-23.5 - parent: 60 - type: Transform -- uid: 2306 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 29.5,-37.5 - parent: 60 - type: Transform -- uid: 2307 - type: DisposalPipe - components: - - pos: 29.5,-36.5 - parent: 60 - type: Transform -- uid: 2308 - type: WallReinforced - components: - - pos: 8.5,-45.5 - parent: 60 - type: Transform -- uid: 2309 - type: WallSolid - components: - - pos: 32.5,-38.5 - parent: 60 - type: Transform -- uid: 2310 - type: AirlockMaintKitchenLocked - components: - - name: Kitchen Maint - type: MetaData - - pos: 26.5,-38.5 - parent: 60 - type: Transform -- uid: 2311 - type: TableReinforced - components: - - pos: 22.5,-33.5 - parent: 60 - type: Transform -- uid: 2312 - type: TableReinforced - components: - - pos: 22.5,-31.5 - parent: 60 - type: Transform -- uid: 2313 - type: SignalButton - components: - - pos: 24.5,-29.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6773 - - port: Toggle - uid: 6774 - - port: Toggle - uid: 6771 - - port: Toggle - uid: 6772 - - port: Toggle - uid: 6775 - type: SignalTransmitter -- uid: 2314 - type: SheetSteel - components: - - rot: 3.141592653589793 rad - pos: -67.51849,12.48819 - parent: 60 - type: Transform -- uid: 2315 - type: DoorElectronics - components: - - rot: 1.5707963267948966 rad - pos: 10.680989,15.339867 - parent: 60 - type: Transform -- uid: 2316 - type: TableReinforced - components: - - pos: 22.5,-34.5 - parent: 60 - type: Transform -- uid: 2317 - type: TableReinforced - components: - - pos: 22.5,-32.5 - parent: 60 - type: Transform -- uid: 2318 - type: TableReinforced - components: - - pos: 22.5,-30.5 - parent: 60 - type: Transform -- uid: 2319 - type: Multitool - components: - - pos: 26.162018,-30.442345 - parent: 60 - type: Transform -- uid: 2320 - type: DoorElectronics - components: - - rot: 1.5707963267948966 rad - pos: 10.680989,15.339867 - parent: 60 - type: Transform -- uid: 2321 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-30.5 - parent: 60 - type: Transform -- uid: 2322 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-30.5 - parent: 60 - type: Transform -- uid: 2323 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-30.5 - parent: 60 - type: Transform -- uid: 2324 - type: WallReinforced - components: - - pos: -68.5,8.5 - parent: 60 - type: Transform -- uid: 2325 - type: Poweredlight - components: - - pos: 25.5,-30.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2326 - type: WeldingFuelTankFull - components: - - pos: -20.5,-27.5 - parent: 60 - type: Transform -- uid: 2327 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-27.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2328 - type: ClosetChefFilled - components: - - pos: 25.5,-37.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2329 - type: WaterTankFull - components: - - pos: -20.5,-26.5 - parent: 60 - type: Transform -- uid: 2330 - type: KitchenSpike - components: - - pos: 24.5,-26.5 - parent: 60 - type: Transform -- uid: 2331 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-27.5 - parent: 60 - type: Transform -- uid: 2332 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-27.5 - parent: 60 - type: Transform -- uid: 2333 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-27.5 - parent: 60 - type: Transform -- uid: 2334 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-27.5 - parent: 60 - type: Transform -- uid: 2335 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-27.5 - parent: 60 - type: Transform -- uid: 2336 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-27.5 - parent: 60 - type: Transform -- uid: 2337 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-27.5 - parent: 60 - type: Transform -- uid: 2338 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 23.5,-37.5 - parent: 60 - type: Transform -- uid: 2339 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 22.5,-26.5 - parent: 60 - type: Transform -- uid: 2340 - type: DisposalBend - components: - - pos: 21.5,-27.5 - parent: 60 - type: Transform -- uid: 2341 - type: DisposalTrunk - components: - - pos: 23.5,-26.5 - parent: 60 - type: Transform -- uid: 2342 - type: DisposalUnit - components: - - pos: 23.5,-26.5 - parent: 60 - type: Transform -- uid: 2343 - type: DisposalPipe - components: - - pos: 21.5,-28.5 - parent: 60 - type: Transform -- uid: 2344 - type: DisposalPipe - components: - - pos: 21.5,-29.5 - parent: 60 - type: Transform -- uid: 2345 - type: DisposalPipe - components: - - pos: 21.5,-30.5 - parent: 60 - type: Transform -- uid: 2346 - type: DisposalPipe - components: - - pos: 21.5,-31.5 - parent: 60 - type: Transform -- uid: 2347 - type: DisposalPipe - components: - - pos: 21.5,-32.5 - parent: 60 - type: Transform -- uid: 2348 - type: DisposalPipe - components: - - pos: 21.5,-34.5 - parent: 60 - type: Transform -- uid: 2349 - type: DisposalPipe - components: - - pos: 21.5,-35.5 - parent: 60 - type: Transform -- uid: 2350 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-36.5 - parent: 60 - type: Transform -- uid: 2351 - type: DisposalYJunction - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-36.5 - parent: 60 - type: Transform -- uid: 2352 - type: DisposalPipe - components: - - pos: 21.5,-33.5 - parent: 60 - type: Transform -- uid: 2353 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 23.5,-34.5 - parent: 60 - type: Transform -- uid: 2354 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 23.5,-35.5 - parent: 60 - type: Transform -- uid: 2355 - type: DisposalUnit - components: - - pos: 23.5,-37.5 - parent: 60 - type: Transform -- uid: 2356 - type: GasPipeStraight - components: - - pos: 32.5,-29.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2357 - type: GasPipeStraight - components: - - pos: 32.5,-30.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2358 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2359 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-32.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2360 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 23.5,-34.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2361 - type: GasPipeFourway - components: - - pos: 23.5,-33.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2362 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-32.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2363 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-31.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2364 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2365 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2366 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-33.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2367 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2368 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 23.5,-33.5 - parent: 60 - type: Transform -- uid: 2369 - type: GasPipeTJunction - components: - - pos: 29.5,-33.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2370 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 24.5,-32.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2371 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 25.5,-26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2372 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2373 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2374 - type: GasVentScrubber - components: - - pos: 23.5,-28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2375 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 23.5,-31.5 - parent: 60 - type: Transform -- uid: 2376 - type: FloorDrain - components: - - pos: 24.5,-27.5 - parent: 60 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 2377 - type: GasPipeTJunction - components: - - pos: 24.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2378 - type: WallSolid - components: - - pos: 24.5,-29.5 - parent: 60 - type: Transform -- uid: 2379 - type: GasThermoMachineFreezer - components: - - pos: 26.5,-26.5 - parent: 60 - type: Transform -- uid: 2380 - type: GasPipeTJunction - components: - - pos: 25.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2381 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-38.5 - parent: 60 - type: Transform -- uid: 2382 - type: WallReinforced - components: - - pos: 29.5,-42.5 - parent: 60 - type: Transform -- uid: 2383 - type: WallReinforced - components: - - pos: 29.5,-41.5 - parent: 60 - type: Transform -- uid: 2384 - type: WallReinforced - components: - - pos: 33.5,-41.5 - parent: 60 - type: Transform -- uid: 2385 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-38.5 - parent: 60 - type: Transform -- uid: 2386 - type: Window - components: - - pos: 19.5,-25.5 - parent: 60 - type: Transform -- uid: 2387 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-37.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2388 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-35.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2389 - type: WallSolid - components: - - pos: -54.5,-19.5 - parent: 60 - type: Transform -- uid: 2390 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-29.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2391 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-37.5 - parent: 60 - type: Transform -- uid: 2392 - type: WallSolid - components: - - pos: 27.5,-38.5 - parent: 60 - type: Transform -- uid: 2393 - type: WallSolid - components: - - pos: 30.5,-38.5 - parent: 60 - type: Transform -- uid: 2394 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-39.5 - parent: 60 - type: Transform -- uid: 2395 - type: WallSolid - components: - - pos: 29.5,-38.5 - parent: 60 - type: Transform -- uid: 2396 - type: WallSolid - components: - - pos: 33.5,-38.5 - parent: 60 - type: Transform -- uid: 2397 - type: WallSolid - components: - - pos: 34.5,-38.5 - parent: 60 - type: Transform -- uid: 2398 - type: WallSolid - components: - - pos: 35.5,-38.5 - parent: 60 - type: Transform -- uid: 2399 - type: WallSolid - components: - - pos: 40.5,-36.5 - parent: 60 - type: Transform -- uid: 2400 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-23.5 - parent: 60 - type: Transform -- uid: 2401 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 36.5,-34.5 - parent: 60 - type: Transform -- uid: 2402 - type: Table - components: - - pos: 34.5,-37.5 - parent: 60 - type: Transform -- uid: 2403 - type: HydroponicsToolMiniHoe - components: - - pos: 35.51023,-35.531483 - parent: 60 - type: Transform -- uid: 2404 - type: HydroponicsToolClippers - components: - - pos: 35.44177,-35.797108 - parent: 60 - type: Transform -- uid: 2405 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-33.5 - parent: 60 - type: Transform -- uid: 2406 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-32.5 - parent: 60 - type: Transform -- uid: 2407 - type: FirelockGlass - components: - - pos: 27.5,-32.5 - parent: 60 - type: Transform -- uid: 2408 - type: FirelockGlass - components: - - pos: 27.5,-33.5 - parent: 60 - type: Transform -- uid: 2409 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-31.5 - parent: 60 - type: Transform -- uid: 2410 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-30.5 - parent: 60 - type: Transform -- uid: 2411 - type: ReinforcedWindow - components: - - pos: 36.5,-28.5 - parent: 60 - type: Transform -- uid: 2412 - type: TableReinforced - components: - - pos: 31.5,-25.5 - parent: 60 - type: Transform -- uid: 2413 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-27.5 - parent: 60 - type: Transform -- uid: 2414 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-26.5 - parent: 60 - type: Transform -- uid: 2415 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-25.5 - parent: 60 - type: Transform -- uid: 2416 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-31.5 - parent: 60 - type: Transform -- uid: 2417 - type: WindowReinforcedDirectional - components: - - pos: 34.5,-25.5 - parent: 60 - type: Transform -- uid: 2418 - type: SpawnMobWalter - components: - - pos: 37.5,-30.5 - parent: 60 - type: Transform -- uid: 2419 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-25.5 - parent: 60 - type: Transform -- uid: 2420 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,-33.5 - parent: 60 - type: Transform -- uid: 2421 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-32.5 - parent: 60 - type: Transform -- uid: 2422 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-23.5 - parent: 60 - type: Transform -- uid: 2423 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-23.5 - parent: 60 - type: Transform -- uid: 2424 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-23.5 - parent: 60 - type: Transform -- uid: 2425 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-23.5 - parent: 60 - type: Transform -- uid: 2426 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 20.5,-22.5 - parent: 60 - type: Transform -- uid: 2427 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 60 - type: Transform -- uid: 2428 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-23.5 - parent: 60 - type: Transform -- uid: 2429 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-23.5 - parent: 60 - type: Transform -- uid: 2430 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-23.5 - parent: 60 - type: Transform -- uid: 2431 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-23.5 - parent: 60 - type: Transform -- uid: 2432 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-23.5 - parent: 60 - type: Transform -- uid: 2433 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-23.5 - parent: 60 - type: Transform -- uid: 2434 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-23.5 - parent: 60 - type: Transform -- uid: 2435 - type: DisposalTrunk - components: - - pos: 30.5,-22.5 - parent: 60 - type: Transform -- uid: 2436 - type: DisposalUnit - components: - - pos: 30.5,-22.5 - parent: 60 - type: Transform -- uid: 2437 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-23.5 - parent: 60 - type: Transform -- uid: 2438 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,-24.5 - parent: 60 - type: Transform -- uid: 2439 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,-25.5 - parent: 60 - type: Transform -- uid: 2440 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-37.5 - parent: 60 - type: Transform -- uid: 2441 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-26.5 - parent: 60 - type: Transform -- uid: 2442 - type: DisposalUnit - components: - - pos: 29.5,-26.5 - parent: 60 - type: Transform -- uid: 2443 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 16.5,-27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2444 - type: TableReinforced - components: - - pos: 30.5,-25.5 - parent: 60 - type: Transform -- uid: 2445 - type: WindowReinforcedDirectional - components: - - pos: 35.5,-25.5 - parent: 60 - type: Transform -- uid: 2446 - type: WindowReinforcedDirectional - components: - - pos: 33.5,-25.5 - parent: 60 - type: Transform -- uid: 2447 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-25.5 - parent: 60 - type: Transform -- uid: 2448 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-25.5 - parent: 60 - type: Transform -- uid: 2449 - type: TableReinforced - components: - - pos: 32.5,-25.5 - parent: 60 - type: Transform -- uid: 2450 - type: WindoorHydroponicsLocked - components: - - pos: 30.5,-25.5 - parent: 60 - type: Transform -- uid: 2451 - type: AirlockHydroGlassLocked - components: - - name: Hydroponics - type: MetaData - - pos: 28.5,-25.5 - parent: 60 - type: Transform -- uid: 2452 - type: WindoorHydroponicsLocked - components: - - pos: 32.5,-25.5 - parent: 60 - type: Transform -- uid: 2453 - type: WindoorHydroponicsLocked - components: - - pos: 31.5,-25.5 - parent: 60 - type: Transform -- uid: 2454 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 30.5,-25.5 - parent: 60 - type: Transform -- uid: 2455 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 31.5,-25.5 - parent: 60 - type: Transform -- uid: 2456 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 32.5,-25.5 - parent: 60 - type: Transform -- uid: 2457 - type: ChairOfficeLight - components: - - pos: 38.5,-27.5 - parent: 60 - type: Transform -- uid: 2458 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-27.5 - parent: 60 - type: Transform -- uid: 2459 - type: FirelockGlass - components: - - pos: 36.5,-29.5 - parent: 60 - type: Transform -- uid: 2460 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2461 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2462 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2463 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2464 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2465 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2466 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2467 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2468 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2469 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2470 - type: GasPipeFourway - components: - - pos: 21.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2471 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2472 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2473 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 23.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2474 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2475 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2476 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2477 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2478 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2479 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2480 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2481 - type: GasPipeTJunction - components: - - pos: 30.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2482 - type: GasPipeTJunction - components: - - pos: 32.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2483 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2484 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2485 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2486 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 34.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2487 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2488 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2489 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2490 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2491 - type: GasPipeFourway - components: - - pos: 39.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2492 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2493 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2494 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2495 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2496 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2497 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2498 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 29.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2499 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 33.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2500 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2501 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2502 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2503 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2504 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2505 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2506 - type: AirlockHydroGlassLocked - components: - - pos: 29.5,-34.5 - parent: 60 - type: Transform -- uid: 2507 - type: FirelockGlass - components: - - pos: 42.5,-30.5 - parent: 60 - type: Transform -- uid: 2508 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-30.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2509 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 5.5,-29.5 - parent: 60 - type: Transform -- uid: 2510 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-27.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2511 - type: hydroponicsTray - components: - - pos: 28.5,-29.5 - parent: 60 - type: Transform -- uid: 2512 - type: hydroponicsTray - components: - - pos: 34.5,-32.5 - parent: 60 - type: Transform -- uid: 2513 - type: hydroponicsTray - components: - - pos: 28.5,-28.5 - parent: 60 - type: Transform -- uid: 2514 - type: hydroponicsTray - components: - - pos: 31.5,-29.5 - parent: 60 - type: Transform -- uid: 2515 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-47.5 - parent: 60 - type: Transform -- uid: 2516 - type: hydroponicsTray - components: - - pos: 29.5,-29.5 - parent: 60 - type: Transform -- uid: 2517 - type: ReinforcedWindow - components: - - pos: 42.5,-32.5 - parent: 60 - type: Transform -- uid: 2518 - type: Grille - components: - - pos: 42.5,-32.5 - parent: 60 - type: Transform -- uid: 2519 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-27.5 - parent: 60 - type: Transform -- uid: 2520 - type: chem_dispenser - components: - - pos: 40.5,-29.5 - parent: 60 - type: Transform -- uid: 2521 - type: AirlockMaintLocked - components: - - name: arrivals maint - type: MetaData - - pos: -6.5,-52.5 - parent: 60 - type: Transform -- uid: 2522 - type: AirlockMaintLocked - components: - - pos: 3.5,-49.5 - parent: 60 - type: Transform -- uid: 2523 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 28.5,-26.5 - parent: 60 - type: Transform -- uid: 2524 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 28.5,-27.5 - parent: 60 - type: Transform -- uid: 2525 - type: DisposalBend - components: - - pos: 29.5,-27.5 - parent: 60 - type: Transform -- uid: 2526 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,-28.5 - parent: 60 - type: Transform -- uid: 2527 - type: chem_dispenser - components: - - pos: 37.5,-27.5 - parent: 60 - type: Transform -- uid: 2528 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-30.5 - parent: 60 - type: Transform -- uid: 2529 - type: LockerChemistryFilled - components: - - pos: 39.5,-32.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2530 - type: VendingMachineChemDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 41.5,-32.5 - parent: 60 - type: Transform -- uid: 2531 - type: SpawnPointChemist - components: - - pos: 39.5,-30.5 - parent: 60 - type: Transform -- uid: 2532 - type: TableReinforcedGlass - components: - - pos: 37.5,-32.5 - parent: 60 - type: Transform -- uid: 2533 - type: DogBed - components: - - pos: 37.5,-30.5 - parent: 60 - type: Transform -- uid: 2534 - type: KitchenReagentGrinder - components: - - pos: 37.5,-31.5 - parent: 60 - type: Transform -- uid: 2535 - type: TableReinforcedGlass - components: - - pos: 37.5,-31.5 - parent: 60 - type: Transform -- uid: 2536 - type: TableReinforcedGlass - components: - - pos: 38.5,-32.5 - parent: 60 - type: Transform -- uid: 2537 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2538 - type: hydroponicsTray - components: - - pos: 29.5,-28.5 - parent: 60 - type: Transform -- uid: 2539 - type: hydroponicsTray - components: - - pos: 34.5,-30.5 - parent: 60 - type: Transform -- uid: 2540 - type: VendingMachineSeeds - components: - - flags: SessionSpecific - type: MetaData - - pos: 34.5,-26.5 - parent: 60 - type: Transform -- uid: 2541 - type: VendingMachineNutri - components: - - flags: SessionSpecific - type: MetaData - - pos: 33.5,-26.5 - parent: 60 - type: Transform -- uid: 2542 - type: SeedExtractor - components: - - pos: 31.5,-33.5 - parent: 60 - type: Transform -- uid: 2543 - type: hydroponicsTray - components: - - pos: 32.5,-29.5 - parent: 60 - type: Transform -- uid: 2544 - type: SpawnPointChemist - components: - - pos: 39.5,-29.5 - parent: 60 - type: Transform -- uid: 2545 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2546 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-25.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2547 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2548 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-26.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2549 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2550 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2551 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,-33.5 - parent: 60 - type: Transform -- uid: 2552 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 33.5,-25.5 - parent: 60 - type: Transform -- uid: 2553 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-37.5 - parent: 60 - type: Transform -- uid: 2554 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2555 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 34.5,-25.5 - parent: 60 - type: Transform -- uid: 2556 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 35.5,-25.5 - parent: 60 - type: Transform -- uid: 2557 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,-32.5 - parent: 60 - type: Transform -- uid: 2558 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,-31.5 - parent: 60 - type: Transform -- uid: 2559 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,-30.5 - parent: 60 - type: Transform -- uid: 2560 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2561 - type: ChairOfficeLight - components: - - pos: 38.5,-31.5 - parent: 60 - type: Transform -- uid: 2562 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,-29.5 - parent: 60 - type: Transform -- uid: 2563 - type: GasVentScrubber - components: - - pos: 29.5,-23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2564 - type: Window - components: - - pos: 20.5,-25.5 - parent: 60 - type: Transform -- uid: 2565 - type: Grille - components: - - pos: 19.5,-25.5 - parent: 60 - type: Transform -- uid: 2566 - type: Grille - components: - - pos: 21.5,-25.5 - parent: 60 - type: Transform -- uid: 2567 - type: Grille - components: - - pos: 12.5,-25.5 - parent: 60 - type: Transform -- uid: 2568 - type: Window - components: - - pos: 21.5,-25.5 - parent: 60 - type: Transform -- uid: 2569 - type: Table - components: - - pos: 19.5,-26.5 - parent: 60 - type: Transform -- uid: 2570 - type: Window - components: - - pos: 17.5,-25.5 - parent: 60 - type: Transform -- uid: 2571 - type: Window - components: - - pos: 12.5,-25.5 - parent: 60 - type: Transform -- uid: 2572 - type: CableApcExtension - components: - - pos: -61.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2573 - type: SignBar - components: - - pos: 14.5,-25.5 - parent: 60 - type: Transform -- uid: 2574 - type: RandomPosterLegit - components: - - pos: 22.5,-28.5 - parent: 60 - type: Transform -- uid: 2575 - type: RandomPosterLegit - components: - - pos: 19.5,-39.5 - parent: 60 - type: Transform -- uid: 2576 - type: APCBasic - components: - - pos: 11.5,-29.5 - parent: 60 - type: Transform -- uid: 2577 - type: SignNosmoking - components: - - pos: 27.5,-29.5 - parent: 60 - type: Transform -- uid: 2578 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2579 - type: Grille - components: - - pos: -32.5,-13.5 - parent: 60 - type: Transform -- uid: 2580 - type: SubstationBasic - components: - - pos: 37.5,-34.5 - parent: 60 - type: Transform -- uid: 2581 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2582 - type: WallSolid - components: - - pos: 28.5,-38.5 - parent: 60 - type: Transform -- uid: 2583 - type: PianoInstrument - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-35.5 - parent: 60 - type: Transform -- uid: 2584 - type: Fork - components: - - pos: 21.138836,-26.476645 - parent: 60 - type: Transform -- uid: 2585 - type: FirelockGlass - components: - - pos: -26.5,-22.5 - parent: 60 - type: Transform -- uid: 2586 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 51.5,-26.5 - parent: 60 - type: Transform -- uid: 2587 - type: WallReinforced - components: - - pos: -64.5,-14.5 - parent: 60 - type: Transform -- uid: 2588 - type: Grille - components: - - pos: -66.5,-16.5 - parent: 60 - type: Transform -- uid: 2589 - type: AirlockMaint - components: - - pos: -16.5,-32.5 - parent: 60 - type: Transform -- uid: 2590 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -64.5,-18.5 - parent: 60 - type: Transform -- uid: 2591 - type: ReinforcedWindow - components: - - pos: -69.5,-17.5 - parent: 60 - type: Transform -- uid: 2592 - type: WallReinforced - components: - - pos: -62.5,-25.5 - parent: 60 - type: Transform -- uid: 2593 - type: CrateEngineeringCableBulk - components: - - pos: -65.5,-19.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 2594 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 12.5,34.5 - parent: 60 - type: Transform -- uid: 2595 - type: SignBiohazardMed - components: - - pos: 46.5,-31.5 - parent: 60 - type: Transform -- uid: 2596 - type: AirlockGlass - components: - - pos: 16.5,-25.5 - parent: 60 - type: Transform -- uid: 2597 - type: Window - components: - - pos: 15.5,-25.5 - parent: 60 - type: Transform -- uid: 2598 - type: CableMV - components: - - pos: 49.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2599 - type: CableHV - components: - - pos: -80.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2600 - type: CableHV - components: - - pos: -80.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2601 - type: SolarPanel - components: - - pos: -74.5,-15.5 - parent: 60 - type: Transform -- uid: 2602 - type: CableApcExtension - components: - - pos: -33.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2603 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 5.5,-31.5 - parent: 60 - type: Transform -- uid: 2604 - type: Catwalk - components: - - pos: 60.5,-54.5 - parent: 60 - type: Transform -- uid: 2605 - type: AirlockMaintLocked - components: - - pos: 26.5,22.5 - parent: 60 - type: Transform -- uid: 2606 - type: CableApcExtension - components: - - pos: -60.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2607 - type: CableMV - components: - - pos: -60.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2608 - type: KitchenMicrowave - components: - - pos: 25.5,-30.5 - parent: 60 - type: Transform -- uid: 2609 - type: Table - components: - - pos: 26.5,-34.5 - parent: 60 - type: Transform -- uid: 2610 - type: Table - components: - - pos: 25.5,-34.5 - parent: 60 - type: Transform -- uid: 2611 - type: Table - components: - - pos: 24.5,-34.5 - parent: 60 - type: Transform -- uid: 2612 - type: KitchenMicrowave - components: - - pos: 25.5,-34.5 - parent: 60 - type: Transform -- uid: 2613 - type: KitchenReagentGrinder - components: - - pos: 26.5,-34.5 - parent: 60 - type: Transform -- uid: 2614 - type: KitchenReagentGrinder - components: - - pos: 26.5,-30.5 - parent: 60 - type: Transform -- uid: 2615 - type: VendingMachineDinnerware - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,-36.5 - parent: 60 - type: Transform -- uid: 2616 - type: ButchCleaver - components: - - pos: 23.744236,-27.558329 - parent: 60 - type: Transform -- uid: 2617 - type: FoodMeat - components: - - pos: 24.931736,-26.971676 - parent: 60 - type: Transform -- uid: 2618 - type: FoodMeat - components: - - pos: 24.712986,-27.159176 - parent: 60 - type: Transform -- uid: 2619 - type: FoodMeat - components: - - pos: 25.103611,-27.846676 - parent: 60 - type: Transform -- uid: 2620 - type: FoodCondimentBottleEnzyme - components: - - pos: 24.759861,-34.213234 - parent: 60 - type: Transform - - tags: [] - type: Tag -- uid: 2621 - type: FoodCondimentBottleEnzyme - components: - - pos: 24.53123,-30.32824 - parent: 60 - type: Transform - - tags: [] - type: Tag -- uid: 2622 - type: FoodCondimentBottleEnzyme - components: - - pos: 24.640606,-30.406364 - parent: 60 - type: Transform - - tags: [] - type: Tag -- uid: 2623 - type: LockerFreezer - components: - - pos: 26.5,-27.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 234.99966 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2624 - type: SpawnPointChef - components: - - pos: 25.5,-32.5 - parent: 60 - type: Transform -- uid: 2625 - type: SpawnPointChef - components: - - pos: 25.5,-35.5 - parent: 60 - type: Transform -- uid: 2626 - type: chem_master - components: - - pos: 41.5,-26.5 - parent: 60 - type: Transform -- uid: 2627 - type: chem_master - components: - - pos: 41.5,-29.5 - parent: 60 - type: Transform -- uid: 2628 - type: chem_dispenser - components: - - pos: 40.5,-26.5 - parent: 60 - type: Transform -- uid: 2629 - type: VendingMachineChefDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 26.5,-28.5 - parent: 60 - type: Transform -- uid: 2630 - type: CableMV - components: - - pos: -60.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2631 - type: WallSolid - components: - - pos: 29.5,-21.5 - parent: 60 - type: Transform -- uid: 2632 - type: SignMedical - components: - - pos: 31.5,-21.5 - parent: 60 - type: Transform -- uid: 2633 - type: Grille - components: - - pos: 32.5,-21.5 - parent: 60 - type: Transform -- uid: 2634 - type: WallSolid - components: - - pos: 31.5,-21.5 - parent: 60 - type: Transform -- uid: 2635 - type: Grille - components: - - pos: 34.5,-21.5 - parent: 60 - type: Transform -- uid: 2636 - type: WallSolid - components: - - pos: 35.5,-21.5 - parent: 60 - type: Transform -- uid: 2637 - type: WallSolid - components: - - pos: 36.5,-21.5 - parent: 60 - type: Transform -- uid: 2638 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2639 - type: GasPipeStraight - components: - - pos: 30.5,-29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2640 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-23.5 - parent: 60 - type: Transform -- uid: 2641 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-23.5 - parent: 60 - type: Transform -- uid: 2642 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-22.5 - parent: 60 - type: Transform -- uid: 2643 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-22.5 - parent: 60 - type: Transform -- uid: 2644 - type: CableMV - components: - - pos: -61.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2645 - type: CableMV - components: - - pos: -60.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2646 - type: AirlockGlass - components: - - pos: 15.5,-20.5 - parent: 60 - type: Transform -- uid: 2647 - type: LockerBotanistFilled - components: - - pos: 32.5,-35.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2648 - type: CableMV - components: - - pos: -59.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2649 - type: SolarPanel - components: - - pos: -80.5,-15.5 - parent: 60 - type: Transform -- uid: 2650 - type: Poweredlight - components: - - pos: 37.5,-26.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2651 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-21.5 - parent: 60 - type: Transform -- uid: 2652 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: 13.493613,-21.305265 - parent: 60 - type: Transform -- uid: 2653 - type: SignDirectionalHydro - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-21.5 - parent: 60 - type: Transform -- uid: 2654 - type: SignDirectionalEng - components: - - rot: 3.141592653589793 rad - pos: 14.50723,-21.298052 - parent: 60 - type: Transform -- uid: 2655 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-25.5 - parent: 60 - type: Transform -- uid: 2656 - type: Grille - components: - - pos: 43.5,-25.5 - parent: 60 - type: Transform -- uid: 2657 - type: ReinforcedWindow - components: - - pos: 36.5,-22.5 - parent: 60 - type: Transform -- uid: 2658 - type: Grille - components: - - pos: 36.5,-22.5 - parent: 60 - type: Transform -- uid: 2659 - type: ReinforcedWindow - components: - - pos: 34.5,-21.5 - parent: 60 - type: Transform -- uid: 2660 - type: ReinforcedWindow - components: - - pos: 32.5,-21.5 - parent: 60 - type: Transform -- uid: 2661 - type: SignChemistry2 - components: - - pos: 37.5,-25.5 - parent: 60 - type: Transform -- uid: 2662 - type: WallReinforced - components: - - pos: 42.5,-25.5 - parent: 60 - type: Transform -- uid: 2663 - type: ReinforcedWindow - components: - - pos: 42.5,-28.5 - parent: 60 - type: Transform -- uid: 2664 - type: WallReinforced - components: - - pos: 42.5,-29.5 - parent: 60 - type: Transform -- uid: 2665 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2666 - type: ChairOfficeDark - components: - - pos: 34.5,-27.5 - parent: 60 - type: Transform -- uid: 2667 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-37.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2668 - type: ReinforcedWindow - components: - - pos: 42.5,-26.5 - parent: 60 - type: Transform -- uid: 2669 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-31.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2670 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-33.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2671 - type: WallSolid - components: - - pos: 40.5,-37.5 - parent: 60 - type: Transform -- uid: 2672 - type: WallSolid - components: - - pos: 40.5,-35.5 - parent: 60 - type: Transform -- uid: 2673 - type: WallSolid - components: - - pos: 40.5,-39.5 - parent: 60 - type: Transform -- uid: 2674 - type: WallSolid - components: - - pos: 40.5,-38.5 - parent: 60 - type: Transform -- uid: 2675 - type: WallSolid - components: - - pos: 40.5,-38.5 - parent: 60 - type: Transform -- uid: 2676 - type: WallSolid - components: - - pos: 42.5,-34.5 - parent: 60 - type: Transform -- uid: 2677 - type: WallSolid - components: - - pos: 42.5,-35.5 - parent: 60 - type: Transform -- uid: 2678 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 41.5,-33.5 - parent: 60 - type: Transform -- uid: 2679 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 42.5,-33.5 - parent: 60 - type: Transform -- uid: 2680 - type: FirelockGlass - components: - - pos: 39.5,-25.5 - parent: 60 - type: Transform -- uid: 2681 - type: Table - components: - - pos: 39.5,-25.5 - parent: 60 - type: Transform -- uid: 2682 - type: hydroponicsTray - components: - - pos: 35.5,-28.5 - parent: 60 - type: Transform -- uid: 2683 - type: ReinforcedWindow - components: - - pos: 41.5,-25.5 - parent: 60 - type: Transform -- uid: 2684 - type: WindoorChemistryLocked - components: - - pos: 39.5,-25.5 - parent: 60 - type: Transform -- uid: 2685 - type: WindoorChemistryLocked - components: - - pos: 38.5,-25.5 - parent: 60 - type: Transform -- uid: 2686 - type: FirelockGlass - components: - - pos: 42.5,-27.5 - parent: 60 - type: Transform -- uid: 2687 - type: FirelockGlass - components: - - pos: 38.5,-25.5 - parent: 60 - type: Transform -- uid: 2688 - type: CableHV - components: - - pos: 30.5,-53.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2689 - type: CableHV - components: - - pos: 30.5,-54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2690 - type: WallSolidRust - components: - - pos: -12.5,-47.5 - parent: 60 - type: Transform -- uid: 2691 - type: Table - components: - - pos: 42.5,-27.5 - parent: 60 - type: Transform -- uid: 2692 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2693 - type: GasPipeTJunction - components: - - pos: 40.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2694 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2695 - type: GasPipeStraight - components: - - pos: 40.5,-24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2696 - type: GasPipeStraight - components: - - pos: 40.5,-25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2697 - type: GasPipeStraight - components: - - pos: 40.5,-26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2698 - type: GasPipeStraight - components: - - pos: 39.5,-25.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2699 - type: GasPipeStraight - components: - - pos: 39.5,-26.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2700 - type: GasPipeStraight - components: - - pos: 39.5,-27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2701 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2702 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2703 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2704 - type: GasVentScrubber - components: - - pos: 39.5,-23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2705 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-22.5 - parent: 60 - type: Transform -- uid: 2706 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-29.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2707 - type: GasPipeStraight - components: - - pos: 40.5,-27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2708 - type: Bucket - components: - - pos: 34.588356,-37.437733 - parent: 60 - type: Transform -- uid: 2709 - type: HydroponicsToolScythe - components: - - pos: 35.588356,-36.359608 - parent: 60 - type: Transform -- uid: 2710 - type: Bucket - components: - - pos: 34.744606,-37.312733 - parent: 60 - type: Transform -- uid: 2711 - type: HydroponicsToolHatchet - components: - - pos: 35.588356,-36.422108 - parent: 60 - type: Transform -- uid: 2712 - type: ClothingHeadHatTrucker - components: - - pos: 35.463356,-37.328358 - parent: 60 - type: Transform -- uid: 2713 - type: HydroponicsToolSpade - components: - - pos: 35.650856,-36.593983 - parent: 60 - type: Transform -- uid: 2714 - type: ClothingHeadHatPumpkin - components: - - pos: 33.555557,-37.625233 - parent: 60 - type: Transform -- uid: 2715 - type: Bucket - components: - - pos: 34.369606,-37.312733 - parent: 60 - type: Transform -- uid: 2716 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 36.5,-38.5 - parent: 60 - type: Transform -- uid: 2717 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 36.5,-37.5 - parent: 60 - type: Transform -- uid: 2718 - type: AirlockMaintChemLocked - components: - - name: chemistry - type: MetaData - - pos: 40.5,-33.5 - parent: 60 - type: Transform -- uid: 2719 - type: WallReinforced - components: - - pos: 38.5,-33.5 - parent: 60 - type: Transform -- uid: 2720 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 36.5,-36.5 - parent: 60 - type: Transform -- uid: 2721 - type: SolarPanel - components: - - pos: -80.5,-17.5 - parent: 60 - type: Transform -- uid: 2722 - type: WallReinforced - components: - - pos: 33.5,-42.5 - parent: 60 - type: Transform -- uid: 2723 - type: WallReinforced - components: - - pos: 34.5,-42.5 - parent: 60 - type: Transform -- uid: 2724 - type: WallReinforced - components: - - pos: 28.5,-42.5 - parent: 60 - type: Transform -- uid: 2725 - type: WallReinforced - components: - - pos: 25.5,-42.5 - parent: 60 - type: Transform -- uid: 2726 - type: WallReinforced - components: - - pos: 24.5,-42.5 - parent: 60 - type: Transform -- uid: 2727 - type: WallReinforced - components: - - pos: 24.5,-43.5 - parent: 60 - type: Transform -- uid: 2728 - type: WallReinforced - components: - - pos: 23.5,-43.5 - parent: 60 - type: Transform -- uid: 2729 - type: WallReinforced - components: - - pos: 38.5,-42.5 - parent: 60 - type: Transform -- uid: 2730 - type: WallReinforced - components: - - pos: 39.5,-42.5 - parent: 60 - type: Transform -- uid: 2731 - type: CableApcExtension - components: - - pos: 39.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2732 - type: FirelockGlass - components: - - pos: 41.5,-42.5 - parent: 60 - type: Transform -- uid: 2733 - type: AirlockExternalGlassShuttleEscape - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-46.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 2734 - type: Grille - components: - - pos: 35.5,-42.5 - parent: 60 - type: Transform -- uid: 2735 - type: Grille - components: - - pos: 36.5,-42.5 - parent: 60 - type: Transform -- uid: 2736 - type: NitrogenCanister - components: - - pos: 35.5,-48.5 - parent: 60 - type: Transform -- uid: 2737 - type: Grille - components: - - pos: 26.5,-42.5 - parent: 60 - type: Transform -- uid: 2738 - type: Grille - components: - - pos: 27.5,-42.5 - parent: 60 - type: Transform -- uid: 2739 - type: ReinforcedWindow - components: - - pos: 26.5,-42.5 - parent: 60 - type: Transform -- uid: 2740 - type: ReinforcedWindow - components: - - pos: 27.5,-42.5 - parent: 60 - type: Transform -- uid: 2741 - type: ReinforcedWindow - components: - - pos: 35.5,-42.5 - parent: 60 - type: Transform -- uid: 2742 - type: ReinforcedWindow - components: - - pos: 36.5,-42.5 - parent: 60 - type: Transform -- uid: 2743 - type: NitrogenCanister - components: - - pos: 34.5,-48.5 - parent: 60 - type: Transform -- uid: 2744 - type: ReinforcedWindow - components: - - pos: 30.5,-41.5 - parent: 60 - type: Transform -- uid: 2745 - type: ReinforcedWindow - components: - - pos: 31.5,-41.5 - parent: 60 - type: Transform -- uid: 2746 - type: ReinforcedWindow - components: - - pos: 32.5,-41.5 - parent: 60 - type: Transform -- uid: 2747 - type: Grille - components: - - pos: 30.5,-41.5 - parent: 60 - type: Transform -- uid: 2748 - type: Grille - components: - - pos: 31.5,-41.5 - parent: 60 - type: Transform -- uid: 2749 - type: Grille - components: - - pos: 32.5,-41.5 - parent: 60 - type: Transform -- uid: 2750 - type: WaterTankFull - components: - - pos: 35.5,-39.5 - parent: 60 - type: Transform -- uid: 2751 - type: WeldingFuelTankFull - components: - - pos: 34.5,-39.5 - parent: 60 - type: Transform -- uid: 2752 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 37.5,-33.5 - parent: 60 - type: Transform -- uid: 2753 - type: AirCanister - components: - - pos: 38.5,-39.5 - parent: 60 - type: Transform -- uid: 2754 - type: AirlockMaintHydroLocked - components: - - name: Botany Maint - type: MetaData - - pos: 31.5,-38.5 - parent: 60 - type: Transform -- uid: 2755 - type: NitrogenCanister - components: - - pos: 37.5,-39.5 - parent: 60 - type: Transform -- uid: 2756 - type: WindowTintedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-39.5 - parent: 60 - type: Transform -- uid: 2757 - type: OxygenCanister - components: - - pos: 36.5,-39.5 - parent: 60 - type: Transform -- uid: 2758 - type: RandomSpawner - components: - - pos: 27.5,-39.5 - parent: 60 - type: Transform -- uid: 2759 - type: RandomSpawner - components: - - pos: 7.5,-36.5 - parent: 60 - type: Transform -- uid: 2760 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -30.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2761 - type: RandomSpawner - components: - - pos: 13.5,-27.5 - parent: 60 - type: Transform -- uid: 2762 - type: chem_master - components: - - pos: 37.5,-28.5 - parent: 60 - type: Transform -- uid: 2763 - type: SolarPanel - components: - - pos: -80.5,-22.5 - parent: 60 - type: Transform -- uid: 2764 - type: SolarPanel - components: - - pos: -80.5,-20.5 - parent: 60 - type: Transform -- uid: 2765 - type: CableHV - components: - - pos: 33.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2766 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 36.5,-35.5 - parent: 60 - type: Transform -- uid: 2767 - type: ReinforcedWindow - components: - - pos: 36.5,-24.5 - parent: 60 - type: Transform -- uid: 2768 - type: AirlockGlass - components: - - pos: 36.5,-23.5 - parent: 60 - type: Transform -- uid: 2769 - type: Grille - components: - - pos: 36.5,-24.5 - parent: 60 - type: Transform -- uid: 2770 - type: FirelockGlass - components: - - pos: 16.5,-25.5 - parent: 60 - type: Transform -- uid: 2771 - type: FirelockGlass - components: - - pos: 13.5,-25.5 - parent: 60 - type: Transform -- uid: 2772 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2773 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,-22.5 - parent: 60 - type: Transform -- uid: 2774 - type: PottedPlantRandom - components: - - pos: 24.5,-22.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2775 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-21.5 - parent: 60 - type: Transform -- uid: 2776 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-21.5 - parent: 60 - type: Transform -- uid: 2777 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-21.5 - parent: 60 - type: Transform -- uid: 2778 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-21.5 - parent: 60 - type: Transform -- uid: 2779 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-37.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2780 - type: ChairOfficeDark - components: - - pos: 34.5,-36.5 - parent: 60 - type: Transform -- uid: 2781 - type: DisposalPipe - components: - - pos: 0.5,-16.5 - parent: 60 - type: Transform -- uid: 2782 - type: Grille - components: - - pos: 42.5,-28.5 - parent: 60 - type: Transform -- uid: 2783 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2784 - type: Grille - components: - - pos: 42.5,-26.5 - parent: 60 - type: Transform -- uid: 2785 - type: Table - components: - - pos: 36.5,-29.5 - parent: 60 - type: Transform -- uid: 2786 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2787 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2788 - type: GasPipeStraight - components: - - pos: 17.5,-30.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2789 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-26.5 - parent: 60 - type: Transform -- uid: 2790 - type: DisposalUnit - components: - - pos: 37.5,-26.5 - parent: 60 - type: Transform -- uid: 2791 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2792 - type: GasPipeStraight - components: - - pos: -25.5,-2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2793 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -31.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2794 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2795 - type: Grille - components: - - pos: 45.5,-25.5 - parent: 60 - type: Transform -- uid: 2796 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-33.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2797 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-33.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2798 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2799 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-33.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2800 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-33.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2801 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-33.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2802 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2803 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-33.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2804 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-32.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2805 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2806 - type: GasPipeStraight - components: - - pos: -25.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2807 - type: GasPipeStraight - components: - - pos: -27.5,-1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2808 - type: GasPipeStraight - components: - - pos: -27.5,-0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2809 - type: SignChem - components: - - pos: 42.5,-29.5 - parent: 60 - type: Transform -- uid: 2810 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2811 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2812 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-29.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2813 - type: TableGlass - components: - - pos: 47.5,-14.5 - parent: 60 - type: Transform -- uid: 2814 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-33.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2815 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2816 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2817 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-2.5 - parent: 60 - type: Transform -- uid: 2818 - type: SpawnPointMedicalIntern - components: - - pos: 44.5,-11.5 - parent: 60 - type: Transform -- uid: 2819 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-36.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2820 - type: GasPipeStraight - components: - - pos: 17.5,-32.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2821 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-31.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2822 - type: CableHV - components: - - pos: 30.5,-52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2823 - type: CableHV - components: - - pos: 32.5,-76.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2824 - type: CableHV - components: - - pos: 30.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2825 - type: CableHV - components: - - pos: 31.5,-77.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2826 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-29.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2827 - type: WallSolid - components: - - pos: 43.5,-35.5 - parent: 60 - type: Transform -- uid: 2828 - type: Grille - components: - - pos: 60.5,-35.5 - parent: 60 - type: Transform -- uid: 2829 - type: CableHV - components: - - pos: 26.5,-76.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2830 - type: CableHV - components: - - pos: 33.5,-76.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2831 - type: CableHV - components: - - pos: 35.5,-76.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2832 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-26.5 - parent: 60 - type: Transform -- uid: 2833 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 38.5,-24.5 - parent: 60 - type: Transform -- uid: 2834 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 38.5,-25.5 - parent: 60 - type: Transform -- uid: 2835 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 50.5,-33.5 - parent: 60 - type: Transform -- uid: 2836 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 51.5,-33.5 - parent: 60 - type: Transform -- uid: 2837 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 49.5,-33.5 - parent: 60 - type: Transform -- uid: 2838 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 48.5,-33.5 - parent: 60 - type: Transform -- uid: 2839 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 47.5,-33.5 - parent: 60 - type: Transform -- uid: 2840 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 46.5,-33.5 - parent: 60 - type: Transform -- uid: 2841 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-35.5 - parent: 60 - type: Transform -- uid: 2842 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2843 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2844 - type: GasPipeStraight - components: - - pos: 17.5,-33.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2845 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-36.5 - parent: 60 - type: Transform -- uid: 2846 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-34.5 - parent: 60 - type: Transform -- uid: 2847 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-38.5 - parent: 60 - type: Transform -- uid: 2848 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-37.5 - parent: 60 - type: Transform -- uid: 2849 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2850 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-22.5 - parent: 60 - type: Transform -- uid: 2851 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-22.5 - parent: 60 - type: Transform -- uid: 2852 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-22.5 - parent: 60 - type: Transform -- uid: 2853 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-22.5 - parent: 60 - type: Transform -- uid: 2854 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-22.5 - parent: 60 - type: Transform -- uid: 2855 - type: DisposalTrunk - components: - - pos: 50.5,-31.5 - parent: 60 - type: Transform -- uid: 2856 - type: WallSolid - components: - - pos: 41.5,-35.5 - parent: 60 - type: Transform -- uid: 2857 - type: AirlockMaintMedLocked - components: - - name: medbay - type: MetaData - - pos: 44.5,-35.5 - parent: 60 - type: Transform -- uid: 2858 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-35.5 - parent: 60 - type: Transform -- uid: 2859 - type: WallSolid - components: - - pos: 30.5,-21.5 - parent: 60 - type: Transform -- uid: 2860 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2861 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2862 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2863 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2864 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2865 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -46.5,16.5 - parent: 60 - type: Transform -- uid: 2866 - type: WallReinforced - components: - - pos: -29.5,11.5 - parent: 60 - type: Transform -- uid: 2867 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2868 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2869 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2870 - type: AirlockResearchDirectorLocked - components: - - name: RD's Room - type: MetaData - - pos: -44.5,10.5 - parent: 60 - type: Transform -- uid: 2871 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-10.5 - parent: 60 - type: Transform -- uid: 2872 - type: WallReinforced - components: - - pos: 30.5,-15.5 - parent: 60 - type: Transform -- uid: 2873 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-13.5 - parent: 60 - type: Transform -- uid: 2874 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-10.5 - parent: 60 - type: Transform -- uid: 2875 - type: AirlockMaintTheatreLocked - components: - - name: theater - type: MetaData - - pos: 23.5,-10.5 - parent: 60 - type: Transform -- uid: 2876 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-10.5 - parent: 60 - type: Transform -- uid: 2877 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-35.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver -- uid: 2878 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 50.5,-22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2879 - type: WelderMini - components: - - pos: -47.41529,17.541862 - parent: 60 - type: Transform -- uid: 2880 - type: FirelockEdge - components: - - pos: 12.5,-29.5 - parent: 60 - type: Transform -- uid: 2881 - type: SignalButton - components: - - pos: 12.5,-33.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2892 - - port: Toggle - uid: 1357 - - port: Toggle - uid: 3093 - - port: Toggle - uid: 2877 - - port: Toggle - uid: 6813 - - port: Toggle - uid: 3493 - - port: Toggle - uid: 1354 - - port: Toggle - uid: 1353 - - port: Toggle - uid: 1352 - type: SignalTransmitter -- uid: 2882 - type: GasPipeBend - components: - - pos: 50.5,-21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2883 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2884 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2885 - type: GasPipeStraight - components: - - pos: 45.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2886 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2887 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2888 - type: DisposalUnit - components: - - pos: 37.5,-24.5 - parent: 60 - type: Transform -- uid: 2889 - type: Chair - components: - - pos: 41.5,-22.5 - parent: 60 - type: Transform -- uid: 2890 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-21.5 - parent: 60 - type: Transform -- uid: 2891 - type: FirelockGlass - components: - - pos: 15.5,-34.5 - parent: 60 - type: Transform -- uid: 2892 - type: ShuttersNormalOpen - components: - - pos: 13.5,-29.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver -- uid: 2893 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-20.5 - parent: 60 - type: Transform -- uid: 2894 - type: SignPlaque - components: - - pos: 4.5,-4.5 - parent: 60 - type: Transform -- uid: 2895 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-14.5 - parent: 60 - type: Transform -- uid: 2896 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-17.5 - parent: 60 - type: Transform -- uid: 2897 - type: AtmosFixNitrogenMarker - components: - - pos: -51.5,51.5 - parent: 60 - type: Transform -- uid: 2898 - type: FirelockGlass - components: - - pos: 15.5,-33.5 - parent: 60 - type: Transform -- uid: 2899 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2900 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2901 - type: GasPipeStraight - components: - - pos: 44.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2902 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2903 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2904 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 37.5,-23.5 - parent: 60 - type: Transform -- uid: 2905 - type: PottedPlantRandom - components: - - pos: 37.5,-22.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2906 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-21.5 - parent: 60 - type: Transform -- uid: 2907 - type: WallSolid - components: - - pos: 19.5,-21.5 - parent: 60 - type: Transform -- uid: 2908 - type: FirelockGlass - components: - - pos: 15.5,-35.5 - parent: 60 - type: Transform -- uid: 2909 - type: FirelockGlass - components: - - pos: 15.5,-36.5 - parent: 60 - type: Transform -- uid: 2910 - type: Window - components: - - pos: 18.5,-16.5 - parent: 60 - type: Transform -- uid: 2911 - type: Grille - components: - - pos: 18.5,-16.5 - parent: 60 - type: Transform -- uid: 2912 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-15.5 - parent: 60 - type: Transform -- uid: 2913 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-19.5 - parent: 60 - type: Transform -- uid: 2914 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-14.5 - parent: 60 - type: Transform -- uid: 2915 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-18.5 - parent: 60 - type: Transform -- uid: 2916 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-14.5 - parent: 60 - type: Transform -- uid: 2917 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-16.5 - parent: 60 - type: Transform -- uid: 2918 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-14.5 - parent: 60 - type: Transform -- uid: 2919 - type: WallReinforced - components: - - pos: 28.5,-14.5 - parent: 60 - type: Transform -- uid: 2920 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-14.5 - parent: 60 - type: Transform -- uid: 2921 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-32.5 - parent: 60 - type: Transform -- uid: 2922 - type: VendingMachineCart - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,-27.5 - parent: 60 - type: Transform -- uid: 2923 - type: Bed - components: - - pos: 8.5,-32.5 - parent: 60 - type: Transform -- uid: 2924 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-32.5 - parent: 60 - type: Transform -- uid: 2925 - type: SurveillanceCameraRouterSupply - components: - - pos: 8.5,-29.5 - parent: 60 - type: Transform -- uid: 2926 - type: BedsheetHOP - components: - - pos: 8.5,-32.5 - parent: 60 - type: Transform -- uid: 2927 - type: CableHV - components: - - pos: 34.5,-76.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2928 - type: CableHV - components: - - pos: 26.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2929 - type: WallSolid - components: - - pos: 26.5,-14.5 - parent: 60 - type: Transform -- uid: 2930 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-20.5 - parent: 60 - type: Transform -- uid: 2931 - type: WallReinforced - components: - - pos: 28.5,-15.5 - parent: 60 - type: Transform -- uid: 2932 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-32.5 - parent: 60 - type: Transform -- uid: 2933 - type: AirlockTheatreLocked - components: - - name: 'Theatre ' - type: MetaData - - pos: 20.5,-14.5 - parent: 60 - type: Transform -- uid: 2934 - type: UniformPrinter - components: - - pos: 4.5,-27.5 - parent: 60 - type: Transform - - materialWhiteList: - - Cloth - - Durathread - type: MaterialStorage -- uid: 2935 - type: CableHV - components: - - pos: 28.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2936 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-32.5 - parent: 60 - type: Transform -- uid: 2937 - type: UprightPianoInstrument - components: - - rot: 3.141592653589793 rad - pos: 26.5,-15.5 - parent: 60 - type: Transform -- uid: 2938 - type: TablePlasmaGlass - components: - - pos: 52.5,-29.5 - parent: 60 - type: Transform -- uid: 2939 - type: CableHV - components: - - pos: 29.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2940 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2941 - type: WallReinforced - components: - - pos: 46.5,-31.5 - parent: 60 - type: Transform -- uid: 2942 - type: WallReinforced - components: - - pos: 48.5,-30.5 - parent: 60 - type: Transform -- uid: 2943 - type: WallReinforced - components: - - pos: 47.5,-30.5 - parent: 60 - type: Transform -- uid: 2944 - type: WallReinforced - components: - - pos: 46.5,-30.5 - parent: 60 - type: Transform -- uid: 2945 - type: WallReinforced - components: - - pos: 49.5,-30.5 - parent: 60 - type: Transform -- uid: 2946 - type: WallReinforced - components: - - pos: 49.5,-31.5 - parent: 60 - type: Transform -- uid: 2947 - type: WallReinforced - components: - - pos: 46.5,-29.5 - parent: 60 - type: Transform -- uid: 2948 - type: WallReinforced - components: - - pos: 46.5,-28.5 - parent: 60 - type: Transform -- uid: 2949 - type: WallReinforced - components: - - pos: 46.5,-27.5 - parent: 60 - type: Transform -- uid: 2950 - type: WallReinforced - components: - - pos: 46.5,-26.5 - parent: 60 - type: Transform -- uid: 2951 - type: WallReinforced - components: - - pos: 46.5,-25.5 - parent: 60 - type: Transform -- uid: 2952 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-11.5 - parent: 60 - type: Transform -- uid: 2953 - type: WallReinforced - components: - - pos: 47.5,-24.5 - parent: 60 - type: Transform -- uid: 2954 - type: WallReinforced - components: - - pos: 49.5,-24.5 - parent: 60 - type: Transform -- uid: 2955 - type: WallReinforced - components: - - pos: 48.5,-24.5 - parent: 60 - type: Transform -- uid: 2956 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 44.5,-31.5 - parent: 60 - type: Transform -- uid: 2957 - type: WallReinforced - components: - - pos: 50.5,-24.5 - parent: 60 - type: Transform -- uid: 2958 - type: WallReinforced - components: - - pos: 52.5,-33.5 - parent: 60 - type: Transform -- uid: 2959 - type: WallReinforced - components: - - pos: 53.5,-33.5 - parent: 60 - type: Transform -- uid: 2960 - type: WallReinforced - components: - - pos: 52.5,-24.5 - parent: 60 - type: Transform -- uid: 2961 - type: WallReinforced - components: - - pos: 53.5,-24.5 - parent: 60 - type: Transform -- uid: 2962 - type: ClosetL3VirologyFilled - components: - - pos: 48.5,-31.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2963 - type: AirlockVirologyLocked - components: - - name: virology - type: MetaData - - pos: 46.5,-32.5 - parent: 60 - type: Transform -- uid: 2964 - type: ClosetL3VirologyFilled - components: - - pos: 47.5,-31.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2965 - type: WallReinforced - components: - - pos: 53.5,-32.5 - parent: 60 - type: Transform -- uid: 2966 - type: WallReinforced - components: - - pos: 53.5,-31.5 - parent: 60 - type: Transform -- uid: 2967 - type: WallReinforced - components: - - pos: 53.5,-30.5 - parent: 60 - type: Transform -- uid: 2968 - type: WallReinforced - components: - - pos: 53.5,-29.5 - parent: 60 - type: Transform -- uid: 2969 - type: SignVirology - components: - - pos: 46.5,-30.5 - parent: 60 - type: Transform -- uid: 2970 - type: AirlockVirologyLocked - components: - - pos: 49.5,-32.5 - parent: 60 - type: Transform -- uid: 2971 - type: Grille - components: - - pos: 53.5,-28.5 - parent: 60 - type: Transform -- uid: 2972 - type: Grille - components: - - pos: 53.5,-27.5 - parent: 60 - type: Transform -- uid: 2973 - type: Grille - components: - - pos: 53.5,-26.5 - parent: 60 - type: Transform -- uid: 2974 - type: Grille - components: - - pos: 53.5,-25.5 - parent: 60 - type: Transform -- uid: 2975 - type: ReinforcedWindow - components: - - pos: 53.5,-25.5 - parent: 60 - type: Transform -- uid: 2976 - type: ReinforcedWindow - components: - - pos: 53.5,-26.5 - parent: 60 - type: Transform -- uid: 2977 - type: ReinforcedWindow - components: - - pos: 53.5,-27.5 - parent: 60 - type: Transform -- uid: 2978 - type: ReinforcedWindow - components: - - pos: 53.5,-28.5 - parent: 60 - type: Transform -- uid: 2979 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-28.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2980 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-28.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2981 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 52.5,-28.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2982 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-28.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2983 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-28.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2984 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-32.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2985 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-32.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2986 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-32.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2987 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2988 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-30.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2989 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2990 - type: GasPipeStraight - components: - - pos: 45.5,-28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2991 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2992 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2993 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2994 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2995 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2996 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-32.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2997 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-32.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2998 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-32.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2999 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-32.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3000 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 51.5,-31.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3001 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-30.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3002 - type: GasVentPump - components: - - pos: 51.5,-29.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3003 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-33.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3004 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 50.5,-30.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3005 - type: WindoorMedicalLocked - components: - - pos: 47.5,-26.5 - parent: 60 - type: Transform -- uid: 3006 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 48.5,-26.5 - parent: 60 - type: Transform -- uid: 3007 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 49.5,-26.5 - parent: 60 - type: Transform -- uid: 3008 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-28.5 - parent: 60 - type: Transform -- uid: 3009 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-27.5 - parent: 60 - type: Transform -- uid: 3010 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-29.5 - parent: 60 - type: Transform -- uid: 3011 - type: MedicalBed - components: - - pos: 49.5,-27.5 - parent: 60 - type: Transform -- uid: 3012 - type: TablePlasmaGlass - components: - - pos: 49.5,-28.5 - parent: 60 - type: Transform -- uid: 3013 - type: MedicalBed - components: - - pos: 47.5,-29.5 - parent: 60 - type: Transform -- uid: 3014 - type: MedicalBed - components: - - pos: 49.5,-29.5 - parent: 60 - type: Transform -- uid: 3015 - type: BedsheetGreen - components: - - pos: 47.5,-29.5 - parent: 60 - type: Transform -- uid: 3016 - type: BedsheetGreen - components: - - pos: 49.5,-29.5 - parent: 60 - type: Transform -- uid: 3017 - type: RemoteSignaller - components: - - name: Jani Garage Opener - type: MetaData - - pos: -11.495448,-28.362686 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7697 - - port: Toggle - uid: 914 - - port: Toggle - uid: 920 - type: SignalTransmitter -- uid: 3018 - type: BedsheetGreen - components: - - pos: 49.5,-27.5 - parent: 60 - type: Transform -- uid: 3019 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 48.5,-28.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3020 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-27.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3021 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-27.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3022 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-27.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3023 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-27.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3024 - type: GasPipeBend - components: - - pos: 52.5,-27.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3025 - type: GasPipeBend - components: - - pos: 50.5,-29.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3026 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-29.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3027 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-29.5 - parent: 60 - type: Transform - - color: '#D3FC03FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3028 - type: Vaccinator - components: - - pos: 50.5,-25.5 - parent: 60 - type: Transform -- uid: 3029 - type: DiseaseDiagnoser - components: - - pos: 51.5,-25.5 - parent: 60 - type: Transform -- uid: 3030 - type: TablePlasmaGlass - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-27.5 - parent: 60 - type: Transform -- uid: 3031 - type: VendingMachineGeneDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 47.5,-20.5 - parent: 60 - type: Transform -- uid: 3032 - type: ReinforcedWindow - components: - - pos: -62.5,-24.5 - parent: 60 - type: Transform -- uid: 3033 - type: TablePlasmaGlass - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-25.5 - parent: 60 - type: Transform -- uid: 3034 - type: Grille - components: - - pos: -62.5,15.5 - parent: 60 - type: Transform -- uid: 3035 - type: hydroponicsTray - components: - - pos: -57.5,-24.5 - parent: 60 - type: Transform -- uid: 3036 - type: ClosetL3VirologyFilled - components: - - pos: 47.5,-25.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3037 - type: ClosetL3VirologyFilled - components: - - pos: 48.5,-25.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3038 - type: BoxSyringe - components: - - pos: 52.46156,-28.323542 - parent: 60 - type: Transform -- uid: 3039 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-32.5 - parent: 60 - type: Transform -- uid: 3040 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-22.5 - parent: 60 - type: Transform -- uid: 3041 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 44.5,-32.5 - parent: 60 - type: Transform -- uid: 3042 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 44.5,-24.5 - parent: 60 - type: Transform -- uid: 3043 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 44.5,-25.5 - parent: 60 - type: Transform -- uid: 3044 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 44.5,-27.5 - parent: 60 - type: Transform -- uid: 3045 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 44.5,-28.5 - parent: 60 - type: Transform -- uid: 3046 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 44.5,-29.5 - parent: 60 - type: Transform -- uid: 3047 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 44.5,-30.5 - parent: 60 - type: Transform -- uid: 3048 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 44.5,-26.5 - parent: 60 - type: Transform -- uid: 3049 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-26.5 - parent: 60 - type: Transform -- uid: 3050 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-23.5 - parent: 60 - type: Transform -- uid: 3051 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-23.5 - parent: 60 - type: Transform -- uid: 3052 - type: DisposalBend - components: - - pos: 45.5,-22.5 - parent: 60 - type: Transform -- uid: 3053 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-22.5 - parent: 60 - type: Transform -- uid: 3054 - type: DisposalUnit - components: - - pos: 45.5,-26.5 - parent: 60 - type: Transform -- uid: 3055 - type: WallReinforced - components: - - pos: 51.5,-24.5 - parent: 60 - type: Transform -- uid: 3056 - type: DisposalUnit - components: - - pos: 50.5,-31.5 - parent: 60 - type: Transform -- uid: 3057 - type: Poweredlight - components: - - pos: 50.5,-25.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3058 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-28.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3059 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-31.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3060 - type: Poweredlight - components: - - pos: 47.5,-31.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3061 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-33.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3062 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -38.5,9.5 - parent: 60 - type: Transform -- uid: 3063 - type: DisposalBend - components: - - pos: -36.5,9.5 - parent: 60 - type: Transform -- uid: 3064 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -37.5,9.5 - parent: 60 - type: Transform -- uid: 3065 - type: DisposalJunction - components: - - pos: -37.5,8.5 - parent: 60 - type: Transform -- uid: 3066 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -38.5,8.5 - parent: 60 - type: Transform -- uid: 3067 - type: SolarPanel - components: - - pos: -72.5,-16.5 - parent: 60 - type: Transform -- uid: 3068 - type: WallSolid - components: - - pos: -60.5,-12.5 - parent: 60 - type: Transform -- uid: 3069 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 40.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3070 - type: TableReinforced - components: - - pos: -25.5,-11.5 - parent: 60 - type: Transform -- uid: 3071 - type: AirlockExternalGlassLocked - components: - - pos: 31.5,-47.5 - parent: 60 - type: Transform -- uid: 3072 - type: ComputerStationRecords - components: - - rot: 3.141592653589793 rad - pos: -27.5,-11.5 - parent: 60 - type: Transform -- uid: 3073 - type: WardrobeVirology - components: - - pos: 52.5,-32.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3074 - type: WallReinforced - components: - - pos: 52.5,-23.5 - parent: 60 - type: Transform -- uid: 3075 - type: WallReinforced - components: - - pos: 52.5,-22.5 - parent: 60 - type: Transform -- uid: 3076 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-10.5 - parent: 60 - type: Transform -- uid: 3077 - type: WallReinforced - components: - - pos: 52.5,-20.5 - parent: 60 - type: Transform -- uid: 3078 - type: WallReinforced - components: - - pos: 52.5,-19.5 - parent: 60 - type: Transform -- uid: 3079 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-16.5 - parent: 60 - type: Transform -- uid: 3080 - type: AirlockExternalGlassLocked - components: - - pos: 31.5,-49.5 - parent: 60 - type: Transform -- uid: 3081 - type: Grille - components: - - pos: 50.5,-17.5 - parent: 60 - type: Transform -- uid: 3082 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-13.5 - parent: 60 - type: Transform -- uid: 3083 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-14.5 - parent: 60 - type: Transform -- uid: 3084 - type: ReinforcedWindow - components: - - pos: 50.5,-12.5 - parent: 60 - type: Transform -- uid: 3085 - type: WallReinforced - components: - - pos: 50.5,-15.5 - parent: 60 - type: Transform -- uid: 3086 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-11.5 - parent: 60 - type: Transform -- uid: 3087 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-11.5 - parent: 60 - type: Transform -- uid: 3088 - type: AirlockMedicalGlassLocked - components: - - name: cloning - type: MetaData - - pos: 46.5,-21.5 - parent: 60 - type: Transform -- uid: 3089 - type: ChairFoldingSpawnFolded - components: - - pos: 30.436874,-37.252895 - parent: 60 - type: Transform -- uid: 3090 - type: LampGold - components: - - pos: 16.522533,-37.054287 - parent: 60 - type: Transform -- uid: 3091 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-11.5 - parent: 60 - type: Transform -- uid: 3092 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 60 - type: Transform -- uid: 3093 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-36.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver -- uid: 3094 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-10.5 - parent: 60 - type: Transform -- uid: 3095 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-10.5 - parent: 60 - type: Transform -- uid: 3096 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-10.5 - parent: 60 - type: Transform -- uid: 3097 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-10.5 - parent: 60 - type: Transform -- uid: 3098 - type: Grille - components: - - pos: 51.5,-19.5 - parent: 60 - type: Transform -- uid: 3099 - type: Grille - components: - - pos: 49.5,-19.5 - parent: 60 - type: Transform -- uid: 3100 - type: Grille - components: - - pos: 48.5,-19.5 - parent: 60 - type: Transform -- uid: 3101 - type: ReinforcedWindow - components: - - pos: 51.5,-19.5 - parent: 60 - type: Transform -- uid: 3102 - type: ReinforcedWindow - components: - - pos: 49.5,-19.5 - parent: 60 - type: Transform -- uid: 3103 - type: WallReinforced - components: - - pos: 50.5,-19.5 - parent: 60 - type: Transform -- uid: 3104 - type: StoolBar - components: - - pos: 14.5,-28.5 - parent: 60 - type: Transform -- uid: 3105 - type: ReinforcedWindow - components: - - pos: 48.5,-19.5 - parent: 60 - type: Transform -- uid: 3106 - type: TableCarpet - components: - - pos: 16.5,-37.5 - parent: 60 - type: Transform -- uid: 3107 - type: StoolBar - components: - - pos: 13.5,-28.5 - parent: 60 - type: Transform -- uid: 3108 - type: AirlockMaintMedLocked - components: - - name: medbay - type: MetaData - - pos: 52.5,-21.5 - parent: 60 - type: Transform -- uid: 3109 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 5.5,-32.5 - parent: 60 - type: Transform -- uid: 3110 - type: FirelockGlass - components: - - pos: 45.5,-15.5 - parent: 60 - type: Transform -- uid: 3111 - type: SignCloning - components: - - pos: 46.5,-19.5 - parent: 60 - type: Transform -- uid: 3112 - type: ComputerCloningConsole - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-23.5 - parent: 60 - type: Transform - - outputs: - MedicalScannerSender: - - port: MedicalScannerReceiver - uid: 3115 - CloningPodSender: - - port: CloningPodReceiver - uid: 3113 - type: SignalTransmitter -- uid: 3113 - type: CloningPod - components: - - pos: 48.5,-23.5 - parent: 60 - type: Transform - - inputs: - CloningPodReceiver: - - port: CloningPodSender - uid: 3112 - type: SignalReceiver -- uid: 3114 - type: WallReinforced - components: - - pos: 29.5,-53.5 - parent: 60 - type: Transform -- uid: 3115 - type: MedicalScanner - components: - - pos: 49.5,-20.5 - parent: 60 - type: Transform - - inputs: - MedicalScannerReceiver: - - port: MedicalScannerSender - uid: 3112 - type: SignalReceiver -- uid: 3116 - type: WallReinforced - components: - - pos: 29.5,-15.5 - parent: 60 - type: Transform -- uid: 3117 - type: WallReinforced - components: - - pos: 31.5,-15.5 - parent: 60 - type: Transform -- uid: 3118 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-10.5 - parent: 60 - type: Transform -- uid: 3119 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-10.5 - parent: 60 - type: Transform -- uid: 3120 - type: Poweredlight - components: - - pos: 47.5,-20.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3121 - type: Poweredlight - components: - - pos: 51.5,-20.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3122 - type: GasPipeFourway - components: - - pos: 46.5,-15.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 3123 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3124 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-20.5 - parent: 60 - type: Transform -- uid: 3125 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-14.5 - parent: 60 - type: Transform -- uid: 3126 - type: GasPipeFourway - components: - - pos: 48.5,-13.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 3127 - type: AirlockMedicalGlassLocked - components: - - name: Cryonics - type: MetaData - - pos: 46.5,-13.5 - parent: 60 - type: Transform -- uid: 3128 - type: TableWood - components: - - pos: 23.5,-19.5 - parent: 60 - type: Transform -- uid: 3129 - type: GasPipeFourway - components: - - pos: 45.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3130 - type: WallSolid - components: - - pos: 41.5,-18.5 - parent: 60 - type: Transform -- uid: 3131 - type: ReinforcedWindow - components: - - pos: 32.5,-59.5 - parent: 60 - type: Transform -- uid: 3132 - type: ReinforcedWindow - components: - - pos: 30.5,-59.5 - parent: 60 - type: Transform -- uid: 3133 - type: CableApcExtension - components: - - pos: -62.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3134 - type: Grille - components: - - pos: -59.5,-25.5 - parent: 60 - type: Transform -- uid: 3135 - type: WallSolid - components: - - pos: -54.5,-12.5 - parent: 60 - type: Transform -- uid: 3136 - type: Bucket - components: - - pos: -63.538498,-15.372797 - parent: 60 - type: Transform -- uid: 3137 - type: DonkpocketBoxSpawner - components: - - pos: -62.5,-15.5 - parent: 60 - type: Transform -- uid: 3138 - type: BoxLightbulb - components: - - pos: -53.44693,-13.445581 - parent: 60 - type: Transform -- uid: 3139 - type: CableApcExtension - components: - - pos: -58.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3140 - type: ReinforcedWindow - components: - - pos: -64.5,-9.5 - parent: 60 - type: Transform -- uid: 3141 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-11.5 - parent: 60 - type: Transform -- uid: 3142 - type: NitrogenCanister - components: - - pos: 27.5,-51.5 - parent: 60 - type: Transform -- uid: 3143 - type: StorageCanister - components: - - pos: 26.5,-51.5 - parent: 60 - type: Transform -- uid: 3144 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-51.5 - parent: 60 - type: Transform -- uid: 3145 - type: FirelockGlass - components: - - pos: 42.5,-42.5 - parent: 60 - type: Transform -- uid: 3146 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-51.5 - parent: 60 - type: Transform -- uid: 3147 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-51.5 - parent: 60 - type: Transform -- uid: 3148 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-13.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 3149 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,-0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3150 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-42.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3151 - type: PoweredSmallLight - components: - - pos: 39.5,-50.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3152 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-51.5 - parent: 60 - type: Transform -- uid: 3153 - type: ExtinguisherCabinetFilled - components: - - pos: 2.5,-31.5 - parent: 60 - type: Transform -- uid: 3154 - type: ComputerTechnologyDiskTerminal - components: - - rot: -1.5707963267948966 rad - pos: -46.5,17.5 - parent: 60 - type: Transform -- uid: 3155 - type: Table - components: - - pos: -46.5,11.5 - parent: 60 - type: Transform -- uid: 3156 - type: RandomVendingDrinks - components: - - pos: 8.5,-19.5 - parent: 60 - type: Transform -- uid: 3157 - type: ClothingHeadsetMedicalScience - components: - - pos: -41.419903,14.639698 - parent: 60 - type: Transform -- uid: 3158 - type: PottedPlant11 - components: - - pos: -51.5,11.5 - parent: 60 - type: Transform -- uid: 3159 - type: WallReinforced - components: - - pos: -42.5,27.5 - parent: 60 - type: Transform -- uid: 3160 - type: CableHV - components: - - pos: 6.5,-37.5 - parent: 60 - type: Transform -- uid: 3161 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-14.5 - parent: 60 - type: Transform -- uid: 3162 - type: WallSolid - components: - - pos: 30.5,-34.5 - parent: 60 - type: Transform -- uid: 3163 - type: WallSolid - components: - - pos: 33.5,-34.5 - parent: 60 - type: Transform -- uid: 3164 - type: Window - components: - - pos: 31.5,-34.5 - parent: 60 - type: Transform -- uid: 3165 - type: Window - components: - - pos: 32.5,-34.5 - parent: 60 - type: Transform -- uid: 3166 - type: Grille - components: - - pos: 32.5,-34.5 - parent: 60 - type: Transform -- uid: 3167 - type: Grille - components: - - pos: 31.5,-34.5 - parent: 60 - type: Transform -- uid: 3168 - type: VendingMachineHydrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 30.5,-35.5 - parent: 60 - type: Transform -- uid: 3169 - type: LockerBotanistFilled - components: - - pos: 31.5,-35.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3170 - type: SignBio - components: - - pos: 49.5,-31.5 - parent: 60 - type: Transform -- uid: 3171 - type: WallReinforced - components: - - pos: 53.5,-19.5 - parent: 60 - type: Transform -- uid: 3172 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-36.5 - parent: 60 - type: Transform -- uid: 3173 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-37.5 - parent: 60 - type: Transform -- uid: 3174 - type: WallSolidRust - components: - - pos: 42.5,-39.5 - parent: 60 - type: Transform -- uid: 3175 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-39.5 - parent: 60 - type: Transform -- uid: 3176 - type: WallSolidRust - components: - - pos: 43.5,-38.5 - parent: 60 - type: Transform -- uid: 3177 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-21.5 - parent: 60 - type: Transform -- uid: 3178 - type: ClothingOuterCoatBomber - components: - - pos: 41.548428,-37.343697 - parent: 60 - type: Transform -- uid: 3179 - type: ClothingShoesFlippers - components: - - pos: 41.610928,-37.92182 - parent: 60 - type: Transform -- uid: 3180 - type: ClothingHeadHatFez - components: - - pos: 41.532803,-36.60932 - parent: 60 - type: Transform -- uid: 3181 - type: RandomSpawner - components: - - pos: 35.5,-40.5 - parent: 60 - type: Transform -- uid: 3182 - type: RandomSpawner - components: - - pos: 42.5,-38.5 - parent: 60 - type: Transform -- uid: 3183 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-38.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3184 - type: PoweredSmallLight - components: - - pos: 29.5,-39.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3185 - type: CableMV - components: - - pos: -55.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3186 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3187 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3188 - type: SignCryogenicsMed - components: - - pos: 46.5,-15.5 - parent: 60 - type: Transform -- uid: 3189 - type: AirlockMedicalGlassLocked - components: - - pos: 36.5,-20.5 - parent: 60 - type: Transform -- uid: 3190 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3191 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3192 - type: Window - components: - - pos: 42.5,-19.5 - parent: 60 - type: Transform -- uid: 3193 - type: GasPipeStraight - components: - - pos: 45.5,-21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3194 - type: GasPipeFourway - components: - - pos: 44.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3195 - type: WallReinforced - components: - - pos: 46.5,-15.5 - parent: 60 - type: Transform -- uid: 3196 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3197 - type: GasVentPump - components: - - pos: -27.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3198 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -26.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3199 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3200 - type: ReinforcedWindow - components: - - pos: 40.5,-15.5 - parent: 60 - type: Transform -- uid: 3201 - type: ExtinguisherCabinetFilled - components: - - pos: 46.5,-24.5 - parent: 60 - type: Transform -- uid: 3202 - type: ExtinguisherCabinetFilled - components: - - rot: 3.141592653589793 rad - pos: 22.5,-37.5 - parent: 60 - type: Transform -- uid: 3203 - type: CableMV - components: - - pos: -52.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3204 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3205 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3206 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-22.5 - parent: 60 - type: Transform -- uid: 3207 - type: SawAdvanced - components: - - pos: 38.653675,-14.181274 - parent: 60 - type: Transform - - nextAttack: 2893.4892888 - type: MeleeWeapon -- uid: 3208 - type: WallSolid - components: - - pos: 42.5,-18.5 - parent: 60 - type: Transform -- uid: 3209 - type: Grille - components: - - pos: 46.5,-12.5 - parent: 60 - type: Transform -- uid: 3210 - type: Grille - components: - - pos: 40.5,-18.5 - parent: 60 - type: Transform -- uid: 3211 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3212 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3213 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-19.5 - parent: 60 - type: Transform -- uid: 3214 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-15.5 - parent: 60 - type: Transform -- uid: 3215 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-19.5 - parent: 60 - type: Transform -- uid: 3216 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 48.5,-14.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 3217 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3218 - type: WallReinforced - components: - - pos: -62.5,-7.5 - parent: 60 - type: Transform -- uid: 3219 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3220 - type: GasPipeTJunction - components: - - pos: 45.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3221 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-15.5 - parent: 60 - type: Transform -- uid: 3222 - type: ReinforcedWindow - components: - - pos: 46.5,-12.5 - parent: 60 - type: Transform -- uid: 3223 - type: TintedWindow - components: - - pos: 31.5,-20.5 - parent: 60 - type: Transform -- uid: 3224 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3225 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3226 - type: WallSolidRust - components: - - pos: 16.5,-42.5 - parent: 60 - type: Transform -- uid: 3227 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-42.5 - parent: 60 - type: Transform -- uid: 3228 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-43.5 - parent: 60 - type: Transform -- uid: 3229 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-43.5 - parent: 60 - type: Transform -- uid: 3230 - type: Bed - components: - - pos: 48.5,-34.5 - parent: 60 - type: Transform -- uid: 3231 - type: BedsheetSpawner - components: - - pos: 48.5,-34.5 - parent: 60 - type: Transform -- uid: 3232 - type: CableMV - components: - - pos: 39.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3233 - type: AirlockExternalGlassShuttleEscape - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-46.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3234 - type: FirelockGlass - components: - - pos: 23.5,-50.5 - parent: 60 - type: Transform -- uid: 3235 - type: ClosetEmergencyFilledRandom - components: - - pos: 21.5,-51.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3236 - type: Rack - components: - - pos: 22.5,-51.5 - parent: 60 - type: Transform -- uid: 3237 - type: ClothingOuterPoncho - components: - - pos: 22.509872,-51.419544 - parent: 60 - type: Transform -- uid: 3238 - type: WallReinforced - components: - - pos: 23.5,-47.5 - parent: 60 - type: Transform -- uid: 3239 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-49.5 - parent: 60 - type: Transform -- uid: 3240 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-49.5 - parent: 60 - type: Transform -- uid: 3241 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-49.5 - parent: 60 - type: Transform -- uid: 3242 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-49.5 - parent: 60 - type: Transform -- uid: 3243 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-49.5 - parent: 60 - type: Transform -- uid: 3244 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-49.5 - parent: 60 - type: Transform -- uid: 3245 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-49.5 - parent: 60 - type: Transform -- uid: 3246 - type: CableApcExtension - components: - - pos: -60.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3247 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-49.5 - parent: 60 - type: Transform -- uid: 3248 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-49.5 - parent: 60 - type: Transform -- uid: 3249 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-49.5 - parent: 60 - type: Transform -- uid: 3250 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-49.5 - parent: 60 - type: Transform -- uid: 3251 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-49.5 - parent: 60 - type: Transform -- uid: 3252 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-49.5 - parent: 60 - type: Transform -- uid: 3253 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-49.5 - parent: 60 - type: Transform -- uid: 3254 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-49.5 - parent: 60 - type: Transform -- uid: 3255 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-49.5 - parent: 60 - type: Transform -- uid: 3256 - type: WallReinforced - components: - - pos: 39.5,-45.5 - parent: 60 - type: Transform -- uid: 3257 - type: FirelockGlass - components: - - pos: 40.5,-51.5 - parent: 60 - type: Transform -- uid: 3258 - type: FirelockGlass - components: - - pos: 23.5,-51.5 - parent: 60 - type: Transform -- uid: 3259 - type: WallReinforced - components: - - pos: 24.5,-47.5 - parent: 60 - type: Transform -- uid: 3260 - type: WallReinforced - components: - - pos: 24.5,-45.5 - parent: 60 - type: Transform -- uid: 3261 - type: WallReinforced - components: - - pos: 38.5,-47.5 - parent: 60 - type: Transform -- uid: 3262 - type: WallReinforced - components: - - pos: 39.5,-44.5 - parent: 60 - type: Transform -- uid: 3263 - type: TobaccoSeeds - components: - - pos: -56.586422,-21.669033 - parent: 60 - type: Transform -- uid: 3264 - type: WallReinforced - components: - - pos: 30.5,-48.5 - parent: 60 - type: Transform -- uid: 3265 - type: WallReinforced - components: - - pos: 30.5,-47.5 - parent: 60 - type: Transform -- uid: 3266 - type: WallReinforced - components: - - pos: 32.5,-47.5 - parent: 60 - type: Transform -- uid: 3267 - type: WallReinforced - components: - - pos: 32.5,-48.5 - parent: 60 - type: Transform -- uid: 3268 - type: ClothingHeadHatXmasCrown - components: - - pos: 22.494247,-51.263294 - parent: 60 - type: Transform -- uid: 3269 - type: WindoorSecure - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-46.5 - parent: 60 - type: Transform -- uid: 3270 - type: OxygenCanister - components: - - pos: 25.5,-48.5 - parent: 60 - type: Transform -- uid: 3271 - type: WallReinforced - components: - - pos: 39.5,-47.5 - parent: 60 - type: Transform -- uid: 3272 - type: WallReinforced - components: - - pos: 37.5,-42.5 - parent: 60 - type: Transform -- uid: 3273 - type: AirCanister - components: - - pos: 28.5,-43.5 - parent: 60 - type: Transform -- uid: 3274 - type: AirCanister - components: - - pos: 29.5,-43.5 - parent: 60 - type: Transform -- uid: 3275 - type: SignSpace - components: - - pos: 30.5,-49.5 - parent: 60 - type: Transform -- uid: 3276 - type: WallReinforced - components: - - pos: 29.5,-51.5 - parent: 60 - type: Transform -- uid: 3277 - type: WallReinforced - components: - - pos: 30.5,-51.5 - parent: 60 - type: Transform -- uid: 3278 - type: WallReinforced - components: - - pos: 32.5,-51.5 - parent: 60 - type: Transform -- uid: 3279 - type: WallReinforced - components: - - pos: 33.5,-51.5 - parent: 60 - type: Transform -- uid: 3280 - type: WallReinforced - components: - - pos: 36.5,-52.5 - parent: 60 - type: Transform -- uid: 3281 - type: WallReinforced - components: - - pos: 35.5,-52.5 - parent: 60 - type: Transform -- uid: 3282 - type: WallReinforced - components: - - pos: 26.5,-52.5 - parent: 60 - type: Transform -- uid: 3283 - type: OxygenCanister - components: - - pos: 28.5,-51.5 - parent: 60 - type: Transform -- uid: 3284 - type: WallReinforced - components: - - pos: 37.5,-52.5 - parent: 60 - type: Transform -- uid: 3285 - type: WallReinforced - components: - - pos: 42.5,-52.5 - parent: 60 - type: Transform -- uid: 3286 - type: WallReinforced - components: - - pos: 41.5,-52.5 - parent: 60 - type: Transform -- uid: 3287 - type: WallReinforced - components: - - pos: 40.5,-52.5 - parent: 60 - type: Transform -- uid: 3288 - type: WallReinforced - components: - - pos: 39.5,-52.5 - parent: 60 - type: Transform -- uid: 3289 - type: WallReinforced - components: - - pos: 38.5,-52.5 - parent: 60 - type: Transform -- uid: 3290 - type: WallReinforced - components: - - pos: 20.5,-52.5 - parent: 60 - type: Transform -- uid: 3291 - type: WallReinforced - components: - - pos: 20.5,-51.5 - parent: 60 - type: Transform -- uid: 3292 - type: WallSolid - components: - - pos: 18.5,-47.5 - parent: 60 - type: Transform -- uid: 3293 - type: WallSolid - components: - - pos: 17.5,-47.5 - parent: 60 - type: Transform -- uid: 3294 - type: WallSolidRust - components: - - pos: 15.5,-47.5 - parent: 60 - type: Transform -- uid: 3295 - type: WallSolidRust - components: - - pos: 14.5,-47.5 - parent: 60 - type: Transform -- uid: 3296 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-42.5 - parent: 60 - type: Transform -- uid: 3297 - type: WallReinforced - components: - - pos: 34.5,-52.5 - parent: 60 - type: Transform -- uid: 3298 - type: WallReinforced - components: - - pos: 25.5,-52.5 - parent: 60 - type: Transform -- uid: 3299 - type: WallReinforced - components: - - pos: 24.5,-52.5 - parent: 60 - type: Transform -- uid: 3300 - type: WallReinforced - components: - - pos: 23.5,-52.5 - parent: 60 - type: Transform -- uid: 3301 - type: WallReinforced - components: - - pos: 21.5,-52.5 - parent: 60 - type: Transform -- uid: 3302 - type: WallReinforced - components: - - pos: 22.5,-52.5 - parent: 60 - type: Transform -- uid: 3303 - type: WallReinforced - components: - - pos: 43.5,-51.5 - parent: 60 - type: Transform -- uid: 3304 - type: WallReinforced - components: - - pos: 43.5,-50.5 - parent: 60 - type: Transform -- uid: 3305 - type: WallReinforced - components: - - pos: 43.5,-49.5 - parent: 60 - type: Transform -- uid: 3306 - type: WallReinforced - components: - - pos: 43.5,-48.5 - parent: 60 - type: Transform -- uid: 3307 - type: WallReinforced - components: - - pos: 43.5,-47.5 - parent: 60 - type: Transform -- uid: 3308 - type: WallReinforced - components: - - pos: 58.5,-48.5 - parent: 60 - type: Transform -- uid: 3309 - type: MaterialWoodPlank - components: - - pos: 46.458164,-47.47581 - parent: 60 - type: Transform -- uid: 3310 - type: Barricade - components: - - pos: 43.5,-44.5 - parent: 60 - type: Transform -- uid: 3311 - type: WallSolid - components: - - pos: 44.5,-43.5 - parent: 60 - type: Transform -- uid: 3312 - type: WallSolidRust - components: - - pos: 43.5,-43.5 - parent: 60 - type: Transform -- uid: 3313 - type: WallReinforced - components: - - pos: 60.5,-43.5 - parent: 60 - type: Transform -- uid: 3314 - type: UprightPianoInstrument - components: - - rot: 3.141592653589793 rad - pos: 45.5,-44.5 - parent: 60 - type: Transform -- uid: 3315 - type: WallReinforced - components: - - pos: 29.5,-52.5 - parent: 60 - type: Transform -- uid: 3316 - type: LockerWeldingSuppliesFilled - components: - - pos: 30.5,-53.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3317 - type: WallReinforced - components: - - pos: 29.5,-54.5 - parent: 60 - type: Transform -- uid: 3318 - type: WallReinforced - components: - - pos: 29.5,-55.5 - parent: 60 - type: Transform -- uid: 3319 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-35.5 - parent: 60 - type: Transform -- uid: 3320 - type: SubstationBasic - components: - - name: North Disposals Sub - type: MetaData - - pos: -11.5,-34.5 - parent: 60 - type: Transform -- uid: 3321 - type: WallReinforced - components: - - pos: 33.5,-55.5 - parent: 60 - type: Transform -- uid: 3322 - type: WallReinforced - components: - - pos: 33.5,-54.5 - parent: 60 - type: Transform -- uid: 3323 - type: WallReinforced - components: - - pos: 33.5,-53.5 - parent: 60 - type: Transform -- uid: 3324 - type: WallReinforced - components: - - pos: 33.5,-52.5 - parent: 60 - type: Transform -- uid: 3325 - type: ClothingHeadHatWeldingMaskFlameBlue - components: - - pos: 30.909067,-53.56561 - parent: 60 - type: Transform -- uid: 3326 - type: ReinforcedWindow - components: - - pos: 30.5,-58.5 - parent: 60 - type: Transform -- uid: 3327 - type: Grille - components: - - pos: 30.5,-57.5 - parent: 60 - type: Transform -- uid: 3328 - type: WallSolid - components: - - pos: -62.5,-10.5 - parent: 60 - type: Transform -- uid: 3329 - type: Grille - components: - - pos: 32.5,-57.5 - parent: 60 - type: Transform -- uid: 3330 - type: Grille - components: - - pos: 32.5,-56.5 - parent: 60 - type: Transform -- uid: 3331 - type: PosterContrabandPunchShit - components: - - pos: -61.5,-11.5 - parent: 60 - type: Transform -- uid: 3332 - type: Grille - components: - - pos: 32.5,-58.5 - parent: 60 - type: Transform -- uid: 3333 - type: Grille - components: - - pos: 30.5,-56.5 - parent: 60 - type: Transform -- uid: 3334 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 31.5,-56.5 - parent: 60 - type: Transform -- uid: 3335 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 31.5,-59.5 - parent: 60 - type: Transform -- uid: 3336 - type: BoxLatexGloves - components: - - pos: 52.61781,-27.622787 - parent: 60 - type: Transform -- uid: 3337 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 30.5,-55.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 3338 - type: ComputerSolarControl - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-55.5 - parent: 60 - type: Transform -- uid: 3339 - type: APCBasic - components: - - pos: 30.5,-51.5 - parent: 60 - type: Transform - - startingCharge: 12000 - type: Battery - - loadingNetworkDemand: 50 - currentReceiving: 50.009815 - currentSupply: 50 - type: PowerNetworkBattery -- uid: 3340 - type: BiomassReclaimer - components: - - pos: 39.5,-5.5 - parent: 60 - type: Transform -- uid: 3341 - type: DrinkSakeGlass - components: - - pos: -12.321286,-52.441586 - parent: 60 - type: Transform -- uid: 3342 - type: WallReinforced - components: - - pos: 27.5,-52.5 - parent: 60 - type: Transform -- uid: 3343 - type: WallReinforced - components: - - pos: 28.5,-52.5 - parent: 60 - type: Transform -- uid: 3344 - type: WallReinforced - components: - - pos: -29.5,12.5 - parent: 60 - type: Transform -- uid: 3345 - type: AirlockEngineeringLocked - components: - - name: solars - type: MetaData - - pos: 31.5,-51.5 - parent: 60 - type: Transform -- uid: 3346 - type: TintedWindow - components: - - pos: -57.5,-12.5 - parent: 60 - type: Transform -- uid: 3347 - type: Window - components: - - pos: -56.5,-15.5 - parent: 60 - type: Transform -- uid: 3348 - type: CableApcExtension - components: - - pos: -64.5,7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3349 - type: CableApcExtension - components: - - pos: -65.5,11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3350 - type: CableApcExtension - components: - - pos: -62.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3351 - type: Chair - components: - - pos: -66.5,8.5 - parent: 60 - type: Transform -- uid: 3352 - type: WallSolidRust - components: - - pos: -62.5,8.5 - parent: 60 - type: Transform -- uid: 3353 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -68.5,6.5 - parent: 60 - type: Transform -- uid: 3354 - type: WallSolid - components: - - pos: -62.5,6.5 - parent: 60 - type: Transform -- uid: 3355 - type: WallSolid - components: - - pos: -62.5,11.5 - parent: 60 - type: Transform -- uid: 3356 - type: AirlockMaintLocked - components: - - pos: -62.5,12.5 - parent: 60 - type: Transform -- uid: 3357 - type: CableApcExtension - components: - - pos: -64.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3358 - type: CableApcExtension - components: - - pos: -65.5,9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3359 - type: ReinforcedWindow - components: - - pos: -54.5,-30.5 - parent: 60 - type: Transform -- uid: 3360 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -68.5,7.5 - parent: 60 - type: Transform -- uid: 3361 - type: ClothingHandsGlovesLeather - components: - - pos: -61.517765,-24.494505 - parent: 60 - type: Transform -- uid: 3362 - type: OxygenCanister - components: - - pos: -61.5,-8.5 - parent: 60 - type: Transform -- uid: 3363 - type: WallSolid - components: - - pos: -60.5,-7.5 - parent: 60 - type: Transform -- uid: 3364 - type: Catwalk - components: - - pos: -60.5,-18.5 - parent: 60 - type: Transform -- uid: 3365 - type: Grille - components: - - pos: -60.5,-8.5 - parent: 60 - type: Transform -- uid: 3366 - type: WallSolid - components: - - pos: -62.5,-8.5 - parent: 60 - type: Transform -- uid: 3367 - type: ClothingHeadHelmetEVA - components: - - pos: -63.563213,-8.4334 - parent: 60 - type: Transform -- uid: 3368 - type: WardrobeBlackFilled - components: - - pos: -62.5,-11.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3369 - type: WallReinforced - components: - - pos: -66.5,5.5 - parent: 60 - type: Transform -- uid: 3370 - type: AirlockMaintLocked - components: - - pos: -42.5,-31.5 - parent: 60 - type: Transform -- uid: 3371 - type: ReinforcedWindow - components: - - pos: -64.5,-2.5 - parent: 60 - type: Transform -- uid: 3372 - type: hydroponicsTray - components: - - pos: -60.5,-24.5 - parent: 60 - type: Transform -- uid: 3373 - type: WallReinforced - components: - - pos: -55.5,-23.5 - parent: 60 - type: Transform -- uid: 3374 - type: WallReinforced - components: - - pos: 2.5,-38.5 - parent: 60 - type: Transform -- uid: 3375 - type: RandomSpawner - components: - - pos: -61.5,-6.5 - parent: 60 - type: Transform -- uid: 3376 - type: WallSolid - components: - - pos: -57.5,-20.5 - parent: 60 - type: Transform -- uid: 3377 - type: CableApcExtension - components: - - pos: -66.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3378 - type: CableHV - components: - - pos: -65.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3379 - type: Grille - components: - - pos: -68.5,-19.5 - parent: 60 - type: Transform -- uid: 3380 - type: ClosetEmergencyFilledRandom - components: - - pos: -63.5,-19.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3381 - type: Grille - components: - - pos: -68.5,-17.5 - parent: 60 - type: Transform -- uid: 3382 - type: CableMV - components: - - pos: -63.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3383 - type: CableHV - components: - - pos: -63.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3384 - type: CableApcExtension - components: - - pos: -63.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3385 - type: WallSolid - components: - - pos: -54.5,-20.5 - parent: 60 - type: Transform -- uid: 3386 - type: WallSolidRust - components: - - pos: -59.5,-15.5 - parent: 60 - type: Transform -- uid: 3387 - type: WallReinforced - components: - - pos: -63.5,-22.5 - parent: 60 - type: Transform -- uid: 3388 - type: ReinforcedWindow - components: - - pos: -64.5,-13.5 - parent: 60 - type: Transform -- uid: 3389 - type: Grille - components: - - pos: 2.5,-36.5 - parent: 60 - type: Transform -- uid: 3390 - type: APCBasic - components: - - pos: -60.5,-16.5 - parent: 60 - type: Transform -- uid: 3391 - type: WallSolid - components: - - pos: -54.5,-21.5 - parent: 60 - type: Transform -- uid: 3392 - type: WallReinforced - components: - - pos: -57.5,-25.5 - parent: 60 - type: Transform -- uid: 3393 - type: WallSolid - components: - - pos: -61.5,-16.5 - parent: 60 - type: Transform -- uid: 3394 - type: WardrobeMixedFilled - components: - - pos: -55.5,-19.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3395 - type: CableHV - components: - - pos: -52.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3396 - type: CableHV - components: - - pos: -62.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3397 - type: CableApcExtension - components: - - pos: -68.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3398 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 3.5,-38.5 - parent: 60 - type: Transform -- uid: 3399 - type: WallSolid - components: - - pos: -54.5,-17.5 - parent: 60 - type: Transform -- uid: 3400 - type: ReinforcedWindow - components: - - pos: -59.5,-25.5 - parent: 60 - type: Transform -- uid: 3401 - type: WallReinforced - components: - - pos: -55.5,-25.5 - parent: 60 - type: Transform -- uid: 3402 - type: GeneratorBasic - components: - - pos: -62.5,-21.5 - parent: 60 - type: Transform -- uid: 3403 - type: CableApcExtension - components: - - pos: -59.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3404 - type: WallReinforced - components: - - pos: -64.5,-10.5 - parent: 60 - type: Transform -- uid: 3405 - type: CableApcExtension - components: - - pos: -59.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3406 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3407 - type: TableGlass - components: - - pos: -63.5,-11.5 - parent: 60 - type: Transform -- uid: 3408 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -61.5,-11.5 - parent: 60 - type: Transform -- uid: 3409 - type: WallSolid - components: - - pos: -54.5,-13.5 - parent: 60 - type: Transform -- uid: 3410 - type: Grille - components: - - pos: -58.5,-25.5 - parent: 60 - type: Transform -- uid: 3411 - type: Grille - components: - - pos: -64.5,-13.5 - parent: 60 - type: Transform -- uid: 3412 - type: WallSolid - components: - - pos: -60.5,-10.5 - parent: 60 - type: Transform -- uid: 3413 - type: PosterContrabandPunchShit - components: - - pos: -60.5,-11.5 - parent: 60 - type: Transform -- uid: 3414 - type: GalaxythistleSeeds - components: - - pos: -56.367672,-21.840908 - parent: 60 - type: Transform -- uid: 3415 - type: AirlockMaintGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-18.5 - parent: 60 - type: Transform -- uid: 3416 - type: CableApcExtension - components: - - pos: -59.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3417 - type: WallReinforced - components: - - pos: -64.5,-15.5 - parent: 60 - type: Transform -- uid: 3418 - type: CableMV - components: - - pos: -57.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3419 - type: CableApcExtension - components: - - pos: -65.5,6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3420 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 55.5,4.5 - parent: 60 - type: Transform -- uid: 3421 - type: Grille - components: - - pos: 53.5,-14.5 - parent: 60 - type: Transform -- uid: 3422 - type: Grille - components: - - pos: 53.5,-16.5 - parent: 60 - type: Transform -- uid: 3423 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -43.5,32.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 3424 - type: WallSolid - components: - - pos: 59.5,-26.5 - parent: 60 - type: Transform -- uid: 3425 - type: WallSolidRust - components: - - pos: 59.5,-25.5 - parent: 60 - type: Transform -- uid: 3426 - type: WallSolid - components: - - pos: 59.5,-29.5 - parent: 60 - type: Transform -- uid: 3427 - type: WallSolid - components: - - pos: 59.5,-30.5 - parent: 60 - type: Transform -- uid: 3428 - type: WallSolid - components: - - pos: 59.5,-31.5 - parent: 60 - type: Transform -- uid: 3429 - type: WallSolid - components: - - pos: 56.5,-16.5 - parent: 60 - type: Transform -- uid: 3430 - type: WallSolid - components: - - pos: 55.5,-16.5 - parent: 60 - type: Transform -- uid: 3431 - type: WallSolid - components: - - pos: 55.5,-17.5 - parent: 60 - type: Transform -- uid: 3432 - type: WallReinforced - components: - - pos: 56.5,-28.5 - parent: 60 - type: Transform -- uid: 3433 - type: Grille - components: - - pos: 56.5,-31.5 - parent: 60 - type: Transform -- uid: 3434 - type: WallSolidRust - components: - - pos: 59.5,-28.5 - parent: 60 - type: Transform -- uid: 3435 - type: WallReinforced - components: - - pos: -44.5,-26.5 - parent: 60 - type: Transform -- uid: 3436 - type: WallReinforced - components: - - pos: -52.5,-27.5 - parent: 60 - type: Transform -- uid: 3437 - type: Grille - components: - - pos: 57.5,-36.5 - parent: 60 - type: Transform -- uid: 3438 - type: PosterContrabandHackingGuide - components: - - pos: 11.5,16.5 - parent: 60 - type: Transform -- uid: 3439 - type: ReinforcedWindow - components: - - pos: 56.5,-26.5 - parent: 60 - type: Transform -- uid: 3440 - type: CrateEngineeringCableHV - components: - - pos: 32.5,-52.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 3441 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-54.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3442 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-16.5 - parent: 60 - type: Transform -- uid: 3443 - type: ReinforcedWindow - components: - - pos: 56.5,-27.5 - parent: 60 - type: Transform -- uid: 3444 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-14.5 - parent: 60 - type: Transform -- uid: 3445 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-13.5 - parent: 60 - type: Transform -- uid: 3446 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-18.5 - parent: 60 - type: Transform -- uid: 3447 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-17.5 - parent: 60 - type: Transform -- uid: 3448 - type: WallReinforced - components: - - pos: 56.5,-29.5 - parent: 60 - type: Transform -- uid: 3449 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-15.5 - parent: 60 - type: Transform -- uid: 3450 - type: ReinforcedWindow - components: - - pos: 56.5,-31.5 - parent: 60 - type: Transform -- uid: 3451 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-13.5 - parent: 60 - type: Transform -- uid: 3452 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-12.5 - parent: 60 - type: Transform -- uid: 3453 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-11.5 - parent: 60 - type: Transform -- uid: 3454 - type: Table - components: - - pos: 54.5,-35.5 - parent: 60 - type: Transform -- uid: 3455 - type: Window - components: - - pos: 49.5,-39.5 - parent: 60 - type: Transform -- uid: 3456 - type: Barricade - components: - - pos: 48.5,-38.5 - parent: 60 - type: Transform -- uid: 3457 - type: ShardGlass - components: - - pos: 57.37223,-38.42935 - parent: 60 - type: Transform -- uid: 3458 - type: Table - components: - - pos: 54.5,-36.5 - parent: 60 - type: Transform -- uid: 3459 - type: Window - components: - - pos: 47.5,-39.5 - parent: 60 - type: Transform -- uid: 3460 - type: Table - components: - - pos: 51.5,-36.5 - parent: 60 - type: Transform -- uid: 3461 - type: ShardGlass - components: - - pos: 57.55973,-38.569977 - parent: 60 - type: Transform -- uid: 3462 - type: Table - components: - - pos: 50.5,-36.5 - parent: 60 - type: Transform -- uid: 3463 - type: WallSolidRust - components: - - pos: 47.5,-36.5 - parent: 60 - type: Transform -- uid: 3464 - type: TableReinforced - components: - - pos: 51.5,-34.5 - parent: 60 - type: Transform -- uid: 3465 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 51.5,-37.5 - parent: 60 - type: Transform -- uid: 3466 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 53.5,-37.5 - parent: 60 - type: Transform -- uid: 3467 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-36.5 - parent: 60 - type: Transform -- uid: 3468 - type: CableApcExtension - components: - - pos: 52.5,-36.5 - parent: 60 - type: Transform -- uid: 3469 - type: CableHV - components: - - pos: 31.5,-7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3470 - type: ReinforcedWindow - components: - - pos: 60.5,-35.5 - parent: 60 - type: Transform -- uid: 3471 - type: CableHV - components: - - pos: 62.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3472 - type: WallReinforced - components: - - pos: 60.5,-33.5 - parent: 60 - type: Transform -- uid: 3473 - type: WallReinforced - components: - - pos: 60.5,-32.5 - parent: 60 - type: Transform -- uid: 3474 - type: CableHV - components: - - pos: 64.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3475 - type: WallReinforced - components: - - pos: 60.5,-36.5 - parent: 60 - type: Transform -- uid: 3476 - type: WallReinforced - components: - - pos: 60.5,-41.5 - parent: 60 - type: Transform -- uid: 3477 - type: FirelockGlass - components: - - pos: 59.5,-33.5 - parent: 60 - type: Transform -- uid: 3478 - type: SolarPanel - components: - - pos: -82.5,-20.5 - parent: 60 - type: Transform -- uid: 3479 - type: SolarPanel - components: - - pos: -76.5,-12.5 - parent: 60 - type: Transform -- uid: 3480 - type: SolarPanel - components: - - pos: -72.5,-19.5 - parent: 60 - type: Transform -- uid: 3481 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 58.5,10.5 - parent: 60 - type: Transform -- uid: 3482 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 60.5,-24.5 - parent: 60 - type: Transform -- uid: 3483 - type: AirlockMaintLocked - components: - - pos: 54.5,-46.5 - parent: 60 - type: Transform -- uid: 3484 - type: AirlockMaintLocked - components: - - pos: 50.5,-46.5 - parent: 60 - type: Transform -- uid: 3485 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-24.5 - parent: 60 - type: Transform -- uid: 3486 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-23.5 - parent: 60 - type: Transform -- uid: 3487 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-22.5 - parent: 60 - type: Transform -- uid: 3488 - type: Grille - components: - - pos: 46.5,-56.5 - parent: 60 - type: Transform -- uid: 3489 - type: WallSolidRust - components: - - pos: 55.5,-18.5 - parent: 60 - type: Transform -- uid: 3490 - type: WallSolidRust - components: - - pos: 55.5,-19.5 - parent: 60 - type: Transform -- uid: 3491 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 56.5,-24.5 - parent: 60 - type: Transform -- uid: 3492 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 55.5,-24.5 - parent: 60 - type: Transform -- uid: 3493 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-33.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver -- uid: 3494 - type: WallSolid - components: - - pos: 55.5,-20.5 - parent: 60 - type: Transform -- uid: 3495 - type: WallSolid - components: - - pos: 55.5,-22.5 - parent: 60 - type: Transform -- uid: 3496 - type: WallSolidRust - components: - - pos: 56.5,-22.5 - parent: 60 - type: Transform -- uid: 3497 - type: WallSolid - components: - - pos: 57.5,-22.5 - parent: 60 - type: Transform -- uid: 3498 - type: CableHV - components: - - pos: 46.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3499 - type: CableHV - components: - - pos: 52.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3500 - type: AirlockHeadOfPersonnelLocked - components: - - pos: 6.5,-31.5 - parent: 60 - type: Transform -- uid: 3501 - type: ReinforcedWindow - components: - - pos: 55.5,-33.5 - parent: 60 - type: Transform -- uid: 3502 - type: ClosetBase - components: - - pos: 57.5,-32.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3503 - type: ReinforcedWindow - components: - - pos: 54.5,-33.5 - parent: 60 - type: Transform -- uid: 3504 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-33.5 - parent: 60 - type: Transform -- uid: 3505 - type: FirelockGlass - components: - - pos: 15.5,-31.5 - parent: 60 - type: Transform -- uid: 3506 - type: CableApcExtension - components: - - pos: 55.5,-36.5 - parent: 60 - type: Transform -- uid: 3507 - type: TableReinforced - components: - - pos: 15.5,-34.5 - parent: 60 - type: Transform -- uid: 3508 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-33.5 - parent: 60 - type: Transform -- uid: 3509 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-32.5 - parent: 60 - type: Transform -- uid: 3510 - type: TintedWindow - components: - - pos: 51.5,-43.5 - parent: 60 - type: Transform -- uid: 3511 - type: WallSolidRust - components: - - pos: 46.5,-38.5 - parent: 60 - type: Transform -- uid: 3512 - type: Grille - components: - - pos: 49.5,-39.5 - parent: 60 - type: Transform -- uid: 3513 - type: WallSolid - components: - - pos: 50.5,-39.5 - parent: 60 - type: Transform -- uid: 3514 - type: WallSolidRust - components: - - pos: 57.5,-35.5 - parent: 60 - type: Transform -- uid: 3515 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 56.5,-35.5 - parent: 60 - type: Transform -- uid: 3516 - type: MinimoogInstrument - components: - - rot: 3.141592653589793 rad - pos: 56.5,-34.5 - parent: 60 - type: Transform -- uid: 3517 - type: WallSolid - components: - - pos: 57.5,-39.5 - parent: 60 - type: Transform -- uid: 3518 - type: WallSolid - components: - - pos: 56.5,-39.5 - parent: 60 - type: Transform -- uid: 3519 - type: Grille - components: - - pos: 55.5,-39.5 - parent: 60 - type: Transform -- uid: 3520 - type: Window - components: - - pos: 55.5,-39.5 - parent: 60 - type: Transform -- uid: 3521 - type: WallSolid - components: - - pos: 52.5,-39.5 - parent: 60 - type: Transform -- uid: 3522 - type: WallSolid - components: - - pos: 53.5,-39.5 - parent: 60 - type: Transform -- uid: 3523 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -43.5,36.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 3524 - type: MaintenanceToolSpawner - components: - - pos: 54.5,-36.5 - parent: 60 - type: Transform -- uid: 3525 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: 45.5,-36.5 - parent: 60 - type: Transform -- uid: 3526 - type: PoweredlightSodium - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-37.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3527 - type: PoweredSmallLight - components: - - pos: 54.5,-40.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3528 - type: RandomSpawner - components: - - pos: 59.5,-35.5 - parent: 60 - type: Transform -- uid: 3529 - type: RandomSpawner - components: - - pos: 46.5,-40.5 - parent: 60 - type: Transform -- uid: 3530 - type: ClothingOuterCoatGentle - components: - - pos: 51.556362,-34.423466 - parent: 60 - type: Transform -- uid: 3531 - type: WallSolidRust - components: - - pos: 20.5,-50.5 - parent: 60 - type: Transform -- uid: 3532 - type: PoweredlightSodium - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-35.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3533 - type: WeldingFuelTankFull - components: - - pos: 56.5,-40.5 - parent: 60 - type: Transform -- uid: 3534 - type: CableApcExtension - components: - - pos: 52.5,-35.5 - parent: 60 - type: Transform -- uid: 3535 - type: SheetSteel - components: - - pos: 50.57873,-36.45204 - parent: 60 - type: Transform -- uid: 3536 - type: ComputerTelevision - components: - - pos: 50.5,-34.5 - parent: 60 - type: Transform -- uid: 3537 - type: ClothingHeadHatUshanka - components: - - pos: 45.47332,-37.318718 - parent: 60 - type: Transform -- uid: 3538 - type: WallSolid - components: - - pos: 57.5,-34.5 - parent: 60 - type: Transform -- uid: 3539 - type: CableApcExtension - components: - - pos: 49.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3540 - type: WallSolid - components: - - pos: 54.5,-39.5 - parent: 60 - type: Transform -- uid: 3541 - type: BarSignTheLooseGoose - components: - - pos: 53.5,-39.5 - parent: 60 - type: Transform -- uid: 3542 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-32.5 - parent: 60 - type: Transform -- uid: 3543 - type: Catwalk - components: - - pos: 45.5,-41.5 - parent: 60 - type: Transform -- uid: 3544 - type: CableHV - components: - - pos: 52.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3545 - type: GrilleBroken - components: - - pos: 57.5,-38.5 - parent: 60 - type: Transform -- uid: 3546 - type: ClosetMaintenanceFilledRandom - components: - - pos: 52.5,-40.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3547 - type: CableApcExtension - components: - - pos: 50.5,-37.5 - parent: 60 - type: Transform -- uid: 3548 - type: Window - components: - - pos: 48.5,-43.5 - parent: 60 - type: Transform -- uid: 3549 - type: WallSolid - components: - - pos: 45.5,-43.5 - parent: 60 - type: Transform -- uid: 3550 - type: Table - components: - - pos: 53.5,-36.5 - parent: 60 - type: Transform -- uid: 3551 - type: Grille - components: - - pos: 51.5,-39.5 - parent: 60 - type: Transform -- uid: 3552 - type: WallSolid - components: - - pos: 40.5,-49.5 - parent: 60 - type: Transform -- uid: 3553 - type: FirelockGlass - components: - - pos: 21.5,-43.5 - parent: 60 - type: Transform -- uid: 3554 - type: WallReinforced - components: - - pos: 23.5,-48.5 - parent: 60 - type: Transform -- uid: 3555 - type: FirelockGlass - components: - - pos: 40.5,-50.5 - parent: 60 - type: Transform -- uid: 3556 - type: CableHV - components: - - pos: -84.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3557 - type: WallReinforced - components: - - pos: 62.5,-30.5 - parent: 60 - type: Transform -- uid: 3558 - type: WallReinforced - components: - - pos: 62.5,-29.5 - parent: 60 - type: Transform -- uid: 3559 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 20.5,-30.5 - parent: 60 - type: Transform -- uid: 3560 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 54.5,-24.5 - parent: 60 - type: Transform -- uid: 3561 - type: GasPipeStraight - components: - - pos: 45.5,-33.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3562 - type: GasPipeStraight - components: - - pos: 45.5,-34.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3563 - type: GasPipeStraight - components: - - pos: 45.5,-35.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3564 - type: GasPipeStraight - components: - - pos: 45.5,-37.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3565 - type: GasPipeStraight - components: - - pos: 45.5,-36.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3566 - type: GasPipeStraight - components: - - pos: 45.5,-38.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3567 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 45.5,-39.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3568 - type: GasPipeStraight - components: - - pos: 44.5,-25.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3569 - type: GasPipeStraight - components: - - pos: 44.5,-26.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3570 - type: GasPipeStraight - components: - - pos: 44.5,-27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3571 - type: GasPipeStraight - components: - - pos: 44.5,-28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3572 - type: GasPipeStraight - components: - - pos: 44.5,-29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3573 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-29.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3574 - type: GasPipeStraight - components: - - pos: 44.5,-31.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3575 - type: GasPipeStraight - components: - - pos: 44.5,-32.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3576 - type: GasPipeStraight - components: - - pos: 44.5,-33.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3577 - type: GasPipeStraight - components: - - pos: 44.5,-34.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3578 - type: GasPipeStraight - components: - - pos: 44.5,-35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3579 - type: GasPipeStraight - components: - - pos: 44.5,-36.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3580 - type: GasPipeStraight - components: - - pos: 44.5,-37.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3581 - type: GasPipeStraight - components: - - pos: 44.5,-38.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3582 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 44.5,-39.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3583 - type: Barricade - components: - - pos: 56.5,-38.5 - parent: 60 - type: Transform -- uid: 3584 - type: CableHV - components: - - pos: 63.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3585 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-29.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3586 - type: PoweredSmallLight - components: - - pos: 57.5,-23.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3587 - type: WallReinforced - components: - - pos: 62.5,-28.5 - parent: 60 - type: Transform -- uid: 3588 - type: ChairOfficeDark - components: - - pos: -47.5,12.5 - parent: 60 - type: Transform -- uid: 3589 - type: RandomSpawner - components: - - pos: 8.5,-41.5 - parent: 60 - type: Transform -- uid: 3590 - type: RandomSpawner - components: - - pos: 23.5,-24.5 - parent: 60 - type: Transform -- uid: 3591 - type: PosterContrabandSyndicatePistol - components: - - pos: 13.5,-42.5 - parent: 60 - type: Transform -- uid: 3592 - type: RandomPosterContraband - components: - - pos: 18.5,-45.5 - parent: 60 - type: Transform -- uid: 3593 - type: RandomPosterContraband - components: - - pos: 12.5,-44.5 - parent: 60 - type: Transform -- uid: 3594 - type: PoweredSmallLight - components: - - pos: 19.5,-43.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3595 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-43.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3596 - type: ClothingUniformJumpsuitDetective - components: - - pos: 13.486058,-44.506237 - parent: 60 - type: Transform -- uid: 3597 - type: ClothingEyesGlassesGarGiga - components: - - pos: 14.470102,-43.56056 - parent: 60 - type: Transform -- uid: 3598 - type: ClothingUniformJumpsuitDetectiveGrey - components: - - pos: -64.47217,0.5909052 - parent: 60 - type: Transform -- uid: 3599 - type: WallSolidRust - components: - - pos: 12.5,-44.5 - parent: 60 - type: Transform -- uid: 3600 - type: CrateEngineeringCableBulk - components: - - pos: 15.5,-43.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 3601 - type: ToolboxElectricalFilled - components: - - pos: 13.501785,-43.4016 - parent: 60 - type: Transform -- uid: 3602 - type: AirCanister - components: - - pos: 16.5,-43.5 - parent: 60 - type: Transform -- uid: 3603 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: 14.501785,-43.49535 - parent: 60 - type: Transform -- uid: 3604 - type: Rack - components: - - pos: 13.5,-43.5 - parent: 60 - type: Transform -- uid: 3605 - type: Multitool - components: - - pos: 10.459295,-43.523453 - parent: 60 - type: Transform -- uid: 3606 - type: ClosetFireFilled - components: - - pos: 19.5,-44.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3607 - type: ClosetEmergencyFilledRandom - components: - - pos: 19.5,-43.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3608 - type: Rack - components: - - pos: 10.5,-43.5 - parent: 60 - type: Transform -- uid: 3609 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-45.5 - parent: 60 - type: Transform -- uid: 3610 - type: FirelockGlass - components: - - pos: 54.5,-18.5 - parent: 60 - type: Transform -- uid: 3611 - type: WallSolidRust - components: - - pos: 10.5,-42.5 - parent: 60 - type: Transform -- uid: 3612 - type: WallSolidRust - components: - - pos: 14.5,-42.5 - parent: 60 - type: Transform -- uid: 3613 - type: WallSolidRust - components: - - pos: 16.5,-45.5 - parent: 60 - type: Transform -- uid: 3614 - type: WallSolidRust - components: - - pos: 15.5,-42.5 - parent: 60 - type: Transform -- uid: 3615 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-44.5 - parent: 60 - type: Transform -- uid: 3616 - type: WallSolidRust - components: - - pos: 16.5,-47.5 - parent: 60 - type: Transform -- uid: 3617 - type: FirelockGlass - components: - - pos: 58.5,-33.5 - parent: 60 - type: Transform -- uid: 3618 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3619 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3620 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3621 - type: RandomSpawner - components: - - pos: 1.5,-46.5 - parent: 60 - type: Transform -- uid: 3622 - type: MaintenanceWeaponSpawner - components: - - pos: -50.5,-34.5 - parent: 60 - type: Transform -- uid: 3623 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 6.5,-28.5 - parent: 60 - type: Transform -- uid: 3624 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-47.5 - parent: 60 - type: Transform -- uid: 3625 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-47.5 - parent: 60 - type: Transform -- uid: 3626 - type: WallSolidRust - components: - - pos: 15.5,-50.5 - parent: 60 - type: Transform -- uid: 3627 - type: WallSolidRust - components: - - pos: 12.5,-45.5 - parent: 60 - type: Transform -- uid: 3628 - type: WallSolid - components: - - pos: 20.5,-49.5 - parent: 60 - type: Transform -- uid: 3629 - type: WallSolidRust - components: - - pos: 10.5,-47.5 - parent: 60 - type: Transform -- uid: 3630 - type: WallSolid - components: - - pos: 19.5,-47.5 - parent: 60 - type: Transform -- uid: 3631 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-47.5 - parent: 60 - type: Transform -- uid: 3632 - type: WallSolidRust - components: - - pos: 20.5,-47.5 - parent: 60 - type: Transform -- uid: 3633 - type: PoweredSmallLight - components: - - pos: 48.5,-34.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3634 - type: WallSolidRust - components: - - pos: 57.5,-43.5 - parent: 60 - type: Transform -- uid: 3635 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-42.5 - parent: 60 - type: Transform -- uid: 3636 - type: Stool - components: - - pos: 47.5,-37.5 - parent: 60 - type: Transform -- uid: 3637 - type: WoodDoor - components: - - pos: 57.5,-37.5 - parent: 60 - type: Transform -- uid: 3638 - type: RandomInstruments - components: - - pos: 42.5,-37.5 - parent: 60 - type: Transform -- uid: 3639 - type: TableReinforced - components: - - pos: 52.5,-34.5 - parent: 60 - type: Transform -- uid: 3640 - type: BoozeDispenser - components: - - pos: 52.5,-34.5 - parent: 60 - type: Transform -- uid: 3641 - type: CarpetSBlue - components: - - pos: 3.5,-31.5 - parent: 60 - type: Transform -- uid: 3642 - type: WallSolid - components: - - pos: -5.5,-29.5 - parent: 60 - type: Transform -- uid: 3643 - type: RandomPosterLegit - components: - - pos: -14.5,-28.5 - parent: 60 - type: Transform -- uid: 3644 - type: RandomPosterLegit - components: - - pos: -17.5,-25.5 - parent: 60 - type: Transform -- uid: 3645 - type: RandomPosterLegit - components: - - pos: -25.5,-31.5 - parent: 60 - type: Transform -- uid: 3646 - type: WallReinforced - components: - - pos: -37.5,-29.5 - parent: 60 - type: Transform -- uid: 3647 - type: RandomPosterLegit - components: - - pos: 59.5,-29.5 - parent: 60 - type: Transform -- uid: 3648 - type: PosterLegitDickGumshue - components: - - pos: 18.5,-47.5 - parent: 60 - type: Transform -- uid: 3649 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 50.5,-37.5 - parent: 60 - type: Transform -- uid: 3650 - type: Grille - components: - - pos: 37.5,-55.5 - parent: 60 - type: Transform -- uid: 3651 - type: Grille - components: - - pos: 38.5,-55.5 - parent: 60 - type: Transform -- uid: 3652 - type: Grille - components: - - pos: 46.5,-55.5 - parent: 60 - type: Transform -- uid: 3653 - type: Grille - components: - - pos: 47.5,-55.5 - parent: 60 - type: Transform -- uid: 3654 - type: Grille - components: - - pos: 48.5,-55.5 - parent: 60 - type: Transform -- uid: 3655 - type: WallSolidRust - components: - - pos: 8.5,-42.5 - parent: 60 - type: Transform -- uid: 3656 - type: WallReinforced - components: - - pos: 59.5,-48.5 - parent: 60 - type: Transform -- uid: 3657 - type: WallReinforced - components: - - pos: 59.5,-47.5 - parent: 60 - type: Transform -- uid: 3658 - type: WallReinforced - components: - - pos: 62.5,-31.5 - parent: 60 - type: Transform -- uid: 3659 - type: WallReinforced - components: - - pos: 62.5,-27.5 - parent: 60 - type: Transform -- uid: 3660 - type: WallReinforced - components: - - pos: 62.5,-26.5 - parent: 60 - type: Transform -- uid: 3661 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-55.5 - parent: 60 - type: Transform -- uid: 3662 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-55.5 - parent: 60 - type: Transform -- uid: 3663 - type: CableApcExtension - components: - - pos: 9.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3664 - type: AirlockMaintBarLocked - components: - - name: Tender Room Maint - type: MetaData - - pos: 10.5,-38.5 - parent: 60 - type: Transform -- uid: 3665 - type: WallReinforced - components: - - pos: -32.5,-25.5 - parent: 60 - type: Transform -- uid: 3666 - type: WallReinforced - components: - - pos: -37.5,-25.5 - parent: 60 - type: Transform -- uid: 3667 - type: WallReinforced - components: - - pos: -38.5,-25.5 - parent: 60 - type: Transform -- uid: 3668 - type: WallReinforced - components: - - pos: -39.5,-25.5 - parent: 60 - type: Transform -- uid: 3669 - type: WallReinforced - components: - - pos: 6.5,-36.5 - parent: 60 - type: Transform -- uid: 3670 - type: AirlockMaintHOPLocked - components: - - name: EVA Storage Maint - type: MetaData - - pos: 6.5,-37.5 - parent: 60 - type: Transform -- uid: 3671 - type: WallReinforced - components: - - pos: 6.5,-38.5 - parent: 60 - type: Transform -- uid: 3672 - type: WallReinforced - components: - - pos: 6.5,-39.5 - parent: 60 - type: Transform -- uid: 3673 - type: WallReinforced - components: - - pos: 6.5,-40.5 - parent: 60 - type: Transform -- uid: 3674 - type: WallReinforced - components: - - pos: 5.5,-40.5 - parent: 60 - type: Transform -- uid: 3675 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-42.5 - parent: 60 - type: Transform -- uid: 3676 - type: LockerBoozeFilled - components: - - pos: 47.5,-34.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3677 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-42.5 - parent: 60 - type: Transform -- uid: 3678 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-42.5 - parent: 60 - type: Transform -- uid: 3679 - type: WallSolid - components: - - pos: 2.5,-42.5 - parent: 60 - type: Transform -- uid: 3680 - type: WallSolidRust - components: - - pos: -10.5,-49.5 - parent: 60 - type: Transform -- uid: 3681 - type: WallReinforced - components: - - pos: 4.5,-40.5 - parent: 60 - type: Transform -- uid: 3682 - type: WallReinforced - components: - - pos: 3.5,-40.5 - parent: 60 - type: Transform -- uid: 3683 - type: WallReinforced - components: - - pos: 2.5,-40.5 - parent: 60 - type: Transform -- uid: 3684 - type: WallReinforced - components: - - pos: 2.5,-39.5 - parent: 60 - type: Transform -- uid: 3685 - type: CableHV - components: - - pos: 0.5,-36.5 - parent: 60 - type: Transform -- uid: 3686 - type: CableApcExtension - components: - - pos: 4.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3687 - type: CarpetSBlue - components: - - pos: 3.5,-32.5 - parent: 60 - type: Transform -- uid: 3688 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-21.5 - parent: 60 - type: Transform -- uid: 3689 - type: WindoorScienceLocked - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-4.5 - parent: 60 - type: Transform -- uid: 3690 - type: Window - components: - - pos: -40.5,21.5 - parent: 60 - type: Transform -- uid: 3691 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-10.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3692 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3693 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3694 - type: Catwalk - components: - - pos: 63.5,-28.5 - parent: 60 - type: Transform -- uid: 3695 - type: AirlockMaintGlassLocked - components: - - pos: 55.5,-21.5 - parent: 60 - type: Transform -- uid: 3696 - type: Catwalk - components: - - pos: 63.5,-29.5 - parent: 60 - type: Transform -- uid: 3697 - type: Catwalk - components: - - pos: 61.5,-15.5 - parent: 60 - type: Transform -- uid: 3698 - type: Catwalk - components: - - pos: 59.5,-15.5 - parent: 60 - type: Transform -- uid: 3699 - type: Catwalk - components: - - pos: 60.5,-15.5 - parent: 60 - type: Transform -- uid: 3700 - type: Catwalk - components: - - pos: 63.5,-30.5 - parent: 60 - type: Transform -- uid: 3701 - type: ReinforcedWindow - components: - - pos: 57.5,-12.5 - parent: 60 - type: Transform -- uid: 3702 - type: WallReinforced - components: - - pos: 57.5,-14.5 - parent: 60 - type: Transform -- uid: 3703 - type: WallReinforced - components: - - pos: 57.5,-15.5 - parent: 60 - type: Transform -- uid: 3704 - type: ReinforcedWindow - components: - - pos: 57.5,-11.5 - parent: 60 - type: Transform -- uid: 3705 - type: Grille - components: - - pos: 57.5,-13.5 - parent: 60 - type: Transform -- uid: 3706 - type: Grille - components: - - pos: 57.5,-12.5 - parent: 60 - type: Transform -- uid: 3707 - type: WallSolid - components: - - pos: 54.5,-8.5 - parent: 60 - type: Transform -- uid: 3708 - type: WallSolid - components: - - pos: 55.5,-9.5 - parent: 60 - type: Transform -- uid: 3709 - type: WallSolid - components: - - pos: 42.5,-11.5 - parent: 60 - type: Transform -- uid: 3710 - type: Catwalk - components: - - pos: 63.5,-31.5 - parent: 60 - type: Transform -- uid: 3711 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3712 - type: HandheldGPSBasic - components: - - pos: 41.539692,-1.4414581 - parent: 60 - type: Transform -- uid: 3713 - type: WallSolid - components: - - pos: 40.5,-11.5 - parent: 60 - type: Transform -- uid: 3714 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-11.5 - parent: 60 - type: Transform -- uid: 3715 - type: WallSolid - components: - - pos: 47.5,-43.5 - parent: 60 - type: Transform -- uid: 3716 - type: WallSolid - components: - - pos: 56.5,-43.5 - parent: 60 - type: Transform -- uid: 3717 - type: WallSolid - components: - - pos: 53.5,-43.5 - parent: 60 - type: Transform -- uid: 3718 - type: WallSolid - components: - - pos: 52.5,-43.5 - parent: 60 - type: Transform -- uid: 3719 - type: WallSolid - components: - - pos: 49.5,-43.5 - parent: 60 - type: Transform -- uid: 3720 - type: WaterTankFull - components: - - pos: 57.5,-40.5 - parent: 60 - type: Transform -- uid: 3721 - type: CableApcExtension - components: - - pos: 45.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3722 - type: ReinforcedWindow - components: - - pos: -18.5,0.5 - parent: 60 - type: Transform -- uid: 3723 - type: CableHV - components: - - pos: 63.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3724 - type: WallReinforced - components: - - pos: 60.5,-34.5 - parent: 60 - type: Transform -- uid: 3725 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 63.5,-38.5 - parent: 60 - type: Transform -- uid: 3726 - type: Catwalk - components: - - pos: 51.5,-41.5 - parent: 60 - type: Transform -- uid: 3727 - type: ClothingHeadHatUshanka - components: - - pos: 45.301445,-37.131218 - parent: 60 - type: Transform -- uid: 3728 - type: WoodDoor - components: - - pos: 48.5,-39.5 - parent: 60 - type: Transform -- uid: 3729 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 51.5,16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3730 - type: CableHV - components: - - pos: 46.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3731 - type: CableHV - components: - - pos: 64.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3732 - type: WallReinforced - components: - - pos: 60.5,-39.5 - parent: 60 - type: Transform -- uid: 3733 - type: WallReinforced - components: - - pos: 63.5,-36.5 - parent: 60 - type: Transform -- uid: 3734 - type: WallReinforced - components: - - pos: 62.5,-36.5 - parent: 60 - type: Transform -- uid: 3735 - type: WallReinforced - components: - - pos: 61.5,-36.5 - parent: 60 - type: Transform -- uid: 3736 - type: AirlockGlass - components: - - pos: -12.5,9.5 - parent: 60 - type: Transform -- uid: 3737 - type: ShuttersNormalOpen - components: - - pos: -18.5,0.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3741 - type: SignalReceiver -- uid: 3738 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-38.5 - parent: 60 - type: Transform -- uid: 3739 - type: ReinforcedWindow - components: - - pos: 54.5,19.5 - parent: 60 - type: Transform -- uid: 3740 - type: AirCanister - components: - - pos: 53.5,-40.5 - parent: 60 - type: Transform -- uid: 3741 - type: SignalButton - components: - - pos: -20.5,-1.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3737 - - port: Toggle - uid: 1022 - type: SignalTransmitter -- uid: 3742 - type: Grille - components: - - pos: -18.5,1.5 - parent: 60 - type: Transform -- uid: 3743 - type: ClothingOuterCoatPirate - components: - - pos: 38.58114,-43.78636 - parent: 60 - type: Transform -- uid: 3744 - type: ClothingHeadHatPirate - components: - - pos: 38.55543,-43.35227 - parent: 60 - type: Transform -- uid: 3745 - type: SignEVA - components: - - pos: 2.5,-38.5 - parent: 60 - type: Transform -- uid: 3746 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 61.5,-24.5 - parent: 60 - type: Transform -- uid: 3747 - type: CableApcExtension - components: - - pos: 38.5,-7.5 - parent: 60 - type: Transform -- uid: 3748 - type: SolarPanel - components: - - pos: -86.5,-21.5 - parent: 60 - type: Transform -- uid: 3749 - type: SolarPanel - components: - - pos: -84.5,-21.5 - parent: 60 - type: Transform -- uid: 3750 - type: SolarPanel - components: - - pos: -84.5,-23.5 - parent: 60 - type: Transform -- uid: 3751 - type: SolarPanel - components: - - pos: -86.5,-19.5 - parent: 60 - type: Transform -- uid: 3752 - type: SolarPanel - components: - - pos: -84.5,-19.5 - parent: 60 - type: Transform -- uid: 3753 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 61.5,-31.5 - parent: 60 - type: Transform -- uid: 3754 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 60.5,-31.5 - parent: 60 - type: Transform -- uid: 3755 - type: SubstationBasic - components: - - name: Spare Substation - type: MetaData - - pos: 60.5,-25.5 - parent: 60 - type: Transform -- uid: 3756 - type: CrateEngineeringCableMV - components: - - pos: 60.5,-30.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 3757 - type: RandomSpawner - components: - - pos: 60.5,-27.5 - parent: 60 - type: Transform -- uid: 3758 - type: RandomSpawner - components: - - pos: 44.5,-4.5 - parent: 60 - type: Transform -- uid: 3759 - type: RandomSpawner - components: - - pos: 24.5,-50.5 - parent: 60 - type: Transform -- uid: 3760 - type: RandomSpawner - components: - - pos: 22.5,-42.5 - parent: 60 - type: Transform -- uid: 3761 - type: Rack - components: - - pos: 23.5,-42.5 - parent: 60 - type: Transform -- uid: 3762 - type: Welder - components: - - pos: 23.547552,-42.46652 - parent: 60 - type: Transform -- uid: 3763 - type: Rack - components: - - pos: 44.5,-42.5 - parent: 60 - type: Transform -- uid: 3764 - type: Multitool - components: - - pos: 44.514137,-42.46652 - parent: 60 - type: Transform -- uid: 3765 - type: WallReinforced - components: - - pos: -56.5,-25.5 - parent: 60 - type: Transform -- uid: 3766 - type: WallReinforced - components: - - pos: -61.5,-25.5 - parent: 60 - type: Transform -- uid: 3767 - type: WallReinforced - components: - - pos: -52.5,-25.5 - parent: 60 - type: Transform -- uid: 3768 - type: WallReinforced - components: - - pos: -51.5,-25.5 - parent: 60 - type: Transform -- uid: 3769 - type: UnfinishedMachineFrame - components: - - pos: -65.5,13.5 - parent: 60 - type: Transform -- uid: 3770 - type: Grille - components: - - pos: -64.5,-2.5 - parent: 60 - type: Transform -- uid: 3771 - type: Grille - components: - - pos: -87.5,-10.5 - parent: 60 - type: Transform -- uid: 3772 - type: CarpetSBlue - components: - - pos: 4.5,-32.5 - parent: 60 - type: Transform -- uid: 3773 - type: ReinforcedWindow - components: - - pos: -25.5,-21.5 - parent: 60 - type: Transform -- uid: 3774 - type: CableApcExtension - components: - - pos: 5.5,-37.5 - parent: 60 - type: Transform -- uid: 3775 - type: Rack - components: - - pos: 3.5,-36.5 - parent: 60 - type: Transform -- uid: 3776 - type: CableHV - components: - - pos: 2.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3777 - type: CableHV - components: - - pos: -0.5,-40.5 - parent: 60 - type: Transform -- uid: 3778 - type: TableWood - components: - - pos: 4.5,-31.5 - parent: 60 - type: Transform -- uid: 3779 - type: CableHV - components: - - pos: 0.5,-35.5 - parent: 60 - type: Transform -- uid: 3780 - type: CarpetSBlue - components: - - pos: 4.5,-31.5 - parent: 60 - type: Transform -- uid: 3781 - type: AirlockBrigLocked - components: - - name: Lawyer's Office - type: MetaData - - pos: -47.5,-20.5 - parent: 60 - type: Transform -- uid: 3782 - type: CableHV - components: - - pos: 1.5,-36.5 - parent: 60 - type: Transform -- uid: 3783 - type: CableHV - components: - - pos: -0.5,-38.5 - parent: 60 - type: Transform -- uid: 3784 - type: CableHV - components: - - pos: 1.5,-39.5 - parent: 60 - type: Transform -- uid: 3785 - type: Grille - components: - - pos: 22.5,-72.5 - parent: 60 - type: Transform -- uid: 3786 - type: Grille - components: - - pos: 22.5,-73.5 - parent: 60 - type: Transform -- uid: 3787 - type: AirlockBrigLocked - components: - - name: Lawyer's Office - type: MetaData - - pos: -47.5,-16.5 - parent: 60 - type: Transform -- uid: 3788 - type: GrilleBroken - components: - - pos: 22.5,-61.5 - parent: 60 - type: Transform -- uid: 3789 - type: SignDirectionalSolar - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-40.5 - parent: 60 - type: Transform -- uid: 3790 - type: Grille - components: - - pos: 22.5,-77.5 - parent: 60 - type: Transform -- uid: 3791 - type: Grille - components: - - pos: 22.5,-74.5 - parent: 60 - type: Transform -- uid: 3792 - type: AirCanister - components: - - pos: -15.5,-46.5 - parent: 60 - type: Transform -- uid: 3793 - type: PoweredSmallLight - components: - - pos: 4.5,-41.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3794 - type: AirlockMaintLocked - components: - - pos: 2.5,-41.5 - parent: 60 - type: Transform -- uid: 3795 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-32.5 - parent: 60 - type: Transform -- uid: 3796 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -1.5,-33.5 - parent: 60 - type: Transform -- uid: 3797 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -1.5,-34.5 - parent: 60 - type: Transform -- uid: 3798 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-35.5 - parent: 60 - type: Transform -- uid: 3799 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-36.5 - parent: 60 - type: Transform -- uid: 3800 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -1.5,-37.5 - parent: 60 - type: Transform -- uid: 3801 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -1.5,-33.5 - parent: 60 - type: Transform -- uid: 3802 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-39.5 - parent: 60 - type: Transform -- uid: 3803 - type: SignalButton - components: - - name: inner blast door - type: MetaData - - rot: 3.141592653589793 rad - pos: -16.5,-42.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7729 - type: SignalTransmitter -- uid: 3804 - type: RandomSpawner - components: - - pos: -12.5,-42.5 - parent: 60 - type: Transform -- uid: 3805 - type: TrashBananaPeel - components: - - pos: -20.474174,-44.60662 - parent: 60 - type: Transform -- uid: 3806 - type: WallSolid - components: - - pos: -1.5,-43.5 - parent: 60 - type: Transform -- uid: 3807 - type: Grille - components: - - pos: 33.5,-56.5 - parent: 60 - type: Transform -- uid: 3808 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-46.5 - parent: 60 - type: Transform -- uid: 3809 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -16.5,-39.5 - parent: 60 - type: Transform -- uid: 3810 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -16.5,-40.5 - parent: 60 - type: Transform -- uid: 3811 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -16.5,-41.5 - parent: 60 - type: Transform -- uid: 3812 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-44.5 - parent: 60 - type: Transform -- uid: 3813 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-47.5 - parent: 60 - type: Transform -- uid: 3814 - type: WallSolid - components: - - pos: -14.5,-34.5 - parent: 60 - type: Transform -- uid: 3815 - type: WallSolid - components: - - pos: -13.5,-34.5 - parent: 60 - type: Transform -- uid: 3816 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-32.5 - parent: 60 - type: Transform -- uid: 3817 - type: Grille - components: - - pos: -6.5,-32.5 - parent: 60 - type: Transform -- uid: 3818 - type: Grille - components: - - pos: -7.5,-32.5 - parent: 60 - type: Transform -- uid: 3819 - type: Grille - components: - - pos: -8.5,-32.5 - parent: 60 - type: Transform -- uid: 3820 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-32.5 - parent: 60 - type: Transform -- uid: 3821 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 60 - type: Transform -- uid: 3822 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-32.5 - parent: 60 - type: Transform -- uid: 3823 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-32.5 - parent: 60 - type: Transform -- uid: 3824 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -1.5,-38.5 - parent: 60 - type: Transform -- uid: 3825 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -1.5,-37.5 - parent: 60 - type: Transform -- uid: 3826 - type: APCBasic - components: - - pos: -1.5,-74.5 - parent: 60 - type: Transform -- uid: 3827 - type: PoweredlightLED - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-35.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3828 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -1.5,-38.5 - parent: 60 - type: Transform -- uid: 3829 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -1.5,-34.5 - parent: 60 - type: Transform -- uid: 3830 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-39.5 - parent: 60 - type: Transform -- uid: 3831 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-39.5 - parent: 60 - type: Transform -- uid: 3832 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-39.5 - parent: 60 - type: Transform -- uid: 3833 - type: WallSolid - components: - - pos: -8.5,-39.5 - parent: 60 - type: Transform -- uid: 3834 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-39.5 - parent: 60 - type: Transform -- uid: 3835 - type: Grille - components: - - pos: 29.5,-56.5 - parent: 60 - type: Transform -- uid: 3836 - type: WallSolid - components: - - pos: -6.5,-39.5 - parent: 60 - type: Transform -- uid: 3837 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-39.5 - parent: 60 - type: Transform -- uid: 3838 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-43.5 - parent: 60 - type: Transform -- uid: 3839 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-43.5 - parent: 60 - type: Transform -- uid: 3840 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-43.5 - parent: 60 - type: Transform -- uid: 3841 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-43.5 - parent: 60 - type: Transform -- uid: 3842 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-43.5 - parent: 60 - type: Transform -- uid: 3843 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-43.5 - parent: 60 - type: Transform -- uid: 3844 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-43.5 - parent: 60 - type: Transform -- uid: 3845 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-43.5 - parent: 60 - type: Transform -- uid: 3846 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -16.5,-40.5 - parent: 60 - type: Transform -- uid: 3847 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -16.5,-41.5 - parent: 60 - type: Transform -- uid: 3848 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -16.5,-39.5 - parent: 60 - type: Transform -- uid: 3849 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-47.5 - parent: 60 - type: Transform -- uid: 3850 - type: WallSolidRust - components: - - pos: -17.5,-36.5 - parent: 60 - type: Transform -- uid: 3851 - type: ReinforcedWindow - components: - - pos: -18.5,-44.5 - parent: 60 - type: Transform -- uid: 3852 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-38.5 - parent: 60 - type: Transform -- uid: 3853 - type: ClosetEmergencyFilledRandom - components: - - pos: -28.5,-29.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3854 - type: WallSolid - components: - - pos: -15.5,-38.5 - parent: 60 - type: Transform -- uid: 3855 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-38.5 - parent: 60 - type: Transform -- uid: 3856 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-38.5 - parent: 60 - type: Transform -- uid: 3857 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-38.5 - parent: 60 - type: Transform -- uid: 3858 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-38.5 - parent: 60 - type: Transform -- uid: 3859 - type: WallReinforced - components: - - pos: -9.5,-38.5 - parent: 60 - type: Transform -- uid: 3860 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-43.5 - parent: 60 - type: Transform - - inputs: - Off: - - port: Middle - uid: 938 - Forward: - - port: Left - uid: 938 - Reverse: - - port: Right - uid: 938 - type: SignalReceiver -- uid: 3861 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-42.5 - parent: 60 - type: Transform -- uid: 3862 - type: WallSolid - components: - - pos: 18.5,-42.5 - parent: 60 - type: Transform -- uid: 3863 - type: WallReinforced - components: - - pos: -42.5,-34.5 - parent: 60 - type: Transform -- uid: 3864 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-34.5 - parent: 60 - type: Transform -- uid: 3865 - type: CableApcExtension - components: - - pos: -18.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3866 - type: WallSolid - components: - - pos: -17.5,-35.5 - parent: 60 - type: Transform -- uid: 3867 - type: OxygenCanister - components: - - pos: -19.5,-36.5 - parent: 60 - type: Transform -- uid: 3868 - type: Grille - components: - - pos: -19.5,-35.5 - parent: 60 - type: Transform -- uid: 3869 - type: Grille - components: - - pos: -19.5,-38.5 - parent: 60 - type: Transform -- uid: 3870 - type: AirlockMaintGlassLocked - components: - - name: disposals - type: MetaData - - pos: -14.5,-47.5 - parent: 60 - type: Transform -- uid: 3871 - type: Grille - components: - - pos: -36.5,-29.5 - parent: 60 - type: Transform -- uid: 3872 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-37.5 - parent: 60 - type: Transform -- uid: 3873 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-36.5 - parent: 60 - type: Transform -- uid: 3874 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-35.5 - parent: 60 - type: Transform -- uid: 3875 - type: SubstationBasic - components: - - pos: -7.5,-37.5 - parent: 60 - type: Transform -- uid: 3876 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-38.5 - parent: 60 - type: Transform -- uid: 3877 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-38.5 - parent: 60 - type: Transform -- uid: 3878 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-38.5 - parent: 60 - type: Transform -- uid: 3879 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-38.5 - parent: 60 - type: Transform -- uid: 3880 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-41.5 - parent: 60 - type: Transform -- uid: 3881 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-41.5 - parent: 60 - type: Transform -- uid: 3882 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-41.5 - parent: 60 - type: Transform -- uid: 3883 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-41.5 - parent: 60 - type: Transform -- uid: 3884 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-41.5 - parent: 60 - type: Transform -- uid: 3885 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-41.5 - parent: 60 - type: Transform -- uid: 3886 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-41.5 - parent: 60 - type: Transform -- uid: 3887 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-41.5 - parent: 60 - type: Transform -- uid: 3888 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-41.5 - parent: 60 - type: Transform -- uid: 3889 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-41.5 - parent: 60 - type: Transform -- uid: 3890 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-41.5 - parent: 60 - type: Transform -- uid: 3891 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-41.5 - parent: 60 - type: Transform -- uid: 3892 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-41.5 - parent: 60 - type: Transform -- uid: 3893 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -14.5,-43.5 - parent: 60 - type: Transform -- uid: 3894 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-43.5 - parent: 60 - type: Transform - - inputs: - Off: - - port: Middle - uid: 938 - Forward: - - port: Left - uid: 938 - Reverse: - - port: Right - uid: 938 - type: SignalReceiver -- uid: 3895 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-43.5 - parent: 60 - type: Transform - - inputs: - Off: - - port: Middle - uid: 938 - Forward: - - port: Left - uid: 938 - Reverse: - - port: Right - uid: 938 - type: SignalReceiver -- uid: 3896 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-43.5 - parent: 60 - type: Transform - - inputs: - Off: - - port: Middle - uid: 938 - Forward: - - port: Left - uid: 938 - Reverse: - - port: Right - uid: 938 - type: SignalReceiver -- uid: 3897 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -14.5,-42.5 - parent: 60 - type: Transform -- uid: 3898 - type: Catwalk - components: - - pos: 6.5,-41.5 - parent: 60 - type: Transform -- uid: 3899 - type: Catwalk - components: - - pos: 5.5,-41.5 - parent: 60 - type: Transform -- uid: 3900 - type: AirlockExternalLocked - components: - - pos: -18.5,-38.5 - parent: 60 - type: Transform -- uid: 3901 - type: WallSolid - components: - - pos: -12.5,-32.5 - parent: 60 - type: Transform -- uid: 3902 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-36.5 - parent: 60 - type: Transform -- uid: 3903 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-36.5 - parent: 60 - type: Transform -- uid: 3904 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-36.5 - parent: 60 - type: Transform -- uid: 3905 - type: WallSolid - components: - - pos: -1.5,-40.5 - parent: 60 - type: Transform -- uid: 3906 - type: WallSolid - components: - - pos: -1.5,-42.5 - parent: 60 - type: Transform -- uid: 3907 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-42.5 - parent: 60 - type: Transform -- uid: 3908 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-35.5 - parent: 60 - type: Transform -- uid: 3909 - type: AirlockMaintLocked - components: - - name: disposals - type: MetaData - - pos: -1.5,-41.5 - parent: 60 - type: Transform -- uid: 3910 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-40.5 - parent: 60 - type: Transform -- uid: 3911 - type: WindoorSecure - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-41.5 - parent: 60 - type: Transform -- uid: 3912 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-42.5 - parent: 60 - type: Transform -- uid: 3913 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-36.5 - parent: 60 - type: Transform -- uid: 3914 - type: GasPipeStraight - components: - - pos: 1.5,-36.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3915 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-37.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3916 - type: GasPipeStraight - components: - - pos: 1.5,-38.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3917 - type: GasPipeStraight - components: - - pos: 1.5,-39.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3918 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-39.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3919 - type: GasPipeStraight - components: - - pos: 1.5,-41.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3920 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-40.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3921 - type: GasPipeStraight - components: - - pos: 1.5,-43.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3922 - type: GasPipeStraight - components: - - pos: 1.5,-44.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3923 - type: GasPipeStraight - components: - - pos: 1.5,-45.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3924 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-46.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3925 - type: GasPipeStraight - components: - - pos: -0.5,-44.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3926 - type: GasPipeStraight - components: - - pos: -0.5,-43.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3927 - type: GasPipeStraight - components: - - pos: -0.5,-42.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3928 - type: GasPipeStraight - components: - - pos: -0.5,-41.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3929 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-42.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3930 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-40.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3931 - type: GasPipeStraight - components: - - pos: -0.5,-38.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3932 - type: GasPipeStraight - components: - - pos: -0.5,-37.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3933 - type: GasPipeStraight - components: - - pos: -0.5,-36.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3934 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-42.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3935 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-42.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3936 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-42.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3937 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-42.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3938 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-42.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3939 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-40.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3940 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-40.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3941 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-40.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3942 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-40.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3943 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-42.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3944 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-42.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3945 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-40.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3946 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-42.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3947 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-40.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3948 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-42.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3949 - type: AirlockMaintGlassLocked - components: - - name: disposals - type: MetaData - - pos: -14.5,-38.5 - parent: 60 - type: Transform -- uid: 3950 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,-42.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3951 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-40.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3952 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-42.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3953 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-40.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3954 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-42.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3955 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-40.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3956 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-42.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3957 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-40.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3958 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-42.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3959 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-40.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3960 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -13.5,-40.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3961 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -13.5,-42.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3962 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -7.5,-41.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3963 - type: GasVentScrubber - components: - - pos: -13.5,-39.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3964 - type: GasVentPump - components: - - pos: -13.5,-41.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3965 - type: GasVentPump - components: - - pos: -8.5,-41.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3966 - type: RandomSpawner - components: - - pos: -4.5,-40.5 - parent: 60 - type: Transform -- uid: 3967 - type: ToolboxEmergencyFilled - components: - - pos: 6.5023236,-2.3552408 - parent: 60 - type: Transform -- uid: 3968 - type: PoweredSmallLight - components: - - pos: -13.5,-39.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3969 - type: AirlockAtmosphericsLocked - components: - - pos: -7.5,-39.5 - parent: 60 - type: Transform -- uid: 3970 - type: Rack - components: - - pos: -10.5,-39.5 - parent: 60 - type: Transform -- uid: 3971 - type: Rack - components: - - pos: -11.5,-39.5 - parent: 60 - type: Transform -- uid: 3972 - type: BoxLightMixed - components: - - pos: -10.522405,-39.363266 - parent: 60 - type: Transform -- uid: 3973 - type: OxygenCanister - components: - - pos: -12.5,-39.5 - parent: 60 - type: Transform -- uid: 3974 - type: ToolboxEmergencyFilled - components: - - pos: -11.482529,-39.372665 - parent: 60 - type: Transform -- uid: 3975 - type: Rack - components: - - pos: 7.5,-40.5 - parent: 60 - type: Transform -- uid: 3976 - type: ToolboxMechanicalFilled - components: - - pos: 7.5063043,-40.42767 - parent: 60 - type: Transform -- uid: 3977 - type: PosterContrabandEAT - components: - - pos: -8.5,-39.5 - parent: 60 - type: Transform -- uid: 3978 - type: PosterContrabandEnergySwords - components: - - pos: -8.5,-43.5 - parent: 60 - type: Transform -- uid: 3979 - type: PosterLegitGetYourLEGS - components: - - pos: -4.5,-39.5 - parent: 60 - type: Transform -- uid: 3980 - type: PosterLegitFoamForceAd - components: - - pos: -13.5,-36.5 - parent: 60 - type: Transform -- uid: 3981 - type: WallSolid - components: - - pos: 2.5,-43.5 - parent: 60 - type: Transform -- uid: 3982 - type: WallSolid - components: - - pos: 27.5,-34.5 - parent: 60 - type: Transform -- uid: 3983 - type: GasPipeStraight - components: - - pos: -0.5,-46.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3984 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-45.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3985 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-39.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3986 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-40.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3987 - type: AirlockGlass - components: - - pos: -0.5,-43.5 - parent: 60 - type: Transform -- uid: 3988 - type: AirlockGlass - components: - - pos: 0.5,-43.5 - parent: 60 - type: Transform -- uid: 3989 - type: AirlockGlass - components: - - pos: 1.5,-43.5 - parent: 60 - type: Transform -- uid: 3990 - type: FirelockEdge - components: - - pos: -0.5,-42.5 - parent: 60 - type: Transform -- uid: 3991 - type: FirelockEdge - components: - - pos: 0.5,-42.5 - parent: 60 - type: Transform -- uid: 3992 - type: FirelockEdge - components: - - pos: 1.5,-42.5 - parent: 60 - type: Transform -- uid: 3993 - type: AirlockMaint - components: - - pos: -62.5,-0.5 - parent: 60 - type: Transform -- uid: 3994 - type: SpawnMobMouse - components: - - pos: -58.5,-9.5 - parent: 60 - type: Transform -- uid: 3995 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -67.5,6.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3996 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-24.5 - parent: 60 - type: Transform -- uid: 3997 - type: GasPipeStraight - components: - - pos: -42.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3998 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -54.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3999 - type: AirlockGlass - components: - - pos: -12.5,-24.5 - parent: 60 - type: Transform -- uid: 4000 - type: RandomSpawner - components: - - pos: 29.5,-6.5 - parent: 60 - type: Transform -- uid: 4001 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-23.5 - parent: 60 - type: Transform -- uid: 4002 - type: GasPipeFourway - components: - - pos: -7.5,-40.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4003 - type: Rack - components: - - pos: -14.5,-35.5 - parent: 60 - type: Transform -- uid: 4004 - type: Wrench - components: - - pos: -14.476556,-35.478077 - parent: 60 - type: Transform -- uid: 4005 - type: SignSpace - components: - - pos: -17.5,-35.5 - parent: 60 - type: Transform -- uid: 4006 - type: PoweredSmallLight - components: - - pos: -18.5,-33.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4007 - type: ClosetBase - components: - - pos: -20.5,-28.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4008 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4009 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-42.5 - parent: 60 - type: Transform -- uid: 4010 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-41.5 - parent: 60 - type: Transform -- uid: 4011 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-40.5 - parent: 60 - type: Transform -- uid: 4012 - type: FoodCakeChristmasSlice - components: - - pos: -16.523977,-30.836784 - parent: 60 - type: Transform -- uid: 4013 - type: ClothingHeadHatSantahat - components: - - pos: -15.664602,-30.50866 - parent: 60 - type: Transform -- uid: 4014 - type: PoweredSmallLight - components: - - pos: -16.5,-28.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4015 - type: PosterContrabandPwrGame - components: - - pos: -18.5,-30.5 - parent: 60 - type: Transform -- uid: 4016 - type: RandomSpawner - components: - - pos: -64.5,7.5 - parent: 60 - type: Transform -- uid: 4017 - type: Grille - components: - - pos: -4.5,-17.5 - parent: 60 - type: Transform -- uid: 4018 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4019 - type: ClosetFireFilled - components: - - pos: -28.5,-30.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4020 - type: FirelockGlass - components: - - pos: -19.5,-31.5 - parent: 60 - type: Transform -- uid: 4021 - type: Rack - components: - - pos: -20.5,-29.5 - parent: 60 - type: Transform -- uid: 4022 - type: ToolboxEmergencyFilled - components: - - pos: -20.473125,-29.405912 - parent: 60 - type: Transform -- uid: 4023 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4024 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4025 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4026 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4027 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4028 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4029 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4030 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4031 - type: CableHV - components: - - pos: -89.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4032 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4033 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4034 - type: Grille - components: - - pos: 42.5,-19.5 - parent: 60 - type: Transform -- uid: 4035 - type: WallReinforced - components: - - pos: -31.5,-25.5 - parent: 60 - type: Transform -- uid: 4036 - type: WallReinforced - components: - - pos: -33.5,-25.5 - parent: 60 - type: Transform -- uid: 4037 - type: IntercomMedical - components: - - pos: 35.5,-21.5 - parent: 60 - type: Transform -- uid: 4038 - type: Grille - components: - - pos: -34.5,-29.5 - parent: 60 - type: Transform -- uid: 4039 - type: Grille - components: - - pos: -35.5,-29.5 - parent: 60 - type: Transform -- uid: 4040 - type: WallSolid - components: - - pos: -39.5,-24.5 - parent: 60 - type: Transform -- uid: 4041 - type: AirlockMaintLocked - components: - - pos: -39.5,-23.5 - parent: 60 - type: Transform -- uid: 4042 - type: WallSolid - components: - - pos: -39.5,-22.5 - parent: 60 - type: Transform -- uid: 4043 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-21.5 - parent: 60 - type: Transform -- uid: 4044 - type: WallSolid - components: - - pos: 42.5,-12.5 - parent: 60 - type: Transform -- uid: 4045 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4046 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4047 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4048 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 38.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4049 - type: WallSolid - components: - - pos: -39.5,-15.5 - parent: 60 - type: Transform -- uid: 4050 - type: WallReinforced - components: - - pos: -39.5,-14.5 - parent: 60 - type: Transform -- uid: 4051 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-30.5 - parent: 60 - type: Transform -- uid: 4052 - type: ClosetToolFilled - components: - - pos: -39.5,-30.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4053 - type: Rack - components: - - pos: -40.5,-30.5 - parent: 60 - type: Transform -- uid: 4054 - type: FirelockGlass - components: - - pos: -41.5,-29.5 - parent: 60 - type: Transform -- uid: 4055 - type: WallSolidRust - components: - - pos: -62.5,0.5 - parent: 60 - type: Transform -- uid: 4056 - type: ReinforcedWindow - components: - - pos: -36.5,-29.5 - parent: 60 - type: Transform -- uid: 4057 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-23.5 - parent: 60 - type: Transform -- uid: 4058 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-32.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4059 - type: WallReinforced - components: - - pos: -39.5,-29.5 - parent: 60 - type: Transform -- uid: 4060 - type: WallReinforced - components: - - pos: -38.5,-29.5 - parent: 60 - type: Transform -- uid: 4061 - type: WallReinforced - components: - - pos: -31.5,-29.5 - parent: 60 - type: Transform -- uid: 4062 - type: WallReinforced - components: - - pos: -32.5,-29.5 - parent: 60 - type: Transform -- uid: 4063 - type: WallReinforced - components: - - pos: -33.5,-29.5 - parent: 60 - type: Transform -- uid: 4064 - type: Grille - components: - - pos: -34.5,-25.5 - parent: 60 - type: Transform -- uid: 4065 - type: Grille - components: - - pos: -35.5,-25.5 - parent: 60 - type: Transform -- uid: 4066 - type: Grille - components: - - pos: -36.5,-25.5 - parent: 60 - type: Transform -- uid: 4067 - type: ReinforcedWindow - components: - - pos: -36.5,-25.5 - parent: 60 - type: Transform -- uid: 4068 - type: ReinforcedWindow - components: - - pos: -35.5,-25.5 - parent: 60 - type: Transform -- uid: 4069 - type: ReinforcedWindow - components: - - pos: -34.5,-25.5 - parent: 60 - type: Transform -- uid: 4070 - type: ReinforcedWindow - components: - - pos: -34.5,-29.5 - parent: 60 - type: Transform -- uid: 4071 - type: ReinforcedWindow - components: - - pos: -35.5,-29.5 - parent: 60 - type: Transform -- uid: 4072 - type: IntercomMedical - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-33.5 - parent: 60 - type: Transform -- uid: 4073 - type: Recycler - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-43.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 24108 - Forward: - - port: Left - uid: 24108 - Off: - - port: Middle - uid: 24108 - type: SignalReceiver -- uid: 4074 - type: WallReinforced - components: - - pos: -9.5,-37.5 - parent: 60 - type: Transform -- uid: 4075 - type: ReinforcedWindow - components: - - pos: 29.5,-56.5 - parent: 60 - type: Transform -- uid: 4076 - type: OxygenCanister - components: - - pos: -36.5,-30.5 - parent: 60 - type: Transform -- uid: 4077 - type: Windoor - components: - - pos: -19.5,-17.5 - parent: 60 - type: Transform -- uid: 4078 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: -19.5,-17.5 - parent: 60 - type: Transform -- uid: 4079 - type: DisposalPipe - components: - - pos: 0.5,-11.5 - parent: 60 - type: Transform -- uid: 4080 - type: ReinforcedWindow - components: - - pos: -21.5,-19.5 - parent: 60 - type: Transform -- uid: 4081 - type: WallReinforced - components: - - pos: -29.5,14.5 - parent: 60 - type: Transform -- uid: 4082 - type: DisposalPipe - components: - - pos: -37.5,-20.5 - parent: 60 - type: Transform -- uid: 4083 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 43.5,-42.5 - parent: 60 - type: Transform -- uid: 4084 - type: ReinforcedWindow - components: - - pos: -40.5,-27.5 - parent: 60 - type: Transform -- uid: 4085 - type: WallReinforced - components: - - pos: -40.5,-26.5 - parent: 60 - type: Transform -- uid: 4086 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-44.5 - parent: 60 - type: Transform -- uid: 4087 - type: WallReinforced - components: - - pos: -40.5,-25.5 - parent: 60 - type: Transform -- uid: 4088 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-20.5 - parent: 60 - type: Transform -- uid: 4089 - type: ReinforcedWindow - components: - - pos: 49.5,-15.5 - parent: 60 - type: Transform -- uid: 4090 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-15.5 - parent: 60 - type: Transform -- uid: 4091 - type: Grille - components: - - pos: 49.5,-15.5 - parent: 60 - type: Transform -- uid: 4092 - type: Rack - components: - - pos: 14.5,-43.5 - parent: 60 - type: Transform -- uid: 4093 - type: ClosetEmergencyFilledRandom - components: - - pos: 53.5,-20.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4094 - type: WallSolid - components: - - pos: 40.5,-42.5 - parent: 60 - type: Transform -- uid: 4095 - type: ClosetEmergencyFilledRandom - components: - - pos: -2.5,-40.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4096 - type: ClosetEmergencyFilledRandom - components: - - pos: -15.5,-39.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4097 - type: WelderIndustrial - components: - - pos: -28.451887,32.518173 - parent: 60 - type: Transform -- uid: 4098 - type: Grille - components: - - pos: 32.5,-59.5 - parent: 60 - type: Transform -- uid: 4099 - type: ClosetFireFilled - components: - - pos: -17.5,-28.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4100 - type: ClosetMaintenanceFilledRandom - components: - - pos: -15.5,-28.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4101 - type: ClosetL3JanitorFilled - components: - - pos: -7.5,-26.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4102 - type: ClosetMaintenanceFilledRandom - components: - - pos: 33.5,-39.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4103 - type: ClosetTool - components: - - pos: -3.5,-40.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4104 - type: WallSolid - components: - - pos: 42.5,-14.5 - parent: 60 - type: Transform -- uid: 4105 - type: WallSolid - components: - - pos: 42.5,-15.5 - parent: 60 - type: Transform -- uid: 4106 - type: Poweredlight - components: - - pos: 34.5,-12.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4107 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4108 - type: GasPipeFourway - components: - - pos: 33.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4109 - type: LockerMedicineFilled - components: - - pos: 32.5,-14.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4110 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4111 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4112 - type: GasPipeStraight - components: - - pos: 33.5,-21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4113 - type: EmergencyRollerBed - components: - - pos: 36.402073,-14.447331 - parent: 60 - type: Transform -- uid: 4114 - type: ComfyChair - components: - - pos: 35.5,-12.5 - parent: 60 - type: Transform -- uid: 4115 - type: BoxFolderWhite - components: - - pos: 35.527073,-13.400456 - parent: 60 - type: Transform -- uid: 4116 - type: GasPipeFourway - components: - - pos: 33.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4117 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4118 - type: MedkitCombatFilled - components: - - pos: 36.470272,-13.325863 - parent: 60 - type: Transform -- uid: 4119 - type: ClothingHandsGlovesNitrile - components: - - pos: 29.469002,-12.488527 - parent: 60 - type: Transform -- uid: 4120 - type: TableGlass - components: - - pos: 29.5,-12.5 - parent: 60 - type: Transform -- uid: 4121 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4122 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4123 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4124 - type: SpawnPointChiefMedicalOfficer - components: - - pos: 30.5,-13.5 - parent: 60 - type: Transform -- uid: 4125 - type: BedsheetCMO - components: - - pos: 30.5,-14.5 - parent: 60 - type: Transform -- uid: 4126 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4127 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4128 - type: TableReinforcedGlass - components: - - pos: 34.5,-13.5 - parent: 60 - type: Transform -- uid: 4129 - type: TableReinforcedGlass - components: - - pos: 36.5,-13.5 - parent: 60 - type: Transform -- uid: 4130 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4131 - type: Grille - components: - - pos: 35.5,-15.5 - parent: 60 - type: Transform -- uid: 4132 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4133 - type: ReinforcedWindow - components: - - pos: 36.5,-15.5 - parent: 60 - type: Transform -- uid: 4134 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4135 - type: Grille - components: - - pos: 34.5,-15.5 - parent: 60 - type: Transform -- uid: 4136 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4137 - type: GasPipeTJunction - components: - - pos: 40.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4138 - type: Grille - components: - - pos: 32.5,-15.5 - parent: 60 - type: Transform -- uid: 4139 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4140 - type: SignalButton - components: - - pos: 31.5,-14.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4487 - - port: Toggle - uid: 4496 - - port: Toggle - uid: 4354 - - port: Toggle - uid: 4355 - type: SignalTransmitter -- uid: 4141 - type: WallReinforced - components: - - pos: 37.5,-13.5 - parent: 60 - type: Transform -- uid: 4142 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4143 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4144 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4145 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4146 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4147 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4148 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4149 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4150 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4151 - type: GasPipeStraight - components: - - pos: 33.5,-19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4152 - type: WallSolid - components: - - pos: -39.5,-17.5 - parent: 60 - type: Transform -- uid: 4153 - type: WallReinforced - components: - - pos: -10.5,-21.5 - parent: 60 - type: Transform -- uid: 4154 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4155 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4156 - type: WallSolid - components: - - pos: -40.5,-14.5 - parent: 60 - type: Transform -- uid: 4157 - type: WallReinforced - components: - - pos: -47.5,-14.5 - parent: 60 - type: Transform -- uid: 4158 - type: WallSolid - components: - - pos: -42.5,-27.5 - parent: 60 - type: Transform -- uid: 4159 - type: WallSolid - components: - - pos: -41.5,-22.5 - parent: 60 - type: Transform -- uid: 4160 - type: WallReinforced - components: - - pos: -47.5,-22.5 - parent: 60 - type: Transform -- uid: 4161 - type: WallSolid - components: - - pos: -47.5,-21.5 - parent: 60 - type: Transform -- uid: 4162 - type: TableWood - components: - - pos: -48.5,-17.5 - parent: 60 - type: Transform -- uid: 4163 - type: WallSolid - components: - - pos: -47.5,-19.5 - parent: 60 - type: Transform -- uid: 4164 - type: WallSolid - components: - - pos: -39.5,-22.5 - parent: 60 - type: Transform -- uid: 4165 - type: WallSolid - components: - - pos: -40.5,-22.5 - parent: 60 - type: Transform -- uid: 4166 - type: WallSolid - components: - - pos: -42.5,-22.5 - parent: 60 - type: Transform -- uid: 4167 - type: WallSolid - components: - - pos: -45.5,-22.5 - parent: 60 - type: Transform -- uid: 4168 - type: WallSolid - components: - - pos: -44.5,-22.5 - parent: 60 - type: Transform -- uid: 4169 - type: WallSolid - components: - - pos: -43.5,-22.5 - parent: 60 - type: Transform -- uid: 4170 - type: WallSolid - components: - - pos: -46.5,-22.5 - parent: 60 - type: Transform -- uid: 4171 - type: WallSolid - components: - - pos: -47.5,-17.5 - parent: 60 - type: Transform -- uid: 4172 - type: filingCabinetDrawerRandom - components: - - pos: -48.5,-21.5 - parent: 60 - type: Transform -- uid: 4173 - type: WallSolid - components: - - pos: -47.5,-15.5 - parent: 60 - type: Transform -- uid: 4174 - type: WallSolid - components: - - pos: -46.5,-14.5 - parent: 60 - type: Transform -- uid: 4175 - type: WallSolid - components: - - pos: -45.5,-14.5 - parent: 60 - type: Transform -- uid: 4176 - type: WallSolid - components: - - pos: -44.5,-14.5 - parent: 60 - type: Transform -- uid: 4177 - type: WallSolid - components: - - pos: -43.5,-14.5 - parent: 60 - type: Transform -- uid: 4178 - type: WallSolid - components: - - pos: -42.5,-14.5 - parent: 60 - type: Transform -- uid: 4179 - type: WallSolid - components: - - pos: -41.5,-14.5 - parent: 60 - type: Transform -- uid: 4180 - type: CableHV - components: - - pos: -86.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4181 - type: BedsheetUSA - components: - - pos: -63.5,3.5 - parent: 60 - type: Transform -- uid: 4182 - type: APCBasic - components: - - pos: -46.5,-14.5 - parent: 60 - type: Transform - - startingCharge: 12000 - type: Battery - - loadingNetworkDemand: 70 - currentReceiving: 69.9903 - currentSupply: 70 - supplyRampPosition: 0.00969696 - type: PowerNetworkBattery -- uid: 4183 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4184 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4185 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4186 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4187 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-16.5 - parent: 60 - type: Transform -- uid: 4188 - type: WallReinforced - components: - - pos: -9.5,-21.5 - parent: 60 - type: Transform -- uid: 4189 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-18.5 - parent: 60 - type: Transform -- uid: 4190 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-19.5 - parent: 60 - type: Transform -- uid: 4191 - type: WindoorSecure - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-20.5 - parent: 60 - type: Transform -- uid: 4192 - type: WindowReinforcedDirectional - components: - - pos: -46.5,-18.5 - parent: 60 - type: Transform -- uid: 4193 - type: WindowReinforcedDirectional - components: - - pos: -45.5,-18.5 - parent: 60 - type: Transform -- uid: 4194 - type: WindowReinforcedDirectional - components: - - pos: -44.5,-18.5 - parent: 60 - type: Transform -- uid: 4195 - type: CarpetGreen - components: - - pos: -48.5,-19.5 - parent: 60 - type: Transform -- uid: 4196 - type: CarpetGreen - components: - - pos: -48.5,-18.5 - parent: 60 - type: Transform -- uid: 4197 - type: WindowReinforcedDirectional - components: - - pos: -40.5,-18.5 - parent: 60 - type: Transform -- uid: 4198 - type: WindoorBrigLocked - components: - - pos: -43.5,-18.5 - parent: 60 - type: Transform -- uid: 4199 - type: WindowReinforcedDirectional - components: - - pos: -41.5,-18.5 - parent: 60 - type: Transform -- uid: 4200 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -45.5,-19.5 - parent: 60 - type: Transform -- uid: 4201 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -44.5,-19.5 - parent: 60 - type: Transform -- uid: 4202 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -42.5,-19.5 - parent: 60 - type: Transform -- uid: 4203 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -41.5,-19.5 - parent: 60 - type: Transform -- uid: 4204 - type: WindowReinforcedDirectional - components: - - pos: -42.5,-18.5 - parent: 60 - type: Transform -- uid: 4205 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -40.5,-21.5 - parent: 60 - type: Transform -- uid: 4206 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -41.5,-21.5 - parent: 60 - type: Transform -- uid: 4207 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -42.5,-21.5 - parent: 60 - type: Transform -- uid: 4208 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -44.5,-21.5 - parent: 60 - type: Transform -- uid: 4209 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -45.5,-21.5 - parent: 60 - type: Transform -- uid: 4210 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -46.5,-21.5 - parent: 60 - type: Transform -- uid: 4211 - type: CarpetOrange - components: - - pos: -40.5,-20.5 - parent: 60 - type: Transform -- uid: 4212 - type: CarpetOrange - components: - - pos: -41.5,-20.5 - parent: 60 - type: Transform -- uid: 4213 - type: CarpetOrange - components: - - pos: -42.5,-20.5 - parent: 60 - type: Transform -- uid: 4214 - type: CarpetOrange - components: - - pos: -43.5,-20.5 - parent: 60 - type: Transform -- uid: 4215 - type: CarpetOrange - components: - - pos: -44.5,-20.5 - parent: 60 - type: Transform -- uid: 4216 - type: CarpetOrange - components: - - pos: -44.5,-20.5 - parent: 60 - type: Transform -- uid: 4217 - type: CarpetOrange - components: - - pos: -46.5,-20.5 - parent: 60 - type: Transform -- uid: 4218 - type: CarpetOrange - components: - - pos: -45.5,-20.5 - parent: 60 - type: Transform -- uid: 4219 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-35.5 - parent: 60 - type: Transform -- uid: 4220 - type: CarpetOrange - components: - - pos: -43.5,-19.5 - parent: 60 - type: Transform -- uid: 4221 - type: CableApcExtension - components: - - pos: -65.5,-0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4222 - type: WallSolidRust - components: - - pos: -58.5,-7.5 - parent: 60 - type: Transform -- uid: 4223 - type: TableWood - components: - - pos: -43.5,-16.5 - parent: 60 - type: Transform -- uid: 4224 - type: TableWood - components: - - pos: -45.5,-17.5 - parent: 60 - type: Transform -- uid: 4225 - type: TableWood - components: - - pos: -46.5,-17.5 - parent: 60 - type: Transform -- uid: 4226 - type: ComfyChair - components: - - pos: -43.5,-15.5 - parent: 60 - type: Transform -- uid: 4227 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -41.5,-18.5 - parent: 60 - type: Transform -- uid: 4228 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -40.5,-18.5 - parent: 60 - type: Transform -- uid: 4229 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -46.5,-18.5 - parent: 60 - type: Transform -- uid: 4230 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -45.5,-18.5 - parent: 60 - type: Transform -- uid: 4231 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -40.5,-16.5 - parent: 60 - type: Transform -- uid: 4232 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -41.5,-16.5 - parent: 60 - type: Transform -- uid: 4233 - type: Chair - components: - - pos: -41.5,-15.5 - parent: 60 - type: Transform -- uid: 4234 - type: LampGold - components: - - pos: -46.455166,-17.122845 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 4235 - type: LampGold - components: - - pos: -41.508133,-17.091595 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 4236 - type: BoxFolderRed - components: - - pos: -45.55851,-17.397173 - parent: 60 - type: Transform -- uid: 4237 - type: ClothingHeadHatPwig - components: - - pos: -43.49601,-15.522172 - parent: 60 - type: Transform -- uid: 4238 - type: WallReinforced - components: - - pos: -12.5,-21.5 - parent: 60 - type: Transform -- uid: 4239 - type: WallReinforced - components: - - pos: -11.5,-21.5 - parent: 60 - type: Transform -- uid: 4240 - type: CableHV - components: - - pos: -54.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4241 - type: ClosetLegal - components: - - pos: -46.5,-15.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4242 - type: TintedWindow - components: - - pos: -51.5,-17.5 - parent: 60 - type: Transform -- uid: 4243 - type: WallSolid - components: - - pos: -51.5,-20.5 - parent: 60 - type: Transform -- uid: 4244 - type: WallSolid - components: - - pos: -48.5,-14.5 - parent: 60 - type: Transform -- uid: 4245 - type: WallSolid - components: - - pos: -48.5,-22.5 - parent: 60 - type: Transform -- uid: 4246 - type: WallReinforced - components: - - pos: -51.5,-14.5 - parent: 60 - type: Transform -- uid: 4247 - type: WallSolid - components: - - pos: -51.5,-21.5 - parent: 60 - type: Transform -- uid: 4248 - type: WallSolid - components: - - pos: -49.5,-14.5 - parent: 60 - type: Transform -- uid: 4249 - type: AirlockBrigLocked - components: - - name: Lawyer Office Maint - type: MetaData - - pos: -49.5,-22.5 - parent: 60 - type: Transform -- uid: 4250 - type: WallSolid - components: - - pos: -50.5,-22.5 - parent: 60 - type: Transform -- uid: 4251 - type: WallReinforced - components: - - pos: -51.5,-22.5 - parent: 60 - type: Transform -- uid: 4252 - type: WallSolid - components: - - pos: -51.5,-15.5 - parent: 60 - type: Transform -- uid: 4253 - type: WallSolid - components: - - pos: -51.5,-16.5 - parent: 60 - type: Transform -- uid: 4254 - type: TintedWindow - components: - - pos: -51.5,-19.5 - parent: 60 - type: Transform -- uid: 4255 - type: PaperBin5 - components: - - pos: -48.5,-19.5 - parent: 60 - type: Transform -- uid: 4256 - type: FaxMachineBase - components: - - pos: -48.5,-17.5 - parent: 60 - type: Transform - - name: Lawyer's Office - type: FaxMachine -- uid: 4257 - type: ClothingOuterHardsuitEVA - components: - - pos: 5.5,-36.5 - parent: 60 - type: Transform -- uid: 4258 - type: WallSolid - components: - - pos: -47.5,-18.5 - parent: 60 - type: Transform -- uid: 4259 - type: TableWood - components: - - pos: 18.5,-29.5 - parent: 60 - type: Transform -- uid: 4260 - type: ChairWood - components: - - pos: 19.5,-32.5 - parent: 60 - type: Transform -- uid: 4261 - type: ClothingHeadHelmetEVA - components: - - pos: 5.5,-36.5 - parent: 60 - type: Transform -- uid: 4262 - type: TableWood - components: - - pos: -48.5,-18.5 - parent: 60 - type: Transform -- uid: 4263 - type: CarpetGreen - components: - - pos: -43.5,-16.5 - parent: 60 - type: Transform -- uid: 4264 - type: CarpetSBlue - components: - - pos: -41.5,-17.5 - parent: 60 - type: Transform -- uid: 4265 - type: CarpetSBlue - components: - - pos: -41.5,-18.5 - parent: 60 - type: Transform -- uid: 4266 - type: VendingMachineLawDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -48.5,-15.5 - parent: 60 - type: Transform -- uid: 4267 - type: CableApcExtension - components: - - pos: -52.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4268 - type: CarpetGreen - components: - - pos: -42.5,-15.5 - parent: 60 - type: Transform -- uid: 4269 - type: CarpetGreen - components: - - pos: -42.5,-16.5 - parent: 60 - type: Transform -- uid: 4270 - type: CarpetGreen - components: - - pos: -43.5,-15.5 - parent: 60 - type: Transform -- uid: 4271 - type: SpawnPointLawyer - components: - - pos: -49.5,-16.5 - parent: 60 - type: Transform -- uid: 4272 - type: CarpetSBlue - components: - - pos: -40.5,-17.5 - parent: 60 - type: Transform -- uid: 4273 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-18.5 - parent: 60 - type: Transform -- uid: 4274 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-18.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Lawyer Office - type: SurveillanceCamera -- uid: 4275 - type: CableApcExtension - components: - - pos: -52.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4276 - type: Carpet - components: - - pos: -45.5,-17.5 - parent: 60 - type: Transform -- uid: 4277 - type: Carpet - components: - - pos: -45.5,-18.5 - parent: 60 - type: Transform -- uid: 4278 - type: CarpetGreen - components: - - pos: -44.5,-16.5 - parent: 60 - type: Transform -- uid: 4279 - type: Catwalk - components: - - pos: -52.5,-14.5 - parent: 60 - type: Transform -- uid: 4280 - type: Carpet - components: - - pos: -46.5,-17.5 - parent: 60 - type: Transform -- uid: 4281 - type: Poweredlight - components: - - pos: -45.5,-15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4282 - type: Poweredlight - components: - - pos: -41.5,-15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4283 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -45.5,-21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4284 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -41.5,-21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4285 - type: CarpetGreen - components: - - pos: -49.5,-18.5 - parent: 60 - type: Transform -- uid: 4286 - type: CarpetGreen - components: - - pos: -49.5,-19.5 - parent: 60 - type: Transform -- uid: 4287 - type: CarpetGreen - components: - - pos: -49.5,-20.5 - parent: 60 - type: Transform -- uid: 4288 - type: CarpetGreen - components: - - pos: -50.5,-19.5 - parent: 60 - type: Transform -- uid: 4289 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -43.5,-21.5 - parent: 60 - type: Transform -- uid: 4290 - type: CarpetGreen - components: - - pos: -50.5,-20.5 - parent: 60 - type: Transform -- uid: 4291 - type: CarpetGreen - components: - - pos: -50.5,-18.5 - parent: 60 - type: Transform -- uid: 4292 - type: BoxFolderRed - components: - - pos: -48.515194,-18.266697 - parent: 60 - type: Transform -- uid: 4293 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -48.5,-21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4294 - type: PoweredSmallLight - components: - - pos: -50.5,-15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4295 - type: Grille - components: - - pos: -51.5,-17.5 - parent: 60 - type: Transform -- uid: 4296 - type: Grille - components: - - pos: -51.5,-18.5 - parent: 60 - type: Transform -- uid: 4297 - type: WaterCooler - components: - - pos: -50.5,-21.5 - parent: 60 - type: Transform -- uid: 4298 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-15.5 - parent: 60 - type: Transform -- uid: 4299 - type: SignHead - components: - - pos: -39.5,-17.5 - parent: 60 - type: Transform -- uid: 4300 - type: WallSolid - components: - - pos: -42.5,-28.5 - parent: 60 - type: Transform -- uid: 4301 - type: ReinforcedWindow - components: - - pos: -51.5,-35.5 - parent: 60 - type: Transform -- uid: 4302 - type: Rack - components: - - pos: -45.5,-24.5 - parent: 60 - type: Transform -- uid: 4303 - type: WallReinforced - components: - - pos: -49.5,-25.5 - parent: 60 - type: Transform -- uid: 4304 - type: WallReinforced - components: - - pos: -47.5,-25.5 - parent: 60 - type: Transform -- uid: 4305 - type: WallReinforced - components: - - pos: -48.5,-25.5 - parent: 60 - type: Transform -- uid: 4306 - type: CableHV - components: - - pos: -61.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4307 - type: Catwalk - components: - - pos: -85.5,-12.5 - parent: 60 - type: Transform -- uid: 4308 - type: SolarPanel - components: - - pos: -72.5,-12.5 - parent: 60 - type: Transform -- uid: 4309 - type: CableHV - components: - - pos: -59.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4310 - type: WallSolidRust - components: - - pos: -44.5,-24.5 - parent: 60 - type: Transform -- uid: 4311 - type: WaterTankFull - components: - - pos: -63.5,4.5 - parent: 60 - type: Transform -- uid: 4312 - type: PoweredSmallLight - components: - - pos: -64.5,13.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4313 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -66.5,1.5 - parent: 60 - type: Transform -- uid: 4314 - type: Bed - components: - - pos: -63.5,3.5 - parent: 60 - type: Transform -- uid: 4315 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,3.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4316 - type: Grille - components: - - pos: -63.5,14.5 - parent: 60 - type: Transform -- uid: 4317 - type: ClothingOuterHoodieGrey - components: - - pos: -63.432987,-1.5037946 - parent: 60 - type: Transform -- uid: 4318 - type: Grille - components: - - pos: -62.5,20.5 - parent: 60 - type: Transform -- uid: 4319 - type: CableHV - components: - - pos: -87.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4320 - type: CrateFilledSpawner - components: - - pos: -64.5,13.5 - parent: 60 - type: Transform -- uid: 4321 - type: BoxMRE - components: - - pos: -67.54571,11.544041 - parent: 60 - type: Transform -- uid: 4322 - type: RandomPosterAny - components: - - pos: -67.5,2.5 - parent: 60 - type: Transform -- uid: 4323 - type: ToiletEmpty - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-1.5 - parent: 60 - type: Transform -- uid: 4324 - type: Grille - components: - - pos: -68.5,7.5 - parent: 60 - type: Transform -- uid: 4325 - type: TintedWindow - components: - - pos: 31.5,-17.5 - parent: 60 - type: Transform -- uid: 4326 - type: PoweredSmallLight - components: - - pos: -41.5,-23.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4327 - type: CableApcExtension - components: - - pos: -52.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4328 - type: MaintenanceToolSpawner - components: - - pos: -40.5,-30.5 - parent: 60 - type: Transform -- uid: 4329 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -63.5,0.5 - parent: 60 - type: Transform -- uid: 4330 - type: FirelockGlass - components: - - pos: -50.5,-23.5 - parent: 60 - type: Transform -- uid: 4331 - type: Barricade - components: - - pos: 59.5,-27.5 - parent: 60 - type: Transform -- uid: 4332 - type: ClothingHeadHatBeaverHat - components: - - pos: -17.196157,-30.580088 - parent: 60 - type: Transform -- uid: 4333 - type: GasPipeStraight - components: - - pos: -31.5,-8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4334 - type: ClothingHeadHatAnimalHeadslime - components: - - pos: 49.51806,-28.294407 - parent: 60 - type: Transform -- uid: 4335 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4336 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4337 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-19.5 - parent: 60 - type: Transform -- uid: 4338 - type: DisposalUnit - components: - - pos: -39.5,-19.5 - parent: 60 - type: Transform -- uid: 4339 - type: Grille - components: - - pos: -49.5,-35.5 - parent: 60 - type: Transform -- uid: 4340 - type: WallReinforced - components: - - pos: -42.5,-32.5 - parent: 60 - type: Transform -- uid: 4341 - type: ReinforcedWindow - components: - - pos: -52.5,-33.5 - parent: 60 - type: Transform -- uid: 4342 - type: ReinforcedWindow - components: - - pos: -50.5,-27.5 - parent: 60 - type: Transform -- uid: 4343 - type: ReinforcedWindow - components: - - pos: -51.5,-27.5 - parent: 60 - type: Transform -- uid: 4344 - type: ReinforcedWindow - components: - - pos: -52.5,-28.5 - parent: 60 - type: Transform -- uid: 4345 - type: PottedPlant1 - components: - - pos: -23.49266,-26.555698 - parent: 60 - type: Transform -- uid: 4346 - type: WallReinforced - components: - - pos: 39.5,-48.5 - parent: 60 - type: Transform -- uid: 4347 - type: PoweredSmallLight - components: - - pos: -31.5,-30.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4348 - type: TableWood - components: - - pos: -24.5,-30.5 - parent: 60 - type: Transform -- uid: 4349 - type: TableWood - components: - - pos: -24.5,-29.5 - parent: 60 - type: Transform -- uid: 4350 - type: TableWood - components: - - pos: -24.5,-28.5 - parent: 60 - type: Transform -- uid: 4351 - type: WallSolidRust - components: - - pos: -38.5,-35.5 - parent: 60 - type: Transform -- uid: 4352 - type: WallReinforced - components: - - pos: 37.5,-14.5 - parent: 60 - type: Transform -- uid: 4353 - type: AirlockChiefMedicalOfficerLocked - components: - - name: CMO's Office - type: MetaData - - pos: 33.5,-15.5 - parent: 60 - type: Transform -- uid: 4354 - type: ShuttersNormalOpen - components: - - pos: 36.5,-15.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4140 - type: SignalReceiver -- uid: 4355 - type: ShuttersNormalOpen - components: - - pos: 35.5,-15.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4140 - type: SignalReceiver -- uid: 4356 - type: AirlockChiefMedicalOfficerGlassLocked - components: - - name: CMO's Bedroom - type: MetaData - - pos: 31.5,-13.5 - parent: 60 - type: Transform -- uid: 4357 - type: ClothingHeadHelmetCosmonaut - components: - - pos: 12.508434,-74.44292 - parent: 60 - type: Transform -- uid: 4358 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 35.5,16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4359 - type: filingCabinetRandom - components: - - pos: 3.5,-30.5 - parent: 60 - type: Transform -- uid: 4360 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -39.5,1.5 - parent: 60 - type: Transform -- uid: 4361 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4362 - type: SignDirectionalBridge - components: - - rot: -1.5707963267948966 rad - pos: 30.494003,-21.269012 - parent: 60 - type: Transform -- uid: 4363 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -39.5,5.5 - parent: 60 - type: Transform -- uid: 4364 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -39.5,6.5 - parent: 60 - type: Transform -- uid: 4365 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -39.5,7.5 - parent: 60 - type: Transform -- uid: 4366 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -39.5,8.5 - parent: 60 - type: Transform -- uid: 4367 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -39.5,9.5 - parent: 60 - type: Transform -- uid: 4368 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -39.5,10.5 - parent: 60 - type: Transform -- uid: 4369 - type: FirelockGlass - components: - - pos: 15.5,-8.5 - parent: 60 - type: Transform -- uid: 4370 - type: Rack - components: - - pos: -63.5,-1.5 - parent: 60 - type: Transform -- uid: 4371 - type: Grille - components: - - pos: -88.5,-10.5 - parent: 60 - type: Transform -- uid: 4372 - type: Grille - components: - - pos: -64.5,20.5 - parent: 60 - type: Transform -- uid: 4373 - type: Grille - components: - - pos: -67.5,-1.5 - parent: 60 - type: Transform -- uid: 4374 - type: CableApcExtension - components: - - pos: -66.5,0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4375 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -67.5,10.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4376 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -43.5,40.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 4377 - type: HatBandSkull - components: - - pos: -58.437366,-17.289402 - parent: 60 - type: Transform -- uid: 4378 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -66.5,12.5 - parent: 60 - type: Transform -- uid: 4379 - type: Grille - components: - - pos: -66.5,-2.5 - parent: 60 - type: Transform -- uid: 4380 - type: CableHV - components: - - pos: -84.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4381 - type: CableApcExtension - components: - - pos: -66.5,-0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4382 - type: SolarPanel - components: - - pos: -72.5,-14.5 - parent: 60 - type: Transform -- uid: 4383 - type: SolarPanel - components: - - pos: -72.5,-17.5 - parent: 60 - type: Transform -- uid: 4384 - type: SolarPanel - components: - - pos: -72.5,-20.5 - parent: 60 - type: Transform -- uid: 4385 - type: SolarPanel - components: - - pos: -72.5,-21.5 - parent: 60 - type: Transform -- uid: 4386 - type: SolarPanel - components: - - pos: -78.5,-14.5 - parent: 60 - type: Transform -- uid: 4387 - type: SolarPanel - components: - - pos: -78.5,-16.5 - parent: 60 - type: Transform -- uid: 4388 - type: SolarPanel - components: - - pos: -82.5,-17.5 - parent: 60 - type: Transform -- uid: 4389 - type: SolarPanel - components: - - pos: -82.5,-15.5 - parent: 60 - type: Transform -- uid: 4390 - type: SolarPanel - components: - - pos: -82.5,-13.5 - parent: 60 - type: Transform -- uid: 4391 - type: Catwalk - components: - - pos: -74.5,-18.5 - parent: 60 - type: Transform -- uid: 4392 - type: Catwalk - components: - - pos: -72.5,-18.5 - parent: 60 - type: Transform -- uid: 4393 - type: Catwalk - components: - - pos: -70.5,-18.5 - parent: 60 - type: Transform -- uid: 4394 - type: SolarPanel - components: - - pos: -74.5,-13.5 - parent: 60 - type: Transform -- uid: 4395 - type: SolarPanel - components: - - pos: -74.5,-16.5 - parent: 60 - type: Transform -- uid: 4396 - type: SolarPanel - components: - - pos: -78.5,-22.5 - parent: 60 - type: Transform -- uid: 4397 - type: SolarPanel - components: - - pos: -78.5,-24.5 - parent: 60 - type: Transform -- uid: 4398 - type: SolarPanel - components: - - pos: -76.5,-16.5 - parent: 60 - type: Transform -- uid: 4399 - type: SolarPanel - components: - - pos: -76.5,-14.5 - parent: 60 - type: Transform -- uid: 4400 - type: SolarPanel - components: - - pos: -78.5,-12.5 - parent: 60 - type: Transform -- uid: 4401 - type: SolarPanel - components: - - pos: -80.5,-16.5 - parent: 60 - type: Transform -- uid: 4402 - type: SolarPanel - components: - - pos: -80.5,-19.5 - parent: 60 - type: Transform -- uid: 4403 - type: SolarPanel - components: - - pos: -80.5,-21.5 - parent: 60 - type: Transform -- uid: 4404 - type: SolarPanel - components: - - pos: -80.5,-23.5 - parent: 60 - type: Transform -- uid: 4405 - type: SolarPanel - components: - - pos: -82.5,-19.5 - parent: 60 - type: Transform -- uid: 4406 - type: SolarPanel - components: - - pos: -82.5,-21.5 - parent: 60 - type: Transform -- uid: 4407 - type: SolarTracker - components: - - pos: -89.5,-18.5 - parent: 60 - type: Transform -- uid: 4408 - type: CableHV - components: - - pos: -70.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4409 - type: CableHV - components: - - pos: -72.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4410 - type: CableHV - components: - - pos: -72.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4411 - type: CableHV - components: - - pos: -74.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4412 - type: CableHV - components: - - pos: -74.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4413 - type: CableHV - components: - - pos: -74.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4414 - type: CableHV - components: - - pos: -76.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4415 - type: CableHV - components: - - pos: -76.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4416 - type: CableHV - components: - - pos: -76.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4417 - type: CableHV - components: - - pos: -78.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4418 - type: CableHV - components: - - pos: -78.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4419 - type: SolarPanel - components: - - pos: -86.5,-22.5 - parent: 60 - type: Transform -- uid: 4420 - type: SolarPanel - components: - - pos: -86.5,-20.5 - parent: 60 - type: Transform -- uid: 4421 - type: SolarPanel - components: - - pos: -84.5,-24.5 - parent: 60 - type: Transform -- uid: 4422 - type: SolarPanel - components: - - pos: -84.5,-22.5 - parent: 60 - type: Transform -- uid: 4423 - type: SolarPanel - components: - - pos: -84.5,-20.5 - parent: 60 - type: Transform -- uid: 4424 - type: SolarPanel - components: - - pos: -82.5,-23.5 - parent: 60 - type: Transform -- uid: 4425 - type: CableHV - components: - - pos: -72.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4426 - type: CableHV - components: - - pos: -72.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4427 - type: CableHV - components: - - pos: -72.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4428 - type: CableHV - components: - - pos: -74.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4429 - type: CableHV - components: - - pos: -74.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4430 - type: CableHV - components: - - pos: -84.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4431 - type: CableHV - components: - - pos: -84.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4432 - type: CableHV - components: - - pos: -84.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4433 - type: CableHV - components: - - pos: -84.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4434 - type: CableHV - components: - - pos: -86.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4435 - type: CableHV - components: - - pos: -82.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4436 - type: CableHV - components: - - pos: -82.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4437 - type: CableHV - components: - - pos: -82.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4438 - type: CableHV - components: - - pos: -82.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4439 - type: CableHV - components: - - pos: -80.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4440 - type: CableHV - components: - - pos: -80.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4441 - type: CableHV - components: - - pos: -80.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4442 - type: CableHV - components: - - pos: -80.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4443 - type: CableHV - components: - - pos: -82.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4444 - type: CableHV - components: - - pos: -82.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4445 - type: CableApcExtension - components: - - pos: -66.5,1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4446 - type: ReinforcedWindow - components: - - pos: -55.5,-30.5 - parent: 60 - type: Transform -- uid: 4447 - type: ReinforcedWindow - components: - - pos: -56.5,-32.5 - parent: 60 - type: Transform -- uid: 4448 - type: Catwalk - components: - - pos: -73.5,-15.5 - parent: 60 - type: Transform -- uid: 4449 - type: WallSolid - components: - - pos: -54.5,-15.5 - parent: 60 - type: Transform -- uid: 4450 - type: CableHV - components: - - pos: -84.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4451 - type: CableHV - components: - - pos: -82.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4452 - type: WallSolid - components: - - pos: 58.5,-22.5 - parent: 60 - type: Transform -- uid: 4453 - type: WallReinforced - components: - - pos: -67.5,1.5 - parent: 60 - type: Transform -- uid: 4454 - type: ReinforcedWindow - components: - - pos: -66.5,-2.5 - parent: 60 - type: Transform -- uid: 4455 - type: WallReinforced - components: - - pos: -67.5,-0.5 - parent: 60 - type: Transform -- uid: 4456 - type: ReinforcedWindow - components: - - pos: -67.5,-1.5 - parent: 60 - type: Transform -- uid: 4457 - type: Chair - components: - - pos: -33.5,0.5 - parent: 60 - type: Transform -- uid: 4458 - type: CableHV - components: - - pos: 24.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4459 - type: Catwalk - components: - - pos: 29.5,-67.5 - parent: 60 - type: Transform -- uid: 4460 - type: Catwalk - components: - - pos: 30.5,-67.5 - parent: 60 - type: Transform -- uid: 4461 - type: WallSolid - components: - - pos: -38.5,-33.5 - parent: 60 - type: Transform -- uid: 4462 - type: WallReinforced - components: - - pos: -47.5,-27.5 - parent: 60 - type: Transform -- uid: 4463 - type: WallReinforced - components: - - pos: -52.5,-35.5 - parent: 60 - type: Transform -- uid: 4464 - type: WallReinforced - components: - - pos: -48.5,-35.5 - parent: 60 - type: Transform -- uid: 4465 - type: WallSolid - components: - - pos: -42.5,-30.5 - parent: 60 - type: Transform -- uid: 4466 - type: ReinforcedWindow - components: - - pos: -52.5,-29.5 - parent: 60 - type: Transform -- uid: 4467 - type: WallReinforced - components: - - pos: -44.5,-27.5 - parent: 60 - type: Transform -- uid: 4468 - type: WallSolid - components: - - pos: -46.5,-8.5 - parent: 60 - type: Transform -- uid: 4469 - type: WallSolid - components: - - pos: -37.5,-33.5 - parent: 60 - type: Transform -- uid: 4470 - type: WindowReinforcedDirectional - components: - - pos: -13.5,-44.5 - parent: 60 - type: Transform -- uid: 4471 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -48.5,6.5 - parent: 60 - type: Transform -- uid: 4472 - type: WallReinforced - components: - - pos: -29.5,13.5 - parent: 60 - type: Transform -- uid: 4473 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -52.5,10.5 - parent: 60 - type: Transform -- uid: 4474 - type: Grille - components: - - pos: -46.5,-7.5 - parent: 60 - type: Transform -- uid: 4475 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -52.5,9.5 - parent: 60 - type: Transform -- uid: 4476 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -48.5,10.5 - parent: 60 - type: Transform -- uid: 4477 - type: Grille - components: - - pos: -46.5,-6.5 - parent: 60 - type: Transform -- uid: 4478 - type: TableGlass - components: - - pos: -47.5,15.5 - parent: 60 - type: Transform -- uid: 4479 - type: WallReinforced - components: - - pos: -48.5,-27.5 - parent: 60 - type: Transform -- uid: 4480 - type: WallReinforced - components: - - pos: -44.5,-25.5 - parent: 60 - type: Transform -- uid: 4481 - type: WallSolid - components: - - pos: -36.5,-33.5 - parent: 60 - type: Transform -- uid: 4482 - type: WallSolidRust - components: - - pos: -34.5,-33.5 - parent: 60 - type: Transform -- uid: 4483 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4484 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4485 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4486 - type: GasPipeStraight - components: - - pos: 44.5,-18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4487 - type: ShuttersNormalOpen - components: - - pos: 32.5,-15.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4140 - type: SignalReceiver -- uid: 4488 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4489 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4490 - type: WallSolid - components: - - pos: 37.5,-18.5 - parent: 60 - type: Transform -- uid: 4491 - type: Grille - components: - - pos: 38.5,-18.5 - parent: 60 - type: Transform -- uid: 4492 - type: FirelockGlass - components: - - pos: -1.5,14.5 - parent: 60 - type: Transform -- uid: 4493 - type: Grille - components: - - pos: 39.5,-18.5 - parent: 60 - type: Transform -- uid: 4494 - type: WallReinforced - components: - - pos: 37.5,-15.5 - parent: 60 - type: Transform -- uid: 4495 - type: ReinforcedWindow - components: - - pos: 31.5,-12.5 - parent: 60 - type: Transform -- uid: 4496 - type: ShuttersNormalOpen - components: - - pos: 34.5,-15.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4140 - type: SignalReceiver -- uid: 4497 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4498 - type: WallReinforced - components: - - pos: 31.5,-14.5 - parent: 60 - type: Transform -- uid: 4499 - type: FirelockGlass - components: - - pos: 2.5,14.5 - parent: 60 - type: Transform -- uid: 4500 - type: FirelockGlass - components: - - pos: 5.5,16.5 - parent: 60 - type: Transform -- uid: 4501 - type: FirelockEdge - components: - - pos: -3.5,17.5 - parent: 60 - type: Transform -- uid: 4502 - type: WallSolid - components: - - pos: 36.5,-18.5 - parent: 60 - type: Transform -- uid: 4503 - type: FirelockGlass - components: - - pos: 36.5,-23.5 - parent: 60 - type: Transform -- uid: 4504 - type: CableMV - components: - - pos: -35.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4505 - type: CableMV - components: - - pos: -32.5,-12.5 - parent: 60 - type: Transform -- uid: 4506 - type: CableMV - components: - - pos: -33.5,-12.5 - parent: 60 - type: Transform -- uid: 4507 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4508 - type: CableMV - components: - - pos: -1.5,-74.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4509 - type: AirCanister - components: - - pos: 7.5,-51.5 - parent: 60 - type: Transform -- uid: 4510 - type: AirCanister - components: - - pos: 7.5,-42.5 - parent: 60 - type: Transform -- uid: 4511 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 2.5,-74.5 - parent: 60 - type: Transform - - devices: - - 5073 - - 5061 - - 4824 - - 4825 - - 4820 - - 5089 - - 4822 - - 4821 - type: DeviceList -- uid: 4512 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 60 - type: Transform -- uid: 4513 - type: LockerBotanistFilled - components: - - pos: 33.5,-35.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4514 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 37.5,-24.5 - parent: 60 - type: Transform -- uid: 4515 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: -19.434063,-0.21398172 - parent: 60 - type: Transform -- uid: 4516 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4517 - type: WallSolidRust - components: - - pos: -35.5,-33.5 - parent: 60 - type: Transform -- uid: 4518 - type: ReinforcedWindow - components: - - pos: 40.5,-25.5 - parent: 60 - type: Transform -- uid: 4519 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4520 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-37.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4521 - type: MaintenanceFluffSpawner - components: - - pos: 54.5,-35.5 - parent: 60 - type: Transform -- uid: 4522 - type: CrateNPCCow - components: - - pos: 24.5,-37.5 - parent: 60 - type: Transform - - air: - volume: 800 - immutable: False - temperature: 293.1499 - moles: - - 6.5983343 - - 24.822306 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4523 - type: WallReinforced - components: - - pos: 23.5,-45.5 - parent: 60 - type: Transform -- uid: 4524 - type: WallReinforced - components: - - pos: 23.5,-44.5 - parent: 60 - type: Transform -- uid: 4525 - type: PoweredSmallLight - components: - - pos: 25.5,-50.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4526 - type: PoweredSmallLight - components: - - pos: 29.5,-50.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4527 - type: PoweredSmallLight - components: - - pos: 35.5,-50.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4528 - type: CableApcExtension - components: - - pos: 55.5,-35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4529 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: -19.434063,-0.21398172 - parent: 60 - type: Transform -- uid: 4530 - type: HolofanProjector - components: - - pos: -28.430391,32.47464 - parent: 60 - type: Transform -- uid: 4531 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-23.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4532 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-20.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4533 - type: Rack - components: - - pos: 53.5,-23.5 - parent: 60 - type: Transform -- uid: 4534 - type: ToolboxElectricalFilled - components: - - pos: 61.51187,-30.58106 - parent: 60 - type: Transform -- uid: 4535 - type: ToolboxEmergencyFilled - components: - - pos: 53.545303,-23.4358 - parent: 60 - type: Transform -- uid: 4536 - type: AirCanister - components: - - pos: 53.5,-22.5 - parent: 60 - type: Transform -- uid: 4537 - type: ClothingHeadHatWizardFake - components: - - pos: -36.57288,-34.379406 - parent: 60 - type: Transform -- uid: 4538 - type: WallSolidRust - components: - - pos: -29.5,-33.5 - parent: 60 - type: Transform -- uid: 4539 - type: WallReinforced - components: - - pos: -29.5,16.5 - parent: 60 - type: Transform -- uid: 4540 - type: ClothingShoesTourist - components: - - flags: InContainer - type: MetaData - - parent: 5126 - type: Transform - - canCollide: False - type: Physics -- uid: 4541 - type: ClothingHeadHatWizard - components: - - pos: -36.16663,-34.95753 - parent: 60 - type: Transform -- uid: 4542 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -31.5,1.5 - parent: 60 - type: Transform -- uid: 4543 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-39.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4544 - type: PoweredSmallLight - components: - - pos: -8.5,-40.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4545 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-42.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4546 - type: FirelockGlass - components: - - pos: 17.5,-8.5 - parent: 60 - type: Transform -- uid: 4547 - type: PoweredSmallLight - components: - - pos: -28.5,-26.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4548 - type: Catwalk - components: - - pos: -52.5,-22.5 - parent: 60 - type: Transform -- uid: 4549 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-3.5 - parent: 60 - type: Transform -- uid: 4550 - type: GasPipeStraight - components: - - pos: -36.5,-4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4551 - type: Stunbaton - components: - - pos: -30.551308,1.7826514 - parent: 60 - type: Transform -- uid: 4552 - type: WallReinforced - components: - - pos: -29.5,2.5 - parent: 60 - type: Transform -- uid: 4553 - type: WallReinforced - components: - - pos: -25.5,3.5 - parent: 60 - type: Transform -- uid: 4554 - type: PoweredSmallLight - components: - - pos: -33.5,-12.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4555 - type: WallReinforced - components: - - pos: -28.5,-1.5 - parent: 60 - type: Transform -- uid: 4556 - type: GasPipeFourway - components: - - pos: 34.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4557 - type: Carpet - components: - - pos: -46.5,-18.5 - parent: 60 - type: Transform -- uid: 4558 - type: WallReinforced - components: - - pos: -30.5,16.5 - parent: 60 - type: Transform -- uid: 4559 - type: WallReinforced - components: - - pos: -31.5,16.5 - parent: 60 - type: Transform -- uid: 4560 - type: WallReinforced - components: - - pos: -32.5,16.5 - parent: 60 - type: Transform -- uid: 4561 - type: CableMV - components: - - pos: -24.5,-5.5 - parent: 60 - type: Transform -- uid: 4562 - type: CableMV - components: - - pos: -33.5,-9.5 - parent: 60 - type: Transform -- uid: 4563 - type: CableMV - components: - - pos: -26.5,-5.5 - parent: 60 - type: Transform -- uid: 4564 - type: CableMV - components: - - pos: -32.5,-9.5 - parent: 60 - type: Transform -- uid: 4565 - type: CableMV - components: - - pos: -34.5,-9.5 - parent: 60 - type: Transform -- uid: 4566 - type: CableMV - components: - - pos: -23.5,-5.5 - parent: 60 - type: Transform -- uid: 4567 - type: CableMV - components: - - pos: -25.5,-5.5 - parent: 60 - type: Transform -- uid: 4568 - type: WallReinforced - components: - - pos: -24.5,4.5 - parent: 60 - type: Transform -- uid: 4569 - type: WallSolid - components: - - pos: -30.5,-33.5 - parent: 60 - type: Transform -- uid: 4570 - type: WallSolidRust - components: - - pos: -28.5,-33.5 - parent: 60 - type: Transform -- uid: 4571 - type: WallSolid - components: - - pos: -12.5,-26.5 - parent: 60 - type: Transform -- uid: 4572 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-27.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4573 - type: AirlockHydroGlassLocked - components: - - pos: 34.5,-34.5 - parent: 60 - type: Transform -- uid: 4574 - type: WallSolid - components: - - pos: 28.5,-34.5 - parent: 60 - type: Transform -- uid: 4575 - type: WallSolid - components: - - pos: 35.5,-34.5 - parent: 60 - type: Transform -- uid: 4576 - type: Table - components: - - pos: 51.5,-20.5 - parent: 60 - type: Transform -- uid: 4577 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-34.5 - parent: 60 - type: Transform -- uid: 4578 - type: WaterTankFull - components: - - pos: -42.5,-26.5 - parent: 60 - type: Transform -- uid: 4579 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-30.5 - parent: 60 - type: Transform -- uid: 4580 - type: WallReinforced - components: - - pos: -25.5,-6.5 - parent: 60 - type: Transform -- uid: 4581 - type: PoweredlightLED - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-48.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4582 - type: PoweredlightLED - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-48.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4583 - type: WallSolid - components: - - pos: -34.5,-35.5 - parent: 60 - type: Transform -- uid: 4584 - type: WallReinforced - components: - - pos: 57.5,-18.5 - parent: 60 - type: Transform -- uid: 4585 - type: WallReinforced - components: - - pos: 57.5,-19.5 - parent: 60 - type: Transform -- uid: 4586 - type: WallReinforced - components: - - pos: 57.5,-20.5 - parent: 60 - type: Transform -- uid: 4587 - type: WallReinforced - components: - - pos: 59.5,-21.5 - parent: 60 - type: Transform -- uid: 4588 - type: WallReinforced - components: - - pos: 59.5,-20.5 - parent: 60 - type: Transform -- uid: 4589 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-17.5 - parent: 60 - type: Transform -- uid: 4590 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-18.5 - parent: 60 - type: Transform -- uid: 4591 - type: WallReinforced - components: - - pos: 57.5,-17.5 - parent: 60 - type: Transform -- uid: 4592 - type: WallReinforced - components: - - pos: 57.5,-16.5 - parent: 60 - type: Transform -- uid: 4593 - type: WallReinforced - components: - - pos: 59.5,-16.5 - parent: 60 - type: Transform -- uid: 4594 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-19.5 - parent: 60 - type: Transform -- uid: 4595 - type: AirlockExternalGlassLocked - components: - - pos: 58.5,-16.5 - parent: 60 - type: Transform -- uid: 4596 - type: AirlockExternalGlassLocked - components: - - pos: 58.5,-20.5 - parent: 60 - type: Transform -- uid: 4597 - type: Poweredlight - components: - - pos: 57.5,-21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4598 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4599 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-19.5 - parent: 60 - type: Transform -- uid: 4600 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-18.5 - parent: 60 - type: Transform -- uid: 4601 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-17.5 - parent: 60 - type: Transform -- uid: 4602 - type: OxygenCanister - components: - - pos: 56.5,-19.5 - parent: 60 - type: Transform -- uid: 4603 - type: AirlockMedicalGlassLocked - components: - - pos: 42.5,-20.5 - parent: 60 - type: Transform -- uid: 4604 - type: WallSolidRust - components: - - pos: -27.5,-33.5 - parent: 60 - type: Transform -- uid: 4605 - type: WallSolid - components: - - pos: -34.5,-34.5 - parent: 60 - type: Transform -- uid: 4606 - type: WallSolidRust - components: - - pos: -13.5,-47.5 - parent: 60 - type: Transform -- uid: 4607 - type: WallSolid - components: - - pos: -38.5,-34.5 - parent: 60 - type: Transform -- uid: 4608 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-43.5 - parent: 60 - type: Transform -- uid: 4609 - type: Grille - components: - - pos: 22.5,-64.5 - parent: 60 - type: Transform -- uid: 4610 - type: Grille - components: - - pos: 22.5,-62.5 - parent: 60 - type: Transform -- uid: 4611 - type: GrilleBroken - components: - - pos: 22.5,-76.5 - parent: 60 - type: Transform -- uid: 4612 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 22.5,-66.5 - parent: 60 - type: Transform -- uid: 4613 - type: Grille - components: - - pos: 22.5,-65.5 - parent: 60 - type: Transform -- uid: 4614 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-61.5 - parent: 60 - type: Transform -- uid: 4615 - type: Chair - components: - - pos: -18.5,-53.5 - parent: 60 - type: Transform -- uid: 4616 - type: Chair - components: - - pos: -19.5,-53.5 - parent: 60 - type: Transform -- uid: 4617 - type: ClosetEmergencyFilledRandom - components: - - pos: -2.5,-60.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4618 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,-53.5 - parent: 60 - type: Transform -- uid: 4619 - type: CableMV - components: - - pos: -1.5,-68.5 - parent: 60 - type: Transform -- uid: 4620 - type: CableMV - components: - - pos: -1.5,-55.5 - parent: 60 - type: Transform -- uid: 4621 - type: Grille - components: - - pos: 22.5,-70.5 - parent: 60 - type: Transform -- uid: 4622 - type: Grille - components: - - pos: 22.5,-71.5 - parent: 60 - type: Transform -- uid: 4623 - type: ReinforcedWindow - components: - - pos: 2.5,-35.5 - parent: 60 - type: Transform -- uid: 4624 - type: WarpPoint - components: - - pos: 0.5,-61.5 - parent: 60 - type: Transform - - location: Arrivals - type: WarpPoint -- uid: 4625 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-72.5 - parent: 60 - type: Transform -- uid: 4626 - type: WallReinforced - components: - - pos: 3.5,-33.5 - parent: 60 - type: Transform -- uid: 4627 - type: ChairOfficeDark - components: - - pos: -27.5,-14.5 - parent: 60 - type: Transform -- uid: 4628 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,8.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4629 - type: GasPipeStraight - components: - - pos: -0.5,-60.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4630 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-61.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4631 - type: CableHV - components: - - pos: 4.5,-37.5 - parent: 60 - type: Transform -- uid: 4632 - type: CableApcExtension - components: - - pos: 6.5,-37.5 - parent: 60 - type: Transform -- uid: 4633 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-72.5 - parent: 60 - type: Transform -- uid: 4634 - type: SignSpace - components: - - pos: -3.5,-72.5 - parent: 60 - type: Transform -- uid: 4635 - type: SignSpace - components: - - pos: 4.5,-72.5 - parent: 60 - type: Transform -- uid: 4636 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-73.5 - parent: 60 - type: Transform -- uid: 4637 - type: CableHV - components: - - pos: 3.5,-37.5 - parent: 60 - type: Transform -- uid: 4638 - type: Grille - components: - - pos: 2.5,-35.5 - parent: 60 - type: Transform -- uid: 4639 - type: Grille - components: - - pos: 22.5,-63.5 - parent: 60 - type: Transform -- uid: 4640 - type: GrilleBroken - components: - - pos: 22.5,-69.5 - parent: 60 - type: Transform -- uid: 4641 - type: BedsheetIan - components: - - flags: InContainer - type: MetaData - - parent: 6235 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 4642 - type: CableHV - components: - - pos: 2.5,-37.5 - parent: 60 - type: Transform -- uid: 4643 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 22.5,-78.5 - parent: 60 - type: Transform -- uid: 4644 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 22.5,-75.5 - parent: 60 - type: Transform -- uid: 4645 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-36.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EVA Storage - type: SurveillanceCamera -- uid: 4646 - type: WallReinforced - components: - - pos: -60.5,-25.5 - parent: 60 - type: Transform -- uid: 4647 - type: JetpackMiniFilled - components: - - pos: 5.56341,-38.53557 - parent: 60 - type: Transform -- uid: 4648 - type: GasPipeStraight - components: - - pos: -0.5,-59.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4649 - type: GasPipeStraight - components: - - pos: -0.5,-58.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4650 - type: GasPipeStraight - components: - - pos: -0.5,-57.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4651 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-73.5 - parent: 60 - type: Transform -- uid: 4652 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-77.5 - parent: 60 - type: Transform -- uid: 4653 - type: WallSolid - components: - - pos: -11.5,-49.5 - parent: 60 - type: Transform -- uid: 4654 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-76.5 - parent: 60 - type: Transform -- uid: 4655 - type: Rack - components: - - pos: 3.5,-60.5 - parent: 60 - type: Transform -- uid: 4656 - type: GasPipeFourway - components: - - pos: -0.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4657 - type: GasPipeStraight - components: - - pos: 1.5,-56.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4658 - type: GasPipeStraight - components: - - pos: 1.5,-57.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4659 - type: ClothingHeadHatCone - components: - - pos: 4.735285,-39.613693 - parent: 60 - type: Transform -- uid: 4660 - type: DisposalPipe - components: - - pos: 0.5,-19.5 - parent: 60 - type: Transform -- uid: 4661 - type: Poweredlight - components: - - pos: 4.5,-34.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4662 - type: AirlockVirologyGlassLocked - components: - - name: south medical - type: MetaData - - pos: 44.5,-25.5 - parent: 60 - type: Transform -- uid: 4663 - type: CableHV - components: - - pos: 1.5,-40.5 - parent: 60 - type: Transform -- uid: 4664 - type: CableHV - components: - - pos: -0.5,-39.5 - parent: 60 - type: Transform -- uid: 4665 - type: CableApcExtension - components: - - pos: 4.5,-35.5 - parent: 60 - type: Transform -- uid: 4666 - type: NitrousOxideTankFilled - components: - - pos: 39.489506,-12.5089 - parent: 60 - type: Transform - - nextAttack: 2404.7225765 - type: MeleeWeapon -- uid: 4667 - type: HolofanProjector - components: - - pos: -63.459564,41.460617 - parent: 60 - type: Transform -- uid: 4668 - type: Pen - components: - - pos: 6.7427726,-42.739647 - parent: 60 - type: Transform -- uid: 4669 - type: FlashlightLantern - components: - - pos: 3.4771476,-42.724022 - parent: 60 - type: Transform -- uid: 4670 - type: ReinforcedWindow - components: - - pos: -6.5,-45.5 - parent: 60 - type: Transform -- uid: 4671 - type: WallReinforced - components: - - pos: -6.5,-44.5 - parent: 60 - type: Transform -- uid: 4672 - type: Table - components: - - pos: 9.5,-55.5 - parent: 60 - type: Transform -- uid: 4673 - type: Grille - components: - - pos: -6.5,-45.5 - parent: 60 - type: Transform -- uid: 4674 - type: RandomSpawner - components: - - pos: 1.5,-72.5 - parent: 60 - type: Transform -- uid: 4675 - type: PosterMapBagel - components: - - pos: -1.5,-29.5 - parent: 60 - type: Transform -- uid: 4676 - type: FlashlightLantern - components: - - pos: 8.554562,-71.45013 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 4677 - type: TableReinforcedGlass - components: - - pos: -4.5,-44.5 - parent: 60 - type: Transform -- uid: 4678 - type: PottedPlantRandom - components: - - pos: -10.5,-53.5 - parent: 60 - type: Transform -- uid: 4679 - type: LockerEvidence - components: - - pos: -5.5,-45.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4680 - type: Chair - components: - - pos: -7.5,-44.5 - parent: 60 - type: Transform -- uid: 4681 - type: FoodMealCubancarp - components: - - pos: -5.335003,-44.25506 - parent: 60 - type: Transform -- uid: 4682 - type: ClothingOuterCoatBomber - components: - - pos: 9.573504,-55.474518 - parent: 60 - type: Transform -- uid: 4683 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-55.5 - parent: 60 - type: Transform -- uid: 4684 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-55.5 - parent: 60 - type: Transform -- uid: 4685 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-46.5 - parent: 60 - type: Transform -- uid: 4686 - type: SpawnPointLatejoin - components: - - pos: 9.5,-65.5 - parent: 60 - type: Transform -- uid: 4687 - type: RandomSpawner - components: - - pos: -17.5,-55.5 - parent: 60 - type: Transform -- uid: 4688 - type: SignSpace - components: - - pos: -3.5,-61.5 - parent: 60 - type: Transform -- uid: 4689 - type: RandomSpawner - components: - - pos: -1.5,-56.5 - parent: 60 - type: Transform -- uid: 4690 - type: PosterMapBagel - components: - - pos: 26.5,27.5 - parent: 60 - type: Transform -- uid: 4691 - type: WindoorHeadOfPersonnelLocked - components: - - rot: 3.141592653589793 rad - pos: 4.5,-38.5 - parent: 60 - type: Transform -- uid: 4692 - type: PosterMapBagel - components: - - pos: 56.5,27.5 - parent: 60 - type: Transform -- uid: 4693 - type: RandomSpawner - components: - - pos: -1.5,-62.5 - parent: 60 - type: Transform -- uid: 4694 - type: SignSpace - components: - - pos: 4.5,-61.5 - parent: 60 - type: Transform -- uid: 4695 - type: RandomSpawner - components: - - pos: -7.5,-54.5 - parent: 60 - type: Transform -- uid: 4696 - type: TableReinforcedGlass - components: - - pos: -5.5,-44.5 - parent: 60 - type: Transform -- uid: 4697 - type: PosterLegitReportCrimes - components: - - pos: -2.5,-43.5 - parent: 60 - type: Transform -- uid: 4698 - type: PowerCellRecharger - components: - - pos: 3.5,-39.5 - parent: 60 - type: Transform -- uid: 4699 - type: SprayBottle - components: - - pos: 41.363083,-28.19435 - parent: 60 - type: Transform -- uid: 4700 - type: CableHV - components: - - pos: 5.5,-37.5 - parent: 60 - type: Transform -- uid: 4701 - type: CableMV - components: - - pos: 5.5,-32.5 - parent: 60 - type: Transform -- uid: 4702 - type: ClothingBackpackSatchelLeather - components: - - pos: 14.515157,-71.44438 - parent: 60 - type: Transform -- uid: 4703 - type: SpawnPointLatejoin - components: - - pos: 9.5,-66.5 - parent: 60 - type: Transform -- uid: 4704 - type: Chair - components: - - pos: -8.5,-44.5 - parent: 60 - type: Transform -- uid: 4705 - type: JetpackBlueFilled - components: - - pos: -61.5,15.5 - parent: 60 - type: Transform -- uid: 4706 - type: ContrabassInstrument - components: - - pos: 22.5,-13.5 - parent: 60 - type: Transform -- uid: 4707 - type: OxygenCanister - components: - - pos: 5.5,-39.5 - parent: 60 - type: Transform -- uid: 4708 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-58.5 - parent: 60 - type: Transform -- uid: 4709 - type: PoweredSmallLight - components: - - pos: -18.5,-2.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4710 - type: ClothingHeadHelmetEVA - components: - - pos: 3.5,-36.5 - parent: 60 - type: Transform -- uid: 4711 - type: PlasmaOre1 - components: - - flags: InContainer - type: MetaData - - parent: 6448 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 4712 - type: WallReinforced - components: - - pos: -16.5,-52.5 - parent: 60 - type: Transform -- uid: 4713 - type: WallReinforced - components: - - pos: -20.5,-52.5 - parent: 60 - type: Transform -- uid: 4714 - type: Grille - components: - - pos: -69.5,29.5 - parent: 60 - type: Transform -- uid: 4715 - type: Grille - components: - - pos: 59.5,28.5 - parent: 60 - type: Transform -- uid: 4716 - type: WallSolid - components: - - pos: -7.5,-52.5 - parent: 60 - type: Transform -- uid: 4717 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -2.5,-49.5 - parent: 60 - type: Transform -- uid: 4718 - type: WallSolid - components: - - pos: -14.5,-49.5 - parent: 60 - type: Transform -- uid: 4719 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-49.5 - parent: 60 - type: Transform -- uid: 4720 - type: WallReinforced - components: - - pos: 2.5,-34.5 - parent: 60 - type: Transform -- uid: 4721 - type: CableMV - components: - - pos: 4.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4722 - type: ClothingOuterHardsuitEVA - components: - - pos: 5.5,-35.5 - parent: 60 - type: Transform -- uid: 4723 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-57.5 - parent: 60 - type: Transform -- uid: 4724 - type: Table - components: - - pos: 3.5,-38.5 - parent: 60 - type: Transform -- uid: 4725 - type: GasPipeStraight - components: - - pos: 1.5,-54.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4726 - type: GasPipeStraight - components: - - pos: 1.5,-53.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4727 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-71.5 - parent: 60 - type: Transform -- uid: 4728 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-73.5 - parent: 60 - type: Transform -- uid: 4729 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-72.5 - parent: 60 - type: Transform -- uid: 4730 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-62.5 - parent: 60 - type: Transform -- uid: 4731 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-68.5 - parent: 60 - type: Transform -- uid: 4732 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-66.5 - parent: 60 - type: Transform -- uid: 4733 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-68.5 - parent: 60 - type: Transform -- uid: 4734 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-66.5 - parent: 60 - type: Transform -- uid: 4735 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-64.5 - parent: 60 - type: Transform -- uid: 4736 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-64.5 - parent: 60 - type: Transform -- uid: 4737 - type: CableMV - components: - - pos: 6.5,-52.5 - parent: 60 - type: Transform -- uid: 4738 - type: CableMV - components: - - pos: 6.5,-53.5 - parent: 60 - type: Transform -- uid: 4739 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 43.5,-31.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4740 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-49.5 - parent: 60 - type: Transform -- uid: 4741 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-23.5 - parent: 60 - type: Transform -- uid: 4742 - type: WallReinforced - components: - - pos: -15.5,-51.5 - parent: 60 - type: Transform -- uid: 4743 - type: WallReinforced - components: - - pos: -15.5,-49.5 - parent: 60 - type: Transform -- uid: 4744 - type: WallReinforced - components: - - pos: -5.5,-52.5 - parent: 60 - type: Transform -- uid: 4745 - type: AirlockGlass - components: - - pos: -14.5,-52.5 - parent: 60 - type: Transform -- uid: 4746 - type: WallSolid - components: - - pos: -3.5,-52.5 - parent: 60 - type: Transform -- uid: 4747 - type: Grille - components: - - pos: -17.5,-52.5 - parent: 60 - type: Transform -- uid: 4748 - type: Grille - components: - - pos: -18.5,-52.5 - parent: 60 - type: Transform -- uid: 4749 - type: Grille - components: - - pos: -19.5,-52.5 - parent: 60 - type: Transform -- uid: 4750 - type: ReinforcedWindow - components: - - pos: -19.5,-52.5 - parent: 60 - type: Transform -- uid: 4751 - type: ReinforcedWindow - components: - - pos: -18.5,-52.5 - parent: 60 - type: Transform -- uid: 4752 - type: ReinforcedWindow - components: - - pos: -17.5,-52.5 - parent: 60 - type: Transform -- uid: 4753 - type: WallReinforced - components: - - pos: -2.5,-52.5 - parent: 60 - type: Transform -- uid: 4754 - type: WallSolid - components: - - pos: -4.5,-52.5 - parent: 60 - type: Transform -- uid: 4755 - type: WallReinforced - components: - - pos: -15.5,-50.5 - parent: 60 - type: Transform -- uid: 4756 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-19.5 - parent: 60 - type: Transform -- uid: 4757 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-24.5 - parent: 60 - type: Transform -- uid: 4758 - type: CableMV - components: - - pos: 7.5,-53.5 - parent: 60 - type: Transform -- uid: 4759 - type: CableMV - components: - - pos: 8.5,-53.5 - parent: 60 - type: Transform -- uid: 4760 - type: CableMV - components: - - pos: -2.5,-53.5 - parent: 60 - type: Transform -- uid: 4761 - type: CableMV - components: - - pos: -2.5,-52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4762 - type: CableMV - components: - - pos: 6.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4763 - type: CableMV - components: - - pos: 6.5,-51.5 - parent: 60 - type: Transform -- uid: 4764 - type: CableMV - components: - - pos: -0.5,-53.5 - parent: 60 - type: Transform -- uid: 4765 - type: CableMV - components: - - pos: -1.5,-53.5 - parent: 60 - type: Transform -- uid: 4766 - type: DisposalPipe - components: - - pos: 0.5,-55.5 - parent: 60 - type: Transform -- uid: 4767 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: 0.5,-54.5 - parent: 60 - type: Transform -- uid: 4768 - type: DisposalPipe - components: - - pos: 0.5,-59.5 - parent: 60 - type: Transform -- uid: 4769 - type: DisposalPipe - components: - - pos: 0.5,-58.5 - parent: 60 - type: Transform -- uid: 4770 - type: DisposalPipe - components: - - pos: 0.5,-57.5 - parent: 60 - type: Transform -- uid: 4771 - type: WallSolid - components: - - pos: -10.5,-51.5 - parent: 60 - type: Transform -- uid: 4772 - type: WallSolid - components: - - pos: -10.5,-50.5 - parent: 60 - type: Transform -- uid: 4773 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-51.5 - parent: 60 - type: Transform -- uid: 4774 - type: WallReinforced - components: - - pos: -2.5,-47.5 - parent: 60 - type: Transform -- uid: 4775 - type: WallReinforced - components: - - pos: 3.5,-47.5 - parent: 60 - type: Transform -- uid: 4776 - type: DisposalPipe - components: - - pos: 0.5,-56.5 - parent: 60 - type: Transform -- uid: 4777 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-54.5 - parent: 60 - type: Transform -- uid: 4778 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-54.5 - parent: 60 - type: Transform -- uid: 4779 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-54.5 - parent: 60 - type: Transform -- uid: 4780 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-54.5 - parent: 60 - type: Transform -- uid: 4781 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-53.5 - parent: 60 - type: Transform -- uid: 4782 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-54.5 - parent: 60 - type: Transform -- uid: 4783 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-54.5 - parent: 60 - type: Transform -- uid: 4784 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-54.5 - parent: 60 - type: Transform -- uid: 4785 - type: WallSolid - components: - - pos: -30.5,6.5 - parent: 60 - type: Transform -- uid: 4786 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-54.5 - parent: 60 - type: Transform -- uid: 4787 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-54.5 - parent: 60 - type: Transform -- uid: 4788 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-54.5 - parent: 60 - type: Transform -- uid: 4789 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-54.5 - parent: 60 - type: Transform -- uid: 4790 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-54.5 - parent: 60 - type: Transform -- uid: 4791 - type: FirelockGlass - components: - - pos: 18.5,-23.5 - parent: 60 - type: Transform -- uid: 4792 - type: CableApcExtension - components: - - pos: -0.5,-77.5 - parent: 60 - type: Transform -- uid: 4793 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-48.5 - parent: 60 - type: Transform -- uid: 4794 - type: ClothingHeadHelmetEVA - components: - - pos: 5.5,-35.5 - parent: 60 - type: Transform -- uid: 4795 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-54.5 - parent: 60 - type: Transform -- uid: 4796 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-50.5 - parent: 60 - type: Transform -- uid: 4797 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-51.5 - parent: 60 - type: Transform -- uid: 4798 - type: WallReinforced - components: - - pos: 8.5,-47.5 - parent: 60 - type: Transform -- uid: 4799 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-51.5 - parent: 60 - type: Transform -- uid: 4800 - type: WallReinforced - components: - - pos: 4.5,-47.5 - parent: 60 - type: Transform -- uid: 4801 - type: WallReinforced - components: - - pos: -3.5,-47.5 - parent: 60 - type: Transform -- uid: 4802 - type: WallReinforced - components: - - pos: -5.5,-47.5 - parent: 60 - type: Transform -- uid: 4803 - type: WallReinforced - components: - - pos: -7.5,-47.5 - parent: 60 - type: Transform -- uid: 4804 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-51.5 - parent: 60 - type: Transform -- uid: 4805 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-46.5 - parent: 60 - type: Transform -- uid: 4806 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-48.5 - parent: 60 - type: Transform -- uid: 4807 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-50.5 - parent: 60 - type: Transform -- uid: 4808 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-45.5 - parent: 60 - type: Transform -- uid: 4809 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-47.5 - parent: 60 - type: Transform -- uid: 4810 - type: WallReinforced - components: - - pos: -8.5,-47.5 - parent: 60 - type: Transform -- uid: 4811 - type: WallReinforced - components: - - pos: -6.5,-47.5 - parent: 60 - type: Transform -- uid: 4812 - type: WallReinforced - components: - - pos: -4.5,-47.5 - parent: 60 - type: Transform -- uid: 4813 - type: WallReinforced - components: - - pos: 5.5,-47.5 - parent: 60 - type: Transform -- uid: 4814 - type: WallReinforced - components: - - pos: 7.5,-47.5 - parent: 60 - type: Transform -- uid: 4815 - type: WallReinforced - components: - - pos: 8.5,-46.5 - parent: 60 - type: Transform -- uid: 4816 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-48.5 - parent: 60 - type: Transform -- uid: 4817 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-51.5 - parent: 60 - type: Transform -- uid: 4818 - type: Table - components: - - pos: 2.5,-76.5 - parent: 60 - type: Transform -- uid: 4819 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-54.5 - parent: 60 - type: Transform -- uid: 4820 - type: FirelockEdge - components: - - pos: 1.5,-73.5 - parent: 60 - type: Transform -- uid: 4821 - type: FirelockEdge - components: - - pos: 1.5,-58.5 - parent: 60 - type: Transform -- uid: 4822 - type: FirelockEdge - components: - - pos: 0.5,-58.5 - parent: 60 - type: Transform -- uid: 4823 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-53.5 - parent: 60 - type: Transform -- uid: 4824 - type: FirelockEdge - components: - - pos: -0.5,-73.5 - parent: 60 - type: Transform -- uid: 4825 - type: FirelockEdge - components: - - pos: 0.5,-73.5 - parent: 60 - type: Transform -- uid: 4826 - type: DisposalUnit - components: - - pos: -16.5,-53.5 - parent: 60 - type: Transform -- uid: 4827 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-68.5 - parent: 60 - type: Transform -- uid: 4828 - type: WallSolid - components: - - pos: -31.5,6.5 - parent: 60 - type: Transform -- uid: 4829 - type: DisposalTrunk - components: - - pos: -16.5,-53.5 - parent: 60 - type: Transform -- uid: 4830 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -16.5,-54.5 - parent: 60 - type: Transform -- uid: 4831 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-56.5 - parent: 60 - type: Transform - - devices: - - 5089 - - 4822 - - 4821 - - 5062 - - 5066 - - 5064 - - 5174 - - 5042 - - 5043 - - 5044 - - 5175 - - 5192 - - 4823 - type: DeviceList -- uid: 4832 - type: WallSolid - components: - - pos: -10.5,-52.5 - parent: 60 - type: Transform -- uid: 4833 - type: FireAlarm - components: - - pos: 9.5,-52.5 - parent: 60 - type: Transform - - devices: - - 5175 - - 5192 - - 4823 - type: DeviceList -- uid: 4834 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-47.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4835 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-48.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4836 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-47.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4837 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-48.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4838 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-49.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4839 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-49.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4840 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-50.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4841 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-50.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4842 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-51.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4843 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-51.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4844 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-52.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4845 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-52.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4846 - type: CableApcExtension - components: - - pos: 2.5,-63.5 - parent: 60 - type: Transform -- uid: 4847 - type: CableApcExtension - components: - - pos: 3.5,-63.5 - parent: 60 - type: Transform -- uid: 4848 - type: CableApcExtension - components: - - pos: 3.5,-64.5 - parent: 60 - type: Transform -- uid: 4849 - type: CableApcExtension - components: - - pos: 0.5,-62.5 - parent: 60 - type: Transform -- uid: 4850 - type: CableApcExtension - components: - - pos: 1.5,-62.5 - parent: 60 - type: Transform -- uid: 4851 - type: CableApcExtension - components: - - pos: 2.5,-62.5 - parent: 60 - type: Transform -- uid: 4852 - type: CableApcExtension - components: - - pos: 3.5,-68.5 - parent: 60 - type: Transform -- uid: 4853 - type: CableApcExtension - components: - - pos: 3.5,-69.5 - parent: 60 - type: Transform -- uid: 4854 - type: CableApcExtension - components: - - pos: 3.5,-70.5 - parent: 60 - type: Transform -- uid: 4855 - type: CableApcExtension - components: - - pos: 3.5,-65.5 - parent: 60 - type: Transform -- uid: 4856 - type: CableApcExtension - components: - - pos: 3.5,-66.5 - parent: 60 - type: Transform -- uid: 4857 - type: CableApcExtension - components: - - pos: 3.5,-67.5 - parent: 60 - type: Transform -- uid: 4858 - type: CableApcExtension - components: - - pos: 3.5,-71.5 - parent: 60 - type: Transform -- uid: 4859 - type: CableApcExtension - components: - - pos: 3.5,-72.5 - parent: 60 - type: Transform -- uid: 4860 - type: Grille - components: - - pos: -16.5,-56.5 - parent: 60 - type: Transform -- uid: 4861 - type: Grille - components: - - pos: -10.5,-56.5 - parent: 60 - type: Transform -- uid: 4862 - type: Grille - components: - - pos: -20.5,-53.5 - parent: 60 - type: Transform -- uid: 4863 - type: Grille - components: - - pos: -22.5,-53.5 - parent: 60 - type: Transform -- uid: 4864 - type: Grille - components: - - pos: -23.5,-55.5 - parent: 60 - type: Transform -- uid: 4865 - type: Grille - components: - - pos: -22.5,-55.5 - parent: 60 - type: Transform -- uid: 4866 - type: Grille - components: - - pos: -21.5,-55.5 - parent: 60 - type: Transform -- uid: 4867 - type: Grille - components: - - pos: -19.5,-56.5 - parent: 60 - type: Transform -- uid: 4868 - type: ReinforcedWindow - components: - - pos: -11.5,-56.5 - parent: 60 - type: Transform -- uid: 4869 - type: ReinforcedWindow - components: - - pos: -10.5,-56.5 - parent: 60 - type: Transform -- uid: 4870 - type: Grille - components: - - pos: -20.5,-55.5 - parent: 60 - type: Transform -- uid: 4871 - type: ReinforcedWindow - components: - - pos: -9.5,-56.5 - parent: 60 - type: Transform -- uid: 4872 - type: ReinforcedWindow - components: - - pos: -3.5,-60.5 - parent: 60 - type: Transform -- uid: 4873 - type: WallReinforced - components: - - pos: -3.5,-56.5 - parent: 60 - type: Transform -- uid: 4874 - type: ReinforcedWindow - components: - - pos: -4.5,-56.5 - parent: 60 - type: Transform -- uid: 4875 - type: Grille - components: - - pos: -8.5,-56.5 - parent: 60 - type: Transform -- uid: 4876 - type: WallReinforced - components: - - pos: -6.5,-56.5 - parent: 60 - type: Transform -- uid: 4877 - type: ReinforcedWindow - components: - - pos: -3.5,-57.5 - parent: 60 - type: Transform -- uid: 4878 - type: WallReinforced - components: - - pos: -3.5,-59.5 - parent: 60 - type: Transform -- uid: 4879 - type: WallReinforced - components: - - pos: -3.5,-74.5 - parent: 60 - type: Transform -- uid: 4880 - type: ReinforcedWindow - components: - - pos: -3.5,-72.5 - parent: 60 - type: Transform -- uid: 4881 - type: ReinforcedWindow - components: - - pos: -3.5,-73.5 - parent: 60 - type: Transform -- uid: 4882 - type: ReinforcedWindow - components: - - pos: -12.5,-56.5 - parent: 60 - type: Transform -- uid: 4883 - type: ReinforcedWindow - components: - - pos: -13.5,-56.5 - parent: 60 - type: Transform -- uid: 4884 - type: WallReinforced - components: - - pos: -14.5,-56.5 - parent: 60 - type: Transform -- uid: 4885 - type: ReinforcedWindow - components: - - pos: -3.5,-61.5 - parent: 60 - type: Transform -- uid: 4886 - type: ReinforcedWindow - components: - - pos: -3.5,-58.5 - parent: 60 - type: Transform -- uid: 4887 - type: CableApcExtension - components: - - pos: -4.5,-63.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4888 - type: CableApcExtension - components: - - pos: 2.5,-72.5 - parent: 60 - type: Transform -- uid: 4889 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-54.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4890 - type: AirlockExternalGlass - components: - - pos: -20.5,-54.5 - parent: 60 - type: Transform -- uid: 4891 - type: CableApcExtension - components: - - pos: -2.5,-72.5 - parent: 60 - type: Transform -- uid: 4892 - type: CableApcExtension - components: - - pos: 0.5,-78.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4893 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-56.5 - parent: 60 - type: Transform -- uid: 4894 - type: CableApcExtension - components: - - pos: 9.5,-54.5 - parent: 60 - type: Transform -- uid: 4895 - type: CableApcExtension - components: - - pos: -2.5,-68.5 - parent: 60 - type: Transform -- uid: 4896 - type: CableApcExtension - components: - - pos: 8.5,-54.5 - parent: 60 - type: Transform -- uid: 4897 - type: Rack - components: - - pos: 5.5,-38.5 - parent: 60 - type: Transform -- uid: 4898 - type: ClothingOuterHardsuitEVA - components: - - pos: 3.5,-35.5 - parent: 60 - type: Transform -- uid: 4899 - type: JetpackMiniFilled - components: - - pos: 5.43841,-38.31682 - parent: 60 - type: Transform -- uid: 4900 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-53.5 - parent: 60 - type: Transform -- uid: 4901 - type: ClothingShoesBootsMag - components: - - pos: 3.3882265,-38.488693 - parent: 60 - type: Transform -- uid: 4902 - type: ClothingHeadHelmetEVA - components: - - pos: 3.5,-35.5 - parent: 60 - type: Transform -- uid: 4903 - type: Table - components: - - pos: 3.5,-39.5 - parent: 60 - type: Transform -- uid: 4904 - type: CableApcExtension - components: - - pos: 7.5,-54.5 - parent: 60 - type: Transform -- uid: 4905 - type: CableApcExtension - components: - - pos: 5.5,-54.5 - parent: 60 - type: Transform -- uid: 4906 - type: CableApcExtension - components: - - pos: -1.5,-60.5 - parent: 60 - type: Transform -- uid: 4907 - type: CableApcExtension - components: - - pos: 6.5,-53.5 - parent: 60 - type: Transform -- uid: 4908 - type: GasPipeStraight - components: - - pos: 1.5,-60.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4909 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-65.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4910 - type: CableMV - components: - - pos: -1.5,-56.5 - parent: 60 - type: Transform -- uid: 4911 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -2.5,-70.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4912 - type: GasPipeBend - components: - - pos: -0.5,-70.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4913 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-70.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4914 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-63.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4915 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-72.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4916 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-70.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4917 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-64.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4918 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-63.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4919 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-69.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4920 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-68.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4921 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-67.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4922 - type: CableMV - components: - - pos: -1.5,-67.5 - parent: 60 - type: Transform -- uid: 4923 - type: CableMV - components: - - pos: -1.5,-63.5 - parent: 60 - type: Transform -- uid: 4924 - type: CableMV - components: - - pos: -1.5,-58.5 - parent: 60 - type: Transform -- uid: 4925 - type: CableMV - components: - - pos: -1.5,-59.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4926 - type: CableMV - components: - - pos: -1.5,-64.5 - parent: 60 - type: Transform -- uid: 4927 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4928 - type: GasPipeStraight - components: - - pos: -0.5,-62.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4929 - type: CableMV - components: - - pos: -1.5,-69.5 - parent: 60 - type: Transform -- uid: 4930 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4931 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4932 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4933 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4934 - type: GasPipeStraight - components: - - pos: 1.5,-62.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4935 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 1.5,-63.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4936 - type: GasPipeBend - components: - - pos: 3.5,-63.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4937 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: 3.462276,-39.32284 - parent: 60 - type: Transform - - nextAttack: 1562.2537236 - type: MeleeWeapon -- uid: 4938 - type: AirlockGlassShuttle - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-70.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4939 - type: AirlockGlassShuttle - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-63.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4940 - type: CableApcExtension - components: - - pos: 4.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4941 - type: CableApcExtension - components: - - pos: -4.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4942 - type: CableApcExtension - components: - - pos: -3.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4943 - type: CableHV - components: - - pos: -1.5,-53.5 - parent: 60 - type: Transform -- uid: 4944 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-47.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4945 - type: CableHV - components: - - pos: -4.5,-53.5 - parent: 60 - type: Transform -- uid: 4946 - type: CableHV - components: - - pos: -2.5,-53.5 - parent: 60 - type: Transform -- uid: 4947 - type: Grille - components: - - pos: -9.5,-56.5 - parent: 60 - type: Transform -- uid: 4948 - type: Grille - components: - - pos: -7.5,-56.5 - parent: 60 - type: Transform -- uid: 4949 - type: WallReinforced - components: - - pos: -20.5,-56.5 - parent: 60 - type: Transform -- uid: 4950 - type: CableApcExtension - components: - - pos: -1.5,-61.5 - parent: 60 - type: Transform -- uid: 4951 - type: CableApcExtension - components: - - pos: 6.5,-54.5 - parent: 60 - type: Transform -- uid: 4952 - type: ClothingShoesBootsMag - components: - - pos: 3.4976015,-38.62932 - parent: 60 - type: Transform -- uid: 4953 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-48.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4954 - type: Rack - components: - - pos: 5.5,-35.5 - parent: 60 - type: Transform -- uid: 4955 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 4956 - type: PottedPlantRandom - components: - - pos: -1.5,-69.5 - parent: 60 - type: Transform -- uid: 4957 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 4958 - type: AirlockHeadOfPersonnelLocked - components: - - name: EVA Storage - type: MetaData - - pos: 5.5,-33.5 - parent: 60 - type: Transform -- uid: 4959 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-65.5 - parent: 60 - type: Transform -- uid: 4960 - type: Grille - components: - - pos: -62.5,-24.5 - parent: 60 - type: Transform -- uid: 4961 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4962 - type: CableApcExtension - components: - - pos: 0.5,-55.5 - parent: 60 - type: Transform -- uid: 4963 - type: CableApcExtension - components: - - pos: 0.5,-56.5 - parent: 60 - type: Transform -- uid: 4964 - type: CableApcExtension - components: - - pos: 0.5,-57.5 - parent: 60 - type: Transform -- uid: 4965 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-61.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4966 - type: CableMV - components: - - pos: -1.5,-70.5 - parent: 60 - type: Transform -- uid: 4967 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4968 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4969 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4970 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4971 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 0.5,-54.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4972 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-68.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4973 - type: CableMV - components: - - pos: -1.5,-71.5 - parent: 60 - type: Transform -- uid: 4974 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4975 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4976 - type: CableHV - components: - - pos: 2.5,-35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4977 - type: CableMV - components: - - pos: -1.5,-60.5 - parent: 60 - type: Transform -- uid: 4978 - type: CableMV - components: - - pos: -1.5,-61.5 - parent: 60 - type: Transform -- uid: 4979 - type: CableMV - components: - - pos: -1.5,-72.5 - parent: 60 - type: Transform -- uid: 4980 - type: CableMV - components: - - pos: -1.5,-65.5 - parent: 60 - type: Transform -- uid: 4981 - type: GasPipeStraight - components: - - pos: 1.5,-58.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4982 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-66.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4983 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-69.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4984 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-70.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4985 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-70.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4986 - type: GasPipeStraight - components: - - pos: 1.5,-59.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4987 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-63.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4988 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-63.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4989 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-64.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4990 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-72.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4991 - type: GasPipeStraight - components: - - pos: 1.5,-71.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4992 - type: CableMV - components: - - pos: -1.5,-73.5 - parent: 60 - type: Transform -- uid: 4993 - type: CableMV - components: - - pos: -1.5,-62.5 - parent: 60 - type: Transform -- uid: 4994 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-67.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4995 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-66.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4996 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-66.5 - parent: 60 - type: Transform -- uid: 4997 - type: CableMV - components: - - pos: -1.5,-66.5 - parent: 60 - type: Transform -- uid: 4998 - type: GasPipeStraight - components: - - pos: -0.5,-71.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4999 - type: CableMV - components: - - pos: -1.5,-57.5 - parent: 60 - type: Transform -- uid: 5000 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5001 - type: AirlockGlass - components: - - pos: -0.5,-74.5 - parent: 60 - type: Transform -- uid: 5002 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-69.5 - parent: 60 - type: Transform -- uid: 5003 - type: PottedPlantRandom - components: - - pos: 2.5,-64.5 - parent: 60 - type: Transform -- uid: 5004 - type: CableApcExtension - components: - - pos: -2.5,-66.5 - parent: 60 - type: Transform -- uid: 5005 - type: CableApcExtension - components: - - pos: -8.5,-54.5 - parent: 60 - type: Transform -- uid: 5006 - type: CableApcExtension - components: - - pos: -0.5,-58.5 - parent: 60 - type: Transform -- uid: 5007 - type: CableApcExtension - components: - - pos: 1.5,-58.5 - parent: 60 - type: Transform -- uid: 5008 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-69.5 - parent: 60 - type: Transform -- uid: 5009 - type: PottedPlantRandom - components: - - pos: 2.5,-69.5 - parent: 60 - type: Transform -- uid: 5010 - type: Chair - components: - - pos: -33.5,-15.5 - parent: 60 - type: Transform -- uid: 5011 - type: CableApcExtension - components: - - pos: 4.5,-34.5 - parent: 60 - type: Transform -- uid: 5012 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-65.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5013 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-65.5 - parent: 60 - type: Transform -- uid: 5014 - type: Grille - components: - - pos: -38.5,-36.5 - parent: 60 - type: Transform -- uid: 5015 - type: CableApcExtension - components: - - pos: -1.5,-62.5 - parent: 60 - type: Transform -- uid: 5016 - type: CableApcExtension - components: - - pos: -2.5,-63.5 - parent: 60 - type: Transform -- uid: 5017 - type: CableApcExtension - components: - - pos: -1.5,-63.5 - parent: 60 - type: Transform -- uid: 5018 - type: Sink - components: - - rot: 3.141592653589793 rad - pos: -3.5,-10.5 - parent: 60 - type: Transform -- uid: 5019 - type: Mirror - components: - - rot: 3.141592653589793 rad - pos: -3.5,-11.5 - parent: 60 - type: Transform -- uid: 5020 - type: Table - components: - - pos: -26.5,-14.5 - parent: 60 - type: Transform -- uid: 5021 - type: ToiletEmpty - components: - - pos: -3.5,-9.5 - parent: 60 - type: Transform -- uid: 5022 - type: CableHV - components: - - pos: 0.5,-38.5 - parent: 60 - type: Transform -- uid: 5023 - type: CableApcExtension - components: - - pos: 4.5,-36.5 - parent: 60 - type: Transform -- uid: 5024 - type: AirlockGlass - components: - - pos: 1.5,-52.5 - parent: 60 - type: Transform -- uid: 5025 - type: AirlockGlass - components: - - pos: 0.5,-52.5 - parent: 60 - type: Transform -- uid: 5026 - type: AirlockGlass - components: - - pos: -0.5,-52.5 - parent: 60 - type: Transform -- uid: 5027 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 5.5,-38.5 - parent: 60 - type: Transform -- uid: 5028 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-28.5 - parent: 60 - type: Transform -- uid: 5029 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-73.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 5030 - type: SalvagePartsT2Spawner - components: - - pos: -64.5,9.5 - parent: 60 - type: Transform -- uid: 5031 - type: PlushieAtmosian - components: - - pos: -63.488075,46.610695 - parent: 60 - type: Transform -- uid: 5032 - type: APCElectronics - components: - - pos: -33.563503,-36.372303 - parent: 60 - type: Transform -- uid: 5033 - type: CableApcExtension - components: - - pos: -61.5,40.5 - parent: 60 - type: Transform -- uid: 5034 - type: CableApcExtension - components: - - pos: -60.5,40.5 - parent: 60 - type: Transform -- uid: 5035 - type: ReinforcedWindow - components: - - pos: -15.5,-56.5 - parent: 60 - type: Transform -- uid: 5036 - type: Grille - components: - - pos: -12.5,-56.5 - parent: 60 - type: Transform -- uid: 5037 - type: CableHV - components: - - pos: -5.5,-53.5 - parent: 60 - type: Transform -- uid: 5038 - type: ReinforcedWindow - components: - - pos: -18.5,-56.5 - parent: 60 - type: Transform -- uid: 5039 - type: ReinforcedWindow - components: - - pos: -8.5,-56.5 - parent: 60 - type: Transform -- uid: 5040 - type: WallReinforced - components: - - pos: -17.5,-56.5 - parent: 60 - type: Transform -- uid: 5041 - type: ReinforcedWindow - components: - - pos: -7.5,-56.5 - parent: 60 - type: Transform -- uid: 5042 - type: FirelockEdge - components: - - pos: -0.5,-51.5 - parent: 60 - type: Transform -- uid: 5043 - type: FirelockEdge - components: - - pos: 0.5,-51.5 - parent: 60 - type: Transform -- uid: 5044 - type: FirelockEdge - components: - - pos: 1.5,-51.5 - parent: 60 - type: Transform -- uid: 5045 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-47.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5046 - type: Poweredlight - components: - - pos: -43.5,9.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5047 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-51.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5048 - type: Grille - components: - - pos: -21.5,-53.5 - parent: 60 - type: Transform -- uid: 5049 - type: ReinforcedWindow - components: - - pos: -5.5,-56.5 - parent: 60 - type: Transform -- uid: 5050 - type: Poweredlight - components: - - pos: 2.5,-44.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5051 - type: Grille - components: - - pos: -23.5,-53.5 - parent: 60 - type: Transform -- uid: 5052 - type: ReinforcedWindow - components: - - pos: -16.5,-56.5 - parent: 60 - type: Transform -- uid: 5053 - type: Grille - components: - - pos: -11.5,-56.5 - parent: 60 - type: Transform -- uid: 5054 - type: CableHV - components: - - pos: -3.5,-53.5 - parent: 60 - type: Transform -- uid: 5055 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 5056 - type: Grille - components: - - pos: -13.5,-56.5 - parent: 60 - type: Transform -- uid: 5057 - type: CableHV - components: - - pos: -6.5,-53.5 - parent: 60 - type: Transform -- uid: 5058 - type: CableHV - components: - - pos: 0.5,-53.5 - parent: 60 - type: Transform -- uid: 5059 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 5060 - type: CableHV - components: - - pos: -0.5,-53.5 - parent: 60 - type: Transform -- uid: 5061 - type: AirSensor - components: - - pos: 0.5,-71.5 - parent: 60 - type: Transform -- uid: 5062 - type: AirSensor - components: - - pos: 0.5,-58.5 - parent: 60 - type: Transform -- uid: 5063 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 5064 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-54.5 - parent: 60 - type: Transform -- uid: 5065 - type: AirSensor - components: - - pos: -11.5,-54.5 - parent: 60 - type: Transform -- uid: 5066 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-55.5 - parent: 60 - type: Transform -- uid: 5067 - type: CableApcExtension - components: - - pos: 0.5,-77.5 - parent: 60 - type: Transform -- uid: 5068 - type: CableApcExtension - components: - - pos: 4.5,-63.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5069 - type: CableApcExtension - components: - - pos: 5.5,-63.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5070 - type: CableApcExtension - components: - - pos: 2.5,-61.5 - parent: 60 - type: Transform -- uid: 5071 - type: CableApcExtension - components: - - pos: -1.5,-74.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5072 - type: CableApcExtension - components: - - pos: -3.5,-63.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5073 - type: AirSensor - components: - - pos: 0.5,-62.5 - parent: 60 - type: Transform -- uid: 5074 - type: CableApcExtension - components: - - pos: 1.5,-76.5 - parent: 60 - type: Transform -- uid: 5075 - type: CableApcExtension - components: - - pos: 2.5,-76.5 - parent: 60 - type: Transform -- uid: 5076 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-67.5 - parent: 60 - type: Transform -- uid: 5077 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-68.5 - parent: 60 - type: Transform -- uid: 5078 - type: CableApcExtension - components: - - pos: -59.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5079 - type: WallSolidRust - components: - - pos: 54.5,-9.5 - parent: 60 - type: Transform -- uid: 5080 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-55.5 - parent: 60 - type: Transform -- uid: 5081 - type: WallmountTelescreen - components: - - pos: -25.5,-28.5 - parent: 60 - type: Transform -- uid: 5082 - type: CableApcExtension - components: - - pos: -2.5,-64.5 - parent: 60 - type: Transform -- uid: 5083 - type: CableApcExtension - components: - - pos: 0.5,-58.5 - parent: 60 - type: Transform -- uid: 5084 - type: CableApcExtension - components: - - pos: 5.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5085 - type: IntercomService - components: - - rot: 3.141592653589793 rad - pos: 30.5,-34.5 - parent: 60 - type: Transform -- uid: 5086 - type: IntercomService - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-35.5 - parent: 60 - type: Transform -- uid: 5087 - type: Grille - components: - - pos: -18.5,-56.5 - parent: 60 - type: Transform -- uid: 5088 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-71.5 - parent: 60 - type: Transform -- uid: 5089 - type: FirelockEdge - components: - - pos: -0.5,-58.5 - parent: 60 - type: Transform -- uid: 5090 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -43.5,44.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 5091 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -43.5,38.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 5092 - type: AirAlarm - components: - - pos: 3.5,-52.5 - parent: 60 - type: Transform - - devices: - - 5089 - - 4822 - - 4821 - - 5062 - - 5066 - - 5064 - - 5174 - - 5042 - - 5043 - - 5044 - - 5175 - - 5192 - - 4823 - - 7484 - - 4971 - type: DeviceList -- uid: 5093 - type: APCBasic - components: - - pos: -15.5,-52.5 - parent: 60 - type: Transform -- uid: 5094 - type: CableApcExtension - components: - - pos: -1.5,-72.5 - parent: 60 - type: Transform -- uid: 5095 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-67.5 - parent: 60 - type: Transform -- uid: 5096 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-67.5 - parent: 60 - type: Transform -- uid: 5097 - type: CableApcExtension - components: - - pos: 10.5,-52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5098 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5099 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-61.5 - parent: 60 - type: Transform -- uid: 5100 - type: CableApcExtension - components: - - pos: -1.5,-75.5 - parent: 60 - type: Transform -- uid: 5101 - type: CableApcExtension - components: - - pos: -1.5,-76.5 - parent: 60 - type: Transform -- uid: 5102 - type: CableApcExtension - components: - - pos: -0.5,-76.5 - parent: 60 - type: Transform -- uid: 5103 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-62.5 - parent: 60 - type: Transform -- uid: 5104 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-62.5 - parent: 60 - type: Transform -- uid: 5105 - type: AirAlarm - components: - - pos: -8.5,-52.5 - parent: 60 - type: Transform - - devices: - - 5065 - - 5066 - - 5064 - - 5174 - - 7485 - - 7463 - type: DeviceList -- uid: 5106 - type: Grille - components: - - pos: -15.5,-56.5 - parent: 60 - type: Transform -- uid: 5107 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-69.5 - parent: 60 - type: Transform -- uid: 5108 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-54.5 - parent: 60 - type: Transform -- uid: 5109 - type: WallReinforced - components: - - pos: 4.5,-59.5 - parent: 60 - type: Transform -- uid: 5110 - type: FireAlarm - components: - - pos: -7.5,-52.5 - parent: 60 - type: Transform - - devices: - - 5065 - - 5066 - - 5064 - - 5174 - type: DeviceList -- uid: 5111 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 2.5,-77.5 - parent: 60 - type: Transform -- uid: 5112 - type: Chair - components: - - pos: 2.5,-75.5 - parent: 60 - type: Transform -- uid: 5113 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-54.5 - parent: 60 - type: Transform -- uid: 5114 - type: ReinforcedWindow - components: - - pos: 1.5,-79.5 - parent: 60 - type: Transform -- uid: 5115 - type: GasPipeStraight - components: - - pos: 1.5,-73.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5116 - type: FaxMachineBase - components: - - pos: 5.5,-27.5 - parent: 60 - type: Transform - - name: HoP Office - type: FaxMachine -- uid: 5117 - type: GasPipeStraight - components: - - pos: 1.5,-74.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5118 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5119 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-55.5 - parent: 60 - type: Transform -- uid: 5120 - type: ReinforcedWindow - components: - - pos: 13.5,-55.5 - parent: 60 - type: Transform -- uid: 5121 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-56.5 - parent: 60 - type: Transform -- uid: 5122 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-53.5 - parent: 60 - type: Transform -- uid: 5123 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-56.5 - parent: 60 - type: Transform -- uid: 5124 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-56.5 - parent: 60 - type: Transform -- uid: 5125 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-56.5 - parent: 60 - type: Transform -- uid: 5126 - type: PottedPlant28 - components: - - pos: -1.5,-75.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 4540 - type: ContainerContainer -- uid: 5127 - type: WallSolidRust - components: - - pos: -58.5,-15.5 - parent: 60 - type: Transform -- uid: 5128 - type: MaterialDurathread - components: - - pos: 3.744194,-31.54091 - parent: 60 - type: Transform -- uid: 5129 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-68.5 - parent: 60 - type: Transform -- uid: 5130 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-60.5 - parent: 60 - type: Transform -- uid: 5131 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -2.5,-67.5 - parent: 60 - type: Transform -- uid: 5132 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -2.5,-66.5 - parent: 60 - type: Transform -- uid: 5133 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -2.5,-65.5 - parent: 60 - type: Transform -- uid: 5134 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-60.5 - parent: 60 - type: Transform -- uid: 5135 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -2.5,-62.5 - parent: 60 - type: Transform -- uid: 5136 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -2.5,-61.5 - parent: 60 - type: Transform -- uid: 5137 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-70.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 5138 - type: DisposalPipe - components: - - pos: 0.5,-15.5 - parent: 60 - type: Transform -- uid: 5139 - type: EmergencyLight - components: - - pos: 13.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 5140 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-53.5 - parent: 60 - type: Transform -- uid: 5141 - type: FirelockGlass - components: - - pos: -2.5,-45.5 - parent: 60 - type: Transform -- uid: 5142 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5143 - type: ToolboxEmergencyFilled - components: - - pos: 3.552217,-60.360012 - parent: 60 - type: Transform -- uid: 5144 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: -1.5,-52.5 - parent: 60 - type: Transform -- uid: 5145 - type: WallWeaponCapacitorRecharger - components: - - pos: -20.5,-14.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 5146 - type: WallSolid - components: - - pos: -32.5,-33.5 - parent: 60 - type: Transform -- uid: 5147 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5148 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5149 - type: ShuttersNormalOpen - components: - - pos: -11.5,-52.5 - parent: 60 - type: Transform -- uid: 5150 - type: AirlockGlass - components: - - pos: 1.5,-59.5 - parent: 60 - type: Transform -- uid: 5151 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-55.5 - parent: 60 - type: Transform -- uid: 5152 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-53.5 - parent: 60 - type: Transform -- uid: 5153 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-71.5 - parent: 60 - type: Transform -- uid: 5154 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-71.5 - parent: 60 - type: Transform -- uid: 5155 - type: SignDirectionalSci - components: - - rot: 3.141592653589793 rad - pos: -35.5,-21.5 - parent: 60 - type: Transform -- uid: 5156 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-73.5 - parent: 60 - type: Transform -- uid: 5157 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-72.5 - parent: 60 - type: Transform -- uid: 5158 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-71.5 - parent: 60 - type: Transform -- uid: 5159 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -13.5,-53.5 - parent: 60 - type: Transform -- uid: 5160 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -12.5,-53.5 - parent: 60 - type: Transform -- uid: 5161 - type: AirlockGlass - components: - - pos: -3.5,-54.5 - parent: 60 - type: Transform -- uid: 5162 - type: AirlockGlass - components: - - pos: -3.5,-53.5 - parent: 60 - type: Transform -- uid: 5163 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-69.5 - parent: 60 - type: Transform -- uid: 5164 - type: AirlockGlass - components: - - pos: -3.5,-55.5 - parent: 60 - type: Transform -- uid: 5165 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -11.5,-53.5 - parent: 60 - type: Transform -- uid: 5166 - type: ClothingNeckTransPin - components: - - pos: -8.970711,16.51249 - parent: 60 - type: Transform -- uid: 5167 - type: AirlockGlass - components: - - pos: 4.5,-55.5 - parent: 60 - type: Transform -- uid: 5168 - type: AirlockExternalGlass - components: - - pos: 4.5,-63.5 - parent: 60 - type: Transform -- uid: 5169 - type: AirlockExternalGlass - components: - - pos: 4.5,-70.5 - parent: 60 - type: Transform -- uid: 5170 - type: AirlockGlass - components: - - pos: 4.5,-53.5 - parent: 60 - type: Transform -- uid: 5171 - type: AirlockGlass - components: - - pos: 4.5,-54.5 - parent: 60 - type: Transform -- uid: 5172 - type: WindowTintedDirectional - components: - - pos: -51.5,-30.5 - parent: 60 - type: Transform -- uid: 5173 - type: WindowTintedDirectional - components: - - pos: -50.5,-30.5 - parent: 60 - type: Transform -- uid: 5174 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-53.5 - parent: 60 - type: Transform -- uid: 5175 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-55.5 - parent: 60 - type: Transform -- uid: 5176 - type: WallSolid - components: - - pos: -9.5,-52.5 - parent: 60 - type: Transform -- uid: 5177 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: 2.5,-43.5 - parent: 60 - type: Transform -- uid: 5178 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: -1.5,-43.5 - parent: 60 - type: Transform -- uid: 5179 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5180 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5181 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-42.5 - parent: 60 - type: Transform -- uid: 5182 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-43.5 - parent: 60 - type: Transform -- uid: 5183 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: 0.5,-44.5 - parent: 60 - type: Transform -- uid: 5184 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-45.5 - parent: 60 - type: Transform -- uid: 5185 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-46.5 - parent: 60 - type: Transform -- uid: 5186 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-47.5 - parent: 60 - type: Transform -- uid: 5187 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-48.5 - parent: 60 - type: Transform -- uid: 5188 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-49.5 - parent: 60 - type: Transform -- uid: 5189 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-50.5 - parent: 60 - type: Transform -- uid: 5190 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-52.5 - parent: 60 - type: Transform -- uid: 5191 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,-51.5 - parent: 60 - type: Transform -- uid: 5192 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-54.5 - parent: 60 - type: Transform -- uid: 5193 - type: Poweredlight - components: - - pos: 12.5,-22.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5194 - type: CableApcExtension - components: - - pos: -15.5,-28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5195 - type: CableApcExtension - components: - - pos: 0.5,-79.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5196 - type: DisposalPipe - components: - - pos: 0.5,-10.5 - parent: 60 - type: Transform -- uid: 5197 - type: DisposalPipe - components: - - pos: 0.5,-9.5 - parent: 60 - type: Transform -- uid: 5198 - type: ChessBoard - components: - - pos: 2.5348077,-76.44673 - parent: 60 - type: Transform -- uid: 5199 - type: DisposalPipe - components: - - pos: 0.5,-18.5 - parent: 60 - type: Transform -- uid: 5200 - type: DisposalPipe - components: - - pos: 0.5,-20.5 - parent: 60 - type: Transform -- uid: 5201 - type: WallReinforced - components: - - pos: -26.5,-21.5 - parent: 60 - type: Transform -- uid: 5202 - type: ExtinguisherCabinetFilled - components: - - pos: 7.5,-52.5 - parent: 60 - type: Transform -- uid: 5203 - type: ExtinguisherCabinetFilled - components: - - pos: -3.5,-56.5 - parent: 60 - type: Transform -- uid: 5204 - type: FirelockGlass - components: - - pos: 18.5,-24.5 - parent: 60 - type: Transform -- uid: 5205 - type: ClothingHeadHelmetTemplar - components: - - pos: 2.5191827,-75.49361 - parent: 60 - type: Transform -- uid: 5206 - type: Grille - components: - - pos: 1.5,-78.5 - parent: 60 - type: Transform -- uid: 5207 - type: ClothingOuterHardsuitEVA - components: - - pos: 13.564448,-17.456541 - parent: 60 - type: Transform -- uid: 5208 - type: ClothingHeadHelmetEVA - components: - - pos: 13.548823,-17.550291 - parent: 60 - type: Transform -- uid: 5209 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 22.5,-25.5 - parent: 60 - type: Transform - - devices: - - 21501 - - 2456 - - 2455 - - 2454 - - 5204 - - 4791 - - 7472 - - 6490 - - 6561 - - 6489 - - 7630 - - 4503 - type: DeviceList -- uid: 5210 - type: ClothingHeadHatBeret - components: - - pos: -39.614906,19.420725 - parent: 60 - type: Transform -- uid: 5211 - type: DisposalPipe - components: - - pos: 0.5,-6.5 - parent: 60 - type: Transform -- uid: 5212 - type: ClothingShoesTourist - components: - - pos: -1.511615,-58.882652 - parent: 60 - type: Transform -- uid: 5213 - type: WallReinforced - components: - - pos: 3.5,-78.5 - parent: 60 - type: Transform -- uid: 5214 - type: CableApcExtension - components: - - pos: -15.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5215 - type: GasPipeStraight - components: - - pos: -0.5,-73.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5216 - type: Grille - components: - - pos: 3.5,-76.5 - parent: 60 - type: Transform -- uid: 5217 - type: Grille - components: - - pos: 3.5,-75.5 - parent: 60 - type: Transform -- uid: 5218 - type: CableApcExtension - components: - - pos: -15.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5219 - type: CableApcExtension - components: - - pos: -27.5,-20.5 - parent: 60 - type: Transform -- uid: 5220 - type: DisposalPipe - components: - - pos: 0.5,-4.5 - parent: 60 - type: Transform -- uid: 5221 - type: DonkpocketBoxSpawner - components: - - pos: 47.5,17.5 - parent: 60 - type: Transform -- uid: 5222 - type: ReinforcedWindow - components: - - pos: 42.5,7.5 - parent: 60 - type: Transform -- uid: 5223 - type: Rack - components: - - pos: 46.5,6.5 - parent: 60 - type: Transform -- uid: 5224 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -39.5,7.5 - parent: 60 - type: Transform - - devices: - - 780 - - 7721 - - 1017 - - 21614 - - 491 - - 8774 - - 8957 - - 6018 - - 8388 - type: DeviceList -- uid: 5225 - type: WindoorCargoLocked - components: - - rot: 3.141592653589793 rad - pos: 45.5,4.5 - parent: 60 - type: Transform -- uid: 5226 - type: CableMV - components: - - pos: -6.5,-54.5 - parent: 60 - type: Transform -- uid: 5227 - type: Grille - components: - - pos: -3.5,-60.5 - parent: 60 - type: Transform -- uid: 5228 - type: Grille - components: - - pos: -3.5,-72.5 - parent: 60 - type: Transform -- uid: 5229 - type: Grille - components: - - pos: -3.5,-73.5 - parent: 60 - type: Transform -- uid: 5230 - type: WallSolid - components: - - pos: -13.5,-49.5 - parent: 60 - type: Transform -- uid: 5231 - type: CableMV - components: - - pos: -6.5,-55.5 - parent: 60 - type: Transform -- uid: 5232 - type: WallSolid - components: - - pos: -33.5,-33.5 - parent: 60 - type: Transform -- uid: 5233 - type: CableApcExtension - components: - - pos: 33.5,-10.5 - parent: 60 - type: Transform -- uid: 5234 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -27.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 5235 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -24.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 5236 - type: CableMV - components: - - pos: -5.5,-55.5 - parent: 60 - type: Transform -- uid: 5237 - type: CableMV - components: - - pos: -4.5,-55.5 - parent: 60 - type: Transform -- uid: 5238 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-56.5 - parent: 60 - type: Transform -- uid: 5239 - type: Grille - components: - - pos: -4.5,-56.5 - parent: 60 - type: Transform -- uid: 5240 - type: Grille - components: - - pos: -3.5,-58.5 - parent: 60 - type: Transform -- uid: 5241 - type: Grille - components: - - pos: -3.5,-57.5 - parent: 60 - type: Transform -- uid: 5242 - type: Grille - components: - - pos: -3.5,-61.5 - parent: 60 - type: Transform -- uid: 5243 - type: Grille - components: - - pos: -66.5,29.5 - parent: 60 - type: Transform -- uid: 5244 - type: DisposalPipe - components: - - pos: 0.5,-2.5 - parent: 60 - type: Transform -- uid: 5245 - type: Grille - components: - - pos: -65.5,29.5 - parent: 60 - type: Transform -- uid: 5246 - type: RandomSpawner - components: - - pos: 34.5,-22.5 - parent: 60 - type: Transform -- uid: 5247 - type: RandomSpawner - components: - - pos: 15.5,-16.5 - parent: 60 - type: Transform -- uid: 5248 - type: WallReinforced - components: - - pos: -42.5,-35.5 - parent: 60 - type: Transform -- uid: 5249 - type: WallReinforced - components: - - pos: -42.5,-37.5 - parent: 60 - type: Transform -- uid: 5250 - type: WallReinforced - components: - - pos: -42.5,-36.5 - parent: 60 - type: Transform -- uid: 5251 - type: WallReinforced - components: - - pos: -41.5,-37.5 - parent: 60 - type: Transform -- uid: 5252 - type: WallReinforced - components: - - pos: -40.5,-37.5 - parent: 60 - type: Transform -- uid: 5253 - type: WallReinforced - components: - - pos: -39.5,-37.5 - parent: 60 - type: Transform -- uid: 5254 - type: WallReinforced - components: - - pos: -38.5,-37.5 - parent: 60 - type: Transform -- uid: 5255 - type: WallReinforced - components: - - pos: -37.5,-37.5 - parent: 60 - type: Transform -- uid: 5256 - type: WallReinforced - components: - - pos: -36.5,-37.5 - parent: 60 - type: Transform -- uid: 5257 - type: ReinforcedWindow - components: - - pos: -23.5,-35.5 - parent: 60 - type: Transform -- uid: 5258 - type: SignEscapePods - components: - - pos: 23.5,-47.5 - parent: 60 - type: Transform -- uid: 5259 - type: ReinforcedWindow - components: - - pos: -23.5,-36.5 - parent: 60 - type: Transform -- uid: 5260 - type: WallReinforced - components: - - pos: -22.5,-34.5 - parent: 60 - type: Transform -- uid: 5261 - type: ReinforcedWindow - components: - - pos: -25.5,-36.5 - parent: 60 - type: Transform -- uid: 5262 - type: ReinforcedWindow - components: - - pos: -23.5,-34.5 - parent: 60 - type: Transform -- uid: 5263 - type: WallReinforced - components: - - pos: -27.5,-34.5 - parent: 60 - type: Transform -- uid: 5264 - type: WallReinforced - components: - - pos: -27.5,-35.5 - parent: 60 - type: Transform -- uid: 5265 - type: WallReinforced - components: - - pos: -27.5,-36.5 - parent: 60 - type: Transform -- uid: 5266 - type: WallReinforced - components: - - pos: -27.5,-37.5 - parent: 60 - type: Transform -- uid: 5267 - type: WallReinforced - components: - - pos: -28.5,-37.5 - parent: 60 - type: Transform -- uid: 5268 - type: WallReinforced - components: - - pos: -29.5,-37.5 - parent: 60 - type: Transform -- uid: 5269 - type: WallReinforced - components: - - pos: -30.5,-37.5 - parent: 60 - type: Transform -- uid: 5270 - type: WallReinforced - components: - - pos: -32.5,-36.5 - parent: 60 - type: Transform -- uid: 5271 - type: WallReinforced - components: - - pos: -32.5,-37.5 - parent: 60 - type: Transform -- uid: 5272 - type: WallReinforced - components: - - pos: -33.5,-37.5 - parent: 60 - type: Transform -- uid: 5273 - type: WallReinforced - components: - - pos: -34.5,-37.5 - parent: 60 - type: Transform -- uid: 5274 - type: WallReinforced - components: - - pos: -35.5,-37.5 - parent: 60 - type: Transform -- uid: 5275 - type: WallSolid - components: - - pos: -42.5,-29.5 - parent: 60 - type: Transform -- uid: 5276 - type: ReinforcedWindow - components: - - pos: -64.5,-12.5 - parent: 60 - type: Transform -- uid: 5277 - type: BananaSeeds - components: - - pos: -56.398922,-21.512783 - parent: 60 - type: Transform -- uid: 5278 - type: CableApcExtension - components: - - pos: 40.5,-7.5 - parent: 60 - type: Transform -- uid: 5279 - type: Rack - components: - - pos: -55.5,-16.5 - parent: 60 - type: Transform -- uid: 5280 - type: Catwalk - components: - - pos: -55.5,-18.5 - parent: 60 - type: Transform -- uid: 5281 - type: SolarPanel - components: - - pos: 33.5,-64.5 - parent: 60 - type: Transform -- uid: 5282 - type: WallSolid - components: - - pos: 36.5,12.5 - parent: 60 - type: Transform -- uid: 5283 - type: WallReinforced - components: - - pos: 21.5,14.5 - parent: 60 - type: Transform -- uid: 5284 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 52.5,3.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 12607 - Forward: - - port: Left - uid: 12607 - Off: - - port: Middle - uid: 12607 - type: SignalReceiver -- uid: 5285 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 51.5,3.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 12607 - Forward: - - port: Left - uid: 12607 - Off: - - port: Middle - uid: 12607 - type: SignalReceiver -- uid: 5286 - type: Grille - components: - - pos: 40.5,-65.5 - parent: 60 - type: Transform -- uid: 5287 - type: WallReinforced - components: - - pos: 60.5,-37.5 - parent: 60 - type: Transform -- uid: 5288 - type: Autolathe - components: - - pos: 46.5,5.5 - parent: 60 - type: Transform -- uid: 5289 - type: SolarPanel - components: - - pos: 26.5,-70.5 - parent: 60 - type: Transform -- uid: 5290 - type: Catwalk - components: - - pos: 32.5,-67.5 - parent: 60 - type: Transform -- uid: 5291 - type: WallSolid - components: - - pos: -34.5,-36.5 - parent: 60 - type: Transform -- uid: 5292 - type: Grille - components: - - pos: 25.5,-78.5 - parent: 60 - type: Transform -- uid: 5293 - type: Catwalk - components: - - pos: 24.5,-71.5 - parent: 60 - type: Transform -- uid: 5294 - type: PoweredlightLED - components: - - pos: -31.5,-26.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5295 - type: NitrogenCanister - components: - - pos: -35.5,-30.5 - parent: 60 - type: Transform -- uid: 5296 - type: Catwalk - components: - - pos: 31.5,-61.5 - parent: 60 - type: Transform -- uid: 5297 - type: filingCabinetRandom - components: - - pos: -22.5,-29.5 - parent: 60 - type: Transform -- uid: 5298 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -43.5,34.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 5299 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5300 - type: InflatableWall - components: - - pos: -40.5,-33.5 - parent: 60 - type: Transform -- uid: 5301 - type: SpaceVillainArcadeFilled - components: - - pos: -37.5,-34.5 - parent: 60 - type: Transform -- uid: 5302 - type: RandomInstruments - components: - - pos: -41.5,-35.5 - parent: 60 - type: Transform -- uid: 5303 - type: ToySpawner - components: - - pos: -39.5,-34.5 - parent: 60 - type: Transform -- uid: 5304 - type: BlockGameArcade - components: - - pos: -35.5,-34.5 - parent: 60 - type: Transform -- uid: 5305 - type: DisposalPipe - components: - - pos: 0.5,-5.5 - parent: 60 - type: Transform -- uid: 5306 - type: ClothingOuterWizard - components: - - pos: -36.144512,-35.432755 - parent: 60 - type: Transform -- uid: 5307 - type: ClothingShoesWizard - components: - - pos: -36.128887,-35.995255 - parent: 60 - type: Transform -- uid: 5308 - type: ReinforcedWindow - components: - - pos: 66.5,-37.5 - parent: 60 - type: Transform -- uid: 5309 - type: Grille - components: - - pos: -67.5,29.5 - parent: 60 - type: Transform -- uid: 5310 - type: WallReinforced - components: - - pos: -30.5,-36.5 - parent: 60 - type: Transform -- uid: 5311 - type: WallReinforced - components: - - pos: -30.5,-38.5 - parent: 60 - type: Transform -- uid: 5312 - type: AirlockExternalGlass - components: - - pos: -31.5,-38.5 - parent: 60 - type: Transform -- uid: 5313 - type: IntercomAll - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 60 - type: Transform -- uid: 5314 - type: WallReinforced - components: - - pos: -32.5,-38.5 - parent: 60 - type: Transform -- uid: 5315 - type: IntercomEngineering - components: - - pos: -28.5,33.5 - parent: 60 - type: Transform -- uid: 5316 - type: WallSolidRust - components: - - pos: 18.5,-45.5 - parent: 60 - type: Transform -- uid: 5317 - type: PoweredSmallLight - components: - - pos: -32.5,-34.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5318 - type: PoweredSmallLight - components: - - pos: -29.5,-34.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5319 - type: AirlockMaint - components: - - pos: -31.5,-33.5 - parent: 60 - type: Transform -- uid: 5320 - type: ClosetEmergencyFilledRandom - components: - - pos: -28.5,-34.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5321 - type: ClosetFireFilled - components: - - pos: -29.5,-34.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5322 - type: ClosetMaintenanceFilledRandom - components: - - pos: -33.5,-34.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5323 - type: ClosetMaintenanceFilledRandom - components: - - pos: -39.5,-36.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5324 - type: BoxFolderRed - components: - - pos: -24.514614,-29.387 - parent: 60 - type: Transform -- uid: 5325 - type: CableApcExtension - components: - - pos: -71.5,18.5 - parent: 60 - type: Transform -- uid: 5326 - type: Lamp - components: - - pos: -24.428305,-28.144638 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 5327 - type: CableApcExtension - components: - - pos: -23.5,-30.5 - parent: 60 - type: Transform -- uid: 5328 - type: CableApcExtension - components: - - pos: -26.5,-28.5 - parent: 60 - type: Transform -- uid: 5329 - type: RandomSpawner - components: - - pos: -25.5,-32.5 - parent: 60 - type: Transform -- uid: 5330 - type: RandomSpawner - components: - - pos: -37.5,-32.5 - parent: 60 - type: Transform -- uid: 5331 - type: WallReinforced - components: - - pos: -26.5,-34.5 - parent: 60 - type: Transform -- uid: 5332 - type: ReinforcedWindow - components: - - pos: -25.5,-35.5 - parent: 60 - type: Transform -- uid: 5333 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-37.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5334 - type: Table - components: - - pos: 43.5,7.5 - parent: 60 - type: Transform -- uid: 5335 - type: Table - components: - - pos: 46.5,10.5 - parent: 60 - type: Transform -- uid: 5336 - type: Table - components: - - pos: 46.5,9.5 - parent: 60 - type: Transform -- uid: 5337 - type: HandLabeler - components: - - pos: 43.5,7.5 - parent: 60 - type: Transform -- uid: 5338 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 50.5,6.5 - parent: 60 - type: Transform -- uid: 5339 - type: DrinkMugMetal - components: - - pos: 51.5,6.5 - parent: 60 - type: Transform -- uid: 5340 - type: FigureSpawner - components: - - pos: -36.5,-34.5 - parent: 60 - type: Transform -- uid: 5341 - type: WallReinforced - components: - - pos: 14.5,-0.5 - parent: 60 - type: Transform -- uid: 5342 - type: WallReinforced - components: - - pos: 14.5,1.5 - parent: 60 - type: Transform -- uid: 5343 - type: WallReinforced - components: - - pos: 14.5,2.5 - parent: 60 - type: Transform -- uid: 5344 - type: BlastDoorOpen - components: - - rot: 3.141592653589793 rad - pos: -115.5,10.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5346 - type: SignalReceiver -- uid: 5345 - type: BlastDoorOpen - components: - - rot: 3.141592653589793 rad - pos: -107.5,11.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5346 - type: SignalReceiver -- uid: 5346 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: -114.5,8.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5361 - - port: Toggle - uid: 5344 - - port: Toggle - uid: 5360 - - port: Toggle - uid: 5358 - - port: Toggle - uid: 5352 - - port: Toggle - uid: 5359 - - port: Toggle - uid: 5345 - type: SignalTransmitter -- uid: 5347 - type: ReinforcedWindow - components: - - pos: 9.5,2.5 - parent: 60 - type: Transform -- uid: 5348 - type: ReinforcedWindow - components: - - pos: 10.5,6.5 - parent: 60 - type: Transform -- uid: 5349 - type: ReinforcedWindow - components: - - pos: 8.5,5.5 - parent: 60 - type: Transform -- uid: 5350 - type: WallReinforced - components: - - pos: 14.5,-1.5 - parent: 60 - type: Transform -- uid: 5351 - type: WallReinforced - components: - - pos: 14.5,0.5 - parent: 60 - type: Transform -- uid: 5352 - type: BlastDoorOpen - components: - - rot: 3.141592653589793 rad - pos: -107.5,9.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5346 - type: SignalReceiver -- uid: 5353 - type: ReinforcedWindow - components: - - pos: 10.5,1.5 - parent: 60 - type: Transform -- uid: 5354 - type: ReinforcedWindow - components: - - pos: 8.5,4.5 - parent: 60 - type: Transform -- uid: 5355 - type: ReinforcedWindow - components: - - pos: 8.5,3.5 - parent: 60 - type: Transform -- uid: 5356 - type: ReinforcedWindow - components: - - pos: 11.5,1.5 - parent: 60 - type: Transform -- uid: 5357 - type: ReinforcedWindow - components: - - pos: 12.5,1.5 - parent: 60 - type: Transform -- uid: 5358 - type: BlastDoorOpen - components: - - rot: 3.141592653589793 rad - pos: -111.5,7.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5346 - type: SignalReceiver -- uid: 5359 - type: BlastDoorOpen - components: - - rot: 3.141592653589793 rad - pos: -107.5,10.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5346 - type: SignalReceiver -- uid: 5360 - type: BlastDoorOpen - components: - - rot: 3.141592653589793 rad - pos: -115.5,11.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5346 - type: SignalReceiver -- uid: 5361 - type: BlastDoorOpen - components: - - rot: 3.141592653589793 rad - pos: -115.5,9.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5346 - type: SignalReceiver -- uid: 5362 - type: ReinforcedWindow - components: - - pos: 13.5,2.5 - parent: 60 - type: Transform -- uid: 5363 - type: ReinforcedWindow - components: - - pos: 13.5,6.5 - parent: 60 - type: Transform -- uid: 5364 - type: WaterTankFull - components: - - pos: 13.5,4.5 - parent: 60 - type: Transform -- uid: 5365 - type: AirlockGlass - components: - - pos: 14.5,7.5 - parent: 60 - type: Transform -- uid: 5366 - type: ClothingOuterCardborg - components: - - pos: -110.45662,13.608012 - parent: 60 - type: Transform -- uid: 5367 - type: ClothingHeadHatCardborg - components: - - pos: -109.534744,13.592387 - parent: 60 - type: Transform -- uid: 5368 - type: ReinforcedWindow - components: - - pos: 14.5,4.5 - parent: 60 - type: Transform -- uid: 5369 - type: TableReinforced - components: - - pos: -109.5,8.5 - parent: 60 - type: Transform -- uid: 5370 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 8.5,6.5 - parent: 60 - type: Transform -- uid: 5371 - type: ReinforcedWindow - components: - - pos: 9.5,6.5 - parent: 60 - type: Transform -- uid: 5372 - type: ReinforcedWindow - components: - - pos: 14.5,3.5 - parent: 60 - type: Transform -- uid: 5373 - type: ReinforcedWindow - components: - - pos: 14.5,5.5 - parent: 60 - type: Transform -- uid: 5374 - type: ReinforcedWindow - components: - - pos: 12.5,6.5 - parent: 60 - type: Transform -- uid: 5375 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 14.5,6.5 - parent: 60 - type: Transform -- uid: 5376 - type: TableReinforced - components: - - pos: -112.5,8.5 - parent: 60 - type: Transform -- uid: 5377 - type: TableReinforced - components: - - pos: -110.5,8.5 - parent: 60 - type: Transform -- uid: 5378 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -113.45662,13.529887 - parent: 60 - type: Transform -- uid: 5379 - type: hydroponicsTray - components: - - pos: 11.5,2.5 - parent: 60 - type: Transform -- uid: 5380 - type: SeedExtractor - components: - - pos: 13.5,3.5 - parent: 60 - type: Transform -- uid: 5381 - type: Table - components: - - pos: 9.5,3.5 - parent: 60 - type: Transform -- uid: 5382 - type: CableApcExtension - components: - - pos: 10.5,6.5 - parent: 60 - type: Transform -- uid: 5383 - type: Bucket - components: - - pos: 12.5,3.5 - parent: 60 - type: Transform -- uid: 5384 - type: hydroponicsTray - components: - - pos: 10.5,2.5 - parent: 60 - type: Transform -- uid: 5385 - type: hydroponicsTray - components: - - pos: 12.5,2.5 - parent: 60 - type: Transform -- uid: 5386 - type: SprayBottle - components: - - pos: 9.5,3.5 - parent: 60 - type: Transform -- uid: 5387 - type: BananaSeeds - components: - - pos: 11.5,2.5 - parent: 60 - type: Transform -- uid: 5388 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,5.5 - parent: 60 - type: Transform -- uid: 5389 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,5.5 - parent: 60 - type: Transform -- uid: 5390 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 60 - type: Transform -- uid: 5391 - type: DisposalUnit - components: - - pos: 13.5,5.5 - parent: 60 - type: Transform -- uid: 5392 - type: GasPipeStraight - components: - - pos: 13.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5393 - type: GasPipeStraight - components: - - pos: 13.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5394 - type: GasPipeStraight - components: - - pos: 13.5,6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5395 - type: CableApcExtension - components: - - pos: 9.5,5.5 - parent: 60 - type: Transform -- uid: 5396 - type: GasPipeStraight - components: - - pos: 9.5,6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5397 - type: CableApcExtension - components: - - pos: 9.5,6.5 - parent: 60 - type: Transform -- uid: 5398 - type: CableApcExtension - components: - - pos: 8.5,4.5 - parent: 60 - type: Transform -- uid: 5399 - type: CableApcExtension - components: - - pos: 8.5,3.5 - parent: 60 - type: Transform -- uid: 5400 - type: CableApcExtension - components: - - pos: 8.5,5.5 - parent: 60 - type: Transform -- uid: 5401 - type: AirlockGlass - components: - - pos: 11.5,6.5 - parent: 60 - type: Transform -- uid: 5402 - type: Chair - components: - - pos: 10.5,5.5 - parent: 60 - type: Transform -- uid: 5403 - type: HydroponicsToolSpade - components: - - pos: 9.5,3.5 - parent: 60 - type: Transform -- uid: 5404 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5405 - type: ReinforcedWindow - components: - - pos: 32.5,27.5 - parent: 60 - type: Transform -- uid: 5406 - type: ReinforcedWindow - components: - - pos: 37.5,27.5 - parent: 60 - type: Transform -- uid: 5407 - type: SignTelecomms - components: - - pos: 22.5,6.5 - parent: 60 - type: Transform -- uid: 5408 - type: WallSolid - components: - - pos: 47.5,10.5 - parent: 60 - type: Transform -- uid: 5409 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-29.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5410 - type: SurveillanceCameraEngineering - components: - - pos: 24.5,7.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms Entrance - type: SurveillanceCamera -- uid: 5411 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 10.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5412 - type: GasVentPump - components: - - pos: 12.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5413 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 8.5,8.5 - parent: 60 - type: Transform -- uid: 5414 - type: DisposalBend - components: - - pos: 8.5,9.5 - parent: 60 - type: Transform -- uid: 5415 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,9.5 - parent: 60 - type: Transform -- uid: 5416 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 6.5,9.5 - parent: 60 - type: Transform -- uid: 5417 - type: DisposalBend - components: - - pos: 6.5,10.5 - parent: 60 - type: Transform -- uid: 5418 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,10.5 - parent: 60 - type: Transform -- uid: 5419 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,10.5 - parent: 60 - type: Transform -- uid: 5420 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: 3.5,10.5 - parent: 60 - type: Transform -- uid: 5421 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,10.5 - parent: 60 - type: Transform -- uid: 5422 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,10.5 - parent: 60 - type: Transform -- uid: 5423 - type: CableMV - components: - - pos: -21.5,-5.5 - parent: 60 - type: Transform -- uid: 5424 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5425 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5426 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5427 - type: CableMV - components: - - pos: -30.5,-5.5 - parent: 60 - type: Transform -- uid: 5428 - type: CableMV - components: - - pos: -27.5,-14.5 - parent: 60 - type: Transform -- uid: 5429 - type: CableMV - components: - - pos: -20.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5430 - type: CableMV - components: - - pos: -18.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5431 - type: CableMV - components: - - pos: -21.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5432 - type: Grille - components: - - pos: -17.5,-10.5 - parent: 60 - type: Transform -- uid: 5433 - type: Catwalk - components: - - pos: 33.5,-67.5 - parent: 60 - type: Transform -- uid: 5434 - type: SolarPanel - components: - - pos: 27.5,-72.5 - parent: 60 - type: Transform -- uid: 5435 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-21.5 - parent: 60 - type: Transform -- uid: 5436 - type: CableMV - components: - - pos: -20.5,-6.5 - parent: 60 - type: Transform -- uid: 5437 - type: WallReinforced - components: - - pos: -12.5,-1.5 - parent: 60 - type: Transform -- uid: 5438 - type: PottedPlantRandom - components: - - pos: -38.5,-24.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 5439 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5440 - type: GasVentScrubber - components: - - pos: 34.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5441 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5442 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5443 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5444 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5445 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5446 - type: GasVentPump - components: - - pos: 33.5,-14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5447 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5448 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5449 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5450 - type: GasVentScrubber - components: - - pos: 38.5,-16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5451 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5452 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5453 - type: CableHV - components: - - pos: 34.5,-2.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5454 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5455 - type: CableMV - components: - - pos: 52.5,-29.5 - parent: 60 - type: Transform -- uid: 5456 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5457 - type: ReinforcedWindow - components: - - pos: 14.5,-3.5 - parent: 60 - type: Transform -- uid: 5458 - type: ReinforcedWindow - components: - - pos: 14.5,-2.5 - parent: 60 - type: Transform -- uid: 5459 - type: WallSolid - components: - - pos: -65.5,47.5 - parent: 60 - type: Transform -- uid: 5460 - type: WallSolid - components: - - pos: -65.5,48.5 - parent: 60 - type: Transform -- uid: 5461 - type: WallSolid - components: - - pos: -65.5,49.5 - parent: 60 - type: Transform -- uid: 5462 - type: MedkitBruteFilled - components: - - pos: 49.459118,-8.466429 - parent: 60 - type: Transform -- uid: 5463 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5464 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5465 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5466 - type: FirelockGlass - components: - - pos: 42.5,-23.5 - parent: 60 - type: Transform -- uid: 5467 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5468 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5469 - type: GasPipeStraight - components: - - pos: -38.5,-23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5470 - type: GasPipeStraight - components: - - pos: -38.5,-22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5471 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5472 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -16.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5473 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -15.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5474 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -38.5,-24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5475 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5476 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -38.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5477 - type: AtmosDeviceFanTiny - components: - - pos: 46.5,31.5 - parent: 60 - type: Transform -- uid: 5478 - type: ReinforcedWindow - components: - - pos: 55.5,31.5 - parent: 60 - type: Transform -- uid: 5479 - type: Table - components: - - pos: 42.5,9.5 - parent: 60 - type: Transform -- uid: 5480 - type: AirlockMaintLocked - components: - - pos: 35.5,11.5 - parent: 60 - type: Transform -- uid: 5481 - type: AirlockCargoGlassLocked - components: - - pos: 48.5,5.5 - parent: 60 - type: Transform -- uid: 5482 - type: WallSolid - components: - - pos: 20.5,10.5 - parent: 60 - type: Transform -- uid: 5483 - type: WallReinforced - components: - - pos: 25.5,13.5 - parent: 60 - type: Transform -- uid: 5484 - type: Grille - components: - - pos: 24.5,-78.5 - parent: 60 - type: Transform -- uid: 5485 - type: WallSolid - components: - - pos: 18.5,-5.5 - parent: 60 - type: Transform -- uid: 5486 - type: FirelockGlass - components: - - pos: 46.5,-21.5 - parent: 60 - type: Transform -- uid: 5487 - type: FirelockGlass - components: - - pos: 36.5,-20.5 - parent: 60 - type: Transform -- uid: 5488 - type: FirelockGlass - components: - - pos: 42.5,-20.5 - parent: 60 - type: Transform -- uid: 5489 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-0.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 5805 - Forward: - - port: Left - uid: 5805 - Off: - - port: Middle - uid: 5805 - type: SignalReceiver -- uid: 5490 - type: BoxLightMixed - components: - - pos: 1.5511138,15.604638 - parent: 60 - type: Transform -- uid: 5491 - type: CableHV - components: - - pos: 38.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5492 - type: Grille - components: - - pos: 63.5,-11.5 - parent: 60 - type: Transform -- uid: 5493 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-2.5 - parent: 60 - type: Transform -- uid: 5494 - type: CableHV - components: - - pos: 24.5,-68.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5495 - type: CableApcExtension - components: - - pos: -69.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5496 - type: CableHV - components: - - pos: -67.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5497 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -66.5,-18.5 - parent: 60 - type: Transform -- uid: 5498 - type: Grille - components: - - pos: 26.5,-78.5 - parent: 60 - type: Transform -- uid: 5499 - type: WallReinforced - components: - - pos: 56.5,5.5 - parent: 60 - type: Transform -- uid: 5500 - type: Grille - components: - - pos: -64.5,29.5 - parent: 60 - type: Transform -- uid: 5501 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-56.5 - parent: 60 - type: Transform -- uid: 5502 - type: Grille - components: - - pos: 47.5,30.5 - parent: 60 - type: Transform -- uid: 5503 - type: SpawnVehicleSecway - components: - - pos: -26.5,-20.5 - parent: 60 - type: Transform -- uid: 5504 - type: ShuttersNormalOpen - components: - - pos: -36.5,10.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9165 - type: SignalReceiver -- uid: 5505 - type: AirlockScienceGlassLocked - components: - - name: Robotics - type: MetaData - - pos: -38.5,10.5 - parent: 60 - type: Transform -- uid: 5506 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -35.5,10.5 - parent: 60 - type: Transform -- uid: 5507 - type: VehicleKeySecway - components: - - pos: -28.569313,-20.385147 - parent: 60 - type: Transform -- uid: 5508 - type: Window - components: - - pos: 46.5,-43.5 - parent: 60 - type: Transform -- uid: 5509 - type: SpaceCash10 - components: - - pos: -55.400463,-16.360168 - parent: 60 - type: Transform -- uid: 5510 - type: CableHV - components: - - pos: 44.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5511 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5512 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-23.5 - parent: 60 - type: Transform -- uid: 5513 - type: WallReinforced - components: - - pos: 45.5,27.5 - parent: 60 - type: Transform -- uid: 5514 - type: CableHV - components: - - pos: -82.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5515 - type: FirelockGlass - components: - - pos: 45.5,-38.5 - parent: 60 - type: Transform -- uid: 5516 - type: Grille - components: - - pos: -65.5,14.5 - parent: 60 - type: Transform -- uid: 5517 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5518 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5519 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -45.5,8.5 - parent: 60 - type: Transform -- uid: 5520 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -45.5,9.5 - parent: 60 - type: Transform -- uid: 5521 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -45.5,7.5 - parent: 60 - type: Transform -- uid: 5522 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -79.5,-10.5 - parent: 60 - type: Transform -- uid: 5523 - type: WallReinforced - components: - - pos: -45.5,10.5 - parent: 60 - type: Transform -- uid: 5524 - type: WallReinforced - components: - - pos: -45.5,6.5 - parent: 60 - type: Transform -- uid: 5525 - type: WallReinforced - components: - - pos: -45.5,5.5 - parent: 60 - type: Transform -- uid: 5526 - type: CableHV - components: - - pos: 30.5,-64.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5527 - type: WallReinforced - components: - - pos: -42.5,10.5 - parent: 60 - type: Transform -- uid: 5528 - type: WallReinforced - components: - - pos: -41.5,10.5 - parent: 60 - type: Transform -- uid: 5529 - type: WallReinforced - components: - - pos: -43.5,10.5 - parent: 60 - type: Transform -- uid: 5530 - type: WallReinforced - components: - - pos: -34.5,16.5 - parent: 60 - type: Transform -- uid: 5531 - type: WallReinforced - components: - - pos: -40.5,10.5 - parent: 60 - type: Transform -- uid: 5532 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 17.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5533 - type: CableHV - components: - - pos: -86.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5534 - type: WallReinforced - components: - - pos: -50.5,-25.5 - parent: 60 - type: Transform -- uid: 5535 - type: DogBed - components: - - pos: -63.5,2.5 - parent: 60 - type: Transform -- uid: 5536 - type: WallReinforced - components: - - pos: -44.5,6.5 - parent: 60 - type: Transform -- uid: 5537 - type: WallReinforced - components: - - pos: -42.5,6.5 - parent: 60 - type: Transform -- uid: 5538 - type: WallReinforced - components: - - pos: -41.5,6.5 - parent: 60 - type: Transform -- uid: 5539 - type: WallReinforced - components: - - pos: -40.5,6.5 - parent: 60 - type: Transform -- uid: 5540 - type: Bed - components: - - pos: -40.5,7.5 - parent: 60 - type: Transform -- uid: 5541 - type: BedsheetRD - components: - - pos: -40.5,7.5 - parent: 60 - type: Transform -- uid: 5542 - type: LockerResearchDirectorFilled - components: - - pos: -44.5,7.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5543 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -41.5,7.5 - parent: 60 - type: Transform -- uid: 5544 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -41.5,9.5 - parent: 60 - type: Transform -- uid: 5545 - type: Grille - components: - - pos: 40.5,-64.5 - parent: 60 - type: Transform -- uid: 5546 - type: TableReinforcedGlass - components: - - pos: -43.5,9.5 - parent: 60 - type: Transform -- uid: 5547 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -42.5,8.5 - parent: 60 - type: Transform -- uid: 5548 - type: ReinforcedWindow - components: - - pos: -39.5,3.5 - parent: 60 - type: Transform -- uid: 5549 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -47.5,8.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5550 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -47.5,7.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5551 - type: GasPipeBend - components: - - pos: -47.5,9.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5552 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -45.5,1.5 - parent: 60 - type: Transform -- uid: 5553 - type: WallReinforced - components: - - pos: -41.5,1.5 - parent: 60 - type: Transform -- uid: 5554 - type: WallReinforced - components: - - pos: -39.5,2.5 - parent: 60 - type: Transform -- uid: 5555 - type: ReinforcedWindow - components: - - pos: -39.5,4.5 - parent: 60 - type: Transform -- uid: 5556 - type: Table - components: - - pos: 29.5,-20.5 - parent: 60 - type: Transform -- uid: 5557 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5558 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5559 - type: AirlockResearchDirectorGlassLocked - components: - - name: RD's Office - type: MetaData - - pos: -45.5,3.5 - parent: 60 - type: Transform -- uid: 5560 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-6.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7088 - type: SignalReceiver -- uid: 5561 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -45.5,4.5 - parent: 60 - type: Transform -- uid: 5562 - type: FirelockGlass - components: - - pos: -30.5,-8.5 - parent: 60 - type: Transform -- uid: 5563 - type: FirelockGlass - components: - - pos: -22.5,-8.5 - parent: 60 - type: Transform -- uid: 5564 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -45.5,2.5 - parent: 60 - type: Transform -- uid: 5565 - type: FirelockGlass - components: - - pos: -31.5,-8.5 - parent: 60 - type: Transform -- uid: 5566 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -45.5,2.5 - parent: 60 - type: Transform -- uid: 5567 - type: ComputerSurveillanceCameraMonitor - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-10.5 - parent: 60 - type: Transform -- uid: 5568 - type: filingCabinet - components: - - pos: -18.5,-15.5 - parent: 60 - type: Transform -- uid: 5569 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5570 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -42.5,5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5571 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -42.5,6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5572 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5573 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5574 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5575 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -42.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5576 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,9.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 5577 - type: WallReinforced - components: - - pos: -42.5,1.5 - parent: 60 - type: Transform -- uid: 5578 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,7.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5579 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,9.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5580 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -45.5,4.5 - parent: 60 - type: Transform -- uid: 5581 - type: GasVentScrubber - components: - - pos: -42.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5582 - type: Grille - components: - - pos: -39.5,-9.5 - parent: 60 - type: Transform -- uid: 5583 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -49.5,7.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 5584 - type: AirlockScienceLocked - components: - - pos: -43.5,-0.5 - parent: 60 - type: Transform -- uid: 5585 - type: GasVentPump - components: - - pos: -44.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5586 - type: Grille - components: - - pos: -40.5,-6.5 - parent: 60 - type: Transform -- uid: 5587 - type: Grille - components: - - pos: -40.5,-3.5 - parent: 60 - type: Transform -- uid: 5588 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -48.5,7.5 - parent: 60 - type: Transform -- uid: 5589 - type: APCBasic - components: - - pos: -41.5,6.5 - parent: 60 - type: Transform - - startingCharge: 12000 - type: Battery - - loadingNetworkDemand: 450 - currentReceiving: 450.00043 - currentSupply: 450 - supplyRampPosition: -0.0004272461 - type: PowerNetworkBattery -- uid: 5590 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -48.5,9.5 - parent: 60 - type: Transform -- uid: 5591 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -48.5,8.5 - parent: 60 - type: Transform -- uid: 5592 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -48.5,9.5 - parent: 60 - type: Transform -- uid: 5593 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -48.5,7.5 - parent: 60 - type: Transform -- uid: 5594 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -48.5,8.5 - parent: 60 - type: Transform -- uid: 5595 - type: Table - components: - - pos: 29.5,-17.5 - parent: 60 - type: Transform -- uid: 5596 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5597 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-9.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7088 - type: SignalReceiver -- uid: 5598 - type: PottedPlantRandomPlastic - components: - - pos: 38.5,11.5 - parent: 60 - type: Transform -- uid: 5599 - type: WallReinforced - components: - - pos: -44.5,1.5 - parent: 60 - type: Transform -- uid: 5600 - type: SignDirectionalSci - components: - - rot: -1.5707963267948966 rad - pos: -3.5,8.5 - parent: 60 - type: Transform -- uid: 5601 - type: SignDirectionalSupply - components: - - rot: 1.5707963267948966 rad - pos: 4.5,8.5 - parent: 60 - type: Transform -- uid: 5602 - type: SignDirectionalEng - components: - - rot: 3.141592653589793 rad - pos: 0.5,8.5 - parent: 60 - type: Transform -- uid: 5603 - type: WallSolid - components: - - pos: -35.5,5.5 - parent: 60 - type: Transform -- uid: 5604 - type: Catwalk - components: - - pos: 63.5,-27.5 - parent: 60 - type: Transform -- uid: 5605 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -45.5,7.5 - parent: 60 - type: Transform -- uid: 5606 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -45.5,8.5 - parent: 60 - type: Transform -- uid: 5607 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -45.5,9.5 - parent: 60 - type: Transform -- uid: 5608 - type: AirlockResearchDirectorLocked - components: - - name: RD's Bedroom - type: MetaData - - pos: -41.5,8.5 - parent: 60 - type: Transform -- uid: 5609 - type: AirlockResearchDirectorLocked - components: - - name: RD's Room - type: MetaData - - pos: -43.5,6.5 - parent: 60 - type: Transform -- uid: 5610 - type: TableReinforcedGlass - components: - - pos: -40.5,9.5 - parent: 60 - type: Transform -- uid: 5611 - type: Lamp - components: - - pos: -43.443226,9.814736 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 5612 - type: FoodSnackChips - components: - - pos: -43.25482,8.972953 - parent: 60 - type: Transform -- uid: 5613 - type: FoodSnackChips - components: - - pos: -43.50482,8.738578 - parent: 60 - type: Transform -- uid: 5614 - type: WallReinforced - components: - - pos: -35.5,16.5 - parent: 60 - type: Transform -- uid: 5615 - type: WallReinforced - components: - - pos: -35.5,15.5 - parent: 60 - type: Transform -- uid: 5616 - type: WallReinforced - components: - - pos: -36.5,15.5 - parent: 60 - type: Transform -- uid: 5617 - type: CarpetPurple - components: - - pos: -40.5,8.5 - parent: 60 - type: Transform -- uid: 5618 - type: CarpetPurple - components: - - pos: -42.5,7.5 - parent: 60 - type: Transform -- uid: 5619 - type: CarpetPurple - components: - - pos: -43.5,7.5 - parent: 60 - type: Transform -- uid: 5620 - type: CarpetPurple - components: - - pos: -43.5,8.5 - parent: 60 - type: Transform -- uid: 5621 - type: CarpetPurple - components: - - pos: -42.5,8.5 - parent: 60 - type: Transform -- uid: 5622 - type: WallReinforced - components: - - pos: -37.5,15.5 - parent: 60 - type: Transform -- uid: 5623 - type: FirelockGlass - components: - - pos: -39.5,-0.5 - parent: 60 - type: Transform -- uid: 5624 - type: ClosetFireFilled - components: - - pos: -42.5,0.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5625 - type: SpawnPointResearchDirector - components: - - pos: -40.5,8.5 - parent: 60 - type: Transform -- uid: 5626 - type: ShuttersNormal - components: - - pos: -32.5,10.5 - parent: 60 - type: Transform - - inputs: - Open: - - port: Left - uid: 9480 - - port: Right - uid: 9480 - Close: - - port: Middle - uid: 9480 - Toggle: [] - type: SignalReceiver -- uid: 5627 - type: ShuttersNormal - components: - - pos: -33.5,10.5 - parent: 60 - type: Transform - - inputs: - Open: - - port: Left - uid: 9480 - - port: Right - uid: 9480 - Close: - - port: Middle - uid: 9480 - Toggle: [] - type: SignalReceiver -- uid: 5628 - type: ShuttersNormal - components: - - pos: -31.5,10.5 - parent: 60 - type: Transform - - inputs: - Open: - - port: Left - uid: 9480 - - port: Right - uid: 9480 - Close: - - port: Middle - uid: 9480 - Toggle: [] - type: SignalReceiver -- uid: 5629 - type: WallReinforced - components: - - pos: -30.5,10.5 - parent: 60 - type: Transform -- uid: 5630 - type: WallReinforced - components: - - pos: -29.5,10.5 - parent: 60 - type: Transform -- uid: 5631 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -19.5,10.5 - parent: 60 - type: Transform -- uid: 5632 - type: WallReinforced - components: - - pos: -18.5,14.5 - parent: 60 - type: Transform -- uid: 5633 - type: WallReinforced - components: - - pos: -21.5,10.5 - parent: 60 - type: Transform -- uid: 5634 - type: WallReinforced - components: - - pos: -20.5,10.5 - parent: 60 - type: Transform -- uid: 5635 - type: ReinforcedWindow - components: - - pos: -17.5,13.5 - parent: 60 - type: Transform -- uid: 5636 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -27.5,17.5 - parent: 60 - type: Transform -- uid: 5637 - type: ReinforcedWindow - components: - - pos: -21.5,12.5 - parent: 60 - type: Transform -- uid: 5638 - type: ReinforcedWindow - components: - - pos: -21.5,13.5 - parent: 60 - type: Transform -- uid: 5639 - type: WallReinforced - components: - - pos: -17.5,10.5 - parent: 60 - type: Transform -- uid: 5640 - type: WallReinforced - components: - - pos: -18.5,10.5 - parent: 60 - type: Transform -- uid: 5641 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -19.5,14.5 - parent: 60 - type: Transform -- uid: 5642 - type: SolarPanel - components: - - pos: 25.5,-72.5 - parent: 60 - type: Transform -- uid: 5643 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: 14.5,-0.5 - parent: 60 - type: Transform -- uid: 5644 - type: AirlockCargoGlassLocked - components: - - pos: 47.5,7.5 - parent: 60 - type: Transform -- uid: 5645 - type: WallSolid - components: - - pos: -59.5,-7.5 - parent: 60 - type: Transform -- uid: 5646 - type: Grille - components: - - pos: 63.5,-13.5 - parent: 60 - type: Transform -- uid: 5647 - type: Grille - components: - - pos: 63.5,-12.5 - parent: 60 - type: Transform -- uid: 5648 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5649 - type: FirelockGlass - components: - - pos: 15.5,10.5 - parent: 60 - type: Transform -- uid: 5650 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5651 - type: FirelockGlass - components: - - pos: 16.5,10.5 - parent: 60 - type: Transform -- uid: 5652 - type: WallReinforced - components: - - pos: -34.5,10.5 - parent: 60 - type: Transform -- uid: 5653 - type: WallReinforced - components: - - pos: -42.5,28.5 - parent: 60 - type: Transform -- uid: 5654 - type: WallReinforced - components: - - pos: -43.5,28.5 - parent: 60 - type: Transform -- uid: 5655 - type: WallReinforced - components: - - pos: -44.5,28.5 - parent: 60 - type: Transform -- uid: 5656 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 13.5,1.5 - parent: 60 - type: Transform -- uid: 5657 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 8.5,2.5 - parent: 60 - type: Transform -- uid: 5658 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 9.5,1.5 - parent: 60 - type: Transform -- uid: 5659 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -53.5,8.5 - parent: 60 - type: Transform -- uid: 5660 - type: VendingMachineRestockDonut - components: - - pos: -33.477116,5.5857015 - parent: 60 - type: Transform -- uid: 5661 - type: Rack - components: - - pos: -33.5,5.5 - parent: 60 - type: Transform -- uid: 5662 - type: ClosetToolFilled - components: - - pos: -34.5,5.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5663 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-11.5 - parent: 60 - type: Transform -- uid: 5664 - type: Chair - components: - - pos: -9.5,-55.5 - parent: 60 - type: Transform -- uid: 5665 - type: CableApcExtension - components: - - pos: -22.5,-54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5666 - type: Chair - components: - - pos: -11.5,-55.5 - parent: 60 - type: Transform -- uid: 5667 - type: CableApcExtension - components: - - pos: -21.5,-54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5668 - type: CableApcExtension - components: - - pos: -20.5,-54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5669 - type: APCBasic - components: - - pos: -52.5,5.5 - parent: 60 - type: Transform -- uid: 5670 - type: TableWood - components: - - pos: -64.5,45.5 - parent: 60 - type: Transform -- uid: 5671 - type: TableWood - components: - - pos: -63.5,48.5 - parent: 60 - type: Transform -- uid: 5672 - type: TableWood - components: - - pos: -64.5,48.5 - parent: 60 - type: Transform -- uid: 5673 - type: Grille - components: - - pos: 27.5,-78.5 - parent: 60 - type: Transform -- uid: 5674 - type: Grille - components: - - pos: -66.5,4.5 - parent: 60 - type: Transform -- uid: 5675 - type: BedsheetMedical - components: - - pos: 41.5,-19.5 - parent: 60 - type: Transform -- uid: 5676 - type: DisposalPipe - components: - - pos: 44.5,-19.5 - parent: 60 - type: Transform -- uid: 5677 - type: DisposalUnit - components: - - pos: 45.5,-8.5 - parent: 60 - type: Transform -- uid: 5678 - type: DisposalPipe - components: - - pos: 44.5,-12.5 - parent: 60 - type: Transform -- uid: 5679 - type: DisposalPipe - components: - - pos: 44.5,-9.5 - parent: 60 - type: Transform -- uid: 5680 - type: Table - components: - - pos: 0.5,15.5 - parent: 60 - type: Transform -- uid: 5681 - type: SurveillanceCameraRouterMedical - components: - - pos: 32.5,-12.5 - parent: 60 - type: Transform -- uid: 5682 - type: CableMV - components: - - pos: -23.5,-14.5 - parent: 60 - type: Transform -- uid: 5683 - type: CableHV - components: - - pos: 53.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5684 - type: FirelockGlass - components: - - pos: 44.5,-38.5 - parent: 60 - type: Transform -- uid: 5685 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5686 - type: Catwalk - components: - - pos: -58.5,-18.5 - parent: 60 - type: Transform -- uid: 5687 - type: RandomSpawner - components: - - pos: -41.5,-28.5 - parent: 60 - type: Transform -- uid: 5688 - type: RandomSpawner - components: - - pos: -35.5,-24.5 - parent: 60 - type: Transform -- uid: 5689 - type: CableMV - components: - - pos: -25.5,-14.5 - parent: 60 - type: Transform -- uid: 5690 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 0.5,10.5 - parent: 60 - type: Transform -- uid: 5691 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,11.5 - parent: 60 - type: Transform -- uid: 5692 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,12.5 - parent: 60 - type: Transform -- uid: 5693 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 8.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5694 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5695 - type: GasPipeBend - components: - - pos: 8.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5696 - type: WallSolid - components: - - pos: -61.5,-7.5 - parent: 60 - type: Transform -- uid: 5697 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5698 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5699 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 5.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5700 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 6.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5701 - type: GasPipeBend - components: - - pos: 6.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5702 - type: GasPipeBend - components: - - pos: 5.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5703 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -7.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5704 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5705 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5706 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -7.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5707 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5708 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5709 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5710 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -4.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5711 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -5.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5712 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5713 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5714 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5715 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5716 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5717 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5718 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5719 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5720 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5721 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5722 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5723 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5724 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5725 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -0.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5726 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5727 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5728 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5729 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5730 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 1.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5731 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5732 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5733 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -0.5,11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5734 - type: GasPipeStraight - components: - - pos: -0.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5735 - type: GasPipeStraight - components: - - pos: 1.5,10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5736 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 1.5,11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5737 - type: GasPipeStraight - components: - - pos: 1.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5738 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -1.5,11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5739 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 2.5,11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5740 - type: AirlockGlass - components: - - pos: 14.5,8.5 - parent: 60 - type: Transform -- uid: 5741 - type: AirlockGlass - components: - - pos: 14.5,9.5 - parent: 60 - type: Transform -- uid: 5742 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 13.5,7.5 - parent: 60 - type: Transform -- uid: 5743 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 13.5,8.5 - parent: 60 - type: Transform -- uid: 5744 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 13.5,9.5 - parent: 60 - type: Transform -- uid: 5745 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -10.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5746 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -9.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5747 - type: Girder - components: - - pos: -60.5,-9.5 - parent: 60 - type: Transform -- uid: 5748 - type: Poweredlight - components: - - pos: 11.5,9.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5749 - type: Poweredlight - components: - - pos: 6.5,10.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5750 - type: Poweredlight - components: - - pos: -5.5,10.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5751 - type: Poweredlight - components: - - pos: -2.5,11.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5752 - type: Poweredlight - components: - - pos: 3.5,11.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5753 - type: WallReinforced - components: - - pos: -29.5,-21.5 - parent: 60 - type: Transform -- uid: 5754 - type: ReinforcedWindow - components: - - pos: -23.5,-17.5 - parent: 60 - type: Transform -- uid: 5755 - type: PowerCellRecharger - components: - - pos: 0.5,15.5 - parent: 60 - type: Transform -- uid: 5756 - type: Table - components: - - pos: -19.5,-17.5 - parent: 60 - type: Transform -- uid: 5757 - type: WallSolid - components: - - pos: -17.5,-21.5 - parent: 60 - type: Transform -- uid: 5758 - type: GasPipeTJunction - components: - - pos: -14.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5759 - type: AirlockGlass - components: - - pos: -18.5,8.5 - parent: 60 - type: Transform -- uid: 5760 - type: AirlockGlass - components: - - pos: -12.5,7.5 - parent: 60 - type: Transform -- uid: 5761 - type: ClothingOuterHardsuitEVA - components: - - pos: -63.469463,-8.40215 - parent: 60 - type: Transform -- uid: 5762 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5763 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5764 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5765 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 16.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5766 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 16.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5767 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -51.5,6.5 - parent: 60 - type: Transform -- uid: 5768 - type: CableHV - components: - - pos: 32.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5769 - type: WindowReinforcedDirectional - components: - - pos: -15.5,-44.5 - parent: 60 - type: Transform -- uid: 5770 - type: PottedPlantRD - components: - - pos: -42.5,7.5 - parent: 60 - type: Transform -- uid: 5771 - type: AirlockScienceGlassLocked - components: - - pos: -54.5,5.5 - parent: 60 - type: Transform -- uid: 5772 - type: ClosetEmergencyFilledRandom - components: - - pos: -41.5,0.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5773 - type: WallReinforced - components: - - pos: -43.5,-1.5 - parent: 60 - type: Transform -- uid: 5774 - type: WallReinforced - components: - - pos: -43.5,0.5 - parent: 60 - type: Transform -- uid: 5775 - type: WallReinforced - components: - - pos: -40.5,-1.5 - parent: 60 - type: Transform -- uid: 5776 - type: CableHV - components: - - pos: 27.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5777 - type: Rack - components: - - pos: -67.5,12.5 - parent: 60 - type: Transform -- uid: 5778 - type: AirlockScienceLocked - components: - - pos: -40.5,-0.5 - parent: 60 - type: Transform -- uid: 5779 - type: Grille - components: - - pos: 59.5,30.5 - parent: 60 - type: Transform -- uid: 5780 - type: WallReinforced - components: - - pos: 53.5,27.5 - parent: 60 - type: Transform -- uid: 5781 - type: CableHV - components: - - pos: 27.5,-76.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5782 - type: ClothingOuterGhostSheet - components: - - pos: -32.489902,20.522858 - parent: 60 - type: Transform -- uid: 5783 - type: WallSolid - components: - - pos: 18.5,11.5 - parent: 60 - type: Transform -- uid: 5784 - type: CableHV - components: - - pos: 31.5,-78.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5785 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 29.5,-22.5 - parent: 60 - type: Transform -- uid: 5786 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 18.5,-26.5 - parent: 60 - type: Transform -- uid: 5787 - type: WallReinforced - components: - - pos: 46.5,11.5 - parent: 60 - type: Transform -- uid: 5788 - type: Table - components: - - pos: 27.5,-12.5 - parent: 60 - type: Transform -- uid: 5789 - type: ClothingHeadHatChef - components: - - pos: 53.474865,-36.375286 - parent: 60 - type: Transform -- uid: 5790 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 42.5,16.5 - parent: 60 - type: Transform -- uid: 5791 - type: SignSmoking - components: - - pos: -4.5,22.5 - parent: 60 - type: Transform -- uid: 5792 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 60 - type: Transform -- uid: 5793 - type: Grille - components: - - pos: -63.5,29.5 - parent: 60 - type: Transform -- uid: 5794 - type: Table - components: - - pos: 27.5,-11.5 - parent: 60 - type: Transform -- uid: 5795 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 60 - type: Transform -- uid: 5796 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 60 - type: Transform -- uid: 5797 - type: TableWood - components: - - pos: 22.5,-11.5 - parent: 60 - type: Transform -- uid: 5798 - type: AirlockGlass - components: - - pos: -18.5,9.5 - parent: 60 - type: Transform -- uid: 5799 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-14.5 - parent: 60 - type: Transform -- uid: 5800 - type: DisposalUnit - components: - - pos: -24.5,-5.5 - parent: 60 - type: Transform -- uid: 5801 - type: CableHV - components: - - pos: 34.5,-66.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5802 - type: ComputerResearchAndDevelopment - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-9.5 - parent: 60 - type: Transform -- uid: 5803 - type: ReinforcedWindow - components: - - pos: -39.5,-10.5 - parent: 60 - type: Transform -- uid: 5804 - type: ReinforcedWindow - components: - - pos: 66.5,-39.5 - parent: 60 - type: Transform -- uid: 5805 - type: TwoWayLever - components: - - pos: 50.5,0.5 - parent: 60 - type: Transform - - outputs: - Left: - - port: Forward - uid: 12703 - - port: Forward - uid: 5489 - - port: Forward - uid: 8360 - - port: Forward - uid: 12283 - - port: Forward - uid: 6978 - - port: Forward - uid: 6730 - - port: Forward - uid: 12705 - Right: - - port: Reverse - uid: 12703 - - port: Reverse - uid: 5489 - - port: Reverse - uid: 8360 - - port: Reverse - uid: 12283 - - port: Reverse - uid: 6978 - - port: Reverse - uid: 6730 - - port: Reverse - uid: 12705 - Middle: - - port: Off - uid: 12703 - - port: Off - uid: 5489 - - port: Off - uid: 8360 - - port: Off - uid: 12283 - - port: Off - uid: 6978 - - port: Off - uid: 6730 - - port: Off - uid: 12705 - type: SignalTransmitter -- uid: 5806 - type: Dropper - components: - - pos: 38.554688,-32.563755 - parent: 60 - type: Transform -- uid: 5807 - type: APCBasic - components: - - pos: -47.5,-22.5 - parent: 60 - type: Transform -- uid: 5808 - type: PoweredSmallLight - components: - - pos: -2.5,-40.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5809 - type: WallSolid - components: - - pos: -1.5,-29.5 - parent: 60 - type: Transform -- uid: 5810 - type: PoweredlightLED - components: - - pos: -39.5,-26.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5811 - type: Catwalk - components: - - pos: 41.5,-43.5 - parent: 60 - type: Transform -- uid: 5812 - type: DisposalPipe - components: - - pos: 0.5,-1.5 - parent: 60 - type: Transform -- uid: 5813 - type: Barricade - components: - - pos: 49.5,-36.5 - parent: 60 - type: Transform -- uid: 5814 - type: WindoorChemistryLocked - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-29.5 - parent: 60 - type: Transform -- uid: 5815 - type: WindoorHydroponicsLocked - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-29.5 - parent: 60 - type: Transform -- uid: 5816 - type: Grille - components: - - pos: 36.5,-28.5 - parent: 60 - type: Transform -- uid: 5817 - type: GasPipeTJunction - components: - - pos: 18.5,-27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5818 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5819 - type: GasPipeBend - components: - - pos: 19.5,-27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5820 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 18.5,-28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5821 - type: TableReinforced - components: - - pos: 15.5,-33.5 - parent: 60 - type: Transform -- uid: 5822 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 17.5,-34.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5823 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-32.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5824 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-32.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5825 - type: GasPipeStraight - components: - - pos: -25.5,-0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5826 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-27.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5827 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-32.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5828 - type: DisposalPipe - components: - - pos: 0.5,-3.5 - parent: 60 - type: Transform -- uid: 5829 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5830 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5831 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5832 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5833 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 40.5,-17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5834 - type: GasPipeStraight - components: - - pos: -38.5,5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5835 - type: Carpet - components: - - pos: -21.5,0.5 - parent: 60 - type: Transform -- uid: 5836 - type: WallReinforced - components: - - pos: -26.5,4.5 - parent: 60 - type: Transform -- uid: 5837 - type: WallSolid - components: - - pos: -34.5,-1.5 - parent: 60 - type: Transform -- uid: 5838 - type: CableApcExtension - components: - - pos: -15.5,-29.5 - parent: 60 - type: Transform -- uid: 5839 - type: CableHV - components: - - pos: 32.5,-66.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5840 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -31.5,-21.5 - parent: 60 - type: Transform -- uid: 5841 - type: WeaponTurretSyndicateBroken - components: - - pos: -113.5,8.5 - parent: 60 - type: Transform -- uid: 5842 - type: WeaponTurretSyndicateBroken - components: - - pos: -109.5,8.5 - parent: 60 - type: Transform -- uid: 5843 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 0.5,14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5844 - type: ComfyChair - components: - - pos: 4.5,-30.5 - parent: 60 - type: Transform -- uid: 5845 - type: TableWood - components: - - pos: 3.5,-31.5 - parent: 60 - type: Transform -- uid: 5846 - type: GasPipeStraight - components: - - pos: 1.5,15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5847 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 1.5,14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5848 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -35.5,-8.5 - parent: 60 - type: Transform -- uid: 5849 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -35.5,-3.5 - parent: 60 - type: Transform -- uid: 5850 - type: ReinforcedWindow - components: - - pos: 38.5,-21.5 - parent: 60 - type: Transform -- uid: 5851 - type: Poweredlight - components: - - pos: -10.5,-22.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5852 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5853 - type: MedkitFilled - components: - - pos: 48.380993,-8.247679 - parent: 60 - type: Transform -- uid: 5854 - type: BedsheetMedical - components: - - pos: 37.5,-19.5 - parent: 60 - type: Transform -- uid: 5855 - type: Window - components: - - pos: -10.5,10.5 - parent: 60 - type: Transform -- uid: 5856 - type: StorageCanister - components: - - pos: 33.5,-43.5 - parent: 60 - type: Transform -- uid: 5857 - type: Window - components: - - pos: -13.5,15.5 - parent: 60 - type: Transform -- uid: 5858 - type: Catwalk - components: - - pos: 41.5,-44.5 - parent: 60 - type: Transform -- uid: 5859 - type: AirlockEngineeringGlassLocked - components: - - name: Engineering - type: MetaData - - pos: 0.5,12.5 - parent: 60 - type: Transform -- uid: 5860 - type: SignDirectionalBridge - components: - - pos: 14.499228,-0.7112777 - parent: 60 - type: Transform -- uid: 5861 - type: Grille - components: - - pos: -40.5,21.5 - parent: 60 - type: Transform -- uid: 5862 - type: Grille - components: - - pos: 42.5,7.5 - parent: 60 - type: Transform -- uid: 5863 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5864 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-56.5 - parent: 60 - type: Transform -- uid: 5865 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -36.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5866 - type: FoodBurgerRobot - components: - - pos: -36.489407,12.399599 - parent: 60 - type: Transform -- uid: 5867 - type: ComputerCrewMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 60 - type: Transform -- uid: 5868 - type: ReinforcedWindow - components: - - pos: -25.5,-34.5 - parent: 60 - type: Transform -- uid: 5869 - type: Poweredlight - components: - - pos: -17.5,-39.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5870 - type: WallReinforced - components: - - pos: 38.5,-45.5 - parent: 60 - type: Transform -- uid: 5871 - type: Grille - components: - - pos: -40.5,-27.5 - parent: 60 - type: Transform -- uid: 5872 - type: WallReinforced - components: - - pos: -39.5,15.5 - parent: 60 - type: Transform -- uid: 5873 - type: CableApcExtension - components: - - pos: -7.5,4.5 - parent: 60 - type: Transform -- uid: 5874 - type: WallSolid - components: - - pos: 40.5,-4.5 - parent: 60 - type: Transform -- uid: 5875 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,49.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5876 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -52.5,8.5 - parent: 60 - type: Transform -- uid: 5877 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -52.5,7.5 - parent: 60 - type: Transform -- uid: 5878 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5879 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-12.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5880 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-17.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5881 - type: WallSolidRust - components: - - pos: 53.5,-45.5 - parent: 60 - type: Transform -- uid: 5882 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-11.5 - parent: 60 - type: Transform -- uid: 5883 - type: WallReinforced - components: - - pos: -63.5,-7.5 - parent: 60 - type: Transform -- uid: 5884 - type: PoweredSmallLight - components: - - pos: -68.5,-18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5885 - type: CableHV - components: - - pos: -80.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5886 - type: Catwalk - components: - - pos: 23.5,-60.5 - parent: 60 - type: Transform -- uid: 5887 - type: Catwalk - components: - - pos: 29.5,-60.5 - parent: 60 - type: Transform -- uid: 5888 - type: ReinforcedWindow - components: - - pos: 55.5,30.5 - parent: 60 - type: Transform -- uid: 5889 - type: FirelockGlass - components: - - pos: 17.5,10.5 - parent: 60 - type: Transform -- uid: 5890 - type: GasPipeTJunction - components: - - pos: 12.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5891 - type: GasPipeTJunction - components: - - pos: -36.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5892 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5893 - type: GasPipeStraight - components: - - pos: -28.5,-26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5894 - type: GasPipeStraight - components: - - pos: -29.5,-26.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5895 - type: GasPipeStraight - components: - - pos: -29.5,-25.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5896 - type: GasPipeStraight - components: - - pos: -28.5,-24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5897 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -39.5,13.5 - parent: 60 - type: Transform -- uid: 5898 - type: ReinforcedWindow - components: - - pos: 39.5,-21.5 - parent: 60 - type: Transform -- uid: 5899 - type: ReinforcedWindow - components: - - pos: 40.5,-21.5 - parent: 60 - type: Transform -- uid: 5900 - type: FirelockGlass - components: - - pos: 17.5,6.5 - parent: 60 - type: Transform -- uid: 5901 - type: FirelockGlass - components: - - pos: 16.5,6.5 - parent: 60 - type: Transform -- uid: 5902 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 15.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5903 - type: WallReinforced - components: - - pos: -28.5,-25.5 - parent: 60 - type: Transform -- uid: 5904 - type: ToyGygax - components: - - pos: -32.495678,14.439516 - parent: 60 - type: Transform -- uid: 5905 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-5.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5906 - type: WindoorEngineeringLocked - components: - - pos: -17.5,27.5 - parent: 60 - type: Transform -- uid: 5907 - type: Poweredlight - components: - - pos: -31.5,26.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5908 - type: CableHV - components: - - pos: 26.5,-66.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5909 - type: CableMV - components: - - pos: -30.5,-13.5 - parent: 60 - type: Transform -- uid: 5910 - type: GasPipeStraight - components: - - pos: -23.5,-13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5911 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-7.5 - parent: 60 - type: Transform -- uid: 5912 - type: WallReinforced - components: - - pos: 56.5,-25.5 - parent: 60 - type: Transform -- uid: 5913 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5914 - type: ClothingNeckStethoscope - components: - - pos: 29.503044,-17.356108 - parent: 60 - type: Transform -- uid: 5915 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-10.5 - parent: 60 - type: Transform -- uid: 5916 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-29.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5917 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-37.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5918 - type: Grille - components: - - pos: 40.5,-25.5 - parent: 60 - type: Transform -- uid: 5919 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-29.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5920 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-32.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5921 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5922 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5923 - type: Grille - components: - - pos: 42.5,-22.5 - parent: 60 - type: Transform -- uid: 5924 - type: AirlockMedicalGlassLocked - components: - - pos: 42.5,-23.5 - parent: 60 - type: Transform -- uid: 5925 - type: Poweredlight - components: - - pos: -7.5,-26.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5926 - type: ReinforcedWindow - components: - - pos: 43.5,-25.5 - parent: 60 - type: Transform -- uid: 5927 - type: Table - components: - - pos: 17.5,-45.5 - parent: 60 - type: Transform -- uid: 5928 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-40.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5929 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -28.5,-27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5930 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -29.5,-27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5931 - type: GasPipeStraight - components: - - pos: -38.5,11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5932 - type: AcousticGuitarInstrument - components: - - pos: -25.723814,-11.4154625 - parent: 60 - type: Transform -- uid: 5933 - type: Table - components: - - pos: -25.5,-13.5 - parent: 60 - type: Transform -- uid: 5934 - type: Table - components: - - pos: -26.5,-13.5 - parent: 60 - type: Transform -- uid: 5935 - type: Table - components: - - pos: -27.5,-13.5 - parent: 60 - type: Transform -- uid: 5936 - type: LockerEvidence - components: - - pos: -23.5,-11.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5937 - type: WallSolid - components: - - pos: 45.5,-2.5 - parent: 60 - type: Transform -- uid: 5938 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -52.5,-0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5939 - type: GasPipeStraight - components: - - pos: -36.5,10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5940 - type: FirelockGlass - components: - - pos: -36.5,-17.5 - parent: 60 - type: Transform -- uid: 5941 - type: GasPipeStraight - components: - - pos: -52.5,2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5942 - type: GasPipeTJunction - components: - - pos: -37.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5943 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-5.5 - parent: 60 - type: Transform -- uid: 5944 - type: GasPipeStraight - components: - - pos: -52.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5945 - type: GasPipeStraight - components: - - pos: -36.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5946 - type: GasPipeStraight - components: - - pos: -49.5,2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5947 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -36.5,4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5948 - type: GasPipeStraight - components: - - pos: -52.5,1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5949 - type: GasPipeStraight - components: - - pos: -36.5,11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5950 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -54.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5951 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5952 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5953 - type: GasPipeTJunction - components: - - pos: -37.5,-12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5954 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5955 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 12.5,-17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5956 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5957 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5958 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5959 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5960 - type: WallReinforced - components: - - pos: 14.5,27.5 - parent: 60 - type: Transform -- uid: 5961 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -37.5,-20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5962 - type: GasVentScrubber - components: - - pos: -30.5,-23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5963 - type: Catwalk - components: - - pos: -59.5,-18.5 - parent: 60 - type: Transform -- uid: 5964 - type: Grille - components: - - pos: 54.5,-33.5 - parent: 60 - type: Transform -- uid: 5965 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5966 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5967 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -55.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5968 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 52.5,6.5 - parent: 60 - type: Transform -- uid: 5969 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5970 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5971 - type: LockerEvidence - components: - - pos: -29.5,-7.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5972 - type: BoxHandcuff - components: - - pos: -25.520594,-13.323789 - parent: 60 - type: Transform -- uid: 5973 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5974 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-0.5 - parent: 60 - type: Transform -- uid: 5975 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -55.5,6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5976 - type: GasPipeStraight - components: - - pos: -36.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5977 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5978 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5979 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5980 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -43.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5981 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5982 - type: GasPipeStraight - components: - - pos: -42.5,3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5983 - type: GasPipeTJunction - components: - - pos: -47.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5984 - type: GasPipeStraight - components: - - pos: -47.5,1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5985 - type: GasPipeStraight - components: - - pos: -47.5,-0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5986 - type: GasPipeStraight - components: - - pos: -49.5,1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5987 - type: GasVentPump - components: - - pos: -43.5,-8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5988 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -19.5,7.5 - parent: 60 - type: Transform -- uid: 5989 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5990 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -34.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5991 - type: GasPipeFourway - components: - - pos: -52.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5992 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5993 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -55.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5994 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5995 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5996 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5997 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5998 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5999 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6000 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6001 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -55.5,4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6002 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6003 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6004 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6005 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -41.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6006 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6007 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6008 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -38.5,6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6009 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6010 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -55.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6011 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6012 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6013 - type: DisposalPipe - components: - - pos: 16.5,-1.5 - parent: 60 - type: Transform -- uid: 6014 - type: CableHV - components: - - pos: 16.5,15.5 - parent: 60 - type: Transform -- uid: 6015 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -34.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6016 - type: GasPipeStraight - components: - - pos: -38.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6017 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6018 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -37.5,6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6019 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6020 - type: GasPipeTJunction - components: - - pos: -49.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6021 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6022 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6023 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6024 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -44.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6025 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6026 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -42.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6027 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6028 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -41.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6029 - type: GasPipeStraight - components: - - pos: -47.5,0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6030 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6031 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6032 - type: GasVentPump - components: - - pos: -52.5,4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6033 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6034 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -32.5,5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6035 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6036 - type: Grille - components: - - pos: 59.5,29.5 - parent: 60 - type: Transform -- uid: 6037 - type: GasPipeTJunction - components: - - pos: -42.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6038 - type: BoxZiptie - components: - - pos: -27.595825,-7.2780724 - parent: 60 - type: Transform -- uid: 6039 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -24.5,-13.5 - parent: 60 - type: Transform -- uid: 6040 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6041 - type: Multitool - components: - - pos: -25.489801,-11.618805 - parent: 60 - type: Transform -- uid: 6042 - type: SpawnPointWarden - components: - - pos: -26.5,-9.5 - parent: 60 - type: Transform -- uid: 6043 - type: Grille - components: - - pos: -35.5,-13.5 - parent: 60 - type: Transform -- uid: 6044 - type: DeployableBarrier - components: - - anchored: False - pos: -23.5,-7.5 - parent: 60 - type: Transform -- uid: 6045 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -55.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6046 - type: GasPipeBend - components: - - pos: -44.5,-5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6047 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -49.5,-5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6048 - type: GasPipeStraight - components: - - pos: -47.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6049 - type: Rack - components: - - pos: -67.5,11.5 - parent: 60 - type: Transform -- uid: 6050 - type: CableHV - components: - - pos: 37.5,-68.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6051 - type: CableHV - components: - - pos: 25.5,-76.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6052 - type: CableHV - components: - - pos: 37.5,-66.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6053 - type: CableHV - components: - - pos: -84.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6054 - type: CableHV - components: - - pos: -84.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6055 - type: ReinforcedWindow - components: - - pos: -55.5,-24.5 - parent: 60 - type: Transform -- uid: 6056 - type: PoweredSmallLight - components: - - pos: -64.5,-17.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6057 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6058 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -43.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6059 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6060 - type: GasPipeStraight - components: - - pos: -47.5,-2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6061 - type: ReinforcedWindow - components: - - pos: -53.5,-24.5 - parent: 60 - type: Transform -- uid: 6062 - type: GasPipeBend - components: - - pos: -43.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6063 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6064 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6065 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -18.5,-20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6066 - type: CableMV - components: - - pos: 52.5,-26.5 - parent: 60 - type: Transform -- uid: 6067 - type: SeedExtractor - components: - - pos: -55.5,-22.5 - parent: 60 - type: Transform -- uid: 6068 - type: CableHV - components: - - pos: -84.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6069 - type: CableHV - components: - - pos: -76.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6070 - type: CableHV - components: - - pos: -76.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6071 - type: CableHV - components: - - pos: -86.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6072 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,7.5 - parent: 60 - type: Transform -- uid: 6073 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,6.5 - parent: 60 - type: Transform -- uid: 6074 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,5.5 - parent: 60 - type: Transform -- uid: 6075 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,4.5 - parent: 60 - type: Transform -- uid: 6076 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,3.5 - parent: 60 - type: Transform -- uid: 6077 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,2.5 - parent: 60 - type: Transform -- uid: 6078 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-0.5 - parent: 60 - type: Transform -- uid: 6079 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,0.5 - parent: 60 - type: Transform -- uid: 6080 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-1.5 - parent: 60 - type: Transform -- uid: 6081 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-2.5 - parent: 60 - type: Transform -- uid: 6082 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-3.5 - parent: 60 - type: Transform -- uid: 6083 - type: DisposalJunction - components: - - pos: -37.5,-5.5 - parent: 60 - type: Transform -- uid: 6084 - type: SolarPanel - components: - - pos: -78.5,-20.5 - parent: 60 - type: Transform -- uid: 6085 - type: SolarPanel - components: - - pos: -78.5,-21.5 - parent: 60 - type: Transform -- uid: 6086 - type: CableApcExtension - components: - - pos: 52.5,-25.5 - parent: 60 - type: Transform -- uid: 6087 - type: GasVentPump - components: - - pos: -19.5,-19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6088 - type: CableHV - components: - - pos: -82.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6089 - type: CableHV - components: - - pos: -78.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6090 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-4.5 - parent: 60 - type: Transform -- uid: 6091 - type: DisposalJunctionFlipped - components: - - pos: -37.5,1.5 - parent: 60 - type: Transform -- uid: 6092 - type: CableHV - components: - - pos: -80.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6093 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6094 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -36.5,1.5 - parent: 60 - type: Transform -- uid: 6095 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6096 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -55.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6097 - type: FirelockGlass - components: - - pos: -37.5,-17.5 - parent: 60 - type: Transform -- uid: 6098 - type: FirelockGlass - components: - - pos: -38.5,-17.5 - parent: 60 - type: Transform -- uid: 6099 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-10.5 - parent: 60 - type: Transform -- uid: 6100 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-9.5 - parent: 60 - type: Transform -- uid: 6101 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-7.5 - parent: 60 - type: Transform -- uid: 6102 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-6.5 - parent: 60 - type: Transform -- uid: 6103 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -11.5,9.5 - parent: 60 - type: Transform -- uid: 6104 - type: GasPipeStraight - components: - - pos: -49.5,-3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6105 - type: GasPipeTJunction - components: - - pos: -48.5,-5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6106 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6107 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6108 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6109 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6110 - type: GasPipeStraight - components: - - pos: -49.5,-4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6111 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6112 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6113 - type: GasPipeStraight - components: - - pos: -49.5,-0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6114 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6115 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6116 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6117 - type: SignSecureMedRed - components: - - pos: -26.5,3.5 - parent: 60 - type: Transform -- uid: 6118 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -47.5,10.5 - parent: 60 - type: Transform -- uid: 6119 - type: CableHV - components: - - pos: -80.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6120 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -49.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6121 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6122 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -47.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6123 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -38.5,12.5 - parent: 60 - type: Transform -- uid: 6124 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6125 - type: FirelockEdge - components: - - pos: 15.5,-19.5 - parent: 60 - type: Transform -- uid: 6126 - type: FirelockEdge - components: - - pos: 16.5,-19.5 - parent: 60 - type: Transform -- uid: 6127 - type: FirelockEdge - components: - - pos: 17.5,-19.5 - parent: 60 - type: Transform -- uid: 6128 - type: VendingMachineDetDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -22.5,-30.5 - parent: 60 - type: Transform -- uid: 6129 - type: AtmosDeviceFanTiny - components: - - pos: -11.5,-0.5 - parent: 7536 - type: Transform -- uid: 6130 - type: AtmosDeviceFanTiny - components: - - pos: -11.5,-4.5 - parent: 7536 - type: Transform -- uid: 6131 - type: CableHV - components: - - pos: -74.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6132 - type: CableHV - components: - - pos: -84.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6133 - type: FirelockGlass - components: - - pos: 15.5,6.5 - parent: 60 - type: Transform -- uid: 6134 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -48.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6135 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -44.5,-9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6136 - type: LockerEvidence - components: - - pos: -29.5,-11.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6137 - type: HighSecArmoryLocked - components: - - name: Armory - type: MetaData - - pos: -26.5,-1.5 - parent: 60 - type: Transform -- uid: 6138 - type: Catwalk - components: - - pos: -62.5,-26.5 - parent: 60 - type: Transform -- uid: 6139 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -3.5,11.5 - parent: 60 - type: Transform -- uid: 6140 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: 4.5,11.5 - parent: 60 - type: Transform - - sprite: Structures/Machines/VendingMachines/cigs.rsi - type: Sprite -- uid: 6141 - type: DisposalTrunk - components: - - pos: 3.5,11.5 - parent: 60 - type: Transform -- uid: 6142 - type: DisposalUnit - components: - - pos: 3.5,11.5 - parent: 60 - type: Transform -- uid: 6143 - type: SignDisposalSpace - components: - - pos: -9.5,-39.5 - parent: 60 - type: Transform -- uid: 6144 - type: SignDisposalSpace - components: - - pos: -1.5,-40.5 - parent: 60 - type: Transform -- uid: 6145 - type: Table - components: - - pos: 51.5,6.5 - parent: 60 - type: Transform -- uid: 6146 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,0.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6147 - type: WindoorCargoLocked - components: - - rot: -1.5707963267948966 rad - pos: 43.5,6.5 - parent: 60 - type: Transform -- uid: 6148 - type: DisposalPipe - components: - - pos: 0.5,-13.5 - parent: 60 - type: Transform -- uid: 6149 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-12.5 - parent: 60 - type: Transform -- uid: 6150 - type: DisposalPipe - components: - - pos: 0.5,-14.5 - parent: 60 - type: Transform -- uid: 6151 - type: Grille - components: - - pos: -70.5,29.5 - parent: 60 - type: Transform -- uid: 6152 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 28.5,23.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6153 - type: SurveillanceCameraSupply - components: - - rot: 3.141592653589793 rad - pos: 42.5,9.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Lobby - type: SurveillanceCamera -- uid: 6154 - type: DisposalPipe - components: - - pos: 0.5,-7.5 - parent: 60 - type: Transform -- uid: 6155 - type: DisposalPipe - components: - - pos: 0.5,-8.5 - parent: 60 - type: Transform -- uid: 6156 - type: ChairOfficeDark - components: - - pos: 45.5,6.5 - parent: 60 - type: Transform -- uid: 6157 - type: HydroponicsToolMiniHoe - components: - - pos: 9.5,3.5 - parent: 60 - type: Transform -- uid: 6158 - type: TableReinforced - components: - - pos: -113.5,8.5 - parent: 60 - type: Transform -- uid: 6159 - type: SheetGlass - components: - - pos: -53.455166,13.5206375 - parent: 60 - type: Transform -- uid: 6160 - type: SheetGlass - components: - - pos: -53.455166,13.5206375 - parent: 60 - type: Transform -- uid: 6161 - type: CableMV - components: - - pos: -3.5,-55.5 - parent: 60 - type: Transform -- uid: 6162 - type: SheetSteel - components: - - pos: -53.47079,14.0518875 - parent: 60 - type: Transform -- uid: 6163 - type: Grille - components: - - pos: -5.5,-62.5 - parent: 60 - type: Transform -- uid: 6164 - type: Grille - components: - - pos: -4.5,-71.5 - parent: 60 - type: Transform -- uid: 6165 - type: Grille - components: - - pos: -3.5,-64.5 - parent: 60 - type: Transform -- uid: 6166 - type: SheetSteel - components: - - pos: -53.47079,14.0518875 - parent: 60 - type: Transform -- uid: 6167 - type: AirlockScienceLocked - components: - - name: Xenoarch-Robotics - type: MetaData - - pos: -43.5,13.5 - parent: 60 - type: Transform -- uid: 6168 - type: Grille - components: - - pos: -4.5,-64.5 - parent: 60 - type: Transform -- uid: 6169 - type: ReinforcedWindow - components: - - pos: -3.5,-69.5 - parent: 60 - type: Transform -- uid: 6170 - type: CableMV - components: - - pos: -2.5,-55.5 - parent: 60 - type: Transform -- uid: 6171 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-64.5 - parent: 60 - type: Transform -- uid: 6172 - type: WallReinforced - components: - - pos: 4.5,-56.5 - parent: 60 - type: Transform -- uid: 6173 - type: ReinforcedWindow - components: - - pos: 57.5,9.5 - parent: 60 - type: Transform -- uid: 6174 - type: ReinforcedWindow - components: - - pos: 57.5,7.5 - parent: 60 - type: Transform -- uid: 6175 - type: WallReinforced - components: - - pos: 18.5,29.5 - parent: 60 - type: Transform -- uid: 6176 - type: FireAlarm - components: - - pos: -41.5,26.5 - parent: 60 - type: Transform - - devices: - - 7655 - - 6593 - - 6785 - - 6661 - type: DeviceList -- uid: 6177 - type: CableMV - components: - - pos: -4.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6178 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6179 - type: Grille - components: - - pos: -5.5,-71.5 - parent: 60 - type: Transform -- uid: 6180 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6181 - type: WindoorSecure - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-31.5 - parent: 60 - type: Transform -- uid: 6182 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-62.5 - parent: 60 - type: Transform -- uid: 6183 - type: ReinforcedWindow - components: - - pos: 26.5,2.5 - parent: 60 - type: Transform -- uid: 6184 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-56.5 - parent: 60 - type: Transform -- uid: 6185 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-69.5 - parent: 60 - type: Transform -- uid: 6186 - type: EmergencyLight - components: - - pos: -9.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 6187 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-62.5 - parent: 60 - type: Transform -- uid: 6188 - type: ReinforcedWindow - components: - - pos: 26.5,1.5 - parent: 60 - type: Transform -- uid: 6189 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-60.5 - parent: 60 - type: Transform -- uid: 6190 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-69.5 - parent: 60 - type: Transform -- uid: 6191 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-71.5 - parent: 60 - type: Transform -- uid: 6192 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-28.5 - parent: 60 - type: Transform -- uid: 6193 - type: PoweredSmallLight - components: - - pos: 20.5,-11.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6194 - type: Grille - components: - - pos: -80.5,-26.5 - parent: 60 - type: Transform -- uid: 6195 - type: CableHV - components: - - pos: -82.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6196 - type: CableMV - components: - - pos: 10.5,-52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6197 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6198 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6199 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6200 - type: Grille - components: - - pos: -4.5,-62.5 - parent: 60 - type: Transform -- uid: 6201 - type: PoweredlightSodium - components: - - rot: 3.141592653589793 rad - pos: 14.5,30.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6202 - type: WallReinforced - components: - - pos: -49.5,51.5 - parent: 60 - type: Transform -- uid: 6203 - type: ShuttersNormalOpen - components: - - pos: -35.5,-7.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1468 - type: SignalReceiver -- uid: 6204 - type: CableHV - components: - - pos: -72.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6205 - type: CableHV - components: - - pos: -72.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6206 - type: ShuttersNormalOpen - components: - - rot: 3.141592653589793 rad - pos: -35.5,-12.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1486 - type: SignalReceiver -- uid: 6207 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -17.5,-14.5 - parent: 60 - type: Transform -- uid: 6208 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -17.5,-15.5 - parent: 60 - type: Transform -- uid: 6209 - type: WallReinforced - components: - - pos: -52.5,50.5 - parent: 60 - type: Transform -- uid: 6210 - type: WallReinforced - components: - - pos: -53.5,50.5 - parent: 60 - type: Transform -- uid: 6211 - type: ReinforcedWindow - components: - - pos: -19.5,-56.5 - parent: 60 - type: Transform -- uid: 6212 - type: GasPipeStraight - components: - - pos: -0.5,-54.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6213 - type: GasPipeFourway - components: - - pos: 1.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6214 - type: GasPipeTJunction - components: - - pos: 0.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6215 - type: CableMV - components: - - pos: 9.5,-53.5 - parent: 60 - type: Transform -- uid: 6216 - type: CableApcExtension - components: - - pos: -16.5,-54.5 - parent: 60 - type: Transform -- uid: 6217 - type: GasPipeStraight - components: - - pos: -0.5,-56.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6218 - type: GasPipeStraight - components: - - pos: -0.5,-55.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6219 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -2.5,-64.5 - parent: 60 - type: Transform -- uid: 6220 - type: WallReinforced - components: - - pos: 4.5,-74.5 - parent: 60 - type: Transform -- uid: 6221 - type: WallReinforced - components: - - pos: -49.5,50.5 - parent: 60 - type: Transform -- uid: 6222 - type: Grille - components: - - pos: -68.5,29.5 - parent: 60 - type: Transform -- uid: 6223 - type: WallReinforced - components: - - pos: -50.5,50.5 - parent: 60 - type: Transform -- uid: 6224 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-49.5 - parent: 60 - type: Transform -- uid: 6225 - type: WallSolid - components: - - pos: -1.5,-52.5 - parent: 60 - type: Transform -- uid: 6226 - type: WallReinforced - components: - - pos: -51.5,50.5 - parent: 60 - type: Transform -- uid: 6227 - type: WallSolid - components: - - pos: 2.5,-52.5 - parent: 60 - type: Transform -- uid: 6228 - type: WallReinforced - components: - - pos: 3.5,-52.5 - parent: 60 - type: Transform -- uid: 6229 - type: WallReinforced - components: - - pos: -15.5,-52.5 - parent: 60 - type: Transform -- uid: 6230 - type: WallSolid - components: - - pos: -12.5,-49.5 - parent: 60 - type: Transform -- uid: 6231 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-49.5 - parent: 60 - type: Transform -- uid: 6232 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-49.5 - parent: 60 - type: Transform -- uid: 6233 - type: WallReinforced - components: - - pos: -49.5,49.5 - parent: 60 - type: Transform -- uid: 6234 - type: WallReinforced - components: - - pos: -49.5,48.5 - parent: 60 - type: Transform -- uid: 6235 - type: LockerHeadOfPersonnelFilled - components: - - pos: 8.5,-31.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 4641 - type: ContainerContainer -- uid: 6236 - type: WallReinforced - components: - - pos: -50.5,48.5 - parent: 60 - type: Transform -- uid: 6237 - type: RandomSpawner - components: - - pos: -15.5,-44.5 - parent: 60 - type: Transform -- uid: 6238 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,-11.5 - parent: 60 - type: Transform -- uid: 6239 - type: SpawnMobMouse - components: - - pos: -37.5,-31.5 - parent: 60 - type: Transform -- uid: 6240 - type: Rack - components: - - pos: -32.5,-34.5 - parent: 60 - type: Transform -- uid: 6241 - type: Welder - components: - - pos: -32.344437,-34.56709 - parent: 60 - type: Transform -- uid: 6242 - type: WeldingFuelTankFull - components: - - pos: -28.5,-36.5 - parent: 60 - type: Transform -- uid: 6243 - type: CableHV - components: - - pos: -72.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6244 - type: WallReinforced - components: - - pos: 8.5,12.5 - parent: 60 - type: Transform -- uid: 6245 - type: WallReinforced - components: - - pos: 8.5,13.5 - parent: 60 - type: Transform -- uid: 6246 - type: AirlockEngineeringLocked - components: - - name: Engineering - type: MetaData - - pos: 8.5,14.5 - parent: 60 - type: Transform -- uid: 6247 - type: WallReinforced - components: - - pos: 8.5,15.5 - parent: 60 - type: Transform -- uid: 6248 - type: WallReinforced - components: - - pos: 8.5,16.5 - parent: 60 - type: Transform -- uid: 6249 - type: WallReinforced - components: - - pos: 10.5,16.5 - parent: 60 - type: Transform -- uid: 6250 - type: WallReinforced - components: - - pos: 11.5,16.5 - parent: 60 - type: Transform -- uid: 6251 - type: WallReinforced - components: - - pos: 9.5,16.5 - parent: 60 - type: Transform -- uid: 6252 - type: LockerChiefEngineerFilled - components: - - pos: 12.5,17.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6253 - type: WallReinforced - components: - - pos: 13.5,16.5 - parent: 60 - type: Transform -- uid: 6254 - type: WallReinforced - components: - - pos: 14.5,16.5 - parent: 60 - type: Transform -- uid: 6255 - type: Window - components: - - pos: 14.5,11.5 - parent: 60 - type: Transform -- uid: 6256 - type: Window - components: - - pos: 14.5,15.5 - parent: 60 - type: Transform -- uid: 6257 - type: Window - components: - - pos: 14.5,14.5 - parent: 60 - type: Transform -- uid: 6258 - type: Window - components: - - pos: 14.5,12.5 - parent: 60 - type: Transform -- uid: 6259 - type: Grille - components: - - pos: 14.5,11.5 - parent: 60 - type: Transform -- uid: 6260 - type: Grille - components: - - pos: 14.5,12.5 - parent: 60 - type: Transform -- uid: 6261 - type: Grille - components: - - pos: 14.5,14.5 - parent: 60 - type: Transform -- uid: 6262 - type: Grille - components: - - pos: 14.5,15.5 - parent: 60 - type: Transform -- uid: 6263 - type: APCBasic - components: - - pos: 13.5,16.5 - parent: 60 - type: Transform - - startingCharge: 365.1921 - type: Battery - - loadingNetworkDemand: 25 - currentSupply: 25 - supplyRampPosition: 25 - type: PowerNetworkBattery -- uid: 6264 - type: GasPipeFourway - components: - - pos: 17.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6265 - type: CableHV - components: - - pos: -74.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6266 - type: AirlockGlass - components: - - name: Toolroom - type: MetaData - - pos: 14.5,13.5 - parent: 60 - type: Transform -- uid: 6267 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -55.5,10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6268 - type: GasPipeFourway - components: - - pos: -38.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6269 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6270 - type: DoorElectronics - components: - - pos: -39.36414,-35.387928 - parent: 60 - type: Transform -- uid: 6271 - type: DoorElectronics - components: - - pos: -39.45789,-35.231678 - parent: 60 - type: Transform -- uid: 6272 - type: CapacitorStockPart - components: - - rot: 0.00019908661488443613 rad - pos: 18.263704,-44.683575 - parent: 60 - type: Transform -- uid: 6273 - type: CableHV - components: - - pos: -74.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6274 - type: CableHV - components: - - pos: -74.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6275 - type: BedsheetMedical - components: - - pos: 30.5,-20.5 - parent: 60 - type: Transform -- uid: 6276 - type: CableHV - components: - - pos: -82.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6277 - type: DawInstrumentMachineCircuitboard - components: - - pos: 24.517786,-13.4080305 - parent: 60 - type: Transform -- uid: 6278 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6279 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6280 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 15.5,11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6281 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6282 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 15.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6283 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6284 - type: GasPipeStraight - components: - - pos: 15.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6285 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6286 - type: IntercomEngineering - components: - - rot: 1.5707963267948966 rad - pos: -5.5,18.5 - parent: 60 - type: Transform -- uid: 6287 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6288 - type: Catwalk - components: - - pos: -57.5,-26.5 - parent: 60 - type: Transform -- uid: 6289 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6290 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 16.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6291 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6292 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6293 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6294 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6295 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6296 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6297 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6298 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6299 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 11.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6300 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 11.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6301 - type: Grille - components: - - pos: -91.5,-19.5 - parent: 60 - type: Transform -- uid: 6302 - type: Window - components: - - pos: 36.5,-19.5 - parent: 60 - type: Transform -- uid: 6303 - type: Poweredlight - components: - - pos: 13.5,15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6304 - type: Poweredlight - components: - - pos: 9.5,15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6305 - type: WallSolid - components: - - pos: 33.5,14.5 - parent: 60 - type: Transform -- uid: 6306 - type: WallSolid - components: - - pos: 33.5,15.5 - parent: 60 - type: Transform -- uid: 6307 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -27.5,-9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6308 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -25.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6309 - type: GasPipeStraight - components: - - pos: -22.5,-11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6310 - type: WallReinforced - components: - - pos: 14.5,18.5 - parent: 60 - type: Transform -- uid: 6311 - type: Rack - components: - - pos: 10.5,15.5 - parent: 60 - type: Transform -- uid: 6312 - type: Rack - components: - - pos: 9.5,15.5 - parent: 60 - type: Transform -- uid: 6313 - type: Table - components: - - pos: 13.5,15.5 - parent: 60 - type: Transform -- uid: 6314 - type: PosterContrabandTools - components: - - pos: 8.5,12.5 - parent: 60 - type: Transform -- uid: 6315 - type: SignToolStorage - components: - - pos: 14.5,10.5 - parent: 60 - type: Transform -- uid: 6316 - type: WelderIndustrial - components: - - pos: 10.556607,15.575015 - parent: 60 - type: Transform -- uid: 6317 - type: ClothingBeltUtilityFilled - components: - - pos: 9.523157,15.495549 - parent: 60 - type: Transform -- uid: 6318 - type: Multitool - components: - - pos: 13.582136,15.57569 - parent: 60 - type: Transform -- uid: 6319 - type: RandomVendingDrinks - components: - - pos: 10.5,11.5 - parent: 60 - type: Transform -- uid: 6320 - type: RandomVendingSnacks - components: - - pos: 9.5,11.5 - parent: 60 - type: Transform -- uid: 6321 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 13.5,11.5 - parent: 60 - type: Transform -- uid: 6322 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 60 - type: Transform -- uid: 6323 - type: DisposalJunction - components: - - pos: 16.5,11.5 - parent: 60 - type: Transform -- uid: 6324 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,11.5 - parent: 60 - type: Transform -- uid: 6325 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,11.5 - parent: 60 - type: Transform -- uid: 6326 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,11.5 - parent: 60 - type: Transform -- uid: 6327 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 12.5,11.5 - parent: 60 - type: Transform -- uid: 6328 - type: DisposalUnit - components: - - pos: 12.5,11.5 - parent: 60 - type: Transform -- uid: 6329 - type: SpawnPointAssistant - components: - - pos: 11.5,13.5 - parent: 60 - type: Transform -- uid: 6330 - type: Table - components: - - pos: 9.5,13.5 - parent: 60 - type: Transform -- uid: 6331 - type: ToyAssistant - components: - - pos: 9.6670475,13.731877 - parent: 60 - type: Transform -- uid: 6332 - type: RandomSpawner - components: - - pos: 9.5,12.5 - parent: 60 - type: Transform -- uid: 6333 - type: RandomSpawner - components: - - pos: 13.5,14.5 - parent: 60 - type: Transform -- uid: 6334 - type: CableHV - components: - - pos: -78.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6335 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 7.5,11.5 - parent: 60 - type: Transform -- uid: 6336 - type: WallReinforced - components: - - pos: -52.5,52.5 - parent: 60 - type: Transform -- uid: 6337 - type: CableHV - components: - - pos: -50.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6338 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-46.5 - parent: 60 - type: Transform -- uid: 6339 - type: Grille - components: - - pos: 12.5,-46.5 - parent: 60 - type: Transform -- uid: 6340 - type: Table - components: - - pos: 40.5,-28.5 - parent: 60 - type: Transform -- uid: 6341 - type: Table - components: - - pos: 41.5,-28.5 - parent: 60 - type: Transform -- uid: 6342 - type: SpawnPointBotanist - components: - - pos: 33.5,-36.5 - parent: 60 - type: Transform -- uid: 6343 - type: SpawnPointBotanist - components: - - pos: 32.5,-36.5 - parent: 60 - type: Transform -- uid: 6344 - type: Grille - components: - - pos: -76.5,-26.5 - parent: 60 - type: Transform -- uid: 6345 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 26.5,-18.5 - parent: 60 - type: Transform -- uid: 6346 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 26.5,-19.5 - parent: 60 - type: Transform -- uid: 6347 - type: AirlockMaintLocked - components: - - pos: 18.5,-9.5 - parent: 60 - type: Transform -- uid: 6348 - type: Grille - components: - - pos: -16.5,-44.5 - parent: 60 - type: Transform -- uid: 6349 - type: Grille - components: - - pos: -18.5,-44.5 - parent: 60 - type: Transform -- uid: 6350 - type: FoodBowlBigTrash - components: - - pos: -19.411674,-42.528496 - parent: 60 - type: Transform -- uid: 6351 - type: WallReinforced - components: - - pos: -50.5,52.5 - parent: 60 - type: Transform -- uid: 6352 - type: DogBed - components: - - pos: 6.5,-29.5 - parent: 60 - type: Transform -- uid: 6353 - type: ClothingNeckScarfStripedZebra - components: - - pos: 26.503925,-12.6892805 - parent: 60 - type: Transform -- uid: 6354 - type: WallReinforced - components: - - pos: -49.5,52.5 - parent: 60 - type: Transform -- uid: 6355 - type: WallReinforced - components: - - pos: -51.5,52.5 - parent: 60 - type: Transform -- uid: 6356 - type: CableHV - components: - - pos: -55.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6357 - type: WallReinforced - components: - - pos: 2.5,-31.5 - parent: 60 - type: Transform -- uid: 6358 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6359 - type: CableHV - components: - - pos: -57.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6360 - type: ExtinguisherCabinetFilled - components: - - pos: 8.5,13.5 - parent: 60 - type: Transform -- uid: 6361 - type: ClothingHandsGlovesLeather - components: - - pos: 35.520084,-27.379148 - parent: 60 - type: Transform -- uid: 6362 - type: TableWood - components: - - pos: 21.5,-11.5 - parent: 60 - type: Transform -- uid: 6363 - type: ExtinguisherCabinetFilled - components: - - pos: -47.5,-15.5 - parent: 60 - type: Transform -- uid: 6364 - type: WallReinforced - components: - - pos: -53.5,52.5 - parent: 60 - type: Transform -- uid: 6365 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -33.5,5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6366 - type: WallReinforced - components: - - pos: 14.5,17.5 - parent: 60 - type: Transform -- uid: 6367 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -19.5,8.5 - parent: 60 - type: Transform -- uid: 6368 - type: WallReinforced - components: - - pos: 14.5,19.5 - parent: 60 - type: Transform -- uid: 6369 - type: WallReinforced - components: - - pos: 14.5,20.5 - parent: 60 - type: Transform -- uid: 6370 - type: WallReinforced - components: - - pos: 14.5,21.5 - parent: 60 - type: Transform -- uid: 6371 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6372 - type: ReinforcedWindow - components: - - pos: 27.5,27.5 - parent: 60 - type: Transform -- uid: 6373 - type: WallReinforced - components: - - pos: 38.5,26.5 - parent: 60 - type: Transform -- uid: 6374 - type: WallSolid - components: - - pos: 39.5,-2.5 - parent: 60 - type: Transform -- uid: 6375 - type: WallReinforced - components: - - pos: 14.5,22.5 - parent: 60 - type: Transform -- uid: 6376 - type: Barricade - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-39.5 - parent: 60 - type: Transform -- uid: 6377 - type: WallReinforced - components: - - pos: 35.5,-2.5 - parent: 60 - type: Transform -- uid: 6378 - type: Grille - components: - - pos: 30.5,-58.5 - parent: 60 - type: Transform -- uid: 6379 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6380 - type: GasPipeTJunction - components: - - pos: -41.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6381 - type: PosterContrabandMissingGloves - components: - - pos: 12.5,16.5 - parent: 60 - type: Transform -- uid: 6382 - type: ClothingHandsGlovesColorYellow - components: - - pos: 9.509111,13.510057 - parent: 60 - type: Transform -- uid: 6383 - type: WallReinforced - components: - - pos: -38.5,15.5 - parent: 60 - type: Transform -- uid: 6384 - type: RandomDrinkBottle - components: - - pos: 13.5,-36.5 - parent: 60 - type: Transform -- uid: 6385 - type: RandomDrinkGlass - components: - - pos: 15.5,-33.5 - parent: 60 - type: Transform -- uid: 6386 - type: RandomDrinkGlass - components: - - pos: 15.5,-31.5 - parent: 60 - type: Transform -- uid: 6387 - type: DrinkShinyFlask - components: - - pos: -27.408325,-7.5280724 - parent: 60 - type: Transform -- uid: 6388 - type: DrinkShotGlass - components: - - pos: -22.522358,-28.440273 - parent: 60 - type: Transform -- uid: 6389 - type: ReinforcedWindow - components: - - pos: -67.5,5.5 - parent: 60 - type: Transform -- uid: 6390 - type: soda_dispenser - components: - - pos: 61.5,-25.5 - parent: 60 - type: Transform -- uid: 6391 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6392 - type: SolarPanel - components: - - pos: -72.5,-13.5 - parent: 60 - type: Transform -- uid: 6393 - type: Grille - components: - - pos: 13.5,21.5 - parent: 60 - type: Transform -- uid: 6394 - type: Grille - components: - - pos: 12.5,21.5 - parent: 60 - type: Transform -- uid: 6395 - type: WallReinforced - components: - - pos: 11.5,21.5 - parent: 60 - type: Transform -- uid: 6396 - type: WallReinforced - components: - - pos: 9.5,33.5 - parent: 60 - type: Transform -- uid: 6397 - type: WallReinforced - components: - - pos: 9.5,32.5 - parent: 60 - type: Transform -- uid: 6398 - type: WallReinforced - components: - - pos: 8.5,33.5 - parent: 60 - type: Transform -- uid: 6399 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6400 - type: Catwalk - components: - - pos: -85.5,-23.5 - parent: 60 - type: Transform -- uid: 6401 - type: MedicalBed - components: - - pos: 30.5,-20.5 - parent: 60 - type: Transform -- uid: 6402 - type: SolarPanel - components: - - pos: -72.5,-15.5 - parent: 60 - type: Transform -- uid: 6403 - type: WallSolid - components: - - pos: 59.5,-43.5 - parent: 60 - type: Transform -- uid: 6404 - type: SolarPanel - components: - - pos: -82.5,-16.5 - parent: 60 - type: Transform -- uid: 6405 - type: SolarPanel - components: - - pos: -78.5,-17.5 - parent: 60 - type: Transform -- uid: 6406 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 21.5,-12.5 - parent: 60 - type: Transform -- uid: 6407 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-19.5 - parent: 60 - type: Transform -- uid: 6408 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 60 - type: Transform -- uid: 6409 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 60 - type: Transform -- uid: 6410 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6411 - type: PottedPlantRandom - components: - - pos: -1.5,-51.5 - parent: 60 - type: Transform -- uid: 6412 - type: CableMV - components: - - pos: -6.5,-53.5 - parent: 60 - type: Transform -- uid: 6413 - type: CableMV - components: - - pos: -7.5,-54.5 - parent: 60 - type: Transform -- uid: 6414 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-69.5 - parent: 60 - type: Transform -- uid: 6415 - type: Grille - components: - - pos: -2.5,-74.5 - parent: 60 - type: Transform -- uid: 6416 - type: AirlockGlass - components: - - pos: -0.5,-59.5 - parent: 60 - type: Transform -- uid: 6417 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-61.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6418 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-72.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6419 - type: ClothingShoesWizard - components: - - pos: -36.972637,-35.964005 - parent: 60 - type: Transform -- uid: 6420 - type: WallReinforced - components: - - pos: -46.5,-25.5 - parent: 60 - type: Transform -- uid: 6421 - type: WallReinforced - components: - - pos: -45.5,-25.5 - parent: 60 - type: Transform -- uid: 6422 - type: SolarPanel - components: - - pos: -78.5,-15.5 - parent: 60 - type: Transform -- uid: 6423 - type: SolarPanel - components: - - pos: -74.5,-14.5 - parent: 60 - type: Transform -- uid: 6424 - type: SolarPanel - components: - - pos: -74.5,-12.5 - parent: 60 - type: Transform -- uid: 6425 - type: WallReinforced - components: - - pos: -40.5,-28.5 - parent: 60 - type: Transform -- uid: 6426 - type: GasPipeTJunction - components: - - pos: 0.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6427 - type: TableWood - components: - - pos: -22.5,-28.5 - parent: 60 - type: Transform -- uid: 6428 - type: CableApcExtension - components: - - pos: -25.5,-30.5 - parent: 60 - type: Transform -- uid: 6429 - type: Catwalk - components: - - pos: -52.5,-15.5 - parent: 60 - type: Transform -- uid: 6430 - type: CableApcExtension - components: - - pos: -24.5,-30.5 - parent: 60 - type: Transform -- uid: 6431 - type: CableMV - components: - - pos: -29.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6432 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-48.5 - parent: 60 - type: Transform -- uid: 6433 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-49.5 - parent: 60 - type: Transform -- uid: 6434 - type: WallReinforced - components: - - pos: 15.5,-51.5 - parent: 60 - type: Transform -- uid: 6435 - type: WallReinforced - components: - - pos: 19.5,-51.5 - parent: 60 - type: Transform -- uid: 6436 - type: Grille - components: - - pos: 16.5,-51.5 - parent: 60 - type: Transform -- uid: 6437 - type: Grille - components: - - pos: 17.5,-51.5 - parent: 60 - type: Transform -- uid: 6438 - type: Grille - components: - - pos: 18.5,-51.5 - parent: 60 - type: Transform -- uid: 6439 - type: ReinforcedWindow - components: - - pos: 16.5,-51.5 - parent: 60 - type: Transform -- uid: 6440 - type: ReinforcedWindow - components: - - pos: 17.5,-51.5 - parent: 60 - type: Transform -- uid: 6441 - type: ReinforcedWindow - components: - - pos: 18.5,-51.5 - parent: 60 - type: Transform -- uid: 6442 - type: AirlockMaint - components: - - pos: 20.5,-48.5 - parent: 60 - type: Transform -- uid: 6443 - type: RandomSpawner - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-50.5 - parent: 60 - type: Transform -- uid: 6444 - type: ComfyChair - components: - - pos: 17.5,-49.5 - parent: 60 - type: Transform -- uid: 6445 - type: TableWood - components: - - pos: 16.5,-49.5 - parent: 60 - type: Transform -- uid: 6446 - type: LampGold - components: - - pos: 16.535465,-49.13737 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 6447 - type: Rack - components: - - pos: 19.5,-49.5 - parent: 60 - type: Transform -- uid: 6448 - type: ClosetBase - components: - - pos: 16.5,-48.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 4711 - type: ContainerContainer -- uid: 6449 - type: ClothingShoeSlippersDuck - components: - - pos: 17.309816,-50.5843 - parent: 60 - type: Transform -- uid: 6450 - type: PoweredSmallLightEmpty - components: - - pos: 17.5,-48.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6451 - type: RandomSpawner - components: - - pos: -33.5,-35.5 - parent: 60 - type: Transform -- uid: 6452 - type: WaterTankFull - components: - - pos: -29.5,-36.5 - parent: 60 - type: Transform -- uid: 6453 - type: Rack - components: - - pos: -33.5,-36.5 - parent: 60 - type: Transform -- uid: 6454 - type: DoorElectronics - components: - - pos: -33.42288,-36.497303 - parent: 60 - type: Transform -- uid: 6455 - type: ComputerCrewMonitoring - components: - - rot: 3.141592653589793 rad - pos: -25.5,-30.5 - parent: 60 - type: Transform -- uid: 6456 - type: Catwalk - components: - - pos: -36.5,-32.5 - parent: 60 - type: Transform -- uid: 6457 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6458 - type: WallSolid - components: - - pos: -2.5,-29.5 - parent: 60 - type: Transform -- uid: 6459 - type: WallSolid - components: - - pos: 41.5,-11.5 - parent: 60 - type: Transform -- uid: 6460 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-11.5 - parent: 60 - type: Transform -- uid: 6461 - type: Catwalk - components: - - pos: -71.5,-18.5 - parent: 60 - type: Transform -- uid: 6462 - type: Table - components: - - pos: 55.5,-12.5 - parent: 60 - type: Transform -- uid: 6463 - type: ReinforcedWindow - components: - - pos: 57.5,-13.5 - parent: 60 - type: Transform -- uid: 6464 - type: WallReinforced - components: - - pos: 57.5,-10.5 - parent: 60 - type: Transform -- uid: 6465 - type: WallReinforced - components: - - pos: 57.5,-9.5 - parent: 60 - type: Transform -- uid: 6466 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-11.5 - parent: 60 - type: Transform -- uid: 6467 - type: LockerWardenFilled - components: - - pos: -25.5,-8.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6468 - type: RandomPosterLegit - components: - - pos: 12.5,10.5 - parent: 60 - type: Transform -- uid: 6469 - type: Catwalk - components: - - pos: -73.5,-18.5 - parent: 60 - type: Transform -- uid: 6470 - type: Catwalk - components: - - pos: -87.5,-18.5 - parent: 60 - type: Transform -- uid: 6471 - type: CableMV - components: - - pos: 10.5,-53.5 - parent: 60 - type: Transform -- uid: 6472 - type: PottedPlantRandom - components: - - pos: 2.5,-51.5 - parent: 60 - type: Transform -- uid: 6473 - type: ReinforcedWindow - components: - - pos: 3.5,-59.5 - parent: 60 - type: Transform -- uid: 6474 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-72.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6475 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-61.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6476 - type: AirlockGlass - components: - - pos: 0.5,-59.5 - parent: 60 - type: Transform -- uid: 6477 - type: AirlockGlass - components: - - pos: 1.5,-74.5 - parent: 60 - type: Transform -- uid: 6478 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-66.5 - parent: 60 - type: Transform -- uid: 6479 - type: LampBanana - components: - - pos: 22.4883,-11.1267805 - parent: 60 - type: Transform -- uid: 6480 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-65.5 - parent: 60 - type: Transform -- uid: 6481 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-65.5 - parent: 60 - type: Transform -- uid: 6482 - type: AirlockGlass - components: - - pos: 0.5,-74.5 - parent: 60 - type: Transform -- uid: 6483 - type: CableMV - components: - - pos: -8.5,-54.5 - parent: 60 - type: Transform -- uid: 6484 - type: CableMV - components: - - pos: -9.5,-54.5 - parent: 60 - type: Transform -- uid: 6485 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-66.5 - parent: 60 - type: Transform -- uid: 6486 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-18.5 - parent: 60 - type: Transform -- uid: 6487 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-17.5 - parent: 60 - type: Transform -- uid: 6488 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-15.5 - parent: 60 - type: Transform -- uid: 6489 - type: FirelockGlass - components: - - pos: 22.5,-21.5 - parent: 60 - type: Transform -- uid: 6490 - type: FirelockGlass - components: - - pos: 20.5,-21.5 - parent: 60 - type: Transform -- uid: 6491 - type: SpawnPointBotanist - components: - - pos: 31.5,-36.5 - parent: 60 - type: Transform -- uid: 6492 - type: Catwalk - components: - - pos: -76.5,-18.5 - parent: 60 - type: Transform -- uid: 6493 - type: Catwalk - components: - - pos: -83.5,-18.5 - parent: 60 - type: Transform -- uid: 6494 - type: Catwalk - components: - - pos: -79.5,-18.5 - parent: 60 - type: Transform -- uid: 6495 - type: SolarPanel - components: - - pos: -78.5,-23.5 - parent: 60 - type: Transform -- uid: 6496 - type: DrinkWaterCup - components: - - pos: 51.488304,17.5316 - parent: 60 - type: Transform -- uid: 6497 - type: SolarPanel - components: - - pos: -76.5,-17.5 - parent: 60 - type: Transform -- uid: 6498 - type: SolarPanel - components: - - pos: -76.5,-15.5 - parent: 60 - type: Transform -- uid: 6499 - type: SolarPanel - components: - - pos: -76.5,-13.5 - parent: 60 - type: Transform -- uid: 6500 - type: SolarPanel - components: - - pos: -72.5,-22.5 - parent: 60 - type: Transform -- uid: 6501 - type: SolarPanel - components: - - pos: -72.5,-23.5 - parent: 60 - type: Transform -- uid: 6502 - type: Grille - components: - - pos: -76.5,-10.5 - parent: 60 - type: Transform -- uid: 6503 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-16.5 - parent: 60 - type: Transform -- uid: 6504 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-17.5 - parent: 60 - type: Transform -- uid: 6505 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-19.5 - parent: 60 - type: Transform -- uid: 6506 - type: WallReinforced - components: - - pos: 11.5,18.5 - parent: 60 - type: Transform -- uid: 6507 - type: WallReinforced - components: - - pos: 11.5,20.5 - parent: 60 - type: Transform -- uid: 6508 - type: WallReinforced - components: - - pos: 11.5,17.5 - parent: 60 - type: Transform -- uid: 6509 - type: WallSolid - components: - - pos: 2.5,15.5 - parent: 60 - type: Transform -- uid: 6510 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 14.499228,-0.07065275 - parent: 60 - type: Transform -- uid: 6511 - type: Grille - components: - - pos: 4.5,16.5 - parent: 60 - type: Transform -- uid: 6512 - type: Grille - components: - - pos: -72.5,-10.5 - parent: 60 - type: Transform -- uid: 6513 - type: WallSolid - components: - - pos: 3.5,16.5 - parent: 60 - type: Transform -- uid: 6514 - type: SolarPanel - components: - - pos: -80.5,-12.5 - parent: 60 - type: Transform -- uid: 6515 - type: WallSolid - components: - - pos: 1.5,16.5 - parent: 60 - type: Transform -- uid: 6516 - type: AirlockEngineeringGlassLocked - components: - - name: Engi Toolroom - type: MetaData - - pos: 5.5,16.5 - parent: 60 - type: Transform -- uid: 6517 - type: Grille - components: - - pos: 6.5,16.5 - parent: 60 - type: Transform -- uid: 6518 - type: WallSolid - components: - - pos: -0.5,16.5 - parent: 60 - type: Transform -- uid: 6519 - type: WallReinforced - components: - - pos: 7.5,16.5 - parent: 60 - type: Transform -- uid: 6520 - type: ReinforcedWindow - components: - - pos: 4.5,16.5 - parent: 60 - type: Transform -- uid: 6521 - type: ReinforcedWindow - components: - - pos: 6.5,16.5 - parent: 60 - type: Transform -- uid: 6522 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 7.5,17.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13815 - type: SignalReceiver -- uid: 6523 - type: ReinforcedWindow - components: - - pos: 7.5,18.5 - parent: 60 - type: Transform -- uid: 6524 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 7.5,20.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13815 - type: SignalReceiver -- uid: 6525 - type: AirlockChiefEngineerLocked - components: - - name: Chief Engineer's Office - type: MetaData - - pos: 7.5,19.5 - parent: 60 - type: Transform -- uid: 6526 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 7.5,18.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13815 - type: SignalReceiver -- uid: 6527 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 7.5,21.5 - parent: 60 - type: Transform -- uid: 6528 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-67.5 - parent: 60 - type: Transform -- uid: 6529 - type: ReinforcedWindow - components: - - pos: 7.5,20.5 - parent: 60 - type: Transform -- uid: 6530 - type: AirlockChiefEngineerGlassLocked - components: - - name: Chief Engineer's Bedroom - type: MetaData - - pos: 11.5,19.5 - parent: 60 - type: Transform -- uid: 6531 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-19.5 - parent: 60 - type: Transform -- uid: 6532 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-18.5 - parent: 60 - type: Transform -- uid: 6533 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-20.5 - parent: 60 - type: Transform -- uid: 6534 - type: TableWood - components: - - pos: 21.5,-18.5 - parent: 60 - type: Transform -- uid: 6535 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-18.5 - parent: 60 - type: Transform -- uid: 6536 - type: WallReinforced - components: - - pos: 9.5,26.5 - parent: 60 - type: Transform -- uid: 6537 - type: WallReinforced - components: - - pos: 9.5,31.5 - parent: 60 - type: Transform -- uid: 6538 - type: ReinforcedWindow - components: - - pos: 12.5,21.5 - parent: 60 - type: Transform -- uid: 6539 - type: ReinforcedWindow - components: - - pos: 13.5,21.5 - parent: 60 - type: Transform -- uid: 6540 - type: Bed - components: - - pos: 13.5,17.5 - parent: 60 - type: Transform -- uid: 6541 - type: BedsheetCE - components: - - pos: 13.5,17.5 - parent: 60 - type: Transform -- uid: 6542 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -11.5,8.5 - parent: 60 - type: Transform -- uid: 6543 - type: TableReinforced - components: - - pos: 12.5,20.5 - parent: 60 - type: Transform -- uid: 6544 - type: TableReinforced - components: - - pos: 13.5,20.5 - parent: 60 - type: Transform -- uid: 6545 - type: TableReinforced - components: - - pos: 9.5,18.5 - parent: 60 - type: Transform -- uid: 6546 - type: ComfyChair - components: - - pos: 13.5,19.5 - parent: 60 - type: Transform -- uid: 6547 - type: Grille - components: - - pos: -20.5,27.5 - parent: 60 - type: Transform -- uid: 6548 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 26.5,-17.5 - parent: 60 - type: Transform -- uid: 6549 - type: ReinforcedWindow - components: - - pos: 9.5,29.5 - parent: 60 - type: Transform -- uid: 6550 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,15.5 - parent: 60 - type: Transform -- uid: 6551 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,15.5 - parent: 60 - type: Transform -- uid: 6552 - type: WallSolid - components: - - pos: -1.5,16.5 - parent: 60 - type: Transform -- uid: 6553 - type: WallSolid - components: - - pos: 2.5,16.5 - parent: 60 - type: Transform -- uid: 6554 - type: Rack - components: - - pos: 4.5,15.5 - parent: 60 - type: Transform -- uid: 6555 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-68.5 - parent: 60 - type: Transform -- uid: 6556 - type: Grille - components: - - pos: 6.5,-68.5 - parent: 60 - type: Transform -- uid: 6557 - type: Grille - components: - - pos: 6.5,-67.5 - parent: 60 - type: Transform -- uid: 6558 - type: Grille - components: - - pos: 6.5,-66.5 - parent: 60 - type: Transform -- uid: 6559 - type: WeldingFuelTankFull - components: - - pos: 7.5,12.5 - parent: 60 - type: Transform -- uid: 6560 - type: WeldingFuelTankFull - components: - - pos: 6.5,12.5 - parent: 60 - type: Transform -- uid: 6561 - type: FirelockGlass - components: - - pos: 21.5,-21.5 - parent: 60 - type: Transform -- uid: 6562 - type: ReinforcedWindow - components: - - pos: 9.5,28.5 - parent: 60 - type: Transform -- uid: 6563 - type: ReinforcedWindow - components: - - pos: 9.5,27.5 - parent: 60 - type: Transform -- uid: 6564 - type: Rack - components: - - pos: -0.5,15.5 - parent: 60 - type: Transform -- uid: 6565 - type: WallSolid - components: - - pos: -1.5,15.5 - parent: 60 - type: Transform -- uid: 6566 - type: Grille - components: - - pos: -22.5,27.5 - parent: 60 - type: Transform -- uid: 6567 - type: SignNosmoking - components: - - pos: 8.5,15.5 - parent: 60 - type: Transform -- uid: 6568 - type: DisposalPipe - components: - - pos: 0.5,13.5 - parent: 60 - type: Transform -- uid: 6569 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 0.5,14.5 - parent: 60 - type: Transform -- uid: 6570 - type: SolarPanel - components: - - pos: -82.5,-14.5 - parent: 60 - type: Transform -- uid: 6571 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,14.5 - parent: 60 - type: Transform -- uid: 6572 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 3.5,14.5 - parent: 60 - type: Transform -- uid: 6573 - type: DisposalTrunk - components: - - pos: 3.5,15.5 - parent: 60 - type: Transform -- uid: 6574 - type: DisposalUnit - components: - - pos: 3.5,15.5 - parent: 60 - type: Transform -- uid: 6575 - type: Poweredlight - components: - - pos: 3.5,15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6576 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,13.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6577 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,20.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6578 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6579 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,17.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6580 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,20.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6581 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 26.5,-16.5 - parent: 60 - type: Transform -- uid: 6582 - type: CrateEngineeringCableBulk - components: - - pos: 5.5,13.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 6583 - type: SignEngineering - components: - - pos: 2.5,12.5 - parent: 60 - type: Transform -- uid: 6584 - type: Table - components: - - pos: 3.5,13.5 - parent: 60 - type: Transform -- uid: 6585 - type: Table - components: - - pos: 4.5,13.5 - parent: 60 - type: Transform -- uid: 6586 - type: SolarPanel - components: - - pos: -82.5,-12.5 - parent: 60 - type: Transform -- uid: 6587 - type: ClothingBeltUtilityFilled - components: - - pos: -0.48013622,15.557762 - parent: 60 - type: Transform -- uid: 6588 - type: WallSolid - components: - - pos: -59.5,-12.5 - parent: 60 - type: Transform -- uid: 6589 - type: WallSolid - components: - - pos: -63.5,-10.5 - parent: 60 - type: Transform -- uid: 6590 - type: PosterContrabandPunchShit - components: - - pos: -61.5,-11.5 - parent: 60 - type: Transform -- uid: 6591 - type: CableApcExtension - components: - - pos: -57.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6592 - type: PoweredSmallLight - components: - - pos: -62.5,-11.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6593 - type: FirelockGlass - components: - - pos: -40.5,23.5 - parent: 60 - type: Transform -- uid: 6594 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-64.5 - parent: 60 - type: Transform -- uid: 6595 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-67.5 - parent: 60 - type: Transform -- uid: 6596 - type: RCDAmmo - components: - - pos: 9.300046,18.205687 - parent: 60 - type: Transform -- uid: 6597 - type: CarpetOrange - components: - - pos: 13.5,18.5 - parent: 60 - type: Transform -- uid: 6598 - type: CarpetOrange - components: - - pos: 13.5,17.5 - parent: 60 - type: Transform -- uid: 6599 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-66.5 - parent: 60 - type: Transform -- uid: 6600 - type: CarpetOrange - components: - - pos: 12.5,18.5 - parent: 60 - type: Transform -- uid: 6601 - type: ToolboxElectricalFilled - components: - - pos: 4.5497127,15.661254 - parent: 60 - type: Transform -- uid: 6602 - type: trayScanner - components: - - pos: 4.775793,13.661089 - parent: 60 - type: Transform -- uid: 6603 - type: CableApcStack - components: - - pos: 4.182043,13.598589 - parent: 60 - type: Transform -- uid: 6604 - type: WallSolid - components: - - pos: -1.5,13.5 - parent: 60 - type: Transform -- uid: 6605 - type: CableMVStack - components: - - pos: 4.353918,13.536089 - parent: 60 - type: Transform -- uid: 6606 - type: WallSolid - components: - - pos: 2.5,13.5 - parent: 60 - type: Transform -- uid: 6607 - type: ReinforcedWindow - components: - - pos: 8.5,22.5 - parent: 60 - type: Transform -- uid: 6608 - type: WallReinforced - components: - - pos: 9.5,22.5 - parent: 60 - type: Transform -- uid: 6609 - type: Lamp - components: - - pos: 12.619943,20.685493 - parent: 60 - type: Transform -- uid: 6610 - type: AcousticGuitarInstrument - components: - - pos: 13.354318,20.638618 - parent: 60 - type: Transform -- uid: 6611 - type: PosterLegitBuild - components: - - pos: 11.5,20.5 - parent: 60 - type: Transform -- uid: 6612 - type: Chair - components: - - pos: 26.5,-12.5 - parent: 60 - type: Transform -- uid: 6613 - type: SignElectricalMed - components: - - pos: -62.5,-17.5 - parent: 60 - type: Transform -- uid: 6614 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,14.5 - parent: 60 - type: Transform -- uid: 6615 - type: WallReinforced - components: - - pos: -64.5,-11.5 - parent: 60 - type: Transform -- uid: 6616 - type: WallReinforced - components: - - pos: -53.5,-25.5 - parent: 60 - type: Transform -- uid: 6617 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-17.5 - parent: 60 - type: Transform -- uid: 6618 - type: FoodApple - components: - - pos: 23.395727,-39.40821 - parent: 60 - type: Transform -- uid: 6619 - type: WallSolid - components: - - pos: -58.5,-12.5 - parent: 60 - type: Transform -- uid: 6620 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6621 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 6.5,11.5 - parent: 60 - type: Transform -- uid: 6622 - type: WallReinforced - components: - - pos: 12.5,16.5 - parent: 60 - type: Transform -- uid: 6623 - type: CarpetOrange - components: - - pos: 12.5,17.5 - parent: 60 - type: Transform -- uid: 6624 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,15.5 - parent: 60 - type: Transform -- uid: 6625 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -11.5,7.5 - parent: 60 - type: Transform -- uid: 6626 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 60 - type: Transform -- uid: 6627 - type: WallSolid - components: - - pos: 54.5,-43.5 - parent: 60 - type: Transform -- uid: 6628 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 10.5,18.5 - parent: 60 - type: Transform -- uid: 6629 - type: TableReinforced - components: - - pos: 9.5,17.5 - parent: 60 - type: Transform -- uid: 6630 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 8.5,18.5 - parent: 60 - type: Transform -- uid: 6631 - type: PosterLegitNanomichiAd - components: - - pos: 14.5,18.5 - parent: 60 - type: Transform -- uid: 6632 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -35.5,8.5 - parent: 60 - type: Transform -- uid: 6633 - type: PosterLegitSafetyInternals - components: - - pos: -1.5,13.5 - parent: 60 - type: Transform -- uid: 6634 - type: FoodBanana - components: - - pos: 21.253925,-11.2986555 - parent: 60 - type: Transform -- uid: 6635 - type: FoodBanana - components: - - pos: 21.4258,-11.2986555 - parent: 60 - type: Transform -- uid: 6636 - type: FoodBanana - components: - - pos: 21.58205,-11.2986555 - parent: 60 - type: Transform -- uid: 6637 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-64.5 - parent: 60 - type: Transform -- uid: 6638 - type: Memorial - components: - - desc: In honor of the architects who value work safety so much, they built a singularity in the middle of the station. - name: Bagel Station 13 Memorial - type: MetaData - - pos: 0.5,-66.5 - parent: 60 - type: Transform -- uid: 6639 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-68.5 - parent: 60 - type: Transform -- uid: 6640 - type: ClothingOuterWizardRed - components: - - pos: -36.972637,-35.41713 - parent: 60 - type: Transform -- uid: 6641 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-67.5 - parent: 60 - type: Transform -- uid: 6642 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-66.5 - parent: 60 - type: Transform -- uid: 6643 - type: CableMV - components: - - pos: -15.5,-54.5 - parent: 60 - type: Transform -- uid: 6644 - type: CableMV - components: - - pos: -15.5,-53.5 - parent: 60 - type: Transform -- uid: 6645 - type: CableMV - components: - - pos: -10.5,-54.5 - parent: 60 - type: Transform -- uid: 6646 - type: ClothingShoesBootsMag - components: - - pos: -3.27881,13.277736 - parent: 60 - type: Transform -- uid: 6647 - type: Fireplace - components: - - pos: 30.5,-12.5 - parent: 60 - type: Transform -- uid: 6648 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -28.5,-19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6649 - type: Grille - components: - - pos: 30.5,-59.5 - parent: 60 - type: Transform -- uid: 6650 - type: BikeHornInstrument - components: - - pos: 22.253925,-11.4549055 - parent: 60 - type: Transform -- uid: 6651 - type: Grille - components: - - pos: -20.5,-4.5 - parent: 60 - type: Transform -- uid: 6652 - type: FoodPieBananaCream - components: - - pos: 21.4883,-11.4705305 - parent: 60 - type: Transform -- uid: 6653 - type: BedsheetClown - components: - - pos: 21.5,-11.5 - parent: 60 - type: Transform -- uid: 6654 - type: Catwalk - components: - - pos: -81.5,-16.5 - parent: 60 - type: Transform -- uid: 6655 - type: BedsheetMedical - components: - - pos: 30.5,-17.5 - parent: 60 - type: Transform -- uid: 6656 - type: Catwalk - components: - - pos: -81.5,-12.5 - parent: 60 - type: Transform -- uid: 6657 - type: Catwalk - components: - - pos: -81.5,-14.5 - parent: 60 - type: Transform -- uid: 6658 - type: FoodPieBananaCream - components: - - pos: 21.7383,-11.4705305 - parent: 60 - type: Transform -- uid: 6659 - type: ReinforcedWindow - components: - - pos: 28.5,1.5 - parent: 60 - type: Transform -- uid: 6660 - type: GasPipeTJunction - components: - - pos: -42.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6661 - type: FirelockGlass - components: - - pos: -40.5,25.5 - parent: 60 - type: Transform -- uid: 6662 - type: GasPipeTJunction - components: - - pos: -42.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6663 - type: WallSolid - components: - - pos: -60.5,-20.5 - parent: 60 - type: Transform -- uid: 6664 - type: MedicalBed - components: - - pos: 30.5,-17.5 - parent: 60 - type: Transform -- uid: 6665 - type: CrateEmptySpawner - components: - - pos: -63.5,13.5 - parent: 60 - type: Transform -- uid: 6666 - type: CableMV - components: - - pos: -11.5,-54.5 - parent: 60 - type: Transform -- uid: 6667 - type: WallSolidRust - components: - - pos: 46.5,-39.5 - parent: 60 - type: Transform -- uid: 6668 - type: TableGlass - components: - - pos: -62.5,-15.5 - parent: 60 - type: Transform -- uid: 6669 - type: CableApcExtension - components: - - pos: -59.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6670 - type: CableHV - components: - - pos: 30.5,-62.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6671 - type: CableHV - components: - - pos: 29.5,-68.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6672 - type: CableHV - components: - - pos: 30.5,-68.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6673 - type: AirlockExternalGlassLocked - components: - - pos: -31.5,-36.5 - parent: 60 - type: Transform -- uid: 6674 - type: LauncherCreamPie - components: - - pos: 21.334734,-11.3924055 - parent: 60 - type: Transform -- uid: 6675 - type: FoodPieBananaCream - components: - - pos: 21.285175,-11.4705305 - parent: 60 - type: Transform -- uid: 6676 - type: CableHV - components: - - pos: 25.5,-64.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6677 - type: FoodBanana - components: - - pos: 21.722675,-11.2986555 - parent: 60 - type: Transform -- uid: 6678 - type: BikeHorn - components: - - pos: 22.174164,-11.4080305 - parent: 60 - type: Transform -- uid: 6679 - type: CableHV - components: - - pos: 26.5,-62.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6680 - type: ClothingUniformJumpsuitClown - components: - - pos: 20.490417,-11.6111555 - parent: 60 - type: Transform -- uid: 6681 - type: PosterContrabandClown - components: - - pos: 22.5,-14.5 - parent: 60 - type: Transform -- uid: 6682 - type: BedsheetMime - components: - - pos: 27.5,-12.5 - parent: 60 - type: Transform -- uid: 6683 - type: Grille - components: - - pos: -35.5,-6.5 - parent: 60 - type: Transform -- uid: 6684 - type: ClothingMaskClown - components: - - pos: 20.497465,-11.17455 - parent: 60 - type: Transform -- uid: 6685 - type: CableHV - components: - - pos: 26.5,-64.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6686 - type: ClothingShoesClown - components: - - pos: 20.521667,-11.6736555 - parent: 60 - type: Transform -- uid: 6687 - type: CableHV - components: - - pos: 28.5,-62.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6688 - type: Grille - components: - - pos: 31.5,-80.5 - parent: 60 - type: Transform -- uid: 6689 - type: CableHV - components: - - pos: 28.5,-64.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6690 - type: CableHV - components: - - pos: 25.5,-62.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6691 - type: CableHV - components: - - pos: 29.5,-64.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6692 - type: CableHV - components: - - pos: 29.5,-62.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6693 - type: AirlockExternalGlass - components: - - pos: 52.5,27.5 - parent: 60 - type: Transform -- uid: 6694 - type: Catwalk - components: - - pos: 38.5,-60.5 - parent: 60 - type: Transform -- uid: 6695 - type: AirlockExternalGlass - components: - - pos: 46.5,27.5 - parent: 60 - type: Transform -- uid: 6696 - type: Catwalk - components: - - pos: 39.5,-60.5 - parent: 60 - type: Transform -- uid: 6697 - type: RandomInstruments - components: - - pos: 23.5,-13.5 - parent: 60 - type: Transform -- uid: 6698 - type: ClothingBackpackClown - components: - - pos: 20.48184,-11.502675 - parent: 60 - type: Transform -- uid: 6699 - type: FoodBurgerMime - components: - - pos: 27.351957,-12.1736555 - parent: 60 - type: Transform -- uid: 6700 - type: CrayonBox - components: - - pos: 27.508207,-11.6580305 - parent: 60 - type: Transform -- uid: 6701 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-78.5 - parent: 60 - type: Transform -- uid: 6702 - type: CableMV - components: - - pos: -35.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6703 - type: CableMV - components: - - pos: -35.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6704 - type: CableMV - components: - - pos: -17.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6705 - type: CableMV - components: - - pos: -17.5,-7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6706 - type: CableMV - components: - - pos: -20.5,-12.5 - parent: 60 - type: Transform -- uid: 6707 - type: CableMV - components: - - pos: -18.5,-9.5 - parent: 60 - type: Transform -- uid: 6708 - type: CableMV - components: - - pos: -20.5,-9.5 - parent: 60 - type: Transform -- uid: 6709 - type: CableMV - components: - - pos: -18.5,-6.5 - parent: 60 - type: Transform -- uid: 6710 - type: CableMV - components: - - pos: -17.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6711 - type: ComfyChair - components: - - pos: 24.5,-12.5 - parent: 60 - type: Transform -- uid: 6712 - type: Table - components: - - pos: 5.5,-27.5 - parent: 60 - type: Transform -- uid: 6713 - type: CableMV - components: - - pos: -12.5,-54.5 - parent: 60 - type: Transform -- uid: 6714 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-27.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6715 - type: CarpetSBlue - components: - - pos: -40.5,-18.5 - parent: 60 - type: Transform -- uid: 6716 - type: DisposalPipe - components: - - pos: 16.5,14.5 - parent: 60 - type: Transform -- uid: 6717 - type: DisposalPipe - components: - - pos: 16.5,15.5 - parent: 60 - type: Transform -- uid: 6718 - type: WallReinforced - components: - - pos: 14.5,26.5 - parent: 60 - type: Transform -- uid: 6719 - type: Catwalk - components: - - pos: 63.5,-32.5 - parent: 60 - type: Transform -- uid: 6720 - type: ReinforcedWindow - components: - - pos: 14.5,23.5 - parent: 60 - type: Transform -- uid: 6721 - type: Grille - components: - - pos: 14.5,25.5 - parent: 60 - type: Transform -- uid: 6722 - type: Grille - components: - - pos: 14.5,23.5 - parent: 60 - type: Transform -- uid: 6723 - type: ShuttersNormalOpen - components: - - pos: 40.5,-21.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7070 - type: SignalReceiver -- uid: 6724 - type: CableHV - components: - - pos: 31.5,-61.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6725 - type: CableHV - components: - - pos: 27.5,-62.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6726 - type: ReinforcedWindow - components: - - pos: 14.5,25.5 - parent: 60 - type: Transform -- uid: 6727 - type: Grille - components: - - pos: 14.5,24.5 - parent: 60 - type: Transform -- uid: 6728 - type: ReinforcedWindow - components: - - pos: 14.5,24.5 - parent: 60 - type: Transform -- uid: 6729 - type: DisposalPipe - components: - - pos: 16.5,17.5 - parent: 60 - type: Transform -- uid: 6730 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-0.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 5805 - Forward: - - port: Left - uid: 5805 - Off: - - port: Middle - uid: 5805 - type: SignalReceiver -- uid: 6731 - type: DisposalPipe - components: - - pos: 16.5,13.5 - parent: 60 - type: Transform -- uid: 6732 - type: DisposalPipe - components: - - pos: 16.5,16.5 - parent: 60 - type: Transform -- uid: 6733 - type: ShuttersNormalOpen - components: - - pos: -35.5,-13.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1486 - type: SignalReceiver -- uid: 6734 - type: WindoorSecure - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-9.5 - parent: 60 - type: Transform -- uid: 6735 - type: WallSolid - components: - - pos: 58.5,-43.5 - parent: 60 - type: Transform -- uid: 6736 - type: FirelockGlass - components: - - pos: 40.5,-40.5 - parent: 60 - type: Transform -- uid: 6737 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 46.5,-43.5 - parent: 60 - type: Transform -- uid: 6738 - type: WallSolid - components: - - pos: -4.5,-29.5 - parent: 60 - type: Transform -- uid: 6739 - type: MopBucket - components: - - pos: 6.5346174,-45.56185 - parent: 60 - type: Transform -- uid: 6740 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6741 - type: CableApcExtension - components: - - pos: -2.5,-53.5 - parent: 60 - type: Transform -- uid: 6742 - type: CableApcExtension - components: - - pos: -6.5,-54.5 - parent: 60 - type: Transform -- uid: 6743 - type: CableApcExtension - components: - - pos: -5.5,-54.5 - parent: 60 - type: Transform -- uid: 6744 - type: CableApcExtension - components: - - pos: -2.5,-52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6745 - type: CableApcExtension - components: - - pos: -9.5,-54.5 - parent: 60 - type: Transform -- uid: 6746 - type: ShuttersNormalOpen - components: - - rot: 3.141592653589793 rad - pos: -35.5,-6.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1468 - type: SignalReceiver -- uid: 6747 - type: CableApcExtension - components: - - pos: 10.5,-53.5 - parent: 60 - type: Transform -- uid: 6748 - type: CableApcExtension - components: - - pos: 10.5,-54.5 - parent: 60 - type: Transform -- uid: 6749 - type: CableApcExtension - components: - - pos: 10.5,-55.5 - parent: 60 - type: Transform -- uid: 6750 - type: CableApcExtension - components: - - pos: -7.5,-54.5 - parent: 60 - type: Transform -- uid: 6751 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-68.5 - parent: 60 - type: Transform -- uid: 6752 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-65.5 - parent: 60 - type: Transform -- uid: 6753 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-68.5 - parent: 60 - type: Transform -- uid: 6754 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-66.5 - parent: 60 - type: Transform -- uid: 6755 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-65.5 - parent: 60 - type: Transform -- uid: 6756 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-15.5 - parent: 60 - type: Transform -- uid: 6757 - type: WallReinforced - components: - - pos: -40.5,-29.5 - parent: 60 - type: Transform -- uid: 6758 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -47.5,-24.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6759 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6760 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6761 - type: GasPipeFourway - components: - - pos: -27.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6762 - type: GasPipeStraight - components: - - pos: -25.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6763 - type: GasPipeFourway - components: - - pos: -25.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6764 - type: WallSolidRust - components: - - pos: 50.5,-43.5 - parent: 60 - type: Transform -- uid: 6765 - type: WallSolidRust - components: - - pos: 53.5,-44.5 - parent: 60 - type: Transform -- uid: 6766 - type: WallSolidRust - components: - - pos: -64.5,5.5 - parent: 60 - type: Transform -- uid: 6767 - type: AirlockExternalGlass - components: - - pos: 54.5,27.5 - parent: 60 - type: Transform -- uid: 6768 - type: AtmosDeviceFanTiny - components: - - pos: 54.5,31.5 - parent: 60 - type: Transform -- uid: 6769 - type: AtmosDeviceFanTiny - components: - - pos: 44.5,31.5 - parent: 60 - type: Transform -- uid: 6770 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 9.5,5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6771 - type: ShuttersWindowOpen - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-32.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2313 - type: SignalReceiver -- uid: 6772 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-33.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2313 - type: SignalReceiver -- uid: 6773 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-30.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2313 - type: SignalReceiver -- uid: 6774 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-31.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2313 - type: SignalReceiver -- uid: 6775 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-34.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2313 - type: SignalReceiver -- uid: 6776 - type: PosterLegitPDAAd - components: - - pos: 2.5,-28.5 - parent: 60 - type: Transform -- uid: 6777 - type: RCD - components: - - pos: 9.534421,17.768187 - parent: 60 - type: Transform -- uid: 6778 - type: RCDAmmo - components: - - pos: 9.550046,18.190062 - parent: 60 - type: Transform -- uid: 6779 - type: CableHV - components: - - pos: -33.5,4.5 - parent: 60 - type: Transform -- uid: 6780 - type: ClothingUnderSocksCoder - components: - - pos: -40.49934,-36.642094 - parent: 60 - type: Transform -- uid: 6781 - type: FoodCheeseSlice - components: - - pos: -38.57393,-30.478518 - parent: 60 - type: Transform -- uid: 6782 - type: PowerCellRecharger - components: - - pos: 13.5,15.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 6783 - type: ClothingMaskSterile - components: - - pos: 42.414062,-27.470005 - parent: 60 - type: Transform -- uid: 6784 - type: FoodMeatRatdoubleKebab - components: - - pos: 13.415919,-46.397263 - parent: 60 - type: Transform -- uid: 6785 - type: FirelockGlass - components: - - pos: -40.5,24.5 - parent: 60 - type: Transform -- uid: 6786 - type: ComputerTelevision - components: - - pos: -25.5,-26.5 - parent: 60 - type: Transform -- uid: 6787 - type: ClothingOuterCoatInspector - components: - - pos: 19.394547,-50.426735 - parent: 60 - type: Transform -- uid: 6788 - type: AtmosDeviceFanTiny - components: - - pos: 59.5,14.5 - parent: 60 - type: Transform -- uid: 6789 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -42.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6790 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-37.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6791 - type: ClothingHeadHatSkub - components: - - pos: 61.427177,-29.45606 - parent: 60 - type: Transform -- uid: 6792 - type: Skub - components: - - pos: 60.464996,-29.58106 - parent: 60 - type: Transform -- uid: 6793 - type: ClothingOuterSkub - components: - - pos: 61.458427,-29.471685 - parent: 60 - type: Transform -- uid: 6794 - type: CableMV - components: - - pos: -21.5,-2.5 - parent: 60 - type: Transform -- uid: 6795 - type: ClothingShoesColorYellow - components: - - rot: 0.00034854019759222865 rad - pos: -2.4945157,-42.736496 - parent: 60 - type: Transform -- uid: 6796 - type: ShuttersNormalOpen - components: - - rot: 3.141592653589793 rad - pos: -35.5,-9.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6971 - type: SignalReceiver -- uid: 6797 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -17.5,-16.5 - parent: 60 - type: Transform -- uid: 6798 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -17.5,-17.5 - parent: 60 - type: Transform -- uid: 6799 - type: GasPipeStraight - components: - - pos: -38.5,-8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6800 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6801 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6802 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6803 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6804 - type: GasPipeStraight - components: - - pos: -30.5,-8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6805 - type: ReinforcedWindow - components: - - pos: 17.5,29.5 - parent: 60 - type: Transform -- uid: 6806 - type: WallReinforced - components: - - pos: 26.5,3.5 - parent: 60 - type: Transform -- uid: 6807 - type: WallSolid - components: - - pos: 35.5,12.5 - parent: 60 - type: Transform -- uid: 6808 - type: WallSolid - components: - - pos: 47.5,5.5 - parent: 60 - type: Transform -- uid: 6809 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6810 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 17.5,18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6811 - type: RandomSpawner - components: - - pos: -10.5,-45.5 - parent: 60 - type: Transform -- uid: 6812 - type: Grille - components: - - pos: 17.5,29.5 - parent: 60 - type: Transform -- uid: 6813 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-34.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2881 - type: SignalReceiver -- uid: 6814 - type: hydroponicsTray - components: - - pos: 29.5,-30.5 - parent: 60 - type: Transform -- uid: 6815 - type: hydroponicsTray - components: - - pos: 28.5,-30.5 - parent: 60 - type: Transform -- uid: 6816 - type: hydroponicsTray - components: - - pos: 34.5,-28.5 - parent: 60 - type: Transform -- uid: 6817 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-23.5 - parent: 60 - type: Transform -- uid: 6818 - type: CableMV - components: - - pos: -19.5,-6.5 - parent: 60 - type: Transform -- uid: 6819 - type: CableMV - components: - - pos: -19.5,-9.5 - parent: 60 - type: Transform -- uid: 6820 - type: Grille - components: - - pos: -17.5,-7.5 - parent: 60 - type: Transform -- uid: 6821 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: 38.5,-25.5 - parent: 60 - type: Transform -- uid: 6822 - type: Table - components: - - pos: 38.5,-25.5 - parent: 60 - type: Transform -- uid: 6823 - type: GasPipeBend - components: - - pos: 17.5,-28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6824 - type: GasPipeStraight - components: - - pos: -27.5,-19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6825 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6826 - type: WallReinforced - components: - - pos: 11.5,22.5 - parent: 60 - type: Transform -- uid: 6827 - type: MaintenanceFluffSpawner - components: - - pos: 56.5,-20.5 - parent: 60 - type: Transform -- uid: 6828 - type: CableMV - components: - - pos: -21.5,-3.5 - parent: 60 - type: Transform -- uid: 6829 - type: CableHV - components: - - pos: 36.5,-62.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6830 - type: AirlockGlass - components: - - pos: -12.5,8.5 - parent: 60 - type: Transform -- uid: 6831 - type: CheapRollerBed - components: - - pos: 35.495808,-18.799927 - parent: 60 - type: Transform -- uid: 6832 - type: CheapRollerBed - components: - - pos: 35.46979,-19.254112 - parent: 60 - type: Transform -- uid: 6833 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6834 - type: GasThermoMachineFreezer - components: - - pos: 49.5,-12.5 - parent: 60 - type: Transform -- uid: 6835 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6836 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6837 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6838 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6839 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6840 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6841 - type: SolarPanel - components: - - pos: 25.5,-70.5 - parent: 60 - type: Transform -- uid: 6842 - type: Catwalk - components: - - pos: -19.5,-32.5 - parent: 60 - type: Transform -- uid: 6843 - type: TableWood - components: - - pos: 23.5,-16.5 - parent: 60 - type: Transform -- uid: 6844 - type: Catwalk - components: - - pos: -19.5,-30.5 - parent: 60 - type: Transform -- uid: 6845 - type: Catwalk - components: - - pos: -19.5,-29.5 - parent: 60 - type: Transform -- uid: 6846 - type: Catwalk - components: - - pos: -19.5,-28.5 - parent: 60 - type: Transform -- uid: 6847 - type: Catwalk - components: - - pos: -19.5,-27.5 - parent: 60 - type: Transform -- uid: 6848 - type: Catwalk - components: - - pos: -18.5,-26.5 - parent: 60 - type: Transform -- uid: 6849 - type: Catwalk - components: - - pos: -17.5,-26.5 - parent: 60 - type: Transform -- uid: 6850 - type: Catwalk - components: - - pos: -16.5,-26.5 - parent: 60 - type: Transform -- uid: 6851 - type: Catwalk - components: - - pos: -15.5,-26.5 - parent: 60 - type: Transform -- uid: 6852 - type: Catwalk - components: - - pos: -14.5,-26.5 - parent: 60 - type: Transform -- uid: 6853 - type: ComputerTelevision - components: - - pos: -47.5,24.5 - parent: 60 - type: Transform -- uid: 6854 - type: FirelockGlass - components: - - pos: -27.5,-32.5 - parent: 60 - type: Transform -- uid: 6855 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-29.5 - parent: 60 - type: Transform -- uid: 6856 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-29.5 - parent: 60 - type: Transform -- uid: 6857 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-28.5 - parent: 60 - type: Transform -- uid: 6858 - type: CableApcExtension - components: - - pos: -52.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6859 - type: Catwalk - components: - - pos: -40.5,-32.5 - parent: 60 - type: Transform -- uid: 6860 - type: Catwalk - components: - - pos: -39.5,-32.5 - parent: 60 - type: Transform -- uid: 6861 - type: Catwalk - components: - - pos: -38.5,-32.5 - parent: 60 - type: Transform -- uid: 6862 - type: Catwalk - components: - - pos: -37.5,-32.5 - parent: 60 - type: Transform -- uid: 6863 - type: Catwalk - components: - - pos: -41.5,-31.5 - parent: 60 - type: Transform -- uid: 6864 - type: Catwalk - components: - - pos: -41.5,-30.5 - parent: 60 - type: Transform -- uid: 6865 - type: Catwalk - components: - - pos: -7.5,-41.5 - parent: 60 - type: Transform -- uid: 6866 - type: Catwalk - components: - - pos: -41.5,-28.5 - parent: 60 - type: Transform -- uid: 6867 - type: Catwalk - components: - - pos: -41.5,-27.5 - parent: 60 - type: Transform -- uid: 6868 - type: Catwalk - components: - - pos: -41.5,-26.5 - parent: 60 - type: Transform -- uid: 6869 - type: Catwalk - components: - - pos: -41.5,-25.5 - parent: 60 - type: Transform -- uid: 6870 - type: Catwalk - components: - - pos: -41.5,-24.5 - parent: 60 - type: Transform -- uid: 6871 - type: Catwalk - components: - - pos: -49.5,-23.5 - parent: 60 - type: Transform -- uid: 6872 - type: Catwalk - components: - - pos: -48.5,-23.5 - parent: 60 - type: Transform -- uid: 6873 - type: Catwalk - components: - - pos: -47.5,-23.5 - parent: 60 - type: Transform -- uid: 6874 - type: Catwalk - components: - - pos: -46.5,-23.5 - parent: 60 - type: Transform -- uid: 6875 - type: Catwalk - components: - - pos: -45.5,-23.5 - parent: 60 - type: Transform -- uid: 6876 - type: Catwalk - components: - - pos: -44.5,-23.5 - parent: 60 - type: Transform -- uid: 6877 - type: Catwalk - components: - - pos: -43.5,-23.5 - parent: 60 - type: Transform -- uid: 6878 - type: Catwalk - components: - - pos: -42.5,-23.5 - parent: 60 - type: Transform -- uid: 6879 - type: Catwalk - components: - - pos: -6.5,-41.5 - parent: 60 - type: Transform -- uid: 6880 - type: CableApcExtension - components: - - pos: -52.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6881 - type: SpawnPointLawyer - components: - - pos: -49.5,-20.5 - parent: 60 - type: Transform -- uid: 6882 - type: Catwalk - components: - - pos: -8.5,-41.5 - parent: 60 - type: Transform -- uid: 6883 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-15.5 - parent: 60 - type: Transform -- uid: 6884 - type: CableMV - components: - - pos: -21.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6885 - type: CableMV - components: - - pos: -22.5,-16.5 - parent: 60 - type: Transform -- uid: 6886 - type: CableMV - components: - - pos: -20.5,-16.5 - parent: 60 - type: Transform -- uid: 6887 - type: CableMV - components: - - pos: -19.5,-16.5 - parent: 60 - type: Transform -- uid: 6888 - type: CableMV - components: - - pos: -18.5,-16.5 - parent: 60 - type: Transform -- uid: 6889 - type: CableMV - components: - - pos: -24.5,-14.5 - parent: 60 - type: Transform -- uid: 6890 - type: CableMV - components: - - pos: -26.5,-14.5 - parent: 60 - type: Transform -- uid: 6891 - type: Catwalk - components: - - pos: -9.5,-41.5 - parent: 60 - type: Transform -- uid: 6892 - type: Catwalk - components: - - pos: -14.5,-40.5 - parent: 60 - type: Transform -- uid: 6893 - type: Catwalk - components: - - pos: -13.5,-41.5 - parent: 60 - type: Transform -- uid: 6894 - type: Catwalk - components: - - pos: -12.5,-41.5 - parent: 60 - type: Transform -- uid: 6895 - type: Catwalk - components: - - pos: -14.5,-39.5 - parent: 60 - type: Transform -- uid: 6896 - type: Catwalk - components: - - pos: -10.5,-41.5 - parent: 60 - type: Transform -- uid: 6897 - type: Catwalk - components: - - pos: 3.5,-41.5 - parent: 60 - type: Transform -- uid: 6898 - type: Catwalk - components: - - pos: 4.5,-41.5 - parent: 60 - type: Transform -- uid: 6899 - type: Catwalk - components: - - pos: -15.5,-37.5 - parent: 60 - type: Transform -- uid: 6900 - type: Catwalk - components: - - pos: -15.5,-36.5 - parent: 60 - type: Transform -- uid: 6901 - type: Catwalk - components: - - pos: -15.5,-35.5 - parent: 60 - type: Transform -- uid: 6902 - type: Catwalk - components: - - pos: -15.5,-34.5 - parent: 60 - type: Transform -- uid: 6903 - type: Catwalk - components: - - pos: -16.5,-33.5 - parent: 60 - type: Transform -- uid: 6904 - type: Catwalk - components: - - pos: -17.5,-33.5 - parent: 60 - type: Transform -- uid: 6905 - type: Catwalk - components: - - pos: -18.5,-33.5 - parent: 60 - type: Transform -- uid: 6906 - type: Catwalk - components: - - pos: 7.5,-41.5 - parent: 60 - type: Transform -- uid: 6907 - type: SolarPanel - components: - - pos: 26.5,-72.5 - parent: 60 - type: Transform -- uid: 6908 - type: WallReinforced - components: - - pos: -51.5,48.5 - parent: 60 - type: Transform -- uid: 6909 - type: WallReinforced - components: - - pos: 26.5,4.5 - parent: 60 - type: Transform -- uid: 6910 - type: WallReinforced - components: - - pos: 14.5,29.5 - parent: 60 - type: Transform -- uid: 6911 - type: Grille - components: - - pos: 15.5,29.5 - parent: 60 - type: Transform -- uid: 6912 - type: Catwalk - components: - - pos: 7.5,-35.5 - parent: 60 - type: Transform -- uid: 6913 - type: Catwalk - components: - - pos: 7.5,-36.5 - parent: 60 - type: Transform -- uid: 6914 - type: Catwalk - components: - - pos: 7.5,-37.5 - parent: 60 - type: Transform -- uid: 6915 - type: Catwalk - components: - - pos: 7.5,-38.5 - parent: 60 - type: Transform -- uid: 6916 - type: SolarPanel - components: - - pos: 28.5,-72.5 - parent: 60 - type: Transform -- uid: 6917 - type: ReinforcedWindow - components: - - pos: 15.5,29.5 - parent: 60 - type: Transform -- uid: 6918 - type: WallReinforced - components: - - pos: -67.5,14.5 - parent: 60 - type: Transform -- uid: 6919 - type: WallReinforced - components: - - pos: -68.5,10.5 - parent: 60 - type: Transform -- uid: 6920 - type: WallReinforced - components: - - pos: -68.5,12.5 - parent: 60 - type: Transform -- uid: 6921 - type: CableApcExtension - components: - - pos: 14.5,5.5 - parent: 60 - type: Transform -- uid: 6922 - type: Grille - components: - - pos: 43.5,28.5 - parent: 60 - type: Transform -- uid: 6923 - type: Catwalk - components: - - pos: 37.5,-60.5 - parent: 60 - type: Transform -- uid: 6924 - type: GrilleBroken - components: - - pos: 33.5,-79.5 - parent: 60 - type: Transform -- uid: 6925 - type: CableHV - components: - - pos: 27.5,-64.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6926 - type: WallReinforced - components: - - pos: 46.5,14.5 - parent: 60 - type: Transform -- uid: 6927 - type: WallReinforced - components: - - pos: -68.5,13.5 - parent: 60 - type: Transform -- uid: 6928 - type: CableHV - components: - - pos: 60.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6929 - type: CableHV - components: - - pos: 61.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6930 - type: CableHV - components: - - pos: -60.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6931 - type: Catwalk - components: - - pos: 31.5,-50.5 - parent: 60 - type: Transform -- uid: 6932 - type: Catwalk - components: - - pos: 32.5,-50.5 - parent: 60 - type: Transform -- uid: 6933 - type: Catwalk - components: - - pos: 33.5,-50.5 - parent: 60 - type: Transform -- uid: 6934 - type: Catwalk - components: - - pos: 34.5,-50.5 - parent: 60 - type: Transform -- uid: 6935 - type: Catwalk - components: - - pos: 35.5,-50.5 - parent: 60 - type: Transform -- uid: 6936 - type: Catwalk - components: - - pos: 37.5,-50.5 - parent: 60 - type: Transform -- uid: 6937 - type: Catwalk - components: - - pos: 31.5,-55.5 - parent: 60 - type: Transform -- uid: 6938 - type: Catwalk - components: - - pos: 31.5,-54.5 - parent: 60 - type: Transform -- uid: 6939 - type: Catwalk - components: - - pos: 31.5,-53.5 - parent: 60 - type: Transform -- uid: 6940 - type: Catwalk - components: - - pos: 31.5,-52.5 - parent: 60 - type: Transform -- uid: 6941 - type: Catwalk - components: - - pos: 36.5,-50.5 - parent: 60 - type: Transform -- uid: 6942 - type: Catwalk - components: - - pos: 38.5,-50.5 - parent: 60 - type: Transform -- uid: 6943 - type: Catwalk - components: - - pos: 39.5,-50.5 - parent: 60 - type: Transform -- uid: 6944 - type: ClothingUniformJumpskirtJanimaidmini - components: - - pos: 8.493573,-6.4299474 - parent: 60 - type: Transform -- uid: 6945 - type: CableHV - components: - - pos: 41.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6946 - type: Catwalk - components: - - pos: 41.5,-46.5 - parent: 60 - type: Transform -- uid: 6947 - type: CableApcExtension - components: - - pos: 41.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6948 - type: CableApcExtension - components: - - pos: 42.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6949 - type: CableApcExtension - components: - - pos: 41.5,-47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6950 - type: ReinforcedWindow - components: - - pos: -56.5,-30.5 - parent: 60 - type: Transform -- uid: 6951 - type: ReinforcedWindow - components: - - pos: -55.5,-32.5 - parent: 60 - type: Transform -- uid: 6952 - type: CableApcExtension - components: - - pos: -64.5,-0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6953 - type: WallReinforced - components: - - pos: -52.5,-30.5 - parent: 60 - type: Transform -- uid: 6954 - type: Catwalk - components: - - pos: 33.5,-40.5 - parent: 60 - type: Transform -- uid: 6955 - type: Catwalk - components: - - pos: 32.5,-40.5 - parent: 60 - type: Transform -- uid: 6956 - type: Catwalk - components: - - pos: 31.5,-40.5 - parent: 60 - type: Transform -- uid: 6957 - type: Catwalk - components: - - pos: 30.5,-40.5 - parent: 60 - type: Transform -- uid: 6958 - type: Catwalk - components: - - pos: 29.5,-40.5 - parent: 60 - type: Transform -- uid: 6959 - type: ReinforcedWindow - components: - - pos: -53.5,-32.5 - parent: 60 - type: Transform -- uid: 6960 - type: ReinforcedWindow - components: - - pos: -54.5,-32.5 - parent: 60 - type: Transform -- uid: 6961 - type: WallReinforced - components: - - pos: -52.5,-32.5 - parent: 60 - type: Transform -- uid: 6962 - type: MedicalTechFab - components: - - pos: 47.5,-10.5 - parent: 60 - type: Transform - - materialWhiteList: - - Glass - - Steel - - Plastic - - Durathread - - Cloth - type: MaterialStorage -- uid: 6963 - type: CableApcExtension - components: - - pos: -63.5,-0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6964 - type: CableApcExtension - components: - - pos: -62.5,-0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6965 - type: ReinforcedWindow - components: - - pos: -53.5,-30.5 - parent: 60 - type: Transform -- uid: 6966 - type: Grille - components: - - pos: -53.5,-30.5 - parent: 60 - type: Transform -- uid: 6967 - type: AirlockMaintLocked - components: - - pos: -60.5,-13.5 - parent: 60 - type: Transform -- uid: 6968 - type: ToySpawner - components: - - pos: -63.5,2.5 - parent: 60 - type: Transform -- uid: 6969 - type: ReinforcedWindow - components: - - pos: 26.5,0.5 - parent: 60 - type: Transform -- uid: 6970 - type: TableReinforced - components: - - pos: -109.5,13.5 - parent: 60 - type: Transform -- uid: 6971 - type: SignalButton - components: - - pos: -32.5,-8.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6796 - - port: Toggle - uid: 7045 - type: SignalTransmitter -- uid: 6972 - type: SignalButton - components: - - pos: -20.5,-5.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 148 - - port: Toggle - uid: 188 - - port: Toggle - uid: 123 - type: SignalTransmitter -- uid: 6973 - type: GasPassiveVent - components: - - pos: -51.5,51.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 6974 - type: WallReinforced - components: - - pos: -1.5,-74.5 - parent: 60 - type: Transform -- uid: 6975 - type: APCBasic - components: - - pos: 10.5,-52.5 - parent: 60 - type: Transform -- uid: 6976 - type: Grille - components: - - pos: 3.5,-74.5 - parent: 60 - type: Transform -- uid: 6977 - type: WallReinforced - components: - - pos: 57.5,5.5 - parent: 60 - type: Transform -- uid: 6978 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-0.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 5805 - Forward: - - port: Left - uid: 5805 - Off: - - port: Middle - uid: 5805 - type: SignalReceiver -- uid: 6979 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -60.5,-9.5 - parent: 60 - type: Transform -- uid: 6980 - type: CableHV - components: - - pos: 35.5,-72.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6981 - type: SpawnPointHeadOfPersonnel - components: - - pos: 7.5,-32.5 - parent: 60 - type: Transform -- uid: 6982 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6983 - type: Grille - components: - - pos: -35.5,-12.5 - parent: 60 - type: Transform -- uid: 6984 - type: ReinforcedWindow - components: - - pos: 45.5,-25.5 - parent: 60 - type: Transform -- uid: 6985 - type: ReinforcedPlasmaWindow - components: - - pos: -53.5,51.5 - parent: 60 - type: Transform -- uid: 6986 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-28.5 - parent: 60 - type: Transform -- uid: 6987 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-30.5 - parent: 60 - type: Transform -- uid: 6988 - type: PottedPlantRandom - components: - - pos: 45.5,-29.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 6989 - type: WaterTankHighCapacity - components: - - pos: 32.5,-33.5 - parent: 60 - type: Transform -- uid: 6990 - type: hydroponicsTray - components: - - pos: 32.5,-30.5 - parent: 60 - type: Transform -- uid: 6991 - type: hydroponicsTray - components: - - pos: 31.5,-30.5 - parent: 60 - type: Transform -- uid: 6992 - type: CableMV - components: - - pos: -17.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6993 - type: WallReinforced - components: - - pos: -18.5,2.5 - parent: 60 - type: Transform -- uid: 6994 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: -52.5,47.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 6995 - type: NitrogenCanister - components: - - pos: -50.5,51.5 - parent: 60 - type: Transform -- uid: 6996 - type: SignDirectionalEng - components: - - rot: 3.141592653589793 rad - pos: 14.499228,-0.27377775 - parent: 60 - type: Transform -- uid: 6997 - type: SignDirectionalSec - components: - - rot: -1.5707963267948966 rad - pos: 30.494003,-21.737762 - parent: 60 - type: Transform -- uid: 6998 - type: MedkitFilled - components: - - pos: 29.57766,-48.642044 - parent: 60 - type: Transform -- uid: 6999 - type: WaterTankFull - components: - - pos: 42.5,-36.5 - parent: 60 - type: Transform -- uid: 7000 - type: ClothingUniformJumpskirtDetectiveGrey - components: - - pos: -64.59717,0.6690302 - parent: 60 - type: Transform -- uid: 7001 - type: ClothingUniformJumpskirtDetective - components: - - pos: 13.6398945,-44.59481 - parent: 60 - type: Transform -- uid: 7002 - type: WallSolid - components: - - pos: 56.5,-18.5 - parent: 60 - type: Transform -- uid: 7003 - type: MaterialHideBear - components: - - pos: 56.496033,-17.389072 - parent: 60 - type: Transform -- uid: 7004 - type: ClothingUniformColorRainbow - components: - - pos: -40.505074,-36.219357 - parent: 60 - type: Transform -- uid: 7005 - type: ClothingHeadHatWitch - components: - - pos: -40.53059,-35.657127 - parent: 60 - type: Transform -- uid: 7006 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -17.5,-11.5 - parent: 60 - type: Transform -- uid: 7007 - type: Catwalk - components: - - pos: -33.5,-32.5 - parent: 60 - type: Transform -- uid: 7008 - type: Catwalk - components: - - pos: -30.5,-32.5 - parent: 60 - type: Transform -- uid: 7009 - type: Catwalk - components: - - pos: -28.5,-32.5 - parent: 60 - type: Transform -- uid: 7010 - type: CableApcExtension - components: - - pos: -34.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7011 - type: CableHV - components: - - pos: 36.5,-72.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7012 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7013 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-17.5 - parent: 60 - type: Transform -- uid: 7014 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-28.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7015 - type: Catwalk - components: - - pos: 54.5,-22.5 - parent: 60 - type: Transform -- uid: 7016 - type: Catwalk - components: - - pos: 54.5,-21.5 - parent: 60 - type: Transform -- uid: 7017 - type: Catwalk - components: - - pos: 54.5,-20.5 - parent: 60 - type: Transform -- uid: 7018 - type: Catwalk - components: - - pos: 54.5,-19.5 - parent: 60 - type: Transform -- uid: 7019 - type: Table - components: - - pos: 56.5,-12.5 - parent: 60 - type: Transform -- uid: 7020 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-11.5 - parent: 60 - type: Transform -- uid: 7021 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-11.5 - parent: 60 - type: Transform -- uid: 7022 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-11.5 - parent: 60 - type: Transform -- uid: 7023 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-11.5 - parent: 60 - type: Transform -- uid: 7024 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-11.5 - parent: 60 - type: Transform -- uid: 7025 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-11.5 - parent: 60 - type: Transform -- uid: 7026 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-11.5 - parent: 60 - type: Transform -- uid: 7027 - type: WallSolid - components: - - pos: 39.5,-11.5 - parent: 60 - type: Transform -- uid: 7028 - type: WallSolid - components: - - pos: 38.5,-11.5 - parent: 60 - type: Transform -- uid: 7029 - type: WallReinforced - components: - - pos: -40.5,15.5 - parent: 60 - type: Transform -- uid: 7030 - type: AirSensor - components: - - pos: 43.5,-14.5 - parent: 60 - type: Transform -- uid: 7031 - type: CableMV - components: - - pos: -18.5,-12.5 - parent: 60 - type: Transform -- uid: 7032 - type: PowerCellRecharger - components: - - pos: -23.5,-9.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 7033 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7034 - type: OxygenCanister - components: - - pos: -50.5,49.5 - parent: 60 - type: Transform -- uid: 7035 - type: hydroponicsTray - components: - - pos: 31.5,-31.5 - parent: 60 - type: Transform -- uid: 7036 - type: TableWood - components: - - pos: -48.5,-19.5 - parent: 60 - type: Transform -- uid: 7037 - type: CarpetGreen - components: - - pos: -44.5,-15.5 - parent: 60 - type: Transform -- uid: 7038 - type: PlasticFlapsAirtightClear - components: - - pos: -40.5,-4.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 7039 - type: PosterContrabandFreeSyndicateEncryptionKey - components: - - pos: -34.5,-35.5 - parent: 60 - type: Transform -- uid: 7040 - type: Table - components: - - pos: 19.5,-50.5 - parent: 60 - type: Transform -- uid: 7041 - type: LockerSecurityFilled - components: - - pos: -34.5,-18.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7042 - type: DisposalPipe - components: - - pos: 44.5,-11.5 - parent: 60 - type: Transform -- uid: 7043 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -17.5,-8.5 - parent: 60 - type: Transform -- uid: 7044 - type: MedicalBed - components: - - pos: 37.5,-19.5 - parent: 60 - type: Transform -- uid: 7045 - type: ShuttersNormalOpen - components: - - pos: -35.5,-10.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6971 - type: SignalReceiver -- uid: 7046 - type: WallReinforced - components: - - pos: 8.5,-43.5 - parent: 60 - type: Transform -- uid: 7047 - type: EuphoniumInstrument - components: - - pos: 26.516676,-20.439404 - parent: 60 - type: Transform -- uid: 7048 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-15.5 - parent: 60 - type: Transform -- uid: 7049 - type: WindowReinforcedDirectional - components: - - pos: -14.5,-44.5 - parent: 60 - type: Transform -- uid: 7050 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -49.5,6.5 - parent: 60 - type: Transform -- uid: 7051 - type: FirelockGlass - components: - - pos: -40.5,-5.5 - parent: 60 - type: Transform -- uid: 7052 - type: WallSolid - components: - - pos: -46.5,-2.5 - parent: 60 - type: Transform -- uid: 7053 - type: WallReinforced - components: - - pos: -46.5,-9.5 - parent: 60 - type: Transform -- uid: 7054 - type: WallReinforced - components: - - pos: -43.5,1.5 - parent: 60 - type: Transform -- uid: 7055 - type: WallReinforced - components: - - pos: -43.5,-11.5 - parent: 60 - type: Transform -- uid: 7056 - type: Grille - components: - - pos: -39.5,-10.5 - parent: 60 - type: Transform -- uid: 7057 - type: WindoorScienceLocked - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-5.5 - parent: 60 - type: Transform -- uid: 7058 - type: WallReinforced - components: - - pos: -46.5,-11.5 - parent: 60 - type: Transform -- uid: 7059 - type: AirlockScienceGlassLocked - components: - - name: Research And Development - type: MetaData - - pos: -46.5,-5.5 - parent: 60 - type: Transform -- uid: 7060 - type: WallReinforced - components: - - pos: -44.5,-11.5 - parent: 60 - type: Transform -- uid: 7061 - type: GasThermoMachineFreezer - components: - - pos: -49.5,8.5 - parent: 60 - type: Transform -- uid: 7062 - type: CableApcExtension - components: - - pos: 14.5,4.5 - parent: 60 - type: Transform -- uid: 7063 - type: WallReinforced - components: - - pos: -48.5,5.5 - parent: 60 - type: Transform -- uid: 7064 - type: WallReinforced - components: - - pos: -41.5,-11.5 - parent: 60 - type: Transform -- uid: 7065 - type: WallReinforced - components: - - pos: -42.5,-11.5 - parent: 60 - type: Transform -- uid: 7066 - type: Table - components: - - pos: -45.5,-4.5 - parent: 60 - type: Transform -- uid: 7067 - type: Grille - components: - - pos: -47.5,6.5 - parent: 60 - type: Transform -- uid: 7068 - type: ReinforcedWindow - components: - - pos: -47.5,6.5 - parent: 60 - type: Transform -- uid: 7069 - type: Catwalk - components: - - pos: 45.5,-59.5 - parent: 60 - type: Transform -- uid: 7070 - type: SignalButton - components: - - pos: 37.5,-18.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 818 - - port: Toggle - uid: 135 - - port: Toggle - uid: 6723 - type: SignalTransmitter -- uid: 7071 - type: Window - components: - - pos: 18.5,-19.5 - parent: 60 - type: Transform -- uid: 7072 - type: Catwalk - components: - - pos: 31.5,-67.5 - parent: 60 - type: Transform -- uid: 7073 - type: WallSolidRust - components: - - pos: -63.5,5.5 - parent: 60 - type: Transform -- uid: 7074 - type: Grille - components: - - pos: -46.5,6.5 - parent: 60 - type: Transform -- uid: 7075 - type: ReinforcedWindow - components: - - pos: -46.5,6.5 - parent: 60 - type: Transform -- uid: 7076 - type: AirlockGlass - components: - - pos: 18.5,9.5 - parent: 60 - type: Transform -- uid: 7077 - type: TintedWindow - components: - - pos: 55.5,-43.5 - parent: 60 - type: Transform -- uid: 7078 - type: AirlockResearchDirectorLocked - components: - - name: Server Room - type: MetaData - - pos: -50.5,6.5 - parent: 60 - type: Transform -- uid: 7079 - type: Table - components: - - pos: -44.5,-3.5 - parent: 60 - type: Transform -- uid: 7080 - type: Table - components: - - pos: -45.5,-3.5 - parent: 60 - type: Transform -- uid: 7081 - type: Protolathe - components: - - pos: -42.5,-9.5 - parent: 60 - type: Transform -- uid: 7082 - type: Window - components: - - pos: -46.5,-7.5 - parent: 60 - type: Transform -- uid: 7083 - type: WallReinforced - components: - - pos: -41.5,15.5 - parent: 60 - type: Transform -- uid: 7084 - type: TableReinforced - components: - - pos: -40.5,-5.5 - parent: 60 - type: Transform -- uid: 7085 - type: SignRND - components: - - pos: -39.5,-8.5 - parent: 60 - type: Transform -- uid: 7086 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-3.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7088 - type: SignalReceiver -- uid: 7087 - type: WallReinforced - components: - - pos: -41.5,-2.5 - parent: 60 - type: Transform -- uid: 7088 - type: SignalButton - components: - - pos: -40.5,-8.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7086 - - port: Toggle - uid: 7132 - - port: Toggle - uid: 5560 - - port: Toggle - uid: 7131 - - port: Toggle - uid: 5597 - - port: Toggle - uid: 8161 - type: SignalTransmitter -- uid: 7089 - type: WallReinforced - components: - - pos: -40.5,1.5 - parent: 60 - type: Transform -- uid: 7090 - type: WallSolid - components: - - pos: -44.5,-2.5 - parent: 60 - type: Transform -- uid: 7091 - type: WallReinforced - components: - - pos: -46.5,-10.5 - parent: 60 - type: Transform -- uid: 7092 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-5.5 - parent: 60 - type: Transform -- uid: 7093 - type: Grille - components: - - pos: -40.5,-7.5 - parent: 60 - type: Transform -- uid: 7094 - type: ReinforcedWindow - components: - - pos: -40.5,-6.5 - parent: 60 - type: Transform -- uid: 7095 - type: ReinforcedWindow - components: - - pos: -40.5,-3.5 - parent: 60 - type: Transform -- uid: 7096 - type: ReinforcedWindow - components: - - pos: -40.5,-7.5 - parent: 60 - type: Transform -- uid: 7097 - type: WindoorScienceLocked - components: - - name: Robotics Desk - type: MetaData - - pos: -37.5,10.5 - parent: 60 - type: Transform -- uid: 7098 - type: ReinforcedWindow - components: - - pos: -39.5,-9.5 - parent: 60 - type: Transform -- uid: 7099 - type: PoweredSmallLight - components: - - pos: -32.5,5.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7100 - type: WallReinforced - components: - - pos: -58.5,-0.5 - parent: 60 - type: Transform -- uid: 7101 - type: ClosetFireFilled - components: - - pos: -61.5,-17.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7102 - type: WallSolid - components: - - pos: 44.5,-44.5 - parent: 60 - type: Transform -- uid: 7103 - type: Catwalk - components: - - pos: 22.5,-60.5 - parent: 60 - type: Transform -- uid: 7104 - type: Grille - components: - - pos: 3.5,-59.5 - parent: 60 - type: Transform -- uid: 7105 - type: WallReinforced - components: - - pos: 2.5,-74.5 - parent: 60 - type: Transform -- uid: 7106 - type: ReinforcedWindow - components: - - pos: -2.5,-59.5 - parent: 60 - type: Transform -- uid: 7107 - type: PosterContrabandBorgFancyv2 - components: - - pos: -107.5,12.5 - parent: 60 - type: Transform -- uid: 7108 - type: Catwalk - components: - - pos: 26.5,-60.5 - parent: 60 - type: Transform -- uid: 7109 - type: Catwalk - components: - - pos: 25.5,-60.5 - parent: 60 - type: Transform -- uid: 7110 - type: Grille - components: - - pos: -3.5,-62.5 - parent: 60 - type: Transform -- uid: 7111 - type: SignRedSix - components: - - pos: -56.5,21.5 - parent: 60 - type: Transform -- uid: 7112 - type: Catwalk - components: - - pos: 27.5,-60.5 - parent: 60 - type: Transform -- uid: 7113 - type: Catwalk - components: - - pos: 24.5,-60.5 - parent: 60 - type: Transform -- uid: 7114 - type: Catwalk - components: - - pos: 28.5,-60.5 - parent: 60 - type: Transform -- uid: 7115 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,49.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7116 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -44.5,22.5 - parent: 60 - type: Transform - - devices: - - 7655 - - 6593 - - 6785 - - 6661 - - 7343 - - 6789 - type: DeviceList -- uid: 7117 - type: CableApcExtension - components: - - pos: -56.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7118 - type: FirelockGlass - components: - - pos: -61.5,10.5 - parent: 60 - type: Transform -- uid: 7119 - type: Catwalk - components: - - pos: -70.5,-19.5 - parent: 60 - type: Transform -- uid: 7120 - type: PoweredSmallLight - components: - - pos: -58.5,-16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7121 - type: WallSolid - components: - - pos: 44.5,-45.5 - parent: 60 - type: Transform -- uid: 7122 - type: WallReinforced - components: - - pos: 62.5,-24.5 - parent: 60 - type: Transform -- uid: 7123 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,48.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7124 - type: APCBasic - components: - - pos: -1.5,-59.5 - parent: 60 - type: Transform -- uid: 7125 - type: AirAlarm - components: - - pos: 2.5,-59.5 - parent: 60 - type: Transform - - devices: - - 5073 - - 5061 - - 4824 - - 4825 - - 4820 - - 5089 - - 4822 - - 4821 - - 6475 - - 6417 - - 6418 - - 6474 - type: DeviceList -- uid: 7126 - type: ReinforcedWindow - components: - - pos: 3.5,-74.5 - parent: 60 - type: Transform -- uid: 7127 - type: Grille - components: - - pos: 6.5,-65.5 - parent: 60 - type: Transform -- uid: 7128 - type: APCBasic - components: - - pos: -2.5,-52.5 - parent: 60 - type: Transform -- uid: 7129 - type: WallSolid - components: - - pos: -62.5,-1.5 - parent: 60 - type: Transform -- uid: 7130 - type: Catwalk - components: - - pos: -81.5,-18.5 - parent: 60 - type: Transform -- uid: 7131 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-7.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7088 - type: SignalReceiver -- uid: 7132 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-4.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7088 - type: SignalReceiver -- uid: 7133 - type: WallReinforced - components: - - pos: -40.5,-2.5 - parent: 60 - type: Transform -- uid: 7134 - type: WallReinforced - components: - - pos: -39.5,-2.5 - parent: 60 - type: Transform -- uid: 7135 - type: WallReinforced - components: - - pos: -43.5,-2.5 - parent: 60 - type: Transform -- uid: 7136 - type: WallReinforced - components: - - pos: -42.5,-2.5 - parent: 60 - type: Transform -- uid: 7137 - type: WallReinforced - components: - - pos: -40.5,-8.5 - parent: 60 - type: Transform -- uid: 7138 - type: SignRobo - components: - - pos: -35.5,10.5 - parent: 60 - type: Transform -- uid: 7139 - type: FirelockGlass - components: - - pos: -19.5,-17.5 - parent: 60 - type: Transform -- uid: 7140 - type: WallReinforced - components: - - pos: -40.5,-11.5 - parent: 60 - type: Transform -- uid: 7141 - type: WallReinforced - components: - - pos: -39.5,-11.5 - parent: 60 - type: Transform -- uid: 7142 - type: ReinforcedWindow - components: - - pos: -36.5,10.5 - parent: 60 - type: Transform -- uid: 7143 - type: Bookshelf - components: - - pos: -50.5,-15.5 - parent: 60 - type: Transform -- uid: 7144 - type: Catwalk - components: - - pos: -77.5,-20.5 - parent: 60 - type: Transform -- uid: 7145 - type: Catwalk - components: - - pos: -85.5,-17.5 - parent: 60 - type: Transform -- uid: 7146 - type: FirelockGlass - components: - - pos: -37.5,10.5 - parent: 60 - type: Transform -- uid: 7147 - type: Catwalk - components: - - pos: -85.5,-18.5 - parent: 60 - type: Transform -- uid: 7148 - type: Catwalk - components: - - pos: -73.5,-17.5 - parent: 60 - type: Transform -- uid: 7149 - type: WallReinforced - components: - - pos: -58.5,-2.5 - parent: 60 - type: Transform -- uid: 7150 - type: Catwalk - components: - - pos: -73.5,-12.5 - parent: 60 - type: Transform -- uid: 7151 - type: Grille - components: - - pos: -91.5,-17.5 - parent: 60 - type: Transform -- uid: 7152 - type: Catwalk - components: - - pos: -77.5,-14.5 - parent: 60 - type: Transform -- uid: 7153 - type: Catwalk - components: - - pos: -85.5,-14.5 - parent: 60 - type: Transform -- uid: 7154 - type: WallSolid - components: - - pos: -39.5,-13.5 - parent: 60 - type: Transform -- uid: 7155 - type: CableHV - components: - - pos: -80.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7156 - type: Catwalk - components: - - pos: -75.5,-18.5 - parent: 60 - type: Transform -- uid: 7157 - type: hydroponicsTray - components: - - pos: 32.5,-31.5 - parent: 60 - type: Transform -- uid: 7158 - type: AcousticGuitarInstrument - components: - - desc: The letters SB are etched into the side of the guitar. - name: acoustic gortar - type: MetaData - - pos: 31.477634,-79.4623 - parent: 60 - type: Transform -- uid: 7159 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 2.5,-44.5 - parent: 60 - type: Transform -- uid: 7160 - type: Poweredlight - components: - - pos: 6.5,-44.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7161 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 14.5,-26.5 - parent: 60 - type: Transform -- uid: 7162 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7163 - type: CableHV - components: - - pos: -80.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7164 - type: Welder - components: - - pos: 3.713293,13.629839 - parent: 60 - type: Transform -- uid: 7165 - type: TableReinforced - components: - - pos: 35.5,17.5 - parent: 60 - type: Transform -- uid: 7166 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,-5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7167 - type: SolarPanel - components: - - pos: -80.5,-13.5 - parent: 60 - type: Transform -- uid: 7168 - type: WallReinforced - components: - - pos: 6.5,-43.5 - parent: 60 - type: Transform -- uid: 7169 - type: WallReinforced - components: - - pos: 5.5,-43.5 - parent: 60 - type: Transform -- uid: 7170 - type: WallReinforced - components: - - pos: 4.5,-43.5 - parent: 60 - type: Transform -- uid: 7171 - type: WallReinforced - components: - - pos: 3.5,-44.5 - parent: 60 - type: Transform -- uid: 7172 - type: WallSolid - components: - - pos: 43.5,1.5 - parent: 60 - type: Transform -- uid: 7173 - type: WallReinforced - components: - - pos: 3.5,-46.5 - parent: 60 - type: Transform -- uid: 7174 - type: ClothingNeckLGBTPin - components: - - pos: -11.221505,22.789167 - parent: 60 - type: Transform -- uid: 7175 - type: AirlockCaptainLocked - components: - - name: drone room - type: MetaData - - pos: 3.5,-45.5 - parent: 60 - type: Transform -- uid: 7176 - type: GeigerCounter - components: - - pos: 13.866224,-17.646044 - parent: 60 - type: Transform -- uid: 7177 - type: MopBucket - components: - - pos: 6.544597,-45.266922 - parent: 60 - type: Transform -- uid: 7178 - type: TableReinforced - components: - - pos: 6.5,-44.5 - parent: 60 - type: Transform -- uid: 7179 - type: TableReinforced - components: - - pos: 7.5,-44.5 - parent: 60 - type: Transform -- uid: 7180 - type: TableReinforced - components: - - pos: 7.5,-45.5 - parent: 60 - type: Transform -- uid: 7181 - type: TableReinforced - components: - - pos: 7.5,-46.5 - parent: 60 - type: Transform -- uid: 7182 - type: TableReinforced - components: - - pos: 6.5,-46.5 - parent: 60 - type: Transform -- uid: 7183 - type: TableReinforced - components: - - pos: 5.5,-46.5 - parent: 60 - type: Transform -- uid: 7184 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-47.5 - parent: 60 - type: Transform -- uid: 7185 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-51.5 - parent: 60 - type: Transform -- uid: 7186 - type: CableApcStack - components: - - pos: 5.500983,-46.47951 - parent: 60 - type: Transform -- uid: 7187 - type: CableApcStack - components: - - pos: 5.500983,-46.47951 - parent: 60 - type: Transform -- uid: 7188 - type: CableApcStack - components: - - pos: 5.500983,-46.47951 - parent: 60 - type: Transform -- uid: 7189 - type: CableMVStack - components: - - pos: 6.032233,-46.51076 - parent: 60 - type: Transform -- uid: 7190 - type: CableMVStack - components: - - pos: 6.032233,-46.51076 - parent: 60 - type: Transform -- uid: 7191 - type: CableMVStack - components: - - pos: 6.032233,-46.51076 - parent: 60 - type: Transform -- uid: 7192 - type: CableHVStack - components: - - pos: 6.563483,-46.526386 - parent: 60 - type: Transform -- uid: 7193 - type: CableHVStack - components: - - pos: 6.563483,-46.526386 - parent: 60 - type: Transform -- uid: 7194 - type: CableHVStack - components: - - pos: 6.563483,-46.526386 - parent: 60 - type: Transform -- uid: 7195 - type: PosterLegitJustAWeekAway - components: - - pos: 2.5,-7.5 - parent: 60 - type: Transform -- uid: 7196 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 18.5,-30.5 - parent: 60 - type: Transform -- uid: 7197 - type: ChairWood - components: - - pos: 20.5,-28.5 - parent: 60 - type: Transform -- uid: 7198 - type: WaterTankFull - components: - - pos: 5.5,-44.5 - parent: 60 - type: Transform -- uid: 7199 - type: MopItem - components: - - pos: 7.204108,-44.51076 - parent: 60 - type: Transform -- uid: 7200 - type: MopItem - components: - - pos: 7.438483,-44.620136 - parent: 60 - type: Transform -- uid: 7201 - type: TrashBag - components: - - pos: 7.500983,-44.432636 - parent: 60 - type: Transform -- uid: 7202 - type: TrashBag - components: - - pos: 7.500983,-44.432636 - parent: 60 - type: Transform -- uid: 7203 - type: SignDrones - components: - - pos: 3.5,-46.5 - parent: 60 - type: Transform -- uid: 7204 - type: PosterContrabandFreeDrone - components: - - pos: 6.5,-43.5 - parent: 60 - type: Transform -- uid: 7205 - type: SheetSteel - components: - - pos: 7.513824,-45.156796 - parent: 60 - type: Transform -- uid: 7206 - type: SheetSteel - components: - - pos: 7.513824,-45.156796 - parent: 60 - type: Transform -- uid: 7207 - type: SheetPlasteel - components: - - pos: 7.560699,-45.42242 - parent: 60 - type: Transform -- uid: 7208 - type: SheetPlasteel - components: - - pos: 7.560699,-45.42242 - parent: 60 - type: Transform -- uid: 7209 - type: PartRodMetal - components: - - pos: 7.513824,-45.76617 - parent: 60 - type: Transform -- uid: 7210 - type: PartRodMetal - components: - - pos: 7.513824,-45.76617 - parent: 60 - type: Transform -- uid: 7211 - type: GasPipeStraight - components: - - pos: -49.5,-1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7212 - type: Table - components: - - pos: 35.5,-35.5 - parent: 60 - type: Transform -- uid: 7213 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 60 - type: Transform -- uid: 7214 - type: GasPipeStraight - components: - - pos: -23.5,-24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7215 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7216 - type: VendingMachineChefvend - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,-37.5 - parent: 60 - type: Transform -- uid: 7217 - type: BoxLightMixed - components: - - pos: -5.2174664,-28.395233 - parent: 60 - type: Transform -- uid: 7218 - type: CarpetGreen - components: - - pos: -48.5,-20.5 - parent: 60 - type: Transform -- uid: 7219 - type: DisposalUnit - components: - - pos: -22.5,-26.5 - parent: 60 - type: Transform -- uid: 7220 - type: WallSolid - components: - - pos: -17.5,3.5 - parent: 60 - type: Transform -- uid: 7221 - type: VendingMachineViroDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 52.5,-31.5 - parent: 60 - type: Transform -- uid: 7222 - type: SprayBottleSpaceCleaner - components: - - pos: 7.3779182,-44.307762 - parent: 60 - type: Transform -- uid: 7223 - type: SprayBottleSpaceCleaner - components: - - pos: 7.2997932,-44.385887 - parent: 60 - type: Transform -- uid: 7224 - type: FoodBurgerRobot - components: - - pos: 7.640595,-46.05756 - parent: 60 - type: Transform -- uid: 7225 - type: WallWeaponCapacitorRecharger - components: - - pos: -23.5,-1.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 7226 - type: SprayBottleSpaceCleaner - components: - - pos: 7.1747932,-44.323387 - parent: 60 - type: Transform -- uid: 7227 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -82.5,-26.5 - parent: 60 - type: Transform -- uid: 7228 - type: SpawnMobDrone - components: - - pos: 5.5,-45.5 - parent: 60 - type: Transform -- uid: 7229 - type: SpawnMobDrone - components: - - pos: 5.5,-45.5 - parent: 60 - type: Transform -- uid: 7230 - type: SpawnMobDrone - components: - - pos: 5.5,-45.5 - parent: 60 - type: Transform -- uid: 7231 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-10.5 - parent: 60 - type: Transform -- uid: 7232 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 60 - type: Transform -- uid: 7233 - type: RandomSpawner - components: - - pos: -14.5,-40.5 - parent: 60 - type: Transform -- uid: 7234 - type: FoodBowlBigTrash - components: - - pos: -14.52124,-43.447884 - parent: 60 - type: Transform -- uid: 7235 - type: FoodTinMRETrash - components: - - pos: -22.847633,-45.21351 - parent: 60 - type: Transform -- uid: 7236 - type: DisposalUnit - components: - - pos: 19.5,-13.5 - parent: 60 - type: Transform -- uid: 7237 - type: Dresser - components: - - pos: 19.5,-12.5 - parent: 60 - type: Transform -- uid: 7238 - type: AirlockTheatreLocked - components: - - name: Theatre - type: MetaData - - pos: 27.5,-14.5 - parent: 60 - type: Transform -- uid: 7239 - type: Table - components: - - pos: 24.5,-13.5 - parent: 60 - type: Transform -- uid: 7240 - type: TableWood - components: - - pos: 23.5,-13.5 - parent: 60 - type: Transform -- uid: 7241 - type: ViolinInstrument - components: - - pos: 24.330286,-13.4236555 - parent: 60 - type: Transform -- uid: 7242 - type: XylophoneInstrument - components: - - pos: 23.533411,-13.4549055 - parent: 60 - type: Transform -- uid: 7243 - type: RubberStampMime - components: - - pos: 27.742582,-12.3142805 - parent: 60 - type: Transform -- uid: 7244 - type: WallReinforced - components: - - pos: 2.5,-59.5 - parent: 60 - type: Transform -- uid: 7245 - type: ReinforcedWindow - components: - - pos: -50.5,-35.5 - parent: 60 - type: Transform -- uid: 7246 - type: ReinforcedWindow - components: - - pos: -52.5,-34.5 - parent: 60 - type: Transform -- uid: 7247 - type: ReinforcedWindow - components: - - pos: -49.5,-35.5 - parent: 60 - type: Transform -- uid: 7248 - type: ReinforcedWindow - components: - - pos: -45.5,-35.5 - parent: 60 - type: Transform -- uid: 7249 - type: ReinforcedWindow - components: - - pos: -44.5,-35.5 - parent: 60 - type: Transform -- uid: 7250 - type: WaterCooler - components: - - pos: -43.5,-34.5 - parent: 60 - type: Transform -- uid: 7251 - type: ReinforcedWindow - components: - - pos: -43.5,-35.5 - parent: 60 - type: Transform -- uid: 7252 - type: ReinforcedWindow - components: - - pos: -45.5,-27.5 - parent: 60 - type: Transform -- uid: 7253 - type: ReinforcedWindow - components: - - pos: -49.5,-27.5 - parent: 60 - type: Transform -- uid: 7254 - type: WallReinforced - components: - - pos: -46.5,-27.5 - parent: 60 - type: Transform -- uid: 7255 - type: WallReinforced - components: - - pos: -46.5,-35.5 - parent: 60 - type: Transform -- uid: 7256 - type: Grille - components: - - pos: -50.5,-35.5 - parent: 60 - type: Transform -- uid: 7257 - type: Grille - components: - - pos: -51.5,-35.5 - parent: 60 - type: Transform -- uid: 7258 - type: Grille - components: - - pos: -52.5,-34.5 - parent: 60 - type: Transform -- uid: 7259 - type: Grille - components: - - pos: -52.5,-33.5 - parent: 60 - type: Transform -- uid: 7260 - type: SolarPanel - components: - - pos: -72.5,-24.5 - parent: 60 - type: Transform -- uid: 7261 - type: GrilleBroken - components: - - pos: -74.5,-10.5 - parent: 60 - type: Transform -- uid: 7262 - type: Grille - components: - - pos: -52.5,-29.5 - parent: 60 - type: Transform -- uid: 7263 - type: Grille - components: - - pos: -52.5,-28.5 - parent: 60 - type: Transform -- uid: 7264 - type: Grille - components: - - pos: -51.5,-27.5 - parent: 60 - type: Transform -- uid: 7265 - type: Grille - components: - - pos: -50.5,-27.5 - parent: 60 - type: Transform -- uid: 7266 - type: Grille - components: - - pos: -49.5,-27.5 - parent: 60 - type: Transform -- uid: 7267 - type: Grille - components: - - pos: -45.5,-27.5 - parent: 60 - type: Transform -- uid: 7268 - type: Grille - components: - - pos: -45.5,-35.5 - parent: 60 - type: Transform -- uid: 7269 - type: Grille - components: - - pos: -44.5,-35.5 - parent: 60 - type: Transform -- uid: 7270 - type: Grille - components: - - pos: -43.5,-35.5 - parent: 60 - type: Transform -- uid: 7271 - type: Grille - components: - - pos: -74.5,-26.5 - parent: 60 - type: Transform -- uid: 7272 - type: Grille - components: - - pos: -78.5,-10.5 - parent: 60 - type: Transform -- uid: 7273 - type: Grille - components: - - pos: -78.5,-26.5 - parent: 60 - type: Transform -- uid: 7274 - type: WallSolid - components: - - pos: -65.5,44.5 - parent: 60 - type: Transform -- uid: 7275 - type: CableHV - components: - - pos: -74.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7276 - type: Catwalk - components: - - pos: -60.5,-26.5 - parent: 60 - type: Transform -- uid: 7277 - type: CableHV - components: - - pos: -86.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7278 - type: SubstationBasic - components: - - name: Abandoned Docking Sub - type: MetaData - - pos: -47.5,-28.5 - parent: 60 - type: Transform -- uid: 7279 - type: WallReinforced - components: - - pos: -48.5,-28.5 - parent: 60 - type: Transform -- uid: 7280 - type: WallReinforced - components: - - pos: -46.5,-28.5 - parent: 60 - type: Transform -- uid: 7281 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-29.5 - parent: 60 - type: Transform -- uid: 7282 - type: BoxSterileMask - components: - - pos: 39.184265,-10.335866 - parent: 60 - type: Transform -- uid: 7283 - type: SignCryogenicsMed - components: - - pos: -49.5,6.5 - parent: 60 - type: Transform -- uid: 7284 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7285 - type: GasPipeBend - components: - - pos: -24.5,-18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7286 - type: SignDisposalSpace - components: - - pos: -15.5,-38.5 - parent: 60 - type: Transform -- uid: 7287 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-34.5 - parent: 60 - type: Transform -- uid: 7288 - type: PoweredlightSodium - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-29.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7289 - type: PoweredlightSodium - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-33.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7290 - type: Catwalk - components: - - pos: -69.5,-25.5 - parent: 60 - type: Transform -- uid: 7291 - type: WindoorSecure - components: - - rot: 3.141592653589793 rad - pos: -47.5,-33.5 - parent: 60 - type: Transform -- uid: 7292 - type: WindowTintedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-34.5 - parent: 60 - type: Transform -- uid: 7293 - type: Carpet - components: - - pos: -26.5,-29.5 - parent: 60 - type: Transform -- uid: 7294 - type: Table - components: - - pos: 19.5,-45.5 - parent: 60 - type: Transform -- uid: 7295 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-33.5 - parent: 60 - type: Transform -- uid: 7296 - type: WindowTintedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-33.5 - parent: 60 - type: Transform -- uid: 7297 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -45.5,-34.5 - parent: 60 - type: Transform -- uid: 7298 - type: Chair - components: - - pos: -45.5,-32.5 - parent: 60 - type: Transform -- uid: 7299 - type: Chair - components: - - pos: -44.5,-32.5 - parent: 60 - type: Transform -- uid: 7300 - type: WallReinforced - components: - - pos: -52.5,48.5 - parent: 60 - type: Transform -- uid: 7301 - type: WallReinforced - components: - - pos: -53.5,48.5 - parent: 60 - type: Transform -- uid: 7302 - type: Chair - components: - - pos: -51.5,-28.5 - parent: 60 - type: Transform -- uid: 7303 - type: Chair - components: - - pos: -50.5,-28.5 - parent: 60 - type: Transform -- uid: 7304 - type: Chair - components: - - pos: -45.5,-28.5 - parent: 60 - type: Transform -- uid: 7305 - type: Chair - components: - - pos: -44.5,-28.5 - parent: 60 - type: Transform -- uid: 7306 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -44.5,-30.5 - parent: 60 - type: Transform -- uid: 7307 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -43.5,-30.5 - parent: 60 - type: Transform -- uid: 7308 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-33.5 - parent: 60 - type: Transform -- uid: 7309 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -46.5,-30.5 - parent: 60 - type: Transform -- uid: 7310 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-33.5 - parent: 60 - type: Transform -- uid: 7311 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -51.5,-32.5 - parent: 60 - type: Transform -- uid: 7312 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-34.5 - parent: 60 - type: Transform -- uid: 7313 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-34.5 - parent: 60 - type: Transform -- uid: 7314 - type: Grille - components: - - pos: -82.5,-10.5 - parent: 60 - type: Transform -- uid: 7315 - type: ClothingHeadHatCorpsoft - components: - - pos: -50.550743,-28.49725 - parent: 60 - type: Transform -- uid: 7316 - type: AirlockExternalGlass - components: - - pos: -47.5,-35.5 - parent: 60 - type: Transform -- uid: 7317 - type: AirlockMaintLocked - components: - - pos: -43.5,-27.5 - parent: 60 - type: Transform -- uid: 7318 - type: ReinforcedWindow - components: - - pos: -46.5,-39.5 - parent: 60 - type: Transform -- uid: 7319 - type: ReinforcedWindow - components: - - pos: -48.5,-39.5 - parent: 60 - type: Transform -- uid: 7320 - type: ReinforcedWindow - components: - - pos: -48.5,-38.5 - parent: 60 - type: Transform -- uid: 7321 - type: ReinforcedWindow - components: - - pos: -48.5,-37.5 - parent: 60 - type: Transform -- uid: 7322 - type: ReinforcedWindow - components: - - pos: -48.5,-36.5 - parent: 60 - type: Transform -- uid: 7323 - type: ReinforcedWindow - components: - - pos: -46.5,-38.5 - parent: 60 - type: Transform -- uid: 7324 - type: ReinforcedWindow - components: - - pos: -46.5,-37.5 - parent: 60 - type: Transform -- uid: 7325 - type: ReinforcedWindow - components: - - pos: -46.5,-36.5 - parent: 60 - type: Transform -- uid: 7326 - type: Grille - components: - - pos: -48.5,-38.5 - parent: 60 - type: Transform -- uid: 7327 - type: Grille - components: - - pos: -48.5,-37.5 - parent: 60 - type: Transform -- uid: 7328 - type: Grille - components: - - pos: -48.5,-36.5 - parent: 60 - type: Transform -- uid: 7329 - type: Grille - components: - - pos: -46.5,-38.5 - parent: 60 - type: Transform -- uid: 7330 - type: Grille - components: - - pos: -46.5,-37.5 - parent: 60 - type: Transform -- uid: 7331 - type: Grille - components: - - pos: -46.5,-36.5 - parent: 60 - type: Transform -- uid: 7332 - type: AirlockShuttle - components: - - pos: -47.5,-39.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 7333 - type: ReinforcedPlasmaWindow - components: - - pos: -53.5,49.5 - parent: 60 - type: Transform -- uid: 7334 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -53.5,49.5 - parent: 60 - type: Transform -- uid: 7335 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,48.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7336 - type: WallReinforced - components: - - pos: -49.5,47.5 - parent: 60 - type: Transform -- uid: 7337 - type: AtmosFixOxygenMarker - components: - - pos: -51.5,49.5 - parent: 60 - type: Transform -- uid: 7338 - type: AtmosFixOxygenMarker - components: - - pos: -52.5,49.5 - parent: 60 - type: Transform -- uid: 7339 - type: AtmosFixNitrogenMarker - components: - - pos: -50.5,51.5 - parent: 60 - type: Transform -- uid: 7340 - type: AtmosFixNitrogenMarker - components: - - pos: -52.5,51.5 - parent: 60 - type: Transform -- uid: 7341 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: -52.5,51.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 7342 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,51.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7343 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -42.5,22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7344 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-63.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 7345 - type: AirlockExternalGlass - components: - - pos: -3.5,-70.5 - parent: 60 - type: Transform -- uid: 7346 - type: ReinforcedWindow - components: - - pos: -5.5,-71.5 - parent: 60 - type: Transform -- uid: 7347 - type: GasPassiveVent - components: - - pos: -51.5,49.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 7348 - type: WallReinforced - components: - - pos: -49.5,46.5 - parent: 60 - type: Transform -- uid: 7349 - type: WallReinforced - components: - - pos: -50.5,46.5 - parent: 60 - type: Transform -- uid: 7350 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -53.5,47.5 - parent: 60 - type: Transform -- uid: 7351 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,50.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7352 - type: WallReinforced - components: - - pos: 25.5,-1.5 - parent: 60 - type: Transform -- uid: 7353 - type: ReinforcedWindow - components: - - pos: 20.5,0.5 - parent: 60 - type: Transform -- uid: 7354 - type: WallReinforced - components: - - pos: 26.5,-1.5 - parent: 60 - type: Transform -- uid: 7355 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,50.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7356 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,50.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7357 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -51.5,48.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7358 - type: AirlockEngineeringLocked - components: - - name: Telecomms - type: MetaData - - pos: 23.5,6.5 - parent: 60 - type: Transform -- uid: 7359 - type: CableMV - components: - - pos: -13.5,-54.5 - parent: 60 - type: Transform -- uid: 7360 - type: CableMV - components: - - pos: -14.5,-54.5 - parent: 60 - type: Transform -- uid: 7361 - type: ReinforcedWindow - components: - - pos: -0.5,-80.5 - parent: 60 - type: Transform -- uid: 7362 - type: AirlockExternalGlassLocked - components: - - pos: 0.5,-78.5 - parent: 60 - type: Transform -- uid: 7363 - type: CableMV - components: - - pos: -15.5,-52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7364 - type: AirlockExternalGlassShuttleLocked - components: - - pos: 0.5,-80.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 7365 - type: ReinforcedWindow - components: - - pos: 3.5,-76.5 - parent: 60 - type: Transform -- uid: 7366 - type: CableApcExtension - components: - - pos: -14.5,-54.5 - parent: 60 - type: Transform -- uid: 7367 - type: GasPipeStraight - components: - - pos: 1.5,-75.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7368 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -0.5,-76.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7369 - type: CableApcExtension - components: - - pos: -18.5,-54.5 - parent: 60 - type: Transform -- uid: 7370 - type: CableApcExtension - components: - - pos: -19.5,-54.5 - parent: 60 - type: Transform -- uid: 7371 - type: CableApcExtension - components: - - pos: -17.5,-54.5 - parent: 60 - type: Transform -- uid: 7372 - type: CableApcExtension - components: - - pos: -15.5,-53.5 - parent: 60 - type: Transform -- uid: 7373 - type: CableApcExtension - components: - - pos: -15.5,-54.5 - parent: 60 - type: Transform -- uid: 7374 - type: CableApcExtension - components: - - pos: -15.5,-55.5 - parent: 60 - type: Transform -- uid: 7375 - type: ReinforcedWindow - components: - - pos: 2.5,-78.5 - parent: 60 - type: Transform -- uid: 7376 - type: ReinforcedWindow - components: - - pos: -1.5,-78.5 - parent: 60 - type: Transform -- uid: 7377 - type: ReinforcedWindow - components: - - pos: 1.5,-78.5 - parent: 60 - type: Transform -- uid: 7378 - type: CableApcExtension - components: - - pos: -13.5,-54.5 - parent: 60 - type: Transform -- uid: 7379 - type: CableApcExtension - components: - - pos: -12.5,-54.5 - parent: 60 - type: Transform -- uid: 7380 - type: CableApcExtension - components: - - pos: -11.5,-54.5 - parent: 60 - type: Transform -- uid: 7381 - type: CableApcExtension - components: - - pos: -10.5,-54.5 - parent: 60 - type: Transform -- uid: 7382 - type: GasPipeStraight - components: - - pos: -0.5,-74.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7383 - type: GasPipeStraight - components: - - pos: -0.5,-75.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7384 - type: Grille - components: - - pos: 2.5,-78.5 - parent: 60 - type: Transform -- uid: 7385 - type: Grille - components: - - pos: 3.5,-77.5 - parent: 60 - type: Transform -- uid: 7386 - type: WallReinforced - components: - - pos: -2.5,-78.5 - parent: 60 - type: Transform -- uid: 7387 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 1.5,-76.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7388 - type: CableApcExtension - components: - - pos: -15.5,-52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7389 - type: ReinforcedWindow - components: - - pos: -2.5,-75.5 - parent: 60 - type: Transform -- uid: 7390 - type: ReinforcedWindow - components: - - pos: 3.5,-77.5 - parent: 60 - type: Transform -- uid: 7391 - type: ReinforcedWindow - components: - - pos: -0.5,-79.5 - parent: 60 - type: Transform -- uid: 7392 - type: ReinforcedWindow - components: - - pos: -0.5,-78.5 - parent: 60 - type: Transform -- uid: 7393 - type: ReinforcedWindow - components: - - pos: 1.5,-80.5 - parent: 60 - type: Transform -- uid: 7394 - type: Grille - components: - - pos: -2.5,-75.5 - parent: 60 - type: Transform -- uid: 7395 - type: Grille - components: - - pos: -1.5,-78.5 - parent: 60 - type: Transform -- uid: 7396 - type: Grille - components: - - pos: -0.5,-78.5 - parent: 60 - type: Transform -- uid: 7397 - type: Grille - components: - - pos: -0.5,-79.5 - parent: 60 - type: Transform -- uid: 7398 - type: Grille - components: - - pos: -0.5,-80.5 - parent: 60 - type: Transform -- uid: 7399 - type: Grille - components: - - pos: 1.5,-80.5 - parent: 60 - type: Transform -- uid: 7400 - type: Grille - components: - - pos: 1.5,-79.5 - parent: 60 - type: Transform -- uid: 7401 - type: CableApcExtension - components: - - pos: -2.5,-54.5 - parent: 60 - type: Transform -- uid: 7402 - type: CableApcExtension - components: - - pos: -2.5,-55.5 - parent: 60 - type: Transform -- uid: 7403 - type: CableApcExtension - components: - - pos: -1.5,-54.5 - parent: 60 - type: Transform -- uid: 7404 - type: CableApcExtension - components: - - pos: -0.5,-54.5 - parent: 60 - type: Transform -- uid: 7405 - type: CableApcExtension - components: - - pos: 2.5,-54.5 - parent: 60 - type: Transform -- uid: 7406 - type: CableApcExtension - components: - - pos: 3.5,-54.5 - parent: 60 - type: Transform -- uid: 7407 - type: CableApcExtension - components: - - pos: 0.5,-54.5 - parent: 60 - type: Transform -- uid: 7408 - type: CableApcExtension - components: - - pos: 1.5,-54.5 - parent: 60 - type: Transform -- uid: 7409 - type: ReinforcedWindow - components: - - pos: -2.5,-77.5 - parent: 60 - type: Transform -- uid: 7410 - type: ReinforcedWindow - components: - - pos: -2.5,-76.5 - parent: 60 - type: Transform -- uid: 7411 - type: TableReinforced - components: - - pos: -113.5,13.5 - parent: 60 - type: Transform -- uid: 7412 - type: PottedPlantBioluminscent - components: - - pos: -108.5,13.5 - parent: 60 - type: Transform -- uid: 7413 - type: BaseComputer - components: - - pos: -113.5,11.5 - parent: 60 - type: Transform -- uid: 7414 - type: PowerCellRecharger - components: - - pos: -54.5,14.5 - parent: 60 - type: Transform -- uid: 7415 - type: ReinforcedWindow - components: - - pos: -2.5,-74.5 - parent: 60 - type: Transform -- uid: 7416 - type: ComputerTelevision - components: - - pos: -55.5,14.5 - parent: 60 - type: Transform -- uid: 7417 - type: ReinforcedWindow - components: - - pos: -5.5,-69.5 - parent: 60 - type: Transform -- uid: 7418 - type: ReinforcedWindow - components: - - pos: -4.5,-71.5 - parent: 60 - type: Transform -- uid: 7419 - type: ReinforcedWindow - components: - - pos: -3.5,-71.5 - parent: 60 - type: Transform -- uid: 7420 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-66.5 - parent: 60 - type: Transform -- uid: 7421 - type: RandomVendingSnacks - components: - - pos: -3.5,-65.5 - parent: 60 - type: Transform -- uid: 7422 - type: PottedPlantRandom - components: - - pos: 4.5,-68.5 - parent: 60 - type: Transform -- uid: 7423 - type: DisposalUnit - components: - - pos: -3.5,-68.5 - parent: 60 - type: Transform -- uid: 7424 - type: Grille - components: - - pos: -5.5,-66.5 - parent: 60 - type: Transform -- uid: 7425 - type: Grille - components: - - pos: -5.5,-65.5 - parent: 60 - type: Transform -- uid: 7426 - type: Grille - components: - - pos: -4.5,-69.5 - parent: 60 - type: Transform -- uid: 7427 - type: Grille - components: - - pos: -3.5,-71.5 - parent: 60 - type: Transform -- uid: 7428 - type: Grille - components: - - pos: -48.5,-39.5 - parent: 60 - type: Transform -- uid: 7429 - type: Grille - components: - - pos: -46.5,-39.5 - parent: 60 - type: Transform -- uid: 7430 - type: Grille - components: - - pos: -5.5,-64.5 - parent: 60 - type: Transform -- uid: 7431 - type: RandomVendingDrinks - components: - - pos: -3.5,-66.5 - parent: 60 - type: Transform -- uid: 7432 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-67.5 - parent: 60 - type: Transform -- uid: 7433 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-67.5 - parent: 60 - type: Transform -- uid: 7434 - type: PottedPlantRandom - components: - - pos: 4.5,-65.5 - parent: 60 - type: Transform -- uid: 7435 - type: Grille - components: - - pos: -3.5,-69.5 - parent: 60 - type: Transform -- uid: 7436 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-66.5 - parent: 60 - type: Transform -- uid: 7437 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-65.5 - parent: 60 - type: Transform -- uid: 7438 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-65.5 - parent: 60 - type: Transform -- uid: 7439 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-66.5 - parent: 60 - type: Transform -- uid: 7440 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-67.5 - parent: 60 - type: Transform -- uid: 7441 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-68.5 - parent: 60 - type: Transform -- uid: 7442 - type: ReinforcedWindow - components: - - pos: -3.5,-64.5 - parent: 60 - type: Transform -- uid: 7443 - type: WindoorCommandLocked - components: - - pos: -109.5,11.5 - parent: 60 - type: Transform -- uid: 7444 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -110.5,11.5 - parent: 60 - type: Transform -- uid: 7445 - type: ReinforcedWindow - components: - - pos: -4.5,-64.5 - parent: 60 - type: Transform -- uid: 7446 - type: ReinforcedWindow - components: - - pos: -5.5,-64.5 - parent: 60 - type: Transform -- uid: 7447 - type: ReinforcedWindow - components: - - pos: -5.5,-62.5 - parent: 60 - type: Transform -- uid: 7448 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-68.5 - parent: 60 - type: Transform -- uid: 7449 - type: ReinforcedWindow - components: - - pos: -4.5,-62.5 - parent: 60 - type: Transform -- uid: 7450 - type: ReinforcedWindow - components: - - pos: -3.5,-62.5 - parent: 60 - type: Transform -- uid: 7451 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-67.5 - parent: 60 - type: Transform -- uid: 7452 - type: ReinforcedWindow - components: - - pos: -4.5,-69.5 - parent: 60 - type: Transform -- uid: 7453 - type: Grille - components: - - pos: -5.5,-69.5 - parent: 60 - type: Transform -- uid: 7454 - type: Grille - components: - - pos: -5.5,-68.5 - parent: 60 - type: Transform -- uid: 7455 - type: Grille - components: - - pos: -5.5,-67.5 - parent: 60 - type: Transform -- uid: 7456 - type: WindoorCommandLocked - components: - - pos: -113.5,11.5 - parent: 60 - type: Transform -- uid: 7457 - type: Grille - components: - - pos: -2.5,-59.5 - parent: 60 - type: Transform -- uid: 7458 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7459 - type: WallReinforced - components: - - pos: -1.5,-59.5 - parent: 60 - type: Transform -- uid: 7460 - type: Grille - components: - - pos: -2.5,-77.5 - parent: 60 - type: Transform -- uid: 7461 - type: Grille - components: - - pos: -2.5,-76.5 - parent: 60 - type: Transform -- uid: 7462 - type: ReinforcedWindow - components: - - pos: 3.5,-75.5 - parent: 60 - type: Transform -- uid: 7463 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7464 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7465 - type: PosterContrabandKosmicheskayaStantsiya - components: - - pos: -42.5,-33.5 - parent: 60 - type: Transform -- uid: 7466 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-58.5 - parent: 60 - type: Transform -- uid: 7467 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-60.5 - parent: 60 - type: Transform -- uid: 7468 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-64.5 - parent: 60 - type: Transform -- uid: 7469 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-67.5 - parent: 60 - type: Transform -- uid: 7470 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-69.5 - parent: 60 - type: Transform -- uid: 7471 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-57.5 - parent: 60 - type: Transform -- uid: 7472 - type: FirelockGlass - components: - - pos: 18.5,-22.5 - parent: 60 - type: Transform -- uid: 7473 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7474 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-67.5 - parent: 60 - type: Transform -- uid: 7475 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-65.5 - parent: 60 - type: Transform -- uid: 7476 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7477 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-64.5 - parent: 60 - type: Transform -- uid: 7478 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7479 - type: AirAlarm - components: - - pos: 24.5,-21.5 - parent: 60 - type: Transform - - devices: - - 21501 - - 2456 - - 2455 - - 2454 - - 5204 - - 4791 - - 7472 - - 6490 - - 6561 - - 6489 - - 7630 - - 9160 - - 275 - - 2563 - - 2560 - type: DeviceList -- uid: 7480 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-56.5 - parent: 60 - type: Transform -- uid: 7481 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-56.5 - parent: 60 - type: Transform -- uid: 7482 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-62.5 - parent: 60 - type: Transform -- uid: 7483 - type: PottedPlantBioluminscent - components: - - pos: -114.5,13.5 - parent: 60 - type: Transform -- uid: 7484 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 0.5,-56.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7485 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-55.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7486 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-64.5 - parent: 60 - type: Transform -- uid: 7487 - type: ReinforcedWindow - components: - - pos: 13.5,-53.5 - parent: 60 - type: Transform -- uid: 7488 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7489 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-65.5 - parent: 60 - type: Transform -- uid: 7490 - type: TableWood - components: - - pos: 19.5,-33.5 - parent: 60 - type: Transform -- uid: 7491 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-31.5 - parent: 60 - type: Transform -- uid: 7492 - type: ChairWood - components: - - pos: 19.5,-28.5 - parent: 60 - type: Transform -- uid: 7493 - type: TableWood - components: - - pos: 20.5,-29.5 - parent: 60 - type: Transform -- uid: 7494 - type: TableWood - components: - - pos: 19.5,-29.5 - parent: 60 - type: Transform -- uid: 7495 - type: WallSolid - components: - - pos: 17.5,-39.5 - parent: 60 - type: Transform -- uid: 7496 - type: PottedPlant2 - components: - - pos: 21.498503,-37.75518 - parent: 60 - type: Transform -- uid: 7497 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-60.5 - parent: 60 - type: Transform -- uid: 7498 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-60.5 - parent: 60 - type: Transform -- uid: 7499 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-68.5 - parent: 60 - type: Transform -- uid: 7500 - type: WindowReinforcedDirectional - components: - - pos: -109.5,12.5 - parent: 60 - type: Transform -- uid: 7501 - type: TableReinforced - components: - - pos: -110.5,13.5 - parent: 60 - type: Transform -- uid: 7502 - type: CableApcExtension - components: - - pos: -2.5,-69.5 - parent: 60 - type: Transform -- uid: 7503 - type: CableApcExtension - components: - - pos: -1.5,-59.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7504 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-53.5 - parent: 60 - type: Transform -- uid: 7505 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -114.5,11.5 - parent: 60 - type: Transform -- uid: 7506 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-55.5 - parent: 60 - type: Transform -- uid: 7507 - type: TableReinforced - components: - - pos: -112.5,13.5 - parent: 60 - type: Transform -- uid: 7508 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-53.5 - parent: 60 - type: Transform -- uid: 7509 - type: PottedPlantRandom - components: - - pos: -1.5,-64.5 - parent: 60 - type: Transform -- uid: 7510 - type: CableMV - components: - - pos: 0.5,-53.5 - parent: 60 - type: Transform -- uid: 7511 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -51.5,50.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7512 - type: AirlockExternalGlass - components: - - pos: -3.5,-63.5 - parent: 60 - type: Transform -- uid: 7513 - type: Grille - components: - - pos: -5.5,-56.5 - parent: 60 - type: Transform -- uid: 7514 - type: SignRedThree - components: - - pos: -44.5,25.5 - parent: 60 - type: Transform -- uid: 7515 - type: CableApcExtension - components: - - pos: -2.5,-65.5 - parent: 60 - type: Transform -- uid: 7516 - type: CableApcExtension - components: - - pos: -2.5,-67.5 - parent: 60 - type: Transform -- uid: 7517 - type: CableApcExtension - components: - - pos: -0.5,-62.5 - parent: 60 - type: Transform -- uid: 7518 - type: CableApcExtension - components: - - pos: -2.5,-71.5 - parent: 60 - type: Transform -- uid: 7519 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -2.5,-63.5 - parent: 60 - type: Transform -- uid: 7520 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-61.5 - parent: 60 - type: Transform -- uid: 7521 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-55.5 - parent: 60 - type: Transform -- uid: 7522 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-55.5 - parent: 60 - type: Transform -- uid: 7523 - type: ClothingShoesBootsLaceup - components: - - pos: -61.4833,-15.8176155 - parent: 60 - type: Transform -- uid: 7524 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -50.5,-32.5 - parent: 60 - type: Transform -- uid: 7525 - type: Grille - components: - - pos: 59.5,19.5 - parent: 60 - type: Transform -- uid: 7526 - type: Grille - components: - - pos: 59.5,20.5 - parent: 60 - type: Transform -- uid: 7527 - type: Grille - components: - - pos: 59.5,21.5 - parent: 60 - type: Transform -- uid: 7528 - type: Grille - components: - - pos: 59.5,22.5 - parent: 60 - type: Transform -- uid: 7529 - type: Grille - components: - - pos: 59.5,23.5 - parent: 60 - type: Transform -- uid: 7530 - type: Grille - components: - - pos: 59.5,24.5 - parent: 60 - type: Transform -- uid: 7531 - type: Grille - components: - - pos: 59.5,25.5 - parent: 60 - type: Transform -- uid: 7532 - type: Grille - components: - - pos: 59.5,26.5 - parent: 60 - type: Transform -- uid: 7533 - type: Grille - components: - - pos: 59.5,27.5 - parent: 60 - type: Transform -- uid: 7534 - type: SignSpace - components: - - pos: -52.5,-30.5 - parent: 60 - type: Transform -- uid: 7535 - type: SignSpace - components: - - pos: -46.5,-35.5 - parent: 60 - type: Transform -- uid: 7536 - components: - - name: Syndi Puddle CS108 - type: MetaData - - pos: -47.5992,-42.460846 - parent: 943 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAAWAAAAFgAAABYAAABeAAAAFgAAABYAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAABYAAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAFgAAABYAAABbAAAAWwAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAQAAAAEAAAABeAAAAAAAAABYAAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAA5AAAAOQAAADkAAAAWAAAAFgAAAEAAAABAAAAAXgAAAAAAAABeAAAAXgAAABYAAAAWAAAAFgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABAAAAAQAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAA== - -1,0: - ind: -1,0 - tiles: AAAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - type: OccluderTree - - type: Shuttle - - nextUpdate: 1984.9758152 - 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: - 1: -7,-3 - - node: - color: '#DE3A3A66' - id: BrickTileWhiteCornerNe - decals: - 23: 5,-2 - - node: - color: '#DE3A3A66' - id: BrickTileWhiteInnerNe - decals: - 15: 5,-3 - - node: - color: '#DE3A3A66' - id: BrickTileWhiteInnerNw - decals: - 13: 11,-3 - - node: - color: '#DE3A3A66' - id: BrickTileWhiteInnerSe - decals: - 14: 5,-3 - - node: - color: '#DE3A3A66' - id: BrickTileWhiteInnerSw - decals: - 12: 11,-3 - - node: - color: '#DE3A3A66' - id: BrickTileWhiteLineE - decals: - 22: 5,-4 - - node: - color: '#DE3A3A66' - id: BrickTileWhiteLineN - decals: - 17: 10,-3 - 18: 6,-3 - 24: 4,-2 - 25: 3,-2 - 26: 2,-2 - 27: -2,-2 - 28: -4,-2 - - node: - color: '#DE3A3A66' - id: BrickTileWhiteLineS - decals: - 16: 10,-3 - 19: 6,-3 - - node: - color: '#DE3A3A66' - id: BrickTileWhiteLineW - decals: - 20: 11,-4 - 21: 11,-2 - - node: - color: '#FFFFFFFF' - id: Caution - decals: - 0: -7,-3 - - node: - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 36: 0,-3 - 37: 2,-2 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 31: -2,-3 - 38: 3,-2 - 39: 4,-2 - 40: -1,-3 - 41: 11,-4 - - node: - color: '#FFFFFFFF' - id: DirtMedium - decals: - 32: -2,-4 - 33: -3,-4 - 34: -6,-3 - 35: -4,-4 - 42: 11,-3 - 43: 5,-3 - 44: -4,-3 - - node: - color: '#DE3A3A66' - id: HalfTileOverlayGreyscale180 - decals: - 5: 0,-4 - 6: -1,-4 - 7: -2,-4 - 8: -3,-4 - 9: -4,-4 - 10: -5,-4 - 11: -6,-4 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 4: -2,-3 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 29: -2,-2 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 30: 2,-2 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 2: 0,-3 - 3: -1,-3 - type: DecalGrid - - version: 2 - data: - tiles: - -1,-2: - 0: 61440 - -1,-1: - 0: 65279 - 1: 256 - 0,-2: - 0: 61440 - 0,-1: - 0: 65535 - -4,-2: - 0: 65058 - -4,-1: - 0: 65021 - -4,-3: - 0: 8704 - -3,-2: - 0: 63232 - -3,-1: - 0: 65535 - -2,-2: - 0: 61440 - -2,-1: - 0: 65535 - 1,-2: - 0: 28672 - 1,-1: - 0: 32767 - 2,-1: - 0: 61439 - 2,-2: - 0: 57344 - 3,-2: - 0: 12288 - 3,-1: - 0: 14199 - -4,0: - 0: 8750 - -4,1: - 0: 2 - -3,0: - 0: 7 - -6,-1: - 0: 2048 - -5,-1: - 0: 53231 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 10.749729 - - 40.439453 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance -- uid: 7537 - type: ClothingNeckScarfStripedBlue - components: - - pos: 47.53208,-14.559442 - parent: 60 - type: Transform -- uid: 7538 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 7536 - type: Transform -- uid: 7539 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 7536 - type: Transform -- uid: 7540 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 7536 - type: Transform -- uid: 7541 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: 6.5,-0.5 - parent: 7536 - type: Transform -- uid: 7542 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: 6.5,-1.5 - parent: 7536 - type: Transform -- uid: 7543 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: 6.5,-4.5 - parent: 7536 - type: Transform -- uid: 7544 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: 6.5,-3.5 - parent: 7536 - type: Transform -- uid: 7545 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: 7.5,-3.5 - parent: 7536 - type: Transform -- uid: 7546 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: 8.5,-3.5 - parent: 7536 - type: Transform -- uid: 7547 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: 9.5,-3.5 - parent: 7536 - type: Transform -- uid: 7548 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: 7.5,-1.5 - parent: 7536 - type: Transform -- uid: 7549 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: 8.5,-1.5 - parent: 7536 - type: Transform -- uid: 7550 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: 9.5,-1.5 - parent: 7536 - type: Transform -- uid: 7551 - type: WallPlastitanium - components: - - pos: 11.5,-0.5 - parent: 7536 - type: Transform -- uid: 7552 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: 10.5,-1.5 - parent: 7536 - type: Transform -- uid: 7553 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: 10.5,-0.5 - parent: 7536 - type: Transform -- uid: 7554 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: 10.5,-3.5 - parent: 7536 - type: Transform -- uid: 7555 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: 10.5,-4.5 - parent: 7536 - type: Transform -- uid: 7556 - type: WallPlastitanium - components: - - pos: 11.5,-4.5 - parent: 7536 - type: Transform -- uid: 7557 - type: WallPlastitanium - components: - - pos: 13.5,-4.5 - parent: 7536 - type: Transform -- uid: 7558 - type: WallPlastitanium - components: - - pos: 14.5,-3.5 - parent: 7536 - type: Transform -- uid: 7559 - type: WallPlastitanium - components: - - pos: 14.5,-1.5 - parent: 7536 - type: Transform -- uid: 7560 - type: WallPlastitanium - components: - - pos: 13.5,-0.5 - parent: 7536 - type: Transform -- uid: 7561 - type: ReinforcedWindow - components: - - pos: 60.5,-45.5 - parent: 60 - type: Transform -- uid: 7562 - type: ReinforcedWindow - components: - - pos: -31.5,-4.5 - parent: 60 - type: Transform -- uid: 7563 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7564 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7565 - type: IntercomScience - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-3.5 - parent: 60 - type: Transform -- uid: 7566 - type: WallPlastitanium - components: - - pos: 5.5,-4.5 - parent: 7536 - type: Transform -- uid: 7567 - type: WallPlastitanium - components: - - pos: 4.5,-4.5 - parent: 7536 - type: Transform -- uid: 7568 - type: WallPlastitanium - components: - - pos: 2.5,-4.5 - parent: 7536 - type: Transform -- uid: 7569 - type: WallPlastitanium - components: - - pos: 1.5,-4.5 - parent: 7536 - type: Transform -- uid: 7570 - type: WallPlastitanium - components: - - pos: 0.5,-4.5 - parent: 7536 - type: Transform -- uid: 7571 - type: WallPlastitanium - components: - - pos: -1.5,-4.5 - parent: 7536 - type: Transform -- uid: 7572 - type: WallPlastitanium - components: - - pos: -2.5,-4.5 - parent: 7536 - type: Transform -- uid: 7573 - type: WallPlastitanium - components: - - pos: -3.5,-4.5 - parent: 7536 - type: Transform -- uid: 7574 - type: WallPlastitanium - components: - - pos: -1.5,-0.5 - parent: 7536 - type: Transform -- uid: 7575 - type: WallPlastitanium - components: - - pos: -2.5,-0.5 - parent: 7536 - type: Transform -- uid: 7576 - type: WallPlastitanium - components: - - pos: -3.5,-0.5 - parent: 7536 - type: Transform -- uid: 7577 - type: WallPlastitanium - components: - - pos: 1.5,-2.5 - parent: 7536 - type: Transform -- uid: 7578 - type: WallPlastitanium - components: - - pos: 2.5,-2.5 - parent: 7536 - type: Transform -- uid: 7579 - type: WallPlastitanium - components: - - pos: 3.5,-2.5 - parent: 7536 - type: Transform -- uid: 7580 - type: WallPlastitanium - components: - - pos: 4.5,-2.5 - parent: 7536 - type: Transform -- uid: 7581 - type: AtmosDeviceFanTiny - components: - - pos: 59.5,12.5 - parent: 60 - type: Transform -- uid: 7582 - type: WallmountTelescreen - components: - - rot: -1.5707963267948966 rad - pos: 14.5,19.5 - parent: 60 - type: Transform -- uid: 7583 - type: WallPlastitanium - components: - - pos: 4.5,-3.5 - parent: 7536 - type: Transform -- uid: 7584 - type: WallPlastitanium - components: - - pos: -2.5,-2.5 - parent: 7536 - type: Transform -- uid: 7585 - type: WallPlastitanium - components: - - pos: -2.5,-1.5 - parent: 7536 - type: Transform -- uid: 7586 - type: WallPlastitanium - components: - - pos: -4.5,-0.5 - parent: 7536 - type: Transform -- uid: 7587 - type: WallPlastitanium - components: - - pos: -4.5,-1.5 - parent: 7536 - type: Transform -- uid: 7588 - type: WallPlastitanium - components: - - pos: -5.5,-0.5 - parent: 7536 - type: Transform -- uid: 7589 - type: WallPlastitanium - components: - - pos: -6.5,-0.5 - parent: 7536 - type: Transform -- uid: 7590 - type: WallPlastitanium - components: - - pos: -6.5,-1.5 - parent: 7536 - type: Transform -- uid: 7591 - type: FirelockGlass - components: - - pos: 22.5,-43.5 - parent: 60 - type: Transform -- uid: 7592 - type: CableMV - components: - - pos: 41.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7593 - type: Catwalk - components: - - pos: -70.5,-21.5 - parent: 60 - type: Transform -- uid: 7594 - type: Catwalk - components: - - pos: -73.5,-22.5 - parent: 60 - type: Transform -- uid: 7595 - type: CableApcExtension - components: - - pos: -60.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7596 - type: RandomPosterAny - components: - - pos: -58.5,-15.5 - parent: 60 - type: Transform -- uid: 7597 - type: CableApcExtension - components: - - pos: -56.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7598 - type: RandomSpawner - components: - - pos: -56.5,-19.5 - parent: 60 - type: Transform -- uid: 7599 - type: DecoratedFirTree - components: - - pos: -16.5,-29.5 - parent: 60 - type: Transform -- uid: 7600 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-16.5 - parent: 60 - type: Transform -- uid: 7601 - type: GasPipeStraight - components: - - pos: -22.5,-7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7602 - type: WallPlastitanium - components: - - pos: -7.5,-1.5 - parent: 7536 - type: Transform -- uid: 7603 - type: WallReinforced - components: - - pos: -24.5,-17.5 - parent: 60 - type: Transform -- uid: 7604 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -35.5,0.5 - parent: 60 - type: Transform -- uid: 7605 - type: Table - components: - - pos: -58.5,-16.5 - parent: 60 - type: Transform -- uid: 7606 - type: BlockGameArcadeComputerCircuitboard - components: - - pos: -49.629227,-28.475441 - parent: 60 - type: Transform -- uid: 7607 - type: WallPlastitanium - components: - - pos: -5.5,-4.5 - parent: 7536 - type: Transform -- uid: 7608 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -51.5,-32.5 - parent: 60 - type: Transform -- uid: 7609 - type: MaintenanceFluffSpawner - components: - - pos: -28.5,-35.5 - parent: 60 - type: Transform -- uid: 7610 - type: WallPlastitanium - components: - - pos: -6.5,-4.5 - parent: 7536 - type: Transform -- uid: 7611 - type: Grille - components: - - pos: 57.5,-11.5 - parent: 60 - type: Transform -- uid: 7612 - type: CableMV - components: - - pos: -19.5,-12.5 - parent: 60 - type: Transform -- uid: 7613 - type: MaintenanceFluffSpawner - components: - - pos: 15.5,-45.5 - parent: 60 - type: Transform -- uid: 7614 - type: IngotGold1 - components: - - pos: 37.68334,-43.463394 - parent: 60 - type: Transform - - count: 7 - type: Stack -- uid: 7615 - type: OxygenCanister - components: - - pos: 26.5,-48.5 - parent: 60 - type: Transform -- uid: 7616 - type: MaintenanceWeaponSpawner - components: - - pos: 18.5,-43.5 - parent: 60 - type: Transform -- uid: 7617 - type: DisposalPipe - components: - - pos: 44.5,-10.5 - parent: 60 - type: Transform -- uid: 7618 - type: DisposalPipe - components: - - pos: 33.5,-21.5 - parent: 60 - type: Transform -- uid: 7619 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-8.5 - parent: 60 - type: Transform -- uid: 7620 - type: ClothingMaskBreathMedical - components: - - pos: 39.47388,-12.5714 - parent: 60 - type: Transform -- uid: 7621 - type: WallPlastitanium - components: - - pos: -6.5,-3.5 - parent: 7536 - type: Transform -- uid: 7622 - type: LockerEngineerFilled - components: - - pos: -4.5,19.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7623 - type: ReinforcedWindow - components: - - pos: 65.5,-37.5 - parent: 60 - type: Transform -- uid: 7624 - type: WallSolid - components: - - pos: 61.5,-19.5 - parent: 60 - type: Transform -- uid: 7625 - type: WallSolid - components: - - pos: 61.5,-20.5 - parent: 60 - type: Transform -- uid: 7626 - type: WallSolid - components: - - pos: 61.5,-23.5 - parent: 60 - type: Transform -- uid: 7627 - type: WallSolid - components: - - pos: 61.5,-21.5 - parent: 60 - type: Transform -- uid: 7628 - type: OxygenCanister - components: - - pos: 60.5,-23.5 - parent: 60 - type: Transform -- uid: 7629 - type: MaintenanceWeaponSpawner - components: - - pos: 60.5,-22.5 - parent: 60 - type: Transform -- uid: 7630 - type: FirelockGlass - components: - - pos: 23.5,-21.5 - parent: 60 - type: Transform -- uid: 7631 - type: ReinforcedWindow - components: - - pos: -67.5,0.5 - parent: 60 - type: Transform -- uid: 7632 - type: Poweredlight - components: - - pos: 29.5,-16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7633 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 45.5,-45.5 - parent: 60 - type: Transform -- uid: 7634 - type: CableApcExtension - components: - - pos: -63.5,7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7635 - type: ChairOfficeDark - components: - - pos: -65.5,10.5 - parent: 60 - type: Transform -- uid: 7636 - type: Catwalk - components: - - pos: -57.5,-18.5 - parent: 60 - type: Transform -- uid: 7637 - type: VendingMachineEngiDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,16.5 - parent: 60 - type: Transform -- uid: 7638 - type: Lamp - components: - - pos: -58.53686,-16.403797 - parent: 60 - type: Transform -- uid: 7639 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-16.5 - parent: 60 - type: Transform -- uid: 7640 - type: LockerDetectiveFilled - components: - - pos: -26.5,-26.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7641 - type: ReinforcedWindow - components: - - pos: -69.5,-19.5 - parent: 60 - type: Transform -- uid: 7642 - type: WallReinforced - components: - - pos: -62.5,-16.5 - parent: 60 - type: Transform -- uid: 7643 - type: SubstationBasic - components: - - name: West Solar Sub - type: MetaData - - pos: -63.5,-17.5 - parent: 60 - type: Transform -- uid: 7644 - type: Grille - components: - - pos: -66.5,-19.5 - parent: 60 - type: Transform -- uid: 7645 - type: SignRedFour - components: - - pos: -44.5,21.5 - parent: 60 - type: Transform -- uid: 7646 - type: Poweredlight - components: - - pos: 29.5,-19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7647 - type: GasPipeStraight - components: - - pos: -27.5,-3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7648 - type: DisposalPipe - components: - - pos: 16.5,12.5 - parent: 60 - type: Transform -- uid: 7649 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7650 - type: Grille - components: - - pos: -21.5,-19.5 - parent: 60 - type: Transform -- uid: 7651 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-33.5 - parent: 60 - type: Transform -- uid: 7652 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-31.5 - parent: 60 - type: Transform -- uid: 7653 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-35.5 - parent: 60 - type: Transform -- uid: 7654 - type: Catwalk - components: - - pos: 5.5,-49.5 - parent: 60 - type: Transform -- uid: 7655 - type: AirSensor - components: - - pos: -42.5,23.5 - parent: 60 - type: Transform -- uid: 7656 - type: WallReinforced - components: - - pos: -30.5,-21.5 - parent: 60 - type: Transform -- uid: 7657 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-12.5 - parent: 60 - type: Transform -- uid: 7658 - type: DisposalPipe - components: - - pos: 20.5,-21.5 - parent: 60 - type: Transform -- uid: 7659 - type: CableHV - components: - - pos: -68.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7660 - type: Chair - components: - - pos: -36.5,-24.5 - parent: 60 - type: Transform -- uid: 7661 - type: RandomVendingDrinks - components: - - pos: -37.5,-24.5 - parent: 60 - type: Transform -- uid: 7662 - type: Catwalk - components: - - pos: 10.5,-41.5 - parent: 60 - type: Transform -- uid: 7663 - type: Catwalk - components: - - pos: 11.5,-41.5 - parent: 60 - type: Transform -- uid: 7664 - type: Grille - components: - - pos: 42.5,-24.5 - parent: 60 - type: Transform -- uid: 7665 - type: ReinforcedWindow - components: - - pos: 42.5,-22.5 - parent: 60 - type: Transform -- uid: 7666 - type: ReinforcedWindow - components: - - pos: 42.5,-24.5 - parent: 60 - type: Transform -- uid: 7667 - type: SignRedFive - components: - - pos: -56.5,25.5 - parent: 60 - type: Transform -- uid: 7668 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-32.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7669 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 41.5,-25.5 - parent: 60 - type: Transform -- uid: 7670 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7671 - type: SpawnPointSalvageSpecialist - components: - - pos: 37.5,0.5 - parent: 60 - type: Transform -- uid: 7672 - type: Catwalk - components: - - pos: 4.5,-49.5 - parent: 60 - type: Transform -- uid: 7673 - type: CrowbarRed - components: - - pos: 51.508774,-20.4928 - parent: 60 - type: Transform -- uid: 7674 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: 38.50196,12.281161 - parent: 60 - type: Transform -- uid: 7675 - type: WallSolid - components: - - pos: 16.5,-39.5 - parent: 60 - type: Transform -- uid: 7676 - type: GasPipeStraight - components: - - pos: -49.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7677 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,-8.5 - parent: 60 - type: Transform -- uid: 7678 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 43.5,24.5 - parent: 60 - type: Transform -- uid: 7679 - type: AirlockBrigGlassLocked - components: - - name: Interrogation - type: MetaData - - pos: -31.5,-3.5 - parent: 60 - type: Transform -- uid: 7680 - type: GasPipeStraight - components: - - pos: -36.5,-13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7681 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7682 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7683 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7684 - type: WallReinforced - components: - - pos: -23.5,1.5 - parent: 60 - type: Transform -- uid: 7685 - type: BoxFlashbang - components: - - pos: -30.504433,2.372429 - parent: 60 - type: Transform -- uid: 7686 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -31.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7687 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 16.5,24.5 - parent: 60 - type: Transform -- uid: 7688 - type: FirelockGlass - components: - - pos: 20.5,-41.5 - parent: 60 - type: Transform -- uid: 7689 - type: WallSolid - components: - - pos: 20.5,-40.5 - parent: 60 - type: Transform -- uid: 7690 - type: WallSolid - components: - - pos: 20.5,-39.5 - parent: 60 - type: Transform -- uid: 7691 - type: PosterContrabandLamarr - components: - - pos: -41.5,9.5 - parent: 60 - type: Transform -- uid: 7692 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -69.5,-18.5 - parent: 60 - type: Transform -- uid: 7693 - type: ClothingHeadHatRedwizard - components: - - pos: -36.985573,-34.975445 - parent: 60 - type: Transform -- uid: 7694 - type: CableMV - components: - - pos: -62.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7695 - type: PoweredSmallLight - components: - - pos: 11.5,-19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7696 - type: Catwalk - components: - - pos: 12.5,-41.5 - parent: 60 - type: Transform -- uid: 7697 - type: ShuttersNormal - components: - - pos: -4.5,-25.5 - parent: 60 - type: Transform - - inputs: - Open: - - port: Right - uid: 1189 - - port: Left - uid: 1189 - Close: - - port: Middle - uid: 1189 - Toggle: - - port: Pressed - uid: 3017 - type: SignalReceiver -- uid: 7698 - type: TableWood - components: - - pos: -11.5,-28.5 - parent: 60 - type: Transform -- uid: 7699 - type: Catwalk - components: - - pos: 10.5,-49.5 - parent: 60 - type: Transform -- uid: 7700 - type: AirlockCargoGlassLocked - components: - - name: Cargo Breakroom - type: MetaData - - pos: 48.5,19.5 - parent: 60 - type: Transform -- uid: 7701 - type: CableMV - components: - - pos: 46.5,3.5 - parent: 60 - type: Transform -- uid: 7702 - type: WindoorSecureCargoLocked - components: - - pos: 50.5,19.5 - parent: 60 - type: Transform -- uid: 7703 - type: ReinforcedWindow - components: - - pos: 51.5,19.5 - parent: 60 - type: Transform -- uid: 7704 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -108.5,11.5 - parent: 60 - type: Transform -- uid: 7705 - type: SignRedOne - components: - - pos: -30.5,22.5 - parent: 60 - type: Transform -- uid: 7706 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 7707 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 47.5,24.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 7708 - type: FirelockGlass - components: - - pos: 9.5,-42.5 - parent: 60 - type: Transform -- uid: 7709 - type: FirelockGlass - components: - - pos: 9.5,-47.5 - parent: 60 - type: Transform -- uid: 7710 - type: EmergencyLight - components: - - pos: 51.5,22.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 7711 - type: Grille - components: - - pos: 18.5,-19.5 - parent: 60 - type: Transform -- uid: 7712 - type: Catwalk - components: - - pos: 9.5,-49.5 - parent: 60 - type: Transform -- uid: 7713 - type: Catwalk - components: - - pos: 8.5,-49.5 - parent: 60 - type: Transform -- uid: 7714 - type: Catwalk - components: - - pos: 7.5,-49.5 - parent: 60 - type: Transform -- uid: 7715 - type: GasPipeStraight - components: - - pos: 33.5,-17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7716 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7717 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7718 - type: Grille - components: - - pos: -66.5,-17.5 - parent: 60 - type: Transform -- uid: 7719 - type: Window - components: - - pos: -8.5,10.5 - parent: 60 - type: Transform -- uid: 7720 - type: WaterTankFull - components: - - pos: -10.5,-14.5 - parent: 60 - type: Transform -- uid: 7721 - type: FirelockGlass - components: - - pos: -35.5,8.5 - parent: 60 - type: Transform -- uid: 7722 - type: WallReinforced - components: - - pos: -67.5,13.5 - parent: 60 - type: Transform -- uid: 7723 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-43.5 - parent: 60 - type: Transform - - inputs: - Off: - - port: Middle - uid: 938 - Forward: - - port: Left - uid: 938 - Reverse: - - port: Right - uid: 938 - type: SignalReceiver -- uid: 7724 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-43.5 - parent: 60 - type: Transform - - inputs: - Off: - - port: Middle - uid: 938 - Forward: - - port: Left - uid: 938 - Reverse: - - port: Right - uid: 938 - type: SignalReceiver -- uid: 7725 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-43.5 - parent: 60 - type: Transform - - inputs: - Off: - - port: Middle - uid: 938 - Forward: - - port: Left - uid: 938 - Reverse: - - port: Right - uid: 938 - type: SignalReceiver -- uid: 7726 - type: ReinforcedWindow - components: - - pos: -16.5,-44.5 - parent: 60 - type: Transform -- uid: 7727 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-42.5 - parent: 60 - type: Transform -- uid: 7728 - type: BlastDoor - components: - - pos: -18.5,-43.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7746 - type: SignalReceiver -- uid: 7729 - type: BlastDoor - components: - - pos: -16.5,-43.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3803 - type: SignalReceiver -- uid: 7730 - type: ReinforcedWindow - components: - - pos: -17.5,-44.5 - parent: 60 - type: Transform -- uid: 7731 - type: ReinforcedWindow - components: - - pos: -17.5,-42.5 - parent: 60 - type: Transform -- uid: 7732 - type: Grille - components: - - pos: -17.5,-44.5 - parent: 60 - type: Transform -- uid: 7733 - type: Grille - components: - - pos: -17.5,-42.5 - parent: 60 - type: Transform -- uid: 7734 - type: ReinforcedWindow - components: - - pos: -19.5,-38.5 - parent: 60 - type: Transform -- uid: 7735 - type: WallReinforced - components: - - pos: -20.5,-35.5 - parent: 60 - type: Transform -- uid: 7736 - type: WallReinforced - components: - - pos: -20.5,-37.5 - parent: 60 - type: Transform -- uid: 7737 - type: Rack - components: - - pos: -19.5,-37.5 - parent: 60 - type: Transform -- uid: 7738 - type: WallSolid - components: - - pos: -17.5,-37.5 - parent: 60 - type: Transform -- uid: 7739 - type: ReinforcedWindow - components: - - pos: -19.5,-35.5 - parent: 60 - type: Transform -- uid: 7740 - type: Poweredlight - components: - - pos: -17.5,-35.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7741 - type: FireExtinguisher - components: - - pos: 44.693237,-0.25845933 - parent: 60 - type: Transform -- uid: 7742 - type: WallReinforced - components: - - pos: -20.5,-38.5 - parent: 60 - type: Transform -- uid: 7743 - type: WallReinforced - components: - - pos: -20.5,-36.5 - parent: 60 - type: Transform -- uid: 7744 - type: WallReinforced - components: - - pos: -17.5,-38.5 - parent: 60 - type: Transform -- uid: 7745 - type: ClothingOuterSuitEmergency - components: - - pos: -19.441896,-37.38193 - parent: 60 - type: Transform -- uid: 7746 - type: SignalButton - components: - - name: outer blast door - type: MetaData - - pos: -16.506157,-42.225792 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7728 - type: SignalTransmitter -- uid: 7747 - type: WallReinforced - components: - - pos: -18.5,-1.5 - parent: 60 - type: Transform -- uid: 7748 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-22.5 - parent: 60 - type: Transform -- uid: 7749 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-22.5 - parent: 60 - type: Transform -- uid: 7750 - type: GrilleBroken - components: - - pos: 73.5,-26.5 - parent: 60 - type: Transform -- uid: 7751 - type: GrilleBroken - components: - - pos: 73.5,-30.5 - parent: 60 - type: Transform -- uid: 7752 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-32.5 - parent: 60 - type: Transform -- uid: 7753 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 73.5,-29.5 - parent: 60 - type: Transform -- uid: 7754 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-32.5 - parent: 60 - type: Transform -- uid: 7755 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-32.5 - parent: 60 - type: Transform -- uid: 7756 - type: WallSolid - components: - - pos: 61.5,-22.5 - parent: 60 - type: Transform -- uid: 7757 - type: WallReinforced - components: - - pos: 62.5,-40.5 - parent: 60 - type: Transform -- uid: 7758 - type: WallReinforced - components: - - pos: 61.5,-40.5 - parent: 60 - type: Transform -- uid: 7759 - type: WallReinforced - components: - - pos: 60.5,-40.5 - parent: 60 - type: Transform -- uid: 7760 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 67.5,-25.5 - parent: 60 - type: Transform -- uid: 7761 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 69.5,-25.5 - parent: 60 - type: Transform -- uid: 7762 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 66.5,-26.5 - parent: 60 - type: Transform -- uid: 7763 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 66.5,-27.5 - parent: 60 - type: Transform -- uid: 7764 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 66.5,-28.5 - parent: 60 - type: Transform -- uid: 7765 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 67.5,-29.5 - parent: 60 - type: Transform -- uid: 7766 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 67.5,-28.5 - parent: 60 - type: Transform -- uid: 7767 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 69.5,-29.5 - parent: 60 - type: Transform -- uid: 7768 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 70.5,-28.5 - parent: 60 - type: Transform -- uid: 7769 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 70.5,-27.5 - parent: 60 - type: Transform -- uid: 7770 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 70.5,-26.5 - parent: 60 - type: Transform -- uid: 7771 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 68.5,-25.5 - parent: 60 - type: Transform -- uid: 7772 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 69.5,-28.5 - parent: 60 - type: Transform -- uid: 7773 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 68.5,-29.5 - parent: 60 - type: Transform -- uid: 7774 - type: Grille - components: - - pos: 68.5,-28.5 - parent: 60 - type: Transform -- uid: 7775 - type: WallReinforced - components: - - pos: 67.5,-26.5 - parent: 60 - type: Transform -- uid: 7776 - type: WallReinforced - components: - - pos: 69.5,-26.5 - parent: 60 - type: Transform -- uid: 7777 - type: ReinforcedPlasmaWindow - components: - - pos: 67.5,-27.5 - parent: 60 - type: Transform -- uid: 7778 - type: ReinforcedPlasmaWindow - components: - - pos: 68.5,-26.5 - parent: 60 - type: Transform -- uid: 7779 - type: ReinforcedPlasmaWindow - components: - - pos: 69.5,-27.5 - parent: 60 - type: Transform -- uid: 7780 - type: Grille - components: - - pos: 67.5,-27.5 - parent: 60 - type: Transform -- uid: 7781 - type: Grille - components: - - pos: 68.5,-26.5 - parent: 60 - type: Transform -- uid: 7782 - type: Grille - components: - - pos: 69.5,-27.5 - parent: 60 - type: Transform -- uid: 7783 - type: ReinforcedPlasmaWindow - components: - - pos: 68.5,-28.5 - parent: 60 - type: Transform -- uid: 7784 - type: PonderingOrb - components: - - pos: 68.494286,-27.490837 - parent: 60 - type: Transform -- uid: 7785 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7786 - type: TableReinforced - components: - - pos: -30.5,2.5 - parent: 60 - type: Transform -- uid: 7787 - type: BoxHandcuff - components: - - pos: -30.301308,2.763054 - parent: 60 - type: Transform -- uid: 7788 - type: Table - components: - - pos: -42.5,-3.5 - parent: 60 - type: Transform -- uid: 7789 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,24.5 - parent: 60 - type: Transform -- uid: 7790 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -26.5,-15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7791 - type: Chair - components: - - pos: -34.5,-24.5 - parent: 60 - type: Transform -- uid: 7792 - type: DogBed - components: - - pos: -27.5,-10.5 - parent: 60 - type: Transform -- uid: 7793 - type: ComputerCriminalRecords - components: - - rot: 3.141592653589793 rad - pos: -26.5,-11.5 - parent: 60 - type: Transform -- uid: 7794 - type: PosterLegitHighClassMartini - components: - - pos: -48.5,-28.5 - parent: 60 - type: Transform -- uid: 7795 - type: CowToolboxFilled - components: - - pos: -25.481215,-45.479855 - parent: 60 - type: Transform -- uid: 7796 - type: LockerWeldingSuppliesFilled - components: - - pos: 11.5,15.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7797 - type: WallReinforced - components: - - pos: 57.5,-48.5 - parent: 60 - type: Transform -- uid: 7798 - type: WallReinforced - components: - - pos: 56.5,-48.5 - parent: 60 - type: Transform -- uid: 7799 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-47.5 - parent: 60 - type: Transform -- uid: 7800 - type: WallReinforced - components: - - pos: 45.5,-48.5 - parent: 60 - type: Transform -- uid: 7801 - type: ReinforcedWindow - components: - - pos: 46.5,-48.5 - parent: 60 - type: Transform -- uid: 7802 - type: WallReinforced - components: - - pos: 47.5,-48.5 - parent: 60 - type: Transform -- uid: 7803 - type: ReinforcedWindow - components: - - pos: 51.5,-48.5 - parent: 60 - type: Transform -- uid: 7804 - type: WallReinforced - components: - - pos: 54.5,-48.5 - parent: 60 - type: Transform -- uid: 7805 - type: WallReinforced - components: - - pos: 53.5,-48.5 - parent: 60 - type: Transform -- uid: 7806 - type: WallReinforced - components: - - pos: 52.5,-48.5 - parent: 60 - type: Transform -- uid: 7807 - type: ReinforcedWindow - components: - - pos: 55.5,-48.5 - parent: 60 - type: Transform -- uid: 7808 - type: WallReinforced - components: - - pos: 50.5,-48.5 - parent: 60 - type: Transform -- uid: 7809 - type: WallReinforced - components: - - pos: 49.5,-48.5 - parent: 60 - type: Transform -- uid: 7810 - type: ReinforcedWindow - components: - - pos: 48.5,-48.5 - parent: 60 - type: Transform -- uid: 7811 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: HoS Office - type: SurveillanceCamera -- uid: 7812 - type: ReinforcedWindow - components: - - pos: -18.5,1.5 - parent: 60 - type: Transform -- uid: 7813 - type: CableMV - components: - - pos: -21.5,-4.5 - parent: 60 - type: Transform -- uid: 7814 - type: CableHV - components: - - pos: 58.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7815 - type: CableHV - components: - - pos: 57.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7816 - type: ReinforcedWindow - components: - - pos: -63.5,14.5 - parent: 60 - type: Transform -- uid: 7817 - type: Barricade - components: - - pos: 43.5,-46.5 - parent: 60 - type: Transform -- uid: 7818 - type: CableHV - components: - - pos: 56.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7819 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 47.5,-44.5 - parent: 60 - type: Transform -- uid: 7820 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 47.5,-45.5 - parent: 60 - type: Transform -- uid: 7821 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 47.5,-46.5 - parent: 60 - type: Transform -- uid: 7822 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 48.5,-46.5 - parent: 60 - type: Transform -- uid: 7823 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 49.5,-46.5 - parent: 60 - type: Transform -- uid: 7824 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 49.5,-45.5 - parent: 60 - type: Transform -- uid: 7825 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 49.5,-44.5 - parent: 60 - type: Transform -- uid: 7826 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-45.5 - parent: 60 - type: Transform -- uid: 7827 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 51.5,-46.5 - parent: 60 - type: Transform -- uid: 7828 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 52.5,-46.5 - parent: 60 - type: Transform -- uid: 7829 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 53.5,-46.5 - parent: 60 - type: Transform -- uid: 7830 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 55.5,-43.5 - parent: 60 - type: Transform -- uid: 7831 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 56.5,-46.5 - parent: 60 - type: Transform -- uid: 7832 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 51.5,-43.5 - parent: 60 - type: Transform -- uid: 7833 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 57.5,-46.5 - parent: 60 - type: Transform -- uid: 7834 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 55.5,-46.5 - parent: 60 - type: Transform -- uid: 7835 - type: TableGlass - components: - - pos: -18.5,-2.5 - parent: 60 - type: Transform -- uid: 7836 - type: WindowReinforcedDirectional - components: - - pos: -113.5,12.5 - parent: 60 - type: Transform -- uid: 7837 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 57.5,-45.5 - parent: 60 - type: Transform -- uid: 7838 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 57.5,-44.5 - parent: 60 - type: Transform -- uid: 7839 - type: ReinforcedWindow - components: - - pos: -65.5,14.5 - parent: 60 - type: Transform -- uid: 7840 - type: WallSolidRust - components: - - pos: 53.5,-5.5 - parent: 60 - type: Transform -- uid: 7841 - type: Bed - components: - - pos: 52.5,-45.5 - parent: 60 - type: Transform -- uid: 7842 - type: Bed - components: - - pos: 56.5,-45.5 - parent: 60 - type: Transform -- uid: 7843 - type: ToiletEmpty - components: - - pos: 58.5,-44.5 - parent: 60 - type: Transform -- uid: 7844 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 58.5,-45.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 7845 - type: CableHV - components: - - pos: 55.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7846 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 48.5,-43.5 - parent: 60 - type: Transform -- uid: 7847 - type: PoweredSmallLight - components: - - pos: 47.5,-44.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7848 - type: AirlockGlass - components: - - name: Saloon - type: MetaData - - pos: 44.5,-46.5 - parent: 60 - type: Transform -- uid: 7849 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-44.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7850 - type: PoweredSmallLight - components: - - pos: 58.5,-44.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7851 - type: BedsheetSpawner - components: - - pos: 52.5,-45.5 - parent: 60 - type: Transform -- uid: 7852 - type: BedsheetSpawner - components: - - pos: 56.5,-45.5 - parent: 60 - type: Transform -- uid: 7853 - type: TableWood - components: - - pos: 50.5,-44.5 - parent: 60 - type: Transform -- uid: 7854 - type: Table - components: - - pos: 54.5,-44.5 - parent: 60 - type: Transform -- uid: 7855 - type: LampGold - components: - - pos: 47.535595,-44.54304 - parent: 60 - type: Transform -- uid: 7856 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7857 - type: ChairWood - components: - - pos: 51.5,-44.5 - parent: 60 - type: Transform -- uid: 7858 - type: ChairRitual - components: - - pos: 55.5,-44.5 - parent: 60 - type: Transform -- uid: 7859 - type: WallPlastitanium - components: - - pos: -7.5,-3.5 - parent: 7536 - type: Transform -- uid: 7860 - type: ClothingHeadHatFez - components: - - pos: 41.371563,-36.423416 - parent: 60 - type: Transform -- uid: 7861 - type: ClothingNeckHeadphones - components: - - pos: 50.559456,-44.391296 - parent: 60 - type: Transform -- uid: 7862 - type: ClothingNeckScarfStripedBlue - components: - - pos: 48.26344,-46.500843 - parent: 60 - type: Transform -- uid: 7863 - type: ClothingHeadHatAnimalMonkey - components: - - pos: 59.39033,-45.61683 - parent: 60 - type: Transform -- uid: 7864 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-33.5 - parent: 60 - type: Transform -- uid: 7865 - type: ClothingShoesSlippers - components: - - pos: 51.40455,-45.767857 - parent: 60 - type: Transform -- uid: 7866 - type: ClothingShoesTourist - components: - - pos: -44.517593,-34.836853 - parent: 60 - type: Transform -- uid: 7867 - type: ClothingHeadHelmetThunderdome - components: - - pos: 25.16276,-43.104046 - parent: 60 - type: Transform -- uid: 7868 - type: MaintenanceToolSpawner - components: - - pos: 56.5,-44.5 - parent: 60 - type: Transform -- uid: 7869 - type: Grille - components: - - pos: 46.5,-48.5 - parent: 60 - type: Transform -- uid: 7870 - type: Grille - components: - - pos: 48.5,-48.5 - parent: 60 - type: Transform -- uid: 7871 - type: Grille - components: - - pos: 51.5,-48.5 - parent: 60 - type: Transform -- uid: 7872 - type: Grille - components: - - pos: 55.5,-48.5 - parent: 60 - type: Transform -- uid: 7873 - type: Grille - components: - - pos: 51.5,-55.5 - parent: 60 - type: Transform -- uid: 7874 - type: Grille - components: - - pos: 52.5,-55.5 - parent: 60 - type: Transform -- uid: 7875 - type: Grille - components: - - pos: 53.5,-55.5 - parent: 60 - type: Transform -- uid: 7876 - type: Grille - components: - - pos: 55.5,-55.5 - parent: 60 - type: Transform -- uid: 7877 - type: Grille - components: - - pos: 56.5,-55.5 - parent: 60 - type: Transform -- uid: 7878 - type: Grille - components: - - pos: 61.5,-55.5 - parent: 60 - type: Transform -- uid: 7879 - type: Grille - components: - - pos: 62.5,-55.5 - parent: 60 - type: Transform -- uid: 7880 - type: Grille - components: - - pos: 63.5,-55.5 - parent: 60 - type: Transform -- uid: 7881 - type: Grille - components: - - pos: 63.5,-54.5 - parent: 60 - type: Transform -- uid: 7882 - type: Grille - components: - - pos: 63.5,-53.5 - parent: 60 - type: Transform -- uid: 7883 - type: Grille - components: - - pos: 63.5,-52.5 - parent: 60 - type: Transform -- uid: 7884 - type: Grille - components: - - pos: 63.5,-50.5 - parent: 60 - type: Transform -- uid: 7885 - type: Grille - components: - - pos: 63.5,-49.5 - parent: 60 - type: Transform -- uid: 7886 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-55.5 - parent: 60 - type: Transform -- uid: 7887 - type: GrilleBroken - components: - - pos: 63.5,-51.5 - parent: 60 - type: Transform -- uid: 7888 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 63.5,-51.5 - parent: 60 - type: Transform -- uid: 7889 - type: GrilleBroken - components: - - pos: 63.5,-48.5 - parent: 60 - type: Transform -- uid: 7890 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-55.5 - parent: 60 - type: Transform -- uid: 7891 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-55.5 - parent: 60 - type: Transform -- uid: 7892 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-55.5 - parent: 60 - type: Transform -- uid: 7893 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-55.5 - parent: 60 - type: Transform -- uid: 7894 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-55.5 - parent: 60 - type: Transform -- uid: 7895 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-49.5 - parent: 60 - type: Transform -- uid: 7896 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7897 - type: PosterLegitTheOwl - components: - - pos: 45.5,-43.5 - parent: 60 - type: Transform -- uid: 7898 - type: RandomPosterAny - components: - - pos: 53.5,-46.5 - parent: 60 - type: Transform -- uid: 7899 - type: MaintenanceWeaponSpawner - components: - - pos: 46.5,-47.5 - parent: 60 - type: Transform -- uid: 7900 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-12.5 - parent: 60 - type: Transform -- uid: 7901 - type: AirlockBrigGlassLocked - components: - - pos: -25.5,-17.5 - parent: 60 - type: Transform -- uid: 7902 - type: ReinforcedWindow - components: - - pos: -20.5,-17.5 - parent: 60 - type: Transform -- uid: 7903 - type: ReinforcedWindow - components: - - pos: -18.5,-17.5 - parent: 60 - type: Transform -- uid: 7904 - type: SpawnPointSecurityOfficer - components: - - pos: -33.5,-19.5 - parent: 60 - type: Transform -- uid: 7905 - type: SpawnPointSecurityOfficer - components: - - pos: -33.5,-16.5 - parent: 60 - type: Transform -- uid: 7906 - type: DisposalTrunk - components: - - pos: -30.5,-18.5 - parent: 60 - type: Transform -- uid: 7907 - type: CableApcExtension - components: - - pos: -33.5,-19.5 - parent: 60 - type: Transform -- uid: 7908 - type: WallSolid - components: - - pos: -34.5,6.5 - parent: 60 - type: Transform -- uid: 7909 - type: CableHV - components: - - pos: -35.5,4.5 - parent: 60 - type: Transform -- uid: 7910 - type: CableHV - components: - - pos: 54.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7911 - type: CableHV - components: - - pos: 53.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7912 - type: CableHV - components: - - pos: 51.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7913 - type: CableHV - components: - - pos: 50.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7914 - type: CableHV - components: - - pos: 49.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7915 - type: CableHV - components: - - pos: 48.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7916 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -17.5,-1.5 - parent: 60 - type: Transform -- uid: 7917 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -17.5,-2.5 - parent: 60 - type: Transform -- uid: 7918 - type: SignMedical - components: - - pos: -17.5,-3.5 - parent: 60 - type: Transform -- uid: 7919 - type: FaxMachineBase - components: - - pos: -40.5,5.5 - parent: 60 - type: Transform -- uid: 7920 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -17.5,-5.5 - parent: 60 - type: Transform -- uid: 7921 - type: WallPlastitanium - components: - - pos: -8.5,-3.5 - parent: 7536 - type: Transform -- uid: 7922 - type: WallPlastitanium - components: - - pos: -8.5,-4.5 - parent: 7536 - type: Transform -- uid: 7923 - type: WallPlastitanium - components: - - pos: -8.5,-1.5 - parent: 7536 - type: Transform -- uid: 7924 - type: WallPlastitanium - components: - - pos: -8.5,-0.5 - parent: 7536 - type: Transform -- uid: 7925 - type: WallPlastitanium - components: - - pos: -9.5,-4.5 - parent: 7536 - type: Transform -- uid: 7926 - type: WallPlastitanium - components: - - pos: -9.5,-0.5 - parent: 7536 - type: Transform -- uid: 7927 - type: WallPlastitanium - components: - - pos: -13.5,-4.5 - parent: 7536 - type: Transform -- uid: 7928 - type: WallPlastitanium - components: - - pos: -13.5,-3.5 - parent: 7536 - type: Transform -- uid: 7929 - type: WallPlastitanium - components: - - pos: -13.5,-2.5 - parent: 7536 - type: Transform -- uid: 7930 - type: WallPlastitanium - components: - - pos: -13.5,-1.5 - parent: 7536 - type: Transform -- uid: 7931 - type: WallPlastitanium - components: - - pos: -13.5,-0.5 - parent: 7536 - type: Transform -- uid: 7932 - type: WallPlastitanium - components: - - pos: -15.5,-3.5 - parent: 7536 - type: Transform -- uid: 7933 - type: WallPlastitanium - components: - - pos: -16.5,-3.5 - parent: 7536 - type: Transform -- uid: 7934 - type: WallPlastitanium - components: - - pos: -17.5,-3.5 - parent: 7536 - type: Transform -- uid: 7935 - type: WallPlastitanium - components: - - pos: -18.5,-3.5 - parent: 7536 - type: Transform -- uid: 7936 - type: WallPlastitanium - components: - - pos: -18.5,-2.5 - parent: 7536 - type: Transform -- uid: 7937 - type: WallPlastitanium - components: - - pos: -18.5,-1.5 - parent: 7536 - type: Transform -- uid: 7938 - type: WallPlastitanium - components: - - pos: -17.5,-1.5 - parent: 7536 - type: Transform -- uid: 7939 - type: WallPlastitanium - components: - - pos: -16.5,-1.5 - parent: 7536 - type: Transform -- uid: 7940 - type: WallPlastitanium - components: - - pos: -15.5,-1.5 - parent: 7536 - type: Transform -- uid: 7941 - type: SolarPanel - components: - - pos: -14.5,0.5 - parent: 7536 - type: Transform -- uid: 7942 - type: ReinforcedPlasmaWindow - components: - - pos: -12.5,-4.5 - parent: 7536 - type: Transform -- uid: 7943 - type: ReinforcedPlasmaWindow - components: - - pos: -10.5,-4.5 - parent: 7536 - type: Transform -- uid: 7944 - type: ReinforcedPlasmaWindow - components: - - pos: -10.5,-0.5 - parent: 7536 - type: Transform -- uid: 7945 - type: ReinforcedPlasmaWindow - components: - - pos: -12.5,-0.5 - parent: 7536 - type: Transform -- uid: 7946 - type: ReinforcedPlasmaWindow - components: - - pos: -4.5,-4.5 - parent: 7536 - type: Transform -- uid: 7947 - type: ReinforcedPlasmaWindow - components: - - pos: -0.5,-4.5 - parent: 7536 - type: Transform -- uid: 7948 - type: ReinforcedPlasmaWindow - components: - - pos: 3.5,-4.5 - parent: 7536 - type: Transform -- uid: 7949 - type: ReinforcedPlasmaWindow - components: - - pos: 2.5,-0.5 - parent: 7536 - type: Transform -- uid: 7950 - type: ReinforcedPlasmaWindow - components: - - pos: 3.5,-0.5 - parent: 7536 - type: Transform -- uid: 7951 - type: ReinforcedPlasmaWindow - components: - - pos: 4.5,-0.5 - parent: 7536 - type: Transform -- uid: 7952 - type: ReinforcedPlasmaWindow - components: - - pos: 12.5,-4.5 - parent: 7536 - type: Transform -- uid: 7953 - type: ReinforcedPlasmaWindow - components: - - pos: 14.5,-2.5 - parent: 7536 - type: Transform -- uid: 7954 - type: ReinforcedPlasmaWindow - components: - - pos: 12.5,-0.5 - parent: 7536 - type: Transform -- uid: 7955 - type: Grille - components: - - pos: 12.5,-0.5 - parent: 7536 - type: Transform -- uid: 7956 - type: Grille - components: - - pos: 14.5,-2.5 - parent: 7536 - type: Transform -- uid: 7957 - type: Grille - components: - - pos: 12.5,-4.5 - parent: 7536 - type: Transform -- uid: 7958 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-44.5 - parent: 60 - type: Transform -- uid: 7959 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-44.5 - parent: 60 - type: Transform -- uid: 7960 - type: DisposalUnit - components: - - pos: -1.5,-44.5 - parent: 60 - type: Transform -- uid: 7961 - type: Grille - components: - - pos: 3.5,-4.5 - parent: 7536 - type: Transform -- uid: 7962 - type: Grille - components: - - pos: -0.5,-4.5 - parent: 7536 - type: Transform -- uid: 7963 - type: Grille - components: - - pos: 3.5,-0.5 - parent: 7536 - type: Transform -- uid: 7964 - type: Grille - components: - - pos: 2.5,-0.5 - parent: 7536 - type: Transform -- uid: 7965 - type: Grille - components: - - pos: 4.5,-0.5 - parent: 7536 - type: Transform -- uid: 7966 - type: Grille - components: - - pos: -4.5,-4.5 - parent: 7536 - type: Transform -- uid: 7967 - type: Grille - components: - - pos: -10.5,-4.5 - parent: 7536 - type: Transform -- uid: 7968 - type: Grille - components: - - pos: -12.5,-4.5 - parent: 7536 - type: Transform -- uid: 7969 - type: Grille - components: - - pos: -12.5,-0.5 - parent: 7536 - type: Transform -- uid: 7970 - type: Grille - components: - - pos: -10.5,-0.5 - parent: 7536 - type: Transform -- uid: 7971 - type: SolarPanel - components: - - pos: -14.5,1.5 - parent: 7536 - type: Transform -- uid: 7972 - type: SolarPanel - components: - - pos: -14.5,2.5 - parent: 7536 - type: Transform -- uid: 7973 - type: SolarPanel - components: - - pos: -14.5,3.5 - parent: 7536 - type: Transform -- uid: 7974 - type: SolarPanel - components: - - pos: -14.5,4.5 - parent: 7536 - type: Transform -- uid: 7975 - type: SolarPanel - components: - - pos: -14.5,-5.5 - parent: 7536 - type: Transform -- uid: 7976 - type: SolarPanel - components: - - pos: -14.5,-6.5 - parent: 7536 - type: Transform -- uid: 7977 - type: SolarPanel - components: - - pos: -14.5,-7.5 - parent: 7536 - type: Transform -- uid: 7978 - type: SolarPanel - components: - - pos: -14.5,-8.5 - parent: 7536 - type: Transform -- uid: 7979 - type: SolarPanel - components: - - pos: -14.5,-9.5 - parent: 7536 - type: Transform -- uid: 7980 - type: SMESBasic - components: - - name: Syndicate SMES - type: MetaData - - pos: -10.5,-2.5 - parent: 7536 - type: Transform -- uid: 7981 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,41.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7982 - type: CableHV - components: - - pos: -14.5,-9.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7983 - type: CableHV - components: - - pos: -14.5,-8.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7984 - type: CableHV - components: - - pos: -14.5,-7.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7985 - type: CableHV - components: - - pos: -14.5,-6.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7986 - type: CableHV - components: - - pos: -14.5,-5.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7987 - type: CableHV - components: - - pos: -14.5,4.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7988 - type: CableHV - components: - - pos: -14.5,3.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7989 - type: WallReinforced - components: - - pos: -66.5,14.5 - parent: 60 - type: Transform -- uid: 7990 - type: WallSolid - components: - - pos: -62.5,5.5 - parent: 60 - type: Transform -- uid: 7991 - type: WallSolid - components: - - pos: -62.5,4.5 - parent: 60 - type: Transform -- uid: 7992 - type: WallSolid - components: - - pos: -62.5,3.5 - parent: 60 - type: Transform -- uid: 7993 - type: WallSolid - components: - - pos: -62.5,2.5 - parent: 60 - type: Transform -- uid: 7994 - type: CableHV - components: - - pos: -14.5,2.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7995 - type: CableHV - components: - - pos: -14.5,1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7996 - type: CableHV - components: - - pos: -14.5,0.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7997 - type: WallSolid - components: - - pos: -46.5,-3.5 - parent: 60 - type: Transform -- uid: 7998 - type: CableHV - components: - - pos: -56.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7999 - type: CableHV - components: - - pos: -53.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8000 - type: CableHV - components: - - pos: -58.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8001 - type: Window - components: - - pos: -65.5,1.5 - parent: 60 - type: Transform -- uid: 8002 - type: ShuttersNormalOpen - components: - - rot: 3.141592653589793 rad - pos: -17.5,-12.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1485 - type: SignalReceiver -- uid: 8003 - type: CableHV - components: - - pos: 36.5,-66.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8004 - type: CableHV - components: - - pos: 34.5,-72.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8005 - type: CableHV - components: - - pos: 33.5,-72.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8006 - type: CableHV - components: - - pos: -13.5,0.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8007 - type: CableHV - components: - - pos: -12.5,0.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8008 - type: CableHV - components: - - pos: -11.5,0.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8009 - type: CableHV - components: - - pos: -11.5,-0.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8010 - type: CableHV - components: - - pos: -11.5,-1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8011 - type: CableHV - components: - - pos: -11.5,-2.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8012 - type: CableHV - components: - - pos: 32.5,-72.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8013 - type: CableHV - components: - - pos: 32.5,-68.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8014 - type: CableHV - components: - - pos: 33.5,-68.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8015 - type: AirlockMaintLocked - components: - - pos: -59.5,-20.5 - parent: 60 - type: Transform -- uid: 8016 - type: ClothingOuterSuitMonkey - components: - - pos: 59.42158,-46.288704 - parent: 60 - type: Transform -- uid: 8017 - type: PaintingMonkey - components: - - pos: 58.5,-43.5 - parent: 60 - type: Transform -- uid: 8018 - type: CableHV - components: - - pos: 35.5,-66.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8019 - type: PosterLegitFruitBowl - components: - - pos: 52.5,-46.5 - parent: 60 - type: Transform -- uid: 8020 - type: ClothingHeadHatBowlerHat - components: - - pos: 50.500725,-44.523643 - parent: 60 - type: Transform -- uid: 8021 - type: ToyOwlman - components: - - pos: 47.478683,-45.212933 - parent: 60 - type: Transform -- uid: 8022 - type: WallReinforced - components: - - pos: 45.5,-47.5 - parent: 60 - type: Transform -- uid: 8023 - type: CableHV - components: - - pos: 47.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8024 - type: CableHV - components: - - pos: 33.5,-66.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8025 - type: SignSecureSmall - components: - - pos: 43.5,-47.5 - parent: 60 - type: Transform -- uid: 8026 - type: SignDangerMed - components: - - pos: 68.5,-25.5 - parent: 60 - type: Transform -- uid: 8027 - type: ClothingOuterApron - components: - - pos: 48.664055,-46.466763 - parent: 60 - type: Transform -- uid: 8028 - type: ExtinguisherCabinetFilled - components: - - pos: 14.5,20.5 - parent: 60 - type: Transform -- uid: 8029 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -110.5,13.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Upload - type: SurveillanceCamera -- uid: 8030 - type: CableMV - components: - - pos: -17.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8031 - type: WallReinforced - components: - - pos: 60.5,-44.5 - parent: 60 - type: Transform -- uid: 8032 - type: CableHV - components: - - pos: -11.5,-3.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8033 - type: WallReinforced - components: - - pos: 60.5,-46.5 - parent: 60 - type: Transform -- uid: 8034 - type: WallReinforced - components: - - pos: 60.5,-47.5 - parent: 60 - type: Transform -- uid: 8035 - type: CableHV - components: - - pos: -11.5,-4.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8036 - type: CableHV - components: - - pos: -11.5,-5.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8037 - type: WallReinforced - components: - - pos: 11.5,-52.5 - parent: 60 - type: Transform -- uid: 8038 - type: WallSolid - components: - - pos: 4.5,-52.5 - parent: 60 - type: Transform -- uid: 8039 - type: hydroponicsTray - components: - - pos: 34.5,-31.5 - parent: 60 - type: Transform -- uid: 8040 - type: hydroponicsTray - components: - - pos: 35.5,-32.5 - parent: 60 - type: Transform -- uid: 8041 - type: hydroponicsTray - components: - - pos: 35.5,-30.5 - parent: 60 - type: Transform -- uid: 8042 - type: WallSolid - components: - - pos: 7.5,-52.5 - parent: 60 - type: Transform -- uid: 8043 - type: WallSolid - components: - - pos: 5.5,-52.5 - parent: 60 - type: Transform -- uid: 8044 - type: AirlockMaintLocked - components: - - name: arrivals maint - type: MetaData - - pos: 6.5,-52.5 - parent: 60 - type: Transform -- uid: 8045 - type: WallSolid - components: - - pos: 47.5,11.5 - parent: 60 - type: Transform -- uid: 8046 - type: WallSolid - components: - - pos: 35.5,4.5 - parent: 60 - type: Transform -- uid: 8047 - type: AirlockMaintSalvageLocked - components: - - name: Salvage Locker Room - type: MetaData - - pos: 35.5,-1.5 - parent: 60 - type: Transform -- uid: 8048 - type: WallReinforced - components: - - pos: 56.5,16.5 - parent: 60 - type: Transform -- uid: 8049 - type: WallSolid - components: - - pos: 35.5,1.5 - parent: 60 - type: Transform -- uid: 8050 - type: WallSolid - components: - - pos: 35.5,-0.5 - parent: 60 - type: Transform -- uid: 8051 - type: CableHV - components: - - pos: -12.5,-5.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8052 - type: CableHV - components: - - pos: -13.5,-5.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8053 - type: CableHV - components: - - pos: -10.5,-2.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8054 - type: CableHV - components: - - pos: -12.5,-2.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8055 - type: CableHV - components: - - pos: -5.5,-1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8056 - type: CableHV - components: - - pos: -5.5,-2.5 - parent: 7536 - type: Transform -- uid: 8057 - type: CableHV - components: - - pos: -6.5,-2.5 - parent: 7536 - type: Transform -- uid: 8058 - type: CableHV - components: - - pos: -7.5,-2.5 - parent: 7536 - type: Transform -- uid: 8059 - type: CableHV - components: - - pos: -8.5,-2.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8060 - type: CableHV - components: - - pos: -9.5,-2.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8061 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 7536 - type: Transform -- uid: 8062 - type: SubstationBasic - components: - - name: Syndicate Substation - type: MetaData - - pos: -5.5,-1.5 - parent: 7536 - type: Transform -- uid: 8063 - type: GeneratorPlasma - components: - - pos: -12.5,-2.5 - parent: 7536 - type: Transform -- uid: 8064 - type: LockerSyndicatePersonal - components: - - pos: -3.5,-1.5 - parent: 7536 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1493 - moles: - - 0.934759 - - 3.5164742 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 8069 - - 8065 - - 8070 - - 8071 - type: ContainerContainer -- uid: 8065 - type: ClothingHeadHelmetSyndicate - components: - - flags: InContainer - type: MetaData - - parent: 8064 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 8066 - type: WallSolid - components: - - pos: 8.5,-52.5 - parent: 60 - type: Transform -- uid: 8067 - type: WallSolid - components: - - pos: 9.5,-52.5 - parent: 60 - type: Transform -- uid: 8068 - type: WallSolid - components: - - pos: 10.5,-52.5 - parent: 60 - type: Transform -- uid: 8069 - type: ClothingUniformJumpsuitOperative - components: - - flags: InContainer - type: MetaData - - parent: 8064 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 8070 - type: ClothingUniformJumpskirtOperative - components: - - flags: InContainer - type: MetaData - - parent: 8064 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 8071 - type: ClothingOuterHardsuitSyndicate - components: - - flags: InContainer - type: MetaData - - parent: 8064 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 8072 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8073 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8074 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8075 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8076 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8077 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8078 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8079 - type: GasPipeTJunction - components: - - pos: -9.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8080 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8081 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8082 - type: WallSolid - components: - - pos: -45.5,-2.5 - parent: 60 - type: Transform -- uid: 8083 - type: WindoorSecure - components: - - pos: -11.5,-44.5 - parent: 60 - type: Transform -- uid: 8084 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8085 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8086 - type: GasPipeTJunction - components: - - pos: -4.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8087 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -9.5,-3.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8088 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -4.5,-3.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8089 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8090 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8091 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8092 - type: GasPipeTJunction - components: - - pos: -0.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8093 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8094 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8095 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8096 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8097 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8098 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8099 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8100 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8101 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8102 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8103 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8104 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8105 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8106 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -0.5,-3.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 8107 - type: AirCanister - components: - - pos: -17.5,-2.5 - parent: 7536 - type: Transform -- uid: 8108 - type: AirlockSecurityGlass - components: - - name: Syndicate Airlock - type: MetaData - - pos: -15.5,-2.5 - parent: 7536 - type: Transform -- uid: 8109 - type: WindoorSecure - components: - - rot: 3.141592653589793 rad - pos: -3.5,-2.5 - parent: 7536 - type: Transform -- uid: 8110 - type: APCBasic - components: - - pos: 5.5,-0.5 - parent: 7536 - type: Transform -- uid: 8111 - type: WindoorSecure - components: - - rot: 3.141592653589793 rad - pos: -5.5,-2.5 - parent: 7536 - type: Transform -- uid: 8112 - type: APCBasic - components: - - pos: -4.5,-1.5 - parent: 7536 - type: Transform -- uid: 8113 - type: APCBasic - components: - - pos: 9.5,-1.5 - parent: 7536 - type: Transform -- uid: 8114 - type: CableMV - components: - - pos: -5.5,-1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8115 - type: CableMV - components: - - pos: -5.5,-2.5 - parent: 7536 - type: Transform -- uid: 8116 - type: CableMV - components: - - pos: -4.5,-2.5 - parent: 7536 - type: Transform -- uid: 8117 - type: CableMV - components: - - pos: -4.5,-1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8118 - type: CableMV - components: - - pos: -4.5,-3.5 - parent: 7536 - type: Transform -- uid: 8119 - type: CableMV - components: - - pos: -3.5,-3.5 - parent: 7536 - type: Transform -- uid: 8120 - type: CableMV - components: - - pos: -2.5,-3.5 - parent: 7536 - type: Transform -- uid: 8121 - type: CableMV - components: - - pos: -1.5,-3.5 - parent: 7536 - type: Transform -- uid: 8122 - type: CableMV - components: - - pos: -0.5,-3.5 - parent: 7536 - type: Transform -- uid: 8123 - type: SpawnPointChiefEngineer - components: - - pos: 12.5,18.5 - parent: 60 - type: Transform -- uid: 8124 - type: CableMV - components: - - pos: -0.5,-2.5 - parent: 7536 - type: Transform -- uid: 8125 - type: CableMV - components: - - pos: -0.5,-1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8126 - type: CableMV - components: - - pos: 0.5,-1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8127 - type: WallReinforced - components: - - pos: -9.5,-47.5 - parent: 60 - type: Transform -- uid: 8128 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8129 - type: WallReinforced - components: - - pos: -9.5,-45.5 - parent: 60 - type: Transform -- uid: 8130 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-45.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8131 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-45.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8132 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-46.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8133 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-46.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8134 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-46.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8135 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-46.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8136 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-46.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8137 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-45.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8138 - type: AirlockSecurityGlassLocked - components: - - name: sec checkpoint - type: MetaData - - pos: -2.5,-46.5 - parent: 60 - type: Transform -- uid: 8139 - type: TableReinforced - components: - - pos: -2.5,-45.5 - parent: 60 - type: Transform -- uid: 8140 - type: ReinforcedWindow - components: - - pos: -2.5,-44.5 - parent: 60 - type: Transform -- uid: 8141 - type: Grille - components: - - pos: -2.5,-44.5 - parent: 60 - type: Transform -- uid: 8142 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-45.5 - parent: 60 - type: Transform -- uid: 8143 - type: CableMV - components: - - pos: 1.5,-1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8144 - type: PlushieLamp - components: - - pos: -8.538639,25.673088 - parent: 60 - type: Transform -- uid: 8145 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-45.5 - parent: 60 - type: Transform -- uid: 8146 - type: BaseComputer - components: - - pos: -109.5,11.5 - parent: 60 - type: Transform -- uid: 8147 - type: PosterContrabandBorgFancy - components: - - pos: -115.5,12.5 - parent: 60 - type: Transform -- uid: 8148 - type: WallmountTelevision - components: - - pos: -31.5,27.5 - parent: 60 - type: Transform -- uid: 8149 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -53.5,47.5 - parent: 60 - type: Transform -- uid: 8150 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -53.5,51.5 - parent: 60 - type: Transform -- uid: 8151 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,48.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8152 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -112.5,11.5 - parent: 60 - type: Transform -- uid: 8153 - type: Grille - components: - - pos: -4.5,-18.5 - parent: 60 - type: Transform -- uid: 8154 - type: AtmosFixOxygenMarker - components: - - pos: -50.5,49.5 - parent: 60 - type: Transform -- uid: 8155 - type: GasPassiveVent - components: - - pos: -51.5,47.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 8156 - type: SignRedTwo - components: - - pos: -34.5,22.5 - parent: 60 - type: Transform -- uid: 8157 - type: WeaponCapacitorRecharger - components: - - pos: -4.5,-44.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 8158 - type: NitrousOxideCanister - components: - - pos: -26.5,36.5 - parent: 60 - type: Transform -- uid: 8159 - type: WindowReinforcedDirectional - components: - - pos: -12.5,-44.5 - parent: 60 - type: Transform -- uid: 8160 - type: WindowReinforcedDirectional - components: - - pos: -10.5,-44.5 - parent: 60 - type: Transform -- uid: 8161 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-10.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7088 - type: SignalReceiver -- uid: 8162 - type: PowerCellRecharger - components: - - pos: -15.5,26.5 - parent: 60 - type: Transform -- uid: 8163 - type: Grille - components: - - pos: -46.5,-4.5 - parent: 60 - type: Transform -- uid: 8164 - type: Stool - components: - - pos: -44.5,-6.5 - parent: 60 - type: Transform -- uid: 8165 - type: WallSolid - components: - - pos: -46.5,1.5 - parent: 60 - type: Transform -- uid: 8166 - type: WaterCooler - components: - - pos: -47.5,-7.5 - parent: 60 - type: Transform -- uid: 8167 - type: WallReinforced - components: - - pos: -40.5,0.5 - parent: 60 - type: Transform -- uid: 8168 - type: FirelockGlass - components: - - pos: -39.5,-1.5 - parent: 60 - type: Transform -- uid: 8169 - type: Poweredlight - components: - - pos: -4.5,-44.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8170 - type: PoweredSmallLight - components: - - pos: -7.5,-44.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8171 - type: StorageCanister - components: - - pos: -50.5,47.5 - parent: 60 - type: Transform -- uid: 8172 - type: WallReinforced - components: - - pos: 20.5,3.5 - parent: 60 - type: Transform -- uid: 8173 - type: CableMV - components: - - pos: 2.5,-1.5 - parent: 7536 - type: Transform -- uid: 8174 - type: SignSecureMedRed - components: - - pos: -2.5,-47.5 - parent: 60 - type: Transform -- uid: 8175 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-48.5 - parent: 60 - type: Transform -- uid: 8176 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-48.5 - parent: 60 - type: Transform -- uid: 8177 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-50.5 - parent: 60 - type: Transform -- uid: 8178 - type: CableMV - components: - - pos: 3.5,-1.5 - parent: 7536 - type: Transform -- uid: 8179 - type: CableMV - components: - - pos: 4.5,-1.5 - parent: 7536 - type: Transform -- uid: 8180 - type: CableMV - components: - - pos: 5.5,-1.5 - parent: 7536 - type: Transform -- uid: 8181 - type: CableMV - components: - - pos: 5.5,-0.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8182 - type: CableMV - components: - - pos: 5.5,-2.5 - parent: 7536 - type: Transform -- uid: 8183 - type: PosterLegitNanotrasenLogo - components: - - pos: -4.5,-43.5 - parent: 60 - type: Transform -- uid: 8184 - type: PosterLegitHelpOthers - components: - - pos: 5.5,-52.5 - parent: 60 - type: Transform -- uid: 8185 - type: CableMV - components: - - pos: 6.5,-2.5 - parent: 7536 - type: Transform -- uid: 8186 - type: CableMV - components: - - pos: 7.5,-2.5 - parent: 7536 - type: Transform -- uid: 8187 - type: CableMV - components: - - pos: 8.5,-2.5 - parent: 7536 - type: Transform -- uid: 8188 - type: CableMV - components: - - pos: 9.5,-2.5 - parent: 7536 - type: Transform -- uid: 8189 - type: CableMV - components: - - pos: 9.5,-1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8190 - type: CableApcExtension - components: - - pos: 9.5,-1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8191 - type: CableApcExtension - components: - - pos: 9.5,-2.5 - parent: 7536 - type: Transform -- uid: 8192 - type: FirelockGlass - components: - - pos: 22.5,-34.5 - parent: 60 - type: Transform -- uid: 8193 - type: FirelockGlass - components: - - pos: 22.5,-33.5 - parent: 60 - type: Transform -- uid: 8194 - type: FirelockGlass - components: - - pos: 22.5,-32.5 - parent: 60 - type: Transform -- uid: 8195 - type: FirelockGlass - components: - - pos: 22.5,-31.5 - parent: 60 - type: Transform -- uid: 8196 - type: FirelockGlass - components: - - pos: 22.5,-30.5 - parent: 60 - type: Transform -- uid: 8197 - type: ClothingOuterWizardViolet - components: - - pos: 51.49708,-44.367695 - parent: 60 - type: Transform -- uid: 8198 - type: Table - components: - - pos: 35.5,-26.5 - parent: 60 - type: Transform -- uid: 8199 - type: CableMV - components: - - pos: 41.5,-45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8200 - type: Table - components: - - pos: 35.5,-27.5 - parent: 60 - type: Transform -- uid: 8201 - type: KitchenReagentGrinder - components: - - pos: 35.5,-26.5 - parent: 60 - type: Transform -- uid: 8202 - type: CableMV - components: - - pos: 41.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8203 - type: ClothingOuterArmorRiot - components: - - pos: -24.316319,1.574405 - parent: 60 - type: Transform -- uid: 8204 - type: GasPipeStraight - components: - - pos: -38.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8205 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -36.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8206 - type: GasPipeStraight - components: - - pos: -38.5,-2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8207 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8208 - type: ExtinguisherCabinetFilled - components: - - pos: 9.5,-31.5 - parent: 60 - type: Transform -- uid: 8209 - type: CableApcExtension - components: - - pos: 10.5,-2.5 - parent: 7536 - type: Transform -- uid: 8210 - type: ExtinguisherCabinetFilled - components: - - pos: -7.5,-43.5 - parent: 60 - type: Transform -- uid: 8211 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 39.5,-33.5 - parent: 60 - type: Transform -- uid: 8212 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8213 - type: WallReinforced - components: - - pos: -21.5,-17.5 - parent: 60 - type: Transform -- uid: 8214 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-4.5 - parent: 60 - type: Transform -- uid: 8215 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-5.5 - parent: 60 - type: Transform -- uid: 8216 - type: WallReinforced - components: - - pos: -58.5,-4.5 - parent: 60 - type: Transform -- uid: 8217 - type: WallReinforced - components: - - pos: -56.5,-4.5 - parent: 60 - type: Transform -- uid: 8218 - type: AirlockMaintLocked - components: - - pos: 35.5,5.5 - parent: 60 - type: Transform -- uid: 8219 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-31.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8220 - type: Poweredlight - components: - - pos: 8.5,-27.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8221 - type: CableHV - components: - - pos: -36.5,4.5 - parent: 60 - type: Transform -- uid: 8222 - type: SpawnMobMouse - components: - - pos: 29.5,-40.5 - parent: 60 - type: Transform -- uid: 8223 - type: GasPipeStraight - components: - - pos: -22.5,-8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8224 - type: GasPipeTJunction - components: - - pos: -31.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8225 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8226 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8227 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -25.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8228 - type: Chair - components: - - pos: -24.5,-18.5 - parent: 60 - type: Transform -- uid: 8229 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8230 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -24.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8231 - type: CableMV - components: - - pos: -31.5,-9.5 - parent: 60 - type: Transform -- uid: 8232 - type: CableMV - components: - - pos: -31.5,-12.5 - parent: 60 - type: Transform -- uid: 8233 - type: WindowReinforcedDirectional - components: - - pos: 13.5,22.5 - parent: 60 - type: Transform -- uid: 8234 - type: WindowReinforcedDirectional - components: - - pos: 12.5,22.5 - parent: 60 - type: Transform -- uid: 8235 - type: WallReinforced - components: - - pos: 9.5,30.5 - parent: 60 - type: Transform -- uid: 8236 - type: Catwalk - components: - - pos: 6.5,30.5 - parent: 60 - type: Transform -- uid: 8237 - type: MonkeyCubeWrapped - components: - - pos: 26.02446,-27.919643 - parent: 60 - type: Transform -- uid: 8238 - type: PaintingMonkey - components: - - pos: 10.5,-29.5 - parent: 60 - type: Transform -- uid: 8239 - type: MonkeyCubeWrapped - components: - - pos: 11.332857,-37.464973 - parent: 60 - type: Transform -- uid: 8240 - type: CableHV - components: - - pos: -34.5,4.5 - parent: 60 - type: Transform -- uid: 8241 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -36.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8242 - type: AirlockSecurityLocked - components: - - pos: -31.5,-19.5 - parent: 60 - type: Transform -- uid: 8243 - type: WallReinforced - components: - - pos: -31.5,-20.5 - parent: 60 - type: Transform -- uid: 8244 - type: APCBasic - components: - - pos: -32.5,-14.5 - parent: 60 - type: Transform -- uid: 8245 - type: CableMV - components: - - pos: -30.5,-15.5 - parent: 60 - type: Transform -- uid: 8246 - type: CableMV - components: - - pos: -31.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8247 - type: BannerSecurity - components: - - pos: -28.5,-2.5 - parent: 60 - type: Transform -- uid: 8248 - type: BannerSecurity - components: - - pos: -24.5,-2.5 - parent: 60 - type: Transform -- uid: 8249 - type: SignDirectionalSec - components: - - pos: -13.5,6.5 - parent: 60 - type: Transform -- uid: 8250 - type: SignDirectionalSec - components: - - pos: -35.5,6.5 - parent: 60 - type: Transform -- uid: 8251 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-19.5 - parent: 60 - type: Transform -- uid: 8252 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-19.5 - parent: 60 - type: Transform -- uid: 8253 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-19.5 - parent: 60 - type: Transform -- uid: 8254 - type: WallReinforced - components: - - pos: -42.5,15.5 - parent: 60 - type: Transform -- uid: 8255 - type: GasPipeBend - components: - - pos: -37.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8256 - type: AirlockChemistryLocked - components: - - name: chemistry - type: MetaData - - pos: 42.5,-31.5 - parent: 60 - type: Transform -- uid: 8257 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8258 - type: GasPipeStraight - components: - - pos: -32.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8259 - type: GasPipeStraight - components: - - pos: -32.5,-2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8260 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8261 - type: GasPipeStraight - components: - - pos: -30.5,-1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8262 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8263 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8264 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8265 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -31.5,1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8266 - type: WallReinforced - components: - - pos: -7.5,-21.5 - parent: 60 - type: Transform -- uid: 8267 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -32.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8268 - type: ReinforcedWindow - components: - - pos: -7.5,-20.5 - parent: 60 - type: Transform -- uid: 8269 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8270 - type: GasPipeStraight - components: - - pos: -30.5,-0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8271 - type: GasPipeBend - components: - - pos: -30.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8272 - type: CarpetSBlue - components: - - pos: 29.5,-13.5 - parent: 60 - type: Transform -- uid: 8273 - type: GasPipeStraight - components: - - pos: -32.5,-0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8274 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8275 - type: CableApcExtension - components: - - pos: 11.5,-2.5 - parent: 7536 - type: Transform -- uid: 8276 - type: CableApcExtension - components: - - pos: 12.5,-2.5 - parent: 7536 - type: Transform -- uid: 8277 - type: CableApcExtension - components: - - pos: -18.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8278 - type: CableApcExtension - components: - - pos: -19.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8279 - type: CableApcExtension - components: - - pos: -20.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8280 - type: CableApcExtension - components: - - pos: -21.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8281 - type: CableApcExtension - components: - - pos: -21.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8282 - type: CableApcExtension - components: - - pos: -22.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8283 - type: CableApcExtension - components: - - pos: -23.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8284 - type: CableApcExtension - components: - - pos: -24.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8285 - type: CableApcExtension - components: - - pos: -25.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8286 - type: CableApcExtension - components: - - pos: -26.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8287 - type: CableApcExtension - components: - - pos: -27.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8288 - type: CableApcExtension - components: - - pos: -28.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8289 - type: CableApcExtension - components: - - pos: -29.5,5.5 - parent: 60 - type: Transform -- uid: 8290 - type: CableApcExtension - components: - - pos: -34.5,5.5 - parent: 60 - type: Transform -- uid: 8291 - type: CableApcExtension - components: - - pos: -33.5,5.5 - parent: 60 - type: Transform -- uid: 8292 - type: CableApcExtension - components: - - pos: -30.5,5.5 - parent: 60 - type: Transform -- uid: 8293 - type: CableApcExtension - components: - - pos: -31.5,5.5 - parent: 60 - type: Transform -- uid: 8294 - type: CableApcExtension - components: - - pos: -32.5,5.5 - parent: 60 - type: Transform -- uid: 8295 - type: CableApcExtension - components: - - pos: -32.5,4.5 - parent: 60 - type: Transform -- uid: 8296 - type: CableApcExtension - components: - - pos: -32.5,3.5 - parent: 60 - type: Transform -- uid: 8297 - type: CableApcExtension - components: - - pos: -32.5,2.5 - parent: 60 - type: Transform -- uid: 8298 - type: WallSolid - components: - - pos: 35.5,3.5 - parent: 60 - type: Transform -- uid: 8299 - type: WallSolid - components: - - pos: 35.5,0.5 - parent: 60 - type: Transform -- uid: 8300 - type: Window - components: - - pos: 47.5,9.5 - parent: 60 - type: Transform -- uid: 8301 - type: Table - components: - - pos: -66.5,13.5 - parent: 60 - type: Transform -- uid: 8302 - type: RandomPosterAny - components: - - pos: -64.5,14.5 - parent: 60 - type: Transform -- uid: 8303 - type: RandomSpawner - components: - - pos: -63.5,-12.5 - parent: 60 - type: Transform -- uid: 8304 - type: MaintenanceFluffSpawner - components: - - pos: -64.5,2.5 - parent: 60 - type: Transform -- uid: 8305 - type: RandomSpawner - components: - - pos: -58.5,-13.5 - parent: 60 - type: Transform -- uid: 8306 - type: CableHV - components: - - pos: -72.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8307 - type: Catwalk - components: - - pos: -70.5,-23.5 - parent: 60 - type: Transform -- uid: 8308 - type: CableHV - components: - - pos: -74.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8309 - type: SolarPanel - components: - - pos: -82.5,-24.5 - parent: 60 - type: Transform -- uid: 8310 - type: Catwalk - components: - - pos: -77.5,-16.5 - parent: 60 - type: Transform -- uid: 8311 - type: Catwalk - components: - - pos: -73.5,-20.5 - parent: 60 - type: Transform -- uid: 8312 - type: CableHV - components: - - pos: 39.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8313 - type: CableHV - components: - - pos: -72.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8314 - type: CableHV - components: - - pos: -72.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8315 - type: CableApcExtension - components: - - pos: -56.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8316 - type: GrilleBroken - components: - - pos: -56.5,-15.5 - parent: 60 - type: Transform -- uid: 8317 - type: Table - components: - - pos: -58.5,-17.5 - parent: 60 - type: Transform -- uid: 8318 - type: CableApcExtension - components: - - pos: -61.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8319 - type: CableApcExtension - components: - - pos: -52.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8320 - type: WallSolid - components: - - pos: -60.5,-15.5 - parent: 60 - type: Transform -- uid: 8321 - type: CableApcExtension - components: - - pos: -60.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8322 - type: CableApcExtension - components: - - pos: -59.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8323 - type: TableGlass - components: - - pos: -63.5,-15.5 - parent: 60 - type: Transform -- uid: 8324 - type: WallSolid - components: - - pos: -54.5,-14.5 - parent: 60 - type: Transform -- uid: 8325 - type: CableApcExtension - components: - - pos: -59.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8326 - type: CableApcExtension - components: - - pos: -32.5,1.5 - parent: 60 - type: Transform -- uid: 8327 - type: CableApcExtension - components: - - pos: -32.5,0.5 - parent: 60 - type: Transform -- uid: 8328 - type: CableApcExtension - components: - - pos: -34.5,-0.5 - parent: 60 - type: Transform -- uid: 8329 - type: CableApcExtension - components: - - pos: -33.5,-0.5 - parent: 60 - type: Transform -- uid: 8330 - type: CableApcExtension - components: - - pos: -32.5,-0.5 - parent: 60 - type: Transform -- uid: 8331 - type: CableApcExtension - components: - - pos: -31.5,-0.5 - parent: 60 - type: Transform -- uid: 8332 - type: CableApcExtension - components: - - pos: -30.5,-0.5 - parent: 60 - type: Transform -- uid: 8333 - type: CableApcExtension - components: - - pos: -30.5,-1.5 - parent: 60 - type: Transform -- uid: 8334 - type: CableApcExtension - components: - - pos: -30.5,-2.5 - parent: 60 - type: Transform -- uid: 8335 - type: CableApcExtension - components: - - pos: -34.5,-3.5 - parent: 60 - type: Transform -- uid: 8336 - type: CableApcExtension - components: - - pos: -33.5,-3.5 - parent: 60 - type: Transform -- uid: 8337 - type: CableApcExtension - components: - - pos: -32.5,-3.5 - parent: 60 - type: Transform -- uid: 8338 - type: CableApcExtension - components: - - pos: -31.5,-3.5 - parent: 60 - type: Transform -- uid: 8339 - type: CableApcExtension - components: - - pos: -30.5,-3.5 - parent: 60 - type: Transform -- uid: 8340 - type: CableApcExtension - components: - - pos: -24.5,-9.5 - parent: 60 - type: Transform -- uid: 8341 - type: CableApcExtension - components: - - pos: -28.5,-9.5 - parent: 60 - type: Transform -- uid: 8342 - type: CableApcExtension - components: - - pos: -27.5,-9.5 - parent: 60 - type: Transform -- uid: 8343 - type: CableApcExtension - components: - - pos: -25.5,-9.5 - parent: 60 - type: Transform -- uid: 8344 - type: CableApcExtension - components: - - pos: -26.5,-11.5 - parent: 60 - type: Transform -- uid: 8345 - type: CableApcExtension - components: - - pos: -26.5,-10.5 - parent: 60 - type: Transform -- uid: 8346 - type: CableApcExtension - components: - - pos: -26.5,-9.5 - parent: 60 - type: Transform -- uid: 8347 - type: CableApcExtension - components: - - pos: -26.5,-8.5 - parent: 60 - type: Transform -- uid: 8348 - type: CableApcExtension - components: - - pos: -26.5,-7.5 - parent: 60 - type: Transform -- uid: 8349 - type: CableApcExtension - components: - - pos: -26.5,-6.5 - parent: 60 - type: Transform -- uid: 8350 - type: CableApcExtension - components: - - pos: -26.5,-5.5 - parent: 60 - type: Transform -- uid: 8351 - type: CableApcExtension - components: - - pos: -25.5,1.5 - parent: 60 - type: Transform -- uid: 8352 - type: CableApcExtension - components: - - pos: -27.5,1.5 - parent: 60 - type: Transform -- uid: 8353 - type: CableApcExtension - components: - - pos: -26.5,2.5 - parent: 60 - type: Transform -- uid: 8354 - type: TintedWindow - components: - - pos: -55.5,-12.5 - parent: 60 - type: Transform -- uid: 8355 - type: WallSolid - components: - - pos: -60.5,-11.5 - parent: 60 - type: Transform -- uid: 8356 - type: CableApcExtension - components: - - pos: -60.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8357 - type: CableApcExtension - components: - - pos: -53.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8358 - type: AirlockExternalGlassCargoLocked - components: - - pos: 52.5,0.5 - parent: 60 - type: Transform -- uid: 8359 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-2.5 - parent: 60 - type: Transform -- uid: 8360 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-0.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 5805 - Forward: - - port: Left - uid: 5805 - Off: - - port: Middle - uid: 5805 - type: SignalReceiver -- uid: 8361 - type: ReinforcedWindow - components: - - pos: 50.5,-17.5 - parent: 60 - type: Transform -- uid: 8362 - type: ReinforcedWindow - components: - - pos: 50.5,-18.5 - parent: 60 - type: Transform -- uid: 8363 - type: ReinforcedWindow - components: - - pos: 52.5,18.5 - parent: 60 - type: Transform -- uid: 8364 - type: Catwalk - components: - - pos: -67.5,-25.5 - parent: 60 - type: Transform -- uid: 8365 - type: Catwalk - components: - - pos: -65.5,-25.5 - parent: 60 - type: Transform -- uid: 8366 - type: Catwalk - components: - - pos: -63.5,-25.5 - parent: 60 - type: Transform -- uid: 8367 - type: Grille - components: - - pos: -84.5,-10.5 - parent: 60 - type: Transform -- uid: 8368 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -86.5,-10.5 - parent: 60 - type: Transform -- uid: 8369 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -85.5,-10.5 - parent: 60 - type: Transform -- uid: 8370 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -84.5,-26.5 - parent: 60 - type: Transform -- uid: 8371 - type: Grille - components: - - pos: -73.5,-26.5 - parent: 60 - type: Transform -- uid: 8372 - type: Grille - components: - - pos: -75.5,-26.5 - parent: 60 - type: Transform -- uid: 8373 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -88.5,-21.5 - parent: 60 - type: Transform -- uid: 8374 - type: Grille - components: - - pos: -79.5,-26.5 - parent: 60 - type: Transform -- uid: 8375 - type: Grille - components: - - pos: -81.5,-26.5 - parent: 60 - type: Transform -- uid: 8376 - type: Catwalk - components: - - pos: -70.5,-25.5 - parent: 60 - type: Transform -- uid: 8377 - type: Catwalk - components: - - pos: -64.5,-25.5 - parent: 60 - type: Transform -- uid: 8378 - type: CableApcExtension - components: - - pos: 8.5,-2.5 - parent: 7536 - type: Transform -- uid: 8379 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,24.5 - parent: 60 - type: Transform -- uid: 8380 - type: KitchenMicrowave - components: - - pos: -34.5,2.5 - parent: 60 - type: Transform -- uid: 8381 - type: ShuttersNormalOpen - components: - - pos: -13.5,-52.5 - parent: 60 - type: Transform -- uid: 8382 - type: ShuttersNormalOpen - components: - - pos: -12.5,-52.5 - parent: 60 - type: Transform -- uid: 8383 - type: ChairOfficeDark - components: - - pos: -10.5,-27.5 - parent: 60 - type: Transform -- uid: 8384 - type: FoodCakeBirthdaySlice - components: - - pos: 9.499123,-36.336754 - parent: 60 - type: Transform -- uid: 8385 - type: FoodSoupMiso - components: - - pos: -13.380473,-50.322884 - parent: 60 - type: Transform -- uid: 8386 - type: GasPipeStraight - components: - - pos: -22.5,-10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8387 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8388 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -37.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8389 - type: ReagentContainerFlour - components: - - pos: 24.49998,-34.565224 - parent: 60 - type: Transform - - tags: [] - type: Tag -- uid: 8390 - type: FoodBakedCookieFortune - components: - - pos: -13.272091,-52.419376 - parent: 60 - type: Transform -- uid: 8391 - type: CableApcExtension - components: - - pos: 5.5,-0.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8392 - type: CableApcExtension - components: - - pos: -26.5,1.5 - parent: 60 - type: Transform -- uid: 8393 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -11.5,-52.5 - parent: 60 - type: Transform -- uid: 8394 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -12.5,-52.5 - parent: 60 - type: Transform -- uid: 8395 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -13.5,-52.5 - parent: 60 - type: Transform -- uid: 8396 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,-50.5 - parent: 60 - type: Transform -- uid: 8397 - type: TableWood - components: - - pos: -13.5,-50.5 - parent: 60 - type: Transform -- uid: 8398 - type: TableWood - components: - - pos: -12.5,-50.5 - parent: 60 - type: Transform -- uid: 8399 - type: TableWood - components: - - pos: -11.5,-50.5 - parent: 60 - type: Transform -- uid: 8400 - type: FoodRiceEgg - components: - - pos: -12.063588,-50.214176 - parent: 60 - type: Transform -- uid: 8401 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8402 - type: CarbonDioxideCanister - components: - - pos: -27.5,35.5 - parent: 60 - type: Transform -- uid: 8403 - type: PoweredSmallLight - components: - - pos: -13.5,-50.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8404 - type: ClosetBase - components: - - pos: -11.26664,-51.441635 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.877957 - - 7.0646954 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8405 - type: CableApcExtension - components: - - pos: 5.5,-1.5 - parent: 7536 - type: Transform -- uid: 8406 - type: CableApcExtension - components: - - pos: 5.5,-2.5 - parent: 7536 - type: Transform -- uid: 8407 - type: CableApcExtension - components: - - pos: 5.5,-3.5 - parent: 7536 - type: Transform -- uid: 8408 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -13.5,-52.5 - parent: 60 - type: Transform -- uid: 8409 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -12.5,-52.5 - parent: 60 - type: Transform -- uid: 8410 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -11.5,-52.5 - parent: 60 - type: Transform -- uid: 8411 - type: PosterContrabandShamblersJuice - components: - - pos: -10.5,-52.5 - parent: 60 - type: Transform -- uid: 8412 - type: FoodRiceBoiled - components: - - pos: -12.53384,-50.273567 - parent: 60 - type: Transform -- uid: 8413 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -26.5,-3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8414 - type: WallSolid - components: - - pos: -8.5,-52.5 - parent: 60 - type: Transform -- uid: 8415 - type: Catwalk - components: - - pos: -66.5,-25.5 - parent: 60 - type: Transform -- uid: 8416 - type: CableApcExtension - components: - - pos: -26.5,0.5 - parent: 60 - type: Transform -- uid: 8417 - type: CableApcExtension - components: - - pos: -26.5,-0.5 - parent: 60 - type: Transform -- uid: 8418 - type: CableApcExtension - components: - - pos: -26.5,-1.5 - parent: 60 - type: Transform -- uid: 8419 - type: CableApcExtension - components: - - pos: -26.5,-2.5 - parent: 60 - type: Transform -- uid: 8420 - type: CableApcExtension - components: - - pos: -26.5,-3.5 - parent: 60 - type: Transform -- uid: 8421 - type: CableApcExtension - components: - - pos: -21.5,1.5 - parent: 60 - type: Transform -- uid: 8422 - type: Catwalk - components: - - pos: -68.5,-25.5 - parent: 60 - type: Transform -- uid: 8423 - type: Catwalk - components: - - pos: -63.5,-26.5 - parent: 60 - type: Transform -- uid: 8424 - type: CableApcExtension - components: - - pos: -20.5,1.5 - parent: 60 - type: Transform -- uid: 8425 - type: CableApcExtension - components: - - pos: -19.5,1.5 - parent: 60 - type: Transform -- uid: 8426 - type: Catwalk - components: - - pos: -61.5,-26.5 - parent: 60 - type: Transform -- uid: 8427 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-4.5 - parent: 60 - type: Transform -- uid: 8428 - type: CableApcExtension - components: - - pos: -19.5,0.5 - parent: 60 - type: Transform -- uid: 8429 - type: CableApcExtension - components: - - pos: -19.5,-0.5 - parent: 60 - type: Transform -- uid: 8430 - type: CableApcExtension - components: - - pos: -20.5,-0.5 - parent: 60 - type: Transform -- uid: 8431 - type: CableApcExtension - components: - - pos: -21.5,-0.5 - parent: 60 - type: Transform -- uid: 8432 - type: WallReinforced - components: - - pos: -58.5,-1.5 - parent: 60 - type: Transform -- uid: 8433 - type: CableApcExtension - components: - - pos: -21.5,-1.5 - parent: 60 - type: Transform -- uid: 8434 - type: CableApcExtension - components: - - pos: -21.5,-2.5 - parent: 60 - type: Transform -- uid: 8435 - type: Catwalk - components: - - pos: -73.5,-16.5 - parent: 60 - type: Transform -- uid: 8436 - type: CableApcExtension - components: - - pos: -18.5,-3.5 - parent: 60 - type: Transform -- uid: 8437 - type: CableApcExtension - components: - - pos: -19.5,-3.5 - parent: 60 - type: Transform -- uid: 8438 - type: CableApcExtension - components: - - pos: -20.5,-3.5 - parent: 60 - type: Transform -- uid: 8439 - type: CableApcExtension - components: - - pos: -21.5,-3.5 - parent: 60 - type: Transform -- uid: 8440 - type: CableApcExtension - components: - - pos: -21.5,-4.5 - parent: 60 - type: Transform -- uid: 8441 - type: CableApcExtension - components: - - pos: -22.5,-4.5 - parent: 60 - type: Transform -- uid: 8442 - type: CableApcExtension - components: - - pos: -23.5,-4.5 - parent: 60 - type: Transform -- uid: 8443 - type: CableApcExtension - components: - - pos: -24.5,-4.5 - parent: 60 - type: Transform -- uid: 8444 - type: CableApcExtension - components: - - pos: -25.5,-4.5 - parent: 60 - type: Transform -- uid: 8445 - type: CableApcExtension - components: - - pos: -26.5,-4.5 - parent: 60 - type: Transform -- uid: 8446 - type: CableApcExtension - components: - - pos: -27.5,-4.5 - parent: 60 - type: Transform -- uid: 8447 - type: CableApcExtension - components: - - pos: -28.5,-4.5 - parent: 60 - type: Transform -- uid: 8448 - type: CableApcExtension - components: - - pos: -29.5,-4.5 - parent: 60 - type: Transform -- uid: 8449 - type: CableApcExtension - components: - - pos: -29.5,-3.5 - parent: 60 - type: Transform -- uid: 8450 - type: CableApcExtension - components: - - pos: -29.5,-2.5 - parent: 60 - type: Transform -- uid: 8451 - type: CableApcExtension - components: - - pos: -29.5,-1.5 - parent: 60 - type: Transform -- uid: 8452 - type: CableApcExtension - components: - - pos: -34.5,-6.5 - parent: 60 - type: Transform -- uid: 8453 - type: CableApcExtension - components: - - pos: -33.5,-6.5 - parent: 60 - type: Transform -- uid: 8454 - type: CableApcExtension - components: - - pos: -32.5,-6.5 - parent: 60 - type: Transform -- uid: 8455 - type: CableApcExtension - components: - - pos: -31.5,-6.5 - parent: 60 - type: Transform -- uid: 8456 - type: CableApcExtension - components: - - pos: -34.5,-9.5 - parent: 60 - type: Transform -- uid: 8457 - type: CableApcExtension - components: - - pos: -33.5,-9.5 - parent: 60 - type: Transform -- uid: 8458 - type: CableApcExtension - components: - - pos: -32.5,-9.5 - parent: 60 - type: Transform -- uid: 8459 - type: WallReinforced - components: - - pos: -49.5,10.5 - parent: 60 - type: Transform -- uid: 8460 - type: AirlockResearchDirectorLocked - components: - - name: Server Room - type: MetaData - - pos: -50.5,10.5 - parent: 60 - type: Transform -- uid: 8461 - type: WallReinforced - components: - - pos: -51.5,10.5 - parent: 60 - type: Transform -- uid: 8462 - type: CableApcExtension - components: - - pos: -31.5,-9.5 - parent: 60 - type: Transform -- uid: 8463 - type: CableApcExtension - components: - - pos: -34.5,-12.5 - parent: 60 - type: Transform -- uid: 8464 - type: CableApcExtension - components: - - pos: -33.5,-12.5 - parent: 60 - type: Transform -- uid: 8465 - type: CableApcExtension - components: - - pos: -32.5,-12.5 - parent: 60 - type: Transform -- uid: 8466 - type: FirelockGlass - components: - - pos: -21.5,-8.5 - parent: 60 - type: Transform -- uid: 8467 - type: CableApcExtension - components: - - pos: -31.5,-12.5 - parent: 60 - type: Transform -- uid: 8468 - type: CableApcExtension - components: - - pos: -30.5,-6.5 - parent: 60 - type: Transform -- uid: 8469 - type: CableApcExtension - components: - - pos: -30.5,-7.5 - parent: 60 - type: Transform -- uid: 8470 - type: CableApcExtension - components: - - pos: -30.5,-8.5 - parent: 60 - type: Transform -- uid: 8471 - type: CableApcExtension - components: - - pos: -30.5,-9.5 - parent: 60 - type: Transform -- uid: 8472 - type: CableApcExtension - components: - - pos: -30.5,-10.5 - parent: 60 - type: Transform -- uid: 8473 - type: CableApcExtension - components: - - pos: -30.5,-11.5 - parent: 60 - type: Transform -- uid: 8474 - type: CableApcExtension - components: - - pos: -30.5,-12.5 - parent: 60 - type: Transform -- uid: 8475 - type: CableApcExtension - components: - - pos: -30.5,-13.5 - parent: 60 - type: Transform -- uid: 8476 - type: CableApcExtension - components: - - pos: -30.5,-14.5 - parent: 60 - type: Transform -- uid: 8477 - type: CableApcExtension - components: - - pos: -18.5,-12.5 - parent: 60 - type: Transform -- uid: 8478 - type: CableApcExtension - components: - - pos: -19.5,-12.5 - parent: 60 - type: Transform -- uid: 8479 - type: CableApcExtension - components: - - pos: -20.5,-12.5 - parent: 60 - type: Transform -- uid: 8480 - type: CableApcExtension - components: - - pos: -21.5,-12.5 - parent: 60 - type: Transform -- uid: 8481 - type: CableApcExtension - components: - - pos: -18.5,-9.5 - parent: 60 - type: Transform -- uid: 8482 - type: CableApcExtension - components: - - pos: -19.5,-9.5 - parent: 60 - type: Transform -- uid: 8483 - type: CableApcExtension - components: - - pos: -20.5,-9.5 - parent: 60 - type: Transform -- uid: 8484 - type: CableApcExtension - components: - - pos: -21.5,-9.5 - parent: 60 - type: Transform -- uid: 8485 - type: Catwalk - components: - - pos: -73.5,-19.5 - parent: 60 - type: Transform -- uid: 8486 - type: Catwalk - components: - - pos: -73.5,-21.5 - parent: 60 - type: Transform -- uid: 8487 - type: Catwalk - components: - - pos: -73.5,-23.5 - parent: 60 - type: Transform -- uid: 8488 - type: Catwalk - components: - - pos: -77.5,-19.5 - parent: 60 - type: Transform -- uid: 8489 - type: Catwalk - components: - - pos: -77.5,-21.5 - parent: 60 - type: Transform -- uid: 8490 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-2.5 - parent: 60 - type: Transform -- uid: 8491 - type: Catwalk - components: - - pos: -78.5,-18.5 - parent: 60 - type: Transform -- uid: 8492 - type: WallReinforced - components: - - pos: -57.5,-4.5 - parent: 60 - type: Transform -- uid: 8493 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-3.5 - parent: 60 - type: Transform -- uid: 8494 - type: Catwalk - components: - - pos: -80.5,-18.5 - parent: 60 - type: Transform -- uid: 8495 - type: Window - components: - - pos: -46.5,-4.5 - parent: 60 - type: Transform -- uid: 8496 - type: RandomArtifactSpawner - components: - - pos: -49.5,16.5 - parent: 60 - type: Transform -- uid: 8497 - type: WallReinforced - components: - - pos: -62.5,-6.5 - parent: 60 - type: Transform -- uid: 8498 - type: WallReinforced - components: - - pos: -58.5,-3.5 - parent: 60 - type: Transform -- uid: 8499 - type: ResearchAndDevelopmentServer - components: - - pos: -51.5,9.5 - parent: 60 - type: Transform -- uid: 8500 - type: Catwalk - components: - - pos: -82.5,-18.5 - parent: 60 - type: Transform -- uid: 8501 - type: Catwalk - components: - - pos: -84.5,-18.5 - parent: 60 - type: Transform -- uid: 8502 - type: FirelockGlass - components: - - pos: -23.5,-9.5 - parent: 60 - type: Transform -- uid: 8503 - type: CableApcExtension - components: - - pos: -19.5,-6.5 - parent: 60 - type: Transform -- uid: 8504 - type: CableApcExtension - components: - - pos: -18.5,-6.5 - parent: 60 - type: Transform -- uid: 8505 - type: CableApcExtension - components: - - pos: -21.5,-6.5 - parent: 60 - type: Transform -- uid: 8506 - type: CableApcExtension - components: - - pos: -20.5,-6.5 - parent: 60 - type: Transform -- uid: 8507 - type: CableApcExtension - components: - - pos: -22.5,-6.5 - parent: 60 - type: Transform -- uid: 8508 - type: CableApcExtension - components: - - pos: -22.5,-7.5 - parent: 60 - type: Transform -- uid: 8509 - type: CableApcExtension - components: - - pos: -22.5,-8.5 - parent: 60 - type: Transform -- uid: 8510 - type: CableApcExtension - components: - - pos: -22.5,-9.5 - parent: 60 - type: Transform -- uid: 8511 - type: CableApcExtension - components: - - pos: -22.5,-10.5 - parent: 60 - type: Transform -- uid: 8512 - type: CableApcExtension - components: - - pos: -22.5,-11.5 - parent: 60 - type: Transform -- uid: 8513 - type: CableApcExtension - components: - - pos: -22.5,-12.5 - parent: 60 - type: Transform -- uid: 8514 - type: CableApcExtension - components: - - pos: -22.5,-13.5 - parent: 60 - type: Transform -- uid: 8515 - type: CableApcExtension - components: - - pos: -22.5,-14.5 - parent: 60 - type: Transform -- uid: 8516 - type: CableApcExtension - components: - - pos: -19.5,-16.5 - parent: 60 - type: Transform -- uid: 8517 - type: CableApcExtension - components: - - pos: -20.5,-15.5 - parent: 60 - type: Transform -- uid: 8518 - type: CableApcExtension - components: - - pos: -19.5,-15.5 - parent: 60 - type: Transform -- uid: 8519 - type: CableApcExtension - components: - - pos: -21.5,-15.5 - parent: 60 - type: Transform -- uid: 8520 - type: CableApcExtension - components: - - pos: -22.5,-15.5 - parent: 60 - type: Transform -- uid: 8521 - type: FirelockGlass - components: - - pos: -29.5,-9.5 - parent: 60 - type: Transform -- uid: 8522 - type: AirlockExternalGlassLocked - components: - - pos: -18.5,-35.5 - parent: 60 - type: Transform -- uid: 8523 - type: CableApcExtension - components: - - pos: -23.5,-15.5 - parent: 60 - type: Transform -- uid: 8524 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-19.5 - parent: 60 - type: Transform -- uid: 8525 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-20.5 - parent: 60 - type: Transform -- uid: 8526 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-17.5 - parent: 60 - type: Transform -- uid: 8527 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-17.5 - parent: 60 - type: Transform -- uid: 8528 - type: Grille - components: - - pos: -17.5,-6.5 - parent: 60 - type: Transform -- uid: 8529 - type: Catwalk - components: - - pos: -86.5,-18.5 - parent: 60 - type: Transform -- uid: 8530 - type: MedkitOxygenFilled - components: - - pos: 24.473473,-44.545494 - parent: 60 - type: Transform -- uid: 8531 - type: CableApcExtension - components: - - pos: 4.5,-1.5 - parent: 7536 - type: Transform -- uid: 8532 - type: AirlockMedicalGlassLocked - components: - - pos: 33.5,-21.5 - parent: 60 - type: Transform -- uid: 8533 - type: GasPipeStraight - components: - - pos: 17.5,20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8534 - type: GasPipeStraight - components: - - pos: 17.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8535 - type: GasPipeStraight - components: - - pos: 17.5,22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8536 - type: DisposalPipe - components: - - pos: 16.5,18.5 - parent: 60 - type: Transform -- uid: 8537 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 15.5,19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8538 - type: GasPipeStraight - components: - - pos: 15.5,20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8539 - type: GasPipeStraight - components: - - pos: 15.5,21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8540 - type: GasPipeStraight - components: - - pos: 15.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8541 - type: GasPipeStraight - components: - - pos: 15.5,23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8542 - type: Catwalk - components: - - pos: -88.5,-18.5 - parent: 60 - type: Transform -- uid: 8543 - type: DisposalPipe - components: - - pos: 16.5,19.5 - parent: 60 - type: Transform -- uid: 8544 - type: DisposalPipe - components: - - pos: 16.5,20.5 - parent: 60 - type: Transform -- uid: 8545 - type: DisposalPipe - components: - - pos: 16.5,21.5 - parent: 60 - type: Transform -- uid: 8546 - type: DisposalPipe - components: - - pos: 16.5,22.5 - parent: 60 - type: Transform -- uid: 8547 - type: DisposalPipe - components: - - pos: 16.5,23.5 - parent: 60 - type: Transform -- uid: 8548 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 15.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8549 - type: Catwalk - components: - - pos: -85.5,-24.5 - parent: 60 - type: Transform -- uid: 8550 - type: Catwalk - components: - - pos: -81.5,-13.5 - parent: 60 - type: Transform -- uid: 8551 - type: Catwalk - components: - - pos: -81.5,-15.5 - parent: 60 - type: Transform -- uid: 8552 - type: Catwalk - components: - - pos: -81.5,-17.5 - parent: 60 - type: Transform -- uid: 8553 - type: Catwalk - components: - - pos: -85.5,-13.5 - parent: 60 - type: Transform -- uid: 8554 - type: Catwalk - components: - - pos: -85.5,-15.5 - parent: 60 - type: Transform -- uid: 8555 - type: Catwalk - components: - - pos: -70.5,-22.5 - parent: 60 - type: Transform -- uid: 8556 - type: Catwalk - components: - - pos: -70.5,-20.5 - parent: 60 - type: Transform -- uid: 8557 - type: Catwalk - components: - - pos: -77.5,-13.5 - parent: 60 - type: Transform -- uid: 8558 - type: Catwalk - components: - - pos: -77.5,-15.5 - parent: 60 - type: Transform -- uid: 8559 - type: Catwalk - components: - - pos: -77.5,-17.5 - parent: 60 - type: Transform -- uid: 8560 - type: Catwalk - components: - - pos: -73.5,-13.5 - parent: 60 - type: Transform -- uid: 8561 - type: Grille - components: - - pos: -91.5,-18.5 - parent: 60 - type: Transform -- uid: 8562 - type: CableApcExtension - components: - - pos: 3.5,-1.5 - parent: 7536 - type: Transform -- uid: 8563 - type: TableReinforced - components: - - pos: -67.5,9.5 - parent: 60 - type: Transform -- uid: 8564 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -29.5,16.5 - parent: 60 - type: Transform -- uid: 8565 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 60 - type: Transform -- uid: 8566 - type: Catwalk - components: - - pos: -58.5,-26.5 - parent: 60 - type: Transform -- uid: 8567 - type: Grille - components: - - pos: -71.5,-10.5 - parent: 60 - type: Transform -- uid: 8568 - type: Grille - components: - - pos: -73.5,-10.5 - parent: 60 - type: Transform -- uid: 8569 - type: CableApcExtension - components: - - pos: -30.5,-15.5 - parent: 60 - type: Transform -- uid: 8570 - type: CableApcExtension - components: - - pos: -29.5,-15.5 - parent: 60 - type: Transform -- uid: 8571 - type: CableApcExtension - components: - - pos: -28.5,-15.5 - parent: 60 - type: Transform -- uid: 8572 - type: CableApcExtension - components: - - pos: -27.5,-15.5 - parent: 60 - type: Transform -- uid: 8573 - type: CableApcExtension - components: - - pos: -26.5,-15.5 - parent: 60 - type: Transform -- uid: 8574 - type: CableApcExtension - components: - - pos: -25.5,-15.5 - parent: 60 - type: Transform -- uid: 8575 - type: CableApcExtension - components: - - pos: -24.5,-15.5 - parent: 60 - type: Transform -- uid: 8576 - type: CableApcExtension - components: - - pos: -24.5,-16.5 - parent: 60 - type: Transform -- uid: 8577 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8578 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8579 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8580 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8581 - type: CableMV - components: - - pos: -28.5,-15.5 - parent: 60 - type: Transform -- uid: 8582 - type: CableApcExtension - components: - - pos: -19.5,-18.5 - parent: 60 - type: Transform -- uid: 8583 - type: Grille - components: - - pos: -75.5,-10.5 - parent: 60 - type: Transform -- uid: 8584 - type: Grille - components: - - pos: -77.5,-10.5 - parent: 60 - type: Transform -- uid: 8585 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -80.5,-10.5 - parent: 60 - type: Transform -- uid: 8586 - type: Window - components: - - pos: 38.5,-18.5 - parent: 60 - type: Transform -- uid: 8587 - type: Grille - components: - - pos: -81.5,-10.5 - parent: 60 - type: Transform -- uid: 8588 - type: Catwalk - components: - - pos: -70.5,-16.5 - parent: 60 - type: Transform -- uid: 8589 - type: Catwalk - components: - - pos: -70.5,-17.5 - parent: 60 - type: Transform -- uid: 8590 - type: CableApcExtension - components: - - pos: -19.5,-20.5 - parent: 60 - type: Transform -- uid: 8591 - type: Catwalk - components: - - pos: -70.5,-15.5 - parent: 60 - type: Transform -- uid: 8592 - type: Grille - components: - - pos: -85.5,-26.5 - parent: 60 - type: Transform -- uid: 8593 - type: Grille - components: - - pos: -86.5,-26.5 - parent: 60 - type: Transform -- uid: 8594 - type: Grille - components: - - pos: -87.5,-26.5 - parent: 60 - type: Transform -- uid: 8595 - type: CableApcExtension - components: - - pos: -18.5,-19.5 - parent: 60 - type: Transform -- uid: 8596 - type: CableApcExtension - components: - - pos: -19.5,-19.5 - parent: 60 - type: Transform -- uid: 8597 - type: CableApcExtension - components: - - pos: -20.5,-19.5 - parent: 60 - type: Transform -- uid: 8598 - type: CableApcExtension - components: - - pos: -21.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8599 - type: Catwalk - components: - - pos: -77.5,-22.5 - parent: 60 - type: Transform -- uid: 8600 - type: Catwalk - components: - - pos: -77.5,-23.5 - parent: 60 - type: Transform -- uid: 8601 - type: CableApcExtension - components: - - pos: -22.5,-19.5 - parent: 60 - type: Transform -- uid: 8602 - type: Grille - components: - - pos: -35.5,-9.5 - parent: 60 - type: Transform -- uid: 8603 - type: Catwalk - components: - - pos: -77.5,-24.5 - parent: 60 - type: Transform -- uid: 8604 - type: Catwalk - components: - - pos: -81.5,-19.5 - parent: 60 - type: Transform -- uid: 8605 - type: Catwalk - components: - - pos: -81.5,-20.5 - parent: 60 - type: Transform -- uid: 8606 - type: CableApcExtension - components: - - pos: -23.5,-19.5 - parent: 60 - type: Transform -- uid: 8607 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-18.5 - parent: 60 - type: Transform -- uid: 8608 - type: Catwalk - components: - - pos: -81.5,-21.5 - parent: 60 - type: Transform -- uid: 8609 - type: CableApcExtension - components: - - pos: -29.5,-19.5 - parent: 60 - type: Transform -- uid: 8610 - type: CableApcExtension - components: - - pos: -28.5,-19.5 - parent: 60 - type: Transform -- uid: 8611 - type: FirelockGlass - components: - - pos: 17.5,22.5 - parent: 60 - type: Transform -- uid: 8612 - type: FirelockGlass - components: - - pos: 16.5,22.5 - parent: 60 - type: Transform -- uid: 8613 - type: FirelockGlass - components: - - pos: 15.5,22.5 - parent: 60 - type: Transform -- uid: 8614 - type: SolarPanel - components: - - pos: -74.5,-19.5 - parent: 60 - type: Transform -- uid: 8615 - type: SolarPanel - components: - - pos: -74.5,-20.5 - parent: 60 - type: Transform -- uid: 8616 - type: SolarPanel - components: - - pos: -74.5,-21.5 - parent: 60 - type: Transform -- uid: 8617 - type: SolarPanel - components: - - pos: -74.5,-22.5 - parent: 60 - type: Transform -- uid: 8618 - type: SolarPanel - components: - - pos: -74.5,-23.5 - parent: 60 - type: Transform -- uid: 8619 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 16.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8620 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 16.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8621 - type: SolarPanel - components: - - pos: -74.5,-24.5 - parent: 60 - type: Transform -- uid: 8622 - type: SolarPanel - components: - - pos: -86.5,-23.5 - parent: 60 - type: Transform -- uid: 8623 - type: SolarPanel - components: - - pos: -86.5,-24.5 - parent: 60 - type: Transform -- uid: 8624 - type: SolarPanel - components: - - pos: -84.5,-12.5 - parent: 60 - type: Transform -- uid: 8625 - type: SolarPanel - components: - - pos: -84.5,-13.5 - parent: 60 - type: Transform -- uid: 8626 - type: SolarPanel - components: - - pos: -84.5,-14.5 - parent: 60 - type: Transform -- uid: 8627 - type: SolarPanel - components: - - pos: -84.5,-15.5 - parent: 60 - type: Transform -- uid: 8628 - type: CableHV - components: - - pos: -76.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8629 - type: CableHV - components: - - pos: -76.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8630 - type: CableHV - components: - - pos: -76.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8631 - type: CableHV - components: - - pos: -76.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8632 - type: CableHV - components: - - pos: -76.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8633 - type: CableHV - components: - - pos: -76.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8634 - type: CableHV - components: - - pos: -78.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8635 - type: CableHV - components: - - pos: -78.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8636 - type: CableHV - components: - - pos: -78.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8637 - type: CableHV - components: - - pos: -78.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8638 - type: CableHV - components: - - pos: -78.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8639 - type: CableHV - components: - - pos: -80.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8640 - type: SolarPanel - components: - - pos: -86.5,-16.5 - parent: 60 - type: Transform -- uid: 8641 - type: SolarPanel - components: - - pos: -86.5,-15.5 - parent: 60 - type: Transform -- uid: 8642 - type: SolarPanel - components: - - pos: -86.5,-14.5 - parent: 60 - type: Transform -- uid: 8643 - type: SolarPanel - components: - - pos: -86.5,-13.5 - parent: 60 - type: Transform -- uid: 8644 - type: SolarPanel - components: - - pos: -86.5,-12.5 - parent: 60 - type: Transform -- uid: 8645 - type: SolarPanel - components: - - pos: -84.5,-17.5 - parent: 60 - type: Transform -- uid: 8646 - type: SolarPanel - components: - - pos: -76.5,-20.5 - parent: 60 - type: Transform -- uid: 8647 - type: SolarPanel - components: - - pos: -76.5,-21.5 - parent: 60 - type: Transform -- uid: 8648 - type: SolarPanel - components: - - pos: -76.5,-22.5 - parent: 60 - type: Transform -- uid: 8649 - type: SolarPanel - components: - - pos: -76.5,-23.5 - parent: 60 - type: Transform -- uid: 8650 - type: SolarPanel - components: - - pos: -76.5,-24.5 - parent: 60 - type: Transform -- uid: 8651 - type: SolarPanel - components: - - pos: -78.5,-19.5 - parent: 60 - type: Transform -- uid: 8652 - type: Catwalk - components: - - pos: -81.5,-23.5 - parent: 60 - type: Transform -- uid: 8653 - type: Catwalk - components: - - pos: -81.5,-24.5 - parent: 60 - type: Transform -- uid: 8654 - type: CableApcExtension - components: - - pos: -27.5,-19.5 - parent: 60 - type: Transform -- uid: 8655 - type: CableApcExtension - components: - - pos: -26.5,-19.5 - parent: 60 - type: Transform -- uid: 8656 - type: CableApcExtension - components: - - pos: -25.5,-19.5 - parent: 60 - type: Transform -- uid: 8657 - type: Catwalk - components: - - pos: -85.5,-19.5 - parent: 60 - type: Transform -- uid: 8658 - type: Catwalk - components: - - pos: -85.5,-20.5 - parent: 60 - type: Transform -- uid: 8659 - type: Catwalk - components: - - pos: -85.5,-21.5 - parent: 60 - type: Transform -- uid: 8660 - type: Catwalk - components: - - pos: -85.5,-22.5 - parent: 60 - type: Transform -- uid: 8661 - type: WallReinforced - components: - - pos: 20.5,4.5 - parent: 60 - type: Transform -- uid: 8662 - type: CableApcExtension - components: - - pos: -24.5,-19.5 - parent: 60 - type: Transform -- uid: 8663 - type: Grille - components: - - pos: -88.5,-25.5 - parent: 60 - type: Transform -- uid: 8664 - type: CableApcExtension - components: - - pos: -24.5,-18.5 - parent: 60 - type: Transform -- uid: 8665 - type: CableApcExtension - components: - - pos: -24.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8666 - type: CableMV - components: - - pos: -24.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8667 - type: CableMV - components: - - pos: -31.5,4.5 - parent: 60 - type: Transform -- uid: 8668 - type: CableMV - components: - - pos: -30.5,4.5 - parent: 60 - type: Transform -- uid: 8669 - type: CableMV - components: - - pos: -30.5,4.5 - parent: 60 - type: Transform -- uid: 8670 - type: CableMV - components: - - pos: -32.5,4.5 - parent: 60 - type: Transform -- uid: 8671 - type: CableMV - components: - - pos: -32.5,3.5 - parent: 60 - type: Transform -- uid: 8672 - type: CableMV - components: - - pos: -32.5,2.5 - parent: 60 - type: Transform -- uid: 8673 - type: CableMV - components: - - pos: -32.5,1.5 - parent: 60 - type: Transform -- uid: 8674 - type: CableMV - components: - - pos: -32.5,0.5 - parent: 60 - type: Transform -- uid: 8675 - type: CableMV - components: - - pos: -32.5,-0.5 - parent: 60 - type: Transform -- uid: 8676 - type: CableMV - components: - - pos: -31.5,-0.5 - parent: 60 - type: Transform -- uid: 8677 - type: CableMV - components: - - pos: -30.5,-0.5 - parent: 60 - type: Transform -- uid: 8678 - type: CableMV - components: - - pos: -29.5,-1.5 - parent: 60 - type: Transform -- uid: 8679 - type: CableMV - components: - - pos: -30.5,-1.5 - parent: 60 - type: Transform -- uid: 8680 - type: CableMV - components: - - pos: -30.5,-2.5 - parent: 60 - type: Transform -- uid: 8681 - type: CableMV - components: - - pos: -30.5,-2.5 - parent: 60 - type: Transform -- uid: 8682 - type: CableMV - components: - - pos: -30.5,-3.5 - parent: 60 - type: Transform -- uid: 8683 - type: CableMV - components: - - pos: -30.5,-4.5 - parent: 60 - type: Transform -- uid: 8684 - type: APCBasic - components: - - pos: -24.5,-17.5 - parent: 60 - type: Transform -- uid: 8685 - type: Grille - components: - - pos: -88.5,-24.5 - parent: 60 - type: Transform -- uid: 8686 - type: Grille - components: - - pos: -88.5,-23.5 - parent: 60 - type: Transform -- uid: 8687 - type: Grille - components: - - pos: -88.5,-22.5 - parent: 60 - type: Transform -- uid: 8688 - type: Catwalk - components: - - pos: -70.5,-14.5 - parent: 60 - type: Transform -- uid: 8689 - type: Grille - components: - - pos: -91.5,-16.5 - parent: 60 - type: Transform -- uid: 8690 - type: Grille - components: - - pos: -83.5,-10.5 - parent: 60 - type: Transform -- uid: 8691 - type: GrilleBroken - components: - - pos: -77.5,-26.5 - parent: 60 - type: Transform -- uid: 8692 - type: Grille - components: - - pos: -88.5,-26.5 - parent: 60 - type: Transform -- uid: 8693 - type: Catwalk - components: - - pos: -59.5,-26.5 - parent: 60 - type: Transform -- uid: 8694 - type: Grille - components: - - pos: -35.5,-7.5 - parent: 60 - type: Transform -- uid: 8695 - type: APCBasic - components: - - pos: -29.5,-1.5 - parent: 60 - type: Transform -- uid: 8696 - type: SubstationBasic - components: - - name: Security Sub North - type: MetaData - - pos: -30.5,4.5 - parent: 60 - type: Transform -- uid: 8697 - type: Catwalk - components: - - pos: -70.5,-24.5 - parent: 60 - type: Transform -- uid: 8698 - type: Catwalk - components: - - pos: -73.5,-14.5 - parent: 60 - type: Transform -- uid: 8699 - type: Catwalk - components: - - pos: -81.5,-22.5 - parent: 60 - type: Transform -- uid: 8700 - type: Catwalk - components: - - pos: -85.5,-16.5 - parent: 60 - type: Transform -- uid: 8701 - type: Catwalk - components: - - pos: -77.5,-18.5 - parent: 60 - type: Transform -- uid: 8702 - type: ClothingBackpackSatchelLeather - components: - - pos: -60.61622,-21.218712 - parent: 60 - type: Transform -- uid: 8703 - type: SolarPanel - components: - - pos: -74.5,-17.5 - parent: 60 - type: Transform -- uid: 8704 - type: PaperBin10 - components: - - pos: 4.5,-31.5 - parent: 60 - type: Transform -- uid: 8705 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-32.5 - parent: 60 - type: Transform -- uid: 8706 - type: TableWood - components: - - pos: -11.5,-27.5 - parent: 60 - type: Transform -- uid: 8707 - type: HandLabeler - components: - - pos: 8.259504,-28.56417 - parent: 60 - type: Transform -- uid: 8708 - type: SolarPanel - components: - - pos: -76.5,-19.5 - parent: 60 - type: Transform -- uid: 8709 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-5.5 - parent: 60 - type: Transform -- uid: 8710 - type: DisposalBend - components: - - pos: -18.5,-19.5 - parent: 60 - type: Transform -- uid: 8711 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-19.5 - parent: 60 - type: Transform -- uid: 8712 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-5.5 - parent: 60 - type: Transform -- uid: 8713 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-6.5 - parent: 60 - type: Transform -- uid: 8714 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-7.5 - parent: 60 - type: Transform -- uid: 8715 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-8.5 - parent: 60 - type: Transform -- uid: 8716 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-9.5 - parent: 60 - type: Transform -- uid: 8717 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-10.5 - parent: 60 - type: Transform -- uid: 8718 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-11.5 - parent: 60 - type: Transform -- uid: 8719 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-12.5 - parent: 60 - type: Transform -- uid: 8720 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-13.5 - parent: 60 - type: Transform -- uid: 8721 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-14.5 - parent: 60 - type: Transform -- uid: 8722 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-15.5 - parent: 60 - type: Transform -- uid: 8723 - type: SolarPanel - components: - - pos: -78.5,-13.5 - parent: 60 - type: Transform -- uid: 8724 - type: SolarPanel - components: - - pos: -80.5,-14.5 - parent: 60 - type: Transform -- uid: 8725 - type: SolarPanel - components: - - pos: -82.5,-22.5 - parent: 60 - type: Transform -- uid: 8726 - type: SolarPanel - components: - - pos: -84.5,-16.5 - parent: 60 - type: Transform -- uid: 8727 - type: CableHV - components: - - pos: -74.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8728 - type: CableHV - components: - - pos: -78.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8729 - type: CableHV - components: - - pos: -82.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8730 - type: CableHV - components: - - pos: -78.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8731 - type: CableHV - components: - - pos: -84.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8732 - type: CableHV - components: - - pos: -86.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8733 - type: CableHV - components: - - pos: -86.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8734 - type: Window - components: - - pos: -63.5,1.5 - parent: 60 - type: Transform -- uid: 8735 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-16.5 - parent: 60 - type: Transform -- uid: 8736 - type: PosterLegitNoERP - components: - - pos: 32.5,-8.5 - parent: 60 - type: Transform -- uid: 8737 - type: AirlockMaint - components: - - pos: -65.5,5.5 - parent: 60 - type: Transform -- uid: 8738 - type: WeldingFuelTankFull - components: - - pos: -64.5,4.5 - parent: 60 - type: Transform -- uid: 8739 - type: CableApcExtension - components: - - pos: -61.5,-0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8740 - type: Grille - components: - - pos: -63.5,1.5 - parent: 60 - type: Transform -- uid: 8741 - type: CableApcExtension - components: - - pos: -65.5,3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8742 - type: CableApcExtension - components: - - pos: -65.5,2.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8743 - type: Grille - components: - - pos: -64.5,1.5 - parent: 60 - type: Transform -- uid: 8744 - type: RandomSpawner - components: - - pos: 15.5,20.5 - parent: 60 - type: Transform -- uid: 8745 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -65.5,0.5 - parent: 60 - type: Transform -- uid: 8746 - type: Window - components: - - pos: 40.5,-18.5 - parent: 60 - type: Transform -- uid: 8747 - type: SpawnMobCorgi - components: - - pos: 6.5,-29.5 - parent: 60 - type: Transform -- uid: 8748 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-17.5 - parent: 60 - type: Transform -- uid: 8749 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-18.5 - parent: 60 - type: Transform -- uid: 8750 - type: Window - components: - - pos: 39.5,-18.5 - parent: 60 - type: Transform -- uid: 8751 - type: WallReinforced - components: - - pos: 28.5,-11.5 - parent: 60 - type: Transform -- uid: 8752 - type: WallSolid - components: - - pos: 31.5,-18.5 - parent: 60 - type: Transform -- uid: 8753 - type: WallSolid - components: - - pos: 30.5,-18.5 - parent: 60 - type: Transform -- uid: 8754 - type: WallReinforced - components: - - pos: 28.5,-13.5 - parent: 60 - type: Transform -- uid: 8755 - type: WallSolid - components: - - pos: 29.5,-18.5 - parent: 60 - type: Transform -- uid: 8756 - type: Table - components: - - pos: -64.5,0.5 - parent: 60 - type: Transform -- uid: 8757 - type: CableApcExtension - components: - - pos: 2.5,-1.5 - parent: 7536 - type: Transform -- uid: 8758 - type: CableApcExtension - components: - - pos: -66.5,2.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8759 - type: Dropper - components: - - pos: 38.540165,-32.2804 - parent: 60 - type: Transform -- uid: 8760 - type: Paper - components: - - pos: -10.722915,-28.386835 - parent: 60 - type: Transform -- uid: 8761 - type: Paper - components: - - pos: -10.910415,-28.30871 - parent: 60 - type: Transform -- uid: 8762 - type: BoxBeaker - components: - - pos: 37.539177,-32.376255 - parent: 60 - type: Transform -- uid: 8763 - type: TableWood - components: - - pos: -10.5,-28.5 - parent: 60 - type: Transform -- uid: 8764 - type: Grille - components: - - pos: -65.5,1.5 - parent: 60 - type: Transform -- uid: 8765 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-0.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8766 - type: Grille - components: - - pos: -68.5,11.5 - parent: 60 - type: Transform -- uid: 8767 - type: CableHV - components: - - pos: 41.5,-45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8768 - type: CableHV - components: - - pos: 41.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8769 - type: CableHV - components: - - pos: 41.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8770 - type: CableApcExtension - components: - - pos: -33.5,-17.5 - parent: 60 - type: Transform -- uid: 8771 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8772 - type: CableHV - components: - - pos: 31.5,-59.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8773 - type: PoweredlightSodium - components: - - rot: 1.5707963267948966 rad - pos: 56.5,1.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8774 - type: FirelockGlass - components: - - pos: -37.5,5.5 - parent: 60 - type: Transform -- uid: 8775 - type: Sink - components: - - pos: -66.5,2.5 - parent: 60 - type: Transform -- uid: 8776 - type: RandomPosterAny - components: - - pos: -62.5,5.5 - parent: 60 - type: Transform -- uid: 8777 - type: WallReinforced - components: - - pos: 62.5,-25.5 - parent: 60 - type: Transform -- uid: 8778 - type: FirelockGlass - components: - - pos: -54.5,-10.5 - parent: 60 - type: Transform -- uid: 8779 - type: Catwalk - components: - - pos: -58.5,-5.5 - parent: 60 - type: Transform -- uid: 8780 - type: ReinforcedWindow - components: - - pos: 30.5,-57.5 - parent: 60 - type: Transform -- uid: 8781 - type: ReinforcedWindow - components: - - pos: 30.5,-56.5 - parent: 60 - type: Transform -- uid: 8782 - type: ReinforcedWindow - components: - - pos: 32.5,-58.5 - parent: 60 - type: Transform -- uid: 8783 - type: ReinforcedWindow - components: - - pos: 32.5,-57.5 - parent: 60 - type: Transform -- uid: 8784 - type: ReinforcedWindow - components: - - pos: 32.5,-56.5 - parent: 60 - type: Transform -- uid: 8785 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-57.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8786 - type: CableApcExtension - components: - - pos: 1.5,-1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8787 - type: CableApcExtension - components: - - pos: 0.5,-1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8788 - type: CableApcExtension - components: - - pos: -0.5,-1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8789 - type: CableApcExtension - components: - - pos: -0.5,-2.5 - parent: 7536 - type: Transform -- uid: 8790 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8791 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8792 - type: GasPipeStraight - components: - - pos: -16.5,6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8793 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8794 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8795 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8796 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8797 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8798 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8799 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8800 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8801 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8802 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8803 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8804 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8805 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8806 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8807 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8808 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8809 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8810 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8811 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8812 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8813 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8814 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8815 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8816 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8817 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8818 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8819 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8820 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8821 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8822 - type: FloorTileItemEighties - components: - - pos: 56.478832,-44.528122 - parent: 60 - type: Transform -- uid: 8823 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.481476 - parent: 60 - type: Transform -- uid: 8824 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8825 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8826 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8827 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8828 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8829 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8830 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8831 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8832 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8833 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8834 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8835 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8836 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8837 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8838 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8839 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8840 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8841 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8842 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8843 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8844 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8845 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8846 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8847 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8848 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8849 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8850 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8851 - type: FloorTileItemArcadeRed - components: - - pos: -37.51721,-35.4971 - parent: 60 - type: Transform -- uid: 8852 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8853 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8854 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8855 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8856 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8857 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8858 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8859 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8860 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8861 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8862 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8863 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8864 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8865 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8866 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8867 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8868 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8869 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8870 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8871 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8872 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8873 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8874 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8875 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8876 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8877 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8878 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8879 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8880 - type: FloorTileItemArcadeBlue - components: - - pos: -35.503693,-35.511295 - parent: 60 - type: Transform -- uid: 8881 - type: ReinforcedWindow - components: - - pos: 24.5,-1.5 - parent: 60 - type: Transform -- uid: 8882 - type: ReinforcedWindow - components: - - pos: 23.5,-1.5 - parent: 60 - type: Transform -- uid: 8883 - type: WallReinforced - components: - - pos: -28.5,-17.5 - parent: 60 - type: Transform -- uid: 8884 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8885 - type: ReinforcedWindow - components: - - pos: 22.5,-1.5 - parent: 60 - type: Transform -- uid: 8886 - type: BoxMouthSwab - components: - - pos: 52.58656,-28.542292 - parent: 60 - type: Transform -- uid: 8887 - type: ClothingHandsGlovesNitrile - components: - - pos: 49.478275,-25.388796 - parent: 60 - type: Transform -- uid: 8888 - type: BoxSterileMask - components: - - pos: 52.46156,-27.404037 - parent: 60 - type: Transform -- uid: 8889 - type: VendingMachineWallMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 46.5,-23.5 - parent: 60 - type: Transform -- uid: 8890 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 45.5,-34.5 - parent: 60 - type: Transform -- uid: 8891 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-19.5 - parent: 60 - type: Transform -- uid: 8892 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-19.5 - parent: 60 - type: Transform -- uid: 8893 - type: CableApcExtension - components: - - pos: -0.5,-3.5 - parent: 7536 - type: Transform -- uid: 8894 - type: SMESBasic - components: - - name: South Solar SMES - type: MetaData - - pos: 30.5,-54.5 - parent: 60 - type: Transform -- uid: 8895 - type: WindoorChemistryLocked - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-27.5 - parent: 60 - type: Transform -- uid: 8896 - type: WardrobePrisonFilled - components: - - pos: -34.5,-13.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8897 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,24.5 - parent: 60 - type: Transform -- uid: 8898 - type: GasVentScrubber - components: - - pos: -25.5,0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8899 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8900 - type: CableApcExtension - components: - - pos: 0.5,-3.5 - parent: 7536 - type: Transform -- uid: 8901 - type: CableApcExtension - components: - - pos: 1.5,-3.5 - parent: 7536 - type: Transform -- uid: 8902 - type: CableApcExtension - components: - - pos: 2.5,-3.5 - parent: 7536 - type: Transform -- uid: 8903 - type: CableApcExtension - components: - - pos: 3.5,-3.5 - parent: 7536 - type: Transform -- uid: 8904 - type: CableApcExtension - components: - - pos: -4.5,-1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8905 - type: CableApcExtension - components: - - pos: -4.5,-2.5 - parent: 7536 - type: Transform -- uid: 8906 - type: CableApcExtension - components: - - pos: -4.5,-3.5 - parent: 7536 - type: Transform -- uid: 8907 - type: CableApcExtension - components: - - pos: -3.5,-3.5 - parent: 7536 - type: Transform -- uid: 8908 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-19.5 - parent: 60 - type: Transform -- uid: 8909 - type: Table - components: - - pos: 35.5,-37.5 - parent: 60 - type: Transform -- uid: 8910 - type: ReinforcedWindow - components: - - pos: 23.5,-3.5 - parent: 60 - type: Transform -- uid: 8911 - type: ExtinguisherCabinetFilled - components: - - pos: -10.5,-51.5 - parent: 60 - type: Transform -- uid: 8912 - type: CableApcExtension - components: - - pos: -5.5,-2.5 - parent: 7536 - type: Transform -- uid: 8913 - type: CableMV - components: - - pos: 33.5,-16.5 - parent: 60 - type: Transform -- uid: 8914 - type: CableHV - components: - - pos: 45.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8915 - type: ComputerResearchAndDevelopment - components: - - pos: -42.5,9.5 - parent: 60 - type: Transform -- uid: 8916 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: -50.5,9.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 8917 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: -50.5,7.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 8918 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -55.5,5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8919 - type: ClosetBombFilled - components: - - pos: -25.5,2.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8920 - type: WallReinforced - components: - - pos: -23.5,-21.5 - parent: 60 - type: Transform -- uid: 8921 - type: Table - components: - - pos: -4.5,-28.5 - parent: 60 - type: Transform -- uid: 8922 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -21.5,-21.5 - parent: 60 - type: Transform -- uid: 8923 - type: Grille - components: - - pos: 24.5,-1.5 - parent: 60 - type: Transform -- uid: 8924 - type: CableApcExtension - components: - - pos: -6.5,-2.5 - parent: 7536 - type: Transform -- uid: 8925 - type: CableApcExtension - components: - - pos: -7.5,-2.5 - parent: 7536 - type: Transform -- uid: 8926 - type: CableApcExtension - components: - - pos: -8.5,-2.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8927 - type: CableApcExtension - components: - - pos: -9.5,-2.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8928 - type: ClothingHeadHatFedoraBrown - components: - - pos: 17.46565,-49.582985 - parent: 60 - type: Transform -- uid: 8929 - type: ClothingHeadHatFedoraGrey - components: - - pos: 17.432234,-45.36355 - parent: 60 - type: Transform -- uid: 8930 - type: MouseTimedSpawner - components: - - pos: 31.5,-40.5 - parent: 60 - type: Transform -- uid: 8931 - type: FirelockGlass - components: - - pos: 39.5,-38.5 - parent: 60 - type: Transform -- uid: 8932 - type: SignChemistry1 - components: - - pos: 42.5,-25.5 - parent: 60 - type: Transform -- uid: 8933 - type: CableHVStack - components: - - pos: 13.641997,-20.542242 - parent: 60 - type: Transform -- uid: 8934 - type: Bed - components: - - pos: -35.5,-36.5 - parent: 60 - type: Transform -- uid: 8935 - type: BedsheetWiz - components: - - pos: -35.5,-36.5 - parent: 60 - type: Transform -- uid: 8936 - type: WallReinforced - components: - - pos: 43.5,-52.5 - parent: 60 - type: Transform -- uid: 8937 - type: ClothingHandsGlovesFingerless - components: - - pos: -15.445587,-40.483425 - parent: 60 - type: Transform -- uid: 8938 - type: WallReinforced - components: - - pos: 28.5,-12.5 - parent: 60 - type: Transform -- uid: 8939 - type: ClothingHeadHatWeldingMaskFlame - components: - - pos: -32.7886,-34.450375 - parent: 60 - type: Transform -- uid: 8940 - type: SubstationBasic - components: - - name: South Solar Sub - type: MetaData - - pos: 30.5,-52.5 - parent: 60 - type: Transform -- uid: 8941 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-19.5 - parent: 60 - type: Transform -- uid: 8942 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-19.5 - parent: 60 - type: Transform -- uid: 8943 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-19.5 - parent: 60 - type: Transform -- uid: 8944 - type: DisposalPipe - components: - - pos: -18.5,-20.5 - parent: 60 - type: Transform -- uid: 8945 - type: GasPipeStraight - components: - - pos: 1.5,-19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8946 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -34.5,-4.5 - parent: 60 - type: Transform -- uid: 8947 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -30.5,-19.5 - parent: 60 - type: Transform -- uid: 8948 - type: GasPipeStraight - components: - - pos: -30.5,-7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8949 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,-8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8950 - type: Rack - components: - - pos: -50.5,-10.5 - parent: 60 - type: Transform -- uid: 8951 - type: Grille - components: - - pos: -91.5,-20.5 - parent: 60 - type: Transform -- uid: 8952 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: 14.500059,6.2768393 - parent: 60 - type: Transform -- uid: 8953 - type: ReinforcedWindow - components: - - pos: -66.5,-20.5 - parent: 60 - type: Transform -- uid: 8954 - type: ReinforcedWindow - components: - - pos: -66.5,-19.5 - parent: 60 - type: Transform -- uid: 8955 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 42.5,13.5 - parent: 60 - type: Transform -- uid: 8956 - type: WallReinforced - components: - - pos: -28.5,-21.5 - parent: 60 - type: Transform -- uid: 8957 - type: FirelockGlass - components: - - pos: -38.5,5.5 - parent: 60 - type: Transform -- uid: 8958 - type: CableApcExtension - components: - - pos: -11.5,-2.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8959 - type: FirelockGlass - components: - - pos: 36.5,-17.5 - parent: 60 - type: Transform -- uid: 8960 - type: LockerMedical - components: - - pos: 47.5,-12.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8961 - type: FirelockGlass - components: - - pos: 44.5,-15.5 - parent: 60 - type: Transform -- uid: 8962 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8963 - type: GasPipeStraight - components: - - pos: 44.5,-11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8964 - type: GasPipeStraight - components: - - pos: 44.5,-13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8965 - type: WallSolid - components: - - pos: 38.5,12.5 - parent: 60 - type: Transform -- uid: 8966 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-7.5 - parent: 60 - type: Transform -- uid: 8967 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-7.5 - parent: 60 - type: Transform -- uid: 8968 - type: FirelockGlass - components: - - pos: 42.5,-16.5 - parent: 60 - type: Transform -- uid: 8969 - type: MedkitCombatFilled - components: - - pos: 29.51867,-20.434233 - parent: 60 - type: Transform -- uid: 8970 - type: GasPipeBend - components: - - pos: 21.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8971 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-23.5 - parent: 60 - type: Transform -- uid: 8972 - type: BoxFolderBlue - components: - - pos: 8.593838,-28.432688 - parent: 60 - type: Transform -- uid: 8973 - type: Table - components: - - pos: 8.5,-28.5 - parent: 60 - type: Transform -- uid: 8974 - type: BoxFolderRed - components: - - pos: 8.437588,-28.338938 - parent: 60 - type: Transform -- uid: 8975 - type: BoxFolderBlack - components: - - pos: 8.718838,-28.542063 - parent: 60 - type: Transform -- uid: 8976 - type: CableHV - components: - - pos: 37.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8977 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 42.5,14.5 - parent: 60 - type: Transform -- uid: 8978 - type: CableApcExtension - components: - - pos: -11.5,-1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8979 - type: Grille - components: - - pos: 23.5,-1.5 - parent: 60 - type: Transform -- uid: 8980 - type: CableApcExtension - components: - - pos: -12.5,-1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8981 - type: WallReinforced - components: - - pos: 63.5,-40.5 - parent: 60 - type: Transform -- uid: 8982 - type: WallSolid - components: - - pos: 42.5,-2.5 - parent: 60 - type: Transform -- uid: 8983 - type: WallSolid - components: - - pos: 38.5,-2.5 - parent: 60 - type: Transform -- uid: 8984 - type: WallSolid - components: - - pos: 36.5,-2.5 - parent: 60 - type: Transform -- uid: 8985 - type: WallSolid - components: - - pos: 37.5,-2.5 - parent: 60 - type: Transform -- uid: 8986 - type: WallSolid - components: - - pos: 46.5,4.5 - parent: 60 - type: Transform -- uid: 8987 - type: AirlockMaintSalvageLocked - components: - - name: Salvage Bay - type: MetaData - - pos: 44.5,-2.5 - parent: 60 - type: Transform -- uid: 8988 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 42.5,15.5 - parent: 60 - type: Transform -- uid: 8989 - type: Window - components: - - pos: 47.5,6.5 - parent: 60 - type: Transform -- uid: 8990 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 42.5,12.5 - parent: 60 - type: Transform -- uid: 8991 - type: CableHV - components: - - pos: 25.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8992 - type: CableHV - components: - - pos: 25.5,-72.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8993 - type: CableHV - components: - - pos: 26.5,-72.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8994 - type: CableHV - components: - - pos: 27.5,-72.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8995 - type: CableHV - components: - - pos: 28.5,-72.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8996 - type: CableHV - components: - - pos: 37.5,-72.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8997 - type: Grille - components: - - pos: 22.5,-1.5 - parent: 60 - type: Transform -- uid: 8998 - type: AtmosFixPlasmaMarker - components: - - pos: 68.5,-27.5 - parent: 60 - type: Transform -- uid: 8999 - type: ClothingHeadHatVioletwizard - components: - - pos: 51.46583,-44.13332 - parent: 60 - type: Transform -- uid: 9000 - type: ClothingShoesWizard - components: - - pos: 51.49708,-44.930195 - parent: 60 - type: Transform -- uid: 9001 - type: ClothingEyesEyepatch - components: - - pos: 33.572598,-48.507545 - parent: 60 - type: Transform -- uid: 9002 - type: CableApcExtension - components: - - pos: -11.5,-3.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9003 - type: GasPipeStraight - components: - - pos: 19.5,-34.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9004 - type: ClothingOuterHoodieGrey - components: - - pos: -51.361965,-34.448696 - parent: 60 - type: Transform -- uid: 9005 - type: ClothingShoesChef - components: - - pos: 24.546406,-28.807182 - parent: 60 - type: Transform -- uid: 9006 - type: PosterMapBagel - components: - - pos: 8.5,-52.5 - parent: 60 - type: Transform -- uid: 9007 - type: CableApcExtension - components: - - pos: -12.5,-3.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9008 - type: CableApcExtension - components: - - pos: -9.5,-1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9009 - type: Table - components: - - pos: 38.5,-14.5 - parent: 60 - type: Transform -- uid: 9010 - type: PosterMapBagel - components: - - pos: 10.5,16.5 - parent: 60 - type: Transform -- uid: 9011 - type: ReinforcedWindow - components: - - pos: -24.5,-7.5 - parent: 60 - type: Transform -- uid: 9012 - type: WallSolid - components: - - pos: 39.5,-15.5 - parent: 60 - type: Transform -- uid: 9013 - type: WallSolid - components: - - pos: 41.5,-15.5 - parent: 60 - type: Transform -- uid: 9014 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,-1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9015 - type: TableWood - components: - - pos: 46.5,-16.5 - parent: 60 - type: Transform -- uid: 9016 - type: GasFilter - components: - - pos: 49.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9017 - type: BedsheetMedical - components: - - pos: 49.5,-13.5 - parent: 60 - type: Transform -- uid: 9018 - type: TableWood - components: - - pos: 46.5,-17.5 - parent: 60 - type: Transform -- uid: 9019 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 48.5,-15.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9020 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9021 - type: ComputerCrewMonitoring - components: - - pos: 47.5,-16.5 - parent: 60 - type: Transform -- uid: 9022 - type: GasPipeStraight - components: - - pos: 44.5,-22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9023 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-16.5 - parent: 60 - type: Transform -- uid: 9024 - type: Grille - components: - - pos: 50.5,-12.5 - parent: 60 - type: Transform -- uid: 9025 - type: CableHV - components: - - pos: 29.5,-74.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9026 - type: CableHV - components: - - pos: 32.5,-74.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9027 - type: CableHV - components: - - pos: 35.5,-74.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9028 - type: CableHV - components: - - pos: 36.5,-74.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9029 - type: CableHV - components: - - pos: 34.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9030 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9031 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9032 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -22.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9033 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -21.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9034 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -22.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9035 - type: WallReinforced - components: - - pos: -43.5,15.5 - parent: 60 - type: Transform -- uid: 9036 - type: ComputerResearchAndDevelopment - components: - - rot: 3.141592653589793 rad - pos: -47.5,11.5 - parent: 60 - type: Transform -- uid: 9037 - type: DisposalUnit - components: - - pos: 32.5,-20.5 - parent: 60 - type: Transform -- uid: 9038 - type: Grille - components: - - pos: 50.5,-18.5 - parent: 60 - type: Transform -- uid: 9039 - type: Grille - components: - - pos: 31.5,-17.5 - parent: 60 - type: Transform -- uid: 9040 - type: TableWood - components: - - pos: -12.5,19.5 - parent: 60 - type: Transform -- uid: 9041 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 46.5,-14.5 - parent: 60 - type: Transform -- uid: 9042 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9043 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,-7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9044 - type: FloorDrain - components: - - pos: -6.5,-27.5 - parent: 60 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 9045 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9046 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 40.5,-28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9047 - type: TrashBag - components: - - pos: -6.3893414,-28.395233 - parent: 60 - type: Transform -- uid: 9048 - type: DisposalPipe - components: - - pos: -18.5,-21.5 - parent: 60 - type: Transform -- uid: 9049 - type: CableApcExtension - components: - - pos: -9.5,-3.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9050 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,24.5 - parent: 60 - type: Transform -- uid: 9051 - type: WallReinforced - components: - - pos: -29.5,4.5 - parent: 60 - type: Transform -- uid: 9052 - type: Grille - components: - - pos: -29.5,-17.5 - parent: 60 - type: Transform -- uid: 9053 - type: Table - components: - - pos: -48.5,11.5 - parent: 60 - type: Transform -- uid: 9054 - type: AirlockGlass - components: - - pos: -12.5,-23.5 - parent: 60 - type: Transform -- uid: 9055 - type: CableHV - components: - - pos: 44.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9056 - type: CableHV - components: - - pos: 43.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9057 - type: WallReinforced - components: - - pos: 18.5,2.5 - parent: 60 - type: Transform -- uid: 9058 - type: AirlockGlass - components: - - pos: 17.5,-20.5 - parent: 60 - type: Transform -- uid: 9059 - type: AirlockGlass - components: - - pos: 16.5,-20.5 - parent: 60 - type: Transform -- uid: 9060 - type: CableHV - components: - - pos: 34.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9061 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9062 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9063 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9064 - type: Catwalk - components: - - pos: -0.5,-1.5 - parent: 7536 - type: Transform -- uid: 9065 - type: Catwalk - components: - - pos: 0.5,-1.5 - parent: 7536 - type: Transform -- uid: 9066 - type: IntercomMedical - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-11.5 - parent: 60 - type: Transform -- uid: 9067 - type: IntercomService - components: - - rot: 3.141592653589793 rad - pos: 11.5,-33.5 - parent: 60 - type: Transform -- uid: 9068 - type: DisposalUnit - components: - - pos: -94.5,17.5 - parent: 60 - type: Transform -- uid: 9069 - type: ClothingHeadHatWeldingMaskPainted - components: - - pos: -45.537216,-24.47023 - parent: 60 - type: Transform -- uid: 9070 - type: WelderMini - components: - - pos: -45.52159,-24.454605 - parent: 60 - type: Transform -- uid: 9071 - type: ClothingEyesEyepatch - components: - - pos: 16.591385,-44.510666 - parent: 60 - type: Transform -- uid: 9072 - type: ClothingBeltHolster - components: - - pos: 19.497345,-45.396423 - parent: 60 - type: Transform -- uid: 9073 - type: Barricade - components: - - pos: 16.5,-46.5 - parent: 60 - type: Transform -- uid: 9074 - type: GunpetInstrument - components: - - pos: 35.629635,-51.39923 - parent: 60 - type: Transform -- uid: 9075 - type: Rack - components: - - pos: 35.5,-51.5 - parent: 60 - type: Transform -- uid: 9076 - type: CrateEmptySpawner - components: - - pos: 34.5,-51.5 - parent: 60 - type: Transform -- uid: 9077 - type: ClosetMaintenanceFilledRandom - components: - - pos: 36.5,-51.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9078 - type: MaintenanceToolSpawner - components: - - pos: 37.5,-51.5 - parent: 60 - type: Transform -- uid: 9079 - type: Chair - components: - - pos: 56.5,-11.5 - parent: 60 - type: Transform -- uid: 9080 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 56.5,-13.5 - parent: 60 - type: Transform -- uid: 9081 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 55.5,-13.5 - parent: 60 - type: Transform -- uid: 9082 - type: PosterContrabandVoteWeh - components: - - pos: 56.5,-9.5 - parent: 60 - type: Transform -- uid: 9083 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 56.5,-10.5 - parent: 60 - type: Transform -- uid: 9084 - type: WaterCooler - components: - - pos: 55.5,-10.5 - parent: 60 - type: Transform -- uid: 9085 - type: DrinkWaterCup - components: - - pos: 55.263298,-12.280668 - parent: 60 - type: Transform - - tags: [] - type: Tag -- uid: 9086 - type: DrinkWaterCup - components: - - pos: 55.435173,-12.327543 - parent: 60 - type: Transform - - tags: [] - type: Tag -- uid: 9087 - type: BoxFolderBlue - components: - - pos: 56.403923,-12.374418 - parent: 60 - type: Transform -- uid: 9088 - type: Pen - components: - - pos: 56.622673,-12.218168 - parent: 60 - type: Transform -- uid: 9089 - type: Rack - components: - - pos: 56.5,-15.5 - parent: 60 - type: Transform -- uid: 9090 - type: Rack - components: - - pos: 55.5,-15.5 - parent: 60 - type: Transform -- uid: 9091 - type: MaintenanceFluffSpawner - components: - - pos: 56.5,-15.5 - parent: 60 - type: Transform -- uid: 9092 - type: RandomPosterLegit - components: - - pos: 55.5,-17.5 - parent: 60 - type: Transform -- uid: 9093 - type: MaintenanceWeaponSpawner - components: - - pos: 55.5,-15.5 - parent: 60 - type: Transform -- uid: 9094 - type: RandomPosterContraband - components: - - pos: 43.5,-38.5 - parent: 60 - type: Transform -- uid: 9095 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 1.5,-27.5 - parent: 60 - type: Transform -- uid: 9096 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 0.5,-27.5 - parent: 60 - type: Transform -- uid: 9097 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -0.5,-27.5 - parent: 60 - type: Transform -- uid: 9098 - type: PottedPlantRandom - components: - - pos: -2.5,11.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 9099 - type: Catwalk - components: - - pos: 1.5,-1.5 - parent: 7536 - type: Transform -- uid: 9100 - type: Catwalk - components: - - pos: -9.5,-3.5 - parent: 7536 - type: Transform -- uid: 9101 - type: Catwalk - components: - - pos: -10.5,-3.5 - parent: 7536 - type: Transform -- uid: 9102 - type: Catwalk - components: - - pos: -11.5,-3.5 - parent: 7536 - type: Transform -- uid: 9103 - type: Catwalk - components: - - pos: -12.5,-3.5 - parent: 7536 - type: Transform -- uid: 9104 - type: Catwalk - components: - - pos: -12.5,-1.5 - parent: 7536 - type: Transform -- uid: 9105 - type: Catwalk - components: - - pos: -11.5,-1.5 - parent: 7536 - type: Transform -- uid: 9106 - type: Catwalk - components: - - pos: -10.5,-1.5 - parent: 7536 - type: Transform -- uid: 9107 - type: Catwalk - components: - - pos: -9.5,-1.5 - parent: 7536 - type: Transform -- uid: 9108 - type: Catwalk - components: - - pos: -9.5,-2.5 - parent: 7536 - type: Transform -- uid: 9109 - type: Catwalk - components: - - pos: -8.5,-2.5 - parent: 7536 - type: Transform -- uid: 9110 - type: AtmosDeviceFanTiny - components: - - pos: 0.5,-0.5 - parent: 7536 - type: Transform -- uid: 9111 - type: PosterLegit12Gauge - components: - - pos: -23.5,1.5 - parent: 60 - type: Transform -- uid: 9112 - type: AirlockExternal - components: - - pos: -11.5,-4.5 - parent: 7536 - type: Transform -- uid: 9113 - type: AirlockExternal - components: - - pos: -11.5,-0.5 - parent: 7536 - type: Transform -- uid: 9114 - type: AirlockSecurity - components: - - name: Syndicate Airlock - type: MetaData - - pos: -7.5,-2.5 - parent: 7536 - type: Transform -- uid: 9115 - type: AirlockSecurity - components: - - name: Syndicate Airlock - type: MetaData - - pos: -2.5,-3.5 - parent: 7536 - type: Transform -- uid: 9116 - type: AirlockSecurity - components: - - name: Syndicate Airlock - type: MetaData - - pos: 1.5,-3.5 - parent: 7536 - type: Transform -- uid: 9117 - type: AirlockSecurity - components: - - name: Syndicate Airlock - type: MetaData - - pos: 6.5,-2.5 - parent: 7536 - type: Transform -- uid: 9118 - type: AirlockSecurity - components: - - name: Syndicate Airlock - type: MetaData - - pos: 10.5,-2.5 - parent: 7536 - type: Transform -- uid: 9119 - type: Thruster - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-1.5 - parent: 7536 - type: Transform - - bodyType: Static - type: Physics -- uid: 9120 - type: Wrench - components: - - pos: -16.536282,-2.5396385 - parent: 7536 - type: Transform -- uid: 9121 - type: ClothingBeltMilitaryWebbing - components: - - pos: -12.506187,-1.5083885 - parent: 7536 - type: Transform -- uid: 9122 - type: SignEngine - components: - - pos: -6.5,-1.5 - parent: 7536 - type: Transform -- uid: 9123 - type: WarningAir - components: - - pos: -15.5,-1.5 - parent: 7536 - type: Transform -- uid: 9124 - type: SignSecureSmallRed - components: - - pos: -2.5,-2.5 - parent: 7536 - type: Transform -- uid: 9125 - type: PosterContrabandSyndicateRecruitment - components: - - pos: 6.5,-3.5 - parent: 7536 - type: Transform -- uid: 9126 - type: PosterContrabandFreeSyndicateEncryptionKey - components: - - pos: 1.5,-2.5 - parent: 7536 - type: Transform -- uid: 9127 - type: PosterContrabandSyndicatePistol - components: - - pos: -2.5,-1.5 - parent: 7536 - type: Transform -- uid: 9128 - type: PosterContrabandC20r - components: - - pos: 3.5,-2.5 - parent: 7536 - type: Transform -- uid: 9129 - type: AirlockShuttle - components: - - rot: 3.141592653589793 rad - pos: 0.5,-0.5 - parent: 7536 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 9130 - type: Bed - components: - - pos: 3.5,-3.5 - parent: 7536 - type: Transform -- uid: 9131 - type: BedsheetSyndie - components: - - pos: 3.5,-3.5 - parent: 7536 - type: Transform -- uid: 9132 - type: TableReinforced - components: - - pos: -1.5,-2.5 - parent: 7536 - type: Transform -- uid: 9133 - type: TableReinforced - components: - - pos: -1.5,-1.5 - parent: 7536 - type: Transform -- uid: 9134 - type: TableReinforced - components: - - pos: 13.5,-1.5 - parent: 7536 - type: Transform -- uid: 9135 - type: TableReinforced - components: - - pos: 12.5,-1.5 - parent: 7536 - type: Transform -- uid: 9136 - type: TableReinforced - components: - - pos: 13.5,-3.5 - parent: 7536 - type: Transform -- uid: 9137 - type: ComputerSolarControl - components: - - pos: 11.5,-1.5 - parent: 7536 - type: Transform -- uid: 9138 - type: ComputerBroken - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 7536 - type: Transform -- uid: 9139 - type: ClosetBombFilled - components: - - pos: -49.5,11.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9140 - type: WallReinforced - components: - - pos: -57.5,8.5 - parent: 60 - type: Transform -- uid: 9141 - type: WallReinforced - components: - - pos: -45.5,-11.5 - parent: 60 - type: Transform -- uid: 9142 - type: Window - components: - - pos: -46.5,-6.5 - parent: 60 - type: Transform -- uid: 9143 - type: WallReinforced - components: - - pos: -39.5,-8.5 - parent: 60 - type: Transform -- uid: 9144 - type: Table - components: - - pos: -44.5,-10.5 - parent: 60 - type: Transform -- uid: 9145 - type: DisposalPipe - components: - - pos: -18.5,-22.5 - parent: 60 - type: Transform -- uid: 9146 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-23.5 - parent: 60 - type: Transform -- uid: 9147 - type: DisposalJunction - components: - - pos: -37.5,-19.5 - parent: 60 - type: Transform -- uid: 9148 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9149 - type: SignSecureSmallRed - components: - - pos: -21.5,-14.5 - parent: 60 - type: Transform -- uid: 9150 - type: SignSecureSmallRed - components: - - pos: -31.5,-14.5 - parent: 60 - type: Transform -- uid: 9151 - type: AirlockMaintLocked - components: - - pos: -17.5,4.5 - parent: 60 - type: Transform -- uid: 9152 - type: PosterContrabandDonutCorp - components: - - pos: -31.5,3.5 - parent: 60 - type: Transform -- uid: 9153 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9154 - type: GasVentScrubber - components: - - pos: -26.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9155 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9156 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9157 - type: GasPipeBend - components: - - pos: -18.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9158 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9159 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9160 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9161 - type: DisposalPipe - components: - - pos: -15.5,2.5 - parent: 60 - type: Transform -- uid: 9162 - type: Grille - components: - - pos: -36.5,10.5 - parent: 60 - type: Transform -- uid: 9163 - type: ShuttersNormalOpen - components: - - pos: -37.5,10.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9165 - type: SignalReceiver -- uid: 9164 - type: TableReinforced - components: - - pos: -37.5,10.5 - parent: 60 - type: Transform -- uid: 9165 - type: SignalButton - components: - - pos: -39.5,10.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9163 - - port: Toggle - uid: 5504 - type: SignalTransmitter -- uid: 9166 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-8.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9167 - type: AirlockMaintSecLocked - components: - - name: 'security checkpoint ' - type: MetaData - - pos: -9.5,-46.5 - parent: 60 - type: Transform -- uid: 9168 - type: WallSolid - components: - - pos: 33.5,-8.5 - parent: 60 - type: Transform -- uid: 9169 - type: CableHV - components: - - pos: 48.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9170 - type: PoweredSmallLight - components: - - pos: 33.5,-9.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9171 - type: Table - components: - - pos: 40.5,-10.5 - parent: 60 - type: Transform -- uid: 9172 - type: CableApcExtension - components: - - pos: 40.5,-5.5 - parent: 60 - type: Transform -- uid: 9173 - type: WallSolid - components: - - pos: 32.5,-8.5 - parent: 60 - type: Transform -- uid: 9174 - type: CableHV - components: - - pos: 43.5,-4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9175 - type: CableApcExtension - components: - - pos: 33.5,-11.5 - parent: 60 - type: Transform -- uid: 9176 - type: VendingMachineWallMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 33.5,-8.5 - parent: 60 - type: Transform -- uid: 9177 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-7.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9178 - type: WallSolid - components: - - pos: 31.5,-8.5 - parent: 60 - type: Transform -- uid: 9179 - type: CableHV - components: - - pos: 30.5,-74.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9180 - type: CableHV - components: - - pos: 34.5,-74.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9181 - type: CableHV - components: - - pos: 37.5,-76.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9182 - type: CableHV - components: - - pos: 35.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9183 - type: WallReinforced - components: - - pos: -57.5,9.5 - parent: 60 - type: Transform -- uid: 9184 - type: PlasticFlapsAirtightClear - components: - - pos: 42.5,6.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 9185 - type: CableHV - components: - - pos: 28.5,-74.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9186 - type: CableHV - components: - - pos: 29.5,-72.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9187 - type: CableHV - components: - - pos: 26.5,-74.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9188 - type: CableHV - components: - - pos: 25.5,-74.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9189 - type: CableHV - components: - - pos: 27.5,-74.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9190 - type: CableHV - components: - - pos: 36.5,-76.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9191 - type: CableHV - components: - - pos: 45.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9192 - type: CableHV - components: - - pos: 32.5,-7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9193 - type: CableHV - components: - - pos: 34.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9194 - type: CableHV - components: - - pos: 34.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9195 - type: CableHV - components: - - pos: 30.5,-8.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9196 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-6.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9197 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-6.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9198 - type: CableApcExtension - components: - - pos: 40.5,-6.5 - parent: 60 - type: Transform -- uid: 9199 - type: MedicalBed - components: - - pos: 34.5,-10.5 - parent: 60 - type: Transform -- uid: 9200 - type: CableHV - components: - - pos: 43.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9201 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-8.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9202 - type: AirlockChiefMedicalOfficerLocked - components: - - name: Private Exam - type: MetaData - - pos: 31.5,-9.5 - parent: 60 - type: Transform -- uid: 9203 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-9.5 - parent: 60 - type: Transform -- uid: 9204 - type: TableGlass - components: - - pos: 34.5,-9.5 - parent: 60 - type: Transform -- uid: 9205 - type: CableHV - components: - - pos: 40.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9206 - type: CableHV - components: - - pos: 37.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9207 - type: CableApcExtension - components: - - pos: 38.5,-8.5 - parent: 60 - type: Transform -- uid: 9208 - type: AirlockChiefMedicalOfficerLocked - components: - - name: Private Exam - type: MetaData - - pos: 33.5,-11.5 - parent: 60 - type: Transform -- uid: 9209 - type: WallSolid - components: - - pos: 35.5,-9.5 - parent: 60 - type: Transform -- uid: 9210 - type: WallSolid - components: - - pos: 35.5,-10.5 - parent: 60 - type: Transform -- uid: 9211 - type: WallSolid - components: - - pos: 35.5,-8.5 - parent: 60 - type: Transform -- uid: 9212 - type: WallSolid - components: - - pos: 42.5,-5.5 - parent: 60 - type: Transform -- uid: 9213 - type: CableApcExtension - components: - - pos: 40.5,-6.5 - parent: 60 - type: Transform -- uid: 9214 - type: AtmosDeviceFanTiny - components: - - pos: 23.5,-29.5 - parent: 60 - type: Transform -- uid: 9215 - type: CableHV - components: - - pos: 41.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9216 - type: LockerMedicineFilled - components: - - pos: 32.5,-10.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9217 - type: CableApcExtension - components: - - pos: 33.5,-9.5 - parent: 60 - type: Transform -- uid: 9218 - type: CableApcExtension - components: - - pos: 33.5,-12.5 - parent: 60 - type: Transform -- uid: 9219 - type: CableApcExtension - components: - - pos: 40.5,-8.5 - parent: 60 - type: Transform -- uid: 9220 - type: SpawnMobPossumMorty - components: - - pos: 40.5,-8.5 - parent: 60 - type: Transform -- uid: 9221 - type: CableHV - components: - - pos: 42.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9222 - type: ClothingNeckStethoscope - components: - - pos: 34.46163,-9.424819 - parent: 60 - type: Transform -- uid: 9223 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-7.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9224 - type: CableHV - components: - - pos: 50.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9225 - type: CableHV - components: - - pos: 30.5,-7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9226 - type: CableHV - components: - - pos: 33.5,-7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9227 - type: CableHV - components: - - pos: 34.5,-7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9228 - type: CableHV - components: - - pos: 36.5,-70.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9229 - type: CableHV - components: - - pos: 37.5,-74.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9230 - type: CableHV - components: - - pos: 33.5,-74.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9231 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 57.5,13.5 - parent: 60 - type: Transform -- uid: 9232 - type: GasPipeFourway - components: - - pos: 17.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9233 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9234 - type: WallSolid - components: - - pos: 40.5,-2.5 - parent: 60 - type: Transform -- uid: 9235 - type: Grille - components: - - pos: 41.5,4.5 - parent: 60 - type: Transform -- uid: 9236 - type: CableHV - components: - - pos: 34.5,-4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9237 - type: ReinforcedWindow - components: - - pos: 52.5,4.5 - parent: 60 - type: Transform -- uid: 9238 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 55.5,3.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 12607 - Forward: - - port: Left - uid: 12607 - Off: - - port: Middle - uid: 12607 - type: SignalReceiver -- uid: 9239 - type: WallSolid - components: - - pos: 47.5,4.5 - parent: 60 - type: Transform -- uid: 9240 - type: WallSolid - components: - - pos: 42.5,4.5 - parent: 60 - type: Transform -- uid: 9241 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 25.5,5.5 - parent: 60 - type: Transform -- uid: 9242 - type: AirlockExternalGlassCargoLocked - components: - - pos: 55.5,2.5 - parent: 60 - type: Transform -- uid: 9243 - type: WallReinforced - components: - - pos: 53.5,5.5 - parent: 60 - type: Transform -- uid: 9244 - type: SolarPanel - components: - - pos: 32.5,-64.5 - parent: 60 - type: Transform -- uid: 9245 - type: SolarPanel - components: - - pos: 37.5,-66.5 - parent: 60 - type: Transform -- uid: 9246 - type: SolarPanel - components: - - pos: 30.5,-68.5 - parent: 60 - type: Transform -- uid: 9247 - type: SolarPanel - components: - - pos: 36.5,-66.5 - parent: 60 - type: Transform -- uid: 9248 - type: SolarPanel - components: - - pos: 29.5,-72.5 - parent: 60 - type: Transform -- uid: 9249 - type: Catwalk - components: - - pos: 27.5,-71.5 - parent: 60 - type: Transform -- uid: 9250 - type: SolarPanel - components: - - pos: 29.5,-66.5 - parent: 60 - type: Transform -- uid: 9251 - type: SolarPanel - components: - - pos: 36.5,-72.5 - parent: 60 - type: Transform -- uid: 9252 - type: Catwalk - components: - - pos: 34.5,-71.5 - parent: 60 - type: Transform -- uid: 9253 - type: SolarPanel - components: - - pos: 26.5,-68.5 - parent: 60 - type: Transform -- uid: 9254 - type: SolarPanel - components: - - pos: 33.5,-76.5 - parent: 60 - type: Transform -- uid: 9255 - type: Catwalk - components: - - pos: 30.5,-71.5 - parent: 60 - type: Transform -- uid: 9256 - type: SolarPanel - components: - - pos: 35.5,-72.5 - parent: 60 - type: Transform -- uid: 9257 - type: SolarPanel - components: - - pos: 36.5,-76.5 - parent: 60 - type: Transform -- uid: 9258 - type: Catwalk - components: - - pos: 26.5,-71.5 - parent: 60 - type: Transform -- uid: 9259 - type: SolarPanel - components: - - pos: 33.5,-72.5 - parent: 60 - type: Transform -- uid: 9260 - type: SolarPanel - components: - - pos: 33.5,-66.5 - parent: 60 - type: Transform -- uid: 9261 - type: Catwalk - components: - - pos: 26.5,-67.5 - parent: 60 - type: Transform -- uid: 9262 - type: CableHV - components: - - pos: 24.5,-76.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9263 - type: SolarPanel - components: - - pos: 38.5,-72.5 - parent: 60 - type: Transform -- uid: 9264 - type: Catwalk - components: - - pos: 31.5,-71.5 - parent: 60 - type: Transform -- uid: 9265 - type: SolarPanel - components: - - pos: 26.5,-66.5 - parent: 60 - type: Transform -- uid: 9266 - type: SolarPanel - components: - - pos: 35.5,-76.5 - parent: 60 - type: Transform -- uid: 9267 - type: ComputerBroken - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 7536 - type: Transform -- uid: 9268 - type: SolarPanel - components: - - pos: 34.5,-72.5 - parent: 60 - type: Transform -- uid: 9269 - type: Catwalk - components: - - pos: 25.5,-67.5 - parent: 60 - type: Transform -- uid: 9270 - type: Catwalk - components: - - pos: 32.5,-71.5 - parent: 60 - type: Transform -- uid: 9271 - type: SolarPanel - components: - - pos: 34.5,-76.5 - parent: 60 - type: Transform -- uid: 9272 - type: SolarPanel - components: - - pos: 30.5,-72.5 - parent: 60 - type: Transform -- uid: 9273 - type: SolarPanel - components: - - pos: 35.5,-66.5 - parent: 60 - type: Transform -- uid: 9274 - type: SolarPanel - components: - - pos: 29.5,-68.5 - parent: 60 - type: Transform -- uid: 9275 - type: Catwalk - components: - - pos: 28.5,-71.5 - parent: 60 - type: Transform -- uid: 9276 - type: SolarPanel - components: - - pos: 28.5,-66.5 - parent: 60 - type: Transform -- uid: 9277 - type: SolarPanel - components: - - pos: 37.5,-72.5 - parent: 60 - type: Transform -- uid: 9278 - type: SolarPanel - components: - - pos: 32.5,-76.5 - parent: 60 - type: Transform -- uid: 9279 - type: SolarPanel - components: - - pos: 27.5,-68.5 - parent: 60 - type: Transform -- uid: 9280 - type: Catwalk - components: - - pos: 28.5,-67.5 - parent: 60 - type: Transform -- uid: 9281 - type: Grille - components: - - pos: 23.5,-3.5 - parent: 60 - type: Transform -- uid: 9282 - type: FirelockGlass - components: - - pos: 45.5,4.5 - parent: 60 - type: Transform -- uid: 9283 - type: AirlockCargoGlassLocked - components: - - name: Cargo - type: MetaData - - pos: 42.5,5.5 - parent: 60 - type: Transform -- uid: 9284 - type: SolarPanel - components: - - pos: 36.5,-74.5 - parent: 60 - type: Transform -- uid: 9285 - type: SolarPanel - components: - - pos: 32.5,-68.5 - parent: 60 - type: Transform -- uid: 9286 - type: SolarPanel - components: - - pos: 30.5,-70.5 - parent: 60 - type: Transform -- uid: 9287 - type: Catwalk - components: - - pos: 31.5,-62.5 - parent: 60 - type: Transform -- uid: 9288 - type: SolarPanel - components: - - pos: 28.5,-76.5 - parent: 60 - type: Transform -- uid: 9289 - type: Catwalk - components: - - pos: 37.5,-75.5 - parent: 60 - type: Transform -- uid: 9290 - type: Catwalk - components: - - pos: 25.5,-75.5 - parent: 60 - type: Transform -- uid: 9291 - type: SolarPanel - components: - - pos: 24.5,-62.5 - parent: 60 - type: Transform -- uid: 9292 - type: SolarPanel - components: - - pos: 27.5,-74.5 - parent: 60 - type: Transform -- uid: 9293 - type: SolarPanel - components: - - pos: 37.5,-70.5 - parent: 60 - type: Transform -- uid: 9294 - type: Catwalk - components: - - pos: 30.5,-75.5 - parent: 60 - type: Transform -- uid: 9295 - type: Catwalk - components: - - pos: 31.5,-72.5 - parent: 60 - type: Transform -- uid: 9296 - type: CableHV - components: - - pos: 34.5,-62.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9297 - type: SolarPanel - components: - - pos: 29.5,-74.5 - parent: 60 - type: Transform -- uid: 9298 - type: SolarPanel - components: - - pos: 37.5,-68.5 - parent: 60 - type: Transform -- uid: 9299 - type: Catwalk - components: - - pos: 32.5,-75.5 - parent: 60 - type: Transform -- uid: 9300 - type: Catwalk - components: - - pos: 31.5,-77.5 - parent: 60 - type: Transform -- uid: 9301 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 7536 - type: Transform -- uid: 9302 - type: SpawnPointJanitor - components: - - pos: -9.5,-27.5 - parent: 60 - type: Transform -- uid: 9303 - type: SpawnPointAssistant - components: - - pos: 12.5,13.5 - parent: 60 - type: Transform -- uid: 9304 - type: SpawnPointAssistant - components: - - pos: 10.5,13.5 - parent: 60 - type: Transform -- uid: 9305 - type: Grille - components: - - pos: 38.5,-78.5 - parent: 60 - type: Transform -- uid: 9306 - type: SolarPanel - components: - - pos: 26.5,-76.5 - parent: 60 - type: Transform -- uid: 9307 - type: SolarPanel - components: - - pos: 29.5,-64.5 - parent: 60 - type: Transform -- uid: 9308 - type: CableHV - components: - - pos: 33.5,-62.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9309 - type: PottedPlantRandom - components: - - pos: -39.5,-3.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 9310 - type: DisposalUnit - components: - - pos: -43.5,-3.5 - parent: 60 - type: Transform -- uid: 9311 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -50.5,-8.5 - parent: 60 - type: Transform -- uid: 9312 - type: WallReinforced - components: - - pos: -55.5,-7.5 - parent: 60 - type: Transform -- uid: 9313 - type: WallReinforced - components: - - pos: -55.5,-6.5 - parent: 60 - type: Transform -- uid: 9314 - type: WallReinforced - components: - - pos: -55.5,-5.5 - parent: 60 - type: Transform -- uid: 9315 - type: WallReinforced - components: - - pos: -55.5,-9.5 - parent: 60 - type: Transform -- uid: 9316 - type: WallReinforced - components: - - pos: -54.5,-9.5 - parent: 60 - type: Transform -- uid: 9317 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-9.5 - parent: 60 - type: Transform -- uid: 9318 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-9.5 - parent: 60 - type: Transform -- uid: 9319 - type: WallReinforced - components: - - pos: -50.5,-9.5 - parent: 60 - type: Transform -- uid: 9320 - type: WallReinforced - components: - - pos: -51.5,-9.5 - parent: 60 - type: Transform -- uid: 9321 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -55.5,-8.5 - parent: 60 - type: Transform -- uid: 9322 - type: WallReinforced - components: - - pos: -50.5,-7.5 - parent: 60 - type: Transform -- uid: 9323 - type: WallReinforced - components: - - pos: -47.5,-9.5 - parent: 60 - type: Transform -- uid: 9324 - type: AirlockMaintRnDLocked - components: - - name: sci - type: MetaData - - pos: -48.5,-9.5 - parent: 60 - type: Transform -- uid: 9325 - type: WallReinforced - components: - - pos: -49.5,-9.5 - parent: 60 - type: Transform -- uid: 9326 - type: WallSolid - components: - - pos: -50.5,-4.5 - parent: 60 - type: Transform -- uid: 9327 - type: WallSolid - components: - - pos: -50.5,-5.5 - parent: 60 - type: Transform -- uid: 9328 - type: WallSolid - components: - - pos: -50.5,-6.5 - parent: 60 - type: Transform -- uid: 9329 - type: WallReinforced - components: - - pos: -50.5,1.5 - parent: 60 - type: Transform -- uid: 9330 - type: WallSolid - components: - - pos: -50.5,0.5 - parent: 60 - type: Transform -- uid: 9331 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-2.5 - parent: 60 - type: Transform -- uid: 9332 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-1.5 - parent: 60 - type: Transform -- uid: 9333 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-0.5 - parent: 60 - type: Transform -- uid: 9334 - type: WallSolid - components: - - pos: -50.5,-3.5 - parent: 60 - type: Transform -- uid: 9335 - type: WallReinforced - components: - - pos: -55.5,-4.5 - parent: 60 - type: Transform -- uid: 9336 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-5.5 - parent: 60 - type: Transform -- uid: 9337 - type: DisposalPipe - components: - - pos: -48.5,-3.5 - parent: 60 - type: Transform -- uid: 9338 - type: DisposalPipe - components: - - pos: -48.5,-1.5 - parent: 60 - type: Transform -- uid: 9339 - type: DisposalPipe - components: - - pos: -48.5,-0.5 - parent: 60 - type: Transform -- uid: 9340 - type: WallReinforced - components: - - pos: -51.5,-7.5 - parent: 60 - type: Transform -- uid: 9341 - type: WallSolid - components: - - pos: -54.5,1.5 - parent: 60 - type: Transform -- uid: 9342 - type: WallSolid - components: - - pos: -56.5,0.5 - parent: 60 - type: Transform -- uid: 9343 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -55.5,2.5 - parent: 60 - type: Transform -- uid: 9344 - type: ReinforcedWindow - components: - - pos: -52.5,-7.5 - parent: 60 - type: Transform -- uid: 9345 - type: WallReinforced - components: - - pos: -54.5,-7.5 - parent: 60 - type: Transform -- uid: 9346 - type: DisposalBend - components: - - pos: -55.5,13.5 - parent: 60 - type: Transform -- uid: 9347 - type: DisposalPipe - components: - - pos: -48.5,0.5 - parent: 60 - type: Transform -- uid: 9348 - type: Grille - components: - - pos: -56.5,4.5 - parent: 60 - type: Transform -- uid: 9349 - type: Grille - components: - - pos: -53.5,-7.5 - parent: 60 - type: Transform -- uid: 9350 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -55.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9351 - type: CrowbarRed - components: - - pos: -51.45357,-3.5214972 - parent: 60 - type: Transform -- uid: 9352 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-5.5 - parent: 60 - type: Transform -- uid: 9353 - type: Grille - components: - - pos: -52.5,-7.5 - parent: 60 - type: Transform -- uid: 9354 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -48.5,14.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 9355 - type: GasMixerFlipped - components: - - rot: 1.5707963267948966 rad - pos: -47.5,14.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 9356 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -46.5,14.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 9357 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -49.5,13.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 9358 - type: GasPipeStraight - components: - - pos: -49.5,15.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9359 - type: WindoorScienceLocked - components: - - pos: -45.5,15.5 - parent: 60 - type: Transform -- uid: 9360 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -51.5,13.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 9361 - type: TableGlass - components: - - pos: -51.5,-5.5 - parent: 60 - type: Transform -- uid: 9362 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: -49.5,14.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 9363 - type: GasPassiveVent - components: - - pos: -49.5,16.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 9364 - type: GasPipeStraight - components: - - pos: -51.5,15.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9365 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -47.5,13.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 9366 - type: GasPassiveVent - components: - - pos: -51.5,16.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 9367 - type: TableGlass - components: - - pos: -51.5,-6.5 - parent: 60 - type: Transform -- uid: 9368 - type: DisposalPipe - components: - - pos: -48.5,-4.5 - parent: 60 - type: Transform -- uid: 9369 - type: DisposalPipe - components: - - pos: -48.5,-2.5 - parent: 60 - type: Transform -- uid: 9370 - type: DisposalPipe - components: - - pos: -48.5,1.5 - parent: 60 - type: Transform -- uid: 9371 - type: SignAnomaly2 - components: - - pos: -54.5,1.5 - parent: 60 - type: Transform -- uid: 9372 - type: Screwdriver - components: - - rot: 3.141592653589793 rad - pos: -51.51607,-3.4433722 - parent: 60 - type: Transform -- uid: 9373 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -55.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9374 - type: ReinforcedWindow - components: - - pos: -53.5,-7.5 - parent: 60 - type: Transform -- uid: 9375 - type: WallReinforced - components: - - pos: -58.5,0.5 - parent: 60 - type: Transform -- uid: 9376 - type: ReinforcedPlasmaWindow - components: - - pos: -56.5,4.5 - parent: 60 - type: Transform -- uid: 9377 - type: SignRND - components: - - pos: -46.5,-2.5 - parent: 60 - type: Transform -- uid: 9378 - type: ReinforcedWindow - components: - - pos: -51.5,0.5 - parent: 60 - type: Transform -- uid: 9379 - type: ReinforcedWindow - components: - - pos: -53.5,0.5 - parent: 60 - type: Transform -- uid: 9380 - type: AirlockScienceGlassLocked - components: - - name: Anomaly Lab - type: MetaData - - pos: -52.5,0.5 - parent: 60 - type: Transform -- uid: 9381 - type: WallReinforced - components: - - pos: -58.5,6.5 - parent: 60 - type: Transform -- uid: 9382 - type: AirSensor - components: - - pos: -54.5,9.5 - parent: 60 - type: Transform -- uid: 9383 - type: WallReinforced - components: - - pos: -57.5,6.5 - parent: 60 - type: Transform -- uid: 9384 - type: WallReinforced - components: - - pos: -59.5,0.5 - parent: 60 - type: Transform -- uid: 9385 - type: WallReinforced - components: - - pos: -60.5,1.5 - parent: 60 - type: Transform -- uid: 9386 - type: Grille - components: - - pos: -56.5,3.5 - parent: 60 - type: Transform -- uid: 9387 - type: Grille - components: - - pos: -56.5,2.5 - parent: 60 - type: Transform -- uid: 9388 - type: WallSolid - components: - - pos: -56.5,1.5 - parent: 60 - type: Transform -- uid: 9389 - type: WallReinforced - components: - - pos: -59.5,6.5 - parent: 60 - type: Transform -- uid: 9390 - type: AirlockScienceGlassLocked - components: - - name: Anomaly Generator - type: MetaData - - pos: -57.5,0.5 - parent: 60 - type: Transform -- uid: 9391 - type: FirelockGlass - components: - - pos: -53.5,6.5 - parent: 60 - type: Transform -- uid: 9392 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -53.5,2.5 - parent: 60 - type: Transform -- uid: 9393 - type: DisposalBend - components: - - pos: -48.5,2.5 - parent: 60 - type: Transform -- uid: 9394 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-3.5 - parent: 60 - type: Transform -- uid: 9395 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -52.5,7.5 - parent: 60 - type: Transform - - devices: - - 9472 - - 9391 - - 9471 - - 9382 - type: DeviceList -- uid: 9396 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-5.5 - parent: 60 - type: Transform -- uid: 9397 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-5.5 - parent: 60 - type: Transform -- uid: 9398 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-5.5 - parent: 60 - type: Transform -- uid: 9399 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-5.5 - parent: 60 - type: Transform -- uid: 9400 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-5.5 - parent: 60 - type: Transform -- uid: 9401 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-5.5 - parent: 60 - type: Transform -- uid: 9402 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-5.5 - parent: 60 - type: Transform -- uid: 9403 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -43.5,-4.5 - parent: 60 - type: Transform -- uid: 9404 - type: GasPressurePump - components: - - pos: -51.5,14.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 9405 - type: ChairOfficeDark - components: - - pos: -53.5,-5.5 - parent: 60 - type: Transform -- uid: 9406 - type: SheetPlasma - components: - - pos: -54.504642,-5.5148015 - parent: 60 - type: Transform -- uid: 9407 - type: Grille - components: - - pos: -53.5,0.5 - parent: 60 - type: Transform -- uid: 9408 - type: Grille - components: - - pos: -51.5,0.5 - parent: 60 - type: Transform -- uid: 9409 - type: FirelockGlass - components: - - pos: -53.5,1.5 - parent: 60 - type: Transform -- uid: 9410 - type: FirelockGlass - components: - - pos: -52.5,1.5 - parent: 60 - type: Transform -- uid: 9411 - type: FirelockGlass - components: - - pos: -51.5,1.5 - parent: 60 - type: Transform -- uid: 9412 - type: WallSolid - components: - - pos: -54.5,0.5 - parent: 60 - type: Transform -- uid: 9413 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-5.5 - parent: 60 - type: Transform -- uid: 9414 - type: DisposalTrunk - components: - - pos: -56.5,14.5 - parent: 60 - type: Transform -- uid: 9415 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -56.5,13.5 - parent: 60 - type: Transform -- uid: 9416 - type: TableGlass - components: - - pos: -52.5,-6.5 - parent: 60 - type: Transform -- uid: 9417 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-2.5 - parent: 60 - type: Transform -- uid: 9418 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-1.5 - parent: 60 - type: Transform -- uid: 9419 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-0.5 - parent: 60 - type: Transform -- uid: 9420 - type: MachineAPE - components: - - rot: 3.141592653589793 rad - pos: -56.5,-3.5 - parent: 60 - type: Transform -- uid: 9421 - type: AnomalyScanner - components: - - pos: -51.426517,-5.692988 - parent: 60 - type: Transform -- uid: 9422 - type: MachineAPE - components: - - rot: 3.141592653589793 rad - pos: -57.5,-3.5 - parent: 60 - type: Transform -- uid: 9423 - type: AnomalyScanner - components: - - pos: -51.582767,-5.458613 - parent: 60 - type: Transform -- uid: 9424 - type: TableReinforcedGlass - components: - - pos: -44.5,4.5 - parent: 60 - type: Transform -- uid: 9425 - type: MicroLaserStockPart - components: - - pos: -45.496006,-9.58335 - parent: 60 - type: Transform -- uid: 9426 - type: WallReinforced - components: - - pos: -57.5,7.5 - parent: 60 - type: Transform -- uid: 9427 - type: WallReinforced - components: - - pos: -53.5,15.5 - parent: 60 - type: Transform -- uid: 9428 - type: WallReinforced - components: - - pos: -54.5,15.5 - parent: 60 - type: Transform -- uid: 9429 - type: WallReinforced - components: - - pos: -55.5,15.5 - parent: 60 - type: Transform -- uid: 9430 - type: AirlockMaintRnDLocked - components: - - name: robotics - type: MetaData - - pos: -33.5,16.5 - parent: 60 - type: Transform -- uid: 9431 - type: WallReinforced - components: - - pos: -57.5,15.5 - parent: 60 - type: Transform -- uid: 9432 - type: WallReinforced - components: - - pos: -56.5,15.5 - parent: 60 - type: Transform -- uid: 9433 - type: WallReinforced - components: - - pos: -57.5,14.5 - parent: 60 - type: Transform -- uid: 9434 - type: WallReinforced - components: - - pos: -57.5,12.5 - parent: 60 - type: Transform -- uid: 9435 - type: WallReinforced - components: - - pos: -57.5,11.5 - parent: 60 - type: Transform -- uid: 9436 - type: WallReinforced - components: - - pos: -57.5,10.5 - parent: 60 - type: Transform -- uid: 9437 - type: ArtifactAnalyzerMachineCircuitboard - components: - - pos: -53.47654,14.530401 - parent: 60 - type: Transform -- uid: 9438 - type: CableApcExtension - components: - - pos: -46.5,14.5 - parent: 60 - type: Transform -- uid: 9439 - type: CableHV - components: - - pos: -45.5,15.5 - parent: 60 - type: Transform -- uid: 9440 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,13.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9441 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9442 - type: MachineArtifactAnalyzer - components: - - pos: -50.5,17.5 - parent: 60 - type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 466 - type: SignalReceiver -- uid: 9443 - type: CableHV - components: - - pos: -45.5,16.5 - parent: 60 - type: Transform -- uid: 9444 - type: CableHV - components: - - pos: -45.5,14.5 - parent: 60 - type: Transform -- uid: 9445 - type: WallReinforced - components: - - pos: -44.5,16.5 - parent: 60 - type: Transform -- uid: 9446 - type: ReinforcedWindow - components: - - pos: -52.5,16.5 - parent: 60 - type: Transform -- uid: 9447 - type: WallReinforced - components: - - pos: -44.5,15.5 - parent: 60 - type: Transform -- uid: 9448 - type: APCBasic - components: - - pos: -44.5,15.5 - parent: 60 - type: Transform -- uid: 9449 - type: WallReinforced - components: - - pos: -52.5,15.5 - parent: 60 - type: Transform -- uid: 9450 - type: IntercomScience - components: - - pos: -39.5,-2.5 - parent: 60 - type: Transform -- uid: 9451 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -45.5,11.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9452 - type: TableGlass - components: - - pos: -47.5,17.5 - parent: 60 - type: Transform -- uid: 9453 - type: SignAnomaly - components: - - pos: -52.5,13.5 - parent: 60 - type: Transform -- uid: 9454 - type: CableApcExtension - components: - - pos: -46.5,15.5 - parent: 60 - type: Transform -- uid: 9455 - type: AnalysisComputerCircuitboard - components: - - pos: -53.57029,14.702276 - parent: 60 - type: Transform -- uid: 9456 - type: PosterLegitScience - components: - - pos: -46.5,18.5 - parent: 60 - type: Transform -- uid: 9457 - type: Grille - components: - - pos: -48.5,17.5 - parent: 60 - type: Transform -- uid: 9458 - type: WallSolid - components: - - pos: -52.5,13.5 - parent: 60 - type: Transform -- uid: 9459 - type: CableApcExtension - components: - - pos: -46.5,16.5 - parent: 60 - type: Transform -- uid: 9460 - type: AirlockMaintRnDLocked - components: - - name: 'sci ' - type: MetaData - - pos: -57.5,13.5 - parent: 60 - type: Transform -- uid: 9461 - type: CrateArtifactContainer - components: - - pos: -44.5,14.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9462 - type: WallSolid - components: - - pos: -48.5,15.5 - parent: 60 - type: Transform -- uid: 9463 - type: MatterBinStockPart - components: - - pos: -45.371063,-10.326076 - parent: 60 - type: Transform -- uid: 9464 - type: Table - components: - - pos: -34.5,15.5 - parent: 60 - type: Transform -- uid: 9465 - type: Table - components: - - pos: -32.5,15.5 - parent: 60 - type: Transform -- uid: 9466 - type: SignSecureMed - components: - - pos: -40.5,-1.5 - parent: 60 - type: Transform -- uid: 9467 - type: SignScience - components: - - pos: -40.5,0.5 - parent: 60 - type: Transform -- uid: 9468 - type: FirelockGlass - components: - - pos: -39.5,0.5 - parent: 60 - type: Transform -- uid: 9469 - type: TableReinforcedGlass - components: - - pos: -42.5,3.5 - parent: 60 - type: Transform -- uid: 9470 - type: TableReinforcedGlass - components: - - pos: -42.5,4.5 - parent: 60 - type: Transform -- uid: 9471 - type: FirelockGlass - components: - - pos: -54.5,6.5 - parent: 60 - type: Transform -- uid: 9472 - type: FirelockGlass - components: - - pos: -55.5,6.5 - parent: 60 - type: Transform -- uid: 9473 - type: AirlockScienceGlassLocked - components: - - pos: -53.5,5.5 - parent: 60 - type: Transform -- uid: 9474 - type: NanoManipulatorStockPart - components: - - pos: -66.53229,9.621169 - parent: 60 - type: Transform -- uid: 9475 - type: WallSolidRust - components: - - pos: -54.5,-22.5 - parent: 60 - type: Transform -- uid: 9476 - type: MatterBinStockPart - components: - - pos: -45.51169,-10.154201 - parent: 60 - type: Transform -- uid: 9477 - type: TableReinforced - components: - - pos: -53.5,13.5 - parent: 60 - type: Transform -- uid: 9478 - type: PaperBin5 - components: - - pos: -44.5,-7.5 - parent: 60 - type: Transform -- uid: 9479 - type: AirlockScienceGlassLocked - components: - - name: Robotics Bay - type: MetaData - - pos: -35.5,13.5 - parent: 60 - type: Transform -- uid: 9480 - type: TwoWayLever - components: - - pos: -32.5,12.5 - parent: 60 - type: Transform - - outputs: - Middle: - - port: Close - uid: 5627 - - port: Close - uid: 5626 - - port: Close - uid: 5628 - Right: - - port: Open - uid: 5627 - - port: Open - uid: 5626 - - port: Open - uid: 5628 - Left: - - port: Open - uid: 5627 - - port: Open - uid: 5626 - - port: Open - uid: 5628 - type: SignalTransmitter -- uid: 9481 - type: EncryptionKeyCommon - components: - - pos: 9.2764225,13.685002 - parent: 60 - type: Transform -- uid: 9482 - type: EncryptionKeyRobo - components: - - pos: -30.49045,11.494592 - parent: 60 - type: Transform -- uid: 9483 - type: ReinforcedWindow - components: - - pos: -35.5,12.5 - parent: 60 - type: Transform -- uid: 9484 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: -39.5,14.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics - type: SurveillanceCamera -- uid: 9485 - type: ReinforcedWindow - components: - - pos: -35.5,14.5 - parent: 60 - type: Transform -- uid: 9486 - type: WallSolid - components: - - pos: -35.5,11.5 - parent: 60 - type: Transform -- uid: 9487 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -39.5,11.5 - parent: 60 - type: Transform -- uid: 9488 - type: VendingMachineRoboDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,14.5 - parent: 60 - type: Transform -- uid: 9489 - type: Saw - components: - - pos: -40.45737,11.498541 - parent: 60 - type: Transform -- uid: 9490 - type: Morgue - components: - - rot: 3.141592653589793 rad - pos: -39.5,11.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9491 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -40.5,11.5 - parent: 60 - type: Transform -- uid: 9492 - type: TintedWindow - components: - - pos: -43.5,12.5 - parent: 60 - type: Transform -- uid: 9493 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -39.5,12.5 - parent: 60 - type: Transform -- uid: 9494 - type: TableReinforced - components: - - pos: -42.5,12.5 - parent: 60 - type: Transform -- uid: 9495 - type: CableMV - components: - - pos: -45.5,11.5 - parent: 60 - type: Transform -- uid: 9496 - type: SignAnomaly - components: - - pos: -43.5,14.5 - parent: 60 - type: Transform -- uid: 9497 - type: Grille - components: - - pos: -43.5,11.5 - parent: 60 - type: Transform -- uid: 9498 - type: CableMV - components: - - pos: -44.5,11.5 - parent: 60 - type: Transform -- uid: 9499 - type: WallSolid - components: - - pos: -43.5,14.5 - parent: 60 - type: Transform -- uid: 9500 - type: CableMV - components: - - pos: -46.5,11.5 - parent: 60 - type: Transform -- uid: 9501 - type: ScalpelLaser - components: - - pos: -40.541443,11.441846 - parent: 60 - type: Transform -- uid: 9502 - type: ClothingMaskBreath - components: - - pos: -42.46292,12.379346 - parent: 60 - type: Transform -- uid: 9503 - type: OperatingTable - components: - - pos: -41.5,11.5 - parent: 60 - type: Transform -- uid: 9504 - type: Hemostat - components: - - pos: 38.60699,-14.454039 - parent: 60 - type: Transform -- uid: 9505 - type: computerBodyScanner - components: - - rot: 1.5707963267948966 rad - pos: -42.5,11.5 - parent: 60 - type: Transform -- uid: 9506 - type: NitrousOxideTankFilled - components: - - pos: -42.541046,12.473096 - parent: 60 - type: Transform - - nextAttack: 2579.6572133 - type: MeleeWeapon -- uid: 9507 - type: ChairOfficeLight - components: - - pos: -37.5,11.5 - parent: 60 - type: Transform -- uid: 9508 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -41.5,12.5 - parent: 60 - type: Transform -- uid: 9509 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -39.5,12.5 - parent: 60 - type: Transform -- uid: 9510 - type: Retractor - components: - - pos: -40.494568,11.691846 - parent: 60 - type: Transform -- uid: 9511 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -42.5,12.5 - parent: 60 - type: Transform -- uid: 9512 - type: Table - components: - - pos: -45.5,-10.5 - parent: 60 - type: Transform -- uid: 9513 - type: Autolathe - components: - - pos: -40.5,-10.5 - parent: 60 - type: Transform -- uid: 9514 - type: ReinforcedWindow - components: - - pos: -51.5,15.5 - parent: 60 - type: Transform -- uid: 9515 - type: CircuitImprinter - components: - - pos: -42.5,-10.5 - parent: 60 - type: Transform -- uid: 9516 - type: Table - components: - - pos: -45.5,-7.5 - parent: 60 - type: Transform -- uid: 9517 - type: CableApcStack - components: - - pos: -44.53414,-10.426371 - parent: 60 - type: Transform -- uid: 9518 - type: Table - components: - - pos: -44.5,-7.5 - parent: 60 - type: Transform -- uid: 9519 - type: DisposalBend - components: - - pos: -38.5,13.5 - parent: 60 - type: Transform -- uid: 9520 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 12.5,35.5 - parent: 60 - type: Transform -- uid: 9521 - type: WeldingFuelTankFull - components: - - pos: -30.5,14.5 - parent: 60 - type: Transform -- uid: 9522 - type: Rack - components: - - pos: -30.5,15.5 - parent: 60 - type: Transform -- uid: 9523 - type: ToolboxMechanicalFilled - components: - - pos: -30.479893,15.642257 - parent: 60 - type: Transform -- uid: 9524 - type: LockerEngineerFilled - components: - - pos: -4.5,18.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9525 - type: CrowbarRed - components: - - pos: -32.46437,15.522025 - parent: 60 - type: Transform -- uid: 9526 - type: FirelockGlass - components: - - pos: -47.5,1.5 - parent: 60 - type: Transform -- uid: 9527 - type: FirelockGlass - components: - - pos: -48.5,1.5 - parent: 60 - type: Transform -- uid: 9528 - type: FirelockGlass - components: - - pos: -49.5,1.5 - parent: 60 - type: Transform -- uid: 9529 - type: TableReinforcedGlass - components: - - pos: -43.5,4.5 - parent: 60 - type: Transform -- uid: 9530 - type: ChairOfficeDark - components: - - pos: -41.5,4.5 - parent: 60 - type: Transform -- uid: 9531 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,3.5 - parent: 60 - type: Transform -- uid: 9532 - type: Grille - components: - - pos: 26.5,0.5 - parent: 60 - type: Transform -- uid: 9533 - type: Lamp - components: - - pos: -44.35654,4.9651957 - parent: 60 - type: Transform -- uid: 9534 - type: BoxFolderGrey - components: - - pos: -42.465916,4.1214457 - parent: 60 - type: Transform -- uid: 9535 - type: EmergencyLight - components: - - pos: 30.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 9536 - type: WeaponCapacitorRecharger - components: - - pos: -42.5,3.5 - parent: 60 - type: Transform -- uid: 9537 - type: PowerCellRecharger - components: - - pos: -43.5,4.5 - parent: 60 - type: Transform -- uid: 9538 - type: Hemostat - components: - - pos: -40.47574,11.636003 - parent: 60 - type: Transform -- uid: 9539 - type: PowerCellRecharger - components: - - pos: -41.5,-6.5 - parent: 60 - type: Transform -- uid: 9540 - type: PottedPlant14 - components: - - pos: -44.47594,2.2602372 - parent: 60 - type: Transform -- uid: 9541 - type: BoxBeaker - components: - - pos: -44.920177,-3.377149 - parent: 60 - type: Transform -- uid: 9542 - type: BoxSyringe - components: - - pos: -44.541676,-3.31748 - parent: 60 - type: Transform -- uid: 9543 - type: HandLabeler - components: - - pos: -45.44563,-4.3586817 - parent: 60 - type: Transform -- uid: 9544 - type: Screwdriver - components: - - pos: -42.435337,-3.41123 - parent: 60 - type: Transform - - nextAttack: 1811.6269497 - type: MeleeWeapon -- uid: 9545 - type: Wrench - components: - - pos: -42.502525,-3.3658876 - parent: 60 - type: Transform - - nextAttack: 1996.5762099 - type: MeleeWeapon -- uid: 9546 - type: RandomVendingDrinks - components: - - pos: -36.5,-1.5 - parent: 60 - type: Transform -- uid: 9547 - type: RandomVendingSnacks - components: - - pos: -36.5,-2.5 - parent: 60 - type: Transform -- uid: 9548 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-3.5 - parent: 60 - type: Transform -- uid: 9549 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-4.5 - parent: 60 - type: Transform -- uid: 9550 - type: DisposalUnit - components: - - pos: -36.5,1.5 - parent: 60 - type: Transform -- uid: 9551 - type: Table - components: - - pos: -45.5,-1.5 - parent: 60 - type: Transform -- uid: 9552 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-1.5 - parent: 60 - type: Transform -- uid: 9553 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-1.5 - parent: 60 - type: Transform -- uid: 9554 - type: PottedPlantBioluminscent - components: - - pos: -44.5,0.5 - parent: 60 - type: Transform -- uid: 9555 - type: PottedPlantBioluminscent - components: - - pos: -49.5,5.5 - parent: 60 - type: Transform -- uid: 9556 - type: PottedPlantBioluminscent - components: - - pos: -51.5,5.5 - parent: 60 - type: Transform -- uid: 9557 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -47.5,-8.5 - parent: 60 - type: Transform -- uid: 9558 - type: Table - components: - - pos: -49.5,-7.5 - parent: 60 - type: Transform -- uid: 9559 - type: ComfyChair - components: - - pos: -49.5,-6.5 - parent: 60 - type: Transform -- uid: 9560 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -49.5,-8.5 - parent: 60 - type: Transform -- uid: 9561 - type: BoxFolderBlack - components: - - pos: -45.46234,-1.3609619 - parent: 60 - type: Transform -- uid: 9562 - type: Catwalk - components: - - pos: 10.5,-17.5 - parent: 60 - type: Transform -- uid: 9563 - type: PottedPlantBioluminscent - components: - - pos: -49.5,-5.5 - parent: 60 - type: Transform -- uid: 9564 - type: PosterLegitScience - components: - - pos: -50.5,-7.5 - parent: 60 - type: Transform -- uid: 9565 - type: PosterLegit50thAnniversaryVintageReprint - components: - - pos: -43.5,-2.5 - parent: 60 - type: Transform -- uid: 9566 - type: filingCabinetDrawerRandom - components: - - pos: -44.5,5.5 - parent: 60 - type: Transform -- uid: 9567 - type: PosterLegitSafetyInternals - components: - - pos: -50.5,0.5 - parent: 60 - type: Transform -- uid: 9568 - type: DisposalUnit - components: - - pos: -56.5,14.5 - parent: 60 - type: Transform -- uid: 9569 - type: WallmountTelevision - components: - - pos: -12.5,-49.5 - parent: 60 - type: Transform -- uid: 9570 - type: TableReinforced - components: - - pos: -54.5,14.5 - parent: 60 - type: Transform -- uid: 9571 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -42.5,-11.5 - parent: 60 - type: Transform -- uid: 9572 - type: LockerScienceFilled - components: - - pos: -56.5,12.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9573 - type: LockerScienceFilled - components: - - pos: -56.5,11.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9574 - type: LockerScienceFilled - components: - - pos: -56.5,10.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9575 - type: Rack - components: - - pos: -56.5,8.5 - parent: 60 - type: Transform -- uid: 9576 - type: Rack - components: - - pos: -56.5,9.5 - parent: 60 - type: Transform -- uid: 9577 - type: WallSolid - components: - - pos: -52.5,11.5 - parent: 60 - type: Transform -- uid: 9578 - type: AirlockScienceGlassLocked - components: - - name: Test Chamber - type: MetaData - - pos: -50.5,15.5 - parent: 60 - type: Transform -- uid: 9579 - type: CableMV - components: - - pos: -48.5,11.5 - parent: 60 - type: Transform -- uid: 9580 - type: CableMV - components: - - pos: -49.5,11.5 - parent: 60 - type: Transform -- uid: 9581 - type: Grille - components: - - pos: 26.5,1.5 - parent: 60 - type: Transform -- uid: 9582 - type: Grille - components: - - pos: 26.5,2.5 - parent: 60 - type: Transform -- uid: 9583 - type: Grille - components: - - pos: 20.5,0.5 - parent: 60 - type: Transform -- uid: 9584 - type: Grille - components: - - pos: 20.5,1.5 - parent: 60 - type: Transform -- uid: 9585 - type: SheetPlastic - components: - - pos: -53.46743,13.76821 - parent: 60 - type: Transform -- uid: 9586 - type: SheetPlastic - components: - - pos: -53.46743,13.76821 - parent: 60 - type: Transform -- uid: 9587 - type: Multitool - components: - - pos: -56.485554,9.521204 - parent: 60 - type: Transform -- uid: 9588 - type: ClothingBeltUtilityFilled - components: - - pos: -56.46993,8.505579 - parent: 60 - type: Transform -- uid: 9589 - type: ClosetRadiationSuitFilled - components: - - pos: -56.5,7.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9590 - type: WallSolid - components: - - pos: -56.5,5.5 - parent: 60 - type: Transform -- uid: 9591 - type: Table - components: - - pos: -45.5,-9.5 - parent: 60 - type: Transform -- uid: 9592 - type: TableReinforced - components: - - pos: -40.5,3.5 - parent: 60 - type: Transform -- uid: 9593 - type: TableReinforced - components: - - pos: -40.5,4.5 - parent: 60 - type: Transform -- uid: 9594 - type: TableReinforced - components: - - pos: -40.5,5.5 - parent: 60 - type: Transform -- uid: 9595 - type: Table - components: - - pos: -53.5,9.5 - parent: 60 - type: Transform -- uid: 9596 - type: Table - components: - - pos: -53.5,10.5 - parent: 60 - type: Transform -- uid: 9597 - type: SignalButton - components: - - name: Space Shutter - type: MetaData - - pos: -48.5,15.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13901 - type: SignalTransmitter -- uid: 9598 - type: ClothingEyesGlasses - components: - - pos: -56.588036,9.687175 - parent: 60 - type: Transform -- uid: 9599 - type: PowerDrill - components: - - pos: -40.552372,4.5735826 - parent: 60 - type: Transform -- uid: 9600 - type: PottedPlant19 - components: - - pos: -40.522816,2.2133622 - parent: 60 - type: Transform -- uid: 9601 - type: Table - components: - - pos: -42.5,14.5 - parent: 60 - type: Transform -- uid: 9602 - type: ClothingOuterHardsuitEVA - components: - - pos: -40.482635,3.7726111 - parent: 60 - type: Transform -- uid: 9603 - type: ClothingHeadHelmetEVA - components: - - pos: -40.65451,3.6319861 - parent: 60 - type: Transform -- uid: 9604 - type: Chair - components: - - pos: -46.5,4.5 - parent: 60 - type: Transform -- uid: 9605 - type: Chair - components: - - pos: -47.5,4.5 - parent: 60 - type: Transform -- uid: 9606 - type: MachineFrame - components: - - pos: -41.5,-7.5 - parent: 60 - type: Transform -- uid: 9607 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -42.5,-0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9608 - type: GasVentScrubber - components: - - pos: -41.5,-0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9609 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9610 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9611 - type: WelderMini - components: - - pos: -34.380413,15.54944 - parent: 60 - type: Transform -- uid: 9612 - type: ClothingHeadHatWelding - components: - - pos: -34.442913,15.721314 - parent: 60 - type: Transform -- uid: 9613 - type: LargeBeaker - components: - - pos: -39.366615,14.652188 - parent: 60 - type: Transform -- uid: 9614 - type: ToolboxElectricalFilled - components: - - pos: -34.503784,11.589455 - parent: 60 - type: Transform - - nextAttack: 3075.5218955 - type: MeleeWeapon -- uid: 9615 - type: Rack - components: - - pos: -39.5,14.5 - parent: 60 - type: Transform -- uid: 9616 - type: HandheldHealthAnalyzer - components: - - pos: -42.483322,14.749073 - parent: 60 - type: Transform -- uid: 9617 - type: ClothingHandsGlovesColorBlack - components: - - pos: -42.420822,14.499073 - parent: 60 - type: Transform -- uid: 9618 - type: PottedPlant28 - components: - - pos: -1.5,21.5 - parent: 60 - type: Transform -- uid: 9619 - type: DrinkMugMoebius - components: - - pos: -49.44168,-7.4234295 - parent: 60 - type: Transform -- uid: 9620 - type: AirlockMaintLocked - components: - - pos: -39.5,-12.5 - parent: 60 - type: Transform -- uid: 9621 - type: ComputerTelevision - components: - - pos: -46.5,21.5 - parent: 60 - type: Transform -- uid: 9622 - type: TintedWindow - components: - - pos: -43.5,11.5 - parent: 60 - type: Transform -- uid: 9623 - type: CableMV - components: - - pos: -34.5,13.5 - parent: 60 - type: Transform -- uid: 9624 - type: ClothingOuterCoatLab - components: - - pos: -51.48335,-6.4043274 - parent: 60 - type: Transform -- uid: 9625 - type: Chair - components: - - pos: -48.5,4.5 - parent: 60 - type: Transform -- uid: 9626 - type: CableMV - components: - - pos: 51.5,-32.5 - parent: 60 - type: Transform -- uid: 9627 - type: Cigar - components: - - pos: -65.43419,25.616732 - parent: 60 - type: Transform -- uid: 9628 - type: CableMV - components: - - pos: 52.5,-31.5 - parent: 60 - type: Transform -- uid: 9629 - type: WallSolid - components: - - pos: -52.5,14.5 - parent: 60 - type: Transform -- uid: 9630 - type: AirlockScienceGlassLocked - components: - - name: Lockers-Xenoarch - type: MetaData - - pos: -52.5,12.5 - parent: 60 - type: Transform -- uid: 9631 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -51.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9632 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -43.5,12.5 - parent: 60 - type: Transform -- uid: 9633 - type: Cigar - components: - - pos: -65.24669,25.569857 - parent: 60 - type: Transform -- uid: 9634 - type: Grille - components: - - pos: -35.5,12.5 - parent: 60 - type: Transform -- uid: 9635 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9636 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9637 - type: GasPipeTJunction - components: - - pos: -55.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9638 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -54.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9639 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9640 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9641 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -41.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9642 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9643 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -46.5,10.5 - parent: 60 - type: Transform -- uid: 9644 - type: Grille - components: - - pos: -49.5,15.5 - parent: 60 - type: Transform -- uid: 9645 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-9.5 - parent: 60 - type: Transform -- uid: 9646 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-9.5 - parent: 60 - type: Transform -- uid: 9647 - type: SignalButton - components: - - name: Maint Blast Doors - type: MetaData - - rot: 1.5707963267948966 rad - pos: -52.5,14.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 21026 - type: SignalTransmitter -- uid: 9648 - type: WallReinforced - components: - - pos: -47.5,18.5 - parent: 60 - type: Transform -- uid: 9649 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9650 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9651 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -46.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9652 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9653 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9654 - type: GasPipeStraight - components: - - pos: -54.5,11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9655 - type: GasPipeStraight - components: - - pos: -54.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9656 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -55.5,11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9657 - type: GasPipeStraight - components: - - pos: -54.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9658 - type: GasPipeStraight - components: - - pos: -54.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9659 - type: GasPipeStraight - components: - - pos: -54.5,6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9660 - type: GasPipeStraight - components: - - pos: -54.5,5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9661 - type: GasPipeStraight - components: - - pos: -54.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9662 - type: GasPipeStraight - components: - - pos: -54.5,3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9663 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -55.5,-2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9664 - type: GasPipeBend - components: - - pos: -54.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9665 - type: GasPipeStraight - components: - - pos: -54.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9666 - type: GasPipeStraight - components: - - pos: -54.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9667 - type: GasPipeStraight - components: - - pos: -54.5,-7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9668 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -54.5,-8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9669 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -50.5,-8.5 - parent: 60 - type: Transform -- uid: 9670 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -55.5,-8.5 - parent: 60 - type: Transform -- uid: 9671 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -48.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9672 - type: GasVentScrubber - components: - - pos: -48.5,3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9673 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -54.5,11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9674 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -55.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9675 - type: CableMV - components: - - pos: 52.5,-32.5 - parent: 60 - type: Transform -- uid: 9676 - type: Grille - components: - - pos: 20.5,2.5 - parent: 60 - type: Transform -- uid: 9677 - type: GasVentScrubber - components: - - pos: -38.5,13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9678 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -37.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9679 - type: GasVentScrubber - components: - - pos: -32.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9680 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -32.5,1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9681 - type: GasPipeStraight - components: - - pos: -32.5,0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9682 - type: GasPipeStraight - components: - - pos: -32.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9683 - type: GasPipeStraight - components: - - pos: -32.5,3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9684 - type: SubstationBasic - components: - - name: Sci Substation 2 - type: MetaData - - pos: -58.5,7.5 - parent: 60 - type: Transform -- uid: 9685 - type: AirlockEngineeringLocked - components: - - name: Sci Substations - type: MetaData - - pos: -59.5,10.5 - parent: 60 - type: Transform -- uid: 9686 - type: WallReinforced - components: - - pos: -60.5,6.5 - parent: 60 - type: Transform -- uid: 9687 - type: WallSolid - components: - - pos: -60.5,7.5 - parent: 60 - type: Transform -- uid: 9688 - type: WallSolid - components: - - pos: -60.5,8.5 - parent: 60 - type: Transform -- uid: 9689 - type: WallSolid - components: - - pos: -60.5,9.5 - parent: 60 - type: Transform -- uid: 9690 - type: WallSolid - components: - - pos: -60.5,10.5 - parent: 60 - type: Transform -- uid: 9691 - type: WallSolid - components: - - pos: -58.5,10.5 - parent: 60 - type: Transform -- uid: 9692 - type: WallSolid - components: - - pos: -52.5,5.5 - parent: 60 - type: Transform -- uid: 9693 - type: CableMV - components: - - pos: 17.5,20.5 - parent: 60 - type: Transform -- uid: 9694 - type: APCBasic - components: - - pos: -31.5,16.5 - parent: 60 - type: Transform -- uid: 9695 - type: CableMV - components: - - pos: -58.5,7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9696 - type: CableMV - components: - - pos: -59.5,7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9697 - type: CableMV - components: - - pos: -59.5,8.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9698 - type: CableMV - components: - - pos: -59.5,9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9699 - type: CableMV - components: - - pos: -59.5,10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9700 - type: CableMV - components: - - pos: -59.5,11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9701 - type: CableMV - components: - - pos: -59.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9702 - type: CableMV - components: - - pos: -59.5,13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9703 - type: CableMV - components: - - pos: -58.5,13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9704 - type: CableMV - components: - - pos: -57.5,13.5 - parent: 60 - type: Transform -- uid: 9705 - type: CableMV - components: - - pos: -56.5,13.5 - parent: 60 - type: Transform -- uid: 9706 - type: CableMV - components: - - pos: -55.5,13.5 - parent: 60 - type: Transform -- uid: 9707 - type: CableMV - components: - - pos: -54.5,13.5 - parent: 60 - type: Transform -- uid: 9708 - type: CableMV - components: - - pos: -50.5,11.5 - parent: 60 - type: Transform -- uid: 9709 - type: CableMV - components: - - pos: -53.5,12.5 - parent: 60 - type: Transform -- uid: 9710 - type: CableMV - components: - - pos: -52.5,12.5 - parent: 60 - type: Transform -- uid: 9711 - type: CableMV - components: - - pos: -51.5,12.5 - parent: 60 - type: Transform -- uid: 9712 - type: CableMV - components: - - pos: -50.5,12.5 - parent: 60 - type: Transform -- uid: 9713 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -46.5,10.5 - parent: 60 - type: Transform -- uid: 9714 - type: WallReinforced - components: - - pos: -45.5,18.5 - parent: 60 - type: Transform -- uid: 9715 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -47.5,10.5 - parent: 60 - type: Transform -- uid: 9716 - type: WallReinforced - components: - - pos: -46.5,18.5 - parent: 60 - type: Transform -- uid: 9717 - type: WallReinforced - components: - - pos: -44.5,18.5 - parent: 60 - type: Transform -- uid: 9718 - type: CableMV - components: - - pos: -44.5,12.5 - parent: 60 - type: Transform -- uid: 9719 - type: CableMV - components: - - pos: -44.5,13.5 - parent: 60 - type: Transform -- uid: 9720 - type: CableMV - components: - - pos: -43.5,13.5 - parent: 60 - type: Transform -- uid: 9721 - type: CableMV - components: - - pos: -42.5,13.5 - parent: 60 - type: Transform -- uid: 9722 - type: CableMV - components: - - pos: -41.5,13.5 - parent: 60 - type: Transform -- uid: 9723 - type: CableMV - components: - - pos: -40.5,13.5 - parent: 60 - type: Transform -- uid: 9724 - type: CableMV - components: - - pos: -39.5,13.5 - parent: 60 - type: Transform -- uid: 9725 - type: CableMV - components: - - pos: -38.5,13.5 - parent: 60 - type: Transform -- uid: 9726 - type: CableMV - components: - - pos: -37.5,13.5 - parent: 60 - type: Transform -- uid: 9727 - type: CableMV - components: - - pos: -36.5,13.5 - parent: 60 - type: Transform -- uid: 9728 - type: CableHV - components: - - pos: -52.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9729 - type: CableHV - components: - - pos: -52.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9730 - type: CableMV - components: - - pos: -34.5,14.5 - parent: 60 - type: Transform -- uid: 9731 - type: CableMV - components: - - pos: -33.5,14.5 - parent: 60 - type: Transform -- uid: 9732 - type: CableMV - components: - - pos: -32.5,14.5 - parent: 60 - type: Transform -- uid: 9733 - type: CableMV - components: - - pos: -31.5,14.5 - parent: 60 - type: Transform -- uid: 9734 - type: CableMV - components: - - pos: -31.5,15.5 - parent: 60 - type: Transform -- uid: 9735 - type: CableMV - components: - - pos: -31.5,16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9736 - type: CableMV - components: - - pos: -54.5,12.5 - parent: 60 - type: Transform -- uid: 9737 - type: CableMV - components: - - pos: -54.5,11.5 - parent: 60 - type: Transform -- uid: 9738 - type: CableMV - components: - - pos: -54.5,10.5 - parent: 60 - type: Transform -- uid: 9739 - type: CableMV - components: - - pos: -54.5,9.5 - parent: 60 - type: Transform -- uid: 9740 - type: CableMV - components: - - pos: -54.5,8.5 - parent: 60 - type: Transform -- uid: 9741 - type: CableMV - components: - - pos: -54.5,7.5 - parent: 60 - type: Transform -- uid: 9742 - type: CableMV - components: - - pos: -54.5,6.5 - parent: 60 - type: Transform -- uid: 9743 - type: CableMV - components: - - pos: -54.5,5.5 - parent: 60 - type: Transform -- uid: 9744 - type: CableMV - components: - - pos: -53.5,5.5 - parent: 60 - type: Transform -- uid: 9745 - type: CableMV - components: - - pos: -52.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9746 - type: WallReinforced - components: - - pos: -52.5,6.5 - parent: 60 - type: Transform -- uid: 9747 - type: SolarPanel - components: - - pos: 32.5,-70.5 - parent: 60 - type: Transform -- uid: 9748 - type: Catwalk - components: - - pos: 31.5,-65.5 - parent: 60 - type: Transform -- uid: 9749 - type: CableHV - components: - - pos: -52.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9750 - type: Catwalk - components: - - pos: 38.5,-75.5 - parent: 60 - type: Transform -- uid: 9751 - type: CableHV - components: - - pos: -52.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9752 - type: Catwalk - components: - - pos: -52.5,-16.5 - parent: 60 - type: Transform -- uid: 9753 - type: TintedWindow - components: - - pos: -51.5,-18.5 - parent: 60 - type: Transform -- uid: 9754 - type: CableHV - components: - - pos: -52.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9755 - type: CableMV - components: - - pos: -51.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9756 - type: CableMV - components: - - pos: -51.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9757 - type: CableMV - components: - - pos: -50.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9758 - type: CableMV - components: - - pos: -49.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9759 - type: CableMV - components: - - pos: -48.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9760 - type: CableMV - components: - - pos: -47.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9761 - type: CableMV - components: - - pos: -46.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9762 - type: CableMV - components: - - pos: -45.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9763 - type: CableMV - components: - - pos: -44.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9764 - type: CableMV - components: - - pos: -43.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9765 - type: CableMV - components: - - pos: -42.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9766 - type: CableMV - components: - - pos: -42.5,-11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9767 - type: CableMV - components: - - pos: -47.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9768 - type: CableMV - components: - - pos: -47.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9769 - type: CableMV - components: - - pos: -48.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9770 - type: CableMV - components: - - pos: -49.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9771 - type: CableMV - components: - - pos: -50.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9772 - type: CableMV - components: - - pos: -51.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9773 - type: CableHV - components: - - pos: -52.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9774 - type: CableMV - components: - - pos: -52.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9775 - type: Catwalk - components: - - pos: -52.5,-20.5 - parent: 60 - type: Transform -- uid: 9776 - type: CableHV - components: - - pos: -52.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9777 - type: CableHV - components: - - pos: -47.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9778 - type: CableHV - components: - - pos: -47.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9779 - type: CableHV - components: - - pos: -47.5,-31.5 - parent: 60 - type: Transform -- uid: 9780 - type: CableHV - components: - - pos: -46.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9781 - type: CableHV - components: - - pos: -45.5,-31.5 - parent: 60 - type: Transform -- uid: 9782 - type: CableHV - components: - - pos: -44.5,-31.5 - parent: 60 - type: Transform -- uid: 9783 - type: CableHV - components: - - pos: -43.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9784 - type: CableHV - components: - - pos: -42.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9785 - type: CableHV - components: - - pos: -41.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9786 - type: CableHV - components: - - pos: -41.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9787 - type: CableHV - components: - - pos: -41.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9788 - type: CableHV - components: - - pos: -41.5,-28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9789 - type: CableHV - components: - - pos: -41.5,-27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9790 - type: CableHV - components: - - pos: -41.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9791 - type: CableHV - components: - - pos: -41.5,-25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9792 - type: CableHV - components: - - pos: -41.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9793 - type: CableHV - components: - - pos: -41.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9794 - type: CableHV - components: - - pos: -42.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9795 - type: CableHV - components: - - pos: -43.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9796 - type: CableHV - components: - - pos: -44.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9797 - type: CableHV - components: - - pos: -45.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9798 - type: CableHV - components: - - pos: -46.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9799 - type: CableHV - components: - - pos: -47.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9800 - type: CableHV - components: - - pos: -48.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9801 - type: CableHV - components: - - pos: -49.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9802 - type: CableHV - components: - - pos: -50.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9803 - type: CableHV - components: - - pos: -51.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9804 - type: CableHV - components: - - pos: -52.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9805 - type: CableMV - components: - - pos: -52.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9806 - type: CableMV - components: - - pos: -52.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9807 - type: CableMV - components: - - pos: -52.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9808 - type: CableMV - components: - - pos: -52.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9809 - type: Grille - components: - - pos: 34.5,-78.5 - parent: 60 - type: Transform -- uid: 9810 - type: SolarPanel - components: - - pos: 26.5,-74.5 - parent: 60 - type: Transform -- uid: 9811 - type: CableHV - components: - - pos: -52.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9812 - type: Catwalk - components: - - pos: -52.5,-17.5 - parent: 60 - type: Transform -- uid: 9813 - type: CableMV - components: - - pos: -52.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9814 - type: CableMV - components: - - pos: -52.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9815 - type: CableHV - components: - - pos: -51.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9816 - type: CableHV - components: - - pos: -51.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9817 - type: CableHV - components: - - pos: -51.5,-11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9818 - type: CableHV - components: - - pos: -51.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9819 - type: CableHV - components: - - pos: -52.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9820 - type: CableHV - components: - - pos: -53.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9821 - type: CableHV - components: - - pos: -54.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9822 - type: CableHV - components: - - pos: -55.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9823 - type: CableHV - components: - - pos: -56.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9824 - type: CableHV - components: - - pos: -56.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9825 - type: CableHV - components: - - pos: -56.5,-8.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9826 - type: CableHV - components: - - pos: -56.5,-7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9827 - type: CableHV - components: - - pos: -56.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9828 - type: CableHV - components: - - pos: -56.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9829 - type: CableHV - components: - - pos: -57.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9830 - type: CableHV - components: - - pos: -58.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9831 - type: CableHV - components: - - pos: -59.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9832 - type: CableHV - components: - - pos: -60.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9833 - type: CableHV - components: - - pos: -61.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9834 - type: CableHV - components: - - pos: -61.5,3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9835 - type: CableHV - components: - - pos: -61.5,2.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9836 - type: CableHV - components: - - pos: -61.5,1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9837 - type: CableHV - components: - - pos: -61.5,0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9838 - type: CableHV - components: - - pos: -61.5,-0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9839 - type: CableHV - components: - - pos: -61.5,-1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9840 - type: CableHV - components: - - pos: -61.5,-2.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9841 - type: CableHV - components: - - pos: -61.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9842 - type: CableHV - components: - - pos: -61.5,-4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9843 - type: CableHV - components: - - pos: -61.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9844 - type: CableHV - components: - - pos: -61.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9845 - type: CableHV - components: - - pos: -61.5,6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9846 - type: CableHV - components: - - pos: -61.5,7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9847 - type: CableHV - components: - - pos: -61.5,8.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9848 - type: CableHV - components: - - pos: -61.5,9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9849 - type: CableHV - components: - - pos: -61.5,10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9850 - type: CableHV - components: - - pos: -61.5,11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9851 - type: CableHV - components: - - pos: -60.5,11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9852 - type: CableHV - components: - - pos: -59.5,11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9853 - type: CableHV - components: - - pos: -59.5,10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9854 - type: CableHV - components: - - pos: -59.5,9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9855 - type: CableHV - components: - - pos: -59.5,8.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9856 - type: CableHV - components: - - pos: -59.5,7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9857 - type: CableHV - components: - - pos: -58.5,7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9858 - type: CableHV - components: - - pos: -41.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9859 - type: CableHV - components: - - pos: -40.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9860 - type: CableHV - components: - - pos: -39.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9861 - type: CableHV - components: - - pos: -38.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9862 - type: CableHV - components: - - pos: -37.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9863 - type: CableHV - components: - - pos: -36.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9864 - type: Catwalk - components: - - pos: -35.5,-32.5 - parent: 60 - type: Transform -- uid: 9865 - type: Catwalk - components: - - pos: -31.5,-32.5 - parent: 60 - type: Transform -- uid: 9866 - type: CableApcExtension - components: - - pos: -35.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9867 - type: CableApcExtension - components: - - pos: -32.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9868 - type: CableHV - components: - - pos: -33.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9869 - type: CableMV - components: - - pos: -26.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9870 - type: CableMV - components: - - pos: -27.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9871 - type: CableMV - components: - - pos: -28.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9872 - type: CableMV - components: - - pos: -29.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9873 - type: WallReinforced - components: - - pos: -27.5,-28.5 - parent: 60 - type: Transform -- uid: 9874 - type: WallReinforced - components: - - pos: -27.5,-31.5 - parent: 60 - type: Transform -- uid: 9875 - type: WallReinforced - components: - - pos: -22.5,-31.5 - parent: 60 - type: Transform -- uid: 9876 - type: WallReinforced - components: - - pos: -25.5,-31.5 - parent: 60 - type: Transform -- uid: 9877 - type: WallReinforced - components: - - pos: -27.5,-26.5 - parent: 60 - type: Transform -- uid: 9878 - type: CableMV - components: - - pos: -25.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9879 - type: CableMV - components: - - pos: -20.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9880 - type: CableMV - components: - - pos: -19.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9881 - type: CableApcExtension - components: - - pos: -25.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9882 - type: CableHV - components: - - pos: -19.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9883 - type: CableHV - components: - - pos: -19.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9884 - type: CableHV - components: - - pos: -19.5,-28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9885 - type: CableHV - components: - - pos: -19.5,-27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9886 - type: CableHV - components: - - pos: -19.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9887 - type: CableHV - components: - - pos: -18.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9888 - type: CableHV - components: - - pos: -17.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9889 - type: CableHV - components: - - pos: -16.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9890 - type: CableHV - components: - - pos: -15.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9891 - type: CableHV - components: - - pos: -14.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9892 - type: CableHV - components: - - pos: -13.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9893 - type: CableHV - components: - - pos: -13.5,-27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9894 - type: CableHV - components: - - pos: -13.5,-28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9895 - type: CableHV - components: - - pos: -13.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9896 - type: CableHV - components: - - pos: -13.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9897 - type: CableHV - components: - - pos: -13.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9898 - type: CableHV - components: - - pos: -13.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9899 - type: CableHV - components: - - pos: -7.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9900 - type: CableHV - components: - - pos: -7.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9901 - type: CableHV - components: - - pos: -7.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9902 - type: CableHV - components: - - pos: -7.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9903 - type: CableHV - components: - - pos: -8.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9904 - type: CableHV - components: - - pos: -9.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9905 - type: CableHV - components: - - pos: -10.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9906 - type: CableHV - components: - - pos: -11.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9907 - type: CableHV - components: - - pos: -12.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9908 - type: CableHV - components: - - pos: -13.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9909 - type: CableHV - components: - - pos: -14.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9910 - type: CableHV - components: - - pos: -14.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9911 - type: CableHV - components: - - pos: -14.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9912 - type: CableHV - components: - - pos: -14.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9913 - type: CableHV - components: - - pos: -14.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9914 - type: CableHV - components: - - pos: -15.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9915 - type: CableHV - components: - - pos: -15.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9916 - type: CableHV - components: - - pos: -15.5,-35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9917 - type: CableHV - components: - - pos: -15.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9918 - type: CableHV - components: - - pos: -15.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9919 - type: CableHV - components: - - pos: -16.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9920 - type: CableHV - components: - - pos: -17.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9921 - type: CableHV - components: - - pos: -18.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9922 - type: CableHV - components: - - pos: -19.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9923 - type: CableHV - components: - - pos: -20.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9924 - type: CableHV - components: - - pos: -21.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9925 - type: CableHV - components: - - pos: -22.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9926 - type: CableHV - components: - - pos: -23.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9927 - type: CableHV - components: - - pos: -24.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9928 - type: CableHV - components: - - pos: -25.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9929 - type: CableHV - components: - - pos: -26.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9930 - type: CableHV - components: - - pos: -26.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9931 - type: CableHV - components: - - pos: -27.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9932 - type: CableHV - components: - - pos: -28.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9933 - type: CableHV - components: - - pos: -29.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9934 - type: CableHV - components: - - pos: -30.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9935 - type: CableHV - components: - - pos: -31.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9936 - type: CableHV - components: - - pos: -32.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9937 - type: CableHV - components: - - pos: -19.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9938 - type: CableHV - components: - - pos: -19.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9939 - type: CableHV - components: - - pos: -47.5,-28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9940 - type: CableMV - components: - - pos: -47.5,-28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9941 - type: CableMV - components: - - pos: -47.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9942 - type: CableMV - components: - - pos: -46.5,-29.5 - parent: 60 - type: Transform -- uid: 9943 - type: CableMV - components: - - pos: -45.5,-29.5 - parent: 60 - type: Transform -- uid: 9944 - type: CableMV - components: - - pos: -44.5,-29.5 - parent: 60 - type: Transform -- uid: 9945 - type: CableMV - components: - - pos: -43.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9946 - type: CableMV - components: - - pos: -42.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9947 - type: CableMV - components: - - pos: -41.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9948 - type: CableMV - components: - - pos: -41.5,-28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9949 - type: CableMV - components: - - pos: -41.5,-27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9950 - type: CableMV - components: - - pos: -41.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9951 - type: CableMV - components: - - pos: -41.5,-25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9952 - type: CableMV - components: - - pos: -41.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9953 - type: CableMV - components: - - pos: -41.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9954 - type: CableMV - components: - - pos: -42.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9955 - type: CableMV - components: - - pos: -43.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9956 - type: CableMV - components: - - pos: -44.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9957 - type: CableMV - components: - - pos: -45.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9958 - type: CableMV - components: - - pos: -46.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9959 - type: CableMV - components: - - pos: -13.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9960 - type: CableMV - components: - - pos: -13.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9961 - type: CableMV - components: - - pos: -13.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9962 - type: CableMV - components: - - pos: -12.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9963 - type: CableMV - components: - - pos: -11.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9964 - type: CableMV - components: - - pos: -10.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9965 - type: CableMV - components: - - pos: -9.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9966 - type: CableMV - components: - - pos: -8.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9967 - type: CableMV - components: - - pos: -7.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9968 - type: CableMV - components: - - pos: -6.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9969 - type: CableMV - components: - - pos: -6.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9970 - type: CableMV - components: - - pos: -13.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9971 - type: CableMV - components: - - pos: -13.5,-28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9972 - type: CableMV - components: - - pos: -13.5,-27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9973 - type: CableMV - components: - - pos: -13.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9974 - type: CableMV - components: - - pos: -14.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9975 - type: CableMV - components: - - pos: -15.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9976 - type: CableMV - components: - - pos: -16.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9977 - type: CableMV - components: - - pos: -17.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9978 - type: CableMV - components: - - pos: -18.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9979 - type: CableMV - components: - - pos: -19.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9980 - type: CableMV - components: - - pos: -19.5,-27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9981 - type: CableMV - components: - - pos: -19.5,-28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9982 - type: CableMV - components: - - pos: -19.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9983 - type: CableMV - components: - - pos: -19.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9984 - type: CableApcExtension - components: - - pos: -23.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9985 - type: CableMV - components: - - pos: -19.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9986 - type: CableMV - components: - - pos: -23.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9987 - type: CableMV - components: - - pos: -24.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9988 - type: CableMV - components: - - pos: -26.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9989 - type: AirlockMaintSecLocked - components: - - name: detective office - type: MetaData - - pos: -23.5,-31.5 - parent: 60 - type: Transform -- uid: 9990 - type: WallReinforced - components: - - pos: -27.5,-27.5 - parent: 60 - type: Transform -- uid: 9991 - type: WallReinforced - components: - - pos: -21.5,-30.5 - parent: 60 - type: Transform -- uid: 9992 - type: WallReinforced - components: - - pos: -27.5,-29.5 - parent: 60 - type: Transform -- uid: 9993 - type: CableMV - components: - - pos: -29.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9994 - type: CableMV - components: - - pos: -29.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9995 - type: CableMV - components: - - pos: -29.5,-28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9996 - type: CableMV - components: - - pos: -29.5,-27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9997 - type: CableMV - components: - - pos: -29.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9998 - type: CableMV - components: - - pos: -28.5,-26.5 - parent: 60 - type: Transform -- uid: 9999 - type: APCBasic - components: - - pos: -28.5,-25.5 - parent: 60 - type: Transform -- uid: 10000 - type: CableMV - components: - - pos: -27.5,-25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10001 - type: CableApcExtension - components: - - pos: -28.5,-25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10002 - type: CableApcExtension - components: - - pos: -28.5,-24.5 - parent: 60 - type: Transform -- uid: 10003 - type: CableApcExtension - components: - - pos: -28.5,-23.5 - parent: 60 - type: Transform -- uid: 10004 - type: CableApcExtension - components: - - pos: -29.5,-23.5 - parent: 60 - type: Transform -- uid: 10005 - type: CableApcExtension - components: - - pos: -30.5,-23.5 - parent: 60 - type: Transform -- uid: 10006 - type: CableApcExtension - components: - - pos: -31.5,-23.5 - parent: 60 - type: Transform -- uid: 10007 - type: CableApcExtension - components: - - pos: -32.5,-23.5 - parent: 60 - type: Transform -- uid: 10008 - type: CableApcExtension - components: - - pos: -33.5,-23.5 - parent: 60 - type: Transform -- uid: 10009 - type: CableApcExtension - components: - - pos: -34.5,-23.5 - parent: 60 - type: Transform -- uid: 10010 - type: CableApcExtension - components: - - pos: -35.5,-23.5 - parent: 60 - type: Transform -- uid: 10011 - type: CableApcExtension - components: - - pos: -36.5,-23.5 - parent: 60 - type: Transform -- uid: 10012 - type: CableApcExtension - components: - - pos: -37.5,-23.5 - parent: 60 - type: Transform -- uid: 10013 - type: CableApcExtension - components: - - pos: -37.5,-22.5 - parent: 60 - type: Transform -- uid: 10014 - type: CableApcExtension - components: - - pos: -37.5,-21.5 - parent: 60 - type: Transform -- uid: 10015 - type: CableApcExtension - components: - - pos: -37.5,-20.5 - parent: 60 - type: Transform -- uid: 10016 - type: CableApcExtension - components: - - pos: -37.5,-19.5 - parent: 60 - type: Transform -- uid: 10017 - type: CableApcExtension - components: - - pos: -37.5,-18.5 - parent: 60 - type: Transform -- uid: 10018 - type: CableApcExtension - components: - - pos: -27.5,-23.5 - parent: 60 - type: Transform -- uid: 10019 - type: CableApcExtension - components: - - pos: -26.5,-23.5 - parent: 60 - type: Transform -- uid: 10020 - type: CableApcExtension - components: - - pos: -25.5,-23.5 - parent: 60 - type: Transform -- uid: 10021 - type: CableApcExtension - components: - - pos: -24.5,-23.5 - parent: 60 - type: Transform -- uid: 10022 - type: CableApcExtension - components: - - pos: -23.5,-23.5 - parent: 60 - type: Transform -- uid: 10023 - type: CableApcExtension - components: - - pos: -22.5,-23.5 - parent: 60 - type: Transform -- uid: 10024 - type: CableApcExtension - components: - - pos: -21.5,-23.5 - parent: 60 - type: Transform -- uid: 10025 - type: CableApcExtension - components: - - pos: -20.5,-23.5 - parent: 60 - type: Transform -- uid: 10026 - type: CableApcExtension - components: - - pos: -19.5,-23.5 - parent: 60 - type: Transform -- uid: 10027 - type: CableApcExtension - components: - - pos: -18.5,-23.5 - parent: 60 - type: Transform -- uid: 10028 - type: CableApcExtension - components: - - pos: -17.5,-23.5 - parent: 60 - type: Transform -- uid: 10029 - type: CableApcExtension - components: - - pos: -16.5,-23.5 - parent: 60 - type: Transform -- uid: 10030 - type: CableApcExtension - components: - - pos: -15.5,-23.5 - parent: 60 - type: Transform -- uid: 10031 - type: CableApcExtension - components: - - pos: -15.5,-22.5 - parent: 60 - type: Transform -- uid: 10032 - type: CableApcExtension - components: - - pos: -15.5,-21.5 - parent: 60 - type: Transform -- uid: 10033 - type: CableApcExtension - components: - - pos: -15.5,-20.5 - parent: 60 - type: Transform -- uid: 10034 - type: CableApcExtension - components: - - pos: -15.5,-19.5 - parent: 60 - type: Transform -- uid: 10035 - type: CableApcExtension - components: - - pos: -15.5,-18.5 - parent: 60 - type: Transform -- uid: 10036 - type: CableApcExtension - components: - - pos: -28.5,-26.5 - parent: 60 - type: Transform -- uid: 10037 - type: CableApcExtension - components: - - pos: -29.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10038 - type: CableApcExtension - components: - - pos: -29.5,-27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10039 - type: CableApcExtension - components: - - pos: -29.5,-28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10040 - type: CableApcExtension - components: - - pos: -29.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10041 - type: CableApcExtension - components: - - pos: -29.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10042 - type: CableApcExtension - components: - - pos: -23.5,-24.5 - parent: 60 - type: Transform -- uid: 10043 - type: CableApcExtension - components: - - pos: -23.5,-25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10044 - type: CableApcExtension - components: - - pos: -23.5,-26.5 - parent: 60 - type: Transform -- uid: 10045 - type: CableApcExtension - components: - - pos: -23.5,-27.5 - parent: 60 - type: Transform -- uid: 10046 - type: CableApcExtension - components: - - pos: -23.5,-28.5 - parent: 60 - type: Transform -- uid: 10047 - type: CableApcExtension - components: - - pos: -25.5,-28.5 - parent: 60 - type: Transform -- uid: 10048 - type: CableApcExtension - components: - - pos: -24.5,-28.5 - parent: 60 - type: Transform -- uid: 10049 - type: WallReinforced - components: - - pos: -27.5,-30.5 - parent: 60 - type: Transform -- uid: 10050 - type: WallReinforced - components: - - pos: -21.5,-31.5 - parent: 60 - type: Transform -- uid: 10051 - type: WallReinforced - components: - - pos: -21.5,-29.5 - parent: 60 - type: Transform -- uid: 10052 - type: WallReinforced - components: - - pos: -24.5,-31.5 - parent: 60 - type: Transform -- uid: 10053 - type: WallReinforced - components: - - pos: -26.5,-31.5 - parent: 60 - type: Transform -- uid: 10054 - type: CableMV - components: - - pos: -21.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10055 - type: CableMV - components: - - pos: -22.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10056 - type: CableMV - components: - - pos: -19.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10057 - type: CableApcExtension - components: - - pos: -24.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10058 - type: CableApcExtension - components: - - pos: -30.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10059 - type: CableApcExtension - components: - - pos: -31.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10060 - type: CableApcExtension - components: - - pos: -32.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10061 - type: CableHV - components: - - pos: -35.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10062 - type: CableHV - components: - - pos: -34.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10063 - type: CableApcExtension - components: - - pos: -33.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10064 - type: CableApcExtension - components: - - pos: -32.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10065 - type: CableApcExtension - components: - - pos: -31.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10066 - type: CableApcExtension - components: - - pos: -30.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10067 - type: CableApcExtension - components: - - pos: -29.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10068 - type: CableApcExtension - components: - - pos: -28.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10069 - type: CableApcExtension - components: - - pos: -27.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10070 - type: CableApcExtension - components: - - pos: -31.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10071 - type: CableApcExtension - components: - - pos: -31.5,-35.5 - parent: 60 - type: Transform -- uid: 10072 - type: CableApcExtension - components: - - pos: -31.5,-34.5 - parent: 60 - type: Transform -- uid: 10073 - type: CableApcExtension - components: - - pos: -31.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10074 - type: CableApcExtension - components: - - pos: -31.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10075 - type: CableApcExtension - components: - - pos: -31.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10076 - type: CableApcExtension - components: - - pos: -26.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10077 - type: CableApcExtension - components: - - pos: -26.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10078 - type: Catwalk - components: - - pos: -29.5,-32.5 - parent: 60 - type: Transform -- uid: 10079 - type: Catwalk - components: - - pos: -32.5,-32.5 - parent: 60 - type: Transform -- uid: 10080 - type: Catwalk - components: - - pos: -34.5,-32.5 - parent: 60 - type: Transform -- uid: 10081 - type: CableApcExtension - components: - - pos: -36.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10082 - type: CableApcExtension - components: - - pos: -37.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10083 - type: CableApcExtension - components: - - pos: -38.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10084 - type: CableApcExtension - components: - - pos: -40.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10085 - type: CableApcExtension - components: - - pos: -41.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10086 - type: CableApcExtension - components: - - pos: -42.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10087 - type: CableApcExtension - components: - - pos: -43.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10088 - type: CableApcExtension - components: - - pos: -44.5,-29.5 - parent: 60 - type: Transform -- uid: 10089 - type: CableApcExtension - components: - - pos: -45.5,-29.5 - parent: 60 - type: Transform -- uid: 10090 - type: CableApcExtension - components: - - pos: -46.5,-29.5 - parent: 60 - type: Transform -- uid: 10091 - type: CableApcExtension - components: - - pos: -47.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10092 - type: CableApcExtension - components: - - pos: -47.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10093 - type: CableApcExtension - components: - - pos: -47.5,-31.5 - parent: 60 - type: Transform -- uid: 10094 - type: CableApcExtension - components: - - pos: -47.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10095 - type: CableApcExtension - components: - - pos: -47.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10096 - type: CableApcExtension - components: - - pos: -47.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10097 - type: CableApcExtension - components: - - pos: -47.5,-35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10098 - type: CableApcExtension - components: - - pos: -47.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10099 - type: CableApcExtension - components: - - pos: -47.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10100 - type: CableApcExtension - components: - - pos: -47.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10101 - type: CableApcExtension - components: - - pos: -46.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10102 - type: CableApcExtension - components: - - pos: -45.5,-33.5 - parent: 60 - type: Transform -- uid: 10103 - type: CableApcExtension - components: - - pos: -44.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10104 - type: CableApcExtension - components: - - pos: -43.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10105 - type: CableApcExtension - components: - - pos: -48.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10106 - type: CableApcExtension - components: - - pos: -49.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10107 - type: CableApcExtension - components: - - pos: -50.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10108 - type: CableApcExtension - components: - - pos: -51.5,-33.5 - parent: 60 - type: Transform -- uid: 10109 - type: CableApcExtension - components: - - pos: -48.5,-30.5 - parent: 60 - type: Transform -- uid: 10110 - type: CableApcExtension - components: - - pos: -49.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10111 - type: CableApcExtension - components: - - pos: -50.5,-30.5 - parent: 60 - type: Transform -- uid: 10112 - type: CableApcExtension - components: - - pos: -51.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10113 - type: CableApcExtension - components: - - pos: -41.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10114 - type: CableApcExtension - components: - - pos: -41.5,-28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10115 - type: CableApcExtension - components: - - pos: -41.5,-27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10116 - type: CableApcExtension - components: - - pos: -41.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10117 - type: CableApcExtension - components: - - pos: -41.5,-25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10118 - type: CableApcExtension - components: - - pos: -41.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10119 - type: CableApcExtension - components: - - pos: -41.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10120 - type: CableApcExtension - components: - - pos: -42.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10121 - type: CableApcExtension - components: - - pos: -43.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10122 - type: CableApcExtension - components: - - pos: -44.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10123 - type: CableApcExtension - components: - - pos: -45.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10124 - type: CableApcExtension - components: - - pos: -46.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10125 - type: CableApcExtension - components: - - pos: -47.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10126 - type: CableApcExtension - components: - - pos: -47.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10127 - type: Catwalk - components: - - pos: 31.5,-73.5 - parent: 60 - type: Transform -- uid: 10128 - type: SolarPanel - components: - - pos: 35.5,-74.5 - parent: 60 - type: Transform -- uid: 10129 - type: CableMV - components: - - pos: -52.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10130 - type: CableMV - components: - - pos: -52.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10131 - type: CableApcExtension - components: - - pos: -52.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10132 - type: Catwalk - components: - - pos: -52.5,-21.5 - parent: 60 - type: Transform -- uid: 10133 - type: CableMV - components: - - pos: -52.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10134 - type: CableHV - components: - - pos: -52.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10135 - type: CableApcExtension - components: - - pos: -51.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10136 - type: Catwalk - components: - - pos: -52.5,-18.5 - parent: 60 - type: Transform -- uid: 10137 - type: CableApcExtension - components: - - pos: -47.5,-16.5 - parent: 60 - type: Transform -- uid: 10138 - type: CableApcExtension - components: - - pos: -35.5,13.5 - parent: 60 - type: Transform -- uid: 10139 - type: CableApcExtension - components: - - pos: -51.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10140 - type: CableApcExtension - components: - - pos: -51.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10141 - type: CableMV - components: - - pos: -46.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10142 - type: CableMV - components: - - pos: -46.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10143 - type: CableApcExtension - components: - - pos: -46.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10144 - type: CableApcExtension - components: - - pos: -46.5,-15.5 - parent: 60 - type: Transform -- uid: 10145 - type: CableApcExtension - components: - - pos: -46.5,-16.5 - parent: 60 - type: Transform -- uid: 10146 - type: CableApcExtension - components: - - pos: -45.5,-16.5 - parent: 60 - type: Transform -- uid: 10147 - type: CableApcExtension - components: - - pos: -44.5,-16.5 - parent: 60 - type: Transform -- uid: 10148 - type: CableApcExtension - components: - - pos: -43.5,-16.5 - parent: 60 - type: Transform -- uid: 10149 - type: CableApcExtension - components: - - pos: -43.5,-17.5 - parent: 60 - type: Transform -- uid: 10150 - type: CableApcExtension - components: - - pos: -43.5,-18.5 - parent: 60 - type: Transform -- uid: 10151 - type: CableApcExtension - components: - - pos: -43.5,-19.5 - parent: 60 - type: Transform -- uid: 10152 - type: CableApcExtension - components: - - pos: -44.5,-18.5 - parent: 60 - type: Transform -- uid: 10153 - type: CableApcExtension - components: - - pos: -45.5,-18.5 - parent: 60 - type: Transform -- uid: 10154 - type: CableApcExtension - components: - - pos: -46.5,-18.5 - parent: 60 - type: Transform -- uid: 10155 - type: Grille - components: - - pos: -35.5,14.5 - parent: 60 - type: Transform -- uid: 10156 - type: CableApcExtension - components: - - pos: -48.5,-18.5 - parent: 60 - type: Transform -- uid: 10157 - type: CableApcExtension - components: - - pos: -48.5,-17.5 - parent: 60 - type: Transform -- uid: 10158 - type: CableApcExtension - components: - - pos: -48.5,-16.5 - parent: 60 - type: Transform -- uid: 10159 - type: CableApcExtension - components: - - pos: -48.5,-15.5 - parent: 60 - type: Transform -- uid: 10160 - type: CableApcExtension - components: - - pos: -48.5,-19.5 - parent: 60 - type: Transform -- uid: 10161 - type: CableApcExtension - components: - - pos: -48.5,-20.5 - parent: 60 - type: Transform -- uid: 10162 - type: CableApcExtension - components: - - pos: -48.5,-21.5 - parent: 60 - type: Transform -- uid: 10163 - type: CableApcExtension - components: - - pos: -43.5,-20.5 - parent: 60 - type: Transform -- uid: 10164 - type: CableApcExtension - components: - - pos: -44.5,-21.5 - parent: 60 - type: Transform -- uid: 10165 - type: CableApcExtension - components: - - pos: -45.5,-21.5 - parent: 60 - type: Transform -- uid: 10166 - type: CableApcExtension - components: - - pos: -43.5,-20.5 - parent: 60 - type: Transform -- uid: 10167 - type: CableApcExtension - components: - - pos: -43.5,-21.5 - parent: 60 - type: Transform -- uid: 10168 - type: CableApcExtension - components: - - pos: -45.5,-21.5 - parent: 60 - type: Transform -- uid: 10169 - type: CableApcExtension - components: - - pos: -46.5,-21.5 - parent: 60 - type: Transform -- uid: 10170 - type: CableApcExtension - components: - - pos: -42.5,-21.5 - parent: 60 - type: Transform -- uid: 10171 - type: CableApcExtension - components: - - pos: -41.5,-21.5 - parent: 60 - type: Transform -- uid: 10172 - type: CableApcExtension - components: - - pos: -40.5,-21.5 - parent: 60 - type: Transform -- uid: 10173 - type: CableApcExtension - components: - - pos: -41.5,-16.5 - parent: 60 - type: Transform -- uid: 10174 - type: CableApcExtension - components: - - pos: -40.5,-16.5 - parent: 60 - type: Transform -- uid: 10175 - type: CableApcExtension - components: - - pos: -42.5,-16.5 - parent: 60 - type: Transform -- uid: 10176 - type: CableApcExtension - components: - - pos: -42.5,-11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10177 - type: CableApcExtension - components: - - pos: -42.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10178 - type: CableApcExtension - components: - - pos: -43.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10179 - type: CableApcExtension - components: - - pos: -44.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10180 - type: CableApcExtension - components: - - pos: -45.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10181 - type: CableApcExtension - components: - - pos: -46.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10182 - type: CableApcExtension - components: - - pos: -47.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10183 - type: CableApcExtension - components: - - pos: -47.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10184 - type: CableApcExtension - components: - - pos: -48.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10185 - type: CableApcExtension - components: - - pos: -49.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10186 - type: CableApcExtension - components: - - pos: -41.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10187 - type: CableApcExtension - components: - - pos: -40.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10188 - type: CableApcExtension - components: - - pos: -42.5,-10.5 - parent: 60 - type: Transform -- uid: 10189 - type: CableApcExtension - components: - - pos: -42.5,-9.5 - parent: 60 - type: Transform -- uid: 10190 - type: CableApcExtension - components: - - pos: -42.5,-8.5 - parent: 60 - type: Transform -- uid: 10191 - type: CableApcExtension - components: - - pos: -42.5,-7.5 - parent: 60 - type: Transform -- uid: 10192 - type: CableApcExtension - components: - - pos: -42.5,-6.5 - parent: 60 - type: Transform -- uid: 10193 - type: CableApcExtension - components: - - pos: -42.5,-5.5 - parent: 60 - type: Transform -- uid: 10194 - type: CableApcExtension - components: - - pos: -42.5,-4.5 - parent: 60 - type: Transform -- uid: 10195 - type: CableApcExtension - components: - - pos: -43.5,-4.5 - parent: 60 - type: Transform -- uid: 10196 - type: CableApcExtension - components: - - pos: -44.5,-4.5 - parent: 60 - type: Transform -- uid: 10197 - type: CableApcExtension - components: - - pos: -45.5,-4.5 - parent: 60 - type: Transform -- uid: 10198 - type: CableApcExtension - components: - - pos: -43.5,-9.5 - parent: 60 - type: Transform -- uid: 10199 - type: CableApcExtension - components: - - pos: -44.5,-9.5 - parent: 60 - type: Transform -- uid: 10200 - type: CableApcExtension - components: - - pos: -45.5,-9.5 - parent: 60 - type: Transform -- uid: 10201 - type: CableApcExtension - components: - - pos: -41.5,-9.5 - parent: 60 - type: Transform -- uid: 10202 - type: CableApcExtension - components: - - pos: -40.5,-9.5 - parent: 60 - type: Transform -- uid: 10203 - type: CableApcExtension - components: - - pos: -45.5,-5.5 - parent: 60 - type: Transform -- uid: 10204 - type: CableApcExtension - components: - - pos: -46.5,-5.5 - parent: 60 - type: Transform -- uid: 10205 - type: CableApcExtension - components: - - pos: -47.5,-5.5 - parent: 60 - type: Transform -- uid: 10206 - type: CableApcExtension - components: - - pos: -48.5,-5.5 - parent: 60 - type: Transform -- uid: 10207 - type: CableApcExtension - components: - - pos: -48.5,-6.5 - parent: 60 - type: Transform -- uid: 10208 - type: CableApcExtension - components: - - pos: -48.5,-7.5 - parent: 60 - type: Transform -- uid: 10209 - type: CableApcExtension - components: - - pos: -48.5,-8.5 - parent: 60 - type: Transform -- uid: 10210 - type: CableApcExtension - components: - - pos: -48.5,-9.5 - parent: 60 - type: Transform -- uid: 10211 - type: CableApcExtension - components: - - pos: -48.5,-10.5 - parent: 60 - type: Transform -- uid: 10212 - type: CableApcExtension - components: - - pos: -48.5,-4.5 - parent: 60 - type: Transform -- uid: 10213 - type: CableApcExtension - components: - - pos: -48.5,-3.5 - parent: 60 - type: Transform -- uid: 10214 - type: CableApcExtension - components: - - pos: -48.5,-2.5 - parent: 60 - type: Transform -- uid: 10215 - type: CableApcExtension - components: - - pos: -48.5,-1.5 - parent: 60 - type: Transform -- uid: 10216 - type: CableApcExtension - components: - - pos: -48.5,-0.5 - parent: 60 - type: Transform -- uid: 10217 - type: CableApcExtension - components: - - pos: -48.5,0.5 - parent: 60 - type: Transform -- uid: 10218 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -48.5,-5.5 - parent: 60 - type: Transform -- uid: 10219 - type: CableApcExtension - components: - - pos: -52.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10220 - type: CableApcExtension - components: - - pos: -52.5,4.5 - parent: 60 - type: Transform -- uid: 10221 - type: CableApcExtension - components: - - pos: -52.5,3.5 - parent: 60 - type: Transform -- uid: 10222 - type: CableApcExtension - components: - - pos: -52.5,2.5 - parent: 60 - type: Transform -- uid: 10223 - type: CableApcExtension - components: - - pos: -52.5,1.5 - parent: 60 - type: Transform -- uid: 10224 - type: CableApcExtension - components: - - pos: -52.5,0.5 - parent: 60 - type: Transform -- uid: 10225 - type: CableApcExtension - components: - - pos: -52.5,-0.5 - parent: 60 - type: Transform -- uid: 10226 - type: CableApcExtension - components: - - pos: -52.5,-1.5 - parent: 60 - type: Transform -- uid: 10227 - type: CableApcExtension - components: - - pos: -52.5,-2.5 - parent: 60 - type: Transform -- uid: 10228 - type: CableApcExtension - components: - - pos: -52.5,-3.5 - parent: 60 - type: Transform -- uid: 10229 - type: CableApcExtension - components: - - pos: -51.5,-3.5 - parent: 60 - type: Transform -- uid: 10230 - type: CableApcExtension - components: - - pos: -51.5,-4.5 - parent: 60 - type: Transform -- uid: 10231 - type: CableApcExtension - components: - - pos: -51.5,-5.5 - parent: 60 - type: Transform -- uid: 10232 - type: CableApcExtension - components: - - pos: -51.5,-6.5 - parent: 60 - type: Transform -- uid: 10233 - type: CableApcExtension - components: - - pos: -52.5,-6.5 - parent: 60 - type: Transform -- uid: 10234 - type: CableApcExtension - components: - - pos: -53.5,-6.5 - parent: 60 - type: Transform -- uid: 10235 - type: CableApcExtension - components: - - pos: -54.5,-6.5 - parent: 60 - type: Transform -- uid: 10236 - type: CableApcExtension - components: - - pos: -53.5,-1.5 - parent: 60 - type: Transform -- uid: 10237 - type: CableApcExtension - components: - - pos: -54.5,-1.5 - parent: 60 - type: Transform -- uid: 10238 - type: CableApcExtension - components: - - pos: -55.5,-1.5 - parent: 60 - type: Transform -- uid: 10239 - type: CableApcExtension - components: - - pos: -56.5,-1.5 - parent: 60 - type: Transform -- uid: 10240 - type: CableApcExtension - components: - - pos: -57.5,-1.5 - parent: 60 - type: Transform -- uid: 10241 - type: CableApcExtension - components: - - pos: -57.5,-0.5 - parent: 60 - type: Transform -- uid: 10242 - type: CableApcExtension - components: - - pos: -57.5,0.5 - parent: 60 - type: Transform -- uid: 10243 - type: CableApcExtension - components: - - pos: -57.5,1.5 - parent: 60 - type: Transform -- uid: 10244 - type: CableApcExtension - components: - - pos: -57.5,2.5 - parent: 60 - type: Transform -- uid: 10245 - type: CableApcExtension - components: - - pos: -57.5,3.5 - parent: 60 - type: Transform -- uid: 10246 - type: CableApcExtension - components: - - pos: -57.5,4.5 - parent: 60 - type: Transform -- uid: 10247 - type: CableApcExtension - components: - - pos: -57.5,5.5 - parent: 60 - type: Transform -- uid: 10248 - type: CableApcExtension - components: - - pos: -53.5,4.5 - parent: 60 - type: Transform -- uid: 10249 - type: CableApcExtension - components: - - pos: -54.5,4.5 - parent: 60 - type: Transform -- uid: 10250 - type: CableApcExtension - components: - - pos: -55.5,4.5 - parent: 60 - type: Transform -- uid: 10251 - type: SignFire - components: - - pos: -48.5,18.5 - parent: 60 - type: Transform -- uid: 10252 - type: CableApcExtension - components: - - pos: -51.5,4.5 - parent: 60 - type: Transform -- uid: 10253 - type: CableApcExtension - components: - - pos: -50.5,4.5 - parent: 60 - type: Transform -- uid: 10254 - type: CableApcExtension - components: - - pos: -49.5,4.5 - parent: 60 - type: Transform -- uid: 10255 - type: CableApcExtension - components: - - pos: -50.5,5.5 - parent: 60 - type: Transform -- uid: 10256 - type: CableApcExtension - components: - - pos: -50.5,6.5 - parent: 60 - type: Transform -- uid: 10257 - type: CableApcExtension - components: - - pos: -50.5,7.5 - parent: 60 - type: Transform -- uid: 10258 - type: CableApcExtension - components: - - pos: -50.5,8.5 - parent: 60 - type: Transform -- uid: 10259 - type: CableApcExtension - components: - - pos: -50.5,9.5 - parent: 60 - type: Transform -- uid: 10260 - type: CableApcExtension - components: - - pos: -50.5,10.5 - parent: 60 - type: Transform -- uid: 10261 - type: CableMV - components: - - pos: -52.5,4.5 - parent: 60 - type: Transform -- uid: 10262 - type: CableMV - components: - - pos: -52.5,3.5 - parent: 60 - type: Transform -- uid: 10263 - type: CableMV - components: - - pos: -51.5,3.5 - parent: 60 - type: Transform -- uid: 10264 - type: CableMV - components: - - pos: -50.5,3.5 - parent: 60 - type: Transform -- uid: 10265 - type: CableMV - components: - - pos: -49.5,3.5 - parent: 60 - type: Transform -- uid: 10266 - type: CableMV - components: - - pos: -48.5,3.5 - parent: 60 - type: Transform -- uid: 10267 - type: CableMV - components: - - pos: -47.5,3.5 - parent: 60 - type: Transform -- uid: 10268 - type: CableMV - components: - - pos: -46.5,3.5 - parent: 60 - type: Transform -- uid: 10269 - type: CableMV - components: - - pos: -45.5,3.5 - parent: 60 - type: Transform -- uid: 10270 - type: CableMV - components: - - pos: -44.5,3.5 - parent: 60 - type: Transform -- uid: 10271 - type: CableMV - components: - - pos: -43.5,3.5 - parent: 60 - type: Transform -- uid: 10272 - type: CableMV - components: - - pos: -42.5,3.5 - parent: 60 - type: Transform -- uid: 10273 - type: CableMV - components: - - pos: -41.5,3.5 - parent: 60 - type: Transform -- uid: 10274 - type: CableMV - components: - - pos: -41.5,5.5 - parent: 60 - type: Transform -- uid: 10275 - type: CableMV - components: - - pos: -41.5,6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10276 - type: CableMV - components: - - pos: -41.5,4.5 - parent: 60 - type: Transform -- uid: 10277 - type: CableApcExtension - components: - - pos: -41.5,6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10278 - type: CableApcExtension - components: - - pos: -41.5,5.5 - parent: 60 - type: Transform -- uid: 10279 - type: CableApcExtension - components: - - pos: -41.5,4.5 - parent: 60 - type: Transform -- uid: 10280 - type: CableApcExtension - components: - - pos: -41.5,3.5 - parent: 60 - type: Transform -- uid: 10281 - type: CableApcExtension - components: - - pos: -42.5,3.5 - parent: 60 - type: Transform -- uid: 10282 - type: CableApcExtension - components: - - pos: -43.5,3.5 - parent: 60 - type: Transform -- uid: 10283 - type: CableApcExtension - components: - - pos: -44.5,3.5 - parent: 60 - type: Transform -- uid: 10284 - type: CableApcExtension - components: - - pos: -45.5,3.5 - parent: 60 - type: Transform -- uid: 10285 - type: CableApcExtension - components: - - pos: -46.5,3.5 - parent: 60 - type: Transform -- uid: 10286 - type: CableApcExtension - components: - - pos: -48.5,3.5 - parent: 60 - type: Transform -- uid: 10287 - type: CableApcExtension - components: - - pos: -47.5,3.5 - parent: 60 - type: Transform -- uid: 10288 - type: CableApcExtension - components: - - pos: -42.5,5.5 - parent: 60 - type: Transform -- uid: 10289 - type: CableApcExtension - components: - - pos: -43.5,5.5 - parent: 60 - type: Transform -- uid: 10290 - type: CableApcExtension - components: - - pos: -43.5,6.5 - parent: 60 - type: Transform -- uid: 10291 - type: CableApcExtension - components: - - pos: -43.5,7.5 - parent: 60 - type: Transform -- uid: 10292 - type: CableApcExtension - components: - - pos: -43.5,8.5 - parent: 60 - type: Transform -- uid: 10293 - type: CableApcExtension - components: - - pos: -42.5,8.5 - parent: 60 - type: Transform -- uid: 10294 - type: CableApcExtension - components: - - pos: -41.5,8.5 - parent: 60 - type: Transform -- uid: 10295 - type: CableApcExtension - components: - - pos: -40.5,8.5 - parent: 60 - type: Transform -- uid: 10296 - type: CableApcExtension - components: - - pos: -40.5,7.5 - parent: 60 - type: Transform -- uid: 10297 - type: CableApcExtension - components: - - pos: -44.5,8.5 - parent: 60 - type: Transform -- uid: 10298 - type: CableApcExtension - components: - - pos: -54.5,5.5 - parent: 60 - type: Transform -- uid: 10299 - type: CableApcExtension - components: - - pos: -54.5,6.5 - parent: 60 - type: Transform -- uid: 10300 - type: CableApcExtension - components: - - pos: -54.5,7.5 - parent: 60 - type: Transform -- uid: 10301 - type: CableApcExtension - components: - - pos: -54.5,8.5 - parent: 60 - type: Transform -- uid: 10302 - type: CableApcExtension - components: - - pos: -54.5,9.5 - parent: 60 - type: Transform -- uid: 10303 - type: CableApcExtension - components: - - pos: -54.5,10.5 - parent: 60 - type: Transform -- uid: 10304 - type: CableApcExtension - components: - - pos: -54.5,11.5 - parent: 60 - type: Transform -- uid: 10305 - type: CableApcExtension - components: - - pos: -54.5,12.5 - parent: 60 - type: Transform -- uid: 10306 - type: CableApcExtension - components: - - pos: -54.5,13.5 - parent: 60 - type: Transform -- uid: 10307 - type: CableApcExtension - components: - - pos: -55.5,13.5 - parent: 60 - type: Transform -- uid: 10308 - type: CableMV - components: - - pos: 18.5,20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10309 - type: AirlockExternalGlass - components: - - pos: 20.5,27.5 - parent: 60 - type: Transform -- uid: 10310 - type: GasPipeStraight - components: - - pos: -58.5,15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10311 - type: CableApcExtension - components: - - pos: -50.5,12.5 - parent: 60 - type: Transform -- uid: 10312 - type: CableApcExtension - components: - - pos: -49.5,12.5 - parent: 60 - type: Transform -- uid: 10313 - type: CableHV - components: - - pos: -57.5,13.5 - parent: 60 - type: Transform -- uid: 10314 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 18.5,20.5 - parent: 60 - type: Transform -- uid: 10315 - type: CableApcExtension - components: - - pos: -31.5,16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10316 - type: CableApcExtension - components: - - pos: -31.5,15.5 - parent: 60 - type: Transform -- uid: 10317 - type: CableApcExtension - components: - - pos: -31.5,14.5 - parent: 60 - type: Transform -- uid: 10318 - type: CableApcExtension - components: - - pos: -31.5,13.5 - parent: 60 - type: Transform -- uid: 10319 - type: CableApcExtension - components: - - pos: -31.5,12.5 - parent: 60 - type: Transform -- uid: 10320 - type: CableApcExtension - components: - - pos: -31.5,11.5 - parent: 60 - type: Transform -- uid: 10321 - type: CableApcExtension - components: - - pos: -32.5,11.5 - parent: 60 - type: Transform -- uid: 10322 - type: CableApcExtension - components: - - pos: -32.5,10.5 - parent: 60 - type: Transform -- uid: 10323 - type: CableApcExtension - components: - - pos: -32.5,9.5 - parent: 60 - type: Transform -- uid: 10324 - type: CableApcExtension - components: - - pos: -32.5,8.5 - parent: 60 - type: Transform -- uid: 10325 - type: CableApcExtension - components: - - pos: -33.5,8.5 - parent: 60 - type: Transform -- uid: 10326 - type: CableApcExtension - components: - - pos: -34.5,8.5 - parent: 60 - type: Transform -- uid: 10327 - type: CableApcExtension - components: - - pos: -35.5,8.5 - parent: 60 - type: Transform -- uid: 10328 - type: CableApcExtension - components: - - pos: -36.5,8.5 - parent: 60 - type: Transform -- uid: 10329 - type: CableApcExtension - components: - - pos: -37.5,8.5 - parent: 60 - type: Transform -- uid: 10330 - type: CableApcExtension - components: - - pos: -37.5,7.5 - parent: 60 - type: Transform -- uid: 10331 - type: CableApcExtension - components: - - pos: -37.5,6.5 - parent: 60 - type: Transform -- uid: 10332 - type: CableApcExtension - components: - - pos: -37.5,5.5 - parent: 60 - type: Transform -- uid: 10333 - type: CableApcExtension - components: - - pos: -37.5,4.5 - parent: 60 - type: Transform -- uid: 10334 - type: CableApcExtension - components: - - pos: -37.5,3.5 - parent: 60 - type: Transform -- uid: 10335 - type: CableApcExtension - components: - - pos: -47.5,-0.5 - parent: 60 - type: Transform -- uid: 10336 - type: CableApcExtension - components: - - pos: -46.5,-0.5 - parent: 60 - type: Transform -- uid: 10337 - type: CableApcExtension - components: - - pos: -45.5,-0.5 - parent: 60 - type: Transform -- uid: 10338 - type: CableApcExtension - components: - - pos: -44.5,-0.5 - parent: 60 - type: Transform -- uid: 10339 - type: CableApcExtension - components: - - pos: -43.5,-0.5 - parent: 60 - type: Transform -- uid: 10340 - type: CableApcExtension - components: - - pos: -42.5,-0.5 - parent: 60 - type: Transform -- uid: 10341 - type: CableApcExtension - components: - - pos: -41.5,-0.5 - parent: 60 - type: Transform -- uid: 10342 - type: CableApcExtension - components: - - pos: -40.5,-0.5 - parent: 60 - type: Transform -- uid: 10343 - type: CableApcExtension - components: - - pos: -39.5,-0.5 - parent: 60 - type: Transform -- uid: 10344 - type: CableApcExtension - components: - - pos: -38.5,-0.5 - parent: 60 - type: Transform -- uid: 10345 - type: CableApcExtension - components: - - pos: -37.5,-0.5 - parent: 60 - type: Transform -- uid: 10346 - type: CableApcExtension - components: - - pos: -37.5,0.5 - parent: 60 - type: Transform -- uid: 10347 - type: CableApcExtension - components: - - pos: -37.5,1.5 - parent: 60 - type: Transform -- uid: 10348 - type: CableApcExtension - components: - - pos: -37.5,-1.5 - parent: 60 - type: Transform -- uid: 10349 - type: CableApcExtension - components: - - pos: -37.5,-2.5 - parent: 60 - type: Transform -- uid: 10350 - type: CableApcExtension - components: - - pos: -37.5,-3.5 - parent: 60 - type: Transform -- uid: 10351 - type: CableApcExtension - components: - - pos: -37.5,-4.5 - parent: 60 - type: Transform -- uid: 10352 - type: CableApcExtension - components: - - pos: -37.5,-5.5 - parent: 60 - type: Transform -- uid: 10353 - type: CableApcExtension - components: - - pos: -37.5,-6.5 - parent: 60 - type: Transform -- uid: 10354 - type: CableApcExtension - components: - - pos: -37.5,-7.5 - parent: 60 - type: Transform -- uid: 10355 - type: CableApcExtension - components: - - pos: -37.5,-8.5 - parent: 60 - type: Transform -- uid: 10356 - type: CableApcExtension - components: - - pos: -37.5,-9.5 - parent: 60 - type: Transform -- uid: 10357 - type: CableApcExtension - components: - - pos: -37.5,-10.5 - parent: 60 - type: Transform -- uid: 10358 - type: CableApcExtension - components: - - pos: -37.5,-17.5 - parent: 60 - type: Transform -- uid: 10359 - type: CableApcExtension - components: - - pos: -37.5,-16.5 - parent: 60 - type: Transform -- uid: 10360 - type: CableApcExtension - components: - - pos: -37.5,-14.5 - parent: 60 - type: Transform -- uid: 10361 - type: CableApcExtension - components: - - pos: -37.5,-16.5 - parent: 60 - type: Transform -- uid: 10362 - type: CableApcExtension - components: - - pos: -37.5,-15.5 - parent: 60 - type: Transform -- uid: 10363 - type: CableApcExtension - components: - - pos: -37.5,-11.5 - parent: 60 - type: Transform -- uid: 10364 - type: CableApcExtension - components: - - pos: -32.5,13.5 - parent: 60 - type: Transform -- uid: 10365 - type: CableApcExtension - components: - - pos: -33.5,13.5 - parent: 60 - type: Transform -- uid: 10366 - type: CableApcExtension - components: - - pos: -34.5,13.5 - parent: 60 - type: Transform -- uid: 10367 - type: CableMV - components: - - pos: -35.5,13.5 - parent: 60 - type: Transform -- uid: 10368 - type: BedsheetMedical - components: - - pos: -18.5,-3.5 - parent: 60 - type: Transform -- uid: 10369 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-6.5 - parent: 60 - type: Transform -- uid: 10370 - type: CableApcExtension - components: - - pos: -36.5,13.5 - parent: 60 - type: Transform -- uid: 10371 - type: CableApcExtension - components: - - pos: -36.5,12.5 - parent: 60 - type: Transform -- uid: 10372 - type: CableApcExtension - components: - - pos: -36.5,11.5 - parent: 60 - type: Transform -- uid: 10373 - type: CableApcExtension - components: - - pos: -37.5,13.5 - parent: 60 - type: Transform -- uid: 10374 - type: CableApcExtension - components: - - pos: -38.5,13.5 - parent: 60 - type: Transform -- uid: 10375 - type: CableApcExtension - components: - - pos: -39.5,13.5 - parent: 60 - type: Transform -- uid: 10376 - type: CableApcExtension - components: - - pos: -40.5,13.5 - parent: 60 - type: Transform -- uid: 10377 - type: CableApcExtension - components: - - pos: -41.5,13.5 - parent: 60 - type: Transform -- uid: 10378 - type: CableApcExtension - components: - - pos: -41.5,12.5 - parent: 60 - type: Transform -- uid: 10379 - type: CableApcExtension - components: - - pos: -41.5,11.5 - parent: 60 - type: Transform -- uid: 10380 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 29.5,-38.5 - parent: 60 - type: Transform -- uid: 10381 - type: CableApcExtension - components: - - pos: -43.5,13.5 - parent: 60 - type: Transform -- uid: 10382 - type: CableApcExtension - components: - - pos: -44.5,13.5 - parent: 60 - type: Transform -- uid: 10383 - type: CableApcExtension - components: - - pos: -45.5,13.5 - parent: 60 - type: Transform -- uid: 10384 - type: CableApcExtension - components: - - pos: -46.5,13.5 - parent: 60 - type: Transform -- uid: 10385 - type: CableApcExtension - components: - - pos: -56.5,13.5 - parent: 60 - type: Transform -- uid: 10386 - type: CableApcExtension - components: - - pos: -57.5,13.5 - parent: 60 - type: Transform -- uid: 10387 - type: CableApcExtension - components: - - pos: -58.5,13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10388 - type: CableApcExtension - components: - - pos: -59.5,13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10389 - type: CableApcExtension - components: - - pos: -59.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10390 - type: CableApcExtension - components: - - pos: -59.5,11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10391 - type: CableApcExtension - components: - - pos: -59.5,10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10392 - type: CableApcExtension - components: - - pos: -59.5,9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10393 - type: CableApcExtension - components: - - pos: -59.5,8.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10394 - type: CableApcExtension - components: - - pos: -59.5,7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10395 - type: CableApcExtension - components: - - pos: -51.5,-11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10396 - type: CableApcExtension - components: - - pos: -52.5,-11.5 - parent: 60 - type: Transform -- uid: 10397 - type: CableApcExtension - components: - - pos: -53.5,-11.5 - parent: 60 - type: Transform -- uid: 10398 - type: CableApcExtension - components: - - pos: -54.5,-11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10399 - type: CableApcExtension - components: - - pos: -55.5,-11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10400 - type: CableApcExtension - components: - - pos: -56.5,-11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10401 - type: CableApcExtension - components: - - pos: -57.5,-11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10402 - type: CableApcExtension - components: - - pos: -57.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10403 - type: CableApcExtension - components: - - pos: -57.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10404 - type: CableApcExtension - components: - - pos: -57.5,-8.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10405 - type: CableApcExtension - components: - - pos: -57.5,-7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10406 - type: CableApcExtension - components: - - pos: -57.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10407 - type: CableApcExtension - components: - - pos: -58.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10408 - type: CableApcExtension - components: - - pos: -59.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10409 - type: CableApcExtension - components: - - pos: -60.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10410 - type: CableApcExtension - components: - - pos: -60.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10411 - type: CableApcExtension - components: - - pos: -60.5,-4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10412 - type: CableApcExtension - components: - - pos: -60.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10413 - type: CableApcExtension - components: - - pos: -60.5,-2.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10414 - type: CableApcExtension - components: - - pos: -60.5,-1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10415 - type: CableApcExtension - components: - - pos: -60.5,-0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10416 - type: WallReinforced - components: - - pos: -60.5,0.5 - parent: 60 - type: Transform -- uid: 10417 - type: WallReinforced - components: - - pos: -60.5,2.5 - parent: 60 - type: Transform -- uid: 10418 - type: WallReinforced - components: - - pos: -60.5,3.5 - parent: 60 - type: Transform -- uid: 10419 - type: WallReinforced - components: - - pos: -60.5,4.5 - parent: 60 - type: Transform -- uid: 10420 - type: WallReinforced - components: - - pos: -60.5,5.5 - parent: 60 - type: Transform -- uid: 10421 - type: Grille - components: - - pos: -52.5,16.5 - parent: 60 - type: Transform -- uid: 10422 - type: Catwalk - components: - - pos: -21.5,-33.5 - parent: 60 - type: Transform -- uid: 10423 - type: Catwalk - components: - - pos: -22.5,-33.5 - parent: 60 - type: Transform -- uid: 10424 - type: Catwalk - components: - - pos: -23.5,-33.5 - parent: 60 - type: Transform -- uid: 10425 - type: Catwalk - components: - - pos: -24.5,-33.5 - parent: 60 - type: Transform -- uid: 10426 - type: Catwalk - components: - - pos: -25.5,-33.5 - parent: 60 - type: Transform -- uid: 10427 - type: Catwalk - components: - - pos: -26.5,-33.5 - parent: 60 - type: Transform -- uid: 10428 - type: Catwalk - components: - - pos: -13.5,-30.5 - parent: 60 - type: Transform -- uid: 10429 - type: Catwalk - components: - - pos: -13.5,-29.5 - parent: 60 - type: Transform -- uid: 10430 - type: Catwalk - components: - - pos: -13.5,-28.5 - parent: 60 - type: Transform -- uid: 10431 - type: Catwalk - components: - - pos: -13.5,-27.5 - parent: 60 - type: Transform -- uid: 10432 - type: CableApcExtension - components: - - pos: -6.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10433 - type: CableApcExtension - components: - - pos: -6.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10434 - type: CableApcExtension - components: - - pos: -7.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10435 - type: CableApcExtension - components: - - pos: -8.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10436 - type: CableApcExtension - components: - - pos: -9.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10437 - type: CableApcExtension - components: - - pos: -10.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10438 - type: CableApcExtension - components: - - pos: -11.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10439 - type: CableApcExtension - components: - - pos: -12.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10440 - type: CableApcExtension - components: - - pos: -13.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10441 - type: CableApcExtension - components: - - pos: -13.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10442 - type: CableApcExtension - components: - - pos: -13.5,-28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10443 - type: CableApcExtension - components: - - pos: -13.5,-27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10444 - type: CableApcExtension - components: - - pos: -13.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10445 - type: CableApcExtension - components: - - pos: -19.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10446 - type: CableApcExtension - components: - - pos: -19.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10447 - type: CableApcExtension - components: - - pos: -19.5,-28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10448 - type: CableApcExtension - components: - - pos: -19.5,-27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10449 - type: CableApcExtension - components: - - pos: -19.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10450 - type: CableApcExtension - components: - - pos: -19.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10451 - type: CableApcExtension - components: - - pos: -19.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10452 - type: CableApcExtension - components: - - pos: -19.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10453 - type: CableApcExtension - components: - - pos: -18.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10454 - type: CableApcExtension - components: - - pos: -18.5,-34.5 - parent: 60 - type: Transform -- uid: 10455 - type: CableApcExtension - components: - - pos: -18.5,-35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10456 - type: CableApcExtension - components: - - pos: -18.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10457 - type: CableApcExtension - components: - - pos: -5.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10458 - type: CableApcExtension - components: - - pos: -4.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10459 - type: CableApcExtension - components: - - pos: -3.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10460 - type: CableApcExtension - components: - - pos: -2.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10461 - type: CableApcExtension - components: - - pos: -6.5,-28.5 - parent: 60 - type: Transform -- uid: 10462 - type: CableApcExtension - components: - - pos: -6.5,-27.5 - parent: 60 - type: Transform -- uid: 10463 - type: CableApcExtension - components: - - pos: -5.5,-27.5 - parent: 60 - type: Transform -- uid: 10464 - type: CableApcExtension - components: - - pos: -4.5,-27.5 - parent: 60 - type: Transform -- uid: 10465 - type: CableApcExtension - components: - - pos: -3.5,-27.5 - parent: 60 - type: Transform -- uid: 10466 - type: CableApcExtension - components: - - pos: -2.5,-27.5 - parent: 60 - type: Transform -- uid: 10467 - type: CableApcExtension - components: - - pos: -7.5,-27.5 - parent: 60 - type: Transform -- uid: 10468 - type: CableApcExtension - components: - - pos: -8.5,-27.5 - parent: 60 - type: Transform -- uid: 10469 - type: CableApcExtension - components: - - pos: -9.5,-27.5 - parent: 60 - type: Transform -- uid: 10470 - type: CableApcExtension - components: - - pos: -10.5,-27.5 - parent: 60 - type: Transform -- uid: 10471 - type: CableApcExtension - components: - - pos: -11.5,-27.5 - parent: 60 - type: Transform -- uid: 10472 - type: CableApcExtension - components: - - pos: -9.5,-26.5 - parent: 60 - type: Transform -- uid: 10473 - type: CableApcExtension - components: - - pos: -9.5,-25.5 - parent: 60 - type: Transform -- uid: 10474 - type: CableApcExtension - components: - - pos: -9.5,-24.5 - parent: 60 - type: Transform -- uid: 10475 - type: CableApcExtension - components: - - pos: -9.5,-23.5 - parent: 60 - type: Transform -- uid: 10476 - type: CableApcExtension - components: - - pos: -4.5,-26.5 - parent: 60 - type: Transform -- uid: 10477 - type: CableApcExtension - components: - - pos: -4.5,-25.5 - parent: 60 - type: Transform -- uid: 10478 - type: CableApcExtension - components: - - pos: -4.5,-24.5 - parent: 60 - type: Transform -- uid: 10479 - type: CableApcExtension - components: - - pos: -4.5,-23.5 - parent: 60 - type: Transform -- uid: 10480 - type: CableApcExtension - components: - - pos: -5.5,-23.5 - parent: 60 - type: Transform -- uid: 10481 - type: CableApcExtension - components: - - pos: -6.5,-23.5 - parent: 60 - type: Transform -- uid: 10482 - type: CableApcExtension - components: - - pos: -7.5,-23.5 - parent: 60 - type: Transform -- uid: 10483 - type: CableApcExtension - components: - - pos: -8.5,-23.5 - parent: 60 - type: Transform -- uid: 10484 - type: CableApcExtension - components: - - pos: -10.5,-23.5 - parent: 60 - type: Transform -- uid: 10485 - type: CableApcExtension - components: - - pos: -11.5,-23.5 - parent: 60 - type: Transform -- uid: 10486 - type: CableApcExtension - components: - - pos: -12.5,-23.5 - parent: 60 - type: Transform -- uid: 10487 - type: CableApcExtension - components: - - pos: -3.5,-23.5 - parent: 60 - type: Transform -- uid: 10488 - type: CableApcExtension - components: - - pos: -2.5,-23.5 - parent: 60 - type: Transform -- uid: 10489 - type: CableApcExtension - components: - - pos: -1.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10490 - type: CableApcExtension - components: - - pos: -2.5,-42.5 - parent: 60 - type: Transform -- uid: 10491 - type: CableApcExtension - components: - - pos: -3.5,-42.5 - parent: 60 - type: Transform -- uid: 10492 - type: CableApcExtension - components: - - pos: -4.5,-42.5 - parent: 60 - type: Transform -- uid: 10493 - type: CableApcExtension - components: - - pos: -5.5,-42.5 - parent: 60 - type: Transform -- uid: 10494 - type: CableApcExtension - components: - - pos: -6.5,-42.5 - parent: 60 - type: Transform -- uid: 10495 - type: CableApcExtension - components: - - pos: -7.5,-42.5 - parent: 60 - type: Transform -- uid: 10496 - type: CableApcExtension - components: - - pos: -8.5,-42.5 - parent: 60 - type: Transform -- uid: 10497 - type: CableApcExtension - components: - - pos: -9.5,-42.5 - parent: 60 - type: Transform -- uid: 10498 - type: CableApcExtension - components: - - pos: -10.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10499 - type: CableApcExtension - components: - - pos: -11.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10500 - type: CableApcExtension - components: - - pos: -12.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10501 - type: CableApcExtension - components: - - pos: -13.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10502 - type: CableApcExtension - components: - - pos: -14.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10503 - type: CableApcExtension - components: - - pos: -15.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10504 - type: CableApcExtension - components: - - pos: -14.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10505 - type: CableApcExtension - components: - - pos: -14.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10506 - type: CableApcExtension - components: - - pos: -14.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10507 - type: CableApcExtension - components: - - pos: -14.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10508 - type: CableApcExtension - components: - - pos: -14.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10509 - type: CableApcExtension - components: - - pos: -11.5,-43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10510 - type: CableApcExtension - components: - - pos: -11.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10511 - type: CableApcExtension - components: - - pos: -11.5,-45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10512 - type: CableApcExtension - components: - - pos: -11.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10513 - type: CableApcExtension - components: - - pos: -12.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10514 - type: CableApcExtension - components: - - pos: -13.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10515 - type: CableApcExtension - components: - - pos: -14.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10516 - type: CableApcExtension - components: - - pos: -15.5,-43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10517 - type: CableApcExtension - components: - - pos: -16.5,-43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10518 - type: CableApcExtension - components: - - pos: -17.5,-43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10519 - type: CableApcExtension - components: - - pos: -18.5,-43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10520 - type: CableApcExtension - components: - - pos: -19.5,-43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10521 - type: CableApcExtension - components: - - pos: -0.5,-42.5 - parent: 60 - type: Transform -- uid: 10522 - type: CableApcExtension - components: - - pos: 0.5,-42.5 - parent: 60 - type: Transform -- uid: 10523 - type: CableApcExtension - components: - - pos: 0.5,-43.5 - parent: 60 - type: Transform -- uid: 10524 - type: CableApcExtension - components: - - pos: 0.5,-44.5 - parent: 60 - type: Transform -- uid: 10525 - type: CableApcExtension - components: - - pos: 0.5,-45.5 - parent: 60 - type: Transform -- uid: 10526 - type: CableApcExtension - components: - - pos: 0.5,-46.5 - parent: 60 - type: Transform -- uid: 10527 - type: CableApcExtension - components: - - pos: 0.5,-47.5 - parent: 60 - type: Transform -- uid: 10528 - type: CableApcExtension - components: - - pos: 0.5,-48.5 - parent: 60 - type: Transform -- uid: 10529 - type: CableApcExtension - components: - - pos: 1.5,-45.5 - parent: 60 - type: Transform -- uid: 10530 - type: CableApcExtension - components: - - pos: 2.5,-45.5 - parent: 60 - type: Transform -- uid: 10531 - type: CableApcExtension - components: - - pos: 3.5,-45.5 - parent: 60 - type: Transform -- uid: 10532 - type: CableApcExtension - components: - - pos: 4.5,-45.5 - parent: 60 - type: Transform -- uid: 10533 - type: CableApcExtension - components: - - pos: 5.5,-45.5 - parent: 60 - type: Transform -- uid: 10534 - type: CableApcExtension - components: - - pos: 6.5,-45.5 - parent: 60 - type: Transform -- uid: 10535 - type: CableApcExtension - components: - - pos: -0.5,-46.5 - parent: 60 - type: Transform -- uid: 10536 - type: CableApcExtension - components: - - pos: -1.5,-46.5 - parent: 60 - type: Transform -- uid: 10537 - type: CableApcExtension - components: - - pos: -2.5,-46.5 - parent: 60 - type: Transform -- uid: 10538 - type: CableApcExtension - components: - - pos: -3.5,-46.5 - parent: 60 - type: Transform -- uid: 10539 - type: CableApcExtension - components: - - pos: -4.5,-46.5 - parent: 60 - type: Transform -- uid: 10540 - type: CableApcExtension - components: - - pos: -5.5,-46.5 - parent: 60 - type: Transform -- uid: 10541 - type: CableApcExtension - components: - - pos: -6.5,-46.5 - parent: 60 - type: Transform -- uid: 10542 - type: CableApcExtension - components: - - pos: -7.5,-46.5 - parent: 60 - type: Transform -- uid: 10543 - type: CableApcExtension - components: - - pos: -8.5,-46.5 - parent: 60 - type: Transform -- uid: 10544 - type: CableApcExtension - components: - - pos: -7.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10545 - type: CableApcExtension - components: - - pos: -7.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10546 - type: CableApcExtension - components: - - pos: -7.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10547 - type: CableApcExtension - components: - - pos: 0.5,-41.5 - parent: 60 - type: Transform -- uid: 10548 - type: CableApcExtension - components: - - pos: 0.5,-40.5 - parent: 60 - type: Transform -- uid: 10549 - type: CableApcExtension - components: - - pos: 0.5,-39.5 - parent: 60 - type: Transform -- uid: 10550 - type: CableMV - components: - - pos: -1.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10551 - type: CableMV - components: - - pos: -2.5,-42.5 - parent: 60 - type: Transform -- uid: 10552 - type: CableMV - components: - - pos: -3.5,-42.5 - parent: 60 - type: Transform -- uid: 10553 - type: CableMV - components: - - pos: -4.5,-42.5 - parent: 60 - type: Transform -- uid: 10554 - type: CableMV - components: - - pos: -5.5,-42.5 - parent: 60 - type: Transform -- uid: 10555 - type: CableMV - components: - - pos: -6.5,-42.5 - parent: 60 - type: Transform -- uid: 10556 - type: CableMV - components: - - pos: -7.5,-42.5 - parent: 60 - type: Transform -- uid: 10557 - type: CableMV - components: - - pos: -7.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10558 - type: CableMV - components: - - pos: -7.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10559 - type: CableMV - components: - - pos: -7.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10560 - type: CableMV - components: - - pos: -7.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10561 - type: CableMV - components: - - pos: -0.5,-42.5 - parent: 60 - type: Transform -- uid: 10562 - type: CableMV - components: - - pos: 0.5,-42.5 - parent: 60 - type: Transform -- uid: 10563 - type: CableMV - components: - - pos: 1.5,-42.5 - parent: 60 - type: Transform -- uid: 10564 - type: CableMV - components: - - pos: 1.5,-41.5 - parent: 60 - type: Transform -- uid: 10565 - type: CableMV - components: - - pos: 2.5,-41.5 - parent: 60 - type: Transform -- uid: 10566 - type: CableMV - components: - - pos: 3.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10567 - type: CableMV - components: - - pos: 4.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10568 - type: CableMV - components: - - pos: 5.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10569 - type: CableMV - components: - - pos: 6.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10570 - type: CableMV - components: - - pos: 7.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10571 - type: CableMV - components: - - pos: 45.5,0.5 - parent: 60 - type: Transform -- uid: 10572 - type: WallSolid - components: - - pos: 21.5,3.5 - parent: 60 - type: Transform -- uid: 10573 - type: CableMV - components: - - pos: 7.5,-40.5 - parent: 60 - type: Transform -- uid: 10574 - type: CableMV - components: - - pos: 7.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10575 - type: CableMV - components: - - pos: 7.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10576 - type: CableMV - components: - - pos: 7.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10577 - type: CableMV - components: - - pos: 7.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10578 - type: CableMV - components: - - pos: 7.5,-35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10579 - type: CableMV - components: - - pos: 7.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10580 - type: WallSolid - components: - - pos: 25.5,3.5 - parent: 60 - type: Transform -- uid: 10581 - type: Grille - components: - - pos: 22.5,3.5 - parent: 60 - type: Transform -- uid: 10582 - type: ReinforcedWindow - components: - - pos: 24.5,3.5 - parent: 60 - type: Transform -- uid: 10583 - type: ReinforcedWindow - components: - - pos: 22.5,3.5 - parent: 60 - type: Transform -- uid: 10584 - type: Grille - components: - - pos: 24.5,3.5 - parent: 60 - type: Transform -- uid: 10585 - type: CableMV - components: - - pos: 7.5,-33.5 - parent: 60 - type: Transform -- uid: 10586 - type: CableMV - components: - - pos: 7.5,-32.5 - parent: 60 - type: Transform -- uid: 10587 - type: CableMV - components: - - pos: 7.5,-31.5 - parent: 60 - type: Transform -- uid: 10588 - type: CableMV - components: - - pos: 6.5,-31.5 - parent: 60 - type: Transform -- uid: 10589 - type: CableMV - components: - - pos: 5.5,-31.5 - parent: 60 - type: Transform -- uid: 10590 - type: CableMV - components: - - pos: 5.5,-30.5 - parent: 60 - type: Transform -- uid: 10591 - type: CableMV - components: - - pos: 4.5,-30.5 - parent: 60 - type: Transform -- uid: 10592 - type: CableApcExtension - components: - - pos: 22.5,3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10593 - type: CableApcExtension - components: - - pos: 3.5,-32.5 - parent: 60 - type: Transform -- uid: 10594 - type: CableApcExtension - components: - - pos: 4.5,-32.5 - parent: 60 - type: Transform -- uid: 10595 - type: CableApcExtension - components: - - pos: 5.5,-32.5 - parent: 60 - type: Transform -- uid: 10596 - type: CableApcExtension - components: - - pos: 5.5,-31.5 - parent: 60 - type: Transform -- uid: 10597 - type: CableApcExtension - components: - - pos: 5.5,-30.5 - parent: 60 - type: Transform -- uid: 10598 - type: CableApcExtension - components: - - pos: 5.5,-29.5 - parent: 60 - type: Transform -- uid: 10599 - type: CableApcExtension - components: - - pos: 5.5,-28.5 - parent: 60 - type: Transform -- uid: 10600 - type: CableApcExtension - components: - - pos: 5.5,-27.5 - parent: 60 - type: Transform -- uid: 10601 - type: CableApcExtension - components: - - pos: 6.5,-31.5 - parent: 60 - type: Transform -- uid: 10602 - type: CableApcExtension - components: - - pos: 7.5,-31.5 - parent: 60 - type: Transform -- uid: 10603 - type: CableApcExtension - components: - - pos: 7.5,-32.5 - parent: 60 - type: Transform -- uid: 10604 - type: CableApcExtension - components: - - pos: 7.5,-33.5 - parent: 60 - type: Transform -- uid: 10605 - type: CableApcExtension - components: - - pos: 24.5,3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10606 - type: CableApcExtension - components: - - pos: 26.5,1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10607 - type: CableApcExtension - components: - - pos: 26.5,0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10608 - type: CableApcExtension - components: - - pos: 26.5,2.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10609 - type: CableApcExtension - components: - - pos: 1.5,-34.5 - parent: 60 - type: Transform -- uid: 10610 - type: CableApcExtension - components: - - pos: 0.5,-34.5 - parent: 60 - type: Transform -- uid: 10611 - type: CableApcExtension - components: - - pos: 20.5,1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10612 - type: CableApcExtension - components: - - pos: 0.5,-35.5 - parent: 60 - type: Transform -- uid: 10613 - type: CableApcExtension - components: - - pos: 0.5,-36.5 - parent: 60 - type: Transform -- uid: 10614 - type: CableApcExtension - components: - - pos: 0.5,-37.5 - parent: 60 - type: Transform -- uid: 10615 - type: CableApcExtension - components: - - pos: 2.5,-37.5 - parent: 60 - type: Transform -- uid: 10616 - type: CableApcExtension - components: - - pos: 3.5,-37.5 - parent: 60 - type: Transform -- uid: 10617 - type: CableApcExtension - components: - - pos: 4.5,-37.5 - parent: 60 - type: Transform -- uid: 10618 - type: CableApcExtension - components: - - pos: 4.5,-38.5 - parent: 60 - type: Transform -- uid: 10619 - type: CableApcExtension - components: - - pos: 1.5,-37.5 - parent: 60 - type: Transform -- uid: 10620 - type: CableApcExtension - components: - - pos: 7.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10621 - type: CableApcExtension - components: - - pos: 7.5,-35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10622 - type: CableApcExtension - components: - - pos: 7.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10623 - type: CableApcExtension - components: - - pos: 7.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10624 - type: CableApcExtension - components: - - pos: 7.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10625 - type: CableApcExtension - components: - - pos: 7.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10626 - type: CableApcExtension - components: - - pos: 8.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10627 - type: CableApcExtension - components: - - pos: 8.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10628 - type: CableApcExtension - components: - - pos: 8.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10629 - type: CableApcExtension - components: - - pos: 7.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10630 - type: CableApcExtension - components: - - pos: 6.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10631 - type: CableApcExtension - components: - - pos: 5.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10632 - type: CableApcExtension - components: - - pos: 4.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10633 - type: CableApcExtension - components: - - pos: 3.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10634 - type: CableApcExtension - components: - - pos: 0.5,-33.5 - parent: 60 - type: Transform -- uid: 10635 - type: CableApcExtension - components: - - pos: 0.5,-32.5 - parent: 60 - type: Transform -- uid: 10636 - type: CableApcExtension - components: - - pos: 0.5,-31.5 - parent: 60 - type: Transform -- uid: 10637 - type: CableApcExtension - components: - - pos: 0.5,-30.5 - parent: 60 - type: Transform -- uid: 10638 - type: CableApcExtension - components: - - pos: 0.5,-29.5 - parent: 60 - type: Transform -- uid: 10639 - type: CableApcExtension - components: - - pos: 0.5,-28.5 - parent: 60 - type: Transform -- uid: 10640 - type: CableApcExtension - components: - - pos: 0.5,-27.5 - parent: 60 - type: Transform -- uid: 10641 - type: CableApcExtension - components: - - pos: 0.5,-26.5 - parent: 60 - type: Transform -- uid: 10642 - type: CableApcExtension - components: - - pos: 0.5,-25.5 - parent: 60 - type: Transform -- uid: 10643 - type: CableApcExtension - components: - - pos: 4.5,-29.5 - parent: 60 - type: Transform -- uid: 10644 - type: CableApcExtension - components: - - pos: 3.5,-29.5 - parent: 60 - type: Transform -- uid: 10645 - type: CableApcExtension - components: - - pos: 2.5,-29.5 - parent: 60 - type: Transform -- uid: 10646 - type: CableApcExtension - components: - - pos: 1.5,-29.5 - parent: 60 - type: Transform -- uid: 10647 - type: CableApcExtension - components: - - pos: 0.5,-24.5 - parent: 60 - type: Transform -- uid: 10648 - type: CableApcExtension - components: - - pos: 1.5,-24.5 - parent: 60 - type: Transform -- uid: 10649 - type: CableApcExtension - components: - - pos: 2.5,-24.5 - parent: 60 - type: Transform -- uid: 10650 - type: CableApcExtension - components: - - pos: 3.5,-24.5 - parent: 60 - type: Transform -- uid: 10651 - type: CableApcExtension - components: - - pos: 4.5,-24.5 - parent: 60 - type: Transform -- uid: 10652 - type: CableApcExtension - components: - - pos: 5.5,-24.5 - parent: 60 - type: Transform -- uid: 10653 - type: CableApcExtension - components: - - pos: 6.5,-24.5 - parent: 60 - type: Transform -- uid: 10654 - type: CableApcExtension - components: - - pos: 7.5,-24.5 - parent: 60 - type: Transform -- uid: 10655 - type: CableApcExtension - components: - - pos: 8.5,-24.5 - parent: 60 - type: Transform -- uid: 10656 - type: AirlockGlass - components: - - pos: 1.5,-26.5 - parent: 60 - type: Transform -- uid: 10657 - type: CableApcExtension - components: - - pos: -33.5,-24.5 - parent: 60 - type: Transform -- uid: 10658 - type: CableApcExtension - components: - - pos: -37.5,-24.5 - parent: 60 - type: Transform -- uid: 10659 - type: SolarPanel - components: - - pos: 24.5,-64.5 - parent: 60 - type: Transform -- uid: 10660 - type: SolarPanel - components: - - pos: 24.5,-66.5 - parent: 60 - type: Transform -- uid: 10661 - type: SolarPanel - components: - - pos: 34.5,-74.5 - parent: 60 - type: Transform -- uid: 10662 - type: SolarPanel - components: - - pos: 24.5,-72.5 - parent: 60 - type: Transform -- uid: 10663 - type: SolarPanel - components: - - pos: 30.5,-74.5 - parent: 60 - type: Transform -- uid: 10664 - type: SolarPanel - components: - - pos: 29.5,-76.5 - parent: 60 - type: Transform -- uid: 10665 - type: Catwalk - components: - - pos: 31.5,-70.5 - parent: 60 - type: Transform -- uid: 10666 - type: Catwalk - components: - - pos: 38.5,-71.5 - parent: 60 - type: Transform -- uid: 10667 - type: Poweredlight - components: - - pos: -43.5,-3.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10668 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-8.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10669 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-8.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10670 - type: Poweredlight - components: - - pos: -41.5,0.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10671 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10672 - type: Poweredlight - components: - - pos: -23.5,-22.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10673 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10674 - type: Poweredlight - components: - - pos: -29.5,-22.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10675 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -11.5,2.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10676 - type: Poweredlight - components: - - pos: -17.5,-22.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10677 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10678 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-8.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10679 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10680 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-8.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10681 - type: DeployableBarrier - components: - - anchored: False - pos: -23.5,-6.5 - parent: 60 - type: Transform -- uid: 10682 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-3.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10683 - type: CableApcExtension - components: - - pos: 51.5,-37.5 - parent: 60 - type: Transform -- uid: 10684 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,2.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10685 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,6.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10686 - type: FirelockGlass - components: - - pos: -16.5,6.5 - parent: 60 - type: Transform -- uid: 10687 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-7.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10688 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-2.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10689 - type: Poweredlight - components: - - pos: -48.5,4.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10690 - type: Poweredlight - components: - - pos: -42.5,5.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10691 - type: PoweredSmallLight - components: - - pos: -49.5,9.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10692 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-2.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10693 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -58.5,1.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10694 - type: WallSolid - components: - - pos: -56.5,6.5 - parent: 60 - type: Transform -- uid: 10695 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,11.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10696 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,11.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10697 - type: Poweredlight - components: - - pos: -40.5,14.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10698 - type: Poweredlight - components: - - pos: -37.5,14.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10699 - type: Poweredlight - components: - - pos: -34.5,15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10700 - type: Poweredlight - components: - - pos: -30.5,15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10701 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,0.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10702 - type: Grille - components: - - pos: -6.5,4.5 - parent: 60 - type: Transform -- uid: 10703 - type: CableApcExtension - components: - - pos: 20.5,0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10704 - type: PoweredSmallLight - components: - - pos: -58.5,9.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10705 - type: CableHV - components: - - pos: -6.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10706 - type: CableHV - components: - - pos: -5.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10707 - type: CableHV - components: - - pos: -4.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10708 - type: CableHV - components: - - pos: -3.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10709 - type: CableHV - components: - - pos: -2.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10710 - type: CableHV - components: - - pos: -1.5,-41.5 - parent: 60 - type: Transform -- uid: 10711 - type: CableHV - components: - - pos: -0.5,-41.5 - parent: 60 - type: Transform -- uid: 10712 - type: CableApcExtension - components: - - pos: 20.5,2.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10713 - type: CableHV - components: - - pos: 1.5,-41.5 - parent: 60 - type: Transform -- uid: 10714 - type: CableHV - components: - - pos: 2.5,-41.5 - parent: 60 - type: Transform -- uid: 10715 - type: CableHV - components: - - pos: 3.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10716 - type: CableHV - components: - - pos: 4.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10717 - type: CableHV - components: - - pos: 5.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10718 - type: CableHV - components: - - pos: 6.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10719 - type: CableHV - components: - - pos: 7.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10720 - type: CableHV - components: - - pos: 8.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10721 - type: CableHV - components: - - pos: 9.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10722 - type: CableHV - components: - - pos: 10.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10723 - type: CableHV - components: - - pos: 11.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10724 - type: CableHV - components: - - pos: 12.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10725 - type: CableHV - components: - - pos: 13.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10726 - type: CableHV - components: - - pos: 14.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10727 - type: CableHV - components: - - pos: 15.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10728 - type: CableHV - components: - - pos: 16.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10729 - type: CableHV - components: - - pos: 17.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10730 - type: CableHV - components: - - pos: 18.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10731 - type: CableHV - components: - - pos: 19.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10732 - type: CableHV - components: - - pos: 20.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10733 - type: CableHV - components: - - pos: 21.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10734 - type: CableHV - components: - - pos: 22.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10735 - type: CableHV - components: - - pos: 23.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10736 - type: CableHV - components: - - pos: 24.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10737 - type: CableHV - components: - - pos: 25.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10738 - type: CableHV - components: - - pos: 26.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10739 - type: CableHV - components: - - pos: 27.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10740 - type: CableHV - components: - - pos: 28.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10741 - type: CableHV - components: - - pos: 28.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10742 - type: CableHV - components: - - pos: 29.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10743 - type: CableHV - components: - - pos: 30.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10744 - type: CableHV - components: - - pos: 31.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10745 - type: CableHV - components: - - pos: 32.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10746 - type: CableHV - components: - - pos: 33.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10747 - type: CableHV - components: - - pos: 34.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10748 - type: CableHV - components: - - pos: 34.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10749 - type: CableHV - components: - - pos: 35.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10750 - type: CableHV - components: - - pos: 36.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10751 - type: CableHV - components: - - pos: 37.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10752 - type: CableHV - components: - - pos: 38.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10753 - type: CableHV - components: - - pos: 39.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10754 - type: CableHV - components: - - pos: 39.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10755 - type: CableHV - components: - - pos: 39.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10756 - type: CableHV - components: - - pos: 39.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10757 - type: CableHV - components: - - pos: 39.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10758 - type: CableHV - components: - - pos: 39.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10759 - type: CableHV - components: - - pos: 38.5,-36.5 - parent: 60 - type: Transform -- uid: 10760 - type: CableHV - components: - - pos: 37.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10761 - type: CableHV - components: - - pos: 37.5,-35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10762 - type: CableHV - components: - - pos: 37.5,-34.5 - parent: 60 - type: Transform -- uid: 10763 - type: CableHV - components: - - pos: 30.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10764 - type: CableHV - components: - - pos: 31.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10765 - type: CableHV - components: - - pos: 32.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10766 - type: CableHV - components: - - pos: 33.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10767 - type: CableHV - components: - - pos: 34.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10768 - type: CableHV - components: - - pos: 35.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10769 - type: CableHV - components: - - pos: 36.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10770 - type: CableHV - components: - - pos: 31.5,-52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10771 - type: CableHV - components: - - pos: 31.5,-51.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10772 - type: CableHV - components: - - pos: 37.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10773 - type: CableHV - components: - - pos: 38.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10774 - type: CableHV - components: - - pos: 39.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10775 - type: CableHV - components: - - pos: 40.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10776 - type: CableHV - components: - - pos: 41.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10777 - type: CableMV - components: - - pos: 41.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10778 - type: CableMV - components: - - pos: 41.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10779 - type: CableMV - components: - - pos: 41.5,-43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10780 - type: CableApcExtension - components: - - pos: 41.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10781 - type: CableApcExtension - components: - - pos: 41.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10782 - type: CableApcExtension - components: - - pos: 41.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10783 - type: Catwalk - components: - - pos: 41.5,-47.5 - parent: 60 - type: Transform -- uid: 10784 - type: CableHV - components: - - pos: 41.5,-47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10785 - type: CableHV - components: - - pos: 41.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10786 - type: CableHV - components: - - pos: 42.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10787 - type: CableHV - components: - - pos: 41.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10788 - type: CableHV - components: - - pos: 40.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10789 - type: CableHV - components: - - pos: 29.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10790 - type: CableHV - components: - - pos: 28.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10791 - type: CableHV - components: - - pos: 27.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10792 - type: CableHV - components: - - pos: 26.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10793 - type: CableHV - components: - - pos: 25.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10794 - type: CableHV - components: - - pos: 24.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10795 - type: CableHV - components: - - pos: 23.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10796 - type: CableHV - components: - - pos: 22.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10797 - type: CableHV - components: - - pos: 21.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10798 - type: CableHV - components: - - pos: 21.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10799 - type: CableHV - components: - - pos: 21.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10800 - type: CableHV - components: - - pos: 21.5,-47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10801 - type: CableHV - components: - - pos: 21.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10802 - type: CableHV - components: - - pos: 21.5,-45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10803 - type: CableHV - components: - - pos: 21.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10804 - type: CableHV - components: - - pos: 21.5,-43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10805 - type: CableHV - components: - - pos: 21.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10806 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 7536 - type: Transform -- uid: 10807 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 7536 - type: Transform -- uid: 10808 - type: RandomSpawner - components: - - pos: -12.5,-3.5 - parent: 7536 - type: Transform -- uid: 10809 - type: RandomSpawner - components: - - pos: 5.5,-1.5 - parent: 7536 - type: Transform -- uid: 10810 - type: PoweredSmallLight - components: - - pos: -1.5,-1.5 - parent: 7536 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10811 - type: PoweredSmallLight - components: - - pos: 5.5,-1.5 - parent: 7536 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10812 - type: PoweredSmallLight - components: - - pos: 3.5,-3.5 - parent: 7536 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10813 - type: PoweredSmallLight - components: - - pos: 8.5,-2.5 - parent: 7536 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10814 - type: PoweredSmallLight - components: - - pos: 13.5,-1.5 - parent: 7536 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10815 - type: WeaponCapacitorRecharger - components: - - pos: 13.5,-1.5 - parent: 7536 - type: Transform -- uid: 10816 - type: IngotGold1 - components: - - pos: -1.5758171,-1.4302635 - parent: 7536 - type: Transform -- uid: 10817 - type: IngotGold1 - components: - - pos: -1.3883171,-1.5396385 - parent: 7536 - type: Transform -- uid: 10818 - type: CigaretteSyndicate - components: - - pos: -1.6490555,-1.7178688 - parent: 7536 - type: Transform -- uid: 10819 - type: DonkpocketBoxSpawner - components: - - pos: 12.5,-1.5 - parent: 7536 - type: Transform -- uid: 10820 - type: FoodTinMRE - components: - - pos: -1.3053055,-1.7334938 - parent: 7536 - type: Transform -- uid: 10821 - type: WeaponTurretSyndicateBroken - components: - - pos: -1.5,-2.5 - parent: 7536 - type: Transform -- uid: 10822 - type: PlushieNuke - components: - - pos: 3.0700302,-3.5928688 - parent: 7536 - type: Transform -- uid: 10823 - type: Carpet - components: - - pos: 3.5,-3.5 - parent: 7536 - type: Transform -- uid: 10824 - type: TargetSyndicate - components: - - pos: -19.5,-3.5 - parent: 7536 - type: Transform -- uid: 10825 - type: ClothingHandsGlovesColorRed - components: - - pos: 13.480946,-3.4905777 - parent: 7536 - type: Transform -- uid: 10826 - type: FoodSnackSyndi - components: - - pos: 13.465321,-3.2874527 - parent: 7536 - type: Transform -- uid: 10827 - type: CyberPen - components: - - pos: 13.04615,-1.4593277 - parent: 7536 - type: Transform -- uid: 10828 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10829 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -33.5,4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10830 - type: TablePlasmaGlass - components: - - pos: 5.5,-3.5 - parent: 7536 - type: Transform -- uid: 10831 - type: Poweredlight - components: - - pos: -1.5,-53.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10832 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-58.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10833 - type: Poweredlight - components: - - pos: 8.5,-53.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10834 - type: Poweredlight - components: - - pos: 2.5,-60.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10835 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-55.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10836 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-55.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10837 - type: CableApcExtension - components: - - pos: 22.5,-1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10838 - type: CableApcExtension - components: - - pos: 23.5,-1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10839 - type: CableApcExtension - components: - - pos: 24.5,-1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10840 - type: APCBasic - components: - - pos: 21.5,5.5 - parent: 60 - type: Transform -- uid: 10841 - type: CableHV - components: - - pos: 23.5,7.5 - parent: 60 - type: Transform -- uid: 10842 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-73.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10843 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-64.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10844 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-69.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10845 - type: Poweredlight - components: - - pos: 2.5,-75.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10846 - type: ClosetEmergencyFilledRandom - components: - - pos: 3.5,-58.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10847 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-57.5 - parent: 60 - type: Transform -- uid: 10848 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-58.5 - parent: 60 - type: Transform -- uid: 10849 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-57.5 - parent: 60 - type: Transform -- uid: 10850 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -0.5,-64.5 - parent: 60 - type: Transform -- uid: 10851 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 1.5,-64.5 - parent: 60 - type: Transform -- uid: 10852 - type: WindowReinforcedDirectional - components: - - pos: 1.5,-69.5 - parent: 60 - type: Transform -- uid: 10853 - type: WindowReinforcedDirectional - components: - - pos: -0.5,-69.5 - parent: 60 - type: Transform -- uid: 10854 - type: Windoor - components: - - pos: 0.5,-69.5 - parent: 60 - type: Transform -- uid: 10855 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: 0.5,-64.5 - parent: 60 - type: Transform -- uid: 10856 - type: WaterCooler - components: - - pos: 3.5,-61.5 - parent: 60 - type: Transform -- uid: 10857 - type: LockerMedicineFilled - components: - - pos: 49.5,-16.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10858 - type: CableApcExtension - components: - - pos: -39.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10859 - type: CableApcExtension - components: - - pos: -17.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10860 - type: CableApcExtension - components: - - pos: -16.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10861 - type: CableApcExtension - components: - - pos: -16.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10862 - type: CableApcExtension - components: - - pos: -16.5,-31.5 - parent: 60 - type: Transform -- uid: 10863 - type: CableHV - components: - - pos: 23.5,6.5 - parent: 60 - type: Transform -- uid: 10864 - type: CableHV - components: - - pos: 23.5,5.5 - parent: 60 - type: Transform -- uid: 10865 - type: Catwalk - components: - - pos: 30.5,-50.5 - parent: 60 - type: Transform -- uid: 10866 - type: Catwalk - components: - - pos: 29.5,-50.5 - parent: 60 - type: Transform -- uid: 10867 - type: Catwalk - components: - - pos: 28.5,-50.5 - parent: 60 - type: Transform -- uid: 10868 - type: Catwalk - components: - - pos: 27.5,-50.5 - parent: 60 - type: Transform -- uid: 10869 - type: Catwalk - components: - - pos: 26.5,-50.5 - parent: 60 - type: Transform -- uid: 10870 - type: Catwalk - components: - - pos: 25.5,-50.5 - parent: 60 - type: Transform -- uid: 10871 - type: Catwalk - components: - - pos: 24.5,-50.5 - parent: 60 - type: Transform -- uid: 10872 - type: Catwalk - components: - - pos: 21.5,-49.5 - parent: 60 - type: Transform -- uid: 10873 - type: Catwalk - components: - - pos: 21.5,-48.5 - parent: 60 - type: Transform -- uid: 10874 - type: Catwalk - components: - - pos: 21.5,-47.5 - parent: 60 - type: Transform -- uid: 10875 - type: Catwalk - components: - - pos: 21.5,-46.5 - parent: 60 - type: Transform -- uid: 10876 - type: Catwalk - components: - - pos: 21.5,-45.5 - parent: 60 - type: Transform -- uid: 10877 - type: Catwalk - components: - - pos: 21.5,-44.5 - parent: 60 - type: Transform -- uid: 10878 - type: Catwalk - components: - - pos: 39.5,-39.5 - parent: 60 - type: Transform -- uid: 10879 - type: RandomPosterContraband - components: - - pos: -29.5,-33.5 - parent: 60 - type: Transform -- uid: 10880 - type: Catwalk - components: - - pos: 39.5,-37.5 - parent: 60 - type: Transform -- uid: 10881 - type: Catwalk - components: - - pos: 39.5,-36.5 - parent: 60 - type: Transform -- uid: 10882 - type: MaintenanceWeaponSpawner - components: - - pos: 54.5,-44.5 - parent: 60 - type: Transform -- uid: 10883 - type: MaintenanceToolSpawner - components: - - pos: 58.5,-47.5 - parent: 60 - type: Transform -- uid: 10884 - type: MaintenanceFluffSpawner - components: - - pos: 55.5,-44.5 - parent: 60 - type: Transform -- uid: 10885 - type: CableMV - components: - - pos: 30.5,-52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10886 - type: CableMV - components: - - pos: 30.5,-51.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10887 - type: CableMV - components: - - pos: 37.5,-34.5 - parent: 60 - type: Transform -- uid: 10888 - type: CableMV - components: - - pos: 37.5,-35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10889 - type: CableMV - components: - - pos: 37.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10890 - type: CableMV - components: - - pos: 38.5,-36.5 - parent: 60 - type: Transform -- uid: 10891 - type: CableMV - components: - - pos: 39.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10892 - type: CableMV - components: - - pos: 39.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10893 - type: CableMV - components: - - pos: 39.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10894 - type: CableMV - components: - - pos: 39.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10895 - type: CableMV - components: - - pos: 39.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10896 - type: CableMV - components: - - pos: 39.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10897 - type: CableMV - components: - - pos: 40.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10898 - type: CableMV - components: - - pos: 41.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10899 - type: Catwalk - components: - - pos: 41.5,-48.5 - parent: 60 - type: Transform -- uid: 10900 - type: CableApcExtension - components: - - pos: 41.5,-43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10901 - type: CableApcExtension - components: - - pos: 41.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10902 - type: CableApcExtension - components: - - pos: 41.5,-45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10903 - type: CableMV - components: - - pos: 41.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10904 - type: CableMV - components: - - pos: 41.5,-47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10905 - type: CableHV - components: - - pos: 41.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10906 - type: CableHV - components: - - pos: 41.5,-43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10907 - type: Catwalk - components: - - pos: 41.5,-49.5 - parent: 60 - type: Transform -- uid: 10908 - type: SawImprov - components: - - pos: -55.46502,-14.42009 - parent: 60 - type: Transform -- uid: 10909 - type: CableMV - components: - - pos: 41.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10910 - type: CableMV - components: - - pos: 40.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10911 - type: CableMV - components: - - pos: 39.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10912 - type: CableMV - components: - - pos: 38.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10913 - type: CableMV - components: - - pos: 37.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10914 - type: CableMV - components: - - pos: 36.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10915 - type: CableMV - components: - - pos: 35.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10916 - type: CableMV - components: - - pos: 34.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10917 - type: CableMV - components: - - pos: 33.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10918 - type: CableMV - components: - - pos: 32.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10919 - type: CableMV - components: - - pos: 31.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10920 - type: CableMV - components: - - pos: 30.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10921 - type: CableMV - components: - - pos: 31.5,-51.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10922 - type: CableMV - components: - - pos: 31.5,-52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10923 - type: CableApcExtension - components: - - pos: 30.5,-51.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10924 - type: CableApcExtension - components: - - pos: 30.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10925 - type: CableApcExtension - components: - - pos: 31.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10926 - type: CableApcExtension - components: - - pos: 31.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10927 - type: CableApcExtension - components: - - pos: 31.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10928 - type: CableApcExtension - components: - - pos: 32.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10929 - type: CableApcExtension - components: - - pos: 33.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10930 - type: CableApcExtension - components: - - pos: 34.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10931 - type: CableApcExtension - components: - - pos: 35.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10932 - type: CableApcExtension - components: - - pos: 36.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10933 - type: CableApcExtension - components: - - pos: 37.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10934 - type: CableApcExtension - components: - - pos: 38.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10935 - type: CableApcExtension - components: - - pos: 39.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10936 - type: CableMV - components: - - pos: 40.5,-44.5 - parent: 60 - type: Transform -- uid: 10937 - type: CableMV - components: - - pos: 41.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10938 - type: ComputerStationRecords - components: - - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 60 - type: Transform -- uid: 10939 - type: ComputerStationRecords - components: - - rot: 3.141592653589793 rad - pos: 7.5,-29.5 - parent: 60 - type: Transform -- uid: 10940 - type: AirlockExternalGlassLocked - components: - - pos: 13.5,-54.5 - parent: 60 - type: Transform -- uid: 10941 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-43.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10942 - type: AirlockExternalGlassLocked - components: - - pos: 11.5,-54.5 - parent: 60 - type: Transform -- uid: 10943 - type: Catwalk - components: - - pos: 41.5,-45.5 - parent: 60 - type: Transform -- uid: 10944 - type: SignEscapePods - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-47.5 - parent: 60 - type: Transform -- uid: 10945 - type: WallReinforced - components: - - pos: 39.5,-43.5 - parent: 60 - type: Transform -- uid: 10946 - type: StorageCanister - components: - - pos: 34.5,-43.5 - parent: 60 - type: Transform -- uid: 10947 - type: CableApcExtension - components: - - pos: 29.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10948 - type: CableApcExtension - components: - - pos: 28.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10949 - type: CableApcExtension - components: - - pos: 27.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10950 - type: CableApcExtension - components: - - pos: 26.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10951 - type: CableApcExtension - components: - - pos: 25.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10952 - type: CableApcExtension - components: - - pos: 24.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10953 - type: CableApcExtension - components: - - pos: 23.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10954 - type: CableApcExtension - components: - - pos: 22.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10955 - type: CableApcExtension - components: - - pos: 21.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10956 - type: CableApcExtension - components: - - pos: 21.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10957 - type: CableApcExtension - components: - - pos: 21.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10958 - type: CableApcExtension - components: - - pos: 20.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10959 - type: CableApcExtension - components: - - pos: 19.5,-48.5 - parent: 60 - type: Transform -- uid: 10960 - type: CableApcExtension - components: - - pos: 18.5,-48.5 - parent: 60 - type: Transform -- uid: 10961 - type: CableApcExtension - components: - - pos: 17.5,-48.5 - parent: 60 - type: Transform -- uid: 10962 - type: CableApcExtension - components: - - pos: 18.5,-49.5 - parent: 60 - type: Transform -- uid: 10963 - type: CableApcExtension - components: - - pos: 21.5,-47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10964 - type: CableApcExtension - components: - - pos: 21.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10965 - type: CableApcExtension - components: - - pos: 21.5,-45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10966 - type: CableApcExtension - components: - - pos: 21.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10967 - type: CableApcExtension - components: - - pos: 21.5,-43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10968 - type: CableApcExtension - components: - - pos: 21.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10969 - type: CableApcExtension - components: - - pos: 21.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10970 - type: CableApcExtension - components: - - pos: 22.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10971 - type: CableApcExtension - components: - - pos: 23.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10972 - type: CableApcExtension - components: - - pos: 24.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10973 - type: CableApcExtension - components: - - pos: 25.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10974 - type: CableApcExtension - components: - - pos: 26.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10975 - type: CableApcExtension - components: - - pos: 27.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10976 - type: CableApcExtension - components: - - pos: 28.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10977 - type: CableApcExtension - components: - - pos: 28.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10978 - type: CableApcExtension - components: - - pos: 29.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10979 - type: CableApcExtension - components: - - pos: 30.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10980 - type: CableApcExtension - components: - - pos: 31.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10981 - type: CableApcExtension - components: - - pos: 32.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10982 - type: CableApcExtension - components: - - pos: 33.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10983 - type: CableApcExtension - components: - - pos: 34.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10984 - type: CableApcExtension - components: - - pos: 34.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10985 - type: CableApcExtension - components: - - pos: 35.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10986 - type: CableApcExtension - components: - - pos: 36.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10987 - type: CableApcExtension - components: - - pos: 37.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10988 - type: CableApcExtension - components: - - pos: 38.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10989 - type: CableApcExtension - components: - - pos: 20.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10990 - type: CableApcExtension - components: - - pos: 19.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10991 - type: CableApcExtension - components: - - pos: 18.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10992 - type: CableApcExtension - components: - - pos: 17.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10993 - type: CableApcExtension - components: - - pos: 16.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10994 - type: CableApcExtension - components: - - pos: 15.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10995 - type: CableApcExtension - components: - - pos: 14.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10996 - type: CableApcExtension - components: - - pos: 13.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10997 - type: CableApcExtension - components: - - pos: 12.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10998 - type: CableApcExtension - components: - - pos: 11.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10999 - type: CableApcExtension - components: - - pos: 10.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11000 - type: CableApcExtension - components: - - pos: 41.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11001 - type: CableApcExtension - components: - - pos: 40.5,-44.5 - parent: 60 - type: Transform -- uid: 11002 - type: WindoorSecure - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-46.5 - parent: 60 - type: Transform -- uid: 11003 - type: CableApcExtension - components: - - pos: 42.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11004 - type: CableApcExtension - components: - - pos: 41.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11005 - type: CableApcExtension - components: - - pos: 43.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11006 - type: CableApcExtension - components: - - pos: 52.5,-37.5 - parent: 60 - type: Transform -- uid: 11007 - type: CableApcExtension - components: - - pos: 44.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11008 - type: CableApcExtension - components: - - pos: 53.5,-37.5 - parent: 60 - type: Transform -- uid: 11009 - type: CableApcExtension - components: - - pos: 54.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11010 - type: CableApcExtension - components: - - pos: 55.5,-37.5 - parent: 60 - type: Transform -- uid: 11011 - type: CableApcExtension - components: - - pos: 56.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11012 - type: GrilleBroken - components: - - pos: 47.5,-39.5 - parent: 60 - type: Transform -- uid: 11013 - type: CableApcExtension - components: - - pos: 57.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11014 - type: CableApcExtension - components: - - pos: 48.5,-35.5 - parent: 60 - type: Transform -- uid: 11015 - type: CableApcExtension - components: - - pos: 48.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11016 - type: CableApcExtension - components: - - pos: 48.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11017 - type: FirelockGlass - components: - - pos: 40.5,-41.5 - parent: 60 - type: Transform -- uid: 11018 - type: ClothingShoesCult - components: - - pos: -18.509321,17.291143 - parent: 60 - type: Transform -- uid: 11019 - type: CableHV - components: - - pos: 58.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11020 - type: CableApcExtension - components: - - pos: 44.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11021 - type: CableApcExtension - components: - - pos: 58.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11022 - type: CableApcExtension - components: - - pos: 58.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11023 - type: CableApcExtension - components: - - pos: 58.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11024 - type: CableApcExtension - components: - - pos: 58.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11025 - type: CableApcExtension - components: - - pos: 58.5,-35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11026 - type: CableApcExtension - components: - - pos: 58.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11027 - type: CableApcExtension - components: - - pos: 47.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11028 - type: CableApcExtension - components: - - pos: 49.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11029 - type: CableApcExtension - components: - - pos: 51.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11030 - type: CableApcExtension - components: - - pos: 53.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11031 - type: CableApcExtension - components: - - pos: 55.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11032 - type: CableApcExtension - components: - - pos: 58.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11033 - type: CableApcExtension - components: - - pos: 57.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11034 - type: Catwalk - components: - - pos: 58.5,-39.5 - parent: 60 - type: Transform -- uid: 11035 - type: Catwalk - components: - - pos: 56.5,-41.5 - parent: 60 - type: Transform -- uid: 11036 - type: Catwalk - components: - - pos: 54.5,-41.5 - parent: 60 - type: Transform -- uid: 11037 - type: Catwalk - components: - - pos: 52.5,-41.5 - parent: 60 - type: Transform -- uid: 11038 - type: CableApcExtension - components: - - pos: 44.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11039 - type: CableApcExtension - components: - - pos: 44.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11040 - type: CableApcExtension - components: - - pos: 44.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11041 - type: CableApcExtension - components: - - pos: 40.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11042 - type: CableApcExtension - components: - - pos: 39.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11043 - type: CableApcExtension - components: - - pos: 39.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11044 - type: CableApcExtension - components: - - pos: 39.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11045 - type: CableApcExtension - components: - - pos: 39.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11046 - type: CableApcExtension - components: - - pos: 39.5,-35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11047 - type: CableApcExtension - components: - - pos: 39.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11048 - type: CableApcExtension - components: - - pos: 39.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11049 - type: CableApcExtension - components: - - pos: 39.5,-32.5 - parent: 60 - type: Transform -- uid: 11050 - type: CableApcExtension - components: - - pos: 38.5,-36.5 - parent: 60 - type: Transform -- uid: 11051 - type: CableApcExtension - components: - - pos: 37.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11052 - type: CableApcExtension - components: - - pos: 37.5,-35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11053 - type: Sink - components: - - pos: 59.5,-44.5 - parent: 60 - type: Transform -- uid: 11054 - type: CableApcExtension - components: - - pos: -52.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11055 - type: CableApcExtension - components: - - pos: -52.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11056 - type: SubstationBasic - components: - - name: East Arrivals Substation - type: MetaData - - pos: 14.5,-49.5 - parent: 60 - type: Transform -- uid: 11057 - type: WallSolid - components: - - pos: 11.5,-48.5 - parent: 60 - type: Transform -- uid: 11058 - type: WallSolid - components: - - pos: 11.5,-50.5 - parent: 60 - type: Transform -- uid: 11059 - type: AirlockEngineeringLocked - components: - - pos: 11.5,-49.5 - parent: 60 - type: Transform -- uid: 11060 - type: PosterContrabandHighEffectEngineering - components: - - pos: 13.5,-47.5 - parent: 60 - type: Transform -- uid: 11061 - type: CableHV - components: - - pos: 14.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11062 - type: CableHV - components: - - pos: 13.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11063 - type: CableHV - components: - - pos: 12.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11064 - type: CableHV - components: - - pos: 11.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11065 - type: CableHV - components: - - pos: 10.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11066 - type: CableHV - components: - - pos: 9.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11067 - type: CableHV - components: - - pos: 9.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11068 - type: CableHV - components: - - pos: 9.5,-47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11069 - type: CableHV - components: - - pos: 9.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11070 - type: CableHV - components: - - pos: 9.5,-45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11071 - type: CableHV - components: - - pos: 9.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11072 - type: CableHV - components: - - pos: 9.5,-43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11073 - type: CableHV - components: - - pos: 9.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11074 - type: CableHV - components: - - pos: -11.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11075 - type: CableHV - components: - - pos: -11.5,-43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11076 - type: CableHV - components: - - pos: -11.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11077 - type: CableHV - components: - - pos: -11.5,-45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11078 - type: CableHV - components: - - pos: -11.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11079 - type: CableHV - components: - - pos: -12.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11080 - type: CableHV - components: - - pos: -13.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11081 - type: CableHV - components: - - pos: -14.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11082 - type: CableHV - components: - - pos: -14.5,-47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11083 - type: CableHV - components: - - pos: -14.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11084 - type: CableHV - components: - - pos: -13.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11085 - type: CableHV - components: - - pos: -12.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11086 - type: CableHV - components: - - pos: -11.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11087 - type: CableHV - components: - - pos: -10.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11088 - type: CableHV - components: - - pos: -9.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11089 - type: CableHV - components: - - pos: -8.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11090 - type: CableHV - components: - - pos: -7.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11091 - type: CableHV - components: - - pos: -6.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11092 - type: CableHV - components: - - pos: -6.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11093 - type: CableHV - components: - - pos: -6.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11094 - type: CableHV - components: - - pos: -6.5,-51.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11095 - type: CableHV - components: - - pos: -6.5,-52.5 - parent: 60 - type: Transform -- uid: 11096 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 46.5,-14.5 - parent: 60 - type: Transform -- uid: 11097 - type: TableWood - components: - - pos: 49.5,-17.5 - parent: 60 - type: Transform -- uid: 11098 - type: PlushieLizard - components: - - pos: 46.554035,-16.454565 - parent: 60 - type: Transform -- uid: 11099 - type: WindowReinforcedDirectional - components: - - pos: 46.5,-17.5 - parent: 60 - type: Transform -- uid: 11100 - type: FaxMachineBase - components: - - pos: 49.5,-18.5 - parent: 60 - type: Transform - - name: Medical - type: FaxMachine -- uid: 11101 - type: WindoorMedicalLocked - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-18.5 - parent: 60 - type: Transform -- uid: 11102 - type: WindoorMedicalLocked - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-17.5 - parent: 60 - type: Transform -- uid: 11103 - type: Bed - components: - - pos: 49.5,-13.5 - parent: 60 - type: Transform -- uid: 11104 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-14.5 - parent: 60 - type: Transform -- uid: 11105 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-15.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11106 - type: CableHV - components: - - pos: 0.5,-52.5 - parent: 60 - type: Transform -- uid: 11107 - type: CableHV - components: - - pos: 0.5,-51.5 - parent: 60 - type: Transform -- uid: 11108 - type: CableHV - components: - - pos: 0.5,-50.5 - parent: 60 - type: Transform -- uid: 11109 - type: CableHV - components: - - pos: 0.5,-49.5 - parent: 60 - type: Transform -- uid: 11110 - type: CableHV - components: - - pos: 1.5,-49.5 - parent: 60 - type: Transform -- uid: 11111 - type: CableHV - components: - - pos: 2.5,-49.5 - parent: 60 - type: Transform -- uid: 11112 - type: CableHV - components: - - pos: 3.5,-49.5 - parent: 60 - type: Transform -- uid: 11113 - type: CableHV - components: - - pos: 4.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11114 - type: CableHV - components: - - pos: 5.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11115 - type: CableHV - components: - - pos: 6.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11116 - type: CableHV - components: - - pos: 7.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11117 - type: CableHV - components: - - pos: 8.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11118 - type: CableMV - components: - - pos: 14.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11119 - type: CableMV - components: - - pos: 13.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11120 - type: CableMV - components: - - pos: 12.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11121 - type: CableMV - components: - - pos: 11.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11122 - type: CableMV - components: - - pos: 10.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11123 - type: CableMV - components: - - pos: 9.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11124 - type: CryoPod - components: - - pos: 48.5,-12.5 - parent: 60 - type: Transform -- uid: 11125 - type: WardrobeMedicalDoctorFilled - components: - - pos: 48.5,-20.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11126 - type: SpawnPointSalvageSpecialist - components: - - pos: 37.5,1.5 - parent: 60 - type: Transform -- uid: 11127 - type: BoxFolderWhite - components: - - pos: 49.50579,-17.589312 - parent: 60 - type: Transform -- uid: 11128 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-20.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11129 - type: filingCabinetTall - components: - - pos: 48.5,-16.5 - parent: 60 - type: Transform -- uid: 11130 - type: Poweredlight - components: - - pos: 49.5,-12.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11131 - type: FirelockGlass - components: - - pos: 43.5,2.5 - parent: 60 - type: Transform -- uid: 11132 - type: WallSolid - components: - - pos: 43.5,4.5 - parent: 60 - type: Transform -- uid: 11133 - type: Catwalk - components: - - pos: 6.5,-3.5 - parent: 60 - type: Transform -- uid: 11134 - type: ReinforcedGirder - components: - - pos: 9.5,-5.5 - parent: 60 - type: Transform -- uid: 11135 - type: Rack - components: - - pos: 6.5,-2.5 - parent: 60 - type: Transform -- uid: 11136 - type: CableMV - components: - - pos: 0.5,-52.5 - parent: 60 - type: Transform -- uid: 11137 - type: CableMV - components: - - pos: 0.5,-51.5 - parent: 60 - type: Transform -- uid: 11138 - type: CableMV - components: - - pos: 0.5,-50.5 - parent: 60 - type: Transform -- uid: 11139 - type: CableMV - components: - - pos: 0.5,-49.5 - parent: 60 - type: Transform -- uid: 11140 - type: CableMV - components: - - pos: 1.5,-49.5 - parent: 60 - type: Transform -- uid: 11141 - type: CableMV - components: - - pos: 2.5,-49.5 - parent: 60 - type: Transform -- uid: 11142 - type: CableMV - components: - - pos: 3.5,-49.5 - parent: 60 - type: Transform -- uid: 11143 - type: CableMV - components: - - pos: 4.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11144 - type: CableMV - components: - - pos: 5.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11145 - type: CableMV - components: - - pos: 6.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11146 - type: CableMV - components: - - pos: 7.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11147 - type: CableMV - components: - - pos: 8.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11148 - type: WallReinforced - components: - - pos: 52.5,19.5 - parent: 60 - type: Transform -- uid: 11149 - type: WallSolid - components: - - pos: 47.5,19.5 - parent: 60 - type: Transform -- uid: 11150 - type: ReinforcedWindow - components: - - pos: 49.5,19.5 - parent: 60 - type: Transform -- uid: 11151 - type: Table - components: - - pos: 50.5,19.5 - parent: 60 - type: Transform -- uid: 11152 - type: CableMV - components: - - pos: 46.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11153 - type: CableMV - components: - - pos: 45.5,3.5 - parent: 60 - type: Transform -- uid: 11154 - type: GasPipeBend - components: - - pos: -6.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11155 - type: CableMV - components: - - pos: 44.5,0.5 - parent: 60 - type: Transform -- uid: 11156 - type: CableMV - components: - - pos: 44.5,-0.5 - parent: 60 - type: Transform -- uid: 11157 - type: Catwalk - components: - - pos: 9.5,-43.5 - parent: 60 - type: Transform -- uid: 11158 - type: APCBasic - components: - - pos: 46.5,4.5 - parent: 60 - type: Transform -- uid: 11159 - type: CableMV - components: - - pos: 44.5,-2.5 - parent: 60 - type: Transform -- uid: 11160 - type: CableMV - components: - - pos: 44.5,-1.5 - parent: 60 - type: Transform -- uid: 11161 - type: CableMV - components: - - pos: 9.5,-21.5 - parent: 60 - type: Transform -- uid: 11162 - type: CableMV - components: - - pos: 9.5,-22.5 - parent: 60 - type: Transform -- uid: 11163 - type: CableApcExtension - components: - - pos: 14.5,-35.5 - parent: 60 - type: Transform -- uid: 11164 - type: CableMV - components: - - pos: 11.5,-27.5 - parent: 60 - type: Transform -- uid: 11165 - type: CableMV - components: - - pos: 12.5,-27.5 - parent: 60 - type: Transform -- uid: 11166 - type: CableMV - components: - - pos: 11.5,-28.5 - parent: 60 - type: Transform -- uid: 11167 - type: CableMV - components: - - pos: 13.5,-24.5 - parent: 60 - type: Transform -- uid: 11168 - type: CableMV - components: - - pos: 13.5,-23.5 - parent: 60 - type: Transform -- uid: 11169 - type: CableMV - components: - - pos: 12.5,-23.5 - parent: 60 - type: Transform -- uid: 11170 - type: CableMV - components: - - pos: 11.5,-23.5 - parent: 60 - type: Transform -- uid: 11171 - type: CableMV - components: - - pos: 9.5,-23.5 - parent: 60 - type: Transform -- uid: 11172 - type: CableMV - components: - - pos: 11.5,-30.5 - parent: 60 - type: Transform -- uid: 11173 - type: CableMV - components: - - pos: 11.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11174 - type: Catwalk - components: - - pos: 9.5,-45.5 - parent: 60 - type: Transform -- uid: 11175 - type: Catwalk - components: - - pos: 9.5,-46.5 - parent: 60 - type: Transform -- uid: 11176 - type: AirlockMaintBarLocked - components: - - name: Bar Maint - type: MetaData - - pos: 14.5,-38.5 - parent: 60 - type: Transform -- uid: 11177 - type: AirlockBarLocked - components: - - pos: 10.5,-33.5 - parent: 60 - type: Transform -- uid: 11178 - type: CableMV - components: - - pos: 12.5,-20.5 - parent: 60 - type: Transform -- uid: 11179 - type: CableMV - components: - - pos: 10.5,-20.5 - parent: 60 - type: Transform -- uid: 11180 - type: CableMV - components: - - pos: 13.5,-25.5 - parent: 60 - type: Transform -- uid: 11181 - type: CableMV - components: - - pos: 13.5,-26.5 - parent: 60 - type: Transform -- uid: 11182 - type: CableMV - components: - - pos: 13.5,-27.5 - parent: 60 - type: Transform -- uid: 11183 - type: CableApcExtension - components: - - pos: 11.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11184 - type: CableApcExtension - components: - - pos: 11.5,-28.5 - parent: 60 - type: Transform -- uid: 11185 - type: CableApcExtension - components: - - pos: 11.5,-27.5 - parent: 60 - type: Transform -- uid: 11186 - type: CableApcExtension - components: - - pos: 12.5,-27.5 - parent: 60 - type: Transform -- uid: 11187 - type: CableApcExtension - components: - - pos: 13.5,-27.5 - parent: 60 - type: Transform -- uid: 11188 - type: CableApcExtension - components: - - pos: 14.5,-27.5 - parent: 60 - type: Transform -- uid: 11189 - type: CableApcExtension - components: - - pos: 15.5,-27.5 - parent: 60 - type: Transform -- uid: 11190 - type: CableApcExtension - components: - - pos: 16.5,-27.5 - parent: 60 - type: Transform -- uid: 11191 - type: CableApcExtension - components: - - pos: 17.5,-27.5 - parent: 60 - type: Transform -- uid: 11192 - type: CableApcExtension - components: - - pos: 18.5,-27.5 - parent: 60 - type: Transform -- uid: 11193 - type: CableApcExtension - components: - - pos: 19.5,-27.5 - parent: 60 - type: Transform -- uid: 11194 - type: CableApcExtension - components: - - pos: 20.5,-27.5 - parent: 60 - type: Transform -- uid: 11195 - type: CableApcExtension - components: - - pos: 20.5,-28.5 - parent: 60 - type: Transform -- uid: 11196 - type: CableApcExtension - components: - - pos: 20.5,-29.5 - parent: 60 - type: Transform -- uid: 11197 - type: CableApcExtension - components: - - pos: 20.5,-30.5 - parent: 60 - type: Transform -- uid: 11198 - type: CableApcExtension - components: - - pos: 20.5,-31.5 - parent: 60 - type: Transform -- uid: 11199 - type: CableApcExtension - components: - - pos: 20.5,-32.5 - parent: 60 - type: Transform -- uid: 11200 - type: CableApcExtension - components: - - pos: 20.5,-33.5 - parent: 60 - type: Transform -- uid: 11201 - type: CableApcExtension - components: - - pos: 20.5,-34.5 - parent: 60 - type: Transform -- uid: 11202 - type: CableApcExtension - components: - - pos: 20.5,-35.5 - parent: 60 - type: Transform -- uid: 11203 - type: CableApcExtension - components: - - pos: 20.5,-36.5 - parent: 60 - type: Transform -- uid: 11204 - type: CableApcExtension - components: - - pos: 11.5,-30.5 - parent: 60 - type: Transform -- uid: 11205 - type: CableApcExtension - components: - - pos: 11.5,-30.5 - parent: 60 - type: Transform -- uid: 11206 - type: CableApcExtension - components: - - pos: 11.5,-31.5 - parent: 60 - type: Transform -- uid: 11207 - type: CableApcExtension - components: - - pos: 12.5,-31.5 - parent: 60 - type: Transform -- uid: 11208 - type: CableApcExtension - components: - - pos: 13.5,-31.5 - parent: 60 - type: Transform -- uid: 11209 - type: CableApcExtension - components: - - pos: 14.5,-31.5 - parent: 60 - type: Transform -- uid: 11210 - type: CableApcExtension - components: - - pos: 14.5,-32.5 - parent: 60 - type: Transform -- uid: 11211 - type: CableApcExtension - components: - - pos: 14.5,-33.5 - parent: 60 - type: Transform -- uid: 11212 - type: CableApcExtension - components: - - pos: 14.5,-34.5 - parent: 60 - type: Transform -- uid: 11213 - type: CableMV - components: - - pos: 10.5,-23.5 - parent: 60 - type: Transform -- uid: 11214 - type: CableApcExtension - components: - - pos: 14.5,-36.5 - parent: 60 - type: Transform -- uid: 11215 - type: CableApcExtension - components: - - pos: 14.5,-37.5 - parent: 60 - type: Transform -- uid: 11216 - type: CableApcExtension - components: - - pos: 14.5,-38.5 - parent: 60 - type: Transform -- uid: 11217 - type: CableApcExtension - components: - - pos: 14.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11218 - type: CableApcExtension - components: - - pos: 10.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11219 - type: CableApcExtension - components: - - pos: 10.5,-38.5 - parent: 60 - type: Transform -- uid: 11220 - type: CableApcExtension - components: - - pos: 10.5,-37.5 - parent: 60 - type: Transform -- uid: 11221 - type: CableApcExtension - components: - - pos: 10.5,-36.5 - parent: 60 - type: Transform -- uid: 11222 - type: CableApcExtension - components: - - pos: 10.5,-35.5 - parent: 60 - type: Transform -- uid: 11223 - type: CableApcExtension - components: - - pos: 10.5,-34.5 - parent: 60 - type: Transform -- uid: 11224 - type: CableApcExtension - components: - - pos: 10.5,-33.5 - parent: 60 - type: Transform -- uid: 11225 - type: CableApcExtension - components: - - pos: 10.5,-32.5 - parent: 60 - type: Transform -- uid: 11226 - type: CableApcExtension - components: - - pos: 10.5,-31.5 - parent: 60 - type: Transform -- uid: 11227 - type: CableApcExtension - components: - - pos: 16.5,-28.5 - parent: 60 - type: Transform -- uid: 11228 - type: CableApcExtension - components: - - pos: 16.5,-29.5 - parent: 60 - type: Transform -- uid: 11229 - type: CableApcExtension - components: - - pos: 16.5,-30.5 - parent: 60 - type: Transform -- uid: 11230 - type: CableApcExtension - components: - - pos: 16.5,-31.5 - parent: 60 - type: Transform -- uid: 11231 - type: CableApcExtension - components: - - pos: 16.5,-32.5 - parent: 60 - type: Transform -- uid: 11232 - type: CableApcExtension - components: - - pos: 16.5,-33.5 - parent: 60 - type: Transform -- uid: 11233 - type: CableApcExtension - components: - - pos: 16.5,-34.5 - parent: 60 - type: Transform -- uid: 11234 - type: CableApcExtension - components: - - pos: 16.5,-35.5 - parent: 60 - type: Transform -- uid: 11235 - type: CableApcExtension - components: - - pos: 16.5,-36.5 - parent: 60 - type: Transform -- uid: 11236 - type: CableApcExtension - components: - - pos: 20.5,-37.5 - parent: 60 - type: Transform -- uid: 11237 - type: CableApcExtension - components: - - pos: 18.5,-37.5 - parent: 60 - type: Transform -- uid: 11238 - type: CableApcExtension - components: - - pos: 17.5,-37.5 - parent: 60 - type: Transform -- uid: 11239 - type: CableApcExtension - components: - - pos: 16.5,-37.5 - parent: 60 - type: Transform -- uid: 11240 - type: WallSolid - components: - - pos: 28.5,-36.5 - parent: 60 - type: Transform -- uid: 11241 - type: CableMV - components: - - pos: 29.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11242 - type: CableMV - components: - - pos: 29.5,-39.5 - parent: 60 - type: Transform -- uid: 11243 - type: CableMV - components: - - pos: 29.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11244 - type: CableMV - components: - - pos: 30.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11245 - type: CableMV - components: - - pos: 31.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11246 - type: CableMV - components: - - pos: 32.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11247 - type: CableMV - components: - - pos: 33.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11248 - type: CableMV - components: - - pos: 34.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11249 - type: CableMV - components: - - pos: 35.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11250 - type: CableMV - components: - - pos: 36.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11251 - type: CableMV - components: - - pos: 37.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11252 - type: CableMV - components: - - pos: 38.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11253 - type: CableApcExtension - components: - - pos: 29.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11254 - type: CableApcExtension - components: - - pos: 29.5,-37.5 - parent: 60 - type: Transform -- uid: 11255 - type: CableApcExtension - components: - - pos: 29.5,-36.5 - parent: 60 - type: Transform -- uid: 11256 - type: CableApcExtension - components: - - pos: 30.5,-36.5 - parent: 60 - type: Transform -- uid: 11257 - type: CableApcExtension - components: - - pos: 31.5,-36.5 - parent: 60 - type: Transform -- uid: 11258 - type: CableApcExtension - components: - - pos: 32.5,-36.5 - parent: 60 - type: Transform -- uid: 11259 - type: CableApcExtension - components: - - pos: 33.5,-36.5 - parent: 60 - type: Transform -- uid: 11260 - type: CableApcExtension - components: - - pos: 34.5,-36.5 - parent: 60 - type: Transform -- uid: 11261 - type: CableApcExtension - components: - - pos: 34.5,-35.5 - parent: 60 - type: Transform -- uid: 11262 - type: CableApcExtension - components: - - pos: 34.5,-34.5 - parent: 60 - type: Transform -- uid: 11263 - type: CableApcExtension - components: - - pos: 34.5,-33.5 - parent: 60 - type: Transform -- uid: 11264 - type: CableApcExtension - components: - - pos: 34.5,-32.5 - parent: 60 - type: Transform -- uid: 11265 - type: CableApcExtension - components: - - pos: 34.5,-31.5 - parent: 60 - type: Transform -- uid: 11266 - type: CableApcExtension - components: - - pos: 34.5,-30.5 - parent: 60 - type: Transform -- uid: 11267 - type: CableApcExtension - components: - - pos: 34.5,-29.5 - parent: 60 - type: Transform -- uid: 11268 - type: CableApcExtension - components: - - pos: 34.5,-28.5 - parent: 60 - type: Transform -- uid: 11269 - type: CableApcExtension - components: - - pos: 34.5,-27.5 - parent: 60 - type: Transform -- uid: 11270 - type: CableApcExtension - components: - - pos: 33.5,-27.5 - parent: 60 - type: Transform -- uid: 11271 - type: CableApcExtension - components: - - pos: 32.5,-27.5 - parent: 60 - type: Transform -- uid: 11272 - type: CableApcExtension - components: - - pos: 31.5,-27.5 - parent: 60 - type: Transform -- uid: 11273 - type: CableApcExtension - components: - - pos: 30.5,-27.5 - parent: 60 - type: Transform -- uid: 11274 - type: CableApcExtension - components: - - pos: 29.5,-27.5 - parent: 60 - type: Transform -- uid: 11275 - type: CableApcExtension - components: - - pos: 29.5,-28.5 - parent: 60 - type: Transform -- uid: 11276 - type: CableApcExtension - components: - - pos: 29.5,-29.5 - parent: 60 - type: Transform -- uid: 11277 - type: CableApcExtension - components: - - pos: 29.5,-30.5 - parent: 60 - type: Transform -- uid: 11278 - type: CableApcExtension - components: - - pos: 29.5,-31.5 - parent: 60 - type: Transform -- uid: 11279 - type: CableApcExtension - components: - - pos: 29.5,-32.5 - parent: 60 - type: Transform -- uid: 11280 - type: CableApcExtension - components: - - pos: 29.5,-33.5 - parent: 60 - type: Transform -- uid: 11281 - type: CableApcExtension - components: - - pos: 29.5,-34.5 - parent: 60 - type: Transform -- uid: 11282 - type: CableApcExtension - components: - - pos: 29.5,-35.5 - parent: 60 - type: Transform -- uid: 11283 - type: CableMV - components: - - pos: 28.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11284 - type: CableMV - components: - - pos: 27.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11285 - type: CableApcExtension - components: - - pos: 26.5,-36.5 - parent: 60 - type: Transform -- uid: 11286 - type: CableApcExtension - components: - - pos: 25.5,-36.5 - parent: 60 - type: Transform -- uid: 11287 - type: CableApcExtension - components: - - pos: 24.5,-36.5 - parent: 60 - type: Transform -- uid: 11288 - type: CableApcExtension - components: - - pos: 24.5,-35.5 - parent: 60 - type: Transform -- uid: 11289 - type: CableApcExtension - components: - - pos: 24.5,-34.5 - parent: 60 - type: Transform -- uid: 11290 - type: CableApcExtension - components: - - pos: 24.5,-33.5 - parent: 60 - type: Transform -- uid: 11291 - type: CableApcExtension - components: - - pos: 24.5,-32.5 - parent: 60 - type: Transform -- uid: 11292 - type: CableApcExtension - components: - - pos: 24.5,-31.5 - parent: 60 - type: Transform -- uid: 11293 - type: CableApcExtension - components: - - pos: 23.5,-31.5 - parent: 60 - type: Transform -- uid: 11294 - type: CableApcExtension - components: - - pos: 23.5,-30.5 - parent: 60 - type: Transform -- uid: 11295 - type: CableApcExtension - components: - - pos: 23.5,-29.5 - parent: 60 - type: Transform -- uid: 11296 - type: CableApcExtension - components: - - pos: 23.5,-28.5 - parent: 60 - type: Transform -- uid: 11297 - type: CableApcExtension - components: - - pos: 23.5,-27.5 - parent: 60 - type: Transform -- uid: 11298 - type: CableApcExtension - components: - - pos: 24.5,-27.5 - parent: 60 - type: Transform -- uid: 11299 - type: CableApcExtension - components: - - pos: 25.5,-27.5 - parent: 60 - type: Transform -- uid: 11300 - type: CableApcExtension - components: - - pos: 26.5,-27.5 - parent: 60 - type: Transform -- uid: 11301 - type: CableApcExtension - components: - - pos: 25.5,-26.5 - parent: 60 - type: Transform -- uid: 11302 - type: CableApcExtension - components: - - pos: 25.5,-32.5 - parent: 60 - type: Transform -- uid: 11303 - type: CableMV - components: - - pos: 26.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11304 - type: CableApcExtension - components: - - pos: 24.5,-37.5 - parent: 60 - type: Transform -- uid: 11305 - type: CableMV - components: - - pos: 26.5,-39.5 - parent: 60 - type: Transform -- uid: 11306 - type: CableHV - components: - - pos: -56.5,13.5 - parent: 60 - type: Transform -- uid: 11307 - type: Catwalk - components: - - pos: 13.5,-41.5 - parent: 60 - type: Transform -- uid: 11308 - type: Catwalk - components: - - pos: 14.5,-41.5 - parent: 60 - type: Transform -- uid: 11309 - type: Catwalk - components: - - pos: 15.5,-41.5 - parent: 60 - type: Transform -- uid: 11310 - type: Catwalk - components: - - pos: 16.5,-41.5 - parent: 60 - type: Transform -- uid: 11311 - type: Catwalk - components: - - pos: 17.5,-41.5 - parent: 60 - type: Transform -- uid: 11312 - type: Catwalk - components: - - pos: 18.5,-41.5 - parent: 60 - type: Transform -- uid: 11313 - type: Catwalk - components: - - pos: 19.5,-41.5 - parent: 60 - type: Transform -- uid: 11314 - type: Catwalk - components: - - pos: 8.5,-41.5 - parent: 60 - type: Transform -- uid: 11315 - type: Catwalk - components: - - pos: 21.5,-41.5 - parent: 60 - type: Transform -- uid: 11316 - type: Catwalk - components: - - pos: 22.5,-41.5 - parent: 60 - type: Transform -- uid: 11317 - type: Catwalk - components: - - pos: 23.5,-41.5 - parent: 60 - type: Transform -- uid: 11318 - type: Catwalk - components: - - pos: 24.5,-41.5 - parent: 60 - type: Transform -- uid: 11319 - type: Catwalk - components: - - pos: 25.5,-41.5 - parent: 60 - type: Transform -- uid: 11320 - type: Catwalk - components: - - pos: 26.5,-41.5 - parent: 60 - type: Transform -- uid: 11321 - type: Catwalk - components: - - pos: 27.5,-41.5 - parent: 60 - type: Transform -- uid: 11322 - type: Catwalk - components: - - pos: 35.5,-41.5 - parent: 60 - type: Transform -- uid: 11323 - type: Catwalk - components: - - pos: 36.5,-41.5 - parent: 60 - type: Transform -- uid: 11324 - type: Catwalk - components: - - pos: 37.5,-41.5 - parent: 60 - type: Transform -- uid: 11325 - type: Catwalk - components: - - pos: 38.5,-41.5 - parent: 60 - type: Transform -- uid: 11326 - type: Catwalk - components: - - pos: 39.5,-41.5 - parent: 60 - type: Transform -- uid: 11327 - type: Catwalk - components: - - pos: 50.5,-41.5 - parent: 60 - type: Transform -- uid: 11328 - type: Catwalk - components: - - pos: 47.5,-41.5 - parent: 60 - type: Transform -- uid: 11329 - type: RandomPosterAny - components: - - pos: -32.5,-29.5 - parent: 60 - type: Transform -- uid: 11330 - type: RandomPosterAny - components: - - pos: -17.5,-32.5 - parent: 60 - type: Transform -- uid: 11331 - type: RandomPosterAny - components: - - pos: 26.5,-49.5 - parent: 60 - type: Transform -- uid: 11332 - type: RandomPosterAny - components: - - pos: 38.5,-49.5 - parent: 60 - type: Transform -- uid: 11333 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-38.5 - parent: 60 - type: Transform -- uid: 11334 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: 4.4996057,8.283937 - parent: 60 - type: Transform -- uid: 11335 - type: SignDirectionalMed - components: - - pos: 14.504288,-0.92285264 - parent: 60 - type: Transform -- uid: 11336 - type: PosterMapBagel - components: - - pos: -23.5,-21.5 - parent: 60 - type: Transform -- uid: 11337 - type: PosterMapBagel - components: - - pos: 4.5,-21.5 - parent: 60 - type: Transform -- uid: 11338 - type: FirelockGlass - components: - - pos: -16.5,-17.5 - parent: 60 - type: Transform -- uid: 11339 - type: FirelockGlass - components: - - pos: -15.5,-17.5 - parent: 60 - type: Transform -- uid: 11340 - type: FirelockGlass - components: - - pos: -14.5,-17.5 - parent: 60 - type: Transform -- uid: 11341 - type: Grille - components: - - pos: 29.5,-79.5 - parent: 60 - type: Transform -- uid: 11342 - type: SolarPanel - components: - - pos: 28.5,-64.5 - parent: 60 - type: Transform -- uid: 11343 - type: SpawnPointScientist - components: - - pos: -55.5,9.5 - parent: 60 - type: Transform -- uid: 11344 - type: SpawnPointScientist - components: - - pos: -55.5,10.5 - parent: 60 - type: Transform -- uid: 11345 - type: SpawnPointScientist - components: - - pos: -55.5,11.5 - parent: 60 - type: Transform -- uid: 11346 - type: SpawnPointScientist - components: - - pos: -55.5,12.5 - parent: 60 - type: Transform -- uid: 11347 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -39.5,6.5 - parent: 60 - type: Transform - - devices: - - 780 - - 7721 - - 1017 - - 21614 - - 491 - - 8774 - - 8957 - type: DeviceList -- uid: 11348 - type: CableHV - components: - - pos: -49.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11349 - type: CableHV - components: - - pos: -48.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11350 - type: CableHV - components: - - pos: -47.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11351 - type: CableHV - components: - - pos: -46.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11352 - type: CableHV - components: - - pos: -45.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11353 - type: CableHV - components: - - pos: -44.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11354 - type: CableHV - components: - - pos: -43.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11355 - type: CableHV - components: - - pos: -42.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11356 - type: CableHV - components: - - pos: -41.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11357 - type: CableHV - components: - - pos: -40.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11358 - type: CableHV - components: - - pos: -39.5,-12.5 - parent: 60 - type: Transform -- uid: 11359 - type: CableHV - components: - - pos: -38.5,-12.5 - parent: 60 - type: Transform -- uid: 11360 - type: CableHV - components: - - pos: -37.5,-12.5 - parent: 60 - type: Transform -- uid: 11361 - type: CableHV - components: - - pos: -37.5,-11.5 - parent: 60 - type: Transform -- uid: 11362 - type: CableHV - components: - - pos: -37.5,-10.5 - parent: 60 - type: Transform -- uid: 11363 - type: CableHV - components: - - pos: -37.5,-9.5 - parent: 60 - type: Transform -- uid: 11364 - type: CableHV - components: - - pos: -37.5,-8.5 - parent: 60 - type: Transform -- uid: 11365 - type: CableHV - components: - - pos: -37.5,-7.5 - parent: 60 - type: Transform -- uid: 11366 - type: CableHV - components: - - pos: -37.5,-6.5 - parent: 60 - type: Transform -- uid: 11367 - type: CableHV - components: - - pos: -37.5,-5.5 - parent: 60 - type: Transform -- uid: 11368 - type: CableHV - components: - - pos: -37.5,-4.5 - parent: 60 - type: Transform -- uid: 11369 - type: CableHV - components: - - pos: -37.5,-3.5 - parent: 60 - type: Transform -- uid: 11370 - type: CableHV - components: - - pos: -37.5,-2.5 - parent: 60 - type: Transform -- uid: 11371 - type: CableHV - components: - - pos: -37.5,-1.5 - parent: 60 - type: Transform -- uid: 11372 - type: CableHV - components: - - pos: -37.5,-0.5 - parent: 60 - type: Transform -- uid: 11373 - type: CableHV - components: - - pos: -37.5,0.5 - parent: 60 - type: Transform -- uid: 11374 - type: CableHV - components: - - pos: -37.5,1.5 - parent: 60 - type: Transform -- uid: 11375 - type: CableHV - components: - - pos: -37.5,2.5 - parent: 60 - type: Transform -- uid: 11376 - type: CableHV - components: - - pos: -37.5,3.5 - parent: 60 - type: Transform -- uid: 11377 - type: CableHV - components: - - pos: -37.5,4.5 - parent: 60 - type: Transform -- uid: 11378 - type: Grille - components: - - pos: -71.5,29.5 - parent: 60 - type: Transform -- uid: 11379 - type: Grille - components: - - pos: -62.5,29.5 - parent: 60 - type: Transform -- uid: 11380 - type: CableApcExtension - components: - - pos: -10.5,-3.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11381 - type: CableApcExtension - components: - - pos: -10.5,-1.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11382 - type: CableHV - components: - - pos: -33.5,5.5 - parent: 60 - type: Transform -- uid: 11383 - type: CableHV - components: - - pos: -32.5,5.5 - parent: 60 - type: Transform -- uid: 11384 - type: CableHV - components: - - pos: -31.5,5.5 - parent: 60 - type: Transform -- uid: 11385 - type: CableHV - components: - - pos: -30.5,5.5 - parent: 60 - type: Transform -- uid: 11386 - type: CableHV - components: - - pos: -30.5,4.5 - parent: 60 - type: Transform -- uid: 11387 - type: Catwalk - components: - - pos: -50.5,-12.5 - parent: 60 - type: Transform -- uid: 11388 - type: Catwalk - components: - - pos: -49.5,-12.5 - parent: 60 - type: Transform -- uid: 11389 - type: Catwalk - components: - - pos: -48.5,-12.5 - parent: 60 - type: Transform -- uid: 11390 - type: Catwalk - components: - - pos: -47.5,-12.5 - parent: 60 - type: Transform -- uid: 11391 - type: Catwalk - components: - - pos: -46.5,-12.5 - parent: 60 - type: Transform -- uid: 11392 - type: Catwalk - components: - - pos: -45.5,-12.5 - parent: 60 - type: Transform -- uid: 11393 - type: Catwalk - components: - - pos: -44.5,-12.5 - parent: 60 - type: Transform -- uid: 11394 - type: Catwalk - components: - - pos: -43.5,-12.5 - parent: 60 - type: Transform -- uid: 11395 - type: Catwalk - components: - - pos: -42.5,-12.5 - parent: 60 - type: Transform -- uid: 11396 - type: Catwalk - components: - - pos: -41.5,-12.5 - parent: 60 - type: Transform -- uid: 11397 - type: Catwalk - components: - - pos: -40.5,-12.5 - parent: 60 - type: Transform -- uid: 11398 - type: CableApcExtension - components: - - pos: -52.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11399 - type: Catwalk - components: - - pos: -52.5,-19.5 - parent: 60 - type: Transform -- uid: 11400 - type: CableApcExtension - components: - - pos: -52.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11401 - type: SolarPanel - components: - - pos: 29.5,-70.5 - parent: 60 - type: Transform -- uid: 11402 - type: Grille - components: - - pos: 51.5,31.5 - parent: 60 - type: Transform -- uid: 11403 - type: filingCabinetDrawerRandom - components: - - pos: -53.5,11.5 - parent: 60 - type: Transform -- uid: 11404 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -54.5,9.5 - parent: 60 - type: Transform -- uid: 11405 - type: Catwalk - components: - - pos: -5.5,-41.5 - parent: 60 - type: Transform -- uid: 11406 - type: Catwalk - components: - - pos: -4.5,-41.5 - parent: 60 - type: Transform -- uid: 11407 - type: Catwalk - components: - - pos: -3.5,-41.5 - parent: 60 - type: Transform -- uid: 11408 - type: Catwalk - components: - - pos: -2.5,-41.5 - parent: 60 - type: Transform -- uid: 11409 - type: Catwalk - components: - - pos: -11.5,-42.5 - parent: 60 - type: Transform -- uid: 11410 - type: Catwalk - components: - - pos: -11.5,-43.5 - parent: 60 - type: Transform -- uid: 11411 - type: Catwalk - components: - - pos: -11.5,-44.5 - parent: 60 - type: Transform -- uid: 11412 - type: Catwalk - components: - - pos: -11.5,-45.5 - parent: 60 - type: Transform -- uid: 11413 - type: Grille - components: - - pos: 26.5,-3.5 - parent: 60 - type: Transform -- uid: 11414 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 14.495508,6.7201853 - parent: 60 - type: Transform -- uid: 11415 - type: Catwalk - components: - - pos: -13.5,-48.5 - parent: 60 - type: Transform -- uid: 11416 - type: Catwalk - components: - - pos: -12.5,-48.5 - parent: 60 - type: Transform -- uid: 11417 - type: Catwalk - components: - - pos: -11.5,-48.5 - parent: 60 - type: Transform -- uid: 11418 - type: Catwalk - components: - - pos: -10.5,-48.5 - parent: 60 - type: Transform -- uid: 11419 - type: Catwalk - components: - - pos: -9.5,-48.5 - parent: 60 - type: Transform -- uid: 11420 - type: Catwalk - components: - - pos: -8.5,-48.5 - parent: 60 - type: Transform -- uid: 11421 - type: Catwalk - components: - - pos: -7.5,-48.5 - parent: 60 - type: Transform -- uid: 11422 - type: SignDirectionalSec - components: - - rot: -1.5707963267948966 rad - pos: -3.498599,8.300059 - parent: 60 - type: Transform -- uid: 11423 - type: Catwalk - components: - - pos: -6.5,-49.5 - parent: 60 - type: Transform -- uid: 11424 - type: Catwalk - components: - - pos: -6.5,-50.5 - parent: 60 - type: Transform -- uid: 11425 - type: Catwalk - components: - - pos: -6.5,-51.5 - parent: 60 - type: Transform -- uid: 11426 - type: Catwalk - components: - - pos: -12.5,-46.5 - parent: 60 - type: Transform -- uid: 11427 - type: Catwalk - components: - - pos: -13.5,-46.5 - parent: 60 - type: Transform -- uid: 11428 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: 14.5,6.5 - parent: 60 - type: Transform -- uid: 11429 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: 4.4996057,8.737062 - parent: 60 - type: Transform -- uid: 11430 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 14.50723,-21.719927 - parent: 60 - type: Transform -- uid: 11431 - type: WallSolid - components: - - pos: 33.5,6.5 - parent: 60 - type: Transform -- uid: 11432 - type: Catwalk - components: - - pos: 10.5,-15.5 - parent: 60 - type: Transform -- uid: 11433 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: 3.4964921,-21.711515 - parent: 60 - type: Transform -- uid: 11434 - type: SignDirectionalSec - components: - - rot: -1.5707963267948966 rad - pos: 13.492249,-21.69589 - parent: 60 - type: Transform -- uid: 11435 - type: WallSolid - components: - - pos: 34.5,6.5 - parent: 60 - type: Transform -- uid: 11436 - type: SignDirectionalChapel - components: - - rot: -1.5707963267948966 rad - pos: -2.500059,-21.285631 - parent: 60 - type: Transform -- uid: 11437 - type: SignDirectionalEng - components: - - rot: 3.141592653589793 rad - pos: -13.495151,-21.092422 - parent: 60 - type: Transform -- uid: 11438 - type: ReinforcedWindow - components: - - pos: -4.5,1.5 - parent: 60 - type: Transform -- uid: 11439 - type: SignDirectionalSolar - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-22.5 - parent: 60 - type: Transform -- uid: 11440 - type: WallSolid - components: - - pos: 35.5,6.5 - parent: 60 - type: Transform -- uid: 11441 - type: SignDirectionalSupply - components: - - rot: 1.5707963267948966 rad - pos: 18.5,10.5 - parent: 60 - type: Transform -- uid: 11442 - type: SignDirectionalSolar - components: - - pos: 24.5,-42.5 - parent: 60 - type: Transform -- uid: 11443 - type: SignDirectionalSolar - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-49.5 - parent: 60 - type: Transform -- uid: 11444 - type: SignDirectionalSolar - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-49.5 - parent: 60 - type: Transform -- uid: 11445 - type: SignDirectionalSolar - components: - - pos: 40.5,-42.5 - parent: 60 - type: Transform -- uid: 11446 - type: SignDirectionalWash - components: - - rot: 3.141592653589793 rad - pos: 14.50723,-21.094927 - parent: 60 - type: Transform -- uid: 11447 - type: AirlockGlass - components: - - pos: 18.5,8.5 - parent: 60 - type: Transform -- uid: 11448 - type: SignDirectionalWash - components: - - rot: 1.5707963267948966 rad - pos: 14.5,16.5 - parent: 60 - type: Transform -- uid: 11449 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 14.502121,16.716671 - parent: 60 - type: Transform -- uid: 11450 - type: SignDirectionalSupply - components: - - pos: 14.502121,16.279171 - parent: 60 - type: Transform -- uid: 11451 - type: CableHV - components: - - pos: -55.5,13.5 - parent: 60 - type: Transform -- uid: 11452 - type: CableHV - components: - - pos: -54.5,13.5 - parent: 60 - type: Transform -- uid: 11453 - type: CableHV - components: - - pos: -53.5,13.5 - parent: 60 - type: Transform -- uid: 11454 - type: CableHV - components: - - pos: -53.5,12.5 - parent: 60 - type: Transform -- uid: 11455 - type: CableHV - components: - - pos: -52.5,12.5 - parent: 60 - type: Transform -- uid: 11456 - type: BedsheetHOS - components: - - pos: -19.5,0.5 - parent: 60 - type: Transform -- uid: 11457 - type: CableHV - components: - - pos: -51.5,12.5 - parent: 60 - type: Transform -- uid: 11458 - type: CableHV - components: - - pos: -50.5,12.5 - parent: 60 - type: Transform -- uid: 11459 - type: CableHV - components: - - pos: -49.5,12.5 - parent: 60 - type: Transform -- uid: 11460 - type: CableHV - components: - - pos: -48.5,12.5 - parent: 60 - type: Transform -- uid: 11461 - type: CableHV - components: - - pos: -47.5,12.5 - parent: 60 - type: Transform -- uid: 11462 - type: CableHV - components: - - pos: -46.5,12.5 - parent: 60 - type: Transform -- uid: 11463 - type: CableHV - components: - - pos: -45.5,12.5 - parent: 60 - type: Transform -- uid: 11464 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -45.5,10.5 - parent: 60 - type: Transform - - devices: - - 21628 - - invalid - - 9631 - - 9651 - type: DeviceList -- uid: 11465 - type: AirlockMaintRnDLocked - components: - - name: Science - type: MetaData - - pos: -44.5,17.5 - parent: 60 - type: Transform -- uid: 11466 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 37.5,0.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 11467 - type: CableMV - components: - - pos: -47.5,11.5 - parent: 60 - type: Transform -- uid: 11468 - type: ReinforcedWindow - components: - - pos: -49.5,15.5 - parent: 60 - type: Transform -- uid: 11469 - type: Rack - components: - - pos: -45.5,11.5 - parent: 60 - type: Transform -- uid: 11470 - type: CableMV - components: - - pos: 50.5,-32.5 - parent: 60 - type: Transform -- uid: 11471 - type: ShuttersWindow - components: - - pos: -51.5,26.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11511 - - port: Pressed - uid: 11516 - type: SignalReceiver -- uid: 11472 - type: FaxMachineBase - components: - - pos: -53.5,9.5 - parent: 60 - type: Transform - - name: Science - type: FaxMachine -- uid: 11473 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: -54.5,-0.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Anomaly Lab - type: SurveillanceCamera -- uid: 11474 - type: DisposalUnit - components: - - pos: -73.5,18.5 - parent: 60 - type: Transform -- uid: 11475 - type: CableApcExtension - components: - - pos: -50.5,14.5 - parent: 60 - type: Transform -- uid: 11476 - type: SpawnPointClown - components: - - pos: 20.5,-12.5 - parent: 60 - type: Transform -- uid: 11477 - type: SpawnPointMime - components: - - pos: 26.5,-11.5 - parent: 60 - type: Transform -- uid: 11478 - type: SpawnPointMusician - components: - - pos: 23.5,-12.5 - parent: 60 - type: Transform -- uid: 11479 - type: CrateEngineeringCableHV - components: - - pos: -11.5,-31.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 11480 - type: Chair - components: - - pos: -8.5,-31.5 - parent: 60 - type: Transform -- uid: 11481 - type: Chair - components: - - pos: -6.5,-31.5 - parent: 60 - type: Transform -- uid: 11482 - type: Table - components: - - pos: -9.5,-31.5 - parent: 60 - type: Transform -- uid: 11483 - type: ClothingNeckScarfStripedGreen - components: - - pos: -9.531382,-31.542116 - parent: 60 - type: Transform -- uid: 11484 - type: ClosetBase - components: - - pos: -2.5,-31.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11485 - type: ClosetBase - components: - - pos: -3.5,-31.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11486 - type: Rack - components: - - pos: -4.5,-31.5 - parent: 60 - type: Transform -- uid: 11487 - type: RandomSpawner - components: - - pos: -4.5,-30.5 - parent: 60 - type: Transform -- uid: 11488 - type: PoweredSmallLight - components: - - pos: -21.5,5.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11489 - type: SubstationBasic - components: - - name: West Arrivals Substation - type: MetaData - - pos: -3.5,-50.5 - parent: 60 - type: Transform -- uid: 11490 - type: WallSolid - components: - - pos: -5.5,-51.5 - parent: 60 - type: Transform -- uid: 11491 - type: AirlockEngineeringLocked - components: - - pos: -5.5,-49.5 - parent: 60 - type: Transform -- uid: 11492 - type: WallSolid - components: - - pos: -5.5,-48.5 - parent: 60 - type: Transform -- uid: 11493 - type: WallSolid - components: - - pos: -5.5,-50.5 - parent: 60 - type: Transform -- uid: 11494 - type: SignElectricalMed - components: - - pos: -5.5,-48.5 - parent: 60 - type: Transform -- uid: 11495 - type: SignElectricalMed - components: - - pos: 11.5,-48.5 - parent: 60 - type: Transform -- uid: 11496 - type: CableHV - components: - - pos: -3.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11497 - type: CableHV - components: - - pos: -4.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11498 - type: CableHV - components: - - pos: -4.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11499 - type: CableHV - components: - - pos: -5.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11500 - type: CableApcExtension - components: - - pos: -12.5,-4.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11501 - type: CableApcExtension - components: - - pos: -12.5,-5.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11502 - type: CableApcExtension - components: - - pos: -13.5,-5.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11503 - type: CableApcExtension - components: - - pos: -14.5,-5.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11504 - type: CableApcExtension - components: - - pos: -14.5,-4.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11505 - type: CableApcExtension - components: - - pos: -15.5,-4.5 - parent: 7536 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11506 - type: WallSolid - components: - - pos: -55.5,26.5 - parent: 60 - type: Transform -- uid: 11507 - type: Grille - components: - - pos: -6.5,3.5 - parent: 60 - type: Transform -- uid: 11508 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-20.5 - parent: 60 - type: Transform -- uid: 11509 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-19.5 - parent: 60 - type: Transform -- uid: 11510 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -46.5,27.5 - parent: 60 - type: Transform -- uid: 11511 - type: SignalButton - components: - - pos: -52.5,28.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11583 - - port: Toggle - uid: 11582 - - port: Toggle - uid: 11568 - - port: Toggle - uid: 11574 - - port: Toggle - uid: 11471 - - port: Toggle - uid: 11575 - type: SignalTransmitter -- uid: 11512 - type: CableApcExtension - components: - - pos: 0.5,-52.5 - parent: 60 - type: Transform -- uid: 11513 - type: CableApcExtension - components: - - pos: 0.5,-51.5 - parent: 60 - type: Transform -- uid: 11514 - type: CableApcExtension - components: - - pos: 0.5,-50.5 - parent: 60 - type: Transform -- uid: 11515 - type: CableHV - components: - - pos: -58.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11516 - type: SignalButton - components: - - pos: -48.5,28.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11574 - - port: Toggle - uid: 11583 - - port: Toggle - uid: 11568 - - port: Toggle - uid: 11471 - - port: Toggle - uid: 11582 - - port: Toggle - uid: 11575 - type: SignalTransmitter -- uid: 11517 - type: CableHV - components: - - pos: -58.5,14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11518 - type: CableHV - components: - - pos: -58.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11519 - type: CableHV - components: - - pos: -58.5,16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11520 - type: FirelockGlass - components: - - pos: 52.5,-7.5 - parent: 60 - type: Transform -- uid: 11521 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 9.5,36.5 - parent: 60 - type: Transform -- uid: 11522 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 10.5,36.5 - parent: 60 - type: Transform -- uid: 11523 - type: CableHV - components: - - pos: 7.5,36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11524 - type: SignElectricalMed - components: - - pos: 10.5,37.5 - parent: 60 - type: Transform -- uid: 11525 - type: CableHV - components: - - pos: 8.5,36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11526 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 8.5,36.5 - parent: 60 - type: Transform -- uid: 11527 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 7.5,36.5 - parent: 60 - type: Transform -- uid: 11528 - type: CableHV - components: - - pos: 10.5,36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11529 - type: CableHV - components: - - pos: 9.5,36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11530 - type: PottedPlantRandom - components: - - pos: -41.5,25.5 - parent: 60 - type: Transform -- uid: 11531 - type: ReinforcedWindow - components: - - pos: -6.5,4.5 - parent: 60 - type: Transform -- uid: 11532 - type: WallSolid - components: - - pos: -56.5,26.5 - parent: 60 - type: Transform -- uid: 11533 - type: CableHV - components: - - pos: -58.5,15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11534 - type: WallSolid - components: - - pos: -44.5,26.5 - parent: 60 - type: Transform -- uid: 11535 - type: WallReinforced - components: - - pos: -59.5,30.5 - parent: 60 - type: Transform -- uid: 11536 - type: CableApcExtension - components: - - pos: -13.5,-52.5 - parent: 60 - type: Transform -- uid: 11537 - type: WallSolid - components: - - pos: -53.5,26.5 - parent: 60 - type: Transform -- uid: 11538 - type: CableApcExtension - components: - - pos: -6.5,-52.5 - parent: 60 - type: Transform -- uid: 11539 - type: CableApcExtension - components: - - pos: -6.5,-51.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11540 - type: CableApcExtension - components: - - pos: -6.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11541 - type: CableApcExtension - components: - - pos: -6.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11542 - type: CableApcExtension - components: - - pos: -6.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11543 - type: CableApcExtension - components: - - pos: -7.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11544 - type: CableApcExtension - components: - - pos: -8.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11545 - type: CableApcExtension - components: - - pos: -9.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11546 - type: CableApcExtension - components: - - pos: -10.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11547 - type: CableApcExtension - components: - - pos: -11.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11548 - type: CableApcExtension - components: - - pos: -12.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11549 - type: WallReinforced - components: - - pos: -56.5,30.5 - parent: 60 - type: Transform -- uid: 11550 - type: WallSolid - components: - - pos: -47.5,26.5 - parent: 60 - type: Transform -- uid: 11551 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -54.5,27.5 - parent: 60 - type: Transform -- uid: 11552 - type: WallReinforced - components: - - pos: -57.5,30.5 - parent: 60 - type: Transform -- uid: 11553 - type: FirelockGlass - components: - - pos: 53.5,-7.5 - parent: 60 - type: Transform -- uid: 11554 - type: FirelockGlass - components: - - pos: 27.5,-9.5 - parent: 60 - type: Transform -- uid: 11555 - type: MagazineRifle - components: - - pos: -24.476622,-0.38610533 - parent: 60 - type: Transform -- uid: 11556 - type: MagazineRifle - components: - - pos: -24.445372,-0.5423553 - parent: 60 - type: Transform -- uid: 11557 - type: WeaponRifleLecter - components: - - pos: -28.497345,2.2539513 - parent: 60 - type: Transform -- uid: 11558 - type: WeaponLaserCarbine - components: - - pos: -28.497345,1.8789513 - parent: 60 - type: Transform -- uid: 11559 - type: WeaponRifleLecter - components: - - pos: -28.497345,2.6289513 - parent: 60 - type: Transform -- uid: 11560 - type: WallSolid - components: - - pos: -54.5,26.5 - parent: 60 - type: Transform -- uid: 11561 - type: WallReinforced - components: - - pos: -60.5,30.5 - parent: 60 - type: Transform -- uid: 11562 - type: WallSolid - components: - - pos: -46.5,26.5 - parent: 60 - type: Transform -- uid: 11563 - type: WallSolid - components: - - pos: -45.5,26.5 - parent: 60 - type: Transform -- uid: 11564 - type: AirlockScienceGlassLocked - components: - - pos: -55.5,5.5 - parent: 60 - type: Transform -- uid: 11565 - type: Catwalk - components: - - pos: -51.5,27.5 - parent: 60 - type: Transform -- uid: 11566 - type: MagazineRifleRubber - components: - - pos: -24.742247,-0.38610533 - parent: 60 - type: Transform -- uid: 11567 - type: MagazineRifleRubber - components: - - pos: -24.726622,-0.5892303 - parent: 60 - type: Transform -- uid: 11568 - type: ShuttersWindow - components: - - pos: -51.5,28.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11511 - - port: Pressed - uid: 11516 - type: SignalReceiver -- uid: 11569 - type: MagazineBoxRifleBig - components: - - pos: -24.475615,-0.04235533 - parent: 60 - type: Transform -- uid: 11570 - type: WallReinforced - components: - - pos: -45.5,28.5 - parent: 60 - type: Transform -- uid: 11571 - type: WallReinforced - components: - - pos: -46.5,28.5 - parent: 60 - type: Transform -- uid: 11572 - type: WallReinforced - components: - - pos: -47.5,28.5 - parent: 60 - type: Transform -- uid: 11573 - type: WallReinforced - components: - - pos: -48.5,28.5 - parent: 60 - type: Transform -- uid: 11574 - type: ShuttersWindow - components: - - pos: -49.5,28.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11511 - - port: Pressed - uid: 11516 - type: SignalReceiver -- uid: 11575 - type: ShuttersWindow - components: - - pos: -49.5,26.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11511 - - port: Pressed - uid: 11516 - type: SignalReceiver -- uid: 11576 - type: BoxFolderBlue - components: - - pos: -40.52726,-17.397173 - parent: 60 - type: Transform -- uid: 11577 - type: WallReinforced - components: - - pos: -52.5,28.5 - parent: 60 - type: Transform -- uid: 11578 - type: WallReinforced - components: - - pos: -53.5,28.5 - parent: 60 - type: Transform -- uid: 11579 - type: WallReinforced - components: - - pos: -54.5,28.5 - parent: 60 - type: Transform -- uid: 11580 - type: WallReinforced - components: - - pos: -55.5,28.5 - parent: 60 - type: Transform -- uid: 11581 - type: BoxFolderBlue - components: - - pos: -48.390194,-18.501072 - parent: 60 - type: Transform -- uid: 11582 - type: ShuttersWindow - components: - - pos: -50.5,26.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11511 - - port: Pressed - uid: 11516 - type: SignalReceiver -- uid: 11583 - type: ShuttersWindow - components: - - pos: -50.5,28.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11511 - - port: Pressed - uid: 11516 - type: SignalReceiver -- uid: 11584 - type: CableHV - components: - - pos: -58.5,19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11585 - type: CableHV - components: - - pos: -58.5,20.5 - parent: 60 - type: Transform -- uid: 11586 - type: CableHV - components: - - pos: -58.5,21.5 - parent: 60 - type: Transform -- uid: 11587 - type: CableHV - components: - - pos: -58.5,22.5 - parent: 60 - type: Transform -- uid: 11588 - type: CableHV - components: - - pos: -58.5,23.5 - parent: 60 - type: Transform -- uid: 11589 - type: CableHV - components: - - pos: -58.5,24.5 - parent: 60 - type: Transform -- uid: 11590 - type: CableHV - components: - - pos: -58.5,25.5 - parent: 60 - type: Transform -- uid: 11591 - type: CableHV - components: - - pos: -58.5,26.5 - parent: 60 - type: Transform -- uid: 11592 - type: CableHV - components: - - pos: -58.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11593 - type: CableHV - components: - - pos: -57.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11594 - type: CableHV - components: - - pos: -56.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11595 - type: CableHV - components: - - pos: -55.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11596 - type: CableHV - components: - - pos: -54.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11597 - type: CableHV - components: - - pos: -53.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11598 - type: CableHV - components: - - pos: -52.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11599 - type: CableHV - components: - - pos: -51.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11600 - type: CableHV - components: - - pos: -50.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11601 - type: CableHV - components: - - pos: -49.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11602 - type: CableHV - components: - - pos: -48.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11603 - type: CableHV - components: - - pos: -47.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11604 - type: CableHV - components: - - pos: -46.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11605 - type: CableHV - components: - - pos: -45.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11606 - type: CableHV - components: - - pos: -44.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11607 - type: CableHV - components: - - pos: -43.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11608 - type: CableHV - components: - - pos: -43.5,26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11609 - type: CableHV - components: - - pos: -25.5,25.5 - parent: 60 - type: Transform -- uid: 11610 - type: CableHV - components: - - pos: -26.5,25.5 - parent: 60 - type: Transform -- uid: 11611 - type: CableHV - components: - - pos: -27.5,25.5 - parent: 60 - type: Transform -- uid: 11612 - type: CableHV - components: - - pos: -28.5,25.5 - parent: 60 - type: Transform -- uid: 11613 - type: CableHV - components: - - pos: -29.5,25.5 - parent: 60 - type: Transform -- uid: 11614 - type: CableHV - components: - - pos: -30.5,25.5 - parent: 60 - type: Transform -- uid: 11615 - type: CableHV - components: - - pos: -31.5,25.5 - parent: 60 - type: Transform -- uid: 11616 - type: CableHV - components: - - pos: -32.5,25.5 - parent: 60 - type: Transform -- uid: 11617 - type: CableHV - components: - - pos: -33.5,25.5 - parent: 60 - type: Transform -- uid: 11618 - type: CableHV - components: - - pos: -34.5,25.5 - parent: 60 - type: Transform -- uid: 11619 - type: CableHV - components: - - pos: -35.5,25.5 - parent: 60 - type: Transform -- uid: 11620 - type: CableHV - components: - - pos: -36.5,25.5 - parent: 60 - type: Transform -- uid: 11621 - type: CableHV - components: - - pos: -37.5,25.5 - parent: 60 - type: Transform -- uid: 11622 - type: CableHV - components: - - pos: -38.5,25.5 - parent: 60 - type: Transform -- uid: 11623 - type: CableHV - components: - - pos: -39.5,25.5 - parent: 60 - type: Transform -- uid: 11624 - type: CableHV - components: - - pos: -40.5,25.5 - parent: 60 - type: Transform -- uid: 11625 - type: CableHV - components: - - pos: -41.5,25.5 - parent: 60 - type: Transform -- uid: 11626 - type: CableHV - components: - - pos: -42.5,25.5 - parent: 60 - type: Transform -- uid: 11627 - type: CableHV - components: - - pos: -43.5,25.5 - parent: 60 - type: Transform -- uid: 11628 - type: WallReinforced - components: - - pos: -57.5,28.5 - parent: 60 - type: Transform -- uid: 11629 - type: WallReinforced - components: - - pos: -59.5,28.5 - parent: 60 - type: Transform -- uid: 11630 - type: AirlockExternalLocked - components: - - pos: -58.5,28.5 - parent: 60 - type: Transform -- uid: 11631 - type: AirlockExternalLocked - components: - - pos: -58.5,30.5 - parent: 60 - type: Transform -- uid: 11632 - type: CableApcExtension - components: - - pos: 6.5,-52.5 - parent: 60 - type: Transform -- uid: 11633 - type: CableApcExtension - components: - - pos: 6.5,-51.5 - parent: 60 - type: Transform -- uid: 11634 - type: CableApcExtension - components: - - pos: 6.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11635 - type: CableApcExtension - components: - - pos: 6.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11636 - type: CableApcExtension - components: - - pos: 7.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11637 - type: CableApcExtension - components: - - pos: 8.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11638 - type: CableApcExtension - components: - - pos: 9.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11639 - type: CableApcExtension - components: - - pos: 10.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11640 - type: CableApcExtension - components: - - pos: 5.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11641 - type: CableApcExtension - components: - - pos: 4.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11642 - type: CableApcExtension - components: - - pos: 9.5,-48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11643 - type: CableApcExtension - components: - - pos: 9.5,-47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11644 - type: Grille - components: - - pos: 51.5,19.5 - parent: 60 - type: Transform -- uid: 11645 - type: CableApcExtension - components: - - pos: 11.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11646 - type: CableApcExtension - components: - - pos: 12.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11647 - type: CableApcExtension - components: - - pos: 13.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11648 - type: CableApcExtension - components: - - pos: -5.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11649 - type: CableApcExtension - components: - - pos: -4.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11650 - type: CableApcExtension - components: - - pos: -3.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11651 - type: CableMV - components: - - pos: -3.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11652 - type: CableMV - components: - - pos: -4.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11653 - type: CableMV - components: - - pos: -4.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11654 - type: CableMV - components: - - pos: -5.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11655 - type: CableMV - components: - - pos: -6.5,-49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11656 - type: CableMV - components: - - pos: -6.5,-50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11657 - type: CableMV - components: - - pos: -6.5,-51.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11658 - type: CableMV - components: - - pos: -6.5,-52.5 - parent: 60 - type: Transform -- uid: 11659 - type: ClosetEmergencyFilledRandom - components: - - pos: -59.5,29.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11660 - type: AirlockMaintGlass - components: - - pos: -53.5,27.5 - parent: 60 - type: Transform -- uid: 11661 - type: Catwalk - components: - - pos: -50.5,27.5 - parent: 60 - type: Transform -- uid: 11662 - type: Catwalk - components: - - pos: -49.5,27.5 - parent: 60 - type: Transform -- uid: 11663 - type: AirlockMaintGlass - components: - - pos: -47.5,27.5 - parent: 60 - type: Transform -- uid: 11664 - type: Catwalk - components: - - pos: -45.5,27.5 - parent: 60 - type: Transform -- uid: 11665 - type: Catwalk - components: - - pos: -44.5,27.5 - parent: 60 - type: Transform -- uid: 11666 - type: CableApcExtension - components: - - pos: -57.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11667 - type: CableApcExtension - components: - - pos: -56.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11668 - type: CableApcExtension - components: - - pos: -55.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11669 - type: CableApcExtension - components: - - pos: -54.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11670 - type: CableApcExtension - components: - - pos: -53.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11671 - type: CableApcExtension - components: - - pos: -52.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11672 - type: CableApcExtension - components: - - pos: -51.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11673 - type: CableApcExtension - components: - - pos: -50.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11674 - type: CableApcExtension - components: - - pos: -49.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11675 - type: CableApcExtension - components: - - pos: -48.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11676 - type: CableApcExtension - components: - - pos: -47.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11677 - type: Table - components: - - pos: -3.5,-51.5 - parent: 60 - type: Transform -- uid: 11678 - type: Table - components: - - pos: -4.5,-51.5 - parent: 60 - type: Transform -- uid: 11679 - type: LockerElectricalSuppliesFilled - components: - - pos: -3.5,-48.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11680 - type: CrateEngineeringCableMV - components: - - pos: -4.5,-48.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 11681 - type: trayScanner - components: - - pos: -4.288453,-51.455044 - parent: 60 - type: Transform -- uid: 11682 - type: PoweredSmallLight - components: - - pos: -4.5,-48.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11683 - type: PoweredSmallLight - components: - - pos: 13.5,-48.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11684 - type: Rack - components: - - pos: 14.5,-48.5 - parent: 60 - type: Transform -- uid: 11685 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-48.5 - parent: 60 - type: Transform -- uid: 11686 - type: ComputerPowerMonitoring - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-48.5 - parent: 60 - type: Transform -- uid: 11687 - type: Rack - components: - - pos: 12.5,-50.5 - parent: 60 - type: Transform -- uid: 11688 - type: ToolboxElectricalFilled - components: - - pos: 12.553763,-50.43942 - parent: 60 - type: Transform -- uid: 11689 - type: Screwdriver - components: - - pos: 14.569388,-48.423794 - parent: 60 - type: Transform -- uid: 11690 - type: AirlockGlass - components: - - pos: 0.5,-21.5 - parent: 60 - type: Transform -- uid: 11691 - type: AirlockGlass - components: - - pos: 1.5,-21.5 - parent: 60 - type: Transform -- uid: 11692 - type: TableWood - components: - - pos: -40.5,-17.5 - parent: 60 - type: Transform -- uid: 11693 - type: TableWood - components: - - pos: -41.5,-17.5 - parent: 60 - type: Transform -- uid: 11694 - type: GravityGenerator - components: - - pos: -9.5,4.5 - parent: 60 - type: Transform - - charge: 100 - type: GravityGenerator - - radius: 175.75 - type: PointLight -- uid: 11695 - type: VendingMachineSciDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -41.5,-3.5 - parent: 60 - type: Transform -- uid: 11696 - type: WallSolid - components: - - pos: 48.5,-2.5 - parent: 60 - type: Transform -- uid: 11697 - type: BlastDoor - components: - - pos: 55.5,-0.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19108 - type: SignalReceiver -- uid: 11698 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 19.5,8.5 - parent: 60 - type: Transform -- uid: 11699 - type: Grille - components: - - pos: 52.5,-1.5 - parent: 60 - type: Transform -- uid: 11700 - type: WallSolid - components: - - pos: 32.5,6.5 - parent: 60 - type: Transform -- uid: 11701 - type: ReinforcedWindow - components: - - pos: 15.5,30.5 - parent: 60 - type: Transform -- uid: 11702 - type: CableApcExtension - components: - - pos: -46.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11703 - type: Catwalk - components: - - pos: 59.5,-54.5 - parent: 60 - type: Transform -- uid: 11704 - type: Catwalk - components: - - pos: 40.5,-60.5 - parent: 60 - type: Transform -- uid: 11705 - type: Grille - components: - - pos: 56.5,-26.5 - parent: 60 - type: Transform -- uid: 11706 - type: WallSolid - components: - - pos: 29.5,22.5 - parent: 60 - type: Transform -- uid: 11707 - type: CableApcExtension - components: - - pos: -45.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11708 - type: Catwalk - components: - - pos: 58.5,-15.5 - parent: 60 - type: Transform -- uid: 11709 - type: Grille - components: - - pos: 48.5,30.5 - parent: 60 - type: Transform -- uid: 11710 - type: Grille - components: - - pos: 47.5,31.5 - parent: 60 - type: Transform -- uid: 11711 - type: Catwalk - components: - - pos: 45.5,-55.5 - parent: 60 - type: Transform -- uid: 11712 - type: Catwalk - components: - - pos: 43.5,-60.5 - parent: 60 - type: Transform -- uid: 11713 - type: ReinforcedWindow - components: - - pos: 50.5,30.5 - parent: 60 - type: Transform -- uid: 11714 - type: Catwalk - components: - - pos: 62.5,-15.5 - parent: 60 - type: Transform -- uid: 11715 - type: Catwalk - components: - - pos: 63.5,-22.5 - parent: 60 - type: Transform -- uid: 11716 - type: Catwalk - components: - - pos: 63.5,-23.5 - parent: 60 - type: Transform -- uid: 11717 - type: Catwalk - components: - - pos: 63.5,-20.5 - parent: 60 - type: Transform -- uid: 11718 - type: WallReinforced - components: - - pos: 18.5,27.5 - parent: 60 - type: Transform -- uid: 11719 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 58.5,16.5 - parent: 60 - type: Transform -- uid: 11720 - type: Catwalk - components: - - pos: 45.5,-56.5 - parent: 60 - type: Transform -- uid: 11721 - type: Catwalk - components: - - pos: 42.5,-60.5 - parent: 60 - type: Transform -- uid: 11722 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 50.5,3.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 12607 - Forward: - - port: Left - uid: 12607 - Off: - - port: Middle - uid: 12607 - type: SignalReceiver - - edge: 0 - type: Construction -- uid: 11723 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 40.5,0.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 11724 - type: Table - components: - - pos: 44.5,0.5 - parent: 60 - type: Transform -- uid: 11725 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 57.5,10.5 - parent: 60 - type: Transform -- uid: 11726 - type: Grille - components: - - pos: 50.5,15.5 - parent: 60 - type: Transform -- uid: 11727 - type: Table - components: - - pos: 40.5,4.5 - parent: 60 - type: Transform -- uid: 11728 - type: ReinforcedWindow - components: - - pos: 57.5,20.5 - parent: 60 - type: Transform -- uid: 11729 - type: ReinforcedWindow - components: - - pos: 57.5,22.5 - parent: 60 - type: Transform -- uid: 11730 - type: ReinforcedWindow - components: - - pos: 57.5,24.5 - parent: 60 - type: Transform -- uid: 11731 - type: WallSolid - components: - - pos: 39.5,4.5 - parent: 60 - type: Transform -- uid: 11732 - type: Grille - components: - - pos: 38.5,13.5 - parent: 60 - type: Transform -- uid: 11733 - type: CableMV - components: - - pos: 29.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11734 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,29.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11735 - type: TintedWindow - components: - - pos: 38.5,17.5 - parent: 60 - type: Transform -- uid: 11736 - type: WallSolid - components: - - pos: 38.5,20.5 - parent: 60 - type: Transform -- uid: 11737 - type: WallSolid - components: - - pos: 38.5,22.5 - parent: 60 - type: Transform -- uid: 11738 - type: WallSolid - components: - - pos: 36.5,22.5 - parent: 60 - type: Transform -- uid: 11739 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 40.5,3.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 11740 - type: WallReinforced - components: - - pos: 30.5,27.5 - parent: 60 - type: Transform -- uid: 11741 - type: Catwalk - components: - - pos: 50.5,31.5 - parent: 60 - type: Transform -- uid: 11742 - type: ReinforcedWindow - components: - - pos: 48.5,30.5 - parent: 60 - type: Transform -- uid: 11743 - type: ReinforcedWindow - components: - - pos: 50.5,28.5 - parent: 60 - type: Transform -- uid: 11744 - type: ReinforcedWindow - components: - - pos: 48.5,28.5 - parent: 60 - type: Transform -- uid: 11745 - type: ReinforcedWindow - components: - - pos: 21.5,27.5 - parent: 60 - type: Transform -- uid: 11746 - type: ReinforcedWindow - components: - - pos: 43.5,16.5 - parent: 60 - type: Transform -- uid: 11747 - type: WallReinforced - components: - - pos: 18.5,4.5 - parent: 60 - type: Transform -- uid: 11748 - type: Grille - components: - - pos: 43.5,31.5 - parent: 60 - type: Transform -- uid: 11749 - type: ReinforcedWindow - components: - - pos: 64.5,-39.5 - parent: 60 - type: Transform -- uid: 11750 - type: WallSolid - components: - - pos: 31.5,10.5 - parent: 60 - type: Transform -- uid: 11751 - type: ReinforcedWindow - components: - - pos: 28.5,27.5 - parent: 60 - type: Transform -- uid: 11752 - type: ReinforcedWindow - components: - - pos: 35.5,27.5 - parent: 60 - type: Transform -- uid: 11753 - type: NitrogenCanister - components: - - pos: 54.5,-1.5 - parent: 60 - type: Transform -- uid: 11754 - type: WallReinforced - components: - - pos: 25.5,11.5 - parent: 60 - type: Transform -- uid: 11755 - type: CableHV - components: - - pos: 38.5,-76.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11756 - type: WallSolid - components: - - pos: 51.5,-2.5 - parent: 60 - type: Transform -- uid: 11757 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 53.5,3.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 12607 - Forward: - - port: Left - uid: 12607 - Off: - - port: Middle - uid: 12607 - type: SignalReceiver -- uid: 11758 - type: CableApcExtension - components: - - pos: 12.5,6.5 - parent: 60 - type: Transform -- uid: 11759 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -19.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11760 - type: GrilleBroken - components: - - pos: 40.5,-63.5 - parent: 60 - type: Transform -- uid: 11761 - type: PoweredSmallLight - components: - - pos: -44.5,27.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11762 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 59.5,13.5 - parent: 60 - type: Transform -- uid: 11763 - type: Catwalk - components: - - pos: 24.5,-63.5 - parent: 60 - type: Transform -- uid: 11764 - type: Catwalk - components: - - pos: 36.5,-60.5 - parent: 60 - type: Transform -- uid: 11765 - type: Catwalk - components: - - pos: 62.5,-46.5 - parent: 60 - type: Transform -- uid: 11766 - type: TintedWindow - components: - - pos: 38.5,13.5 - parent: 60 - type: Transform -- uid: 11767 - type: ReinforcedWindow - components: - - pos: 43.5,29.5 - parent: 60 - type: Transform -- uid: 11768 - type: Catwalk - components: - - pos: 62.5,-47.5 - parent: 60 - type: Transform -- uid: 11769 - type: Catwalk - components: - - pos: 62.5,-49.5 - parent: 60 - type: Transform -- uid: 11770 - type: Catwalk - components: - - pos: 62.5,-50.5 - parent: 60 - type: Transform -- uid: 11771 - type: Catwalk - components: - - pos: 62.5,-52.5 - parent: 60 - type: Transform -- uid: 11772 - type: Catwalk - components: - - pos: 62.5,-54.5 - parent: 60 - type: Transform -- uid: 11773 - type: Catwalk - components: - - pos: 56.5,-54.5 - parent: 60 - type: Transform -- uid: 11774 - type: Catwalk - components: - - pos: 47.5,-54.5 - parent: 60 - type: Transform -- uid: 11775 - type: Catwalk - components: - - pos: 52.5,-54.5 - parent: 60 - type: Transform -- uid: 11776 - type: Catwalk - components: - - pos: 51.5,-54.5 - parent: 60 - type: Transform -- uid: 11777 - type: Catwalk - components: - - pos: 49.5,-54.5 - parent: 60 - type: Transform -- uid: 11778 - type: Catwalk - components: - - pos: 54.5,-54.5 - parent: 60 - type: Transform -- uid: 11779 - type: Catwalk - components: - - pos: 45.5,-54.5 - parent: 60 - type: Transform -- uid: 11780 - type: Catwalk - components: - - pos: 45.5,-57.5 - parent: 60 - type: Transform -- uid: 11781 - type: Catwalk - components: - - pos: 45.5,-58.5 - parent: 60 - type: Transform -- uid: 11782 - type: Catwalk - components: - - pos: 45.5,-60.5 - parent: 60 - type: Transform -- uid: 11783 - type: Catwalk - components: - - pos: 41.5,-60.5 - parent: 60 - type: Transform -- uid: 11784 - type: Catwalk - components: - - pos: 33.5,-60.5 - parent: 60 - type: Transform -- uid: 11785 - type: Grille - components: - - pos: 29.5,-78.5 - parent: 60 - type: Transform -- uid: 11786 - type: CableHV - components: - - pos: 24.5,-64.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11787 - type: CableHV - components: - - pos: 24.5,-62.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11788 - type: CableHV - components: - - pos: 38.5,-62.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11789 - type: Window - components: - - pos: -59.5,18.5 - parent: 60 - type: Transform -- uid: 11790 - type: Catwalk - components: - - pos: 61.5,-54.5 - parent: 60 - type: Transform -- uid: 11791 - type: WallReinforced - components: - - pos: 19.5,22.5 - parent: 60 - type: Transform -- uid: 11792 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 64.5,-20.5 - parent: 60 - type: Transform -- uid: 11793 - type: Catwalk - components: - - pos: 57.5,-54.5 - parent: 60 - type: Transform -- uid: 11794 - type: Grille - components: - - pos: 40.5,-78.5 - parent: 60 - type: Transform -- uid: 11795 - type: Window - components: - - pos: -57.5,18.5 - parent: 60 - type: Transform -- uid: 11796 - type: SolarPanel - components: - - pos: 24.5,-74.5 - parent: 60 - type: Transform -- uid: 11797 - type: Catwalk - components: - - pos: 34.5,-75.5 - parent: 60 - type: Transform -- uid: 11798 - type: Grille - components: - - pos: 36.5,-78.5 - parent: 60 - type: Transform -- uid: 11799 - type: SheetSteel - components: - - pos: -57.47909,29.480463 - parent: 60 - type: Transform -- uid: 11800 - type: Catwalk - components: - - pos: 31.5,-69.5 - parent: 60 - type: Transform -- uid: 11801 - type: Catwalk - components: - - pos: 27.5,-75.5 - parent: 60 - type: Transform -- uid: 11802 - type: SolarPanel - components: - - pos: 34.5,-70.5 - parent: 60 - type: Transform -- uid: 11803 - type: SolarPanel - components: - - pos: 35.5,-68.5 - parent: 60 - type: Transform -- uid: 11804 - type: Catwalk - components: - - pos: 62.5,-44.5 - parent: 60 - type: Transform -- uid: 11805 - type: CableHV - components: - - pos: 34.5,2.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11806 - type: ReinforcedWindow - components: - - pos: 47.5,31.5 - parent: 60 - type: Transform -- uid: 11807 - type: BoxLightMixed - components: - - pos: -59.54387,27.53939 - parent: 60 - type: Transform -- uid: 11808 - type: ReinforcedWindow - components: - - pos: 64.5,-36.5 - parent: 60 - type: Transform -- uid: 11809 - type: ReinforcedWindow - components: - - pos: 51.5,31.5 - parent: 60 - type: Transform -- uid: 11810 - type: ReinforcedWindow - components: - - pos: 43.5,31.5 - parent: 60 - type: Transform -- uid: 11811 - type: Table - components: - - pos: -59.5,27.5 - parent: 60 - type: Transform -- uid: 11812 - type: Grille - components: - - pos: 46.5,-58.5 - parent: 60 - type: Transform -- uid: 11813 - type: Grille - components: - - pos: 64.5,-19.5 - parent: 60 - type: Transform -- uid: 11814 - type: PlasticFlapsAirtightClear - components: - - pos: 52.5,3.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 11815 - type: WallReinforced - components: - - pos: 18.5,17.5 - parent: 60 - type: Transform -- uid: 11816 - type: WallReinforced - components: - - pos: 53.5,1.5 - parent: 60 - type: Transform -- uid: 11817 - type: SolarPanel - components: - - pos: 28.5,-74.5 - parent: 60 - type: Transform -- uid: 11818 - type: SolarPanel - components: - - pos: 27.5,-76.5 - parent: 60 - type: Transform -- uid: 11819 - type: Catwalk - components: - - pos: 31.5,-76.5 - parent: 60 - type: Transform -- uid: 11820 - type: Catwalk - components: - - pos: 31.5,-64.5 - parent: 60 - type: Transform -- uid: 11821 - type: WallReinforced - components: - - pos: 54.5,1.5 - parent: 60 - type: Transform -- uid: 11822 - type: Catwalk - components: - - pos: 36.5,-71.5 - parent: 60 - type: Transform -- uid: 11823 - type: Catwalk - components: - - pos: 37.5,-71.5 - parent: 60 - type: Transform -- uid: 11824 - type: SolarPanel - components: - - pos: 38.5,-62.5 - parent: 60 - type: Transform -- uid: 11825 - type: Barricade - components: - - pos: -43.5,27.5 - parent: 60 - type: Transform -- uid: 11826 - type: GrilleBroken - components: - - pos: 40.5,-75.5 - parent: 60 - type: Transform -- uid: 11827 - type: WallReinforced - components: - - pos: 18.5,20.5 - parent: 60 - type: Transform -- uid: 11828 - type: WallReinforced - components: - - pos: 20.5,15.5 - parent: 60 - type: Transform -- uid: 11829 - type: WallReinforced - components: - - pos: 18.5,22.5 - parent: 60 - type: Transform -- uid: 11830 - type: BlastDoor - components: - - pos: 55.5,3.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19107 - type: SignalReceiver -- uid: 11831 - type: AirlockCargoGlassLocked - components: - - pos: 49.5,5.5 - parent: 60 - type: Transform -- uid: 11832 - type: ReinforcedWindow - components: - - pos: 45.5,11.5 - parent: 60 - type: Transform -- uid: 11833 - type: WallSolid - components: - - pos: 18.5,13.5 - parent: 60 - type: Transform -- uid: 11834 - type: FirelockGlass - components: - - pos: 50.5,19.5 - parent: 60 - type: Transform -- uid: 11835 - type: ReinforcedWindow - components: - - pos: 64.5,-37.5 - parent: 60 - type: Transform -- uid: 11836 - type: Grille - components: - - pos: 55.5,29.5 - parent: 60 - type: Transform -- uid: 11837 - type: WallReinforced - components: - - pos: 21.5,13.5 - parent: 60 - type: Transform -- uid: 11838 - type: WallReinforced - components: - - pos: 18.5,-1.5 - parent: 60 - type: Transform -- uid: 11839 - type: ReinforcedWindow - components: - - pos: 57.5,25.5 - parent: 60 - type: Transform -- uid: 11840 - type: ReinforcedWindow - components: - - pos: 53.5,-14.5 - parent: 60 - type: Transform -- uid: 11841 - type: Grille - components: - - pos: 55.5,4.5 - parent: 60 - type: Transform -- uid: 11842 - type: ReinforcedWindow - components: - - pos: 19.5,5.5 - parent: 60 - type: Transform -- uid: 11843 - type: WallReinforced - components: - - pos: 18.5,15.5 - parent: 60 - type: Transform -- uid: 11844 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 42.5,11.5 - parent: 60 - type: Transform -- uid: 11845 - type: Catwalk - components: - - pos: 50.5,-54.5 - parent: 60 - type: Transform -- uid: 11846 - type: SolarPanel - components: - - pos: 24.5,-68.5 - parent: 60 - type: Transform -- uid: 11847 - type: SolarPanel - components: - - pos: 33.5,-74.5 - parent: 60 - type: Transform -- uid: 11848 - type: SolarPanel - components: - - pos: 25.5,-74.5 - parent: 60 - type: Transform -- uid: 11849 - type: Catwalk - components: - - pos: 31.5,-74.5 - parent: 60 - type: Transform -- uid: 11850 - type: WallSolid - components: - - pos: 50.5,5.5 - parent: 60 - type: Transform -- uid: 11851 - type: SpawnPointSalvageSpecialist - components: - - pos: 37.5,-0.5 - parent: 60 - type: Transform -- uid: 11852 - type: Catwalk - components: - - pos: 31.5,-75.5 - parent: 60 - type: Transform -- uid: 11853 - type: SolarPanel - components: - - pos: 30.5,-64.5 - parent: 60 - type: Transform -- uid: 11854 - type: SolarPanel - components: - - pos: 25.5,-66.5 - parent: 60 - type: Transform -- uid: 11855 - type: SolarPanel - components: - - pos: 30.5,-66.5 - parent: 60 - type: Transform -- uid: 11856 - type: Grille - components: - - pos: 33.5,-78.5 - parent: 60 - type: Transform -- uid: 11857 - type: Grille - components: - - pos: 51.5,27.5 - parent: 60 - type: Transform -- uid: 11858 - type: Grille - components: - - pos: 40.5,-76.5 - parent: 60 - type: Transform -- uid: 11859 - type: Grille - components: - - pos: 56.5,-27.5 - parent: 60 - type: Transform -- uid: 11860 - type: CableHV - components: - - pos: 24.5,-72.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11861 - type: SolarPanel - components: - - pos: 38.5,-68.5 - parent: 60 - type: Transform -- uid: 11862 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 40.5,-73.5 - parent: 60 - type: Transform -- uid: 11863 - type: ReinforcedWindow - components: - - pos: 53.5,-16.5 - parent: 60 - type: Transform -- uid: 11864 - type: AirlockCargoGlassLocked - components: - - name: Salvage Bay - type: MetaData - - pos: 44.5,4.5 - parent: 60 - type: Transform -- uid: 11865 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,1.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11866 - type: CableHV - components: - - pos: 47.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11867 - type: Catwalk - components: - - pos: 58.5,-54.5 - parent: 60 - type: Transform -- uid: 11868 - type: WallSolid - components: - - pos: 18.5,-4.5 - parent: 60 - type: Transform -- uid: 11869 - type: WallSolid - components: - - pos: 19.5,10.5 - parent: 60 - type: Transform -- uid: 11870 - type: WallReinforced - components: - - pos: 52.5,5.5 - parent: 60 - type: Transform -- uid: 11871 - type: Catwalk - components: - - pos: 44.5,-60.5 - parent: 60 - type: Transform -- uid: 11872 - type: Catwalk - components: - - pos: 63.5,-16.5 - parent: 60 - type: Transform -- uid: 11873 - type: Catwalk - components: - - pos: 63.5,-18.5 - parent: 60 - type: Transform -- uid: 11874 - type: Grille - components: - - pos: 55.5,30.5 - parent: 60 - type: Transform -- uid: 11875 - type: CableHV - components: - - pos: 28.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11876 - type: CableHV - components: - - pos: 29.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11877 - type: CableHV - components: - - pos: 30.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11878 - type: Grille - components: - - pos: 55.5,31.5 - parent: 60 - type: Transform -- uid: 11879 - type: Grille - components: - - pos: 55.5,27.5 - parent: 60 - type: Transform -- uid: 11880 - type: Grille - components: - - pos: 48.5,28.5 - parent: 60 - type: Transform -- uid: 11881 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 54.5,3.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 12607 - Forward: - - port: Left - uid: 12607 - Off: - - port: Middle - uid: 12607 - type: SignalReceiver -- uid: 11882 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-5.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11883 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-7.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11884 - type: Crematorium - components: - - rot: -1.5707963267948966 rad - pos: -18.5,15.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11885 - type: WallmountTelevision - components: - - pos: 33.5,10.5 - parent: 60 - type: Transform -- uid: 11886 - type: Table - components: - - pos: 38.5,-10.5 - parent: 60 - type: Transform -- uid: 11887 - type: WallSolid - components: - - pos: 52.5,-5.5 - parent: 60 - type: Transform -- uid: 11888 - type: CableApcExtension - components: - - pos: 38.5,-5.5 - parent: 60 - type: Transform -- uid: 11889 - type: WallSolid - components: - - pos: 51.5,-5.5 - parent: 60 - type: Transform -- uid: 11890 - type: CableMV - components: - - pos: 52.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11891 - type: AirlockMaintMedLocked - components: - - name: Morgue - type: MetaData - - pos: 35.5,-6.5 - parent: 60 - type: Transform -- uid: 11892 - type: WallSolid - components: - - pos: 35.5,-5.5 - parent: 60 - type: Transform -- uid: 11893 - type: CableHV - components: - - pos: 43.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11894 - type: CableHV - components: - - pos: 44.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11895 - type: CableHV - components: - - pos: 45.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11896 - type: CableHV - components: - - pos: 46.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11897 - type: CableHV - components: - - pos: 47.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11898 - type: CableHV - components: - - pos: 48.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11899 - type: CableHV - components: - - pos: 49.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11900 - type: CableHV - components: - - pos: 50.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11901 - type: CableHV - components: - - pos: 51.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11902 - type: CableHV - components: - - pos: 52.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11903 - type: CableHV - components: - - pos: 53.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11904 - type: CableHV - components: - - pos: 53.5,-7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11905 - type: CableHV - components: - - pos: 53.5,-8.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11906 - type: CableHV - components: - - pos: 53.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11907 - type: CableHV - components: - - pos: 53.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11908 - type: CableHV - components: - - pos: 54.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11909 - type: CableHV - components: - - pos: 54.5,-11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11910 - type: CableHV - components: - - pos: 54.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11911 - type: CableHV - components: - - pos: 54.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11912 - type: CableHV - components: - - pos: 54.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11913 - type: CableHV - components: - - pos: 54.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11914 - type: CableHV - components: - - pos: 54.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11915 - type: CableHV - components: - - pos: 54.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11916 - type: CableHV - components: - - pos: 54.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11917 - type: CableHV - components: - - pos: 54.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11918 - type: CableHV - components: - - pos: 54.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11919 - type: CableHV - components: - - pos: 54.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11920 - type: CableHV - components: - - pos: 54.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11921 - type: CableHV - components: - - pos: 54.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11922 - type: CableHV - components: - - pos: 55.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11923 - type: CableHV - components: - - pos: 56.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11924 - type: CableHV - components: - - pos: 57.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11925 - type: CableHV - components: - - pos: 58.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11926 - type: CableHV - components: - - pos: 58.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11927 - type: CableHV - components: - - pos: 58.5,-25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11928 - type: CableHV - components: - - pos: 58.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11929 - type: CableHV - components: - - pos: 58.5,-27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11930 - type: CableHV - components: - - pos: 58.5,-28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11931 - type: CableHV - components: - - pos: 58.5,-29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11932 - type: CableHV - components: - - pos: 58.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11933 - type: CableHV - components: - - pos: 58.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11934 - type: CableHV - components: - - pos: 58.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11935 - type: CableHV - components: - - pos: 58.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11936 - type: CableHV - components: - - pos: 58.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11937 - type: CableHV - components: - - pos: 58.5,-35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11938 - type: CableHV - components: - - pos: 58.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11939 - type: CableHV - components: - - pos: 58.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11940 - type: CableHV - components: - - pos: 58.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11941 - type: CableHV - components: - - pos: 58.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11942 - type: Catwalk - components: - - pos: 49.5,-41.5 - parent: 60 - type: Transform -- uid: 11943 - type: Catwalk - components: - - pos: 43.5,-41.5 - parent: 60 - type: Transform -- uid: 11944 - type: WallSolid - components: - - pos: 48.5,-36.5 - parent: 60 - type: Transform -- uid: 11945 - type: SignSecureMed - components: - - pos: -22.5,-17.5 - parent: 60 - type: Transform -- uid: 11946 - type: Catwalk - components: - - pos: 48.5,-41.5 - parent: 60 - type: Transform -- uid: 11947 - type: Catwalk - components: - - pos: 46.5,-41.5 - parent: 60 - type: Transform -- uid: 11948 - type: Catwalk - components: - - pos: 44.5,-41.5 - parent: 60 - type: Transform -- uid: 11949 - type: Catwalk - components: - - pos: 53.5,-41.5 - parent: 60 - type: Transform -- uid: 11950 - type: Catwalk - components: - - pos: 55.5,-41.5 - parent: 60 - type: Transform -- uid: 11951 - type: Catwalk - components: - - pos: 57.5,-41.5 - parent: 60 - type: Transform -- uid: 11952 - type: Catwalk - components: - - pos: 58.5,-40.5 - parent: 60 - type: Transform -- uid: 11953 - type: CableApcExtension - components: - - pos: 58.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11954 - type: CableApcExtension - components: - - pos: 56.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11955 - type: CableApcExtension - components: - - pos: 54.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11956 - type: CableApcExtension - components: - - pos: 52.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11957 - type: CableApcExtension - components: - - pos: 50.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11958 - type: CableApcExtension - components: - - pos: 48.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11959 - type: CableApcExtension - components: - - pos: 38.5,-6.5 - parent: 60 - type: Transform -- uid: 11960 - type: CableHV - components: - - pos: 29.5,-76.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11961 - type: WallReinforced - components: - - pos: 40.5,26.5 - parent: 60 - type: Transform -- uid: 11962 - type: WallReinforced - components: - - pos: 39.5,26.5 - parent: 60 - type: Transform -- uid: 11963 - type: CableMV - components: - - pos: 53.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11964 - type: CableMV - components: - - pos: 54.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11965 - type: CableHV - components: - - pos: 35.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11966 - type: ReinforcedWindow - components: - - pos: 33.5,27.5 - parent: 60 - type: Transform -- uid: 11967 - type: WallReinforced - components: - - pos: 18.5,0.5 - parent: 60 - type: Transform -- uid: 11968 - type: Pickaxe - components: - - pos: 38.581364,-1.5641279 - parent: 60 - type: Transform -- uid: 11969 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 19.5,7.5 - parent: 60 - type: Transform -- uid: 11970 - type: WallSolid - components: - - pos: 27.5,22.5 - parent: 60 - type: Transform -- uid: 11971 - type: ReinforcedWindow - components: - - pos: 19.5,27.5 - parent: 60 - type: Transform -- uid: 11972 - type: ReinforcedWindow - components: - - pos: 45.5,16.5 - parent: 60 - type: Transform -- uid: 11973 - type: ReinforcedWindow - components: - - pos: 15.5,31.5 - parent: 60 - type: Transform -- uid: 11974 - type: WallSolid - components: - - pos: 35.5,10.5 - parent: 60 - type: Transform -- uid: 11975 - type: WallReinforced - components: - - pos: 21.5,5.5 - parent: 60 - type: Transform -- uid: 11976 - type: Grille - components: - - pos: 47.5,29.5 - parent: 60 - type: Transform -- uid: 11977 - type: Grille - components: - - pos: 47.5,28.5 - parent: 60 - type: Transform -- uid: 11978 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -18.5,-3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11979 - type: ReinforcedWindow - components: - - pos: 49.5,28.5 - parent: 60 - type: Transform -- uid: 11980 - type: ReinforcedWindow - components: - - pos: 49.5,30.5 - parent: 60 - type: Transform -- uid: 11981 - type: Catwalk - components: - - pos: 48.5,31.5 - parent: 60 - type: Transform -- uid: 11982 - type: WallSolid - components: - - pos: 34.5,22.5 - parent: 60 - type: Transform -- uid: 11983 - type: CableHV - components: - - pos: 36.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11984 - type: WallSolid - components: - - pos: 35.5,22.5 - parent: 60 - type: Transform -- uid: 11985 - type: WallSolid - components: - - pos: 37.5,22.5 - parent: 60 - type: Transform -- uid: 11986 - type: CableHV - components: - - pos: 16.5,23.5 - parent: 60 - type: Transform -- uid: 11987 - type: CableMV - components: - - pos: 23.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11988 - type: CableMV - components: - - pos: 22.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11989 - type: CableMV - components: - - pos: 21.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11990 - type: CableMV - components: - - pos: 20.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11991 - type: CableMV - components: - - pos: 19.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11992 - type: CableMV - components: - - pos: 18.5,-9.5 - parent: 60 - type: Transform -- uid: 11993 - type: CableMV - components: - - pos: 17.5,-9.5 - parent: 60 - type: Transform -- uid: 11994 - type: CableMV - components: - - pos: 16.5,-9.5 - parent: 60 - type: Transform -- uid: 11995 - type: CableHV - components: - - pos: 16.5,22.5 - parent: 60 - type: Transform -- uid: 11996 - type: CableHV - components: - - pos: 16.5,21.5 - parent: 60 - type: Transform -- uid: 11997 - type: CableHV - components: - - pos: 16.5,20.5 - parent: 60 - type: Transform -- uid: 11998 - type: CableHV - components: - - pos: 16.5,19.5 - parent: 60 - type: Transform -- uid: 11999 - type: CableHV - components: - - pos: 16.5,18.5 - parent: 60 - type: Transform -- uid: 12000 - type: CableHV - components: - - pos: 16.5,17.5 - parent: 60 - type: Transform -- uid: 12001 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12002 - type: APCBasic - components: - - pos: 27.5,22.5 - parent: 60 - type: Transform -- uid: 12003 - type: DisposalPipe - components: - - pos: 16.5,-2.5 - parent: 60 - type: Transform -- uid: 12004 - type: AirlockMaintLocked - components: - - pos: 38.5,21.5 - parent: 60 - type: Transform -- uid: 12005 - type: TintedWindow - components: - - pos: 38.5,15.5 - parent: 60 - type: Transform -- uid: 12006 - type: WallSolid - components: - - pos: 38.5,19.5 - parent: 60 - type: Transform -- uid: 12007 - type: WallSolid - components: - - pos: 38.5,16.5 - parent: 60 - type: Transform -- uid: 12008 - type: WallSolid - components: - - pos: 30.5,21.5 - parent: 60 - type: Transform -- uid: 12009 - type: ReinforcedWindow - components: - - pos: 42.5,10.5 - parent: 60 - type: Transform -- uid: 12010 - type: WallReinforced - components: - - pos: 56.5,19.5 - parent: 60 - type: Transform -- uid: 12011 - type: ReinforcedWindow - components: - - pos: 57.5,26.5 - parent: 60 - type: Transform -- uid: 12012 - type: WallReinforced - components: - - pos: 57.5,23.5 - parent: 60 - type: Transform -- uid: 12013 - type: ReinforcedWindow - components: - - pos: 57.5,21.5 - parent: 60 - type: Transform -- uid: 12014 - type: WallReinforced - components: - - pos: 57.5,19.5 - parent: 60 - type: Transform -- uid: 12015 - type: AirlockEngineeringLocked - components: - - pos: 51.5,-3.5 - parent: 60 - type: Transform -- uid: 12016 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 58.5,13.5 - parent: 60 - type: Transform -- uid: 12017 - type: WallSolid - components: - - pos: 39.5,3.5 - parent: 60 - type: Transform -- uid: 12018 - type: AirlockExternalGlassCargoLocked - components: - - pos: 52.5,2.5 - parent: 60 - type: Transform -- uid: 12019 - type: WallReinforced - components: - - pos: 52.5,1.5 - parent: 60 - type: Transform -- uid: 12020 - type: CableHV - components: - - pos: 34.5,-1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12021 - type: TintedWindow - components: - - pos: 50.5,15.5 - parent: 60 - type: Transform -- uid: 12022 - type: WallSolid - components: - - pos: 41.5,-2.5 - parent: 60 - type: Transform -- uid: 12023 - type: Grille - components: - - pos: 64.5,-17.5 - parent: 60 - type: Transform -- uid: 12024 - type: Catwalk - components: - - pos: 55.5,-54.5 - parent: 60 - type: Transform -- uid: 12025 - type: Grille - components: - - pos: 40.5,-77.5 - parent: 60 - type: Transform -- uid: 12026 - type: CableApcExtension - components: - - pos: -58.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12027 - type: SolarPanel - components: - - pos: 24.5,-70.5 - parent: 60 - type: Transform -- uid: 12028 - type: Catwalk - components: - - pos: 36.5,-75.5 - parent: 60 - type: Transform -- uid: 12029 - type: SolarPanel - components: - - pos: 33.5,-68.5 - parent: 60 - type: Transform -- uid: 12030 - type: SolarPanel - components: - - pos: 32.5,-74.5 - parent: 60 - type: Transform -- uid: 12031 - type: SolarPanel - components: - - pos: 30.5,-76.5 - parent: 60 - type: Transform -- uid: 12032 - type: SolarPanel - components: - - pos: 36.5,-70.5 - parent: 60 - type: Transform -- uid: 12033 - type: Catwalk - components: - - pos: 29.5,-75.5 - parent: 60 - type: Transform -- uid: 12034 - type: Catwalk - components: - - pos: 31.5,-68.5 - parent: 60 - type: Transform -- uid: 12035 - type: ReinforcedWindow - components: - - pos: -6.5,3.5 - parent: 60 - type: Transform -- uid: 12036 - type: Grille - components: - - pos: 37.5,-78.5 - parent: 60 - type: Transform -- uid: 12037 - type: Catwalk - components: - - pos: 48.5,-54.5 - parent: 60 - type: Transform -- uid: 12038 - type: Grille - components: - - pos: 44.5,-61.5 - parent: 60 - type: Transform -- uid: 12039 - type: ReinforcedWindow - components: - - pos: 47.5,30.5 - parent: 60 - type: Transform -- uid: 12040 - type: Catwalk - components: - - pos: 62.5,-48.5 - parent: 60 - type: Transform -- uid: 12041 - type: Grille - components: - - pos: 40.5,-69.5 - parent: 60 - type: Transform -- uid: 12042 - type: CableMV - components: - - pos: -6.5,3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12043 - type: SolarPanel - components: - - pos: 38.5,-74.5 - parent: 60 - type: Transform -- uid: 12044 - type: Catwalk - components: - - pos: 29.5,-71.5 - parent: 60 - type: Transform -- uid: 12045 - type: SolarPanel - components: - - pos: 27.5,-66.5 - parent: 60 - type: Transform -- uid: 12046 - type: SolarPanel - components: - - pos: 37.5,-76.5 - parent: 60 - type: Transform -- uid: 12047 - type: CableMV - components: - - pos: -6.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12048 - type: Catwalk - components: - - pos: 62.5,-53.5 - parent: 60 - type: Transform -- uid: 12049 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-71.5 - parent: 60 - type: Transform -- uid: 12050 - type: CableMV - components: - - pos: -13.5,-4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12051 - type: SolarPanel - components: - - pos: 38.5,-66.5 - parent: 60 - type: Transform -- uid: 12052 - type: Catwalk - components: - - pos: 35.5,-71.5 - parent: 60 - type: Transform -- uid: 12053 - type: WallReinforced - components: - - pos: 18.5,3.5 - parent: 60 - type: Transform -- uid: 12054 - type: CableApcExtension - components: - - pos: 16.5,-0.5 - parent: 60 - type: Transform -- uid: 12055 - type: CableApcExtension - components: - - pos: 16.5,-1.5 - parent: 60 - type: Transform -- uid: 12056 - type: CableApcExtension - components: - - pos: 16.5,-2.5 - parent: 60 - type: Transform -- uid: 12057 - type: CableApcExtension - components: - - pos: 16.5,-3.5 - parent: 60 - type: Transform -- uid: 12058 - type: CableApcExtension - components: - - pos: 16.5,-4.5 - parent: 60 - type: Transform -- uid: 12059 - type: CableApcExtension - components: - - pos: 16.5,-5.5 - parent: 60 - type: Transform -- uid: 12060 - type: CableApcExtension - components: - - pos: 16.5,-6.5 - parent: 60 - type: Transform -- uid: 12061 - type: CableApcExtension - components: - - pos: 16.5,-7.5 - parent: 60 - type: Transform -- uid: 12062 - type: CableApcExtension - components: - - pos: 16.5,-8.5 - parent: 60 - type: Transform -- uid: 12063 - type: CableApcExtension - components: - - pos: 16.5,-9.5 - parent: 60 - type: Transform -- uid: 12064 - type: CableApcExtension - components: - - pos: 16.5,0.5 - parent: 60 - type: Transform -- uid: 12065 - type: CableApcExtension - components: - - pos: 16.5,1.5 - parent: 60 - type: Transform -- uid: 12066 - type: CableApcExtension - components: - - pos: 16.5,2.5 - parent: 60 - type: Transform -- uid: 12067 - type: CableApcExtension - components: - - pos: 16.5,3.5 - parent: 60 - type: Transform -- uid: 12068 - type: CableApcExtension - components: - - pos: 16.5,4.5 - parent: 60 - type: Transform -- uid: 12069 - type: CableApcExtension - components: - - pos: 16.5,5.5 - parent: 60 - type: Transform -- uid: 12070 - type: APCBasic - components: - - pos: 23.5,-14.5 - parent: 60 - type: Transform -- uid: 12071 - type: CableMV - components: - - pos: 23.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12072 - type: CableMV - components: - - pos: 23.5,-13.5 - parent: 60 - type: Transform -- uid: 12073 - type: CableMV - components: - - pos: 23.5,-12.5 - parent: 60 - type: Transform -- uid: 12074 - type: CableMV - components: - - pos: 23.5,-11.5 - parent: 60 - type: Transform -- uid: 12075 - type: CableMV - components: - - pos: 23.5,-10.5 - parent: 60 - type: Transform -- uid: 12076 - type: CableApcExtension - components: - - pos: 23.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12077 - type: CableApcExtension - components: - - pos: 23.5,-13.5 - parent: 60 - type: Transform -- uid: 12078 - type: CableApcExtension - components: - - pos: 23.5,-12.5 - parent: 60 - type: Transform -- uid: 12079 - type: CableApcExtension - components: - - pos: 22.5,-12.5 - parent: 60 - type: Transform -- uid: 12080 - type: CableApcExtension - components: - - pos: 21.5,-12.5 - parent: 60 - type: Transform -- uid: 12081 - type: CableApcExtension - components: - - pos: 20.5,-12.5 - parent: 60 - type: Transform -- uid: 12082 - type: CableApcExtension - components: - - pos: 24.5,-12.5 - parent: 60 - type: Transform -- uid: 12083 - type: CableApcExtension - components: - - pos: 25.5,-12.5 - parent: 60 - type: Transform -- uid: 12084 - type: CableApcExtension - components: - - pos: 26.5,-12.5 - parent: 60 - type: Transform -- uid: 12085 - type: CableApcExtension - components: - - pos: 27.5,-12.5 - parent: 60 - type: Transform -- uid: 12086 - type: CableApcExtension - components: - - pos: 23.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12087 - type: CableApcExtension - components: - - pos: 23.5,-15.5 - parent: 60 - type: Transform -- uid: 12088 - type: CableApcExtension - components: - - pos: 23.5,-16.5 - parent: 60 - type: Transform -- uid: 12089 - type: CableApcExtension - components: - - pos: 23.5,-17.5 - parent: 60 - type: Transform -- uid: 12090 - type: CableApcExtension - components: - - pos: 23.5,-18.5 - parent: 60 - type: Transform -- uid: 12091 - type: CableApcExtension - components: - - pos: 23.5,-19.5 - parent: 60 - type: Transform -- uid: 12092 - type: CableApcExtension - components: - - pos: 23.5,-20.5 - parent: 60 - type: Transform -- uid: 12093 - type: CableApcExtension - components: - - pos: 22.5,-20.5 - parent: 60 - type: Transform -- uid: 12094 - type: CableApcExtension - components: - - pos: 21.5,-20.5 - parent: 60 - type: Transform -- uid: 12095 - type: CableApcExtension - components: - - pos: 22.5,-16.5 - parent: 60 - type: Transform -- uid: 12096 - type: CableApcExtension - components: - - pos: 21.5,-16.5 - parent: 60 - type: Transform -- uid: 12097 - type: CableApcExtension - components: - - pos: 20.5,-16.5 - parent: 60 - type: Transform -- uid: 12098 - type: CableApcExtension - components: - - pos: 24.5,-18.5 - parent: 60 - type: Transform -- uid: 12099 - type: CableApcExtension - components: - - pos: 25.5,-18.5 - parent: 60 - type: Transform -- uid: 12100 - type: CableApcExtension - components: - - pos: 26.5,-18.5 - parent: 60 - type: Transform -- uid: 12101 - type: CableApcExtension - components: - - pos: 27.5,-18.5 - parent: 60 - type: Transform -- uid: 12102 - type: CableApcExtension - components: - - pos: 21.5,-21.5 - parent: 60 - type: Transform -- uid: 12103 - type: CableApcExtension - components: - - pos: 21.5,-22.5 - parent: 60 - type: Transform -- uid: 12104 - type: CableApcExtension - components: - - pos: 21.5,-23.5 - parent: 60 - type: Transform -- uid: 12105 - type: CableApcExtension - components: - - pos: 20.5,-23.5 - parent: 60 - type: Transform -- uid: 12106 - type: CableApcExtension - components: - - pos: 19.5,-23.5 - parent: 60 - type: Transform -- uid: 12107 - type: CableApcExtension - components: - - pos: 18.5,-23.5 - parent: 60 - type: Transform -- uid: 12108 - type: CableApcExtension - components: - - pos: 17.5,-23.5 - parent: 60 - type: Transform -- uid: 12109 - type: CableApcExtension - components: - - pos: 16.5,-23.5 - parent: 60 - type: Transform -- uid: 12110 - type: CableApcExtension - components: - - pos: 16.5,-22.5 - parent: 60 - type: Transform -- uid: 12111 - type: CableApcExtension - components: - - pos: 16.5,-21.5 - parent: 60 - type: Transform -- uid: 12112 - type: CableApcExtension - components: - - pos: 16.5,-20.5 - parent: 60 - type: Transform -- uid: 12113 - type: CableApcExtension - components: - - pos: 16.5,-19.5 - parent: 60 - type: Transform -- uid: 12114 - type: CableApcExtension - components: - - pos: 16.5,-18.5 - parent: 60 - type: Transform -- uid: 12115 - type: CableApcExtension - components: - - pos: 16.5,-17.5 - parent: 60 - type: Transform -- uid: 12116 - type: CableApcExtension - components: - - pos: 16.5,-16.5 - parent: 60 - type: Transform -- uid: 12117 - type: CableApcExtension - components: - - pos: 16.5,-15.5 - parent: 60 - type: Transform -- uid: 12118 - type: CableApcExtension - components: - - pos: 16.5,-14.5 - parent: 60 - type: Transform -- uid: 12119 - type: CableApcExtension - components: - - pos: 16.5,-13.5 - parent: 60 - type: Transform -- uid: 12120 - type: CableApcExtension - components: - - pos: 16.5,-12.5 - parent: 60 - type: Transform -- uid: 12121 - type: CableApcExtension - components: - - pos: 16.5,-11.5 - parent: 60 - type: Transform -- uid: 12122 - type: CableApcExtension - components: - - pos: 15.5,-16.5 - parent: 60 - type: Transform -- uid: 12123 - type: CableApcExtension - components: - - pos: 14.5,-16.5 - parent: 60 - type: Transform -- uid: 12124 - type: CableApcExtension - components: - - pos: 13.5,-16.5 - parent: 60 - type: Transform -- uid: 12125 - type: CableApcExtension - components: - - pos: 12.5,-16.5 - parent: 60 - type: Transform -- uid: 12126 - type: CableApcExtension - components: - - pos: 11.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12127 - type: CableApcExtension - components: - - pos: 10.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12128 - type: CableApcExtension - components: - - pos: 10.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12129 - type: CableApcExtension - components: - - pos: 12.5,-17.5 - parent: 60 - type: Transform -- uid: 12130 - type: CableApcExtension - components: - - pos: 12.5,-18.5 - parent: 60 - type: Transform -- uid: 12131 - type: CableApcExtension - components: - - pos: 12.5,-19.5 - parent: 60 - type: Transform -- uid: 12132 - type: CableApcExtension - components: - - pos: 12.5,-20.5 - parent: 60 - type: Transform -- uid: 12133 - type: CableApcExtension - components: - - pos: 11.5,-20.5 - parent: 60 - type: Transform -- uid: 12134 - type: CableApcExtension - components: - - pos: 10.5,-20.5 - parent: 60 - type: Transform -- uid: 12135 - type: CableApcExtension - components: - - pos: 9.5,-20.5 - parent: 60 - type: Transform -- uid: 12136 - type: CableApcExtension - components: - - pos: 8.5,-20.5 - parent: 60 - type: Transform -- uid: 12137 - type: CableApcExtension - components: - - pos: 7.5,-20.5 - parent: 60 - type: Transform -- uid: 12138 - type: CableMV - components: - - pos: 13.5,-19.5 - parent: 60 - type: Transform -- uid: 12139 - type: CableMV - components: - - pos: 12.5,-19.5 - parent: 60 - type: Transform -- uid: 12140 - type: CableMV - components: - - pos: 12.5,-18.5 - parent: 60 - type: Transform -- uid: 12141 - type: CableMV - components: - - pos: 12.5,-17.5 - parent: 60 - type: Transform -- uid: 12142 - type: CableMV - components: - - pos: 12.5,-16.5 - parent: 60 - type: Transform -- uid: 12143 - type: CableMV - components: - - pos: 13.5,-16.5 - parent: 60 - type: Transform -- uid: 12144 - type: CableMV - components: - - pos: 14.5,-16.5 - parent: 60 - type: Transform -- uid: 12145 - type: CableMV - components: - - pos: 15.5,-16.5 - parent: 60 - type: Transform -- uid: 12146 - type: CableMV - components: - - pos: 16.5,-16.5 - parent: 60 - type: Transform -- uid: 12147 - type: CableMV - components: - - pos: 16.5,-15.5 - parent: 60 - type: Transform -- uid: 12148 - type: CableMV - components: - - pos: 16.5,-14.5 - parent: 60 - type: Transform -- uid: 12149 - type: CableMV - components: - - pos: 16.5,-13.5 - parent: 60 - type: Transform -- uid: 12150 - type: CableMV - components: - - pos: 16.5,-12.5 - parent: 60 - type: Transform -- uid: 12151 - type: CableMV - components: - - pos: 16.5,-11.5 - parent: 60 - type: Transform -- uid: 12152 - type: CableMV - components: - - pos: 16.5,-10.5 - parent: 60 - type: Transform -- uid: 12153 - type: CableHV - components: - - pos: 27.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12154 - type: CableHV - components: - - pos: 26.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12155 - type: CableHV - components: - - pos: 25.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12156 - type: CableHV - components: - - pos: 24.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12157 - type: CableHV - components: - - pos: 23.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12158 - type: CableHV - components: - - pos: 22.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12159 - type: CableHV - components: - - pos: 21.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12160 - type: CableHV - components: - - pos: 20.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12161 - type: CableHV - components: - - pos: 19.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12162 - type: CableHV - components: - - pos: 18.5,-9.5 - parent: 60 - type: Transform -- uid: 12163 - type: CableHV - components: - - pos: 17.5,-9.5 - parent: 60 - type: Transform -- uid: 12164 - type: CableHV - components: - - pos: 16.5,-9.5 - parent: 60 - type: Transform -- uid: 12165 - type: CableHV - components: - - pos: 16.5,-10.5 - parent: 60 - type: Transform -- uid: 12166 - type: CableHV - components: - - pos: 16.5,-11.5 - parent: 60 - type: Transform -- uid: 12167 - type: CableHV - components: - - pos: 16.5,-12.5 - parent: 60 - type: Transform -- uid: 12168 - type: CableHV - components: - - pos: 16.5,-13.5 - parent: 60 - type: Transform -- uid: 12169 - type: CableHV - components: - - pos: 16.5,-14.5 - parent: 60 - type: Transform -- uid: 12170 - type: CableHV - components: - - pos: 16.5,-15.5 - parent: 60 - type: Transform -- uid: 12171 - type: CableHV - components: - - pos: 16.5,-16.5 - parent: 60 - type: Transform -- uid: 12172 - type: CableHV - components: - - pos: 15.5,-16.5 - parent: 60 - type: Transform -- uid: 12173 - type: CableHV - components: - - pos: 14.5,-16.5 - parent: 60 - type: Transform -- uid: 12174 - type: CableHV - components: - - pos: 13.5,-16.5 - parent: 60 - type: Transform -- uid: 12175 - type: CableHV - components: - - pos: 12.5,-16.5 - parent: 60 - type: Transform -- uid: 12176 - type: CableHV - components: - - pos: 12.5,-17.5 - parent: 60 - type: Transform -- uid: 12177 - type: CableHV - components: - - pos: 12.5,-18.5 - parent: 60 - type: Transform -- uid: 12178 - type: CableHV - components: - - pos: 12.5,-19.5 - parent: 60 - type: Transform -- uid: 12179 - type: CableHV - components: - - pos: 13.5,-19.5 - parent: 60 - type: Transform -- uid: 12180 - type: CableHV - components: - - pos: 12.5,-20.5 - parent: 60 - type: Transform -- uid: 12181 - type: CableHV - components: - - pos: 11.5,-20.5 - parent: 60 - type: Transform -- uid: 12182 - type: CableHV - components: - - pos: 10.5,-20.5 - parent: 60 - type: Transform -- uid: 12183 - type: CableHV - components: - - pos: 8.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12184 - type: CableHV - components: - - pos: 8.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12185 - type: CableHV - components: - - pos: 7.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12186 - type: CableHV - components: - - pos: 7.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12187 - type: CableHV - components: - - pos: 7.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12188 - type: CableHV - components: - - pos: 7.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12189 - type: CableHV - components: - - pos: 7.5,-35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12190 - type: CableHV - components: - - pos: 7.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12191 - type: FireExtinguisher - components: - - pos: 44.505737,-0.30533433 - parent: 60 - type: Transform -- uid: 12192 - type: AirAlarm - components: - - pos: 47.5,4.5 - parent: 60 - type: Transform - - devices: - - 18915 - - 18906 - - 18910 - - 21548 - - 9282 - type: DeviceList -- uid: 12193 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 44.5,1.5 - parent: 60 - type: Transform - - devices: - - 21548 - - 9282 - type: DeviceList -- uid: 12194 - type: OreBag - components: - - pos: 42.498352,-0.3113162 - parent: 60 - type: Transform -- uid: 12195 - type: Table - components: - - pos: 42.5,-0.5 - parent: 60 - type: Transform -- uid: 12196 - type: BannerCargo - components: - - pos: 36.5,2.5 - parent: 60 - type: Transform -- uid: 12197 - type: LockerSalvageSpecialistFilled - components: - - pos: 36.5,-0.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12198 - type: CableHV - components: - - pos: 0.5,-34.5 - parent: 60 - type: Transform -- uid: 12199 - type: CableHV - components: - - pos: 0.5,-33.5 - parent: 60 - type: Transform -- uid: 12200 - type: CableHV - components: - - pos: 0.5,-32.5 - parent: 60 - type: Transform -- uid: 12201 - type: CableHV - components: - - pos: 0.5,-31.5 - parent: 60 - type: Transform -- uid: 12202 - type: CableHV - components: - - pos: 0.5,-30.5 - parent: 60 - type: Transform -- uid: 12203 - type: CableHV - components: - - pos: 0.5,-29.5 - parent: 60 - type: Transform -- uid: 12204 - type: CableHV - components: - - pos: 0.5,-28.5 - parent: 60 - type: Transform -- uid: 12205 - type: CableHV - components: - - pos: 0.5,-27.5 - parent: 60 - type: Transform -- uid: 12206 - type: CableHV - components: - - pos: 0.5,-26.5 - parent: 60 - type: Transform -- uid: 12207 - type: CableHV - components: - - pos: 0.5,-25.5 - parent: 60 - type: Transform -- uid: 12208 - type: CableHV - components: - - pos: 0.5,-24.5 - parent: 60 - type: Transform -- uid: 12209 - type: CableHV - components: - - pos: 1.5,-24.5 - parent: 60 - type: Transform -- uid: 12210 - type: CableHV - components: - - pos: 2.5,-24.5 - parent: 60 - type: Transform -- uid: 12211 - type: CableHV - components: - - pos: 3.5,-24.5 - parent: 60 - type: Transform -- uid: 12212 - type: CableHV - components: - - pos: 4.5,-24.5 - parent: 60 - type: Transform -- uid: 12213 - type: CableHV - components: - - pos: 5.5,-24.5 - parent: 60 - type: Transform -- uid: 12214 - type: CableHV - components: - - pos: 7.5,-24.5 - parent: 60 - type: Transform -- uid: 12215 - type: CableHV - components: - - pos: 6.5,-24.5 - parent: 60 - type: Transform -- uid: 12216 - type: CableHV - components: - - pos: 8.5,-24.5 - parent: 60 - type: Transform -- uid: 12217 - type: CableHV - components: - - pos: 9.5,-24.5 - parent: 60 - type: Transform -- uid: 12218 - type: CableHV - components: - - pos: 9.5,-23.5 - parent: 60 - type: Transform -- uid: 12219 - type: CableHV - components: - - pos: 9.5,-22.5 - parent: 60 - type: Transform -- uid: 12220 - type: CableHV - components: - - pos: 9.5,-21.5 - parent: 60 - type: Transform -- uid: 12221 - type: GasPipeStraight - components: - - pos: 9.5,-21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12222 - type: CableHV - components: - - pos: 9.5,-20.5 - parent: 60 - type: Transform -- uid: 12223 - type: CableHV - components: - - pos: 7.5,-32.5 - parent: 60 - type: Transform -- uid: 12224 - type: CableHV - components: - - pos: 7.5,-31.5 - parent: 60 - type: Transform -- uid: 12225 - type: CableHV - components: - - pos: 6.5,-31.5 - parent: 60 - type: Transform -- uid: 12226 - type: CableHV - components: - - pos: 5.5,-31.5 - parent: 60 - type: Transform -- uid: 12227 - type: CableHV - components: - - pos: 5.5,-30.5 - parent: 60 - type: Transform -- uid: 12228 - type: CableHV - components: - - pos: 5.5,-29.5 - parent: 60 - type: Transform -- uid: 12229 - type: CableHV - components: - - pos: 5.5,-28.5 - parent: 60 - type: Transform -- uid: 12230 - type: CableHV - components: - - pos: 5.5,-27.5 - parent: 60 - type: Transform -- uid: 12231 - type: CableHV - components: - - pos: 5.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12232 - type: CableHV - components: - - pos: 4.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12233 - type: CableHV - components: - - pos: 6.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12234 - type: CableHV - components: - - pos: -12.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12235 - type: CableHV - components: - - pos: -11.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12236 - type: CableHV - components: - - pos: -10.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12237 - type: CableHV - components: - - pos: -9.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12238 - type: CableHV - components: - - pos: -8.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12239 - type: CableHV - components: - - pos: -7.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12240 - type: CableHV - components: - - pos: -6.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12241 - type: CableHV - components: - - pos: -5.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12242 - type: CableHV - components: - - pos: -4.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12243 - type: CableHV - components: - - pos: -3.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12244 - type: CableHV - components: - - pos: -2.5,-30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12245 - type: CableHV - components: - - pos: -1.5,-30.5 - parent: 60 - type: Transform -- uid: 12246 - type: CableHV - components: - - pos: -0.5,-30.5 - parent: 60 - type: Transform -- uid: 12247 - type: Catwalk - components: - - pos: -11.5,-30.5 - parent: 60 - type: Transform -- uid: 12248 - type: Catwalk - components: - - pos: -10.5,-30.5 - parent: 60 - type: Transform -- uid: 12249 - type: Catwalk - components: - - pos: -9.5,-30.5 - parent: 60 - type: Transform -- uid: 12250 - type: Catwalk - components: - - pos: -8.5,-30.5 - parent: 60 - type: Transform -- uid: 12251 - type: Catwalk - components: - - pos: -7.5,-30.5 - parent: 60 - type: Transform -- uid: 12252 - type: Catwalk - components: - - pos: -5.5,-30.5 - parent: 60 - type: Transform -- uid: 12253 - type: Catwalk - components: - - pos: -4.5,-30.5 - parent: 60 - type: Transform -- uid: 12254 - type: Catwalk - components: - - pos: -3.5,-30.5 - parent: 60 - type: Transform -- uid: 12255 - type: Catwalk - components: - - pos: -2.5,-30.5 - parent: 60 - type: Transform -- uid: 12256 - type: MaintenanceFluffSpawner - components: - - pos: -4.5,-31.5 - parent: 60 - type: Transform -- uid: 12257 - type: Poweredlight - components: - - pos: 25.5,-22.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12258 - type: Poweredlight - components: - - pos: 31.5,-22.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12259 - type: SolarPanel - components: - - pos: 28.5,-68.5 - parent: 60 - type: Transform -- uid: 12260 - type: SolarPanel - components: - - pos: 37.5,-74.5 - parent: 60 - type: Transform -- uid: 12261 - type: SolarPanel - components: - - pos: 32.5,-72.5 - parent: 60 - type: Transform -- uid: 12262 - type: SolarPanel - components: - - pos: 34.5,-66.5 - parent: 60 - type: Transform -- uid: 12263 - type: Catwalk - components: - - pos: 27.5,-67.5 - parent: 60 - type: Transform -- uid: 12264 - type: CableHV - components: - - pos: 24.5,-74.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12265 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-9.5 - parent: 60 - type: Transform -- uid: 12266 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-9.5 - parent: 60 - type: Transform -- uid: 12267 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-9.5 - parent: 60 - type: Transform -- uid: 12268 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 60 - type: Transform -- uid: 12269 - type: AtmosDeviceFanTiny - components: - - pos: 39.5,-46.5 - parent: 60 - type: Transform -- uid: 12270 - type: WallSolid - components: - - pos: 49.5,15.5 - parent: 60 - type: Transform -- uid: 12271 - type: ChairOfficeDark - components: - - pos: 47.5,18.5 - parent: 60 - type: Transform -- uid: 12272 - type: WaterCooler - components: - - pos: 51.5,16.5 - parent: 60 - type: Transform -- uid: 12273 - type: WallSolid - components: - - pos: 47.5,15.5 - parent: 60 - type: Transform -- uid: 12274 - type: Grille - components: - - pos: 53.5,16.5 - parent: 60 - type: Transform -- uid: 12275 - type: CableMV - components: - - pos: 51.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12276 - type: CableMV - components: - - pos: -13.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12277 - type: Grille - components: - - pos: 40.5,-67.5 - parent: 60 - type: Transform -- uid: 12278 - type: CableApcExtension - components: - - pos: 17.5,-2.5 - parent: 60 - type: Transform -- uid: 12279 - type: APCBasic - components: - - pos: 43.5,-7.5 - parent: 60 - type: Transform -- uid: 12280 - type: CableMV - components: - - pos: 50.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12281 - type: ReinforcedWindow - components: - - pos: 51.5,29.5 - parent: 60 - type: Transform -- uid: 12282 - type: Grille - components: - - pos: 25.5,12.5 - parent: 60 - type: Transform -- uid: 12283 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-0.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 5805 - Forward: - - port: Left - uid: 5805 - Off: - - port: Middle - uid: 5805 - type: SignalReceiver -- uid: 12284 - type: WallReinforced - components: - - pos: 57.5,8.5 - parent: 60 - type: Transform -- uid: 12285 - type: SolarPanel - components: - - pos: 35.5,-70.5 - parent: 60 - type: Transform -- uid: 12286 - type: Catwalk - components: - - pos: 28.5,-75.5 - parent: 60 - type: Transform -- uid: 12287 - type: SolarPanel - components: - - pos: 34.5,-68.5 - parent: 60 - type: Transform -- uid: 12288 - type: Catwalk - components: - - pos: 35.5,-75.5 - parent: 60 - type: Transform -- uid: 12289 - type: WallSolid - components: - - pos: 34.5,10.5 - parent: 60 - type: Transform -- uid: 12290 - type: Grille - components: - - pos: 43.5,27.5 - parent: 60 - type: Transform -- uid: 12291 - type: Grille - components: - - pos: 43.5,30.5 - parent: 60 - type: Transform -- uid: 12292 - type: Catwalk - components: - - pos: 25.5,-63.5 - parent: 60 - type: Transform -- uid: 12293 - type: CableHV - components: - - pos: 32.5,-62.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12294 - type: Grille - components: - - pos: 29.5,-80.5 - parent: 60 - type: Transform -- uid: 12295 - type: ReinforcedWindow - components: - - pos: 21.5,28.5 - parent: 60 - type: Transform -- uid: 12296 - type: Catwalk - components: - - pos: 28.5,-63.5 - parent: 60 - type: Transform -- uid: 12297 - type: CableMV - components: - - pos: 43.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12298 - type: CableMV - components: - - pos: 43.5,-7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12299 - type: CableMV - components: - - pos: 37.5,-16.5 - parent: 60 - type: Transform -- uid: 12300 - type: CableMV - components: - - pos: 38.5,-16.5 - parent: 60 - type: Transform -- uid: 12301 - type: CableMV - components: - - pos: 39.5,-16.5 - parent: 60 - type: Transform -- uid: 12302 - type: CableMV - components: - - pos: 40.5,-16.5 - parent: 60 - type: Transform -- uid: 12303 - type: CableMV - components: - - pos: 41.5,-16.5 - parent: 60 - type: Transform -- uid: 12304 - type: CableMV - components: - - pos: 42.5,-16.5 - parent: 60 - type: Transform -- uid: 12305 - type: CableMV - components: - - pos: 43.5,-16.5 - parent: 60 - type: Transform -- uid: 12306 - type: CableMV - components: - - pos: 43.5,-15.5 - parent: 60 - type: Transform -- uid: 12307 - type: CableMV - components: - - pos: 43.5,-14.5 - parent: 60 - type: Transform -- uid: 12308 - type: CableMV - components: - - pos: 43.5,-13.5 - parent: 60 - type: Transform -- uid: 12309 - type: CableMV - components: - - pos: 43.5,-12.5 - parent: 60 - type: Transform -- uid: 12310 - type: CableMV - components: - - pos: 43.5,-11.5 - parent: 60 - type: Transform -- uid: 12311 - type: CableMV - components: - - pos: 43.5,-10.5 - parent: 60 - type: Transform -- uid: 12312 - type: CableMV - components: - - pos: 43.5,-9.5 - parent: 60 - type: Transform -- uid: 12313 - type: CableMV - components: - - pos: 43.5,-8.5 - parent: 60 - type: Transform -- uid: 12314 - type: CableMV - components: - - pos: 44.5,-8.5 - parent: 60 - type: Transform -- uid: 12315 - type: CableMV - components: - - pos: 44.5,-7.5 - parent: 60 - type: Transform -- uid: 12316 - type: CableMV - components: - - pos: 44.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12317 - type: CableApcExtension - components: - - pos: 43.5,-7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12318 - type: CableApcExtension - components: - - pos: 43.5,-8.5 - parent: 60 - type: Transform -- uid: 12319 - type: CableApcExtension - components: - - pos: 43.5,-9.5 - parent: 60 - type: Transform -- uid: 12320 - type: CableApcExtension - components: - - pos: 42.5,-9.5 - parent: 60 - type: Transform -- uid: 12321 - type: CableApcExtension - components: - - pos: 41.5,-9.5 - parent: 60 - type: Transform -- uid: 12322 - type: CableApcExtension - components: - - pos: 40.5,-9.5 - parent: 60 - type: Transform -- uid: 12323 - type: CableApcExtension - components: - - pos: 39.5,-9.5 - parent: 60 - type: Transform -- uid: 12324 - type: CableApcExtension - components: - - pos: 38.5,-9.5 - parent: 60 - type: Transform -- uid: 12325 - type: CableApcExtension - components: - - pos: 37.5,-9.5 - parent: 60 - type: Transform -- uid: 12326 - type: GrilleBroken - components: - - pos: 46.5,-60.5 - parent: 60 - type: Transform -- uid: 12327 - type: Grille - components: - - pos: 51.5,30.5 - parent: 60 - type: Transform -- uid: 12328 - type: AirlockEngineeringLocked - components: - - pos: 60.5,-38.5 - parent: 60 - type: Transform -- uid: 12329 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 19.5,9.5 - parent: 60 - type: Transform -- uid: 12330 - type: CableApcExtension - components: - - pos: 44.5,-9.5 - parent: 60 - type: Transform -- uid: 12331 - type: CableApcExtension - components: - - pos: 45.5,-9.5 - parent: 60 - type: Transform -- uid: 12332 - type: CableApcExtension - components: - - pos: 46.5,-9.5 - parent: 60 - type: Transform -- uid: 12333 - type: CableApcExtension - components: - - pos: 47.5,-9.5 - parent: 60 - type: Transform -- uid: 12334 - type: CableApcExtension - components: - - pos: 48.5,-9.5 - parent: 60 - type: Transform -- uid: 12335 - type: CableApcExtension - components: - - pos: 49.5,-9.5 - parent: 60 - type: Transform -- uid: 12336 - type: CableApcExtension - components: - - pos: 44.5,-10.5 - parent: 60 - type: Transform -- uid: 12337 - type: CableApcExtension - components: - - pos: 44.5,-11.5 - parent: 60 - type: Transform -- uid: 12338 - type: CableApcExtension - components: - - pos: 44.5,-12.5 - parent: 60 - type: Transform -- uid: 12339 - type: CableApcExtension - components: - - pos: 44.5,-13.5 - parent: 60 - type: Transform -- uid: 12340 - type: CableApcExtension - components: - - pos: 44.5,-14.5 - parent: 60 - type: Transform -- uid: 12341 - type: CableApcExtension - components: - - pos: 44.5,-15.5 - parent: 60 - type: Transform -- uid: 12342 - type: CableApcExtension - components: - - pos: 43.5,-13.5 - parent: 60 - type: Transform -- uid: 12343 - type: CableApcExtension - components: - - pos: 42.5,-13.5 - parent: 60 - type: Transform -- uid: 12344 - type: CableApcExtension - components: - - pos: 41.5,-13.5 - parent: 60 - type: Transform -- uid: 12345 - type: CableApcExtension - components: - - pos: 40.5,-13.5 - parent: 60 - type: Transform -- uid: 12346 - type: CableApcExtension - components: - - pos: 39.5,-13.5 - parent: 60 - type: Transform -- uid: 12347 - type: CableApcExtension - components: - - pos: 38.5,-13.5 - parent: 60 - type: Transform -- uid: 12348 - type: CableApcExtension - components: - - pos: 45.5,-13.5 - parent: 60 - type: Transform -- uid: 12349 - type: CableApcExtension - components: - - pos: 46.5,-13.5 - parent: 60 - type: Transform -- uid: 12350 - type: CableApcExtension - components: - - pos: 47.5,-13.5 - parent: 60 - type: Transform -- uid: 12351 - type: CableApcExtension - components: - - pos: 48.5,-13.5 - parent: 60 - type: Transform -- uid: 12352 - type: CableApcExtension - components: - - pos: 49.5,-13.5 - parent: 60 - type: Transform -- uid: 12353 - type: CableApcExtension - components: - - pos: 44.5,-16.5 - parent: 60 - type: Transform -- uid: 12354 - type: CableApcExtension - components: - - pos: 43.5,-16.5 - parent: 60 - type: Transform -- uid: 12355 - type: CableApcExtension - components: - - pos: 42.5,-16.5 - parent: 60 - type: Transform -- uid: 12356 - type: CableApcExtension - components: - - pos: 41.5,-16.5 - parent: 60 - type: Transform -- uid: 12357 - type: CableApcExtension - components: - - pos: 40.5,-16.5 - parent: 60 - type: Transform -- uid: 12358 - type: CableApcExtension - components: - - pos: 39.5,-16.5 - parent: 60 - type: Transform -- uid: 12359 - type: CableApcExtension - components: - - pos: 38.5,-16.5 - parent: 60 - type: Transform -- uid: 12360 - type: CableApcExtension - components: - - pos: 37.5,-16.5 - parent: 60 - type: Transform -- uid: 12361 - type: CableApcExtension - components: - - pos: 36.5,-16.5 - parent: 60 - type: Transform -- uid: 12362 - type: CableApcExtension - components: - - pos: 35.5,-16.5 - parent: 60 - type: Transform -- uid: 12363 - type: CableApcExtension - components: - - pos: 34.5,-16.5 - parent: 60 - type: Transform -- uid: 12364 - type: CableApcExtension - components: - - pos: 33.5,-16.5 - parent: 60 - type: Transform -- uid: 12365 - type: CableApcExtension - components: - - pos: 32.5,-16.5 - parent: 60 - type: Transform -- uid: 12366 - type: CableApcExtension - components: - - pos: 33.5,-15.5 - parent: 60 - type: Transform -- uid: 12367 - type: CableApcExtension - components: - - pos: 33.5,-14.5 - parent: 60 - type: Transform -- uid: 12368 - type: CableApcExtension - components: - - pos: 33.5,-13.5 - parent: 60 - type: Transform -- uid: 12369 - type: CableApcExtension - components: - - pos: 34.5,-13.5 - parent: 60 - type: Transform -- uid: 12370 - type: CableApcExtension - components: - - pos: 35.5,-13.5 - parent: 60 - type: Transform -- uid: 12371 - type: CableApcExtension - components: - - pos: 36.5,-13.5 - parent: 60 - type: Transform -- uid: 12372 - type: CableApcExtension - components: - - pos: 32.5,-13.5 - parent: 60 - type: Transform -- uid: 12373 - type: CableApcExtension - components: - - pos: 31.5,-13.5 - parent: 60 - type: Transform -- uid: 12374 - type: CableApcExtension - components: - - pos: 30.5,-13.5 - parent: 60 - type: Transform -- uid: 12375 - type: CableApcExtension - components: - - pos: 29.5,-13.5 - parent: 60 - type: Transform -- uid: 12376 - type: CableApcExtension - components: - - pos: 31.5,-16.5 - parent: 60 - type: Transform -- uid: 12377 - type: CableApcExtension - components: - - pos: 30.5,-16.5 - parent: 60 - type: Transform -- uid: 12378 - type: CableApcExtension - components: - - pos: 33.5,-17.5 - parent: 60 - type: Transform -- uid: 12379 - type: CableApcExtension - components: - - pos: 33.5,-18.5 - parent: 60 - type: Transform -- uid: 12380 - type: CableApcExtension - components: - - pos: 33.5,-19.5 - parent: 60 - type: Transform -- uid: 12381 - type: CableApcExtension - components: - - pos: 33.5,-20.5 - parent: 60 - type: Transform -- uid: 12382 - type: CableApcExtension - components: - - pos: 32.5,-19.5 - parent: 60 - type: Transform -- uid: 12383 - type: CableApcExtension - components: - - pos: 31.5,-19.5 - parent: 60 - type: Transform -- uid: 12384 - type: CableApcExtension - components: - - pos: 30.5,-19.5 - parent: 60 - type: Transform -- uid: 12385 - type: CableApcExtension - components: - - pos: 29.5,-19.5 - parent: 60 - type: Transform -- uid: 12386 - type: CableApcExtension - components: - - pos: 33.5,-21.5 - parent: 60 - type: Transform -- uid: 12387 - type: CableApcExtension - components: - - pos: 33.5,-22.5 - parent: 60 - type: Transform -- uid: 12388 - type: CableApcExtension - components: - - pos: 33.5,-23.5 - parent: 60 - type: Transform -- uid: 12389 - type: CableApcExtension - components: - - pos: 32.5,-23.5 - parent: 60 - type: Transform -- uid: 12390 - type: CableApcExtension - components: - - pos: 31.5,-23.5 - parent: 60 - type: Transform -- uid: 12391 - type: CableApcExtension - components: - - pos: 30.5,-23.5 - parent: 60 - type: Transform -- uid: 12392 - type: CableApcExtension - components: - - pos: 29.5,-23.5 - parent: 60 - type: Transform -- uid: 12393 - type: CableApcExtension - components: - - pos: 28.5,-23.5 - parent: 60 - type: Transform -- uid: 12394 - type: CableApcExtension - components: - - pos: 27.5,-23.5 - parent: 60 - type: Transform -- uid: 12395 - type: CableApcExtension - components: - - pos: 26.5,-23.5 - parent: 60 - type: Transform -- uid: 12396 - type: CableApcExtension - components: - - pos: 25.5,-23.5 - parent: 60 - type: Transform -- uid: 12397 - type: CableApcExtension - components: - - pos: 24.5,-23.5 - parent: 60 - type: Transform -- uid: 12398 - type: CableApcExtension - components: - - pos: 43.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12399 - type: WallReinforced - components: - - pos: 42.5,26.5 - parent: 60 - type: Transform -- uid: 12400 - type: WallReinforced - components: - - pos: 25.5,21.5 - parent: 60 - type: Transform -- uid: 12401 - type: PlasticFlapsAirtightClear - components: - - pos: 52.5,-0.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 12402 - type: AirlockMaintLocked - components: - - pos: 28.5,10.5 - parent: 60 - type: Transform -- uid: 12403 - type: Grille - components: - - pos: 55.5,-1.5 - parent: 60 - type: Transform -- uid: 12404 - type: WallSolid - components: - - pos: 31.5,6.5 - parent: 60 - type: Transform -- uid: 12405 - type: Grille - components: - - pos: 49.5,28.5 - parent: 60 - type: Transform -- uid: 12406 - type: Grille - components: - - pos: 51.5,28.5 - parent: 60 - type: Transform -- uid: 12407 - type: Grille - components: - - pos: 50.5,30.5 - parent: 60 - type: Transform -- uid: 12408 - type: Grille - components: - - pos: 49.5,30.5 - parent: 60 - type: Transform -- uid: 12409 - type: Grille - components: - - pos: 51.5,29.5 - parent: 60 - type: Transform -- uid: 12410 - type: Grille - components: - - pos: 50.5,28.5 - parent: 60 - type: Transform -- uid: 12411 - type: CableMV - components: - - pos: 48.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12412 - type: Grille - components: - - pos: 46.5,-57.5 - parent: 60 - type: Transform -- uid: 12413 - type: Catwalk - components: - - pos: 63.5,-21.5 - parent: 60 - type: Transform -- uid: 12414 - type: CableMV - components: - - pos: 47.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12415 - type: CableMV - components: - - pos: 46.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12416 - type: WallReinforced - components: - - pos: 18.5,19.5 - parent: 60 - type: Transform -- uid: 12417 - type: Catwalk - components: - - pos: 63.5,-19.5 - parent: 60 - type: Transform -- uid: 12418 - type: Catwalk - components: - - pos: 63.5,-17.5 - parent: 60 - type: Transform -- uid: 12419 - type: Catwalk - components: - - pos: 63.5,-15.5 - parent: 60 - type: Transform -- uid: 12420 - type: CableApcExtension - components: - - pos: 44.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12421 - type: CableApcExtension - components: - - pos: 45.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12422 - type: CableApcExtension - components: - - pos: 46.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12423 - type: CableApcExtension - components: - - pos: 47.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12424 - type: CableApcExtension - components: - - pos: 48.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12425 - type: CableApcExtension - components: - - pos: 49.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12426 - type: CableApcExtension - components: - - pos: 50.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12427 - type: CableApcExtension - components: - - pos: 51.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12428 - type: CableApcExtension - components: - - pos: 52.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12429 - type: CableApcExtension - components: - - pos: 53.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12430 - type: CableApcExtension - components: - - pos: 53.5,-7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12431 - type: CableApcExtension - components: - - pos: 53.5,-8.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12432 - type: CableApcExtension - components: - - pos: 53.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12433 - type: CableApcExtension - components: - - pos: 53.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12434 - type: CableApcExtension - components: - - pos: 54.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12435 - type: CableApcExtension - components: - - pos: 54.5,-11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12436 - type: CableApcExtension - components: - - pos: 54.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12437 - type: CableApcExtension - components: - - pos: 54.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12438 - type: CableApcExtension - components: - - pos: 54.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12439 - type: CableApcExtension - components: - - pos: 54.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12440 - type: CableApcExtension - components: - - pos: 54.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12441 - type: CableApcExtension - components: - - pos: 54.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12442 - type: CableApcExtension - components: - - pos: 54.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12443 - type: APCBasic - components: - - pos: 39.5,-33.5 - parent: 60 - type: Transform -- uid: 12444 - type: CableMV - components: - - pos: 39.5,-35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12445 - type: CableMV - components: - - pos: 39.5,-34.5 - parent: 60 - type: Transform -- uid: 12446 - type: CableMV - components: - - pos: 39.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12447 - type: CableApcExtension - components: - - pos: 39.5,-31.5 - parent: 60 - type: Transform -- uid: 12448 - type: CableApcExtension - components: - - pos: 39.5,-30.5 - parent: 60 - type: Transform -- uid: 12449 - type: CableApcExtension - components: - - pos: 39.5,-29.5 - parent: 60 - type: Transform -- uid: 12450 - type: CableApcExtension - components: - - pos: 39.5,-28.5 - parent: 60 - type: Transform -- uid: 12451 - type: CableApcExtension - components: - - pos: 39.5,-27.5 - parent: 60 - type: Transform -- uid: 12452 - type: CableApcExtension - components: - - pos: 39.5,-26.5 - parent: 60 - type: Transform -- uid: 12453 - type: CableApcExtension - components: - - pos: 38.5,-28.5 - parent: 60 - type: Transform -- uid: 12454 - type: CableApcExtension - components: - - pos: 37.5,-28.5 - parent: 60 - type: Transform -- uid: 12455 - type: CableApcExtension - components: - - pos: 40.5,-27.5 - parent: 60 - type: Transform -- uid: 12456 - type: CableApcExtension - components: - - pos: 41.5,-27.5 - parent: 60 - type: Transform -- uid: 12457 - type: CableApcExtension - components: - - pos: 38.5,-31.5 - parent: 60 - type: Transform -- uid: 12458 - type: CableApcExtension - components: - - pos: 37.5,-31.5 - parent: 60 - type: Transform -- uid: 12459 - type: CableApcExtension - components: - - pos: 40.5,-31.5 - parent: 60 - type: Transform -- uid: 12460 - type: CableApcExtension - components: - - pos: 41.5,-31.5 - parent: 60 - type: Transform -- uid: 12461 - type: CableApcExtension - components: - - pos: 42.5,-31.5 - parent: 60 - type: Transform -- uid: 12462 - type: CableApcExtension - components: - - pos: 44.5,-31.5 - parent: 60 - type: Transform -- uid: 12463 - type: CableApcExtension - components: - - pos: 43.5,-31.5 - parent: 60 - type: Transform -- uid: 12464 - type: CableApcExtension - components: - - pos: 44.5,-32.5 - parent: 60 - type: Transform -- uid: 12465 - type: CableApcExtension - components: - - pos: 44.5,-33.5 - parent: 60 - type: Transform -- uid: 12466 - type: CableApcExtension - components: - - pos: 44.5,-34.5 - parent: 60 - type: Transform -- uid: 12467 - type: APCBasic - components: - - pos: 52.5,-24.5 - parent: 60 - type: Transform -- uid: 12468 - type: CableApcExtension - components: - - pos: 46.5,-32.5 - parent: 60 - type: Transform -- uid: 12469 - type: CableApcExtension - components: - - pos: 47.5,-32.5 - parent: 60 - type: Transform -- uid: 12470 - type: CableApcExtension - components: - - pos: 48.5,-32.5 - parent: 60 - type: Transform -- uid: 12471 - type: CableApcExtension - components: - - pos: 49.5,-32.5 - parent: 60 - type: Transform -- uid: 12472 - type: CableApcExtension - components: - - pos: 50.5,-32.5 - parent: 60 - type: Transform -- uid: 12473 - type: CableApcExtension - components: - - pos: 51.5,-32.5 - parent: 60 - type: Transform -- uid: 12474 - type: CableApcExtension - components: - - pos: 51.5,-31.5 - parent: 60 - type: Transform -- uid: 12475 - type: CableApcExtension - components: - - pos: 51.5,-30.5 - parent: 60 - type: Transform -- uid: 12476 - type: CableApcExtension - components: - - pos: 51.5,-29.5 - parent: 60 - type: Transform -- uid: 12477 - type: CableApcExtension - components: - - pos: 51.5,-28.5 - parent: 60 - type: Transform -- uid: 12478 - type: CableApcExtension - components: - - pos: 51.5,-27.5 - parent: 60 - type: Transform -- uid: 12479 - type: CableApcExtension - components: - - pos: 51.5,-26.5 - parent: 60 - type: Transform -- uid: 12480 - type: CableApcExtension - components: - - pos: 50.5,-26.5 - parent: 60 - type: Transform -- uid: 12481 - type: CableApcExtension - components: - - pos: 49.5,-26.5 - parent: 60 - type: Transform -- uid: 12482 - type: CableApcExtension - components: - - pos: 48.5,-26.5 - parent: 60 - type: Transform -- uid: 12483 - type: CableApcExtension - components: - - pos: 47.5,-26.5 - parent: 60 - type: Transform -- uid: 12484 - type: CableApcExtension - components: - - pos: 47.5,-27.5 - parent: 60 - type: Transform -- uid: 12485 - type: CableApcExtension - components: - - pos: 47.5,-28.5 - parent: 60 - type: Transform -- uid: 12486 - type: CableApcExtension - components: - - pos: 47.5,-29.5 - parent: 60 - type: Transform -- uid: 12487 - type: CableApcExtension - components: - - pos: 48.5,-29.5 - parent: 60 - type: Transform -- uid: 12488 - type: CableApcExtension - components: - - pos: 44.5,-30.5 - parent: 60 - type: Transform -- uid: 12489 - type: CableApcExtension - components: - - pos: 44.5,-29.5 - parent: 60 - type: Transform -- uid: 12490 - type: CableApcExtension - components: - - pos: 44.5,-28.5 - parent: 60 - type: Transform -- uid: 12491 - type: CableApcExtension - components: - - pos: 44.5,-27.5 - parent: 60 - type: Transform -- uid: 12492 - type: CableApcExtension - components: - - pos: 44.5,-26.5 - parent: 60 - type: Transform -- uid: 12493 - type: CableApcExtension - components: - - pos: 44.5,-25.5 - parent: 60 - type: Transform -- uid: 12494 - type: CableApcExtension - components: - - pos: 44.5,-24.5 - parent: 60 - type: Transform -- uid: 12495 - type: CableApcExtension - components: - - pos: 44.5,-23.5 - parent: 60 - type: Transform -- uid: 12496 - type: CableApcExtension - components: - - pos: 43.5,-23.5 - parent: 60 - type: Transform -- uid: 12497 - type: CableApcExtension - components: - - pos: 42.5,-23.5 - parent: 60 - type: Transform -- uid: 12498 - type: CableApcExtension - components: - - pos: 41.5,-23.5 - parent: 60 - type: Transform -- uid: 12499 - type: CableApcExtension - components: - - pos: 40.5,-23.5 - parent: 60 - type: Transform -- uid: 12500 - type: CableApcExtension - components: - - pos: 39.5,-23.5 - parent: 60 - type: Transform -- uid: 12501 - type: CableApcExtension - components: - - pos: 38.5,-23.5 - parent: 60 - type: Transform -- uid: 12502 - type: CableApcExtension - components: - - pos: 37.5,-23.5 - parent: 60 - type: Transform -- uid: 12503 - type: CableApcExtension - components: - - pos: 44.5,-22.5 - parent: 60 - type: Transform -- uid: 12504 - type: CableApcExtension - components: - - pos: 44.5,-21.5 - parent: 60 - type: Transform -- uid: 12505 - type: CableApcExtension - components: - - pos: 44.5,-20.5 - parent: 60 - type: Transform -- uid: 12506 - type: CableApcExtension - components: - - pos: 43.5,-20.5 - parent: 60 - type: Transform -- uid: 12507 - type: CableApcExtension - components: - - pos: 42.5,-20.5 - parent: 60 - type: Transform -- uid: 12508 - type: CableApcExtension - components: - - pos: 41.5,-20.5 - parent: 60 - type: Transform -- uid: 12509 - type: CableApcExtension - components: - - pos: 40.5,-20.5 - parent: 60 - type: Transform -- uid: 12510 - type: CableApcExtension - components: - - pos: 39.5,-20.5 - parent: 60 - type: Transform -- uid: 12511 - type: CableApcExtension - components: - - pos: 38.5,-20.5 - parent: 60 - type: Transform -- uid: 12512 - type: CableApcExtension - components: - - pos: 37.5,-20.5 - parent: 60 - type: Transform -- uid: 12513 - type: APCBasic - components: - - pos: 50.5,-19.5 - parent: 60 - type: Transform -- uid: 12514 - type: CableApcExtension - components: - - pos: 46.5,-21.5 - parent: 60 - type: Transform -- uid: 12515 - type: CableApcExtension - components: - - pos: 47.5,-21.5 - parent: 60 - type: Transform -- uid: 12516 - type: CableApcExtension - components: - - pos: 48.5,-21.5 - parent: 60 - type: Transform -- uid: 12517 - type: CableApcExtension - components: - - pos: 49.5,-21.5 - parent: 60 - type: Transform -- uid: 12518 - type: CableApcExtension - components: - - pos: 50.5,-21.5 - parent: 60 - type: Transform -- uid: 12519 - type: CableApcExtension - components: - - pos: 51.5,-21.5 - parent: 60 - type: Transform -- uid: 12520 - type: CableApcExtension - components: - - pos: 49.5,-22.5 - parent: 60 - type: Transform -- uid: 12521 - type: CableApcExtension - components: - - pos: 49.5,-23.5 - parent: 60 - type: Transform -- uid: 12522 - type: CableApcExtension - components: - - pos: 49.5,-20.5 - parent: 60 - type: Transform -- uid: 12523 - type: CableApcExtension - components: - - pos: 44.5,-19.5 - parent: 60 - type: Transform -- uid: 12524 - type: CableApcExtension - components: - - pos: 44.5,-18.5 - parent: 60 - type: Transform -- uid: 12525 - type: CableApcExtension - components: - - pos: 45.5,-18.5 - parent: 60 - type: Transform -- uid: 12526 - type: CableApcExtension - components: - - pos: 47.5,-18.5 - parent: 60 - type: Transform -- uid: 12527 - type: CableApcExtension - components: - - pos: 46.5,-18.5 - parent: 60 - type: Transform -- uid: 12528 - type: CableApcExtension - components: - - pos: 48.5,-18.5 - parent: 60 - type: Transform -- uid: 12529 - type: CableApcExtension - components: - - pos: 49.5,-18.5 - parent: 60 - type: Transform -- uid: 12530 - type: CableApcExtension - components: - - pos: 52.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12531 - type: CableApcExtension - components: - - pos: 53.5,-21.5 - parent: 60 - type: Transform -- uid: 12532 - type: CableApcExtension - components: - - pos: 54.5,-21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12533 - type: CableApcExtension - components: - - pos: 54.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12534 - type: CableApcExtension - components: - - pos: 54.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12535 - type: CableApcExtension - components: - - pos: 55.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12536 - type: CableApcExtension - components: - - pos: 56.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12537 - type: CableApcExtension - components: - - pos: 57.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12538 - type: CableApcExtension - components: - - pos: 58.5,-23.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12539 - type: CableApcExtension - components: - - pos: 58.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12540 - type: CableApcExtension - components: - - pos: 58.5,-25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12541 - type: CableApcExtension - components: - - pos: 58.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12542 - type: CableApcExtension - components: - - pos: 54.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12543 - type: CableApcExtension - components: - - pos: 54.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12544 - type: CableApcExtension - components: - - pos: 55.5,-21.5 - parent: 60 - type: Transform -- uid: 12545 - type: CableApcExtension - components: - - pos: 56.5,-21.5 - parent: 60 - type: Transform -- uid: 12546 - type: CableApcExtension - components: - - pos: 57.5,-21.5 - parent: 60 - type: Transform -- uid: 12547 - type: CableApcExtension - components: - - pos: 58.5,-21.5 - parent: 60 - type: Transform -- uid: 12548 - type: CableApcExtension - components: - - pos: 58.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12549 - type: CableApcExtension - components: - - pos: 58.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12550 - type: CableApcExtension - components: - - pos: 58.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12551 - type: CableApcExtension - components: - - pos: 58.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12552 - type: Grille - components: - - pos: 43.5,-61.5 - parent: 60 - type: Transform -- uid: 12553 - type: Grille - components: - - pos: 46.5,-61.5 - parent: 60 - type: Transform -- uid: 12554 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 45.5,-59.5 - parent: 60 - type: Transform -- uid: 12555 - type: GrilleBroken - components: - - pos: 42.5,-61.5 - parent: 60 - type: Transform -- uid: 12556 - type: Grille - components: - - pos: 64.5,-18.5 - parent: 60 - type: Transform -- uid: 12557 - type: GrilleBroken - components: - - pos: 64.5,-16.5 - parent: 60 - type: Transform -- uid: 12558 - type: CableMV - components: - - pos: -13.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12559 - type: CableMV - components: - - pos: -13.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12560 - type: CableMV - components: - - pos: -13.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12561 - type: CableMV - components: - - pos: -13.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12562 - type: GasPipeStraight - components: - - pos: -55.5,-1.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 12563 - type: ReinforcedWindow - components: - - pos: 47.5,28.5 - parent: 60 - type: Transform -- uid: 12564 - type: ReinforcedWindow - components: - - pos: 47.5,29.5 - parent: 60 - type: Transform -- uid: 12565 - type: ReinforcedWindow - components: - - pos: 43.5,28.5 - parent: 60 - type: Transform -- uid: 12566 - type: ReinforcedWindow - components: - - pos: 43.5,30.5 - parent: 60 - type: Transform -- uid: 12567 - type: ReinforcedWindow - components: - - pos: 51.5,28.5 - parent: 60 - type: Transform -- uid: 12568 - type: ReinforcedWindow - components: - - pos: 51.5,30.5 - parent: 60 - type: Transform -- uid: 12569 - type: Catwalk - components: - - pos: 62.5,-45.5 - parent: 60 - type: Transform -- uid: 12570 - type: Grille - components: - - pos: 40.5,-68.5 - parent: 60 - type: Transform -- uid: 12571 - type: AirSensor - components: - - pos: -53.5,-3.5 - parent: 60 - type: Transform -- uid: 12572 - type: SolarPanel - components: - - pos: 38.5,-76.5 - parent: 60 - type: Transform -- uid: 12573 - type: Catwalk - components: - - pos: 25.5,-71.5 - parent: 60 - type: Transform -- uid: 12574 - type: SolarPanel - components: - - pos: 32.5,-66.5 - parent: 60 - type: Transform -- uid: 12575 - type: Catwalk - components: - - pos: 62.5,-51.5 - parent: 60 - type: Transform -- uid: 12576 - type: Grille - components: - - pos: 40.5,-70.5 - parent: 60 - type: Transform -- uid: 12577 - type: TableGlass - components: - - pos: -54.5,-6.5 - parent: 60 - type: Transform -- uid: 12578 - type: SolarPanel - components: - - pos: 38.5,-70.5 - parent: 60 - type: Transform -- uid: 12579 - type: Catwalk - components: - - pos: 33.5,-71.5 - parent: 60 - type: Transform -- uid: 12580 - type: SolarPanel - components: - - pos: 25.5,-68.5 - parent: 60 - type: Transform -- uid: 12581 - type: WallSolid - components: - - pos: 28.5,22.5 - parent: 60 - type: Transform -- uid: 12582 - type: Grille - components: - - pos: 56.5,-30.5 - parent: 60 - type: Transform -- uid: 12583 - type: WallSolid - components: - - pos: 46.5,-2.5 - parent: 60 - type: Transform -- uid: 12584 - type: AirlockShuttle - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-31.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 12585 - type: WallSolid - components: - - pos: 18.5,14.5 - parent: 60 - type: Transform -- uid: 12586 - type: WallReinforced - components: - - pos: 18.5,21.5 - parent: 60 - type: Transform -- uid: 12587 - type: WallReinforced - components: - - pos: 19.5,15.5 - parent: 60 - type: Transform -- uid: 12588 - type: AirlockEngineeringLocked - components: - - pos: 26.5,17.5 - parent: 60 - type: Transform -- uid: 12589 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 16.5,-0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12590 - type: WallReinforced - components: - - pos: 21.5,22.5 - parent: 60 - type: Transform -- uid: 12591 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12592 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12593 - type: ComputerResearchAndDevelopment - components: - - rot: 3.141592653589793 rad - pos: -53.5,-6.5 - parent: 60 - type: Transform -- uid: 12594 - type: GasVentScrubber - components: - - pos: -55.5,-0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12595 - type: TableGlass - components: - - pos: -54.5,-5.5 - parent: 60 - type: Transform -- uid: 12596 - type: SignalButton - components: - - pos: -54.5,0.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 12598 - type: SignalTransmitter -- uid: 12597 - type: StorageCanister - components: - - pos: -48.5,14.5 - parent: 60 - type: Transform -- uid: 12598 - type: BlastDoor - components: - - pos: -55.5,0.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12596 - type: SignalReceiver -- uid: 12599 - type: WindowReinforcedDirectional - components: - - pos: -46.5,15.5 - parent: 60 - type: Transform -- uid: 12600 - type: FlashlightLantern - components: - - pos: -59.580887,2.6484475 - parent: 60 - type: Transform -- uid: 12601 - type: WindowReinforcedDirectional - components: - - pos: -47.5,15.5 - parent: 60 - type: Transform -- uid: 12602 - type: ReinforcedPlasmaWindow - components: - - pos: -56.5,3.5 - parent: 60 - type: Transform -- uid: 12603 - type: WindoorSecureCargoLocked - components: - - pos: 40.5,4.5 - parent: 60 - type: Transform -- uid: 12604 - type: WallSolid - components: - - pos: 38.5,18.5 - parent: 60 - type: Transform -- uid: 12605 - type: Grille - components: - - pos: 55.5,28.5 - parent: 60 - type: Transform -- uid: 12606 - type: WallReinforced - components: - - pos: 25.5,22.5 - parent: 60 - type: Transform -- uid: 12607 - type: TwoWayLever - components: - - pos: 50.5,2.5 - parent: 60 - type: Transform - - outputs: - Left: - - port: Forward - uid: 11722 - - port: Forward - uid: 5285 - - port: Forward - uid: 5284 - - port: Forward - uid: 11757 - - port: Forward - uid: 11881 - - port: Forward - uid: 9238 - - port: Forward - uid: 12889 - Right: - - port: Reverse - uid: 11722 - - port: Reverse - uid: 5285 - - port: Reverse - uid: 5284 - - port: Reverse - uid: 11757 - - port: Reverse - uid: 11881 - - port: Reverse - uid: 9238 - - port: Reverse - uid: 12889 - Middle: - - port: Off - uid: 11722 - - port: Off - uid: 5285 - - port: Off - uid: 5284 - - port: Off - uid: 11757 - - port: Off - uid: 11881 - - port: Off - uid: 9238 - - port: Off - uid: 12889 - type: SignalTransmitter -- uid: 12608 - type: Catwalk - components: - - pos: 53.5,-54.5 - parent: 60 - type: Transform -- uid: 12609 - type: Grille - components: - - pos: 39.5,-78.5 - parent: 60 - type: Transform -- uid: 12610 - type: ReinforcedPlasmaWindow - components: - - pos: -56.5,2.5 - parent: 60 - type: Transform -- uid: 12611 - type: SolarPanel - components: - - pos: 24.5,-76.5 - parent: 60 - type: Transform -- uid: 12612 - type: Catwalk - components: - - pos: 33.5,-75.5 - parent: 60 - type: Transform -- uid: 12613 - type: SolarPanel - components: - - pos: 36.5,-68.5 - parent: 60 - type: Transform -- uid: 12614 - type: Catwalk - components: - - pos: 46.5,-54.5 - parent: 60 - type: Transform -- uid: 12615 - type: GrilleBroken - components: - - pos: 35.5,-78.5 - parent: 60 - type: Transform -- uid: 12616 - type: Catwalk - components: - - pos: 24.5,-75.5 - parent: 60 - type: Transform -- uid: 12617 - type: Catwalk - components: - - pos: 31.5,-66.5 - parent: 60 - type: Transform -- uid: 12618 - type: Catwalk - components: - - pos: 26.5,-75.5 - parent: 60 - type: Transform -- uid: 12619 - type: SolarPanel - components: - - pos: 33.5,-70.5 - parent: 60 - type: Transform -- uid: 12620 - type: Grille - components: - - pos: 52.5,4.5 - parent: 60 - type: Transform -- uid: 12621 - type: WallReinforced - components: - - pos: 38.5,27.5 - parent: 60 - type: Transform -- uid: 12622 - type: WallReinforced - components: - - pos: 18.5,-0.5 - parent: 60 - type: Transform -- uid: 12623 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12624 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12625 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12626 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12627 - type: GasPipeStraight - components: - - pos: 38.5,-28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12628 - type: GasPipeStraight - components: - - pos: 38.5,-30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12629 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 39.5,-30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12630 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12631 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 38.5,-31.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12632 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12633 - type: GasVentScrubber - components: - - pos: 38.5,-27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12634 - type: FloorDrain - components: - - pos: 39.5,-28.5 - parent: 60 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 12635 - type: WallReinforced - components: - - pos: 57.5,6.5 - parent: 60 - type: Transform -- uid: 12636 - type: Table - components: - - pos: 42.5,8.5 - parent: 60 - type: Transform -- uid: 12637 - type: WallReinforced - components: - - pos: 18.5,26.5 - parent: 60 - type: Transform -- uid: 12638 - type: WallReinforced - components: - - pos: 34.5,27.5 - parent: 60 - type: Transform -- uid: 12639 - type: WallSolid - components: - - pos: 35.5,2.5 - parent: 60 - type: Transform -- uid: 12640 - type: ReinforcedWindow - components: - - pos: 42.5,17.5 - parent: 60 - type: Transform -- uid: 12641 - type: CableMV - components: - - pos: 44.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12642 - type: WallSolid - components: - - pos: 26.5,10.5 - parent: 60 - type: Transform -- uid: 12643 - type: WallSolid - components: - - pos: 18.5,6.5 - parent: 60 - type: Transform -- uid: 12644 - type: ReinforcedWindow - components: - - pos: 25.5,27.5 - parent: 60 - type: Transform -- uid: 12645 - type: AirlockEngineeringLocked - components: - - name: Technical Storage - type: MetaData - - pos: 18.5,18.5 - parent: 60 - type: Transform -- uid: 12646 - type: WallReinforced - components: - - pos: 18.5,-3.5 - parent: 60 - type: Transform -- uid: 12647 - type: Grille - components: - - pos: 40.5,-62.5 - parent: 60 - type: Transform -- uid: 12648 - type: Grille - components: - - pos: 32.5,-80.5 - parent: 60 - type: Transform -- uid: 12649 - type: CableHV - components: - - pos: 38.5,-64.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12650 - type: Catwalk - components: - - pos: 34.5,-63.5 - parent: 60 - type: Transform -- uid: 12651 - type: SolarPanel - components: - - pos: 33.5,-62.5 - parent: 60 - type: Transform -- uid: 12652 - type: WallReinforced - components: - - pos: 22.5,27.5 - parent: 60 - type: Transform -- uid: 12653 - type: ReinforcedWindow - components: - - pos: 44.5,16.5 - parent: 60 - type: Transform -- uid: 12654 - type: Multitool - components: - - pos: 1.2854888,15.479637 - parent: 60 - type: Transform -- uid: 12655 - type: WallSolid - components: - - pos: 33.5,10.5 - parent: 60 - type: Transform -- uid: 12656 - type: ReinforcedWindow - components: - - pos: 64.5,-40.5 - parent: 60 - type: Transform -- uid: 12657 - type: Grille - components: - - pos: 47.5,27.5 - parent: 60 - type: Transform -- uid: 12658 - type: SpawnPointDetective - components: - - pos: -26.5,-29.5 - parent: 60 - type: Transform -- uid: 12659 - type: Catwalk - components: - - pos: 63.5,-24.5 - parent: 60 - type: Transform -- uid: 12660 - type: Catwalk - components: - - pos: 34.5,-60.5 - parent: 60 - type: Transform -- uid: 12661 - type: GrilleBroken - components: - - pos: 28.5,-78.5 - parent: 60 - type: Transform -- uid: 12662 - type: Catwalk - components: - - pos: 24.5,-67.5 - parent: 60 - type: Transform -- uid: 12663 - type: Catwalk - components: - - pos: 26.5,-63.5 - parent: 60 - type: Transform -- uid: 12664 - type: SolarPanel - components: - - pos: 27.5,-64.5 - parent: 60 - type: Transform -- uid: 12665 - type: WallSolid - components: - - pos: 30.5,10.5 - parent: 60 - type: Transform -- uid: 12666 - type: WallSolid - components: - - pos: 29.5,10.5 - parent: 60 - type: Transform -- uid: 12667 - type: WallSolid - components: - - pos: 27.5,10.5 - parent: 60 - type: Transform -- uid: 12668 - type: Poweredlight - components: - - pos: 0.5,15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12669 - type: ReinforcedWindow - components: - - pos: 43.5,19.5 - parent: 60 - type: Transform -- uid: 12670 - type: WallSolid - components: - - pos: 18.5,-8.5 - parent: 60 - type: Transform -- uid: 12671 - type: WallSolid - components: - - pos: 18.5,-6.5 - parent: 60 - type: Transform -- uid: 12672 - type: WallSolid - components: - - pos: 51.5,5.5 - parent: 60 - type: Transform -- uid: 12673 - type: CableHV - components: - - pos: 16.5,16.5 - parent: 60 - type: Transform -- uid: 12674 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-3.5 - parent: 60 - type: Transform -- uid: 12675 - type: WallSolid - components: - - pos: 50.5,-2.5 - parent: 60 - type: Transform -- uid: 12676 - type: CableHV - components: - - pos: 38.5,-74.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12677 - type: CableHV - components: - - pos: 38.5,-72.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12678 - type: CableHV - components: - - pos: 38.5,-68.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12679 - type: CableHV - components: - - pos: 38.5,-66.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12680 - type: Grille - components: - - pos: 57.5,-7.5 - parent: 60 - type: Transform -- uid: 12681 - type: Grille - components: - - pos: 57.5,-6.5 - parent: 60 - type: Transform -- uid: 12682 - type: Grille - components: - - pos: 57.5,-5.5 - parent: 60 - type: Transform -- uid: 12683 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-6.5 - parent: 60 - type: Transform -- uid: 12684 - type: WallWeaponCapacitorRecharger - components: - - pos: -33.5,3.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 12685 - type: WallWeaponCapacitorRecharger - components: - - pos: -28.5,-17.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 12686 - type: Grille - components: - - pos: 13.5,-12.5 - parent: 60 - type: Transform -- uid: 12687 - type: Grille - components: - - pos: 13.5,-11.5 - parent: 60 - type: Transform -- uid: 12688 - type: WallSolid - components: - - pos: -65.5,45.5 - parent: 60 - type: Transform -- uid: 12689 - type: WallSolid - components: - - pos: -65.5,46.5 - parent: 60 - type: Transform -- uid: 12690 - type: TableWood - components: - - pos: -63.5,45.5 - parent: 60 - type: Transform -- uid: 12691 - type: TableWood - components: - - pos: -62.5,45.5 - parent: 60 - type: Transform -- uid: 12692 - type: SolarPanel - components: - - pos: 35.5,-62.5 - parent: 60 - type: Transform -- uid: 12693 - type: SolarPanel - components: - - pos: 37.5,-62.5 - parent: 60 - type: Transform -- uid: 12694 - type: SolarPanel - components: - - pos: 36.5,-64.5 - parent: 60 - type: Transform -- uid: 12695 - type: SolarPanel - components: - - pos: 35.5,-64.5 - parent: 60 - type: Transform -- uid: 12696 - type: CableHV - components: - - pos: 16.5,14.5 - parent: 60 - type: Transform -- uid: 12697 - type: ReinforcedWindow - components: - - pos: 43.5,11.5 - parent: 60 - type: Transform -- uid: 12698 - type: SolarPanel - components: - - pos: 30.5,-62.5 - parent: 60 - type: Transform -- uid: 12699 - type: SolarPanel - components: - - pos: 28.5,-62.5 - parent: 60 - type: Transform -- uid: 12700 - type: SolarPanel - components: - - pos: 26.5,-62.5 - parent: 60 - type: Transform -- uid: 12701 - type: SolarPanel - components: - - pos: 25.5,-76.5 - parent: 60 - type: Transform -- uid: 12702 - type: SolarTracker - components: - - pos: 31.5,-78.5 - parent: 60 - type: Transform -- uid: 12703 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-0.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 5805 - Forward: - - port: Left - uid: 5805 - Off: - - port: Middle - uid: 5805 - type: SignalReceiver -- uid: 12704 - type: WallReinforced - components: - - pos: 54.5,5.5 - parent: 60 - type: Transform -- uid: 12705 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-0.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 5805 - Forward: - - port: Left - uid: 5805 - Off: - - port: Middle - uid: 5805 - type: SignalReceiver -- uid: 12706 - type: AirlockExternalGlassCargoLocked - components: - - pos: 55.5,0.5 - parent: 60 - type: Transform -- uid: 12707 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-1.5 - parent: 60 - type: Transform -- uid: 12708 - type: WallSolid - components: - - pos: 49.5,-2.5 - parent: 60 - type: Transform -- uid: 12709 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-2.5 - parent: 60 - type: Transform -- uid: 12710 - type: ReinforcedWindow - components: - - pos: 52.5,-1.5 - parent: 60 - type: Transform -- uid: 12711 - type: CableHV - components: - - pos: 34.5,0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12712 - type: ReinforcedWindow - components: - - pos: 24.5,27.5 - parent: 60 - type: Transform -- uid: 12713 - type: ReinforcedWindow - components: - - pos: 36.5,27.5 - parent: 60 - type: Transform -- uid: 12714 - type: WallReinforced - components: - - pos: 25.5,10.5 - parent: 60 - type: Transform -- uid: 12715 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-34.5 - parent: 60 - type: Transform -- uid: 12716 - type: Catwalk - components: - - pos: 37.5,-63.5 - parent: 60 - type: Transform -- uid: 12717 - type: SubstationBasic - components: - - name: Starboard Bow Substation - type: MetaData - - pos: 26.5,14.5 - parent: 60 - type: Transform -- uid: 12718 - type: Catwalk - components: - - pos: 27.5,-63.5 - parent: 60 - type: Transform -- uid: 12719 - type: Catwalk - components: - - pos: 63.5,-25.5 - parent: 60 - type: Transform -- uid: 12720 - type: CableMV - components: - - pos: 43.5,-4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12721 - type: Catwalk - components: - - pos: 35.5,-60.5 - parent: 60 - type: Transform -- uid: 12722 - type: Grille - components: - - pos: 33.5,-80.5 - parent: 60 - type: Transform -- uid: 12723 - type: SolarPanel - components: - - pos: 27.5,-62.5 - parent: 60 - type: Transform -- uid: 12724 - type: SolarPanel - components: - - pos: 32.5,-62.5 - parent: 60 - type: Transform -- uid: 12725 - type: SolarPanel - components: - - pos: 34.5,-62.5 - parent: 60 - type: Transform -- uid: 12726 - type: Catwalk - components: - - pos: 37.5,-67.5 - parent: 60 - type: Transform -- uid: 12727 - type: SolarPanel - components: - - pos: 29.5,-62.5 - parent: 60 - type: Transform -- uid: 12728 - type: SolarPanel - components: - - pos: 36.5,-62.5 - parent: 60 - type: Transform -- uid: 12729 - type: Catwalk - components: - - pos: 35.5,-67.5 - parent: 60 - type: Transform -- uid: 12730 - type: Grille - components: - - pos: 30.5,-80.5 - parent: 60 - type: Transform -- uid: 12731 - type: Grille - components: - - pos: 43.5,29.5 - parent: 60 - type: Transform -- uid: 12732 - type: SignCargo - components: - - pos: 42.5,11.5 - parent: 60 - type: Transform -- uid: 12733 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-1.5 - parent: 60 - type: Transform - - devices: - - 12571 - - 12594 - type: DeviceList -- uid: 12734 - type: Catwalk - components: - - pos: 35.5,-63.5 - parent: 60 - type: Transform -- uid: 12735 - type: WallReinforced - components: - - pos: 18.5,5.5 - parent: 60 - type: Transform -- uid: 12736 - type: Catwalk - components: - - pos: 36.5,-63.5 - parent: 60 - type: Transform -- uid: 12737 - type: Catwalk - components: - - pos: 32.5,-63.5 - parent: 60 - type: Transform -- uid: 12738 - type: CableHV - components: - - pos: 34.5,-0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12739 - type: WallSolid - components: - - pos: 37.5,12.5 - parent: 60 - type: Transform -- uid: 12740 - type: Catwalk - components: - - pos: 38.5,-67.5 - parent: 60 - type: Transform -- uid: 12741 - type: CableHV - components: - - pos: 34.5,1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12742 - type: SolarPanel - components: - - pos: 26.5,-64.5 - parent: 60 - type: Transform -- uid: 12743 - type: Catwalk - components: - - pos: 63.5,-26.5 - parent: 60 - type: Transform -- uid: 12744 - type: WallReinforced - components: - - pos: 55.5,5.5 - parent: 60 - type: Transform -- uid: 12745 - type: CableHV - components: - - pos: 27.5,-66.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12746 - type: SolarPanel - components: - - pos: 38.5,-64.5 - parent: 60 - type: Transform -- uid: 12747 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-5.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12748 - type: Grille - components: - - pos: 40.5,-72.5 - parent: 60 - type: Transform -- uid: 12749 - type: ReinforcedWindow - components: - - pos: 55.5,28.5 - parent: 60 - type: Transform -- uid: 12750 - type: TableCarpet - components: - - pos: 23.5,-39.5 - parent: 60 - type: Transform -- uid: 12751 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-39.5 - parent: 60 - type: Transform -- uid: 12752 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-39.5 - parent: 60 - type: Transform -- uid: 12753 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: 38.5,26.5 - parent: 60 - type: Transform -- uid: 12754 - type: WallReinforced - components: - - pos: 53.5,31.5 - parent: 60 - type: Transform -- uid: 12755 - type: ReinforcedWindow - components: - - pos: 56.5,-30.5 - parent: 60 - type: Transform -- uid: 12756 - type: Grille - components: - - pos: 63.5,-14.5 - parent: 60 - type: Transform -- uid: 12757 - type: AirlockSecurityGlassLocked - components: - - name: Perma Brig - type: MetaData - - pos: -8.5,-21.5 - parent: 60 - type: Transform -- uid: 12758 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12759 - type: CableHV - components: - - pos: 36.5,-68.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12760 - type: CableHV - components: - - pos: 34.5,-68.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12761 - type: CableHV - components: - - pos: 35.5,-68.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12762 - type: Catwalk - components: - - pos: 34.5,-67.5 - parent: 60 - type: Transform -- uid: 12763 - type: Catwalk - components: - - pos: 36.5,-67.5 - parent: 60 - type: Transform -- uid: 12764 - type: WallReinforced - components: - - pos: -68.5,9.5 - parent: 60 - type: Transform -- uid: 12765 - type: FirelockGlass - components: - - pos: -54.5,-11.5 - parent: 60 - type: Transform -- uid: 12766 - type: RandomPosterAny - components: - - pos: -61.5,-7.5 - parent: 60 - type: Transform -- uid: 12767 - type: Catwalk - components: - - pos: 33.5,-63.5 - parent: 60 - type: Transform -- uid: 12768 - type: WallReinforced - components: - - pos: 42.5,19.5 - parent: 60 - type: Transform -- uid: 12769 - type: WallReinforced - components: - - pos: 23.5,22.5 - parent: 60 - type: Transform -- uid: 12770 - type: WallSolid - components: - - pos: 32.5,10.5 - parent: 60 - type: Transform -- uid: 12771 - type: Catwalk - components: - - pos: 38.5,-63.5 - parent: 60 - type: Transform -- uid: 12772 - type: CableHV - components: - - pos: 37.5,-62.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12773 - type: CableHV - components: - - pos: 33.5,-64.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12774 - type: CableHV - components: - - pos: 35.5,-64.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12775 - type: SolarPanel - components: - - pos: 25.5,-64.5 - parent: 60 - type: Transform -- uid: 12776 - type: Grille - components: - - pos: 63.5,-10.5 - parent: 60 - type: Transform -- uid: 12777 - type: SolarPanel - components: - - pos: 28.5,-70.5 - parent: 60 - type: Transform -- uid: 12778 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 63.5,-8.5 - parent: 60 - type: Transform -- uid: 12779 - type: Grille - components: - - pos: 63.5,-7.5 - parent: 60 - type: Transform -- uid: 12780 - type: Grille - components: - - pos: 63.5,-6.5 - parent: 60 - type: Transform -- uid: 12781 - type: Grille - components: - - pos: 63.5,-5.5 - parent: 60 - type: Transform -- uid: 12782 - type: CableHV - components: - - pos: 59.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12783 - type: GrilleBroken - components: - - pos: 63.5,-9.5 - parent: 60 - type: Transform -- uid: 12784 - type: CableHV - components: - - pos: 32.5,-64.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12785 - type: CableHV - components: - - pos: 37.5,-64.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12786 - type: CableHV - components: - - pos: 36.5,-64.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12787 - type: SolarPanel - components: - - pos: 25.5,-62.5 - parent: 60 - type: Transform -- uid: 12788 - type: CableHV - components: - - pos: 34.5,-64.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12789 - type: ReinforcedWindow - components: - - pos: 55.5,29.5 - parent: 60 - type: Transform -- uid: 12790 - type: Grille - components: - - pos: 40.5,-66.5 - parent: 60 - type: Transform -- uid: 12791 - type: CableHV - components: - - pos: 35.5,-62.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12792 - type: WallReinforced - components: - - pos: 43.5,-2.5 - parent: 60 - type: Transform -- uid: 12793 - type: Catwalk - components: - - pos: 29.5,-63.5 - parent: 60 - type: Transform -- uid: 12794 - type: Catwalk - components: - - pos: 30.5,-63.5 - parent: 60 - type: Transform -- uid: 12795 - type: Catwalk - components: - - pos: 31.5,-63.5 - parent: 60 - type: Transform -- uid: 12796 - type: SolarPanel - components: - - pos: 27.5,-70.5 - parent: 60 - type: Transform -- uid: 12797 - type: CableHV - components: - - pos: 27.5,-68.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12798 - type: CableHV - components: - - pos: 26.5,-68.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12799 - type: CableHV - components: - - pos: 25.5,-68.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12800 - type: CableHV - components: - - pos: 25.5,-66.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12801 - type: CableHV - components: - - pos: 28.5,-68.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12802 - type: ReinforcedWindow - components: - - pos: -62.5,20.5 - parent: 60 - type: Transform -- uid: 12803 - type: ReinforcedWindow - components: - - pos: -64.5,20.5 - parent: 60 - type: Transform -- uid: 12804 - type: WallReinforced - components: - - pos: -62.5,-20.5 - parent: 60 - type: Transform -- uid: 12805 - type: ReinforcedWindow - components: - - pos: -64.5,-20.5 - parent: 60 - type: Transform -- uid: 12806 - type: WallReinforced - components: - - pos: -63.5,-20.5 - parent: 60 - type: Transform -- uid: 12807 - type: WallReinforced - components: - - pos: -65.5,-20.5 - parent: 60 - type: Transform -- uid: 12808 - type: ReinforcedWindow - components: - - pos: -66.5,-16.5 - parent: 60 - type: Transform -- uid: 12809 - type: ReinforcedWindow - components: - - pos: -66.5,-17.5 - parent: 60 - type: Transform -- uid: 12810 - type: ReinforcedWindow - components: - - pos: -67.5,-17.5 - parent: 60 - type: Transform -- uid: 12811 - type: FirelockGlass - components: - - pos: -50.5,-24.5 - parent: 60 - type: Transform -- uid: 12812 - type: ReinforcedWindow - components: - - pos: -68.5,-19.5 - parent: 60 - type: Transform -- uid: 12813 - type: Grille - components: - - pos: -54.5,-30.5 - parent: 60 - type: Transform -- uid: 12814 - type: Grille - components: - - pos: -55.5,-30.5 - parent: 60 - type: Transform -- uid: 12815 - type: Grille - components: - - pos: -56.5,-30.5 - parent: 60 - type: Transform -- uid: 12816 - type: ReinforcedWindow - components: - - pos: -68.5,-17.5 - parent: 60 - type: Transform -- uid: 12817 - type: Grille - components: - - pos: -54.5,-32.5 - parent: 60 - type: Transform -- uid: 12818 - type: Grille - components: - - pos: -53.5,-32.5 - parent: 60 - type: Transform -- uid: 12819 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Grav Gen - type: SurveillanceCamera -- uid: 12820 - type: CableApcExtension - components: - - pos: -53.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12821 - type: CableApcExtension - components: - - pos: -54.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12822 - type: CableApcExtension - components: - - pos: -55.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12823 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12824 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12825 - type: WallReinforced - components: - - pos: -62.5,-19.5 - parent: 60 - type: Transform -- uid: 12826 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12827 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12828 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12829 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12830 - type: GasPipeStraight - components: - - pos: -43.5,-24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12831 - type: GasPipeStraight - components: - - pos: -43.5,-25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12832 - type: GasPipeStraight - components: - - pos: -43.5,-26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12833 - type: GasPipeStraight - components: - - pos: -43.5,-27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12834 - type: GasPipeStraight - components: - - pos: -43.5,-30.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12835 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12836 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12837 - type: DrinkFlask - components: - - pos: -8.356498,-5.569201 - parent: 60 - type: Transform -- uid: 12838 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12839 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12840 - type: Grille - components: - - pos: -55.5,-32.5 - parent: 60 - type: Transform -- uid: 12841 - type: Grille - components: - - pos: -56.5,-32.5 - parent: 60 - type: Transform -- uid: 12842 - type: AirlockExternalGlassLocked - components: - - pos: -52.5,-31.5 - parent: 60 - type: Transform -- uid: 12843 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12844 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12845 - type: CableApcExtension - components: - - pos: -52.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12846 - type: CableApcExtension - components: - - pos: -51.5,-31.5 - parent: 60 - type: Transform -- uid: 12847 - type: GasPipeStraight - components: - - pos: -43.5,-28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12848 - type: GasPipeStraight - components: - - pos: -43.5,-29.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12849 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12850 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12851 - type: ClosetFireFilled - components: - - pos: -54.5,-4.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12852 - type: CableApcExtension - components: - - pos: 46.5,-41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12853 - type: GrilleBroken - components: - - pos: -60.5,11.5 - parent: 60 - type: Transform -- uid: 12854 - type: WallReinforced - components: - - pos: -65.5,-16.5 - parent: 60 - type: Transform -- uid: 12855 - type: WallReinforced - components: - - pos: -67.5,2.5 - parent: 60 - type: Transform -- uid: 12856 - type: CableApcExtension - components: - - pos: -56.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12857 - type: CableApcExtension - components: - - pos: -56.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12858 - type: ReinforcedWindow - components: - - pos: -67.5,-19.5 - parent: 60 - type: Transform -- uid: 12859 - type: WallSolid - components: - - pos: -62.5,1.5 - parent: 60 - type: Transform -- uid: 12860 - type: WallReinforced - components: - - pos: -67.5,3.5 - parent: 60 - type: Transform -- uid: 12861 - type: ReinforcedWindow - components: - - pos: -66.5,4.5 - parent: 60 - type: Transform -- uid: 12862 - type: WallReinforced - components: - - pos: -66.5,3.5 - parent: 60 - type: Transform -- uid: 12863 - type: Scalpel - components: - - pos: 38.47439,-10.45169 - parent: 60 - type: Transform -- uid: 12864 - type: WallReinforced - components: - - pos: 53.5,28.5 - parent: 60 - type: Transform -- uid: 12865 - type: WallReinforced - components: - - pos: 53.5,29.5 - parent: 60 - type: Transform -- uid: 12866 - type: WallReinforced - components: - - pos: 45.5,31.5 - parent: 60 - type: Transform -- uid: 12867 - type: CableHV - components: - - pos: 38.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12868 - type: GasVentPump - components: - - pos: 40.5,-9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12869 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-7.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12870 - type: Grille - components: - - pos: -64.5,-20.5 - parent: 60 - type: Transform -- uid: 12871 - type: CableHV - components: - - pos: 30.5,-66.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12872 - type: CableHV - components: - - pos: 28.5,-66.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12873 - type: CableHV - components: - - pos: 29.5,-66.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12874 - type: CigPackGreen - components: - - pos: -53.525055,-14.398706 - parent: 60 - type: Transform -- uid: 12875 - type: ClosetMaintenance - components: - - pos: -53.5,-15.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12876 - type: CableHV - components: - - pos: -63.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12877 - type: Grille - components: - - pos: -67.5,-17.5 - parent: 60 - type: Transform -- uid: 12878 - type: Table - components: - - pos: -53.5,-14.5 - parent: 60 - type: Transform -- uid: 12879 - type: HighSecCommandLocked - components: - - name: Vault - type: MetaData - - pos: 2.5,-6.5 - parent: 60 - type: Transform -- uid: 12880 - type: CableMV - components: - - pos: -63.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12881 - type: WallSolidRust - components: - - pos: 18.5,-7.5 - parent: 60 - type: Transform -- uid: 12882 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 55.5,1.5 - parent: 60 - type: Transform -- uid: 12883 - type: SolarPanel - components: - - pos: 34.5,-64.5 - parent: 60 - type: Transform -- uid: 12884 - type: CableHV - components: - - pos: 24.5,-66.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12885 - type: CableHV - components: - - pos: 30.5,-72.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12886 - type: WallReinforced - components: - - pos: 26.5,27.5 - parent: 60 - type: Transform -- uid: 12887 - type: GrilleBroken - components: - - pos: 63.5,-4.5 - parent: 60 - type: Transform -- uid: 12888 - type: Grille - components: - - pos: 45.5,-61.5 - parent: 60 - type: Transform -- uid: 12889 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 56.5,3.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 12607 - Forward: - - port: Left - uid: 12607 - Off: - - port: Middle - uid: 12607 - type: SignalReceiver -- uid: 12890 - type: WallSolid - components: - - pos: 47.5,-2.5 - parent: 60 - type: Transform -- uid: 12891 - type: WallReinforced - components: - - pos: 41.5,26.5 - parent: 60 - type: Transform -- uid: 12892 - type: ReinforcedWindow - components: - - pos: 31.5,27.5 - parent: 60 - type: Transform -- uid: 12893 - type: LockerSalvageSpecialistFilled - components: - - pos: 36.5,0.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12894 - type: WallReinforced - components: - - pos: 45.5,30.5 - parent: 60 - type: Transform -- uid: 12895 - type: WallSolid - components: - - pos: 30.5,22.5 - parent: 60 - type: Transform -- uid: 12896 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -49.5,2.5 - parent: 60 - type: Transform -- uid: 12897 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 13.5,5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12898 - type: CableHV - components: - - pos: 21.5,24.5 - parent: 60 - type: Transform -- uid: 12899 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -50.5,2.5 - parent: 60 - type: Transform -- uid: 12900 - type: Rack - components: - - pos: -53.5,-13.5 - parent: 60 - type: Transform -- uid: 12901 - type: CableApcExtension - components: - - pos: -56.5,-22.5 - parent: 60 - type: Transform -- uid: 12902 - type: WallReinforced - components: - - pos: -64.5,-7.5 - parent: 60 - type: Transform -- uid: 12903 - type: CableMV - components: - - pos: -53.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12904 - type: CableApcExtension - components: - - pos: -62.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12905 - type: WallmountTelevision - components: - - pos: 26.5,-21.5 - parent: 60 - type: Transform -- uid: 12906 - type: WallSolid - components: - - pos: -60.5,-16.5 - parent: 60 - type: Transform -- uid: 12907 - type: WallReinforced - components: - - pos: -63.5,-21.5 - parent: 60 - type: Transform -- uid: 12908 - type: WallSolidRust - components: - - pos: -53.5,22.5 - parent: 60 - type: Transform -- uid: 12909 - type: LockerSalvageSpecialistFilled - components: - - pos: 36.5,1.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12910 - type: hydroponicsTray - components: - - pos: -58.5,-24.5 - parent: 60 - type: Transform -- uid: 12911 - type: WallReinforced - components: - - pos: -54.5,-23.5 - parent: 60 - type: Transform -- uid: 12912 - type: WallReinforced - components: - - pos: -63.5,-23.5 - parent: 60 - type: Transform -- uid: 12913 - type: WallSolid - components: - - pos: -57.5,-15.5 - parent: 60 - type: Transform -- uid: 12914 - type: WallSolid - components: - - pos: -55.5,-20.5 - parent: 60 - type: Transform -- uid: 12915 - type: CableApcExtension - components: - - pos: -64.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12916 - type: CableHV - components: - - pos: -64.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12917 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: -65.5,-18.5 - parent: 60 - type: Transform -- uid: 12918 - type: Grille - components: - - pos: -69.5,-17.5 - parent: 60 - type: Transform -- uid: 12919 - type: Grille - components: - - pos: -66.5,-20.5 - parent: 60 - type: Transform -- uid: 12920 - type: SMESBasic - components: - - name: West Solar SMES - type: MetaData - - pos: -65.5,-17.5 - parent: 60 - type: Transform -- uid: 12921 - type: WallReinforced - components: - - pos: -63.5,-16.5 - parent: 60 - type: Transform -- uid: 12922 - type: AirlockEngineeringLocked - components: - - pos: -62.5,-18.5 - parent: 60 - type: Transform -- uid: 12923 - type: Grille - components: - - pos: -67.5,-19.5 - parent: 60 - type: Transform -- uid: 12924 - type: ComputerSolarControl - components: - - pos: -64.5,-17.5 - parent: 60 - type: Transform -- uid: 12925 - type: CableHV - components: - - pos: -66.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12926 - type: CableApcExtension - components: - - pos: -67.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12927 - type: WallSolid - components: - - pos: -58.5,-20.5 - parent: 60 - type: Transform -- uid: 12928 - type: WallSolid - components: - - pos: -55.5,-15.5 - parent: 60 - type: Transform -- uid: 12929 - type: ReinforcedWindow - components: - - pos: -58.5,-25.5 - parent: 60 - type: Transform -- uid: 12930 - type: WallReinforced - components: - - pos: -53.5,-23.5 - parent: 60 - type: Transform -- uid: 12931 - type: SinkWide - components: - - pos: -57.5,-21.5 - parent: 60 - type: Transform -- uid: 12932 - type: CableHV - components: - - pos: -86.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12933 - type: CableHV - components: - - pos: -86.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12934 - type: CableHV - components: - - pos: -86.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12935 - type: CableHV - components: - - pos: -86.5,-15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12936 - type: Grille - components: - - pos: -88.5,-11.5 - parent: 60 - type: Transform -- uid: 12937 - type: GrilleBroken - components: - - pos: -88.5,-12.5 - parent: 60 - type: Transform -- uid: 12938 - type: Grille - components: - - pos: -88.5,-13.5 - parent: 60 - type: Transform -- uid: 12939 - type: Grille - components: - - pos: -88.5,-14.5 - parent: 60 - type: Transform -- uid: 12940 - type: Grille - components: - - pos: -88.5,-15.5 - parent: 60 - type: Transform -- uid: 12941 - type: Grille - components: - - pos: -88.5,-16.5 - parent: 60 - type: Transform -- uid: 12942 - type: Grille - components: - - pos: -88.5,-20.5 - parent: 60 - type: Transform -- uid: 12943 - type: Grille - components: - - pos: -90.5,-20.5 - parent: 60 - type: Transform -- uid: 12944 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -90.5,-16.5 - parent: 60 - type: Transform -- uid: 12945 - type: Catwalk - components: - - pos: -70.5,-13.5 - parent: 60 - type: Transform -- uid: 12946 - type: Catwalk - components: - - pos: -70.5,-12.5 - parent: 60 - type: Transform -- uid: 12947 - type: Catwalk - components: - - pos: -70.5,-11.5 - parent: 60 - type: Transform -- uid: 12948 - type: Catwalk - components: - - pos: -70.5,-10.5 - parent: 60 - type: Transform -- uid: 12949 - type: Catwalk - components: - - pos: -70.5,-9.5 - parent: 60 - type: Transform -- uid: 12950 - type: Catwalk - components: - - pos: -70.5,-8.5 - parent: 60 - type: Transform -- uid: 12951 - type: Catwalk - components: - - pos: -70.5,-7.5 - parent: 60 - type: Transform -- uid: 12952 - type: Catwalk - components: - - pos: -70.5,-6.5 - parent: 60 - type: Transform -- uid: 12953 - type: Catwalk - components: - - pos: -70.5,-5.5 - parent: 60 - type: Transform -- uid: 12954 - type: Catwalk - components: - - pos: -70.5,-4.5 - parent: 60 - type: Transform -- uid: 12955 - type: Catwalk - components: - - pos: -70.5,-3.5 - parent: 60 - type: Transform -- uid: 12956 - type: Catwalk - components: - - pos: -70.5,-2.5 - parent: 60 - type: Transform -- uid: 12957 - type: Catwalk - components: - - pos: -71.5,-2.5 - parent: 60 - type: Transform -- uid: 12958 - type: Catwalk - components: - - pos: -71.5,-1.5 - parent: 60 - type: Transform -- uid: 12959 - type: Catwalk - components: - - pos: -71.5,-0.5 - parent: 60 - type: Transform -- uid: 12960 - type: Catwalk - components: - - pos: -71.5,0.5 - parent: 60 - type: Transform -- uid: 12961 - type: Catwalk - components: - - pos: -71.5,1.5 - parent: 60 - type: Transform -- uid: 12962 - type: Catwalk - components: - - pos: -71.5,2.5 - parent: 60 - type: Transform -- uid: 12963 - type: Catwalk - components: - - pos: -71.5,3.5 - parent: 60 - type: Transform -- uid: 12964 - type: Catwalk - components: - - pos: -71.5,4.5 - parent: 60 - type: Transform -- uid: 12965 - type: Catwalk - components: - - pos: -71.5,5.5 - parent: 60 - type: Transform -- uid: 12966 - type: Catwalk - components: - - pos: -71.5,6.5 - parent: 60 - type: Transform -- uid: 12967 - type: Catwalk - components: - - pos: -71.5,7.5 - parent: 60 - type: Transform -- uid: 12968 - type: Catwalk - components: - - pos: -71.5,8.5 - parent: 60 - type: Transform -- uid: 12969 - type: Catwalk - components: - - pos: -71.5,9.5 - parent: 60 - type: Transform -- uid: 12970 - type: Catwalk - components: - - pos: -71.5,10.5 - parent: 60 - type: Transform -- uid: 12971 - type: Catwalk - components: - - pos: -71.5,11.5 - parent: 60 - type: Transform -- uid: 12972 - type: Catwalk - components: - - pos: -71.5,12.5 - parent: 60 - type: Transform -- uid: 12973 - type: Catwalk - components: - - pos: -71.5,13.5 - parent: 60 - type: Transform -- uid: 12974 - type: Catwalk - components: - - pos: -71.5,14.5 - parent: 60 - type: Transform -- uid: 12975 - type: WallReinforced - components: - - pos: -69.5,18.5 - parent: 60 - type: Transform -- uid: 12976 - type: WallReinforced - components: - - pos: -68.5,18.5 - parent: 60 - type: Transform -- uid: 12977 - type: ReinforcedWindow - components: - - pos: -64.5,16.5 - parent: 60 - type: Transform -- uid: 12978 - type: WallReinforced - components: - - pos: -74.5,15.5 - parent: 60 - type: Transform -- uid: 12979 - type: PosterContrabandShamblersJuice - components: - - pos: 25.5,-10.5 - parent: 60 - type: Transform -- uid: 12980 - type: WallReinforced - components: - - pos: -69.5,16.5 - parent: 60 - type: Transform -- uid: 12981 - type: WallReinforced - components: - - pos: -68.5,16.5 - parent: 60 - type: Transform -- uid: 12982 - type: ReinforcedWindow - components: - - pos: -65.5,18.5 - parent: 60 - type: Transform -- uid: 12983 - type: Catwalk - components: - - pos: -71.5,23.5 - parent: 60 - type: Transform -- uid: 12984 - type: Catwalk - components: - - pos: -70.5,23.5 - parent: 60 - type: Transform -- uid: 12985 - type: Catwalk - components: - - pos: -70.5,24.5 - parent: 60 - type: Transform -- uid: 12986 - type: Catwalk - components: - - pos: -70.5,25.5 - parent: 60 - type: Transform -- uid: 12987 - type: Catwalk - components: - - pos: -70.5,26.5 - parent: 60 - type: Transform -- uid: 12988 - type: Grille - components: - - pos: -72.5,1.5 - parent: 60 - type: Transform -- uid: 12989 - type: Grille - components: - - pos: -72.5,2.5 - parent: 60 - type: Transform -- uid: 12990 - type: Grille - components: - - pos: -72.5,3.5 - parent: 60 - type: Transform -- uid: 12991 - type: Grille - components: - - pos: -72.5,4.5 - parent: 60 - type: Transform -- uid: 12992 - type: Grille - components: - - pos: -71.5,-5.5 - parent: 60 - type: Transform -- uid: 12993 - type: Grille - components: - - pos: -71.5,-6.5 - parent: 60 - type: Transform -- uid: 12994 - type: Grille - components: - - pos: -71.5,-7.5 - parent: 60 - type: Transform -- uid: 12995 - type: Grille - components: - - pos: -71.5,-8.5 - parent: 60 - type: Transform -- uid: 12996 - type: Grille - components: - - pos: -61.5,-27.5 - parent: 60 - type: Transform -- uid: 12997 - type: Grille - components: - - pos: -62.5,-27.5 - parent: 60 - type: Transform -- uid: 12998 - type: Grille - components: - - pos: -63.5,-27.5 - parent: 60 - type: Transform -- uid: 12999 - type: Grille - components: - - pos: -64.5,-27.5 - parent: 60 - type: Transform -- uid: 13000 - type: Grille - components: - - pos: -65.5,-27.5 - parent: 60 - type: Transform -- uid: 13001 - type: Grille - components: - - pos: -72.5,9.5 - parent: 60 - type: Transform -- uid: 13002 - type: Grille - components: - - pos: -72.5,8.5 - parent: 60 - type: Transform -- uid: 13003 - type: Grille - components: - - pos: -79.5,12.5 - parent: 60 - type: Transform -- uid: 13004 - type: WallReinforced - components: - - pos: -75.5,15.5 - parent: 60 - type: Transform -- uid: 13005 - type: WallReinforced - components: - - pos: -69.5,19.5 - parent: 60 - type: Transform -- uid: 13006 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -70.5,18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13007 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -72.5,0.5 - parent: 60 - type: Transform -- uid: 13008 - type: GrilleBroken - components: - - pos: -72.5,5.5 - parent: 60 - type: Transform -- uid: 13009 - type: GrilleBroken - components: - - pos: -71.5,-4.5 - parent: 60 - type: Transform -- uid: 13010 - type: GrilleBroken - components: - - pos: -60.5,-27.5 - parent: 60 - type: Transform -- uid: 13011 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-27.5 - parent: 60 - type: Transform -- uid: 13012 - type: DrinkGoldschlagerBottleFull - components: - - pos: 6.371938,-6.0707817 - parent: 60 - type: Transform -- uid: 13013 - type: TableWood - components: - - pos: -62.5,46.5 - parent: 60 - type: Transform -- uid: 13014 - type: MicroManipulatorStockPart - components: - - pos: -45.404285,-9.838601 - parent: 60 - type: Transform -- uid: 13015 - type: ScanningModuleStockPart - components: - - pos: -67.444885,9.609138 - parent: 60 - type: Transform -- uid: 13016 - type: WallSolid - components: - - pos: -65.5,42.5 - parent: 60 - type: Transform -- uid: 13017 - type: ScanningModuleStockPart - components: - - pos: -67.61676,9.687263 - parent: 60 - type: Transform -- uid: 13018 - type: WallSolid - components: - - pos: -65.5,43.5 - parent: 60 - type: Transform -- uid: 13019 - type: Catwalk - components: - - pos: 44.5,-6.5 - parent: 60 - type: Transform -- uid: 13020 - type: Catwalk - components: - - pos: 45.5,-6.5 - parent: 60 - type: Transform -- uid: 13021 - type: Catwalk - components: - - pos: 46.5,-6.5 - parent: 60 - type: Transform -- uid: 13022 - type: Catwalk - components: - - pos: 47.5,-6.5 - parent: 60 - type: Transform -- uid: 13023 - type: Catwalk - components: - - pos: 48.5,-6.5 - parent: 60 - type: Transform -- uid: 13024 - type: Catwalk - components: - - pos: 49.5,-6.5 - parent: 60 - type: Transform -- uid: 13025 - type: Catwalk - components: - - pos: 50.5,-6.5 - parent: 60 - type: Transform -- uid: 13026 - type: Catwalk - components: - - pos: 51.5,-6.5 - parent: 60 - type: Transform -- uid: 13027 - type: Catwalk - components: - - pos: 52.5,-6.5 - parent: 60 - type: Transform -- uid: 13028 - type: Catwalk - components: - - pos: 54.5,-17.5 - parent: 60 - type: Transform -- uid: 13029 - type: Catwalk - components: - - pos: 54.5,-16.5 - parent: 60 - type: Transform -- uid: 13030 - type: Catwalk - components: - - pos: 54.5,-15.5 - parent: 60 - type: Transform -- uid: 13031 - type: Catwalk - components: - - pos: 54.5,-14.5 - parent: 60 - type: Transform -- uid: 13032 - type: Catwalk - components: - - pos: 54.5,-13.5 - parent: 60 - type: Transform -- uid: 13033 - type: Catwalk - components: - - pos: 54.5,-12.5 - parent: 60 - type: Transform -- uid: 13034 - type: Catwalk - components: - - pos: 54.5,-11.5 - parent: 60 - type: Transform -- uid: 13035 - type: WallSolid - components: - - pos: -64.5,42.5 - parent: 60 - type: Transform -- uid: 13036 - type: CableApcExtension - components: - - pos: -49.5,14.5 - parent: 60 - type: Transform -- uid: 13037 - type: WallSolid - components: - - pos: -63.5,42.5 - parent: 60 - type: Transform -- uid: 13038 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -51.5,2.5 - parent: 60 - type: Transform -- uid: 13039 - type: AirlockQuartermasterLocked - components: - - pos: 46.5,13.5 - parent: 60 - type: Transform -- uid: 13040 - type: ComputerFrame - components: - - rot: -1.5707963267948966 rad - pos: -63.5,10.5 - parent: 60 - type: Transform -- uid: 13041 - type: CableApcStack - components: - - pos: -65.09276,9.579465 - parent: 60 - type: Transform -- uid: 13042 - type: PosterLegit50thAnniversaryVintageReprint - components: - - pos: -62.5,11.5 - parent: 60 - type: Transform -- uid: 13043 - type: AirlockCommandLocked - components: - - name: AI Core - type: MetaData - - pos: -69.5,17.5 - parent: 60 - type: Transform -- uid: 13044 - type: CableHV - components: - - pos: 15.5,-9.5 - parent: 60 - type: Transform -- uid: 13045 - type: CableHV - components: - - pos: 15.5,-8.5 - parent: 60 - type: Transform -- uid: 13046 - type: CableHV - components: - - pos: 15.5,-7.5 - parent: 60 - type: Transform -- uid: 13047 - type: CableHV - components: - - pos: 15.5,-6.5 - parent: 60 - type: Transform -- uid: 13048 - type: CableHV - components: - - pos: 15.5,-5.5 - parent: 60 - type: Transform -- uid: 13049 - type: CableHV - components: - - pos: 15.5,-4.5 - parent: 60 - type: Transform -- uid: 13050 - type: CableHV - components: - - pos: 15.5,-3.5 - parent: 60 - type: Transform -- uid: 13051 - type: CableHV - components: - - pos: 15.5,-2.5 - parent: 60 - type: Transform -- uid: 13052 - type: CableHV - components: - - pos: 15.5,-1.5 - parent: 60 - type: Transform -- uid: 13053 - type: CableHV - components: - - pos: 15.5,-0.5 - parent: 60 - type: Transform -- uid: 13054 - type: CableHV - components: - - pos: 15.5,0.5 - parent: 60 - type: Transform -- uid: 13055 - type: CableHV - components: - - pos: 15.5,1.5 - parent: 60 - type: Transform -- uid: 13056 - type: CableHV - components: - - pos: 15.5,2.5 - parent: 60 - type: Transform -- uid: 13057 - type: CableHV - components: - - pos: 15.5,3.5 - parent: 60 - type: Transform -- uid: 13058 - type: CableHV - components: - - pos: 15.5,4.5 - parent: 60 - type: Transform -- uid: 13059 - type: CableHV - components: - - pos: 15.5,5.5 - parent: 60 - type: Transform -- uid: 13060 - type: CableHV - components: - - pos: 16.5,5.5 - parent: 60 - type: Transform -- uid: 13061 - type: CableHV - components: - - pos: 19.5,24.5 - parent: 60 - type: Transform -- uid: 13062 - type: CableHV - components: - - pos: 20.5,24.5 - parent: 60 - type: Transform -- uid: 13063 - type: CableHV - components: - - pos: 18.5,24.5 - parent: 60 - type: Transform -- uid: 13064 - type: CableHV - components: - - pos: 17.5,24.5 - parent: 60 - type: Transform -- uid: 13065 - type: CableHV - components: - - pos: 16.5,24.5 - parent: 60 - type: Transform -- uid: 13066 - type: OxygenCanister - components: - - pos: 53.5,-1.5 - parent: 60 - type: Transform -- uid: 13067 - type: ReinforcedWindow - components: - - pos: 41.5,4.5 - parent: 60 - type: Transform -- uid: 13068 - type: PowerCellRecharger - components: - - pos: 42.5,8.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 13069 - type: AirlockEngineeringGlassLocked - components: - - name: Engi Toolroom - type: MetaData - - pos: 2.5,14.5 - parent: 60 - type: Transform -- uid: 13070 - type: WallReinforced - components: - - pos: 18.5,28.5 - parent: 60 - type: Transform -- uid: 13071 - type: Rack - components: - - pos: 1.5,15.5 - parent: 60 - type: Transform -- uid: 13072 - type: CableApcExtension - components: - - pos: 13.5,5.5 - parent: 60 - type: Transform -- uid: 13073 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 40.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13074 - type: GasVentPump - components: - - pos: 38.5,10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13075 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 38.5,6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13076 - type: WallSolid - components: - - pos: 0.5,16.5 - parent: 60 - type: Transform -- uid: 13077 - type: WallReinforced - components: - - pos: 25.5,18.5 - parent: 60 - type: Transform -- uid: 13078 - type: WallReinforced - components: - - pos: 25.5,19.5 - parent: 60 - type: Transform -- uid: 13079 - type: WallReinforced - components: - - pos: 25.5,20.5 - parent: 60 - type: Transform -- uid: 13080 - type: WallReinforced - components: - - pos: 20.5,22.5 - parent: 60 - type: Transform -- uid: 13081 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13082 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 43.5,9.5 - parent: 60 - type: Transform -- uid: 13083 - type: WallSolid - components: - - pos: 38.5,3.5 - parent: 60 - type: Transform -- uid: 13084 - type: ComputerCargoOrders - components: - - pos: 43.5,10.5 - parent: 60 - type: Transform -- uid: 13085 - type: WallSolid - components: - - pos: 36.5,3.5 - parent: 60 - type: Transform -- uid: 13086 - type: AirlockQuartermasterGlassLocked - components: - - name: Quartermaster's Office - type: MetaData - - pos: 44.5,11.5 - parent: 60 - type: Transform -- uid: 13087 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -52.5,2.5 - parent: 60 - type: Transform -- uid: 13088 - type: WallReinforced - components: - - pos: 46.5,16.5 - parent: 60 - type: Transform -- uid: 13089 - type: Grille - components: - - pos: 49.5,19.5 - parent: 60 - type: Transform -- uid: 13090 - type: ReinforcedWindow - components: - - pos: 45.5,19.5 - parent: 60 - type: Transform -- uid: 13091 - type: Table - components: - - pos: 43.5,13.5 - parent: 60 - type: Transform -- uid: 13092 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 44.5,12.5 - parent: 60 - type: Transform -- uid: 13093 - type: Table - components: - - pos: 44.5,13.5 - parent: 60 - type: Transform -- uid: 13094 - type: ChairOfficeDark - components: - - pos: 44.5,14.5 - parent: 60 - type: Transform -- uid: 13095 - type: ComputerCargoOrders - components: - - rot: 1.5707963267948966 rad - pos: 43.5,14.5 - parent: 60 - type: Transform - - outputs: - OrderSender: [] - type: SignalTransmitter -- uid: 13096 - type: DogBed - components: - - name: raccoon bed - type: MetaData - - pos: 44.5,15.5 - parent: 60 - type: Transform -- uid: 13097 - type: ReinforcedWindow - components: - - pos: 46.5,18.5 - parent: 60 - type: Transform -- uid: 13098 - type: Bed - components: - - pos: 45.5,15.5 - parent: 60 - type: Transform -- uid: 13099 - type: LockerQuarterMasterFilled - components: - - pos: 43.5,15.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13100 - type: BedsheetQM - components: - - pos: 45.5,15.5 - parent: 60 - type: Transform -- uid: 13101 - type: SpawnPointQuartermaster - components: - - pos: 45.5,14.5 - parent: 60 - type: Transform -- uid: 13102 - type: SpawnMobRaccoonMorticia - components: - - pos: 45.5,13.5 - parent: 60 - type: Transform -- uid: 13103 - type: ShowcaseRobotAntique - components: - - pos: 43.5,12.5 - parent: 60 - type: Transform -- uid: 13104 - type: WindoorSecureCargoLocked - components: - - rot: 1.5707963267948966 rad - pos: 42.5,8.5 - parent: 60 - type: Transform -- uid: 13105 - type: WindoorSecureCargoLocked - components: - - rot: 1.5707963267948966 rad - pos: 42.5,9.5 - parent: 60 - type: Transform -- uid: 13106 - type: FirelockGlass - components: - - pos: 42.5,8.5 - parent: 60 - type: Transform -- uid: 13107 - type: FirelockGlass - components: - - pos: 42.5,9.5 - parent: 60 - type: Transform -- uid: 13108 - type: AirlockCargoGlassLocked - components: - - pos: 47.5,8.5 - parent: 60 - type: Transform -- uid: 13109 - type: ExtinguisherCabinetFilled - components: - - pos: 43.5,1.5 - parent: 60 - type: Transform -- uid: 13110 - type: Grille - components: - - pos: 42.5,10.5 - parent: 60 - type: Transform -- uid: 13111 - type: Grille - components: - - pos: 47.5,9.5 - parent: 60 - type: Transform -- uid: 13112 - type: Grille - components: - - pos: 47.5,6.5 - parent: 60 - type: Transform -- uid: 13113 - type: OreProcessor - components: - - pos: 45.5,4.5 - parent: 60 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Plasma - - Uranium - - Gold - - Silver - type: MaterialStorage -- uid: 13114 - type: WallSolid - components: - - pos: 43.5,-0.5 - parent: 60 - type: Transform -- uid: 13115 - type: Grille - components: - - pos: 43.5,11.5 - parent: 60 - type: Transform -- uid: 13116 - type: Grille - components: - - pos: 45.5,11.5 - parent: 60 - type: Transform -- uid: 13117 - type: WallReinforced - components: - - pos: 46.5,12.5 - parent: 60 - type: Transform -- uid: 13118 - type: IntercomSecurity - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-27.5 - parent: 60 - type: Transform -- uid: 13119 - type: WallReinforced - components: - - pos: 46.5,15.5 - parent: 60 - type: Transform -- uid: 13120 - type: LampGold - components: - - pos: 43.509346,13.968993 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 13121 - type: RubberStampTrader - components: - - pos: 43.534462,13.459317 - parent: 60 - type: Transform -- uid: 13122 - type: BoxFolderYellow - components: - - pos: 44.362587,13.584317 - parent: 60 - type: Transform -- uid: 13123 - type: Paper - components: - - pos: 44.440712,13.631192 - parent: 60 - type: Transform -- uid: 13124 - type: Paper - components: - - pos: 44.440712,13.631192 - parent: 60 - type: Transform -- uid: 13125 - type: Paper - components: - - pos: 44.440712,13.631192 - parent: 60 - type: Transform -- uid: 13126 - type: Paper - components: - - pos: 44.440712,13.631192 - parent: 60 - type: Transform -- uid: 13127 - type: Paper - components: - - pos: 44.440712,13.631192 - parent: 60 - type: Transform -- uid: 13128 - type: Paper - components: - - pos: 44.440712,13.631192 - parent: 60 - type: Transform -- uid: 13129 - type: Paper - components: - - pos: 44.440712,13.631192 - parent: 60 - type: Transform -- uid: 13130 - type: Paper - components: - - pos: 44.440712,13.631192 - parent: 60 - type: Transform -- uid: 13131 - type: Paper - components: - - pos: 44.440712,13.631192 - parent: 60 - type: Transform -- uid: 13132 - type: Paper - components: - - pos: 44.440712,13.631192 - parent: 60 - type: Transform -- uid: 13133 - type: Paper - components: - - pos: 44.440712,13.631192 - parent: 60 - type: Transform -- uid: 13134 - type: Paper - components: - - pos: 44.440712,13.631192 - parent: 60 - type: Transform -- uid: 13135 - type: Pen - components: - - pos: 44.706337,13.771817 - parent: 60 - type: Transform -- uid: 13136 - type: VendingMachineSalvage - components: - - flags: SessionSpecific - type: MetaData - - pos: 38.5,2.5 - parent: 60 - type: Transform -- uid: 13137 - type: WallSolid - components: - - pos: 44.5,1.5 - parent: 60 - type: Transform -- uid: 13138 - type: AirlockMaintGlassLocked - components: - - pos: -62.5,7.5 - parent: 60 - type: Transform -- uid: 13139 - type: RandomSpawner - components: - - pos: 29.5,8.5 - parent: 60 - type: Transform -- uid: 13140 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,0.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13141 - type: FirelockGlass - components: - - pos: 40.5,4.5 - parent: 60 - type: Transform -- uid: 13142 - type: AirlockSalvageLocked - components: - - name: Salvage Locker Room - type: MetaData - - pos: 37.5,3.5 - parent: 60 - type: Transform -- uid: 13143 - type: AirlockSalvageGlassLocked - components: - - pos: 39.5,-0.5 - parent: 60 - type: Transform -- uid: 13144 - type: SignDirectionalSalvage - components: - - rot: 1.5707963267948966 rad - pos: 18.507015,10.276053 - parent: 60 - type: Transform -- uid: 13145 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: 38.5,1.5 - parent: 60 - type: Transform -- uid: 13146 - type: Rack - components: - - pos: 38.5,-1.5 - parent: 60 - type: Transform -- uid: 13147 - type: AirlockSalvageGlassLocked - components: - - pos: 39.5,0.5 - parent: 60 - type: Transform -- uid: 13148 - type: FirelockGlass - components: - - pos: 41.5,12.5 - parent: 60 - type: Transform -- uid: 13149 - type: FirelockGlass - components: - - pos: 40.5,12.5 - parent: 60 - type: Transform -- uid: 13150 - type: FirelockGlass - components: - - pos: 39.5,12.5 - parent: 60 - type: Transform -- uid: 13151 - type: FirelockGlass - components: - - pos: 35.5,7.5 - parent: 60 - type: Transform -- uid: 13152 - type: FirelockGlass - components: - - pos: 35.5,8.5 - parent: 60 - type: Transform -- uid: 13153 - type: FirelockGlass - components: - - pos: 35.5,9.5 - parent: 60 - type: Transform -- uid: 13154 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 38.5,12.5 - parent: 60 - type: Transform -- uid: 13155 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: 18.5,26.5 - parent: 60 - type: Transform -- uid: 13156 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-27.5 - parent: 60 - type: Transform -- uid: 13157 - type: DrinkWaterCup - components: - - pos: 51.394554,17.7191 - parent: 60 - type: Transform -- uid: 13158 - type: AirlockCargoLocked - components: - - name: Cargo Breakroom - type: MetaData - - pos: 48.5,15.5 - parent: 60 - type: Transform -- uid: 13159 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 59.5,10.5 - parent: 60 - type: Transform -- uid: 13160 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 59.5,16.5 - parent: 60 - type: Transform -- uid: 13161 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 57.5,16.5 - parent: 60 - type: Transform -- uid: 13162 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 59.5,15.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13174 - Forward: - - port: Left - uid: 13174 - Off: - - port: Middle - uid: 13174 - type: SignalReceiver -- uid: 13163 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 58.5,15.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13174 - Forward: - - port: Left - uid: 13174 - Off: - - port: Middle - uid: 13174 - type: SignalReceiver -- uid: 13164 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 57.5,15.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13174 - Forward: - - port: Left - uid: 13174 - Off: - - port: Middle - uid: 13174 - type: SignalReceiver -- uid: 13165 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 56.5,15.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13174 - Forward: - - port: Left - uid: 13174 - Off: - - port: Middle - uid: 13174 - type: SignalReceiver -- uid: 13166 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 55.5,15.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13174 - Forward: - - port: Left - uid: 13174 - Off: - - port: Middle - uid: 13174 - type: SignalReceiver -- uid: 13167 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 55.5,11.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13173 - Forward: - - port: Left - uid: 13173 - Off: - - port: Middle - uid: 13173 - type: SignalReceiver -- uid: 13168 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 56.5,11.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13173 - Forward: - - port: Left - uid: 13173 - Off: - - port: Middle - uid: 13173 - type: SignalReceiver -- uid: 13169 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 57.5,11.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13173 - Forward: - - port: Left - uid: 13173 - Off: - - port: Middle - uid: 13173 - type: SignalReceiver -- uid: 13170 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 58.5,11.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13173 - Forward: - - port: Left - uid: 13173 - Off: - - port: Middle - uid: 13173 - type: SignalReceiver -- uid: 13171 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 59.5,11.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13173 - Forward: - - port: Left - uid: 13173 - Off: - - port: Middle - uid: 13173 - type: SignalReceiver -- uid: 13172 - type: PlasticFlapsAirtightClear - components: - - pos: 57.5,11.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13173 - type: TwoWayLever - components: - - pos: 55.5,12.5 - parent: 60 - type: Transform - - nextSignalLeft: True - type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 13167 - - port: Forward - uid: 13168 - - port: Forward - uid: 13169 - - port: Forward - uid: 13170 - - port: Forward - uid: 13171 - Right: - - port: Reverse - uid: 13167 - - port: Reverse - uid: 13168 - - port: Reverse - uid: 13169 - - port: Reverse - uid: 13170 - - port: Reverse - uid: 13171 - Middle: - - port: Off - uid: 13167 - - port: Off - uid: 13168 - - port: Off - uid: 13169 - - port: Off - uid: 13170 - - port: Off - uid: 13171 - type: SignalTransmitter -- uid: 13174 - type: TwoWayLever - components: - - pos: 55.5,14.5 - parent: 60 - type: Transform - - outputs: - Left: - - port: Forward - uid: 13166 - - port: Forward - uid: 13165 - - port: Forward - uid: 13164 - - port: Forward - uid: 13163 - - port: Forward - uid: 13162 - - port: Forward - uid: 13221 - - port: Forward - uid: 13222 - Right: - - port: Reverse - uid: 13166 - - port: Reverse - uid: 13165 - - port: Reverse - uid: 13164 - - port: Reverse - uid: 13163 - - port: Reverse - uid: 13162 - - port: Reverse - uid: 13221 - - port: Reverse - uid: 13222 - Middle: - - port: Off - uid: 13166 - - port: Off - uid: 13165 - - port: Off - uid: 13164 - - port: Off - uid: 13163 - - port: Off - uid: 13162 - - port: Off - uid: 13221 - - port: Off - uid: 13222 - type: SignalTransmitter -- uid: 13175 - type: BlastDoor - components: - - pos: 59.5,15.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17876 - type: SignalReceiver -- uid: 13176 - type: BlastDoor - components: - - pos: 57.5,15.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18802 - type: SignalReceiver -- uid: 13177 - type: BlastDoor - components: - - pos: 57.5,11.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18802 - type: SignalReceiver -- uid: 13178 - type: BlastDoor - components: - - pos: 59.5,11.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17876 - type: SignalReceiver -- uid: 13179 - type: PlasticFlapsAirtightClear - components: - - pos: 57.5,15.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13180 - type: PlasticFlapsAirtightClear - components: - - pos: 59.5,15.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13181 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 59.5,12.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 13182 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 59.5,14.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 13183 - type: AirlockExternalGlassCargoLocked - components: - - pos: 57.5,14.5 - parent: 60 - type: Transform -- uid: 13184 - type: AirlockExternalGlassCargoLocked - components: - - pos: 57.5,12.5 - parent: 60 - type: Transform -- uid: 13185 - type: Grille - components: - - pos: 57.5,13.5 - parent: 60 - type: Transform -- uid: 13186 - type: Grille - components: - - pos: 58.5,13.5 - parent: 60 - type: Transform -- uid: 13187 - type: Grille - components: - - pos: 59.5,13.5 - parent: 60 - type: Transform -- uid: 13188 - type: Grille - components: - - pos: 58.5,16.5 - parent: 60 - type: Transform -- uid: 13189 - type: Grille - components: - - pos: 58.5,10.5 - parent: 60 - type: Transform -- uid: 13190 - type: ReinforcedWindow - components: - - pos: 44.5,19.5 - parent: 60 - type: Transform -- uid: 13191 - type: ReinforcedWindow - components: - - pos: 42.5,18.5 - parent: 60 - type: Transform -- uid: 13192 - type: ReinforcedWindow - components: - - pos: 46.5,17.5 - parent: 60 - type: Transform -- uid: 13193 - type: Grille - components: - - pos: 45.5,16.5 - parent: 60 - type: Transform -- uid: 13194 - type: Grille - components: - - pos: 44.5,16.5 - parent: 60 - type: Transform -- uid: 13195 - type: Grille - components: - - pos: 43.5,16.5 - parent: 60 - type: Transform -- uid: 13196 - type: Grille - components: - - pos: 42.5,17.5 - parent: 60 - type: Transform -- uid: 13197 - type: Grille - components: - - pos: 42.5,18.5 - parent: 60 - type: Transform -- uid: 13198 - type: Grille - components: - - pos: 43.5,19.5 - parent: 60 - type: Transform -- uid: 13199 - type: Grille - components: - - pos: 44.5,19.5 - parent: 60 - type: Transform -- uid: 13200 - type: Grille - components: - - pos: 45.5,19.5 - parent: 60 - type: Transform -- uid: 13201 - type: Grille - components: - - pos: 46.5,18.5 - parent: 60 - type: Transform -- uid: 13202 - type: Grille - components: - - pos: 46.5,17.5 - parent: 60 - type: Transform -- uid: 13203 - type: CableApcExtension - components: - - pos: 51.5,16.5 - parent: 60 - type: Transform -- uid: 13204 - type: Table - components: - - pos: 51.5,18.5 - parent: 60 - type: Transform -- uid: 13205 - type: CableApcExtension - components: - - pos: 51.5,14.5 - parent: 60 - type: Transform -- uid: 13206 - type: GasPipeStraight - components: - - pos: 49.5,8.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13207 - type: ReinforcedWindow - components: - - pos: 53.5,19.5 - parent: 60 - type: Transform -- uid: 13208 - type: ReinforcedWindow - components: - - pos: 54.5,16.5 - parent: 60 - type: Transform -- uid: 13209 - type: ReinforcedWindow - components: - - pos: 55.5,19.5 - parent: 60 - type: Transform -- uid: 13210 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-0.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13211 - type: ReinforcedWindow - components: - - pos: 52.5,17.5 - parent: 60 - type: Transform -- uid: 13212 - type: CableApcExtension - components: - - pos: 51.5,15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13213 - type: ClosetEmergencyFilledRandom - components: - - pos: 54.5,4.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13214 - type: KitchenMicrowave - components: - - pos: 51.5,18.5 - parent: 60 - type: Transform -- uid: 13215 - type: Table - components: - - pos: 51.5,17.5 - parent: 60 - type: Transform -- uid: 13216 - type: CableMV - components: - - pos: 51.5,15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13217 - type: CableMV - components: - - pos: 51.5,14.5 - parent: 60 - type: Transform -- uid: 13218 - type: WallSolid - components: - - pos: 52.5,15.5 - parent: 60 - type: Transform -- uid: 13219 - type: ReinforcedWindow - components: - - pos: 55.5,16.5 - parent: 60 - type: Transform -- uid: 13220 - type: ReinforcedWindow - components: - - pos: 53.5,16.5 - parent: 60 - type: Transform -- uid: 13221 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 54.5,15.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13174 - Forward: - - port: Left - uid: 13174 - Off: - - port: Middle - uid: 13174 - type: SignalReceiver -- uid: 13222 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 53.5,15.5 - parent: 60 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13174 - Forward: - - port: Left - uid: 13174 - Off: - - port: Middle - uid: 13174 - type: SignalReceiver -- uid: 13223 - type: ReinforcedWindow - components: - - pos: 21.5,12.5 - parent: 60 - type: Transform -- uid: 13224 - type: WallReinforced - components: - - pos: 21.5,11.5 - parent: 60 - type: Transform -- uid: 13225 - type: WallReinforced - components: - - pos: 21.5,10.5 - parent: 60 - type: Transform -- uid: 13226 - type: WallReinforced - components: - - pos: 21.5,15.5 - parent: 60 - type: Transform -- uid: 13227 - type: WallReinforced - components: - - pos: 18.5,16.5 - parent: 60 - type: Transform -- uid: 13228 - type: WallReinforced - components: - - pos: 21.5,16.5 - parent: 60 - type: Transform -- uid: 13229 - type: ToiletDirtyWater - components: - - pos: 19.5,14.5 - parent: 60 - type: Transform -- uid: 13230 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 19.5,14.5 - parent: 60 - type: Transform -- uid: 13231 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: 19.5,13.5 - parent: 60 - type: Transform -- uid: 13232 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: 20.5,12.5 - parent: 60 - type: Transform -- uid: 13233 - type: Table - components: - - pos: 20.5,11.5 - parent: 60 - type: Transform -- uid: 13234 - type: Airlock - components: - - name: Bathroom - type: MetaData - - pos: 18.5,12.5 - parent: 60 - type: Transform -- uid: 13235 - type: RandomSoap - components: - - pos: 20.5,14.5 - parent: 60 - type: Transform -- uid: 13236 - type: RandomInstruments - components: - - pos: 20.5,11.5 - parent: 60 - type: Transform -- uid: 13237 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13238 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 19.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13239 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13240 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13241 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 19.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13242 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 16.5,11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13243 - type: FlashlightLantern - components: - - pos: 44.365112,0.6790407 - parent: 60 - type: Transform -- uid: 13244 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13245 - type: GasPipeTJunction - components: - - pos: 23.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13246 - type: Table - components: - - pos: 41.5,-1.5 - parent: 60 - type: Transform -- uid: 13247 - type: WardrobeSalvageFilled - components: - - pos: 40.5,-1.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13248 - type: ShuttersRadiationOpen - components: - - pos: -0.5,30.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21778 - type: SignalReceiver -- uid: 13249 - type: SignShock - components: - - pos: 6.5,35.5 - parent: 60 - type: Transform -- uid: 13250 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 40.5,3.5 - parent: 60 - type: Transform -- uid: 13251 - type: SignMinerDock - components: - - rot: 3.141592653589793 rad - pos: 36.5,3.5 - parent: 60 - type: Transform -- uid: 13252 - type: SignCargoDock - components: - - rot: 3.141592653589793 rad - pos: 47.5,10.5 - parent: 60 - type: Transform -- uid: 13253 - type: SignDirectionalSalvage - components: - - pos: 35.5,10.5 - parent: 60 - type: Transform -- uid: 13254 - type: ClothingHeadsetMining - components: - - pos: 42.667835,-1.3851483 - parent: 60 - type: Transform -- uid: 13255 - type: ChairOfficeDark - components: - - pos: 41.5,-0.5 - parent: 60 - type: Transform -- uid: 13256 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -2.5,35.5 - parent: 60 - type: Transform -- uid: 13257 - type: Table - components: - - pos: 24.5,-0.5 - parent: 60 - type: Transform -- uid: 13258 - type: ExtinguisherCabinetFilled - components: - - pos: 46.5,16.5 - parent: 60 - type: Transform -- uid: 13259 - type: RadioHandheld - components: - - pos: 24.411985,-0.3682616 - parent: 60 - type: Transform -- uid: 13260 - type: ClothingHeadsetMining - components: - - pos: 42.542835,-1.4476483 - parent: 60 - type: Transform -- uid: 13261 - type: RadioHandheld - components: - - pos: 24.630735,-0.3057616 - parent: 60 - type: Transform -- uid: 13262 - type: WindoorCargoLocked - components: - - pos: 45.5,4.5 - parent: 60 - type: Transform -- uid: 13263 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 60 - type: Transform -- uid: 13264 - type: HarpInstrument - components: - - pos: 22.5,-0.5 - parent: 60 - type: Transform -- uid: 13265 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 51.5,-1.5 - parent: 60 - type: Transform -- uid: 13266 - type: ShuttersRadiationOpen - components: - - pos: 1.5,30.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21778 - type: SignalReceiver -- uid: 13267 - type: AirlockEngineeringLocked - components: - - name: Particle Accelerator - type: MetaData - - pos: 0.5,30.5 - parent: 60 - type: Transform -- uid: 13268 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,3.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13269 - type: ReinforcedWindow - components: - - pos: -2.5,36.5 - parent: 60 - type: Transform -- uid: 13270 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -54.5,2.5 - parent: 60 - type: Transform -- uid: 13271 - type: Table - components: - - pos: 46.5,3.5 - parent: 60 - type: Transform -- uid: 13272 - type: Table - components: - - pos: 47.5,3.5 - parent: 60 - type: Transform -- uid: 13273 - type: Grille - components: - - pos: 54.5,19.5 - parent: 60 - type: Transform -- uid: 13274 - type: CableMV - components: - - pos: 46.5,5.5 - parent: 60 - type: Transform -- uid: 13275 - type: CableMV - components: - - pos: 46.5,6.5 - parent: 60 - type: Transform -- uid: 13276 - type: CableMV - components: - - pos: 46.5,7.5 - parent: 60 - type: Transform -- uid: 13277 - type: CableMV - components: - - pos: 46.5,8.5 - parent: 60 - type: Transform -- uid: 13278 - type: CableMV - components: - - pos: 46.5,9.5 - parent: 60 - type: Transform -- uid: 13279 - type: CableMV - components: - - pos: 47.5,9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13280 - type: CableMV - components: - - pos: 48.5,9.5 - parent: 60 - type: Transform -- uid: 13281 - type: CableMV - components: - - pos: 49.5,9.5 - parent: 60 - type: Transform -- uid: 13282 - type: CableMV - components: - - pos: 50.5,9.5 - parent: 60 - type: Transform -- uid: 13283 - type: CableMV - components: - - pos: 51.5,9.5 - parent: 60 - type: Transform -- uid: 13284 - type: CableMV - components: - - pos: 52.5,9.5 - parent: 60 - type: Transform -- uid: 13285 - type: CableMV - components: - - pos: 52.5,10.5 - parent: 60 - type: Transform -- uid: 13286 - type: CableMV - components: - - pos: 52.5,11.5 - parent: 60 - type: Transform -- uid: 13287 - type: CableMV - components: - - pos: 52.5,12.5 - parent: 60 - type: Transform -- uid: 13288 - type: CableMV - components: - - pos: 52.5,13.5 - parent: 60 - type: Transform -- uid: 13289 - type: CableMV - components: - - pos: 52.5,14.5 - parent: 60 - type: Transform -- uid: 13290 - type: Grille - components: - - pos: 53.5,19.5 - parent: 60 - type: Transform -- uid: 13291 - type: Grille - components: - - pos: 55.5,16.5 - parent: 60 - type: Transform -- uid: 13292 - type: Grille - components: - - pos: 54.5,16.5 - parent: 60 - type: Transform -- uid: 13293 - type: CableApcExtension - components: - - pos: 17.5,24.5 - parent: 60 - type: Transform -- uid: 13294 - type: CableApcExtension - components: - - pos: 16.5,24.5 - parent: 60 - type: Transform -- uid: 13295 - type: CableApcExtension - components: - - pos: 16.5,23.5 - parent: 60 - type: Transform -- uid: 13296 - type: IntercomSecurity - components: - - rot: 3.141592653589793 rad - pos: -28.5,-6.5 - parent: 60 - type: Transform -- uid: 13297 - type: Grille - components: - - pos: -30.5,-27.5 - parent: 60 - type: Transform -- uid: 13298 - type: CableApcExtension - components: - - pos: 16.5,20.5 - parent: 60 - type: Transform -- uid: 13299 - type: CableApcExtension - components: - - pos: 16.5,19.5 - parent: 60 - type: Transform -- uid: 13300 - type: CableApcExtension - components: - - pos: 16.5,18.5 - parent: 60 - type: Transform -- uid: 13301 - type: CableApcExtension - components: - - pos: 16.5,17.5 - parent: 60 - type: Transform -- uid: 13302 - type: Grille - components: - - pos: 52.5,17.5 - parent: 60 - type: Transform -- uid: 13303 - type: CableApcExtension - components: - - pos: 51.5,17.5 - parent: 60 - type: Transform -- uid: 13304 - type: CableApcExtension - components: - - pos: 50.5,17.5 - parent: 60 - type: Transform -- uid: 13305 - type: CableApcExtension - components: - - pos: 49.5,17.5 - parent: 60 - type: Transform -- uid: 13306 - type: CableApcExtension - components: - - pos: 48.5,17.5 - parent: 60 - type: Transform -- uid: 13307 - type: Grille - components: - - pos: 52.5,18.5 - parent: 60 - type: Transform -- uid: 13308 - type: CableApcExtension - components: - - pos: 52.5,14.5 - parent: 60 - type: Transform -- uid: 13309 - type: CableApcExtension - components: - - pos: 52.5,13.5 - parent: 60 - type: Transform -- uid: 13310 - type: CableApcExtension - components: - - pos: 52.5,12.5 - parent: 60 - type: Transform -- uid: 13311 - type: CableApcExtension - components: - - pos: 52.5,11.5 - parent: 60 - type: Transform -- uid: 13312 - type: CableApcExtension - components: - - pos: 52.5,10.5 - parent: 60 - type: Transform -- uid: 13313 - type: CableApcExtension - components: - - pos: 52.5,9.5 - parent: 60 - type: Transform -- uid: 13314 - type: CableApcExtension - components: - - pos: 52.5,8.5 - parent: 60 - type: Transform -- uid: 13315 - type: CableApcExtension - components: - - pos: 52.5,7.5 - parent: 60 - type: Transform -- uid: 13316 - type: CableApcExtension - components: - - pos: 52.5,6.5 - parent: 60 - type: Transform -- uid: 13317 - type: CableApcExtension - components: - - pos: 51.5,8.5 - parent: 60 - type: Transform -- uid: 13318 - type: CableApcExtension - components: - - pos: 50.5,8.5 - parent: 60 - type: Transform -- uid: 13319 - type: CableApcExtension - components: - - pos: 49.5,8.5 - parent: 60 - type: Transform -- uid: 13320 - type: CableApcExtension - components: - - pos: 48.5,8.5 - parent: 60 - type: Transform -- uid: 13321 - type: CableApcExtension - components: - - pos: 17.5,20.5 - parent: 60 - type: Transform -- uid: 13322 - type: CableApcExtension - components: - - pos: 47.5,8.5 - parent: 60 - type: Transform -- uid: 13323 - type: CableApcExtension - components: - - pos: 46.5,8.5 - parent: 60 - type: Transform -- uid: 13324 - type: CableApcExtension - components: - - pos: 45.5,8.5 - parent: 60 - type: Transform -- uid: 13325 - type: CableApcExtension - components: - - pos: 44.5,8.5 - parent: 60 - type: Transform -- uid: 13326 - type: CableApcExtension - components: - - pos: 43.5,8.5 - parent: 60 - type: Transform -- uid: 13327 - type: CableApcExtension - components: - - pos: 44.5,9.5 - parent: 60 - type: Transform -- uid: 13328 - type: CableApcExtension - components: - - pos: 44.5,10.5 - parent: 60 - type: Transform -- uid: 13329 - type: CableApcExtension - components: - - pos: 44.5,11.5 - parent: 60 - type: Transform -- uid: 13330 - type: CableApcExtension - components: - - pos: 44.5,12.5 - parent: 60 - type: Transform -- uid: 13331 - type: CableApcExtension - components: - - pos: 44.5,13.5 - parent: 60 - type: Transform -- uid: 13332 - type: CableApcExtension - components: - - pos: 44.5,14.5 - parent: 60 - type: Transform -- uid: 13333 - type: CableApcExtension - components: - - pos: 45.5,13.5 - parent: 60 - type: Transform -- uid: 13334 - type: CableApcExtension - components: - - pos: 46.5,13.5 - parent: 60 - type: Transform -- uid: 13335 - type: CableApcExtension - components: - - pos: 47.5,13.5 - parent: 60 - type: Transform -- uid: 13336 - type: CableApcExtension - components: - - pos: 48.5,13.5 - parent: 60 - type: Transform -- uid: 13337 - type: CableApcExtension - components: - - pos: 49.5,13.5 - parent: 60 - type: Transform -- uid: 13338 - type: CableApcExtension - components: - - pos: 50.5,13.5 - parent: 60 - type: Transform -- uid: 13339 - type: CableApcExtension - components: - - pos: 51.5,13.5 - parent: 60 - type: Transform -- uid: 13340 - type: CableApcExtension - components: - - pos: 53.5,14.5 - parent: 60 - type: Transform -- uid: 13341 - type: CableApcExtension - components: - - pos: 54.5,14.5 - parent: 60 - type: Transform -- uid: 13342 - type: CableApcExtension - components: - - pos: 55.5,14.5 - parent: 60 - type: Transform -- uid: 13343 - type: CableApcExtension - components: - - pos: 56.5,14.5 - parent: 60 - type: Transform -- uid: 13344 - type: CableApcExtension - components: - - pos: 57.5,14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13345 - type: CableApcExtension - components: - - pos: 58.5,14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13346 - type: CableApcExtension - components: - - pos: 53.5,12.5 - parent: 60 - type: Transform -- uid: 13347 - type: CableApcExtension - components: - - pos: 54.5,12.5 - parent: 60 - type: Transform -- uid: 13348 - type: CableApcExtension - components: - - pos: 55.5,12.5 - parent: 60 - type: Transform -- uid: 13349 - type: CableApcExtension - components: - - pos: 56.5,12.5 - parent: 60 - type: Transform -- uid: 13350 - type: CableApcExtension - components: - - pos: 57.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13351 - type: CableApcExtension - components: - - pos: 58.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13352 - type: CableApcExtension - components: - - pos: 53.5,8.5 - parent: 60 - type: Transform -- uid: 13353 - type: CableApcExtension - components: - - pos: 54.5,8.5 - parent: 60 - type: Transform -- uid: 13354 - type: CableApcExtension - components: - - pos: 55.5,8.5 - parent: 60 - type: Transform -- uid: 13355 - type: CableApcExtension - components: - - pos: 56.5,8.5 - parent: 60 - type: Transform -- uid: 13356 - type: CableApcExtension - components: - - pos: 49.5,7.5 - parent: 60 - type: Transform -- uid: 13357 - type: CableApcExtension - components: - - pos: 49.5,6.5 - parent: 60 - type: Transform -- uid: 13358 - type: CableApcExtension - components: - - pos: 44.5,7.5 - parent: 60 - type: Transform -- uid: 13359 - type: CableApcExtension - components: - - pos: 44.5,6.5 - parent: 60 - type: Transform -- uid: 13360 - type: CableApcExtension - components: - - pos: 44.5,5.5 - parent: 60 - type: Transform -- uid: 13361 - type: CableApcExtension - components: - - pos: 43.5,5.5 - parent: 60 - type: Transform -- uid: 13362 - type: CableApcExtension - components: - - pos: 46.5,3.5 - parent: 60 - type: Transform -- uid: 13363 - type: CableApcExtension - components: - - pos: 46.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13364 - type: CableApcExtension - components: - - pos: 46.5,2.5 - parent: 60 - type: Transform -- uid: 13365 - type: CableApcExtension - components: - - pos: 46.5,1.5 - parent: 60 - type: Transform -- uid: 13366 - type: CableApcExtension - components: - - pos: 46.5,0.5 - parent: 60 - type: Transform -- uid: 13367 - type: CableApcExtension - components: - - pos: 46.5,-0.5 - parent: 60 - type: Transform -- uid: 13368 - type: CableApcExtension - components: - - pos: 46.5,-1.5 - parent: 60 - type: Transform -- uid: 13369 - type: CableApcExtension - components: - - pos: 45.5,-1.5 - parent: 60 - type: Transform -- uid: 13370 - type: CableApcExtension - components: - - pos: 44.5,-1.5 - parent: 60 - type: Transform -- uid: 13371 - type: CableApcExtension - components: - - pos: 44.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13372 - type: CableApcExtension - components: - - pos: 44.5,-2.5 - parent: 60 - type: Transform -- uid: 13373 - type: CableApcExtension - components: - - pos: 45.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13374 - type: CableApcExtension - components: - - pos: 46.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13375 - type: CableApcExtension - components: - - pos: 47.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13376 - type: CableApcExtension - components: - - pos: 48.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13377 - type: CableApcExtension - components: - - pos: 49.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13378 - type: CableApcExtension - components: - - pos: 50.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13379 - type: CableApcExtension - components: - - pos: 51.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13380 - type: CableApcExtension - components: - - pos: 52.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13381 - type: CableApcExtension - components: - - pos: 53.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13382 - type: CableApcExtension - components: - - pos: 47.5,3.5 - parent: 60 - type: Transform -- uid: 13383 - type: CableApcExtension - components: - - pos: 48.5,3.5 - parent: 60 - type: Transform -- uid: 13384 - type: CableApcExtension - components: - - pos: 49.5,3.5 - parent: 60 - type: Transform -- uid: 13385 - type: CableApcExtension - components: - - pos: 50.5,3.5 - parent: 60 - type: Transform -- uid: 13386 - type: CableApcExtension - components: - - pos: 51.5,3.5 - parent: 60 - type: Transform -- uid: 13387 - type: CableApcExtension - components: - - pos: 52.5,3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13388 - type: CableApcExtension - components: - - pos: 53.5,3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13389 - type: CableApcExtension - components: - - pos: 54.5,3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13390 - type: CableApcExtension - components: - - pos: 47.5,0.5 - parent: 60 - type: Transform -- uid: 13391 - type: CableMV - components: - - pos: 17.5,8.5 - parent: 60 - type: Transform -- uid: 13392 - type: CableMV - components: - - pos: 17.5,9.5 - parent: 60 - type: Transform -- uid: 13393 - type: CableMV - components: - - pos: 17.5,10.5 - parent: 60 - type: Transform -- uid: 13394 - type: CableMV - components: - - pos: 17.5,11.5 - parent: 60 - type: Transform -- uid: 13395 - type: CableMV - components: - - pos: 17.5,12.5 - parent: 60 - type: Transform -- uid: 13396 - type: CableMV - components: - - pos: 17.5,13.5 - parent: 60 - type: Transform -- uid: 13397 - type: CableMV - components: - - pos: 16.5,13.5 - parent: 60 - type: Transform -- uid: 13398 - type: CableMV - components: - - pos: 15.5,13.5 - parent: 60 - type: Transform -- uid: 13399 - type: CableMV - components: - - pos: 14.5,13.5 - parent: 60 - type: Transform -- uid: 13400 - type: CableMV - components: - - pos: 13.5,13.5 - parent: 60 - type: Transform -- uid: 13401 - type: CableMV - components: - - pos: 13.5,14.5 - parent: 60 - type: Transform -- uid: 13402 - type: CableMV - components: - - pos: 13.5,15.5 - parent: 60 - type: Transform -- uid: 13403 - type: CableMV - components: - - pos: 13.5,16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13404 - type: CableApcExtension - components: - - pos: 13.5,16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13405 - type: CableApcExtension - components: - - pos: 13.5,15.5 - parent: 60 - type: Transform -- uid: 13406 - type: CableApcExtension - components: - - pos: 13.5,14.5 - parent: 60 - type: Transform -- uid: 13407 - type: CableApcExtension - components: - - pos: 13.5,13.5 - parent: 60 - type: Transform -- uid: 13408 - type: CableApcExtension - components: - - pos: 13.5,12.5 - parent: 60 - type: Transform -- uid: 13409 - type: CableApcExtension - components: - - pos: 13.5,11.5 - parent: 60 - type: Transform -- uid: 13410 - type: CableApcExtension - components: - - pos: 12.5,13.5 - parent: 60 - type: Transform -- uid: 13411 - type: CableApcExtension - components: - - pos: 11.5,13.5 - parent: 60 - type: Transform -- uid: 13412 - type: CableApcExtension - components: - - pos: 10.5,13.5 - parent: 60 - type: Transform -- uid: 13413 - type: CableApcExtension - components: - - pos: 14.5,13.5 - parent: 60 - type: Transform -- uid: 13414 - type: CableApcExtension - components: - - pos: 15.5,13.5 - parent: 60 - type: Transform -- uid: 13415 - type: CableApcExtension - components: - - pos: 16.5,13.5 - parent: 60 - type: Transform -- uid: 13416 - type: CableApcExtension - components: - - pos: 16.5,12.5 - parent: 60 - type: Transform -- uid: 13417 - type: CableApcExtension - components: - - pos: 16.5,11.5 - parent: 60 - type: Transform -- uid: 13418 - type: CableApcExtension - components: - - pos: 16.5,14.5 - parent: 60 - type: Transform -- uid: 13419 - type: CableApcExtension - components: - - pos: 16.5,15.5 - parent: 60 - type: Transform -- uid: 13420 - type: CableApcExtension - components: - - pos: 17.5,15.5 - parent: 60 - type: Transform -- uid: 13421 - type: CableApcExtension - components: - - pos: 48.5,0.5 - parent: 60 - type: Transform -- uid: 13422 - type: CableApcExtension - components: - - pos: 49.5,0.5 - parent: 60 - type: Transform -- uid: 13423 - type: CableApcExtension - components: - - pos: 50.5,0.5 - parent: 60 - type: Transform -- uid: 13424 - type: CableApcExtension - components: - - pos: 51.5,0.5 - parent: 60 - type: Transform -- uid: 13425 - type: CableApcExtension - components: - - pos: 16.5,10.5 - parent: 60 - type: Transform -- uid: 13426 - type: CableApcExtension - components: - - pos: 16.5,9.5 - parent: 60 - type: Transform -- uid: 13427 - type: CableApcExtension - components: - - pos: 16.5,8.5 - parent: 60 - type: Transform -- uid: 13428 - type: CableApcExtension - components: - - pos: 16.5,7.5 - parent: 60 - type: Transform -- uid: 13429 - type: CableApcExtension - components: - - pos: 15.5,8.5 - parent: 60 - type: Transform -- uid: 13430 - type: CableApcExtension - components: - - pos: 14.5,8.5 - parent: 60 - type: Transform -- uid: 13431 - type: CableApcExtension - components: - - pos: 13.5,8.5 - parent: 60 - type: Transform -- uid: 13432 - type: CableApcExtension - components: - - pos: 12.5,8.5 - parent: 60 - type: Transform -- uid: 13433 - type: CableApcExtension - components: - - pos: 11.5,8.5 - parent: 60 - type: Transform -- uid: 13434 - type: CableApcExtension - components: - - pos: 10.5,8.5 - parent: 60 - type: Transform -- uid: 13435 - type: CableApcExtension - components: - - pos: 9.5,8.5 - parent: 60 - type: Transform -- uid: 13436 - type: CableApcExtension - components: - - pos: 8.5,8.5 - parent: 60 - type: Transform -- uid: 13437 - type: CableApcExtension - components: - - pos: 7.5,8.5 - parent: 60 - type: Transform -- uid: 13438 - type: CableApcExtension - components: - - pos: 6.5,8.5 - parent: 60 - type: Transform -- uid: 13439 - type: CableApcExtension - components: - - pos: 11.5,7.5 - parent: 60 - type: Transform -- uid: 13440 - type: CableApcExtension - components: - - pos: 11.5,6.5 - parent: 60 - type: Transform -- uid: 13441 - type: CableApcExtension - components: - - pos: 13.5,6.5 - parent: 60 - type: Transform -- uid: 13442 - type: CableApcExtension - components: - - pos: 14.5,3.5 - parent: 60 - type: Transform -- uid: 13443 - type: GasPipeTJunction - components: - - pos: -21.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13444 - type: GasVentScrubber - components: - - pos: -31.5,45.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13445 - type: Grille - components: - - pos: -23.5,28.5 - parent: 60 - type: Transform -- uid: 13446 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 45.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13447 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -21.5,30.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13448 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -21.5,29.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13449 - type: CableApcExtension - components: - - pos: 6.5,9.5 - parent: 60 - type: Transform -- uid: 13450 - type: CableApcExtension - components: - - pos: 5.5,9.5 - parent: 60 - type: Transform -- uid: 13451 - type: CableApcExtension - components: - - pos: 4.5,9.5 - parent: 60 - type: Transform -- uid: 13452 - type: CableApcExtension - components: - - pos: 3.5,9.5 - parent: 60 - type: Transform -- uid: 13453 - type: CableApcExtension - components: - - pos: 2.5,9.5 - parent: 60 - type: Transform -- uid: 13454 - type: CableApcExtension - components: - - pos: 1.5,9.5 - parent: 60 - type: Transform -- uid: 13455 - type: CableApcExtension - components: - - pos: 0.5,9.5 - parent: 60 - type: Transform -- uid: 13456 - type: CableApcExtension - components: - - pos: 0.5,10.5 - parent: 60 - type: Transform -- uid: 13457 - type: CableApcExtension - components: - - pos: 52.5,0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13458 - type: CableApcExtension - components: - - pos: 53.5,0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13459 - type: CableApcExtension - components: - - pos: 54.5,0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13460 - type: CableApcExtension - components: - - pos: 45.5,2.5 - parent: 60 - type: Transform -- uid: 13461 - type: CableApcExtension - components: - - pos: 44.5,2.5 - parent: 60 - type: Transform -- uid: 13462 - type: CableApcExtension - components: - - pos: 43.5,2.5 - parent: 60 - type: Transform -- uid: 13463 - type: CableApcExtension - components: - - pos: 42.5,2.5 - parent: 60 - type: Transform -- uid: 13464 - type: CableApcExtension - components: - - pos: 41.5,2.5 - parent: 60 - type: Transform -- uid: 13465 - type: CableApcExtension - components: - - pos: 40.5,2.5 - parent: 60 - type: Transform -- uid: 13466 - type: CableApcExtension - components: - - pos: 41.5,1.5 - parent: 60 - type: Transform -- uid: 13467 - type: CableApcExtension - components: - - pos: 41.5,0.5 - parent: 60 - type: Transform -- uid: 13468 - type: CableApcExtension - components: - - pos: 41.5,-0.5 - parent: 60 - type: Transform -- uid: 13469 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 49.5,3.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13470 - type: CableApcExtension - components: - - pos: 40.5,-0.5 - parent: 60 - type: Transform -- uid: 13471 - type: CableApcExtension - components: - - pos: 39.5,-0.5 - parent: 60 - type: Transform -- uid: 13472 - type: CableApcExtension - components: - - pos: 38.5,-0.5 - parent: 60 - type: Transform -- uid: 13473 - type: CableApcExtension - components: - - pos: 37.5,-0.5 - parent: 60 - type: Transform -- uid: 13474 - type: CableApcExtension - components: - - pos: 37.5,0.5 - parent: 60 - type: Transform -- uid: 13475 - type: CableApcExtension - components: - - pos: 37.5,1.5 - parent: 60 - type: Transform -- uid: 13476 - type: CableApcExtension - components: - - pos: 37.5,2.5 - parent: 60 - type: Transform -- uid: 13477 - type: Table - components: - - pos: 47.5,17.5 - parent: 60 - type: Transform -- uid: 13478 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 47.5,16.5 - parent: 60 - type: Transform -- uid: 13479 - type: WallSolid - components: - - pos: 34.5,12.5 - parent: 60 - type: Transform -- uid: 13480 - type: Poweredlight - components: - - pos: 56.5,15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13481 - type: WallSolid - components: - - pos: 33.5,12.5 - parent: 60 - type: Transform -- uid: 13482 - type: WallSolid - components: - - pos: 33.5,13.5 - parent: 60 - type: Transform -- uid: 13483 - type: LockerElectricalSuppliesFilled - components: - - pos: 52.5,-4.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13484 - type: PoweredSmallLight - components: - - pos: 53.5,-3.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13485 - type: Rack - components: - - pos: 53.5,-4.5 - parent: 60 - type: Transform -- uid: 13486 - type: DoorElectronics - components: - - pos: 53.179764,-4.3493614 - parent: 60 - type: Transform -- uid: 13487 - type: DoorElectronics - components: - - pos: 53.19539,-4.5368614 - parent: 60 - type: Transform -- uid: 13488 - type: AirAlarmElectronics - components: - - pos: 53.742264,-4.4274864 - parent: 60 - type: Transform -- uid: 13489 - type: WallSolid - components: - - pos: 51.5,15.5 - parent: 60 - type: Transform -- uid: 13490 - type: GasPipeStraight - components: - - pos: 49.5,7.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13491 - type: ClothingHeadHatCargosoftFlipped - components: - - pos: 56.67338,6.366034 - parent: 60 - type: Transform -- uid: 13492 - type: ClothingHandsGlovesColorOrange - components: - - pos: -4.592652,-28.266113 - parent: 60 - type: Transform -- uid: 13493 - type: APCBasic - components: - - pos: 51.5,15.5 - parent: 60 - type: Transform -- uid: 13494 - type: Shovel - components: - - pos: 44.552612,0.5384157 - parent: 60 - type: Transform -- uid: 13495 - type: ClothingBeltUtilityFilled - components: - - pos: 46.478703,6.560299 - parent: 60 - type: Transform -- uid: 13496 - type: VendingMachineCargoDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 48.5,10.5 - parent: 60 - type: Transform -- uid: 13497 - type: WallSolid - components: - - pos: 48.5,11.5 - parent: 60 - type: Transform -- uid: 13498 - type: Table - components: - - pos: 48.5,9.5 - parent: 60 - type: Transform -- uid: 13499 - type: FlashlightLantern - components: - - pos: 44.474487,0.5227907 - parent: 60 - type: Transform -- uid: 13500 - type: Multitool - components: - - pos: 43.93625,13.575698 - parent: 60 - type: Transform -- uid: 13501 - type: BoxFolderRed - components: - - pos: 46.5541,9.572361 - parent: 60 - type: Transform -- uid: 13502 - type: BoxFolderYellow - components: - - pos: 46.4291,9.759861 - parent: 60 - type: Transform -- uid: 13503 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-1.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13504 - type: GasPipeTJunction - components: - - pos: 47.5,2.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13505 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,2.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13506 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,2.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13507 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,0.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13508 - type: GasPipeStraight - components: - - pos: 49.5,4.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13509 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,1.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13510 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 41.5,2.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13511 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,3.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13512 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,2.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13513 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,2.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13514 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,2.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13515 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13516 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-0.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13517 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-1.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13518 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-0.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13519 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,3.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13520 - type: GasPipeStraight - components: - - pos: 40.5,2.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13521 - type: ClothingHandsGlovesFingerless - components: - - pos: 48.4675,9.582729 - parent: 60 - type: Transform -- uid: 13522 - type: BoxLightMixed - components: - - pos: 46.515064,10.527505 - parent: 60 - type: Transform -- uid: 13523 - type: CableApcExtension - components: - - pos: 6.5,-27.5 - parent: 60 - type: Transform -- uid: 13524 - type: CableApcExtension - components: - - pos: 7.5,-27.5 - parent: 60 - type: Transform -- uid: 13525 - type: CableApcExtension - components: - - pos: 8.5,-27.5 - parent: 60 - type: Transform -- uid: 13526 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,3.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13527 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-37.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13528 - type: CableApcExtension - components: - - pos: -0.5,-35.5 - parent: 60 - type: Transform -- uid: 13529 - type: GasPipeStraight - components: - - pos: 40.5,1.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13530 - type: PoweredSmallLight - components: - - pos: 7.5,-31.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13531 - type: SubstationBasic - components: - - name: Sci Substation 1 - type: MetaData - - pos: -58.5,9.5 - parent: 60 - type: Transform -- uid: 13532 - type: CableHV - components: - - pos: -58.5,9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13533 - type: CableMV - components: - - pos: -58.5,9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13534 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 43.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13535 - type: PottedPlant21 - components: - - pos: 52.5,-30.5 - parent: 60 - type: Transform -- uid: 13536 - type: GasVentPump - components: - - pos: 16.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13537 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 20.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13538 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 20.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13539 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13540 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13541 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13542 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13543 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13544 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13545 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13546 - type: GasPipeTJunction - components: - - pos: 21.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13547 - type: ReinforcedWindow - components: - - pos: 65.5,-39.5 - parent: 60 - type: Transform -- uid: 13548 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 21.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13549 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -5.5,-19.5 - parent: 60 - type: Transform -- uid: 13550 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-46.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13551 - type: PoweredSmallLight - components: - - pos: -8.5,-48.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13552 - type: CableApcExtension - components: - - pos: 31.5,-52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13553 - type: CableApcExtension - components: - - pos: 31.5,-53.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13554 - type: CableApcExtension - components: - - pos: 31.5,-54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13555 - type: CableApcExtension - components: - - pos: 31.5,-54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13556 - type: CableApcExtension - components: - - pos: 31.5,-55.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13557 - type: CableApcExtension - components: - - pos: 31.5,-56.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13558 - type: CableApcExtension - components: - - pos: 31.5,-57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13559 - type: CableApcExtension - components: - - pos: 31.5,-58.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13560 - type: CableApcExtension - components: - - pos: 31.5,-51.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13561 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-48.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13562 - type: TableCarpet - components: - - pos: 19.5,-38.5 - parent: 60 - type: Transform -- uid: 13563 - type: GasVentScrubber - components: - - pos: 22.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13564 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13565 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13566 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,0.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13567 - type: TableCarpet - components: - - pos: 19.5,-37.5 - parent: 60 - type: Transform -- uid: 13568 - type: WallSolid - components: - - pos: 21.5,-39.5 - parent: 60 - type: Transform -- uid: 13569 - type: ClothingNeckNonBinaryPin - components: - - pos: -6.8039737,15.288539 - parent: 60 - type: Transform -- uid: 13570 - type: WallSolid - components: - - pos: 18.5,-39.5 - parent: 60 - type: Transform -- uid: 13571 - type: ClothingHeadHatWeldingMaskFlameBlue - components: - - pos: 18.504234,-40.509876 - parent: 60 - type: Transform -- uid: 13572 - type: PoweredSmallLight - components: - - pos: 12.5,-39.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13573 - type: PoweredSmallLight - components: - - pos: 7.5,-48.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13574 - type: Catwalk - components: - - pos: 39.5,-35.5 - parent: 60 - type: Transform -- uid: 13575 - type: LockerChemistryFilled - components: - - pos: 41.5,-34.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13576 - type: RandomPosterAny - components: - - pos: -10.5,-47.5 - parent: 60 - type: Transform -- uid: 13577 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -55.5,3.5 - parent: 60 - type: Transform -- uid: 13578 - type: PosterLegitNanotrasenLogo - components: - - pos: -44.5,6.5 - parent: 60 - type: Transform -- uid: 13579 - type: PosterLegitIan - components: - - pos: 9.5,-32.5 - parent: 60 - type: Transform -- uid: 13580 - type: PosterLegitHighClassMartini - components: - - pos: 12.5,-34.5 - parent: 60 - type: Transform -- uid: 13581 - type: PosterLegitCohibaRobustoAd - components: - - pos: 12.5,-36.5 - parent: 60 - type: Transform -- uid: 13582 - type: PosterContrabandBountyHunters - components: - - pos: -29.5,1.5 - parent: 60 - type: Transform -- uid: 13583 - type: PosterLegitIonRifle - components: - - pos: -28.5,3.5 - parent: 60 - type: Transform -- uid: 13584 - type: PosterLegitSpaceCops - components: - - pos: -21.5,3.5 - parent: 60 - type: Transform -- uid: 13585 - type: PosterContrabandRevolver - components: - - pos: -24.5,3.5 - parent: 60 - type: Transform -- uid: 13586 - type: PosterContrabandPwrGame - components: - - pos: -52.5,10.5 - parent: 60 - type: Transform -- uid: 13587 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13588 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-37.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13589 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-37.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13590 - type: IntercomEngineering - components: - - pos: -1.5,12.5 - parent: 60 - type: Transform -- uid: 13591 - type: GasPipeStraight - components: - - pos: 49.5,6.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13592 - type: ReinforcedPlasmaWindow - components: - - pos: -7.5,34.5 - parent: 60 - type: Transform -- uid: 13593 - type: RandomPosterLegit - components: - - pos: 18.5,-12.5 - parent: 60 - type: Transform -- uid: 13594 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13595 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13596 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13597 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13598 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -4.5,-17.5 - parent: 60 - type: Transform -- uid: 13599 - type: Bucket - components: - - pos: -9.835501,-12.340368 - parent: 60 - type: Transform -- uid: 13600 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -8.5,-10.5 - parent: 60 - type: Transform -- uid: 13601 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13602 - type: WallReinforced - components: - - pos: -11.5,-17.5 - parent: 60 - type: Transform -- uid: 13603 - type: CarpetOrange - components: - - pos: -8.5,-13.5 - parent: 60 - type: Transform -- uid: 13604 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 60 - type: Transform -- uid: 13605 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 60 - type: Transform -- uid: 13606 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 60 - type: Transform -- uid: 13607 - type: HydroponicsToolMiniHoe - components: - - pos: -9.77185,-12.8355055 - parent: 60 - type: Transform - - nextAttack: 3110.4589514 - type: MeleeWeapon -- uid: 13608 - type: WindowReinforcedDirectional - components: - - pos: -6.5,-13.5 - parent: 60 - type: Transform -- uid: 13609 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 60 - type: Transform -- uid: 13610 - type: LockerEvidence - components: - - pos: -8.5,-17.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13611 - type: WindowReinforcedDirectional - components: - - pos: -11.5,-18.5 - parent: 60 - type: Transform -- uid: 13612 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 31.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13613 - type: Grille - components: - - pos: -11.5,-18.5 - parent: 60 - type: Transform -- uid: 13614 - type: WallReinforced - components: - - pos: -6.5,-19.5 - parent: 60 - type: Transform -- uid: 13615 - type: WallReinforced - components: - - pos: -7.5,-19.5 - parent: 60 - type: Transform -- uid: 13616 - type: ReinforcedWindow - components: - - pos: -9.5,-20.5 - parent: 60 - type: Transform -- uid: 13617 - type: WallReinforced - components: - - pos: -9.5,-19.5 - parent: 60 - type: Transform -- uid: 13618 - type: WallReinforced - components: - - pos: -10.5,-19.5 - parent: 60 - type: Transform -- uid: 13619 - type: WallReinforced - components: - - pos: -11.5,-19.5 - parent: 60 - type: Transform -- uid: 13620 - type: CableMV - components: - - pos: -4.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13621 - type: CableMV - components: - - pos: -5.5,-17.5 - parent: 60 - type: Transform -- uid: 13622 - type: LockerEvidence - components: - - pos: -7.5,-17.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13623 - type: WallReinforced - components: - - pos: -11.5,-15.5 - parent: 60 - type: Transform -- uid: 13624 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -9.5,-10.5 - parent: 60 - type: Transform -- uid: 13625 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -7.5,-10.5 - parent: 60 - type: Transform -- uid: 13626 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-10.5 - parent: 60 - type: Transform -- uid: 13627 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig - type: SurveillanceCamera -- uid: 13628 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -55.5,4.5 - parent: 60 - type: Transform -- uid: 13629 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -55.5,5.5 - parent: 60 - type: Transform -- uid: 13630 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13631 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13632 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -10.5,-10.5 - parent: 60 - type: Transform -- uid: 13633 - type: WallReinforced - components: - - pos: -11.5,-10.5 - parent: 60 - type: Transform -- uid: 13634 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 60 - type: Transform -- uid: 13635 - type: WallReinforced - components: - - pos: -11.5,-11.5 - parent: 60 - type: Transform -- uid: 13636 - type: hydroponicsTray - components: - - pos: -10.5,-12.5 - parent: 60 - type: Transform -- uid: 13637 - type: WindowReinforcedDirectional - components: - - pos: -7.5,-10.5 - parent: 60 - type: Transform -- uid: 13638 - type: Grille - components: - - pos: -11.5,-14.5 - parent: 60 - type: Transform -- uid: 13639 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-13.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13640 - type: Grille - components: - - pos: -11.5,-12.5 - parent: 60 - type: Transform -- uid: 13641 - type: CableMV - components: - - pos: -7.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13642 - type: ClothingHeadHatPaper - components: - - pos: -8.54058,-12.424972 - parent: 60 - type: Transform -- uid: 13643 - type: WindowReinforcedDirectional - components: - - pos: -8.5,-14.5 - parent: 60 - type: Transform -- uid: 13644 - type: VendingMachineSeedsUnlocked - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,-11.5 - parent: 60 - type: Transform -- uid: 13645 - type: Grille - components: - - pos: -9.5,-10.5 - parent: 60 - type: Transform -- uid: 13646 - type: Grille - components: - - pos: -8.5,-10.5 - parent: 60 - type: Transform -- uid: 13647 - type: Grille - components: - - pos: -10.5,-10.5 - parent: 60 - type: Transform -- uid: 13648 - type: Grille - components: - - pos: -13.5,-14.5 - parent: 60 - type: Transform -- uid: 13649 - type: Grille - components: - - pos: -13.5,-13.5 - parent: 60 - type: Transform -- uid: 13650 - type: Grille - components: - - pos: -13.5,-12.5 - parent: 60 - type: Transform -- uid: 13651 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13652 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13653 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13654 - type: CarpetOrange - components: - - pos: -7.5,-13.5 - parent: 60 - type: Transform -- uid: 13655 - type: BlockGameArcade - components: - - pos: -8.5,-11.5 - parent: 60 - type: Transform -- uid: 13656 - type: WindowReinforcedDirectional - components: - - pos: -9.5,-10.5 - parent: 60 - type: Transform -- uid: 13657 - type: HarmonicaInstrument - components: - - pos: -7.494558,-11.436351 - parent: 60 - type: Transform -- uid: 13658 - type: CableMV - components: - - pos: -5.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13659 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 60 - type: Transform -- uid: 13660 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 60 - type: Transform -- uid: 13661 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 60 - type: Transform -- uid: 13662 - type: WindowReinforcedDirectional - components: - - pos: -8.5,-10.5 - parent: 60 - type: Transform -- uid: 13663 - type: WindowReinforcedDirectional - components: - - pos: -10.5,-10.5 - parent: 60 - type: Transform -- uid: 13664 - type: Grille - components: - - pos: -9.5,-20.5 - parent: 60 - type: Transform -- uid: 13665 - type: Grille - components: - - pos: -7.5,-20.5 - parent: 60 - type: Transform -- uid: 13666 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 60 - type: Transform -- uid: 13667 - type: Rack - components: - - pos: -5.5,-17.5 - parent: 60 - type: Transform -- uid: 13668 - type: SignDirectionalBrig - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-21.5 - parent: 60 - type: Transform -- uid: 13669 - type: SignDirectionalBrig - components: - - rot: 3.141592653589793 rad - pos: -7.5,-21.5 - parent: 60 - type: Transform -- uid: 13670 - type: SignPrison - components: - - pos: -9.5,-21.5 - parent: 60 - type: Transform -- uid: 13671 - type: CableMV - components: - - pos: -4.5,-17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13672 - type: WallReinforced - components: - - pos: -6.5,-10.5 - parent: 60 - type: Transform -- uid: 13673 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,-22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13674 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13675 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13676 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13677 - type: CableMV - components: - - pos: -7.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13678 - type: CableMV - components: - - pos: -7.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13679 - type: CableMV - components: - - pos: -10.5,-18.5 - parent: 60 - type: Transform -- uid: 13680 - type: CableMV - components: - - pos: -8.5,-17.5 - parent: 60 - type: Transform -- uid: 13681 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 60 - type: Transform -- uid: 13682 - type: CableMV - components: - - pos: -7.5,-17.5 - parent: 60 - type: Transform -- uid: 13683 - type: CableMV - components: - - pos: -11.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13684 - type: CableMV - components: - - pos: -8.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13685 - type: WindowReinforcedDirectional - components: - - pos: -8.5,-16.5 - parent: 60 - type: Transform -- uid: 13686 - type: CableMV - components: - - pos: -10.5,-17.5 - parent: 60 - type: Transform -- uid: 13687 - type: ToiletEmpty - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 60 - type: Transform -- uid: 13688 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-17.5 - parent: 60 - type: Transform -- uid: 13689 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-16.5 - parent: 60 - type: Transform -- uid: 13690 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -7.5,-16.5 - parent: 60 - type: Transform -- uid: 13691 - type: Table - components: - - pos: -7.5,-11.5 - parent: 60 - type: Transform -- uid: 13692 - type: CarpetOrange - components: - - pos: -7.5,-12.5 - parent: 60 - type: Transform -- uid: 13693 - type: CarpetOrange - components: - - pos: -8.5,-12.5 - parent: 60 - type: Transform -- uid: 13694 - type: Grille - components: - - pos: -11.5,-13.5 - parent: 60 - type: Transform -- uid: 13695 - type: CableApcExtension - components: - - pos: -7.5,-18.5 - parent: 60 - type: Transform -- uid: 13696 - type: AirlockFreezer - components: - - pos: -10.5,-16.5 - parent: 60 - type: Transform -- uid: 13697 - type: CableApcExtension - components: - - pos: -8.5,-18.5 - parent: 60 - type: Transform -- uid: 13698 - type: SeedExtractor - components: - - pos: -9.5,-11.5 - parent: 60 - type: Transform -- uid: 13699 - type: BedsheetOrange - components: - - pos: -7.5,-12.5 - parent: 60 - type: Transform -- uid: 13700 - type: Bookshelf - components: - - pos: -7.5,-14.5 - parent: 60 - type: Transform -- uid: 13701 - type: AirlockSecurityLocked - components: - - pos: -8.5,-19.5 - parent: 60 - type: Transform -- uid: 13702 - type: CableMV - components: - - pos: -15.5,-25.5 - parent: 60 - type: Transform -- uid: 13703 - type: CableMV - components: - - pos: -15.5,-24.5 - parent: 60 - type: Transform -- uid: 13704 - type: CableMV - components: - - pos: -15.5,-23.5 - parent: 60 - type: Transform -- uid: 13705 - type: CableMV - components: - - pos: -15.5,-22.5 - parent: 60 - type: Transform -- uid: 13706 - type: CableMV - components: - - pos: -14.5,-22.5 - parent: 60 - type: Transform -- uid: 13707 - type: CableMV - components: - - pos: -13.5,-22.5 - parent: 60 - type: Transform -- uid: 13708 - type: CableMV - components: - - pos: -12.5,-22.5 - parent: 60 - type: Transform -- uid: 13709 - type: CableMV - components: - - pos: -11.5,-22.5 - parent: 60 - type: Transform -- uid: 13710 - type: CableMV - components: - - pos: -10.5,-22.5 - parent: 60 - type: Transform -- uid: 13711 - type: CableMV - components: - - pos: -9.5,-22.5 - parent: 60 - type: Transform -- uid: 13712 - type: CableMV - components: - - pos: -8.5,-22.5 - parent: 60 - type: Transform -- uid: 13713 - type: CableMV - components: - - pos: -8.5,-21.5 - parent: 60 - type: Transform -- uid: 13714 - type: CableMV - components: - - pos: -8.5,-20.5 - parent: 60 - type: Transform -- uid: 13715 - type: CableMV - components: - - pos: -8.5,-19.5 - parent: 60 - type: Transform -- uid: 13716 - type: CableMV - components: - - pos: -10.5,-16.5 - parent: 60 - type: Transform -- uid: 13717 - type: WallReinforced - components: - - pos: -9.5,-17.5 - parent: 60 - type: Transform -- uid: 13718 - type: CableMV - components: - - pos: -7.5,-15.5 - parent: 60 - type: Transform -- uid: 13719 - type: WallReinforced - components: - - pos: -4.5,-16.5 - parent: 60 - type: Transform -- uid: 13720 - type: CableMV - components: - - pos: -8.5,-15.5 - parent: 60 - type: Transform -- uid: 13721 - type: CableMV - components: - - pos: -10.5,-15.5 - parent: 60 - type: Transform -- uid: 13722 - type: CableApcExtension - components: - - pos: -8.5,-19.5 - parent: 60 - type: Transform -- uid: 13723 - type: CableApcExtension - components: - - pos: -8.5,-20.5 - parent: 60 - type: Transform -- uid: 13724 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 60 - type: Transform -- uid: 13725 - type: CableMV - components: - - pos: -6.5,-16.5 - parent: 60 - type: Transform -- uid: 13726 - type: WallReinforced - components: - - pos: -9.5,-18.5 - parent: 60 - type: Transform -- uid: 13727 - type: AirlockSecurityLocked - components: - - pos: -6.5,-16.5 - parent: 60 - type: Transform -- uid: 13728 - type: WallReinforced - components: - - pos: -9.5,-16.5 - parent: 60 - type: Transform -- uid: 13729 - type: CableApcExtension - components: - - pos: -9.5,-14.5 - parent: 60 - type: Transform -- uid: 13730 - type: CableApcExtension - components: - - pos: -9.5,-13.5 - parent: 60 - type: Transform -- uid: 13731 - type: CableApcExtension - components: - - pos: -9.5,-12.5 - parent: 60 - type: Transform -- uid: 13732 - type: CableApcExtension - components: - - pos: -9.5,-11.5 - parent: 60 - type: Transform -- uid: 13733 - type: Bed - components: - - pos: -7.5,-13.5 - parent: 60 - type: Transform -- uid: 13734 - type: Bed - components: - - pos: -7.5,-12.5 - parent: 60 - type: Transform -- uid: 13735 - type: CableMV - components: - - pos: -9.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13736 - type: CableApcExtension - components: - - pos: -9.5,-15.5 - parent: 60 - type: Transform -- uid: 13737 - type: ReinforcedPlasmaWindow - components: - - pos: -7.5,35.5 - parent: 60 - type: Transform -- uid: 13738 - type: AirlockGlass - components: - - pos: 18.5,-18.5 - parent: 60 - type: Transform -- uid: 13739 - type: WallSolid - components: - - pos: 39.5,-1.5 - parent: 60 - type: Transform -- uid: 13740 - type: WallReinforced - components: - - pos: -4.5,-19.5 - parent: 60 - type: Transform -- uid: 13741 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-13.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13742 - type: Grille - components: - - pos: -6.5,-12.5 - parent: 60 - type: Transform -- uid: 13743 - type: Grille - components: - - pos: -7.5,-16.5 - parent: 60 - type: Transform -- uid: 13744 - type: WallReinforced - components: - - pos: -4.5,-14.5 - parent: 60 - type: Transform -- uid: 13745 - type: WindowReinforcedDirectional - components: - - pos: -5.5,-14.5 - parent: 60 - type: Transform -- uid: 13746 - type: CableMV - components: - - pos: -8.5,-18.5 - parent: 60 - type: Transform -- uid: 13747 - type: CableApcExtension - components: - - pos: -5.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13748 - type: WallReinforced - components: - - pos: -6.5,-14.5 - parent: 60 - type: Transform -- uid: 13749 - type: Grille - components: - - pos: -8.5,-16.5 - parent: 60 - type: Transform -- uid: 13750 - type: WallReinforced - components: - - pos: -11.5,-16.5 - parent: 60 - type: Transform -- uid: 13751 - type: Window - components: - - pos: -40.5,20.5 - parent: 60 - type: Transform -- uid: 13752 - type: CableMV - components: - - pos: -9.5,-13.5 - parent: 60 - type: Transform -- uid: 13753 - type: CableMV - components: - - pos: -9.5,-14.5 - parent: 60 - type: Transform -- uid: 13754 - type: WindowReinforcedDirectional - components: - - pos: -7.5,-16.5 - parent: 60 - type: Transform -- uid: 13755 - type: CableMV - components: - - pos: -9.5,-12.5 - parent: 60 - type: Transform -- uid: 13756 - type: CableMV - components: - - pos: -9.5,-11.5 - parent: 60 - type: Transform -- uid: 13757 - type: CableMV - components: - - pos: -9.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13758 - type: CableMV - components: - - pos: -10.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13759 - type: CableMV - components: - - pos: -8.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13760 - type: CableMV - components: - - pos: -8.5,-13.5 - parent: 60 - type: Transform -- uid: 13761 - type: SpaceVillainArcadeFilled - components: - - rot: 3.141592653589793 rad - pos: -8.5,-14.5 - parent: 60 - type: Transform -- uid: 13762 - type: Stool - components: - - pos: -8.5,-13.5 - parent: 60 - type: Transform -- uid: 13763 - type: WindowReinforcedDirectional - components: - - pos: -7.5,-14.5 - parent: 60 - type: Transform -- uid: 13764 - type: CableMV - components: - - pos: -10.5,-13.5 - parent: 60 - type: Transform -- uid: 13765 - type: CableMV - components: - - pos: -11.5,-13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13766 - type: CableMV - components: - - pos: -11.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13767 - type: CableMV - components: - - pos: -11.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13768 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -21.502625,-21.297903 - parent: 60 - type: Transform -- uid: 13769 - type: SignDirectionalChapel - components: - - rot: 3.141592653589793 rad - pos: -13.495151,-20.889297 - parent: 60 - type: Transform -- uid: 13770 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: -13.503204,6.721218 - parent: 60 - type: Transform -- uid: 13771 - type: SignDirectionalDorms - components: - - rot: 3.141592653589793 rad - pos: -13.503204,6.299343 - parent: 60 - type: Transform -- uid: 13772 - type: SignDirectionalChapel - components: - - rot: -1.5707963267948966 rad - pos: -17.496063,6.7202177 - parent: 60 - type: Transform -- uid: 13773 - type: SignDirectionalChapel - components: - - rot: 1.5707963267948966 rad - pos: -35.497772,6.705593 - parent: 60 - type: Transform -- uid: 13774 - type: SignDirectionalDorms - components: - - rot: 1.5707963267948966 rad - pos: -35.497772,6.299343 - parent: 60 - type: Transform -- uid: 13775 - type: CrateHydroponicsSeedsMedicinal - components: - - pos: 29.5,-37.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13776 - type: SignDirectionalSci - components: - - rot: -1.5707963267948966 rad - pos: -21.497252,-21.723017 - parent: 60 - type: Transform -- uid: 13777 - type: SignDirectionalSci - components: - - rot: -1.5707963267948966 rad - pos: -17.5,6.5 - parent: 60 - type: Transform -- uid: 13778 - type: CableApcExtension - components: - - pos: -6.5,-16.5 - parent: 60 - type: Transform -- uid: 13779 - type: CableApcExtension - components: - - pos: -6.5,-15.5 - parent: 60 - type: Transform -- uid: 13780 - type: CableApcExtension - components: - - pos: -7.5,-15.5 - parent: 60 - type: Transform -- uid: 13781 - type: CableApcExtension - components: - - pos: -8.5,-15.5 - parent: 60 - type: Transform -- uid: 13782 - type: CableApcExtension - components: - - pos: -6.5,-17.5 - parent: 60 - type: Transform -- uid: 13783 - type: CableApcExtension - components: - - pos: -6.5,-18.5 - parent: 60 - type: Transform -- uid: 13784 - type: BedsheetSyndie - components: - - pos: -7.5,-13.5 - parent: 60 - type: Transform -- uid: 13785 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -5.5,-14.5 - parent: 60 - type: Transform -- uid: 13786 - type: Grille - components: - - pos: -6.5,-13.5 - parent: 60 - type: Transform -- uid: 13787 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 60 - type: Transform -- uid: 13788 - type: ClothingOuterHardsuitEVAPrisoner - components: - - pos: -5.5995154,-17.308964 - parent: 60 - type: Transform -- uid: 13789 - type: SignPrison - components: - - pos: -6.5,-14.5 - parent: 60 - type: Transform -- uid: 13790 - type: WallReinforced - components: - - pos: -4.5,-15.5 - parent: 60 - type: Transform -- uid: 13791 - type: WallReinforced - components: - - pos: -6.5,-11.5 - parent: 60 - type: Transform -- uid: 13792 - type: WallReinforced - components: - - pos: -5.5,12.5 - parent: 60 - type: Transform -- uid: 13793 - type: WallReinforced - components: - - pos: -5.5,13.5 - parent: 60 - type: Transform -- uid: 13794 - type: WallReinforced - components: - - pos: -5.5,14.5 - parent: 60 - type: Transform -- uid: 13795 - type: WallReinforced - components: - - pos: -5.5,15.5 - parent: 60 - type: Transform -- uid: 13796 - type: WallReinforced - components: - - pos: -5.5,16.5 - parent: 60 - type: Transform -- uid: 13797 - type: LockerEngineerFilled - components: - - pos: -4.5,13.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13798 - type: LockerEngineerFilled - components: - - pos: -4.5,14.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13799 - type: LockerEngineerFilled - components: - - pos: -4.5,16.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13800 - type: LockerEngineerFilled - components: - - pos: -4.5,15.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13801 - type: WindowReinforcedDirectional - components: - - pos: -2.5,17.5 - parent: 60 - type: Transform -- uid: 13802 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -5.5,17.5 - parent: 60 - type: Transform -- uid: 13803 - type: WindowReinforcedDirectional - components: - - pos: -4.5,17.5 - parent: 60 - type: Transform -- uid: 13804 - type: WindoorEngineeringLocked - components: - - pos: -3.5,17.5 - parent: 60 - type: Transform -- uid: 13805 - type: AirlockEngineeringGlassLocked - components: - - name: Engi Locker Room - type: MetaData - - pos: -1.5,14.5 - parent: 60 - type: Transform -- uid: 13806 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13807 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13808 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 38.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13809 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-0.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13810 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13811 - type: Grille - components: - - pos: 7.5,20.5 - parent: 60 - type: Transform -- uid: 13812 - type: Grille - components: - - pos: 7.5,17.5 - parent: 60 - type: Transform -- uid: 13813 - type: ReinforcedWindow - components: - - pos: 7.5,17.5 - parent: 60 - type: Transform -- uid: 13814 - type: Grille - components: - - pos: 7.5,18.5 - parent: 60 - type: Transform -- uid: 13815 - type: SignalButton - components: - - pos: 11.5,18.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6526 - - port: Toggle - uid: 6522 - - port: Toggle - uid: 6524 - type: SignalTransmitter -- uid: 13816 - type: ReinforcedWindow - components: - - pos: -0.5,12.5 - parent: 60 - type: Transform -- uid: 13817 - type: ClothingHeadHatWelding - components: - - pos: 3.4523659,13.738024 - parent: 60 - type: Transform -- uid: 13818 - type: ClothingHeadHatWelding - components: - - pos: 3.6398659,13.628649 - parent: 60 - type: Transform -- uid: 13819 - type: Catwalk - components: - - pos: 6.5,25.5 - parent: 60 - type: Transform -- uid: 13820 - type: Grille - components: - - pos: -0.5,12.5 - parent: 60 - type: Transform -- uid: 13821 - type: Window - components: - - pos: -13.5,17.5 - parent: 60 - type: Transform -- uid: 13822 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13823 - type: Catwalk - components: - - pos: 6.5,27.5 - parent: 60 - type: Transform -- uid: 13824 - type: Catwalk - components: - - pos: 6.5,29.5 - parent: 60 - type: Transform -- uid: 13825 - type: AtmosDeviceFanTiny - components: - - pos: 25.5,-25.5 - parent: 60 - type: Transform -- uid: 13826 - type: PosterLegitNanotrasenLogo - components: - - pos: 8.5,-26.5 - parent: 60 - type: Transform -- uid: 13827 - type: PosterLegitNanomichiAd - components: - - pos: 2.5,-32.5 - parent: 60 - type: Transform -- uid: 13828 - type: WallSolid - components: - - pos: -11.5,13.5 - parent: 60 - type: Transform -- uid: 13829 - type: WallSolid - components: - - pos: -11.5,12.5 - parent: 60 - type: Transform -- uid: 13830 - type: WallSolid - components: - - pos: -13.5,10.5 - parent: 60 - type: Transform -- uid: 13831 - type: WallSolid - components: - - pos: -11.5,11.5 - parent: 60 - type: Transform -- uid: 13832 - type: WallSolid - components: - - pos: -12.5,10.5 - parent: 60 - type: Transform -- uid: 13833 - type: WallSolid - components: - - pos: -6.5,11.5 - parent: 60 - type: Transform -- uid: 13834 - type: WallReinforced - components: - - pos: -11.5,10.5 - parent: 60 - type: Transform -- uid: 13835 - type: WallSolid - components: - - pos: -7.5,11.5 - parent: 60 - type: Transform -- uid: 13836 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13837 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13838 - type: WallSolid - components: - - pos: -22.5,22.5 - parent: 60 - type: Transform -- uid: 13839 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13840 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13841 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13842 - type: WallSolid - components: - - pos: -23.5,22.5 - parent: 60 - type: Transform -- uid: 13843 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13844 - type: WallSolid - components: - - pos: -19.5,22.5 - parent: 60 - type: Transform -- uid: 13845 - type: WallReinforced - components: - - pos: -21.5,22.5 - parent: 60 - type: Transform -- uid: 13846 - type: WallSolid - components: - - pos: -20.5,22.5 - parent: 60 - type: Transform -- uid: 13847 - type: WallSolid - components: - - pos: -17.5,18.5 - parent: 60 - type: Transform -- uid: 13848 - type: WallSolid - components: - - pos: -18.5,22.5 - parent: 60 - type: Transform -- uid: 13849 - type: WallReinforced - components: - - pos: -17.5,22.5 - parent: 60 - type: Transform -- uid: 13850 - type: WallSolid - components: - - pos: -17.5,21.5 - parent: 60 - type: Transform -- uid: 13851 - type: WoodDoor - components: - - name: Confessional - type: MetaData - - pos: -21.5,20.5 - parent: 60 - type: Transform -- uid: 13852 - type: WallSolid - components: - - pos: -17.5,19.5 - parent: 60 - type: Transform -- uid: 13853 - type: WallSolid - components: - - pos: -17.5,17.5 - parent: 60 - type: Transform -- uid: 13854 - type: WallReinforced - components: - - pos: -21.5,15.5 - parent: 60 - type: Transform -- uid: 13855 - type: WallReinforced - components: - - pos: -21.5,16.5 - parent: 60 - type: Transform -- uid: 13856 - type: WallSolid - components: - - pos: -30.5,22.5 - parent: 60 - type: Transform -- uid: 13857 - type: WallSolid - components: - - pos: -32.5,22.5 - parent: 60 - type: Transform -- uid: 13858 - type: WallReinforced - components: - - pos: -24.5,27.5 - parent: 60 - type: Transform -- uid: 13859 - type: WallReinforced - components: - - pos: -39.5,26.5 - parent: 60 - type: Transform -- uid: 13860 - type: WallSolid - components: - - pos: -40.5,18.5 - parent: 60 - type: Transform -- uid: 13861 - type: WallSolid - components: - - pos: -44.5,23.5 - parent: 60 - type: Transform -- uid: 13862 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -55.5,6.5 - parent: 60 - type: Transform -- uid: 13863 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -55.5,7.5 - parent: 60 - type: Transform -- uid: 13864 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -55.5,8.5 - parent: 60 - type: Transform -- uid: 13865 - type: WallReinforced - components: - - pos: -42.5,26.5 - parent: 60 - type: Transform -- uid: 13866 - type: WallSolid - components: - - pos: -44.5,25.5 - parent: 60 - type: Transform -- uid: 13867 - type: WallReinforced - components: - - pos: -48.5,18.5 - parent: 60 - type: Transform -- uid: 13868 - type: WallSolid - components: - - pos: -7.5,10.5 - parent: 60 - type: Transform -- uid: 13869 - type: WallSolid - components: - - pos: -33.5,22.5 - parent: 60 - type: Transform -- uid: 13870 - type: WallSolid - components: - - pos: -34.5,22.5 - parent: 60 - type: Transform -- uid: 13871 - type: Grille - components: - - pos: -40.5,19.5 - parent: 60 - type: Transform -- uid: 13872 - type: WallSolid - components: - - pos: -36.5,22.5 - parent: 60 - type: Transform -- uid: 13873 - type: WallSolid - components: - - pos: -37.5,22.5 - parent: 60 - type: Transform -- uid: 13874 - type: Table - components: - - pos: -2.5,13.5 - parent: 60 - type: Transform -- uid: 13875 - type: ClothingMaskGas - components: - - pos: -2.5697675,13.636754 - parent: 60 - type: Transform -- uid: 13876 - type: WallReinforced - components: - - pos: -17.5,14.5 - parent: 60 - type: Transform -- uid: 13877 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,33.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13878 - type: WallReinforced - components: - - pos: -21.5,14.5 - parent: 60 - type: Transform -- uid: 13879 - type: WallSolid - components: - - pos: -23.5,10.5 - parent: 60 - type: Transform -- uid: 13880 - type: ClothingMaskGas - components: - - pos: -2.3666425,13.527379 - parent: 60 - type: Transform -- uid: 13881 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 60 - type: Transform -- uid: 13882 - type: WallSolid - components: - - pos: -27.5,22.5 - parent: 60 - type: Transform -- uid: 13883 - type: WallSolid - components: - - pos: -28.5,22.5 - parent: 60 - type: Transform -- uid: 13884 - type: WallReinforced - components: - - pos: -29.5,22.5 - parent: 60 - type: Transform -- uid: 13885 - type: WallSolid - components: - - pos: -30.5,18.5 - parent: 60 - type: Transform -- uid: 13886 - type: WallReinforced - components: - - pos: -41.5,26.5 - parent: 60 - type: Transform -- uid: 13887 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -55.5,9.5 - parent: 60 - type: Transform -- uid: 13888 - type: WallSolid - components: - - pos: -46.5,22.5 - parent: 60 - type: Transform -- uid: 13889 - type: WallSolid - components: - - pos: -44.5,22.5 - parent: 60 - type: Transform -- uid: 13890 - type: WallReinforced - components: - - pos: -40.5,26.5 - parent: 60 - type: Transform -- uid: 13891 - type: WallReinforced - components: - - pos: -12.5,26.5 - parent: 60 - type: Transform -- uid: 13892 - type: CableApcExtension - components: - - pos: -50.5,15.5 - parent: 60 - type: Transform -- uid: 13893 - type: WallSolid - components: - - pos: -44.5,19.5 - parent: 60 - type: Transform -- uid: 13894 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -55.5,10.5 - parent: 60 - type: Transform -- uid: 13895 - type: WallReinforced - components: - - pos: -52.5,26.5 - parent: 60 - type: Transform -- uid: 13896 - type: ReinforcedWindow - components: - - pos: -48.5,16.5 - parent: 60 - type: Transform -- uid: 13897 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -55.5,11.5 - parent: 60 - type: Transform -- uid: 13898 - type: WallSolid - components: - - pos: -47.5,22.5 - parent: 60 - type: Transform -- uid: 13899 - type: WallSolid - components: - - pos: -44.5,21.5 - parent: 60 - type: Transform -- uid: 13900 - type: ReinforcedWindow - components: - - pos: -48.5,17.5 - parent: 60 - type: Transform -- uid: 13901 - type: BlastDoor - components: - - pos: -50.5,18.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9597 - type: SignalReceiver -- uid: 13902 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -55.5,12.5 - parent: 60 - type: Transform -- uid: 13903 - type: WallSolid - components: - - pos: -45.5,22.5 - parent: 60 - type: Transform -- uid: 13904 - type: Poweredlight - components: - - pos: -38.5,26.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13905 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13906 - type: WallReinforced - components: - - pos: -62.5,14.5 - parent: 60 - type: Transform -- uid: 13907 - type: WallReinforced - components: - - pos: -61.5,14.5 - parent: 60 - type: Transform -- uid: 13908 - type: WallReinforced - components: - - pos: -60.5,14.5 - parent: 60 - type: Transform -- uid: 13909 - type: Window - components: - - pos: -60.5,21.5 - parent: 60 - type: Transform -- uid: 13910 - type: FirelockGlass - components: - - pos: -59.5,15.5 - parent: 60 - type: Transform -- uid: 13911 - type: WallReinforced - components: - - pos: -60.5,19.5 - parent: 60 - type: Transform -- uid: 13912 - type: WallReinforced - components: - - pos: -60.5,18.5 - parent: 60 - type: Transform -- uid: 13913 - type: Poweredlight - components: - - pos: -24.5,26.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13914 - type: GasPipeTJunction - components: - - pos: 49.5,9.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13915 - type: SignElectricalMed - components: - - pos: -58.5,10.5 - parent: 60 - type: Transform -- uid: 13916 - type: LockerElectricalSuppliesFilled - components: - - pos: -58.5,8.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13917 - type: CrateScienceSecure - components: - - pos: -47.5,-10.5 - parent: 60 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13918 - type: Catwalk - components: - - pos: -52.5,-10.5 - parent: 60 - type: Transform -- uid: 13919 - type: Catwalk - components: - - pos: -53.5,-10.5 - parent: 60 - type: Transform -- uid: 13920 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13921 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13922 - type: Catwalk - components: - - pos: -56.5,-9.5 - parent: 60 - type: Transform -- uid: 13923 - type: Catwalk - components: - - pos: -56.5,-8.5 - parent: 60 - type: Transform -- uid: 13924 - type: Catwalk - components: - - pos: -56.5,-7.5 - parent: 60 - type: Transform -- uid: 13925 - type: Catwalk - components: - - pos: -56.5,-6.5 - parent: 60 - type: Transform -- uid: 13926 - type: Catwalk - components: - - pos: -57.5,-5.5 - parent: 60 - type: Transform -- uid: 13927 - type: Catwalk - components: - - pos: -59.5,-5.5 - parent: 60 - type: Transform -- uid: 13928 - type: Catwalk - components: - - pos: -60.5,-5.5 - parent: 60 - type: Transform -- uid: 13929 - type: ReinforcedWindow - components: - - pos: -25.5,29.5 - parent: 60 - type: Transform -- uid: 13930 - type: WallReinforced - components: - - pos: -26.5,27.5 - parent: 60 - type: Transform -- uid: 13931 - type: WallReinforced - components: - - pos: -13.5,31.5 - parent: 60 - type: Transform -- uid: 13932 - type: WallReinforced - components: - - pos: -13.5,30.5 - parent: 60 - type: Transform -- uid: 13933 - type: ReinforcedWindow - components: - - pos: -23.5,28.5 - parent: 60 - type: Transform -- uid: 13934 - type: GasPassiveVent - components: - - pos: -45.5,36.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13935 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13936 - type: WallReinforced - components: - - pos: -39.5,27.5 - parent: 60 - type: Transform -- uid: 13937 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,37.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13938 - type: GasPressurePump - components: - - desc: A pump that moves plasma by pressure. - name: plasma pump - type: MetaData - - rot: 1.5707963267948966 rad - pos: -39.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13939 - type: RandomFoodMeal - components: - - pos: 22.5,-32.5 - parent: 60 - type: Transform -- uid: 13940 - type: WallReinforced - components: - - pos: -31.5,27.5 - parent: 60 - type: Transform -- uid: 13941 - type: ReinforcedWindow - components: - - pos: -29.5,29.5 - parent: 60 - type: Transform -- uid: 13942 - type: ReinforcedWindow - components: - - pos: -27.5,29.5 - parent: 60 - type: Transform -- uid: 13943 - type: WallReinforced - components: - - pos: -23.5,26.5 - parent: 60 - type: Transform -- uid: 13944 - type: WallReinforced - components: - - pos: -19.5,27.5 - parent: 60 - type: Transform -- uid: 13945 - type: WallReinforced - components: - - pos: -23.5,27.5 - parent: 60 - type: Transform -- uid: 13946 - type: ReinforcedWindow - components: - - pos: -22.5,27.5 - parent: 60 - type: Transform -- uid: 13947 - type: WallReinforced - components: - - pos: -19.5,26.5 - parent: 60 - type: Transform -- uid: 13948 - type: WallReinforced - components: - - pos: -18.5,26.5 - parent: 60 - type: Transform -- uid: 13949 - type: WindoorEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: -16.5,26.5 - parent: 60 - type: Transform -- uid: 13950 - type: ReinforcedWindow - components: - - pos: -14.5,26.5 - parent: 60 - type: Transform -- uid: 13951 - type: TableReinforced - components: - - pos: -16.5,26.5 - parent: 60 - type: Transform -- uid: 13952 - type: TableReinforced - components: - - pos: -15.5,26.5 - parent: 60 - type: Transform -- uid: 13953 - type: WallReinforced - components: - - pos: -13.5,26.5 - parent: 60 - type: Transform -- uid: 13954 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13955 - type: FirelockGlass - components: - - pos: -58.5,15.5 - parent: 60 - type: Transform -- uid: 13956 - type: WallSolid - components: - - pos: -13.5,14.5 - parent: 60 - type: Transform -- uid: 13957 - type: WallSolid - components: - - pos: -12.5,14.5 - parent: 60 - type: Transform -- uid: 13958 - type: WallSolid - components: - - pos: -11.5,14.5 - parent: 60 - type: Transform -- uid: 13959 - type: WindoorEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: -15.5,26.5 - parent: 60 - type: Transform -- uid: 13960 - type: PlasticFlapsAirtightClear - components: - - pos: -17.5,26.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13961 - type: FirelockGlass - components: - - pos: -15.5,26.5 - parent: 60 - type: Transform -- uid: 13962 - type: FirelockGlass - components: - - pos: -16.5,26.5 - parent: 60 - type: Transform -- uid: 13963 - type: SignAtmos - components: - - pos: -18.5,26.5 - parent: 60 - type: Transform -- uid: 13964 - type: ReinforcedWindow - components: - - pos: -20.5,27.5 - parent: 60 - type: Transform -- uid: 13965 - type: AirlockAtmosphericsGlassLocked - components: - - name: Atmos Locker Room - type: MetaData - - pos: -23.5,31.5 - parent: 60 - type: Transform -- uid: 13966 - type: FirelockGlass - components: - - pos: -14.5,6.5 - parent: 60 - type: Transform -- uid: 13967 - type: FirelockGlass - components: - - pos: -15.5,6.5 - parent: 60 - type: Transform -- uid: 13968 - type: FirelockGlass - components: - - pos: -14.5,10.5 - parent: 60 - type: Transform -- uid: 13969 - type: FirelockGlass - components: - - pos: -15.5,10.5 - parent: 60 - type: Transform -- uid: 13970 - type: FirelockGlass - components: - - pos: -16.5,10.5 - parent: 60 - type: Transform -- uid: 13971 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -14.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13972 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,5.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13973 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-7.5 - parent: 60 - type: Transform -- uid: 13974 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-8.5 - parent: 60 - type: Transform -- uid: 13975 - type: DisposalUnit - components: - - pos: -14.5,-9.5 - parent: 60 - type: Transform -- uid: 13976 - type: RandomVendingSnacks - components: - - pos: -14.5,-10.5 - parent: 60 - type: Transform -- uid: 13977 - type: RandomVendingDrinks - components: - - pos: -14.5,-6.5 - parent: 60 - type: Transform -- uid: 13978 - type: CableHVStack - components: - - pos: 4.525793,13.457964 - parent: 60 - type: Transform -- uid: 13979 - type: FirelockGlass - components: - - pos: -22.5,26.5 - parent: 60 - type: Transform -- uid: 13980 - type: FirelockGlass - components: - - pos: -21.5,26.5 - parent: 60 - type: Transform -- uid: 13981 - type: FirelockGlass - components: - - pos: -20.5,26.5 - parent: 60 - type: Transform -- uid: 13982 - type: DisposalUnit - components: - - pos: -12.5,11.5 - parent: 60 - type: Transform -- uid: 13983 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 60 - type: Transform -- uid: 13984 - type: PlasticFlapsAirtightOpaque - components: - - pos: -10.5,26.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 13985 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-5.5 - parent: 60 - type: Transform -- uid: 13986 - type: AirlockEngineeringLocked - components: - - name: Electrical Room - type: MetaData - - pos: -11.5,26.5 - parent: 60 - type: Transform -- uid: 13987 - type: SpawnMobMouse - components: - - pos: -9.5,13.5 - parent: 60 - type: Transform -- uid: 13988 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -9.5,26.5 - parent: 60 - type: Transform -- uid: 13989 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -8.5,26.5 - parent: 60 - type: Transform -- uid: 13990 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -7.5,26.5 - parent: 60 - type: Transform -- uid: 13991 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -6.5,26.5 - parent: 60 - type: Transform -- uid: 13992 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -5.5,26.5 - parent: 60 - type: Transform -- uid: 13993 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -5.5,25.5 - parent: 60 - type: Transform -- uid: 13994 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -5.5,24.5 - parent: 60 - type: Transform -- uid: 13995 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -5.5,23.5 - parent: 60 - type: Transform -- uid: 13996 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -5.5,22.5 - parent: 60 - type: Transform -- uid: 13997 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -5.5,21.5 - parent: 60 - type: Transform -- uid: 13998 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -5.5,20.5 - parent: 60 - type: Transform -- uid: 13999 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -5.5,19.5 - parent: 60 - type: Transform -- uid: 14000 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -5.5,18.5 - parent: 60 - type: Transform -- uid: 14001 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,13.5 - parent: 60 - type: Transform -- uid: 14002 - type: RandomVending - components: - - pos: -12.5,12.5 - parent: 60 - type: Transform -- uid: 14003 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14004 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14005 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14006 - type: WallSolid - components: - - pos: -27.5,10.5 - parent: 60 - type: Transform -- uid: 14007 - type: WallSolid - components: - - pos: -28.5,10.5 - parent: 60 - type: Transform -- uid: 14008 - type: WallSolid - components: - - pos: -22.5,10.5 - parent: 60 - type: Transform -- uid: 14009 - type: Grille - components: - - pos: -17.5,11.5 - parent: 60 - type: Transform -- uid: 14010 - type: Grille - components: - - pos: -17.5,12.5 - parent: 60 - type: Transform -- uid: 14011 - type: Grille - components: - - pos: -17.5,13.5 - parent: 60 - type: Transform -- uid: 14012 - type: Grille - components: - - pos: -21.5,11.5 - parent: 60 - type: Transform -- uid: 14013 - type: Grille - components: - - pos: -21.5,12.5 - parent: 60 - type: Transform -- uid: 14014 - type: Grille - components: - - pos: -21.5,13.5 - parent: 60 - type: Transform -- uid: 14015 - type: GasPipeTJunction - components: - - pos: 32.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14016 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14017 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14018 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14019 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14020 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14021 - type: GasPipeTJunction - components: - - pos: 38.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14022 - type: GasPipeTJunction - components: - - pos: 17.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14023 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14024 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14025 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14026 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14027 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14028 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14029 - type: GasPipeTJunction - components: - - pos: 36.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14030 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14031 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14032 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14033 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14034 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14035 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14036 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14037 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14038 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14039 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14040 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14041 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14042 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14043 - type: PosterLegitSafetyEyeProtection - components: - - pos: -1.5,15.5 - parent: 60 - type: Transform -- uid: 14044 - type: GasPipeTJunction - components: - - pos: 22.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14045 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14046 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14047 - type: GasPipeTJunction - components: - - pos: 39.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14048 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14049 - type: WallReinforced - components: - - pos: -10.5,23.5 - parent: 60 - type: Transform -- uid: 14050 - type: WallReinforced - components: - - pos: -9.5,23.5 - parent: 60 - type: Transform -- uid: 14051 - type: WallReinforced - components: - - pos: -9.5,24.5 - parent: 60 - type: Transform -- uid: 14052 - type: WallReinforced - components: - - pos: -9.5,25.5 - parent: 60 - type: Transform -- uid: 14053 - type: AirlockGlass - components: - - name: Library - type: MetaData - - pos: -9.5,10.5 - parent: 60 - type: Transform -- uid: 14054 - type: Grille - components: - - pos: -13.5,15.5 - parent: 60 - type: Transform -- uid: 14055 - type: IntercomAll - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 60 - type: Transform -- uid: 14056 - type: Grille - components: - - pos: -8.5,10.5 - parent: 60 - type: Transform -- uid: 14057 - type: SignLibrary - components: - - pos: -13.5,18.5 - parent: 60 - type: Transform -- uid: 14058 - type: SignLibrary - components: - - pos: -7.5,10.5 - parent: 60 - type: Transform -- uid: 14059 - type: Grille - components: - - pos: -10.5,10.5 - parent: 60 - type: Transform -- uid: 14060 - type: ReinforcedWindow - components: - - pos: 1.5,12.5 - parent: 60 - type: Transform -- uid: 14061 - type: Grille - components: - - pos: -13.5,17.5 - parent: 60 - type: Transform -- uid: 14062 - type: AirlockGlass - components: - - name: Library - type: MetaData - - pos: -13.5,16.5 - parent: 60 - type: Transform -- uid: 14063 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,8.5 - parent: 60 - type: Transform -- uid: 14064 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -33.5,8.5 - parent: 60 - type: Transform -- uid: 14065 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -32.5,8.5 - parent: 60 - type: Transform -- uid: 14066 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -31.5,8.5 - parent: 60 - type: Transform -- uid: 14067 - type: DisposalTrunk - components: - - pos: -30.5,9.5 - parent: 60 - type: Transform -- uid: 14068 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,8.5 - parent: 60 - type: Transform -- uid: 14069 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,8.5 - parent: 60 - type: Transform -- uid: 14070 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,8.5 - parent: 60 - type: Transform -- uid: 14071 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,8.5 - parent: 60 - type: Transform -- uid: 14072 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -28.5,11.5 - parent: 60 - type: Transform -- uid: 14073 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,8.5 - parent: 60 - type: Transform -- uid: 14074 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,8.5 - parent: 60 - type: Transform -- uid: 14075 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,8.5 - parent: 60 - type: Transform -- uid: 14076 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,8.5 - parent: 60 - type: Transform -- uid: 14077 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,8.5 - parent: 60 - type: Transform -- uid: 14078 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,8.5 - parent: 60 - type: Transform -- uid: 14079 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,8.5 - parent: 60 - type: Transform -- uid: 14080 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,8.5 - parent: 60 - type: Transform -- uid: 14081 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,5.5 - parent: 60 - type: Transform -- uid: 14082 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,6.5 - parent: 60 - type: Transform -- uid: 14083 - type: DisposalJunction - components: - - pos: -15.5,7.5 - parent: 60 - type: Transform -- uid: 14084 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -16.5,7.5 - parent: 60 - type: Transform -- uid: 14085 - type: DisposalBend - components: - - pos: -16.5,8.5 - parent: 60 - type: Transform -- uid: 14086 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,8.5 - parent: 60 - type: Transform -- uid: 14087 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 60 - type: Transform -- uid: 14088 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,10.5 - parent: 60 - type: Transform -- uid: 14089 - type: DisposalJunctionFlipped - components: - - pos: -15.5,11.5 - parent: 60 - type: Transform -- uid: 14090 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,11.5 - parent: 60 - type: Transform -- uid: 14091 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,11.5 - parent: 60 - type: Transform -- uid: 14092 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -12.5,11.5 - parent: 60 - type: Transform -- uid: 14093 - type: DisposalPipe - components: - - pos: -15.5,12.5 - parent: 60 - type: Transform -- uid: 14094 - type: DisposalPipe - components: - - pos: -15.5,13.5 - parent: 60 - type: Transform -- uid: 14095 - type: DisposalPipe - components: - - pos: -15.5,14.5 - parent: 60 - type: Transform -- uid: 14096 - type: DisposalPipe - components: - - pos: -15.5,15.5 - parent: 60 - type: Transform -- uid: 14097 - type: DisposalJunctionFlipped - components: - - pos: -15.5,16.5 - parent: 60 - type: Transform -- uid: 14098 - type: DisposalPipe - components: - - pos: -15.5,17.5 - parent: 60 - type: Transform -- uid: 14099 - type: DisposalPipe - components: - - pos: -15.5,18.5 - parent: 60 - type: Transform -- uid: 14100 - type: DisposalPipe - components: - - pos: -15.5,19.5 - parent: 60 - type: Transform -- uid: 14101 - type: DisposalPipe - components: - - pos: -15.5,20.5 - parent: 60 - type: Transform -- uid: 14102 - type: DisposalPipe - components: - - pos: -15.5,21.5 - parent: 60 - type: Transform -- uid: 14103 - type: DisposalPipe - components: - - pos: -15.5,22.5 - parent: 60 - type: Transform -- uid: 14104 - type: DisposalPipe - components: - - pos: -15.5,23.5 - parent: 60 - type: Transform -- uid: 14105 - type: WallSolid - components: - - pos: -6.5,23.5 - parent: 60 - type: Transform -- uid: 14106 - type: WallSolid - components: - - pos: -8.5,23.5 - parent: 60 - type: Transform -- uid: 14107 - type: SignElectricalMed - components: - - pos: -13.5,25.5 - parent: 60 - type: Transform -- uid: 14108 - type: TableWood - components: - - pos: -6.5,20.5 - parent: 60 - type: Transform -- uid: 14109 - type: TableWood - components: - - pos: -7.5,20.5 - parent: 60 - type: Transform -- uid: 14110 - type: TableWood - components: - - pos: -8.5,20.5 - parent: 60 - type: Transform -- uid: 14111 - type: WallReinforced - components: - - pos: -13.5,23.5 - parent: 60 - type: Transform -- uid: 14112 - type: WallReinforced - components: - - pos: -13.5,25.5 - parent: 60 - type: Transform -- uid: 14113 - type: AirlockEngineeringLocked - components: - - name: Electrical Room - type: MetaData - - pos: -13.5,24.5 - parent: 60 - type: Transform -- uid: 14114 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -8.5,20.5 - parent: 60 - type: Transform -- uid: 14115 - type: WindowReinforcedDirectional - components: - - pos: -8.5,20.5 - parent: 60 - type: Transform -- uid: 14116 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -8.5,22.5 - parent: 60 - type: Transform -- uid: 14117 - type: ComfyChair - components: - - pos: -9.5,18.5 - parent: 60 - type: Transform -- uid: 14118 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -7.5,17.5 - parent: 60 - type: Transform -- uid: 14119 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -7.5,16.5 - parent: 60 - type: Transform -- uid: 14120 - type: TableCarpet - components: - - pos: -8.5,17.5 - parent: 60 - type: Transform -- uid: 14121 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -8.5,15.5 - parent: 60 - type: Transform -- uid: 14122 - type: TableCarpet - components: - - pos: -9.5,16.5 - parent: 60 - type: Transform -- uid: 14123 - type: Bookshelf - components: - - pos: -12.5,18.5 - parent: 60 - type: Transform -- uid: 14124 - type: Bookshelf - components: - - pos: -12.5,21.5 - parent: 60 - type: Transform -- uid: 14125 - type: TableWood - components: - - pos: -6.5,15.5 - parent: 60 - type: Transform -- uid: 14126 - type: Bookshelf - components: - - pos: -12.5,22.5 - parent: 60 - type: Transform -- uid: 14127 - type: Windoor - components: - - pos: -7.5,20.5 - parent: 60 - type: Transform -- uid: 14128 - type: LampGold - components: - - pos: -8.397732,20.931147 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 14129 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: -8.5,21.5 - parent: 60 - type: Transform -- uid: 14130 - type: WindowReinforcedDirectional - components: - - pos: -6.5,20.5 - parent: 60 - type: Transform -- uid: 14131 - type: Bookshelf - components: - - pos: -12.5,20.5 - parent: 60 - type: Transform -- uid: 14132 - type: GasPipeStraight - components: - - pos: -9.5,15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14133 - type: TableCarpet - components: - - pos: -8.5,16.5 - parent: 60 - type: Transform -- uid: 14134 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -9.5,15.5 - parent: 60 - type: Transform -- uid: 14135 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -10.5,16.5 - parent: 60 - type: Transform -- uid: 14136 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -10.5,17.5 - parent: 60 - type: Transform -- uid: 14137 - type: Bookshelf - components: - - pos: -6.5,12.5 - parent: 60 - type: Transform -- uid: 14138 - type: Bookshelf - components: - - pos: -7.5,12.5 - parent: 60 - type: Transform -- uid: 14139 - type: Bookshelf - components: - - pos: -6.5,14.5 - parent: 60 - type: Transform -- uid: 14140 - type: Bookshelf - components: - - pos: -7.5,14.5 - parent: 60 - type: Transform -- uid: 14141 - type: Bookshelf - components: - - pos: -6.5,17.5 - parent: 60 - type: Transform -- uid: 14142 - type: TableWood - components: - - pos: -11.5,22.5 - parent: 60 - type: Transform -- uid: 14143 - type: DisposalTrunk - components: - - pos: -43.5,-3.5 - parent: 60 - type: Transform -- uid: 14144 - type: Bookshelf - components: - - pos: -10.5,22.5 - parent: 60 - type: Transform -- uid: 14145 - type: Bookshelf - components: - - pos: -10.5,14.5 - parent: 60 - type: Transform -- uid: 14146 - type: Bookshelf - components: - - pos: -10.5,12.5 - parent: 60 - type: Transform -- uid: 14147 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -10.5,15.5 - parent: 60 - type: Transform -- uid: 14148 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -10.5,16.5 - parent: 60 - type: Transform -- uid: 14149 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -10.5,17.5 - parent: 60 - type: Transform -- uid: 14150 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -10.5,18.5 - parent: 60 - type: Transform -- uid: 14151 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -9.5,15.5 - parent: 60 - type: Transform -- uid: 14152 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -9.5,16.5 - parent: 60 - type: Transform -- uid: 14153 - type: GasPipeStraight - components: - - pos: -9.5,16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14154 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -9.5,18.5 - parent: 60 - type: Transform -- uid: 14155 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -8.5,15.5 - parent: 60 - type: Transform -- uid: 14156 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -8.5,16.5 - parent: 60 - type: Transform -- uid: 14157 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -8.5,17.5 - parent: 60 - type: Transform -- uid: 14158 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -8.5,18.5 - parent: 60 - type: Transform -- uid: 14159 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -7.5,15.5 - parent: 60 - type: Transform -- uid: 14160 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -7.5,16.5 - parent: 60 - type: Transform -- uid: 14161 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -7.5,17.5 - parent: 60 - type: Transform -- uid: 14162 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -7.5,18.5 - parent: 60 - type: Transform -- uid: 14163 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -11.5,20.5 - parent: 60 - type: Transform -- uid: 14164 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -11.5,21.5 - parent: 60 - type: Transform -- uid: 14165 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -10.5,20.5 - parent: 60 - type: Transform -- uid: 14166 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -10.5,21.5 - parent: 60 - type: Transform -- uid: 14167 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -9.5,20.5 - parent: 60 - type: Transform -- uid: 14168 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -9.5,21.5 - parent: 60 - type: Transform -- uid: 14169 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -9.5,11.5 - parent: 60 - type: Transform -- uid: 14170 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -9.5,12.5 - parent: 60 - type: Transform -- uid: 14171 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -9.5,13.5 - parent: 60 - type: Transform -- uid: 14172 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -8.5,11.5 - parent: 60 - type: Transform -- uid: 14173 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -8.5,12.5 - parent: 60 - type: Transform -- uid: 14174 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -8.5,13.5 - parent: 60 - type: Transform -- uid: 14175 - type: Bookshelf - components: - - pos: -6.5,18.5 - parent: 60 - type: Transform -- uid: 14176 - type: DisposalUnit - components: - - pos: -12.5,15.5 - parent: 60 - type: Transform -- uid: 14177 - type: TableWood - components: - - pos: -9.5,22.5 - parent: 60 - type: Transform -- uid: 14178 - type: Bookshelf - components: - - pos: -6.5,16.5 - parent: 60 - type: Transform -- uid: 14179 - type: AirlockServiceLocked - components: - - name: Librarian's Room - type: MetaData - - pos: -7.5,23.5 - parent: 60 - type: Transform -- uid: 14180 - type: WallSolid - components: - - pos: -21.5,21.5 - parent: 60 - type: Transform -- uid: 14181 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14182 - type: WallReinforced - components: - - pos: -12.5,23.5 - parent: 60 - type: Transform -- uid: 14183 - type: WallReinforced - components: - - pos: -11.5,23.5 - parent: 60 - type: Transform -- uid: 14184 - type: TableWood - components: - - pos: -8.5,24.5 - parent: 60 - type: Transform -- uid: 14185 - type: AtmosFixFreezerMarker - components: - - pos: 23.5,-28.5 - parent: 60 - type: Transform -- uid: 14186 - type: TableWood - components: - - pos: -8.5,25.5 - parent: 60 - type: Transform -- uid: 14187 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -7.5,25.5 - parent: 60 - type: Transform -- uid: 14188 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: -7.5,24.5 - parent: 60 - type: Transform -- uid: 14189 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: -7.5,25.5 - parent: 60 - type: Transform -- uid: 14190 - type: ClothingNeckScarfStripedGreen - components: - - pos: -6.5344563,24.313803 - parent: 60 - type: Transform -- uid: 14191 - type: ChairOfficeDark - components: - - pos: -7.5,21.5 - parent: 60 - type: Transform -- uid: 14192 - type: DiceBag - components: - - pos: -8.763899,24.5281 - parent: 60 - type: Transform -- uid: 14193 - type: Paper - components: - - pos: -8.386591,24.530212 - parent: 60 - type: Transform -- uid: 14194 - type: Paper - components: - - pos: -8.386591,24.530212 - parent: 60 - type: Transform -- uid: 14195 - type: Paper - components: - - pos: -8.386591,24.530212 - parent: 60 - type: Transform -- uid: 14196 - type: Paper - components: - - pos: -8.386591,24.530212 - parent: 60 - type: Transform -- uid: 14197 - type: Paper - components: - - pos: -8.386591,24.530212 - parent: 60 - type: Transform -- uid: 14198 - type: Paper - components: - - pos: -6.5813313,20.579428 - parent: 60 - type: Transform -- uid: 14199 - type: Paper - components: - - pos: -6.5813313,20.579428 - parent: 60 - type: Transform -- uid: 14200 - type: Paper - components: - - pos: -6.5813313,20.579428 - parent: 60 - type: Transform -- uid: 14201 - type: Paper - components: - - pos: -6.5813313,20.579428 - parent: 60 - type: Transform -- uid: 14202 - type: Paper - components: - - pos: -6.5813313,20.579428 - parent: 60 - type: Transform -- uid: 14203 - type: Paper - components: - - pos: -6.5813313,20.579428 - parent: 60 - type: Transform -- uid: 14204 - type: Paper - components: - - pos: -6.5813313,20.579428 - parent: 60 - type: Transform -- uid: 14205 - type: Paper - components: - - pos: -6.5813313,20.579428 - parent: 60 - type: Transform -- uid: 14206 - type: Paper - components: - - pos: -6.5813313,20.579428 - parent: 60 - type: Transform -- uid: 14207 - type: Paper - components: - - pos: -6.5813313,20.579428 - parent: 60 - type: Transform -- uid: 14208 - type: Bookshelf - components: - - pos: -6.5,22.5 - parent: 60 - type: Transform -- uid: 14209 - type: Bookshelf - components: - - pos: -6.5,21.5 - parent: 60 - type: Transform -- uid: 14210 - type: SpawnMobSlothPaperwork - components: - - pos: -10.5,19.5 - parent: 60 - type: Transform -- uid: 14211 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.48097,11.426869 - parent: 60 - type: Transform -- uid: 14212 - type: ToyRipley - components: - - pos: -8.499414,17.595964 - parent: 60 - type: Transform -- uid: 14213 - type: ToySkeleton - components: - - pos: -9.358789,16.79909 - parent: 60 - type: Transform -- uid: 14214 - type: ToyAssistant - components: - - pos: -9.515039,17.51784 - parent: 60 - type: Transform -- uid: 14215 - type: Paper - components: - - pos: -8.515039,16.595964 - parent: 60 - type: Transform -- uid: 14216 - type: Paper - components: - - pos: -9.030664,17.502214 - parent: 60 - type: Transform -- uid: 14217 - type: d20Dice - components: - - pos: -8.428826,17.002214 - parent: 60 - type: Transform -- uid: 14218 - type: d8Dice - components: - - pos: -9.631951,17.08034 - parent: 60 - type: Transform -- uid: 14219 - type: d6Dice - components: - - pos: -9.018627,17.160591 - parent: 60 - type: Transform -- uid: 14220 - type: d6Dice - components: - - pos: -8.967095,16.960144 - parent: 60 - type: Transform -- uid: 14221 - type: ToyMouse - components: - - pos: -6.522576,13.64284 - parent: 60 - type: Transform -- uid: 14222 - type: RandomSnacks - components: - - pos: -35.5,19.5 - parent: 60 - type: Transform -- uid: 14223 - type: FigureSpawner - components: - - pos: -9.5,16.5 - parent: 60 - type: Transform -- uid: 14224 - type: Poweredlight - components: - - pos: -6.5,22.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14225 - type: Poweredlight - components: - - pos: -12.5,22.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14226 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,17.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14227 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14228 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,13.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14229 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14230 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -15.5,10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14231 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14232 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14233 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14234 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14235 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14236 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14237 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -16.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14238 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14239 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14240 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14241 - type: GasPipeFourway - components: - - pos: -14.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14242 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14243 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14244 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14245 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14246 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14247 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14248 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14249 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14250 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14251 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -16.5,19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14252 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14253 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14254 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14255 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14256 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14257 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14258 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14259 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -16.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14260 - type: GasPipeBend - components: - - pos: -14.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14261 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14262 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14263 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14264 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14265 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14266 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14267 - type: GasPipeStraight - components: - - pos: 49.5,5.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 14268 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14269 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14270 - type: GasPipeTJunction - components: - - pos: -26.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14271 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14272 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14273 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14274 - type: GasPipeTJunction - components: - - pos: -36.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14275 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14276 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14277 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14278 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14279 - type: WallSolid - components: - - pos: 39.5,1.5 - parent: 60 - type: Transform -- uid: 14280 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -22.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14281 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14282 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14283 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14284 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14285 - type: WallReinforced - components: - - pos: -30.5,27.5 - parent: 60 - type: Transform -- uid: 14286 - type: WallReinforced - components: - - pos: -32.5,27.5 - parent: 60 - type: Transform -- uid: 14287 - type: WallReinforced - components: - - pos: -34.5,27.5 - parent: 60 - type: Transform -- uid: 14288 - type: WallReinforced - components: - - pos: -36.5,27.5 - parent: 60 - type: Transform -- uid: 14289 - type: WallReinforced - components: - - pos: -38.5,27.5 - parent: 60 - type: Transform -- uid: 14290 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14291 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14292 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14293 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -11.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14294 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14295 - type: GasPipeTJunction - components: - - pos: -9.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14296 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14297 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -7.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14298 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14299 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14300 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14301 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14302 - type: GasVentPump - components: - - pos: -7.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14303 - type: GasVentPump - components: - - pos: -11.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14304 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14305 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14306 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14307 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14308 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -11.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14309 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14310 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14311 - type: GasPipeBend - components: - - pos: -8.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14312 - type: GasVentScrubber - components: - - pos: -11.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14313 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14314 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14315 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14316 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14317 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14318 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -9.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14319 - type: GasPipeStraight - components: - - pos: -9.5,14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14320 - type: GasPipeStraight - components: - - pos: -9.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14321 - type: GasPipeStraight - components: - - pos: -9.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14322 - type: GasPipeStraight - components: - - pos: -9.5,11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14323 - type: GasPipeStraight - components: - - pos: -9.5,10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14324 - type: GasPipeStraight - components: - - pos: -9.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14325 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -8.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14326 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: -9.5,17.5 - parent: 60 - type: Transform -- uid: 14327 - type: TableCarpet - components: - - pos: -9.5,17.5 - parent: 60 - type: Transform -- uid: 14328 - type: APCBasic - components: - - pos: -13.5,14.5 - parent: 60 - type: Transform -- uid: 14329 - type: CableMV - components: - - pos: -13.5,14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14330 - type: CableMV - components: - - pos: -14.5,14.5 - parent: 60 - type: Transform -- uid: 14331 - type: CableMV - components: - - pos: -14.5,15.5 - parent: 60 - type: Transform -- uid: 14332 - type: CableMV - components: - - pos: -14.5,16.5 - parent: 60 - type: Transform -- uid: 14333 - type: CableMV - components: - - pos: -14.5,17.5 - parent: 60 - type: Transform -- uid: 14334 - type: CableMV - components: - - pos: -14.5,18.5 - parent: 60 - type: Transform -- uid: 14335 - type: CableMV - components: - - pos: -14.5,19.5 - parent: 60 - type: Transform -- uid: 14336 - type: CableMV - components: - - pos: -14.5,20.5 - parent: 60 - type: Transform -- uid: 14337 - type: CableMV - components: - - pos: -14.5,21.5 - parent: 60 - type: Transform -- uid: 14338 - type: CableMV - components: - - pos: -14.5,22.5 - parent: 60 - type: Transform -- uid: 14339 - type: CableMV - components: - - pos: -14.5,23.5 - parent: 60 - type: Transform -- uid: 14340 - type: CableMV - components: - - pos: -14.5,24.5 - parent: 60 - type: Transform -- uid: 14341 - type: CableMV - components: - - pos: -13.5,24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14342 - type: CableMV - components: - - pos: -12.5,24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14343 - type: SubstationBasic - components: - - name: Engineering Sub 2 - type: MetaData - - pos: -10.5,25.5 - parent: 60 - type: Transform -- uid: 14344 - type: CableMV - components: - - pos: -12.5,25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14345 - type: CableApcExtension - components: - - pos: -13.5,14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14346 - type: CableApcExtension - components: - - pos: -14.5,14.5 - parent: 60 - type: Transform -- uid: 14347 - type: CableApcExtension - components: - - pos: -15.5,14.5 - parent: 60 - type: Transform -- uid: 14348 - type: CableApcExtension - components: - - pos: -15.5,13.5 - parent: 60 - type: Transform -- uid: 14349 - type: CableApcExtension - components: - - pos: -15.5,12.5 - parent: 60 - type: Transform -- uid: 14350 - type: CableApcExtension - components: - - pos: -15.5,11.5 - parent: 60 - type: Transform -- uid: 14351 - type: CableApcExtension - components: - - pos: -15.5,10.5 - parent: 60 - type: Transform -- uid: 14352 - type: CableApcExtension - components: - - pos: -15.5,9.5 - parent: 60 - type: Transform -- uid: 14353 - type: CableApcExtension - components: - - pos: -15.5,8.5 - parent: 60 - type: Transform -- uid: 14354 - type: CableApcExtension - components: - - pos: -15.5,7.5 - parent: 60 - type: Transform -- uid: 14355 - type: CableApcExtension - components: - - pos: -15.5,6.5 - parent: 60 - type: Transform -- uid: 14356 - type: CableApcExtension - components: - - pos: -15.5,5.5 - parent: 60 - type: Transform -- uid: 14357 - type: CableApcExtension - components: - - pos: -15.5,3.5 - parent: 60 - type: Transform -- uid: 14358 - type: CableApcExtension - components: - - pos: -15.5,4.5 - parent: 60 - type: Transform -- uid: 14359 - type: CableApcExtension - components: - - pos: -15.5,-17.5 - parent: 60 - type: Transform -- uid: 14360 - type: CableApcExtension - components: - - pos: -15.5,-16.5 - parent: 60 - type: Transform -- uid: 14361 - type: CableApcExtension - components: - - pos: -15.5,-15.5 - parent: 60 - type: Transform -- uid: 14362 - type: CableApcExtension - components: - - pos: -15.5,-14.5 - parent: 60 - type: Transform -- uid: 14363 - type: CableApcExtension - components: - - pos: -15.5,-13.5 - parent: 60 - type: Transform -- uid: 14364 - type: CableApcExtension - components: - - pos: -15.5,-12.5 - parent: 60 - type: Transform -- uid: 14365 - type: CableApcExtension - components: - - pos: -15.5,-11.5 - parent: 60 - type: Transform -- uid: 14366 - type: CableApcExtension - components: - - pos: -15.5,-10.5 - parent: 60 - type: Transform -- uid: 14367 - type: CableApcExtension - components: - - pos: -15.5,-9.5 - parent: 60 - type: Transform -- uid: 14368 - type: CableApcExtension - components: - - pos: -15.5,-8.5 - parent: 60 - type: Transform -- uid: 14369 - type: CableApcExtension - components: - - pos: -15.5,-7.5 - parent: 60 - type: Transform -- uid: 14370 - type: CableApcExtension - components: - - pos: -15.5,-6.5 - parent: 60 - type: Transform -- uid: 14371 - type: CableApcExtension - components: - - pos: -15.5,-5.5 - parent: 60 - type: Transform -- uid: 14372 - type: CableApcExtension - components: - - pos: -15.5,2.5 - parent: 60 - type: Transform -- uid: 14373 - type: CableApcExtension - components: - - pos: -15.5,1.5 - parent: 60 - type: Transform -- uid: 14374 - type: CableApcExtension - components: - - pos: -15.5,0.5 - parent: 60 - type: Transform -- uid: 14375 - type: CableApcExtension - components: - - pos: -15.5,-0.5 - parent: 60 - type: Transform -- uid: 14376 - type: CableApcExtension - components: - - pos: -15.5,-1.5 - parent: 60 - type: Transform -- uid: 14377 - type: CableApcExtension - components: - - pos: -15.5,-2.5 - parent: 60 - type: Transform -- uid: 14378 - type: CableApcExtension - components: - - pos: -15.5,15.5 - parent: 60 - type: Transform -- uid: 14379 - type: CableApcExtension - components: - - pos: -15.5,16.5 - parent: 60 - type: Transform -- uid: 14380 - type: CableApcExtension - components: - - pos: -15.5,17.5 - parent: 60 - type: Transform -- uid: 14381 - type: CableApcExtension - components: - - pos: -15.5,18.5 - parent: 60 - type: Transform -- uid: 14382 - type: CableApcExtension - components: - - pos: -15.5,19.5 - parent: 60 - type: Transform -- uid: 14383 - type: CableApcExtension - components: - - pos: -15.5,20.5 - parent: 60 - type: Transform -- uid: 14384 - type: CableApcExtension - components: - - pos: -15.5,21.5 - parent: 60 - type: Transform -- uid: 14385 - type: CableApcExtension - components: - - pos: -15.5,22.5 - parent: 60 - type: Transform -- uid: 14386 - type: CableApcExtension - components: - - pos: -15.5,23.5 - parent: 60 - type: Transform -- uid: 14387 - type: CableApcExtension - components: - - pos: -15.5,24.5 - parent: 60 - type: Transform -- uid: 14388 - type: CableApcExtension - components: - - pos: -14.5,24.5 - parent: 60 - type: Transform -- uid: 14389 - type: CableApcExtension - components: - - pos: -13.5,24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14390 - type: CableApcExtension - components: - - pos: -12.5,24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14391 - type: CableApcExtension - components: - - pos: -11.5,24.5 - parent: 60 - type: Transform -- uid: 14392 - type: CableApcExtension - components: - - pos: -10.5,24.5 - parent: 60 - type: Transform -- uid: 14393 - type: CableApcExtension - components: - - pos: -14.5,16.5 - parent: 60 - type: Transform -- uid: 14394 - type: CableApcExtension - components: - - pos: -13.5,16.5 - parent: 60 - type: Transform -- uid: 14395 - type: CableApcExtension - components: - - pos: -12.5,16.5 - parent: 60 - type: Transform -- uid: 14396 - type: CableApcExtension - components: - - pos: -11.5,16.5 - parent: 60 - type: Transform -- uid: 14397 - type: CableApcExtension - components: - - pos: -10.5,16.5 - parent: 60 - type: Transform -- uid: 14398 - type: CableApcExtension - components: - - pos: -9.5,16.5 - parent: 60 - type: Transform -- uid: 14399 - type: CableApcExtension - components: - - pos: -8.5,16.5 - parent: 60 - type: Transform -- uid: 14400 - type: CableApcExtension - components: - - pos: -7.5,16.5 - parent: 60 - type: Transform -- uid: 14401 - type: CableApcExtension - components: - - pos: -7.5,17.5 - parent: 60 - type: Transform -- uid: 14402 - type: CableApcExtension - components: - - pos: -7.5,18.5 - parent: 60 - type: Transform -- uid: 14403 - type: CableApcExtension - components: - - pos: -7.5,19.5 - parent: 60 - type: Transform -- uid: 14404 - type: CableApcExtension - components: - - pos: -7.5,20.5 - parent: 60 - type: Transform -- uid: 14405 - type: CableApcExtension - components: - - pos: -7.5,21.5 - parent: 60 - type: Transform -- uid: 14406 - type: CableApcExtension - components: - - pos: -7.5,22.5 - parent: 60 - type: Transform -- uid: 14407 - type: CableApcExtension - components: - - pos: -7.5,23.5 - parent: 60 - type: Transform -- uid: 14408 - type: CableApcExtension - components: - - pos: -7.5,24.5 - parent: 60 - type: Transform -- uid: 14409 - type: CableApcExtension - components: - - pos: -7.5,25.5 - parent: 60 - type: Transform -- uid: 14410 - type: CableApcExtension - components: - - pos: -9.5,15.5 - parent: 60 - type: Transform -- uid: 14411 - type: CableApcExtension - components: - - pos: -9.5,14.5 - parent: 60 - type: Transform -- uid: 14412 - type: CableApcExtension - components: - - pos: -9.5,13.5 - parent: 60 - type: Transform -- uid: 14413 - type: CableApcExtension - components: - - pos: -9.5,12.5 - parent: 60 - type: Transform -- uid: 14414 - type: CableApcExtension - components: - - pos: -9.5,11.5 - parent: 60 - type: Transform -- uid: 14415 - type: CableApcExtension - components: - - pos: -9.5,10.5 - parent: 60 - type: Transform -- uid: 14416 - type: CableApcExtension - components: - - pos: -9.5,9.5 - parent: 60 - type: Transform -- uid: 14417 - type: CableApcExtension - components: - - pos: -9.5,8.5 - parent: 60 - type: Transform -- uid: 14418 - type: CableApcExtension - components: - - pos: -10.5,8.5 - parent: 60 - type: Transform -- uid: 14419 - type: CableApcExtension - components: - - pos: -11.5,8.5 - parent: 60 - type: Transform -- uid: 14420 - type: CableApcExtension - components: - - pos: -12.5,8.5 - parent: 60 - type: Transform -- uid: 14421 - type: CableApcExtension - components: - - pos: -13.5,8.5 - parent: 60 - type: Transform -- uid: 14422 - type: CableApcExtension - components: - - pos: -14.5,8.5 - parent: 60 - type: Transform -- uid: 14423 - type: CableApcExtension - components: - - pos: -8.5,8.5 - parent: 60 - type: Transform -- uid: 14424 - type: CableApcExtension - components: - - pos: -7.5,8.5 - parent: 60 - type: Transform -- uid: 14425 - type: CableApcExtension - components: - - pos: -6.5,8.5 - parent: 60 - type: Transform -- uid: 14426 - type: CableApcExtension - components: - - pos: -5.5,8.5 - parent: 60 - type: Transform -- uid: 14427 - type: CableApcExtension - components: - - pos: -4.5,8.5 - parent: 60 - type: Transform -- uid: 14428 - type: CableApcExtension - components: - - pos: -4.5,9.5 - parent: 60 - type: Transform -- uid: 14429 - type: CableApcExtension - components: - - pos: -3.5,9.5 - parent: 60 - type: Transform -- uid: 14430 - type: CableApcExtension - components: - - pos: -2.5,9.5 - parent: 60 - type: Transform -- uid: 14431 - type: CableApcExtension - components: - - pos: -1.5,9.5 - parent: 60 - type: Transform -- uid: 14432 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -12.5,15.5 - parent: 60 - type: Transform -- uid: 14433 - type: DisposalBend - components: - - pos: -12.5,16.5 - parent: 60 - type: Transform -- uid: 14434 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,16.5 - parent: 60 - type: Transform -- uid: 14435 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,16.5 - parent: 60 - type: Transform -- uid: 14436 - type: TableWood - components: - - pos: -10.5,13.5 - parent: 60 - type: Transform -- uid: 14437 - type: LampGold - components: - - pos: -10.617271,13.996219 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 14438 - type: ClothingEyesGlasses - components: - - pos: -8.056467,20.703438 - parent: 60 - type: Transform -- uid: 14439 - type: ClothingEyesGlasses - components: - - pos: -42.562397,-3.560008 - parent: 60 - type: Transform -- uid: 14440 - type: ChairWood - components: - - pos: -11.5,21.5 - parent: 60 - type: Transform -- uid: 14441 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -10.5,11.5 - parent: 60 - type: Transform -- uid: 14442 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -14.5,26.5 - parent: 60 - type: Transform -- uid: 14443 - type: AirlockMaintLocked - components: - - name: chapel - type: MetaData - - pos: -29.5,17.5 - parent: 60 - type: Transform -- uid: 14444 - type: WallSolid - components: - - pos: -29.5,18.5 - parent: 60 - type: Transform -- uid: 14445 - type: WallSolid - components: - - pos: -29.5,19.5 - parent: 60 - type: Transform -- uid: 14446 - type: WallSolid - components: - - pos: -29.5,20.5 - parent: 60 - type: Transform -- uid: 14447 - type: WallSolid - components: - - pos: -29.5,21.5 - parent: 60 - type: Transform -- uid: 14448 - type: WallReinforced - components: - - pos: -17.5,16.5 - parent: 60 - type: Transform -- uid: 14449 - type: WallReinforced - components: - - pos: -17.5,15.5 - parent: 60 - type: Transform -- uid: 14450 - type: AirlockChapelLocked - components: - - name: Chaplain's Office - type: MetaData - - pos: -21.5,17.5 - parent: 60 - type: Transform -- uid: 14451 - type: WallSolid - components: - - pos: -21.5,18.5 - parent: 60 - type: Transform -- uid: 14452 - type: WallSolid - components: - - pos: -21.5,19.5 - parent: 60 - type: Transform -- uid: 14453 - type: CableApcExtension - components: - - pos: -21.5,17.5 - parent: 60 - type: Transform -- uid: 14454 - type: ClothingHeadHatHoodCulthood - components: - - pos: -18.498913,16.619997 - parent: 60 - type: Transform -- uid: 14455 - type: GasPipeStraight - components: - - pos: -27.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14456 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14457 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14458 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14459 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14460 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14461 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14462 - type: GasPipeStraight - components: - - pos: -24.5,10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14463 - type: GasPipeStraight - components: - - pos: -24.5,11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14464 - type: GasPipeStraight - components: - - pos: -24.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14465 - type: GasPipeStraight - components: - - pos: -24.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14466 - type: GasPipeStraight - components: - - pos: -24.5,14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14467 - type: GasPipeStraight - components: - - pos: -24.5,15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14468 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -23.5,16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14469 - type: GasPipeStraight - components: - - pos: -24.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14470 - type: GasPipeStraight - components: - - pos: -24.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14471 - type: GasPipeStraight - components: - - pos: -24.5,19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14472 - type: GasPipeStraight - components: - - pos: -24.5,20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14473 - type: GasPipeStraight - components: - - pos: -24.5,21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14474 - type: GasPipeStraight - components: - - pos: -24.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14475 - type: GasPipeStraight - components: - - pos: -24.5,23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14476 - type: GasPipeStraight - components: - - pos: -24.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14477 - type: WallReinforced - components: - - pos: -28.5,27.5 - parent: 60 - type: Transform -- uid: 14478 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -24.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14479 - type: AirlockGlass - components: - - pos: -24.5,10.5 - parent: 60 - type: Transform -- uid: 14480 - type: AirlockGlass - components: - - pos: -25.5,10.5 - parent: 60 - type: Transform -- uid: 14481 - type: AirlockGlass - components: - - pos: -26.5,10.5 - parent: 60 - type: Transform -- uid: 14482 - type: AirlockGlass - components: - - pos: -24.5,22.5 - parent: 60 - type: Transform -- uid: 14483 - type: AirlockGlass - components: - - pos: -25.5,22.5 - parent: 60 - type: Transform -- uid: 14484 - type: AirlockGlass - components: - - pos: -26.5,22.5 - parent: 60 - type: Transform -- uid: 14485 - type: Carpet - components: - - pos: -25.5,13.5 - parent: 60 - type: Transform -- uid: 14486 - type: Carpet - components: - - pos: -25.5,14.5 - parent: 60 - type: Transform -- uid: 14487 - type: Carpet - components: - - pos: -25.5,15.5 - parent: 60 - type: Transform -- uid: 14488 - type: Carpet - components: - - pos: -25.5,16.5 - parent: 60 - type: Transform -- uid: 14489 - type: GasPipeStraight - components: - - pos: -27.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14490 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -26.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14491 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -27.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14492 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -24.5,16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14493 - type: Carpet - components: - - pos: -25.5,17.5 - parent: 60 - type: Transform -- uid: 14494 - type: Carpet - components: - - pos: -25.5,18.5 - parent: 60 - type: Transform -- uid: 14495 - type: GasPipeStraight - components: - - pos: -23.5,15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14496 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -23.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14497 - type: Carpet - components: - - pos: -26.5,16.5 - parent: 60 - type: Transform -- uid: 14498 - type: Carpet - components: - - pos: -27.5,16.5 - parent: 60 - type: Transform -- uid: 14499 - type: Carpet - components: - - pos: -24.5,16.5 - parent: 60 - type: Transform -- uid: 14500 - type: Carpet - components: - - pos: -23.5,16.5 - parent: 60 - type: Transform -- uid: 14501 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -23.5,14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14502 - type: GasVentPump - components: - - pos: -23.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14503 - type: GasVentScrubber - components: - - pos: -27.5,18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14504 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -27.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14505 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -19.5,10.5 - parent: 60 - type: Transform -- uid: 14506 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -19.5,14.5 - parent: 60 - type: Transform -- uid: 14507 - type: SignChapel - components: - - pos: -27.5,22.5 - parent: 60 - type: Transform -- uid: 14508 - type: SignChapel - components: - - pos: -23.5,10.5 - parent: 60 - type: Transform -- uid: 14509 - type: AltarSpawner - components: - - pos: -25.5,19.5 - parent: 60 - type: Transform -- uid: 14510 - type: HospitalCurtainsOpen - components: - - pos: 31.5,-16.5 - parent: 60 - type: Transform -- uid: 14511 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -18.5,16.5 - parent: 60 - type: Transform -- uid: 14512 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -19.5,16.5 - parent: 60 - type: Transform -- uid: 14513 - type: WindoorSecureChapelLocked - components: - - rot: 3.141592653589793 rad - pos: -20.5,16.5 - parent: 60 - type: Transform -- uid: 14514 - type: PlushieNar - components: - - pos: -20.536625,15.515014 - parent: 60 - type: Transform -- uid: 14515 - type: VendingMachineChapel - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,18.5 - parent: 60 - type: Transform - - sprite: Structures/Machines/VendingMachines/chapel.rsi - type: Sprite -- uid: 14516 - type: TintedWindow - components: - - pos: -19.5,20.5 - parent: 60 - type: Transform -- uid: 14517 - type: TintedWindow - components: - - pos: -19.5,21.5 - parent: 60 - type: Transform -- uid: 14518 - type: WoodDoor - components: - - name: Confessional - type: MetaData - - pos: -18.5,19.5 - parent: 60 - type: Transform -- uid: 14519 - type: SignDirectionalChapel - components: - - rot: -1.5707963267948966 rad - pos: -3.5026717,8.690684 - parent: 60 - type: Transform -- uid: 14520 - type: Grille - components: - - pos: -19.5,20.5 - parent: 60 - type: Transform -- uid: 14521 - type: PoweredSmallLight - components: - - pos: -18.5,21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14522 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -26.5,17.5 - parent: 60 - type: Transform -- uid: 14523 - type: HospitalCurtainsOpen - components: - - pos: 31.5,-19.5 - parent: 60 - type: Transform -- uid: 14524 - type: ReinforcedWindow - components: - - pos: -21.5,11.5 - parent: 60 - type: Transform -- uid: 14525 - type: ComfyChair - components: - - pos: -25.5,20.5 - parent: 60 - type: Transform -- uid: 14526 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -24.5,17.5 - parent: 60 - type: Transform -- uid: 14527 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -23.5,17.5 - parent: 60 - type: Transform -- uid: 14528 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -23.5,15.5 - parent: 60 - type: Transform -- uid: 14529 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -24.5,15.5 - parent: 60 - type: Transform -- uid: 14530 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -24.5,14.5 - parent: 60 - type: Transform -- uid: 14531 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -23.5,14.5 - parent: 60 - type: Transform -- uid: 14532 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -23.5,13.5 - parent: 60 - type: Transform -- uid: 14533 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -24.5,13.5 - parent: 60 - type: Transform -- uid: 14534 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -26.5,13.5 - parent: 60 - type: Transform -- uid: 14535 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -27.5,13.5 - parent: 60 - type: Transform -- uid: 14536 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -27.5,14.5 - parent: 60 - type: Transform -- uid: 14537 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -26.5,14.5 - parent: 60 - type: Transform -- uid: 14538 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -26.5,15.5 - parent: 60 - type: Transform -- uid: 14539 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -27.5,15.5 - parent: 60 - type: Transform -- uid: 14540 - type: ChurchOrganInstrument - components: - - rot: 3.141592653589793 rad - pos: -28.5,19.5 - parent: 60 - type: Transform -- uid: 14541 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -28.5,18.5 - parent: 60 - type: Transform -- uid: 14542 - type: Table - components: - - pos: -22.5,18.5 - parent: 60 - type: Transform -- uid: 14543 - type: Table - components: - - pos: -22.5,19.5 - parent: 60 - type: Transform -- uid: 14544 - type: FoodBreadMoldySlice - components: - - pos: -22.476202,18.942682 - parent: 60 - type: Transform -- uid: 14545 - type: AtmosFixFreezerMarker - components: - - pos: 23.5,-27.5 - parent: 60 - type: Transform -- uid: 14546 - type: DisposalUnit - components: - - pos: -28.5,11.5 - parent: 60 - type: Transform -- uid: 14547 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14548 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14549 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,13.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14550 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14551 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14552 - type: APCBasic - components: - - pos: -23.5,22.5 - parent: 60 - type: Transform -- uid: 14553 - type: CableMV - components: - - pos: -15.5,24.5 - parent: 60 - type: Transform -- uid: 14554 - type: CableMV - components: - - pos: -16.5,24.5 - parent: 60 - type: Transform -- uid: 14555 - type: CableMV - components: - - pos: -17.5,24.5 - parent: 60 - type: Transform -- uid: 14556 - type: CableMV - components: - - pos: -18.5,24.5 - parent: 60 - type: Transform -- uid: 14557 - type: CableMV - components: - - pos: -19.5,24.5 - parent: 60 - type: Transform -- uid: 14558 - type: CableMV - components: - - pos: -20.5,24.5 - parent: 60 - type: Transform -- uid: 14559 - type: CableMV - components: - - pos: -21.5,24.5 - parent: 60 - type: Transform -- uid: 14560 - type: CableMV - components: - - pos: -22.5,24.5 - parent: 60 - type: Transform -- uid: 14561 - type: CableMV - components: - - pos: -23.5,23.5 - parent: 60 - type: Transform -- uid: 14562 - type: CableMV - components: - - pos: -23.5,22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14563 - type: CableApcExtension - components: - - pos: -23.5,22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14564 - type: CableApcExtension - components: - - pos: -23.5,21.5 - parent: 60 - type: Transform -- uid: 14565 - type: CableApcExtension - components: - - pos: -23.5,20.5 - parent: 60 - type: Transform -- uid: 14566 - type: CableApcExtension - components: - - pos: -23.5,19.5 - parent: 60 - type: Transform -- uid: 14567 - type: CableApcExtension - components: - - pos: -23.5,18.5 - parent: 60 - type: Transform -- uid: 14568 - type: CableApcExtension - components: - - pos: -23.5,17.5 - parent: 60 - type: Transform -- uid: 14569 - type: CableApcExtension - components: - - pos: -23.5,16.5 - parent: 60 - type: Transform -- uid: 14570 - type: CableApcExtension - components: - - pos: -23.5,15.5 - parent: 60 - type: Transform -- uid: 14571 - type: CableApcExtension - components: - - pos: -23.5,14.5 - parent: 60 - type: Transform -- uid: 14572 - type: CableApcExtension - components: - - pos: -23.5,13.5 - parent: 60 - type: Transform -- uid: 14573 - type: CableApcExtension - components: - - pos: -23.5,12.5 - parent: 60 - type: Transform -- uid: 14574 - type: CableApcExtension - components: - - pos: -23.5,11.5 - parent: 60 - type: Transform -- uid: 14575 - type: CableApcExtension - components: - - pos: -24.5,11.5 - parent: 60 - type: Transform -- uid: 14576 - type: CableApcExtension - components: - - pos: -25.5,11.5 - parent: 60 - type: Transform -- uid: 14577 - type: CableApcExtension - components: - - pos: -25.5,10.5 - parent: 60 - type: Transform -- uid: 14578 - type: CableApcExtension - components: - - pos: -25.5,9.5 - parent: 60 - type: Transform -- uid: 14579 - type: CableApcExtension - components: - - pos: -25.5,8.5 - parent: 60 - type: Transform -- uid: 14580 - type: CableApcExtension - components: - - pos: -26.5,8.5 - parent: 60 - type: Transform -- uid: 14581 - type: CableApcExtension - components: - - pos: -27.5,8.5 - parent: 60 - type: Transform -- uid: 14582 - type: CableApcExtension - components: - - pos: -28.5,8.5 - parent: 60 - type: Transform -- uid: 14583 - type: CableApcExtension - components: - - pos: -29.5,8.5 - parent: 60 - type: Transform -- uid: 14584 - type: CableApcExtension - components: - - pos: -30.5,8.5 - parent: 60 - type: Transform -- uid: 14585 - type: CableApcExtension - components: - - pos: -24.5,8.5 - parent: 60 - type: Transform -- uid: 14586 - type: CableApcExtension - components: - - pos: -23.5,8.5 - parent: 60 - type: Transform -- uid: 14587 - type: CableApcExtension - components: - - pos: -22.5,8.5 - parent: 60 - type: Transform -- uid: 14588 - type: CableApcExtension - components: - - pos: -21.5,8.5 - parent: 60 - type: Transform -- uid: 14589 - type: CableApcExtension - components: - - pos: -20.5,8.5 - parent: 60 - type: Transform -- uid: 14590 - type: CableApcExtension - components: - - pos: -19.5,8.5 - parent: 60 - type: Transform -- uid: 14591 - type: CableApcExtension - components: - - pos: -18.5,8.5 - parent: 60 - type: Transform -- uid: 14592 - type: CableApcExtension - components: - - pos: -26.5,11.5 - parent: 60 - type: Transform -- uid: 14593 - type: CableApcExtension - components: - - pos: -27.5,11.5 - parent: 60 - type: Transform -- uid: 14594 - type: CableApcExtension - components: - - pos: -27.5,12.5 - parent: 60 - type: Transform -- uid: 14595 - type: CableApcExtension - components: - - pos: -27.5,13.5 - parent: 60 - type: Transform -- uid: 14596 - type: CableApcExtension - components: - - pos: -27.5,14.5 - parent: 60 - type: Transform -- uid: 14597 - type: CableApcExtension - components: - - pos: -27.5,15.5 - parent: 60 - type: Transform -- uid: 14598 - type: CableApcExtension - components: - - pos: -27.5,16.5 - parent: 60 - type: Transform -- uid: 14599 - type: CableApcExtension - components: - - pos: -27.5,17.5 - parent: 60 - type: Transform -- uid: 14600 - type: CableApcExtension - components: - - pos: -27.5,18.5 - parent: 60 - type: Transform -- uid: 14601 - type: CableApcExtension - components: - - pos: -27.5,19.5 - parent: 60 - type: Transform -- uid: 14602 - type: CableApcExtension - components: - - pos: -27.5,20.5 - parent: 60 - type: Transform -- uid: 14603 - type: CableApcExtension - components: - - pos: -27.5,21.5 - parent: 60 - type: Transform -- uid: 14604 - type: CableApcExtension - components: - - pos: -26.5,20.5 - parent: 60 - type: Transform -- uid: 14605 - type: CableApcExtension - components: - - pos: -25.5,20.5 - parent: 60 - type: Transform -- uid: 14606 - type: CableApcExtension - components: - - pos: -24.5,20.5 - parent: 60 - type: Transform -- uid: 14607 - type: CableApcExtension - components: - - pos: -22.5,20.5 - parent: 60 - type: Transform -- uid: 14608 - type: CableApcExtension - components: - - pos: -21.5,20.5 - parent: 60 - type: Transform -- uid: 14609 - type: CableApcExtension - components: - - pos: -19.5,20.5 - parent: 60 - type: Transform -- uid: 14610 - type: CableApcExtension - components: - - pos: -19.5,20.5 - parent: 60 - type: Transform -- uid: 14611 - type: WallSolid - components: - - pos: -19.5,19.5 - parent: 60 - type: Transform -- uid: 14612 - type: CableApcExtension - components: - - pos: -19.5,18.5 - parent: 60 - type: Transform -- uid: 14613 - type: CableApcExtension - components: - - pos: -19.5,17.5 - parent: 60 - type: Transform -- uid: 14614 - type: CableApcExtension - components: - - pos: -19.5,16.5 - parent: 60 - type: Transform -- uid: 14615 - type: CableApcExtension - components: - - pos: -19.5,15.5 - parent: 60 - type: Transform -- uid: 14616 - type: CableApcExtension - components: - - pos: -20.5,20.5 - parent: 60 - type: Transform -- uid: 14617 - type: CableApcExtension - components: - - pos: -22.5,17.5 - parent: 60 - type: Transform -- uid: 14618 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14619 - type: Grille - components: - - pos: -19.5,21.5 - parent: 60 - type: Transform -- uid: 14620 - type: ChairWood - components: - - pos: -20.5,21.5 - parent: 60 - type: Transform -- uid: 14621 - type: ChairWood - components: - - pos: -18.5,21.5 - parent: 60 - type: Transform -- uid: 14622 - type: PoweredSmallLight - components: - - pos: -20.5,21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14623 - type: WallSolid - components: - - pos: -20.5,19.5 - parent: 60 - type: Transform -- uid: 14624 - type: ClothingOuterRobesCult - components: - - pos: -18.483288,16.541872 - parent: 60 - type: Transform -- uid: 14625 - type: ClothingOuterRobesCult - components: - - pos: -18.483288,16.541872 - parent: 60 - type: Transform -- uid: 14626 - type: CableApcExtension - components: - - pos: -20.5,17.5 - parent: 60 - type: Transform -- uid: 14627 - type: Rack - components: - - pos: -18.5,16.5 - parent: 60 - type: Transform -- uid: 14628 - type: WallSolid - components: - - pos: -17.5,20.5 - parent: 60 - type: Transform -- uid: 14629 - type: ClothingOuterRobesCult - components: - - pos: -18.483288,16.541872 - parent: 60 - type: Transform -- uid: 14630 - type: ClothingHeadHatHoodCulthood - components: - - pos: -18.498913,16.619997 - parent: 60 - type: Transform -- uid: 14631 - type: ClothingHeadHatHoodCulthood - components: - - pos: -18.498913,16.619997 - parent: 60 - type: Transform -- uid: 14632 - type: Bed - components: - - pos: -19.5,18.5 - parent: 60 - type: Transform -- uid: 14633 - type: BedsheetCult - components: - - pos: -19.5,18.5 - parent: 60 - type: Transform -- uid: 14634 - type: DisposalBend - components: - - pos: -25.5,11.5 - parent: 60 - type: Transform -- uid: 14635 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -25.5,8.5 - parent: 60 - type: Transform -- uid: 14636 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,11.5 - parent: 60 - type: Transform -- uid: 14637 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -26.5,11.5 - parent: 60 - type: Transform -- uid: 14638 - type: DisposalPipe - components: - - pos: -25.5,9.5 - parent: 60 - type: Transform -- uid: 14639 - type: DisposalPipe - components: - - pos: -25.5,10.5 - parent: 60 - type: Transform -- uid: 14640 - type: SpawnPointChaplain - components: - - pos: -19.5,17.5 - parent: 60 - type: Transform -- uid: 14641 - type: SpawnPointLibrarian - components: - - pos: -7.5,24.5 - parent: 60 - type: Transform -- uid: 14642 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -19.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14643 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14644 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14645 - type: WallReinforced - components: - - pos: -20.5,14.5 - parent: 60 - type: Transform -- uid: 14646 - type: AirlockAtmosphericsGlassLocked - components: - - name: Atmos Locker Room - type: MetaData - - pos: -23.5,30.5 - parent: 60 - type: Transform -- uid: 14647 - type: ReinforcedWindow - components: - - pos: -33.5,27.5 - parent: 60 - type: Transform -- uid: 14648 - type: ReinforcedWindow - components: - - pos: -35.5,27.5 - parent: 60 - type: Transform -- uid: 14649 - type: ReinforcedWindow - components: - - pos: -13.5,27.5 - parent: 60 - type: Transform -- uid: 14650 - type: ReinforcedWindow - components: - - pos: -13.5,29.5 - parent: 60 - type: Transform -- uid: 14651 - type: WallReinforced - components: - - pos: -24.5,29.5 - parent: 60 - type: Transform -- uid: 14652 - type: ReinforcedWindow - components: - - pos: -25.5,27.5 - parent: 60 - type: Transform -- uid: 14653 - type: WallReinforced - components: - - pos: -26.5,29.5 - parent: 60 - type: Transform -- uid: 14654 - type: ReinforcedWindow - components: - - pos: -27.5,27.5 - parent: 60 - type: Transform -- uid: 14655 - type: WallReinforced - components: - - pos: -28.5,29.5 - parent: 60 - type: Transform -- uid: 14656 - type: WallReinforced - components: - - pos: -23.5,29.5 - parent: 60 - type: Transform -- uid: 14657 - type: ReinforcedWindow - components: - - pos: -29.5,27.5 - parent: 60 - type: Transform -- uid: 14658 - type: WallReinforced - components: - - pos: -30.5,29.5 - parent: 60 - type: Transform -- uid: 14659 - type: WallReinforced - components: - - pos: -31.5,29.5 - parent: 60 - type: Transform -- uid: 14660 - type: GasPipeStraight - components: - - pos: -39.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14661 - type: ReinforcedWindow - components: - - pos: -37.5,27.5 - parent: 60 - type: Transform -- uid: 14662 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,35.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14663 - type: WallReinforced - components: - - pos: -14.5,31.5 - parent: 60 - type: Transform -- uid: 14664 - type: SignSecureMed - components: - - pos: -31.5,32.5 - parent: 60 - type: Transform -- uid: 14665 - type: SignSecureMed - components: - - pos: -13.5,31.5 - parent: 60 - type: Transform -- uid: 14666 - type: SignDangerMed - components: - - pos: -15.5,38.5 - parent: 60 - type: Transform -- uid: 14667 - type: WallReinforced - components: - - pos: -18.5,31.5 - parent: 60 - type: Transform -- uid: 14668 - type: WallReinforced - components: - - pos: -19.5,31.5 - parent: 60 - type: Transform -- uid: 14669 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14670 - type: AirAlarm - components: - - pos: -33.5,42.5 - parent: 60 - type: Transform - - devices: - - 13444 - - 21651 - type: DeviceList -- uid: 14671 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14672 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14673 - type: AirlockAtmosphericsGlassLocked - components: - - name: Atmospherics - type: MetaData - - pos: -21.5,27.5 - parent: 60 - type: Transform -- uid: 14674 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -19.5,32.5 - parent: 60 - type: Transform -- uid: 14675 - type: AirlockAtmosphericsGlassLocked - components: - - name: Atmos Locker Room - type: MetaData - - pos: -31.5,31.5 - parent: 60 - type: Transform -- uid: 14676 - type: WallReinforced - components: - - pos: -23.5,33.5 - parent: 60 - type: Transform -- uid: 14677 - type: WallReinforced - components: - - pos: -24.5,33.5 - parent: 60 - type: Transform -- uid: 14678 - type: WallReinforced - components: - - pos: -25.5,33.5 - parent: 60 - type: Transform -- uid: 14679 - type: WallReinforced - components: - - pos: -26.5,33.5 - parent: 60 - type: Transform -- uid: 14680 - type: WallReinforced - components: - - pos: -27.5,33.5 - parent: 60 - type: Transform -- uid: 14681 - type: WallReinforced - components: - - pos: -28.5,33.5 - parent: 60 - type: Transform -- uid: 14682 - type: WallReinforced - components: - - pos: -29.5,33.5 - parent: 60 - type: Transform -- uid: 14683 - type: WallReinforced - components: - - pos: -30.5,33.5 - parent: 60 - type: Transform -- uid: 14684 - type: WallReinforced - components: - - pos: -31.5,33.5 - parent: 60 - type: Transform -- uid: 14685 - type: WallReinforced - components: - - pos: -31.5,32.5 - parent: 60 - type: Transform -- uid: 14686 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,38.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14687 - type: Grille - components: - - pos: -37.5,27.5 - parent: 60 - type: Transform -- uid: 14688 - type: Grille - components: - - pos: -35.5,27.5 - parent: 60 - type: Transform -- uid: 14689 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14690 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,31.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14691 - type: Grille - components: - - pos: -33.5,27.5 - parent: 60 - type: Transform -- uid: 14692 - type: Grille - components: - - pos: -29.5,27.5 - parent: 60 - type: Transform -- uid: 14693 - type: Grille - components: - - pos: -29.5,29.5 - parent: 60 - type: Transform -- uid: 14694 - type: Grille - components: - - pos: -27.5,29.5 - parent: 60 - type: Transform -- uid: 14695 - type: Grille - components: - - pos: -27.5,27.5 - parent: 60 - type: Transform -- uid: 14696 - type: Grille - components: - - pos: -25.5,27.5 - parent: 60 - type: Transform -- uid: 14697 - type: Grille - components: - - pos: -25.5,29.5 - parent: 60 - type: Transform -- uid: 14698 - type: GeigerCounter - components: - - pos: -17.928715,32.485287 - parent: 60 - type: Transform -- uid: 14699 - type: Grille - components: - - pos: -13.5,27.5 - parent: 60 - type: Transform -- uid: 14700 - type: Grille - components: - - pos: -13.5,29.5 - parent: 60 - type: Transform -- uid: 14701 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -32.5,36.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14702 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -32.5,35.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14703 - type: GasValve - components: - - pos: -31.5,41.5 - parent: 60 - type: Transform - - open: False - type: GasValve - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14704 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -32.5,34.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14705 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -31.5,40.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14706 - type: WallReinforced - components: - - pos: -31.5,34.5 - parent: 60 - type: Transform -- uid: 14707 - type: WallReinforced - components: - - pos: -31.5,37.5 - parent: 60 - type: Transform -- uid: 14708 - type: AirlockAtmosphericsLocked - components: - - name: Atmos Secure Storage - type: MetaData - - pos: -30.5,37.5 - parent: 60 - type: Transform -- uid: 14709 - type: GasPipeStraight - components: - - pos: -31.5,42.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14710 - type: GasPipeStraight - components: - - pos: -31.5,44.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14711 - type: GasPipeStraight - components: - - pos: -31.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14712 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: -32.5,45.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 14713 - type: WallReinforced - components: - - pos: -24.5,37.5 - parent: 60 - type: Transform -- uid: 14714 - type: PlushieSpaceLizard - components: - - pos: -7.4546165,-35.517254 - parent: 60 - type: Transform -- uid: 14715 - type: WallReinforced - components: - - pos: -31.5,35.5 - parent: 60 - type: Transform -- uid: 14716 - type: WallReinforced - components: - - pos: -31.5,36.5 - parent: 60 - type: Transform -- uid: 14717 - type: WallSolid - components: - - pos: -32.5,37.5 - parent: 60 - type: Transform -- uid: 14718 - type: SignAtmos - components: - - pos: -13.5,30.5 - parent: 60 - type: Transform -- uid: 14719 - type: WallReinforced - components: - - pos: -33.5,42.5 - parent: 60 - type: Transform -- uid: 14720 - type: GasPort - components: - - pos: -16.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14721 - type: GasPort - components: - - pos: -15.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14722 - type: GasThermoMachineHeater - components: - - pos: -18.5,30.5 - parent: 60 - type: Transform -- uid: 14723 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14724 - type: GasThermoMachineFreezer - components: - - pos: -17.5,30.5 - parent: 60 - type: Transform -- uid: 14725 - type: DisposalUnit - components: - - pos: -18.5,27.5 - parent: 60 - type: Transform -- uid: 14726 - type: ComputerAlert - components: - - rot: -1.5707963267948966 rad - pos: -14.5,27.5 - parent: 60 - type: Transform -- uid: 14727 - type: ChairOfficeDark - components: - - pos: -15.5,27.5 - parent: 60 - type: Transform -- uid: 14728 - type: ChairOfficeDark - components: - - pos: -16.5,27.5 - parent: 60 - type: Transform -- uid: 14729 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -17.5,29.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 14730 - type: GasValve - components: - - rot: 1.5707963267948966 rad - pos: -19.5,29.5 - parent: 60 - type: Transform - - open: False - type: GasValve - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14731 - type: AirlockAtmosphericsGlassLocked - components: - - name: Atmospherics - type: MetaData - - pos: -13.5,28.5 - parent: 60 - type: Transform -- uid: 14732 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14733 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14734 - type: Poweredlight - components: - - pos: -44.5,32.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14735 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -22.5,34.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14736 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -18.5,29.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 14737 - type: WallReinforced - components: - - pos: -46.5,44.5 - parent: 60 - type: Transform -- uid: 14738 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,38.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14739 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,36.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14740 - type: Grille - components: - - pos: -40.5,42.5 - parent: 60 - type: Transform -- uid: 14741 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14742 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14743 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14744 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14745 - type: GasPipeTJunction - components: - - pos: -29.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14746 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -25.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14747 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14748 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14749 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -20.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14750 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -22.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14751 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -16.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14752 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -21.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14753 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -20.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14754 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14755 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14756 - type: ReinforcedWindow - components: - - pos: -36.5,29.5 - parent: 60 - type: Transform -- uid: 14757 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14758 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14759 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14760 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14761 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,26.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14762 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,25.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14763 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -20.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14764 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14765 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14766 - type: GasPipeTJunction - components: - - pos: -32.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14767 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14768 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14769 - type: GasPipeStraight - components: - - pos: -41.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14770 - type: GasPipeTJunction - components: - - pos: -30.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14771 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14772 - type: Grille - components: - - pos: -40.5,40.5 - parent: 60 - type: Transform -- uid: 14773 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14774 - type: GasMixerFlipped - components: - - pos: -37.5,37.5 - parent: 60 - type: Transform - - inletTwoConcentration: 0 - inletOneConcentration: 1 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 14775 - type: WallReinforced - components: - - pos: -47.5,42.5 - parent: 60 - type: Transform -- uid: 14776 - type: Grille - components: - - pos: -35.5,46.5 - parent: 60 - type: Transform -- uid: 14777 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14778 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14779 - type: Grille - components: - - pos: -40.5,34.5 - parent: 60 - type: Transform -- uid: 14780 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -27.5,43.5 - parent: 60 - type: Transform -- uid: 14781 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14782 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14783 - type: ReinforcedWindow - components: - - pos: -33.5,29.5 - parent: 60 - type: Transform -- uid: 14784 - type: WallReinforced - components: - - pos: -42.5,41.5 - parent: 60 - type: Transform -- uid: 14785 - type: GasPipeStraight - components: - - pos: -38.5,33.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14786 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14787 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -38.5,31.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14788 - type: WallReinforced - components: - - pos: -46.5,39.5 - parent: 60 - type: Transform -- uid: 14789 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,41.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14790 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14791 - type: Grille - components: - - pos: -40.5,38.5 - parent: 60 - type: Transform -- uid: 14792 - type: ReinforcedWindow - components: - - pos: -40.5,36.5 - parent: 60 - type: Transform -- uid: 14793 - type: GasPressurePump - components: - - name: mixer pump - type: MetaData - - rot: 1.5707963267948966 rad - pos: -36.5,45.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 14794 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,45.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14795 - type: WallReinforced - components: - - pos: -45.5,33.5 - parent: 60 - type: Transform -- uid: 14796 - type: ReinforcedWindow - components: - - pos: -40.5,33.5 - parent: 60 - type: Transform -- uid: 14797 - type: WallReinforced - components: - - pos: -43.5,33.5 - parent: 60 - type: Transform -- uid: 14798 - type: Grille - components: - - pos: -40.5,32.5 - parent: 60 - type: Transform -- uid: 14799 - type: WallReinforced - components: - - pos: -46.5,33.5 - parent: 60 - type: Transform -- uid: 14800 - type: GasPipeTJunction - components: - - pos: -34.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14801 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,31.5 - parent: 60 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14802 - type: Grille - components: - - pos: -42.5,44.5 - parent: 60 - type: Transform -- uid: 14803 - type: WallReinforced - components: - - pos: -44.5,43.5 - parent: 60 - type: Transform -- uid: 14804 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,33.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14805 - type: WallReinforced - components: - - pos: -45.5,43.5 - parent: 60 - type: Transform -- uid: 14806 - type: Grille - components: - - pos: -40.5,46.5 - parent: 60 - type: Transform -- uid: 14807 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -30.5,44.5 - parent: 60 - type: Transform -- uid: 14808 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -33.5,45.5 - parent: 60 - type: Transform -- uid: 14809 - type: GasMixerFlipped - components: - - pos: -37.5,34.5 - parent: 60 - type: Transform - - inletTwoConcentration: 1 - inletOneConcentration: 0 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 14810 - type: WallReinforced - components: - - pos: -47.5,39.5 - parent: 60 - type: Transform -- uid: 14811 - type: Grille - components: - - pos: -37.5,47.5 - parent: 60 - type: Transform -- uid: 14812 - type: WallReinforced - components: - - pos: -42.5,43.5 - parent: 60 - type: Transform -- uid: 14813 - type: WallReinforced - components: - - pos: -47.5,33.5 - parent: 60 - type: Transform -- uid: 14814 - type: Grille - components: - - pos: -35.5,44.5 - parent: 60 - type: Transform -- uid: 14815 - type: WallReinforced - components: - - pos: -44.5,45.5 - parent: 60 - type: Transform -- uid: 14816 - type: ReinforcedWindow - components: - - pos: -40.5,38.5 - parent: 60 - type: Transform -- uid: 14817 - type: WallReinforced - components: - - pos: -43.5,39.5 - parent: 60 - type: Transform -- uid: 14818 - type: WallReinforced - components: - - pos: -43.5,43.5 - parent: 60 - type: Transform -- uid: 14819 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -27.5,45.5 - parent: 60 - type: Transform -- uid: 14820 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -42.5,38.5 - parent: 60 - type: Transform -- uid: 14821 - type: WallReinforced - components: - - pos: -40.5,29.5 - parent: 60 - type: Transform -- uid: 14822 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -29.5,42.5 - parent: 60 - type: Transform -- uid: 14823 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -30.5,47.5 - parent: 60 - type: Transform -- uid: 14824 - type: GasValve - components: - - rot: 3.141592653589793 rad - pos: -35.5,33.5 - parent: 60 - type: Transform - - open: False - type: GasValve - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14825 - type: WallReinforced - components: - - pos: -29.5,47.5 - parent: 60 - type: Transform -- uid: 14826 - type: GasMixerFlipped - components: - - pos: -37.5,43.5 - parent: 60 - type: Transform - - inletTwoConcentration: 0 - inletOneConcentration: 1 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 14827 - type: GasPipeTJunction - components: - - pos: -20.5,29.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14828 - type: WallReinforced - components: - - pos: -45.5,37.5 - parent: 60 - type: Transform -- uid: 14829 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -38.5,34.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14830 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -35.5,44.5 - parent: 60 - type: Transform -- uid: 14831 - type: WallReinforced - components: - - pos: -42.5,37.5 - parent: 60 - type: Transform -- uid: 14832 - type: GasPressurePump - components: - - name: mix to waste - type: MetaData - - pos: -33.5,32.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14833 - type: WallReinforced - components: - - pos: -47.5,45.5 - parent: 60 - type: Transform -- uid: 14834 - type: GasPipeStraight - components: - - pos: -38.5,32.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14835 - type: ReinforcedWindow - components: - - pos: -38.5,47.5 - parent: 60 - type: Transform -- uid: 14836 - type: ReinforcedWindow - components: - - pos: -40.5,31.5 - parent: 60 - type: Transform -- uid: 14837 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -37.5,33.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14838 - type: ReinforcedWindow - components: - - pos: -40.5,45.5 - parent: 60 - type: Transform -- uid: 14839 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -35.5,47.5 - parent: 60 - type: Transform -- uid: 14840 - type: Grille - components: - - pos: -39.5,47.5 - parent: 60 - type: Transform -- uid: 14841 - type: Grille - components: - - pos: -42.5,36.5 - parent: 60 - type: Transform -- uid: 14842 - type: GasMixerFlipped - components: - - pos: -37.5,35.5 - parent: 60 - type: Transform - - inletTwoConcentration: 0 - inletOneConcentration: 1 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 14843 - type: ReinforcedWindow - components: - - pos: -40.5,41.5 - parent: 60 - type: Transform -- uid: 14844 - type: ReinforcedWindow - components: - - pos: -38.5,29.5 - parent: 60 - type: Transform -- uid: 14845 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14846 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,41.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14847 - type: WallReinforced - components: - - pos: -45.5,41.5 - parent: 60 - type: Transform -- uid: 14848 - type: Grille - components: - - pos: -40.5,36.5 - parent: 60 - type: Transform -- uid: 14849 - type: Grille - components: - - pos: -40.5,30.5 - parent: 60 - type: Transform -- uid: 14850 - type: GasMixerFlipped - components: - - desc: Used to mix n2 and o2 into a breathable and safe mix. - name: distro air mixer - type: MetaData - - rot: -1.5707963267948966 rad - pos: -37.5,31.5 - parent: 60 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14851 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -31.5,42.5 - parent: 60 - type: Transform -- uid: 14852 - type: Grille - components: - - pos: -40.5,44.5 - parent: 60 - type: Transform -- uid: 14853 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,41.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14854 - type: WallReinforced - components: - - pos: -46.5,45.5 - parent: 60 - type: Transform -- uid: 14855 - type: WallReinforced - components: - - pos: -44.5,41.5 - parent: 60 - type: Transform -- uid: 14856 - type: Grille - components: - - pos: -27.5,46.5 - parent: 60 - type: Transform -- uid: 14857 - type: WallReinforced - components: - - pos: -43.5,45.5 - parent: 60 - type: Transform -- uid: 14858 - type: GasValve - components: - - rot: 3.141592653589793 rad - pos: -33.5,33.5 - parent: 60 - type: Transform - - open: False - type: GasValve - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14859 - type: WallReinforced - components: - - pos: -42.5,45.5 - parent: 60 - type: Transform -- uid: 14860 - type: WallReinforced - components: - - pos: -43.5,41.5 - parent: 60 - type: Transform -- uid: 14861 - type: ReinforcedWindow - components: - - pos: -40.5,47.5 - parent: 60 - type: Transform -- uid: 14862 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,32.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14863 - type: ReinforcedWindow - components: - - pos: -36.5,47.5 - parent: 60 - type: Transform -- uid: 14864 - type: Grille - components: - - pos: -37.5,29.5 - parent: 60 - type: Transform -- uid: 14865 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 52.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14866 - type: GasPipeTJunction - components: - - pos: -24.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14867 - type: WallReinforced - components: - - pos: -29.5,44.5 - parent: 60 - type: Transform -- uid: 14868 - type: WallReinforced - components: - - pos: -42.5,31.5 - parent: 60 - type: Transform -- uid: 14869 - type: WallReinforced - components: - - pos: -43.5,35.5 - parent: 60 - type: Transform -- uid: 14870 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14871 - type: GasPipeStraight - components: - - pos: -43.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14872 - type: ReinforcedWindow - components: - - pos: -40.5,43.5 - parent: 60 - type: Transform -- uid: 14873 - type: WallReinforced - components: - - pos: -46.5,36.5 - parent: 60 - type: Transform -- uid: 14874 - type: WallReinforced - components: - - pos: -47.5,36.5 - parent: 60 - type: Transform -- uid: 14875 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -35.5,46.5 - parent: 60 - type: Transform -- uid: 14876 - type: Grille - components: - - pos: -33.5,29.5 - parent: 60 - type: Transform -- uid: 14877 - type: WallReinforced - components: - - pos: -45.5,45.5 - parent: 60 - type: Transform -- uid: 14878 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14879 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14880 - type: GasFilterFlipped - components: - - name: o2 filter - type: MetaData - - pos: -39.5,34.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 14881 - type: GasPressurePump - components: - - desc: A pump that moves nitrogen by pressure. - name: n2 pump - type: MetaData - - rot: 1.5707963267948966 rad - pos: -39.5,31.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 14882 - type: GasPressurePump - components: - - desc: A pump that moves carbon dioxide by pressure. - name: co2 pump - type: MetaData - - rot: 1.5707963267948966 rad - pos: -39.5,35.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 14883 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,35.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14884 - type: GasPressurePump - components: - - desc: A pump that moves tritium by pressure. - name: tritium pump - type: MetaData - - rot: 1.5707963267948966 rad - pos: -39.5,41.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 14885 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,32.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14886 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,42.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14887 - type: GasPassiveVent - components: - - pos: -45.5,34.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 14888 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,33.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14889 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14890 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -33.5,31.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14891 - type: GasPressurePump - components: - - name: mix to distro - type: MetaData - - pos: -35.5,32.5 - parent: 60 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14892 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -34.5,37.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14893 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -33.5,36.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14894 - type: GasPassiveVent - components: - - pos: -45.5,38.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 14895 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -45.5,37.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14896 - type: AtmosFixFreezerMarker - components: - - pos: 23.5,-26.5 - parent: 60 - type: Transform -- uid: 14897 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,37.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14898 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,35.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14899 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14900 - type: WallReinforced - components: - - pos: -43.5,31.5 - parent: 60 - type: Transform -- uid: 14901 - type: ReinforcedWindow - components: - - pos: -40.5,30.5 - parent: 60 - type: Transform -- uid: 14902 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,46.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14903 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -12.5,45.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14904 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -14.5,45.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14905 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,40.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14906 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -21.5,40.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14907 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -22.5,40.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14908 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -21.5,45.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14909 - type: WallReinforced - components: - - pos: -23.5,37.5 - parent: 60 - type: Transform -- uid: 14910 - type: BlastDoor - components: - - pos: -23.5,34.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15261 - type: SignalReceiver -- uid: 14911 - type: BlastDoor - components: - - pos: -23.5,35.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15261 - type: SignalReceiver -- uid: 14912 - type: BlastDoor - components: - - pos: -23.5,36.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15261 - type: SignalReceiver -- uid: 14913 - type: SignalButton - components: - - pos: -32.5,47.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15089 - type: SignalTransmitter -- uid: 14914 - type: SignalButton - components: - - pos: -35.5,42.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15089 - type: SignalTransmitter -- uid: 14915 - type: Grille - components: - - pos: -29.5,46.5 - parent: 60 - type: Transform -- uid: 14916 - type: Grille - components: - - pos: -29.5,45.5 - parent: 60 - type: Transform -- uid: 14917 - type: ReinforcedWindow - components: - - pos: -40.5,35.5 - parent: 60 - type: Transform -- uid: 14918 - type: Grille - components: - - pos: -30.5,44.5 - parent: 60 - type: Transform -- uid: 14919 - type: Grille - components: - - pos: -31.5,44.5 - parent: 60 - type: Transform -- uid: 14920 - type: Grille - components: - - pos: -32.5,44.5 - parent: 60 - type: Transform -- uid: 14921 - type: Grille - components: - - pos: -33.5,46.5 - parent: 60 - type: Transform -- uid: 14922 - type: Grille - components: - - pos: -33.5,45.5 - parent: 60 - type: Transform -- uid: 14923 - type: Grille - components: - - pos: -34.5,42.5 - parent: 60 - type: Transform -- uid: 14924 - type: AirAlarm - components: - - pos: -3.5,2.5 - parent: 60 - type: Transform - - devices: - - 18609 - - 21494 - - 18260 - - 18539 - - 18540 - type: DeviceList -- uid: 14925 - type: Grille - components: - - pos: -32.5,42.5 - parent: 60 - type: Transform -- uid: 14926 - type: Grille - components: - - pos: -31.5,42.5 - parent: 60 - type: Transform -- uid: 14927 - type: Grille - components: - - pos: -30.5,42.5 - parent: 60 - type: Transform -- uid: 14928 - type: Grille - components: - - pos: -29.5,42.5 - parent: 60 - type: Transform -- uid: 14929 - type: Grille - components: - - pos: -28.5,42.5 - parent: 60 - type: Transform -- uid: 14930 - type: Grille - components: - - pos: -27.5,43.5 - parent: 60 - type: Transform -- uid: 14931 - type: Grille - components: - - pos: -27.5,44.5 - parent: 60 - type: Transform -- uid: 14932 - type: Grille - components: - - pos: -27.5,45.5 - parent: 60 - type: Transform -- uid: 14933 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14934 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14935 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14936 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14937 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14938 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14939 - type: GasFilterFlipped - components: - - name: co2 filter - type: MetaData - - pos: -39.5,36.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 14940 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,44.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14941 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,31.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14942 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,34.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14943 - type: WallSolid - components: - - pos: 39.5,2.5 - parent: 60 - type: Transform -- uid: 14944 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14945 - type: ReinforcedWindow - components: - - pos: -40.5,37.5 - parent: 60 - type: Transform -- uid: 14946 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -27.5,46.5 - parent: 60 - type: Transform -- uid: 14947 - type: Grille - components: - - pos: -36.5,29.5 - parent: 60 - type: Transform -- uid: 14948 - type: Grille - components: - - pos: -35.5,43.5 - parent: 60 - type: Transform -- uid: 14949 - type: ReinforcedWindow - components: - - pos: -40.5,32.5 - parent: 60 - type: Transform -- uid: 14950 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -28.5,42.5 - parent: 60 - type: Transform -- uid: 14951 - type: Grille - components: - - pos: -32.5,29.5 - parent: 60 - type: Transform -- uid: 14952 - type: Grille - components: - - pos: -36.5,47.5 - parent: 60 - type: Transform -- uid: 14953 - type: ReinforcedWindow - components: - - pos: -37.5,29.5 - parent: 60 - type: Transform -- uid: 14954 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -32.5,42.5 - parent: 60 - type: Transform -- uid: 14955 - type: Grille - components: - - pos: -42.5,38.5 - parent: 60 - type: Transform -- uid: 14956 - type: Grille - components: - - pos: -40.5,47.5 - parent: 60 - type: Transform -- uid: 14957 - type: ReinforcedWindow - components: - - pos: -32.5,29.5 - parent: 60 - type: Transform -- uid: 14958 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -35.5,45.5 - parent: 60 - type: Transform -- uid: 14959 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -42.5,44.5 - parent: 60 - type: Transform -- uid: 14960 - type: Grille - components: - - pos: -40.5,43.5 - parent: 60 - type: Transform -- uid: 14961 - type: WallReinforced - components: - - pos: -42.5,39.5 - parent: 60 - type: Transform -- uid: 14962 - type: ReinforcedWindow - components: - - pos: -37.5,47.5 - parent: 60 - type: Transform -- uid: 14963 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -42.5,36.5 - parent: 60 - type: Transform -- uid: 14964 - type: Grille - components: - - pos: -40.5,39.5 - parent: 60 - type: Transform -- uid: 14965 - type: WallReinforced - components: - - pos: -42.5,35.5 - parent: 60 - type: Transform -- uid: 14966 - type: ReinforcedWindow - components: - - pos: -40.5,46.5 - parent: 60 - type: Transform -- uid: 14967 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -32.5,47.5 - parent: 60 - type: Transform -- uid: 14968 - type: Grille - components: - - pos: -40.5,35.5 - parent: 60 - type: Transform -- uid: 14969 - type: Grille - components: - - pos: -40.5,31.5 - parent: 60 - type: Transform -- uid: 14970 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -31.5,44.5 - parent: 60 - type: Transform -- uid: 14971 - type: ReinforcedWindow - components: - - pos: -40.5,42.5 - parent: 60 - type: Transform -- uid: 14972 - type: WallReinforced - components: - - pos: -44.5,33.5 - parent: 60 - type: Transform -- uid: 14973 - type: WallReinforced - components: - - pos: -44.5,31.5 - parent: 60 - type: Transform -- uid: 14974 - type: ReinforcedWindow - components: - - pos: -40.5,39.5 - parent: 60 - type: Transform -- uid: 14975 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -33.5,46.5 - parent: 60 - type: Transform -- uid: 14976 - type: Grille - components: - - pos: -38.5,29.5 - parent: 60 - type: Transform -- uid: 14977 - type: ReinforcedWindow - components: - - pos: -35.5,29.5 - parent: 60 - type: Transform -- uid: 14978 - type: WallReinforced - components: - - pos: -45.5,39.5 - parent: 60 - type: Transform -- uid: 14979 - type: WallReinforced - components: - - pos: -44.5,37.5 - parent: 60 - type: Transform -- uid: 14980 - type: WallReinforced - components: - - pos: -44.5,35.5 - parent: 60 - type: Transform -- uid: 14981 - type: WallReinforced - components: - - pos: -42.5,33.5 - parent: 60 - type: Transform -- uid: 14982 - type: WallReinforced - components: - - pos: -45.5,31.5 - parent: 60 - type: Transform -- uid: 14983 - type: WallReinforced - components: - - pos: -45.5,35.5 - parent: 60 - type: Transform -- uid: 14984 - type: WallReinforced - components: - - pos: -43.5,37.5 - parent: 60 - type: Transform -- uid: 14985 - type: WallReinforced - components: - - pos: -44.5,39.5 - parent: 60 - type: Transform -- uid: 14986 - type: ReinforcedWindow - components: - - pos: -34.5,29.5 - parent: 60 - type: Transform -- uid: 14987 - type: GasPipeStraight - components: - - pos: -33.5,29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14988 - type: ReinforcedWindow - components: - - pos: -40.5,34.5 - parent: 60 - type: Transform -- uid: 14989 - type: AtmosFixFreezerMarker - components: - - pos: 24.5,-28.5 - parent: 60 - type: Transform -- uid: 14990 - type: AtmosFixFreezerMarker - components: - - pos: 24.5,-27.5 - parent: 60 - type: Transform -- uid: 14991 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,41.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14992 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -45.5,33.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14993 - type: DrinkMugDog - components: - - pos: 4.4922695,21.481522 - parent: 60 - type: Transform -- uid: 14994 - type: AtmosFixFreezerMarker - components: - - pos: 24.5,-26.5 - parent: 60 - type: Transform -- uid: 14995 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,38.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14996 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,31.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14997 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -45.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14998 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -45.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14999 - type: GasPressurePump - components: - - desc: A pump that moves nitrous oxide by pressure. - name: n2o pump - type: MetaData - - rot: 1.5707963267948966 rad - pos: -39.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15000 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,41.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15001 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -45.5,31.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15002 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,40.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15003 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,44.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15004 - type: AtmosFixFreezerMarker - components: - - pos: 25.5,-28.5 - parent: 60 - type: Transform -- uid: 15005 - type: GasMixerFlipped - components: - - pos: -37.5,39.5 - parent: 60 - type: Transform - - inletTwoConcentration: 0 - inletOneConcentration: 1 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 15006 - type: AtmosFixFreezerMarker - components: - - pos: 25.5,-27.5 - parent: 60 - type: Transform -- uid: 15007 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -45.5,41.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15008 - type: GasPassiveVent - components: - - pos: -45.5,44.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15009 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -45.5,35.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15010 - type: GasPassiveVent - components: - - pos: -45.5,40.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15011 - type: GasPassiveVent - components: - - pos: -45.5,42.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15012 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15013 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,31.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15014 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -36.5,34.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15015 - type: Grille - components: - - pos: -35.5,29.5 - parent: 60 - type: Transform -- uid: 15016 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -27.5,44.5 - parent: 60 - type: Transform -- uid: 15017 - type: Grille - components: - - pos: -34.5,29.5 - parent: 60 - type: Transform -- uid: 15018 - type: Grille - components: - - pos: -35.5,45.5 - parent: 60 - type: Transform -- uid: 15019 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,46.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15020 - type: Grille - components: - - pos: -42.5,34.5 - parent: 60 - type: Transform -- uid: 15021 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -30.5,42.5 - parent: 60 - type: Transform -- uid: 15022 - type: Grille - components: - - pos: -42.5,32.5 - parent: 60 - type: Transform -- uid: 15023 - type: Grille - components: - - pos: -38.5,47.5 - parent: 60 - type: Transform -- uid: 15024 - type: Grille - components: - - pos: -42.5,40.5 - parent: 60 - type: Transform -- uid: 15025 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: -28.5,46.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15026 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,46.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15027 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -36.5,35.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15028 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -35.5,35.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15029 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -36.5,36.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15030 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -35.5,36.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15031 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -42.5,42.5 - parent: 60 - type: Transform -- uid: 15032 - type: CableApcExtension - components: - - pos: -25.5,46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15033 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -34.5,42.5 - parent: 60 - type: Transform -- uid: 15034 - type: Grille - components: - - pos: -42.5,42.5 - parent: 60 - type: Transform -- uid: 15035 - type: Grille - components: - - pos: -40.5,45.5 - parent: 60 - type: Transform -- uid: 15036 - type: Grille - components: - - pos: -40.5,41.5 - parent: 60 - type: Transform -- uid: 15037 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -42.5,40.5 - parent: 60 - type: Transform -- uid: 15038 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -35.5,43.5 - parent: 60 - type: Transform -- uid: 15039 - type: ReinforcedWindow - components: - - pos: -39.5,47.5 - parent: 60 - type: Transform -- uid: 15040 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -42.5,34.5 - parent: 60 - type: Transform -- uid: 15041 - type: Grille - components: - - pos: -40.5,37.5 - parent: 60 - type: Transform -- uid: 15042 - type: Grille - components: - - pos: -40.5,33.5 - parent: 60 - type: Transform -- uid: 15043 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -29.5,46.5 - parent: 60 - type: Transform -- uid: 15044 - type: ReinforcedWindow - components: - - pos: -40.5,44.5 - parent: 60 - type: Transform -- uid: 15045 - type: ReinforcedWindow - components: - - pos: -40.5,40.5 - parent: 60 - type: Transform -- uid: 15046 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -32.5,44.5 - parent: 60 - type: Transform -- uid: 15047 - type: Grille - components: - - pos: -39.5,29.5 - parent: 60 - type: Transform -- uid: 15048 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,46.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15049 - type: WallReinforced - components: - - pos: -23.5,47.5 - parent: 60 - type: Transform -- uid: 15050 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -35.5,34.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15051 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -42.5,32.5 - parent: 60 - type: Transform -- uid: 15052 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -29.5,45.5 - parent: 60 - type: Transform -- uid: 15053 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -33.5,34.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15054 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -33.5,35.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15055 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,35.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15056 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,35.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15057 - type: WallReinforced - components: - - pos: -46.5,43.5 - parent: 60 - type: Transform -- uid: 15058 - type: WallReinforced - components: - - pos: -46.5,41.5 - parent: 60 - type: Transform -- uid: 15059 - type: WallReinforced - components: - - pos: -46.5,38.5 - parent: 60 - type: Transform -- uid: 15060 - type: WallReinforced - components: - - pos: -46.5,35.5 - parent: 60 - type: Transform -- uid: 15061 - type: WallReinforced - components: - - pos: -46.5,32.5 - parent: 60 - type: Transform -- uid: 15062 - type: WallReinforced - components: - - pos: -47.5,44.5 - parent: 60 - type: Transform -- uid: 15063 - type: WallReinforced - components: - - pos: -47.5,41.5 - parent: 60 - type: Transform -- uid: 15064 - type: WallReinforced - components: - - pos: -47.5,38.5 - parent: 60 - type: Transform -- uid: 15065 - type: WallReinforced - components: - - pos: -47.5,35.5 - parent: 60 - type: Transform -- uid: 15066 - type: WallReinforced - components: - - pos: -47.5,32.5 - parent: 60 - type: Transform -- uid: 15067 - type: WallReinforced - components: - - pos: -33.5,44.5 - parent: 60 - type: Transform -- uid: 15068 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -27.5,47.5 - parent: 60 - type: Transform -- uid: 15069 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -35.5,42.5 - parent: 60 - type: Transform -- uid: 15070 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,45.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15071 - type: GasPassiveVent - components: - - pos: -39.5,48.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15072 - type: GasValve - components: - - name: mix to space - type: MetaData - - rot: -1.5707963267948966 rad - pos: -38.5,45.5 - parent: 60 - type: Transform - - open: False - type: GasValve - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15073 - type: GasPipeTJunction - components: - - pos: -37.5,45.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15074 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -39.5,45.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15075 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,33.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15076 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,37.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15077 - type: WallReinforced - components: - - pos: -46.5,42.5 - parent: 60 - type: Transform -- uid: 15078 - type: WallReinforced - components: - - pos: -46.5,40.5 - parent: 60 - type: Transform -- uid: 15079 - type: WallReinforced - components: - - pos: -46.5,37.5 - parent: 60 - type: Transform -- uid: 15080 - type: WallReinforced - components: - - pos: -46.5,34.5 - parent: 60 - type: Transform -- uid: 15081 - type: WallReinforced - components: - - pos: -46.5,31.5 - parent: 60 - type: Transform -- uid: 15082 - type: WallReinforced - components: - - pos: -47.5,43.5 - parent: 60 - type: Transform -- uid: 15083 - type: WallReinforced - components: - - pos: -47.5,40.5 - parent: 60 - type: Transform -- uid: 15084 - type: WallReinforced - components: - - pos: -47.5,37.5 - parent: 60 - type: Transform -- uid: 15085 - type: WallReinforced - components: - - pos: -47.5,34.5 - parent: 60 - type: Transform -- uid: 15086 - type: WallReinforced - components: - - pos: -47.5,31.5 - parent: 60 - type: Transform -- uid: 15087 - type: WallReinforced - components: - - pos: -33.5,47.5 - parent: 60 - type: Transform -- uid: 15088 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -27.5,42.5 - parent: 60 - type: Transform -- uid: 15089 - type: BlastDoor - components: - - pos: -31.5,47.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14914 - - port: Pressed - uid: 14913 - type: SignalReceiver -- uid: 15090 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,45.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15091 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,47.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15092 - type: GasPipeStraight - components: - - pos: -37.5,44.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15093 - type: GasValve - components: - - name: waste valve - type: MetaData - - rot: 3.141592653589793 rad - pos: -39.5,46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15094 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,42.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15095 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -19.5,33.5 - parent: 60 - type: Transform -- uid: 15096 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -23.5,32.5 - parent: 60 - type: Transform -- uid: 15097 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -22.5,33.5 - parent: 60 - type: Transform -- uid: 15098 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -20.5,33.5 - parent: 60 - type: Transform -- uid: 15099 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15100 - type: AtmosFixFreezerMarker - components: - - pos: 25.5,-26.5 - parent: 60 - type: Transform -- uid: 15101 - type: GasMixerFlipped - components: - - pos: -37.5,41.5 - parent: 60 - type: Transform - - inletTwoConcentration: 0 - inletOneConcentration: 1 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 15102 - type: GasPassiveVent - components: - - pos: -45.5,32.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15103 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15104 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15105 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,33.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15106 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,35.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15107 - type: GasPressurePump - components: - - desc: A pump that moves oxygen by pressure. - name: o2 pump - type: MetaData - - rot: 1.5707963267948966 rad - pos: -39.5,33.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15108 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,38.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15109 - type: GasPipeStraight - components: - - pos: -39.5,35.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15110 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -33.5,28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15111 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,30.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15112 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -35.5,31.5 - parent: 60 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15113 - type: GasPipeFourway - components: - - pos: -33.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15114 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,36.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15115 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,37.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15116 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,30.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15117 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15118 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,40.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15119 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,30.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15120 - type: Grille - components: - - pos: -22.5,33.5 - parent: 60 - type: Transform -- uid: 15121 - type: ReinforcedWindow - components: - - pos: -39.5,29.5 - parent: 60 - type: Transform -- uid: 15122 - type: GasPipeStraight - components: - - pos: -39.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15123 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,32.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15124 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,40.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15125 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,37.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15126 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,42.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15127 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,44.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15128 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,40.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15129 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,32.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15130 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,34.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15131 - type: GasPressurePump - components: - - desc: A pump that moves water vapor by pressure. - name: h2o pump - type: MetaData - - rot: 1.5707963267948966 rad - pos: -39.5,37.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15132 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,37.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15133 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,36.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15134 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,31.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15135 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,33.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15136 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,42.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15137 - type: GasFilterFlipped - components: - - name: plasma filter - type: MetaData - - pos: -39.5,40.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15138 - type: GasFilterFlipped - components: - - name: n2 filter - type: MetaData - - pos: -39.5,32.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15139 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -31.5,28.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15140 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -39.5,30.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15141 - type: AirlockAtmosphericsGlassLocked - components: - - name: Super Matter Engine - type: MetaData - - pos: -21.5,33.5 - parent: 60 - type: Transform -- uid: 15142 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -34.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15143 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -34.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15144 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15145 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -32.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15146 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,36.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15147 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,34.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15148 - type: GasFilterFlipped - components: - - name: n2o filter - type: MetaData - - pos: -39.5,44.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15149 - type: GasPipeStraight - components: - - pos: -39.5,33.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15150 - type: GasValve - components: - - desc: Emergency valve used to dump the wastenets contents into space. - name: emergency waste valve - type: MetaData - - rot: 1.5707963267948966 rad - pos: -32.5,28.5 - parent: 60 - type: Transform - - open: False - type: GasValve - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15151 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,30.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15152 - type: Grille - components: - - pos: -20.5,33.5 - parent: 60 - type: Transform -- uid: 15153 - type: GasPipeStraight - components: - - pos: -39.5,41.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15154 - type: GasPipeStraight - components: - - pos: -39.5,31.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15155 - type: GasFilterFlipped - components: - - name: h2o filter - type: MetaData - - pos: -39.5,38.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15156 - type: GasFilterFlipped - components: - - name: tritium filter - type: MetaData - - pos: -39.5,42.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15157 - type: GasPipeStraight - components: - - pos: -39.5,37.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15158 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -35.5,37.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15159 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -33.5,37.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15160 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -34.5,40.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15161 - type: GasPipeStraight - components: - - pos: -34.5,38.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15162 - type: GasPipeStraight - components: - - pos: -34.5,39.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15163 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,40.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15164 - type: GasPressurePump - components: - - name: to mix ports - type: MetaData - - rot: -1.5707963267948966 rad - pos: -32.5,40.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15165 - type: WallReinforced - components: - - pos: -25.5,37.5 - parent: 60 - type: Transform -- uid: 15166 - type: AirlockAtmosphericsLocked - components: - - name: Atmos Secure Storage - type: MetaData - - pos: -29.5,37.5 - parent: 60 - type: Transform -- uid: 15167 - type: WallReinforced - components: - - pos: -27.5,37.5 - parent: 60 - type: Transform -- uid: 15168 - type: WallReinforced - components: - - pos: -26.5,37.5 - parent: 60 - type: Transform -- uid: 15169 - type: WallReinforced - components: - - pos: -28.5,37.5 - parent: 60 - type: Transform -- uid: 15170 - type: SignNosmoking - components: - - pos: -27.5,37.5 - parent: 60 - type: Transform -- uid: 15171 - type: SignCanisters - components: - - pos: -28.5,37.5 - parent: 60 - type: Transform -- uid: 15172 - type: OxygenCanister - components: - - pos: -24.5,36.5 - parent: 60 - type: Transform -- uid: 15173 - type: OxygenCanister - components: - - pos: -24.5,35.5 - parent: 60 - type: Transform -- uid: 15174 - type: NitrogenCanister - components: - - pos: -25.5,36.5 - parent: 60 - type: Transform -- uid: 15175 - type: NitrogenCanister - components: - - pos: -25.5,35.5 - parent: 60 - type: Transform -- uid: 15176 - type: AtmosFixFreezerMarker - components: - - pos: 26.5,-28.5 - parent: 60 - type: Transform -- uid: 15177 - type: WaterVaporCanister - components: - - pos: -27.5,36.5 - parent: 60 - type: Transform -- uid: 15178 - type: StorageCanister - components: - - pos: -28.5,36.5 - parent: 60 - type: Transform -- uid: 15179 - type: StorageCanister - components: - - pos: -28.5,35.5 - parent: 60 - type: Transform -- uid: 15180 - type: StorageCanister - components: - - pos: -32.5,34.5 - parent: 60 - type: Transform -- uid: 15181 - type: StorageCanister - components: - - pos: -32.5,35.5 - parent: 60 - type: Transform -- uid: 15182 - type: StorageCanister - components: - - pos: -32.5,36.5 - parent: 60 - type: Transform -- uid: 15183 - type: VendingMachineAtmosDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -24.5,32.5 - parent: 60 - type: Transform -- uid: 15184 - type: LockerAtmosphericsFilled - components: - - pos: -25.5,32.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15185 - type: LockerAtmosphericsFilled - components: - - pos: -26.5,32.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15186 - type: LockerAtmosphericsFilled - components: - - pos: -27.5,32.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15187 - type: PlaqueAtmos - components: - - pos: -27.5,33.5 - parent: 60 - type: Transform -- uid: 15188 - type: PosterContrabandAtmosiaDeclarationIndependence - components: - - pos: -29.5,33.5 - parent: 60 - type: Transform -- uid: 15189 - type: Table - components: - - pos: -30.5,32.5 - parent: 60 - type: Transform -- uid: 15190 - type: Table - components: - - pos: -29.5,32.5 - parent: 60 - type: Transform -- uid: 15191 - type: Rack - components: - - pos: -28.5,32.5 - parent: 60 - type: Transform -- uid: 15192 - type: ClothingHandsGlovesCombat - components: - - pos: -28.51308,32.542072 - parent: 60 - type: Transform -- uid: 15193 - type: ClothingShoesBootsMag - components: - - pos: -28.51308,32.463947 - parent: 60 - type: Transform -- uid: 15194 - type: InflatableWallStack - components: - - pos: -30.57607,32.667072 - parent: 60 - type: Transform -- uid: 15195 - type: InflatableWallStack - components: - - pos: -30.57607,32.667072 - parent: 60 - type: Transform -- uid: 15196 - type: InflatableDoorStack - components: - - pos: -30.404196,32.495197 - parent: 60 - type: Transform -- uid: 15197 - type: InflatableDoorStack - components: - - pos: -30.404196,32.495197 - parent: 60 - type: Transform -- uid: 15198 - type: PartRodMetal - components: - - pos: -29.907173,32.588947 - parent: 60 - type: Transform -- uid: 15199 - type: PartRodMetal - components: - - pos: -29.907173,32.588947 - parent: 60 - type: Transform -- uid: 15200 - type: SheetSteel - components: - - pos: -29.391548,32.510822 - parent: 60 - type: Transform -- uid: 15201 - type: SheetSteel - components: - - pos: -29.391548,32.510822 - parent: 60 - type: Transform -- uid: 15202 - type: WeldingFuelTankFull - components: - - pos: -32.5,32.5 - parent: 60 - type: Transform -- uid: 15203 - type: GasMinerNitrogen - components: - - rot: -1.5707963267948966 rad - pos: -44.5,32.5 - parent: 60 - type: Transform - - maxExternalPressure: 4500 - type: GasMiner -- uid: 15204 - type: GasMinerOxygen - components: - - rot: -1.5707963267948966 rad - pos: -44.5,34.5 - parent: 60 - type: Transform - - maxExternalPressure: 4500 - type: GasMiner -- uid: 15205 - type: GasMinerCarbonDioxide - components: - - rot: -1.5707963267948966 rad - pos: -44.5,36.5 - parent: 60 - type: Transform -- uid: 15206 - type: GasMinerWaterVapor - components: - - rot: -1.5707963267948966 rad - pos: -44.5,38.5 - parent: 60 - type: Transform -- uid: 15207 - type: GasMinerPlasma - components: - - rot: -1.5707963267948966 rad - pos: -44.5,40.5 - parent: 60 - type: Transform -- uid: 15208 - type: StorageCanister - components: - - pos: -45.5,42.5 - parent: 60 - type: Transform -- uid: 15209 - type: AtmosFixNitrogenMarker - components: - - pos: -43.5,32.5 - parent: 60 - type: Transform -- uid: 15210 - type: AtmosFixNitrogenMarker - components: - - pos: -44.5,32.5 - parent: 60 - type: Transform -- uid: 15211 - type: AtmosFixNitrogenMarker - components: - - pos: -45.5,32.5 - parent: 60 - type: Transform -- uid: 15212 - type: AtmosFixOxygenMarker - components: - - pos: -45.5,34.5 - parent: 60 - type: Transform -- uid: 15213 - type: AtmosFixOxygenMarker - components: - - pos: -44.5,34.5 - parent: 60 - type: Transform -- uid: 15214 - type: AtmosFixOxygenMarker - components: - - pos: -43.5,34.5 - parent: 60 - type: Transform -- uid: 15215 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,36.5 - parent: 60 - type: Transform -- uid: 15216 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,36.5 - parent: 60 - type: Transform -- uid: 15217 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,36.5 - parent: 60 - type: Transform -- uid: 15218 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,38.5 - parent: 60 - type: Transform -- uid: 15219 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,38.5 - parent: 60 - type: Transform -- uid: 15220 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,38.5 - parent: 60 - type: Transform -- uid: 15221 - type: AtmosFixPlasmaMarker - components: - - pos: -43.5,40.5 - parent: 60 - type: Transform -- uid: 15222 - type: AtmosFixPlasmaMarker - components: - - pos: -44.5,40.5 - parent: 60 - type: Transform -- uid: 15223 - type: AtmosFixPlasmaMarker - components: - - pos: -45.5,40.5 - parent: 60 - type: Transform -- uid: 15224 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,42.5 - parent: 60 - type: Transform -- uid: 15225 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,42.5 - parent: 60 - type: Transform -- uid: 15226 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,42.5 - parent: 60 - type: Transform -- uid: 15227 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,44.5 - parent: 60 - type: Transform -- uid: 15228 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,44.5 - parent: 60 - type: Transform -- uid: 15229 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,44.5 - parent: 60 - type: Transform -- uid: 15230 - type: AtmosFixBlockerMarker - components: - - pos: -32.5,45.5 - parent: 60 - type: Transform -- uid: 15231 - type: AtmosFixBlockerMarker - components: - - pos: -32.5,46.5 - parent: 60 - type: Transform -- uid: 15232 - type: AtmosFixBlockerMarker - components: - - pos: -31.5,46.5 - parent: 60 - type: Transform -- uid: 15233 - type: AtmosFixBlockerMarker - components: - - pos: -30.5,46.5 - parent: 60 - type: Transform -- uid: 15234 - type: AtmosFixBlockerMarker - components: - - pos: -30.5,45.5 - parent: 60 - type: Transform -- uid: 15235 - type: AtmosFixBlockerMarker - components: - - pos: -31.5,45.5 - parent: 60 - type: Transform -- uid: 15236 - type: WarningWaste - components: - - pos: -46.5,38.5 - parent: 60 - type: Transform -- uid: 15237 - type: WarningO2 - components: - - pos: -46.5,34.5 - parent: 60 - type: Transform -- uid: 15238 - type: WarningCO2 - components: - - pos: -46.5,36.5 - parent: 60 - type: Transform -- uid: 15239 - type: WarningN2 - components: - - pos: -46.5,32.5 - parent: 60 - type: Transform -- uid: 15240 - type: WarningN2O - components: - - pos: -46.5,44.5 - parent: 60 - type: Transform -- uid: 15241 - type: PlasmaCanister - components: - - pos: -45.5,40.5 - parent: 60 - type: Transform -- uid: 15242 - type: WarningPlasma - components: - - pos: -46.5,40.5 - parent: 60 - type: Transform -- uid: 15243 - type: WarningTritium - components: - - pos: -46.5,42.5 - parent: 60 - type: Transform -- uid: 15244 - type: WaterVaporCanister - components: - - pos: -45.5,38.5 - parent: 60 - type: Transform -- uid: 15245 - type: CarbonDioxideCanister - components: - - pos: -45.5,36.5 - parent: 60 - type: Transform -- uid: 15246 - type: OxygenCanister - components: - - pos: -45.5,34.5 - parent: 60 - type: Transform -- uid: 15247 - type: StorageCanister - components: - - pos: -45.5,44.5 - parent: 60 - type: Transform -- uid: 15248 - type: NitrogenCanister - components: - - pos: -45.5,32.5 - parent: 60 - type: Transform -- uid: 15249 - type: Poweredlight - components: - - pos: -44.5,34.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15250 - type: Poweredlight - components: - - pos: -44.5,36.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15251 - type: Poweredlight - components: - - pos: -44.5,38.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15252 - type: Poweredlight - components: - - pos: -44.5,40.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15253 - type: Poweredlight - components: - - pos: -44.5,42.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15254 - type: Poweredlight - components: - - pos: -44.5,44.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15255 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,41.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15256 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,45.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15257 - type: Poweredlight - components: - - pos: -35.5,41.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15258 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,37.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15259 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,33.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15260 - type: WallReinforced - components: - - pos: -27.5,41.5 - parent: 60 - type: Transform -- uid: 15261 - type: SignalButton - components: - - pos: -23.5,37.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 14912 - - port: Toggle - uid: 14911 - - port: Toggle - uid: 14910 - type: SignalTransmitter -- uid: 15262 - type: SignSecureMed - components: - - pos: -23.5,38.5 - parent: 60 - type: Transform -- uid: 15263 - type: Poweredlight - components: - - pos: -29.5,32.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15264 - type: Poweredlight - components: - - pos: -25.5,32.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15265 - type: ReinforcedPlasmaWindow - components: - - pos: -15.5,31.5 - parent: 60 - type: Transform -- uid: 15266 - type: Poweredlight - components: - - pos: -19.5,30.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15267 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,31.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15268 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,37.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15269 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,33.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15270 - type: Poweredlight - components: - - pos: -30.5,46.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15271 - type: Poweredlight - components: - - pos: -32.5,46.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15272 - type: WallReinforced - components: - - pos: -17.5,38.5 - parent: 60 - type: Transform -- uid: 15273 - type: WallReinforced - components: - - pos: -15.5,38.5 - parent: 60 - type: Transform -- uid: 15274 - type: WallReinforced - components: - - pos: -14.5,38.5 - parent: 60 - type: Transform -- uid: 15275 - type: WallReinforced - components: - - pos: -14.5,39.5 - parent: 60 - type: Transform -- uid: 15276 - type: WallReinforced - components: - - pos: -14.5,40.5 - parent: 60 - type: Transform -- uid: 15277 - type: WallReinforced - components: - - pos: -15.5,40.5 - parent: 60 - type: Transform -- uid: 15278 - type: WallReinforced - components: - - pos: -18.5,38.5 - parent: 60 - type: Transform -- uid: 15279 - type: WallReinforced - components: - - pos: -18.5,39.5 - parent: 60 - type: Transform -- uid: 15280 - type: WallReinforced - components: - - pos: -18.5,40.5 - parent: 60 - type: Transform -- uid: 15281 - type: WallReinforced - components: - - pos: -17.5,40.5 - parent: 60 - type: Transform -- uid: 15282 - type: WallReinforced - components: - - pos: -19.5,40.5 - parent: 60 - type: Transform -- uid: 15283 - type: WallReinforced - components: - - pos: -20.5,40.5 - parent: 60 - type: Transform -- uid: 15284 - type: WallReinforced - components: - - pos: -13.5,40.5 - parent: 60 - type: Transform -- uid: 15285 - type: WallReinforced - components: - - pos: -12.5,40.5 - parent: 60 - type: Transform -- uid: 15286 - type: WallReinforced - components: - - pos: -12.5,44.5 - parent: 60 - type: Transform -- uid: 15287 - type: WallReinforced - components: - - pos: -13.5,44.5 - parent: 60 - type: Transform -- uid: 15288 - type: WallReinforced - components: - - pos: -14.5,44.5 - parent: 60 - type: Transform -- uid: 15289 - type: WallReinforced - components: - - pos: -15.5,44.5 - parent: 60 - type: Transform -- uid: 15290 - type: WallReinforced - components: - - pos: -17.5,44.5 - parent: 60 - type: Transform -- uid: 15291 - type: WallReinforced - components: - - pos: -18.5,44.5 - parent: 60 - type: Transform -- uid: 15292 - type: WallReinforced - components: - - pos: -19.5,44.5 - parent: 60 - type: Transform -- uid: 15293 - type: WallReinforced - components: - - pos: -20.5,44.5 - parent: 60 - type: Transform -- uid: 15294 - type: ReinforcedPlasmaWindow - components: - - pos: -15.5,47.5 - parent: 60 - type: Transform -- uid: 15295 - type: ReinforcedPlasmaWindow - components: - - pos: -16.5,47.5 - parent: 60 - type: Transform -- uid: 15296 - type: ReinforcedPlasmaWindow - components: - - pos: -17.5,47.5 - parent: 60 - type: Transform -- uid: 15297 - type: WallReinforced - components: - - pos: -19.5,47.5 - parent: 60 - type: Transform -- uid: 15298 - type: WallReinforced - components: - - pos: -18.5,47.5 - parent: 60 - type: Transform -- uid: 15299 - type: WallReinforced - components: - - pos: -23.5,48.5 - parent: 60 - type: Transform -- uid: 15300 - type: WallReinforced - components: - - pos: -23.5,49.5 - parent: 60 - type: Transform -- uid: 15301 - type: ReinforcedPlasmaWindow - components: - - pos: -20.5,47.5 - parent: 60 - type: Transform -- uid: 15302 - type: WallReinforced - components: - - pos: -14.5,47.5 - parent: 60 - type: Transform -- uid: 15303 - type: WallReinforced - components: - - pos: -13.5,47.5 - parent: 60 - type: Transform -- uid: 15304 - type: ReinforcedPlasmaWindow - components: - - pos: -22.5,47.5 - parent: 60 - type: Transform -- uid: 15305 - type: ReinforcedPlasmaWindow - components: - - pos: -10.5,47.5 - parent: 60 - type: Transform -- uid: 15306 - type: ReinforcedPlasmaWindow - components: - - pos: -12.5,47.5 - parent: 60 - type: Transform -- uid: 15307 - type: WallReinforced - components: - - pos: -9.5,47.5 - parent: 60 - type: Transform -- uid: 15308 - type: WallReinforced - components: - - pos: -9.5,46.5 - parent: 60 - type: Transform -- uid: 15309 - type: WallReinforced - components: - - pos: -9.5,45.5 - parent: 60 - type: Transform -- uid: 15310 - type: WallReinforced - components: - - pos: -9.5,44.5 - parent: 60 - type: Transform -- uid: 15311 - type: WallReinforced - components: - - pos: -9.5,43.5 - parent: 60 - type: Transform -- uid: 15312 - type: WallReinforced - components: - - pos: -9.5,42.5 - parent: 60 - type: Transform -- uid: 15313 - type: WallReinforced - components: - - pos: -9.5,41.5 - parent: 60 - type: Transform -- uid: 15314 - type: WallReinforced - components: - - pos: -9.5,40.5 - parent: 60 - type: Transform -- uid: 15315 - type: WallReinforced - components: - - pos: -9.5,39.5 - parent: 60 - type: Transform -- uid: 15316 - type: WallReinforced - components: - - pos: -9.5,38.5 - parent: 60 - type: Transform -- uid: 15317 - type: WallReinforced - components: - - pos: -9.5,37.5 - parent: 60 - type: Transform -- uid: 15318 - type: WallSolid - components: - - pos: -32.5,33.5 - parent: 60 - type: Transform -- uid: 15319 - type: ReinforcedPlasmaWindow - components: - - pos: -9.5,34.5 - parent: 60 - type: Transform -- uid: 15320 - type: ReinforcedPlasmaWindow - components: - - pos: -9.5,35.5 - parent: 60 - type: Transform -- uid: 15321 - type: WallReinforced - components: - - pos: -9.5,33.5 - parent: 60 - type: Transform -- uid: 15322 - type: WallReinforced - components: - - pos: -23.5,50.5 - parent: 60 - type: Transform -- uid: 15323 - type: WallReinforced - components: - - pos: -23.5,51.5 - parent: 60 - type: Transform -- uid: 15324 - type: WallReinforced - components: - - pos: -9.5,48.5 - parent: 60 - type: Transform -- uid: 15325 - type: WallReinforced - components: - - pos: -9.5,49.5 - parent: 60 - type: Transform -- uid: 15326 - type: WallReinforced - components: - - pos: -9.5,50.5 - parent: 60 - type: Transform -- uid: 15327 - type: WallReinforced - components: - - pos: -9.5,51.5 - parent: 60 - type: Transform -- uid: 15328 - type: WallReinforced - components: - - pos: -10.5,51.5 - parent: 60 - type: Transform -- uid: 15329 - type: WallReinforced - components: - - pos: -10.5,52.5 - parent: 60 - type: Transform -- uid: 15330 - type: WallReinforced - components: - - pos: -11.5,52.5 - parent: 60 - type: Transform -- uid: 15331 - type: WallReinforced - components: - - pos: -12.5,52.5 - parent: 60 - type: Transform -- uid: 15332 - type: WallReinforced - components: - - pos: -13.5,52.5 - parent: 60 - type: Transform -- uid: 15333 - type: WallReinforced - components: - - pos: -14.5,52.5 - parent: 60 - type: Transform -- uid: 15334 - type: WallReinforced - components: - - pos: -15.5,52.5 - parent: 60 - type: Transform -- uid: 15335 - type: WallReinforced - components: - - pos: -16.5,52.5 - parent: 60 - type: Transform -- uid: 15336 - type: WallReinforced - components: - - pos: -17.5,52.5 - parent: 60 - type: Transform -- uid: 15337 - type: WallReinforced - components: - - pos: -18.5,52.5 - parent: 60 - type: Transform -- uid: 15338 - type: WallReinforced - components: - - pos: -19.5,52.5 - parent: 60 - type: Transform -- uid: 15339 - type: WallReinforced - components: - - pos: -20.5,52.5 - parent: 60 - type: Transform -- uid: 15340 - type: WallReinforced - components: - - pos: -22.5,51.5 - parent: 60 - type: Transform -- uid: 15341 - type: WallReinforced - components: - - pos: -21.5,52.5 - parent: 60 - type: Transform -- uid: 15342 - type: WallReinforced - components: - - pos: -22.5,52.5 - parent: 60 - type: Transform -- uid: 15343 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -15.5,41.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15344 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -15.5,42.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15345 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -15.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15346 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -17.5,41.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15347 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -17.5,42.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15348 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -17.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15349 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: -17.5,39.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15350 - type: GasPressurePump - components: - - pos: -15.5,39.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15351 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -16.5,37.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15352 - type: GasPressurePump - components: - - pos: -19.5,38.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15353 - type: GasPressurePump - components: - - pos: -20.5,38.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15354 - type: GasPort - components: - - pos: -19.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15355 - type: GasPort - components: - - pos: -20.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15356 - type: GasPort - components: - - pos: -13.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15357 - type: GasPort - components: - - pos: -12.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15358 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -13.5,38.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15359 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -12.5,38.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15360 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -18.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15361 - type: GasPipeBend - components: - - pos: -14.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15362 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -15.5,40.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15363 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -14.5,40.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15364 - type: GasPipeBend - components: - - pos: -17.5,40.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15365 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -18.5,40.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15366 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -18.5,41.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15367 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -18.5,42.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15368 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -14.5,41.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15369 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -14.5,42.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 15370 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,38.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15371 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,38.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15372 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -17.5,37.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15373 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -15.5,37.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15374 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -19.5,37.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15375 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -20.5,37.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15376 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,37.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15377 - type: GasFilterFlipped - components: - - rot: -1.5707963267948966 rad - pos: -13.5,37.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15378 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,37.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15379 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -11.5,37.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15380 - type: GasPipeBend - components: - - pos: -11.5,46.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15381 - type: GasPipeStraight - components: - - pos: -11.5,38.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15382 - type: GasPipeStraight - components: - - pos: -11.5,39.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15383 - type: GasPipeStraight - components: - - pos: -11.5,40.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15384 - type: GasPipeStraight - components: - - pos: -11.5,41.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15385 - type: GasPipeStraight - components: - - pos: -11.5,42.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15386 - type: GasPipeStraight - components: - - pos: -11.5,43.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15387 - type: GasPipeStraight - components: - - pos: -11.5,44.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15388 - type: GasPipeStraight - components: - - pos: -11.5,45.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15389 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,37.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15390 - type: GasFilterFlipped - components: - - rot: 1.5707963267948966 rad - pos: -12.5,46.5 - parent: 60 - type: Transform - - color: '#34EB3DFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15391 - type: GasFilterFlipped - components: - - rot: 1.5707963267948966 rad - pos: -14.5,46.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15392 - type: GasFilterFlipped - components: - - rot: 1.5707963267948966 rad - pos: -18.5,46.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15393 - type: GasFilterFlipped - components: - - rot: 1.5707963267948966 rad - pos: -20.5,46.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15394 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,46.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15395 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,46.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15396 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,46.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15397 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,46.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15398 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,46.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15399 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,46.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15400 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,46.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15401 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -18.5,45.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15402 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -20.5,45.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15403 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,45.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15404 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,45.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15405 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,45.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15406 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,45.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15407 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,45.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15408 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,40.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15409 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -21.5,37.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15410 - type: GasPipeStraight - components: - - pos: -21.5,38.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15411 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -21.5,39.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15412 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -22.5,44.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15413 - type: GasPipeStraight - components: - - pos: -21.5,41.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15414 - type: GasPressurePump - components: - - pos: -21.5,42.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15415 - type: GasPipeStraight - components: - - pos: -21.5,43.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15416 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -21.5,44.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15417 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -24.5,47.5 - parent: 60 - type: Transform -- uid: 15418 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -26.5,47.5 - parent: 60 - type: Transform -- uid: 15419 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,46.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15420 - type: CableApcExtension - components: - - pos: -25.5,48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15421 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -18.5,41.5 - parent: 60 - type: Transform -- uid: 15422 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -18.5,42.5 - parent: 60 - type: Transform -- uid: 15423 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -18.5,43.5 - parent: 60 - type: Transform -- uid: 15424 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -14.5,41.5 - parent: 60 - type: Transform -- uid: 15425 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -14.5,42.5 - parent: 60 - type: Transform -- uid: 15426 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -14.5,43.5 - parent: 60 - type: Transform -- uid: 15427 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -16.5,44.5 - parent: 60 - type: Transform -- uid: 15428 - type: RadiationCollector - components: - - pos: -19.5,41.5 - parent: 60 - type: Transform -- uid: 15429 - type: RadiationCollector - components: - - pos: -19.5,42.5 - parent: 60 - type: Transform -- uid: 15430 - type: RadiationCollector - components: - - pos: -19.5,43.5 - parent: 60 - type: Transform -- uid: 15431 - type: RadiationCollector - components: - - pos: -13.5,41.5 - parent: 60 - type: Transform -- uid: 15432 - type: RadiationCollector - components: - - pos: -13.5,42.5 - parent: 60 - type: Transform -- uid: 15433 - type: RadiationCollector - components: - - pos: -13.5,43.5 - parent: 60 - type: Transform -- uid: 15434 - type: AirlockEngineeringGlassLocked - components: - - pos: -16.5,38.5 - parent: 60 - type: Transform -- uid: 15435 - type: AirlockEngineeringGlassLocked - components: - - pos: -16.5,40.5 - parent: 60 - type: Transform -- uid: 15436 - type: ShuttersRadiation - components: - - pos: -20.5,41.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15653 - type: SignalReceiver -- uid: 15437 - type: ShuttersRadiation - components: - - pos: -20.5,42.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15653 - type: SignalReceiver -- uid: 15438 - type: ShuttersRadiation - components: - - pos: -20.5,43.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15653 - type: SignalReceiver -- uid: 15439 - type: ShuttersRadiation - components: - - pos: -12.5,41.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15654 - type: SignalReceiver -- uid: 15440 - type: ShuttersRadiation - components: - - pos: -12.5,42.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15654 - type: SignalReceiver -- uid: 15441 - type: ShuttersRadiation - components: - - pos: -12.5,43.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15654 - type: SignalReceiver -- uid: 15442 - type: CableHV - components: - - pos: -19.5,41.5 - parent: 60 - type: Transform -- uid: 15443 - type: CableHV - components: - - pos: -19.5,42.5 - parent: 60 - type: Transform -- uid: 15444 - type: CableHV - components: - - pos: -19.5,43.5 - parent: 60 - type: Transform -- uid: 15445 - type: CableHV - components: - - pos: -13.5,41.5 - parent: 60 - type: Transform -- uid: 15446 - type: CableHV - components: - - pos: -13.5,42.5 - parent: 60 - type: Transform -- uid: 15447 - type: CableHV - components: - - pos: -13.5,43.5 - parent: 60 - type: Transform -- uid: 15448 - type: CableHV - components: - - pos: -12.5,42.5 - parent: 60 - type: Transform -- uid: 15449 - type: CableHV - components: - - pos: -11.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15450 - type: CableHV - components: - - pos: -10.5,42.5 - parent: 60 - type: Transform -- uid: 15451 - type: CableHV - components: - - pos: -19.5,42.5 - parent: 60 - type: Transform -- uid: 15452 - type: CableHV - components: - - pos: -20.5,42.5 - parent: 60 - type: Transform -- uid: 15453 - type: CableHV - components: - - pos: -21.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15454 - type: CableHV - components: - - pos: -22.5,42.5 - parent: 60 - type: Transform -- uid: 15455 - type: CableHV - components: - - pos: -22.5,41.5 - parent: 60 - type: Transform -- uid: 15456 - type: CableHV - components: - - pos: -22.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15457 - type: CableHV - components: - - pos: -22.5,39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15458 - type: CableHV - components: - - pos: -22.5,38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15459 - type: CableHV - components: - - pos: -22.5,37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15460 - type: CableHV - components: - - pos: -22.5,36.5 - parent: 60 - type: Transform -- uid: 15461 - type: CableHV - components: - - pos: -22.5,35.5 - parent: 60 - type: Transform -- uid: 15462 - type: CableHV - components: - - pos: -10.5,41.5 - parent: 60 - type: Transform -- uid: 15463 - type: CableHV - components: - - pos: -10.5,40.5 - parent: 60 - type: Transform -- uid: 15464 - type: CableHV - components: - - pos: -10.5,39.5 - parent: 60 - type: Transform -- uid: 15465 - type: CableHV - components: - - pos: -10.5,38.5 - parent: 60 - type: Transform -- uid: 15466 - type: CableHV - components: - - pos: -10.5,37.5 - parent: 60 - type: Transform -- uid: 15467 - type: CableHV - components: - - pos: -10.5,36.5 - parent: 60 - type: Transform -- uid: 15468 - type: CableHV - components: - - pos: -10.5,35.5 - parent: 60 - type: Transform -- uid: 15469 - type: CableHV - components: - - pos: -11.5,35.5 - parent: 60 - type: Transform -- uid: 15470 - type: CableHV - components: - - pos: -12.5,35.5 - parent: 60 - type: Transform -- uid: 15471 - type: CableHV - components: - - pos: -13.5,35.5 - parent: 60 - type: Transform -- uid: 15472 - type: CableHV - components: - - pos: -14.5,35.5 - parent: 60 - type: Transform -- uid: 15473 - type: CableHV - components: - - pos: -15.5,35.5 - parent: 60 - type: Transform -- uid: 15474 - type: CableHV - components: - - pos: -16.5,35.5 - parent: 60 - type: Transform -- uid: 15475 - type: CableHV - components: - - pos: -17.5,35.5 - parent: 60 - type: Transform -- uid: 15476 - type: CableHV - components: - - pos: -18.5,35.5 - parent: 60 - type: Transform -- uid: 15477 - type: CableHV - components: - - pos: -19.5,35.5 - parent: 60 - type: Transform -- uid: 15478 - type: CableHV - components: - - pos: -20.5,35.5 - parent: 60 - type: Transform -- uid: 15479 - type: CableHV - components: - - pos: -21.5,35.5 - parent: 60 - type: Transform -- uid: 15480 - type: Grille - components: - - pos: -16.5,44.5 - parent: 60 - type: Transform -- uid: 15481 - type: Grille - components: - - pos: -22.5,47.5 - parent: 60 - type: Transform -- uid: 15482 - type: Grille - components: - - pos: -20.5,47.5 - parent: 60 - type: Transform -- uid: 15483 - type: Grille - components: - - pos: -16.5,47.5 - parent: 60 - type: Transform -- uid: 15484 - type: Grille - components: - - pos: -17.5,47.5 - parent: 60 - type: Transform -- uid: 15485 - type: Grille - components: - - pos: -15.5,47.5 - parent: 60 - type: Transform -- uid: 15486 - type: Grille - components: - - pos: -12.5,47.5 - parent: 60 - type: Transform -- uid: 15487 - type: Grille - components: - - pos: -10.5,47.5 - parent: 60 - type: Transform -- uid: 15488 - type: AirlockEngineeringGlassLocked - components: - - pos: -21.5,47.5 - parent: 60 - type: Transform -- uid: 15489 - type: AirlockEngineeringGlassLocked - components: - - pos: -11.5,47.5 - parent: 60 - type: Transform -- uid: 15490 - type: AirlockEngineeringGlassLocked - components: - - name: Super Matter Engine - type: MetaData - - pos: -11.5,33.5 - parent: 60 - type: Transform -- uid: 15491 - type: ReinforcedPlasmaWindow - components: - - pos: -12.5,33.5 - parent: 60 - type: Transform -- uid: 15492 - type: ReinforcedPlasmaWindow - components: - - pos: -10.5,33.5 - parent: 60 - type: Transform -- uid: 15493 - type: WallReinforced - components: - - pos: -13.5,32.5 - parent: 60 - type: Transform -- uid: 15494 - type: WallReinforced - components: - - pos: -13.5,33.5 - parent: 60 - type: Transform -- uid: 15495 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,44.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15496 - type: GasThermoMachineFreezer - components: - - pos: -24.5,45.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor -- uid: 15497 - type: GasThermoMachineFreezer - components: - - pos: -25.5,45.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor -- uid: 15498 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -24.5,44.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15499 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -25.5,44.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15500 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,44.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15501 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,44.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15502 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -28.5,44.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15503 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -28.5,40.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15504 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,41.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15505 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,42.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15506 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,43.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15507 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,40.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15508 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,40.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15509 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,40.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15510 - type: GasPipeBend - components: - - pos: -29.5,40.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15511 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -29.5,39.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15512 - type: GasPressurePump - components: - - name: to supermatter - type: MetaData - - rot: 1.5707963267948966 rad - pos: -30.5,40.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15513 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,39.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15514 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,39.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15515 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,39.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15516 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,39.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15517 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,39.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15518 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,39.5 - parent: 60 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15519 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -22.5,39.5 - parent: 60 - type: Transform - - color: '#34EBE5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15520 - type: WallReinforced - components: - - pos: -23.5,38.5 - parent: 60 - type: Transform -- uid: 15521 - type: AirlockEngineeringGlassLocked - components: - - pos: -23.5,42.5 - parent: 60 - type: Transform -- uid: 15522 - type: ReinforcedPlasmaWindow - components: - - pos: -23.5,41.5 - parent: 60 - type: Transform -- uid: 15523 - type: ReinforcedPlasmaWindow - components: - - pos: -23.5,40.5 - parent: 60 - type: Transform -- uid: 15524 - type: ReinforcedPlasmaWindow - components: - - pos: -23.5,39.5 - parent: 60 - type: Transform -- uid: 15525 - type: ReinforcedPlasmaWindow - components: - - pos: -23.5,44.5 - parent: 60 - type: Transform -- uid: 15526 - type: ReinforcedPlasmaWindow - components: - - pos: -23.5,45.5 - parent: 60 - type: Transform -- uid: 15527 - type: ReinforcedPlasmaWindow - components: - - pos: -23.5,46.5 - parent: 60 - type: Transform -- uid: 15528 - type: AirlockEngineeringGlassLocked - components: - - pos: -23.5,43.5 - parent: 60 - type: Transform -- uid: 15529 - type: Grille - components: - - pos: -23.5,41.5 - parent: 60 - type: Transform -- uid: 15530 - type: Grille - components: - - pos: -23.5,40.5 - parent: 60 - type: Transform -- uid: 15531 - type: Grille - components: - - pos: -23.5,39.5 - parent: 60 - type: Transform -- uid: 15532 - type: Grille - components: - - pos: -23.5,45.5 - parent: 60 - type: Transform -- uid: 15533 - type: Grille - components: - - pos: -23.5,44.5 - parent: 60 - type: Transform -- uid: 15534 - type: Grille - components: - - pos: -23.5,46.5 - parent: 60 - type: Transform -- uid: 15535 - type: GasThermoMachineFreezer - components: - - pos: -36.5,46.5 - parent: 60 - type: Transform -- uid: 15536 - type: GasThermoMachineFreezer - components: - - pos: -35.5,38.5 - parent: 60 - type: Transform -- uid: 15537 - type: GasThermoMachineHeater - components: - - pos: -33.5,38.5 - parent: 60 - type: Transform -- uid: 15538 - type: WallReinforced - components: - - pos: -27.5,38.5 - parent: 60 - type: Transform -- uid: 15539 - type: ClosetRadiationSuitFilled - components: - - pos: -22.5,32.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15540 - type: ClosetRadiationSuitFilled - components: - - pos: -20.5,32.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15541 - type: SignRadiationMed - components: - - pos: -13.5,33.5 - parent: 60 - type: Transform -- uid: 15542 - type: SignRadiationMed - components: - - pos: -19.5,33.5 - parent: 60 - type: Transform -- uid: 15543 - type: ClosetRadiationSuitFilled - components: - - pos: -12.5,32.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15544 - type: ClosetRadiationSuitFilled - components: - - pos: -10.5,32.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15545 - type: Grille - components: - - pos: -12.5,33.5 - parent: 60 - type: Transform -- uid: 15546 - type: Grille - components: - - pos: -10.5,33.5 - parent: 60 - type: Transform -- uid: 15547 - type: WallReinforced - components: - - pos: -9.5,30.5 - parent: 60 - type: Transform -- uid: 15548 - type: WallReinforced - components: - - pos: -9.5,31.5 - parent: 60 - type: Transform -- uid: 15549 - type: WallReinforced - components: - - pos: -9.5,32.5 - parent: 60 - type: Transform -- uid: 15550 - type: SignSecureMed - components: - - pos: -19.5,31.5 - parent: 60 - type: Transform -- uid: 15551 - type: SignFire - components: - - pos: -17.5,44.5 - parent: 60 - type: Transform -- uid: 15552 - type: SignRadiationMed - components: - - pos: -15.5,44.5 - parent: 60 - type: Transform -- uid: 15553 - type: SignLaserMed - components: - - pos: -19.5,47.5 - parent: 60 - type: Transform -- uid: 15554 - type: SignLaserMed - components: - - pos: -13.5,47.5 - parent: 60 - type: Transform -- uid: 15555 - type: SignElectricalMed - components: - - pos: -14.5,44.5 - parent: 60 - type: Transform -- uid: 15556 - type: SignFlammableMed - components: - - pos: -18.5,44.5 - parent: 60 - type: Transform -- uid: 15557 - type: ReinforcedPlasmaWindow - components: - - pos: -16.5,31.5 - parent: 60 - type: Transform -- uid: 15558 - type: ReinforcedPlasmaWindow - components: - - pos: -17.5,31.5 - parent: 60 - type: Transform -- uid: 15559 - type: Grille - components: - - pos: -15.5,31.5 - parent: 60 - type: Transform -- uid: 15560 - type: Grille - components: - - pos: -16.5,31.5 - parent: 60 - type: Transform -- uid: 15561 - type: Grille - components: - - pos: -17.5,31.5 - parent: 60 - type: Transform -- uid: 15562 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,39.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15563 - type: Poweredlight - components: - - pos: -14.5,43.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15564 - type: Poweredlight - components: - - pos: -18.5,43.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15565 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -18.5,41.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15566 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -14.5,41.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15567 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,39.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15568 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,40.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15569 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,44.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15570 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,44.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15571 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,40.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15572 - type: Poweredlight - components: - - pos: -14.5,37.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15573 - type: Poweredlight - components: - - pos: -18.5,37.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15574 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -12.5,45.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15575 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -20.5,45.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15576 - type: Poweredlight - components: - - pos: -14.5,30.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15577 - type: ReinforcedWindow - components: - - pos: -27.5,40.5 - parent: 60 - type: Transform -- uid: 15578 - type: AirlockAtmosphericsGlassLocked - components: - - name: Atmospherics - type: MetaData - - pos: -27.5,39.5 - parent: 60 - type: Transform -- uid: 15579 - type: SignRadiationMed - components: - - pos: -27.5,41.5 - parent: 60 - type: Transform -- uid: 15580 - type: SignCryogenicsMed - components: - - pos: -27.5,42.5 - parent: 60 - type: Transform -- uid: 15581 - type: Grille - components: - - pos: -27.5,40.5 - parent: 60 - type: Transform -- uid: 15582 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,41.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15583 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,42.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15584 - type: WallReinforced - components: - - pos: -16.5,51.5 - parent: 60 - type: Transform -- uid: 15585 - type: Emitter - components: - - rot: -1.5707963267948966 rad - pos: -10.5,50.5 - parent: 60 - type: Transform -- uid: 15586 - type: Emitter - components: - - rot: -1.5707963267948966 rad - pos: -10.5,49.5 - parent: 60 - type: Transform -- uid: 15587 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -22.5,50.5 - parent: 60 - type: Transform -- uid: 15588 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,31.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15589 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,32.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15590 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,33.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15591 - type: GasPipeBend - components: - - pos: 48.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15592 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15593 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -22.5,36.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15594 - type: GasPipeBend - components: - - pos: -10.5,36.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15595 - type: GasPipeTJunction - components: - - pos: -11.5,36.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15596 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,36.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15597 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,36.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15598 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,36.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15599 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,36.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15600 - type: GasPipeTJunction - components: - - pos: -16.5,36.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15601 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,36.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15602 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,36.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15603 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,36.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15604 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,36.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15605 - type: GasPipeTJunction - components: - - pos: -21.5,36.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15606 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15607 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,34.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15608 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,33.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15609 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,32.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15610 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,31.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15611 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15612 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -20.5,34.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15613 - type: GasPipeBend - components: - - pos: -12.5,34.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15614 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,32.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15615 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,33.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15616 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,34.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15617 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -18.5,34.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15618 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,34.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15619 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,34.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15620 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,34.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15621 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -14.5,34.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15622 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,34.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15623 - type: GasPipeStraight - components: - - pos: -12.5,33.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15624 - type: GasPipeStraight - components: - - pos: -12.5,32.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15625 - type: GasPipeStraight - components: - - pos: -12.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15626 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -10.5,29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15627 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15628 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15629 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15630 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15631 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15632 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15633 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15634 - type: GasPipeStraight - components: - - pos: -12.5,29.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15635 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -12.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15636 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 46.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15637 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -10.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15638 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15639 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,25.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15640 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,26.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15641 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15642 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15643 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15644 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15645 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15646 - type: GasPipeStraight - components: - - pos: -10.5,28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15647 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -12.5,30.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15648 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -21.5,35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15649 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -16.5,35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15650 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -11.5,35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15651 - type: GasVentPump - components: - - pos: -18.5,35.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15652 - type: GasVentPump - components: - - pos: -14.5,35.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15653 - type: SignalButton - components: - - pos: -20.5,40.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15436 - - port: Toggle - uid: 15437 - - port: Toggle - uid: 15438 - type: SignalTransmitter -- uid: 15654 - type: SignalButton - components: - - pos: -12.5,40.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15441 - - port: Toggle - uid: 15440 - - port: Toggle - uid: 15439 - type: SignalTransmitter -- uid: 15655 - type: GasPipeStraight - components: - - pos: -0.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15656 - type: GasPipeStraight - components: - - pos: -0.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15657 - type: GasPipeStraight - components: - - pos: -0.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15658 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15659 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15660 - type: WallSolid - components: - - pos: 43.5,-1.5 - parent: 60 - type: Transform -- uid: 15661 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15662 - type: GasPipeStraight - components: - - pos: 1.5,16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15663 - type: GasPipeStraight - components: - - pos: 1.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15664 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15665 - type: CableApcExtension - components: - - pos: -23.5,23.5 - parent: 60 - type: Transform -- uid: 15666 - type: CableApcExtension - components: - - pos: -23.5,24.5 - parent: 60 - type: Transform -- uid: 15667 - type: CableApcExtension - components: - - pos: -22.5,24.5 - parent: 60 - type: Transform -- uid: 15668 - type: CableApcExtension - components: - - pos: -21.5,24.5 - parent: 60 - type: Transform -- uid: 15669 - type: CableApcExtension - components: - - pos: -20.5,24.5 - parent: 60 - type: Transform -- uid: 15670 - type: CableApcExtension - components: - - pos: -19.5,24.5 - parent: 60 - type: Transform -- uid: 15671 - type: CableApcExtension - components: - - pos: -18.5,24.5 - parent: 60 - type: Transform -- uid: 15672 - type: CableApcExtension - components: - - pos: -24.5,24.5 - parent: 60 - type: Transform -- uid: 15673 - type: CableApcExtension - components: - - pos: -25.5,24.5 - parent: 60 - type: Transform -- uid: 15674 - type: CableApcExtension - components: - - pos: -26.5,24.5 - parent: 60 - type: Transform -- uid: 15675 - type: CableApcExtension - components: - - pos: -27.5,24.5 - parent: 60 - type: Transform -- uid: 15676 - type: CableApcExtension - components: - - pos: -28.5,24.5 - parent: 60 - type: Transform -- uid: 15677 - type: CableApcExtension - components: - - pos: -29.5,24.5 - parent: 60 - type: Transform -- uid: 15678 - type: CableApcExtension - components: - - pos: -30.5,24.5 - parent: 60 - type: Transform -- uid: 15679 - type: CableApcExtension - components: - - pos: -31.5,24.5 - parent: 60 - type: Transform -- uid: 15680 - type: CableApcExtension - components: - - pos: -32.5,24.5 - parent: 60 - type: Transform -- uid: 15681 - type: CableApcExtension - components: - - pos: -33.5,24.5 - parent: 60 - type: Transform -- uid: 15682 - type: CableApcExtension - components: - - pos: -34.5,24.5 - parent: 60 - type: Transform -- uid: 15683 - type: CableApcExtension - components: - - pos: -35.5,24.5 - parent: 60 - type: Transform -- uid: 15684 - type: CableApcExtension - components: - - pos: -36.5,24.5 - parent: 60 - type: Transform -- uid: 15685 - type: CableApcExtension - components: - - pos: -37.5,24.5 - parent: 60 - type: Transform -- uid: 15686 - type: CableApcExtension - components: - - pos: -36.5,25.5 - parent: 60 - type: Transform -- uid: 15687 - type: CableApcExtension - components: - - pos: -36.5,26.5 - parent: 60 - type: Transform -- uid: 15688 - type: CableApcExtension - components: - - pos: -31.5,25.5 - parent: 60 - type: Transform -- uid: 15689 - type: CableApcExtension - components: - - pos: -31.5,26.5 - parent: 60 - type: Transform -- uid: 15690 - type: CableApcExtension - components: - - pos: -27.5,25.5 - parent: 60 - type: Transform -- uid: 15691 - type: CableApcExtension - components: - - pos: -27.5,26.5 - parent: 60 - type: Transform -- uid: 15692 - type: APCBasic - components: - - pos: -18.5,31.5 - parent: 60 - type: Transform -- uid: 15693 - type: FireAxeCabinetFilled - components: - - pos: -25.5,33.5 - parent: 60 - type: Transform -- uid: 15694 - type: Table - components: - - pos: 1.5,20.5 - parent: 60 - type: Transform -- uid: 15695 - type: Table - components: - - pos: 0.5,19.5 - parent: 60 - type: Transform -- uid: 15696 - type: Table - components: - - pos: 0.5,21.5 - parent: 60 - type: Transform -- uid: 15697 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -0.5,20.5 - parent: 60 - type: Transform -- uid: 15698 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 60 - type: Transform -- uid: 15699 - type: Table - components: - - pos: 0.5,20.5 - parent: 60 - type: Transform -- uid: 15700 - type: Table - components: - - pos: 1.5,19.5 - parent: 60 - type: Transform -- uid: 15701 - type: Table - components: - - pos: 1.5,21.5 - parent: 60 - type: Transform -- uid: 15702 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 2.5,19.5 - parent: 60 - type: Transform -- uid: 15703 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 2.5,20.5 - parent: 60 - type: Transform -- uid: 15704 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -0.5,21.5 - parent: 60 - type: Transform -- uid: 15705 - type: PoweredSmallLight - components: - - pos: -12.5,25.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15706 - type: CableHV - components: - - pos: -10.5,25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15707 - type: CableHV - components: - - pos: -10.5,26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15708 - type: PoweredSmallLight - components: - - pos: -7.5,25.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15709 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 2.5,21.5 - parent: 60 - type: Transform -- uid: 15710 - type: Table - components: - - pos: 6.5,21.5 - parent: 60 - type: Transform -- uid: 15711 - type: Table - components: - - pos: 5.5,21.5 - parent: 60 - type: Transform -- uid: 15712 - type: Table - components: - - pos: 4.5,21.5 - parent: 60 - type: Transform -- uid: 15713 - type: KitchenMicrowave - components: - - pos: 6.5,21.5 - parent: 60 - type: Transform -- uid: 15714 - type: FoodBoxDonkpocketPizza - components: - - pos: 5.566845,21.704134 - parent: 60 - type: Transform -- uid: 15715 - type: ReinforcedWindow - components: - - pos: 10.5,22.5 - parent: 60 - type: Transform -- uid: 15716 - type: WallReinforced - components: - - pos: 7.5,22.5 - parent: 60 - type: Transform -- uid: 15717 - type: WallReinforced - components: - - pos: 6.5,22.5 - parent: 60 - type: Transform -- uid: 15718 - type: WallReinforced - components: - - pos: 5.5,22.5 - parent: 60 - type: Transform -- uid: 15719 - type: WallReinforced - components: - - pos: 4.5,22.5 - parent: 60 - type: Transform -- uid: 15720 - type: WallReinforced - components: - - pos: 3.5,22.5 - parent: 60 - type: Transform -- uid: 15721 - type: WallReinforced - components: - - pos: 2.5,22.5 - parent: 60 - type: Transform -- uid: 15722 - type: ReinforcedWindow - components: - - pos: 1.5,22.5 - parent: 60 - type: Transform -- uid: 15723 - type: ReinforcedWindow - components: - - pos: 0.5,22.5 - parent: 60 - type: Transform -- uid: 15724 - type: ReinforcedWindow - components: - - pos: -0.5,22.5 - parent: 60 - type: Transform -- uid: 15725 - type: WallReinforced - components: - - pos: -1.5,22.5 - parent: 60 - type: Transform -- uid: 15726 - type: CableHV - components: - - pos: -0.5,24.5 - parent: 60 - type: Transform -- uid: 15727 - type: CableHV - components: - - pos: 0.5,24.5 - parent: 60 - type: Transform -- uid: 15728 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -0.5,26.5 - parent: 60 - type: Transform -- uid: 15729 - type: CableHV - components: - - pos: 1.5,24.5 - parent: 60 - type: Transform -- uid: 15730 - type: WindowReinforcedDirectional - components: - - pos: 1.5,26.5 - parent: 60 - type: Transform -- uid: 15731 - type: CableTerminal - components: - - pos: 1.5,26.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 15732 - type: CableTerminal - components: - - pos: 0.5,26.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 15733 - type: CableTerminal - components: - - pos: -0.5,26.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 15734 - type: WindowReinforcedDirectional - components: - - pos: 0.5,26.5 - parent: 60 - type: Transform -- uid: 15735 - type: CableHV - components: - - pos: 1.5,26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15736 - type: CableHV - components: - - pos: 0.5,26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15737 - type: CableHV - components: - - pos: -0.5,26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15738 - type: CableHV - components: - - pos: -0.5,27.5 - parent: 60 - type: Transform -- uid: 15739 - type: CableHV - components: - - pos: -0.5,25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15740 - type: CableHV - components: - - pos: 0.5,25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15741 - type: CableHV - components: - - pos: 1.5,25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15742 - type: WindowReinforcedDirectional - components: - - pos: -0.5,26.5 - parent: 60 - type: Transform -- uid: 15743 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 0.5,26.5 - parent: 60 - type: Transform -- uid: 15744 - type: SMESBasic - components: - - pos: 1.5,25.5 - parent: 60 - type: Transform -- uid: 15745 - type: SMESBasic - components: - - pos: 0.5,25.5 - parent: 60 - type: Transform -- uid: 15746 - type: SMESBasic - components: - - pos: -0.5,25.5 - parent: 60 - type: Transform -- uid: 15747 - type: CableHV - components: - - pos: -1.5,27.5 - parent: 60 - type: Transform -- uid: 15748 - type: CableHV - components: - - pos: -2.5,27.5 - parent: 60 - type: Transform -- uid: 15749 - type: CableHV - components: - - pos: -2.5,28.5 - parent: 60 - type: Transform -- uid: 15750 - type: CableHV - components: - - pos: -2.5,29.5 - parent: 60 - type: Transform -- uid: 15751 - type: CableHV - components: - - pos: -3.5,29.5 - parent: 60 - type: Transform -- uid: 15752 - type: CableHV - components: - - pos: -4.5,29.5 - parent: 60 - type: Transform -- uid: 15753 - type: CableHV - components: - - pos: -5.5,29.5 - parent: 60 - type: Transform -- uid: 15754 - type: CableHV - components: - - pos: -6.5,29.5 - parent: 60 - type: Transform -- uid: 15755 - type: CableHV - components: - - pos: -7.5,29.5 - parent: 60 - type: Transform -- uid: 15756 - type: CableHV - components: - - pos: -8.5,29.5 - parent: 60 - type: Transform -- uid: 15757 - type: CableHV - components: - - pos: -9.5,29.5 - parent: 60 - type: Transform -- uid: 15758 - type: CableHV - components: - - pos: -10.5,29.5 - parent: 60 - type: Transform -- uid: 15759 - type: CableHV - components: - - pos: -10.5,30.5 - parent: 60 - type: Transform -- uid: 15760 - type: CableHV - components: - - pos: -10.5,31.5 - parent: 60 - type: Transform -- uid: 15761 - type: CableHV - components: - - pos: -10.5,32.5 - parent: 60 - type: Transform -- uid: 15762 - type: CableHV - components: - - pos: -10.5,33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15763 - type: CableHV - components: - - pos: -10.5,34.5 - parent: 60 - type: Transform -- uid: 15764 - type: CableHV - components: - - pos: -1.5,24.5 - parent: 60 - type: Transform -- uid: 15765 - type: CableHV - components: - - pos: -2.5,24.5 - parent: 60 - type: Transform -- uid: 15766 - type: CableHV - components: - - pos: -3.5,24.5 - parent: 60 - type: Transform -- uid: 15767 - type: CableHV - components: - - pos: -4.5,24.5 - parent: 60 - type: Transform -- uid: 15768 - type: CableHV - components: - - pos: -4.5,25.5 - parent: 60 - type: Transform -- uid: 15769 - type: CableHV - components: - - pos: -4.5,26.5 - parent: 60 - type: Transform -- uid: 15770 - type: CableHV - components: - - pos: -4.5,27.5 - parent: 60 - type: Transform -- uid: 15771 - type: CableHV - components: - - pos: -5.5,27.5 - parent: 60 - type: Transform -- uid: 15772 - type: CableHV - components: - - pos: -6.5,27.5 - parent: 60 - type: Transform -- uid: 15773 - type: CableHV - components: - - pos: -7.5,27.5 - parent: 60 - type: Transform -- uid: 15774 - type: CableHV - components: - - pos: -8.5,27.5 - parent: 60 - type: Transform -- uid: 15775 - type: CableHV - components: - - pos: -9.5,27.5 - parent: 60 - type: Transform -- uid: 15776 - type: CableHV - components: - - pos: -10.5,27.5 - parent: 60 - type: Transform -- uid: 15777 - type: CableHV - components: - - pos: -11.5,27.5 - parent: 60 - type: Transform -- uid: 15778 - type: CableHV - components: - - pos: -12.5,27.5 - parent: 60 - type: Transform -- uid: 15779 - type: CableHV - components: - - pos: -13.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15780 - type: CableHV - components: - - pos: -14.5,27.5 - parent: 60 - type: Transform -- uid: 15781 - type: CableHV - components: - - pos: -15.5,27.5 - parent: 60 - type: Transform -- uid: 15782 - type: CableHV - components: - - pos: -16.5,27.5 - parent: 60 - type: Transform -- uid: 15783 - type: CableHV - components: - - pos: -17.5,27.5 - parent: 60 - type: Transform -- uid: 15784 - type: CableHV - components: - - pos: -18.5,27.5 - parent: 60 - type: Transform -- uid: 15785 - type: CableHV - components: - - pos: -18.5,28.5 - parent: 60 - type: Transform -- uid: 15786 - type: CableHV - components: - - pos: -19.5,28.5 - parent: 60 - type: Transform -- uid: 15787 - type: CableHV - components: - - pos: -20.5,28.5 - parent: 60 - type: Transform -- uid: 15788 - type: CableHV - components: - - pos: -21.5,28.5 - parent: 60 - type: Transform -- uid: 15789 - type: CableHV - components: - - pos: -21.5,27.5 - parent: 60 - type: Transform -- uid: 15790 - type: CableHV - components: - - pos: -21.5,26.5 - parent: 60 - type: Transform -- uid: 15791 - type: CableHV - components: - - pos: -21.5,25.5 - parent: 60 - type: Transform -- uid: 15792 - type: CableHV - components: - - pos: -21.5,24.5 - parent: 60 - type: Transform -- uid: 15793 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -18.5,27.5 - parent: 60 - type: Transform -- uid: 15794 - type: DisposalBend - components: - - pos: -18.5,28.5 - parent: 60 - type: Transform -- uid: 15795 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,28.5 - parent: 60 - type: Transform -- uid: 15796 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,28.5 - parent: 60 - type: Transform -- uid: 15797 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,26.5 - parent: 60 - type: Transform -- uid: 15798 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,25.5 - parent: 60 - type: Transform -- uid: 15799 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,24.5 - parent: 60 - type: Transform -- uid: 15800 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,24.5 - parent: 60 - type: Transform -- uid: 15801 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,24.5 - parent: 60 - type: Transform -- uid: 15802 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,24.5 - parent: 60 - type: Transform -- uid: 15803 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,24.5 - parent: 60 - type: Transform -- uid: 15804 - type: DisposalBend - components: - - pos: -15.5,24.5 - parent: 60 - type: Transform -- uid: 15805 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -21.5,24.5 - parent: 60 - type: Transform -- uid: 15806 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -21.5,28.5 - parent: 60 - type: Transform -- uid: 15807 - type: DisposalPipe - components: - - pos: -21.5,27.5 - parent: 60 - type: Transform -- uid: 15808 - type: CableMV - components: - - pos: -23.5,24.5 - parent: 60 - type: Transform -- uid: 15809 - type: CableHV - components: - - pos: -20.5,24.5 - parent: 60 - type: Transform -- uid: 15810 - type: CableHV - components: - - pos: -19.5,24.5 - parent: 60 - type: Transform -- uid: 15811 - type: CableHV - components: - - pos: -18.5,24.5 - parent: 60 - type: Transform -- uid: 15812 - type: CableHV - components: - - pos: -17.5,24.5 - parent: 60 - type: Transform -- uid: 15813 - type: CableHV - components: - - pos: -16.5,24.5 - parent: 60 - type: Transform -- uid: 15814 - type: CableHV - components: - - pos: -15.5,24.5 - parent: 60 - type: Transform -- uid: 15815 - type: CableHV - components: - - pos: -14.5,24.5 - parent: 60 - type: Transform -- uid: 15816 - type: CableHV - components: - - pos: -13.5,24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15817 - type: CableHV - components: - - pos: -12.5,24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15818 - type: SubstationBasic - components: - - name: Engineering Sub 1 - type: MetaData - - pos: -12.5,25.5 - parent: 60 - type: Transform -- uid: 15819 - type: CableHV - components: - - pos: -12.5,25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15820 - type: CableHV - components: - - pos: -30.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15821 - type: CableHV - components: - - pos: -31.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15822 - type: CableHV - components: - - pos: -32.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15823 - type: CableHV - components: - - pos: -33.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15824 - type: CableHV - components: - - pos: -34.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15825 - type: CableHV - components: - - pos: -35.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15826 - type: CableHV - components: - - pos: -36.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15827 - type: CableHV - components: - - pos: -37.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15828 - type: CableHV - components: - - pos: -38.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15829 - type: CableHV - components: - - pos: -39.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15830 - type: CableHV - components: - - pos: -40.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15831 - type: CableHV - components: - - pos: -41.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15832 - type: CableHV - components: - - pos: -42.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15833 - type: CableHV - components: - - pos: -43.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15834 - type: CableHV - components: - - pos: -44.5,17.5 - parent: 60 - type: Transform -- uid: 15835 - type: CableHV - components: - - pos: -45.5,17.5 - parent: 60 - type: Transform -- uid: 15836 - type: FaxMachineCaptain - components: - - pos: 2.5,3.5 - parent: 60 - type: Transform - - name: Bridge - type: FaxMachine -- uid: 15837 - type: TableReinforced - components: - - pos: -53.5,14.5 - parent: 60 - type: Transform -- uid: 15838 - type: CableMV - components: - - pos: -44.5,15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15839 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-5.5 - parent: 60 - type: Transform -- uid: 15840 - type: CableApcExtension - components: - - pos: -50.5,16.5 - parent: 60 - type: Transform -- uid: 15841 - type: CableHV - components: - - pos: -45.5,13.5 - parent: 60 - type: Transform -- uid: 15842 - type: Grille - components: - - pos: -48.5,16.5 - parent: 60 - type: Transform -- uid: 15843 - type: Grille - components: - - pos: -51.5,15.5 - parent: 60 - type: Transform -- uid: 15844 - type: IntercomScience - components: - - rot: -1.5707963267948966 rad - pos: -44.5,16.5 - parent: 60 - type: Transform -- uid: 15845 - type: Intercom - components: - - pos: -34.5,-21.5 - parent: 60 - type: Transform -- uid: 15846 - type: FirelockGlass - components: - - pos: -26.5,-23.5 - parent: 60 - type: Transform -- uid: 15847 - type: DisposalUnit - components: - - pos: -54.5,-3.5 - parent: 60 - type: Transform -- uid: 15848 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-3.5 - parent: 60 - type: Transform -- uid: 15849 - type: RandomArtifactSpawner - components: - - pos: -51.5,16.5 - parent: 60 - type: Transform -- uid: 15850 - type: ToolboxEmergencyFilled - components: - - pos: -45.48183,11.537685 - parent: 60 - type: Transform -- uid: 15851 - type: CableHV - components: - - pos: -58.5,14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15852 - type: CableHV - components: - - pos: -58.5,13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15853 - type: CableHV - components: - - pos: -58.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15854 - type: CableHV - components: - - pos: -58.5,11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15855 - type: CableHV - components: - - pos: -29.5,17.5 - parent: 60 - type: Transform -- uid: 15856 - type: CableHV - components: - - pos: -28.5,17.5 - parent: 60 - type: Transform -- uid: 15857 - type: CableHV - components: - - pos: -27.5,17.5 - parent: 60 - type: Transform -- uid: 15858 - type: CableHV - components: - - pos: -26.5,17.5 - parent: 60 - type: Transform -- uid: 15859 - type: CableHV - components: - - pos: -25.5,17.5 - parent: 60 - type: Transform -- uid: 15860 - type: CableHV - components: - - pos: -25.5,18.5 - parent: 60 - type: Transform -- uid: 15861 - type: CableHV - components: - - pos: -25.5,19.5 - parent: 60 - type: Transform -- uid: 15862 - type: CableHV - components: - - pos: -25.5,20.5 - parent: 60 - type: Transform -- uid: 15863 - type: CableHV - components: - - pos: -25.5,21.5 - parent: 60 - type: Transform -- uid: 15864 - type: CableHV - components: - - pos: -25.5,22.5 - parent: 60 - type: Transform -- uid: 15865 - type: CableHV - components: - - pos: -25.5,23.5 - parent: 60 - type: Transform -- uid: 15866 - type: CableHV - components: - - pos: -25.5,24.5 - parent: 60 - type: Transform -- uid: 15867 - type: CableHV - components: - - pos: -24.5,24.5 - parent: 60 - type: Transform -- uid: 15868 - type: CableHV - components: - - pos: -23.5,24.5 - parent: 60 - type: Transform -- uid: 15869 - type: CableHV - components: - - pos: -22.5,24.5 - parent: 60 - type: Transform -- uid: 15870 - type: CableHV - components: - - pos: -16.5,23.5 - parent: 60 - type: Transform -- uid: 15871 - type: CableHV - components: - - pos: -16.5,22.5 - parent: 60 - type: Transform -- uid: 15872 - type: CableHV - components: - - pos: -16.5,21.5 - parent: 60 - type: Transform -- uid: 15873 - type: CableHV - components: - - pos: -16.5,20.5 - parent: 60 - type: Transform -- uid: 15874 - type: CableHV - components: - - pos: -16.5,19.5 - parent: 60 - type: Transform -- uid: 15875 - type: CableHV - components: - - pos: -16.5,18.5 - parent: 60 - type: Transform -- uid: 15876 - type: CableHV - components: - - pos: -16.5,17.5 - parent: 60 - type: Transform -- uid: 15877 - type: CableHV - components: - - pos: -16.5,16.5 - parent: 60 - type: Transform -- uid: 15878 - type: CableHV - components: - - pos: -16.5,15.5 - parent: 60 - type: Transform -- uid: 15879 - type: CableHV - components: - - pos: -16.5,14.5 - parent: 60 - type: Transform -- uid: 15880 - type: CableHV - components: - - pos: -16.5,13.5 - parent: 60 - type: Transform -- uid: 15881 - type: CableHV - components: - - pos: -16.5,12.5 - parent: 60 - type: Transform -- uid: 15882 - type: CableHV - components: - - pos: -16.5,11.5 - parent: 60 - type: Transform -- uid: 15883 - type: CableHV - components: - - pos: -16.5,10.5 - parent: 60 - type: Transform -- uid: 15884 - type: CableHV - components: - - pos: -16.5,9.5 - parent: 60 - type: Transform -- uid: 15885 - type: CableHV - components: - - pos: -17.5,9.5 - parent: 60 - type: Transform -- uid: 15886 - type: CableHV - components: - - pos: -18.5,9.5 - parent: 60 - type: Transform -- uid: 15887 - type: CableHV - components: - - pos: -19.5,9.5 - parent: 60 - type: Transform -- uid: 15888 - type: CableHV - components: - - pos: -20.5,9.5 - parent: 60 - type: Transform -- uid: 15889 - type: CableHV - components: - - pos: -21.5,9.5 - parent: 60 - type: Transform -- uid: 15890 - type: CableHV - components: - - pos: -22.5,9.5 - parent: 60 - type: Transform -- uid: 15891 - type: CableHV - components: - - pos: -23.5,9.5 - parent: 60 - type: Transform -- uid: 15892 - type: CableHV - components: - - pos: -24.5,9.5 - parent: 60 - type: Transform -- uid: 15893 - type: CableHV - components: - - pos: -25.5,9.5 - parent: 60 - type: Transform -- uid: 15894 - type: CableHV - components: - - pos: -26.5,9.5 - parent: 60 - type: Transform -- uid: 15895 - type: CableHV - components: - - pos: -26.5,8.5 - parent: 60 - type: Transform -- uid: 15896 - type: CableHV - components: - - pos: -26.5,7.5 - parent: 60 - type: Transform -- uid: 15897 - type: CableHV - components: - - pos: -26.5,6.5 - parent: 60 - type: Transform -- uid: 15898 - type: CableHV - components: - - pos: -26.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15899 - type: CableHV - components: - - pos: -27.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15900 - type: CableHV - components: - - pos: -28.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15901 - type: CableHV - components: - - pos: -29.5,5.5 - parent: 60 - type: Transform -- uid: 15902 - type: CableHV - components: - - pos: -25.5,10.5 - parent: 60 - type: Transform -- uid: 15903 - type: CableHV - components: - - pos: -25.5,10.5 - parent: 60 - type: Transform -- uid: 15904 - type: CableHV - components: - - pos: -25.5,11.5 - parent: 60 - type: Transform -- uid: 15905 - type: CableHV - components: - - pos: -25.5,12.5 - parent: 60 - type: Transform -- uid: 15906 - type: CableHV - components: - - pos: -25.5,13.5 - parent: 60 - type: Transform -- uid: 15907 - type: CableHV - components: - - pos: -25.5,14.5 - parent: 60 - type: Transform -- uid: 15908 - type: CableHV - components: - - pos: -25.5,15.5 - parent: 60 - type: Transform -- uid: 15909 - type: CableHV - components: - - pos: -25.5,16.5 - parent: 60 - type: Transform -- uid: 15910 - type: CableHV - components: - - pos: -3.5,23.5 - parent: 60 - type: Transform -- uid: 15911 - type: CableHV - components: - - pos: -3.5,22.5 - parent: 60 - type: Transform -- uid: 15912 - type: CableHV - components: - - pos: -3.5,21.5 - parent: 60 - type: Transform -- uid: 15913 - type: CableHV - components: - - pos: -3.5,20.5 - parent: 60 - type: Transform -- uid: 15914 - type: CableHV - components: - - pos: -3.5,19.5 - parent: 60 - type: Transform -- uid: 15915 - type: CableHV - components: - - pos: -3.5,18.5 - parent: 60 - type: Transform -- uid: 15916 - type: CableHV - components: - - pos: -3.5,17.5 - parent: 60 - type: Transform -- uid: 15917 - type: CableHV - components: - - pos: -3.5,16.5 - parent: 60 - type: Transform -- uid: 15918 - type: CableHV - components: - - pos: -3.5,15.5 - parent: 60 - type: Transform -- uid: 15919 - type: CableHV - components: - - pos: -3.5,14.5 - parent: 60 - type: Transform -- uid: 15920 - type: CableHV - components: - - pos: -2.5,14.5 - parent: 60 - type: Transform -- uid: 15921 - type: CableHV - components: - - pos: -1.5,14.5 - parent: 60 - type: Transform -- uid: 15922 - type: CableHV - components: - - pos: -0.5,14.5 - parent: 60 - type: Transform -- uid: 15923 - type: CableHV - components: - - pos: 0.5,14.5 - parent: 60 - type: Transform -- uid: 15924 - type: CableHV - components: - - pos: 0.5,13.5 - parent: 60 - type: Transform -- uid: 15925 - type: CableHV - components: - - pos: 0.5,12.5 - parent: 60 - type: Transform -- uid: 15926 - type: CableHV - components: - - pos: 0.5,11.5 - parent: 60 - type: Transform -- uid: 15927 - type: CableHV - components: - - pos: 0.5,10.5 - parent: 60 - type: Transform -- uid: 15928 - type: CableHV - components: - - pos: 0.5,9.5 - parent: 60 - type: Transform -- uid: 15929 - type: CableHV - components: - - pos: -0.5,9.5 - parent: 60 - type: Transform -- uid: 15930 - type: CableHV - components: - - pos: -1.5,9.5 - parent: 60 - type: Transform -- uid: 15931 - type: CableHV - components: - - pos: -2.5,9.5 - parent: 60 - type: Transform -- uid: 15932 - type: CableHV - components: - - pos: -3.5,9.5 - parent: 60 - type: Transform -- uid: 15933 - type: CableHV - components: - - pos: -4.5,9.5 - parent: 60 - type: Transform -- uid: 15934 - type: CableHV - components: - - pos: -5.5,9.5 - parent: 60 - type: Transform -- uid: 15935 - type: CableHV - components: - - pos: -6.5,9.5 - parent: 60 - type: Transform -- uid: 15936 - type: CableHV - components: - - pos: -7.5,9.5 - parent: 60 - type: Transform -- uid: 15937 - type: CableHV - components: - - pos: -8.5,9.5 - parent: 60 - type: Transform -- uid: 15938 - type: CableHV - components: - - pos: -9.5,9.5 - parent: 60 - type: Transform -- uid: 15939 - type: CableHV - components: - - pos: -10.5,9.5 - parent: 60 - type: Transform -- uid: 15940 - type: CableHV - components: - - pos: -11.5,9.5 - parent: 60 - type: Transform -- uid: 15941 - type: CableHV - components: - - pos: -12.5,9.5 - parent: 60 - type: Transform -- uid: 15942 - type: CableHV - components: - - pos: -13.5,9.5 - parent: 60 - type: Transform -- uid: 15943 - type: CableHV - components: - - pos: -14.5,9.5 - parent: 60 - type: Transform -- uid: 15944 - type: CableHV - components: - - pos: -15.5,9.5 - parent: 60 - type: Transform -- uid: 15945 - type: CableHV - components: - - pos: 1.5,9.5 - parent: 60 - type: Transform -- uid: 15946 - type: CableHV - components: - - pos: 2.5,9.5 - parent: 60 - type: Transform -- uid: 15947 - type: CableHV - components: - - pos: 3.5,9.5 - parent: 60 - type: Transform -- uid: 15948 - type: CableHV - components: - - pos: 4.5,9.5 - parent: 60 - type: Transform -- uid: 15949 - type: CableHV - components: - - pos: 5.5,9.5 - parent: 60 - type: Transform -- uid: 15950 - type: CableHV - components: - - pos: 6.5,9.5 - parent: 60 - type: Transform -- uid: 15951 - type: CableHV - components: - - pos: 7.5,9.5 - parent: 60 - type: Transform -- uid: 15952 - type: CableHV - components: - - pos: 8.5,9.5 - parent: 60 - type: Transform -- uid: 15953 - type: CableHV - components: - - pos: 9.5,9.5 - parent: 60 - type: Transform -- uid: 15954 - type: CableHV - components: - - pos: 10.5,9.5 - parent: 60 - type: Transform -- uid: 15955 - type: CableHV - components: - - pos: 11.5,9.5 - parent: 60 - type: Transform -- uid: 15956 - type: CableHV - components: - - pos: 12.5,9.5 - parent: 60 - type: Transform -- uid: 15957 - type: CableHV - components: - - pos: 13.5,9.5 - parent: 60 - type: Transform -- uid: 15958 - type: CableHV - components: - - pos: 14.5,9.5 - parent: 60 - type: Transform -- uid: 15959 - type: CableHV - components: - - pos: 15.5,9.5 - parent: 60 - type: Transform -- uid: 15960 - type: CableHV - components: - - pos: 16.5,9.5 - parent: 60 - type: Transform -- uid: 15961 - type: CableHV - components: - - pos: 16.5,6.5 - parent: 60 - type: Transform -- uid: 15962 - type: CableHV - components: - - pos: 16.5,7.5 - parent: 60 - type: Transform -- uid: 15963 - type: CableHV - components: - - pos: 16.5,8.5 - parent: 60 - type: Transform -- uid: 15964 - type: CableHV - components: - - pos: 16.5,10.5 - parent: 60 - type: Transform -- uid: 15965 - type: CableHV - components: - - pos: 16.5,11.5 - parent: 60 - type: Transform -- uid: 15966 - type: CableHV - components: - - pos: 16.5,12.5 - parent: 60 - type: Transform -- uid: 15967 - type: CableHV - components: - - pos: 16.5,13.5 - parent: 60 - type: Transform -- uid: 15968 - type: CableHV - components: - - pos: 15.5,13.5 - parent: 60 - type: Transform -- uid: 15969 - type: CableHV - components: - - pos: 14.5,13.5 - parent: 60 - type: Transform -- uid: 15970 - type: CableHV - components: - - pos: 13.5,13.5 - parent: 60 - type: Transform -- uid: 15971 - type: CableHV - components: - - pos: 12.5,13.5 - parent: 60 - type: Transform -- uid: 15972 - type: CableHV - components: - - pos: 11.5,13.5 - parent: 60 - type: Transform -- uid: 15973 - type: CableHV - components: - - pos: 10.5,13.5 - parent: 60 - type: Transform -- uid: 15974 - type: CableHV - components: - - pos: 10.5,14.5 - parent: 60 - type: Transform -- uid: 15975 - type: CableHV - components: - - pos: 9.5,14.5 - parent: 60 - type: Transform -- uid: 15976 - type: CableHV - components: - - pos: 8.5,14.5 - parent: 60 - type: Transform -- uid: 15977 - type: CableHV - components: - - pos: 7.5,14.5 - parent: 60 - type: Transform -- uid: 15978 - type: CableHV - components: - - pos: 6.5,14.5 - parent: 60 - type: Transform -- uid: 15979 - type: CableHV - components: - - pos: 5.5,14.5 - parent: 60 - type: Transform -- uid: 15980 - type: CableHV - components: - - pos: 5.5,15.5 - parent: 60 - type: Transform -- uid: 15981 - type: CableHV - components: - - pos: 5.5,16.5 - parent: 60 - type: Transform -- uid: 15982 - type: CableHV - components: - - pos: 5.5,17.5 - parent: 60 - type: Transform -- uid: 15983 - type: CableHV - components: - - pos: 4.5,17.5 - parent: 60 - type: Transform -- uid: 15984 - type: CableHV - components: - - pos: 3.5,17.5 - parent: 60 - type: Transform -- uid: 15985 - type: CableHV - components: - - pos: 2.5,17.5 - parent: 60 - type: Transform -- uid: 15986 - type: CableHV - components: - - pos: 1.5,17.5 - parent: 60 - type: Transform -- uid: 15987 - type: CableHV - components: - - pos: 0.5,17.5 - parent: 60 - type: Transform -- uid: 15988 - type: CableHV - components: - - pos: -0.5,17.5 - parent: 60 - type: Transform -- uid: 15989 - type: CableHV - components: - - pos: -1.5,17.5 - parent: 60 - type: Transform -- uid: 15990 - type: CableHV - components: - - pos: -2.5,17.5 - parent: 60 - type: Transform -- uid: 15991 - type: CableHV - components: - - pos: 0.5,16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15992 - type: CableHV - components: - - pos: 0.5,15.5 - parent: 60 - type: Transform -- uid: 15993 - type: Grille - components: - - pos: -0.5,26.5 - parent: 60 - type: Transform -- uid: 15994 - type: Grille - components: - - pos: 0.5,26.5 - parent: 60 - type: Transform -- uid: 15995 - type: Grille - components: - - pos: 1.5,26.5 - parent: 60 - type: Transform -- uid: 15996 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 1.5,26.5 - parent: 60 - type: Transform -- uid: 15997 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 1.5,26.5 - parent: 60 - type: Transform -- uid: 15998 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -0.5,26.5 - parent: 60 - type: Transform -- uid: 15999 - type: CableHV - components: - - pos: 0.5,27.5 - parent: 60 - type: Transform -- uid: 16000 - type: CableHV - components: - - pos: 1.5,27.5 - parent: 60 - type: Transform -- uid: 16001 - type: WallReinforced - components: - - pos: -1.5,26.5 - parent: 60 - type: Transform -- uid: 16002 - type: WallReinforced - components: - - pos: 2.5,26.5 - parent: 60 - type: Transform -- uid: 16003 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 3.5,21.5 - parent: 60 - type: Transform -- uid: 16004 - type: Grille - components: - - pos: 0.5,22.5 - parent: 60 - type: Transform -- uid: 16005 - type: Grille - components: - - pos: 1.5,22.5 - parent: 60 - type: Transform -- uid: 16006 - type: Grille - components: - - pos: -0.5,22.5 - parent: 60 - type: Transform -- uid: 16007 - type: FirelockGlass - components: - - pos: -2.5,22.5 - parent: 60 - type: Transform -- uid: 16008 - type: FirelockGlass - components: - - pos: -3.5,22.5 - parent: 60 - type: Transform -- uid: 16009 - type: WallReinforced - components: - - pos: -4.5,22.5 - parent: 60 - type: Transform -- uid: 16010 - type: WallReinforced - components: - - pos: 3.5,26.5 - parent: 60 - type: Transform -- uid: 16011 - type: WallReinforced - components: - - pos: 3.5,25.5 - parent: 60 - type: Transform -- uid: 16012 - type: WallReinforced - components: - - pos: 3.5,23.5 - parent: 60 - type: Transform -- uid: 16013 - type: AirlockEngineeringLocked - components: - - name: AME Room - type: MetaData - - pos: 3.5,24.5 - parent: 60 - type: Transform -- uid: 16014 - type: WallReinforced - components: - - pos: 7.5,33.5 - parent: 60 - type: Transform -- uid: 16015 - type: WallReinforced - components: - - pos: 6.5,33.5 - parent: 60 - type: Transform -- uid: 16016 - type: WallReinforced - components: - - pos: 5.5,33.5 - parent: 60 - type: Transform -- uid: 16017 - type: WallReinforced - components: - - pos: 4.5,33.5 - parent: 60 - type: Transform -- uid: 16018 - type: WallReinforced - components: - - pos: 3.5,33.5 - parent: 60 - type: Transform -- uid: 16019 - type: WallReinforced - components: - - pos: 3.5,32.5 - parent: 60 - type: Transform -- uid: 16020 - type: WallReinforced - components: - - pos: 3.5,31.5 - parent: 60 - type: Transform -- uid: 16021 - type: WallReinforced - components: - - pos: 3.5,30.5 - parent: 60 - type: Transform -- uid: 16022 - type: ReinforcedWindow - components: - - pos: 3.5,27.5 - parent: 60 - type: Transform -- uid: 16023 - type: ReinforcedWindow - components: - - pos: 3.5,28.5 - parent: 60 - type: Transform -- uid: 16024 - type: ReinforcedWindow - components: - - pos: 3.5,29.5 - parent: 60 - type: Transform -- uid: 16025 - type: WallReinforced - components: - - pos: 9.5,25.5 - parent: 60 - type: Transform -- uid: 16026 - type: WallReinforced - components: - - pos: 9.5,24.5 - parent: 60 - type: Transform -- uid: 16027 - type: WallReinforced - components: - - pos: 9.5,23.5 - parent: 60 - type: Transform -- uid: 16028 - type: Catwalk - components: - - pos: 6.5,28.5 - parent: 60 - type: Transform -- uid: 16029 - type: Catwalk - components: - - pos: 6.5,26.5 - parent: 60 - type: Transform -- uid: 16030 - type: Catwalk - components: - - pos: 6.5,24.5 - parent: 60 - type: Transform -- uid: 16031 - type: CableHV - components: - - pos: 2.5,27.5 - parent: 60 - type: Transform -- uid: 16032 - type: CableHV - components: - - pos: 3.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16033 - type: CableHV - components: - - pos: 4.5,27.5 - parent: 60 - type: Transform -- uid: 16034 - type: CableHV - components: - - pos: 5.5,27.5 - parent: 60 - type: Transform -- uid: 16035 - type: CableHV - components: - - pos: 6.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16036 - type: CableHV - components: - - pos: 6.5,24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16037 - type: CableHV - components: - - pos: 6.5,25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16038 - type: CableHV - components: - - pos: 6.5,26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16039 - type: CableHV - components: - - pos: 6.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16040 - type: CableHV - components: - - pos: 6.5,28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16041 - type: CableHV - components: - - pos: 6.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16042 - type: CableHV - components: - - pos: 6.5,30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16043 - type: CableHV - components: - - pos: 6.5,31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16044 - type: Catwalk - components: - - pos: 6.5,31.5 - parent: 60 - type: Transform -- uid: 16045 - type: Grille - components: - - pos: 3.5,27.5 - parent: 60 - type: Transform -- uid: 16046 - type: Grille - components: - - pos: 3.5,28.5 - parent: 60 - type: Transform -- uid: 16047 - type: Grille - components: - - pos: 3.5,29.5 - parent: 60 - type: Transform -- uid: 16048 - type: Grille - components: - - pos: 9.5,27.5 - parent: 60 - type: Transform -- uid: 16049 - type: Grille - components: - - pos: 9.5,28.5 - parent: 60 - type: Transform -- uid: 16050 - type: Grille - components: - - pos: 9.5,29.5 - parent: 60 - type: Transform -- uid: 16051 - type: CableHV - components: - - pos: 7.5,28.5 - parent: 60 - type: Transform -- uid: 16052 - type: CableHV - components: - - pos: 8.5,28.5 - parent: 60 - type: Transform -- uid: 16053 - type: CableHV - components: - - pos: 9.5,28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16054 - type: CableHV - components: - - pos: 9.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16055 - type: CableHV - components: - - pos: 9.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16056 - type: CableHV - components: - - pos: 3.5,28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16057 - type: CableHV - components: - - pos: 3.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16058 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-1.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16059 - type: Table - components: - - pos: 42.5,-1.5 - parent: 60 - type: Transform -- uid: 16060 - type: FireExtinguisher - components: - - pos: 44.318237,-0.41470933 - parent: 60 - type: Transform -- uid: 16061 - type: CrateEngineeringAMEJar - components: - - pos: 6.5,23.5 - parent: 60 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16062 - type: CrateEngineeringAMEShielding - components: - - pos: 7.5,23.5 - parent: 60 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16063 - type: CrateEngineeringAMEShielding - components: - - pos: 8.5,23.5 - parent: 60 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16064 - type: AMEController - components: - - pos: 5.5,23.5 - parent: 60 - type: Transform -- uid: 16065 - type: Rack - components: - - pos: 4.5,23.5 - parent: 60 - type: Transform -- uid: 16066 - type: Wrench - components: - - pos: 4.583174,23.552982 - parent: 60 - type: Transform -- uid: 16067 - type: SignElectricalMed - components: - - pos: 3.5,23.5 - parent: 60 - type: Transform -- uid: 16068 - type: TableReinforced - components: - - pos: 10.5,21.5 - parent: 60 - type: Transform -- uid: 16069 - type: TableReinforced - components: - - pos: 9.5,21.5 - parent: 60 - type: Transform -- uid: 16070 - type: TableReinforced - components: - - pos: 8.5,21.5 - parent: 60 - type: Transform -- uid: 16071 - type: Grille - components: - - pos: 8.5,22.5 - parent: 60 - type: Transform -- uid: 16072 - type: Grille - components: - - pos: 10.5,22.5 - parent: 60 - type: Transform -- uid: 16073 - type: SignElectricalMed - components: - - pos: -10.5,56.5 - parent: 60 - type: Transform -- uid: 16074 - type: CableApcStack - components: - - pos: 10.061119,21.64667 - parent: 60 - type: Transform -- uid: 16075 - type: CableMVStack - components: - - pos: 10.248619,21.568544 - parent: 60 - type: Transform -- uid: 16076 - type: CableHVStack - components: - - pos: 10.482994,21.45917 - parent: 60 - type: Transform -- uid: 16077 - type: ClothingEyesHudDiagnostic - components: - - pos: 9.436119,21.599794 - parent: 60 - type: Transform -- uid: 16078 - type: JawsOfLife - components: - - pos: 8.607994,21.631044 - parent: 60 - type: Transform -- uid: 16079 - type: WallSolidRust - components: - - pos: -56.5,25.5 - parent: 60 - type: Transform -- uid: 16080 - type: WallSolidRust - components: - - pos: -56.5,23.5 - parent: 60 - type: Transform -- uid: 16081 - type: WallSolidRust - components: - - pos: -56.5,18.5 - parent: 60 - type: Transform -- uid: 16082 - type: ClothingHeadsetEngineering - components: - - pos: 1.4378321,20.761402 - parent: 60 - type: Transform -- uid: 16083 - type: ClothingBeltUtilityFilled - components: - - pos: 0.5015069,21.531372 - parent: 60 - type: Transform -- uid: 16084 - type: WeaponPistolMk58 - components: - - pos: -28.578955,-0.36830005 - parent: 60 - type: Transform -- uid: 16085 - type: RadioHandheld - components: - - pos: 1.2244415,19.742865 - parent: 60 - type: Transform -- uid: 16086 - type: RadioHandheld - components: - - pos: 1.4275665,19.899115 - parent: 60 - type: Transform -- uid: 16087 - type: RadioHandheld - components: - - pos: 1.6463165,19.742865 - parent: 60 - type: Transform -- uid: 16088 - type: RadioHandheld - components: - - pos: 1.4275665,19.555365 - parent: 60 - type: Transform -- uid: 16089 - type: CrowbarRed - components: - - pos: 1.4690821,20.698902 - parent: 60 - type: Transform - - nextAttack: 628.9641548 - type: MeleeWeapon -- uid: 16090 - type: Multitool - components: - - pos: 1.0003321,21.120777 - parent: 60 - type: Transform -- uid: 16091 - type: WeaponPistolMk58 - components: - - pos: -28.71958,-0.25892505 - parent: 60 - type: Transform -- uid: 16092 - type: BoxLighttube - components: - - pos: 0.97444147,20.461615 - parent: 60 - type: Transform -- uid: 16093 - type: FoodPizzaMeatSlice - components: - - pos: 0.49396247,20.925829 - parent: 60 - type: Transform -- uid: 16094 - type: FoodPizzaMeatSlice - components: - - pos: 0.6231174,20.88675 - parent: 60 - type: Transform -- uid: 16095 - type: LockerWeldingSuppliesFilled - components: - - pos: -4.5,20.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16096 - type: LockerElectricalSuppliesFilled - components: - - pos: -4.5,21.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16097 - type: PosterLegitHelpOthers - components: - - pos: 3.5,22.5 - parent: 60 - type: Transform -- uid: 16098 - type: PosterContrabandSpaceCola - components: - - pos: 2.5,16.5 - parent: 60 - type: Transform -- uid: 16099 - type: SignEngineering - components: - - pos: -1.5,22.5 - parent: 60 - type: Transform -- uid: 16100 - type: AtmosFixFreezerMarker - components: - - pos: 26.5,-27.5 - parent: 60 - type: Transform -- uid: 16101 - type: AtmosFixFreezerMarker - components: - - pos: 26.5,-26.5 - parent: 60 - type: Transform -- uid: 16102 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-3.5 - parent: 60 - type: Transform -- uid: 16103 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -53.5,-2.5 - parent: 60 - type: Transform -- uid: 16104 - type: WaterCooler - components: - - pos: 6.5,17.5 - parent: 60 - type: Transform -- uid: 16105 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16106 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16107 - type: Poweredlight - components: - - pos: 3.5,21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16108 - type: Poweredlight - components: - - pos: -1.5,21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16109 - type: Poweredlight - components: - - pos: 2.5,25.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16110 - type: Poweredlight - components: - - pos: -1.5,25.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16111 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,31.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16112 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,31.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16113 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,25.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16114 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,25.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16115 - type: WallReinforced - components: - - pos: 2.5,30.5 - parent: 60 - type: Transform -- uid: 16116 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 1.5,30.5 - parent: 60 - type: Transform -- uid: 16117 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -0.5,30.5 - parent: 60 - type: Transform -- uid: 16118 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -0.5,30.5 - parent: 60 - type: Transform -- uid: 16119 - type: WallReinforced - components: - - pos: -1.5,30.5 - parent: 60 - type: Transform -- uid: 16120 - type: WallReinforced - components: - - pos: -2.5,30.5 - parent: 60 - type: Transform -- uid: 16121 - type: WallReinforced - components: - - pos: -3.5,30.5 - parent: 60 - type: Transform -- uid: 16122 - type: WallReinforced - components: - - pos: -4.5,30.5 - parent: 60 - type: Transform -- uid: 16123 - type: CannabisSeeds - components: - - pos: -10.519617,-17.43405 - parent: 60 - type: Transform -- uid: 16124 - type: WallReinforced - components: - - pos: -9.5,52.5 - parent: 60 - type: Transform -- uid: 16125 - type: WallReinforced - components: - - pos: -7.5,30.5 - parent: 60 - type: Transform -- uid: 16126 - type: WallReinforced - components: - - pos: -8.5,30.5 - parent: 60 - type: Transform -- uid: 16127 - type: DrinkMugMetal - components: - - pos: 4.6485195,21.700272 - parent: 60 - type: Transform -- uid: 16128 - type: DrinkMugOne - components: - - pos: 4.3360195,21.684647 - parent: 60 - type: Transform -- uid: 16129 - type: RadiationCollector - components: - - pos: -2.5,54.5 - parent: 60 - type: Transform -- uid: 16130 - type: RadiationCollector - components: - - pos: -1.5,54.5 - parent: 60 - type: Transform -- uid: 16131 - type: RadiationCollector - components: - - pos: -0.5,54.5 - parent: 60 - type: Transform -- uid: 16132 - type: RadiationCollector - components: - - pos: 1.5,54.5 - parent: 60 - type: Transform -- uid: 16133 - type: RadiationCollector - components: - - pos: 2.5,54.5 - parent: 60 - type: Transform -- uid: 16134 - type: RadiationCollector - components: - - pos: 3.5,54.5 - parent: 60 - type: Transform -- uid: 16135 - type: DrinkHotCoffee - components: - - pos: -42.41865,4.602721 - parent: 60 - type: Transform - - tags: [] - type: Tag -- uid: 16136 - type: DrinkDoctorsDelightGlass - components: - - pos: 35.96561,-13.223683 - parent: 60 - type: Transform -- uid: 16137 - type: RadiationCollector - components: - - pos: -2.5,40.5 - parent: 60 - type: Transform -- uid: 16138 - type: RadiationCollector - components: - - pos: -1.5,40.5 - parent: 60 - type: Transform -- uid: 16139 - type: RadiationCollector - components: - - pos: -0.5,40.5 - parent: 60 - type: Transform -- uid: 16140 - type: RadiationCollector - components: - - pos: 3.5,40.5 - parent: 60 - type: Transform -- uid: 16141 - type: RadiationCollector - components: - - pos: 2.5,40.5 - parent: 60 - type: Transform -- uid: 16142 - type: RadiationCollector - components: - - pos: 1.5,40.5 - parent: 60 - type: Transform -- uid: 16143 - type: SignElectricalMed - components: - - pos: -12.5,26.5 - parent: 60 - type: Transform -- uid: 16144 - type: Table - components: - - pos: 20.5,-26.5 - parent: 60 - type: Transform -- uid: 16145 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-17.5 - parent: 60 - type: Transform - - devices: - - 8578 - - 856 - type: DeviceList -- uid: 16146 - type: Catwalk - components: - - pos: -41.5,39.5 - parent: 60 - type: Transform -- uid: 16147 - type: Catwalk - components: - - pos: -41.5,41.5 - parent: 60 - type: Transform -- uid: 16148 - type: DrinkWhiskeyBottleFull - components: - - pos: -22.381733,-28.112148 - parent: 60 - type: Transform -- uid: 16149 - type: DrinkShotGlass - components: - - pos: -22.694233,-28.299648 - parent: 60 - type: Transform -- uid: 16150 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-17.5 - parent: 60 - type: Transform -- uid: 16151 - type: PosterLegitReportCrimes - components: - - pos: -4.5,-21.5 - parent: 60 - type: Transform -- uid: 16152 - type: ContainmentFieldGenerator - components: - - pos: -3.5,43.5 - parent: 60 - type: Transform -- uid: 16153 - type: WallSolidRust - components: - - pos: -8.5,33.5 - parent: 60 - type: Transform -- uid: 16154 - type: ContainmentFieldGenerator - components: - - pos: -3.5,51.5 - parent: 60 - type: Transform -- uid: 16155 - type: ReinforcedPlasmaWindow - components: - - pos: -7.5,36.5 - parent: 60 - type: Transform -- uid: 16156 - type: ContainmentFieldGenerator - components: - - pos: 4.5,51.5 - parent: 60 - type: Transform -- uid: 16157 - type: WallReinforced - components: - - pos: -40.5,22.5 - parent: 60 - type: Transform -- uid: 16158 - type: ContainmentFieldGenerator - components: - - pos: 4.5,43.5 - parent: 60 - type: Transform -- uid: 16159 - type: SingularityGenerator - components: - - pos: 0.5,47.5 - parent: 60 - type: Transform -- uid: 16160 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: -3.5,40.5 - parent: 60 - type: Transform -- uid: 16161 - type: SignPlaque - components: - - pos: -43.5,10.5 - parent: 60 - type: Transform -- uid: 16162 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: 4.5,40.5 - parent: 60 - type: Transform -- uid: 16163 - type: Emitter - components: - - rot: -1.5707963267948966 rad - pos: 7.5,43.5 - parent: 60 - type: Transform -- uid: 16164 - type: SignSecurity - components: - - pos: -17.5,-21.5 - parent: 60 - type: Transform -- uid: 16165 - type: Emitter - components: - - rot: -1.5707963267948966 rad - pos: 7.5,51.5 - parent: 60 - type: Transform -- uid: 16166 - type: Emitter - components: - - pos: 4.5,54.5 - parent: 60 - type: Transform -- uid: 16167 - type: WallSolid - components: - - pos: 19.5,-39.5 - parent: 60 - type: Transform -- uid: 16168 - type: Emitter - components: - - pos: -3.5,54.5 - parent: 60 - type: Transform -- uid: 16169 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -6.5,51.5 - parent: 60 - type: Transform -- uid: 16170 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -6.5,43.5 - parent: 60 - type: Transform -- uid: 16171 - type: AirlockGlass - components: - - pos: 18.5,-17.5 - parent: 60 - type: Transform -- uid: 16172 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 1.5,30.5 - parent: 60 - type: Transform -- uid: 16173 - type: SMESBasic - components: - - pos: 4.5,34.5 - parent: 60 - type: Transform -- uid: 16174 - type: SubstationBasic - components: - - name: Singulo Reserve Sub - type: MetaData - - pos: 4.5,35.5 - parent: 60 - type: Transform -- uid: 16175 - type: CableMV - components: - - pos: -6.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16176 - type: CableMV - components: - - pos: -5.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16177 - type: CableMV - components: - - pos: -4.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16178 - type: CableMV - components: - - pos: -3.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16179 - type: CableMV - components: - - pos: -2.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16180 - type: CableMV - components: - - pos: -1.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16181 - type: CableMV - components: - - pos: -0.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16182 - type: CableMV - components: - - pos: 0.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16183 - type: CableMV - components: - - pos: 1.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16184 - type: CableMV - components: - - pos: 2.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16185 - type: CableMV - components: - - pos: 3.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16186 - type: CableMV - components: - - pos: 4.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16187 - type: CableMV - components: - - pos: 5.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16188 - type: CableMV - components: - - pos: 6.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16189 - type: CableMV - components: - - pos: 7.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16190 - type: CableMV - components: - - pos: 7.5,41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16191 - type: CableMV - components: - - pos: 7.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16192 - type: CableMV - components: - - pos: 7.5,43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16193 - type: CableMV - components: - - pos: 7.5,44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16194 - type: CableMV - components: - - pos: 7.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16195 - type: CableMV - components: - - pos: 7.5,46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16196 - type: CableMV - components: - - pos: 7.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16197 - type: CableMV - components: - - pos: 7.5,48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16198 - type: CableMV - components: - - pos: 7.5,49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16199 - type: CableMV - components: - - pos: 7.5,50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16200 - type: CableMV - components: - - pos: 7.5,51.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16201 - type: CableMV - components: - - pos: 7.5,52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16202 - type: CableMV - components: - - pos: 7.5,53.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16203 - type: CableMV - components: - - pos: 7.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16204 - type: CableMV - components: - - pos: 6.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16205 - type: CableMV - components: - - pos: 5.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16206 - type: CableMV - components: - - pos: 4.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16207 - type: CableMV - components: - - pos: 3.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16208 - type: CableMV - components: - - pos: 2.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16209 - type: CableMV - components: - - pos: 1.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16210 - type: CableMV - components: - - pos: 0.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16211 - type: CableMV - components: - - pos: -0.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16212 - type: CableMV - components: - - pos: -1.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16213 - type: CableMV - components: - - pos: -2.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16214 - type: CableMV - components: - - pos: -3.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16215 - type: CableMV - components: - - pos: -4.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16216 - type: CableMV - components: - - pos: -5.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16217 - type: CableMV - components: - - pos: -6.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16218 - type: CableMV - components: - - pos: -6.5,53.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16219 - type: CableMV - components: - - pos: -6.5,52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16220 - type: CableMV - components: - - pos: -6.5,51.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16221 - type: CableMV - components: - - pos: -6.5,50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16222 - type: CableMV - components: - - pos: -6.5,49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16223 - type: CableMV - components: - - pos: -6.5,48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16224 - type: CableMV - components: - - pos: -6.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16225 - type: CableMV - components: - - pos: -6.5,46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16226 - type: CableMV - components: - - pos: -6.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16227 - type: CableMV - components: - - pos: -6.5,44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16228 - type: CableMV - components: - - pos: -6.5,43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16229 - type: CableMV - components: - - pos: -6.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16230 - type: CableMV - components: - - pos: -6.5,41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16231 - type: CableHV - components: - - pos: -6.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16232 - type: CableHV - components: - - pos: -6.5,41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16233 - type: CableHV - components: - - pos: -6.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16234 - type: CableHV - components: - - pos: -6.5,43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16235 - type: CableHV - components: - - pos: -6.5,44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16236 - type: CableHV - components: - - pos: -6.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16237 - type: CableHV - components: - - pos: -6.5,46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16238 - type: CableHV - components: - - pos: -6.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16239 - type: CableHV - components: - - pos: -6.5,48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16240 - type: CableHV - components: - - pos: -6.5,49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16241 - type: CableHV - components: - - pos: -6.5,50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16242 - type: CableHV - components: - - pos: -6.5,51.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16243 - type: CableHV - components: - - pos: -6.5,52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16244 - type: CableHV - components: - - pos: -6.5,53.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16245 - type: CableHV - components: - - pos: -6.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16246 - type: CableHV - components: - - pos: -5.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16247 - type: CableHV - components: - - pos: -4.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16248 - type: CableHV - components: - - pos: -3.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16249 - type: CableHV - components: - - pos: -2.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16250 - type: CableHV - components: - - pos: -1.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16251 - type: CableHV - components: - - pos: -0.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16252 - type: CableHV - components: - - pos: 0.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16253 - type: CableHV - components: - - pos: 1.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16254 - type: CableHV - components: - - pos: 2.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16255 - type: CableHV - components: - - pos: 3.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16256 - type: CableHV - components: - - pos: 4.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16257 - type: CableHV - components: - - pos: 5.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16258 - type: CableHV - components: - - pos: 6.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16259 - type: CableHV - components: - - pos: 7.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16260 - type: CableHV - components: - - pos: 7.5,53.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16261 - type: CableHV - components: - - pos: 7.5,52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16262 - type: CableHV - components: - - pos: 7.5,51.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16263 - type: CableHV - components: - - pos: 7.5,50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16264 - type: CableHV - components: - - pos: 7.5,49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16265 - type: CableHV - components: - - pos: 7.5,48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16266 - type: CableHV - components: - - pos: 7.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16267 - type: CableHV - components: - - pos: 7.5,46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16268 - type: CableHV - components: - - pos: 7.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16269 - type: CableHV - components: - - pos: 7.5,44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16270 - type: CableHV - components: - - pos: 7.5,43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16271 - type: CableHV - components: - - pos: 7.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16272 - type: CableHV - components: - - pos: 7.5,41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16273 - type: CableHV - components: - - pos: 7.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16274 - type: CableHV - components: - - pos: 6.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16275 - type: CableHV - components: - - pos: 5.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16276 - type: CableHV - components: - - pos: 4.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16277 - type: CableHV - components: - - pos: 3.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16278 - type: CableHV - components: - - pos: 2.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16279 - type: CableHV - components: - - pos: 1.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16280 - type: CableHV - components: - - pos: 0.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16281 - type: CableHV - components: - - pos: -0.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16282 - type: CableHV - components: - - pos: -1.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16283 - type: CableHV - components: - - pos: -2.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16284 - type: CableHV - components: - - pos: -3.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16285 - type: CableHV - components: - - pos: -4.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16286 - type: CableHV - components: - - pos: -5.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16287 - type: Catwalk - components: - - pos: -6.5,40.5 - parent: 60 - type: Transform -- uid: 16288 - type: Catwalk - components: - - pos: -5.5,40.5 - parent: 60 - type: Transform -- uid: 16289 - type: Catwalk - components: - - pos: -4.5,40.5 - parent: 60 - type: Transform -- uid: 16290 - type: Catwalk - components: - - pos: -3.5,40.5 - parent: 60 - type: Transform -- uid: 16291 - type: Catwalk - components: - - pos: -2.5,40.5 - parent: 60 - type: Transform -- uid: 16292 - type: Catwalk - components: - - pos: -1.5,40.5 - parent: 60 - type: Transform -- uid: 16293 - type: Catwalk - components: - - pos: -0.5,40.5 - parent: 60 - type: Transform -- uid: 16294 - type: Catwalk - components: - - pos: 0.5,40.5 - parent: 60 - type: Transform -- uid: 16295 - type: Catwalk - components: - - pos: 1.5,40.5 - parent: 60 - type: Transform -- uid: 16296 - type: Catwalk - components: - - pos: 2.5,40.5 - parent: 60 - type: Transform -- uid: 16297 - type: Catwalk - components: - - pos: 3.5,40.5 - parent: 60 - type: Transform -- uid: 16298 - type: Catwalk - components: - - pos: 4.5,40.5 - parent: 60 - type: Transform -- uid: 16299 - type: Catwalk - components: - - pos: 5.5,40.5 - parent: 60 - type: Transform -- uid: 16300 - type: Catwalk - components: - - pos: 6.5,40.5 - parent: 60 - type: Transform -- uid: 16301 - type: Catwalk - components: - - pos: 7.5,40.5 - parent: 60 - type: Transform -- uid: 16302 - type: Catwalk - components: - - pos: 7.5,41.5 - parent: 60 - type: Transform -- uid: 16303 - type: Catwalk - components: - - pos: 7.5,42.5 - parent: 60 - type: Transform -- uid: 16304 - type: Catwalk - components: - - pos: 7.5,43.5 - parent: 60 - type: Transform -- uid: 16305 - type: Catwalk - components: - - pos: 7.5,44.5 - parent: 60 - type: Transform -- uid: 16306 - type: Catwalk - components: - - pos: 7.5,45.5 - parent: 60 - type: Transform -- uid: 16307 - type: Catwalk - components: - - pos: 7.5,46.5 - parent: 60 - type: Transform -- uid: 16308 - type: Catwalk - components: - - pos: 7.5,47.5 - parent: 60 - type: Transform -- uid: 16309 - type: Catwalk - components: - - pos: 7.5,48.5 - parent: 60 - type: Transform -- uid: 16310 - type: Catwalk - components: - - pos: 7.5,49.5 - parent: 60 - type: Transform -- uid: 16311 - type: Catwalk - components: - - pos: 7.5,50.5 - parent: 60 - type: Transform -- uid: 16312 - type: Catwalk - components: - - pos: 7.5,51.5 - parent: 60 - type: Transform -- uid: 16313 - type: Catwalk - components: - - pos: 7.5,52.5 - parent: 60 - type: Transform -- uid: 16314 - type: Catwalk - components: - - pos: 7.5,53.5 - parent: 60 - type: Transform -- uid: 16315 - type: Catwalk - components: - - pos: 7.5,54.5 - parent: 60 - type: Transform -- uid: 16316 - type: Catwalk - components: - - pos: 6.5,54.5 - parent: 60 - type: Transform -- uid: 16317 - type: Catwalk - components: - - pos: 5.5,54.5 - parent: 60 - type: Transform -- uid: 16318 - type: Catwalk - components: - - pos: 4.5,54.5 - parent: 60 - type: Transform -- uid: 16319 - type: Catwalk - components: - - pos: 3.5,54.5 - parent: 60 - type: Transform -- uid: 16320 - type: Catwalk - components: - - pos: 2.5,54.5 - parent: 60 - type: Transform -- uid: 16321 - type: Catwalk - components: - - pos: 1.5,54.5 - parent: 60 - type: Transform -- uid: 16322 - type: Catwalk - components: - - pos: 0.5,54.5 - parent: 60 - type: Transform -- uid: 16323 - type: Catwalk - components: - - pos: -0.5,54.5 - parent: 60 - type: Transform -- uid: 16324 - type: Catwalk - components: - - pos: -1.5,54.5 - parent: 60 - type: Transform -- uid: 16325 - type: Catwalk - components: - - pos: -2.5,54.5 - parent: 60 - type: Transform -- uid: 16326 - type: Catwalk - components: - - pos: -3.5,54.5 - parent: 60 - type: Transform -- uid: 16327 - type: Catwalk - components: - - pos: -4.5,54.5 - parent: 60 - type: Transform -- uid: 16328 - type: Catwalk - components: - - pos: -5.5,54.5 - parent: 60 - type: Transform -- uid: 16329 - type: Catwalk - components: - - pos: -6.5,54.5 - parent: 60 - type: Transform -- uid: 16330 - type: Catwalk - components: - - pos: -6.5,53.5 - parent: 60 - type: Transform -- uid: 16331 - type: Catwalk - components: - - pos: -6.5,52.5 - parent: 60 - type: Transform -- uid: 16332 - type: Catwalk - components: - - pos: -6.5,51.5 - parent: 60 - type: Transform -- uid: 16333 - type: Catwalk - components: - - pos: -6.5,50.5 - parent: 60 - type: Transform -- uid: 16334 - type: Catwalk - components: - - pos: -6.5,49.5 - parent: 60 - type: Transform -- uid: 16335 - type: Catwalk - components: - - pos: -6.5,48.5 - parent: 60 - type: Transform -- uid: 16336 - type: Catwalk - components: - - pos: -6.5,47.5 - parent: 60 - type: Transform -- uid: 16337 - type: Catwalk - components: - - pos: -6.5,46.5 - parent: 60 - type: Transform -- uid: 16338 - type: Catwalk - components: - - pos: -6.5,45.5 - parent: 60 - type: Transform -- uid: 16339 - type: Catwalk - components: - - pos: -6.5,44.5 - parent: 60 - type: Transform -- uid: 16340 - type: Catwalk - components: - - pos: -6.5,43.5 - parent: 60 - type: Transform -- uid: 16341 - type: Catwalk - components: - - pos: -6.5,42.5 - parent: 60 - type: Transform -- uid: 16342 - type: Catwalk - components: - - pos: -6.5,41.5 - parent: 60 - type: Transform -- uid: 16343 - type: CableHV - components: - - pos: 4.5,34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16344 - type: CableHV - components: - - pos: 4.5,35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16345 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: 3.5,34.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 16346 - type: CableHV - components: - - pos: 3.5,34.5 - parent: 60 - type: Transform -- uid: 16347 - type: CableHV - components: - - pos: 2.5,34.5 - parent: 60 - type: Transform -- uid: 16348 - type: CableHV - components: - - pos: 1.5,34.5 - parent: 60 - type: Transform -- uid: 16349 - type: ParticleAcceleratorEmitterRightUnfinished - components: - - rot: 3.141592653589793 rad - pos: -0.5,35.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 16350 - type: CableHV - components: - - pos: 0.5,33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16351 - type: CableHV - components: - - pos: 0.5,32.5 - parent: 60 - type: Transform -- uid: 16352 - type: CableHV - components: - - pos: 0.5,31.5 - parent: 60 - type: Transform -- uid: 16353 - type: CableHV - components: - - pos: 0.5,30.5 - parent: 60 - type: Transform -- uid: 16354 - type: CableHV - components: - - pos: 0.5,29.5 - parent: 60 - type: Transform -- uid: 16355 - type: CableHV - components: - - pos: 0.5,28.5 - parent: 60 - type: Transform -- uid: 16356 - type: CableHV - components: - - pos: -0.5,34.5 - parent: 60 - type: Transform -- uid: 16357 - type: CableHV - components: - - pos: -1.5,34.5 - parent: 60 - type: Transform -- uid: 16358 - type: Catwalk - components: - - pos: -81.5,17.5 - parent: 60 - type: Transform -- uid: 16359 - type: CableHV - components: - - pos: -1.5,35.5 - parent: 60 - type: Transform -- uid: 16360 - type: CableHV - components: - - pos: -3.5,35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16361 - type: CableApcExtension - components: - - pos: -3.5,35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16362 - type: CableMV - components: - - pos: -3.5,35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16363 - type: CableHV - components: - - pos: -5.5,39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16364 - type: CableHV - components: - - pos: -5.5,37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16365 - type: CableHV - components: - - pos: -5.5,35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16366 - type: CableMV - components: - - pos: -5.5,38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16367 - type: CableMV - components: - - pos: -5.5,36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16368 - type: CableMV - components: - - pos: 4.5,36.5 - parent: 60 - type: Transform -- uid: 16369 - type: CableMV - components: - - pos: 4.5,37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16370 - type: CableMV - components: - - pos: 4.5,38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16371 - type: CableMV - components: - - pos: 4.5,39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16372 - type: CableMV - components: - - pos: 4.5,35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16373 - type: WallReinforced - components: - - pos: 6.5,34.5 - parent: 60 - type: Transform -- uid: 16374 - type: WallReinforced - components: - - pos: 6.5,35.5 - parent: 60 - type: Transform -- uid: 16375 - type: WallReinforced - components: - - pos: 6.5,36.5 - parent: 60 - type: Transform -- uid: 16376 - type: WallReinforced - components: - - pos: 6.5,37.5 - parent: 60 - type: Transform -- uid: 16377 - type: Grille - components: - - pos: -0.5,37.5 - parent: 60 - type: Transform -- uid: 16378 - type: Grille - components: - - pos: 38.5,17.5 - parent: 60 - type: Transform -- uid: 16379 - type: Pickaxe - components: - - pos: 38.50324,-1.4391279 - parent: 60 - type: Transform -- uid: 16380 - type: Rack - components: - - pos: 44.5,-0.5 - parent: 60 - type: Transform -- uid: 16381 - type: AirlockServiceLocked - components: - - name: Reporter Maint Door - type: MetaData - - pos: 34.5,19.5 - parent: 60 - type: Transform -- uid: 16382 - type: WallReinforced - components: - - pos: 3.5,37.5 - parent: 60 - type: Transform -- uid: 16383 - type: WallReinforced - components: - - pos: 5.5,37.5 - parent: 60 - type: Transform -- uid: 16384 - type: ReinforcedWindow - components: - - pos: 4.5,37.5 - parent: 60 - type: Transform -- uid: 16385 - type: CableMV - components: - - pos: 3.5,35.5 - parent: 60 - type: Transform -- uid: 16386 - type: CableMV - components: - - pos: 2.5,35.5 - parent: 60 - type: Transform -- uid: 16387 - type: CableMV - components: - - pos: 2.5,34.5 - parent: 60 - type: Transform -- uid: 16388 - type: CableMV - components: - - pos: 1.5,34.5 - parent: 60 - type: Transform -- uid: 16389 - type: CableMV - components: - - pos: 0.5,34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16390 - type: CableMV - components: - - pos: -0.5,34.5 - parent: 60 - type: Transform -- uid: 16391 - type: CableMV - components: - - pos: -1.5,34.5 - parent: 60 - type: Transform -- uid: 16392 - type: Catwalk - components: - - pos: -3.5,35.5 - parent: 60 - type: Transform -- uid: 16393 - type: Table - components: - - pos: 36.5,15.5 - parent: 60 - type: Transform -- uid: 16394 - type: CableHV - components: - - pos: -4.5,35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16395 - type: CableMV - components: - - pos: -4.5,35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16396 - type: ReinforcedPlasmaWindow - components: - - pos: -9.5,36.5 - parent: 60 - type: Transform -- uid: 16397 - type: CableHV - components: - - pos: -5.5,38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16398 - type: CableHV - components: - - pos: -5.5,36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16399 - type: CableMV - components: - - pos: -5.5,39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16400 - type: CableMV - components: - - pos: -5.5,37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16401 - type: CableMV - components: - - pos: -5.5,35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16402 - type: ParticleAcceleratorEmitterLeftUnfinished - components: - - rot: 3.141592653589793 rad - pos: 1.5,35.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 16403 - type: ParticleAcceleratorEmitterCenterUnfinished - components: - - rot: 3.141592653589793 rad - pos: 0.5,35.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 16404 - type: ParticleAcceleratorPowerBoxUnfinished - components: - - rot: 3.141592653589793 rad - pos: 0.5,34.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 16405 - type: ParticleAcceleratorEndCapUnfinished - components: - - rot: 3.141592653589793 rad - pos: 0.5,32.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 16406 - type: ParticleAcceleratorFuelChamberUnfinished - components: - - rot: 3.141592653589793 rad - pos: -0.5,33.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 16407 - type: CableApcExtension - components: - - pos: -2.5,35.5 - parent: 60 - type: Transform -- uid: 16408 - type: filingCabinetDrawerRandom - components: - - pos: 37.5,13.5 - parent: 60 - type: Transform -- uid: 16409 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: 34.5,15.5 - parent: 60 - type: Transform -- uid: 16410 - type: Table - components: - - pos: 37.5,15.5 - parent: 60 - type: Transform -- uid: 16411 - type: Grille - components: - - pos: -1.5,37.5 - parent: 60 - type: Transform -- uid: 16412 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 4.5,37.5 - parent: 60 - type: Transform -- uid: 16413 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -2.5,31.5 - parent: 60 - type: Transform -- uid: 16414 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -2.5,32.5 - parent: 60 - type: Transform -- uid: 16415 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -2.5,33.5 - parent: 60 - type: Transform -- uid: 16416 - type: Grille - components: - - pos: -7.5,35.5 - parent: 60 - type: Transform -- uid: 16417 - type: FaxMachineBase - components: - - pos: 36.5,13.5 - parent: 60 - type: Transform - - name: Reporter's Room - type: FaxMachine -- uid: 16418 - type: Catwalk - components: - - pos: -4.5,35.5 - parent: 60 - type: Transform -- uid: 16419 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -2.5,37.5 - parent: 60 - type: Transform -- uid: 16420 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -3.5,37.5 - parent: 60 - type: Transform -- uid: 16421 - type: ReinforcedWindow - components: - - pos: -4.5,37.5 - parent: 60 - type: Transform -- uid: 16422 - type: Grille - components: - - pos: -4.5,37.5 - parent: 60 - type: Transform -- uid: 16423 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -8.5,37.5 - parent: 60 - type: Transform -- uid: 16424 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -7.5,37.5 - parent: 60 - type: Transform -- uid: 16425 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -7.5,33.5 - parent: 60 - type: Transform -- uid: 16426 - type: Grille - components: - - pos: -7.5,34.5 - parent: 60 - type: Transform -- uid: 16427 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -6.5,33.5 - parent: 60 - type: Transform -- uid: 16428 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -5.5,33.5 - parent: 60 - type: Transform -- uid: 16429 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -4.5,33.5 - parent: 60 - type: Transform -- uid: 16430 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -3.5,33.5 - parent: 60 - type: Transform -- uid: 16431 - type: Grille - components: - - pos: -7.5,36.5 - parent: 60 - type: Transform -- uid: 16432 - type: WallReinforced - components: - - pos: -6.5,37.5 - parent: 60 - type: Transform -- uid: 16433 - type: Grille - components: - - pos: 0.5,37.5 - parent: 60 - type: Transform -- uid: 16434 - type: Grille - components: - - pos: 1.5,37.5 - parent: 60 - type: Transform -- uid: 16435 - type: Grille - components: - - pos: 2.5,37.5 - parent: 60 - type: Transform -- uid: 16436 - type: ReinforcedWindow - components: - - pos: -1.5,37.5 - parent: 60 - type: Transform -- uid: 16437 - type: ReinforcedWindow - components: - - pos: -0.5,37.5 - parent: 60 - type: Transform -- uid: 16438 - type: ReinforcedWindow - components: - - pos: 0.5,37.5 - parent: 60 - type: Transform -- uid: 16439 - type: ReinforcedWindow - components: - - pos: 1.5,37.5 - parent: 60 - type: Transform -- uid: 16440 - type: ReinforcedWindow - components: - - pos: 2.5,37.5 - parent: 60 - type: Transform -- uid: 16441 - type: SpawnPointReporter - components: - - pos: 36.5,14.5 - parent: 60 - type: Transform -- uid: 16442 - type: SurveillanceWirelessCameraMovableEntertainment - components: - - name: Channel 13 Camera - type: MetaData - - rot: 3.141592653589793 rad - pos: 36.5,16.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: Channel 13 - type: SurveillanceCamera -- uid: 16443 - type: PosterMapBagel - components: - - pos: 36.5,19.5 - parent: 60 - type: Transform -- uid: 16444 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 35.5,15.5 - parent: 60 - type: Transform -- uid: 16445 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 36.5,15.5 - parent: 60 - type: Transform -- uid: 16446 - type: ClothingUniformJumpsuitReporter - components: - - pos: 37.44484,15.621434 - parent: 60 - type: Transform -- uid: 16447 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 37.5,15.5 - parent: 60 - type: Transform -- uid: 16448 - type: ReinforcedWindow - components: - - pos: -2.5,34.5 - parent: 60 - type: Transform -- uid: 16449 - type: CableMV - components: - - pos: -2.5,35.5 - parent: 60 - type: Transform -- uid: 16450 - type: Catwalk - components: - - pos: -5.5,36.5 - parent: 60 - type: Transform -- uid: 16451 - type: PaperBin5 - components: - - pos: 37.5,17.5 - parent: 60 - type: Transform -- uid: 16452 - type: SignRadiationMed - components: - - pos: -1.5,30.5 - parent: 60 - type: Transform -- uid: 16453 - type: SignRadiationMed - components: - - pos: 2.5,30.5 - parent: 60 - type: Transform -- uid: 16454 - type: ClosetRadiationSuitFilled - components: - - pos: 2.5,29.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16455 - type: ClosetRadiationSuitFilled - components: - - pos: 2.5,28.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16456 - type: ParticleAcceleratorControlBoxUnfinished - components: - - pos: 2.5,27.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 16457 - type: WallReinforced - components: - - pos: -9.5,53.5 - parent: 60 - type: Transform -- uid: 16458 - type: WallReinforced - components: - - pos: -9.5,54.5 - parent: 60 - type: Transform -- uid: 16459 - type: WallReinforced - components: - - pos: -9.5,55.5 - parent: 60 - type: Transform -- uid: 16460 - type: WallReinforced - components: - - pos: -9.5,56.5 - parent: 60 - type: Transform -- uid: 16461 - type: WallReinforced - components: - - pos: -8.5,56.5 - parent: 60 - type: Transform -- uid: 16462 - type: WallReinforced - components: - - pos: -7.5,56.5 - parent: 60 - type: Transform -- uid: 16463 - type: WallReinforced - components: - - pos: -6.5,56.5 - parent: 60 - type: Transform -- uid: 16464 - type: WallReinforced - components: - - pos: -5.5,56.5 - parent: 60 - type: Transform -- uid: 16465 - type: WallReinforced - components: - - pos: -4.5,56.5 - parent: 60 - type: Transform -- uid: 16466 - type: WallReinforced - components: - - pos: -3.5,56.5 - parent: 60 - type: Transform -- uid: 16467 - type: WallReinforced - components: - - pos: -2.5,56.5 - parent: 60 - type: Transform -- uid: 16468 - type: WallReinforced - components: - - pos: -1.5,56.5 - parent: 60 - type: Transform -- uid: 16469 - type: WallReinforced - components: - - pos: -0.5,56.5 - parent: 60 - type: Transform -- uid: 16470 - type: WallReinforced - components: - - pos: 0.5,56.5 - parent: 60 - type: Transform -- uid: 16471 - type: WallReinforced - components: - - pos: 1.5,56.5 - parent: 60 - type: Transform -- uid: 16472 - type: WallReinforced - components: - - pos: 2.5,56.5 - parent: 60 - type: Transform -- uid: 16473 - type: WallReinforced - components: - - pos: 3.5,56.5 - parent: 60 - type: Transform -- uid: 16474 - type: WallReinforced - components: - - pos: 4.5,56.5 - parent: 60 - type: Transform -- uid: 16475 - type: WallReinforced - components: - - pos: 5.5,56.5 - parent: 60 - type: Transform -- uid: 16476 - type: WallReinforced - components: - - pos: 6.5,56.5 - parent: 60 - type: Transform -- uid: 16477 - type: WallReinforced - components: - - pos: 7.5,56.5 - parent: 60 - type: Transform -- uid: 16478 - type: WallReinforced - components: - - pos: 8.5,56.5 - parent: 60 - type: Transform -- uid: 16479 - type: WallReinforced - components: - - pos: 9.5,56.5 - parent: 60 - type: Transform -- uid: 16480 - type: WallReinforced - components: - - pos: 10.5,56.5 - parent: 60 - type: Transform -- uid: 16481 - type: WallReinforced - components: - - pos: 10.5,55.5 - parent: 60 - type: Transform -- uid: 16482 - type: WallReinforced - components: - - pos: 10.5,54.5 - parent: 60 - type: Transform -- uid: 16483 - type: WallReinforced - components: - - pos: 10.5,53.5 - parent: 60 - type: Transform -- uid: 16484 - type: WallReinforced - components: - - pos: 10.5,52.5 - parent: 60 - type: Transform -- uid: 16485 - type: WallReinforced - components: - - pos: 10.5,51.5 - parent: 60 - type: Transform -- uid: 16486 - type: WallReinforced - components: - - pos: 10.5,50.5 - parent: 60 - type: Transform -- uid: 16487 - type: WallReinforced - components: - - pos: 10.5,49.5 - parent: 60 - type: Transform -- uid: 16488 - type: WallReinforced - components: - - pos: 10.5,48.5 - parent: 60 - type: Transform -- uid: 16489 - type: WallReinforced - components: - - pos: 10.5,47.5 - parent: 60 - type: Transform -- uid: 16490 - type: WallReinforced - components: - - pos: 10.5,46.5 - parent: 60 - type: Transform -- uid: 16491 - type: WallReinforced - components: - - pos: 10.5,45.5 - parent: 60 - type: Transform -- uid: 16492 - type: WallReinforced - components: - - pos: 10.5,44.5 - parent: 60 - type: Transform -- uid: 16493 - type: WallReinforced - components: - - pos: 10.5,43.5 - parent: 60 - type: Transform -- uid: 16494 - type: WallReinforced - components: - - pos: 10.5,42.5 - parent: 60 - type: Transform -- uid: 16495 - type: WallReinforced - components: - - pos: 10.5,41.5 - parent: 60 - type: Transform -- uid: 16496 - type: WallReinforced - components: - - pos: 10.5,40.5 - parent: 60 - type: Transform -- uid: 16497 - type: WallReinforced - components: - - pos: 10.5,39.5 - parent: 60 - type: Transform -- uid: 16498 - type: WallReinforced - components: - - pos: 10.5,38.5 - parent: 60 - type: Transform -- uid: 16499 - type: WallReinforced - components: - - pos: 10.5,37.5 - parent: 60 - type: Transform -- uid: 16500 - type: WallReinforced - components: - - pos: 9.5,37.5 - parent: 60 - type: Transform -- uid: 16501 - type: WallReinforced - components: - - pos: 8.5,37.5 - parent: 60 - type: Transform -- uid: 16502 - type: WallReinforced - components: - - pos: 7.5,37.5 - parent: 60 - type: Transform -- uid: 16503 - type: APCBasic - components: - - pos: 5.5,37.5 - parent: 60 - type: Transform -- uid: 16504 - type: CableMV - components: - - pos: 5.5,36.5 - parent: 60 - type: Transform -- uid: 16505 - type: CableMV - components: - - pos: 5.5,37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16506 - type: CableApcExtension - components: - - pos: 5.5,37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16507 - type: CableApcExtension - components: - - pos: 5.5,36.5 - parent: 60 - type: Transform -- uid: 16508 - type: CableApcExtension - components: - - pos: 5.5,35.5 - parent: 60 - type: Transform -- uid: 16509 - type: CableApcExtension - components: - - pos: 5.5,34.5 - parent: 60 - type: Transform -- uid: 16510 - type: CableApcExtension - components: - - pos: 4.5,36.5 - parent: 60 - type: Transform -- uid: 16511 - type: CableApcExtension - components: - - pos: 3.5,36.5 - parent: 60 - type: Transform -- uid: 16512 - type: CableApcExtension - components: - - pos: 2.5,36.5 - parent: 60 - type: Transform -- uid: 16513 - type: CableApcExtension - components: - - pos: 1.5,36.5 - parent: 60 - type: Transform -- uid: 16514 - type: CableApcExtension - components: - - pos: 0.5,36.5 - parent: 60 - type: Transform -- uid: 16515 - type: CableApcExtension - components: - - pos: -0.5,36.5 - parent: 60 - type: Transform -- uid: 16516 - type: CableApcExtension - components: - - pos: -1.5,36.5 - parent: 60 - type: Transform -- uid: 16517 - type: CableApcExtension - components: - - pos: -1.5,35.5 - parent: 60 - type: Transform -- uid: 16518 - type: CableApcExtension - components: - - pos: -1.5,34.5 - parent: 60 - type: Transform -- uid: 16519 - type: CableApcExtension - components: - - pos: -1.5,33.5 - parent: 60 - type: Transform -- uid: 16520 - type: CableApcExtension - components: - - pos: -1.5,32.5 - parent: 60 - type: Transform -- uid: 16521 - type: CableApcExtension - components: - - pos: -1.5,31.5 - parent: 60 - type: Transform -- uid: 16522 - type: CableApcExtension - components: - - pos: 2.5,35.5 - parent: 60 - type: Transform -- uid: 16523 - type: CableApcExtension - components: - - pos: 2.5,34.5 - parent: 60 - type: Transform -- uid: 16524 - type: CableApcExtension - components: - - pos: 2.5,33.5 - parent: 60 - type: Transform -- uid: 16525 - type: CableApcExtension - components: - - pos: 2.5,32.5 - parent: 60 - type: Transform -- uid: 16526 - type: CableApcExtension - components: - - pos: 2.5,31.5 - parent: 60 - type: Transform -- uid: 16527 - type: Grille - components: - - pos: -2.5,34.5 - parent: 60 - type: Transform -- uid: 16528 - type: CableHV - components: - - pos: -2.5,35.5 - parent: 60 - type: Transform -- uid: 16529 - type: CableMV - components: - - pos: -1.5,35.5 - parent: 60 - type: Transform -- uid: 16530 - type: Grille - components: - - pos: -2.5,36.5 - parent: 60 - type: Transform -- uid: 16531 - type: CableApcExtension - components: - - pos: -5.5,35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16532 - type: CableApcExtension - components: - - pos: -5.5,36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16533 - type: CableApcExtension - components: - - pos: -5.5,38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16534 - type: CableApcExtension - components: - - pos: -5.5,39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16535 - type: CableApcExtension - components: - - pos: -5.5,37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16536 - type: Poweredlight - components: - - pos: 3.5,36.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16537 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,33.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16538 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,33.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16539 - type: PoweredSmallLight - components: - - pos: -3.5,36.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16540 - type: GasPipeTJunction - components: - - pos: 50.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16541 - type: BlastDoor - components: - - pos: -5.5,30.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 16543 - type: SignalReceiver -- uid: 16542 - type: BlastDoor - components: - - pos: -6.5,30.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 16543 - type: SignalReceiver -- uid: 16543 - type: SignalButton - components: - - pos: -4.5,30.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 16541 - - port: Toggle - uid: 16542 - type: SignalTransmitter -- uid: 16544 - type: ContainmentFieldGenerator - components: - - pos: -3.5,31.5 - parent: 60 - type: Transform -- uid: 16545 - type: ContainmentFieldGenerator - components: - - pos: -3.5,32.5 - parent: 60 - type: Transform -- uid: 16546 - type: ContainmentFieldGenerator - components: - - pos: -4.5,32.5 - parent: 60 - type: Transform -- uid: 16547 - type: ContainmentFieldGenerator - components: - - pos: -4.5,31.5 - parent: 60 - type: Transform -- uid: 16548 - type: Emitter - components: - - pos: -8.5,31.5 - parent: 60 - type: Transform -- uid: 16549 - type: Emitter - components: - - pos: -7.5,31.5 - parent: 60 - type: Transform -- uid: 16550 - type: PoweredSmallLight - components: - - pos: -6.5,32.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16551 - type: SingularityGenerator - components: - - pos: -7.5,32.5 - parent: 60 - type: Transform -- uid: 16552 - type: CrateEngineeringSingularityCollector - components: - - pos: -5.5,32.5 - parent: 60 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16553 - type: ComputerSolarControl - components: - - rot: 1.5707963267948966 rad - pos: -4.5,23.5 - parent: 60 - type: Transform -- uid: 16554 - type: ComputerPowerMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -4.5,24.5 - parent: 60 - type: Transform -- uid: 16555 - type: ComputerAlert - components: - - rot: 1.5707963267948966 rad - pos: -4.5,25.5 - parent: 60 - type: Transform -- uid: 16556 - type: FirelockGlass - components: - - pos: -4.5,26.5 - parent: 60 - type: Transform -- uid: 16557 - type: FirelockGlass - components: - - pos: -3.5,26.5 - parent: 60 - type: Transform -- uid: 16558 - type: FirelockGlass - components: - - pos: -2.5,26.5 - parent: 60 - type: Transform -- uid: 16559 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -29.5,30.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16560 - type: GasVentScrubber - components: - - pos: -25.5,31.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16561 - type: GasPipeTJunction - components: - - pos: 49.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16562 - type: GasPipeStraight - components: - - pos: -16.5,28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16563 - type: GasPipeTJunction - components: - - pos: -2.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16564 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16565 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16566 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16567 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16568 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16569 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16570 - type: GasPipeStraight - components: - - pos: -2.5,26.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16571 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -2.5,25.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16572 - type: GasPipeStraight - components: - - pos: -2.5,24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16573 - type: GasPipeStraight - components: - - pos: -2.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16574 - type: GasPipeStraight - components: - - pos: -2.5,22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16575 - type: GasPipeStraight - components: - - pos: -2.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16576 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16577 - type: GasPipeStraight - components: - - pos: -2.5,19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16578 - type: GasPipeStraight - components: - - pos: -2.5,18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16579 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16580 - type: GasPipeTJunction - components: - - pos: -0.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16581 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -2.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16582 - type: GasPipeTJunction - components: - - pos: -3.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16583 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16584 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16585 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16586 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16587 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16588 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16589 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16590 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16591 - type: GasPipeStraight - components: - - pos: -3.5,27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16592 - type: GasPipeStraight - components: - - pos: -3.5,26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16593 - type: GasPipeStraight - components: - - pos: -3.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16594 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16595 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16596 - type: GasPipeStraight - components: - - pos: -3.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16597 - type: GasPipeStraight - components: - - pos: -3.5,21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16598 - type: GasPipeStraight - components: - - pos: -3.5,20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16599 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -2.5,20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16600 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16601 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16602 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16603 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16604 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -11.5,30.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16605 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -11.5,29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16606 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16607 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16608 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -0.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16609 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16610 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16611 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 1.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16612 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16613 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,29.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16614 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,30.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16615 - type: GasVentScrubber - components: - - pos: 1.5,31.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16616 - type: GasPipeTJunction - components: - - pos: 0.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16617 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16618 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16619 - type: GasVentPump - components: - - pos: -0.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16620 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 0.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16621 - type: GasVentScrubber - components: - - pos: -1.5,28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16622 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16623 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16624 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16625 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16626 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16627 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16628 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16629 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16630 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16631 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16632 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 1.5,28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16633 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -3.5,25.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16634 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 5.5,28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16635 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 5.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16636 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 0.5,23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16637 - type: GasPipeStraight - components: - - pos: -3.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16638 - type: GasPipeStraight - components: - - pos: -3.5,16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16639 - type: GasPipeStraight - components: - - pos: -3.5,15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16640 - type: GasPipeStraight - components: - - pos: -2.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16641 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -3.5,14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16642 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -2.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16643 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -2.5,14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16644 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16645 - type: GasPipeTJunction - components: - - pos: 1.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16646 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16647 - type: GasPipeTJunction - components: - - pos: 5.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16648 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16649 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16650 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16651 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16652 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16653 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16654 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 10.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16655 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16656 - type: GasPipeTJunction - components: - - pos: 2.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16657 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16658 - type: GasPipeTJunction - components: - - pos: 4.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16659 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16660 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16661 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16662 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16663 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16664 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 10.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16665 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16666 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 12.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16667 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 12.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16668 - type: GasVentScrubber - components: - - pos: 10.5,18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16669 - type: GasVentPump - components: - - pos: 10.5,19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16670 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -2.5,19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16671 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16672 - type: GasVentScrubber - components: - - pos: 3.5,18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16673 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -3.5,20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16674 - type: StoolBar - components: - - pos: 36.5,18.5 - parent: 60 - type: Transform -- uid: 16675 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 0.5,13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16676 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16677 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16678 - type: GasPipeStraight - components: - - pos: 4.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16679 - type: GasPipeStraight - components: - - pos: 4.5,16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16680 - type: GasPipeStraight - components: - - pos: 4.5,15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16681 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 4.5,14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16682 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 5.5,14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16683 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 2.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16684 - type: GasVentPump - components: - - pos: -32.5,32.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16685 - type: SignElectricalMed - components: - - pos: -16.5,51.5 - parent: 60 - type: Transform -- uid: 16686 - type: CableMV - components: - - pos: -10.5,25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16687 - type: CableMV - components: - - pos: -10.5,26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16688 - type: CableMV - components: - - pos: -10.5,27.5 - parent: 60 - type: Transform -- uid: 16689 - type: CableMV - components: - - pos: -10.5,28.5 - parent: 60 - type: Transform -- uid: 16690 - type: CableMV - components: - - pos: -11.5,28.5 - parent: 60 - type: Transform -- uid: 16691 - type: CableMV - components: - - pos: -12.5,28.5 - parent: 60 - type: Transform -- uid: 16692 - type: CableMV - components: - - pos: -13.5,28.5 - parent: 60 - type: Transform -- uid: 16693 - type: CableMV - components: - - pos: -14.5,28.5 - parent: 60 - type: Transform -- uid: 16694 - type: CableMV - components: - - pos: -15.5,28.5 - parent: 60 - type: Transform -- uid: 16695 - type: CableMV - components: - - pos: -16.5,28.5 - parent: 60 - type: Transform -- uid: 16696 - type: CableMV - components: - - pos: -17.5,28.5 - parent: 60 - type: Transform -- uid: 16697 - type: CableMV - components: - - pos: -18.5,28.5 - parent: 60 - type: Transform -- uid: 16698 - type: CableMV - components: - - pos: -18.5,29.5 - parent: 60 - type: Transform -- uid: 16699 - type: CableMV - components: - - pos: -18.5,30.5 - parent: 60 - type: Transform -- uid: 16700 - type: CableMV - components: - - pos: -18.5,31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16701 - type: APCBasic - components: - - pos: 2.5,22.5 - parent: 60 - type: Transform -- uid: 16702 - type: CableMV - components: - - pos: -9.5,28.5 - parent: 60 - type: Transform -- uid: 16703 - type: CableMV - components: - - pos: -8.5,28.5 - parent: 60 - type: Transform -- uid: 16704 - type: CableMV - components: - - pos: -7.5,28.5 - parent: 60 - type: Transform -- uid: 16705 - type: CableMV - components: - - pos: -6.5,28.5 - parent: 60 - type: Transform -- uid: 16706 - type: CableMV - components: - - pos: -5.5,28.5 - parent: 60 - type: Transform -- uid: 16707 - type: CableMV - components: - - pos: -4.5,28.5 - parent: 60 - type: Transform -- uid: 16708 - type: CableMV - components: - - pos: -3.5,28.5 - parent: 60 - type: Transform -- uid: 16709 - type: CableMV - components: - - pos: -2.5,28.5 - parent: 60 - type: Transform -- uid: 16710 - type: CableMV - components: - - pos: -2.5,27.5 - parent: 60 - type: Transform -- uid: 16711 - type: CableMV - components: - - pos: -2.5,26.5 - parent: 60 - type: Transform -- uid: 16712 - type: CableMV - components: - - pos: -2.5,25.5 - parent: 60 - type: Transform -- uid: 16713 - type: CableMV - components: - - pos: -2.5,24.5 - parent: 60 - type: Transform -- uid: 16714 - type: CableMV - components: - - pos: -2.5,23.5 - parent: 60 - type: Transform -- uid: 16715 - type: CableMV - components: - - pos: -1.5,23.5 - parent: 60 - type: Transform -- uid: 16716 - type: CableMV - components: - - pos: -0.5,23.5 - parent: 60 - type: Transform -- uid: 16717 - type: CableMV - components: - - pos: 0.5,23.5 - parent: 60 - type: Transform -- uid: 16718 - type: CableMV - components: - - pos: 1.5,23.5 - parent: 60 - type: Transform -- uid: 16719 - type: CableMV - components: - - pos: 2.5,23.5 - parent: 60 - type: Transform -- uid: 16720 - type: CableMV - components: - - pos: 2.5,22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16721 - type: CableApcExtension - components: - - pos: 2.5,22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16722 - type: CableApcExtension - components: - - pos: 2.5,23.5 - parent: 60 - type: Transform -- uid: 16723 - type: CableApcExtension - components: - - pos: 2.5,24.5 - parent: 60 - type: Transform -- uid: 16724 - type: CableApcExtension - components: - - pos: 1.5,24.5 - parent: 60 - type: Transform -- uid: 16725 - type: CableApcExtension - components: - - pos: 0.5,24.5 - parent: 60 - type: Transform -- uid: 16726 - type: CableApcExtension - components: - - pos: -0.5,24.5 - parent: 60 - type: Transform -- uid: 16727 - type: CableApcExtension - components: - - pos: -1.5,24.5 - parent: 60 - type: Transform -- uid: 16728 - type: CableApcExtension - components: - - pos: -2.5,24.5 - parent: 60 - type: Transform -- uid: 16729 - type: CableApcExtension - components: - - pos: -3.5,24.5 - parent: 60 - type: Transform -- uid: 16730 - type: CableApcExtension - components: - - pos: 3.5,24.5 - parent: 60 - type: Transform -- uid: 16731 - type: CableApcExtension - components: - - pos: 4.5,24.5 - parent: 60 - type: Transform -- uid: 16732 - type: CableApcExtension - components: - - pos: 5.5,24.5 - parent: 60 - type: Transform -- uid: 16733 - type: CableApcExtension - components: - - pos: 6.5,24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16734 - type: CableApcExtension - components: - - pos: 6.5,25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16735 - type: CableApcExtension - components: - - pos: 6.5,26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16736 - type: CableApcExtension - components: - - pos: 6.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16737 - type: CableApcExtension - components: - - pos: 6.5,28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16738 - type: CableApcExtension - components: - - pos: 6.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16739 - type: CableApcExtension - components: - - pos: 6.5,30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16740 - type: CableApcExtension - components: - - pos: 6.5,31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16741 - type: CableApcExtension - components: - - pos: -3.5,25.5 - parent: 60 - type: Transform -- uid: 16742 - type: CableApcExtension - components: - - pos: -3.5,26.5 - parent: 60 - type: Transform -- uid: 16743 - type: CableApcExtension - components: - - pos: -3.5,27.5 - parent: 60 - type: Transform -- uid: 16744 - type: CableApcExtension - components: - - pos: -3.5,28.5 - parent: 60 - type: Transform -- uid: 16745 - type: CableApcExtension - components: - - pos: -2.5,28.5 - parent: 60 - type: Transform -- uid: 16746 - type: CableApcExtension - components: - - pos: -1.5,28.5 - parent: 60 - type: Transform -- uid: 16747 - type: CableApcExtension - components: - - pos: -0.5,28.5 - parent: 60 - type: Transform -- uid: 16748 - type: CableApcExtension - components: - - pos: 0.5,28.5 - parent: 60 - type: Transform -- uid: 16749 - type: CableApcExtension - components: - - pos: 1.5,28.5 - parent: 60 - type: Transform -- uid: 16750 - type: CableApcExtension - components: - - pos: -4.5,28.5 - parent: 60 - type: Transform -- uid: 16751 - type: CableApcExtension - components: - - pos: -5.5,28.5 - parent: 60 - type: Transform -- uid: 16752 - type: CableApcExtension - components: - - pos: -6.5,28.5 - parent: 60 - type: Transform -- uid: 16753 - type: CableApcExtension - components: - - pos: -7.5,28.5 - parent: 60 - type: Transform -- uid: 16754 - type: CableApcExtension - components: - - pos: -8.5,28.5 - parent: 60 - type: Transform -- uid: 16755 - type: CableApcExtension - components: - - pos: -9.5,28.5 - parent: 60 - type: Transform -- uid: 16756 - type: CableApcExtension - components: - - pos: -10.5,28.5 - parent: 60 - type: Transform -- uid: 16757 - type: CableApcExtension - components: - - pos: -11.5,28.5 - parent: 60 - type: Transform -- uid: 16758 - type: CableApcExtension - components: - - pos: -12.5,28.5 - parent: 60 - type: Transform -- uid: 16759 - type: CableApcExtension - components: - - pos: -11.5,29.5 - parent: 60 - type: Transform -- uid: 16760 - type: CableApcExtension - components: - - pos: -11.5,30.5 - parent: 60 - type: Transform -- uid: 16761 - type: CableApcExtension - components: - - pos: -11.5,31.5 - parent: 60 - type: Transform -- uid: 16762 - type: CableApcExtension - components: - - pos: -11.5,32.5 - parent: 60 - type: Transform -- uid: 16763 - type: CableApcExtension - components: - - pos: -6.5,29.5 - parent: 60 - type: Transform -- uid: 16764 - type: CableApcExtension - components: - - pos: -6.5,30.5 - parent: 60 - type: Transform -- uid: 16765 - type: CableApcExtension - components: - - pos: -6.5,31.5 - parent: 60 - type: Transform -- uid: 16766 - type: CableApcExtension - components: - - pos: -6.5,32.5 - parent: 60 - type: Transform -- uid: 16767 - type: CableApcExtension - components: - - pos: -3.5,23.5 - parent: 60 - type: Transform -- uid: 16768 - type: CableApcExtension - components: - - pos: -3.5,22.5 - parent: 60 - type: Transform -- uid: 16769 - type: CableApcExtension - components: - - pos: -3.5,21.5 - parent: 60 - type: Transform -- uid: 16770 - type: CableApcExtension - components: - - pos: -3.5,20.5 - parent: 60 - type: Transform -- uid: 16771 - type: CableApcExtension - components: - - pos: -3.5,19.5 - parent: 60 - type: Transform -- uid: 16772 - type: CableApcExtension - components: - - pos: -3.5,18.5 - parent: 60 - type: Transform -- uid: 16773 - type: CableApcExtension - components: - - pos: -3.5,17.5 - parent: 60 - type: Transform -- uid: 16774 - type: CableApcExtension - components: - - pos: -3.5,16.5 - parent: 60 - type: Transform -- uid: 16775 - type: CableApcExtension - components: - - pos: -3.5,15.5 - parent: 60 - type: Transform -- uid: 16776 - type: CableApcExtension - components: - - pos: -3.5,14.5 - parent: 60 - type: Transform -- uid: 16777 - type: CableApcExtension - components: - - pos: -2.5,14.5 - parent: 60 - type: Transform -- uid: 16778 - type: CableApcExtension - components: - - pos: -1.5,14.5 - parent: 60 - type: Transform -- uid: 16779 - type: CableApcExtension - components: - - pos: -0.5,14.5 - parent: 60 - type: Transform -- uid: 16780 - type: CableApcExtension - components: - - pos: 0.5,14.5 - parent: 60 - type: Transform -- uid: 16781 - type: CableApcExtension - components: - - pos: 0.5,15.5 - parent: 60 - type: Transform -- uid: 16782 - type: CableApcExtension - components: - - pos: 0.5,16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16783 - type: CableApcExtension - components: - - pos: 0.5,17.5 - parent: 60 - type: Transform -- uid: 16784 - type: CableApcExtension - components: - - pos: 0.5,18.5 - parent: 60 - type: Transform -- uid: 16785 - type: CableApcExtension - components: - - pos: -0.5,18.5 - parent: 60 - type: Transform -- uid: 16786 - type: CableApcExtension - components: - - pos: -1.5,18.5 - parent: 60 - type: Transform -- uid: 16787 - type: CableApcExtension - components: - - pos: -2.5,18.5 - parent: 60 - type: Transform -- uid: 16788 - type: CableApcExtension - components: - - pos: 1.5,18.5 - parent: 60 - type: Transform -- uid: 16789 - type: CableApcExtension - components: - - pos: 2.5,18.5 - parent: 60 - type: Transform -- uid: 16790 - type: CableApcExtension - components: - - pos: 3.5,18.5 - parent: 60 - type: Transform -- uid: 16791 - type: CableApcExtension - components: - - pos: 4.5,18.5 - parent: 60 - type: Transform -- uid: 16792 - type: CableApcExtension - components: - - pos: 5.5,18.5 - parent: 60 - type: Transform -- uid: 16793 - type: CableApcExtension - components: - - pos: 6.5,18.5 - parent: 60 - type: Transform -- uid: 16794 - type: CableApcExtension - components: - - pos: 6.5,19.5 - parent: 60 - type: Transform -- uid: 16795 - type: CableApcExtension - components: - - pos: 7.5,19.5 - parent: 60 - type: Transform -- uid: 16796 - type: CableApcExtension - components: - - pos: 8.5,19.5 - parent: 60 - type: Transform -- uid: 16797 - type: CableApcExtension - components: - - pos: 9.5,19.5 - parent: 60 - type: Transform -- uid: 16798 - type: CableApcExtension - components: - - pos: 10.5,19.5 - parent: 60 - type: Transform -- uid: 16799 - type: CableApcExtension - components: - - pos: 11.5,19.5 - parent: 60 - type: Transform -- uid: 16800 - type: CableApcExtension - components: - - pos: 12.5,19.5 - parent: 60 - type: Transform -- uid: 16801 - type: CableApcExtension - components: - - pos: 13.5,19.5 - parent: 60 - type: Transform -- uid: 16802 - type: CableApcExtension - components: - - pos: 3.5,19.5 - parent: 60 - type: Transform -- uid: 16803 - type: CableApcExtension - components: - - pos: 3.5,20.5 - parent: 60 - type: Transform -- uid: 16804 - type: CableApcExtension - components: - - pos: 3.5,20.5 - parent: 60 - type: Transform -- uid: 16805 - type: CableApcExtension - components: - - pos: 5.5,17.5 - parent: 60 - type: Transform -- uid: 16806 - type: CableApcExtension - components: - - pos: 5.5,16.5 - parent: 60 - type: Transform -- uid: 16807 - type: CableApcExtension - components: - - pos: 5.5,15.5 - parent: 60 - type: Transform -- uid: 16808 - type: CableApcExtension - components: - - pos: 5.5,14.5 - parent: 60 - type: Transform -- uid: 16809 - type: CableApcExtension - components: - - pos: 5.5,13.5 - parent: 60 - type: Transform -- uid: 16810 - type: CableApcExtension - components: - - pos: -18.5,31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16811 - type: CableApcExtension - components: - - pos: -18.5,30.5 - parent: 60 - type: Transform -- uid: 16812 - type: CableApcExtension - components: - - pos: -18.5,29.5 - parent: 60 - type: Transform -- uid: 16813 - type: CableApcExtension - components: - - pos: -18.5,28.5 - parent: 60 - type: Transform -- uid: 16814 - type: CableApcExtension - components: - - pos: -18.5,27.5 - parent: 60 - type: Transform -- uid: 16815 - type: CableApcExtension - components: - - pos: -17.5,28.5 - parent: 60 - type: Transform -- uid: 16816 - type: CableApcExtension - components: - - pos: -16.5,28.5 - parent: 60 - type: Transform -- uid: 16817 - type: CableApcExtension - components: - - pos: -15.5,28.5 - parent: 60 - type: Transform -- uid: 16818 - type: CableApcExtension - components: - - pos: -19.5,29.5 - parent: 60 - type: Transform -- uid: 16819 - type: CableApcExtension - components: - - pos: -21.5,29.5 - parent: 60 - type: Transform -- uid: 16820 - type: CableApcExtension - components: - - pos: -22.5,29.5 - parent: 60 - type: Transform -- uid: 16821 - type: CableApcExtension - components: - - pos: -20.5,29.5 - parent: 60 - type: Transform -- uid: 16822 - type: CableApcExtension - components: - - pos: -21.5,30.5 - parent: 60 - type: Transform -- uid: 16823 - type: CableApcExtension - components: - - pos: -21.5,31.5 - parent: 60 - type: Transform -- uid: 16824 - type: CableApcExtension - components: - - pos: -21.5,32.5 - parent: 60 - type: Transform -- uid: 16825 - type: CableApcExtension - components: - - pos: -22.5,31.5 - parent: 60 - type: Transform -- uid: 16826 - type: CableApcExtension - components: - - pos: -23.5,31.5 - parent: 60 - type: Transform -- uid: 16827 - type: CableApcExtension - components: - - pos: -24.5,31.5 - parent: 60 - type: Transform -- uid: 16828 - type: CableApcExtension - components: - - pos: -25.5,31.5 - parent: 60 - type: Transform -- uid: 16829 - type: CableApcExtension - components: - - pos: -26.5,31.5 - parent: 60 - type: Transform -- uid: 16830 - type: CableApcExtension - components: - - pos: -27.5,31.5 - parent: 60 - type: Transform -- uid: 16831 - type: CableApcExtension - components: - - pos: -28.5,31.5 - parent: 60 - type: Transform -- uid: 16832 - type: CableApcExtension - components: - - pos: -29.5,31.5 - parent: 60 - type: Transform -- uid: 16833 - type: CableApcExtension - components: - - pos: -30.5,31.5 - parent: 60 - type: Transform -- uid: 16834 - type: CableApcExtension - components: - - pos: -31.5,31.5 - parent: 60 - type: Transform -- uid: 16835 - type: CableApcExtension - components: - - pos: -32.5,31.5 - parent: 60 - type: Transform -- uid: 16836 - type: CableApcExtension - components: - - pos: -32.5,30.5 - parent: 60 - type: Transform -- uid: 16837 - type: CableApcExtension - components: - - pos: -40.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16838 - type: CableApcExtension - components: - - pos: -38.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16839 - type: CableApcExtension - components: - - pos: -36.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16840 - type: CableApcExtension - components: - - pos: -37.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16841 - type: CableApcExtension - components: - - pos: -35.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16842 - type: CableApcExtension - components: - - pos: -35.5,46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16843 - type: CableApcExtension - components: - - pos: -35.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16844 - type: CableApcExtension - components: - - pos: -40.5,30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16845 - type: CableApcExtension - components: - - pos: -39.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16846 - type: CableApcExtension - components: - - pos: -41.5,31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16847 - type: CableApcExtension - components: - - pos: -42.5,31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16848 - type: CableApcExtension - components: - - pos: -43.5,31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16849 - type: CableApcExtension - components: - - pos: -44.5,31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16850 - type: CableApcExtension - components: - - pos: -45.5,31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16851 - type: CableApcExtension - components: - - pos: -46.5,31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16852 - type: CableApcExtension - components: - - pos: -46.5,32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16853 - type: CableApcExtension - components: - - pos: -46.5,33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16854 - type: CableApcExtension - components: - - pos: -46.5,34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16855 - type: CableApcExtension - components: - - pos: -46.5,35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16856 - type: CableApcExtension - components: - - pos: -46.5,36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16857 - type: CableApcExtension - components: - - pos: -46.5,37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16858 - type: CableApcExtension - components: - - pos: -46.5,38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16859 - type: CableApcExtension - components: - - pos: -46.5,39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16860 - type: CableApcExtension - components: - - pos: -46.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16861 - type: CableApcExtension - components: - - pos: -46.5,41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16862 - type: CableApcExtension - components: - - pos: -46.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16863 - type: CableApcExtension - components: - - pos: -46.5,43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16864 - type: CableApcExtension - components: - - pos: -46.5,44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16865 - type: CableApcExtension - components: - - pos: -46.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16866 - type: CableApcExtension - components: - - pos: -45.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16867 - type: CableApcExtension - components: - - pos: -44.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16868 - type: CableApcExtension - components: - - pos: -43.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16869 - type: CableApcExtension - components: - - pos: -42.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16870 - type: CableApcExtension - components: - - pos: -41.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16871 - type: CableApcExtension - components: - - pos: -40.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16872 - type: CableApcExtension - components: - - pos: -40.5,46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16873 - type: CableApcExtension - components: - - pos: -40.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16874 - type: CableApcExtension - components: - - pos: -40.5,44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16875 - type: CableApcExtension - components: - - pos: -40.5,43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16876 - type: CableApcExtension - components: - - pos: -40.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16877 - type: CableApcExtension - components: - - pos: -40.5,41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16878 - type: CableApcExtension - components: - - pos: -40.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16879 - type: CableApcExtension - components: - - pos: -40.5,39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16880 - type: CableApcExtension - components: - - pos: -40.5,38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16881 - type: CableApcExtension - components: - - pos: -40.5,37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16882 - type: CableApcExtension - components: - - pos: -40.5,36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16883 - type: CableApcExtension - components: - - pos: -40.5,35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16884 - type: CableApcExtension - components: - - pos: -40.5,34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16885 - type: CableApcExtension - components: - - pos: -40.5,33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16886 - type: CableApcExtension - components: - - pos: -40.5,32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16887 - type: CableApcExtension - components: - - pos: -40.5,31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16888 - type: CableApcExtension - components: - - pos: -39.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16889 - type: CableApcExtension - components: - - pos: -38.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16890 - type: CableApcExtension - components: - - pos: -37.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16891 - type: CableApcExtension - components: - - pos: -36.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16892 - type: CableApcExtension - components: - - pos: -35.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16893 - type: CableApcExtension - components: - - pos: -34.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16894 - type: CableApcExtension - components: - - pos: -33.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16895 - type: CableApcExtension - components: - - pos: -32.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16896 - type: CableApcExtension - components: - - pos: -35.5,44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16897 - type: CableApcExtension - components: - - pos: -35.5,43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16898 - type: CableApcExtension - components: - - pos: -35.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16899 - type: CableApcExtension - components: - - pos: -34.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16900 - type: CableApcExtension - components: - - pos: -33.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16901 - type: CableApcExtension - components: - - pos: -32.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16902 - type: CableApcExtension - components: - - pos: -31.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16903 - type: CableApcExtension - components: - - pos: -30.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16904 - type: CableApcExtension - components: - - pos: -29.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16905 - type: CableApcExtension - components: - - pos: -28.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16906 - type: CableApcExtension - components: - - pos: -27.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16907 - type: CableApcExtension - components: - - pos: -27.5,43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16908 - type: CableApcExtension - components: - - pos: -27.5,44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16909 - type: CableApcExtension - components: - - pos: -27.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16910 - type: CableApcExtension - components: - - pos: -27.5,46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16911 - type: CableApcExtension - components: - - pos: -27.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16912 - type: CableApcExtension - components: - - pos: -26.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16913 - type: CableApcExtension - components: - - pos: -25.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16914 - type: CableApcExtension - components: - - pos: -24.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16915 - type: CableApcExtension - components: - - pos: -32.5,32.5 - parent: 60 - type: Transform -- uid: 16916 - type: CableApcExtension - components: - - pos: -33.5,32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16917 - type: CableApcExtension - components: - - pos: -34.5,32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16918 - type: CableApcExtension - components: - - pos: -34.5,33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16919 - type: CableApcExtension - components: - - pos: -34.5,34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16920 - type: CableApcExtension - components: - - pos: -34.5,35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16921 - type: CableApcExtension - components: - - pos: -34.5,36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16922 - type: CableApcExtension - components: - - pos: -34.5,37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16923 - type: CableApcExtension - components: - - pos: -34.5,38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16924 - type: CableApcExtension - components: - - pos: -34.5,39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16925 - type: CableApcExtension - components: - - pos: -34.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16926 - type: CableApcExtension - components: - - pos: -34.5,41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16927 - type: CableApcExtension - components: - - pos: -21.5,33.5 - parent: 60 - type: Transform -- uid: 16928 - type: CableApcExtension - components: - - pos: -21.5,34.5 - parent: 60 - type: Transform -- uid: 16929 - type: CableApcExtension - components: - - pos: -21.5,35.5 - parent: 60 - type: Transform -- uid: 16930 - type: CableApcExtension - components: - - pos: -20.5,35.5 - parent: 60 - type: Transform -- uid: 16931 - type: CableApcExtension - components: - - pos: -19.5,35.5 - parent: 60 - type: Transform -- uid: 16932 - type: CableApcExtension - components: - - pos: -18.5,35.5 - parent: 60 - type: Transform -- uid: 16933 - type: CableApcExtension - components: - - pos: -17.5,35.5 - parent: 60 - type: Transform -- uid: 16934 - type: CableApcExtension - components: - - pos: -16.5,35.5 - parent: 60 - type: Transform -- uid: 16935 - type: CableApcExtension - components: - - pos: -15.5,35.5 - parent: 60 - type: Transform -- uid: 16936 - type: CableApcExtension - components: - - pos: -14.5,35.5 - parent: 60 - type: Transform -- uid: 16937 - type: CableApcExtension - components: - - pos: -13.5,35.5 - parent: 60 - type: Transform -- uid: 16938 - type: CableApcExtension - components: - - pos: -12.5,35.5 - parent: 60 - type: Transform -- uid: 16939 - type: CableApcExtension - components: - - pos: -11.5,35.5 - parent: 60 - type: Transform -- uid: 16940 - type: CableApcExtension - components: - - pos: -11.5,34.5 - parent: 60 - type: Transform -- uid: 16941 - type: CableApcExtension - components: - - pos: -16.5,34.5 - parent: 60 - type: Transform -- uid: 16942 - type: CableApcExtension - components: - - pos: -16.5,33.5 - parent: 60 - type: Transform -- uid: 16943 - type: CableApcExtension - components: - - pos: -16.5,32.5 - parent: 60 - type: Transform -- uid: 16944 - type: CableApcExtension - components: - - pos: -21.5,36.5 - parent: 60 - type: Transform -- uid: 16945 - type: CableApcExtension - components: - - pos: -21.5,37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16946 - type: CableApcExtension - components: - - pos: -21.5,38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16947 - type: CableApcExtension - components: - - pos: -21.5,39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16948 - type: CableApcExtension - components: - - pos: -21.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16949 - type: CableApcExtension - components: - - pos: -21.5,41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16950 - type: CableApcExtension - components: - - pos: -21.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16951 - type: CableApcExtension - components: - - pos: -21.5,43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16952 - type: CableApcExtension - components: - - pos: -21.5,44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16953 - type: CableApcExtension - components: - - pos: -21.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16954 - type: CableApcExtension - components: - - pos: -21.5,46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16955 - type: CableApcExtension - components: - - pos: -21.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16956 - type: CableApcExtension - components: - - pos: -21.5,48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16957 - type: CableApcExtension - components: - - pos: -21.5,49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16958 - type: CableApcExtension - components: - - pos: -21.5,50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16959 - type: CableApcExtension - components: - - pos: -11.5,36.5 - parent: 60 - type: Transform -- uid: 16960 - type: CableApcExtension - components: - - pos: -11.5,37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16961 - type: CableApcExtension - components: - - pos: -11.5,38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16962 - type: CableApcExtension - components: - - pos: -11.5,39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16963 - type: CableApcExtension - components: - - pos: -11.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16964 - type: CableApcExtension - components: - - pos: -11.5,41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16965 - type: CableApcExtension - components: - - pos: -11.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16966 - type: CableApcExtension - components: - - pos: -11.5,43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16967 - type: CableApcExtension - components: - - pos: -11.5,44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16968 - type: CableApcExtension - components: - - pos: -11.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16969 - type: CableApcExtension - components: - - pos: -11.5,46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16970 - type: CableApcExtension - components: - - pos: -11.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16971 - type: CableApcExtension - components: - - pos: -11.5,48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16972 - type: CableApcExtension - components: - - pos: -11.5,49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16973 - type: CableApcExtension - components: - - pos: -11.5,50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16974 - type: CableApcExtension - components: - - pos: -16.5,36.5 - parent: 60 - type: Transform -- uid: 16975 - type: CableApcExtension - components: - - pos: -16.5,37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16976 - type: CableApcExtension - components: - - pos: -16.5,38.5 - parent: 60 - type: Transform -- uid: 16977 - type: CableApcExtension - components: - - pos: -16.5,39.5 - parent: 60 - type: Transform -- uid: 16978 - type: CableApcExtension - components: - - pos: -16.5,40.5 - parent: 60 - type: Transform -- uid: 16979 - type: CableApcExtension - components: - - pos: -16.5,41.5 - parent: 60 - type: Transform -- uid: 16980 - type: CableApcExtension - components: - - pos: -16.5,42.5 - parent: 60 - type: Transform -- uid: 16981 - type: CableApcExtension - components: - - pos: -16.5,43.5 - parent: 60 - type: Transform -- uid: 16982 - type: CableApcExtension - components: - - pos: -17.5,42.5 - parent: 60 - type: Transform -- uid: 16983 - type: CableApcExtension - components: - - pos: -18.5,42.5 - parent: 60 - type: Transform -- uid: 16984 - type: CableApcExtension - components: - - pos: -15.5,42.5 - parent: 60 - type: Transform -- uid: 16985 - type: CableApcExtension - components: - - pos: -14.5,42.5 - parent: 60 - type: Transform -- uid: 16986 - type: CableApcExtension - components: - - pos: -13.5,42.5 - parent: 60 - type: Transform -- uid: 16987 - type: CableApcExtension - components: - - pos: -19.5,42.5 - parent: 60 - type: Transform -- uid: 16988 - type: CableApcExtension - components: - - pos: -20.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16989 - type: CableApcExtension - components: - - pos: -19.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16990 - type: CableApcExtension - components: - - pos: -18.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16991 - type: CableApcExtension - components: - - pos: -17.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16992 - type: CableApcExtension - components: - - pos: -16.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16993 - type: CableApcExtension - components: - - pos: -15.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16994 - type: CableApcExtension - components: - - pos: -14.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16995 - type: CableApcExtension - components: - - pos: -13.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16996 - type: CableApcExtension - components: - - pos: -12.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16997 - type: CableApcExtension - components: - - pos: -20.5,49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16998 - type: CableApcExtension - components: - - pos: -19.5,49.5 - parent: 60 - type: Transform -- uid: 16999 - type: CableApcExtension - components: - - pos: -18.5,49.5 - parent: 60 - type: Transform -- uid: 17000 - type: CableApcExtension - components: - - pos: -17.5,49.5 - parent: 60 - type: Transform -- uid: 17001 - type: CableApcExtension - components: - - pos: -16.5,49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17002 - type: CableApcExtension - components: - - pos: -15.5,49.5 - parent: 60 - type: Transform -- uid: 17003 - type: CableApcExtension - components: - - pos: -14.5,49.5 - parent: 60 - type: Transform -- uid: 17004 - type: CableApcExtension - components: - - pos: -13.5,49.5 - parent: 60 - type: Transform -- uid: 17005 - type: CableApcExtension - components: - - pos: -12.5,49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17006 - type: CableApcExtension - components: - - pos: -22.5,42.5 - parent: 60 - type: Transform -- uid: 17007 - type: CableApcExtension - components: - - pos: -23.5,42.5 - parent: 60 - type: Transform -- uid: 17008 - type: CableApcExtension - components: - - pos: -25.5,42.5 - parent: 60 - type: Transform -- uid: 17009 - type: CableApcExtension - components: - - pos: -26.5,42.5 - parent: 60 - type: Transform -- uid: 17010 - type: CableApcExtension - components: - - pos: -24.5,42.5 - parent: 60 - type: Transform -- uid: 17011 - type: CableApcExtension - components: - - pos: -25.5,41.5 - parent: 60 - type: Transform -- uid: 17012 - type: CableApcExtension - components: - - pos: -25.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17013 - type: CableApcExtension - components: - - pos: -25.5,39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17014 - type: CableApcExtension - components: - - pos: -25.5,38.5 - parent: 60 - type: Transform -- uid: 17015 - type: CableApcExtension - components: - - pos: -25.5,43.5 - parent: 60 - type: Transform -- uid: 17016 - type: CableApcExtension - components: - - pos: -25.5,44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17017 - type: CableApcExtension - components: - - pos: -25.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17018 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,33.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17019 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,33.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17020 - type: Table - components: - - pos: -1.5,29.5 - parent: 60 - type: Transform -- uid: 17021 - type: Table - components: - - pos: -2.5,29.5 - parent: 60 - type: Transform -- uid: 17022 - type: Table - components: - - pos: -3.5,29.5 - parent: 60 - type: Transform -- uid: 17023 - type: CrateEngineeringCableBulk - components: - - pos: -4.5,29.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 17024 - type: SheetSteel - components: - - pos: -3.5282934,29.543653 - parent: 60 - type: Transform -- uid: 17025 - type: SheetSteel - components: - - pos: -3.5282934,29.543653 - parent: 60 - type: Transform -- uid: 17026 - type: SheetSteel - components: - - pos: -3.5282934,29.543653 - parent: 60 - type: Transform -- uid: 17027 - type: SheetGlass - components: - - pos: -2.9657934,29.544163 - parent: 60 - type: Transform -- uid: 17028 - type: SheetGlass - components: - - pos: -2.9657934,29.544163 - parent: 60 - type: Transform -- uid: 17029 - type: SheetGlass - components: - - pos: -2.9657934,29.544163 - parent: 60 - type: Transform -- uid: 17030 - type: SheetPlasteel - components: - - pos: -2.4501684,29.544163 - parent: 60 - type: Transform -- uid: 17031 - type: SheetPlasteel - components: - - pos: -2.4501684,29.544163 - parent: 60 - type: Transform -- uid: 17032 - type: PartRodMetal - components: - - pos: -1.9970434,29.559788 - parent: 60 - type: Transform -- uid: 17033 - type: PartRodMetal - components: - - pos: -1.9970434,29.559788 - parent: 60 - type: Transform -- uid: 17034 - type: Grille - components: - - pos: -39.5,22.5 - parent: 60 - type: Transform -- uid: 17035 - type: LockerElectricalSuppliesFilled - components: - - pos: -10.5,24.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17036 - type: WallReinforced - components: - - pos: -9.5,57.5 - parent: 60 - type: Transform -- uid: 17037 - type: WallReinforced - components: - - pos: -5.5,57.5 - parent: 60 - type: Transform -- uid: 17038 - type: WallReinforced - components: - - pos: -1.5,57.5 - parent: 60 - type: Transform -- uid: 17039 - type: WallReinforced - components: - - pos: 2.5,57.5 - parent: 60 - type: Transform -- uid: 17040 - type: WallReinforced - components: - - pos: 6.5,57.5 - parent: 60 - type: Transform -- uid: 17041 - type: WallReinforced - components: - - pos: 10.5,57.5 - parent: 60 - type: Transform -- uid: 17042 - type: WallReinforced - components: - - pos: 11.5,56.5 - parent: 60 - type: Transform -- uid: 17043 - type: WallReinforced - components: - - pos: 11.5,52.5 - parent: 60 - type: Transform -- uid: 17044 - type: WallReinforced - components: - - pos: 11.5,48.5 - parent: 60 - type: Transform -- uid: 17045 - type: WallReinforced - components: - - pos: 11.5,44.5 - parent: 60 - type: Transform -- uid: 17046 - type: WallReinforced - components: - - pos: 11.5,40.5 - parent: 60 - type: Transform -- uid: 17047 - type: SignRadiationMed - components: - - pos: 6.5,57.5 - parent: 60 - type: Transform -- uid: 17048 - type: SignRadiationMed - components: - - pos: -5.5,57.5 - parent: 60 - type: Transform -- uid: 17049 - type: SignRadiationMed - components: - - pos: 11.5,52.5 - parent: 60 - type: Transform -- uid: 17050 - type: SignRadiationMed - components: - - pos: 11.5,40.5 - parent: 60 - type: Transform -- uid: 17051 - type: Grille - components: - - pos: 11.5,37.5 - parent: 60 - type: Transform -- uid: 17052 - type: Grille - components: - - pos: 11.5,38.5 - parent: 60 - type: Transform -- uid: 17053 - type: Grille - components: - - pos: 11.5,39.5 - parent: 60 - type: Transform -- uid: 17054 - type: Grille - components: - - pos: 11.5,41.5 - parent: 60 - type: Transform -- uid: 17055 - type: Grille - components: - - pos: 11.5,42.5 - parent: 60 - type: Transform -- uid: 17056 - type: Grille - components: - - pos: 11.5,43.5 - parent: 60 - type: Transform -- uid: 17057 - type: Grille - components: - - pos: 11.5,45.5 - parent: 60 - type: Transform -- uid: 17058 - type: Grille - components: - - pos: 11.5,46.5 - parent: 60 - type: Transform -- uid: 17059 - type: Grille - components: - - pos: 11.5,47.5 - parent: 60 - type: Transform -- uid: 17060 - type: Grille - components: - - pos: 11.5,49.5 - parent: 60 - type: Transform -- uid: 17061 - type: Grille - components: - - pos: 11.5,50.5 - parent: 60 - type: Transform -- uid: 17062 - type: Grille - components: - - pos: 11.5,51.5 - parent: 60 - type: Transform -- uid: 17063 - type: Grille - components: - - pos: 11.5,53.5 - parent: 60 - type: Transform -- uid: 17064 - type: Grille - components: - - pos: 11.5,54.5 - parent: 60 - type: Transform -- uid: 17065 - type: Grille - components: - - pos: 11.5,55.5 - parent: 60 - type: Transform -- uid: 17066 - type: Grille - components: - - pos: 9.5,57.5 - parent: 60 - type: Transform -- uid: 17067 - type: Grille - components: - - pos: 8.5,57.5 - parent: 60 - type: Transform -- uid: 17068 - type: Grille - components: - - pos: 7.5,57.5 - parent: 60 - type: Transform -- uid: 17069 - type: Grille - components: - - pos: 5.5,57.5 - parent: 60 - type: Transform -- uid: 17070 - type: Grille - components: - - pos: 4.5,57.5 - parent: 60 - type: Transform -- uid: 17071 - type: Grille - components: - - pos: 3.5,57.5 - parent: 60 - type: Transform -- uid: 17072 - type: Grille - components: - - pos: 1.5,57.5 - parent: 60 - type: Transform -- uid: 17073 - type: Grille - components: - - pos: 0.5,57.5 - parent: 60 - type: Transform -- uid: 17074 - type: Grille - components: - - pos: -0.5,57.5 - parent: 60 - type: Transform -- uid: 17075 - type: Grille - components: - - pos: -10.5,53.5 - parent: 60 - type: Transform -- uid: 17076 - type: Grille - components: - - pos: -10.5,54.5 - parent: 60 - type: Transform -- uid: 17077 - type: Grille - components: - - pos: -10.5,55.5 - parent: 60 - type: Transform -- uid: 17078 - type: Grille - components: - - pos: -8.5,57.5 - parent: 60 - type: Transform -- uid: 17079 - type: Grille - components: - - pos: -7.5,57.5 - parent: 60 - type: Transform -- uid: 17080 - type: Grille - components: - - pos: -6.5,57.5 - parent: 60 - type: Transform -- uid: 17081 - type: Grille - components: - - pos: -4.5,57.5 - parent: 60 - type: Transform -- uid: 17082 - type: Grille - components: - - pos: -3.5,57.5 - parent: 60 - type: Transform -- uid: 17083 - type: Grille - components: - - pos: -2.5,57.5 - parent: 60 - type: Transform -- uid: 17084 - type: WallReinforced - components: - - pos: -10.5,56.5 - parent: 60 - type: Transform -- uid: 17085 - type: CableHV - components: - - pos: 0.5,55.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17086 - type: CableHV - components: - - pos: 0.5,56.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17087 - type: CableHV - components: - - pos: -9.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17088 - type: CableHV - components: - - pos: -8.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17089 - type: CableHV - components: - - pos: -7.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17090 - type: CableHV - components: - - pos: -6.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17091 - type: CableHV - components: - - pos: -5.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17092 - type: CableHV - components: - - pos: -4.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17093 - type: CableHV - components: - - pos: -3.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17094 - type: CableHV - components: - - pos: -2.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17095 - type: CableHV - components: - - pos: -1.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17096 - type: CableHV - components: - - pos: -0.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17097 - type: CableHV - components: - - pos: 0.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17098 - type: CableHV - components: - - pos: 1.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17099 - type: CableHV - components: - - pos: 2.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17100 - type: CableHV - components: - - pos: 3.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17101 - type: CableHV - components: - - pos: 4.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17102 - type: CableHV - components: - - pos: 5.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17103 - type: CableHV - components: - - pos: 6.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17104 - type: CableHV - components: - - pos: 7.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17105 - type: CableHV - components: - - pos: 8.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17106 - type: CableHV - components: - - pos: 9.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17107 - type: CableHV - components: - - pos: 10.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17108 - type: CableHV - components: - - pos: 8.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17109 - type: CableHV - components: - - pos: 9.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17110 - type: CableHV - components: - - pos: 10.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17111 - type: CableHV - components: - - pos: 11.5,56.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17112 - type: CableHV - components: - - pos: 11.5,55.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17113 - type: CableHV - components: - - pos: 11.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17114 - type: CableHV - components: - - pos: 11.5,53.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17115 - type: CableHV - components: - - pos: 11.5,52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17116 - type: CableHV - components: - - pos: 11.5,51.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17117 - type: CableHV - components: - - pos: 11.5,50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17118 - type: CableHV - components: - - pos: 11.5,49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17119 - type: CableHV - components: - - pos: 11.5,48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17120 - type: CableHV - components: - - pos: 11.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17121 - type: CableHV - components: - - pos: 11.5,46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17122 - type: CableHV - components: - - pos: 11.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17123 - type: CableHV - components: - - pos: 11.5,44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17124 - type: CableHV - components: - - pos: 11.5,43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17125 - type: CableHV - components: - - pos: 11.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17126 - type: CableHV - components: - - pos: 11.5,41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17127 - type: CableHV - components: - - pos: 11.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17128 - type: CableHV - components: - - pos: 11.5,39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17129 - type: CableHV - components: - - pos: 11.5,38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17130 - type: CableHV - components: - - pos: 11.5,37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17131 - type: CableHV - components: - - pos: -10.5,53.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17132 - type: CableHV - components: - - pos: -10.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17133 - type: CableHV - components: - - pos: -10.5,55.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17134 - type: CableHV - components: - - pos: -10.5,56.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17135 - type: CableHV - components: - - pos: -9.5,56.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17136 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -53.5,-1.5 - parent: 60 - type: Transform -- uid: 17137 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -53.5,-0.5 - parent: 60 - type: Transform -- uid: 17138 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -53.5,0.5 - parent: 60 - type: Transform -- uid: 17139 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -53.5,1.5 - parent: 60 - type: Transform -- uid: 17140 - type: Wrench - components: - - pos: -54.394527,-6.417943 - parent: 60 - type: Transform -- uid: 17141 - type: WallReinforced - components: - - pos: 9.5,40.5 - parent: 60 - type: Transform -- uid: 17142 - type: WallReinforced - components: - - pos: 9.5,44.5 - parent: 60 - type: Transform -- uid: 17143 - type: WallReinforced - components: - - pos: 9.5,48.5 - parent: 60 - type: Transform -- uid: 17144 - type: WallReinforced - components: - - pos: 9.5,52.5 - parent: 60 - type: Transform -- uid: 17145 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 46.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17146 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17147 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17148 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 45.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17149 - type: WallReinforced - components: - - pos: -8.5,52.5 - parent: 60 - type: Transform -- uid: 17150 - type: WallReinforced - components: - - pos: -8.5,48.5 - parent: 60 - type: Transform -- uid: 17151 - type: WallReinforced - components: - - pos: -8.5,44.5 - parent: 60 - type: Transform -- uid: 17152 - type: WallReinforced - components: - - pos: -8.5,40.5 - parent: 60 - type: Transform -- uid: 17153 - type: CableHV - components: - - pos: 10.5,37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17154 - type: ClosetRadiationSuitFilled - components: - - pos: -51.5,-4.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17155 - type: Rack - components: - - pos: -51.5,-3.5 - parent: 60 - type: Transform -- uid: 17156 - type: MachineAnomalyVessel - components: - - pos: -51.5,-0.5 - parent: 60 - type: Transform -- uid: 17157 - type: MachineAnomalyVessel - components: - - pos: -51.5,-2.5 - parent: 60 - type: Transform -- uid: 17158 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,14.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17159 - type: Grille - components: - - pos: -22.5,55.5 - parent: 60 - type: Transform -- uid: 17160 - type: Grille - components: - - pos: -21.5,55.5 - parent: 60 - type: Transform -- uid: 17161 - type: Grille - components: - - pos: -20.5,55.5 - parent: 60 - type: Transform -- uid: 17162 - type: Grille - components: - - pos: -19.5,55.5 - parent: 60 - type: Transform -- uid: 17163 - type: GrilleBroken - components: - - pos: -18.5,55.5 - parent: 60 - type: Transform -- uid: 17164 - type: Grille - components: - - pos: -17.5,55.5 - parent: 60 - type: Transform -- uid: 17165 - type: Grille - components: - - pos: -16.5,55.5 - parent: 60 - type: Transform -- uid: 17166 - type: Grille - components: - - pos: -15.5,55.5 - parent: 60 - type: Transform -- uid: 17167 - type: Grille - components: - - pos: -14.5,55.5 - parent: 60 - type: Transform -- uid: 17168 - type: Grille - components: - - pos: -13.5,55.5 - parent: 60 - type: Transform -- uid: 17169 - type: Grille - components: - - pos: -12.5,55.5 - parent: 60 - type: Transform -- uid: 17170 - type: WallReinforced - components: - - pos: -26.5,58.5 - parent: 60 - type: Transform -- uid: 17171 - type: Grille - components: - - pos: -28.5,55.5 - parent: 60 - type: Transform -- uid: 17172 - type: Grille - components: - - pos: -29.5,55.5 - parent: 60 - type: Transform -- uid: 17173 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -11.5,55.5 - parent: 60 - type: Transform -- uid: 17174 - type: Grille - components: - - pos: -31.5,55.5 - parent: 60 - type: Transform -- uid: 17175 - type: Grille - components: - - pos: -32.5,55.5 - parent: 60 - type: Transform -- uid: 17176 - type: Grille - components: - - pos: -33.5,55.5 - parent: 60 - type: Transform -- uid: 17177 - type: Grille - components: - - pos: -34.5,55.5 - parent: 60 - type: Transform -- uid: 17178 - type: Grille - components: - - pos: -35.5,55.5 - parent: 60 - type: Transform -- uid: 17179 - type: Grille - components: - - pos: -36.5,55.5 - parent: 60 - type: Transform -- uid: 17180 - type: Grille - components: - - pos: -37.5,55.5 - parent: 60 - type: Transform -- uid: 17181 - type: Grille - components: - - pos: -51.5,54.5 - parent: 60 - type: Transform -- uid: 17182 - type: Grille - components: - - pos: -39.5,55.5 - parent: 60 - type: Transform -- uid: 17183 - type: Grille - components: - - pos: -40.5,55.5 - parent: 60 - type: Transform -- uid: 17184 - type: Grille - components: - - pos: -41.5,55.5 - parent: 60 - type: Transform -- uid: 17185 - type: Grille - components: - - pos: -42.5,55.5 - parent: 60 - type: Transform -- uid: 17186 - type: Grille - components: - - pos: -43.5,55.5 - parent: 60 - type: Transform -- uid: 17187 - type: Grille - components: - - pos: -44.5,55.5 - parent: 60 - type: Transform -- uid: 17188 - type: Grille - components: - - pos: -45.5,55.5 - parent: 60 - type: Transform -- uid: 17189 - type: Grille - components: - - pos: -46.5,55.5 - parent: 60 - type: Transform -- uid: 17190 - type: Grille - components: - - pos: -47.5,55.5 - parent: 60 - type: Transform -- uid: 17191 - type: Grille - components: - - pos: -48.5,55.5 - parent: 60 - type: Transform -- uid: 17192 - type: Grille - components: - - pos: -49.5,55.5 - parent: 60 - type: Transform -- uid: 17193 - type: Grille - components: - - pos: -50.5,55.5 - parent: 60 - type: Transform -- uid: 17194 - type: Grille - components: - - pos: -51.5,55.5 - parent: 60 - type: Transform -- uid: 17195 - type: WallReinforced - components: - - pos: -23.5,58.5 - parent: 60 - type: Transform -- uid: 17196 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -11.5,55.5 - parent: 60 - type: Transform -- uid: 17197 - type: SurveillanceWirelessCameraMovableEntertainment - components: - - name: The Entertainment Channel Camera - type: MetaData - - rot: 1.5707963267948966 rad - pos: 35.5,13.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: The Entertainment Channel - type: SurveillanceCamera -- uid: 17198 - type: Table - components: - - pos: 36.5,13.5 - parent: 60 - type: Transform -- uid: 17199 - type: PottedPlant21 - components: - - pos: 37.474293,18.257666 - parent: 60 - type: Transform -- uid: 17200 - type: PosterLegitReportCrimes - components: - - pos: 37.5,19.5 - parent: 60 - type: Transform -- uid: 17201 - type: PosterLegitNanotrasenLogo - components: - - pos: 35.5,19.5 - parent: 60 - type: Transform -- uid: 17202 - type: ComputerSurveillanceWirelessCameraMonitor - components: - - pos: 35.5,15.5 - parent: 60 - type: Transform -- uid: 17203 - type: MicrophoneInstrument - components: - - pos: 36.63234,15.574559 - parent: 60 - type: Transform -- uid: 17204 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 37.5,16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17205 - type: SurveillanceCameraWirelessRouterEntertainment - components: - - pos: 34.5,13.5 - parent: 60 - type: Transform -- uid: 17206 - type: WallReinforced - components: - - pos: -27.5,58.5 - parent: 60 - type: Transform -- uid: 17207 - type: CarpetGreen - components: - - pos: 36.5,14.5 - parent: 60 - type: Transform -- uid: 17208 - type: Grille - components: - - pos: -51.5,35.5 - parent: 60 - type: Transform -- uid: 17209 - type: Grille - components: - - pos: -51.5,34.5 - parent: 60 - type: Transform -- uid: 17210 - type: Grille - components: - - pos: -51.5,33.5 - parent: 60 - type: Transform -- uid: 17211 - type: Grille - components: - - pos: -51.5,32.5 - parent: 60 - type: Transform -- uid: 17212 - type: Grille - components: - - pos: -51.5,31.5 - parent: 60 - type: Transform -- uid: 17213 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -30.5,55.5 - parent: 60 - type: Transform -- uid: 17214 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -30.5,55.5 - parent: 60 - type: Transform -- uid: 17215 - type: GrilleBroken - components: - - pos: -38.5,55.5 - parent: 60 - type: Transform -- uid: 17216 - type: GrilleBroken - components: - - pos: -51.5,53.5 - parent: 60 - type: Transform -- uid: 17217 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -51.5,53.5 - parent: 60 - type: Transform -- uid: 17218 - type: CarpetGreen - components: - - pos: 37.5,13.5 - parent: 60 - type: Transform -- uid: 17219 - type: CarpetGreen - components: - - pos: 37.5,14.5 - parent: 60 - type: Transform -- uid: 17220 - type: CarpetGreen - components: - - pos: 35.5,14.5 - parent: 60 - type: Transform -- uid: 17221 - type: CarpetGreen - components: - - pos: 35.5,13.5 - parent: 60 - type: Transform -- uid: 17222 - type: GrilleBroken - components: - - pos: -51.5,36.5 - parent: 60 - type: Transform -- uid: 17223 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -51.5,30.5 - parent: 60 - type: Transform -- uid: 17224 - type: CableApcExtension - components: - - pos: -34.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17225 - type: CableApcExtension - components: - - pos: -33.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17226 - type: CableApcExtension - components: - - pos: -32.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17227 - type: CableApcExtension - components: - - pos: -31.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17228 - type: CableApcExtension - components: - - pos: -30.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17229 - type: CableApcExtension - components: - - pos: -29.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17230 - type: ExtinguisherCabinetFilled - components: - - pos: -19.5,32.5 - parent: 60 - type: Transform -- uid: 17231 - type: ExtinguisherCabinetFilled - components: - - pos: -13.5,32.5 - parent: 60 - type: Transform -- uid: 17232 - type: ExtinguisherCabinetFilled - components: - - pos: -31.5,35.5 - parent: 60 - type: Transform -- uid: 17233 - type: ExtinguisherCabinetFilled - components: - - pos: -2.5,32.5 - parent: 60 - type: Transform -- uid: 17234 - type: ExtinguisherCabinetFilled - components: - - pos: -5.5,19.5 - parent: 60 - type: Transform -- uid: 17235 - type: ExtinguisherCabinetFilled - components: - - pos: 3.5,25.5 - parent: 60 - type: Transform -- uid: 17236 - type: TableReinforced - components: - - pos: -14.5,33.5 - parent: 60 - type: Transform -- uid: 17237 - type: TableReinforced - components: - - pos: -14.5,32.5 - parent: 60 - type: Transform -- uid: 17238 - type: TableReinforced - components: - - pos: -15.5,32.5 - parent: 60 - type: Transform -- uid: 17239 - type: ComputerAlert - components: - - rot: 3.141592653589793 rad - pos: -16.5,32.5 - parent: 60 - type: Transform -- uid: 17240 - type: TableReinforced - components: - - pos: -17.5,32.5 - parent: 60 - type: Transform -- uid: 17241 - type: TableReinforced - components: - - pos: -18.5,32.5 - parent: 60 - type: Transform -- uid: 17242 - type: YellowOxygenTankFilled - components: - - pos: -18.527008,32.655674 - parent: 60 - type: Transform -- uid: 17243 - type: YellowOxygenTankFilled - components: - - pos: -18.245758,32.64005 - parent: 60 - type: Transform -- uid: 17244 - type: ClothingEyesGlassesMeson - components: - - pos: -17.4682,32.663837 - parent: 60 - type: Transform -- uid: 17245 - type: ClothingEyesGlassesMeson - components: - - pos: -17.4682,32.476337 - parent: 60 - type: Transform -- uid: 17246 - type: Multitool - components: - - pos: -14.577575,32.601337 - parent: 60 - type: Transform -- uid: 17247 - type: WelderMini - components: - - pos: -14.43695,32.523212 - parent: 60 - type: Transform -- uid: 17248 - type: ClothingHandsGlovesColorBlack - components: - - pos: -14.562539,33.47624 - parent: 60 - type: Transform -- uid: 17249 - type: NitrogenCanister - components: - - pos: -22.5,48.5 - parent: 60 - type: Transform -- uid: 17250 - type: NitrogenCanister - components: - - pos: -22.5,49.5 - parent: 60 - type: Transform -- uid: 17251 - type: StorageCanister - components: - - pos: -21.5,51.5 - parent: 60 - type: Transform -- uid: 17252 - type: StorageCanister - components: - - pos: -20.5,51.5 - parent: 60 - type: Transform -- uid: 17253 - type: StorageCanister - components: - - pos: -19.5,51.5 - parent: 60 - type: Transform -- uid: 17254 - type: ChairOfficeDark - components: - - pos: -17.5,33.5 - parent: 60 - type: Transform -- uid: 17255 - type: ChairOfficeDark - components: - - pos: -15.5,33.5 - parent: 60 - type: Transform -- uid: 17256 - type: ClothingMaskGasAtmos - components: - - pos: -15.446266,32.680546 - parent: 60 - type: Transform -- uid: 17257 - type: ClothingMaskGasAtmos - components: - - pos: -15.243141,32.524296 - parent: 60 - type: Transform -- uid: 17258 - type: CableApcExtension - components: - - pos: -4.5,35.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17259 - type: ReinforcedWindow - components: - - pos: 12.5,-53.5 - parent: 60 - type: Transform -- uid: 17260 - type: RandomVendingDrinks - components: - - pos: -37.5,26.5 - parent: 60 - type: Transform -- uid: 17261 - type: DisposalUnit - components: - - pos: -31.5,26.5 - parent: 60 - type: Transform -- uid: 17262 - type: Chair - components: - - pos: -35.5,26.5 - parent: 60 - type: Transform -- uid: 17263 - type: Chair - components: - - pos: -36.5,26.5 - parent: 60 - type: Transform -- uid: 17264 - type: Chair - components: - - pos: -33.5,26.5 - parent: 60 - type: Transform -- uid: 17265 - type: Chair - components: - - pos: -27.5,26.5 - parent: 60 - type: Transform -- uid: 17266 - type: Chair - components: - - pos: -28.5,26.5 - parent: 60 - type: Transform -- uid: 17267 - type: Chair - components: - - pos: -26.5,26.5 - parent: 60 - type: Transform -- uid: 17268 - type: PottedPlantRandom - components: - - pos: -24.5,26.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 17269 - type: WallSolid - components: - - pos: -32.5,18.5 - parent: 60 - type: Transform -- uid: 17270 - type: WallSolid - components: - - pos: -32.5,18.5 - parent: 60 - type: Transform -- uid: 17271 - type: WallSolid - components: - - pos: -31.5,18.5 - parent: 60 - type: Transform -- uid: 17272 - type: WallSolid - components: - - pos: -33.5,18.5 - parent: 60 - type: Transform -- uid: 17273 - type: WallSolid - components: - - pos: -33.5,19.5 - parent: 60 - type: Transform -- uid: 17274 - type: WallSolid - components: - - pos: -33.5,20.5 - parent: 60 - type: Transform -- uid: 17275 - type: WallSolid - components: - - pos: -33.5,21.5 - parent: 60 - type: Transform -- uid: 17276 - type: WallSolid - components: - - pos: -34.5,18.5 - parent: 60 - type: Transform -- uid: 17277 - type: WallSolid - components: - - pos: -35.5,18.5 - parent: 60 - type: Transform -- uid: 17278 - type: WallSolid - components: - - pos: -36.5,18.5 - parent: 60 - type: Transform -- uid: 17279 - type: WallSolid - components: - - pos: -37.5,18.5 - parent: 60 - type: Transform -- uid: 17280 - type: WallSolid - components: - - pos: -37.5,19.5 - parent: 60 - type: Transform -- uid: 17281 - type: WallSolid - components: - - pos: -37.5,20.5 - parent: 60 - type: Transform -- uid: 17282 - type: WallSolid - components: - - pos: -37.5,21.5 - parent: 60 - type: Transform -- uid: 17283 - type: CarpetGreen - components: - - pos: 36.5,13.5 - parent: 60 - type: Transform -- uid: 17284 - type: MachineAnomalyGenerator - components: - - pos: -58.5,3.5 - parent: 60 - type: Transform - - enabled: False - type: AmbientSound -- uid: 17285 - type: Window - components: - - pos: -39.5,22.5 - parent: 60 - type: Transform -- uid: 17286 - type: WallSolid - components: - - pos: -39.5,18.5 - parent: 60 - type: Transform -- uid: 17287 - type: WallSolid - components: - - pos: -38.5,18.5 - parent: 60 - type: Transform -- uid: 17288 - type: WallSolid - components: - - pos: -53.5,18.5 - parent: 60 - type: Transform -- uid: 17289 - type: WallSolid - components: - - pos: -54.5,18.5 - parent: 60 - type: Transform -- uid: 17290 - type: WallSolid - components: - - pos: -55.5,18.5 - parent: 60 - type: Transform -- uid: 17291 - type: WallReinforced - components: - - pos: -66.5,25.5 - parent: 60 - type: Transform -- uid: 17292 - type: SignSecureMed - components: - - pos: -58.5,0.5 - parent: 60 - type: Transform -- uid: 17293 - type: WallSolid - components: - - pos: -55.5,22.5 - parent: 60 - type: Transform -- uid: 17294 - type: WallSolid - components: - - pos: -54.5,22.5 - parent: 60 - type: Transform -- uid: 17295 - type: PottedPlant22 - components: - - pos: -0.5,-2.5 - parent: 60 - type: Transform -- uid: 17296 - type: WallReinforced - components: - - pos: -52.5,18.5 - parent: 60 - type: Transform -- uid: 17297 - type: TablePlasmaGlass - components: - - pos: -59.5,1.5 - parent: 60 - type: Transform -- uid: 17298 - type: LockerWallMedicalFilled - components: - - pos: 39.5,-15.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17299 - type: LockerWallMedicalFilled - components: - - pos: 41.5,-15.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17300 - type: WallReinforced - components: - - pos: -48.5,26.5 - parent: 60 - type: Transform -- uid: 17301 - type: WallReinforced - components: - - pos: -48.5,22.5 - parent: 60 - type: Transform -- uid: 17302 - type: WallReinforced - components: - - pos: -52.5,22.5 - parent: 60 - type: Transform -- uid: 17303 - type: ReinforcedWindow - components: - - pos: -49.5,18.5 - parent: 60 - type: Transform -- uid: 17304 - type: CrateMedicalScrubs - components: - - pos: 50.5,-20.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17305 - type: ReinforcedWindow - components: - - pos: -51.5,18.5 - parent: 60 - type: Transform -- uid: 17306 - type: ReinforcedWindow - components: - - pos: -52.5,19.5 - parent: 60 - type: Transform -- uid: 17307 - type: ReinforcedWindow - components: - - pos: -52.5,20.5 - parent: 60 - type: Transform -- uid: 17308 - type: ReinforcedWindow - components: - - pos: -52.5,21.5 - parent: 60 - type: Transform -- uid: 17309 - type: ReinforcedWindow - components: - - pos: -48.5,19.5 - parent: 60 - type: Transform -- uid: 17310 - type: ReinforcedWindow - components: - - pos: -48.5,20.5 - parent: 60 - type: Transform -- uid: 17311 - type: ReinforcedWindow - components: - - pos: -48.5,21.5 - parent: 60 - type: Transform -- uid: 17312 - type: ReinforcedWindow - components: - - pos: -48.5,23.5 - parent: 60 - type: Transform -- uid: 17313 - type: ReinforcedWindow - components: - - pos: -48.5,24.5 - parent: 60 - type: Transform -- uid: 17314 - type: ReinforcedWindow - components: - - pos: -48.5,25.5 - parent: 60 - type: Transform -- uid: 17315 - type: ReinforcedWindow - components: - - pos: -52.5,23.5 - parent: 60 - type: Transform -- uid: 17316 - type: ReinforcedWindow - components: - - pos: -52.5,24.5 - parent: 60 - type: Transform -- uid: 17317 - type: ReinforcedWindow - components: - - pos: -52.5,25.5 - parent: 60 - type: Transform -- uid: 17318 - type: WallReinforced - components: - - pos: -66.5,26.5 - parent: 60 - type: Transform -- uid: 17319 - type: WallReinforced - components: - - pos: -65.5,26.5 - parent: 60 - type: Transform -- uid: 17320 - type: WallReinforced - components: - - pos: -64.5,26.5 - parent: 60 - type: Transform -- uid: 17321 - type: WallReinforced - components: - - pos: -63.5,26.5 - parent: 60 - type: Transform -- uid: 17322 - type: WallReinforced - components: - - pos: -62.5,26.5 - parent: 60 - type: Transform -- uid: 17323 - type: WallReinforced - components: - - pos: -61.5,26.5 - parent: 60 - type: Transform -- uid: 17324 - type: WallReinforced - components: - - pos: -60.5,26.5 - parent: 60 - type: Transform -- uid: 17325 - type: WallReinforced - components: - - pos: -60.5,27.5 - parent: 60 - type: Transform -- uid: 17326 - type: WallSolid - components: - - pos: -43.5,18.5 - parent: 60 - type: Transform -- uid: 17327 - type: WallSolid - components: - - pos: -41.5,18.5 - parent: 60 - type: Transform -- uid: 17328 - type: AirlockMaintLocked - components: - - name: dorms - type: MetaData - - pos: -42.5,18.5 - parent: 60 - type: Transform -- uid: 17329 - type: WallSolid - components: - - pos: -56.5,22.5 - parent: 60 - type: Transform -- uid: 17330 - type: PottedPlant22 - components: - - pos: -0.5,-7.5 - parent: 60 - type: Transform -- uid: 17331 - type: WallSolidRust - components: - - pos: 50.5,-4.5 - parent: 60 - type: Transform -- uid: 17332 - type: Window - components: - - pos: 32.5,16.5 - parent: 60 - type: Transform -- uid: 17333 - type: WallSolid - components: - - pos: -56.5,19.5 - parent: 60 - type: Transform -- uid: 17334 - type: WallSolid - components: - - pos: -56.5,21.5 - parent: 60 - type: Transform -- uid: 17335 - type: WallReinforced - components: - - pos: -66.5,24.5 - parent: 60 - type: Transform -- uid: 17336 - type: WallReinforced - components: - - pos: -66.5,23.5 - parent: 60 - type: Transform -- uid: 17337 - type: WallReinforced - components: - - pos: -66.5,22.5 - parent: 60 - type: Transform -- uid: 17338 - type: WallReinforced - components: - - pos: -66.5,21.5 - parent: 60 - type: Transform -- uid: 17339 - type: WallReinforced - components: - - pos: -66.5,20.5 - parent: 60 - type: Transform -- uid: 17340 - type: WallReinforced - components: - - pos: -65.5,20.5 - parent: 60 - type: Transform -- uid: 17341 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17342 - type: WallReinforced - components: - - pos: -63.5,20.5 - parent: 60 - type: Transform -- uid: 17343 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17344 - type: WallReinforced - components: - - pos: -61.5,20.5 - parent: 60 - type: Transform -- uid: 17345 - type: WallReinforced - components: - - pos: -60.5,20.5 - parent: 60 - type: Transform -- uid: 17346 - type: WallReinforced - components: - - pos: -60.5,16.5 - parent: 60 - type: Transform -- uid: 17347 - type: WallReinforced - components: - - pos: -61.5,18.5 - parent: 60 - type: Transform -- uid: 17348 - type: WallReinforced - components: - - pos: -60.5,15.5 - parent: 60 - type: Transform -- uid: 17349 - type: Window - components: - - pos: -60.5,24.5 - parent: 60 - type: Transform -- uid: 17350 - type: Window - components: - - pos: -60.5,25.5 - parent: 60 - type: Transform -- uid: 17351 - type: Grille - components: - - pos: -60.5,21.5 - parent: 60 - type: Transform -- uid: 17352 - type: Grille - components: - - pos: -60.5,25.5 - parent: 60 - type: Transform -- uid: 17353 - type: GrilleBroken - components: - - pos: -60.5,24.5 - parent: 60 - type: Transform -- uid: 17354 - type: GrilleBroken - components: - - pos: -60.5,22.5 - parent: 60 - type: Transform -- uid: 17355 - type: ShardGlass - components: - - pos: -60.46024,22.570763 - parent: 60 - type: Transform -- uid: 17356 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -61.5,25.5 - parent: 60 - type: Transform -- uid: 17357 - type: ComfyChair - components: - - pos: -62.5,25.5 - parent: 60 - type: Transform -- uid: 17358 - type: ComfyChair - components: - - pos: -64.5,25.5 - parent: 60 - type: Transform -- uid: 17359 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -65.5,24.5 - parent: 60 - type: Transform -- uid: 17360 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -64.5,21.5 - parent: 60 - type: Transform -- uid: 17361 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -65.5,22.5 - parent: 60 - type: Transform -- uid: 17362 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -62.5,21.5 - parent: 60 - type: Transform -- uid: 17363 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -64.5,22.5 - parent: 60 - type: Transform -- uid: 17364 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -64.5,23.5 - parent: 60 - type: Transform -- uid: 17365 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -64.5,24.5 - parent: 60 - type: Transform -- uid: 17366 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -63.5,22.5 - parent: 60 - type: Transform -- uid: 17367 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -63.5,23.5 - parent: 60 - type: Transform -- uid: 17368 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -63.5,24.5 - parent: 60 - type: Transform -- uid: 17369 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -62.5,22.5 - parent: 60 - type: Transform -- uid: 17370 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -62.5,23.5 - parent: 60 - type: Transform -- uid: 17371 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -62.5,24.5 - parent: 60 - type: Transform -- uid: 17372 - type: TableWood - components: - - pos: -65.5,21.5 - parent: 60 - type: Transform -- uid: 17373 - type: TableWood - components: - - pos: -65.5,25.5 - parent: 60 - type: Transform -- uid: 17374 - type: TableWood - components: - - pos: -61.5,21.5 - parent: 60 - type: Transform -- uid: 17375 - type: Barricade - components: - - pos: -60.5,23.5 - parent: 60 - type: Transform -- uid: 17376 - type: Grille - components: - - pos: -59.5,18.5 - parent: 60 - type: Transform -- uid: 17377 - type: Grille - components: - - pos: -57.5,18.5 - parent: 60 - type: Transform -- uid: 17378 - type: GrilleBroken - components: - - pos: -58.5,18.5 - parent: 60 - type: Transform -- uid: 17379 - type: WeaponRevolverDeckard - components: - - flags: InContainer - type: MetaData - - parent: 18441 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 17380 - type: TubaInstrument - components: - - pos: 25.5,-13.5 - parent: 60 - type: Transform -- uid: 17381 - type: PottedPlantRandom - components: - - pos: -63.5,21.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 17382 - type: PottedPlantRandom - components: - - pos: -63.5,25.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 17383 - type: PosterLegitCohibaRobustoAd - components: - - pos: -66.5,23.5 - parent: 60 - type: Transform -- uid: 17384 - type: PosterLegitHighClassMartini - components: - - pos: -63.5,26.5 - parent: 60 - type: Transform -- uid: 17385 - type: Lamp - components: - - pos: -65.39612,21.710405 - parent: 60 - type: Transform -- uid: 17386 - type: TablePlasmaGlass - components: - - pos: -59.5,2.5 - parent: 60 - type: Transform -- uid: 17387 - type: Pen - components: - - pos: -61.231888,21.554688 - parent: 60 - type: Transform -- uid: 17388 - type: BoxFolderBlack - components: - - pos: -61.544388,21.585938 - parent: 60 - type: Transform -- uid: 17389 - type: Paper - components: - - pos: -61.497513,21.710938 - parent: 60 - type: Transform -- uid: 17390 - type: Paper - components: - - pos: -61.497513,21.710938 - parent: 60 - type: Transform -- uid: 17391 - type: Paper - components: - - pos: -61.497513,21.710938 - parent: 60 - type: Transform -- uid: 17392 - type: Paper - components: - - pos: -61.497513,21.710938 - parent: 60 - type: Transform -- uid: 17393 - type: Paper - components: - - pos: -61.497513,21.710938 - parent: 60 - type: Transform -- uid: 17394 - type: CableApcExtension - components: - - pos: -63.5,23.5 - parent: 60 - type: Transform -- uid: 17395 - type: CableApcExtension - components: - - pos: -62.5,23.5 - parent: 60 - type: Transform -- uid: 17396 - type: CableApcExtension - components: - - pos: -61.5,23.5 - parent: 60 - type: Transform -- uid: 17397 - type: CableApcExtension - components: - - pos: -60.5,23.5 - parent: 60 - type: Transform -- uid: 17398 - type: CableApcExtension - components: - - pos: -59.5,23.5 - parent: 60 - type: Transform -- uid: 17399 - type: CableApcExtension - components: - - pos: -59.5,21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17400 - type: CableApcExtension - components: - - pos: -59.5,22.5 - parent: 60 - type: Transform -- uid: 17401 - type: CableApcExtension - components: - - pos: -59.5,20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17402 - type: CableApcExtension - components: - - pos: -58.5,20.5 - parent: 60 - type: Transform -- uid: 17403 - type: CableApcExtension - components: - - pos: -58.5,19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17404 - type: CableApcExtension - components: - - pos: -58.5,14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17405 - type: CableApcExtension - components: - - pos: -58.5,15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17406 - type: CableApcExtension - components: - - pos: -57.5,20.5 - parent: 60 - type: Transform -- uid: 17407 - type: CableApcExtension - components: - - pos: -56.5,20.5 - parent: 60 - type: Transform -- uid: 17408 - type: CableApcExtension - components: - - pos: -55.5,20.5 - parent: 60 - type: Transform -- uid: 17409 - type: CableApcExtension - components: - - pos: -54.5,20.5 - parent: 60 - type: Transform -- uid: 17410 - type: CableApcExtension - components: - - pos: -58.5,24.5 - parent: 60 - type: Transform -- uid: 17411 - type: CableApcExtension - components: - - pos: -57.5,24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17412 - type: CableApcExtension - components: - - pos: -56.5,24.5 - parent: 60 - type: Transform -- uid: 17413 - type: CableApcExtension - components: - - pos: -55.5,24.5 - parent: 60 - type: Transform -- uid: 17414 - type: CableApcExtension - components: - - pos: -54.5,24.5 - parent: 60 - type: Transform -- uid: 17415 - type: CableApcExtension - components: - - pos: -46.5,24.5 - parent: 60 - type: Transform -- uid: 17416 - type: CableApcExtension - components: - - pos: -45.5,24.5 - parent: 60 - type: Transform -- uid: 17417 - type: CableApcExtension - components: - - pos: -44.5,24.5 - parent: 60 - type: Transform -- uid: 17418 - type: CableApcExtension - components: - - pos: -43.5,24.5 - parent: 60 - type: Transform -- uid: 17419 - type: CableApcExtension - components: - - pos: -42.5,24.5 - parent: 60 - type: Transform -- uid: 17420 - type: CableApcExtension - components: - - pos: -41.5,24.5 - parent: 60 - type: Transform -- uid: 17421 - type: CableApcExtension - components: - - pos: -40.5,24.5 - parent: 60 - type: Transform -- uid: 17422 - type: CableApcExtension - components: - - pos: -39.5,24.5 - parent: 60 - type: Transform -- uid: 17423 - type: CableApcExtension - components: - - pos: -38.5,24.5 - parent: 60 - type: Transform -- uid: 17424 - type: CableApcExtension - components: - - pos: -38.5,23.5 - parent: 60 - type: Transform -- uid: 17425 - type: CableApcExtension - components: - - pos: -38.5,22.5 - parent: 60 - type: Transform -- uid: 17426 - type: CableApcExtension - components: - - pos: -38.5,21.5 - parent: 60 - type: Transform -- uid: 17427 - type: CableApcExtension - components: - - pos: -38.5,20.5 - parent: 60 - type: Transform -- uid: 17428 - type: CableApcExtension - components: - - pos: -38.5,19.5 - parent: 60 - type: Transform -- uid: 17429 - type: CableApcExtension - components: - - pos: -35.5,23.5 - parent: 60 - type: Transform -- uid: 17430 - type: CableApcExtension - components: - - pos: -35.5,22.5 - parent: 60 - type: Transform -- uid: 17431 - type: CableApcExtension - components: - - pos: -35.5,21.5 - parent: 60 - type: Transform -- uid: 17432 - type: CableApcExtension - components: - - pos: -35.5,20.5 - parent: 60 - type: Transform -- uid: 17433 - type: CableApcExtension - components: - - pos: -35.5,19.5 - parent: 60 - type: Transform -- uid: 17434 - type: CableApcExtension - components: - - pos: -31.5,23.5 - parent: 60 - type: Transform -- uid: 17435 - type: CableApcExtension - components: - - pos: -31.5,22.5 - parent: 60 - type: Transform -- uid: 17436 - type: CableApcExtension - components: - - pos: -31.5,21.5 - parent: 60 - type: Transform -- uid: 17437 - type: CableApcExtension - components: - - pos: -31.5,20.5 - parent: 60 - type: Transform -- uid: 17438 - type: CableApcExtension - components: - - pos: -31.5,19.5 - parent: 60 - type: Transform -- uid: 17439 - type: CableApcExtension - components: - - pos: -42.5,23.5 - parent: 60 - type: Transform -- uid: 17440 - type: CableApcExtension - components: - - pos: -42.5,19.5 - parent: 60 - type: Transform -- uid: 17441 - type: CableApcExtension - components: - - pos: -42.5,20.5 - parent: 60 - type: Transform -- uid: 17442 - type: CableApcExtension - components: - - pos: -42.5,21.5 - parent: 60 - type: Transform -- uid: 17443 - type: CableApcExtension - components: - - pos: -42.5,22.5 - parent: 60 - type: Transform -- uid: 17444 - type: CableApcExtension - components: - - pos: -43.5,20.5 - parent: 60 - type: Transform -- uid: 17445 - type: CableApcExtension - components: - - pos: -44.5,20.5 - parent: 60 - type: Transform -- uid: 17446 - type: CableApcExtension - components: - - pos: -45.5,20.5 - parent: 60 - type: Transform -- uid: 17447 - type: CableApcExtension - components: - - pos: -46.5,20.5 - parent: 60 - type: Transform -- uid: 17448 - type: Airlock - components: - - name: Dorm Room 5 - type: MetaData - - pos: -56.5,24.5 - parent: 60 - type: Transform -- uid: 17449 - type: SheetSteel1 - components: - - pos: -56.463734,20.387777 - parent: 60 - type: Transform -- uid: 17450 - type: Bed - components: - - pos: -55.5,25.5 - parent: 60 - type: Transform -- uid: 17451 - type: Bed - components: - - pos: -55.5,23.5 - parent: 60 - type: Transform -- uid: 17452 - type: Bed - components: - - pos: -55.5,21.5 - parent: 60 - type: Transform -- uid: 17453 - type: ChairOfficeDark - components: - - pos: -54.5,20.5 - parent: 60 - type: Transform -- uid: 17454 - type: Bed - components: - - pos: -45.5,25.5 - parent: 60 - type: Transform -- uid: 17455 - type: Bed - components: - - pos: -45.5,23.5 - parent: 60 - type: Transform -- uid: 17456 - type: Bed - components: - - pos: -45.5,21.5 - parent: 60 - type: Transform -- uid: 17457 - type: Bed - components: - - pos: -45.5,19.5 - parent: 60 - type: Transform -- uid: 17458 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17459 - type: Airlock - components: - - name: Dorm Room 3 - type: MetaData - - pos: -44.5,24.5 - parent: 60 - type: Transform -- uid: 17460 - type: Airlock - components: - - name: Dorm Room 2 - type: MetaData - - pos: -35.5,22.5 - parent: 60 - type: Transform -- uid: 17461 - type: Airlock - components: - - name: Dorm Room 1 - type: MetaData - - pos: -31.5,22.5 - parent: 60 - type: Transform -- uid: 17462 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: -39.5,21.5 - parent: 60 - type: Transform -- uid: 17463 - type: Table - components: - - pos: -39.5,19.5 - parent: 60 - type: Transform -- uid: 17464 - type: Table - components: - - pos: -38.5,19.5 - parent: 60 - type: Transform -- uid: 17465 - type: Window - components: - - pos: -40.5,19.5 - parent: 60 - type: Transform -- uid: 17466 - type: PoweredSmallLight - components: - - pos: -34.5,21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17467 - type: PoweredSmallLight - components: - - pos: -30.5,21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17468 - type: PoweredSmallLight - components: - - pos: -46.5,21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17469 - type: PoweredSmallLight - components: - - pos: -46.5,25.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17470 - type: PoweredSmallLight - components: - - pos: -54.5,25.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17471 - type: PoweredSmallLight - components: - - pos: -54.5,21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17472 - type: AirCanister - components: - - pos: -19.5,30.5 - parent: 60 - type: Transform -- uid: 17473 - type: WallReinforced - components: - - pos: -56.5,28.5 - parent: 60 - type: Transform -- uid: 17474 - type: WallReinforced - components: - - pos: -56.5,29.5 - parent: 60 - type: Transform -- uid: 17475 - type: OxygenCanister - components: - - pos: -55.5,16.5 - parent: 60 - type: Transform -- uid: 17476 - type: WallReinforced - components: - - pos: -60.5,29.5 - parent: 60 - type: Transform -- uid: 17477 - type: WallReinforced - components: - - pos: -60.5,28.5 - parent: 60 - type: Transform -- uid: 17478 - type: NitrogenCanister - components: - - pos: -54.5,16.5 - parent: 60 - type: Transform -- uid: 17479 - type: WarpPoint - components: - - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 7536 - type: Transform - - location: Syndi Puddle - type: WarpPoint -- uid: 17480 - type: WallSolid - components: - - pos: 26.5,13.5 - parent: 60 - type: Transform -- uid: 17481 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -25.5,47.5 - parent: 60 - type: Transform -- uid: 17482 - type: CableApcExtension - components: - - pos: -58.5,25.5 - parent: 60 - type: Transform -- uid: 17483 - type: CableApcExtension - components: - - pos: -58.5,26.5 - parent: 60 - type: Transform -- uid: 17484 - type: CableApcExtension - components: - - pos: -58.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17485 - type: CableApcExtension - components: - - pos: -58.5,28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17486 - type: CableApcExtension - components: - - pos: -42.5,18.5 - parent: 60 - type: Transform -- uid: 17487 - type: CableApcExtension - components: - - pos: -42.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17488 - type: CableApcExtension - components: - - pos: -43.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17489 - type: CableApcExtension - components: - - pos: -44.5,17.5 - parent: 60 - type: Transform -- uid: 17490 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -25.5,50.5 - parent: 60 - type: Transform -- uid: 17491 - type: BikeHorn - components: - - flags: InContainer - type: MetaData - - parent: 18441 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 17492 - type: CrayonRainbow - components: - - flags: InContainer - type: MetaData - - parent: 18441 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 17493 - type: FirelockGlass - components: - - pos: -26.5,-24.5 - parent: 60 - type: Transform -- uid: 17494 - type: CableMV - components: - - pos: -44.5,14.5 - parent: 60 - type: Transform -- uid: 17495 - type: CableApcExtension - components: - - pos: -41.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17496 - type: CableApcExtension - components: - - pos: -40.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17497 - type: CableApcExtension - components: - - pos: -39.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17498 - type: CableApcExtension - components: - - pos: -38.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17499 - type: CableApcExtension - components: - - pos: -37.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17500 - type: CableApcExtension - components: - - pos: -36.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17501 - type: CableApcExtension - components: - - pos: -28.5,17.5 - parent: 60 - type: Transform -- uid: 17502 - type: CableApcExtension - components: - - pos: -29.5,17.5 - parent: 60 - type: Transform -- uid: 17503 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 52.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17504 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17505 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 54.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17506 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17507 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17508 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17509 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 37.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17510 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17511 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17512 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17513 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17514 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17515 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17516 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17517 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17518 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17519 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17520 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17521 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17522 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17523 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17524 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17525 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 21.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17526 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17527 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17528 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17529 - type: GasPipeTJunction - components: - - pos: 41.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17530 - type: GasPipeStraight - components: - - pos: 41.5,22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17531 - type: GasPipeStraight - components: - - pos: 41.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17532 - type: GasPipeStraight - components: - - pos: 41.5,20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17533 - type: GasPipeStraight - components: - - pos: 41.5,19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17534 - type: GasPipeStraight - components: - - pos: 41.5,18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17535 - type: GasPipeStraight - components: - - pos: 41.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17536 - type: GasPipeStraight - components: - - pos: 41.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17537 - type: GasPipeStraight - components: - - pos: 41.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17538 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 39.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17539 - type: GasPipeStraight - components: - - pos: 41.5,13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17540 - type: GasPipeStraight - components: - - pos: 41.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17541 - type: GasPipeStraight - components: - - pos: 41.5,11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17542 - type: GasPipeStraight - components: - - pos: 41.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17543 - type: GasPipeStraight - components: - - pos: 41.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17544 - type: GasPipeStraight - components: - - pos: 41.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17545 - type: GasPipeFourway - components: - - pos: 41.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17546 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17547 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17548 - type: GasPipeStraight - components: - - pos: 39.5,10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17549 - type: GasPipeStraight - components: - - pos: 39.5,11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17550 - type: GasPipeStraight - components: - - pos: 39.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17551 - type: Grille - components: - - pos: -52.5,23.5 - parent: 60 - type: Transform -- uid: 17552 - type: Grille - components: - - pos: -52.5,24.5 - parent: 60 - type: Transform -- uid: 17553 - type: Grille - components: - - pos: -52.5,25.5 - parent: 60 - type: Transform -- uid: 17554 - type: Grille - components: - - pos: -52.5,21.5 - parent: 60 - type: Transform -- uid: 17555 - type: Grille - components: - - pos: -52.5,20.5 - parent: 60 - type: Transform -- uid: 17556 - type: Grille - components: - - pos: -52.5,19.5 - parent: 60 - type: Transform -- uid: 17557 - type: Grille - components: - - pos: -51.5,18.5 - parent: 60 - type: Transform -- uid: 17558 - type: CableApcExtension - components: - - pos: -44.5,14.5 - parent: 60 - type: Transform -- uid: 17559 - type: Grille - components: - - pos: -49.5,18.5 - parent: 60 - type: Transform -- uid: 17560 - type: Grille - components: - - pos: -48.5,19.5 - parent: 60 - type: Transform -- uid: 17561 - type: Grille - components: - - pos: -48.5,20.5 - parent: 60 - type: Transform -- uid: 17562 - type: Grille - components: - - pos: -48.5,21.5 - parent: 60 - type: Transform -- uid: 17563 - type: Grille - components: - - pos: -48.5,23.5 - parent: 60 - type: Transform -- uid: 17564 - type: Grille - components: - - pos: -48.5,24.5 - parent: 60 - type: Transform -- uid: 17565 - type: Grille - components: - - pos: -48.5,25.5 - parent: 60 - type: Transform -- uid: 17566 - type: WallReinforced - components: - - pos: -62.5,18.5 - parent: 60 - type: Transform -- uid: 17567 - type: SignDirectionalDorms - components: - - rot: -1.5707963267948966 rad - pos: -17.5,22.5 - parent: 60 - type: Transform -- uid: 17568 - type: AirlockGlass - components: - - name: Laundry Room - type: MetaData - - pos: -38.5,22.5 - parent: 60 - type: Transform -- uid: 17569 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17570 - type: GasPipeTJunction - components: - - pos: -38.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17571 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17572 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17573 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17574 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,0.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 17575 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17576 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17577 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17578 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17579 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,1.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 17580 - type: GasPipeTJunction - components: - - pos: -43.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17581 - type: GasPipeStraight - components: - - pos: -43.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17582 - type: GasPipeStraight - components: - - pos: -43.5,23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17583 - type: GasPipeTJunction - components: - - pos: -30.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17584 - type: GasPipeStraight - components: - - pos: -41.5,22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17585 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -31.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17586 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -41.5,19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17587 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -43.5,21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17588 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17589 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17590 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17591 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17592 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17593 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17594 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,2.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 17595 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17596 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17597 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17598 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17599 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17600 - type: Airlock - components: - - name: Dorm Room 4 - type: MetaData - - pos: -44.5,20.5 - parent: 60 - type: Transform -- uid: 17601 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -46.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17602 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -46.5,21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17603 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -46.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17604 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -46.5,19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17605 - type: GasPipeStraight - components: - - pos: -38.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17606 - type: GasPipeStraight - components: - - pos: -38.5,23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17607 - type: GasPipeStraight - components: - - pos: -38.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17608 - type: GasPipeStraight - components: - - pos: -38.5,21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17609 - type: GasPipeStraight - components: - - pos: -36.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17610 - type: GasPipeStraight - components: - - pos: -36.5,23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17611 - type: GasPipeStraight - components: - - pos: -36.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17612 - type: GasPipeStraight - components: - - pos: -36.5,21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17613 - type: GasPipeStraight - components: - - pos: -34.5,22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17614 - type: GasPipeStraight - components: - - pos: -34.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17615 - type: GasPipeStraight - components: - - pos: -30.5,22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17616 - type: GasPipeStraight - components: - - pos: -30.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17617 - type: GasPipeStraight - components: - - pos: -32.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17618 - type: GasPipeStraight - components: - - pos: -32.5,23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17619 - type: GasPipeStraight - components: - - pos: -32.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17620 - type: GasPipeStraight - components: - - pos: -32.5,21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17621 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -34.5,20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17622 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -30.5,20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17623 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -32.5,20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17624 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -36.5,20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17625 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -38.5,20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17626 - type: GasVentScrubber - components: - - pos: 24.5,-0.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 17627 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -15.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17628 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -30.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17629 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 22.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17630 - type: TelecomServer - components: - - pos: 24.5,0.5 - parent: 60 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 17633 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 17631 - type: GasVentScrubber - components: - - pos: -31.5,24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17632 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -15.5,19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17633 - type: EncryptionKeyCommon - components: - - flags: InContainer - type: MetaData - - parent: 17630 - type: Transform - - canCollide: False - type: Physics -- uid: 17634 - type: CarpetGreen - components: - - pos: -47.5,23.5 - parent: 60 - type: Transform -- uid: 17635 - type: CarpetGreen - components: - - pos: -47.5,24.5 - parent: 60 - type: Transform -- uid: 17636 - type: CarpetGreen - components: - - pos: -47.5,25.5 - parent: 60 - type: Transform -- uid: 17637 - type: CarpetGreen - components: - - pos: -46.5,23.5 - parent: 60 - type: Transform -- uid: 17638 - type: CarpetGreen - components: - - pos: -46.5,24.5 - parent: 60 - type: Transform -- uid: 17639 - type: CarpetGreen - components: - - pos: -46.5,25.5 - parent: 60 - type: Transform -- uid: 17640 - type: CarpetPink - components: - - pos: -53.5,23.5 - parent: 60 - type: Transform -- uid: 17641 - type: CarpetPink - components: - - pos: -54.5,23.5 - parent: 60 - type: Transform -- uid: 17642 - type: CarpetPink - components: - - pos: -54.5,24.5 - parent: 60 - type: Transform -- uid: 17643 - type: CarpetBlue - components: - - pos: -54.5,21.5 - parent: 60 - type: Transform -- uid: 17644 - type: CarpetBlue - components: - - pos: -54.5,20.5 - parent: 60 - type: Transform -- uid: 17645 - type: CarpetBlue - components: - - pos: -54.5,19.5 - parent: 60 - type: Transform -- uid: 17646 - type: CarpetBlue - components: - - pos: -53.5,21.5 - parent: 60 - type: Transform -- uid: 17647 - type: CarpetBlue - components: - - pos: -53.5,20.5 - parent: 60 - type: Transform -- uid: 17648 - type: CarpetBlue - components: - - pos: -53.5,19.5 - parent: 60 - type: Transform -- uid: 17649 - type: CarpetPurple - components: - - pos: -47.5,21.5 - parent: 60 - type: Transform -- uid: 17650 - type: CarpetPurple - components: - - pos: -47.5,20.5 - parent: 60 - type: Transform -- uid: 17651 - type: CarpetPurple - components: - - pos: -47.5,19.5 - parent: 60 - type: Transform -- uid: 17652 - type: CarpetPurple - components: - - pos: -46.5,21.5 - parent: 60 - type: Transform -- uid: 17653 - type: CarpetPurple - components: - - pos: -46.5,20.5 - parent: 60 - type: Transform -- uid: 17654 - type: CarpetPurple - components: - - pos: -46.5,19.5 - parent: 60 - type: Transform -- uid: 17655 - type: CarpetPink - components: - - pos: -53.5,24.5 - parent: 60 - type: Transform -- uid: 17656 - type: Table - components: - - pos: -53.5,25.5 - parent: 60 - type: Transform -- uid: 17657 - type: BedsheetSpawner - components: - - pos: -55.5,25.5 - parent: 60 - type: Transform -- uid: 17658 - type: BedsheetSpawner - components: - - pos: -55.5,23.5 - parent: 60 - type: Transform -- uid: 17659 - type: BedsheetSpawner - components: - - pos: -55.5,21.5 - parent: 60 - type: Transform -- uid: 17660 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -55.5,19.5 - parent: 60 - type: Transform -- uid: 17661 - type: BedsheetSpawner - components: - - pos: -45.5,19.5 - parent: 60 - type: Transform -- uid: 17662 - type: BedsheetSpawner - components: - - pos: -45.5,21.5 - parent: 60 - type: Transform -- uid: 17663 - type: BedsheetSpawner - components: - - pos: -45.5,23.5 - parent: 60 - type: Transform -- uid: 17664 - type: BedsheetSpawner - components: - - pos: -45.5,25.5 - parent: 60 - type: Transform -- uid: 17665 - type: TableWood - components: - - pos: -54.5,19.5 - parent: 60 - type: Transform -- uid: 17666 - type: TableWood - components: - - pos: -53.5,19.5 - parent: 60 - type: Transform -- uid: 17667 - type: TableWood - components: - - pos: -53.5,20.5 - parent: 60 - type: Transform -- uid: 17668 - type: TableWood - components: - - pos: -53.5,21.5 - parent: 60 - type: Transform -- uid: 17669 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -53.5,24.5 - parent: 60 - type: Transform -- uid: 17670 - type: MedkitCombatFilled - components: - - pos: -53.465393,21.49586 - parent: 60 - type: Transform -- uid: 17671 - type: ClothingOuterVestWebMerc - components: - - pos: -53.41401,20.42319 - parent: 60 - type: Transform -- uid: 17672 - type: ClothingUniformJumpskirtOperative - components: - - pos: -53.465393,20.511484 - parent: 60 - type: Transform -- uid: 17673 - type: ClothingUniformJumpsuitOperative - components: - - pos: -53.481018,20.542734 - parent: 60 - type: Transform -- uid: 17674 - type: ClothingShoesSwat - components: - - pos: -54.44779,21.345064 - parent: 60 - type: Transform -- uid: 17675 - type: Lamp - components: - - pos: -53.539146,19.787207 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 17676 - type: MaintenanceWeaponSpawner - components: - - pos: -54.5,19.5 - parent: 60 - type: Transform -- uid: 17677 - type: ClothingNeckScarfStripedBlue - components: - - pos: -54.57279,25.39194 - parent: 60 - type: Transform -- uid: 17678 - type: TableWood - components: - - pos: -47.5,23.5 - parent: 60 - type: Transform -- uid: 17679 - type: TableWood - components: - - pos: -47.5,25.5 - parent: 60 - type: Transform -- uid: 17680 - type: TableWood - components: - - pos: -47.5,21.5 - parent: 60 - type: Transform -- uid: 17681 - type: ToySpawner - components: - - pos: -47.5,21.5 - parent: 60 - type: Transform -- uid: 17682 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -47.5,20.5 - parent: 60 - type: Transform -- uid: 17683 - type: LampGold - components: - - pos: -47.45724,23.765757 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 17684 - type: RandomInstruments - components: - - pos: -47.5,25.5 - parent: 60 - type: Transform -- uid: 17685 - type: Catwalk - components: - - pos: -30.5,17.5 - parent: 60 - type: Transform -- uid: 17686 - type: Catwalk - components: - - pos: -31.5,17.5 - parent: 60 - type: Transform -- uid: 17687 - type: Catwalk - components: - - pos: -32.5,17.5 - parent: 60 - type: Transform -- uid: 17688 - type: Catwalk - components: - - pos: -33.5,17.5 - parent: 60 - type: Transform -- uid: 17689 - type: Catwalk - components: - - pos: -34.5,17.5 - parent: 60 - type: Transform -- uid: 17690 - type: Catwalk - components: - - pos: -35.5,17.5 - parent: 60 - type: Transform -- uid: 17691 - type: Catwalk - components: - - pos: -36.5,17.5 - parent: 60 - type: Transform -- uid: 17692 - type: Catwalk - components: - - pos: -37.5,17.5 - parent: 60 - type: Transform -- uid: 17693 - type: Catwalk - components: - - pos: -38.5,17.5 - parent: 60 - type: Transform -- uid: 17694 - type: Catwalk - components: - - pos: -39.5,17.5 - parent: 60 - type: Transform -- uid: 17695 - type: Catwalk - components: - - pos: -40.5,17.5 - parent: 60 - type: Transform -- uid: 17696 - type: Catwalk - components: - - pos: -41.5,17.5 - parent: 60 - type: Transform -- uid: 17697 - type: Catwalk - components: - - pos: -42.5,17.5 - parent: 60 - type: Transform -- uid: 17698 - type: CableApcExtension - components: - - pos: -48.5,13.5 - parent: 60 - type: Transform -- uid: 17699 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17700 - type: Catwalk - components: - - pos: -82.5,17.5 - parent: 60 - type: Transform -- uid: 17701 - type: Catwalk - components: - - pos: -84.5,17.5 - parent: 60 - type: Transform -- uid: 17702 - type: Catwalk - components: - - pos: -83.5,17.5 - parent: 60 - type: Transform -- uid: 17703 - type: Catwalk - components: - - pos: -85.5,17.5 - parent: 60 - type: Transform -- uid: 17704 - type: Catwalk - components: - - pos: -86.5,17.5 - parent: 60 - type: Transform -- uid: 17705 - type: Catwalk - components: - - pos: -88.5,17.5 - parent: 60 - type: Transform -- uid: 17706 - type: Catwalk - components: - - pos: -87.5,17.5 - parent: 60 - type: Transform -- uid: 17707 - type: Catwalk - components: - - pos: -89.5,17.5 - parent: 60 - type: Transform -- uid: 17708 - type: Catwalk - components: - - pos: -91.5,17.5 - parent: 60 - type: Transform -- uid: 17709 - type: Catwalk - components: - - pos: -90.5,17.5 - parent: 60 - type: Transform -- uid: 17710 - type: Catwalk - components: - - pos: -92.5,17.5 - parent: 60 - type: Transform -- uid: 17711 - type: GasPipeStraight - components: - - pos: 39.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17712 - type: Catwalk - components: - - pos: -61.5,-4.5 - parent: 60 - type: Transform -- uid: 17713 - type: Catwalk - components: - - pos: -61.5,-3.5 - parent: 60 - type: Transform -- uid: 17714 - type: Catwalk - components: - - pos: -61.5,-2.5 - parent: 60 - type: Transform -- uid: 17715 - type: Catwalk - components: - - pos: -61.5,-1.5 - parent: 60 - type: Transform -- uid: 17716 - type: Catwalk - components: - - pos: -61.5,-0.5 - parent: 60 - type: Transform -- uid: 17717 - type: Catwalk - components: - - pos: -61.5,0.5 - parent: 60 - type: Transform -- uid: 17718 - type: Catwalk - components: - - pos: -61.5,1.5 - parent: 60 - type: Transform -- uid: 17719 - type: Catwalk - components: - - pos: -61.5,2.5 - parent: 60 - type: Transform -- uid: 17720 - type: Catwalk - components: - - pos: -61.5,3.5 - parent: 60 - type: Transform -- uid: 17721 - type: Catwalk - components: - - pos: -61.5,4.5 - parent: 60 - type: Transform -- uid: 17722 - type: Catwalk - components: - - pos: -61.5,5.5 - parent: 60 - type: Transform -- uid: 17723 - type: Catwalk - components: - - pos: -61.5,6.5 - parent: 60 - type: Transform -- uid: 17724 - type: Catwalk - components: - - pos: -61.5,7.5 - parent: 60 - type: Transform -- uid: 17725 - type: PoweredSmallLight - components: - - pos: -45.5,-12.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17726 - type: PoweredSmallLight - components: - - pos: -55.5,-10.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17727 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-1.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17728 - type: RandomArtifactSpawner - components: - - pos: -58.5,49.5 - parent: 60 - type: Transform -- uid: 17729 - type: Table - components: - - pos: -11.5,4.5 - parent: 60 - type: Transform -- uid: 17730 - type: PoweredSmallLight - components: - - pos: -54.5,17.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17731 - type: PoweredSmallLight - components: - - pos: -36.5,17.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17732 - type: Table - components: - - pos: -11.5,3.5 - parent: 60 - type: Transform -- uid: 17733 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -12.5,4.5 - parent: 60 - type: Transform -- uid: 17734 - type: PoweredSmallLight - components: - - pos: -63.5,25.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17735 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -63.5,21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17736 - type: LockerFreezer - components: - - pos: -61.5,27.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17737 - - 17741 - - 17738 - - 17739 - - 17740 - type: ContainerContainer -- uid: 17737 - type: DrinkLean - components: - - flags: InContainer - type: MetaData - - parent: 17736 - type: Transform - - canCollide: False - type: Physics - - tags: [] - type: Tag -- uid: 17738 - type: DrinkLean - components: - - flags: InContainer - type: MetaData - - parent: 17736 - type: Transform - - canCollide: False - type: Physics - - tags: [] - type: Tag -- uid: 17739 - type: DrinkLean - components: - - flags: InContainer - type: MetaData - - parent: 17736 - type: Transform - - canCollide: False - type: Physics - - tags: [] - type: Tag -- uid: 17740 - type: DrinkLean - components: - - flags: InContainer - type: MetaData - - parent: 17736 - type: Transform - - canCollide: False - type: Physics - - tags: [] - type: Tag -- uid: 17741 - type: DrinkLean - components: - - flags: InContainer - type: MetaData - - parent: 17736 - type: Transform - - canCollide: False - type: Physics - - tags: [] - type: Tag -- uid: 17742 - type: Catwalk - components: - - pos: -58.5,11.5 - parent: 60 - type: Transform -- uid: 17743 - type: Catwalk - components: - - pos: -58.5,12.5 - parent: 60 - type: Transform -- uid: 17744 - type: Catwalk - components: - - pos: -58.5,13.5 - parent: 60 - type: Transform -- uid: 17745 - type: Catwalk - components: - - pos: -58.5,14.5 - parent: 60 - type: Transform -- uid: 17746 - type: GasPipeStraight - components: - - pos: 39.5,14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17747 - type: GasPipeStraight - components: - - pos: 39.5,15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17748 - type: GasPipeStraight - components: - - pos: 39.5,16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17749 - type: FoodBurgerMcguffin - components: - - pos: -53.466866,25.529905 - parent: 60 - type: Transform -- uid: 17750 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.498655 - parent: 60 - type: Transform -- uid: 17751 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.498655 - parent: 60 - type: Transform -- uid: 17752 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.498655 - parent: 60 - type: Transform -- uid: 17753 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.498655 - parent: 60 - type: Transform -- uid: 17754 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.498655 - parent: 60 - type: Transform -- uid: 17755 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.498655 - parent: 60 - type: Transform -- uid: 17756 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.498655 - parent: 60 - type: Transform -- uid: 17757 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.498655 - parent: 60 - type: Transform -- uid: 17758 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.498655 - parent: 60 - type: Transform -- uid: 17759 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.498655 - parent: 60 - type: Transform -- uid: 17760 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.498655 - parent: 60 - type: Transform -- uid: 17761 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.498655 - parent: 60 - type: Transform -- uid: 17762 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.498655 - parent: 60 - type: Transform -- uid: 17763 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.498655 - parent: 60 - type: Transform -- uid: 17764 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.498655 - parent: 60 - type: Transform -- uid: 17765 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.498655 - parent: 60 - type: Transform -- uid: 17766 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.498655 - parent: 60 - type: Transform -- uid: 17767 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.51428 - parent: 60 - type: Transform -- uid: 17768 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.51428 - parent: 60 - type: Transform -- uid: 17769 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.51428 - parent: 60 - type: Transform -- uid: 17770 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.51428 - parent: 60 - type: Transform -- uid: 17771 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.51428 - parent: 60 - type: Transform -- uid: 17772 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.51428 - parent: 60 - type: Transform -- uid: 17773 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.51428 - parent: 60 - type: Transform -- uid: 17774 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.51428 - parent: 60 - type: Transform -- uid: 17775 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.51428 - parent: 60 - type: Transform -- uid: 17776 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.51428 - parent: 60 - type: Transform -- uid: 17777 - type: FloorTileItemEighties - components: - - pos: -54.466866,23.51428 - parent: 60 - type: Transform -- uid: 17778 - type: FloorTileItemEighties - components: - - pos: -54.45124,23.498655 - parent: 60 - type: Transform -- uid: 17779 - type: FloorTileItemEighties - components: - - pos: -54.45124,23.498655 - parent: 60 - type: Transform -- uid: 17780 - type: ClothingNeckHeadphones - components: - - pos: -39.489933,19.58194 - parent: 60 - type: Transform -- uid: 17781 - type: ClothingOuterHoodieBlack - components: - - pos: -39.13279,19.43099 - parent: 60 - type: Transform -- uid: 17782 - type: CrowbarRed - components: - - pos: -38.55849,19.646065 - parent: 60 - type: Transform - - nextAttack: 7459.1546472 - type: MeleeWeapon -- uid: 17783 - type: ClosetEmergencyFilledRandom - components: - - pos: -41.5,19.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17784 - type: ClosetFireFilled - components: - - pos: -41.5,20.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17785 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -43.5,22.5 - parent: 60 - type: Transform -- uid: 17786 - type: Poweredlight - components: - - pos: -42.5,25.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17787 - type: GeneratorPlasma - components: - - pos: -8.5,29.5 - parent: 60 - type: Transform -- uid: 17788 - type: DisposalTrunk - components: - - pos: -31.5,26.5 - parent: 60 - type: Transform -- uid: 17789 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -31.5,24.5 - parent: 60 - type: Transform -- uid: 17790 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,24.5 - parent: 60 - type: Transform -- uid: 17791 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,24.5 - parent: 60 - type: Transform -- uid: 17792 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,24.5 - parent: 60 - type: Transform -- uid: 17793 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,24.5 - parent: 60 - type: Transform -- uid: 17794 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -26.5,24.5 - parent: 60 - type: Transform -- uid: 17795 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,24.5 - parent: 60 - type: Transform -- uid: 17796 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,24.5 - parent: 60 - type: Transform -- uid: 17797 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,24.5 - parent: 60 - type: Transform -- uid: 17798 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,24.5 - parent: 60 - type: Transform -- uid: 17799 - type: DisposalPipe - components: - - pos: -31.5,25.5 - parent: 60 - type: Transform -- uid: 17800 - type: Bed - components: - - pos: -34.5,20.5 - parent: 60 - type: Transform -- uid: 17801 - type: Bookshelf - components: - - pos: -30.5,21.5 - parent: 60 - type: Transform -- uid: 17802 - type: TableWood - components: - - pos: -35.5,19.5 - parent: 60 - type: Transform -- uid: 17803 - type: TableWood - components: - - pos: -36.5,19.5 - parent: 60 - type: Transform -- uid: 17804 - type: TableWood - components: - - pos: -36.5,20.5 - parent: 60 - type: Transform -- uid: 17805 - type: TableWood - components: - - pos: -30.5,20.5 - parent: 60 - type: Transform -- uid: 17806 - type: TableWood - components: - - pos: -30.5,19.5 - parent: 60 - type: Transform -- uid: 17807 - type: Bed - components: - - pos: -31.5,19.5 - parent: 60 - type: Transform -- uid: 17808 - type: Bookshelf - components: - - pos: -32.5,21.5 - parent: 60 - type: Transform -- uid: 17809 - type: BedsheetSpawner - components: - - pos: -31.5,19.5 - parent: 60 - type: Transform -- uid: 17810 - type: BedsheetSpawner - components: - - pos: -34.5,20.5 - parent: 60 - type: Transform -- uid: 17811 - type: ChairOfficeDark - components: - - pos: -35.5,20.5 - parent: 60 - type: Transform -- uid: 17812 - type: ComfyChair - components: - - pos: -32.5,20.5 - parent: 60 - type: Transform -- uid: 17813 - type: CarpetOrange - components: - - pos: -35.5,20.5 - parent: 60 - type: Transform -- uid: 17814 - type: CarpetOrange - components: - - pos: -35.5,21.5 - parent: 60 - type: Transform -- uid: 17815 - type: CarpetOrange - components: - - pos: -34.5,21.5 - parent: 60 - type: Transform -- uid: 17816 - type: CarpetOrange - components: - - pos: -34.5,20.5 - parent: 60 - type: Transform -- uid: 17817 - type: Carpet - components: - - pos: -32.5,19.5 - parent: 60 - type: Transform -- uid: 17818 - type: Carpet - components: - - pos: -32.5,20.5 - parent: 60 - type: Transform -- uid: 17819 - type: Carpet - components: - - pos: -31.5,20.5 - parent: 60 - type: Transform -- uid: 17820 - type: Carpet - components: - - pos: -31.5,19.5 - parent: 60 - type: Transform -- uid: 17821 - type: LampGold - components: - - pos: -36.53212,19.792776 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 17822 - type: WaterCooler - components: - - pos: -36.5,21.5 - parent: 60 - type: Transform -- uid: 17823 - type: Paper - components: - - pos: -35.60745,19.623318 - parent: 60 - type: Transform -- uid: 17824 - type: Paper - components: - - pos: -35.60745,19.623318 - parent: 60 - type: Transform -- uid: 17825 - type: Paper - components: - - pos: -35.60745,19.623318 - parent: 60 - type: Transform -- uid: 17826 - type: Paper - components: - - pos: -35.60745,19.623318 - parent: 60 - type: Transform -- uid: 17827 - type: Paper - components: - - pos: -35.60745,19.623318 - parent: 60 - type: Transform -- uid: 17828 - type: Paper - components: - - pos: -35.60745,19.623318 - parent: 60 - type: Transform -- uid: 17829 - type: Paper - components: - - pos: -35.60745,19.623318 - parent: 60 - type: Transform -- uid: 17830 - type: Paper - components: - - pos: -35.60745,19.623318 - parent: 60 - type: Transform -- uid: 17831 - type: Paper - components: - - pos: -35.60745,19.623318 - parent: 60 - type: Transform -- uid: 17832 - type: Paper - components: - - pos: -35.60745,19.623318 - parent: 60 - type: Transform -- uid: 17833 - type: Paper - components: - - pos: -35.60745,19.623318 - parent: 60 - type: Transform -- uid: 17834 - type: Paper - components: - - pos: -35.60745,19.623318 - parent: 60 - type: Transform -- uid: 17835 - type: Paper - components: - - pos: -35.60745,19.623318 - parent: 60 - type: Transform -- uid: 17836 - type: Pen - components: - - pos: -35.320312,19.746838 - parent: 60 - type: Transform -- uid: 17837 - type: MaintenanceFluffSpawner - components: - - pos: -36.5,20.5 - parent: 60 - type: Transform -- uid: 17838 - type: ToySpawner - components: - - pos: -30.5,20.5 - parent: 60 - type: Transform -- uid: 17839 - type: BookBase - components: - - pos: -30.487093,19.620901 - parent: 60 - type: Transform -- uid: 17840 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -57.5,25.5 - parent: 60 - type: Transform -- uid: 17841 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 41.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17842 - type: GasPipeStraight - components: - - pos: 39.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17843 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -11.5,5.5 - parent: 60 - type: Transform -- uid: 17844 - type: ClosetMaintenanceFilledRandom - components: - - pos: -59.5,-0.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17845 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -11.5,4.5 - parent: 60 - type: Transform -- uid: 17846 - type: GasPipeStraight - components: - - pos: 39.5,19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17847 - type: GasPipeStraight - components: - - pos: 39.5,20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17848 - type: GasPipeStraight - components: - - pos: 39.5,21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17849 - type: GasPipeStraight - components: - - pos: 39.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17850 - type: GasPipeStraight - components: - - pos: 39.5,23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17851 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-13.5 - parent: 60 - type: Transform -- uid: 17852 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-13.5 - parent: 60 - type: Transform -- uid: 17853 - type: DisgustingSweptSoup - components: - - pos: -42.528843,-13.558097 - parent: 60 - type: Transform -- uid: 17854 - type: Poweredlight - components: - - pos: -19.5,25.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17855 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,14.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17856 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17857 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,25.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17858 - type: Poweredlight - components: - - pos: -34.5,9.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17859 - type: Poweredlight - components: - - pos: -29.5,9.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17860 - type: Poweredlight - components: - - pos: -21.5,9.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17861 - type: Poweredlight - components: - - pos: -11.5,9.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17862 - type: GasPipeStraight - components: - - pos: 39.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17863 - type: GasPipeFourway - components: - - pos: 39.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17864 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17865 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17866 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17867 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 46.5,26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17868 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 46.5,27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17869 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17870 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17871 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17872 - type: GasVentPump - components: - - pos: 52.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17873 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17874 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17875 - type: GasVentPump - components: - - pos: 44.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17876 - type: SignalButton - components: - - pos: 58.5,13.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13175 - - port: Toggle - uid: 13178 - type: SignalTransmitter -- uid: 17877 - type: GasPassiveGate - components: - - pos: 23.5,5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17878 - type: GasVentPump - components: - - pos: 54.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17879 - type: GasVentPump - components: - - pos: 46.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17880 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17881 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17882 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17883 - type: PlushieSpaceLizard - components: - - pos: 30.505884,-10.627335 - parent: 60 - type: Transform -- uid: 17884 - type: ClothingMaskBreathMedical - components: - - pos: 29.537134,-10.39296 - parent: 60 - type: Transform -- uid: 17885 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17886 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17887 - type: GasPipeFourway - components: - - pos: 45.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17888 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17889 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17890 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17891 - type: Table - components: - - pos: -8.5,-50.5 - parent: 60 - type: Transform -- uid: 17892 - type: ParchisBoard - components: - - pos: -8.500896,-50.426304 - parent: 60 - type: Transform -- uid: 17893 - type: Chair - components: - - pos: -8.5,-49.5 - parent: 60 - type: Transform -- uid: 17894 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-50.5 - parent: 60 - type: Transform -- uid: 17895 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -8.5,-51.5 - parent: 60 - type: Transform -- uid: 17896 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-50.5 - parent: 60 - type: Transform -- uid: 17897 - type: d6Dice - components: - - pos: -8.719646,-50.56693 - parent: 60 - type: Transform -- uid: 17898 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -15.5,-48.5 - parent: 60 - type: Transform -- uid: 17899 - type: Rack - components: - - pos: 6.5,-48.5 - parent: 60 - type: Transform -- uid: 17900 - type: ClothingHeadHelmetCosmonaut - components: - - pos: 6.472772,-48.463036 - parent: 60 - type: Transform -- uid: 17901 - type: ClosetEmergencyFilledRandom - components: - - pos: 5.5,-48.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17902 - type: ClosetBase - components: - - pos: 4.5,-48.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17903 - type: OxygenCanister - components: - - pos: 7.5,-48.5 - parent: 60 - type: Transform -- uid: 17904 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-51.5 - parent: 60 - type: Transform -- uid: 17905 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-51.5 - parent: 60 - type: Transform -- uid: 17906 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -24.5,50.5 - parent: 60 - type: Transform -- uid: 17907 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -26.5,48.5 - parent: 60 - type: Transform -- uid: 17908 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -26.5,49.5 - parent: 60 - type: Transform -- uid: 17909 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -26.5,50.5 - parent: 60 - type: Transform -- uid: 17910 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -11.5,3.5 - parent: 60 - type: Transform -- uid: 17911 - type: CableApcExtension - components: - - pos: -25.5,49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17912 - type: Multitool - components: - - pos: -11.754135,4.5768404 - parent: 60 - type: Transform -- uid: 17913 - type: Catwalk - components: - - pos: -25.5,48.5 - parent: 60 - type: Transform -- uid: 17914 - type: Catwalk - components: - - pos: -25.5,49.5 - parent: 60 - type: Transform -- uid: 17915 - type: OxygenCanister - components: - - pos: -24.5,49.5 - parent: 60 - type: Transform -- uid: 17916 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,48.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17917 - type: SpawnPointAtmos - components: - - pos: -28.5,30.5 - parent: 60 - type: Transform -- uid: 17918 - type: SpawnPointAtmos - components: - - pos: -27.5,30.5 - parent: 60 - type: Transform -- uid: 17919 - type: SpawnPointAtmos - components: - - pos: -26.5,30.5 - parent: 60 - type: Transform -- uid: 17920 - type: SpawnPointStationEngineer - components: - - pos: -3.5,13.5 - parent: 60 - type: Transform -- uid: 17921 - type: SpawnPointStationEngineer - components: - - pos: -3.5,14.5 - parent: 60 - type: Transform -- uid: 17922 - type: SpawnPointStationEngineer - components: - - pos: -3.5,15.5 - parent: 60 - type: Transform -- uid: 17923 - type: SpawnPointStationEngineer - components: - - pos: -3.5,16.5 - parent: 60 - type: Transform -- uid: 17924 - type: Poweredlight - components: - - pos: 2.5,29.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17925 - type: Poweredlight - components: - - pos: -2.5,29.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17926 - type: Poweredlight - components: - - pos: -8.5,29.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17927 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,31.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17928 - type: CableHV - components: - - pos: 6.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17929 - type: WallReinforced - components: - - pos: 5.5,2.5 - parent: 60 - type: Transform -- uid: 17930 - type: Grille - components: - - pos: 5.5,1.5 - parent: 60 - type: Transform -- uid: 17931 - type: CableHV - components: - - pos: 13.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17932 - type: CableHV - components: - - pos: 8.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17933 - type: CableHV - components: - - pos: 12.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17934 - type: CableHV - components: - - pos: 14.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17935 - type: SubstationBasic - components: - - name: Bridge Substation - type: MetaData - - pos: 3.5,-2.5 - parent: 60 - type: Transform -- uid: 17936 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: -12.5,4.5 - parent: 60 - type: Transform -- uid: 17937 - type: WallReinforced - components: - - pos: -12.5,1.5 - parent: 60 - type: Transform -- uid: 17938 - type: WallReinforced - components: - - pos: -4.5,2.5 - parent: 60 - type: Transform -- uid: 17939 - type: ReinforcedWindow - components: - - pos: 1.5,4.5 - parent: 60 - type: Transform -- uid: 17940 - type: WallReinforced - components: - - pos: 10.5,-4.5 - parent: 60 - type: Transform -- uid: 17941 - type: Grille - components: - - pos: 28.5,1.5 - parent: 60 - type: Transform -- uid: 17942 - type: ReinforcedWindow - components: - - pos: 0.5,4.5 - parent: 60 - type: Transform -- uid: 17943 - type: SubstationBasic - components: - - name: Grav Gen Sub - type: MetaData - - pos: -11.5,5.5 - parent: 60 - type: Transform -- uid: 17944 - type: CableHV - components: - - pos: 4.5,-3.5 - parent: 60 - type: Transform -- uid: 17945 - type: CableHV - components: - - pos: -11.5,5.5 - parent: 60 - type: Transform -- uid: 17946 - type: SMESBasic - components: - - name: GravGenSMES - type: MetaData - - pos: -12.5,5.5 - parent: 60 - type: Transform -- uid: 17947 - type: CableHV - components: - - pos: -12.5,3.5 - parent: 60 - type: Transform -- uid: 17948 - type: CableHV - components: - - pos: -13.5,3.5 - parent: 60 - type: Transform -- uid: 17949 - type: CableHV - components: - - pos: -14.5,3.5 - parent: 60 - type: Transform -- uid: 17950 - type: CableHV - components: - - pos: -15.5,3.5 - parent: 60 - type: Transform -- uid: 17951 - type: CableHV - components: - - pos: -16.5,3.5 - parent: 60 - type: Transform -- uid: 17952 - type: CableHV - components: - - pos: -16.5,4.5 - parent: 60 - type: Transform -- uid: 17953 - type: CableHV - components: - - pos: -16.5,4.5 - parent: 60 - type: Transform -- uid: 17954 - type: CableHV - components: - - pos: -17.5,4.5 - parent: 60 - type: Transform -- uid: 17955 - type: CableHV - components: - - pos: -18.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17956 - type: CableHV - components: - - pos: -19.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17957 - type: CableHV - components: - - pos: -20.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17958 - type: CableHV - components: - - pos: -21.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17959 - type: CableHV - components: - - pos: -22.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17960 - type: CableHV - components: - - pos: -22.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17961 - type: CableHV - components: - - pos: -23.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17962 - type: CableHV - components: - - pos: -24.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17963 - type: CableHV - components: - - pos: -25.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17964 - type: CableHV - components: - - pos: -14.5,4.5 - parent: 60 - type: Transform -- uid: 17965 - type: CableHV - components: - - pos: -14.5,5.5 - parent: 60 - type: Transform -- uid: 17966 - type: CableHV - components: - - pos: -14.5,6.5 - parent: 60 - type: Transform -- uid: 17967 - type: CableHV - components: - - pos: -14.5,7.5 - parent: 60 - type: Transform -- uid: 17968 - type: CableHV - components: - - pos: -14.5,8.5 - parent: 60 - type: Transform -- uid: 17969 - type: CableHV - components: - - pos: -12.5,5.5 - parent: 60 - type: Transform -- uid: 17970 - type: CableHV - components: - - pos: -12.5,4.5 - parent: 60 - type: Transform -- uid: 17971 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -2.5,-1.5 - parent: 60 - type: Transform -- uid: 17972 - type: CableMV - components: - - pos: -11.5,5.5 - parent: 60 - type: Transform -- uid: 17973 - type: CableApcExtension - components: - - pos: -9.5,2.5 - parent: 60 - type: Transform -- uid: 17974 - type: CableHV - components: - - pos: 4.5,-1.5 - parent: 60 - type: Transform -- uid: 17975 - type: CableMV - components: - - pos: -11.5,3.5 - parent: 60 - type: Transform -- uid: 17976 - type: ReinforcedWindow - components: - - pos: 2.5,4.5 - parent: 60 - type: Transform -- uid: 17977 - type: WallReinforced - components: - - pos: -3.5,2.5 - parent: 60 - type: Transform -- uid: 17978 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -6.5,2.5 - parent: 60 - type: Transform -- uid: 17979 - type: CableMV - components: - - pos: -8.5,2.5 - parent: 60 - type: Transform -- uid: 17980 - type: CableApcExtension - components: - - pos: -11.5,4.5 - parent: 60 - type: Transform -- uid: 17981 - type: WallReinforced - components: - - pos: -11.5,1.5 - parent: 60 - type: Transform -- uid: 17982 - type: CableApcExtension - components: - - pos: -11.5,3.5 - parent: 60 - type: Transform -- uid: 17983 - type: CableApcExtension - components: - - pos: -12.5,3.5 - parent: 60 - type: Transform -- uid: 17984 - type: ReinforcedWindow - components: - - pos: 3.5,4.5 - parent: 60 - type: Transform -- uid: 17985 - type: CableHV - components: - - pos: 9.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17986 - type: CableHV - components: - - pos: 11.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17987 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17988 - type: WallReinforced - components: - - pos: -8.5,6.5 - parent: 60 - type: Transform -- uid: 17989 - type: CableApcExtension - components: - - pos: -9.5,6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17990 - type: CableApcExtension - components: - - pos: -7.5,6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17991 - type: Grille - components: - - pos: 5.5,0.5 - parent: 60 - type: Transform -- uid: 17992 - type: WallReinforced - components: - - pos: 5.5,-2.5 - parent: 60 - type: Transform -- uid: 17993 - type: ReinforcedWindow - components: - - pos: -9.5,6.5 - parent: 60 - type: Transform -- uid: 17994 - type: Grille - components: - - pos: 4.5,3.5 - parent: 60 - type: Transform -- uid: 17995 - type: FaxMachineBase - components: - - pos: -24.5,-30.5 - parent: 60 - type: Transform - - name: Detective - type: FaxMachine -- uid: 17996 - type: WallReinforced - components: - - pos: -7.5,6.5 - parent: 60 - type: Transform -- uid: 17997 - type: TableWood - components: - - pos: -49.5,-19.5 - parent: 60 - type: Transform -- uid: 17998 - type: SignDirectionalDorms - components: - - rot: 3.141592653589793 rad - pos: -13.495151,-20.670547 - parent: 60 - type: Transform -- uid: 17999 - type: SignDirectionalGravity - components: - - rot: -1.5707963267948966 rad - pos: -3.5033069,8.099489 - parent: 60 - type: Transform -- uid: 18000 - type: SignGravity - components: - - pos: -13.5,4.5 - parent: 60 - type: Transform -- uid: 18001 - type: CableHV - components: - - pos: 5.5,-3.5 - parent: 60 - type: Transform -- uid: 18002 - type: CableHV - components: - - pos: 10.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18003 - type: RandomPosterLegit - components: - - pos: -11.5,6.5 - parent: 60 - type: Transform -- uid: 18004 - type: GasThermoMachineFreezer - components: - - pos: 22.5,5.5 - parent: 60 - type: Transform -- uid: 18005 - type: RandomPosterLegit - components: - - pos: -33.5,22.5 - parent: 60 - type: Transform -- uid: 18006 - type: RandomPosterLegit - components: - - pos: -33.5,19.5 - parent: 60 - type: Transform -- uid: 18007 - type: Catwalk - components: - - pos: -92.5,16.5 - parent: 60 - type: Transform -- uid: 18008 - type: RandomPosterLegit - components: - - pos: -45.5,22.5 - parent: 60 - type: Transform -- uid: 18009 - type: RandomPosterLegit - components: - - pos: -42.5,26.5 - parent: 60 - type: Transform -- uid: 18010 - type: RandomPosterContraband - components: - - pos: -54.5,22.5 - parent: 60 - type: Transform -- uid: 18011 - type: RandomPosterContraband - components: - - pos: -55.5,26.5 - parent: 60 - type: Transform -- uid: 18012 - type: RandomPosterContraband - components: - - pos: -61.5,26.5 - parent: 60 - type: Transform -- uid: 18013 - type: RandomPosterContraband - components: - - pos: -60.5,19.5 - parent: 60 - type: Transform -- uid: 18014 - type: RandomPosterContraband - components: - - pos: -54.5,18.5 - parent: 60 - type: Transform -- uid: 18015 - type: CableApcExtension - components: - - pos: -44.5,15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18016 - type: RandomPosterLegit - components: - - pos: -38.5,18.5 - parent: 60 - type: Transform -- uid: 18017 - type: RandomPosterLegit - components: - - pos: -60.5,14.5 - parent: 60 - type: Transform -- uid: 18018 - type: RandomPosterContraband - components: - - pos: -60.5,7.5 - parent: 60 - type: Transform -- uid: 18019 - type: RandomPosterAny - components: - - pos: -46.5,-11.5 - parent: 60 - type: Transform -- uid: 18020 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 18021 - type: Grille - components: - - pos: -1.5,4.5 - parent: 60 - type: Transform -- uid: 18022 - type: Grille - components: - - pos: -3.5,3.5 - parent: 60 - type: Transform -- uid: 18023 - type: Grille - components: - - pos: -2.5,4.5 - parent: 60 - type: Transform -- uid: 18024 - type: GeigerCounter - components: - - pos: 5.384184,34.55869 - parent: 60 - type: Transform -- uid: 18025 - type: Grille - components: - - pos: -3.5,4.5 - parent: 60 - type: Transform -- uid: 18026 - type: Grille - components: - - pos: -4.5,0.5 - parent: 60 - type: Transform -- uid: 18027 - type: WallReinforced - components: - - pos: 2.5,-2.5 - parent: 60 - type: Transform -- uid: 18028 - type: WallReinforced - components: - - pos: 2.5,-3.5 - parent: 60 - type: Transform -- uid: 18029 - type: WallReinforced - components: - - pos: 2.5,-4.5 - parent: 60 - type: Transform -- uid: 18030 - type: WallReinforced - components: - - pos: 2.5,-9.5 - parent: 60 - type: Transform -- uid: 18031 - type: WallReinforced - components: - - pos: 2.5,-7.5 - parent: 60 - type: Transform -- uid: 18032 - type: WallReinforced - components: - - pos: 2.5,-5.5 - parent: 60 - type: Transform -- uid: 18033 - type: AirlockCommandLocked - components: - - name: Bridge Maintenance - type: MetaData - - pos: 5.5,-3.5 - parent: 60 - type: Transform -- uid: 18034 - type: WallReinforced - components: - - pos: 2.5,-8.5 - parent: 60 - type: Transform -- uid: 18035 - type: WallReinforced - components: - - pos: 9.5,-4.5 - parent: 60 - type: Transform -- uid: 18036 - type: WallReinforced - components: - - pos: 2.5,-10.5 - parent: 60 - type: Transform -- uid: 18037 - type: WallReinforced - components: - - pos: -1.5,-1.5 - parent: 60 - type: Transform -- uid: 18038 - type: WallReinforced - components: - - pos: -1.5,-10.5 - parent: 60 - type: Transform -- uid: 18039 - type: WallReinforced - components: - - pos: -2.5,-12.5 - parent: 60 - type: Transform -- uid: 18040 - type: WallReinforced - components: - - pos: -1.5,-8.5 - parent: 60 - type: Transform -- uid: 18041 - type: WallReinforced - components: - - pos: 9.5,-1.5 - parent: 60 - type: Transform -- uid: 18042 - type: WallReinforced - components: - - pos: -1.5,-2.5 - parent: 60 - type: Transform -- uid: 18043 - type: WallReinforced - components: - - pos: -1.5,-7.5 - parent: 60 - type: Transform -- uid: 18044 - type: WallReinforced - components: - - pos: -1.5,-3.5 - parent: 60 - type: Transform -- uid: 18045 - type: WallReinforced - components: - - pos: -1.5,-6.5 - parent: 60 - type: Transform -- uid: 18046 - type: WallReinforced - components: - - pos: -1.5,-5.5 - parent: 60 - type: Transform -- uid: 18047 - type: WallReinforced - components: - - pos: -1.5,-4.5 - parent: 60 - type: Transform -- uid: 18048 - type: WallReinforced - components: - - pos: 8.5,-7.5 - parent: 60 - type: Transform -- uid: 18049 - type: WallReinforced - components: - - pos: 3.5,-8.5 - parent: 60 - type: Transform -- uid: 18050 - type: WallReinforced - components: - - pos: -4.5,-1.5 - parent: 60 - type: Transform -- uid: 18051 - type: WallReinforced - components: - - pos: -5.5,-1.5 - parent: 60 - type: Transform -- uid: 18052 - type: WallSolid - components: - - pos: -1.5,-9.5 - parent: 60 - type: Transform -- uid: 18053 - type: WallReinforced - components: - - pos: 5.5,-9.5 - parent: 60 - type: Transform -- uid: 18054 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18055 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18056 - type: WallReinforced - components: - - pos: -3.5,-12.5 - parent: 60 - type: Transform -- uid: 18057 - type: SoapNT - components: - - pos: -2.5112958,-11.444662 - parent: 60 - type: Transform -- uid: 18058 - type: ReinforcedWindow - components: - - pos: -0.5,4.5 - parent: 60 - type: Transform -- uid: 18059 - type: ReinforcedWindow - components: - - pos: -1.5,4.5 - parent: 60 - type: Transform -- uid: 18060 - type: ReinforcedWindow - components: - - pos: -2.5,4.5 - parent: 60 - type: Transform -- uid: 18061 - type: WallReinforced - components: - - pos: 5.5,-0.5 - parent: 60 - type: Transform -- uid: 18062 - type: Grille - components: - - pos: -4.5,1.5 - parent: 60 - type: Transform -- uid: 18063 - type: WallSolid - components: - - pos: 8.5,-4.5 - parent: 60 - type: Transform -- uid: 18064 - type: WallReinforced - components: - - pos: 9.5,-6.5 - parent: 60 - type: Transform -- uid: 18065 - type: WallReinforced - components: - - pos: 10.5,-6.5 - parent: 60 - type: Transform -- uid: 18066 - type: WallReinforced - components: - - pos: 10.5,-5.5 - parent: 60 - type: Transform -- uid: 18067 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 23.5,4.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 18068 - type: GeigerCounter - components: - - pos: -11.479647,4.4528995 - parent: 60 - type: Transform -- uid: 18069 - type: WallReinforced - components: - - pos: -1.5,-11.5 - parent: 60 - type: Transform -- uid: 18070 - type: WallReinforced - components: - - pos: -1.5,-12.5 - parent: 60 - type: Transform -- uid: 18071 - type: WallReinforced - components: - - pos: 2.5,-12.5 - parent: 60 - type: Transform -- uid: 18072 - type: WallReinforced - components: - - pos: 4.5,2.5 - parent: 60 - type: Transform -- uid: 18073 - type: WallReinforced - components: - - pos: -4.5,-0.5 - parent: 60 - type: Transform -- uid: 18074 - type: WallReinforced - components: - - pos: 9.5,-7.5 - parent: 60 - type: Transform -- uid: 18075 - type: WallReinforced - components: - - pos: 4.5,-11.5 - parent: 60 - type: Transform -- uid: 18076 - type: AirlockExternalLocked - components: - - pos: 10.5,-3.5 - parent: 60 - type: Transform -- uid: 18077 - type: WallReinforced - components: - - pos: 9.5,-2.5 - parent: 60 - type: Transform -- uid: 18078 - type: Grille - components: - - pos: -0.5,4.5 - parent: 60 - type: Transform -- uid: 18079 - type: Grille - components: - - pos: 0.5,4.5 - parent: 60 - type: Transform -- uid: 18080 - type: Grille - components: - - pos: 1.5,4.5 - parent: 60 - type: Transform -- uid: 18081 - type: Grille - components: - - pos: 2.5,4.5 - parent: 60 - type: Transform -- uid: 18082 - type: Grille - components: - - pos: 3.5,4.5 - parent: 60 - type: Transform -- uid: 18083 - type: ReinforcedWindow - components: - - pos: -4.5,0.5 - parent: 60 - type: Transform -- uid: 18084 - type: Grille - components: - - pos: 4.5,4.5 - parent: 60 - type: Transform -- uid: 18085 - type: ReinforcedWindow - components: - - pos: -3.5,3.5 - parent: 60 - type: Transform -- uid: 18086 - type: ReinforcedWindow - components: - - pos: -3.5,4.5 - parent: 60 - type: Transform -- uid: 18087 - type: ReinforcedWindow - components: - - pos: 4.5,3.5 - parent: 60 - type: Transform -- uid: 18088 - type: ReinforcedWindow - components: - - pos: 4.5,4.5 - parent: 60 - type: Transform -- uid: 18089 - type: ReinforcedWindow - components: - - pos: 5.5,1.5 - parent: 60 - type: Transform -- uid: 18090 - type: ReinforcedWindow - components: - - pos: 5.5,0.5 - parent: 60 - type: Transform -- uid: 18091 - type: PottedPlantRandom - components: - - pos: -13.5,-0.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 18092 - type: RandomPosterLegit - components: - - pos: -35.5,0.5 - parent: 60 - type: Transform -- uid: 18093 - type: RandomPosterLegit - components: - - pos: -39.5,-14.5 - parent: 60 - type: Transform -- uid: 18094 - type: RandomPosterLegit - components: - - pos: -29.5,10.5 - parent: 60 - type: Transform -- uid: 18095 - type: SpawnPointServiceWorker - components: - - pos: 19.5,-34.5 - parent: 60 - type: Transform -- uid: 18096 - type: CableMV - components: - - pos: -32.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18097 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18098 - type: RandomPosterLegit - components: - - pos: -20.5,10.5 - parent: 60 - type: Transform -- uid: 18099 - type: RandomPosterLegit - components: - - pos: -13.5,21.5 - parent: 60 - type: Transform -- uid: 18100 - type: Grille - components: - - pos: -12.5,-0.5 - parent: 60 - type: Transform -- uid: 18101 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18102 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18103 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -13.5,0.5 - parent: 60 - type: Transform -- uid: 18104 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 60 - type: Transform -- uid: 18105 - type: WindoorCommandLocked - components: - - rot: 1.5707963267948966 rad - pos: -11.5,2.5 - parent: 60 - type: Transform -- uid: 18106 - type: PosterContrabandPunchShit - components: - - pos: 18.5,-3.5 - parent: 60 - type: Transform -- uid: 18107 - type: PaintingCafeTerraceAtNight - components: - - pos: 7.5,-30.5 - parent: 60 - type: Transform -- uid: 18108 - type: CableHV - components: - - pos: 7.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18109 - type: WallReinforced - components: - - pos: 6.5,-1.5 - parent: 60 - type: Transform -- uid: 18110 - type: WallReinforced - components: - - pos: 7.5,-1.5 - parent: 60 - type: Transform -- uid: 18111 - type: WallReinforced - components: - - pos: 8.5,-1.5 - parent: 60 - type: Transform -- uid: 18112 - type: FlashlightLantern - components: - - pos: -11.567254,3.87683 - parent: 60 - type: Transform -- uid: 18113 - type: WallReinforced - components: - - pos: 5.5,-4.5 - parent: 60 - type: Transform -- uid: 18114 - type: GeneratorUraniumMachineCircuitboard - components: - - pos: 24.615923,14.401744 - parent: 60 - type: Transform -- uid: 18115 - type: WallReinforced - components: - - pos: 7.5,-8.5 - parent: 60 - type: Transform -- uid: 18116 - type: WallReinforced - components: - - pos: 7.5,-5.5 - parent: 60 - type: Transform -- uid: 18117 - type: WallSolid - components: - - pos: 7.5,-6.5 - parent: 60 - type: Transform -- uid: 18118 - type: WallReinforced - components: - - pos: 4.5,-8.5 - parent: 60 - type: Transform -- uid: 18119 - type: WallReinforced - components: - - pos: 6.5,-8.5 - parent: 60 - type: Transform -- uid: 18120 - type: WallReinforced - components: - - pos: 5.5,-8.5 - parent: 60 - type: Transform -- uid: 18121 - type: WallReinforced - components: - - pos: 7.5,-7.5 - parent: 60 - type: Transform -- uid: 18122 - type: WallReinforced - components: - - pos: 6.5,-4.5 - parent: 60 - type: Transform -- uid: 18123 - type: WallReinforced - components: - - pos: 7.5,-4.5 - parent: 60 - type: Transform -- uid: 18124 - type: WallReinforced - components: - - pos: 4.5,-4.5 - parent: 60 - type: Transform -- uid: 18125 - type: AirlockCommandLocked - components: - - name: bridge maintenance - type: MetaData - - pos: 4.5,-1.5 - parent: 60 - type: Transform -- uid: 18126 - type: WallReinforced - components: - - pos: -4.5,-8.5 - parent: 60 - type: Transform -- uid: 18127 - type: WallReinforced - components: - - pos: -5.5,-8.5 - parent: 60 - type: Transform -- uid: 18128 - type: WallReinforced - components: - - pos: -6.5,-8.5 - parent: 60 - type: Transform -- uid: 18129 - type: WallReinforced - components: - - pos: -4.5,-9.5 - parent: 60 - type: Transform -- uid: 18130 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18131 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18132 - type: WallReinforced - components: - - pos: -6.5,-7.5 - parent: 60 - type: Transform -- uid: 18133 - type: WallReinforced - components: - - pos: -7.5,-7.5 - parent: 60 - type: Transform -- uid: 18134 - type: WallReinforced - components: - - pos: -8.5,-7.5 - parent: 60 - type: Transform -- uid: 18135 - type: WallReinforced - components: - - pos: -8.5,-6.5 - parent: 60 - type: Transform -- uid: 18136 - type: WallReinforced - components: - - pos: -9.5,-6.5 - parent: 60 - type: Transform -- uid: 18137 - type: Grille - components: - - pos: -9.5,-3.5 - parent: 60 - type: Transform -- uid: 18138 - type: ReinforcedWindow - components: - - pos: -9.5,-4.5 - parent: 60 - type: Transform -- uid: 18139 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -2.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18140 - type: WallReinforced - components: - - pos: -9.5,-2.5 - parent: 60 - type: Transform -- uid: 18141 - type: WallReinforced - components: - - pos: -8.5,-2.5 - parent: 60 - type: Transform -- uid: 18142 - type: WallReinforced - components: - - pos: -8.5,-1.5 - parent: 60 - type: Transform -- uid: 18143 - type: WallReinforced - components: - - pos: -7.5,-1.5 - parent: 60 - type: Transform -- uid: 18144 - type: WallReinforced - components: - - pos: -6.5,-1.5 - parent: 60 - type: Transform -- uid: 18145 - type: WallReinforced - components: - - pos: -2.5,-1.5 - parent: 60 - type: Transform -- uid: 18146 - type: WallReinforced - components: - - pos: 2.5,-1.5 - parent: 60 - type: Transform -- uid: 18147 - type: WallReinforced - components: - - pos: 3.5,-1.5 - parent: 60 - type: Transform -- uid: 18148 - type: CableHV - components: - - pos: 3.5,-2.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18149 - type: CableHV - components: - - pos: 14.5,-4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18150 - type: CableHV - components: - - pos: 14.5,-2.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18151 - type: CableHV - components: - - pos: 4.5,-2.5 - parent: 60 - type: Transform -- uid: 18152 - type: CableHV - components: - - pos: 4.5,-0.5 - parent: 60 - type: Transform -- uid: 18153 - type: CableHV - components: - - pos: 4.5,0.5 - parent: 60 - type: Transform -- uid: 18154 - type: CableHV - components: - - pos: 4.5,1.5 - parent: 60 - type: Transform -- uid: 18155 - type: CableHV - components: - - pos: 3.5,1.5 - parent: 60 - type: Transform -- uid: 18156 - type: CableHV - components: - - pos: 2.5,1.5 - parent: 60 - type: Transform -- uid: 18157 - type: CableHV - components: - - pos: 1.5,1.5 - parent: 60 - type: Transform -- uid: 18158 - type: CableHV - components: - - pos: 0.5,1.5 - parent: 60 - type: Transform -- uid: 18159 - type: CableHV - components: - - pos: -0.5,1.5 - parent: 60 - type: Transform -- uid: 18160 - type: CableHV - components: - - pos: -1.5,1.5 - parent: 60 - type: Transform -- uid: 18161 - type: CableHV - components: - - pos: -2.5,1.5 - parent: 60 - type: Transform -- uid: 18162 - type: CableHV - components: - - pos: -3.5,1.5 - parent: 60 - type: Transform -- uid: 18163 - type: CableHV - components: - - pos: -4.5,1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18164 - type: CableHV - components: - - pos: -4.5,0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18165 - type: CableHV - components: - - pos: 1.5,0.5 - parent: 60 - type: Transform -- uid: 18166 - type: CableHV - components: - - pos: 1.5,-0.5 - parent: 60 - type: Transform -- uid: 18167 - type: CableHV - components: - - pos: 1.5,-1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18168 - type: CableHV - components: - - pos: 1.5,-2.5 - parent: 60 - type: Transform -- uid: 18169 - type: CableHV - components: - - pos: 1.5,-3.5 - parent: 60 - type: Transform -- uid: 18170 - type: CableHV - components: - - pos: 1.5,-4.5 - parent: 60 - type: Transform -- uid: 18171 - type: CableHV - components: - - pos: 1.5,-5.5 - parent: 60 - type: Transform -- uid: 18172 - type: CableHV - components: - - pos: 1.5,-6.5 - parent: 60 - type: Transform -- uid: 18173 - type: CableHV - components: - - pos: 1.5,-7.5 - parent: 60 - type: Transform -- uid: 18174 - type: CableHV - components: - - pos: 1.5,-8.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18175 - type: CableHV - components: - - pos: 1.5,-9.5 - parent: 60 - type: Transform -- uid: 18176 - type: CableHV - components: - - pos: 1.5,-10.5 - parent: 60 - type: Transform -- uid: 18177 - type: CableHV - components: - - pos: 1.5,-11.5 - parent: 60 - type: Transform -- uid: 18178 - type: CableHV - components: - - pos: 1.5,-12.5 - parent: 60 - type: Transform -- uid: 18179 - type: CableHV - components: - - pos: 1.5,-13.5 - parent: 60 - type: Transform -- uid: 18180 - type: CableHV - components: - - pos: 1.5,-14.5 - parent: 60 - type: Transform -- uid: 18181 - type: CableHV - components: - - pos: 1.5,-15.5 - parent: 60 - type: Transform -- uid: 18182 - type: CableHV - components: - - pos: 1.5,-16.5 - parent: 60 - type: Transform -- uid: 18183 - type: CableHV - components: - - pos: 1.5,-17.5 - parent: 60 - type: Transform -- uid: 18184 - type: CableHV - components: - - pos: 1.5,-18.5 - parent: 60 - type: Transform -- uid: 18185 - type: CableHV - components: - - pos: 1.5,-19.5 - parent: 60 - type: Transform -- uid: 18186 - type: CableHV - components: - - pos: 1.5,-20.5 - parent: 60 - type: Transform -- uid: 18187 - type: CableHV - components: - - pos: 1.5,-21.5 - parent: 60 - type: Transform -- uid: 18188 - type: CableHV - components: - - pos: 1.5,-22.5 - parent: 60 - type: Transform -- uid: 18189 - type: CableHV - components: - - pos: 1.5,-23.5 - parent: 60 - type: Transform -- uid: 18190 - type: CableHV - components: - - pos: -4.5,0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18191 - type: CableHV - components: - - pos: 5.5,1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18192 - type: CableHV - components: - - pos: 5.5,0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18193 - type: CableHV - components: - - pos: 0.5,2.5 - parent: 60 - type: Transform -- uid: 18194 - type: CableHV - components: - - pos: 0.5,3.5 - parent: 60 - type: Transform -- uid: 18195 - type: CableHV - components: - - pos: 0.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18196 - type: CableHV - components: - - pos: -0.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18197 - type: CableHV - components: - - pos: -1.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18198 - type: CableHV - components: - - pos: -2.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18199 - type: CableHV - components: - - pos: -3.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18200 - type: CableHV - components: - - pos: -3.5,3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18201 - type: CableHV - components: - - pos: 1.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18202 - type: CableHV - components: - - pos: 2.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18203 - type: CableHV - components: - - pos: 3.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18204 - type: CableHV - components: - - pos: 4.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18205 - type: CableHV - components: - - pos: 4.5,3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18206 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,-3.5 - parent: 60 - type: Transform -- uid: 18207 - type: AirlockCaptainLocked - components: - - pos: -2.5,-8.5 - parent: 60 - type: Transform -- uid: 18208 - type: PosterLegitBlessThisSpess - components: - - pos: -5.5,-2.5 - parent: 60 - type: Transform -- uid: 18209 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 60 - type: Transform -- uid: 18210 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-3.5 - parent: 60 - type: Transform -- uid: 18211 - type: WindowReinforcedDirectional - components: - - pos: -5.5,-6.5 - parent: 60 - type: Transform -- uid: 18212 - type: FlashlightLantern - components: - - pos: -11.520379,3.704955 - parent: 60 - type: Transform -- uid: 18213 - type: CableApcExtension - components: - - pos: -2.5,-10.5 - parent: 60 - type: Transform -- uid: 18214 - type: WallSolid - components: - - pos: -5.5,-2.5 - parent: 60 - type: Transform -- uid: 18215 - type: ReinforcedWindow - components: - - pos: -20.5,-2.5 - parent: 60 - type: Transform -- uid: 18216 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18217 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18218 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18219 - type: GasPipeStraight - components: - - pos: 1.5,-10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18220 - type: GasPipeStraight - components: - - pos: 1.5,-9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18221 - type: GasPipeStraight - components: - - pos: 1.5,-8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18222 - type: GasPipeStraight - components: - - pos: 1.5,-7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18223 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18224 - type: GasPipeStraight - components: - - pos: 1.5,-5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18225 - type: GasPipeStraight - components: - - pos: 1.5,-4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18226 - type: GasPipeStraight - components: - - pos: 1.5,-3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18227 - type: GasPipeStraight - components: - - pos: 1.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18228 - type: GasPipeStraight - components: - - pos: 1.5,-1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18229 - type: GasPipeStraight - components: - - pos: 1.5,-0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18230 - type: GasPipeStraight - components: - - pos: -0.5,-12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18231 - type: GasPipeFourway - components: - - pos: 1.5,-11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18232 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18233 - type: GasPipeStraight - components: - - pos: -0.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18234 - type: GasPipeStraight - components: - - pos: -0.5,-8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18235 - type: GasPipeStraight - components: - - pos: -0.5,-7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18236 - type: GasPipeStraight - components: - - pos: -0.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18237 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18238 - type: GasPipeStraight - components: - - pos: -0.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18239 - type: GasPipeFourway - components: - - pos: 1.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18240 - type: GasPipeStraight - components: - - pos: -0.5,-2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18241 - type: GasPipeStraight - components: - - pos: -0.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18242 - type: GasPipeTJunction - components: - - pos: 1.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18243 - type: GasPipeTJunction - components: - - pos: -0.5,-0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18244 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18245 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18246 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18247 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18248 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18249 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18250 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18251 - type: GasPipeStraight - components: - - pos: -2.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18252 - type: GasPipeStraight - components: - - pos: -2.5,-2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18253 - type: GasPipeStraight - components: - - pos: -2.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18254 - type: FloorDrain - components: - - pos: -2.5,-11.5 - parent: 60 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 18255 - type: GasPipeTJunction - components: - - pos: -3.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18256 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18257 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18258 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18259 - type: CarpetBlue - components: - - pos: -6.5,-5.5 - parent: 60 - type: Transform -- uid: 18260 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18261 - type: CarpetBlue - components: - - pos: -7.5,-5.5 - parent: 60 - type: Transform -- uid: 18262 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18263 - type: GasPipeStraight - components: - - pos: -3.5,-0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18264 - type: GasPipeStraight - components: - - pos: -3.5,-1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18265 - type: GasPipeStraight - components: - - pos: -3.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18266 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18267 - type: GasPipeFourway - components: - - pos: -4.5,-3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18268 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18269 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18270 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18271 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18272 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18273 - type: WallReinforced - components: - - pos: -3.5,-8.5 - parent: 60 - type: Transform -- uid: 18274 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18275 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18276 - type: GasPipeBend - components: - - pos: -2.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18277 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -4.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18278 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18279 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18280 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18281 - type: WallSolid - components: - - pos: 28.5,-37.5 - parent: 60 - type: Transform -- uid: 18282 - type: CableMV - components: - - pos: 3.5,-2.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18283 - type: CableMV - components: - - pos: 4.5,-2.5 - parent: 60 - type: Transform -- uid: 18284 - type: CableMV - components: - - pos: 4.5,-1.5 - parent: 60 - type: Transform -- uid: 18285 - type: CableMV - components: - - pos: 4.5,-0.5 - parent: 60 - type: Transform -- uid: 18286 - type: CableMV - components: - - pos: 3.5,-0.5 - parent: 60 - type: Transform -- uid: 18287 - type: CableMV - components: - - pos: 2.5,-0.5 - parent: 60 - type: Transform -- uid: 18288 - type: CableMV - components: - - pos: 1.5,-0.5 - parent: 60 - type: Transform -- uid: 18289 - type: CableMV - components: - - pos: 0.5,-0.5 - parent: 60 - type: Transform -- uid: 18290 - type: CableMV - components: - - pos: -1.5,-0.5 - parent: 60 - type: Transform -- uid: 18291 - type: CableMV - components: - - pos: -2.5,-0.5 - parent: 60 - type: Transform -- uid: 18292 - type: CableMV - components: - - pos: -0.5,-0.5 - parent: 60 - type: Transform -- uid: 18293 - type: CableMV - components: - - pos: -2.5,-1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18294 - type: CableApcExtension - components: - - pos: -2.5,-1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18295 - type: CableApcExtension - components: - - pos: -2.5,-2.5 - parent: 60 - type: Transform -- uid: 18296 - type: CableApcExtension - components: - - pos: -2.5,-3.5 - parent: 60 - type: Transform -- uid: 18297 - type: CableApcExtension - components: - - pos: -3.5,-3.5 - parent: 60 - type: Transform -- uid: 18298 - type: CableApcExtension - components: - - pos: -3.5,-4.5 - parent: 60 - type: Transform -- uid: 18299 - type: CableApcExtension - components: - - pos: -3.5,-5.5 - parent: 60 - type: Transform -- uid: 18300 - type: CableApcExtension - components: - - pos: -3.5,-6.5 - parent: 60 - type: Transform -- uid: 18301 - type: CableApcExtension - components: - - pos: -2.5,-6.5 - parent: 60 - type: Transform -- uid: 18302 - type: CableApcExtension - components: - - pos: -2.5,-7.5 - parent: 60 - type: Transform -- uid: 18303 - type: CableApcExtension - components: - - pos: -2.5,-8.5 - parent: 60 - type: Transform -- uid: 18304 - type: CableApcExtension - components: - - pos: -2.5,-9.5 - parent: 60 - type: Transform -- uid: 18305 - type: CableApcExtension - components: - - pos: -4.5,-3.5 - parent: 60 - type: Transform -- uid: 18306 - type: CableApcExtension - components: - - pos: -5.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18307 - type: CableApcExtension - components: - - pos: -6.5,-3.5 - parent: 60 - type: Transform -- uid: 18308 - type: CableApcExtension - components: - - pos: -7.5,-3.5 - parent: 60 - type: Transform -- uid: 18309 - type: CableApcExtension - components: - - pos: -7.5,-4.5 - parent: 60 - type: Transform -- uid: 18310 - type: CableApcExtension - components: - - pos: -7.5,-5.5 - parent: 60 - type: Transform -- uid: 18311 - type: CableApcExtension - components: - - pos: -7.5,-6.5 - parent: 60 - type: Transform -- uid: 18312 - type: CableApcExtension - components: - - pos: -2.5,-0.5 - parent: 60 - type: Transform -- uid: 18313 - type: CableApcExtension - components: - - pos: -2.5,0.5 - parent: 60 - type: Transform -- uid: 18314 - type: CableApcExtension - components: - - pos: -2.5,0.5 - parent: 60 - type: Transform -- uid: 18315 - type: CableApcExtension - components: - - pos: -2.5,1.5 - parent: 60 - type: Transform -- uid: 18316 - type: CableApcExtension - components: - - pos: -1.5,1.5 - parent: 60 - type: Transform -- uid: 18317 - type: CableApcExtension - components: - - pos: -0.5,1.5 - parent: 60 - type: Transform -- uid: 18318 - type: CableApcExtension - components: - - pos: 0.5,1.5 - parent: 60 - type: Transform -- uid: 18319 - type: CableApcExtension - components: - - pos: 1.5,1.5 - parent: 60 - type: Transform -- uid: 18320 - type: CableApcExtension - components: - - pos: 2.5,1.5 - parent: 60 - type: Transform -- uid: 18321 - type: CableApcExtension - components: - - pos: 3.5,1.5 - parent: 60 - type: Transform -- uid: 18322 - type: CableApcExtension - components: - - pos: 0.5,2.5 - parent: 60 - type: Transform -- uid: 18323 - type: CableApcExtension - components: - - pos: 0.5,3.5 - parent: 60 - type: Transform -- uid: 18324 - type: CableApcExtension - components: - - pos: 0.5,0.5 - parent: 60 - type: Transform -- uid: 18325 - type: CableApcExtension - components: - - pos: 0.5,-0.5 - parent: 60 - type: Transform -- uid: 18326 - type: CableApcExtension - components: - - pos: 0.5,-1.5 - parent: 60 - type: Transform -- uid: 18327 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -74.5,18.5 - parent: 60 - type: Transform -- uid: 18328 - type: CableApcExtension - components: - - pos: 0.5,-3.5 - parent: 60 - type: Transform -- uid: 18329 - type: CableApcExtension - components: - - pos: 0.5,-4.5 - parent: 60 - type: Transform -- uid: 18330 - type: CableApcExtension - components: - - pos: 0.5,-5.5 - parent: 60 - type: Transform -- uid: 18331 - type: CableApcExtension - components: - - pos: 0.5,-6.5 - parent: 60 - type: Transform -- uid: 18332 - type: CableApcExtension - components: - - pos: 0.5,-7.5 - parent: 60 - type: Transform -- uid: 18333 - type: CableApcExtension - components: - - pos: 0.5,-8.5 - parent: 60 - type: Transform -- uid: 18334 - type: CableApcExtension - components: - - pos: 0.5,-9.5 - parent: 60 - type: Transform -- uid: 18335 - type: CableApcExtension - components: - - pos: 0.5,-10.5 - parent: 60 - type: Transform -- uid: 18336 - type: CableApcExtension - components: - - pos: 0.5,-11.5 - parent: 60 - type: Transform -- uid: 18337 - type: CableApcExtension - components: - - pos: 0.5,-12.5 - parent: 60 - type: Transform -- uid: 18338 - type: CableApcExtension - components: - - pos: 0.5,-13.5 - parent: 60 - type: Transform -- uid: 18339 - type: CableApcExtension - components: - - pos: 0.5,-14.5 - parent: 60 - type: Transform -- uid: 18340 - type: CableApcExtension - components: - - pos: 0.5,-15.5 - parent: 60 - type: Transform -- uid: 18341 - type: CableApcExtension - components: - - pos: 0.5,-16.5 - parent: 60 - type: Transform -- uid: 18342 - type: CableApcExtension - components: - - pos: 0.5,-17.5 - parent: 60 - type: Transform -- uid: 18343 - type: CableApcExtension - components: - - pos: 0.5,-18.5 - parent: 60 - type: Transform -- uid: 18344 - type: CableApcExtension - components: - - pos: 0.5,-19.5 - parent: 60 - type: Transform -- uid: 18345 - type: CableApcExtension - components: - - pos: 0.5,-20.5 - parent: 60 - type: Transform -- uid: 18346 - type: CableApcExtension - components: - - pos: 2.5,-6.5 - parent: 60 - type: Transform -- uid: 18347 - type: CableApcExtension - components: - - pos: 3.5,-6.5 - parent: 60 - type: Transform -- uid: 18348 - type: CableApcExtension - components: - - pos: 4.5,-6.5 - parent: 60 - type: Transform -- uid: 18349 - type: CableApcExtension - components: - - pos: 5.5,-6.5 - parent: 60 - type: Transform -- uid: 18350 - type: CableApcExtension - components: - - pos: 6.5,-6.5 - parent: 60 - type: Transform -- uid: 18351 - type: CableApcExtension - components: - - pos: 4.5,1.5 - parent: 60 - type: Transform -- uid: 18352 - type: CableApcExtension - components: - - pos: 4.5,0.5 - parent: 60 - type: Transform -- uid: 18353 - type: CableApcExtension - components: - - pos: 4.5,-0.5 - parent: 60 - type: Transform -- uid: 18354 - type: CableApcExtension - components: - - pos: 4.5,-1.5 - parent: 60 - type: Transform -- uid: 18355 - type: CableApcExtension - components: - - pos: 4.5,-2.5 - parent: 60 - type: Transform -- uid: 18356 - type: CableApcExtension - components: - - pos: 4.5,-3.5 - parent: 60 - type: Transform -- uid: 18357 - type: CableApcExtension - components: - - pos: 5.5,-3.5 - parent: 60 - type: Transform -- uid: 18358 - type: CableApcExtension - components: - - pos: 6.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18359 - type: CableApcExtension - components: - - pos: 7.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18360 - type: CableApcExtension - components: - - pos: 8.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18361 - type: CableApcExtension - components: - - pos: 9.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18362 - type: CableApcExtension - components: - - pos: 3.5,2.5 - parent: 60 - type: Transform -- uid: 18363 - type: CableApcExtension - components: - - pos: 3.5,3.5 - parent: 60 - type: Transform -- uid: 18364 - type: CableApcExtension - components: - - pos: -2.5,2.5 - parent: 60 - type: Transform -- uid: 18365 - type: CableApcExtension - components: - - pos: -2.5,3.5 - parent: 60 - type: Transform -- uid: 18366 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 22.5,4.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 18367 - type: CarpetBlue - components: - - pos: -4.5,-5.5 - parent: 60 - type: Transform -- uid: 18368 - type: CratePrivateSecure - components: - - pos: 3.5,-7.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18835 - - 18834 - - 18823 - - 18792 - - 18731 - - 18442 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 18369 - type: AirlockCaptainGlassLocked - components: - - pos: -5.5,-4.5 - parent: 60 - type: Transform -- uid: 18370 - type: ToyRubberDuck - components: - - pos: -2.47266,-11.475237 - parent: 60 - type: Transform -- uid: 18371 - type: WallReinforced - components: - - pos: -4.5,-11.5 - parent: 60 - type: Transform -- uid: 18372 - type: WallReinforced - components: - - pos: -4.5,-10.5 - parent: 60 - type: Transform -- uid: 18373 - type: WallReinforced - components: - - pos: 3.5,-12.5 - parent: 60 - type: Transform -- uid: 18374 - type: WallReinforced - components: - - pos: 4.5,-12.5 - parent: 60 - type: Transform -- uid: 18375 - type: WallReinforced - components: - - pos: -3.5,-11.5 - parent: 60 - type: Transform -- uid: 18376 - type: WallReinforced - components: - - pos: 5.5,-11.5 - parent: 60 - type: Transform -- uid: 18377 - type: WallReinforced - components: - - pos: 5.5,-10.5 - parent: 60 - type: Transform -- uid: 18378 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18379 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18380 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18381 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18382 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18383 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18384 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18385 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18386 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18387 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18388 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18389 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18390 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18391 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18392 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18393 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18394 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18395 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18396 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18397 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18398 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18399 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18400 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18401 - type: FloorTileItemGold - components: - - pos: 8.50918,-6.461349 - parent: 60 - type: Transform -- uid: 18402 - type: AirlockMaintLocked - components: - - name: Bridge Maint - type: MetaData - - pos: 2.5,-11.5 - parent: 60 - type: Transform -- uid: 18403 - type: AirlockCommandGlassLocked - components: - - name: Bridge - type: MetaData - - pos: 0.5,-1.5 - parent: 60 - type: Transform -- uid: 18404 - type: AirlockCommandGlassLocked - components: - - name: Bridge - type: MetaData - - pos: 0.5,-8.5 - parent: 60 - type: Transform -- uid: 18405 - type: CableHV - components: - - pos: 0.5,-1.5 - parent: 60 - type: Transform -- uid: 18406 - type: CableHV - components: - - pos: -0.5,-1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18407 - type: CableHV - components: - - pos: 0.5,-8.5 - parent: 60 - type: Transform -- uid: 18408 - type: CableHV - components: - - pos: -0.5,-8.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18409 - type: Grille - components: - - pos: -0.5,-8.5 - parent: 60 - type: Transform -- uid: 18410 - type: Grille - components: - - pos: 1.5,-8.5 - parent: 60 - type: Transform -- uid: 18411 - type: Grille - components: - - pos: 1.5,-1.5 - parent: 60 - type: Transform -- uid: 18412 - type: Grille - components: - - pos: -0.5,-1.5 - parent: 60 - type: Transform -- uid: 18413 - type: ReinforcedWindow - components: - - pos: -0.5,-8.5 - parent: 60 - type: Transform -- uid: 18414 - type: ReinforcedWindow - components: - - pos: 1.5,-8.5 - parent: 60 - type: Transform -- uid: 18415 - type: ReinforcedWindow - components: - - pos: 1.5,-1.5 - parent: 60 - type: Transform -- uid: 18416 - type: ReinforcedWindow - components: - - pos: -0.5,-1.5 - parent: 60 - type: Transform -- uid: 18417 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18418 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18419 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18420 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18421 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18422 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18423 - type: GasPipeBend - components: - - pos: 4.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18424 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18425 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18426 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18427 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18428 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 4.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18429 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18430 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18431 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18432 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18433 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18434 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18435 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -3.5,-9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18436 - type: ReinforcedWindow - components: - - pos: -9.5,-3.5 - parent: 60 - type: Transform -- uid: 18437 - type: ReinforcedWindow - components: - - pos: -9.5,-5.5 - parent: 60 - type: Transform -- uid: 18438 - type: SignalButton - components: - - pos: -8.5,-2.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 18519 - - port: Toggle - uid: 18518 - - port: Toggle - uid: 18517 - type: SignalTransmitter -- uid: 18439 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 24.5,-2.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 18440 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 44.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18441 - type: LockerFreezer - components: - - pos: 3.5,-5.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18453 - - 18548 - - 17492 - - 17491 - - 17379 - type: ContainerContainer -- uid: 18442 - type: DrinkWaterBottleFull - components: - - flags: InContainer - type: MetaData - - parent: 18368 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 18443 - type: Table - components: - - pos: 5.5,-5.5 - parent: 60 - type: Transform -- uid: 18444 - type: Table - components: - - pos: 6.5,-5.5 - parent: 60 - type: Transform -- uid: 18445 - type: CigarGoldCase - components: - - pos: 5.5158696,-7.3988457 - parent: 60 - type: Transform -- uid: 18446 - type: Table - components: - - pos: 6.5,-7.5 - parent: 60 - type: Transform -- uid: 18447 - type: Table - components: - - pos: 5.5,-7.5 - parent: 60 - type: Transform -- uid: 18448 - type: NuclearBomb - components: - - pos: 4.5,-5.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 18449 - type: PosterContrabandNuclearDeviceInformational - components: - - pos: 5.5,-4.5 - parent: 60 - type: Transform -- uid: 18450 - type: Table - components: - - pos: 6.5,-6.5 - parent: 60 - type: Transform -- uid: 18451 - type: PosterContrabandAmbrosiaVulgaris - components: - - pos: 7.5,-6.5 - parent: 60 - type: Transform -- uid: 18452 - type: PinpointerNuclear - components: - - pos: 5.6252446,-7.5082207 - parent: 60 - type: Transform -- uid: 18453 - type: BoxFolderBlack - components: - - flags: InContainer - name: secret documents - type: MetaData - - parent: 18441 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 18454 - type: ToolboxGoldFilled - components: - - pos: 5.5002446,-5.3832207 - parent: 60 - type: Transform -- uid: 18455 - type: IngotGold - components: - - pos: 6.4689946,-5.3675957 - parent: 60 - type: Transform -- uid: 18456 - type: FlashlightLantern - components: - - pos: 1.5308173,20.376057 - parent: 60 - type: Transform -- uid: 18457 - type: DrinkGoldenCup - components: - - pos: 6.6877446,-6.3988457 - parent: 60 - type: Transform -- uid: 18458 - type: ClothingHeadHatHairflower - components: - - pos: 6.7189946,-5.8832207 - parent: 60 - type: Transform -- uid: 18459 - type: IngotSilver - components: - - pos: 6.395408,-7.409923 - parent: 60 - type: Transform -- uid: 18460 - type: ClothingBeltChampion - components: - - pos: 6.5002446,-6.7582207 - parent: 60 - type: Transform - - containers: - storagebase: !type:Container - ents: [] - type: ContainerContainer -- uid: 18461 - type: ClothingNeckBling - components: - - pos: 5.9221196,-5.3832207 - parent: 60 - type: Transform -- uid: 18462 - type: FirelockGlass - components: - - pos: 1.5,-12.5 - parent: 60 - type: Transform -- uid: 18463 - type: FirelockGlass - components: - - pos: 0.5,-12.5 - parent: 60 - type: Transform -- uid: 18464 - type: FirelockGlass - components: - - pos: -0.5,-12.5 - parent: 60 - type: Transform -- uid: 18465 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,-9.5 - parent: 60 - type: Transform -- uid: 18466 - type: Table - components: - - pos: 4.5,-9.5 - parent: 60 - type: Transform -- uid: 18467 - type: ClothingHeadHatWitch1 - components: - - pos: 4.4681315,-9.3940325 - parent: 60 - type: Transform -- uid: 18468 - type: ClothingEyesEyepatch - components: - - pos: 4.4993815,-9.5034075 - parent: 60 - type: Transform -- uid: 18469 - type: ElectricGuitarInstrument - components: - - pos: 4.4056315,-9.4877825 - parent: 60 - type: Transform -- uid: 18470 - type: TableWood - components: - - pos: -4.5,-6.5 - parent: 60 - type: Transform -- uid: 18471 - type: TableWood - components: - - pos: -3.5,-6.5 - parent: 60 - type: Transform -- uid: 18472 - type: Fireplace - components: - - pos: -7.5,-2.5 - parent: 60 - type: Transform -- uid: 18473 - type: Dresser - components: - - pos: -7.5,-6.5 - parent: 60 - type: Transform -- uid: 18474 - type: TableWood - components: - - pos: -8.5,-5.5 - parent: 60 - type: Transform -- uid: 18475 - type: LampGold - components: - - pos: -8.643374,-5.091722 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 18476 - type: FlashlightLantern - components: - - pos: 1.6245673,20.188557 - parent: 60 - type: Transform -- uid: 18477 - type: ComfyChair - components: - - pos: -3.5,-5.5 - parent: 60 - type: Transform -- uid: 18478 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -3.5,-7.5 - parent: 60 - type: Transform -- uid: 18479 - type: CableApcExtension - components: - - pos: 1.5,-11.5 - parent: 60 - type: Transform -- uid: 18480 - type: CableApcExtension - components: - - pos: 2.5,-11.5 - parent: 60 - type: Transform -- uid: 18481 - type: CableApcExtension - components: - - pos: 3.5,-11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18482 - type: CableApcExtension - components: - - pos: 3.5,-10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18483 - type: PoweredSmallLight - components: - - pos: 3.5,-9.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18484 - type: Catwalk - components: - - pos: 3.5,-11.5 - parent: 60 - type: Transform -- uid: 18485 - type: Catwalk - components: - - pos: 3.5,-10.5 - parent: 60 - type: Transform -- uid: 18486 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 60 - type: Transform -- uid: 18487 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 60 - type: Transform -- uid: 18488 - type: WallSolidRust - components: - - pos: 31.5,19.5 - parent: 60 - type: Transform -- uid: 18489 - type: WallSolidRust - components: - - pos: 28.5,19.5 - parent: 60 - type: Transform -- uid: 18490 - type: PoweredSmallLight - components: - - pos: 8.5,-2.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18491 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 21.5,4.5 - parent: 60 - type: Transform -- uid: 18492 - type: ClosetEmergencyFilledRandom - components: - - pos: 7.5,-2.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18493 - type: OxygenCanister - components: - - pos: 8.5,-2.5 - parent: 60 - type: Transform -- uid: 18494 - type: CarpetBlue - components: - - pos: -4.5,-6.5 - parent: 60 - type: Transform -- uid: 18495 - type: HospitalCurtainsOpen - components: - - pos: -2.5,-11.5 - parent: 60 - type: Transform -- uid: 18496 - type: ExtinguisherCabinetFilled - components: - - pos: -11.5,11.5 - parent: 60 - type: Transform -- uid: 18497 - type: CarpetBlue - components: - - pos: -3.5,-6.5 - parent: 60 - type: Transform -- uid: 18498 - type: CarpetBlue - components: - - pos: -4.5,-4.5 - parent: 60 - type: Transform -- uid: 18499 - type: CarpetBlue - components: - - pos: -2.5,-4.5 - parent: 60 - type: Transform -- uid: 18500 - type: CarpetBlue - components: - - pos: -2.5,-6.5 - parent: 60 - type: Transform -- uid: 18501 - type: CarpetBlue - components: - - pos: -3.5,-4.5 - parent: 60 - type: Transform -- uid: 18502 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18503 - type: ComfyChair - components: - - pos: -8.5,-4.5 - parent: 60 - type: Transform -- uid: 18504 - type: LockerCaptainFilled - components: - - pos: -6.5,-2.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18505 - type: Bed - components: - - pos: -6.5,-6.5 - parent: 60 - type: Transform -- uid: 18506 - type: BedsheetCaptain - components: - - pos: -6.5,-6.5 - parent: 60 - type: Transform -- uid: 18507 - type: AirlockCaptainLocked - components: - - pos: -3.5,-1.5 - parent: 60 - type: Transform -- uid: 18508 - type: ComputerComms - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 60 - type: Transform -- uid: 18509 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18510 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18511 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18512 - type: Grille - components: - - pos: -9.5,-5.5 - parent: 60 - type: Transform -- uid: 18513 - type: CarpetBlue - components: - - pos: -3.5,-5.5 - parent: 60 - type: Transform -- uid: 18514 - type: Grille - components: - - pos: -9.5,-4.5 - parent: 60 - type: Transform -- uid: 18515 - type: CarpetBlue - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 60 - type: Transform -- uid: 18516 - type: CarpetBlue - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-6.5 - parent: 60 - type: Transform -- uid: 18517 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-5.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18438 - type: SignalReceiver -- uid: 18518 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-4.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18438 - type: SignalReceiver -- uid: 18519 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18438 - type: SignalReceiver -- uid: 18520 - type: CarpetBlue - components: - - pos: -2.5,-5.5 - parent: 60 - type: Transform -- uid: 18521 - type: CableMV - components: - - pos: -32.5,-15.5 - parent: 60 - type: Transform -- uid: 18522 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,-15.5 - parent: 60 - type: Transform - - sprite: Structures/Machines/VendingMachines/cigs.rsi - type: Sprite -- uid: 18523 - type: RandomVendingSnacks - components: - - pos: -38.5,26.5 - parent: 60 - type: Transform -- uid: 18524 - type: Chair - components: - - pos: -29.5,9.5 - parent: 60 - type: Transform -- uid: 18525 - type: Grille - components: - - pos: -13.5,-5.5 - parent: 60 - type: Transform -- uid: 18526 - type: Grille - components: - - pos: -13.5,-4.5 - parent: 60 - type: Transform -- uid: 18527 - type: Grille - components: - - pos: -13.5,-3.5 - parent: 60 - type: Transform -- uid: 18528 - type: Lamp - components: - - pos: -4.422296,-6.0514507 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 18529 - type: ClothingUniformJumpskirtJanimaid - components: - - pos: 8.506187,-6.4335732 - parent: 60 - type: Transform -- uid: 18530 - type: DisposalUnit - components: - - pos: 2.5,-0.5 - parent: 60 - type: Transform -- uid: 18531 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 2.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18532 - type: GasPipeBend - components: - - pos: 2.5,1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18533 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18534 - type: GasPipeBend - components: - - pos: 4.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18535 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18536 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18537 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18538 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18539 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18540 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18541 - type: SpawnMobFoxRenault - components: - - pos: -8.5,-3.5 - parent: 60 - type: Transform -- uid: 18542 - type: DogBed - components: - - desc: A comfy-looking fox bed. You can even strap your pet in, in case the gravity turns off. - name: fox bed - type: MetaData - - pos: -8.5,-3.5 - parent: 60 - type: Transform -- uid: 18543 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18544 - type: Bookshelf - components: - - pos: -4.5,-2.5 - parent: 60 - type: Transform -- uid: 18545 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18546 - type: PottedPlantBioluminscent - components: - - pos: -2.5,-2.5 - parent: 60 - type: Transform -- uid: 18547 - type: CableMV - components: - - pos: -20.5,1.5 - parent: 60 - type: Transform -- uid: 18548 - type: JetpackBlueFilled - components: - - flags: InContainer - type: MetaData - - parent: 18441 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 18549 - type: AirlockEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: 23.5,3.5 - parent: 60 - type: Transform -- uid: 18550 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18551 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18552 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18553 - type: PosterLegitNanotrasenLogo - components: - - pos: -4.5,-1.5 - parent: 60 - type: Transform -- uid: 18554 - type: PosterLegitNanotrasenLogo - components: - - desc: This poster looks like it was hastily put up to cover something. - name: Suspiciously Placed Nanotrasen Poster - type: MetaData - - pos: -1.5,-9.5 - parent: 60 - type: Transform -- uid: 18555 - type: PosterLegitNanotrasenLogo - components: - - pos: 2.5,-9.5 - parent: 60 - type: Transform -- uid: 18556 - type: FireAxeCabinetFilled - components: - - pos: 4.5,2.5 - parent: 60 - type: Transform -- uid: 18557 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 52.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18558 - type: ComputerComms - components: - - pos: 0.5,3.5 - parent: 60 - type: Transform -- uid: 18559 - type: ComputerId - components: - - pos: 1.5,3.5 - parent: 60 - type: Transform -- uid: 18560 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-0.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 18561 - type: ComputerCriminalRecords - components: - - rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 60 - type: Transform -- uid: 18562 - type: ComputerPowerMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 60 - type: Transform -- uid: 18563 - type: TableReinforced - components: - - pos: -2.5,3.5 - parent: 60 - type: Transform -- uid: 18564 - type: TableReinforced - components: - - pos: 3.5,3.5 - parent: 60 - type: Transform -- uid: 18565 - type: TableReinforced - components: - - pos: 2.5,3.5 - parent: 60 - type: Transform -- uid: 18566 - type: TableReinforced - components: - - pos: -0.5,2.5 - parent: 60 - type: Transform -- uid: 18567 - type: TableReinforced - components: - - pos: -0.5,3.5 - parent: 60 - type: Transform -- uid: 18568 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 60 - type: Transform -- uid: 18569 - type: ChairOfficeDark - components: - - pos: -1.5,2.5 - parent: 60 - type: Transform -- uid: 18570 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 2.5,2.5 - parent: 60 - type: Transform -- uid: 18571 - type: TableReinforced - components: - - pos: 4.5,1.5 - parent: 60 - type: Transform -- uid: 18572 - type: WeaponCapacitorRecharger - components: - - pos: -0.5,2.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 18573 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.465486,3.4514241 - parent: 60 - type: Transform -- uid: 18574 - type: Multitool - components: - - pos: -2.512361,3.5139241 - parent: 60 - type: Transform -- uid: 18575 - type: CableMV - components: - - pos: -7.5,2.5 - parent: 60 - type: Transform -- uid: 18576 - type: Flash - components: - - pos: 3.1967216,3.6603613 - parent: 60 - type: Transform -- uid: 18577 - type: MedkitFilled - components: - - pos: 3.6342216,3.5822363 - parent: 60 - type: Transform -- uid: 18578 - type: ToolboxEmergencyFilled - components: - - pos: 4.4779716,1.6538 - parent: 60 - type: Transform -- uid: 18579 - type: AirlockCommandLocked - components: - - name: AI Core - type: MetaData - - pos: -60.5,17.5 - parent: 60 - type: Transform -- uid: 18580 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18581 - type: SMESBasic - components: - - name: Telecomms SMES - type: MetaData - - pos: 24.5,5.5 - parent: 60 - type: Transform -- uid: 18582 - type: SubstationBasic - components: - - name: Telecomms Sub - type: MetaData - - pos: 25.5,4.5 - parent: 60 - type: Transform -- uid: 18583 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-10.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18584 - type: FlashlightLantern - components: - - pos: -14.507572,33.107548 - parent: 60 - type: Transform -- uid: 18585 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18586 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 60 - type: Transform -- uid: 18587 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-6.5 - parent: 60 - type: Transform -- uid: 18588 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -5.5,-5.5 - parent: 60 - type: Transform -- uid: 18589 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-6.5 - parent: 60 - type: Transform -- uid: 18590 - type: Catwalk - components: - - pos: -28.5,5.5 - parent: 60 - type: Transform -- uid: 18591 - type: Catwalk - components: - - pos: -27.5,5.5 - parent: 60 - type: Transform -- uid: 18592 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 60 - type: Transform - - devices: - - 18859 - - 18858 - - 18857 - - 21511 - - 11338 - - 11339 - - 11340 - type: DeviceList -- uid: 18593 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -27.5,9.5 - parent: 60 - type: Transform -- uid: 18594 - type: Catwalk - components: - - pos: -25.5,5.5 - parent: 60 - type: Transform -- uid: 18595 - type: Catwalk - components: - - pos: -24.5,5.5 - parent: 60 - type: Transform -- uid: 18596 - type: Catwalk - components: - - pos: -23.5,5.5 - parent: 60 - type: Transform -- uid: 18597 - type: Catwalk - components: - - pos: -22.5,4.5 - parent: 60 - type: Transform -- uid: 18598 - type: Catwalk - components: - - pos: -21.5,4.5 - parent: 60 - type: Transform -- uid: 18599 - type: Catwalk - components: - - pos: -20.5,4.5 - parent: 60 - type: Transform -- uid: 18600 - type: Catwalk - components: - - pos: -19.5,4.5 - parent: 60 - type: Transform -- uid: 18601 - type: Catwalk - components: - - pos: -18.5,4.5 - parent: 60 - type: Transform -- uid: 18602 - type: ClosetEmergencyFilledRandom - components: - - pos: -18.5,5.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18603 - type: ClosetFireFilled - components: - - pos: -19.5,5.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18604 - type: Rack - components: - - pos: -20.5,5.5 - parent: 60 - type: Transform -- uid: 18605 - type: MaintenanceFluffSpawner - components: - - pos: -20.5,5.5 - parent: 60 - type: Transform -- uid: 18606 - type: ClothingOuterCoatJensen - components: - - pos: -20.447735,5.5611706 - parent: 60 - type: Transform -- uid: 18607 - type: ClothingUnderSocksCoder - components: - - pos: -7.4850764,5.544639 - parent: 60 - type: Transform -- uid: 18608 - type: FirelockGlass - components: - - pos: -5.5,-3.5 - parent: 60 - type: Transform -- uid: 18609 - type: FirelockGlass - components: - - pos: 0.5,-1.5 - parent: 60 - type: Transform -- uid: 18610 - type: Rack - components: - - pos: 3.5,-3.5 - parent: 60 - type: Transform -- uid: 18611 - type: ToolboxElectricalFilled - components: - - pos: 3.5038543,-3.4785218 - parent: 60 - type: Transform -- uid: 18612 - type: SignElectricalMed - components: - - pos: 3.5,-1.5 - parent: 60 - type: Transform -- uid: 18613 - type: CableHV - components: - - pos: -3.5,0.5 - parent: 60 - type: Transform -- uid: 18614 - type: CableHV - components: - - pos: -3.5,-0.5 - parent: 60 - type: Transform -- uid: 18615 - type: CableHV - components: - - pos: -3.5,-1.5 - parent: 60 - type: Transform -- uid: 18616 - type: CableHV - components: - - pos: -3.5,-2.5 - parent: 60 - type: Transform -- uid: 18617 - type: CableHV - components: - - pos: -3.5,-3.5 - parent: 60 - type: Transform -- uid: 18618 - type: CableHV - components: - - pos: -3.5,-4.5 - parent: 60 - type: Transform -- uid: 18619 - type: CableHV - components: - - pos: -4.5,-4.5 - parent: 60 - type: Transform -- uid: 18620 - type: CableHV - components: - - pos: -5.5,-4.5 - parent: 60 - type: Transform -- uid: 18621 - type: CableHV - components: - - pos: -6.5,-4.5 - parent: 60 - type: Transform -- uid: 18622 - type: CableHV - components: - - pos: -7.5,-4.5 - parent: 60 - type: Transform -- uid: 18623 - type: CableHV - components: - - pos: -8.5,-4.5 - parent: 60 - type: Transform -- uid: 18624 - type: CableHV - components: - - pos: -9.5,-4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18625 - type: CableHV - components: - - pos: -9.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18626 - type: CableHV - components: - - pos: -9.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18627 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18628 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18629 - type: PoweredSmallLight - components: - - pos: -28.5,36.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18630 - type: PoweredSmallLight - components: - - pos: -25.5,36.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18631 - type: CableApcExtension - components: - - pos: -22.5,35.5 - parent: 60 - type: Transform -- uid: 18632 - type: CableApcExtension - components: - - pos: -23.5,35.5 - parent: 60 - type: Transform -- uid: 18633 - type: CableApcExtension - components: - - pos: -24.5,35.5 - parent: 60 - type: Transform -- uid: 18634 - type: CableApcExtension - components: - - pos: -25.5,35.5 - parent: 60 - type: Transform -- uid: 18635 - type: CableApcExtension - components: - - pos: -26.5,35.5 - parent: 60 - type: Transform -- uid: 18636 - type: CableApcExtension - components: - - pos: -27.5,35.5 - parent: 60 - type: Transform -- uid: 18637 - type: CableApcExtension - components: - - pos: -28.5,35.5 - parent: 60 - type: Transform -- uid: 18638 - type: CableApcExtension - components: - - pos: -29.5,35.5 - parent: 60 - type: Transform -- uid: 18639 - type: Poweredlight - components: - - pos: -10.5,50.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18640 - type: Poweredlight - components: - - pos: -22.5,50.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18641 - type: Poweredlight - components: - - pos: -18.5,51.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18642 - type: Poweredlight - components: - - pos: -14.5,51.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18643 - type: PoweredlightSodium - components: - - rot: 3.141592653589793 rad - pos: -3.5,38.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18644 - type: PoweredlightSodium - components: - - rot: 3.141592653589793 rad - pos: 5.5,38.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18645 - type: TelecomServer - components: - - pos: -106.5,26.5 - parent: 60 - type: Transform -- uid: 18646 - type: TableReinforced - components: - - pos: 36.5,17.5 - parent: 60 - type: Transform -- uid: 18647 - type: Poweredlight - components: - - pos: -27.5,32.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18648 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18649 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 51.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18650 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18651 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18652 - type: GasVentPump - components: - - pos: 45.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18653 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 45.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18654 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18655 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18656 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18657 - type: GasVentScrubber - components: - - pos: 43.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18658 - type: GasVentScrubber - components: - - pos: 44.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18659 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 52.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18660 - type: GasPipeStraight - components: - - pos: 52.5,10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18661 - type: GasPipeStraight - components: - - pos: 52.5,11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18662 - type: GasPipeTJunction - components: - - pos: 52.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18663 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 53.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18664 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 53.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18665 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18666 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18667 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18668 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 48.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18669 - type: GasPipeTJunction - components: - - pos: 51.5,13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18670 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 51.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18671 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -8.5,-16.5 - parent: 60 - type: Transform -- uid: 18672 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 51.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18673 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 51.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18674 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 51.5,11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18675 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 51.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18676 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: 42.5,0.5 - parent: 60 - type: Transform -- uid: 18677 - type: WallReinforced - components: - - pos: 18.5,-2.5 - parent: 60 - type: Transform -- uid: 18678 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,2.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18679 - type: GeneratorUranium - components: - - pos: -9.5,29.5 - parent: 60 - type: Transform -- uid: 18680 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18681 - type: SpawnPointCaptain - components: - - pos: -7.5,-4.5 - parent: 60 - type: Transform -- uid: 18682 - type: Grille - components: - - pos: -9.5,6.5 - parent: 60 - type: Transform -- uid: 18683 - type: ClothingShoesLeather - components: - - pos: -2.5209453,-2.870048 - parent: 60 - type: Transform -- uid: 18684 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18685 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 48.5,13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18686 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 53.5,13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18687 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 53.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18688 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18689 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18690 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18691 - type: CrateEmergencyRadiation - components: - - pos: -18.5,33.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 18692 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18693 - type: WarpPoint - components: - - pos: 39.5,-23.5 - parent: 60 - type: Transform - - location: med - type: WarpPoint -- uid: 18694 - type: WarpPoint - components: - - pos: 38.5,-29.5 - parent: 60 - type: Transform - - location: chem - type: WarpPoint -- uid: 18695 - type: WarpPoint - components: - - pos: 31.5,-28.5 - parent: 60 - type: Transform - - location: botany - type: WarpPoint -- uid: 18696 - type: WarpPoint - components: - - pos: 24.5,-31.5 - parent: 60 - type: Transform - - location: kitchen - type: WarpPoint -- uid: 18697 - type: WarpPoint - components: - - pos: 12.5,-31.5 - parent: 60 - type: Transform - - location: bar - type: WarpPoint -- uid: 18698 - type: WarpPoint - components: - - pos: 5.5,-29.5 - parent: 60 - type: Transform - - location: hop - type: WarpPoint -- uid: 18699 - type: WarpPoint - components: - - pos: -3.5,-4.5 - parent: 60 - type: Transform - - location: cap - type: WarpPoint -- uid: 18700 - type: WarpPoint - components: - - pos: 0.5,0.5 - parent: 60 - type: Transform - - location: bridge - type: WarpPoint -- uid: 18701 - type: WarpPoint - components: - - pos: 4.5,-6.5 - parent: 60 - type: Transform - - location: vault - type: WarpPoint -- uid: 18702 - type: FlashlightLantern - components: - - pos: 9.4389305,15.704865 - parent: 60 - type: Transform -- uid: 18703 - type: WarpPoint - components: - - pos: -14.5,-42.5 - parent: 60 - type: Transform - - location: disposals - type: WarpPoint -- uid: 18704 - type: WarpPoint - components: - - pos: -26.5,-4.5 - parent: 60 - type: Transform - - location: sec - type: WarpPoint -- uid: 18705 - type: WarpPoint - components: - - pos: -48.5,-0.5 - parent: 60 - type: Transform - - location: sci - type: WarpPoint -- uid: 18706 - type: WarpPoint - components: - - pos: -37.5,13.5 - parent: 60 - type: Transform - - location: robo - type: WarpPoint -- uid: 18707 - type: WarpPoint - components: - - pos: -38.5,24.5 - parent: 60 - type: Transform - - location: dorms - type: WarpPoint -- uid: 18708 - type: WarpPoint - components: - - pos: -36.5,37.5 - parent: 60 - type: Transform - - location: atmos - type: WarpPoint -- uid: 18709 - type: WarpPoint - components: - - pos: 0.5,18.5 - parent: 60 - type: Transform - - location: eng - type: WarpPoint -- uid: 18710 - type: WarpPoint - components: - - pos: -16.5,36.5 - parent: 60 - type: Transform - - location: sme - type: WarpPoint -- uid: 18711 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18712 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 39.5,5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18713 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 37.5,5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18714 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18715 - type: GasPipeStraight - components: - - pos: 37.5,4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18716 - type: GasPipeStraight - components: - - pos: 37.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18717 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 37.5,2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18718 - type: GasPipeStraight - components: - - pos: 37.5,1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18719 - type: ClothingHandsGlovesFingerless - components: - - pos: -55.487255,-14.6278 - parent: 60 - type: Transform -- uid: 18720 - type: RandomSpawner - components: - - pos: -36.5,16.5 - parent: 60 - type: Transform -- uid: 18721 - type: RandomSpawner - components: - - pos: -57.5,22.5 - parent: 60 - type: Transform -- uid: 18722 - type: RandomSpawner - components: - - pos: -61.5,13.5 - parent: 60 - type: Transform -- uid: 18723 - type: RandomSpawner - components: - - pos: -59.5,-1.5 - parent: 60 - type: Transform -- uid: 18724 - type: RandomSpawner - components: - - pos: -43.5,-13.5 - parent: 60 - type: Transform -- uid: 18725 - type: RandomSpawner - components: - - pos: 15.5,-39.5 - parent: 60 - type: Transform -- uid: 18726 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -41.5,44.5 - parent: 60 - type: Transform -- uid: 18727 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -41.5,43.5 - parent: 60 - type: Transform -- uid: 18728 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -41.5,42.5 - parent: 60 - type: Transform -- uid: 18729 - type: PortableScrubberMachineCircuitBoard - components: - - pos: 24.514688,14.581851 - parent: 60 - type: Transform -- uid: 18730 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -41.5,40.5 - parent: 60 - type: Transform -- uid: 18731 - type: DrinkWaterBottleFull - components: - - flags: InContainer - type: MetaData - - parent: 18368 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 18732 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -41.5,38.5 - parent: 60 - type: Transform -- uid: 18733 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -41.5,37.5 - parent: 60 - type: Transform -- uid: 18734 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -41.5,36.5 - parent: 60 - type: Transform -- uid: 18735 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -41.5,35.5 - parent: 60 - type: Transform -- uid: 18736 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -41.5,34.5 - parent: 60 - type: Transform -- uid: 18737 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -41.5,33.5 - parent: 60 - type: Transform -- uid: 18738 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -41.5,32.5 - parent: 60 - type: Transform -- uid: 18739 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -41.5,31.5 - parent: 60 - type: Transform -- uid: 18740 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -41.5,45.5 - parent: 60 - type: Transform -- uid: 18741 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -34.5,45.5 - parent: 60 - type: Transform -- uid: 18742 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -31.5,43.5 - parent: 60 - type: Transform -- uid: 18743 - type: APCElectronics - components: - - rot: -1.5707963267948966 rad - pos: -1.3567805,29.586765 - parent: 60 - type: Transform -- uid: 18744 - type: APCElectronics - components: - - rot: -1.5707963267948966 rad - pos: -1.3567805,29.586765 - parent: 60 - type: Transform -- uid: 18745 - type: AirAlarmElectronics - components: - - rot: -1.5707963267948966 rad - pos: -1.5599055,29.41489 - parent: 60 - type: Transform -- uid: 18746 - type: AirAlarmElectronics - components: - - rot: -1.5707963267948966 rad - pos: -1.5599055,29.41489 - parent: 60 - type: Transform -- uid: 18747 - type: Table - components: - - pos: -8.5,32.5 - parent: 60 - type: Transform -- uid: 18748 - type: FirelockElectronics - components: - - pos: -8.541508,32.64864 - parent: 60 - type: Transform -- uid: 18749 - type: FirelockElectronics - components: - - pos: -8.541508,32.64864 - parent: 60 - type: Transform -- uid: 18750 - type: DoorElectronics - components: - - pos: -8.400883,32.49239 - parent: 60 - type: Transform -- uid: 18751 - type: DoorElectronics - components: - - pos: -8.400883,32.49239 - parent: 60 - type: Transform -- uid: 18752 - type: CableMV - components: - - pos: -2.5,-2.5 - parent: 60 - type: Transform -- uid: 18753 - type: CableMV - components: - - pos: -2.5,-3.5 - parent: 60 - type: Transform -- uid: 18754 - type: CableMV - components: - - pos: -2.5,-4.5 - parent: 60 - type: Transform -- uid: 18755 - type: CableMV - components: - - pos: -3.5,-4.5 - parent: 60 - type: Transform -- uid: 18756 - type: CableMV - components: - - pos: -4.5,-4.5 - parent: 60 - type: Transform -- uid: 18757 - type: CableMV - components: - - pos: -5.5,-4.5 - parent: 60 - type: Transform -- uid: 18758 - type: CableMV - components: - - pos: -6.5,-4.5 - parent: 60 - type: Transform -- uid: 18759 - type: CableMV - components: - - pos: -8.5,-4.5 - parent: 60 - type: Transform -- uid: 18760 - type: CableMV - components: - - pos: -7.5,-4.5 - parent: 60 - type: Transform -- uid: 18761 - type: CableMV - components: - - pos: -9.5,-4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18762 - type: CableMV - components: - - pos: -9.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18763 - type: CableMV - components: - - pos: -10.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18764 - type: CableMV - components: - - pos: -11.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18765 - type: CableMV - components: - - pos: -12.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18766 - type: CableMV - components: - - pos: -12.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18767 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-16.5 - parent: 60 - type: Transform -- uid: 18768 - type: CableMV - components: - - pos: -5.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18769 - type: CableMV - components: - - pos: -5.5,-15.5 - parent: 60 - type: Transform -- uid: 18770 - type: CableMV - components: - - pos: -5.5,-16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18771 - type: Grille - components: - - pos: -5.5,-14.5 - parent: 60 - type: Transform -- uid: 18772 - type: FlashlightLantern - components: - - pos: -59.47151,2.4921975 - parent: 60 - type: Transform -- uid: 18773 - type: CableMV - components: - - pos: -12.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18774 - type: CableMV - components: - - pos: -12.5,-4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18775 - type: CableHV - components: - - pos: 3.5,2.5 - parent: 60 - type: Transform -- uid: 18776 - type: CableHV - components: - - pos: 12.5,-48.5 - parent: 60 - type: Transform -- uid: 18777 - type: Grille - components: - - pos: 1.5,12.5 - parent: 60 - type: Transform -- uid: 18778 - type: ClothingHandsGlovesFingerless - components: - - pos: 9.459599,-51.45789 - parent: 60 - type: Transform -- uid: 18779 - type: CheapRollerBed - components: - - pos: 45.462997,-27.484997 - parent: 60 - type: Transform -- uid: 18780 - type: CheapRollerBed - components: - - pos: 45.462997,-27.047497 - parent: 60 - type: Transform -- uid: 18781 - type: SurveillanceCameraRouterSecurity - components: - - pos: -22.5,2.5 - parent: 60 - type: Transform -- uid: 18782 - type: Catwalk - components: - - pos: 9.5,-3.5 - parent: 60 - type: Transform -- uid: 18783 - type: Catwalk - components: - - pos: 8.5,-3.5 - parent: 60 - type: Transform -- uid: 18784 - type: Catwalk - components: - - pos: 7.5,-3.5 - parent: 60 - type: Transform -- uid: 18785 - type: Bookshelf - components: - - pos: -5.5,-7.5 - parent: 60 - type: Transform -- uid: 18786 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -37.5,16.5 - parent: 60 - type: Transform -- uid: 18787 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -38.5,16.5 - parent: 60 - type: Transform -- uid: 18788 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: -40.5,16.5 - parent: 60 - type: Transform -- uid: 18789 - type: ClothingHeadHatUshanka - components: - - pos: -39.84982,16.263441 - parent: 60 - type: Transform -- uid: 18790 - type: CableMV - components: - - pos: -21.5,1.5 - parent: 60 - type: Transform -- uid: 18791 - type: CableMV - components: - - pos: -19.5,1.5 - parent: 60 - type: Transform -- uid: 18792 - type: DrinkWaterBottleFull - components: - - flags: InContainer - type: MetaData - - parent: 18368 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 18793 - type: Window - components: - - pos: 57.5,-36.5 - parent: 60 - type: Transform -- uid: 18794 - type: CableApcExtension - components: - - pos: 48.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18795 - type: CableApcExtension - components: - - pos: 48.5,-39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18796 - type: CableApcExtension - components: - - pos: 48.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18797 - type: TableWood - components: - - pos: 53.5,-38.5 - parent: 60 - type: Transform -- uid: 18798 - type: Grille - components: - - pos: 55.5,-33.5 - parent: 60 - type: Transform -- uid: 18799 - type: PlasticFlapsAirtightClear - components: - - pos: 59.5,11.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 18800 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -5.5,37.5 - parent: 60 - type: Transform -- uid: 18801 - type: JetpackBlueFilled - components: - - pos: 0.52521247,19.644579 - parent: 60 - type: Transform -- uid: 18802 - type: SignalButton - components: - - pos: 57.5,10.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13177 - - port: Toggle - uid: 13176 - type: SignalTransmitter -- uid: 18803 - type: SignSpace - components: - - pos: 57.5,13.5 - parent: 60 - type: Transform -- uid: 18804 - type: WallReinforced - components: - - pos: -24.5,58.5 - parent: 60 - type: Transform -- uid: 18805 - type: SMESBasic - components: - - name: South East Solar SMES - type: MetaData - - pos: 63.5,-37.5 - parent: 60 - type: Transform -- uid: 18806 - type: Catwalk - components: - - pos: 58.5,-37.5 - parent: 60 - type: Transform -- uid: 18807 - type: Catwalk - components: - - pos: 58.5,-36.5 - parent: 60 - type: Transform -- uid: 18808 - type: Catwalk - components: - - pos: 58.5,-35.5 - parent: 60 - type: Transform -- uid: 18809 - type: Catwalk - components: - - pos: 58.5,-34.5 - parent: 60 - type: Transform -- uid: 18810 - type: Catwalk - components: - - pos: 58.5,-32.5 - parent: 60 - type: Transform -- uid: 18811 - type: Catwalk - components: - - pos: 58.5,-31.5 - parent: 60 - type: Transform -- uid: 18812 - type: Catwalk - components: - - pos: 58.5,-30.5 - parent: 60 - type: Transform -- uid: 18813 - type: Catwalk - components: - - pos: 58.5,-29.5 - parent: 60 - type: Transform -- uid: 18814 - type: Catwalk - components: - - pos: 58.5,-28.5 - parent: 60 - type: Transform -- uid: 18815 - type: Catwalk - components: - - pos: 58.5,-27.5 - parent: 60 - type: Transform -- uid: 18816 - type: Catwalk - components: - - pos: 58.5,-26.5 - parent: 60 - type: Transform -- uid: 18817 - type: Catwalk - components: - - pos: 58.5,-25.5 - parent: 60 - type: Transform -- uid: 18818 - type: Catwalk - components: - - pos: 58.5,-24.5 - parent: 60 - type: Transform -- uid: 18819 - type: Catwalk - components: - - pos: 57.5,-23.5 - parent: 60 - type: Transform -- uid: 18820 - type: Catwalk - components: - - pos: 56.5,-23.5 - parent: 60 - type: Transform -- uid: 18821 - type: Catwalk - components: - - pos: 55.5,-23.5 - parent: 60 - type: Transform -- uid: 18822 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-28.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18823 - type: FoodTinBeans - components: - - flags: InContainer - type: MetaData - - parent: 18368 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 18824 - type: TableReinforced - components: - - pos: 37.5,17.5 - parent: 60 - type: Transform -- uid: 18825 - type: AirSensor - components: - - pos: 44.5,-17.5 - parent: 60 - type: Transform -- uid: 18826 - type: SpawnPointTechnicalAssistant - components: - - pos: -2.5,18.5 - parent: 60 - type: Transform -- uid: 18827 - type: SpawnPointTechnicalAssistant - components: - - pos: -1.5,18.5 - parent: 60 - type: Transform -- uid: 18828 - type: AirlockAtmosphericsGlassLocked - components: - - name: Atmos Locker Room - type: MetaData - - pos: -31.5,30.5 - parent: 60 - type: Transform -- uid: 18829 - type: WallReinforced - components: - - pos: 28.5,4.5 - parent: 60 - type: Transform -- uid: 18830 - type: CableHV - components: - - pos: 61.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18831 - type: TableGlass - components: - - pos: -28.5,9.5 - parent: 60 - type: Transform -- uid: 18832 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -30.5,8.5 - parent: 60 - type: Transform -- uid: 18833 - type: DisposalUnit - components: - - pos: -30.5,9.5 - parent: 60 - type: Transform -- uid: 18834 - type: FoodTinBeans - components: - - flags: InContainer - type: MetaData - - parent: 18368 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 18835 - type: FoodTinBeans - components: - - flags: InContainer - type: MetaData - - parent: 18368 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 18836 - type: DrinkShotGlass - components: - - pos: -22.314978,19.492992 - parent: 60 - type: Transform -- uid: 18837 - type: PottedPlantRandom - components: - - pos: -21.5,9.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 18838 - type: PottedPlantRandom - components: - - pos: -22.5,21.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 18839 - type: PottedPlantRandom - components: - - pos: -28.5,21.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 18840 - type: Grille - components: - - pos: -39.5,3.5 - parent: 60 - type: Transform -- uid: 18841 - type: Grille - components: - - pos: -39.5,4.5 - parent: 60 - type: Transform -- uid: 18842 - type: CableMV - components: - - pos: -40.5,3.5 - parent: 60 - type: Transform -- uid: 18843 - type: CableMV - components: - - pos: -39.5,3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18844 - type: CableMV - components: - - pos: -39.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18845 - type: SpawnPointReporter - components: - - pos: 35.5,14.5 - parent: 60 - type: Transform -- uid: 18846 - type: ClothingUniformJumpsuitJournalist - components: - - pos: 37.53859,15.558934 - parent: 60 - type: Transform -- uid: 18847 - type: PaintingTheGreatWave - components: - - pos: -3.5,-8.5 - parent: 60 - type: Transform -- uid: 18848 - type: PaintingNightHawks - components: - - pos: 15.5,-29.5 - parent: 60 - type: Transform -- uid: 18849 - type: PaintingTheKiss - components: - - pos: -9.5,23.5 - parent: 60 - type: Transform -- uid: 18850 - type: PaintingTheScream - components: - - pos: 32.5,-11.5 - parent: 60 - type: Transform -- uid: 18851 - type: PaintingTheSonOfMan - components: - - pos: -40.5,6.5 - parent: 60 - type: Transform -- uid: 18852 - type: PaintingPersistenceOfMemory - components: - - pos: -11.5,14.5 - parent: 60 - type: Transform -- uid: 18853 - type: PoweredSmallLight - components: - - pos: -8.5,-3.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18854 - type: FlashlightLantern - components: - - pos: -45.607418,-4.0834746 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 18855 - type: CableHV - components: - - pos: 24.5,5.5 - parent: 60 - type: Transform -- uid: 18856 - type: WallReinforced - components: - - pos: -12.5,0.5 - parent: 60 - type: Transform -- uid: 18857 - type: FirelockGlass - components: - - pos: -14.5,-2.5 - parent: 60 - type: Transform -- uid: 18858 - type: FirelockGlass - components: - - pos: -15.5,-2.5 - parent: 60 - type: Transform -- uid: 18859 - type: FirelockGlass - components: - - pos: -16.5,-2.5 - parent: 60 - type: Transform -- uid: 18860 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: 23.5,5.5 - parent: 60 - type: Transform -- uid: 18861 - type: CableMV - components: - - pos: 24.5,4.5 - parent: 60 - type: Transform -- uid: 18862 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18863 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18864 - type: CableMV - components: - - pos: 49.5,-32.5 - parent: 60 - type: Transform -- uid: 18865 - type: CableHV - components: - - pos: 24.5,4.5 - parent: 60 - type: Transform -- uid: 18866 - type: CableMV - components: - - pos: 25.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18867 - type: CableHV - components: - - pos: 25.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18868 - type: CableMV - components: - - pos: 23.5,4.5 - parent: 60 - type: Transform -- uid: 18869 - type: CableMV - components: - - pos: 22.5,4.5 - parent: 60 - type: Transform -- uid: 18870 - type: GasPipeStraight - components: - - pos: 41.5,3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18871 - type: GasPipeStraight - components: - - pos: 41.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18872 - type: GasPipeStraight - components: - - pos: 41.5,5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18873 - type: GasPipeStraight - components: - - pos: 41.5,6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18874 - type: CableMV - components: - - pos: 21.5,4.5 - parent: 60 - type: Transform -- uid: 18875 - type: CableMV - components: - - pos: 21.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18876 - type: CableApcExtension - components: - - pos: 22.5,4.5 - parent: 60 - type: Transform -- uid: 18877 - type: CableApcExtension - components: - - pos: 21.5,4.5 - parent: 60 - type: Transform -- uid: 18878 - type: TelecomServer - components: - - pos: -116.5,26.5 - parent: 60 - type: Transform -- uid: 18879 - type: TelecomServerCircuitboard - components: - - pos: 21.522934,4.467383 - parent: 60 - type: Transform -- uid: 18880 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 25.5,2.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms - type: SurveillanceCamera -- uid: 18881 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18882 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18883 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18884 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18885 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18886 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 22.5,4.5 - parent: 60 - type: Transform -- uid: 18887 - type: Poweredlight - components: - - pos: 21.5,2.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18888 - type: Lamp - components: - - rot: 1.5707963267948966 rad - pos: 21.49596,5.00688 - parent: 60 - type: Transform -- uid: 18889 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 21.5,4.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18890 - type: TelecomServer - components: - - pos: 22.5,0.5 - parent: 60 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 18891 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 18891 - type: EncryptionKeyService - components: - - flags: InContainer - type: MetaData - - parent: 18890 - type: Transform - - canCollide: False - type: Physics -- uid: 18892 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-1.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18893 - type: TelecomServer - components: - - pos: 25.5,-0.5 - parent: 60 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 18907 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 18894 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 49.5,2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18895 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 49.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18896 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18897 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18898 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18899 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18900 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18901 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18902 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18903 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18904 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 54.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18905 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 54.5,2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18906 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 48.5,0.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18907 - type: EncryptionKeySecurity - components: - - flags: InContainer - type: MetaData - - parent: 18893 - type: Transform - - canCollide: False - type: Physics -- uid: 18908 - type: GasPipeStraight - components: - - pos: 49.5,1.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18909 - type: TelecomServer - components: - - pos: 24.5,2.5 - parent: 60 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 19008 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 18910 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 48.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18911 - type: GasPipeStraight - components: - - pos: 47.5,1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18912 - type: GasPipeStraight - components: - - pos: 47.5,0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18913 - type: GasPipeStraight - components: - - pos: 47.5,-0.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18914 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 47.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18915 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-1.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18916 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18917 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18918 - type: GasPipeFourway - components: - - pos: 44.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18919 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18920 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18921 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 48.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18922 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 49.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18923 - type: GasPipeTJunction - components: - - pos: 48.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18924 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18925 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18926 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 46.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18927 - type: GasPipeStraight - components: - - pos: 50.5,20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18928 - type: GasPipeStraight - components: - - pos: 50.5,19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18929 - type: GasPipeStraight - components: - - pos: 50.5,18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18930 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18931 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 46.5,23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18932 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18933 - type: GasPipeStraight - components: - - pos: 48.5,21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18934 - type: GasPipeStraight - components: - - pos: 48.5,20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18935 - type: GasPipeStraight - components: - - pos: 48.5,19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18936 - type: GasPipeStraight - components: - - pos: 48.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18937 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 48.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18938 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 50.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18939 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18940 - type: DisposalUnit - components: - - pos: 45.5,10.5 - parent: 60 - type: Transform -- uid: 18941 - type: DisposalUnit - components: - - pos: 47.5,-1.5 - parent: 60 - type: Transform -- uid: 18942 - type: DisposalUnit - components: - - pos: 47.5,14.5 - parent: 60 - type: Transform -- uid: 18943 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,9.5 - parent: 60 - type: Transform -- uid: 18944 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,9.5 - parent: 60 - type: Transform -- uid: 18945 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,9.5 - parent: 60 - type: Transform -- uid: 18946 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,9.5 - parent: 60 - type: Transform -- uid: 18947 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,9.5 - parent: 60 - type: Transform -- uid: 18948 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 22.5,9.5 - parent: 60 - type: Transform -- uid: 18949 - type: DisposalBend - components: - - pos: 23.5,9.5 - parent: 60 - type: Transform -- uid: 18950 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 23.5,8.5 - parent: 60 - type: Transform -- uid: 18951 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,8.5 - parent: 60 - type: Transform -- uid: 18952 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,8.5 - parent: 60 - type: Transform -- uid: 18953 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,8.5 - parent: 60 - type: Transform -- uid: 18954 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,8.5 - parent: 60 - type: Transform -- uid: 18955 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,8.5 - parent: 60 - type: Transform -- uid: 18956 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 29.5,8.5 - parent: 60 - type: Transform -- uid: 18957 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 30.5,8.5 - parent: 60 - type: Transform -- uid: 18958 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,8.5 - parent: 60 - type: Transform -- uid: 18959 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,8.5 - parent: 60 - type: Transform -- uid: 18960 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,8.5 - parent: 60 - type: Transform -- uid: 18961 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,8.5 - parent: 60 - type: Transform -- uid: 18962 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,8.5 - parent: 60 - type: Transform -- uid: 18963 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,8.5 - parent: 60 - type: Transform -- uid: 18964 - type: PowerCellRecharger - components: - - pos: -36.5,11.5 - parent: 60 - type: Transform -- uid: 18965 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,8.5 - parent: 60 - type: Transform -- uid: 18966 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,8.5 - parent: 60 - type: Transform -- uid: 18967 - type: DisposalBend - components: - - pos: 40.5,8.5 - parent: 60 - type: Transform -- uid: 18968 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 40.5,5.5 - parent: 60 - type: Transform -- uid: 18969 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 47.5,-1.5 - parent: 60 - type: Transform -- uid: 18970 - type: DisposalTrunk - components: - - pos: 45.5,10.5 - parent: 60 - type: Transform -- uid: 18971 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 47.5,14.5 - parent: 60 - type: Transform -- uid: 18972 - type: DisposalBend - components: - - pos: 49.5,14.5 - parent: 60 - type: Transform -- uid: 18973 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 49.5,7.5 - parent: 60 - type: Transform -- uid: 18974 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 48.5,14.5 - parent: 60 - type: Transform -- uid: 18975 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 49.5,13.5 - parent: 60 - type: Transform -- uid: 18976 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 49.5,12.5 - parent: 60 - type: Transform -- uid: 18977 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 49.5,11.5 - parent: 60 - type: Transform -- uid: 18978 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 49.5,10.5 - parent: 60 - type: Transform -- uid: 18979 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 49.5,9.5 - parent: 60 - type: Transform -- uid: 18980 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 49.5,8.5 - parent: 60 - type: Transform -- uid: 18981 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 48.5,7.5 - parent: 60 - type: Transform -- uid: 18982 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 47.5,7.5 - parent: 60 - type: Transform -- uid: 18983 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 46.5,7.5 - parent: 60 - type: Transform -- uid: 18984 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 45.5,7.5 - parent: 60 - type: Transform -- uid: 18985 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 47.5,2.5 - parent: 60 - type: Transform -- uid: 18986 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 48.5,2.5 - parent: 60 - type: Transform -- uid: 18987 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 47.5,-0.5 - parent: 60 - type: Transform -- uid: 18988 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 47.5,0.5 - parent: 60 - type: Transform -- uid: 18989 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 47.5,1.5 - parent: 60 - type: Transform -- uid: 18990 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 48.5,3.5 - parent: 60 - type: Transform -- uid: 18991 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 48.5,4.5 - parent: 60 - type: Transform -- uid: 18992 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 48.5,5.5 - parent: 60 - type: Transform -- uid: 18993 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 48.5,6.5 - parent: 60 - type: Transform -- uid: 18994 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 45.5,8.5 - parent: 60 - type: Transform -- uid: 18995 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 45.5,9.5 - parent: 60 - type: Transform -- uid: 18996 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 44.5,7.5 - parent: 60 - type: Transform -- uid: 18997 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 44.5,5.5 - parent: 60 - type: Transform -- uid: 18998 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 43.5,5.5 - parent: 60 - type: Transform -- uid: 18999 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 42.5,5.5 - parent: 60 - type: Transform -- uid: 19000 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 41.5,5.5 - parent: 60 - type: Transform -- uid: 19001 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 40.5,6.5 - parent: 60 - type: Transform -- uid: 19002 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 40.5,7.5 - parent: 60 - type: Transform -- uid: 19003 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 44.5,6.5 - parent: 60 - type: Transform -- uid: 19004 - type: ComputerShuttleCargo - components: - - pos: 56.5,13.5 - parent: 60 - type: Transform -- uid: 19005 - type: Table - components: - - pos: 55.5,6.5 - parent: 60 - type: Transform -- uid: 19006 - type: Table - components: - - pos: 56.5,6.5 - parent: 60 - type: Transform -- uid: 19007 - type: Table - components: - - pos: 54.5,6.5 - parent: 60 - type: Transform -- uid: 19008 - type: EncryptionKeyEngineering - components: - - flags: InContainer - type: MetaData - - parent: 18909 - type: Transform - - canCollide: False - type: Physics -- uid: 19009 - type: TelecomServer - components: - - pos: 25.5,2.5 - parent: 60 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 19039 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 19010 - type: SheetSteel - components: - - pos: 55.159428,6.477954 - parent: 60 - type: Transform -- uid: 19011 - type: Table - components: - - pos: 56.5,8.5 - parent: 60 - type: Transform -- uid: 19012 - type: Table - components: - - pos: 55.5,8.5 - parent: 60 - type: Transform -- uid: 19013 - type: CrateFilledSpawner - components: - - pos: 54.5,8.5 - parent: 60 - type: Transform -- uid: 19014 - type: CrateFilledSpawner - components: - - pos: 53.5,8.5 - parent: 60 - type: Transform -- uid: 19015 - type: SheetSteel - components: - - pos: 55.159428,6.493579 - parent: 60 - type: Transform -- uid: 19016 - type: SheetPlasteel - components: - - pos: 55.775715,6.509204 - parent: 60 - type: Transform -- uid: 19017 - type: Table - components: - - pos: 56.5,10.5 - parent: 60 - type: Transform -- uid: 19018 - type: Table - components: - - pos: 55.5,10.5 - parent: 60 - type: Transform -- uid: 19019 - type: CrateFilledSpawner - components: - - pos: 53.5,12.5 - parent: 60 - type: Transform -- uid: 19020 - type: CrateEmptySpawner - components: - - pos: 53.5,10.5 - parent: 60 - type: Transform -- uid: 19021 - type: SheetPlasteel - components: - - pos: 55.775715,6.524829 - parent: 60 - type: Transform -- uid: 19022 - type: PartRodMetal - components: - - pos: 56.400715,6.556079 - parent: 60 - type: Transform -- uid: 19023 - type: PartRodMetal - components: - - pos: 56.338215,6.524829 - parent: 60 - type: Transform -- uid: 19024 - type: PartRodMetal - components: - - pos: 47.482098,3.6148071 - parent: 60 - type: Transform -- uid: 19025 - type: PartRodMetal - components: - - pos: 47.482098,3.6148071 - parent: 60 - type: Transform -- uid: 19026 - type: SheetGlass - components: - - pos: 54.553997,6.509204 - parent: 60 - type: Transform -- uid: 19027 - type: SheetGlass - components: - - pos: 54.600872,6.493579 - parent: 60 - type: Transform -- uid: 19028 - type: HandLabeler - components: - - pos: 56.468987,8.557282 - parent: 60 - type: Transform -- uid: 19029 - type: Shovel - components: - - pos: 56.39086,10.557282 - parent: 60 - type: Transform -- uid: 19030 - type: SalvageMagnet - components: - - rot: 1.5707963267948966 rad - pos: 49.5,1.5 - parent: 60 - type: Transform -- uid: 19031 - type: ClothingMaskGasExplorer - components: - - pos: 46.643196,3.6000824 - parent: 60 - type: Transform -- uid: 19032 - type: Flare - components: - - pos: 47.167614,3.6723566 - parent: 60 - type: Transform -- uid: 19033 - type: Flare - components: - - pos: 47.042614,3.7192316 - parent: 60 - type: Transform -- uid: 19034 - type: CrowbarRed - components: - - pos: 55.584682,10.512694 - parent: 60 - type: Transform -- uid: 19035 - type: Wrench - components: - - pos: 55.490932,10.622069 - parent: 60 - type: Transform -- uid: 19036 - type: SpawnPointCargoTechnician - components: - - pos: 44.5,7.5 - parent: 60 - type: Transform -- uid: 19037 - type: SpawnPointCargoTechnician - components: - - pos: 44.5,8.5 - parent: 60 - type: Transform -- uid: 19038 - type: SpawnPointCargoTechnician - components: - - pos: 44.5,9.5 - parent: 60 - type: Transform -- uid: 19039 - type: EncryptionKeyCargo - components: - - flags: InContainer - type: MetaData - - parent: 19009 - type: Transform - - canCollide: False - type: Physics -- uid: 19040 - type: TelecomServer - components: - - pos: 22.5,2.5 - parent: 60 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 19041 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 19041 - type: EncryptionKeyMedical - components: - - flags: InContainer - type: MetaData - - parent: 19040 - type: Transform - - canCollide: False - type: Physics -- uid: 19042 - type: SignCargo - components: - - pos: 47.5,19.5 - parent: 60 - type: Transform -- uid: 19043 - type: ComputerCargoOrders - components: - - rot: -1.5707963267948966 rad - pos: 41.5,3.5 - parent: 60 - type: Transform -- uid: 19044 - type: AirlockGlass - components: - - pos: 18.5,24.5 - parent: 60 - type: Transform -- uid: 19045 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 19.5,23.5 - parent: 60 - type: Transform -- uid: 19046 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 19.5,25.5 - parent: 60 - type: Transform -- uid: 19047 - type: AirlockGlass - components: - - name: Evac - type: MetaData - - pos: 41.5,19.5 - parent: 60 - type: Transform -- uid: 19048 - type: AirlockGlass - components: - - name: Evac - type: MetaData - - pos: 40.5,19.5 - parent: 60 - type: Transform -- uid: 19049 - type: AirlockGlass - components: - - name: Evac - type: MetaData - - pos: 39.5,19.5 - parent: 60 - type: Transform -- uid: 19050 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 19.5,24.5 - parent: 60 - type: Transform -- uid: 19051 - type: AirlockGlass - components: - - pos: 18.5,25.5 - parent: 60 - type: Transform -- uid: 19052 - type: AirlockGlass - components: - - pos: 18.5,23.5 - parent: 60 - type: Transform -- uid: 19053 - type: WallReinforced - components: - - pos: 14.5,28.5 - parent: 60 - type: Transform -- uid: 19054 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 32.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19055 - type: GasVentScrubber - components: - - pos: 31.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19056 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 22.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19057 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 36.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19058 - type: GasVentScrubber - components: - - pos: 37.5,24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19059 - type: GasVentScrubber - components: - - pos: 21.5,24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19060 - type: FirelockGlass - components: - - pos: 38.5,23.5 - parent: 60 - type: Transform -- uid: 19061 - type: FirelockGlass - components: - - pos: 38.5,24.5 - parent: 60 - type: Transform -- uid: 19062 - type: FirelockGlass - components: - - pos: 38.5,25.5 - parent: 60 - type: Transform -- uid: 19063 - type: ReinforcedWindow - components: - - pos: 23.5,27.5 - parent: 60 - type: Transform -- uid: 19064 - type: DisposalPipe - components: - - pos: 19.5,25.5 - parent: 60 - type: Transform -- uid: 19065 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,24.5 - parent: 60 - type: Transform -- uid: 19066 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,24.5 - parent: 60 - type: Transform -- uid: 19067 - type: Grille - components: - - pos: 19.5,27.5 - parent: 60 - type: Transform -- uid: 19068 - type: ReinforcedWindow - components: - - pos: 19.5,29.5 - parent: 60 - type: Transform -- uid: 19069 - type: Grille - components: - - pos: 21.5,27.5 - parent: 60 - type: Transform -- uid: 19070 - type: Grille - components: - - pos: 23.5,27.5 - parent: 60 - type: Transform -- uid: 19071 - type: Grille - components: - - pos: 24.5,27.5 - parent: 60 - type: Transform -- uid: 19072 - type: Grille - components: - - pos: 25.5,27.5 - parent: 60 - type: Transform -- uid: 19073 - type: Grille - components: - - pos: 27.5,27.5 - parent: 60 - type: Transform -- uid: 19074 - type: Grille - components: - - pos: 28.5,27.5 - parent: 60 - type: Transform -- uid: 19075 - type: Grille - components: - - pos: 29.5,27.5 - parent: 60 - type: Transform -- uid: 19076 - type: Grille - components: - - pos: 31.5,27.5 - parent: 60 - type: Transform -- uid: 19077 - type: Grille - components: - - pos: 32.5,27.5 - parent: 60 - type: Transform -- uid: 19078 - type: Grille - components: - - pos: 33.5,27.5 - parent: 60 - type: Transform -- uid: 19079 - type: Grille - components: - - pos: 35.5,27.5 - parent: 60 - type: Transform -- uid: 19080 - type: Grille - components: - - pos: 36.5,27.5 - parent: 60 - type: Transform -- uid: 19081 - type: Grille - components: - - pos: 37.5,27.5 - parent: 60 - type: Transform -- uid: 19082 - type: ReinforcedWindow - components: - - pos: 17.5,30.5 - parent: 60 - type: Transform -- uid: 19083 - type: ReinforcedWindow - components: - - pos: 17.5,31.5 - parent: 60 - type: Transform -- uid: 19084 - type: CarpetOrange - components: - - pos: 43.5,14.5 - parent: 60 - type: Transform -- uid: 19085 - type: ClosetEmergencyFilledRandom - components: - - pos: 17.5,28.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19086 - type: CarpetOrange - components: - - pos: 43.5,15.5 - parent: 60 - type: Transform -- uid: 19087 - type: AirlockExternalGlassLocked - components: - - pos: 16.5,29.5 - parent: 60 - type: Transform -- uid: 19088 - type: FirelockGlass - components: - - pos: 17.5,26.5 - parent: 60 - type: Transform -- uid: 19089 - type: FirelockGlass - components: - - pos: 16.5,26.5 - parent: 60 - type: Transform -- uid: 19090 - type: FirelockGlass - components: - - pos: 15.5,26.5 - parent: 60 - type: Transform -- uid: 19091 - type: TelecomServer - components: - - pos: 21.5,2.5 - parent: 60 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 19092 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 19092 - type: EncryptionKeyScience - components: - - flags: InContainer - type: MetaData - - parent: 19091 - type: Transform - - canCollide: False - type: Physics -- uid: 19093 - type: Grille - components: - - pos: 15.5,30.5 - parent: 60 - type: Transform -- uid: 19094 - type: Grille - components: - - pos: 15.5,31.5 - parent: 60 - type: Transform -- uid: 19095 - type: PottedPlantRandom - components: - - pos: 15.5,28.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 19096 - type: TelecomServer - components: - - pos: 21.5,-0.5 - parent: 60 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 19097 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 19097 - type: EncryptionKeyCommand - components: - - flags: InContainer - type: MetaData - - parent: 19096 - type: Transform - - canCollide: False - type: Physics -- uid: 19098 - type: Grille - components: - - pos: 17.5,31.5 - parent: 60 - type: Transform -- uid: 19099 - type: Grille - components: - - pos: 17.5,31.5 - parent: 60 - type: Transform -- uid: 19100 - type: AirlockExternalGlassLocked - components: - - pos: 16.5,31.5 - parent: 60 - type: Transform -- uid: 19101 - type: Grille - components: - - pos: 17.5,30.5 - parent: 60 - type: Transform -- uid: 19102 - type: CarpetOrange - components: - - pos: 44.5,15.5 - parent: 60 - type: Transform -- uid: 19103 - type: CarpetOrange - components: - - pos: 44.5,14.5 - parent: 60 - type: Transform -- uid: 19104 - type: WallSolidRust - components: - - pos: 27.5,19.5 - parent: 60 - type: Transform -- uid: 19105 - type: Girder - components: - - pos: 49.5,-4.5 - parent: 60 - type: Transform -- uid: 19106 - type: GrilleBroken - components: - - pos: 49.5,-4.5 - parent: 60 - type: Transform -- uid: 19107 - type: SignalButton - components: - - pos: 55.5,4.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11830 - type: SignalTransmitter -- uid: 19108 - type: SignalButton - components: - - pos: 55.5,-1.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11697 - type: SignalTransmitter -- uid: 19109 - type: WallReinforced - components: - - pos: 25.5,17.5 - parent: 60 - type: Transform -- uid: 19110 - type: WallReinforced - components: - - pos: 25.5,16.5 - parent: 60 - type: Transform -- uid: 19111 - type: WallReinforced - components: - - pos: 25.5,15.5 - parent: 60 - type: Transform -- uid: 19112 - type: WallReinforced - components: - - pos: 25.5,14.5 - parent: 60 - type: Transform -- uid: 19113 - type: ReinforcedWindow - components: - - pos: 23.5,10.5 - parent: 60 - type: Transform -- uid: 19114 - type: ReinforcedWindow - components: - - pos: 22.5,10.5 - parent: 60 - type: Transform -- uid: 19115 - type: ReinforcedWindow - components: - - pos: 24.5,10.5 - parent: 60 - type: Transform -- uid: 19116 - type: ReinforcedWindow - components: - - pos: 22.5,13.5 - parent: 60 - type: Transform -- uid: 19117 - type: ReinforcedWindow - components: - - pos: 23.5,13.5 - parent: 60 - type: Transform -- uid: 19118 - type: ReinforcedWindow - components: - - pos: 24.5,13.5 - parent: 60 - type: Transform -- uid: 19119 - type: WallReinforced - components: - - pos: 22.5,16.5 - parent: 60 - type: Transform -- uid: 19120 - type: ComputerTelevision - components: - - pos: 15.5,-30.5 - parent: 60 - type: Transform -- uid: 19121 - type: WallReinforced - components: - - pos: 24.5,16.5 - parent: 60 - type: Transform -- uid: 19122 - type: HighSecCommandLocked - components: - - name: Highsec Circuitry - type: MetaData - - pos: 23.5,16.5 - parent: 60 - type: Transform -- uid: 19123 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,21.5 - parent: 60 - type: Transform -- uid: 19124 - type: Table - components: - - pos: 20.5,21.5 - parent: 60 - type: Transform -- uid: 19125 - type: Table - components: - - pos: 21.5,21.5 - parent: 60 - type: Transform -- uid: 19126 - type: Table - components: - - pos: 22.5,21.5 - parent: 60 - type: Transform -- uid: 19127 - type: Table - components: - - pos: 23.5,21.5 - parent: 60 - type: Transform -- uid: 19128 - type: Table - components: - - pos: 24.5,21.5 - parent: 60 - type: Transform -- uid: 19129 - type: Table - components: - - pos: 24.5,20.5 - parent: 60 - type: Transform -- uid: 19130 - type: Table - components: - - pos: 24.5,19.5 - parent: 60 - type: Transform -- uid: 19131 - type: Rack - components: - - pos: 20.5,19.5 - parent: 60 - type: Transform -- uid: 19132 - type: Rack - components: - - pos: 20.5,18.5 - parent: 60 - type: Transform -- uid: 19133 - type: Rack - components: - - pos: 22.5,19.5 - parent: 60 - type: Transform -- uid: 19134 - type: Grille - components: - - pos: 21.5,12.5 - parent: 60 - type: Transform -- uid: 19135 - type: Grille - components: - - pos: 22.5,13.5 - parent: 60 - type: Transform -- uid: 19136 - type: Grille - components: - - pos: 23.5,13.5 - parent: 60 - type: Transform -- uid: 19137 - type: Grille - components: - - pos: 24.5,13.5 - parent: 60 - type: Transform -- uid: 19138 - type: Grille - components: - - pos: 24.5,10.5 - parent: 60 - type: Transform -- uid: 19139 - type: Grille - components: - - pos: 23.5,10.5 - parent: 60 - type: Transform -- uid: 19140 - type: Grille - components: - - pos: 22.5,10.5 - parent: 60 - type: Transform -- uid: 19141 - type: ReinforcedWindow - components: - - pos: 25.5,12.5 - parent: 60 - type: Transform -- uid: 19142 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,13.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19143 - type: SignElectricalMed - components: - - pos: 18.5,19.5 - parent: 60 - type: Transform -- uid: 19144 - type: PottedPlantRandom - components: - - pos: 24.5,17.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 19145 - type: SheetGlass - components: - - pos: 21.565151,21.553753 - parent: 60 - type: Transform -- uid: 19146 - type: PowerCellRecharger - components: - - pos: 20.5,21.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 19147 - type: CableApcStack - components: - - pos: 22.165026,21.61817 - parent: 60 - type: Transform -- uid: 19148 - type: ClosetToolFilled - components: - - pos: 19.5,16.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19149 - type: LockerElectricalSuppliesFilled - components: - - pos: 20.5,16.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19150 - type: RadioHandheld - components: - - pos: 20.615211,21.651546 - parent: 60 - type: Transform -- uid: 19151 - type: ToolboxElectricalFilled - components: - - pos: 24.471033,21.651546 - parent: 60 - type: Transform -- uid: 19152 - type: ClothingHandsGlovesColorYellow - components: - - pos: 24.481226,21.332752 - parent: 60 - type: Transform -- uid: 19153 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 24.51511,20.852545 - parent: 60 - type: Transform -- uid: 19154 - type: Rack - components: - - pos: 22.5,18.5 - parent: 60 - type: Transform -- uid: 19155 - type: SMESMachineCircuitboard - components: - - pos: 22.377283,19.651546 - parent: 60 - type: Transform -- uid: 19156 - type: SMESMachineCircuitboard - components: - - pos: 22.558794,19.476936 - parent: 60 - type: Transform -- uid: 19157 - type: AutolatheMachineCircuitboard - components: - - pos: 22.554735,14.489795 - parent: 60 - type: Transform -- uid: 19158 - type: SubstationMachineCircuitboard - components: - - pos: 20.374794,19.648811 - parent: 60 - type: Transform -- uid: 19159 - type: SubstationMachineCircuitboard - components: - - pos: 20.671669,19.508186 - parent: 60 - type: Transform -- uid: 19160 - type: ProtolatheMachineCircuitboard - components: - - pos: 22.398485,14.583545 - parent: 60 - type: Transform -- uid: 19161 - type: ThermomachineFreezerMachineCircuitBoard - components: - - pos: 22.377283,18.635921 - parent: 60 - type: Transform -- uid: 19162 - type: ThermomachineHeaterMachineCircuitBoard - components: - - pos: 22.564783,18.479671 - parent: 60 - type: Transform -- uid: 19163 - type: CrewMonitoringComputerCircuitboard - components: - - pos: 23.44827,14.55837 - parent: 60 - type: Transform -- uid: 19164 - type: Rack - components: - - pos: 23.5,14.5 - parent: 60 - type: Transform -- uid: 19165 - type: Rack - components: - - pos: 22.5,14.5 - parent: 60 - type: Transform -- uid: 19166 - type: Rack - components: - - pos: 24.5,14.5 - parent: 60 - type: Transform -- uid: 19167 - type: AlertsComputerCircuitboard - components: - - pos: 20.374395,18.611427 - parent: 60 - type: Transform -- uid: 19168 - type: ShuttleConsoleCircuitboard - components: - - pos: 23.554735,14.458545 - parent: 60 - type: Transform -- uid: 19169 - type: RadarConsoleCircuitboard - components: - - pos: 23.342813,14.613101 - parent: 60 - type: Transform -- uid: 19170 - type: StasisBedMachineCircuitboard - components: - - pos: 20.611374,18.438421 - parent: 60 - type: Transform -- uid: 19171 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19172 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19173 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19174 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19175 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19176 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19177 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19178 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19179 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 21.5,19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19180 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 21.5,18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19181 - type: HighPowerMicroLaserStockPart - components: - - pos: 23.305836,21.651909 - parent: 60 - type: Transform -- uid: 19182 - type: HighPowerMicroLaserStockPart - components: - - pos: 23.430836,21.558159 - parent: 60 - type: Transform -- uid: 19183 - type: AdvancedCapacitorStockPart - components: - - pos: 23.618336,21.636284 - parent: 60 - type: Transform -- uid: 19184 - type: AdvancedCapacitorStockPart - components: - - pos: 23.743336,21.526909 - parent: 60 - type: Transform -- uid: 19185 - type: SuperMatterBinStockPart - components: - - pos: 24.44646,19.933159 - parent: 60 - type: Transform -- uid: 19186 - type: SuperMatterBinStockPart - components: - - pos: 24.60271,19.776909 - parent: 60 - type: Transform -- uid: 19187 - type: PicoManipulatorStockPart - components: - - pos: 22.793922,21.465025 - parent: 60 - type: Transform -- uid: 19188 - type: PicoManipulatorStockPart - components: - - pos: 22.559547,21.48065 - parent: 60 - type: Transform -- uid: 19189 - type: PicoManipulatorStockPart - components: - - pos: 22.762672,21.5119 - parent: 60 - type: Transform -- uid: 19190 - type: HandheldHealthAnalyzer - components: - - pos: 24.45261,20.352545 - parent: 60 - type: Transform -- uid: 19191 - type: Wirecutter - components: - - pos: 20.606422,21.706692 - parent: 60 - type: Transform -- uid: 19192 - type: Screwdriver - components: - - pos: 20.606422,21.831692 - parent: 60 - type: Transform -- uid: 19193 - type: FlashlightLantern - components: - - pos: 24.478937,19.47598 - parent: 60 - type: Transform -- uid: 19194 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19195 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19196 - type: PoweredSmallLight - components: - - pos: 24.5,15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19197 - type: WallSolid - components: - - pos: 27.5,13.5 - parent: 60 - type: Transform -- uid: 19198 - type: WallSolid - components: - - pos: 28.5,13.5 - parent: 60 - type: Transform -- uid: 19199 - type: WallSolid - components: - - pos: 28.5,14.5 - parent: 60 - type: Transform -- uid: 19200 - type: WallSolid - components: - - pos: 28.5,15.5 - parent: 60 - type: Transform -- uid: 19201 - type: WallSolid - components: - - pos: 28.5,16.5 - parent: 60 - type: Transform -- uid: 19202 - type: WallSolid - components: - - pos: 28.5,17.5 - parent: 60 - type: Transform -- uid: 19203 - type: WallSolid - components: - - pos: 27.5,17.5 - parent: 60 - type: Transform -- uid: 19204 - type: WallSolid - components: - - pos: -12.5,-31.5 - parent: 60 - type: Transform -- uid: 19205 - type: CableHV - components: - - pos: 22.5,24.5 - parent: 60 - type: Transform -- uid: 19206 - type: CableHV - components: - - pos: 23.5,24.5 - parent: 60 - type: Transform -- uid: 19207 - type: CableHV - components: - - pos: 24.5,24.5 - parent: 60 - type: Transform -- uid: 19208 - type: CableHV - components: - - pos: 25.5,24.5 - parent: 60 - type: Transform -- uid: 19209 - type: CableHV - components: - - pos: 26.5,24.5 - parent: 60 - type: Transform -- uid: 19210 - type: CableHV - components: - - pos: 26.5,23.5 - parent: 60 - type: Transform -- uid: 19211 - type: CableHV - components: - - pos: 26.5,22.5 - parent: 60 - type: Transform -- uid: 19212 - type: CableHV - components: - - pos: 26.5,21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19213 - type: CableHV - components: - - pos: 26.5,20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19214 - type: CableHV - components: - - pos: 26.5,19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19215 - type: CableHV - components: - - pos: 26.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19216 - type: CableHV - components: - - pos: 26.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19217 - type: CableHV - components: - - pos: 26.5,16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19218 - type: CableHV - components: - - pos: 26.5,15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19219 - type: CableHV - components: - - pos: 26.5,14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19220 - type: CableHV - components: - - pos: 17.5,8.5 - parent: 60 - type: Transform -- uid: 19221 - type: CableHV - components: - - pos: 18.5,8.5 - parent: 60 - type: Transform -- uid: 19222 - type: CableHV - components: - - pos: 19.5,8.5 - parent: 60 - type: Transform -- uid: 19223 - type: CableHV - components: - - pos: 20.5,8.5 - parent: 60 - type: Transform -- uid: 19224 - type: CableHV - components: - - pos: 21.5,8.5 - parent: 60 - type: Transform -- uid: 19225 - type: CableHV - components: - - pos: 22.5,8.5 - parent: 60 - type: Transform -- uid: 19226 - type: CableHV - components: - - pos: 23.5,8.5 - parent: 60 - type: Transform -- uid: 19227 - type: CableHV - components: - - pos: 24.5,8.5 - parent: 60 - type: Transform -- uid: 19228 - type: CableHV - components: - - pos: 25.5,8.5 - parent: 60 - type: Transform -- uid: 19229 - type: CableHV - components: - - pos: 26.5,8.5 - parent: 60 - type: Transform -- uid: 19230 - type: CableHV - components: - - pos: 27.5,8.5 - parent: 60 - type: Transform -- uid: 19231 - type: CableHV - components: - - pos: 28.5,8.5 - parent: 60 - type: Transform -- uid: 19232 - type: CableHV - components: - - pos: 28.5,9.5 - parent: 60 - type: Transform -- uid: 19233 - type: CableHV - components: - - pos: 28.5,10.5 - parent: 60 - type: Transform -- uid: 19234 - type: CableHV - components: - - pos: 28.5,11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19235 - type: CableHV - components: - - pos: 28.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19236 - type: CableMV - components: - - pos: 26.5,14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19237 - type: CableMV - components: - - pos: 26.5,15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19238 - type: CableMV - components: - - pos: 26.5,16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19239 - type: CableMV - components: - - pos: 26.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19240 - type: CableMV - components: - - pos: 26.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19241 - type: CableMV - components: - - pos: 26.5,19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19242 - type: CableMV - components: - - pos: 26.5,20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19243 - type: CableMV - components: - - pos: 26.5,21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19244 - type: CableMV - components: - - pos: 26.5,22.5 - parent: 60 - type: Transform -- uid: 19245 - type: CableMV - components: - - pos: 26.5,23.5 - parent: 60 - type: Transform -- uid: 19246 - type: CableMV - components: - - pos: 26.5,24.5 - parent: 60 - type: Transform -- uid: 19247 - type: CableMV - components: - - pos: 27.5,22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19248 - type: CableMV - components: - - pos: 25.5,24.5 - parent: 60 - type: Transform -- uid: 19249 - type: CableMV - components: - - pos: 24.5,24.5 - parent: 60 - type: Transform -- uid: 19250 - type: CableMV - components: - - pos: 23.5,24.5 - parent: 60 - type: Transform -- uid: 19251 - type: CableMV - components: - - pos: 22.5,24.5 - parent: 60 - type: Transform -- uid: 19252 - type: CableMV - components: - - pos: 21.5,24.5 - parent: 60 - type: Transform -- uid: 19253 - type: CableMV - components: - - pos: 20.5,24.5 - parent: 60 - type: Transform -- uid: 19254 - type: CableMV - components: - - pos: 19.5,24.5 - parent: 60 - type: Transform -- uid: 19255 - type: CableMV - components: - - pos: 18.5,24.5 - parent: 60 - type: Transform -- uid: 19256 - type: CableMV - components: - - pos: 17.5,24.5 - parent: 60 - type: Transform -- uid: 19257 - type: CableMV - components: - - pos: 16.5,24.5 - parent: 60 - type: Transform -- uid: 19258 - type: CableMV - components: - - pos: 16.5,23.5 - parent: 60 - type: Transform -- uid: 19259 - type: CableMV - components: - - pos: 16.5,22.5 - parent: 60 - type: Transform -- uid: 19260 - type: CableMV - components: - - pos: 16.5,21.5 - parent: 60 - type: Transform -- uid: 19261 - type: CableMV - components: - - pos: 16.5,20.5 - parent: 60 - type: Transform -- uid: 19262 - type: CableMV - components: - - pos: 16.5,19.5 - parent: 60 - type: Transform -- uid: 19263 - type: CableMV - components: - - pos: 16.5,18.5 - parent: 60 - type: Transform -- uid: 19264 - type: CableMV - components: - - pos: 16.5,17.5 - parent: 60 - type: Transform -- uid: 19265 - type: CableMV - components: - - pos: 16.5,16.5 - parent: 60 - type: Transform -- uid: 19266 - type: CableMV - components: - - pos: 16.5,15.5 - parent: 60 - type: Transform -- uid: 19267 - type: CableMV - components: - - pos: 16.5,14.5 - parent: 60 - type: Transform -- uid: 19268 - type: CableApcExtension - components: - - pos: 17.5,12.5 - parent: 60 - type: Transform -- uid: 19269 - type: CableApcExtension - components: - - pos: 18.5,12.5 - parent: 60 - type: Transform -- uid: 19270 - type: CableApcExtension - components: - - pos: 19.5,12.5 - parent: 60 - type: Transform -- uid: 19271 - type: CableApcExtension - components: - - pos: 18.5,24.5 - parent: 60 - type: Transform -- uid: 19272 - type: CableApcExtension - components: - - pos: 19.5,24.5 - parent: 60 - type: Transform -- uid: 19273 - type: CableApcExtension - components: - - pos: 20.5,24.5 - parent: 60 - type: Transform -- uid: 19274 - type: CableApcExtension - components: - - pos: 21.5,24.5 - parent: 60 - type: Transform -- uid: 19275 - type: CableApcExtension - components: - - pos: 22.5,24.5 - parent: 60 - type: Transform -- uid: 19276 - type: CableApcExtension - components: - - pos: 23.5,24.5 - parent: 60 - type: Transform -- uid: 19277 - type: CableApcExtension - components: - - pos: 24.5,24.5 - parent: 60 - type: Transform -- uid: 19278 - type: CableApcExtension - components: - - pos: 25.5,24.5 - parent: 60 - type: Transform -- uid: 19279 - type: CableApcExtension - components: - - pos: 26.5,24.5 - parent: 60 - type: Transform -- uid: 19280 - type: CableApcExtension - components: - - pos: 27.5,24.5 - parent: 60 - type: Transform -- uid: 19281 - type: CableApcExtension - components: - - pos: 27.5,23.5 - parent: 60 - type: Transform -- uid: 19282 - type: CableApcExtension - components: - - pos: 27.5,22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19283 - type: CableApcExtension - components: - - pos: 17.5,18.5 - parent: 60 - type: Transform -- uid: 19284 - type: CableApcExtension - components: - - pos: 18.5,18.5 - parent: 60 - type: Transform -- uid: 19285 - type: CableApcExtension - components: - - pos: 19.5,18.5 - parent: 60 - type: Transform -- uid: 19286 - type: CableApcExtension - components: - - pos: 20.5,18.5 - parent: 60 - type: Transform -- uid: 19287 - type: CableApcExtension - components: - - pos: 21.5,18.5 - parent: 60 - type: Transform -- uid: 19288 - type: CableApcExtension - components: - - pos: 22.5,18.5 - parent: 60 - type: Transform -- uid: 19289 - type: CableApcExtension - components: - - pos: 23.5,18.5 - parent: 60 - type: Transform -- uid: 19290 - type: CableApcExtension - components: - - pos: 23.5,17.5 - parent: 60 - type: Transform -- uid: 19291 - type: CableApcExtension - components: - - pos: 23.5,16.5 - parent: 60 - type: Transform -- uid: 19292 - type: CableApcExtension - components: - - pos: 23.5,15.5 - parent: 60 - type: Transform -- uid: 19293 - type: CableApcExtension - components: - - pos: 21.5,19.5 - parent: 60 - type: Transform -- uid: 19294 - type: CableApcExtension - components: - - pos: 21.5,20.5 - parent: 60 - type: Transform -- uid: 19295 - type: CableApcExtension - components: - - pos: 21.5,21.5 - parent: 60 - type: Transform -- uid: 19296 - type: CableApcExtension - components: - - pos: 24.5,18.5 - parent: 60 - type: Transform -- uid: 19297 - type: CableApcExtension - components: - - pos: 24.5,19.5 - parent: 60 - type: Transform -- uid: 19298 - type: CableApcExtension - components: - - pos: 24.5,20.5 - parent: 60 - type: Transform -- uid: 19299 - type: CableApcExtension - components: - - pos: 24.5,21.5 - parent: 60 - type: Transform -- uid: 19300 - type: CableApcExtension - components: - - pos: 19.5,17.5 - parent: 60 - type: Transform -- uid: 19301 - type: CableApcExtension - components: - - pos: 19.5,16.5 - parent: 60 - type: Transform -- uid: 19302 - type: CableApcExtension - components: - - pos: 27.5,21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19303 - type: CableApcExtension - components: - - pos: 26.5,21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19304 - type: CableApcExtension - components: - - pos: 26.5,20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19305 - type: CableApcExtension - components: - - pos: 26.5,19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19306 - type: CableApcExtension - components: - - pos: 26.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19307 - type: CableApcExtension - components: - - pos: 26.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19308 - type: CableApcExtension - components: - - pos: 26.5,16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19309 - type: CableApcExtension - components: - - pos: 26.5,15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19310 - type: PoweredSmallLight - components: - - pos: 27.5,16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19311 - type: CableHV - components: - - pos: 27.5,14.5 - parent: 60 - type: Transform -- uid: 19312 - type: ComputerPowerMonitoring - components: - - rot: 3.141592653589793 rad - pos: 27.5,14.5 - parent: 60 - type: Transform -- uid: 19313 - type: ChairOfficeDark - components: - - pos: 27.5,15.5 - parent: 60 - type: Transform -- uid: 19314 - type: CrateEngineeringCableMV - components: - - pos: 27.5,16.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 19315 - type: CableApcExtension - components: - - pos: 16.5,25.5 - parent: 60 - type: Transform -- uid: 19316 - type: CableApcExtension - components: - - pos: 16.5,26.5 - parent: 60 - type: Transform -- uid: 19317 - type: CableApcExtension - components: - - pos: 16.5,27.5 - parent: 60 - type: Transform -- uid: 19318 - type: CableApcExtension - components: - - pos: 16.5,28.5 - parent: 60 - type: Transform -- uid: 19319 - type: CableApcExtension - components: - - pos: 16.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19320 - type: CableApcExtension - components: - - pos: 16.5,30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19321 - type: CableApcExtension - components: - - pos: 28.5,24.5 - parent: 60 - type: Transform -- uid: 19322 - type: CableApcExtension - components: - - pos: 29.5,24.5 - parent: 60 - type: Transform -- uid: 19323 - type: CableApcExtension - components: - - pos: 30.5,24.5 - parent: 60 - type: Transform -- uid: 19324 - type: CableApcExtension - components: - - pos: 31.5,24.5 - parent: 60 - type: Transform -- uid: 19325 - type: CableApcExtension - components: - - pos: 32.5,24.5 - parent: 60 - type: Transform -- uid: 19326 - type: CableApcExtension - components: - - pos: 33.5,24.5 - parent: 60 - type: Transform -- uid: 19327 - type: CableApcExtension - components: - - pos: 34.5,24.5 - parent: 60 - type: Transform -- uid: 19328 - type: CableApcExtension - components: - - pos: 35.5,24.5 - parent: 60 - type: Transform -- uid: 19329 - type: CableApcExtension - components: - - pos: 36.5,24.5 - parent: 60 - type: Transform -- uid: 19330 - type: CableApcExtension - components: - - pos: 37.5,24.5 - parent: 60 - type: Transform -- uid: 19331 - type: CableApcExtension - components: - - pos: 38.5,24.5 - parent: 60 - type: Transform -- uid: 19332 - type: APCBasic - components: - - pos: 37.5,12.5 - parent: 60 - type: Transform -- uid: 19333 - type: CableMV - components: - - pos: 18.5,8.5 - parent: 60 - type: Transform -- uid: 19334 - type: CableMV - components: - - pos: 19.5,8.5 - parent: 60 - type: Transform -- uid: 19335 - type: CableMV - components: - - pos: 20.5,8.5 - parent: 60 - type: Transform -- uid: 19336 - type: CableMV - components: - - pos: 21.5,8.5 - parent: 60 - type: Transform -- uid: 19337 - type: CableMV - components: - - pos: 22.5,8.5 - parent: 60 - type: Transform -- uid: 19338 - type: CableMV - components: - - pos: 23.5,8.5 - parent: 60 - type: Transform -- uid: 19339 - type: CableMV - components: - - pos: 24.5,8.5 - parent: 60 - type: Transform -- uid: 19340 - type: CableMV - components: - - pos: 25.5,8.5 - parent: 60 - type: Transform -- uid: 19341 - type: CableMV - components: - - pos: 26.5,8.5 - parent: 60 - type: Transform -- uid: 19342 - type: CableMV - components: - - pos: 27.5,8.5 - parent: 60 - type: Transform -- uid: 19343 - type: CableMV - components: - - pos: 28.5,8.5 - parent: 60 - type: Transform -- uid: 19344 - type: CableMV - components: - - pos: 29.5,8.5 - parent: 60 - type: Transform -- uid: 19345 - type: CableMV - components: - - pos: 30.5,8.5 - parent: 60 - type: Transform -- uid: 19346 - type: CableMV - components: - - pos: 31.5,8.5 - parent: 60 - type: Transform -- uid: 19347 - type: CableMV - components: - - pos: 32.5,8.5 - parent: 60 - type: Transform -- uid: 19348 - type: CableMV - components: - - pos: 33.5,8.5 - parent: 60 - type: Transform -- uid: 19349 - type: CableMV - components: - - pos: 34.5,8.5 - parent: 60 - type: Transform -- uid: 19350 - type: CableMV - components: - - pos: 35.5,8.5 - parent: 60 - type: Transform -- uid: 19351 - type: CableMV - components: - - pos: 36.5,8.5 - parent: 60 - type: Transform -- uid: 19352 - type: CableMV - components: - - pos: 37.5,8.5 - parent: 60 - type: Transform -- uid: 19353 - type: CableMV - components: - - pos: 37.5,9.5 - parent: 60 - type: Transform -- uid: 19354 - type: CableMV - components: - - pos: 37.5,10.5 - parent: 60 - type: Transform -- uid: 19355 - type: CableMV - components: - - pos: 37.5,11.5 - parent: 60 - type: Transform -- uid: 19356 - type: CableMV - components: - - pos: 37.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19357 - type: CableMV - components: - - pos: 28.5,9.5 - parent: 60 - type: Transform -- uid: 19358 - type: CableMV - components: - - pos: 28.5,10.5 - parent: 60 - type: Transform -- uid: 19359 - type: CableMV - components: - - pos: 28.5,11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19360 - type: CableMV - components: - - pos: 28.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19361 - type: CableApcExtension - components: - - pos: 37.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19362 - type: CableApcExtension - components: - - pos: 37.5,11.5 - parent: 60 - type: Transform -- uid: 19363 - type: CableApcExtension - components: - - pos: 37.5,10.5 - parent: 60 - type: Transform -- uid: 19364 - type: CableApcExtension - components: - - pos: 37.5,9.5 - parent: 60 - type: Transform -- uid: 19365 - type: CableApcExtension - components: - - pos: 37.5,8.5 - parent: 60 - type: Transform -- uid: 19366 - type: CableApcExtension - components: - - pos: 38.5,8.5 - parent: 60 - type: Transform -- uid: 19367 - type: CableApcExtension - components: - - pos: 39.5,8.5 - parent: 60 - type: Transform -- uid: 19368 - type: CableApcExtension - components: - - pos: 40.5,8.5 - parent: 60 - type: Transform -- uid: 19369 - type: CableApcExtension - components: - - pos: 41.5,8.5 - parent: 60 - type: Transform -- uid: 19370 - type: CableApcExtension - components: - - pos: 37.5,7.5 - parent: 60 - type: Transform -- uid: 19371 - type: CableApcExtension - components: - - pos: 37.5,6.5 - parent: 60 - type: Transform -- uid: 19372 - type: CableApcExtension - components: - - pos: 37.5,5.5 - parent: 60 - type: Transform -- uid: 19373 - type: CableApcExtension - components: - - pos: 36.5,8.5 - parent: 60 - type: Transform -- uid: 19374 - type: CableApcExtension - components: - - pos: 35.5,8.5 - parent: 60 - type: Transform -- uid: 19375 - type: CableApcExtension - components: - - pos: 34.5,8.5 - parent: 60 - type: Transform -- uid: 19376 - type: CableApcExtension - components: - - pos: 33.5,8.5 - parent: 60 - type: Transform -- uid: 19377 - type: CableApcExtension - components: - - pos: 32.5,8.5 - parent: 60 - type: Transform -- uid: 19378 - type: CableApcExtension - components: - - pos: 31.5,8.5 - parent: 60 - type: Transform -- uid: 19379 - type: CableApcExtension - components: - - pos: 30.5,8.5 - parent: 60 - type: Transform -- uid: 19380 - type: CableApcExtension - components: - - pos: 29.5,8.5 - parent: 60 - type: Transform -- uid: 19381 - type: CableApcExtension - components: - - pos: 28.5,8.5 - parent: 60 - type: Transform -- uid: 19382 - type: CableApcExtension - components: - - pos: 27.5,8.5 - parent: 60 - type: Transform -- uid: 19383 - type: CableApcExtension - components: - - pos: 26.5,8.5 - parent: 60 - type: Transform -- uid: 19384 - type: CableApcExtension - components: - - pos: 25.5,8.5 - parent: 60 - type: Transform -- uid: 19385 - type: CableApcExtension - components: - - pos: 24.5,8.5 - parent: 60 - type: Transform -- uid: 19386 - type: CableApcExtension - components: - - pos: 23.5,8.5 - parent: 60 - type: Transform -- uid: 19387 - type: CableApcExtension - components: - - pos: 22.5,8.5 - parent: 60 - type: Transform -- uid: 19388 - type: CableApcExtension - components: - - pos: 21.5,8.5 - parent: 60 - type: Transform -- uid: 19389 - type: CableApcExtension - components: - - pos: 20.5,8.5 - parent: 60 - type: Transform -- uid: 19390 - type: CableApcExtension - components: - - pos: 40.5,9.5 - parent: 60 - type: Transform -- uid: 19391 - type: CableApcExtension - components: - - pos: 40.5,10.5 - parent: 60 - type: Transform -- uid: 19392 - type: CableApcExtension - components: - - pos: 40.5,11.5 - parent: 60 - type: Transform -- uid: 19393 - type: CableApcExtension - components: - - pos: 40.5,12.5 - parent: 60 - type: Transform -- uid: 19394 - type: CableApcExtension - components: - - pos: 40.5,13.5 - parent: 60 - type: Transform -- uid: 19395 - type: CableApcExtension - components: - - pos: 40.5,14.5 - parent: 60 - type: Transform -- uid: 19396 - type: CableApcExtension - components: - - pos: 40.5,15.5 - parent: 60 - type: Transform -- uid: 19397 - type: CableApcExtension - components: - - pos: 40.5,16.5 - parent: 60 - type: Transform -- uid: 19398 - type: CableApcExtension - components: - - pos: 40.5,17.5 - parent: 60 - type: Transform -- uid: 19399 - type: CableApcExtension - components: - - pos: 40.5,18.5 - parent: 60 - type: Transform -- uid: 19400 - type: CableApcExtension - components: - - pos: 40.5,19.5 - parent: 60 - type: Transform -- uid: 19401 - type: CableApcExtension - components: - - pos: 40.5,20.5 - parent: 60 - type: Transform -- uid: 19402 - type: CableApcExtension - components: - - pos: 40.5,21.5 - parent: 60 - type: Transform -- uid: 19403 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 40.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19404 - type: Poweredlight - components: - - pos: 46.5,10.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19405 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 46.5,5.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19406 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,6.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19407 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,10.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19408 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,14.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19409 - type: Grille - components: - - pos: 55.5,19.5 - parent: 60 - type: Transform -- uid: 19410 - type: PoweredSmallLight - components: - - pos: 47.5,18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19411 - type: Poweredlight - components: - - pos: 49.5,14.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19412 - type: WallReinforced - components: - - pos: 52.5,16.5 - parent: 60 - type: Transform -- uid: 19413 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 50.5,6.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19414 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 55.5,6.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19415 - type: Poweredlight - components: - - pos: 50.5,4.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19416 - type: ComputerTelevision - components: - - pos: -26.5,-13.5 - parent: 60 - type: Transform -- uid: 19417 - type: ClothingHandsGlovesColorBlack - components: - - pos: 60.58138,-28.583324 - parent: 60 - type: Transform -- uid: 19418 - type: ClothingHandsGlovesColorBlack - components: - - pos: 47.526142,-46.34496 - parent: 60 - type: Transform -- uid: 19419 - type: ClothingHandsGlovesColorBlack - components: - - pos: -17.534693,-31.58648 - parent: 60 - type: Transform -- uid: 19420 - type: ClothingHandsGlovesColorBlack - components: - - pos: -53.495247,21.009853 - parent: 60 - type: Transform -- uid: 19421 - type: PoweredSmallLight - components: - - pos: 53.5,4.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19422 - type: PoweredSmallLight - components: - - pos: 53.5,0.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19423 - type: PoweredSmallLight - components: - - pos: 58.5,12.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19424 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 58.5,14.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19425 - type: Grille - components: - - pos: 57.5,20.5 - parent: 60 - type: Transform -- uid: 19426 - type: Grille - components: - - pos: 57.5,21.5 - parent: 60 - type: Transform -- uid: 19427 - type: Grille - components: - - pos: 57.5,22.5 - parent: 60 - type: Transform -- uid: 19428 - type: Grille - components: - - pos: 57.5,24.5 - parent: 60 - type: Transform -- uid: 19429 - type: Grille - components: - - pos: 57.5,25.5 - parent: 60 - type: Transform -- uid: 19430 - type: Grille - components: - - pos: 57.5,26.5 - parent: 60 - type: Transform -- uid: 19431 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19432 - type: Poweredlight - components: - - pos: 21.5,9.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19433 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19434 - type: AirAlarm - components: - - pos: 40.5,26.5 - parent: 60 - type: Transform - - devices: - - 21531 - - 21530 - - 19060 - - 19061 - - 19062 - - 19437 - - 19439 - - 21524 - - 19438 - - 19440 - - 19441 - - 17878 - - 17872 - - 17879 - - 17875 - - 11834 - type: DeviceList -- uid: 19435 - type: SignDirectionalChemistry - components: - - pos: 42.5,-21.5 - parent: 60 - type: Transform -- uid: 19436 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 53.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19437 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 44.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19438 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 54.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19439 - type: GasVentScrubber - components: - - pos: 45.5,24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19440 - type: GasVentScrubber - components: - - pos: 53.5,24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19441 - type: GasVentPump - components: - - pos: 49.5,26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19442 - type: SignDirectionalCryo - components: - - rot: 3.141592653589793 rad - pos: 42.515068,-21.287409 - parent: 60 - type: Transform -- uid: 19443 - type: SignDirectionalFood - components: - - rot: 1.5707963267948966 rad - pos: 5.505707,-21.281797 - parent: 60 - type: Transform -- uid: 19444 - type: SignDirectionalHop - components: - - pos: 5.5,-21.5 - parent: 60 - type: Transform -- uid: 19445 - type: SignDirectionalJanitor - components: - - pos: -3.5,-21.5 - parent: 60 - type: Transform -- uid: 19446 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 49.5,23.5 - parent: 60 - type: Transform -- uid: 19447 - type: WindowDirectional - components: - - pos: 49.5,23.5 - parent: 60 - type: Transform -- uid: 19448 - type: SignDirectionalLibrary - components: - - rot: -1.5707963267948966 rad - pos: -3.496961,-21.281797 - parent: 60 - type: Transform -- uid: 19449 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 48.5,23.5 - parent: 60 - type: Transform -- uid: 19450 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 48.5,23.5 - parent: 60 - type: Transform -- uid: 19451 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 50.5,23.5 - parent: 60 - type: Transform -- uid: 19452 - type: WindowDirectional - components: - - pos: 50.5,23.5 - parent: 60 - type: Transform -- uid: 19453 - type: SignDirectionalBar - components: - - rot: 1.5707963267948966 rad - pos: 5.5065956,-21.714903 - parent: 60 - type: Transform -- uid: 19454 - type: PosterLegitUeNo - components: - - pos: 47.5,23.5 - parent: 60 - type: Transform -- uid: 19455 - type: PosterLegitNanotrasenLogo - components: - - pos: 51.5,23.5 - parent: 60 - type: Transform -- uid: 19456 - type: Chair - components: - - pos: 47.5,22.5 - parent: 60 - type: Transform -- uid: 19457 - type: Chair - components: - - pos: 48.5,22.5 - parent: 60 - type: Transform -- uid: 19458 - type: Chair - components: - - pos: 49.5,22.5 - parent: 60 - type: Transform -- uid: 19459 - type: Chair - components: - - pos: 50.5,22.5 - parent: 60 - type: Transform -- uid: 19460 - type: Chair - components: - - pos: 51.5,22.5 - parent: 60 - type: Transform -- uid: 19461 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 51.5,24.5 - parent: 60 - type: Transform -- uid: 19462 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 50.5,24.5 - parent: 60 - type: Transform -- uid: 19463 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 49.5,24.5 - parent: 60 - type: Transform -- uid: 19464 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 48.5,24.5 - parent: 60 - type: Transform -- uid: 19465 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 47.5,24.5 - parent: 60 - type: Transform -- uid: 19466 - type: Chair - components: - - pos: 48.5,27.5 - parent: 60 - type: Transform -- uid: 19467 - type: Chair - components: - - pos: 49.5,27.5 - parent: 60 - type: Transform -- uid: 19468 - type: Chair - components: - - pos: 50.5,27.5 - parent: 60 - type: Transform -- uid: 19469 - type: Chair - components: - - pos: 47.5,26.5 - parent: 60 - type: Transform -- uid: 19470 - type: Chair - components: - - pos: 51.5,26.5 - parent: 60 - type: Transform -- uid: 19471 - type: RandomVendingSnacks - components: - - pos: 56.5,26.5 - parent: 60 - type: Transform -- uid: 19472 - type: PottedPlantRandom - components: - - pos: 52.5,23.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 19473 - type: PottedPlantRandom - components: - - pos: 46.5,23.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 19474 - type: ClosetEmergencyFilledRandom - components: - - pos: 56.5,20.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19475 - type: ClosetFireFilled - components: - - pos: 56.5,21.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19476 - type: RandomVendingDrinks - components: - - pos: 56.5,25.5 - parent: 60 - type: Transform -- uid: 19477 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 56.5,24.5 - parent: 60 - type: Transform -- uid: 19478 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 56.5,22.5 - parent: 60 - type: Transform -- uid: 19479 - type: Table - components: - - pos: 56.5,23.5 - parent: 60 - type: Transform -- uid: 19480 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 43.5,20.5 - parent: 60 - type: Transform -- uid: 19481 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 44.5,20.5 - parent: 60 - type: Transform -- uid: 19482 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 45.5,20.5 - parent: 60 - type: Transform -- uid: 19483 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 54.5,20.5 - parent: 60 - type: Transform -- uid: 19484 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 43.5,22.5 - parent: 60 - type: Transform -- uid: 19485 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 43.5,23.5 - parent: 60 - type: Transform -- uid: 19486 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 43.5,24.5 - parent: 60 - type: Transform -- uid: 19487 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 42.5,22.5 - parent: 60 - type: Transform -- uid: 19488 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 42.5,23.5 - parent: 60 - type: Transform -- uid: 19489 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 42.5,24.5 - parent: 60 - type: Transform -- uid: 19490 - type: PottedPlantRandom - components: - - pos: 22.5,26.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 19491 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 23.5,26.5 - parent: 60 - type: Transform -- uid: 19492 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 25.5,26.5 - parent: 60 - type: Transform -- uid: 19493 - type: Table - components: - - pos: 24.5,26.5 - parent: 60 - type: Transform -- uid: 19494 - type: RandomVending - components: - - pos: 26.5,26.5 - parent: 60 - type: Transform -- uid: 19495 - type: ClothingHeadHelmetTemplar - components: - - pos: 25.51098,26.439768 - parent: 60 - type: Transform -- uid: 19496 - type: ChessBoard - components: - - pos: 24.51098,26.60742 - parent: 60 - type: Transform -- uid: 19497 - type: PottedPlantRandom - components: - - pos: 42.5,20.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 19498 - type: Table - components: - - pos: 28.5,26.5 - parent: 60 - type: Transform -- uid: 19499 - type: Table - components: - - pos: 32.5,26.5 - parent: 60 - type: Transform -- uid: 19500 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 27.5,26.5 - parent: 60 - type: Transform -- uid: 19501 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 29.5,26.5 - parent: 60 - type: Transform -- uid: 19502 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 31.5,26.5 - parent: 60 - type: Transform -- uid: 19503 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 33.5,26.5 - parent: 60 - type: Transform -- uid: 19504 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 30.5,26.5 - parent: 60 - type: Transform -- uid: 19505 - type: FoodPlateSmallTrash - components: - - pos: 28.58035,26.716429 - parent: 60 - type: Transform -- uid: 19506 - type: FoodPizzaSassysageSlice - components: - - pos: 32.48258,22.671288 - parent: 60 - type: Transform -- uid: 19507 - type: PottedPlantRandom - components: - - pos: 34.5,26.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 19508 - type: SignDirectionalEng - components: - - pos: 18.503504,26.274555 - parent: 60 - type: Transform -- uid: 19509 - type: SignDirectionalSupply - components: - - rot: 1.5707963267948966 rad - pos: 18.503504,26.69643 - parent: 60 - type: Transform -- uid: 19510 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: 55.63736,8.6202135 - parent: 60 - type: Transform -- uid: 19511 - type: CrateFilledSpawner - components: - - pos: 52.5,12.5 - parent: 60 - type: Transform -- uid: 19512 - type: RandomSpawner - components: - - pos: 50.5,14.5 - parent: 60 - type: Transform -- uid: 19513 - type: RandomSpawner - components: - - pos: 42.5,25.5 - parent: 60 - type: Transform -- uid: 19514 - type: RandomSpawner - components: - - pos: 24.5,23.5 - parent: 60 - type: Transform -- uid: 19515 - type: WallSolid - components: - - pos: 33.5,21.5 - parent: 60 - type: Transform -- uid: 19516 - type: WallSolid - components: - - pos: 32.5,21.5 - parent: 60 - type: Transform -- uid: 19517 - type: WallSolid - components: - - pos: 33.5,16.5 - parent: 60 - type: Transform -- uid: 19518 - type: WallSolid - components: - - pos: 33.5,18.5 - parent: 60 - type: Transform -- uid: 19519 - type: SignDirectionalSupply - components: - - rot: 1.5707963267948966 rad - pos: 35.503212,10.69858 - parent: 60 - type: Transform -- uid: 19520 - type: WallSolid - components: - - pos: 35.5,19.5 - parent: 60 - type: Transform -- uid: 19521 - type: WeaponPistolMk58 - components: - - pos: -28.40708,-0.5089251 - parent: 60 - type: Transform -- uid: 19522 - type: FirelockGlass - components: - - pos: 43.5,3.5 - parent: 60 - type: Transform -- uid: 19523 - type: CableApcExtension - components: - - pos: 35.5,13.5 - parent: 60 - type: Transform -- uid: 19524 - type: CableApcExtension - components: - - pos: 35.5,14.5 - parent: 60 - type: Transform -- uid: 19525 - type: CableApcExtension - components: - - pos: 35.5,15.5 - parent: 60 - type: Transform -- uid: 19526 - type: CableApcExtension - components: - - pos: 36.5,13.5 - parent: 60 - type: Transform -- uid: 19527 - type: CableApcExtension - components: - - pos: 37.5,13.5 - parent: 60 - type: Transform -- uid: 19528 - type: FireAlarm - components: - - pos: 42.5,4.5 - parent: 60 - type: Transform - - devices: - - 19529 - - 13141 - - 11131 - - 19522 - type: DeviceList -- uid: 19529 - type: AirSensor - components: - - pos: 41.5,1.5 - parent: 60 - type: Transform -- uid: 19530 - type: StoolBar - components: - - pos: 35.5,18.5 - parent: 60 - type: Transform -- uid: 19531 - type: BoxFolderGrey - components: - - pos: 36.46423,17.56905 - parent: 60 - type: Transform -- uid: 19532 - type: HandLabeler - components: - - pos: 36.55798,15.600301 - parent: 60 - type: Transform -- uid: 19533 - type: Grille - components: - - pos: 38.5,15.5 - parent: 60 - type: Transform -- uid: 19534 - type: Poweredlight - components: - - pos: 32.5,9.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19535 - type: CableHV - components: - - pos: 29.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19536 - type: CableHV - components: - - pos: 29.5,13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19537 - type: CableHV - components: - - pos: 29.5,14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19538 - type: CableHV - components: - - pos: 29.5,15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19539 - type: CableHV - components: - - pos: 29.5,16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19540 - type: CableHV - components: - - pos: 29.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19541 - type: WallSolid - components: - - pos: 37.5,19.5 - parent: 60 - type: Transform -- uid: 19542 - type: CableHV - components: - - pos: 28.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19543 - type: CableHV - components: - - pos: 27.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19544 - type: CableMV - components: - - pos: 29.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19545 - type: CableMV - components: - - pos: 29.5,13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19546 - type: CableMV - components: - - pos: 29.5,14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19547 - type: CableMV - components: - - pos: 29.5,15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19548 - type: CableMV - components: - - pos: 29.5,16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19549 - type: CableMV - components: - - pos: 29.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19550 - type: WallSolid - components: - - pos: 36.5,19.5 - parent: 60 - type: Transform -- uid: 19551 - type: CableMV - components: - - pos: 28.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19552 - type: CableMV - components: - - pos: 27.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19553 - type: APCBasic - components: - - pos: 42.5,26.5 - parent: 60 - type: Transform -- uid: 19554 - type: CableMV - components: - - pos: 27.5,24.5 - parent: 60 - type: Transform -- uid: 19555 - type: CableMV - components: - - pos: 28.5,24.5 - parent: 60 - type: Transform -- uid: 19556 - type: CableMV - components: - - pos: 29.5,24.5 - parent: 60 - type: Transform -- uid: 19557 - type: CableMV - components: - - pos: 30.5,24.5 - parent: 60 - type: Transform -- uid: 19558 - type: CableMV - components: - - pos: 31.5,24.5 - parent: 60 - type: Transform -- uid: 19559 - type: CableMV - components: - - pos: 32.5,24.5 - parent: 60 - type: Transform -- uid: 19560 - type: CableMV - components: - - pos: 33.5,24.5 - parent: 60 - type: Transform -- uid: 19561 - type: CableMV - components: - - pos: 34.5,24.5 - parent: 60 - type: Transform -- uid: 19562 - type: CableMV - components: - - pos: 35.5,24.5 - parent: 60 - type: Transform -- uid: 19563 - type: CableMV - components: - - pos: 36.5,24.5 - parent: 60 - type: Transform -- uid: 19564 - type: CableMV - components: - - pos: 37.5,24.5 - parent: 60 - type: Transform -- uid: 19565 - type: CableMV - components: - - pos: 38.5,24.5 - parent: 60 - type: Transform -- uid: 19566 - type: CableMV - components: - - pos: 39.5,24.5 - parent: 60 - type: Transform -- uid: 19567 - type: CableMV - components: - - pos: 40.5,24.5 - parent: 60 - type: Transform -- uid: 19568 - type: CableMV - components: - - pos: 41.5,24.5 - parent: 60 - type: Transform -- uid: 19569 - type: CableMV - components: - - pos: 42.5,24.5 - parent: 60 - type: Transform -- uid: 19570 - type: CableMV - components: - - pos: 42.5,25.5 - parent: 60 - type: Transform -- uid: 19571 - type: CableMV - components: - - pos: 42.5,26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19572 - type: CableApcExtension - components: - - pos: 42.5,26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19573 - type: CableApcExtension - components: - - pos: 42.5,25.5 - parent: 60 - type: Transform -- uid: 19574 - type: CableApcExtension - components: - - pos: 42.5,24.5 - parent: 60 - type: Transform -- uid: 19575 - type: CableApcExtension - components: - - pos: 41.5,24.5 - parent: 60 - type: Transform -- uid: 19576 - type: CableApcExtension - components: - - pos: 40.5,24.5 - parent: 60 - type: Transform -- uid: 19577 - type: CableApcExtension - components: - - pos: 43.5,24.5 - parent: 60 - type: Transform -- uid: 19578 - type: CableApcExtension - components: - - pos: 44.5,24.5 - parent: 60 - type: Transform -- uid: 19579 - type: CableApcExtension - components: - - pos: 45.5,24.5 - parent: 60 - type: Transform -- uid: 19580 - type: CableApcExtension - components: - - pos: 46.5,24.5 - parent: 60 - type: Transform -- uid: 19581 - type: CableApcExtension - components: - - pos: 47.5,24.5 - parent: 60 - type: Transform -- uid: 19582 - type: CableApcExtension - components: - - pos: 48.5,24.5 - parent: 60 - type: Transform -- uid: 19583 - type: CableApcExtension - components: - - pos: 49.5,24.5 - parent: 60 - type: Transform -- uid: 19584 - type: CableApcExtension - components: - - pos: 50.5,24.5 - parent: 60 - type: Transform -- uid: 19585 - type: CableApcExtension - components: - - pos: 51.5,24.5 - parent: 60 - type: Transform -- uid: 19586 - type: CableApcExtension - components: - - pos: 52.5,24.5 - parent: 60 - type: Transform -- uid: 19587 - type: CableApcExtension - components: - - pos: 53.5,24.5 - parent: 60 - type: Transform -- uid: 19588 - type: CableApcExtension - components: - - pos: 54.5,24.5 - parent: 60 - type: Transform -- uid: 19589 - type: CableApcExtension - components: - - pos: 55.5,24.5 - parent: 60 - type: Transform -- uid: 19590 - type: CableApcExtension - components: - - pos: 54.5,25.5 - parent: 60 - type: Transform -- uid: 19591 - type: CableApcExtension - components: - - pos: 54.5,26.5 - parent: 60 - type: Transform -- uid: 19592 - type: CableApcExtension - components: - - pos: 54.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19593 - type: CableApcExtension - components: - - pos: 54.5,28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19594 - type: CableApcExtension - components: - - pos: 54.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19595 - type: CableApcExtension - components: - - pos: 52.5,25.5 - parent: 60 - type: Transform -- uid: 19596 - type: CableApcExtension - components: - - pos: 52.5,26.5 - parent: 60 - type: Transform -- uid: 19597 - type: CableApcExtension - components: - - pos: 52.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19598 - type: CableApcExtension - components: - - pos: 52.5,28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19599 - type: CableApcExtension - components: - - pos: 52.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19600 - type: CableApcExtension - components: - - pos: 46.5,25.5 - parent: 60 - type: Transform -- uid: 19601 - type: CableApcExtension - components: - - pos: 46.5,26.5 - parent: 60 - type: Transform -- uid: 19602 - type: CableApcExtension - components: - - pos: 46.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19603 - type: CableApcExtension - components: - - pos: 46.5,28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19604 - type: CableApcExtension - components: - - pos: 46.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19605 - type: CableApcExtension - components: - - pos: 44.5,25.5 - parent: 60 - type: Transform -- uid: 19606 - type: CableApcExtension - components: - - pos: 44.5,26.5 - parent: 60 - type: Transform -- uid: 19607 - type: CableApcExtension - components: - - pos: 44.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19608 - type: CableApcExtension - components: - - pos: 44.5,28.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19609 - type: CableApcExtension - components: - - pos: 44.5,29.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19610 - type: CableApcExtension - components: - - pos: 44.5,23.5 - parent: 60 - type: Transform -- uid: 19611 - type: CableApcExtension - components: - - pos: 44.5,22.5 - parent: 60 - type: Transform -- uid: 19612 - type: CableApcExtension - components: - - pos: 45.5,22.5 - parent: 60 - type: Transform -- uid: 19613 - type: CableApcExtension - components: - - pos: 46.5,22.5 - parent: 60 - type: Transform -- uid: 19614 - type: CableApcExtension - components: - - pos: 47.5,22.5 - parent: 60 - type: Transform -- uid: 19615 - type: CableApcExtension - components: - - pos: 48.5,22.5 - parent: 60 - type: Transform -- uid: 19616 - type: CableApcExtension - components: - - pos: 49.5,22.5 - parent: 60 - type: Transform -- uid: 19617 - type: CableApcExtension - components: - - pos: 50.5,22.5 - parent: 60 - type: Transform -- uid: 19618 - type: CableApcExtension - components: - - pos: 51.5,22.5 - parent: 60 - type: Transform -- uid: 19619 - type: CableApcExtension - components: - - pos: 52.5,22.5 - parent: 60 - type: Transform -- uid: 19620 - type: CableApcExtension - components: - - pos: 53.5,22.5 - parent: 60 - type: Transform -- uid: 19621 - type: CableApcExtension - components: - - pos: 54.5,22.5 - parent: 60 - type: Transform -- uid: 19622 - type: CableApcExtension - components: - - pos: 54.5,23.5 - parent: 60 - type: Transform -- uid: 19623 - type: CableApcExtension - components: - - pos: 55.5,22.5 - parent: 60 - type: Transform -- uid: 19624 - type: CableApcExtension - components: - - pos: 43.5,22.5 - parent: 60 - type: Transform -- uid: 19625 - type: CableApcExtension - components: - - pos: 46.5,30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19626 - type: CableApcExtension - components: - - pos: 44.5,30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19627 - type: CableApcExtension - components: - - pos: 52.5,30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19628 - type: CableApcExtension - components: - - pos: 54.5,30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19629 - type: CableApcExtension - components: - - pos: 51.5,30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19630 - type: CableApcExtension - components: - - pos: 47.5,30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19631 - type: CableApcExtension - components: - - pos: 48.5,30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19632 - type: CableApcExtension - components: - - pos: 49.5,30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19633 - type: CableApcExtension - components: - - pos: 50.5,30.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19634 - type: Poweredlight - components: - - pos: 27.5,9.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19635 - type: WallSolid - components: - - pos: 33.5,17.5 - parent: 60 - type: Transform -- uid: 19636 - type: WallSolid - components: - - pos: 33.5,19.5 - parent: 60 - type: Transform -- uid: 19637 - type: WallSolid - components: - - pos: 31.5,21.5 - parent: 60 - type: Transform -- uid: 19638 - type: CableHV - components: - - pos: 29.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19639 - type: WallSolid - components: - - pos: 34.5,21.5 - parent: 60 - type: Transform -- uid: 19640 - type: Table - components: - - pos: 32.5,22.5 - parent: 60 - type: Transform -- uid: 19641 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 33.5,22.5 - parent: 60 - type: Transform -- uid: 19642 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 31.5,22.5 - parent: 60 - type: Transform -- uid: 19643 - type: Chair - components: - - pos: 36.5,26.5 - parent: 60 - type: Transform -- uid: 19644 - type: Chair - components: - - pos: 37.5,26.5 - parent: 60 - type: Transform -- uid: 19645 - type: CableApcExtension - components: - - pos: 35.5,16.5 - parent: 60 - type: Transform -- uid: 19646 - type: CableApcExtension - components: - - pos: 35.5,17.5 - parent: 60 - type: Transform -- uid: 19647 - type: CableApcExtension - components: - - pos: 27.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19648 - type: CableApcExtension - components: - - pos: 28.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19649 - type: CableApcExtension - components: - - pos: 29.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19650 - type: CableApcExtension - components: - - pos: 29.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19651 - type: CableApcExtension - components: - - pos: 29.5,16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19652 - type: CableApcExtension - components: - - pos: 29.5,15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19653 - type: CableApcExtension - components: - - pos: 29.5,14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19654 - type: CableApcExtension - components: - - pos: 29.5,13.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19655 - type: CableApcExtension - components: - - pos: 29.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19656 - type: CableApcExtension - components: - - pos: 28.5,12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19657 - type: CableApcExtension - components: - - pos: 28.5,11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19658 - type: CableApcExtension - components: - - pos: 39.5,21.5 - parent: 60 - type: Transform -- uid: 19659 - type: CableApcExtension - components: - - pos: 38.5,21.5 - parent: 60 - type: Transform -- uid: 19660 - type: CableApcExtension - components: - - pos: 37.5,21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19661 - type: CableApcExtension - components: - - pos: 36.5,21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19662 - type: CableApcExtension - components: - - pos: 35.5,21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19663 - type: CableApcExtension - components: - - pos: 35.5,20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19664 - type: CableApcExtension - components: - - pos: 34.5,20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19665 - type: CableApcExtension - components: - - pos: 33.5,20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19666 - type: HatBandRed - components: - - pos: 31.491577,14.711699 - parent: 60 - type: Transform -- uid: 19667 - type: WallSolid - components: - - pos: 32.5,13.5 - parent: 60 - type: Transform -- uid: 19668 - type: HatBandRed - components: - - pos: 31.491577,14.711699 - parent: 60 - type: Transform -- uid: 19669 - type: WallSolid - components: - - pos: 30.5,13.5 - parent: 60 - type: Transform -- uid: 19670 - type: WallSolid - components: - - pos: 32.5,19.5 - parent: 60 - type: Transform -- uid: 19671 - type: WallSolidRust - components: - - pos: 31.5,13.5 - parent: 60 - type: Transform -- uid: 19672 - type: WallSolid - components: - - pos: 30.5,19.5 - parent: 60 - type: Transform -- uid: 19673 - type: WallSolid - components: - - pos: 29.5,19.5 - parent: 60 - type: Transform -- uid: 19674 - type: WallSolidRust - components: - - pos: 31.5,16.5 - parent: 60 - type: Transform -- uid: 19675 - type: WallSolidRust - components: - - pos: 30.5,16.5 - parent: 60 - type: Transform -- uid: 19676 - type: FirelockGlass - components: - - pos: 26.5,19.5 - parent: 60 - type: Transform -- uid: 19677 - type: WallSolidRust - components: - - pos: 28.5,-8.5 - parent: 60 - type: Transform -- uid: 19678 - type: RandomArtifactSpawner20 - components: - - pos: 51.5,12.5 - parent: 60 - type: Transform -- uid: 19679 - type: WallmountTelevision - components: - - pos: 9.5,10.5 - parent: 60 - type: Transform -- uid: 19680 - type: CableApcExtension - components: - - pos: 21.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19681 - type: Poweredlight - components: - - pos: 9.5,5.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19682 - type: Poweredlight - components: - - pos: 13.5,5.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19683 - type: CableApcExtension - components: - - pos: 36.5,17.5 - parent: 60 - type: Transform -- uid: 19684 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-1.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19685 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19686 - type: ComputerStationRecords - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-27.5 - parent: 60 - type: Transform -- uid: 19687 - type: ClosetEmergencyFilledRandom - components: - - pos: 40.5,-43.5 - parent: 60 - type: Transform -- uid: 19688 - type: AtmosDeviceFanTiny - components: - - pos: 7.5,-70.5 - parent: 60 - type: Transform -- uid: 19689 - type: AtmosDeviceFanTiny - components: - - pos: 7.5,-63.5 - parent: 60 - type: Transform -- uid: 19690 - type: AtmosDeviceFanTiny - components: - - pos: -4.5,-70.5 - parent: 60 - type: Transform -- uid: 19691 - type: AtmosDeviceFanTiny - components: - - pos: 5.5,-70.5 - parent: 60 - type: Transform -- uid: 19692 - type: AtmosDeviceFanTiny - components: - - pos: 5.5,-63.5 - parent: 60 - type: Transform -- uid: 19693 - type: ClothingShoesLeather - components: - - pos: 34.454544,14.137059 - parent: 60 - type: Transform -- uid: 19694 - type: AtmosDeviceFanTiny - components: - - pos: -4.5,-63.5 - parent: 60 - type: Transform -- uid: 19695 - type: Grille - components: - - pos: 21.5,28.5 - parent: 60 - type: Transform -- uid: 19696 - type: SurveillanceCameraRouterScience - components: - - pos: -49.5,9.5 - parent: 60 - type: Transform -- uid: 19697 - type: AirlockExternalGlassShuttleEscape - components: - - rot: 3.141592653589793 rad - pos: 20.5,29.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 19698 - type: ReinforcedWindow - components: - - pos: 12.5,-55.5 - parent: 60 - type: Transform -- uid: 19699 - type: Grille - components: - - pos: 12.5,-55.5 - parent: 60 - type: Transform -- uid: 19700 - type: Grille - components: - - pos: 13.5,-55.5 - parent: 60 - type: Transform -- uid: 19701 - type: Grille - components: - - pos: 13.5,-53.5 - parent: 60 - type: Transform -- uid: 19702 - type: Grille - components: - - pos: 12.5,-53.5 - parent: 60 - type: Transform -- uid: 19703 - type: Catwalk - components: - - pos: 29.5,14.5 - parent: 60 - type: Transform -- uid: 19704 - type: Catwalk - components: - - pos: 29.5,15.5 - parent: 60 - type: Transform -- uid: 19705 - type: Catwalk - components: - - pos: 29.5,16.5 - parent: 60 - type: Transform -- uid: 19706 - type: Catwalk - components: - - pos: 29.5,17.5 - parent: 60 - type: Transform -- uid: 19707 - type: Catwalk - components: - - pos: 26.5,20.5 - parent: 60 - type: Transform -- uid: 19708 - type: Catwalk - components: - - pos: 26.5,21.5 - parent: 60 - type: Transform -- uid: 19709 - type: Catwalk - components: - - pos: 28.5,18.5 - parent: 60 - type: Transform -- uid: 19710 - type: Catwalk - components: - - pos: 27.5,18.5 - parent: 60 - type: Transform -- uid: 19711 - type: Rack - components: - - pos: 35.5,21.5 - parent: 60 - type: Transform -- uid: 19712 - type: MopBucket - components: - - pos: 36.466896,21.551334 - parent: 60 - type: Transform -- uid: 19713 - type: ClothingHandsGlovesColorBlack - components: - - pos: 35.466896,21.520084 - parent: 60 - type: Transform -- uid: 19714 - type: WallSolid - components: - - pos: 30.5,14.5 - parent: 60 - type: Transform -- uid: 19715 - type: WallSolid - components: - - pos: 30.5,15.5 - parent: 60 - type: Transform -- uid: 19716 - type: WallSolidRust - components: - - pos: 30.5,-3.5 - parent: 60 - type: Transform -- uid: 19717 - type: WallSolidRust - components: - - pos: 33.5,5.5 - parent: 60 - type: Transform -- uid: 19718 - type: WallSolidRust - components: - - pos: 33.5,0.5 - parent: 60 - type: Transform -- uid: 19719 - type: Grille - components: - - pos: 32.5,16.5 - parent: 60 - type: Transform -- uid: 19720 - type: WeldingFuelTankFull - components: - - pos: 32.5,18.5 - parent: 60 - type: Transform -- uid: 19721 - type: SpawnMobMouse - components: - - pos: 29.5,15.5 - parent: 60 - type: Transform -- uid: 19722 - type: RandomSpawner - components: - - pos: 29.5,11.5 - parent: 60 - type: Transform -- uid: 19723 - type: RandomSpawner - components: - - pos: 27.5,18.5 - parent: 60 - type: Transform -- uid: 19724 - type: RandomSpawner - components: - - pos: 37.5,20.5 - parent: 60 - type: Transform -- uid: 19725 - type: PoweredSmallLight - components: - - pos: 36.5,21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19726 - type: PoweredSmallLight - components: - - pos: 29.5,18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19727 - type: PoweredSmallLight - components: - - pos: 27.5,12.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19728 - type: ClosetMaintenanceFilledRandom - components: - - pos: 31.5,15.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19729 - type: Rack - components: - - pos: 31.5,14.5 - parent: 60 - type: Transform -- uid: 19730 - type: MaintenanceFluffSpawner - components: - - pos: 31.5,14.5 - parent: 60 - type: Transform -- uid: 19731 - type: Stool - components: - - pos: 31.5,18.5 - parent: 60 - type: Transform -- uid: 19732 - type: MaintenanceToolSpawner - components: - - pos: 29.5,21.5 - parent: 60 - type: Transform -- uid: 19733 - type: Table - components: - - pos: 26.5,11.5 - parent: 60 - type: Transform -- uid: 19734 - type: Table - components: - - pos: 26.5,12.5 - parent: 60 - type: Transform -- uid: 19735 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 27.5,12.5 - parent: 60 - type: Transform -- uid: 19736 - type: SheetPaper - components: - - pos: 26.545897,12.490652 - parent: 60 - type: Transform -- uid: 19737 - type: LightBulb - components: - - pos: 26.467772,11.615652 - parent: 60 - type: Transform -- uid: 19738 - type: ClosetEmergencyFilledRandom - components: - - pos: 32.5,12.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19739 - type: WelderIndustrialAdvanced - components: - - pos: -32.421154,38.5138 - parent: 60 - type: Transform -- uid: 19740 - type: WallReinforced - components: - - pos: 28.5,-3.5 - parent: 60 - type: Transform -- uid: 19741 - type: DeskBell - components: - - pos: 22.5,-30.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 19742 - type: DeskBell - components: - - pos: 30.5,-25.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 19743 - type: DeskBell - components: - - pos: 42.5,9.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 19744 - type: Grille - components: - - pos: 27.5,5.5 - parent: 60 - type: Transform -- uid: 19745 - type: CableMV - components: - - pos: 48.5,-32.5 - parent: 60 - type: Transform -- uid: 19746 - type: SignRadiationMed - components: - - pos: -13.5,2.5 - parent: 60 - type: Transform -- uid: 19747 - type: RandomArcade - components: - - pos: 35.5,26.5 - parent: 60 - type: Transform -- uid: 19748 - type: CableHV - components: - - pos: 34.5,3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19749 - type: CableHV - components: - - pos: 34.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19750 - type: CableHV - components: - - pos: 34.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19751 - type: CableHV - components: - - pos: 35.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19752 - type: CableHV - components: - - pos: 36.5,5.5 - parent: 60 - type: Transform -- uid: 19753 - type: CableHV - components: - - pos: 36.5,6.5 - parent: 60 - type: Transform -- uid: 19754 - type: CableHV - components: - - pos: 36.5,7.5 - parent: 60 - type: Transform -- uid: 19755 - type: CableHV - components: - - pos: 36.5,8.5 - parent: 60 - type: Transform -- uid: 19756 - type: CableHV - components: - - pos: 35.5,8.5 - parent: 60 - type: Transform -- uid: 19757 - type: CableHV - components: - - pos: 34.5,8.5 - parent: 60 - type: Transform -- uid: 19758 - type: CableHV - components: - - pos: 33.5,8.5 - parent: 60 - type: Transform -- uid: 19759 - type: CableHV - components: - - pos: 32.5,8.5 - parent: 60 - type: Transform -- uid: 19760 - type: CableHV - components: - - pos: 31.5,8.5 - parent: 60 - type: Transform -- uid: 19761 - type: CableHV - components: - - pos: 30.5,8.5 - parent: 60 - type: Transform -- uid: 19762 - type: CableHV - components: - - pos: 29.5,8.5 - parent: 60 - type: Transform -- uid: 19763 - type: WallReinforced - components: - - pos: 19.5,-3.5 - parent: 60 - type: Transform -- uid: 19764 - type: WallReinforced - components: - - pos: 28.5,-2.5 - parent: 60 - type: Transform -- uid: 19765 - type: WallReinforced - components: - - pos: 21.5,-3.5 - parent: 60 - type: Transform -- uid: 19766 - type: WallReinforced - components: - - pos: 22.5,-3.5 - parent: 60 - type: Transform -- uid: 19768 - type: WallReinforced - components: - - pos: 24.5,-3.5 - parent: 60 - type: Transform -- uid: 19769 - type: WallReinforced - components: - - pos: 25.5,-3.5 - parent: 60 - type: Transform -- uid: 19770 - type: ReinforcedWindow - components: - - pos: 27.5,5.5 - parent: 60 - type: Transform -- uid: 19771 - type: ReinforcedWindow - components: - - pos: -21.5,-34.5 - parent: 60 - type: Transform -- uid: 19772 - type: ReinforcedWindow - components: - - pos: 20.5,-3.5 - parent: 60 - type: Transform -- uid: 19773 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 22.5,6.5 - parent: 60 - type: Transform -- uid: 19774 - type: Grille - components: - - pos: -23.5,-36.5 - parent: 60 - type: Transform -- uid: 19775 - type: ReinforcedWindow - components: - - pos: 18.5,1.5 - parent: 60 - type: Transform -- uid: 19776 - type: Grille - components: - - pos: -23.5,-35.5 - parent: 60 - type: Transform -- uid: 19777 - type: Grille - components: - - pos: -23.5,-34.5 - parent: 60 - type: Transform -- uid: 19778 - type: Grille - components: - - pos: -21.5,-34.5 - parent: 60 - type: Transform -- uid: 19779 - type: Grille - components: - - pos: -25.5,-34.5 - parent: 60 - type: Transform -- uid: 19780 - type: Grille - components: - - pos: -25.5,-35.5 - parent: 60 - type: Transform -- uid: 19781 - type: Grille - components: - - pos: -25.5,-36.5 - parent: 60 - type: Transform -- uid: 19782 - type: WallReinforced - components: - - pos: 27.5,-3.5 - parent: 60 - type: Transform -- uid: 19783 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,6.5 - parent: 60 - type: Transform -- uid: 19784 - type: CableApcExtension - components: - - pos: 17.5,4.5 - parent: 60 - type: Transform -- uid: 19785 - type: Grille - components: - - pos: 19.5,5.5 - parent: 60 - type: Transform -- uid: 19786 - type: AtmosDeviceFanTiny - components: - - pos: -24.5,-35.5 - parent: 60 - type: Transform -- uid: 19787 - type: WallReinforced - components: - - pos: 28.5,-1.5 - parent: 60 - type: Transform -- uid: 19788 - type: WallReinforced - components: - - pos: 20.5,5.5 - parent: 60 - type: Transform -- uid: 19789 - type: AirlockExternalGlassShuttleEscape - components: - - pos: -24.5,-36.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 19790 - type: AirlockExternalGlass - components: - - pos: -24.5,-34.5 - parent: 60 - type: Transform -- uid: 19791 - type: CableApcExtension - components: - - pos: 20.5,7.5 - parent: 60 - type: Transform -- uid: 19793 - type: WallSolid - components: - - pos: 29.5,6.5 - parent: 60 - type: Transform -- uid: 19795 - type: WallSolid - components: - - pos: 30.5,6.5 - parent: 60 - type: Transform -- uid: 19796 - type: WallReinforced - components: - - pos: 28.5,5.5 - parent: 60 - type: Transform -- uid: 19797 - type: WallReinforced - components: - - pos: 28.5,0.5 - parent: 60 - type: Transform -- uid: 19798 - type: WallReinforced - components: - - pos: 28.5,-0.5 - parent: 60 - type: Transform -- uid: 19800 - type: AtmosDeviceFanTiny - components: - - pos: 23.5,-46.5 - parent: 60 - type: Transform -- uid: 19803 - type: ReinforcedWindow - components: - - pos: 21.5,29.5 - parent: 60 - type: Transform -- uid: 19804 - type: Grille - components: - - pos: 21.5,29.5 - parent: 60 - type: Transform -- uid: 19805 - type: Grille - components: - - pos: 19.5,29.5 - parent: 60 - type: Transform -- uid: 19806 - type: SignEscapePods - components: - - pos: 18.5,27.5 - parent: 60 - type: Transform -- uid: 19807 - type: ClosetEmergencyFilledRandom - components: - - pos: 19.5,28.5 - parent: 60 - type: Transform -- uid: 19808 - type: AtmosDeviceFanTiny - components: - - pos: 20.5,28.5 - parent: 60 - type: Transform -- uid: 19809 - type: Grille - components: - - pos: 18.5,1.5 - parent: 60 - type: Transform -- uid: 19810 - type: CableMV - components: - - pos: -7.5,3.5 - parent: 60 - type: Transform -- uid: 19811 - type: WallSolid - components: - - pos: 28.5,6.5 - parent: 60 - type: Transform -- uid: 19812 - type: WallReinforced - components: - - pos: 26.5,5.5 - parent: 60 - type: Transform -- uid: 19813 - type: ReinforcedWindow - components: - - pos: 26.5,-3.5 - parent: 60 - type: Transform -- uid: 19815 - type: WallReinforced - components: - - pos: 28.5,3.5 - parent: 60 - type: Transform -- uid: 19816 - type: WallReinforced - components: - - pos: 28.5,2.5 - parent: 60 - type: Transform -- uid: 19817 - type: WallReinforced - components: - - pos: -8.5,1.5 - parent: 60 - type: Transform -- uid: 19818 - type: WallReinforced - components: - - pos: -10.5,1.5 - parent: 60 - type: Transform -- uid: 19819 - type: Grille - components: - - pos: 20.5,-3.5 - parent: 60 - type: Transform -- uid: 19820 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 21.5,6.5 - parent: 60 - type: Transform -- uid: 19822 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 25.5,6.5 - parent: 60 - type: Transform -- uid: 19824 - type: CableMV - components: - - pos: -9.5,2.5 - parent: 60 - type: Transform -- uid: 19825 - type: Window - components: - - pos: -59.5,35.5 - parent: 60 - type: Transform -- uid: 19844 - type: CableApcExtension - components: - - pos: 20.5,6.5 - parent: 60 - type: Transform -- uid: 19845 - type: CableApcExtension - components: - - pos: 20.5,6.5 - parent: 60 - type: Transform -- uid: 19846 - type: Window - components: - - pos: -57.5,35.5 - parent: 60 - type: Transform -- uid: 19847 - type: CableApcExtension - components: - - pos: 27.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19848 - type: CableApcExtension - components: - - pos: 27.5,6.5 - parent: 60 - type: Transform -- uid: 19849 - type: CableApcExtension - components: - - pos: 27.5,7.5 - parent: 60 - type: Transform -- uid: 19853 - type: CableApcExtension - components: - - pos: 23.5,4.5 - parent: 60 - type: Transform -- uid: 19854 - type: CableApcExtension - components: - - pos: 23.5,3.5 - parent: 60 - type: Transform -- uid: 19855 - type: CableApcExtension - components: - - pos: 23.5,2.5 - parent: 60 - type: Transform -- uid: 19856 - type: CableApcExtension - components: - - pos: 23.5,1.5 - parent: 60 - type: Transform -- uid: 19857 - type: CableApcExtension - components: - - pos: 23.5,0.5 - parent: 60 - type: Transform -- uid: 19858 - type: CableApcExtension - components: - - pos: 23.5,-0.5 - parent: 60 - type: Transform -- uid: 19859 - type: CableApcExtension - components: - - pos: 22.5,1.5 - parent: 60 - type: Transform -- uid: 19860 - type: CableApcExtension - components: - - pos: 21.5,1.5 - parent: 60 - type: Transform -- uid: 19864 - type: CableApcExtension - components: - - pos: 24.5,1.5 - parent: 60 - type: Transform -- uid: 19865 - type: CableApcExtension - components: - - pos: 25.5,1.5 - parent: 60 - type: Transform -- uid: 19889 - type: SignSecureMed - components: - - pos: 25.5,6.5 - parent: 60 - type: Transform -- uid: 19890 - type: SignSecureMed - components: - - pos: 21.5,6.5 - parent: 60 - type: Transform -- uid: 19891 - type: PottedPlantRandom - components: - - pos: 19.5,6.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 19892 - type: ClosetEmergencyFilledRandom - components: - - pos: 26.5,6.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19893 - type: ClosetFireFilled - components: - - pos: 27.5,6.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19894 - type: WallSolid - components: - - pos: 19.5,-8.5 - parent: 60 - type: Transform -- uid: 19895 - type: WallSolid - components: - - pos: 20.5,-8.5 - parent: 60 - type: Transform -- uid: 19896 - type: WallSolid - components: - - pos: 21.5,-8.5 - parent: 60 - type: Transform -- uid: 19897 - type: WallSolid - components: - - pos: 22.5,-8.5 - parent: 60 - type: Transform -- uid: 19898 - type: WallSolid - components: - - pos: 23.5,-8.5 - parent: 60 - type: Transform -- uid: 19899 - type: WallSolid - components: - - pos: 24.5,-8.5 - parent: 60 - type: Transform -- uid: 19900 - type: WallSolid - components: - - pos: 25.5,-8.5 - parent: 60 - type: Transform -- uid: 19901 - type: WallSolid - components: - - pos: 26.5,-8.5 - parent: 60 - type: Transform -- uid: 19902 - type: WallSolid - components: - - pos: 27.5,-8.5 - parent: 60 - type: Transform -- uid: 19903 - type: WallSolid - components: - - pos: 27.5,-7.5 - parent: 60 - type: Transform -- uid: 19904 - type: WallSolid - components: - - pos: 27.5,-6.5 - parent: 60 - type: Transform -- uid: 19905 - type: Airlock - components: - - name: bungle zone - type: MetaData - - pos: 27.5,-5.5 - parent: 60 - type: Transform -- uid: 19906 - type: WallSolid - components: - - pos: 27.5,-4.5 - parent: 60 - type: Transform -- uid: 19907 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-7.5 - parent: 60 - type: Transform -- uid: 19908 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-6.5 - parent: 60 - type: Transform -- uid: 19909 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 60 - type: Transform -- uid: 19910 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 60 - type: Transform -- uid: 19911 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 60 - type: Transform -- uid: 19912 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 60 - type: Transform -- uid: 19913 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-7.5 - parent: 60 - type: Transform -- uid: 19914 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-7.5 - parent: 60 - type: Transform -- uid: 19915 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-6.5 - parent: 60 - type: Transform -- uid: 19916 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 60 - type: Transform -- uid: 19917 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 26.5,-7.5 - parent: 60 - type: Transform -- uid: 19918 - type: Table - components: - - pos: 26.5,-6.5 - parent: 60 - type: Transform -- uid: 19919 - type: Lamp - components: - - pos: 26.631458,-6.2829666 - parent: 60 - type: Transform -- uid: 19920 - type: ClothingHandsGlovesBoxingBlue - components: - - pos: 19.534311,-4.426717 - parent: 60 - type: Transform -- uid: 19921 - type: ClothingHandsGlovesBoxingRed - components: - - pos: 22.143686,-7.520467 - parent: 60 - type: Transform -- uid: 19922 - type: RandomSpawner - components: - - pos: 25.5,-5.5 - parent: 60 - type: Transform -- uid: 19923 - type: PoweredSmallLight - components: - - pos: 24.5,-4.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19924 - type: PoweredSmallLight - components: - - pos: 21.5,-4.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19925 - type: SyringeEphedrine - components: - - pos: 21.728817,-7.287468 - parent: 60 - type: Transform - - tags: [] - type: Tag -- uid: 19926 - type: CableApcExtension - components: - - pos: 20.5,-5.5 - parent: 60 - type: Transform -- uid: 19927 - type: CableApcExtension - components: - - pos: 21.5,-5.5 - parent: 60 - type: Transform -- uid: 19928 - type: CableApcExtension - components: - - pos: 22.5,-5.5 - parent: 60 - type: Transform -- uid: 19929 - type: CableApcExtension - components: - - pos: 23.5,-5.5 - parent: 60 - type: Transform -- uid: 19930 - type: CableApcExtension - components: - - pos: 24.5,-5.5 - parent: 60 - type: Transform -- uid: 19931 - type: CableApcExtension - components: - - pos: 25.5,-5.5 - parent: 60 - type: Transform -- uid: 19932 - type: CableApcExtension - components: - - pos: 26.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19933 - type: CableApcExtension - components: - - pos: 27.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19934 - type: CableApcExtension - components: - - pos: 28.5,-5.5 - parent: 60 - type: Transform -- uid: 19935 - type: CableApcExtension - components: - - pos: 29.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19936 - type: CableApcExtension - components: - - pos: 17.5,-9.5 - parent: 60 - type: Transform -- uid: 19937 - type: CableApcExtension - components: - - pos: 18.5,-9.5 - parent: 60 - type: Transform -- uid: 19938 - type: CableApcExtension - components: - - pos: 19.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19939 - type: CableApcExtension - components: - - pos: 20.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19940 - type: CableApcExtension - components: - - pos: 21.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19941 - type: CableApcExtension - components: - - pos: 22.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19942 - type: CableApcExtension - components: - - pos: 23.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19943 - type: CableApcExtension - components: - - pos: 24.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19944 - type: CableApcExtension - components: - - pos: 25.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19945 - type: CableApcExtension - components: - - pos: 26.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19946 - type: CableApcExtension - components: - - pos: 27.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19947 - type: CableApcExtension - components: - - pos: 28.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19948 - type: CableApcExtension - components: - - pos: 29.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19949 - type: CableApcExtension - components: - - pos: 30.5,-9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19950 - type: CableApcExtension - components: - - pos: 30.5,-8.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19951 - type: CableApcExtension - components: - - pos: 30.5,-7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19952 - type: CableApcExtension - components: - - pos: 30.5,-6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19953 - type: CableApcExtension - components: - - pos: 30.5,-5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19954 - type: WallSolidRust - components: - - pos: 32.5,-3.5 - parent: 60 - type: Transform -- uid: 19955 - type: Girder - components: - - pos: 29.5,-8.5 - parent: 60 - type: Transform -- uid: 19956 - type: GrilleBroken - components: - - pos: 29.5,-8.5 - parent: 60 - type: Transform -- uid: 19957 - type: PoweredSmallLight - components: - - pos: 23.5,-9.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19958 - type: Catwalk - components: - - pos: 24.5,-9.5 - parent: 60 - type: Transform -- uid: 19959 - type: Catwalk - components: - - pos: 25.5,-9.5 - parent: 60 - type: Transform -- uid: 19960 - type: Catwalk - components: - - pos: 26.5,-9.5 - parent: 60 - type: Transform -- uid: 19961 - type: TablePlasmaGlass - components: - - pos: -58.5,1.5 - parent: 60 - type: Transform -- uid: 19962 - type: Catwalk - components: - - pos: 28.5,-9.5 - parent: 60 - type: Transform -- uid: 19963 - type: Catwalk - components: - - pos: 29.5,-9.5 - parent: 60 - type: Transform -- uid: 19964 - type: Catwalk - components: - - pos: 50.5,-3.5 - parent: 60 - type: Transform -- uid: 19965 - type: Catwalk - components: - - pos: 49.5,-3.5 - parent: 60 - type: Transform -- uid: 19966 - type: Catwalk - components: - - pos: 48.5,-3.5 - parent: 60 - type: Transform -- uid: 19967 - type: Catwalk - components: - - pos: 47.5,-3.5 - parent: 60 - type: Transform -- uid: 19968 - type: Catwalk - components: - - pos: 46.5,-3.5 - parent: 60 - type: Transform -- uid: 19969 - type: Catwalk - components: - - pos: 45.5,-3.5 - parent: 60 - type: Transform -- uid: 19970 - type: Catwalk - components: - - pos: 44.5,-3.5 - parent: 60 - type: Transform -- uid: 19971 - type: Catwalk - components: - - pos: 42.5,-3.5 - parent: 60 - type: Transform -- uid: 19972 - type: Catwalk - components: - - pos: 41.5,-3.5 - parent: 60 - type: Transform -- uid: 19973 - type: Catwalk - components: - - pos: 40.5,-3.5 - parent: 60 - type: Transform -- uid: 19974 - type: Catwalk - components: - - pos: 39.5,-3.5 - parent: 60 - type: Transform -- uid: 19975 - type: Catwalk - components: - - pos: 38.5,-3.5 - parent: 60 - type: Transform -- uid: 19976 - type: Catwalk - components: - - pos: 37.5,-3.5 - parent: 60 - type: Transform -- uid: 19977 - type: Catwalk - components: - - pos: 36.5,-3.5 - parent: 60 - type: Transform -- uid: 19978 - type: FirelockGlass - components: - - pos: 35.5,-3.5 - parent: 60 - type: Transform -- uid: 19979 - type: Catwalk - components: - - pos: 34.5,4.5 - parent: 60 - type: Transform -- uid: 19980 - type: Catwalk - components: - - pos: 34.5,3.5 - parent: 60 - type: Transform -- uid: 19981 - type: Catwalk - components: - - pos: 34.5,2.5 - parent: 60 - type: Transform -- uid: 19982 - type: Catwalk - components: - - pos: 34.5,1.5 - parent: 60 - type: Transform -- uid: 19983 - type: Catwalk - components: - - pos: 34.5,0.5 - parent: 60 - type: Transform -- uid: 19984 - type: Catwalk - components: - - pos: 34.5,-0.5 - parent: 60 - type: Transform -- uid: 19985 - type: Catwalk - components: - - pos: 34.5,-1.5 - parent: 60 - type: Transform -- uid: 19986 - type: Catwalk - components: - - pos: 34.5,-2.5 - parent: 60 - type: Transform -- uid: 19987 - type: Catwalk - components: - - pos: 34.5,-4.5 - parent: 60 - type: Transform -- uid: 19988 - type: Catwalk - components: - - pos: 34.5,-5.5 - parent: 60 - type: Transform -- uid: 19989 - type: Catwalk - components: - - pos: 34.5,-6.5 - parent: 60 - type: Transform -- uid: 19990 - type: Catwalk - components: - - pos: 33.5,-7.5 - parent: 60 - type: Transform -- uid: 19991 - type: Catwalk - components: - - pos: 32.5,-7.5 - parent: 60 - type: Transform -- uid: 19992 - type: Catwalk - components: - - pos: 31.5,-7.5 - parent: 60 - type: Transform -- uid: 19993 - type: SpaceCash10 - components: - - pos: 25.537956,-7.7012243 - parent: 60 - type: Transform -- uid: 19994 - type: WallSolid - components: - - pos: 29.5,-3.5 - parent: 60 - type: Transform -- uid: 19995 - type: WallSolid - components: - - pos: 31.5,-3.5 - parent: 60 - type: Transform -- uid: 19996 - type: WindowReinforcedDirectional - components: - - pos: -47.5,5.5 - parent: 60 - type: Transform -- uid: 19997 - type: AirlockMaintLocked - components: - - pos: 32.5,-1.5 - parent: 60 - type: Transform -- uid: 19998 - type: WallSolid - components: - - pos: 32.5,-2.5 - parent: 60 - type: Transform -- uid: 19999 - type: ChairOfficeDark - components: - - pos: -58.5,2.5 - parent: 60 - type: Transform -- uid: 20000 - type: WallSolid - components: - - pos: 33.5,2.5 - parent: 60 - type: Transform -- uid: 20001 - type: WallSolid - components: - - pos: 33.5,3.5 - parent: 60 - type: Transform -- uid: 20002 - type: WallSolid - components: - - pos: 33.5,4.5 - parent: 60 - type: Transform -- uid: 20003 - type: SheetSteel - components: - - pos: -24.46965,0.7424586 - parent: 60 - type: Transform -- uid: 20004 - type: WallSolid - components: - - pos: 32.5,0.5 - parent: 60 - type: Transform -- uid: 20005 - type: WallSolid - components: - - pos: 32.5,-0.5 - parent: 60 - type: Transform -- uid: 20006 - type: RadioHandheld - components: - - pos: -59.482983,1.5744543 - parent: 60 - type: Transform -- uid: 20007 - type: WallSolid - components: - - pos: 33.5,1.5 - parent: 60 - type: Transform -- uid: 20008 - type: ComputerPowerMonitoring - components: - - pos: 30.5,5.5 - parent: 60 - type: Transform -- uid: 20009 - type: SMESBasic - components: - - pos: 31.5,5.5 - parent: 60 - type: Transform -- uid: 20010 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 32.5,5.5 - parent: 60 - type: Transform -- uid: 20011 - type: GeneratorPlasma - components: - - pos: 29.5,3.5 - parent: 60 - type: Transform -- uid: 20012 - type: Table - components: - - pos: 29.5,4.5 - parent: 60 - type: Transform -- uid: 20013 - type: Table - components: - - pos: 29.5,5.5 - parent: 60 - type: Transform -- uid: 20014 - type: Rack - components: - - pos: 32.5,3.5 - parent: 60 - type: Transform -- uid: 20015 - type: PartRodMetal - components: - - pos: 32.490437,3.5854354 - parent: 60 - type: Transform -- uid: 20016 - type: CableMVStack - components: - - pos: 29.459187,5.474392 - parent: 60 - type: Transform -- uid: 20017 - type: SheetPlasma1 - components: - - pos: 29.490437,4.841237 - parent: 60 - type: Transform -- uid: 20018 - type: SheetPlasma1 - components: - - pos: 29.490437,4.841237 - parent: 60 - type: Transform -- uid: 20019 - type: SheetPlasma1 - components: - - pos: 29.490437,4.841237 - parent: 60 - type: Transform -- uid: 20020 - type: SheetPlasma1 - components: - - pos: 29.490437,4.841237 - parent: 60 - type: Transform -- uid: 20021 - type: SheetPlasma1 - components: - - pos: 29.490437,4.841237 - parent: 60 - type: Transform -- uid: 20022 - type: SheetPlasma1 - components: - - pos: 29.490437,4.841237 - parent: 60 - type: Transform -- uid: 20023 - type: SheetPlasma1 - components: - - pos: 29.490437,4.841237 - parent: 60 - type: Transform -- uid: 20024 - type: SheetPlasma1 - components: - - pos: 29.490437,4.841237 - parent: 60 - type: Transform -- uid: 20025 - type: SheetPlasma1 - components: - - pos: 29.490437,4.841237 - parent: 60 - type: Transform -- uid: 20026 - type: SheetPlasma1 - components: - - pos: 29.506062,4.825612 - parent: 60 - type: Transform -- uid: 20027 - type: Table - components: - - pos: 29.5,-1.5 - parent: 60 - type: Transform -- uid: 20028 - type: Table - components: - - pos: 29.5,-0.5 - parent: 60 - type: Transform -- uid: 20029 - type: Table - components: - - pos: 29.5,0.5 - parent: 60 - type: Transform -- uid: 20030 - type: ToolboxElectricalFilled - components: - - pos: 29.490437,0.56216824 - parent: 60 - type: Transform -- uid: 20031 - type: PowerCellRecharger - components: - - pos: 29.5,-0.5 - parent: 60 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 20032 - type: Table - components: - - pos: 30.5,-5.5 - parent: 60 - type: Transform -- uid: 20033 - type: Chair - components: - - pos: 30.5,-4.5 - parent: 60 - type: Transform -- uid: 20034 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-5.5 - parent: 60 - type: Transform -- uid: 20035 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-5.5 - parent: 60 - type: Transform -- uid: 20036 - type: CableHV - components: - - pos: 31.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20037 - type: CableHV - components: - - pos: 30.5,5.5 - parent: 60 - type: Transform -- uid: 20038 - type: CableHV - components: - - pos: 30.5,4.5 - parent: 60 - type: Transform -- uid: 20039 - type: CableHV - components: - - pos: 30.5,3.5 - parent: 60 - type: Transform -- uid: 20040 - type: CableHV - components: - - pos: 30.5,2.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20041 - type: CableHV - components: - - pos: 30.5,1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20042 - type: CableHV - components: - - pos: 30.5,0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20043 - type: CableHV - components: - - pos: 32.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20044 - type: CableHV - components: - - pos: 32.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20045 - type: CableApcExtension - components: - - pos: 43.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20046 - type: CableApcExtension - components: - - pos: 42.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20047 - type: CableApcExtension - components: - - pos: 41.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20048 - type: CableApcExtension - components: - - pos: 40.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20049 - type: CableApcExtension - components: - - pos: 39.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20050 - type: CableApcExtension - components: - - pos: 38.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20051 - type: CableApcExtension - components: - - pos: 37.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20052 - type: CableApcExtension - components: - - pos: 36.5,-3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20053 - type: CableApcExtension - components: - - pos: 36.5,5.5 - parent: 60 - type: Transform -- uid: 20054 - type: CableApcExtension - components: - - pos: 35.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20055 - type: CableApcExtension - components: - - pos: 34.5,5.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20056 - type: CableApcExtension - components: - - pos: 34.5,4.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20057 - type: CableApcExtension - components: - - pos: 34.5,3.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20058 - type: CableApcExtension - components: - - pos: 34.5,2.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20059 - type: CableApcExtension - components: - - pos: 34.5,1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20060 - type: CableApcExtension - components: - - pos: 34.5,0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20061 - type: CableApcExtension - components: - - pos: 34.5,-0.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20062 - type: PoweredSmallLight - components: - - pos: 31.5,-4.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20063 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,2.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20064 - type: ClothingUniformJumpsuitColorYellow - components: - - pos: 29.548233,-0.078190595 - parent: 60 - type: Transform -- uid: 20065 - type: ClothingHeadHelmetFire - components: - - pos: 29.516983,-1.2031906 - parent: 60 - type: Transform -- uid: 20066 - type: Rack - components: - - pos: 28.5,-7.5 - parent: 60 - type: Transform -- uid: 20067 - type: CigarCase - components: - - pos: 28.50543,-7.431973 - parent: 60 - type: Transform -- uid: 20068 - type: MedkitFilled - components: - - pos: 28.5065,-6.7320127 - parent: 60 - type: Transform -- uid: 20069 - type: MedkitBurnFilled - components: - - pos: 32.483738,14.359157 - parent: 60 - type: Transform -- uid: 20070 - type: MedkitBruteFilled - components: - - pos: 55.61443,-7.6437893 - parent: 60 - type: Transform -- uid: 20071 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 28.5,-4.5 - parent: 60 - type: Transform -- uid: 20072 - type: CrateEmptySpawner - components: - - pos: 29.5,-2.5 - parent: 60 - type: Transform -- uid: 20073 - type: CrateEmptySpawner - components: - - pos: 30.5,-2.5 - parent: 60 - type: Transform -- uid: 20074 - type: Paper - components: - - pos: -58.670483,1.6369543 - parent: 60 - type: Transform -- uid: 20075 - type: SignElectricalMed - components: - - pos: 32.5,-0.5 - parent: 60 - type: Transform -- uid: 20076 - type: MaintenanceFluffSpawner - components: - - pos: 30.5,-5.5 - parent: 60 - type: Transform -- uid: 20077 - type: MaintenanceToolSpawner - components: - - pos: 31.5,-2.5 - parent: 60 - type: Transform -- uid: 20078 - type: MaintenanceWeaponSpawner - components: - - pos: 48.5,-4.5 - parent: 60 - type: Transform -- uid: 20079 - type: OxygenCanister - components: - - pos: 33.5,-0.5 - parent: 60 - type: Transform -- uid: 20080 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 41.5,10.5 - parent: 60 - type: Transform -- uid: 20081 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 41.5,11.5 - parent: 60 - type: Transform -- uid: 20082 - type: DrinkWaterCup - components: - - pos: 51.66018,17.672226 - parent: 60 - type: Transform -- uid: 20083 - type: CableHV - components: - - pos: 66.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20084 - type: CableHV - components: - - pos: 65.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20085 - type: SubstationBasic - components: - - name: South East Solar Substation - type: MetaData - - pos: 61.5,-37.5 - parent: 60 - type: Transform -- uid: 20086 - type: ComputerPowerMonitoring - components: - - pos: 62.5,-37.5 - parent: 60 - type: Transform -- uid: 20087 - type: APCBasic - components: - - pos: 62.5,-36.5 - parent: 60 - type: Transform -- uid: 20088 - type: CableMV - components: - - pos: 61.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20089 - type: CableMV - components: - - pos: 62.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20090 - type: CableMV - components: - - pos: 62.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20091 - type: CableApcExtension - components: - - pos: 62.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20092 - type: CableApcExtension - components: - - pos: 62.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20093 - type: CableApcExtension - components: - - pos: 62.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20094 - type: CableApcExtension - components: - - pos: 61.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20095 - type: CableApcExtension - components: - - pos: 63.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20096 - type: CableApcExtension - components: - - pos: 64.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20097 - type: CableApcExtension - components: - - pos: 65.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20098 - type: CableApcExtension - components: - - pos: 66.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20099 - type: Grille - components: - - pos: 64.5,-37.5 - parent: 60 - type: Transform -- uid: 20100 - type: Grille - components: - - pos: 64.5,-36.5 - parent: 60 - type: Transform -- uid: 20101 - type: Grille - components: - - pos: 65.5,-37.5 - parent: 60 - type: Transform -- uid: 20102 - type: Grille - components: - - pos: 66.5,-37.5 - parent: 60 - type: Transform -- uid: 20103 - type: Grille - components: - - pos: 64.5,-40.5 - parent: 60 - type: Transform -- uid: 20104 - type: Grille - components: - - pos: 64.5,-39.5 - parent: 60 - type: Transform -- uid: 20105 - type: Grille - components: - - pos: 65.5,-39.5 - parent: 60 - type: Transform -- uid: 20106 - type: Grille - components: - - pos: 66.5,-39.5 - parent: 60 - type: Transform -- uid: 20107 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 64.5,-38.5 - parent: 60 - type: Transform -- uid: 20108 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 66.5,-38.5 - parent: 60 - type: Transform -- uid: 20109 - type: Catwalk - components: - - pos: 63.5,-33.5 - parent: 60 - type: Transform -- uid: 20110 - type: Catwalk - components: - - pos: 63.5,-34.5 - parent: 60 - type: Transform -- uid: 20111 - type: Catwalk - components: - - pos: 64.5,-34.5 - parent: 60 - type: Transform -- uid: 20112 - type: Catwalk - components: - - pos: 65.5,-34.5 - parent: 60 - type: Transform -- uid: 20113 - type: Catwalk - components: - - pos: 66.5,-34.5 - parent: 60 - type: Transform -- uid: 20114 - type: Catwalk - components: - - pos: 67.5,-34.5 - parent: 60 - type: Transform -- uid: 20115 - type: Catwalk - components: - - pos: 67.5,-35.5 - parent: 60 - type: Transform -- uid: 20116 - type: Catwalk - components: - - pos: 67.5,-36.5 - parent: 60 - type: Transform -- uid: 20117 - type: Catwalk - components: - - pos: 67.5,-37.5 - parent: 60 - type: Transform -- uid: 20118 - type: Catwalk - components: - - pos: 67.5,-38.5 - parent: 60 - type: Transform -- uid: 20119 - type: Catwalk - components: - - pos: 67.5,-39.5 - parent: 60 - type: Transform -- uid: 20120 - type: Catwalk - components: - - pos: 67.5,-40.5 - parent: 60 - type: Transform -- uid: 20121 - type: Catwalk - components: - - pos: 67.5,-41.5 - parent: 60 - type: Transform -- uid: 20122 - type: Catwalk - components: - - pos: 67.5,-42.5 - parent: 60 - type: Transform -- uid: 20123 - type: Catwalk - components: - - pos: 66.5,-42.5 - parent: 60 - type: Transform -- uid: 20124 - type: Catwalk - components: - - pos: 65.5,-42.5 - parent: 60 - type: Transform -- uid: 20125 - type: Catwalk - components: - - pos: 64.5,-42.5 - parent: 60 - type: Transform -- uid: 20126 - type: Catwalk - components: - - pos: 63.5,-42.5 - parent: 60 - type: Transform -- uid: 20127 - type: Catwalk - components: - - pos: 62.5,-42.5 - parent: 60 - type: Transform -- uid: 20128 - type: Catwalk - components: - - pos: 62.5,-43.5 - parent: 60 - type: Transform -- uid: 20129 - type: SolarPanel - components: - - pos: 78.5,-36.5 - parent: 60 - type: Transform -- uid: 20130 - type: SolarPanel - components: - - pos: 77.5,-36.5 - parent: 60 - type: Transform -- uid: 20131 - type: SolarPanel - components: - - pos: 76.5,-36.5 - parent: 60 - type: Transform -- uid: 20132 - type: SolarPanel - components: - - pos: 75.5,-36.5 - parent: 60 - type: Transform -- uid: 20133 - type: SolarPanel - components: - - pos: 75.5,-34.5 - parent: 60 - type: Transform -- uid: 20134 - type: SolarPanel - components: - - pos: 76.5,-34.5 - parent: 60 - type: Transform -- uid: 20135 - type: SolarPanel - components: - - pos: 77.5,-34.5 - parent: 60 - type: Transform -- uid: 20136 - type: SolarPanel - components: - - pos: 78.5,-34.5 - parent: 60 - type: Transform -- uid: 20137 - type: SolarPanel - components: - - pos: 80.5,-36.5 - parent: 60 - type: Transform -- uid: 20138 - type: SolarPanel - components: - - pos: 81.5,-36.5 - parent: 60 - type: Transform -- uid: 20139 - type: SolarPanel - components: - - pos: 82.5,-36.5 - parent: 60 - type: Transform -- uid: 20140 - type: SolarPanel - components: - - pos: 83.5,-36.5 - parent: 60 - type: Transform -- uid: 20141 - type: SolarPanel - components: - - pos: 80.5,-34.5 - parent: 60 - type: Transform -- uid: 20142 - type: SolarPanel - components: - - pos: 81.5,-34.5 - parent: 60 - type: Transform -- uid: 20143 - type: SolarPanel - components: - - pos: 82.5,-34.5 - parent: 60 - type: Transform -- uid: 20144 - type: SolarPanel - components: - - pos: 83.5,-34.5 - parent: 60 - type: Transform -- uid: 20145 - type: SolarPanel - components: - - pos: 75.5,-40.5 - parent: 60 - type: Transform -- uid: 20146 - type: SolarPanel - components: - - pos: 76.5,-40.5 - parent: 60 - type: Transform -- uid: 20147 - type: SolarPanel - components: - - pos: 77.5,-40.5 - parent: 60 - type: Transform -- uid: 20148 - type: SolarPanel - components: - - pos: 78.5,-40.5 - parent: 60 - type: Transform -- uid: 20149 - type: SolarPanel - components: - - pos: 75.5,-42.5 - parent: 60 - type: Transform -- uid: 20150 - type: SolarPanel - components: - - pos: 76.5,-42.5 - parent: 60 - type: Transform -- uid: 20151 - type: SolarPanel - components: - - pos: 77.5,-42.5 - parent: 60 - type: Transform -- uid: 20152 - type: SolarPanel - components: - - pos: 78.5,-42.5 - parent: 60 - type: Transform -- uid: 20153 - type: SolarPanel - components: - - pos: 80.5,-42.5 - parent: 60 - type: Transform -- uid: 20154 - type: SolarPanel - components: - - pos: 81.5,-42.5 - parent: 60 - type: Transform -- uid: 20155 - type: SolarPanel - components: - - pos: 82.5,-42.5 - parent: 60 - type: Transform -- uid: 20156 - type: SolarPanel - components: - - pos: 83.5,-42.5 - parent: 60 - type: Transform -- uid: 20157 - type: SolarPanel - components: - - pos: 80.5,-40.5 - parent: 60 - type: Transform -- uid: 20158 - type: SolarPanel - components: - - pos: 81.5,-40.5 - parent: 60 - type: Transform -- uid: 20159 - type: SolarPanel - components: - - pos: 82.5,-40.5 - parent: 60 - type: Transform -- uid: 20160 - type: SolarPanel - components: - - pos: 83.5,-40.5 - parent: 60 - type: Transform -- uid: 20161 - type: SolarPanel - components: - - pos: 75.5,-24.5 - parent: 60 - type: Transform -- uid: 20162 - type: SolarPanel - components: - - pos: 76.5,-24.5 - parent: 60 - type: Transform -- uid: 20163 - type: SolarPanel - components: - - pos: 77.5,-24.5 - parent: 60 - type: Transform -- uid: 20164 - type: SolarPanel - components: - - pos: 78.5,-24.5 - parent: 60 - type: Transform -- uid: 20165 - type: SolarPanel - components: - - pos: 75.5,-22.5 - parent: 60 - type: Transform -- uid: 20166 - type: SolarPanel - components: - - pos: 76.5,-22.5 - parent: 60 - type: Transform -- uid: 20167 - type: SolarPanel - components: - - pos: 77.5,-22.5 - parent: 60 - type: Transform -- uid: 20168 - type: SolarPanel - components: - - pos: 78.5,-22.5 - parent: 60 - type: Transform -- uid: 20169 - type: SolarPanel - components: - - pos: 80.5,-24.5 - parent: 60 - type: Transform -- uid: 20170 - type: SolarPanel - components: - - pos: 81.5,-24.5 - parent: 60 - type: Transform -- uid: 20171 - type: SolarPanel - components: - - pos: 82.5,-24.5 - parent: 60 - type: Transform -- uid: 20172 - type: SolarPanel - components: - - pos: 83.5,-24.5 - parent: 60 - type: Transform -- uid: 20173 - type: SolarPanel - components: - - pos: 83.5,-22.5 - parent: 60 - type: Transform -- uid: 20174 - type: SolarPanel - components: - - pos: 82.5,-22.5 - parent: 60 - type: Transform -- uid: 20175 - type: SolarPanel - components: - - pos: 81.5,-22.5 - parent: 60 - type: Transform -- uid: 20176 - type: SolarPanel - components: - - pos: 80.5,-22.5 - parent: 60 - type: Transform -- uid: 20177 - type: SolarPanel - components: - - pos: 78.5,-20.5 - parent: 60 - type: Transform -- uid: 20178 - type: SolarPanel - components: - - pos: 77.5,-20.5 - parent: 60 - type: Transform -- uid: 20179 - type: SolarPanel - components: - - pos: 76.5,-20.5 - parent: 60 - type: Transform -- uid: 20180 - type: SolarPanel - components: - - pos: 75.5,-20.5 - parent: 60 - type: Transform -- uid: 20181 - type: SolarPanel - components: - - pos: 75.5,-18.5 - parent: 60 - type: Transform -- uid: 20182 - type: SolarPanel - components: - - pos: 76.5,-18.5 - parent: 60 - type: Transform -- uid: 20183 - type: SolarPanel - components: - - pos: 77.5,-18.5 - parent: 60 - type: Transform -- uid: 20184 - type: SolarPanel - components: - - pos: 78.5,-18.5 - parent: 60 - type: Transform -- uid: 20185 - type: SolarPanel - components: - - pos: 80.5,-18.5 - parent: 60 - type: Transform -- uid: 20186 - type: SolarPanel - components: - - pos: 81.5,-18.5 - parent: 60 - type: Transform -- uid: 20187 - type: SolarPanel - components: - - pos: 82.5,-18.5 - parent: 60 - type: Transform -- uid: 20188 - type: SolarPanel - components: - - pos: 83.5,-18.5 - parent: 60 - type: Transform -- uid: 20189 - type: SolarPanel - components: - - pos: 83.5,-20.5 - parent: 60 - type: Transform -- uid: 20190 - type: SolarPanel - components: - - pos: 82.5,-20.5 - parent: 60 - type: Transform -- uid: 20191 - type: SolarPanel - components: - - pos: 81.5,-20.5 - parent: 60 - type: Transform -- uid: 20192 - type: SolarPanel - components: - - pos: 80.5,-20.5 - parent: 60 - type: Transform -- uid: 20193 - type: SolarPanel - components: - - pos: 80.5,-14.5 - parent: 60 - type: Transform -- uid: 20194 - type: SolarPanel - components: - - pos: 81.5,-14.5 - parent: 60 - type: Transform -- uid: 20195 - type: SolarPanel - components: - - pos: 82.5,-14.5 - parent: 60 - type: Transform -- uid: 20196 - type: SolarPanel - components: - - pos: 83.5,-14.5 - parent: 60 - type: Transform -- uid: 20197 - type: SolarPanel - components: - - pos: 83.5,-12.5 - parent: 60 - type: Transform -- uid: 20198 - type: SolarPanel - components: - - pos: 82.5,-12.5 - parent: 60 - type: Transform -- uid: 20199 - type: SolarPanel - components: - - pos: 81.5,-12.5 - parent: 60 - type: Transform -- uid: 20200 - type: SolarPanel - components: - - pos: 80.5,-12.5 - parent: 60 - type: Transform -- uid: 20201 - type: SolarPanel - components: - - pos: 78.5,-14.5 - parent: 60 - type: Transform -- uid: 20202 - type: SolarPanel - components: - - pos: 77.5,-14.5 - parent: 60 - type: Transform -- uid: 20203 - type: SolarPanel - components: - - pos: 76.5,-14.5 - parent: 60 - type: Transform -- uid: 20204 - type: SolarPanel - components: - - pos: 75.5,-14.5 - parent: 60 - type: Transform -- uid: 20205 - type: SolarPanel - components: - - pos: 75.5,-12.5 - parent: 60 - type: Transform -- uid: 20206 - type: SolarPanel - components: - - pos: 76.5,-12.5 - parent: 60 - type: Transform -- uid: 20207 - type: SolarPanel - components: - - pos: 77.5,-12.5 - parent: 60 - type: Transform -- uid: 20208 - type: SolarPanel - components: - - pos: 78.5,-12.5 - parent: 60 - type: Transform -- uid: 20209 - type: SolarPanel - components: - - pos: 76.5,-26.5 - parent: 60 - type: Transform -- uid: 20210 - type: SolarPanelBroken - components: - - pos: 77.5,-26.5 - parent: 60 - type: Transform -- uid: 20211 - type: SolarPanel - components: - - pos: 75.5,-44.5 - parent: 60 - type: Transform -- uid: 20212 - type: SolarPanel - components: - - pos: 76.5,-44.5 - parent: 60 - type: Transform -- uid: 20213 - type: SolarPanel - components: - - pos: 77.5,-44.5 - parent: 60 - type: Transform -- uid: 20214 - type: SolarPanel - components: - - pos: 78.5,-44.5 - parent: 60 - type: Transform -- uid: 20215 - type: SolarPanel - components: - - pos: 75.5,-46.5 - parent: 60 - type: Transform -- uid: 20216 - type: SolarPanel - components: - - pos: 76.5,-46.5 - parent: 60 - type: Transform -- uid: 20217 - type: SolarPanel - components: - - pos: 77.5,-46.5 - parent: 60 - type: Transform -- uid: 20218 - type: SolarPanel - components: - - pos: 78.5,-46.5 - parent: 60 - type: Transform -- uid: 20219 - type: SolarPanel - components: - - pos: 80.5,-46.5 - parent: 60 - type: Transform -- uid: 20220 - type: SolarPanel - components: - - pos: 81.5,-46.5 - parent: 60 - type: Transform -- uid: 20221 - type: SolarPanel - components: - - pos: 82.5,-46.5 - parent: 60 - type: Transform -- uid: 20222 - type: SolarPanel - components: - - pos: 83.5,-46.5 - parent: 60 - type: Transform -- uid: 20223 - type: SolarPanel - components: - - pos: 80.5,-44.5 - parent: 60 - type: Transform -- uid: 20224 - type: SolarPanel - components: - - pos: 81.5,-44.5 - parent: 60 - type: Transform -- uid: 20225 - type: SolarPanel - components: - - pos: 82.5,-44.5 - parent: 60 - type: Transform -- uid: 20226 - type: SolarPanel - components: - - pos: 83.5,-44.5 - parent: 60 - type: Transform -- uid: 20227 - type: CableHV - components: - - pos: 75.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20228 - type: CableHV - components: - - pos: 76.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20229 - type: CableHV - components: - - pos: 77.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20230 - type: CableHV - components: - - pos: 78.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20231 - type: CableHV - components: - - pos: 80.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20232 - type: CableHV - components: - - pos: 81.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20233 - type: CableHV - components: - - pos: 82.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20234 - type: CableHV - components: - - pos: 83.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20235 - type: CableHV - components: - - pos: 83.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20236 - type: CableHV - components: - - pos: 82.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20237 - type: CableHV - components: - - pos: 81.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20238 - type: CableHV - components: - - pos: 80.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20239 - type: CableHV - components: - - pos: 78.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20240 - type: CableHV - components: - - pos: 77.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20241 - type: CableHV - components: - - pos: 76.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20242 - type: CableHV - components: - - pos: 75.5,-44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20243 - type: CableHV - components: - - pos: 75.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20244 - type: CableHV - components: - - pos: 76.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20245 - type: CableHV - components: - - pos: 77.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20246 - type: CableHV - components: - - pos: 78.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20247 - type: CableHV - components: - - pos: 75.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20248 - type: CableHV - components: - - pos: 76.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20249 - type: CableHV - components: - - pos: 77.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20250 - type: CableHV - components: - - pos: 78.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20251 - type: CableHV - components: - - pos: 80.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20252 - type: CableHV - components: - - pos: 81.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20253 - type: CableHV - components: - - pos: 82.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20254 - type: CableHV - components: - - pos: 83.5,-42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20255 - type: CableHV - components: - - pos: 83.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20256 - type: CableHV - components: - - pos: 82.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20257 - type: CableHV - components: - - pos: 81.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20258 - type: CableHV - components: - - pos: 80.5,-40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20259 - type: CableHV - components: - - pos: 67.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20260 - type: CableHV - components: - - pos: 68.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20261 - type: CableHV - components: - - pos: 69.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20262 - type: CableHV - components: - - pos: 70.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20263 - type: CableHV - components: - - pos: 72.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20264 - type: CableHV - components: - - pos: 73.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20265 - type: CableHV - components: - - pos: 76.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20266 - type: CableHV - components: - - pos: 77.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20267 - type: CableHV - components: - - pos: 78.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20268 - type: CableHV - components: - - pos: 79.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20269 - type: CableHV - components: - - pos: 83.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20270 - type: CableHV - components: - - pos: 82.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20271 - type: CableHV - components: - - pos: 81.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20272 - type: CableHV - components: - - pos: 80.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20273 - type: CableHV - components: - - pos: 78.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20274 - type: CableHV - components: - - pos: 77.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20275 - type: CableHV - components: - - pos: 76.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20276 - type: CableHV - components: - - pos: 75.5,-36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20277 - type: CableHV - components: - - pos: 75.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20278 - type: CableHV - components: - - pos: 76.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20279 - type: CableHV - components: - - pos: 77.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20280 - type: CableHV - components: - - pos: 78.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20281 - type: CableHV - components: - - pos: 80.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20282 - type: CableHV - components: - - pos: 81.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20283 - type: CableHV - components: - - pos: 82.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20284 - type: CableHV - components: - - pos: 83.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20285 - type: CableHV - components: - - pos: 79.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20286 - type: CableHV - components: - - pos: 79.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20287 - type: CableHV - components: - - pos: 79.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20288 - type: CableHV - components: - - pos: 79.5,-27.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20289 - type: CableHV - components: - - pos: 79.5,-26.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20290 - type: CableHV - components: - - pos: 79.5,-25.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20291 - type: CableHV - components: - - pos: 79.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20292 - type: CableHV - components: - - pos: 78.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20293 - type: CableHV - components: - - pos: 77.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20294 - type: CableHV - components: - - pos: 76.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20295 - type: CableHV - components: - - pos: 75.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20296 - type: CableHV - components: - - pos: 80.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20297 - type: CableHV - components: - - pos: 81.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20298 - type: CableHV - components: - - pos: 82.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20299 - type: CableHV - components: - - pos: 83.5,-24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20300 - type: CableHV - components: - - pos: 83.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20301 - type: CableHV - components: - - pos: 82.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20302 - type: CableHV - components: - - pos: 81.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20303 - type: CableHV - components: - - pos: 80.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20304 - type: CableHV - components: - - pos: 78.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20305 - type: CableHV - components: - - pos: 77.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20306 - type: CableHV - components: - - pos: 76.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20307 - type: CableHV - components: - - pos: 75.5,-22.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20308 - type: CableHV - components: - - pos: 78.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20309 - type: CableHV - components: - - pos: 77.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20310 - type: CableHV - components: - - pos: 76.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20311 - type: CableHV - components: - - pos: 75.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20312 - type: CableHV - components: - - pos: 75.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20313 - type: CableHV - components: - - pos: 76.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20314 - type: CableHV - components: - - pos: 77.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20315 - type: CableHV - components: - - pos: 78.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20316 - type: CableHV - components: - - pos: 80.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20317 - type: CableHV - components: - - pos: 81.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20318 - type: CableHV - components: - - pos: 82.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20319 - type: CableHV - components: - - pos: 83.5,-18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20320 - type: CableHV - components: - - pos: 83.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20321 - type: CableHV - components: - - pos: 82.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20322 - type: CableHV - components: - - pos: 81.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20323 - type: CableHV - components: - - pos: 80.5,-20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20324 - type: CableHV - components: - - pos: 80.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20325 - type: CableHV - components: - - pos: 81.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20326 - type: CableHV - components: - - pos: 82.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20327 - type: CableHV - components: - - pos: 83.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20328 - type: CableHV - components: - - pos: 83.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20329 - type: CableHV - components: - - pos: 82.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20330 - type: CableHV - components: - - pos: 81.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20331 - type: CableHV - components: - - pos: 80.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20332 - type: CableHV - components: - - pos: 78.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20333 - type: CableHV - components: - - pos: 77.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20334 - type: CableHV - components: - - pos: 76.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20335 - type: CableHV - components: - - pos: 75.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20336 - type: CableHV - components: - - pos: 75.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20337 - type: CableHV - components: - - pos: 76.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20338 - type: CableHV - components: - - pos: 77.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20339 - type: CableHV - components: - - pos: 78.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20340 - type: Catwalk - components: - - pos: 68.5,-38.5 - parent: 60 - type: Transform -- uid: 20341 - type: Catwalk - components: - - pos: 69.5,-38.5 - parent: 60 - type: Transform -- uid: 20342 - type: Catwalk - components: - - pos: 70.5,-38.5 - parent: 60 - type: Transform -- uid: 20343 - type: Catwalk - components: - - pos: 71.5,-38.5 - parent: 60 - type: Transform -- uid: 20344 - type: Catwalk - components: - - pos: 72.5,-38.5 - parent: 60 - type: Transform -- uid: 20345 - type: Catwalk - components: - - pos: 73.5,-38.5 - parent: 60 - type: Transform -- uid: 20346 - type: Catwalk - components: - - pos: 74.5,-38.5 - parent: 60 - type: Transform -- uid: 20347 - type: Catwalk - components: - - pos: 75.5,-38.5 - parent: 60 - type: Transform -- uid: 20348 - type: Catwalk - components: - - pos: 76.5,-38.5 - parent: 60 - type: Transform -- uid: 20349 - type: Catwalk - components: - - pos: 77.5,-38.5 - parent: 60 - type: Transform -- uid: 20350 - type: Catwalk - components: - - pos: 78.5,-38.5 - parent: 60 - type: Transform -- uid: 20351 - type: Catwalk - components: - - pos: 79.5,-38.5 - parent: 60 - type: Transform -- uid: 20352 - type: Catwalk - components: - - pos: 79.5,-39.5 - parent: 60 - type: Transform -- uid: 20353 - type: Catwalk - components: - - pos: 79.5,-40.5 - parent: 60 - type: Transform -- uid: 20354 - type: Catwalk - components: - - pos: 79.5,-41.5 - parent: 60 - type: Transform -- uid: 20355 - type: Catwalk - components: - - pos: 79.5,-42.5 - parent: 60 - type: Transform -- uid: 20356 - type: Catwalk - components: - - pos: 79.5,-43.5 - parent: 60 - type: Transform -- uid: 20357 - type: Catwalk - components: - - pos: 79.5,-44.5 - parent: 60 - type: Transform -- uid: 20358 - type: Catwalk - components: - - pos: 79.5,-45.5 - parent: 60 - type: Transform -- uid: 20359 - type: Catwalk - components: - - pos: 79.5,-46.5 - parent: 60 - type: Transform -- uid: 20360 - type: Catwalk - components: - - pos: 79.5,-37.5 - parent: 60 - type: Transform -- uid: 20361 - type: Catwalk - components: - - pos: 79.5,-36.5 - parent: 60 - type: Transform -- uid: 20362 - type: Catwalk - components: - - pos: 79.5,-35.5 - parent: 60 - type: Transform -- uid: 20363 - type: Catwalk - components: - - pos: 79.5,-34.5 - parent: 60 - type: Transform -- uid: 20364 - type: Catwalk - components: - - pos: 79.5,-33.5 - parent: 60 - type: Transform -- uid: 20365 - type: Catwalk - components: - - pos: 79.5,-26.5 - parent: 60 - type: Transform -- uid: 20366 - type: Catwalk - components: - - pos: 79.5,-25.5 - parent: 60 - type: Transform -- uid: 20367 - type: Catwalk - components: - - pos: 79.5,-24.5 - parent: 60 - type: Transform -- uid: 20368 - type: Catwalk - components: - - pos: 79.5,-23.5 - parent: 60 - type: Transform -- uid: 20369 - type: Catwalk - components: - - pos: 79.5,-22.5 - parent: 60 - type: Transform -- uid: 20370 - type: Catwalk - components: - - pos: 79.5,-21.5 - parent: 60 - type: Transform -- uid: 20371 - type: Catwalk - components: - - pos: 79.5,-20.5 - parent: 60 - type: Transform -- uid: 20372 - type: Catwalk - components: - - pos: 79.5,-19.5 - parent: 60 - type: Transform -- uid: 20373 - type: Catwalk - components: - - pos: 79.5,-18.5 - parent: 60 - type: Transform -- uid: 20374 - type: Catwalk - components: - - pos: 79.5,-17.5 - parent: 60 - type: Transform -- uid: 20375 - type: Catwalk - components: - - pos: 79.5,-16.5 - parent: 60 - type: Transform -- uid: 20376 - type: Catwalk - components: - - pos: 79.5,-15.5 - parent: 60 - type: Transform -- uid: 20377 - type: Catwalk - components: - - pos: 79.5,-14.5 - parent: 60 - type: Transform -- uid: 20378 - type: Catwalk - components: - - pos: 79.5,-13.5 - parent: 60 - type: Transform -- uid: 20379 - type: Catwalk - components: - - pos: 79.5,-12.5 - parent: 60 - type: Transform -- uid: 20380 - type: Catwalk - components: - - pos: 79.5,-31.5 - parent: 60 - type: Transform -- uid: 20381 - type: Catwalk - components: - - pos: 78.5,-16.5 - parent: 60 - type: Transform -- uid: 20382 - type: Catwalk - components: - - pos: 77.5,-16.5 - parent: 60 - type: Transform -- uid: 20383 - type: Catwalk - components: - - pos: 76.5,-16.5 - parent: 60 - type: Transform -- uid: 20384 - type: Catwalk - components: - - pos: 74.5,-16.5 - parent: 60 - type: Transform -- uid: 20385 - type: Catwalk - components: - - pos: 73.5,-16.5 - parent: 60 - type: Transform -- uid: 20386 - type: Catwalk - components: - - pos: 70.5,-16.5 - parent: 60 - type: Transform -- uid: 20387 - type: Grille - components: - - pos: 86.5,-34.5 - parent: 60 - type: Transform -- uid: 20388 - type: Grille - components: - - pos: 86.5,-35.5 - parent: 60 - type: Transform -- uid: 20389 - type: Grille - components: - - pos: 86.5,-36.5 - parent: 60 - type: Transform -- uid: 20390 - type: Grille - components: - - pos: 86.5,-37.5 - parent: 60 - type: Transform -- uid: 20391 - type: Grille - components: - - pos: 86.5,-40.5 - parent: 60 - type: Transform -- uid: 20392 - type: Grille - components: - - pos: 86.5,-41.5 - parent: 60 - type: Transform -- uid: 20393 - type: Grille - components: - - pos: 86.5,-42.5 - parent: 60 - type: Transform -- uid: 20394 - type: Grille - components: - - pos: 86.5,-43.5 - parent: 60 - type: Transform -- uid: 20395 - type: Grille - components: - - pos: 86.5,-44.5 - parent: 60 - type: Transform -- uid: 20396 - type: Grille - components: - - pos: 86.5,-45.5 - parent: 60 - type: Transform -- uid: 20397 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 86.5,-46.5 - parent: 60 - type: Transform -- uid: 20398 - type: Grille - components: - - pos: 86.5,-47.5 - parent: 60 - type: Transform -- uid: 20399 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 86.5,-24.5 - parent: 60 - type: Transform -- uid: 20400 - type: Grille - components: - - pos: 86.5,-23.5 - parent: 60 - type: Transform -- uid: 20401 - type: Grille - components: - - pos: 86.5,-22.5 - parent: 60 - type: Transform -- uid: 20402 - type: Grille - components: - - pos: 86.5,-21.5 - parent: 60 - type: Transform -- uid: 20403 - type: Grille - components: - - pos: 86.5,-20.5 - parent: 60 - type: Transform -- uid: 20404 - type: Grille - components: - - pos: 86.5,-19.5 - parent: 60 - type: Transform -- uid: 20405 - type: Grille - components: - - pos: 86.5,-18.5 - parent: 60 - type: Transform -- uid: 20406 - type: Grille - components: - - pos: 86.5,-17.5 - parent: 60 - type: Transform -- uid: 20407 - type: GrilleBroken - components: - - pos: 86.5,-39.5 - parent: 60 - type: Transform -- uid: 20408 - type: Grille - components: - - pos: 86.5,-15.5 - parent: 60 - type: Transform -- uid: 20409 - type: Grille - components: - - pos: 86.5,-14.5 - parent: 60 - type: Transform -- uid: 20410 - type: Grille - components: - - pos: 86.5,-13.5 - parent: 60 - type: Transform -- uid: 20411 - type: Grille - components: - - pos: 86.5,-12.5 - parent: 60 - type: Transform -- uid: 20412 - type: GrilleBroken - components: - - pos: 86.5,-33.5 - parent: 60 - type: Transform -- uid: 20413 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 86.5,-16.5 - parent: 60 - type: Transform -- uid: 20414 - type: GrilleBroken - components: - - pos: 86.5,-11.5 - parent: 60 - type: Transform -- uid: 20415 - type: PartRodMetal - components: - - pos: 80.57176,-32.426075 - parent: 60 - type: Transform -- uid: 20416 - type: PartRodMetal - components: - - pos: 68.478806,-13.493814 - parent: 60 - type: Transform -- uid: 20417 - type: SolarTracker - components: - - pos: 81.5,-38.5 - parent: 60 - type: Transform -- uid: 20418 - type: CableHV - components: - - pos: 80.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20419 - type: CableHV - components: - - pos: 81.5,-38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20420 - type: CrateEngineeringCableHV - components: - - pos: 63.5,-39.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 20421 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 62.5,-38.5 - parent: 60 - type: Transform -- uid: 20422 - type: ShardGlass - components: - - pos: 78.61015,-27.531363 - parent: 60 - type: Transform -- uid: 20423 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 62.5,-39.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20424 - type: SignElectricalMed - components: - - pos: 60.5,-37.5 - parent: 60 - type: Transform -- uid: 20426 - type: Grille - components: - - pos: 15.5,37.5 - parent: 60 - type: Transform -- uid: 20427 - type: Grille - components: - - pos: 15.5,38.5 - parent: 60 - type: Transform -- uid: 20428 - type: Grille - components: - - pos: 15.5,39.5 - parent: 60 - type: Transform -- uid: 20429 - type: Grille - components: - - pos: 15.5,40.5 - parent: 60 - type: Transform -- uid: 20430 - type: Grille - components: - - pos: 15.5,45.5 - parent: 60 - type: Transform -- uid: 20431 - type: Grille - components: - - pos: 15.5,49.5 - parent: 60 - type: Transform -- uid: 20432 - type: Grille - components: - - pos: 15.5,50.5 - parent: 60 - type: Transform -- uid: 20433 - type: Grille - components: - - pos: 15.5,55.5 - parent: 60 - type: Transform -- uid: 20434 - type: Grille - components: - - pos: 15.5,54.5 - parent: 60 - type: Transform -- uid: 20435 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 15.5,53.5 - parent: 60 - type: Transform -- uid: 20436 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 15.5,44.5 - parent: 60 - type: Transform -- uid: 20437 - type: GrilleBroken - components: - - pos: 15.5,41.5 - parent: 60 - type: Transform -- uid: 20438 - type: Catwalk - components: - - pos: 17.5,32.5 - parent: 60 - type: Transform -- uid: 20439 - type: Catwalk - components: - - pos: 16.5,32.5 - parent: 60 - type: Transform -- uid: 20440 - type: Catwalk - components: - - pos: 15.5,32.5 - parent: 60 - type: Transform -- uid: 20441 - type: Catwalk - components: - - pos: 14.5,32.5 - parent: 60 - type: Transform -- uid: 20442 - type: Catwalk - components: - - pos: 13.5,32.5 - parent: 60 - type: Transform -- uid: 20443 - type: Catwalk - components: - - pos: 13.5,33.5 - parent: 60 - type: Transform -- uid: 20444 - type: Catwalk - components: - - pos: 13.5,34.5 - parent: 60 - type: Transform -- uid: 20445 - type: Catwalk - components: - - pos: 13.5,35.5 - parent: 60 - type: Transform -- uid: 20446 - type: Catwalk - components: - - pos: 13.5,36.5 - parent: 60 - type: Transform -- uid: 20447 - type: Catwalk - components: - - pos: 13.5,37.5 - parent: 60 - type: Transform -- uid: 20448 - type: Catwalk - components: - - pos: 13.5,38.5 - parent: 60 - type: Transform -- uid: 20449 - type: Catwalk - components: - - pos: 13.5,39.5 - parent: 60 - type: Transform -- uid: 20450 - type: Catwalk - components: - - pos: 13.5,40.5 - parent: 60 - type: Transform -- uid: 20451 - type: Catwalk - components: - - pos: 13.5,41.5 - parent: 60 - type: Transform -- uid: 20452 - type: Catwalk - components: - - pos: 13.5,42.5 - parent: 60 - type: Transform -- uid: 20453 - type: Catwalk - components: - - pos: 13.5,43.5 - parent: 60 - type: Transform -- uid: 20454 - type: Catwalk - components: - - pos: 13.5,44.5 - parent: 60 - type: Transform -- uid: 20455 - type: Catwalk - components: - - pos: 13.5,45.5 - parent: 60 - type: Transform -- uid: 20456 - type: Catwalk - components: - - pos: 13.5,46.5 - parent: 60 - type: Transform -- uid: 20457 - type: Catwalk - components: - - pos: 13.5,47.5 - parent: 60 - type: Transform -- uid: 20458 - type: Catwalk - components: - - pos: 13.5,48.5 - parent: 60 - type: Transform -- uid: 20459 - type: Catwalk - components: - - pos: 13.5,49.5 - parent: 60 - type: Transform -- uid: 20460 - type: Catwalk - components: - - pos: 13.5,50.5 - parent: 60 - type: Transform -- uid: 20461 - type: Catwalk - components: - - pos: 13.5,51.5 - parent: 60 - type: Transform -- uid: 20462 - type: Catwalk - components: - - pos: 13.5,52.5 - parent: 60 - type: Transform -- uid: 20463 - type: Catwalk - components: - - pos: 13.5,53.5 - parent: 60 - type: Transform -- uid: 20464 - type: Catwalk - components: - - pos: 13.5,54.5 - parent: 60 - type: Transform -- uid: 20465 - type: Catwalk - components: - - pos: 13.5,55.5 - parent: 60 - type: Transform -- uid: 20466 - type: Catwalk - components: - - pos: 13.5,56.5 - parent: 60 - type: Transform -- uid: 20467 - type: Catwalk - components: - - pos: 13.5,57.5 - parent: 60 - type: Transform -- uid: 20468 - type: Catwalk - components: - - pos: 13.5,58.5 - parent: 60 - type: Transform -- uid: 20469 - type: Catwalk - components: - - pos: 13.5,59.5 - parent: 60 - type: Transform -- uid: 20470 - type: Catwalk - components: - - pos: 12.5,59.5 - parent: 60 - type: Transform -- uid: 20471 - type: Catwalk - components: - - pos: 11.5,59.5 - parent: 60 - type: Transform -- uid: 20472 - type: Catwalk - components: - - pos: 10.5,59.5 - parent: 60 - type: Transform -- uid: 20473 - type: Catwalk - components: - - pos: 9.5,59.5 - parent: 60 - type: Transform -- uid: 20474 - type: Catwalk - components: - - pos: 8.5,59.5 - parent: 60 - type: Transform -- uid: 20475 - type: Catwalk - components: - - pos: 7.5,59.5 - parent: 60 - type: Transform -- uid: 20476 - type: Catwalk - components: - - pos: 6.5,59.5 - parent: 60 - type: Transform -- uid: 20477 - type: Catwalk - components: - - pos: 5.5,59.5 - parent: 60 - type: Transform -- uid: 20478 - type: Catwalk - components: - - pos: 4.5,59.5 - parent: 60 - type: Transform -- uid: 20479 - type: Catwalk - components: - - pos: 3.5,59.5 - parent: 60 - type: Transform -- uid: 20480 - type: Catwalk - components: - - pos: 2.5,59.5 - parent: 60 - type: Transform -- uid: 20481 - type: Catwalk - components: - - pos: 1.5,59.5 - parent: 60 - type: Transform -- uid: 20482 - type: Catwalk - components: - - pos: 0.5,59.5 - parent: 60 - type: Transform -- uid: 20483 - type: Catwalk - components: - - pos: -0.5,59.5 - parent: 60 - type: Transform -- uid: 20484 - type: Catwalk - components: - - pos: -1.5,59.5 - parent: 60 - type: Transform -- uid: 20485 - type: Catwalk - components: - - pos: -2.5,59.5 - parent: 60 - type: Transform -- uid: 20486 - type: Catwalk - components: - - pos: -3.5,59.5 - parent: 60 - type: Transform -- uid: 20487 - type: Catwalk - components: - - pos: -4.5,59.5 - parent: 60 - type: Transform -- uid: 20488 - type: Catwalk - components: - - pos: -5.5,59.5 - parent: 60 - type: Transform -- uid: 20489 - type: Catwalk - components: - - pos: -6.5,59.5 - parent: 60 - type: Transform -- uid: 20490 - type: Catwalk - components: - - pos: -7.5,59.5 - parent: 60 - type: Transform -- uid: 20491 - type: Catwalk - components: - - pos: -8.5,59.5 - parent: 60 - type: Transform -- uid: 20492 - type: Catwalk - components: - - pos: -9.5,59.5 - parent: 60 - type: Transform -- uid: 20493 - type: Catwalk - components: - - pos: -10.5,59.5 - parent: 60 - type: Transform -- uid: 20494 - type: Catwalk - components: - - pos: -11.5,59.5 - parent: 60 - type: Transform -- uid: 20495 - type: Catwalk - components: - - pos: -12.5,59.5 - parent: 60 - type: Transform -- uid: 20496 - type: Grille - components: - - pos: -4.5,61.5 - parent: 60 - type: Transform -- uid: 20497 - type: Grille - components: - - pos: -5.5,61.5 - parent: 60 - type: Transform -- uid: 20498 - type: Grille - components: - - pos: -6.5,61.5 - parent: 60 - type: Transform -- uid: 20499 - type: Grille - components: - - pos: 2.5,61.5 - parent: 60 - type: Transform -- uid: 20500 - type: Grille - components: - - pos: 3.5,61.5 - parent: 60 - type: Transform -- uid: 20501 - type: Grille - components: - - pos: 4.5,61.5 - parent: 60 - type: Transform -- uid: 20502 - type: Grille - components: - - pos: 5.5,61.5 - parent: 60 - type: Transform -- uid: 20503 - type: Grille - components: - - pos: 7.5,61.5 - parent: 60 - type: Transform -- uid: 20504 - type: GrilleBroken - components: - - pos: 6.5,61.5 - parent: 60 - type: Transform -- uid: 20505 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -7.5,61.5 - parent: 60 - type: Transform -- uid: 20506 - type: GrilleBroken - components: - - pos: -9.5,61.5 - parent: 60 - type: Transform -- uid: 20507 - type: WallReinforced - components: - - pos: -23.5,62.5 - parent: 60 - type: Transform -- uid: 20508 - type: WallReinforced - components: - - pos: -24.5,62.5 - parent: 60 - type: Transform -- uid: 20509 - type: WallReinforced - components: - - pos: -26.5,62.5 - parent: 60 - type: Transform -- uid: 20510 - type: WallReinforced - components: - - pos: -27.5,62.5 - parent: 60 - type: Transform -- uid: 20511 - type: AtmosFixBlockerMarker - components: - - pos: -25.5,61.5 - parent: 60 - type: Transform -- uid: 20512 - type: ReinforcedWindow - components: - - pos: -27.5,60.5 - parent: 60 - type: Transform -- uid: 20513 - type: AtmosFixBlockerMarker - components: - - pos: -26.5,60.5 - parent: 60 - type: Transform -- uid: 20514 - type: WallReinforced - components: - - pos: -23.5,59.5 - parent: 60 - type: Transform -- uid: 20515 - type: ReinforcedWindow - components: - - pos: -23.5,60.5 - parent: 60 - type: Transform -- uid: 20516 - type: WallReinforced - components: - - pos: -27.5,61.5 - parent: 60 - type: Transform -- uid: 20517 - type: SMESBasic - components: - - name: North Solar SMES - type: MetaData - - pos: -26.5,61.5 - parent: 60 - type: Transform -- uid: 20518 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: -25.5,61.5 - parent: 60 - type: Transform -- uid: 20519 - type: CableHV - components: - - pos: -25.5,61.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20520 - type: CableHV - components: - - pos: -25.5,62.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20521 - type: CableHV - components: - - pos: -26.5,61.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20522 - type: CableHV - components: - - pos: -26.5,60.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20523 - type: CableHV - components: - - pos: -26.5,59.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20524 - type: CableHV - components: - - pos: -25.5,59.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20525 - type: CableHV - components: - - pos: -25.5,58.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20526 - type: CableHV - components: - - pos: -25.5,57.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20527 - type: CableHV - components: - - pos: -25.5,56.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20528 - type: CableHV - components: - - pos: -25.5,55.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20529 - type: CableHV - components: - - pos: -25.5,54.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20530 - type: CableHV - components: - - pos: -25.5,53.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20531 - type: CableHV - components: - - pos: -25.5,52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20532 - type: CableHV - components: - - pos: -25.5,51.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20533 - type: CableHV - components: - - pos: -25.5,50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20534 - type: CableHV - components: - - pos: -25.5,49.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20535 - type: CableHV - components: - - pos: -25.5,48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20536 - type: CableHV - components: - - pos: -25.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20537 - type: CableHV - components: - - pos: -25.5,46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20538 - type: CableHV - components: - - pos: -25.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20539 - type: CableHV - components: - - pos: -25.5,44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20540 - type: CableHV - components: - - pos: -25.5,43.5 - parent: 60 - type: Transform -- uid: 20541 - type: CableHV - components: - - pos: -25.5,42.5 - parent: 60 - type: Transform -- uid: 20542 - type: CableHV - components: - - pos: -24.5,42.5 - parent: 60 - type: Transform -- uid: 20543 - type: CableHV - components: - - pos: -23.5,42.5 - parent: 60 - type: Transform -- uid: 20544 - type: AtmosFixBlockerMarker - components: - - pos: -26.5,61.5 - parent: 60 - type: Transform -- uid: 20545 - type: Grille - components: - - pos: -27.5,60.5 - parent: 60 - type: Transform -- uid: 20546 - type: AtmosFixBlockerMarker - components: - - pos: -26.5,59.5 - parent: 60 - type: Transform -- uid: 20547 - type: WallReinforced - components: - - pos: -23.5,61.5 - parent: 60 - type: Transform -- uid: 20548 - type: Grille - components: - - pos: -23.5,60.5 - parent: 60 - type: Transform -- uid: 20549 - type: WallReinforced - components: - - pos: -27.5,59.5 - parent: 60 - type: Transform -- uid: 20550 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -25.5,58.5 - parent: 60 - type: Transform -- uid: 20551 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -25.5,62.5 - parent: 60 - type: Transform -- uid: 20552 - type: SubstationBasic - components: - - name: North Solar Sub - type: MetaData - - pos: -26.5,59.5 - parent: 60 - type: Transform -- uid: 20553 - type: ComputerSolarControl - components: - - rot: 1.5707963267948966 rad - pos: -26.5,60.5 - parent: 60 - type: Transform -- uid: 20554 - type: APCBasic - components: - - pos: -24.5,62.5 - parent: 60 - type: Transform -- uid: 20555 - type: CableMV - components: - - pos: -26.5,59.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20556 - type: CableMV - components: - - pos: -25.5,59.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20557 - type: CableMV - components: - - pos: -24.5,59.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20558 - type: CableMV - components: - - pos: -24.5,60.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20559 - type: CableMV - components: - - pos: -24.5,61.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20560 - type: CableMV - components: - - pos: -24.5,62.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20561 - type: CableApcExtension - components: - - pos: -24.5,62.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20562 - type: CableApcExtension - components: - - pos: -24.5,61.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20563 - type: CableApcExtension - components: - - pos: -24.5,60.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20564 - type: CableApcExtension - components: - - pos: -24.5,59.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20565 - type: CableApcExtension - components: - - pos: -25.5,60.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20566 - type: PoweredSmallLight - components: - - pos: -24.5,61.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20567 - type: AtmosFixBlockerMarker - components: - - pos: -25.5,60.5 - parent: 60 - type: Transform -- uid: 20568 - type: AtmosFixBlockerMarker - components: - - pos: -25.5,59.5 - parent: 60 - type: Transform -- uid: 20569 - type: AtmosFixBlockerMarker - components: - - pos: -24.5,59.5 - parent: 60 - type: Transform -- uid: 20570 - type: AtmosFixBlockerMarker - components: - - pos: -24.5,60.5 - parent: 60 - type: Transform -- uid: 20571 - type: AtmosFixBlockerMarker - components: - - pos: -24.5,61.5 - parent: 60 - type: Transform -- uid: 20572 - type: Catwalk - components: - - pos: -25.5,51.5 - parent: 60 - type: Transform -- uid: 20573 - type: Catwalk - components: - - pos: -25.5,52.5 - parent: 60 - type: Transform -- uid: 20574 - type: Catwalk - components: - - pos: -25.5,53.5 - parent: 60 - type: Transform -- uid: 20575 - type: Catwalk - components: - - pos: -25.5,54.5 - parent: 60 - type: Transform -- uid: 20576 - type: Catwalk - components: - - pos: -25.5,55.5 - parent: 60 - type: Transform -- uid: 20577 - type: Catwalk - components: - - pos: -25.5,56.5 - parent: 60 - type: Transform -- uid: 20578 - type: Catwalk - components: - - pos: -25.5,57.5 - parent: 60 - type: Transform -- uid: 20579 - type: Catwalk - components: - - pos: -24.5,57.5 - parent: 60 - type: Transform -- uid: 20580 - type: Catwalk - components: - - pos: -23.5,57.5 - parent: 60 - type: Transform -- uid: 20581 - type: Catwalk - components: - - pos: -22.5,57.5 - parent: 60 - type: Transform -- uid: 20582 - type: Catwalk - components: - - pos: -21.5,57.5 - parent: 60 - type: Transform -- uid: 20583 - type: Catwalk - components: - - pos: -20.5,57.5 - parent: 60 - type: Transform -- uid: 20584 - type: Catwalk - components: - - pos: -19.5,57.5 - parent: 60 - type: Transform -- uid: 20585 - type: Catwalk - components: - - pos: -18.5,57.5 - parent: 60 - type: Transform -- uid: 20586 - type: Catwalk - components: - - pos: -17.5,57.5 - parent: 60 - type: Transform -- uid: 20587 - type: Catwalk - components: - - pos: -16.5,57.5 - parent: 60 - type: Transform -- uid: 20588 - type: Catwalk - components: - - pos: -15.5,57.5 - parent: 60 - type: Transform -- uid: 20589 - type: Catwalk - components: - - pos: -14.5,57.5 - parent: 60 - type: Transform -- uid: 20590 - type: Catwalk - components: - - pos: -13.5,57.5 - parent: 60 - type: Transform -- uid: 20591 - type: Catwalk - components: - - pos: -12.5,57.5 - parent: 60 - type: Transform -- uid: 20592 - type: Catwalk - components: - - pos: -12.5,58.5 - parent: 60 - type: Transform -- uid: 20593 - type: Grille - components: - - pos: -24.5,84.5 - parent: 60 - type: Transform -- uid: 20594 - type: SolarPanel - components: - - pos: -31.5,79.5 - parent: 60 - type: Transform -- uid: 20595 - type: SolarPanel - components: - - pos: -30.5,79.5 - parent: 60 - type: Transform -- uid: 20596 - type: SolarPanel - components: - - pos: -29.5,79.5 - parent: 60 - type: Transform -- uid: 20597 - type: SolarPanel - components: - - pos: -28.5,79.5 - parent: 60 - type: Transform -- uid: 20598 - type: SolarPanel - components: - - pos: -27.5,79.5 - parent: 60 - type: Transform -- uid: 20599 - type: SolarPanel - components: - - pos: -26.5,79.5 - parent: 60 - type: Transform -- uid: 20600 - type: SolarPanel - components: - - pos: -26.5,77.5 - parent: 60 - type: Transform -- uid: 20601 - type: SolarPanel - components: - - pos: -27.5,77.5 - parent: 60 - type: Transform -- uid: 20602 - type: SolarPanel - components: - - pos: -28.5,77.5 - parent: 60 - type: Transform -- uid: 20603 - type: SolarPanel - components: - - pos: -29.5,77.5 - parent: 60 - type: Transform -- uid: 20604 - type: SolarPanel - components: - - pos: -30.5,77.5 - parent: 60 - type: Transform -- uid: 20605 - type: SolarPanel - components: - - pos: -31.5,77.5 - parent: 60 - type: Transform -- uid: 20606 - type: SolarPanel - components: - - pos: -24.5,79.5 - parent: 60 - type: Transform -- uid: 20607 - type: SolarPanel - components: - - pos: -23.5,79.5 - parent: 60 - type: Transform -- uid: 20608 - type: SolarPanel - components: - - pos: -22.5,79.5 - parent: 60 - type: Transform -- uid: 20609 - type: SolarPanel - components: - - pos: -21.5,79.5 - parent: 60 - type: Transform -- uid: 20610 - type: SolarPanel - components: - - pos: -20.5,79.5 - parent: 60 - type: Transform -- uid: 20611 - type: SolarPanel - components: - - pos: -19.5,79.5 - parent: 60 - type: Transform -- uid: 20612 - type: SolarPanel - components: - - pos: -19.5,77.5 - parent: 60 - type: Transform -- uid: 20613 - type: SolarPanel - components: - - pos: -20.5,77.5 - parent: 60 - type: Transform -- uid: 20614 - type: SolarPanel - components: - - pos: -21.5,77.5 - parent: 60 - type: Transform -- uid: 20615 - type: SolarPanel - components: - - pos: -22.5,77.5 - parent: 60 - type: Transform -- uid: 20616 - type: SolarPanel - components: - - pos: -23.5,77.5 - parent: 60 - type: Transform -- uid: 20617 - type: SolarPanel - components: - - pos: -24.5,77.5 - parent: 60 - type: Transform -- uid: 20618 - type: SolarPanel - components: - - pos: -24.5,75.5 - parent: 60 - type: Transform -- uid: 20619 - type: SolarPanel - components: - - pos: -23.5,75.5 - parent: 60 - type: Transform -- uid: 20620 - type: SolarPanel - components: - - pos: -22.5,75.5 - parent: 60 - type: Transform -- uid: 20621 - type: SolarPanel - components: - - pos: -21.5,75.5 - parent: 60 - type: Transform -- uid: 20622 - type: SolarPanel - components: - - pos: -20.5,75.5 - parent: 60 - type: Transform -- uid: 20623 - type: SolarPanel - components: - - pos: -19.5,75.5 - parent: 60 - type: Transform -- uid: 20624 - type: SolarPanel - components: - - pos: -19.5,73.5 - parent: 60 - type: Transform -- uid: 20625 - type: SolarPanel - components: - - pos: -20.5,73.5 - parent: 60 - type: Transform -- uid: 20626 - type: SolarPanel - components: - - pos: -21.5,73.5 - parent: 60 - type: Transform -- uid: 20627 - type: SolarPanel - components: - - pos: -22.5,73.5 - parent: 60 - type: Transform -- uid: 20628 - type: SolarPanel - components: - - pos: -23.5,73.5 - parent: 60 - type: Transform -- uid: 20629 - type: SolarPanel - components: - - pos: -24.5,73.5 - parent: 60 - type: Transform -- uid: 20630 - type: SolarPanel - components: - - pos: -26.5,75.5 - parent: 60 - type: Transform -- uid: 20631 - type: SolarPanel - components: - - pos: -27.5,75.5 - parent: 60 - type: Transform -- uid: 20632 - type: SolarPanel - components: - - pos: -28.5,75.5 - parent: 60 - type: Transform -- uid: 20633 - type: SolarPanel - components: - - pos: -29.5,75.5 - parent: 60 - type: Transform -- uid: 20634 - type: SolarPanel - components: - - pos: -30.5,75.5 - parent: 60 - type: Transform -- uid: 20635 - type: SolarPanel - components: - - pos: -31.5,75.5 - parent: 60 - type: Transform -- uid: 20636 - type: SolarPanel - components: - - pos: -31.5,73.5 - parent: 60 - type: Transform -- uid: 20637 - type: SolarPanel - components: - - pos: -30.5,73.5 - parent: 60 - type: Transform -- uid: 20638 - type: SolarPanel - components: - - pos: -29.5,73.5 - parent: 60 - type: Transform -- uid: 20639 - type: SolarPanel - components: - - pos: -28.5,73.5 - parent: 60 - type: Transform -- uid: 20640 - type: SolarPanel - components: - - pos: -27.5,73.5 - parent: 60 - type: Transform -- uid: 20641 - type: SolarPanel - components: - - pos: -26.5,73.5 - parent: 60 - type: Transform -- uid: 20642 - type: SolarPanel - components: - - pos: -24.5,71.5 - parent: 60 - type: Transform -- uid: 20643 - type: SolarPanel - components: - - pos: -23.5,71.5 - parent: 60 - type: Transform -- uid: 20644 - type: SolarPanel - components: - - pos: -22.5,71.5 - parent: 60 - type: Transform -- uid: 20645 - type: SolarPanel - components: - - pos: -21.5,71.5 - parent: 60 - type: Transform -- uid: 20646 - type: SolarPanel - components: - - pos: -20.5,71.5 - parent: 60 - type: Transform -- uid: 20647 - type: SolarPanel - components: - - pos: -19.5,71.5 - parent: 60 - type: Transform -- uid: 20648 - type: SolarPanel - components: - - pos: -19.5,69.5 - parent: 60 - type: Transform -- uid: 20649 - type: SolarPanel - components: - - pos: -20.5,69.5 - parent: 60 - type: Transform -- uid: 20650 - type: SolarPanel - components: - - pos: -21.5,69.5 - parent: 60 - type: Transform -- uid: 20651 - type: SolarPanel - components: - - pos: -22.5,69.5 - parent: 60 - type: Transform -- uid: 20652 - type: SolarPanel - components: - - pos: -23.5,69.5 - parent: 60 - type: Transform -- uid: 20653 - type: SolarPanel - components: - - pos: -24.5,69.5 - parent: 60 - type: Transform -- uid: 20654 - type: SolarPanel - components: - - pos: -26.5,71.5 - parent: 60 - type: Transform -- uid: 20655 - type: SolarPanel - components: - - pos: -27.5,71.5 - parent: 60 - type: Transform -- uid: 20656 - type: SolarPanel - components: - - pos: -28.5,71.5 - parent: 60 - type: Transform -- uid: 20657 - type: SolarPanel - components: - - pos: -29.5,71.5 - parent: 60 - type: Transform -- uid: 20658 - type: SolarPanel - components: - - pos: -30.5,71.5 - parent: 60 - type: Transform -- uid: 20659 - type: SolarPanel - components: - - pos: -31.5,71.5 - parent: 60 - type: Transform -- uid: 20660 - type: SolarPanel - components: - - pos: -31.5,69.5 - parent: 60 - type: Transform -- uid: 20661 - type: SolarPanel - components: - - pos: -30.5,69.5 - parent: 60 - type: Transform -- uid: 20662 - type: SolarPanel - components: - - pos: -29.5,69.5 - parent: 60 - type: Transform -- uid: 20663 - type: SolarPanel - components: - - pos: -28.5,69.5 - parent: 60 - type: Transform -- uid: 20664 - type: SolarPanel - components: - - pos: -27.5,69.5 - parent: 60 - type: Transform -- uid: 20665 - type: SolarPanel - components: - - pos: -26.5,69.5 - parent: 60 - type: Transform -- uid: 20666 - type: SolarPanel - components: - - pos: -26.5,67.5 - parent: 60 - type: Transform -- uid: 20667 - type: SolarPanel - components: - - pos: -27.5,67.5 - parent: 60 - type: Transform -- uid: 20668 - type: SolarPanel - components: - - pos: -28.5,67.5 - parent: 60 - type: Transform -- uid: 20669 - type: SolarPanel - components: - - pos: -29.5,67.5 - parent: 60 - type: Transform -- uid: 20670 - type: SolarPanel - components: - - pos: -30.5,67.5 - parent: 60 - type: Transform -- uid: 20671 - type: SolarPanel - components: - - pos: -31.5,67.5 - parent: 60 - type: Transform -- uid: 20672 - type: SolarPanel - components: - - pos: -31.5,65.5 - parent: 60 - type: Transform -- uid: 20673 - type: SolarPanel - components: - - pos: -30.5,65.5 - parent: 60 - type: Transform -- uid: 20674 - type: SolarPanel - components: - - pos: -29.5,65.5 - parent: 60 - type: Transform -- uid: 20675 - type: SolarPanel - components: - - pos: -28.5,65.5 - parent: 60 - type: Transform -- uid: 20676 - type: SolarPanel - components: - - pos: -27.5,65.5 - parent: 60 - type: Transform -- uid: 20677 - type: SolarPanel - components: - - pos: -26.5,65.5 - parent: 60 - type: Transform -- uid: 20678 - type: SolarPanel - components: - - pos: -24.5,65.5 - parent: 60 - type: Transform -- uid: 20679 - type: SolarPanel - components: - - pos: -23.5,65.5 - parent: 60 - type: Transform -- uid: 20680 - type: SolarPanel - components: - - pos: -22.5,65.5 - parent: 60 - type: Transform -- uid: 20681 - type: SolarPanel - components: - - pos: -21.5,65.5 - parent: 60 - type: Transform -- uid: 20682 - type: SolarPanel - components: - - pos: -20.5,65.5 - parent: 60 - type: Transform -- uid: 20683 - type: SolarPanel - components: - - pos: -19.5,65.5 - parent: 60 - type: Transform -- uid: 20684 - type: SolarPanel - components: - - pos: -19.5,67.5 - parent: 60 - type: Transform -- uid: 20685 - type: SolarPanel - components: - - pos: -20.5,67.5 - parent: 60 - type: Transform -- uid: 20686 - type: SolarPanel - components: - - pos: -21.5,67.5 - parent: 60 - type: Transform -- uid: 20687 - type: SolarPanel - components: - - pos: -22.5,67.5 - parent: 60 - type: Transform -- uid: 20688 - type: SolarPanel - components: - - pos: -23.5,67.5 - parent: 60 - type: Transform -- uid: 20689 - type: SolarPanel - components: - - pos: -24.5,67.5 - parent: 60 - type: Transform -- uid: 20690 - type: Catwalk - components: - - pos: -44.5,57.5 - parent: 60 - type: Transform -- uid: 20691 - type: Catwalk - components: - - pos: -43.5,57.5 - parent: 60 - type: Transform -- uid: 20692 - type: Catwalk - components: - - pos: -42.5,57.5 - parent: 60 - type: Transform -- uid: 20693 - type: Catwalk - components: - - pos: -41.5,57.5 - parent: 60 - type: Transform -- uid: 20694 - type: Catwalk - components: - - pos: -40.5,57.5 - parent: 60 - type: Transform -- uid: 20695 - type: Catwalk - components: - - pos: -39.5,57.5 - parent: 60 - type: Transform -- uid: 20696 - type: Catwalk - components: - - pos: -38.5,57.5 - parent: 60 - type: Transform -- uid: 20697 - type: Catwalk - components: - - pos: -37.5,57.5 - parent: 60 - type: Transform -- uid: 20698 - type: Catwalk - components: - - pos: -36.5,57.5 - parent: 60 - type: Transform -- uid: 20699 - type: Catwalk - components: - - pos: -35.5,57.5 - parent: 60 - type: Transform -- uid: 20700 - type: Catwalk - components: - - pos: -34.5,57.5 - parent: 60 - type: Transform -- uid: 20701 - type: Catwalk - components: - - pos: -33.5,57.5 - parent: 60 - type: Transform -- uid: 20702 - type: Catwalk - components: - - pos: -32.5,57.5 - parent: 60 - type: Transform -- uid: 20703 - type: Catwalk - components: - - pos: -31.5,57.5 - parent: 60 - type: Transform -- uid: 20704 - type: Catwalk - components: - - pos: -30.5,57.5 - parent: 60 - type: Transform -- uid: 20705 - type: Catwalk - components: - - pos: -29.5,57.5 - parent: 60 - type: Transform -- uid: 20706 - type: Catwalk - components: - - pos: -28.5,57.5 - parent: 60 - type: Transform -- uid: 20707 - type: Catwalk - components: - - pos: -27.5,57.5 - parent: 60 - type: Transform -- uid: 20708 - type: Catwalk - components: - - pos: -26.5,57.5 - parent: 60 - type: Transform -- uid: 20709 - type: Grille - components: - - pos: -38.5,59.5 - parent: 60 - type: Transform -- uid: 20710 - type: Grille - components: - - pos: -37.5,59.5 - parent: 60 - type: Transform -- uid: 20711 - type: GrilleBroken - components: - - pos: -36.5,59.5 - parent: 60 - type: Transform -- uid: 20712 - type: Grille - components: - - pos: -35.5,59.5 - parent: 60 - type: Transform -- uid: 20713 - type: Grille - components: - - pos: -34.5,59.5 - parent: 60 - type: Transform -- uid: 20714 - type: Grille - components: - - pos: -33.5,59.5 - parent: 60 - type: Transform -- uid: 20715 - type: Grille - components: - - pos: -32.5,59.5 - parent: 60 - type: Transform -- uid: 20716 - type: Grille - components: - - pos: -31.5,59.5 - parent: 60 - type: Transform -- uid: 20717 - type: Catwalk - components: - - pos: -29.5,59.5 - parent: 60 - type: Transform -- uid: 20718 - type: Catwalk - components: - - pos: -29.5,58.5 - parent: 60 - type: Transform -- uid: 20719 - type: Grille - components: - - pos: -19.5,60.5 - parent: 60 - type: Transform -- uid: 20720 - type: Grille - components: - - pos: -18.5,60.5 - parent: 60 - type: Transform -- uid: 20721 - type: Grille - components: - - pos: -17.5,60.5 - parent: 60 - type: Transform -- uid: 20722 - type: Grille - components: - - pos: -16.5,60.5 - parent: 60 - type: Transform -- uid: 20723 - type: Grille - components: - - pos: -15.5,60.5 - parent: 60 - type: Transform -- uid: 20724 - type: Grille - components: - - pos: -14.5,60.5 - parent: 60 - type: Transform -- uid: 20725 - type: GrilleBroken - components: - - pos: -13.5,60.5 - parent: 60 - type: Transform -- uid: 20726 - type: Grille - components: - - pos: -12.5,60.5 - parent: 60 - type: Transform -- uid: 20727 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -11.5,60.5 - parent: 60 - type: Transform -- uid: 20728 - type: SignElectricalMed - components: - - pos: -26.5,58.5 - parent: 60 - type: Transform -- uid: 20729 - type: CableHV - components: - - pos: -31.5,79.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20730 - type: CableHV - components: - - pos: -30.5,79.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20731 - type: CableHV - components: - - pos: -29.5,79.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20732 - type: CableHV - components: - - pos: -28.5,79.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20733 - type: CableHV - components: - - pos: -27.5,79.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20734 - type: CableHV - components: - - pos: -26.5,79.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20735 - type: Grille - components: - - pos: -25.5,84.5 - parent: 60 - type: Transform -- uid: 20736 - type: Grille - components: - - pos: -23.5,83.5 - parent: 60 - type: Transform -- uid: 20737 - type: CableHV - components: - - pos: -25.5,81.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20738 - type: CableHV - components: - - pos: -25.5,80.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20739 - type: CableHV - components: - - pos: -24.5,79.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20740 - type: CableHV - components: - - pos: -23.5,79.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20741 - type: CableHV - components: - - pos: -22.5,79.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20742 - type: CableHV - components: - - pos: -21.5,79.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20743 - type: CableHV - components: - - pos: -20.5,79.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20744 - type: CableHV - components: - - pos: -19.5,79.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20745 - type: CableHV - components: - - pos: -19.5,77.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20746 - type: CableHV - components: - - pos: -20.5,77.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20747 - type: CableHV - components: - - pos: -21.5,77.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20748 - type: CableHV - components: - - pos: -22.5,77.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20749 - type: CableHV - components: - - pos: -23.5,77.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20750 - type: CableHV - components: - - pos: -24.5,77.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20751 - type: CableHV - components: - - pos: -26.5,77.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20752 - type: CableHV - components: - - pos: -27.5,77.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20753 - type: CableHV - components: - - pos: -28.5,77.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20754 - type: CableHV - components: - - pos: -29.5,77.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20755 - type: CableHV - components: - - pos: -30.5,77.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20756 - type: CableHV - components: - - pos: -31.5,77.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20757 - type: CableHV - components: - - pos: -31.5,75.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20758 - type: CableHV - components: - - pos: -30.5,75.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20759 - type: CableHV - components: - - pos: -29.5,75.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20760 - type: CableHV - components: - - pos: -28.5,75.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20761 - type: CableHV - components: - - pos: -27.5,75.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20762 - type: CableHV - components: - - pos: -26.5,75.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20763 - type: CableHV - components: - - pos: -24.5,75.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20764 - type: CableHV - components: - - pos: -23.5,75.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20765 - type: CableHV - components: - - pos: -22.5,75.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20766 - type: CableHV - components: - - pos: -21.5,75.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20767 - type: CableHV - components: - - pos: -20.5,75.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20768 - type: CableHV - components: - - pos: -19.5,75.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20769 - type: CableHV - components: - - pos: -19.5,73.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20770 - type: CableHV - components: - - pos: -20.5,73.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20771 - type: CableHV - components: - - pos: -21.5,73.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20772 - type: CableHV - components: - - pos: -22.5,73.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20773 - type: CableHV - components: - - pos: -23.5,73.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20774 - type: CableHV - components: - - pos: -24.5,73.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20775 - type: CableHV - components: - - pos: -26.5,73.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20776 - type: CableHV - components: - - pos: -27.5,73.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20777 - type: CableHV - components: - - pos: -28.5,73.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20778 - type: CableHV - components: - - pos: -29.5,73.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20779 - type: CableHV - components: - - pos: -30.5,73.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20780 - type: CableHV - components: - - pos: -31.5,73.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20781 - type: CableHV - components: - - pos: -26.5,71.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20782 - type: CableHV - components: - - pos: -27.5,71.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20783 - type: CableHV - components: - - pos: -28.5,71.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20784 - type: CableHV - components: - - pos: -29.5,71.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20785 - type: CableHV - components: - - pos: -30.5,71.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20786 - type: CableHV - components: - - pos: -31.5,71.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20787 - type: CableHV - components: - - pos: -31.5,69.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20788 - type: CableHV - components: - - pos: -30.5,69.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20789 - type: CableHV - components: - - pos: -29.5,69.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20790 - type: CableHV - components: - - pos: -28.5,69.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20791 - type: CableHV - components: - - pos: -27.5,69.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20792 - type: CableHV - components: - - pos: -26.5,69.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20793 - type: CableHV - components: - - pos: -24.5,71.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20794 - type: CableHV - components: - - pos: -23.5,71.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20795 - type: CableHV - components: - - pos: -22.5,71.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20796 - type: CableHV - components: - - pos: -21.5,71.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20797 - type: CableHV - components: - - pos: -20.5,71.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20798 - type: CableHV - components: - - pos: -19.5,71.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20799 - type: CableHV - components: - - pos: -19.5,69.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20800 - type: CableHV - components: - - pos: -20.5,69.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20801 - type: CableHV - components: - - pos: -21.5,69.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20802 - type: CableHV - components: - - pos: -22.5,69.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20803 - type: CableHV - components: - - pos: -23.5,69.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20804 - type: CableHV - components: - - pos: -24.5,69.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20805 - type: CableHV - components: - - pos: -24.5,67.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20806 - type: CableHV - components: - - pos: -23.5,67.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20807 - type: CableHV - components: - - pos: -22.5,67.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20808 - type: CableHV - components: - - pos: -21.5,67.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20809 - type: CableHV - components: - - pos: -20.5,67.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20810 - type: CableHV - components: - - pos: -19.5,67.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20811 - type: CableHV - components: - - pos: -19.5,65.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20812 - type: CableHV - components: - - pos: -20.5,65.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20813 - type: CableHV - components: - - pos: -21.5,65.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20814 - type: CableHV - components: - - pos: -22.5,65.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20815 - type: CableHV - components: - - pos: -23.5,65.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20816 - type: CableHV - components: - - pos: -24.5,65.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20817 - type: CableHV - components: - - pos: -26.5,65.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20818 - type: CableHV - components: - - pos: -27.5,65.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20819 - type: CableHV - components: - - pos: -28.5,65.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20820 - type: CableHV - components: - - pos: -29.5,65.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20821 - type: CableHV - components: - - pos: -30.5,65.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20822 - type: CableHV - components: - - pos: -31.5,65.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20823 - type: CableHV - components: - - pos: -31.5,67.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20824 - type: CableHV - components: - - pos: -30.5,67.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20825 - type: CableHV - components: - - pos: -29.5,67.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20826 - type: CableHV - components: - - pos: -28.5,67.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20827 - type: CableHV - components: - - pos: -27.5,67.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20828 - type: CableHV - components: - - pos: -26.5,67.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20829 - type: CableHV - components: - - pos: -25.5,63.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20830 - type: CableHV - components: - - pos: -25.5,64.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20831 - type: Catwalk - components: - - pos: -25.5,63.5 - parent: 60 - type: Transform -- uid: 20832 - type: Catwalk - components: - - pos: -25.5,64.5 - parent: 60 - type: Transform -- uid: 20833 - type: Catwalk - components: - - pos: -25.5,65.5 - parent: 60 - type: Transform -- uid: 20834 - type: Catwalk - components: - - pos: -25.5,66.5 - parent: 60 - type: Transform -- uid: 20835 - type: Catwalk - components: - - pos: -25.5,67.5 - parent: 60 - type: Transform -- uid: 20836 - type: Catwalk - components: - - pos: -25.5,68.5 - parent: 60 - type: Transform -- uid: 20837 - type: Catwalk - components: - - pos: -25.5,69.5 - parent: 60 - type: Transform -- uid: 20838 - type: Catwalk - components: - - pos: -25.5,70.5 - parent: 60 - type: Transform -- uid: 20839 - type: Catwalk - components: - - pos: -25.5,71.5 - parent: 60 - type: Transform -- uid: 20840 - type: Catwalk - components: - - pos: -25.5,72.5 - parent: 60 - type: Transform -- uid: 20841 - type: Catwalk - components: - - pos: -25.5,73.5 - parent: 60 - type: Transform -- uid: 20842 - type: Catwalk - components: - - pos: -25.5,74.5 - parent: 60 - type: Transform -- uid: 20843 - type: Catwalk - components: - - pos: -25.5,75.5 - parent: 60 - type: Transform -- uid: 20844 - type: Catwalk - components: - - pos: -25.5,76.5 - parent: 60 - type: Transform -- uid: 20845 - type: Catwalk - components: - - pos: -25.5,77.5 - parent: 60 - type: Transform -- uid: 20846 - type: Catwalk - components: - - pos: -25.5,78.5 - parent: 60 - type: Transform -- uid: 20847 - type: Catwalk - components: - - pos: -25.5,79.5 - parent: 60 - type: Transform -- uid: 20848 - type: Catwalk - components: - - pos: -25.5,80.5 - parent: 60 - type: Transform -- uid: 20849 - type: SolarTracker - components: - - pos: -25.5,82.5 - parent: 60 - type: Transform -- uid: 20850 - type: Grille - components: - - pos: -23.5,84.5 - parent: 60 - type: Transform -- uid: 20851 - type: Catwalk - components: - - pos: -24.5,78.5 - parent: 60 - type: Transform -- uid: 20852 - type: Catwalk - components: - - pos: -23.5,78.5 - parent: 60 - type: Transform -- uid: 20853 - type: Catwalk - components: - - pos: -22.5,78.5 - parent: 60 - type: Transform -- uid: 20854 - type: Catwalk - components: - - pos: -21.5,78.5 - parent: 60 - type: Transform -- uid: 20855 - type: Catwalk - components: - - pos: -20.5,78.5 - parent: 60 - type: Transform -- uid: 20856 - type: Catwalk - components: - - pos: -19.5,78.5 - parent: 60 - type: Transform -- uid: 20857 - type: Catwalk - components: - - pos: -24.5,74.5 - parent: 60 - type: Transform -- uid: 20858 - type: Catwalk - components: - - pos: -23.5,74.5 - parent: 60 - type: Transform -- uid: 20859 - type: Catwalk - components: - - pos: -22.5,74.5 - parent: 60 - type: Transform -- uid: 20860 - type: Catwalk - components: - - pos: -21.5,74.5 - parent: 60 - type: Transform -- uid: 20861 - type: Catwalk - components: - - pos: -20.5,74.5 - parent: 60 - type: Transform -- uid: 20862 - type: Catwalk - components: - - pos: -19.5,74.5 - parent: 60 - type: Transform -- uid: 20863 - type: Catwalk - components: - - pos: -26.5,74.5 - parent: 60 - type: Transform -- uid: 20864 - type: Catwalk - components: - - pos: -27.5,74.5 - parent: 60 - type: Transform -- uid: 20865 - type: Catwalk - components: - - pos: -28.5,74.5 - parent: 60 - type: Transform -- uid: 20866 - type: Catwalk - components: - - pos: -29.5,74.5 - parent: 60 - type: Transform -- uid: 20867 - type: Catwalk - components: - - pos: -30.5,74.5 - parent: 60 - type: Transform -- uid: 20868 - type: Catwalk - components: - - pos: -31.5,74.5 - parent: 60 - type: Transform -- uid: 20869 - type: Catwalk - components: - - pos: -31.5,78.5 - parent: 60 - type: Transform -- uid: 20870 - type: Catwalk - components: - - pos: -30.5,78.5 - parent: 60 - type: Transform -- uid: 20871 - type: Catwalk - components: - - pos: -29.5,78.5 - parent: 60 - type: Transform -- uid: 20872 - type: Catwalk - components: - - pos: -28.5,78.5 - parent: 60 - type: Transform -- uid: 20873 - type: Catwalk - components: - - pos: -27.5,78.5 - parent: 60 - type: Transform -- uid: 20874 - type: Catwalk - components: - - pos: -26.5,78.5 - parent: 60 - type: Transform -- uid: 20875 - type: Catwalk - components: - - pos: -24.5,66.5 - parent: 60 - type: Transform -- uid: 20876 - type: Catwalk - components: - - pos: -23.5,66.5 - parent: 60 - type: Transform -- uid: 20877 - type: Catwalk - components: - - pos: -22.5,66.5 - parent: 60 - type: Transform -- uid: 20878 - type: Catwalk - components: - - pos: -21.5,66.5 - parent: 60 - type: Transform -- uid: 20879 - type: Catwalk - components: - - pos: -20.5,66.5 - parent: 60 - type: Transform -- uid: 20880 - type: Catwalk - components: - - pos: -19.5,66.5 - parent: 60 - type: Transform -- uid: 20881 - type: Catwalk - components: - - pos: -24.5,70.5 - parent: 60 - type: Transform -- uid: 20882 - type: Catwalk - components: - - pos: -23.5,70.5 - parent: 60 - type: Transform -- uid: 20883 - type: Catwalk - components: - - pos: -22.5,70.5 - parent: 60 - type: Transform -- uid: 20884 - type: Catwalk - components: - - pos: -21.5,70.5 - parent: 60 - type: Transform -- uid: 20885 - type: Catwalk - components: - - pos: -20.5,70.5 - parent: 60 - type: Transform -- uid: 20886 - type: Catwalk - components: - - pos: -19.5,70.5 - parent: 60 - type: Transform -- uid: 20887 - type: Catwalk - components: - - pos: -26.5,70.5 - parent: 60 - type: Transform -- uid: 20888 - type: Catwalk - components: - - pos: -27.5,70.5 - parent: 60 - type: Transform -- uid: 20889 - type: Catwalk - components: - - pos: -28.5,70.5 - parent: 60 - type: Transform -- uid: 20890 - type: Catwalk - components: - - pos: -29.5,70.5 - parent: 60 - type: Transform -- uid: 20891 - type: Catwalk - components: - - pos: -30.5,70.5 - parent: 60 - type: Transform -- uid: 20892 - type: Catwalk - components: - - pos: -31.5,70.5 - parent: 60 - type: Transform -- uid: 20893 - type: Catwalk - components: - - pos: -31.5,66.5 - parent: 60 - type: Transform -- uid: 20894 - type: Catwalk - components: - - pos: -30.5,66.5 - parent: 60 - type: Transform -- uid: 20895 - type: Catwalk - components: - - pos: -29.5,66.5 - parent: 60 - type: Transform -- uid: 20896 - type: Catwalk - components: - - pos: -28.5,66.5 - parent: 60 - type: Transform -- uid: 20897 - type: Catwalk - components: - - pos: -27.5,66.5 - parent: 60 - type: Transform -- uid: 20898 - type: Catwalk - components: - - pos: -26.5,66.5 - parent: 60 - type: Transform -- uid: 20899 - type: Grille - components: - - pos: -33.5,62.5 - parent: 60 - type: Transform -- uid: 20900 - type: Grille - components: - - pos: -33.5,63.5 - parent: 60 - type: Transform -- uid: 20901 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -33.5,64.5 - parent: 60 - type: Transform -- uid: 20902 - type: Grille - components: - - pos: -33.5,65.5 - parent: 60 - type: Transform -- uid: 20903 - type: Grille - components: - - pos: -33.5,66.5 - parent: 60 - type: Transform -- uid: 20904 - type: Grille - components: - - pos: -33.5,67.5 - parent: 60 - type: Transform -- uid: 20905 - type: Grille - components: - - pos: -33.5,68.5 - parent: 60 - type: Transform -- uid: 20906 - type: Grille - components: - - pos: -33.5,69.5 - parent: 60 - type: Transform -- uid: 20907 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -17.5,63.5 - parent: 60 - type: Transform -- uid: 20908 - type: Grille - components: - - pos: -33.5,71.5 - parent: 60 - type: Transform -- uid: 20909 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -33.5,61.5 - parent: 60 - type: Transform -- uid: 20910 - type: Grille - components: - - pos: -33.5,73.5 - parent: 60 - type: Transform -- uid: 20911 - type: GrilleBroken - components: - - pos: -33.5,64.5 - parent: 60 - type: Transform -- uid: 20912 - type: Grille - components: - - pos: -33.5,75.5 - parent: 60 - type: Transform -- uid: 20913 - type: Grille - components: - - pos: -33.5,76.5 - parent: 60 - type: Transform -- uid: 20914 - type: Grille - components: - - pos: -33.5,77.5 - parent: 60 - type: Transform -- uid: 20915 - type: Grille - components: - - pos: -33.5,78.5 - parent: 60 - type: Transform -- uid: 20916 - type: Grille - components: - - pos: -33.5,79.5 - parent: 60 - type: Transform -- uid: 20917 - type: Grille - components: - - pos: -33.5,80.5 - parent: 60 - type: Transform -- uid: 20918 - type: Grille - components: - - pos: -33.5,81.5 - parent: 60 - type: Transform -- uid: 20919 - type: Grille - components: - - pos: -32.5,81.5 - parent: 60 - type: Transform -- uid: 20920 - type: Grille - components: - - pos: -31.5,81.5 - parent: 60 - type: Transform -- uid: 20921 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -33.5,74.5 - parent: 60 - type: Transform -- uid: 20922 - type: Grille - components: - - pos: -29.5,81.5 - parent: 60 - type: Transform -- uid: 20923 - type: Catwalk - components: - - pos: -24.5,60.5 - parent: 60 - type: Transform -- uid: 20924 - type: Catwalk - components: - - pos: -24.5,61.5 - parent: 60 - type: Transform -- uid: 20925 - type: Catwalk - components: - - pos: -29.5,61.5 - parent: 60 - type: Transform -- uid: 20926 - type: Catwalk - components: - - pos: -29.5,60.5 - parent: 60 - type: Transform -- uid: 20927 - type: Grille - components: - - pos: -23.5,82.5 - parent: 60 - type: Transform -- uid: 20928 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -28.5,81.5 - parent: 60 - type: Transform -- uid: 20929 - type: Grille - components: - - pos: -26.5,84.5 - parent: 60 - type: Transform -- uid: 20930 - type: Grille - components: - - pos: -27.5,84.5 - parent: 60 - type: Transform -- uid: 20931 - type: CableHV - components: - - pos: -25.5,82.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20932 - type: Catwalk - components: - - pos: -25.5,81.5 - parent: 60 - type: Transform -- uid: 20933 - type: Grille - components: - - pos: -27.5,83.5 - parent: 60 - type: Transform -- uid: 20934 - type: Catwalk - components: - - pos: -24.5,59.5 - parent: 60 - type: Transform -- uid: 20935 - type: GrilleBroken - components: - - pos: -21.5,81.5 - parent: 60 - type: Transform -- uid: 20936 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -27.5,82.5 - parent: 60 - type: Transform -- uid: 20937 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -33.5,70.5 - parent: 60 - type: Transform -- uid: 20938 - type: Grille - components: - - pos: -19.5,81.5 - parent: 60 - type: Transform -- uid: 20939 - type: Grille - components: - - pos: -18.5,81.5 - parent: 60 - type: Transform -- uid: 20940 - type: Grille - components: - - pos: -17.5,81.5 - parent: 60 - type: Transform -- uid: 20941 - type: Grille - components: - - pos: -17.5,80.5 - parent: 60 - type: Transform -- uid: 20942 - type: Grille - components: - - pos: -17.5,79.5 - parent: 60 - type: Transform -- uid: 20943 - type: Grille - components: - - pos: -17.5,78.5 - parent: 60 - type: Transform -- uid: 20944 - type: GrilleBroken - components: - - pos: -33.5,72.5 - parent: 60 - type: Transform -- uid: 20945 - type: Grille - components: - - pos: -17.5,76.5 - parent: 60 - type: Transform -- uid: 20946 - type: Grille - components: - - pos: -17.5,75.5 - parent: 60 - type: Transform -- uid: 20947 - type: Grille - components: - - pos: -17.5,74.5 - parent: 60 - type: Transform -- uid: 20948 - type: Grille - components: - - pos: -17.5,73.5 - parent: 60 - type: Transform -- uid: 20949 - type: Grille - components: - - pos: -17.5,72.5 - parent: 60 - type: Transform -- uid: 20950 - type: Grille - components: - - pos: -17.5,71.5 - parent: 60 - type: Transform -- uid: 20951 - type: Grille - components: - - pos: -17.5,70.5 - parent: 60 - type: Transform -- uid: 20952 - type: Grille - components: - - pos: -17.5,69.5 - parent: 60 - type: Transform -- uid: 20953 - type: Grille - components: - - pos: -17.5,68.5 - parent: 60 - type: Transform -- uid: 20954 - type: Grille - components: - - pos: -17.5,67.5 - parent: 60 - type: Transform -- uid: 20955 - type: Grille - components: - - pos: -17.5,66.5 - parent: 60 - type: Transform -- uid: 20956 - type: Grille - components: - - pos: -17.5,65.5 - parent: 60 - type: Transform -- uid: 20957 - type: Grille - components: - - pos: -17.5,64.5 - parent: 60 - type: Transform -- uid: 20958 - type: GrilleBroken - components: - - pos: -33.5,70.5 - parent: 60 - type: Transform -- uid: 20959 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -33.5,72.5 - parent: 60 - type: Transform -- uid: 20960 - type: GrilleBroken - components: - - pos: -30.5,81.5 - parent: 60 - type: Transform -- uid: 20961 - type: GrilleBroken - components: - - pos: -20.5,81.5 - parent: 60 - type: Transform -- uid: 20962 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -17.5,77.5 - parent: 60 - type: Transform -- uid: 20963 - type: Catwalk - components: - - pos: -29.5,62.5 - parent: 60 - type: Transform -- uid: 20964 - type: Catwalk - components: - - pos: -29.5,63.5 - parent: 60 - type: Transform -- uid: 20965 - type: Catwalk - components: - - pos: -28.5,63.5 - parent: 60 - type: Transform -- uid: 20966 - type: Catwalk - components: - - pos: -27.5,63.5 - parent: 60 - type: Transform -- uid: 20967 - type: Catwalk - components: - - pos: -26.5,63.5 - parent: 60 - type: Transform -- uid: 20968 - type: Catwalk - components: - - pos: -24.5,63.5 - parent: 60 - type: Transform -- uid: 20969 - type: Catwalk - components: - - pos: -23.5,63.5 - parent: 60 - type: Transform -- uid: 20970 - type: Catwalk - components: - - pos: -22.5,63.5 - parent: 60 - type: Transform -- uid: 20971 - type: Catwalk - components: - - pos: -21.5,63.5 - parent: 60 - type: Transform -- uid: 20972 - type: Catwalk - components: - - pos: -21.5,62.5 - parent: 60 - type: Transform -- uid: 20973 - type: Catwalk - components: - - pos: -21.5,61.5 - parent: 60 - type: Transform -- uid: 20974 - type: Catwalk - components: - - pos: -21.5,60.5 - parent: 60 - type: Transform -- uid: 20975 - type: Catwalk - components: - - pos: -21.5,59.5 - parent: 60 - type: Transform -- uid: 20976 - type: Catwalk - components: - - pos: -21.5,58.5 - parent: 60 - type: Transform -- uid: 20977 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -20.5,60.5 - parent: 60 - type: Transform -- uid: 20978 - type: PoweredlightSodium - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-30.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20980 - type: CableApcExtension - components: - - pos: 16.5,-10.5 - parent: 60 - type: Transform -- uid: 20981 - type: Poweredlight - components: - - pos: 45.5,26.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20982 - type: Poweredlight - components: - - pos: 53.5,26.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20985 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 52.5,20.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20986 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 46.5,20.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20987 - type: Poweredlight - components: - - pos: 40.5,25.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20988 - type: Poweredlight - components: - - pos: 34.5,26.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20990 - type: Poweredlight - components: - - pos: 22.5,26.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20992 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,28.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20993 - type: PoweredSmallLight - components: - - pos: 45.5,-3.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20994 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20995 - type: Window - components: - - pos: -56.5,38.5 - parent: 60 - type: Transform -- uid: 20996 - type: RandomPosterLegit - components: - - pos: 31.5,10.5 - parent: 60 - type: Transform -- uid: 20997 - type: RandomPosterLegit - components: - - pos: 42.5,14.5 - parent: 60 - type: Transform -- uid: 20998 - type: SignDirectionalLibrary - components: - - rot: 3.141592653589793 rad - pos: -13.493379,-20.45811 - parent: 60 - type: Transform -- uid: 20999 - type: RandomPosterLegit - components: - - pos: 57.5,23.5 - parent: 60 - type: Transform -- uid: 21000 - type: RandomPosterLegit - components: - - pos: 30.5,27.5 - parent: 60 - type: Transform -- uid: 21001 - type: RandomPosterLegit - components: - - pos: 18.5,14.5 - parent: 60 - type: Transform -- uid: 21002 - type: PosterLegitNoERP - components: - - pos: 21.5,11.5 - parent: 60 - type: Transform -- uid: 21003 - type: RandomPosterContraband - components: - - pos: 27.5,-7.5 - parent: 60 - type: Transform -- uid: 21004 - type: RandomPosterContraband - components: - - pos: 33.5,4.5 - parent: 60 - type: Transform -- uid: 21005 - type: RandomPosterContraband - components: - - pos: 30.5,15.5 - parent: 60 - type: Transform -- uid: 21006 - type: RandomPosterLegit - components: - - pos: 36.5,22.5 - parent: 60 - type: Transform -- uid: 21007 - type: RandomPosterAny - components: - - pos: -57.5,-20.5 - parent: 60 - type: Transform -- uid: 21008 - type: ExtinguisherCabinetFilled - components: - - pos: 42.5,15.5 - parent: 60 - type: Transform -- uid: 21009 - type: ExtinguisherCabinetFilled - components: - - pos: 41.5,26.5 - parent: 60 - type: Transform -- uid: 21010 - type: WeaponShotgunKammerer - components: - - pos: -28.48172,0.6445763 - parent: 60 - type: Transform -- uid: 21011 - type: BoxBeanbag - components: - - pos: -24.464367,0.49183664 - parent: 60 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 21012 - type: BoxShotgunIncendiary - components: - - pos: -24.464367,0.74183667 - parent: 60 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 21013 - type: TableReinforced - components: - - pos: -28.5,1.5 - parent: 60 - type: Transform -- uid: 21014 - type: CableMV - components: - - pos: 47.5,-32.5 - parent: 60 - type: Transform -- uid: 21016 - type: WeaponRifleLecter - components: - - pos: -28.497345,2.4570763 - parent: 60 - type: Transform -- uid: 21017 - type: PottedPlantRandom - components: - - pos: 34.5,9.5 - parent: 60 - type: Transform -- uid: 21018 - type: Table - components: - - pos: -5.5,-18.5 - parent: 60 - type: Transform -- uid: 21019 - type: SurveillanceCameraRouterCommand - components: - - pos: 4.5,-7.5 - parent: 60 - type: Transform -- uid: 21020 - type: SurveillanceCameraRouterEngineering - components: - - pos: 10.5,17.5 - parent: 60 - type: Transform -- uid: 21021 - type: WeaponLaserCarbine - components: - - pos: -28.497345,1.6445763 - parent: 60 - type: Transform -- uid: 21022 - type: WeaponShotgunKammerer - components: - - pos: -28.466095,1.0352013 - parent: 60 - type: Transform -- uid: 21023 - type: WeaponShotgunKammerer - components: - - pos: -28.466095,0.8477013 - parent: 60 - type: Transform -- uid: 21024 - type: ComputerCargoShuttle - components: - - rot: 1.5707963267948966 rad - pos: 49.5,11.5 - parent: 60 - type: Transform -- uid: 21025 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-42.5 - parent: 60 - type: Transform -- uid: 21026 - type: BlastDoor - components: - - pos: -52.5,17.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9647 - type: SignalReceiver -- uid: 21027 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-42.5 - parent: 60 - type: Transform -- uid: 21028 - type: PaperCaptainsThoughts - components: - - pos: -8.358206,-5.332347 - parent: 60 - type: Transform -- uid: 21030 - type: MagazineRifle - components: - - pos: -24.236706,-0.3809066 - parent: 60 - type: Transform - - unspawnedCount: 25 - type: BallisticAmmoProvider -- uid: 21031 - type: MagazineRifle - components: - - pos: -24.236706,-0.5215316 - parent: 60 - type: Transform - - unspawnedCount: 25 - type: BallisticAmmoProvider -- uid: 21032 - type: CableApcExtension - components: - - pos: 8.5,-23.5 - parent: 60 - type: Transform -- uid: 21033 - type: BoxFolderYellow - components: - - pos: -58.50381,1.496242 - parent: 60 - type: Transform -- uid: 21034 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,29.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21035 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,29.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21036 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,29.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21037 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,29.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21038 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 42.5,31.5 - parent: 60 - type: Transform -- uid: 21039 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 56.5,31.5 - parent: 60 - type: Transform -- uid: 21040 - type: PhoneInstrument - components: - - pos: -3.519828,-6.376233 - parent: 60 - type: Transform -- uid: 21041 - type: CableMV - components: - - pos: -5.5,-18.5 - parent: 60 - type: Transform -- uid: 21042 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -7.5,-22.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Entrance - type: SurveillanceCamera -- uid: 21043 - type: SurveillanceCameraSecurity - components: - - pos: -25.5,-5.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec North - type: SurveillanceCamera -- uid: 21044 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -26.5,2.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - type: SurveillanceCamera -- uid: 21045 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Breakroom - type: SurveillanceCamera -- uid: 21046 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-11.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Exterior West - type: SurveillanceCamera -- uid: 21047 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-11.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Exterior East - type: SurveillanceCamera -- uid: 21048 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-10.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec East - type: SurveillanceCamera -- uid: 21049 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-10.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec West - type: SurveillanceCamera -- uid: 21050 - type: SurveillanceCameraSecurity - components: - - pos: -25.5,-20.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Entrance - type: SurveillanceCamera -- uid: 21051 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - type: SurveillanceCamera -- uid: 21052 - type: SurveillanceCameraCommand - components: - - pos: 3.5,-0.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge - type: SurveillanceCamera -- uid: 21053 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Quarters - type: SurveillanceCamera -- uid: 21054 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge Entrance - type: SurveillanceCamera -- uid: 21055 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP Office - type: SurveillanceCamera -- uid: 21056 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-29.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - type: SurveillanceCamera -- uid: 21057 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-29.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medbay South - type: SurveillanceCamera -- uid: 21058 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-29.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology - type: SurveillanceCamera -- uid: 21059 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-18.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medbay West - type: SurveillanceCamera -- uid: 21060 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-22.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cloning - type: SurveillanceCamera -- uid: 21061 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-11.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medbay North - type: SurveillanceCamera -- uid: 21062 - type: SurveillanceCameraSupply - components: - - rot: -1.5707963267948966 rad - pos: 43.5,13.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Quartermaster Room - type: SurveillanceCamera -- uid: 21063 - type: SurveillanceCameraSupply - components: - - rot: 1.5707963267948966 rad - pos: 56.5,10.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Bay - type: SurveillanceCamera -- uid: 21064 - type: SurveillanceCameraSupply - components: - - rot: 1.5707963267948966 rad - pos: 51.5,1.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage Bay - type: SurveillanceCamera -- uid: 21065 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - type: SurveillanceCamera -- uid: 21066 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -1.5,36.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singulo - type: SurveillanceCamera -- uid: 21067 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -15.5,37.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Supermatter South - type: SurveillanceCamera -- uid: 21068 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: -10.5,42.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Supermatter East - type: SurveillanceCamera -- uid: 21069 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -18.5,46.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Supermatter North - type: SurveillanceCamera -- uid: 21070 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: -36.5,42.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos North - type: SurveillanceCamera -- uid: 21071 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: -33.5,33.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos South - type: SurveillanceCamera -- uid: 21072 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -18.5,30.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Lobby - type: SurveillanceCamera -- uid: 21073 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 2.5,21.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Breakroom - type: SurveillanceCamera -- uid: 21074 - type: WeaponSubMachineGunWt550 - components: - - pos: -19.480938,-0.49523172 - parent: 60 - type: Transform -- uid: 21075 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: -48.5,4.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Outside RD Office - type: SurveillanceCamera -- uid: 21076 - type: SurveillanceCameraScience - components: - - pos: -48.5,11.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Artifact Lab - type: SurveillanceCamera -- uid: 21077 - type: SpawnPointServiceWorker - components: - - pos: 18.5,-32.5 - parent: 60 - type: Transform -- uid: 21078 - type: SurveillanceCameraScience - components: - - rot: 1.5707963267948966 rad - pos: -53.5,8.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Sci Locker Room - type: SurveillanceCamera -- uid: 21079 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: 26.5,-26.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Freezer - type: SurveillanceCamera -- uid: 21080 - type: SurveillanceCameraService - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-34.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - type: SurveillanceCamera -- uid: 21081 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: 24.5,-30.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - type: SurveillanceCamera -- uid: 21082 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-31.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Hydroponics - type: SurveillanceCamera -- uid: 21083 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-15.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge Bridge - type: SurveillanceCamera -- uid: 21085 - type: SurveillanceCameraRouterGeneral - components: - - pos: 24.5,18.5 - parent: 60 - type: Transform -- uid: 21086 - type: SurveillanceCameraGeneral - components: - - pos: 51.5,24.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evac 1 - type: SurveillanceCamera -- uid: 21089 - type: SignRadiationMed - components: - - pos: -56.5,5.5 - parent: 60 - type: Transform -- uid: 21090 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -32.5,26.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm Hall - type: SurveillanceCamera -- uid: 21091 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-18.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court Room - type: SurveillanceCamera -- uid: 21092 - type: PosterContrabandHighEffectEngineering - components: - - pos: 0.5,16.5 - parent: 60 - type: Transform -- uid: 21093 - type: CableApcExtension - components: - - pos: 36.5,-9.5 - parent: 60 - type: Transform -- uid: 21094 - type: CableApcExtension - components: - - pos: 36.5,-8.5 - parent: 60 - type: Transform -- uid: 21095 - type: CableApcExtension - components: - - pos: 36.5,-7.5 - parent: 60 - type: Transform -- uid: 21096 - type: CableApcExtension - components: - - pos: 36.5,-6.5 - parent: 60 - type: Transform -- uid: 21097 - type: CarpetPurple - components: - - pos: 47.5,-46.5 - parent: 60 - type: Transform -- uid: 21098 - type: CarpetPurple - components: - - pos: 47.5,-45.5 - parent: 60 - type: Transform -- uid: 21099 - type: CarpetPurple - components: - - pos: 47.5,-44.5 - parent: 60 - type: Transform -- uid: 21100 - type: CarpetPurple - components: - - pos: 48.5,-46.5 - parent: 60 - type: Transform -- uid: 21101 - type: CarpetPurple - components: - - pos: 48.5,-45.5 - parent: 60 - type: Transform -- uid: 21102 - type: CarpetPurple - components: - - pos: 48.5,-44.5 - parent: 60 - type: Transform -- uid: 21103 - type: CarpetGreen - components: - - pos: 51.5,-45.5 - parent: 60 - type: Transform -- uid: 21104 - type: CarpetGreen - components: - - pos: 51.5,-44.5 - parent: 60 - type: Transform -- uid: 21105 - type: CarpetGreen - components: - - pos: 52.5,-45.5 - parent: 60 - type: Transform -- uid: 21106 - type: CarpetGreen - components: - - pos: 52.5,-44.5 - parent: 60 - type: Transform -- uid: 21107 - type: CarpetBlue - components: - - pos: 55.5,-45.5 - parent: 60 - type: Transform -- uid: 21108 - type: CarpetBlue - components: - - pos: 55.5,-44.5 - parent: 60 - type: Transform -- uid: 21109 - type: CarpetBlue - components: - - pos: 56.5,-45.5 - parent: 60 - type: Transform -- uid: 21110 - type: CableApcExtension - components: - - pos: 46.5,-46.5 - parent: 60 - type: Transform -- uid: 21111 - type: CableApcExtension - components: - - pos: 46.5,-47.5 - parent: 60 - type: Transform -- uid: 21112 - type: CableApcExtension - components: - - pos: 47.5,-47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21113 - type: CableApcExtension - components: - - pos: 48.5,-47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21114 - type: CableApcExtension - components: - - pos: 49.5,-47.5 - parent: 60 - type: Transform -- uid: 21115 - type: CableApcExtension - components: - - pos: 50.5,-47.5 - parent: 60 - type: Transform -- uid: 21116 - type: CableApcExtension - components: - - pos: 51.5,-47.5 - parent: 60 - type: Transform -- uid: 21117 - type: CableApcExtension - components: - - pos: 52.5,-47.5 - parent: 60 - type: Transform -- uid: 21118 - type: CableApcExtension - components: - - pos: 53.5,-47.5 - parent: 60 - type: Transform -- uid: 21119 - type: CableApcExtension - components: - - pos: 54.5,-47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21120 - type: CableApcExtension - components: - - pos: 55.5,-47.5 - parent: 60 - type: Transform -- uid: 21121 - type: CableApcExtension - components: - - pos: 56.5,-47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21122 - type: CableApcExtension - components: - - pos: 57.5,-47.5 - parent: 60 - type: Transform -- uid: 21123 - type: CableApcExtension - components: - - pos: 58.5,-47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21124 - type: CableApcExtension - components: - - pos: 58.5,-46.5 - parent: 60 - type: Transform -- uid: 21125 - type: CableApcExtension - components: - - pos: 58.5,-45.5 - parent: 60 - type: Transform -- uid: 21126 - type: CableApcExtension - components: - - pos: 54.5,-46.5 - parent: 60 - type: Transform -- uid: 21127 - type: CableApcExtension - components: - - pos: 54.5,-45.5 - parent: 60 - type: Transform -- uid: 21128 - type: CableApcExtension - components: - - pos: 50.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21129 - type: CableApcExtension - components: - - pos: 50.5,-45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21130 - type: AtmosDeviceFanTiny - components: - - pos: 44.5,31.5 - parent: 60 - type: Transform -- uid: 21131 - type: Window - components: - - pos: -55.5,43.5 - parent: 60 - type: Transform -- uid: 21132 - type: WallReinforced - components: - - pos: -73.5,15.5 - parent: 60 - type: Transform -- uid: 21133 - type: WallReinforced - components: - - pos: -72.5,15.5 - parent: 60 - type: Transform -- uid: 21134 - type: WallReinforced - components: - - pos: -71.5,15.5 - parent: 60 - type: Transform -- uid: 21135 - type: WallReinforced - components: - - pos: -70.5,15.5 - parent: 60 - type: Transform -- uid: 21136 - type: Window - components: - - pos: -55.5,42.5 - parent: 60 - type: Transform -- uid: 21137 - type: Grille - components: - - pos: -9.5,1.5 - parent: 60 - type: Transform -- uid: 21138 - type: Window - components: - - pos: -55.5,41.5 - parent: 60 - type: Transform -- uid: 21139 - type: CableMV - components: - - pos: -11.5,2.5 - parent: 60 - type: Transform -- uid: 21140 - type: CableMV - components: - - pos: -10.5,2.5 - parent: 60 - type: Transform -- uid: 21141 - type: Window - components: - - pos: -55.5,40.5 - parent: 60 - type: Transform -- uid: 21142 - type: CableMV - components: - - pos: -9.5,1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21143 - type: Window - components: - - pos: -55.5,49.5 - parent: 60 - type: Transform -- uid: 21144 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -11.5,-12.5 - parent: 60 - type: Transform -- uid: 21145 - type: WindowReinforcedDirectional - components: - - pos: -11.5,-14.5 - parent: 60 - type: Transform -- uid: 21146 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -11.5,-18.5 - parent: 60 - type: Transform -- uid: 21147 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -6.5,-12.5 - parent: 60 - type: Transform -- uid: 21148 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 60 - type: Transform -- uid: 21149 - type: SinkWide - components: - - rot: 3.141592653589793 rad - pos: -9.5,-15.5 - parent: 60 - type: Transform -- uid: 21150 - type: hydroponicsTray - components: - - pos: -10.5,-13.5 - parent: 60 - type: Transform -- uid: 21151 - type: Grille - components: - - pos: -7.5,-10.5 - parent: 60 - type: Transform -- uid: 21152 - type: WindowReinforcedDirectional - components: - - pos: -46.5,5.5 - parent: 60 - type: Transform -- uid: 21153 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-10.5 - parent: 60 - type: Transform -- uid: 21154 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-2.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrogation - type: SurveillanceCamera -- uid: 21155 - type: ReinforcedWindow - components: - - pos: 60.5,-42.5 - parent: 60 - type: Transform -- uid: 21156 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: -41.5,5.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RD Office - type: SurveillanceCamera -- uid: 21157 - type: SurveillanceCameraScience - components: - - pos: -49.5,7.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Sci Server Room - type: SurveillanceCamera -- uid: 21158 - type: CableApcExtension - components: - - pos: -33.5,-20.5 - parent: 60 - type: Transform -- uid: 21159 - type: SurveillanceCameraEngineering - components: - - pos: -26.5,30.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Foyeur - type: SurveillanceCamera -- uid: 21160 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -30.5,35.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Storage - type: SurveillanceCamera -- uid: 21161 - type: SurveillanceCameraEngineering - components: - - pos: -31.5,38.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Mixer - type: SurveillanceCamera -- uid: 21162 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -26.5,41.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Supermatter West - type: SurveillanceCamera -- uid: 21163 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 1.5,15.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Entrance - type: SurveillanceCamera -- uid: 21164 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -0.5,29.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES Bank - type: SurveillanceCamera -- uid: 21165 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 19.5,20.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Circuitry - type: SurveillanceCamera -- uid: 21167 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: 36.5,-5.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue - type: SurveillanceCamera -- uid: 21168 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -16.5,29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21170 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -4.5,-44.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Checkpoint - type: SurveillanceCamera -- uid: 21171 - type: CableApcExtension - components: - - pos: 45.5,-46.5 - parent: 60 - type: Transform -- uid: 21172 - type: CableApcExtension - components: - - pos: 44.5,-46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21173 - type: CableApcStack1 - components: - - pos: 43.501133,-45.572235 - parent: 60 - type: Transform -- uid: 21174 - type: Grille - components: - - pos: 60.5,-45.5 - parent: 60 - type: Transform -- uid: 21175 - type: SurveillanceCameraSupply - components: - - rot: -1.5707963267948966 rad - pos: 56.5,1.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage Exterior - type: SurveillanceCamera -- uid: 21176 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 47.5,22.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evac 2 - type: SurveillanceCamera -- uid: 21177 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -22.5,15.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Chapel - type: SurveillanceCamera -- uid: 21178 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -19.5,18.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Chaplain's Room - type: SurveillanceCamera -- uid: 21179 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -6.5,19.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Library - type: SurveillanceCamera -- uid: 21180 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-27.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective Office - type: SurveillanceCamera -- uid: 21181 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -13.5,-39.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Disposals - type: SurveillanceCamera -- uid: 21182 - type: SignFlammableMed - components: - - pos: -60.5,5.5 - parent: 60 - type: Transform -- uid: 21183 - type: PosterLegitScience - components: - - pos: -60.5,3.5 - parent: 60 - type: Transform -- uid: 21184 - type: PosterLegitSafetyEyeProtection - components: - - pos: -60.5,2.5 - parent: 60 - type: Transform -- uid: 21185 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 0.5,7.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bagel Space - type: SurveillanceCamera -- uid: 21186 - type: SurveillanceCameraRouterGeneral - components: - - pos: -49.5,7.5 - parent: 60 - type: Transform -- uid: 21187 - type: PottedPlantRandom - components: - - pos: -10.5,-26.5 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 21188 - type: SignDirectionalDorms - components: - - rot: 3.141592653589793 rad - pos: -60.5,18.5 - parent: 60 - type: Transform -- uid: 21189 - type: ReinforcedWindow - components: - - pos: -63.5,16.5 - parent: 60 - type: Transform -- uid: 21190 - type: ReinforcedWindow - components: - - pos: -66.5,18.5 - parent: 60 - type: Transform -- uid: 21191 - type: ReinforcedWindow - components: - - pos: -67.5,16.5 - parent: 60 - type: Transform -- uid: 21192 - type: ReinforcedWindow - components: - - pos: -64.5,18.5 - parent: 60 - type: Transform -- uid: 21193 - type: WallReinforced - components: - - pos: -61.5,16.5 - parent: 60 - type: Transform -- uid: 21194 - type: WallReinforced - components: - - pos: -62.5,16.5 - parent: 60 - type: Transform -- uid: 21195 - type: ReinforcedWindow - components: - - pos: -67.5,18.5 - parent: 60 - type: Transform -- uid: 21196 - type: ReinforcedWindow - components: - - pos: -65.5,16.5 - parent: 60 - type: Transform -- uid: 21197 - type: ReinforcedWindow - components: - - pos: -63.5,18.5 - parent: 60 - type: Transform -- uid: 21198 - type: ReinforcedWindow - components: - - pos: -66.5,16.5 - parent: 60 - type: Transform -- uid: 21199 - type: CableApcExtension - components: - - pos: 9.5,-23.5 - parent: 60 - type: Transform -- uid: 21201 - type: WallReinforced - components: - - pos: -69.5,20.5 - parent: 60 - type: Transform -- uid: 21202 - type: WallReinforced - components: - - pos: -69.5,21.5 - parent: 60 - type: Transform -- uid: 21203 - type: WallReinforced - components: - - pos: -70.5,21.5 - parent: 60 - type: Transform -- uid: 21204 - type: WallReinforced - components: - - pos: -71.5,21.5 - parent: 60 - type: Transform -- uid: 21205 - type: WallReinforced - components: - - pos: -72.5,21.5 - parent: 60 - type: Transform -- uid: 21206 - type: WallReinforced - components: - - pos: -73.5,21.5 - parent: 60 - type: Transform -- uid: 21207 - type: WallReinforced - components: - - pos: -74.5,21.5 - parent: 60 - type: Transform -- uid: 21208 - type: ReinforcedWindow - components: - - pos: -74.5,16.5 - parent: 60 - type: Transform -- uid: 21209 - type: WallReinforced - components: - - pos: -74.5,19.5 - parent: 60 - type: Transform -- uid: 21210 - type: WallReinforced - components: - - pos: -73.5,19.5 - parent: 60 - type: Transform -- uid: 21211 - type: WallReinforced - components: - - pos: -72.5,19.5 - parent: 60 - type: Transform -- uid: 21212 - type: ReinforcedWindow - components: - - pos: -74.5,17.5 - parent: 60 - type: Transform -- uid: 21213 - type: ReinforcedWindow - components: - - pos: -74.5,18.5 - parent: 60 - type: Transform -- uid: 21214 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -73.5,16.5 - parent: 60 - type: Transform -- uid: 21215 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -73.5,17.5 - parent: 60 - type: Transform -- uid: 21216 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -73.5,18.5 - parent: 60 - type: Transform -- uid: 21218 - type: Grille - components: - - pos: -63.5,16.5 - parent: 60 - type: Transform -- uid: 21219 - type: Grille - components: - - pos: -64.5,16.5 - parent: 60 - type: Transform -- uid: 21220 - type: Grille - components: - - pos: -65.5,16.5 - parent: 60 - type: Transform -- uid: 21221 - type: Grille - components: - - pos: -66.5,16.5 - parent: 60 - type: Transform -- uid: 21222 - type: Grille - components: - - pos: -67.5,16.5 - parent: 60 - type: Transform -- uid: 21223 - type: Grille - components: - - pos: -67.5,18.5 - parent: 60 - type: Transform -- uid: 21224 - type: Grille - components: - - pos: -66.5,18.5 - parent: 60 - type: Transform -- uid: 21225 - type: Grille - components: - - pos: -65.5,18.5 - parent: 60 - type: Transform -- uid: 21226 - type: Grille - components: - - pos: -64.5,18.5 - parent: 60 - type: Transform -- uid: 21227 - type: Grille - components: - - pos: -63.5,18.5 - parent: 60 - type: Transform -- uid: 21228 - type: Grille - components: - - pos: -74.5,16.5 - parent: 60 - type: Transform -- uid: 21229 - type: Grille - components: - - pos: -74.5,17.5 - parent: 60 - type: Transform -- uid: 21230 - type: Grille - components: - - pos: -74.5,18.5 - parent: 60 - type: Transform -- uid: 21231 - type: TableGlass - components: - - pos: -73.5,16.5 - parent: 60 - type: Transform -- uid: 21232 - type: TableGlass - components: - - pos: -73.5,17.5 - parent: 60 - type: Transform -- uid: 21233 - type: TableGlass - components: - - pos: -70.5,19.5 - parent: 60 - type: Transform -- uid: 21234 - type: TableGlass - components: - - pos: -70.5,20.5 - parent: 60 - type: Transform -- uid: 21235 - type: AirlockExternalGlassLocked - components: - - pos: -72.5,20.5 - parent: 60 - type: Transform -- uid: 21236 - type: AirlockExternalGlassLocked - components: - - pos: -74.5,20.5 - parent: 60 - type: Transform -- uid: 21237 - type: SignAi - components: - - pos: -72.5,19.5 - parent: 60 - type: Transform -- uid: 21238 - type: CrowbarRed - components: - - pos: -70.48202,20.494596 - parent: 60 - type: Transform -- uid: 21239 - type: Wrench - components: - - pos: -70.51327,20.619596 - parent: 60 - type: Transform -- uid: 21240 - type: FlashlightLantern - components: - - pos: -70.59139,20.353971 - parent: 60 - type: Transform -- uid: 21241 - type: ClothingMaskBreath - components: - - pos: -70.49764,19.650846 - parent: 60 - type: Transform -- uid: 21242 - type: EmergencyOxygenTankFilled - components: - - pos: -70.41952,19.557096 - parent: 60 - type: Transform -- uid: 21243 - type: BoxFolderBlue - components: - - pos: -73.462845,16.682096 - parent: 60 - type: Transform -- uid: 21244 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -72.5,16.5 - parent: 60 - type: Transform -- uid: 21245 - type: Lamp - components: - - pos: -73.389694,17.572721 - parent: 60 - type: Transform -- uid: 21246 - type: PoweredSmallLight - components: - - pos: -73.5,20.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21248 - type: CableApcExtension - components: - - pos: -58.5,16.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21249 - type: CableApcExtension - components: - - pos: -58.5,17.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21250 - type: CableApcExtension - components: - - pos: -59.5,17.5 - parent: 60 - type: Transform -- uid: 21251 - type: CableApcExtension - components: - - pos: -60.5,17.5 - parent: 60 - type: Transform -- uid: 21252 - type: CableApcExtension - components: - - pos: -61.5,17.5 - parent: 60 - type: Transform -- uid: 21253 - type: CableApcExtension - components: - - pos: -62.5,17.5 - parent: 60 - type: Transform -- uid: 21254 - type: CableApcExtension - components: - - pos: -63.5,17.5 - parent: 60 - type: Transform -- uid: 21255 - type: CableApcExtension - components: - - pos: -64.5,17.5 - parent: 60 - type: Transform -- uid: 21256 - type: CableApcExtension - components: - - pos: -65.5,17.5 - parent: 60 - type: Transform -- uid: 21257 - type: CableApcExtension - components: - - pos: -66.5,17.5 - parent: 60 - type: Transform -- uid: 21258 - type: CableApcExtension - components: - - pos: -67.5,17.5 - parent: 60 - type: Transform -- uid: 21259 - type: CableApcExtension - components: - - pos: -68.5,17.5 - parent: 60 - type: Transform -- uid: 21260 - type: CableApcExtension - components: - - pos: -69.5,17.5 - parent: 60 - type: Transform -- uid: 21261 - type: CableApcExtension - components: - - pos: -70.5,17.5 - parent: 60 - type: Transform -- uid: 21262 - type: CableApcExtension - components: - - pos: -71.5,17.5 - parent: 60 - type: Transform -- uid: 21263 - type: CableApcExtension - components: - - pos: -72.5,17.5 - parent: 60 - type: Transform -- uid: 21265 - type: CableApcExtension - components: - - pos: -71.5,19.5 - parent: 60 - type: Transform -- uid: 21266 - type: CableApcExtension - components: - - pos: -71.5,20.5 - parent: 60 - type: Transform -- uid: 21267 - type: CableApcExtension - components: - - pos: -72.5,20.5 - parent: 60 - type: Transform -- uid: 21268 - type: CableApcExtension - components: - - pos: -73.5,20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21269 - type: CableApcExtension - components: - - pos: 10.5,-23.5 - parent: 60 - type: Transform -- uid: 21270 - type: Catwalk - components: - - pos: -80.5,17.5 - parent: 60 - type: Transform -- uid: 21271 - type: SignSecureMed - components: - - pos: -72.5,15.5 - parent: 60 - type: Transform -- uid: 21272 - type: SignSpace - components: - - pos: -71.5,21.5 - parent: 60 - type: Transform -- uid: 21273 - type: Catwalk - components: - - pos: -72.5,23.5 - parent: 60 - type: Transform -- uid: 21274 - type: Catwalk - components: - - pos: -75.5,20.5 - parent: 60 - type: Transform -- uid: 21275 - type: Catwalk - components: - - pos: -73.5,23.5 - parent: 60 - type: Transform -- uid: 21276 - type: Catwalk - components: - - pos: -74.5,23.5 - parent: 60 - type: Transform -- uid: 21277 - type: Catwalk - components: - - pos: -75.5,23.5 - parent: 60 - type: Transform -- uid: 21278 - type: Catwalk - components: - - pos: -72.5,14.5 - parent: 60 - type: Transform -- uid: 21279 - type: Catwalk - components: - - pos: -73.5,14.5 - parent: 60 - type: Transform -- uid: 21280 - type: Catwalk - components: - - pos: -74.5,14.5 - parent: 60 - type: Transform -- uid: 21281 - type: Catwalk - components: - - pos: -75.5,14.5 - parent: 60 - type: Transform -- uid: 21282 - type: Catwalk - components: - - pos: -76.5,14.5 - parent: 60 - type: Transform -- uid: 21283 - type: Catwalk - components: - - pos: -77.5,14.5 - parent: 60 - type: Transform -- uid: 21284 - type: Catwalk - components: - - pos: -75.5,17.5 - parent: 60 - type: Transform -- uid: 21285 - type: Catwalk - components: - - pos: -76.5,17.5 - parent: 60 - type: Transform -- uid: 21286 - type: Catwalk - components: - - pos: -77.5,17.5 - parent: 60 - type: Transform -- uid: 21287 - type: Catwalk - components: - - pos: -78.5,17.5 - parent: 60 - type: Transform -- uid: 21288 - type: Catwalk - components: - - pos: -79.5,17.5 - parent: 60 - type: Transform -- uid: 21289 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21290 - type: Grille - components: - - pos: -78.5,12.5 - parent: 60 - type: Transform -- uid: 21291 - type: Grille - components: - - pos: -77.5,12.5 - parent: 60 - type: Transform -- uid: 21292 - type: Grille - components: - - pos: -76.5,12.5 - parent: 60 - type: Transform -- uid: 21293 - type: Grille - components: - - pos: -75.5,12.5 - parent: 60 - type: Transform -- uid: 21294 - type: Grille - components: - - pos: -74.5,12.5 - parent: 60 - type: Transform -- uid: 21295 - type: Grille - components: - - pos: -72.5,7.5 - parent: 60 - type: Transform -- uid: 21296 - type: Grille - components: - - pos: -78.5,25.5 - parent: 60 - type: Transform -- uid: 21297 - type: Grille - components: - - pos: -77.5,25.5 - parent: 60 - type: Transform -- uid: 21298 - type: Grille - components: - - pos: -76.5,25.5 - parent: 60 - type: Transform -- uid: 21299 - type: Grille - components: - - pos: -75.5,25.5 - parent: 60 - type: Transform -- uid: 21300 - type: Grille - components: - - pos: -74.5,25.5 - parent: 60 - type: Transform -- uid: 21301 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21302 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21304 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21305 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21306 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -60.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21307 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -61.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21308 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -62.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21309 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -63.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21310 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -64.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21311 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21312 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -66.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21313 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -67.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21314 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -68.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21315 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -69.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21316 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -70.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21317 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -71.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21318 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -72.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21319 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -73.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21320 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -74.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21321 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -75.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21322 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -76.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21323 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -77.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21324 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -78.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21325 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -58.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21326 - type: GasPipeBend - components: - - pos: -58.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21327 - type: GasVentPump - components: - - pos: -72.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21328 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -73.5,18.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 21329 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -74.5,18.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21330 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: -75.5,18.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 21331 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -75.5,21.5 - parent: 60 - type: Transform -- uid: 21332 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -75.5,22.5 - parent: 60 - type: Transform -- uid: 21335 - type: MagazinePistol - components: - - pos: -28.71958,-0.18080005 - parent: 60 - type: Transform - - unspawnedCount: 10 - type: BallisticAmmoProvider -- uid: 21336 - type: MagazinePistol - components: - - pos: -28.53208,-0.18080005 - parent: 60 - type: Transform - - unspawnedCount: 10 - type: BallisticAmmoProvider -- uid: 21337 - type: MagazinePistol - components: - - pos: -28.31333,-0.19642505 - parent: 60 - type: Transform - - unspawnedCount: 10 - type: BallisticAmmoProvider -- uid: 21338 - type: FirelockGlass - components: - - pos: 7.5,-26.5 - parent: 60 - type: Transform -- uid: 21339 - type: SignalButton - components: - - pos: 6.5,-30.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 21340 - - port: Toggle - uid: 21341 - - port: Toggle - uid: 21342 - - port: Toggle - uid: 21343 - type: SignalTransmitter -- uid: 21340 - type: ShuttersNormalOpen - components: - - pos: 4.5,-26.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21339 - type: SignalReceiver -- uid: 21341 - type: ShuttersNormalOpen - components: - - pos: 5.5,-26.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21339 - type: SignalReceiver -- uid: 21342 - type: ShuttersNormalOpen - components: - - pos: 6.5,-26.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21339 - type: SignalReceiver -- uid: 21343 - type: ShuttersNormalOpen - components: - - pos: 7.5,-26.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21339 - type: SignalReceiver -- uid: 21344 - type: ReinforcedWindow - components: - - pos: 4.5,-26.5 - parent: 60 - type: Transform -- uid: 21345 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-4.5 - parent: 60 - type: Transform -- uid: 21346 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 60 - type: Transform -- uid: 21347 - type: WindowDirectional - components: - - pos: -67.5,9.5 - parent: 60 - type: Transform -- uid: 21348 - type: CarpetOrange - components: - - pos: 10.5,20.5 - parent: 60 - type: Transform -- uid: 21349 - type: CarpetOrange - components: - - pos: 9.5,20.5 - parent: 60 - type: Transform -- uid: 21350 - type: CarpetOrange - components: - - pos: 8.5,20.5 - parent: 60 - type: Transform -- uid: 21351 - type: PenCap - components: - - pos: 6.7579217,-7.082321 - parent: 60 - type: Transform -- uid: 21352 - type: Grille - components: - - pos: 60.5,-42.5 - parent: 60 - type: Transform -- uid: 21353 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-26.5 - parent: 60 - type: Transform -- uid: 21354 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -24.5,-26.5 - parent: 60 - type: Transform -- uid: 21355 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-26.5 - parent: 60 - type: Transform -- uid: 21356 - type: DisposalPipe - components: - - pos: -24.5,-25.5 - parent: 60 - type: Transform -- uid: 21357 - type: DisposalPipe - components: - - pos: -24.5,-24.5 - parent: 60 - type: Transform -- uid: 21358 - type: WindowDirectional - components: - - pos: -66.5,9.5 - parent: 60 - type: Transform -- uid: 21359 - type: WindowDirectional - components: - - pos: -64.5,9.5 - parent: 60 - type: Transform -- uid: 21360 - type: WindowDirectional - components: - - pos: -63.5,9.5 - parent: 60 - type: Transform -- uid: 21362 - type: PottedPlant24 - components: - - pos: -11.5,15.5 - parent: 60 - type: Transform -- uid: 21363 - type: PottedPlantRandom - components: - - pos: 26.5,9.5 - parent: 60 - type: Transform -- uid: 21366 - type: Table - components: - - pos: -41.5,14.5 - parent: 60 - type: Transform -- uid: 21367 - type: Stool - components: - - pos: -45.5,-6.5 - parent: 60 - type: Transform -- uid: 21368 - type: EmergencyLight - components: - - pos: -46.5,0.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21369 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -44.5,-8.5 - parent: 60 - type: Transform -- uid: 21370 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,9.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21371 - type: EmergencyLight - components: - - pos: -38.5,14.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21372 - type: EmergencyLight - components: - - pos: -32.5,26.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21373 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,35.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21374 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -19.5,34.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21375 - type: EmergencyLight - components: - - pos: -13.5,46.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21376 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -5.5,27.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21377 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,32.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21378 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,26.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21379 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,16.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21380 - type: EmergencyLight - components: - - pos: -26.5,2.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21381 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-14.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21382 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-43.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21383 - type: MaterialDiamond1 - components: - - pos: 6.0860467,-7.551071 - parent: 60 - type: Transform -- uid: 21384 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21385 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 22.5,7.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21386 - type: EmergencyLight - components: - - pos: 47.5,3.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21387 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,11.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21388 - type: EmergencyLight - components: - - pos: 38.5,11.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21389 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 27.5,23.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21390 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,13.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21391 - type: EmergencyLight - components: - - pos: -1.5,11.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21392 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,3.5 - parent: 60 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21393 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -15.5,29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21394 - type: PortableScrubber - components: - - pos: -16.5,30.5 - parent: 60 - type: Transform -- uid: 21395 - type: PortableScrubber - components: - - pos: -15.5,30.5 - parent: 60 - type: Transform -- uid: 21396 - type: PosterLegitDickGumshue - components: - - pos: -26.5,-25.5 - parent: 60 - type: Transform -- uid: 21397 - type: PosterLegitReportCrimes - components: - - pos: -22.5,-25.5 - parent: 60 - type: Transform -- uid: 21398 - type: BrbSign - components: - - pos: 4.471663,-30.664755 - parent: 60 - type: Transform -- uid: 21399 - type: Chair - components: - - pos: 31.5,9.5 - parent: 60 - type: Transform -- uid: 21400 - type: Chair - components: - - pos: 29.5,9.5 - parent: 60 - type: Transform -- uid: 21401 - type: DisposalTrunk - components: - - pos: 30.5,9.5 - parent: 60 - type: Transform -- uid: 21402 - type: DisposalUnit - components: - - pos: 30.5,9.5 - parent: 60 - type: Transform -- uid: 21403 - type: PaintingHelloWorld - components: - - pos: -113.5,20.5 - parent: 60 - type: Transform -- uid: 21404 - type: RandomPainting - components: - - pos: 6.5,-4.5 - parent: 60 - type: Transform -- uid: 21405 - type: Girder - components: - - pos: 8.5,-5.5 - parent: 60 - type: Transform -- uid: 21406 - type: RandomSpawner - components: - - pos: 31.5,0.5 - parent: 60 - type: Transform -- uid: 21407 - type: RandomSpawner - components: - - pos: 15.5,-9.5 - parent: 60 - type: Transform -- uid: 21408 - type: RandomSpawner - components: - - pos: -6.5,10.5 - parent: 60 - type: Transform -- uid: 21409 - type: RandomSpawner - components: - - pos: -43.5,19.5 - parent: 60 - type: Transform -- uid: 21410 - type: RandomSpawner - components: - - pos: -36.5,0.5 - parent: 60 - type: Transform -- uid: 21411 - type: RandomSpawner - components: - - pos: -38.5,-21.5 - parent: 60 - type: Transform -- uid: 21412 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-19.5 - parent: 60 - type: Transform -- uid: 21413 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -94.5,17.5 - parent: 60 - type: Transform -- uid: 21414 - type: ChairOfficeLight - components: - - pos: 29.5,-16.5 - parent: 60 - type: Transform -- uid: 21415 - type: SignalButton - components: - - pos: 38.5,-33.5 - parent: 60 - type: Transform -- uid: 21417 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -45.5,-8.5 - parent: 60 - type: Transform -- uid: 21418 - type: computerBodyScanner - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-10.5 - parent: 60 - type: Transform -- uid: 21419 - type: FirelockGlass - components: - - pos: -58.5,18.5 - parent: 60 - type: Transform -- uid: 21420 - type: Grille - components: - - pos: -9.5,34.5 - parent: 60 - type: Transform -- uid: 21421 - type: Grille - components: - - pos: -9.5,35.5 - parent: 60 - type: Transform -- uid: 21422 - type: Grille - components: - - pos: -9.5,36.5 - parent: 60 - type: Transform -- uid: 21423 - type: ReinforcedWindow - components: - - pos: -5.5,-37.5 - parent: 60 - type: Transform -- uid: 21424 - type: ReinforcedWindow - components: - - pos: -5.5,-38.5 - parent: 60 - type: Transform -- uid: 21425 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-36.5 - parent: 60 - type: Transform -- uid: 21426 - type: Grille - components: - - pos: -8.5,-36.5 - parent: 60 - type: Transform -- uid: 21427 - type: Grille - components: - - pos: -7.5,-36.5 - parent: 60 - type: Transform -- uid: 21428 - type: Grille - components: - - pos: -6.5,-36.5 - parent: 60 - type: Transform -- uid: 21429 - type: CableHV - components: - - pos: -7.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21430 - type: CableMV - components: - - pos: -7.5,-37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21431 - type: PortableScrubber - components: - - pos: -8.5,-37.5 - parent: 60 - type: Transform -- uid: 21432 - type: SignElectricalMed - components: - - pos: -6.5,-39.5 - parent: 60 - type: Transform -- uid: 21433 - type: Table - components: - - pos: -6.5,-37.5 - parent: 60 - type: Transform -- uid: 21434 - type: Grille - components: - - pos: -5.5,-38.5 - parent: 60 - type: Transform -- uid: 21435 - type: Grille - components: - - pos: -5.5,-37.5 - parent: 60 - type: Transform -- uid: 21436 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -6.5,-38.5 - parent: 60 - type: Transform -- uid: 21437 - type: HolofanProjector - components: - - pos: -6.3791656,-37.542637 - parent: 60 - type: Transform -- uid: 21438 - type: ClothingMaskGasAtmos - components: - - pos: -6.6291656,-37.30826 - parent: 60 - type: Transform -- uid: 21439 - type: GasPipeStraight - components: - - pos: -7.5,-39.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21440 - type: GasPipeBend - components: - - pos: -7.5,-38.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21441 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -8.5,-38.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21442 - type: GasPort - components: - - pos: -8.5,-37.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21443 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-35.5 - parent: 60 - type: Transform -- uid: 21444 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-38.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21445 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-34.5 - parent: 60 - type: Transform -- uid: 21446 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-35.5 - parent: 60 - type: Transform -- uid: 21447 - type: WallSolid - components: - - pos: -62.5,42.5 - parent: 60 - type: Transform -- uid: 21448 - type: CableHV - components: - - pos: -13.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21449 - type: CableHV - components: - - pos: -12.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21450 - type: CableHV - components: - - pos: -11.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21451 - type: CableHV - components: - - pos: -11.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21452 - type: CableMV - components: - - pos: -13.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21453 - type: CableMV - components: - - pos: -12.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21454 - type: CableMV - components: - - pos: -11.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21455 - type: CableMV - components: - - pos: -11.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21456 - type: Grille - components: - - pos: -12.5,-35.5 - parent: 60 - type: Transform -- uid: 21457 - type: Grille - components: - - pos: -11.5,-35.5 - parent: 60 - type: Transform -- uid: 21458 - type: Grille - components: - - pos: -10.5,-35.5 - parent: 60 - type: Transform -- uid: 21459 - type: Grille - components: - - pos: -9.5,-34.5 - parent: 60 - type: Transform -- uid: 21460 - type: Grille - components: - - pos: -9.5,-33.5 - parent: 60 - type: Transform -- uid: 21461 - type: Table - components: - - pos: -10.5,-34.5 - parent: 60 - type: Transform -- uid: 21462 - type: ChairOfficeDark - components: - - pos: -10.5,-33.5 - parent: 60 - type: Transform -- uid: 21463 - type: LockerWeldingSuppliesFilled - components: - - pos: -12.5,-34.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21464 - type: ClothingHeadHatWelding - components: - - pos: -10.464324,-34.397003 - parent: 60 - type: Transform -- uid: 21465 - type: SignElectricalMed - components: - - pos: -12.5,-31.5 - parent: 60 - type: Transform -- uid: 21466 - type: CableApcExtension - components: - - pos: -13.5,-32.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21467 - type: CableApcExtension - components: - - pos: -13.5,-31.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21468 - type: CableApcExtension - components: - - pos: -13.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21469 - type: CableApcExtension - components: - - pos: -12.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21470 - type: CableApcExtension - components: - - pos: -11.5,-33.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21471 - type: PoweredSmallLight - components: - - pos: -11.5,-33.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21472 - type: CableApcExtension - components: - - pos: -58.5,23.5 - parent: 60 - type: Transform -- uid: 21473 - type: ReinforcedWindow - components: - - pos: 33.5,-56.5 - parent: 60 - type: Transform -- uid: 21474 - type: SignSpace - components: - - pos: 32.5,-56.5 - parent: 60 - type: Transform -- uid: 21475 - type: SignSpace - components: - - pos: 64.5,-37.5 - parent: 60 - type: Transform -- uid: 21476 - type: SignSpace - components: - - pos: -24.5,47.5 - parent: 60 - type: Transform -- uid: 21477 - type: SignSpace - components: - - pos: -66.5,-17.5 - parent: 60 - type: Transform -- uid: 21478 - type: BananaPhoneInstrument - components: - - pos: 22.652525,-11.2580805 - parent: 60 - type: Transform -- uid: 21479 - type: CrewMonitoringServer - components: - - pos: -51.5,7.5 - parent: 60 - type: Transform -- uid: 21480 - type: DrinkMugRed - components: - - pos: -33.610073,-0.39429778 - parent: 60 - type: Transform -- uid: 21481 - type: DrinkMugMetal - components: - - pos: -33.338852,-0.5192978 - parent: 60 - type: Transform -- uid: 21482 - type: ComputerRadar - components: - - rot: -1.5707963267948966 rad - pos: 51.5,1.5 - parent: 60 - type: Transform -- uid: 21483 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-15.5 - parent: 60 - type: Transform - - devices: - - 458 - - 459 - - 460 - - 428 - - 426 - - 21485 - - 18464 - - 18463 - - 18462 - type: DeviceList -- uid: 21484 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 60 - type: Transform - - devices: - - 458 - - 459 - - 460 - - 18464 - - 18463 - - 18462 - - 21485 - type: DeviceList -- uid: 21485 - type: AirSensor - components: - - pos: 0.5,-15.5 - parent: 60 - type: Transform -- uid: 21486 - type: AirSensor - components: - - pos: 0.5,-4.5 - parent: 60 - type: Transform -- uid: 21487 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 60 - type: Transform - - devices: - - 18609 - - 21486 - - 18464 - - 18463 - - 18462 - type: DeviceList -- uid: 21488 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 60 - type: Transform - - devices: - - 18609 - - 21486 - - 18464 - - 18463 - - 18462 - - 18426 - - 18425 - - 18429 - - 18430 - type: DeviceList -- uid: 21489 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 60 - type: Transform - - devices: - - 21492 - - 21491 - - 18608 - - invalid - - 18272 - - 18270 - - 18434 - type: DeviceList -- uid: 21490 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 60 - type: Transform - - devices: - - 21492 - - 21491 - - 18608 - type: DeviceList -- uid: 21491 - type: AirSensor - components: - - pos: -2.5,-2.5 - parent: 60 - type: Transform -- uid: 21492 - type: AirSensor - components: - - pos: -6.5,-2.5 - parent: 60 - type: Transform -- uid: 21493 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 60 - type: Transform - - devices: - - 18609 - - 21494 - type: DeviceList -- uid: 21494 - type: AirSensor - components: - - pos: -1.5,0.5 - parent: 60 - type: Transform -- uid: 21495 - type: AirSensor - components: - - pos: -6.5,-23.5 - parent: 60 - type: Transform -- uid: 21496 - type: AirAlarm - components: - - pos: -6.5,-21.5 - parent: 60 - type: Transform - - devices: - - 670 - - 672 - - 671 - - 21495 - - 3996 - - 4001 - - 585 - - invalid - - 928 - - 904 - type: DeviceList -- uid: 21497 - type: FireAlarm - components: - - pos: -10.5,-21.5 - parent: 60 - type: Transform - - devices: - - 670 - - 672 - - 671 - - 21495 - - 3996 - - 4001 - - 585 - - invalid - type: DeviceList -- uid: 21498 - type: FireAlarm - components: - - pos: 10.5,-21.5 - parent: 60 - type: Transform - - devices: - - 5204 - - 4791 - - 7472 - - 21502 - - 6125 - - 6127 - - 6126 - - 675 - - 674 - - 673 - type: DeviceList -- uid: 21499 - type: AirAlarm - components: - - pos: 11.5,-21.5 - parent: 60 - type: Transform - - devices: - - 5204 - - 4791 - - 7472 - - 21502 - - 6125 - - 6127 - - 6126 - - 675 - - 674 - - 673 - - 1455 - - 1456 - type: DeviceList -- uid: 21500 - type: PosterMapBagel - components: - - pos: -1.5,-4.5 - parent: 60 - type: Transform -- uid: 21501 - type: AirSensor - components: - - pos: 30.5,-23.5 - parent: 60 - type: Transform -- uid: 21502 - type: AirSensor - components: - - pos: 10.5,-23.5 - parent: 60 - type: Transform -- uid: 21503 - type: FireAlarm - components: - - pos: -22.5,-21.5 - parent: 60 - type: Transform - - devices: - - 21505 - - 112 - - 81 - - 63 - - 3996 - - 4001 - - 585 - - 121 - - 836 - - 158 - - 11338 - - 11339 - - 11340 - - 15846 - - 2585 - - 17493 - type: DeviceList -- uid: 21504 - type: AirAlarm - components: - - pos: -24.5,-21.5 - parent: 60 - type: Transform - - devices: - - 21505 - - 112 - - 81 - - 63 - - 3996 - - 4001 - - 585 - - 121 - - 836 - - 158 - - 11338 - - 11339 - - 11340 - - 1511 - - 516 - - 6065 - - 6087 - type: DeviceList -- uid: 21505 - type: AirSensor - components: - - pos: -21.5,-23.5 - parent: 60 - type: Transform -- uid: 21506 - type: FireAlarm - components: - - pos: -31.5,-21.5 - parent: 60 - type: Transform - - devices: - - 21508 - - invalid - - 5940 - - 6097 - - 6098 - - 15846 - - 2585 - - 17493 - type: DeviceList -- uid: 21507 - type: AirAlarm - components: - - pos: -30.5,-21.5 - parent: 60 - type: Transform - - devices: - - 21508 - - invalid - - 5940 - - 6097 - - 6098 - - 6002 - - 5962 - - 6093 - - 5961 - - 15846 - - 2585 - - 17493 - type: DeviceList -- uid: 21508 - type: AirSensor - components: - - pos: -31.5,-23.5 - parent: 60 - type: Transform -- uid: 21509 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-5.5 - parent: 60 - type: Transform - - devices: - - 11340 - - 11339 - - 11338 - - 18859 - - 18858 - - 18857 - - 21511 - - 792 - - 788 - - 1133 - - 1136 - type: DeviceList -- uid: 21510 - type: CableMV - components: - - pos: 46.5,-32.5 - parent: 60 - type: Transform -- uid: 21511 - type: AirSensor - components: - - pos: -15.5,-10.5 - parent: 60 - type: Transform -- uid: 21512 - type: AirSensor - components: - - pos: 11.5,8.5 - parent: 60 - type: Transform -- uid: 21513 - type: AirSensor - components: - - pos: -9.5,8.5 - parent: 60 - type: Transform -- uid: 21514 - type: FireAlarm - components: - - pos: -4.5,11.5 - parent: 60 - type: Transform - - devices: - - 6625 - - 6542 - - 6103 - - 21513 - - 21512 - - 5742 - - 5743 - - 5744 - type: DeviceList -- uid: 21515 - type: AirAlarm - components: - - pos: 5.5,11.5 - parent: 60 - type: Transform - - devices: - - 6625 - - 6542 - - 6103 - - 21513 - - 21512 - - 5742 - - 5743 - - 5744 - - 5745 - - 14325 - - 5738 - - 5739 - - 5411 - - 5412 - type: DeviceList -- uid: 21516 - type: CableApcExtension - components: - - pos: 8.5,2.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21517 - type: CableApcExtension - components: - - pos: 9.5,2.5 - parent: 60 - type: Transform -- uid: 21518 - type: CableApcExtension - components: - - pos: 9.5,1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21519 - type: CableApcExtension - components: - - pos: 10.5,1.5 - parent: 60 - type: Transform -- uid: 21520 - type: CableApcExtension - components: - - pos: 11.5,1.5 - parent: 60 - type: Transform -- uid: 21521 - type: CableApcExtension - components: - - pos: 12.5,1.5 - parent: 60 - type: Transform -- uid: 21522 - type: CableApcExtension - components: - - pos: 13.5,1.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21523 - type: CableApcExtension - components: - - pos: 13.5,2.5 - parent: 60 - type: Transform -- uid: 21524 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 49.5,20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21525 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 51.5,23.5 - parent: 60 - type: Transform -- uid: 21526 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 47.5,23.5 - parent: 60 - type: Transform -- uid: 21527 - type: WindowDirectional - components: - - pos: 48.5,23.5 - parent: 60 - type: Transform -- uid: 21528 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 50.5,23.5 - parent: 60 - type: Transform -- uid: 21529 - type: FireAlarm - components: - - pos: 39.5,26.5 - parent: 60 - type: Transform - - devices: - - 21531 - - 21530 - - 19060 - - 19061 - - 19062 - - 11834 - type: DeviceList -- uid: 21530 - type: AirSensor - components: - - pos: 40.5,21.5 - parent: 60 - type: Transform -- uid: 21531 - type: AirSensor - components: - - pos: 54.5,21.5 - parent: 60 - type: Transform -- uid: 21532 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 3.141592653589793 rad - pos: 44.5,31.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 21533 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 3.141592653589793 rad - pos: 46.5,31.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 21534 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 3.141592653589793 rad - pos: 52.5,31.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 21535 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 3.141592653589793 rad - pos: 54.5,31.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 21536 - type: FireAlarm - components: - - pos: 52.5,15.5 - parent: 60 - type: Transform -- uid: 21537 - type: AirAlarm - components: - - pos: 49.5,15.5 - parent: 60 - type: Transform - - devices: - - 18687 - - 18664 - - 18663 - - 18686 - - 21538 - - 18668 - - 18685 - type: DeviceList -- uid: 21538 - type: AirSensor - components: - - pos: 51.5,10.5 - parent: 60 - type: Transform -- uid: 21539 - type: FireAlarm - components: - - pos: 20.5,10.5 - parent: 60 - type: Transform - - devices: - - 13151 - - 13152 - - 13153 - - 21541 - - 11969 - - 11698 - - 12329 - type: DeviceList -- uid: 21540 - type: AirAlarm - components: - - pos: 21.5,10.5 - parent: 60 - type: Transform - - devices: - - 13151 - - 13152 - - 13153 - - 21541 - - 11969 - - 11698 - - 12329 - - 13548 - - 13563 - - 19055 - - 19054 - type: DeviceList -- uid: 21541 - type: AirSensor - components: - - pos: 27.5,8.5 - parent: 60 - type: Transform -- uid: 21542 - type: AirAlarm - components: - - pos: 36.5,12.5 - parent: 60 - type: Transform - - devices: - - 13141 - - 13106 - - 13107 - - 13148 - - 13149 - - 13150 - - 13151 - - 13152 - - 13153 - - 21544 - - 13075 - - 13074 - type: DeviceList -- uid: 21543 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 60 - type: Transform - - devices: - - 13141 - - 13106 - - 13107 - - 13148 - - 13149 - - 13150 - - 13151 - - 13152 - - 13153 - - 21544 - type: DeviceList -- uid: 21544 - type: AirSensor - components: - - pos: 38.5,8.5 - parent: 60 - type: Transform -- uid: 21545 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 42.5,16.5 - parent: 60 - type: Transform - - devices: - - 13148 - - 13149 - - 13150 - - 21547 - type: DeviceList -- uid: 21546 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 38.5,16.5 - parent: 60 - type: Transform - - devices: - - 13148 - - 13149 - - 13150 - - 21547 - - 13073 - - 19403 - type: DeviceList -- uid: 21547 - type: AirSensor - components: - - pos: 40.5,15.5 - parent: 60 - type: Transform -- uid: 21548 - type: AirSensor - components: - - pos: 47.5,1.5 - parent: 60 - type: Transform -- uid: 21551 - type: AirSensor - components: - - pos: 16.5,16.5 - parent: 60 - type: Transform -- uid: 21552 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 14.5,17.5 - parent: 60 - type: Transform - - devices: - - 5889 - - 5651 - - 5649 - - 8611 - - 8612 - - 8613 - - 21551 - - 13242 - - 6290 - - 13238 - - 13241 - - 6300 - - 6299 - type: DeviceList -- uid: 21553 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 14.5,21.5 - parent: 60 - type: Transform - - devices: - - 5889 - - 5651 - - 5649 - - 8611 - - 8612 - - 8613 - - 21551 - type: DeviceList -- uid: 21554 - type: AirAlarm - components: - - pos: 22.5,27.5 - parent: 60 - type: Transform - - devices: - - 19045 - - 19050 - - 19046 - - 21556 - - 19060 - - 19061 - - 19062 - - 19058 - - 19057 - - 19056 - - 19059 - type: DeviceList -- uid: 21555 - type: FireAlarm - components: - - pos: 34.5,27.5 - parent: 60 - type: Transform - - devices: - - 19045 - - 19050 - - 19046 - - 21556 - - 19060 - - 19061 - - 19062 - type: DeviceList -- uid: 21556 - type: AirSensor - components: - - pos: 28.5,24.5 - parent: 60 - type: Transform -- uid: 21557 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-14.5 - parent: 60 - type: Transform - - devices: - - 6127 - - 6126 - - 6125 - - invalid - - 21559 - - 12591 - - 12592 - - 3692 - - 3693 - - 4369 - - 1198 - - 4546 - type: DeviceList -- uid: 21558 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-10.5 - parent: 60 - type: Transform - - devices: - - 6127 - - 6126 - - 6125 - - invalid - - 21559 - - 4369 - - 1198 - - 4546 - type: DeviceList -- uid: 21559 - type: AirSensor - components: - - pos: 16.5,-13.5 - parent: 60 - type: Transform -- uid: 21560 - type: FireAlarm - components: - - pos: 24.5,-14.5 - parent: 60 - type: Transform - - devices: - - 7630 - - 6489 - - 6561 - - 6490 - - 21562 - type: DeviceList -- uid: 21561 - type: AirAlarm - components: - - pos: 21.5,-14.5 - parent: 60 - type: Transform - - devices: - - 7630 - - 6489 - - 6561 - - 6490 - - 21562 - - 263 - - 179 - - 127 - - 223 - type: DeviceList -- uid: 21562 - type: AirSensor - components: - - pos: 19.5,-19.5 - parent: 60 - type: Transform -- uid: 21563 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-27.5 - parent: 60 - type: Transform - - devices: - - 8192 - - 8193 - - 8194 - - 8195 - - 8196 - - 2909 - - 2908 - - 2891 - - 2898 - - 2227 - - 3505 - - 2213 - - 2233 - - 2232 - - 2880 - - 21565 - - 2770 - - 2771 - type: DeviceList -- uid: 21564 - type: AirAlarm - components: - - pos: 18.5,-25.5 - parent: 60 - type: Transform - - devices: - - 8192 - - 8193 - - 8194 - - 8195 - - 8196 - - 2909 - - 2908 - - 2891 - - 2898 - - 2227 - - 3505 - - 2213 - - 2233 - - 2232 - - 2880 - - 21565 - - 2770 - - 2771 - - 2706 - - 5822 - - 629 - - 5820 - type: DeviceList -- uid: 21565 - type: AirSensor - components: - - pos: 19.5,-30.5 - parent: 60 - type: Transform -- uid: 21566 - type: FireAlarm - components: - - pos: 25.5,-29.5 - parent: 60 - type: Transform - - devices: - - 8196 - - 8195 - - 8194 - - 8193 - - 8192 - - 2408 - - 2407 - - 2304 - - 21568 - type: DeviceList -- uid: 21567 - type: AirAlarm - components: - - pos: 26.5,-29.5 - parent: 60 - type: Transform - - devices: - - 8196 - - 8195 - - 8194 - - 8193 - - 8192 - - 2408 - - 2407 - - 2304 - - 21568 - - 2370 - - 2360 - - invalid - type: DeviceList -- uid: 21568 - type: AirSensor - components: - - pos: 25.5,-31.5 - parent: 60 - type: Transform -- uid: 21569 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-27.5 - parent: 60 - type: Transform - - devices: - - 2459 - - 2408 - - 2407 - - 2304 - - 2454 - - 2455 - - 2456 - - 21571 - type: DeviceList -- uid: 21570 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-26.5 - parent: 60 - type: Transform - - devices: - - 2459 - - 2408 - - 2407 - - 2304 - - 2454 - - 2455 - - 2456 - - 21571 - - 2217 - - 2208 - - 5824 - - 2215 - - 5823 - - 2205 - type: DeviceList -- uid: 21571 - type: AirSensor - components: - - pos: 33.5,-33.5 - parent: 60 - type: Transform -- uid: 21572 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-30.5 - parent: 60 - type: Transform - - devices: - - 2459 - - 2687 - - 2680 - - 2686 - - 12632 - - 21574 - - 9046 - - 12633 - type: DeviceList -- uid: 21573 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-31.5 - parent: 60 - type: Transform - - devices: - - 2459 - - 2687 - - 2680 - - 2686 - - 12632 - - 21574 - - 9046 - - 12633 - - 2507 - type: DeviceList -- uid: 21574 - type: AirSensor - components: - - pos: 39.5,-31.5 - parent: 60 - type: Transform -- uid: 21575 - type: AirSensor - components: - - pos: 51.5,-31.5 - parent: 60 - type: Transform -- uid: 21576 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-30.5 - parent: 60 - type: Transform - - devices: - - 21575 - type: DeviceList -- uid: 21577 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-30.5 - parent: 60 - type: Transform - - devices: - - 21575 - - 3002 - - 2983 - - 3019 - - 3027 - - 2996 - - 2984 - type: DeviceList -- uid: 21578 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-18.5 - parent: 60 - type: Transform - - devices: - - 12623 - - 5404 - - 114 - - 337 - - invalid - - 5831 - - 5439 - - 3123 - - 2878 - - 21581 - - 4336 - - 4154 - - 7030 - - 21579 - - 8961 - - 3110 - - 18825 - type: DeviceList -- uid: 21579 - type: FirelockGlass - components: - - pos: 43.5,-15.5 - parent: 60 - type: Transform -- uid: 21580 - type: CarpetGreen - components: - - pos: 20.5,-37.5 - parent: 60 - type: Transform -- uid: 21581 - type: AirSensor - components: - - pos: 51.5,-23.5 - parent: 60 - type: Transform -- uid: 21582 - type: FireAlarm - components: - - pos: 37.5,-15.5 - parent: 60 - type: Transform - - devices: - - 8968 - - 94 - - 8959 - - 74 - type: DeviceList -- uid: 21583 - type: AirSensor - components: - - pos: 34.5,-16.5 - parent: 60 - type: Transform -- uid: 21584 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-18.5 - parent: 60 - type: Transform - - devices: - - 21583 - - 8959 - - 74 - - 5487 - type: DeviceList -- uid: 21585 - type: AirAlarm - components: - - pos: 30.5,-15.5 - parent: 60 - type: Transform - - devices: - - 21583 - - 8959 - - 74 - - 61 - - 8962 - - 9062 - - 9063 - - 9061 - - 5445 - type: DeviceList -- uid: 21586 - type: AirSensor - components: - - pos: 37.5,-23.5 - parent: 60 - type: Transform -- uid: 21587 - type: AirAlarm - components: - - pos: 41.5,-21.5 - parent: 60 - type: Transform - - devices: - - 12624 - - 2704 - - 21586 - type: DeviceList -- uid: 21588 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-8.5 - parent: 60 - type: Transform - - devices: - - 12868 - - 21590 - - 1246 - type: DeviceList -- uid: 21589 - type: AirSensor - components: - - pos: 0.5,-35.5 - parent: 60 - type: Transform -- uid: 21590 - type: AirSensor - components: - - pos: 39.5,-9.5 - parent: 60 - type: Transform -- uid: 21591 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-39.5 - parent: 60 - type: Transform - - devices: - - 9097 - - 9096 - - 9095 - - 21589 - - 3992 - - 3991 - - 3990 - type: DeviceList -- uid: 21592 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-32.5 - parent: 60 - type: Transform - - devices: - - 9097 - - 9096 - - 9095 - - 21589 - - 3992 - - 3991 - - 3990 - - 3986 - - 3985 - - 1429 - - 1430 - type: DeviceList -- uid: 21593 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-32.5 - parent: 60 - type: Transform - - devices: - - 1385 - - invalid - - 1397 - type: DeviceList -- uid: 21594 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-47.5 - parent: 60 - type: Transform - - devices: - - 3992 - - 3991 - - 3990 - - 5042 - - 5043 - - 5044 - - 21596 - type: DeviceList -- uid: 21595 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-51.5 - parent: 60 - type: Transform - - devices: - - 3992 - - 3991 - - 3990 - - 5042 - - 5043 - - 5044 - - 21596 - - 4953 - - 4944 - type: DeviceList -- uid: 21596 - type: AirSensor - components: - - pos: 0.5,-49.5 - parent: 60 - type: Transform -- uid: 21597 - type: CarpetGreen - components: - - pos: 19.5,-37.5 - parent: 60 - type: Transform -- uid: 21598 - type: CarpetPurple - components: - - pos: 18.5,-30.5 - parent: 60 - type: Transform -- uid: 21599 - type: CarpetPurple - components: - - pos: 18.5,-29.5 - parent: 60 - type: Transform -- uid: 21600 - type: CarpetGreen - components: - - pos: 20.5,-38.5 - parent: 60 - type: Transform -- uid: 21601 - type: CarpetGreen - components: - - pos: 18.5,-38.5 - parent: 60 - type: Transform -- uid: 21602 - type: CarpetGreen - components: - - pos: 18.5,-37.5 - parent: 60 - type: Transform -- uid: 21603 - type: ChairWood - components: - - pos: 18.5,-32.5 - parent: 60 - type: Transform -- uid: 21604 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 19.5,-34.5 - parent: 60 - type: Transform -- uid: 21605 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 18.5,-34.5 - parent: 60 - type: Transform -- uid: 21606 - type: CarpetGreen - components: - - pos: 19.5,-38.5 - parent: 60 - type: Transform -- uid: 21607 - type: TableWood - components: - - pos: 18.5,-33.5 - parent: 60 - type: Transform -- uid: 21608 - type: ShuttleWindow - components: - - pos: 10.5,-76.5 - parent: 60 - type: Transform -- uid: 21609 - type: VendingMachineHappyHonk - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,-35.5 - parent: 60 - type: Transform -- uid: 21610 - type: Rack - components: - - pos: 18.5,-40.5 - parent: 60 - type: Transform -- uid: 21611 - type: Table - components: - - pos: 24.5,-31.5 - parent: 60 - type: Transform -- uid: 21612 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -39.5,2.5 - parent: 60 - type: Transform - - devices: - - 8957 - - 8774 - - 491 - - 9468 - - 5623 - - 8168 - - 6098 - - 6097 - - 5940 - - 21615 - - 2772 - - 5952 - - 1787 - - 1771 - type: DeviceList -- uid: 21613 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -39.5,1.5 - parent: 60 - type: Transform - - devices: - - 8957 - - 8774 - - 491 - - 9468 - - 5623 - - 8168 - - 6098 - - 6097 - - 5940 - - 21615 - type: DeviceList -- uid: 21614 - type: AirSensor - components: - - pos: -37.5,7.5 - parent: 60 - type: Transform -- uid: 21615 - type: AirSensor - components: - - pos: -37.5,-15.5 - parent: 60 - type: Transform -- uid: 21616 - type: AirAlarm - components: - - pos: -45.5,1.5 - parent: 60 - type: Transform - - devices: - - 9526 - - 9527 - - 9528 - - 8168 - - 5623 - - 9468 - - 21618 - - 6109 - - 6134 - - 9607 - - 9608 - type: DeviceList -- uid: 21617 - type: FireAlarm - components: - - pos: -46.5,1.5 - parent: 60 - type: Transform - - devices: - - 9526 - - 9527 - - 9528 - - 8168 - - 5623 - - 9468 - - 21618 - type: DeviceList -- uid: 21618 - type: AirSensor - components: - - pos: -48.5,-2.5 - parent: 60 - type: Transform -- uid: 21619 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-0.5 - parent: 60 - type: Transform - - devices: - - 9409 - - 9410 - - 9411 - - invalid - - 12594 - - 5938 - - 12571 - type: DeviceList -- uid: 21620 - type: WeldingFuelTankFull - components: - - pos: 19.5,-40.5 - parent: 60 - type: Transform -- uid: 21621 - type: LockerWeldingSuppliesFilled - components: - - pos: 17.5,-40.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21622 - type: AirAlarm - components: - - pos: -48.5,5.5 - parent: 60 - type: Transform - - devices: - - 9526 - - 9527 - - 9528 - - 9411 - - 9410 - - 9409 - - 21624 - - 6032 - - 9672 - - 6028 - - 5980 - - 21625 - type: DeviceList -- uid: 21623 - type: FireAlarm - components: - - pos: -51.5,6.5 - parent: 60 - type: Transform - - devices: - - 9526 - - 9527 - - 9528 - - 9411 - - 9410 - - 9409 - - 21624 - type: DeviceList -- uid: 21624 - type: AirSensor - components: - - pos: -50.5,4.5 - parent: 60 - type: Transform -- uid: 21625 - type: AirSensor - components: - - pos: -42.5,5.5 - parent: 60 - type: Transform -- uid: 21627 - type: Grille - components: - - pos: 23.5,30.5 - parent: 60 - type: Transform -- uid: 21628 - type: AirSensor - components: - - pos: -45.5,13.5 - parent: 60 - type: Transform -- uid: 21629 - type: AirAlarm - components: - - pos: -36.5,15.5 - parent: 60 - type: Transform - - devices: - - 21631 - - 7146 - - invalid - - 6015 - - 5990 - - 21632 - - 9678 - - 9677 - type: DeviceList -- uid: 21630 - type: FireAlarm - components: - - pos: -37.5,15.5 - parent: 60 - type: Transform - - devices: - - 21631 - - 7146 - - 6015 - - 5990 - - 21632 - type: DeviceList -- uid: 21631 - type: AirSensor - components: - - pos: -40.5,13.5 - parent: 60 - type: Transform -- uid: 21632 - type: AirSensor - components: - - pos: -30.5,12.5 - parent: 60 - type: Transform -- uid: 21633 - type: AirSensor - components: - - pos: -27.5,8.5 - parent: 60 - type: Transform -- uid: 21634 - type: AirAlarm - components: - - pos: -21.5,10.5 - parent: 60 - type: Transform - - devices: - - 780 - - 7721 - - 1017 - - 21633 - - 5988 - - 6367 - - 6626 - - 7686 - - 1996 - - 719 - - 1780 - type: DeviceList -- uid: 21635 - type: FireAlarm - components: - - pos: -28.5,10.5 - parent: 60 - type: Transform - - devices: - - 780 - - 7721 - - 1017 - - 21633 - - 5988 - - 6367 - - 6626 - type: DeviceList -- uid: 21636 - type: AirAlarm - components: - - pos: -28.5,22.5 - parent: 60 - type: Transform - - devices: - - 21638 - - 21639 - - 14502 - - 14503 - - 14504 - - 14501 - type: DeviceList -- uid: 21637 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -21.5,14.5 - parent: 60 - type: Transform - - devices: - - 21638 - - 21639 - - 5988 - - 6367 - - 6626 - type: DeviceList -- uid: 21638 - type: AirSensor - components: - - pos: -22.5,11.5 - parent: 60 - type: Transform -- uid: 21639 - type: AirSensor - components: - - pos: -28.5,20.5 - parent: 60 - type: Transform -- uid: 21640 - type: AirAlarm - components: - - pos: -26.5,27.5 - parent: 60 - type: Transform - - devices: - - 13968 - - 13969 - - 13970 - - 21643 - - 13981 - - 13980 - - 13979 - - 13962 - - 13961 - - invalid - - 17627 - - 17632 - - 17628 - - 17631 - - 21642 - - 6593 - - 6785 - - 6661 - type: DeviceList -- uid: 21641 - type: FireAlarm - components: - - pos: -23.5,26.5 - parent: 60 - type: Transform - - devices: - - 13968 - - 13969 - - 13970 - - 21643 - - 13981 - - 13980 - - 13979 - - 13962 - - 13961 - - invalid - - 17627 - - 17632 - - 17628 - - 17631 - - 21642 - - 23764 - - 23765 - - 23766 - - 6593 - - 6785 - - 6661 - type: DeviceList -- uid: 21642 - type: AirSensor - components: - - pos: -32.5,24.5 - parent: 60 - type: Transform -- uid: 21643 - type: AirSensor - components: - - pos: -15.5,15.5 - parent: 60 - type: Transform -- uid: 21644 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -5.5,13.5 - parent: 60 - type: Transform - - devices: - - 6625 - - 6542 - - 6103 - type: DeviceList -- uid: 21645 - type: AirAlarm - components: - - pos: -8.5,23.5 - parent: 60 - type: Transform - - devices: - - 21646 - - 14318 - - 14312 - - 14303 - - 14302 - type: DeviceList -- uid: 21646 - type: AirSensor - components: - - pos: -7.5,13.5 - parent: 60 - type: Transform -- uid: 21647 - type: AirAlarm - components: - - pos: -24.5,33.5 - parent: 60 - type: Transform - - devices: - - 13981 - - 13980 - - 13979 - - 13962 - - 13961 - - 21649 - - 21648 - - 16559 - - 16560 - - invalid - type: DeviceList -- uid: 21648 - type: AirSensor - components: - - pos: -28.5,31.5 - parent: 60 - type: Transform -- uid: 21649 - type: AirSensor - components: - - pos: -15.5,29.5 - parent: 60 - type: Transform -- uid: 21650 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -23.5,32.5 - parent: 60 - type: Transform - - devices: - - 13981 - - 13980 - - 13979 - - 13962 - - 13961 - - 21649 - - 21648 - - 16559 - - 16560 - - invalid - - 21655 - - 21656 - type: DeviceList -- uid: 21651 - type: AirSensor - components: - - pos: -30.5,45.5 - parent: 60 - type: Transform -- uid: 21652 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -32.5,37.5 - parent: 60 - type: Transform - - devices: - - 21655 - - 21656 - - 21654 - - 16684 - type: DeviceList -- uid: 21653 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -32.5,33.5 - parent: 60 - type: Transform - - devices: - - 21655 - - 21656 - - 21654 - type: DeviceList -- uid: 21654 - type: AirSensor - components: - - pos: -32.5,30.5 - parent: 60 - type: Transform -- uid: 21655 - type: FirelockGlass - components: - - pos: -31.5,30.5 - parent: 60 - type: Transform -- uid: 21656 - type: FirelockGlass - components: - - pos: -31.5,31.5 - parent: 60 - type: Transform -- uid: 21657 - type: PortableScrubber - components: - - pos: -30.5,34.5 - parent: 60 - type: Transform -- uid: 21658 - type: PortableScrubber - components: - - pos: -30.5,35.5 - parent: 60 - type: Transform -- uid: 21659 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,34.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21660 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,34.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21661 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,34.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21662 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,34.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21663 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,34.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21664 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,34.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21665 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -29.5,34.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21666 - type: GasPipeBend - components: - - pos: -29.5,35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21667 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -30.5,34.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21668 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -30.5,35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21669 - type: ClothingHeadHatWelding - components: - - pos: -32.40404,38.50124 - parent: 60 - type: Transform -- uid: 21670 - type: ClothingHeadHatWelding - components: - - pos: -32.638496,38.52653 - parent: 60 - type: Transform -- uid: 21671 - type: Rack - components: - - pos: -32.5,38.5 - parent: 60 - type: Transform -- uid: 21672 - type: WallReinforced - components: - - pos: -69.5,15.5 - parent: 60 - type: Transform -- uid: 21673 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -19.5,30.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 21674 - type: FirelockGlass - components: - - pos: -21.5,33.5 - parent: 60 - type: Transform -- uid: 21675 - type: AirAlarm - components: - - pos: -17.5,38.5 - parent: 60 - type: Transform - - devices: - - 21676 - - 15346 - - 15347 - - 15348 - - 15343 - - 15344 - - 15345 - type: DeviceList -- uid: 21676 - type: AirSensor - components: - - pos: -16.5,41.5 - parent: 60 - type: Transform -- uid: 21677 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,30.5 - parent: 60 - type: Transform -- uid: 21678 - type: FirelockGlass - components: - - pos: -11.5,33.5 - parent: 60 - type: Transform -- uid: 21679 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -9.5,37.5 - parent: 60 - type: Transform - - devices: - - 21681 - - 21680 - - 21674 - - 21678 - - 21747 - - 21748 - type: DeviceList -- uid: 21680 - type: AirSensor - components: - - pos: -21.5,36.5 - parent: 60 - type: Transform -- uid: 21681 - type: AirSensor - components: - - pos: -11.5,36.5 - parent: 60 - type: Transform -- uid: 21682 - type: ShuttersRadiationOpen - components: - - pos: -22.5,33.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver -- uid: 21683 - type: ShuttersRadiationOpen - components: - - pos: -20.5,33.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver -- uid: 21684 - type: ShuttersRadiationOpen - components: - - pos: -17.5,31.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver -- uid: 21685 - type: ShuttersRadiationOpen - components: - - pos: -16.5,31.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver -- uid: 21686 - type: ShuttersRadiationOpen - components: - - pos: -15.5,31.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver -- uid: 21687 - type: ShuttersRadiationOpen - components: - - pos: -12.5,33.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver -- uid: 21688 - type: ShuttersRadiationOpen - components: - - pos: -10.5,33.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver -- uid: 21689 - type: ShuttersRadiationOpen - components: - - rot: 1.5707963267948966 rad - pos: -9.5,34.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver -- uid: 21690 - type: ShuttersRadiationOpen - components: - - rot: 1.5707963267948966 rad - pos: -9.5,35.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver -- uid: 21691 - type: ShuttersRadiationOpen - components: - - rot: -1.5707963267948966 rad - pos: -23.5,46.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver -- uid: 21692 - type: SignalButton - components: - - name: exterior shutters - type: MetaData - - pos: -14.5,38.5 - parent: 60 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 21698 - - port: Toggle - uid: 21690 - - port: Toggle - uid: 21689 - - port: Toggle - uid: 21688 - - port: Toggle - uid: 21687 - - port: Toggle - uid: 21686 - - port: Toggle - uid: 21685 - - port: Toggle - uid: 21684 - - port: Toggle - uid: 21683 - - port: Toggle - uid: 21682 - - port: Toggle - uid: 21693 - - port: Toggle - uid: 21694 - - port: Toggle - uid: 21695 - - port: Toggle - uid: 21696 - - port: Toggle - uid: 21697 - - port: Toggle - uid: 21691 - type: SignalTransmitter -- uid: 21693 - type: ShuttersRadiationOpen - components: - - rot: -1.5707963267948966 rad - pos: -23.5,39.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver -- uid: 21694 - type: ShuttersRadiationOpen - components: - - rot: -1.5707963267948966 rad - pos: -23.5,40.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver -- uid: 21695 - type: ShuttersRadiationOpen - components: - - rot: -1.5707963267948966 rad - pos: -23.5,41.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver -- uid: 21696 - type: ShuttersRadiationOpen - components: - - rot: -1.5707963267948966 rad - pos: -23.5,44.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver -- uid: 21697 - type: ShuttersRadiationOpen - components: - - rot: -1.5707963267948966 rad - pos: -23.5,45.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver -- uid: 21698 - type: ShuttersRadiationOpen - components: - - rot: 1.5707963267948966 rad - pos: -9.5,36.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21692 - type: SignalReceiver -- uid: 21699 - type: ShuttersRadiationOpen - components: - - pos: -22.5,47.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21704 - - port: Pressed - uid: 21703 - type: SignalReceiver -- uid: 21700 - type: ShuttersRadiationOpen - components: - - pos: -20.5,47.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21704 - - port: Pressed - uid: 21703 - type: SignalReceiver -- uid: 21701 - type: ShuttersRadiationOpen - components: - - pos: -12.5,47.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21704 - - port: Pressed - uid: 21703 - type: SignalReceiver -- uid: 21702 - type: ShuttersRadiationOpen - components: - - pos: -10.5,47.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21704 - - port: Pressed - uid: 21703 - type: SignalReceiver -- uid: 21703 - type: SignalButton - components: - - pos: -10.5,51.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 21699 - - port: Toggle - uid: 21700 - - port: Toggle - uid: 21701 - - port: Toggle - uid: 21702 - type: SignalTransmitter -- uid: 21704 - type: SignalButton - components: - - pos: -22.5,51.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 21700 - - port: Toggle - uid: 21699 - - port: Toggle - uid: 21701 - - port: Toggle - uid: 21702 - type: SignalTransmitter -- uid: 21705 - type: AirAlarm - components: - - pos: 4.5,22.5 - parent: 60 - type: Transform - - devices: - - 21707 - - 16008 - - 16007 - - 16673 - - 16670 - - 16683 - - 16672 - - 16643 - - 16642 - - 16681 - - 16682 - type: DeviceList -- uid: 21706 - type: FireAlarm - components: - - pos: 5.5,22.5 - parent: 60 - type: Transform - - devices: - - 16007 - - 16008 - - 21707 - type: DeviceList -- uid: 21707 - type: AirSensor - components: - - pos: 1.5,18.5 - parent: 60 - type: Transform -- uid: 21708 - type: FireAlarm - components: - - pos: -1.5,26.5 - parent: 60 - type: Transform - - devices: - - 16007 - - 16008 - - 16556 - - 16557 - - 16558 - - 21709 - type: DeviceList -- uid: 21709 - type: AirSensor - components: - - pos: -1.5,24.5 - parent: 60 - type: Transform -- uid: 21710 - type: AirAlarm - components: - - pos: 2.5,26.5 - parent: 60 - type: Transform - - devices: - - 16556 - - 16557 - - 16558 - - 16633 - - 21709 - - 16008 - - 16007 - - 16636 - - 16634 - - 16635 - type: DeviceList -- uid: 21711 - type: FireAlarm - components: - - pos: -3.5,30.5 - parent: 60 - type: Transform - - devices: - - 16556 - - 16557 - - 16558 - - 21678 - - 21713 - type: DeviceList -- uid: 21712 - type: AirAlarm - components: - - pos: -2.5,30.5 - parent: 60 - type: Transform - - devices: - - 16556 - - 16557 - - 16558 - - 21678 - - 21713 - - 16621 - - 16620 - - 16605 - - 16604 - - 16619 - - 16615 - type: DeviceList -- uid: 21713 - type: AirSensor - components: - - pos: -3.5,28.5 - parent: 60 - type: Transform -- uid: 21714 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -20.5,30.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21715 - type: ExtinguisherCabinetFilled - components: - - pos: -13.5,22.5 - parent: 60 - type: Transform -- uid: 21716 - type: ExtinguisherCabinetFilled - components: - - pos: -33.5,21.5 - parent: 60 - type: Transform -- uid: 21717 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 37.5,8.5 - parent: 60 - type: Transform -- uid: 21718 - type: ExtinguisherCabinetFilled - components: - - pos: -50.5,-4.5 - parent: 60 - type: Transform -- uid: 21719 - type: ExtinguisherCabinetFilled - components: - - pos: -46.5,-9.5 - parent: 60 - type: Transform -- uid: 21720 - type: ExtinguisherCabinetFilled - components: - - pos: -52.5,8.5 - parent: 60 - type: Transform -- uid: 21721 - type: PottedPlant21 - components: - - pos: 17.482878,-38.72393 - parent: 60 - type: Transform -- uid: 21722 - type: ExtinguisherCabinetFilled - components: - - pos: -35.5,1.5 - parent: 60 - type: Transform -- uid: 21723 - type: ExtinguisherCabinetFilled - components: - - pos: -35.5,-16.5 - parent: 60 - type: Transform -- uid: 21724 - type: ExtinguisherCabinetFilled - components: - - pos: -13.5,-19.5 - parent: 60 - type: Transform -- uid: 21725 - type: ExtinguisherCabinetFilled - components: - - pos: -13.5,-11.5 - parent: 60 - type: Transform -- uid: 21726 - type: ExtinguisherCabinetFilled - components: - - pos: -18.5,-0.5 - parent: 60 - type: Transform -- uid: 21727 - type: ExtinguisherCabinetFilled - components: - - pos: -5.5,11.5 - parent: 60 - type: Transform -- uid: 21728 - type: ExtinguisherCabinetFilled - components: - - pos: 25.5,10.5 - parent: 60 - type: Transform -- uid: 21729 - type: ExtinguisherCabinetFilled - components: - - pos: 39.5,4.5 - parent: 60 - type: Transform -- uid: 21730 - type: ExtinguisherCabinetFilled - components: - - pos: 23.5,22.5 - parent: 60 - type: Transform -- uid: 21731 - type: ExtinguisherCabinetFilled - components: - - pos: 14.5,0.5 - parent: 60 - type: Transform -- uid: 21732 - type: ExtinguisherCabinetFilled - components: - - pos: 14.5,-17.5 - parent: 60 - type: Transform -- uid: 21733 - type: AirSensor - components: - - pos: -25.5,-3.5 - parent: 60 - type: Transform -- uid: 21734 - type: AirSensor - components: - - pos: -27.5,-15.5 - parent: 60 - type: Transform -- uid: 21735 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: -43.5,-3.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RND - type: SurveillanceCamera -- uid: 21736 - type: FireAlarm - components: - - pos: -19.5,-14.5 - parent: 60 - type: Transform - - devices: - - 5565 - - 5562 - - 8521 - - 8502 - - 5563 - - 8466 - - 21733 - - 21734 - type: DeviceList -- uid: 21737 - type: ExtinguisherCabinetFilled - components: - - pos: -29.5,12.5 - parent: 60 - type: Transform -- uid: 21738 - type: ExtinguisherCabinetFilled - components: - - pos: -52.5,11.5 - parent: 60 - type: Transform -- uid: 21739 - type: ExtinguisherCabinetFilled - components: - - pos: -28.5,-21.5 - parent: 60 - type: Transform -- uid: 21740 - type: ExtinguisherCabinetFilled - components: - - pos: 36.5,-32.5 - parent: 60 - type: Transform -- uid: 21741 - type: ExtinguisherCabinetFilled - components: - - pos: 42.5,-11.5 - parent: 60 - type: Transform -- uid: 21742 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 23.5,-32.5 - parent: 60 - type: Transform -- uid: 21743 - type: BrbSign - components: - - pos: 46.54674,9.956706 - parent: 60 - type: Transform -- uid: 21744 - type: SignDirectionalHop - components: - - rot: 3.141592653589793 rad - pos: 2.5,-52.5 - parent: 60 - type: Transform -- uid: 21745 - type: SignDirectionalJanitor - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 60 - type: Transform -- uid: 21746 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -9.5,38.5 - parent: 60 - type: Transform - - devices: - - 21680 - - 15648 - - 15651 - - 15649 - - 15652 - - 15650 - - 21681 - - 21678 - - 21674 - - 21748 - - 21747 - type: DeviceList -- uid: 21747 - type: FirelockGlass - components: - - pos: -23.5,42.5 - parent: 60 - type: Transform -- uid: 21748 - type: FirelockGlass - components: - - pos: -23.5,43.5 - parent: 60 - type: Transform -- uid: 21749 - type: PaintingPrayerHands - components: - - pos: -19.5,19.5 - parent: 60 - type: Transform -- uid: 21750 - type: PaintingHelloWorld - components: - - pos: -42.5,6.5 - parent: 60 - type: Transform -- uid: 21751 - type: PaintingOlympia - components: - - pos: 56.5,-43.5 - parent: 60 - type: Transform -- uid: 21752 - type: PaintingSaturn - components: - - pos: -1.5,-5.5 - parent: 60 - type: Transform -- uid: 21753 - type: ShuttersNormalOpen - components: - - pos: 43.5,16.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21762 - type: SignalReceiver -- uid: 21754 - type: ShuttersNormalOpen - components: - - pos: 44.5,16.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21762 - type: SignalReceiver -- uid: 21755 - type: ShuttersNormalOpen - components: - - pos: 45.5,16.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21762 - type: SignalReceiver -- uid: 21756 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,18.5 - parent: 60 - type: Transform -- uid: 21757 - type: Mirror - components: - - pos: 21.5,13.5 - parent: 60 - type: Transform -- uid: 21758 - type: ShuttersNormalOpen - components: - - pos: 45.5,11.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21762 - type: SignalReceiver -- uid: 21759 - type: ShuttersNormalOpen - components: - - pos: 43.5,11.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21762 - type: SignalReceiver -- uid: 21760 - type: ShuttersNormalOpen - components: - - pos: 44.5,11.5 - parent: 60 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21762 - type: SignalReceiver -- uid: 21761 - type: Grille - components: - - pos: 24.5,30.5 - parent: 60 - type: Transform -- uid: 21762 - type: SignalButton - components: - - pos: 46.5,15.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 21753 - - port: Toggle - uid: 21754 - - port: Toggle - uid: 21755 - - port: Toggle - uid: 21759 - - port: Toggle - uid: 21760 - - port: Toggle - uid: 21758 - type: SignalTransmitter -- uid: 21763 - type: BlastDoorBridgeOpen - components: - - pos: -0.5,-1.5 - parent: 60 - type: Transform -- uid: 21764 - type: BlastDoorBridgeOpen - components: - - pos: 1.5,-1.5 - parent: 60 - type: Transform -- uid: 21765 - type: BlastDoorBridgeOpen - components: - - pos: 1.5,-8.5 - parent: 60 - type: Transform -- uid: 21766 - type: BlastDoorBridgeOpen - components: - - pos: -0.5,-8.5 - parent: 60 - type: Transform -- uid: 21767 - type: BlastDoorBridgeOpen - components: - - pos: 5.5,0.5 - parent: 60 - type: Transform -- uid: 21768 - type: BlastDoorBridgeOpen - components: - - pos: 5.5,1.5 - parent: 60 - type: Transform -- uid: 21769 - type: BlastDoorBridgeOpen - components: - - pos: -4.5,0.5 - parent: 60 - type: Transform -- uid: 21770 - type: BlastDoorBridgeOpen - components: - - pos: -4.5,1.5 - parent: 60 - type: Transform -- uid: 21771 - type: SignalButtonBridge - components: - - name: Panic Mode - type: MetaData - - pos: -1.5,-1.5 - parent: 60 - type: Transform -- uid: 21772 - type: AirSensor - components: - - pos: 16.5,0.5 - parent: 60 - type: Transform -- uid: 21773 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 14.5,2.5 - parent: 60 - type: Transform - - devices: - - 21772 - - 6133 - - 5901 - - 5900 - - invalid - - 12001 - - 12589 - - 4369 - - 1198 - - 4546 - type: DeviceList -- uid: 21774 - type: VendingMachineCondiments - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,-26.5 - parent: 60 - type: Transform -- uid: 21775 - type: FoodPlateSmall - components: - - pos: 20.513836,-26.289145 - parent: 60 - type: Transform -- uid: 21778 - type: SignalButtonExt2 - components: - - pos: -2.5,33.5 - parent: 60 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13248 - - port: Toggle - uid: 13266 - type: SignalTransmitter -- uid: 21780 - type: BlastDoorWindowsOpen - components: - - pos: 9.5,27.5 - parent: 60 - type: Transform -- uid: 21781 - type: BlastDoorWindowsOpen - components: - - pos: 9.5,28.5 - parent: 60 - type: Transform -- uid: 21782 - type: BlastDoorWindowsOpen - components: - - pos: 9.5,29.5 - parent: 60 - type: Transform -- uid: 21783 - type: BlastDoorWindowsOpen - components: - - pos: 3.5,27.5 - parent: 60 - type: Transform -- uid: 21784 - type: BlastDoorWindowsOpen - components: - - pos: 3.5,28.5 - parent: 60 - type: Transform -- uid: 21785 - type: BlastDoorWindowsOpen - components: - - pos: 3.5,29.5 - parent: 60 - type: Transform -- uid: 21786 - type: SignalButtonWindows - components: - - pos: 3.5,26.5 - parent: 60 - type: Transform -- uid: 21787 - type: PosterMapBagel - components: - - pos: 6.5,11.5 - parent: 60 - type: Transform -- uid: 21788 - type: ToolboxArtistic - components: - - pos: -38.574116,19.53669 - parent: 60 - type: Transform - - nextAttack: 7455.7047497 - type: MeleeWeapon -- uid: 21789 - type: FoodPlateSmall - components: - - pos: 20.513836,-26.195395 - parent: 60 - type: Transform -- uid: 21790 - type: SpawnMobCleanBot - components: - - pos: 8.5,-23.5 - parent: 60 - type: Transform -- uid: 21791 - type: RockGuitarInstrument - components: - - pos: 24.148243,-13.192209 - parent: 60 - type: Transform -- uid: 21792 - type: Catwalk - components: - - pos: -91.5,16.5 - parent: 60 - type: Transform -- uid: 21793 - type: Catwalk - components: - - pos: -90.5,16.5 - parent: 60 - type: Transform -- uid: 21794 - type: Catwalk - components: - - pos: -89.5,16.5 - parent: 60 - type: Transform -- uid: 21795 - type: Catwalk - components: - - pos: -88.5,16.5 - parent: 60 - type: Transform -- uid: 21796 - type: Catwalk - components: - - pos: -87.5,16.5 - parent: 60 - type: Transform -- uid: 21797 - type: WallReinforced - components: - - pos: -112.5,14.5 - parent: 60 - type: Transform -- uid: 21798 - type: WallReinforced - components: - - pos: -113.5,14.5 - parent: 60 - type: Transform -- uid: 21799 - type: WallReinforced - components: - - pos: -114.5,14.5 - parent: 60 - type: Transform -- uid: 21800 - type: WallReinforced - components: - - pos: -115.5,14.5 - parent: 60 - type: Transform -- uid: 21801 - type: WallReinforced - components: - - pos: -116.5,14.5 - parent: 60 - type: Transform -- uid: 21802 - type: WallReinforced - components: - - pos: -117.5,14.5 - parent: 60 - type: Transform -- uid: 21803 - type: WallReinforced - components: - - pos: -118.5,14.5 - parent: 60 - type: Transform -- uid: 21804 - type: WallReinforced - components: - - pos: -119.5,14.5 - parent: 60 - type: Transform -- uid: 21805 - type: WallReinforced - components: - - pos: -120.5,14.5 - parent: 60 - type: Transform -- uid: 21806 - type: WallReinforced - components: - - pos: -121.5,14.5 - parent: 60 - type: Transform -- uid: 21807 - type: WallReinforced - components: - - pos: -121.5,15.5 - parent: 60 - type: Transform -- uid: 21808 - type: WallReinforced - components: - - pos: -121.5,16.5 - parent: 60 - type: Transform -- uid: 21809 - type: WallReinforced - components: - - pos: -115.5,15.5 - parent: 60 - type: Transform -- uid: 21810 - type: WallReinforced - components: - - pos: -115.5,16.5 - parent: 60 - type: Transform -- uid: 21811 - type: WallReinforced - components: - - pos: -115.5,18.5 - parent: 60 - type: Transform -- uid: 21812 - type: WallReinforced - components: - - pos: -115.5,19.5 - parent: 60 - type: Transform -- uid: 21813 - type: WallReinforced - components: - - pos: -115.5,20.5 - parent: 60 - type: Transform -- uid: 21814 - type: WallReinforced - components: - - pos: -116.5,20.5 - parent: 60 - type: Transform -- uid: 21815 - type: WallReinforced - components: - - pos: -117.5,20.5 - parent: 60 - type: Transform -- uid: 21816 - type: WallReinforced - components: - - pos: -118.5,20.5 - parent: 60 - type: Transform -- uid: 21817 - type: WallReinforced - components: - - pos: -119.5,20.5 - parent: 60 - type: Transform -- uid: 21818 - type: WallReinforced - components: - - pos: -120.5,20.5 - parent: 60 - type: Transform -- uid: 21819 - type: WallReinforced - components: - - pos: -121.5,20.5 - parent: 60 - type: Transform -- uid: 21820 - type: WallReinforced - components: - - pos: -121.5,19.5 - parent: 60 - type: Transform -- uid: 21821 - type: WallReinforced - components: - - pos: -121.5,18.5 - parent: 60 - type: Transform -- uid: 21822 - type: WallReinforced - components: - - pos: -114.5,20.5 - parent: 60 - type: Transform -- uid: 21823 - type: WallReinforced - components: - - pos: -113.5,20.5 - parent: 60 - type: Transform -- uid: 21824 - type: WallReinforced - components: - - pos: -112.5,20.5 - parent: 60 - type: Transform -- uid: 21825 - type: WallReinforced - components: - - pos: -110.5,20.5 - parent: 60 - type: Transform -- uid: 21826 - type: WallReinforced - components: - - pos: -109.5,20.5 - parent: 60 - type: Transform -- uid: 21827 - type: WallReinforced - components: - - pos: -108.5,20.5 - parent: 60 - type: Transform -- uid: 21828 - type: WallReinforced - components: - - pos: -107.5,20.5 - parent: 60 - type: Transform -- uid: 21829 - type: WallReinforced - components: - - pos: -106.5,20.5 - parent: 60 - type: Transform -- uid: 21830 - type: WallReinforced - components: - - pos: -105.5,20.5 - parent: 60 - type: Transform -- uid: 21831 - type: WallReinforced - components: - - pos: -104.5,20.5 - parent: 60 - type: Transform -- uid: 21832 - type: WallReinforced - components: - - pos: -103.5,20.5 - parent: 60 - type: Transform -- uid: 21833 - type: WallReinforced - components: - - pos: -102.5,20.5 - parent: 60 - type: Transform -- uid: 21834 - type: WallReinforced - components: - - pos: -101.5,20.5 - parent: 60 - type: Transform -- uid: 21835 - type: WallReinforced - components: - - pos: -101.5,19.5 - parent: 60 - type: Transform -- uid: 21836 - type: WallReinforced - components: - - pos: -101.5,18.5 - parent: 60 - type: Transform -- uid: 21837 - type: WallReinforced - components: - - pos: -101.5,16.5 - parent: 60 - type: Transform -- uid: 21838 - type: WallReinforced - components: - - pos: -101.5,16.5 - parent: 60 - type: Transform -- uid: 21839 - type: WallReinforced - components: - - pos: -101.5,15.5 - parent: 60 - type: Transform -- uid: 21840 - type: WallReinforced - components: - - pos: -101.5,14.5 - parent: 60 - type: Transform -- uid: 21841 - type: WallReinforced - components: - - pos: -102.5,14.5 - parent: 60 - type: Transform -- uid: 21842 - type: WallReinforced - components: - - pos: -103.5,14.5 - parent: 60 - type: Transform -- uid: 21843 - type: WallReinforced - components: - - pos: -104.5,14.5 - parent: 60 - type: Transform -- uid: 21844 - type: WallReinforced - components: - - pos: -105.5,14.5 - parent: 60 - type: Transform -- uid: 21845 - type: WallReinforced - components: - - pos: -106.5,14.5 - parent: 60 - type: Transform -- uid: 21846 - type: WallReinforced - components: - - pos: -107.5,14.5 - parent: 60 - type: Transform -- uid: 21847 - type: WallReinforced - components: - - pos: -108.5,14.5 - parent: 60 - type: Transform -- uid: 21848 - type: WallReinforced - components: - - pos: -109.5,14.5 - parent: 60 - type: Transform -- uid: 21849 - type: WallReinforced - components: - - pos: -110.5,14.5 - parent: 60 - type: Transform -- uid: 21850 - type: WallReinforced - components: - - pos: -107.5,15.5 - parent: 60 - type: Transform -- uid: 21851 - type: WallReinforced - components: - - pos: -107.5,16.5 - parent: 60 - type: Transform -- uid: 21852 - type: WallReinforced - components: - - pos: -107.5,18.5 - parent: 60 - type: Transform -- uid: 21853 - type: WallReinforced - components: - - pos: -107.5,19.5 - parent: 60 - type: Transform -- uid: 21854 - type: WallReinforced - components: - - pos: -107.5,13.5 - parent: 60 - type: Transform -- uid: 21855 - type: WallReinforced - components: - - pos: -107.5,12.5 - parent: 60 - type: Transform -- uid: 21856 - type: ReinforcedWindow - components: - - pos: -115.5,9.5 - parent: 60 - type: Transform -- uid: 21857 - type: ReinforcedWindow - components: - - pos: -115.5,10.5 - parent: 60 - type: Transform -- uid: 21858 - type: ReinforcedWindow - components: - - pos: -115.5,11.5 - parent: 60 - type: Transform -- uid: 21859 - type: WallReinforced - components: - - pos: -107.5,8.5 - parent: 60 - type: Transform -- uid: 21860 - type: WallReinforced - components: - - pos: -108.5,8.5 - parent: 60 - type: Transform -- uid: 21861 - type: WallReinforced - components: - - pos: -108.5,7.5 - parent: 60 - type: Transform -- uid: 21862 - type: WallReinforced - components: - - pos: -109.5,7.5 - parent: 60 - type: Transform -- uid: 21863 - type: WallReinforced - components: - - pos: -110.5,7.5 - parent: 60 - type: Transform -- uid: 21864 - type: WallReinforced - components: - - pos: -110.5,6.5 - parent: 60 - type: Transform -- uid: 21865 - type: WallReinforced - components: - - pos: -112.5,6.5 - parent: 60 - type: Transform -- uid: 21866 - type: WallReinforced - components: - - pos: -112.5,7.5 - parent: 60 - type: Transform -- uid: 21867 - type: WallReinforced - components: - - pos: -113.5,7.5 - parent: 60 - type: Transform -- uid: 21868 - type: WallReinforced - components: - - pos: -114.5,7.5 - parent: 60 - type: Transform -- uid: 21869 - type: WallReinforced - components: - - pos: -114.5,8.5 - parent: 60 - type: Transform -- uid: 21870 - type: WallReinforced - components: - - pos: -115.5,8.5 - parent: 60 - type: Transform -- uid: 21871 - type: ReinforcedWindow - components: - - pos: -107.5,9.5 - parent: 60 - type: Transform -- uid: 21872 - type: ReinforcedWindow - components: - - pos: -107.5,11.5 - parent: 60 - type: Transform -- uid: 21873 - type: ReinforcedWindow - components: - - pos: -107.5,10.5 - parent: 60 - type: Transform -- uid: 21874 - type: WallReinforced - components: - - pos: -115.5,12.5 - parent: 60 - type: Transform -- uid: 21875 - type: WallReinforced - components: - - pos: -115.5,13.5 - parent: 60 - type: Transform -- uid: 21876 - type: WallReinforced - components: - - pos: -118.5,21.5 - parent: 60 - type: Transform -- uid: 21877 - type: WallReinforced - components: - - pos: -118.5,22.5 - parent: 60 - type: Transform -- uid: 21878 - type: WallReinforced - components: - - pos: -118.5,23.5 - parent: 60 - type: Transform -- uid: 21879 - type: WallReinforced - components: - - pos: -118.5,24.5 - parent: 60 - type: Transform -- uid: 21880 - type: WallReinforced - components: - - pos: -118.5,25.5 - parent: 60 - type: Transform -- uid: 21881 - type: WallReinforced - components: - - pos: -118.5,26.5 - parent: 60 - type: Transform -- uid: 21882 - type: WallReinforced - components: - - pos: -118.5,27.5 - parent: 60 - type: Transform -- uid: 21883 - type: WallReinforced - components: - - pos: -118.5,28.5 - parent: 60 - type: Transform -- uid: 21884 - type: WallReinforced - components: - - pos: -118.5,29.5 - parent: 60 - type: Transform -- uid: 21885 - type: WallReinforced - components: - - pos: -118.5,30.5 - parent: 60 - type: Transform -- uid: 21886 - type: WallReinforced - components: - - pos: -117.5,31.5 - parent: 60 - type: Transform -- uid: 21887 - type: WallReinforced - components: - - pos: -117.5,30.5 - parent: 60 - type: Transform -- uid: 21888 - type: WallReinforced - components: - - pos: -117.5,29.5 - parent: 60 - type: Transform -- uid: 21889 - type: WallReinforced - components: - - pos: -117.5,28.5 - parent: 60 - type: Transform -- uid: 21890 - type: WallReinforced - components: - - pos: -117.5,27.5 - parent: 60 - type: Transform -- uid: 21891 - type: WallReinforced - components: - - pos: -117.5,26.5 - parent: 60 - type: Transform -- uid: 21892 - type: WallReinforced - components: - - pos: -117.5,25.5 - parent: 60 - type: Transform -- uid: 21893 - type: WallReinforced - components: - - pos: -117.5,24.5 - parent: 60 - type: Transform -- uid: 21894 - type: WallReinforced - components: - - pos: -117.5,23.5 - parent: 60 - type: Transform -- uid: 21895 - type: WallReinforced - components: - - pos: -117.5,22.5 - parent: 60 - type: Transform -- uid: 21896 - type: WallReinforced - components: - - pos: -117.5,21.5 - parent: 60 - type: Transform -- uid: 21897 - type: WallReinforced - components: - - pos: -116.5,21.5 - parent: 60 - type: Transform -- uid: 21898 - type: WallReinforced - components: - - pos: -116.5,25.5 - parent: 60 - type: Transform -- uid: 21899 - type: WallReinforced - components: - - pos: -112.5,25.5 - parent: 60 - type: Transform -- uid: 21900 - type: WallReinforced - components: - - pos: -116.5,27.5 - parent: 60 - type: Transform -- uid: 21901 - type: WallReinforced - components: - - pos: -116.5,30.5 - parent: 60 - type: Transform -- uid: 21902 - type: WallReinforced - components: - - pos: -116.5,31.5 - parent: 60 - type: Transform -- uid: 21903 - type: WallReinforced - components: - - pos: -116.5,32.5 - parent: 60 - type: Transform -- uid: 21904 - type: WallReinforced - components: - - pos: -115.5,31.5 - parent: 60 - type: Transform -- uid: 21905 - type: WallReinforced - components: - - pos: -114.5,31.5 - parent: 60 - type: Transform -- uid: 21906 - type: WallReinforced - components: - - pos: -113.5,31.5 - parent: 60 - type: Transform -- uid: 21907 - type: WallReinforced - components: - - pos: -115.5,32.5 - parent: 60 - type: Transform -- uid: 21908 - type: WallReinforced - components: - - pos: -114.5,32.5 - parent: 60 - type: Transform -- uid: 21909 - type: WallReinforced - components: - - pos: -113.5,32.5 - parent: 60 - type: Transform -- uid: 21910 - type: WallReinforced - components: - - pos: -112.5,32.5 - parent: 60 - type: Transform -- uid: 21911 - type: WallReinforced - components: - - pos: -111.5,32.5 - parent: 60 - type: Transform -- uid: 21912 - type: WallReinforced - components: - - pos: -110.5,32.5 - parent: 60 - type: Transform -- uid: 21913 - type: WallReinforced - components: - - pos: -109.5,32.5 - parent: 60 - type: Transform -- uid: 21914 - type: WallReinforced - components: - - pos: -108.5,32.5 - parent: 60 - type: Transform -- uid: 21915 - type: WallReinforced - components: - - pos: -107.5,32.5 - parent: 60 - type: Transform -- uid: 21916 - type: WallReinforced - components: - - pos: -106.5,32.5 - parent: 60 - type: Transform -- uid: 21917 - type: WallReinforced - components: - - pos: -109.5,33.5 - parent: 60 - type: Transform -- uid: 21918 - type: WallReinforced - components: - - pos: -110.5,33.5 - parent: 60 - type: Transform -- uid: 21919 - type: WallReinforced - components: - - pos: -111.5,33.5 - parent: 60 - type: Transform -- uid: 21920 - type: WallReinforced - components: - - pos: -112.5,33.5 - parent: 60 - type: Transform -- uid: 21921 - type: WallReinforced - components: - - pos: -113.5,33.5 - parent: 60 - type: Transform -- uid: 21922 - type: WallReinforced - components: - - pos: -109.5,31.5 - parent: 60 - type: Transform -- uid: 21923 - type: WallReinforced - components: - - pos: -108.5,31.5 - parent: 60 - type: Transform -- uid: 21924 - type: WallReinforced - components: - - pos: -107.5,31.5 - parent: 60 - type: Transform -- uid: 21925 - type: WallReinforced - components: - - pos: -106.5,31.5 - parent: 60 - type: Transform -- uid: 21926 - type: WallReinforced - components: - - pos: -105.5,31.5 - parent: 60 - type: Transform -- uid: 21927 - type: WallReinforced - components: - - pos: -106.5,30.5 - parent: 60 - type: Transform -- uid: 21928 - type: WallReinforced - components: - - pos: -105.5,30.5 - parent: 60 - type: Transform -- uid: 21929 - type: WallReinforced - components: - - pos: -104.5,30.5 - parent: 60 - type: Transform -- uid: 21930 - type: WallReinforced - components: - - pos: -104.5,29.5 - parent: 60 - type: Transform -- uid: 21931 - type: WallReinforced - components: - - pos: -104.5,28.5 - parent: 60 - type: Transform -- uid: 21932 - type: WallReinforced - components: - - pos: -104.5,27.5 - parent: 60 - type: Transform -- uid: 21933 - type: WallReinforced - components: - - pos: -104.5,26.5 - parent: 60 - type: Transform -- uid: 21934 - type: WallReinforced - components: - - pos: -104.5,25.5 - parent: 60 - type: Transform -- uid: 21935 - type: WallReinforced - components: - - pos: -104.5,24.5 - parent: 60 - type: Transform -- uid: 21936 - type: WallReinforced - components: - - pos: -104.5,23.5 - parent: 60 - type: Transform -- uid: 21937 - type: WallReinforced - components: - - pos: -104.5,22.5 - parent: 60 - type: Transform -- uid: 21938 - type: WallReinforced - components: - - pos: -104.5,21.5 - parent: 60 - type: Transform -- uid: 21939 - type: WallReinforced - components: - - pos: -106.5,21.5 - parent: 60 - type: Transform -- uid: 21940 - type: WallReinforced - components: - - pos: -105.5,21.5 - parent: 60 - type: Transform -- uid: 21941 - type: WallReinforced - components: - - pos: -105.5,22.5 - parent: 60 - type: Transform -- uid: 21942 - type: WallReinforced - components: - - pos: -105.5,23.5 - parent: 60 - type: Transform -- uid: 21943 - type: WallReinforced - components: - - pos: -105.5,24.5 - parent: 60 - type: Transform -- uid: 21944 - type: WallReinforced - components: - - pos: -105.5,25.5 - parent: 60 - type: Transform -- uid: 21945 - type: WallReinforced - components: - - pos: -105.5,26.5 - parent: 60 - type: Transform -- uid: 21946 - type: WallReinforced - components: - - pos: -105.5,27.5 - parent: 60 - type: Transform -- uid: 21947 - type: WallReinforced - components: - - pos: -105.5,28.5 - parent: 60 - type: Transform -- uid: 21948 - type: WallReinforced - components: - - pos: -105.5,29.5 - parent: 60 - type: Transform -- uid: 21949 - type: WallReinforced - components: - - pos: -106.5,25.5 - parent: 60 - type: Transform -- uid: 21950 - type: AirlockCommandLocked - components: - - pos: -111.5,6.5 - parent: 60 - type: Transform -- uid: 21951 - type: WallReinforced - components: - - pos: -106.5,27.5 - parent: 60 - type: Transform -- uid: 21952 - type: WallReinforced - components: - - pos: -94.5,15.5 - parent: 60 - type: Transform -- uid: 21953 - type: WallReinforced - components: - - pos: -94.5,19.5 - parent: 60 - type: Transform -- uid: 21954 - type: WallReinforced - components: - - pos: -98.5,19.5 - parent: 60 - type: Transform -- uid: 21955 - type: WallReinforced - components: - - pos: -98.5,22.5 - parent: 60 - type: Transform -- uid: 21956 - type: WallReinforced - components: - - pos: -97.5,22.5 - parent: 60 - type: Transform -- uid: 21957 - type: WindowReinforcedDirectional - components: - - pos: -95.5,19.5 - parent: 60 - type: Transform -- uid: 21958 - type: WindowReinforcedDirectional - components: - - pos: -96.5,19.5 - parent: 60 - type: Transform -- uid: 21959 - type: WindowReinforcedDirectional - components: - - pos: -97.5,19.5 - parent: 60 - type: Transform -- uid: 21960 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -97.5,19.5 - parent: 60 - type: Transform -- uid: 21961 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -96.5,19.5 - parent: 60 - type: Transform -- uid: 21962 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -95.5,19.5 - parent: 60 - type: Transform -- uid: 21963 - type: WindowReinforcedDirectional - components: - - pos: -96.5,22.5 - parent: 60 - type: Transform -- uid: 21964 - type: WindowReinforcedDirectional - components: - - pos: -95.5,22.5 - parent: 60 - type: Transform -- uid: 21965 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -95.5,18.5 - parent: 60 - type: Transform -- uid: 21966 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -96.5,18.5 - parent: 60 - type: Transform -- uid: 21967 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -97.5,18.5 - parent: 60 - type: Transform -- uid: 21968 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -93.5,18.5 - parent: 60 - type: Transform -- uid: 21969 - type: WindowReinforcedDirectional - components: - - pos: -93.5,19.5 - parent: 60 - type: Transform -- uid: 21970 - type: WindowReinforcedDirectional - components: - - pos: -93.5,16.5 - parent: 60 - type: Transform -- uid: 21971 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -93.5,15.5 - parent: 60 - type: Transform -- uid: 21972 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -95.5,15.5 - parent: 60 - type: Transform -- uid: 21973 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -96.5,15.5 - parent: 60 - type: Transform -- uid: 21974 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -97.5,15.5 - parent: 60 - type: Transform -- uid: 21975 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -98.5,15.5 - parent: 60 - type: Transform -- uid: 21976 - type: WindowReinforcedDirectional - components: - - pos: -98.5,16.5 - parent: 60 - type: Transform -- uid: 21977 - type: WindowReinforcedDirectional - components: - - pos: -97.5,16.5 - parent: 60 - type: Transform -- uid: 21978 - type: WindowReinforcedDirectional - components: - - pos: -96.5,16.5 - parent: 60 - type: Transform -- uid: 21979 - type: WindowReinforcedDirectional - components: - - pos: -95.5,16.5 - parent: 60 - type: Transform -- uid: 21980 - type: WindowReinforcedDirectional - components: - - pos: -100.5,16.5 - parent: 60 - type: Transform -- uid: 21981 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -100.5,15.5 - parent: 60 - type: Transform -- uid: 21982 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -100.5,18.5 - parent: 60 - type: Transform -- uid: 21983 - type: WindowReinforcedDirectional - components: - - pos: -100.5,19.5 - parent: 60 - type: Transform -- uid: 21984 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -92.5,16.5 - parent: 60 - type: Transform -- uid: 21985 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -92.5,17.5 - parent: 60 - type: Transform -- uid: 21986 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -92.5,18.5 - parent: 60 - type: Transform -- uid: 21987 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -93.5,16.5 - parent: 60 - type: Transform -- uid: 21988 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -93.5,17.5 - parent: 60 - type: Transform -- uid: 21989 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -93.5,18.5 - parent: 60 - type: Transform -- uid: 21990 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -99.5,22.5 - parent: 60 - type: Transform -- uid: 21991 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -100.5,22.5 - parent: 60 - type: Transform -- uid: 21992 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -101.5,22.5 - parent: 60 - type: Transform -- uid: 21993 - type: WindowReinforcedDirectional - components: - - pos: -101.5,23.5 - parent: 60 - type: Transform -- uid: 21994 - type: WindowReinforcedDirectional - components: - - pos: -100.5,23.5 - parent: 60 - type: Transform -- uid: 21995 - type: WindowReinforcedDirectional - components: - - pos: -99.5,23.5 - parent: 60 - type: Transform -- uid: 21996 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -99.5,19.5 - parent: 60 - type: Transform -- uid: 21997 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -99.5,20.5 - parent: 60 - type: Transform -- uid: 21998 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -99.5,21.5 - parent: 60 - type: Transform -- uid: 21999 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -100.5,19.5 - parent: 60 - type: Transform -- uid: 22000 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -100.5,20.5 - parent: 60 - type: Transform -- uid: 22001 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -100.5,21.5 - parent: 60 - type: Transform -- uid: 22002 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -100.5,21.5 - parent: 60 - type: Transform -- uid: 22003 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -101.5,21.5 - parent: 60 - type: Transform -- uid: 22004 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -102.5,21.5 - parent: 60 - type: Transform -- uid: 22005 - type: WindowReinforcedDirectional - components: - - pos: -100.5,22.5 - parent: 60 - type: Transform -- uid: 22006 - type: WindowReinforcedDirectional - components: - - pos: -101.5,22.5 - parent: 60 - type: Transform -- uid: 22007 - type: WindowReinforcedDirectional - components: - - pos: -102.5,22.5 - parent: 60 - type: Transform -- uid: 22008 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -102.5,22.5 - parent: 60 - type: Transform -- uid: 22009 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -102.5,23.5 - parent: 60 - type: Transform -- uid: 22010 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -102.5,24.5 - parent: 60 - type: Transform -- uid: 22011 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -102.5,25.5 - parent: 60 - type: Transform -- uid: 22012 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -102.5,26.5 - parent: 60 - type: Transform -- uid: 22013 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -102.5,27.5 - parent: 60 - type: Transform -- uid: 22014 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -102.5,28.5 - parent: 60 - type: Transform -- uid: 22015 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -102.5,29.5 - parent: 60 - type: Transform -- uid: 22016 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -102.5,30.5 - parent: 60 - type: Transform -- uid: 22017 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -102.5,31.5 - parent: 60 - type: Transform -- uid: 22018 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -102.5,32.5 - parent: 60 - type: Transform -- uid: 22019 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -102.5,33.5 - parent: 60 - type: Transform -- uid: 22020 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -102.5,34.5 - parent: 60 - type: Transform -- uid: 22021 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -103.5,34.5 - parent: 60 - type: Transform -- uid: 22022 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -103.5,33.5 - parent: 60 - type: Transform -- uid: 22023 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -103.5,32.5 - parent: 60 - type: Transform -- uid: 22024 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -103.5,31.5 - parent: 60 - type: Transform -- uid: 22025 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -103.5,30.5 - parent: 60 - type: Transform -- uid: 22026 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -103.5,29.5 - parent: 60 - type: Transform -- uid: 22027 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -103.5,28.5 - parent: 60 - type: Transform -- uid: 22028 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -103.5,27.5 - parent: 60 - type: Transform -- uid: 22029 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -103.5,26.5 - parent: 60 - type: Transform -- uid: 22030 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -103.5,25.5 - parent: 60 - type: Transform -- uid: 22031 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -103.5,24.5 - parent: 60 - type: Transform -- uid: 22032 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -103.5,23.5 - parent: 60 - type: Transform -- uid: 22033 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -103.5,22.5 - parent: 60 - type: Transform -- uid: 22034 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -101.5,23.5 - parent: 60 - type: Transform -- uid: 22035 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -101.5,24.5 - parent: 60 - type: Transform -- uid: 22036 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -101.5,25.5 - parent: 60 - type: Transform -- uid: 22037 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -101.5,26.5 - parent: 60 - type: Transform -- uid: 22038 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -101.5,27.5 - parent: 60 - type: Transform -- uid: 22039 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -101.5,28.5 - parent: 60 - type: Transform -- uid: 22040 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -101.5,29.5 - parent: 60 - type: Transform -- uid: 22041 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -101.5,30.5 - parent: 60 - type: Transform -- uid: 22042 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -101.5,31.5 - parent: 60 - type: Transform -- uid: 22043 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -101.5,32.5 - parent: 60 - type: Transform -- uid: 22044 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -101.5,33.5 - parent: 60 - type: Transform -- uid: 22045 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -101.5,34.5 - parent: 60 - type: Transform -- uid: 22046 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -101.5,35.5 - parent: 60 - type: Transform -- uid: 22047 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -102.5,35.5 - parent: 60 - type: Transform -- uid: 22048 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -102.5,34.5 - parent: 60 - type: Transform -- uid: 22049 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -102.5,33.5 - parent: 60 - type: Transform -- uid: 22050 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -102.5,32.5 - parent: 60 - type: Transform -- uid: 22051 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -102.5,31.5 - parent: 60 - type: Transform -- uid: 22052 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -102.5,30.5 - parent: 60 - type: Transform -- uid: 22053 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -102.5,29.5 - parent: 60 - type: Transform -- uid: 22054 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -102.5,28.5 - parent: 60 - type: Transform -- uid: 22055 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -102.5,27.5 - parent: 60 - type: Transform -- uid: 22056 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -102.5,26.5 - parent: 60 - type: Transform -- uid: 22057 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -102.5,25.5 - parent: 60 - type: Transform -- uid: 22058 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -102.5,24.5 - parent: 60 - type: Transform -- uid: 22059 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -102.5,23.5 - parent: 60 - type: Transform -- uid: 22060 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -103.5,34.5 - parent: 60 - type: Transform -- uid: 22061 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -104.5,34.5 - parent: 60 - type: Transform -- uid: 22062 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -105.5,34.5 - parent: 60 - type: Transform -- uid: 22063 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -106.5,34.5 - parent: 60 - type: Transform -- uid: 22064 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -107.5,34.5 - parent: 60 - type: Transform -- uid: 22065 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -108.5,34.5 - parent: 60 - type: Transform -- uid: 22066 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -109.5,34.5 - parent: 60 - type: Transform -- uid: 22067 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -110.5,34.5 - parent: 60 - type: Transform -- uid: 22068 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -111.5,34.5 - parent: 60 - type: Transform -- uid: 22069 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -112.5,34.5 - parent: 60 - type: Transform -- uid: 22070 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -113.5,34.5 - parent: 60 - type: Transform -- uid: 22071 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -114.5,34.5 - parent: 60 - type: Transform -- uid: 22072 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -115.5,34.5 - parent: 60 - type: Transform -- uid: 22073 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -116.5,34.5 - parent: 60 - type: Transform -- uid: 22074 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -117.5,34.5 - parent: 60 - type: Transform -- uid: 22075 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -118.5,34.5 - parent: 60 - type: Transform -- uid: 22076 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -119.5,34.5 - parent: 60 - type: Transform -- uid: 22077 - type: WindowReinforcedDirectional - components: - - pos: -119.5,35.5 - parent: 60 - type: Transform -- uid: 22078 - type: WindowReinforcedDirectional - components: - - pos: -118.5,35.5 - parent: 60 - type: Transform -- uid: 22079 - type: WindowReinforcedDirectional - components: - - pos: -117.5,35.5 - parent: 60 - type: Transform -- uid: 22080 - type: WindowReinforcedDirectional - components: - - pos: -116.5,35.5 - parent: 60 - type: Transform -- uid: 22081 - type: WindowReinforcedDirectional - components: - - pos: -115.5,35.5 - parent: 60 - type: Transform -- uid: 22082 - type: WindowReinforcedDirectional - components: - - pos: -114.5,35.5 - parent: 60 - type: Transform -- uid: 22083 - type: WindowReinforcedDirectional - components: - - pos: -113.5,35.5 - parent: 60 - type: Transform -- uid: 22084 - type: WindowReinforcedDirectional - components: - - pos: -112.5,35.5 - parent: 60 - type: Transform -- uid: 22085 - type: WindowReinforcedDirectional - components: - - pos: -111.5,35.5 - parent: 60 - type: Transform -- uid: 22086 - type: WindowReinforcedDirectional - components: - - pos: -110.5,35.5 - parent: 60 - type: Transform -- uid: 22087 - type: WindowReinforcedDirectional - components: - - pos: -109.5,35.5 - parent: 60 - type: Transform -- uid: 22088 - type: WindowReinforcedDirectional - components: - - pos: -108.5,35.5 - parent: 60 - type: Transform -- uid: 22089 - type: WindowReinforcedDirectional - components: - - pos: -107.5,35.5 - parent: 60 - type: Transform -- uid: 22090 - type: WindowReinforcedDirectional - components: - - pos: -106.5,35.5 - parent: 60 - type: Transform -- uid: 22091 - type: WindowReinforcedDirectional - components: - - pos: -105.5,35.5 - parent: 60 - type: Transform -- uid: 22092 - type: WindowReinforcedDirectional - components: - - pos: -104.5,35.5 - parent: 60 - type: Transform -- uid: 22093 - type: WindowReinforcedDirectional - components: - - pos: -103.5,35.5 - parent: 60 - type: Transform -- uid: 22094 - type: WindowReinforcedDirectional - components: - - pos: -102.5,36.5 - parent: 60 - type: Transform -- uid: 22095 - type: WindowReinforcedDirectional - components: - - pos: -103.5,36.5 - parent: 60 - type: Transform -- uid: 22096 - type: WindowReinforcedDirectional - components: - - pos: -104.5,36.5 - parent: 60 - type: Transform -- uid: 22097 - type: WindowReinforcedDirectional - components: - - pos: -105.5,36.5 - parent: 60 - type: Transform -- uid: 22098 - type: WindowReinforcedDirectional - components: - - pos: -106.5,36.5 - parent: 60 - type: Transform -- uid: 22099 - type: WindowReinforcedDirectional - components: - - pos: -107.5,36.5 - parent: 60 - type: Transform -- uid: 22100 - type: WindowReinforcedDirectional - components: - - pos: -108.5,36.5 - parent: 60 - type: Transform -- uid: 22101 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -108.5,35.5 - parent: 60 - type: Transform -- uid: 22102 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -107.5,35.5 - parent: 60 - type: Transform -- uid: 22103 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -106.5,35.5 - parent: 60 - type: Transform -- uid: 22104 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -105.5,35.5 - parent: 60 - type: Transform -- uid: 22105 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -104.5,35.5 - parent: 60 - type: Transform -- uid: 22106 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -103.5,35.5 - parent: 60 - type: Transform -- uid: 22107 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -102.5,35.5 - parent: 60 - type: Transform -- uid: 22108 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -108.5,36.5 - parent: 60 - type: Transform -- uid: 22109 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -108.5,37.5 - parent: 60 - type: Transform -- uid: 22110 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -109.5,36.5 - parent: 60 - type: Transform -- uid: 22111 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -109.5,37.5 - parent: 60 - type: Transform -- uid: 22112 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -114.5,36.5 - parent: 60 - type: Transform -- uid: 22113 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -114.5,37.5 - parent: 60 - type: Transform -- uid: 22114 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -113.5,36.5 - parent: 60 - type: Transform -- uid: 22115 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -113.5,37.5 - parent: 60 - type: Transform -- uid: 22116 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -113.5,37.5 - parent: 60 - type: Transform -- uid: 22117 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -112.5,37.5 - parent: 60 - type: Transform -- uid: 22118 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -111.5,37.5 - parent: 60 - type: Transform -- uid: 22119 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -110.5,37.5 - parent: 60 - type: Transform -- uid: 22120 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -109.5,37.5 - parent: 60 - type: Transform -- uid: 22121 - type: WindowReinforcedDirectional - components: - - pos: -109.5,38.5 - parent: 60 - type: Transform -- uid: 22122 - type: WindowReinforcedDirectional - components: - - pos: -110.5,38.5 - parent: 60 - type: Transform -- uid: 22123 - type: WindowReinforcedDirectional - components: - - pos: -111.5,38.5 - parent: 60 - type: Transform -- uid: 22124 - type: WindowReinforcedDirectional - components: - - pos: -112.5,38.5 - parent: 60 - type: Transform -- uid: 22125 - type: WindowReinforcedDirectional - components: - - pos: -113.5,38.5 - parent: 60 - type: Transform -- uid: 22126 - type: WindowReinforcedDirectional - components: - - pos: -114.5,36.5 - parent: 60 - type: Transform -- uid: 22127 - type: WindowReinforcedDirectional - components: - - pos: -115.5,36.5 - parent: 60 - type: Transform -- uid: 22128 - type: WindowReinforcedDirectional - components: - - pos: -116.5,36.5 - parent: 60 - type: Transform -- uid: 22129 - type: WindowReinforcedDirectional - components: - - pos: -117.5,36.5 - parent: 60 - type: Transform -- uid: 22130 - type: WindowReinforcedDirectional - components: - - pos: -118.5,36.5 - parent: 60 - type: Transform -- uid: 22131 - type: WindowReinforcedDirectional - components: - - pos: -119.5,36.5 - parent: 60 - type: Transform -- uid: 22132 - type: WindowReinforcedDirectional - components: - - pos: -120.5,36.5 - parent: 60 - type: Transform -- uid: 22133 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -120.5,35.5 - parent: 60 - type: Transform -- uid: 22134 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -119.5,35.5 - parent: 60 - type: Transform -- uid: 22135 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -118.5,35.5 - parent: 60 - type: Transform -- uid: 22136 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -117.5,35.5 - parent: 60 - type: Transform -- uid: 22137 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -116.5,35.5 - parent: 60 - type: Transform -- uid: 22138 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -115.5,35.5 - parent: 60 - type: Transform -- uid: 22139 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -114.5,35.5 - parent: 60 - type: Transform -- uid: 22140 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -121.5,35.5 - parent: 60 - type: Transform -- uid: 22141 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -121.5,34.5 - parent: 60 - type: Transform -- uid: 22142 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -121.5,33.5 - parent: 60 - type: Transform -- uid: 22143 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -121.5,32.5 - parent: 60 - type: Transform -- uid: 22144 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -121.5,31.5 - parent: 60 - type: Transform -- uid: 22145 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -121.5,30.5 - parent: 60 - type: Transform -- uid: 22146 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -121.5,29.5 - parent: 60 - type: Transform -- uid: 22147 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -121.5,28.5 - parent: 60 - type: Transform -- uid: 22148 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -121.5,27.5 - parent: 60 - type: Transform -- uid: 22149 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -121.5,26.5 - parent: 60 - type: Transform -- uid: 22150 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -121.5,25.5 - parent: 60 - type: Transform -- uid: 22151 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -121.5,24.5 - parent: 60 - type: Transform -- uid: 22152 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -121.5,23.5 - parent: 60 - type: Transform -- uid: 22153 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -120.5,23.5 - parent: 60 - type: Transform -- uid: 22154 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -120.5,24.5 - parent: 60 - type: Transform -- uid: 22155 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -120.5,25.5 - parent: 60 - type: Transform -- uid: 22156 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -120.5,26.5 - parent: 60 - type: Transform -- uid: 22157 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -120.5,27.5 - parent: 60 - type: Transform -- uid: 22158 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -120.5,28.5 - parent: 60 - type: Transform -- uid: 22159 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -120.5,29.5 - parent: 60 - type: Transform -- uid: 22160 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -120.5,30.5 - parent: 60 - type: Transform -- uid: 22161 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -120.5,31.5 - parent: 60 - type: Transform -- uid: 22162 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -120.5,32.5 - parent: 60 - type: Transform -- uid: 22163 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -120.5,33.5 - parent: 60 - type: Transform -- uid: 22164 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -120.5,34.5 - parent: 60 - type: Transform -- uid: 22165 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -120.5,35.5 - parent: 60 - type: Transform -- uid: 22166 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -119.5,34.5 - parent: 60 - type: Transform -- uid: 22167 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -119.5,33.5 - parent: 60 - type: Transform -- uid: 22168 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -119.5,32.5 - parent: 60 - type: Transform -- uid: 22169 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -119.5,31.5 - parent: 60 - type: Transform -- uid: 22170 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -119.5,30.5 - parent: 60 - type: Transform -- uid: 22171 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -119.5,29.5 - parent: 60 - type: Transform -- uid: 22172 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -119.5,28.5 - parent: 60 - type: Transform -- uid: 22173 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -119.5,27.5 - parent: 60 - type: Transform -- uid: 22174 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -119.5,26.5 - parent: 60 - type: Transform -- uid: 22175 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -119.5,25.5 - parent: 60 - type: Transform -- uid: 22176 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -119.5,24.5 - parent: 60 - type: Transform -- uid: 22177 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -119.5,23.5 - parent: 60 - type: Transform -- uid: 22178 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -119.5,22.5 - parent: 60 - type: Transform -- uid: 22179 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -120.5,22.5 - parent: 60 - type: Transform -- uid: 22180 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -120.5,23.5 - parent: 60 - type: Transform -- uid: 22181 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -120.5,24.5 - parent: 60 - type: Transform -- uid: 22182 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -120.5,25.5 - parent: 60 - type: Transform -- uid: 22183 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -120.5,26.5 - parent: 60 - type: Transform -- uid: 22184 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -120.5,27.5 - parent: 60 - type: Transform -- uid: 22185 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -120.5,28.5 - parent: 60 - type: Transform -- uid: 22186 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -120.5,29.5 - parent: 60 - type: Transform -- uid: 22187 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -120.5,30.5 - parent: 60 - type: Transform -- uid: 22188 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -120.5,31.5 - parent: 60 - type: Transform -- uid: 22189 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -120.5,32.5 - parent: 60 - type: Transform -- uid: 22190 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -120.5,33.5 - parent: 60 - type: Transform -- uid: 22191 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -120.5,34.5 - parent: 60 - type: Transform -- uid: 22192 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -124.5,22.5 - parent: 60 - type: Transform -- uid: 22193 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -124.5,21.5 - parent: 60 - type: Transform -- uid: 22194 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -124.5,20.5 - parent: 60 - type: Transform -- uid: 22195 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -124.5,19.5 - parent: 60 - type: Transform -- uid: 22196 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -124.5,18.5 - parent: 60 - type: Transform -- uid: 22197 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -124.5,17.5 - parent: 60 - type: Transform -- uid: 22198 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -124.5,16.5 - parent: 60 - type: Transform -- uid: 22199 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -124.5,15.5 - parent: 60 - type: Transform -- uid: 22200 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -124.5,14.5 - parent: 60 - type: Transform -- uid: 22201 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -124.5,13.5 - parent: 60 - type: Transform -- uid: 22202 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -124.5,12.5 - parent: 60 - type: Transform -- uid: 22203 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -123.5,12.5 - parent: 60 - type: Transform -- uid: 22204 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -123.5,13.5 - parent: 60 - type: Transform -- uid: 22205 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -123.5,14.5 - parent: 60 - type: Transform -- uid: 22206 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -123.5,15.5 - parent: 60 - type: Transform -- uid: 22207 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -123.5,16.5 - parent: 60 - type: Transform -- uid: 22208 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -123.5,17.5 - parent: 60 - type: Transform -- uid: 22209 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -123.5,18.5 - parent: 60 - type: Transform -- uid: 22210 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -123.5,19.5 - parent: 60 - type: Transform -- uid: 22211 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -123.5,20.5 - parent: 60 - type: Transform -- uid: 22212 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -123.5,21.5 - parent: 60 - type: Transform -- uid: 22213 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -123.5,22.5 - parent: 60 - type: Transform -- uid: 22214 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -123.5,22.5 - parent: 60 - type: Transform -- uid: 22215 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -122.5,22.5 - parent: 60 - type: Transform -- uid: 22216 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -121.5,22.5 - parent: 60 - type: Transform -- uid: 22217 - type: WindowReinforcedDirectional - components: - - pos: -121.5,23.5 - parent: 60 - type: Transform -- uid: 22218 - type: WindowReinforcedDirectional - components: - - pos: -122.5,23.5 - parent: 60 - type: Transform -- uid: 22219 - type: WindowReinforcedDirectional - components: - - pos: -123.5,23.5 - parent: 60 - type: Transform -- uid: 22220 - type: WindowReinforcedDirectional - components: - - pos: -120.5,22.5 - parent: 60 - type: Transform -- uid: 22221 - type: WindowReinforcedDirectional - components: - - pos: -121.5,22.5 - parent: 60 - type: Transform -- uid: 22222 - type: WindowReinforcedDirectional - components: - - pos: -122.5,22.5 - parent: 60 - type: Transform -- uid: 22223 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -122.5,21.5 - parent: 60 - type: Transform -- uid: 22224 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -121.5,21.5 - parent: 60 - type: Transform -- uid: 22225 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -120.5,21.5 - parent: 60 - type: Transform -- uid: 22226 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -122.5,19.5 - parent: 60 - type: Transform -- uid: 22227 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -122.5,20.5 - parent: 60 - type: Transform -- uid: 22228 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -122.5,21.5 - parent: 60 - type: Transform -- uid: 22229 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -123.5,21.5 - parent: 60 - type: Transform -- uid: 22230 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -123.5,20.5 - parent: 60 - type: Transform -- uid: 22231 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -123.5,19.5 - parent: 60 - type: Transform -- uid: 22232 - type: WindowReinforcedDirectional - components: - - pos: -122.5,19.5 - parent: 60 - type: Transform -- uid: 22233 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -122.5,18.5 - parent: 60 - type: Transform -- uid: 22234 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -122.5,15.5 - parent: 60 - type: Transform -- uid: 22235 - type: WindowReinforcedDirectional - components: - - pos: -122.5,16.5 - parent: 60 - type: Transform -- uid: 22236 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -122.5,15.5 - parent: 60 - type: Transform -- uid: 22237 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -122.5,14.5 - parent: 60 - type: Transform -- uid: 22238 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -122.5,13.5 - parent: 60 - type: Transform -- uid: 22239 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -123.5,13.5 - parent: 60 - type: Transform -- uid: 22240 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -123.5,14.5 - parent: 60 - type: Transform -- uid: 22241 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -123.5,15.5 - parent: 60 - type: Transform -- uid: 22242 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -123.5,11.5 - parent: 60 - type: Transform -- uid: 22243 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -122.5,11.5 - parent: 60 - type: Transform -- uid: 22244 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -121.5,11.5 - parent: 60 - type: Transform -- uid: 22245 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -120.5,11.5 - parent: 60 - type: Transform -- uid: 22246 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -119.5,11.5 - parent: 60 - type: Transform -- uid: 22247 - type: WindowReinforcedDirectional - components: - - pos: -123.5,12.5 - parent: 60 - type: Transform -- uid: 22248 - type: WindowReinforcedDirectional - components: - - pos: -122.5,12.5 - parent: 60 - type: Transform -- uid: 22249 - type: WindowReinforcedDirectional - components: - - pos: -121.5,12.5 - parent: 60 - type: Transform -- uid: 22250 - type: WindowReinforcedDirectional - components: - - pos: -120.5,12.5 - parent: 60 - type: Transform -- uid: 22251 - type: WindowReinforcedDirectional - components: - - pos: -119.5,12.5 - parent: 60 - type: Transform -- uid: 22252 - type: WindowReinforcedDirectional - components: - - pos: -122.5,13.5 - parent: 60 - type: Transform -- uid: 22253 - type: WindowReinforcedDirectional - components: - - pos: -121.5,13.5 - parent: 60 - type: Transform -- uid: 22254 - type: WindowReinforcedDirectional - components: - - pos: -120.5,13.5 - parent: 60 - type: Transform -- uid: 22255 - type: WindowReinforcedDirectional - components: - - pos: -119.5,13.5 - parent: 60 - type: Transform -- uid: 22256 - type: WindowReinforcedDirectional - components: - - pos: -118.5,13.5 - parent: 60 - type: Transform -- uid: 22257 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -122.5,12.5 - parent: 60 - type: Transform -- uid: 22258 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -121.5,12.5 - parent: 60 - type: Transform -- uid: 22259 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -120.5,12.5 - parent: 60 - type: Transform -- uid: 22260 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -119.5,12.5 - parent: 60 - type: Transform -- uid: 22261 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -118.5,12.5 - parent: 60 - type: Transform -- uid: 22262 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -117.5,12.5 - parent: 60 - type: Transform -- uid: 22263 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -117.5,11.5 - parent: 60 - type: Transform -- uid: 22264 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -117.5,10.5 - parent: 60 - type: Transform -- uid: 22265 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -117.5,9.5 - parent: 60 - type: Transform -- uid: 22266 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -117.5,8.5 - parent: 60 - type: Transform -- uid: 22267 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -117.5,7.5 - parent: 60 - type: Transform -- uid: 22268 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -117.5,6.5 - parent: 60 - type: Transform -- uid: 22269 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -117.5,5.5 - parent: 60 - type: Transform -- uid: 22270 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -118.5,5.5 - parent: 60 - type: Transform -- uid: 22271 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -118.5,6.5 - parent: 60 - type: Transform -- uid: 22272 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -118.5,7.5 - parent: 60 - type: Transform -- uid: 22273 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -118.5,8.5 - parent: 60 - type: Transform -- uid: 22274 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -118.5,9.5 - parent: 60 - type: Transform -- uid: 22275 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -118.5,10.5 - parent: 60 - type: Transform -- uid: 22276 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -118.5,11.5 - parent: 60 - type: Transform -- uid: 22277 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -118.5,12.5 - parent: 60 - type: Transform -- uid: 22278 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -119.5,11.5 - parent: 60 - type: Transform -- uid: 22279 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -119.5,10.5 - parent: 60 - type: Transform -- uid: 22280 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -119.5,9.5 - parent: 60 - type: Transform -- uid: 22281 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -119.5,8.5 - parent: 60 - type: Transform -- uid: 22282 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -119.5,7.5 - parent: 60 - type: Transform -- uid: 22283 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -119.5,6.5 - parent: 60 - type: Transform -- uid: 22284 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -119.5,5.5 - parent: 60 - type: Transform -- uid: 22285 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -119.5,4.5 - parent: 60 - type: Transform -- uid: 22286 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -118.5,4.5 - parent: 60 - type: Transform -- uid: 22287 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -118.5,5.5 - parent: 60 - type: Transform -- uid: 22288 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -118.5,6.5 - parent: 60 - type: Transform -- uid: 22289 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -118.5,7.5 - parent: 60 - type: Transform -- uid: 22290 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -118.5,8.5 - parent: 60 - type: Transform -- uid: 22291 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -118.5,9.5 - parent: 60 - type: Transform -- uid: 22292 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -118.5,10.5 - parent: 60 - type: Transform -- uid: 22293 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -118.5,11.5 - parent: 60 - type: Transform -- uid: 22294 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -118.5,3.5 - parent: 60 - type: Transform -- uid: 22295 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -117.5,3.5 - parent: 60 - type: Transform -- uid: 22296 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -116.5,3.5 - parent: 60 - type: Transform -- uid: 22297 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -115.5,3.5 - parent: 60 - type: Transform -- uid: 22298 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -114.5,3.5 - parent: 60 - type: Transform -- uid: 22299 - type: WindowReinforcedDirectional - components: - - pos: -118.5,4.5 - parent: 60 - type: Transform -- uid: 22300 - type: WindowReinforcedDirectional - components: - - pos: -117.5,4.5 - parent: 60 - type: Transform -- uid: 22301 - type: WindowReinforcedDirectional - components: - - pos: -116.5,4.5 - parent: 60 - type: Transform -- uid: 22302 - type: WindowReinforcedDirectional - components: - - pos: -115.5,4.5 - parent: 60 - type: Transform -- uid: 22303 - type: WindowReinforcedDirectional - components: - - pos: -114.5,4.5 - parent: 60 - type: Transform -- uid: 22304 - type: WindowReinforcedDirectional - components: - - pos: -117.5,5.5 - parent: 60 - type: Transform -- uid: 22305 - type: WindowReinforcedDirectional - components: - - pos: -116.5,5.5 - parent: 60 - type: Transform -- uid: 22306 - type: WindowReinforcedDirectional - components: - - pos: -115.5,5.5 - parent: 60 - type: Transform -- uid: 22307 - type: WindowReinforcedDirectional - components: - - pos: -114.5,5.5 - parent: 60 - type: Transform -- uid: 22308 - type: WindowReinforcedDirectional - components: - - pos: -113.5,5.5 - parent: 60 - type: Transform -- uid: 22309 - type: WindowReinforcedDirectional - components: - - pos: -112.5,5.5 - parent: 60 - type: Transform -- uid: 22310 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -117.5,4.5 - parent: 60 - type: Transform -- uid: 22311 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -116.5,4.5 - parent: 60 - type: Transform -- uid: 22312 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -115.5,4.5 - parent: 60 - type: Transform -- uid: 22313 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -114.5,4.5 - parent: 60 - type: Transform -- uid: 22314 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -113.5,4.5 - parent: 60 - type: Transform -- uid: 22315 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -112.5,4.5 - parent: 60 - type: Transform -- uid: 22316 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -114.5,2.5 - parent: 60 - type: Transform -- uid: 22317 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -114.5,3.5 - parent: 60 - type: Transform -- uid: 22318 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -113.5,2.5 - parent: 60 - type: Transform -- uid: 22319 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -113.5,3.5 - parent: 60 - type: Transform -- uid: 22320 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -113.5,1.5 - parent: 60 - type: Transform -- uid: 22321 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -112.5,1.5 - parent: 60 - type: Transform -- uid: 22322 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -111.5,1.5 - parent: 60 - type: Transform -- uid: 22323 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -110.5,1.5 - parent: 60 - type: Transform -- uid: 22324 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -109.5,1.5 - parent: 60 - type: Transform -- uid: 22325 - type: WindowReinforcedDirectional - components: - - pos: -113.5,2.5 - parent: 60 - type: Transform -- uid: 22326 - type: WindowReinforcedDirectional - components: - - pos: -112.5,2.5 - parent: 60 - type: Transform -- uid: 22327 - type: WindowReinforcedDirectional - components: - - pos: -111.5,2.5 - parent: 60 - type: Transform -- uid: 22328 - type: WindowReinforcedDirectional - components: - - pos: -110.5,2.5 - parent: 60 - type: Transform -- uid: 22329 - type: WindowReinforcedDirectional - components: - - pos: -109.5,2.5 - parent: 60 - type: Transform -- uid: 22330 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -108.5,2.5 - parent: 60 - type: Transform -- uid: 22331 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -108.5,3.5 - parent: 60 - type: Transform -- uid: 22332 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -109.5,2.5 - parent: 60 - type: Transform -- uid: 22333 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -109.5,3.5 - parent: 60 - type: Transform -- uid: 22334 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -112.5,5.5 - parent: 60 - type: Transform -- uid: 22335 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -110.5,5.5 - parent: 60 - type: Transform -- uid: 22336 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -111.5,5.5 - parent: 60 - type: Transform -- uid: 22337 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -111.5,5.5 - parent: 60 - type: Transform -- uid: 22338 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -110.5,4.5 - parent: 60 - type: Transform -- uid: 22339 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -109.5,4.5 - parent: 60 - type: Transform -- uid: 22340 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -108.5,4.5 - parent: 60 - type: Transform -- uid: 22341 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -107.5,4.5 - parent: 60 - type: Transform -- uid: 22342 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -106.5,4.5 - parent: 60 - type: Transform -- uid: 22343 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -105.5,4.5 - parent: 60 - type: Transform -- uid: 22344 - type: WindowReinforcedDirectional - components: - - pos: -110.5,5.5 - parent: 60 - type: Transform -- uid: 22345 - type: WindowReinforcedDirectional - components: - - pos: -109.5,5.5 - parent: 60 - type: Transform -- uid: 22346 - type: WindowReinforcedDirectional - components: - - pos: -108.5,5.5 - parent: 60 - type: Transform -- uid: 22347 - type: WindowReinforcedDirectional - components: - - pos: -107.5,5.5 - parent: 60 - type: Transform -- uid: 22348 - type: WindowReinforcedDirectional - components: - - pos: -106.5,5.5 - parent: 60 - type: Transform -- uid: 22349 - type: WindowReinforcedDirectional - components: - - pos: -105.5,5.5 - parent: 60 - type: Transform -- uid: 22350 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -108.5,3.5 - parent: 60 - type: Transform -- uid: 22351 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -107.5,3.5 - parent: 60 - type: Transform -- uid: 22352 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -106.5,3.5 - parent: 60 - type: Transform -- uid: 22353 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -105.5,3.5 - parent: 60 - type: Transform -- uid: 22354 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -104.5,3.5 - parent: 60 - type: Transform -- uid: 22355 - type: WindowReinforcedDirectional - components: - - pos: -108.5,4.5 - parent: 60 - type: Transform -- uid: 22356 - type: WindowReinforcedDirectional - components: - - pos: -107.5,4.5 - parent: 60 - type: Transform -- uid: 22357 - type: WindowReinforcedDirectional - components: - - pos: -106.5,4.5 - parent: 60 - type: Transform -- uid: 22358 - type: WindowReinforcedDirectional - components: - - pos: -105.5,4.5 - parent: 60 - type: Transform -- uid: 22359 - type: WindowReinforcedDirectional - components: - - pos: -104.5,4.5 - parent: 60 - type: Transform -- uid: 22360 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -103.5,4.5 - parent: 60 - type: Transform -- uid: 22361 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -103.5,5.5 - parent: 60 - type: Transform -- uid: 22362 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -103.5,6.5 - parent: 60 - type: Transform -- uid: 22363 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -103.5,7.5 - parent: 60 - type: Transform -- uid: 22364 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -103.5,8.5 - parent: 60 - type: Transform -- uid: 22365 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -103.5,9.5 - parent: 60 - type: Transform -- uid: 22366 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -103.5,10.5 - parent: 60 - type: Transform -- uid: 22367 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -103.5,11.5 - parent: 60 - type: Transform -- uid: 22368 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -104.5,4.5 - parent: 60 - type: Transform -- uid: 22369 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -104.5,5.5 - parent: 60 - type: Transform -- uid: 22370 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -104.5,6.5 - parent: 60 - type: Transform -- uid: 22371 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -104.5,7.5 - parent: 60 - type: Transform -- uid: 22372 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -104.5,8.5 - parent: 60 - type: Transform -- uid: 22373 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -104.5,9.5 - parent: 60 - type: Transform -- uid: 22374 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -104.5,10.5 - parent: 60 - type: Transform -- uid: 22375 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -104.5,11.5 - parent: 60 - type: Transform -- uid: 22376 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -104.5,5.5 - parent: 60 - type: Transform -- uid: 22377 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -104.5,6.5 - parent: 60 - type: Transform -- uid: 22378 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -104.5,7.5 - parent: 60 - type: Transform -- uid: 22379 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -104.5,8.5 - parent: 60 - type: Transform -- uid: 22380 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -104.5,9.5 - parent: 60 - type: Transform -- uid: 22381 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -104.5,10.5 - parent: 60 - type: Transform -- uid: 22382 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -104.5,11.5 - parent: 60 - type: Transform -- uid: 22383 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -104.5,12.5 - parent: 60 - type: Transform -- uid: 22384 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -105.5,5.5 - parent: 60 - type: Transform -- uid: 22385 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -105.5,6.5 - parent: 60 - type: Transform -- uid: 22386 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -105.5,7.5 - parent: 60 - type: Transform -- uid: 22387 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -105.5,8.5 - parent: 60 - type: Transform -- uid: 22388 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -105.5,9.5 - parent: 60 - type: Transform -- uid: 22389 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -105.5,10.5 - parent: 60 - type: Transform -- uid: 22390 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -105.5,11.5 - parent: 60 - type: Transform -- uid: 22391 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -105.5,12.5 - parent: 60 - type: Transform -- uid: 22392 - type: WindowReinforcedDirectional - components: - - pos: -104.5,13.5 - parent: 60 - type: Transform -- uid: 22393 - type: WindowReinforcedDirectional - components: - - pos: -103.5,13.5 - parent: 60 - type: Transform -- uid: 22394 - type: WindowReinforcedDirectional - components: - - pos: -102.5,13.5 - parent: 60 - type: Transform -- uid: 22395 - type: WindowReinforcedDirectional - components: - - pos: -101.5,13.5 - parent: 60 - type: Transform -- uid: 22396 - type: WindowReinforcedDirectional - components: - - pos: -100.5,13.5 - parent: 60 - type: Transform -- uid: 22397 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -104.5,12.5 - parent: 60 - type: Transform -- uid: 22398 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -103.5,12.5 - parent: 60 - type: Transform -- uid: 22399 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -102.5,12.5 - parent: 60 - type: Transform -- uid: 22400 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -101.5,12.5 - parent: 60 - type: Transform -- uid: 22401 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -100.5,12.5 - parent: 60 - type: Transform -- uid: 22402 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -100.5,13.5 - parent: 60 - type: Transform -- uid: 22403 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -100.5,14.5 - parent: 60 - type: Transform -- uid: 22404 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -100.5,15.5 - parent: 60 - type: Transform -- uid: 22405 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -99.5,13.5 - parent: 60 - type: Transform -- uid: 22406 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -99.5,14.5 - parent: 60 - type: Transform -- uid: 22407 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -99.5,15.5 - parent: 60 - type: Transform -- uid: 22408 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -98.5,15.5 - parent: 60 - type: Transform -- uid: 22409 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -98.5,14.5 - parent: 60 - type: Transform -- uid: 22410 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -98.5,13.5 - parent: 60 - type: Transform -- uid: 22411 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -98.5,12.5 - parent: 60 - type: Transform -- uid: 22412 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -99.5,12.5 - parent: 60 - type: Transform -- uid: 22413 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -99.5,13.5 - parent: 60 - type: Transform -- uid: 22414 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -99.5,14.5 - parent: 60 - type: Transform -- uid: 22415 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -99.5,15.5 - parent: 60 - type: Transform -- uid: 22416 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -99.5,11.5 - parent: 60 - type: Transform -- uid: 22417 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -100.5,11.5 - parent: 60 - type: Transform -- uid: 22418 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -101.5,11.5 - parent: 60 - type: Transform -- uid: 22419 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -102.5,11.5 - parent: 60 - type: Transform -- uid: 22420 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -103.5,11.5 - parent: 60 - type: Transform -- uid: 22421 - type: WindowReinforcedDirectional - components: - - pos: -103.5,12.5 - parent: 60 - type: Transform -- uid: 22422 - type: WindowReinforcedDirectional - components: - - pos: -102.5,12.5 - parent: 60 - type: Transform -- uid: 22423 - type: WindowReinforcedDirectional - components: - - pos: -101.5,12.5 - parent: 60 - type: Transform -- uid: 22424 - type: WindowReinforcedDirectional - components: - - pos: -100.5,12.5 - parent: 60 - type: Transform -- uid: 22425 - type: WindowReinforcedDirectional - components: - - pos: -99.5,12.5 - parent: 60 - type: Transform -- uid: 22426 - type: AirlockExternalGlassLocked - components: - - pos: -95.5,20.5 - parent: 60 - type: Transform -- uid: 22427 - type: AirlockExternalGlassLocked - components: - - pos: -95.5,21.5 - parent: 60 - type: Transform -- uid: 22428 - type: AirlockExternalGlassLocked - components: - - pos: -98.5,20.5 - parent: 60 - type: Transform -- uid: 22429 - type: AirlockExternalGlassLocked - components: - - pos: -98.5,21.5 - parent: 60 - type: Transform -- uid: 22430 - type: SignSpace - components: - - pos: -94.5,19.5 - parent: 60 - type: Transform -- uid: 22431 - type: APCHyperCapacity - components: - - rot: 3.141592653589793 rad - pos: -94.5,15.5 - parent: 60 - type: Transform -- uid: 22432 - type: Catwalk - components: - - pos: -111.5,34.5 - parent: 60 - type: Transform -- uid: 22433 - type: PottedPlantRandom - components: - - pos: -113.5,37.5 - parent: 60 - type: Transform -- uid: 22434 - type: PottedPlantRandom - components: - - pos: -109.5,37.5 - parent: 60 - type: Transform -- uid: 22435 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -112.5,36.5 - parent: 60 - type: Transform -- uid: 22436 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -110.5,36.5 - parent: 60 - type: Transform -- uid: 22437 - type: Windoor - components: - - pos: -102.5,35.5 - parent: 60 - type: Transform -- uid: 22438 - type: Windoor - components: - - pos: -120.5,35.5 - parent: 60 - type: Transform -- uid: 22439 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: -123.5,18.5 - parent: 60 - type: Transform -- uid: 22440 - type: Windoor - components: - - pos: -123.5,16.5 - parent: 60 - type: Transform -- uid: 22441 - type: Windoor - components: - - pos: -99.5,16.5 - parent: 60 - type: Transform -- uid: 22442 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: -99.5,18.5 - parent: 60 - type: Transform -- uid: 22443 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: -104.5,4.5 - parent: 60 - type: Transform -- uid: 22444 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: -118.5,4.5 - parent: 60 - type: Transform -- uid: 22445 - type: PottedPlantRandom - components: - - pos: -113.5,2.5 - parent: 60 - type: Transform -- uid: 22446 - type: PottedPlantRandom - components: - - pos: -109.5,2.5 - parent: 60 - type: Transform -- uid: 22447 - type: Chair - components: - - pos: -112.5,3.5 - parent: 60 - type: Transform -- uid: 22448 - type: Chair - components: - - pos: -110.5,3.5 - parent: 60 - type: Transform -- uid: 22449 - type: AirlockMaintCommandLocked - components: - - pos: -121.5,17.5 - parent: 60 - type: Transform -- uid: 22450 - type: AirlockMaintCommandLocked - components: - - pos: -115.5,17.5 - parent: 60 - type: Transform -- uid: 22451 - type: HighSecCommandLocked - components: - - pos: -111.5,20.5 - parent: 60 - type: Transform -- uid: 22452 - type: AirlockCommandLocked - components: - - pos: -111.5,14.5 - parent: 60 - type: Transform -- uid: 22453 - type: AirlockCommandLocked - components: - - pos: -101.5,17.5 - parent: 60 - type: Transform -- uid: 22454 - type: AirlockCommandLocked - components: - - pos: -107.5,17.5 - parent: 60 - type: Transform -- uid: 22455 - type: WallReinforced - components: - - pos: -112.5,24.5 - parent: 60 - type: Transform -- uid: 22456 - type: WallReinforced - components: - - pos: -111.5,24.5 - parent: 60 - type: Transform -- uid: 22457 - type: WallReinforced - components: - - pos: -110.5,24.5 - parent: 60 - type: Transform -- uid: 22458 - type: WallReinforced - components: - - pos: -110.5,25.5 - parent: 60 - type: Transform -- uid: 22459 - type: WallReinforced - components: - - pos: -110.5,27.5 - parent: 60 - type: Transform -- uid: 22460 - type: WallReinforced - components: - - pos: -112.5,27.5 - parent: 60 - type: Transform -- uid: 22461 - type: ReinforcedWindow - components: - - pos: -111.5,27.5 - parent: 60 - type: Transform -- uid: 22462 - type: Grille - components: - - pos: -111.5,27.5 - parent: 60 - type: Transform -- uid: 22463 - type: ShuttersNormalOpen - components: - - pos: -111.5,27.5 - parent: 60 - type: Transform -- uid: 22464 - type: ShuttersNormalOpen - components: - - pos: -111.5,20.5 - parent: 60 - type: Transform -- uid: 22465 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -98.5,18.5 - parent: 60 - type: Transform -- uid: 22466 - type: PoweredSmallLight - components: - - pos: -94.5,18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22467 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -94.5,16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22468 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -100.5,16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22469 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -100.5,18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22470 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -101.5,18.5 - parent: 60 - type: Transform - - devices: - - 23000 - - 23043 - - 22881 - - 23044 - - 22908 - - 22876 - - 23045 - - 22906 - - 22878 - type: DeviceList -- uid: 22471 - type: AirAlarm - components: - - pos: -112.5,24.5 - parent: 60 - type: Transform - - devices: - - 23039 - - 23040 - - 22893 - - 23038 - - 23046 - - 22894 - - 23054 - type: DeviceList -- uid: 22472 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -109.5,14.5 - parent: 60 - type: Transform - - devices: - - 23014 - - 23041 - - 22882 - type: DeviceList -- uid: 22473 - type: AirAlarm - components: - - pos: -119.5,20.5 - parent: 60 - type: Transform - - devices: - - 22886 - - 23047 - - 22907 - type: DeviceList -- uid: 22474 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -109.5,7.5 - parent: 60 - type: Transform - - devices: - - 23051 - - 22891 - - 23020 - type: DeviceList -- uid: 22475 - type: CableHV - components: - - pos: -120.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22476 - type: SMESBasic - components: - - pos: -117.5,19.5 - parent: 60 - type: Transform -- uid: 22477 - type: SubstationBasic - components: - - pos: -116.5,19.5 - parent: 60 - type: Transform -- uid: 22478 - type: CableHV - components: - - pos: -119.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22479 - type: CableHV - components: - - pos: -118.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22480 - type: CableHV - components: - - pos: -117.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22481 - type: CableHV - components: - - pos: -117.5,19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22482 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: -117.5,18.5 - parent: 60 - type: Transform -- uid: 22483 - type: CableHV - components: - - pos: -120.5,19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22484 - type: CableHV - components: - - pos: -116.5,19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22485 - type: GeneratorUranium - components: - - pos: -120.5,19.5 - parent: 60 - type: Transform -- uid: 22486 - type: APCHyperCapacity - components: - - rot: 3.141592653589793 rad - pos: -120.5,14.5 - parent: 60 - type: Transform -- uid: 22487 - type: APCHyperCapacity - components: - - rot: 3.141592653589793 rad - pos: -113.5,7.5 - parent: 60 - type: Transform -- uid: 22488 - type: APCHyperCapacity - components: - - pos: -110.5,24.5 - parent: 60 - type: Transform -- uid: 22489 - type: APCHyperCapacity - components: - - pos: -110.5,20.5 - parent: 60 - type: Transform -- uid: 22490 - type: APCHyperCapacity - components: - - rot: 3.141592653589793 rad - pos: -104.5,14.5 - parent: 60 - type: Transform -- uid: 22491 - type: AirAlarm - components: - - pos: -105.5,20.5 - parent: 60 - type: Transform - - devices: - - 22879 - - 23042 - - 23013 - type: DeviceList -- uid: 22492 - type: CableMV - components: - - pos: -116.5,19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22493 - type: CableMV - components: - - pos: -116.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22494 - type: CableMV - components: - - pos: -116.5,17.5 - parent: 60 - type: Transform -- uid: 22495 - type: CableMV - components: - - pos: -117.5,17.5 - parent: 60 - type: Transform -- uid: 22496 - type: CableMV - components: - - pos: -118.5,17.5 - parent: 60 - type: Transform -- uid: 22497 - type: CableMV - components: - - pos: -119.5,17.5 - parent: 60 - type: Transform -- uid: 22498 - type: CableMV - components: - - pos: -120.5,17.5 - parent: 60 - type: Transform -- uid: 22499 - type: CableMV - components: - - pos: -120.5,16.5 - parent: 60 - type: Transform -- uid: 22500 - type: CableMV - components: - - pos: -120.5,15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22501 - type: CableMV - components: - - pos: -120.5,14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22502 - type: CableMV - components: - - pos: -115.5,17.5 - parent: 60 - type: Transform -- uid: 22503 - type: CableMV - components: - - pos: -114.5,17.5 - parent: 60 - type: Transform -- uid: 22504 - type: CableMV - components: - - pos: -113.5,17.5 - parent: 60 - type: Transform -- uid: 22505 - type: CableMV - components: - - pos: -112.5,17.5 - parent: 60 - type: Transform -- uid: 22506 - type: CableMV - components: - - pos: -111.5,17.5 - parent: 60 - type: Transform -- uid: 22507 - type: CableMV - components: - - pos: -110.5,17.5 - parent: 60 - type: Transform -- uid: 22508 - type: CableMV - components: - - pos: -110.5,18.5 - parent: 60 - type: Transform -- uid: 22509 - type: CableMV - components: - - pos: -110.5,19.5 - parent: 60 - type: Transform -- uid: 22510 - type: CableMV - components: - - pos: -110.5,20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22511 - type: CableMV - components: - - pos: -110.5,21.5 - parent: 60 - type: Transform -- uid: 22512 - type: CableMV - components: - - pos: -110.5,22.5 - parent: 60 - type: Transform -- uid: 22513 - type: CableMV - components: - - pos: -110.5,23.5 - parent: 60 - type: Transform -- uid: 22514 - type: CableMV - components: - - pos: -110.5,24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22515 - type: CableMV - components: - - pos: -109.5,17.5 - parent: 60 - type: Transform -- uid: 22516 - type: CableMV - components: - - pos: -108.5,17.5 - parent: 60 - type: Transform -- uid: 22517 - type: CableMV - components: - - pos: -107.5,17.5 - parent: 60 - type: Transform -- uid: 22518 - type: CableMV - components: - - pos: -106.5,17.5 - parent: 60 - type: Transform -- uid: 22519 - type: CableMV - components: - - pos: -105.5,17.5 - parent: 60 - type: Transform -- uid: 22520 - type: CableMV - components: - - pos: -104.5,17.5 - parent: 60 - type: Transform -- uid: 22521 - type: CableMV - components: - - pos: -104.5,16.5 - parent: 60 - type: Transform -- uid: 22522 - type: CableMV - components: - - pos: -104.5,15.5 - parent: 60 - type: Transform -- uid: 22523 - type: CableMV - components: - - pos: -104.5,14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22524 - type: CableMV - components: - - pos: -111.5,16.5 - parent: 60 - type: Transform -- uid: 22525 - type: CableMV - components: - - pos: -111.5,15.5 - parent: 60 - type: Transform -- uid: 22526 - type: CableMV - components: - - pos: -111.5,14.5 - parent: 60 - type: Transform -- uid: 22527 - type: CableMV - components: - - pos: -111.5,13.5 - parent: 60 - type: Transform -- uid: 22528 - type: CableMV - components: - - pos: -111.5,12.5 - parent: 60 - type: Transform -- uid: 22529 - type: CableMV - components: - - pos: -111.5,11.5 - parent: 60 - type: Transform -- uid: 22530 - type: CableMV - components: - - pos: -111.5,10.5 - parent: 60 - type: Transform -- uid: 22531 - type: CableMV - components: - - pos: -111.5,9.5 - parent: 60 - type: Transform -- uid: 22532 - type: CableMV - components: - - pos: -112.5,9.5 - parent: 60 - type: Transform -- uid: 22533 - type: CableMV - components: - - pos: -113.5,9.5 - parent: 60 - type: Transform -- uid: 22534 - type: CableMV - components: - - pos: -113.5,8.5 - parent: 60 - type: Transform -- uid: 22535 - type: CableMV - components: - - pos: -113.5,7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22536 - type: CableMV - components: - - pos: -103.5,17.5 - parent: 60 - type: Transform -- uid: 22537 - type: CableMV - components: - - pos: -102.5,17.5 - parent: 60 - type: Transform -- uid: 22538 - type: CableMV - components: - - pos: -101.5,17.5 - parent: 60 - type: Transform -- uid: 22539 - type: CableMV - components: - - pos: -100.5,17.5 - parent: 60 - type: Transform -- uid: 22540 - type: CableMV - components: - - pos: -99.5,17.5 - parent: 60 - type: Transform -- uid: 22541 - type: CableMV - components: - - pos: -98.5,17.5 - parent: 60 - type: Transform -- uid: 22542 - type: CableMV - components: - - pos: -97.5,17.5 - parent: 60 - type: Transform -- uid: 22543 - type: CableMV - components: - - pos: -96.5,17.5 - parent: 60 - type: Transform -- uid: 22544 - type: CableMV - components: - - pos: -95.5,17.5 - parent: 60 - type: Transform -- uid: 22545 - type: CableMV - components: - - pos: -94.5,17.5 - parent: 60 - type: Transform -- uid: 22546 - type: CableMV - components: - - pos: -94.5,16.5 - parent: 60 - type: Transform -- uid: 22547 - type: CableMV - components: - - pos: -94.5,15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22548 - type: CableApcExtension - components: - - pos: -94.5,15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22549 - type: CableApcExtension - components: - - pos: -94.5,16.5 - parent: 60 - type: Transform -- uid: 22550 - type: CableApcExtension - components: - - pos: -94.5,17.5 - parent: 60 - type: Transform -- uid: 22551 - type: CableApcExtension - components: - - pos: -95.5,17.5 - parent: 60 - type: Transform -- uid: 22552 - type: CableApcExtension - components: - - pos: -96.5,17.5 - parent: 60 - type: Transform -- uid: 22553 - type: CableApcExtension - components: - - pos: -97.5,17.5 - parent: 60 - type: Transform -- uid: 22554 - type: CableApcExtension - components: - - pos: -98.5,17.5 - parent: 60 - type: Transform -- uid: 22555 - type: CableApcExtension - components: - - pos: -99.5,17.5 - parent: 60 - type: Transform -- uid: 22556 - type: CableApcExtension - components: - - pos: -104.5,14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22557 - type: CableApcExtension - components: - - pos: -104.5,15.5 - parent: 60 - type: Transform -- uid: 22558 - type: CableApcExtension - components: - - pos: -104.5,16.5 - parent: 60 - type: Transform -- uid: 22559 - type: CableApcExtension - components: - - pos: -104.5,17.5 - parent: 60 - type: Transform -- uid: 22560 - type: CableApcExtension - components: - - pos: -103.5,17.5 - parent: 60 - type: Transform -- uid: 22561 - type: CableApcExtension - components: - - pos: -105.5,17.5 - parent: 60 - type: Transform -- uid: 22562 - type: CableApcExtension - components: - - pos: -104.5,18.5 - parent: 60 - type: Transform -- uid: 22563 - type: CableApcExtension - components: - - pos: -110.5,20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22564 - type: CableApcExtension - components: - - pos: -110.5,19.5 - parent: 60 - type: Transform -- uid: 22565 - type: CableApcExtension - components: - - pos: -110.5,18.5 - parent: 60 - type: Transform -- uid: 22566 - type: CableApcExtension - components: - - pos: -110.5,17.5 - parent: 60 - type: Transform -- uid: 22567 - type: CableApcExtension - components: - - pos: -111.5,16.5 - parent: 60 - type: Transform -- uid: 22568 - type: CableApcExtension - components: - - pos: -111.5,17.5 - parent: 60 - type: Transform -- uid: 22569 - type: CableApcExtension - components: - - pos: -112.5,17.5 - parent: 60 - type: Transform -- uid: 22570 - type: CableApcExtension - components: - - pos: -113.5,17.5 - parent: 60 - type: Transform -- uid: 22571 - type: CableApcExtension - components: - - pos: -109.5,17.5 - parent: 60 - type: Transform -- uid: 22572 - type: CableApcExtension - components: - - pos: -108.5,17.5 - parent: 60 - type: Transform -- uid: 22573 - type: CableApcExtension - components: - - pos: -108.5,16.5 - parent: 60 - type: Transform -- uid: 22574 - type: CableApcExtension - components: - - pos: -114.5,17.5 - parent: 60 - type: Transform -- uid: 22575 - type: CableApcExtension - components: - - pos: -114.5,16.5 - parent: 60 - type: Transform -- uid: 22576 - type: CableApcExtension - components: - - pos: -113.5,18.5 - parent: 60 - type: Transform -- uid: 22577 - type: CableApcExtension - components: - - pos: -113.5,19.5 - parent: 60 - type: Transform -- uid: 22578 - type: CableApcExtension - components: - - pos: -111.5,15.5 - parent: 60 - type: Transform -- uid: 22579 - type: CableApcExtension - components: - - pos: -110.5,23.5 - parent: 60 - type: Transform -- uid: 22580 - type: CableApcExtension - components: - - pos: -110.5,24.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22581 - type: CableApcExtension - components: - - pos: -110.5,22.5 - parent: 60 - type: Transform -- uid: 22582 - type: CableApcExtension - components: - - pos: -111.5,22.5 - parent: 60 - type: Transform -- uid: 22583 - type: CableApcExtension - components: - - pos: -112.5,22.5 - parent: 60 - type: Transform -- uid: 22584 - type: CableApcExtension - components: - - pos: -113.5,22.5 - parent: 60 - type: Transform -- uid: 22585 - type: CableApcExtension - components: - - pos: -114.5,22.5 - parent: 60 - type: Transform -- uid: 22586 - type: CableApcExtension - components: - - pos: -115.5,22.5 - parent: 60 - type: Transform -- uid: 22587 - type: CableApcExtension - components: - - pos: -109.5,22.5 - parent: 60 - type: Transform -- uid: 22588 - type: CableApcExtension - components: - - pos: -108.5,22.5 - parent: 60 - type: Transform -- uid: 22589 - type: CableApcExtension - components: - - pos: -107.5,22.5 - parent: 60 - type: Transform -- uid: 22590 - type: CableApcExtension - components: - - pos: -108.5,23.5 - parent: 60 - type: Transform -- uid: 22591 - type: CableApcExtension - components: - - pos: -108.5,24.5 - parent: 60 - type: Transform -- uid: 22592 - type: CableApcExtension - components: - - pos: -108.5,25.5 - parent: 60 - type: Transform -- uid: 22593 - type: CableApcExtension - components: - - pos: -108.5,26.5 - parent: 60 - type: Transform -- uid: 22594 - type: CableApcExtension - components: - - pos: -108.5,27.5 - parent: 60 - type: Transform -- uid: 22595 - type: CableApcExtension - components: - - pos: -108.5,28.5 - parent: 60 - type: Transform -- uid: 22596 - type: CableApcExtension - components: - - pos: -108.5,29.5 - parent: 60 - type: Transform -- uid: 22597 - type: CableApcExtension - components: - - pos: -114.5,23.5 - parent: 60 - type: Transform -- uid: 22598 - type: CableApcExtension - components: - - pos: -114.5,24.5 - parent: 60 - type: Transform -- uid: 22599 - type: CableApcExtension - components: - - pos: -114.5,25.5 - parent: 60 - type: Transform -- uid: 22600 - type: CableApcExtension - components: - - pos: -114.5,26.5 - parent: 60 - type: Transform -- uid: 22601 - type: CableApcExtension - components: - - pos: -114.5,27.5 - parent: 60 - type: Transform -- uid: 22602 - type: CableApcExtension - components: - - pos: -114.5,28.5 - parent: 60 - type: Transform -- uid: 22603 - type: CableApcExtension - components: - - pos: -114.5,29.5 - parent: 60 - type: Transform -- uid: 22604 - type: CableApcExtension - components: - - pos: -113.5,29.5 - parent: 60 - type: Transform -- uid: 22605 - type: CableApcExtension - components: - - pos: -115.5,29.5 - parent: 60 - type: Transform -- uid: 22606 - type: CableApcExtension - components: - - pos: -109.5,29.5 - parent: 60 - type: Transform -- uid: 22607 - type: CableApcExtension - components: - - pos: -107.5,29.5 - parent: 60 - type: Transform -- uid: 22608 - type: CableApcExtension - components: - - pos: -109.5,26.5 - parent: 60 - type: Transform -- uid: 22609 - type: CableApcExtension - components: - - pos: -110.5,26.5 - parent: 60 - type: Transform -- uid: 22610 - type: CableApcExtension - components: - - pos: -111.5,26.5 - parent: 60 - type: Transform -- uid: 22611 - type: CableApcExtension - components: - - pos: -112.5,26.5 - parent: 60 - type: Transform -- uid: 22612 - type: CableApcExtension - components: - - pos: -113.5,26.5 - parent: 60 - type: Transform -- uid: 22613 - type: CableApcExtension - components: - - pos: -113.5,29.5 - parent: 60 - type: Transform -- uid: 22614 - type: CableApcExtension - components: - - pos: -112.5,29.5 - parent: 60 - type: Transform -- uid: 22615 - type: CableApcExtension - components: - - pos: -111.5,29.5 - parent: 60 - type: Transform -- uid: 22616 - type: CableApcExtension - components: - - pos: -110.5,29.5 - parent: 60 - type: Transform -- uid: 22617 - type: CableApcExtension - components: - - pos: -111.5,30.5 - parent: 60 - type: Transform -- uid: 22618 - type: CableApcExtension - components: - - pos: -113.5,7.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22619 - type: CableApcExtension - components: - - pos: -113.5,8.5 - parent: 60 - type: Transform -- uid: 22620 - type: CableApcExtension - components: - - pos: -113.5,9.5 - parent: 60 - type: Transform -- uid: 22621 - type: CableApcExtension - components: - - pos: -113.5,10.5 - parent: 60 - type: Transform -- uid: 22622 - type: CableApcExtension - components: - - pos: -113.5,11.5 - parent: 60 - type: Transform -- uid: 22623 - type: CableApcExtension - components: - - pos: -113.5,12.5 - parent: 60 - type: Transform -- uid: 22624 - type: CableApcExtension - components: - - pos: -113.5,13.5 - parent: 60 - type: Transform -- uid: 22625 - type: CableApcExtension - components: - - pos: -112.5,12.5 - parent: 60 - type: Transform -- uid: 22626 - type: CableApcExtension - components: - - pos: -111.5,12.5 - parent: 60 - type: Transform -- uid: 22627 - type: CableApcExtension - components: - - pos: -110.5,12.5 - parent: 60 - type: Transform -- uid: 22628 - type: CableApcExtension - components: - - pos: -109.5,12.5 - parent: 60 - type: Transform -- uid: 22629 - type: CableApcExtension - components: - - pos: -112.5,9.5 - parent: 60 - type: Transform -- uid: 22630 - type: CableApcExtension - components: - - pos: -111.5,9.5 - parent: 60 - type: Transform -- uid: 22631 - type: CableApcExtension - components: - - pos: -110.5,9.5 - parent: 60 - type: Transform -- uid: 22632 - type: CableApcExtension - components: - - pos: -109.5,9.5 - parent: 60 - type: Transform -- uid: 22633 - type: CableApcExtension - components: - - pos: -120.5,14.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22634 - type: CableApcExtension - components: - - pos: -120.5,15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22635 - type: CableApcExtension - components: - - pos: -120.5,16.5 - parent: 60 - type: Transform -- uid: 22636 - type: CableApcExtension - components: - - pos: -120.5,17.5 - parent: 60 - type: Transform -- uid: 22637 - type: CableApcExtension - components: - - pos: -119.5,16.5 - parent: 60 - type: Transform -- uid: 22638 - type: CableApcExtension - components: - - pos: -118.5,16.5 - parent: 60 - type: Transform -- uid: 22639 - type: CableApcExtension - components: - - pos: -117.5,16.5 - parent: 60 - type: Transform -- uid: 22640 - type: CableApcExtension - components: - - pos: -116.5,16.5 - parent: 60 - type: Transform -- uid: 22641 - type: CableApcExtension - components: - - pos: -120.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22642 - type: CableApcExtension - components: - - pos: -119.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22643 - type: CableApcExtension - components: - - pos: -118.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22644 - type: CableApcExtension - components: - - pos: -117.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22645 - type: CableApcExtension - components: - - pos: -116.5,18.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22646 - type: Catwalk - components: - - pos: -78.5,14.5 - parent: 60 - type: Transform -- uid: 22647 - type: Catwalk - components: - - pos: -79.5,14.5 - parent: 60 - type: Transform -- uid: 22648 - type: Catwalk - components: - - pos: -80.5,14.5 - parent: 60 - type: Transform -- uid: 22649 - type: Catwalk - components: - - pos: -81.5,14.5 - parent: 60 - type: Transform -- uid: 22650 - type: Catwalk - components: - - pos: -81.5,15.5 - parent: 60 - type: Transform -- uid: 22651 - type: Catwalk - components: - - pos: -81.5,16.5 - parent: 60 - type: Transform -- uid: 22652 - type: Catwalk - components: - - pos: -81.5,18.5 - parent: 60 - type: Transform -- uid: 22653 - type: Catwalk - components: - - pos: -81.5,19.5 - parent: 60 - type: Transform -- uid: 22654 - type: Catwalk - components: - - pos: -81.5,20.5 - parent: 60 - type: Transform -- uid: 22655 - type: Catwalk - components: - - pos: -80.5,20.5 - parent: 60 - type: Transform -- uid: 22656 - type: Catwalk - components: - - pos: -79.5,20.5 - parent: 60 - type: Transform -- uid: 22657 - type: Catwalk - components: - - pos: -78.5,20.5 - parent: 60 - type: Transform -- uid: 22658 - type: Catwalk - components: - - pos: -77.5,20.5 - parent: 60 - type: Transform -- uid: 22659 - type: Catwalk - components: - - pos: -76.5,20.5 - parent: 60 - type: Transform -- uid: 22660 - type: Catwalk - components: - - pos: -94.5,20.5 - parent: 60 - type: Transform -- uid: 22661 - type: Catwalk - components: - - pos: -94.5,21.5 - parent: 60 - type: Transform -- uid: 22662 - type: Catwalk - components: - - pos: -93.5,21.5 - parent: 60 - type: Transform -- uid: 22663 - type: Catwalk - components: - - pos: -92.5,21.5 - parent: 60 - type: Transform -- uid: 22664 - type: Catwalk - components: - - pos: -91.5,21.5 - parent: 60 - type: Transform -- uid: 22665 - type: Catwalk - components: - - pos: -90.5,21.5 - parent: 60 - type: Transform -- uid: 22666 - type: Catwalk - components: - - pos: -89.5,21.5 - parent: 60 - type: Transform -- uid: 22667 - type: Catwalk - components: - - pos: -88.5,21.5 - parent: 60 - type: Transform -- uid: 22668 - type: Catwalk - components: - - pos: -87.5,21.5 - parent: 60 - type: Transform -- uid: 22669 - type: Catwalk - components: - - pos: -86.5,21.5 - parent: 60 - type: Transform -- uid: 22670 - type: Catwalk - components: - - pos: -86.5,20.5 - parent: 60 - type: Transform -- uid: 22671 - type: Catwalk - components: - - pos: -85.5,20.5 - parent: 60 - type: Transform -- uid: 22672 - type: Catwalk - components: - - pos: -84.5,20.5 - parent: 60 - type: Transform -- uid: 22673 - type: Catwalk - components: - - pos: -83.5,20.5 - parent: 60 - type: Transform -- uid: 22674 - type: Catwalk - components: - - pos: -82.5,20.5 - parent: 60 - type: Transform -- uid: 22675 - type: CableApcExtension - components: - - pos: -99.5,18.5 - parent: 60 - type: Transform -- uid: 22676 - type: CableApcExtension - components: - - pos: -99.5,19.5 - parent: 60 - type: Transform -- uid: 22677 - type: CableApcExtension - components: - - pos: -99.5,20.5 - parent: 60 - type: Transform -- uid: 22678 - type: CableApcExtension - components: - - pos: -99.5,21.5 - parent: 60 - type: Transform -- uid: 22679 - type: CableApcExtension - components: - - pos: -99.5,22.5 - parent: 60 - type: Transform -- uid: 22680 - type: CableApcExtension - components: - - pos: -98.5,21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22681 - type: CableApcExtension - components: - - pos: -97.5,21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22682 - type: CableApcExtension - components: - - pos: -96.5,21.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22683 - type: CableApcExtension - components: - - pos: -99.5,16.5 - parent: 60 - type: Transform -- uid: 22684 - type: CableApcExtension - components: - - pos: -99.5,15.5 - parent: 60 - type: Transform -- uid: 22685 - type: CableApcExtension - components: - - pos: -99.5,14.5 - parent: 60 - type: Transform -- uid: 22686 - type: CableApcExtension - components: - - pos: -99.5,13.5 - parent: 60 - type: Transform -- uid: 22687 - type: CableApcExtension - components: - - pos: -99.5,12.5 - parent: 60 - type: Transform -- uid: 22688 - type: CableApcExtension - components: - - pos: -100.5,12.5 - parent: 60 - type: Transform -- uid: 22689 - type: CableApcExtension - components: - - pos: -101.5,12.5 - parent: 60 - type: Transform -- uid: 22690 - type: CableApcExtension - components: - - pos: -102.5,12.5 - parent: 60 - type: Transform -- uid: 22691 - type: CableApcExtension - components: - - pos: -103.5,12.5 - parent: 60 - type: Transform -- uid: 22692 - type: CableApcExtension - components: - - pos: -104.5,12.5 - parent: 60 - type: Transform -- uid: 22693 - type: CableApcExtension - components: - - pos: -104.5,11.5 - parent: 60 - type: Transform -- uid: 22694 - type: CableApcExtension - components: - - pos: -104.5,10.5 - parent: 60 - type: Transform -- uid: 22695 - type: CableApcExtension - components: - - pos: -104.5,9.5 - parent: 60 - type: Transform -- uid: 22696 - type: CableApcExtension - components: - - pos: -104.5,8.5 - parent: 60 - type: Transform -- uid: 22697 - type: CableApcExtension - components: - - pos: -100.5,22.5 - parent: 60 - type: Transform -- uid: 22698 - type: CableApcExtension - components: - - pos: -101.5,22.5 - parent: 60 - type: Transform -- uid: 22699 - type: CableApcExtension - components: - - pos: -102.5,22.5 - parent: 60 - type: Transform -- uid: 22700 - type: CableApcExtension - components: - - pos: -102.5,23.5 - parent: 60 - type: Transform -- uid: 22701 - type: CableApcExtension - components: - - pos: -102.5,24.5 - parent: 60 - type: Transform -- uid: 22702 - type: CableApcExtension - components: - - pos: -102.5,25.5 - parent: 60 - type: Transform -- uid: 22703 - type: CableApcExtension - components: - - pos: -102.5,26.5 - parent: 60 - type: Transform -- uid: 22704 - type: CableApcExtension - components: - - pos: -102.5,27.5 - parent: 60 - type: Transform -- uid: 22705 - type: CableApcExtension - components: - - pos: -102.5,28.5 - parent: 60 - type: Transform -- uid: 22706 - type: CableApcExtension - components: - - pos: -102.5,29.5 - parent: 60 - type: Transform -- uid: 22707 - type: CableApcExtension - components: - - pos: -102.5,30.5 - parent: 60 - type: Transform -- uid: 22708 - type: CableApcExtension - components: - - pos: -102.5,31.5 - parent: 60 - type: Transform -- uid: 22709 - type: CableApcExtension - components: - - pos: -102.5,32.5 - parent: 60 - type: Transform -- uid: 22710 - type: CableApcExtension - components: - - pos: -102.5,33.5 - parent: 60 - type: Transform -- uid: 22711 - type: CableApcExtension - components: - - pos: -102.5,34.5 - parent: 60 - type: Transform -- uid: 22712 - type: CableApcExtension - components: - - pos: -102.5,35.5 - parent: 60 - type: Transform -- uid: 22713 - type: CableApcExtension - components: - - pos: -103.5,35.5 - parent: 60 - type: Transform -- uid: 22714 - type: CableApcExtension - components: - - pos: -104.5,35.5 - parent: 60 - type: Transform -- uid: 22715 - type: CableApcExtension - components: - - pos: -105.5,35.5 - parent: 60 - type: Transform -- uid: 22716 - type: CableApcExtension - components: - - pos: -106.5,35.5 - parent: 60 - type: Transform -- uid: 22717 - type: CableApcExtension - components: - - pos: -107.5,35.5 - parent: 60 - type: Transform -- uid: 22718 - type: CableApcExtension - components: - - pos: -108.5,35.5 - parent: 60 - type: Transform -- uid: 22719 - type: CableApcExtension - components: - - pos: -109.5,35.5 - parent: 60 - type: Transform -- uid: 22720 - type: CableApcExtension - components: - - pos: -113.5,35.5 - parent: 60 - type: Transform -- uid: 22721 - type: CableApcExtension - components: - - pos: -114.5,35.5 - parent: 60 - type: Transform -- uid: 22722 - type: CableApcExtension - components: - - pos: -115.5,35.5 - parent: 60 - type: Transform -- uid: 22723 - type: CableApcExtension - components: - - pos: -116.5,35.5 - parent: 60 - type: Transform -- uid: 22724 - type: CableApcExtension - components: - - pos: -117.5,35.5 - parent: 60 - type: Transform -- uid: 22725 - type: CableApcExtension - components: - - pos: -118.5,35.5 - parent: 60 - type: Transform -- uid: 22726 - type: CableApcExtension - components: - - pos: -119.5,35.5 - parent: 60 - type: Transform -- uid: 22727 - type: CableApcExtension - components: - - pos: -120.5,35.5 - parent: 60 - type: Transform -- uid: 22728 - type: CableApcExtension - components: - - pos: -120.5,34.5 - parent: 60 - type: Transform -- uid: 22729 - type: CableApcExtension - components: - - pos: -120.5,33.5 - parent: 60 - type: Transform -- uid: 22730 - type: CableApcExtension - components: - - pos: -120.5,32.5 - parent: 60 - type: Transform -- uid: 22731 - type: CableApcExtension - components: - - pos: -120.5,31.5 - parent: 60 - type: Transform -- uid: 22732 - type: CableApcExtension - components: - - pos: -120.5,30.5 - parent: 60 - type: Transform -- uid: 22733 - type: CableApcExtension - components: - - pos: -120.5,29.5 - parent: 60 - type: Transform -- uid: 22734 - type: CableApcExtension - components: - - pos: -120.5,28.5 - parent: 60 - type: Transform -- uid: 22735 - type: CableApcExtension - components: - - pos: -120.5,27.5 - parent: 60 - type: Transform -- uid: 22736 - type: CableApcExtension - components: - - pos: -120.5,26.5 - parent: 60 - type: Transform -- uid: 22737 - type: CableApcExtension - components: - - pos: -120.5,25.5 - parent: 60 - type: Transform -- uid: 22738 - type: CableApcExtension - components: - - pos: -120.5,24.5 - parent: 60 - type: Transform -- uid: 22739 - type: CableApcExtension - components: - - pos: -120.5,23.5 - parent: 60 - type: Transform -- uid: 22740 - type: CableApcExtension - components: - - pos: -120.5,22.5 - parent: 60 - type: Transform -- uid: 22741 - type: CableApcExtension - components: - - pos: -121.5,22.5 - parent: 60 - type: Transform -- uid: 22742 - type: CableApcExtension - components: - - pos: -122.5,22.5 - parent: 60 - type: Transform -- uid: 22743 - type: CableApcExtension - components: - - pos: -123.5,22.5 - parent: 60 - type: Transform -- uid: 22744 - type: CableApcExtension - components: - - pos: -123.5,21.5 - parent: 60 - type: Transform -- uid: 22745 - type: CableApcExtension - components: - - pos: -123.5,20.5 - parent: 60 - type: Transform -- uid: 22746 - type: CableApcExtension - components: - - pos: -123.5,19.5 - parent: 60 - type: Transform -- uid: 22747 - type: CableApcExtension - components: - - pos: -123.5,18.5 - parent: 60 - type: Transform -- uid: 22748 - type: CableApcExtension - components: - - pos: -123.5,17.5 - parent: 60 - type: Transform -- uid: 22749 - type: CableApcExtension - components: - - pos: -122.5,17.5 - parent: 60 - type: Transform -- uid: 22750 - type: CableApcExtension - components: - - pos: -121.5,17.5 - parent: 60 - type: Transform -- uid: 22751 - type: CableApcExtension - components: - - pos: -123.5,16.5 - parent: 60 - type: Transform -- uid: 22752 - type: CableApcExtension - components: - - pos: -123.5,15.5 - parent: 60 - type: Transform -- uid: 22753 - type: CableApcExtension - components: - - pos: -123.5,14.5 - parent: 60 - type: Transform -- uid: 22754 - type: CableApcExtension - components: - - pos: -123.5,13.5 - parent: 60 - type: Transform -- uid: 22755 - type: CableApcExtension - components: - - pos: -123.5,12.5 - parent: 60 - type: Transform -- uid: 22756 - type: CableApcExtension - components: - - pos: -122.5,12.5 - parent: 60 - type: Transform -- uid: 22757 - type: CableApcExtension - components: - - pos: -121.5,12.5 - parent: 60 - type: Transform -- uid: 22758 - type: CableApcExtension - components: - - pos: -120.5,12.5 - parent: 60 - type: Transform -- uid: 22759 - type: CableApcExtension - components: - - pos: -119.5,12.5 - parent: 60 - type: Transform -- uid: 22760 - type: CableApcExtension - components: - - pos: -118.5,12.5 - parent: 60 - type: Transform -- uid: 22761 - type: CableApcExtension - components: - - pos: -118.5,11.5 - parent: 60 - type: Transform -- uid: 22762 - type: CableApcExtension - components: - - pos: -118.5,10.5 - parent: 60 - type: Transform -- uid: 22763 - type: CableApcExtension - components: - - pos: -118.5,9.5 - parent: 60 - type: Transform -- uid: 22764 - type: CableApcExtension - components: - - pos: -118.5,8.5 - parent: 60 - type: Transform -- uid: 22765 - type: CableApcExtension - components: - - pos: -118.5,7.5 - parent: 60 - type: Transform -- uid: 22766 - type: CableApcExtension - components: - - pos: -111.5,8.5 - parent: 60 - type: Transform -- uid: 22767 - type: CableApcExtension - components: - - pos: -111.5,7.5 - parent: 60 - type: Transform -- uid: 22768 - type: CableApcExtension - components: - - pos: -111.5,6.5 - parent: 60 - type: Transform -- uid: 22769 - type: CableApcExtension - components: - - pos: -111.5,5.5 - parent: 60 - type: Transform -- uid: 22770 - type: CableApcExtension - components: - - pos: -111.5,4.5 - parent: 60 - type: Transform -- uid: 22771 - type: CableApcExtension - components: - - pos: -111.5,3.5 - parent: 60 - type: Transform -- uid: 22772 - type: CableApcExtension - components: - - pos: -111.5,2.5 - parent: 60 - type: Transform -- uid: 22773 - type: CableApcExtension - components: - - pos: -110.5,4.5 - parent: 60 - type: Transform -- uid: 22774 - type: CableApcExtension - components: - - pos: -109.5,4.5 - parent: 60 - type: Transform -- uid: 22775 - type: CableApcExtension - components: - - pos: -108.5,4.5 - parent: 60 - type: Transform -- uid: 22776 - type: CableApcExtension - components: - - pos: -107.5,4.5 - parent: 60 - type: Transform -- uid: 22777 - type: CableApcExtension - components: - - pos: -106.5,4.5 - parent: 60 - type: Transform -- uid: 22778 - type: CableApcExtension - components: - - pos: -105.5,4.5 - parent: 60 - type: Transform -- uid: 22779 - type: CableApcExtension - components: - - pos: -104.5,4.5 - parent: 60 - type: Transform -- uid: 22780 - type: CableApcExtension - components: - - pos: -112.5,4.5 - parent: 60 - type: Transform -- uid: 22781 - type: CableApcExtension - components: - - pos: -113.5,4.5 - parent: 60 - type: Transform -- uid: 22782 - type: CableApcExtension - components: - - pos: -114.5,4.5 - parent: 60 - type: Transform -- uid: 22783 - type: CableApcExtension - components: - - pos: -115.5,4.5 - parent: 60 - type: Transform -- uid: 22784 - type: CableApcExtension - components: - - pos: -116.5,4.5 - parent: 60 - type: Transform -- uid: 22785 - type: CableApcExtension - components: - - pos: -117.5,4.5 - parent: 60 - type: Transform -- uid: 22786 - type: CableApcExtension - components: - - pos: -118.5,4.5 - parent: 60 - type: Transform -- uid: 22787 - type: CableApcExtension - components: - - pos: -104.5,7.5 - parent: 60 - type: Transform -- uid: 22788 - type: CableApcExtension - components: - - pos: -109.5,36.5 - parent: 60 - type: Transform -- uid: 22789 - type: CableApcExtension - components: - - pos: -113.5,36.5 - parent: 60 - type: Transform -- uid: 22790 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -79.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22791 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -80.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22792 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -81.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22793 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -82.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22794 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -83.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22795 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -84.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22796 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -85.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22797 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -86.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22798 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -87.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22799 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -88.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22800 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -89.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22801 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -90.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22802 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -91.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22803 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -92.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22804 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -93.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22805 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -94.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22806 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -95.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22807 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -96.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22808 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -97.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22809 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -98.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22810 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -99.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22811 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -100.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22812 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -101.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22813 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -102.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22814 - type: GasPipeTJunction - components: - - pos: -103.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22815 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -104.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22816 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -105.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22817 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -106.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22818 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -107.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22819 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -108.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22820 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -109.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22821 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -110.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22822 - type: GasPipeFourway - components: - - pos: -111.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22823 - type: GasPipeTJunction - components: - - pos: -112.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22824 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -113.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22825 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -114.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22826 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -115.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22827 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -116.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22828 - type: GasPipeTJunction - components: - - pos: -117.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22829 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -119.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22830 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -111.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22831 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -111.5,19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22832 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -111.5,20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22833 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -111.5,21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22834 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -111.5,16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22835 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -111.5,15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22836 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -111.5,14.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22837 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -111.5,13.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22838 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -111.5,12.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22839 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -111.5,11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22840 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -111.5,10.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22841 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -111.5,9.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22842 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -111.5,8.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22843 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -111.5,7.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22844 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -111.5,6.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22845 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -111.5,5.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22846 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -111.5,4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22847 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -99.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22848 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -99.5,19.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22849 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -99.5,20.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22850 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -99.5,21.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22851 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -100.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22852 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -101.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22853 - type: GasPipeStraight - components: - - pos: -102.5,23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22854 - type: GasPipeStraight - components: - - pos: -102.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22855 - type: GasPipeStraight - components: - - pos: -102.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22856 - type: GasPipeStraight - components: - - pos: -102.5,26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22857 - type: GasPipeStraight - components: - - pos: -102.5,27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22858 - type: GasPipeStraight - components: - - pos: -102.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22859 - type: GasPipeStraight - components: - - pos: -102.5,29.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22860 - type: GasPipeStraight - components: - - pos: -102.5,30.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22861 - type: GasPipeStraight - components: - - pos: -102.5,31.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22862 - type: GasPipeStraight - components: - - pos: -102.5,32.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22863 - type: GasPipeStraight - components: - - pos: -102.5,33.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22864 - type: GasPipeStraight - components: - - pos: -102.5,34.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22865 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -103.5,35.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22866 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -104.5,35.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22867 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -105.5,35.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22868 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -106.5,35.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22869 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -107.5,35.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22870 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -108.5,35.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22871 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -109.5,35.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22872 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -110.5,35.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22873 - type: GasPipeBend - components: - - pos: -102.5,35.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22874 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -102.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22875 - type: GasPipeBend - components: - - pos: -99.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22876 - type: GasVentPump - components: - - pos: -110.5,36.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22877 - type: GasPipeBend - components: - - pos: -110.5,4.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22878 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -110.5,3.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22879 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -103.5,16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22880 - type: GasPipeBend - components: - - pos: -98.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22881 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -98.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22882 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -112.5,16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22883 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -118.5,17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22884 - type: GasPressurePump - components: - - pos: -119.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22885 - type: GasPressurePump - components: - - pos: -118.5,18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22886 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -117.5,16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22887 - type: GasPort - components: - - pos: -118.5,19.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 22888 - type: GasPort - components: - - pos: -119.5,19.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 22889 - type: AirCanister - components: - - pos: -119.5,19.5 - parent: 60 - type: Transform -- uid: 22890 - type: AirCanister - components: - - pos: -118.5,19.5 - parent: 60 - type: Transform -- uid: 22891 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -112.5,11.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22892 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -111.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22893 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -112.5,22.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22894 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -110.5,29.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22895 - type: GasPipeBend - components: - - pos: -111.5,23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22896 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -113.5,23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22897 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -113.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22898 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -111.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22899 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -111.5,29.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22900 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -112.5,23.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22901 - type: GasPipeStraight - components: - - pos: -113.5,24.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22902 - type: GasPipeStraight - components: - - pos: -113.5,25.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22903 - type: GasPipeStraight - components: - - pos: -113.5,26.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22904 - type: GasPipeStraight - components: - - pos: -113.5,27.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22905 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -112.5,28.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22906 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -112.5,3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22907 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -119.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22908 - type: GasVentScrubber - components: - - pos: -112.5,36.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22909 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -112.5,35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22910 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -120.5,35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22911 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -120.5,22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22912 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -123.5,22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22913 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -123.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22914 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -120.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22915 - type: GasPipeBend - components: - - pos: -120.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22916 - type: GasPipeBend - components: - - pos: -118.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22917 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -118.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22918 - type: GasPipeBend - components: - - pos: -112.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22919 - type: GasPipeStraight - components: - - pos: -118.5,11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22920 - type: GasPipeStraight - components: - - pos: -118.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22921 - type: GasPipeStraight - components: - - pos: -118.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22922 - type: GasPipeStraight - components: - - pos: -118.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22923 - type: GasPipeStraight - components: - - pos: -118.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22924 - type: GasPipeStraight - components: - - pos: -118.5,6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22925 - type: GasPipeStraight - components: - - pos: -118.5,5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22926 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -117.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22927 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -116.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22928 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -115.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22929 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -114.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22930 - type: GasPipeTJunction - components: - - pos: -113.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22931 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -119.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22932 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -120.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22933 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -121.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22934 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -122.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22935 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -123.5,13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22936 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -123.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22937 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -123.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22938 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -123.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22939 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -123.5,18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22940 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -123.5,19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22941 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -123.5,20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22942 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -123.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22943 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -122.5,22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22944 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -121.5,22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22945 - type: GasPipeStraight - components: - - pos: -120.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22946 - type: GasPipeStraight - components: - - pos: -120.5,24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22947 - type: GasPipeStraight - components: - - pos: -120.5,25.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22948 - type: GasPipeStraight - components: - - pos: -120.5,26.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22949 - type: GasPipeStraight - components: - - pos: -120.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22950 - type: GasPipeStraight - components: - - pos: -120.5,28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22951 - type: GasPipeStraight - components: - - pos: -120.5,29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22952 - type: GasPipeStraight - components: - - pos: -120.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22953 - type: GasPipeStraight - components: - - pos: -120.5,31.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22954 - type: GasPipeStraight - components: - - pos: -120.5,32.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22955 - type: GasPipeStraight - components: - - pos: -120.5,33.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22956 - type: GasPipeStraight - components: - - pos: -120.5,34.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22957 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -119.5,35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22958 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -118.5,35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22959 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -117.5,35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22960 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -116.5,35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22961 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -115.5,35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22962 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -114.5,35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22963 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -113.5,35.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22964 - type: GasPipeStraight - components: - - pos: -113.5,3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22965 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -112.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22966 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -111.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22967 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -110.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22968 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -109.5,3.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22969 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -108.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22970 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -107.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22971 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -106.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22972 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -105.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22973 - type: GasPipeStraight - components: - - pos: -104.5,5.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22974 - type: GasPipeStraight - components: - - pos: -104.5,6.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22975 - type: GasPipeStraight - components: - - pos: -104.5,7.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22976 - type: GasPipeStraight - components: - - pos: -104.5,8.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22977 - type: GasPipeStraight - components: - - pos: -104.5,9.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22978 - type: GasPipeStraight - components: - - pos: -104.5,10.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22979 - type: GasPipeStraight - components: - - pos: -104.5,11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22980 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -103.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22981 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -102.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22982 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -101.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22983 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -100.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22984 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -99.5,13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22985 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -99.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22986 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -99.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22987 - type: GasPipeTJunction - components: - - pos: -99.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22988 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -98.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22989 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -97.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22990 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -96.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22991 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -99.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22992 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -104.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22993 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -104.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22994 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -109.5,4.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22995 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -109.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22996 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -113.5,2.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22997 - type: GasPipeFourway - components: - - pos: -123.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22998 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -122.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22999 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -121.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23000 - type: GasVentScrubber - components: - - pos: -96.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23001 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -100.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23002 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -101.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23003 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -102.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23004 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -103.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23005 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -104.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23006 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -105.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23007 - type: GasPipeTJunction - components: - - pos: -106.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23008 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -107.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23009 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -108.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23010 - type: GasPipeFourway - components: - - pos: -109.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23011 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -106.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23012 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -105.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23013 - type: GasVentScrubber - components: - - pos: -105.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23014 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -110.5,16.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23015 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -109.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23016 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -110.5,15.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23017 - type: GasPipeStraight - components: - - pos: -110.5,14.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23018 - type: GasPipeStraight - components: - - pos: -110.5,13.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23019 - type: GasPipeStraight - components: - - pos: -110.5,12.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23020 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -110.5,11.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23021 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -109.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23022 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -109.5,18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23023 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -109.5,19.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23024 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -109.5,20.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23025 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -109.5,21.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23026 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -109.5,22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23027 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -109.5,23.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23028 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -109.5,24.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23029 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -109.5,25.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23030 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -109.5,26.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23031 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -109.5,27.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23032 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -109.5,28.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23033 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -109.5,29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23034 - type: GasPipeBend - components: - - pos: -109.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23035 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -112.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23036 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -110.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23037 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -111.5,30.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23038 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -112.5,29.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23039 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -110.5,22.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23040 - type: AirSensor - components: - - pos: -111.5,22.5 - parent: 60 - type: Transform -- uid: 23041 - type: AirSensor - components: - - pos: -111.5,18.5 - parent: 60 - type: Transform -- uid: 23042 - type: AirSensor - components: - - pos: -104.5,17.5 - parent: 60 - type: Transform -- uid: 23043 - type: AirSensor - components: - - pos: -97.5,17.5 - parent: 60 - type: Transform -- uid: 23044 - type: AirSensor - components: - - pos: -111.5,36.5 - parent: 60 - type: Transform -- uid: 23045 - type: AirSensor - components: - - pos: -111.5,3.5 - parent: 60 - type: Transform -- uid: 23046 - type: AirSensor - components: - - pos: -111.5,29.5 - parent: 60 - type: Transform -- uid: 23047 - type: AirSensor - components: - - pos: -118.5,17.5 - parent: 60 - type: Transform -- uid: 23048 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -124.5,17.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23049 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: -124.5,18.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23050 - type: GasPassiveVent - components: - - pos: -124.5,19.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23051 - type: AirSensor - components: - - pos: -111.5,10.5 - parent: 60 - type: Transform -- uid: 23052 - type: WindoorCommandLocked - components: - - rot: -1.5707963267948966 rad - pos: -112.5,26.5 - parent: 60 - type: Transform -- uid: 23053 - type: WindoorCommandLocked - components: - - rot: 1.5707963267948966 rad - pos: -110.5,26.5 - parent: 60 - type: Transform -- uid: 23054 - type: AirSensor - components: - - pos: -111.5,26.5 - parent: 60 - type: Transform -- uid: 23055 - type: TableReinforced - components: - - pos: -116.5,22.5 - parent: 60 - type: Transform -- uid: 23056 - type: TableReinforced - components: - - pos: -116.5,23.5 - parent: 60 - type: Transform -- uid: 23057 - type: TableReinforced - components: - - pos: -116.5,24.5 - parent: 60 - type: Transform -- uid: 23058 - type: TableReinforced - components: - - pos: -116.5,28.5 - parent: 60 - type: Transform -- uid: 23059 - type: TableReinforced - components: - - pos: -116.5,29.5 - parent: 60 - type: Transform -- uid: 23060 - type: TableReinforced - components: - - pos: -106.5,28.5 - parent: 60 - type: Transform -- uid: 23061 - type: TableReinforced - components: - - pos: -106.5,29.5 - parent: 60 - type: Transform -- uid: 23062 - type: TableReinforced - components: - - pos: -106.5,22.5 - parent: 60 - type: Transform -- uid: 23063 - type: TableReinforced - components: - - pos: -106.5,23.5 - parent: 60 - type: Transform -- uid: 23064 - type: TableReinforced - components: - - pos: -106.5,24.5 - parent: 60 - type: Transform -- uid: 23065 - type: TableReinforced - components: - - pos: -105.5,15.5 - parent: 60 - type: Transform -- uid: 23066 - type: TableReinforced - components: - - pos: -104.5,15.5 - parent: 60 - type: Transform -- uid: 23067 - type: TableReinforced - components: - - pos: -103.5,15.5 - parent: 60 - type: Transform -- uid: 23068 - type: ComputerFrame - components: - - pos: -103.5,19.5 - parent: 60 - type: Transform -- uid: 23069 - type: UnfinishedMachineFrame - components: - - pos: -105.5,19.5 - parent: 60 - type: Transform -- uid: 23070 - type: MachineFrame - components: - - pos: -104.5,19.5 - parent: 60 - type: Transform -- uid: 23071 - type: PottedPlant10 - components: - - pos: -102.5,15.5 - parent: 60 - type: Transform -- uid: 23072 - type: PottedPlant6 - components: - - pos: -106.5,19.5 - parent: 60 - type: Transform -- uid: 23073 - type: PottedPlant4 - components: - - pos: -106.5,18.5 - parent: 60 - type: Transform -- uid: 23074 - type: PottedPlant4 - components: - - pos: -106.5,16.5 - parent: 60 - type: Transform -- uid: 23075 - type: PottedPlant21 - components: - - pos: -106.5,15.5 - parent: 60 - type: Transform -- uid: 23076 - type: PottedPlant8 - components: - - pos: -102.5,19.5 - parent: 60 - type: Transform -- uid: 23077 - type: ExtinguisherCabinetFilled - components: - - pos: -101.5,15.5 - parent: 60 - type: Transform -- uid: 23078 - type: ExtinguisherCabinetFilled - components: - - pos: -121.5,15.5 - parent: 60 - type: Transform -- uid: 23079 - type: WindoorCommandLocked - components: - - rot: 1.5707963267948966 rad - pos: -116.5,26.5 - parent: 60 - type: Transform -- uid: 23080 - type: WindoorCommandLocked - components: - - rot: -1.5707963267948966 rad - pos: -106.5,26.5 - parent: 60 - type: Transform -- uid: 23081 - type: PottedPlant0 - components: - - pos: -112.5,31.5 - parent: 60 - type: Transform -- uid: 23082 - type: PottedPlant4 - components: - - pos: -110.5,31.5 - parent: 60 - type: Transform -- uid: 23083 - type: SMESBasic - components: - - pos: -111.5,31.5 - parent: 60 - type: Transform -- uid: 23084 - type: PottedPlant19 - components: - - pos: -113.5,19.5 - parent: 60 - type: Transform -- uid: 23085 - type: PottedPlant19 - components: - - pos: -113.5,15.5 - parent: 60 - type: Transform -- uid: 23086 - type: PottedPlant0 - components: - - pos: -109.5,19.5 - parent: 60 - type: Transform -- uid: 23087 - type: PottedPlant7 - components: - - pos: -109.5,15.5 - parent: 60 - type: Transform -- uid: 23088 - type: WeaponTurretSyndicateBroken - components: - - pos: -114.5,15.5 - parent: 60 - type: Transform -- uid: 23089 - type: WeaponTurretSyndicateBroken - components: - - pos: -114.5,19.5 - parent: 60 - type: Transform -- uid: 23090 - type: WeaponTurretSyndicateBroken - components: - - pos: -108.5,19.5 - parent: 60 - type: Transform -- uid: 23091 - type: WeaponTurretSyndicateBroken - components: - - pos: -108.5,15.5 - parent: 60 - type: Transform -- uid: 23092 - type: WeaponTurretSyndicateBroken - components: - - pos: -107.5,21.5 - parent: 60 - type: Transform -- uid: 23093 - type: WeaponTurretSyndicateBroken - components: - - pos: -115.5,21.5 - parent: 60 - type: Transform -- uid: 23094 - type: WeaponTurretSyndicateBroken - components: - - pos: -115.5,30.5 - parent: 60 - type: Transform -- uid: 23095 - type: WeaponTurretSyndicateBroken - components: - - pos: -107.5,30.5 - parent: 60 - type: Transform -- uid: 23096 - type: SignKiddiePlaque - components: - - pos: -109.5,20.5 - parent: 60 - type: Transform -- uid: 23097 - type: SignElectricalMed - components: - - pos: -111.5,32.5 - parent: 60 - type: Transform -- uid: 23098 - type: SignSmoking - components: - - pos: -110.5,32.5 - parent: 60 - type: Transform -- uid: 23099 - type: SignSmoking - components: - - pos: -121.5,16.5 - parent: 60 - type: Transform -- uid: 23100 - type: SignElectricalMed - components: - - pos: -117.5,20.5 - parent: 60 - type: Transform -- uid: 23101 - type: TableReinforced - components: - - pos: -120.5,15.5 - parent: 60 - type: Transform -- uid: 23102 - type: TableReinforced - components: - - pos: -116.5,15.5 - parent: 60 - type: Transform -- uid: 23103 - type: CableHV - components: - - pos: -118.5,17.5 - parent: 60 - type: Transform -- uid: 23104 - type: CableHV - components: - - pos: -118.5,16.5 - parent: 60 - type: Transform -- uid: 23105 - type: CableHV - components: - - pos: -118.5,15.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23106 - type: ComputerPowerMonitoring - components: - - rot: 3.141592653589793 rad - pos: -118.5,15.5 - parent: 60 - type: Transform -- uid: 23107 - type: MachineFrame - components: - - pos: -119.5,15.5 - parent: 60 - type: Transform -- uid: 23108 - type: UnfinishedMachineFrame - components: - - pos: -117.5,15.5 - parent: 60 - type: Transform -- uid: 23109 - type: SheetGlass - components: - - pos: -120.48613,15.522119 - parent: 60 - type: Transform -- uid: 23110 - type: SheetSteel - components: - - pos: -120.32988,15.381494 - parent: 60 - type: Transform -- uid: 23111 - type: SheetPlasma - components: - - pos: -120.64238,15.600244 - parent: 60 - type: Transform -- uid: 23112 - type: ToolboxMechanicalFilled - components: - - pos: -116.54863,15.725244 - parent: 60 - type: Transform -- uid: 23113 - type: ToolboxElectricalFilled - components: - - pos: -116.42363,15.522119 - parent: 60 - type: Transform -- uid: 23114 - type: PowerCellRecharger - components: - - pos: -105.5,15.5 - parent: 60 - type: Transform -- uid: 23115 - type: BoxFolderBlue - components: - - pos: -104.523735,15.506494 - parent: 60 - type: Transform -- uid: 23116 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -109.5,25.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23117 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -113.5,25.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23118 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -114.5,21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23119 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -108.5,21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23120 - type: Poweredlight - components: - - pos: -108.5,30.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23121 - type: Poweredlight - components: - - pos: -114.5,30.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23122 - type: Poweredlight - components: - - pos: -109.5,13.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23123 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -109.5,15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23124 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -113.5,15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23125 - type: Poweredlight - components: - - pos: -113.5,13.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23126 - type: Poweredlight - components: - - pos: -104.5,19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23127 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -104.5,15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23128 - type: Poweredlight - components: - - pos: -118.5,19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23129 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -118.5,15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23130 - type: PoweredSmallLight - components: - - pos: -97.5,21.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23131 - type: PoweredlightLED - components: - - pos: -114.5,6.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23132 - type: PoweredlightLED - components: - - pos: -108.5,6.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23133 - type: PoweredlightLED - components: - - rot: 1.5707963267948966 rad - pos: -106.5,12.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23134 - type: PoweredlightLED - components: - - rot: -1.5707963267948966 rad - pos: -116.5,12.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23135 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -122.5,16.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23136 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -122.5,18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23137 - type: PoweredlightLED - components: - - rot: -1.5707963267948966 rad - pos: -119.5,22.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23138 - type: PoweredlightLED - components: - - rot: 1.5707963267948966 rad - pos: -103.5,22.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23139 - type: PoweredlightLED - components: - - rot: 3.141592653589793 rad - pos: -111.5,34.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23140 - type: PoweredlightLED - components: - - rot: 3.141592653589793 rad - pos: -117.5,32.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23141 - type: PoweredlightLED - components: - - rot: 3.141592653589793 rad - pos: -105.5,32.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23142 - type: PottedPlant18 - components: - - pos: -107.5,29.5 - parent: 60 - type: Transform -- uid: 23143 - type: PottedPlant7 - components: - - pos: -115.5,28.5 - parent: 60 - type: Transform -- uid: 23144 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -115.5,29.5 - parent: 60 - type: Transform -- uid: 23145 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -107.5,28.5 - parent: 60 - type: Transform -- uid: 23146 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -107.5,23.5 - parent: 60 - type: Transform -- uid: 23147 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -115.5,23.5 - parent: 60 - type: Transform -- uid: 23148 - type: BoxFolderBlue - components: - - pos: -116.484505,23.51932 - parent: 60 - type: Transform -- uid: 23149 - type: BoxFolderBlue - components: - - pos: -106.43763,23.472445 - parent: 60 - type: Transform -- uid: 23150 - type: BoxFolderBlue - components: - - pos: -116.453255,29.528236 - parent: 60 - type: Transform -- uid: 23151 - type: BoxFolderBlue - components: - - pos: -106.46888,28.590736 - parent: 60 - type: Transform -- uid: 23152 - type: Pen - components: - - pos: -116.265755,29.731361 - parent: 60 - type: Transform -- uid: 23153 - type: Pen - components: - - pos: -106.28138,28.778236 - parent: 60 - type: Transform -- uid: 23154 - type: Pen - components: - - pos: -106.28138,23.700111 - parent: 60 - type: Transform -- uid: 23155 - type: Pen - components: - - pos: -116.34388,23.715736 - parent: 60 - type: Transform -- uid: 23156 - type: Crowbar - components: - - pos: -106.484505,24.465736 - parent: 60 - type: Transform -- uid: 23157 - type: Wrench - components: - - pos: -106.46888,24.496986 - parent: 60 - type: Transform -- uid: 23158 - type: Lamp - components: - - pos: -106.43363,29.804834 - parent: 60 - type: Transform -- uid: 23159 - type: ToyAi - components: - - pos: -111.5,25.5 - parent: 60 - type: Transform -- uid: 23160 - type: WeaponTurretSyndicateBroken - components: - - pos: -111.5,23.5 - parent: 60 - type: Transform -- uid: 23161 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -113.5,8.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23162 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -109.5,8.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23163 - type: Grille - components: - - pos: -115.5,9.5 - parent: 60 - type: Transform -- uid: 23164 - type: Grille - components: - - pos: -115.5,10.5 - parent: 60 - type: Transform -- uid: 23165 - type: Grille - components: - - pos: -115.5,11.5 - parent: 60 - type: Transform -- uid: 23166 - type: Grille - components: - - pos: -107.5,9.5 - parent: 60 - type: Transform -- uid: 23167 - type: Grille - components: - - pos: -107.5,10.5 - parent: 60 - type: Transform -- uid: 23168 - type: Grille - components: - - pos: -107.5,11.5 - parent: 60 - type: Transform -- uid: 23169 - type: CableMV - components: - - pos: -113.5,10.5 - parent: 60 - type: Transform -- uid: 23170 - type: CableMV - components: - - pos: -114.5,10.5 - parent: 60 - type: Transform -- uid: 23171 - type: CableMV - components: - - pos: -115.5,10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23172 - type: CableMV - components: - - pos: -115.5,9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23173 - type: CableMV - components: - - pos: -115.5,11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23174 - type: CableMV - components: - - pos: -110.5,10.5 - parent: 60 - type: Transform -- uid: 23175 - type: CableMV - components: - - pos: -109.5,10.5 - parent: 60 - type: Transform -- uid: 23176 - type: CableMV - components: - - pos: -108.5,10.5 - parent: 60 - type: Transform -- uid: 23177 - type: CableMV - components: - - pos: -107.5,10.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23178 - type: CableMV - components: - - pos: -107.5,9.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23179 - type: CableMV - components: - - pos: -107.5,11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23180 - type: Grille - components: - - pos: -78.5,5.5 - parent: 60 - type: Transform -- uid: 23181 - type: Grille - components: - - pos: -79.5,5.5 - parent: 60 - type: Transform -- uid: 23182 - type: Grille - components: - - pos: -80.5,5.5 - parent: 60 - type: Transform -- uid: 23183 - type: Grille - components: - - pos: -81.5,5.5 - parent: 60 - type: Transform -- uid: 23184 - type: Grille - components: - - pos: -81.5,7.5 - parent: 60 - type: Transform -- uid: 23185 - type: Grille - components: - - pos: -82.5,7.5 - parent: 60 - type: Transform -- uid: 23186 - type: Grille - components: - - pos: -83.5,7.5 - parent: 60 - type: Transform -- uid: 23187 - type: Grille - components: - - pos: -84.5,7.5 - parent: 60 - type: Transform -- uid: 23188 - type: Grille - components: - - pos: -85.5,7.5 - parent: 60 - type: Transform -- uid: 23189 - type: Grille - components: - - pos: -85.5,5.5 - parent: 60 - type: Transform -- uid: 23190 - type: Grille - components: - - pos: -86.5,5.5 - parent: 60 - type: Transform -- uid: 23191 - type: Grille - components: - - pos: -87.5,5.5 - parent: 60 - type: Transform -- uid: 23192 - type: Grille - components: - - pos: -87.5,7.5 - parent: 60 - type: Transform -- uid: 23193 - type: Grille - components: - - pos: -88.5,7.5 - parent: 60 - type: Transform -- uid: 23194 - type: Grille - components: - - pos: -89.5,7.5 - parent: 60 - type: Transform -- uid: 23195 - type: Grille - components: - - pos: -90.5,7.5 - parent: 60 - type: Transform -- uid: 23196 - type: Grille - components: - - pos: -91.5,7.5 - parent: 60 - type: Transform -- uid: 23197 - type: Grille - components: - - pos: -91.5,5.5 - parent: 60 - type: Transform -- uid: 23198 - type: Grille - components: - - pos: -92.5,5.5 - parent: 60 - type: Transform -- uid: 23199 - type: Grille - components: - - pos: -93.5,5.5 - parent: 60 - type: Transform -- uid: 23200 - type: Grille - components: - - pos: -93.5,7.5 - parent: 60 - type: Transform -- uid: 23201 - type: Grille - components: - - pos: -94.5,7.5 - parent: 60 - type: Transform -- uid: 23202 - type: Grille - components: - - pos: -95.5,7.5 - parent: 60 - type: Transform -- uid: 23203 - type: Grille - components: - - pos: -96.5,7.5 - parent: 60 - type: Transform -- uid: 23204 - type: Grille - components: - - pos: -96.5,5.5 - parent: 60 - type: Transform -- uid: 23205 - type: Grille - components: - - pos: -97.5,5.5 - parent: 60 - type: Transform -- uid: 23206 - type: Grille - components: - - pos: -98.5,5.5 - parent: 60 - type: Transform -- uid: 23207 - type: Grille - components: - - pos: -99.5,5.5 - parent: 60 - type: Transform -- uid: 23208 - type: Grille - components: - - pos: -98.5,9.5 - parent: 60 - type: Transform -- uid: 23209 - type: Grille - components: - - pos: -99.5,9.5 - parent: 60 - type: Transform -- uid: 23210 - type: Grille - components: - - pos: -100.5,9.5 - parent: 60 - type: Transform -- uid: 23211 - type: Grille - components: - - pos: -101.5,9.5 - parent: 60 - type: Transform -- uid: 23212 - type: Grille - components: - - pos: -101.5,8.5 - parent: 60 - type: Transform -- uid: 23213 - type: Grille - components: - - pos: -101.5,7.5 - parent: 60 - type: Transform -- uid: 23214 - type: Grille - components: - - pos: -96.5,9.5 - parent: 60 - type: Transform -- uid: 23215 - type: Grille - components: - - pos: -96.5,10.5 - parent: 60 - type: Transform -- uid: 23216 - type: Grille - components: - - pos: -96.5,12.5 - parent: 60 - type: Transform -- uid: 23217 - type: Grille - components: - - pos: -96.5,13.5 - parent: 60 - type: Transform -- uid: 23218 - type: Grille - components: - - pos: -96.5,14.5 - parent: 60 - type: Transform -- uid: 23219 - type: Grille - components: - - pos: -101.5,5.5 - parent: 60 - type: Transform -- uid: 23220 - type: Grille - components: - - pos: -101.5,4.5 - parent: 60 - type: Transform -- uid: 23221 - type: Grille - components: - - pos: -110.5,-0.5 - parent: 60 - type: Transform -- uid: 23222 - type: Grille - components: - - pos: -101.5,2.5 - parent: 60 - type: Transform -- uid: 23223 - type: Grille - components: - - pos: -101.5,1.5 - parent: 60 - type: Transform -- uid: 23224 - type: Grille - components: - - pos: -102.5,1.5 - parent: 60 - type: Transform -- uid: 23225 - type: Grille - components: - - pos: -109.5,-0.5 - parent: 60 - type: Transform -- uid: 23226 - type: Grille - components: - - pos: -108.5,-0.5 - parent: 60 - type: Transform -- uid: 23227 - type: Grille - components: - - pos: -107.5,-0.5 - parent: 60 - type: Transform -- uid: 23228 - type: Grille - components: - - pos: -106.5,-0.5 - parent: 60 - type: Transform -- uid: 23229 - type: Grille - components: - - pos: -106.5,0.5 - parent: 60 - type: Transform -- uid: 23230 - type: Grille - components: - - pos: -106.5,1.5 - parent: 60 - type: Transform -- uid: 23231 - type: Grille - components: - - pos: -104.5,1.5 - parent: 60 - type: Transform -- uid: 23232 - type: Grille - components: - - pos: -105.5,1.5 - parent: 60 - type: Transform -- uid: 23233 - type: Grille - components: - - pos: -112.5,-0.5 - parent: 60 - type: Transform -- uid: 23234 - type: Grille - components: - - pos: -113.5,-0.5 - parent: 60 - type: Transform -- uid: 23235 - type: Grille - components: - - pos: -114.5,-0.5 - parent: 60 - type: Transform -- uid: 23236 - type: Grille - components: - - pos: -115.5,-0.5 - parent: 60 - type: Transform -- uid: 23237 - type: Grille - components: - - pos: -116.5,-0.5 - parent: 60 - type: Transform -- uid: 23238 - type: Grille - components: - - pos: -116.5,0.5 - parent: 60 - type: Transform -- uid: 23239 - type: Grille - components: - - pos: -116.5,1.5 - parent: 60 - type: Transform -- uid: 23240 - type: Grille - components: - - pos: -116.5,2.5 - parent: 60 - type: Transform -- uid: 23241 - type: Grille - components: - - pos: -118.5,1.5 - parent: 60 - type: Transform -- uid: 23242 - type: Grille - components: - - pos: -119.5,1.5 - parent: 60 - type: Transform -- uid: 23243 - type: Grille - components: - - pos: -120.5,1.5 - parent: 60 - type: Transform -- uid: 23244 - type: Grille - components: - - pos: -121.5,1.5 - parent: 60 - type: Transform -- uid: 23245 - type: Grille - components: - - pos: -121.5,2.5 - parent: 60 - type: Transform -- uid: 23246 - type: Grille - components: - - pos: -121.5,4.5 - parent: 60 - type: Transform -- uid: 23247 - type: Grille - components: - - pos: -121.5,5.5 - parent: 60 - type: Transform -- uid: 23248 - type: Grille - components: - - pos: -121.5,6.5 - parent: 60 - type: Transform -- uid: 23249 - type: Grille - components: - - pos: -121.5,7.5 - parent: 60 - type: Transform -- uid: 23250 - type: Grille - components: - - pos: -121.5,8.5 - parent: 60 - type: Transform -- uid: 23251 - type: Grille - components: - - pos: -121.5,9.5 - parent: 60 - type: Transform -- uid: 23252 - type: Grille - components: - - pos: -121.5,10.5 - parent: 60 - type: Transform -- uid: 23253 - type: Grille - components: - - pos: -122.5,10.5 - parent: 60 - type: Transform -- uid: 23254 - type: Grille - components: - - pos: -124.5,10.5 - parent: 60 - type: Transform -- uid: 23255 - type: Grille - components: - - pos: -125.5,10.5 - parent: 60 - type: Transform -- uid: 23256 - type: Grille - components: - - pos: -126.5,10.5 - parent: 60 - type: Transform -- uid: 23257 - type: Grille - components: - - pos: -126.5,11.5 - parent: 60 - type: Transform -- uid: 23258 - type: Grille - components: - - pos: -126.5,13.5 - parent: 60 - type: Transform -- uid: 23259 - type: Grille - components: - - pos: -126.5,14.5 - parent: 60 - type: Transform -- uid: 23260 - type: Grille - components: - - pos: -126.5,15.5 - parent: 60 - type: Transform -- uid: 23261 - type: Grille - components: - - pos: -126.5,17.5 - parent: 60 - type: Transform -- uid: 23262 - type: Grille - components: - - pos: -126.5,18.5 - parent: 60 - type: Transform -- uid: 23263 - type: Grille - components: - - pos: -126.5,19.5 - parent: 60 - type: Transform -- uid: 23264 - type: Grille - components: - - pos: -126.5,21.5 - parent: 60 - type: Transform -- uid: 23265 - type: Grille - components: - - pos: -126.5,22.5 - parent: 60 - type: Transform -- uid: 23266 - type: Grille - components: - - pos: -126.5,23.5 - parent: 60 - type: Transform -- uid: 23267 - type: Grille - components: - - pos: -126.5,24.5 - parent: 60 - type: Transform -- uid: 23268 - type: Grille - components: - - pos: -125.5,24.5 - parent: 60 - type: Transform -- uid: 23269 - type: Grille - components: - - pos: -90.5,5.5 - parent: 60 - type: Transform -- uid: 23270 - type: Grille - components: - - pos: -77.5,5.5 - parent: 60 - type: Transform -- uid: 23271 - type: Grille - components: - - pos: -96.5,29.5 - parent: 60 - type: Transform -- uid: 23272 - type: Grille - components: - - pos: -95.5,29.5 - parent: 60 - type: Transform -- uid: 23273 - type: Grille - components: - - pos: -94.5,29.5 - parent: 60 - type: Transform -- uid: 23274 - type: Grille - components: - - pos: -92.5,29.5 - parent: 60 - type: Transform -- uid: 23275 - type: Grille - components: - - pos: -91.5,29.5 - parent: 60 - type: Transform -- uid: 23276 - type: Grille - components: - - pos: -90.5,29.5 - parent: 60 - type: Transform -- uid: 23277 - type: Grille - components: - - pos: -87.5,29.5 - parent: 60 - type: Transform -- uid: 23278 - type: Grille - components: - - pos: -86.5,29.5 - parent: 60 - type: Transform -- uid: 23279 - type: Grille - components: - - pos: -85.5,29.5 - parent: 60 - type: Transform -- uid: 23280 - type: Grille - components: - - pos: -84.5,29.5 - parent: 60 - type: Transform -- uid: 23281 - type: Grille - components: - - pos: -82.5,29.5 - parent: 60 - type: Transform -- uid: 23282 - type: Grille - components: - - pos: -80.5,29.5 - parent: 60 - type: Transform -- uid: 23283 - type: Grille - components: - - pos: -79.5,29.5 - parent: 60 - type: Transform -- uid: 23284 - type: Grille - components: - - pos: -78.5,29.5 - parent: 60 - type: Transform -- uid: 23285 - type: Grille - components: - - pos: -77.5,29.5 - parent: 60 - type: Transform -- uid: 23286 - type: Grille - components: - - pos: -75.5,29.5 - parent: 60 - type: Transform -- uid: 23287 - type: Grille - components: - - pos: -74.5,29.5 - parent: 60 - type: Transform -- uid: 23288 - type: Grille - components: - - pos: -73.5,29.5 - parent: 60 - type: Transform -- uid: 23289 - type: Grille - components: - - pos: -74.5,27.5 - parent: 60 - type: Transform -- uid: 23290 - type: Grille - components: - - pos: -75.5,27.5 - parent: 60 - type: Transform -- uid: 23291 - type: Grille - components: - - pos: -76.5,27.5 - parent: 60 - type: Transform -- uid: 23292 - type: Grille - components: - - pos: -77.5,27.5 - parent: 60 - type: Transform -- uid: 23293 - type: Grille - components: - - pos: -80.5,27.5 - parent: 60 - type: Transform -- uid: 23294 - type: Grille - components: - - pos: -81.5,27.5 - parent: 60 - type: Transform -- uid: 23295 - type: Grille - components: - - pos: -82.5,27.5 - parent: 60 - type: Transform -- uid: 23296 - type: Grille - components: - - pos: -83.5,27.5 - parent: 60 - type: Transform -- uid: 23297 - type: Grille - components: - - pos: -84.5,27.5 - parent: 60 - type: Transform -- uid: 23298 - type: Grille - components: - - pos: -87.5,27.5 - parent: 60 - type: Transform -- uid: 23299 - type: Grille - components: - - pos: -88.5,27.5 - parent: 60 - type: Transform -- uid: 23300 - type: Grille - components: - - pos: -89.5,27.5 - parent: 60 - type: Transform -- uid: 23301 - type: Grille - components: - - pos: -90.5,27.5 - parent: 60 - type: Transform -- uid: 23302 - type: Grille - components: - - pos: -92.5,27.5 - parent: 60 - type: Transform -- uid: 23303 - type: Grille - components: - - pos: -93.5,27.5 - parent: 60 - type: Transform -- uid: 23304 - type: Grille - components: - - pos: -94.5,27.5 - parent: 60 - type: Transform -- uid: 23305 - type: Grille - components: - - pos: -97.5,27.5 - parent: 60 - type: Transform -- uid: 23306 - type: Grille - components: - - pos: -98.5,27.5 - parent: 60 - type: Transform -- uid: 23307 - type: Grille - components: - - pos: -99.5,27.5 - parent: 60 - type: Transform -- uid: 23308 - type: Grille - components: - - pos: -99.5,28.5 - parent: 60 - type: Transform -- uid: 23309 - type: Grille - components: - - pos: -99.5,29.5 - parent: 60 - type: Transform -- uid: 23310 - type: Grille - components: - - pos: -99.5,30.5 - parent: 60 - type: Transform -- uid: 23311 - type: Grille - components: - - pos: -99.5,31.5 - parent: 60 - type: Transform -- uid: 23312 - type: Grille - components: - - pos: -99.5,32.5 - parent: 60 - type: Transform -- uid: 23313 - type: Grille - components: - - pos: -99.5,33.5 - parent: 60 - type: Transform -- uid: 23314 - type: Grille - components: - - pos: -99.5,35.5 - parent: 60 - type: Transform -- uid: 23315 - type: Grille - components: - - pos: -99.5,37.5 - parent: 60 - type: Transform -- uid: 23316 - type: Grille - components: - - pos: -99.5,38.5 - parent: 60 - type: Transform -- uid: 23317 - type: Grille - components: - - pos: -100.5,38.5 - parent: 60 - type: Transform -- uid: 23318 - type: Grille - components: - - pos: -101.5,38.5 - parent: 60 - type: Transform -- uid: 23319 - type: Grille - components: - - pos: -102.5,38.5 - parent: 60 - type: Transform -- uid: 23320 - type: Grille - components: - - pos: -103.5,38.5 - parent: 60 - type: Transform -- uid: 23321 - type: Grille - components: - - pos: -105.5,38.5 - parent: 60 - type: Transform -- uid: 23322 - type: Grille - components: - - pos: -106.5,38.5 - parent: 60 - type: Transform -- uid: 23323 - type: Grille - components: - - pos: -106.5,39.5 - parent: 60 - type: Transform -- uid: 23324 - type: Grille - components: - - pos: -106.5,40.5 - parent: 60 - type: Transform -- uid: 23325 - type: Grille - components: - - pos: -107.5,40.5 - parent: 60 - type: Transform -- uid: 23326 - type: Grille - components: - - pos: -109.5,40.5 - parent: 60 - type: Transform -- uid: 23327 - type: Grille - components: - - pos: -108.5,40.5 - parent: 60 - type: Transform -- uid: 23328 - type: Grille - components: - - pos: -110.5,40.5 - parent: 60 - type: Transform -- uid: 23329 - type: Grille - components: - - pos: -112.5,40.5 - parent: 60 - type: Transform -- uid: 23330 - type: Grille - components: - - pos: -113.5,40.5 - parent: 60 - type: Transform -- uid: 23331 - type: Grille - components: - - pos: -114.5,40.5 - parent: 60 - type: Transform -- uid: 23332 - type: Grille - components: - - pos: -115.5,40.5 - parent: 60 - type: Transform -- uid: 23333 - type: Grille - components: - - pos: -116.5,40.5 - parent: 60 - type: Transform -- uid: 23334 - type: Grille - components: - - pos: -116.5,39.5 - parent: 60 - type: Transform -- uid: 23335 - type: Grille - components: - - pos: -116.5,38.5 - parent: 60 - type: Transform -- uid: 23336 - type: Grille - components: - - pos: -117.5,38.5 - parent: 60 - type: Transform -- uid: 23337 - type: Grille - components: - - pos: -119.5,38.5 - parent: 60 - type: Transform -- uid: 23338 - type: Grille - components: - - pos: -120.5,38.5 - parent: 60 - type: Transform -- uid: 23339 - type: Grille - components: - - pos: -121.5,38.5 - parent: 60 - type: Transform -- uid: 23340 - type: Grille - components: - - pos: -123.5,37.5 - parent: 60 - type: Transform -- uid: 23341 - type: Grille - components: - - pos: -123.5,36.5 - parent: 60 - type: Transform -- uid: 23342 - type: Grille - components: - - pos: -123.5,35.5 - parent: 60 - type: Transform -- uid: 23343 - type: Grille - components: - - pos: -123.5,34.5 - parent: 60 - type: Transform -- uid: 23344 - type: Grille - components: - - pos: -123.5,33.5 - parent: 60 - type: Transform -- uid: 23345 - type: Grille - components: - - pos: -123.5,31.5 - parent: 60 - type: Transform -- uid: 23346 - type: Grille - components: - - pos: -123.5,30.5 - parent: 60 - type: Transform -- uid: 23347 - type: Grille - components: - - pos: -123.5,28.5 - parent: 60 - type: Transform -- uid: 23348 - type: Grille - components: - - pos: -123.5,27.5 - parent: 60 - type: Transform -- uid: 23349 - type: Grille - components: - - pos: -123.5,26.5 - parent: 60 - type: Transform -- uid: 23350 - type: Grille - components: - - pos: -123.5,25.5 - parent: 60 - type: Transform -- uid: 23351 - type: Grille - components: - - pos: -123.5,24.5 - parent: 60 - type: Transform -- uid: 23352 - type: GrilleBroken - components: - - pos: -118.5,38.5 - parent: 60 - type: Transform -- uid: 23353 - type: GrilleBroken - components: - - pos: -123.5,29.5 - parent: 60 - type: Transform -- uid: 23354 - type: GrilleBroken - components: - - pos: -126.5,20.5 - parent: 60 - type: Transform -- uid: 23355 - type: GrilleBroken - components: - - pos: -121.5,3.5 - parent: 60 - type: Transform -- uid: 23356 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -103.5,1.5 - parent: 60 - type: Transform -- uid: 23357 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -103.5,1.5 - parent: 60 - type: Transform -- uid: 23358 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -88.5,5.5 - parent: 60 - type: Transform -- uid: 23359 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -95.5,5.5 - parent: 60 - type: Transform -- uid: 23360 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -86.5,7.5 - parent: 60 - type: Transform -- uid: 23361 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: -99.5,20.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Entrance Ext - type: SurveillanceCamera -- uid: 23362 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: -106.5,18.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Foyer - type: SurveillanceCamera -- uid: 23363 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: -102.5,30.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core NE Walkway - type: SurveillanceCamera -- uid: 23364 - type: SurveillanceCameraCommand - components: - - pos: -111.5,35.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core N Walkway - type: SurveillanceCamera -- uid: 23365 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -120.5,30.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core NW Walkway - type: SurveillanceCamera -- uid: 23366 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -123.5,20.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core W Walkway - type: SurveillanceCamera -- uid: 23367 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -118.5,7.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core SW Walkway - type: SurveillanceCamera -- uid: 23368 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: -104.5,7.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core SE Walkway - type: SurveillanceCamera -- uid: 23369 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -116.5,18.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'AI Core Maintenance ' - type: SurveillanceCamera -- uid: 23371 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -112.5,19.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Central Room - type: SurveillanceCamera -- uid: 23372 - type: SurveillanceCameraCommand - components: - - pos: -112.5,21.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Chamber South - type: SurveillanceCamera -- uid: 23373 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -111.5,31.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Chamber North - type: SurveillanceCamera -- uid: 23376 - type: PoweredSmallLight - components: - - pos: -62.5,17.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23377 - type: PoweredSmallLight - components: - - pos: -68.5,17.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23378 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23379 - type: SignAi - components: - - pos: -60.5,16.5 - parent: 60 - type: Transform -- uid: 23380 - type: AtmosDeviceFanTiny - components: - - pos: 46.5,31.5 - parent: 60 - type: Transform -- uid: 23381 - type: AtmosDeviceFanTiny - components: - - pos: 52.5,31.5 - parent: 60 - type: Transform -- uid: 23382 - type: AtmosDeviceFanTiny - components: - - pos: 54.5,31.5 - parent: 60 - type: Transform -- uid: 23383 - type: PaintingAmogusTriptych - components: - - pos: 5.5,-8.5 - parent: 60 - type: Transform -- uid: 23384 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 14.5,1.5 - parent: 60 - type: Transform - - devices: - - 21772 - - 6133 - - 5901 - - 5900 - - invalid - - 4369 - - 1198 - - 4546 - type: DeviceList -- uid: 23385 - type: Mirror - components: - - pos: -37.5,20.5 - parent: 60 - type: Transform -- uid: 23386 - type: DisposalPipe - components: - - pos: 33.5,-22.5 - parent: 60 - type: Transform -- uid: 23387 - type: WallSolid - components: - - pos: -61.5,42.5 - parent: 60 - type: Transform -- uid: 23388 - type: WallSolid - components: - - pos: -60.5,42.5 - parent: 60 - type: Transform -- uid: 23389 - type: WallSolid - components: - - pos: -64.5,41.5 - parent: 60 - type: Transform -- uid: 23390 - type: WallSolid - components: - - pos: -64.5,40.5 - parent: 60 - type: Transform -- uid: 23391 - type: WallSolid - components: - - pos: -64.5,39.5 - parent: 60 - type: Transform -- uid: 23392 - type: WallSolid - components: - - pos: -62.5,39.5 - parent: 60 - type: Transform -- uid: 23393 - type: Girder - components: - - pos: -63.5,39.5 - parent: 60 - type: Transform -- uid: 23394 - type: WallSolid - components: - - pos: -61.5,39.5 - parent: 60 - type: Transform -- uid: 23395 - type: WallSolid - components: - - pos: -60.5,39.5 - parent: 60 - type: Transform -- uid: 23396 - type: SignNosmoking - components: - - pos: -60.5,39.5 - parent: 60 - type: Transform -- uid: 23397 - type: WallSolid - components: - - pos: -60.5,37.5 - parent: 60 - type: Transform -- uid: 23398 - type: WallSolid - components: - - pos: -60.5,36.5 - parent: 60 - type: Transform -- uid: 23399 - type: WallSolid - components: - - pos: -60.5,35.5 - parent: 60 - type: Transform -- uid: 23400 - type: Window - components: - - pos: -55.5,50.5 - parent: 60 - type: Transform -- uid: 23401 - type: Window - components: - - pos: -55.5,51.5 - parent: 60 - type: Transform -- uid: 23402 - type: Grille - components: - - pos: -55.5,52.5 - parent: 60 - type: Transform -- uid: 23403 - type: CableApcExtension - components: - - pos: -58.5,37.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23404 - type: WallSolid - components: - - pos: -65.5,52.5 - parent: 60 - type: Transform -- uid: 23405 - type: WallSolid - components: - - pos: -65.5,53.5 - parent: 60 - type: Transform -- uid: 23406 - type: WallSolid - components: - - pos: -61.5,53.5 - parent: 60 - type: Transform -- uid: 23407 - type: WallSolid - components: - - pos: -60.5,53.5 - parent: 60 - type: Transform -- uid: 23408 - type: GasPipeStraight - components: - - pos: -59.5,53.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23409 - type: WallSolid - components: - - pos: -58.5,53.5 - parent: 60 - type: Transform -- uid: 23410 - type: WallSolid - components: - - pos: -57.5,53.5 - parent: 60 - type: Transform -- uid: 23411 - type: WallSolid - components: - - pos: -56.5,53.5 - parent: 60 - type: Transform -- uid: 23412 - type: WallSolid - components: - - pos: -55.5,53.5 - parent: 60 - type: Transform -- uid: 23413 - type: Window - components: - - pos: -55.5,52.5 - parent: 60 - type: Transform -- uid: 23414 - type: Window - components: - - pos: -56.5,36.5 - parent: 60 - type: Transform -- uid: 23415 - type: Window - components: - - pos: -56.5,37.5 - parent: 60 - type: Transform -- uid: 23416 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -111.5,25.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23417 - type: ClosetRadiationSuitFilled - components: - - pos: -61.5,41.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23418 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,39.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23419 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,36.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23420 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -63.5,50.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23421 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -6.5,5.5 - parent: 60 - type: Transform -- uid: 23422 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-12.5 - parent: 60 - type: Transform - - devices: - - 7030 - - 21579 - - 8961 - - 3110 - - 5488 - - 5486 - - 5466 - type: DeviceList -- uid: 23423 - type: IntercomEngineering - components: - - pos: -18.5,38.5 - parent: 60 - type: Transform -- uid: 23424 - type: Table - components: - - pos: 47.5,12.5 - parent: 60 - type: Transform -- uid: 23425 - type: FaxMachineBase - components: - - pos: 47.5,12.5 - parent: 60 - type: Transform - - name: Cargo - type: FaxMachine -- uid: 23426 - type: WallSolid - components: - - pos: -55.5,39.5 - parent: 60 - type: Transform -- uid: 23427 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -56.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23428 - type: CableApcExtension - components: - - pos: -58.5,36.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23429 - type: FaxMachineBase - components: - - pos: 1.5,21.5 - parent: 60 - type: Transform - - name: Engineering - type: FaxMachine -- uid: 23430 - type: FaxMachineBase - components: - - pos: -9.5,22.5 - parent: 60 - type: Transform - - name: Library - type: FaxMachine -- uid: 23431 - type: WallSolid - components: - - pos: -56.5,35.5 - parent: 60 - type: Transform -- uid: 23432 - type: Grille - components: - - pos: -55.5,51.5 - parent: 60 - type: Transform -- uid: 23433 - type: Grille - components: - - pos: -55.5,50.5 - parent: 60 - type: Transform -- uid: 23434 - type: Grille - components: - - pos: -55.5,49.5 - parent: 60 - type: Transform -- uid: 23435 - type: Grille - components: - - pos: -55.5,48.5 - parent: 60 - type: Transform -- uid: 23436 - type: Grille - components: - - pos: -55.5,47.5 - parent: 60 - type: Transform -- uid: 23437 - type: Poweredlight - components: - - pos: -57.5,52.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23438 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,42.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23439 - type: Grille - components: - - pos: -55.5,44.5 - parent: 60 - type: Transform -- uid: 23440 - type: Grille - components: - - pos: -55.5,43.5 - parent: 60 - type: Transform -- uid: 23441 - type: Grille - components: - - pos: -55.5,42.5 - parent: 60 - type: Transform -- uid: 23442 - type: Grille - components: - - pos: -55.5,41.5 - parent: 60 - type: Transform -- uid: 23443 - type: Grille - components: - - pos: -55.5,40.5 - parent: 60 - type: Transform -- uid: 23444 - type: Grille - components: - - pos: -56.5,38.5 - parent: 60 - type: Transform -- uid: 23445 - type: Grille - components: - - pos: -56.5,37.5 - parent: 60 - type: Transform -- uid: 23446 - type: Grille - components: - - pos: -56.5,36.5 - parent: 60 - type: Transform -- uid: 23447 - type: Grille - components: - - pos: -57.5,35.5 - parent: 60 - type: Transform -- uid: 23448 - type: Grille - components: - - pos: -59.5,35.5 - parent: 60 - type: Transform -- uid: 23449 - type: AirlockMaintLocked - components: - - pos: -65.5,50.5 - parent: 60 - type: Transform -- uid: 23450 - type: AirlockEngineeringGlass - components: - - pos: -64.5,53.5 - parent: 60 - type: Transform -- uid: 23451 - type: AirlockEngineeringGlass - components: - - pos: -63.5,53.5 - parent: 60 - type: Transform -- uid: 23452 - type: AirlockEngineeringGlass - components: - - pos: -62.5,53.5 - parent: 60 - type: Transform -- uid: 23453 - type: AirlockEngineeringGlass - components: - - pos: -58.5,35.5 - parent: 60 - type: Transform -- uid: 23454 - type: AirlockAtmosphericsGlass - components: - - pos: -60.5,40.5 - parent: 60 - type: Transform -- uid: 23455 - type: ReinforcedPlasmaWindow - components: - - pos: -60.5,41.5 - parent: 60 - type: Transform -- uid: 23456 - type: Grille - components: - - pos: -60.5,41.5 - parent: 60 - type: Transform -- uid: 23457 - type: PosterContrabandAtmosiaDeclarationIndependence - components: - - pos: -60.5,42.5 - parent: 60 - type: Transform -- uid: 23458 - type: PlaqueAtmos - components: - - pos: -62.5,49.5 - parent: 60 - type: Transform -- uid: 23459 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -64.5,44.5 - parent: 60 - type: Transform -- uid: 23460 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -63.5,44.5 - parent: 60 - type: Transform -- uid: 23461 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -62.5,44.5 - parent: 60 - type: Transform -- uid: 23462 - type: BoozeDispenser - components: - - pos: -63.5,48.5 - parent: 60 - type: Transform -- uid: 23463 - type: soda_dispenser - components: - - pos: -64.5,48.5 - parent: 60 - type: Transform -- uid: 23464 - type: LampGold - components: - - pos: -64.53201,45.976482 - parent: 60 - type: Transform -- uid: 23465 - type: ChairOfficeDark - components: - - pos: -63.5,46.5 - parent: 60 - type: Transform -- uid: 23466 - type: ComputerFrame - components: - - rot: 1.5707963267948966 rad - pos: -64.5,46.5 - parent: 60 - type: Transform -- uid: 23467 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: -62.5,48.5 - parent: 60 - type: Transform -- uid: 23468 - type: GasFilterFlipped - components: - - rot: 3.141592653589793 rad - pos: -56.5,51.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23469 - type: GasFilterFlipped - components: - - rot: 3.141592653589793 rad - pos: -56.5,49.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23470 - type: GasFilterFlipped - components: - - rot: 3.141592653589793 rad - pos: -56.5,47.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23471 - type: GasFilterFlipped - components: - - rot: 3.141592653589793 rad - pos: -56.5,45.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23472 - type: GasFilterFlipped - components: - - rot: 3.141592653589793 rad - pos: -56.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23473 - type: GasFilterFlipped - components: - - rot: 3.141592653589793 rad - pos: -56.5,41.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23474 - type: GasVolumePump - components: - - rot: -1.5707963267948966 rad - pos: -56.5,48.5 - parent: 60 - type: Transform - - color: '#35DEEBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23475 - type: GasMixer - components: - - pos: -57.5,47.5 - parent: 60 - type: Transform - - color: '#35DEEBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23476 - type: GasMixerFlipped - components: - - rot: 3.141592653589793 rad - pos: -57.5,46.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23477 - type: GasMixerFlipped - components: - - rot: 3.141592653589793 rad - pos: -57.5,44.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23478 - type: GasMixerFlipped - components: - - rot: 3.141592653589793 rad - pos: -57.5,42.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23479 - type: GasMixerFlipped - components: - - rot: 3.141592653589793 rad - pos: -57.5,40.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23480 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -56.5,40.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23481 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -56.5,42.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23482 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -56.5,44.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23483 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -56.5,46.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23484 - type: GasVolumePump - components: - - rot: -1.5707963267948966 rad - pos: -56.5,50.5 - parent: 60 - type: Transform - - color: '#35DEEBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23485 - type: GasPipeTJunction - components: - - pos: -57.5,50.5 - parent: 60 - type: Transform - - color: '#35DEEBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23486 - type: GasPipeStraight - components: - - pos: -57.5,48.5 - parent: 60 - type: Transform - - color: '#35DEEBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23487 - type: GasPipeStraight - components: - - pos: -57.5,49.5 - parent: 60 - type: Transform - - color: '#35DEEBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23488 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,48.5 - parent: 60 - type: Transform - - color: '#35DEEBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23489 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,50.5 - parent: 60 - type: Transform - - color: '#35DEEBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23490 - type: GasPipeTJunction - components: - - pos: -58.5,48.5 - parent: 60 - type: Transform - - color: '#35DEEBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23491 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -58.5,47.5 - parent: 60 - type: Transform - - color: '#35DEEBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23492 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,48.5 - parent: 60 - type: Transform - - color: '#35DEEBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23493 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,50.5 - parent: 60 - type: Transform - - color: '#35DEEBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23494 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -60.5,50.5 - parent: 60 - type: Transform - - color: '#35DEEBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23495 - type: GasPipeStraight - components: - - pos: -60.5,49.5 - parent: 60 - type: Transform - - color: '#35DEEBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23496 - type: GasMixerFlipped - components: - - rot: 3.141592653589793 rad - pos: -60.5,48.5 - parent: 60 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#35DEEBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23497 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -60.5,47.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23498 - type: GasPressurePump - components: - - pos: -60.5,46.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23499 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -61.5,47.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23500 - type: GasPressurePump - components: - - pos: -61.5,46.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23501 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -60.5,47.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23502 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -60.5,45.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23503 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -61.5,45.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23504 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -60.5,43.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23505 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -61.5,43.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23506 - type: GasPipeStraight - components: - - pos: -56.5,42.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23507 - type: GasPipeStraight - components: - - pos: -56.5,44.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23508 - type: GasPipeStraight - components: - - pos: -56.5,46.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23509 - type: GasPipeStraight - components: - - pos: -56.5,48.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23510 - type: GasPipeStraight - components: - - pos: -56.5,50.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23511 - type: GasPipeBend - components: - - pos: -56.5,52.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23512 - type: GasVolumePump - components: - - rot: 1.5707963267948966 rad - pos: -57.5,52.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23513 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,52.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23514 - type: GasPipeFourway - components: - - pos: -59.5,52.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23515 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -59.5,51.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23516 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -60.5,51.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23517 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -60.5,52.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23518 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -61.5,52.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23519 - type: GasPipeStraight - components: - - pos: -59.5,50.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23520 - type: GasPipeStraight - components: - - pos: -59.5,49.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23521 - type: GasPipeStraight - components: - - pos: -59.5,48.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23522 - type: GasPipeStraight - components: - - pos: -59.5,47.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23523 - type: GasPipeStraight - components: - - pos: -59.5,46.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23524 - type: GasPipeStraight - components: - - pos: -59.5,45.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23525 - type: GasPipeStraight - components: - - pos: -59.5,44.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23526 - type: GasPipeStraight - components: - - pos: -59.5,43.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23527 - type: GasPipeStraight - components: - - pos: -59.5,42.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23528 - type: GasPipeStraight - components: - - pos: -59.5,41.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23529 - type: GasPipeStraight - components: - - pos: -59.5,40.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23530 - type: GasPipeStraight - components: - - pos: -59.5,39.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23531 - type: GasPipeStraight - components: - - pos: -59.5,38.5 - parent: 60 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23532 - type: GasPipeStraight - components: - - pos: -57.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23533 - type: GasPipeStraight - components: - - pos: -57.5,41.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23534 - type: GasPipeStraight - components: - - pos: -57.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23535 - type: GasPipeStraight - components: - - pos: -57.5,45.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23536 - type: GasPipeStraight - components: - - pos: -60.5,44.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23537 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,40.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23538 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23539 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23540 - type: GasValve - components: - - rot: 1.5707963267948966 rad - pos: -53.5,39.5 - parent: 60 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 23541 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -52.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23542 - type: GasPressurePump - components: - - pos: -58.5,40.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23543 - type: GasPressurePump - components: - - pos: -57.5,37.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23544 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -58.5,38.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23545 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -57.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23546 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -57.5,38.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23547 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -58.5,39.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23548 - type: GasPort - components: - - pos: -58.5,41.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23549 - type: OxygenCanister - components: - - pos: -57.5,36.5 - parent: 60 - type: Transform -- uid: 23550 - type: NitrogenCanister - components: - - pos: -64.5,43.5 - parent: 60 - type: Transform -- uid: 23551 - type: NitrogenCanister - components: - - pos: -63.5,43.5 - parent: 60 - type: Transform -- uid: 23552 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,47.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23553 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,45.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23554 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,49.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23555 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,51.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23556 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23557 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,44.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23558 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,46.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23559 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,48.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23560 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,50.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23561 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,40.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23562 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,41.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23563 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,42.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23564 - type: WarningWaste - components: - - pos: -55.5,39.5 - parent: 60 - type: Transform -- uid: 23565 - type: WarningAir - components: - - pos: -61.5,42.5 - parent: 60 - type: Transform -- uid: 23566 - type: TableReinforced - components: - - pos: -62.5,41.5 - parent: 60 - type: Transform -- uid: 23567 - type: TableReinforced - components: - - pos: -63.5,41.5 - parent: 60 - type: Transform -- uid: 23568 - type: InflatableWallStack - components: - - pos: -63.49233,41.553234 - parent: 60 - type: Transform -- uid: 23569 - type: WelderIndustrial - components: - - pos: -62.61733,41.50636 - parent: 60 - type: Transform -- uid: 23570 - type: ClothingEyesGlassesThermal - components: - - pos: -62.52358,41.396984 - parent: 60 - type: Transform -- uid: 23571 - type: CableApcExtension - components: - - pos: -58.5,38.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23572 - type: CableApcExtension - components: - - pos: -58.5,39.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23574 - type: CableApcExtension - components: - - pos: -58.5,41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23575 - type: CableApcExtension - components: - - pos: -58.5,42.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23576 - type: CableApcExtension - components: - - pos: -58.5,43.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23577 - type: CableApcExtension - components: - - pos: -57.5,41.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23578 - type: CableApcExtension - components: - - pos: -62.5,48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23579 - type: CableApcExtension - components: - - pos: -62.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23580 - type: CableApcExtension - components: - - pos: -62.5,46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23581 - type: CableApcExtension - components: - - pos: -62.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23582 - type: CableApcExtension - components: - - pos: -62.5,44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23583 - type: CableApcExtension - components: - - pos: -61.5,44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23584 - type: CableApcExtension - components: - - pos: -60.5,44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23585 - type: CableApcExtension - components: - - pos: -64.5,44.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23586 - type: CableApcExtension - components: - - pos: -64.5,45.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23587 - type: CableApcExtension - components: - - pos: -64.5,46.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23588 - type: CableApcExtension - components: - - pos: -64.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23589 - type: CableApcExtension - components: - - pos: -63.5,47.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23590 - type: CableApcExtension - components: - - pos: -61.5,48.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23591 - type: CableApcExtension - components: - - pos: -56.5,52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23592 - type: CableApcExtension - components: - - pos: -57.5,52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23593 - type: CableApcExtension - components: - - pos: -58.5,52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23594 - type: CableApcExtension - components: - - pos: -59.5,52.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23595 - type: CableApcExtension - components: - - pos: -59.5,51.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23596 - type: CableApcExtension - components: - - pos: -59.5,50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23597 - type: CableApcExtension - components: - - pos: -60.5,50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23598 - type: CableApcExtension - components: - - pos: -61.5,50.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23599 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -64.5,40.5 - parent: 60 - type: Transform -- uid: 23600 - type: CableMV - components: - - pos: -64.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23601 - type: CableMV - components: - - pos: -63.5,40.5 - parent: 60 - type: Transform -- uid: 23602 - type: CableMV - components: - - pos: -62.5,40.5 - parent: 60 - type: Transform -- uid: 23603 - type: CableMV - components: - - pos: -61.5,40.5 - parent: 60 - type: Transform -- uid: 23604 - type: CableMV - components: - - pos: -60.5,40.5 - parent: 60 - type: Transform -- uid: 23605 - type: CableMV - components: - - pos: -59.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23606 - type: CableApcExtension - components: - - pos: -64.5,40.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23607 - type: CableApcExtension - components: - - pos: -63.5,40.5 - parent: 60 - type: Transform -- uid: 23608 - type: CableApcExtension - components: - - pos: -62.5,40.5 - parent: 60 - type: Transform -- uid: 23609 - type: SignSecureMed - components: - - pos: -61.5,53.5 - parent: 60 - type: Transform -- uid: 23610 - type: SignEngineering - components: - - pos: -60.5,53.5 - parent: 60 - type: Transform -- uid: 23611 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,45.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23612 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,46.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23613 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,43.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23614 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,51.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23615 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -54.5,43.5 - parent: 60 - type: Transform -- uid: 23616 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -54.5,46.5 - parent: 60 - type: Transform -- uid: 23617 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -54.5,47.5 - parent: 60 - type: Transform -- uid: 23618 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -54.5,51.5 - parent: 60 - type: Transform -- uid: 23619 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -54.5,39.5 - parent: 60 - type: Transform -- uid: 23620 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -54.5,40.5 - parent: 60 - type: Transform -- uid: 23621 - type: FoodPlateSmall - components: - - pos: 20.513836,-26.382895 - parent: 60 - type: Transform -- uid: 23622 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -58.5,31.5 - parent: 60 - type: Transform -- uid: 23623 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -58.5,32.5 - parent: 60 - type: Transform -- uid: 23624 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -58.5,33.5 - parent: 60 - type: Transform -- uid: 23625 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -58.5,34.5 - parent: 60 - type: Transform -- uid: 23626 - type: DrinkShaker - components: - - pos: -62.596844,46.56719 - parent: 60 - type: Transform -- uid: 23627 - type: DrinkGlass - components: - - pos: -62.61247,46.239063 - parent: 60 - type: Transform -- uid: 23628 - type: DrinkGlass - components: - - pos: -62.26872,46.41094 - parent: 60 - type: Transform -- uid: 23629 - type: FoodPlateSmall - components: - - pos: 20.513836,-26.507895 - parent: 60 - type: Transform -- uid: 23630 - type: FoodPlateSmall - components: - - pos: 20.513836,-26.445395 - parent: 60 - type: Transform -- uid: 23631 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -59.5,36.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23632 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -58.5,36.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23633 - type: StorageCanister - components: - - pos: -59.5,36.5 - parent: 60 - type: Transform -- uid: 23634 - type: SignAtmos - components: - - pos: -56.5,35.5 - parent: 60 - type: Transform -- uid: 23635 - type: Girder - components: - - pos: -60.5,38.5 - parent: 60 - type: Transform -- uid: 23636 - type: Girder - components: - - pos: -65.5,51.5 - parent: 60 - type: Transform -- uid: 23637 - type: Girder - components: - - pos: -59.5,53.5 - parent: 60 - type: Transform -- uid: 23639 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -61.5,32.5 - parent: 60 - type: Transform -- uid: 23640 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -55.5,32.5 - parent: 60 - type: Transform -- uid: 23641 - type: SignSecureSmall - components: - - pos: -61.5,32.5 - parent: 60 - type: Transform -- uid: 23642 - type: SignSecureSmall - components: - - pos: -55.5,32.5 - parent: 60 - type: Transform -- uid: 23643 - type: SynthesizerInstrument - components: - - pos: -62.532383,45.611603 - parent: 60 - type: Transform -- uid: 23644 - type: RandomSpawner - components: - - pos: -28.5,23.5 - parent: 60 - type: Transform -- uid: 23645 - type: RandomSpawner - components: - - pos: -20.5,25.5 - parent: 60 - type: Transform -- uid: 23646 - type: RandomSpawner - components: - - pos: -14.5,12.5 - parent: 60 - type: Transform -- uid: 23647 - type: RandomSpawner - components: - - pos: -14.5,1.5 - parent: 60 - type: Transform -- uid: 23648 - type: RandomSpawner - components: - - pos: -14.5,-18.5 - parent: 60 - type: Transform -- uid: 23649 - type: Cautery - components: - - pos: -40.385193,11.801221 - parent: 60 - type: Transform -- uid: 23650 - type: ChairOfficeDark - components: - - pos: -49.5,-17.5 - parent: 60 - type: Transform -- uid: 23651 - type: RandomSpawner - components: - - pos: -47.5,-3.5 - parent: 60 - type: Transform -- uid: 23652 - type: Table - components: - - pos: 21.5,-26.5 - parent: 60 - type: Transform -- uid: 23653 - type: Fork - components: - - pos: 21.138836,-26.476645 - parent: 60 - type: Transform -- uid: 23654 - type: RandomFoodMeal - components: - - pos: -63.5,45.5 - parent: 60 - type: Transform -- uid: 23655 - type: RandomSpawner - components: - - pos: -0.5,-36.5 - parent: 60 - type: Transform -- uid: 23656 - type: RandomSpawner - components: - - pos: 17.5,0.5 - parent: 60 - type: Transform -- uid: 23657 - type: RandomSpawner - components: - - pos: 56.5,1.5 - parent: 60 - type: Transform -- uid: 23658 - type: GasCanisterBrokenBase - components: - - pos: -59.5,37.5 - parent: 60 - type: Transform -- uid: 23659 - type: GrilleBroken - components: - - pos: -55.5,45.5 - parent: 60 - type: Transform -- uid: 23660 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -55.5,46.5 - parent: 60 - type: Transform -- uid: 23661 - type: PosterBroken - components: - - pos: -60.5,36.5 - parent: 60 - type: Transform -- uid: 23662 - type: BrokenBottle - components: - - pos: -56.485756,52.334377 - parent: 60 - type: Transform -- uid: 23663 - type: ClothingShoesBootsWork - components: - - desc: Fashionably expensive. - name: NT Timbs - type: MetaData - - pos: -62.548008,43.377228 - parent: 60 - type: Transform -- uid: 23664 - type: DrinkWaterBottleFull - components: - - pos: -64.8069,52.0159 - parent: 60 - type: Transform -- uid: 23665 - type: Fork - components: - - pos: 21.138836,-26.476645 - parent: 60 - type: Transform -- uid: 23666 - type: Spoon - components: - - pos: 21.43571,-26.476645 - parent: 60 - type: Transform -- uid: 23667 - type: Spoon - components: - - pos: 21.43571,-26.476645 - parent: 60 - type: Transform -- uid: 23668 - type: Spoon - components: - - pos: 21.43571,-26.476645 - parent: 60 - type: Transform -- uid: 23669 - type: ChessBoard - components: - - pos: 19.551128,-37.52751 - parent: 60 - type: Transform -- uid: 23670 - type: CarpetPurple - components: - - pos: 18.5,-28.5 - parent: 60 - type: Transform -- uid: 23671 - type: FoodCondimentBottleSmallHotsauce - components: - - pos: 21.70029,-26.388956 - parent: 60 - type: Transform -- uid: 23672 - type: CarpetPurple - components: - - pos: 19.5,-28.5 - parent: 60 - type: Transform -- uid: 23673 - type: CarpetPurple - components: - - pos: 19.5,-29.5 - parent: 60 - type: Transform -- uid: 23674 - type: CarpetPurple - components: - - pos: 19.5,-30.5 - parent: 60 - type: Transform -- uid: 23675 - type: CarpetPurple - components: - - pos: 20.5,-28.5 - parent: 60 - type: Transform -- uid: 23676 - type: CarpetPurple - components: - - pos: 20.5,-29.5 - parent: 60 - type: Transform -- uid: 23677 - type: Grille - components: - - pos: 25.5,30.5 - parent: 60 - type: Transform -- uid: 23678 - type: Grille - components: - - pos: 26.5,30.5 - parent: 60 - type: Transform -- uid: 23679 - type: Grille - components: - - pos: 27.5,30.5 - parent: 60 - type: Transform -- uid: 23680 - type: Grille - components: - - pos: 28.5,30.5 - parent: 60 - type: Transform -- uid: 23681 - type: Grille - components: - - pos: 29.5,30.5 - parent: 60 - type: Transform -- uid: 23682 - type: Grille - components: - - pos: 30.5,30.5 - parent: 60 - type: Transform -- uid: 23683 - type: Grille - components: - - pos: 31.5,30.5 - parent: 60 - type: Transform -- uid: 23684 - type: Grille - components: - - pos: 32.5,30.5 - parent: 60 - type: Transform -- uid: 23685 - type: Grille - components: - - pos: 33.5,30.5 - parent: 60 - type: Transform -- uid: 23686 - type: Grille - components: - - pos: 34.5,30.5 - parent: 60 - type: Transform -- uid: 23687 - type: Grille - components: - - pos: 35.5,30.5 - parent: 60 - type: Transform -- uid: 23688 - type: CarpetPurple - components: - - pos: 20.5,-30.5 - parent: 60 - type: Transform -- uid: 23689 - type: Grille - components: - - pos: 36.5,30.5 - parent: 60 - type: Transform -- uid: 23690 - type: Grille - components: - - pos: 37.5,30.5 - parent: 60 - type: Transform -- uid: 23691 - type: Grille - components: - - pos: 38.5,30.5 - parent: 60 - type: Transform -- uid: 23692 - type: Grille - components: - - pos: 39.5,30.5 - parent: 60 - type: Transform -- uid: 23693 - type: SmokingPipeFilledTobacco - components: - - pos: -8.5452585,-5.5884953 - parent: 60 - type: Transform -- uid: 23694 - type: Grille - components: - - pos: 40.5,30.5 - parent: 60 - type: Transform -- uid: 23695 - type: BooksBag - components: - - pos: -8.518149,24.954159 - parent: 60 - type: Transform -- uid: 23696 - type: BookEscalation - components: - - pos: -7.5117726,20.590528 - parent: 60 - type: Transform -- uid: 23697 - type: BookEscalationSecurity - components: - - pos: -12.548856,19.605753 - parent: 60 - type: Transform -- uid: 23698 - type: CableMV - components: - - pos: 45.5,-32.5 - parent: 60 - type: Transform -- uid: 23699 - type: CarpetBlack - components: - - pos: 18.5,-34.5 - parent: 60 - type: Transform -- uid: 23700 - type: BookAtmosAirAlarms - components: - - pos: -11.637694,22.589413 - parent: 60 - type: Transform -- uid: 23701 - type: BookAtmosVentsMore - components: - - pos: -11.418944,22.495663 - parent: 60 - type: Transform -- uid: 23702 - type: BookAtmosDistro - components: - - pos: -6.590819,15.667539 - parent: 60 - type: Transform -- uid: 23703 - type: BookAtmosWaste - components: - - pos: -6.434569,15.495664 - parent: 60 - type: Transform -- uid: 23704 - type: ChemistryHotplate - components: - - pos: 40.5,-28.5 - parent: 60 - type: Transform -- uid: 23705 - type: CarpetBlack - components: - - pos: 18.5,-33.5 - parent: 60 - type: Transform -- uid: 23706 - type: CarpetBlack - components: - - pos: 18.5,-32.5 - parent: 60 - type: Transform -- uid: 23707 - type: CarpetBlack - components: - - pos: 19.5,-32.5 - parent: 60 - type: Transform -- uid: 23708 - type: CarpetBlack - components: - - pos: 19.5,-33.5 - parent: 60 - type: Transform -- uid: 23709 - type: CarpetBlack - components: - - pos: 19.5,-34.5 - parent: 60 - type: Transform -- uid: 23710 - type: RandomVending - components: - - pos: 21.5,-40.5 - parent: 60 - type: Transform -- uid: 23711 - type: CrateFilledSpawner - components: - - pos: 52.5,8.5 - parent: 60 - type: Transform -- uid: 23712 - type: CrateFilledSpawner - components: - - pos: 52.5,10.5 - parent: 60 - type: Transform -- uid: 23713 - type: CrateFilledSpawner - components: - - pos: 54.5,10.5 - parent: 60 - type: Transform -- uid: 23714 - type: CrateFilledSpawner - components: - - pos: 54.5,12.5 - parent: 60 - type: Transform -- uid: 23715 - type: FirelockGlass - components: - - pos: 0.5,12.5 - parent: 60 - type: Transform -- uid: 23717 - type: FirelockGlass - components: - - pos: 31.5,-19.5 - parent: 60 - type: Transform -- uid: 23718 - type: SmokingPipeFilledTobacco - components: - - pos: -24.372612,-29.105206 - parent: 60 - type: Transform -- uid: 23719 - type: filingCabinetDrawerRandom - components: - - pos: 48.5,12.5 - parent: 60 - type: Transform -- uid: 23720 - type: ExosuitFabricator - components: - - pos: -30.5,13.5 - parent: 60 - type: Transform -- uid: 23721 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: -26.5,47.5 - parent: 60 - type: Transform -- uid: 23722 - type: CableMV - components: - - pos: -7.5,4.5 - parent: 60 - type: Transform -- uid: 23723 - type: CableMV - components: - - pos: -7.5,6.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23724 - type: CableMV - components: - - pos: -7.5,5.5 - parent: 60 - type: Transform -- uid: 23725 - type: APCBasic - components: - - pos: -7.5,6.5 - parent: 60 - type: Transform -- uid: 23726 - type: CableApcExtension - components: - - pos: -7.5,2.5 - parent: 60 - type: Transform -- uid: 23727 - type: CableMV - components: - - pos: 44.5,-32.5 - parent: 60 - type: Transform -- uid: 23728 - type: CableApcExtension - components: - - pos: -7.5,3.5 - parent: 60 - type: Transform -- uid: 23732 - type: CableMV - components: - - pos: 44.5,-31.5 - parent: 60 - type: Transform -- uid: 23733 - type: CableMV - components: - - pos: 43.5,-31.5 - parent: 60 - type: Transform -- uid: 23734 - type: CableMV - components: - - pos: 42.5,-31.5 - parent: 60 - type: Transform -- uid: 23735 - type: CableMV - components: - - pos: 41.5,-31.5 - parent: 60 - type: Transform -- uid: 23736 - type: CableMV - components: - - pos: 40.5,-31.5 - parent: 60 - type: Transform -- uid: 23737 - type: CableMV - components: - - pos: 40.5,-32.5 - parent: 60 - type: Transform -- uid: 23738 - type: CableMV - components: - - pos: 40.5,-33.5 - parent: 60 - type: Transform -- uid: 23739 - type: CableMV - components: - - pos: 40.5,-34.5 - parent: 60 - type: Transform -- uid: 23740 - type: CableMV - components: - - pos: 44.5,-30.5 - parent: 60 - type: Transform -- uid: 23741 - type: CableMV - components: - - pos: 44.5,-29.5 - parent: 60 - type: Transform -- uid: 23742 - type: CableMV - components: - - pos: 44.5,-28.5 - parent: 60 - type: Transform -- uid: 23743 - type: CableMV - components: - - pos: 44.5,-27.5 - parent: 60 - type: Transform -- uid: 23744 - type: CableMV - components: - - pos: 44.5,-26.5 - parent: 60 - type: Transform -- uid: 23745 - type: CableMV - components: - - pos: 44.5,-25.5 - parent: 60 - type: Transform -- uid: 23746 - type: CableMV - components: - - pos: 44.5,-24.5 - parent: 60 - type: Transform -- uid: 23747 - type: CableMV - components: - - pos: 44.5,-23.5 - parent: 60 - type: Transform -- uid: 23748 - type: CableMV - components: - - pos: 44.5,-22.5 - parent: 60 - type: Transform -- uid: 23749 - type: CableMV - components: - - pos: 44.5,-21.5 - parent: 60 - type: Transform -- uid: 23750 - type: CableMV - components: - - pos: 45.5,-21.5 - parent: 60 - type: Transform -- uid: 23751 - type: CableMV - components: - - pos: 46.5,-21.5 - parent: 60 - type: Transform -- uid: 23752 - type: CableMV - components: - - pos: 47.5,-21.5 - parent: 60 - type: Transform -- uid: 23753 - type: CableMV - components: - - pos: 48.5,-21.5 - parent: 60 - type: Transform -- uid: 23754 - type: CableMV - components: - - pos: 49.5,-21.5 - parent: 60 - type: Transform -- uid: 23755 - type: CableMV - components: - - pos: 50.5,-21.5 - parent: 60 - type: Transform -- uid: 23756 - type: CableMV - components: - - pos: 50.5,-20.5 - parent: 60 - type: Transform -- uid: 23757 - type: CableMV - components: - - pos: 50.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23758 - type: CableApcExtension - components: - - pos: 50.5,-20.5 - parent: 60 - type: Transform -- uid: 23759 - type: CableApcExtension - components: - - pos: 50.5,-19.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23760 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-11.5 - parent: 60 - type: Transform -- uid: 23761 - type: SignElectricalMed - components: - - pos: 11.5,56.5 - parent: 60 - type: Transform -- uid: 23762 - type: SignElectricalMed - components: - - pos: 11.5,44.5 - parent: 60 - type: Transform -- uid: 23763 - type: ComputerResearchAndDevelopment - components: - - pos: -31.5,15.5 - parent: 60 - type: Transform -- uid: 23764 - type: FirelockGlass - components: - - pos: -16.5,22.5 - parent: 60 - type: Transform -- uid: 23765 - type: FirelockGlass - components: - - pos: -15.5,22.5 - parent: 60 - type: Transform -- uid: 23766 - type: FirelockGlass - components: - - pos: -14.5,22.5 - parent: 60 - type: Transform -- uid: 23767 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -17.5,14.5 - parent: 60 - type: Transform -- uid: 23768 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -17.5,15.5 - parent: 60 - type: Transform - - devices: - - 23764 - - 23765 - - 23766 - - 21643 - - 17627 - - 17632 - type: DeviceList -- uid: 23769 - type: SpawnMobAlexander - components: - - pos: 24.5,-32.5 - parent: 60 - type: Transform -- uid: 23770 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-11.5 - parent: 60 - type: Transform -- uid: 23771 - type: CableApcExtension - components: - - pos: -1.5,-11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23772 - type: CableApcExtension - components: - - pos: -0.5,-11.5 - parent: 60 - type: Transform -- uid: 23773 - type: CableApcExtension - components: - - pos: 0.5,-11.5 - parent: 60 - type: Transform -- uid: 23774 - type: CableMV - components: - - pos: -1.5,-11.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23775 - type: CableMV - components: - - pos: -0.5,-11.5 - parent: 60 - type: Transform -- uid: 23776 - type: CableMV - components: - - pos: 0.5,-11.5 - parent: 60 - type: Transform -- uid: 23777 - type: CableMV - components: - - pos: 0.5,-10.5 - parent: 60 - type: Transform -- uid: 23778 - type: CableMV - components: - - pos: 0.5,-9.5 - parent: 60 - type: Transform -- uid: 23779 - type: CableMV - components: - - pos: 0.5,-8.5 - parent: 60 - type: Transform -- uid: 23780 - type: CableMV - components: - - pos: 0.5,-7.5 - parent: 60 - type: Transform -- uid: 23781 - type: CableMV - components: - - pos: 0.5,-6.5 - parent: 60 - type: Transform -- uid: 23782 - type: CableMV - components: - - pos: 0.5,-5.5 - parent: 60 - type: Transform -- uid: 23783 - type: CableMV - components: - - pos: 0.5,-4.5 - parent: 60 - type: Transform -- uid: 23784 - type: CableMV - components: - - pos: 0.5,-3.5 - parent: 60 - type: Transform -- uid: 23785 - type: CableMV - components: - - pos: 0.5,-2.5 - parent: 60 - type: Transform -- uid: 23786 - type: CableMV - components: - - pos: 0.5,-1.5 - parent: 60 - type: Transform -- uid: 23787 - type: WallSolid - components: - - pos: 28.5,-35.5 - parent: 60 - type: Transform -- uid: 23788 - type: APCBasic - components: - - pos: 27.5,-34.5 - parent: 60 - type: Transform -- uid: 23789 - type: CableMV - components: - - pos: 26.5,-38.5 - parent: 60 - type: Transform -- uid: 23790 - type: CableMV - components: - - pos: 26.5,-37.5 - parent: 60 - type: Transform -- uid: 23791 - type: CableMV - components: - - pos: 26.5,-36.5 - parent: 60 - type: Transform -- uid: 23792 - type: CableMV - components: - - pos: 26.5,-35.5 - parent: 60 - type: Transform -- uid: 23793 - type: CableMV - components: - - pos: 27.5,-35.5 - parent: 60 - type: Transform -- uid: 23794 - type: CableMV - components: - - pos: 27.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23795 - type: CableApcExtension - components: - - pos: 27.5,-36.5 - parent: 60 - type: Transform -- uid: 23796 - type: CableApcExtension - components: - - pos: 27.5,-35.5 - parent: 60 - type: Transform -- uid: 23797 - type: CableApcExtension - components: - - pos: 27.5,-34.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23798 - type: CableApcExtension - components: - - pos: 26.5,-32.5 - parent: 60 - type: Transform -- uid: 23799 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -74.5,17.5 - parent: 60 - type: Transform -- uid: 23800 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -75.5,17.5 - parent: 60 - type: Transform -- uid: 23801 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -76.5,17.5 - parent: 60 - type: Transform -- uid: 23802 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -77.5,17.5 - parent: 60 - type: Transform -- uid: 23803 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -78.5,17.5 - parent: 60 - type: Transform -- uid: 23804 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -79.5,17.5 - parent: 60 - type: Transform -- uid: 23805 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -80.5,17.5 - parent: 60 - type: Transform -- uid: 23806 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -81.5,17.5 - parent: 60 - type: Transform -- uid: 23807 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -82.5,17.5 - parent: 60 - type: Transform -- uid: 23808 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -83.5,17.5 - parent: 60 - type: Transform -- uid: 23809 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -84.5,17.5 - parent: 60 - type: Transform -- uid: 23810 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -85.5,17.5 - parent: 60 - type: Transform -- uid: 23811 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -86.5,17.5 - parent: 60 - type: Transform -- uid: 23812 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -87.5,17.5 - parent: 60 - type: Transform -- uid: 23813 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -88.5,17.5 - parent: 60 - type: Transform -- uid: 23814 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -89.5,17.5 - parent: 60 - type: Transform -- uid: 23815 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -90.5,17.5 - parent: 60 - type: Transform -- uid: 23816 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -91.5,17.5 - parent: 60 - type: Transform -- uid: 23817 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -92.5,17.5 - parent: 60 - type: Transform -- uid: 23818 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -93.5,17.5 - parent: 60 - type: Transform -- uid: 23819 - type: FirelockGlass - components: - - pos: 31.5,-16.5 - parent: 60 - type: Transform -- uid: 23820 - type: ShuttleWindow - components: - - pos: 11.5,-76.5 - parent: 60 - type: Transform -- uid: 23821 - type: ShuttleWindow - components: - - pos: 12.5,-76.5 - parent: 60 - type: Transform -- uid: 23822 - type: ShuttleWindow - components: - - pos: 12.5,-75.5 - parent: 60 - type: Transform -- uid: 23823 - type: ShuttleWindow - components: - - pos: 13.5,-75.5 - parent: 60 - type: Transform -- uid: 23824 - type: CableApcExtension - components: - - pos: -48.5,12.5 - parent: 60 - type: Transform -- uid: 23825 - type: ShuttleWindow - components: - - pos: 13.5,-74.5 - parent: 60 - type: Transform -- uid: 23826 - type: CableApcExtension - components: - - pos: -48.5,14.5 - parent: 60 - type: Transform -- uid: 23827 - type: ShuttleWindow - components: - - pos: 10.5,-75.5 - parent: 60 - type: Transform -- uid: 23828 - type: CableApcExtension - components: - - pos: -47.5,13.5 - parent: 60 - type: Transform -- uid: 23829 - type: CableApcExtension - components: - - pos: 18.5,20.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23830 - type: IntercomSecurity - components: - - pos: -17.5,-17.5 - parent: 60 - type: Transform -- uid: 23831 - type: Intercom - components: - - rot: 3.141592653589793 rad - pos: -37.5,22.5 - parent: 60 - type: Transform -- uid: 23832 - type: Intercom - components: - - pos: 19.5,-21.5 - parent: 60 - type: Transform -- uid: 23833 - type: IntercomSupply - components: - - rot: 1.5707963267948966 rad - pos: 35.5,6.5 - parent: 60 - type: Transform -- uid: 23834 - type: IntercomSupply - components: - - rot: 3.141592653589793 rad - pos: 48.5,11.5 - parent: 60 - type: Transform -- uid: 23835 - type: IntercomCommand - components: - - pos: 34.5,-11.5 - parent: 60 - type: Transform -- uid: 23836 - type: IntercomCommand - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 60 - type: Transform -- uid: 23837 - type: IntercomCommand - components: - - rot: -1.5707963267948966 rad - pos: -41.5,7.5 - parent: 60 - type: Transform -- uid: 23838 - type: IntercomCommand - components: - - pos: 9.5,22.5 - parent: 60 - type: Transform -- uid: 23839 - type: IntercomCommand - components: - - pos: -110.5,27.5 - parent: 60 - type: Transform -- uid: 23840 - type: Intercom - components: - - rot: 3.141592653589793 rad - pos: -43.5,-22.5 - parent: 60 - type: Transform -- uid: 23841 - type: ShuttleWindow - components: - - pos: 9.5,-75.5 - parent: 60 - type: Transform -- uid: 23842 - type: Intercom - components: - - pos: -9.5,-52.5 - parent: 60 - type: Transform -- uid: 23843 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-36.5 - parent: 60 - type: Transform -- uid: 23844 - type: IntercomService - components: - - pos: -10.5,-25.5 - parent: 60 - type: Transform -- uid: 23845 - type: ShuttleWindow - components: - - pos: 9.5,-74.5 - parent: 60 - type: Transform -- uid: 23846 - type: ShuttleWindow - components: - - pos: 7.5,-68.5 - parent: 60 - type: Transform -- uid: 23847 - type: IntercomEngineering - components: - - pos: -19.5,26.5 - parent: 60 - type: Transform -- uid: 23848 - type: ShuttleWindow - components: - - pos: 7.5,-67.5 - parent: 60 - type: Transform -- uid: 23849 - type: ShuttleWindow - components: - - pos: 7.5,-66.5 - parent: 60 - type: Transform -- uid: 23850 - type: ShuttleWindow - components: - - pos: 7.5,-65.5 - parent: 60 - type: Transform -- uid: 23851 - type: ShuttleWindow - components: - - pos: 15.5,-68.5 - parent: 60 - type: Transform -- uid: 23852 - type: ShuttleWindow - components: - - pos: 15.5,-67.5 - parent: 60 - type: Transform -- uid: 23853 - type: ShuttleWindow - components: - - pos: 15.5,-66.5 - parent: 60 - type: Transform -- uid: 23854 - type: ShuttleWindow - components: - - pos: 15.5,-65.5 - parent: 60 - type: Transform -- uid: 23855 - type: ShuttleWindow - components: - - pos: 10.5,-72.5 - parent: 60 - type: Transform -- uid: 23856 - type: ShuttleWindow - components: - - pos: 12.5,-72.5 - parent: 60 - type: Transform -- uid: 23857 - type: ShuttleWindow - components: - - pos: 9.5,-61.5 - parent: 60 - type: Transform -- uid: 23858 - type: ShuttleWindow - components: - - pos: 10.5,-61.5 - parent: 60 - type: Transform -- uid: 23859 - type: ShuttleWindow - components: - - pos: 12.5,-61.5 - parent: 60 - type: Transform -- uid: 23860 - type: ShuttleWindow - components: - - pos: 13.5,-61.5 - parent: 60 - type: Transform -- uid: 23861 - type: WallShuttle - components: - - pos: 9.5,-73.5 - parent: 60 - type: Transform -- uid: 23862 - type: WallShuttle - components: - - pos: 9.5,-72.5 - parent: 60 - type: Transform -- uid: 23863 - type: WallShuttle - components: - - pos: 8.5,-72.5 - parent: 60 - type: Transform -- uid: 23864 - type: WallShuttle - components: - - pos: 7.5,-72.5 - parent: 60 - type: Transform -- uid: 23865 - type: WallShuttle - components: - - pos: 13.5,-73.5 - parent: 60 - type: Transform -- uid: 23866 - type: WallShuttle - components: - - pos: 13.5,-72.5 - parent: 60 - type: Transform -- uid: 23867 - type: WallShuttle - components: - - pos: 14.5,-72.5 - parent: 60 - type: Transform -- uid: 23868 - type: WallShuttle - components: - - pos: 15.5,-72.5 - parent: 60 - type: Transform -- uid: 23869 - type: WallShuttle - components: - - pos: 15.5,-71.5 - parent: 60 - type: Transform -- uid: 23870 - type: WallShuttle - components: - - pos: 7.5,-71.5 - parent: 60 - type: Transform -- uid: 23871 - type: WallShuttle - components: - - pos: 7.5,-69.5 - parent: 60 - type: Transform -- uid: 23872 - type: WallShuttle - components: - - pos: 15.5,-69.5 - parent: 60 - type: Transform -- uid: 23873 - type: WallShuttle - components: - - pos: 15.5,-64.5 - parent: 60 - type: Transform -- uid: 23874 - type: WallShuttle - components: - - pos: 7.5,-64.5 - parent: 60 - type: Transform -- uid: 23875 - type: WallShuttle - components: - - pos: 7.5,-62.5 - parent: 60 - type: Transform -- uid: 23876 - type: WallShuttle - components: - - pos: 7.5,-61.5 - parent: 60 - type: Transform -- uid: 23877 - type: WallShuttle - components: - - pos: 8.5,-61.5 - parent: 60 - type: Transform -- uid: 23878 - type: WallShuttle - components: - - pos: 11.5,-61.5 - parent: 60 - type: Transform -- uid: 23879 - type: WallShuttle - components: - - pos: 15.5,-62.5 - parent: 60 - type: Transform -- uid: 23880 - type: WallShuttle - components: - - pos: 15.5,-61.5 - parent: 60 - type: Transform -- uid: 23881 - type: WallShuttle - components: - - pos: 14.5,-61.5 - parent: 60 - type: Transform -- uid: 23882 - type: WallShuttle - components: - - pos: 11.5,-60.5 - parent: 60 - type: Transform -- uid: 23883 - type: WallShuttle - components: - - pos: 11.5,-59.5 - parent: 60 - type: Transform -- uid: 23884 - type: WallShuttle - components: - - pos: 8.5,-60.5 - parent: 60 - type: Transform -- uid: 23885 - type: WallShuttle - components: - - pos: 7.5,-60.5 - parent: 60 - type: Transform -- uid: 23886 - type: WallShuttle - components: - - pos: 15.5,-60.5 - parent: 60 - type: Transform -- uid: 23887 - type: WallShuttle - components: - - pos: 14.5,-60.5 - parent: 60 - type: Transform -- uid: 23888 - type: GeneratorBasic - components: - - pos: 10.5,-60.5 - parent: 60 - type: Transform -- uid: 23889 - type: GeneratorBasic - components: - - pos: 12.5,-60.5 - parent: 60 - type: Transform -- uid: 23890 - type: CableHV - components: - - pos: 10.5,-60.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23891 - type: CableHV - components: - - pos: 10.5,-61.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23892 - type: CableHV - components: - - pos: 12.5,-60.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23893 - type: CableHV - components: - - pos: 12.5,-61.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23894 - type: CableHV - components: - - pos: 12.5,-62.5 - parent: 60 - type: Transform -- uid: 23895 - type: CableHV - components: - - pos: 11.5,-62.5 - parent: 60 - type: Transform -- uid: 23896 - type: CableHV - components: - - pos: 10.5,-62.5 - parent: 60 - type: Transform -- uid: 23897 - type: CableHV - components: - - pos: 13.5,-62.5 - parent: 60 - type: Transform -- uid: 23898 - type: CableHV - components: - - pos: 13.5,-63.5 - parent: 60 - type: Transform -- uid: 23899 - type: CableHV - components: - - pos: 13.5,-64.5 - parent: 60 - type: Transform -- uid: 23900 - type: CableHV - components: - - pos: 13.5,-65.5 - parent: 60 - type: Transform -- uid: 23901 - type: CableHV - components: - - pos: 13.5,-66.5 - parent: 60 - type: Transform -- uid: 23902 - type: CableHV - components: - - pos: 13.5,-67.5 - parent: 60 - type: Transform -- uid: 23903 - type: CableHV - components: - - pos: 13.5,-68.5 - parent: 60 - type: Transform -- uid: 23904 - type: CableHV - components: - - pos: 13.5,-69.5 - parent: 60 - type: Transform -- uid: 23905 - type: CableHV - components: - - pos: 13.5,-70.5 - parent: 60 - type: Transform -- uid: 23906 - type: CableHV - components: - - pos: 11.5,-70.5 - parent: 60 - type: Transform -- uid: 23907 - type: CableHV - components: - - pos: 12.5,-70.5 - parent: 60 - type: Transform -- uid: 23908 - type: CableHV - components: - - pos: 11.5,-71.5 - parent: 60 - type: Transform -- uid: 23909 - type: CableHV - components: - - pos: 11.5,-72.5 - parent: 60 - type: Transform -- uid: 23910 - type: CableHV - components: - - pos: 11.5,-73.5 - parent: 60 - type: Transform -- uid: 23911 - type: CableHV - components: - - pos: 10.5,-73.5 - parent: 60 - type: Transform -- uid: 23912 - type: CableHV - components: - - pos: 9.5,-73.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23913 - type: CableHV - components: - - pos: 9.5,-72.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23914 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-73.5 - parent: 60 - type: Transform -- uid: 23915 - type: SMESBasic - components: - - pos: 10.5,-73.5 - parent: 60 - type: Transform -- uid: 23916 - type: SubstationWallBasic - components: - - pos: 9.5,-72.5 - parent: 60 - type: Transform -- uid: 23917 - type: GeneratorWallmountAPU - components: - - pos: 9.5,-73.5 - parent: 60 - type: Transform -- uid: 23918 - type: WallShuttle - components: - - pos: 11.5,-64.5 - parent: 60 - type: Transform -- uid: 23919 - type: WallShuttle - components: - - pos: 11.5,-69.5 - parent: 60 - type: Transform -- uid: 23920 - type: APCHyperCapacity - components: - - pos: 11.5,-69.5 - parent: 60 - type: Transform -- uid: 23921 - type: CableMV - components: - - pos: 9.5,-72.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23922 - type: CableMV - components: - - pos: 9.5,-71.5 - parent: 60 - type: Transform -- uid: 23923 - type: CableMV - components: - - pos: 9.5,-70.5 - parent: 60 - type: Transform -- uid: 23924 - type: CableMV - components: - - pos: 10.5,-70.5 - parent: 60 - type: Transform -- uid: 23925 - type: CableMV - components: - - pos: 11.5,-70.5 - parent: 60 - type: Transform -- uid: 23926 - type: CableMV - components: - - pos: 11.5,-69.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23927 - type: CableApcExtension - components: - - pos: 11.5,-69.5 - parent: 60 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23928 - type: CableApcExtension - components: - - pos: 11.5,-70.5 - parent: 60 - type: Transform -- uid: 23929 - type: CableApcExtension - components: - - pos: 10.5,-70.5 - parent: 60 - type: Transform -- uid: 23930 - type: CableApcExtension - components: - - pos: 9.5,-70.5 - parent: 60 - type: Transform -- uid: 23931 - type: CableApcExtension - components: - - pos: 9.5,-69.5 - parent: 60 - type: Transform -- uid: 23932 - type: CableApcExtension - components: - - pos: 9.5,-68.5 - parent: 60 - type: Transform -- uid: 23933 - type: CableApcExtension - components: - - pos: 9.5,-67.5 - parent: 60 - type: Transform -- uid: 23934 - type: CableApcExtension - components: - - pos: 9.5,-66.5 - parent: 60 - type: Transform -- uid: 23935 - type: CableApcExtension - components: - - pos: 9.5,-65.5 - parent: 60 - type: Transform -- uid: 23936 - type: CableApcExtension - components: - - pos: 9.5,-64.5 - parent: 60 - type: Transform -- uid: 23937 - type: CableApcExtension - components: - - pos: 9.5,-63.5 - parent: 60 - type: Transform -- uid: 23938 - type: CableApcExtension - components: - - pos: 10.5,-63.5 - parent: 60 - type: Transform -- uid: 23939 - type: CableApcExtension - components: - - pos: 11.5,-63.5 - parent: 60 - type: Transform -- uid: 23940 - type: CableApcExtension - components: - - pos: 12.5,-63.5 - parent: 60 - type: Transform -- uid: 23941 - type: CableApcExtension - components: - - pos: 13.5,-63.5 - parent: 60 - type: Transform -- uid: 23942 - type: CableApcExtension - components: - - pos: 13.5,-64.5 - parent: 60 - type: Transform -- uid: 23943 - type: CableApcExtension - components: - - pos: 13.5,-65.5 - parent: 60 - type: Transform -- uid: 23944 - type: CableApcExtension - components: - - pos: 13.5,-66.5 - parent: 60 - type: Transform -- uid: 23945 - type: CableApcExtension - components: - - pos: 13.5,-67.5 - parent: 60 - type: Transform -- uid: 23946 - type: CableApcExtension - components: - - pos: 13.5,-68.5 - parent: 60 - type: Transform -- uid: 23947 - type: CableApcExtension - components: - - pos: 13.5,-69.5 - parent: 60 - type: Transform -- uid: 23948 - type: CableApcExtension - components: - - pos: 13.5,-70.5 - parent: 60 - type: Transform -- uid: 23949 - type: CableApcExtension - components: - - pos: 12.5,-70.5 - parent: 60 - type: Transform -- uid: 23950 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-71.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23951 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 9.5,-71.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23952 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-63.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23953 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-71.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23954 - type: GasPipeStraight - components: - - pos: 9.5,-70.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23955 - type: GasPipeStraight - components: - - pos: 9.5,-69.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23956 - type: GasPipeStraight - components: - - pos: 9.5,-68.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23957 - type: GasPipeStraight - components: - - pos: 9.5,-67.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23958 - type: GasPipeStraight - components: - - pos: 9.5,-66.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23959 - type: GasPipeStraight - components: - - pos: 9.5,-65.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23960 - type: GasPipeStraight - components: - - pos: 9.5,-64.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23961 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-63.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23962 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 11.5,-72.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23963 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-73.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23964 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 11.5,-73.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23965 - type: GasVentPump - components: - - pos: 11.5,-70.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23966 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-63.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23967 - type: SpawnPointLatejoin - components: - - pos: 9.5,-68.5 - parent: 60 - type: Transform -- uid: 23968 - type: SpawnPointLatejoin - components: - - pos: 9.5,-67.5 - parent: 60 - type: Transform -- uid: 23969 - type: AtmosDeviceFanTiny - components: - - pos: 15.5,-63.5 - parent: 60 - type: Transform -- uid: 23970 - type: AtmosDeviceFanTiny - components: - - pos: 15.5,-70.5 - parent: 60 - type: Transform -- uid: 23971 - type: Thruster - components: - - rot: 3.141592653589793 rad - pos: 8.5,-73.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23972 - type: Thruster - components: - - rot: 3.141592653589793 rad - pos: 14.5,-73.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23973 - type: Thruster - components: - - pos: 12.5,-59.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23974 - type: Thruster - components: - - pos: 13.5,-59.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23975 - type: Thruster - components: - - pos: 10.5,-59.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23976 - type: Thruster - components: - - pos: 9.5,-59.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23977 - type: Thruster - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-59.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23978 - type: Thruster - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-59.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23979 - type: Gyroscope - components: - - pos: 9.5,-60.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 23980 - type: Grille - components: - - pos: 10.5,-61.5 - parent: 60 - type: Transform -- uid: 23981 - type: Grille - components: - - pos: 9.5,-61.5 - parent: 60 - type: Transform -- uid: 23982 - type: Grille - components: - - pos: 13.5,-61.5 - parent: 60 - type: Transform -- uid: 23983 - type: Grille - components: - - pos: 12.5,-61.5 - parent: 60 - type: Transform -- uid: 23984 - type: Grille - components: - - pos: 15.5,-65.5 - parent: 60 - type: Transform -- uid: 23985 - type: Grille - components: - - pos: 15.5,-66.5 - parent: 60 - type: Transform -- uid: 23986 - type: Grille - components: - - pos: 15.5,-67.5 - parent: 60 - type: Transform -- uid: 23987 - type: Grille - components: - - pos: 15.5,-68.5 - parent: 60 - type: Transform -- uid: 23988 - type: Grille - components: - - pos: 7.5,-68.5 - parent: 60 - type: Transform -- uid: 23989 - type: Grille - components: - - pos: 7.5,-67.5 - parent: 60 - type: Transform -- uid: 23990 - type: Grille - components: - - pos: 7.5,-66.5 - parent: 60 - type: Transform -- uid: 23991 - type: Grille - components: - - pos: 7.5,-65.5 - parent: 60 - type: Transform -- uid: 23992 - type: Grille - components: - - pos: 9.5,-74.5 - parent: 60 - type: Transform -- uid: 23993 - type: Grille - components: - - pos: 9.5,-75.5 - parent: 60 - type: Transform -- uid: 23994 - type: Grille - components: - - pos: 10.5,-75.5 - parent: 60 - type: Transform -- uid: 23995 - type: Grille - components: - - pos: 10.5,-76.5 - parent: 60 - type: Transform -- uid: 23996 - type: Grille - components: - - pos: 11.5,-76.5 - parent: 60 - type: Transform -- uid: 23997 - type: Grille - components: - - pos: 12.5,-76.5 - parent: 60 - type: Transform -- uid: 23998 - type: Grille - components: - - pos: 12.5,-75.5 - parent: 60 - type: Transform -- uid: 23999 - type: Grille - components: - - pos: 13.5,-75.5 - parent: 60 - type: Transform -- uid: 24000 - type: Grille - components: - - pos: 13.5,-74.5 - parent: 60 - type: Transform -- uid: 24001 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-70.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 24002 - type: AirlockGlassShuttle - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-63.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 24003 - type: AirlockGlassShuttle - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-70.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 24004 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-63.5 - parent: 60 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 24005 - type: AirCanister - components: - - pos: 12.5,-73.5 - parent: 60 - type: Transform -- uid: 24006 - type: ChairPilotSeat - components: - - pos: 11.5,-74.5 - parent: 60 - type: Transform -- uid: 24007 - type: Grille - components: - - pos: 12.5,-72.5 - parent: 60 - type: Transform -- uid: 24008 - type: Grille - components: - - pos: 10.5,-72.5 - parent: 60 - type: Transform -- uid: 24009 - type: TableReinforced - components: - - pos: 10.5,-74.5 - parent: 60 - type: Transform -- uid: 24010 - type: TableReinforced - components: - - pos: 12.5,-74.5 - parent: 60 - type: Transform -- uid: 24011 - type: ComputerFrame - components: - - rot: 3.141592653589793 rad - pos: 11.5,-75.5 - parent: 60 - type: Transform -- uid: 24012 - type: TableReinforced - components: - - pos: 8.5,-71.5 - parent: 60 - type: Transform -- uid: 24013 - type: TableReinforced - components: - - pos: 10.5,-62.5 - parent: 60 - type: Transform -- uid: 24014 - type: TableReinforced - components: - - pos: 11.5,-62.5 - parent: 60 - type: Transform -- uid: 24015 - type: TableReinforced - components: - - pos: 12.5,-62.5 - parent: 60 - type: Transform -- uid: 24016 - type: TableReinforced - components: - - pos: 10.5,-69.5 - parent: 60 - type: Transform -- uid: 24017 - type: TableReinforced - components: - - pos: 12.5,-69.5 - parent: 60 - type: Transform -- uid: 24018 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-68.5 - parent: 60 - type: Transform -- uid: 24019 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-67.5 - parent: 60 - type: Transform -- uid: 24020 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-66.5 - parent: 60 - type: Transform -- uid: 24021 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-65.5 - parent: 60 - type: Transform -- uid: 24022 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-68.5 - parent: 60 - type: Transform -- uid: 24023 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-67.5 - parent: 60 - type: Transform -- uid: 24024 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-66.5 - parent: 60 - type: Transform -- uid: 24025 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-65.5 - parent: 60 - type: Transform -- uid: 24026 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-68.5 - parent: 60 - type: Transform -- uid: 24027 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-67.5 - parent: 60 - type: Transform -- uid: 24028 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-66.5 - parent: 60 - type: Transform -- uid: 24029 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-65.5 - parent: 60 - type: Transform -- uid: 24030 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-68.5 - parent: 60 - type: Transform -- uid: 24031 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-67.5 - parent: 60 - type: Transform -- uid: 24032 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-66.5 - parent: 60 - type: Transform -- uid: 24033 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-65.5 - parent: 60 - type: Transform -- uid: 24034 - type: Rack - components: - - pos: 8.5,-62.5 - parent: 60 - type: Transform -- uid: 24035 - type: Rack - components: - - pos: 14.5,-62.5 - parent: 60 - type: Transform -- uid: 24036 - type: WardrobeMixed - components: - - pos: 9.5,-62.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24037 - type: ClosetEmergencyFilledRandom - components: - - pos: 13.5,-62.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24038 - type: ClosetWallEmergencyFilledRandom - components: - - pos: 14.5,-61.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24039 - type: ClosetWallFireFilledRandom - components: - - pos: 8.5,-61.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24040 - type: ExtinguisherCabinetFilled - components: - - pos: 11.5,-61.5 - parent: 60 - type: Transform -- uid: 24041 - type: ChairOfficeDark - components: - - pos: -44.5,-9.5 - parent: 60 - type: Transform -- uid: 24042 - type: Table - components: - - pos: -41.5,-6.5 - parent: 60 - type: Transform -- uid: 24043 - type: PottedPlantRandom - components: - - pos: 8.5,-69.5 - parent: 60 - type: Transform -- uid: 24044 - type: PottedPlantRandom - components: - - pos: 8.5,-64.5 - parent: 60 - type: Transform -- uid: 24045 - type: PottedPlantRandom - components: - - pos: 14.5,-64.5 - parent: 60 - type: Transform -- uid: 24046 - type: PottedPlantRandom - components: - - pos: 14.5,-69.5 - parent: 60 - type: Transform -- uid: 24047 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-68.5 - parent: 60 - type: Transform -- uid: 24048 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-67.5 - parent: 60 - type: Transform -- uid: 24049 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-66.5 - parent: 60 - type: Transform -- uid: 24050 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-65.5 - parent: 60 - type: Transform -- uid: 24051 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-65.5 - parent: 60 - type: Transform -- uid: 24052 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-66.5 - parent: 60 - type: Transform -- uid: 24053 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-67.5 - parent: 60 - type: Transform -- uid: 24054 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-68.5 - parent: 60 - type: Transform -- uid: 24055 - type: AirlockCommandGlassLocked - components: - - pos: 11.5,-72.5 - parent: 60 - type: Transform -- uid: 24056 - type: TableReinforced - components: - - pos: 14.5,-71.5 - parent: 60 - type: Transform -- uid: 24059 - type: PowerCellRecharger - components: - - pos: 12.5,-62.5 - parent: 60 - type: Transform -- uid: 24060 - type: ToolboxEmergencyFilled - components: - - pos: 10.580587,-62.46449 - parent: 60 - type: Transform -- uid: 24061 - type: MedkitFilled - components: - - pos: 11.533712,-62.43324 - parent: 60 - type: Transform -- uid: 24062 - type: CrowbarRed - components: - - pos: 12.4967985,-62.46449 - parent: 60 - type: Transform -- uid: 24063 - type: YellowOxygenTankFilled - components: - - pos: 8.5436735,-62.480114 - parent: 60 - type: Transform -- uid: 24064 - type: ClothingMaskBreath - components: - - pos: 8.437429,-62.448864 - parent: 60 - type: Transform -- uid: 24065 - type: MaintenanceFluffSpawner - components: - - pos: 14.5,-62.5 - parent: 60 - type: Transform -- uid: 24066 - type: MaintenanceFluffSpawner - components: - - pos: 12.5,-69.5 - parent: 60 - type: Transform -- uid: 24067 - type: ToySpawner - components: - - pos: 10.5,-69.5 - parent: 60 - type: Transform -- uid: 24068 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-73.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24069 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-71.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24070 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-69.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24071 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-62.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24072 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-64.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24073 - type: Intercom - components: - - rot: 3.141592653589793 rad - pos: 11.5,-64.5 - parent: 60 - type: Transform -- uid: 24074 - type: SpawnPointLatejoin - components: - - pos: 13.5,-68.5 - parent: 60 - type: Transform -- uid: 24075 - type: SpawnPointLatejoin - components: - - pos: 13.5,-67.5 - parent: 60 - type: Transform -- uid: 24076 - type: SpawnPointLatejoin - components: - - pos: 13.5,-66.5 - parent: 60 - type: Transform -- uid: 24077 - type: SpawnPointLatejoin - components: - - pos: 13.5,-65.5 - parent: 60 - type: Transform -- uid: 24078 - type: OperatingTable - components: - - pos: 37.5,-10.5 - parent: 60 - type: Transform -- uid: 24079 - type: ExtinguisherCabinetFilled - components: - - pos: -40.5,22.5 - parent: 60 - type: Transform -- uid: 24084 - type: ReinforcedWindow - components: - - pos: -20.5,-4.5 - parent: 60 - type: Transform -- uid: 24085 - type: KitchenReagentGrinder - components: - - pos: -45.5,-3.5 - parent: 60 - type: Transform -- uid: 24086 - type: ClothingNeckLesbianPin - components: - - pos: -10.308835,13.564301 - parent: 60 - type: Transform -- uid: 24088 - type: ClothingNeckIntersexPin - components: - - pos: -12.770909,19.336336 - parent: 60 - type: Transform -- uid: 24089 - type: ClothingNeckAromanticPin - components: - - pos: 83.621025,-13.51627 - parent: 60 - type: Transform -- uid: 24090 - type: ClothingNeckBisexualPin - components: - - pos: -20.494595,5.7531924 - parent: 60 - type: Transform -- uid: 24091 - type: GasAnalyzer - components: - - pos: 47.410866,-14.33883 - parent: 60 - type: Transform -- uid: 24092 - type: MachineFrame - components: - - pos: 4.5,-44.5 - parent: 60 - type: Transform -- uid: 24093 - type: PortableScrubber - components: - - pos: 4.5,-46.5 - parent: 60 - type: Transform -- uid: 24094 - type: HandheldCrewMonitor - components: - - pos: 46.58981,-17.349377 - parent: 60 - type: Transform -- uid: 24095 - type: ClosetEmergencyFilledRandom - components: - - pos: 12.5,-64.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24096 - type: ClosetEmergencyFilledRandom - components: - - pos: 10.5,-64.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24097 - type: GeigerCounter - components: - - pos: 5.634184,34.46494 - parent: 60 - type: Transform -- uid: 24099 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,-71.5 - parent: 60 - type: Transform -- uid: 24100 - type: SpaceVillainArcadeFilled - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-71.5 - parent: 60 - type: Transform -- uid: 24101 - type: Table - components: - - pos: -28.5,-20.5 - parent: 60 - type: Transform -- uid: 24102 - type: PottedPlant28 - components: - - pos: -30.486118,-20.71535 - parent: 60 - type: Transform -- uid: 24103 - type: Table - components: - - pos: 5.5,34.5 - parent: 60 - type: Transform -- uid: 24104 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 23.5,-30.5 - parent: 60 - type: Transform -- uid: 24105 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 23.5,-29.5 - parent: 60 - type: Transform -- uid: 24106 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 23.5,-28.5 - parent: 60 - type: Transform -- uid: 24107 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 23.5,-27.5 - parent: 60 - type: Transform -- uid: 24108 - type: TwoWayLever - components: - - pos: -12.5,-42.5 - parent: 60 - type: Transform - - outputs: - Left: - - port: Forward - uid: 4073 - Right: - - port: Reverse - uid: 4073 - Middle: - - port: Off - uid: 4073 - type: SignalTransmitter -- uid: 24109 - type: SpeedLoaderMagnum - components: - - pos: -28.41734,-0.67305577 - parent: 60 - type: Transform -- uid: 24110 - type: WeaponRifleAk - components: - - pos: -24.45179,2.5628066 - parent: 60 - type: Transform -- uid: 24111 - type: SpeedLoaderMagnum - components: - - pos: -28.79234,-0.65743077 - parent: 60 - type: Transform -- uid: 24112 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -25.5,2.5 - parent: 60 - type: Transform -- uid: 24113 - type: ClothingOuterArmorReflective - components: - - pos: -24.597569,1.293155 - parent: 60 - type: Transform -- uid: 24114 - type: ClothingOuterArmorReflective - components: - - pos: -24.597569,1.293155 - parent: 60 - type: Transform -- uid: 24115 - type: WindoorArmoryLocked - components: - - pos: -24.5,2.5 - parent: 60 - type: Transform -- uid: 24116 - type: filingCabinetDrawerRandom - components: - - pos: 3.5,-0.5 - parent: 60 - type: Transform -- uid: 24117 - type: BikeHorn - components: - - pos: 22.082472,-11.511041 - parent: 60 - type: Transform -- uid: 24118 - type: FoodFrozenSnowconeMime - components: - - pos: 27.702457,-11.233776 - parent: 60 - type: Transform -- uid: 24119 - type: TableWood - components: - - pos: 26.5,-20.5 - parent: 60 - type: Transform -- uid: 24120 - type: TableWood - components: - - pos: 27.5,-20.5 - parent: 60 - type: Transform -- uid: 24121 - type: PosterContrabandSpaceUp - components: - - pos: 21.5,-10.5 - parent: 60 - type: Transform -- uid: 24122 - type: VehicleJanicartDestroyed - components: - - pos: -19.5,-44.5 - parent: 60 - type: Transform - - bodyType: Static - type: Physics -- uid: 24123 - type: SpawnPointResearchAssistant - components: - - pos: -54.5,8.5 - parent: 60 - type: Transform -- uid: 24124 - type: SpawnPointResearchAssistant - components: - - pos: -54.5,10.5 - parent: 60 - type: Transform -- uid: 24125 - type: CableMV - components: - - pos: 45.5,1.5 - parent: 60 - type: Transform -- uid: 24126 - type: CableMV - components: - - pos: 45.5,2.5 - parent: 60 - type: Transform -- uid: 24127 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -6.5,-18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24128 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-17.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24129 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24130 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24131 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24132 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24133 - type: WallReinforced - components: - - pos: -5.5,-16.5 - parent: 60 - type: Transform -- uid: 24134 - type: APCHyperCapacity - components: - - pos: -5.5,-16.5 - parent: 60 - type: Transform -- uid: 24135 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-16.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24136 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-15.5 - parent: 60 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24137 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24138 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-18.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24139 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24140 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-15.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24141 - type: ClothingOuterHardsuitEVAPrisoner - components: - - pos: -5.4120154,-17.402714 - parent: 60 - type: Transform -- uid: 24142 - type: MedkitOxygenFilled - components: - - pos: -5.4432654,-18.418339 - parent: 60 - type: Transform -- uid: 24143 - type: PottedPlant28 - components: - - pos: -5.5057654,-15.736094 - parent: 60 - type: Transform - - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24144 - type: ContainerContainer -- uid: 24144 - type: ScalpelShiv - components: - - flags: InContainer - type: MetaData - - parent: 24143 - type: Transform - - nextAttack: 3922.3710184 - type: MeleeWeapon - - canCollide: False - type: Physics -- uid: 24145 - type: Catwalk - components: - - pos: -13.5,-31.5 - parent: 60 - type: Transform -- uid: 24146 - type: Catwalk - components: - - pos: -4.5,-70.5 - parent: 60 - type: Transform -- uid: 24147 - type: FlashlightLantern - components: - - pos: 8.429562,-71.29388 - parent: 60 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 24148 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -24.5,-6.5 - parent: 60 - type: Transform - - devices: - - 5562 - - 5565 - - 5563 - - 8466 - - 21733 - type: DeviceList -- uid: 24149 - type: WindoorSecurityLocked - components: - - pos: -18.5,-5.5 - parent: 60 - type: Transform -- uid: 24150 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-20.5 - parent: 60 - type: Transform -- uid: 24151 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-20.5 - parent: 60 - type: Transform -- uid: 24152 - type: SignRedOne - components: - - pos: -19.5,-8.5 - parent: 60 - type: Transform -- uid: 24153 - type: SignRedTwo - components: - - pos: -19.5,-11.5 - parent: 60 - type: Transform -- uid: 24154 - type: SignRedThree - components: - - pos: -33.5,-5.5 - parent: 60 - type: Transform -- uid: 24155 - type: SignRedFour - components: - - pos: -33.5,-8.5 - parent: 60 - type: Transform -- uid: 24156 - type: SignRedFive - components: - - pos: -33.5,-11.5 - parent: 60 - type: Transform -- uid: 24157 - type: LockerEvidence - components: - - pos: -23.5,-12.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24158 - type: FloorDrain - components: - - pos: -41.5,-1.5 - parent: 60 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 24159 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-1.5 - parent: 60 - type: Transform -- uid: 24160 - type: ClothingMaskSterile - components: - - pos: -41.75516,14.452198 - parent: 60 - type: Transform -- uid: 24161 - type: Rack - components: - - pos: -30.5,11.5 - parent: 60 - type: Transform -- uid: 24162 - type: Rack - components: - - pos: -34.5,11.5 - parent: 60 - type: Transform -- uid: 24163 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -40.5,13.5 - parent: 60 - type: Transform -- uid: 24164 - type: DisposalTrunk - components: - - pos: -40.5,14.5 - parent: 60 - type: Transform -- uid: 24165 - type: DisposalUnit - components: - - pos: -40.5,14.5 - parent: 60 - type: Transform -- uid: 24166 - type: Table - components: - - pos: -36.5,11.5 - parent: 60 - type: Transform -- uid: 24167 - type: Table - components: - - pos: -36.5,12.5 - parent: 60 - type: Transform -- uid: 24168 - type: PosterLegitSafetyInternals - components: - - pos: -42.5,-2.5 - parent: 60 - type: Transform -- uid: 24169 - type: PosterLegitSafetyEyeProtection - components: - - pos: -41.5,-2.5 - parent: 60 - type: Transform -- uid: 24170 - type: SpawnMobBandito - components: - - pos: -43.5,-5.5 - parent: 60 - type: Transform -- uid: 24171 - type: Carpet - components: - - pos: -26.5,-28.5 - parent: 60 - type: Transform -- uid: 24172 - type: Carpet - components: - - pos: -25.5,-29.5 - parent: 60 - type: Transform -- uid: 24173 - type: Carpet - components: - - pos: -25.5,-28.5 - parent: 60 - type: Transform -- uid: 24174 - type: Morgue - components: - - rot: 3.141592653589793 rad - pos: -19.5,-5.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24175 - type: SpawnVehicleSecway - components: - - pos: -33.5,-20.5 - parent: 60 - type: Transform -- uid: 24176 - type: VehicleKeySecway - components: - - pos: -33.527782,-15.554149 - parent: 60 - type: Transform -- uid: 24177 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-17.5 - parent: 60 - type: Transform -- uid: 24178 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-19.5 - parent: 60 - type: Transform -- uid: 24179 - type: WindowReinforcedDirectional - components: - - pos: -5.5,-19.5 - parent: 60 - type: Transform -- uid: 24181 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-17.5 - parent: 60 - type: Transform -- uid: 24182 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-19.5 - parent: 60 - type: Transform -- uid: 24183 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24184 - type: PosterLegitSpaceCops - components: - - pos: -33.5,-1.5 - parent: 60 - type: Transform -- uid: 24185 - type: Grille - components: - - pos: -51.5,-19.5 - parent: 60 - type: Transform -- uid: 24186 - type: GeneratorBasic - components: - - pos: -7.5,29.5 - parent: 60 - type: Transform -- uid: 24187 - type: HatBandGold - components: - - pos: -56.55667,-23.491457 - parent: 60 - type: Transform -- uid: 24188 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 12.5,36.5 - parent: 60 - type: Transform -- uid: 24189 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 12.5,39.5 - parent: 60 - type: Transform -- uid: 24190 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 12.5,40.5 - parent: 60 - type: Transform -- uid: 24191 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 12.5,41.5 - parent: 60 - type: Transform -- uid: 24192 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 12.5,47.5 - parent: 60 - type: Transform -- uid: 24193 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 12.5,48.5 - parent: 60 - type: Transform -- uid: 24194 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 12.5,49.5 - parent: 60 - type: Transform -- uid: 24195 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 12.5,56.5 - parent: 60 - type: Transform -- uid: 24196 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 12.5,57.5 - parent: 60 - type: Transform -- uid: 24197 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 11.5,58.5 - parent: 60 - type: Transform -- uid: 24198 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 10.5,58.5 - parent: 60 - type: Transform -- uid: 24199 - type: RailingCorner - components: - - rot: 1.5707963267948966 rad - pos: 12.5,58.5 - parent: 60 - type: Transform -- uid: 24200 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 3.5,58.5 - parent: 60 - type: Transform -- uid: 24201 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 2.5,58.5 - parent: 60 - type: Transform -- uid: 24202 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 1.5,58.5 - parent: 60 - type: Transform -- uid: 24203 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 0.5,58.5 - parent: 60 - type: Transform -- uid: 24204 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -0.5,58.5 - parent: 60 - type: Transform -- uid: 24205 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -1.5,58.5 - parent: 60 - type: Transform -- uid: 24206 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -2.5,58.5 - parent: 60 - type: Transform -- uid: 24207 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -3.5,58.5 - parent: 60 - type: Transform -- uid: 24208 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -4.5,58.5 - parent: 60 - type: Transform -- uid: 24209 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -5.5,58.5 - parent: 60 - type: Transform -- uid: 24210 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -6.5,58.5 - parent: 60 - type: Transform -- uid: 24211 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -10.5,58.5 - parent: 60 - type: Transform -- uid: 24212 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -11.5,57.5 - parent: 60 - type: Transform -- uid: 24213 - type: RailingCorner - components: - - rot: 3.141592653589793 rad - pos: -11.5,58.5 - parent: 60 - type: Transform -- uid: 24214 - type: SignAtmosMinsky - components: - - pos: -27.5,38.5 - parent: 60 - type: Transform -- uid: 24215 - type: SignAtmosMinsky - components: - - pos: -23.5,29.5 - parent: 60 - type: Transform -- uid: 24216 - type: MaterialWoodPlank - components: - - pos: 51.428207,-36.33008 - parent: 60 - type: Transform -- uid: 24217 - type: ClothingHeadsetMining - components: - - pos: 56.480446,-3.47641 - parent: 60 - type: Transform -- uid: 24218 - type: ClothingHeadHatUshanka - components: - - pos: -39.62937,16.44374 - parent: 60 - type: Transform -- uid: 24219 - type: WardrobeCargoFilled - components: - - pos: 49.5,14.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24220 - type: ClothingMaskBreathMedical - components: - - pos: 52.5063,-29.369915 - parent: 60 - type: Transform -- uid: 24221 - type: TableWood - components: - - pos: -26.5,19.5 - parent: 60 - type: Transform -- uid: 24222 - type: TableWood - components: - - pos: -24.5,19.5 - parent: 60 - type: Transform -- uid: 24223 - type: lantern - components: - - pos: -24.507496,19.805492 - parent: 60 - type: Transform -- uid: 24224 - type: DrinkWineBottleFull - components: - - pos: -22.518103,19.867992 - parent: 60 - type: Transform -- uid: 24225 - type: DrinkShotGlass - components: - - pos: -22.455603,19.399242 - parent: 60 - type: Transform -- uid: 24226 - type: CarpetChapel - components: - - pos: -20.5,15.5 - parent: 60 - type: Transform -- uid: 24227 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -20.5,16.5 - parent: 60 - type: Transform -- uid: 24228 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -19.5,16.5 - parent: 60 - type: Transform -- uid: 24229 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -19.5,15.5 - parent: 60 - type: Transform -- uid: 24232 - type: CrayonBox - components: - - pos: -39.042866,19.84919 - parent: 60 - type: Transform -- uid: 24233 - type: Grille - components: - - pos: -40.5,20.5 - parent: 60 - type: Transform -- uid: 24234 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -43.5,19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24235 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,20.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24236 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 37.5,7.5 - parent: 60 - type: Transform -- uid: 24237 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 37.5,6.5 - parent: 60 - type: Transform -- uid: 24238 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 37.5,5.5 - parent: 60 - type: Transform -- uid: 24239 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 36.5,4.5 - parent: 60 - type: Transform -- uid: 24240 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 37.5,4.5 - parent: 60 - type: Transform -- uid: 24241 - type: DisposalUnit - components: - - pos: 36.5,4.5 - parent: 60 - type: Transform -- uid: 24242 - type: SignMorgue - components: - - pos: 35.5,-5.5 - parent: 60 - type: Transform -- uid: 24243 - type: FoodCakeSuppermatterSlice - components: - - pos: -16.5,42.5 - parent: 60 - type: Transform -- uid: 24244 - type: Table - components: - - pos: -40.5,-15.5 - parent: 60 - type: Transform -- uid: 24245 - type: DrinkWaterBottleFull - components: - - pos: -40.606373,-15.22675 - parent: 60 - type: Transform -- uid: 24246 - type: DrinkGlass - components: - - pos: -40.371998,-15.398625 - parent: 60 - type: Transform -- uid: 24250 - type: SignElectricalMed - components: - - pos: 32.5,-51.5 - parent: 60 - type: Transform -- uid: 24251 - type: Catwalk - components: - - pos: 5.5,-70.5 - parent: 60 - type: Transform -- uid: 24252 - type: Catwalk - components: - - pos: 5.5,-63.5 - parent: 60 - type: Transform -- uid: 24253 - type: Catwalk - components: - - pos: -4.5,-63.5 - parent: 60 - type: Transform -- uid: 24254 - type: Catwalk - components: - - pos: 0.5,-79.5 - parent: 60 - type: Transform -- uid: 24255 - type: Catwalk - components: - - pos: -21.5,-54.5 - parent: 60 - type: Transform -- uid: 24256 - type: Catwalk - components: - - pos: -22.5,-54.5 - parent: 60 - type: Transform -- uid: 24258 - type: ClothingHeadHatCone - components: - - pos: 12.042968,35.99082 - parent: 60 - type: Transform -- uid: 24259 - type: ClothingHeadHatCone - components: - - pos: 14.667968,39.068947 - parent: 60 - type: Transform -- uid: 24260 - type: ClothingHeadHatCone - components: - - pos: -43.570118,25.670937 - parent: 60 - type: Transform -- uid: 24261 - type: SurveillanceCameraCommand - components: - - pos: -94.5,16.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Sat Entrance - type: SurveillanceCamera -- uid: 24262 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -70.5,18.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Sat Tunnel - type: SurveillanceCamera -- uid: 24263 - type: SurveillanceCameraScience - components: - - pos: -42.5,-1.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Sci Entrance Room - type: SurveillanceCamera -- uid: 24264 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: -46.5,0.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Sci RND Hall - type: SurveillanceCamera -- uid: 24265 - type: SurveillanceCameraScience - components: - - rot: -1.5707963267948966 rad - pos: -38.5,1.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Sci Hall - type: SurveillanceCamera -- uid: 24266 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: -30.5,9.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics Hall - type: SurveillanceCamera -- uid: 24267 - type: SurveillanceCameraScience - components: - - rot: 1.5707963267948966 rad - pos: -30.5,12.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics Bay - type: SurveillanceCamera -- uid: 24268 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -32.5,19.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm Room 1 - type: SurveillanceCamera -- uid: 24269 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -36.5,19.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm Room 2 - type: SurveillanceCamera -- uid: 24270 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -46.5,25.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm Room 3 - type: SurveillanceCamera -- uid: 24271 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -46.5,21.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm Room 4 - type: SurveillanceCamera -- uid: 24272 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -43.5,22.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm Hall West - type: SurveillanceCamera -- uid: 24273 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -18.5,25.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Main Hall - type: SurveillanceCamera -- uid: 24274 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -16.5,17.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Library Main Hall - type: SurveillanceCamera -- uid: 24275 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-6.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Room Exterior - type: SurveillanceCamera -- uid: 24276 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-4.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge Exterior Access - type: SurveillanceCamera -- uid: 24278 - type: SurveillanceCameraSupply - components: - - pos: 49.5,16.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Break Room - type: SurveillanceCamera -- uid: 24279 - type: SurveillanceCameraSupply - components: - - pos: 38.5,-1.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salv Locker Room - type: SurveillanceCamera -- uid: 24280 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: 41.5,-22.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical Lobby - type: SurveillanceCamera -- uid: 24281 - type: SurveillanceCameraMedical - components: - - pos: 41.5,-14.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery - type: SurveillanceCamera -- uid: 24282 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: 34.5,-12.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: CMO's Office - type: SurveillanceCamera -- uid: 24283 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 24.5,-15.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Theatre - type: SurveillanceCamera -- uid: 24284 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 24.5,-11.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Theatre Backroom - type: SurveillanceCamera -- uid: 24285 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 22.5,-4.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bungle Zone - type: SurveillanceCamera -- uid: 24286 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Bathroom - type: SurveillanceCamera -- uid: 24287 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-18.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Locker Room - type: SurveillanceCamera -- uid: 24288 - type: SurveillanceCameraSecurity - components: - - pos: -24.5,-16.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security South - type: SurveillanceCamera -- uid: 24289 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -31.5,5.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Maintenance Room - type: SurveillanceCamera -- uid: 24290 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-20.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Court Main Hall - type: SurveillanceCamera -- uid: 24291 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-19.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24292 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 2.5,11.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engi Main Hall - type: SurveillanceCamera -- uid: 24293 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 9.5,12.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Tool Room - type: SurveillanceCamera -- uid: 24294 - type: SurveillanceCameraSecurity - components: - - pos: -7.5,-18.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig Locker Room - type: SurveillanceCamera -- uid: 24295 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -1.5,-60.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals 1 - type: SurveillanceCamera -- uid: 24296 - type: SurveillanceCameraGeneral - components: - - pos: 2.5,-73.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals 2 - type: SurveillanceCamera -- uid: 24297 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 2.5,-75.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: South Arrivals Dock - type: SurveillanceCamera -- uid: 24298 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-69.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: East Arrivals Shuttle - type: SurveillanceCamera -- uid: 24300 - type: SurveillanceCameraGeneral - components: - - pos: -14.5,-55.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals West Hall - type: SurveillanceCamera -- uid: 24301 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 7.5,-53.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals East Hall - type: SurveillanceCamera -- uid: 24302 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-48.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals Checkpoint - type: SurveillanceCamera -- uid: 24303 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-35.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall South - type: SurveillanceCamera -- uid: 24304 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall HoP - type: SurveillanceCamera -- uid: 24305 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-29.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bar - type: SurveillanceCamera -- uid: 24306 - type: SurveillanceCameraService - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-35.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bartender Room - type: SurveillanceCamera -- uid: 24307 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-30.5 - parent: 60 - type: Transform -- uid: 24308 - type: RandomArtifactSpawner20 - components: - - pos: 51.5,8.5 - parent: 60 - type: Transform -- uid: 24309 - type: RandomArtifactSpawner20 - components: - - pos: 51.5,10.5 - parent: 60 - type: Transform -- uid: 24310 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 14.5,-22.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Bar - type: SurveillanceCamera -- uid: 24311 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall East - type: SurveillanceCamera -- uid: 24312 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 17.5,16.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Toolroom - type: SurveillanceCamera -- uid: 24313 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-12.5 - parent: 60 - type: Transform -- uid: 24314 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -25.5,-7.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's Office - type: SurveillanceCamera -- uid: 24315 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -18.5,-9.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 1 - type: SurveillanceCamera -- uid: 24316 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -18.5,-12.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 2 - type: SurveillanceCamera -- uid: 24317 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -33.5,-6.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 3 - type: SurveillanceCamera -- uid: 24318 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -33.5,-9.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 4 - type: SurveillanceCamera -- uid: 24319 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -33.5,-12.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 5 - type: SurveillanceCamera -- uid: 24320 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell Med - type: SurveillanceCamera -- uid: 24321 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -14.5,4.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Grav Gen - type: SurveillanceCamera -- uid: 24322 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -25.5,-22.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Detective Office - type: SurveillanceCamera -- uid: 24323 - type: WallmountTelescreen - components: - - rot: -1.5707963267948966 rad - pos: -110.5,25.5 - parent: 60 - type: Transform -- uid: 24324 - type: IntercomAll - components: - - rot: 1.5707963267948966 rad - pos: -112.5,25.5 - parent: 60 - type: Transform -- uid: 24325 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: -5.5,-26.5 - parent: 60 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitor's Office - type: SurveillanceCamera -- uid: 24326 - type: Grille - components: - - pos: -53.5,-24.5 - parent: 60 - type: Transform -- uid: 24327 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-23.5 - parent: 60 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24328 - type: ClosetMaintenanceFilledRandom - components: - - pos: -53.5,-22.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24329 - type: ClosetRadiationSuitFilled - components: - - pos: -53.5,-21.5 - parent: 60 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24330 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-24.5 - parent: 60 - type: Transform -- uid: 24331 - type: Chair - components: - - pos: 17.5,-44.5 - parent: 60 - type: Transform -... diff --git a/Resources/Maps/barratry.yml b/Resources/Maps/barratry.yml deleted file mode 100644 index 209bb1b0a8..0000000000 --- a/Resources/Maps/barratry.yml +++ /dev/null @@ -1,128375 +0,0 @@ -meta: - format: 3 - name: DemoStation - author: Space-Wizards - postmapinit: false -tilemap: - 0: Space - 1: FloorArcadeBlue - 2: FloorArcadeBlue2 - 3: FloorArcadeRed - 4: FloorAsteroidCoarseSand0 - 5: FloorAsteroidCoarseSandDug - 6: FloorAsteroidIronsand1 - 7: FloorAsteroidIronsand2 - 8: FloorAsteroidIronsand3 - 9: FloorAsteroidIronsand4 - 10: FloorAsteroidSand - 11: FloorAsteroidTile - 12: FloorBar - 13: FloorBasalt - 14: FloorBlue - 15: FloorBlueCircuit - 16: FloorBoxing - 17: FloorCarpetClown - 18: FloorCarpetOffice - 19: FloorCave - 20: FloorCaveDrought - 21: FloorClown - 22: FloorDark - 23: FloorDarkDiagonal - 24: FloorDarkDiagonalMini - 25: FloorDarkHerringbone - 26: FloorDarkMini - 27: FloorDarkMono - 28: FloorDarkOffset - 29: FloorDarkPavement - 30: FloorDarkPavementVertical - 31: FloorDarkPlastic - 32: FloorDesert - 33: FloorDirt - 34: FloorEighties - 35: FloorElevatorShaft - 36: FloorFlesh - 37: FloorFreezer - 38: FloorGlass - 39: FloorGold - 40: FloorGrass - 41: FloorGrassDark - 42: FloorGrassJungle - 43: FloorGrassLight - 44: FloorGreenCircuit - 45: FloorGym - 46: FloorHydro - 47: FloorKitchen - 48: FloorLaundry - 49: FloorLino - 50: FloorLowDesert - 51: FloorMetalDiamond - 52: FloorMime - 53: FloorMono - 54: FloorPlanetDirt - 55: FloorPlanetGrass - 56: FloorPlastic - 57: FloorRGlass - 58: FloorReinforced - 59: FloorRockVault - 60: FloorShowroom - 61: FloorShuttleBlue - 62: FloorShuttleOrange - 63: FloorShuttlePurple - 64: FloorShuttleRed - 65: FloorShuttleWhite - 66: FloorSilver - 67: FloorSnow - 68: FloorSteel - 69: FloorSteelDiagonal - 70: FloorSteelDiagonalMini - 71: FloorSteelDirty - 72: FloorSteelHerringbone - 73: FloorSteelMini - 74: FloorSteelMono - 75: FloorSteelOffset - 76: FloorSteelPavement - 77: FloorSteelPavementVertical - 78: FloorTechMaint - 79: FloorTechMaint2 - 80: FloorTechMaint3 - 81: FloorWhite - 82: FloorWhiteDiagonal - 83: FloorWhiteDiagonalMini - 84: FloorWhiteHerringbone - 85: FloorWhiteMini - 86: FloorWhiteMono - 87: FloorWhiteOffset - 88: FloorWhitePavement - 89: FloorWhitePavementVertical - 90: FloorWhitePlastic - 91: FloorWood - 92: FloorWoodTile - 93: Lattice - 94: Plating -entities: -- uid: 0 - components: - - type: MetaData - - type: Transform - - index: 7 - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree -- uid: 1 - components: - - type: MetaData - - pos: 0.43985805,0.83991814 - parent: 0 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAIEAAACBAAAAF4AAAAEAAAABAAAAgQAAAEEAAABXgAAAAsAAABeAAAACwAAAF4AAAALAAAAXgAAAAQAAAIEAAACBAAAAl4AAAALAAAABAAAAQQAAAAEAAAABAAAAF4AAAALAAAACwAAAF4AAAALAAAACwAAAF4AAAAEAAABBAAAAgQAAAELAAAAXgAAAAQAAAAEAAAABAAAAQQAAAAEAAACXgAAAAsAAAALAAAAXgAAAAsAAABeAAAACwAAAF4AAAALAAAACwAAAAsAAAALAAAABAAAAQQAAAIEAAABXgAAAAsAAABeAAAACwAAAF4AAAALAAAAXgAAAAsAAAALAAAACwAAAAQAAAIEAAACCwAAAAsAAAALAAAACwAAAF4AAABeAAAACwAAAAsAAAALAAAAXgAAAF4AAAAEAAABBAAAAgQAAAIEAAAABAAAAAQAAAILAAAAXgAAAAsAAAALAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAEEAAACBAAAAAQAAAIEAAACBAAAAAsAAAALAAAAXgAAAE4AAABeAAAAGQAAAhkAAAEZAAABXgAAAAQAAAAEAAAABAAAAgQAAAEEAAAABAAAAAQAAAAEAAAAXgAAAAQAAAJOAAAAXgAAABkAAAEZAAACGQAAAl4AAAAEAAACBAAAAAQAAAIEAAABBAAAAAQAAAEEAAABBAAAAQsAAAAEAAAAXgAAAF4AAABeAAAAGQAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABXgAAAAQAAAILAAAABAAAAVsAAAFeAAAAUQAAAFEAAAJRAAACUQAAA1EAAABRAAAAXgAAAEQAAAJEAAABRAAAAUQAAAEEAAABBAAAAAQAAABbAAAAXgAAAFEAAABRAAABUQAAAVEAAABRAAADUQAAA14AAABEAAADRAAAAUQAAABEAAADRAAAAAQAAABEAAACWwAAAl4AAABRAAABUQAAAVEAAAJRAAACUQAAAlEAAANeAAAARAAAAUQAAAAPAAAADwAAAA8AAABEAAAARAAAAFsAAAFbAAACRAAAA0QAAAFEAAADRAAAAEQAAAJEAAADRAAAA0QAAAFEAAACDwAAAA8AAAAPAAAARAAAAkQAAABbAAAAXgAAAEQAAANEAAACRAAAAUQAAABEAAACRAAAA0QAAAJEAAADRAAAA0QAAAJEAAACRAAAAkQAAAJEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAACRAAAAQ8AAABeAAAAXgAAAFsAAANeAAAAXgAAAA== - -1,0: - ind: -1,0 - tiles: XgAAAF4AAAAdAAACFgAAAxYAAABeAAAARAAAAEQAAAFEAAACRAAAAg8AAABeAAAAWwAAAlsAAANbAAACXgAAAF4AAABeAAAAHQAAAyYAAAAWAAAAFgAAAUQAAAFEAAABRAAAAEQAAAAPAAAAXgAAAFsAAABbAAABWwAAAl4AAABeAAAAXgAAAB0AAAIWAAACFgAAAl4AAABEAAAARAAAAUQAAAJEAAADRAAAAl4AAABbAAADWwAAAFsAAAFeAAAARAAAAF4AAABeAAAAFgAAAV4AAABeAAAAXgAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAUQAAAJEAAACRAAAA0QAAAFEAAADRAAAA0QAAABEAAABRAAAAEQAAABEAAADRAAAAkQAAABEAAAARAAAAEQAAAJEAAADRAAAAEQAAABEAAAARAAAAkQAAANEAAACRAAAAUQAAAJEAAAARAAAA0QAAAJEAAACRAAAAkQAAAJEAAADRAAAAEQAAABEAAAARAAAAEQAAAFEAAABRAAAAUQAAAJEAAAARAAAAkQAAABEAAADRAAAAl4AAABeAAAARAAAAkQAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAF4AAABeAAAAXgAAAEQAAAFEAAABXgAAAF4AAABEAAAARAAAAEQAAAFeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAACXgAAAEQAAAFEAAACRAAAAkQAAABeAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAAF4AAABEAAABRAAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABEAAAARAAAAEQAAAFeAAAAXgAAAEQAAAJEAAADXgAAAEQAAANEAAADXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAARAAAA0QAAAJeAAAAXgAAAEQAAAJEAAADXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAEQAAAJeAAAARAAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAABEAAADXgAAAF4AAABEAAADXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAABYAAAMWAAABXgAAAF4AAABEAAADRAAAAkQAAAJeAAAAXgAAAF4AAABEAAADXgAAAF4AAABOAAAAXgAAAF4AAAAWAAAAFgAAAg== - 0,-1: - ind: 0,-1 - tiles: OgAAAF4AAABeAAAABAAAAAQAAAEEAAAABAAAADsAAAA7AAAAOwAAADsAAAA7AAAAAAAAAAAAAABdAAAAXQAAADoAAAA6AAAAOgAAAF4AAAAEAAAABAAAAjsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAXQAAAAAAAABeAAAAOgAAADoAAABeAAAABAAAAQQAAAE7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAABAAAAV0AAAAAAAAAXgAAADoAAABeAAAAXgAAAF4AAABeAAAAXgAAADsAAAA7AAAAOwAAADsAAAA7AAAABAAAAl4AAABeAAAAXgAAAAsAAABeAAAACwAAAF4AAAALAAAACwAAAF4AAAAEAAACOwAAADsAAAA7AAAAOwAAAF4AAABeAAAARAAAAV4AAAALAAAACwAAAF4AAABeAAAACwAAAAsAAABeAAAABAAAAAQAAAEEAAACBAAAAAQAAABeAAAARAAAA14AAABEAAACCwAAAF4AAAALAAAACwAAAAsAAABeAAAAXgAAAAQAAAAEAAABBAAAAQQAAAIEAAAAXgAAAF4AAABEAAABRAAAAwsAAAALAAAACwAAAF4AAAALAAAACwAAAF4AAAAEAAAABAAAAgQAAAFeAAAAXgAAAF4AAABEAAACRAAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAF4AAABeAAAABAAAAAQAAAEEAAAAXgAAAF4AAABeAAAARAAAAV4AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAATgAAAF4AAABeAAAAXgAAAAQAAAEEAAABBAAAAAQAAAFeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAAQAAAFeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAA14AAABeAAAAXgAAAFsAAANbAAACWwAAA1sAAANEAAADRAAAAUQAAAAxAAAAMQAAADEAAAAWAAADFgAAARYAAAFeAAAAXgAAAF4AAABbAAABWwAAAlsAAAFeAAAARAAAAEQAAABEAAACMQAAADEAAAAxAAAAXgAAABYAAAIWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACRAAAAzEAAAAxAAAAMQAAAA== - 0,0: - ind: 0,0 - tiles: DwAAAD0AAAA9AAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAADWwAAAkQAAAJEAAADXgAAADEAAAAxAAAAMQAAAA8AAAA9AAAAPQAAAF4AAABeAAAAXgAAAF4AAABbAAABWwAAAV4AAABEAAABRAAAAF4AAAAxAAAAMQAAADEAAAAPAAAAPQAAAD0AAABeAAAAXgAAAF4AAABeAAAAWwAAAFsAAAJeAAAARAAAAEQAAANeAAAAMQAAADEAAAAxAAAARAAAAkQAAABEAAAAXgAAAEQAAANEAAADXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACXgAAADEAAAAxAAAAMQAAAEQAAAFEAAADRAAAAEQAAAFEAAADRAAAAkQAAAFEAAABRAAAA0QAAAFEAAADRAAAA14AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAAJEAAAARAAAAEQAAAFEAAACRAAAAF4AAABeAAAARAAAAkQAAABEAAABRAAAA0QAAAFEAAACRAAAAEQAAABEAAACRAAAAUQAAANEAAAARAAAAV4AAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAANEAAABRAAAAUQAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAV4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAARAAAAUQAAAJeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAAJEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAWAAADFgAAAhYAAAAWAAAAFgAAARYAAAJeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAAFgAAARYAAAEWAAABFgAAARYAAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAACFgAAAhYAAAAWAAACFgAAAl4AAABeAAAATgAAAF4AAAAWAAAAFgAAAxYAAAAWAAAAFgAAAV4AAABRAAADUQAAA1EAAABRAAABUQAAAlEAAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAIWAAADFgAAAxYAAAFeAAAAUQAAAlEAAAEmAAAAJgAAAFEAAAFRAAAAXgAAAF4AAABOAAAAXgAAAA== - -1,-2: - ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAQAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAAAXgAAAAQAAAIEAAABAAAAAAQAAAIEAAACXQAAAF0AAABdAAAAXQAAAAQAAAAEAAACBAAAAgQAAAIEAAACXgAAAF4AAAAEAAABBAAAAAQAAAEEAAAABAAAAA== - 0,-2: - ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAQAAAIEAAABBAAAAQQAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAEAAAABAAAAAQAAAAEAAACBAAAAgQAAAEAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAABAAAAl4AAABeAAAABAAAAQQAAAAEAAAABAAAAQQAAAIEAAAABAAAAQAAAABdAAAAAAAAAAAAAABdAAAAAAAAAA== - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAIgAAACIAAABeAAAAXgAAAAsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAl4AAABeAAAAIgAAAF4AAAAiAAAAXgAAAAsAAABeAAAAXgAAAF4AAAAfAAAAHwAAAx8AAANeAAAAXgAAAEQAAABEAAADXgAAAF4AAAAiAAAAXgAAAF4AAAALAAAACwAAAF4AAABeAAAAHwAAAB8AAAAfAAADXgAAAEQAAAFEAAACRAAAAl4AAAACAAAAXgAAAAIAAABeAAAACwAAAF4AAABEAAADXgAAAB8AAAEfAAAAHwAAAV4AAABeAAAARAAAAF4AAABeAAAAAgAAAAIAAABeAAAAXgAAAF4AAAALAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAAACAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABEAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABOAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAAVsAAAJeAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAA1sAAAFbAAACWwAAAV4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAFsAAAJbAAABWwAAAlsAAAJeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAWwAAAFsAAABbAAACXgAAAF4AAABeAAAAXgAAADwAAAA8AAAAPAAAADwAAABeAAAATgAAAF4AAABeAAAAWwAAAVsAAANbAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA8AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -2,0: - ind: -2,0 - tiles: RAAAA14AAABeAAAAXgAAAF4AAABeAAAAPAAAADwAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAEQAAANeAAAATgAAAF4AAABeAAAAPAAAADwAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABEAAACXgAAAF4AAABeAAAAXgAAADwAAABeAAAAPAAAADwAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA14AAABeAAAAXgAAAF4AAAA8AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAUQAAAFEAAAAXgAAAEQAAAFEAAACRAAAAkQAAAJeAAAAXgAAAEQAAANeAAAAXgAAAEQAAANEAAACRAAAAEQAAAFEAAABRAAAAkQAAAJEAAADRAAAAUQAAAJEAAADRAAAAEQAAAJEAAADRAAAAkQAAANEAAADRAAAAEQAAAJEAAABRAAAA0QAAAJEAAABRAAAAUQAAABEAAACRAAAAkQAAABEAAADRAAAA0QAAABEAAACRAAAAl4AAABEAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAA14AAABeAAAARAAAA14AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAABbAAACWwAAAlsAAAJbAAADWwAAAlsAAAJbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABMQAAADEAAABeAAAAWwAAA1sAAAJbAAAAWwAAAVsAAAJbAAADWwAAAV4AAABeAAAAXgAAAF4AAABEAAAAXgAAADEAAAAxAAAAXgAAAFsAAAFbAAAAWwAAAVsAAANbAAACWwAAA1sAAAFeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJeAAAAXgAAAF4AAABbAAAAWwAAAVsAAANbAAACWwAAAlsAAAFbAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAABbAAABWwAAA1sAAAFbAAADWwAAAV4AAABeAAAATgAAAF4AAABEAAAAXgAAAE4AAABOAAAAXgAAAFsAAABbAAADWwAAA1sAAABbAAAAWwAAAlsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAAJbAAACWwAAAlsAAAJbAAACWwAAAV4AAABeAAAATgAAAF4AAABeAAAAXgAAAA== - 1,-1: - ind: 1,-1 - tiles: XQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAOgAAADoAAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAAAAAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAADEAAAAxAAAAXgAAAEwAAAFMAAACTAAAA14AAABeAAAAXgAAAF4AAABbAAAAWwAAA14AAABdAAAAXgAAAAAAAAAxAAAAMQAAAEwAAAFMAAACTAAAAkwAAAFeAAAAXgAAAE4AAABeAAAAXgAAAF0AAABbAAABXgAAAF4AAAAAAAAAMQAAADEAAABeAAAATAAAAUwAAABMAAACXgAAAF4AAABeAAAAXgAAAFsAAAFbAAADWwAAAl4AAABeAAAAXQAAAA== - 1,0: - ind: 1,0 - tiles: MQAAADEAAABeAAAAFwAAARcAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAADEAAAAxAAAAXgAAABcAAAAXAAADXgAAAF4AAABOAAAAXgAAAF4AAAAWAAAATgAAAE4AAABeAAAAXgAAAF0AAAAxAAAAMQAAAF4AAAAXAAAAFwAAA14AAABeAAAAXgAAAF4AAAAWAAACFgAAAl4AAABOAAAAXgAAAF4AAABdAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXQAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAkQAAAFEAAABXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF0AAABEAAAARAAAAkQAAAJEAAACRAAAAkQAAAJEAAAARAAAA0QAAAJEAAAARAAAA0QAAAFEAAABXgAAAF0AAABdAAAARAAAAkQAAANEAAABRAAAAUQAAAJEAAACRAAAAUQAAAJEAAACRAAAA0QAAAJEAAACRAAAA14AAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAJEAAAARAAAAUQAAABeAAAAXgAAAF4AAAACAAAAAgAAAF4AAAACAAAAXgAAAF4AAABOAAAATgAAAF4AAABEAAADRAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAACAAAAAgAAAF4AAABOAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAADRAAAAV4AAABeAAAAXgAAAAIAAAACAAAAXgAAAAIAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAADRAAAAUQAAABeAAAAXgAAAF4AAABeAAAAAgAAAAIAAAACAAAAXgAAAF4AAAAoAAAAKAAAAF4AAABEAAADRAAAAEQAAAJEAAADXgAAAF4AAABeAAAAAgAAAF4AAAACAAAAXgAAAF4AAAAoAAAAKAAAACgAAAAoAAAARAAAAkQAAABEAAACRAAAAV4AAABdAAAAXQAAAAIAAABeAAAAAgAAAAIAAABeAAAAKAAAACgAAAAoAAAAKAAAACgAAABEAAADRAAAAEQAAAFeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAoAAAAKAAAACgAAAAoAAAARAAAAUQAAANEAAADXgAAAF0AAABdAAAAEQAAABEAAABeAAAAEQAAABEAAABeAAAAKAAAACgAAAAoAAAARAAAAUQAAABEAAAARAAAAF4AAABeAAAAXgAAAA== - 1,-2: - ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAA== - 1,1: - ind: 1,1 - tiles: EQAAAF4AAAARAAAAXgAAAF4AAABeAAAAKAAAACgAAAAoAAAARAAAAEQAAAFEAAACRAAAAV4AAABeAAAAXgAAAF4AAAARAAAAXgAAABEAAAARAAAAXgAAACgAAAAoAAAAXgAAAEQAAAFEAAADRAAAAEQAAANeAAAAXgAAAF4AAABeAAAAEQAAAF4AAABeAAAAEQAAAF4AAAAoAAAAXgAAAF4AAABEAAABRAAAAUQAAANEAAADXgAAAF4AAABeAAAAEQAAAF4AAAARAAAAEQAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAAARAAAAF4AAABeAAAAXgAAAF4AAAARAAAAXgAAABEAAAARAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAAUQAAAJeAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAEQAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAANEAAAAXgAAAF0AAAAAAAAAXgAAABEAAABeAAAAXgAAABEAAABeAAAAXgAAAE4AAABeAAAAXgAAABYAAAFeAAAAXgAAAF4AAABdAAAAAAAAAF4AAAARAAAAXgAAABEAAABeAAAAXgAAAE4AAABeAAAAXgAAABYAAAAWAAAAFgAAARYAAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAWAAABFgAAABYAAAMWAAACXgAAAF0AAAAAAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAAWAAACFgAAAl4AAABdAAAAAAAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAAAFgAAAxYAAAFeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAAAWAAADFgAAARYAAAEWAAADXgAAAF0AAAAAAAAAWwAAAV4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAAWAAADFgAAA14AAABdAAAAAAAAAFsAAAJeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAABbAAABXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAWwAAAF4AAABeAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAA== - 2,0: - ind: 2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,1: - ind: 2,1 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,1: - ind: 0,1 - tiles: FgAAAhYAAAEWAAACFgAAAhYAAANeAAAAUQAAA1EAAABRAAACUQAAAFEAAAJRAAACXgAAAF4AAABOAAAAXgAAABYAAAAWAAACFgAAAhYAAAMWAAABXgAAAFEAAANRAAAAUQAAAVEAAABRAAABUQAAAl4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABRAAACUQAAAFEAAANeAAAAXgAAAF4AAABeAAAAXgAAAFEAAANRAAABUQAAAlEAAAJRAAABUQAAA1EAAANRAAAAUQAAAVEAAAFRAAABXgAAAE4AAABeAAAAXgAAAF4AAABRAAACUQAAASYAAABRAAAAXgAAAFEAAABRAAACXgAAAFEAAAFRAAADUQAAAl4AAABOAAAAXgAAAF4AAABeAAAAXgAAAFEAAABRAAADUQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAUQAAAF4AAABRAAACJgAAAFEAAAJeAAAAUQAAAFEAAAFRAAAAUQAAAlEAAAJeAAAAXgAAAF4AAABOAAAAXgAAAFEAAABRAAADUQAAA1EAAAJRAAADXgAAAFEAAAFRAAADUQAAAFEAAAJRAAABXgAAAF4AAABeAAAATgAAAF4AAABRAAABXgAAAFEAAAAmAAAAUQAAAVEAAAFRAAADUQAAAVEAAABRAAADUQAAAigAAAAoAAAAXgAAAF4AAABeAAAAUQAAAFEAAABRAAAAUQAAAFEAAANRAAACUQAAAFEAAAJRAAACUQAAAFEAAAEoAAAAKAAAAF4AAABeAAAAXgAAAFEAAANRAAAAUQAAAiYAAABRAAABXgAAAFEAAAFRAAACUQAAAFEAAANRAAADKAAAACgAAABeAAAAXgAAAF4AAABRAAACXgAAAFEAAAAmAAAAUQAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAADUQAAAlEAAABRAAABUQAAAFEAAAFRAAADUQAAA1EAAAFRAAAAUQAAA1sAAABbAAABWwAAAlEAAAJRAAAAUQAAASYAAABRAAAAUQAAAVEAAABRAAADUQAAAFEAAAFRAAACUQAAAlEAAANeAAAAWwAAAVsAAANRAAABUQAAAFEAAABRAAAAUQAAAFEAAAFeAAAAUQAAAlEAAANRAAADUQAAAlEAAANRAAAAXgAAAFsAAABbAAABUQAAA14AAABRAAABJgAAAFEAAAFRAAACXgAAAFEAAANRAAACUQAAA1EAAANRAAABUQAAA14AAABbAAABWwAAAw== - -1,1: - ind: -1,1 - tiles: XgAAAF4AAABEAAABRAAAAkQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAAAWAAADFgAAAV4AAABeAAAARAAAA0QAAANEAAACXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAFgAAAxYAAABeAAAAXgAAAF4AAABEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAABUQAAAFEAAANRAAACUQAAAF4AAABeAAAARAAAAUQAAAFEAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAUQAAAF4AAABVAAACVQAAAFEAAABeAAAAXgAAAEQAAAJEAAABRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABVAAADVQAAAFUAAANRAAABFgAAAl4AAABEAAACRAAAA0QAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFUAAAJVAAAAUQAAAxYAAAJeAAAARAAAAEQAAABEAAADXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABVAAADVQAAAlUAAAFEAAAAXgAAAEQAAAJEAAACXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABVAAAAXgAAAFUAAABVAAADRAAAAF4AAABEAAACRAAAAkQAAANeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABRAAABVQAAAFUAAABVAAAAVQAAAUQAAANeAAAARAAAAkQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAVUAAAFVAAADVQAAAVUAAAFEAAACRAAAAUQAAAJEAAAARAAAA0gAAAFIAAADSAAAAUgAAAJIAAADXgAAAFEAAABRAAACUQAAAVEAAAJRAAADRAAAAF4AAABEAAABRAAAA0QAAAJIAAABSAAAAUgAAANIAAABSAAAAl4AAABeAAAAXgAAAF4AAABeAAAAUQAAAEQAAAFeAAAARAAAA0QAAANEAAACSAAAA0gAAAFIAAABSAAAAEgAAAJeAAAAUQAAAVEAAAJRAAABUQAAAlEAAANeAAAAXgAAAEQAAAFEAAADRAAAA0gAAAFIAAABSAAAAkgAAABIAAABXgAAAFEAAAJRAAABUQAAA1EAAANRAAAARAAAAEQAAAJEAAAARAAAAkQAAANEAAACRAAAAUQAAAFEAAADRAAAA1EAAABRAAAAUQAAACYAAAAmAAAAUQAAAQ== - 0,2: - ind: 0,2 - tiles: UQAAA14AAABRAAADUQAAAlEAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABWwAAA1EAAAFRAAADUQAAACYAAABRAAAAUQAAAVEAAAImAAAAJgAAACYAAAAmAAAAJgAAAFEAAAFeAAAAXgAAAF4AAABRAAACXgAAAFEAAAJRAAADUQAAAl4AAABRAAADUQAAAlEAAAFRAAABUQAAA1EAAABRAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAl4AAABeAAAAUQAAAlQAAAFUAAAAVAAAAlQAAANUAAACUQAAAF4AAABeAAAAXgAAAB0AAANeAAAAXgAAAFEAAAFeAAAAXgAAAFEAAABUAAACVAAAAlQAAAJUAAACVAAAAlEAAABeAAAAXgAAAF4AAABeAAAAHQAAAlEAAAMmAAAAUQAAAV4AAABRAAABVAAAA1QAAAJUAAACVAAAA1QAAANRAAADXgAAAE4AAABeAAAAXgAAAF4AAABRAAACXgAAAFEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAFeAAAAXgAAACYAAABRAAACXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAdAAABHQAAA1EAAANRAAABXgAAAF4AAABeAAAATgAAAE4AAABEAAADRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADMAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADMAAAAzAAAAMwAAADMAAABeAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAzAAAAMwAAADMAAAAzAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAFsAAANbAAACWwAAA1sAAAJeAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABbAAAAWwAAAlsAAABbAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -1,2: - ind: -1,2 - tiles: RAAAAEQAAAFEAAABRAAAAEQAAABEAAABRAAAA0QAAAFEAAAARAAAA14AAABRAAAAUQAAACYAAAAmAAAAUQAAA0QAAAFEAAACRAAAAEQAAABEAAADRAAAAkQAAAFEAAADRAAAA0QAAABRAAACUQAAAVEAAABRAAABUQAAAlEAAAJEAAACXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAAkQAAABEAAADXgAAAFEAAANRAAACUQAAAFEAAAJRAAADRAAAAF4AAAAoAAAAKAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAKAAAACgAAAAoAAAAXgAAAE4AAABeAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAB0AAABEAAABXgAAACgAAAAoAAAAKAAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAdAAABRAAAAF4AAAAoAAAAKAAAACgAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAKAAAACgAAAAoAAAAXgAAABYAAAIWAAAAFgAAAxYAAAIWAAADXgAAAF4AAABeAAAAXgAAAB0AAAFEAAACXgAAACgAAAAoAAAAKAAAAF4AAAAWAAADFgAAAhYAAAEWAAAAFgAAA14AAABOAAAAXgAAAF4AAABeAAAARAAAA14AAAAoAAAAKAAAACgAAABeAAAAFgAAABYAAAEWAAABFgAAAxYAAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAJeAAAAKAAAACgAAAAoAAAAXgAAABYAAAIWAAABFgAAABYAAAIWAAADXgAAAF4AAABeAAAAXgAAAE4AAABEAAACXgAAACgAAAAoAAAAKAAAAF4AAAAWAAACFgAAAhYAAAEWAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAAAoAAAAKAAAACgAAABeAAAAFgAAAhYAAAMWAAACFgAAAxYAAAJeAAAATgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABOAAAARAAAAUQAAABEAAADRAAAAUQAAABEAAACXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 1,2: - ind: 1,2 - tiles: WwAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAWwAAAl4AAABbAAADXgAAAFsAAANbAAACWwAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFsAAABbAAADWwAAAFsAAAFeAAAAWwAAA14AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAWwAAAl4AAABbAAADWwAAAlsAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAWwAAAVsAAAFbAAADXgAAAF4AAABbAAAAWwAAAV4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAWwAAAlsAAAJeAAAAWwAAA1sAAAJeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABbAAACWwAAAl4AAABbAAADWwAAAl4AAABbAAACXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAWwAAA14AAABbAAAAXgAAAF4AAABbAAADWwAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAATgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,2: - ind: -2,2 - tiles: RAAAAEQAAAFEAAADRAAAA0QAAAFEAAACRAAAA14AAABEAAAARAAAAUQAAAJEAAAARAAAA0QAAANEAAAARAAAAkQAAANEAAAARAAAAUQAAAJEAAACRAAAAEQAAANEAAACRAAAAUQAAANEAAADRAAAAUQAAANEAAACRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA14AAABEAAAAKAAAACgAAAAoAAAAXgAAAEQAAANEAAADFgAAAhYAAAJeAAAAFgAAAxYAAAFeAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAAARAAAAEQAAAJEAAADRAAAAhYAAAEWAAABXgAAABYAAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAANeAAAARAAAAUQAAAIWAAAAFgAAAxYAAAMWAAACFgAAA14AAABeAAAAXgAAAF4AAAAWAAAAFgAAARYAAAIWAAABXgAAAEQAAAFEAAABFgAAARYAAAJeAAAAFgAAARYAAAJeAAAAXgAAAF4AAABeAAAAFgAAABYAAAMWAAADFgAAAl4AAABEAAAARAAAAxYAAAIWAAABXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAABYAAAIWAAACFgAAARYAAAJeAAAARAAAAkQAAAIWAAAAFgAAAF4AAABeAAAAWwAAA14AAABOAAAAXgAAAF4AAAAWAAAAFgAAAhYAAAEWAAACXgAAAEQAAAFEAAADXgAAAF4AAABeAAAAWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAEWAAACFgAAA14AAABEAAABRAAAAkQAAAJeAAAAXgAAAFsAAABbAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAAAFgAAAxYAAANeAAAARAAAA0QAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAEQAAAJEAAAARAAAA14AAAAlAAAAJQAAACUAAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAABbAAAAWwAAA14AAABEAAACRAAAA0QAAABeAAAAJQAAACUAAAAlAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFbAAACWwAAAVsAAAJEAAADRAAAAkQAAANEAAACRAAAAiUAAAAlAAAAJQAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAAFsAAAFbAAACXgAAAEQAAABEAAABRAAAAl4AAAAlAAAAJQAAACUAAABeAAAATgAAAF4AAABeAAAAWwAAA1sAAAFbAAADWwAAAF4AAABEAAACRAAAAA== - -2,1: - ind: -2,1 - tiles: XgAAAE4AAABeAAAAWwAAAlsAAAFbAAACWwAAAVsAAANbAAACWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAFsAAANbAAADWwAAAVsAAANbAAADWwAAAlsAAAJeAAAATgAAAF4AAABeAAAAXgAAAF4AAAAoAAAAKAAAAF4AAABbAAADWwAAAFsAAAFbAAADWwAAA1sAAANbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAKAAAACgAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACgAAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAATgAAAF4AAABOAAAATgAAAF4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAxYAAABbAAAAWwAAAl4AAAAiAAAAIgAAACIAAAAiAAAAIgAAACIAAABeAAAAXgAAAE4AAABeAAAAFgAAARYAAAEWAAAAWwAAAlsAAAJbAAAAXgAAACIAAAAiAAAAIgAAACIAAAAiAAAAXgAAAE4AAABeAAAAXgAAAEQAAABEAAACFgAAA1sAAANbAAADWwAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAADRAAAABYAAAFbAAACWwAAAlsAAAJeAAAAXgAAAEQAAAJEAAAAXgAAAEQAAAJeAAAATgAAAE4AAABeAAAARAAAAEQAAAEWAAACWwAAAlsAAABbAAADXgAAAF4AAABEAAACXgAAAEQAAABEAAADXgAAAF4AAABOAAAAXgAAAEQAAABEAAAAFgAAAlsAAAJbAAABXgAAAF4AAABEAAACRAAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAADRAAAAhYAAABbAAABWwAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAA0QAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJeAAAAXgAAAEQAAAJEAAABRAAAAw== - -2,-2: - ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA== - -3,0: - ind: -3,0 - tiles: XgAAAEgAAABIAAABSAAAAEgAAANeAAAARAAAAkQAAAFEAAAARQAAAkUAAAFFAAAARAAAA0QAAANEAAAARAAAA14AAABIAAAASAAAAkgAAAJIAAAAXgAAAEQAAANEAAACRAAAAkUAAANFAAABRQAAA0QAAAJEAAACRAAAAkQAAANeAAAASAAAAEgAAABIAAADSAAAAV4AAABEAAABRAAAAV4AAABEAAAARAAAAkQAAAJeAAAARAAAAUQAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAABRAAAAUQAAABEAAADRAAAA0QAAABEAAAARAAAAUQAAAFEAAAARAAAAkQAAAJEAAAARAAAA0QAAABEAAADRAAAA0QAAANEAAADRAAAAkQAAAJEAAACRAAAAUQAAANEAAADRAAAAkQAAABEAAACRAAAA0QAAANEAAABRAAAAEQAAAFEAAAARAAAAUQAAAFEAAACRAAAAkQAAANEAAADRAAAAUQAAAFEAAADRAAAAEQAAAFEAAADRAAAAkQAAAJEAAACRAAAAUQAAAJEAAAARAAAAEQAAANEAAADRAAAAxYAAANeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAEQAAAFEAAADRAAAAkQAAAJEAAAARAAAAF4AAAAWAAABFgAAAF4AAABeAAAAXgAAAEQAAAJeAAAARAAAAl4AAABEAAACRAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAFeAAAAXgAAAF4AAABeAAAARAAAAUQAAANeAAAARAAAAUQAAAFEAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAABXgAAAF4AAABeAAAARAAAAUQAAAJeAAAAXgAAAEQAAAFEAAACXgAAAF4AAABeAAAATgAAAF4AAABEAAADRAAAAF4AAABOAAAAXgAAAEQAAAFeAAAARAAAAV4AAABEAAADXgAAAF4AAABeAAAAXgAAAE4AAABeAAAARAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAARAAAAUQAAAJEAAADKAAAACgAAAAoAAAAKAAAAA== - -3,1: - ind: -3,1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAADKAAAACgAAAAoAAAAKAAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAABEAAAARAAAASgAAAAoAAAAKAAAACgAAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAACRAAAA0QAAAAoAAAAKAAAACgAAAAoAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAACKAAAACgAAAAoAAAAKAAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAAARAAAACgAAAAoAAAAKAAAACgAAABeAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAJEAAABRAAAAkQAAAEoAAAAKAAAACgAAAAoAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAAAXgAAAF4AAAAoAAAAXgAAAF0AAABeAAAAXgAAAE4AAABeAAAANAAAADQAAAA0AAAAXgAAAEQAAANEAAACRAAAAhYAAANeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAADQAAAA0AAAANAAAAF4AAABEAAADRAAAAUQAAAMWAAAAFgAAAhYAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAAA0AAAANAAAADQAAABeAAAARAAAAEQAAAFEAAADFgAAAhYAAAEWAAADFgAAA14AAABeAAAATgAAAF4AAABeAAAAEQAAABEAAAARAAAAXgAAAEQAAANEAAADRAAAAxYAAAAWAAABFgAAAxYAAABEAAACXgAAAE4AAABeAAAAXgAAABEAAAARAAAAEQAAAF4AAABEAAADRAAAAkQAAAIWAAADFgAAARYAAAMWAAADRAAAAF4AAABeAAAAXgAAAF4AAAARAAAAEQAAABEAAABeAAAARAAAAEQAAABEAAABFgAAAhYAAAAWAAABFgAAAkQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAARYAAAEWAAABXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAAJEAAACRAAAA14AAABEAAABRAAAAkQAAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAABRAAAAUQAAANEAAABRAAAAEQAAABEAAABRAAAAUQAAAFEAAADRAAAAl4AAABeAAAAXgAAAA== - -3,2: - ind: -3,2 - tiles: RAAAAUQAAAFEAAADRAAAAkQAAAFEAAABRAAAA0QAAABEAAADRAAAAEQAAABEAAABRAAAA0QAAABeAAAARAAAAEQAAAFEAAAARAAAA0QAAANEAAAARAAAAUQAAAFEAAAARAAAAkQAAAFEAAADRAAAA0QAAAJEAAABRAAAA0QAAABEAAABRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABXgAAAFsAAAJeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJeAAAAWwAAAFsAAAJbAAAAWwAAA1sAAABbAAADWwAAAVsAAABbAAADWwAAARYAAAIWAAACFgAAAUQAAAFEAAAAXgAAAFsAAABbAAABWwAAAl4AAABbAAABWwAAAlsAAANbAAABWwAAAlsAAAIWAAADFgAAAxYAAANEAAACRAAAA14AAABbAAACXgAAAFsAAANbAAADXgAAAFsAAAJbAAAAWwAAAFsAAANbAAACFgAAAxYAAAMWAAABRAAAAkQAAAFeAAAAWwAAAFsAAANeAAAAXgAAAFsAAANbAAADWwAAAVsAAANbAAAAWwAAABYAAAAWAAACFgAAAEQAAABEAAABXgAAAFsAAAJbAAADWwAAAV4AAABeAAAAWwAAAVsAAAJbAAABWwAAAVsAAAJbAAAAXgAAABYAAAJEAAADRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABbAAAAWwAAAFsAAABbAAADWwAAABYAAAAWAAABRAAAA0QAAAJeAAAALgAAAC4AAAAuAAAALgAAABYAAAFeAAAAXgAAAEQAAANEAAADRAAAAV4AAABeAAAAXgAAAEQAAAJEAAACFgAAAxYAAAIWAAABFgAAAxYAAAAWAAACXgAAAEQAAAFEAAACRAAAA0QAAANEAAADRAAAAEQAAABEAAADRAAAARYAAAAWAAADLgAAAC4AAAAuAAAAFgAAARYAAABEAAACRAAAAUQAAAFEAAAARAAAAEQAAAJEAAABRAAAAUQAAAEWAAAAFgAAAC4AAAAuAAAALgAAABYAAAEWAAABRAAAAkQAAAFEAAABRAAAAkQAAABEAAABRAAAA0QAAAFEAAACXgAAABYAAAIuAAAALgAAAC4AAAAWAAAAFgAAAEQAAABEAAADRAAAAEQAAAJEAAACRAAAA0QAAANEAAABRAAAAxYAAAMWAAADFgAAAxYAAAIWAAAAFgAAARYAAABEAAABRAAAAEQAAABEAAAARAAAAUQAAAFEAAADRAAAAkQAAANeAAAAFgAAABYAAAMWAAADFgAAAhYAAAFeAAAARAAAAEQAAANEAAABRAAAAEQAAABEAAADRAAAAg== - -3,-1: - ind: -3,-1 - tiles: XQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAA1sAAANbAAACWwAAAlsAAAFbAAAAWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFbAAABWwAAAFsAAAFbAAAAWwAAAFsAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABWwAAA1sAAANbAAADWwAAAVsAAANbAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAJbAAAAWwAAAFsAAANbAAABWwAAA1sAAAJbAAADWwAAAl4AAABEAAAARAAAAUQAAAJEAAACTgAAAF4AAABbAAABWwAAAFsAAAFbAAADWwAAAFsAAAJbAAABWwAAAFsAAAJeAAAARAAAAkQAAAJEAAABRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA14AAABeAAAAXgAAAEQAAAJEAAACRAAAAEQAAAFeAAAAXgAAAEwAAANMAAAATAAAA14AAABEAAADRAAAA0QAAAJEAAAARAAAAEQAAABEAAAARAAAA0QAAAFEAAAAXgAAAF4AAABMAAAATAAAAEwAAAJeAAAARAAAAEQAAABEAAAARAAAAkQAAAFEAAACRAAAAkQAAABEAAACRAAAA14AAABeAAAAXgAAAEwAAAFeAAAAXgAAAEQAAAJEAAABRAAAAUQAAANEAAABRAAAAkQAAAJEAAACRAAAAEQAAABeAAAAWwAAAlsAAAJbAAACWwAAA14AAABEAAAARAAAAkQAAAFEAAADRAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAJbAAABWwAAAlsAAABeAAAARAAAA0QAAABEAAABRAAAAUQAAAJEAAACXgAAAFsAAAFbAAAAWwAAAF4AAABbAAADWwAAAVsAAABbAAAAWwAAAkQAAAFEAAABRAAAAkQAAAFEAAACRAAAAVsAAAFbAAACWwAAAFsAAAJeAAAAWwAAAlsAAABbAAAAWwAAAV4AAABEAAAARAAAAUQAAANEAAADRAAAAkQAAAFeAAAAWwAAA1sAAAJbAAADXgAAAF4AAABeAAAASAAAA14AAABeAAAARAAAAUQAAANeAAAAXgAAAEUAAANeAAAAXgAAAF4AAABeAAAAWwAAAw== - -4,-1: - ind: -4,-1 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAANEAAAARAAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAA0QAAANeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAJEAAAARAAAAl4AAABbAAACXgAAAFsAAAFeAAAAWwAAAl4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAAUQAAANbAAADXgAAAF4AAABbAAACWwAAA14AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAA0QAAAFEAAADXgAAAFsAAAJeAAAAXgAAAFsAAABeAAAAXgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANEAAAARAAAA14AAABeAAAAWwAAAFsAAAJeAAAAWwAAA14AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADRAAAA0QAAABeAAAAXgAAAF4AAABeAAAAWwAAAl4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAUQAAAFEAAACXgAAAFsAAAFeAAAAXgAAAFsAAAFeAAAAXgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANEAAADRAAAA14AAABeAAAAWwAAAl4AAABbAAABWwAAAl4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAABRAAAAUQAAABeAAAAWwAAA14AAABbAAADWwAAAF4AAABeAAAAXgAAAA== - -4,0: - ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAAJEAAACXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAABRAAAAl4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAEQAAAFEAAAARAAAAkQAAAJEAAACRAAAAUQAAANEAAACRAAAA14AAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAANeAAAARAAAAUQAAABEAAAARAAAA0QAAANEAAACRAAAAUQAAABEAAABRAAAAV4AAABEAAAARAAAA0QAAAJEAAACXgAAAF4AAABEAAADRAAAAkQAAABEAAAARAAAAEQAAABEAAABRAAAAkQAAAJEAAADRAAAAkQAAANEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAACXgAAAF4AAABeAAAAXgAAABYAAAEWAAACXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAEQAAAJEAAACRAAAA14AAAAWAAABFgAAAxYAAAEWAAACFgAAARYAAAMWAAABXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAEQAAANeAAAAFgAAAxYAAAMWAAACFgAAAhYAAAIWAAABFgAAAUQAAAE6AAAAOgAAADoAAABeAAAARAAAAEQAAABEAAADXgAAABYAAAIWAAAAFgAAABYAAAEWAAADFgAAARYAAABEAAABOgAAADoAAAA6AAAAXgAAAEQAAABEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFeAAAARAAAAjoAAAA6AAAAOgAAAF4AAABEAAAARAAAAkQAAABbAAADWwAAAlsAAANbAAADXgAAAEQAAAFEAAAAXgAAAEQAAAM6AAAAOgAAADoAAABeAAAARAAAAEQAAABEAAADWwAAAFsAAAFbAAABWwAAAF4AAABeAAAAXgAAAF4AAABEAAADOgAAADoAAAA6AAAAXgAAAEQAAAFEAAABRAAAAlsAAAFbAAABWwAAAlsAAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAAFbAAABWwAAA1sAAANbAAAAXgAAAF4AAABeAAAAXgAAAA== - -4,1: - ind: -4,1 - tiles: TgAAAF4AAABOAAAATgAAAF4AAABEAAACRAAAAEQAAAFbAAAAWwAAAFsAAAJbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAARAAAAkQAAANEAAABXgAAABYAAAEWAAACFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADRAAAAl4AAAAWAAACFgAAARYAAABeAAAATgAAAF4AAABOAAAARAAAA14AAABOAAAAXgAAAF4AAABEAAABRAAAAUQAAAFeAAAAFgAAABYAAAMWAAAAXgAAAF4AAABeAAAAXgAAAEQAAABeAAAATgAAAF4AAABeAAAARAAAAUQAAANEAAABFgAAARYAAAEWAAADFgAAAl4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAACRAAAAxYAAAAWAAADFgAAABYAAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAFEAAABXgAAAEQAAAJeAAAAHQAAAx0AAAEdAAABHQAAAl4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAARAAAAUQAAABEAAADXgAAAB0AAAEdAAACHQAAAB0AAANeAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAARAAAAl4AAAAdAAABHQAAAx0AAAEdAAABXgAAAEQAAANeAAAATgAAAF4AAABeAAAARAAAA0QAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAdAAACXgAAAF4AAABEAAACXgAAAE4AAABeAAAAXgAAAEQAAANEAAAARAAAA14AAABEAAACRAAAAkQAAAJEAAADRAAAA0QAAABEAAACRAAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAABeAAAARAAAA0QAAAFEAAABRAAAA0QAAAFEAAACRAAAAV4AAABeAAAATgAAAF4AAABeAAAARAAAA0QAAABEAAAAXgAAAEQAAABEAAAARAAAA0QAAANEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAF4AAABEAAADRAAAAUQAAABEAAAARAAAAEQAAABEAAADRAAAA0QAAANEAAADRAAAAEQAAANEAAADRAAAAQ== - -4,2: - ind: -4,2 - tiles: RAAAA0QAAAJEAAABRAAAAUQAAAJEAAADRAAAAkQAAANEAAACRAAAAkQAAAJEAAABRAAAA0QAAAFEAAACRAAAAkQAAANeAAAARAAAAEQAAABEAAACRAAAAEQAAAJEAAABRAAAAkQAAAJEAAAARAAAAEQAAAFEAAADRAAAAEQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAAV4AAABeAAAAXgAAAF4AAAAuAAAALgAAAF4AAABEAAADXgAAAF4AAABeAAAATgAAAF4AAABEAAAARAAAAEQAAAJEAAACXgAAABYAAAAWAAADLgAAAC4AAABeAAAARAAAAl4AAABOAAAATgAAAF4AAABeAAAARAAAAkQAAABEAAAARAAAAV4AAAAWAAAAFgAAAC4AAAAuAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAUQAAAFeAAAAFgAAAxYAAAIuAAAALgAAAF4AAABEAAADXgAAADwAAABEAAADPAAAAF4AAABEAAADRAAAAkQAAABeAAAAXgAAAF4AAAAWAAADFgAAABYAAANeAAAARAAAADwAAABeAAAAPAAAADwAAABeAAAARAAAAkQAAANEAAAAXgAAAE4AAABeAAAAPAAAAF4AAABeAAAAXgAAAEQAAAFEAAABPAAAADwAAABEAAABXgAAAEQAAAJEAAACRAAAAl4AAABeAAAAXgAAADwAAAA8AAAAPAAAAF4AAABEAAAAPAAAAEQAAAE8AAAAPAAAAF4AAABEAAADRAAAAkQAAANeAAAATgAAAF4AAAA8AAAAPAAAADwAAABeAAAARAAAADwAAABEAAABRAAAATwAAABeAAAARAAAAUQAAAFEAAADXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAPAAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAEQAAAJEAAABRAAAADwAAABEAAAAXgAAAEQAAABEAAACRAAAA0QAAANeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABEAAAARAAAAzwAAABEAAAAPAAAADwAAABeAAAARAAAAkQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAAkQAAAFeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFEAAAAXgAAAE4AAABOAAAAXgAAAF4AAABEAAADRAAAA0QAAANEAAABRAAAA14AAABEAAADRAAAAUQAAAFEAAABRAAAAA== - -5,-1: - ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABdAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXQAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,0: - ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABEAAACRAAAA0QAAABEAAABRAAAAkQAAAJEAAACRAAAAEQAAANEAAAARAAAA0QAAABdAAAAAAAAAF0AAABeAAAARAAAAUQAAAFEAAADRAAAAkQAAAFEAAACRAAAAEQAAANEAAABRAAAA0QAAAFEAAACXQAAAAAAAABdAAAAXgAAAEQAAANEAAAARAAAAkQAAABEAAABRAAAAUQAAANEAAAARAAAAkQAAABeAAAAXgAAAF0AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAFgAAARYAAAAWAAAAFgAAAV4AAABeAAAATgAAAF4AAABOAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXgAAABYAAAIWAAABFgAAARYAAABeAAAAXgAAAE4AAABeAAAAXgAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF4AAAAWAAADFgAAAhYAAAIWAAACXgAAAF4AAABeAAAAXgAAAEQAAAIAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABeAAAAFgAAAhYAAAEWAAADFgAAAF4AAABOAAAAXgAAAF4AAABEAAABAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXgAAABYAAAAWAAADFgAAABYAAAAWAAAAXgAAAF4AAABeAAAARAAAAQAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF4AAAAWAAADFgAAARYAAAEWAAAAXgAAAF4AAABOAAAAXgAAAEQAAAEAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAABAAAAAAAAAAAAAAAAXQAAAF4AAABEAAADRAAAAEQAAAJEAAABRAAAAEQAAAJEAAADXgAAAF4AAABeAAAAXgAAAA== - -2,3: - ind: -2,3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAA1sAAABbAAABWwAAAl4AAABEAAAARAAAAU4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADTgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAV4AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAFeAAAAXgAAAEQAAAJeAAAAXgAAAEQAAANeAAAAXgAAADoAAAA6AAAAOgAAADoAAABeAAAAFgAAABYAAAAWAAACTgAAAF4AAABeAAAARAAAA14AAABeAAAAXgAAAF4AAAA6AAAAFgAAAhYAAAIWAAADOgAAABYAAAI5AAAAOQAAAF4AAABeAAAARAAAAl4AAABeAAAARAAAAl4AAABeAAAAOgAAABYAAAE5AAAAFgAAA14AAAAWAAABOQAAADkAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA8AAAAWAAACOQAAABYAAANeAAAAFgAAATkAAAA5AAAAXgAAAF4AAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAMWAAAAXgAAABYAAAA5AAAAOQAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAAUQAAAFEAAABFgAAATkAAAA5AAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAEQAAAFEAAACRAAAAxYAAAI5AAAAOQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAADRAAAA0QAAANeAAAAFgAAABYAAAFdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABeAAAARAAAAEQAAAJEAAAARAAAAUQAAAJEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABEAAACRAAAA0QAAAJEAAADRAAAAw== - -1,3: - ind: -1,3 - tiles: RAAAA0QAAABEAAAARAAAAkQAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAATgAAAF4AAABdAAAAXQAAAF0AAABeAAAAEQAAABEAAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAABdAAAAXgAAABEAAAARAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAAARAAAAEQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAF0AAABeAAAAEQAAABEAAAAWAAADFgAAAV4AAABEAAADRAAAAEQAAAJEAAABRAAAA0QAAAFeAAAAXgAAAF0AAABdAAAAXgAAABEAAAARAAAAOQAAABYAAAFeAAAARAAAAEQAAANEAAABRAAAAkQAAABEAAADRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAADkAAAAWAAABRAAAAkQAAAFEAAACRAAAAkQAAABEAAACRAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAA5AAAAFgAAAl4AAABEAAACRAAAAUQAAANEAAACRAAAA0QAAANEAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAOQAAABYAAABeAAAARAAAAkQAAAJEAAADRAAAAkQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAl4AAABbAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAA5AAAAFgAAAUQAAANEAAADRAAAA14AAAAWAAABFgAAABYAAANbAAACWwAAA14AAABdAAAAAAAAAF0AAAAAAAAAOQAAABYAAABEAAADRAAAAUQAAANeAAAAFgAAAhYAAAIWAAACWwAAAFsAAABeAAAAXQAAAF0AAABdAAAAAAAAABYAAABeAAAARAAAAUQAAANEAAACXgAAABYAAAAWAAACFgAAAlsAAAJbAAADXgAAAF0AAAAAAAAAXQAAAAAAAABEAAACRAAAAUQAAAJEAAABRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAARAAAA0QAAANEAAACRAAAA14AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAA== - 0,3: - ind: 0,3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAABEAAABeAAAAXgAAAFsAAABbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAARAAAAXgAAAFsAAAJbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFeAAAAWwAAAFsAAAJbAAACEQAAAF4AAABbAAABXgAAAFsAAANeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADXgAAAFsAAAFbAAACWwAAAhEAAABeAAAAWwAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAl4AAABbAAADWwAAA1sAAAERAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,3: - ind: 1,3 - tiles: XgAAAFsAAABbAAACXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABbAAACWwAAAV4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbAAACWwAAAVsAAAJeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAFsAAAFbAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFsAAANbAAADWwAAAl4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,4: - ind: -1,4 - tiles: RAAAA0QAAABEAAADRAAAA14AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAEQAAAFEAAABRAAAAV4AAABeAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABEAAADRAAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,4: - ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF4AAABEAAACRAAAAEQAAABEAAADRAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAEQAAABEAAADRAAAAkQAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAARAAAA0QAAANEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,3: - ind: -3,3 - tiles: RAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAAXgAAAE4AAABeAAAARAAAAEQAAABEAAAARAAAAF4AAABEAAABXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAAEQAAAJeAAAAXgAAAEQAAAJEAAADXgAAAF4AAABeAAAAXgAAAEQAAABeAAAATgAAAF4AAABEAAAARAAAAkQAAANEAAAAXgAAAF4AAABeAAAARAAAAkQAAAJeAAAAXgAAAF4AAABEAAADXgAAAE4AAABeAAAARAAAAUQAAAFEAAACRAAAA14AAABEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABEAAABXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAANeAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAAAAAAAAAAAAF0AAABdAAAAFgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAABYAAAEWAAAAXgAAAEQAAAFEAAABRAAAAUQAAAJeAAAAXgAAAF0AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAWAAACFgAAAV4AAABEAAACRAAAAEQAAAFEAAADXgAAAF4AAABdAAAAXQAAAF4AAABdAAAAXQAAAAAAAABdAAAAFgAAAF4AAABeAAAARAAAAEQAAAJEAAADRAAAAl4AAABeAAAAXQAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAA== - -4,3: - ind: -4,3 - tiles: TgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAAARAAAA0QAAAJEAAADRAAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAADRAAAA0QAAABEAAABRAAAAUQAAABeAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAAUQAAABEAAABXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAABEAAABRAAAAUQAAAFEAAADRAAAA0QAAAFEAAADRAAAAEQAAABEAAADRAAAA0QAAABEAAAARAAAA0QAAABeAAAARAAAAUQAAAFEAAAARAAAAEQAAAJeAAAARAAAA0QAAAFEAAACRAAAAkQAAANEAAACRAAAA0QAAAJeAAAAXgAAAEQAAANEAAAARAAAAkQAAABEAAABRAAAA0QAAANEAAADRAAAAUQAAAJEAAADRAAAA0QAAABEAAACRAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAANEAAADRAAAA0QAAAJEAAADRAAAAl4AAABeAAAAFgAAAV4AAAAWAAAAFgAAAhYAAAEWAAABRAAAAkQAAANEAAACRAAAAUQAAABEAAAARAAAAUQAAAJeAAAAFgAAARYAAABeAAAAFgAAAxYAAAMWAAACXgAAAEQAAAJEAAAARAAAAUQAAANEAAACRAAAA0QAAAFEAAAAXgAAABYAAAEWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABeAAAARAAAA14AAAAWAAAAFgAAAxYAAANEAAABRAAAAEQAAAJEAAADRAAAAkQAAABEAAAARAAAAEQAAANEAAABRAAAAUQAAAJeAAAAFgAAAV4AAABeAAAARAAAAEQAAAFEAAAARAAAAUQAAABEAAAARAAAAkQAAAJEAAADRAAAAkQAAABEAAADFgAAAxYAAAAAAAAAXgAAAF4AAABeAAAAWwAAAF4AAABeAAAAXgAAAFsAAABeAAAAXgAAAEQAAAFEAAADRAAAAl4AAAAWAAAAAAAAAF4AAABbAAACWwAAAVsAAAFbAAADXgAAAFsAAAFbAAADWwAAAV4AAABEAAAARAAAAkQAAABeAAAAXgAAAA== - -4,-2: - ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAA== - -3,-2: - ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,2: - ind: -5,2 - tiles: RAAAA0QAAANEAAADRAAAAF4AAABEAAACRAAAAF4AAABeAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAADRAAAAkQAAAFeAAAARAAAAUQAAANEAAADRAAAAEQAAABEAAAARAAAAUQAAABEAAADRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAATgAAAEQAAANEAAADRAAAA0QAAAJEAAACRAAAA0QAAAJEAAABRAAAAkQAAAJEAAABXgAAAF4AAABeAAAAXgAAAE4AAABEAAAARAAAAkQAAAFEAAAARAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAPAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAl4AAABeAAAAXgAAAE4AAABeAAAAXgAAADwAAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAAJbAAADWwAAA14AAABOAAAAXgAAAF4AAAA8AAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAFsAAAJbAAAAWwAAA1sAAAJeAAAAXgAAAF4AAABeAAAARAAAAU4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAWwAAA1sAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAFsAAABbAAACWwAAAV4AAABOAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAABWwAAAlsAAANeAAAAXgAAAE4AAABeAAAAPAAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABbAAAAWwAAA1sAAANeAAAAXgAAAF4AAABOAAAAXgAAAEQAAAJOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAADEAAABeAAAAMQAAAF4AAAAxAAAAXgAAAEQAAABeAAAARAAAAQ== - -5,3: - ind: -5,3 - tiles: XQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAxAAAAXgAAAF4AAAAxAAAAXgAAAEQAAAJEAAADXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACXgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAAFeAAAARAAAA0QAAAFeAAAAXgAAAE4AAABeAAAARAAAA0QAAANdAAAAXgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABXQAAAF4AAAAWAAADFgAAARYAAANeAAAAXgAAAF4AAABeAAAARAAAAkQAAABeAAAAXgAAAF4AAABEAAAARAAAAV0AAABeAAAAFgAAABYAAAEWAAACXgAAAF4AAABeAAAARAAAAkQAAABeAAAAXgAAAE4AAABeAAAARAAAAkQAAAFdAAAAXgAAABYAAAMWAAADFgAAAV4AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA== - -3,4: - ind: -3,4 - tiles: RAAAA0QAAABEAAACRAAAAEQAAAJEAAABRAAAAl4AAABeAAAAXQAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAEQAAANEAAACRAAAAEQAAANEAAABRAAAAEQAAANeAAAAXgAAAF0AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABdAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,4: - ind: -4,4 - tiles: AAAAAF4AAABbAAADWwAAAFsAAAJbAAAAXgAAAFsAAAJbAAABWwAAAF4AAABEAAAARAAAAEQAAABEAAADRAAAAV0AAABeAAAAWwAAA1sAAABbAAAAWwAAAF4AAABbAAABWwAAA1sAAAJeAAAARAAAAkQAAABEAAABRAAAAkQAAAEAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAA== - -4,5: - ind: -4,5 - tiles: AAAAAAQAAAEEAAABBAAAAgQAAAAEAAAABAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAAEAAABBAAAAQQAAAEEAAACBAAAAgQAAAJeAAAAXgAAAF4AAABeAAAARAAAAl4AAABEAAACXgAAAAQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAEQAAAFeAAAAXgAAAF4AAAAEAAACXgAAACgAAABEAAAAXgAAAEQAAAFEAAADRAAAAUQAAAFeAAAARAAAAkQAAAFEAAADXgAAAEQAAAJeAAAABAAAAV4AAAAoAAAARAAAAF4AAABEAAABRAAAA14AAABeAAAARAAAA14AAABeAAAAXgAAAEQAAAJeAAAAXgAAAAQAAAFeAAAAKAAAAF4AAABEAAAAXgAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAARAAAA14AAAAEAAABXgAAAF4AAABEAAAARAAAAkQAAABeAAAARAAAAzwAAABeAAAAPAAAAF4AAABeAAAAXgAAAEQAAAJeAAAABAAAAAAAAABeAAAARAAAAF4AAABEAAADXgAAAEQAAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAADXgAAAAQAAAJdAAAAXgAAAEQAAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABEAAABXgAAAF4AAABeAAAARAAAAV4AAAAEAAAAAAAAAF4AAABEAAADXgAAAEQAAAFEAAACRAAAAUQAAANEAAADXgAAAEQAAANEAAAARAAAAl4AAABeAAAABAAAAgAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAARAAAA14AAABEAAABXgAAAAQAAAIAAAAABAAAAgQAAAIEAAAABAAAAgQAAAEEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAIEAAAABAAAAQQAAAAEAAABBAAAAAQAAAIEAAAABAAAAQQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAEEAAAABAAAAAQAAAAEAAACBAAAAAQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAgQAAAEEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,5: - ind: -3,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,5: - ind: -5,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,1: - ind: -5,1 - tiles: XQAAAF0AAABdAAAAXQAAAF4AAABEAAAARAAAAkQAAAFEAAADRAAAAEQAAABEAAADXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAADRAAAAUQAAAJEAAAARAAAAV4AAABeAAAATgAAAF4AAABOAAAATgAAAF4AAABOAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAABRAAAAV4AAABEAAAARAAAAUQAAAJEAAAARAAAAUQAAAFEAAAARAAAAE4AAABeAAAAXgAAAE4AAABeAAAARAAAA0QAAANeAAAARAAAA0QAAAFEAAADRAAAAUQAAAFEAAADRAAAAkQAAAFeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAFEAAAARAAAAEQAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAF4AAABOAAAATgAAAF4AAABEAAADRAAAA14AAABEAAACRAAAAEQAAAJEAAADRAAAAEQAAAFEAAACRAAAAkQAAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAABeAAAARAAAAUQAAAFEAAABRAAAAEQAAAFEAAADRAAAAkQAAAFEAAACRAAAAl4AAABEAAAARAAAA0QAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAAARAAAAUQAAAJEAAABRAAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAAFEAAAAXgAAAEQAAANEAAADRAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAADRAAAAEQAAAJEAAADXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAkQAAAFEAAACXgAAAF4AAABOAAAATgAAAF4AAABEAAABRAAAAl4AAABeAAAAXgAAAE4AAABeAAAARAAAAkQAAAFEAAACRAAAAEQAAAJOAAAATgAAAE4AAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAAJEAAAAXgAAAEQAAAFEAAABTgAAAE4AAABOAAAAXgAAAEQAAANEAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAACRAAAA14AAABEAAAARAAAA04AAABOAAAATgAAAF4AAABEAAADRAAAAV4AAABeAAAAXgAAAE4AAABeAAAARAAAAEQAAAJeAAAARAAAAg== - -6,1: - ind: -6,1 - tiles: AAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAATgAAAE4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAE4AAABOAAAATgAAAF4AAABOAAAAXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXQAAAF0AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABOAAAAXgAAAEQAAANEAAAARAAAAV0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABEAAABRAAAAEQAAAFEAAAARAAAAkQAAAMAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAARAAAAl4AAABeAAAAXgAAAF4AAABEAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAARAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAARAAAAEQAAAJEAAABRAAAAUQAAAJEAAACXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABdAAAAXQAAAF4AAABOAAAATgAAAF4AAABEAAACRAAAAEQAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABOAAAATgAAAE4AAABeAAAARAAAAkQAAAJEAAABXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAA== - -6,2: - ind: -6,2 - tiles: XQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAAV0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF0AAABeAAAAXgAAAF4AAABEAAADRAAAAkQAAAMAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAATgAAAF4AAABeAAAATgAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -7,1: - ind: -7,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - -7,2: - ind: -7,2 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -6,3: - ind: -6,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,4: - ind: -5,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -7,0: - ind: -7,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAA== - -6,0: - ind: -6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAA== - 2,-1: - ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,2: - ind: 2,2 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - type: OccluderTree - - type: Shuttle - - nextUpdate: 15801.3235625 - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 0: -13,-4 - 1: -12,-4 - 2: -11,-4 - 3: -10,-4 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerNw - decals: - 7: -14,-8 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerNe - decals: - 8: -12,-8 - 62: -12,2 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerSw - decals: - 9: -14,-9 - 69: 1,-3 - - node: - color: '#D381C9FF' - id: BrickTileSteelCornerSe - decals: - 10: -12,-9 - 61: -12,0 - 70: 2,-3 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineN - decals: - 11: -13,-8 - 58: -13,2 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineS - decals: - 12: -13,-9 - 60: -13,0 - - node: - color: '#D381C9FF' - id: BrickTileSteelBox - decals: - 13: -13,-7 - 63: -11,1 - 64: 0,-2 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineW - decals: - 14: -14,-3 - 15: -7,-4 - 16: -7,-5 - 17: -10,0 - 18: -10,1 - 19: -10,-1 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineS - decals: - 20: -8,-3 - 21: -6,-6 - 22: -5,-6 - 23: -4,-6 - 82: -4,-4 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineE - decals: - 24: -7,-1 - 25: -7,0 - 26: -7,1 - 27: -1,-3 - 28: -1,-4 - 29: -1,-5 - - node: - color: '#D381C9FF' - id: BrickTileWhiteLineN - decals: - 30: -6,-2 - 31: -5,-2 - 32: -4,-2 - 33: -3,-2 - 34: -2,-2 - 35: -7,2 - 36: -8,2 - 37: -9,2 - 38: -11,-2 - 39: -12,-2 - 40: -13,-2 - 50: -9,-4 - 51: -10,-4 - 52: -11,-4 - 53: -12,-4 - 54: -13,-4 - 55: -14,-4 - 83: -4,-3 - - node: - color: '#D381C9FF' - id: BrickTileWhiteCornerNw - decals: - 41: -14,-2 - 42: -10,2 - 80: -5,-3 - - node: - color: '#D381C9FF' - id: BrickTileWhiteCornerNe - decals: - 43: -1,-2 - 78: -3,-3 - - node: - color: '#D381C9FF' - id: BrickTileWhiteCornerSw - decals: - 44: -7,-6 - 81: -5,-4 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerNe - decals: - 45: -7,-2 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerSe - decals: - 46: -9,-3 - 49: -7,2 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerSw - decals: - 47: -7,-3 - - node: - color: '#D381C9FF' - id: BrickTileWhiteInnerNw - decals: - 48: -10,-2 - 56: -14,-4 - - node: - color: '#D381C9FF' - id: BrickTileWhiteCornerSe - decals: - 79: -3,-4 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 179: 27,23 - 180: 26,24 - 181: 27,24 - 182: 25,24 - 183: 27,21 - 184: 26,20 - 185: 26,18 - 186: 27,17 - 187: 28,17 - 188: 27,18 - 189: 25,18 - 190: 25,17 - 191: 26,16 - 192: 27,16 - 193: 27,17 - 194: 26,17 - 195: 27,16 - 196: 27,15 - 197: 27,14 - 198: 27,13 - 199: 26,12 - 200: 26,12 - 201: 25,11 - 202: 27,11 - 203: 27,10 - 204: 28,9 - 205: 27,8 - 206: 26,8 - 207: 25,8 - 208: 26,7 - 209: 27,5 - 210: 28,6 - 211: 27,6 - 212: 26,6 - 213: 23,6 - 214: 21,5 - 215: 21,4 - 216: 22,4 - 217: 21,5 - 218: 19,5 - 219: 17,6 - 220: 16,5 - 221: 16,5 - 222: 16,6 - 223: 14,6 - 224: 12,6 - 225: 11,5 - 226: 12,5 - 227: 12,6 - 228: 9,6 - 229: 9,4 - 230: 10,4 - 231: 10,3 - 232: 11,2 - 233: 9,4 - 234: 8,5 - 235: 6,5 - 236: 6,6 - 237: 5,5 - 238: 5,4 - 239: 5,6 - 240: 2,5 - 241: 1,5 - 242: 1,5 - 243: -1,5 - 244: -1,4 - 245: -1,6 - 246: -2,6 - 247: -4,5 - 248: -5,4 - 249: -7,5 - 250: -6,6 - 251: -5,7 - 252: -6,6 - 253: -6,5 - 254: -8,5 - 255: -9,6 - 256: -10,6 - 257: -11,5 - 258: -12,4 - 259: -14,5 - 260: -13,6 - 261: -13,6 - 262: -13,4 - 263: -12,2 - 264: -12,0 - 265: -12,0 - 266: -13,2 - 267: -13,2 - 268: -12,1 - 269: -13,0 - 270: -12,1 - 271: -9,-1 - 272: -7,-2 - 273: -7,-1 - 274: -8,0 - 275: -9,-1 - 276: -10,-2 - 315: -8,-13 - 316: -8,-12 - 317: -10,-12 - 318: -7,-14 - 319: -6,-13 - 320: -4,-12 - 321: -3,-12 - 322: -2,-10 - 323: 3,-10 - 324: 1,-11 - 325: 0,-9 - 411: 1,-2 - 412: 2,-1 - 413: 2,-2 - 414: 1,-2 - 415: 1,-1 - 416: 2,-1 - 418: -13,8 - 419: -12,8 - 420: -12,10 - 421: -13,10 - 422: -14,11 - 423: -14,10 - 424: -14,9 - 425: -16,8 - 426: -17,8 - 427: -17,10 - 428: -18,10 - 429: -18,9 - 480: -12,18 - 481: -13,19 - 482: -14,20 - 483: -13,22 - 484: -12,23 - 485: -12,24 - 486: -14,26 - 487: -13,27 - 488: -12,28 - 489: -13,28 - 490: -14,28 - 491: -13,26 - 492: -12,25 - 493: -13,29 - 494: -14,32 - 495: -12,28 - 496: -12,30 - 497: -13,32 - 498: -15,32 - 499: -15,31 - 500: -13,30 - 501: -13,29 - 502: -12,32 - 503: -12,33 - 504: -13,33 - 505: -10,31 - 506: -9,32 - 507: -9,32 - 508: -8,33 - 509: -8,32 - 510: -8,31 - 511: -9,32 - 512: -10,32 - 513: -10,32 - 525: 0,29 - 526: -1,30 - 527: -3,30 - 528: -4,31 - 529: -4,32 - 530: -3,33 - 531: -4,32 - 532: -5,32 - 533: 0,33 - 534: -1,33 - 535: -1,34 - 536: -4,25 - 537: -4,26 - 538: -2,26 - 539: -1,26 - 540: -1,27 - 541: -4,27 - 542: -5,26 - 543: -4,24 - 544: -2,23 - 545: -3,22 - 546: -3,20 - 547: -4,19 - 548: -2,19 - 549: -2,20 - 562: -2,7 - 599: 13,-8 - 600: 13,-9 - 601: 14,-9 - 602: 15,-8 - 603: 15,-8 - 604: 14,-10 - 605: 15,-11 - 606: 13,-11 - 607: 13,-12 - 608: 14,-12 - 609: 19,-2 - 610: 20,-3 - 611: 20,-2 - 612: 21,-1 - 613: 20,-2 - 628: 19,1 - 629: 19,1 - 630: 20,1 - 631: 26,1 - 632: 26,2 - 633: 26,2 - 634: 25,2 - 635: 27,3 - 636: 28,3 - 637: 29,1 - 638: 27,1 - 639: 28,2 - 640: 29,3 - 641: 26,1 - 642: 25,2 - 643: 26,2 - 644: 27,3 - 645: 28,3 - 646: 29,3 - 647: 29,3 - 648: 11,-2 - 649: -3,-5 - 650: -5,-5 - 651: -5,-6 - 652: -6,-6 - 653: -7,-5 - 654: -6,-4 - 655: -10,-5 - 656: -9,-5 - 657: -9,-4 - 658: -9,-5 - 659: -13,-8 - 660: -12,-8 - 661: -13,-9 - 662: -14,-9 - 663: -14,-9 - 664: -13,-8 - 665: -12,-9 - 666: -14,-13 - 667: -15,-13 - 668: -16,-15 - 669: -16,-15 - 670: -16,-15 - 671: -16,-14 - 672: -9,30 - 673: -7,28 - 674: -8,27 - 675: -10,27 - 676: -10,27 - 677: -17,29 - 678: -16,29 - 679: -16,28 - 680: -16,27 - 681: -17,27 - 682: -18,29 - 683: -18,29 - 776: -45,-7 - 777: -46,-7 - 778: -45,-8 - 779: -44,-8 - 865: -39,1 - 866: -38,0 - 867: -37,1 - 868: -38,4 - 869: -37,6 - 870: -34,6 - 871: -37,7 - 872: -40,6 - 873: -41,5 - 874: -40,4 - 875: -37,4 - 876: -34,3 - 877: -32,1 - 878: -34,1 - 879: -35,1 - 880: -35,1 - 881: -33,0 - 882: -32,0 - 1013: -37,9 - 1014: -38,9 - 1015: -38,9 - 1016: -39,11 - 1017: -39,12 - 1018: -39,14 - 1019: -38,15 - 1020: -37,16 - 1021: -38,17 - 1022: -38,19 - 1023: -39,19 - 1024: -38,20 - 1025: -38,21 - 1026: -39,18 - 1027: -39,17 - 1028: -37,21 - 1029: -37,23 - 1030: -39,24 - 1031: -39,23 - 1032: -37,22 - 1033: -37,26 - 1034: -38,27 - 1035: -39,25 - 1036: -38,25 - 1037: -38,29 - 1038: -39,29 - 1039: -38,27 - 1040: -38,27 - 1041: -37,27 - 1042: -37,27 - 1043: -34,25 - 1044: -32,26 - 1045: -33,28 - 1046: -35,28 - 1047: -35,25 - 1048: -33,25 - 1049: -32,27 - 1050: -34,28 - 1051: -35,28 - 1052: -33,26 - 1053: -34,25 - 1054: -35,28 - 1055: -27,28 - 1056: -26,28 - 1057: -25,28 - 1058: -26,27 - 1059: -24,28 - 1060: -23,28 - 1061: -26,28 - 1062: -24,26 - 1063: -23,26 - 1064: -24,27 - 1065: -26,28 - 1066: -24,27 - 1067: -18,33 - 1068: -17,31 - 1069: -15,32 - 1070: -16,33 - 1071: -20,32 - 1072: -19,32 - 1073: -19,32 - 1074: -21,33 - 1075: -22,32 - 1076: -21,32 - 1077: -23,33 - 1078: -27,33 - 1079: -28,33 - 1080: -29,32 - 1081: -27,32 - 1082: -29,33 - 1083: -31,32 - 1084: -29,31 - 1085: -30,32 - 1086: -32,32 - 1087: -32,31 - 1088: -32,32 - 1089: -34,32 - 1090: -35,31 - 1091: -38,32 - 1092: -38,33 - 1093: -40,32 - 1094: -39,31 - 1095: -40,32 - 1096: -43,32 - 1097: -42,31 - 1098: -42,30 - 1099: -43,32 - 1100: -45,32 - 1101: -42,31 - 1102: -42,32 - 1103: -45,31 - 1104: -46,30 - 1105: -44,30 - 1106: -45,32 - 1107: -47,33 - 1108: -48,33 - 1109: -50,32 - 1110: -49,31 - 1111: -48,32 - 1112: -50,33 - 1113: -51,32 - 1114: -50,31 - 1115: -51,32 - 1116: -53,33 - 1117: -52,33 - 1118: -53,32 - 1119: -54,31 - 1120: -56,33 - 1121: -56,32 - 1122: -53,32 - 1123: -52,31 - 1124: -54,31 - 1125: -57,33 - 1126: -58,32 - 1127: -57,33 - 1128: -59,32 - 1129: -58,30 - 1130: -57,29 - 1131: -57,29 - 1132: -58,29 - 1133: -59,27 - 1134: -58,25 - 1135: -57,26 - 1136: -57,28 - 1137: -58,27 - 1138: -58,23 - 1139: -58,20 - 1140: -57,20 - 1141: -57,22 - 1142: -57,23 - 1143: -59,21 - 1144: -58,20 - 1145: -57,20 - 1146: -57,21 - 1147: -58,20 - 1148: -59,18 - 1149: -58,17 - 1150: -58,16 - 1151: -57,17 - 1152: -57,19 - 1153: -58,18 - 1154: -59,16 - 1155: -58,14 - 1156: -58,14 - 1157: -54,19 - 1158: -54,20 - 1159: -55,19 - 1160: -54,18 - 1161: -53,19 - 1162: -54,20 - 1163: -59,14 - 1164: -58,13 - 1165: -57,12 - 1166: -58,11 - 1167: -58,13 - 1168: -58,11 - 1169: -59,10 - 1170: -58,12 - 1171: -58,11 - 1172: -57,8 - 1173: -58,7 - 1174: -58,7 - 1175: -57,9 - 1176: -58,9 - 1177: -58,5 - 1178: -58,4 - 1179: -58,4 - 1180: -57,5 - 1181: -59,6 - 1182: -58,3 - 1183: -57,1 - 1184: -58,-1 - 1185: -57,-2 - 1186: -58,1 - 1187: -58,2 - 1188: -59,0 - 1189: -58,-1 - 1190: -58,-3 - 1191: -58,-4 - 1192: -57,-4 - 1193: -59,-4 - 1194: -58,-4 - 1195: -57,-2 - 1196: -59,-3 - 1197: -58,-5 - 1198: -58,-7 - 1199: -57,-6 - 1200: -58,-5 - 1201: -59,-7 - 1202: -59,-8 - 1203: -57,-9 - 1204: -57,-9 - 1206: -58,-10 - 1207: -59,-10 - 1238: -75,5 - 1239: -75,5 - 1240: -73,5 - 1241: -72,5 - 1242: -70,6 - 1243: -71,5 - 1244: -75,5 - 1245: -73,5 - 1246: -73,6 - 1247: -75,6 - 1248: -74,4 - 1249: -70,4 - 1250: -68,5 - 1251: -67,5 - 1252: -75,5 - 1253: -74,4 - 1254: -71,5 - 1255: -66,6 - 1256: -64,6 - 1257: -66,5 - 1258: -62,4 - 1259: -61,5 - 1260: -64,5 - 1261: -66,5 - 1262: -62,5 - 1263: -68,4 - 1264: -67,6 - 1265: -54,5 - 1266: -56,6 - 1267: -53,6 - 1268: -51,6 - 1269: -50,5 - 1270: -49,4 - 1271: -46,5 - 1272: -44,5 - 1273: -45,6 - 1274: -49,6 - 1275: -51,5 - 1276: -47,5 - 1277: -44,4 - 1278: -45,5 - 1279: -46,5 - 1280: -51,5 - 1281: -47,9 - 1282: -50,9 - 1283: -53,10 - 1284: -55,9 - 1285: -52,8 - 1286: -49,9 - 1287: -48,10 - 1288: -51,10 - 1289: -54,9 - 1290: -54,8 - 1291: -50,8 - 1292: -47,8 - 1293: -47,9 - 1294: -50,12 - 1295: -51,11 - 1296: -50,11 - 1297: -50,12 - 1298: -48,12 - 1299: -47,12 - 1300: -47,11 - 1301: -47,11 - 1302: -55,28 - 1303: -54,27 - 1304: -51,28 - 1305: -49,28 - 1306: -51,29 - 1307: -53,28 - 1308: -52,27 - 1309: -49,27 - 1310: -50,29 - 1311: -52,29 - 1312: -54,28 - 1313: -54,28 - 1314: -50,27 - 1315: -49,27 - 1316: -50,29 - 1546: -42,10 - 1547: -43,10 - 1548: -42,9 - 1549: -41,8 - 1550: -41,11 - 1551: -43,11 - 2068: -59,31 - 2069: -22,35 - 2070: -20,35 - 2071: -19,35 - 2072: -19,35 - 2073: -22,35 - 2074: -23,35 - 2075: -20,35 - 2076: -16,36 - 2077: -16,37 - 2078: -17,37 - 2079: -18,35 - 2080: -16,36 - 2081: -17,38 - 2082: -18,38 - 2083: -18,36 - 2084: -16,37 - 2085: -17,40 - 2086: -18,39 - 2087: -17,38 - 2088: -17,42 - 2089: -18,41 - 2090: -17,39 - 2091: -16,42 - 2092: -17,43 - 2093: -17,41 - 2094: -16,44 - 2095: -17,45 - 2096: -18,43 - 2097: -16,45 - 2098: -17,47 - 2099: -17,45 - 2100: -16,48 - 2101: -18,49 - 2102: -17,47 - 2103: -16,49 - 2104: -18,49 - 2105: -18,47 - 2106: -16,50 - 2107: -18,49 - 2108: -16,50 - 2109: -17,50 - 2110: -17,46 - 2111: -18,45 - 2112: -17,45 - 2113: -18,47 - 2114: -17,45 - 2115: -15,47 - 2116: -16,47 - 2117: -16,45 - 2118: -14,48 - 2119: -14,48 - 2120: -13,47 - 2121: -12,48 - 2122: -13,47 - 2123: -11,48 - 2124: -13,48 - 2125: -12,46 - 2126: -11,47 - 2127: -12,48 - 2128: -13,49 - 2129: -13,47 - 2130: -12,47 - 2131: -12,47 - 2232: -22,40 - 2233: -21,41 - 2234: -22,42 - 2235: -23,42 - 2236: -23,40 - 2237: -21,39 - 2238: -20,38 - 2239: -21,38 - 2240: -22,40 - 2241: -23,39 - 2242: -23,39 - 2243: -22,41 - 2244: -23,41 - 2245: -22,40 - 2246: -22,38 - 2247: -23,38 - 2248: -23,37 - 2249: -22,37 - 2250: -21,39 - 2251: -22,39 - 2252: -21,37 - 2253: -20,39 - 2254: -21,41 - 2255: -23,42 - 2256: -22,39 - 2257: -21,39 - 2258: -21,42 - 2259: -20,42 - 2260: -22,42 - 2261: -21,41 - 2262: -20,44 - 2263: -20,45 - 2264: -21,46 - 2265: -20,48 - 2266: -22,48 - 2267: -22,46 - 2268: -20,45 - 2269: -22,44 - 2270: -22,48 - 2271: -22,48 - 2272: -23,45 - 2273: -22,44 - 2274: -21,44 - 2275: -20,46 - 2276: -21,48 - 2277: -23,48 - 2278: -23,46 - 2279: -21,44 - 2280: -21,44 - 2281: -22,45 - 2282: -20,47 - 2283: -22,48 - 2284: -22,46 - 2285: -22,44 - 2286: -20,44 - 2287: -21,48 - 2288: -22,48 - 2289: -23,47 - 2290: -22,44 - 2334: -17,53 - 2335: -18,53 - 2336: -19,53 - 2337: -18,54 - 2338: -19,56 - 2339: -19,57 - 2340: -19,57 - 2341: -17,56 - 2342: -15,57 - 2343: -15,55 - 2344: -15,54 - 2345: -16,53 - 2346: -18,53 - 2347: -18,54 - 2348: -16,56 - 2349: -16,57 - 2350: -16,55 - 2351: -16,54 - 2352: -12,55 - 2353: -13,54 - 2354: -12,53 - 2355: -11,53 - 2356: -10,55 - 2357: -12,56 - 2358: -12,54 - 2359: -11,54 - 2360: -9,54 - 2361: -7,54 - 2362: -9,53 - 2363: -10,53 - 2364: -10,56 - 2365: -12,55 - 2366: -11,54 - 2367: -8,54 - 2368: -12,57 - 2369: -13,57 - 2370: -11,56 - 2371: -11,57 - 2372: -12,57 - 2373: -6,59 - 2374: -6,58 - 2375: -6,60 - 2376: -6,60 - 2377: -12,59 - 2378: -13,59 - 2379: -13,60 - 2380: -13,62 - 2381: -14,60 - 2382: -13,60 - 2383: -13,62 - 2384: -14,63 - 2385: -15,63 - 2386: -14,63 - 2387: -15,63 - 2388: -16,62 - 2389: -15,62 - 2390: -15,64 - 2391: -17,64 - 2392: -17,63 - 2393: -16,63 - 2394: -17,65 - 2395: -19,64 - 2396: -20,63 - 2397: -17,64 - 2398: -17,66 - 2399: -19,65 - 2400: -20,63 - 2401: -21,62 - 2402: -20,63 - 2403: -21,61 - 2404: -20,60 - 2405: -22,60 - 2406: -20,62 - 2407: -19,63 - 2408: -18,64 - 2409: -19,65 - 2410: -19,65 - 2411: -17,66 - 2412: -15,65 - 2413: -14,64 - 2414: -14,64 - 2415: -19,64 - 2416: -22,63 - 2417: -22,62 - 2418: -22,60 - 2419: -22,59 - 2420: -20,59 - 2421: -19,63 - 2422: -17,64 - 2423: -15,62 - 2424: -17,59 - 2425: -18,59 - 2426: -18,60 - 2427: -19,60 - 2428: -19,59 - 2429: -18,61 - 2430: -16,60 - 2431: -15,59 - 2515: -36,-9 - 2588: -41,-8 - 2589: -41,-8 - 2590: -42,-7 - 2591: -41,-5 - 2592: -41,-4 - 2593: -40,-3 - 2594: -38,-5 - 2595: -38,-7 - 2596: -40,-7 - 2597: -41,-4 - 2598: -38,-3 - 2599: -38,-2 - 2600: -41,-3 - 2601: -40,-5 - 2602: -38,-7 - 2603: -37,-7 - 2604: -38,-4 - 2605: -38,-4 - 2606: -39,-5 - 2607: -38,-6 - 2608: -35,-8 - 2609: -33,-7 - 2610: -33,-6 - 2611: -35,-7 - 2612: -34,-9 - 2613: -33,-8 - 2614: -34,-7 - 2615: -33,-10 - 2616: -33,-9 - 2617: -35,-6 - 2618: -37,-7 - 2619: -38,-7 - 2620: -35,-7 - 2621: -37,-7 - 2622: -37,-6 - 2623: -38,-8 - 2624: -40,-7 - 2625: -41,-5 - 2626: -41,-4 - 2627: -41,-5 - 2628: -41,-7 - 2629: -40,-7 - 2630: -39,-4 - 2631: -41,-7 - 2632: -42,-7 - 2633: -42,-8 - 2634: -42,-6 - 2635: -42,-3 - 2636: -42,-2 - 2637: -40,-2 - 2638: -38,-2 - 2639: -37,-2 - 2640: -37,-3 - 2641: -37,-5 - 2642: -37,-6 - 2643: -36,-6 - 2644: -34,-6 - 2645: -32,-7 - 2646: -32,-8 - 2647: -33,-11 - 2648: -32,-11 - 2649: -33,-11 - 2650: -35,-11 - 2651: -35,-10 - 2652: -35,-9 - 2653: -36,-10 - 2654: -36,-11 - 2655: -37,-8 - 2656: -37,-8 - 2657: -38,-8 - 2658: -40,-8 - 2984: 6,12 - 2985: 6,11 - 2986: 7,11 - 2987: 7,12 - 2988: 6,13 - 2989: 7,14 - 2990: 9,15 - 2991: 10,15 - 2992: 8,15 - 2993: 7,14 - 2994: 9,14 - 2995: 10,15 - 2996: 9,17 - 2997: 7,15 - 2998: 6,14 - 2999: 9,14 - 3000: 11,16 - 3001: 10,19 - 3002: 10,20 - 3003: 9,19 - 3004: 10,18 - 3005: 11,18 - 3006: 10,20 - 3007: 10,17 - 3008: 8,15 - 3009: 7,15 - 3010: 7,13 - 3011: 8,12 - 3012: 9,11 - 3013: 9,11 - 3014: 10,12 - 3015: 11,11 - 3016: 11,11 - 3017: 11,13 - 3018: 10,13 - 3019: 3,17 - 3020: 1,16 - 3021: -1,15 - 3022: -1,14 - 3023: 2,15 - 3024: 2,17 - 3025: -1,16 - 3026: 0,14 - 3027: 3,14 - 3028: 1,16 - 3029: -1,16 - 3030: -1,15 - 3031: 3,16 - 3032: 3,17 - 3033: 4,15 - 3034: 3,14 - 3035: 1,14 - 3036: -1,15 - 3037: -2,14 - 3038: -2,17 - 3039: -2,17 - 3040: 1,17 - 3041: 2,20 - 3042: 1,19 - 3043: 2,19 - 3044: 4,20 - 3045: 2,21 - 3046: 1,19 - 3047: 3,20 - 3048: 3,22 - 3049: 2,21 - 3050: 2,21 - 3051: 2,23 - 3052: 2,26 - 3053: 2,28 - 3054: 2,31 - 3055: 2,34 - 3056: 4,34 - 3057: 4,33 - 3058: 4,33 - 3059: 4,31 - 3060: 4,29 - 3061: 4,27 - 3062: 4,25 - 3063: 4,23 - 3064: 4,21 - 3065: 4,19 - 3066: 3,19 - 3067: 3,20 - 3068: 3,21 - 3069: 3,23 - 3070: 3,25 - 3071: 3,28 - 3072: 3,30 - 3073: 3,32 - 3074: 3,33 - 3075: 3,33 - 3076: 2,34 - 3077: 2,33 - 3078: 7,29 - 3079: 7,28 - 3080: 9,28 - 3081: 11,28 - 3082: 12,29 - 3083: 10,30 - 3084: 8,30 - 3085: 9,28 - 3086: 12,30 - 3087: 11,31 - 3088: 8,31 - 3089: 9,29 - 3090: 11,29 - 3091: 10,30 - 3092: 8,25 - 3093: 7,26 - 3094: 7,24 - 3095: 7,23 - 3096: 6,22 - 3097: 7,25 - 3098: 9,25 - 3099: 9,23 - 3100: 8,22 - 3101: 10,24 - 3102: 8,25 - 3103: 7,24 - 3104: 7,23 - 3105: 6,25 - 3106: 8,36 - 3107: 8,37 - 3108: 6,36 - 3109: 7,35 - 3110: 8,34 - 3111: 10,34 - 3112: 8,35 - 3113: 6,34 - 3114: 8,33 - 3115: 11,34 - 3116: 11,36 - 3117: 10,37 - 3118: 12,35 - 3119: 11,33 - 3120: 11,35 - 3121: 9,37 - 3122: 9,35 - 3123: 11,34 - 3124: 11,37 - 3125: 9,36 - 3126: 7,36 - 3127: 7,37 - 3128: 6,35 - 3129: 7,34 - 3130: 8,33 - 3131: 9,33 - 3132: 6,33 - 3133: 12,34 - 3134: 12,37 - 3135: 11,34 - 3136: 4,40 - 3137: 2,42 - 3138: 0,41 - 3139: 1,40 - 3140: 0,40 - 3141: -1,39 - 3142: 0,37 - 3143: 4,40 - 3144: 0,38 - 3145: 0,38 - 3146: 2,36 - 3147: 4,36 - 3148: 2,38 - 3149: 0,37 - 3150: -1,37 - 3151: 1,38 - 3152: 4,39 - 3153: 2,40 - 3154: 0,39 - 3155: 2,37 - 3156: 3,40 - 3157: 2,39 - 3158: 3,36 - 3159: 2,36 - 3160: 2,39 - 3161: -1,39 - 3162: 1,37 - 3488: -2,8 - 3489: -2,8 - 3490: -2,9 - 3491: -1,10 - 3492: 1,9 - 3493: 0,8 - 3494: -1,8 - 3495: -1,9 - 3496: 1,10 - 3497: 1,9 - 3498: -2,9 - 3499: -3,9 - 3500: -3,10 - 3501: -3,10 - 3672: -60,50 - 3673: -60,51 - 3674: -61,53 - 3675: -63,54 - 3676: -64,55 - 3677: -65,54 - 3678: -65,52 - 3679: -63,51 - 3680: -61,51 - 3681: -63,50 - 3682: -65,53 - 3683: -62,53 - 3684: -62,53 - 3685: -64,52 - 3686: -60,54 - 3687: -59,55 - 3688: -62,54 - 3689: -61,54 - 3690: -58,53 - 3691: -57,53 - 3692: -54,54 - 3693: -51,54 - 3694: -52,55 - 3695: -54,56 - 3696: -55,56 - 3697: -55,54 - 3698: -53,54 - 3699: -52,56 - 3700: -54,57 - 3701: -56,57 - 3702: -57,56 - 3703: -57,55 - 3704: -56,54 - 3705: -58,55 - 3706: -58,58 - 3707: -55,57 - 3708: -53,57 - 3709: -52,57 - 3710: -51,56 - 3711: -52,55 - 3712: -54,55 - 3713: -55,57 - 3714: -54,58 - 3715: -52,57 - 3716: -49,58 - 3717: -48,58 - 3718: -47,59 - 3719: -48,61 - 3720: -49,61 - 3721: -48,58 - 3722: -47,60 - 3723: -47,62 - 3724: -49,61 - 3725: -49,59 - 3726: -48,58 - 3727: -47,59 - 3728: -48,55 - 3729: -49,55 - 3730: -47,55 - 3731: -47,55 - 3732: -47,54 - 3733: -47,54 - 3734: -48,50 - 3735: -49,50 - 3736: -48,51 - 3737: -47,51 - 3738: -61,60 - 3739: -61,60 - 3740: -60,61 - 3741: -58,61 - 3742: -56,60 - 3743: -53,60 - 3744: -53,61 - 3745: -55,61 - 3746: -59,60 - 3747: -60,60 - 3748: -57,60 - 3749: -54,60 - 3750: -53,60 - 3751: -52,62 - 3752: -52,63 - 3753: -50,63 - 3754: -49,65 - 3755: -51,65 - 3756: -52,64 - 3757: -53,63 - 3758: -52,64 - 3759: -50,65 - 3760: -47,64 - 3761: -45,64 - 3762: -43,64 - 3763: -43,65 - 3764: -43,64 - 3765: -43,62 - 3766: -42,62 - 3767: -42,64 - 3768: -44,65 - 3769: -43,62 - 3770: -43,61 - 3771: -43,63 - 3772: -47,64 - 3773: -49,65 - 3774: -50,65 - 3775: -48,64 - 3776: -48,65 - 3777: -50,64 - 3778: -53,82 - 3779: -53,82 - 3780: -53,83 - 3781: -51,84 - 3782: -51,86 - 3783: -52,89 - 3784: -53,89 - 3785: -53,88 - 3786: -52,87 - 3787: -51,89 - 3788: -53,90 - 3789: -53,89 - 3790: -53,87 - 3791: -53,85 - 3792: -52,83 - 3793: -51,83 - 3794: -51,86 - 3795: -51,89 - 3796: -52,89 - 3797: -56,89 - 3798: -56,89 - 3799: -55,88 - 3800: -55,90 - 3801: -56,90 - 3802: -55,86 - 3803: -55,86 - 3804: -56,86 - 3805: -56,86 - 3806: -55,83 - 3807: -55,84 - 3808: -56,83 - 3809: -55,82 - 3810: -55,82 - 3811: -54,83 - 3812: -54,83 - 3813: -54,89 - 3814: -57,86 - 3815: -57,86 - 3816: -58,89 - 3817: -59,89 - 3818: -61,88 - 3819: -61,87 - 3820: -61,85 - 3821: -59,83 - 3822: -59,83 - 3823: -58,86 - 3824: -60,88 - 3825: -61,88 - 3826: -61,86 - 3827: -62,85 - 3828: -62,84 - 3829: -61,83 - 3830: -60,86 - 3831: -61,88 - 3832: -62,89 - 3833: -61,87 - 3834: -60,85 - 3835: -59,84 - 3836: -59,83 - 3837: -60,84 - 3838: -62,84 - 3839: -60,87 - 3840: -60,89 - 3841: -60,89 - 3842: -58,89 - 3882: -61,58 - 3883: -62,58 - 3884: -61,57 - 3885: -61,57 - 3886: -61,58 - 3887: -61,57 - 3888: -60,57 - 4280: -58,52 - 4281: -58,50 - 4282: -58,50 - 4283: -57,50 - 4284: -57,51 - 4285: -58,49 - 4286: -57,49 - 4287: -55,52 - 4288: -55,50 - 4289: -54,49 - 4290: -54,51 - 4291: -52,52 - 4292: -52,51 - 4293: -52,50 - 4294: -51,49 - 4295: -51,51 - 4296: -51,51 - 4468: -83,33 - 4469: -82,32 - 4470: -82,31 - 4471: -82,30 - 4472: -81,30 - 4473: -80,33 - 4474: -79,33 - 4475: -78,33 - 4476: -80,32 - 4477: -82,32 - 4478: -81,31 - 4479: -79,30 - 4480: -77,30 - 4481: -77,32 - 4482: -78,31 - 4483: -78,28 - 4484: -78,29 - 4485: -79,31 - 4486: -77,32 - 4487: -80,33 - 4488: -81,30 - 4489: -80,32 - 4490: -81,33 - 4491: -67,31 - 4492: -68,31 - 4493: -68,30 - 4494: -67,28 - 4495: -67,26 - 4496: -66,26 - 4497: -64,27 - 4498: -67,27 - 4499: -65,26 - 4500: -64,25 - 4501: -65,28 - 4502: -67,28 - 4503: -68,26 - 4504: -67,25 - 4505: -67,30 - 4506: -65,30 - 4507: -64,30 - 4508: -64,32 - 4509: -65,33 - 4510: -66,33 - 4511: -65,31 - 4512: -65,34 - 4513: -66,34 - 4514: -68,34 - 4515: -70,33 - 4516: -68,33 - 4517: -70,34 - 4518: -72,35 - 4519: -74,34 - 4520: -73,33 - 4521: -71,34 - 4522: -73,35 - 4523: -75,34 - 4524: -75,33 - 4525: -75,31 - 4526: -75,30 - 4527: -74,32 - 4528: -74,32 - 4529: -74,29 - 4530: -75,26 - 4531: -75,27 - 4532: -75,27 - 4533: -75,25 - 4534: -74,23 - 4535: -74,26 - 4536: -75,26 - 4537: -76,25 - 4538: -77,25 - 4539: -76,24 - 4540: -76,26 - 4541: -76,25 - 4542: -74,23 - 4543: -74,20 - 4544: -75,19 - 4545: -75,22 - 4546: -75,23 - 4547: -74,22 - 4548: -72,23 - 4549: -72,21 - 4550: -72,20 - 4551: -70,19 - 4552: -70,22 - 4553: -70,22 - 4554: -68,23 - 4555: -65,22 - 4556: -63,22 - 4557: -64,20 - 4558: -65,19 - 4559: -66,21 - 4560: -65,23 - 4561: -68,22 - 4562: -70,21 - 4563: -70,19 - 4564: -66,19 - 4565: -66,20 - 4566: -69,20 - 4567: -71,20 - 4568: -67,20 - 4569: -66,23 - 4570: -69,23 - 4571: -70,22 - 4572: -66,22 - 4573: -65,20 - 4574: -65,19 - 4575: -68,20 - 4576: -81,23 - 4577: -83,23 - 4578: -85,23 - 4579: -86,23 - 4580: -87,26 - 4581: -86,27 - 4582: -85,27 - 4583: -82,27 - 4584: -81,26 - 4585: -80,25 - 4586: -80,23 - 4587: -80,23 - 4588: -79,26 - 4589: -80,27 - 4590: -80,24 - 4591: -81,23 - 4592: -82,22 - 4593: -84,23 - 4594: -86,25 - 4595: -86,26 - 4596: -86,26 - 4597: -86,23 - 4598: -85,30 - 4599: -86,30 - 4600: -86,29 - 4601: -85,30 - 4602: -85,21 - 4603: -86,21 - 4604: -86,20 - 4605: -85,21 - 4606: -82,19 - 4607: -82,19 - 4608: -82,20 - 4609: -83,18 - 4610: -82,18 - 4611: -80,19 - 4612: -78,19 - 4613: -79,19 - 4614: -81,19 - 4615: -80,18 - 4616: -79,18 - 4617: -77,19 - 4618: -77,21 - 4619: -77,22 - 4620: -78,21 - 4621: -77,20 - 4622: -77,21 - 4623: -77,20 - 4624: -78,18 - 4625: -80,19 - 4626: -81,20 - 4627: -82,19 - 4628: -80,20 - 4629: -80,20 - 4630: -74,17 - 4631: -75,16 - 4632: -73,15 - 4633: -73,16 - 4634: -74,17 - 4635: -73,16 - 4636: -72,15 - 4637: -72,16 - 4638: -74,17 - 4639: -74,17 - 4648: -62,42 - 4649: -63,42 - 4650: -64,41 - 4651: -64,39 - 4652: -64,41 - 4653: -65,40 - 4654: -65,39 - 4655: -64,40 - 4656: -63,41 - 4657: -61,41 - 4658: -61,38 - 4659: -62,38 - 4660: -61,41 - 4661: -63,41 - 4662: -63,39 - 4663: -62,39 - 4664: -63,42 - 4665: -64,41 - 4666: -64,41 - 4667: -63,39 - 4668: -61,40 - 4669: -62,42 - 4670: -64,41 - 4671: -65,40 - 4672: -65,39 - 4673: -65,40 - 4674: -64,41 - 4675: -62,42 - 4676: -64,44 - 4677: -65,44 - 4678: -64,44 - 4679: -61,45 - 4680: -63,45 - 4681: -64,45 - 4682: -64,44 - 4683: -62,44 - 4684: -62,45 - 4685: -64,45 - 4745: -73,49 - 4746: -73,48 - 4747: -73,47 - 4748: -71,48 - 4749: -72,49 - 4750: -72,48 - 4751: -70,49 - 4752: -70,49 - 4753: -70,48 - 4754: -69,47 - 4755: -71,48 - 4756: -72,48 - 4757: -72,49 - 4799: -67,49 - 4800: -68,49 - 4801: -67,50 - 4802: -67,50 - 4803: -66,48 - 4804: -67,47 - 4805: -66,46 - 4806: -66,47 - 4807: -67,46 - 4812: -67,45 - 4813: -67,44 - 4814: -68,42 - 4815: -68,40 - 4816: -68,38 - 4817: -67,38 - 4818: -67,43 - 4819: -67,46 - 4820: -67,45 - 4821: -67,41 - 4822: -67,37 - 4823: -68,37 - 4824: -70,37 - 4825: -72,37 - 4826: -74,37 - 4827: -76,37 - 4828: -76,39 - 4829: -76,41 - 4830: -76,43 - 4831: -76,45 - 4832: -76,48 - 4833: -75,48 - 4834: -75,45 - 4835: -75,43 - 4836: -75,43 - 4837: -76,47 - 4838: -76,50 - 4839: -76,52 - 4840: -76,50 - 4841: -74,52 - 4842: -74,52 - 4843: -72,51 - 4844: -72,53 - 4845: -72,52 - 4846: -71,51 - 4847: -70,53 - 4848: -71,55 - 4849: -72,55 - 4850: -72,52 - 4851: -72,52 - 4852: -71,55 - 4853: -72,55 - 4854: -72,53 - 4855: -70,51 - 4856: -70,53 - 4857: -70,55 - 4858: -71,56 - 4859: -71,55 - 4860: -70,54 - 4890: -76,54 - 4891: -77,54 - 4892: -78,54 - 4893: -78,53 - 4894: -68,57 - 4895: -68,56 - 4896: -68,55 - 4897: -68,52 - 4898: -68,50 - 4899: -61,35 - 4900: -62,36 - 4901: -62,36 - 4902: -64,36 - 4903: -67,36 - 4904: -68,36 - 4905: -68,38 - 4906: -68,40 - 4907: -68,39 - 4908: -71,43 - 4909: -70,43 - 4910: -71,44 - 4911: -72,44 - 4912: -73,44 - 4913: -71,43 - 4914: -71,41 - 4915: -72,40 - 4916: -72,42 - 4917: -72,42 - 4918: -73,40 - 4919: -72,39 - 4920: -70,39 - 4921: -70,41 - 4922: -71,43 - 4923: -72,44 - 4924: -72,44 - 4925: -73,43 - 4926: -61,33 - 4927: -60,33 - 4928: -62,33 - 4929: -61,32 - 4930: -60,31 - 4931: -60,32 - 4932: -61,33 - 4933: -62,32 - 4934: -62,31 - 4935: -61,31 - 5024: -69,16 - 5025: -71,17 - 5026: -71,16 - 5027: -70,15 - 5028: -69,16 - 5029: -71,16 - 5030: -71,19 - 5031: -72,20 - 5032: -71,22 - 5033: -71,23 - 5034: -72,21 - 5035: -69,19 - 5036: -71,21 - 5037: -71,22 - 5038: -72,23 - 5039: -72,23 - 5040: -68,22 - 5041: -69,23 - 5042: -69,22 - 5043: -65,22 - 5044: -64,23 - 5045: -64,22 - 5046: -65,19 - 5047: -66,19 - 5048: -68,19 - 5049: -68,19 - 5050: -70,19 - 5051: -72,20 - 5052: -70,20 - 5053: -66,19 - 5054: -63,19 - 5055: -64,20 - 5056: -64,21 - 5057: -68,20 - 5058: -70,22 - 5244: -84,32 - 5245: -85,33 - 5246: -84,35 - 5247: -84,38 - 5248: -84,40 - 5249: -84,43 - 5250: -83,45 - 5251: -82,46 - 5252: -80,46 - 5253: -80,45 - 5254: -82,46 - 5255: -84,45 - 5256: -82,43 - 5257: -81,44 - 5258: -84,45 - 5259: -85,46 - 5260: -82,44 - 5261: -80,43 - 5262: -82,42 - 5263: -84,42 - 5264: -83,41 - 5265: -79,42 - 5266: -80,43 - 5267: -83,40 - 5268: -81,39 - 5269: -82,40 - 5270: -83,41 - 5271: -82,40 - 5272: -80,39 - 5273: -83,39 - 5274: -84,38 - 5275: -82,36 - 5276: -80,35 - 5277: -80,36 - 5278: -82,39 - 5279: -81,41 - 5280: -80,42 - 5281: -81,44 - 5282: -64,14 - 5283: -65,14 - 5284: -65,13 - 5285: -65,11 - 5286: -64,10 - 5287: -64,13 - 5288: -65,14 - 5289: -65,12 - 5290: -64,11 - 5291: -62,12 - 5292: -62,14 - 5293: -63,11 - 5294: -61,11 - 5295: -61,13 - 5296: -62,14 - 5297: -62,12 - 5298: -62,10 - 5330: -67,8 - 5331: -66,8 - 5332: -63,8 - 5333: -62,8 - 5334: -62,8 - 5335: -65,8 - 5336: -67,8 - 5337: -68,9 - 5338: -68,12 - 5339: -67,13 - 5340: -67,13 - 5341: -67,15 - 5342: -67,16 - 5343: -66,17 - 5344: -63,16 - 5345: -62,16 - 5346: -62,16 - 5347: -64,17 - 5348: -64,16 - 5349: -62,17 - 5350: -61,19 - 5351: -62,19 - 5352: -61,20 - 5353: -61,21 - 5354: -61,23 - 5355: -62,22 - 5356: -61,23 - 5357: -61,24 - 5358: -62,26 - 5359: -62,27 - 5360: -62,28 - 5361: -61,36 - 5362: -61,36 - 5363: -55,44 - 5364: -45,50 - 5365: -45,51 - 5366: -45,53 - 5367: -44,55 - 5368: -43,55 - 5369: -42,55 - 5370: -41,55 - 5371: -41,54 - 5372: -39,55 - 5373: -38,55 - 5374: -39,55 - 5375: -38,54 - 5376: -35,54 - 5377: -34,55 - 5378: -35,55 - 5379: -33,54 - 5380: -32,54 - 5381: -33,53 - 5382: -33,51 - 5383: -32,49 - 5384: -31,49 - 5385: -30,50 - 5386: -30,50 - 5387: -28,50 - 5388: -27,50 - 5389: -26,50 - 5390: -26,49 - 5391: -24,51 - 5392: -24,51 - 5393: -22,51 - 5394: -20,51 - 5395: -20,51 - 5396: -23,51 - 5397: -26,50 - 5398: -26,48 - 5399: -25,46 - 5400: -25,48 - 5401: -26,47 - 5402: -26,45 - 5403: -25,43 - 5404: -25,44 - 5405: -26,44 - 5406: -26,42 - 5407: -25,40 - 5408: -25,41 - 5409: -26,41 - 5410: -26,38 - 5411: -25,37 - 5412: -25,38 - 5413: -26,38 - 5414: -26,36 - 5415: -26,36 - 5416: -26,39 - 5417: -26,41 - 5418: -25,39 - 5419: -25,39 - 5420: -26,40 - 5421: -26,40 - 5422: -26,41 - 5423: -26,43 - 5424: -26,43 - 5425: -13,51 - 5426: -12,51 - 5427: -10,51 - 5428: -8,51 - 5429: -8,50 - 5430: -9,49 - 5431: -9,47 - 5432: -8,47 - 5433: -6,47 - 5434: -4,47 - 5435: -5,46 - 5436: -5,46 - 5437: -3,47 - 5438: -2,47 - 5439: -2,46 - 5440: 0,46 - 5441: 0,47 - 5442: 0,46 - 5443: 2,47 - 5444: 2,47 - 5445: 1,46 - 5446: 4,46 - 5447: 4,47 - 5448: 4,47 - 5449: 5,46 - 5450: 7,47 - 5451: 7,48 - 5452: 7,48 - 5453: 9,48 - 5454: 10,48 - 5455: 11,48 - 5456: 10,48 - 5457: 13,48 - 5458: 14,48 - 5459: 15,48 - 5460: 16,48 - 5461: 15,47 - 5462: 14,45 - 5463: 15,46 - 5464: 14,45 - 5465: 15,45 - 5466: 15,46 - 5467: 14,44 - 5468: 14,42 - 5469: 15,42 - 5470: 15,42 - 5471: 15,41 - 5472: 15,40 - 5473: 14,41 - 5474: 14,39 - 5475: 14,39 - 5476: 12,40 - 5477: 10,39 - 5478: 12,39 - 5479: 11,40 - 5480: 9,40 - 5481: 8,39 - 5482: 8,40 - 5483: 8,39 - 5484: 8,39 - 5485: 7,40 - 5486: 7,41 - 5487: 7,43 - 5488: 6,45 - 5489: 6,44 - 5490: 6,46 - 5491: 6,45 - 5492: 6,45 - 5493: 3,47 - 5494: 2,46 - 5495: 2,46 - 5496: 1,47 - 5497: 1,47 - 5498: 0,46 - 5499: -3,45 - 5500: -3,43 - 5501: -3,42 - 5502: -4,44 - 5503: -4,43 - 5504: -4,42 - 5505: -3,40 - 5506: -3,41 - 5507: -4,40 - 5508: -4,40 - 5509: -4,44 - 5510: -4,44 - 5511: -3,40 - 5512: -3,38 - 5513: -3,37 - 5514: -5,36 - 5515: -5,36 - 5516: -4,37 - 5517: -6,36 - 5518: -7,36 - 5519: -8,37 - 5520: -9,36 - 5521: -9,37 - 5522: -10,36 - 5523: -9,36 - 5524: -8,37 - 5525: -9,36 - 5526: 14,37 - 5527: 14,37 - 5528: 14,35 - 5529: 15,36 - 5530: 15,36 - 5531: 14,33 - 5532: 15,35 - 5533: 15,34 - 5534: 15,34 - 5535: 15,34 - 5536: 14,34 - 5537: 17,34 - 5538: 20,35 - 5539: 18,35 - 5540: 17,34 - 5541: 19,34 - 5542: 19,35 - 5543: 20,35 - 5544: 22,35 - 5545: 22,34 - 5546: 23,34 - 5547: 23,33 - 5548: 21,35 - 5549: 20,35 - 5550: 18,35 - 5551: 23,32 - 5552: 22,31 - 5553: 22,30 - 5554: 23,31 - 5555: 22,30 - 5556: 23,28 - 5557: 23,27 - 5558: 23,27 - 5559: 22,26 - 5560: 23,25 - 5561: 23,23 - 5562: 23,22 - 5563: 22,23 - 5564: 22,24 - 5565: 22,24 - 5566: 22,23 - 5567: 21,26 - 5568: 18,26 - 5569: 17,25 - 5570: 19,25 - 5571: 16,26 - 5572: 15,26 - 5573: 14,25 - 5574: 15,23 - 5575: 14,22 - 5576: 14,22 - 5577: 13,20 - 5578: 14,21 - 5579: 13,21 - 5580: 14,19 - 5581: 14,18 - 5582: 14,18 - 5583: 14,18 - 5584: 13,16 - 5585: 13,16 - 5586: 13,17 - 5587: 14,16 - 5588: 14,15 - 5589: 13,14 - 5590: 13,14 - 5591: 14,13 - 5592: 14,13 - 5593: 13,12 - 5594: 14,12 - 5595: 13,11 - 5596: 14,10 - 5597: 13,11 - 5598: 13,9 - 5599: 14,9 - 5600: 14,8 - 5601: 12,8 - 5602: 12,8 - 5603: 11,8 - 5604: 10,8 - 5605: 10,8 - 5606: 9,9 - 5607: 8,9 - 5608: 7,9 - 5609: 6,9 - 5610: 4,9 - 5611: 4,9 - 5612: 4,10 - 5613: 4,12 - 5614: 3,12 - 5615: 2,12 - 5616: 1,12 - 5617: -1,12 - 5618: -1,12 - 5619: -3,12 - 5620: -4,12 - 5621: -5,12 - 5622: -6,11 - 5623: -6,10 - 5624: -7,10 - 5625: -6,11 - 5626: -6,14 - 5627: -5,14 - 5628: -4,16 - 5629: -5,17 - 5630: -7,17 - 5631: -8,17 - 5632: -8,17 - 5633: -9,17 - 5634: -9,17 - 5635: -7,18 - 5636: -7,19 - 5637: -7,21 - 5638: -7,22 - 5639: -7,23 - 5640: -8,25 - 5641: -9,25 - 5642: -9,24 - 5643: -8,24 - 5644: -8,25 - 5645: -9,25 - 5646: -10,25 - 5647: -8,15 - 5648: -9,15 - 5649: -10,14 - 5650: -10,14 - 5651: -8,12 - 5652: -9,12 - 5653: -9,12 - 5654: -10,11 - 5655: -9,8 - 5656: -9,9 - 5657: -10,9 - 5658: -9,8 - 5659: -21,9 - 5660: -20,9 - 5661: -20,10 - 5662: -21,12 - 5663: -21,11 - 5664: -20,13 - 5665: -20,14 - 5666: -21,16 - 5667: -21,14 - 5668: -20,18 - 5669: -21,17 - 5670: -21,16 - 5671: -20,18 - 5672: -17,20 - 5673: -16,20 - 5674: -18,20 - 5675: -20,20 - 5676: -20,20 - 5677: -21,20 - 5678: -20,22 - 5679: -20,23 - 5680: -21,24 - 5681: -20,23 - 5682: -20,26 - 5683: -20,27 - 5684: -20,28 - 5685: -21,26 - 5686: -21,24 - 5687: -20,21 - 5688: -22,20 - 5689: -22,22 - 5690: -23,22 - 5691: -24,21 - 5692: -23,21 - 5693: -25,21 - 5694: -27,21 - 5695: -28,21 - 5696: -29,21 - 5697: -30,21 - 5698: -31,20 - 5699: -31,20 - 5700: -32,18 - 5701: -31,17 - 5702: -31,15 - 5703: -31,15 - 5704: -31,13 - 5705: -31,13 - 5706: -32,12 - 5707: -33,12 - 5708: -34,12 - 5709: -34,11 - 5710: -34,11 - 5711: -34,12 - 5712: -34,10 - 5713: -34,9 - 5714: -35,12 - 5715: -34,12 - 5716: -33,13 - 5717: -32,13 - 5718: -31,13 - 5719: -31,14 - 5720: -45,9 - 5721: -45,9 - 5722: -45,10 - 5723: -45,11 - 5724: -45,12 - 5725: -45,13 - 5726: -45,14 - 5727: -46,14 - 5728: -48,14 - 5729: -49,14 - 5730: -50,14 - 5731: -51,14 - 5732: -51,14 - 5733: -51,16 - 5734: -51,17 - 5735: -51,18 - 5736: -51,19 - 5737: -51,20 - 5738: -51,21 - 5739: -51,21 - 5740: -49,21 - 5741: -48,21 - 5742: -47,21 - 5743: -46,21 - 5744: -46,21 - 5745: -42,20 - 5746: -42,20 - 5747: -45,21 - 5748: -46,20 - 5749: -45,20 - 5750: -42,18 - 5751: -42,18 - 5752: -42,17 - 5753: -43,18 - 5754: -42,17 - 5755: -42,17 - 5756: -46,18 - 5757: -45,17 - 5758: -45,17 - 5759: -46,18 - 5760: -48,18 - 5761: -48,17 - 5762: -49,19 - 5763: -49,18 - 5764: -49,17 - 5765: -48,19 - 5766: -45,21 - 5767: -45,22 - 5768: -45,23 - 5769: -46,23 - 5770: -45,24 - 5771: -46,25 - 5772: -46,25 - 5773: -45,26 - 5774: -46,27 - 5775: -45,27 - 5776: -46,28 - 5777: -46,27 - 5778: -25,-12 - 5779: -25,-11 - 5780: -26,-12 - 5781: -26,-13 - 5782: -24,-13 - 5783: -24,-12 - 5784: -25,-13 - 5785: -25,-14 - 5786: -24,-14 - 5787: -24,-12 - 5788: -25,-12 - 5789: -26,-13 - 5790: -24,-13 - 5791: -25,-11 - 5792: -26,-13 - 5793: -25,-13 - 5794: -25,-11 - 5795: -26,-12 - 5796: -26,-13 - 5797: -25,-14 - 5798: -26,-14 - 5838: -10,57 - 5839: -10,57 - 5840: -9,57 - 5841: -8,57 - 5842: -8,57 - 5843: -10,57 - 5844: -11,57 - 5845: -8,56 - 5846: -7,56 - 5847: -7,55 - 5848: -8,56 - 5849: -8,56 - 5850: -8,56 - 5851: -7,56 - 5852: -9,59 - 5853: -8,59 - 5854: -9,59 - 5855: -10,59 - 5856: -10,60 - 5857: -10,61 - 5858: -9,61 - 5859: -9,60 - 5860: -8,59 - 5861: -8,60 - 5862: -8,61 - 5863: -10,61 - 5864: -10,60 - 5865: -9,59 - 5866: -8,59 - 5867: -9,61 - 5868: -10,61 - 5869: -10,60 - 5870: -9,60 - 5871: -8,61 - 5872: -10,60 - 5873: -8,59 - 5874: -8,60 - 5875: -9,60 - 5876: -8,61 - 5877: -10,61 - 5878: -14,61 - 5879: -14,61 - 5880: -17,62 - 5881: -19,62 - 5882: -18,63 - 5883: -18,64 - 5884: -18,65 - 5885: -16,65 - 5886: -18,66 - 5887: -20,65 - 5888: -19,66 - 5889: -21,64 - 5890: -15,66 - 5891: -14,65 - 5892: -16,66 - 5893: -13,64 - 5894: -14,59 - 5895: -21,59 - 5896: -22,59 - 5897: -22,61 - 5898: -22,62 - 5899: -16,64 - 5900: -18,62 - 5901: -27,53 - 5902: -27,53 - 5903: -51,62 - 5904: -51,62 - 5905: -51,63 - 5906: -51,64 - 5907: -50,64 - 5908: -49,64 - 5909: -49,64 - 5910: -51,64 - 5911: -53,65 - 5912: -53,65 - 5913: -44,63 - 5914: -44,62 - 5915: -44,62 - 5916: -56,61 - 5917: -54,61 - 5918: -54,61 - 5919: -58,56 - 5920: -51,55 - 5921: -51,54 - 5922: -51,53 - 5923: -52,53 - 5924: -54,53 - 5925: -55,53 - 5926: -57,53 - 5927: -57,53 - 5928: -52,53 - 5929: -54,54 - 5930: -55,54 - 5931: -55,56 - 5932: -56,56 - 5933: -57,57 - 5934: -57,57 - 5935: -57,34 - 5936: -58,34 - 5937: -59,35 - 5938: -59,35 - 5939: -58,35 - 5940: -58,35 - 5941: -56,35 - 5942: -57,36 - 5943: -58,36 - 5944: -56,37 - 5945: -58,37 - 5946: -58,37 - 5947: -58,36 - 5948: -57,37 - 5949: -58,38 - 5950: -59,37 - 5951: -57,37 - 5952: -58,39 - 5953: -59,38 - 5954: -58,37 - 5955: -57,38 - 5956: -58,40 - 5957: -59,40 - 5958: -59,41 - 5959: -59,44 - 5960: -59,45 - 5961: -59,46 - 5962: -57,46 - 5963: -57,45 - 5964: -57,42 - 5965: -57,41 - 5966: -57,40 - 5967: -57,38 - 5968: -58,39 - 5969: -58,40 - 5970: -58,42 - 5971: -58,43 - 5972: -58,45 - 5973: -58,45 - 5974: -58,46 - 5975: -58,46 - 5976: -59,43 - 5977: -59,42 - 5978: -58,42 - 5979: -59,39 - 5980: -59,38 - 5981: -57,39 - 5982: -57,40 - 5983: -58,41 - 5984: -59,41 - 5985: -59,43 - 5986: -57,43 - 5987: -57,44 - 5988: -59,46 - 5989: -59,46 - 5990: -59,47 - 5991: -58,47 - 5992: -56,47 - 5993: -55,47 - 5994: -55,47 - 5995: -56,47 - 5996: -56,46 - 5997: -58,47 - 5998: -53,47 - 5999: -53,47 - 6000: -55,47 - 6001: -54,46 - 6002: -53,46 - 6003: -52,46 - 6004: -54,47 - 6005: -54,46 - 6006: -51,47 - 6007: -52,46 - 6008: -50,46 - 6009: -49,46 - 6010: -49,47 - 6011: -51,47 - 6012: -50,46 - 6013: -48,46 - 6014: -48,47 - 6015: -48,47 - 6016: -47,47 - 6017: -47,48 - 6018: -48,49 - 6019: -49,49 - 6020: -49,48 - 6021: -50,47 - 6022: -50,46 - 6023: -48,47 - 6024: -48,48 - 6025: -47,49 - 6026: -52,46 - 6027: -50,46 - 6028: -48,46 - 6029: -48,46 - 6030: -48,48 - 6031: -47,47 - 6032: -47,46 - 6033: -48,44 - 6034: -49,45 - 6035: -49,44 - 6036: -48,43 - 6037: -47,45 - 6038: -47,45 - 6039: -49,45 - 6040: -50,44 - 6041: -50,43 - 6042: -49,43 - 6043: -50,45 - 6044: -49,44 - 6045: -49,42 - 6046: -48,42 - 6047: -47,43 - 6048: -47,44 - 6049: -47,42 - 6050: -47,41 - 6051: -48,41 - 6052: -49,40 - 6053: -48,40 - 6054: -47,41 - 6055: -49,42 - 6056: -49,42 - 6057: -49,40 - 6058: -48,39 - 6059: -47,38 - 6060: -47,39 - 6061: -48,39 - 6062: -49,38 - 6063: -49,37 - 6064: -48,35 - 6065: -47,36 - 6066: -48,37 - 6067: -48,38 - 6068: -48,38 - 6069: -48,36 - 6070: -47,35 - 6071: -47,35 - 6072: -48,36 - 6073: -49,35 - 6074: -49,35 - 6075: -49,38 - 6076: -48,39 - 6077: -48,40 - 6078: -49,42 - 6079: -49,41 - 6080: -47,39 - 6081: -49,39 - 6082: -47,37 - 6083: -49,34 - 6084: -48,34 - 6085: -47,34 - 6086: -47,34 - 6087: -48,34 - 6088: -10,34 - 6089: -11,33 - 6090: -11,32 - 6091: -11,31 - 6092: -13,30 - 6093: -14,31 - 6094: -14,29 - 6095: -14,29 - 6096: -11,32 - 6097: -10,33 - 6098: -9,33 - 6099: -10,34 - 6100: -11,34 - 6101: -10,34 - 6102: -8,34 - 6103: -7,33 - 6104: -7,32 - 6105: -8,31 - 6106: -10,31 - 6107: -12,30 - 6108: -13,29 - 6109: -12,28 - 6110: -14,25 - 6111: -14,23 - 6112: -14,22 - 6113: -12,21 - 6114: -12,22 - 6115: -12,20 - 6116: -12,19 - 6117: -14,21 - 6118: -14,21 - 6119: -13,20 - 6120: -13,22 - 6121: -14,24 - 6122: -14,25 - 6123: -14,15 - 6124: -14,14 - 6125: -14,13 - 6126: -13,13 - 6127: -12,15 - 6128: -13,16 - 6129: -14,17 - 6130: -13,16 - 6131: -13,16 - 6132: -14,16 - 6133: -14,19 - 6134: -13,21 - 6135: -13,23 - 6136: -13,25 - 6137: -13,11 - 6138: -12,13 - 6139: -13,12 - 6140: -13,12 - 6141: -13,14 - 6142: -12,6 - 6143: -13,6 - 6144: -14,6 - 6145: -13,4 - 6146: -12,5 - 6147: -12,5 - 6148: -13,5 - 6149: -14,4 - 6150: -10,5 - 6151: -9,5 - 6152: -10,4 - 6153: -9,4 - 6154: -8,4 - 6155: -8,4 - 6156: -8,4 - 6157: -6,4 - 6158: -7,6 - 6159: -8,6 - 6160: -6,7 - 6161: -4,6 - 6162: -3,6 - 6163: -3,5 - 6164: -3,4 - 6165: -4,4 - 6166: -2,5 - 6167: -2,5 - 6168: -3,4 - 6169: -1,5 - 6170: 1,6 - 6171: 0,5 - 6172: 0,5 - 6173: 2,4 - 6174: 4,5 - 6175: 2,6 - 6176: 2,5 - 6177: 4,4 - 6178: 4,5 - 6179: 3,6 - 6180: 3,4 - 6181: 4,5 - 6182: 3,5 - 6183: 4,6 - 6184: 7,4 - 6185: 6,4 - 6186: 7,4 - 6187: 8,4 - 6188: 5,3 - 6189: 4,3 - 6190: 9,4 - 6191: 10,4 - 6192: 10,4 - 6193: 10,5 - 6194: 11,4 - 6195: 11,6 - 6196: 11,6 - 6197: 14,5 - 6198: 15,5 - 6199: 17,6 - 6200: 18,6 - 6201: 17,5 - 6202: 18,6 - 6203: 20,6 - 6204: 21,6 - 6205: 22,6 - 6206: 23,5 - 6207: 23,5 - 6208: 22,4 - 6209: 23,4 - 6210: 21,5 - 6211: 19,6 - 6212: 25,5 - 6213: 25,6 - 6214: 25,7 - 6215: 26,6 - 6216: 26,5 - 6217: 28,7 - 6218: 29,7 - 6219: 28,8 - 6220: 27,9 - 6221: 26,9 - 6222: 26,9 - 6223: 26,10 - 6224: 25,11 - 6225: 25,12 - 6226: 26,13 - 6227: 26,14 - 6228: 26,15 - 6229: 25,16 - 6230: 28,13 - 6231: 28,13 - 6232: 28,14 - 6233: 28,16 - 6234: 27,17 - 6235: 27,18 - 6236: 28,19 - 6237: 27,19 - 6238: 25,20 - 6239: 27,20 - 6240: 27,21 - 6241: 28,21 - 6242: 28,20 - 6243: 26,22 - 6244: 28,24 - 6245: 28,24 - 6246: 26,25 - 6247: 25,25 - 6248: 25,25 - 6249: 25,23 - 6250: 26,23 - 6251: 28,11 - 6252: 28,10 - 6253: 28,12 - 6254: 28,12 - 6262: -22,55 - 6263: -23,54 - 6264: -22,54 - 6265: -21,54 - 6266: -21,55 - 6267: -21,56 - 6268: -22,57 - 6269: -22,57 - 6270: -23,57 - 6271: -23,55 - 6272: -23,54 - 6273: -22,55 - 6274: -22,56 - 6275: -22,57 - 6276: -23,56 - 6277: -23,55 - 6278: -23,54 - 6279: -23,54 - 6280: -23,56 - 6281: -23,57 - 6282: -22,57 - 6283: -21,57 - 6284: -24,54 - 6285: -24,53 - 6286: -23,53 - 6287: -21,53 - 6288: -21,53 - 6289: -24,54 - 6290: -24,55 - 6291: -24,56 - 6292: -24,56 - 6293: -21,54 - 6294: -21,54 - 6295: -21,55 - 6296: -22,57 - 6297: -23,57 - 6298: -23,55 - 6299: -51,33 - 6300: -49,32 - 6301: -51,31 - 6302: -55,31 - 6303: -54,32 - 6304: -55,33 - 6305: -57,25 - 6306: -58,22 - 6307: -58,21 - 6308: -59,20 - 6309: -57,18 - 6310: -59,17 - 6311: -59,12 - 6312: -57,10 - 6313: -58,10 - 6314: -59,8 - 6315: -59,9 - 6316: -59,4 - 6317: -59,5 - 6318: -57,4 - 6319: -61,4 - 6320: -56,4 - 6321: -65,4 - 6322: -67,4 - 6323: -69,5 - 6324: -69,4 - 6325: -70,5 - 6326: -72,6 - 6327: -74,5 - 6328: -75,4 - 6329: -57,0 - 6330: -58,0 - 6331: -59,-2 - 6332: -59,-1 - 6333: -58,-2 - 6334: -58,-6 - 6335: -57,-5 - 6336: -57,-8 - 6337: -58,-8 - 6338: -59,-9 - 6339: -57,-10 - 6352: -52,5 - 6353: -52,6 - 6354: -50,6 - 6355: -51,4 - 6356: -49,3 - 6357: -50,3 - 6358: -48,6 - 6359: -46,6 - 6360: -48,5 - 6361: -47,6 - 6362: -44,6 - 6363: -43,5 - 6364: -43,6 - 6365: -42,6 - 6366: -39,6 - 6367: -34,7 - 6368: -39,4 - 6369: -35,4 - 6370: -37,3 - 6371: -38,3 - 6372: -39,3 - 6373: -41,3 - 6374: -35,3 - 6375: -33,4 - 6376: -29,4 - 6377: -28,4 - 6378: -39,4 - 6379: -38,4 - 6380: -36,5 - 6381: -37,6 - 6382: -39,6 - 6383: -40,5 - 6384: -39,4 - 6385: -37,4 - 6386: -37,6 - 6387: -38,6 - 6388: -38,5 - 6389: -38,7 - 6390: -38,8 - 6391: -41,5 - 6392: -42,5 - 6393: -32,5 - 6394: -32,5 - 6395: -34,6 - 6396: -33,6 - 6397: -33,5 - 6398: -38,18 - 6399: -39,16 - 6400: -37,14 - 6401: -39,13 - 6402: -38,23 - 6403: -38,23 - 6404: -39,26 - 6405: -39,26 - 6406: -39,27 - 6407: -38,26 - 6408: -37,24 - 6409: -37,25 - 6410: -38,24 - 6411: -37,29 - 6412: -38,30 - 6413: -38,31 - 6414: -37,31 - 6415: -38,30 - 6416: -37,32 - 6417: -39,32 - 6418: -40,33 - 6419: -41,32 - 6420: -42,32 - 6421: -41,33 - 6422: -39,33 - 6423: -38,32 - 6424: -38,31 - 6425: -37,31 - 6426: -35,32 - 6427: -35,33 - 6428: -36,33 - 6429: -39,32 - 6430: -39,32 - 6431: -38,32 - 6432: -37,33 - 6433: -39,33 - 6434: -39,33 - 6435: -38,31 - 6436: -37,31 - 6437: -36,32 - 6438: -35,32 - 6439: -36,31 - 6440: -34,33 - 6441: -33,32 - 6442: -31,31 - 6443: -30,31 - 6444: -29,32 - 6445: -28,32 - 6446: -38,30 - 6447: -39,30 - 6448: -39,28 - 6449: -37,30 - 6450: -39,28 - 6451: -39,27 - 6452: -28,35 - 6453: -29,35 - 6454: -29,36 - 6455: -29,37 - 6456: -28,37 - 6457: -28,37 - 6458: -28,36 - 6459: -28,37 - 6460: -29,38 - 6461: -29,38 - 6462: -29,36 - 6463: -29,35 - 6464: -29,35 - 6465: -28,37 - 6466: -28,38 - 6467: -31,39 - 6468: -31,40 - 6469: -32,40 - 6470: -33,39 - 6471: -32,39 - 6472: -32,40 - 6473: -33,40 - 6474: -32,38 - 6475: -31,39 - 6476: -32,40 - 6477: -33,38 - 6478: -32,38 - 6479: -31,39 - 6480: -33,39 - 6481: -33,37 - 6482: -32,36 - 6483: -31,37 - 6484: -33,37 - 6485: -33,35 - 6486: -31,35 - 6487: -31,37 - 6488: -33,36 - 6489: -32,35 - 6490: -32,37 - 6491: -32,36 - 6492: -33,35 - 6493: -33,37 - 6494: -33,36 - 6495: -33,35 - 6496: -34,36 - 6497: -34,38 - 6499: -51,35 - 6500: -52,36 - 6501: -53,35 - 6502: -51,34 - 6503: -52,34 - 6504: -52,34 - 6505: -52,35 - 6506: -51,35 - 6507: -53,36 - 6508: -54,35 - 6509: -54,36 - 6510: -53,37 - 6511: -52,38 - 6512: -52,38 - 6513: -51,37 - 6514: -51,36 - 6515: -52,36 - 6516: -52,37 - 6517: -52,36 - 6518: -53,35 - 6519: -53,36 - 6520: -53,38 - 6521: -53,40 - 6522: -53,40 - 6523: -51,40 - 6524: -52,41 - 6525: -53,41 - 6526: -53,40 - 6527: -51,40 - 6528: -52,41 - 6529: -53,41 - 6530: -53,38 - 6531: -53,38 - 6532: -54,37 - 6533: -54,36 - 6534: -53,36 - 6535: -52,38 - 6536: -51,38 - 6537: -51,37 - 6538: -52,36 - 6539: -53,36 - 6540: -53,35 - 6541: -45,47 - 6542: -45,46 - 6543: -45,45 - 6544: -45,44 - 6545: -45,43 - 6546: -45,42 - 6547: -45,41 - 6548: -44,41 - 6549: -44,42 - 6550: -44,43 - 6551: -44,45 - 6552: -44,46 - 6553: -43,46 - 6554: -43,46 - 6555: -43,46 - 6556: -43,44 - 6557: -43,43 - 6558: -43,42 - 6559: -43,42 - 6560: -43,41 - 6561: -42,41 - 6562: -42,43 - 6563: -42,44 - 6564: -42,45 - 6565: -42,46 - 6566: -42,47 - 6567: -43,47 - 6568: -43,46 - 6569: -43,46 - 6570: -42,46 - 6571: -41,46 - 6572: -41,46 - 6573: -41,44 - 6574: -41,42 - 6575: -41,42 - 6576: -41,41 - 6577: -41,44 - 6578: -41,46 - 6579: -41,47 - 6580: -42,47 - 6581: -43,43 - 6582: -43,42 - 6583: -44,42 - 6584: -44,44 - 6585: -44,45 - 6586: -43,45 - 6587: -43,44 - 6588: -44,43 - 6589: -43,43 - 6590: -42,45 - 6591: -43,45 - 6592: -44,45 - 6593: -43,46 - 6594: -45,47 - 6595: -45,44 - 6596: -45,42 - 6597: -45,41 - 6598: -44,41 - 6599: -43,41 - 6600: -42,42 - 6601: -42,43 - 6602: -43,45 - 6603: -43,45 - 6604: -44,44 - 6605: -45,44 - 6606: -45,43 - 6607: -45,41 - 6608: -44,41 - 6609: -43,42 - 6610: -44,45 - 6611: -44,46 - 6612: -45,45 - 6613: -44,44 - 6614: -43,43 - 6615: -42,45 - 6616: -44,46 - 6617: -44,46 - 6618: -45,45 - 6619: -45,43 - 6620: -43,42 - 6621: -42,42 - 6622: -41,44 - 6623: -42,46 - 6624: -42,47 - 6625: -44,47 - 6626: -40,44 - 6627: -40,45 - 6628: -40,46 - 6629: -39,46 - 6630: -38,47 - 6631: -39,47 - 6632: -39,45 - 6633: -38,45 - 6634: -37,47 - 6635: -38,46 - 6636: -38,45 - 6637: -38,43 - 6638: -37,43 - 6639: -37,46 - 6640: -39,45 - 6641: -39,42 - 6642: -38,42 - 6643: -36,43 - 6644: -36,43 - 6645: -37,43 - 6646: -36,42 - 6647: -35,42 - 6648: -34,43 - 6649: -34,42 - 6650: -33,42 - 6651: -33,43 - 6652: -34,43 - 6653: -33,42 - 6654: -32,43 - 6655: -32,44 - 6656: -33,45 - 6657: -33,47 - 6658: -34,46 - 6659: -33,45 - 6660: -32,46 - 6661: -34,47 - 6662: -35,46 - 6663: -36,45 - 6664: -35,44 - 6665: -34,44 - 6666: -35,46 - 6667: -36,46 - 6668: -38,46 - 6669: -39,47 - 6670: -38,47 - 6671: -34,46 - 6672: -33,46 - 6673: -33,47 - 6674: -33,47 - 6675: -33,44 - 6676: -32,44 - 6677: -32,43 - 6678: -33,44 - 6679: -34,43 - 6680: -35,43 - 6681: -36,43 - 6682: -37,42 - 6683: -38,42 - 6684: -38,43 - 6685: -39,44 - 6686: -39,43 - 6687: -39,42 - 6688: -39,45 - 6689: -38,46 - 6690: -39,47 - 6691: -39,47 - 6692: -37,44 - 6693: -36,44 - 6694: -34,45 - 6695: -37,45 - 6696: -32,45 - 6697: -32,46 - 6698: -32,46 - 6699: -32,44 - 6700: -32,43 - 6701: -33,43 - 6702: -35,42 - 6703: -33,42 - 6704: -33,42 - 6705: -32,47 - 6706: -29,44 - 6707: -29,45 - 6708: -29,47 - 6709: -30,46 - 6710: -30,45 - 6711: -30,44 - 6712: -28,44 - 6713: -28,45 - 6714: -28,46 - 6715: -29,47 - 6716: -29,47 - 6717: -30,45 - 6718: -29,45 - 6719: -29,44 - 6720: -28,44 - 6721: -29,45 - 6722: -30,46 - 6723: -30,46 - 6724: -29,45 - 6725: -28,45 - 6726: -29,46 - 6727: -29,47 - 6728: -30,47 - 6729: -30,44 - 6730: -29,44 - 6731: -28,44 - 6732: -28,47 - 6733: -36,49 - 6734: -36,49 - 6735: -35,51 - 6736: -35,51 - 6737: -37,51 - 6738: -38,43 - 6739: -38,44 - 6740: -38,44 - 6741: -36,41 - 6742: -37,41 - 6743: -37,41 - 6744: -38,41 - 6745: -38,41 - 6746: -37,41 - 6747: -37,41 - 6748: -36,49 - 6749: -36,50 - 6750: -36,51 - 6751: -36,51 - 6752: -37,50 - 6753: -37,49 - 6754: -37,49 - 6755: -38,50 - 6756: -38,50 - 6757: -38,49 - 6758: -38,51 - 6759: -37,52 - 6760: -37,52 - 6761: -38,52 - 6762: -38,51 - 6763: -37,51 - 6764: -35,50 - 6765: -35,49 - 6766: -35,50 - 6767: -36,51 - 6768: -37,51 - 6769: -38,52 - 6770: -38,51 - 6771: -38,50 - 6772: -38,50 - 6773: -38,51 - 6774: -41,51 - 6775: -41,52 - 6776: -42,52 - 6777: -43,51 - 6778: -43,51 - 6779: -42,50 - 6780: -42,50 - 6781: -42,52 - 6782: -43,52 - 6783: -43,50 - 6784: -43,50 - 6785: -42,49 - 6786: -41,49 - 6787: -40,50 - 6788: -40,52 - 6789: -41,52 - 6790: -42,51 - 6791: -41,50 - 6792: -40,51 - 6793: -42,51 - 6794: -30,47 - 6795: -29,41 - 6796: -30,42 - 6797: -30,42 - 6798: -29,42 - 6799: -28,42 - 6800: -28,41 - 6801: -28,40 - 6802: -29,41 - 6803: -35,43 - 6804: -37,42 - 6805: -4,33 - 6806: -5,34 - 6807: -4,32 - 6808: -3,30 - 6809: -2,30 - 6810: -1,30 - 6811: -1,29 - 6812: 0,31 - 6813: 0,32 - 6814: 0,33 - 6815: -1,33 - 6816: -1,31 - 6817: 0,30 - 6818: -4,29 - 6819: -5,29 - 6820: -5,29 - 6821: -5,31 - 6822: -5,33 - 6823: -4,34 - 6824: -4,34 - 6825: 2,29 - 6826: 4,30 - 6827: 4,30 - 6828: 4,32 - 6829: 3,34 - 6830: 2,33 - 6831: 2,31 - 6832: 2,24 - 6833: 4,26 - 6834: 2,20 - 6835: 3,19 - 6836: 4,19 - 6837: 6,19 - 6838: 7,20 - 6839: 9,20 - 6840: 9,18 - 6841: 6,15 - 6842: 6,14 - 6843: 6,16 - 6844: 6,17 - 6845: 7,17 - 6846: 7,17 - 6847: 7,16 - 6848: 9,16 - 6849: 11,14 - 6850: -2,19 - 6851: -1,19 - 6852: -2,20 - 6853: -3,21 - 6854: -2,22 - 6855: -1,23 - 6856: 0,24 - 6857: 0,25 - 6858: 0,26 - 6859: -1,26 - 6860: -2,27 - 6861: -4,27 - 6862: -5,26 - 6863: -5,25 - 6864: -5,24 - 6865: -1,25 - 6866: -1,27 - 6867: -3,27 - 6868: -4,26 - 6869: -3,25 - 6870: -1,23 - 6871: -2,22 - 6872: -3,22 - 6873: -3,20 - 6874: -1,24 - 6875: -1,24 - 6876: -2,24 - 6877: -2,22 - 6878: 0,22 - 6879: 0,23 - 6880: -3,23 - 6881: -2,25 - 6882: 0,25 - 6883: -1,26 - 6884: -2,26 - 6885: -4,25 - 6886: -4,24 - 6887: -4,21 - 6888: -5,19 - 6889: -4,19 - 6890: -5,20 - 6891: -4,21 - 6892: 10,29 - 6893: 11,28 - 6894: 11,28 - 6895: 12,29 - 6896: 12,30 - 6897: 11,32 - 6898: 9,31 - 6899: 8,31 - 6900: 8,28 - 6901: 10,28 - 6902: 7,31 - 6903: 7,31 - 6904: 6,36 - 6905: 6,37 - 6906: 3,36 - 6907: 2,37 - 6908: 0,36 - 6909: -1,37 - 6910: 2,40 - 6911: 4,39 - 6912: 4,37 - 6913: 4,37 - 6914: 3,37 - 6915: 10,40 - 6916: 10,40 - 6917: 9,43 - 6918: 9,42 - 6919: 10,42 - 6920: 10,43 - 6921: 11,43 - 6922: 12,43 - 6923: 12,42 - 6924: -25,33 - 6925: -24,32 - 6926: -25,34 - 6927: -23,34 - 6928: -22,34 - 6929: -21,34 - 6930: -20,34 - 6931: -22,33 - 6932: -18,31 - 6933: -17,34 - 6934: -18,34 - 6935: -16,34 - 6936: -17,35 - 6937: -17,35 - 6938: -17,36 - 6939: -18,37 - 6940: -18,42 - 6941: -18,44 - 6942: -18,46 - 6943: -18,48 - 6944: -17,48 - 6945: -17,49 - 6946: -18,51 - 6947: -17,51 - 6948: -16,51 - 6949: -17,51 - 6950: -14,47 - 6951: -14,46 - 6952: -13,46 - 6953: -11,46 - 6954: -11,46 - 6955: -11,49 - 6956: -12,49 - 6957: -14,49 - 6958: -14,49 - 6959: -14,33 - 6960: -15,33 - 6961: -15,31 - 6962: -16,31 - 6963: -14,29 - 6964: -12,29 - 6965: -14,30 - 6966: -11,28 - 6967: -11,27 - 6968: -9,28 - 6969: -10,30 - 6970: -11,30 - 6971: -12,27 - 6972: -14,27 - 6973: -13,26 - 6974: -14,26 - 6975: -12,22 - 6976: -13,17 - 6977: -12,17 - 6978: -12,9 - 6979: -15,4 - 6980: -16,4 - 6981: -15,3 - 6982: -16,3 - 6983: -18,3 - 6984: -19,3 - 6985: -20,6 - 6986: -21,6 - 6987: -22,5 - 6988: -23,4 - 6989: -26,4 - 6990: -26,6 - 6991: -7,4 - 6992: -10,2 - 6993: -10,0 - 6994: -10,-1 - 6995: -9,-2 - 6996: -9,-2 - 6997: -10,0 - 6998: -10,1 - 6999: -9,-3 - 7000: -10,-3 - 7001: -11,-2 - 7002: -13,-2 - 7003: -14,-2 - 7004: -13,-4 - 7005: -14,-6 - 7006: -12,-5 - 7007: -10,-6 - 7008: -9,-6 - 7009: -12,-6 - 7010: -13,-6 - 7011: -12,-8 - 7012: -13,-8 - 7013: -14,-8 - 7014: -7,-6 - 7015: -7,-5 - 7016: -6,-3 - 7017: -6,-3 - 7018: -4,-2 - 7019: -5,-2 - 7020: -2,-4 - 7021: -3,-5 - 7022: -4,-5 - 7023: -6,-6 - 7024: -7,-6 - 7025: 1,-2 - 7026: 1,-1 - 7027: 1,4 - 7028: 0,4 - 7029: -5,5 - 7030: 10,2 - 7031: 10,1 - 7032: 11,0 - 7033: 10,-4 - 7034: 10,0 - 7035: 13,5 - 7036: 13,6 - 7037: 20,5 - 7038: 19,4 - 7039: 22,5 - 7040: 25,8 - 7041: 25,9 - 7042: 25,10 - 7043: 25,9 - 7044: -35,7 - 7045: -36,7 - 7046: -38,14 - 7047: -40,20 - 7048: -41,30 - 7049: -41,30 - 7050: -45,30 - 7051: -45,30 - 7052: -46,31 - 7053: -46,33 - 7054: -48,31 - 7055: -47,32 - 7056: -55,31 - 7057: -56,31 - 7058: -49,36 - 7059: -50,36 - 7060: -48,45 - 7061: -49,46 - 7062: -51,46 - 7063: -53,47 - 7064: -57,47 - 7065: -57,36 - 7066: -57,35 - 7067: -56,35 - 7068: -56,36 - 7069: -57,32 - 7070: -58,31 - 7071: -59,29 - 7072: -59,30 - 7073: -58,26 - 7074: -59,26 - 7075: -58,28 - 7076: -58,23 - 7077: -58,22 - 7078: -59,21 - 7079: -58,18 - 7080: -59,22 - 7081: -59,23 - 7082: -60,24 - 7083: -60,24 - 7084: -57,14 - 7085: -58,15 - 7086: -59,15 - 7087: -59,17 - 7088: -59,20 - 7089: -57,7 - 7090: -57,6 - 7091: -58,6 - 7092: -59,7 - 7093: -59,4 - 7094: -59,3 - 7095: -60,5 - 7096: -60,6 - 7097: -60,5 - 7098: -60,4 - 7099: -62,6 - 7100: -68,6 - 7101: -69,6 - 7102: -71,4 - 7103: -72,4 - 7104: -73,4 - 7105: -75,6 - 7106: -76,6 - 7107: -73,6 - 7108: -52,4 - 7109: -54,4 - 7110: -55,4 - 7111: -54,4 - 7112: -53,5 - 7113: -46,4 - 7114: -45,4 - 7115: -48,4 - 7116: -49,3 - 7117: -59,2 - 7118: -59,-4 - 7119: -59,-8 - 7130: -50,3 - 7131: -31,31 - 7132: -29,31 - 7133: -28,31 - 7134: -28,31 - 7135: -47,49 - 7136: -72,33 - 7137: -71,33 - 7138: -71,33 - 7139: -73,34 - 7140: -73,34 - 7141: -75,32 - 7142: -69,34 - 7143: -70,33 - 7144: -72,33 - 7145: -72,35 - 7146: -73,35 - 7147: -74,34 - 7148: -74,28 - 7149: -75,29 - 7150: -64,31 - 7151: -65,32 - 7152: -64,31 - 7153: -66,28 - 7154: -65,27 - 7155: -64,26 - 7156: -65,21 - 7157: -64,19 - 7170: 1,23 - 7171: 1,23 - 7172: 1,23 - 7173: 1,29 - 7174: 1,30 - 7175: 1,30 - 7176: 1,29 - 7177: 1,30 - 7178: 6,29 - 7179: 6,28 - 7180: 6,28 - 7181: 6,29 - 7182: 6,29 - 7183: 5,33 - 7184: 5,33 - 7185: 1,33 - 7186: 1,33 - 7187: 1,33 - 7188: 3,35 - 7189: 3,35 - 7190: 3,35 - 7191: 3,35 - 7192: 5,25 - 7193: 5,24 - 7194: 5,25 - 7195: 5,19 - 7196: 5,19 - 7197: 8,19 - 7198: 8,19 - 7199: 8,19 - 7200: -51,8 - 7201: -51,9 - 7202: -51,9 - 7203: -52,9 - 7204: -52,10 - 7205: -50,10 - 7206: -49,10 - 7207: -48,9 - 7208: -48,8 - 7209: -48,8 - 7210: -51,8 - 7211: -52,7 - 7212: -51,7 - 7213: -53,10 - 7214: -53,10 - 7215: -53,9 - 7216: -54,10 - 7217: -55,10 - 7218: -55,18 - 7219: -55,18 - 7220: -55,18 - 7221: -55,20 - 7222: -54,20 - 7223: -53,19 - 7224: -53,18 - 7225: -53,18 - 7226: -23,32 - 7227: -22,31 - 7228: -23,31 - 7229: -26,34 - 7230: -26,32 - 7231: -31,32 - 7232: -30,33 - 7236: -20,33 - 7237: -20,33 - 7238: -19,33 - 7239: -24,33 - 7240: -21,35 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 277: -9,1 - 278: -9,0 - 279: -10,0 - 280: -9,1 - 281: -7,2 - 282: -7,1 - 283: -7,-1 - 284: -7,-3 - 285: -6,-4 - 286: -5,-3 - 287: -3,-2 - 288: -2,-2 - 289: -2,-3 - 290: -2,-4 - 291: -3,-5 - 292: -4,-5 - 293: -6,-5 - 294: -10,-4 - 295: -11,-4 - 296: -12,-5 - 297: -13,-5 - 298: -14,-5 - 307: -18,-12 - 308: -17,-11 - 309: -15,-12 - 310: -13,-11 - 311: -13,-12 - 312: -12,-13 - 313: -12,-14 - 314: -13,-14 - 326: 4,-11 - 327: 5,-11 - 328: 5,-12 - 329: -11,5 - 330: -9,6 - 331: -5,5 - 332: -5,4 - 333: -3,4 - 334: 0,6 - 335: 2,7 - 336: 4,5 - 337: 5,4 - 338: 7,5 - 339: 7,5 - 340: 6,5 - 341: 7,5 - 342: 9,6 - 343: 11,5 - 344: 12,5 - 345: 15,5 - 346: 18,6 - 347: 21,5 - 348: 20,4 - 349: 20,5 - 350: 21,6 - 351: 26,5 - 352: 27,6 - 353: 27,7 - 354: 28,9 - 355: 27,11 - 356: 25,12 - 357: 27,14 - 358: 27,15 - 359: 27,17 - 360: 25,17 - 361: 26,19 - 362: 27,19 - 389: 10,-3 - 390: 10,-1 - 391: 10,0 - 392: 4,3 - 393: 4,5 - 394: 1,5 - 395: 0,4 - 396: 2,3 - 397: 2,4 - 398: 2,6 - 399: 2,6 - 400: 1,4 - 401: 1,-2 - 402: 2,-1 - 403: 2,-2 - 404: 1,-3 - 405: 1,-1 - 406: 2,-1 - 407: 2,-2 - 408: 2,-3 - 409: 1,-2 - 410: 2,-1 - 430: -9,9 - 431: -9,8 - 432: -9,8 - 433: -13,12 - 434: -12,12 - 435: -13,13 - 436: -13,9 - 437: -13,9 - 438: -12,9 - 439: -13,10 - 440: -16,13 - 441: -16,14 - 442: -16,13 - 443: -18,12 - 444: -9,12 - 445: -8,12 - 446: -12,13 - 447: -13,14 - 448: -13,15 - 449: -12,16 - 450: -12,16 - 451: -13,15 - 452: -14,13 - 453: -13,17 - 454: -12,18 - 455: -14,17 - 456: -16,17 - 457: -17,17 - 458: -18,16 - 459: -16,18 - 460: -12,18 - 461: -13,17 - 462: -13,18 - 463: -13,20 - 464: -14,20 - 465: -13,19 - 466: -12,21 - 467: -13,22 - 468: -13,22 - 469: -14,22 - 470: -13,22 - 471: -13,22 - 472: -13,24 - 473: -14,25 - 474: -13,24 - 475: -12,23 - 476: -13,25 - 477: -13,27 - 478: -12,27 - 479: -13,27 - 514: -3,33 - 515: -4,34 - 516: -4,32 - 517: -4,32 - 518: -4,30 - 519: -2,30 - 520: -1,30 - 521: 0,31 - 522: -1,30 - 523: -2,29 - 524: -3,29 - 550: -2,20 - 551: -2,21 - 552: -3,25 - 553: -1,25 - 554: 0,25 - 555: 0,24 - 556: -1,23 - 557: -2,24 - 558: -2,25 - 559: -2,24 - 560: -3,22 - 561: -3,21 - 563: -12,31 - 564: -13,31 - 565: -13,31 - 566: -13,29 - 567: -14,29 - 568: -13,27 - 569: -10,9 - 570: -11,8 - 571: -6,-15 - 572: -6,-15 - 573: -8,-13 - 574: 0,-15 - 575: 0,-16 - 576: 0,-15 - 577: 0,-15 - 578: 1,-14 - 579: 2,-14 - 580: 2,-15 - 581: 1,-15 - 582: 1,-15 - 583: 15,-10 - 584: 14,-10 - 585: 14,-9 - 586: 15,-8 - 587: 14,-8 - 588: 13,-8 - 589: 14,-10 - 590: 15,-11 - 591: 15,-11 - 592: 14,-12 - 593: 13,-11 - 594: 13,-10 - 595: 15,-11 - 596: 15,-9 - 597: 13,-8 - 598: 13,-8 - 614: 19,-1 - 615: 20,-1 - 616: 21,-1 - 617: 20,-3 - 618: 20,-3 - 619: 19,-2 - 620: 20,0 - 621: 20,1 - 622: 19,1 - 623: 19,0 - 624: 20,2 - 625: 19,2 - 626: 19,2 - 627: 20,0 - 684: -17,28 - 685: -16,28 - 686: -18,28 - 687: -17,27 - 688: -9,27 - 689: -10,28 - 690: -7,29 - 691: -7,30 - 692: -8,30 - 693: -11,29 - 694: -5,29 - 695: -5,30 - 696: -5,31 - 697: -5,32 - 698: -5,33 - 699: -4,33 - 700: -3,34 - 701: -2,34 - 702: 0,33 - 703: 0,32 - 704: 0,31 - 705: -1,30 - 706: -2,29 - 707: -3,29 - 708: -4,30 - 709: -4,30 - 710: -5,30 - 711: -9,29 - 712: -8,29 - 713: -8,28 - 714: -9,28 - 715: -9,29 - 716: -8,29 - 717: -8,28 - 780: -45,-8 - 781: -46,-7 - 782: -44,-8 - 783: -44,-8 - 784: -44,-7 - 785: -45,-7 - 820: -41,4 - 821: -41,5 - 822: -42,3 - 823: -41,1 - 824: -41,0 - 825: -42,1 - 826: -42,5 - 827: -41,6 - 828: -38,6 - 829: -35,5 - 830: -34,5 - 831: -34,3 - 832: -33,2 - 833: -32,4 - 834: -33,5 - 835: -35,5 - 836: -34,4 - 837: -33,1 - 838: -33,1 - 839: -34,1 - 840: -35,3 - 841: -36,5 - 842: -37,5 - 843: -37,7 - 844: -35,7 - 845: -35,7 - 846: -37,7 - 847: -38,7 - 848: -35,6 - 849: -32,5 - 850: -31,5 - 851: -33,6 - 852: -33,6 - 853: -36,6 - 854: -37,4 - 855: -37,3 - 856: -38,3 - 857: -39,2 - 858: -38,0 - 859: -37,2 - 860: -39,2 - 861: -38,0 - 862: -37,0 - 863: -37,1 - 864: -38,1 - 902: -29,5 - 903: -30,5 - 904: -30,4 - 905: -27,5 - 906: -27,6 - 907: -28,6 - 908: -27,5 - 909: -24,4 - 910: -21,5 - 911: -20,5 - 912: -22,6 - 913: -21,5 - 914: -17,4 - 915: -16,5 - 916: -16,6 - 917: -18,6 - 918: -19,6 - 919: -22,6 - 920: -25,5 - 921: -27,5 - 922: -24,4 - 923: -21,4 - 924: -17,4 - 925: -17,5 - 926: -20,6 - 927: -23,6 - 928: -25,6 - 929: -28,5 - 930: -29,5 - 931: -30,4 - 932: -27,4 - 933: -21,4 - 934: -19,4 - 935: -17,5 - 936: -20,6 - 937: -26,5 - 938: -29,5 - 939: -30,5 - 940: -19,6 - 941: -20,7 - 942: -21,7 - 943: -21,7 - 944: -18,4 - 945: -18,3 - 946: -16,3 - 947: -17,3 - 948: -18,3 - 1317: -38,9 - 1318: -39,11 - 1319: -39,11 - 1320: -38,12 - 1321: -38,14 - 1322: -38,13 - 1323: -37,15 - 1324: -38,16 - 1325: -39,16 - 1326: -39,15 - 1327: -37,15 - 1328: -38,16 - 1329: -38,17 - 1330: -39,17 - 1331: -38,17 - 1332: -37,19 - 1333: -38,21 - 1334: -39,20 - 1335: -38,21 - 1336: -39,21 - 1337: -40,21 - 1338: -38,21 - 1339: -37,23 - 1340: -37,25 - 1341: -38,22 - 1342: -38,21 - 1343: -37,23 - 1344: -38,26 - 1345: -39,26 - 1346: -38,28 - 1347: -37,30 - 1348: -38,32 - 1349: -38,33 - 1350: -39,32 - 1351: -39,31 - 1352: -39,32 - 1353: -42,32 - 1354: -43,31 - 1355: -44,33 - 1356: -45,33 - 1357: -44,31 - 1358: -43,31 - 1359: -40,32 - 1360: -36,33 - 1361: -33,33 - 1362: -30,32 - 1363: -31,33 - 1364: -31,33 - 1365: -27,32 - 1366: -27,33 - 1367: -29,33 - 1368: -24,33 - 1369: -22,33 - 1370: -23,32 - 1371: -22,32 - 1372: -21,32 - 1373: -23,31 - 1374: -22,32 - 1375: -19,33 - 1376: -16,32 - 1377: -16,31 - 1378: -17,32 - 1379: -16,33 - 1380: -18,33 - 1381: -21,33 - 1382: -25,33 - 1383: -26,32 - 1384: -24,27 - 1385: -23,26 - 1386: -24,27 - 1387: -27,28 - 1388: -26,27 - 1389: -24,33 - 1390: -27,34 - 1391: -30,33 - 1392: -32,33 - 1393: -33,33 - 1394: -36,33 - 1395: -39,32 - 1396: -41,32 - 1397: -43,32 - 1398: -45,32 - 1399: -49,33 - 1400: -50,32 - 1401: -49,31 - 1402: -48,32 - 1403: -47,31 - 1404: -47,31 - 1405: -47,32 - 1406: -49,33 - 1407: -52,33 - 1408: -55,33 - 1409: -57,32 - 1410: -57,31 - 1411: -55,33 - 1412: -54,32 - 1413: -56,32 - 1414: -58,31 - 1415: -58,30 - 1416: -59,28 - 1417: -58,27 - 1418: -57,27 - 1419: -59,26 - 1420: -59,23 - 1421: -57,22 - 1422: -57,24 - 1423: -59,24 - 1424: -59,23 - 1425: -59,21 - 1426: -59,19 - 1427: -59,16 - 1428: -58,14 - 1429: -57,14 - 1430: -57,16 - 1431: -58,16 - 1432: -59,14 - 1433: -54,18 - 1434: -55,18 - 1435: -54,20 - 1436: -55,20 - 1437: -54,18 - 1438: -53,18 - 1439: -53,20 - 1440: -54,20 - 1441: -58,15 - 1442: -53,21 - 1443: -53,21 - 1444: -55,21 - 1445: -55,21 - 1446: -53,20 - 1447: -53,21 - 1448: -59,15 - 1449: -58,13 - 1450: -58,11 - 1451: -58,8 - 1452: -58,9 - 1453: -59,10 - 1454: -57,11 - 1455: -57,6 - 1456: -58,5 - 1457: -59,6 - 1458: -62,5 - 1459: -63,4 - 1460: -63,4 - 1461: -64,4 - 1462: -66,4 - 1463: -66,4 - 1464: -62,6 - 1465: -61,7 - 1466: -64,6 - 1467: -68,6 - 1468: -71,5 - 1469: -71,4 - 1470: -73,4 - 1471: -74,6 - 1472: -74,6 - 1473: -75,6 - 1474: -76,5 - 1475: -76,4 - 1476: -75,5 - 1477: -59,1 - 1478: -59,1 - 1479: -58,2 - 1480: -57,1 - 1481: -57,0 - 1482: -58,-1 - 1483: -58,-3 - 1484: -57,-4 - 1485: -58,-5 - 1486: -59,-5 - 1487: -59,-7 - 1488: -58,-10 - 1489: -58,-7 - 1490: -58,-5 - 1491: -59,-5 - 1492: -59,-8 - 1493: -57,-9 - 1494: -58,-10 - 1495: -58,-12 - 1513: -50,4 - 1514: -50,4 - 1515: -51,4 - 1516: -49,3 - 1517: -45,6 - 1518: -46,5 - 1519: -47,4 - 1520: -46,4 - 1521: -45,4 - 1522: -48,6 - 1523: -41,8 - 1524: -41,8 - 1525: -42,9 - 1526: -43,10 - 1527: -43,10 - 1528: -43,11 - 1529: -42,11 - 1530: -41,11 - 1531: -41,11 - 1532: -43,10 - 1533: -42,9 - 1534: -43,8 - 1535: -41,9 - 1536: -42,10 - 1537: -41,9 - 1538: -47,11 - 1539: -48,12 - 1540: -52,12 - 1541: -50,12 - 1542: -50,12 - 1543: -51,11 - 1544: -51,12 - 1545: -51,12 - 1552: -54,28 - 1553: -55,28 - 1554: -54,28 - 1555: -52,28 - 1556: -52,28 - 1557: -49,28 - 1558: -49,29 - 1559: -52,29 - 1560: -55,28 - 1731: -75,4 - 1732: -76,4 - 1733: -76,5 - 2132: -8,42 - 2133: -9,43 - 2134: -9,40 - 2135: -7,40 - 2136: -7,43 - 2137: -9,41 - 2138: -9,39 - 2139: -6,40 - 2140: -7,43 - 2141: -8,44 - 2142: -10,42 - 2143: -8,39 - 2144: -6,41 - 2659: -40,-8 - 2660: -40,-7 - 2661: -41,-6 - 2662: -41,-6 - 2663: -39,-6 - 2664: -41,-5 - 2665: -42,-4 - 2666: -42,-6 - 2667: -42,-4 - 2668: -41,-3 - 2669: -40,-2 - 2670: -38,-3 - 2671: -39,-3 - 2672: -39,-4 - 2673: -39,-2 - 2674: -40,-2 - 2675: -41,-4 - 2676: -40,-4 - 2677: -39,-3 - 2678: -41,-2 - 2679: -41,-3 - 2680: -39,-3 - 2681: -38,-4 - 2682: -39,-6 - 2683: -36,-8 - 2684: -35,-8 - 2685: -36,-8 - 2686: -35,-7 - 2687: -36,-7 - 2688: -33,-8 - 2689: -33,-8 - 2690: -35,-8 - 2691: -34,-8 - 2692: -34,-9 - 2693: -34,-10 - 2694: -35,-10 - 2695: -34,-10 - 2696: -34,-11 - 2697: -33,-11 - 2698: -32,-9 - 2699: -34,-8 - 2700: -37,-7 - 2701: -38,-7 - 2702: -38,-8 - 2703: -37,-8 - 2704: -36,-7 - 2705: -39,-7 - 2706: -39,-8 - 2707: -39,-8 - 2708: -40,-5 - 2709: -40,-6 - 2710: -39,-7 - 2711: -38,-5 - 2712: -40,-6 - 3163: 7,12 - 3164: 6,12 - 3165: 7,11 - 3166: 10,12 - 3167: 11,12 - 3168: 11,11 - 3169: 9,12 - 3170: 8,12 - 3171: 11,12 - 3172: 10,13 - 3173: 7,12 - 3174: 10,13 - 3175: 10,15 - 3176: 8,16 - 3177: 8,16 - 3178: 10,16 - 3179: 8,16 - 3180: 6,16 - 3181: 8,16 - 3182: 10,16 - 3183: 10,17 - 3184: 8,16 - 3185: 8,17 - 3186: 7,17 - 3187: 7,17 - 3188: 9,20 - 3189: 10,20 - 3190: 12,20 - 3191: 12,20 - 3192: 11,20 - 3193: 11,18 - 3194: 11,16 - 3195: 10,15 - 3196: 11,15 - 3197: 11,15 - 3198: 10,14 - 3199: 10,14 - 3200: 11,14 - 3201: 8,15 - 3202: 8,16 - 3203: 7,16 - 3204: 9,16 - 3205: 9,16 - 3206: 3,16 - 3207: 0,17 - 3208: -1,16 - 3209: -2,15 - 3210: -2,15 - 3211: -2,15 - 3212: -2,17 - 3213: -1,17 - 3214: 2,16 - 3215: 3,16 - 3216: 3,15 - 3217: 2,16 - 3218: 0,15 - 3219: 0,15 - 3220: 1,15 - 3221: 3,14 - 3222: 4,14 - 3223: 4,15 - 3224: 4,16 - 3225: 2,16 - 3226: -1,15 - 3227: 4,20 - 3228: 3,21 - 3229: 2,21 - 3230: 2,22 - 3231: 3,22 - 3232: 4,22 - 3233: 3,23 - 3234: 2,23 - 3235: 2,25 - 3236: 3,26 - 3237: 4,26 - 3238: 4,25 - 3239: 3,26 - 3240: 2,27 - 3241: 5,28 - 3242: 5,29 - 3243: 4,29 - 3244: 3,29 - 3245: 2,29 - 3246: 4,29 - 3247: 5,30 - 3248: 3,30 - 3249: 3,30 - 3250: 4,30 - 3251: 2,32 - 3252: 2,31 - 3253: 3,32 - 3254: 3,34 - 3255: 3,34 - 3256: 4,33 - 3257: 4,33 - 3258: 6,25 - 3259: 6,25 - 3260: 6,24 - 3261: 7,23 - 3262: 9,23 - 3263: 8,24 - 3264: 8,23 - 3265: 10,22 - 3266: 10,22 - 3267: 7,23 - 3268: 5,23 - 3269: 9,24 - 3270: 9,25 - 3271: 8,24 - 3272: 12,29 - 3273: 11,29 - 3274: 9,29 - 3275: 8,28 - 3276: 10,28 - 3277: 9,29 - 3278: 7,29 - 3279: 10,28 - 3280: 12,29 - 3281: 11,31 - 3282: 9,31 - 3283: 7,30 - 3284: 8,29 - 3285: 12,28 - 3286: 12,29 - 3287: 6,34 - 3288: 9,34 - 3289: 9,34 - 3290: 12,34 - 3291: 12,35 - 3292: 12,36 - 3293: 7,36 - 3294: 6,37 - 3295: 6,37 - 3296: 12,36 - 3297: 12,37 - 3298: 12,36 - 3299: 11,34 - 3300: 9,34 - 3301: 9,33 - 3302: 11,33 - 3303: 12,33 - 3304: 3,36 - 3305: 4,36 - 3306: 4,38 - 3307: 2,40 - 3308: 0,39 - 3309: -1,38 - 3310: 0,36 - 3311: 2,39 - 3312: 0,40 - 3313: 0,38 - 3314: -1,37 - 3315: 0,36 - 3502: -2,10 - 3503: -2,10 - 3504: -3,9 - 3505: -1,8 - 3506: 0,8 - 3507: 1,8 - 3508: 1,10 - 3509: 0,10 - 3510: -2,10 - 3511: 0,9 - 3512: 1,9 - 3513: 0,9 - 3514: -3,8 - 3843: -65,54 - 3844: -66,55 - 3845: -65,54 - 3846: -64,53 - 3847: -63,52 - 3848: -62,55 - 3849: -65,55 - 3850: -66,54 - 3851: -64,51 - 3852: -60,50 - 3853: -60,50 - 3854: -61,51 - 3855: -63,51 - 3856: -61,51 - 3857: -62,52 - 3858: -63,53 - 3859: -63,53 - 3860: -61,52 - 3861: -60,52 - 3862: -60,53 - 3863: -62,53 - 3864: -61,54 - 3865: -61,55 - 3866: -61,55 - 3867: -64,55 - 3868: -65,54 - 3869: -65,53 - 3870: -63,51 - 3871: -61,51 - 3872: -57,54 - 3873: -57,53 - 3874: -57,54 - 3875: -57,54 - 3876: -58,53 - 3877: -57,55 - 3878: -58,57 - 3879: -57,58 - 3880: -55,57 - 3881: -53,57 - 3889: -53,58 - 3890: -56,58 - 3891: -59,58 - 3892: -58,56 - 3893: -58,55 - 3894: -56,54 - 3895: -52,54 - 3896: -51,54 - 3897: -52,54 - 3898: -52,57 - 3899: -54,57 - 3900: -56,56 - 3901: -57,55 - 3902: -55,54 - 3903: -55,55 - 3904: -56,56 - 3905: -56,55 - 3906: -55,55 - 3907: -53,55 - 3908: -47,55 - 3909: -47,55 - 3910: -47,54 - 3911: -47,54 - 3912: -49,55 - 3913: -49,55 - 3914: -49,50 - 3915: -47,51 - 3916: -47,50 - 3917: -47,50 - 3918: -47,51 - 3919: -49,57 - 3920: -49,57 - 3921: -48,60 - 3922: -49,61 - 3923: -49,60 - 3924: -47,58 - 3925: -47,58 - 3926: -48,58 - 3927: -49,62 - 3928: -49,61 - 3929: -48,58 - 3930: -47,61 - 3931: -47,62 - 3932: -43,63 - 3933: -44,62 - 3934: -44,62 - 3935: -44,64 - 3936: -43,64 - 3937: -43,63 - 3938: -43,62 - 3939: -42,61 - 3940: -42,64 - 3941: -43,65 - 3942: -44,64 - 3943: -44,63 - 3944: -48,65 - 3945: -47,65 - 3946: -48,65 - 3947: -46,64 - 3948: -48,64 - 3949: -49,64 - 3950: -51,64 - 3951: -53,65 - 3952: -45,65 - 3953: -45,65 - 3954: -45,64 - 3955: -46,65 - 3956: -46,65 - 3957: -46,64 - 3958: -52,64 - 3959: -52,64 - 3960: -53,63 - 3961: -52,61 - 3962: -51,60 - 3963: -52,61 - 3964: -54,60 - 3965: -57,60 - 3966: -60,61 - 3967: -62,60 - 3968: -62,60 - 3969: -59,60 - 3970: -57,61 - 3971: -55,61 - 3972: -55,60 - 3973: -59,61 - 3974: -60,61 - 3975: -57,60 - 3976: -55,60 - 3977: -56,61 - 3978: -57,61 - 3979: -59,61 - 3980: -53,82 - 3981: -53,83 - 3982: -53,83 - 3983: -52,86 - 3984: -51,88 - 3985: -52,90 - 3986: -53,90 - 3987: -53,89 - 3988: -53,87 - 3989: -53,85 - 3990: -52,84 - 3991: -51,83 - 3992: -50,86 - 3993: -51,88 - 3994: -52,88 - 3995: -52,87 - 3996: -52,85 - 3997: -52,84 - 3998: -55,84 - 3999: -56,84 - 4000: -56,83 - 4001: -55,82 - 4002: -55,83 - 4003: -55,83 - 4004: -56,83 - 4005: -56,84 - 4006: -55,86 - 4007: -56,86 - 4008: -56,88 - 4009: -55,89 - 4010: -55,90 - 4011: -56,89 - 4012: -54,89 - 4013: -56,89 - 4014: -57,89 - 4015: -57,86 - 4016: -58,88 - 4017: -59,89 - 4018: -60,89 - 4019: -61,88 - 4020: -61,87 - 4021: -60,86 - 4022: -61,89 - 4023: -62,88 - 4024: -62,86 - 4025: -61,85 - 4026: -61,87 - 4027: -62,89 - 4028: -62,87 - 4029: -62,85 - 4030: -60,85 - 4031: -61,86 - 4032: -62,85 - 4033: -61,83 - 4034: -60,84 - 4035: -59,84 - 4036: -61,83 - 4037: -61,83 - 4038: -62,83 - 4039: -59,83 - 4040: -57,84 - 4041: -58,84 - 4042: -58,86 - 4043: -58,85 - 4044: -58,84 - 4045: -58,87 - 4046: -60,88 - 4047: -61,87 - 4048: -61,89 - 4049: -62,89 - 4050: -62,88 - 4259: -58,52 - 4260: -58,50 - 4261: -58,49 - 4262: -57,50 - 4263: -58,51 - 4264: -58,50 - 4265: -55,51 - 4266: -55,50 - 4267: -54,49 - 4268: -55,50 - 4269: -55,52 - 4270: -55,52 - 4271: -52,51 - 4272: -52,51 - 4273: -52,49 - 4274: -52,49 - 4275: -51,50 - 4276: -51,51 - 4277: -52,50 - 4278: -51,49 - 4279: -52,52 - 4686: -61,45 - 4687: -63,45 - 4688: -64,45 - 4689: -65,44 - 4690: -62,44 - 4691: -61,45 - 4692: -63,45 - 4693: -65,45 - 4694: -64,44 - 4695: -62,44 - 4696: -63,45 - 4697: -64,45 - 4698: -63,44 - 4699: -63,44 - 4700: -63,42 - 4701: -64,42 - 4702: -62,42 - 4703: -61,41 - 4704: -61,40 - 4705: -61,38 - 4706: -62,38 - 4707: -62,39 - 4708: -62,40 - 4709: -63,39 - 4710: -63,38 - 4711: -65,39 - 4712: -65,39 - 4713: -65,38 - 4714: -65,41 - 4715: -64,42 - 4716: -63,42 - 4717: -62,42 - 4758: -71,49 - 4759: -73,49 - 4760: -73,48 - 4761: -73,47 - 4762: -72,47 - 4763: -70,48 - 4764: -71,49 - 4765: -71,47 - 4766: -69,47 - 4767: -69,47 - 4768: -70,48 - 4769: -70,49 - 4770: -72,48 - 4771: -72,48 - 4808: -67,50 - 4809: -67,49 - 4810: -68,49 - 4861: -71,54 - 4862: -71,55 - 4863: -71,54 - 4864: -70,53 - 4865: -70,51 - 4866: -70,51 - 4867: -72,52 - 4868: -75,51 - 4869: -73,51 - 4870: -70,54 - 4871: -71,56 - 4872: -71,55 - 4873: -71,54 - 4874: -71,53 - 4936: -60,31 - 4937: -61,33 - 4938: -62,33 - 4939: -62,32 - 4940: -61,31 - 4941: -62,31 - 4942: -62,34 - 4943: -60,33 - 4944: -60,33 - 4945: -60,32 - 4946: -60,31 - 4947: -62,31 - 4952: -82,29 - 4953: -82,30 - 4954: -82,32 - 4955: -83,33 - 4956: -83,31 - 4957: -83,29 - 4958: -83,29 - 4959: -82,33 - 4960: -81,33 - 4961: -79,33 - 4962: -77,33 - 4963: -77,33 - 4964: -79,32 - 4965: -81,32 - 4966: -82,31 - 4967: -81,30 - 4968: -78,30 - 4969: -79,32 - 4970: -80,30 - 4971: -79,29 - 4972: -77,29 - 4973: -79,32 - 4974: -81,31 - 4975: -80,29 - 4976: -78,29 - 4977: -74,35 - 4978: -75,34 - 4979: -74,32 - 4980: -74,30 - 4981: -75,29 - 4982: -75,31 - 4983: -75,31 - 4984: -75,27 - 4985: -74,25 - 4986: -75,25 - 4987: -74,26 - 4988: -75,25 - 4989: -76,25 - 4990: -75,23 - 4991: -75,25 - 4992: -76,25 - 4993: -77,25 - 4994: -75,24 - 4995: -74,24 - 4996: -75,26 - 4997: -76,26 - 4998: -75,23 - 4999: -74,21 - 5000: -75,20 - 5001: -75,19 - 5002: -75,22 - 5003: -75,23 - 5004: -75,20 - 5005: -75,16 - 5006: -75,15 - 5007: -74,16 - 5008: -74,16 - 5009: -75,17 - 5010: -73,17 - 5011: -72,17 - 5012: -71,17 - 5013: -73,16 - 5014: -74,16 - 5015: -73,15 - 5016: -72,16 - 5017: -75,16 - 5018: -72,15 - 5019: -70,17 - 5020: -71,17 - 5021: -69,16 - 5022: -69,17 - 5023: -71,16 - 5059: -78,21 - 5060: -77,21 - 5061: -77,22 - 5062: -78,22 - 5063: -77,20 - 5064: -79,19 - 5065: -81,20 - 5066: -82,20 - 5067: -83,19 - 5068: -81,18 - 5069: -79,18 - 5070: -77,19 - 5071: -77,19 - 5072: -86,20 - 5073: -86,20 - 5074: -86,21 - 5075: -86,24 - 5076: -86,24 - 5077: -86,23 - 5078: -86,25 - 5079: -86,27 - 5080: -84,27 - 5081: -81,27 - 5082: -80,26 - 5083: -80,25 - 5084: -80,23 - 5085: -81,23 - 5086: -82,22 - 5087: -82,23 - 5088: -82,23 - 5089: -81,23 - 5090: -79,26 - 5091: -80,26 - 5092: -80,25 - 5093: -79,24 - 5094: -79,24 - 5095: -71,31 - 5096: -72,31 - 5097: -71,31 - 5098: -70,31 - 5099: -70,30 - 5100: -70,28 - 5101: -70,28 - 5299: -64,13 - 5300: -65,14 - 5301: -64,11 - 5302: -64,10 - 5303: -64,12 - 5304: -65,13 - 5305: -65,13 - 5306: -65,11 - 5307: -61,12 - 5308: -62,14 - 5309: -62,11 - 5310: -62,10 - 5311: -61,10 - 5312: -62,13 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - decals: - 299: -13,-5 - 300: -14,-4 - 301: -14,-3 - 302: -12,-3 - 303: -11,-3 - 304: -14,-15 - 305: -15,-14 - 306: -17,-13 - 363: 27,20 - 364: 26,19 - 365: 26,17 - 366: 27,16 - 367: 27,15 - 368: 27,12 - 369: 26,8 - 370: 26,6 - 371: 23,5 - 372: 22,4 - 373: 20,5 - 374: 18,5 - 375: 15,6 - 376: 14,5 - 377: 11,6 - 378: 9,6 - 379: 11,3 - 380: 11,2 - 381: 10,-1 - 382: 11,-3 - 383: 11,-1 - 384: 10,-2 - 385: 10,-3 - 386: 11,1 - 387: 11,1 - 388: 11,-3 - 786: -42,1 - 787: -42,1 - 788: -41,3 - 789: -40,4 - 790: -38,4 - 791: -35,5 - 792: -38,5 - 793: -41,5 - 794: -40,5 - 795: -36,5 - 796: -34,5 - 797: -34,3 - 798: -34,1 - 799: -33,1 - 800: -32,4 - 801: -34,6 - 802: -35,6 - 803: -38,6 - 804: -42,6 - 805: -42,5 - 806: -40,3 - 807: -36,4 - 808: -33,4 - 809: -34,1 - 810: -33,1 - 811: -33,3 - 812: -34,4 - 813: -35,2 - 814: -33,1 - 815: -34,4 - 816: -40,5 - 817: -40,4 - 818: -41,3 - 819: -41,3 - 883: -34,0 - 884: -34,0 - 885: -35,0 - 886: -35,1 - 887: -34,2 - 888: -34,3 - 889: -36,4 - 890: -38,5 - 891: -39,5 - 892: -37,5 - 893: -36,6 - 894: -36,6 - 895: -38,7 - 896: -39,7 - 897: -40,6 - 898: -40,5 - 899: -41,4 - 900: -41,3 - 901: -42,2 - 949: -31,4 - 950: -30,5 - 951: -28,5 - 952: -26,5 - 953: -25,4 - 954: -24,4 - 955: -24,5 - 956: -27,6 - 957: -30,6 - 958: -31,5 - 959: -28,5 - 960: -24,6 - 961: -22,6 - 962: -21,5 - 963: -21,5 - 964: -22,4 - 965: -21,4 - 966: -18,5 - 967: -18,5 - 968: -21,5 - 969: -21,5 - 970: -20,5 - 971: -19,5 - 972: -20,4 - 973: -21,4 - 974: -23,5 - 975: -23,5 - 976: -25,4 - 977: -27,4 - 978: -29,4 - 979: -30,5 - 980: -30,6 - 981: -32,6 - 982: -31,6 - 983: -25,6 - 984: -19,6 - 985: -17,6 - 986: -16,5 - 987: -17,4 - 988: -15,4 - 989: -15,4 - 990: -18,4 - 991: -41,2 - 992: -42,2 - 993: -41,1 - 994: -41,0 - 995: -41,0 - 996: -42,4 - 997: -42,4 - 998: -29,6 - 1561: -39,10 - 1562: -38,10 - 1563: -38,10 - 1564: -39,10 - 1565: -39,9 - 1566: -38,12 - 1567: -37,15 - 1568: -37,15 - 1569: -39,15 - 1570: -38,13 - 1571: -37,18 - 1572: -38,21 - 1573: -38,22 - 1574: -39,21 - 1575: -37,21 - 1576: -37,26 - 1577: -38,28 - 1578: -39,28 - 1579: -38,28 - 1580: -38,32 - 1581: -37,33 - 1582: -34,32 - 1583: -32,32 - 1584: -32,31 - 1585: -30,32 - 1586: -28,33 - 1587: -26,33 - 1588: -23,33 - 1589: -22,32 - 1590: -19,32 - 1591: -17,33 - 1592: -17,32 - 1593: -17,31 - 1594: -18,32 - 1595: -20,32 - 1596: -23,27 - 1597: -23,26 - 1598: -26,28 - 1599: -28,29 - 1600: -26,27 - 1601: -17,29 - 1602: -18,28 - 1603: -18,27 - 1604: -32,33 - 1605: -35,33 - 1606: -37,32 - 1607: -34,32 - 1608: -33,33 - 1609: -36,33 - 1610: -35,27 - 1611: -35,25 - 1612: -35,23 - 1613: -33,24 - 1614: -35,27 - 1615: -36,27 - 1616: -36,25 - 1617: -35,24 - 1618: -32,26 - 1619: -37,32 - 1620: -40,33 - 1621: -43,32 - 1622: -44,30 - 1623: -43,32 - 1624: -45,33 - 1625: -48,33 - 1626: -52,32 - 1627: -53,31 - 1628: -55,32 - 1629: -56,33 - 1630: -58,33 - 1631: -59,31 - 1632: -58,28 - 1633: -57,27 - 1634: -59,28 - 1635: -59,29 - 1636: -58,25 - 1637: -58,23 - 1638: -59,22 - 1639: -59,21 - 1640: -59,19 - 1641: -58,17 - 1642: -57,15 - 1643: -57,13 - 1644: -59,13 - 1645: -59,11 - 1646: -58,8 - 1647: -58,7 - 1648: -58,5 - 1649: -57,5 - 1650: -58,6 - 1651: -61,6 - 1652: -62,5 - 1653: -63,5 - 1654: -65,5 - 1655: -66,5 - 1656: -64,4 - 1657: -63,5 - 1658: -65,6 - 1659: -70,6 - 1660: -72,5 - 1661: -72,4 - 1662: -73,6 - 1663: -76,6 - 1664: -75,5 - 1665: -71,6 - 1666: -66,6 - 1667: -62,5 - 1668: -58,3 - 1669: -58,3 - 1670: -59,2 - 1671: -59,1 - 1672: -57,-1 - 1673: -57,2 - 1674: -58,1 - 1675: -58,-2 - 1676: -58,-4 - 1677: -59,-6 - 1678: -58,-9 - 1679: -57,-7 - 1680: -58,-10 - 1681: -58,-10 - 1682: -59,-11 - 1683: -57,-11 - 1684: -58,-11 - 1685: -59,-11 - 1687: -57,-11 - 1706: -55,5 - 1707: -55,5 - 1708: -54,6 - 1709: -55,6 - 1710: -56,5 - 1711: -53,9 - 1712: -55,9 - 1713: -52,8 - 1714: -48,9 - 1715: -52,10 - 1716: -53,10 - 1717: -50,9 - 1718: -48,10 - 1719: -50,10 - 1720: -53,10 - 1721: -54,9 - 1722: -51,8 - 1723: -48,8 - 1724: -44,5 - 1725: -46,5 - 1726: -48,4 - 1727: -38,20 - 1728: -37,19 - 1729: -37,17 - 1730: -37,20 - 2145: -7,42 - 2146: -9,44 - 2147: -10,43 - 2148: -10,41 - 2149: -10,39 - 2150: -6,39 - 2151: -6,42 - 2152: -7,44 - 2153: -8,42 - 2154: -7,40 - 2155: -7,41 - 2156: 4,49 - 2157: 2,50 - 2158: 2,52 - 2159: 2,51 - 2160: 4,49 - 2161: 4,51 - 2162: 3,50 - 2163: 11,51 - 2164: 10,51 - 2165: 10,50 - 2166: 11,52 - 2167: 10,51 - 2168: 11,50 - 2169: 10,46 - 2170: 11,45 - 2171: 11,46 - 2172: 10,45 - 2173: 12,44 - 2174: 11,46 - 2175: 10,46 - 2176: 9,46 - 2177: 9,43 - 2178: 9,42 - 2179: 11,42 - 2180: 12,43 - 2181: 10,43 - 2182: 11,42 - 2183: 12,42 - 2184: 10,42 - 2185: 11,43 - 2186: 17,37 - 2187: 18,38 - 2188: 21,39 - 2189: 22,38 - 2190: 23,37 - 2191: 20,38 - 2192: 17,38 - 2193: 19,37 - 2194: 22,39 - 2195: 22,40 - 2196: 19,42 - 2197: 17,42 - 2198: 16,40 - 2199: 18,39 - 2200: 20,40 - 2201: 19,42 - 2202: 18,42 - 2203: 18,39 - 2204: 20,39 - 2205: 21,42 - 2206: 22,43 - 2207: 23,41 - 2208: 22,40 - 2209: 22,42 - 2210: 20,42 - 2211: 19,40 - 2212: 19,39 - 2213: 18,41 - 2214: 18,42 - 2215: 17,40 - 2216: 18,38 - 2217: -21,38 - 2218: -22,37 - 2219: -23,37 - 2220: -22,40 - 2221: -22,42 - 2222: -24,42 - 2223: -22,40 - 2224: -21,39 - 2225: -21,41 - 2226: -21,42 - 2227: -20,40 - 2228: -21,39 - 2229: -21,39 - 2230: -22,42 - 2231: -23,42 - 2432: -22,60 - 2433: -20,59 - 2434: -21,60 - 2435: -20,61 - 2436: -19,63 - 2437: -18,63 - 2438: -18,62 - 2439: -19,62 - 2440: -17,62 - 2441: -15,62 - 2442: -16,63 - 2443: -17,65 - 2444: -16,65 - 2445: -18,66 - 2446: -19,65 - 2447: -18,64 - 2448: -17,65 - 2449: -15,66 - 2450: -14,65 - 2451: -14,64 - 2452: -20,64 - 2453: -21,63 - 2454: -21,62 - 2455: -20,62 - 2456: -21,61 - 2457: -22,59 - 2458: -22,59 - 2459: -13,59 - 2460: -12,59 - 2461: -14,59 - 2462: -14,60 - 2463: -14,62 - 2464: -17,61 - 2465: -18,60 - 2466: -18,60 - 2467: -19,59 - 2468: -19,57 - 2469: -19,56 - 2470: -19,54 - 2471: -18,54 - 2472: -16,53 - 2473: -15,55 - 2474: -15,56 - 2475: -15,53 - 2476: -16,53 - 2477: -16,41 - 2478: -17,41 - 2479: -18,39 - 2480: -17,37 - 2481: -16,38 - 2482: -17,41 - 2483: -17,42 - 2484: -18,40 - 2485: -16,40 - 2486: -16,43 - 2487: -17,45 - 2488: -18,43 - 2489: -18,40 - 2713: -40,-7 - 2714: -39,-6 - 2715: -39,-7 - 2716: -39,-8 - 2717: -41,-6 - 2718: -41,-5 - 2719: -41,-4 - 2720: -42,-5 - 2721: -42,-6 - 2722: -42,-4 - 2723: -40,-2 - 2724: -38,-3 - 2725: -39,-5 - 2726: -42,-2 - 2727: -42,-2 - 2728: -41,-2 - 2729: -40,-3 - 2730: -35,-8 - 2731: -32,-9 - 2732: -33,-6 - 2733: -32,-6 - 2734: -32,-6 - 2735: -32,-10 - 2736: -33,-10 - 2737: -34,-10 - 2738: -32,-10 - 2739: -34,-10 - 2740: -37,-8 - 2741: -36,-8 - 2742: -35,-8 - 2743: -36,-7 - 2744: -38,-6 - 2745: -40,-7 - 2746: -40,-7 - 3316: 6,13 - 3317: 6,12 - 3318: 8,11 - 3319: 10,11 - 3320: 11,13 - 3321: 9,15 - 3322: 7,15 - 3323: 7,15 - 3324: 10,17 - 3325: 9,19 - 3326: 9,19 - 3327: 9,18 - 3328: 9,19 - 3329: 11,20 - 3330: 11,20 - 3331: 11,17 - 3332: 11,15 - 3333: 10,14 - 3334: 9,14 - 3335: 10,12 - 3336: 8,14 - 3337: 8,14 - 3338: 2,15 - 3339: 2,16 - 3340: -1,16 - 3341: -2,16 - 3342: 0,14 - 3343: 3,15 - 3344: 3,16 - 3345: 0,16 - 3346: 0,16 - 3347: 2,15 - 3348: 1,16 - 3349: 0,16 - 3350: -2,17 - 3351: -2,16 - 3352: -2,15 - 3353: 1,14 - 3354: 3,14 - 3355: 4,15 - 3356: 4,17 - 3357: 3,17 - 3358: 1,17 - 3359: 2,20 - 3360: 1,19 - 3361: 4,20 - 3362: 3,20 - 3363: 7,20 - 3364: 6,19 - 3365: 7,19 - 3366: 7,20 - 3367: 6,20 - 3368: 7,19 - 3369: 1,20 - 3370: 1,20 - 3371: 3,20 - 3372: 3,21 - 3373: 2,21 - 3374: 2,22 - 3375: 2,23 - 3376: 2,25 - 3377: 2,25 - 3378: 2,24 - 3379: 3,23 - 3380: 4,22 - 3381: 4,21 - 3382: 4,24 - 3383: 3,25 - 3384: 3,24 - 3385: 4,24 - 3386: 4,25 - 3387: 3,26 - 3388: 2,26 - 3389: 4,27 - 3390: 4,29 - 3391: 2,28 - 3392: 4,28 - 3393: 5,28 - 3394: 4,29 - 3395: 4,28 - 3396: 3,29 - 3397: 2,30 - 3398: 3,31 - 3399: 3,32 - 3400: 3,34 - 3401: 2,33 - 3402: 4,31 - 3403: 4,32 - 3404: 3,32 - 3405: 2,32 - 3406: 6,25 - 3407: 6,25 - 3408: 6,24 - 3409: 6,23 - 3410: 8,22 - 3411: 9,22 - 3412: 10,22 - 3413: 9,23 - 3414: 8,23 - 3415: 9,24 - 3416: 9,25 - 3417: 7,25 - 3418: 9,25 - 3419: 8,26 - 3420: 7,26 - 3421: 10,26 - 3422: 9,26 - 3423: 9,26 - 3424: 12,28 - 3425: 10,29 - 3426: 9,29 - 3427: 8,28 - 3428: 7,28 - 3429: 7,30 - 3430: 8,31 - 3431: 11,31 - 3432: 12,31 - 3433: 12,30 - 3434: 11,30 - 3435: 9,31 - 3436: 7,30 - 3437: 8,29 - 3438: 12,28 - 3439: 6,34 - 3440: 6,34 - 3441: 7,33 - 3442: 9,34 - 3443: 10,34 - 3444: 11,34 - 3445: 12,33 - 3446: 12,36 - 3447: 11,37 - 3448: 10,36 - 3449: 10,36 - 3450: 8,36 - 3451: 7,37 - 3452: 6,35 - 3453: 6,34 - 3454: 11,34 - 3455: 11,36 - 3456: 9,37 - 3457: -1,36 - 3458: 0,36 - 3459: 0,37 - 3460: -1,39 - 3461: 1,40 - 3462: 3,40 - 3463: 4,37 - 3464: 4,36 - 3465: 3,36 - 3466: 2,37 - 3467: 2,38 - 3468: 0,37 - 3469: 1,36 - 3470: 0,37 - 3471: -1,36 - 3472: 0,38 - 3473: -1,39 - 3474: 1,40 - 3475: 2,39 - 3515: -3,10 - 3516: -3,9 - 3517: -2,8 - 3518: 0,9 - 3519: 1,9 - 3520: 1,8 - 3521: 0,10 - 3522: -2,10 - 3523: -3,10 - 4051: -66,54 - 4052: -66,55 - 4053: -66,55 - 4054: -66,53 - 4055: -65,52 - 4056: -63,52 - 4057: -62,53 - 4058: -61,51 - 4059: -62,51 - 4060: -62,50 - 4061: -62,52 - 4062: -62,53 - 4063: -64,54 - 4064: -65,53 - 4065: -64,53 - 4066: -60,54 - 4067: -61,55 - 4068: -62,55 - 4069: -64,55 - 4070: -59,54 - 4071: -60,52 - 4072: -60,51 - 4073: -62,51 - 4074: -61,52 - 4075: -61,52 - 4076: -58,53 - 4077: -59,55 - 4078: -59,55 - 4079: -58,53 - 4080: -58,53 - 4081: -55,53 - 4082: -51,53 - 4083: -51,54 - 4084: -52,54 - 4085: -55,54 - 4086: -57,54 - 4087: -52,55 - 4088: -53,56 - 4089: -53,56 - 4090: -53,55 - 4091: -53,55 - 4092: -56,56 - 4093: -57,56 - 4094: -57,55 - 4095: -58,57 - 4096: -57,58 - 4097: -53,58 - 4098: -51,57 - 4099: -52,56 - 4100: -56,56 - 4101: -56,55 - 4102: -47,54 - 4103: -48,55 - 4104: -49,55 - 4105: -49,55 - 4106: -48,52 - 4107: -49,50 - 4108: -49,49 - 4109: -47,50 - 4110: -47,52 - 4111: -47,52 - 4112: -49,58 - 4113: -49,58 - 4114: -48,57 - 4115: -47,59 - 4116: -47,61 - 4117: -48,61 - 4118: -49,61 - 4119: -49,59 - 4120: -48,58 - 4121: -44,62 - 4122: -44,61 - 4123: -43,63 - 4124: -44,65 - 4125: -44,64 - 4126: -43,62 - 4127: -42,61 - 4128: -42,64 - 4129: -43,65 - 4130: -48,64 - 4131: -48,65 - 4132: -50,65 - 4133: -52,65 - 4134: -52,64 - 4135: -53,63 - 4136: -53,65 - 4137: -52,64 - 4138: -51,61 - 4139: -52,62 - 4140: -53,64 - 4141: -53,64 - 4142: -53,62 - 4143: -53,60 - 4144: -51,60 - 4145: -51,61 - 4146: -53,60 - 4147: -52,60 - 4148: -52,60 - 4149: -56,62 - 4150: -58,61 - 4151: -57,61 - 4152: -55,60 - 4153: -58,60 - 4154: -61,61 - 4155: -62,60 - 4156: -59,60 - 4157: -58,60 - 4158: -60,61 - 4159: -62,61 - 4160: -57,61 - 4161: -53,61 - 4162: -52,61 - 4163: -52,61 - 4164: -53,83 - 4165: -53,82 - 4166: -52,83 - 4167: -51,84 - 4168: -51,83 - 4169: -51,84 - 4170: -52,84 - 4171: -53,85 - 4172: -52,85 - 4173: -51,86 - 4174: -51,89 - 4175: -52,90 - 4176: -53,89 - 4177: -53,88 - 4178: -52,87 - 4179: -51,87 - 4180: -51,87 - 4181: -51,89 - 4182: -51,90 - 4183: -51,89 - 4184: -55,86 - 4185: -56,86 - 4186: -57,86 - 4187: -59,86 - 4188: -55,89 - 4189: -55,90 - 4190: -56,89 - 4191: -56,88 - 4192: -56,88 - 4193: -58,89 - 4194: -60,89 - 4195: -61,88 - 4196: -62,86 - 4197: -62,85 - 4198: -62,84 - 4199: -62,83 - 4200: -62,83 - 4201: -62,86 - 4202: -62,88 - 4203: -61,89 - 4204: -60,88 - 4205: -60,86 - 4206: -61,85 - 4207: -60,84 - 4208: -58,83 - 4209: -58,83 - 4210: -58,87 - 4211: -59,89 - 4212: -61,88 - 4213: -60,87 - 4214: -60,87 - 4215: -55,83 - 4216: -56,84 - 4217: -56,83 - 4218: -55,82 - 4219: -55,84 - 4220: -56,83 - 4221: -56,82 - 4222: -53,82 - 4223: -53,83 - 4224: -51,84 - 4225: -52,85 - 4226: -53,84 - 4227: -52,83 - 4228: -52,85 - 4229: -52,87 - 4230: -52,88 - 4231: -53,86 - 4232: -53,85 - 4233: -57,49 - 4234: -58,49 - 4235: -57,50 - 4236: -58,52 - 4237: -58,49 - 4238: -57,50 - 4239: -58,52 - 4240: -58,51 - 4241: -57,50 - 4242: -57,50 - 4243: -58,51 - 4244: -58,49 - 4245: -55,51 - 4246: -55,52 - 4247: -55,50 - 4248: -54,50 - 4249: -54,51 - 4250: -55,50 - 4251: -54,49 - 4252: -52,52 - 4253: -52,51 - 4254: -52,50 - 4255: -51,49 - 4256: -51,51 - 4257: -52,50 - 4258: -52,49 - 4718: -62,45 - 4719: -64,45 - 4720: -65,45 - 4721: -64,44 - 4722: -62,44 - 4723: -61,45 - 4724: -62,45 - 4725: -63,44 - 4726: -62,40 - 4727: -61,42 - 4728: -61,42 - 4729: -61,40 - 4730: -61,39 - 4731: -61,38 - 4732: -62,38 - 4733: -63,38 - 4734: -64,38 - 4735: -65,39 - 4736: -64,40 - 4737: -65,39 - 4738: -65,38 - 4739: -64,39 - 4740: -62,40 - 4741: -62,41 - 4742: -64,42 - 4743: -64,42 - 4744: -63,40 - 4772: -72,48 - 4773: -73,49 - 4774: -73,48 - 4775: -71,47 - 4776: -70,48 - 4777: -70,49 - 4778: -70,48 - 4779: -69,47 - 4780: -69,49 - 4781: -67,49 - 4782: -68,49 - 4783: -69,49 - 4784: -67,50 - 4785: -67,49 - 4786: -66,48 - 4787: -66,47 - 4788: -66,49 - 4789: -68,49 - 4790: -67,48 - 4791: -67,47 - 4792: -66,47 - 4793: -67,46 - 4794: -66,48 - 4795: -65,48 - 4796: -65,47 - 4797: -67,49 - 4798: -67,50 - 4875: -71,51 - 4876: -73,52 - 4877: -74,52 - 4878: -71,51 - 4879: -70,52 - 4880: -71,55 - 4881: -72,56 - 4882: -70,55 - 4883: -71,56 - 4884: -76,54 - 4885: -77,54 - 4886: -78,54 - 4887: -78,53 - 4888: -78,54 - 4889: -76,54 - 4948: -60,31 - 4949: -62,32 - 4950: -62,33 - 4951: -62,32 - 5102: -72,31 - 5103: -71,31 - 5104: -70,31 - 5105: -70,29 - 5106: -71,30 - 5107: -72,30 - 5108: -72,28 - 5109: -67,31 - 5110: -68,31 - 5111: -68,29 - 5112: -68,27 - 5113: -68,26 - 5114: -68,26 - 5115: -67,25 - 5116: -65,26 - 5117: -66,27 - 5118: -67,27 - 5119: -66,26 - 5120: -64,25 - 5121: -64,27 - 5122: -66,28 - 5123: -67,30 - 5124: -67,30 - 5125: -62,32 - 5126: -62,33 - 5127: -61,32 - 5128: -61,32 - 5129: -62,34 - 5130: -65,31 - 5131: -64,30 - 5132: -64,32 - 5133: -64,34 - 5134: -65,34 - 5135: -65,33 - 5136: -64,32 - 5137: -64,33 - 5138: -65,34 - 5139: -67,34 - 5140: -68,34 - 5141: -69,33 - 5142: -69,33 - 5143: -72,34 - 5144: -73,33 - 5145: -74,33 - 5146: -74,35 - 5147: -75,35 - 5148: -75,34 - 5149: -74,32 - 5150: -74,30 - 5151: -74,30 - 5152: -74,30 - 5153: -75,28 - 5154: -75,27 - 5155: -75,25 - 5156: -74,26 - 5157: -74,26 - 5158: -76,26 - 5159: -76,25 - 5160: -75,24 - 5161: -74,24 - 5162: -77,25 - 5163: -77,25 - 5164: -76,24 - 5165: -74,22 - 5166: -74,22 - 5167: -74,20 - 5168: -75,20 - 5169: -75,22 - 5170: -75,17 - 5171: -75,16 - 5172: -74,16 - 5173: -72,16 - 5174: -71,17 - 5175: -73,17 - 5176: -74,16 - 5177: -74,16 - 5178: -71,20 - 5179: -71,20 - 5180: -69,19 - 5181: -68,19 - 5182: -67,19 - 5183: -68,20 - 5184: -66,20 - 5185: -64,19 - 5186: -65,22 - 5187: -66,23 - 5188: -68,23 - 5189: -67,22 - 5190: -68,23 - 5191: -71,23 - 5192: -72,22 - 5193: -79,26 - 5194: -80,26 - 5195: -81,25 - 5196: -80,23 - 5197: -80,23 - 5198: -83,24 - 5199: -82,25 - 5200: -83,25 - 5201: -84,25 - 5202: -84,24 - 5203: -82,26 - 5204: -85,26 - 5205: -86,26 - 5206: -86,26 - 5207: -87,25 - 5208: -85,24 - 5209: -83,24 - 5210: -83,26 - 5211: -84,26 - 5212: -83,25 - 5213: -82,23 - 5214: -84,23 - 5215: -86,24 - 5216: -83,23 - 5217: -82,23 - 5218: -81,22 - 5219: -81,26 - 5220: -82,27 - 5221: -84,27 - 5222: -85,27 - 5223: -85,29 - 5224: -86,29 - 5225: -85,30 - 5226: -86,30 - 5227: -85,20 - 5228: -86,21 - 5229: -86,20 - 5230: -83,19 - 5231: -82,18 - 5232: -80,19 - 5233: -81,20 - 5234: -80,29 - 5235: -82,30 - 5236: -82,30 - 5237: -80,29 - 5238: -80,29 - 5239: -81,32 - 5240: -82,33 - 5241: -81,33 - 5242: -80,32 - 5243: -77,33 - 5313: -64,12 - 5314: -65,14 - 5315: -65,13 - 5316: -65,11 - 5317: -65,10 - 5318: -63,10 - 5319: -62,12 - 5320: -62,13 - 5321: -63,12 - 5322: -62,10 - 5323: -61,10 - 5324: -62,13 - 5325: -63,14 - 5326: -64,13 - 5327: -64,14 - 5328: -65,14 - 5329: -65,13 - - node: - color: '#FF00FFFF' - id: CheckerNWSE - decals: - 718: -30,-13 - 719: -30,-12 - 720: -30,-11 - 721: -29,-11 - 722: -29,-12 - 723: -29,-13 - 724: -28,-13 - 725: -28,-12 - 726: -28,-11 - - node: - color: '#A46106FF' - id: MiniTileWhiteLineE - decals: - 735: -32,-3 - 736: -32,-4 - 2561: -37,-3 - 2562: -37,-4 - 2563: -37,-5 - 2564: -32,-7 - 2565: -32,-7 - 2566: -32,-8 - 2567: -32,-9 - 2568: -32,-10 - 2569: -38,-11 - 2570: -38,-12 - 2571: -38,-13 - - node: - color: '#A46106FF' - id: MiniTileWhiteCornerNe - decals: - 741: -32,-2 - 2572: -38,-10 - 2573: -32,-6 - 2574: -37,-2 - - node: - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 1759: -30,52 - 1760: -29,53 - 1761: -28,54 - 1762: -26,54 - 1763: -26,55 - 1764: -26,55 - 1765: -26,53 - 1766: -40,45 - 1773: -35,35 - 1774: -37,37 - 1775: -36,34 - 1776: -35,38 - 1777: -37,39 - 1778: -40,38 - 1779: -41,36 - 1780: -38,39 - 1781: -42,38 - 1782: -44,37 - 1783: -41,37 - 1784: -43,39 - 1785: -44,38 - 1786: -44,36 - 1787: -39,36 - 1788: -37,39 - 1789: -37,38 - 1790: -36,36 - 1791: -36,40 - 1792: -38,40 - 1793: -41,37 - 1794: -43,36 - 1795: -41,35 - 1796: -39,36 - 1797: -45,39 - 1798: -45,39 - 1799: -41,37 - 1800: -39,36 - 1801: -37,38 - 1802: -39,39 - 1849: -28,40 - 1850: -29,41 - 1851: -29,42 - 1852: -27,42 - 1853: -29,42 - 1854: -29,41 - 1855: -28,40 - 1856: -28,40 - 1857: -29,42 - 1858: -29,42 - 1859: -29,42 - 1860: -30,25 - 1861: -29,23 - 1862: -29,25 - 1863: -30,27 - 1864: -31,28 - 1865: -31,24 - 1866: -30,24 - 1867: -29,27 - 1868: -30,29 - 1869: -31,27 - 1870: -31,24 - 1871: -29,27 - 1872: -30,28 - 1873: -28,12 - 1874: -29,11 - 1875: -29,9 - 1876: -27,8 - 1877: -25,12 - 1878: -27,12 - 1879: -27,10 - 1880: -25,10 - 1881: -24,12 - 1882: -24,11 - 1883: -24,9 - 1884: -26,8 - 1885: -28,12 - 1886: -26,12 - 1887: -28,11 - 1888: -28,9 - 1889: -26,8 - 1890: -24,12 - 1891: -26,13 - 1892: -28,11 - 1893: -27,9 - 1894: -24,9 - 1895: -28,12 - 1896: -29,10 - 1897: -25,10 - 1898: -24,16 - 1899: -26,18 - 1900: -29,17 - 1901: -28,16 - 1902: -25,17 - 1903: -27,17 - 1904: -26,16 - 1905: -23,15 - 1906: -25,17 - 1907: -30,17 - 1908: -28,16 - 1909: -27,18 - 1910: -29,17 - 1911: -27,15 - 1912: -23,15 - 1913: -24,17 - 1914: -28,18 - 1915: -29,16 - 1916: -26,16 - 1917: -30,25 - 1918: -30,24 - 1919: -31,25 - 1920: -30,28 - 1921: -31,27 - 1922: -17,-3 - 1923: -17,-3 - 1924: -18,-5 - 1925: -17,-5 - 1926: -17,-3 - 1927: -18,-4 - 1928: -18,-5 - 1929: -16,-5 - 1930: -17,-2 - 1931: -19,-3 - 1932: -19,-5 - 1933: -17,-5 - 1934: -17,-2 - 1935: -19,-3 - 1936: -19,-9 - 1937: -18,-9 - 1938: -16,-8 - 1939: -16,-8 - 1940: -16,-9 - 1941: -18,-8 - 1942: -29,-9 - 1943: -30,-8 - 1944: -27,-6 - 1945: -28,-5 - 1946: -30,-8 - 1947: -28,-9 - 1948: -29,-6 - 1949: -29,-4 - 1950: -30,-5 - 1951: -29,-7 - 1952: -25,-9 - 1953: -25,-9 - 1954: -22,-9 - 1955: -22,-8 - 1956: -22,-8 - 1957: -21,-6 - 1958: -22,-2 - 1959: -21,0 - 1960: -19,1 - 1961: -17,1 - 1962: -30,2 - 1963: -30,1 - 1964: -29,0 - 1965: -29,-2 - 1966: -26,-2 - 1967: -27,-1 - 1968: -26,-2 - 1969: -26,1 - 1970: -27,1 - 1971: -27,2 - 1972: -26,0 - 1973: -27,1 - 1974: -27,2 - 1975: -27,0 - 1976: -27,-1 - 1977: -26,-2 - 1978: -24,-2 - 1979: -24,-2 - 1980: -24,1 - 1981: -24,2 - 1982: -26,1 - 1983: -27,1 - 1984: -26,-1 - 1985: -28,-2 - 1986: -33,-2 - 1987: -34,-2 - 1988: -36,-4 - 1989: -33,-2 - 1990: -33,-3 - 1991: -34,-4 - 1992: -33,-3 - 1993: -33,-3 - 1994: -33,-3 - 1995: -45,-3 - 1996: -45,-2 - 1997: -46,-3 - 1998: -47,-4 - 1999: -45,-5 - 2000: -44,-4 - 2001: -44,-2 - 2002: -45,-2 - 2003: -46,-3 - 2004: -46,-4 - 2005: -47,-4 - 2006: -45,-3 - 2007: -44,1 - 2008: -46,1 - 2009: -46,1 - 2010: -44,1 - 2011: -45,2 - 2012: -46,2 - 2013: -46,0 - 2014: -44,0 - 2015: -46,1 - 2016: -46,2 - 2017: -47,1 - 2018: -47,1 - 2019: -44,1 - 2020: -45,2 - 2021: -46,1 - 2022: -45,1 - 2023: -45,0 - 2024: -46,0 - 2025: -47,1 - 2026: -52,-2 - 2027: -51,-1 - 2028: -53,-1 - 2029: -52,-3 - 2030: -51,-2 - 2031: -52,-1 - 2032: -55,-1 - 2033: -55,-2 - 2034: -53,-2 - 2035: -54,-2 - 2036: -55,-3 - 2037: -52,-1 - 2038: -53,-1 - 2039: -52,-3 - 2040: -51,-3 - 2041: -52,-7 - 2042: -52,-6 - 2043: -54,-6 - 2044: -52,-8 - 2045: -51,-5 - 2046: -53,-5 - 2047: -54,-7 - 2048: -55,-8 - 2049: -53,-8 - 2050: -51,-7 - 2051: -53,-5 - 2052: -55,-6 - 2053: -53,-7 - 2054: -53,-5 - 2055: -53,-4 - 2056: -53,46 - 2057: -53,46 - 2058: -59,36 - 2059: -59,33 - 2060: -59,32 - 2517: -36,-11 - 2800: 8,21 - 2801: 11,32 - 5819: -35,36 - 5820: -35,37 - 5821: -35,37 - 5822: -35,37 - 5823: -35,36 - 5824: -35,36 - 5825: -35,35 - 5826: -35,35 - 5827: -35,36 - 5828: -35,36 - 7241: -1,43 - 7242: -1,42 - 7243: 0,42 - 7244: 0,43 - 7245: 0,43 - 7246: 1,42 - 7247: 1,42 - 7248: 2,43 - 7249: 2,44 - 7250: 3,44 - 7251: 4,44 - 7252: 4,43 - 7253: 4,42 - 7254: 4,43 - 7255: 3,43 - 7256: 3,42 - 7257: 2,42 - 7258: 2,43 - 7259: 0,43 - 7260: 0,43 - 7276: 18,45 - 7277: 18,46 - 7279: 10,52 - 7280: 11,52 - 7281: 11,52 - 7282: 11,51 - 7283: 10,52 - 7284: 17,46 - 7285: 17,46 - 7286: 17,46 - 7311: 25,26 - 7312: 25,25 - 7313: 26,25 - 7314: 26,26 - 7315: 27,26 - 7316: 28,25 - 7317: 28,25 - 7318: 28,26 - 7319: 27,27 - 7320: 26,27 - 7321: 25,27 - 7322: 26,27 - 7323: 28,27 - 7324: 28,28 - 7325: 26,28 - 7326: 25,28 - 7327: 26,28 - 7328: 27,28 - 7329: 27,28 - 7360: -60,-10 - 7361: -60,-11 - 7362: -59,-12 - 7363: -59,-12 - 7364: -58,-12 - 7365: -59,-12 - 7366: -61,-12 - 7367: -61,-10 - 7368: -62,-10 - 7369: -63,-11 - 7370: -61,-12 - 7371: -61,-11 - 7372: -62,-11 - 7373: -63,-11 - 7374: -62,-12 - 7375: -63,-10 - 7376: -64,-10 - 7377: -64,-11 - 7378: -64,-12 - 7379: -64,-12 - 7380: -65,-11 - 7381: -66,-11 - 7382: -65,-11 - 7383: -66,-11 - 7384: -67,-11 - 7385: -67,-11 - 7386: -66,-12 - 7387: -65,-12 - 7388: -66,-10 - 7389: -68,-10 - 7390: -69,-11 - 7391: -69,-12 - 7392: -68,-11 - 7393: -67,-10 - 7394: -66,-10 - 7395: -65,-10 - 7396: -67,-11 - 7397: -67,-12 - 7398: -68,-11 - 7399: -69,-10 - 7400: -70,-11 - 7401: -70,-12 - 7402: -71,-12 - 7403: -71,-11 - 7404: -71,-10 - 7405: -72,-10 - 7406: -73,-11 - 7407: -73,-12 - 7408: -72,-12 - 7409: -72,-11 - 7410: -75,-10 - 7411: -76,-10 - 7412: -75,-11 - 7413: -74,-12 - 7414: -73,-11 - 7415: -73,-10 - 7416: -74,-11 - 7417: -75,-12 - 7418: -76,-11 - 7419: -75,-11 - 7420: -74,-11 - 7421: -72,-11 - 7422: -71,-10 - 7423: -68,-11 - 7424: -67,-12 - 7425: -67,-12 - 7426: -68,-12 - 7427: -76,-12 - 7428: -62,-12 - 7429: -62,-12 - 7430: -63,-12 - 7431: -67,-10 - 7432: -68,-10 - 7433: -69,-10 - 7434: -70,-10 - 7435: -73,-10 - 7436: -74,-10 - 7468: -67,-14 - 7469: -67,-14 - 7470: -65,-14 - 7471: -65,-15 - 7472: -65,-15 - 7473: -73,-14 - 7474: -73,-15 - 7475: -75,-14 - 7476: -75,-14 - 7477: -75,-15 - 7478: -78,-11 - 7479: -78,-11 - 7480: -77,-11 - 7481: -79,-11 - 7482: -75,-13 - 7483: -73,-13 - 7484: -67,-13 - 7485: -67,-13 - 7486: -64,-13 - 7487: -65,-13 - 7488: -75,-13 - 7489: -75,-16 - 7490: -73,-16 - 7491: -67,-16 - 7492: -73,-16 - 7493: -65,-16 - 7494: -74,-9 - 7495: -74,-9 - 7496: -74,-8 - 7497: -74,-9 - 7498: -67,-9 - 7499: -67,-8 - 7500: -67,-9 - 7501: -74,3 - 7502: -74,3 - 7503: -74,2 - 7504: -67,3 - 7505: -67,3 - 7506: -67,2 - 7507: -67,2 - - node: - color: '#A46106FF' - id: MiniTileWhiteCornerSe - decals: - 2575: -38,-14 - 2576: -32,-11 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 4: -14,0 - 5: -14,1 - 6: -14,2 - 2892: 1,37 - 2902: 11,36 - 2903: 11,37 - 4304: -77,35 - 4305: -84,33 - 4306: -84,32 - 4313: -86,26 - 4314: -86,24 - 4315: -86,25 - - node: - color: '#D381C9FF' - id: BrickTileWhiteEndE - decals: - 57: -6,2 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineE - decals: - 59: -12,1 - 65: 2,-1 - 66: 2,-2 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineE - decals: - 84: -7,31 - 85: -7,32 - 86: -7,33 - 95: 0,30 - 96: 0,31 - 97: 0,32 - 98: 0,33 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteInnerNe - decals: - 88: -7,30 - 163: -7,30 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineS - decals: - 91: -1,29 - 92: -3,29 - 93: -2,29 - 94: -4,29 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerSw - decals: - 104: -5,29 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineW - decals: - 105: -5,30 - 106: -5,31 - 107: -5,32 - 108: -5,33 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerSe - decals: - 111: -2,31 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerSw - decals: - 112: -3,31 - - node: - color: '#52B4E9FF' - id: FullTileOverlayGreyscale - decals: - 113: -1,28 - - node: - color: '#EF8941FF' - id: MiniTileWhiteLineE - decals: - 114: -1,25 - 115: -1,24 - 149: -2,22 - 150: -2,21 - - node: - color: '#EF8941FF' - id: MiniTileWhiteLineW - decals: - 116: -4,24 - 117: -4,25 - 151: -4,21 - - node: - color: '#EF8941FF' - id: MiniTileWhiteLineN - decals: - 118: -3,26 - 119: -2,26 - - node: - color: '#EF8941FF' - id: MiniTileWhiteCornerNe - decals: - 120: -1,26 - - node: - color: '#EF8941FF' - id: MiniTileWhiteCornerNw - decals: - 121: -4,26 - - node: - color: '#EF8941FF' - id: MiniTileWhiteCornerSe - decals: - 122: -1,23 - 153: -2,20 - - node: - color: '#EF8941FF' - id: MiniTileWhiteInnerSe - decals: - 123: -2,23 - - node: - color: '#EF8941FF' - id: QuarterTileOverlayGreyscale180 - decals: - 124: 0,22 - 125: -1,22 - 126: -1,21 - 127: -1,20 - 128: -1,19 - 129: -2,19 - 130: -3,19 - 131: -4,19 - 132: -5,19 - 133: 0,23 - 134: 0,24 - 135: 0,25 - 136: 0,26 - 137: 0,27 - - node: - color: '#EF8941FF' - id: QuarterTileOverlayGreyscale - decals: - 138: -5,19 - 139: -5,20 - 140: -5,25 - 141: -5,26 - 142: -5,27 - 143: -4,27 - 144: -3,27 - 145: -2,27 - 146: -1,27 - 147: -1,27 - 148: 0,27 - - node: - color: '#EF8941FF' - id: MiniTileWhiteLineS - decals: - 152: -3,20 - - node: - color: '#D4D4D4FF' - id: MiniTileWhiteLineW - decals: - 154: -11,27 - 155: -11,28 - 156: -11,29 - - node: - color: '#D4D4D4FF' - id: MiniTileWhiteLineN - decals: - 157: -10,30 - 158: -9,30 - 159: -8,30 - 160: -7,30 - - node: - color: '#D4D4D4FF' - id: MiniTileWhiteCornerNw - decals: - 161: -11,30 - - node: - color: '#52B4E996' - id: MiniTileWhiteInnerNe - decals: - 162: -7,30 - - node: - cleanable: True - color: '#FFFFFFFF' - id: MiniTileDarkBox - decals: - 417: -13,1 - - node: - color: '#A46106FF' - id: QuarterTileOverlayGreyscale180 - decals: - 748: -41,0 - 749: -41,1 - 750: -41,2 - 751: -41,3 - 752: -40,3 - 753: -39,3 - 761: -33,0 - 762: -32,0 - 763: -32,1 - 764: -32,2 - 765: -32,3 - - node: - color: '#FFFFFFFF' - id: Flowersbr2 - decals: - 1003: -31.035973,18.003134 - - node: - cleanable: True - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 2749: -18,22 - 2750: -17,22 - 2751: -16,22 - 2752: -16,23 - 2753: -17,24 - 2754: -18,23 - 2755: -16,23 - 2756: -16,25 - 2757: -18,26 - 2758: -18,24 - 2759: -16,25 - 2760: -17,26 - 2761: -17,26 - 2762: -17,24 - - node: - cleanable: True - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: DirtLight - decals: - 2763: -17,26 - 2764: -16,26 - 2765: -16,26 - 2766: -17,25 - 2767: -18,24 - 2768: -18,23 - 2769: -17,22 - 2770: -16,22 - 2771: -17,23 - 2772: -17,22 - 2773: -16,23 - 2774: -17,26 - 2775: -18,26 - 2776: -18,25 - - node: - cleanable: True - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: DirtMedium - decals: - 2777: -17,25 - 2778: -17,26 - 2779: -18,25 - 2780: -17,23 - 2781: -16,23 - 2782: -18,23 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Remains - decals: - 2783: -3.964231,22.551708 - - node: - color: '#52B4E9FF' - id: BrickTileSteelCornerNw - decals: - 2856: -2,17 - 2886: 2,40 - - node: - color: '#52B4E9FF' - id: BrickTileSteelCornerSw - decals: - 2789: 14,28 - 2858: -2,14 - - node: - color: '#52B4E9FF' - id: BrickTileSteelLineN - decals: - 2861: -1,17 - 2862: 0,17 - 2863: 1,17 - 2864: 2,17 - 2865: 2,17 - 2866: 3,17 - 2882: 3,40 - - node: - color: '#52B4E9FF' - id: BrickTileSteelLineW - decals: - 2790: 14,29 - 2867: -2,16 - 2868: -2,15 - 2884: 2,37 - 2885: 2,38 - - node: - color: '#52B4E9FF' - id: BrickTileSteelLineS - decals: - 2791: 15,28 - 2869: -1,14 - 2870: 0,14 - 2871: 1,14 - 2872: 2,14 - 2873: 3,14 - 2883: 3,36 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 3476: -2,8 - 3477: -1,8 - 3478: 0,8 - 3551: -62,60 - 3552: -61,60 - 3553: -60,60 - 3554: -59,60 - 3555: -58,60 - 3556: -57,60 - 3557: -56,60 - 3558: -55,60 - 3559: -53,60 - 3560: -54,60 - 3561: -52,60 - 3562: -50,64 - 3563: -49,64 - 3564: -47,64 - 3565: -48,64 - 3655: -63,50 - 3656: -62,50 - 3657: -61,50 - 3658: -65,52 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 3479: -2,10 - 3480: -1,10 - 3481: 0,10 - 3536: -62,61 - 3537: -61,61 - 3538: -60,61 - 3539: -59,61 - 3540: -58,61 - 3541: -56,61 - 3542: -57,61 - 3543: -55,61 - 3544: -54,61 - 3545: -52,65 - 3546: -51,65 - 3547: -50,65 - 3548: -49,65 - 3549: -48,65 - 3550: -47,65 - 3650: -65,55 - 3651: -64,55 - 3652: -63,55 - 3653: -62,55 - 3654: -61,55 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 3483: -3,10 - 3574: -53,65 - 3665: -66,55 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 3486: -3,8 - 3668: -66,52 - 3669: -64,50 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 3487: -3,9 - 3569: -53,62 - 3570: -53,63 - 3571: -53,64 - 3663: -66,54 - 3664: -66,53 - 3671: -64,51 - - node: - color: '#D381C9FF' - id: BrickTileSteelLineW - decals: - 67: 1,-1 - 68: 1,-2 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 71: 1,-1 - 72: 2,-1 - 2506: 10,40 - 2507: 10,43 - 2508: 11,43 - 2893: 0,40 - 4310: -78,31 - 4311: -77,31 - 4316: -84,23 - 4317: -83,23 - 4318: -82,23 - 4319: -85,23 - - node: - cleanable: True - color: '#D381C996' - id: safe - decals: - 76: 19,-8 - - node: - color: '#FFFFFFFF' - id: Remains - decals: - 77: 18.227499,-11.4046755 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 73: 1,0 - 74: 2,0 - 75: 0,0 - 2504: 11,42 - 2505: 10,42 - 2845: 6,14 - 2846: 7,14 - 2847: 8,14 - 2848: 9,14 - 2849: 10,14 - 2850: 11,14 - 2891: 0,36 - 2899: 8,35 - 2900: 9,35 - 2901: 10,35 - 4297: -83,34 - 4298: -82,34 - 4299: -80,34 - 4300: -81,34 - 4301: -79,34 - 4302: -78,34 - 4320: -85,27 - 4321: -83,27 - 4322: -82,27 - 4323: -84,27 - 6258: -22,54 - 6259: -21,54 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerSe - decals: - 90: 0,29 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 164: 22.123394,12.012558 - 165: 23.404644,12.543808 - 166: 22.154644,15.465683 - - node: - color: '#FFFFFFFF' - id: Bushf3 - decals: - 167: 23.764019,15.981308 - 168: 22.264019,13.950058 - - node: - color: '#FFFFFFFF' - id: Bushi2 - decals: - 169: 24.779644,13.246933 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 170: 22.373394,16.934433 - 1008: -33.082848,20.175009 - 2795: 11.334139,25.806559 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 171: 22.420269,13.075058 - 2494: -13.334983,39.50173 - 2796: 11.943514,24.103434 - - node: - color: '#FFFFFFFF' - id: Grassa2 - decals: - 172: 23.154644,14.840683 - 2497: -13.600608,37.69732 - - node: - color: '#FFFFFFFF' - id: Grassa4 - decals: - 173: 22.842144,11.184433 - 999: -33.176598,15.425009 - 1000: -34.785973,16.596884 - 1001: -33.801598,18.065634 - 2798: 11.881014,25.275309 - - node: - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 174: 21.295269,12.512558 - 2493: -12.397483,40.892357 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 175: 22.920269,15.934433 - - node: - color: '#FFFFFFFF' - id: Grassc1 - decals: - 176: 22.123394,17.887558 - 1005: -34.910973,18.518759 - 2490: -13.616233,43.18923 - 7235: -20.044888,33.964188 - - node: - color: '#FFFFFFFF' - id: Grassc4 - decals: - 177: 22.148829,16.269741 - 2499: -12.381858,37.369194 - - node: - color: '#FFFFFFFF' - id: Grasse1 - decals: - 178: 23.727287,13.671306 - - node: - color: '#52B4E9FF' - id: BrickTileSteelCornerSe - decals: - 2792: 16,28 - 2857: 4,14 - - node: - color: '#52B4E9FF' - id: BrickTileSteelLineE - decals: - 2793: 16,29 - 2859: 4,15 - 2860: 4,16 - 2879: 4,37 - 2880: 4,38 - 2881: 4,39 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 2794: 10,25 - 2904: 12,33 - 2905: 12,34 - 2906: 12,35 - 2907: 12,36 - 2908: 12,37 - 2932: 12,30 - 2933: 12,29 - 2934: 10,25 - 2935: 10,24 - 2936: 10,23 - 2937: 4,33 - 2938: 4,32 - 2939: 5,30 - 2940: 5,29 - 2941: 4,27 - 2942: 4,26 - 2943: 4,25 - 2944: 4,23 - 2945: 4,24 - 2946: 4,22 - 2947: 4,21 - 2948: 4,20 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 1007: -34.192223,19.378134 - 2797: 11.240389,24.744059 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 2500: -13.881858,35.712944 - 2501: -12.897483,36.35357 - 2799: 11.349764,24.103434 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 1752: -30,52 - 1753: -29,53 - 1754: -27,54 - 1755: -27,54 - 1756: -28,55 - 1757: -30,54 - 1758: -29,53 - 1767: -44,50 - 1768: -44,50 - 1769: -44,49 - 1770: -40,45 - 1803: -43,36 - 1804: -43,37 - 1805: -44,39 - 1806: -45,37 - 1807: -43,36 - 1808: -40,38 - 1809: -37,39 - 1810: -39,40 - 1811: -42,38 - 1812: -46,38 - 1813: -40,35 - 1814: -39,39 - 1815: -41,38 - 1816: -44,37 - 1817: -41,39 - 1818: -37,36 - 1819: -40,36 - 1820: -43,37 - 1821: -36,37 - 1822: -35,38 - 1823: -35,38 - 1824: -35,37 - 1825: -35,35 - 2061: -54,46 - 2062: -47,40 - 2063: -48,37 - 2802: 3,27 - 2803: 13,28 - 2804: 10,37 - 7330: 25,24 - 7331: 26,24 - 7332: 27,24 - 7333: 28,24 - 7334: 28,25 - 7335: 26,25 - 7336: 25,25 - 7337: 25,26 - 7338: 26,26 - 7339: 27,25 - 7340: 27,25 - 7341: 28,26 - 7342: 27,26 - 7343: 26,26 - 7344: 25,26 - 7345: 26,27 - 7346: 28,27 - 7347: 28,27 - 7348: 28,28 - 7349: 26,28 - 7350: 25,27 - 7351: 25,27 - 7352: 25,28 - 7353: 27,25 - 7354: 27,25 - 7355: 27,24 - 7356: 25,23 - 7357: 27,23 - 7358: 28,23 - 7359: 27,23 - 7437: -75,-10 - 7438: -75,-10 - 7439: -76,-11 - 7440: -76,-12 - 7441: -75,-12 - 7442: -74,-11 - 7443: -74,-10 - 7444: -73,-10 - 7445: -74,-11 - 7446: -73,-11 - 7447: -72,-10 - 7448: -71,-11 - 7449: -70,-12 - 7450: -67,-12 - 7451: -68,-12 - 7452: -69,-12 - 7453: -70,-11 - 7454: -70,-11 - 7455: -69,-11 - 7456: -65,-11 - 7457: -62,-11 - 7458: -63,-12 - 7459: -63,-12 - 7460: -60,-11 - 7461: -60,-12 - 7462: -60,-12 - 7463: -60,-12 - 7464: -60,-10 - 7465: -62,-10 - 7466: -64,-10 - 7467: -65,-10 - - node: - color: '#FFFFFFFF' - id: DirtMedium - decals: - 1734: -29,54 - 1735: -29,54 - 1736: -30,54 - 1737: -30,53 - 1738: -30,55 - 1739: -28,53 - 1740: -28,52 - 1741: -27,54 - 1742: -27,55 - 1743: -28,55 - 1744: -29,54 - 1745: -29,53 - 1746: -30,53 - 1747: -28,53 - 1748: -27,54 - 1749: -26,54 - 1750: -27,55 - 1751: -29,55 - 1771: -31,47 - 1772: -37,40 - 1826: -35,38 - 1827: -35,38 - 1828: -37,40 - 1829: -38,38 - 1830: -37,36 - 1831: -36,36 - 1832: -37,39 - 1833: -39,39 - 1834: -41,38 - 1835: -41,36 - 1836: -39,37 - 1837: -42,39 - 1838: -44,38 - 1839: -42,35 - 1840: -43,36 - 1841: -44,36 - 1842: -45,36 - 1843: -44,39 - 1844: -38,35 - 1845: -36,35 - 1846: -36,37 - 1847: -39,35 - 1848: -39,34 - 2064: -50,36 - 2065: -50,45 - 2066: -53,46 - 2067: -55,46 - 2805: 12,32 - 2806: 13,34 - 2807: 13,30 - 2808: 12,17 - 7261: -1,42 - 7262: 0,42 - 7263: 1,43 - 7264: 1,42 - 7265: 2,42 - 7266: 2,43 - 7267: 3,44 - 7268: 1,43 - 7269: 1,43 - 7270: 3,44 - 7271: 3,44 - 7272: 4,43 - 7273: 4,42 - 7274: 3,42 - 7275: 2,42 - - node: - color: '#9FED58FF' - id: BrickTileWhiteCornerSe - decals: - 2809: 7,11 - 2810: 9,11 - 2811: 11,11 - - node: - color: '#9FED58FF' - id: BrickTileWhiteCornerNw - decals: - 2812: 6,13 - 2813: 8,13 - 2814: 10,13 - - node: - color: '#9FED58FF' - id: BrickTileWhiteCornerNe - decals: - 2815: 11,13 - 2816: 9,13 - 2817: 7,13 - - node: - color: '#9FED58FF' - id: BrickTileWhiteCornerSw - decals: - 2818: 6,11 - 2819: 8,11 - 2820: 10,11 - - node: - color: '#9FED58FF' - id: BrickTileWhiteLineE - decals: - 2821: 7,12 - 2822: 9,12 - 2826: 11,12 - - node: - color: '#9FED58FF' - id: BrickTileWhiteLineW - decals: - 2823: 6,12 - 2824: 8,12 - 2825: 10,12 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - decals: - 2827: 6,14 - 2828: 6,15 - 2829: 6,16 - 2830: 9,18 - 2831: 9,19 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - decals: - 2832: 7,17 - 2833: 8,17 - 2834: 10,20 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 2835: 11,19 - 2836: 11,18 - 2837: 11,17 - 2838: 11,16 - 2839: 11,15 - 2840: 11,14 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 2841: 9,17 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2842: 6,17 - 2843: 9,20 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2844: 11,20 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 2510: 9,43 - 2851: 6,20 - 4312: -79,31 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 2511: 12,43 - 2852: 7,20 - 2887: 1,40 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 2509: 12,42 - 2853: 7,19 - 2895: 11,35 - 4303: -77,34 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 2512: 9,42 - 2854: 6,19 - 2888: -1,36 - 2896: 7,35 - 6257: -23,54 - - node: - color: '#52B4E9FF' - id: BrickTileSteelCornerNe - decals: - 2855: 4,17 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 2909: 6,33 - 2910: 6,34 - 2911: 6,35 - 2912: 6,36 - 2913: 6,37 - 2914: 2,33 - 2915: 2,32 - 2916: 2,31 - 2917: 2,29 - 2918: 2,30 - 2919: 2,28 - 2920: 2,27 - 2921: 2,26 - 2922: 2,25 - 2923: 2,24 - 2924: 2,23 - 2925: 2,22 - 2926: 2,21 - 2927: 6,23 - 2928: 6,24 - 2929: 6,25 - 2930: 7,29 - 2931: 7,30 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 2949: 3,19 - 2950: 2,19 - 2951: 8,28 - 2952: 9,28 - 2953: 10,28 - 2954: 11,28 - 2955: 7,22 - 2956: 8,22 - 2957: 9,22 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - decals: - 2958: 8,31 - 2959: 9,31 - 2960: 10,31 - 2961: 11,31 - 2962: 3,34 - 2963: 7,26 - 2964: 8,26 - 2965: 9,26 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2966: 2,34 - 2967: 7,31 - 2968: 1,20 - 2969: 6,26 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2970: 10,22 - 2971: 12,28 - 2972: 4,19 - 2973: 5,28 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2974: 5,31 - 2975: 12,31 - 2976: 4,34 - 2977: 10,26 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2978: 7,28 - 2979: 1,19 - 2980: 6,22 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 2981: 4,31 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 2982: 4,28 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 2983: 2,20 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 3482: 1,9 - 3566: -51,61 - 3567: -51,62 - 3568: -51,63 - 3659: -60,54 - 3660: -60,53 - 3661: -60,52 - 3662: -60,51 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 3484: 1,8 - 3575: -51,60 - 3666: -60,50 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 3485: 1,10 - 3667: -60,55 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 7158: 1,23 - 7159: 6,28 - 7160: 6,29 - 7161: 1,29 - 7162: 1,30 - 7163: 1,33 - 7164: 3,35 - 7165: 5,33 - 7166: 5,25 - 7167: 5,24 - 7168: 5,19 - - node: - color: '#9FED5896' - id: FullTileOverlayGreyscale - decals: - 7169: 8,19 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 7287: 25,27 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 7288: 26,27 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineN - decals: - 7289: 27,27 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 7290: 28,27 - - node: - color: '#52B4E996' - id: BotGreyscale - decals: - 7291: 25,28 - 7294: 28,28 - - node: - color: '#DE3A3A96' - id: BotGreyscale - decals: - 7292: 26,28 - - node: - color: '#EFB34196' - id: BotGreyscale - decals: - 7293: 27,28 - - node: - color: '#9FED5896' - id: BotGreyscale - decals: - 7295: 25,26 - 7296: 25,25 - - node: - color: '#D381C996' - id: BotGreyscale - decals: - 7297: 28,26 - - node: - color: '#A4610696' - id: BotGreyscale - decals: - 7298: 28,25 - - node: - color: '#A4610696' - id: BrickTileWhiteLineN - decals: - 7299: 28,24 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineN - decals: - 7300: 25,24 - - node: - color: '#A4610696' - id: BrickTileWhiteLineE - decals: - 7301: 27,25 - - node: - color: '#A4610696' - id: BrickTileWhiteInnerNe - decals: - 7302: 27,24 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerSw - decals: - 7303: 26,27 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineS - decals: - 7304: 25,27 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 7305: 28,27 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSe - decals: - 7306: 27,27 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 7307: 27,26 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 7308: 26,26 - 7309: 26,25 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerNw - decals: - 7310: 26,24 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteInnerSe - decals: - 87: -7,34 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineN - decals: - 99: -1,34 - 100: -2,34 - 101: -3,34 - 102: -4,34 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerNw - decals: - 103: -5,34 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerNw - decals: - 109: -3,32 - 2874: 7,33 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteCornerNe - decals: - 110: -2,32 - 2875: 11,33 - - node: - color: '#EFB341FF' - id: Box - decals: - 2291: -10,54 - - node: - color: '#D381C9FF' - id: BoxGreyscale - decals: - 2292: -11,54 - - node: - color: '#A46106FF' - id: Box - decals: - 2293: -11,56 - - node: - color: '#334E6DFF' - id: BoxGreyscale - decals: - 2294: -8,55 - - node: - color: '#334E6DC8' - id: BoxGreyscale - decals: - 2295: -9,56 - - node: - color: '#DE3A3AFF' - id: BoxGreyscale - decals: - 2296: -9,54 - - node: - color: '#52B4E9FF' - id: BoxGreyscale - decals: - 2297: -10,56 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNw - decals: - 2298: -13,57 - - node: - color: '#334E6DFF' - id: BrickTileWhiteCornerNw - decals: - 2299: -13,57 - - node: - color: '#334E6DFF' - id: BrickTileWhiteCornerSe - decals: - 2300: -7,54 - 2301: -8,53 - - node: - color: '#334E6DFF' - id: BrickTileWhiteCornerSw - decals: - 2302: -13,53 - - node: - color: '#334E6DFF' - id: BrickTileWhiteLineE - decals: - 2303: -7,55 - 2314: -20,59 - 2315: -20,60 - 2316: -20,61 - - node: - color: '#334E6DFF' - id: BrickTileWhiteLineN - decals: - 2304: -11,57 - 2305: -12,57 - 5829: -10,57 - 5830: -9,57 - - node: - color: '#334E6DFF' - id: BrickTileWhiteLineS - decals: - 2306: -12,53 - 2307: -11,53 - 2308: -10,53 - 2309: -9,53 - 2317: -19,62 - 2318: -18,62 - 2319: -17,62 - 2320: -16,62 - 2321: -15,62 - - node: - color: '#334E6DFF' - id: BrickTileWhiteLineW - decals: - 2310: -13,54 - 2311: -13,55 - 2312: -13,56 - 2322: -14,59 - 2323: -14,60 - 2324: -14,61 - - node: - color: '#334E6DFF' - id: BrickTileWhiteInnerSe - decals: - 2313: -8,54 - 2326: -20,62 - - node: - color: '#334E6DFF' - id: BrickTileWhiteInnerSw - decals: - 2325: -14,62 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 2327: -17,65 - 2328: -14,64 - 2329: -20,64 - 2330: -21,61 - 2331: -21,60 - 2332: -13,61 - 2333: -13,60 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 1004: -33.379723,16.550009 - 2491: -12.163108,42.62673 - 2492: -13.631858,41.18923 - 7233: -21.904263,33.948563 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 1011: -34.770348,20.675009 - 2495: -13.913108,42.25173 - 2496: -12.522483,38.829857 - - node: - color: '#FFFFFFFF' - id: Grassb5 - decals: - 1009: -32.160973,18.596884 - 2498: -13.788108,40.38482 - 2502: -11.991233,43.725113 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 2503: -13.834983,36.936462 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 2889: -1,37 - 2890: -1,39 - 2897: 7,36 - 2898: 7,37 - 4308: -79,30 - 4309: -79,29 - 4324: -81,24 - 4325: -81,25 - 4326: -81,26 - 6260: -23,55 - 6261: -23,56 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 5799: -16,60 - 5800: -16,57 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 5801: -18,57 - 5802: -18,60 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 5803: -16,54 - 5804: -16,59 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 5805: -18,54 - 5806: -18,59 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 5807: -16,55 - 5808: -16,56 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 5809: -17,54 - 5810: -17,59 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 5811: -18,55 - 5812: -18,56 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 5813: -17,57 - 5814: -17,60 - - node: - color: '#334E6DFF' - id: BrickTileWhiteCornerNe - decals: - 5831: -8,57 - 5832: -7,56 - - node: - color: '#334E6DFF' - id: BrickTileWhiteInnerNe - decals: - 5833: -8,56 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 5834: -8,61 - 5835: -8,60 - 5836: -8,59 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 5837: -8,58 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 4330: -81,27 - 6255: -20,54 - 6256: -23,57 - - node: - color: '#FFFFFFFF' - id: FlowersBROne - decals: - 7234: -20.998013,33.948563 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteCornerNe - decals: - 89: 0,34 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 2513: 11,40 - 4327: -81,23 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 2514: 9,40 - 4328: -86,23 - - node: - cleanable: True - color: '#A40000FF' - id: splatter - decals: - 2784: 1.6512494,42.225525 - 2785: 3.7762494,43.506775 - 2786: 2.3387494,43.413025 - 2787: 3.9168744,42.038025 - - node: - cleanable: True - color: '#FFFFFFFF' - id: body - decals: - 2788: 2.8074994,42.80365 - - node: - color: '#52B4E9FF' - id: BrickTileWhiteLineN - decals: - 2876: 8,33 - 2877: 9,33 - 2878: 10,33 - - node: - color: '#52B4E9FF' - id: BrickTileSteelEndN - decals: - 2894: 0,39 - - node: - color: '#601F95FF' - id: Tunnel - decals: - 7278: 11,50 - - node: - color: '#A46106FF' - id: FullTileOverlayGreyscale - decals: - 727: -40,0 - 728: -40,1 - 729: -39,2 - 730: -38,2 - 731: -37,2 - 732: -36,1 - 733: -36,0 - - node: - color: '#A46106FF' - id: BrickTileWhiteLineS - decals: - 742: -38,0 - 774: -45,-8 - - node: - color: '#A46106FF' - id: BrickTileWhiteLineN - decals: - 743: -38,1 - 775: -45,-7 - - node: - color: '#A46106FF' - id: BrickTileWhiteCornerSw - decals: - 744: -39,0 - 773: -46,-8 - - node: - color: '#A46106FF' - id: BrickTileWhiteCornerSe - decals: - 745: -37,0 - 770: -44,-8 - - node: - color: '#A46106FF' - id: BrickTileWhiteCornerNw - decals: - 746: -39,1 - 771: -46,-7 - - node: - color: '#A46106FF' - id: BrickTileWhiteCornerNe - decals: - 747: -37,1 - 772: -44,-7 - - node: - color: '#A46106FF' - id: QuarterTileOverlayGreyscale270 - decals: - 754: -34,0 - 755: -35,0 - 756: -35,1 - 757: -35,2 - 758: -35,3 - 759: -36,3 - 760: -37,3 - 766: -42,0 - 767: -42,1 - 768: -42,2 - 769: -42,3 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 1002: -35.942223,17.018759 - 1012: -33.910973,21.581259 - - node: - color: '#FFFFFFFF' - id: Grassc3 - decals: - 1006: -32.395348,19.096884 - - node: - color: '#FFFFFFFF' - id: Grassa5 - decals: - 1010: -34.801598,15.284384 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 4345: -64,21 - 4346: -64,20 - 4347: -64,22 - 4365: -64,31 - 4366: -64,32 - 4367: -64,33 - 4368: -74,32 - 4369: -74,30 - 4370: -74,31 - 4371: -74,29 - 4372: -74,28 - 4373: -74,27 - 4374: -74,26 - 4375: -74,25 - 4376: -74,24 - 4377: -74,23 - 4378: -74,22 - 4379: -74,21 - 4380: -74,20 - 4464: -80,23 - 4467: -79,25 - 4646: -60,32 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 4400: -64,30 - 4403: -74,19 - 4407: -64,19 - 4455: -79,24 - 4456: -80,22 - 4641: -60,31 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 4408: -64,23 - 4411: -64,34 - 4415: -70,35 - 4453: -80,27 - 4454: -79,26 - 4643: -60,33 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerSe - decals: - 4428: -64,25 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineE - decals: - 4429: -64,26 - 4430: -64,27 - 4431: -64,28 - 4444: -70,30 - 4445: -70,29 - 4446: -70,28 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 4399: -77,24 - 4401: -65,30 - 4402: -75,19 - 4409: -72,19 - 4457: -83,22 - 4642: -62,31 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 4338: -71,19 - 4339: -70,19 - 4340: -69,19 - 4341: -68,19 - 4342: -67,19 - 4343: -65,19 - 4344: -66,19 - 4381: -73,33 - 4382: -72,33 - 4383: -71,33 - 4384: -70,33 - 4385: -69,33 - 4386: -68,33 - 4387: -67,33 - 4388: -66,33 - 4397: -76,24 - 4459: -82,22 - 4460: -81,22 - 4461: -84,23 - 4462: -85,23 - 4463: -86,23 - 4644: -61,31 - - node: - color: '#A46106FF' - id: MiniTileWhiteCornerNw - decals: - 734: -35,-2 - 2577: -42,-2 - 2578: -46,-10 - - node: - color: '#A46106FF' - id: MiniTileWhiteLineW - decals: - 737: -35,-4 - 738: -35,-3 - 2532: -42,-7 - 2533: -42,-6 - 2534: -42,-5 - 2535: -42,-4 - 2536: -42,-3 - 2537: -36,-9 - 2538: -36,-10 - 2539: -44,-13 - 2540: -44,-12 - - node: - color: '#A46106FF' - id: MiniTileWhiteLineN - decals: - 739: -34,-2 - 740: -33,-2 - 2541: -45,-10 - 2542: -44,-10 - 2543: -43,-10 - 2544: -42,-10 - 2545: -42,-10 - 2546: -41,-10 - 2547: -40,-10 - 2548: -40,-10 - 2549: -40,-10 - 2550: -39,-10 - 2551: -36,-6 - 2552: -35,-6 - 2553: -35,-6 - 2554: -34,-6 - 2555: -33,-6 - 2556: -41,-2 - 2557: -40,-2 - 2558: -40,-2 - 2559: -39,-2 - 2560: -38,-2 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 2516: -36,-10 - - node: - color: '#A46106FF' - id: MiniTileWhiteLineS - decals: - 2518: -41,-8 - 2519: -40,-8 - 2520: -39,-8 - 2521: -37,-8 - 2522: -38,-8 - 2523: -35,-11 - 2524: -34,-11 - 2525: -33,-11 - 2526: -39,-14 - 2527: -40,-14 - 2528: -41,-14 - 2529: -43,-14 - 2530: -42,-14 - 2531: -45,-11 - - node: - color: '#A46106FF' - id: MiniTileWhiteCornerSw - decals: - 2579: -46,-11 - 2580: -44,-14 - 2581: -42,-8 - 2582: -36,-11 - - node: - color: '#A46106FF' - id: MiniTileWhiteInnerSw - decals: - 2583: -36,-8 - 2584: -44,-11 - - node: - color: '#A46106FF' - id: MiniTileWhiteInnerNe - decals: - 2585: -37,-6 - - node: - color: '#A46106FF' - id: MiniTileWhiteBox - decals: - 2586: -41,-9 - 2587: -40,-9 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 2747: -40,-11 - 2748: -40,-7 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteLineE - decals: - 3525: -42,64 - 3526: -42,63 - 3527: -42,62 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteLineS - decals: - 3528: -43,61 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteLineW - decals: - 3529: -44,62 - 3530: -44,63 - 3531: -44,64 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteCornerSe - decals: - 3534: -42,61 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteCornerSw - decals: - 3535: -44,61 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 3572: -53,61 - 3576: -49,62 - 3577: -49,61 - 3578: -49,60 - 3579: -49,58 - 3580: -49,59 - 3581: -49,57 - 3588: -47,62 - 3589: -48,62 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 3573: -51,64 - 3582: -47,57 - 3583: -47,58 - 3584: -47,59 - 3585: -47,60 - 3586: -47,61 - 3587: -47,62 - 3590: -48,57 - 3591: -49,57 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 3592: -53,59 - 3593: -51,59 - 3594: -46,64 - 3595: -46,65 - 3596: -45,65 - 3597: -45,64 - 3622: -50,55 - 3623: -50,53 - 3624: -59,53 - 3625: -59,55 - - node: - color: '#DE3A3A96' - id: CheckerNWSE - decals: - 3598: -57,57 - 3599: -57,56 - 3600: -57,55 - 3601: -57,54 - 3602: -56,54 - 3603: -56,55 - 3604: -56,56 - 3605: -56,57 - 3606: -55,57 - 3607: -55,56 - 3608: -55,55 - 3609: -55,54 - 3610: -54,54 - 3611: -54,55 - 3612: -54,56 - 3613: -54,57 - 3614: -53,57 - 3615: -53,56 - 3616: -53,55 - 3617: -53,54 - 3618: -52,54 - 3619: -52,55 - 3620: -52,56 - 3621: -52,57 - 3626: -58,58 - 3627: -57,58 - 3628: -56,58 - 3629: -55,58 - 3630: -54,58 - 3631: -53,58 - 3632: -52,58 - 3633: -51,58 - 3634: -51,57 - 3635: -51,56 - 3636: -51,55 - 3637: -51,54 - 3638: -51,53 - 3639: -52,53 - 3640: -53,53 - 3641: -54,53 - 3642: -55,53 - 3643: -56,53 - 3644: -57,53 - 3645: -58,53 - 3646: -58,54 - 3647: -58,55 - 3648: -58,56 - 3649: -58,57 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 3670: -64,52 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 4398: -77,26 - 4405: -75,35 - 4406: -72,23 - 4640: -62,33 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 4348: -72,20 - 4349: -72,21 - 4350: -72,22 - 4351: -75,21 - 4352: -75,22 - 4353: -75,23 - 4354: -75,27 - 4355: -75,28 - 4356: -75,29 - 4357: -75,30 - 4358: -75,31 - 4359: -75,32 - 4360: -75,33 - 4361: -75,34 - 4362: -77,25 - 4363: -65,31 - 4364: -65,32 - 4404: -75,20 - 4645: -62,32 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale - decals: - 4331: -71,23 - 4332: -70,23 - 4333: -69,23 - 4334: -68,23 - 4335: -67,23 - 4336: -66,23 - 4337: -65,23 - 4389: -66,34 - 4390: -67,34 - 4391: -68,34 - 4392: -69,34 - 4393: -72,35 - 4394: -73,35 - 4395: -74,35 - 4396: -76,26 - 4413: -65,34 - 4416: -71,35 - 4447: -86,27 - 4448: -85,27 - 4449: -84,27 - 4450: -83,27 - 4451: -82,27 - 4452: -81,27 - 4647: -61,33 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - decals: - 5815: -35,38 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 5816: -35,37 - 5817: -35,35 - 5818: -35,36 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 6498: -34,38 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 4307: -84,34 - 4329: -86,27 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 4410: -75,24 - 4412: -65,33 - 4458: -83,23 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 4418: -75,26 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineS - decals: - 4419: -72,15 - 4433: -67,25 - 4434: -66,25 - 4435: -65,25 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineW - decals: - 4420: -75,16 - 4436: -68,26 - 4437: -68,27 - 4438: -68,28 - 4439: -68,29 - 4440: -68,30 - - node: - color: '#EFB341FF' - id: BrickTileWhiteLineN - decals: - 4421: -74,17 - 4422: -73,17 - 4423: -72,17 - 4432: -67,31 - 4442: -71,31 - 4443: -72,31 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerNw - decals: - 4424: -75,17 - 4427: -68,31 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerSw - decals: - 4425: -75,15 - 4426: -68,25 - - node: - color: '#EFB341FF' - id: BrickTileWhiteCornerNe - decals: - 4441: -70,31 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 4417: -74,33 - 4465: -80,24 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 4414: -70,34 - 4466: -80,26 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteLineN - decals: - 3524: -43,65 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteCornerNe - decals: - 3532: -42,65 - - node: - color: '#DE3A3AFF' - id: BrickTileWhiteCornerNw - decals: - 3533: -44,65 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 4811: -68,44 - type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 65535 - -1,0: - 0: 65531 - 1: 4 - -4,-3: - 0: 61439 - 1: 4096 - -4,-2: - 1: 1 - 0: 65534 - -4,-1: - 0: 65535 - -4,-4: - 0: 65535 - -3,-4: - 0: 65535 - -3,-3: - 0: 65535 - -3,-2: - 0: 32767 - 1: 32768 - -3,-1: - 0: 65527 - 1: 8 - -2,-4: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 56319 - 1: 9216 - -2,-1: - 0: 65533 - 1: 2 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - -4,0: - 1: 1093 - 0: 64442 - -4,1: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -2,0: - 0: 65535 - -2,1: - 0: 65535 - -1,1: - 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 8191 - 1: 57344 - 0,-1: - 0: 65535 - 1,-4: - 0: 63359 - 2: 2176 - 1,-3: - 0: 57343 - 1: 8192 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-4: - 2: 65520 - 0: 15 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65279 - 1: 256 - 3,-4: - 0: 62224 - 2: 1100 - 3,-3: - 0: 65535 - 3,-2: - 0: 24575 - 1: 40960 - 3,-1: - 0: 65535 - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 1,0: - 0: 65493 - 1: 42 - 1,1: - 0: 65535 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - -3,-5: - 0: 63504 - -2,-5: - 0: 65520 - 2: 5 - -1,-5: - 0: 64768 - 2: 68 - 0,-5: - 0: 65520 - 2: 4 - 1,-5: - 0: 62208 - 2: 2218 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -5,0: - 0: 65523 - 1: 12 - -5,1: - 0: 65535 - 4,-4: - 0: 63997 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 0: 4351 - 5,-3: - 0: 49055 - 1: 16384 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-3: - 0: 65295 - 6,-2: - 0: 49151 - 1: 16384 - 6,-1: - 0: 61439 - 1: 4096 - 7,-2: - 0: 30581 - 1: 2 - 7,-1: - 0: 63359 - 4,0: - 0: 65407 - 1: 128 - 4,1: - 0: 65535 - 5,0: - 0: 63471 - 1: 2064 - 5,1: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 63487 - 7,2: - 0: 65535 - -4,2: - 0: 65535 - -4,3: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 65535 - -2,2: - 0: 30591 - 1: 34944 - -2,3: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 16383 - 1: 49152 - 0,2: - 0: 65271 - 1: 264 - 0,3: - 0: 36863 - 1: 28672 - 1,2: - 0: 65535 - 1,3: - 0: 65535 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,2: - 0: 65531 - 1: 4 - 3,3: - 0: 65535 - -8,-3: - 0: 65535 - -8,-2: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65407 - 1: 128 - -7,-1: - 0: 65535 - -6,-3: - 0: 65535 - -6,-2: - 0: 65519 - 1: 16 - -6,-1: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - 6,-4: - 0: 255 - 7,-4: - 0: 21847 - 7,-3: - 0: 63447 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,2: - 0: 57343 - 1: 8192 - 5,3: - 0: 65501 - 1: 34 - 6,3: - 0: 65535 - 7,3: - 0: 65535 - 4,-5: - 0: 53754 - 4,-6: - 0: 41700 - 5,-7: - 0: 62704 - 5,-6: - 0: 62207 - 5,-5: - 0: 61951 - 6,-7: - 0: 61564 - 6,-6: - 0: 61695 - 6,-5: - 0: 61695 - 7,-8: - 0: 22272 - 7,-7: - 0: 21847 - 7,-6: - 0: 21847 - 7,-5: - 0: 21847 - 4,4: - 0: 65535 - 4,5: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 65535 - 5,4: - 0: 65535 - 5,5: - 0: 65535 - 5,6: - 0: 65535 - 5,7: - 0: 64511 - 1: 1024 - 6,4: - 0: 65535 - 6,5: - 0: 65535 - 6,6: - 0: 65535 - 6,7: - 0: 24575 - 7,4: - 0: 65535 - 7,5: - 0: 63351 - 7,6: - 0: 32631 - 8,1: - 0: 4096 - 8,2: - 0: 4369 - 8,3: - 0: 4096 - 8,4: - 0: 4369 - 0,4: - 1: 8199 - 0: 57336 - 0,5: - 0: 65533 - 1: 2 - 0,6: - 0: 65535 - 0,7: - 0: 65535 - 1,4: - 0: 65535 - 1,5: - 0: 65523 - 1: 12 - 1,6: - 0: 62463 - 1: 3072 - 1,7: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 2,6: - 0: 64767 - 1: 768 - 2,7: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 30719 - 1: 34816 - 3,6: - 0: 65527 - 1: 8 - 3,7: - 0: 65535 - -4,4: - 0: 61439 - 1: 4096 - -4,5: - 0: 65535 - -4,6: - 0: 65535 - -4,7: - 0: 65535 - -3,4: - 0: 65535 - -3,5: - 0: 65535 - -3,6: - 0: 65523 - 1: 12 - -3,7: - 0: 65535 - -2,4: - 0: 65535 - -2,5: - 0: 65535 - -2,6: - 0: 65535 - -2,7: - 0: 65535 - -1,4: - 0: 40951 - 1: 24584 - -1,5: - 0: 65535 - -1,6: - 0: 65535 - -1,7: - 0: 65535 - 0,8: - 0: 65535 - 0,9: - 0: 65535 - 0,10: - 0: 65535 - 0,11: - 0: 65535 - 1,8: - 0: 65535 - 1,9: - 0: 16383 - 1: 49152 - 1,10: - 0: 48127 - 1: 17408 - 1,11: - 0: 65535 - 2,8: - 0: 65535 - 2,9: - 0: 65535 - 2,10: - 0: 65535 - 3,8: - 0: 65531 - 1: 4 - 3,9: - 0: 65535 - 3,10: - 0: 65535 - -4,8: - 0: 65535 - -3,8: - 0: 65535 - -2,8: - 0: 65535 - -1,8: - 0: 65535 - -1,9: - 0: 65535 - -1,10: - 0: 65535 - -1,11: - 0: 65535 - 4,8: - 0: 65535 - 4,9: - 0: 65535 - 4,10: - 0: 65535 - 5,8: - 0: 65535 - 5,9: - 0: 65535 - 5,10: - 0: 32767 - 1: 32768 - 6,8: - 0: 30039 - 6,9: - 0: 4437 - 6,10: - 0: 21877 - -6,8: - 0: 65535 - -5,8: - 0: 65535 - -5,4: - 0: 16383 - 1: 49152 - -5,-4: - 0: 65535 - -4,-5: - 0: 62704 - -6,7: - 0: 65527 - 1: 8 - -5,7: - 0: 65535 - -5,6: - 0: 65467 - 1: 68 - -5,-5: - 0: 36736 - -8,1: - 0: 65535 - -8,2: - 0: 65535 - -8,3: - 0: 65535 - -7,2: - 0: 65535 - -7,3: - 0: 65535 - -6,2: - 0: 30591 - 1: 34944 - -6,3: - 0: 65535 - -8,8: - 0: 32767 - 1: 32768 - -7,8: - 0: 65535 - -8,4: - 0: 65535 - -8,5: - 0: 65527 - 1: 8 - -8,6: - 0: 65535 - -8,7: - 0: 65535 - -7,4: - 0: 65535 - -7,5: - 0: 65535 - -7,6: - 0: 65535 - -7,7: - 0: 65535 - -6,4: - 0: 65535 - -6,5: - 0: 65535 - -6,6: - 0: 65535 - -5,5: - 0: 65535 - -10,1: - 0: 65535 - -10,2: - 0: 65535 - -10,3: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 56799 - 1: 8736 - -9,3: - 0: 65535 - -10,4: - 0: 65535 - -10,5: - 0: 65535 - -10,6: - 0: 65535 - -10,7: - 0: 65535 - -9,5: - 0: 65535 - -9,6: - 0: 65535 - -9,7: - 0: 65535 - -10,8: - 0: 65535 - -9,8: - 0: 65535 - -8,-4: - 0: 65328 - -8,-1: - 0: 65535 - -7,-4: - 0: 65504 - -6,-4: - 0: 65534 - -8,0: - 0: 64443 - 1: 1092 - -4,9: - 0: 65535 - -4,10: - 0: 65535 - -6,9: - 0: 65535 - -6,10: - 0: 65535 - -5,9: - 0: 65535 - -5,10: - 0: 65535 - -12,0: - 0: 65535 - -12,1: - 0: 65535 - -11,0: - 0: 65263 - 1: 272 - -11,1: - 0: 65535 - -10,0: - 0: 65535 - -9,0: - 0: 65535 - -9,4: - 0: 65535 - -12,-3: - 0: 65535 - -12,-2: - 0: 65535 - -12,-1: - 0: 65535 - -11,-3: - 0: 65535 - -11,-2: - 0: 65519 - 1: 16 - -11,-1: - 0: 65535 - -11,-4: - 0: 62448 - 1: 3072 - -10,-4: - 0: 65264 - 1: 256 - -10,-3: - 0: 65535 - -10,-2: - 0: 65535 - -10,-1: - 0: 65535 - -9,-4: - 0: 65520 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -13,-3: - 0: 65535 - -13,-2: - 0: 65535 - -13,-1: - 0: 65535 - -13,0: - 0: 65535 - -13,1: - 0: 65535 - -12,2: - 0: 65535 - -12,3: - 0: 16383 - 1: 49152 - -11,2: - 0: 65535 - -11,3: - 0: 61439 - 1: 4096 - -12,4: - 0: 65535 - -12,5: - 0: 65535 - -12,6: - 0: 48127 - 1: 17408 - -12,7: - 0: 65531 - 1: 4 - -11,4: - 0: 65535 - -11,5: - 0: 65535 - -11,6: - 0: 65535 - -11,7: - 0: 65535 - -12,8: - 0: 65535 - -11,8: - 0: 65535 - -16,-3: - 0: 65535 - -16,-2: - 0: 28943 - -16,-1: - 0: 30583 - -15,-3: - 0: 65535 - -15,-2: - 0: 65535 - -15,-1: - 0: 65535 - -14,-3: - 0: 65311 - 1: 224 - -14,-2: - 0: 65535 - -14,-1: - 0: 57343 - 1: 8192 - -16,0: - 0: 61463 - -16,1: - 0: 65535 - -15,0: - 0: 65535 - -15,1: - 0: 65535 - -15,2: - 0: 65535 - -15,3: - 0: 65535 - -14,0: - 0: 61951 - 1: 3584 - -14,1: - 0: 65535 - -14,2: - 0: 61951 - 1: 3584 - -14,3: - 0: 65535 - -13,2: - 0: 65535 - -13,3: - 0: 65535 - -15,4: - 0: 65535 - -15,5: - 0: 65535 - -15,6: - 0: 65535 - -15,7: - 0: 65535 - -14,4: - 0: 65535 - -14,5: - 0: 65535 - -14,6: - 0: 65535 - -14,7: - 0: 65535 - -13,4: - 0: 65535 - -13,5: - 0: 65535 - -13,6: - 0: 65535 - -13,7: - 0: 65535 - -15,8: - 0: 65535 - -14,8: - 0: 45055 - 1: 20480 - -13,8: - 0: 65535 - -20,-3: - 0: 65535 - -20,-1: - 0: 65535 - -20,-2: - 0: 59407 - -19,-3: - 0: 65535 - -19,-2: - 0: 61423 - 3: 4096 - -19,-1: - 0: 65535 - -18,-3: - 0: 65535 - -18,-2: - 0: 65295 - -18,-1: - 0: 65535 - -17,-3: - 0: 65535 - -17,-2: - 0: 65295 - 2: 112 - -17,-1: - 0: 65535 - -20,0: - 0: 53390 - -20,1: - 0: 56799 - -19,0: - 3: 1 - 0: 65278 - -19,1: - 0: 65535 - -18,0: - 0: 61695 - -18,1: - 0: 65535 - -17,0: - 0: 61695 - 2: 1792 - -17,1: - 0: 65535 - 2,11: - 0: 65535 - 3,11: - 0: 65279 - 1: 256 - -4,11: - 0: 65535 - -3,9: - 0: 16371 - 1: 49164 - -3,10: - 0: 65535 - -3,11: - 0: 65535 - -2,9: - 0: 40959 - 1: 24576 - -2,10: - 0: 65535 - -2,11: - 0: 65535 - 4,11: - 0: 65535 - 5,11: - 0: 3983 - 6,11: - 0: 327 - -6,11: - 0: 65535 - -5,11: - 0: 65535 - -7,13: - 0: 65471 - 1: 64 - -7,14: - 0: 8191 - -6,12: - 0: 62461 - 1: 3074 - -6,13: - 0: 65407 - 1: 128 - -6,14: - 0: 65535 - -6,15: - 0: 65535 - -5,12: - 0: 65279 - 1: 256 - -5,13: - 0: 65535 - -5,14: - 0: 65535 - -5,15: - 0: 65535 - -4,12: - 0: 65535 - -4,13: - 0: 65535 - -4,14: - 0: 65535 - -4,15: - 0: 65535 - -3,12: - 0: 63351 - 1: 2184 - -3,13: - 0: 65535 - -3,14: - 0: 65535 - -3,15: - 0: 65471 - 1: 64 - -2,12: - 0: 63487 - -2,13: - 0: 65527 - -2,14: - 0: 65535 - -2,15: - 0: 65535 - -1,12: - 0: 65535 - -1,13: - 0: 16383 - -1,14: - 0: 20795 - -1,15: - 0: 22359 - 0,12: - 0: 65535 - 0,13: - 0: 9215 - 1,12: - 0: 65535 - 1,13: - 0: 37375 - 2,12: - 0: 63487 - 1: 2048 - 2,13: - 1: 1 - 0: 61950 - 3,12: - 0: 65535 - 3,13: - 0: 63999 - 4,12: - 0: 65535 - 4,13: - 0: 62719 - -4,16: - 0: 65535 - -4,17: - 0: 1839 - -3,16: - 0: 46003 - -6,16: - 0: 61167 - -6,17: - 0: 1595 - -5,16: - 0: 65535 - -5,17: - 0: 3919 - -8,9: - 0: 63487 - 1: 2048 - -8,10: - 0: 65535 - -8,11: - 0: 61435 - 1: 4100 - -7,9: - 0: 64447 - 1: 1088 - -7,10: - 0: 65535 - -7,11: - 0: 65535 - -12,9: - 0: 65535 - -12,10: - 0: 65535 - -12,11: - 0: 65535 - -11,9: - 0: 65535 - -11,10: - 0: 65535 - -11,11: - 0: 65535 - -10,9: - 0: 65535 - -10,10: - 0: 65535 - -10,11: - 0: 65535 - -9,9: - 0: 65535 - -9,10: - 0: 65023 - 4: 512 - -9,11: - 0: 65535 - -13,9: - 0: 65023 - 1: 512 - -13,10: - 0: 65535 - -13,11: - 0: 65535 - -8,12: - 0: 65487 - 1: 48 - -8,13: - 0: 65535 - -8,14: - 0: 49087 - -8,15: - 0: 3999 - -7,12: - 0: 65535 - -7,15: - 0: 50447 - -12,12: - 0: 65535 - -12,13: - 0: 65535 - -12,14: - 0: 65535 - -11,12: - 0: 65535 - -11,13: - 0: 65521 - 1: 14 - -11,14: - 0: 65535 - -10,12: - 0: 65535 - -10,13: - 1: 1537 - 0: 63998 - -10,14: - 0: 65535 - -9,12: - 0: 65535 - -9,13: - 0: 65535 - -9,14: - 0: 53247 - -9,15: - 0: 11055 - -15,9: - 0: 65535 - -15,10: - 0: 65535 - -15,11: - 0: 65535 - -14,9: - 1: 1 - 0: 65534 - -14,10: - 0: 65535 - -14,11: - 0: 65533 - 1: 2 - -12,15: - 0: 65535 - -11,15: - 0: 65535 - -10,15: - 0: 65535 - -16,12: - 0: 65521 - 1: 14 - -16,13: - 0: 53247 - 1: 12288 - -16,14: - 0: 65535 - -16,15: - 0: 49151 - 1: 16384 - -15,12: - 0: 32767 - 1: 32768 - -15,13: - 0: 65535 - -15,14: - 0: 64511 - 1: 1024 - -15,15: - 0: 65535 - -14,12: - 0: 49151 - 1: 16384 - -14,13: - 0: 65391 - 1: 144 - -14,14: - 0: 65535 - -14,15: - 0: 65535 - -13,12: - 0: 57343 - 1: 8192 - -13,13: - 0: 65535 - -13,14: - 0: 65535 - -13,15: - 0: 63487 - 1: 2048 - -20,13: - 0: 65535 - -20,14: - 0: 65535 - -20,15: - 0: 255 - -19,13: - 0: 65535 - -19,14: - 1: 1 - 0: 65534 - -19,15: - 0: 255 - -18,13: - 0: 65535 - -18,14: - 0: 65529 - 1: 6 - -18,15: - 0: 52479 - -17,13: - 0: 16383 - 1: 49152 - -17,14: - 0: 65535 - -17,15: - 0: 65535 - -17,12: - 0: 65535 - -16,16: - 0: 65535 - -16,17: - 0: 65535 - -16,18: - 0: 15 - -15,16: - 0: 65535 - -15,17: - 0: 65535 - -15,18: - 0: 239 - -14,16: - 0: 65535 - -14,17: - 0: 65535 - -14,18: - 0: 65023 - -13,16: - 0: 65535 - -13,17: - 0: 30711 - 1: 8 - -13,18: - 0: 32631 - -12,16: - 0: 65535 - -12,17: - 0: 61951 - -18,16: - 0: 3276 - -17,16: - 0: 36863 - -17,17: - 0: 34952 - -17,18: - 0: 8 - -21,13: - 0: 61439 - -21,14: - 0: 8942 - -16,2: - 0: 65535 - -16,3: - 0: 65535 - -16,4: - 0: 65535 - -16,5: - 0: 65535 - -16,6: - 0: 48895 - 1: 16640 - -16,7: - 0: 65467 - 1: 68 - -16,8: - 0: 65535 - -16,9: - 0: 65535 - -16,10: - 0: 65535 - -16,11: - 0: 65535 - -20,3: - 0: 65450 - -20,2: - 0: 44719 - -19,2: - 0: 65255 - 1: 8 - -19,3: - 0: 65534 - -18,2: - 0: 65531 - 1: 4 - -18,3: - 0: 32767 - 1: 32768 - -17,2: - 0: 65535 - -17,3: - 0: 65535 - -20,12: - 0: 65535 - -19,12: - 0: 65535 - -18,12: - 0: 65471 - 1: 64 - -23,12: - 0: 52478 - -23,13: - 0: 3276 - -22,12: - 0: 65535 - -22,13: - 0: 4095 - -21,12: - 0: 63743 - 2: 1792 - -20,8: - 0: 65535 - -20,9: - 0: 65535 - -20,10: - 0: 65535 - -20,11: - 0: 65535 - -19,8: - 0: 65535 - -19,9: - 0: 65535 - -19,10: - 0: 65535 - -19,11: - 0: 57343 - 1: 8192 - -18,8: - 0: 65535 - -18,9: - 0: 65535 - -18,10: - 0: 65535 - -18,11: - 0: 65535 - -17,8: - 0: 65535 - -17,9: - 0: 57343 - 1: 8192 - -17,10: - 0: 65533 - 1: 2 - -17,11: - 0: 65535 - -20,4: - 0: 65535 - -20,5: - 0: 65535 - -20,6: - 0: 65535 - -20,7: - 0: 65519 - 1: 16 - -19,4: - 0: 65535 - -19,5: - 0: 65535 - -19,6: - 0: 65535 - -19,7: - 0: 65535 - -18,4: - 0: 65535 - -18,5: - 0: 36863 - 1: 28672 - -18,6: - 0: 65471 - 1: 64 - -18,7: - 0: 65535 - -17,4: - 0: 65535 - -17,5: - 0: 65535 - -17,6: - 0: 61439 - 1: 4096 - -17,7: - 1: 4369 - 0: 61166 - -24,8: - 0: 65535 - -24,9: - 0: 44719 - -23,8: - 0: 8191 - 5: 57344 - -23,9: - 0: 7967 - 6: 224 - 2: 57344 - -23,10: - 0: 7967 - 2: 224 - 7: 57344 - -23,11: - 0: 65311 - 2: 224 - -22,8: - 0: 65535 - -22,9: - 0: 65535 - -22,10: - 0: 65535 - -22,11: - 0: 65535 - -21,8: - 0: 65535 - -21,9: - 0: 65535 - -21,10: - 0: 65535 - -21,11: - 0: 65535 - -21,3: - 0: 57088 - -24,5: - 0: 57343 - -24,6: - 0: 56797 - -24,7: - 0: 63999 - -24,4: - 0: 65524 - -23,4: - 0: 65524 - -23,5: - 0: 65535 - -23,6: - 0: 65535 - -23,7: - 0: 65535 - -22,4: - 0: 65528 - -22,5: - 0: 65535 - -22,6: - 0: 65535 - -22,7: - 0: 65535 - -21,4: - 0: 57343 - 1: 8192 - -21,5: - 0: 65533 - 1: 2 - -21,6: - 0: 65535 - -21,7: - 0: 65343 - 1: 192 - -28,8: - 0: 65359 - -28,9: - 0: 8 - -27,8: - 0: 65503 - -27,9: - 0: 15 - -26,8: - 0: 65535 - -26,9: - 0: 15 - -25,8: - 0: 65535 - -25,9: - 0: 15 - -28,5: - 0: 4088 - -27,5: - 0: 24575 - -27,6: - 0: 21975 - -27,7: - 0: 62943 - -26,5: - 0: 20479 - -26,6: - 0: 56703 - -26,7: - 0: 64989 - -25,5: - 0: 49151 - -25,6: - 0: 48847 - -25,7: - 0: 63217 - -29,5: - 0: 224 - -29,8: - 0: 57344 - -21,15: - 0: 226 - -12,-4: - 0: 65535 - -16,-4: - 0: 24336 - -13,-4: - 0: 61422 - -19,-4: - 0: 65520 - -18,-4: - 0: 65296 - -17,-4: - 0: 65520 - -13,-5: - 0: 60928 - -12,-5: - 0: 65280 - -11,16: - 0: 65531 - 1: 4 - -10,16: - 0: 65535 - -16,19: - 0: 61152 - -15,19: - 0: 65520 - -14,19: - 0: 65533 - -13,19: - 0: 30711 - -16,20: - 0: 65535 - -16,21: - 0: 61439 - -16,22: - 0: 61167 - -15,20: - 0: 65535 - -15,21: - 0: 65535 - -15,22: - 0: 65535 - -14,20: - 0: 65533 - 1: 2 - -14,21: - 1: 1 - 0: 65534 - -14,22: - 0: 65279 - 1: 256 - -13,20: - 0: 57343 - 1: 8192 - -13,21: - 0: 65533 - 1: 2 - -13,22: - 0: 32767 - 0,14: - 0: 15 - 1,14: - 0: 3 - -3,17: - 0: 878 - -2,16: - 0: 249 - -1,16: - 0: 20 - -7,16: - 0: 32836 - -7,17: - 0: 8 - -12,18: - 0: 4368 - -12,19: - 0: 273 - -11,17: - 0: 61951 - -10,17: - 0: 62207 - -16,23: - 0: 143 - -15,23: - 0: 3839 - -14,23: - 0: 2047 - -13,23: - 0: 119 - -12,20: - 0: 4369 - -12,21: - 0: 4369 - -12,22: - 0: 4369 - -12,23: - 0: 1 - -17,20: - 0: 50184 - -17,21: - 0: 19524 - -17,22: - 0: 2188 - -28,4: - 0: 36608 - -28,7: - 0: 32776 - -27,4: - 0: 65480 - -26,4: - 0: 65524 - -25,4: - 0: 65520 - 4,-7: - 0: 17600 - 6,-8: - 0: 19456 - 7,7: - 0: 12151 - -6,-5: - 0: 19968 - -15,-4: - 0: 9984 - -14,-4: - 0: 12032 - -20,-4: - 0: 51200 - -24,10: - 0: 43658 - -24,11: - 0: 44718 - -24,12: - 0: 192 - -27,3: - 0: 49152 - -26,3: - 0: 61440 - -25,3: - 0: 4096 - -24,3: - 0: 61440 - -23,3: - 0: 61440 - -22,3: - 0: 3584 - 8,-3: - 0: 4368 - 8,-2: - 0: 4369 - 8,-1: - 0: 4369 - 2,-5: - 0: 12288 - 2: 36863 - 5,12: - 0: 8754 - 5,13: - 0: 8754 - 8,5: - 0: 4368 - 8,6: - 0: 4369 - 8,7: - 0: 4368 - 7,8: - 0: 15 - 8,8: - 0: 1 - -9,16: - 0: 8994 - -9,17: - 0: 12835 - -2,-6: - 2: 63984 - -1,-6: - 2: 62672 - 0,-6: - 2: 61904 - 1,-6: - 2: 63984 - 2,-6: - 2: 63696 - 3,-6: - 2: 21616 - 3,-5: - 2: 17909 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 18.472576 - - 69.49208 - - 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 - - volume: 2500 - temperature: 293.15 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 10.091824 - - 37.964485 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance - - id: Barratry - type: BecomesStation -- uid: 2 - type: WallReinforced - components: - - pos: -4.5,3.5 - parent: 1 - type: Transform -- uid: 3 - type: WallReinforced - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform -- uid: 4 - type: Window - components: - - pos: -8.5,3.5 - parent: 1 - type: Transform -- uid: 5 - type: WallReinforced - components: - - pos: -4.5,0.5 - parent: 1 - type: Transform -- uid: 6 - type: WallReinforced - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform -- uid: 7 - type: WallReinforced - components: - - pos: -3.5,3.5 - parent: 1 - type: Transform -- uid: 8 - type: WallReinforced - components: - - pos: -2.5,3.5 - parent: 1 - type: Transform -- uid: 9 - type: WallReinforced - components: - - pos: -1.5,3.5 - parent: 1 - type: Transform -- uid: 10 - type: WallReinforced - components: - - pos: -0.5,3.5 - parent: 1 - type: Transform -- uid: 11 - type: WallReinforced - components: - - pos: -0.5,2.5 - parent: 1 - type: Transform -- uid: 12 - type: WallReinforced - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform -- uid: 13 - type: WallReinforced - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform -- uid: 14 - type: WallReinforced - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform -- uid: 15 - type: WallReinforced - components: - - pos: -1.5,-0.5 - parent: 1 - type: Transform -- uid: 16 - type: ReinforcedWindow - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform -- uid: 17 - type: WallSolidRust - components: - - pos: -5.5,3.5 - parent: 1 - type: Transform -- uid: 18 - type: WallSolidRust - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform -- uid: 19 - type: WallSolidRust - components: - - pos: -13.5,-0.5 - parent: 1 - type: Transform -- uid: 20 - type: WallSolid - components: - - pos: -12.5,-0.5 - parent: 1 - type: Transform -- uid: 21 - type: WallSolid - components: - - pos: -10.5,0.5 - parent: 1 - type: Transform -- uid: 22 - type: WallSolid - components: - - pos: -10.5,2.5 - parent: 1 - type: Transform -- uid: 23 - type: WallSolid - components: - - pos: -13.5,3.5 - parent: 1 - type: Transform -- uid: 24 - type: WallSolid - components: - - pos: -14.5,1.5 - parent: 1 - type: Transform -- uid: 25 - type: WallSolidRust - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform -- uid: 26 - type: WallSolid - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform -- uid: 27 - type: WallSolid - components: - - pos: -10.5,3.5 - parent: 1 - type: Transform -- uid: 28 - type: Grille - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform -- uid: 29 - type: WallReinforced - components: - - pos: -4.5,1.5 - parent: 1 - type: Transform -- uid: 30 - type: WallSolidRust - components: - - pos: -11.5,-0.5 - parent: 1 - type: Transform -- uid: 31 - type: WallSolid - components: - - pos: -14.5,-0.5 - parent: 1 - type: Transform -- uid: 32 - type: WallSolidRust - components: - - pos: -10.5,-0.5 - parent: 1 - type: Transform -- uid: 33 - type: WallSolidRust - components: - - pos: 3.5,-1.5 - parent: 1 - type: Transform -- uid: 34 - type: WallSolid - components: - - pos: -14.5,3.5 - parent: 1 - type: Transform -- uid: 35 - type: WallSolid - components: - - pos: -9.5,3.5 - parent: 1 - type: Transform -- uid: 36 - type: Window - components: - - pos: -6.5,3.5 - parent: 1 - type: Transform -- uid: 37 - type: Grille - components: - - pos: -8.5,3.5 - parent: 1 - type: Transform -- uid: 38 - type: AsteroidRockMining - components: - - pos: -6.5,-7.5 - parent: 1 - type: Transform -- uid: 39 - type: Window - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform -- uid: 40 - type: WallSolidRust - components: - - pos: 3.5,1.5 - parent: 1 - type: Transform -- uid: 41 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-5.5 - parent: 1 - type: Transform -- uid: 42 - type: BlastDoor - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 351 - type: SignalReceiver -- uid: 43 - type: WallSolid - components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform -- uid: 44 - type: WallSolidRust - components: - - pos: 3.5,-0.5 - parent: 1 - type: Transform -- uid: 45 - type: WallSolid - components: - - pos: 0.5,-2.5 - parent: 1 - type: Transform -- uid: 46 - type: WallSolidRust - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform -- uid: 47 - type: WallSolid - components: - - pos: 3.5,3.5 - parent: 1 - type: Transform -- uid: 48 - type: WallSolid - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform -- uid: 49 - type: WallSolidRust - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform -- uid: 50 - type: WallSolid - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform -- uid: 51 - type: WallSolidRust - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform -- uid: 52 - type: WallSolidRust - components: - - pos: 0.5,-4.5 - parent: 1 - type: Transform -- uid: 53 - type: WallSolid - components: - - pos: 3.5,-2.5 - parent: 1 - type: Transform -- uid: 54 - type: Girder - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform -- uid: 55 - type: WallSolid - components: - - pos: 2.5,-3.5 - parent: 1 - type: Transform -- uid: 56 - type: WallSolidRust - components: - - pos: 4.5,-6.5 - parent: 1 - type: Transform -- uid: 57 - type: Window - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform -- uid: 58 - type: WallSolid - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform -- uid: 59 - type: AsteroidRockMining - components: - - pos: -7.5,-6.5 - parent: 1 - type: Transform -- uid: 60 - type: WallSolid - components: - - pos: -9.5,-6.5 - parent: 1 - type: Transform -- uid: 61 - type: WallReinforced - components: - - pos: -10.5,-6.5 - parent: 1 - type: Transform -- uid: 62 - type: WallReinforced - components: - - pos: -11.5,-6.5 - parent: 1 - type: Transform -- uid: 63 - type: AsteroidRockMining - components: - - pos: -6.5,-8.5 - parent: 1 - type: Transform -- uid: 64 - type: WallReinforced - components: - - pos: -10.5,-7.5 - parent: 1 - type: Transform -- uid: 65 - type: WallReinforced - components: - - pos: -13.5,-6.5 - parent: 1 - type: Transform -- uid: 66 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-4.5 - parent: 1 - type: Transform -- uid: 67 - type: Grille - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform -- uid: 68 - type: Grille - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform -- uid: 69 - type: Grille - components: - - pos: -6.5,3.5 - parent: 1 - type: Transform -- uid: 70 - type: SheetPlasma - components: - - pos: -7.5452075,-9.510586 - parent: 1 - type: Transform -- uid: 71 - type: WallReinforced - components: - - pos: -11.5,-9.5 - parent: 1 - type: Transform -- uid: 72 - type: AsteroidRockMining - components: - - pos: -9.5,-8.5 - parent: 1 - type: Transform -- uid: 73 - type: WallSolid - components: - - pos: -10.5,-10.5 - parent: 1 - type: Transform -- uid: 74 - type: AsteroidRockMining - components: - - pos: -9.5,-7.5 - parent: 1 - type: Transform -- uid: 75 - type: AsteroidRockMining - components: - - pos: -5.5,-8.5 - parent: 1 - type: Transform -- uid: 76 - type: WallSolid - components: - - pos: -6.5,-6.5 - parent: 1 - type: Transform -- uid: 77 - type: WallReinforced - components: - - pos: -12.5,-9.5 - parent: 1 - type: Transform -- uid: 78 - type: WallReinforced - components: - - pos: -13.5,-9.5 - parent: 1 - type: Transform -- uid: 79 - type: WallReinforced - components: - - pos: -14.5,-9.5 - parent: 1 - type: Transform -- uid: 80 - type: WallReinforced - components: - - pos: -14.5,-8.5 - parent: 1 - type: Transform -- uid: 81 - type: WallReinforced - components: - - pos: -14.5,-7.5 - parent: 1 - type: Transform -- uid: 82 - type: WallReinforced - components: - - pos: -14.5,-6.5 - parent: 1 - type: Transform -- uid: 83 - type: WallSolidRust - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform -- uid: 84 - type: AsteroidRockMining - components: - - pos: -4.5,-7.5 - parent: 1 - type: Transform -- uid: 85 - type: WallSolid - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform -- uid: 86 - type: WallSolid - components: - - pos: -5.5,-6.5 - parent: 1 - type: Transform -- uid: 87 - type: AsteroidRock - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform -- uid: 88 - type: WallSolid - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform -- uid: 89 - type: AsteroidRock - components: - - pos: -2.5,-6.5 - parent: 1 - type: Transform -- uid: 90 - type: AsteroidRockMining - components: - - pos: -4.5,-10.5 - parent: 1 - type: Transform -- uid: 91 - type: AsteroidRockMining - components: - - pos: -5.5,-10.5 - parent: 1 - type: Transform -- uid: 92 - type: AsteroidRockMining - components: - - pos: -3.5,-9.5 - parent: 1 - type: Transform -- uid: 93 - type: AsteroidRockMining - components: - - pos: -3.5,-8.5 - parent: 1 - type: Transform -- uid: 94 - type: AsteroidRockMining - components: - - pos: -2.5,-8.5 - parent: 1 - type: Transform -- uid: 95 - type: AsteroidRockMining - components: - - pos: -4.5,-9.5 - parent: 1 - type: Transform -- uid: 96 - type: RandomArtifactSpawner - components: - - pos: -4.5,-8.5 - parent: 1 - type: Transform -- uid: 97 - type: AsteroidRock - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform -- uid: 98 - type: AsteroidRockMining - components: - - pos: -6.5,-9.5 - parent: 1 - type: Transform -- uid: 99 - type: AsteroidRockMining - components: - - pos: -5.5,-9.5 - parent: 1 - type: Transform -- uid: 100 - type: AsteroidRockMining - components: - - pos: -3.5,-7.5 - parent: 1 - type: Transform -- uid: 101 - type: AsteroidRockMining - components: - - pos: -2.5,-7.5 - parent: 1 - type: Transform -- uid: 102 - type: AsteroidRockMining - components: - - pos: -6.5,-10.5 - parent: 1 - type: Transform -- uid: 103 - type: AsteroidRockMining - components: - - pos: -5.5,-7.5 - parent: 1 - type: Transform -- uid: 104 - type: AsteroidRockMining - components: - - pos: -6.5,-11.5 - parent: 1 - type: Transform -- uid: 105 - type: ShuttersNormal - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 340 - type: SignalReceiver -- uid: 106 - type: AsteroidRockMining - components: - - pos: -5.5,-11.5 - parent: 1 - type: Transform -- uid: 107 - type: AsteroidRockMining - components: - - pos: -7.5,-10.5 - parent: 1 - type: Transform -- uid: 108 - type: AsteroidRockMining - components: - - pos: -8.5,-10.5 - parent: 1 - type: Transform -- uid: 109 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-10.5 - parent: 1 - type: Transform -- uid: 110 - type: Girder - components: - - pos: -21.5,-12.5 - parent: 1 - type: Transform -- uid: 111 - type: AsteroidRockMining - components: - - pos: -9.5,-10.5 - parent: 1 - type: Transform -- uid: 112 - type: AsteroidRockMining - components: - - pos: -9.5,-14.5 - parent: 1 - type: Transform -- uid: 113 - type: WallSolid - components: - - pos: -18.5,-12.5 - parent: 1 - type: Transform -- uid: 114 - type: AsteroidRockMining - components: - - pos: -6.5,-14.5 - parent: 1 - type: Transform -- uid: 115 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-13.5 - parent: 1 - type: Transform -- uid: 116 - type: WallReinforced - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform -- uid: 117 - type: WallReinforced - components: - - pos: -12.5,-15.5 - parent: 1 - type: Transform -- uid: 118 - type: WallReinforced - components: - - pos: -11.5,-15.5 - parent: 1 - type: Transform -- uid: 119 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-15.5 - parent: 1 - type: Transform -- uid: 120 - type: WallReinforced - components: - - pos: -10.5,-14.5 - parent: 1 - type: Transform -- uid: 121 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-15.5 - parent: 1 - type: Transform -- uid: 122 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-15.5 - parent: 1 - type: Transform -- uid: 123 - type: AsteroidRockMining - components: - - pos: -9.5,-13.5 - parent: 1 - type: Transform -- uid: 124 - type: WallSolid - components: - - pos: -10.5,-11.5 - parent: 1 - type: Transform -- uid: 125 - type: WallSolid - components: - - pos: -8.5,-13.5 - parent: 1 - type: Transform -- uid: 126 - type: WallReinforced - components: - - pos: -10.5,-9.5 - parent: 1 - type: Transform -- uid: 127 - type: AsteroidRockMining - components: - - pos: -7.5,-13.5 - parent: 1 - type: Transform -- uid: 128 - type: ReinforcedGirder - components: - - pos: -10.5,-13.5 - parent: 1 - type: Transform -- uid: 129 - type: AsteroidRockMining - components: - - pos: -7.5,-14.5 - parent: 1 - type: Transform -- uid: 130 - type: AsteroidRockMining - components: - - pos: -8.5,-14.5 - parent: 1 - type: Transform -- uid: 131 - type: AsteroidRockMining - components: - - pos: -8.5,-15.5 - parent: 1 - type: Transform -- uid: 132 - type: AsteroidRockMining - components: - - pos: -7.5,-15.5 - parent: 1 - type: Transform -- uid: 133 - type: Grille - components: - - pos: -6.5,-16.5 - parent: 1 - type: Transform -- uid: 134 - type: AsteroidRockMining - components: - - pos: -3.5,-16.5 - parent: 1 - type: Transform -- uid: 135 - type: AsteroidRockMining - components: - - pos: -3.5,-15.5 - parent: 1 - type: Transform -- uid: 136 - type: AsteroidRockMining - components: - - pos: -3.5,-14.5 - parent: 1 - type: Transform -- uid: 137 - type: AsteroidRockMining - components: - - pos: -4.5,-14.5 - parent: 1 - type: Transform -- uid: 138 - type: AsteroidRockMining - components: - - pos: -4.5,-13.5 - parent: 1 - type: Transform -- uid: 139 - type: AsteroidRockMining - components: - - pos: -3.5,-13.5 - parent: 1 - type: Transform -- uid: 140 - type: AsteroidRockMining - components: - - pos: -3.5,-12.5 - parent: 1 - type: Transform -- uid: 141 - type: AsteroidRockMining - components: - - pos: -2.5,-12.5 - parent: 1 - type: Transform -- uid: 142 - type: AsteroidRockMining - components: - - pos: -2.5,-13.5 - parent: 1 - type: Transform -- uid: 143 - type: RandomArtifactSpawner20 - components: - - pos: -2.5,-14.5 - parent: 1 - type: Transform -- uid: 144 - type: AsteroidRockMining - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform -- uid: 145 - type: AsteroidRockMining - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform -- uid: 146 - type: AsteroidRockMining - components: - - pos: -1.5,-14.5 - parent: 1 - type: Transform -- uid: 147 - type: AsteroidRockMining - components: - - pos: -1.5,-13.5 - parent: 1 - type: Transform -- uid: 148 - type: AsteroidRockMining - components: - - pos: -1.5,-12.5 - parent: 1 - type: Transform -- uid: 149 - type: WallReinforced - components: - - pos: 4.5,-12.5 - parent: 1 - type: Transform -- uid: 150 - type: AsteroidRockMining - components: - - pos: 4.5,-13.5 - parent: 1 - type: Transform -- uid: 151 - type: AsteroidRockMining - components: - - pos: 5.5,-13.5 - parent: 1 - type: Transform -- uid: 152 - type: AsteroidRockMining - components: - - pos: 5.5,-14.5 - parent: 1 - type: Transform -- uid: 153 - type: AsteroidRockMining - components: - - pos: 4.5,-16.5 - parent: 1 - type: Transform -- uid: 154 - type: AsteroidRockMining - components: - - pos: 3.5,-17.5 - parent: 1 - type: Transform -- uid: 155 - type: AsteroidRockMining - components: - - pos: 2.5,-17.5 - parent: 1 - type: Transform -- uid: 156 - type: AsteroidRockMining - components: - - pos: 1.5,-17.5 - parent: 1 - type: Transform -- uid: 157 - type: AsteroidRockMining - components: - - pos: 0.5,-17.5 - parent: 1 - type: Transform -- uid: 158 - type: AsteroidRockMining - components: - - pos: -0.5,-16.5 - parent: 1 - type: Transform -- uid: 159 - type: AsteroidRockMining - components: - - pos: -1.5,-16.5 - parent: 1 - type: Transform -- uid: 160 - type: AsteroidRockMining - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform -- uid: 161 - type: AsteroidRockMining - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform -- uid: 162 - type: AsteroidRockMining - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform -- uid: 163 - type: AsteroidRockMining - components: - - pos: -0.5,-13.5 - parent: 1 - type: Transform -- uid: 164 - type: WallReinforced - components: - - pos: -0.5,-14.5 - parent: 1 - type: Transform -- uid: 165 - type: AsteroidRockMining - components: - - pos: 7.5,-10.5 - parent: 1 - type: Transform -- uid: 166 - type: AsteroidRockMining - components: - - pos: 7.5,-11.5 - parent: 1 - type: Transform -- uid: 167 - type: WallVaultRock - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 1 - type: Transform -- uid: 168 - type: WallReinforced - components: - - pos: 6.5,-11.5 - parent: 1 - type: Transform -- uid: 169 - type: Chair - components: - - pos: -51.5,49.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 170 - type: AsteroidRock - components: - - pos: -0.5,-7.5 - parent: 1 - type: Transform -- uid: 171 - type: AsteroidRock - components: - - pos: -0.5,-8.5 - parent: 1 - type: Transform -- uid: 172 - type: WallReinforced - components: - - pos: 3.5,-7.5 - parent: 1 - type: Transform -- uid: 173 - type: WallSolidRust - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform -- uid: 174 - type: AsteroidRock - components: - - pos: 4.5,-7.5 - parent: 1 - type: Transform -- uid: 175 - type: WallSolid - components: - - pos: 11.5,-8.5 - parent: 1 - type: Transform -- uid: 176 - type: WallSolid - components: - - pos: 6.5,-8.5 - parent: 1 - type: Transform -- uid: 177 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 1 - type: Transform -- uid: 178 - type: WallSolid - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform -- uid: 179 - type: Girder - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform -- uid: 180 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-5.5 - parent: 1 - type: Transform -- uid: 181 - type: WallSolidRust - components: - - pos: -14.5,2.5 - parent: 1 - type: Transform -- uid: 182 - type: Girder - components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform -- uid: 183 - type: WallSolid - components: - - pos: 9.5,-6.5 - parent: 1 - type: Transform -- uid: 184 - type: AirlockExternal - components: - - pos: -5.5,-17.5 - parent: 1 - type: Transform -- uid: 185 - type: ReinforcedWindow - components: - - pos: -6.5,-16.5 - parent: 1 - type: Transform -- uid: 186 - type: WallReinforced - components: - - pos: -6.5,-17.5 - parent: 1 - type: Transform -- uid: 187 - type: WallReinforced - components: - - pos: -4.5,-16.5 - parent: 1 - type: Transform -- uid: 188 - type: WallReinforced - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform -- uid: 189 - type: WallReinforced - components: - - pos: -4.5,-17.5 - parent: 1 - type: Transform -- uid: 190 - type: WallSolid - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform -- uid: 191 - type: Girder - components: - - pos: 1.5,-7.5 - parent: 1 - type: Transform -- uid: 192 - type: WallSolid - components: - - pos: -0.5,-11.5 - parent: 1 - type: Transform -- uid: 193 - type: WallSolidRust - components: - - pos: -0.5,-12.5 - parent: 1 - type: Transform -- uid: 194 - type: ReinforcedWindow - components: - - pos: 2.5,-12.5 - parent: 1 - type: Transform -- uid: 195 - type: ReinforcedWindow - components: - - pos: 0.5,-12.5 - parent: 1 - type: Transform -- uid: 196 - type: WallReinforced - components: - - pos: 6.5,-9.5 - parent: 1 - type: Transform -- uid: 197 - type: WallSolidRust - components: - - pos: 3.5,-13.5 - parent: 1 - type: Transform -- uid: 198 - type: WallReinforced - components: - - pos: 3.5,-12.5 - parent: 1 - type: Transform -- uid: 199 - type: ReinforcedGirder - components: - - pos: 2.5,-16.5 - parent: 1 - type: Transform -- uid: 200 - type: AsteroidRock - components: - - pos: 7.5,-9.5 - parent: 1 - type: Transform -- uid: 201 - type: WallReinforced - components: - - pos: 6.5,-12.5 - parent: 1 - type: Transform -- uid: 202 - type: WallReinforced - components: - - pos: 6.5,-10.5 - parent: 1 - type: Transform -- uid: 203 - type: WallReinforced - components: - - pos: 5.5,-7.5 - parent: 1 - type: Transform -- uid: 204 - type: WallReinforced - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform -- uid: 205 - type: WallSolid - components: - - pos: 0.5,-7.5 - parent: 1 - type: Transform -- uid: 206 - type: WallReinforced - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform -- uid: 207 - type: WallReinforced - components: - - pos: 5.5,-12.5 - parent: 1 - type: Transform -- uid: 208 - type: ReinforcedGirder - components: - - pos: 6.5,-7.5 - parent: 1 - type: Transform -- uid: 209 - type: WallSolid - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform -- uid: 210 - type: WallVaultRock - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 1 - type: Transform -- uid: 211 - type: WallVaultRock - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 1 - type: Transform -- uid: 212 - type: Grille - components: - - pos: 2.5,-12.5 - parent: 1 - type: Transform -- uid: 213 - type: Grille - components: - - pos: 0.5,-12.5 - parent: 1 - type: Transform -- uid: 214 - type: WallSolid - components: - - pos: -18.5,-14.5 - parent: 1 - type: Transform -- uid: 215 - type: ShuttersNormal - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 340 - type: SignalReceiver -- uid: 216 - type: ShuttersNormal - components: - - pos: 1.5,3.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 340 - type: SignalReceiver -- uid: 217 - type: AirlockExternal - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform -- uid: 218 - type: WallReinforced - components: - - pos: -6.5,-15.5 - parent: 1 - type: Transform -- uid: 219 - type: FirelockEdge - components: - - pos: -5.5,-13.5 - parent: 1 - type: Transform -- uid: 220 - type: WindoorScienceLocked - components: - - pos: -5.5,-14.5 - parent: 1 - type: Transform -- uid: 221 - type: AirlockScienceLocked - components: - - pos: -0.5,-10.5 - parent: 1 - type: Transform -- uid: 222 - type: AirlockScienceLocked - components: - - pos: 1.5,-12.5 - parent: 1 - type: Transform -- uid: 223 - type: AirlockScienceLocked - components: - - pos: -12.5,3.5 - parent: 1 - type: Transform -- uid: 224 - type: AirlockScienceLocked - components: - - pos: -10.5,1.5 - parent: 1 - type: Transform -- uid: 225 - type: AirlockScienceLocked - components: - - pos: 0.5,-1.5 - parent: 1 - type: Transform -- uid: 226 - type: AirlockMaintRnDLocked - components: - - pos: 0.5,-5.5 - parent: 1 - type: Transform -- uid: 227 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 1 - type: Transform -- uid: 228 - type: SignScience - components: - - pos: -9.5,3.5 - parent: 1 - type: Transform -- uid: 229 - type: BannerScience - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform -- uid: 230 - type: Table - components: - - pos: -11.5,-5.5 - parent: 1 - type: Transform -- uid: 231 - type: LockerScienceFilled - components: - - pos: -6.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 232 - type: LockerScienceFilled - components: - - pos: -6.5,-3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 233 - type: Table - components: - - pos: -10.5,-5.5 - parent: 1 - type: Transform -- uid: 234 - type: ComputerTechnologyDiskTerminal - components: - - pos: -9.5,-5.5 - parent: 1 - type: Transform -- uid: 235 - type: Table - components: - - pos: -13.5,-1.5 - parent: 1 - type: Transform -- uid: 236 - type: Table - components: - - pos: -12.5,-1.5 - parent: 1 - type: Transform -- uid: 237 - type: Table - components: - - pos: -11.5,-1.5 - parent: 1 - type: Transform -- uid: 238 - type: VendingMachineRoboDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-2.5 - parent: 1 - type: Transform -- uid: 239 - type: Table - components: - - pos: 2.5,-1.5 - parent: 1 - type: Transform -- uid: 240 - type: ExosuitFabricator - components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform -- uid: 241 - type: Table - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform -- uid: 242 - type: VendingMachineSciDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,-5.5 - parent: 1 - type: Transform -- uid: 243 - type: LockerScienceFilled - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 244 - type: LockerScienceFilled - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 245 - type: LockerResearchDirectorFilled - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 246 - type: TableWood - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform -- uid: 247 - type: TableWood - components: - - pos: -2.5,1.5 - parent: 1 - type: Transform -- uid: 248 - type: ComputerResearchAndDevelopment - components: - - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 1 - type: Transform -- uid: 249 - type: DisposalUnit - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform -- uid: 250 - type: Table - components: - - pos: -9.5,2.5 - parent: 1 - type: Transform -- uid: 251 - type: ComputerResearchAndDevelopment - components: - - rot: 1.5707963267948966 rad - pos: -8.5,2.5 - parent: 1 - type: Transform -- uid: 252 - type: AirlockResearchDirectorLocked - components: - - pos: -2.5,-0.5 - parent: 1 - type: Transform -- uid: 253 - type: MachineFrame - components: - - pos: -5.5,0.5 - parent: 1 - type: Transform -- uid: 254 - type: Protolathe - components: - - pos: -5.5,1.5 - parent: 1 - type: Transform -- uid: 255 - type: Autolathe - components: - - pos: -5.5,-0.5 - parent: 1 - type: Transform -- uid: 256 - type: AirlockResearchDirectorLocked - components: - - pos: -12.5,-6.5 - parent: 1 - type: Transform -- uid: 257 - type: MaintenanceFluffSpawner - components: - - pos: -13.5,-7.5 - parent: 1 - type: Transform -- uid: 258 - type: CircuitImprinterMachineCircuitboard - components: - - pos: -11.474969,-1.4294147 - parent: 1 - type: Transform -- uid: 259 - type: MatterBinStockPart - components: - - pos: -13.470199,-1.2731647 - parent: 1 - type: Transform -- uid: 260 - type: MicroManipulatorStockPart - components: - - pos: -10.438767,-5.4789715 - parent: 1 - type: Transform -- uid: 261 - type: BoxBeaker - components: - - pos: -9.507762,2.683241 - parent: 1 - type: Transform -- uid: 262 - type: SheetGlass - components: - - pos: -12.723352,-1.4051902 - parent: 1 - type: Transform -- uid: 263 - type: SheetGlass - components: - - pos: -12.582727,-1.3895652 - parent: 1 - type: Transform -- uid: 264 - type: SheetPlastic - components: - - pos: -12.32629,-1.4051902 - parent: 1 - type: Transform -- uid: 265 - type: SheetPlastic - components: - - pos: -12.23254,-1.4051902 - parent: 1 - type: Transform -- uid: 266 - type: SheetSteel - components: - - pos: -11.498165,-5.4051905 - parent: 1 - type: Transform -- uid: 267 - type: SheetSteel - components: - - pos: -11.016892,-5.4477215 - parent: 1 - type: Transform -- uid: 268 - type: SheetSteel1 - components: - - pos: 2.5175354,-1.5196886 - parent: 1 - type: Transform - - count: 10 - type: Stack -- uid: 269 - type: DrinkMugBlack - components: - - pos: -17.654377,-4.445471 - parent: 1 - type: Transform -- uid: 270 - type: DrinkMugOne - components: - - pos: -17.310627,-4.257971 - parent: 1 - type: Transform -- uid: 271 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -7.5,2.5 - parent: 1 - type: Transform -- uid: 272 - type: ChairOfficeDark - components: - - pos: -2.5,2.5 - parent: 1 - type: Transform -- uid: 273 - type: Table - components: - - pos: -7.5,3.5 - parent: 1 - type: Transform -- uid: 274 - type: WindoorScienceLocked - components: - - pos: -7.5,3.5 - parent: 1 - type: Transform -- uid: 275 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: -7.5,3.5 - parent: 1 - type: Transform -- uid: 276 - type: PottedPlantRD - components: - - pos: -10.5,-1.5 - parent: 1 - type: Transform -- uid: 277 - type: PottedPlantRandom - components: - - pos: -13.5,-5.5 - parent: 1 - type: Transform -- uid: 278 - type: PottedPlantRandom - components: - - pos: -0.5,-2.5 - parent: 1 - type: Transform -- uid: 279 - type: Table - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform -- uid: 280 - type: Table - components: - - pos: -0.5,-4.5 - parent: 1 - type: Transform -- uid: 281 - type: ChairFolding - components: - - pos: -14.5,-13.5 - parent: 1 - type: Transform -- uid: 282 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 283 - type: AirlockScienceLocked - components: - - pos: -10.5,-12.5 - parent: 1 - type: Transform -- uid: 284 - type: Table - components: - - pos: -17.5,-13.5 - parent: 1 - type: Transform -- uid: 285 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 1 - type: Transform -- uid: 286 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-13.5 - parent: 1 - type: Transform -- uid: 287 - type: DonkpocketBoxSpawner - components: - - pos: -3.5,-5.5 - parent: 1 - type: Transform -- uid: 288 - type: Table - components: - - pos: -3.5,-5.5 - parent: 1 - type: Transform -- uid: 289 - type: Table - components: - - pos: -4.5,-5.5 - parent: 1 - type: Transform -- uid: 290 - type: InflatableDoor - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform -- uid: 291 - type: AsteroidRockMining - components: - - pos: -8.5,-7.5 - parent: 1 - type: Transform -- uid: 292 - type: AsteroidRockMining - components: - - pos: -8.5,-8.5 - parent: 1 - type: Transform -- uid: 293 - type: AsteroidRockMining - components: - - pos: -8.5,-9.5 - parent: 1 - type: Transform -- uid: 294 - type: ClosetEmergencyFilledRandom - components: - - pos: -13.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 295 - type: ClosetFireFilled - components: - - pos: -13.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 296 - type: ClosetFireFilled - components: - - pos: -13.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 297 - type: PottedPlantRandom - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform -- uid: 298 - type: SpawnMobDrone - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform -- uid: 299 - type: SpawnMobDrone - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform -- uid: 300 - type: SpawnMobDrone - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform -- uid: 301 - type: ClothingOuterCardborg - components: - - pos: 2.0910594,1.3088007 - parent: 1 - type: Transform -- uid: 302 - type: ClothingHeadHatCardborg - components: - - pos: 1.8966352,1.6815121 - parent: 1 - type: Transform -- uid: 303 - type: FaxMachineBase - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform - - name: Science - type: FaxMachine -- uid: 304 - type: Paper - components: - - pos: -0.48525378,-4.0916176 - parent: 1 - type: Transform -- uid: 305 - type: Paper - components: - - pos: -0.39150378,-4.0916176 - parent: 1 - type: Transform -- uid: 306 - type: Paper - components: - - pos: -0.32900378,-4.0916176 - parent: 1 - type: Transform -- uid: 307 - type: Paper - components: - - pos: -0.5790038,-4.0916176 - parent: 1 - type: Transform -- uid: 308 - type: Paper - components: - - pos: -0.6571288,-4.0916176 - parent: 1 - type: Transform -- uid: 309 - type: BoxFolderBlack - components: - - pos: -0.32900378,-4.3884926 - parent: 1 - type: Transform -- uid: 310 - type: BoxFolderBlue - components: - - pos: -0.45400378,-4.4353676 - parent: 1 - type: Transform -- uid: 311 - type: BoxFolderRed - components: - - pos: -0.5790038,-4.4666176 - parent: 1 - type: Transform -- uid: 312 - type: MachineAPE - components: - - pos: -11.5,-13.5 - parent: 1 - type: Transform -- uid: 313 - type: AnomalyScanner - components: - - pos: -17.139996,-14.28252 - parent: 1 - type: Transform -- uid: 314 - type: PowerCellRecharger - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform -- uid: 315 - type: APCBasic - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform -- uid: 316 - type: AirAlarm - components: - - pos: -10.5,-0.5 - parent: 1 - type: Transform - - devices: - - 1749 - - 1741 - - 1747 - - 1751 - - 1750 - - 12320 - - 12321 - - 12353 - - 12352 - - 12416 - - 12413 - - 12332 - - 12331 - - 12414 - - 12415 - - 12384 - - 14970 - type: DeviceList -- uid: 317 - type: AirAlarm - components: - - pos: 3.5,-7.5 - parent: 1 - type: Transform -- uid: 318 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -10.5,0.5 - parent: 1 - type: Transform - - devices: - - 1749 - - 1741 - - 1747 - - 1751 - - 1750 - - 14970 - type: DeviceList -- uid: 319 - type: PosterContrabandLamarr - components: - - pos: -4.5,1.5 - parent: 1 - type: Transform -- uid: 320 - type: SheetPlasma - components: - - pos: -17.481846,-13.543035 - parent: 1 - type: Transform -- uid: 321 - type: MachineAPE - components: - - pos: -11.5,-14.5 - parent: 1 - type: Transform -- uid: 322 - type: Table - components: - - pos: -14.5,-14.5 - parent: 1 - type: Transform -- uid: 323 - type: ClothingMaskGas - components: - - pos: -4.562405,-5.3679457 - parent: 1 - type: Transform -- uid: 324 - type: SignAnomaly2 - components: - - pos: -10.5,-11.5 - parent: 1 - type: Transform -- uid: 325 - type: SignAnomaly - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform -- uid: 326 - type: SheetGlass - components: - - pos: -14.514996,-14.43877 - parent: 1 - type: Transform -- uid: 327 - type: AnomalyScanner - components: - - pos: -16.577496,-14.37627 - parent: 1 - type: Transform -- uid: 328 - type: Table - components: - - pos: -16.5,-14.5 - parent: 1 - type: Transform -- uid: 329 - type: Table - components: - - pos: -15.5,-14.5 - parent: 1 - type: Transform -- uid: 330 - type: Table - components: - - pos: -17.5,-14.5 - parent: 1 - type: Transform -- uid: 331 - type: WaterCooler - components: - - pos: -2.5,-5.5 - parent: 1 - type: Transform -- uid: 332 - type: ClothingMaskGas - components: - - pos: -4.156155,-5.3366957 - parent: 1 - type: Transform -- uid: 333 - type: Paper - components: - - pos: -2.5985045,1.6653852 - parent: 1 - type: Transform -- uid: 334 - type: Paper - components: - - pos: -2.5360045,1.6341352 - parent: 1 - type: Transform -- uid: 335 - type: Paper - components: - - pos: -2.4578795,1.5560102 - parent: 1 - type: Transform -- uid: 336 - type: BoxFolderYellow - components: - - pos: -2.1841965,1.6028852 - parent: 1 - type: Transform -- uid: 337 - type: DisposalUnit - components: - - pos: -18.5,-1.5 - parent: 1 - type: Transform -- uid: 338 - type: ChairOfficeDark - components: - - pos: -10.5,-4.5 - parent: 1 - type: Transform -- uid: 339 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -12.5,-2.5 - parent: 1 - type: Transform -- uid: 340 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 105 - - port: Toggle - uid: 216 - - port: Toggle - uid: 215 - type: SignalTransmitter -- uid: 341 - type: ComputerAnalysisConsole - components: - - rot: 3.141592653589793 rad - pos: 0.5,-11.5 - parent: 1 - type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 347 - type: SignalTransmitter -- uid: 342 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-11.5 - parent: 1 - type: Transform -- uid: 343 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-11.5 - parent: 1 - type: Transform -- uid: 344 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-11.5 - parent: 1 - type: Transform -- uid: 345 - type: ChessBoard - components: - - rot: -1.5707963267948966 rad - pos: -8.494302,-11.401604 - parent: 1 - type: Transform -- uid: 346 - type: RandomArtifactSpawner - components: - - pos: 1.5,-14.5 - parent: 1 - type: Transform -- uid: 347 - type: MachineArtifactAnalyzer - components: - - pos: 1.5,-14.5 - parent: 1 - type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 341 - type: SignalReceiver -- uid: 348 - type: APCBasic - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform -- uid: 349 - type: CrateArtifactContainer - components: - - pos: 5.5,-8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 350 - type: Table - components: - - pos: 5.5,-11.5 - parent: 1 - type: Transform -- uid: 351 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: 3.5,-12.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 42 - type: SignalTransmitter -- uid: 352 - type: Table - components: - - pos: 4.5,-11.5 - parent: 1 - type: Transform -- uid: 353 - type: Table - components: - - pos: 2.5,-11.5 - parent: 1 - type: Transform -- uid: 354 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 355 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 356 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 357 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 358 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 359 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 360 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 361 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 362 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 0.5,-9.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 363 - type: GasPressurePump - components: - - pos: 2.5,-9.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 364 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 365 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 2.5,-14.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 366 - type: GasPort - components: - - pos: 0.5,-8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 367 - type: GasPort - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 368 - type: WaterVaporCanister - components: - - pos: 4.5,-8.5 - parent: 1 - type: Transform -- uid: 369 - type: StorageCanister - components: - - pos: 3.5,-8.5 - parent: 1 - type: Transform -- uid: 370 - type: GasCanisterBrokenBase - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform -- uid: 371 - type: MonkeyCubeBox - components: - - pos: 4.52832,-11.326899 - parent: 1 - type: Transform -- uid: 372 - type: BoxSyringe - components: - - pos: 5.09082,-11.326899 - parent: 1 - type: Transform -- uid: 373 - type: HandheldHealthAnalyzer - components: - - pos: 5.543945,-11.373774 - parent: 1 - type: Transform -- uid: 374 - type: Multitool - components: - - pos: 2.4814448,-11.369194 - parent: 1 - type: Transform -- uid: 375 - type: Crowbar - components: - - pos: 2.5126948,-11.447319 - parent: 1 - type: Transform -- uid: 376 - type: Wrench - components: - - pos: 2.4658198,-11.416069 - parent: 1 - type: Transform -- uid: 377 - type: PoweredSmallLight - components: - - pos: 3.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 378 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 379 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 380 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 381 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 382 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 383 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 384 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 385 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 386 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 387 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 388 - type: CableApcExtension - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 389 - type: CableApcExtension - components: - - pos: -5.5,-0.5 - parent: 1 - type: Transform -- uid: 390 - type: CableApcExtension - components: - - pos: -6.5,-0.5 - parent: 1 - type: Transform -- uid: 391 - type: CableApcExtension - components: - - pos: -7.5,-0.5 - parent: 1 - type: Transform -- uid: 392 - type: CableApcExtension - components: - - pos: -7.5,0.5 - parent: 1 - type: Transform -- uid: 393 - type: CableApcExtension - components: - - pos: -7.5,1.5 - parent: 1 - type: Transform -- uid: 394 - type: CableApcExtension - components: - - pos: -8.5,1.5 - parent: 1 - type: Transform -- uid: 395 - type: CableApcExtension - components: - - pos: -9.5,1.5 - parent: 1 - type: Transform -- uid: 396 - type: CableApcExtension - components: - - pos: -10.5,1.5 - parent: 1 - type: Transform -- uid: 397 - type: CableApcExtension - components: - - pos: -11.5,1.5 - parent: 1 - type: Transform -- uid: 398 - type: CableApcExtension - components: - - pos: -12.5,1.5 - parent: 1 - type: Transform -- uid: 399 - type: CableApcExtension - components: - - pos: -7.5,-1.5 - parent: 1 - type: Transform -- uid: 400 - type: CableApcExtension - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform -- uid: 401 - type: CableApcExtension - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform -- uid: 402 - type: CableApcExtension - components: - - pos: -10.5,-2.5 - parent: 1 - type: Transform -- uid: 403 - type: CableApcExtension - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform -- uid: 404 - type: CableApcExtension - components: - - pos: -12.5,-2.5 - parent: 1 - type: Transform -- uid: 405 - type: CableApcExtension - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform -- uid: 406 - type: CableApcExtension - components: - - pos: -12.5,-3.5 - parent: 1 - type: Transform -- uid: 407 - type: CableApcExtension - components: - - pos: -12.5,-4.5 - parent: 1 - type: Transform -- uid: 408 - type: CableApcExtension - components: - - pos: -12.5,-5.5 - parent: 1 - type: Transform -- uid: 409 - type: CableApcExtension - components: - - pos: -12.5,-6.5 - parent: 1 - type: Transform -- uid: 410 - type: CableApcExtension - components: - - pos: -12.5,-7.5 - parent: 1 - type: Transform -- uid: 411 - type: CableApcExtension - components: - - pos: -12.5,-8.5 - parent: 1 - type: Transform -- uid: 412 - type: CableApcExtension - components: - - pos: -11.5,-8.5 - parent: 1 - type: Transform -- uid: 413 - type: ReinforcedGirder - components: - - pos: -10.5,-8.5 - parent: 1 - type: Transform -- uid: 414 - type: AsteroidRockMining - components: - - pos: -7.5,-7.5 - parent: 1 - type: Transform -- uid: 415 - type: AsteroidRockMining - components: - - pos: -7.5,-8.5 - parent: 1 - type: Transform -- uid: 416 - type: CableApcExtension - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform -- uid: 417 - type: CableApcExtension - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform -- uid: 418 - type: CableApcExtension - components: - - pos: -4.5,-1.5 - parent: 1 - type: Transform -- uid: 419 - type: CableApcExtension - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform -- uid: 420 - type: CableApcExtension - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform -- uid: 421 - type: CableApcExtension - components: - - pos: -4.5,-4.5 - parent: 1 - type: Transform -- uid: 422 - type: CableApcExtension - components: - - pos: -3.5,-1.5 - parent: 1 - type: Transform -- uid: 423 - type: CableApcExtension - components: - - pos: -2.5,-1.5 - parent: 1 - type: Transform -- uid: 424 - type: CableApcExtension - components: - - pos: -1.5,-1.5 - parent: 1 - type: Transform -- uid: 425 - type: CableApcExtension - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform -- uid: 426 - type: CableApcExtension - components: - - pos: 0.5,-1.5 - parent: 1 - type: Transform -- uid: 427 - type: CableApcExtension - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform -- uid: 428 - type: CableApcExtension - components: - - pos: -2.5,-0.5 - parent: 1 - type: Transform -- uid: 429 - type: CableApcExtension - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform -- uid: 430 - type: CableApcExtension - components: - - pos: -2.5,1.5 - parent: 1 - type: Transform -- uid: 431 - type: CableApcExtension - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform -- uid: 432 - type: CableApcExtension - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform -- uid: 433 - type: CableApcExtension - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform -- uid: 434 - type: CableApcExtension - components: - - pos: -1.5,-2.5 - parent: 1 - type: Transform -- uid: 435 - type: CableApcExtension - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform -- uid: 436 - type: CableApcExtension - components: - - pos: -1.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 437 - type: CableApcExtension - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform -- uid: 438 - type: CableApcExtension - components: - - pos: 2.5,-9.5 - parent: 1 - type: Transform -- uid: 439 - type: CableApcExtension - components: - - pos: 3.5,-9.5 - parent: 1 - type: Transform -- uid: 440 - type: CableApcExtension - components: - - pos: 4.5,-9.5 - parent: 1 - type: Transform -- uid: 441 - type: CableApcExtension - components: - - pos: 1.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 442 - type: CableApcExtension - components: - - pos: 1.5,-10.5 - parent: 1 - type: Transform -- uid: 443 - type: CableApcExtension - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 444 - type: CableApcExtension - components: - - pos: 1.5,-12.5 - parent: 1 - type: Transform -- uid: 445 - type: CableApcExtension - components: - - pos: 1.5,-13.5 - parent: 1 - type: Transform -- uid: 446 - type: CableApcExtension - components: - - pos: 1.5,-14.5 - parent: 1 - type: Transform -- uid: 447 - type: CableApcExtension - components: - - pos: 0.5,-10.5 - parent: 1 - type: Transform -- uid: 448 - type: CableApcExtension - components: - - pos: -0.5,-10.5 - parent: 1 - type: Transform -- uid: 449 - type: CableApcExtension - components: - - pos: -1.5,-10.5 - parent: 1 - type: Transform -- uid: 450 - type: CableApcExtension - components: - - pos: -2.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 451 - type: CableApcExtension - components: - - pos: -2.5,-11.5 - parent: 1 - type: Transform -- uid: 452 - type: CableApcExtension - components: - - pos: -3.5,-11.5 - parent: 1 - type: Transform -- uid: 453 - type: CableApcExtension - components: - - pos: -4.5,-11.5 - parent: 1 - type: Transform -- uid: 454 - type: CableApcExtension - components: - - pos: -4.5,-12.5 - parent: 1 - type: Transform -- uid: 455 - type: CableApcExtension - components: - - pos: -5.5,-12.5 - parent: 1 - type: Transform -- uid: 456 - type: CableApcExtension - components: - - pos: -6.5,-12.5 - parent: 1 - type: Transform -- uid: 457 - type: CableApcExtension - components: - - pos: -7.5,-12.5 - parent: 1 - type: Transform -- uid: 458 - type: CableApcExtension - components: - - pos: -8.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 459 - type: CableApcExtension - components: - - pos: -5.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 460 - type: CableApcExtension - components: - - pos: -5.5,-14.5 - parent: 1 - type: Transform -- uid: 461 - type: CableApcExtension - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 462 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 1 - type: Transform -- uid: 463 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 1 - type: Transform -- uid: 464 - type: CableApcExtension - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 465 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 1 - type: Transform -- uid: 466 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 1 - type: Transform -- uid: 467 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 6.5,-3.5 - parent: 1 - type: Transform -- uid: 468 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 6.5,1.5 - parent: 1 - type: Transform -- uid: 469 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 1 - type: Transform -- uid: 470 - type: WallSolidRust - components: - - pos: 6.5,3.5 - parent: 1 - type: Transform -- uid: 471 - type: AsteroidRock - components: - - pos: 11.5,-9.5 - parent: 1 - type: Transform -- uid: 472 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 5.5,2.5 - parent: 1 - type: Transform -- uid: 473 - type: RandomArtifactSpawner - components: - - pos: 10.5,-9.5 - parent: 1 - type: Transform -- uid: 474 - type: AsteroidRock - components: - - pos: 9.5,-7.5 - parent: 1 - type: Transform -- uid: 475 - type: AsteroidRock - components: - - pos: 9.5,-8.5 - parent: 1 - type: Transform -- uid: 476 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 7.5,-3.5 - parent: 1 - type: Transform -- uid: 477 - type: InflatableWall - components: - - pos: 5.5,-1.5 - parent: 1 - type: Transform -- uid: 478 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-3.5 - parent: 1 - type: Transform -- uid: 479 - type: WallSolidRust - components: - - pos: 9.5,-4.5 - parent: 1 - type: Transform -- uid: 480 - type: WallSolidRust - components: - - pos: 13.5,-3.5 - parent: 1 - type: Transform -- uid: 481 - type: WallSolidRust - components: - - pos: 7.5,3.5 - parent: 1 - type: Transform -- uid: 482 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 8.5,3.5 - parent: 1 - type: Transform -- uid: 483 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 9.5,3.5 - parent: 1 - type: Transform -- uid: 484 - type: WallSolidRust - components: - - pos: 9.5,2.5 - parent: 1 - type: Transform -- uid: 485 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 9.5,1.5 - parent: 1 - type: Transform -- uid: 486 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 1 - type: Transform -- uid: 487 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 1 - type: Transform -- uid: 488 - type: Girder - components: - - pos: 9.5,-3.5 - parent: 1 - type: Transform -- uid: 489 - type: WallSolidRust - components: - - pos: 8.5,-0.5 - parent: 1 - type: Transform -- uid: 490 - type: WallSolidRust - components: - - pos: 12.5,-4.5 - parent: 1 - type: Transform -- uid: 491 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-4.5 - parent: 1 - type: Transform -- uid: 492 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 1 - type: Transform -- uid: 493 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-14.5 - parent: 1 - type: Transform -- uid: 494 - type: WallVaultRock - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 1 - type: Transform -- uid: 495 - type: AsteroidRockMining - components: - - pos: 8.5,-10.5 - parent: 1 - type: Transform -- uid: 496 - type: WallSolid - components: - - pos: 10.5,-6.5 - parent: 1 - type: Transform -- uid: 497 - type: CableMV - components: - - pos: 7.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 498 - type: CableMV - components: - - pos: 6.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 499 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: -57.5,47.5 - parent: 1 - type: Transform -- uid: 500 - type: PlasmaDoor - components: - - pos: 8.5,-15.5 - parent: 1 - type: Transform -- uid: 501 - type: AsteroidRockMining - components: - - pos: 9.5,-10.5 - parent: 1 - type: Transform -- uid: 502 - type: WallSolid - components: - - pos: 10.5,-7.5 - parent: 1 - type: Transform -- uid: 503 - type: CableMV - components: - - pos: 5.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 504 - type: CableMV - components: - - pos: 4.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 505 - type: AsteroidRockMining - components: - - pos: 10.5,-10.5 - parent: 1 - type: Transform -- uid: 506 - type: AsteroidRock - components: - - pos: 8.5,-9.5 - parent: 1 - type: Transform -- uid: 507 - type: AsteroidRock - components: - - pos: 7.5,-7.5 - parent: 1 - type: Transform -- uid: 508 - type: AsteroidRock - components: - - pos: 9.5,-9.5 - parent: 1 - type: Transform -- uid: 509 - type: ClothingOuterArmorScaf - components: - - pos: 8.3675785,-8.507205 - parent: 1 - type: Transform -- uid: 510 - type: AsteroidRock - components: - - pos: 8.5,-7.5 - parent: 1 - type: Transform -- uid: 511 - type: AsteroidRock - components: - - pos: 7.5,-8.5 - parent: 1 - type: Transform -- uid: 512 - type: WallSolid - components: - - pos: 15.5,-3.5 - parent: 1 - type: Transform -- uid: 513 - type: WallSolidRust - components: - - pos: 7.5,-0.5 - parent: 1 - type: Transform -- uid: 514 - type: Girder - components: - - pos: 14.5,-3.5 - parent: 1 - type: Transform -- uid: 515 - type: Girder - components: - - pos: 22.5,-6.5 - parent: 1 - type: Transform -- uid: 516 - type: WallReinforced - components: - - pos: 12.5,-6.5 - parent: 1 - type: Transform -- uid: 517 - type: WallReinforced - components: - - pos: 14.5,-12.5 - parent: 1 - type: Transform -- uid: 518 - type: WallReinforced - components: - - pos: 14.5,-6.5 - parent: 1 - type: Transform -- uid: 519 - type: WallReinforced - components: - - pos: 13.5,-12.5 - parent: 1 - type: Transform -- uid: 520 - type: WallReinforced - components: - - pos: 16.5,-12.5 - parent: 1 - type: Transform -- uid: 521 - type: WallReinforced - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform -- uid: 522 - type: WallSolidRust - components: - - pos: 12.5,-8.5 - parent: 1 - type: Transform -- uid: 523 - type: WallReinforced - components: - - pos: 12.5,-11.5 - parent: 1 - type: Transform -- uid: 524 - type: WallVaultRock - components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform -- uid: 525 - type: WallSolid - components: - - pos: 17.5,-7.5 - parent: 1 - type: Transform -- uid: 526 - type: WallReinforced - components: - - pos: 12.5,-10.5 - parent: 1 - type: Transform -- uid: 527 - type: WallReinforced - components: - - pos: 15.5,-12.5 - parent: 1 - type: Transform -- uid: 528 - type: WallSolid - components: - - pos: 13.5,-6.5 - parent: 1 - type: Transform -- uid: 529 - type: WallSolidRust - components: - - pos: 16.5,-6.5 - parent: 1 - type: Transform -- uid: 530 - type: WallReinforced - components: - - pos: 17.5,-6.5 - parent: 1 - type: Transform -- uid: 531 - type: WallSolid - components: - - pos: 12.5,-7.5 - parent: 1 - type: Transform -- uid: 532 - type: Grille - components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform -- uid: 533 - type: CableMV - components: - - pos: 3.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 534 - type: CableMV - components: - - pos: 2.5,-5.5 - parent: 1 - type: Transform -- uid: 535 - type: CableMV - components: - - pos: 1.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 536 - type: WallReinforced - components: - - pos: 17.5,-12.5 - parent: 1 - type: Transform -- uid: 537 - type: CableMV - components: - - pos: 0.5,-5.5 - parent: 1 - type: Transform -- uid: 538 - type: CableMV - components: - - pos: -0.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 539 - type: CableMV - components: - - pos: -1.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 540 - type: CableMV - components: - - pos: -2.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 541 - type: CableMV - components: - - pos: -3.5,-5.5 - parent: 1 - type: Transform -- uid: 542 - type: CableMV - components: - - pos: -4.5,-5.5 - parent: 1 - type: Transform -- uid: 543 - type: CableMV - components: - - pos: -4.5,-4.5 - parent: 1 - type: Transform -- uid: 544 - type: CableMV - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform -- uid: 545 - type: CableMV - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform -- uid: 546 - type: CableMV - components: - - pos: -4.5,-1.5 - parent: 1 - type: Transform -- uid: 547 - type: CableMV - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 548 - type: CableMV - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform -- uid: 549 - type: CableMV - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform -- uid: 550 - type: CableMV - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 551 - type: CableMV - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform -- uid: 552 - type: CableMV - components: - - pos: -1.5,-10.5 - parent: 1 - type: Transform -- uid: 553 - type: CableMV - components: - - pos: -0.5,-10.5 - parent: 1 - type: Transform -- uid: 554 - type: CableMV - components: - - pos: 0.5,-10.5 - parent: 1 - type: Transform -- uid: 555 - type: CableMV - components: - - pos: 1.5,-10.5 - parent: 1 - type: Transform -- uid: 556 - type: CableMV - components: - - pos: 2.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 557 - type: CableMV - components: - - pos: 2.5,-9.5 - parent: 1 - type: Transform -- uid: 558 - type: CableMV - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform -- uid: 559 - type: CableMV - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 560 - type: CableHV - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform -- uid: 561 - type: CableHV - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform -- uid: 562 - type: CableHV - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform -- uid: 563 - type: CableHV - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 564 - type: CableHV - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 565 - type: CableHV - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 566 - type: CableHV - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 567 - type: CableHV - components: - - pos: 4.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 568 - type: CableHV - components: - - pos: 4.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 569 - type: CableHV - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 570 - type: CableHV - components: - - pos: 4.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 571 - type: CableHV - components: - - pos: 4.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 572 - type: CableHV - components: - - pos: 5.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 573 - type: CableHV - components: - - pos: 6.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 574 - type: CableHV - components: - - pos: 7.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 575 - type: WallSolid - components: - - pos: 10.5,-8.5 - parent: 1 - type: Transform -- uid: 576 - type: WallSolidRust - components: - - pos: 7.5,-6.5 - parent: 1 - type: Transform -- uid: 577 - type: WallSolid - components: - - pos: 19.5,-9.5 - parent: 1 - type: Transform -- uid: 578 - type: WallReinforced - components: - - pos: 20.5,-9.5 - parent: 1 - type: Transform -- uid: 579 - type: WallReinforced - components: - - pos: 18.5,-12.5 - parent: 1 - type: Transform -- uid: 580 - type: WallReinforced - components: - - pos: 19.5,-12.5 - parent: 1 - type: Transform -- uid: 581 - type: WallReinforced - components: - - pos: 20.5,-12.5 - parent: 1 - type: Transform -- uid: 582 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-11.5 - parent: 1 - type: Transform -- uid: 583 - type: WallReinforced - components: - - pos: 20.5,-10.5 - parent: 1 - type: Transform -- uid: 584 - type: WallReinforced - components: - - pos: 18.5,-9.5 - parent: 1 - type: Transform -- uid: 585 - type: Girder - components: - - pos: 6.5,0.5 - parent: 1 - type: Transform -- uid: 586 - type: FaxMachineBase - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform - - name: RD Office - type: FaxMachine -- uid: 587 - type: MachineAnomalyVessel - components: - - pos: -11.5,-10.5 - parent: 1 - type: Transform -- uid: 588 - type: CableApcExtension - components: - - pos: 18.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 589 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-11.5 - parent: 1 - type: Transform -- uid: 590 - type: BlastDoor - components: - - pos: 15.5,-6.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 615 - type: SignalReceiver -- uid: 591 - type: ComputerBroken - components: - - pos: 13.5,-7.5 - parent: 1 - type: Transform -- uid: 592 - type: AsteroidRock - components: - - pos: 11.5,-10.5 - parent: 1 - type: Transform -- uid: 593 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: -54.5,47.5 - parent: 1 - type: Transform -- uid: 594 - type: CableHV - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 595 - type: CableHV - components: - - pos: 9.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 596 - type: CableHV - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 597 - type: CableHV - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform -- uid: 598 - type: CableHV - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 599 - type: CableHV - components: - - pos: 11.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 600 - type: CableMV - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 601 - type: CableMV - components: - - pos: 9.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 602 - type: CableMV - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 603 - type: CableMV - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform -- uid: 604 - type: CableMV - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 605 - type: CableMV - components: - - pos: 11.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 606 - type: SubstationBasic - components: - - pos: 11.5,-7.5 - parent: 1 - type: Transform -- uid: 607 - type: AirlockEngineeringLocked - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform -- uid: 608 - type: WallSolid - components: - - pos: 18.5,-6.5 - parent: 1 - type: Transform -- uid: 609 - type: WallSolid - components: - - pos: 20.5,-6.5 - parent: 1 - type: Transform -- uid: 610 - type: WallSolid - components: - - pos: 21.5,-6.5 - parent: 1 - type: Transform -- uid: 611 - type: WallSolid - components: - - pos: 21.5,-7.5 - parent: 1 - type: Transform -- uid: 612 - type: WallSolid - components: - - pos: 21.5,-8.5 - parent: 1 - type: Transform -- uid: 613 - type: WallReinforced - components: - - pos: 21.5,-9.5 - parent: 1 - type: Transform -- uid: 614 - type: AirlockScienceLocked - components: - - pos: 19.5,-6.5 - parent: 1 - type: Transform -- uid: 615 - type: SignalButton - components: - - pos: 17.5,-7.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 590 - type: SignalTransmitter -- uid: 616 - type: Bed - components: - - pos: 18.5,-8.5 - parent: 1 - type: Transform -- uid: 617 - type: Bed - components: - - pos: 18.5,-7.5 - parent: 1 - type: Transform -- uid: 618 - type: BoxMRE - components: - - pos: 20.453417,-7.5882645 - parent: 1 - type: Transform -- uid: 619 - type: BoxMRE - components: - - pos: 20.031542,-7.9632645 - parent: 1 - type: Transform -- uid: 620 - type: BoxMRE - components: - - pos: 20.562792,-8.338264 - parent: 1 - type: Transform -- uid: 621 - type: lantern - components: - - pos: 19.562792,-8.525764 - parent: 1 - type: Transform - - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 15037 - type: ContainerContainer -- uid: 622 - type: BedsheetGreen - components: - - pos: 18.5,-7.5 - parent: 1 - type: Transform -- uid: 623 - type: BedsheetGreen - components: - - pos: 18.5,-8.5 - parent: 1 - type: Transform -- uid: 624 - type: BedsheetSpawner - components: - - pos: 6.5,-1.5 - parent: 1 - type: Transform -- uid: 625 - type: Bed - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform -- uid: 626 - type: Bed - components: - - pos: 6.5,-1.5 - parent: 1 - type: Transform -- uid: 627 - type: BedsheetSpawner - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform -- uid: 628 - type: TableWood - components: - - pos: 6.5,-2.5 - parent: 1 - type: Transform -- uid: 629 - type: TableWood - components: - - pos: 7.5,2.5 - parent: 1 - type: Transform -- uid: 630 - type: ClosetBase - components: - - pos: 8.5,-1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 631 - type: ClosetBase - components: - - pos: 7.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 632 - type: WallSolid - components: - - pos: 12.5,0.5 - parent: 1 - type: Transform -- uid: 633 - type: WallSolidRust - components: - - pos: 18.5,1.5 - parent: 1 - type: Transform -- uid: 634 - type: WallSolid - components: - - pos: 12.5,2.5 - parent: 1 - type: Transform -- uid: 635 - type: WallSolid - components: - - pos: 12.5,3.5 - parent: 1 - type: Transform -- uid: 636 - type: WallSolid - components: - - pos: 14.5,4.5 - parent: 1 - type: Transform -- uid: 637 - type: WallSolidRust - components: - - pos: 16.5,4.5 - parent: 1 - type: Transform -- uid: 638 - type: WallSolid - components: - - pos: 12.5,4.5 - parent: 1 - type: Transform -- uid: 639 - type: WallSolid - components: - - pos: 15.5,4.5 - parent: 1 - type: Transform -- uid: 640 - type: WallSolidRust - components: - - pos: 13.5,4.5 - parent: 1 - type: Transform -- uid: 641 - type: WallSolid - components: - - pos: 18.5,3.5 - parent: 1 - type: Transform -- uid: 642 - type: WallSolid - components: - - pos: 18.5,2.5 - parent: 1 - type: Transform -- uid: 643 - type: WallSolid - components: - - pos: 22.5,-2.5 - parent: 1 - type: Transform -- uid: 644 - type: WallSolid - components: - - pos: 18.5,0.5 - parent: 1 - type: Transform -- uid: 645 - type: WallSolidRust - components: - - pos: 16.5,-3.5 - parent: 1 - type: Transform -- uid: 646 - type: WallSolid - components: - - pos: 19.5,3.5 - parent: 1 - type: Transform -- uid: 647 - type: WallSolid - components: - - pos: 18.5,-2.5 - parent: 1 - type: Transform -- uid: 648 - type: Girder - components: - - pos: 18.5,-3.5 - parent: 1 - type: Transform -- uid: 649 - type: WallSolid - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform -- uid: 650 - type: WallSolidRust - components: - - pos: 20.5,3.5 - parent: 1 - type: Transform -- uid: 651 - type: WallSolid - components: - - pos: 21.5,3.5 - parent: 1 - type: Transform -- uid: 652 - type: WallSolidRust - components: - - pos: 21.5,2.5 - parent: 1 - type: Transform -- uid: 653 - type: WallSolidRust - components: - - pos: 21.5,1.5 - parent: 1 - type: Transform -- uid: 654 - type: WallSolid - components: - - pos: 21.5,0.5 - parent: 1 - type: Transform -- uid: 655 - type: Girder - components: - - pos: 22.5,0.5 - parent: 1 - type: Transform -- uid: 656 - type: WallSolid - components: - - pos: 22.5,-0.5 - parent: 1 - type: Transform -- uid: 657 - type: WallSolidRust - components: - - pos: 12.5,1.5 - parent: 1 - type: Transform -- uid: 658 - type: WallSolidRust - components: - - pos: 21.5,-3.5 - parent: 1 - type: Transform -- uid: 659 - type: WallSolid - components: - - pos: 20.5,-3.5 - parent: 1 - type: Transform -- uid: 660 - type: WallSolid - components: - - pos: 26.5,-6.5 - parent: 1 - type: Transform -- uid: 661 - type: WallSolidRust - components: - - pos: 22.5,-1.5 - parent: 1 - type: Transform -- uid: 662 - type: WallSolid - components: - - pos: 22.5,-3.5 - parent: 1 - type: Transform -- uid: 663 - type: WallSolidRust - components: - - pos: 18.5,-0.5 - parent: 1 - type: Transform -- uid: 664 - type: WallSolid - components: - - pos: 23.5,-6.5 - parent: 1 - type: Transform -- uid: 665 - type: WallReinforced - components: - - pos: 27.5,-9.5 - parent: 1 - type: Transform -- uid: 666 - type: WallSolid - components: - - pos: 26.5,-7.5 - parent: 1 - type: Transform -- uid: 667 - type: WallReinforced - components: - - pos: 30.5,-6.5 - parent: 1 - type: Transform -- uid: 668 - type: WallReinforced - components: - - pos: 22.5,-9.5 - parent: 1 - type: Transform -- uid: 669 - type: WallReinforced - components: - - pos: 23.5,-9.5 - parent: 1 - type: Transform -- uid: 670 - type: WallReinforced - components: - - pos: 24.5,-9.5 - parent: 1 - type: Transform -- uid: 671 - type: WallReinforced - components: - - pos: 25.5,-9.5 - parent: 1 - type: Transform -- uid: 672 - type: WallReinforced - components: - - pos: 26.5,-9.5 - parent: 1 - type: Transform -- uid: 673 - type: WallSolidRust - components: - - pos: 25.5,-6.5 - parent: 1 - type: Transform -- uid: 674 - type: WallReinforced - components: - - pos: 28.5,4.5 - parent: 1 - type: Transform -- uid: 675 - type: WallSolidRust - components: - - pos: 24.5,2.5 - parent: 1 - type: Transform -- uid: 676 - type: WallReinforced - components: - - pos: 27.5,0.5 - parent: 1 - type: Transform -- uid: 677 - type: WallSolid - components: - - pos: 24.5,0.5 - parent: 1 - type: Transform -- uid: 678 - type: WallReinforced - components: - - pos: 26.5,0.5 - parent: 1 - type: Transform -- uid: 679 - type: WallSolidRust - components: - - pos: 25.5,-0.5 - parent: 1 - type: Transform -- uid: 680 - type: WallSolid - components: - - pos: 25.5,-1.5 - parent: 1 - type: Transform -- uid: 681 - type: InflatableWall - components: - - pos: 25.5,-2.5 - parent: 1 - type: Transform -- uid: 682 - type: WallSolid - components: - - pos: 25.5,-3.5 - parent: 1 - type: Transform -- uid: 683 - type: WallSolidRust - components: - - pos: 27.5,-3.5 - parent: 1 - type: Transform -- uid: 684 - type: WallSolidRust - components: - - pos: 29.5,-3.5 - parent: 1 - type: Transform -- uid: 685 - type: WallSolid - components: - - pos: 28.5,-3.5 - parent: 1 - type: Transform -- uid: 686 - type: WallReinforced - components: - - pos: 30.5,-3.5 - parent: 1 - type: Transform -- uid: 687 - type: WallSolidRust - components: - - pos: 26.5,-3.5 - parent: 1 - type: Transform -- uid: 688 - type: WallSolid - components: - - pos: 27.5,-6.5 - parent: 1 - type: Transform -- uid: 689 - type: WallSolidRust - components: - - pos: 29.5,-6.5 - parent: 1 - type: Transform -- uid: 690 - type: WallSolidRust - components: - - pos: 26.5,-8.5 - parent: 1 - type: Transform -- uid: 691 - type: InflatableWall - components: - - pos: 21.5,-4.5 - parent: 1 - type: Transform -- uid: 692 - type: InflatableWall - components: - - pos: 21.5,-5.5 - parent: 1 - type: Transform -- uid: 693 - type: InflatableWall - components: - - pos: 23.5,0.5 - parent: 1 - type: Transform -- uid: 694 - type: WallReinforced - components: - - pos: 24.5,1.5 - parent: 1 - type: Transform -- uid: 695 - type: WallSolid - components: - - pos: 25.5,0.5 - parent: 1 - type: Transform -- uid: 696 - type: WallSolidRust - components: - - pos: 28.5,0.5 - parent: 1 - type: Transform -- uid: 697 - type: WallSolid - components: - - pos: 29.5,0.5 - parent: 1 - type: Transform -- uid: 698 - type: WallReinforced - components: - - pos: 30.5,-0.5 - parent: 1 - type: Transform -- uid: 699 - type: WallSolidRust - components: - - pos: 17.5,4.5 - parent: 1 - type: Transform -- uid: 700 - type: WallSolid - components: - - pos: 18.5,4.5 - parent: 1 - type: Transform -- uid: 701 - type: WallSolid - components: - - pos: 23.5,3.5 - parent: 1 - type: Transform -- uid: 702 - type: WallSolid - components: - - pos: 24.5,4.5 - parent: 1 - type: Transform -- uid: 703 - type: WallReinforced - components: - - pos: 25.5,4.5 - parent: 1 - type: Transform -- uid: 704 - type: WallReinforced - components: - - pos: 27.5,4.5 - parent: 1 - type: Transform -- uid: 705 - type: WallReinforced - components: - - pos: 24.5,3.5 - parent: 1 - type: Transform -- uid: 706 - type: WallSolid - components: - - pos: 29.5,4.5 - parent: 1 - type: Transform -- uid: 707 - type: WallReinforced - components: - - pos: 30.5,4.5 - parent: 1 - type: Transform -- uid: 708 - type: ReinforcedWindow - components: - - pos: 30.5,3.5 - parent: 1 - type: Transform -- uid: 709 - type: ReinforcedWindow - components: - - pos: 30.5,2.5 - parent: 1 - type: Transform -- uid: 710 - type: ReinforcedWindow - components: - - pos: 30.5,1.5 - parent: 1 - type: Transform -- uid: 711 - type: Grille - components: - - pos: 30.5,1.5 - parent: 1 - type: Transform -- uid: 712 - type: Grille - components: - - pos: 30.5,2.5 - parent: 1 - type: Transform -- uid: 713 - type: Grille - components: - - pos: 30.5,3.5 - parent: 1 - type: Transform -- uid: 714 - type: Girder - components: - - pos: 30.5,-1.5 - parent: 1 - type: Transform -- uid: 715 - type: Girder - components: - - pos: 30.5,-2.5 - parent: 1 - type: Transform -- uid: 716 - type: WallReinforced - components: - - pos: 30.5,0.5 - parent: 1 - type: Transform -- uid: 717 - type: ClothingHeadHatCone - components: - - pos: 24.462656,-1.4106827 - parent: 1 - type: Transform -- uid: 718 - type: ClothingHeadHatCone - components: - - pos: 24.447031,-2.4575577 - parent: 1 - type: Transform -- uid: 719 - type: ClothingHeadHatCone - components: - - pos: 24.462656,-3.4575577 - parent: 1 - type: Transform -- uid: 720 - type: Barricade - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform -- uid: 721 - type: Catwalk - components: - - pos: 19.5,-19.5 - parent: 1 - type: Transform -- uid: 722 - type: WallReinforced - components: - - pos: 30.5,-4.5 - parent: 1 - type: Transform -- uid: 723 - type: WallReinforced - components: - - pos: 29.5,-9.5 - parent: 1 - type: Transform -- uid: 724 - type: WallReinforced - components: - - pos: 30.5,-9.5 - parent: 1 - type: Transform -- uid: 725 - type: WallReinforced - components: - - pos: 30.5,-8.5 - parent: 1 - type: Transform -- uid: 726 - type: WallReinforced - components: - - pos: 30.5,-7.5 - parent: 1 - type: Transform -- uid: 727 - type: WallReinforced - components: - - pos: 30.5,-5.5 - parent: 1 - type: Transform -- uid: 728 - type: CableHV - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 729 - type: CableHV - components: - - pos: 13.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 730 - type: CableHV - components: - - pos: 14.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 731 - type: CableHV - components: - - pos: 15.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 732 - type: CableHV - components: - - pos: 16.5,-5.5 - parent: 1 - type: Transform -- uid: 733 - type: CableHV - components: - - pos: 17.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 734 - type: CableHV - components: - - pos: 18.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 735 - type: CableHV - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 736 - type: CableHV - components: - - pos: 20.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 737 - type: CableHV - components: - - pos: 21.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 738 - type: CableHV - components: - - pos: 22.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 739 - type: CableHV - components: - - pos: 23.5,-5.5 - parent: 1 - type: Transform -- uid: 740 - type: CableHV - components: - - pos: 24.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 741 - type: CableHV - components: - - pos: 25.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 742 - type: CableHV - components: - - pos: 26.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 743 - type: CableHV - components: - - pos: 27.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 744 - type: CableHV - components: - - pos: 28.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 745 - type: CableHV - components: - - pos: 28.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 746 - type: CableHV - components: - - pos: 18.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 747 - type: CableHV - components: - - pos: 28.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 748 - type: AirlockExternalLocked - components: - - pos: 28.5,-9.5 - parent: 1 - type: Transform -- uid: 749 - type: SMESBasic - components: - - pos: 27.5,-7.5 - parent: 1 - type: Transform -- uid: 750 - type: CableHV - components: - - pos: 19.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 751 - type: CableHV - components: - - pos: 20.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 752 - type: CableHV - components: - - pos: 21.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 753 - type: CableHV - components: - - pos: 22.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 754 - type: CableHV - components: - - pos: 23.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 755 - type: CableHV - components: - - pos: 24.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 756 - type: CableHV - components: - - pos: 25.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 757 - type: CableHV - components: - - pos: 26.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 758 - type: CableHV - components: - - pos: 27.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 759 - type: CableHV - components: - - pos: 18.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 760 - type: CableHV - components: - - pos: 19.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 761 - type: CableHV - components: - - pos: 20.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 762 - type: CableHV - components: - - pos: 21.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 763 - type: CableHV - components: - - pos: 22.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 764 - type: CableHV - components: - - pos: 23.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 765 - type: CableHV - components: - - pos: 24.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 766 - type: CableHV - components: - - pos: 25.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 767 - type: CableHV - components: - - pos: 26.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 768 - type: CableHV - components: - - pos: 27.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 769 - type: CableHV - components: - - pos: 19.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 770 - type: CableHV - components: - - pos: 20.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 771 - type: CableHV - components: - - pos: 21.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 772 - type: CableHV - components: - - pos: 22.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 773 - type: CableHV - components: - - pos: 23.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 774 - type: CableHV - components: - - pos: 24.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 775 - type: CableHV - components: - - pos: 25.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 776 - type: CableHV - components: - - pos: 26.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 777 - type: CableHV - components: - - pos: 27.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 778 - type: CableHV - components: - - pos: 19.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 779 - type: CableHV - components: - - pos: 20.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 780 - type: CableHV - components: - - pos: 21.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 781 - type: CableHV - components: - - pos: 22.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 782 - type: CableHV - components: - - pos: 23.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 783 - type: CableHV - components: - - pos: 24.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 784 - type: CableHV - components: - - pos: 25.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 785 - type: CableHV - components: - - pos: 26.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 786 - type: CableHV - components: - - pos: 27.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 787 - type: CableHV - components: - - pos: 20.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 788 - type: CableHV - components: - - pos: 21.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 789 - type: CableHV - components: - - pos: 22.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 790 - type: CableHV - components: - - pos: 23.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 791 - type: CableHV - components: - - pos: 24.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 792 - type: CableHV - components: - - pos: 25.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 793 - type: CableHV - components: - - pos: 26.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 794 - type: CableHV - components: - - pos: 27.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 795 - type: CableHV - components: - - pos: 20.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 796 - type: CableHV - components: - - pos: 21.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 797 - type: CableHV - components: - - pos: 22.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 798 - type: CableHV - components: - - pos: 23.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 799 - type: CableHV - components: - - pos: 24.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 800 - type: CableHV - components: - - pos: 25.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 801 - type: CableHV - components: - - pos: 26.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 802 - type: CableHV - components: - - pos: 27.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 803 - type: SolarPanel - components: - - pos: 18.5,-14.5 - parent: 1 - type: Transform -- uid: 804 - type: SolarPanel - components: - - pos: 19.5,-14.5 - parent: 1 - type: Transform -- uid: 805 - type: SolarPanel - components: - - pos: 20.5,-14.5 - parent: 1 - type: Transform -- uid: 806 - type: SolarPanel - components: - - pos: 21.5,-14.5 - parent: 1 - type: Transform -- uid: 807 - type: SolarPanel - components: - - pos: 22.5,-14.5 - parent: 1 - type: Transform -- uid: 808 - type: SolarPanel - components: - - pos: 23.5,-14.5 - parent: 1 - type: Transform -- uid: 809 - type: SolarPanel - components: - - pos: 24.5,-14.5 - parent: 1 - type: Transform -- uid: 810 - type: SolarPanel - components: - - pos: 25.5,-14.5 - parent: 1 - type: Transform -- uid: 811 - type: SolarPanel - components: - - pos: 26.5,-14.5 - parent: 1 - type: Transform -- uid: 812 - type: SolarPanel - components: - - pos: 27.5,-14.5 - parent: 1 - type: Transform -- uid: 813 - type: SolarPanel - components: - - pos: 18.5,-16.5 - parent: 1 - type: Transform -- uid: 814 - type: SolarPanel - components: - - pos: 19.5,-16.5 - parent: 1 - type: Transform -- uid: 815 - type: SolarPanel - components: - - pos: 20.5,-16.5 - parent: 1 - type: Transform -- uid: 816 - type: SolarPanel - components: - - pos: 21.5,-16.5 - parent: 1 - type: Transform -- uid: 817 - type: SolarPanel - components: - - pos: 22.5,-16.5 - parent: 1 - type: Transform -- uid: 818 - type: SolarPanel - components: - - pos: 23.5,-16.5 - parent: 1 - type: Transform -- uid: 819 - type: SolarPanel - components: - - pos: 24.5,-16.5 - parent: 1 - type: Transform -- uid: 820 - type: SolarPanel - components: - - pos: 25.5,-16.5 - parent: 1 - type: Transform -- uid: 821 - type: SolarPanel - components: - - pos: 26.5,-16.5 - parent: 1 - type: Transform -- uid: 822 - type: SolarPanel - components: - - pos: 27.5,-16.5 - parent: 1 - type: Transform -- uid: 823 - type: SolarPanel - components: - - pos: 19.5,-18.5 - parent: 1 - type: Transform -- uid: 824 - type: SolarPanel - components: - - pos: 20.5,-18.5 - parent: 1 - type: Transform -- uid: 825 - type: SolarPanel - components: - - pos: 21.5,-18.5 - parent: 1 - type: Transform -- uid: 826 - type: SolarPanel - components: - - pos: 22.5,-18.5 - parent: 1 - type: Transform -- uid: 827 - type: SolarPanel - components: - - pos: 23.5,-18.5 - parent: 1 - type: Transform -- uid: 828 - type: SolarPanel - components: - - pos: 24.5,-18.5 - parent: 1 - type: Transform -- uid: 829 - type: SolarPanel - components: - - pos: 25.5,-18.5 - parent: 1 - type: Transform -- uid: 830 - type: SolarPanel - components: - - pos: 26.5,-18.5 - parent: 1 - type: Transform -- uid: 831 - type: SolarPanel - components: - - pos: 27.5,-18.5 - parent: 1 - type: Transform -- uid: 832 - type: SolarPanel - components: - - pos: 19.5,-20.5 - parent: 1 - type: Transform -- uid: 833 - type: SolarPanel - components: - - pos: 20.5,-20.5 - parent: 1 - type: Transform -- uid: 834 - type: SolarPanel - components: - - pos: 21.5,-20.5 - parent: 1 - type: Transform -- uid: 835 - type: SolarPanel - components: - - pos: 22.5,-20.5 - parent: 1 - type: Transform -- uid: 836 - type: SolarPanel - components: - - pos: 23.5,-20.5 - parent: 1 - type: Transform -- uid: 837 - type: SolarPanel - components: - - pos: 24.5,-20.5 - parent: 1 - type: Transform -- uid: 838 - type: SolarPanel - components: - - pos: 25.5,-20.5 - parent: 1 - type: Transform -- uid: 839 - type: SolarPanel - components: - - pos: 26.5,-20.5 - parent: 1 - type: Transform -- uid: 840 - type: SolarPanel - components: - - pos: 27.5,-20.5 - parent: 1 - type: Transform -- uid: 841 - type: SolarPanel - components: - - pos: 20.5,-22.5 - parent: 1 - type: Transform -- uid: 842 - type: SolarPanel - components: - - pos: 21.5,-22.5 - parent: 1 - type: Transform -- uid: 843 - type: SolarPanel - components: - - pos: 22.5,-22.5 - parent: 1 - type: Transform -- uid: 844 - type: SolarPanel - components: - - pos: 23.5,-22.5 - parent: 1 - type: Transform -- uid: 845 - type: SolarPanel - components: - - pos: 24.5,-22.5 - parent: 1 - type: Transform -- uid: 846 - type: SolarPanel - components: - - pos: 25.5,-22.5 - parent: 1 - type: Transform -- uid: 847 - type: SolarPanel - components: - - pos: 26.5,-22.5 - parent: 1 - type: Transform -- uid: 848 - type: SolarPanel - components: - - pos: 27.5,-22.5 - parent: 1 - type: Transform -- uid: 849 - type: SolarPanel - components: - - pos: 20.5,-24.5 - parent: 1 - type: Transform -- uid: 850 - type: SolarPanel - components: - - pos: 21.5,-24.5 - parent: 1 - type: Transform -- uid: 851 - type: SolarPanel - components: - - pos: 22.5,-24.5 - parent: 1 - type: Transform -- uid: 852 - type: SolarPanel - components: - - pos: 23.5,-24.5 - parent: 1 - type: Transform -- uid: 853 - type: SolarPanel - components: - - pos: 24.5,-24.5 - parent: 1 - type: Transform -- uid: 854 - type: SolarPanel - components: - - pos: 25.5,-24.5 - parent: 1 - type: Transform -- uid: 855 - type: SolarPanel - components: - - pos: 26.5,-24.5 - parent: 1 - type: Transform -- uid: 856 - type: SolarPanel - components: - - pos: 27.5,-24.5 - parent: 1 - type: Transform -- uid: 857 - type: CableHV - components: - - pos: 28.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 858 - type: CableHV - components: - - pos: 28.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 859 - type: CableHV - components: - - pos: 28.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 860 - type: SolarTracker - components: - - pos: 28.5,-27.5 - parent: 1 - type: Transform -- uid: 861 - type: Catwalk - components: - - pos: 18.5,-15.5 - parent: 1 - type: Transform -- uid: 862 - type: Catwalk - components: - - pos: 19.5,-15.5 - parent: 1 - type: Transform -- uid: 863 - type: Catwalk - components: - - pos: 20.5,-15.5 - parent: 1 - type: Transform -- uid: 864 - type: Catwalk - components: - - pos: 21.5,-15.5 - parent: 1 - type: Transform -- uid: 865 - type: Catwalk - components: - - pos: 22.5,-15.5 - parent: 1 - type: Transform -- uid: 866 - type: Catwalk - components: - - pos: 23.5,-15.5 - parent: 1 - type: Transform -- uid: 867 - type: Catwalk - components: - - pos: 24.5,-15.5 - parent: 1 - type: Transform -- uid: 868 - type: Catwalk - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform -- uid: 869 - type: Catwalk - components: - - pos: 26.5,-15.5 - parent: 1 - type: Transform -- uid: 870 - type: Catwalk - components: - - pos: 27.5,-15.5 - parent: 1 - type: Transform -- uid: 871 - type: Catwalk - components: - - pos: 28.5,-15.5 - parent: 1 - type: Transform -- uid: 872 - type: Catwalk - components: - - pos: 20.5,-19.5 - parent: 1 - type: Transform -- uid: 873 - type: Catwalk - components: - - pos: 21.5,-19.5 - parent: 1 - type: Transform -- uid: 874 - type: Catwalk - components: - - pos: 22.5,-19.5 - parent: 1 - type: Transform -- uid: 875 - type: Catwalk - components: - - pos: 23.5,-19.5 - parent: 1 - type: Transform -- uid: 876 - type: Catwalk - components: - - pos: 24.5,-19.5 - parent: 1 - type: Transform -- uid: 877 - type: Catwalk - components: - - pos: 25.5,-19.5 - parent: 1 - type: Transform -- uid: 878 - type: Catwalk - components: - - pos: 26.5,-19.5 - parent: 1 - type: Transform -- uid: 879 - type: Catwalk - components: - - pos: 27.5,-19.5 - parent: 1 - type: Transform -- uid: 880 - type: Catwalk - components: - - pos: 28.5,-19.5 - parent: 1 - type: Transform -- uid: 881 - type: WallSolid - components: - - pos: 15.5,14.5 - parent: 1 - type: Transform -- uid: 882 - type: Catwalk - components: - - pos: 20.5,-23.5 - parent: 1 - type: Transform -- uid: 883 - type: Catwalk - components: - - pos: 21.5,-23.5 - parent: 1 - type: Transform -- uid: 884 - type: Catwalk - components: - - pos: 22.5,-23.5 - parent: 1 - type: Transform -- uid: 885 - type: Catwalk - components: - - pos: 23.5,-23.5 - parent: 1 - type: Transform -- uid: 886 - type: Catwalk - components: - - pos: 24.5,-23.5 - parent: 1 - type: Transform -- uid: 887 - type: Catwalk - components: - - pos: 25.5,-23.5 - parent: 1 - type: Transform -- uid: 888 - type: Catwalk - components: - - pos: 26.5,-23.5 - parent: 1 - type: Transform -- uid: 889 - type: Catwalk - components: - - pos: 27.5,-23.5 - parent: 1 - type: Transform -- uid: 890 - type: Catwalk - components: - - pos: 28.5,-23.5 - parent: 1 - type: Transform -- uid: 891 - type: Catwalk - components: - - pos: 28.5,-24.5 - parent: 1 - type: Transform -- uid: 892 - type: Catwalk - components: - - pos: 28.5,-22.5 - parent: 1 - type: Transform -- uid: 893 - type: Catwalk - components: - - pos: 28.5,-21.5 - parent: 1 - type: Transform -- uid: 894 - type: Catwalk - components: - - pos: 28.5,-20.5 - parent: 1 - type: Transform -- uid: 895 - type: Catwalk - components: - - pos: 28.5,-18.5 - parent: 1 - type: Transform -- uid: 896 - type: Catwalk - components: - - pos: 28.5,-17.5 - parent: 1 - type: Transform -- uid: 897 - type: Catwalk - components: - - pos: 28.5,-16.5 - parent: 1 - type: Transform -- uid: 898 - type: Catwalk - components: - - pos: 28.5,-14.5 - parent: 1 - type: Transform -- uid: 899 - type: Catwalk - components: - - pos: 28.5,-13.5 - parent: 1 - type: Transform -- uid: 900 - type: Catwalk - components: - - pos: 28.5,-12.5 - parent: 1 - type: Transform -- uid: 901 - type: Catwalk - components: - - pos: 28.5,-11.5 - parent: 1 - type: Transform -- uid: 902 - type: Catwalk - components: - - pos: 28.5,-10.5 - parent: 1 - type: Transform -- uid: 903 - type: CableHV - components: - - pos: 27.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 904 - type: CableHV - components: - - pos: 27.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 905 - type: CableHV - components: - - pos: 27.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 906 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 27.5,-8.5 - parent: 1 - type: Transform -- uid: 907 - type: ComputerSolarControl - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 1 - type: Transform -- uid: 908 - type: ClosetEmergencyFilledRandom - components: - - pos: 29.5,-7.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 909 - type: AirlockExternalLocked - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-6.5 - parent: 1 - type: Transform -- uid: 910 - type: TableWood - components: - - pos: 27.5,-1.5 - parent: 1 - type: Transform -- uid: 911 - type: TableWood - components: - - pos: 28.5,-1.5 - parent: 1 - type: Transform -- uid: 912 - type: Bookshelf - components: - - pos: 27.5,-0.5 - parent: 1 - type: Transform -- uid: 913 - type: Chair - components: - - pos: 28.5,-0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 914 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-1.5 - parent: 1 - type: Transform -- uid: 915 - type: RandomDrinkGlass - components: - - pos: 28.5,-1.5 - parent: 1 - type: Transform -- uid: 916 - type: ClothingOuterSuitMonkey - components: - - pos: 27.147245,-2.3826299 - parent: 1 - type: Transform -- uid: 917 - type: ClothingHeadHatAnimalMonkey - components: - - pos: 27.553495,-1.4451299 - parent: 1 - type: Transform -- uid: 918 - type: PottedPlantRandom - components: - - pos: 26.5,-0.5 - parent: 1 - type: Transform -- uid: 919 - type: MaintenanceWeaponSpawner - components: - - pos: 29.5,-0.5 - parent: 1 - type: Transform -- uid: 920 - type: GravityGenerator - components: - - pos: 28.5,2.5 - parent: 1 - type: Transform - - charge: 100 - type: GravityGenerator - - radius: 175.75 - type: PointLight -- uid: 921 - type: SMESBasic - components: - - pos: 25.5,3.5 - parent: 1 - type: Transform -- uid: 922 - type: SubstationBasic - components: - - pos: 25.5,1.5 - parent: 1 - type: Transform -- uid: 923 - type: Table - components: - - pos: 25.5,2.5 - parent: 1 - type: Transform -- uid: 924 - type: CableHV - components: - - pos: 25.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 925 - type: CableHV - components: - - pos: 25.5,2.5 - parent: 1 - type: Transform -- uid: 926 - type: CableHV - components: - - pos: 25.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 927 - type: CableHV - components: - - pos: 26.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 928 - type: CableHV - components: - - pos: 26.5,4.5 - parent: 1 - type: Transform -- uid: 929 - type: CableHV - components: - - pos: 26.5,5.5 - parent: 1 - type: Transform -- uid: 930 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 - type: Transform -- uid: 931 - type: CableMV - components: - - pos: 25.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 932 - type: CableApcExtension - components: - - pos: 26.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 933 - type: CableApcExtension - components: - - pos: 26.5,1.5 - parent: 1 - type: Transform -- uid: 934 - type: CableApcExtension - components: - - pos: 26.5,2.5 - parent: 1 - type: Transform -- uid: 935 - type: CableApcExtension - components: - - pos: 27.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 936 - type: CableApcExtension - components: - - pos: 28.5,2.5 - parent: 1 - type: Transform -- uid: 937 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 26.5,0.5 - parent: 1 - type: Transform -- uid: 938 - type: CableMV - components: - - pos: 26.5,1.5 - parent: 1 - type: Transform -- uid: 939 - type: CableMV - components: - - pos: 26.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 940 - type: CableApcExtension - components: - - pos: 29.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 941 - type: CableApcExtension - components: - - pos: 30.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 942 - type: CableApcExtension - components: - - pos: 30.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 943 - type: CableApcExtension - components: - - pos: 30.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 944 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 29.5,5.5 - parent: 1 - type: Transform -- uid: 945 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 29.5,6.5 - parent: 1 - type: Transform -- uid: 946 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 29.5,6.5 - parent: 1 - type: Transform -- uid: 947 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 29.5,5.5 - parent: 1 - type: Transform -- uid: 948 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,7.5 - parent: 1 - type: Transform -- uid: 949 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,7.5 - parent: 1 - type: Transform -- uid: 950 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 31.5,7.5 - parent: 1 - type: Transform -- uid: 951 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 32.5,7.5 - parent: 1 - type: Transform -- uid: 952 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,9.5 - parent: 1 - type: Transform -- uid: 953 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 31.5,17.5 - parent: 1 - type: Transform -- uid: 954 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,17.5 - parent: 1 - type: Transform -- uid: 955 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 32.5,9.5 - parent: 1 - type: Transform -- uid: 956 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,11.5 - parent: 1 - type: Transform -- uid: 957 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,11.5 - parent: 1 - type: Transform -- uid: 958 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 31.5,11.5 - parent: 1 - type: Transform -- uid: 959 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 32.5,11.5 - parent: 1 - type: Transform -- uid: 960 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,15.5 - parent: 1 - type: Transform -- uid: 961 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,15.5 - parent: 1 - type: Transform -- uid: 962 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 31.5,15.5 - parent: 1 - type: Transform -- uid: 963 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 32.5,15.5 - parent: 1 - type: Transform -- uid: 964 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,17.5 - parent: 1 - type: Transform -- uid: 965 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 31.5,17.5 - parent: 1 - type: Transform -- uid: 966 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 30.5,17.5 - parent: 1 - type: Transform -- uid: 967 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 32.5,17.5 - parent: 1 - type: Transform -- uid: 968 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,19.5 - parent: 1 - type: Transform -- uid: 969 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,19.5 - parent: 1 - type: Transform -- uid: 970 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 31.5,19.5 - parent: 1 - type: Transform -- uid: 971 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 32.5,19.5 - parent: 1 - type: Transform -- uid: 972 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 29.5,12.5 - parent: 1 - type: Transform -- uid: 973 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 29.5,13.5 - parent: 1 - type: Transform -- uid: 974 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 29.5,14.5 - parent: 1 - type: Transform -- uid: 975 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 29.5,14.5 - parent: 1 - type: Transform -- uid: 976 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 29.5,13.5 - parent: 1 - type: Transform -- uid: 977 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 29.5,12.5 - parent: 1 - type: Transform -- uid: 978 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 29.5,20.5 - parent: 1 - type: Transform -- uid: 979 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 29.5,21.5 - parent: 1 - type: Transform -- uid: 980 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 29.5,21.5 - parent: 1 - type: Transform -- uid: 981 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 29.5,20.5 - parent: 1 - type: Transform -- uid: 982 - type: TelecomServer - components: - - pos: 26.5,28.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 983 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 983 - type: EncryptionKeySecurity - components: - - flags: InContainer - type: MetaData - - parent: 982 - type: Transform - - canCollide: False - type: Physics -- uid: 984 - type: CableApcExtension - components: - - pos: 26.5,27.5 - parent: 1 - type: Transform -- uid: 985 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,22.5 - parent: 1 - type: Transform -- uid: 986 - type: CableApcExtension - components: - - pos: 26.5,26.5 - parent: 1 - type: Transform -- uid: 987 - type: WallReinforced - components: - - pos: 29.5,27.5 - parent: 1 - type: Transform -- uid: 988 - type: CableHV - components: - - pos: 26.5,21.5 - parent: 1 - type: Transform -- uid: 989 - type: WallReinforced - components: - - pos: 29.5,23.5 - parent: 1 - type: Transform -- uid: 990 - type: CableHV - components: - - pos: 26.5,25.5 - parent: 1 - type: Transform -- uid: 991 - type: CableHV - components: - - pos: 27.5,25.5 - parent: 1 - type: Transform -- uid: 992 - type: CableHV - components: - - pos: 28.5,25.5 - parent: 1 - type: Transform -- uid: 993 - type: CableHV - components: - - pos: 28.5,24.5 - parent: 1 - type: Transform -- uid: 994 - type: WallReinforced - components: - - pos: 24.5,25.5 - parent: 1 - type: Transform -- uid: 995 - type: WallSolidRust - components: - - pos: 24.5,21.5 - parent: 1 - type: Transform -- uid: 996 - type: WallReinforced - components: - - pos: 24.5,24.5 - parent: 1 - type: Transform -- uid: 997 - type: WallReinforced - components: - - pos: 24.5,23.5 - parent: 1 - type: Transform -- uid: 998 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,20.5 - parent: 1 - type: Transform -- uid: 999 - type: WallSolidRust - components: - - pos: 20.5,11.5 - parent: 1 - type: Transform -- uid: 1000 - type: InflatableWall - components: - - pos: 20.5,12.5 - parent: 1 - type: Transform -- uid: 1001 - type: WallSolid - components: - - pos: 20.5,13.5 - parent: 1 - type: Transform -- uid: 1002 - type: WallSolid - components: - - pos: 20.5,14.5 - parent: 1 - type: Transform -- uid: 1003 - type: WallSolidRust - components: - - pos: 21.5,27.5 - parent: 1 - type: Transform -- uid: 1004 - type: WallReinforced - components: - - pos: 17.5,31.5 - parent: 1 - type: Transform -- uid: 1005 - type: WallSolid - components: - - pos: 17.5,14.5 - parent: 1 - type: Transform -- uid: 1006 - type: WallSolid - components: - - pos: 16.5,14.5 - parent: 1 - type: Transform -- uid: 1007 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,10.5 - parent: 1 - type: Transform -- uid: 1008 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,9.5 - parent: 1 - type: Transform -- uid: 1009 - type: WallSolidRust - components: - - pos: 20.5,9.5 - parent: 1 - type: Transform -- uid: 1010 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,7.5 - parent: 1 - type: Transform -- uid: 1011 - type: WallReinforced - components: - - pos: 24.5,22.5 - parent: 1 - type: Transform -- uid: 1012 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,26.5 - parent: 1 - type: Transform -- uid: 1013 - type: WallReinforced - components: - - pos: 27.5,29.5 - parent: 1 - type: Transform -- uid: 1014 - type: CableMV - components: - - pos: 28.5,23.5 - parent: 1 - type: Transform -- uid: 1015 - type: CableMV - components: - - pos: 28.5,24.5 - parent: 1 - type: Transform -- uid: 1016 - type: CableApcExtension - components: - - pos: 27.5,24.5 - parent: 1 - type: Transform -- uid: 1017 - type: CableApcExtension - components: - - pos: 26.5,24.5 - parent: 1 - type: Transform -- uid: 1018 - type: CableHV - components: - - pos: 26.5,22.5 - parent: 1 - type: Transform -- uid: 1019 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 29.5,24.5 - parent: 1 - type: Transform -- uid: 1020 - type: Poweredlight - components: - - pos: 26.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1021 - type: CableApcExtension - components: - - pos: 26.5,25.5 - parent: 1 - type: Transform -- uid: 1022 - type: CableApcExtension - components: - - pos: 26.5,23.5 - parent: 1 - type: Transform -- uid: 1023 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 31.5,3.5 - parent: 1 - type: Transform -- uid: 1024 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 1 - type: Transform -- uid: 1025 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 31.5,1.5 - parent: 1 - type: Transform -- uid: 1026 - type: TelecomServer - components: - - pos: 25.5,26.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 1027 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1027 - type: EncryptionKeyService - components: - - flags: InContainer - type: MetaData - - parent: 1026 - type: Transform - - canCollide: False - type: Physics -- uid: 1028 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 26.5,23.5 - parent: 1 - type: Transform -- uid: 1029 - type: CableHV - components: - - pos: 26.5,20.5 - parent: 1 - type: Transform -- uid: 1030 - type: WallReinforced - components: - - pos: 29.5,26.5 - parent: 1 - type: Transform -- uid: 1031 - type: CableApcExtension - components: - - pos: 29.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1032 - type: CableApcExtension - components: - - pos: 28.5,24.5 - parent: 1 - type: Transform -- uid: 1033 - type: WallSolidRust - components: - - pos: 23.5,10.5 - parent: 1 - type: Transform -- uid: 1034 - type: WallSolidRust - components: - - pos: 24.5,8.5 - parent: 1 - type: Transform -- uid: 1035 - type: WallSolid - components: - - pos: 21.5,10.5 - parent: 1 - type: Transform -- uid: 1036 - type: WallSolid - components: - - pos: 20.5,10.5 - parent: 1 - type: Transform -- uid: 1037 - type: WallSolidRust - components: - - pos: 22.5,10.5 - parent: 1 - type: Transform -- uid: 1038 - type: WallSolid - components: - - pos: 20.5,8.5 - parent: 1 - type: Transform -- uid: 1039 - type: WallSolid - components: - - pos: 20.5,7.5 - parent: 1 - type: Transform -- uid: 1040 - type: WallSolidRust - components: - - pos: 21.5,7.5 - parent: 1 - type: Transform -- uid: 1041 - type: WallSolid - components: - - pos: 23.5,7.5 - parent: 1 - type: Transform -- uid: 1042 - type: WallSolidRust - components: - - pos: 20.5,33.5 - parent: 1 - type: Transform -- uid: 1043 - type: WallSolid - components: - - pos: 15.5,10.5 - parent: 1 - type: Transform -- uid: 1044 - type: Girder - components: - - pos: 15.5,11.5 - parent: 1 - type: Transform -- uid: 1045 - type: WallSolid - components: - - pos: 1.5,41.5 - parent: 1 - type: Transform -- uid: 1046 - type: WallReinforced - components: - - pos: 17.5,29.5 - parent: 1 - type: Transform -- uid: 1047 - type: WallSolid - components: - - pos: 15.5,8.5 - parent: 1 - type: Transform -- uid: 1048 - type: Girder - components: - - pos: 15.5,7.5 - parent: 1 - type: Transform -- uid: 1049 - type: Girder - components: - - pos: 21.5,14.5 - parent: 1 - type: Transform -- uid: 1050 - type: WallSolid - components: - - pos: 21.5,15.5 - parent: 1 - type: Transform -- uid: 1051 - type: Window - components: - - pos: 18.5,7.5 - parent: 1 - type: Transform -- uid: 1052 - type: Grille - components: - - pos: 18.5,7.5 - parent: 1 - type: Transform -- uid: 1053 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 17.5,7.5 - parent: 1 - type: Transform -- uid: 1054 - type: Grille - components: - - pos: 16.5,7.5 - parent: 1 - type: Transform -- uid: 1055 - type: WallSolidRust - components: - - pos: 21.5,20.5 - parent: 1 - type: Transform -- uid: 1056 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 18.5,25.5 - parent: 1 - type: Transform -- uid: 1057 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 21.5,18.5 - parent: 1 - type: Transform -- uid: 1058 - type: WallSolidRust - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform -- uid: 1059 - type: WallSolidRust - components: - - pos: 5.5,7.5 - parent: 1 - type: Transform -- uid: 1060 - type: WallSolid - components: - - pos: 6.5,7.5 - parent: 1 - type: Transform -- uid: 1061 - type: RandomPosterLegit - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform -- uid: 1062 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 21.5,23.5 - parent: 1 - type: Transform -- uid: 1063 - type: Morgue - components: - - rot: 3.141592653589793 rad - pos: 1.5,14.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1064 - type: GasVentScrubber - components: - - pos: -0.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1065 - type: CrewMonitoringServer - components: - - pos: -1.5,17.5 - parent: 1 - type: Transform -- uid: 1066 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-4.5 - parent: 1 - type: Transform -- uid: 1067 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 1 - type: Transform -- uid: 1068 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 1 - type: Transform -- uid: 1069 - type: WallSolidRust - components: - - pos: -16.5,-0.5 - parent: 1 - type: Transform -- uid: 1070 - type: WallSolidRust - components: - - pos: -18.5,2.5 - parent: 1 - type: Transform -- uid: 1071 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-6.5 - parent: 1 - type: Transform -- uid: 1072 - type: WallSolidRust - components: - - pos: -16.5,2.5 - parent: 1 - type: Transform -- uid: 1073 - type: WallSolidRust - components: - - pos: -19.5,-6.5 - parent: 1 - type: Transform -- uid: 1074 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-5.5 - parent: 1 - type: Transform -- uid: 1075 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -22.5,3.5 - parent: 1 - type: Transform -- uid: 1076 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-3.5 - parent: 1 - type: Transform -- uid: 1077 - type: WallSolidRust - components: - - pos: -19.5,2.5 - parent: 1 - type: Transform -- uid: 1078 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-1.5 - parent: 1 - type: Transform -- uid: 1079 - type: WallSolidRust - components: - - pos: -21.5,3.5 - parent: 1 - type: Transform -- uid: 1080 - type: WallSolidRust - components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform -- uid: 1081 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 1 - type: Transform -- uid: 1082 - type: WallSolidRust - components: - - pos: -18.5,-0.5 - parent: 1 - type: Transform -- uid: 1083 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 1 - type: Transform -- uid: 1084 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -17.5,2.5 - parent: 1 - type: Transform -- uid: 1085 - type: WallSolidRust - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform -- uid: 1086 - type: Girder - components: - - pos: -22.5,-2.5 - parent: 1 - type: Transform -- uid: 1087 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -19.5,3.5 - parent: 1 - type: Transform -- uid: 1088 - type: WallSolidRust - components: - - pos: -19.5,-4.5 - parent: 1 - type: Transform -- uid: 1089 - type: WallSolidRust - components: - - pos: -18.5,-6.5 - parent: 1 - type: Transform -- uid: 1090 - type: DisposalUnit - components: - - pos: 11.5,-3.5 - parent: 1 - type: Transform -- uid: 1091 - type: DisposalUnit - components: - - pos: 5.5,3.5 - parent: 1 - type: Transform -- uid: 1092 - type: WallSolidRust - components: - - pos: -16.5,-9.5 - parent: 1 - type: Transform -- uid: 1093 - type: WallSolid - components: - - pos: -15.5,-9.5 - parent: 1 - type: Transform -- uid: 1094 - type: AirlockMaintRnDLocked - components: - - pos: -17.5,-9.5 - parent: 1 - type: Transform -- uid: 1095 - type: WallSolid - components: - - pos: -18.5,-11.5 - parent: 1 - type: Transform -- uid: 1096 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-9.5 - parent: 1 - type: Transform -- uid: 1097 - type: WallSolid - components: - - pos: -19.5,-9.5 - parent: 1 - type: Transform -- uid: 1098 - type: WallReinforced - components: - - pos: -19.5,-15.5 - parent: 1 - type: Transform -- uid: 1099 - type: WallSolid - components: - - pos: -21.5,-9.5 - parent: 1 - type: Transform -- uid: 1100 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -22.5,2.5 - parent: 1 - type: Transform -- uid: 1101 - type: WallSolidRust - components: - - pos: -23.5,1.5 - parent: 1 - type: Transform -- uid: 1102 - type: WallSolidRust - components: - - pos: -22.5,0.5 - parent: 1 - type: Transform -- uid: 1103 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 1 - type: Transform -- uid: 1104 - type: WallSolid - components: - - pos: -22.5,-1.5 - parent: 1 - type: Transform -- uid: 1105 - type: Girder - components: - - pos: -22.5,1.5 - parent: 1 - type: Transform -- uid: 1106 - type: WallSolidRust - components: - - pos: -22.5,-3.5 - parent: 1 - type: Transform -- uid: 1107 - type: WallSolidRust - components: - - pos: -15.5,-6.5 - parent: 1 - type: Transform -- uid: 1108 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-2.5 - parent: 1 - type: Transform -- uid: 1109 - type: WallSolidRust - components: - - pos: -22.5,-6.5 - parent: 1 - type: Transform -- uid: 1110 - type: WallSolidRust - components: - - pos: -22.5,-5.5 - parent: 1 - type: Transform -- uid: 1111 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-2.5 - parent: 1 - type: Transform -- uid: 1112 - type: WallSolidRust - components: - - pos: -25.5,-2.5 - parent: 1 - type: Transform -- uid: 1113 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-3.5 - parent: 1 - type: Transform -- uid: 1114 - type: ClosetMaintenanceFilledRandom - components: - - pos: -23.5,-6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1115 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-5.5 - parent: 1 - type: Transform -- uid: 1116 - type: WallSolidRust - components: - - pos: -25.5,-6.5 - parent: 1 - type: Transform -- uid: 1117 - type: WallSolidRust - components: - - pos: -25.5,-4.5 - parent: 1 - type: Transform -- uid: 1118 - type: ClosetToolFilled - components: - - pos: -24.5,-6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1119 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 1 - type: Transform -- uid: 1120 - type: WallSolidRust - components: - - pos: -27.5,-1.5 - parent: 1 - type: Transform -- uid: 1121 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 - parent: 1 - type: Transform -- uid: 1122 - type: WallSolidRust - components: - - pos: -27.5,2.5 - parent: 1 - type: Transform -- uid: 1123 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 1 - type: Transform -- uid: 1124 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -27.5,0.5 - parent: 1 - type: Transform -- uid: 1125 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -27.5,1.5 - parent: 1 - type: Transform -- uid: 1126 - type: WallSolidRust - components: - - pos: -27.5,-3.5 - parent: 1 - type: Transform -- uid: 1127 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -27.5,3.5 - parent: 1 - type: Transform -- uid: 1128 - type: Girder - components: - - pos: -20.5,3.5 - parent: 1 - type: Transform -- uid: 1129 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -23.5,3.5 - parent: 1 - type: Transform -- uid: 1130 - type: Girder - components: - - pos: -30.5,-0.5 - parent: 1 - type: Transform -- uid: 1131 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -25.5,3.5 - parent: 1 - type: Transform -- uid: 1132 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -24.5,1.5 - parent: 1 - type: Transform -- uid: 1133 - type: WallSolidRust - components: - - pos: -24.5,-0.5 - parent: 1 - type: Transform -- uid: 1134 - type: Girder - components: - - pos: 8.5,7.5 - parent: 1 - type: Transform -- uid: 1135 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 13.5,7.5 - parent: 1 - type: Transform -- uid: 1136 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 12.5,7.5 - parent: 1 - type: Transform -- uid: 1137 - type: WallSolidRust - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform -- uid: 1138 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 10.5,7.5 - parent: 1 - type: Transform -- uid: 1139 - type: Girder - components: - - pos: 9.5,7.5 - parent: 1 - type: Transform -- uid: 1140 - type: WallSolidRust - components: - - pos: 14.5,7.5 - parent: 1 - type: Transform -- uid: 1141 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 7.5,7.5 - parent: 1 - type: Transform -- uid: 1142 - type: ClosetEmergencyFilledRandom - components: - - pos: 1.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1143 - type: Morgue - components: - - pos: -0.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1144 - type: VendingMachineViroDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,20.5 - parent: 1 - type: Transform -- uid: 1145 - type: SignVirology - components: - - pos: 5.5,20.5 - parent: 1 - type: Transform -- uid: 1146 - type: WallSolidRust - components: - - pos: 18.5,24.5 - parent: 1 - type: Transform -- uid: 1147 - type: AirlockVirologyLocked - components: - - pos: 5.5,19.5 - parent: 1 - type: Transform -- uid: 1148 - type: AirlockVirologyLocked - components: - - pos: 8.5,19.5 - parent: 1 - type: Transform -- uid: 1149 - type: SignMorgue - components: - - pos: 2.5,18.5 - parent: 1 - type: Transform -- uid: 1150 - type: ClosetL3VirologyFilled - components: - - pos: 6.5,20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1151 - type: ClosetEmergencyFilledRandom - components: - - pos: 1.5,20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1152 - type: WallSolid - components: - - pos: 19.5,24.5 - parent: 1 - type: Transform -- uid: 1153 - type: AirCanister - components: - - pos: 21.5,25.5 - parent: 1 - type: Transform -- uid: 1154 - type: WallSolid - components: - - pos: 2.5,35.5 - parent: 1 - type: Transform -- uid: 1155 - type: DisposalUnit - components: - - pos: 4.5,14.5 - parent: 1 - type: Transform -- uid: 1156 - type: Morgue - components: - - rot: 3.141592653589793 rad - pos: 0.5,14.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1157 - type: Morgue - components: - - rot: 3.141592653589793 rad - pos: -0.5,14.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1158 - type: WallSolidRust - components: - - pos: 8.5,21.5 - parent: 1 - type: Transform -- uid: 1159 - type: WallSolidRust - components: - - pos: 8.5,18.5 - parent: 1 - type: Transform -- uid: 1160 - type: WallSolid - components: - - pos: 9.5,21.5 - parent: 1 - type: Transform -- uid: 1161 - type: WallSolidRust - components: - - pos: 18.5,27.5 - parent: 1 - type: Transform -- uid: 1162 - type: WallSolidRust - components: - - pos: 21.5,30.5 - parent: 1 - type: Transform -- uid: 1163 - type: WallSolidRust - components: - - pos: 13.5,26.5 - parent: 1 - type: Transform -- uid: 1164 - type: WallSolidRust - components: - - pos: 15.5,19.5 - parent: 1 - type: Transform -- uid: 1165 - type: RandomPosterAny - components: - - pos: 20.5,27.5 - parent: 1 - type: Transform -- uid: 1166 - type: WallSolidRust - components: - - pos: 15.5,15.5 - parent: 1 - type: Transform -- uid: 1167 - type: WallSolidRust - components: - - pos: 7.5,18.5 - parent: 1 - type: Transform -- uid: 1168 - type: WallSolidRust - components: - - pos: 21.5,21.5 - parent: 1 - type: Transform -- uid: 1169 - type: WallSolidRust - components: - - pos: 12.5,10.5 - parent: 1 - type: Transform -- uid: 1170 - type: WallSolidRust - components: - - pos: 21.5,24.5 - parent: 1 - type: Transform -- uid: 1171 - type: WallSolid - components: - - pos: 12.5,23.5 - parent: 1 - type: Transform -- uid: 1172 - type: Railing - components: - - pos: 22.5,31.5 - parent: 1 - type: Transform -- uid: 1173 - type: WallSolidRust - components: - - pos: 11.5,23.5 - parent: 1 - type: Transform -- uid: 1174 - type: Girder - components: - - pos: 13.5,23.5 - parent: 1 - type: Transform -- uid: 1175 - type: Girder - components: - - pos: 21.5,22.5 - parent: 1 - type: Transform -- uid: 1176 - type: WallSolidRust - components: - - pos: 12.5,12.5 - parent: 1 - type: Transform -- uid: 1177 - type: WallSolid - components: - - pos: 13.5,24.5 - parent: 1 - type: Transform -- uid: 1178 - type: WallSolidRust - components: - - pos: 15.5,12.5 - parent: 1 - type: Transform -- uid: 1179 - type: WallSolidRust - components: - - pos: 21.5,31.5 - parent: 1 - type: Transform -- uid: 1180 - type: WallSolid - components: - - pos: 11.5,10.5 - parent: 1 - type: Transform -- uid: 1181 - type: ClosetL3VirologyFilled - components: - - pos: 7.5,20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1182 - type: WallReinforced - components: - - pos: -3.5,10.5 - parent: 1 - type: Transform -- uid: 1183 - type: WallReinforced - components: - - pos: -3.5,9.5 - parent: 1 - type: Transform -- uid: 1184 - type: WallReinforced - components: - - pos: -3.5,8.5 - parent: 1 - type: Transform -- uid: 1185 - type: WallReinforced - components: - - pos: -2.5,7.5 - parent: 1 - type: Transform -- uid: 1186 - type: WallReinforced - components: - - pos: -3.5,7.5 - parent: 1 - type: Transform -- uid: 1187 - type: WallReinforced - components: - - pos: -1.5,7.5 - parent: 1 - type: Transform -- uid: 1188 - type: WallReinforced - components: - - pos: -3.5,11.5 - parent: 1 - type: Transform -- uid: 1189 - type: AirCanister - components: - - pos: -3.5,13.5 - parent: 1 - type: Transform -- uid: 1190 - type: WallSolidRust - components: - - pos: 7.5,21.5 - parent: 1 - type: Transform -- uid: 1191 - type: InflatableWall - components: - - pos: 15.5,16.5 - parent: 1 - type: Transform -- uid: 1192 - type: WallSolidRust - components: - - pos: -0.5,41.5 - parent: 1 - type: Transform -- uid: 1193 - type: WallSolidRust - components: - - pos: 10.5,38.5 - parent: 1 - type: Transform -- uid: 1194 - type: WallReinforced - components: - - pos: 13.5,33.5 - parent: 1 - type: Transform -- uid: 1195 - type: WallReinforced - components: - - pos: 17.5,28.5 - parent: 1 - type: Transform -- uid: 1196 - type: WallReinforced - components: - - pos: 17.5,30.5 - parent: 1 - type: Transform -- uid: 1197 - type: WallSolid - components: - - pos: 21.5,28.5 - parent: 1 - type: Transform -- uid: 1198 - type: WallReinforced - components: - - pos: 16.5,33.5 - parent: 1 - type: Transform -- uid: 1199 - type: WallSolid - components: - - pos: 13.5,34.5 - parent: 1 - type: Transform -- uid: 1200 - type: Girder - components: - - pos: 16.5,21.5 - parent: 1 - type: Transform -- uid: 1201 - type: WallSolid - components: - - pos: 19.5,33.5 - parent: 1 - type: Transform -- uid: 1202 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 21.5,17.5 - parent: 1 - type: Transform -- uid: 1203 - type: WallSolidRust - components: - - pos: 15.5,20.5 - parent: 1 - type: Transform -- uid: 1204 - type: WallSolid - components: - - pos: 3.5,7.5 - parent: 1 - type: Transform -- uid: 1205 - type: WallSolid - components: - - pos: -1.5,13.5 - parent: 1 - type: Transform -- uid: 1206 - type: WallSolid - components: - - pos: 4.5,41.5 - parent: 1 - type: Transform -- uid: 1207 - type: SignCryogenicsMed - components: - - pos: 5.5,34.5 - parent: 1 - type: Transform -- uid: 1208 - type: WallSolidRust - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform -- uid: 1209 - type: WallReinforced - components: - - pos: -2.5,18.5 - parent: 1 - type: Transform -- uid: 1210 - type: WallSolid - components: - - pos: -0.5,13.5 - parent: 1 - type: Transform -- uid: 1211 - type: WallSolidRust - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform -- uid: 1212 - type: WallSolid - components: - - pos: 16.5,22.5 - parent: 1 - type: Transform -- uid: 1213 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1214 - type: WallSolid - components: - - pos: 5.5,20.5 - parent: 1 - type: Transform -- uid: 1215 - type: WallReinforced - components: - - pos: -1.5,18.5 - parent: 1 - type: Transform -- uid: 1216 - type: WallReinforced - components: - - pos: -0.5,18.5 - parent: 1 - type: Transform -- uid: 1217 - type: WallReinforced - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform -- uid: 1218 - type: WallReinforced - components: - - pos: -4.5,18.5 - parent: 1 - type: Transform -- uid: 1219 - type: WallReinforced - components: - - pos: 0.5,19.5 - parent: 1 - type: Transform -- uid: 1220 - type: WallReinforced - components: - - pos: 0.5,20.5 - parent: 1 - type: Transform -- uid: 1221 - type: WallReinforced - components: - - pos: 0.5,21.5 - parent: 1 - type: Transform -- uid: 1222 - type: WallReinforced - components: - - pos: 1.5,21.5 - parent: 1 - type: Transform -- uid: 1223 - type: WallSolidRust - components: - - pos: 16.5,23.5 - parent: 1 - type: Transform -- uid: 1224 - type: WallSolid - components: - - pos: 5.5,10.5 - parent: 1 - type: Transform -- uid: 1225 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 8.5,30.5 - parent: 1 - type: Transform -- uid: 1226 - type: WallSolid - components: - - pos: 4.5,13.5 - parent: 1 - type: Transform -- uid: 1227 - type: WallSolid - components: - - pos: 5.5,12.5 - parent: 1 - type: Transform -- uid: 1228 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1229 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 11.5,25.5 - parent: 1 - type: Transform -- uid: 1230 - type: WallSolidRust - components: - - pos: 12.5,19.5 - parent: 1 - type: Transform -- uid: 1231 - type: WallSolid - components: - - pos: 6.5,10.5 - parent: 1 - type: Transform -- uid: 1232 - type: WallReinforced - components: - - pos: 1.5,11.5 - parent: 1 - type: Transform -- uid: 1233 - type: WallSolidRust - components: - - pos: 10.5,10.5 - parent: 1 - type: Transform -- uid: 1234 - type: WallSolidRust - components: - - pos: 8.5,10.5 - parent: 1 - type: Transform -- uid: 1235 - type: WallSolid - components: - - pos: 9.5,10.5 - parent: 1 - type: Transform -- uid: 1236 - type: WallSolidRust - components: - - pos: 7.5,10.5 - parent: 1 - type: Transform -- uid: 1237 - type: WallSolidRust - components: - - pos: 20.5,24.5 - parent: 1 - type: Transform -- uid: 1238 - type: WallSolid - components: - - pos: 10.5,32.5 - parent: 1 - type: Transform -- uid: 1239 - type: WallSolid - components: - - pos: 5.5,15.5 - parent: 1 - type: Transform -- uid: 1240 - type: AirlockChiefMedicalOfficerLocked - components: - - pos: 17.5,32.5 - parent: 1 - type: Transform -- uid: 1241 - type: WallSolidRust - components: - - pos: 21.5,19.5 - parent: 1 - type: Transform -- uid: 1242 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1243 - type: WallSolid - components: - - pos: 2.5,18.5 - parent: 1 - type: Transform -- uid: 1244 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 11.5,24.5 - parent: 1 - type: Transform -- uid: 1245 - type: WallReinforced - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform -- uid: 1246 - type: Morgue - components: - - pos: 0.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1247 - type: WallSolidRust - components: - - pos: 15.5,13.5 - parent: 1 - type: Transform -- uid: 1248 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1249 - type: WallSolidRust - components: - - pos: 1.5,35.5 - parent: 1 - type: Transform -- uid: 1250 - type: Window - components: - - pos: 11.5,27.5 - parent: 1 - type: Transform -- uid: 1251 - type: WallReinforced - components: - - pos: -5.5,20.5 - parent: 1 - type: Transform -- uid: 1252 - type: WallReinforced - components: - - pos: -5.5,19.5 - parent: 1 - type: Transform -- uid: 1253 - type: WallReinforced - components: - - pos: -5.5,18.5 - parent: 1 - type: Transform -- uid: 1254 - type: WallReinforced - components: - - pos: -5.5,28.5 - parent: 1 - type: Transform -- uid: 1255 - type: WallReinforced - components: - - pos: -5.5,27.5 - parent: 1 - type: Transform -- uid: 1256 - type: WallReinforced - components: - - pos: -5.5,26.5 - parent: 1 - type: Transform -- uid: 1257 - type: WallReinforced - components: - - pos: -5.5,25.5 - parent: 1 - type: Transform -- uid: 1258 - type: WallReinforced - components: - - pos: -5.5,24.5 - parent: 1 - type: Transform -- uid: 1259 - type: WallReinforced - components: - - pos: -5.5,23.5 - parent: 1 - type: Transform -- uid: 1260 - type: WallReinforced - components: - - pos: -5.5,22.5 - parent: 1 - type: Transform -- uid: 1261 - type: WallReinforced - components: - - pos: -5.5,21.5 - parent: 1 - type: Transform -- uid: 1262 - type: WallReinforced - components: - - pos: 1.5,22.5 - parent: 1 - type: Transform -- uid: 1263 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 1.5,24.5 - parent: 1 - type: Transform -- uid: 1264 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 1.5,24.5 - parent: 1 - type: Transform -- uid: 1265 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,27.5 - parent: 1 - type: Transform -- uid: 1266 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,28.5 - parent: 1 - type: Transform -- uid: 1267 - type: WallReinforced - components: - - pos: 1.5,27.5 - parent: 1 - type: Transform -- uid: 1268 - type: WallReinforced - components: - - pos: 1.5,28.5 - parent: 1 - type: Transform -- uid: 1269 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -2.5,28.5 - parent: 1 - type: Transform -- uid: 1270 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -1.5,28.5 - parent: 1 - type: Transform -- uid: 1271 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 0.5,28.5 - parent: 1 - type: Transform -- uid: 1272 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -2.5,28.5 - parent: 1 - type: Transform -- uid: 1273 - type: WallReinforced - components: - - pos: -3.5,28.5 - parent: 1 - type: Transform -- uid: 1274 - type: WallReinforced - components: - - pos: -4.5,28.5 - parent: 1 - type: Transform -- uid: 1275 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 9.5,38.5 - parent: 1 - type: Transform -- uid: 1276 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: 6.5,32.5 - parent: 1 - type: Transform -- uid: 1277 - type: WallSolidRust - components: - - pos: 1.5,32.5 - parent: 1 - type: Transform -- uid: 1278 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 1.5,31.5 - parent: 1 - type: Transform -- uid: 1279 - type: TableWood - components: - - pos: 14.5,31.5 - parent: 1 - type: Transform -- uid: 1280 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 0.5,35.5 - parent: 1 - type: Transform -- uid: 1281 - type: WallSolidRust - components: - - pos: -0.5,35.5 - parent: 1 - type: Transform -- uid: 1282 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -1.5,35.5 - parent: 1 - type: Transform -- uid: 1283 - type: WallSolidRust - components: - - pos: -2.5,35.5 - parent: 1 - type: Transform -- uid: 1284 - type: WallSolidRust - components: - - pos: -3.5,35.5 - parent: 1 - type: Transform -- uid: 1285 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -4.5,35.5 - parent: 1 - type: Transform -- uid: 1286 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -7.5,35.5 - parent: 1 - type: Transform -- uid: 1287 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: 7.5,32.5 - parent: 1 - type: Transform -- uid: 1288 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 5.5,38.5 - parent: 1 - type: Transform -- uid: 1289 - type: WallSolidRust - components: - - pos: 11.5,38.5 - parent: 1 - type: Transform -- uid: 1290 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 0.5,28.5 - parent: 1 - type: Transform -- uid: 1291 - type: WallSolidRust - components: - - pos: 1.5,34.5 - parent: 1 - type: Transform -- uid: 1292 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 7.5,38.5 - parent: 1 - type: Transform -- uid: 1293 - type: WallSolidRust - components: - - pos: 6.5,38.5 - parent: 1 - type: Transform -- uid: 1294 - type: WallSolid - components: - - pos: 5.5,34.5 - parent: 1 - type: Transform -- uid: 1295 - type: WallSolid - components: - - pos: 5.5,32.5 - parent: 1 - type: Transform -- uid: 1296 - type: WallSolidRust - components: - - pos: 13.5,37.5 - parent: 1 - type: Transform -- uid: 1297 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: 5.5,35.5 - parent: 1 - type: Transform -- uid: 1298 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: 12.5,32.5 - parent: 1 - type: Transform -- uid: 1299 - type: WallReinforced - components: - - pos: 13.5,32.5 - parent: 1 - type: Transform -- uid: 1300 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: 5.5,36.5 - parent: 1 - type: Transform -- uid: 1301 - type: WallSolidRust - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform -- uid: 1302 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 18.5,33.5 - parent: 1 - type: Transform -- uid: 1303 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -1.5,28.5 - parent: 1 - type: Transform -- uid: 1304 - type: WallSolidRust - components: - - pos: 18.5,14.5 - parent: 1 - type: Transform -- uid: 1305 - type: Girder - components: - - pos: 21.5,33.5 - parent: 1 - type: Transform -- uid: 1306 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 21.5,32.5 - parent: 1 - type: Transform -- uid: 1307 - type: WallSolidRust - components: - - pos: 19.5,14.5 - parent: 1 - type: Transform -- uid: 1308 - type: WallSolidRust - components: - - pos: 21.5,16.5 - parent: 1 - type: Transform -- uid: 1309 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 21.5,29.5 - parent: 1 - type: Transform -- uid: 1310 - type: WallReinforced - components: - - pos: 13.5,31.5 - parent: 1 - type: Transform -- uid: 1311 - type: WallSolidRust - components: - - pos: 8.5,38.5 - parent: 1 - type: Transform -- uid: 1312 - type: WallSolid - components: - - pos: 5.5,37.5 - parent: 1 - type: Transform -- uid: 1313 - type: TableWood - components: - - pos: 15.5,31.5 - parent: 1 - type: Transform -- uid: 1314 - type: SpawnPointChiefMedicalOfficer - components: - - pos: 15.5,32.5 - parent: 1 - type: Transform -- uid: 1315 - type: WallSolidRust - components: - - pos: 15.5,17.5 - parent: 1 - type: Transform -- uid: 1316 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 6.5,31.5 - parent: 1 - type: Transform -- uid: 1317 - type: Grille - components: - - pos: 5.5,23.5 - parent: 1 - type: Transform -- uid: 1318 - type: Grille - components: - - pos: 11.5,27.5 - parent: 1 - type: Transform -- uid: 1319 - type: AirlockMedicalLocked - components: - - pos: 5.5,24.5 - parent: 1 - type: Transform -- uid: 1320 - type: AirlockMedicalGlassLocked - components: - - pos: 6.5,28.5 - parent: 1 - type: Transform -- uid: 1321 - type: SignCryogenicsMed - components: - - pos: 5.5,32.5 - parent: 1 - type: Transform -- uid: 1322 - type: WallSolidRust - components: - - pos: 13.5,36.5 - parent: 1 - type: Transform -- uid: 1323 - type: AirlockChiefMedicalOfficerLocked - components: - - pos: 13.5,28.5 - parent: 1 - type: Transform -- uid: 1324 - type: ComputerFrame - components: - - rot: 1.5707963267948966 rad - pos: 1.5,38.5 - parent: 1 - type: Transform -- uid: 1325 - type: TintedWindow - components: - - rot: 1.5707963267948966 rad - pos: 6.5,31.5 - parent: 1 - type: Transform -- uid: 1326 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 12.5,38.5 - parent: 1 - type: Transform -- uid: 1327 - type: Girder - components: - - pos: 13.5,38.5 - parent: 1 - type: Transform -- uid: 1328 - type: WallSolidRust - components: - - pos: 10.5,21.5 - parent: 1 - type: Transform -- uid: 1329 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1330 - type: WallSolidRust - components: - - pos: 12.5,11.5 - parent: 1 - type: Transform -- uid: 1331 - type: GasVentPump - components: - - pos: 0.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1332 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: 9.5,32.5 - parent: 1 - type: Transform -- uid: 1333 - type: CryoPod - components: - - pos: 9.5,36.5 - parent: 1 - type: Transform -- uid: 1334 - type: WallSolid - components: - - pos: 5.5,27.5 - parent: 1 - type: Transform -- uid: 1335 - type: WallSolidRust - components: - - pos: 12.5,14.5 - parent: 1 - type: Transform -- uid: 1336 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: -5.5,34.5 - parent: 1 - type: Transform -- uid: 1337 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -8.5,26.5 - parent: 1 - type: Transform -- uid: 1338 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -7.5,26.5 - parent: 1 - type: Transform -- uid: 1339 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,26.5 - parent: 1 - type: Transform -- uid: 1340 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: -5.5,30.5 - parent: 1 - type: Transform -- uid: 1341 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: -5.5,29.5 - parent: 1 - type: Transform -- uid: 1342 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -5.5,29.5 - parent: 1 - type: Transform -- uid: 1343 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -5.5,30.5 - parent: 1 - type: Transform -- uid: 1344 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: -5.5,32.5 - parent: 1 - type: Transform -- uid: 1345 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -5.5,32.5 - parent: 1 - type: Transform -- uid: 1346 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -9.5,26.5 - parent: 1 - type: Transform -- uid: 1347 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -5.5,34.5 - parent: 1 - type: Transform -- uid: 1348 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -10.5,26.5 - parent: 1 - type: Transform -- uid: 1349 - type: WallSolid - components: - - pos: 0.5,41.5 - parent: 1 - type: Transform -- uid: 1350 - type: SignCloning - components: - - pos: 2.5,35.5 - parent: 1 - type: Transform -- uid: 1351 - type: AirlockMedicalLocked - components: - - pos: 3.5,35.5 - parent: 1 - type: Transform -- uid: 1352 - type: AirlockMedicalLocked - components: - - pos: 5.5,33.5 - parent: 1 - type: Transform -- uid: 1353 - type: AirlockMedicalLocked - components: - - pos: 5.5,25.5 - parent: 1 - type: Transform -- uid: 1354 - type: AirlockMedicalGlassLocked - components: - - pos: 6.5,29.5 - parent: 1 - type: Transform -- uid: 1355 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: 11.5,32.5 - parent: 1 - type: Transform -- uid: 1356 - type: MachineFrame - components: - - pos: 0.5,37.5 - parent: 1 - type: Transform -- uid: 1357 - type: WallSolidRust - components: - - pos: 12.5,17.5 - parent: 1 - type: Transform -- uid: 1358 - type: WallSolid - components: - - pos: -2.5,15.5 - parent: 1 - type: Transform -- uid: 1359 - type: WallSolid - components: - - pos: 12.5,20.5 - parent: 1 - type: Transform -- uid: 1360 - type: Grille - components: - - pos: 5.5,22.5 - parent: 1 - type: Transform -- uid: 1361 - type: SignMedical - components: - - pos: 5.5,27.5 - parent: 1 - type: Transform -- uid: 1362 - type: WallSolid - components: - - pos: 6.5,18.5 - parent: 1 - type: Transform -- uid: 1363 - type: WallSolidRust - components: - - pos: 12.5,16.5 - parent: 1 - type: Transform -- uid: 1364 - type: WallSolid - components: - - pos: 12.5,18.5 - parent: 1 - type: Transform -- uid: 1365 - type: AirlockMaintMedLocked - components: - - pos: 12.5,15.5 - parent: 1 - type: Transform -- uid: 1366 - type: WallSolid - components: - - pos: 12.5,13.5 - parent: 1 - type: Transform -- uid: 1367 - type: WallSolidRust - components: - - pos: 4.5,35.5 - parent: 1 - type: Transform -- uid: 1368 - type: WallSolid - components: - - pos: 8.5,32.5 - parent: 1 - type: Transform -- uid: 1369 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1370 - type: WallSolidRust - components: - - pos: -2.5,17.5 - parent: 1 - type: Transform -- uid: 1371 - type: Window - components: - - pos: 5.5,23.5 - parent: 1 - type: Transform -- uid: 1372 - type: Window - components: - - pos: 5.5,22.5 - parent: 1 - type: Transform -- uid: 1373 - type: WallSolidRust - components: - - pos: 3.5,45.5 - parent: 1 - type: Transform -- uid: 1374 - type: WallSolid - components: - - pos: -1.5,38.5 - parent: 1 - type: Transform -- uid: 1375 - type: WallSolidRust - components: - - pos: 0.5,44.5 - parent: 1 - type: Transform -- uid: 1376 - type: WallSolid - components: - - pos: -1.5,36.5 - parent: 1 - type: Transform -- uid: 1377 - type: WallSolidRust - components: - - pos: 5.5,43.5 - parent: 1 - type: Transform -- uid: 1378 - type: WallSolid - components: - - pos: -1.5,41.5 - parent: 1 - type: Transform -- uid: 1379 - type: WallSolidRust - components: - - pos: 5.5,41.5 - parent: 1 - type: Transform -- uid: 1380 - type: WallSolid - components: - - pos: -1.5,43.5 - parent: 1 - type: Transform -- uid: 1381 - type: Girder - components: - - pos: -1.5,44.5 - parent: 1 - type: Transform -- uid: 1382 - type: WallSolidRust - components: - - pos: -1.5,42.5 - parent: 1 - type: Transform -- uid: 1383 - type: WallSolidRust - components: - - pos: -0.5,44.5 - parent: 1 - type: Transform -- uid: 1384 - type: WallSolid - components: - - pos: 1.5,44.5 - parent: 1 - type: Transform -- uid: 1385 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 1.5,45.5 - parent: 1 - type: Transform -- uid: 1386 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 2.5,45.5 - parent: 1 - type: Transform -- uid: 1387 - type: WallSolidRust - components: - - pos: -1.5,40.5 - parent: 1 - type: Transform -- uid: 1388 - type: WallSolid - components: - - pos: 5.5,44.5 - parent: 1 - type: Transform -- uid: 1389 - type: WallSolidRust - components: - - pos: -1.5,39.5 - parent: 1 - type: Transform -- uid: 1390 - type: WallSolid - components: - - pos: 5.5,42.5 - parent: 1 - type: Transform -- uid: 1391 - type: WallSolidRust - components: - - pos: -1.5,37.5 - parent: 1 - type: Transform -- uid: 1392 - type: WallSolidRust - components: - - pos: 5.5,39.5 - parent: 1 - type: Transform -- uid: 1393 - type: WallSolid - components: - - pos: 16.5,24.5 - parent: 1 - type: Transform -- uid: 1394 - type: WallSolidRust - components: - - pos: 5.5,21.5 - parent: 1 - type: Transform -- uid: 1395 - type: WallReinforced - components: - - pos: 13.5,30.5 - parent: 1 - type: Transform -- uid: 1396 - type: WallReinforced - components: - - pos: 17.5,33.5 - parent: 1 - type: Transform -- uid: 1397 - type: TintedWindow - components: - - rot: 1.5707963267948966 rad - pos: 6.5,30.5 - parent: 1 - type: Transform -- uid: 1398 - type: WallSolid - components: - - pos: 6.5,21.5 - parent: 1 - type: Transform -- uid: 1399 - type: WallReinforced - components: - - pos: 13.5,27.5 - parent: 1 - type: Transform -- uid: 1400 - type: WallReinforced - components: - - pos: 16.5,27.5 - parent: 1 - type: Transform -- uid: 1401 - type: MachineFrame - components: - - pos: 0.5,39.5 - parent: 1 - type: Transform -- uid: 1402 - type: MedicalBed - components: - - pos: 7.5,31.5 - parent: 1 - type: Transform -- uid: 1403 - type: MedicalBed - components: - - pos: 11.5,31.5 - parent: 1 - type: Transform -- uid: 1404 - type: HospitalCurtainsOpen - components: - - pos: 10.5,30.5 - parent: 1 - type: Transform -- uid: 1405 - type: MedicalBed - components: - - pos: 9.5,31.5 - parent: 1 - type: Transform -- uid: 1406 - type: HospitalCurtainsOpen - components: - - pos: 11.5,30.5 - parent: 1 - type: Transform -- uid: 1407 - type: HospitalCurtainsOpen - components: - - pos: 12.5,30.5 - parent: 1 - type: Transform -- uid: 1408 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 4.5,45.5 - parent: 1 - type: Transform -- uid: 1409 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 5.5,45.5 - parent: 1 - type: Transform -- uid: 1410 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 8.5,31.5 - parent: 1 - type: Transform -- uid: 1411 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 10.5,30.5 - parent: 1 - type: Transform -- uid: 1412 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 10.5,31.5 - parent: 1 - type: Transform -- uid: 1413 - type: Morgue - components: - - pos: 2.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1414 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 16.5,40.5 - parent: 1 - type: Transform -- uid: 1415 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: 22.5,36.5 - parent: 1 - type: Transform -- uid: 1416 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 17.5,36.5 - parent: 1 - type: Transform -- uid: 1417 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 16.5,39.5 - parent: 1 - type: Transform -- uid: 1418 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: 16.5,36.5 - parent: 1 - type: Transform -- uid: 1419 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: 16.5,46.5 - parent: 1 - type: Transform -- uid: 1420 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 18.5,44.5 - parent: 1 - type: Transform -- uid: 1421 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 19.5,36.5 - parent: 1 - type: Transform -- uid: 1422 - type: Girder - components: - - pos: 16.5,42.5 - parent: 1 - type: Transform -- uid: 1423 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 21.5,36.5 - parent: 1 - type: Transform -- uid: 1424 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 18.5,36.5 - parent: 1 - type: Transform -- uid: 1425 - type: Girder - components: - - pos: 23.5,36.5 - parent: 1 - type: Transform -- uid: 1426 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 24.5,36.5 - parent: 1 - type: Transform -- uid: 1427 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 24.5,35.5 - parent: 1 - type: Transform -- uid: 1428 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 24.5,34.5 - parent: 1 - type: Transform -- uid: 1429 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 24.5,33.5 - parent: 1 - type: Transform -- uid: 1430 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 24.5,32.5 - parent: 1 - type: Transform -- uid: 1431 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 24.5,31.5 - parent: 1 - type: Transform -- uid: 1432 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 24.5,30.5 - parent: 1 - type: Transform -- uid: 1433 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 24.5,29.5 - parent: 1 - type: Transform -- uid: 1434 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 24.5,28.5 - parent: 1 - type: Transform -- uid: 1435 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 24.5,27.5 - parent: 1 - type: Transform -- uid: 1436 - type: WallReinforced - components: - - pos: 20.5,44.5 - parent: 1 - type: Transform -- uid: 1437 - type: ReinforcedWindow - components: - - pos: 24.5,38.5 - parent: 1 - type: Transform -- uid: 1438 - type: ReinforcedWindow - components: - - pos: 24.5,41.5 - parent: 1 - type: Transform -- uid: 1439 - type: ReinforcedWindow - components: - - pos: 24.5,40.5 - parent: 1 - type: Transform -- uid: 1440 - type: ReinforcedWindow - components: - - pos: 24.5,39.5 - parent: 1 - type: Transform -- uid: 1441 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 24.5,37.5 - parent: 1 - type: Transform -- uid: 1442 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -7.5,7.5 - parent: 1 - type: Transform -- uid: 1443 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,16.5 - parent: 1 - type: Transform -- uid: 1444 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -7.5,16.5 - parent: 1 - type: Transform -- uid: 1445 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -10.5,22.5 - parent: 1 - type: Transform -- uid: 1446 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -9.5,16.5 - parent: 1 - type: Transform -- uid: 1447 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -10.5,16.5 - parent: 1 - type: Transform -- uid: 1448 - type: WallSolidRust - components: - - pos: -6.5,9.5 - parent: 1 - type: Transform -- uid: 1449 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,14.5 - parent: 1 - type: Transform -- uid: 1450 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,13.5 - parent: 1 - type: Transform -- uid: 1451 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -8.5,13.5 - parent: 1 - type: Transform -- uid: 1452 - type: WallSolidRust - components: - - pos: -6.5,11.5 - parent: 1 - type: Transform -- uid: 1453 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,10.5 - parent: 1 - type: Transform -- uid: 1454 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -6.5,12.5 - parent: 1 - type: Transform -- uid: 1455 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,8.5 - parent: 1 - type: Transform -- uid: 1456 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,7.5 - parent: 1 - type: Transform -- uid: 1457 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -8.5,7.5 - parent: 1 - type: Transform -- uid: 1458 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -9.5,7.5 - parent: 1 - type: Transform -- uid: 1459 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -10.5,7.5 - parent: 1 - type: Transform -- uid: 1460 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -10.5,10.5 - parent: 1 - type: Transform -- uid: 1461 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -9.5,10.5 - parent: 1 - type: Transform -- uid: 1462 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -8.5,10.5 - parent: 1 - type: Transform -- uid: 1463 - type: WallSolidRust - components: - - pos: -6.5,15.5 - parent: 1 - type: Transform -- uid: 1464 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -10.5,13.5 - parent: 1 - type: Transform -- uid: 1465 - type: Girder - components: - - pos: -7.5,10.5 - parent: 1 - type: Transform -- uid: 1466 - type: Girder - components: - - pos: -9.5,13.5 - parent: 1 - type: Transform -- uid: 1467 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -7.5,13.5 - parent: 1 - type: Transform -- uid: 1468 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -8.5,20.5 - parent: 1 - type: Transform -- uid: 1469 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -7.5,18.5 - parent: 1 - type: Transform -- uid: 1470 - type: Girder - components: - - pos: -7.5,19.5 - parent: 1 - type: Transform -- uid: 1471 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -8.5,19.5 - parent: 1 - type: Transform -- uid: 1472 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -9.5,19.5 - parent: 1 - type: Transform -- uid: 1473 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -10.5,18.5 - parent: 1 - type: Transform -- uid: 1474 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -8.5,16.5 - parent: 1 - type: Transform -- uid: 1475 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -8.5,23.5 - parent: 1 - type: Transform -- uid: 1476 - type: Girder - components: - - pos: -10.5,24.5 - parent: 1 - type: Transform -- uid: 1477 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -9.5,23.5 - parent: 1 - type: Transform -- uid: 1478 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -10.5,23.5 - parent: 1 - type: Transform -- uid: 1479 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -8.5,21.5 - parent: 1 - type: Transform -- uid: 1480 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -10.5,21.5 - parent: 1 - type: Transform -- uid: 1481 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -10.5,20.5 - parent: 1 - type: Transform -- uid: 1482 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -10.5,19.5 - parent: 1 - type: Transform -- uid: 1483 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -8.5,22.5 - parent: 1 - type: Transform -- uid: 1484 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -10.5,17.5 - parent: 1 - type: Transform -- uid: 1485 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -14.5,7.5 - parent: 1 - type: Transform -- uid: 1486 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -18.5,8.5 - parent: 1 - type: Transform -- uid: 1487 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -16.5,7.5 - parent: 1 - type: Transform -- uid: 1488 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -15.5,7.5 - parent: 1 - type: Transform -- uid: 1489 - type: Girder - components: - - pos: -18.5,7.5 - parent: 1 - type: Transform -- uid: 1490 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -17.5,7.5 - parent: 1 - type: Transform -- uid: 1491 - type: Girder - components: - - pos: -17.5,11.5 - parent: 1 - type: Transform -- uid: 1492 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -18.5,10.5 - parent: 1 - type: Transform -- uid: 1493 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -18.5,11.5 - parent: 1 - type: Transform -- uid: 1494 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -16.5,11.5 - parent: 1 - type: Transform -- uid: 1495 - type: WallSolidRust - components: - - pos: -18.5,12.5 - parent: 1 - type: Transform -- uid: 1496 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -15.5,11.5 - parent: 1 - type: Transform -- uid: 1497 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -14.5,11.5 - parent: 1 - type: Transform -- uid: 1498 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -14.5,15.5 - parent: 1 - type: Transform -- uid: 1499 - type: WallSolid - components: - - pos: -15.5,15.5 - parent: 1 - type: Transform -- uid: 1500 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -16.5,15.5 - parent: 1 - type: Transform -- uid: 1501 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -17.5,15.5 - parent: 1 - type: Transform -- uid: 1502 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -18.5,15.5 - parent: 1 - type: Transform -- uid: 1503 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -18.5,14.5 - parent: 1 - type: Transform -- uid: 1504 - type: WallSolidRust - components: - - pos: -18.5,13.5 - parent: 1 - type: Transform -- uid: 1505 - type: WallSolidRust - components: - - pos: -18.5,9.5 - parent: 1 - type: Transform -- uid: 1506 - type: CableHV - components: - - pos: -18.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1507 - type: CableMV - components: - - pos: -15.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1508 - type: CableMV - components: - - pos: -15.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1509 - type: CableMV - components: - - pos: -16.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1510 - type: CableMV - components: - - pos: -17.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1511 - type: WallSolid - components: - - pos: -14.5,18.5 - parent: 1 - type: Transform -- uid: 1512 - type: WallSolidRust - components: - - pos: -14.5,16.5 - parent: 1 - type: Transform -- uid: 1513 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1514 - type: AirlockScienceLocked - components: - - rot: 3.141592653589793 rad - pos: -14.5,-2.5 - parent: 1 - type: Transform -- uid: 1515 - type: AirlockMaintRnDLocked - components: - - pos: -16.5,-6.5 - parent: 1 - type: Transform -- uid: 1516 - type: CableApcExtension - components: - - pos: -13.5,-2.5 - parent: 1 - type: Transform -- uid: 1517 - type: CableApcExtension - components: - - pos: -14.5,-2.5 - parent: 1 - type: Transform -- uid: 1518 - type: CableApcExtension - components: - - pos: -15.5,-2.5 - parent: 1 - type: Transform -- uid: 1519 - type: CableApcExtension - components: - - pos: -16.5,-2.5 - parent: 1 - type: Transform -- uid: 1520 - type: PottedPlantRandom - components: - - pos: -15.5,-1.5 - parent: 1 - type: Transform -- uid: 1521 - type: TableWood - components: - - pos: -17.5,-4.5 - parent: 1 - type: Transform -- uid: 1522 - type: PottedPlantRandom - components: - - pos: -15.5,-5.5 - parent: 1 - type: Transform -- uid: 1523 - type: CableApcExtension - components: - - pos: -16.5,-3.5 - parent: 1 - type: Transform -- uid: 1524 - type: CableApcExtension - components: - - pos: -16.5,-4.5 - parent: 1 - type: Transform -- uid: 1525 - type: CableApcExtension - components: - - pos: -16.5,-5.5 - parent: 1 - type: Transform -- uid: 1526 - type: CableApcExtension - components: - - pos: -16.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1527 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,-1.5 - parent: 1 - type: Transform -- uid: 1528 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -16.5,-1.5 - parent: 1 - type: Transform -- uid: 1529 - type: Chair - components: - - pos: -17.5,-3.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1530 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-4.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1531 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-4.5 - parent: 1 - type: Transform -- uid: 1532 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: -17.5,-5.5 - parent: 1 - type: Transform -- uid: 1533 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1534 - type: CableHV - components: - - pos: 25.5,5.5 - parent: 1 - type: Transform -- uid: 1535 - type: CableHV - components: - - pos: 24.5,5.5 - parent: 1 - type: Transform -- uid: 1536 - type: CableHV - components: - - pos: 23.5,5.5 - parent: 1 - type: Transform -- uid: 1537 - type: CableHV - components: - - pos: 22.5,5.5 - parent: 1 - type: Transform -- uid: 1538 - type: CableHV - components: - - pos: 21.5,5.5 - parent: 1 - type: Transform -- uid: 1539 - type: CableHV - components: - - pos: 20.5,5.5 - parent: 1 - type: Transform -- uid: 1540 - type: CableHV - components: - - pos: 19.5,5.5 - parent: 1 - type: Transform -- uid: 1541 - type: CableHV - components: - - pos: 18.5,5.5 - parent: 1 - type: Transform -- uid: 1542 - type: CableHV - components: - - pos: 17.5,5.5 - parent: 1 - type: Transform -- uid: 1543 - type: CableHV - components: - - pos: 16.5,5.5 - parent: 1 - type: Transform -- uid: 1544 - type: CableHV - components: - - pos: 15.5,5.5 - parent: 1 - type: Transform -- uid: 1545 - type: CableHV - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform -- uid: 1546 - type: CableHV - components: - - pos: 13.5,5.5 - parent: 1 - type: Transform -- uid: 1547 - type: CableHV - components: - - pos: 12.5,5.5 - parent: 1 - type: Transform -- uid: 1548 - type: CableHV - components: - - pos: 11.5,5.5 - parent: 1 - type: Transform -- uid: 1549 - type: CableHV - components: - - pos: 10.5,5.5 - parent: 1 - type: Transform -- uid: 1550 - type: CableHV - components: - - pos: 9.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1551 - type: CableHV - components: - - pos: 8.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1552 - type: CableHV - components: - - pos: 7.5,5.5 - parent: 1 - type: Transform -- uid: 1553 - type: CableHV - components: - - pos: 6.5,5.5 - parent: 1 - type: Transform -- uid: 1554 - type: CableHV - components: - - pos: 5.5,5.5 - parent: 1 - type: Transform -- uid: 1555 - type: CableHV - components: - - pos: 22.5,6.5 - parent: 1 - type: Transform -- uid: 1556 - type: CableHV - components: - - pos: 22.5,7.5 - parent: 1 - type: Transform -- uid: 1557 - type: CableHV - components: - - pos: 22.5,8.5 - parent: 1 - type: Transform -- uid: 1558 - type: CableHV - components: - - pos: 22.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1559 - type: CableHV - components: - - pos: 23.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1560 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -4.5,8.5 - parent: 1 - type: Transform -- uid: 1561 - type: CableHV - components: - - pos: 3.5,5.5 - parent: 1 - type: Transform -- uid: 1562 - type: CableHV - components: - - pos: 2.5,5.5 - parent: 1 - type: Transform -- uid: 1563 - type: CableHV - components: - - pos: 1.5,5.5 - parent: 1 - type: Transform -- uid: 1564 - type: CableHV - components: - - pos: 0.5,5.5 - parent: 1 - type: Transform -- uid: 1565 - type: CableHV - components: - - pos: -0.5,5.5 - parent: 1 - type: Transform -- uid: 1566 - type: CableHV - components: - - pos: -1.5,5.5 - parent: 1 - type: Transform -- uid: 1567 - type: CableHV - components: - - pos: -2.5,5.5 - parent: 1 - type: Transform -- uid: 1568 - type: CableHV - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform -- uid: 1569 - type: CableHV - components: - - pos: -4.5,5.5 - parent: 1 - type: Transform -- uid: 1570 - type: CableHV - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform -- uid: 1571 - type: CableHV - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform -- uid: 1572 - type: CableHV - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform -- uid: 1573 - type: CableHV - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1574 - type: CableHV - components: - - pos: -5.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1575 - type: CableHV - components: - - pos: -5.5,10.5 - parent: 1 - type: Transform -- uid: 1576 - type: CableHV - components: - - pos: -5.5,11.5 - parent: 1 - type: Transform -- uid: 1577 - type: CableHV - components: - - pos: -5.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1578 - type: CableHV - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1579 - type: CableHV - components: - - pos: -5.5,14.5 - parent: 1 - type: Transform -- uid: 1580 - type: CableHV - components: - - pos: -5.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1581 - type: CableHV - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1582 - type: CableHV - components: - - pos: -5.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1583 - type: CableHV - components: - - pos: -6.5,17.5 - parent: 1 - type: Transform -- uid: 1584 - type: CableHV - components: - - pos: -7.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1585 - type: CableHV - components: - - pos: -8.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1586 - type: CableHV - components: - - pos: -9.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1587 - type: CableHV - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1588 - type: Beaker - components: - - pos: 19.002142,-11.284756 - parent: 1 - type: Transform - - solutions: - beaker: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 50 - reagents: - - Quantity: 30 - ReagentId: Hyronalin - type: SolutionContainerManager -- uid: 1589 - type: WallReinforced - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform -- uid: 1590 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-11.5 - parent: 1 - type: Transform -- uid: 1591 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-11.5 - parent: 1 - type: Transform -- uid: 1592 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-11.5 - parent: 1 - type: Transform -- uid: 1593 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-11.5 - parent: 1 - type: Transform -- uid: 1594 - type: PottedPlantRandom - components: - - pos: 13.5,-10.5 - parent: 1 - type: Transform -- uid: 1595 - type: WallReinforced - components: - - pos: 13.5,-11.5 - parent: 1 - type: Transform -- uid: 1596 - type: SignSecureMedRed - components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform -- uid: 1597 - type: AirlockGlass - components: - - pos: 12.5,-0.5 - parent: 1 - type: Transform -- uid: 1598 - type: AirlockGlass - components: - - pos: 12.5,-1.5 - parent: 1 - type: Transform -- uid: 1599 - type: AirlockGlass - components: - - pos: 12.5,-2.5 - parent: 1 - type: Transform -- uid: 1600 - type: Airlock - components: - - pos: 9.5,0.5 - parent: 1 - type: Transform -- uid: 1601 - type: Airlock - components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform -- uid: 1602 - type: AirlockMaintLocked - components: - - pos: 10.5,-4.5 - parent: 1 - type: Transform -- uid: 1603 - type: AirlockMaintLocked - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform -- uid: 1604 - type: AirlockMaintLocked - components: - - pos: 22.5,3.5 - parent: 1 - type: Transform -- uid: 1605 - type: AirlockMaint - components: - - pos: 24.5,-6.5 - parent: 1 - type: Transform -- uid: 1606 - type: AirlockMaintLocked - components: - - pos: -15.5,2.5 - parent: 1 - type: Transform -- uid: 1607 - type: AirlockMaintLocked - components: - - pos: -26.5,-3.5 - parent: 1 - type: Transform -- uid: 1608 - type: Airlock - components: - - pos: -26.5,3.5 - parent: 1 - type: Transform -- uid: 1609 - type: Airlock - components: - - pos: -24.5,2.5 - parent: 1 - type: Transform -- uid: 1610 - type: Airlock - components: - - pos: -24.5,0.5 - parent: 1 - type: Transform -- uid: 1611 - type: Airlock - components: - - pos: -24.5,-1.5 - parent: 1 - type: Transform -- uid: 1612 - type: AirlockMaintLocked - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform -- uid: 1613 - type: AirlockMaintLocked - components: - - pos: -10.5,25.5 - parent: 1 - type: Transform -- uid: 1614 - type: Morgue - components: - - pos: 1.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1615 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 22.5,22.5 - parent: 1 - type: Transform -- uid: 1616 - type: Morgue - components: - - rot: 3.141592653589793 rad - pos: -1.5,14.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1617 - type: AirlockMedicalGlassLocked - components: - - pos: 1.5,29.5 - parent: 1 - type: Transform -- uid: 1618 - type: AirlockMedicalGlassLocked - components: - - pos: 1.5,30.5 - parent: 1 - type: Transform -- uid: 1619 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 4.5,16.5 - parent: 1 - type: Transform -- uid: 1620 - type: AirlockMaintChemLocked - components: - - pos: -3.5,18.5 - parent: 1 - type: Transform -- uid: 1621 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 4.5,15.5 - parent: 1 - type: Transform -- uid: 1622 - type: Morgue - components: - - rot: 3.141592653589793 rad - pos: 2.5,14.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1623 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 4.5,17.5 - parent: 1 - type: Transform -- uid: 1624 - type: FloraTree06 - components: - - pos: 12.05491,24.85312 - parent: 1 - type: Transform -- uid: 1625 - type: Window - components: - - pos: 12.5,27.5 - parent: 1 - type: Transform -- uid: 1626 - type: WallSolid - components: - - pos: 11.5,21.5 - parent: 1 - type: Transform -- uid: 1627 - type: WallSolidRust - components: - - pos: 9.5,27.5 - parent: 1 - type: Transform -- uid: 1628 - type: WallSolid - components: - - pos: 7.5,27.5 - parent: 1 - type: Transform -- uid: 1629 - type: AirlockMedicalLocked - components: - - pos: 1.5,33.5 - parent: 1 - type: Transform -- uid: 1630 - type: WallSolidRust - components: - - pos: 6.5,27.5 - parent: 1 - type: Transform -- uid: 1631 - type: Grille - components: - - pos: 12.5,27.5 - parent: 1 - type: Transform -- uid: 1632 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 11.5,26.5 - parent: 1 - type: Transform -- uid: 1633 - type: WallSolidRust - components: - - pos: -2.5,14.5 - parent: 1 - type: Transform -- uid: 1634 - type: Table - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform -- uid: 1635 - type: Window - components: - - pos: 5.5,26.5 - parent: 1 - type: Transform -- uid: 1636 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 1.5707963267948966 rad - pos: 32.5,10.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 1637 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 1.5707963267948966 rad - pos: 32.5,8.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 1638 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 1.5707963267948966 rad - pos: 32.5,16.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 1639 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 1.5707963267948966 rad - pos: 32.5,18.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 1640 - type: AirlockExternal - components: - - pos: 29.5,18.5 - parent: 1 - type: Transform -- uid: 1641 - type: AirlockExternal - components: - - pos: 29.5,16.5 - parent: 1 - type: Transform -- uid: 1642 - type: AirlockExternal - components: - - pos: 29.5,10.5 - parent: 1 - type: Transform -- uid: 1643 - type: CableMV - components: - - pos: 29.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1644 - type: AirlockChapelLocked - components: - - pos: 18.5,-1.5 - parent: 1 - type: Transform -- uid: 1645 - type: AirlockExternal - components: - - pos: 29.5,8.5 - parent: 1 - type: Transform -- uid: 1646 - type: AirlockMaintChapelLocked - components: - - pos: 19.5,-3.5 - parent: 1 - type: Transform -- uid: 1647 - type: WindowDirectional - components: - - pos: 19.5,0.5 - parent: 1 - type: Transform -- uid: 1648 - type: WindoorChapelLocked - components: - - pos: 20.5,0.5 - parent: 1 - type: Transform -- uid: 1649 - type: WindoorChemistryLocked - components: - - pos: -0.5,28.5 - parent: 1 - type: Transform -- uid: 1650 - type: WindoorChemistryLocked - components: - - rot: -1.5707963267948966 rad - pos: 1.5,26.5 - parent: 1 - type: Transform -- uid: 1651 - type: WindoorChemistryLocked - components: - - rot: -1.5707963267948966 rad - pos: 1.5,25.5 - parent: 1 - type: Transform -- uid: 1652 - type: WindoorSecure - components: - - rot: 3.141592653589793 rad - pos: -0.5,28.5 - parent: 1 - type: Transform -- uid: 1653 - type: WindoorSecure - components: - - rot: 1.5707963267948966 rad - pos: 1.5,26.5 - parent: 1 - type: Transform -- uid: 1654 - type: WindoorSecure - components: - - rot: 1.5707963267948966 rad - pos: 1.5,25.5 - parent: 1 - type: Transform -- uid: 1655 - type: CableApcExtension - components: - - pos: 16.5,-5.5 - parent: 1 - type: Transform -- uid: 1656 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1657 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1658 - type: CableApcExtension - components: - - pos: 15.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1659 - type: CableApcExtension - components: - - pos: 15.5,-7.5 - parent: 1 - type: Transform -- uid: 1660 - type: CableApcExtension - components: - - pos: 15.5,-9.5 - parent: 1 - type: Transform -- uid: 1661 - type: WallReinforced - components: - - pos: 17.5,-8.5 - parent: 1 - type: Transform -- uid: 1662 - type: CableApcExtension - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform -- uid: 1663 - type: WallSolid - components: - - pos: 17.5,-9.5 - parent: 1 - type: Transform -- uid: 1664 - type: Grille - components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform -- uid: 1665 - type: CableApcExtension - components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1666 - type: ToiletDirtyWater - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-10.5 - parent: 1 - type: Transform - - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 1856 - type: ContainerContainer - - bodyType: Static - type: Physics -- uid: 1667 - type: FireAxeCabinet - components: - - pos: 14.5,-6.5 - parent: 1 - type: Transform -- uid: 1668 - type: Table - components: - - pos: 16.5,-7.5 - parent: 1 - type: Transform -- uid: 1669 - type: Table - components: - - pos: 16.5,-8.5 - parent: 1 - type: Transform -- uid: 1670 - type: Table - components: - - pos: 16.5,-9.5 - parent: 1 - type: Transform -- uid: 1671 - type: HighPowerMicroLaserStockPart - components: - - pos: 14.5277,-7.4270515 - parent: 1 - type: Transform -- uid: 1672 - type: WeaponFlareGun - components: - - pos: 16.491018,-8.470055 - parent: 1 - type: Transform -- uid: 1673 - type: MaintenanceWeaponSpawner - components: - - pos: 16.5,-9.5 - parent: 1 - type: Transform -- uid: 1674 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 12.5,0.5 - parent: 1 - type: Transform -- uid: 1675 - type: CableMV - components: - - pos: 10.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1676 - type: CableMV - components: - - pos: 10.5,-3.5 - parent: 1 - type: Transform -- uid: 1677 - type: CableMV - components: - - pos: 10.5,-2.5 - parent: 1 - type: Transform -- uid: 1678 - type: CableMV - components: - - pos: 10.5,-1.5 - parent: 1 - type: Transform -- uid: 1679 - type: CableMV - components: - - pos: 10.5,-0.5 - parent: 1 - type: Transform -- uid: 1680 - type: CableMV - components: - - pos: 10.5,0.5 - parent: 1 - type: Transform -- uid: 1681 - type: CableMV - components: - - pos: 11.5,0.5 - parent: 1 - type: Transform -- uid: 1682 - type: CableMV - components: - - pos: 12.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1683 - type: CableApcExtension - components: - - pos: 12.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1684 - type: CableApcExtension - components: - - pos: 11.5,0.5 - parent: 1 - type: Transform -- uid: 1685 - type: CableApcExtension - components: - - pos: 10.5,0.5 - parent: 1 - type: Transform -- uid: 1686 - type: CableApcExtension - components: - - pos: 9.5,0.5 - parent: 1 - type: Transform -- uid: 1687 - type: CableApcExtension - components: - - pos: 8.5,0.5 - parent: 1 - type: Transform -- uid: 1688 - type: CableApcExtension - components: - - pos: 8.5,1.5 - parent: 1 - type: Transform -- uid: 1689 - type: CableApcExtension - components: - - pos: 10.5,-0.5 - parent: 1 - type: Transform -- uid: 1690 - type: CableApcExtension - components: - - pos: 10.5,-1.5 - parent: 1 - type: Transform -- uid: 1691 - type: CableApcExtension - components: - - pos: 10.5,-2.5 - parent: 1 - type: Transform -- uid: 1692 - type: CableApcExtension - components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform -- uid: 1693 - type: CableApcExtension - components: - - pos: 8.5,-2.5 - parent: 1 - type: Transform -- uid: 1694 - type: CableApcExtension - components: - - pos: 7.5,-2.5 - parent: 1 - type: Transform -- uid: 1695 - type: CableApcExtension - components: - - pos: 11.5,-2.5 - parent: 1 - type: Transform -- uid: 1696 - type: CableApcExtension - components: - - pos: 12.5,-2.5 - parent: 1 - type: Transform -- uid: 1697 - type: CableApcExtension - components: - - pos: 13.5,-2.5 - parent: 1 - type: Transform -- uid: 1698 - type: CableApcExtension - components: - - pos: 14.5,-2.5 - parent: 1 - type: Transform -- uid: 1699 - type: CableApcExtension - components: - - pos: 15.5,-2.5 - parent: 1 - type: Transform -- uid: 1700 - type: CableApcExtension - components: - - pos: 16.5,-2.5 - parent: 1 - type: Transform -- uid: 1701 - type: CableApcExtension - components: - - pos: 17.5,-2.5 - parent: 1 - type: Transform -- uid: 1702 - type: CableApcExtension - components: - - pos: 15.5,-1.5 - parent: 1 - type: Transform -- uid: 1703 - type: CableApcExtension - components: - - pos: 15.5,-0.5 - parent: 1 - type: Transform -- uid: 1704 - type: CableApcExtension - components: - - pos: 15.5,0.5 - parent: 1 - type: Transform -- uid: 1705 - type: CableApcExtension - components: - - pos: 15.5,1.5 - parent: 1 - type: Transform -- uid: 1706 - type: CableApcExtension - components: - - pos: 15.5,2.5 - parent: 1 - type: Transform -- uid: 1707 - type: CableApcExtension - components: - - pos: 15.5,3.5 - parent: 1 - type: Transform -- uid: 1708 - type: CableApcExtension - components: - - pos: 17.5,-1.5 - parent: 1 - type: Transform -- uid: 1709 - type: CableApcExtension - components: - - pos: 18.5,-1.5 - parent: 1 - type: Transform -- uid: 1710 - type: CableApcExtension - components: - - pos: 19.5,-1.5 - parent: 1 - type: Transform -- uid: 1711 - type: CableApcExtension - components: - - pos: 20.5,-1.5 - parent: 1 - type: Transform -- uid: 1712 - type: CableApcExtension - components: - - pos: 20.5,-0.5 - parent: 1 - type: Transform -- uid: 1713 - type: CableApcExtension - components: - - pos: 20.5,0.5 - parent: 1 - type: Transform -- uid: 1714 - type: CableApcExtension - components: - - pos: 20.5,1.5 - parent: 1 - type: Transform -- uid: 1715 - type: CableApcExtension - components: - - pos: 21.5,-1.5 - parent: 1 - type: Transform -- uid: 1716 - type: CableApcExtension - components: - - pos: 20.5,-2.5 - parent: 1 - type: Transform -- uid: 1717 - type: CableApcExtension - components: - - pos: 10.5,-3.5 - parent: 1 - type: Transform -- uid: 1718 - type: CableApcExtension - components: - - pos: 10.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1719 - type: CableApcExtension - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1720 - type: CableApcExtension - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform -- uid: 1721 - type: CableApcExtension - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1722 - type: CableApcExtension - components: - - pos: 13.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1723 - type: CableApcExtension - components: - - pos: 14.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1724 - type: CableApcExtension - components: - - pos: 15.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1725 - type: CableApcExtension - components: - - pos: 15.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1726 - type: CableApcExtension - components: - - pos: 17.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1727 - type: CableApcExtension - components: - - pos: 18.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1728 - type: CableApcExtension - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1729 - type: CableApcExtension - components: - - pos: 20.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1730 - type: CableApcExtension - components: - - pos: 21.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1731 - type: CableApcExtension - components: - - pos: 22.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1732 - type: CableApcExtension - components: - - pos: 23.5,-5.5 - parent: 1 - type: Transform -- uid: 1733 - type: CableApcExtension - components: - - pos: 24.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1734 - type: CableApcExtension - components: - - pos: 25.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1735 - type: CableApcExtension - components: - - pos: 26.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1736 - type: CableApcExtension - components: - - pos: 27.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1737 - type: CableApcExtension - components: - - pos: 28.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1738 - type: CableApcExtension - components: - - pos: 28.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1739 - type: CableApcExtension - components: - - pos: 28.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1740 - type: CableApcExtension - components: - - pos: 28.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1741 - type: FirelockGlass - components: - - pos: -7.5,3.5 - parent: 1 - type: Transform -- uid: 1742 - type: Firelock - components: - - pos: 22.5,1.5 - parent: 1 - type: Transform -- uid: 1743 - type: Firelock - components: - - pos: 23.5,1.5 - parent: 1 - type: Transform -- uid: 1744 - type: Firelock - components: - - pos: 20.5,-5.5 - parent: 1 - type: Transform -- uid: 1745 - type: Firelock - components: - - pos: 20.5,-4.5 - parent: 1 - type: Transform -- uid: 1746 - type: Firelock - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform -- uid: 1747 - type: FirelockEdge - components: - - pos: -1.5,-5.5 - parent: 1 - type: Transform -- uid: 1748 - type: FirelockEdge - components: - - pos: 28.5,-5.5 - parent: 1 - type: Transform -- uid: 1749 - type: FirelockGlass - components: - - pos: -10.5,1.5 - parent: 1 - type: Transform -- uid: 1750 - type: FirelockEdge - components: - - pos: -16.5,-5.5 - parent: 1 - type: Transform -- uid: 1751 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 1 - type: Transform -- uid: 1752 - type: FirelockGlass - components: - - pos: 10.5,3.5 - parent: 1 - type: Transform -- uid: 1753 - type: FirelockGlass - components: - - pos: 11.5,3.5 - parent: 1 - type: Transform -- uid: 1754 - type: FirelockGlass - components: - - pos: 24.5,6.5 - parent: 1 - type: Transform -- uid: 1755 - type: FirelockGlass - components: - - pos: 24.5,5.5 - parent: 1 - type: Transform -- uid: 1756 - type: AirlockGlass - components: - - pos: 24.5,6.5 - parent: 1 - type: Transform -- uid: 1757 - type: AirlockGlass - components: - - pos: 24.5,5.5 - parent: 1 - type: Transform -- uid: 1758 - type: FirelockGlass - components: - - pos: -10.5,6.5 - parent: 1 - type: Transform -- uid: 1759 - type: FirelockGlass - components: - - pos: -10.5,5.5 - parent: 1 - type: Transform -- uid: 1760 - type: FirelockGlass - components: - - pos: -10.5,4.5 - parent: 1 - type: Transform -- uid: 1761 - type: FirelockGlass - components: - - pos: -11.5,7.5 - parent: 1 - type: Transform -- uid: 1762 - type: FirelockGlass - components: - - pos: -12.5,7.5 - parent: 1 - type: Transform -- uid: 1763 - type: FirelockGlass - components: - - pos: -13.5,7.5 - parent: 1 - type: Transform -- uid: 1764 - type: FirelockGlass - components: - - pos: -14.5,6.5 - parent: 1 - type: Transform -- uid: 1765 - type: FirelockGlass - components: - - pos: -14.5,5.5 - parent: 1 - type: Transform -- uid: 1766 - type: FirelockGlass - components: - - pos: -14.5,4.5 - parent: 1 - type: Transform -- uid: 1767 - type: FirelockGlass - components: - - pos: 12.5,6.5 - parent: 1 - type: Transform -- uid: 1768 - type: FirelockGlass - components: - - pos: 12.5,5.5 - parent: 1 - type: Transform -- uid: 1769 - type: CableApcExtension - components: - - pos: -61.5,-10.5 - parent: 1 - type: Transform -- uid: 1770 - type: AirlockExternalGlass - components: - - rot: 3.141592653589793 rad - pos: -78.5,-10.5 - parent: 1 - type: Transform -- uid: 1771 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -64.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1772 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1773 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1774 - type: CarpetChapel - components: - - pos: 13.5,-0.5 - parent: 1 - type: Transform -- uid: 1775 - type: CarpetChapel - components: - - pos: 13.5,1.5 - parent: 1 - type: Transform -- uid: 1776 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 13.5,2.5 - parent: 1 - type: Transform -- uid: 1777 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 13.5,0.5 - parent: 1 - type: Transform -- uid: 1778 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 14.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1779 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1780 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 14.5,0.5 - parent: 1 - type: Transform -- uid: 1781 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 14.5,2.5 - parent: 1 - type: Transform -- uid: 1782 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 17.5,2.5 - parent: 1 - type: Transform -- uid: 1783 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 17.5,0.5 - parent: 1 - type: Transform -- uid: 1784 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 17.5,-1.5 - parent: 1 - type: Transform -- uid: 1785 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 1 - type: Transform -- uid: 1786 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-0.5 - parent: 1 - type: Transform -- uid: 1787 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 17.5,1.5 - parent: 1 - type: Transform -- uid: 1788 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 14.5,1.5 - parent: 1 - type: Transform -- uid: 1789 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 1 - type: Transform -- uid: 1790 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1791 - type: CarpetChapel - components: - - pos: 16.5,-2.5 - parent: 1 - type: Transform -- uid: 1792 - type: CarpetChapel - components: - - pos: 16.5,-0.5 - parent: 1 - type: Transform -- uid: 1793 - type: CarpetChapel - components: - - pos: 16.5,1.5 - parent: 1 - type: Transform -- uid: 1794 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 16.5,2.5 - parent: 1 - type: Transform -- uid: 1795 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 16.5,0.5 - parent: 1 - type: Transform -- uid: 1796 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 1 - type: Transform -- uid: 1797 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1798 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1799 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 1 - type: Transform -- uid: 1800 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 15.5,0.5 - parent: 1 - type: Transform -- uid: 1801 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 15.5,1.5 - parent: 1 - type: Transform -- uid: 1802 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 15.5,2.5 - parent: 1 - type: Transform -- uid: 1803 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 15.5,3.5 - parent: 1 - type: Transform -- uid: 1804 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 14.5,3.5 - parent: 1 - type: Transform -- uid: 1805 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 13.5,3.5 - parent: 1 - type: Transform -- uid: 1806 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 16.5,3.5 - parent: 1 - type: Transform -- uid: 1807 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 17.5,3.5 - parent: 1 - type: Transform -- uid: 1808 - type: TableStone - components: - - pos: 13.5,3.5 - parent: 1 - type: Transform -- uid: 1809 - type: TableStone - components: - - pos: 14.5,3.5 - parent: 1 - type: Transform -- uid: 1810 - type: AltarSpawner - components: - - pos: 15.5,3.5 - parent: 1 - type: Transform -- uid: 1811 - type: TableStone - components: - - pos: 16.5,3.5 - parent: 1 - type: Transform -- uid: 1812 - type: TableStone - components: - - pos: 17.5,3.5 - parent: 1 - type: Transform -- uid: 1813 - type: FoodBreadPlain - components: - - pos: 13.549538,3.6140766 - parent: 1 - type: Transform -- uid: 1814 - type: DrinkWineGlass - components: - - pos: 16.440163,3.6297016 - parent: 1 - type: Transform -- uid: 1815 - type: DrinkWineBottleFull - components: - - pos: 16.737038,3.7859516 - parent: 1 - type: Transform -- uid: 1816 - type: ChurchOrganInstrument - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 1 - type: Transform -- uid: 1817 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 14.5,-0.5 - parent: 1 - type: Transform -- uid: 1818 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 14.5,0.5 - parent: 1 - type: Transform -- uid: 1819 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 14.5,1.5 - parent: 1 - type: Transform -- uid: 1820 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-2.5 - parent: 1 - type: Transform -- uid: 1821 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 16.5,-0.5 - parent: 1 - type: Transform -- uid: 1822 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 16.5,0.5 - parent: 1 - type: Transform -- uid: 1823 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 16.5,1.5 - parent: 1 - type: Transform -- uid: 1824 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 13.5,0.5 - parent: 1 - type: Transform -- uid: 1825 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 13.5,1.5 - parent: 1 - type: Transform -- uid: 1826 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 17.5,0.5 - parent: 1 - type: Transform -- uid: 1827 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 17.5,1.5 - parent: 1 - type: Transform -- uid: 1828 - type: Crematorium - components: - - pos: 20.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1829 - type: Morgue - components: - - pos: 19.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1830 - type: BedsheetCult - components: - - pos: 21.5,-0.5 - parent: 1 - type: Transform -- uid: 1831 - type: Bed - components: - - pos: 21.5,-0.5 - parent: 1 - type: Transform -- uid: 1832 - type: Rack - components: - - pos: 20.5,-2.5 - parent: 1 - type: Transform -- uid: 1833 - type: TableWood - components: - - pos: 21.5,-2.5 - parent: 1 - type: Transform -- uid: 1834 - type: TableWood - components: - - pos: 21.5,-1.5 - parent: 1 - type: Transform -- uid: 1835 - type: VendingMachineChapel - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,-0.5 - parent: 1 - type: Transform -- uid: 1836 - type: ClothingHeadHatHoodCulthood - components: - - pos: 20.792824,-2.5214906 - parent: 1 - type: Transform -- uid: 1837 - type: ClothingOuterRobesCult - components: - - pos: 20.402199,-2.4433656 - parent: 1 - type: Transform -- uid: 1838 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1839 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1840 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1841 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1842 - type: Poweredlight - components: - - pos: 7.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1843 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1844 - type: PoweredSmallLight - components: - - pos: 17.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1845 - type: PoweredSmallLight - components: - - pos: 29.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1846 - type: PoweredSmallLight - components: - - pos: 25.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1847 - type: CableApcExtension - components: - - pos: 10.5,1.5 - parent: 1 - type: Transform -- uid: 1848 - type: CableApcExtension - components: - - pos: 10.5,2.5 - parent: 1 - type: Transform -- uid: 1849 - type: CableApcExtension - components: - - pos: 10.5,3.5 - parent: 1 - type: Transform -- uid: 1850 - type: CableApcExtension - components: - - pos: 10.5,4.5 - parent: 1 - type: Transform -- uid: 1851 - type: CableApcExtension - components: - - pos: 9.5,4.5 - parent: 1 - type: Transform -- uid: 1852 - type: CableApcExtension - components: - - pos: 8.5,4.5 - parent: 1 - type: Transform -- uid: 1853 - type: CableApcExtension - components: - - pos: 7.5,4.5 - parent: 1 - type: Transform -- uid: 1854 - type: CableApcExtension - components: - - pos: 6.5,4.5 - parent: 1 - type: Transform -- uid: 1855 - type: CableApcExtension - components: - - pos: 5.5,4.5 - parent: 1 - type: Transform -- uid: 1856 - type: ClothingHeadHatCatEars - components: - - flags: InContainer - type: MetaData - - parent: 1666 - type: Transform - - canCollide: False - type: Physics -- uid: 1857 - type: WallReinforced - components: - - pos: -17.5,-15.5 - parent: 1 - type: Transform -- uid: 1858 - type: WallReinforced - components: - - pos: -18.5,-15.5 - parent: 1 - type: Transform -- uid: 1859 - type: MachineAnomalyGenerator - components: - - pos: -14.5,-11.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound -- uid: 1860 - type: CableApcExtension - components: - - pos: -9.5,-12.5 - parent: 1 - type: Transform -- uid: 1861 - type: CableApcExtension - components: - - pos: -10.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1862 - type: CableApcExtension - components: - - pos: -11.5,-12.5 - parent: 1 - type: Transform -- uid: 1863 - type: CableApcExtension - components: - - pos: -12.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1864 - type: CableApcExtension - components: - - pos: -13.5,-12.5 - parent: 1 - type: Transform -- uid: 1865 - type: CableApcExtension - components: - - pos: -14.5,-12.5 - parent: 1 - type: Transform -- uid: 1866 - type: CableApcExtension - components: - - pos: -15.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1867 - type: CableApcExtension - components: - - pos: -16.5,-12.5 - parent: 1 - type: Transform -- uid: 1868 - type: WallSolidRust - components: - - pos: -6.5,35.5 - parent: 1 - type: Transform -- uid: 1869 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-15.5 - parent: 1 - type: Transform -- uid: 1870 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-15.5 - parent: 1 - type: Transform -- uid: 1871 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-15.5 - parent: 1 - type: Transform -- uid: 1872 - type: Table - components: - - pos: 25.5,-7.5 - parent: 1 - type: Transform -- uid: 1873 - type: ToolboxElectricalFilled - components: - - pos: 25.496317,-7.483915 - parent: 1 - type: Transform -- uid: 1874 - type: Table - components: - - pos: 22.5,-7.5 - parent: 1 - type: Transform -- uid: 1875 - type: ClothingBeltUtilityFilled - components: - - pos: -2.5,-9.5 - parent: 1 - type: Transform -- uid: 1876 - type: Rack - components: - - pos: -2.5,-9.5 - parent: 1 - type: Transform -- uid: 1877 - type: CableApcExtension - components: - - pos: -17.5,-12.5 - parent: 1 - type: Transform -- uid: 1878 - type: CableApcExtension - components: - - pos: -17.5,-11.5 - parent: 1 - type: Transform -- uid: 1879 - type: WallReinforced - components: - - pos: 15.5,33.5 - parent: 1 - type: Transform -- uid: 1880 - type: WallReinforced - components: - - pos: 14.5,33.5 - parent: 1 - type: Transform -- uid: 1881 - type: WallSolidRust - components: - - pos: 13.5,25.5 - parent: 1 - type: Transform -- uid: 1882 - type: WallReinforced - components: - - pos: 17.5,27.5 - parent: 1 - type: Transform -- uid: 1883 - type: WallSolid - components: - - pos: 19.5,27.5 - parent: 1 - type: Transform -- uid: 1884 - type: WallSolid - components: - - pos: 20.5,27.5 - parent: 1 - type: Transform -- uid: 1885 - type: WallReinforced - components: - - pos: 15.5,27.5 - parent: 1 - type: Transform -- uid: 1886 - type: ReinforcedWindow - components: - - pos: 13.5,29.5 - parent: 1 - type: Transform -- uid: 1887 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 6.5,30.5 - parent: 1 - type: Transform -- uid: 1888 - type: WallReinforced - components: - - pos: 14.5,27.5 - parent: 1 - type: Transform -- uid: 1889 - type: WallSolidRust - components: - - pos: 2.5,41.5 - parent: 1 - type: Transform -- uid: 1890 - type: Grille - components: - - pos: 13.5,29.5 - parent: 1 - type: Transform -- uid: 1891 - type: WallSolidRust - components: - - pos: 3.5,41.5 - parent: 1 - type: Transform -- uid: 1892 - type: WallSolidRust - components: - - pos: 8.5,27.5 - parent: 1 - type: Transform -- uid: 1893 - type: WallSolid - components: - - pos: 10.5,27.5 - parent: 1 - type: Transform -- uid: 1894 - type: Grille - components: - - pos: 5.5,26.5 - parent: 1 - type: Transform -- uid: 1895 - type: WallSolid - components: - - pos: 2.5,13.5 - parent: 1 - type: Transform -- uid: 1896 - type: HospitalCurtainsOpen - components: - - pos: 7.5,30.5 - parent: 1 - type: Transform -- uid: 1897 - type: HospitalCurtainsOpen - components: - - pos: 8.5,30.5 - parent: 1 - type: Transform -- uid: 1898 - type: AirlockChemistryLocked - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform -- uid: 1899 - type: WallSolid - components: - - pos: 8.5,20.5 - parent: 1 - type: Transform -- uid: 1900 - type: WallSolidRust - components: - - pos: 12.5,21.5 - parent: 1 - type: Transform -- uid: 1901 - type: AirlockMaintMedLocked - components: - - pos: 13.5,35.5 - parent: 1 - type: Transform -- uid: 1902 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -51.5,47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1903 - type: SignMedical - components: - - pos: 1.5,31.5 - parent: 1 - type: Transform -- uid: 1904 - type: ChairOfficeDark - components: - - pos: -54.5,49.5 - parent: 1 - type: Transform -- uid: 1905 - type: ChairWood - components: - - pos: -57.5,49.5 - parent: 1 - type: Transform -- uid: 1906 - type: SignChem - components: - - pos: -3.5,28.5 - parent: 1 - type: Transform -- uid: 1907 - type: SignChem - components: - - pos: 1.5,27.5 - parent: 1 - type: Transform -- uid: 1908 - type: HospitalCurtainsOpen - components: - - pos: 9.5,30.5 - parent: 1 - type: Transform -- uid: 1909 - type: Bed - components: - - pos: -53.5,49.5 - parent: 1 - type: Transform -- uid: 1910 - type: BedsheetOrange - components: - - pos: -56.5,49.5 - parent: 1 - type: Transform -- uid: 1911 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 10.5,-14.5 - parent: 1 - type: Transform -- uid: 1912 - type: BedsheetOrange - components: - - pos: -53.5,49.5 - parent: 1 - type: Transform -- uid: 1913 - type: WardrobePrisonFilled - components: - - pos: -50.5,51.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1914 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 9.5,-14.5 - parent: 1 - type: Transform -- uid: 1915 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 10.5,-12.5 - parent: 1 - type: Transform -- uid: 1916 - type: Bed - components: - - pos: -50.5,49.5 - parent: 1 - type: Transform -- uid: 1917 - type: WardrobePrisonFilled - components: - - pos: -53.5,51.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1918 - type: Bed - components: - - pos: -56.5,49.5 - parent: 1 - type: Transform -- uid: 1919 - type: WardrobePrisonFilled - components: - - pos: -56.5,51.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1920 - type: WallVaultRock - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 1 - type: Transform -- uid: 1921 - type: WallVaultRock - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 1 - type: Transform -- uid: 1922 - type: BedsheetOrange - components: - - pos: -50.5,49.5 - parent: 1 - type: Transform -- uid: 1923 - type: LockerSecurityFilled - components: - - pos: -63.5,55.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1924 - type: LockerSecurityFilled - components: - - pos: -65.5,55.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1925 - type: LockerSecurityFilled - components: - - pos: -62.5,55.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1926 - type: WallReinforced - components: - - pos: -55.5,48.5 - parent: 1 - type: Transform -- uid: 1927 - type: WallReinforced - components: - - pos: -55.5,49.5 - parent: 1 - type: Transform -- uid: 1928 - type: VendingMachineChemDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,19.5 - parent: 1 - type: Transform -- uid: 1929 - type: WallReinforced - components: - - pos: -2.5,11.5 - parent: 1 - type: Transform -- uid: 1930 - type: chem_master - components: - - pos: -4.5,26.5 - parent: 1 - type: Transform -- uid: 1931 - type: chem_master - components: - - pos: -1.5,27.5 - parent: 1 - type: Transform -- uid: 1932 - type: chem_dispenser - components: - - pos: -2.5,27.5 - parent: 1 - type: Transform -- uid: 1933 - type: chem_dispenser - components: - - pos: -4.5,25.5 - parent: 1 - type: Transform -- uid: 1934 - type: TableFrame - components: - - pos: -4.5,21.5 - parent: 1 - type: Transform -- uid: 1935 - type: TableGlass - components: - - pos: -3.5,27.5 - parent: 1 - type: Transform -- uid: 1936 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,27.5 - parent: 1 - type: Transform -- uid: 1937 - type: TableGlass - components: - - pos: 0.5,27.5 - parent: 1 - type: Transform -- uid: 1938 - type: TableGlass - components: - - pos: -4.5,20.5 - parent: 1 - type: Transform -- uid: 1939 - type: TableFrame - components: - - pos: -4.5,24.5 - parent: 1 - type: Transform -- uid: 1940 - type: MachineFrame - components: - - pos: -4.5,22.5 - parent: 1 - type: Transform -- uid: 1941 - type: TableGlass - components: - - pos: -0.5,19.5 - parent: 1 - type: Transform -- uid: 1942 - type: TableGlass - components: - - pos: -0.5,22.5 - parent: 1 - type: Transform -- uid: 1943 - type: TableGlass - components: - - pos: -0.5,20.5 - parent: 1 - type: Transform -- uid: 1944 - type: DisposalUnit - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform -- uid: 1945 - type: TableGlass - components: - - pos: -0.5,21.5 - parent: 1 - type: Transform -- uid: 1946 - type: LockerChemistryFilled - components: - - pos: -2.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1947 - type: LockerChemistryFilled - components: - - pos: -1.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1948 - type: Table - components: - - pos: 1.5,25.5 - parent: 1 - type: Transform -- uid: 1949 - type: Table - components: - - pos: 1.5,26.5 - parent: 1 - type: Transform -- uid: 1950 - type: Table - components: - - pos: -0.5,28.5 - parent: 1 - type: Transform -- uid: 1951 - type: KitchenReagentGrinder - components: - - pos: -4.5,24.5 - parent: 1 - type: Transform -- uid: 1952 - type: MachineFrame - components: - - pos: -4.5,23.5 - parent: 1 - type: Transform -- uid: 1953 - type: Dropper - components: - - pos: -4.4894724,20.885618 - parent: 1 - type: Transform -- uid: 1954 - type: Dropper - components: - - pos: -4.4894724,20.666868 - parent: 1 - type: Transform -- uid: 1955 - type: Dropper - components: - - pos: -4.4894724,20.463743 - parent: 1 - type: Transform -- uid: 1956 - type: ChemDispenserMachineCircuitboard - components: - - pos: -0.49071655,20.935696 - parent: 1 - type: Transform -- uid: 1957 - type: ChemMasterMachineCircuitboard - components: - - pos: -0.5063416,21.32632 - parent: 1 - type: Transform -- uid: 1958 - type: WallReinforced - components: - - pos: -55.5,50.5 - parent: 1 - type: Transform -- uid: 1959 - type: Beaker - components: - - pos: -0.3099949,22.624739 - parent: 1 - type: Transform -- uid: 1960 - type: Beaker - components: - - pos: -0.70061994,22.327864 - parent: 1 - type: Transform -- uid: 1961 - type: Beaker - components: - - pos: -0.6683643,21.869993 - parent: 1 - type: Transform -- uid: 1962 - type: CloningConsoleComputerCircuitboard - components: - - pos: 4.518286,38.90027 - parent: 1 - type: Transform -- uid: 1963 - type: Syringe - components: - - pos: -0.47509155,19.63882 - parent: 1 - type: Transform -- uid: 1964 - type: Syringe - components: - - pos: -0.4652393,20.229368 - parent: 1 - type: Transform -- uid: 1965 - type: WallReinforced - components: - - pos: -1.5,11.5 - parent: 1 - type: Transform -- uid: 1966 - type: WallReinforced - components: - - pos: 2.5,9.5 - parent: 1 - type: Transform -- uid: 1967 - type: ChemistryHotplate - components: - - pos: 0.5,27.5 - parent: 1 - type: Transform -- uid: 1968 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: -0.5,27.5 - parent: 1 - type: Transform -- uid: 1969 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: -2.5,26.5 - parent: 1 - type: Transform -- uid: 1970 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,25.5 - parent: 1 - type: Transform -- uid: 1971 - type: AirlockMaintMedLocked - components: - - pos: 11.5,22.5 - parent: 1 - type: Transform -- uid: 1972 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,25.5 - parent: 1 - type: Transform -- uid: 1973 - type: ComputerCrewMonitoring - components: - - pos: -0.5,34.5 - parent: 1 - type: Transform -- uid: 1974 - type: TableWood - components: - - pos: -1.5,34.5 - parent: 1 - type: Transform -- uid: 1975 - type: TableWood - components: - - pos: -1.5,33.5 - parent: 1 - type: Transform -- uid: 1976 - type: TableWood - components: - - pos: -1.5,32.5 - parent: 1 - type: Transform -- uid: 1977 - type: TableWood - components: - - pos: -0.5,32.5 - parent: 1 - type: Transform -- uid: 1978 - type: TableWood - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform -- uid: 1979 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,33.5 - parent: 1 - type: Transform -- uid: 1980 - type: ComputerMedicalRecords - components: - - pos: 0.5,34.5 - parent: 1 - type: Transform -- uid: 1981 - type: FloorDrain - components: - - pos: -2.5,25.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 1982 - type: WallReinforced - components: - - pos: -55.5,51.5 - parent: 1 - type: Transform -- uid: 1983 - type: WallReinforced - components: - - pos: -55.5,52.5 - parent: 1 - type: Transform -- uid: 1984 - type: WallReinforced - components: - - pos: -52.5,49.5 - parent: 1 - type: Transform -- uid: 1985 - type: PillCanister - components: - - pos: -3.7625957,27.657993 - parent: 1 - type: Transform -- uid: 1986 - type: PillCanister - components: - - pos: -3.3094707,27.611118 - parent: 1 - type: Transform -- uid: 1987 - type: PillCanister - components: - - pos: -3.5125957,27.501743 - parent: 1 - type: Transform -- uid: 1988 - type: LargeBeaker - components: - - pos: -0.2943699,22.171614 - parent: 1 - type: Transform -- uid: 1989 - type: MedkitFilled - components: - - pos: -1.4897182,32.72799 - parent: 1 - type: Transform -- uid: 1990 - type: Brutepack - components: - - pos: -1.3334682,33.60299 - parent: 1 - type: Transform -- uid: 1991 - type: Brutepack - components: - - pos: -1.5990932,33.97799 - parent: 1 - type: Transform -- uid: 1992 - type: Ointment - components: - - pos: 0.44623998,32.749245 - parent: 1 - type: Transform -- uid: 1993 - type: Ointment - components: - - pos: -0.053760022,32.561745 - parent: 1 - type: Transform -- uid: 1994 - type: Ointment - components: - - pos: -0.67876005,32.63987 - parent: 1 - type: Transform -- uid: 1995 - type: AirlockMedicalGlass - components: - - pos: -5.5,31.5 - parent: 1 - type: Transform -- uid: 1996 - type: AirlockMedicalGlass - components: - - pos: -5.5,33.5 - parent: 1 - type: Transform -- uid: 1997 - type: WallReinforced - components: - - pos: -52.5,48.5 - parent: 1 - type: Transform -- uid: 1998 - type: WallReinforced - components: - - pos: -52.5,50.5 - parent: 1 - type: Transform -- uid: 1999 - type: WallReinforced - components: - - pos: -52.5,51.5 - parent: 1 - type: Transform -- uid: 2000 - type: WallReinforced - components: - - pos: -52.5,52.5 - parent: 1 - type: Transform -- uid: 2001 - type: WallReinforced - components: - - pos: -49.5,51.5 - parent: 1 - type: Transform -- uid: 2002 - type: WallReinforced - components: - - pos: -49.5,52.5 - parent: 1 - type: Transform -- uid: 2003 - type: WallReinforced - components: - - pos: -49.5,48.5 - parent: 1 - type: Transform -- uid: 2004 - type: WallReinforced - components: - - pos: -49.5,49.5 - parent: 1 - type: Transform -- uid: 2005 - type: WallReinforced - components: - - pos: -49.5,50.5 - parent: 1 - type: Transform -- uid: 2006 - type: WallSolidRust - components: - - pos: -45.5,52.5 - parent: 1 - type: Transform -- uid: 2007 - type: WallSolidRust - components: - - pos: -45.5,51.5 - parent: 1 - type: Transform -- uid: 2008 - type: AirlockMaintMedLocked - components: - - pos: 5.5,40.5 - parent: 1 - type: Transform -- uid: 2009 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2010 - type: Catwalk - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform -- uid: 2011 - type: Catwalk - components: - - pos: -5.5,15.5 - parent: 1 - type: Transform -- uid: 2012 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2013 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2014 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 5.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2015 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 11.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2016 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -61.5,33.5 - parent: 1 - type: Transform - - id: Entrance - type: SurveillanceCamera -- uid: 2017 - type: AirlockSecurityGlassLocked - components: - - pos: 1.5,7.5 - parent: 1 - type: Transform -- uid: 2018 - type: Poweredlight - components: - - pos: 7.5,37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2019 - type: Table - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform -- uid: 2020 - type: Table - components: - - pos: 6.5,23.5 - parent: 1 - type: Transform -- uid: 2021 - type: Table - components: - - pos: 6.5,22.5 - parent: 1 - type: Transform -- uid: 2022 - type: Table - components: - - pos: 7.5,22.5 - parent: 1 - type: Transform -- uid: 2023 - type: Table - components: - - pos: 8.5,22.5 - parent: 1 - type: Transform -- uid: 2024 - type: LockerMedicalFilled - components: - - pos: 6.5,26.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2025 - type: Table - components: - - pos: 10.5,26.5 - parent: 1 - type: Transform -- uid: 2026 - type: Table - components: - - pos: 10.5,25.5 - parent: 1 - type: Transform -- uid: 2027 - type: Table - components: - - pos: 10.5,24.5 - parent: 1 - type: Transform -- uid: 2028 - type: LockerMedicalFilled - components: - - pos: 7.5,26.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2029 - type: LockerMedicalFilled - components: - - pos: 8.5,26.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2030 - type: LockerMedicalFilled - components: - - pos: 9.5,26.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2031 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,31.5 - parent: 1 - type: Transform -- uid: 2032 - type: WallSolid - components: - - pos: 5.5,18.5 - parent: 1 - type: Transform -- uid: 2033 - type: DisposalUnit - components: - - pos: 5.5,30.5 - parent: 1 - type: Transform -- uid: 2034 - type: VendingMachineWallMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 17.5,29.5 - parent: 1 - type: Transform -- uid: 2035 - type: TableGlass - components: - - pos: 15.5,28.5 - parent: 1 - type: Transform -- uid: 2036 - type: TableGlass - components: - - pos: 16.5,28.5 - parent: 1 - type: Transform -- uid: 2037 - type: Barricade - components: - - pos: 18.5,32.5 - parent: 1 - type: Transform -- uid: 2038 - type: Table - components: - - pos: 8.5,33.5 - parent: 1 - type: Transform -- uid: 2039 - type: Table - components: - - pos: 9.5,33.5 - parent: 1 - type: Transform -- uid: 2040 - type: Table - components: - - pos: 10.5,33.5 - parent: 1 - type: Transform -- uid: 2041 - type: MachineFrame - components: - - pos: 4.5,36.5 - parent: 1 - type: Transform -- uid: 2042 - type: Table - components: - - pos: 4.5,37.5 - parent: 1 - type: Transform -- uid: 2043 - type: Table - components: - - pos: 4.5,38.5 - parent: 1 - type: Transform -- uid: 2044 - type: Table - components: - - pos: 4.5,39.5 - parent: 1 - type: Transform -- uid: 2045 - type: WallReinforced - components: - - pos: 0.5,11.5 - parent: 1 - type: Transform -- uid: 2046 - type: WallSolidRust - components: - - pos: 17.5,21.5 - parent: 1 - type: Transform -- uid: 2047 - type: TableGlass - components: - - pos: 8.5,31.5 - parent: 1 - type: Transform -- uid: 2048 - type: TableGlass - components: - - pos: 10.5,31.5 - parent: 1 - type: Transform -- uid: 2049 - type: TableGlass - components: - - pos: 12.5,31.5 - parent: 1 - type: Transform -- uid: 2050 - type: AirlockMaintMedLocked - components: - - rot: 3.141592653589793 rad - pos: -2.5,16.5 - parent: 1 - type: Transform -- uid: 2051 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 4.5,24.5 - parent: 1 - type: Transform -- uid: 2052 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 4.5,25.5 - parent: 1 - type: Transform -- uid: 2053 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 4.5,33.5 - parent: 1 - type: Transform -- uid: 2054 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 3.5,34.5 - parent: 1 - type: Transform -- uid: 2055 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 2.5,33.5 - parent: 1 - type: Transform -- uid: 2056 - type: WallReinforced - components: - - pos: 2.5,10.5 - parent: 1 - type: Transform -- uid: 2057 - type: WallReinforced - components: - - pos: 2.5,11.5 - parent: 1 - type: Transform -- uid: 2058 - type: WallSolid - components: - - pos: 15.5,21.5 - parent: 1 - type: Transform -- uid: 2059 - type: Girder - components: - - pos: 17.5,24.5 - parent: 1 - type: Transform -- uid: 2060 - type: MaintenanceWeaponSpawner - components: - - pos: -0.5,42.5 - parent: 1 - type: Transform -- uid: 2061 - type: WallReinforced - components: - - pos: 2.5,8.5 - parent: 1 - type: Transform -- uid: 2062 - type: BedsheetMedical - components: - - rot: -1.5707963267948966 rad - pos: 7.5,31.5 - parent: 1 - type: Transform -- uid: 2063 - type: BedsheetMedical - components: - - rot: -1.5707963267948966 rad - pos: 9.5,31.5 - parent: 1 - type: Transform -- uid: 2064 - type: VendingMachineMediDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,23.5 - parent: 1 - type: Transform -- uid: 2065 - type: BedsheetMedical - components: - - rot: -1.5707963267948966 rad - pos: 11.5,31.5 - parent: 1 - type: Transform -- uid: 2066 - type: ChairOfficeLight - components: - - pos: 7.5,23.5 - parent: 1 - type: Transform -- uid: 2067 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,25.5 - parent: 1 - type: Transform -- uid: 2068 - type: WallSolid - components: - - pos: 5.5,17.5 - parent: 1 - type: Transform -- uid: 2069 - type: WallReinforced - components: - - pos: -0.5,11.5 - parent: 1 - type: Transform -- uid: 2070 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -0.5,42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2071 - type: Rack - components: - - pos: -3.5,15.5 - parent: 1 - type: Transform -- uid: 2072 - type: MaintenanceToolSpawner - components: - - pos: -3.5,15.5 - parent: 1 - type: Transform -- uid: 2073 - type: Poweredlight - components: - - pos: 6.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2074 - type: Poweredlight - components: - - pos: 8.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2075 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -0.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2076 - type: Poweredlight - components: - - pos: 2.5,17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2077 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2078 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2079 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2080 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 1.5,21.5 - parent: 1 - type: Transform -- uid: 2081 - type: APCBasic - components: - - pos: 4.5,35.5 - parent: 1 - type: Transform -- uid: 2082 - type: CableApcExtension - components: - - pos: 1.5,29.5 - parent: 1 - type: Transform -- uid: 2083 - type: CableApcExtension - components: - - pos: 2.5,29.5 - parent: 1 - type: Transform -- uid: 2084 - type: CableApcExtension - components: - - pos: 3.5,29.5 - parent: 1 - type: Transform -- uid: 2085 - type: CableApcExtension - components: - - pos: 4.5,29.5 - parent: 1 - type: Transform -- uid: 2086 - type: CableApcExtension - components: - - pos: 5.5,29.5 - parent: 1 - type: Transform -- uid: 2087 - type: CableApcExtension - components: - - pos: 6.5,29.5 - parent: 1 - type: Transform -- uid: 2088 - type: CableApcExtension - components: - - pos: 7.5,29.5 - parent: 1 - type: Transform -- uid: 2089 - type: CableApcExtension - components: - - pos: 8.5,29.5 - parent: 1 - type: Transform -- uid: 2090 - type: CableApcExtension - components: - - pos: 9.5,29.5 - parent: 1 - type: Transform -- uid: 2091 - type: CableApcExtension - components: - - pos: 10.5,29.5 - parent: 1 - type: Transform -- uid: 2092 - type: CableApcExtension - components: - - pos: 11.5,29.5 - parent: 1 - type: Transform -- uid: 2093 - type: CableApcExtension - components: - - pos: 12.5,29.5 - parent: 1 - type: Transform -- uid: 2094 - type: CableApcExtension - components: - - pos: 4.5,30.5 - parent: 1 - type: Transform -- uid: 2095 - type: CableApcExtension - components: - - pos: 4.5,31.5 - parent: 1 - type: Transform -- uid: 2096 - type: CableApcExtension - components: - - pos: 4.5,32.5 - parent: 1 - type: Transform -- uid: 2097 - type: CableApcExtension - components: - - pos: 4.5,33.5 - parent: 1 - type: Transform -- uid: 2098 - type: CableApcExtension - components: - - pos: 4.5,34.5 - parent: 1 - type: Transform -- uid: 2099 - type: CableApcExtension - components: - - pos: 4.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2100 - type: CableApcExtension - components: - - pos: 5.5,33.5 - parent: 1 - type: Transform -- uid: 2101 - type: CableApcExtension - components: - - pos: 6.5,33.5 - parent: 1 - type: Transform -- uid: 2102 - type: GasVentPump - components: - - pos: -4.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2103 - type: PottedPlantRandom - components: - - pos: -4.5,29.5 - parent: 1 - type: Transform -- uid: 2104 - type: PottedPlantRandom - components: - - pos: 0.5,24.5 - parent: 1 - type: Transform -- uid: 2105 - type: CableApcExtension - components: - - pos: 7.5,33.5 - parent: 1 - type: Transform -- uid: 2106 - type: CableApcExtension - components: - - pos: 8.5,33.5 - parent: 1 - type: Transform -- uid: 2107 - type: CableApcExtension - components: - - pos: 9.5,33.5 - parent: 1 - type: Transform -- uid: 2108 - type: CableApcExtension - components: - - pos: 8.5,34.5 - parent: 1 - type: Transform -- uid: 2109 - type: CableApcExtension - components: - - pos: 8.5,35.5 - parent: 1 - type: Transform -- uid: 2110 - type: CableApcExtension - components: - - pos: 8.5,36.5 - parent: 1 - type: Transform -- uid: 2111 - type: CableApcExtension - components: - - pos: 8.5,37.5 - parent: 1 - type: Transform -- uid: 2112 - type: CableApcExtension - components: - - pos: 11.5,33.5 - parent: 1 - type: Transform -- uid: 2113 - type: CableApcExtension - components: - - pos: 11.5,34.5 - parent: 1 - type: Transform -- uid: 2114 - type: CableApcExtension - components: - - pos: 11.5,35.5 - parent: 1 - type: Transform -- uid: 2115 - type: CableApcExtension - components: - - pos: 11.5,36.5 - parent: 1 - type: Transform -- uid: 2116 - type: CableApcExtension - components: - - pos: 11.5,37.5 - parent: 1 - type: Transform -- uid: 2117 - type: CableApcExtension - components: - - pos: 4.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2118 - type: DisposalUnit - components: - - pos: -3.5,29.5 - parent: 1 - type: Transform -- uid: 2119 - type: CableApcExtension - components: - - pos: 4.5,37.5 - parent: 1 - type: Transform -- uid: 2120 - type: CableApcExtension - components: - - pos: 4.5,38.5 - parent: 1 - type: Transform -- uid: 2121 - type: CableApcExtension - components: - - pos: 3.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2122 - type: CableApcExtension - components: - - pos: 2.5,38.5 - parent: 1 - type: Transform -- uid: 2123 - type: CableApcExtension - components: - - pos: 1.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2124 - type: CableApcExtension - components: - - pos: 0.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2125 - type: CableApcExtension - components: - - pos: 1.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2126 - type: CableApcExtension - components: - - pos: 2.5,21.5 - parent: 1 - type: Transform -- uid: 2127 - type: CableApcExtension - components: - - pos: 3.5,21.5 - parent: 1 - type: Transform -- uid: 2128 - type: CableApcExtension - components: - - pos: 3.5,22.5 - parent: 1 - type: Transform -- uid: 2129 - type: CableApcExtension - components: - - pos: 3.5,23.5 - parent: 1 - type: Transform -- uid: 2130 - type: CableApcExtension - components: - - pos: 3.5,24.5 - parent: 1 - type: Transform -- uid: 2131 - type: CableApcExtension - components: - - pos: 3.5,25.5 - parent: 1 - type: Transform -- uid: 2132 - type: CableApcExtension - components: - - pos: 3.5,26.5 - parent: 1 - type: Transform -- uid: 2133 - type: CableApcExtension - components: - - pos: 3.5,27.5 - parent: 1 - type: Transform -- uid: 2134 - type: CableApcExtension - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform -- uid: 2135 - type: CableApcExtension - components: - - pos: 4.5,25.5 - parent: 1 - type: Transform -- uid: 2136 - type: DisposalUnit - components: - - pos: 28.5,5.5 - parent: 1 - type: Transform -- uid: 2137 - type: DisposalUnit - components: - - pos: 23.5,4.5 - parent: 1 - type: Transform -- uid: 2138 - type: CableApcExtension - components: - - pos: 5.5,25.5 - parent: 1 - type: Transform -- uid: 2139 - type: CableApcExtension - components: - - pos: 6.5,25.5 - parent: 1 - type: Transform -- uid: 2140 - type: CableApcExtension - components: - - pos: 7.5,25.5 - parent: 1 - type: Transform -- uid: 2141 - type: CableApcExtension - components: - - pos: 8.5,25.5 - parent: 1 - type: Transform -- uid: 2142 - type: CableApcExtension - components: - - pos: 9.5,25.5 - parent: 1 - type: Transform -- uid: 2143 - type: CableApcExtension - components: - - pos: 9.5,24.5 - parent: 1 - type: Transform -- uid: 2144 - type: CableApcExtension - components: - - pos: 9.5,23.5 - parent: 1 - type: Transform -- uid: 2145 - type: CableApcExtension - components: - - pos: 9.5,22.5 - parent: 1 - type: Transform -- uid: 2146 - type: CableApcExtension - components: - - pos: 7.5,24.5 - parent: 1 - type: Transform -- uid: 2147 - type: CableApcExtension - components: - - pos: 7.5,23.5 - parent: 1 - type: Transform -- uid: 2148 - type: CableApcExtension - components: - - pos: 7.5,22.5 - parent: 1 - type: Transform -- uid: 2149 - type: CableApcExtension - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform -- uid: 2150 - type: CableApcExtension - components: - - pos: 3.5,19.5 - parent: 1 - type: Transform -- uid: 2151 - type: CableApcExtension - components: - - pos: 3.5,18.5 - parent: 1 - type: Transform -- uid: 2152 - type: CableApcExtension - components: - - pos: 3.5,17.5 - parent: 1 - type: Transform -- uid: 2153 - type: CableApcExtension - components: - - pos: 3.5,16.5 - parent: 1 - type: Transform -- uid: 2154 - type: CableApcExtension - components: - - pos: 3.5,15.5 - parent: 1 - type: Transform -- uid: 2155 - type: CableApcExtension - components: - - pos: 2.5,16.5 - parent: 1 - type: Transform -- uid: 2156 - type: CableApcExtension - components: - - pos: 1.5,16.5 - parent: 1 - type: Transform -- uid: 2157 - type: CableApcExtension - components: - - pos: 0.5,16.5 - parent: 1 - type: Transform -- uid: 2158 - type: CableApcExtension - components: - - pos: -0.5,16.5 - parent: 1 - type: Transform -- uid: 2159 - type: CableApcExtension - components: - - pos: 4.5,19.5 - parent: 1 - type: Transform -- uid: 2160 - type: CableApcExtension - components: - - pos: 5.5,19.5 - parent: 1 - type: Transform -- uid: 2161 - type: CableApcExtension - components: - - pos: 6.5,19.5 - parent: 1 - type: Transform -- uid: 2162 - type: CableApcExtension - components: - - pos: 7.5,19.5 - parent: 1 - type: Transform -- uid: 2163 - type: CableApcExtension - components: - - pos: 8.5,19.5 - parent: 1 - type: Transform -- uid: 2164 - type: CableApcExtension - components: - - pos: 9.5,19.5 - parent: 1 - type: Transform -- uid: 2165 - type: CableApcExtension - components: - - pos: 10.5,19.5 - parent: 1 - type: Transform -- uid: 2166 - type: CableApcExtension - components: - - pos: 10.5,18.5 - parent: 1 - type: Transform -- uid: 2167 - type: SpawnPointResearchDirector - components: - - pos: -2.5,2.5 - parent: 1 - type: Transform -- uid: 2168 - type: SpawnPointScientist - components: - - pos: -7.5,1.5 - parent: 1 - type: Transform -- uid: 2169 - type: SpawnPointResearchAssistant - components: - - pos: -7.5,-0.5 - parent: 1 - type: Transform -- uid: 2170 - type: SpawnPointScientist - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform -- uid: 2171 - type: SpawnPointScientist - components: - - pos: -16.5,-3.5 - parent: 1 - type: Transform -- uid: 2172 - type: SpawnPointScientist - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform -- uid: 2173 - type: CableApcExtension - components: - - pos: 10.5,17.5 - parent: 1 - type: Transform -- uid: 2174 - type: CableApcExtension - components: - - pos: 10.5,16.5 - parent: 1 - type: Transform -- uid: 2175 - type: CableApcExtension - components: - - pos: 10.5,15.5 - parent: 1 - type: Transform -- uid: 2176 - type: CableApcExtension - components: - - pos: 10.5,14.5 - parent: 1 - type: Transform -- uid: 2177 - type: CableApcExtension - components: - - pos: 10.5,13.5 - parent: 1 - type: Transform -- uid: 2178 - type: CableApcExtension - components: - - pos: 10.5,12.5 - parent: 1 - type: Transform -- uid: 2179 - type: CableApcExtension - components: - - pos: 9.5,15.5 - parent: 1 - type: Transform -- uid: 2180 - type: CableApcExtension - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform -- uid: 2181 - type: CableApcExtension - components: - - pos: 7.5,15.5 - parent: 1 - type: Transform -- uid: 2182 - type: SpawnPointChemist - components: - - pos: -1.5,25.5 - parent: 1 - type: Transform -- uid: 2183 - type: SpawnPointChemist - components: - - pos: -2.5,23.5 - parent: 1 - type: Transform -- uid: 2184 - type: SpawnPointChemist - components: - - pos: -2.5,21.5 - parent: 1 - type: Transform -- uid: 2185 - type: CableApcExtension - components: - - pos: 9.5,12.5 - parent: 1 - type: Transform -- uid: 2186 - type: CableApcExtension - components: - - pos: 8.5,12.5 - parent: 1 - type: Transform -- uid: 2187 - type: CableApcExtension - components: - - pos: 7.5,12.5 - parent: 1 - type: Transform -- uid: 2188 - type: CableMV - components: - - pos: -4.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2189 - type: CableMV - components: - - pos: -3.5,17.5 - parent: 1 - type: Transform -- uid: 2190 - type: CableMV - components: - - pos: -3.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2191 - type: CableMV - components: - - pos: -3.5,19.5 - parent: 1 - type: Transform -- uid: 2192 - type: CableMV - components: - - pos: -3.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2193 - type: CableMV - components: - - pos: -3.5,21.5 - parent: 1 - type: Transform -- uid: 2194 - type: CableMV - components: - - pos: -3.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2195 - type: CableMV - components: - - pos: -3.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2196 - type: CableMV - components: - - pos: -2.5,23.5 - parent: 1 - type: Transform -- uid: 2197 - type: CableMV - components: - - pos: -1.5,23.5 - parent: 1 - type: Transform -- uid: 2198 - type: CableMV - components: - - pos: -0.5,23.5 - parent: 1 - type: Transform -- uid: 2199 - type: CableMV - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform -- uid: 2200 - type: CableMV - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform -- uid: 2201 - type: CableMV - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform -- uid: 2202 - type: CableMV - components: - - pos: 3.5,23.5 - parent: 1 - type: Transform -- uid: 2203 - type: CableMV - components: - - pos: 3.5,22.5 - parent: 1 - type: Transform -- uid: 2204 - type: CableMV - components: - - pos: 3.5,21.5 - parent: 1 - type: Transform -- uid: 2205 - type: CableMV - components: - - pos: 2.5,21.5 - parent: 1 - type: Transform -- uid: 2206 - type: CableMV - components: - - pos: 1.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2207 - type: CableMV - components: - - pos: 4.5,23.5 - parent: 1 - type: Transform -- uid: 2208 - type: CableMV - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform -- uid: 2209 - type: CableMV - components: - - pos: 4.5,25.5 - parent: 1 - type: Transform -- uid: 2210 - type: CableMV - components: - - pos: 4.5,26.5 - parent: 1 - type: Transform -- uid: 2211 - type: CableMV - components: - - pos: 4.5,27.5 - parent: 1 - type: Transform -- uid: 2212 - type: CableMV - components: - - pos: 4.5,28.5 - parent: 1 - type: Transform -- uid: 2213 - type: CableMV - components: - - pos: 4.5,29.5 - parent: 1 - type: Transform -- uid: 2214 - type: CableMV - components: - - pos: 4.5,30.5 - parent: 1 - type: Transform -- uid: 2215 - type: CableMV - components: - - pos: 4.5,31.5 - parent: 1 - type: Transform -- uid: 2216 - type: CableMV - components: - - pos: 4.5,32.5 - parent: 1 - type: Transform -- uid: 2217 - type: CableMV - components: - - pos: 4.5,33.5 - parent: 1 - type: Transform -- uid: 2218 - type: CableMV - components: - - pos: 4.5,34.5 - parent: 1 - type: Transform -- uid: 2219 - type: CableMV - components: - - pos: 4.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2220 - type: CableApcExtension - components: - - pos: 12.5,28.5 - parent: 1 - type: Transform -- uid: 2221 - type: CableApcExtension - components: - - pos: 13.5,28.5 - parent: 1 - type: Transform -- uid: 2222 - type: CableApcExtension - components: - - pos: 14.5,28.5 - parent: 1 - type: Transform -- uid: 2223 - type: CableApcExtension - components: - - pos: 15.5,28.5 - parent: 1 - type: Transform -- uid: 2224 - type: CableApcExtension - components: - - pos: 15.5,29.5 - parent: 1 - type: Transform -- uid: 2225 - type: CableApcExtension - components: - - pos: 15.5,30.5 - parent: 1 - type: Transform -- uid: 2226 - type: CableApcExtension - components: - - pos: 15.5,31.5 - parent: 1 - type: Transform -- uid: 2227 - type: CableApcExtension - components: - - pos: 15.5,32.5 - parent: 1 - type: Transform -- uid: 2228 - type: CableApcExtension - components: - - pos: 16.5,32.5 - parent: 1 - type: Transform -- uid: 2229 - type: CableApcExtension - components: - - pos: 17.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2230 - type: CableApcExtension - components: - - pos: 18.5,32.5 - parent: 1 - type: Transform -- uid: 2231 - type: CableApcExtension - components: - - pos: 19.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2232 - type: CableApcExtension - components: - - pos: 19.5,31.5 - parent: 1 - type: Transform -- uid: 2233 - type: CableApcExtension - components: - - pos: 19.5,30.5 - parent: 1 - type: Transform -- uid: 2234 - type: CableApcExtension - components: - - pos: 19.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2235 - type: WallSolid - components: - - pos: 18.5,21.5 - parent: 1 - type: Transform -- uid: 2236 - type: WallSolid - components: - - pos: 19.5,21.5 - parent: 1 - type: Transform -- uid: 2237 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2238 - type: PoweredSmallLight - components: - - pos: 20.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2239 - type: AirlockMaint - components: - - pos: 15.5,18.5 - parent: 1 - type: Transform -- uid: 2240 - type: AirlockMaint - components: - - pos: 20.5,21.5 - parent: 1 - type: Transform -- uid: 2241 - type: CableApcExtension - components: - - pos: 11.5,15.5 - parent: 1 - type: Transform -- uid: 2242 - type: CableApcExtension - components: - - pos: 12.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2243 - type: CableApcExtension - components: - - pos: 13.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2244 - type: CableApcExtension - components: - - pos: 13.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2245 - type: CableApcExtension - components: - - pos: 13.5,17.5 - parent: 1 - type: Transform -- uid: 2246 - type: CableApcExtension - components: - - pos: 13.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2247 - type: CableApcExtension - components: - - pos: 6.5,12.5 - parent: 1 - type: Transform -- uid: 2248 - type: CableApcExtension - components: - - pos: 6.5,15.5 - parent: 1 - type: Transform -- uid: 2249 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2250 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2251 - type: RevolverCapGun - components: - - rot: 1.5707963267948966 rad - pos: 0.88706434,42.793312 - parent: 1 - type: Transform -- uid: 2252 - type: InflatableDoor - components: - - pos: -63.5,7.5 - parent: 1 - type: Transform -- uid: 2253 - type: PowerCellRecharger - components: - - pos: -1.5,34.5 - parent: 1 - type: Transform -- uid: 2254 - type: PowerCellRecharger - components: - - pos: -21.5,59.5 - parent: 1 - type: Transform -- uid: 2255 - type: PowerCellRecharger - components: - - pos: -33.5,38.5 - parent: 1 - type: Transform -- uid: 2256 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2257 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 0.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2258 - type: Cablecuffs - components: - - pos: 0.18249932,43.256775 - parent: 1 - type: Transform -- uid: 2259 - type: FoodBurgerClown - components: - - pos: 17.57343,15.771059 - parent: 1 - type: Transform -- uid: 2260 - type: TableWood - components: - - pos: 16.5,15.5 - parent: 1 - type: Transform -- uid: 2261 - type: TableWood - components: - - pos: 17.5,15.5 - parent: 1 - type: Transform -- uid: 2262 - type: TableWood - components: - - pos: 18.5,15.5 - parent: 1 - type: Transform -- uid: 2263 - type: TableWood - components: - - pos: 19.5,15.5 - parent: 1 - type: Transform -- uid: 2264 - type: TableWood - components: - - pos: 20.5,15.5 - parent: 1 - type: Transform -- uid: 2265 - type: TableWood - components: - - pos: 17.5,19.5 - parent: 1 - type: Transform -- uid: 2266 - type: Bed - components: - - pos: 17.5,23.5 - parent: 1 - type: Transform -- uid: 2267 - type: BedsheetClown - components: - - pos: 17.5,23.5 - parent: 1 - type: Transform -- uid: 2268 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 18.5,19.5 - parent: 1 - type: Transform -- uid: 2269 - type: CableApcExtension - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform -- uid: 2270 - type: CableApcExtension - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform -- uid: 2271 - type: CableApcExtension - components: - - pos: -0.5,23.5 - parent: 1 - type: Transform -- uid: 2272 - type: CableApcExtension - components: - - pos: -1.5,23.5 - parent: 1 - type: Transform -- uid: 2273 - type: CableApcExtension - components: - - pos: -2.5,23.5 - parent: 1 - type: Transform -- uid: 2274 - type: CableApcExtension - components: - - pos: -2.5,22.5 - parent: 1 - type: Transform -- uid: 2275 - type: CableApcExtension - components: - - pos: -2.5,21.5 - parent: 1 - type: Transform -- uid: 2276 - type: CableApcExtension - components: - - pos: -2.5,20.5 - parent: 1 - type: Transform -- uid: 2277 - type: CableApcExtension - components: - - pos: -2.5,19.5 - parent: 1 - type: Transform -- uid: 2278 - type: CableApcExtension - components: - - pos: -2.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2279 - type: CableApcExtension - components: - - pos: -2.5,25.5 - parent: 1 - type: Transform -- uid: 2280 - type: CableApcExtension - components: - - pos: -2.5,26.5 - parent: 1 - type: Transform -- uid: 2281 - type: CableApcExtension - components: - - pos: 0.5,24.5 - parent: 1 - type: Transform -- uid: 2282 - type: CableApcExtension - components: - - pos: 0.5,25.5 - parent: 1 - type: Transform -- uid: 2283 - type: CableApcExtension - components: - - pos: 0.5,26.5 - parent: 1 - type: Transform -- uid: 2284 - type: CableApcExtension - components: - - pos: 0.5,27.5 - parent: 1 - type: Transform -- uid: 2285 - type: ChairFolding - components: - - pos: 17.5,20.5 - parent: 1 - type: Transform -- uid: 2286 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: 16.5,19.5 - parent: 1 - type: Transform -- uid: 2287 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 17.5,18.5 - parent: 1 - type: Transform -- uid: 2288 - type: CableApcExtension - components: - - pos: 0.5,29.5 - parent: 1 - type: Transform -- uid: 2289 - type: CableApcExtension - components: - - pos: -0.5,29.5 - parent: 1 - type: Transform -- uid: 2290 - type: CableApcExtension - components: - - pos: -1.5,29.5 - parent: 1 - type: Transform -- uid: 2291 - type: CableApcExtension - components: - - pos: -2.5,29.5 - parent: 1 - type: Transform -- uid: 2292 - type: CableApcExtension - components: - - pos: -3.5,29.5 - parent: 1 - type: Transform -- uid: 2293 - type: CableApcExtension - components: - - pos: -3.5,30.5 - parent: 1 - type: Transform -- uid: 2294 - type: CableApcExtension - components: - - pos: -3.5,31.5 - parent: 1 - type: Transform -- uid: 2295 - type: CableApcExtension - components: - - pos: -3.5,32.5 - parent: 1 - type: Transform -- uid: 2296 - type: CableApcExtension - components: - - pos: -3.5,33.5 - parent: 1 - type: Transform -- uid: 2297 - type: CableApcExtension - components: - - pos: -0.5,30.5 - parent: 1 - type: Transform -- uid: 2298 - type: CableApcExtension - components: - - pos: -0.5,31.5 - parent: 1 - type: Transform -- uid: 2299 - type: CableApcExtension - components: - - pos: -0.5,32.5 - parent: 1 - type: Transform -- uid: 2300 - type: CableApcExtension - components: - - pos: -0.5,33.5 - parent: 1 - type: Transform -- uid: 2301 - type: ClothingShoesClown - components: - - pos: 18.651554,15.646059 - parent: 1 - type: Transform -- uid: 2302 - type: soda_dispenser - components: - - rot: 3.141592653589793 rad - pos: 20.5,15.5 - parent: 1 - type: Transform -- uid: 2303 - type: FoodBurgerClown - components: - - pos: 17.88593,15.614809 - parent: 1 - type: Transform -- uid: 2304 - type: FoodCakeClown - components: - - pos: 17.47968,19.692934 - parent: 1 - type: Transform -- uid: 2305 - type: ClothingShoesClown - components: - - pos: 18.682804,15.786684 - parent: 1 - type: Transform -- uid: 2306 - type: ClothingMaskClown - components: - - pos: 19.76093,15.739809 - parent: 1 - type: Transform -- uid: 2307 - type: ClothingMaskClown - components: - - pos: 19.526554,15.521059 - parent: 1 - type: Transform -- uid: 2308 - type: ClothingUniformJumpsuitClown - components: - - pos: 18.932804,15.599184 - parent: 1 - type: Transform -- uid: 2309 - type: ClothingUniformJumpsuitClown - components: - - pos: 19.214054,15.599184 - parent: 1 - type: Transform -- uid: 2310 - type: FoodMeatClown - components: - - pos: 17.04218,15.536684 - parent: 1 - type: Transform -- uid: 2311 - type: FoodPizzaDank - components: - - pos: 16.54218,15.802309 - parent: 1 - type: Transform -- uid: 2312 - type: AirlockMedicalLocked - components: - - pos: 3.5,18.5 - parent: 1 - type: Transform -- uid: 2313 - type: MedkitFilled - components: - - pos: 6.532705,22.632685 - parent: 1 - type: Transform -- uid: 2314 - type: MedkitRadiationFilled - components: - - pos: 7.20458,22.58581 - parent: 1 - type: Transform -- uid: 2315 - type: MedkitOxygenFilled - components: - - pos: 7.876455,22.58581 - parent: 1 - type: Transform -- uid: 2316 - type: MedkitToxinFilled - components: - - pos: 6.48583,23.46081 - parent: 1 - type: Transform -- uid: 2317 - type: MedkitBurnFilled - components: - - pos: 8.532704,22.570185 - parent: 1 - type: Transform -- uid: 2318 - type: MedkitBruteFilled - components: - - pos: 10.485829,24.58581 - parent: 1 - type: Transform -- uid: 2319 - type: MedkitAdvancedFilled - components: - - pos: 10.517079,26.601435 - parent: 1 - type: Transform -- uid: 2320 - type: FaxMachineBase - components: - - pos: 10.5,25.5 - parent: 1 - type: Transform - - name: Medical - type: FaxMachine -- uid: 2321 - type: PaperOffice - components: - - pos: 10.666427,26.233912 - parent: 1 - type: Transform -- uid: 2322 - type: PaperOffice - components: - - pos: 10.338302,26.233912 - parent: 1 - type: Transform -- uid: 2323 - type: PaperOffice - components: - - pos: 10.275802,26.218287 - parent: 1 - type: Transform -- uid: 2324 - type: PaperOffice - components: - - pos: 10.463302,26.218287 - parent: 1 - type: Transform -- uid: 2325 - type: PaperOffice - components: - - pos: 10.494552,26.218287 - parent: 1 - type: Transform -- uid: 2326 - type: PaperOffice - components: - - pos: 8.353927,31.631037 - parent: 1 - type: Transform -- uid: 2327 - type: PaperOffice - components: - - pos: 8.447677,31.584162 - parent: 1 - type: Transform -- uid: 2328 - type: PaperOffice - components: - - pos: 8.494552,31.584162 - parent: 1 - type: Transform -- uid: 2329 - type: ClothingNeckStethoscope - components: - - pos: 10.447677,31.662287 - parent: 1 - type: Transform -- uid: 2330 - type: BoxFolderWhite - components: - - pos: 8.338302,31.568537 - parent: 1 - type: Transform -- uid: 2331 - type: BoxFolderWhite - components: - - pos: 10.338302,26.224789 - parent: 1 - type: Transform -- uid: 2332 - type: ClothingNeckScarfStripedBlue - components: - - pos: 12.432052,31.537287 - parent: 1 - type: Transform -- uid: 2333 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 7.5,13.5 - parent: 1 - type: Transform -- uid: 2334 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 9.5,13.5 - parent: 1 - type: Transform -- uid: 2335 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 11.5,13.5 - parent: 1 - type: Transform -- uid: 2336 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 7.5,13.5 - parent: 1 - type: Transform -- uid: 2337 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 7.5,12.5 - parent: 1 - type: Transform -- uid: 2338 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 7.5,11.5 - parent: 1 - type: Transform -- uid: 2339 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 9.5,13.5 - parent: 1 - type: Transform -- uid: 2340 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 9.5,12.5 - parent: 1 - type: Transform -- uid: 2341 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 9.5,11.5 - parent: 1 - type: Transform -- uid: 2342 - type: WindoorMedicalLocked - components: - - rot: 3.141592653589793 rad - pos: 10.5,13.5 - parent: 1 - type: Transform -- uid: 2343 - type: WindoorMedicalLocked - components: - - rot: 3.141592653589793 rad - pos: 8.5,13.5 - parent: 1 - type: Transform -- uid: 2344 - type: WindoorMedicalLocked - components: - - rot: 3.141592653589793 rad - pos: 6.5,13.5 - parent: 1 - type: Transform -- uid: 2345 - type: Bed - components: - - pos: 6.5,11.5 - parent: 1 - type: Transform -- uid: 2346 - type: Bed - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform -- uid: 2347 - type: Bed - components: - - pos: 10.5,11.5 - parent: 1 - type: Transform -- uid: 2348 - type: BedsheetGreen - components: - - rot: 3.141592653589793 rad - pos: 6.5,11.5 - parent: 1 - type: Transform -- uid: 2349 - type: BedsheetGreen - components: - - rot: 3.141592653589793 rad - pos: 8.5,11.5 - parent: 1 - type: Transform -- uid: 2350 - type: BedsheetGreen - components: - - rot: 3.141592653589793 rad - pos: 10.5,11.5 - parent: 1 - type: Transform -- uid: 2351 - type: DisposalUnit - components: - - pos: 11.5,14.5 - parent: 1 - type: Transform -- uid: 2352 - type: BoxBodyBag - components: - - pos: 4.501326,17.543652 - parent: 1 - type: Transform -- uid: 2353 - type: Table - components: - - pos: 11.5,19.5 - parent: 1 - type: Transform -- uid: 2354 - type: Table - components: - - pos: 11.5,18.5 - parent: 1 - type: Transform -- uid: 2355 - type: Table - components: - - pos: 8.5,17.5 - parent: 1 - type: Transform -- uid: 2356 - type: Table - components: - - pos: 7.5,17.5 - parent: 1 - type: Transform -- uid: 2357 - type: Table - components: - - pos: 6.5,17.5 - parent: 1 - type: Transform -- uid: 2358 - type: Table - components: - - pos: 6.5,16.5 - parent: 1 - type: Transform -- uid: 2359 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 7.5,16.5 - parent: 1 - type: Transform -- uid: 2360 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,18.5 - parent: 1 - type: Transform -- uid: 2361 - type: Vaccinator - components: - - pos: 11.5,17.5 - parent: 1 - type: Transform -- uid: 2362 - type: DiseaseDiagnoser - components: - - pos: 11.5,16.5 - parent: 1 - type: Transform -- uid: 2363 - type: BoxSterileMask - components: - - pos: 6.4805007,17.592987 - parent: 1 - type: Transform -- uid: 2364 - type: BoxMouthSwab - components: - - pos: 6.4961257,16.733612 - parent: 1 - type: Transform -- uid: 2365 - type: BoxLatexGloves - components: - - pos: 7.4180007,17.608612 - parent: 1 - type: Transform -- uid: 2366 - type: SyringeSpaceacillin - components: - - pos: 8.38675,17.577362 - parent: 1 - type: Transform -- uid: 2367 - type: PaperOffice - components: - - rot: -1.5707963267948966 rad - pos: 11.600925,18.432741 - parent: 1 - type: Transform -- uid: 2368 - type: PaperOffice - components: - - rot: -1.5707963267948966 rad - pos: 11.42905,18.682741 - parent: 1 - type: Transform -- uid: 2369 - type: PaperOffice - components: - - rot: -1.5707963267948966 rad - pos: 11.382175,18.698366 - parent: 1 - type: Transform -- uid: 2370 - type: PaperOffice - components: - - rot: -1.5707963267948966 rad - pos: 11.67905,18.729616 - parent: 1 - type: Transform -- uid: 2371 - type: PaperOffice - components: - - rot: -1.5707963267948966 rad - pos: 11.507175,18.479616 - parent: 1 - type: Transform -- uid: 2372 - type: BoxFolderWhite - components: - - rot: -1.5707963267948966 rad - pos: 11.49155,19.354616 - parent: 1 - type: Transform -- uid: 2373 - type: CloningPodMachineCircuitboard - components: - - pos: 4.487036,37.5167 - parent: 1 - type: Transform -- uid: 2374 - type: MedicalScannerMachineCircuitboard - components: - - pos: 4.487036,37.938576 - parent: 1 - type: Transform -- uid: 2375 - type: BiomassReclaimerMachineCircuitboard - components: - - pos: 4.5097117,38.40509 - parent: 1 - type: Transform -- uid: 2376 - type: Crowbar - components: - - pos: 4.494688,39.490654 - parent: 1 - type: Transform - - nextAttack: 395.9754995 - type: MeleeWeapon -- uid: 2377 - type: Multitool - components: - - pos: 4.487036,39.554657 - parent: 1 - type: Transform -- uid: 2378 - type: Wrench - components: - - pos: 8.571079,33.55169 - parent: 1 - type: Transform -- uid: 2379 - type: Ointment - components: - - pos: 9.117954,33.567314 - parent: 1 - type: Transform -- uid: 2380 - type: Ointment - components: - - pos: 9.508579,33.64544 - parent: 1 - type: Transform -- uid: 2381 - type: Ointment - components: - - pos: 9.930454,33.52044 - parent: 1 - type: Transform -- uid: 2382 - type: Beaker - components: - - pos: 10.321079,33.83294 - parent: 1 - type: Transform -- uid: 2383 - type: Beaker - components: - - pos: 10.680454,33.64544 - parent: 1 - type: Transform -- uid: 2384 - type: GasThermoMachineFreezer - components: - - pos: 7.5,36.5 - parent: 1 - type: Transform -- uid: 2385 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 6.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2386 - type: GasPipeFourway - components: - - pos: 9.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2387 - type: GasPipeBend - components: - - pos: 11.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2388 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 11.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2389 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 9.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2390 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 10.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2391 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 12.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2392 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2393 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2394 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 7.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2395 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2396 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: 8.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2397 - type: GasFilterFlipped - components: - - rot: -1.5707963267948966 rad - pos: 10.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2398 - type: GasPort - components: - - pos: 6.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2399 - type: GasPort - components: - - pos: 12.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2400 - type: AirCanister - components: - - pos: 6.5,37.5 - parent: 1 - type: Transform -- uid: 2401 - type: StorageCanister - components: - - pos: 12.5,37.5 - parent: 1 - type: Transform -- uid: 2402 - type: Paper - components: - - name: hastily scribbled note - type: MetaData - - pos: 10.220547,33.42669 - parent: 1 - type: Transform - - content: > - <100K - - 101.3kPa - - filter co2/n20 - type: Paper -- uid: 2403 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2404 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2405 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2406 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2407 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2408 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2409 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2410 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2411 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 4.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2412 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2413 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2414 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2415 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2416 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 2.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2417 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2418 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 2.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2419 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 2.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2420 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 3.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2421 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 2.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2422 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 4.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2423 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 4.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2424 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 2.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2425 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 4.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2426 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2427 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2428 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2429 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2430 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2431 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2432 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -3.5,29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2433 - type: Poweredlight - components: - - pos: -0.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2434 - type: GasPipeStraight - components: - - pos: 3.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2435 - type: GasPipeStraight - components: - - pos: 3.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2436 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2437 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2438 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2439 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2440 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2441 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2442 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2443 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2444 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2445 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2446 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2447 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2448 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2449 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2450 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2451 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2452 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2453 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2454 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2455 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2456 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2457 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 14.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2458 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 14.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2459 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 14.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2460 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 15.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2461 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 15.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2462 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2463 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 15.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2464 - type: GasPipeStraight - components: - - pos: 15.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2465 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2466 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2467 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2468 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2469 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2470 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2471 - type: CarpetPurple - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform -- uid: 2472 - type: CarpetPurple - components: - - pos: -1.5,2.5 - parent: 1 - type: Transform -- uid: 2473 - type: CarpetPurple - components: - - pos: -2.5,1.5 - parent: 1 - type: Transform -- uid: 2474 - type: CarpetPurple - components: - - pos: -2.5,2.5 - parent: 1 - type: Transform -- uid: 2475 - type: CarpetPurple - components: - - pos: -16.5,-5.5 - parent: 1 - type: Transform -- uid: 2476 - type: CarpetPurple - components: - - pos: -16.5,-4.5 - parent: 1 - type: Transform -- uid: 2477 - type: CarpetPurple - components: - - pos: -16.5,-3.5 - parent: 1 - type: Transform -- uid: 2478 - type: CarpetPurple - components: - - pos: -17.5,-5.5 - parent: 1 - type: Transform -- uid: 2479 - type: CarpetPurple - components: - - pos: -17.5,-4.5 - parent: 1 - type: Transform -- uid: 2480 - type: CarpetPurple - components: - - pos: -17.5,-3.5 - parent: 1 - type: Transform -- uid: 2481 - type: CarpetPurple - components: - - pos: -18.5,-5.5 - parent: 1 - type: Transform -- uid: 2482 - type: CarpetPurple - components: - - pos: -18.5,-4.5 - parent: 1 - type: Transform -- uid: 2483 - type: CarpetPurple - components: - - pos: -18.5,-3.5 - parent: 1 - type: Transform -- uid: 2484 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2485 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 8.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2486 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 9.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2487 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 3.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2488 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 7.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2489 - type: GasVentScrubber - components: - - pos: 4.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2490 - type: GasVentScrubber - components: - - pos: 9.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2491 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 16.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2492 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 19.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2493 - type: RandomArcade - components: - - rot: 3.141592653589793 rad - pos: 17.5,12.5 - parent: 1 - type: Transform -- uid: 2494 - type: RandomArcade - components: - - pos: 17.5,11.5 - parent: 1 - type: Transform -- uid: 2495 - type: RandomArcade - components: - - pos: 18.5,11.5 - parent: 1 - type: Transform -- uid: 2496 - type: RandomArcade - components: - - rot: 3.141592653589793 rad - pos: 18.5,12.5 - parent: 1 - type: Transform -- uid: 2497 - type: RandomArcade - components: - - rot: 3.141592653589793 rad - pos: 16.5,12.5 - parent: 1 - type: Transform -- uid: 2498 - type: RandomArcade - components: - - pos: 16.5,11.5 - parent: 1 - type: Transform -- uid: 2499 - type: RandomArcade - components: - - rot: 3.141592653589793 rad - pos: 16.5,8.5 - parent: 1 - type: Transform -- uid: 2500 - type: RandomArcade - components: - - rot: 3.141592653589793 rad - pos: 17.5,8.5 - parent: 1 - type: Transform -- uid: 2501 - type: RandomArcade - components: - - rot: 3.141592653589793 rad - pos: 18.5,8.5 - parent: 1 - type: Transform -- uid: 2502 - type: ChairFolding - components: - - pos: 16.5,13.5 - parent: 1 - type: Transform -- uid: 2503 - type: ChairFolding - components: - - pos: 17.5,13.5 - parent: 1 - type: Transform -- uid: 2504 - type: ChairFolding - components: - - pos: 18.5,13.5 - parent: 1 - type: Transform -- uid: 2505 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 16.5,10.5 - parent: 1 - type: Transform -- uid: 2506 - type: ChairFolding - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform -- uid: 2507 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 18.5,10.5 - parent: 1 - type: Transform -- uid: 2508 - type: ChairFoldingSpawnFolded - components: - - rot: 3.141592653589793 rad - pos: 19.527164,13.664964 - parent: 1 - type: Transform -- uid: 2509 - type: ChairFoldingSpawnFolded - components: - - rot: 3.141592653589793 rad - pos: 19.527164,13.664964 - parent: 1 - type: Transform -- uid: 2510 - type: ChairFoldingSpawnFolded - components: - - rot: 3.141592653589793 rad - pos: 19.527164,13.711839 - parent: 1 - type: Transform -- uid: 2511 - type: ChairFoldingSpawnFolded - components: - - rot: 3.141592653589793 rad - pos: 19.527164,13.758714 - parent: 1 - type: Transform -- uid: 2512 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2513 - type: PoweredSmallLight - components: - - pos: 22.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2514 - type: APCBasic - components: - - pos: 22.5,10.5 - parent: 1 - type: Transform -- uid: 2515 - type: SubstationBasic - components: - - pos: 23.5,9.5 - parent: 1 - type: Transform -- uid: 2516 - type: CableMV - components: - - pos: 23.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2517 - type: CableMV - components: - - pos: 22.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2518 - type: CableMV - components: - - pos: 22.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2519 - type: CableApcExtension - components: - - pos: 22.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2520 - type: CableApcExtension - components: - - pos: 22.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2521 - type: CableApcExtension - components: - - pos: 22.5,8.5 - parent: 1 - type: Transform -- uid: 2522 - type: CableApcExtension - components: - - pos: 22.5,7.5 - parent: 1 - type: Transform -- uid: 2523 - type: CableApcExtension - components: - - pos: 22.5,6.5 - parent: 1 - type: Transform -- uid: 2524 - type: CableApcExtension - components: - - pos: 21.5,6.5 - parent: 1 - type: Transform -- uid: 2525 - type: CableApcExtension - components: - - pos: 20.5,6.5 - parent: 1 - type: Transform -- uid: 2526 - type: CableApcExtension - components: - - pos: 19.5,6.5 - parent: 1 - type: Transform -- uid: 2527 - type: CableApcExtension - components: - - pos: 18.5,6.5 - parent: 1 - type: Transform -- uid: 2528 - type: CableApcExtension - components: - - pos: 17.5,6.5 - parent: 1 - type: Transform -- uid: 2529 - type: CableApcExtension - components: - - pos: 16.5,6.5 - parent: 1 - type: Transform -- uid: 2530 - type: CableApcExtension - components: - - pos: 15.5,6.5 - parent: 1 - type: Transform -- uid: 2531 - type: CableApcExtension - components: - - pos: 14.5,6.5 - parent: 1 - type: Transform -- uid: 2532 - type: CableApcExtension - components: - - pos: 13.5,6.5 - parent: 1 - type: Transform -- uid: 2533 - type: CableApcExtension - components: - - pos: 22.5,5.5 - parent: 1 - type: Transform -- uid: 2534 - type: CableApcExtension - components: - - pos: 22.5,4.5 - parent: 1 - type: Transform -- uid: 2535 - type: CableApcExtension - components: - - pos: 22.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2536 - type: CableApcExtension - components: - - pos: 17.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2537 - type: CableApcExtension - components: - - pos: 17.5,8.5 - parent: 1 - type: Transform -- uid: 2538 - type: CableApcExtension - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2539 - type: CableApcExtension - components: - - pos: 17.5,10.5 - parent: 1 - type: Transform -- uid: 2540 - type: CableApcExtension - components: - - pos: 17.5,11.5 - parent: 1 - type: Transform -- uid: 2541 - type: CableApcExtension - components: - - pos: 17.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2542 - type: CableApcExtension - components: - - pos: 22.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2543 - type: CableApcExtension - components: - - pos: 22.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2544 - type: CableApcExtension - components: - - pos: 22.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2545 - type: CableApcExtension - components: - - pos: 22.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2546 - type: CableApcExtension - components: - - pos: 22.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2547 - type: CableApcExtension - components: - - pos: 22.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2548 - type: CableApcExtension - components: - - pos: 22.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2549 - type: CableApcExtension - components: - - pos: 22.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2550 - type: CableApcExtension - components: - - pos: 22.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2551 - type: CableApcExtension - components: - - pos: 22.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2552 - type: CableApcExtension - components: - - pos: 22.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2553 - type: CableApcExtension - components: - - pos: 22.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2554 - type: CableApcExtension - components: - - pos: 22.5,23.5 - parent: 1 - type: Transform -- uid: 2555 - type: CableApcExtension - components: - - pos: 22.5,24.5 - parent: 1 - type: Transform -- uid: 2556 - type: CableApcExtension - components: - - pos: 22.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2557 - type: CableApcExtension - components: - - pos: 23.5,6.5 - parent: 1 - type: Transform -- uid: 2558 - type: CableApcExtension - components: - - pos: 24.5,6.5 - parent: 1 - type: Transform -- uid: 2559 - type: CableApcExtension - components: - - pos: 25.5,6.5 - parent: 1 - type: Transform -- uid: 2560 - type: CableApcExtension - components: - - pos: 26.5,6.5 - parent: 1 - type: Transform -- uid: 2561 - type: CableApcExtension - components: - - pos: 27.5,6.5 - parent: 1 - type: Transform -- uid: 2562 - type: CableApcExtension - components: - - pos: 27.5,7.5 - parent: 1 - type: Transform -- uid: 2563 - type: CableApcExtension - components: - - pos: 27.5,8.5 - parent: 1 - type: Transform -- uid: 2564 - type: CableApcExtension - components: - - pos: 27.5,9.5 - parent: 1 - type: Transform -- uid: 2565 - type: CableApcExtension - components: - - pos: 27.5,10.5 - parent: 1 - type: Transform -- uid: 2566 - type: CableApcExtension - components: - - pos: 28.5,8.5 - parent: 1 - type: Transform -- uid: 2567 - type: CableApcExtension - components: - - pos: 29.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2568 - type: CableApcExtension - components: - - pos: 30.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2569 - type: CableApcExtension - components: - - pos: 27.5,11.5 - parent: 1 - type: Transform -- uid: 2570 - type: CableApcExtension - components: - - pos: -7.5,2.5 - parent: 1 - type: Transform -- uid: 2571 - type: CableApcExtension - components: - - pos: -7.5,3.5 - parent: 1 - type: Transform -- uid: 2572 - type: CableApcExtension - components: - - pos: 23.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2573 - type: CableApcExtension - components: - - pos: 24.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2574 - type: CableApcExtension - components: - - pos: 25.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2575 - type: CableApcExtension - components: - - pos: 26.5,14.5 - parent: 1 - type: Transform -- uid: 2576 - type: CableApcExtension - components: - - pos: 27.5,14.5 - parent: 1 - type: Transform -- uid: 2577 - type: CableApcExtension - components: - - pos: 25.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2578 - type: CableApcExtension - components: - - pos: 25.5,12.5 - parent: 1 - type: Transform -- uid: 2579 - type: CableApcExtension - components: - - pos: 25.5,11.5 - parent: 1 - type: Transform -- uid: 2580 - type: CableApcExtension - components: - - pos: 23.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2581 - type: CableApcExtension - components: - - pos: 24.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2582 - type: CableApcExtension - components: - - pos: 25.5,18.5 - parent: 1 - type: Transform -- uid: 2583 - type: CableApcExtension - components: - - pos: 26.5,18.5 - parent: 1 - type: Transform -- uid: 2584 - type: CableApcExtension - components: - - pos: 27.5,18.5 - parent: 1 - type: Transform -- uid: 2585 - type: CableApcExtension - components: - - pos: 28.5,18.5 - parent: 1 - type: Transform -- uid: 2586 - type: CableApcExtension - components: - - pos: 29.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2587 - type: CableApcExtension - components: - - pos: 30.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2588 - type: CableApcExtension - components: - - pos: 26.5,19.5 - parent: 1 - type: Transform -- uid: 2589 - type: CableHV - components: - - pos: 28.5,23.5 - parent: 1 - type: Transform -- uid: 2590 - type: TelecomServer - components: - - pos: 25.5,25.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 2591 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 2591 - type: EncryptionKeyCommon - components: - - flags: InContainer - type: MetaData - - parent: 2590 - type: Transform - - canCollide: False - type: Physics -- uid: 2592 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 2593 - type: SubstationBasic - components: - - pos: 28.5,23.5 - parent: 1 - type: Transform -- uid: 2594 - type: CableApcExtension - components: - - pos: 31.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2595 - type: CableApcExtension - components: - - pos: 31.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2596 - type: CableApcExtension - components: - - pos: -7.5,4.5 - parent: 1 - type: Transform -- uid: 2597 - type: CableApcExtension - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform -- uid: 2598 - type: CableApcExtension - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform -- uid: 2599 - type: CableApcExtension - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform -- uid: 2600 - type: CableApcExtension - components: - - pos: -4.5,5.5 - parent: 1 - type: Transform -- uid: 2601 - type: CableApcExtension - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform -- uid: 2602 - type: CableApcExtension - components: - - pos: -2.5,5.5 - parent: 1 - type: Transform -- uid: 2603 - type: CableApcExtension - components: - - pos: -1.5,5.5 - parent: 1 - type: Transform -- uid: 2604 - type: CableApcExtension - components: - - pos: -0.5,5.5 - parent: 1 - type: Transform -- uid: 2605 - type: CableApcExtension - components: - - pos: 0.5,5.5 - parent: 1 - type: Transform -- uid: 2606 - type: CableApcExtension - components: - - pos: 1.5,5.5 - parent: 1 - type: Transform -- uid: 2607 - type: CableApcExtension - components: - - pos: -5.5,6.5 - parent: 1 - type: Transform -- uid: 2608 - type: CableApcExtension - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform -- uid: 2609 - type: CableApcExtension - components: - - pos: -9.5,5.5 - parent: 1 - type: Transform -- uid: 2610 - type: CableApcExtension - components: - - pos: -10.5,5.5 - parent: 1 - type: Transform -- uid: 2611 - type: CableApcExtension - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform -- uid: 2612 - type: CableApcExtension - components: - - pos: -12.5,5.5 - parent: 1 - type: Transform -- uid: 2613 - type: CableApcExtension - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform -- uid: 2614 - type: CableApcExtension - components: - - pos: -14.5,5.5 - parent: 1 - type: Transform -- uid: 2615 - type: CableApcExtension - components: - - pos: -15.5,5.5 - parent: 1 - type: Transform -- uid: 2616 - type: CableApcExtension - components: - - pos: -16.5,5.5 - parent: 1 - type: Transform -- uid: 2617 - type: CableApcExtension - components: - - pos: -16.5,4.5 - parent: 1 - type: Transform -- uid: 2618 - type: CableApcExtension - components: - - pos: -4.5,33.5 - parent: 1 - type: Transform -- uid: 2619 - type: CableApcExtension - components: - - pos: -5.5,33.5 - parent: 1 - type: Transform -- uid: 2620 - type: CableApcExtension - components: - - pos: -6.5,33.5 - parent: 1 - type: Transform -- uid: 2621 - type: CableApcExtension - components: - - pos: -7.5,33.5 - parent: 1 - type: Transform -- uid: 2622 - type: CableApcExtension - components: - - pos: -8.5,33.5 - parent: 1 - type: Transform -- uid: 2623 - type: CableApcExtension - components: - - pos: -8.5,32.5 - parent: 1 - type: Transform -- uid: 2624 - type: CableApcExtension - components: - - pos: -8.5,31.5 - parent: 1 - type: Transform -- uid: 2625 - type: CableApcExtension - components: - - pos: -8.5,30.5 - parent: 1 - type: Transform -- uid: 2626 - type: CableApcExtension - components: - - pos: -8.5,29.5 - parent: 1 - type: Transform -- uid: 2627 - type: CableApcExtension - components: - - pos: -8.5,28.5 - parent: 1 - type: Transform -- uid: 2628 - type: CableApcExtension - components: - - pos: -9.5,32.5 - parent: 1 - type: Transform -- uid: 2629 - type: CableApcExtension - components: - - pos: -10.5,32.5 - parent: 1 - type: Transform -- uid: 2630 - type: CableApcExtension - components: - - pos: -11.5,32.5 - parent: 1 - type: Transform -- uid: 2631 - type: CableApcExtension - components: - - pos: -12.5,32.5 - parent: 1 - type: Transform -- uid: 2632 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,29.5 - parent: 1 - type: Transform -- uid: 2633 - type: RailingCorner - components: - - rot: 3.141592653589793 rad - pos: -10.5,30.5 - parent: 1 - type: Transform -- uid: 2634 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -9.5,30.5 - parent: 1 - type: Transform -- uid: 2635 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -6.5,30.5 - parent: 1 - type: Transform -- uid: 2636 - type: Table - components: - - pos: -9.5,28.5 - parent: 1 - type: Transform -- uid: 2637 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,29.5 - parent: 1 - type: Transform -- uid: 2638 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,27.5 - parent: 1 - type: Transform -- uid: 2639 - type: Chair - components: - - pos: -9.5,29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2640 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,28.5 - parent: 1 - type: Transform -- uid: 2641 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -10.5,28.5 - parent: 1 - type: Transform -- uid: 2642 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -8.5,28.5 - parent: 1 - type: Transform -- uid: 2643 - type: ChairFoldingSpawnFolded - components: - - rot: -1.5707963267948966 rad - pos: -9.868263,27.709732 - parent: 1 - type: Transform -- uid: 2644 - type: WallSolidRust - components: - - pos: -19.5,30.5 - parent: 1 - type: Transform -- uid: 2645 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -5.5,35.5 - parent: 1 - type: Transform -- uid: 2646 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -8.5,35.5 - parent: 1 - type: Transform -- uid: 2647 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -9.5,35.5 - parent: 1 - type: Transform -- uid: 2648 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -10.5,35.5 - parent: 1 - type: Transform -- uid: 2649 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -13.5,34.5 - parent: 1 - type: Transform -- uid: 2650 - type: WallSolidRust - components: - - pos: -12.5,34.5 - parent: 1 - type: Transform -- uid: 2651 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,34.5 - parent: 1 - type: Transform -- uid: 2652 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,35.5 - parent: 1 - type: Transform -- uid: 2653 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -14.5,34.5 - parent: 1 - type: Transform -- uid: 2654 - type: WallSolid - components: - - pos: -18.5,34.5 - parent: 1 - type: Transform -- uid: 2655 - type: WallReinforced - components: - - pos: -18.5,36.5 - parent: 1 - type: Transform -- uid: 2656 - type: WallReinforced - components: - - pos: -18.5,37.5 - parent: 1 - type: Transform -- uid: 2657 - type: WallReinforced - components: - - pos: -18.5,38.5 - parent: 1 - type: Transform -- uid: 2658 - type: WallReinforced - components: - - pos: -18.5,39.5 - parent: 1 - type: Transform -- uid: 2659 - type: WallReinforced - components: - - pos: -18.5,40.5 - parent: 1 - type: Transform -- uid: 2660 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,34.5 - parent: 1 - type: Transform -- uid: 2661 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,34.5 - parent: 1 - type: Transform -- uid: 2662 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,34.5 - parent: 1 - type: Transform -- uid: 2663 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,34.5 - parent: 1 - type: Transform -- uid: 2664 - type: PottedPlantRandom - components: - - pos: -6.5,34.5 - parent: 1 - type: Transform -- uid: 2665 - type: PottedPlantRandom - components: - - pos: -6.5,30.5 - parent: 1 - type: Transform -- uid: 2666 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 3.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2667 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -15.5,-16.5 - parent: 1 - type: Transform -- uid: 2668 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -14.5,-16.5 - parent: 1 - type: Transform -- uid: 2669 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -13.5,-16.5 - parent: 1 - type: Transform -- uid: 2670 - type: GasVentPump - components: - - pos: 3.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2671 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 7.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2672 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 16.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2673 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 19.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2674 - type: GasVentPump - components: - - pos: 8.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2675 - type: GasPipeStraight - components: - - pos: 2.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2676 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2677 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2678 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2679 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2680 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2681 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2682 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2683 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 4.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2684 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 2.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2685 - type: GasPipeFourway - components: - - pos: 2.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2686 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2687 - type: CableMV - components: - - pos: -5.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2688 - type: CableMV - components: - - pos: -6.5,17.5 - parent: 1 - type: Transform -- uid: 2689 - type: CableMV - components: - - pos: -7.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2690 - type: CableMV - components: - - pos: -8.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2691 - type: CableMV - components: - - pos: -9.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2692 - type: CableMV - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2693 - type: SubstationBasic - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform -- uid: 2694 - type: AirlockEngineeringLocked - components: - - pos: 22.5,7.5 - parent: 1 - type: Transform -- uid: 2695 - type: AirlockEngineeringLocked - components: - - pos: -7.5,17.5 - parent: 1 - type: Transform -- uid: 2696 - type: ChairFolding - components: - - pos: -8.5,18.5 - parent: 1 - type: Transform -- uid: 2697 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -10.5,17.5 - parent: 1 - type: Transform -- uid: 2698 - type: CableMV - components: - - pos: -10.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2699 - type: CableApcExtension - components: - - pos: -10.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2700 - type: CableApcExtension - components: - - pos: -11.5,17.5 - parent: 1 - type: Transform -- uid: 2701 - type: CableApcExtension - components: - - pos: -12.5,17.5 - parent: 1 - type: Transform -- uid: 2702 - type: CableApcExtension - components: - - pos: -12.5,16.5 - parent: 1 - type: Transform -- uid: 2703 - type: CableApcExtension - components: - - pos: -12.5,15.5 - parent: 1 - type: Transform -- uid: 2704 - type: CableApcExtension - components: - - pos: -12.5,14.5 - parent: 1 - type: Transform -- uid: 2705 - type: CableApcExtension - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform -- uid: 2706 - type: CableApcExtension - components: - - pos: -12.5,12.5 - parent: 1 - type: Transform -- uid: 2707 - type: CableApcExtension - components: - - pos: -12.5,11.5 - parent: 1 - type: Transform -- uid: 2708 - type: CableApcExtension - components: - - pos: -12.5,10.5 - parent: 1 - type: Transform -- uid: 2709 - type: CableApcExtension - components: - - pos: -12.5,9.5 - parent: 1 - type: Transform -- uid: 2710 - type: CableApcExtension - components: - - pos: -11.5,9.5 - parent: 1 - type: Transform -- uid: 2711 - type: CableApcExtension - components: - - pos: -10.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2712 - type: CableApcExtension - components: - - pos: -9.5,9.5 - parent: 1 - type: Transform -- uid: 2713 - type: CableApcExtension - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform -- uid: 2714 - type: CableApcExtension - components: - - pos: -13.5,9.5 - parent: 1 - type: Transform -- uid: 2715 - type: CableApcExtension - components: - - pos: -14.5,9.5 - parent: 1 - type: Transform -- uid: 2716 - type: CableApcExtension - components: - - pos: -15.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2717 - type: CableApcExtension - components: - - pos: -16.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2718 - type: CableApcExtension - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform -- uid: 2719 - type: CableApcExtension - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2720 - type: CableApcExtension - components: - - pos: -15.5,13.5 - parent: 1 - type: Transform -- uid: 2721 - type: CableApcExtension - components: - - pos: -16.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2722 - type: CableApcExtension - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform -- uid: 2723 - type: CableApcExtension - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2724 - type: CableApcExtension - components: - - pos: -9.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2725 - type: CableApcExtension - components: - - pos: -8.5,12.5 - parent: 1 - type: Transform -- uid: 2726 - type: CableApcExtension - components: - - pos: -11.5,15.5 - parent: 1 - type: Transform -- uid: 2727 - type: CableApcExtension - components: - - pos: -10.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2728 - type: CableApcExtension - components: - - pos: -9.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2729 - type: CableApcExtension - components: - - pos: -8.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2730 - type: SubstationBasic - components: - - pos: -15.5,16.5 - parent: 1 - type: Transform -- uid: 2731 - type: MaintenanceFluffSpawner - components: - - pos: -16.5,16.5 - parent: 1 - type: Transform -- uid: 2732 - type: WallSolid - components: - - pos: -15.5,18.5 - parent: 1 - type: Transform -- uid: 2733 - type: WallSolid - components: - - pos: -14.5,17.5 - parent: 1 - type: Transform -- uid: 2734 - type: CableApcExtension - components: - - pos: -12.5,18.5 - parent: 1 - type: Transform -- uid: 2735 - type: CableApcExtension - components: - - pos: -12.5,19.5 - parent: 1 - type: Transform -- uid: 2736 - type: CableApcExtension - components: - - pos: -12.5,20.5 - parent: 1 - type: Transform -- uid: 2737 - type: CableApcExtension - components: - - pos: -12.5,21.5 - parent: 1 - type: Transform -- uid: 2738 - type: CableApcExtension - components: - - pos: -12.5,22.5 - parent: 1 - type: Transform -- uid: 2739 - type: CableApcExtension - components: - - pos: -12.5,23.5 - parent: 1 - type: Transform -- uid: 2740 - type: CableApcExtension - components: - - pos: -12.5,24.5 - parent: 1 - type: Transform -- uid: 2741 - type: CableApcExtension - components: - - pos: -12.5,25.5 - parent: 1 - type: Transform -- uid: 2742 - type: CableApcExtension - components: - - pos: -12.5,26.5 - parent: 1 - type: Transform -- uid: 2743 - type: CableApcExtension - components: - - pos: -12.5,27.5 - parent: 1 - type: Transform -- uid: 2744 - type: CableApcExtension - components: - - pos: -12.5,28.5 - parent: 1 - type: Transform -- uid: 2745 - type: CableApcExtension - components: - - pos: -12.5,29.5 - parent: 1 - type: Transform -- uid: 2746 - type: CableApcExtension - components: - - pos: -9.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2747 - type: CableApcExtension - components: - - pos: -8.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2748 - type: CableApcExtension - components: - - pos: -7.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2749 - type: PoweredSmallLight - components: - - pos: -5.5,17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2750 - type: Bible - components: - - pos: 21.54948,-1.5566196 - parent: 1 - type: Transform -- uid: 2751 - type: LampGold - components: - - pos: 21.502605,-1.9941196 - parent: 1 - type: Transform -- uid: 2752 - type: HighSecCommandLocked - components: - - pos: 26.5,4.5 - parent: 1 - type: Transform -- uid: 2753 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2754 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -9.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2755 - type: Poweredlight - components: - - pos: -2.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2756 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 3.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2757 - type: Poweredlight - components: - - pos: 13.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2758 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 21.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2759 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2760 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2761 - type: SMESBasic - components: - - pos: 25.5,23.5 - parent: 1 - type: Transform -- uid: 2762 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2763 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2764 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 11.5,39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2765 - type: Table - components: - - pos: -14.5,8.5 - parent: 1 - type: Transform -- uid: 2766 - type: Table - components: - - pos: -14.5,9.5 - parent: 1 - type: Transform -- uid: 2767 - type: Table - components: - - pos: -14.5,10.5 - parent: 1 - type: Transform -- uid: 2768 - type: Table - components: - - pos: -10.5,8.5 - parent: 1 - type: Transform -- uid: 2769 - type: Table - components: - - pos: -10.5,9.5 - parent: 1 - type: Transform -- uid: 2770 - type: Table - components: - - pos: -10.5,11.5 - parent: 1 - type: Transform -- uid: 2771 - type: Table - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform -- uid: 2772 - type: Table - components: - - pos: -14.5,12.5 - parent: 1 - type: Transform -- uid: 2773 - type: Table - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform -- uid: 2774 - type: Table - components: - - pos: -14.5,14.5 - parent: 1 - type: Transform -- uid: 2775 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2776 - type: Table - components: - - pos: -10.5,15.5 - parent: 1 - type: Transform -- uid: 2777 - type: CableHV - components: - - pos: -19.5,20.5 - parent: 1 - type: Transform -- uid: 2778 - type: CableApcExtension - components: - - pos: -20.5,17.5 - parent: 1 - type: Transform -- uid: 2779 - type: CableApcExtension - components: - - pos: -20.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2780 - type: CableHV - components: - - pos: -20.5,20.5 - parent: 1 - type: Transform -- uid: 2781 - type: PoweredSmallLight - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2782 - type: PoweredSmallLight - components: - - pos: -8.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2783 - type: CableApcExtension - components: - - pos: -21.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2784 - type: CableHV - components: - - pos: -18.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2785 - type: CableApcExtension - components: - - pos: -19.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2786 - type: ShuttersNormalOpen - components: - - pos: -14.5,14.5 - parent: 1 - type: Transform -- uid: 2787 - type: ShuttersNormalOpen - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform -- uid: 2788 - type: ShuttersNormalOpen - components: - - pos: -14.5,12.5 - parent: 1 - type: Transform -- uid: 2789 - type: ShuttersNormalOpen - components: - - pos: -14.5,10.5 - parent: 1 - type: Transform -- uid: 2790 - type: ShuttersNormalOpen - components: - - pos: -14.5,9.5 - parent: 1 - type: Transform -- uid: 2791 - type: ShuttersNormalOpen - components: - - pos: -14.5,8.5 - parent: 1 - type: Transform -- uid: 2792 - type: ShuttersNormalOpen - components: - - pos: -10.5,8.5 - parent: 1 - type: Transform -- uid: 2793 - type: ShuttersNormalOpen - components: - - pos: -10.5,9.5 - parent: 1 - type: Transform -- uid: 2794 - type: ShuttersNormalOpen - components: - - pos: -10.5,11.5 - parent: 1 - type: Transform -- uid: 2795 - type: ShuttersNormalOpen - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform -- uid: 2796 - type: ShuttersNormalOpen - components: - - pos: -10.5,14.5 - parent: 1 - type: Transform -- uid: 2797 - type: ShuttersNormalOpen - components: - - pos: -10.5,15.5 - parent: 1 - type: Transform -- uid: 2798 - type: CrateEmptySpawner - components: - - pos: -17.5,10.5 - parent: 1 - type: Transform -- uid: 2799 - type: CrateEmptySpawner - components: - - pos: -7.5,8.5 - parent: 1 - type: Transform -- uid: 2800 - type: CrateEmptySpawner - components: - - pos: -17.5,14.5 - parent: 1 - type: Transform -- uid: 2801 - type: CrateEmptySpawner - components: - - pos: -7.5,15.5 - parent: 1 - type: Transform -- uid: 2802 - type: CableMV - components: - - pos: -18.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2803 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -15.5,13.5 - parent: 1 - type: Transform -- uid: 2804 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -9.5,14.5 - parent: 1 - type: Transform -- uid: 2805 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -9.5,9.5 - parent: 1 - type: Transform -- uid: 2806 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,9.5 - parent: 1 - type: Transform -- uid: 2807 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -9.5,11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2808 - type: CableMV - components: - - pos: -19.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2809 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -18.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2810 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2811 - type: Poweredlight - components: - - pos: -12.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2812 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -8.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2813 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -14.5,19.5 - parent: 1 - type: Transform -- uid: 2814 - type: FirelockGlass - components: - - pos: -14.5,33.5 - parent: 1 - type: Transform -- uid: 2815 - type: WallReinforced - components: - - pos: -14.5,22.5 - parent: 1 - type: Transform -- uid: 2816 - type: SignDirectionalSci - components: - - pos: -14.4827,30.222769 - parent: 1 - type: Transform -- uid: 2817 - type: WallReinforced - components: - - pos: -14.5,26.5 - parent: 1 - type: Transform -- uid: 2818 - type: WallReinforced - components: - - pos: -14.5,25.5 - parent: 1 - type: Transform -- uid: 2819 - type: ReinforcedWindow - components: - - pos: -14.5,23.5 - parent: 1 - type: Transform -- uid: 2820 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -14.5,24.5 - parent: 1 - type: Transform -- uid: 2821 - type: ReinforcedWindow - components: - - pos: -14.5,24.5 - parent: 1 - type: Transform -- uid: 2822 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -14.5,28.5 - parent: 1 - type: Transform -- uid: 2823 - type: WallReinforced - components: - - pos: -14.5,30.5 - parent: 1 - type: Transform -- uid: 2824 - type: ReinforcedWindow - components: - - pos: -14.5,28.5 - parent: 1 - type: Transform -- uid: 2825 - type: ReinforcedWindow - components: - - pos: -17.5,30.5 - parent: 1 - type: Transform -- uid: 2826 - type: ReinforcedWindow - components: - - pos: -14.5,29.5 - parent: 1 - type: Transform -- uid: 2827 - type: WallReinforced - components: - - pos: -18.5,30.5 - parent: 1 - type: Transform -- uid: 2828 - type: InflatableDoor - components: - - pos: -27.5,28.5 - parent: 1 - type: Transform -- uid: 2829 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -20.5,30.5 - parent: 1 - type: Transform -- uid: 2830 - type: ReinforcedWindow - components: - - pos: -16.5,30.5 - parent: 1 - type: Transform -- uid: 2831 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -17.5,30.5 - parent: 1 - type: Transform -- uid: 2832 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -16.5,30.5 - parent: 1 - type: Transform -- uid: 2833 - type: Grille - components: - - pos: -15.5,30.5 - parent: 1 - type: Transform -- uid: 2834 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -14.5,29.5 - parent: 1 - type: Transform -- uid: 2835 - type: WallReinforced - components: - - pos: -14.5,21.5 - parent: 1 - type: Transform -- uid: 2836 - type: WallReinforced - components: - - pos: -18.5,22.5 - parent: 1 - type: Transform -- uid: 2837 - type: WallReinforced - components: - - pos: -18.5,23.5 - parent: 1 - type: Transform -- uid: 2838 - type: WallReinforced - components: - - pos: -18.5,28.5 - parent: 1 - type: Transform -- uid: 2839 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -14.5,23.5 - parent: 1 - type: Transform -- uid: 2840 - type: Table - components: - - pos: -16.5,29.5 - parent: 1 - type: Transform -- uid: 2841 - type: Table - components: - - pos: -15.5,29.5 - parent: 1 - type: Transform -- uid: 2842 - type: FlashlightSeclite - components: - - pos: -17.543365,26.708624 - parent: 1 - type: Transform -- uid: 2843 - type: ExtinguisherCabinet - components: - - pos: -18.5,30.5 - parent: 1 - type: Transform -- uid: 2844 - type: LockerSecurityFilled - components: - - pos: -17.5,24.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2845 - type: Table - components: - - pos: -15.5,24.5 - parent: 1 - type: Transform -- uid: 2846 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -16.5,28.5 - parent: 1 - type: Transform -- uid: 2847 - type: AirlockSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: -14.5,27.5 - parent: 1 - type: Transform -- uid: 2848 - type: AirlockMaintSecLocked - components: - - pos: -18.5,29.5 - parent: 1 - type: Transform -- uid: 2849 - type: Handcuffs - components: - - pos: -15.5690565,29.738209 - parent: 1 - type: Transform -- uid: 2850 - type: Handcuffs - components: - - pos: -15.6940565,29.597584 - parent: 1 - type: Transform -- uid: 2851 - type: Flash - components: - - pos: -16.489683,29.613209 - parent: 1 - type: Transform -- uid: 2852 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2853 - type: CableApcExtension - components: - - pos: -13.5,28.5 - parent: 1 - type: Transform -- uid: 2854 - type: CableApcExtension - components: - - pos: -14.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2855 - type: CableApcExtension - components: - - pos: -15.5,28.5 - parent: 1 - type: Transform -- uid: 2856 - type: CableApcExtension - components: - - pos: -16.5,28.5 - parent: 1 - type: Transform -- uid: 2857 - type: CableApcExtension - components: - - pos: -14.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2858 - type: CableApcExtension - components: - - pos: -16.5,29.5 - parent: 1 - type: Transform -- uid: 2859 - type: CableApcExtension - components: - - pos: -16.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2860 - type: CableApcExtension - components: - - pos: -17.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2861 - type: CableApcExtension - components: - - pos: -15.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2862 - type: CableApcExtension - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2863 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 4.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2864 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2865 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -6.5,33.5 - parent: 1 - type: Transform -- uid: 2866 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -6.5,31.5 - parent: 1 - type: Transform -- uid: 2867 - type: FirelockGlass - components: - - pos: 1.5,29.5 - parent: 1 - type: Transform -- uid: 2868 - type: FirelockGlass - components: - - pos: 1.5,30.5 - parent: 1 - type: Transform -- uid: 2869 - type: FirelockGlass - components: - - pos: -0.5,28.5 - parent: 1 - type: Transform -- uid: 2870 - type: FirelockEdge - components: - - pos: -3.5,19.5 - parent: 1 - type: Transform -- uid: 2871 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2872 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2873 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2874 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2875 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2876 - type: GasPipeStraight - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2877 - type: GasPipeStraight - components: - - pos: 4.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2878 - type: FirelockGlass - components: - - pos: 1.5,25.5 - parent: 1 - type: Transform -- uid: 2879 - type: FirelockGlass - components: - - pos: 1.5,26.5 - parent: 1 - type: Transform -- uid: 2880 - type: FirelockGlass - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform -- uid: 2881 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -15.5,27.5 - parent: 1 - type: Transform -- uid: 2882 - type: PoweredSmallLight - components: - - pos: -8.5,12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2883 - type: PoweredSmallLight - components: - - pos: -16.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2884 - type: PoweredSmallLight - components: - - pos: -16.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2885 - type: Table - components: - - pos: 25.5,-8.5 - parent: 1 - type: Transform -- uid: 2886 - type: ClosetToolFilled - components: - - pos: 22.5,-8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2887 - type: CableApcStack - components: - - pos: 25.496317,-7.99954 - parent: 1 - type: Transform -- uid: 2888 - type: CableMVStack - components: - - pos: 25.496317,-8.37454 - parent: 1 - type: Transform -- uid: 2889 - type: CableHVStack - components: - - pos: 22.480692,-7.43704 - parent: 1 - type: Transform -- uid: 2890 - type: Catwalk - components: - - pos: 28.5,-5.5 - parent: 1 - type: Transform -- uid: 2891 - type: ChairFolding - components: - - pos: 6.5,-4.5 - parent: 1 - type: Transform -- uid: 2892 - type: Catwalk - components: - - pos: 26.5,-5.5 - parent: 1 - type: Transform -- uid: 2893 - type: WallReinforced - components: - - pos: -15.5,21.5 - parent: 1 - type: Transform -- uid: 2894 - type: Catwalk - components: - - pos: 24.5,-5.5 - parent: 1 - type: Transform -- uid: 2895 - type: GasPipeStraight - components: - - pos: -15.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2896 - type: Catwalk - components: - - pos: 22.5,-5.5 - parent: 1 - type: Transform -- uid: 2897 - type: Catwalk - components: - - pos: 21.5,-5.5 - parent: 1 - type: Transform -- uid: 2898 - type: Catwalk - components: - - pos: 20.5,-5.5 - parent: 1 - type: Transform -- uid: 2899 - type: Catwalk - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform -- uid: 2900 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -16.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2901 - type: Catwalk - components: - - pos: 17.5,-5.5 - parent: 1 - type: Transform -- uid: 2902 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2903 - type: Catwalk - components: - - pos: 15.5,-5.5 - parent: 1 - type: Transform -- uid: 2904 - type: Catwalk - components: - - pos: 14.5,-5.5 - parent: 1 - type: Transform -- uid: 2905 - type: Bed - components: - - pos: -17.5,22.5 - parent: 1 - type: Transform -- uid: 2906 - type: Catwalk - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform -- uid: 2907 - type: Bed - components: - - pos: -15.5,22.5 - parent: 1 - type: Transform -- uid: 2908 - type: Catwalk - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform -- uid: 2909 - type: Catwalk - components: - - pos: 5.5,-5.5 - parent: 1 - type: Transform -- uid: 2910 - type: CableHV - components: - - pos: -13.5,20.5 - parent: 1 - type: Transform -- uid: 2911 - type: Catwalk - components: - - pos: 4.5,-4.5 - parent: 1 - type: Transform -- uid: 2912 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -15.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2913 - type: Catwalk - components: - - pos: 4.5,-2.5 - parent: 1 - type: Transform -- uid: 2914 - type: ClosetMaintenanceFilledRandom - components: - - pos: -17.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2915 - type: Catwalk - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform -- uid: 2916 - type: Catwalk - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform -- uid: 2917 - type: ClosetFireFilled - components: - - pos: -15.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2918 - type: Catwalk - components: - - pos: 3.5,-5.5 - parent: 1 - type: Transform -- uid: 2919 - type: GasPipeStraight - components: - - pos: -15.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2920 - type: Catwalk - components: - - pos: 1.5,-5.5 - parent: 1 - type: Transform -- uid: 2921 - type: CableHV - components: - - pos: 22.5,4.5 - parent: 1 - type: Transform -- uid: 2922 - type: CableHV - components: - - pos: 22.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2923 - type: CableHV - components: - - pos: 22.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2924 - type: CableHV - components: - - pos: 22.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2925 - type: CableHV - components: - - pos: 23.5,1.5 - parent: 1 - type: Transform -- uid: 2926 - type: CableHV - components: - - pos: 23.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2927 - type: CableHV - components: - - pos: 23.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2928 - type: CableHV - components: - - pos: 23.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2929 - type: CableHV - components: - - pos: 23.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2930 - type: CableHV - components: - - pos: 23.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2931 - type: CableHV - components: - - pos: 23.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2932 - type: Catwalk - components: - - pos: 23.5,-4.5 - parent: 1 - type: Transform -- uid: 2933 - type: Catwalk - components: - - pos: 23.5,-3.5 - parent: 1 - type: Transform -- uid: 2934 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: -18.5,16.5 - parent: 1 - type: Transform -- uid: 2935 - type: Catwalk - components: - - pos: 23.5,-1.5 - parent: 1 - type: Transform -- uid: 2936 - type: WallReinforced - components: - - pos: -18.5,21.5 - parent: 1 - type: Transform -- uid: 2937 - type: Catwalk - components: - - pos: 23.5,0.5 - parent: 1 - type: Transform -- uid: 2938 - type: CableMV - components: - - pos: -20.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2939 - type: Catwalk - components: - - pos: 22.5,1.5 - parent: 1 - type: Transform -- uid: 2940 - type: Catwalk - components: - - pos: 22.5,2.5 - parent: 1 - type: Transform -- uid: 2941 - type: ClosetFireFilled - components: - - pos: 5.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2942 - type: ClosetEmergencyFilledRandom - components: - - pos: 5.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2943 - type: ClosetEmergencyFilledRandom - components: - - pos: 1.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2944 - type: ClosetFireFilled - components: - - pos: 2.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2945 - type: ClosetEmergencyFilledRandom - components: - - pos: 23.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2946 - type: ClosetMaintenanceFilledRandom - components: - - pos: 24.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2947 - type: ClosetMaintenanceFilledRandom - components: - - pos: 13.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2948 - type: ClosetFireFilled - components: - - pos: 14.5,-4.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.25,-0.48 - - 0.25,0.48 - - -0.25,0.48 - - -0.25,-0.48 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 145 - hard: True - restitution: 0 - friction: 0.4 - id: null - type: Fixtures - - open: True - removedMasks: 20 - type: EntityStorage -- uid: 2949 - type: ClosetEmergencyFilledRandom - components: - - pos: 15.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2950 - type: Rack - components: - - pos: 27.5,-4.5 - parent: 1 - type: Transform -- uid: 2951 - type: Table - components: - - pos: 29.5,-4.5 - parent: 1 - type: Transform -- uid: 2952 - type: Table - components: - - pos: 28.5,-4.5 - parent: 1 - type: Transform -- uid: 2953 - type: ClosetMaintenanceFilledRandom - components: - - pos: 26.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2954 - type: ClosetMaintenanceFilledRandom - components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2955 - type: MaintenanceToolSpawner - components: - - pos: 27.5,-4.5 - parent: 1 - type: Transform -- uid: 2956 - type: MaintenanceFluffSpawner - components: - - pos: 28.5,-4.5 - parent: 1 - type: Transform -- uid: 2957 - type: MaintenanceFluffSpawner - components: - - pos: 29.5,-4.5 - parent: 1 - type: Transform -- uid: 2958 - type: Table - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform -- uid: 2959 - type: Table - components: - - pos: 7.5,-4.5 - parent: 1 - type: Transform -- uid: 2960 - type: LockerSecurityFilled - components: - - pos: -17.5,25.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2961 - type: MaintenanceWeaponSpawner - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform -- uid: 2962 - type: MaintenanceToolSpawner - components: - - pos: 6.5,-4.5 - parent: 1 - type: Transform -- uid: 2963 - type: MaintenanceFluffSpawner - components: - - pos: 7.5,-4.5 - parent: 1 - type: Transform -- uid: 2964 - type: ClosetEmergencyFilledRandom - components: - - pos: 21.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2965 - type: ClosetFireFilled - components: - - pos: 21.5,12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2966 - type: ClosetMaintenanceFilledRandom - components: - - pos: 21.5,13.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2967 - type: InflatableDoor - components: - - pos: 23.5,21.5 - parent: 1 - type: Transform -- uid: 2968 - type: InflatableDoor - components: - - pos: 22.5,21.5 - parent: 1 - type: Transform -- uid: 2969 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 27.5,23.5 - parent: 1 - type: Transform -- uid: 2970 - type: HighSecCommandLocked - components: - - pos: 26.5,22.5 - parent: 1 - type: Transform -- uid: 2971 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 27.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2972 - type: CableHV - components: - - pos: 25.5,24.5 - parent: 1 - type: Transform -- uid: 2973 - type: CableHV - components: - - pos: 25.5,23.5 - parent: 1 - type: Transform -- uid: 2974 - type: CableHV - components: - - pos: 26.5,23.5 - parent: 1 - type: Transform -- uid: 2975 - type: WallReinforced - components: - - pos: 28.5,29.5 - parent: 1 - type: Transform -- uid: 2976 - type: WallReinforced - components: - - pos: 29.5,29.5 - parent: 1 - type: Transform -- uid: 2977 - type: WallReinforced - components: - - pos: 25.5,22.5 - parent: 1 - type: Transform -- uid: 2978 - type: CableHV - components: - - pos: 25.5,25.5 - parent: 1 - type: Transform -- uid: 2979 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 28.5,21.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2980 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 28.5,20.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2981 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 28.5,19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2982 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 28.5,17.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2983 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 28.5,15.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2984 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 28.5,14.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2985 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 28.5,13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2986 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 28.5,12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2987 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 28.5,11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2988 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 28.5,9.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2989 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: 25.5,21.5 - parent: 1 - type: Transform -- uid: 2990 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 25.5,20.5 - parent: 1 - type: Transform -- uid: 2991 - type: TableWood - components: - - pos: 24.5,14.5 - parent: 1 - type: Transform -- uid: 2992 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 25.5,8.5 - parent: 1 - type: Transform -- uid: 2993 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: 25.5,9.5 - parent: 1 - type: Transform -- uid: 2994 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 25.5,10.5 - parent: 1 - type: Transform -- uid: 2995 - type: ChairWood - components: - - pos: 24.5,15.5 - parent: 1 - type: Transform -- uid: 2996 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 23.5,14.5 - parent: 1 - type: Transform -- uid: 2997 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 25.5,14.5 - parent: 1 - type: Transform -- uid: 2998 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 1 - type: Transform -- uid: 2999 - type: DrinkTeacup - components: - - pos: 24.668903,14.540461 - parent: 1 - type: Transform -- uid: 3000 - type: DrinkTeacup - components: - - pos: 24.262653,14.759211 - parent: 1 - type: Transform -- uid: 3001 - type: GasPipeTJunction - components: - - pos: 3.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3002 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 4.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3003 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3004 - type: GasPipeStraight - components: - - pos: 4.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3005 - type: GasPipeStraight - components: - - pos: 3.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3006 - type: GasPipeStraight - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3007 - type: GasPipeStraight - components: - - pos: 3.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3008 - type: GasPipeStraight - components: - - pos: 4.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3009 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3010 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3011 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3012 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3013 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3014 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3015 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3016 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 2.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3017 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 3.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3018 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 4.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3019 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 7.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3020 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 1.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3021 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 3.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3022 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 3.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3023 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 7.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3024 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 1.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3025 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3026 - type: WallSolid - components: - - pos: -20.5,8.5 - parent: 1 - type: Transform -- uid: 3027 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -21.5,7.5 - parent: 1 - type: Transform -- uid: 3028 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -21.5,8.5 - parent: 1 - type: Transform -- uid: 3029 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -21.5,9.5 - parent: 1 - type: Transform -- uid: 3030 - type: WallSolid - components: - - pos: -21.5,10.5 - parent: 1 - type: Transform -- uid: 3031 - type: WallSolid - components: - - pos: -21.5,11.5 - parent: 1 - type: Transform -- uid: 3032 - type: Fireplace - components: - - pos: -23.5,18.5 - parent: 1 - type: Transform -- uid: 3033 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -21.5,13.5 - parent: 1 - type: Transform -- uid: 3034 - type: Girder - components: - - pos: -21.5,14.5 - parent: 1 - type: Transform -- uid: 3035 - type: WallSolid - components: - - pos: -21.5,15.5 - parent: 1 - type: Transform -- uid: 3036 - type: Bookshelf - components: - - pos: -22.5,15.5 - parent: 1 - type: Transform -- uid: 3037 - type: WallSolid - components: - - pos: -21.5,17.5 - parent: 1 - type: Transform -- uid: 3038 - type: Table - components: - - pos: -15.5,25.5 - parent: 1 - type: Transform -- uid: 3039 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -26.5,19.5 - parent: 1 - type: Transform -- uid: 3040 - type: CableHV - components: - - pos: -20.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3041 - type: CableApcExtension - components: - - pos: -16.5,27.5 - parent: 1 - type: Transform -- uid: 3042 - type: CableApcExtension - components: - - pos: -16.5,26.5 - parent: 1 - type: Transform -- uid: 3043 - type: WallSolid - components: - - pos: -21.5,19.5 - parent: 1 - type: Transform -- uid: 3044 - type: InflatableWall - components: - - pos: -21.5,28.5 - parent: 1 - type: Transform -- uid: 3045 - type: InflatableWall - components: - - pos: -21.5,29.5 - parent: 1 - type: Transform -- uid: 3046 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -25.5,25.5 - parent: 1 - type: Transform -- uid: 3047 - type: Window - components: - - pos: -26.5,30.5 - parent: 1 - type: Transform -- uid: 3048 - type: WallSolid - components: - - pos: -27.5,26.5 - parent: 1 - type: Transform -- uid: 3049 - type: Girder - components: - - pos: -27.5,25.5 - parent: 1 - type: Transform -- uid: 3050 - type: WallSolid - components: - - pos: -23.5,25.5 - parent: 1 - type: Transform -- uid: 3051 - type: WallSolid - components: - - pos: -21.5,27.5 - parent: 1 - type: Transform -- uid: 3052 - type: WallSolidRust - components: - - pos: -21.5,30.5 - parent: 1 - type: Transform -- uid: 3053 - type: WallSolid - components: - - pos: -22.5,7.5 - parent: 1 - type: Transform -- uid: 3054 - type: WallSolid - components: - - pos: -24.5,7.5 - parent: 1 - type: Transform -- uid: 3055 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -28.5,7.5 - parent: 1 - type: Transform -- uid: 3056 - type: WallSolid - components: - - pos: -29.5,7.5 - parent: 1 - type: Transform -- uid: 3057 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -32.5,9.5 - parent: 1 - type: Transform -- uid: 3058 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -24.5,14.5 - parent: 1 - type: Transform -- uid: 3059 - type: WallSolid - components: - - pos: -29.5,10.5 - parent: 1 - type: Transform -- uid: 3060 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -29.5,11.5 - parent: 1 - type: Transform -- uid: 3061 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -29.5,12.5 - parent: 1 - type: Transform -- uid: 3062 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -26.5,14.5 - parent: 1 - type: Transform -- uid: 3063 - type: WallSolid - components: - - pos: -29.5,14.5 - parent: 1 - type: Transform -- uid: 3064 - type: FirelockGlass - components: - - pos: -14.5,31.5 - parent: 1 - type: Transform -- uid: 3065 - type: WallSolid - components: - - pos: -29.5,16.5 - parent: 1 - type: Transform -- uid: 3066 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -21.5,18.5 - parent: 1 - type: Transform -- uid: 3067 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -29.5,13.5 - parent: 1 - type: Transform -- uid: 3068 - type: WallSolid - components: - - pos: -25.5,14.5 - parent: 1 - type: Transform -- uid: 3069 - type: WallSolid - components: - - pos: -28.5,19.5 - parent: 1 - type: Transform -- uid: 3070 - type: Girder - components: - - pos: -29.5,19.5 - parent: 1 - type: Transform -- uid: 3071 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -23.5,19.5 - parent: 1 - type: Transform -- uid: 3072 - type: WallSolid - components: - - pos: -28.5,14.5 - parent: 1 - type: Transform -- uid: 3073 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -27.5,14.5 - parent: 1 - type: Transform -- uid: 3074 - type: WallSolid - components: - - pos: -22.5,19.5 - parent: 1 - type: Transform -- uid: 3075 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -27.5,19.5 - parent: 1 - type: Transform -- uid: 3076 - type: WallSolid - components: - - pos: -24.5,19.5 - parent: 1 - type: Transform -- uid: 3077 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -25.5,19.5 - parent: 1 - type: Transform -- uid: 3078 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -29.5,17.5 - parent: 1 - type: Transform -- uid: 3079 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -29.5,18.5 - parent: 1 - type: Transform -- uid: 3080 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -29.5,9.5 - parent: 1 - type: Transform -- uid: 3081 - type: WallSolid - components: - - pos: -22.5,14.5 - parent: 1 - type: Transform -- uid: 3082 - type: Window - components: - - pos: -27.5,7.5 - parent: 1 - type: Transform -- uid: 3083 - type: Window - components: - - pos: -26.5,7.5 - parent: 1 - type: Transform -- uid: 3084 - type: Window - components: - - pos: -25.5,7.5 - parent: 1 - type: Transform -- uid: 3085 - type: Grille - components: - - pos: -25.5,7.5 - parent: 1 - type: Transform -- uid: 3086 - type: Grille - components: - - pos: -26.5,7.5 - parent: 1 - type: Transform -- uid: 3087 - type: Grille - components: - - pos: -27.5,7.5 - parent: 1 - type: Transform -- uid: 3088 - type: WaterCooler - components: - - pos: -22.5,13.5 - parent: 1 - type: Transform -- uid: 3089 - type: Bookshelf - components: - - pos: -22.5,11.5 - parent: 1 - type: Transform -- uid: 3090 - type: Bookshelf - components: - - pos: -22.5,10.5 - parent: 1 - type: Transform -- uid: 3091 - type: Bookshelf - components: - - pos: -22.5,9.5 - parent: 1 - type: Transform -- uid: 3092 - type: Bookshelf - components: - - pos: -22.5,8.5 - parent: 1 - type: Transform -- uid: 3093 - type: Bookshelf - components: - - pos: -24.5,13.5 - parent: 1 - type: Transform -- uid: 3094 - type: Bookshelf - components: - - pos: -25.5,13.5 - parent: 1 - type: Transform -- uid: 3095 - type: Bookshelf - components: - - pos: -26.5,13.5 - parent: 1 - type: Transform -- uid: 3096 - type: TableWood - components: - - pos: -27.5,13.5 - parent: 1 - type: Transform -- uid: 3097 - type: TableWood - components: - - pos: -28.5,13.5 - parent: 1 - type: Transform -- uid: 3098 - type: Bookshelf - components: - - pos: -28.5,11.5 - parent: 1 - type: Transform -- uid: 3099 - type: Bookshelf - components: - - pos: -27.5,11.5 - parent: 1 - type: Transform -- uid: 3100 - type: Bookshelf - components: - - pos: -26.5,11.5 - parent: 1 - type: Transform -- uid: 3101 - type: Bookshelf - components: - - pos: -25.5,11.5 - parent: 1 - type: Transform -- uid: 3102 - type: Bookshelf - components: - - pos: -24.5,11.5 - parent: 1 - type: Transform -- uid: 3103 - type: TableWood - components: - - pos: -27.5,9.5 - parent: 1 - type: Transform -- uid: 3104 - type: TableWood - components: - - pos: -26.5,9.5 - parent: 1 - type: Transform -- uid: 3105 - type: TableWood - components: - - pos: -25.5,9.5 - parent: 1 - type: Transform -- uid: 3106 - type: TableWood - components: - - pos: -24.5,9.5 - parent: 1 - type: Transform -- uid: 3107 - type: TableWood - components: - - pos: -24.5,8.5 - parent: 1 - type: Transform -- uid: 3108 - type: WallSolid - components: - - pos: -31.5,11.5 - parent: 1 - type: Transform -- uid: 3109 - type: Girder - components: - - pos: -32.5,11.5 - parent: 1 - type: Transform -- uid: 3110 - type: WallSolid - components: - - pos: -27.5,30.5 - parent: 1 - type: Transform -- uid: 3111 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -32.5,8.5 - parent: 1 - type: Transform -- uid: 3112 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -30.5,7.5 - parent: 1 - type: Transform -- uid: 3113 - type: WallSolid - components: - - pos: -32.5,7.5 - parent: 1 - type: Transform -- uid: 3114 - type: WallSolid - components: - - pos: -31.5,7.5 - parent: 1 - type: Transform -- uid: 3115 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -30.5,11.5 - parent: 1 - type: Transform -- uid: 3116 - type: WallSolidRust - components: - - pos: -27.5,29.5 - parent: 1 - type: Transform -- uid: 3117 - type: InflatableWall - components: - - pos: -27.5,27.5 - parent: 1 - type: Transform -- uid: 3118 - type: InflatableWall - components: - - pos: -32.5,30.5 - parent: 1 - type: Transform -- uid: 3119 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -26.5,25.5 - parent: 1 - type: Transform -- uid: 3120 - type: WallSolid - components: - - pos: -21.5,25.5 - parent: 1 - type: Transform -- uid: 3121 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -21.5,24.5 - parent: 1 - type: Transform -- uid: 3122 - type: FirelockGlass - components: - - pos: -14.5,32.5 - parent: 1 - type: Transform -- uid: 3123 - type: WallSolid - components: - - pos: -21.5,22.5 - parent: 1 - type: Transform -- uid: 3124 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -22.5,22.5 - parent: 1 - type: Transform -- uid: 3125 - type: WallSolid - components: - - pos: -23.5,22.5 - parent: 1 - type: Transform -- uid: 3126 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -26.5,22.5 - parent: 1 - type: Transform -- uid: 3127 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -22.5,25.5 - parent: 1 - type: Transform -- uid: 3128 - type: WallSolid - components: - - pos: -24.5,25.5 - parent: 1 - type: Transform -- uid: 3129 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -30.5,28.5 - parent: 1 - type: Transform -- uid: 3130 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -30.5,26.5 - parent: 1 - type: Transform -- uid: 3131 - type: Window - components: - - pos: -23.5,30.5 - parent: 1 - type: Transform -- uid: 3132 - type: Grille - components: - - pos: -26.5,30.5 - parent: 1 - type: Transform -- uid: 3133 - type: Grille - components: - - pos: -25.5,30.5 - parent: 1 - type: Transform -- uid: 3134 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -24.5,30.5 - parent: 1 - type: Transform -- uid: 3135 - type: Grille - components: - - pos: -23.5,30.5 - parent: 1 - type: Transform -- uid: 3136 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -24.5,22.5 - parent: 1 - type: Transform -- uid: 3137 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -25.5,22.5 - parent: 1 - type: Transform -- uid: 3138 - type: WallSolid - components: - - pos: -27.5,22.5 - parent: 1 - type: Transform -- uid: 3139 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -27.5,24.5 - parent: 1 - type: Transform -- uid: 3140 - type: WallSolidRust - components: - - pos: -34.5,30.5 - parent: 1 - type: Transform -- uid: 3141 - type: WallSolid - components: - - pos: -29.5,30.5 - parent: 1 - type: Transform -- uid: 3142 - type: WallSolid - components: - - pos: -30.5,30.5 - parent: 1 - type: Transform -- uid: 3143 - type: WallSolid - components: - - pos: -31.5,30.5 - parent: 1 - type: Transform -- uid: 3144 - type: InflatableWall - components: - - pos: -33.5,30.5 - parent: 1 - type: Transform -- uid: 3145 - type: WallSolidRust - components: - - pos: -10.5,36.5 - parent: 1 - type: Transform -- uid: 3146 - type: InflatableWall - components: - - pos: -34.5,14.5 - parent: 1 - type: Transform -- uid: 3147 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -32.5,14.5 - parent: 1 - type: Transform -- uid: 3148 - type: WallSolid - components: - - pos: -30.5,22.5 - parent: 1 - type: Transform -- uid: 3149 - type: WallSolid - components: - - pos: -31.5,22.5 - parent: 1 - type: Transform -- uid: 3150 - type: Grille - components: - - pos: -34.5,22.5 - parent: 1 - type: Transform -- uid: 3151 - type: Girder - components: - - pos: -32.5,22.5 - parent: 1 - type: Transform -- uid: 3152 - type: WallSolidRust - components: - - pos: -28.5,30.5 - parent: 1 - type: Transform -- uid: 3153 - type: WallSolid - components: - - pos: -35.5,30.5 - parent: 1 - type: Transform -- uid: 3154 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -33.5,22.5 - parent: 1 - type: Transform -- uid: 3155 - type: WallSolid - components: - - pos: -35.5,22.5 - parent: 1 - type: Transform -- uid: 3156 - type: WallSolid - components: - - pos: -31.5,21.5 - parent: 1 - type: Transform -- uid: 3157 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-1.5 - parent: 1 - type: Transform -- uid: 3158 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-0.5 - parent: 1 - type: Transform -- uid: 3159 - type: CableApcExtension - components: - - pos: -29.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3160 - type: Girder - components: - - pos: -31.5,17.5 - parent: 1 - type: Transform -- uid: 3161 - type: AirlockMaint - components: - - pos: -31.5,16.5 - parent: 1 - type: Transform -- uid: 3162 - type: WallSolid - components: - - pos: -31.5,15.5 - parent: 1 - type: Transform -- uid: 3163 - type: WallSolid - components: - - pos: -31.5,14.5 - parent: 1 - type: Transform -- uid: 3164 - type: InflatableWall - components: - - pos: -28.5,22.5 - parent: 1 - type: Transform -- uid: 3165 - type: WallSolid - components: - - pos: -33.5,14.5 - parent: 1 - type: Transform -- uid: 3166 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -29.5,22.5 - parent: 1 - type: Transform -- uid: 3167 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -35.5,10.5 - parent: 1 - type: Transform -- uid: 3168 - type: Rack - components: - - pos: -23.5,55.5 - parent: 1 - type: Transform -- uid: 3169 - type: WallSolidRust - components: - - pos: -46.5,19.5 - parent: 1 - type: Transform -- uid: 3170 - type: WallReinforced - components: - - pos: -39.5,7.5 - parent: 1 - type: Transform -- uid: 3171 - type: WallSolid - components: - - pos: -35.5,8.5 - parent: 1 - type: Transform -- uid: 3172 - type: WallSolid - components: - - pos: -35.5,9.5 - parent: 1 - type: Transform -- uid: 3173 - type: AirlockMaintLocked - components: - - pos: -33.5,8.5 - parent: 1 - type: Transform -- uid: 3174 - type: CableApcExtension - components: - - pos: -16.5,25.5 - parent: 1 - type: Transform -- uid: 3175 - type: FirelockGlass - components: - - pos: -13.5,26.5 - parent: 1 - type: Transform -- uid: 3176 - type: FirelockGlass - components: - - pos: -12.5,26.5 - parent: 1 - type: Transform -- uid: 3177 - type: FirelockGlass - components: - - pos: -11.5,26.5 - parent: 1 - type: Transform -- uid: 3178 - type: CableApcExtension - components: - - pos: -16.5,24.5 - parent: 1 - type: Transform -- uid: 3179 - type: GasPipeStraight - components: - - pos: -17.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3180 - type: AirlockMaintLocked - components: - - pos: -21.5,26.5 - parent: 1 - type: Transform -- uid: 3181 - type: AirlockMaintLocked - components: - - pos: -19.5,8.5 - parent: 1 - type: Transform -- uid: 3182 - type: WallSolid - components: - - pos: -34.5,8.5 - parent: 1 - type: Transform -- uid: 3183 - type: TableWood - components: - - pos: -27.5,17.5 - parent: 1 - type: Transform -- uid: 3184 - type: ToyDeathRipley - components: - - pos: -26.45058,17.657667 - parent: 1 - type: Transform -- uid: 3185 - type: TableWood - components: - - pos: -26.5,17.5 - parent: 1 - type: Transform -- uid: 3186 - type: TableWood - components: - - pos: -26.5,16.5 - parent: 1 - type: Transform -- uid: 3187 - type: ChairFolding - components: - - pos: -26.5,18.5 - parent: 1 - type: Transform -- uid: 3188 - type: ChairFolding - components: - - pos: -27.5,18.5 - parent: 1 - type: Transform -- uid: 3189 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -28.5,17.5 - parent: 1 - type: Transform -- uid: 3190 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -28.5,16.5 - parent: 1 - type: Transform -- uid: 3191 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: -27.5,15.5 - parent: 1 - type: Transform -- uid: 3192 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: -26.5,15.5 - parent: 1 - type: Transform -- uid: 3193 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -25.5,17.5 - parent: 1 - type: Transform -- uid: 3194 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -25.5,16.5 - parent: 1 - type: Transform -- uid: 3195 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: -22.5,18.5 - parent: 1 - type: Transform -- uid: 3196 - type: TableWood - components: - - pos: -31.5,9.5 - parent: 1 - type: Transform -- uid: 3197 - type: LampGold - components: - - pos: -31.497456,9.898998 - parent: 1 - type: Transform -- uid: 3198 - type: LampGold - components: - - pos: -24.497456,9.867748 - parent: 1 - type: Transform -- uid: 3199 - type: Lamp - components: - - pos: -27.497456,17.876417 - parent: 1 - type: Transform -- uid: 3200 - type: ToyHonk - components: - - pos: -27.54433,17.142042 - parent: 1 - type: Transform -- uid: 3201 - type: TableWood - components: - - pos: -27.5,16.5 - parent: 1 - type: Transform -- uid: 3202 - type: ToyFireRipley - components: - - pos: -26.466206,16.876417 - parent: 1 - type: Transform -- uid: 3203 - type: ToyDurand - components: - - pos: -27.13808,16.704542 - parent: 1 - type: Transform -- uid: 3204 - type: PaperOffice - components: - - pos: -26.966206,17.360792 - parent: 1 - type: Transform -- uid: 3205 - type: PaperOffice - components: - - pos: -27.028706,17.329542 - parent: 1 - type: Transform -- uid: 3206 - type: PaperOffice - components: - - pos: -27.091206,17.220167 - parent: 1 - type: Transform -- uid: 3207 - type: PaperOffice - components: - - pos: -26.76308,17.157667 - parent: 1 - type: Transform -- uid: 3208 - type: PaperOffice - components: - - pos: -27.028706,17.188917 - parent: 1 - type: Transform -- uid: 3209 - type: PaperOffice - components: - - pos: -27.16933,17.173292 - parent: 1 - type: Transform -- uid: 3210 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -27.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3211 - type: APCBasic - components: - - pos: -24.5,19.5 - parent: 1 - type: Transform -- uid: 3212 - type: CableApcExtension - components: - - pos: -24.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3213 - type: WallSolidRust - components: - - pos: -42.5,15.5 - parent: 1 - type: Transform -- uid: 3214 - type: WallSolid - components: - - pos: -39.5,17.5 - parent: 1 - type: Transform -- uid: 3215 - type: WallSolidRust - components: - - pos: -39.5,19.5 - parent: 1 - type: Transform -- uid: 3216 - type: WallSolid - components: - - pos: -39.5,14.5 - parent: 1 - type: Transform -- uid: 3217 - type: WallSolidRust - components: - - pos: -39.5,16.5 - parent: 1 - type: Transform -- uid: 3218 - type: WallReinforced - components: - - pos: -43.5,7.5 - parent: 1 - type: Transform -- uid: 3219 - type: WallReinforced - components: - - pos: -42.5,7.5 - parent: 1 - type: Transform -- uid: 3220 - type: AirlockCommandLocked - components: - - pos: -41.5,7.5 - parent: 1 - type: Transform -- uid: 3221 - type: WallReinforced - components: - - pos: -40.5,7.5 - parent: 1 - type: Transform -- uid: 3222 - type: CrateFilledSpawner - components: - - pos: -7.5,12.5 - parent: 1 - type: Transform -- uid: 3223 - type: CableMV - components: - - pos: -20.5,20.5 - parent: 1 - type: Transform -- uid: 3224 - type: CableApcExtension - components: - - pos: -19.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3225 - type: CableApcExtension - components: - - pos: -20.5,24.5 - parent: 1 - type: Transform -- uid: 3226 - type: CableApcExtension - components: - - pos: -20.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3227 - type: CableApcExtension - components: - - pos: -20.5,26.5 - parent: 1 - type: Transform -- uid: 3228 - type: CableApcExtension - components: - - pos: -21.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3229 - type: CableApcExtension - components: - - pos: -22.5,26.5 - parent: 1 - type: Transform -- uid: 3230 - type: CableApcExtension - components: - - pos: -23.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3231 - type: CableApcExtension - components: - - pos: -24.5,26.5 - parent: 1 - type: Transform -- uid: 3232 - type: CableApcExtension - components: - - pos: -24.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3233 - type: CableApcExtension - components: - - pos: -24.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3234 - type: CableApcExtension - components: - - pos: -24.5,29.5 - parent: 1 - type: Transform -- uid: 3235 - type: CableApcExtension - components: - - pos: -23.5,29.5 - parent: 1 - type: Transform -- uid: 3236 - type: CableApcExtension - components: - - pos: -20.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3237 - type: CableApcExtension - components: - - pos: -21.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3238 - type: CableApcExtension - components: - - pos: -22.5,23.5 - parent: 1 - type: Transform -- uid: 3239 - type: CableApcExtension - components: - - pos: -23.5,23.5 - parent: 1 - type: Transform -- uid: 3240 - type: CableApcExtension - components: - - pos: -24.5,23.5 - parent: 1 - type: Transform -- uid: 3241 - type: CableApcExtension - components: - - pos: -25.5,23.5 - parent: 1 - type: Transform -- uid: 3242 - type: CableApcExtension - components: - - pos: -26.5,23.5 - parent: 1 - type: Transform -- uid: 3243 - type: CableApcExtension - components: - - pos: -27.5,23.5 - parent: 1 - type: Transform -- uid: 3244 - type: CableApcExtension - components: - - pos: -28.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3245 - type: CableApcExtension - components: - - pos: -29.5,23.5 - parent: 1 - type: Transform -- uid: 3246 - type: CableApcExtension - components: - - pos: -29.5,24.5 - parent: 1 - type: Transform -- uid: 3247 - type: CableApcExtension - components: - - pos: -29.5,25.5 - parent: 1 - type: Transform -- uid: 3248 - type: CableApcExtension - components: - - pos: -29.5,26.5 - parent: 1 - type: Transform -- uid: 3249 - type: CableApcExtension - components: - - pos: -29.5,27.5 - parent: 1 - type: Transform -- uid: 3250 - type: CableApcExtension - components: - - pos: -29.5,28.5 - parent: 1 - type: Transform -- uid: 3251 - type: CableApcExtension - components: - - pos: -30.5,28.5 - parent: 1 - type: Transform -- uid: 3252 - type: CableApcExtension - components: - - pos: -31.5,28.5 - parent: 1 - type: Transform -- uid: 3253 - type: CableApcExtension - components: - - pos: -32.5,28.5 - parent: 1 - type: Transform -- uid: 3254 - type: CableApcExtension - components: - - pos: -33.5,28.5 - parent: 1 - type: Transform -- uid: 3255 - type: CableApcExtension - components: - - pos: -30.5,25.5 - parent: 1 - type: Transform -- uid: 3256 - type: CableApcExtension - components: - - pos: -31.5,25.5 - parent: 1 - type: Transform -- uid: 3257 - type: CableApcExtension - components: - - pos: -32.5,25.5 - parent: 1 - type: Transform -- uid: 3258 - type: CableApcExtension - components: - - pos: -33.5,25.5 - parent: 1 - type: Transform -- uid: 3259 - type: CableApcExtension - components: - - pos: -34.5,25.5 - parent: 1 - type: Transform -- uid: 3260 - type: CableApcExtension - components: - - pos: -34.5,28.5 - parent: 1 - type: Transform -- uid: 3261 - type: CableApcExtension - components: - - pos: -24.5,18.5 - parent: 1 - type: Transform -- uid: 3262 - type: CableApcExtension - components: - - pos: -24.5,17.5 - parent: 1 - type: Transform -- uid: 3263 - type: CableApcExtension - components: - - pos: -24.5,16.5 - parent: 1 - type: Transform -- uid: 3264 - type: CableApcExtension - components: - - pos: -24.5,15.5 - parent: 1 - type: Transform -- uid: 3265 - type: CableApcExtension - components: - - pos: -25.5,15.5 - parent: 1 - type: Transform -- uid: 3266 - type: CableApcExtension - components: - - pos: -26.5,15.5 - parent: 1 - type: Transform -- uid: 3267 - type: CableApcExtension - components: - - pos: -27.5,15.5 - parent: 1 - type: Transform -- uid: 3268 - type: CableApcExtension - components: - - pos: -28.5,15.5 - parent: 1 - type: Transform -- uid: 3269 - type: CableApcExtension - components: - - pos: -25.5,18.5 - parent: 1 - type: Transform -- uid: 3270 - type: CableApcExtension - components: - - pos: -26.5,18.5 - parent: 1 - type: Transform -- uid: 3271 - type: CableApcExtension - components: - - pos: -27.5,18.5 - parent: 1 - type: Transform -- uid: 3272 - type: CableApcExtension - components: - - pos: -28.5,18.5 - parent: 1 - type: Transform -- uid: 3273 - type: CableApcExtension - components: - - pos: -23.5,16.5 - parent: 1 - type: Transform -- uid: 3274 - type: CableApcExtension - components: - - pos: -22.5,16.5 - parent: 1 - type: Transform -- uid: 3275 - type: CableApcExtension - components: - - pos: -23.5,15.5 - parent: 1 - type: Transform -- uid: 3276 - type: CableApcExtension - components: - - pos: -23.5,14.5 - parent: 1 - type: Transform -- uid: 3277 - type: CableApcExtension - components: - - pos: -23.5,13.5 - parent: 1 - type: Transform -- uid: 3278 - type: CableApcExtension - components: - - pos: -23.5,12.5 - parent: 1 - type: Transform -- uid: 3279 - type: CableApcExtension - components: - - pos: -23.5,11.5 - parent: 1 - type: Transform -- uid: 3280 - type: CableApcExtension - components: - - pos: -23.5,10.5 - parent: 1 - type: Transform -- uid: 3281 - type: CableApcExtension - components: - - pos: -23.5,9.5 - parent: 1 - type: Transform -- uid: 3282 - type: CableApcExtension - components: - - pos: -23.5,8.5 - parent: 1 - type: Transform -- uid: 3283 - type: CableApcExtension - components: - - pos: -24.5,8.5 - parent: 1 - type: Transform -- uid: 3284 - type: CableApcExtension - components: - - pos: -25.5,8.5 - parent: 1 - type: Transform -- uid: 3285 - type: CableApcExtension - components: - - pos: -26.5,8.5 - parent: 1 - type: Transform -- uid: 3286 - type: CableApcExtension - components: - - pos: -27.5,8.5 - parent: 1 - type: Transform -- uid: 3287 - type: CableApcExtension - components: - - pos: -28.5,8.5 - parent: 1 - type: Transform -- uid: 3288 - type: CableApcExtension - components: - - pos: -29.5,8.5 - parent: 1 - type: Transform -- uid: 3289 - type: CableApcExtension - components: - - pos: -30.5,8.5 - parent: 1 - type: Transform -- uid: 3290 - type: CableApcExtension - components: - - pos: -30.5,9.5 - parent: 1 - type: Transform -- uid: 3291 - type: CableApcExtension - components: - - pos: -30.5,10.5 - parent: 1 - type: Transform -- uid: 3292 - type: CableApcExtension - components: - - pos: -31.5,10.5 - parent: 1 - type: Transform -- uid: 3293 - type: CableApcExtension - components: - - pos: -31.5,10.5 - parent: 1 - type: Transform -- uid: 3294 - type: CableApcExtension - components: - - pos: -32.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3295 - type: CableApcExtension - components: - - pos: -33.5,10.5 - parent: 1 - type: Transform -- uid: 3296 - type: CableApcExtension - components: - - pos: -33.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3297 - type: CableApcExtension - components: - - pos: -23.5,7.5 - parent: 1 - type: Transform -- uid: 3298 - type: CableApcExtension - components: - - pos: -23.5,6.5 - parent: 1 - type: Transform -- uid: 3299 - type: CableApcExtension - components: - - pos: -23.5,5.5 - parent: 1 - type: Transform -- uid: 3300 - type: CableApcExtension - components: - - pos: -24.5,5.5 - parent: 1 - type: Transform -- uid: 3301 - type: CableApcExtension - components: - - pos: -25.5,5.5 - parent: 1 - type: Transform -- uid: 3302 - type: CableApcExtension - components: - - pos: -26.5,5.5 - parent: 1 - type: Transform -- uid: 3303 - type: CableApcExtension - components: - - pos: -27.5,5.5 - parent: 1 - type: Transform -- uid: 3304 - type: CableApcExtension - components: - - pos: -28.5,5.5 - parent: 1 - type: Transform -- uid: 3305 - type: CableApcExtension - components: - - pos: -29.5,5.5 - parent: 1 - type: Transform -- uid: 3306 - type: CableApcExtension - components: - - pos: -30.5,5.5 - parent: 1 - type: Transform -- uid: 3307 - type: CableApcExtension - components: - - pos: -31.5,5.5 - parent: 1 - type: Transform -- uid: 3308 - type: CableApcExtension - components: - - pos: -32.5,5.5 - parent: 1 - type: Transform -- uid: 3309 - type: CableApcExtension - components: - - pos: -33.5,5.5 - parent: 1 - type: Transform -- uid: 3310 - type: CableApcExtension - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform -- uid: 3311 - type: CableApcExtension - components: - - pos: -21.5,5.5 - parent: 1 - type: Transform -- uid: 3312 - type: CableApcExtension - components: - - pos: -20.5,5.5 - parent: 1 - type: Transform -- uid: 3313 - type: CableApcExtension - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform -- uid: 3314 - type: CableApcExtension - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform -- uid: 3315 - type: FlashlightSeclite - components: - - pos: -17.49649,26.396124 - parent: 1 - type: Transform -- uid: 3316 - type: ChairOfficeDark - components: - - pos: -15.5,26.5 - parent: 1 - type: Transform -- uid: 3317 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -16.5,22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3318 - type: MaintenanceToolSpawner - components: - - rot: 3.141592653589793 rad - pos: -18.5,16.5 - parent: 1 - type: Transform -- uid: 3319 - type: GasPipeStraight - components: - - pos: -17.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3320 - type: GasPipeStraight - components: - - pos: -15.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3321 - type: ClosetEmergencyFilledRandom - components: - - pos: -16.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3322 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-14.5 - parent: 1 - type: Transform -- uid: 3323 - type: CableApcExtension - components: - - pos: -42.5,-11.5 - parent: 1 - type: Transform -- uid: 3324 - type: CableMV - components: - - pos: -20.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3325 - type: CableMV - components: - - pos: -21.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3326 - type: CableMV - components: - - pos: -22.5,21.5 - parent: 1 - type: Transform -- uid: 3327 - type: CableMV - components: - - pos: -23.5,21.5 - parent: 1 - type: Transform -- uid: 3328 - type: CableMV - components: - - pos: -24.5,21.5 - parent: 1 - type: Transform -- uid: 3329 - type: CableMV - components: - - pos: -24.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3330 - type: CableMV - components: - - pos: -24.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3331 - type: CableHV - components: - - pos: -6.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3332 - type: CableHV - components: - - pos: -6.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3333 - type: CableHV - components: - - pos: -6.5,20.5 - parent: 1 - type: Transform -- uid: 3334 - type: CableHV - components: - - pos: -6.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3335 - type: CableHV - components: - - pos: -6.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3336 - type: CableHV - components: - - pos: -6.5,23.5 - parent: 1 - type: Transform -- uid: 3337 - type: CableHV - components: - - pos: -6.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3338 - type: CableHV - components: - - pos: -6.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3339 - type: CableHV - components: - - pos: -7.5,25.5 - parent: 1 - type: Transform -- uid: 3340 - type: CableHV - components: - - pos: -8.5,25.5 - parent: 1 - type: Transform -- uid: 3341 - type: CableHV - components: - - pos: -9.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3342 - type: CableHV - components: - - pos: -10.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3343 - type: CableHV - components: - - pos: -11.5,25.5 - parent: 1 - type: Transform -- uid: 3344 - type: CableHV - components: - - pos: -12.5,25.5 - parent: 1 - type: Transform -- uid: 3345 - type: CableHV - components: - - pos: -12.5,24.5 - parent: 1 - type: Transform -- uid: 3346 - type: CableHV - components: - - pos: -12.5,23.5 - parent: 1 - type: Transform -- uid: 3347 - type: CableHV - components: - - pos: -12.5,22.5 - parent: 1 - type: Transform -- uid: 3348 - type: CableHV - components: - - pos: -12.5,21.5 - parent: 1 - type: Transform -- uid: 3349 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3350 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3351 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3352 - type: CableApcExtension - components: - - pos: -42.5,-13.5 - parent: 1 - type: Transform -- uid: 3353 - type: CableApcExtension - components: - - pos: -43.5,-13.5 - parent: 1 - type: Transform -- uid: 3354 - type: CableApcExtension - components: - - pos: -47.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3355 - type: CableApcExtension - components: - - pos: -42.5,-12.5 - parent: 1 - type: Transform -- uid: 3356 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3357 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3358 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-12.5 - parent: 1 - type: Transform -- uid: 3359 - type: CableApcExtension - components: - - pos: -39.5,-12.5 - parent: 1 - type: Transform -- uid: 3360 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3361 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-14.5 - parent: 1 - type: Transform -- uid: 3362 - type: CableHV - components: - - pos: -12.5,20.5 - parent: 1 - type: Transform -- uid: 3363 - type: CableHV - components: - - pos: -12.5,19.5 - parent: 1 - type: Transform -- uid: 3364 - type: CableHV - components: - - pos: -12.5,18.5 - parent: 1 - type: Transform -- uid: 3365 - type: CableHV - components: - - pos: -12.5,17.5 - parent: 1 - type: Transform -- uid: 3366 - type: CableHV - components: - - pos: -12.5,16.5 - parent: 1 - type: Transform -- uid: 3367 - type: CableHV - components: - - pos: -12.5,15.5 - parent: 1 - type: Transform -- uid: 3368 - type: CableHV - components: - - pos: -12.5,14.5 - parent: 1 - type: Transform -- uid: 3369 - type: CableHV - components: - - pos: -12.5,13.5 - parent: 1 - type: Transform -- uid: 3370 - type: CableHV - components: - - pos: -12.5,12.5 - parent: 1 - type: Transform -- uid: 3371 - type: CableHV - components: - - pos: -12.5,11.5 - parent: 1 - type: Transform -- uid: 3372 - type: CableHV - components: - - pos: -12.5,10.5 - parent: 1 - type: Transform -- uid: 3373 - type: CableHV - components: - - pos: -12.5,9.5 - parent: 1 - type: Transform -- uid: 3374 - type: CableHV - components: - - pos: -12.5,8.5 - parent: 1 - type: Transform -- uid: 3375 - type: CableHV - components: - - pos: -12.5,7.5 - parent: 1 - type: Transform -- uid: 3376 - type: CableHV - components: - - pos: -12.5,6.5 - parent: 1 - type: Transform -- uid: 3377 - type: CableHV - components: - - pos: -12.5,5.5 - parent: 1 - type: Transform -- uid: 3378 - type: CableHV - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform -- uid: 3379 - type: CableHV - components: - - pos: -10.5,5.5 - parent: 1 - type: Transform -- uid: 3380 - type: CableHV - components: - - pos: -9.5,5.5 - parent: 1 - type: Transform -- uid: 3381 - type: CableHV - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform -- uid: 3382 - type: CableHV - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform -- uid: 3383 - type: CableHV - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform -- uid: 3384 - type: CableHV - components: - - pos: -12.5,26.5 - parent: 1 - type: Transform -- uid: 3385 - type: CableHV - components: - - pos: -12.5,27.5 - parent: 1 - type: Transform -- uid: 3386 - type: CableHV - components: - - pos: -12.5,28.5 - parent: 1 - type: Transform -- uid: 3387 - type: CableHV - components: - - pos: -12.5,29.5 - parent: 1 - type: Transform -- uid: 3388 - type: CableHV - components: - - pos: -12.5,30.5 - parent: 1 - type: Transform -- uid: 3389 - type: CableHV - components: - - pos: -12.5,31.5 - parent: 1 - type: Transform -- uid: 3390 - type: CableHV - components: - - pos: -12.5,32.5 - parent: 1 - type: Transform -- uid: 3391 - type: AirlockMaintLocked - components: - - rot: 3.141592653589793 rad - pos: -21.5,16.5 - parent: 1 - type: Transform -- uid: 3392 - type: AirlockMaintLocked - components: - - rot: 3.141592653589793 rad - pos: -29.5,15.5 - parent: 1 - type: Transform -- uid: 3393 - type: AirlockMaintLocked - components: - - rot: 3.141592653589793 rad - pos: -21.5,12.5 - parent: 1 - type: Transform -- uid: 3394 - type: AirlockServiceLocked - components: - - pos: -29.5,8.5 - parent: 1 - type: Transform -- uid: 3395 - type: AirlockServiceLocked - components: - - rot: 3.141592653589793 rad - pos: -32.5,10.5 - parent: 1 - type: Transform -- uid: 3396 - type: AirlockGlass - components: - - pos: -23.5,7.5 - parent: 1 - type: Transform -- uid: 3397 - type: SignLibrary - components: - - pos: -24.5,7.5 - parent: 1 - type: Transform -- uid: 3398 - type: SpawnPointLibrarian - components: - - pos: -30.5,9.5 - parent: 1 - type: Transform -- uid: 3399 - type: BedsheetSpawner - components: - - pos: -31.5,8.5 - parent: 1 - type: Transform -- uid: 3400 - type: BookRandom - components: - - pos: -26.002151,9.728267 - parent: 1 - type: Transform -- uid: 3401 - type: BooksBag - components: - - pos: -25.267776,9.592309 - parent: 1 - type: Transform -- uid: 3402 - type: BookRandom - components: - - pos: -25.757227,9.715086 - parent: 1 - type: Transform -- uid: 3403 - type: BookRandom - components: - - pos: -26.484095,9.587642 - parent: 1 - type: Transform -- uid: 3404 - type: BookRandom - components: - - pos: -27.526798,9.572017 - parent: 1 - type: Transform -- uid: 3405 - type: BookRandom - components: - - pos: -26.984095,9.728267 - parent: 1 - type: Transform -- uid: 3406 - type: Bed - components: - - pos: -31.5,8.5 - parent: 1 - type: Transform -- uid: 3407 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3408 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3409 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3410 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -27.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3411 - type: Poweredlight - components: - - pos: -24.5,18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3412 - type: Airlock - components: - - pos: -23.5,14.5 - parent: 1 - type: Transform -- uid: 3413 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -30.5,27.5 - parent: 1 - type: Transform -- uid: 3414 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -30.5,25.5 - parent: 1 - type: Transform -- uid: 3415 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -30.5,24.5 - parent: 1 - type: Transform -- uid: 3416 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -30.5,23.5 - parent: 1 - type: Transform -- uid: 3417 - type: WindoorTheatreLocked - components: - - rot: -1.5707963267948966 rad - pos: -30.5,29.5 - parent: 1 - type: Transform -- uid: 3418 - type: AirlockTheatreLocked - components: - - pos: -27.5,23.5 - parent: 1 - type: Transform -- uid: 3419 - type: AirlockMaintTheatreLocked - components: - - pos: -21.5,23.5 - parent: 1 - type: Transform -- uid: 3420 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -35.5,13.5 - parent: 1 - type: Transform -- uid: 3421 - type: WallSolid - components: - - pos: -35.5,14.5 - parent: 1 - type: Transform -- uid: 3422 - type: CableApcStack - components: - - pos: -53.87841,29.69635 - parent: 1 - type: Transform -- uid: 3423 - type: Window - components: - - pos: -35.5,15.5 - parent: 1 - type: Transform -- uid: 3424 - type: CableMVStack - components: - - pos: -54.175285,29.57135 - parent: 1 - type: Transform -- uid: 3425 - type: Window - components: - - pos: -35.5,18.5 - parent: 1 - type: Transform -- uid: 3426 - type: Window - components: - - pos: -35.5,19.5 - parent: 1 - type: Transform -- uid: 3427 - type: CableHVStack - components: - - pos: -54.44091,29.7276 - parent: 1 - type: Transform -- uid: 3428 - type: Window - components: - - pos: -35.5,21.5 - parent: 1 - type: Transform -- uid: 3429 - type: Grille - components: - - pos: -35.5,21.5 - parent: 1 - type: Transform -- uid: 3430 - type: GrilleBroken - components: - - pos: -35.5,17.5 - parent: 1 - type: Transform -- uid: 3431 - type: Grille - components: - - pos: -35.5,19.5 - parent: 1 - type: Transform -- uid: 3432 - type: Grille - components: - - pos: -35.5,18.5 - parent: 1 - type: Transform -- uid: 3433 - type: Grille - components: - - pos: -35.5,20.5 - parent: 1 - type: Transform -- uid: 3434 - type: Grille - components: - - pos: -35.5,16.5 - parent: 1 - type: Transform -- uid: 3435 - type: Grille - components: - - pos: -35.5,15.5 - parent: 1 - type: Transform -- uid: 3436 - type: WallReinforced - components: - - pos: -39.5,9.5 - parent: 1 - type: Transform -- uid: 3437 - type: WallReinforced - components: - - pos: -39.5,10.5 - parent: 1 - type: Transform -- uid: 3438 - type: WallReinforced - components: - - pos: -39.5,11.5 - parent: 1 - type: Transform -- uid: 3439 - type: WallReinforced - components: - - pos: -39.5,12.5 - parent: 1 - type: Transform -- uid: 3440 - type: WallReinforced - components: - - pos: -18.5,42.5 - parent: 1 - type: Transform -- uid: 3441 - type: WallReinforced - components: - - pos: -18.5,41.5 - parent: 1 - type: Transform -- uid: 3442 - type: WallReinforced - components: - - pos: -18.5,43.5 - parent: 1 - type: Transform -- uid: 3443 - type: WallReinforced - components: - - pos: -23.5,44.5 - parent: 1 - type: Transform -- uid: 3444 - type: Grille - components: - - pos: -20.5,36.5 - parent: 1 - type: Transform -- uid: 3445 - type: WallReinforced - components: - - pos: -23.5,45.5 - parent: 1 - type: Transform -- uid: 3446 - type: WallReinforced - components: - - pos: -23.5,46.5 - parent: 1 - type: Transform -- uid: 3447 - type: WallReinforced - components: - - pos: -23.5,40.5 - parent: 1 - type: Transform -- uid: 3448 - type: AirlockMaintHOPLocked - components: - - pos: -23.5,41.5 - parent: 1 - type: Transform -- uid: 3449 - type: WallReinforced - components: - - pos: -23.5,42.5 - parent: 1 - type: Transform -- uid: 3450 - type: WallReinforced - components: - - pos: -23.5,43.5 - parent: 1 - type: Transform -- uid: 3451 - type: WallReinforced - components: - - pos: -23.5,48.5 - parent: 1 - type: Transform -- uid: 3452 - type: Grille - components: - - pos: -14.5,46.5 - parent: 1 - type: Transform -- uid: 3453 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -23.5,34.5 - parent: 1 - type: Transform -- uid: 3454 - type: AirlockHeadOfPersonnelGlassLocked - components: - - pos: -20.5,43.5 - parent: 1 - type: Transform -- uid: 3455 - type: ReinforcedWindow - components: - - pos: -20.5,36.5 - parent: 1 - type: Transform -- uid: 3456 - type: Grille - components: - - pos: -22.5,36.5 - parent: 1 - type: Transform -- uid: 3457 - type: Grille - components: - - pos: -21.5,36.5 - parent: 1 - type: Transform -- uid: 3458 - type: WindoorHeadOfPersonnelLocked - components: - - rot: 3.141592653589793 rad - pos: -19.5,36.5 - parent: 1 - type: Transform -- uid: 3459 - type: WallSolid - components: - - pos: -30.5,3.5 - parent: 1 - type: Transform -- uid: 3460 - type: WallSolid - components: - - pos: -30.5,2.5 - parent: 1 - type: Transform -- uid: 3461 - type: Girder - components: - - pos: -29.5,3.5 - parent: 1 - type: Transform -- uid: 3462 - type: WallSolid - components: - - pos: -30.5,0.5 - parent: 1 - type: Transform -- uid: 3463 - type: WallSolidRust - components: - - pos: -30.5,-2.5 - parent: 1 - type: Transform -- uid: 3464 - type: Girder - components: - - pos: -24.5,3.5 - parent: 1 - type: Transform -- uid: 3465 - type: WallSolidRust - components: - - pos: -30.5,-1.5 - parent: 1 - type: Transform -- uid: 3466 - type: WallSolid - components: - - pos: -30.5,-3.5 - parent: 1 - type: Transform -- uid: 3467 - type: WallSolid - components: - - pos: -30.5,-4.5 - parent: 1 - type: Transform -- uid: 3468 - type: WallSolidRust - components: - - pos: -30.5,-5.5 - parent: 1 - type: Transform -- uid: 3469 - type: PoweredlightSodium - components: - - pos: -48.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3470 - type: WallSolid - components: - - pos: -29.5,-9.5 - parent: 1 - type: Transform -- uid: 3471 - type: WallSolidRust - components: - - pos: -30.5,-7.5 - parent: 1 - type: Transform -- uid: 3472 - type: WallSolid - components: - - pos: -30.5,-9.5 - parent: 1 - type: Transform -- uid: 3473 - type: WallSolidRust - components: - - pos: -30.5,1.5 - parent: 1 - type: Transform -- uid: 3474 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-9.5 - parent: 1 - type: Transform -- uid: 3475 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-10.5 - parent: 1 - type: Transform -- uid: 3476 - type: WallSolid - components: - - pos: -23.5,-9.5 - parent: 1 - type: Transform -- uid: 3477 - type: WallSolid - components: - - pos: -26.5,-9.5 - parent: 1 - type: Transform -- uid: 3478 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-12.5 - parent: 1 - type: Transform -- uid: 3479 - type: Girder - components: - - pos: -22.5,-11.5 - parent: 1 - type: Transform -- uid: 3480 - type: WallReinforced - components: - - pos: -22.5,-14.5 - parent: 1 - type: Transform -- uid: 3481 - type: WallReinforced - components: - - pos: -23.5,-14.5 - parent: 1 - type: Transform -- uid: 3482 - type: WallReinforced - components: - - pos: -24.5,-14.5 - parent: 1 - type: Transform -- uid: 3483 - type: WallReinforced - components: - - pos: -25.5,-14.5 - parent: 1 - type: Transform -- uid: 3484 - type: WallReinforced - components: - - pos: -26.5,-14.5 - parent: 1 - type: Transform -- uid: 3485 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-10.5 - parent: 1 - type: Transform -- uid: 3486 - type: WallSolid - components: - - pos: -22.5,-13.5 - parent: 1 - type: Transform -- uid: 3487 - type: WallReinforced - components: - - pos: -22.5,-15.5 - parent: 1 - type: Transform -- uid: 3488 - type: WallReinforced - components: - - pos: -21.5,-15.5 - parent: 1 - type: Transform -- uid: 3489 - type: WallReinforced - components: - - pos: -20.5,-15.5 - parent: 1 - type: Transform -- uid: 3490 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-9.5 - parent: 1 - type: Transform -- uid: 3491 - type: Firelock - components: - - pos: -21.5,-5.5 - parent: 1 - type: Transform -- uid: 3492 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-9.5 - parent: 1 - type: Transform -- uid: 3493 - type: WallSolid - components: - - pos: -26.5,-11.5 - parent: 1 - type: Transform -- uid: 3494 - type: WallReinforced - components: - - pos: -30.5,-11.5 - parent: 1 - type: Transform -- uid: 3495 - type: WallReinforced - components: - - pos: -29.5,-13.5 - parent: 1 - type: Transform -- uid: 3496 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-10.5 - parent: 1 - type: Transform -- uid: 3497 - type: WallReinforced - components: - - pos: -30.5,-12.5 - parent: 1 - type: Transform -- uid: 3498 - type: WallReinforced - components: - - pos: -28.5,-13.5 - parent: 1 - type: Transform -- uid: 3499 - type: WallSolid - components: - - pos: -26.5,-12.5 - parent: 1 - type: Transform -- uid: 3500 - type: WallReinforced - components: - - pos: -30.5,-13.5 - parent: 1 - type: Transform -- uid: 3501 - type: WallReinforced - components: - - pos: -26.5,-13.5 - parent: 1 - type: Transform -- uid: 3502 - type: WallReinforced - components: - - pos: -27.5,-13.5 - parent: 1 - type: Transform -- uid: 3503 - type: WallSolid - components: - - pos: -19.5,-12.5 - parent: 1 - type: Transform -- uid: 3504 - type: AirlockMaint - components: - - pos: -24.5,-9.5 - parent: 1 - type: Transform -- uid: 3505 - type: AirlockMaint - components: - - pos: -20.5,-9.5 - parent: 1 - type: Transform -- uid: 3506 - type: AirlockMaint - components: - - pos: -20.5,-12.5 - parent: 1 - type: Transform -- uid: 3507 - type: Table - components: - - pos: -21.5,-10.5 - parent: 1 - type: Transform -- uid: 3508 - type: Table - components: - - pos: -21.5,-11.5 - parent: 1 - type: Transform -- uid: 3509 - type: RandomArcade - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-13.5 - parent: 1 - type: Transform -- uid: 3510 - type: RandomArcade - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-14.5 - parent: 1 - type: Transform -- uid: 3511 - type: Rack - components: - - pos: -19.5,-13.5 - parent: 1 - type: Transform -- uid: 3512 - type: Rack - components: - - pos: -19.5,-14.5 - parent: 1 - type: Transform -- uid: 3513 - type: ToySpawner - components: - - pos: -19.5,-13.5 - parent: 1 - type: Transform -- uid: 3514 - type: ToySpawner - components: - - pos: -19.5,-14.5 - parent: 1 - type: Transform -- uid: 3515 - type: Table - components: - - pos: -19.5,-10.5 - parent: 1 - type: Transform -- uid: 3516 - type: FigureSpawner - components: - - pos: -19.5,-10.5 - parent: 1 - type: Transform -- uid: 3517 - type: FoodBoxPizzaFilled - components: - - pos: -21.482256,-10.238187 - parent: 1 - type: Transform -- uid: 3518 - type: FoodBoxPizzaFilled - components: - - pos: -21.49788,-10.894437 - parent: 1 - type: Transform -- uid: 3519 - type: VehicleKeyATV - components: - - pos: -21.491938,-11.581937 - parent: 1 - type: Transform -- uid: 3520 - type: WallSolid - components: - - pos: -39.5,2.5 - parent: 1 - type: Transform -- uid: 3521 - type: WallSolidRust - components: - - pos: -35.5,2.5 - parent: 1 - type: Transform -- uid: 3522 - type: WallSolidRust - components: - - pos: -42.5,3.5 - parent: 1 - type: Transform -- uid: 3523 - type: WallSolid - components: - - pos: -42.5,2.5 - parent: 1 - type: Transform -- uid: 3524 - type: Window - components: - - pos: -42.5,1.5 - parent: 1 - type: Transform -- uid: 3525 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -47.5,0.5 - parent: 1 - type: Transform -- uid: 3526 - type: WallSolid - components: - - pos: -35.5,-0.5 - parent: 1 - type: Transform -- uid: 3527 - type: APCBasic - components: - - pos: -29.5,30.5 - parent: 1 - type: Transform -- uid: 3528 - type: WallSolidRust - components: - - pos: -33.5,-0.5 - parent: 1 - type: Transform -- uid: 3529 - type: WallSolid - components: - - pos: -31.5,-0.5 - parent: 1 - type: Transform -- uid: 3530 - type: OreProcessor - components: - - pos: -34.5,-1.5 - parent: 1 - type: Transform -- uid: 3531 - type: CableApcExtension - components: - - pos: -29.5,29.5 - parent: 1 - type: Transform -- uid: 3532 - type: Table - components: - - pos: -39.5,1.5 - parent: 1 - type: Transform -- uid: 3533 - type: WallSolid - components: - - pos: -42.5,-0.5 - parent: 1 - type: Transform -- uid: 3534 - type: Table - components: - - pos: -39.5,0.5 - parent: 1 - type: Transform -- uid: 3535 - type: Table - components: - - pos: -38.5,2.5 - parent: 1 - type: Transform -- uid: 3536 - type: Table - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform -- uid: 3537 - type: WallSolid - components: - - pos: -43.5,3.5 - parent: 1 - type: Transform -- uid: 3538 - type: WallReinforced - components: - - pos: -43.5,-8.5 - parent: 1 - type: Transform -- uid: 3539 - type: WallReinforced - components: - - pos: -44.5,-8.5 - parent: 1 - type: Transform -- uid: 3540 - type: WallReinforced - components: - - pos: -45.5,-8.5 - parent: 1 - type: Transform -- uid: 3541 - type: WallReinforced - components: - - pos: -46.5,-7.5 - parent: 1 - type: Transform -- uid: 3542 - type: WallReinforced - components: - - pos: -46.5,-8.5 - parent: 1 - type: Transform -- uid: 3543 - type: WallReinforced - components: - - pos: -48.5,-12.5 - parent: 1 - type: Transform -- uid: 3544 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -40.5,-9.5 - parent: 1 - type: Transform -- uid: 3545 - type: Table - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform -- uid: 3546 - type: Table - components: - - pos: -35.5,1.5 - parent: 1 - type: Transform -- uid: 3547 - type: Table - components: - - pos: -35.5,0.5 - parent: 1 - type: Transform -- uid: 3548 - type: WallSolidRust - components: - - pos: -30.5,-8.5 - parent: 1 - type: Transform -- uid: 3549 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-0.5 - parent: 1 - type: Transform -- uid: 3550 - type: WallSolid - components: - - pos: -35.5,-3.5 - parent: 1 - type: Transform -- uid: 3551 - type: GasPipeStraight - components: - - pos: -40.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3552 - type: TableWood - components: - - pos: -37.5,-11.5 - parent: 1 - type: Transform -- uid: 3553 - type: TableWood - components: - - pos: -37.5,-10.5 - parent: 1 - type: Transform -- uid: 3554 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-9.5 - parent: 1 - type: Transform -- uid: 3555 - type: Grille - components: - - pos: -37.5,-8.5 - parent: 1 - type: Transform -- uid: 3556 - type: CableApcExtension - components: - - pos: -42.5,-10.5 - parent: 1 - type: Transform -- uid: 3557 - type: CableApcExtension - components: - - pos: -39.5,-13.5 - parent: 1 - type: Transform -- uid: 3558 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3559 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3560 - type: WallSolid - components: - - pos: -36.5,-10.5 - parent: 1 - type: Transform -- uid: 3561 - type: WallSolid - components: - - pos: -36.5,-9.5 - parent: 1 - type: Transform -- uid: 3562 - type: WallSolid - components: - - pos: -36.5,-8.5 - parent: 1 - type: Transform -- uid: 3563 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3564 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-14.5 - parent: 1 - type: Transform -- uid: 3565 - type: WeldingFuelTankFull - components: - - pos: -50.5,-10.5 - parent: 1 - type: Transform -- uid: 3566 - type: AirlockSalvageGlassLocked - components: - - pos: -40.5,-8.5 - parent: 1 - type: Transform -- uid: 3567 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-14.5 - parent: 1 - type: Transform -- uid: 3568 - type: Window - components: - - pos: -38.5,-8.5 - parent: 1 - type: Transform -- uid: 3569 - type: AtmosDeviceFanTiny - components: - - pos: -66.5,-15.5 - parent: 1 - type: Transform -- uid: 3570 - type: PlasticFlapsAirtightClear - components: - - pos: -35.5,-14.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3571 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3572 - type: WallReinforced - components: - - pos: -48.5,-13.5 - parent: 1 - type: Transform -- uid: 3573 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -39.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3574 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3575 - type: TableWood - components: - - pos: -31.5,-1.5 - parent: 1 - type: Transform -- uid: 3576 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-4.5 - parent: 1 - type: Transform -- uid: 3577 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-3.5 - parent: 1 - type: Transform -- uid: 3578 - type: LockerSalvageSpecialistFilled - components: - - pos: -41.5,-13.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3579 - type: WallReinforced - components: - - pos: -46.5,-6.5 - parent: 1 - type: Transform -- uid: 3580 - type: WallReinforced - components: - - pos: -46.5,-5.5 - parent: 1 - type: Transform -- uid: 3581 - type: WallReinforced - components: - - pos: -42.5,-8.5 - parent: 1 - type: Transform -- uid: 3582 - type: WallSolidRust - components: - - pos: -41.5,-8.5 - parent: 1 - type: Transform -- uid: 3583 - type: WallSolid - components: - - pos: -49.5,2.5 - parent: 1 - type: Transform -- uid: 3584 - type: LockerSalvageSpecialistFilled - components: - - pos: -40.5,-13.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3585 - type: WallReinforced - components: - - pos: -45.5,-5.5 - parent: 1 - type: Transform -- uid: 3586 - type: Window - components: - - pos: -42.5,-4.5 - parent: 1 - type: Transform -- uid: 3587 - type: WallReinforced - components: - - pos: -43.5,-5.5 - parent: 1 - type: Transform -- uid: 3588 - type: WallReinforced - components: - - pos: -42.5,-5.5 - parent: 1 - type: Transform -- uid: 3589 - type: WallReinforced - components: - - pos: -42.5,-6.5 - parent: 1 - type: Transform -- uid: 3590 - type: WallReinforced - components: - - pos: -42.5,-7.5 - parent: 1 - type: Transform -- uid: 3591 - type: Window - components: - - pos: -42.5,-3.5 - parent: 1 - type: Transform -- uid: 3592 - type: Window - components: - - pos: -42.5,-1.5 - parent: 1 - type: Transform -- uid: 3593 - type: Grille - components: - - pos: -42.5,-4.5 - parent: 1 - type: Transform -- uid: 3594 - type: Grille - components: - - pos: -42.5,-3.5 - parent: 1 - type: Transform -- uid: 3595 - type: Grille - components: - - pos: -42.5,-1.5 - parent: 1 - type: Transform -- uid: 3596 - type: Girder - components: - - pos: -47.5,-5.5 - parent: 1 - type: Transform -- uid: 3597 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-4.5 - parent: 1 - type: Transform -- uid: 3598 - type: WallSolid - components: - - pos: -47.5,-3.5 - parent: 1 - type: Transform -- uid: 3599 - type: WallSolid - components: - - pos: -50.5,3.5 - parent: 1 - type: Transform -- uid: 3600 - type: WallSolid - components: - - pos: -47.5,-1.5 - parent: 1 - type: Transform -- uid: 3601 - type: WallSolid - components: - - pos: -47.5,-0.5 - parent: 1 - type: Transform -- uid: 3602 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -42.5,0.5 - parent: 1 - type: Transform -- uid: 3603 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -45.5,3.5 - parent: 1 - type: Transform -- uid: 3604 - type: WallSolid - components: - - pos: -47.5,2.5 - parent: 1 - type: Transform -- uid: 3605 - type: WallSolid - components: - - pos: -47.5,3.5 - parent: 1 - type: Transform -- uid: 3606 - type: WallSolid - components: - - pos: -46.5,3.5 - parent: 1 - type: Transform -- uid: 3607 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -47.5,1.5 - parent: 1 - type: Transform -- uid: 3608 - type: Window - components: - - pos: -44.5,3.5 - parent: 1 - type: Transform -- uid: 3609 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-0.5 - parent: 1 - type: Transform -- uid: 3610 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-0.5 - parent: 1 - type: Transform -- uid: 3611 - type: WallSolid - components: - - pos: -43.5,-0.5 - parent: 1 - type: Transform -- uid: 3612 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -55.5,2.5 - parent: 1 - type: Transform -- uid: 3613 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -53.5,3.5 - parent: 1 - type: Transform -- uid: 3614 - type: Girder - components: - - pos: -53.5,-8.5 - parent: 1 - type: Transform -- uid: 3615 - type: Error - components: - - pos: -28.521805,-11.50697 - parent: 1 - type: Transform -- uid: 3616 - type: LockerSalvageSpecialistFilled - components: - - pos: -39.5,-13.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3617 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3618 - type: ComputerCargoShuttle - components: - - pos: -39.5,-1.5 - parent: 1 - type: Transform -- uid: 3619 - type: ComputerCargoOrders - components: - - rot: -1.5707963267948966 rad - pos: -36.5,1.5 - parent: 1 - type: Transform -- uid: 3620 - type: AirlockCargoGlassLocked - components: - - pos: -41.5,-0.5 - parent: 1 - type: Transform -- uid: 3621 - type: AirlockCargoGlassLocked - components: - - pos: -40.5,-0.5 - parent: 1 - type: Transform -- uid: 3622 - type: AirlockCargoGlassLocked - components: - - pos: -42.5,-2.5 - parent: 1 - type: Transform -- uid: 3623 - type: AirlockMaintCargoLocked - components: - - pos: -47.5,-2.5 - parent: 1 - type: Transform -- uid: 3624 - type: AirlockMaintCargoLocked - components: - - pos: -30.5,-6.5 - parent: 1 - type: Transform -- uid: 3625 - type: WindoorSecureCargoLocked - components: - - rot: 1.5707963267948966 rad - pos: -39.5,0.5 - parent: 1 - type: Transform -- uid: 3626 - type: WindoorSecureCargoLocked - components: - - pos: -38.5,2.5 - parent: 1 - type: Transform -- uid: 3627 - type: WindoorSecureCargoLocked - components: - - rot: 1.5707963267948966 rad - pos: -39.5,1.5 - parent: 1 - type: Transform -- uid: 3628 - type: WallReinforced - components: - - pos: -48.5,-11.5 - parent: 1 - type: Transform -- uid: 3629 - type: AirlockExternalGlassCargoLocked - components: - - pos: -46.5,-14.5 - parent: 1 - type: Transform -- uid: 3630 - type: AirlockExternalGlassCargoLocked - components: - - pos: -47.5,-14.5 - parent: 1 - type: Transform -- uid: 3631 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3632 - type: AirlockExternalGlassCargoLocked - components: - - pos: -44.5,-13.5 - parent: 1 - type: Transform -- uid: 3633 - type: WallReinforced - components: - - pos: -46.5,-11.5 - parent: 1 - type: Transform -- uid: 3634 - type: ReinforcedWindow - components: - - pos: -47.5,-11.5 - parent: 1 - type: Transform -- uid: 3635 - type: WindoorSecureCargoLocked - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform -- uid: 3636 - type: WindoorSecureCargoLocked - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform -- uid: 3637 - type: WindoorSecureCargoLocked - components: - - rot: -1.5707963267948966 rad - pos: -35.5,1.5 - parent: 1 - type: Transform -- uid: 3638 - type: WindoorSecureCargoLocked - components: - - rot: -1.5707963267948966 rad - pos: -35.5,0.5 - parent: 1 - type: Transform -- uid: 3639 - type: AirlockCargoGlassLocked - components: - - pos: -37.5,-0.5 - parent: 1 - type: Transform -- uid: 3640 - type: Window - components: - - pos: -38.5,-0.5 - parent: 1 - type: Transform -- uid: 3641 - type: Window - components: - - pos: -36.5,-0.5 - parent: 1 - type: Transform -- uid: 3642 - type: Grille - components: - - pos: -38.5,-0.5 - parent: 1 - type: Transform -- uid: 3643 - type: Grille - components: - - pos: -36.5,-0.5 - parent: 1 - type: Transform -- uid: 3644 - type: Grille - components: - - pos: -44.5,3.5 - parent: 1 - type: Transform -- uid: 3645 - type: Grille - components: - - pos: -42.5,1.5 - parent: 1 - type: Transform -- uid: 3646 - type: AirlockCargo - components: - - pos: -44.5,-0.5 - parent: 1 - type: Transform -- uid: 3647 - type: BannerCargo - components: - - pos: -39.5,3.5 - parent: 1 - type: Transform -- uid: 3648 - type: BannerCargo - components: - - pos: -35.5,3.5 - parent: 1 - type: Transform -- uid: 3649 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -31.5,3.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3650 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -31.5,2.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3651 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -31.5,1.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3652 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -31.5,0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3653 - type: DisposalUnit - components: - - pos: -41.5,-6.5 - parent: 1 - type: Transform -- uid: 3654 - type: DisposalUnit - components: - - pos: -46.5,-1.5 - parent: 1 - type: Transform -- uid: 3655 - type: VendingMachineCargoDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -41.5,-7.5 - parent: 1 - type: Transform -- uid: 3656 - type: Rack - components: - - pos: -33.5,-1.5 - parent: 1 - type: Transform -- uid: 3657 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3658 - type: SignCargo - components: - - pos: -39.5,2.5 - parent: 1 - type: Transform -- uid: 3659 - type: SignCargo - components: - - pos: -35.5,2.5 - parent: 1 - type: Transform -- uid: 3660 - type: SpawnPointCargoTechnician - components: - - pos: -39.5,-4.5 - parent: 1 - type: Transform -- uid: 3661 - type: SpawnPointCargoTechnician - components: - - pos: -37.5,-4.5 - parent: 1 - type: Transform -- uid: 3662 - type: SpawnPointCargoTechnician - components: - - pos: -39.5,-6.5 - parent: 1 - type: Transform -- uid: 3663 - type: SpawnPointCargoTechnician - components: - - pos: -37.5,-6.5 - parent: 1 - type: Transform -- uid: 3664 - type: WardrobeCargoFilled - components: - - pos: -43.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3665 - type: WardrobeCargoFilled - components: - - pos: -43.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3666 - type: AirlockQuartermasterLocked - components: - - pos: -44.5,-5.5 - parent: 1 - type: Transform -- uid: 3667 - type: SpawnPointQuartermaster - components: - - pos: -44.5,-7.5 - parent: 1 - type: Transform -- uid: 3668 - type: LockerQuarterMasterFilled - components: - - pos: -43.5,-6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3669 - type: AirlockSalvageLocked - components: - - pos: -32.5,-0.5 - parent: 1 - type: Transform -- uid: 3670 - type: PlasticFlapsAirtightClear - components: - - pos: -39.5,-8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3671 - type: ReinforcedWindow - components: - - pos: -45.5,-14.5 - parent: 1 - type: Transform -- uid: 3672 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -35.5,-8.5 - parent: 1 - type: Transform -- uid: 3673 - type: ComputerShuttleCargo - components: - - rot: 3.141592653589793 rad - pos: -33.5,-10.5 - parent: 1 - type: Transform -- uid: 3674 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -34.5,-8.5 - parent: 1 - type: Transform -- uid: 3675 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-13.5 - parent: 1 - type: Transform -- uid: 3676 - type: VendingMachineSalvage - components: - - flags: SessionSpecific - type: MetaData - - pos: -37.5,-13.5 - parent: 1 - type: Transform -- uid: 3677 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -33.5,-8.5 - parent: 1 - type: Transform -- uid: 3678 - type: Rack - components: - - pos: -38.5,-13.5 - parent: 1 - type: Transform -- uid: 3679 - type: WaterTankFull - components: - - pos: -51.5,-10.5 - parent: 1 - type: Transform -- uid: 3680 - type: HandheldGPSBasic - components: - - pos: -38.62984,-13.485714 - parent: 1 - type: Transform -- uid: 3681 - type: CableApcExtension - components: - - pos: -39.5,-10.5 - parent: 1 - type: Transform -- uid: 3682 - type: CableMV - components: - - pos: -31.5,-6.5 - parent: 1 - type: Transform -- uid: 3683 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3684 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-14.5 - parent: 1 - type: Transform -- uid: 3685 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-0.5 - parent: 1 - type: Transform -- uid: 3686 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-14.5 - parent: 1 - type: Transform -- uid: 3687 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3688 - type: HandheldGPSBasic - components: - - pos: -38.301716,-13.485714 - parent: 1 - type: Transform -- uid: 3689 - type: TableWood - components: - - pos: -37.5,-9.5 - parent: 1 - type: Transform -- uid: 3690 - type: WallReinforced - components: - - pos: -36.5,-14.5 - parent: 1 - type: Transform -- uid: 3691 - type: WallReinforced - components: - - pos: -36.5,-11.5 - parent: 1 - type: Transform -- uid: 3692 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-14.5 - parent: 1 - type: Transform -- uid: 3693 - type: WallReinforced - components: - - pos: -37.5,-14.5 - parent: 1 - type: Transform -- uid: 3694 - type: WallReinforced - components: - - pos: -44.5,-14.5 - parent: 1 - type: Transform -- uid: 3695 - type: WallReinforced - components: - - pos: -43.5,-14.5 - parent: 1 - type: Transform -- uid: 3696 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -41.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3697 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-14.5 - parent: 1 - type: Transform -- uid: 3698 - type: WallReinforced - components: - - pos: -45.5,-11.5 - parent: 1 - type: Transform -- uid: 3699 - type: WallReinforced - components: - - pos: -44.5,-11.5 - parent: 1 - type: Transform -- uid: 3700 - type: WallReinforced - components: - - pos: -48.5,-14.5 - parent: 1 - type: Transform -- uid: 3701 - type: TableWood - components: - - pos: -38.5,-9.5 - parent: 1 - type: Transform -- uid: 3702 - type: CableApcExtension - components: - - pos: -34.5,-6.5 - parent: 1 - type: Transform -- uid: 3703 - type: Grille - components: - - pos: -45.5,-14.5 - parent: 1 - type: Transform -- uid: 3704 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3705 - type: WallSolid - components: - - pos: -35.5,-4.5 - parent: 1 - type: Transform -- uid: 3706 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3707 - type: CableApcExtension - components: - - pos: -42.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3708 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3709 - type: CableApcExtension - components: - - pos: -34.5,-10.5 - parent: 1 - type: Transform -- uid: 3710 - type: Window - components: - - pos: -37.5,-8.5 - parent: 1 - type: Transform -- uid: 3711 - type: CableApcExtension - components: - - pos: -44.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3712 - type: CableApcExtension - components: - - pos: -45.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3713 - type: CableApcExtension - components: - - pos: -46.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3714 - type: ReinforcedWindow - components: - - pos: -42.5,-14.5 - parent: 1 - type: Transform -- uid: 3715 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3716 - type: FirelockGlass - components: - - pos: -41.5,-0.5 - parent: 1 - type: Transform -- uid: 3717 - type: FirelockGlass - components: - - pos: -40.5,-0.5 - parent: 1 - type: Transform -- uid: 3718 - type: FirelockGlass - components: - - pos: -39.5,0.5 - parent: 1 - type: Transform -- uid: 3719 - type: FirelockGlass - components: - - pos: -39.5,1.5 - parent: 1 - type: Transform -- uid: 3720 - type: FirelockGlass - components: - - pos: -38.5,2.5 - parent: 1 - type: Transform -- uid: 3721 - type: FirelockGlass - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform -- uid: 3722 - type: FirelockGlass - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform -- uid: 3723 - type: FirelockGlass - components: - - pos: -35.5,1.5 - parent: 1 - type: Transform -- uid: 3724 - type: FirelockGlass - components: - - pos: -35.5,0.5 - parent: 1 - type: Transform -- uid: 3725 - type: FirelockGlass - components: - - pos: -32.5,-0.5 - parent: 1 - type: Transform -- uid: 3726 - type: FirelockGlass - components: - - pos: -35.5,-2.5 - parent: 1 - type: Transform -- uid: 3727 - type: TableWood - components: - - pos: -45.5,-3.5 - parent: 1 - type: Transform -- uid: 3728 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-3.5 - parent: 1 - type: Transform -- uid: 3729 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -45.5,-4.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3730 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-3.5 - parent: 1 - type: Transform -- uid: 3731 - type: ChairWood - components: - - pos: -45.5,-2.5 - parent: 1 - type: Transform -- uid: 3732 - type: FoodBoxPizza - components: - - pos: -45.52244,-3.197308 - parent: 1 - type: Transform -- uid: 3733 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -45.5,-1.5 - parent: 1 - type: Transform -- uid: 3734 - type: PottedPlantRandom - components: - - pos: -43.5,-1.5 - parent: 1 - type: Transform -- uid: 3735 - type: PottedPlantRandom - components: - - pos: -43.5,-4.5 - parent: 1 - type: Transform -- uid: 3736 - type: PottedPlantRandom - components: - - pos: -36.5,-1.5 - parent: 1 - type: Transform -- uid: 3737 - type: PottedPlantRandom - components: - - pos: -34.5,2.5 - parent: 1 - type: Transform -- uid: 3738 - type: PottedPlantRandom - components: - - pos: -42.5,4.5 - parent: 1 - type: Transform -- uid: 3739 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3740 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -32.5,-8.5 - parent: 1 - type: Transform -- uid: 3741 - type: Table - components: - - pos: -46.5,2.5 - parent: 1 - type: Transform -- uid: 3742 - type: Table - components: - - pos: -46.5,1.5 - parent: 1 - type: Transform -- uid: 3743 - type: Table - components: - - pos: -46.5,0.5 - parent: 1 - type: Transform -- uid: 3744 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -45.5,1.5 - parent: 1 - type: Transform -- uid: 3745 - type: FaxMachineBase - components: - - pos: -46.5,2.5 - parent: 1 - type: Transform - - name: Cargo - type: FaxMachine -- uid: 3746 - type: ComputerCargoOrders - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-7.5 - parent: 1 - type: Transform -- uid: 3747 - type: TableWood - components: - - pos: -45.5,-7.5 - parent: 1 - type: Transform -- uid: 3748 - type: Lamp - components: - - pos: -45.525093,-7.0754695 - parent: 1 - type: Transform -- uid: 3749 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-6.5 - parent: 1 - type: Transform -- uid: 3750 - type: Lamp - components: - - pos: -46.478218,0.9660685 - parent: 1 - type: Transform -- uid: 3751 - type: PaperOffice - components: - - pos: -46.321968,1.8882136 - parent: 1 - type: Transform -- uid: 3752 - type: PaperOffice - components: - - pos: -46.446968,1.7632136 - parent: 1 - type: Transform -- uid: 3753 - type: PaperOffice - components: - - pos: -46.478218,1.6850886 - parent: 1 - type: Transform -- uid: 3754 - type: PaperOffice - components: - - pos: -46.368843,1.5913386 - parent: 1 - type: Transform -- uid: 3755 - type: PaperOffice - components: - - pos: -46.337593,1.5757136 - parent: 1 - type: Transform -- uid: 3756 - type: BoxFolderYellow - components: - - pos: -46.603218,1.8100886 - parent: 1 - type: Transform -- uid: 3757 - type: BoxFolderYellow - components: - - pos: -46.571968,1.5132136 - parent: 1 - type: Transform -- uid: 3758 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: -39.5,0.5 - parent: 1 - type: Transform -- uid: 3759 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: -39.5,1.5 - parent: 1 - type: Transform -- uid: 3760 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: -38.5,2.5 - parent: 1 - type: Transform -- uid: 3761 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: -37.5,2.5 - parent: 1 - type: Transform -- uid: 3762 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: -36.5,2.5 - parent: 1 - type: Transform -- uid: 3763 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: -35.5,1.5 - parent: 1 - type: Transform -- uid: 3764 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: -35.5,0.5 - parent: 1 - type: Transform -- uid: 3765 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -37.5,1.5 - parent: 1 - type: Transform -- uid: 3766 - type: Poweredlight - components: - - pos: -35.5,7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3767 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3768 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3769 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3770 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -31.5,-8.5 - parent: 1 - type: Transform -- uid: 3771 - type: Poweredlight - components: - - pos: -43.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3772 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3773 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3774 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-4.5 - parent: 1 - type: Transform -- uid: 3775 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-13.5 - parent: 1 - type: Transform -- uid: 3776 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-5.5 - parent: 1 - type: Transform -- uid: 3777 - type: CableApcExtension - components: - - pos: -42.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3778 - type: CableApcExtension - components: - - pos: -41.5,-5.5 - parent: 1 - type: Transform -- uid: 3779 - type: CableApcExtension - components: - - pos: -40.5,-5.5 - parent: 1 - type: Transform -- uid: 3780 - type: CableApcExtension - components: - - pos: -39.5,-5.5 - parent: 1 - type: Transform -- uid: 3781 - type: CableApcExtension - components: - - pos: -38.5,-5.5 - parent: 1 - type: Transform -- uid: 3782 - type: CableApcExtension - components: - - pos: -37.5,-5.5 - parent: 1 - type: Transform -- uid: 3783 - type: CableApcExtension - components: - - pos: -40.5,-4.5 - parent: 1 - type: Transform -- uid: 3784 - type: CableApcExtension - components: - - pos: -40.5,-3.5 - parent: 1 - type: Transform -- uid: 3785 - type: CableApcExtension - components: - - pos: -40.5,-2.5 - parent: 1 - type: Transform -- uid: 3786 - type: CableApcExtension - components: - - pos: -40.5,-1.5 - parent: 1 - type: Transform -- uid: 3787 - type: CableApcExtension - components: - - pos: -40.5,-0.5 - parent: 1 - type: Transform -- uid: 3788 - type: CableApcExtension - components: - - pos: -40.5,0.5 - parent: 1 - type: Transform -- uid: 3789 - type: CableApcExtension - components: - - pos: -40.5,1.5 - parent: 1 - type: Transform -- uid: 3790 - type: CableApcExtension - components: - - pos: -40.5,2.5 - parent: 1 - type: Transform -- uid: 3791 - type: CableApcExtension - components: - - pos: -37.5,-4.5 - parent: 1 - type: Transform -- uid: 3792 - type: CableApcExtension - components: - - pos: -37.5,-3.5 - parent: 1 - type: Transform -- uid: 3793 - type: CableApcExtension - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform -- uid: 3794 - type: CableApcExtension - components: - - pos: -37.5,-1.5 - parent: 1 - type: Transform -- uid: 3795 - type: CableApcExtension - components: - - pos: -37.5,-0.5 - parent: 1 - type: Transform -- uid: 3796 - type: CableApcExtension - components: - - pos: -37.5,0.5 - parent: 1 - type: Transform -- uid: 3797 - type: CableApcExtension - components: - - pos: -37.5,1.5 - parent: 1 - type: Transform -- uid: 3798 - type: CableApcExtension - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform -- uid: 3799 - type: CableApcExtension - components: - - pos: -36.5,-2.5 - parent: 1 - type: Transform -- uid: 3800 - type: CableApcExtension - components: - - pos: -35.5,-2.5 - parent: 1 - type: Transform -- uid: 3801 - type: CableApcExtension - components: - - pos: -34.5,-2.5 - parent: 1 - type: Transform -- uid: 3802 - type: CableApcExtension - components: - - pos: -33.5,-2.5 - parent: 1 - type: Transform -- uid: 3803 - type: CableApcExtension - components: - - pos: -32.5,-2.5 - parent: 1 - type: Transform -- uid: 3804 - type: CableApcExtension - components: - - pos: -32.5,-1.5 - parent: 1 - type: Transform -- uid: 3805 - type: CableApcExtension - components: - - pos: -32.5,-0.5 - parent: 1 - type: Transform -- uid: 3806 - type: CableApcExtension - components: - - pos: -32.5,0.5 - parent: 1 - type: Transform -- uid: 3807 - type: CableApcExtension - components: - - pos: -32.5,1.5 - parent: 1 - type: Transform -- uid: 3808 - type: CableApcExtension - components: - - pos: -32.5,2.5 - parent: 1 - type: Transform -- uid: 3809 - type: CableApcExtension - components: - - pos: -37.5,3.5 - parent: 1 - type: Transform -- uid: 3810 - type: CableApcExtension - components: - - pos: -37.5,4.5 - parent: 1 - type: Transform -- uid: 3811 - type: CableApcExtension - components: - - pos: -37.5,5.5 - parent: 1 - type: Transform -- uid: 3812 - type: CableApcExtension - components: - - pos: -36.5,5.5 - parent: 1 - type: Transform -- uid: 3813 - type: CableApcExtension - components: - - pos: -35.5,5.5 - parent: 1 - type: Transform -- uid: 3814 - type: CableApcExtension - components: - - pos: -38.5,5.5 - parent: 1 - type: Transform -- uid: 3815 - type: CableApcExtension - components: - - pos: -39.5,5.5 - parent: 1 - type: Transform -- uid: 3816 - type: CableApcExtension - components: - - pos: -40.5,5.5 - parent: 1 - type: Transform -- uid: 3817 - type: CableApcExtension - components: - - pos: -41.5,-2.5 - parent: 1 - type: Transform -- uid: 3818 - type: CableApcExtension - components: - - pos: -42.5,-2.5 - parent: 1 - type: Transform -- uid: 3819 - type: CableApcExtension - components: - - pos: -43.5,-2.5 - parent: 1 - type: Transform -- uid: 3820 - type: CableApcExtension - components: - - pos: -44.5,-2.5 - parent: 1 - type: Transform -- uid: 3821 - type: CableApcExtension - components: - - pos: -44.5,-3.5 - parent: 1 - type: Transform -- uid: 3822 - type: CableApcExtension - components: - - pos: -44.5,-4.5 - parent: 1 - type: Transform -- uid: 3823 - type: CableApcExtension - components: - - pos: -44.5,-5.5 - parent: 1 - type: Transform -- uid: 3824 - type: CableApcExtension - components: - - pos: -44.5,-6.5 - parent: 1 - type: Transform -- uid: 3825 - type: CableApcExtension - components: - - pos: -45.5,-2.5 - parent: 1 - type: Transform -- uid: 3826 - type: CableApcExtension - components: - - pos: -44.5,-1.5 - parent: 1 - type: Transform -- uid: 3827 - type: CableApcExtension - components: - - pos: -44.5,-0.5 - parent: 1 - type: Transform -- uid: 3828 - type: CableApcExtension - components: - - pos: -44.5,0.5 - parent: 1 - type: Transform -- uid: 3829 - type: CableApcExtension - components: - - pos: -44.5,1.5 - parent: 1 - type: Transform -- uid: 3830 - type: CableApcExtension - components: - - pos: -45.5,1.5 - parent: 1 - type: Transform -- uid: 3831 - type: CableApcExtension - components: - - pos: -39.5,-6.5 - parent: 1 - type: Transform -- uid: 3832 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-11.5 - parent: 1 - type: Transform -- uid: 3833 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3834 - type: CableApcExtension - components: - - pos: -39.5,-9.5 - parent: 1 - type: Transform -- uid: 3835 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3836 - type: CableApcExtension - components: - - pos: -39.5,-11.5 - parent: 1 - type: Transform -- uid: 3837 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3838 - type: CableApcExtension - components: - - pos: -37.5,-6.5 - parent: 1 - type: Transform -- uid: 3839 - type: CableApcExtension - components: - - pos: -37.5,-7.5 - parent: 1 - type: Transform -- uid: 3840 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3841 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-4.5 - parent: 1 - type: Transform -- uid: 3842 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-4.5 - parent: 1 - type: Transform -- uid: 3843 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-4.5 - parent: 1 - type: Transform -- uid: 3844 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3845 - type: CableApcExtension - components: - - pos: -32.5,-3.5 - parent: 1 - type: Transform -- uid: 3846 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3847 - type: CableApcExtension - components: - - pos: -32.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3848 - type: CableApcExtension - components: - - pos: -32.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3849 - type: CableApcExtension - components: - - pos: -32.5,-10.5 - parent: 1 - type: Transform -- uid: 3850 - type: CableApcExtension - components: - - pos: -34.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3851 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3852 - type: CableApcExtension - components: - - pos: -33.5,-9.5 - parent: 1 - type: Transform -- uid: 3853 - type: CableApcExtension - components: - - pos: -33.5,-10.5 - parent: 1 - type: Transform -- uid: 3854 - type: CableMV - components: - - pos: -38.5,-6.5 - parent: 1 - type: Transform -- uid: 3855 - type: CableApcExtension - components: - - pos: -40.5,-9.5 - parent: 1 - type: Transform -- uid: 3856 - type: CableApcExtension - components: - - pos: -41.5,-9.5 - parent: 1 - type: Transform -- uid: 3857 - type: CableApcExtension - components: - - pos: -42.5,-9.5 - parent: 1 - type: Transform -- uid: 3858 - type: CableApcExtension - components: - - pos: -43.5,-9.5 - parent: 1 - type: Transform -- uid: 3859 - type: CableApcExtension - components: - - pos: -44.5,-9.5 - parent: 1 - type: Transform -- uid: 3860 - type: CableApcExtension - components: - - pos: -45.5,-9.5 - parent: 1 - type: Transform -- uid: 3861 - type: CableApcExtension - components: - - pos: -46.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3862 - type: CableApcExtension - components: - - pos: -47.5,-9.5 - parent: 1 - type: Transform -- uid: 3863 - type: CableApcExtension - components: - - pos: -47.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3864 - type: CableApcExtension - components: - - pos: -48.5,-2.5 - parent: 1 - type: Transform -- uid: 3865 - type: Girder - components: - - pos: -51.5,3.5 - parent: 1 - type: Transform -- uid: 3866 - type: CableApcExtension - components: - - pos: -48.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3867 - type: CableApcExtension - components: - - pos: -48.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3868 - type: CableApcExtension - components: - - pos: -48.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3869 - type: CableApcExtension - components: - - pos: -48.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3870 - type: CableApcExtension - components: - - pos: -44.5,2.5 - parent: 1 - type: Transform -- uid: 3871 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -45.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3872 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 - parent: 1 - type: Transform -- uid: 3873 - type: CableApcExtension - components: - - pos: -27.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3874 - type: CableApcExtension - components: - - pos: -26.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3875 - type: CableApcExtension - components: - - pos: -26.5,-1.5 - parent: 1 - type: Transform -- uid: 3876 - type: CableApcExtension - components: - - pos: -26.5,-0.5 - parent: 1 - type: Transform -- uid: 3877 - type: CableApcExtension - components: - - pos: -26.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3878 - type: CableApcExtension - components: - - pos: -26.5,1.5 - parent: 1 - type: Transform -- uid: 3879 - type: CableApcExtension - components: - - pos: -26.5,2.5 - parent: 1 - type: Transform -- uid: 3880 - type: CableApcExtension - components: - - pos: -25.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3881 - type: CableApcExtension - components: - - pos: -25.5,0.5 - parent: 1 - type: Transform -- uid: 3882 - type: CableApcExtension - components: - - pos: -25.5,-1.5 - parent: 1 - type: Transform -- uid: 3883 - type: CableApcExtension - components: - - pos: -26.5,3.5 - parent: 1 - type: Transform -- uid: 3884 - type: CableApcExtension - components: - - pos: -26.5,-3.5 - parent: 1 - type: Transform -- uid: 3885 - type: CableApcExtension - components: - - pos: -26.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3886 - type: CableApcExtension - components: - - pos: -26.5,-5.5 - parent: 1 - type: Transform -- uid: 3887 - type: CableApcExtension - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3888 - type: CableApcExtension - components: - - pos: -26.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3889 - type: Catwalk - components: - - pos: -28.5,2.5 - parent: 1 - type: Transform -- uid: 3890 - type: CableApcExtension - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3891 - type: CableApcExtension - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3892 - type: CableApcExtension - components: - - pos: -23.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3893 - type: CableApcExtension - components: - - pos: -22.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3894 - type: CableApcExtension - components: - - pos: -21.5,-7.5 - parent: 1 - type: Transform -- uid: 3895 - type: CableApcExtension - components: - - pos: -20.5,-7.5 - parent: 1 - type: Transform -- uid: 3896 - type: CableApcExtension - components: - - pos: -20.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3897 - type: CableApcExtension - components: - - pos: -20.5,-9.5 - parent: 1 - type: Transform -- uid: 3898 - type: CableApcExtension - components: - - pos: -20.5,-10.5 - parent: 1 - type: Transform -- uid: 3899 - type: CableApcExtension - components: - - pos: -20.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3900 - type: CableApcExtension - components: - - pos: -20.5,-12.5 - parent: 1 - type: Transform -- uid: 3901 - type: CableApcExtension - components: - - pos: -24.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3902 - type: CableApcExtension - components: - - pos: -24.5,-9.5 - parent: 1 - type: Transform -- uid: 3903 - type: CableApcExtension - components: - - pos: -24.5,-10.5 - parent: 1 - type: Transform -- uid: 3904 - type: CableApcExtension - components: - - pos: -24.5,-11.5 - parent: 1 - type: Transform -- uid: 3905 - type: CableApcExtension - components: - - pos: -24.5,-12.5 - parent: 1 - type: Transform -- uid: 3906 - type: AirlockMaintLocked - components: - - pos: -28.5,3.5 - parent: 1 - type: Transform -- uid: 3907 - type: CableHV - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform -- uid: 3908 - type: CableHV - components: - - pos: -14.5,5.5 - parent: 1 - type: Transform -- uid: 3909 - type: CableHV - components: - - pos: -15.5,5.5 - parent: 1 - type: Transform -- uid: 3910 - type: CableHV - components: - - pos: -16.5,5.5 - parent: 1 - type: Transform -- uid: 3911 - type: CableHV - components: - - pos: -17.5,5.5 - parent: 1 - type: Transform -- uid: 3912 - type: CableHV - components: - - pos: -18.5,5.5 - parent: 1 - type: Transform -- uid: 3913 - type: CableHV - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform -- uid: 3914 - type: CableHV - components: - - pos: -20.5,5.5 - parent: 1 - type: Transform -- uid: 3915 - type: CableHV - components: - - pos: -21.5,5.5 - parent: 1 - type: Transform -- uid: 3916 - type: CableHV - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform -- uid: 3917 - type: CableHV - components: - - pos: -23.5,5.5 - parent: 1 - type: Transform -- uid: 3918 - type: CableHV - components: - - pos: -24.5,5.5 - parent: 1 - type: Transform -- uid: 3919 - type: CableHV - components: - - pos: -25.5,5.5 - parent: 1 - type: Transform -- uid: 3920 - type: CableHV - components: - - pos: -26.5,5.5 - parent: 1 - type: Transform -- uid: 3921 - type: CableHV - components: - - pos: -27.5,5.5 - parent: 1 - type: Transform -- uid: 3922 - type: CableHV - components: - - pos: -28.5,5.5 - parent: 1 - type: Transform -- uid: 3923 - type: CableHV - components: - - pos: -29.5,5.5 - parent: 1 - type: Transform -- uid: 3924 - type: CableHV - components: - - pos: -30.5,5.5 - parent: 1 - type: Transform -- uid: 3925 - type: CableHV - components: - - pos: -31.5,5.5 - parent: 1 - type: Transform -- uid: 3926 - type: CableHV - components: - - pos: -32.5,5.5 - parent: 1 - type: Transform -- uid: 3927 - type: CableHV - components: - - pos: -33.5,5.5 - parent: 1 - type: Transform -- uid: 3928 - type: CableHV - components: - - pos: -34.5,5.5 - parent: 1 - type: Transform -- uid: 3929 - type: CableHV - components: - - pos: -35.5,5.5 - parent: 1 - type: Transform -- uid: 3930 - type: CableHV - components: - - pos: -36.5,5.5 - parent: 1 - type: Transform -- uid: 3931 - type: CableHV - components: - - pos: -37.5,5.5 - parent: 1 - type: Transform -- uid: 3932 - type: SubstationBasic - components: - - pos: -24.5,-3.5 - parent: 1 - type: Transform -- uid: 3933 - type: AirlockEngineeringLocked - components: - - pos: -22.5,-4.5 - parent: 1 - type: Transform -- uid: 3934 - type: CableMV - components: - - pos: -24.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3935 - type: CableMV - components: - - pos: -24.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3936 - type: CableMV - components: - - pos: -23.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3937 - type: CableMV - components: - - pos: -22.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3938 - type: CableMV - components: - - pos: -21.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3939 - type: CableMV - components: - - pos: -21.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3940 - type: CableMV - components: - - pos: -21.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3941 - type: CableMV - components: - - pos: -21.5,-7.5 - parent: 1 - type: Transform -- uid: 3942 - type: CableMV - components: - - pos: -22.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3943 - type: CableMV - components: - - pos: -23.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3944 - type: CableMV - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3945 - type: CableMV - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3946 - type: CableMV - components: - - pos: -26.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3947 - type: CableMV - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3948 - type: CableMV - components: - - pos: -26.5,-5.5 - parent: 1 - type: Transform -- uid: 3949 - type: CableMV - components: - - pos: -26.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3950 - type: CableMV - components: - - pos: -26.5,-3.5 - parent: 1 - type: Transform -- uid: 3951 - type: CableMV - components: - - pos: -26.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3952 - type: CableMV - components: - - pos: -27.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3953 - type: CableMV - components: - - pos: -27.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3954 - type: CableMV - components: - - pos: -28.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3955 - type: CableMV - components: - - pos: -29.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3956 - type: CableMV - components: - - pos: -30.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3957 - type: CableMV - components: - - pos: -37.5,-6.5 - parent: 1 - type: Transform -- uid: 3958 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -45.5,-10.5 - parent: 1 - type: Transform -- uid: 3959 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -40.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3960 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3961 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3962 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-14.5 - parent: 1 - type: Transform -- uid: 3963 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-14.5 - parent: 1 - type: Transform -- uid: 3964 - type: WallReinforced - components: - - pos: -16.5,21.5 - parent: 1 - type: Transform -- uid: 3965 - type: AsteroidRockMining - components: - - pos: -9.5,-9.5 - parent: 1 - type: Transform -- uid: 3966 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -64.5,-15.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3967 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -64.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3968 - type: AtmosDeviceFanTiny - components: - - pos: -64.5,-15.5 - parent: 1 - type: Transform -- uid: 3969 - type: AirlockExternalGlass - components: - - rot: 3.141592653589793 rad - pos: -76.5,-10.5 - parent: 1 - type: Transform -- uid: 3970 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -75.5,-10.5 - parent: 1 - type: Transform -- uid: 3971 - type: ExtinguisherCabinet - components: - - rot: 3.141592653589793 rad - pos: -69.5,7.5 - parent: 1 - type: Transform -- uid: 3972 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -61.5,-12.5 - parent: 1 - type: Transform -- uid: 3973 - type: CableMV - components: - - pos: -40.5,-5.5 - parent: 1 - type: Transform -- uid: 3974 - type: CableMV - components: - - pos: -41.5,-5.5 - parent: 1 - type: Transform -- uid: 3975 - type: CableMV - components: - - pos: -42.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3976 - type: CableHV - components: - - pos: -15.5,4.5 - parent: 1 - type: Transform -- uid: 3977 - type: CableHV - components: - - pos: -15.5,3.5 - parent: 1 - type: Transform -- uid: 3978 - type: CableHV - components: - - pos: -15.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3979 - type: CableHV - components: - - pos: -15.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3980 - type: CableHV - components: - - pos: -16.5,1.5 - parent: 1 - type: Transform -- uid: 3981 - type: CableHV - components: - - pos: -17.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3982 - type: CableHV - components: - - pos: -18.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3983 - type: CableHV - components: - - pos: -19.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3984 - type: CableHV - components: - - pos: -20.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3985 - type: CableHV - components: - - pos: -21.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3986 - type: CableHV - components: - - pos: -21.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3987 - type: CableHV - components: - - pos: -21.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3988 - type: CableHV - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform -- uid: 3989 - type: CableHV - components: - - pos: -21.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3990 - type: CableHV - components: - - pos: -21.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3991 - type: CableHV - components: - - pos: -21.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3992 - type: CableHV - components: - - pos: -22.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3993 - type: CableHV - components: - - pos: -23.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3994 - type: CableHV - components: - - pos: -24.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3995 - type: CableHV - components: - - pos: -24.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3996 - type: CableHV - components: - - pos: -21.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3997 - type: CableHV - components: - - pos: -21.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3998 - type: CableHV - components: - - pos: -21.5,-7.5 - parent: 1 - type: Transform -- uid: 3999 - type: CableHV - components: - - pos: -22.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4000 - type: CableHV - components: - - pos: -23.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4001 - type: CableHV - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4002 - type: CableHV - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4003 - type: CableHV - components: - - pos: -26.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4004 - type: CableHV - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4005 - type: CableHV - components: - - pos: -27.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4006 - type: CableHV - components: - - pos: -28.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4007 - type: CableHV - components: - - pos: -28.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4008 - type: CableHV - components: - - pos: -28.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4009 - type: CableHV - components: - - pos: -28.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4010 - type: CableHV - components: - - pos: -28.5,-2.5 - parent: 1 - type: Transform -- uid: 4011 - type: CableHV - components: - - pos: -28.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4012 - type: CableHV - components: - - pos: -28.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4013 - type: CableHV - components: - - pos: -28.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4014 - type: CableHV - components: - - pos: -28.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4015 - type: CableHV - components: - - pos: -28.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4016 - type: CableHV - components: - - pos: -28.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4017 - type: CableHV - components: - - pos: -28.5,4.5 - parent: 1 - type: Transform -- uid: 4018 - type: CableHV - components: - - pos: -37.5,6.5 - parent: 1 - type: Transform -- uid: 4019 - type: CableHV - components: - - pos: -37.5,7.5 - parent: 1 - type: Transform -- uid: 4020 - type: CableHV - components: - - pos: -37.5,8.5 - parent: 1 - type: Transform -- uid: 4021 - type: CableHV - components: - - pos: -37.5,9.5 - parent: 1 - type: Transform -- uid: 4022 - type: CableHV - components: - - pos: -37.5,10.5 - parent: 1 - type: Transform -- uid: 4023 - type: CableHV - components: - - pos: -37.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4024 - type: CableHV - components: - - pos: -37.5,12.5 - parent: 1 - type: Transform -- uid: 4025 - type: CableHV - components: - - pos: -37.5,13.5 - parent: 1 - type: Transform -- uid: 4026 - type: CableHV - components: - - pos: -37.5,14.5 - parent: 1 - type: Transform -- uid: 4027 - type: CableHV - components: - - pos: -37.5,15.5 - parent: 1 - type: Transform -- uid: 4028 - type: CableHV - components: - - pos: -37.5,16.5 - parent: 1 - type: Transform -- uid: 4029 - type: CableHV - components: - - pos: -37.5,17.5 - parent: 1 - type: Transform -- uid: 4030 - type: CableHV - components: - - pos: -37.5,18.5 - parent: 1 - type: Transform -- uid: 4031 - type: CableHV - components: - - pos: -37.5,19.5 - parent: 1 - type: Transform -- uid: 4032 - type: CableHV - components: - - pos: -37.5,20.5 - parent: 1 - type: Transform -- uid: 4033 - type: CableHV - components: - - pos: -37.5,21.5 - parent: 1 - type: Transform -- uid: 4034 - type: CableHV - components: - - pos: -37.5,22.5 - parent: 1 - type: Transform -- uid: 4035 - type: CableHV - components: - - pos: -37.5,23.5 - parent: 1 - type: Transform -- uid: 4036 - type: CableHV - components: - - pos: -37.5,24.5 - parent: 1 - type: Transform -- uid: 4037 - type: CableHV - components: - - pos: -37.5,25.5 - parent: 1 - type: Transform -- uid: 4038 - type: CableHV - components: - - pos: -37.5,26.5 - parent: 1 - type: Transform -- uid: 4039 - type: CableHV - components: - - pos: -37.5,27.5 - parent: 1 - type: Transform -- uid: 4040 - type: CableHV - components: - - pos: -37.5,28.5 - parent: 1 - type: Transform -- uid: 4041 - type: CableHV - components: - - pos: -37.5,29.5 - parent: 1 - type: Transform -- uid: 4042 - type: CableHV - components: - - pos: -37.5,30.5 - parent: 1 - type: Transform -- uid: 4043 - type: CableHV - components: - - pos: -37.5,31.5 - parent: 1 - type: Transform -- uid: 4044 - type: CableHV - components: - - pos: -37.5,32.5 - parent: 1 - type: Transform -- uid: 4045 - type: CableHV - components: - - pos: -36.5,32.5 - parent: 1 - type: Transform -- uid: 4046 - type: CableHV - components: - - pos: -35.5,32.5 - parent: 1 - type: Transform -- uid: 4047 - type: CableHV - components: - - pos: -34.5,32.5 - parent: 1 - type: Transform -- uid: 4048 - type: CableHV - components: - - pos: -33.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4049 - type: CableHV - components: - - pos: -32.5,32.5 - parent: 1 - type: Transform -- uid: 4050 - type: CableHV - components: - - pos: -31.5,32.5 - parent: 1 - type: Transform -- uid: 4051 - type: CableHV - components: - - pos: -30.5,32.5 - parent: 1 - type: Transform -- uid: 4052 - type: CableHV - components: - - pos: -29.5,32.5 - parent: 1 - type: Transform -- uid: 4053 - type: CableHV - components: - - pos: -28.5,32.5 - parent: 1 - type: Transform -- uid: 4054 - type: CableHV - components: - - pos: -27.5,32.5 - parent: 1 - type: Transform -- uid: 4055 - type: CableHV - components: - - pos: -26.5,32.5 - parent: 1 - type: Transform -- uid: 4056 - type: CableHV - components: - - pos: -25.5,32.5 - parent: 1 - type: Transform -- uid: 4057 - type: CableHV - components: - - pos: -24.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4058 - type: CableHV - components: - - pos: -23.5,32.5 - parent: 1 - type: Transform -- uid: 4059 - type: CableHV - components: - - pos: -22.5,32.5 - parent: 1 - type: Transform -- uid: 4060 - type: CableHV - components: - - pos: -21.5,32.5 - parent: 1 - type: Transform -- uid: 4061 - type: CableHV - components: - - pos: -20.5,32.5 - parent: 1 - type: Transform -- uid: 4062 - type: CableHV - components: - - pos: -19.5,32.5 - parent: 1 - type: Transform -- uid: 4063 - type: CableHV - components: - - pos: -18.5,32.5 - parent: 1 - type: Transform -- uid: 4064 - type: CableHV - components: - - pos: -17.5,32.5 - parent: 1 - type: Transform -- uid: 4065 - type: CableHV - components: - - pos: -16.5,32.5 - parent: 1 - type: Transform -- uid: 4066 - type: CableHV - components: - - pos: -15.5,32.5 - parent: 1 - type: Transform -- uid: 4067 - type: CableHV - components: - - pos: -14.5,32.5 - parent: 1 - type: Transform -- uid: 4068 - type: CableHV - components: - - pos: -13.5,32.5 - parent: 1 - type: Transform -- uid: 4069 - type: ToiletDirtyWater - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-1.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4070 - type: ToiletDirtyWater - components: - - rot: -1.5707963267948966 rad - pos: -23.5,0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4071 - type: ToiletDirtyWater - components: - - rot: -1.5707963267948966 rad - pos: -23.5,2.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4072 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4073 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4074 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4075 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4076 - type: Mirror - components: - - rot: 1.5707963267948966 rad - pos: -27.5,0.5 - parent: 1 - type: Transform -- uid: 4077 - type: Mirror - components: - - rot: 1.5707963267948966 rad - pos: -27.5,1.5 - parent: 1 - type: Transform -- uid: 4078 - type: Mirror - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 1 - type: Transform -- uid: 4079 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -26.5,1.5 - parent: 1 - type: Transform -- uid: 4080 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -26.5,0.5 - parent: 1 - type: Transform -- uid: 4081 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-0.5 - parent: 1 - type: Transform -- uid: 4082 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-4.5 - parent: 1 - type: Transform -- uid: 4083 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-3.5 - parent: 1 - type: Transform -- uid: 4084 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-2.5 - parent: 1 - type: Transform -- uid: 4085 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-4.5 - parent: 1 - type: Transform -- uid: 4086 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-3.5 - parent: 1 - type: Transform -- uid: 4087 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-2.5 - parent: 1 - type: Transform -- uid: 4088 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-4.5 - parent: 1 - type: Transform -- uid: 4089 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-3.5 - parent: 1 - type: Transform -- uid: 4090 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-2.5 - parent: 1 - type: Transform -- uid: 4091 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -45.5,0.5 - parent: 1 - type: Transform -- uid: 4092 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -45.5,1.5 - parent: 1 - type: Transform -- uid: 4093 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -45.5,2.5 - parent: 1 - type: Transform -- uid: 4094 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -46.5,0.5 - parent: 1 - type: Transform -- uid: 4095 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -46.5,1.5 - parent: 1 - type: Transform -- uid: 4096 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: -46.5,2.5 - parent: 1 - type: Transform -- uid: 4097 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4098 - type: CableApcExtension - components: - - pos: -21.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4099 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -62.5,-12.5 - parent: 1 - type: Transform -- uid: 4100 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -74.5,-15.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4101 - type: AirlockExternal - components: - - rot: 3.141592653589793 rad - pos: -72.5,-12.5 - parent: 1 - type: Transform -- uid: 4102 - type: AirlockExternal - components: - - rot: 3.141592653589793 rad - pos: -74.5,-12.5 - parent: 1 - type: Transform -- uid: 4103 - type: FlashlightLantern - components: - - pos: -33.652264,-1.2000351 - parent: 1 - type: Transform -- uid: 4104 - type: FlashlightLantern - components: - - pos: -33.44914,-1.4031601 - parent: 1 - type: Transform -- uid: 4105 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -72.5,-15.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4106 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4107 - type: FirelockGlass - components: - - pos: -30.5,4.5 - parent: 1 - type: Transform -- uid: 4108 - type: FirelockGlass - components: - - pos: -30.5,5.5 - parent: 1 - type: Transform -- uid: 4109 - type: FirelockGlass - components: - - pos: -30.5,6.5 - parent: 1 - type: Transform -- uid: 4110 - type: FirelockGlass - components: - - pos: -42.5,4.5 - parent: 1 - type: Transform -- uid: 4111 - type: FirelockGlass - components: - - pos: -42.5,5.5 - parent: 1 - type: Transform -- uid: 4112 - type: FirelockGlass - components: - - pos: -42.5,6.5 - parent: 1 - type: Transform -- uid: 4113 - type: WallReinforced - components: - - pos: -39.5,8.5 - parent: 1 - type: Transform -- uid: 4114 - type: FirelockGlass - components: - - pos: -38.5,8.5 - parent: 1 - type: Transform -- uid: 4115 - type: FirelockGlass - components: - - pos: -37.5,8.5 - parent: 1 - type: Transform -- uid: 4116 - type: FirelockGlass - components: - - pos: -36.5,8.5 - parent: 1 - type: Transform -- uid: 4117 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -35.5,23.5 - parent: 1 - type: Transform -- uid: 4118 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -35.5,24.5 - parent: 1 - type: Transform -- uid: 4119 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -35.5,25.5 - parent: 1 - type: Transform -- uid: 4120 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -35.5,26.5 - parent: 1 - type: Transform -- uid: 4121 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -35.5,27.5 - parent: 1 - type: Transform -- uid: 4122 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -35.5,28.5 - parent: 1 - type: Transform -- uid: 4123 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -35.5,29.5 - parent: 1 - type: Transform -- uid: 4124 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -28.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4125 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4126 - type: FirelockGlass - components: - - pos: -59.5,-11.5 - parent: 1 - type: Transform -- uid: 4127 - type: WallReinforced - components: - - pos: -49.5,13.5 - parent: 1 - type: Transform -- uid: 4128 - type: Table - components: - - pos: -26.5,24.5 - parent: 1 - type: Transform -- uid: 4129 - type: Table - components: - - pos: -25.5,24.5 - parent: 1 - type: Transform -- uid: 4130 - type: Table - components: - - pos: -24.5,24.5 - parent: 1 - type: Transform -- uid: 4131 - type: Table - components: - - pos: -23.5,24.5 - parent: 1 - type: Transform -- uid: 4132 - type: Table - components: - - pos: -22.5,24.5 - parent: 1 - type: Transform -- uid: 4133 - type: RandomInstruments - components: - - pos: -26.5,24.5 - parent: 1 - type: Transform -- uid: 4134 - type: RandomInstruments - components: - - pos: -25.5,24.5 - parent: 1 - type: Transform -- uid: 4135 - type: RandomInstruments - components: - - pos: -24.5,24.5 - parent: 1 - type: Transform -- uid: 4136 - type: DawInstrumentMachineCircuitboard - components: - - pos: -23.476833,24.553741 - parent: 1 - type: Transform -- uid: 4137 - type: PianoInstrument - components: - - rot: 3.141592653589793 rad - pos: -29.5,27.5 - parent: 1 - type: Transform -- uid: 4138 - type: ElectricGuitarInstrument - components: - - pos: -22.497261,24.539072 - parent: 1 - type: Transform -- uid: 4139 - type: SpawnPointMusician - components: - - pos: -24.5,23.5 - parent: 1 - type: Transform -- uid: 4140 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -29.5,26.5 - parent: 1 - type: Transform -- uid: 4141 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -31.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4142 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -32.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4143 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -33.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4144 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -34.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4145 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -31.5,27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4146 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -32.5,27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4147 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -33.5,27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4148 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -31.5,25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4149 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -32.5,25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4150 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -33.5,25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4151 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -31.5,24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4152 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -32.5,24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4153 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -33.5,24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4154 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -34.5,24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4155 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -31.5,26.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4156 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -32.5,26.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4157 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -33.5,26.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4158 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -34.5,26.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4159 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,23.5 - parent: 1 - type: Transform -- uid: 4160 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,4.5 - parent: 1 - type: Transform -- uid: 4161 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,4.5 - parent: 1 - type: Transform -- uid: 4162 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: 21.5,4.5 - parent: 1 - type: Transform -- uid: 4163 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,3.5 - parent: 1 - type: Transform -- uid: 4164 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,3.5 - parent: 1 - type: Transform -- uid: 4165 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -16.5,3.5 - parent: 1 - type: Transform -- uid: 4166 - type: DisposalUnit - components: - - pos: -20.5,7.5 - parent: 1 - type: Transform -- uid: 4167 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,7.5 - parent: 1 - type: Transform -- uid: 4168 - type: DisposalUnit - components: - - pos: -35.5,7.5 - parent: 1 - type: Transform -- uid: 4169 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,7.5 - parent: 1 - type: Transform -- uid: 4170 - type: WallSolid - components: - - pos: -39.5,18.5 - parent: 1 - type: Transform -- uid: 4171 - type: WallSolidRust - components: - - pos: -39.5,15.5 - parent: 1 - type: Transform -- uid: 4172 - type: Girder - components: - - pos: -40.5,19.5 - parent: 1 - type: Transform -- uid: 4173 - type: WallSolid - components: - - pos: -40.5,20.5 - parent: 1 - type: Transform -- uid: 4174 - type: WallSolidRust - components: - - pos: -39.5,26.5 - parent: 1 - type: Transform -- uid: 4175 - type: WallSolidRust - components: - - pos: -39.5,29.5 - parent: 1 - type: Transform -- uid: 4176 - type: AirlockTheatreLocked - components: - - pos: -39.5,24.5 - parent: 1 - type: Transform -- uid: 4177 - type: WallSolid - components: - - pos: -39.5,25.5 - parent: 1 - type: Transform -- uid: 4178 - type: WallSolidRust - components: - - pos: -39.5,22.5 - parent: 1 - type: Transform -- uid: 4179 - type: WallSolid - components: - - pos: -39.5,27.5 - parent: 1 - type: Transform -- uid: 4180 - type: WallSolid - components: - - pos: -39.5,28.5 - parent: 1 - type: Transform -- uid: 4181 - type: WallSolidRust - components: - - pos: -43.5,26.5 - parent: 1 - type: Transform -- uid: 4182 - type: WallSolid - components: - - pos: -39.5,30.5 - parent: 1 - type: Transform -- uid: 4183 - type: WallSolidRust - components: - - pos: -42.5,22.5 - parent: 1 - type: Transform -- uid: 4184 - type: WallSolid - components: - - pos: -41.5,29.5 - parent: 1 - type: Transform -- uid: 4185 - type: WallSolidRust - components: - - pos: -43.5,24.5 - parent: 1 - type: Transform -- uid: 4186 - type: WallSolid - components: - - pos: -43.5,29.5 - parent: 1 - type: Transform -- uid: 4187 - type: WallSolid - components: - - pos: -43.5,28.5 - parent: 1 - type: Transform -- uid: 4188 - type: SpawnPointClown - components: - - pos: -41.5,27.5 - parent: 1 - type: Transform -- uid: 4189 - type: WallSolidRust - components: - - pos: -39.5,23.5 - parent: 1 - type: Transform -- uid: 4190 - type: WallSolid - components: - - pos: -43.5,25.5 - parent: 1 - type: Transform -- uid: 4191 - type: WallSolidRust - components: - - pos: -40.5,29.5 - parent: 1 - type: Transform -- uid: 4192 - type: WallSolid - components: - - pos: -43.5,23.5 - parent: 1 - type: Transform -- uid: 4193 - type: Girder - components: - - pos: -43.5,22.5 - parent: 1 - type: Transform -- uid: 4194 - type: WallSolidRust - components: - - pos: -42.5,29.5 - parent: 1 - type: Transform -- uid: 4195 - type: WallSolid - components: - - pos: -41.5,22.5 - parent: 1 - type: Transform -- uid: 4196 - type: WallSolid - components: - - pos: -40.5,22.5 - parent: 1 - type: Transform -- uid: 4197 - type: Girder - components: - - pos: -45.5,29.5 - parent: 1 - type: Transform -- uid: 4198 - type: WallSolidRust - components: - - pos: -49.5,30.5 - parent: 1 - type: Transform -- uid: 4199 - type: WallSolidRust - components: - - pos: -53.5,30.5 - parent: 1 - type: Transform -- uid: 4200 - type: WallReinforced - components: - - pos: -51.5,22.5 - parent: 1 - type: Transform -- uid: 4201 - type: WallSolid - components: - - pos: -51.5,30.5 - parent: 1 - type: Transform -- uid: 4202 - type: WallSolid - components: - - pos: -50.5,30.5 - parent: 1 - type: Transform -- uid: 4203 - type: WallSolidRust - components: - - pos: -52.5,30.5 - parent: 1 - type: Transform -- uid: 4204 - type: WallSolidRust - components: - - pos: -51.5,18.5 - parent: 1 - type: Transform -- uid: 4205 - type: WallSolid - components: - - pos: -51.5,20.5 - parent: 1 - type: Transform -- uid: 4206 - type: WallSolid - components: - - pos: -47.5,30.5 - parent: 1 - type: Transform -- uid: 4207 - type: Table - components: - - pos: -42.5,23.5 - parent: 1 - type: Transform -- uid: 4208 - type: Table - components: - - pos: -41.5,23.5 - parent: 1 - type: Transform -- uid: 4209 - type: Table - components: - - pos: -40.5,23.5 - parent: 1 - type: Transform -- uid: 4210 - type: Table - components: - - pos: -42.5,24.5 - parent: 1 - type: Transform -- uid: 4211 - type: Table - components: - - pos: -42.5,28.5 - parent: 1 - type: Transform -- uid: 4212 - type: Table - components: - - pos: -41.5,28.5 - parent: 1 - type: Transform -- uid: 4213 - type: Table - components: - - pos: -40.5,28.5 - parent: 1 - type: Transform -- uid: 4214 - type: Table - components: - - pos: -40.5,27.5 - parent: 1 - type: Transform -- uid: 4215 - type: SpawnPointMime - components: - - pos: -41.5,24.5 - parent: 1 - type: Transform -- uid: 4216 - type: CrayonMime - components: - - pos: -40.465607,23.673563 - parent: 1 - type: Transform -- uid: 4217 - type: FoodBurgerMime - components: - - pos: -40.99212,23.689188 - parent: 1 - type: Transform -- uid: 4218 - type: RubberStampMime - components: - - pos: -42.570244,23.611063 - parent: 1 - type: Transform -- uid: 4219 - type: FoodTartMime - components: - - pos: -41.632744,23.626688 - parent: 1 - type: Transform -- uid: 4220 - type: FoodBreadBaguette - components: - - pos: -42.46087,24.267313 - parent: 1 - type: Transform -- uid: 4221 - type: Paper - components: - - pos: -42.30462,24.611063 - parent: 1 - type: Transform -- uid: 4222 - type: Paper - components: - - pos: -42.46087,24.611063 - parent: 1 - type: Transform -- uid: 4223 - type: Paper - components: - - pos: -42.58587,24.564188 - parent: 1 - type: Transform -- uid: 4224 - type: Paper - components: - - pos: -42.632744,24.548563 - parent: 1 - type: Transform -- uid: 4225 - type: Paper - components: - - pos: -42.64837,24.517313 - parent: 1 - type: Transform -- uid: 4226 - type: Paper - components: - - pos: -42.476494,24.564188 - parent: 1 - type: Transform -- uid: 4227 - type: Paper - components: - - pos: -42.382744,24.579813 - parent: 1 - type: Transform -- uid: 4228 - type: Paper - components: - - pos: -42.49212,24.579813 - parent: 1 - type: Transform -- uid: 4229 - type: Paper - components: - - pos: -42.67962,24.501688 - parent: 1 - type: Transform -- uid: 4230 - type: BananaPhoneInstrument - components: - - pos: -40.3798,27.56435 - parent: 1 - type: Transform -- uid: 4231 - type: LampBanana - components: - - pos: -40.489174,28.7831 - parent: 1 - type: Transform -- uid: 4232 - type: ClothingBackpackClown - components: - - pos: -40.570293,28.017475 - parent: 1 - type: Transform -- uid: 4233 - type: RubberStampClown - components: - - pos: -41.031456,28.5956 - parent: 1 - type: Transform -- uid: 4234 - type: AirlockMaintTheatreLocked - components: - - pos: -43.5,27.5 - parent: 1 - type: Transform -- uid: 4235 - type: PosterContrabandClown - components: - - pos: -39.5,27.5 - parent: 1 - type: Transform -- uid: 4236 - type: FoodPieBananaCream - components: - - pos: -41.765266,28.567364 - parent: 1 - type: Transform -- uid: 4237 - type: FoodPieBananaCream - components: - - pos: -41.640266,28.567364 - parent: 1 - type: Transform -- uid: 4238 - type: FoodPieBananaCream - components: - - pos: -41.546516,28.645489 - parent: 1 - type: Transform -- uid: 4239 - type: FoodPieBananaCream - components: - - pos: -41.53089,28.645489 - parent: 1 - type: Transform -- uid: 4240 - type: FoodPieBananaCream - components: - - pos: -41.421516,28.723614 - parent: 1 - type: Transform -- uid: 4241 - type: LauncherCreamPie - components: - - pos: -42.484016,28.536114 - parent: 1 - type: Transform -- uid: 4242 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -24.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4243 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4244 - type: Poweredlight - components: - - pos: -34.5,29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4245 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -31.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4246 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4247 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -33.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4248 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4249 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4250 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4251 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4252 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -29.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4253 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -20.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4254 - type: CableApcExtension - components: - - pos: -22.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4255 - type: CableApcExtension - components: - - pos: -21.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4256 - type: CableApcExtension - components: - - pos: -20.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4257 - type: AirlockMaintLocked - components: - - pos: -44.5,29.5 - parent: 1 - type: Transform -- uid: 4258 - type: AirlockMaintLocked - components: - - pos: -40.5,21.5 - parent: 1 - type: Transform -- uid: 4259 - type: PaperOffice - components: - - pos: -45.35543,-6.2845764 - parent: 1 - type: Transform -- uid: 4260 - type: PaperOffice - components: - - pos: -45.38668,-6.3470764 - parent: 1 - type: Transform -- uid: 4261 - type: PaperOffice - components: - - pos: -45.38668,-6.3939514 - parent: 1 - type: Transform -- uid: 4262 - type: PaperOffice - components: - - pos: -45.23043,-6.5502014 - parent: 1 - type: Transform -- uid: 4263 - type: PaperOffice - components: - - pos: -45.48043,-6.6127014 - parent: 1 - type: Transform -- uid: 4264 - type: BoxFolderYellow - components: - - pos: -45.621056,-6.4408264 - parent: 1 - type: Transform -- uid: 4265 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4266 - type: WallReinforced - components: - - pos: -43.5,8.5 - parent: 1 - type: Transform -- uid: 4267 - type: WallReinforced - components: - - pos: -43.5,9.5 - parent: 1 - type: Transform -- uid: 4268 - type: WallReinforced - components: - - pos: -43.5,10.5 - parent: 1 - type: Transform -- uid: 4269 - type: WallReinforced - components: - - pos: -43.5,11.5 - parent: 1 - type: Transform -- uid: 4270 - type: WallReinforced - components: - - pos: -43.5,12.5 - parent: 1 - type: Transform -- uid: 4271 - type: WallReinforced - components: - - pos: -42.5,12.5 - parent: 1 - type: Transform -- uid: 4272 - type: WallReinforced - components: - - pos: -41.5,12.5 - parent: 1 - type: Transform -- uid: 4273 - type: WallReinforced - components: - - pos: -40.5,12.5 - parent: 1 - type: Transform -- uid: 4274 - type: SurveillanceCameraRouterMedical - components: - - pos: -42.5,11.5 - parent: 1 - type: Transform -- uid: 4275 - type: SurveillanceCameraRouterService - components: - - pos: -42.5,10.5 - parent: 1 - type: Transform -- uid: 4276 - type: SurveillanceCameraRouterEngineering - components: - - pos: -42.5,9.5 - parent: 1 - type: Transform -- uid: 4277 - type: SurveillanceCameraRouterScience - components: - - pos: -42.5,8.5 - parent: 1 - type: Transform -- uid: 4278 - type: SurveillanceCameraRouterGeneral - components: - - pos: -40.5,11.5 - parent: 1 - type: Transform -- uid: 4279 - type: SurveillanceCameraRouterSupply - components: - - pos: -40.5,10.5 - parent: 1 - type: Transform -- uid: 4280 - type: SurveillanceCameraRouterSecurity - components: - - pos: -40.5,9.5 - parent: 1 - type: Transform -- uid: 4281 - type: SurveillanceCameraRouterCommand - components: - - pos: -40.5,8.5 - parent: 1 - type: Transform -- uid: 4282 - type: WallReinforced - components: - - pos: 29.5,28.5 - parent: 1 - type: Transform -- uid: 4283 - type: WallSolid - components: - - pos: -43.5,17.5 - parent: 1 - type: Transform -- uid: 4284 - type: CableMV - components: - - pos: -41.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4285 - type: WallSolidRust - components: - - pos: -41.5,16.5 - parent: 1 - type: Transform -- uid: 4286 - type: WallSolid - components: - - pos: -43.5,19.5 - parent: 1 - type: Transform -- uid: 4287 - type: WallSolid - components: - - pos: -42.5,16.5 - parent: 1 - type: Transform -- uid: 4288 - type: WallSolidRust - components: - - pos: -46.5,17.5 - parent: 1 - type: Transform -- uid: 4289 - type: WallSolid - components: - - pos: -40.5,16.5 - parent: 1 - type: Transform -- uid: 4290 - type: WallSolid - components: - - pos: -44.5,16.5 - parent: 1 - type: Transform -- uid: 4291 - type: WallSolid - components: - - pos: -45.5,16.5 - parent: 1 - type: Transform -- uid: 4292 - type: Girder - components: - - pos: -46.5,16.5 - parent: 1 - type: Transform -- uid: 4293 - type: WallSolid - components: - - pos: -49.5,20.5 - parent: 1 - type: Transform -- uid: 4294 - type: Girder - components: - - pos: -43.5,16.5 - parent: 1 - type: Transform -- uid: 4295 - type: WallSolid - components: - - pos: -49.5,18.5 - parent: 1 - type: Transform -- uid: 4296 - type: WallSolid - components: - - pos: -49.5,17.5 - parent: 1 - type: Transform -- uid: 4297 - type: Girder - components: - - pos: -43.5,18.5 - parent: 1 - type: Transform -- uid: 4298 - type: WallSolid - components: - - pos: -48.5,16.5 - parent: 1 - type: Transform -- uid: 4299 - type: WallSolid - components: - - pos: -47.5,16.5 - parent: 1 - type: Transform -- uid: 4300 - type: WallSolidRust - components: - - pos: -46.5,20.5 - parent: 1 - type: Transform -- uid: 4301 - type: WallSolid - components: - - pos: -46.5,18.5 - parent: 1 - type: Transform -- uid: 4302 - type: WallSolidRust - components: - - pos: -49.5,16.5 - parent: 1 - type: Transform -- uid: 4303 - type: Girder - components: - - pos: -49.5,19.5 - parent: 1 - type: Transform -- uid: 4304 - type: WallSolidRust - components: - - pos: -39.5,13.5 - parent: 1 - type: Transform -- uid: 4305 - type: WallSolid - components: - - pos: -42.5,13.5 - parent: 1 - type: Transform -- uid: 4306 - type: Grille - components: - - pos: -48.5,25.5 - parent: 1 - type: Transform -- uid: 4307 - type: WallSolidRust - components: - - pos: -55.5,23.5 - parent: 1 - type: Transform -- uid: 4308 - type: ReinforcedWindow - components: - - pos: -48.5,23.5 - parent: 1 - type: Transform -- uid: 4309 - type: ReinforcedWindow - components: - - pos: -46.5,23.5 - parent: 1 - type: Transform -- uid: 4310 - type: ReinforcedWindow - components: - - pos: -46.5,24.5 - parent: 1 - type: Transform -- uid: 4311 - type: ReinforcedWindow - components: - - pos: -46.5,25.5 - parent: 1 - type: Transform -- uid: 4312 - type: Grille - components: - - pos: -46.5,25.5 - parent: 1 - type: Transform -- uid: 4313 - type: WallReinforced - components: - - pos: -49.5,26.5 - parent: 1 - type: Transform -- uid: 4314 - type: Grille - components: - - pos: -48.5,23.5 - parent: 1 - type: Transform -- uid: 4315 - type: Grille - components: - - pos: -48.5,24.5 - parent: 1 - type: Transform -- uid: 4316 - type: Grille - components: - - pos: -46.5,23.5 - parent: 1 - type: Transform -- uid: 4317 - type: Grille - components: - - pos: -46.5,24.5 - parent: 1 - type: Transform -- uid: 4318 - type: WallSolidRust - components: - - pos: -51.5,21.5 - parent: 1 - type: Transform -- uid: 4319 - type: WallReinforced - components: - - pos: -52.5,26.5 - parent: 1 - type: Transform -- uid: 4320 - type: WallReinforced - components: - - pos: -53.5,26.5 - parent: 1 - type: Transform -- uid: 4321 - type: WallReinforced - components: - - pos: -53.5,25.5 - parent: 1 - type: Transform -- uid: 4322 - type: WallSolidRust - components: - - pos: -51.5,17.5 - parent: 1 - type: Transform -- uid: 4323 - type: WallSolidRust - components: - - pos: -51.5,14.5 - parent: 1 - type: Transform -- uid: 4324 - type: WallSolid - components: - - pos: -51.5,16.5 - parent: 1 - type: Transform -- uid: 4325 - type: WallReinforced - components: - - pos: -52.5,22.5 - parent: 1 - type: Transform -- uid: 4326 - type: ReinforcedWindow - components: - - pos: -48.5,25.5 - parent: 1 - type: Transform -- uid: 4327 - type: WallReinforced - components: - - pos: -51.5,26.5 - parent: 1 - type: Transform -- uid: 4328 - type: CableMV - components: - - pos: -40.5,15.5 - parent: 1 - type: Transform -- uid: 4329 - type: CableMV - components: - - pos: -41.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4330 - type: WallReinforced - components: - - pos: -49.5,22.5 - parent: 1 - type: Transform -- uid: 4331 - type: WallReinforced - components: - - pos: -50.5,22.5 - parent: 1 - type: Transform -- uid: 4332 - type: WallReinforced - components: - - pos: -47.5,22.5 - parent: 1 - type: Transform -- uid: 4333 - type: WallReinforced - components: - - pos: -53.5,22.5 - parent: 1 - type: Transform -- uid: 4334 - type: Rack - components: - - pos: -40.5,18.5 - parent: 1 - type: Transform -- uid: 4335 - type: Rack - components: - - pos: -40.5,17.5 - parent: 1 - type: Transform -- uid: 4336 - type: Rack - components: - - pos: -45.5,17.5 - parent: 1 - type: Transform -- uid: 4337 - type: Rack - components: - - pos: -47.5,17.5 - parent: 1 - type: Transform -- uid: 4338 - type: AirlockEngineeringLocked - components: - - pos: -42.5,14.5 - parent: 1 - type: Transform -- uid: 4339 - type: SubstationBasic - components: - - pos: -40.5,15.5 - parent: 1 - type: Transform -- uid: 4340 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -40.5,20.5 - parent: 1 - type: Transform -- uid: 4341 - type: APCBasic - components: - - pos: -41.5,12.5 - parent: 1 - type: Transform -- uid: 4342 - type: CableApcExtension - components: - - pos: -41.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4343 - type: CableApcExtension - components: - - pos: -41.5,13.5 - parent: 1 - type: Transform -- uid: 4344 - type: CableApcExtension - components: - - pos: -41.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4345 - type: CableApcExtension - components: - - pos: -41.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4346 - type: CableApcExtension - components: - - pos: -41.5,10.5 - parent: 1 - type: Transform -- uid: 4347 - type: CableApcExtension - components: - - pos: -41.5,9.5 - parent: 1 - type: Transform -- uid: 4348 - type: CableApcExtension - components: - - pos: -41.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4349 - type: CableMV - components: - - pos: -41.5,13.5 - parent: 1 - type: Transform -- uid: 4350 - type: CableMV - components: - - pos: -41.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4351 - type: CableMV - components: - - pos: -42.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4352 - type: CableMV - components: - - pos: -43.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4353 - type: CableMV - components: - - pos: -44.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4354 - type: CableMV - components: - - pos: -45.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4355 - type: CableMV - components: - - pos: -46.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4356 - type: CableMV - components: - - pos: -47.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4357 - type: CableMV - components: - - pos: -48.5,14.5 - parent: 1 - type: Transform -- uid: 4358 - type: CableMV - components: - - pos: -49.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4359 - type: CableMV - components: - - pos: -50.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4360 - type: CableMV - components: - - pos: -50.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4361 - type: CableMV - components: - - pos: -50.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4362 - type: CableMV - components: - - pos: -50.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4363 - type: CableMV - components: - - pos: -50.5,18.5 - parent: 1 - type: Transform -- uid: 4364 - type: CableMV - components: - - pos: -50.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4365 - type: CableMV - components: - - pos: -50.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4366 - type: CableMV - components: - - pos: -50.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4367 - type: CableMV - components: - - pos: -49.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4368 - type: CableMV - components: - - pos: -48.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4369 - type: CableMV - components: - - pos: -47.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4370 - type: CableMV - components: - - pos: -46.5,21.5 - parent: 1 - type: Transform -- uid: 4371 - type: CableMV - components: - - pos: -45.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4372 - type: CableMV - components: - - pos: -44.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4373 - type: CableMV - components: - - pos: -43.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4374 - type: CableMV - components: - - pos: -42.5,21.5 - parent: 1 - type: Transform -- uid: 4375 - type: CableMV - components: - - pos: -41.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4376 - type: CableMV - components: - - pos: -40.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4377 - type: CableMV - components: - - pos: -40.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4378 - type: CableHV - components: - - pos: -38.5,21.5 - parent: 1 - type: Transform -- uid: 4379 - type: CableHV - components: - - pos: -39.5,21.5 - parent: 1 - type: Transform -- uid: 4380 - type: CableHV - components: - - pos: -40.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4381 - type: CableHV - components: - - pos: -41.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4382 - type: CableHV - components: - - pos: -42.5,21.5 - parent: 1 - type: Transform -- uid: 4383 - type: CableHV - components: - - pos: -43.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4384 - type: CableHV - components: - - pos: -44.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4385 - type: CableHV - components: - - pos: -45.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4386 - type: CableHV - components: - - pos: -46.5,21.5 - parent: 1 - type: Transform -- uid: 4387 - type: CableHV - components: - - pos: -47.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4388 - type: CableHV - components: - - pos: -48.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4389 - type: CableHV - components: - - pos: -49.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4390 - type: CableHV - components: - - pos: -50.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4391 - type: CableHV - components: - - pos: -50.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4392 - type: CableHV - components: - - pos: -50.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4393 - type: CableHV - components: - - pos: -50.5,18.5 - parent: 1 - type: Transform -- uid: 4394 - type: CableHV - components: - - pos: -50.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4395 - type: CableHV - components: - - pos: -50.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4396 - type: CableHV - components: - - pos: -50.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4397 - type: CableHV - components: - - pos: -50.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4398 - type: CableHV - components: - - pos: -49.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4399 - type: CableHV - components: - - pos: -48.5,14.5 - parent: 1 - type: Transform -- uid: 4400 - type: CableHV - components: - - pos: -47.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4401 - type: CableHV - components: - - pos: -46.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4402 - type: CableHV - components: - - pos: -45.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4403 - type: CableHV - components: - - pos: -44.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4404 - type: CableHV - components: - - pos: -43.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4405 - type: CableHV - components: - - pos: -42.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4406 - type: CableHV - components: - - pos: -41.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4407 - type: CableHV - components: - - pos: -41.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4408 - type: CableHV - components: - - pos: -40.5,15.5 - parent: 1 - type: Transform -- uid: 4409 - type: CableHV - components: - - pos: -44.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4410 - type: CableHV - components: - - pos: -44.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4411 - type: CableHV - components: - - pos: -44.5,11.5 - parent: 1 - type: Transform -- uid: 4412 - type: CableHV - components: - - pos: -44.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4413 - type: CableHV - components: - - pos: -44.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4414 - type: CableHV - components: - - pos: -44.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4415 - type: CableHV - components: - - pos: -44.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4416 - type: CableHV - components: - - pos: -44.5,6.5 - parent: 1 - type: Transform -- uid: 4417 - type: CableHV - components: - - pos: -44.5,5.5 - parent: 1 - type: Transform -- uid: 4418 - type: CableHV - components: - - pos: -43.5,5.5 - parent: 1 - type: Transform -- uid: 4419 - type: CableHV - components: - - pos: -42.5,5.5 - parent: 1 - type: Transform -- uid: 4420 - type: CableHV - components: - - pos: -41.5,5.5 - parent: 1 - type: Transform -- uid: 4421 - type: CableHV - components: - - pos: -40.5,5.5 - parent: 1 - type: Transform -- uid: 4422 - type: CableHV - components: - - pos: -39.5,5.5 - parent: 1 - type: Transform -- uid: 4423 - type: CableHV - components: - - pos: -38.5,5.5 - parent: 1 - type: Transform -- uid: 4424 - type: CableApcExtension - components: - - pos: -41.5,7.5 - parent: 1 - type: Transform -- uid: 4425 - type: CableApcExtension - components: - - pos: -41.5,6.5 - parent: 1 - type: Transform -- uid: 4426 - type: CableApcExtension - components: - - pos: -41.5,5.5 - parent: 1 - type: Transform -- uid: 4427 - type: CableApcExtension - components: - - pos: -42.5,5.5 - parent: 1 - type: Transform -- uid: 4428 - type: CableApcExtension - components: - - pos: -43.5,5.5 - parent: 1 - type: Transform -- uid: 4429 - type: CableApcExtension - components: - - pos: -44.5,5.5 - parent: 1 - type: Transform -- uid: 4430 - type: CableMV - components: - - pos: -47.5,5.5 - parent: 1 - type: Transform -- uid: 4431 - type: CableApcExtension - components: - - pos: -48.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4432 - type: CableMV - components: - - pos: -46.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4433 - type: CableApcExtension - components: - - pos: -47.5,8.5 - parent: 1 - type: Transform -- uid: 4434 - type: CableMV - components: - - pos: -46.5,5.5 - parent: 1 - type: Transform -- uid: 4435 - type: CableApcExtension - components: - - pos: -42.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4436 - type: CableApcExtension - components: - - pos: -43.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4437 - type: CableApcExtension - components: - - pos: -44.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4438 - type: CableApcExtension - components: - - pos: -45.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4439 - type: CableApcExtension - components: - - pos: -46.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4440 - type: CableApcExtension - components: - - pos: -47.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4441 - type: CableApcExtension - components: - - pos: -48.5,14.5 - parent: 1 - type: Transform -- uid: 4442 - type: CableApcExtension - components: - - pos: -49.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4443 - type: CableApcExtension - components: - - pos: -40.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4444 - type: CableApcExtension - components: - - pos: -40.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4445 - type: CableApcExtension - components: - - pos: -41.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4446 - type: CableApcExtension - components: - - pos: -42.5,21.5 - parent: 1 - type: Transform -- uid: 4447 - type: CableApcExtension - components: - - pos: -43.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4448 - type: CableApcExtension - components: - - pos: -44.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4449 - type: CableApcExtension - components: - - pos: -45.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4450 - type: CableApcExtension - components: - - pos: -46.5,21.5 - parent: 1 - type: Transform -- uid: 4451 - type: CableApcExtension - components: - - pos: -47.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4452 - type: CableApcExtension - components: - - pos: -48.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4453 - type: CableApcExtension - components: - - pos: -49.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4454 - type: CableApcExtension - components: - - pos: -44.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4455 - type: CableApcExtension - components: - - pos: -44.5,23.5 - parent: 1 - type: Transform -- uid: 4456 - type: CableApcExtension - components: - - pos: -44.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4457 - type: CableApcExtension - components: - - pos: -44.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4458 - type: CableApcExtension - components: - - pos: -44.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4459 - type: CableApcExtension - components: - - pos: -44.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4460 - type: CableApcExtension - components: - - pos: -39.5,21.5 - parent: 1 - type: Transform -- uid: 4461 - type: CableApcExtension - components: - - pos: -38.5,21.5 - parent: 1 - type: Transform -- uid: 4462 - type: CableApcExtension - components: - - pos: -37.5,21.5 - parent: 1 - type: Transform -- uid: 4463 - type: CableApcExtension - components: - - pos: -37.5,20.5 - parent: 1 - type: Transform -- uid: 4464 - type: CableApcExtension - components: - - pos: -37.5,19.5 - parent: 1 - type: Transform -- uid: 4465 - type: CableApcExtension - components: - - pos: -37.5,18.5 - parent: 1 - type: Transform -- uid: 4466 - type: CableApcExtension - components: - - pos: -37.5,17.5 - parent: 1 - type: Transform -- uid: 4467 - type: CableApcExtension - components: - - pos: -37.5,16.5 - parent: 1 - type: Transform -- uid: 4468 - type: CableApcExtension - components: - - pos: -37.5,15.5 - parent: 1 - type: Transform -- uid: 4469 - type: CableApcExtension - components: - - pos: -37.5,14.5 - parent: 1 - type: Transform -- uid: 4470 - type: CableApcExtension - components: - - pos: -37.5,13.5 - parent: 1 - type: Transform -- uid: 4471 - type: CableApcExtension - components: - - pos: -37.5,12.5 - parent: 1 - type: Transform -- uid: 4472 - type: CableApcExtension - components: - - pos: -37.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4473 - type: CableApcExtension - components: - - pos: -37.5,10.5 - parent: 1 - type: Transform -- uid: 4474 - type: CableApcExtension - components: - - pos: -37.5,9.5 - parent: 1 - type: Transform -- uid: 4475 - type: CableApcExtension - components: - - pos: -37.5,8.5 - parent: 1 - type: Transform -- uid: 4476 - type: CableApcExtension - components: - - pos: -37.5,22.5 - parent: 1 - type: Transform -- uid: 4477 - type: CableApcExtension - components: - - pos: -37.5,23.5 - parent: 1 - type: Transform -- uid: 4478 - type: CableApcExtension - components: - - pos: -37.5,24.5 - parent: 1 - type: Transform -- uid: 4479 - type: CableApcExtension - components: - - pos: -37.5,25.5 - parent: 1 - type: Transform -- uid: 4480 - type: CableApcExtension - components: - - pos: -37.5,26.5 - parent: 1 - type: Transform -- uid: 4481 - type: CableApcExtension - components: - - pos: -37.5,27.5 - parent: 1 - type: Transform -- uid: 4482 - type: CableApcExtension - components: - - pos: -37.5,28.5 - parent: 1 - type: Transform -- uid: 4483 - type: CableApcExtension - components: - - pos: -37.5,29.5 - parent: 1 - type: Transform -- uid: 4484 - type: CableApcExtension - components: - - pos: -37.5,30.5 - parent: 1 - type: Transform -- uid: 4485 - type: CableApcExtension - components: - - pos: -42.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4486 - type: CableApcExtension - components: - - pos: -42.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4487 - type: CableApcExtension - components: - - pos: -42.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4488 - type: CableApcExtension - components: - - pos: -45.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4489 - type: CableApcExtension - components: - - pos: -45.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4490 - type: CableApcExtension - components: - - pos: -45.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4491 - type: CableApcExtension - components: - - pos: -48.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4492 - type: CableApcExtension - components: - - pos: -48.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4493 - type: CableApcExtension - components: - - pos: -48.5,18.5 - parent: 1 - type: Transform -- uid: 4494 - type: ShuttersNormal - components: - - pos: -48.5,20.5 - parent: 1 - type: Transform -- uid: 4495 - type: ShuttersNormal - components: - - pos: -47.5,20.5 - parent: 1 - type: Transform -- uid: 4496 - type: ShuttersNormal - components: - - pos: -45.5,19.5 - parent: 1 - type: Transform -- uid: 4497 - type: ShuttersNormal - components: - - pos: -44.5,19.5 - parent: 1 - type: Transform -- uid: 4498 - type: ShuttersNormalOpen - components: - - pos: -42.5,19.5 - parent: 1 - type: Transform -- uid: 4499 - type: ShuttersNormal - components: - - pos: -41.5,19.5 - parent: 1 - type: Transform -- uid: 4500 - type: WallSolid - components: - - pos: -49.5,-1.5 - parent: 1 - type: Transform -- uid: 4501 - type: Girder - components: - - pos: -49.5,-6.5 - parent: 1 - type: Transform -- uid: 4502 - type: Girder - components: - - pos: -49.5,-3.5 - parent: 1 - type: Transform -- uid: 4503 - type: WallSolidRust - components: - - pos: -49.5,-4.5 - parent: 1 - type: Transform -- uid: 4504 - type: WallSolidRust - components: - - pos: -49.5,-5.5 - parent: 1 - type: Transform -- uid: 4505 - type: WallSolidRust - components: - - pos: -49.5,-2.5 - parent: 1 - type: Transform -- uid: 4506 - type: WallSolid - components: - - pos: -49.5,-7.5 - parent: 1 - type: Transform -- uid: 4507 - type: WallSolidRust - components: - - pos: -49.5,-8.5 - parent: 1 - type: Transform -- uid: 4508 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -52.5,3.5 - parent: 1 - type: Transform -- uid: 4509 - type: WallSolid - components: - - pos: -54.5,3.5 - parent: 1 - type: Transform -- uid: 4510 - type: WallSolid - components: - - pos: -55.5,3.5 - parent: 1 - type: Transform -- uid: 4511 - type: WallSolid - components: - - pos: -49.5,0.5 - parent: 1 - type: Transform -- uid: 4512 - type: Girder - components: - - pos: -50.5,-8.5 - parent: 1 - type: Transform -- uid: 4513 - type: WallSolid - components: - - pos: -51.5,0.5 - parent: 1 - type: Transform -- uid: 4514 - type: WallSolidRust - components: - - pos: -55.5,0.5 - parent: 1 - type: Transform -- uid: 4515 - type: WallSolidRust - components: - - pos: -54.5,-8.5 - parent: 1 - type: Transform -- uid: 4516 - type: WallSolid - components: - - pos: -54.5,0.5 - parent: 1 - type: Transform -- uid: 4517 - type: WallSolidRust - components: - - pos: -52.5,0.5 - parent: 1 - type: Transform -- uid: 4518 - type: Girder - components: - - pos: -55.5,-0.5 - parent: 1 - type: Transform -- uid: 4519 - type: WallSolid - components: - - pos: -55.5,-1.5 - parent: 1 - type: Transform -- uid: 4520 - type: WallSolidRust - components: - - pos: -55.5,-2.5 - parent: 1 - type: Transform -- uid: 4521 - type: WallSolid - components: - - pos: -55.5,-3.5 - parent: 1 - type: Transform -- uid: 4522 - type: WallSolid - components: - - pos: -55.5,-4.5 - parent: 1 - type: Transform -- uid: 4523 - type: InflatableWall - components: - - pos: -55.5,-5.5 - parent: 1 - type: Transform -- uid: 4524 - type: CableApcExtension - components: - - pos: -56.5,-7.5 - parent: 1 - type: Transform -- uid: 4525 - type: WallSolid - components: - - pos: -55.5,-7.5 - parent: 1 - type: Transform -- uid: 4526 - type: WallSolid - components: - - pos: -55.5,-8.5 - parent: 1 - type: Transform -- uid: 4527 - type: InflatableWall - components: - - pos: -50.5,0.5 - parent: 1 - type: Transform -- uid: 4528 - type: WallSolidRust - components: - - pos: -49.5,-0.5 - parent: 1 - type: Transform -- uid: 4529 - type: WallSolid - components: - - pos: -52.5,-8.5 - parent: 1 - type: Transform -- uid: 4530 - type: WallSolidRust - components: - - pos: -51.5,-8.5 - parent: 1 - type: Transform -- uid: 4531 - type: WallSolidRust - components: - - pos: -53.5,0.5 - parent: 1 - type: Transform -- uid: 4532 - type: ReinforcedWindow - components: - - pos: -49.5,-11.5 - parent: 1 - type: Transform -- uid: 4533 - type: WallReinforced - components: - - pos: -50.5,-11.5 - parent: 1 - type: Transform -- uid: 4534 - type: WallReinforced - components: - - pos: -51.5,-11.5 - parent: 1 - type: Transform -- uid: 4535 - type: WallReinforced - components: - - pos: -52.5,-11.5 - parent: 1 - type: Transform -- uid: 4536 - type: WallReinforced - components: - - pos: -53.5,-11.5 - parent: 1 - type: Transform -- uid: 4537 - type: WallReinforced - components: - - pos: -54.5,-11.5 - parent: 1 - type: Transform -- uid: 4538 - type: WallReinforced - components: - - pos: -55.5,-11.5 - parent: 1 - type: Transform -- uid: 4539 - type: WallReinforced - components: - - pos: -56.5,-11.5 - parent: 1 - type: Transform -- uid: 4540 - type: ReinforcedWindow - components: - - pos: -61.5,-8.5 - parent: 1 - type: Transform -- uid: 4541 - type: ReinforcedWindow - components: - - pos: -60.5,-8.5 - parent: 1 - type: Transform -- uid: 4542 - type: WallReinforced - components: - - pos: -48.5,22.5 - parent: 1 - type: Transform -- uid: 4543 - type: WallReinforced - components: - - pos: -50.5,13.5 - parent: 1 - type: Transform -- uid: 4544 - type: WallReinforced - components: - - pos: -48.5,13.5 - parent: 1 - type: Transform -- uid: 4545 - type: WallReinforced - components: - - pos: -45.5,7.5 - parent: 1 - type: Transform -- uid: 4546 - type: WallReinforced - components: - - pos: -45.5,13.5 - parent: 1 - type: Transform -- uid: 4547 - type: WallReinforced - components: - - pos: -55.5,11.5 - parent: 1 - type: Transform -- uid: 4548 - type: WallReinforced - components: - - pos: -46.5,13.5 - parent: 1 - type: Transform -- uid: 4549 - type: WallReinforced - components: - - pos: -55.5,9.5 - parent: 1 - type: Transform -- uid: 4550 - type: WallReinforced - components: - - pos: -45.5,12.5 - parent: 1 - type: Transform -- uid: 4551 - type: WallSolid - components: - - pos: -55.5,28.5 - parent: 1 - type: Transform -- uid: 4552 - type: WallSolidRust - components: - - pos: -55.5,29.5 - parent: 1 - type: Transform -- uid: 4553 - type: WallSolid - components: - - pos: -55.5,30.5 - parent: 1 - type: Transform -- uid: 4554 - type: WallSolid - components: - - pos: -54.5,30.5 - parent: 1 - type: Transform -- uid: 4555 - type: WallSolidRust - components: - - pos: -54.5,22.5 - parent: 1 - type: Transform -- uid: 4556 - type: WallReinforced - components: - - pos: -48.5,11.5 - parent: 1 - type: Transform -- uid: 4557 - type: WallReinforced - components: - - pos: -48.5,12.5 - parent: 1 - type: Transform -- uid: 4558 - type: ReinforcedWindow - components: - - pos: -54.5,7.5 - parent: 1 - type: Transform -- uid: 4559 - type: ReinforcedWindow - components: - - pos: -53.5,7.5 - parent: 1 - type: Transform -- uid: 4560 - type: WallReinforced - components: - - pos: -55.5,10.5 - parent: 1 - type: Transform -- uid: 4561 - type: WallReinforced - components: - - pos: -45.5,11.5 - parent: 1 - type: Transform -- uid: 4562 - type: WallReinforced - components: - - pos: -55.5,8.5 - parent: 1 - type: Transform -- uid: 4563 - type: WallReinforced - components: - - pos: -45.5,9.5 - parent: 1 - type: Transform -- uid: 4564 - type: WallReinforced - components: - - pos: -45.5,8.5 - parent: 1 - type: Transform -- uid: 4565 - type: WallReinforced - components: - - pos: -47.5,13.5 - parent: 1 - type: Transform -- uid: 4566 - type: WallReinforced - components: - - pos: -51.5,13.5 - parent: 1 - type: Transform -- uid: 4567 - type: WallReinforced - components: - - pos: -54.5,11.5 - parent: 1 - type: Transform -- uid: 4568 - type: WallReinforced - components: - - pos: -53.5,11.5 - parent: 1 - type: Transform -- uid: 4569 - type: WallReinforced - components: - - pos: -52.5,11.5 - parent: 1 - type: Transform -- uid: 4570 - type: CableMV - components: - - pos: -44.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4571 - type: WallSolid - components: - - pos: -46.5,27.5 - parent: 1 - type: Transform -- uid: 4572 - type: WallReinforced - components: - - pos: -46.5,26.5 - parent: 1 - type: Transform -- uid: 4573 - type: WallReinforced - components: - - pos: -47.5,26.5 - parent: 1 - type: Transform -- uid: 4574 - type: WallReinforced - components: - - pos: -48.5,26.5 - parent: 1 - type: Transform -- uid: 4575 - type: WallSolid - components: - - pos: -51.5,19.5 - parent: 1 - type: Transform -- uid: 4576 - type: ReinforcedWindow - components: - - pos: -48.5,24.5 - parent: 1 - type: Transform -- uid: 4577 - type: WallReinforced - components: - - pos: -55.5,7.5 - parent: 1 - type: Transform -- uid: 4578 - type: WallReinforced - components: - - pos: -45.5,10.5 - parent: 1 - type: Transform -- uid: 4579 - type: WallSolid - components: - - pos: -55.5,22.5 - parent: 1 - type: Transform -- uid: 4580 - type: WallSolidRust - components: - - pos: -46.5,30.5 - parent: 1 - type: Transform -- uid: 4581 - type: WallSolid - components: - - pos: -46.5,29.5 - parent: 1 - type: Transform -- uid: 4582 - type: WallSolidRust - components: - - pos: -46.5,28.5 - parent: 1 - type: Transform -- uid: 4583 - type: WallReinforced - components: - - pos: -46.5,22.5 - parent: 1 - type: Transform -- uid: 4584 - type: WallReinforced - components: - - pos: -53.5,24.5 - parent: 1 - type: Transform -- uid: 4585 - type: WallReinforced - components: - - pos: -53.5,23.5 - parent: 1 - type: Transform -- uid: 4586 - type: WallSolid - components: - - pos: -55.5,26.5 - parent: 1 - type: Transform -- uid: 4587 - type: WallSolid - components: - - pos: -55.5,25.5 - parent: 1 - type: Transform -- uid: 4588 - type: WallSolidRust - components: - - pos: -54.5,26.5 - parent: 1 - type: Transform -- uid: 4589 - type: WallSolidRust - components: - - pos: -55.5,27.5 - parent: 1 - type: Transform -- uid: 4590 - type: AirlockMaintLocked - components: - - pos: -51.5,15.5 - parent: 1 - type: Transform -- uid: 4591 - type: WallSolidRust - components: - - pos: -55.5,17.5 - parent: 1 - type: Transform -- uid: 4592 - type: WallReinforced - components: - - pos: -51.5,12.5 - parent: 1 - type: Transform -- uid: 4593 - type: WallReinforced - components: - - pos: -51.5,11.5 - parent: 1 - type: Transform -- uid: 4594 - type: ReinforcedWindow - components: - - pos: -52.5,7.5 - parent: 1 - type: Transform -- uid: 4595 - type: Grille - components: - - pos: -53.5,7.5 - parent: 1 - type: Transform -- uid: 4596 - type: Grille - components: - - pos: -54.5,7.5 - parent: 1 - type: Transform -- uid: 4597 - type: ReinforcedWindow - components: - - pos: -49.5,7.5 - parent: 1 - type: Transform -- uid: 4598 - type: WallReinforced - components: - - pos: -48.5,7.5 - parent: 1 - type: Transform -- uid: 4599 - type: Grille - components: - - pos: -52.5,7.5 - parent: 1 - type: Transform -- uid: 4600 - type: EmergencyLight - components: - - pos: -48.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 4601 - type: Grille - components: - - pos: -49.5,7.5 - parent: 1 - type: Transform -- uid: 4602 - type: CableMV - components: - - pos: -44.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4603 - type: CableMV - components: - - pos: -44.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4604 - type: CableMV - components: - - pos: -44.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4605 - type: CableMV - components: - - pos: -44.5,23.5 - parent: 1 - type: Transform -- uid: 4606 - type: CableMV - components: - - pos: -45.5,27.5 - parent: 1 - type: Transform -- uid: 4607 - type: CableMV - components: - - pos: -46.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4608 - type: CableApcExtension - components: - - pos: -57.5,-8.5 - parent: 1 - type: Transform -- uid: 4609 - type: CableMV - components: - - pos: -51.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4610 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -51.5,14.5 - parent: 1 - type: Transform -- uid: 4611 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -46.5,27.5 - parent: 1 - type: Transform -- uid: 4612 - type: CableApcExtension - components: - - pos: -46.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4613 - type: CableApcExtension - components: - - pos: -47.5,27.5 - parent: 1 - type: Transform -- uid: 4614 - type: CableApcExtension - components: - - pos: -48.5,27.5 - parent: 1 - type: Transform -- uid: 4615 - type: CableApcExtension - components: - - pos: -49.5,27.5 - parent: 1 - type: Transform -- uid: 4616 - type: CableApcExtension - components: - - pos: -50.5,27.5 - parent: 1 - type: Transform -- uid: 4617 - type: CableApcExtension - components: - - pos: -51.5,27.5 - parent: 1 - type: Transform -- uid: 4618 - type: CableApcExtension - components: - - pos: -52.5,27.5 - parent: 1 - type: Transform -- uid: 4619 - type: CableApcExtension - components: - - pos: -53.5,27.5 - parent: 1 - type: Transform -- uid: 4620 - type: CableApcExtension - components: - - pos: -48.5,29.5 - parent: 1 - type: Transform -- uid: 4621 - type: CableApcExtension - components: - - pos: -48.5,28.5 - parent: 1 - type: Transform -- uid: 4622 - type: CableApcExtension - components: - - pos: -48.5,30.5 - parent: 1 - type: Transform -- uid: 4623 - type: CableApcExtension - components: - - pos: -48.5,31.5 - parent: 1 - type: Transform -- uid: 4624 - type: CableApcExtension - components: - - pos: -48.5,32.5 - parent: 1 - type: Transform -- uid: 4625 - type: CableApcExtension - components: - - pos: -44.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4626 - type: CableApcExtension - components: - - pos: -44.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4627 - type: CableApcExtension - components: - - pos: -44.5,30.5 - parent: 1 - type: Transform -- uid: 4628 - type: CableApcExtension - components: - - pos: -44.5,31.5 - parent: 1 - type: Transform -- uid: 4629 - type: CableApcExtension - components: - - pos: -44.5,32.5 - parent: 1 - type: Transform -- uid: 4630 - type: CableApcExtension - components: - - pos: -37.5,31.5 - parent: 1 - type: Transform -- uid: 4631 - type: CableApcExtension - components: - - pos: -37.5,32.5 - parent: 1 - type: Transform -- uid: 4632 - type: CableApcExtension - components: - - pos: -38.5,32.5 - parent: 1 - type: Transform -- uid: 4633 - type: CableApcExtension - components: - - pos: -39.5,32.5 - parent: 1 - type: Transform -- uid: 4634 - type: CableApcExtension - components: - - pos: -40.5,32.5 - parent: 1 - type: Transform -- uid: 4635 - type: CableApcExtension - components: - - pos: -43.5,32.5 - parent: 1 - type: Transform -- uid: 4636 - type: CableApcExtension - components: - - pos: -42.5,32.5 - parent: 1 - type: Transform -- uid: 4637 - type: CableApcExtension - components: - - pos: -29.5,31.5 - parent: 1 - type: Transform -- uid: 4638 - type: CableApcExtension - components: - - pos: -29.5,32.5 - parent: 1 - type: Transform -- uid: 4639 - type: CableApcExtension - components: - - pos: -47.5,32.5 - parent: 1 - type: Transform -- uid: 4640 - type: CableApcExtension - components: - - pos: -30.5,32.5 - parent: 1 - type: Transform -- uid: 4641 - type: CableApcExtension - components: - - pos: -31.5,32.5 - parent: 1 - type: Transform -- uid: 4642 - type: CableApcExtension - components: - - pos: -32.5,32.5 - parent: 1 - type: Transform -- uid: 4643 - type: CableApcExtension - components: - - pos: -33.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4644 - type: CableApcExtension - components: - - pos: -34.5,32.5 - parent: 1 - type: Transform -- uid: 4645 - type: CableApcExtension - components: - - pos: -35.5,32.5 - parent: 1 - type: Transform -- uid: 4646 - type: CableApcExtension - components: - - pos: -28.5,32.5 - parent: 1 - type: Transform -- uid: 4647 - type: CableApcExtension - components: - - pos: -27.5,32.5 - parent: 1 - type: Transform -- uid: 4648 - type: CableApcExtension - components: - - pos: -26.5,32.5 - parent: 1 - type: Transform -- uid: 4649 - type: CableApcExtension - components: - - pos: -25.5,32.5 - parent: 1 - type: Transform -- uid: 4650 - type: CableApcExtension - components: - - pos: -46.5,32.5 - parent: 1 - type: Transform -- uid: 4651 - type: CableApcExtension - components: - - pos: -49.5,32.5 - parent: 1 - type: Transform -- uid: 4652 - type: CableApcExtension - components: - - pos: -50.5,32.5 - parent: 1 - type: Transform -- uid: 4653 - type: CableApcExtension - components: - - pos: -51.5,32.5 - parent: 1 - type: Transform -- uid: 4654 - type: CableApcExtension - components: - - pos: -52.5,32.5 - parent: 1 - type: Transform -- uid: 4655 - type: CableApcExtension - components: - - pos: -53.5,32.5 - parent: 1 - type: Transform -- uid: 4656 - type: CableApcExtension - components: - - pos: -54.5,32.5 - parent: 1 - type: Transform -- uid: 4657 - type: CableApcExtension - components: - - pos: -55.5,32.5 - parent: 1 - type: Transform -- uid: 4658 - type: CableApcExtension - components: - - pos: -52.5,14.5 - parent: 1 - type: Transform -- uid: 4659 - type: CableApcExtension - components: - - pos: -53.5,14.5 - parent: 1 - type: Transform -- uid: 4660 - type: CableApcExtension - components: - - pos: -54.5,14.5 - parent: 1 - type: Transform -- uid: 4661 - type: CableApcExtension - components: - - pos: -55.5,14.5 - parent: 1 - type: Transform -- uid: 4662 - type: CableApcExtension - components: - - pos: -56.5,14.5 - parent: 1 - type: Transform -- uid: 4663 - type: CableApcExtension - components: - - pos: -57.5,14.5 - parent: 1 - type: Transform -- uid: 4664 - type: CableApcExtension - components: - - pos: -57.5,15.5 - parent: 1 - type: Transform -- uid: 4665 - type: CableApcExtension - components: - - pos: -57.5,15.5 - parent: 1 - type: Transform -- uid: 4666 - type: CableApcExtension - components: - - pos: -57.5,16.5 - parent: 1 - type: Transform -- uid: 4667 - type: CableApcExtension - components: - - pos: -57.5,17.5 - parent: 1 - type: Transform -- uid: 4668 - type: CableApcExtension - components: - - pos: -57.5,18.5 - parent: 1 - type: Transform -- uid: 4669 - type: CableApcExtension - components: - - pos: -57.5,19.5 - parent: 1 - type: Transform -- uid: 4670 - type: CableApcExtension - components: - - pos: -57.5,20.5 - parent: 1 - type: Transform -- uid: 4671 - type: CableApcExtension - components: - - pos: -57.5,21.5 - parent: 1 - type: Transform -- uid: 4672 - type: CableApcExtension - components: - - pos: -57.5,22.5 - parent: 1 - type: Transform -- uid: 4673 - type: CableApcExtension - components: - - pos: -57.5,23.5 - parent: 1 - type: Transform -- uid: 4674 - type: CableApcExtension - components: - - pos: -57.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4675 - type: CableApcExtension - components: - - pos: -57.5,25.5 - parent: 1 - type: Transform -- uid: 4676 - type: CableApcExtension - components: - - pos: -56.5,32.5 - parent: 1 - type: Transform -- uid: 4677 - type: CableApcExtension - components: - - pos: -57.5,32.5 - parent: 1 - type: Transform -- uid: 4678 - type: CableApcExtension - components: - - pos: -57.5,31.5 - parent: 1 - type: Transform -- uid: 4679 - type: CableApcExtension - components: - - pos: -57.5,30.5 - parent: 1 - type: Transform -- uid: 4680 - type: CableApcExtension - components: - - pos: -57.5,29.5 - parent: 1 - type: Transform -- uid: 4681 - type: CableApcExtension - components: - - pos: -51.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4682 - type: CableApcExtension - components: - - pos: -53.5,15.5 - parent: 1 - type: Transform -- uid: 4683 - type: CableApcExtension - components: - - pos: -53.5,16.5 - parent: 1 - type: Transform -- uid: 4684 - type: CableApcExtension - components: - - pos: -53.5,17.5 - parent: 1 - type: Transform -- uid: 4685 - type: CableApcExtension - components: - - pos: -53.5,18.5 - parent: 1 - type: Transform -- uid: 4686 - type: CableApcExtension - components: - - pos: -53.5,19.5 - parent: 1 - type: Transform -- uid: 4687 - type: CableApcExtension - components: - - pos: -53.5,20.5 - parent: 1 - type: Transform -- uid: 4688 - type: CableApcExtension - components: - - pos: -57.5,13.5 - parent: 1 - type: Transform -- uid: 4689 - type: CableApcExtension - components: - - pos: -57.5,12.5 - parent: 1 - type: Transform -- uid: 4690 - type: CableApcExtension - components: - - pos: -57.5,11.5 - parent: 1 - type: Transform -- uid: 4691 - type: CableApcExtension - components: - - pos: -57.5,10.5 - parent: 1 - type: Transform -- uid: 4692 - type: CableApcExtension - components: - - pos: -57.5,9.5 - parent: 1 - type: Transform -- uid: 4693 - type: CableApcExtension - components: - - pos: -57.5,8.5 - parent: 1 - type: Transform -- uid: 4694 - type: APCBasic - components: - - pos: -48.5,11.5 - parent: 1 - type: Transform -- uid: 4695 - type: CableMV - components: - - pos: -44.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4696 - type: CableMV - components: - - pos: -44.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4697 - type: CableMV - components: - - pos: -44.5,11.5 - parent: 1 - type: Transform -- uid: 4698 - type: CableMV - components: - - pos: -44.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4699 - type: CableMV - components: - - pos: -44.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4700 - type: CableMV - components: - - pos: -44.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4701 - type: CableMV - components: - - pos: -44.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4702 - type: CableMV - components: - - pos: -44.5,6.5 - parent: 1 - type: Transform -- uid: 4703 - type: CableMV - components: - - pos: -44.5,5.5 - parent: 1 - type: Transform -- uid: 4704 - type: CableMV - components: - - pos: -47.5,6.5 - parent: 1 - type: Transform -- uid: 4705 - type: CableApcExtension - components: - - pos: -48.5,10.5 - parent: 1 - type: Transform -- uid: 4706 - type: CableApcExtension - components: - - pos: -47.5,9.5 - parent: 1 - type: Transform -- uid: 4707 - type: CableMV - components: - - pos: -45.5,5.5 - parent: 1 - type: Transform -- uid: 4708 - type: CableMV - components: - - pos: -47.5,7.5 - parent: 1 - type: Transform -- uid: 4709 - type: CableMV - components: - - pos: -47.5,8.5 - parent: 1 - type: Transform -- uid: 4710 - type: CableMV - components: - - pos: -47.5,9.5 - parent: 1 - type: Transform -- uid: 4711 - type: CableMV - components: - - pos: -47.5,10.5 - parent: 1 - type: Transform -- uid: 4712 - type: CableMV - components: - - pos: -48.5,10.5 - parent: 1 - type: Transform -- uid: 4713 - type: CableMV - components: - - pos: -48.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4714 - type: CableApcExtension - components: - - pos: -47.5,7.5 - parent: 1 - type: Transform -- uid: 4715 - type: CableApcExtension - components: - - pos: -47.5,6.5 - parent: 1 - type: Transform -- uid: 4716 - type: CableApcExtension - components: - - pos: -47.5,5.5 - parent: 1 - type: Transform -- uid: 4717 - type: CableApcExtension - components: - - pos: -48.5,5.5 - parent: 1 - type: Transform -- uid: 4718 - type: CableApcExtension - components: - - pos: -46.5,5.5 - parent: 1 - type: Transform -- uid: 4719 - type: CableApcExtension - components: - - pos: -49.5,5.5 - parent: 1 - type: Transform -- uid: 4720 - type: CableApcExtension - components: - - pos: -50.5,5.5 - parent: 1 - type: Transform -- uid: 4721 - type: CableApcExtension - components: - - pos: -51.5,5.5 - parent: 1 - type: Transform -- uid: 4722 - type: CableApcExtension - components: - - pos: -52.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4723 - type: CableApcExtension - components: - - pos: -53.5,5.5 - parent: 1 - type: Transform -- uid: 4724 - type: CableApcExtension - components: - - pos: -54.5,5.5 - parent: 1 - type: Transform -- uid: 4725 - type: CableApcExtension - components: - - pos: -57.5,4.5 - parent: 1 - type: Transform -- uid: 4726 - type: CableApcExtension - components: - - pos: -57.5,5.5 - parent: 1 - type: Transform -- uid: 4727 - type: CableApcExtension - components: - - pos: -58.5,5.5 - parent: 1 - type: Transform -- uid: 4728 - type: CableApcExtension - components: - - pos: -48.5,9.5 - parent: 1 - type: Transform -- uid: 4729 - type: CableApcExtension - components: - - pos: -49.5,9.5 - parent: 1 - type: Transform -- uid: 4730 - type: CableApcExtension - components: - - pos: -50.5,9.5 - parent: 1 - type: Transform -- uid: 4731 - type: CableApcExtension - components: - - pos: -51.5,9.5 - parent: 1 - type: Transform -- uid: 4732 - type: CableApcExtension - components: - - pos: -52.5,9.5 - parent: 1 - type: Transform -- uid: 4733 - type: CableApcExtension - components: - - pos: -53.5,9.5 - parent: 1 - type: Transform -- uid: 4734 - type: CableApcExtension - components: - - pos: -50.5,10.5 - parent: 1 - type: Transform -- uid: 4735 - type: CableApcExtension - components: - - pos: -50.5,11.5 - parent: 1 - type: Transform -- uid: 4736 - type: CableApcExtension - components: - - pos: -46.5,10.5 - parent: 1 - type: Transform -- uid: 4737 - type: CableApcExtension - components: - - pos: -46.5,9.5 - parent: 1 - type: Transform -- uid: 4738 - type: CableApcExtension - components: - - pos: -46.5,11.5 - parent: 1 - type: Transform -- uid: 4739 - type: CableMV - components: - - pos: -46.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4740 - type: CableMV - components: - - pos: -46.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4741 - type: AirlockMaintLocked - components: - - pos: -44.5,7.5 - parent: 1 - type: Transform -- uid: 4742 - type: CableApcExtension - components: - - pos: -73.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4743 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4744 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -59.5,-12.5 - parent: 1 - type: Transform -- uid: 4745 - type: AtmosDeviceFanTiny - components: - - pos: -74.5,-15.5 - parent: 1 - type: Transform -- uid: 4746 - type: ExtinguisherCabinet - components: - - rot: 3.141592653589793 rad - pos: -67.5,-12.5 - parent: 1 - type: Transform -- uid: 4747 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -63.5,-12.5 - parent: 1 - type: Transform - - devices: - - 4912 - - 4913 - - 4126 - type: DeviceList -- uid: 4748 - type: Grille - components: - - pos: -74.5,7.5 - parent: 1 - type: Transform -- uid: 4749 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -58.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4750 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -74.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4751 - type: AirlockExternal - components: - - rot: 3.141592653589793 rad - pos: -66.5,-12.5 - parent: 1 - type: Transform -- uid: 4752 - type: GasPipeStraight - components: - - pos: -64.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4753 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4754 - type: AirlockExternal - components: - - rot: 3.141592653589793 rad - pos: -64.5,-12.5 - parent: 1 - type: Transform -- uid: 4755 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -61.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4756 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -66.5,-15.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4757 - type: Grille - components: - - pos: -38.5,-8.5 - parent: 1 - type: Transform -- uid: 4758 - type: PlasticFlapsAirtightClear - components: - - pos: -35.5,-11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4759 - type: CableApcExtension - components: - - pos: -66.5,-9.5 - parent: 1 - type: Transform -- uid: 4760 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -60.5,-12.5 - parent: 1 - type: Transform -- uid: 4761 - type: AtmosDeviceFanTiny - components: - - pos: -72.5,-15.5 - parent: 1 - type: Transform -- uid: 4762 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 1 - type: Transform -- uid: 4763 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 1 - type: Transform -- uid: 4764 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -29.5,-6.5 - parent: 1 - type: Transform -- uid: 4765 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 1 - type: Transform -- uid: 4766 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 1 - type: Transform -- uid: 4767 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 1 - type: Transform -- uid: 4768 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-2.5 - parent: 1 - type: Transform -- uid: 4769 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4770 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4771 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-8.5 - parent: 1 - type: Transform -- uid: 4772 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-7.5 - parent: 1 - type: Transform -- uid: 4773 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-8.5 - parent: 1 - type: Transform -- uid: 4774 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-8.5 - parent: 1 - type: Transform -- uid: 4775 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4776 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4777 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4778 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4779 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -69.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4780 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4781 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -73.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4782 - type: GasPipeTJunction - components: - - pos: -64.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4783 - type: CableApcExtension - components: - - pos: -65.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4784 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4785 - type: CableApcExtension - components: - - pos: -73.5,-11.5 - parent: 1 - type: Transform -- uid: 4786 - type: CableApcExtension - components: - - pos: -62.5,-10.5 - parent: 1 - type: Transform -- uid: 4787 - type: CableApcExtension - components: - - pos: -63.5,-10.5 - parent: 1 - type: Transform -- uid: 4788 - type: CableApcExtension - components: - - pos: -73.5,4.5 - parent: 1 - type: Transform -- uid: 4789 - type: CableApcExtension - components: - - pos: -73.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4790 - type: CableApcExtension - components: - - pos: -66.5,4.5 - parent: 1 - type: Transform -- uid: 4791 - type: CableApcExtension - components: - - pos: -66.5,-10.5 - parent: 1 - type: Transform -- uid: 4792 - type: WallReinforced - components: - - pos: -72.5,2.5 - parent: 1 - type: Transform -- uid: 4793 - type: WallReinforced - components: - - pos: -74.5,2.5 - parent: 1 - type: Transform -- uid: 4794 - type: CableApcExtension - components: - - pos: -65.5,-11.5 - parent: 1 - type: Transform -- uid: 4795 - type: CableApcExtension - components: - - pos: -65.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4796 - type: CableApcExtension - components: - - pos: -73.5,-9.5 - parent: 1 - type: Transform -- uid: 4797 - type: CableApcExtension - components: - - pos: -67.5,-10.5 - parent: 1 - type: Transform -- uid: 4798 - type: CableApcExtension - components: - - pos: -68.5,-10.5 - parent: 1 - type: Transform -- uid: 4799 - type: WallReinforced - components: - - pos: -59.5,3.5 - parent: 1 - type: Transform -- uid: 4800 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -65.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4801 - type: Intercom - components: - - rot: 3.141592653589793 rad - pos: -73.5,-12.5 - parent: 1 - type: Transform -- uid: 4802 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -74.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4803 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4804 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4805 - type: GasPipeTJunction - components: - - pos: -65.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4806 - type: CableApcExtension - components: - - pos: -73.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4807 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -57.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4808 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4809 - type: WallReinforced - components: - - pos: -67.5,2.5 - parent: 1 - type: Transform -- uid: 4810 - type: WallReinforced - components: - - pos: -65.5,2.5 - parent: 1 - type: Transform -- uid: 4811 - type: CableApcExtension - components: - - pos: -75.5,-10.5 - parent: 1 - type: Transform -- uid: 4812 - type: CableApcExtension - components: - - pos: -76.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4813 - type: CableApcExtension - components: - - pos: -73.5,-10.5 - parent: 1 - type: Transform -- uid: 4814 - type: CableApcExtension - components: - - pos: -74.5,-10.5 - parent: 1 - type: Transform -- uid: 4815 - type: CableApcExtension - components: - - pos: -77.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4816 - type: Grille - components: - - pos: -65.5,-13.5 - parent: 1 - type: Transform -- uid: 4817 - type: ReinforcedWindow - components: - - pos: -59.5,-6.5 - parent: 1 - type: Transform -- uid: 4818 - type: ReinforcedWindow - components: - - pos: -59.5,-5.5 - parent: 1 - type: Transform -- uid: 4819 - type: ReinforcedWindow - components: - - pos: -59.5,-4.5 - parent: 1 - type: Transform -- uid: 4820 - type: ReinforcedWindow - components: - - pos: -59.5,-3.5 - parent: 1 - type: Transform -- uid: 4821 - type: ReinforcedWindow - components: - - pos: -59.5,-2.5 - parent: 1 - type: Transform -- uid: 4822 - type: ReinforcedWindow - components: - - pos: -59.5,-1.5 - parent: 1 - type: Transform -- uid: 4823 - type: ReinforcedWindow - components: - - pos: -59.5,-0.5 - parent: 1 - type: Transform -- uid: 4824 - type: ReinforcedWindow - components: - - pos: -59.5,0.5 - parent: 1 - type: Transform -- uid: 4825 - type: ReinforcedWindow - components: - - pos: -59.5,1.5 - parent: 1 - type: Transform -- uid: 4826 - type: ReinforcedWindow - components: - - pos: -59.5,2.5 - parent: 1 - type: Transform -- uid: 4827 - type: Grille - components: - - pos: -59.5,2.5 - parent: 1 - type: Transform -- uid: 4828 - type: Grille - components: - - pos: -59.5,1.5 - parent: 1 - type: Transform -- uid: 4829 - type: Grille - components: - - pos: -59.5,0.5 - parent: 1 - type: Transform -- uid: 4830 - type: Grille - components: - - pos: -59.5,-0.5 - parent: 1 - type: Transform -- uid: 4831 - type: Grille - components: - - pos: -59.5,-1.5 - parent: 1 - type: Transform -- uid: 4832 - type: Grille - components: - - pos: -59.5,-2.5 - parent: 1 - type: Transform -- uid: 4833 - type: Grille - components: - - pos: -59.5,-3.5 - parent: 1 - type: Transform -- uid: 4834 - type: Grille - components: - - pos: -59.5,-4.5 - parent: 1 - type: Transform -- uid: 4835 - type: Grille - components: - - pos: -59.5,-5.5 - parent: 1 - type: Transform -- uid: 4836 - type: Grille - components: - - pos: -59.5,-6.5 - parent: 1 - type: Transform -- uid: 4837 - type: ReinforcedWindow - components: - - pos: -60.5,3.5 - parent: 1 - type: Transform -- uid: 4838 - type: ReinforcedWindow - components: - - pos: -61.5,3.5 - parent: 1 - type: Transform -- uid: 4839 - type: ReinforcedWindow - components: - - pos: -62.5,3.5 - parent: 1 - type: Transform -- uid: 4840 - type: ReinforcedWindow - components: - - pos: -63.5,3.5 - parent: 1 - type: Transform -- uid: 4841 - type: ReinforcedWindow - components: - - pos: -64.5,3.5 - parent: 1 - type: Transform -- uid: 4842 - type: CableApcExtension - components: - - pos: -69.5,-10.5 - parent: 1 - type: Transform -- uid: 4843 - type: WallReinforced - components: - - pos: -65.5,3.5 - parent: 1 - type: Transform -- uid: 4844 - type: AirlockExternalGlassShuttleArrivals - components: - - pos: -73.5,2.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4845 - type: ReinforcedWindow - components: - - pos: -68.5,3.5 - parent: 1 - type: Transform -- uid: 4846 - type: ReinforcedWindow - components: - - pos: -69.5,3.5 - parent: 1 - type: Transform -- uid: 4847 - type: ReinforcedWindow - components: - - pos: -70.5,3.5 - parent: 1 - type: Transform -- uid: 4848 - type: ReinforcedWindow - components: - - pos: -71.5,3.5 - parent: 1 - type: Transform -- uid: 4849 - type: WallReinforced - components: - - pos: -74.5,3.5 - parent: 1 - type: Transform -- uid: 4850 - type: AirlockExternalGlass - components: - - pos: -66.5,3.5 - parent: 1 - type: Transform -- uid: 4851 - type: AtmosDeviceFanTiny - components: - - pos: -66.5,2.5 - parent: 1 - type: Transform -- uid: 4852 - type: ReinforcedWindow - components: - - pos: -75.5,3.5 - parent: 1 - type: Transform -- uid: 4853 - type: Grille - components: - - pos: -75.5,3.5 - parent: 1 - type: Transform -- uid: 4854 - type: AtmosDeviceFanTiny - components: - - pos: -73.5,2.5 - parent: 1 - type: Transform -- uid: 4855 - type: SpawnPointLatejoin - components: - - pos: -73.5,5.5 - parent: 1 - type: Transform -- uid: 4856 - type: WallReinforced - components: - - pos: -72.5,3.5 - parent: 1 - type: Transform -- uid: 4857 - type: Grille - components: - - pos: -71.5,3.5 - parent: 1 - type: Transform -- uid: 4858 - type: Grille - components: - - pos: -70.5,3.5 - parent: 1 - type: Transform -- uid: 4859 - type: Grille - components: - - pos: -69.5,3.5 - parent: 1 - type: Transform -- uid: 4860 - type: Grille - components: - - pos: -68.5,3.5 - parent: 1 - type: Transform -- uid: 4861 - type: SpawnPointLatejoin - components: - - pos: -66.5,5.5 - parent: 1 - type: Transform -- uid: 4862 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-13.5 - parent: 1 - type: Transform -- uid: 4863 - type: ReinforcedWindow - components: - - pos: -59.5,-7.5 - parent: 1 - type: Transform -- uid: 4864 - type: Grille - components: - - pos: -64.5,3.5 - parent: 1 - type: Transform -- uid: 4865 - type: Grille - components: - - pos: -63.5,3.5 - parent: 1 - type: Transform -- uid: 4866 - type: Grille - components: - - pos: -62.5,3.5 - parent: 1 - type: Transform -- uid: 4867 - type: Grille - components: - - pos: -61.5,3.5 - parent: 1 - type: Transform -- uid: 4868 - type: Grille - components: - - pos: -60.5,3.5 - parent: 1 - type: Transform -- uid: 4869 - type: CableApcExtension - components: - - pos: -71.5,-10.5 - parent: 1 - type: Transform -- uid: 4870 - type: CableApcExtension - components: - - pos: -64.5,-10.5 - parent: 1 - type: Transform -- uid: 4871 - type: AirlockExternalGlass - components: - - pos: -73.5,3.5 - parent: 1 - type: Transform -- uid: 4872 - type: CableApcExtension - components: - - pos: -70.5,-10.5 - parent: 1 - type: Transform -- uid: 4873 - type: WallReinforced - components: - - pos: -67.5,3.5 - parent: 1 - type: Transform -- uid: 4874 - type: CableApcExtension - components: - - pos: -65.5,-10.5 - parent: 1 - type: Transform -- uid: 4875 - type: CableApcExtension - components: - - pos: -72.5,-10.5 - parent: 1 - type: Transform -- uid: 4876 - type: AirlockExternalGlassShuttleArrivals - components: - - pos: -66.5,2.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4877 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4878 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -72.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4879 - type: CableApcExtension - components: - - pos: -57.5,-10.5 - parent: 1 - type: Transform -- uid: 4880 - type: CableApcExtension - components: - - pos: -58.5,-10.5 - parent: 1 - type: Transform -- uid: 4881 - type: CableApcExtension - components: - - pos: -59.5,-10.5 - parent: 1 - type: Transform -- uid: 4882 - type: ReinforcedWindow - components: - - pos: -65.5,-13.5 - parent: 1 - type: Transform -- uid: 4883 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -73.5,-15.5 - parent: 1 - type: Transform -- uid: 4884 - type: Grille - components: - - pos: -73.5,-13.5 - parent: 1 - type: Transform -- uid: 4885 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -71.5,-12.5 - parent: 1 - type: Transform -- uid: 4886 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -71.5,-13.5 - parent: 1 - type: Transform -- uid: 4887 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -67.5,-12.5 - parent: 1 - type: Transform -- uid: 4888 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -67.5,-13.5 - parent: 1 - type: Transform -- uid: 4889 - type: Grille - components: - - pos: -59.5,-7.5 - parent: 1 - type: Transform -- uid: 4890 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -71.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 4891 - type: ReinforcedWindow - components: - - pos: -68.5,-8.5 - parent: 1 - type: Transform -- uid: 4892 - type: ReinforcedWindow - components: - - pos: -69.5,-8.5 - parent: 1 - type: Transform -- uid: 4893 - type: ReinforcedWindow - components: - - pos: -71.5,-8.5 - parent: 1 - type: Transform -- uid: 4894 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -57.5,-12.5 - parent: 1 - type: Transform -- uid: 4895 - type: Grille - components: - - pos: -64.5,-8.5 - parent: 1 - type: Transform -- uid: 4896 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-12.5 - parent: 1 - type: Transform -- uid: 4897 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -65.5,-15.5 - parent: 1 - type: Transform -- uid: 4898 - type: Grille - components: - - pos: -73.5,-14.5 - parent: 1 - type: Transform -- uid: 4899 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -69.5,-12.5 - parent: 1 - type: Transform -- uid: 4900 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -68.5,-12.5 - parent: 1 - type: Transform -- uid: 4901 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -63.5,-14.5 - parent: 1 - type: Transform -- uid: 4902 - type: Grille - components: - - pos: -61.5,-8.5 - parent: 1 - type: Transform -- uid: 4903 - type: ReinforcedWindow - components: - - pos: -62.5,-8.5 - parent: 1 - type: Transform -- uid: 4904 - type: CableApcExtension - components: - - pos: -65.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4905 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -74.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4906 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4907 - type: WallReinforced - components: - - pos: -59.5,-8.5 - parent: 1 - type: Transform -- uid: 4908 - type: Grille - components: - - pos: -69.5,-8.5 - parent: 1 - type: Transform -- uid: 4909 - type: Grille - components: - - pos: -68.5,-8.5 - parent: 1 - type: Transform -- uid: 4910 - type: Grille - components: - - pos: -63.5,-8.5 - parent: 1 - type: Transform -- uid: 4911 - type: ReinforcedWindow - components: - - pos: -70.5,-8.5 - parent: 1 - type: Transform -- uid: 4912 - type: FirelockGlass - components: - - pos: -59.5,-9.5 - parent: 1 - type: Transform -- uid: 4913 - type: FirelockGlass - components: - - pos: -59.5,-10.5 - parent: 1 - type: Transform -- uid: 4914 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -69.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4915 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4916 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -61.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4917 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4918 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4919 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4920 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -72.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4921 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -73.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4922 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -70.5,-12.5 - parent: 1 - type: Transform -- uid: 4923 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -69.5,-12.5 - parent: 1 - type: Transform -- uid: 4924 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -63.5,-12.5 - parent: 1 - type: Transform -- uid: 4925 - type: Grille - components: - - pos: -62.5,-8.5 - parent: 1 - type: Transform -- uid: 4926 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -70.5,-12.5 - parent: 1 - type: Transform -- uid: 4927 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -63.5,-13.5 - parent: 1 - type: Transform -- uid: 4928 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -67.5,-15.5 - parent: 1 - type: Transform -- uid: 4929 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -65.5,-12.5 - parent: 1 - type: Transform -- uid: 4930 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -60.5,-12.5 - parent: 1 - type: Transform -- uid: 4931 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4932 - type: Grille - components: - - pos: -65.5,-14.5 - parent: 1 - type: Transform -- uid: 4933 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-14.5 - parent: 1 - type: Transform -- uid: 4934 - type: Grille - components: - - pos: -75.5,-8.5 - parent: 1 - type: Transform -- uid: 4935 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -61.5,-12.5 - parent: 1 - type: Transform -- uid: 4936 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-15.5 - parent: 1 - type: Transform -- uid: 4937 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -58.5,-12.5 - parent: 1 - type: Transform -- uid: 4938 - type: ReinforcedWindow - components: - - pos: -65.5,-14.5 - parent: 1 - type: Transform -- uid: 4939 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -73.5,-12.5 - parent: 1 - type: Transform -- uid: 4940 - type: WallReinforced - components: - - pos: -76.5,-8.5 - parent: 1 - type: Transform -- uid: 4941 - type: WallReinforced - components: - - pos: -76.5,-12.5 - parent: 1 - type: Transform -- uid: 4942 - type: WallReinforced - components: - - pos: -76.5,-9.5 - parent: 1 - type: Transform -- uid: 4943 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -57.5,-12.5 - parent: 1 - type: Transform -- uid: 4944 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -58.5,-12.5 - parent: 1 - type: Transform -- uid: 4945 - type: WallReinforced - components: - - pos: -76.5,-11.5 - parent: 1 - type: Transform -- uid: 4946 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -62.5,-12.5 - parent: 1 - type: Transform -- uid: 4947 - type: ReinforcedWindow - components: - - pos: -75.5,-8.5 - parent: 1 - type: Transform -- uid: 4948 - type: WallReinforced - components: - - pos: -77.5,-11.5 - parent: 1 - type: Transform -- uid: 4949 - type: WallReinforced - components: - - pos: -78.5,-11.5 - parent: 1 - type: Transform -- uid: 4950 - type: WallReinforced - components: - - pos: -74.5,-8.5 - parent: 1 - type: Transform -- uid: 4951 - type: AirlockExternalGlass - components: - - rot: 3.141592653589793 rad - pos: -66.5,-8.5 - parent: 1 - type: Transform -- uid: 4952 - type: AirlockExternalGlass - components: - - rot: 3.141592653589793 rad - pos: -73.5,-8.5 - parent: 1 - type: Transform -- uid: 4953 - type: WallReinforced - components: - - pos: -72.5,-7.5 - parent: 1 - type: Transform -- uid: 4954 - type: WallReinforced - components: - - pos: -67.5,-8.5 - parent: 1 - type: Transform -- uid: 4955 - type: WallReinforced - components: - - pos: -74.5,-7.5 - parent: 1 - type: Transform -- uid: 4956 - type: WallReinforced - components: - - pos: -72.5,-8.5 - parent: 1 - type: Transform -- uid: 4957 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4958 - type: CableApcExtension - components: - - pos: -60.5,-10.5 - parent: 1 - type: Transform -- uid: 4959 - type: WallReinforced - components: - - pos: -65.5,-8.5 - parent: 1 - type: Transform -- uid: 4960 - type: WallReinforced - components: - - pos: -65.5,-7.5 - parent: 1 - type: Transform -- uid: 4961 - type: ReinforcedWindow - components: - - pos: -63.5,-8.5 - parent: 1 - type: Transform -- uid: 4962 - type: WallReinforced - components: - - pos: -77.5,-9.5 - parent: 1 - type: Transform -- uid: 4963 - type: WallReinforced - components: - - pos: -67.5,-7.5 - parent: 1 - type: Transform -- uid: 4964 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 3.141592653589793 rad - pos: -73.5,-7.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4965 - type: WallReinforced - components: - - pos: -78.5,-9.5 - parent: 1 - type: Transform -- uid: 4966 - type: ReinforcedWindow - components: - - pos: -64.5,-8.5 - parent: 1 - type: Transform -- uid: 4967 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -63.5,-15.5 - parent: 1 - type: Transform -- uid: 4968 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -68.5,-12.5 - parent: 1 - type: Transform -- uid: 4969 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -71.5,-15.5 - parent: 1 - type: Transform -- uid: 4970 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -71.5,-14.5 - parent: 1 - type: Transform -- uid: 4971 - type: Grille - components: - - pos: -70.5,-8.5 - parent: 1 - type: Transform -- uid: 4972 - type: AtmosDeviceFanTiny - components: - - pos: -73.5,-7.5 - parent: 1 - type: Transform -- uid: 4973 - type: AtmosDeviceFanTiny - components: - - pos: -66.5,-7.5 - parent: 1 - type: Transform -- uid: 4974 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4975 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4976 - type: Grille - components: - - pos: -71.5,-8.5 - parent: 1 - type: Transform -- uid: 4977 - type: Grille - components: - - pos: -60.5,-8.5 - parent: 1 - type: Transform -- uid: 4978 - type: ReinforcedWindow - components: - - pos: -73.5,-14.5 - parent: 1 - type: Transform -- uid: 4979 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -67.5,-14.5 - parent: 1 - type: Transform -- uid: 4980 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4981 - type: WallReinforced - components: - - pos: -56.5,-12.5 - parent: 1 - type: Transform -- uid: 4982 - type: ReinforcedWindow - components: - - pos: -73.5,-13.5 - parent: 1 - type: Transform -- uid: 4983 - type: Poweredlight - components: - - pos: -74.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4984 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 3.141592653589793 rad - pos: -66.5,-7.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 5026 - type: Catwalk - components: - - pos: -66.5,11.5 - parent: 1 - type: Transform -- uid: 5032 - type: ToySpawner - components: - - pos: -31.5,25.5 - parent: 1 - type: Transform -- uid: 5033 - type: Catwalk - components: - - pos: -60.5,8.5 - parent: 1 - type: Transform -- uid: 5039 - type: Catwalk - components: - - pos: -67.5,9.5 - parent: 1 - type: Transform -- uid: 5040 - type: Catwalk - components: - - pos: -62.5,8.5 - parent: 1 - type: Transform -- uid: 5041 - type: ToySpawner - components: - - pos: -72.5,10.5 - parent: 1 - type: Transform -- uid: 5045 - type: ToySpawner - components: - - pos: -69.5,13.5 - parent: 1 - type: Transform -- uid: 5046 - type: ToySpawner - components: - - pos: -33.5,28.5 - parent: 1 - type: Transform -- uid: 5047 - type: CableMV - components: - - pos: -88.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5048 - type: ToySpawner - components: - - pos: -72.5,12.5 - parent: 1 - type: Transform -- uid: 5052 - type: ToySpawner - components: - - pos: -69.5,11.5 - parent: 1 - type: Transform -- uid: 5053 - type: Catwalk - components: - - pos: -65.5,8.5 - parent: 1 - type: Transform -- uid: 5069 - type: ReinforcedWindow - components: - - pos: -76.5,4.5 - parent: 1 - type: Transform -- uid: 5070 - type: ReinforcedWindow - components: - - pos: -76.5,5.5 - parent: 1 - type: Transform -- uid: 5071 - type: ReinforcedWindow - components: - - pos: -76.5,6.5 - parent: 1 - type: Transform -- uid: 5072 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -76.5,7.5 - parent: 1 - type: Transform -- uid: 5073 - type: WallReinforced - components: - - pos: -76.5,3.5 - parent: 1 - type: Transform -- uid: 5074 - type: Grille - components: - - pos: -76.5,4.5 - parent: 1 - type: Transform -- uid: 5075 - type: Grille - components: - - pos: -76.5,5.5 - parent: 1 - type: Transform -- uid: 5076 - type: Grille - components: - - pos: -76.5,6.5 - parent: 1 - type: Transform -- uid: 5077 - type: WallSolid - components: - - pos: -61.5,7.5 - parent: 1 - type: Transform -- uid: 5079 - type: CableMV - components: - - pos: -40.5,-6.5 - parent: 1 - type: Transform -- uid: 5080 - type: CableMV - components: - - pos: -40.5,-7.5 - parent: 1 - type: Transform -- uid: 5081 - type: CableMV - components: - - pos: -40.5,-8.5 - parent: 1 - type: Transform -- uid: 5082 - type: CableMV - components: - - pos: -40.5,-9.5 - parent: 1 - type: Transform -- uid: 5083 - type: CableMV - components: - - pos: -41.5,-9.5 - parent: 1 - type: Transform -- uid: 5084 - type: CableMV - components: - - pos: -42.5,-9.5 - parent: 1 - type: Transform -- uid: 5085 - type: CableMV - components: - - pos: -43.5,-9.5 - parent: 1 - type: Transform -- uid: 5086 - type: CableMV - components: - - pos: -44.5,-9.5 - parent: 1 - type: Transform -- uid: 5087 - type: CableMV - components: - - pos: -45.5,-9.5 - parent: 1 - type: Transform -- uid: 5088 - type: CableMV - components: - - pos: -46.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5089 - type: CableMV - components: - - pos: -47.5,-9.5 - parent: 1 - type: Transform -- uid: 5090 - type: CableMV - components: - - pos: -48.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5091 - type: CableMV - components: - - pos: -49.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5092 - type: CableMV - components: - - pos: -50.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5093 - type: CableMV - components: - - pos: -51.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5094 - type: CableMV - components: - - pos: -52.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5095 - type: CableMV - components: - - pos: -53.5,-9.5 - parent: 1 - type: Transform -- uid: 5096 - type: CableMV - components: - - pos: -54.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5097 - type: CableMV - components: - - pos: -55.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5098 - type: CableMV - components: - - pos: -56.5,-9.5 - parent: 1 - type: Transform -- uid: 5099 - type: CableMV - components: - - pos: -56.5,-8.5 - parent: 1 - type: Transform -- uid: 5100 - type: CableMV - components: - - pos: -56.5,-7.5 - parent: 1 - type: Transform -- uid: 5101 - type: CableMV - components: - - pos: -55.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5102 - type: CableApcExtension - components: - - pos: -55.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5103 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-7.5 - parent: 1 - type: Transform -- uid: 5106 - type: CableApcExtension - components: - - pos: -57.5,-9.5 - parent: 1 - type: Transform -- uid: 5127 - type: CableApcExtension - components: - - pos: -57.5,-7.5 - parent: 1 - type: Transform -- uid: 5128 - type: CableApcExtension - components: - - pos: -57.5,-6.5 - parent: 1 - type: Transform -- uid: 5129 - type: CableApcExtension - components: - - pos: -57.5,-5.5 - parent: 1 - type: Transform -- uid: 5130 - type: CableApcExtension - components: - - pos: -57.5,-4.5 - parent: 1 - type: Transform -- uid: 5131 - type: CableApcExtension - components: - - pos: -57.5,-3.5 - parent: 1 - type: Transform -- uid: 5132 - type: CableApcExtension - components: - - pos: -57.5,-2.5 - parent: 1 - type: Transform -- uid: 5133 - type: CableApcExtension - components: - - pos: -57.5,-1.5 - parent: 1 - type: Transform -- uid: 5134 - type: CableApcExtension - components: - - pos: -57.5,-0.5 - parent: 1 - type: Transform -- uid: 5135 - type: CableApcExtension - components: - - pos: -57.5,0.5 - parent: 1 - type: Transform -- uid: 5136 - type: CableApcExtension - components: - - pos: -57.5,1.5 - parent: 1 - type: Transform -- uid: 5137 - type: CableApcExtension - components: - - pos: -57.5,2.5 - parent: 1 - type: Transform -- uid: 5138 - type: CableApcExtension - components: - - pos: -57.5,3.5 - parent: 1 - type: Transform -- uid: 5139 - type: CableApcExtension - components: - - pos: -59.5,5.5 - parent: 1 - type: Transform -- uid: 5140 - type: CableApcExtension - components: - - pos: -60.5,5.5 - parent: 1 - type: Transform -- uid: 5141 - type: CableApcExtension - components: - - pos: -61.5,5.5 - parent: 1 - type: Transform -- uid: 5142 - type: CableApcExtension - components: - - pos: -62.5,5.5 - parent: 1 - type: Transform -- uid: 5143 - type: CableApcExtension - components: - - pos: -63.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5144 - type: CableApcExtension - components: - - pos: -64.5,5.5 - parent: 1 - type: Transform -- uid: 5145 - type: CableApcExtension - components: - - pos: -65.5,5.5 - parent: 1 - type: Transform -- uid: 5146 - type: CableApcExtension - components: - - pos: -66.5,5.5 - parent: 1 - type: Transform -- uid: 5147 - type: CableApcExtension - components: - - pos: -67.5,5.5 - parent: 1 - type: Transform -- uid: 5148 - type: CableApcExtension - components: - - pos: -68.5,5.5 - parent: 1 - type: Transform -- uid: 5149 - type: CableApcExtension - components: - - pos: -69.5,5.5 - parent: 1 - type: Transform -- uid: 5150 - type: CableApcExtension - components: - - pos: -70.5,5.5 - parent: 1 - type: Transform -- uid: 5151 - type: CableApcExtension - components: - - pos: -71.5,5.5 - parent: 1 - type: Transform -- uid: 5152 - type: CableApcExtension - components: - - pos: -72.5,5.5 - parent: 1 - type: Transform -- uid: 5153 - type: CableApcExtension - components: - - pos: -73.5,5.5 - parent: 1 - type: Transform -- uid: 5154 - type: CableApcExtension - components: - - pos: -74.5,5.5 - parent: 1 - type: Transform -- uid: 5155 - type: CableApcExtension - components: - - pos: -54.5,-7.5 - parent: 1 - type: Transform -- uid: 5156 - type: CableApcExtension - components: - - pos: -53.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5157 - type: CableApcExtension - components: - - pos: -52.5,-7.5 - parent: 1 - type: Transform -- uid: 5158 - type: CableApcExtension - components: - - pos: -52.5,-6.5 - parent: 1 - type: Transform -- uid: 5159 - type: CableApcExtension - components: - - pos: -52.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5160 - type: CableApcExtension - components: - - pos: -52.5,-4.5 - parent: 1 - type: Transform -- uid: 5161 - type: CableApcExtension - components: - - pos: -52.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5162 - type: CableApcExtension - components: - - pos: -52.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5163 - type: CableApcExtension - components: - - pos: -52.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5172 - type: ReinforcedWindow - components: - - pos: -75.5,7.5 - parent: 1 - type: Transform -- uid: 5173 - type: WallReinforced - components: - - pos: -73.5,7.5 - parent: 1 - type: Transform -- uid: 5174 - type: ReinforcedWindow - components: - - pos: -74.5,7.5 - parent: 1 - type: Transform -- uid: 5175 - type: Grille - components: - - pos: -75.5,7.5 - parent: 1 - type: Transform -- uid: 5176 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -70.5,7.5 - parent: 1 - type: Transform -- uid: 5177 - type: InflatableWall - components: - - pos: -62.5,7.5 - parent: 1 - type: Transform -- uid: 5178 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -68.5,7.5 - parent: 1 - type: Transform -- uid: 5179 - type: SpawnPointBotanist - components: - - pos: -43.5,46.5 - parent: 1 - type: Transform -- uid: 5180 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -66.5,7.5 - parent: 1 - type: Transform -- uid: 5181 - type: CableHV - components: - - pos: -60.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5182 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -67.5,7.5 - parent: 1 - type: Transform -- uid: 5183 - type: WallSolid - components: - - pos: -59.5,7.5 - parent: 1 - type: Transform -- uid: 5184 - type: InflatableWall - components: - - pos: -65.5,7.5 - parent: 1 - type: Transform -- uid: 5185 - type: InflatableWall - components: - - pos: -64.5,7.5 - parent: 1 - type: Transform -- uid: 5186 - type: CableHV - components: - - pos: -89.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5189 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 1 - type: Transform -- uid: 5191 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5192 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -74.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5193 - type: Poweredlight - components: - - pos: -67.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5194 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -59.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5195 - type: Table - components: - - pos: -54.5,8.5 - parent: 1 - type: Transform -- uid: 5196 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5197 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5198 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5199 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5200 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -54.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5201 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -43.5,30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5202 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5203 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5204 - type: Poweredlight - components: - - pos: -51.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5205 - type: CableApcExtension - components: - - pos: -50.5,26.5 - parent: 1 - type: Transform -- uid: 5206 - type: CableApcExtension - components: - - pos: -50.5,25.5 - parent: 1 - type: Transform -- uid: 5207 - type: CableApcExtension - components: - - pos: -50.5,24.5 - parent: 1 - type: Transform -- uid: 5210 - type: FirelockGlass - components: - - pos: -55.5,4.5 - parent: 1 - type: Transform -- uid: 5211 - type: FirelockGlass - components: - - pos: -55.5,5.5 - parent: 1 - type: Transform -- uid: 5212 - type: FirelockGlass - components: - - pos: -55.5,6.5 - parent: 1 - type: Transform -- uid: 5213 - type: FirelockGlass - components: - - pos: -59.5,6.5 - parent: 1 - type: Transform -- uid: 5214 - type: FirelockGlass - components: - - pos: -59.5,5.5 - parent: 1 - type: Transform -- uid: 5215 - type: FirelockGlass - components: - - pos: -59.5,4.5 - parent: 1 - type: Transform -- uid: 5216 - type: FirelockGlass - components: - - pos: -58.5,3.5 - parent: 1 - type: Transform -- uid: 5217 - type: FirelockGlass - components: - - pos: -57.5,3.5 - parent: 1 - type: Transform -- uid: 5218 - type: FirelockGlass - components: - - pos: -56.5,3.5 - parent: 1 - type: Transform -- uid: 5219 - type: FirelockGlass - components: - - pos: -58.5,7.5 - parent: 1 - type: Transform -- uid: 5220 - type: FirelockGlass - components: - - pos: -57.5,7.5 - parent: 1 - type: Transform -- uid: 5221 - type: FirelockGlass - components: - - pos: -56.5,7.5 - parent: 1 - type: Transform -- uid: 5225 - type: FirelockGlass - components: - - pos: -38.5,30.5 - parent: 1 - type: Transform -- uid: 5226 - type: FirelockGlass - components: - - pos: -37.5,30.5 - parent: 1 - type: Transform -- uid: 5227 - type: FirelockGlass - components: - - pos: -36.5,30.5 - parent: 1 - type: Transform -- uid: 5228 - type: FirelockGlass - components: - - pos: -35.5,31.5 - parent: 1 - type: Transform -- uid: 5229 - type: FirelockGlass - components: - - pos: -35.5,32.5 - parent: 1 - type: Transform -- uid: 5230 - type: FirelockGlass - components: - - pos: -35.5,33.5 - parent: 1 - type: Transform -- uid: 5231 - type: FirelockGlass - components: - - pos: -39.5,31.5 - parent: 1 - type: Transform -- uid: 5232 - type: FirelockGlass - components: - - pos: -39.5,32.5 - parent: 1 - type: Transform -- uid: 5233 - type: FirelockGlass - components: - - pos: -39.5,33.5 - parent: 1 - type: Transform -- uid: 5234 - type: FirelockGlass - components: - - pos: -18.5,31.5 - parent: 1 - type: Transform -- uid: 5235 - type: FirelockGlass - components: - - pos: -18.5,32.5 - parent: 1 - type: Transform -- uid: 5236 - type: FirelockGlass - components: - - pos: -18.5,33.5 - parent: 1 - type: Transform -- uid: 5237 - type: FirelockGlass - components: - - pos: -17.5,34.5 - parent: 1 - type: Transform -- uid: 5238 - type: FirelockGlass - components: - - pos: -16.5,34.5 - parent: 1 - type: Transform -- uid: 5239 - type: FirelockGlass - components: - - pos: -15.5,34.5 - parent: 1 - type: Transform -- uid: 5240 - type: FirelockGlass - components: - - pos: -55.5,31.5 - parent: 1 - type: Transform -- uid: 5241 - type: FirelockGlass - components: - - pos: -55.5,32.5 - parent: 1 - type: Transform -- uid: 5242 - type: FirelockGlass - components: - - pos: -55.5,33.5 - parent: 1 - type: Transform -- uid: 5243 - type: FirelockGlass - components: - - pos: -56.5,30.5 - parent: 1 - type: Transform -- uid: 5244 - type: FirelockGlass - components: - - pos: -57.5,30.5 - parent: 1 - type: Transform -- uid: 5245 - type: FirelockGlass - components: - - pos: -58.5,30.5 - parent: 1 - type: Transform -- uid: 5246 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-8.5 - parent: 1 - type: Transform -- uid: 5247 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -29.5,0.5 - parent: 1 - type: Transform -- uid: 5248 - type: Grille - components: - - pos: -47.5,-11.5 - parent: 1 - type: Transform -- uid: 5249 - type: Grille - components: - - pos: -49.5,-11.5 - parent: 1 - type: Transform -- uid: 5250 - type: Table - components: - - pos: -53.5,17.5 - parent: 1 - type: Transform -- uid: 5251 - type: Table - components: - - pos: -54.5,17.5 - parent: 1 - type: Transform -- uid: 5252 - type: Grille - components: - - pos: -55.5,18.5 - parent: 1 - type: Transform -- uid: 5253 - type: Window - components: - - pos: -55.5,18.5 - parent: 1 - type: Transform -- uid: 5254 - type: Window - components: - - pos: -55.5,19.5 - parent: 1 - type: Transform -- uid: 5255 - type: WallSolid - components: - - pos: -55.5,21.5 - parent: 1 - type: Transform -- uid: 5256 - type: Table - components: - - pos: -54.5,21.5 - parent: 1 - type: Transform -- uid: 5257 - type: Table - components: - - pos: -53.5,21.5 - parent: 1 - type: Transform -- uid: 5258 - type: Table - components: - - pos: -52.5,21.5 - parent: 1 - type: Transform -- uid: 5259 - type: Table - components: - - pos: -53.5,13.5 - parent: 1 - type: Transform -- uid: 5260 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -55.5,16.5 - parent: 1 - type: Transform -- uid: 5261 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -55.5,12.5 - parent: 1 - type: Transform -- uid: 5262 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -54.5,16.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 5263 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -53.5,16.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 5264 - type: DisposalUnit - components: - - pos: -55.5,16.5 - parent: 1 - type: Transform -- uid: 5265 - type: PottedPlantRandom - components: - - pos: -55.5,12.5 - parent: 1 - type: Transform -- uid: 5266 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -52.5,13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 5267 - type: Chair - components: - - pos: -53.5,14.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 5268 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -54.5,13.5 - parent: 1 - type: Transform -- uid: 5269 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -53.5,12.5 - parent: 1 - type: Transform -- uid: 5270 - type: soda_dispenser - components: - - pos: -54.5,21.5 - parent: 1 - type: Transform -- uid: 5271 - type: DrinkGlass - components: - - pos: -53.816883,21.552088 - parent: 1 - type: Transform -- uid: 5272 - type: DrinkGlass - components: - - pos: -53.645008,21.708338 - parent: 1 - type: Transform -- uid: 5273 - type: DrinkGlass - components: - - pos: -53.488758,21.552088 - parent: 1 - type: Transform -- uid: 5274 - type: ClosetEmergencyFilledRandom - components: - - pos: -55.5,35.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5275 - type: DrinkCreamCarton - components: - - pos: -53.020008,21.71115 - parent: 1 - type: Transform -- uid: 5276 - type: ReagentContainerMilk - components: - - pos: -52.395008,21.71115 - parent: 1 - type: Transform -- uid: 5277 - type: ClosetEmergencyFilledRandom - components: - - pos: -55.5,36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5278 - type: Table - components: - - pos: -52.5,17.5 - parent: 1 - type: Transform -- uid: 5279 - type: BarSign - components: - - pos: -53.5,22.5 - parent: 1 - type: Transform -- uid: 5280 - type: Grille - components: - - pos: -55.5,19.5 - parent: 1 - type: Transform -- uid: 5281 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -52.5,16.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 5282 - type: AirlockBarGlassLocked - components: - - pos: -55.5,20.5 - parent: 1 - type: Transform -- uid: 5283 - type: Table - components: - - pos: -54.5,29.5 - parent: 1 - type: Transform -- uid: 5284 - type: Table - components: - - pos: -53.5,29.5 - parent: 1 - type: Transform -- uid: 5285 - type: Table - components: - - pos: -52.5,29.5 - parent: 1 - type: Transform -- uid: 5286 - type: Table - components: - - pos: -51.5,29.5 - parent: 1 - type: Transform -- uid: 5287 - type: Table - components: - - pos: -47.5,29.5 - parent: 1 - type: Transform -- uid: 5288 - type: Table - components: - - pos: -47.5,28.5 - parent: 1 - type: Transform -- uid: 5289 - type: Table - components: - - pos: -47.5,27.5 - parent: 1 - type: Transform -- uid: 5290 - type: Rack - components: - - pos: -54.5,27.5 - parent: 1 - type: Transform -- uid: 5291 - type: Rack - components: - - pos: -53.5,27.5 - parent: 1 - type: Transform -- uid: 5292 - type: Rack - components: - - pos: -52.5,27.5 - parent: 1 - type: Transform -- uid: 5293 - type: Rack - components: - - pos: -52.5,25.5 - parent: 1 - type: Transform -- uid: 5294 - type: Rack - components: - - pos: -52.5,24.5 - parent: 1 - type: Transform -- uid: 5295 - type: Rack - components: - - pos: -52.5,23.5 - parent: 1 - type: Transform -- uid: 5296 - type: Rack - components: - - pos: -49.5,25.5 - parent: 1 - type: Transform -- uid: 5297 - type: Rack - components: - - pos: -49.5,24.5 - parent: 1 - type: Transform -- uid: 5298 - type: Rack - components: - - pos: -49.5,23.5 - parent: 1 - type: Transform -- uid: 5299 - type: Airlock - components: - - pos: -55.5,24.5 - parent: 1 - type: Transform -- uid: 5300 - type: AirlockEngineeringLocked - components: - - pos: -48.5,30.5 - parent: 1 - type: Transform -- uid: 5301 - type: AirlockChiefEngineerLocked - components: - - pos: -50.5,26.5 - parent: 1 - type: Transform -- uid: 5302 - type: MopBucket - components: - - pos: -54.5,23.5 - parent: 1 - type: Transform -- uid: 5303 - type: MopItem - components: - - pos: -54.5,23.5 - parent: 1 - type: Transform -- uid: 5304 - type: Rack - components: - - pos: -54.5,25.5 - parent: 1 - type: Transform -- uid: 5305 - type: RandomSoap - components: - - pos: -54.5,25.5 - parent: 1 - type: Transform -- uid: 5306 - type: WallSolidRust - components: - - pos: -54.5,-3.5 - parent: 1 - type: Transform -- uid: 5307 - type: WallSolid - components: - - pos: -53.5,-3.5 - parent: 1 - type: Transform -- uid: 5308 - type: WallSolidRust - components: - - pos: -52.5,-3.5 - parent: 1 - type: Transform -- uid: 5309 - type: WallSolid - components: - - pos: -50.5,-3.5 - parent: 1 - type: Transform -- uid: 5310 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -50.5,2.5 - parent: 1 - type: Transform -- uid: 5311 - type: Table - components: - - pos: -51.5,7.5 - parent: 1 - type: Transform -- uid: 5312 - type: Table - components: - - pos: -50.5,7.5 - parent: 1 - type: Transform -- uid: 5313 - type: WindowReinforcedDirectional - components: - - pos: -50.5,11.5 - parent: 1 - type: Transform -- uid: 5314 - type: WindowReinforcedDirectional - components: - - pos: -47.5,11.5 - parent: 1 - type: Transform -- uid: 5315 - type: Bed - components: - - pos: -50.5,12.5 - parent: 1 - type: Transform -- uid: 5316 - type: Bed - components: - - pos: -47.5,12.5 - parent: 1 - type: Transform -- uid: 5317 - type: BedsheetOrange - components: - - rot: 3.141592653589793 rad - pos: -47.5,12.5 - parent: 1 - type: Transform -- uid: 5318 - type: BedsheetOrange - components: - - rot: 3.141592653589793 rad - pos: -50.5,12.5 - parent: 1 - type: Transform -- uid: 5319 - type: AirlockSecurityGlassLocked - components: - - pos: -47.5,7.5 - parent: 1 - type: Transform -- uid: 5320 - type: WindoorSecurityLocked - components: - - pos: -49.5,11.5 - parent: 1 - type: Transform -- uid: 5321 - type: WindoorSecurityLocked - components: - - pos: -46.5,11.5 - parent: 1 - type: Transform -- uid: 5322 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: -51.5,7.5 - parent: 1 - type: Transform -- uid: 5323 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: -50.5,7.5 - parent: 1 - type: Transform -- uid: 5324 - type: Windoor - components: - - pos: -51.5,7.5 - parent: 1 - type: Transform -- uid: 5325 - type: Windoor - components: - - pos: -50.5,7.5 - parent: 1 - type: Transform -- uid: 5326 - type: Poweredlight - components: - - pos: -53.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5327 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5328 - type: PoweredSmallLight - components: - - pos: -41.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5329 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5330 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -47.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5331 - type: PoweredSmallLight - components: - - pos: -47.5,21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5332 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5333 - type: PoweredSmallLight - components: - - pos: -49.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5334 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5335 - type: PoweredSmallLight - components: - - pos: -52.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5336 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5337 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -54.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5338 - type: Table - components: - - pos: -53.5,8.5 - parent: 1 - type: Transform -- uid: 5339 - type: ComputerCriminalRecords - components: - - rot: 1.5707963267948966 rad - pos: -52.5,8.5 - parent: 1 - type: Transform -- uid: 5340 - type: LockerSecurityFilled - components: - - pos: -54.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5341 - type: LockerSecurityFilled - components: - - pos: -53.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5342 - type: LockerSecurityFilled - components: - - pos: -52.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5343 - type: ChairOfficeDark - components: - - pos: -51.5,8.5 - parent: 1 - type: Transform -- uid: 5344 - type: Zipties - components: - - pos: -54.57348,8.706909 - parent: 1 - type: Transform -- uid: 5345 - type: Zipties - components: - - pos: -54.38598,8.566284 - parent: 1 - type: Transform -- uid: 5346 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,29.5 - parent: 1 - type: Transform -- uid: 5347 - type: FlashlightSeclite - components: - - pos: -53.712852,8.738616 - parent: 1 - type: Transform -- uid: 5348 - type: FlashlightSeclite - components: - - pos: -53.540977,8.504241 - parent: 1 - type: Transform -- uid: 5349 - type: PottedPlantRandom - components: - - pos: -46.5,8.5 - parent: 1 - type: Transform -- uid: 5350 - type: PottedPlantRandom - components: - - pos: -51.5,10.5 - parent: 1 - type: Transform -- uid: 5351 - type: TableWood - components: - - pos: -54.5,-5.5 - parent: 1 - type: Transform -- uid: 5352 - type: TableWood - components: - - pos: -53.5,-5.5 - parent: 1 - type: Transform -- uid: 5353 - type: TableWood - components: - - pos: -52.5,-5.5 - parent: 1 - type: Transform -- uid: 5354 - type: TableWood - components: - - pos: -53.5,-0.5 - parent: 1 - type: Transform -- uid: 5355 - type: TableWood - components: - - pos: -53.5,-1.5 - parent: 1 - type: Transform -- uid: 5356 - type: Fireplace - components: - - pos: -51.5,-0.5 - parent: 1 - type: Transform -- uid: 5357 - type: Bookshelf - components: - - pos: -50.5,-0.5 - parent: 1 - type: Transform -- uid: 5358 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-1.5 - parent: 1 - type: Transform -- uid: 5359 - type: ChairOfficeDark - components: - - pos: -53.5,-4.5 - parent: 1 - type: Transform -- uid: 5360 - type: PlushieLizard - components: - - pos: -53.524517,-4.54482 - parent: 1 - type: Transform -- uid: 5361 - type: PlushieSpaceLizard - components: - - pos: -54.508892,-1.4526689 - parent: 1 - type: Transform -- uid: 5362 - type: PottedPlantRandom - components: - - pos: -50.5,-7.5 - parent: 1 - type: Transform -- uid: 5363 - type: PottedPlantRandom - components: - - pos: -50.5,-2.5 - parent: 1 - type: Transform -- uid: 5364 - type: ClosetMaintenanceFilledRandom - components: - - pos: -54.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5365 - type: AirlockMaintLocked - components: - - pos: -48.5,2.5 - parent: 1 - type: Transform -- uid: 5366 - type: AirlockMaintLocked - components: - - pos: -55.5,1.5 - parent: 1 - type: Transform -- uid: 5367 - type: AirlockMaintLocked - components: - - pos: -55.5,-9.5 - parent: 1 - type: Transform -- uid: 5368 - type: AirlockMaintLocked - components: - - pos: -55.5,-6.5 - parent: 1 - type: Transform -- uid: 5369 - type: AirlockMaint - components: - - pos: -51.5,-3.5 - parent: 1 - type: Transform -- uid: 5370 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -20.5,0.5 - parent: 1 - type: Transform -- uid: 5371 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-6.5 - parent: 1 - type: Transform -- uid: 5372 - type: Catwalk - components: - - pos: -28.5,-0.5 - parent: 1 - type: Transform -- uid: 5373 - type: Catwalk - components: - - pos: -28.5,-1.5 - parent: 1 - type: Transform -- uid: 5374 - type: WallSolid - components: - - pos: -46.5,-10.5 - parent: 1 - type: Transform -- uid: 5375 - type: Catwalk - components: - - pos: -28.5,-3.5 - parent: 1 - type: Transform -- uid: 5376 - type: Catwalk - components: - - pos: -28.5,-4.5 - parent: 1 - type: Transform -- uid: 5377 - type: Catwalk - components: - - pos: -28.5,-5.5 - parent: 1 - type: Transform -- uid: 5378 - type: CableApcExtension - components: - - pos: -35.5,-6.5 - parent: 1 - type: Transform -- uid: 5379 - type: WallReinforced - components: - - pos: -36.5,-12.5 - parent: 1 - type: Transform -- uid: 5380 - type: WallReinforced - components: - - pos: -36.5,-13.5 - parent: 1 - type: Transform -- uid: 5381 - type: Catwalk - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform -- uid: 5382 - type: AirlockMaintSalvageLocked - components: - - pos: -46.5,-9.5 - parent: 1 - type: Transform -- uid: 5383 - type: Catwalk - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform -- uid: 5384 - type: Catwalk - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform -- uid: 5385 - type: ClosetEmergencyFilledRandom - components: - - pos: -54.5,-10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5386 - type: Catwalk - components: - - pos: -22.5,-7.5 - parent: 1 - type: Transform -- uid: 5387 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5388 - type: Catwalk - components: - - pos: -21.5,-6.5 - parent: 1 - type: Transform -- uid: 5389 - type: ClosetFireFilled - components: - - pos: -53.5,-10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5390 - type: Catwalk - components: - - pos: -21.5,-4.5 - parent: 1 - type: Transform -- uid: 5391 - type: Catwalk - components: - - pos: -21.5,-3.5 - parent: 1 - type: Transform -- uid: 5392 - type: ClosetMaintenanceFilledRandom - components: - - pos: -52.5,-10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5393 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5394 - type: Catwalk - components: - - pos: -21.5,-0.5 - parent: 1 - type: Transform -- uid: 5395 - type: AirlockExternalGlassCargoLocked - components: - - rot: 3.141592653589793 rad - pos: -44.5,-12.5 - parent: 1 - type: Transform -- uid: 5396 - type: Catwalk - components: - - pos: -21.5,1.5 - parent: 1 - type: Transform -- uid: 5397 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5398 - type: Catwalk - components: - - pos: -19.5,1.5 - parent: 1 - type: Transform -- uid: 5399 - type: Catwalk - components: - - pos: -18.5,1.5 - parent: 1 - type: Transform -- uid: 5400 - type: Catwalk - components: - - pos: -17.5,1.5 - parent: 1 - type: Transform -- uid: 5401 - type: GasPipeStraight - components: - - pos: -42.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5402 - type: Catwalk - components: - - pos: -15.5,1.5 - parent: 1 - type: Transform -- uid: 5403 - type: ClosetEmergencyFilledRandom - components: - - pos: -29.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5404 - type: ClosetEmergencyFilledRandom - components: - - pos: -15.5,-7.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5405 - type: ClosetFireFilled - components: - - pos: -29.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5406 - type: ClosetFireFilled - components: - - pos: -15.5,-8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5407 - type: Table - components: - - pos: -28.5,-8.5 - parent: 1 - type: Transform -- uid: 5408 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-8.5 - parent: 1 - type: Transform -- uid: 5409 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 5410 - type: FoodBoxPizzaFilled - components: - - pos: -28.498188,-8.2163105 - parent: 1 - type: Transform -- uid: 5411 - type: WallSolidRust - components: - - pos: -24.5,-5.5 - parent: 1 - type: Transform -- uid: 5412 - type: WallSolid - components: - - pos: -23.5,-5.5 - parent: 1 - type: Transform -- uid: 5413 - type: ClosetMaintenanceFilledRandom - components: - - pos: -29.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5414 - type: ClosetEmergencyFilledRandom - components: - - pos: -15.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5415 - type: ClosetFireFilled - components: - - pos: -16.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5416 - type: WeldingFuelTankFull - components: - - pos: -20.5,2.5 - parent: 1 - type: Transform -- uid: 5417 - type: WeldingFuelTankFull - components: - - pos: -29.5,-0.5 - parent: 1 - type: Transform -- uid: 5418 - type: WaterTankFull - components: - - pos: -29.5,-1.5 - parent: 1 - type: Transform -- uid: 5419 - type: WaterTankFull - components: - - pos: -21.5,2.5 - parent: 1 - type: Transform -- uid: 5420 - type: WaterTankFull - components: - - pos: 16.5,-4.5 - parent: 1 - type: Transform -- uid: 5421 - type: WeldingFuelTankFull - components: - - pos: 17.5,-4.5 - parent: 1 - type: Transform -- uid: 5422 - type: ClosetMaintenanceFilledRandom - components: - - pos: -17.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5423 - type: Firelock - components: - - pos: -29.5,-3.5 - parent: 1 - type: Transform -- uid: 5424 - type: Table - components: - - pos: -18.5,0.5 - parent: 1 - type: Transform -- uid: 5425 - type: Table - components: - - pos: -29.5,-2.5 - parent: 1 - type: Transform -- uid: 5426 - type: Rack - components: - - pos: -19.5,0.5 - parent: 1 - type: Transform -- uid: 5427 - type: Rack - components: - - pos: -18.5,-7.5 - parent: 1 - type: Transform -- uid: 5428 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5429 - type: Rack - components: - - pos: -27.5,-4.5 - parent: 1 - type: Transform -- uid: 5430 - type: MaintenanceWeaponSpawner - components: - - pos: -27.5,-4.5 - parent: 1 - type: Transform -- uid: 5431 - type: MaintenanceToolSpawner - components: - - pos: -29.5,-2.5 - parent: 1 - type: Transform -- uid: 5432 - type: CableApcExtension - components: - - pos: -21.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5433 - type: Firelock - components: - - pos: -28.5,-3.5 - parent: 1 - type: Transform -- uid: 5434 - type: MaintenanceToolSpawner - components: - - pos: -18.5,-7.5 - parent: 1 - type: Transform -- uid: 5435 - type: MaintenanceFluffSpawner - components: - - pos: -18.5,0.5 - parent: 1 - type: Transform -- uid: 5436 - type: MaintenanceToolSpawner - components: - - pos: -19.5,0.5 - parent: 1 - type: Transform -- uid: 5437 - type: RandomSoap - components: - - pos: -23.5,-1.5 - parent: 1 - type: Transform -- uid: 5438 - type: RandomSoap - components: - - pos: -23.5,0.5 - parent: 1 - type: Transform -- uid: 5439 - type: RandomSoap - components: - - pos: -23.5,2.5 - parent: 1 - type: Transform -- uid: 5440 - type: Table - components: - - pos: -23.5,-3.5 - parent: 1 - type: Transform -- uid: 5441 - type: MaintenanceToolSpawner - components: - - pos: -23.5,-3.5 - parent: 1 - type: Transform -- uid: 5442 - type: Rack - components: - - pos: -6.5,-13.5 - parent: 1 - type: Transform -- uid: 5443 - type: ClothingHeadHelmetEVA - components: - - pos: -6.6627684,-13.319158 - parent: 1 - type: Transform -- uid: 5444 - type: ClothingOuterHardsuitEVA - components: - - pos: -6.5221434,-13.381658 - parent: 1 - type: Transform -- uid: 5445 - type: SpawnVehicleATV - components: - - pos: -24.5,-12.5 - parent: 1 - type: Transform -- uid: 5446 - type: Rack - components: - - pos: -17.5,-7.5 - parent: 1 - type: Transform -- uid: 5447 - type: MaintenanceFluffSpawner - components: - - pos: -17.5,-7.5 - parent: 1 - type: Transform -- uid: 5448 - type: CableApcExtension - components: - - pos: -21.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5449 - type: CableApcExtension - components: - - pos: -21.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5450 - type: CableApcExtension - components: - - pos: -21.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5451 - type: Barricade - components: - - pos: -21.5,-6.5 - parent: 1 - type: Transform -- uid: 5452 - type: LandMineExplosive - components: - - pos: -23.381935,-8.161524 - parent: 1 - type: Transform -- uid: 5453 - type: Barricade - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform -- uid: 5454 - type: Barricade - components: - - pos: -25.5,-8.5 - parent: 1 - type: Transform -- uid: 5455 - type: LandMineExplosive - components: - - pos: -24.157843,-7.5365233 - parent: 1 - type: Transform -- uid: 5456 - type: Barricade - components: - - pos: -20.5,-6.5 - parent: 1 - type: Transform -- uid: 5457 - type: Barricade - components: - - pos: -19.5,-7.5 - parent: 1 - type: Transform -- uid: 5458 - type: Barricade - components: - - pos: -19.5,-8.5 - parent: 1 - type: Transform -- uid: 5459 - type: WallSolidRust - components: - - pos: -25.5,-9.5 - parent: 1 - type: Transform -- uid: 5460 - type: Firelock - components: - - pos: -20.5,-5.5 - parent: 1 - type: Transform -- uid: 5461 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -17.5,-10.5 - parent: 1 - type: Transform -- uid: 5462 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5463 - type: AirlockMaint - components: - - pos: -10.5,37.5 - parent: 1 - type: Transform -- uid: 5464 - type: Firelock - components: - - pos: -49.5,-10.5 - parent: 1 - type: Transform -- uid: 5465 - type: Firelock - components: - - pos: -49.5,-9.5 - parent: 1 - type: Transform -- uid: 5466 - type: Catwalk - components: - - pos: -48.5,1.5 - parent: 1 - type: Transform -- uid: 5467 - type: ClothingShoesBootsMag - components: - - pos: -37.551136,-9.744685 - parent: 1 - type: Transform -- uid: 5468 - type: Catwalk - components: - - pos: -48.5,-0.5 - parent: 1 - type: Transform -- uid: 5469 - type: Catwalk - components: - - pos: -48.5,-1.5 - parent: 1 - type: Transform -- uid: 5470 - type: NitrogenCanister - components: - - pos: -48.5,17.5 - parent: 1 - type: Transform -- uid: 5471 - type: Catwalk - components: - - pos: -48.5,-3.5 - parent: 1 - type: Transform -- uid: 5472 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -49.5,69.5 - parent: 1 - type: Transform -- uid: 5473 - type: WallReinforced - components: - - pos: -64.5,49.5 - parent: 1 - type: Transform -- uid: 5474 - type: Catwalk - components: - - pos: -48.5,-6.5 - parent: 1 - type: Transform -- uid: 5475 - type: Catwalk - components: - - pos: -48.5,-7.5 - parent: 1 - type: Transform -- uid: 5476 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,69.5 - parent: 1 - type: Transform -- uid: 5477 - type: AirlockSecurityGlassLocked - components: - - pos: -50.5,69.5 - parent: 1 - type: Transform -- uid: 5478 - type: WallReinforced - components: - - pos: -64.5,51.5 - parent: 1 - type: Transform -- uid: 5479 - type: Catwalk - components: - - pos: -52.5,-9.5 - parent: 1 - type: Transform -- uid: 5480 - type: Catwalk - components: - - pos: -51.5,-9.5 - parent: 1 - type: Transform -- uid: 5481 - type: AirlockSecurityGlassLocked - components: - - pos: -52.5,69.5 - parent: 1 - type: Transform -- uid: 5482 - type: Catwalk - components: - - pos: -49.5,-9.5 - parent: 1 - type: Transform -- uid: 5483 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -53.5,2.5 - parent: 1 - type: Transform -- uid: 5484 - type: Catwalk - components: - - pos: -47.5,-9.5 - parent: 1 - type: Transform -- uid: 5485 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -51.5,1.5 - parent: 1 - type: Transform -- uid: 5486 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -47.5,19.5 - parent: 1 - type: Transform -- uid: 5487 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -41.5,17.5 - parent: 1 - type: Transform -- uid: 5488 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -48.5,17.5 - parent: 1 - type: Transform -- uid: 5489 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -44.5,18.5 - parent: 1 - type: Transform -- uid: 5490 - type: Girder - components: - - pos: -55.5,-10.5 - parent: 1 - type: Transform -- uid: 5491 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -45.5,20.5 - parent: 1 - type: Transform -- uid: 5492 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -42.5,20.5 - parent: 1 - type: Transform -- uid: 5493 - type: SignSpace - components: - - pos: -53.5,78.5 - parent: 1 - type: Transform -- uid: 5494 - type: TableReinforced - components: - - pos: -55.5,80.5 - parent: 1 - type: Transform -- uid: 5495 - type: WallReinforced - components: - - pos: -44.5,56.5 - parent: 1 - type: Transform -- uid: 5496 - type: FirelockEdge - components: - - pos: -50.5,82.5 - parent: 1 - type: Transform -- uid: 5497 - type: ClosetFireFilled - components: - - pos: -54.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5498 - type: ClosetEmergencyFilledRandom - components: - - pos: -53.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5499 - type: ClosetMaintenanceFilledRandom - components: - - pos: -52.5,2.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5500 - type: Rack - components: - - pos: -51.5,2.5 - parent: 1 - type: Transform -- uid: 5501 - type: FirelockEdge - components: - - pos: -52.5,82.5 - parent: 1 - type: Transform -- uid: 5502 - type: CableHV - components: - - pos: -16.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5503 - type: MaintenanceToolSpawner - components: - - pos: -51.5,2.5 - parent: 1 - type: Transform -- uid: 5504 - type: CableHV - components: - - pos: -15.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5505 - type: CableHV - components: - - pos: -15.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5506 - type: MaintenanceToolSpawner - components: - - pos: -52.5,-5.5 - parent: 1 - type: Transform -- uid: 5507 - type: filingCabinetTall - components: - - pos: -52.5,-0.5 - parent: 1 - type: Transform -- uid: 5508 - type: ClothingHandsGlovesColorYellow - components: - - pos: -53.472584,-1.3838406 - parent: 1 - type: Transform -- uid: 5509 - type: filingCabinetDrawer - components: - - pos: -43.5,0.5 - parent: 1 - type: Transform -- uid: 5510 - type: LampGold - components: - - pos: -53.465157,-0.32265806 - parent: 1 - type: Transform -- uid: 5511 - type: LampGold - components: - - pos: -54.496407,-5.055279 - parent: 1 - type: Transform -- uid: 5512 - type: PaperOffice - components: - - pos: -53.91828,-5.305279 - parent: 1 - type: Transform -- uid: 5513 - type: PaperOffice - components: - - pos: -53.808907,-5.305279 - parent: 1 - type: Transform -- uid: 5514 - type: PaperOffice - components: - - pos: -53.715157,-5.320904 - parent: 1 - type: Transform -- uid: 5515 - type: PaperOffice - components: - - pos: -53.621407,-5.320904 - parent: 1 - type: Transform -- uid: 5516 - type: BoxFolderYellow - components: - - pos: -53.308907,-5.477154 - parent: 1 - type: Transform -- uid: 5517 - type: Barricade - components: - - pos: -54.5,-7.5 - parent: 1 - type: Transform -- uid: 5518 - type: Barricade - components: - - pos: -51.5,-4.5 - parent: 1 - type: Transform -- uid: 5519 - type: Rack - components: - - pos: -47.5,-8.5 - parent: 1 - type: Transform -- uid: 5520 - type: Table - components: - - pos: -47.5,-6.5 - parent: 1 - type: Transform -- uid: 5521 - type: Table - components: - - pos: -47.5,-7.5 - parent: 1 - type: Transform -- uid: 5522 - type: MaintenanceToolSpawner - components: - - pos: -47.5,-8.5 - parent: 1 - type: Transform -- uid: 5523 - type: MaintenanceFluffSpawner - components: - - pos: -47.5,-7.5 - parent: 1 - type: Transform -- uid: 5524 - type: MaintenanceFluffSpawner - components: - - pos: -47.5,-6.5 - parent: 1 - type: Transform -- uid: 5525 - type: DisposalUnit - components: - - pos: -56.5,-10.5 - parent: 1 - type: Transform -- uid: 5526 - type: DisposalUnit - components: - - pos: -49.5,3.5 - parent: 1 - type: Transform -- uid: 5527 - type: DisposalUnit - components: - - pos: -39.5,20.5 - parent: 1 - type: Transform -- uid: 5528 - type: DisposalUnit - components: - - pos: -45.5,30.5 - parent: 1 - type: Transform -- uid: 5529 - type: DisposalUnit - components: - - pos: -10.5,30.5 - parent: 1 - type: Transform -- uid: 5530 - type: PartRodMetal - components: - - pos: -53.34716,29.649475 - parent: 1 - type: Transform -- uid: 5531 - type: DisposalUnit - components: - - pos: -26.5,29.5 - parent: 1 - type: Transform -- uid: 5532 - type: SheetSteel - components: - - pos: -52.65966,29.57135 - parent: 1 - type: Transform -- uid: 5533 - type: SheetGlass - components: - - pos: -52.206535,29.57135 - parent: 1 - type: Transform -- uid: 5534 - type: APCElectronics - components: - - pos: -51.59716,29.743225 - parent: 1 - type: Transform -- uid: 5535 - type: APCElectronics - components: - - pos: -51.50341,29.555725 - parent: 1 - type: Transform -- uid: 5536 - type: DoorElectronics - components: - - pos: -47.419823,29.691675 - parent: 1 - type: Transform -- uid: 5537 - type: DoorElectronics - components: - - pos: -47.560448,29.48855 - parent: 1 - type: Transform -- uid: 5538 - type: DoorElectronics - components: - - pos: -47.451073,29.30105 - parent: 1 - type: Transform -- uid: 5539 - type: AirAlarmElectronics - components: - - pos: -47.591698,28.816675 - parent: 1 - type: Transform -- uid: 5540 - type: AirAlarmElectronics - components: - - pos: -47.388573,28.48855 - parent: 1 - type: Transform -- uid: 5541 - type: FirelockElectronics - components: - - pos: -47.513573,27.566675 - parent: 1 - type: Transform -- uid: 5542 - type: FirelockElectronics - components: - - pos: -47.372948,27.847925 - parent: 1 - type: Transform -- uid: 5543 - type: MailingUnitElectronics - components: - - pos: -54.399563,27.347925 - parent: 1 - type: Transform -- uid: 5544 - type: MailingUnitElectronics - components: - - pos: -54.524563,27.55105 - parent: 1 - type: Transform -- uid: 5545 - type: AMEJar - components: - - pos: -53.477688,27.48855 - parent: 1 - type: Transform -- uid: 5546 - type: FigureSpawner - components: - - pos: -52.5,27.5 - parent: 1 - type: Transform -- uid: 5547 - type: GeneratorUraniumMachineCircuitboard - components: - - pos: -49.43629,25.521496 - parent: 1 - type: Transform -- uid: 5548 - type: StasisBedMachineCircuitboard - components: - - pos: -49.451916,24.552746 - parent: 1 - type: Transform -- uid: 5549 - type: SubstationMachineCircuitboard - components: - - pos: -52.589783,25.717905 - parent: 1 - type: Transform -- uid: 5550 - type: SubstationMachineCircuitboard - components: - - pos: -52.433533,25.45228 - parent: 1 - type: Transform -- uid: 5551 - type: SMESMachineCircuitboard - components: - - pos: -52.558533,24.686655 - parent: 1 - type: Transform -- uid: 5552 - type: SMESMachineCircuitboard - components: - - pos: -52.386658,24.45228 - parent: 1 - type: Transform -- uid: 5553 - type: OreProcessorMachineCircuitboard - components: - - pos: -49.433533,23.561655 - parent: 1 - type: Transform -- uid: 5554 - type: PortableScrubberMachineCircuitBoard - components: - - pos: -52.480408,23.530405 - parent: 1 - type: Transform -- uid: 5555 - type: BedsheetOrange - components: - - rot: 3.141592653589793 rad - pos: -15.5,22.5 - parent: 1 - type: Transform -- uid: 5556 - type: CrateFilledSpawner - components: - - pos: -42.5,17.5 - parent: 1 - type: Transform -- uid: 5557 - type: CrateEmptySpawner - components: - - pos: -44.5,17.5 - parent: 1 - type: Transform -- uid: 5558 - type: MaintenanceWeaponSpawner - components: - - pos: -47.5,17.5 - parent: 1 - type: Transform -- uid: 5559 - type: ClothingUniformJumpsuitAncient - components: - - pos: -45.64481,17.603561 - parent: 1 - type: Transform -- uid: 5560 - type: MaintenanceToolSpawner - components: - - pos: -40.5,18.5 - parent: 1 - type: Transform -- uid: 5561 - type: MaintenanceToolSpawner - components: - - pos: -40.5,17.5 - parent: 1 - type: Transform -- uid: 5562 - type: Catwalk - components: - - pos: -41.5,15.5 - parent: 1 - type: Transform -- uid: 5563 - type: Catwalk - components: - - pos: -41.5,14.5 - parent: 1 - type: Transform -- uid: 5564 - type: Catwalk - components: - - pos: -43.5,14.5 - parent: 1 - type: Transform -- uid: 5565 - type: BedsheetOrange - components: - - rot: 3.141592653589793 rad - pos: -17.5,22.5 - parent: 1 - type: Transform -- uid: 5566 - type: Catwalk - components: - - pos: -45.5,14.5 - parent: 1 - type: Transform -- uid: 5567 - type: Catwalk - components: - - pos: -46.5,14.5 - parent: 1 - type: Transform -- uid: 5568 - type: Catwalk - components: - - pos: -47.5,14.5 - parent: 1 - type: Transform -- uid: 5569 - type: WindowReinforcedDirectional - components: - - pos: -17.5,24.5 - parent: 1 - type: Transform -- uid: 5570 - type: WindoorSecurityLocked - components: - - pos: -16.5,24.5 - parent: 1 - type: Transform -- uid: 5571 - type: Catwalk - components: - - pos: -50.5,14.5 - parent: 1 - type: Transform -- uid: 5572 - type: CableHV - components: - - pos: -20.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5573 - type: Catwalk - components: - - pos: -50.5,16.5 - parent: 1 - type: Transform -- uid: 5574 - type: Catwalk - components: - - pos: -50.5,17.5 - parent: 1 - type: Transform -- uid: 5575 - type: CableHV - components: - - pos: -17.5,20.5 - parent: 1 - type: Transform -- uid: 5576 - type: Catwalk - components: - - pos: -50.5,19.5 - parent: 1 - type: Transform -- uid: 5577 - type: AirlockMaintLocked - components: - - rot: 3.141592653589793 rad - pos: -14.5,20.5 - parent: 1 - type: Transform -- uid: 5578 - type: Catwalk - components: - - pos: -50.5,21.5 - parent: 1 - type: Transform -- uid: 5579 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -57.5,83.5 - parent: 1 - type: Transform -- uid: 5580 - type: Catwalk - components: - - pos: -48.5,21.5 - parent: 1 - type: Transform -- uid: 5581 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -20.5,12.5 - parent: 1 - type: Transform -- uid: 5582 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -20.5,14.5 - parent: 1 - type: Transform -- uid: 5583 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -20.5,11.5 - parent: 1 - type: Transform -- uid: 5584 - type: Catwalk - components: - - pos: -44.5,21.5 - parent: 1 - type: Transform -- uid: 5585 - type: Catwalk - components: - - pos: -43.5,21.5 - parent: 1 - type: Transform -- uid: 5586 - type: AirCanister - components: - - pos: -2.5,36.5 - parent: 1 - type: Transform -- uid: 5587 - type: Catwalk - components: - - pos: -41.5,21.5 - parent: 1 - type: Transform -- uid: 5588 - type: CableMV - components: - - pos: -44.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5589 - type: CableMV - components: - - pos: -46.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5590 - type: Catwalk - components: - - pos: -44.5,22.5 - parent: 1 - type: Transform -- uid: 5591 - type: NitrogenCanister - components: - - pos: -3.5,36.5 - parent: 1 - type: Transform -- uid: 5592 - type: Catwalk - components: - - pos: -44.5,24.5 - parent: 1 - type: Transform -- uid: 5593 - type: Catwalk - components: - - pos: -44.5,25.5 - parent: 1 - type: Transform -- uid: 5594 - type: MaintenanceFluffSpawner - components: - - pos: -31.5,12.5 - parent: 1 - type: Transform -- uid: 5595 - type: Catwalk - components: - - pos: -44.5,27.5 - parent: 1 - type: Transform -- uid: 5596 - type: Firelock - components: - - pos: -20.5,15.5 - parent: 1 - type: Transform -- uid: 5597 - type: DisposalUnit - components: - - pos: -48.5,8.5 - parent: 1 - type: Transform -- uid: 5598 - type: Rack - components: - - pos: -49.5,8.5 - parent: 1 - type: Transform -- uid: 5599 - type: Rack - components: - - pos: -43.5,13.5 - parent: 1 - type: Transform -- uid: 5600 - type: Rack - components: - - pos: -40.5,13.5 - parent: 1 - type: Transform -- uid: 5601 - type: Table - components: - - pos: -41.5,13.5 - parent: 1 - type: Transform -- uid: 5602 - type: Table - components: - - pos: -46.5,15.5 - parent: 1 - type: Transform -- uid: 5603 - type: Table - components: - - pos: -47.5,15.5 - parent: 1 - type: Transform -- uid: 5604 - type: ClosetFireFilled - components: - - pos: -43.5,15.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5605 - type: ClosetEmergencyFilledRandom - components: - - pos: -44.5,15.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5606 - type: ClosetMaintenanceFilledRandom - components: - - pos: -45.5,15.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5607 - type: ClosetFireFilled - components: - - pos: -45.5,28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5608 - type: ClosetEmergencyFilledRandom - components: - - pos: -45.5,27.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5609 - type: ClosetMaintenanceFilledRandom - components: - - pos: -45.5,26.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5610 - type: Table - components: - - pos: -45.5,25.5 - parent: 1 - type: Transform -- uid: 5611 - type: Table - components: - - pos: -45.5,24.5 - parent: 1 - type: Transform -- uid: 5612 - type: MaintenanceFluffSpawner - components: - - pos: -45.5,25.5 - parent: 1 - type: Transform -- uid: 5613 - type: WeldingFuelTankFull - components: - - pos: -48.5,15.5 - parent: 1 - type: Transform -- uid: 5614 - type: WaterTankFull - components: - - pos: -49.5,15.5 - parent: 1 - type: Transform -- uid: 5615 - type: WeldingFuelTankFull - components: - - pos: -50.5,29.5 - parent: 1 - type: Transform -- uid: 5616 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -48.5,28.5 - parent: 1 - type: Transform -- uid: 5617 - type: ChairOfficeLight - components: - - pos: -41.5,24.5 - parent: 1 - type: Transform -- uid: 5618 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -40.5,14.5 - parent: 1 - type: Transform -- uid: 5619 - type: MaintenanceToolSpawner - components: - - pos: -40.5,13.5 - parent: 1 - type: Transform -- uid: 5620 - type: MaintenanceToolSpawner - components: - - pos: -43.5,13.5 - parent: 1 - type: Transform -- uid: 5621 - type: MaintenanceWeaponSpawner - components: - - pos: -45.5,24.5 - parent: 1 - type: Transform -- uid: 5622 - type: MaintenanceFluffSpawner - components: - - pos: -46.5,15.5 - parent: 1 - type: Transform -- uid: 5623 - type: MaintenanceFluffSpawner - components: - - pos: -47.5,15.5 - parent: 1 - type: Transform -- uid: 5624 - type: MaintenanceFluffSpawner - components: - - pos: -41.5,13.5 - parent: 1 - type: Transform -- uid: 5625 - type: Rack - components: - - pos: -45.5,23.5 - parent: 1 - type: Transform -- uid: 5626 - type: MaintenanceToolSpawner - components: - - pos: -45.5,23.5 - parent: 1 - type: Transform -- uid: 5627 - type: Catwalk - components: - - pos: -44.5,13.5 - parent: 1 - type: Transform -- uid: 5628 - type: Catwalk - components: - - pos: -44.5,12.5 - parent: 1 - type: Transform -- uid: 5629 - type: WallReinforced - components: - - pos: -18.5,24.5 - parent: 1 - type: Transform -- uid: 5630 - type: Catwalk - components: - - pos: -44.5,10.5 - parent: 1 - type: Transform -- uid: 5631 - type: Catwalk - components: - - pos: -44.5,9.5 - parent: 1 - type: Transform -- uid: 5632 - type: WallReinforced - components: - - pos: -18.5,26.5 - parent: 1 - type: Transform -- uid: 5633 - type: GrenadeFlashBang - components: - - pos: -49.63598,8.488159 - parent: 1 - type: Transform -- uid: 5634 - type: GrenadeFlashBang - components: - - pos: -49.32348,8.597534 - parent: 1 - type: Transform -- uid: 5635 - type: Table - components: - - pos: -26.5,26.5 - parent: 1 - type: Transform -- uid: 5636 - type: Table - components: - - pos: -25.5,26.5 - parent: 1 - type: Transform -- uid: 5637 - type: Table - components: - - pos: -24.5,26.5 - parent: 1 - type: Transform -- uid: 5638 - type: Rack - components: - - pos: -23.5,26.5 - parent: 1 - type: Transform -- uid: 5639 - type: Table - components: - - pos: -24.5,29.5 - parent: 1 - type: Transform -- uid: 5640 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: -23.5,29.5 - parent: 1 - type: Transform -- uid: 5641 - type: CableHVStack - components: - - pos: -26.556284,26.690647 - parent: 1 - type: Transform -- uid: 5642 - type: CableMVStack - components: - - pos: -26.306284,26.581272 - parent: 1 - type: Transform -- uid: 5643 - type: CableApcStack - components: - - pos: -25.946909,26.643772 - parent: 1 - type: Transform -- uid: 5644 - type: ToolboxMechanicalFilled - components: - - pos: -25.165659,26.690647 - parent: 1 - type: Transform -- uid: 5645 - type: ToolboxEmergencyFilled - components: - - pos: -24.587534,26.550022 - parent: 1 - type: Transform -- uid: 5646 - type: ToolboxElectricalFilled - components: - - pos: -25.110394,26.456669 - parent: 1 - type: Transform - - nextAttack: 216.4928841 - type: MeleeWeapon -- uid: 5647 - type: Multitool - components: - - pos: -24.502523,29.558752 - parent: 1 - type: Transform -- uid: 5648 - type: Wrench - components: - - pos: -24.486898,29.543127 - parent: 1 - type: Transform - - nextAttack: 238.3761285 - type: MeleeWeapon -- uid: 5649 - type: Crowbar - components: - - pos: -24.42766,29.496252 - parent: 1 - type: Transform - - nextAttack: 222.5928597 - type: MeleeWeapon -- uid: 5650 - type: ClothingBeltUtility - components: - - pos: -23.493784,26.550022 - parent: 1 - type: Transform -- uid: 5651 - type: FloraTree03 - components: - - pos: -34.080067,20.500618 - parent: 1 - type: Transform -- uid: 5652 - type: FloraTree01 - components: - - pos: -31.673817,19.688118 - parent: 1 - type: Transform -- uid: 5653 - type: FloraTree04 - components: - - pos: -33.986317,15.672493 - parent: 1 - type: Transform -- uid: 5654 - type: Catwalk - components: - - pos: -33.5,9.5 - parent: 1 - type: Transform -- uid: 5655 - type: AirlockEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: -17.5,17.5 - parent: 1 - type: Transform -- uid: 5656 - type: OxygenCanister - components: - - pos: -4.5,36.5 - parent: 1 - type: Transform -- uid: 5657 - type: Catwalk - components: - - pos: -33.5,12.5 - parent: 1 - type: Transform -- uid: 5658 - type: Catwalk - components: - - pos: -33.5,13.5 - parent: 1 - type: Transform -- uid: 5659 - type: WallReinforced - components: - - pos: -18.5,27.5 - parent: 1 - type: Transform -- uid: 5660 - type: Catwalk - components: - - pos: -31.5,13.5 - parent: 1 - type: Transform -- uid: 5661 - type: CableApcExtension - components: - - pos: -16.5,23.5 - parent: 1 - type: Transform -- uid: 5662 - type: CableHV - components: - - pos: -15.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5663 - type: Catwalk - components: - - pos: -30.5,15.5 - parent: 1 - type: Transform -- uid: 5664 - type: CableHV - components: - - pos: -14.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5665 - type: Catwalk - components: - - pos: -30.5,17.5 - parent: 1 - type: Transform -- uid: 5666 - type: Catwalk - components: - - pos: -30.5,20.5 - parent: 1 - type: Transform -- uid: 5667 - type: CableHV - components: - - pos: -16.5,20.5 - parent: 1 - type: Transform -- uid: 5668 - type: WallReinforced - components: - - pos: -17.5,21.5 - parent: 1 - type: Transform -- uid: 5669 - type: Catwalk - components: - - pos: -28.5,21.5 - parent: 1 - type: Transform -- uid: 5670 - type: OxygenCanister - components: - - pos: -26.5,20.5 - parent: 1 - type: Transform -- uid: 5671 - type: Catwalk - components: - - pos: -26.5,21.5 - parent: 1 - type: Transform -- uid: 5672 - type: Catwalk - components: - - pos: -25.5,21.5 - parent: 1 - type: Transform -- uid: 5673 - type: AirCanister - components: - - pos: -27.5,20.5 - parent: 1 - type: Transform -- uid: 5674 - type: Catwalk - components: - - pos: -23.5,21.5 - parent: 1 - type: Transform -- uid: 5675 - type: NitrogenCanister - components: - - pos: -25.5,20.5 - parent: 1 - type: Transform -- uid: 5676 - type: Catwalk - components: - - pos: -21.5,21.5 - parent: 1 - type: Transform -- uid: 5677 - type: Catwalk - components: - - pos: -20.5,21.5 - parent: 1 - type: Transform -- uid: 5678 - type: CableHV - components: - - pos: -19.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5679 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: -16.5,16.5 - parent: 1 - type: Transform -- uid: 5680 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -31.5,12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 5681 - type: WallReinforced - components: - - pos: -18.5,25.5 - parent: 1 - type: Transform -- uid: 5682 - type: CableHV - components: - - pos: -20.5,17.5 - parent: 1 - type: Transform -- uid: 5683 - type: Catwalk - components: - - pos: -20.5,22.5 - parent: 1 - type: Transform -- uid: 5684 - type: WindowReinforcedDirectional - components: - - pos: -15.5,24.5 - parent: 1 - type: Transform -- uid: 5685 - type: Catwalk - components: - - pos: -20.5,24.5 - parent: 1 - type: Transform -- uid: 5686 - type: WallReinforced - components: - - pos: -56.5,79.5 - parent: 1 - type: Transform -- uid: 5687 - type: Catwalk - components: - - pos: -20.5,26.5 - parent: 1 - type: Transform -- uid: 5688 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -17.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5689 - type: Catwalk - components: - - pos: -19.5,19.5 - parent: 1 - type: Transform -- uid: 5690 - type: GasPipeStraight - components: - - pos: -17.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5691 - type: Catwalk - components: - - pos: -19.5,17.5 - parent: 1 - type: Transform -- uid: 5692 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -16.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5693 - type: Catwalk - components: - - pos: -19.5,15.5 - parent: 1 - type: Transform -- uid: 5694 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -7.5,21.5 - parent: 1 - type: Transform -- uid: 5695 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -7.5,20.5 - parent: 1 - type: Transform -- uid: 5696 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -7.5,23.5 - parent: 1 - type: Transform -- uid: 5697 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1 - type: Transform -- uid: 5698 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -3.5,15.5 - parent: 1 - type: Transform -- uid: 5699 - type: Catwalk - components: - - pos: -19.5,9.5 - parent: 1 - type: Transform -- uid: 5700 - type: CableApcExtension - components: - - pos: -30.5,23.5 - parent: 1 - type: Transform -- uid: 5701 - type: CableApcExtension - components: - - pos: -33.5,11.5 - parent: 1 - type: Transform -- uid: 5702 - type: CableApcExtension - components: - - pos: -33.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5703 - type: CableApcExtension - components: - - pos: -33.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5704 - type: CableApcExtension - components: - - pos: -29.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5705 - type: CableApcExtension - components: - - pos: -30.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5706 - type: StatueVenusRed - components: - - pos: -34.5,18.5 - parent: 1 - type: Transform -- uid: 5707 - type: StatueVenusBlue - components: - - pos: -32.5,17.5 - parent: 1 - type: Transform -- uid: 5708 - type: ClosetFireFilled - components: - - pos: -34.5,9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5709 - type: ClosetMaintenanceFilledRandom - components: - - pos: -34.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5710 - type: ClosetEmergencyFilledRandom - components: - - pos: -34.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5711 - type: WeldingFuelTankFull - components: - - pos: -23.5,20.5 - parent: 1 - type: Transform -- uid: 5712 - type: WaterTankFull - components: - - pos: -24.5,20.5 - parent: 1 - type: Transform -- uid: 5713 - type: Table - components: - - pos: -22.5,20.5 - parent: 1 - type: Transform -- uid: 5714 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -4.5,17.5 - parent: 1 - type: Transform -- uid: 5715 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -4.5,16.5 - parent: 1 - type: Transform -- uid: 5716 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -7.5,23.5 - parent: 1 - type: Transform -- uid: 5717 - type: Table - components: - - pos: -30.5,12.5 - parent: 1 - type: Transform -- uid: 5718 - type: Table - components: - - pos: -34.5,13.5 - parent: 1 - type: Transform -- uid: 5719 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -3.5,14.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 5720 - type: Table - components: - - pos: -20.5,14.5 - parent: 1 - type: Transform -- uid: 5721 - type: CableHV - components: - - pos: -17.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5722 - type: WallSolid - components: - - pos: -43.5,49.5 - parent: 1 - type: Transform -- uid: 5723 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -52.5,65.5 - parent: 1 - type: Transform -- uid: 5724 - type: WallSolid - components: - - pos: -44.5,48.5 - parent: 1 - type: Transform -- uid: 5725 - type: WallSolidRust - components: - - pos: -43.5,48.5 - parent: 1 - type: Transform -- uid: 5726 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -50.5,65.5 - parent: 1 - type: Transform -- uid: 5727 - type: Rack - components: - - pos: -20.5,29.5 - parent: 1 - type: Transform -- uid: 5728 - type: Rack - components: - - pos: -20.5,13.5 - parent: 1 - type: Transform -- uid: 5729 - type: ClosetEmergencyFilledRandom - components: - - pos: -20.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5730 - type: SurveillanceCameraSupply - components: - - pos: -43.5,-13.5 - parent: 1 - type: Transform - - id: Salvage - type: SurveillanceCamera -- uid: 5731 - type: ClosetFireFilled - components: - - pos: -20.5,9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5732 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: -50.5,87.5 - parent: 1 - type: Transform -- uid: 5733 - type: ClosetMaintenanceFilledRandom - components: - - pos: -20.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5734 - type: VendingMachineSeeds - components: - - flags: SessionSpecific - type: MetaData - - pos: -39.5,50.5 - parent: 1 - type: Transform -- uid: 5735 - type: ClosetMaintenanceFilledRandom - components: - - pos: -20.5,28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5736 - type: Firelock - components: - - pos: -21.5,20.5 - parent: 1 - type: Transform -- uid: 5737 - type: MaintenanceToolSpawner - components: - - pos: -20.5,29.5 - parent: 1 - type: Transform -- uid: 5738 - type: VendingMachineHydrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -39.5,49.5 - parent: 1 - type: Transform -- uid: 5739 - type: AirlockSecurityGlassLocked - components: - - pos: -55.5,62.5 - parent: 1 - type: Transform -- uid: 5740 - type: AirlockHeadOfSecurityLocked - components: - - pos: -59.5,62.5 - parent: 1 - type: Transform -- uid: 5741 - type: WaterTankFull - components: - - pos: -61.5,86.5 - parent: 1 - type: Transform -- uid: 5742 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -57.5,89.5 - parent: 1 - type: Transform -- uid: 5743 - type: AirlockSecurityGlassLocked - components: - - pos: -50.5,78.5 - parent: 1 - type: Transform -- uid: 5744 - type: AirlockSecurityGlassLocked - components: - - pos: -52.5,78.5 - parent: 1 - type: Transform -- uid: 5745 - type: MaintenanceFluffSpawner - components: - - pos: -34.5,13.5 - parent: 1 - type: Transform -- uid: 5746 - type: MaintenanceWeaponSpawner - components: - - pos: -30.5,12.5 - parent: 1 - type: Transform -- uid: 5747 - type: MaintenanceFluffSpawner - components: - - pos: -20.5,14.5 - parent: 1 - type: Transform -- uid: 5748 - type: MaintenanceToolSpawner - components: - - pos: -20.5,13.5 - parent: 1 - type: Transform -- uid: 5749 - type: WardrobePrison - components: - - pos: -48.5,68.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5756 - - 5757 - - 7186 - - 7187 - type: ContainerContainer -- uid: 5750 - type: WallReinforced - components: - - pos: -45.5,56.5 - parent: 1 - type: Transform -- uid: 5751 - type: Firelock - components: - - pos: -19.5,15.5 - parent: 1 - type: Transform -- uid: 5752 - type: MaintenanceWeaponSpawner - components: - - pos: -22.5,20.5 - parent: 1 - type: Transform -- uid: 5753 - type: WallSolid - components: - - pos: -45.5,55.5 - parent: 1 - type: Transform -- uid: 5754 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -45.5,68.5 - parent: 1 - type: Transform -- uid: 5755 - type: WallSolidRust - components: - - pos: -45.5,53.5 - parent: 1 - type: Transform -- uid: 5756 - type: ClothingHeadHelmetEVA - components: - - flags: InContainer - type: MetaData - - parent: 5749 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 5757 - type: ClothingHeadHelmetEVA - components: - - flags: InContainer - type: MetaData - - parent: 5749 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 5758 - type: Catwalk - components: - - pos: -5.5,9.5 - parent: 1 - type: Transform -- uid: 5759 - type: WallSolid - components: - - pos: -45.5,50.5 - parent: 1 - type: Transform -- uid: 5760 - type: ReinforcedWindow - components: - - pos: -50.5,48.5 - parent: 1 - type: Transform -- uid: 5761 - type: Catwalk - components: - - pos: -5.5,12.5 - parent: 1 - type: Transform -- uid: 5762 - type: Catwalk - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform -- uid: 5763 - type: ReinforcedWindow - components: - - pos: -51.5,48.5 - parent: 1 - type: Transform -- uid: 5764 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5765 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5766 - type: ReinforcedWindow - components: - - pos: -53.5,48.5 - parent: 1 - type: Transform -- uid: 5767 - type: Catwalk - components: - - pos: -6.5,17.5 - parent: 1 - type: Transform -- uid: 5768 - type: ReinforcedWindow - components: - - pos: -54.5,48.5 - parent: 1 - type: Transform -- uid: 5769 - type: Catwalk - components: - - pos: -6.5,19.5 - parent: 1 - type: Transform -- uid: 5770 - type: ReinforcedWindow - components: - - pos: -56.5,48.5 - parent: 1 - type: Transform -- uid: 5771 - type: Catwalk - components: - - pos: -6.5,21.5 - parent: 1 - type: Transform -- uid: 5772 - type: Catwalk - components: - - pos: -6.5,22.5 - parent: 1 - type: Transform -- uid: 5773 - type: CableApcExtension - components: - - pos: -53.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5774 - type: Catwalk - components: - - pos: -6.5,24.5 - parent: 1 - type: Transform -- uid: 5775 - type: Catwalk - components: - - pos: -6.5,25.5 - parent: 1 - type: Transform -- uid: 5776 - type: WallReinforced - components: - - pos: -64.5,50.5 - parent: 1 - type: Transform -- uid: 5777 - type: WallReinforced - components: - - pos: -58.5,56.5 - parent: 1 - type: Transform -- uid: 5778 - type: Catwalk - components: - - pos: -9.5,25.5 - parent: 1 - type: Transform -- uid: 5779 - type: ClosetEmergencyFilledRandom - components: - - pos: -4.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5780 - type: ClosetFireFilled - components: - - pos: -4.5,9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5781 - type: ClosetMaintenanceFilledRandom - components: - - pos: -4.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5782 - type: ClosetEmergencyFilledRandom - components: - - pos: -9.5,24.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5783 - type: ClosetFireFilled - components: - - pos: -8.5,24.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5784 - type: Table - components: - - pos: -7.5,22.5 - parent: 1 - type: Transform -- uid: 5785 - type: WallReinforced - components: - - pos: -58.5,49.5 - parent: 1 - type: Transform -- uid: 5786 - type: WeldingFuelTankFull - components: - - pos: -7.5,20.5 - parent: 1 - type: Transform -- uid: 5787 - type: WaterTankFull - components: - - pos: -7.5,21.5 - parent: 1 - type: Transform -- uid: 5788 - type: LockerBotanistFilled - components: - - pos: -39.5,52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5789 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5790 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5791 - type: MaintenanceFluffSpawner - components: - - pos: -7.5,22.5 - parent: 1 - type: Transform -- uid: 5792 - type: MaintenanceFluffSpawner - components: - - pos: -3.5,14.5 - parent: 1 - type: Transform -- uid: 5793 - type: MaintenanceWeaponSpawner - components: - - pos: -7.5,23.5 - parent: 1 - type: Transform -- uid: 5794 - type: LockerBotanistFilled - components: - - pos: -40.5,52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5795 - type: MaintenanceToolSpawner - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform -- uid: 5796 - type: MaintenanceToolSpawner - components: - - pos: -14.5,8.5 - parent: 1 - type: Transform -- uid: 5797 - type: MaintenanceFluffSpawner - components: - - pos: -14.5,10.5 - parent: 1 - type: Transform -- uid: 5798 - type: MaintenanceFluffSpawner - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform -- uid: 5799 - type: MaintenanceFluffSpawner - components: - - pos: -10.5,14.5 - parent: 1 - type: Transform -- uid: 5800 - type: OrganHumanHeart - components: - - pos: -9.314642,21.506338 - parent: 1 - type: Transform -- uid: 5801 - type: FoodCheese - components: - - pos: -9.517767,22.3806 - parent: 1 - type: Transform -- uid: 5802 - type: PoweredSmallLight - components: - - pos: 10.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5803 - type: FoamBlade - components: - - desc: A highly detailed replica of a real armblade. - type: MetaData - - pos: -9.533392,20.561493 - parent: 1 - type: Transform -- uid: 5804 - type: DrinkChangelingStingCan - components: - - pos: -9.689642,21.037588 - parent: 1 - type: Transform -- uid: 5805 - type: CableApcExtension - components: - - pos: 15.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5806 - type: CableApcExtension - components: - - pos: 15.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5807 - type: CableMV - components: - - pos: 17.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5808 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -26.5,8.5 - parent: 1 - type: Transform -- uid: 5809 - type: FaxMachineBase - components: - - pos: -28.5,13.5 - parent: 1 - type: Transform - - name: Library - type: FaxMachine -- uid: 5810 - type: PaperOffice - components: - - pos: -27.736298,13.6788025 - parent: 1 - type: Transform -- uid: 5811 - type: PaperOffice - components: - - pos: -27.689423,13.6631775 - parent: 1 - type: Transform -- uid: 5812 - type: PaperOffice - components: - - pos: -27.564423,13.6006775 - parent: 1 - type: Transform -- uid: 5813 - type: PaperOffice - components: - - pos: -27.376923,13.5069275 - parent: 1 - type: Transform -- uid: 5814 - type: PaperOffice - components: - - pos: -27.267548,13.4913025 - parent: 1 - type: Transform -- uid: 5815 - type: PaperOffice - components: - - pos: -27.455048,13.5850525 - parent: 1 - type: Transform -- uid: 5816 - type: WallReinforced - components: - - pos: -23.5,47.5 - parent: 1 - type: Transform -- uid: 5817 - type: WallReinforced - components: - - pos: -23.5,37.5 - parent: 1 - type: Transform -- uid: 5818 - type: WallReinforced - components: - - pos: -23.5,38.5 - parent: 1 - type: Transform -- uid: 5819 - type: WallReinforced - components: - - pos: -23.5,39.5 - parent: 1 - type: Transform -- uid: 5820 - type: ReinforcedWindow - components: - - pos: -14.5,46.5 - parent: 1 - type: Transform -- uid: 5821 - type: WallReinforced - components: - - pos: -19.5,43.5 - parent: 1 - type: Transform -- uid: 5822 - type: ReinforcedWindow - components: - - pos: -18.5,46.5 - parent: 1 - type: Transform -- uid: 5823 - type: Grille - components: - - pos: -18.5,46.5 - parent: 1 - type: Transform -- uid: 5824 - type: WallReinforced - components: - - pos: -19.5,49.5 - parent: 1 - type: Transform -- uid: 5825 - type: WallReinforced - components: - - pos: -20.5,49.5 - parent: 1 - type: Transform -- uid: 5826 - type: WallReinforced - components: - - pos: -21.5,49.5 - parent: 1 - type: Transform -- uid: 5827 - type: ReinforcedWindow - components: - - pos: -21.5,36.5 - parent: 1 - type: Transform -- uid: 5828 - type: WallReinforced - components: - - pos: -23.5,35.5 - parent: 1 - type: Transform -- uid: 5829 - type: WallReinforced - components: - - pos: -22.5,43.5 - parent: 1 - type: Transform -- uid: 5830 - type: WallReinforced - components: - - pos: -23.5,36.5 - parent: 1 - type: Transform -- uid: 5831 - type: ReinforcedWindow - components: - - pos: -18.5,47.5 - parent: 1 - type: Transform -- uid: 5832 - type: ReinforcedWindow - components: - - pos: -18.5,48.5 - parent: 1 - type: Transform -- uid: 5833 - type: ReinforcedWindow - components: - - pos: -22.5,36.5 - parent: 1 - type: Transform -- uid: 5834 - type: WallReinforced - components: - - pos: -18.5,44.5 - parent: 1 - type: Transform -- uid: 5835 - type: AirlockHeadOfPersonnelGlassLocked - components: - - pos: -18.5,45.5 - parent: 1 - type: Transform -- uid: 5836 - type: Grille - components: - - pos: -18.5,47.5 - parent: 1 - type: Transform -- uid: 5837 - type: WallSolidRust - components: - - pos: -10.5,39.5 - parent: 1 - type: Transform -- uid: 5838 - type: WallSolidRust - components: - - pos: -8.5,38.5 - parent: 1 - type: Transform -- uid: 5839 - type: WallSolid - components: - - pos: -10.5,38.5 - parent: 1 - type: Transform -- uid: 5840 - type: JetpackSecurityFilled - components: - - flags: InContainer - type: MetaData - - parent: 7919 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 5841 - type: WallSolid - components: - - pos: -10.5,40.5 - parent: 1 - type: Transform -- uid: 5842 - type: WallSolid - components: - - pos: -10.5,41.5 - parent: 1 - type: Transform -- uid: 5843 - type: WallSolidRust - components: - - pos: -10.5,44.5 - parent: 1 - type: Transform -- uid: 5844 - type: WallSolid - components: - - pos: -10.5,43.5 - parent: 1 - type: Transform -- uid: 5845 - type: WallSolidRust - components: - - pos: -6.5,45.5 - parent: 1 - type: Transform -- uid: 5846 - type: WallReinforced - components: - - pos: -9.5,45.5 - parent: 1 - type: Transform -- uid: 5847 - type: WallReinforced - components: - - pos: -10.5,45.5 - parent: 1 - type: Transform -- uid: 5848 - type: WallReinforced - components: - - pos: -11.5,45.5 - parent: 1 - type: Transform -- uid: 5849 - type: WallReinforced - components: - - pos: -12.5,45.5 - parent: 1 - type: Transform -- uid: 5850 - type: WallReinforced - components: - - pos: -14.5,45.5 - parent: 1 - type: Transform -- uid: 5851 - type: Window - components: - - pos: -14.5,44.5 - parent: 1 - type: Transform -- uid: 5852 - type: Window - components: - - pos: -14.5,43.5 - parent: 1 - type: Transform -- uid: 5853 - type: WallSolid - components: - - pos: -6.5,38.5 - parent: 1 - type: Transform -- uid: 5854 - type: WallSolidRust - components: - - pos: -5.5,38.5 - parent: 1 - type: Transform -- uid: 5855 - type: WallReinforced - components: - - pos: -9.5,48.5 - parent: 1 - type: Transform -- uid: 5856 - type: Window - components: - - pos: -14.5,39.5 - parent: 1 - type: Transform -- uid: 5857 - type: Window - components: - - pos: -14.5,38.5 - parent: 1 - type: Transform -- uid: 5858 - type: WallSolid - components: - - pos: -4.5,40.5 - parent: 1 - type: Transform -- uid: 5859 - type: WallSolidRust - components: - - pos: -10.5,42.5 - parent: 1 - type: Transform -- uid: 5860 - type: Window - components: - - pos: -14.5,35.5 - parent: 1 - type: Transform -- uid: 5861 - type: Grille - components: - - pos: -14.5,44.5 - parent: 1 - type: Transform -- uid: 5862 - type: Grille - components: - - pos: -14.5,43.5 - parent: 1 - type: Transform -- uid: 5863 - type: WallSolid - components: - - pos: -7.5,38.5 - parent: 1 - type: Transform -- uid: 5864 - type: Grille - components: - - pos: -14.5,41.5 - parent: 1 - type: Transform -- uid: 5865 - type: WallSolid - components: - - pos: -9.5,38.5 - parent: 1 - type: Transform -- uid: 5866 - type: Grille - components: - - pos: -14.5,39.5 - parent: 1 - type: Transform -- uid: 5867 - type: Grille - components: - - pos: -14.5,38.5 - parent: 1 - type: Transform -- uid: 5868 - type: WallSolidRust - components: - - pos: -4.5,38.5 - parent: 1 - type: Transform -- uid: 5869 - type: Grille - components: - - pos: -14.5,36.5 - parent: 1 - type: Transform -- uid: 5870 - type: Grille - components: - - pos: -14.5,35.5 - parent: 1 - type: Transform -- uid: 5871 - type: WallSolid - components: - - pos: -4.5,41.5 - parent: 1 - type: Transform -- uid: 5872 - type: WallSolidRust - components: - - pos: -4.5,39.5 - parent: 1 - type: Transform -- uid: 5873 - type: WallSolid - components: - - pos: -4.5,43.5 - parent: 1 - type: Transform -- uid: 5874 - type: WallSolidRust - components: - - pos: -4.5,44.5 - parent: 1 - type: Transform -- uid: 5875 - type: Girder - components: - - pos: -4.5,45.5 - parent: 1 - type: Transform -- uid: 5876 - type: WallSolid - components: - - pos: -5.5,45.5 - parent: 1 - type: Transform -- uid: 5877 - type: WallSolidRust - components: - - pos: -4.5,42.5 - parent: 1 - type: Transform -- uid: 5878 - type: AirlockMaintGlass - components: - - pos: -7.5,45.5 - parent: 1 - type: Transform -- uid: 5879 - type: WallSolidRust - components: - - pos: -8.5,45.5 - parent: 1 - type: Transform -- uid: 5880 - type: WallReinforced - components: - - pos: -13.5,45.5 - parent: 1 - type: Transform -- uid: 5881 - type: WallReinforced - components: - - pos: -9.5,50.5 - parent: 1 - type: Transform -- uid: 5882 - type: WallReinforced - components: - - pos: -9.5,49.5 - parent: 1 - type: Transform -- uid: 5883 - type: WallReinforced - components: - - pos: -6.5,52.5 - parent: 1 - type: Transform -- uid: 5884 - type: WallReinforced - components: - - pos: -10.5,50.5 - parent: 1 - type: Transform -- uid: 5885 - type: WallReinforced - components: - - pos: -14.5,50.5 - parent: 1 - type: Transform -- uid: 5886 - type: WallReinforced - components: - - pos: -13.5,50.5 - parent: 1 - type: Transform -- uid: 5887 - type: WallReinforced - components: - - pos: -12.5,50.5 - parent: 1 - type: Transform -- uid: 5888 - type: WallReinforced - components: - - pos: -11.5,50.5 - parent: 1 - type: Transform -- uid: 5889 - type: WallReinforced - components: - - pos: -9.5,46.5 - parent: 1 - type: Transform -- uid: 5890 - type: WallReinforced - components: - - pos: -6.5,49.5 - parent: 1 - type: Transform -- uid: 5891 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -5.5,54.5 - parent: 1 - type: Transform -- uid: 5892 - type: WallReinforced - components: - - pos: -6.5,48.5 - parent: 1 - type: Transform -- uid: 5893 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -6.5,53.5 - parent: 1 - type: Transform -- uid: 5894 - type: WallReinforced - components: - - pos: -4.5,54.5 - parent: 1 - type: Transform -- uid: 5895 - type: WallReinforced - components: - - pos: -3.5,54.5 - parent: 1 - type: Transform -- uid: 5896 - type: WallReinforced - components: - - pos: -12.5,52.5 - parent: 1 - type: Transform -- uid: 5897 - type: WallReinforced - components: - - pos: -9.5,52.5 - parent: 1 - type: Transform -- uid: 5898 - type: WallReinforced - components: - - pos: -8.5,52.5 - parent: 1 - type: Transform -- uid: 5899 - type: WallSolid - components: - - pos: -18.5,50.5 - parent: 1 - type: Transform -- uid: 5900 - type: ReinforcedWindow - components: - - pos: -14.5,49.5 - parent: 1 - type: Transform -- uid: 5901 - type: Grille - components: - - pos: -14.5,49.5 - parent: 1 - type: Transform -- uid: 5902 - type: WallReinforced - components: - - pos: -22.5,49.5 - parent: 1 - type: Transform -- uid: 5903 - type: WallReinforced - components: - - pos: -4.5,48.5 - parent: 1 - type: Transform -- uid: 5904 - type: WallReinforced - components: - - pos: -15.5,52.5 - parent: 1 - type: Transform -- uid: 5905 - type: WallReinforced - components: - - pos: -18.5,52.5 - parent: 1 - type: Transform -- uid: 5906 - type: WallReinforced - components: - - pos: -14.5,52.5 - parent: 1 - type: Transform -- uid: 5907 - type: WallReinforced - components: - - pos: -6.5,51.5 - parent: 1 - type: Transform -- uid: 5908 - type: WallReinforced - components: - - pos: -6.5,50.5 - parent: 1 - type: Transform -- uid: 5909 - type: WallReinforced - components: - - pos: -5.5,53.5 - parent: 1 - type: Transform -- uid: 5910 - type: ChairFolding - components: - - pos: -9.5,42.5 - parent: 1 - type: Transform -- uid: 5911 - type: PosterContrabandGreyTide - components: - - pos: -7.5,38.5 - parent: 1 - type: Transform -- uid: 5912 - type: ChairFolding - components: - - pos: -8.5,43.5 - parent: 1 - type: Transform -- uid: 5913 - type: ChairFolding - components: - - pos: -9.5,43.5 - parent: 1 - type: Transform -- uid: 5914 - type: ChairFolding - components: - - pos: -6.5,43.5 - parent: 1 - type: Transform -- uid: 5915 - type: ChairFolding - components: - - pos: -5.5,43.5 - parent: 1 - type: Transform -- uid: 5916 - type: Carpet - components: - - pos: -7.5,44.5 - parent: 1 - type: Transform -- uid: 5917 - type: Carpet - components: - - pos: -7.5,43.5 - parent: 1 - type: Transform -- uid: 5918 - type: Carpet - components: - - pos: -7.5,42.5 - parent: 1 - type: Transform -- uid: 5919 - type: Carpet - components: - - pos: -7.5,41.5 - parent: 1 - type: Transform -- uid: 5920 - type: Carpet - components: - - pos: -7.5,40.5 - parent: 1 - type: Transform -- uid: 5921 - type: Carpet - components: - - pos: -7.5,39.5 - parent: 1 - type: Transform -- uid: 5922 - type: Carpet - components: - - pos: -8.5,40.5 - parent: 1 - type: Transform -- uid: 5923 - type: Carpet - components: - - pos: -9.5,40.5 - parent: 1 - type: Transform -- uid: 5924 - type: Carpet - components: - - pos: -6.5,40.5 - parent: 1 - type: Transform -- uid: 5925 - type: Carpet - components: - - pos: -5.5,40.5 - parent: 1 - type: Transform -- uid: 5926 - type: AltarChaos - components: - - pos: -7.5,39.5 - parent: 1 - type: Transform -- uid: 5927 - type: ChairFolding - components: - - pos: -8.5,42.5 - parent: 1 - type: Transform -- uid: 5928 - type: ChairFolding - components: - - pos: -8.5,41.5 - parent: 1 - type: Transform -- uid: 5929 - type: ChairFolding - components: - - pos: -9.5,41.5 - parent: 1 - type: Transform -- uid: 5930 - type: ChairFolding - components: - - pos: -6.5,42.5 - parent: 1 - type: Transform -- uid: 5931 - type: ChairFolding - components: - - pos: -6.5,41.5 - parent: 1 - type: Transform -- uid: 5932 - type: ChairFolding - components: - - pos: -5.5,41.5 - parent: 1 - type: Transform -- uid: 5933 - type: ChairFolding - components: - - pos: -5.5,42.5 - parent: 1 - type: Transform -- uid: 5934 - type: WardrobeGreyFilled - components: - - pos: -6.5,39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5935 - type: WardrobeGreyFilled - components: - - pos: -5.5,39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5936 - type: WardrobeGreyFilled - components: - - pos: -8.5,39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5937 - type: WardrobeGreyFilled - components: - - pos: -9.5,39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5938 - type: ClothingHandsGlovesColorGray - components: - - desc: These specially insulated grey gloves belong to the king of tiders. A small tag is inscribed with the initials, "H.M." - name: grey gloves of the tider king - type: MetaData - - pos: -7.521523,39.691025 - parent: 1 - type: Transform - - type: Insulated -- uid: 5939 - type: ReinforcedWindow - components: - - pos: -2.5,49.5 - parent: 1 - type: Transform -- uid: 5940 - type: WallReinforced - components: - - pos: -5.5,48.5 - parent: 1 - type: Transform -- uid: 5941 - type: WallReinforced - components: - - pos: -11.5,52.5 - parent: 1 - type: Transform -- uid: 5942 - type: WallReinforced - components: - - pos: -13.5,52.5 - parent: 1 - type: Transform -- uid: 5943 - type: WallReinforced - components: - - pos: -7.5,52.5 - parent: 1 - type: Transform -- uid: 5944 - type: WallReinforced - components: - - pos: -3.5,48.5 - parent: 1 - type: Transform -- uid: 5945 - type: WallReinforced - components: - - pos: -2.5,48.5 - parent: 1 - type: Transform -- uid: 5946 - type: WallReinforced - components: - - pos: -18.5,49.5 - parent: 1 - type: Transform -- uid: 5947 - type: WallReinforced - components: - - pos: -17.5,52.5 - parent: 1 - type: Transform -- uid: 5948 - type: WallReinforced - components: - - pos: -10.5,52.5 - parent: 1 - type: Transform -- uid: 5949 - type: ReinforcedWindow - components: - - pos: -2.5,50.5 - parent: 1 - type: Transform -- uid: 5950 - type: ReinforcedWindow - components: - - pos: -2.5,51.5 - parent: 1 - type: Transform -- uid: 5951 - type: ReinforcedWindow - components: - - pos: -2.5,52.5 - parent: 1 - type: Transform -- uid: 5952 - type: ReinforcedWindow - components: - - pos: -2.5,53.5 - parent: 1 - type: Transform -- uid: 5953 - type: WallReinforced - components: - - pos: -2.5,54.5 - parent: 1 - type: Transform -- uid: 5954 - type: WallSolid - components: - - pos: 1.5,48.5 - parent: 1 - type: Transform -- uid: 5955 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 2.5,48.5 - parent: 1 - type: Transform -- uid: 5956 - type: WallSolid - components: - - pos: 1.5,50.5 - parent: 1 - type: Transform -- uid: 5957 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 1.5,51.5 - parent: 1 - type: Transform -- uid: 5958 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 1.5,52.5 - parent: 1 - type: Transform -- uid: 5959 - type: WallReinforced - components: - - pos: 1.5,54.5 - parent: 1 - type: Transform -- uid: 5960 - type: ReinforcedWindow - components: - - pos: -1.5,54.5 - parent: 1 - type: Transform -- uid: 5961 - type: ReinforcedWindow - components: - - pos: -0.5,54.5 - parent: 1 - type: Transform -- uid: 5962 - type: ReinforcedWindow - components: - - pos: 0.5,54.5 - parent: 1 - type: Transform -- uid: 5963 - type: Grille - components: - - pos: -1.5,54.5 - parent: 1 - type: Transform -- uid: 5964 - type: Grille - components: - - pos: -0.5,54.5 - parent: 1 - type: Transform -- uid: 5965 - type: Grille - components: - - pos: 0.5,54.5 - parent: 1 - type: Transform -- uid: 5966 - type: Grille - components: - - pos: -2.5,53.5 - parent: 1 - type: Transform -- uid: 5967 - type: Grille - components: - - pos: -2.5,52.5 - parent: 1 - type: Transform -- uid: 5968 - type: Grille - components: - - pos: -2.5,51.5 - parent: 1 - type: Transform -- uid: 5969 - type: Grille - components: - - pos: -2.5,50.5 - parent: 1 - type: Transform -- uid: 5970 - type: Grille - components: - - pos: -2.5,49.5 - parent: 1 - type: Transform -- uid: 5971 - type: WallReinforced - components: - - pos: 1.5,53.5 - parent: 1 - type: Transform -- uid: 5972 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 4.5,48.5 - parent: 1 - type: Transform -- uid: 5973 - type: WallSolid - components: - - pos: 0.5,48.5 - parent: 1 - type: Transform -- uid: 5974 - type: WallReinforced - components: - - pos: 10.5,44.5 - parent: 1 - type: Transform -- uid: 5975 - type: WallReinforced - components: - - pos: 9.5,44.5 - parent: 1 - type: Transform -- uid: 5976 - type: WallReinforced - components: - - pos: 12.5,44.5 - parent: 1 - type: Transform -- uid: 5977 - type: WallReinforced - components: - - pos: 8.5,42.5 - parent: 1 - type: Transform -- uid: 5978 - type: Girder - components: - - pos: 16.5,37.5 - parent: 1 - type: Transform -- uid: 5979 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 9.5,49.5 - parent: 1 - type: Transform -- uid: 5980 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 13.5,47.5 - parent: 1 - type: Transform -- uid: 5981 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 13.5,46.5 - parent: 1 - type: Transform -- uid: 5982 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 8.5,47.5 - parent: 1 - type: Transform -- uid: 5983 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 9.5,47.5 - parent: 1 - type: Transform -- uid: 5984 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 11.5,47.5 - parent: 1 - type: Transform -- uid: 5985 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 12.5,47.5 - parent: 1 - type: Transform -- uid: 5986 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 10.5,47.5 - parent: 1 - type: Transform -- uid: 5987 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 8.5,46.5 - parent: 1 - type: Transform -- uid: 5988 - type: WallReinforced - components: - - pos: 13.5,42.5 - parent: 1 - type: Transform -- uid: 5989 - type: WallReinforced - components: - - pos: 13.5,41.5 - parent: 1 - type: Transform -- uid: 5990 - type: WallReinforced - components: - - pos: 12.5,41.5 - parent: 1 - type: Transform -- uid: 5991 - type: WallReinforced - components: - - pos: 11.5,41.5 - parent: 1 - type: Transform -- uid: 5992 - type: WallReinforced - components: - - pos: 13.5,44.5 - parent: 1 - type: Transform -- uid: 5993 - type: WallReinforced - components: - - pos: 22.5,44.5 - parent: 1 - type: Transform -- uid: 5994 - type: WallReinforced - components: - - pos: 9.5,41.5 - parent: 1 - type: Transform -- uid: 5995 - type: WallReinforced - components: - - pos: 8.5,41.5 - parent: 1 - type: Transform -- uid: 5996 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 5.5,52.5 - parent: 1 - type: Transform -- uid: 5997 - type: WallReinforced - components: - - pos: 21.5,44.5 - parent: 1 - type: Transform -- uid: 5998 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 5.5,50.5 - parent: 1 - type: Transform -- uid: 5999 - type: WallSolid - components: - - pos: 5.5,48.5 - parent: 1 - type: Transform -- uid: 6000 - type: WallReinforced - components: - - pos: 2.5,53.5 - parent: 1 - type: Transform -- uid: 6001 - type: WallReinforced - components: - - pos: 3.5,53.5 - parent: 1 - type: Transform -- uid: 6002 - type: WallReinforced - components: - - pos: 4.5,53.5 - parent: 1 - type: Transform -- uid: 6003 - type: WallReinforced - components: - - pos: 5.5,53.5 - parent: 1 - type: Transform -- uid: 6004 - type: WallSolid - components: - - pos: 6.5,49.5 - parent: 1 - type: Transform -- uid: 6005 - type: WallSolid - components: - - pos: 5.5,51.5 - parent: 1 - type: Transform -- uid: 6006 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 1.5,49.5 - parent: 1 - type: Transform -- uid: 6007 - type: WallSolid - components: - - pos: 5.5,49.5 - parent: 1 - type: Transform -- uid: 6008 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 9.5,50.5 - parent: 1 - type: Transform -- uid: 6009 - type: WallReinforced - components: - - pos: 6.5,53.5 - parent: 1 - type: Transform -- uid: 6010 - type: WallReinforced - components: - - pos: 7.5,53.5 - parent: 1 - type: Transform -- uid: 6011 - type: WallReinforced - components: - - pos: 8.5,53.5 - parent: 1 - type: Transform -- uid: 6012 - type: WallReinforced - components: - - pos: 9.5,53.5 - parent: 1 - type: Transform -- uid: 6013 - type: WallReinforced - components: - - pos: 10.5,53.5 - parent: 1 - type: Transform -- uid: 6014 - type: WallReinforced - components: - - pos: 11.5,53.5 - parent: 1 - type: Transform -- uid: 6015 - type: WallReinforced - components: - - pos: 12.5,53.5 - parent: 1 - type: Transform -- uid: 6016 - type: ReinforcedWindow - components: - - pos: 16.5,53.5 - parent: 1 - type: Transform -- uid: 6017 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 19.5,51.5 - parent: 1 - type: Transform -- uid: 6018 - type: ReinforcedWindow - components: - - pos: 13.5,53.5 - parent: 1 - type: Transform -- uid: 6019 - type: ReinforcedWindow - components: - - pos: 14.5,53.5 - parent: 1 - type: Transform -- uid: 6020 - type: ReinforcedWindow - components: - - pos: 15.5,53.5 - parent: 1 - type: Transform -- uid: 6021 - type: WallReinforced - components: - - pos: 16.5,49.5 - parent: 1 - type: Transform -- uid: 6022 - type: WallReinforced - components: - - pos: 16.5,48.5 - parent: 1 - type: Transform -- uid: 6023 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 19.5,53.5 - parent: 1 - type: Transform -- uid: 6024 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 19.5,50.5 - parent: 1 - type: Transform -- uid: 6025 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 18.5,47.5 - parent: 1 - type: Transform -- uid: 6026 - type: WallSolid - components: - - pos: 8.5,49.5 - parent: 1 - type: Transform -- uid: 6027 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 8.5,45.5 - parent: 1 - type: Transform -- uid: 6028 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 17.5,47.5 - parent: 1 - type: Transform -- uid: 6029 - type: WallSolid - components: - - pos: 11.5,49.5 - parent: 1 - type: Transform -- uid: 6030 - type: WallReinforced - components: - - pos: 12.5,52.5 - parent: 1 - type: Transform -- uid: 6031 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 13.5,49.5 - parent: 1 - type: Transform -- uid: 6032 - type: WallReinforced - components: - - pos: 14.5,49.5 - parent: 1 - type: Transform -- uid: 6033 - type: WallReinforced - components: - - pos: 15.5,49.5 - parent: 1 - type: Transform -- uid: 6034 - type: WallSolid - components: - - pos: 9.5,52.5 - parent: 1 - type: Transform -- uid: 6035 - type: WallSolid - components: - - pos: 9.5,51.5 - parent: 1 - type: Transform -- uid: 6036 - type: SpawnPointServiceWorker - components: - - pos: -35.5,43.5 - parent: 1 - type: Transform -- uid: 6037 - type: WallReinforced - components: - - pos: 12.5,49.5 - parent: 1 - type: Transform -- uid: 6038 - type: WallReinforced - components: - - pos: 12.5,51.5 - parent: 1 - type: Transform -- uid: 6039 - type: WallReinforced - components: - - pos: 12.5,50.5 - parent: 1 - type: Transform -- uid: 6040 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 18.5,53.5 - parent: 1 - type: Transform -- uid: 6041 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 17.5,53.5 - parent: 1 - type: Transform -- uid: 6042 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 19.5,52.5 - parent: 1 - type: Transform -- uid: 6043 - type: Grille - components: - - pos: 16.5,53.5 - parent: 1 - type: Transform -- uid: 6044 - type: Grille - components: - - pos: 15.5,53.5 - parent: 1 - type: Transform -- uid: 6045 - type: Grille - components: - - pos: 14.5,53.5 - parent: 1 - type: Transform -- uid: 6046 - type: Grille - components: - - pos: 13.5,53.5 - parent: 1 - type: Transform -- uid: 6047 - type: WallReinforced - components: - - pos: 8.5,43.5 - parent: 1 - type: Transform -- uid: 6048 - type: WallReinforced - components: - - pos: 8.5,44.5 - parent: 1 - type: Transform -- uid: 6049 - type: WallReinforced - components: - - pos: 11.5,44.5 - parent: 1 - type: Transform -- uid: 6050 - type: WallReinforced - components: - - pos: 13.5,43.5 - parent: 1 - type: Transform -- uid: 6051 - type: WallReinforced - components: - - pos: 23.5,44.5 - parent: 1 - type: Transform -- uid: 6052 - type: WallReinforced - components: - - pos: 24.5,44.5 - parent: 1 - type: Transform -- uid: 6053 - type: WallReinforced - components: - - pos: 24.5,43.5 - parent: 1 - type: Transform -- uid: 6054 - type: WallReinforced - components: - - pos: 24.5,42.5 - parent: 1 - type: Transform -- uid: 6055 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 16.5,47.5 - parent: 1 - type: Transform -- uid: 6056 - type: Girder - components: - - pos: 20.5,36.5 - parent: 1 - type: Transform -- uid: 6057 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: 16.5,43.5 - parent: 1 - type: Transform -- uid: 6058 - type: Barricade - components: - - pos: -17.5,50.5 - parent: 1 - type: Transform -- uid: 6059 - type: Rack - components: - - pos: -11.5,49.5 - parent: 1 - type: Transform -- uid: 6060 - type: WallSolid - components: - - pos: 16.5,41.5 - parent: 1 - type: Transform -- uid: 6061 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 19.5,46.5 - parent: 1 - type: Transform -- uid: 6062 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 19.5,44.5 - parent: 1 - type: Transform -- uid: 6063 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 19.5,45.5 - parent: 1 - type: Transform -- uid: 6064 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 19.5,47.5 - parent: 1 - type: Transform -- uid: 6065 - type: Rack - components: - - pos: -12.5,49.5 - parent: 1 - type: Transform -- uid: 6066 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: 17.5,44.5 - parent: 1 - type: Transform -- uid: 6067 - type: Barricade - components: - - pos: -15.5,50.5 - parent: 1 - type: Transform -- uid: 6068 - type: Rack - components: - - pos: -13.5,46.5 - parent: 1 - type: Transform -- uid: 6069 - type: Rack - components: - - pos: -10.5,49.5 - parent: 1 - type: Transform -- uid: 6070 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,46.5 - parent: 1 - type: Transform -- uid: 6071 - type: OxygenCanister - components: - - pos: -11.5,46.5 - parent: 1 - type: Transform -- uid: 6072 - type: AirlockMaintLocked - components: - - pos: -18.5,51.5 - parent: 1 - type: Transform -- uid: 6073 - type: AirlockMaint - components: - - pos: 7.5,49.5 - parent: 1 - type: Transform -- uid: 6074 - type: AirlockMaintLocked - components: - - pos: -14.5,51.5 - parent: 1 - type: Transform -- uid: 6075 - type: AirlockMaint - components: - - pos: 13.5,45.5 - parent: 1 - type: Transform -- uid: 6076 - type: AirlockMaint - components: - - pos: 10.5,49.5 - parent: 1 - type: Transform -- uid: 6077 - type: AirlockMaint - components: - - pos: 16.5,38.5 - parent: 1 - type: Transform -- uid: 6078 - type: AirlockMaint - components: - - pos: 3.5,48.5 - parent: 1 - type: Transform -- uid: 6079 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 16.5,44.5 - parent: 1 - type: Transform -- uid: 6080 - type: Rack - components: - - pos: -13.5,49.5 - parent: 1 - type: Transform -- uid: 6081 - type: AirlockMaint - components: - - pos: -0.5,48.5 - parent: 1 - type: Transform -- uid: 6082 - type: Rack - components: - - pos: -12.5,46.5 - parent: 1 - type: Transform -- uid: 6083 - type: CableHV - components: - - pos: -16.5,33.5 - parent: 1 - type: Transform -- uid: 6084 - type: CableHV - components: - - pos: -16.5,34.5 - parent: 1 - type: Transform -- uid: 6085 - type: CableHV - components: - - pos: -16.5,35.5 - parent: 1 - type: Transform -- uid: 6086 - type: CableHV - components: - - pos: -16.5,36.5 - parent: 1 - type: Transform -- uid: 6087 - type: CableHV - components: - - pos: -16.5,37.5 - parent: 1 - type: Transform -- uid: 6088 - type: CableHV - components: - - pos: -16.5,38.5 - parent: 1 - type: Transform -- uid: 6089 - type: CableHV - components: - - pos: -16.5,39.5 - parent: 1 - type: Transform -- uid: 6090 - type: CableHV - components: - - pos: -16.5,40.5 - parent: 1 - type: Transform -- uid: 6091 - type: CableHV - components: - - pos: -16.5,41.5 - parent: 1 - type: Transform -- uid: 6092 - type: CableHV - components: - - pos: -16.5,42.5 - parent: 1 - type: Transform -- uid: 6093 - type: CableHV - components: - - pos: -16.5,43.5 - parent: 1 - type: Transform -- uid: 6094 - type: CableHV - components: - - pos: -16.5,44.5 - parent: 1 - type: Transform -- uid: 6095 - type: CableHV - components: - - pos: -16.5,45.5 - parent: 1 - type: Transform -- uid: 6096 - type: CableHV - components: - - pos: -16.5,46.5 - parent: 1 - type: Transform -- uid: 6097 - type: CableHV - components: - - pos: -16.5,47.5 - parent: 1 - type: Transform -- uid: 6098 - type: CableHV - components: - - pos: -16.5,48.5 - parent: 1 - type: Transform -- uid: 6099 - type: CableHV - components: - - pos: -16.5,49.5 - parent: 1 - type: Transform -- uid: 6100 - type: CableHV - components: - - pos: -16.5,50.5 - parent: 1 - type: Transform -- uid: 6101 - type: CableHV - components: - - pos: -16.5,51.5 - parent: 1 - type: Transform -- uid: 6102 - type: CableHV - components: - - pos: -15.5,51.5 - parent: 1 - type: Transform -- uid: 6103 - type: CableHV - components: - - pos: -14.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6104 - type: CableHV - components: - - pos: -13.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6105 - type: CableHV - components: - - pos: -12.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6106 - type: CableHV - components: - - pos: -11.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6107 - type: CableHV - components: - - pos: -10.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6108 - type: CableHV - components: - - pos: -9.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6109 - type: CableHV - components: - - pos: -8.5,51.5 - parent: 1 - type: Transform -- uid: 6110 - type: CableHV - components: - - pos: -7.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6111 - type: CableHV - components: - - pos: -7.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6112 - type: CableHV - components: - - pos: -7.5,49.5 - parent: 1 - type: Transform -- uid: 6113 - type: CableHV - components: - - pos: -7.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6114 - type: CableHV - components: - - pos: -7.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6115 - type: CableHV - components: - - pos: -6.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6116 - type: CableHV - components: - - pos: -5.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6117 - type: CableHV - components: - - pos: -4.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6118 - type: CableHV - components: - - pos: -3.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6119 - type: CableHV - components: - - pos: -2.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6120 - type: CableHV - components: - - pos: -1.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6121 - type: CableHV - components: - - pos: -0.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6122 - type: CableHV - components: - - pos: 0.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6123 - type: CableHV - components: - - pos: 1.5,47.5 - parent: 1 - type: Transform -- uid: 6124 - type: CableHV - components: - - pos: 2.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6125 - type: CableHV - components: - - pos: 3.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6126 - type: CableHV - components: - - pos: 4.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6127 - type: CableHV - components: - - pos: 5.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6128 - type: CableHV - components: - - pos: 6.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6129 - type: CableHV - components: - - pos: 7.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6130 - type: CableHV - components: - - pos: 7.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6131 - type: CableHV - components: - - pos: 8.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6132 - type: CableHV - components: - - pos: 9.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6133 - type: CableHV - components: - - pos: 10.5,48.5 - parent: 1 - type: Transform -- uid: 6134 - type: CableHV - components: - - pos: 11.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6135 - type: CableHV - components: - - pos: 12.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6136 - type: CableHV - components: - - pos: 13.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6137 - type: CableHV - components: - - pos: 14.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6138 - type: CableHV - components: - - pos: 15.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6139 - type: CableHV - components: - - pos: 15.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6140 - type: CableHV - components: - - pos: 15.5,46.5 - parent: 1 - type: Transform -- uid: 6141 - type: CableHV - components: - - pos: 15.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6142 - type: CableHV - components: - - pos: 16.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6143 - type: CableHV - components: - - pos: 17.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6144 - type: GeneratorBasic - components: - - pos: 17.5,46.5 - parent: 1 - type: Transform -- uid: 6145 - type: CableHV - components: - - pos: 18.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6146 - type: CableHV - components: - - pos: 15.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6147 - type: CableHV - components: - - pos: 15.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6148 - type: CableHV - components: - - pos: 15.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6149 - type: CableHV - components: - - pos: 15.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6150 - type: CableHV - components: - - pos: 15.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6151 - type: CableHV - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6152 - type: CableHV - components: - - pos: 15.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6153 - type: CableHV - components: - - pos: 15.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6154 - type: CableHV - components: - - pos: 15.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6155 - type: CableHV - components: - - pos: 15.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6156 - type: CableHV - components: - - pos: 16.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6157 - type: CableHV - components: - - pos: 17.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6158 - type: CableHV - components: - - pos: 18.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6159 - type: CableHV - components: - - pos: 19.5,35.5 - parent: 1 - type: Transform -- uid: 6160 - type: CableHV - components: - - pos: 20.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6161 - type: CableHV - components: - - pos: 21.5,35.5 - parent: 1 - type: Transform -- uid: 6162 - type: CableHV - components: - - pos: 22.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6163 - type: CableHV - components: - - pos: 23.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6164 - type: CableHV - components: - - pos: 23.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6165 - type: CableHV - components: - - pos: 23.5,33.5 - parent: 1 - type: Transform -- uid: 6166 - type: CableHV - components: - - pos: 23.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6167 - type: CableHV - components: - - pos: 23.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6168 - type: CableHV - components: - - pos: 23.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6169 - type: CableHV - components: - - pos: 23.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6170 - type: CableHV - components: - - pos: 23.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6171 - type: CableHV - components: - - pos: 23.5,27.5 - parent: 1 - type: Transform -- uid: 6172 - type: CableHV - components: - - pos: 23.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6173 - type: CableHV - components: - - pos: 23.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6174 - type: CableHV - components: - - pos: 23.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6175 - type: CableHV - components: - - pos: 23.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6176 - type: CableHV - components: - - pos: 23.5,22.5 - parent: 1 - type: Transform -- uid: 6177 - type: CableHV - components: - - pos: 23.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6178 - type: CableHV - components: - - pos: 23.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6179 - type: CableHV - components: - - pos: 23.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6180 - type: CableHV - components: - - pos: 24.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6181 - type: CableHV - components: - - pos: 25.5,19.5 - parent: 1 - type: Transform -- uid: 6182 - type: CableHV - components: - - pos: 26.5,19.5 - parent: 1 - type: Transform -- uid: 6183 - type: CableHV - components: - - pos: 26.5,18.5 - parent: 1 - type: Transform -- uid: 6184 - type: CableHV - components: - - pos: 26.5,17.5 - parent: 1 - type: Transform -- uid: 6185 - type: CableHV - components: - - pos: 26.5,16.5 - parent: 1 - type: Transform -- uid: 6186 - type: CableHV - components: - - pos: 26.5,15.5 - parent: 1 - type: Transform -- uid: 6187 - type: CableHV - components: - - pos: 26.5,14.5 - parent: 1 - type: Transform -- uid: 6188 - type: CableHV - components: - - pos: 26.5,13.5 - parent: 1 - type: Transform -- uid: 6189 - type: CableHV - components: - - pos: 26.5,12.5 - parent: 1 - type: Transform -- uid: 6190 - type: CableHV - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform -- uid: 6191 - type: CableHV - components: - - pos: 26.5,10.5 - parent: 1 - type: Transform -- uid: 6192 - type: CableHV - components: - - pos: 26.5,9.5 - parent: 1 - type: Transform -- uid: 6193 - type: CableHV - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform -- uid: 6194 - type: CableHV - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform -- uid: 6195 - type: CableHV - components: - - pos: 26.5,6.5 - parent: 1 - type: Transform -- uid: 6196 - type: HighSecCommandLocked - components: - - pos: 10.5,41.5 - parent: 1 - type: Transform -- uid: 6197 - type: AirlockEngineeringLocked - components: - - pos: 16.5,45.5 - parent: 1 - type: Transform -- uid: 6198 - type: SubstationBasic - components: - - pos: 18.5,46.5 - parent: 1 - type: Transform -- uid: 6199 - type: CableApcExtension - components: - - pos: 16.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6200 - type: CableMV - components: - - pos: 18.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6201 - type: CableMV - components: - - pos: 17.5,46.5 - parent: 1 - type: Transform -- uid: 6202 - type: CableMV - components: - - pos: 16.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6203 - type: CableApcExtension - components: - - pos: 13.5,51.5 - parent: 1 - type: Transform -- uid: 6204 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 16.5,49.5 - parent: 1 - type: Transform -- uid: 6205 - type: CableApcExtension - components: - - pos: 15.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6206 - type: CableApcExtension - components: - - pos: 15.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6207 - type: CableApcExtension - components: - - pos: 13.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6208 - type: CableApcExtension - components: - - pos: 12.5,45.5 - parent: 1 - type: Transform -- uid: 6209 - type: CableApcExtension - components: - - pos: 11.5,45.5 - parent: 1 - type: Transform -- uid: 6210 - type: CableApcExtension - components: - - pos: 10.5,45.5 - parent: 1 - type: Transform -- uid: 6211 - type: CableApcExtension - components: - - pos: 15.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6212 - type: CableApcExtension - components: - - pos: 8.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6213 - type: CableMV - components: - - pos: 17.5,48.5 - parent: 1 - type: Transform -- uid: 6214 - type: CableApcExtension - components: - - pos: 7.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6215 - type: CableMV - components: - - pos: 16.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6216 - type: CableMV - components: - - pos: 17.5,49.5 - parent: 1 - type: Transform -- uid: 6217 - type: CableMV - components: - - pos: 16.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6218 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 18.5,45.5 - parent: 1 - type: Transform -- uid: 6219 - type: CableApcExtension - components: - - pos: 9.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6220 - type: CableApcExtension - components: - - pos: 7.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6221 - type: CableApcExtension - components: - - pos: 7.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6222 - type: CableApcExtension - components: - - pos: 6.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6223 - type: CableApcExtension - components: - - pos: 7.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6224 - type: CableApcExtension - components: - - pos: 7.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6225 - type: CableApcExtension - components: - - pos: 7.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6226 - type: MaintenanceToolSpawner - components: - - pos: 18.5,45.5 - parent: 1 - type: Transform -- uid: 6227 - type: CableApcExtension - components: - - pos: 5.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6228 - type: CableApcExtension - components: - - pos: 4.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6229 - type: CableApcExtension - components: - - pos: 3.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6230 - type: CableApcExtension - components: - - pos: 3.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6231 - type: CableApcExtension - components: - - pos: 3.5,49.5 - parent: 1 - type: Transform -- uid: 6232 - type: CableApcExtension - components: - - pos: 3.5,50.5 - parent: 1 - type: Transform -- uid: 6233 - type: CableApcExtension - components: - - pos: 3.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6234 - type: CableApcExtension - components: - - pos: 2.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6235 - type: CableApcExtension - components: - - pos: 1.5,47.5 - parent: 1 - type: Transform -- uid: 6236 - type: CableApcExtension - components: - - pos: 0.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6237 - type: CableApcExtension - components: - - pos: -0.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6238 - type: CableApcExtension - components: - - pos: -0.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6239 - type: CableApcExtension - components: - - pos: -0.5,49.5 - parent: 1 - type: Transform -- uid: 6240 - type: CableApcExtension - components: - - pos: -0.5,50.5 - parent: 1 - type: Transform -- uid: 6241 - type: CableApcExtension - components: - - pos: -0.5,51.5 - parent: 1 - type: Transform -- uid: 6242 - type: CableApcExtension - components: - - pos: 16.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6243 - type: TableWood - components: - - pos: -9.5,44.5 - parent: 1 - type: Transform -- uid: 6244 - type: TableWood - components: - - pos: -8.5,44.5 - parent: 1 - type: Transform -- uid: 6245 - type: TableWood - components: - - pos: -6.5,44.5 - parent: 1 - type: Transform -- uid: 6246 - type: CableApcExtension - components: - - pos: 14.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6247 - type: CableApcExtension - components: - - pos: 13.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6248 - type: CableApcExtension - components: - - pos: 12.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6249 - type: CableApcExtension - components: - - pos: 11.5,40.5 - parent: 1 - type: Transform -- uid: 6250 - type: CableApcExtension - components: - - pos: 10.5,40.5 - parent: 1 - type: Transform -- uid: 6251 - type: CableApcExtension - components: - - pos: 15.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6252 - type: CableApcExtension - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6253 - type: CableApcExtension - components: - - pos: 15.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6254 - type: CableApcExtension - components: - - pos: 16.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6255 - type: CableApcExtension - components: - - pos: 17.5,38.5 - parent: 1 - type: Transform -- uid: 6256 - type: CableApcExtension - components: - - pos: 18.5,38.5 - parent: 1 - type: Transform -- uid: 6257 - type: CableApcExtension - components: - - pos: 19.5,38.5 - parent: 1 - type: Transform -- uid: 6258 - type: CableApcExtension - components: - - pos: 20.5,38.5 - parent: 1 - type: Transform -- uid: 6259 - type: CableApcExtension - components: - - pos: 21.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6260 - type: CableApcExtension - components: - - pos: 22.5,38.5 - parent: 1 - type: Transform -- uid: 6261 - type: CableApcExtension - components: - - pos: 22.5,39.5 - parent: 1 - type: Transform -- uid: 6262 - type: CableApcExtension - components: - - pos: 22.5,40.5 - parent: 1 - type: Transform -- uid: 6263 - type: CableApcExtension - components: - - pos: 22.5,41.5 - parent: 1 - type: Transform -- uid: 6264 - type: CableApcExtension - components: - - pos: 22.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6265 - type: CableApcExtension - components: - - pos: 18.5,39.5 - parent: 1 - type: Transform -- uid: 6266 - type: CableApcExtension - components: - - pos: 18.5,40.5 - parent: 1 - type: Transform -- uid: 6267 - type: CableApcExtension - components: - - pos: 18.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6268 - type: CableApcExtension - components: - - pos: 18.5,42.5 - parent: 1 - type: Transform -- uid: 6269 - type: CableApcExtension - components: - - pos: 15.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6270 - type: CableApcExtension - components: - - pos: 15.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6271 - type: CableApcExtension - components: - - pos: 15.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6272 - type: CableApcExtension - components: - - pos: 16.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6273 - type: CableApcExtension - components: - - pos: 17.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6274 - type: CableApcExtension - components: - - pos: 18.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6275 - type: CableApcExtension - components: - - pos: 19.5,35.5 - parent: 1 - type: Transform -- uid: 6276 - type: CableApcExtension - components: - - pos: 20.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6277 - type: CableApcExtension - components: - - pos: 21.5,35.5 - parent: 1 - type: Transform -- uid: 6278 - type: CableApcExtension - components: - - pos: 22.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6279 - type: CableApcExtension - components: - - pos: 23.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6280 - type: CableApcExtension - components: - - pos: 9.5,40.5 - parent: 1 - type: Transform -- uid: 6281 - type: CableApcExtension - components: - - pos: 8.5,40.5 - parent: 1 - type: Transform -- uid: 6282 - type: CableApcExtension - components: - - pos: -1.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6283 - type: CableApcExtension - components: - - pos: -2.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6284 - type: CableApcExtension - components: - - pos: -2.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6285 - type: CableApcExtension - components: - - pos: -2.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6286 - type: CableApcExtension - components: - - pos: -2.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6287 - type: CableApcExtension - components: - - pos: -2.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6288 - type: CableApcExtension - components: - - pos: -2.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6289 - type: CableApcExtension - components: - - pos: -3.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6290 - type: CableApcExtension - components: - - pos: -3.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6291 - type: CableApcExtension - components: - - pos: -3.5,40.5 - parent: 1 - type: Transform -- uid: 6292 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -2.5,38.5 - parent: 1 - type: Transform -- uid: 6293 - type: CableApcExtension - components: - - pos: -3.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6294 - type: CableApcExtension - components: - - pos: -3.5,37.5 - parent: 1 - type: Transform -- uid: 6295 - type: CableApcExtension - components: - - pos: -4.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6296 - type: CableApcExtension - components: - - pos: -5.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6297 - type: CableApcExtension - components: - - pos: -6.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6298 - type: CableApcExtension - components: - - pos: -7.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6299 - type: CableApcExtension - components: - - pos: -8.5,37.5 - parent: 1 - type: Transform -- uid: 6300 - type: CableApcExtension - components: - - pos: -9.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6301 - type: CableApcExtension - components: - - pos: -3.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6302 - type: CableApcExtension - components: - - pos: -4.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6303 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 4.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6304 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6305 - type: PoweredSmallLight - components: - - pos: -7.5,37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6306 - type: PoweredSmallLight - components: - - pos: -12.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6307 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6308 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6309 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6310 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6311 - type: PoweredSmallLight - components: - - pos: 17.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6312 - type: PoweredSmallLight - components: - - pos: 11.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6313 - type: PoweredSmallLight - components: - - pos: 19.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6314 - type: PosterMapPacked - components: - - pos: 7.5,53.5 - parent: 1 - type: Transform -- uid: 6315 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 19.5,37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6316 - type: NuclearBombKeg - components: - - pos: 10.5,43.5 - parent: 1 - type: Transform -- uid: 6317 - type: Rack - components: - - pos: 12.5,43.5 - parent: 1 - type: Transform -- uid: 6318 - type: NukeDiskFake - components: - - desc: A crude replication of a real nuclear authentication disk. You could tell this thing was fake from a mile away. - name: flimsy nuclear authentication disk - type: MetaData - - pos: 12.55704,43.506477 - parent: 1 - type: Transform -- uid: 6319 - type: Grille - components: - - pos: 24.5,38.5 - parent: 1 - type: Transform -- uid: 6320 - type: Grille - components: - - pos: 24.5,39.5 - parent: 1 - type: Transform -- uid: 6321 - type: Grille - components: - - pos: 24.5,40.5 - parent: 1 - type: Transform -- uid: 6322 - type: Grille - components: - - pos: 24.5,41.5 - parent: 1 - type: Transform -- uid: 6323 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6324 - type: SpawnMobBear - components: - - pos: 7.5,51.5 - parent: 1 - type: Transform -- uid: 6325 - type: ClosetBase - components: - - pos: 8.5,52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6326 - type: PaintingAmogusTriptych - components: - - pos: 3.5,53.5 - parent: 1 - type: Transform -- uid: 6327 - type: PaintingEmpty - components: - - pos: 2.5,53.5 - parent: 1 - type: Transform -- uid: 6328 - type: PaintingSkeletonBoof - components: - - pos: 4.5,53.5 - parent: 1 - type: Transform -- uid: 6329 - type: Table - components: - - pos: 9.5,46.5 - parent: 1 - type: Transform -- uid: 6330 - type: Table - components: - - pos: -0.5,51.5 - parent: 1 - type: Transform -- uid: 6331 - type: TableWood - components: - - pos: 2.5,49.5 - parent: 1 - type: Transform -- uid: 6332 - type: TableWood - components: - - pos: 15.5,50.5 - parent: 1 - type: Transform -- uid: 6333 - type: TableWood - components: - - pos: 14.5,50.5 - parent: 1 - type: Transform -- uid: 6334 - type: Bookshelf - components: - - pos: 13.5,52.5 - parent: 1 - type: Transform -- uid: 6335 - type: HarpInstrument - components: - - pos: 15.5,52.5 - parent: 1 - type: Transform -- uid: 6336 - type: EuphoniumInstrument - components: - - pos: 14.586781,52.45568 - parent: 1 - type: Transform -- uid: 6337 - type: BoozeDispenser - components: - - rot: 3.141592653589793 rad - pos: 14.5,50.5 - parent: 1 - type: Transform -- uid: 6338 - type: DrinkWineGlass - components: - - pos: 2.5328588,49.783806 - parent: 1 - type: Transform -- uid: 6339 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,50.5 - parent: 1 - type: Transform -- uid: 6340 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6341 - type: ComfyChair - components: - - pos: -0.5,52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6342 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -0.5,50.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6343 - type: ChessBoard - components: - - rot: 3.141592653589793 rad - pos: -0.51219857,51.59928 - parent: 1 - type: Transform -- uid: 6344 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -5.5,56.5 - parent: 1 - type: Transform -- uid: 6345 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -2.5,57.5 - parent: 1 - type: Transform -- uid: 6346 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -2.5,56.5 - parent: 1 - type: Transform -- uid: 6347 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -2.5,55.5 - parent: 1 - type: Transform -- uid: 6348 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -3.5,57.5 - parent: 1 - type: Transform -- uid: 6349 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -4.5,57.5 - parent: 1 - type: Transform -- uid: 6350 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -5.5,57.5 - parent: 1 - type: Transform -- uid: 6351 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -13.5,53.5 - parent: 1 - type: Transform -- uid: 6352 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -13.5,54.5 - parent: 1 - type: Transform -- uid: 6353 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -13.5,56.5 - parent: 1 - type: Transform -- uid: 6354 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -13.5,54.5 - parent: 1 - type: Transform -- uid: 6355 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -13.5,56.5 - parent: 1 - type: Transform -- uid: 6356 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -13.5,53.5 - parent: 1 - type: Transform -- uid: 6357 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -13.5,57.5 - parent: 1 - type: Transform -- uid: 6358 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -13.5,57.5 - parent: 1 - type: Transform -- uid: 6359 - type: WallReinforced - components: - - pos: -6.5,57.5 - parent: 1 - type: Transform -- uid: 6360 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -6.5,58.5 - parent: 1 - type: Transform -- uid: 6361 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -8.5,58.5 - parent: 1 - type: Transform -- uid: 6362 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -9.5,58.5 - parent: 1 - type: Transform -- uid: 6363 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -10.5,58.5 - parent: 1 - type: Transform -- uid: 6364 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: -11.5,58.5 - parent: 1 - type: Transform -- uid: 6365 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: -12.5,58.5 - parent: 1 - type: Transform -- uid: 6366 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -13.5,58.5 - parent: 1 - type: Transform -- uid: 6367 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -19.5,52.5 - parent: 1 - type: Transform -- uid: 6368 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -19.5,53.5 - parent: 1 - type: Transform -- uid: 6369 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -19.5,55.5 - parent: 1 - type: Transform -- uid: 6370 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -19.5,56.5 - parent: 1 - type: Transform -- uid: 6371 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -19.5,57.5 - parent: 1 - type: Transform -- uid: 6372 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: -19.5,58.5 - parent: 1 - type: Transform -- uid: 6373 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -20.5,58.5 - parent: 1 - type: Transform -- uid: 6374 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -21.5,58.5 - parent: 1 - type: Transform -- uid: 6375 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -22.5,58.5 - parent: 1 - type: Transform -- uid: 6376 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -23.5,58.5 - parent: 1 - type: Transform -- uid: 6377 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -23.5,57.5 - parent: 1 - type: Transform -- uid: 6378 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -24.5,57.5 - parent: 1 - type: Transform -- uid: 6379 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -24.5,56.5 - parent: 1 - type: Transform -- uid: 6380 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -24.5,55.5 - parent: 1 - type: Transform -- uid: 6381 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -24.5,54.5 - parent: 1 - type: Transform -- uid: 6382 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -23.5,52.5 - parent: 1 - type: Transform -- uid: 6383 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -22.5,52.5 - parent: 1 - type: Transform -- uid: 6384 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -21.5,52.5 - parent: 1 - type: Transform -- uid: 6385 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -20.5,52.5 - parent: 1 - type: Transform -- uid: 6386 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -24.5,53.5 - parent: 1 - type: Transform -- uid: 6387 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -24.5,52.5 - parent: 1 - type: Transform -- uid: 6388 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -16.5,58.5 - parent: 1 - type: Transform -- uid: 6389 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -16.5,58.5 - parent: 1 - type: Transform -- uid: 6390 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -14.5,58.5 - parent: 1 - type: Transform -- uid: 6391 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -18.5,58.5 - parent: 1 - type: Transform -- uid: 6392 - type: AirlockCommandGlassLocked - components: - - rot: 3.141592653589793 rad - pos: -16.5,52.5 - parent: 1 - type: Transform -- uid: 6393 - type: AirlockCommandGlassLocked - components: - - rot: 3.141592653589793 rad - pos: -13.5,55.5 - parent: 1 - type: Transform -- uid: 6394 - type: AirlockCommandGlassLocked - components: - - rot: 3.141592653589793 rad - pos: -15.5,58.5 - parent: 1 - type: Transform -- uid: 6395 - type: AirlockCommandGlassLocked - components: - - rot: 3.141592653589793 rad - pos: -17.5,58.5 - parent: 1 - type: Transform -- uid: 6396 - type: HighSecCommandLocked - components: - - pos: -19.5,54.5 - parent: 1 - type: Transform -- uid: 6397 - type: AirlockMaintCommandLocked - components: - - pos: -5.5,55.5 - parent: 1 - type: Transform -- uid: 6398 - type: ReinforcedWindow - components: - - pos: -4.5,58.5 - parent: 1 - type: Transform -- uid: 6399 - type: ReinforcedWindow - components: - - pos: -4.5,59.5 - parent: 1 - type: Transform -- uid: 6400 - type: ReinforcedWindow - components: - - pos: -4.5,60.5 - parent: 1 - type: Transform -- uid: 6401 - type: ReinforcedWindow - components: - - pos: -4.5,61.5 - parent: 1 - type: Transform -- uid: 6402 - type: ReinforcedWindow - components: - - pos: -4.5,62.5 - parent: 1 - type: Transform -- uid: 6403 - type: ReinforcedWindow - components: - - pos: -5.5,62.5 - parent: 1 - type: Transform -- uid: 6404 - type: ReinforcedWindow - components: - - pos: -6.5,62.5 - parent: 1 - type: Transform -- uid: 6405 - type: ReinforcedWindow - components: - - pos: -7.5,62.5 - parent: 1 - type: Transform -- uid: 6406 - type: ReinforcedWindow - components: - - pos: -8.5,62.5 - parent: 1 - type: Transform -- uid: 6407 - type: ReinforcedWindow - components: - - pos: -9.5,62.5 - parent: 1 - type: Transform -- uid: 6408 - type: Grille - components: - - pos: -9.5,62.5 - parent: 1 - type: Transform -- uid: 6409 - type: Grille - components: - - pos: -8.5,62.5 - parent: 1 - type: Transform -- uid: 6410 - type: Grille - components: - - pos: -7.5,62.5 - parent: 1 - type: Transform -- uid: 6411 - type: Grille - components: - - pos: -6.5,62.5 - parent: 1 - type: Transform -- uid: 6412 - type: Grille - components: - - pos: -5.5,62.5 - parent: 1 - type: Transform -- uid: 6413 - type: Grille - components: - - pos: -4.5,62.5 - parent: 1 - type: Transform -- uid: 6414 - type: Grille - components: - - pos: -4.5,61.5 - parent: 1 - type: Transform -- uid: 6415 - type: Grille - components: - - pos: -4.5,60.5 - parent: 1 - type: Transform -- uid: 6416 - type: Grille - components: - - pos: -4.5,59.5 - parent: 1 - type: Transform -- uid: 6417 - type: Grille - components: - - pos: -4.5,58.5 - parent: 1 - type: Transform -- uid: 6418 - type: WindowReinforcedDirectional - components: - - pos: -9.5,63.5 - parent: 1 - type: Transform -- uid: 6419 - type: WindowReinforcedDirectional - components: - - pos: -8.5,63.5 - parent: 1 - type: Transform -- uid: 6420 - type: WindowReinforcedDirectional - components: - - pos: -7.5,63.5 - parent: 1 - type: Transform -- uid: 6421 - type: WindowReinforcedDirectional - components: - - pos: -6.5,63.5 - parent: 1 - type: Transform -- uid: 6422 - type: WindowReinforcedDirectional - components: - - pos: -5.5,63.5 - parent: 1 - type: Transform -- uid: 6423 - type: WindowReinforcedDirectional - components: - - pos: -4.5,63.5 - parent: 1 - type: Transform -- uid: 6424 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -3.5,62.5 - parent: 1 - type: Transform -- uid: 6425 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -3.5,61.5 - parent: 1 - type: Transform -- uid: 6426 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -3.5,60.5 - parent: 1 - type: Transform -- uid: 6427 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -3.5,59.5 - parent: 1 - type: Transform -- uid: 6428 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -3.5,58.5 - parent: 1 - type: Transform -- uid: 6429 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -10.5,62.5 - parent: 1 - type: Transform -- uid: 6430 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -10.5,61.5 - parent: 1 - type: Transform -- uid: 6431 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -10.5,60.5 - parent: 1 - type: Transform -- uid: 6432 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -10.5,59.5 - parent: 1 - type: Transform -- uid: 6433 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -10.5,63.5 - parent: 1 - type: Transform -- uid: 6434 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -11.5,63.5 - parent: 1 - type: Transform -- uid: 6435 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -11.5,64.5 - parent: 1 - type: Transform -- uid: 6436 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -11.5,65.5 - parent: 1 - type: Transform -- uid: 6437 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -12.5,65.5 - parent: 1 - type: Transform -- uid: 6438 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -12.5,66.5 - parent: 1 - type: Transform -- uid: 6439 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -13.5,66.5 - parent: 1 - type: Transform -- uid: 6440 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -13.5,67.5 - parent: 1 - type: Transform -- uid: 6441 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -14.5,67.5 - parent: 1 - type: Transform -- uid: 6442 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -15.5,67.5 - parent: 1 - type: Transform -- uid: 6443 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -16.5,67.5 - parent: 1 - type: Transform -- uid: 6444 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -17.5,67.5 - parent: 1 - type: Transform -- uid: 6445 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -18.5,67.5 - parent: 1 - type: Transform -- uid: 6446 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -19.5,67.5 - parent: 1 - type: Transform -- uid: 6447 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -19.5,66.5 - parent: 1 - type: Transform -- uid: 6448 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -20.5,66.5 - parent: 1 - type: Transform -- uid: 6449 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -20.5,65.5 - parent: 1 - type: Transform -- uid: 6450 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -21.5,65.5 - parent: 1 - type: Transform -- uid: 6451 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -21.5,64.5 - parent: 1 - type: Transform -- uid: 6452 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -22.5,63.5 - parent: 1 - type: Transform -- uid: 6453 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -21.5,63.5 - parent: 1 - type: Transform -- uid: 6454 - type: ReinforcedWindow - components: - - pos: -22.5,62.5 - parent: 1 - type: Transform -- uid: 6455 - type: ReinforcedWindow - components: - - pos: -22.5,61.5 - parent: 1 - type: Transform -- uid: 6456 - type: ReinforcedWindow - components: - - pos: -22.5,60.5 - parent: 1 - type: Transform -- uid: 6457 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -22.5,59.5 - parent: 1 - type: Transform -- uid: 6458 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -11.5,64.5 - parent: 1 - type: Transform -- uid: 6459 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -11.5,65.5 - parent: 1 - type: Transform -- uid: 6460 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -12.5,65.5 - parent: 1 - type: Transform -- uid: 6461 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -12.5,66.5 - parent: 1 - type: Transform -- uid: 6462 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -13.5,66.5 - parent: 1 - type: Transform -- uid: 6463 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -13.5,67.5 - parent: 1 - type: Transform -- uid: 6464 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -14.5,67.5 - parent: 1 - type: Transform -- uid: 6465 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -15.5,67.5 - parent: 1 - type: Transform -- uid: 6466 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -16.5,67.5 - parent: 1 - type: Transform -- uid: 6467 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -17.5,67.5 - parent: 1 - type: Transform -- uid: 6468 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -18.5,67.5 - parent: 1 - type: Transform -- uid: 6469 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -19.5,67.5 - parent: 1 - type: Transform -- uid: 6470 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -19.5,66.5 - parent: 1 - type: Transform -- uid: 6471 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -20.5,66.5 - parent: 1 - type: Transform -- uid: 6472 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -20.5,65.5 - parent: 1 - type: Transform -- uid: 6473 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -21.5,65.5 - parent: 1 - type: Transform -- uid: 6474 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -21.5,64.5 - parent: 1 - type: Transform -- uid: 6475 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -10.5,64.5 - parent: 1 - type: Transform -- uid: 6476 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -10.5,65.5 - parent: 1 - type: Transform -- uid: 6477 - type: WindowReinforcedDirectional - components: - - pos: -11.5,66.5 - parent: 1 - type: Transform -- uid: 6478 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -11.5,66.5 - parent: 1 - type: Transform -- uid: 6479 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -12.5,67.5 - parent: 1 - type: Transform -- uid: 6480 - type: WindowReinforcedDirectional - components: - - pos: -12.5,67.5 - parent: 1 - type: Transform -- uid: 6481 - type: WindowReinforcedDirectional - components: - - pos: -13.5,68.5 - parent: 1 - type: Transform -- uid: 6482 - type: WindowReinforcedDirectional - components: - - pos: -14.5,68.5 - parent: 1 - type: Transform -- uid: 6483 - type: WindowReinforcedDirectional - components: - - pos: -15.5,68.5 - parent: 1 - type: Transform -- uid: 6484 - type: WindowReinforcedDirectional - components: - - pos: -16.5,68.5 - parent: 1 - type: Transform -- uid: 6485 - type: WindowReinforcedDirectional - components: - - pos: -17.5,68.5 - parent: 1 - type: Transform -- uid: 6486 - type: WindowReinforcedDirectional - components: - - pos: -18.5,68.5 - parent: 1 - type: Transform -- uid: 6487 - type: WindowReinforcedDirectional - components: - - pos: -19.5,68.5 - parent: 1 - type: Transform -- uid: 6488 - type: WindowReinforcedDirectional - components: - - pos: -20.5,67.5 - parent: 1 - type: Transform -- uid: 6489 - type: WindowReinforcedDirectional - components: - - pos: -21.5,66.5 - parent: 1 - type: Transform -- uid: 6490 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -20.5,67.5 - parent: 1 - type: Transform -- uid: 6491 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -21.5,66.5 - parent: 1 - type: Transform -- uid: 6492 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -22.5,65.5 - parent: 1 - type: Transform -- uid: 6493 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -22.5,64.5 - parent: 1 - type: Transform -- uid: 6494 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -14.5,61.5 - parent: 1 - type: Transform -- uid: 6495 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -18.5,61.5 - parent: 1 - type: Transform -- uid: 6496 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -18.5,54.5 - parent: 1 - type: Transform -- uid: 6497 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -14.5,55.5 - parent: 1 - type: Transform -- uid: 6498 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -14.5,59.5 - parent: 1 - type: Transform -- uid: 6499 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -14.5,60.5 - parent: 1 - type: Transform -- uid: 6500 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -15.5,61.5 - parent: 1 - type: Transform -- uid: 6501 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -16.5,61.5 - parent: 1 - type: Transform -- uid: 6502 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -17.5,61.5 - parent: 1 - type: Transform -- uid: 6503 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -18.5,60.5 - parent: 1 - type: Transform -- uid: 6504 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -18.5,59.5 - parent: 1 - type: Transform -- uid: 6505 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -17.5,57.5 - parent: 1 - type: Transform -- uid: 6506 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -15.5,57.5 - parent: 1 - type: Transform -- uid: 6507 - type: AirlockCaptainLocked - components: - - pos: -7.5,58.5 - parent: 1 - type: Transform -- uid: 6508 - type: SpawnPointCaptain - components: - - pos: -7.5,60.5 - parent: 1 - type: Transform -- uid: 6509 - type: LockerCaptainFilled - components: - - pos: -9.5,61.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6510 - type: TableWood - components: - - pos: -6.5,61.5 - parent: 1 - type: Transform -- uid: 6511 - type: TableWood - components: - - pos: -7.5,61.5 - parent: 1 - type: Transform -- uid: 6512 - type: Table - components: - - pos: -18.5,66.5 - parent: 1 - type: Transform -- uid: 6513 - type: Table - components: - - pos: -17.5,66.5 - parent: 1 - type: Transform -- uid: 6514 - type: Table - components: - - pos: -18.5,65.5 - parent: 1 - type: Transform -- uid: 6515 - type: Table - components: - - pos: -19.5,65.5 - parent: 1 - type: Transform -- uid: 6516 - type: Table - components: - - pos: -15.5,66.5 - parent: 1 - type: Transform -- uid: 6517 - type: Table - components: - - pos: -14.5,66.5 - parent: 1 - type: Transform -- uid: 6518 - type: Table - components: - - pos: -14.5,65.5 - parent: 1 - type: Transform -- uid: 6519 - type: Table - components: - - pos: -13.5,65.5 - parent: 1 - type: Transform -- uid: 6520 - type: Table - components: - - pos: -12.5,63.5 - parent: 1 - type: Transform -- uid: 6521 - type: Table - components: - - pos: -20.5,63.5 - parent: 1 - type: Transform -- uid: 6522 - type: Table - components: - - pos: -21.5,62.5 - parent: 1 - type: Transform -- uid: 6523 - type: Table - components: - - pos: -21.5,59.5 - parent: 1 - type: Transform -- uid: 6524 - type: Table - components: - - pos: -11.5,62.5 - parent: 1 - type: Transform -- uid: 6525 - type: Table - components: - - pos: -11.5,59.5 - parent: 1 - type: Transform -- uid: 6526 - type: GeneratorBasic - components: - - pos: -3.5,55.5 - parent: 1 - type: Transform -- uid: 6527 - type: SubstationBasic - components: - - pos: -3.5,56.5 - parent: 1 - type: Transform -- uid: 6528 - type: APCBasic - components: - - pos: -4.5,57.5 - parent: 1 - type: Transform -- uid: 6529 - type: CableHV - components: - - pos: -16.5,52.5 - parent: 1 - type: Transform -- uid: 6530 - type: CableHV - components: - - pos: -16.5,53.5 - parent: 1 - type: Transform -- uid: 6531 - type: CableHV - components: - - pos: -16.5,54.5 - parent: 1 - type: Transform -- uid: 6532 - type: CableHV - components: - - pos: -16.5,55.5 - parent: 1 - type: Transform -- uid: 6533 - type: CableHV - components: - - pos: -15.5,55.5 - parent: 1 - type: Transform -- uid: 6534 - type: CableHV - components: - - pos: -14.5,55.5 - parent: 1 - type: Transform -- uid: 6535 - type: CableHV - components: - - pos: -13.5,55.5 - parent: 1 - type: Transform -- uid: 6536 - type: CableHV - components: - - pos: -12.5,55.5 - parent: 1 - type: Transform -- uid: 6537 - type: CableHV - components: - - pos: -11.5,55.5 - parent: 1 - type: Transform -- uid: 6538 - type: CableHV - components: - - pos: -10.5,55.5 - parent: 1 - type: Transform -- uid: 6539 - type: CableHV - components: - - pos: -9.5,55.5 - parent: 1 - type: Transform -- uid: 6540 - type: CableHV - components: - - pos: -8.5,55.5 - parent: 1 - type: Transform -- uid: 6541 - type: CableHV - components: - - pos: -7.5,55.5 - parent: 1 - type: Transform -- uid: 6542 - type: CableHV - components: - - pos: -6.5,55.5 - parent: 1 - type: Transform -- uid: 6543 - type: CableHV - components: - - pos: -5.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6544 - type: CableHV - components: - - pos: -4.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6545 - type: CableHV - components: - - pos: -3.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6546 - type: CableHV - components: - - pos: -3.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6547 - type: CableMV - components: - - pos: -3.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6548 - type: CableMV - components: - - pos: -4.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6549 - type: CableMV - components: - - pos: -4.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6550 - type: CableHV - components: - - pos: -3.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6551 - type: CableHV - components: - - pos: -4.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6552 - type: CableHV - components: - - pos: -4.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6553 - type: CableHV - components: - - pos: -4.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6554 - type: CableHV - components: - - pos: -4.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6555 - type: CableHV - components: - - pos: -4.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6556 - type: CableHV - components: - - pos: -4.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6557 - type: CableHV - components: - - pos: -5.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6558 - type: CableHV - components: - - pos: -6.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6559 - type: CableHV - components: - - pos: -7.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6560 - type: CableHV - components: - - pos: -8.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6561 - type: CableHV - components: - - pos: -9.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6562 - type: CableApcExtension - components: - - pos: -4.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6563 - type: CableApcExtension - components: - - pos: -4.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6564 - type: CableApcExtension - components: - - pos: -4.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6565 - type: CableApcExtension - components: - - pos: -5.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6566 - type: CableApcExtension - components: - - pos: -6.5,55.5 - parent: 1 - type: Transform -- uid: 6567 - type: CableApcExtension - components: - - pos: -7.5,55.5 - parent: 1 - type: Transform -- uid: 6568 - type: CableApcExtension - components: - - pos: -8.5,55.5 - parent: 1 - type: Transform -- uid: 6569 - type: CableApcExtension - components: - - pos: -9.5,55.5 - parent: 1 - type: Transform -- uid: 6570 - type: CableApcExtension - components: - - pos: -10.5,55.5 - parent: 1 - type: Transform -- uid: 6571 - type: CableApcExtension - components: - - pos: -11.5,55.5 - parent: 1 - type: Transform -- uid: 6572 - type: CableApcExtension - components: - - pos: -12.5,55.5 - parent: 1 - type: Transform -- uid: 6573 - type: CableApcExtension - components: - - pos: -13.5,55.5 - parent: 1 - type: Transform -- uid: 6574 - type: CableApcExtension - components: - - pos: -14.5,55.5 - parent: 1 - type: Transform -- uid: 6575 - type: CableApcExtension - components: - - pos: -15.5,55.5 - parent: 1 - type: Transform -- uid: 6576 - type: CableApcExtension - components: - - pos: -16.5,55.5 - parent: 1 - type: Transform -- uid: 6577 - type: CableApcExtension - components: - - pos: -7.5,56.5 - parent: 1 - type: Transform -- uid: 6578 - type: CableApcExtension - components: - - pos: -7.5,57.5 - parent: 1 - type: Transform -- uid: 6579 - type: CableApcExtension - components: - - pos: -7.5,58.5 - parent: 1 - type: Transform -- uid: 6580 - type: CableApcExtension - components: - - pos: -7.5,59.5 - parent: 1 - type: Transform -- uid: 6581 - type: CableApcExtension - components: - - pos: -7.5,60.5 - parent: 1 - type: Transform -- uid: 6582 - type: CableApcExtension - components: - - pos: -16.5,54.5 - parent: 1 - type: Transform -- uid: 6583 - type: CableApcExtension - components: - - pos: -17.5,54.5 - parent: 1 - type: Transform -- uid: 6584 - type: CableApcExtension - components: - - pos: -18.5,54.5 - parent: 1 - type: Transform -- uid: 6585 - type: CableApcExtension - components: - - pos: -19.5,54.5 - parent: 1 - type: Transform -- uid: 6586 - type: CableApcExtension - components: - - pos: -20.5,54.5 - parent: 1 - type: Transform -- uid: 6587 - type: CableApcExtension - components: - - pos: -21.5,54.5 - parent: 1 - type: Transform -- uid: 6588 - type: CableApcExtension - components: - - pos: -22.5,54.5 - parent: 1 - type: Transform -- uid: 6589 - type: CableApcExtension - components: - - pos: -22.5,55.5 - parent: 1 - type: Transform -- uid: 6590 - type: CableApcExtension - components: - - pos: -15.5,56.5 - parent: 1 - type: Transform -- uid: 6591 - type: CableApcExtension - components: - - pos: -15.5,57.5 - parent: 1 - type: Transform -- uid: 6592 - type: CableApcExtension - components: - - pos: -15.5,58.5 - parent: 1 - type: Transform -- uid: 6593 - type: CableApcExtension - components: - - pos: -15.5,59.5 - parent: 1 - type: Transform -- uid: 6594 - type: CableApcExtension - components: - - pos: -15.5,60.5 - parent: 1 - type: Transform -- uid: 6595 - type: CableApcExtension - components: - - pos: -15.5,61.5 - parent: 1 - type: Transform -- uid: 6596 - type: CableApcExtension - components: - - pos: -15.5,62.5 - parent: 1 - type: Transform -- uid: 6597 - type: CableApcExtension - components: - - pos: -15.5,63.5 - parent: 1 - type: Transform -- uid: 6598 - type: CableApcExtension - components: - - pos: -15.5,64.5 - parent: 1 - type: Transform -- uid: 6599 - type: CableApcExtension - components: - - pos: -15.5,65.5 - parent: 1 - type: Transform -- uid: 6600 - type: CableApcExtension - components: - - pos: -16.5,64.5 - parent: 1 - type: Transform -- uid: 6601 - type: CableApcExtension - components: - - pos: -17.5,64.5 - parent: 1 - type: Transform -- uid: 6602 - type: CableApcExtension - components: - - pos: -18.5,64.5 - parent: 1 - type: Transform -- uid: 6603 - type: CableApcExtension - components: - - pos: -19.5,64.5 - parent: 1 - type: Transform -- uid: 6604 - type: CableApcExtension - components: - - pos: -16.5,60.5 - parent: 1 - type: Transform -- uid: 6605 - type: CableApcExtension - components: - - pos: -17.5,60.5 - parent: 1 - type: Transform -- uid: 6606 - type: CableApcExtension - components: - - pos: -18.5,60.5 - parent: 1 - type: Transform -- uid: 6607 - type: CableApcExtension - components: - - pos: -19.5,60.5 - parent: 1 - type: Transform -- uid: 6608 - type: CableApcExtension - components: - - pos: -20.5,60.5 - parent: 1 - type: Transform -- uid: 6609 - type: CableApcExtension - components: - - pos: -14.5,60.5 - parent: 1 - type: Transform -- uid: 6610 - type: CableApcExtension - components: - - pos: -13.5,60.5 - parent: 1 - type: Transform -- uid: 6611 - type: CableApcExtension - components: - - pos: -12.5,60.5 - parent: 1 - type: Transform -- uid: 6612 - type: CableApcExtension - components: - - pos: -14.5,64.5 - parent: 1 - type: Transform -- uid: 6613 - type: CableApcExtension - components: - - pos: -13.5,64.5 - parent: 1 - type: Transform -- uid: 6614 - type: CableApcExtension - components: - - pos: -12.5,64.5 - parent: 1 - type: Transform -- uid: 6615 - type: CableApcExtension - components: - - pos: -20.5,64.5 - parent: 1 - type: Transform -- uid: 6616 - type: CableHV - components: - - pos: -15.5,56.5 - parent: 1 - type: Transform -- uid: 6617 - type: CableHV - components: - - pos: -15.5,57.5 - parent: 1 - type: Transform -- uid: 6618 - type: CableHV - components: - - pos: -15.5,58.5 - parent: 1 - type: Transform -- uid: 6619 - type: CableHV - components: - - pos: -15.5,59.5 - parent: 1 - type: Transform -- uid: 6620 - type: CableHV - components: - - pos: -15.5,60.5 - parent: 1 - type: Transform -- uid: 6621 - type: CableHV - components: - - pos: -15.5,61.5 - parent: 1 - type: Transform -- uid: 6622 - type: CableHV - components: - - pos: -15.5,62.5 - parent: 1 - type: Transform -- uid: 6623 - type: CableHV - components: - - pos: -15.5,63.5 - parent: 1 - type: Transform -- uid: 6624 - type: CableHV - components: - - pos: -15.5,64.5 - parent: 1 - type: Transform -- uid: 6625 - type: CableHV - components: - - pos: -14.5,64.5 - parent: 1 - type: Transform -- uid: 6626 - type: CableHV - components: - - pos: -13.5,64.5 - parent: 1 - type: Transform -- uid: 6627 - type: CableHV - components: - - pos: -12.5,64.5 - parent: 1 - type: Transform -- uid: 6628 - type: CableHV - components: - - pos: -11.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6629 - type: CableHV - components: - - pos: -12.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6630 - type: CableHV - components: - - pos: -11.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6631 - type: CableHV - components: - - pos: -12.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6632 - type: CableHV - components: - - pos: -13.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6633 - type: CableHV - components: - - pos: -13.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6634 - type: CableHV - components: - - pos: -14.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6635 - type: CableHV - components: - - pos: -15.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6636 - type: CableHV - components: - - pos: -16.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6637 - type: CableHV - components: - - pos: -17.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6638 - type: CableHV - components: - - pos: -18.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6639 - type: CableHV - components: - - pos: -19.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6640 - type: CableHV - components: - - pos: -19.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6641 - type: CableHV - components: - - pos: -20.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6642 - type: CableHV - components: - - pos: -20.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6643 - type: CableHV - components: - - pos: -21.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6644 - type: CableHV - components: - - pos: -21.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6645 - type: HeadSkeleton - components: - - flags: SessionSpecific - name: captain's skull - type: MetaData - - pos: -14.534092,66.507454 - parent: 1 - type: Transform - - baseSprintSpeed: 4.5 - baseWalkSpeed: 2.5 - type: MovementSpeedModifier - - rules: >- - You don't remember any of your previous life unless an administrator tells you otherwise. - - You are allowed to remember knowledge about the game in general, such as how to cook, how to use objects, etc. - - You are absolutely [color=red]NOT[/color] allowed to remember, say, the name, appearance, etc. of your previous character. - description: Alas poor Yorick... - name: captain's skull - type: GhostTakeoverAvailable - - type: Mind - - type: InputMover - - type: MobMover - - type: MovementAlwaysTouching - - type: MovementSpeedModifier - baseSprintSpeed: 2.5 - baseWalkSpeed: 2.5 - - type: CanEscapeInventory -- uid: 6646 - type: TableWood - components: - - pos: -10.5,55.5 - parent: 1 - type: Transform -- uid: 6647 - type: TableWood - components: - - pos: -9.5,55.5 - parent: 1 - type: Transform -- uid: 6648 - type: TableWood - components: - - pos: -8.5,55.5 - parent: 1 - type: Transform -- uid: 6649 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -26.5,47.5 - parent: 1 - type: Transform -- uid: 6650 - type: WallReinforced - components: - - pos: -23.5,49.5 - parent: 1 - type: Transform -- uid: 6651 - type: AirlockCommandGlassLocked - components: - - pos: -14.5,48.5 - parent: 1 - type: Transform -- uid: 6652 - type: AirlockCommandGlassLocked - components: - - pos: -14.5,47.5 - parent: 1 - type: Transform -- uid: 6653 - type: Grille - components: - - pos: -18.5,48.5 - parent: 1 - type: Transform -- uid: 6654 - type: WallReinforced - components: - - pos: -21.5,43.5 - parent: 1 - type: Transform -- uid: 6655 - type: WindoorSecure - components: - - pos: -19.5,36.5 - parent: 1 - type: Transform -- uid: 6656 - type: WindoorSecure - components: - - rot: 1.5707963267948966 rad - pos: -18.5,35.5 - parent: 1 - type: Transform -- uid: 6657 - type: WindoorSecure - components: - - rot: 3.141592653589793 rad - pos: -22.5,34.5 - parent: 1 - type: Transform -- uid: 6658 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -21.5,34.5 - parent: 1 - type: Transform -- uid: 6659 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -20.5,34.5 - parent: 1 - type: Transform -- uid: 6660 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -19.5,34.5 - parent: 1 - type: Transform -- uid: 6661 - type: AirlockMaintCommandLocked - components: - - pos: -9.5,47.5 - parent: 1 - type: Transform -- uid: 6662 - type: WallReinforced - components: - - pos: -25.5,56.5 - parent: 1 - type: Transform -- uid: 6663 - type: WallReinforced - components: - - pos: -26.5,56.5 - parent: 1 - type: Transform -- uid: 6664 - type: WallReinforced - components: - - pos: -27.5,56.5 - parent: 1 - type: Transform -- uid: 6665 - type: WallReinforced - components: - - pos: -28.5,56.5 - parent: 1 - type: Transform -- uid: 6666 - type: WallReinforced - components: - - pos: -29.5,56.5 - parent: 1 - type: Transform -- uid: 6667 - type: WallReinforced - components: - - pos: -30.5,56.5 - parent: 1 - type: Transform -- uid: 6668 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -30.5,52.5 - parent: 1 - type: Transform -- uid: 6669 - type: WallSolid - components: - - pos: -26.5,52.5 - parent: 1 - type: Transform -- uid: 6670 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -30.5,55.5 - parent: 1 - type: Transform -- uid: 6671 - type: WallSolid - components: - - pos: -27.5,51.5 - parent: 1 - type: Transform -- uid: 6672 - type: Girder - components: - - pos: -26.5,51.5 - parent: 1 - type: Transform -- uid: 6673 - type: WallSolid - components: - - pos: -29.5,51.5 - parent: 1 - type: Transform -- uid: 6674 - type: WallSolid - components: - - pos: -30.5,51.5 - parent: 1 - type: Transform -- uid: 6675 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -28.5,51.5 - parent: 1 - type: Transform -- uid: 6676 - type: WallSolid - components: - - pos: -30.5,54.5 - parent: 1 - type: Transform -- uid: 6677 - type: WallReinforced - components: - - pos: -30.5,57.5 - parent: 1 - type: Transform -- uid: 6678 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -25.5,52.5 - parent: 1 - type: Transform -- uid: 6679 - type: WallReinforced - components: - - pos: -30.5,58.5 - parent: 1 - type: Transform -- uid: 6680 - type: WallReinforced - components: - - pos: -32.5,56.5 - parent: 1 - type: Transform -- uid: 6681 - type: WallReinforced - components: - - pos: -33.5,56.5 - parent: 1 - type: Transform -- uid: 6682 - type: WallReinforced - components: - - pos: -33.5,57.5 - parent: 1 - type: Transform -- uid: 6683 - type: WallReinforced - components: - - pos: -33.5,58.5 - parent: 1 - type: Transform -- uid: 6684 - type: WallReinforced - components: - - pos: -32.5,58.5 - parent: 1 - type: Transform -- uid: 6685 - type: Grille - components: - - pos: -22.5,60.5 - parent: 1 - type: Transform -- uid: 6686 - type: Grille - components: - - pos: -22.5,61.5 - parent: 1 - type: Transform -- uid: 6687 - type: Grille - components: - - pos: -22.5,62.5 - parent: 1 - type: Transform -- uid: 6688 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -23.5,62.5 - parent: 1 - type: Transform -- uid: 6689 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -23.5,61.5 - parent: 1 - type: Transform -- uid: 6690 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -23.5,60.5 - parent: 1 - type: Transform -- uid: 6691 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -33.5,48.5 - parent: 1 - type: Transform -- uid: 6692 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -33.5,48.5 - parent: 1 - type: Transform -- uid: 6693 - type: AirlockMaintKitchenLocked - components: - - pos: -32.5,48.5 - parent: 1 - type: Transform -- uid: 6694 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -31.5,48.5 - parent: 1 - type: Transform -- uid: 6695 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -26.5,43.5 - parent: 1 - type: Transform -- uid: 6696 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -26.5,42.5 - parent: 1 - type: Transform -- uid: 6697 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -28.5,48.5 - parent: 1 - type: Transform -- uid: 6698 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -26.5,48.5 - parent: 1 - type: Transform -- uid: 6699 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -27.5,48.5 - parent: 1 - type: Transform -- uid: 6700 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -26.5,46.5 - parent: 1 - type: Transform -- uid: 6701 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -34.5,48.5 - parent: 1 - type: Transform -- uid: 6702 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -26.5,44.5 - parent: 1 - type: Transform -- uid: 6703 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -29.5,48.5 - parent: 1 - type: Transform -- uid: 6704 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -30.5,48.5 - parent: 1 - type: Transform -- uid: 6705 - type: UprightPianoInstrument - components: - - rot: -1.5707963267948966 rad - pos: -29.5,42.5 - parent: 1 - type: Transform -- uid: 6706 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -26.5,40.5 - parent: 1 - type: Transform -- uid: 6707 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -26.5,39.5 - parent: 1 - type: Transform -- uid: 6708 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -26.5,38.5 - parent: 1 - type: Transform -- uid: 6709 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -26.5,37.5 - parent: 1 - type: Transform -- uid: 6710 - type: AirlockMaintBarLocked - components: - - pos: -26.5,36.5 - parent: 1 - type: Transform -- uid: 6711 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -26.5,35.5 - parent: 1 - type: Transform -- uid: 6712 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -26.5,34.5 - parent: 1 - type: Transform -- uid: 6713 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -25.5,35.5 - parent: 1 - type: Transform -- uid: 6714 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -38.5,52.5 - parent: 1 - type: Transform -- uid: 6715 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -35.5,34.5 - parent: 1 - type: Transform -- uid: 6716 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -37.5,34.5 - parent: 1 - type: Transform -- uid: 6717 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -39.5,34.5 - parent: 1 - type: Transform -- uid: 6718 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -29.5,36.5 - parent: 1 - type: Transform -- uid: 6719 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -29.5,35.5 - parent: 1 - type: Transform -- uid: 6720 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -33.5,39.5 - parent: 1 - type: Transform -- uid: 6721 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -29.5,38.5 - parent: 1 - type: Transform -- uid: 6722 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -28.5,39.5 - parent: 1 - type: Transform -- uid: 6723 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -29.5,40.5 - parent: 1 - type: Transform -- uid: 6724 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -29.5,39.5 - parent: 1 - type: Transform -- uid: 6725 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -27.5,39.5 - parent: 1 - type: Transform -- uid: 6726 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -29.5,40.5 - parent: 1 - type: Transform -- uid: 6727 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -30.5,34.5 - parent: 1 - type: Transform -- uid: 6728 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -29.5,34.5 - parent: 1 - type: Transform -- uid: 6729 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -28.5,34.5 - parent: 1 - type: Transform -- uid: 6730 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -27.5,34.5 - parent: 1 - type: Transform -- uid: 6731 - type: Girder - components: - - pos: -29.5,41.5 - parent: 1 - type: Transform -- uid: 6732 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -31.5,41.5 - parent: 1 - type: Transform -- uid: 6733 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -30.5,41.5 - parent: 1 - type: Transform -- uid: 6734 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -32.5,41.5 - parent: 1 - type: Transform -- uid: 6735 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -33.5,41.5 - parent: 1 - type: Transform -- uid: 6736 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -29.5,43.5 - parent: 1 - type: Transform -- uid: 6737 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -34.5,41.5 - parent: 1 - type: Transform -- uid: 6738 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -30.5,42.5 - parent: 1 - type: Transform -- uid: 6739 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -27.5,43.5 - parent: 1 - type: Transform -- uid: 6740 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -45.5,40.5 - parent: 1 - type: Transform -- uid: 6741 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -45.5,38.5 - parent: 1 - type: Transform -- uid: 6742 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -39.5,40.5 - parent: 1 - type: Transform -- uid: 6743 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -30.5,44.5 - parent: 1 - type: Transform -- uid: 6744 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -45.5,37.5 - parent: 1 - type: Transform -- uid: 6745 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -42.5,40.5 - parent: 1 - type: Transform -- uid: 6746 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -41.5,34.5 - parent: 1 - type: Transform -- uid: 6747 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -45.5,39.5 - parent: 1 - type: Transform -- uid: 6748 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -38.5,41.5 - parent: 1 - type: Transform -- uid: 6749 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -39.5,41.5 - parent: 1 - type: Transform -- uid: 6750 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -41.5,40.5 - parent: 1 - type: Transform -- uid: 6751 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -45.5,35.5 - parent: 1 - type: Transform -- uid: 6752 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -45.5,34.5 - parent: 1 - type: Transform -- uid: 6753 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: -44.5,34.5 - parent: 1 - type: Transform -- uid: 6754 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: -42.5,34.5 - parent: 1 - type: Transform -- uid: 6755 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: -40.5,34.5 - parent: 1 - type: Transform -- uid: 6756 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -43.5,40.5 - parent: 1 - type: Transform -- uid: 6757 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -40.5,34.5 - parent: 1 - type: Transform -- uid: 6758 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -42.5,34.5 - parent: 1 - type: Transform -- uid: 6759 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -43.5,34.5 - parent: 1 - type: Transform -- uid: 6760 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -44.5,34.5 - parent: 1 - type: Transform -- uid: 6761 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -31.5,34.5 - parent: 1 - type: Transform -- uid: 6762 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -32.5,34.5 - parent: 1 - type: Transform -- uid: 6763 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -33.5,34.5 - parent: 1 - type: Transform -- uid: 6764 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -34.5,34.5 - parent: 1 - type: Transform -- uid: 6765 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -44.5,40.5 - parent: 1 - type: Transform -- uid: 6766 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -45.5,36.5 - parent: 1 - type: Transform -- uid: 6767 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -30.5,43.5 - parent: 1 - type: Transform -- uid: 6768 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -28.5,43.5 - parent: 1 - type: Transform -- uid: 6769 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -30.5,45.5 - parent: 1 - type: Transform -- uid: 6770 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -30.5,47.5 - parent: 1 - type: Transform -- uid: 6771 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -35.5,48.5 - parent: 1 - type: Transform -- uid: 6772 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -43.5,51.5 - parent: 1 - type: Transform -- uid: 6773 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -43.5,52.5 - parent: 1 - type: Transform -- uid: 6774 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -38.5,48.5 - parent: 1 - type: Transform -- uid: 6775 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -39.5,48.5 - parent: 1 - type: Transform -- uid: 6776 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -38.5,50.5 - parent: 1 - type: Transform -- uid: 6777 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -36.5,53.5 - parent: 1 - type: Transform -- uid: 6778 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -33.5,52.5 - parent: 1 - type: Transform -- uid: 6779 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -33.5,51.5 - parent: 1 - type: Transform -- uid: 6780 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -39.5,47.5 - parent: 1 - type: Transform -- uid: 6781 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -39.5,42.5 - parent: 1 - type: Transform -- uid: 6782 - type: TableCarpet - components: - - pos: -37.5,52.5 - parent: 1 - type: Transform -- uid: 6783 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -42.5,48.5 - parent: 1 - type: Transform -- uid: 6784 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: -42.5,48.5 - parent: 1 - type: Transform -- uid: 6785 - type: LockerBotanistFilled - components: - - pos: -42.5,52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6786 - type: LockerBotanistFilled - components: - - pos: -41.5,52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6787 - type: WallSolidRust - components: - - pos: -45.5,48.5 - parent: 1 - type: Transform -- uid: 6788 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -45.5,47.5 - parent: 1 - type: Transform -- uid: 6789 - type: ConveyorBelt - components: - - pos: -39.5,-8.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13842 - - port: Right - uid: 13843 - Forward: - - port: Left - uid: 13842 - - port: Left - uid: 13843 - Off: - - port: Middle - uid: 13842 - - port: Middle - uid: 13843 - type: SignalReceiver -- uid: 6790 - type: WallSolidRust - components: - - pos: -45.5,45.5 - parent: 1 - type: Transform -- uid: 6791 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -45.5,41.5 - parent: 1 - type: Transform -- uid: 6792 - type: VendingMachineMagivend - components: - - flags: SessionSpecific - type: MetaData - - pos: -37.5,49.5 - parent: 1 - type: Transform -- uid: 6793 - type: ConveyorBelt - components: - - pos: -39.5,-9.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13842 - - port: Right - uid: 13843 - Forward: - - port: Left - uid: 13842 - - port: Left - uid: 13843 - Off: - - port: Middle - uid: 13842 - - port: Middle - uid: 13843 - type: SignalReceiver -- uid: 6794 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: -45.5,41.5 - parent: 1 - type: Transform -- uid: 6795 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -34.5,53.5 - parent: 1 - type: Transform -- uid: 6796 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -35.5,53.5 - parent: 1 - type: Transform -- uid: 6797 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -36.5,48.5 - parent: 1 - type: Transform -- uid: 6798 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -37.5,53.5 - parent: 1 - type: Transform -- uid: 6799 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -38.5,53.5 - parent: 1 - type: Transform -- uid: 6800 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -33.5,49.5 - parent: 1 - type: Transform -- uid: 6801 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -38.5,51.5 - parent: 1 - type: Transform -- uid: 6802 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -33.5,50.5 - parent: 1 - type: Transform -- uid: 6803 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -38.5,49.5 - parent: 1 - type: Transform -- uid: 6804 - type: Grille - components: - - pos: -42.5,53.5 - parent: 1 - type: Transform -- uid: 6805 - type: WallReinforced - components: - - pos: -62.5,57.5 - parent: 1 - type: Transform -- uid: 6806 - type: WallReinforced - components: - - pos: -58.5,50.5 - parent: 1 - type: Transform -- uid: 6807 - type: AirlockEngineeringLocked - components: - - pos: -34.5,56.5 - parent: 1 - type: Transform -- uid: 6808 - type: Window - components: - - pos: -40.5,53.5 - parent: 1 - type: Transform -- uid: 6809 - type: Window - components: - - pos: -39.5,53.5 - parent: 1 - type: Transform -- uid: 6810 - type: Grille - components: - - pos: -39.5,53.5 - parent: 1 - type: Transform -- uid: 6811 - type: Grille - components: - - pos: -41.5,53.5 - parent: 1 - type: Transform -- uid: 6812 - type: SubstationBasic - components: - - pos: -35.5,57.5 - parent: 1 - type: Transform -- uid: 6813 - type: WallReinforced - components: - - pos: -61.5,56.5 - parent: 1 - type: Transform -- uid: 6814 - type: WallReinforced - components: - - pos: -58.5,51.5 - parent: 1 - type: Transform -- uid: 6815 - type: WallReinforced - components: - - pos: -60.5,56.5 - parent: 1 - type: Transform -- uid: 6816 - type: Grille - components: - - pos: -40.5,53.5 - parent: 1 - type: Transform -- uid: 6817 - type: WallReinforced - components: - - pos: -58.5,52.5 - parent: 1 - type: Transform -- uid: 6818 - type: SurveillanceCameraSupply - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-9.5 - parent: 1 - type: Transform - - id: Cargo Dock - type: SurveillanceCamera -- uid: 6819 - type: WallReinforced - components: - - pos: -59.5,56.5 - parent: 1 - type: Transform -- uid: 6820 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: -41.5,48.5 - parent: 1 - type: Transform -- uid: 6821 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -41.5,48.5 - parent: 1 - type: Transform -- uid: 6822 - type: TableCarpet - components: - - pos: -36.5,52.5 - parent: 1 - type: Transform -- uid: 6823 - type: TableCarpet - components: - - pos: -35.5,52.5 - parent: 1 - type: Transform -- uid: 6824 - type: TableCarpet - components: - - pos: -34.5,52.5 - parent: 1 - type: Transform -- uid: 6825 - type: Bed - components: - - pos: -34.5,49.5 - parent: 1 - type: Transform -- uid: 6826 - type: BedsheetWiz - components: - - pos: -34.5,49.5 - parent: 1 - type: Transform -- uid: 6827 - type: ClothingHeadHatRedwizard - components: - - pos: -37.53184,52.803024 - parent: 1 - type: Transform -- uid: 6828 - type: ClothingOuterWizardRed - components: - - pos: -37.516216,52.5999 - parent: 1 - type: Transform -- uid: 6829 - type: ClothingHeadHatVioletwizard - components: - - pos: -35.516216,52.7874 - parent: 1 - type: Transform -- uid: 6830 - type: ClothingOuterWizardViolet - components: - - pos: -35.484966,52.646774 - parent: 1 - type: Transform -- uid: 6831 - type: ClothingHeadHatWizard - components: - - pos: -34.547466,52.896774 - parent: 1 - type: Transform -- uid: 6832 - type: ClothingOuterWizard - components: - - pos: -34.484966,52.63115 - parent: 1 - type: Transform -- uid: 6833 - type: ClothingShoesWizard - components: - - pos: -36.71934,52.678024 - parent: 1 - type: Transform -- uid: 6834 - type: ClothingShoesWizard - components: - - pos: -36.359966,52.553024 - parent: 1 - type: Transform -- uid: 6835 - type: PottedPlantRandomPlastic - components: - - pos: -37.5,51.5 - parent: 1 - type: Transform -- uid: 6836 - type: PottedPlantRandomPlastic - components: - - pos: -36.5,51.5 - parent: 1 - type: Transform -- uid: 6837 - type: PottedPlantRandomPlastic - components: - - pos: -35.5,51.5 - parent: 1 - type: Transform -- uid: 6838 - type: PottedPlantRandomPlastic - components: - - pos: -34.5,51.5 - parent: 1 - type: Transform -- uid: 6839 - type: PottedPlantRandomPlastic - components: - - pos: -34.5,50.5 - parent: 1 - type: Transform -- uid: 6840 - type: PottedPlantRandomPlastic - components: - - pos: -35.5,50.5 - parent: 1 - type: Transform -- uid: 6841 - type: PottedPlantRandomPlastic - components: - - pos: -36.5,50.5 - parent: 1 - type: Transform -- uid: 6842 - type: PottedPlantRandomPlastic - components: - - pos: -37.5,50.5 - parent: 1 - type: Transform -- uid: 6843 - type: PottedPlantRandomPlastic - components: - - pos: -36.5,49.5 - parent: 1 - type: Transform -- uid: 6844 - type: PottedPlantRandomPlastic - components: - - pos: -35.5,49.5 - parent: 1 - type: Transform -- uid: 6845 - type: WallReinforced - components: - - pos: -34.5,58.5 - parent: 1 - type: Transform -- uid: 6846 - type: WallReinforced - components: - - pos: -35.5,58.5 - parent: 1 - type: Transform -- uid: 6847 - type: WallReinforced - components: - - pos: -36.5,58.5 - parent: 1 - type: Transform -- uid: 6848 - type: WallReinforced - components: - - pos: -36.5,57.5 - parent: 1 - type: Transform -- uid: 6849 - type: WallReinforced - components: - - pos: -36.5,56.5 - parent: 1 - type: Transform -- uid: 6850 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -35.5,56.5 - parent: 1 - type: Transform -- uid: 6851 - type: WallReinforced - components: - - pos: -37.5,56.5 - parent: 1 - type: Transform -- uid: 6852 - type: WallReinforced - components: - - pos: -38.5,56.5 - parent: 1 - type: Transform -- uid: 6853 - type: WallReinforced - components: - - pos: -39.5,56.5 - parent: 1 - type: Transform -- uid: 6854 - type: WallReinforced - components: - - pos: -40.5,56.5 - parent: 1 - type: Transform -- uid: 6855 - type: WallReinforced - components: - - pos: -41.5,56.5 - parent: 1 - type: Transform -- uid: 6856 - type: WallReinforced - components: - - pos: -42.5,56.5 - parent: 1 - type: Transform -- uid: 6857 - type: WallReinforced - components: - - pos: -43.5,56.5 - parent: 1 - type: Transform -- uid: 6858 - type: WallReinforced - components: - - pos: -59.5,49.5 - parent: 1 - type: Transform -- uid: 6859 - type: WallReinforced - components: - - pos: -60.5,49.5 - parent: 1 - type: Transform -- uid: 6860 - type: hydroponicsTray - components: - - pos: -43.5,45.5 - parent: 1 - type: Transform -- uid: 6861 - type: hydroponicsTray - components: - - pos: -43.5,44.5 - parent: 1 - type: Transform -- uid: 6862 - type: hydroponicsTray - components: - - pos: -43.5,43.5 - parent: 1 - type: Transform -- uid: 6863 - type: hydroponicsTray - components: - - pos: -42.5,45.5 - parent: 1 - type: Transform -- uid: 6864 - type: hydroponicsTray - components: - - pos: -42.5,44.5 - parent: 1 - type: Transform -- uid: 6865 - type: hydroponicsTray - components: - - pos: -42.5,43.5 - parent: 1 - type: Transform -- uid: 6866 - type: hydroponicsTray - components: - - pos: -41.5,45.5 - parent: 1 - type: Transform -- uid: 6867 - type: hydroponicsTray - components: - - pos: -41.5,44.5 - parent: 1 - type: Transform -- uid: 6868 - type: hydroponicsTray - components: - - pos: -41.5,43.5 - parent: 1 - type: Transform -- uid: 6869 - type: hydroponicsTray - components: - - pos: -44.5,41.5 - parent: 1 - type: Transform -- uid: 6870 - type: hydroponicsTray - components: - - pos: -43.5,41.5 - parent: 1 - type: Transform -- uid: 6871 - type: hydroponicsTray - components: - - pos: -42.5,41.5 - parent: 1 - type: Transform -- uid: 6872 - type: hydroponicsTray - components: - - pos: -41.5,41.5 - parent: 1 - type: Transform -- uid: 6873 - type: WallReinforced - components: - - pos: -61.5,49.5 - parent: 1 - type: Transform -- uid: 6874 - type: WallReinforced - components: - - pos: -62.5,49.5 - parent: 1 - type: Transform -- uid: 6875 - type: WallReinforced - components: - - pos: -63.5,49.5 - parent: 1 - type: Transform -- uid: 6876 - type: WallReinforced - components: - - pos: -58.5,48.5 - parent: 1 - type: Transform -- uid: 6877 - type: WallReinforced - components: - - pos: -62.5,56.5 - parent: 1 - type: Transform -- uid: 6878 - type: WallReinforced - components: - - pos: -62.5,58.5 - parent: 1 - type: Transform -- uid: 6879 - type: AirlockHydroGlassLocked - components: - - pos: -40.5,48.5 - parent: 1 - type: Transform -- uid: 6880 - type: AirlockHydroponicsLocked - components: - - pos: -45.5,46.5 - parent: 1 - type: Transform -- uid: 6881 - type: AirlockHydroponicsLocked - components: - - pos: -40.5,40.5 - parent: 1 - type: Transform -- uid: 6882 - type: WallReinforced - components: - - pos: -62.5,59.5 - parent: 1 - type: Transform -- uid: 6883 - type: WindoorKitchenHydroponicsLocked - components: - - rot: 1.5707963267948966 rad - pos: -39.5,46.5 - parent: 1 - type: Transform -- uid: 6884 - type: WindoorKitchenHydroponicsLocked - components: - - rot: 1.5707963267948966 rad - pos: -39.5,45.5 - parent: 1 - type: Transform -- uid: 6885 - type: WindoorKitchenHydroponicsLocked - components: - - rot: 1.5707963267948966 rad - pos: -39.5,44.5 - parent: 1 - type: Transform -- uid: 6886 - type: WindoorKitchenHydroponicsLocked - components: - - rot: 1.5707963267948966 rad - pos: -39.5,43.5 - parent: 1 - type: Transform -- uid: 6887 - type: Window - components: - - pos: -42.5,53.5 - parent: 1 - type: Transform -- uid: 6888 - type: WindoorHydroponicsLocked - components: - - rot: 1.5707963267948966 rad - pos: -45.5,42.5 - parent: 1 - type: Transform -- uid: 6889 - type: WindoorHydroponicsLocked - components: - - rot: 1.5707963267948966 rad - pos: -45.5,43.5 - parent: 1 - type: Transform -- uid: 6890 - type: Table - components: - - pos: -45.5,42.5 - parent: 1 - type: Transform -- uid: 6891 - type: Table - components: - - pos: -45.5,43.5 - parent: 1 - type: Transform -- uid: 6892 - type: Table - components: - - pos: -45.5,44.5 - parent: 1 - type: Transform -- uid: 6893 - type: Table - components: - - pos: -39.5,43.5 - parent: 1 - type: Transform -- uid: 6894 - type: Table - components: - - pos: -39.5,44.5 - parent: 1 - type: Transform -- uid: 6895 - type: Table - components: - - pos: -39.5,45.5 - parent: 1 - type: Transform -- uid: 6896 - type: Table - components: - - pos: -39.5,46.5 - parent: 1 - type: Transform -- uid: 6897 - type: Table - components: - - pos: -36.5,41.5 - parent: 1 - type: Transform -- uid: 6898 - type: Table - components: - - pos: -35.5,41.5 - parent: 1 - type: Transform -- uid: 6899 - type: TableWood - components: - - pos: -33.5,38.5 - parent: 1 - type: Transform -- uid: 6900 - type: TableWood - components: - - pos: -33.5,37.5 - parent: 1 - type: Transform -- uid: 6901 - type: TableWood - components: - - pos: -33.5,36.5 - parent: 1 - type: Transform -- uid: 6902 - type: TableWood - components: - - pos: -33.5,35.5 - parent: 1 - type: Transform -- uid: 6903 - type: AirlockKitchenGlassLocked - components: - - pos: -37.5,41.5 - parent: 1 - type: Transform -- uid: 6904 - type: WindoorKitchenLocked - components: - - rot: 3.141592653589793 rad - pos: -36.5,41.5 - parent: 1 - type: Transform -- uid: 6905 - type: WindoorKitchenLocked - components: - - rot: 3.141592653589793 rad - pos: -35.5,41.5 - parent: 1 - type: Transform -- uid: 6906 - type: KitchenMicrowave - components: - - pos: -33.5,42.5 - parent: 1 - type: Transform -- uid: 6907 - type: KitchenMicrowave - components: - - pos: -36.5,47.5 - parent: 1 - type: Transform -- uid: 6908 - type: KitchenReagentGrinder - components: - - pos: -34.5,45.5 - parent: 1 - type: Transform -- uid: 6909 - type: Table - components: - - pos: -36.5,45.5 - parent: 1 - type: Transform -- uid: 6910 - type: Table - components: - - pos: -36.5,44.5 - parent: 1 - type: Transform -- uid: 6911 - type: Table - components: - - pos: -35.5,45.5 - parent: 1 - type: Transform -- uid: 6912 - type: Table - components: - - pos: -35.5,44.5 - parent: 1 - type: Transform -- uid: 6913 - type: Table - components: - - pos: -34.5,45.5 - parent: 1 - type: Transform -- uid: 6914 - type: Table - components: - - pos: -34.5,44.5 - parent: 1 - type: Transform -- uid: 6915 - type: Table - components: - - pos: -37.5,47.5 - parent: 1 - type: Transform -- uid: 6916 - type: Table - components: - - pos: -36.5,47.5 - parent: 1 - type: Transform -- uid: 6917 - type: Table - components: - - pos: -35.5,47.5 - parent: 1 - type: Transform -- uid: 6918 - type: VendingMachineHappyHonk - components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,47.5 - parent: 1 - type: Transform -- uid: 6919 - type: CrateNPCCow - components: - - pos: -34.5,42.5 - parent: 1 - type: Transform - - air: - volume: 800 - immutable: False - temperature: 293.1499 - moles: - - 11.733055 - - 44.138634 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6920 - type: Table - components: - - pos: -33.5,42.5 - parent: 1 - type: Transform -- uid: 6921 - type: Table - components: - - pos: -32.5,42.5 - parent: 1 - type: Transform -- uid: 6922 - type: Table - components: - - pos: -33.5,44.5 - parent: 1 - type: Transform -- uid: 6923 - type: Table - components: - - pos: -33.5,45.5 - parent: 1 - type: Transform -- uid: 6924 - type: KitchenSpike - components: - - pos: -27.5,46.5 - parent: 1 - type: Transform -- uid: 6925 - type: KitchenSpike - components: - - pos: -27.5,47.5 - parent: 1 - type: Transform -- uid: 6926 - type: AirlockFreezerLocked - components: - - pos: -26.5,45.5 - parent: 1 - type: Transform -- uid: 6927 - type: AirlockFreezerLocked - components: - - pos: -30.5,46.5 - parent: 1 - type: Transform -- uid: 6928 - type: FloorDrain - components: - - pos: -28.5,46.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 6929 - type: LockerFreezer - components: - - pos: -29.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6930 - type: VendingMachineChefDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,42.5 - parent: 1 - type: Transform -- uid: 6931 - type: VendingMachineChefvend - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,47.5 - parent: 1 - type: Transform -- uid: 6932 - type: VendingMachineDinnerware - components: - - flags: SessionSpecific - type: MetaData - - pos: -33.5,47.5 - parent: 1 - type: Transform -- uid: 6933 - type: SpawnPointChef - components: - - pos: -37.5,44.5 - parent: 1 - type: Transform -- uid: 6934 - type: SpawnPointChef - components: - - pos: -37.5,45.5 - parent: 1 - type: Transform -- uid: 6935 - type: ClosetChefFilled - components: - - pos: -31.5,47.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6936 - type: DisposalUnit - components: - - pos: -38.5,42.5 - parent: 1 - type: Transform -- uid: 6937 - type: DisposalUnit - components: - - pos: -44.5,39.5 - parent: 1 - type: Transform -- uid: 6938 - type: DisposalUnit - components: - - pos: -44.5,47.5 - parent: 1 - type: Transform -- uid: 6939 - type: HydroponicsToolMiniHoe - components: - - pos: -42.847298,47.547256 - parent: 1 - type: Transform -- uid: 6940 - type: TableReinforcedGlass - components: - - pos: -42.5,47.5 - parent: 1 - type: Transform -- uid: 6941 - type: VendingMachineNutri - components: - - flags: SessionSpecific - type: MetaData - - pos: -42.5,49.5 - parent: 1 - type: Transform -- uid: 6942 - type: SeedExtractor - components: - - pos: -41.5,49.5 - parent: 1 - type: Transform -- uid: 6943 - type: ResearchAndDevelopmentServer - components: - - pos: -13.5,-8.5 - parent: 1 - type: Transform -- uid: 6944 - type: WallReinforced - components: - - pos: -58.5,58.5 - parent: 1 - type: Transform -- uid: 6945 - type: WaterTankHighCapacity - components: - - pos: -41.5,47.5 - parent: 1 - type: Transform -- uid: 6946 - type: Bucket - components: - - pos: -42.23494,47.51451 - parent: 1 - type: Transform -- uid: 6947 - type: Bucket - components: - - pos: -42.42244,47.655136 - parent: 1 - type: Transform -- uid: 6948 - type: TableReinforcedGlass - components: - - pos: -43.5,47.5 - parent: 1 - type: Transform -- uid: 6949 - type: Window - components: - - pos: -41.5,53.5 - parent: 1 - type: Transform -- uid: 6950 - type: PlantBag - components: - - pos: -43.550423,47.547256 - parent: 1 - type: Transform -- uid: 6951 - type: HydroponicsToolClippers - components: - - pos: -42.941048,47.547256 - parent: 1 - type: Transform -- uid: 6952 - type: WallReinforced - components: - - pos: -61.5,59.5 - parent: 1 - type: Transform -- uid: 6953 - type: KitchenKnife - components: - - pos: -36.41309,45.528122 - parent: 1 - type: Transform -- uid: 6954 - type: ReagentContainerFlour - components: - - pos: -36.304527,44.574997 - parent: 1 - type: Transform -- uid: 6955 - type: ReagentContainerFlour - components: - - pos: -33.757652,44.762497 - parent: 1 - type: Transform -- uid: 6956 - type: ReagentContainerSugar - components: - - pos: -35.288902,45.293747 - parent: 1 - type: Transform -- uid: 6957 - type: DrinkMilkCarton - components: - - pos: -35.398277,47.715622 - parent: 1 - type: Transform -- uid: 6958 - type: DrinkMilkCarton - components: - - pos: -32.460777,42.668747 - parent: 1 - type: Transform -- uid: 6959 - type: Girder - components: - - pos: -33.5,53.5 - parent: 1 - type: Transform -- uid: 6960 - type: WallSolid - components: - - pos: -43.5,53.5 - parent: 1 - type: Transform -- uid: 6961 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -37.5,48.5 - parent: 1 - type: Transform -- uid: 6962 - type: WindoorHydroponicsLocked - components: - - rot: 1.5707963267948966 rad - pos: -45.5,44.5 - parent: 1 - type: Transform -- uid: 6963 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: -45.5,44.5 - parent: 1 - type: Transform -- uid: 6964 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: -45.5,43.5 - parent: 1 - type: Transform -- uid: 6965 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: -45.5,42.5 - parent: 1 - type: Transform -- uid: 6966 - type: AirlockExternalLocked - components: - - pos: -31.5,56.5 - parent: 1 - type: Transform -- uid: 6967 - type: AirlockExternalLocked - components: - - pos: -31.5,58.5 - parent: 1 - type: Transform -- uid: 6968 - type: OxygenCanister - components: - - pos: -32.5,57.5 - parent: 1 - type: Transform -- uid: 6969 - type: WallReinforced - components: - - pos: -57.5,59.5 - parent: 1 - type: Transform -- uid: 6970 - type: ReinforcedWindow - components: - - pos: -56.5,59.5 - parent: 1 - type: Transform -- uid: 6971 - type: ReinforcedWindow - components: - - pos: -55.5,59.5 - parent: 1 - type: Transform -- uid: 6972 - type: ReinforcedWindow - components: - - pos: -54.5,59.5 - parent: 1 - type: Transform -- uid: 6973 - type: WallReinforced - components: - - pos: -51.5,59.5 - parent: 1 - type: Transform -- uid: 6974 - type: WallReinforced - components: - - pos: -53.5,66.5 - parent: 1 - type: Transform -- uid: 6975 - type: WallReinforced - components: - - pos: -45.5,58.5 - parent: 1 - type: Transform -- uid: 6976 - type: WallReinforced - components: - - pos: -45.5,57.5 - parent: 1 - type: Transform -- uid: 6977 - type: WallReinforced - components: - - pos: -49.5,56.5 - parent: 1 - type: Transform -- uid: 6978 - type: WallReinforced - components: - - pos: -49.5,57.5 - parent: 1 - type: Transform -- uid: 6979 - type: ClothingUniformJumpskirtJanimaid - components: - - flags: InContainer - type: MetaData - - parent: 7028 - type: Transform - - canCollide: False - type: Physics -- uid: 6980 - type: WallReinforced - components: - - pos: -49.5,58.5 - parent: 1 - type: Transform -- uid: 6981 - type: WallReinforced - components: - - pos: -49.5,59.5 - parent: 1 - type: Transform -- uid: 6982 - type: ReinforcedWindow - components: - - pos: -48.5,56.5 - parent: 1 - type: Transform -- uid: 6983 - type: ReinforcedWindow - components: - - pos: -46.5,56.5 - parent: 1 - type: Transform -- uid: 6984 - type: Grille - components: - - pos: -48.5,56.5 - parent: 1 - type: Transform -- uid: 6985 - type: Grille - components: - - pos: -46.5,56.5 - parent: 1 - type: Transform -- uid: 6986 - type: ReinforcedWindow - components: - - pos: -50.5,52.5 - parent: 1 - type: Transform -- uid: 6987 - type: ReinforcedWindow - components: - - pos: -53.5,52.5 - parent: 1 - type: Transform -- uid: 6988 - type: ReinforcedWindow - components: - - pos: -56.5,52.5 - parent: 1 - type: Transform -- uid: 6989 - type: Grille - components: - - pos: -57.5,48.5 - parent: 1 - type: Transform -- uid: 6990 - type: Grille - components: - - pos: -56.5,48.5 - parent: 1 - type: Transform -- uid: 6991 - type: Grille - components: - - pos: -54.5,48.5 - parent: 1 - type: Transform -- uid: 6992 - type: Grille - components: - - pos: -53.5,48.5 - parent: 1 - type: Transform -- uid: 6993 - type: Grille - components: - - pos: -51.5,48.5 - parent: 1 - type: Transform -- uid: 6994 - type: Grille - components: - - pos: -50.5,48.5 - parent: 1 - type: Transform -- uid: 6995 - type: Grille - components: - - pos: -50.5,52.5 - parent: 1 - type: Transform -- uid: 6996 - type: Grille - components: - - pos: -53.5,52.5 - parent: 1 - type: Transform -- uid: 6997 - type: Grille - components: - - pos: -56.5,52.5 - parent: 1 - type: Transform -- uid: 6998 - type: WallReinforced - components: - - pos: -60.5,59.5 - parent: 1 - type: Transform -- uid: 6999 - type: WallReinforced - components: - - pos: -59.5,59.5 - parent: 1 - type: Transform -- uid: 7000 - type: WallReinforced - components: - - pos: -58.5,59.5 - parent: 1 - type: Transform -- uid: 7001 - type: WallReinforced - components: - - pos: -64.5,56.5 - parent: 1 - type: Transform -- uid: 7002 - type: WallReinforced - components: - - pos: -63.5,56.5 - parent: 1 - type: Transform -- uid: 7003 - type: WallReinforced - components: - - pos: -53.5,59.5 - parent: 1 - type: Transform -- uid: 7004 - type: Grille - components: - - pos: -54.5,59.5 - parent: 1 - type: Transform -- uid: 7005 - type: Grille - components: - - pos: -55.5,59.5 - parent: 1 - type: Transform -- uid: 7006 - type: Grille - components: - - pos: -56.5,59.5 - parent: 1 - type: Transform -- uid: 7007 - type: WallReinforced - components: - - pos: -45.5,59.5 - parent: 1 - type: Transform -- uid: 7008 - type: WallReinforced - components: - - pos: -45.5,60.5 - parent: 1 - type: Transform -- uid: 7009 - type: WallReinforced - components: - - pos: -45.5,61.5 - parent: 1 - type: Transform -- uid: 7010 - type: WallReinforced - components: - - pos: -45.5,62.5 - parent: 1 - type: Transform -- uid: 7011 - type: WallReinforced - components: - - pos: -45.5,63.5 - parent: 1 - type: Transform -- uid: 7012 - type: ReinforcedWindow - components: - - pos: -46.5,63.5 - parent: 1 - type: Transform -- uid: 7013 - type: ReinforcedWindow - components: - - pos: -48.5,63.5 - parent: 1 - type: Transform -- uid: 7014 - type: Grille - components: - - pos: -48.5,63.5 - parent: 1 - type: Transform -- uid: 7015 - type: WallReinforced - components: - - pos: -49.5,63.5 - parent: 1 - type: Transform -- uid: 7016 - type: WallReinforced - components: - - pos: -41.5,59.5 - parent: 1 - type: Transform -- uid: 7017 - type: WallReinforced - components: - - pos: -39.5,59.5 - parent: 1 - type: Transform -- uid: 7018 - type: WallReinforced - components: - - pos: -40.5,60.5 - parent: 1 - type: Transform -- uid: 7019 - type: WallReinforced - components: - - pos: -39.5,61.5 - parent: 1 - type: Transform -- uid: 7020 - type: WallReinforced - components: - - pos: -39.5,62.5 - parent: 1 - type: Transform -- uid: 7021 - type: WallReinforced - components: - - pos: -40.5,59.5 - parent: 1 - type: Transform -- uid: 7022 - type: WallReinforced - components: - - pos: -39.5,60.5 - parent: 1 - type: Transform -- uid: 7023 - type: WallReinforced - components: - - pos: -43.5,60.5 - parent: 1 - type: Transform -- uid: 7024 - type: WallReinforced - components: - - pos: -42.5,59.5 - parent: 1 - type: Transform -- uid: 7025 - type: WallReinforced - components: - - pos: -45.5,66.5 - parent: 1 - type: Transform -- uid: 7026 - type: WallReinforced - components: - - pos: -41.5,60.5 - parent: 1 - type: Transform -- uid: 7027 - type: WallSolidRust - components: - - pos: -49.5,39.5 - parent: 1 - type: Transform -- uid: 7028 - type: ToiletEmpty - components: - - rot: -1.5707963267948966 rad - pos: -50.5,40.5 - parent: 1 - type: Transform - - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 6979 - type: ContainerContainer - - bodyType: Static - type: Physics -- uid: 7029 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -52.5,45.5 - parent: 1 - type: Transform -- uid: 7030 - type: Girder - components: - - pos: -54.5,45.5 - parent: 1 - type: Transform -- uid: 7031 - type: Girder - components: - - pos: -51.5,45.5 - parent: 1 - type: Transform -- uid: 7032 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -53.5,45.5 - parent: 1 - type: Transform -- uid: 7033 - type: WallSolid - components: - - pos: -55.5,45.5 - parent: 1 - type: Transform -- uid: 7034 - type: WallSolid - components: - - pos: -55.5,44.5 - parent: 1 - type: Transform -- uid: 7035 - type: WallSolidRust - components: - - pos: -55.5,43.5 - parent: 1 - type: Transform -- uid: 7036 - type: WallSolid - components: - - pos: -55.5,42.5 - parent: 1 - type: Transform -- uid: 7037 - type: Girder - components: - - pos: -55.5,41.5 - parent: 1 - type: Transform -- uid: 7038 - type: WallSolid - components: - - pos: -55.5,40.5 - parent: 1 - type: Transform -- uid: 7039 - type: WallSolidRust - components: - - pos: -51.5,39.5 - parent: 1 - type: Transform -- uid: 7040 - type: WallSolid - components: - - pos: -55.5,38.5 - parent: 1 - type: Transform -- uid: 7041 - type: WallSolid - components: - - pos: -54.5,34.5 - parent: 1 - type: Transform -- uid: 7042 - type: WallSolidRust - components: - - pos: -54.5,38.5 - parent: 1 - type: Transform -- uid: 7043 - type: WallSolid - components: - - pos: -54.5,37.5 - parent: 1 - type: Transform -- uid: 7044 - type: WallSolidRust - components: - - pos: -54.5,35.5 - parent: 1 - type: Transform -- uid: 7045 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -50.5,37.5 - parent: 1 - type: Transform -- uid: 7046 - type: AirlockJanitorLocked - components: - - pos: -52.5,39.5 - parent: 1 - type: Transform -- uid: 7047 - type: WallSolid - components: - - pos: -52.5,34.5 - parent: 1 - type: Transform -- uid: 7048 - type: WallSolid - components: - - pos: -53.5,34.5 - parent: 1 - type: Transform -- uid: 7049 - type: WallSolidRust - components: - - pos: -54.5,36.5 - parent: 1 - type: Transform -- uid: 7050 - type: WallSolid - components: - - pos: -49.5,35.5 - parent: 1 - type: Transform -- uid: 7051 - type: AirlockJanitorLocked - components: - - pos: -49.5,36.5 - parent: 1 - type: Transform -- uid: 7052 - type: WallSolidRust - components: - - pos: -50.5,45.5 - parent: 1 - type: Transform -- uid: 7053 - type: WallSolid - components: - - pos: -49.5,38.5 - parent: 1 - type: Transform -- uid: 7054 - type: WallSolidRust - components: - - pos: -52.5,42.5 - parent: 1 - type: Transform -- uid: 7055 - type: WallSolidRust - components: - - pos: -50.5,44.5 - parent: 1 - type: Transform -- uid: 7056 - type: WallSolid - components: - - pos: -49.5,41.5 - parent: 1 - type: Transform -- uid: 7057 - type: WallSolid - components: - - pos: -49.5,42.5 - parent: 1 - type: Transform -- uid: 7058 - type: Girder - components: - - pos: -53.5,40.5 - parent: 1 - type: Transform -- uid: 7059 - type: WallSolid - components: - - pos: -51.5,42.5 - parent: 1 - type: Transform -- uid: 7060 - type: WallSolidRust - components: - - pos: -49.5,40.5 - parent: 1 - type: Transform -- uid: 7061 - type: WallSolid - components: - - pos: -53.5,42.5 - parent: 1 - type: Transform -- uid: 7062 - type: Girder - components: - - pos: -50.5,42.5 - parent: 1 - type: Transform -- uid: 7063 - type: AirlockMaintJanitorLocked - components: - - pos: -53.5,41.5 - parent: 1 - type: Transform -- uid: 7064 - type: WallSolid - components: - - pos: -53.5,39.5 - parent: 1 - type: Transform -- uid: 7065 - type: WallSolid - components: - - pos: -53.5,38.5 - parent: 1 - type: Transform -- uid: 7066 - type: RailingCorner - components: - - rot: 3.141592653589793 rad - pos: -51.5,37.5 - parent: 1 - type: Transform -- uid: 7067 - type: SpawnVehicleJanicart - components: - - pos: -51.5,36.5 - parent: 1 - type: Transform -- uid: 7068 - type: WallSolid - components: - - pos: -50.5,39.5 - parent: 1 - type: Transform -- uid: 7069 - type: WallSolidRust - components: - - pos: -55.5,34.5 - parent: 1 - type: Transform -- uid: 7070 - type: WallSolidRust - components: - - pos: -49.5,34.5 - parent: 1 - type: Transform -- uid: 7071 - type: ClosetJanitorFilled - components: - - pos: -50.5,38.5 - parent: 1 - type: Transform - - contents: - - maxAmount: 1 - amount: 1 - orGroup: null - prob: 0.01 - id: WeaponPistolMk58 - - maxAmount: 1 - amount: 2 - orGroup: null - prob: 1 - id: MopItem - - maxAmount: 1 - amount: 2 - orGroup: null - prob: 1 - id: BoxMousetrap - - maxAmount: 1 - amount: 3 - orGroup: null - prob: 1 - id: WetFloorSign - - maxAmount: 1 - amount: 2 - orGroup: null - prob: 1 - id: TrashBag - - maxAmount: 1 - amount: 1 - orGroup: null - prob: 1 - id: LightReplacer - - maxAmount: 1 - amount: 1 - orGroup: null - prob: 1 - id: BoxLightMixed - - maxAmount: 1 - amount: 1 - orGroup: null - prob: 1 - id: Holoprojector - - maxAmount: 1 - amount: 2 - orGroup: null - prob: 1 - id: SoapNT - - maxAmount: 1 - amount: 2 - orGroup: null - prob: 1 - id: FlashlightLantern - type: StorageFill - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15049 - type: ContainerContainer -- uid: 7072 - type: VendingMachineJaniDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -53.5,37.5 - parent: 1 - type: Transform -- uid: 7073 - type: Table - components: - - pos: -53.5,36.5 - parent: 1 - type: Transform -- uid: 7074 - type: CrateServiceJanitorialSupplies - components: - - pos: -53.5,35.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7565 - - 7136 - - 7134 - - 7133 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 7075 - type: ShuttersNormal - components: - - pos: -51.5,34.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7077 - type: SignalReceiver -- uid: 7076 - type: ShuttersNormal - components: - - pos: -50.5,34.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7077 - type: SignalReceiver -- uid: 7077 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: -52.5,34.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7075 - - port: Toggle - uid: 7076 - type: SignalTransmitter -- uid: 7078 - type: WallReinforced - components: - - pos: -39.5,63.5 - parent: 1 - type: Transform -- uid: 7079 - type: WallReinforced - components: - - pos: -39.5,64.5 - parent: 1 - type: Transform -- uid: 7080 - type: WallReinforced - components: - - pos: -40.5,62.5 - parent: 1 - type: Transform -- uid: 7081 - type: WallReinforced - components: - - pos: -40.5,63.5 - parent: 1 - type: Transform -- uid: 7082 - type: WallReinforced - components: - - pos: -42.5,60.5 - parent: 1 - type: Transform -- uid: 7083 - type: WallReinforced - components: - - pos: -41.5,66.5 - parent: 1 - type: Transform -- uid: 7084 - type: WallReinforced - components: - - pos: -41.5,67.5 - parent: 1 - type: Transform -- uid: 7085 - type: WallReinforced - components: - - pos: -42.5,66.5 - parent: 1 - type: Transform -- uid: 7086 - type: WallReinforced - components: - - pos: -40.5,67.5 - parent: 1 - type: Transform -- uid: 7087 - type: WallSolidRust - components: - - pos: -49.5,37.5 - parent: 1 - type: Transform -- uid: 7088 - type: SinkStemlessWater - components: - - pos: -51.5,41.5 - parent: 1 - type: Transform -- uid: 7089 - type: Mirror - components: - - pos: -51.5,42.5 - parent: 1 - type: Transform -- uid: 7090 - type: SpawnPointJanitor - components: - - pos: -51.5,40.5 - parent: 1 - type: Transform -- uid: 7091 - type: DisposalUnit - components: - - pos: -49.5,44.5 - parent: 1 - type: Transform -- uid: 7092 - type: DisposalUnit - components: - - pos: -55.5,37.5 - parent: 1 - type: Transform -- uid: 7093 - type: AirlockMaintLocked - components: - - pos: -55.5,39.5 - parent: 1 - type: Transform -- uid: 7094 - type: AirlockMaintLocked - components: - - pos: -50.5,43.5 - parent: 1 - type: Transform -- uid: 7095 - type: AirlockMaint - components: - - pos: -30.5,53.5 - parent: 1 - type: Transform -- uid: 7096 - type: CableMV - components: - - pos: -20.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7097 - type: RandomSoap - components: - - pos: -50.5,40.5 - parent: 1 - type: Transform -- uid: 7098 - type: MopBucket - components: - - pos: -51.5,38.5 - parent: 1 - type: Transform -- uid: 7099 - type: MopItem - components: - - pos: -51.5,38.5 - parent: 1 - type: Transform -- uid: 7100 - type: JanitorialTrolley - components: - - rot: -1.5707963267948966 rad - pos: -50.5,37.5 - parent: 1 - type: Transform -- uid: 7101 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7102 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -51.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7103 - type: WallReinforced - components: - - pos: -40.5,64.5 - parent: 1 - type: Transform -- uid: 7104 - type: WallReinforced - components: - - pos: -40.5,65.5 - parent: 1 - type: Transform -- uid: 7105 - type: WallReinforced - components: - - pos: -40.5,66.5 - parent: 1 - type: Transform -- uid: 7106 - type: WallReinforced - components: - - pos: -42.5,67.5 - parent: 1 - type: Transform -- uid: 7107 - type: WallReinforced - components: - - pos: -43.5,66.5 - parent: 1 - type: Transform -- uid: 7108 - type: WallReinforced - components: - - pos: -43.5,67.5 - parent: 1 - type: Transform -- uid: 7109 - type: WallReinforced - components: - - pos: -44.5,66.5 - parent: 1 - type: Transform -- uid: 7110 - type: WallReinforced - components: - - pos: -44.5,67.5 - parent: 1 - type: Transform -- uid: 7111 - type: WallReinforced - components: - - pos: -44.5,59.5 - parent: 1 - type: Transform -- uid: 7112 - type: WallReinforced - components: - - pos: -49.5,60.5 - parent: 1 - type: Transform -- uid: 7113 - type: Grille - components: - - pos: -46.5,63.5 - parent: 1 - type: Transform -- uid: 7114 - type: WallReinforced - components: - - pos: -39.5,65.5 - parent: 1 - type: Transform -- uid: 7115 - type: WallReinforced - components: - - pos: -39.5,66.5 - parent: 1 - type: Transform -- uid: 7116 - type: WallReinforced - components: - - pos: -39.5,67.5 - parent: 1 - type: Transform -- uid: 7117 - type: WallReinforced - components: - - pos: -40.5,61.5 - parent: 1 - type: Transform -- uid: 7118 - type: WallReinforced - components: - - pos: -44.5,60.5 - parent: 1 - type: Transform -- uid: 7119 - type: WallReinforced - components: - - pos: -43.5,59.5 - parent: 1 - type: Transform -- uid: 7120 - type: WallReinforced - components: - - pos: -47.5,66.5 - parent: 1 - type: Transform -- uid: 7121 - type: WallReinforced - components: - - pos: -48.5,66.5 - parent: 1 - type: Transform -- uid: 7122 - type: Catwalk - components: - - pos: -48.5,68.5 - parent: 1 - type: Transform -- uid: 7123 - type: WallReinforced - components: - - pos: -46.5,66.5 - parent: 1 - type: Transform -- uid: 7124 - type: WallReinforced - components: - - pos: -49.5,66.5 - parent: 1 - type: Transform -- uid: 7125 - type: WallReinforced - components: - - pos: -49.5,62.5 - parent: 1 - type: Transform -- uid: 7126 - type: WallReinforced - components: - - pos: -64.5,58.5 - parent: 1 - type: Transform -- uid: 7127 - type: WallReinforced - components: - - pos: -64.5,59.5 - parent: 1 - type: Transform -- uid: 7128 - type: WallReinforced - components: - - pos: -64.5,60.5 - parent: 1 - type: Transform -- uid: 7129 - type: WallReinforced - components: - - pos: -64.5,61.5 - parent: 1 - type: Transform -- uid: 7130 - type: WallReinforced - components: - - pos: -63.5,61.5 - parent: 1 - type: Transform -- uid: 7131 - type: WallReinforced - components: - - pos: -62.5,61.5 - parent: 1 - type: Transform -- uid: 7132 - type: WallReinforced - components: - - pos: -59.5,48.5 - parent: 1 - type: Transform -- uid: 7133 - type: SprayBottleSpaceCleaner - components: - - flags: InContainer - type: MetaData - - parent: 7074 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 7134 - type: SprayBottleSpaceCleaner - components: - - flags: InContainer - type: MetaData - - parent: 7074 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 7135 - type: ToiletEmpty - components: - - pos: -64.5,42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7136 - type: SprayBottleSpaceCleaner - components: - - flags: InContainer - type: MetaData - - parent: 7074 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 7137 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7138 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -65.5,41.5 - parent: 1 - type: Transform -- uid: 7139 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -62.5,35.5 - parent: 1 - type: Transform -- uid: 7140 - type: TableFrame - components: - - pos: -64.5,41.5 - parent: 1 - type: Transform -- uid: 7141 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -67.5,48.5 - parent: 1 - type: Transform -- uid: 7142 - type: WallReinforced - components: - - pos: -62.5,62.5 - parent: 1 - type: Transform -- uid: 7143 - type: WallReinforced - components: - - pos: -62.5,63.5 - parent: 1 - type: Transform -- uid: 7144 - type: WallReinforced - components: - - pos: -62.5,64.5 - parent: 1 - type: Transform -- uid: 7145 - type: WallReinforced - components: - - pos: -62.5,65.5 - parent: 1 - type: Transform -- uid: 7146 - type: WallReinforced - components: - - pos: -62.5,66.5 - parent: 1 - type: Transform -- uid: 7147 - type: WallReinforced - components: - - pos: -53.5,62.5 - parent: 1 - type: Transform -- uid: 7148 - type: ReinforcedWindow - components: - - pos: -53.5,63.5 - parent: 1 - type: Transform -- uid: 7149 - type: ReinforcedWindow - components: - - pos: -53.5,64.5 - parent: 1 - type: Transform -- uid: 7150 - type: ReinforcedWindow - components: - - pos: -53.5,65.5 - parent: 1 - type: Transform -- uid: 7151 - type: Grille - components: - - pos: -53.5,63.5 - parent: 1 - type: Transform -- uid: 7152 - type: Grille - components: - - pos: -53.5,64.5 - parent: 1 - type: Transform -- uid: 7153 - type: Grille - components: - - pos: -53.5,65.5 - parent: 1 - type: Transform -- uid: 7154 - type: ReinforcedWindow - components: - - pos: -61.5,66.5 - parent: 1 - type: Transform -- uid: 7155 - type: ReinforcedWindow - components: - - pos: -60.5,66.5 - parent: 1 - type: Transform -- uid: 7156 - type: ReinforcedWindow - components: - - pos: -59.5,66.5 - parent: 1 - type: Transform -- uid: 7157 - type: WallReinforced - components: - - pos: -57.5,65.5 - parent: 1 - type: Transform -- uid: 7158 - type: WallReinforced - components: - - pos: -57.5,64.5 - parent: 1 - type: Transform -- uid: 7159 - type: WallReinforced - components: - - pos: -57.5,63.5 - parent: 1 - type: Transform -- uid: 7160 - type: WallReinforced - components: - - pos: -61.5,62.5 - parent: 1 - type: Transform -- uid: 7161 - type: WallReinforced - components: - - pos: -60.5,62.5 - parent: 1 - type: Transform -- uid: 7162 - type: Grille - components: - - pos: -58.5,62.5 - parent: 1 - type: Transform -- uid: 7163 - type: ReinforcedWindow - components: - - pos: -58.5,62.5 - parent: 1 - type: Transform -- uid: 7164 - type: ReinforcedWindow - components: - - pos: -58.5,66.5 - parent: 1 - type: Transform -- uid: 7165 - type: Grille - components: - - pos: -61.5,66.5 - parent: 1 - type: Transform -- uid: 7166 - type: Grille - components: - - pos: -60.5,66.5 - parent: 1 - type: Transform -- uid: 7167 - type: Grille - components: - - pos: -59.5,66.5 - parent: 1 - type: Transform -- uid: 7168 - type: Grille - components: - - pos: -58.5,66.5 - parent: 1 - type: Transform -- uid: 7169 - type: WallReinforced - components: - - pos: -57.5,66.5 - parent: 1 - type: Transform -- uid: 7170 - type: ReinforcedWindow - components: - - pos: -56.5,66.5 - parent: 1 - type: Transform -- uid: 7171 - type: ReinforcedWindow - components: - - pos: -55.5,66.5 - parent: 1 - type: Transform -- uid: 7172 - type: ReinforcedWindow - components: - - pos: -54.5,66.5 - parent: 1 - type: Transform -- uid: 7173 - type: Grille - components: - - pos: -56.5,66.5 - parent: 1 - type: Transform -- uid: 7174 - type: Grille - components: - - pos: -55.5,66.5 - parent: 1 - type: Transform -- uid: 7175 - type: Grille - components: - - pos: -54.5,66.5 - parent: 1 - type: Transform -- uid: 7176 - type: WallReinforced - components: - - pos: -57.5,62.5 - parent: 1 - type: Transform -- uid: 7177 - type: ReinforcedWindow - components: - - pos: -56.5,62.5 - parent: 1 - type: Transform -- uid: 7178 - type: ReinforcedWindow - components: - - pos: -54.5,62.5 - parent: 1 - type: Transform -- uid: 7179 - type: Grille - components: - - pos: -56.5,62.5 - parent: 1 - type: Transform -- uid: 7180 - type: Grille - components: - - pos: -54.5,62.5 - parent: 1 - type: Transform -- uid: 7181 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,70.5 - parent: 1 - type: Transform -- uid: 7182 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -48.5,69.5 - parent: 1 - type: Transform -- uid: 7183 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -47.5,69.5 - parent: 1 - type: Transform -- uid: 7184 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -46.5,69.5 - parent: 1 - type: Transform -- uid: 7185 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -45.5,69.5 - parent: 1 - type: Transform -- uid: 7186 - type: ClothingOuterHardsuitEVAPrisoner - components: - - flags: InContainer - type: MetaData - - parent: 5749 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 7187 - type: ClothingOuterHardsuitEVAPrisoner - components: - - flags: InContainer - type: MetaData - - parent: 5749 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 7188 - type: TableReinforced - components: - - pos: -47.5,68.5 - parent: 1 - type: Transform -- uid: 7189 - type: TableReinforced - components: - - pos: -46.5,68.5 - parent: 1 - type: Transform -- uid: 7190 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -49.5,77.5 - parent: 1 - type: Transform -- uid: 7191 - type: WallReinforced - components: - - pos: -51.5,66.5 - parent: 1 - type: Transform -- uid: 7192 - type: SignalButton - components: - - rot: -1.5707963267948966 rad - pos: -49.5,79.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7211 - - port: Toggle - uid: 7210 - - port: Toggle - uid: 7209 - - port: Toggle - uid: 7208 - - port: Toggle - uid: 7207 - - port: Toggle - uid: 7204 - - port: Toggle - uid: 7212 - - port: Toggle - uid: 7213 - - port: Toggle - uid: 7214 - - port: Toggle - uid: 7215 - - port: Toggle - uid: 7216 - - port: Toggle - uid: 7217 - type: SignalTransmitter -- uid: 7193 - type: WardrobePrison - components: - - pos: -54.5,80.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7221 - - 7202 - - 7222 - - 7223 - type: ContainerContainer -- uid: 7194 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -49.5,70.5 - parent: 1 - type: Transform -- uid: 7195 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -51.5,70.5 - parent: 1 - type: Transform -- uid: 7196 - type: AirlockExternalGlass - components: - - pos: -52.5,66.5 - parent: 1 - type: Transform -- uid: 7197 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,68.5 - parent: 1 - type: Transform -- uid: 7198 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -51.5,77.5 - parent: 1 - type: Transform -- uid: 7199 - type: AirlockExternalGlass - components: - - pos: -50.5,66.5 - parent: 1 - type: Transform -- uid: 7200 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,67.5 - parent: 1 - type: Transform -- uid: 7201 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,77.5 - parent: 1 - type: Transform -- uid: 7202 - type: ClothingHeadHelmetEVA - components: - - flags: InContainer - type: MetaData - - parent: 7193 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 7203 - type: AirlockExternalGlass - components: - - pos: -50.5,70.5 - parent: 1 - type: Transform -- uid: 7204 - type: BlastDoor - components: - - pos: -53.5,71.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver -- uid: 7205 - type: SignPrison - components: - - pos: -51.5,70.5 - parent: 1 - type: Transform -- uid: 7206 - type: AirlockExternalGlass - components: - - pos: -52.5,70.5 - parent: 1 - type: Transform -- uid: 7207 - type: BlastDoor - components: - - pos: -53.5,72.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver -- uid: 7208 - type: BlastDoor - components: - - pos: -53.5,73.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver -- uid: 7209 - type: BlastDoor - components: - - pos: -53.5,74.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver -- uid: 7210 - type: BlastDoor - components: - - pos: -53.5,75.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver -- uid: 7211 - type: BlastDoor - components: - - pos: -53.5,76.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver -- uid: 7212 - type: BlastDoor - components: - - pos: -49.5,71.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver -- uid: 7213 - type: BlastDoor - components: - - pos: -49.5,72.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver -- uid: 7214 - type: BlastDoor - components: - - pos: -49.5,73.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver -- uid: 7215 - type: BlastDoor - components: - - pos: -49.5,74.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver -- uid: 7216 - type: BlastDoor - components: - - pos: -49.5,75.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver -- uid: 7217 - type: BlastDoor - components: - - pos: -49.5,76.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7218 - - port: Pressed - uid: 7192 - type: SignalReceiver -- uid: 7218 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: -53.5,68.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7204 - - port: Toggle - uid: 7207 - - port: Toggle - uid: 7208 - - port: Toggle - uid: 7209 - - port: Toggle - uid: 7210 - - port: Toggle - uid: 7211 - - port: Toggle - uid: 7217 - - port: Toggle - uid: 7216 - - port: Toggle - uid: 7215 - - port: Toggle - uid: 7214 - - port: Toggle - uid: 7213 - - port: Toggle - uid: 7212 - type: SignalTransmitter -- uid: 7219 - type: AirlockExternalGlass - components: - - pos: -52.5,77.5 - parent: 1 - type: Transform -- uid: 7220 - type: AirlockExternalGlass - components: - - pos: -50.5,77.5 - parent: 1 - type: Transform -- uid: 7221 - type: ClothingHeadHelmetEVA - components: - - flags: InContainer - type: MetaData - - parent: 7193 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 7222 - type: ClothingOuterHardsuitEVAPrisoner - components: - - flags: InContainer - type: MetaData - - parent: 7193 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 7223 - type: ClothingOuterHardsuitEVAPrisoner - components: - - flags: InContainer - type: MetaData - - parent: 7193 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 7224 - type: WallReinforced - components: - - pos: -56.5,78.5 - parent: 1 - type: Transform -- uid: 7225 - type: Catwalk - components: - - pos: -55.5,80.5 - parent: 1 - type: Transform -- uid: 7226 - type: WallReinforced - components: - - pos: -56.5,80.5 - parent: 1 - type: Transform -- uid: 7227 - type: Catwalk - components: - - pos: -54.5,79.5 - parent: 1 - type: Transform -- uid: 7228 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -50.5,85.5 - parent: 1 - type: Transform -- uid: 7229 - type: TableReinforced - components: - - pos: -55.5,79.5 - parent: 1 - type: Transform -- uid: 7230 - type: WallReinforced - components: - - pos: -49.5,81.5 - parent: 1 - type: Transform -- uid: 7231 - type: WallReinforced - components: - - pos: -49.5,80.5 - parent: 1 - type: Transform -- uid: 7232 - type: WallReinforced - components: - - pos: -49.5,79.5 - parent: 1 - type: Transform -- uid: 7233 - type: WallReinforced - components: - - pos: -49.5,78.5 - parent: 1 - type: Transform -- uid: 7234 - type: WallReinforced - components: - - pos: -56.5,81.5 - parent: 1 - type: Transform -- uid: 7235 - type: WallReinforced - components: - - pos: -53.5,81.5 - parent: 1 - type: Transform -- uid: 7236 - type: WallReinforced - components: - - pos: -51.5,81.5 - parent: 1 - type: Transform -- uid: 7237 - type: ReinforcedWindow - components: - - pos: -58.5,54.5 - parent: 1 - type: Transform -- uid: 7238 - type: Grille - components: - - pos: -58.5,54.5 - parent: 1 - type: Transform -- uid: 7239 - type: ReinforcedWindow - components: - - pos: -49.5,54.5 - parent: 1 - type: Transform -- uid: 7240 - type: Catwalk - components: - - pos: -53.5,80.5 - parent: 1 - type: Transform -- uid: 7241 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -50.5,86.5 - parent: 1 - type: Transform -- uid: 7242 - type: Grille - components: - - pos: -49.5,54.5 - parent: 1 - type: Transform -- uid: 7243 - type: WallReinforced - components: - - pos: -55.5,81.5 - parent: 1 - type: Transform -- uid: 7244 - type: WallSolidRust - components: - - pos: -54.5,81.5 - parent: 1 - type: Transform -- uid: 7245 - type: WallReinforced - components: - - pos: -49.5,82.5 - parent: 1 - type: Transform -- uid: 7246 - type: WallReinforced - components: - - pos: -49.5,90.5 - parent: 1 - type: Transform -- uid: 7247 - type: WallReinforced - components: - - pos: -49.5,89.5 - parent: 1 - type: Transform -- uid: 7248 - type: WallReinforced - components: - - pos: -49.5,91.5 - parent: 1 - type: Transform -- uid: 7249 - type: ReinforcedWindow - components: - - pos: -49.5,88.5 - parent: 1 - type: Transform -- uid: 7250 - type: ReinforcedWindow - components: - - pos: -49.5,87.5 - parent: 1 - type: Transform -- uid: 7251 - type: ReinforcedWindow - components: - - pos: -49.5,86.5 - parent: 1 - type: Transform -- uid: 7252 - type: ReinforcedWindow - components: - - pos: -49.5,85.5 - parent: 1 - type: Transform -- uid: 7253 - type: ReinforcedWindow - components: - - pos: -49.5,84.5 - parent: 1 - type: Transform -- uid: 7254 - type: ReinforcedWindow - components: - - pos: -49.5,83.5 - parent: 1 - type: Transform -- uid: 7255 - type: Grille - components: - - pos: -49.5,83.5 - parent: 1 - type: Transform -- uid: 7256 - type: Grille - components: - - pos: -49.5,84.5 - parent: 1 - type: Transform -- uid: 7257 - type: Grille - components: - - pos: -49.5,85.5 - parent: 1 - type: Transform -- uid: 7258 - type: Grille - components: - - pos: -49.5,86.5 - parent: 1 - type: Transform -- uid: 7259 - type: Grille - components: - - pos: -49.5,87.5 - parent: 1 - type: Transform -- uid: 7260 - type: Grille - components: - - pos: -49.5,88.5 - parent: 1 - type: Transform -- uid: 7261 - type: WallReinforced - components: - - pos: -50.5,91.5 - parent: 1 - type: Transform -- uid: 7262 - type: ReinforcedWindow - components: - - pos: -51.5,91.5 - parent: 1 - type: Transform -- uid: 7263 - type: WallReinforced - components: - - pos: -52.5,91.5 - parent: 1 - type: Transform -- uid: 7264 - type: WallReinforced - components: - - pos: -53.5,91.5 - parent: 1 - type: Transform -- uid: 7265 - type: WallReinforced - components: - - pos: -53.5,90.5 - parent: 1 - type: Transform -- uid: 7266 - type: WallReinforced - components: - - pos: -56.5,87.5 - parent: 1 - type: Transform -- uid: 7267 - type: WallReinforced - components: - - pos: -56.5,85.5 - parent: 1 - type: Transform -- uid: 7268 - type: WallReinforced - components: - - pos: -55.5,85.5 - parent: 1 - type: Transform -- uid: 7269 - type: WallReinforced - components: - - pos: -53.5,84.5 - parent: 1 - type: Transform -- uid: 7270 - type: WallReinforced - components: - - pos: -53.5,82.5 - parent: 1 - type: Transform -- uid: 7271 - type: Grille - components: - - pos: -51.5,91.5 - parent: 1 - type: Transform -- uid: 7272 - type: WallReinforced - components: - - pos: -53.5,88.5 - parent: 1 - type: Transform -- uid: 7273 - type: WallReinforced - components: - - pos: -54.5,87.5 - parent: 1 - type: Transform -- uid: 7274 - type: WallReinforced - components: - - pos: -53.5,87.5 - parent: 1 - type: Transform -- uid: 7275 - type: WallSolidRust - components: - - pos: -53.5,86.5 - parent: 1 - type: Transform -- uid: 7276 - type: Airlock - components: - - pos: -56.5,86.5 - parent: 1 - type: Transform -- uid: 7277 - type: WallReinforced - components: - - pos: -54.5,85.5 - parent: 1 - type: Transform -- uid: 7278 - type: WallReinforced - components: - - pos: -55.5,87.5 - parent: 1 - type: Transform -- uid: 7279 - type: WallReinforced - components: - - pos: -53.5,85.5 - parent: 1 - type: Transform -- uid: 7280 - type: WallReinforced - components: - - pos: -56.5,82.5 - parent: 1 - type: Transform -- uid: 7281 - type: WallReinforced - components: - - pos: -56.5,84.5 - parent: 1 - type: Transform -- uid: 7282 - type: ConveyorBelt - components: - - pos: -39.5,-7.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13842 - - port: Right - uid: 13843 - Forward: - - port: Left - uid: 13842 - - port: Left - uid: 13843 - Off: - - port: Middle - uid: 13842 - - port: Middle - uid: 13843 - type: SignalReceiver -- uid: 7283 - type: WallReinforced - components: - - pos: -56.5,88.5 - parent: 1 - type: Transform -- uid: 7284 - type: CableApcExtension - components: - - pos: -43.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7285 - type: CableHV - components: - - pos: -43.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7286 - type: WallReinforced - components: - - pos: -56.5,90.5 - parent: 1 - type: Transform -- uid: 7287 - type: WallReinforced - components: - - pos: -56.5,91.5 - parent: 1 - type: Transform -- uid: 7288 - type: WallSolidRust - components: - - pos: -55.5,91.5 - parent: 1 - type: Transform -- uid: 7289 - type: WallReinforced - components: - - pos: -54.5,91.5 - parent: 1 - type: Transform -- uid: 7290 - type: WallReinforced - components: - - pos: -62.5,90.5 - parent: 1 - type: Transform -- uid: 7291 - type: WallReinforced - components: - - pos: -62.5,89.5 - parent: 1 - type: Transform -- uid: 7292 - type: Paper - components: - - pos: -60.664387,89.61223 - parent: 1 - type: Transform -- uid: 7293 - type: WallReinforced - components: - - pos: -62.5,86.5 - parent: 1 - type: Transform -- uid: 7294 - type: WallReinforced - components: - - pos: -63.5,86.5 - parent: 1 - type: Transform -- uid: 7295 - type: ReinforcedWindow - components: - - pos: -62.5,88.5 - parent: 1 - type: Transform -- uid: 7296 - type: Table - components: - - pos: -59.5,89.5 - parent: 1 - type: Transform -- uid: 7297 - type: Paper - components: - - pos: -60.27376,89.67473 - parent: 1 - type: Transform -- uid: 7298 - type: Table - components: - - pos: -61.5,88.5 - parent: 1 - type: Transform -- uid: 7299 - type: WallReinforced - components: - - pos: -62.5,82.5 - parent: 1 - type: Transform -- uid: 7300 - type: WallReinforced - components: - - pos: -62.5,87.5 - parent: 1 - type: Transform -- uid: 7301 - type: Grille - components: - - pos: -58.5,82.5 - parent: 1 - type: Transform -- uid: 7302 - type: Table - components: - - pos: -61.5,89.5 - parent: 1 - type: Transform -- uid: 7303 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -60.5,88.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7304 - type: BananaPhoneInstrument - components: - - pos: -59.52376,89.56535 - parent: 1 - type: Transform -- uid: 7305 - type: ReinforcedWindow - components: - - pos: -60.5,90.5 - parent: 1 - type: Transform -- uid: 7306 - type: hydroponicsSoil - components: - - pos: -62.5,83.5 - parent: 1 - type: Transform -- uid: 7307 - type: Grille - components: - - pos: -59.5,90.5 - parent: 1 - type: Transform -- uid: 7308 - type: Grille - components: - - pos: -60.5,90.5 - parent: 1 - type: Transform -- uid: 7309 - type: Paper - components: - - pos: -60.601887,89.58098 - parent: 1 - type: Transform -- uid: 7310 - type: ReinforcedWindow - components: - - pos: -58.5,90.5 - parent: 1 - type: Transform -- uid: 7311 - type: hydroponicsSoil - components: - - pos: -62.5,85.5 - parent: 1 - type: Transform -- uid: 7312 - type: Grille - components: - - pos: -61.5,82.5 - parent: 1 - type: Transform -- uid: 7313 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -59.5,88.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7314 - type: WallReinforced - components: - - pos: -51.5,78.5 - parent: 1 - type: Transform -- uid: 7315 - type: ReinforcedWindow - components: - - pos: -60.5,82.5 - parent: 1 - type: Transform -- uid: 7316 - type: ReinforcedWindow - components: - - pos: -63.5,85.5 - parent: 1 - type: Transform -- uid: 7317 - type: WallReinforced - components: - - pos: -63.5,82.5 - parent: 1 - type: Transform -- uid: 7318 - type: Grille - components: - - pos: -63.5,83.5 - parent: 1 - type: Transform -- uid: 7319 - type: Grille - components: - - pos: -62.5,88.5 - parent: 1 - type: Transform -- uid: 7320 - type: KitchenMicrowave - components: - - pos: -61.5,89.5 - parent: 1 - type: Transform -- uid: 7321 - type: ReinforcedWindow - components: - - pos: -59.5,90.5 - parent: 1 - type: Transform -- uid: 7322 - type: ToiletEmpty - components: - - rot: -1.5707963267948966 rad - pos: -54.5,86.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7323 - type: RandomPosterLegit - components: - - pos: -53.5,86.5 - parent: 1 - type: Transform -- uid: 7324 - type: RandomInstruments - components: - - pos: -54.5,82.5 - parent: 1 - type: Transform -- uid: 7325 - type: RandomInstruments - components: - - pos: -54.5,88.5 - parent: 1 - type: Transform -- uid: 7326 - type: hydroponicsSoil - components: - - pos: -62.5,84.5 - parent: 1 - type: Transform -- uid: 7327 - type: WallReinforced - components: - - pos: -57.5,82.5 - parent: 1 - type: Transform -- uid: 7328 - type: WallReinforced - components: - - pos: -57.5,90.5 - parent: 1 - type: Transform -- uid: 7329 - type: SignSpace - components: - - pos: -53.5,69.5 - parent: 1 - type: Transform -- uid: 7330 - type: SignSpace - components: - - pos: -49.5,69.5 - parent: 1 - type: Transform -- uid: 7331 - type: SignPrison - components: - - pos: -51.5,77.5 - parent: 1 - type: Transform -- uid: 7332 - type: WallReinforced - components: - - pos: -55.5,78.5 - parent: 1 - type: Transform -- uid: 7333 - type: SignSpace - components: - - pos: -49.5,78.5 - parent: 1 - type: Transform -- uid: 7334 - type: AirlockExternalGlass - components: - - pos: -52.5,81.5 - parent: 1 - type: Transform -- uid: 7335 - type: AirlockExternalGlass - components: - - pos: -50.5,81.5 - parent: 1 - type: Transform -- uid: 7336 - type: AirlockSecurityGlassLocked - components: - - pos: -53.5,83.5 - parent: 1 - type: Transform -- uid: 7337 - type: AirlockSecurityGlassLocked - components: - - pos: -53.5,89.5 - parent: 1 - type: Transform -- uid: 7338 - type: WallReinforced - components: - - pos: -54.5,78.5 - parent: 1 - type: Transform -- uid: 7339 - type: WallReinforced - components: - - pos: -53.5,78.5 - parent: 1 - type: Transform -- uid: 7340 - type: YellowOxygenTankFilled - components: - - pos: -47.026283,68.570114 - parent: 1 - type: Transform -- uid: 7341 - type: JetpackBlackFilled - components: - - pos: -48.543232,85.534454 - parent: 1 - type: Transform -- uid: 7342 - type: NitrogenTankFilled - components: - - pos: -55.664528,80.55157 - parent: 1 - type: Transform - - nextAttack: 102.7175361 - type: MeleeWeapon -- uid: 7343 - type: NitrogenTankFilled - components: - - pos: -55.24113,80.52019 - parent: 1 - type: Transform - - nextAttack: 2178.8092317 - type: MeleeWeapon -- uid: 7344 - type: NitrogenTankFilled - components: - - pos: -46.518856,68.172775 - parent: 1 - type: Transform - - nextAttack: 1452.95927 - type: MeleeWeapon -- uid: 7345 - type: NitrogenTankFilled - components: - - pos: -46.420933,67.56946 - parent: 1 - type: Transform - - nextAttack: 1456.459256 - type: MeleeWeapon -- uid: 7346 - type: Catwalk - components: - - pos: -52.5,69.5 - parent: 1 - type: Transform -- uid: 7347 - type: Bed - components: - - pos: -54.5,84.5 - parent: 1 - type: Transform -- uid: 7348 - type: Catwalk - components: - - pos: -52.5,67.5 - parent: 1 - type: Transform -- uid: 7349 - type: Catwalk - components: - - pos: -50.5,68.5 - parent: 1 - type: Transform -- uid: 7350 - type: WardrobePrisonFilled - components: - - pos: -55.5,90.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7351 - type: Catwalk - components: - - pos: -50.5,69.5 - parent: 1 - type: Transform -- uid: 7352 - type: BedsheetSyndie - components: - - rot: -1.5707963267948966 rad - pos: -54.5,90.5 - parent: 1 - type: Transform -- uid: 7353 - type: Catwalk - components: - - pos: -51.5,68.5 - parent: 1 - type: Transform -- uid: 7354 - type: Catwalk - components: - - pos: -50.5,67.5 - parent: 1 - type: Transform -- uid: 7355 - type: Catwalk - components: - - pos: -49.5,68.5 - parent: 1 - type: Transform -- uid: 7356 - type: BedsheetSyndie - components: - - rot: -1.5707963267948966 rad - pos: -54.5,84.5 - parent: 1 - type: Transform -- uid: 7357 - type: TableReinforced - components: - - pos: -46.5,67.5 - parent: 1 - type: Transform -- uid: 7358 - type: Catwalk - components: - - pos: -48.5,67.5 - parent: 1 - type: Transform -- uid: 7359 - type: WardrobePrisonFilled - components: - - pos: -55.5,84.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7360 - type: Catwalk - components: - - pos: -47.5,67.5 - parent: 1 - type: Transform -- uid: 7361 - type: Catwalk - components: - - pos: -46.5,68.5 - parent: 1 - type: Transform -- uid: 7362 - type: WallReinforced - components: - - pos: -45.5,67.5 - parent: 1 - type: Transform -- uid: 7363 - type: Catwalk - components: - - pos: -50.5,70.5 - parent: 1 - type: Transform -- uid: 7364 - type: AirlockGlass - components: - - pos: -38.5,34.5 - parent: 1 - type: Transform -- uid: 7365 - type: AirlockGlass - components: - - pos: -36.5,34.5 - parent: 1 - type: Transform -- uid: 7366 - type: Catwalk - components: - - pos: -50.5,71.5 - parent: 1 - type: Transform -- uid: 7367 - type: Catwalk - components: - - pos: -52.5,76.5 - parent: 1 - type: Transform -- uid: 7368 - type: BarSign - components: - - pos: -33.5,34.5 - parent: 1 - type: Transform -- uid: 7369 - type: AirlockBarLocked - components: - - pos: -33.5,40.5 - parent: 1 - type: Transform -- uid: 7370 - type: AirlockBarLocked - components: - - pos: -29.5,37.5 - parent: 1 - type: Transform -- uid: 7371 - type: SignBar - components: - - pos: -33.5,39.5 - parent: 1 - type: Transform -- uid: 7372 - type: SignBar - components: - - pos: -37.5,34.5 - parent: 1 - type: Transform -- uid: 7373 - type: TableWood - components: - - pos: -5.5,44.5 - parent: 1 - type: Transform -- uid: 7374 - type: Crowbar - components: - - name: chosen weapon of the tider - type: MetaData - - pos: -8.78838,44.599762 - parent: 1 - type: Transform - - nextAttack: 7763.5335842 - type: MeleeWeapon -- uid: 7375 - type: Crowbar - components: - - name: chosen weapon of the tider - type: MetaData - - pos: -9.554005,44.631012 - parent: 1 - type: Transform - - nextAttack: 7766.4335726 - type: MeleeWeapon -- uid: 7376 - type: Crowbar - components: - - name: chosen weapon of the tider - type: MetaData - - pos: -8.38213,44.537262 - parent: 1 - type: Transform - - nextAttack: 7761.7002582 - type: MeleeWeapon -- uid: 7377 - type: Crowbar - components: - - name: chosen weapon of the tider - type: MetaData - - pos: -9.16338,44.615387 - parent: 1 - type: Transform - - nextAttack: 7765.6002426 - type: MeleeWeapon -- uid: 7378 - type: ClothingMaskGas - components: - - desc: A face-covering mask that resembles the icon of greytide worldwide. - name: face of the tider - type: MetaData - - pos: -5.3370404,44.58554 - parent: 1 - type: Transform -- uid: 7379 - type: ClothingMaskGas - components: - - desc: A face-covering mask that resembles the icon of greytide worldwide. - name: face of the tider - type: MetaData - - pos: -6.630641,44.601288 - parent: 1 - type: Transform -- uid: 7380 - type: ClothingMaskGas - components: - - desc: A face-covering mask that resembles the icon of greytide worldwide. - name: face of the tider - type: MetaData - - pos: -6.224393,44.64804 - parent: 1 - type: Transform -- uid: 7381 - type: ClothingMaskGas - components: - - desc: A face-covering mask that resembles the icon of greytide worldwide. - name: face of the tider - type: MetaData - - pos: -5.8370404,44.632416 - parent: 1 - type: Transform -- uid: 7382 - type: ClothingShoesBootsMag - components: - - pos: -12.423142,46.687256 - parent: 1 - type: Transform -- uid: 7383 - type: ClothingShoesBootsMag - components: - - pos: -12.595017,46.437256 - parent: 1 - type: Transform -- uid: 7384 - type: ClothingShoesBootsMag - components: - - pos: -13.391892,46.687256 - parent: 1 - type: Transform -- uid: 7385 - type: ClothingShoesBootsMag - components: - - pos: -13.579392,46.45288 - parent: 1 - type: Transform -- uid: 7386 - type: ClothingHeadHelmetEVA - components: - - pos: -13.73458,49.718506 - parent: 1 - type: Transform -- uid: 7387 - type: ClothingHeadHelmetEVA - components: - - pos: -12.73458,49.718506 - parent: 1 - type: Transform -- uid: 7388 - type: ClothingHeadHelmetEVA - components: - - pos: -11.718955,49.749756 - parent: 1 - type: Transform -- uid: 7389 - type: ClothingHeadHelmetEVA - components: - - pos: -10.718955,49.73413 - parent: 1 - type: Transform -- uid: 7390 - type: ClothingOuterHardsuitEVA - components: - - pos: -13.500205,49.624756 - parent: 1 - type: Transform -- uid: 7391 - type: ClothingOuterHardsuitEVA - components: - - pos: -12.45333,49.67163 - parent: 1 - type: Transform -- uid: 7392 - type: ClothingOuterHardsuitEVA - components: - - pos: -11.437705,49.656006 - parent: 1 - type: Transform -- uid: 7393 - type: ClothingOuterHardsuitEVA - components: - - pos: -10.437705,49.656006 - parent: 1 - type: Transform -- uid: 7394 - type: SignEVA - components: - - pos: -14.5,49.5 - parent: 1 - type: Transform -- uid: 7395 - type: MedicalBed - components: - - pos: 9.5,45.5 - parent: 1 - type: Transform -- uid: 7396 - type: BedsheetMedical - components: - - pos: 9.5,45.5 - parent: 1 - type: Transform -- uid: 7397 - type: filingCabinetDrawer - components: - - pos: 11.5,52.5 - parent: 1 - type: Transform -- uid: 7398 - type: CrateScience - components: - - pos: 11.5,50.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7399 - type: LampGold - components: - - pos: 9.4932995,46.83763 - parent: 1 - type: Transform -- uid: 7400 - type: CrateMedical - components: - - pos: 12.5,46.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7401 - type: CableApcExtension - components: - - pos: 14.5,45.5 - parent: 1 - type: Transform -- uid: 7402 - type: Catwalk - components: - - pos: 15.5,48.5 - parent: 1 - type: Transform -- uid: 7403 - type: Catwalk - components: - - pos: 15.5,47.5 - parent: 1 - type: Transform -- uid: 7404 - type: Catwalk - components: - - pos: -50.5,73.5 - parent: 1 - type: Transform -- uid: 7405 - type: Catwalk - components: - - pos: 15.5,45.5 - parent: 1 - type: Transform -- uid: 7406 - type: Catwalk - components: - - pos: 15.5,44.5 - parent: 1 - type: Transform -- uid: 7407 - type: Catwalk - components: - - pos: 15.5,43.5 - parent: 1 - type: Transform -- uid: 7409 - type: Catwalk - components: - - pos: 15.5,41.5 - parent: 1 - type: Transform -- uid: 7410 - type: YellowOxygenTankFilled - components: - - pos: -47.51066,68.58574 - parent: 1 - type: Transform -- uid: 7411 - type: Catwalk - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform -- uid: 7412 - type: Catwalk - components: - - pos: -50.5,75.5 - parent: 1 - type: Transform -- uid: 7413 - type: Catwalk - components: - - pos: 15.5,37.5 - parent: 1 - type: Transform -- uid: 7414 - type: Catwalk - components: - - pos: 15.5,36.5 - parent: 1 - type: Transform -- uid: 7415 - type: Catwalk - components: - - pos: 15.5,35.5 - parent: 1 - type: Transform -- uid: 7416 - type: Catwalk - components: - - pos: -50.5,76.5 - parent: 1 - type: Transform -- uid: 7417 - type: Catwalk - components: - - pos: 17.5,35.5 - parent: 1 - type: Transform -- uid: 7418 - type: Catwalk - components: - - pos: 18.5,35.5 - parent: 1 - type: Transform -- uid: 7419 - type: Catwalk - components: - - pos: -50.5,77.5 - parent: 1 - type: Transform -- uid: 7420 - type: Catwalk - components: - - pos: 20.5,35.5 - parent: 1 - type: Transform -- uid: 7421 - type: Catwalk - components: - - pos: -52.5,70.5 - parent: 1 - type: Transform -- uid: 7422 - type: Catwalk - components: - - pos: -52.5,71.5 - parent: 1 - type: Transform -- uid: 7423 - type: Catwalk - components: - - pos: 23.5,35.5 - parent: 1 - type: Transform -- uid: 7424 - type: Catwalk - components: - - pos: 23.5,34.5 - parent: 1 - type: Transform -- uid: 7425 - type: LockerEvidence - components: - - pos: -50.5,84.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7426 - type: Catwalk - components: - - pos: 23.5,32.5 - parent: 1 - type: Transform -- uid: 7427 - type: Catwalk - components: - - pos: 23.5,31.5 - parent: 1 - type: Transform -- uid: 7428 - type: Catwalk - components: - - pos: -52.5,73.5 - parent: 1 - type: Transform -- uid: 7429 - type: Catwalk - components: - - pos: -52.5,74.5 - parent: 1 - type: Transform -- uid: 7430 - type: Catwalk - components: - - pos: 23.5,28.5 - parent: 1 - type: Transform -- uid: 7431 - type: YellowOxygenTankFilled - components: - - pos: -55.693924,79.79821 - parent: 1 - type: Transform -- uid: 7432 - type: Catwalk - components: - - pos: 23.5,26.5 - parent: 1 - type: Transform -- uid: 7433 - type: LockerEvidence - components: - - pos: -50.5,83.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7434 - type: Catwalk - components: - - pos: 23.5,24.5 - parent: 1 - type: Transform -- uid: 7435 - type: Catwalk - components: - - pos: 23.5,23.5 - parent: 1 - type: Transform -- uid: 7436 - type: Catwalk - components: - - pos: -52.5,77.5 - parent: 1 - type: Transform -- uid: 7437 - type: Catwalk - components: - - pos: 14.5,40.5 - parent: 1 - type: Transform -- uid: 7438 - type: Table - components: - - pos: -50.5,88.5 - parent: 1 - type: Transform -- uid: 7439 - type: Catwalk - components: - - pos: 12.5,40.5 - parent: 1 - type: Transform -- uid: 7440 - type: SignSecureMedRed - components: - - pos: 9.5,41.5 - parent: 1 - type: Transform -- uid: 7441 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7442 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7443 - type: Table - components: - - pos: -50.5,89.5 - parent: 1 - type: Transform -- uid: 7444 - type: Handcuffs - components: - - pos: -50.492554,89.72937 - parent: 1 - type: Transform -- uid: 7445 - type: Catwalk - components: - - pos: 7.5,41.5 - parent: 1 - type: Transform -- uid: 7446 - type: Catwalk - components: - - pos: 7.5,42.5 - parent: 1 - type: Transform -- uid: 7447 - type: Handcuffs - components: - - pos: -50.398804,89.463745 - parent: 1 - type: Transform -- uid: 7448 - type: Handcuffs - components: - - pos: -50.44568,89.16687 - parent: 1 - type: Transform -- uid: 7449 - type: Catwalk - components: - - pos: 7.5,45.5 - parent: 1 - type: Transform -- uid: 7450 - type: Catwalk - components: - - pos: 7.5,46.5 - parent: 1 - type: Transform -- uid: 7451 - type: Flash - components: - - pos: -50.66443,88.63562 - parent: 1 - type: Transform -- uid: 7452 - type: Catwalk - components: - - pos: -53.5,79.5 - parent: 1 - type: Transform -- uid: 7453 - type: Catwalk - components: - - pos: 13.5,48.5 - parent: 1 - type: Transform -- uid: 7454 - type: Catwalk - components: - - pos: 12.5,48.5 - parent: 1 - type: Transform -- uid: 7455 - type: Catwalk - components: - - pos: 11.5,48.5 - parent: 1 - type: Transform -- uid: 7456 - type: Catwalk - components: - - pos: -52.5,78.5 - parent: 1 - type: Transform -- uid: 7457 - type: Catwalk - components: - - pos: 9.5,48.5 - parent: 1 - type: Transform -- uid: 7458 - type: Flash - components: - - pos: -50.367554,88.619995 - parent: 1 - type: Transform -- uid: 7459 - type: Catwalk - components: - - pos: 7.5,48.5 - parent: 1 - type: Transform -- uid: 7460 - type: Catwalk - components: - - pos: 6.5,47.5 - parent: 1 - type: Transform -- uid: 7461 - type: PottedPlantRandom - components: - - pos: -52.5,90.5 - parent: 1 - type: Transform -- uid: 7462 - type: Catwalk - components: - - pos: 4.5,47.5 - parent: 1 - type: Transform -- uid: 7463 - type: Catwalk - components: - - pos: 3.5,47.5 - parent: 1 - type: Transform -- uid: 7464 - type: Catwalk - components: - - pos: 2.5,47.5 - parent: 1 - type: Transform -- uid: 7465 - type: PottedPlantRandom - components: - - pos: -50.5,90.5 - parent: 1 - type: Transform -- uid: 7466 - type: Catwalk - components: - - pos: 0.5,47.5 - parent: 1 - type: Transform -- uid: 7467 - type: Catwalk - components: - - pos: -51.5,79.5 - parent: 1 - type: Transform -- uid: 7468 - type: ShuttersNormal - components: - - pos: -53.5,80.5 - parent: 1 - type: Transform -- uid: 7469 - type: Catwalk - components: - - pos: -2.5,47.5 - parent: 1 - type: Transform -- uid: 7470 - type: Catwalk - components: - - pos: -3.5,47.5 - parent: 1 - type: Transform -- uid: 7471 - type: Catwalk - components: - - pos: -50.5,79.5 - parent: 1 - type: Transform -- uid: 7472 - type: Catwalk - components: - - pos: -5.5,47.5 - parent: 1 - type: Transform -- uid: 7473 - type: Catwalk - components: - - pos: -50.5,80.5 - parent: 1 - type: Transform -- uid: 7474 - type: Catwalk - components: - - pos: -7.5,47.5 - parent: 1 - type: Transform -- uid: 7475 - type: Catwalk - components: - - pos: -7.5,48.5 - parent: 1 - type: Transform -- uid: 7476 - type: ShuttersNormal - components: - - pos: -53.5,79.5 - parent: 1 - type: Transform -- uid: 7477 - type: Catwalk - components: - - pos: -7.5,50.5 - parent: 1 - type: Transform -- uid: 7478 - type: Catwalk - components: - - pos: -52.5,80.5 - parent: 1 - type: Transform -- uid: 7479 - type: Catwalk - components: - - pos: -10.5,51.5 - parent: 1 - type: Transform -- uid: 7480 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -25.5,36.5 - parent: 1 - type: Transform -- uid: 7481 - type: Catwalk - components: - - pos: -12.5,51.5 - parent: 1 - type: Transform -- uid: 7482 - type: Catwalk - components: - - pos: -13.5,51.5 - parent: 1 - type: Transform -- uid: 7483 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -26.5,49.5 - parent: 1 - type: Transform -- uid: 7484 - type: Catwalk - components: - - pos: -9.5,51.5 - parent: 1 - type: Transform -- uid: 7485 - type: Catwalk - components: - - pos: -2.5,46.5 - parent: 1 - type: Transform -- uid: 7486 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -22.5,50.5 - parent: 1 - type: Transform -- uid: 7487 - type: Catwalk - components: - - pos: -2.5,44.5 - parent: 1 - type: Transform -- uid: 7488 - type: Catwalk - components: - - pos: -2.5,43.5 - parent: 1 - type: Transform -- uid: 7489 - type: Catwalk - components: - - pos: -2.5,42.5 - parent: 1 - type: Transform -- uid: 7490 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -25.5,46.5 - parent: 1 - type: Transform -- uid: 7491 - type: Catwalk - components: - - pos: -2.5,40.5 - parent: 1 - type: Transform -- uid: 7492 - type: CableApcExtension - components: - - pos: -3.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7493 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -42.5,54.5 - parent: 1 - type: Transform -- uid: 7494 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -3.5,39.5 - parent: 1 - type: Transform -- uid: 7495 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 14.5,47.5 - parent: 1 - type: Transform -- uid: 7496 - type: Catwalk - components: - - pos: -4.5,37.5 - parent: 1 - type: Transform -- uid: 7497 - type: Catwalk - components: - - pos: -5.5,37.5 - parent: 1 - type: Transform -- uid: 7498 - type: Catwalk - components: - - pos: -6.5,37.5 - parent: 1 - type: Transform -- uid: 7499 - type: Catwalk - components: - - pos: -7.5,37.5 - parent: 1 - type: Transform -- uid: 7500 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 14.5,46.5 - parent: 1 - type: Transform -- uid: 7501 - type: Catwalk - components: - - pos: -9.5,37.5 - parent: 1 - type: Transform -- uid: 7502 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -6.5,36.5 - parent: 1 - type: Transform -- uid: 7503 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 14.5,43.5 - parent: 1 - type: Transform -- uid: 7504 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 21.5,34.5 - parent: 1 - type: Transform -- uid: 7505 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 23.5,20.5 - parent: 1 - type: Transform -- uid: 7506 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 22.5,19.5 - parent: 1 - type: Transform -- uid: 7507 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 16.5,34.5 - parent: 1 - type: Transform -- uid: 7508 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 22.5,25.5 - parent: 1 - type: Transform -- uid: 7509 - type: Barricade - components: - - pos: -28.5,52.5 - parent: 1 - type: Transform -- uid: 7510 - type: Barricade - components: - - pos: -27.5,55.5 - parent: 1 - type: Transform -- uid: 7511 - type: Firelock - components: - - pos: -32.5,51.5 - parent: 1 - type: Transform -- uid: 7512 - type: LandMineExplosive - components: - - pos: -26.633177,54.728065 - parent: 1 - type: Transform -- uid: 7513 - type: LandMineExplosive - components: - - pos: -28.122608,54.18154 - parent: 1 - type: Transform -- uid: 7514 - type: TableFrame - components: - - pos: -25.5,55.5 - parent: 1 - type: Transform -- uid: 7515 - type: TableFrame - components: - - pos: -25.5,54.5 - parent: 1 - type: Transform -- uid: 7516 - type: ClosetToolFilled - components: - - pos: -25.5,53.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7517 - type: Katana - components: - - desc: THE ONLY THING I KNOW FOR REAL - name: murasama - type: MetaData - - pos: -25.461504,57.4935 - parent: 1 - type: Transform - - color: '#B70000FF' - type: Sprite - - nextAttack: 72.9873008 - type: MeleeWeapon -- uid: 7518 - type: MedkitCombatFilled - components: - - pos: -26.503302,55.403595 - parent: 1 - type: Transform -- uid: 7519 - type: Rack - components: - - pos: -29.5,55.5 - parent: 1 - type: Transform -- uid: 7520 - type: MaintenanceToolSpawner - components: - - pos: -29.5,55.5 - parent: 1 - type: Transform -- uid: 7521 - type: GrilleBroken - components: - - pos: -14.5,37.5 - parent: 1 - type: Transform -- uid: 7522 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -14.5,40.5 - parent: 1 - type: Transform -- uid: 7523 - type: FloraTree02 - components: - - pos: -12.854504,35.595062 - parent: 1 - type: Transform -- uid: 7524 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -14.5,42.5 - parent: 1 - type: Transform -- uid: 7525 - type: FloraTree01 - components: - - pos: -11.963879,39.845062 - parent: 1 - type: Transform -- uid: 7526 - type: FloraTree05 - components: - - pos: -13.010754,43.235687 - parent: 1 - type: Transform -- uid: 7527 - type: Bed - components: - - pos: -54.5,90.5 - parent: 1 - type: Transform -- uid: 7528 - type: TableWood - components: - - pos: -22.5,46.5 - parent: 1 - type: Transform -- uid: 7529 - type: TableWood - components: - - pos: -21.5,46.5 - parent: 1 - type: Transform -- uid: 7530 - type: CarpetBlue - components: - - pos: -22.5,47.5 - parent: 1 - type: Transform -- uid: 7531 - type: CarpetBlue - components: - - pos: -22.5,45.5 - parent: 1 - type: Transform -- uid: 7532 - type: CarpetBlue - components: - - pos: -21.5,45.5 - parent: 1 - type: Transform -- uid: 7533 - type: CarpetBlue - components: - - pos: -22.5,46.5 - parent: 1 - type: Transform -- uid: 7534 - type: CarpetBlue - components: - - pos: -21.5,47.5 - parent: 1 - type: Transform -- uid: 7535 - type: CarpetBlue - components: - - pos: -21.5,46.5 - parent: 1 - type: Transform -- uid: 7536 - type: LockerHeadOfPersonnelFilled - components: - - pos: -22.5,48.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7537 - type: ComfyChair - components: - - pos: -22.5,47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7538 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -22.5,45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7539 - type: ChairOfficeDark - components: - - pos: -21.5,47.5 - parent: 1 - type: Transform -- uid: 7540 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -21.5,45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7541 - type: filingCabinetTall - components: - - pos: -22.5,44.5 - parent: 1 - type: Transform -- uid: 7542 - type: TableWood - components: - - pos: -19.5,47.5 - parent: 1 - type: Transform -- uid: 7543 - type: TableWood - components: - - pos: -19.5,48.5 - parent: 1 - type: Transform -- uid: 7544 - type: TableWood - components: - - pos: -19.5,46.5 - parent: 1 - type: Transform -- uid: 7545 - type: FaxMachineBase - components: - - pos: -19.5,48.5 - parent: 1 - type: Transform - - name: HoP Office - type: FaxMachine -- uid: 7546 - type: PaperOffice - components: - - pos: -19.594261,47.957428 - parent: 1 - type: Transform -- uid: 7547 - type: PaperOffice - components: - - pos: -19.578636,47.926178 - parent: 1 - type: Transform -- uid: 7548 - type: PaperOffice - components: - - pos: -19.531761,47.894928 - parent: 1 - type: Transform -- uid: 7549 - type: PaperOffice - components: - - pos: -19.500511,47.848053 - parent: 1 - type: Transform -- uid: 7550 - type: PaperOffice - components: - - pos: -19.359886,48.051178 - parent: 1 - type: Transform -- uid: 7551 - type: PaperOffice - components: - - pos: -19.500511,47.785553 - parent: 1 - type: Transform -- uid: 7552 - type: PaperOffice - components: - - pos: -19.516136,47.676178 - parent: 1 - type: Transform -- uid: 7553 - type: PaperOffice - components: - - pos: -19.469261,47.582428 - parent: 1 - type: Transform -- uid: 7554 - type: BoxFolderBlue - components: - - pos: -19.563011,46.957428 - parent: 1 - type: Transform -- uid: 7555 - type: BoxFolderBlue - components: - - pos: -19.391136,46.754303 - parent: 1 - type: Transform -- uid: 7556 - type: Lamp - components: - - pos: -22.548872,46.863678 - parent: 1 - type: Transform -- uid: 7557 - type: PenHop - components: - - pos: -21.314497,46.738678 - parent: 1 - type: Transform -- uid: 7558 - type: PottedPlantRandom - components: - - pos: -19.5,44.5 - parent: 1 - type: Transform -- uid: 7559 - type: DisposalUnit - components: - - pos: -19.5,42.5 - parent: 1 - type: Transform -- uid: 7560 - type: UniformPrinter - components: - - pos: -21.5,42.5 - parent: 1 - type: Transform -- uid: 7561 - type: VendingMachineCart - components: - - flags: SessionSpecific - type: MetaData - - pos: -22.5,42.5 - parent: 1 - type: Transform -- uid: 7562 - type: ComputerId - components: - - rot: 1.5707963267948966 rad - pos: -20.5,37.5 - parent: 1 - type: Transform -- uid: 7563 - type: ChairOfficeDark - components: - - pos: -19.5,37.5 - parent: 1 - type: Transform -- uid: 7564 - type: Table - components: - - pos: -19.5,36.5 - parent: 1 - type: Transform -- uid: 7565 - type: SprayBottleSpaceCleaner - components: - - flags: InContainer - type: MetaData - - parent: 7074 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 7566 - type: WallSolidRust - components: - - pos: -64.5,37.5 - parent: 1 - type: Transform -- uid: 7567 - type: WallSolidRust - components: - - pos: -65.5,45.5 - parent: 1 - type: Transform -- uid: 7568 - type: WallSolidRust - components: - - pos: -59.5,43.5 - parent: 1 - type: Transform -- uid: 7569 - type: InflatableWall - components: - - pos: -35.5,11.5 - parent: 1 - type: Transform -- uid: 7570 - type: Firelock - components: - - pos: 11.5,8.5 - parent: 1 - type: Transform -- uid: 7571 - type: Table - components: - - pos: -19.5,39.5 - parent: 1 - type: Transform -- uid: 7572 - type: Table - components: - - pos: -19.5,40.5 - parent: 1 - type: Transform -- uid: 7573 - type: Rack - components: - - pos: -19.5,41.5 - parent: 1 - type: Transform -- uid: 7574 - type: DogBed - components: - - pos: -22.5,37.5 - parent: 1 - type: Transform -- uid: 7575 - type: SpawnMobCorgi - components: - - pos: -22.5,38.5 - parent: 1 - type: Transform -- uid: 7576 - type: ToyIan - components: - - pos: -22.170961,37.297226 - parent: 1 - type: Transform -- uid: 7577 - type: MaterialCloth - components: - - pos: -19.514711,41.515976 - parent: 1 - type: Transform -- uid: 7578 - type: PaperOffice - components: - - pos: -19.295961,40.5316 - parent: 1 - type: Transform -- uid: 7579 - type: PaperOffice - components: - - pos: -19.639711,40.484726 - parent: 1 - type: Transform -- uid: 7580 - type: PaperOffice - components: - - pos: -19.545961,40.4691 - parent: 1 - type: Transform -- uid: 7581 - type: PaperOffice - components: - - pos: -19.436586,40.37535 - parent: 1 - type: Transform -- uid: 7582 - type: PaperOffice - components: - - pos: -19.420961,40.31285 - parent: 1 - type: Transform -- uid: 7583 - type: RubberStampApproved - components: - - pos: -19.639711,39.734726 - parent: 1 - type: Transform -- uid: 7584 - type: RubberStampDenied - components: - - pos: -19.389711,39.609726 - parent: 1 - type: Transform -- uid: 7585 - type: AirlockMaintLocked - components: - - pos: -24.5,35.5 - parent: 1 - type: Transform -- uid: 7586 - type: AirlockMaint - components: - - pos: -26.5,41.5 - parent: 1 - type: Transform -- uid: 7587 - type: CableHV - components: - - pos: -19.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7588 - type: CableHV - components: - - pos: -20.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7589 - type: CableHV - components: - - pos: -21.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7590 - type: CableHV - components: - - pos: -22.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7591 - type: CableHV - components: - - pos: -23.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7592 - type: CableHV - components: - - pos: -24.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7593 - type: CableHV - components: - - pos: -25.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7594 - type: CableHV - components: - - pos: -17.5,51.5 - parent: 1 - type: Transform -- uid: 7595 - type: CableHV - components: - - pos: -24.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7596 - type: CableHV - components: - - pos: -24.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7597 - type: CableHV - components: - - pos: -24.5,48.5 - parent: 1 - type: Transform -- uid: 7598 - type: CableHV - components: - - pos: -24.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7599 - type: CableHV - components: - - pos: -24.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7600 - type: CableHV - components: - - pos: -24.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7601 - type: CableHV - components: - - pos: -24.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7602 - type: CableHV - components: - - pos: -24.5,43.5 - parent: 1 - type: Transform -- uid: 7603 - type: CableHV - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7604 - type: CableHV - components: - - pos: -24.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7605 - type: CableHV - components: - - pos: -24.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7606 - type: CableHV - components: - - pos: -24.5,39.5 - parent: 1 - type: Transform -- uid: 7607 - type: CableHV - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7608 - type: CableHV - components: - - pos: -24.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7609 - type: CableHV - components: - - pos: -24.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7610 - type: CableHV - components: - - pos: -24.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7611 - type: CableHV - components: - - pos: -24.5,34.5 - parent: 1 - type: Transform -- uid: 7612 - type: CableHV - components: - - pos: -24.5,33.5 - parent: 1 - type: Transform -- uid: 7613 - type: CableHV - components: - - pos: -26.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7614 - type: CableHV - components: - - pos: -27.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7615 - type: CableHV - components: - - pos: -28.5,50.5 - parent: 1 - type: Transform -- uid: 7616 - type: CableHV - components: - - pos: -29.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7617 - type: CableHV - components: - - pos: -30.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7618 - type: CableHV - components: - - pos: -31.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7619 - type: CableHV - components: - - pos: -32.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7620 - type: CableHV - components: - - pos: -32.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7621 - type: CableHV - components: - - pos: -32.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7622 - type: CableHV - components: - - pos: -32.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7623 - type: CableHV - components: - - pos: -32.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7624 - type: CableHV - components: - - pos: -32.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7625 - type: CableHV - components: - - pos: -33.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7626 - type: CableHV - components: - - pos: -34.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7627 - type: CableHV - components: - - pos: -34.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7628 - type: CableHV - components: - - pos: -34.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7629 - type: CableHV - components: - - pos: -35.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7630 - type: CableHV - components: - - pos: -35.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7631 - type: CableHV - components: - - pos: -36.5,55.5 - parent: 1 - type: Transform -- uid: 7632 - type: CableHV - components: - - pos: -37.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7633 - type: CableHV - components: - - pos: -38.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7634 - type: CableHV - components: - - pos: -39.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7635 - type: CableHV - components: - - pos: -40.5,55.5 - parent: 1 - type: Transform -- uid: 7636 - type: CableHV - components: - - pos: -41.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7637 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 22.5,32.5 - parent: 1 - type: Transform -- uid: 7638 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 14.5,36.5 - parent: 1 - type: Transform -- uid: 7639 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 9.5,39.5 - parent: 1 - type: Transform -- uid: 7640 - type: Table - components: - - pos: -54.5,82.5 - parent: 1 - type: Transform -- uid: 7641 - type: Table - components: - - pos: -54.5,88.5 - parent: 1 - type: Transform -- uid: 7642 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -55.5,82.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7643 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -55.5,88.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7644 - type: AirlockSecurityGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: -56.5,83.5 - parent: 1 - type: Transform -- uid: 7645 - type: AirlockSecurityGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: -56.5,89.5 - parent: 1 - type: Transform -- uid: 7646 - type: WallReinforced - components: - - pos: -44.5,63.5 - parent: 1 - type: Transform -- uid: 7647 - type: WallReinforced - components: - - pos: -44.5,62.5 - parent: 1 - type: Transform -- uid: 7648 - type: WallReinforced - components: - - pos: -44.5,61.5 - parent: 1 - type: Transform -- uid: 7649 - type: Pen - components: - - rot: -1.5707963267948966 rad - pos: -59.14876,89.51848 - parent: 1 - type: Transform -- uid: 7650 - type: CableHV - components: - - pos: -47.5,47.5 - parent: 1 - type: Transform -- uid: 7651 - type: CableHV - components: - - pos: -47.5,46.5 - parent: 1 - type: Transform -- uid: 7652 - type: CableHV - components: - - pos: -47.5,45.5 - parent: 1 - type: Transform -- uid: 7653 - type: CableHV - components: - - pos: -47.5,44.5 - parent: 1 - type: Transform -- uid: 7654 - type: CableHV - components: - - pos: -47.5,43.5 - parent: 1 - type: Transform -- uid: 7655 - type: CableHV - components: - - pos: -47.5,42.5 - parent: 1 - type: Transform -- uid: 7656 - type: CableHV - components: - - pos: -47.5,41.5 - parent: 1 - type: Transform -- uid: 7657 - type: CableHV - components: - - pos: -47.5,40.5 - parent: 1 - type: Transform -- uid: 7658 - type: CableHV - components: - - pos: -47.5,39.5 - parent: 1 - type: Transform -- uid: 7659 - type: CableHV - components: - - pos: -47.5,38.5 - parent: 1 - type: Transform -- uid: 7660 - type: CableHV - components: - - pos: -47.5,37.5 - parent: 1 - type: Transform -- uid: 7661 - type: CableHV - components: - - pos: -47.5,36.5 - parent: 1 - type: Transform -- uid: 7662 - type: CableHV - components: - - pos: -47.5,35.5 - parent: 1 - type: Transform -- uid: 7663 - type: CableHV - components: - - pos: -47.5,34.5 - parent: 1 - type: Transform -- uid: 7664 - type: CableHV - components: - - pos: -47.5,33.5 - parent: 1 - type: Transform -- uid: 7665 - type: CableHV - components: - - pos: -47.5,32.5 - parent: 1 - type: Transform -- uid: 7666 - type: CableHV - components: - - pos: -46.5,32.5 - parent: 1 - type: Transform -- uid: 7667 - type: CableHV - components: - - pos: -45.5,32.5 - parent: 1 - type: Transform -- uid: 7668 - type: CableHV - components: - - pos: -44.5,32.5 - parent: 1 - type: Transform -- uid: 7669 - type: CableHV - components: - - pos: -43.5,32.5 - parent: 1 - type: Transform -- uid: 7670 - type: CableHV - components: - - pos: -42.5,32.5 - parent: 1 - type: Transform -- uid: 7671 - type: CableHV - components: - - pos: -41.5,32.5 - parent: 1 - type: Transform -- uid: 7672 - type: CableHV - components: - - pos: -40.5,32.5 - parent: 1 - type: Transform -- uid: 7673 - type: CableHV - components: - - pos: -39.5,32.5 - parent: 1 - type: Transform -- uid: 7674 - type: CableHV - components: - - pos: -38.5,32.5 - parent: 1 - type: Transform -- uid: 7675 - type: CableHV - components: - - pos: -48.5,32.5 - parent: 1 - type: Transform -- uid: 7676 - type: CableHV - components: - - pos: -49.5,32.5 - parent: 1 - type: Transform -- uid: 7677 - type: CableHV - components: - - pos: -50.5,32.5 - parent: 1 - type: Transform -- uid: 7678 - type: CableHV - components: - - pos: -51.5,32.5 - parent: 1 - type: Transform -- uid: 7679 - type: CableHV - components: - - pos: -52.5,32.5 - parent: 1 - type: Transform -- uid: 7680 - type: CableHV - components: - - pos: -53.5,32.5 - parent: 1 - type: Transform -- uid: 7681 - type: CableHV - components: - - pos: -54.5,32.5 - parent: 1 - type: Transform -- uid: 7682 - type: CableHV - components: - - pos: -55.5,32.5 - parent: 1 - type: Transform -- uid: 7683 - type: CableHV - components: - - pos: -56.5,32.5 - parent: 1 - type: Transform -- uid: 7684 - type: CableHV - components: - - pos: -57.5,32.5 - parent: 1 - type: Transform -- uid: 7685 - type: CableHV - components: - - pos: -57.5,33.5 - parent: 1 - type: Transform -- uid: 7686 - type: CableHV - components: - - pos: -57.5,34.5 - parent: 1 - type: Transform -- uid: 7687 - type: CableHV - components: - - pos: -57.5,35.5 - parent: 1 - type: Transform -- uid: 7688 - type: CableHV - components: - - pos: -57.5,36.5 - parent: 1 - type: Transform -- uid: 7689 - type: CableHV - components: - - pos: -57.5,37.5 - parent: 1 - type: Transform -- uid: 7690 - type: CableHV - components: - - pos: -57.5,38.5 - parent: 1 - type: Transform -- uid: 7691 - type: CableHV - components: - - pos: -57.5,39.5 - parent: 1 - type: Transform -- uid: 7692 - type: CableHV - components: - - pos: -57.5,40.5 - parent: 1 - type: Transform -- uid: 7693 - type: CableHV - components: - - pos: -57.5,41.5 - parent: 1 - type: Transform -- uid: 7694 - type: CableHV - components: - - pos: -57.5,42.5 - parent: 1 - type: Transform -- uid: 7695 - type: CableHV - components: - - pos: -57.5,43.5 - parent: 1 - type: Transform -- uid: 7696 - type: CableHV - components: - - pos: -57.5,44.5 - parent: 1 - type: Transform -- uid: 7697 - type: CableHV - components: - - pos: -57.5,45.5 - parent: 1 - type: Transform -- uid: 7698 - type: CableHV - components: - - pos: -57.5,46.5 - parent: 1 - type: Transform -- uid: 7699 - type: CableHV - components: - - pos: -57.5,47.5 - parent: 1 - type: Transform -- uid: 7700 - type: CableHV - components: - - pos: -56.5,47.5 - parent: 1 - type: Transform -- uid: 7701 - type: CableHV - components: - - pos: -55.5,47.5 - parent: 1 - type: Transform -- uid: 7702 - type: CableHV - components: - - pos: -54.5,47.5 - parent: 1 - type: Transform -- uid: 7703 - type: CableHV - components: - - pos: -53.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7704 - type: CableHV - components: - - pos: -52.5,47.5 - parent: 1 - type: Transform -- uid: 7705 - type: CableHV - components: - - pos: -51.5,47.5 - parent: 1 - type: Transform -- uid: 7706 - type: CableHV - components: - - pos: -50.5,47.5 - parent: 1 - type: Transform -- uid: 7707 - type: CableHV - components: - - pos: -49.5,47.5 - parent: 1 - type: Transform -- uid: 7708 - type: CableHV - components: - - pos: -48.5,47.5 - parent: 1 - type: Transform -- uid: 7709 - type: Pen - components: - - rot: -1.5707963267948966 rad - pos: -59.789387,89.70598 - parent: 1 - type: Transform -- uid: 7710 - type: Paper - components: - - pos: -60.74251,89.67473 - parent: 1 - type: Transform -- uid: 7711 - type: Table - components: - - pos: -58.5,89.5 - parent: 1 - type: Transform -- uid: 7712 - type: Grille - components: - - pos: -63.5,84.5 - parent: 1 - type: Transform -- uid: 7713 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -55.5,88.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7714 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,86.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7715 - type: Grille - components: - - pos: -58.5,90.5 - parent: 1 - type: Transform -- uid: 7716 - type: VendingMachineSeedsUnlocked - components: - - flags: SessionSpecific - type: MetaData - - pos: -59.5,83.5 - parent: 1 - type: Transform -- uid: 7717 - type: Rack - components: - - pos: -60.5,83.5 - parent: 1 - type: Transform -- uid: 7718 - type: WallReinforced - components: - - pos: -61.5,90.5 - parent: 1 - type: Transform -- uid: 7719 - type: ShuttersNormal - components: - - pos: -49.5,68.5 - parent: 1 - type: Transform -- uid: 7720 - type: CableHV - components: - - pos: -58.5,47.5 - parent: 1 - type: Transform -- uid: 7721 - type: Bookshelf - components: - - pos: -61.5,87.5 - parent: 1 - type: Transform -- uid: 7722 - type: KitchenReagentGrinder - components: - - pos: -58.5,89.5 - parent: 1 - type: Transform -- uid: 7723 - type: SeedExtractor - components: - - pos: -58.5,83.5 - parent: 1 - type: Transform -- uid: 7724 - type: HydroponicsToolMiniHoe - components: - - pos: -60.46126,83.48959 - parent: 1 - type: Transform -- uid: 7725 - type: HydroponicsToolSpade - components: - - pos: -61.46126,88.67473 - parent: 1 - type: Transform -- uid: 7726 - type: Paper - components: - - pos: -60.414387,89.61223 - parent: 1 - type: Transform -- uid: 7727 - type: ReinforcedWindow - components: - - pos: -58.5,82.5 - parent: 1 - type: Transform -- uid: 7728 - type: Grille - components: - - pos: -59.5,82.5 - parent: 1 - type: Transform -- uid: 7729 - type: Grille - components: - - pos: -60.5,82.5 - parent: 1 - type: Transform -- uid: 7730 - type: PoweredSmallLight - components: - - pos: -55.5,84.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7731 - type: PoweredSmallLight - components: - - pos: -61.5,89.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7732 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,84.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7733 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,89.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7734 - type: ReinforcedWindow - components: - - pos: -63.5,84.5 - parent: 1 - type: Transform -- uid: 7735 - type: ReinforcedWindow - components: - - pos: -63.5,83.5 - parent: 1 - type: Transform -- uid: 7736 - type: ReinforcedWindow - components: - - pos: -61.5,82.5 - parent: 1 - type: Transform -- uid: 7737 - type: ReinforcedWindow - components: - - pos: -59.5,82.5 - parent: 1 - type: Transform -- uid: 7738 - type: Table - components: - - pos: -60.5,89.5 - parent: 1 - type: Transform -- uid: 7739 - type: RandomSoap - components: - - pos: -54.5,86.5 - parent: 1 - type: Transform -- uid: 7740 - type: Grille - components: - - pos: -63.5,85.5 - parent: 1 - type: Transform -- uid: 7741 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -62.5,83.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7742 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,85.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7743 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -53.5,85.5 - parent: 1 - type: Transform -- uid: 7744 - type: CableApcExtension - components: - - pos: -53.5,85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7745 - type: CableApcExtension - components: - - pos: -52.5,85.5 - parent: 1 - type: Transform -- uid: 7746 - type: CableApcExtension - components: - - pos: -51.5,85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7747 - type: CableApcExtension - components: - - pos: -51.5,86.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7748 - type: CableApcExtension - components: - - pos: -51.5,87.5 - parent: 1 - type: Transform -- uid: 7749 - type: CableApcExtension - components: - - pos: -51.5,88.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7750 - type: CableApcExtension - components: - - pos: -51.5,89.5 - parent: 1 - type: Transform -- uid: 7751 - type: CableApcExtension - components: - - pos: -51.5,84.5 - parent: 1 - type: Transform -- uid: 7752 - type: CableApcExtension - components: - - pos: -51.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7753 - type: CableApcExtension - components: - - pos: -51.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7754 - type: CableApcExtension - components: - - pos: -52.5,82.5 - parent: 1 - type: Transform -- uid: 7755 - type: CableApcExtension - components: - - pos: -50.5,81.5 - parent: 1 - type: Transform -- uid: 7756 - type: CableApcExtension - components: - - pos: -50.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7757 - type: CableApcExtension - components: - - pos: -52.5,79.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7758 - type: CableApcExtension - components: - - pos: -52.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7759 - type: CableApcExtension - components: - - pos: -52.5,80.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7760 - type: CableApcExtension - components: - - pos: -52.5,81.5 - parent: 1 - type: Transform -- uid: 7761 - type: CableApcExtension - components: - - pos: -50.5,80.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7762 - type: CableApcExtension - components: - - pos: -50.5,79.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7763 - type: CableApcExtension - components: - - pos: -50.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7764 - type: CableApcExtension - components: - - pos: -53.5,79.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7765 - type: CableApcExtension - components: - - pos: -52.5,89.5 - parent: 1 - type: Transform -- uid: 7766 - type: CableApcExtension - components: - - pos: -53.5,89.5 - parent: 1 - type: Transform -- uid: 7767 - type: CableApcExtension - components: - - pos: -54.5,89.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7768 - type: CableApcExtension - components: - - pos: -55.5,89.5 - parent: 1 - type: Transform -- uid: 7769 - type: CableApcExtension - components: - - pos: -56.5,89.5 - parent: 1 - type: Transform -- uid: 7770 - type: CableApcExtension - components: - - pos: -57.5,89.5 - parent: 1 - type: Transform -- uid: 7771 - type: CableApcExtension - components: - - pos: -58.5,89.5 - parent: 1 - type: Transform -- uid: 7772 - type: CableApcExtension - components: - - pos: -59.5,89.5 - parent: 1 - type: Transform -- uid: 7773 - type: CableApcExtension - components: - - pos: -52.5,83.5 - parent: 1 - type: Transform -- uid: 7774 - type: CableApcExtension - components: - - pos: -59.5,84.5 - parent: 1 - type: Transform -- uid: 7775 - type: CableApcExtension - components: - - pos: -53.5,83.5 - parent: 1 - type: Transform -- uid: 7776 - type: CableApcExtension - components: - - pos: -59.5,87.5 - parent: 1 - type: Transform -- uid: 7777 - type: CableApcExtension - components: - - pos: -54.5,83.5 - parent: 1 - type: Transform -- uid: 7778 - type: CableApcExtension - components: - - pos: -59.5,85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7779 - type: CableApcExtension - components: - - pos: -55.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7780 - type: CableApcExtension - components: - - pos: -59.5,86.5 - parent: 1 - type: Transform -- uid: 7781 - type: CableApcExtension - components: - - pos: -56.5,83.5 - parent: 1 - type: Transform -- uid: 7782 - type: CableApcExtension - components: - - pos: -59.5,88.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7783 - type: CableApcExtension - components: - - pos: -57.5,83.5 - parent: 1 - type: Transform -- uid: 7784 - type: CableApcExtension - components: - - pos: -62.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7785 - type: CableApcExtension - components: - - pos: -58.5,83.5 - parent: 1 - type: Transform -- uid: 7786 - type: CableApcExtension - components: - - pos: -63.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7787 - type: CableApcExtension - components: - - pos: -59.5,83.5 - parent: 1 - type: Transform -- uid: 7788 - type: CableApcExtension - components: - - pos: -60.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7789 - type: CableApcExtension - components: - - pos: -61.5,84.5 - parent: 1 - type: Transform -- uid: 7790 - type: CableApcExtension - components: - - pos: -63.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7791 - type: CableApcExtension - components: - - pos: -63.5,85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7792 - type: CableApcExtension - components: - - pos: -59.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7793 - type: CableApcExtension - components: - - pos: -60.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7794 - type: CableApcExtension - components: - - pos: -61.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7795 - type: CableApcExtension - components: - - pos: -58.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7796 - type: CableApcExtension - components: - - pos: -60.5,90.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7797 - type: CableApcExtension - components: - - pos: -59.5,90.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7798 - type: CableApcExtension - components: - - pos: -58.5,90.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7799 - type: CableApcExtension - components: - - pos: -51.5,90.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7800 - type: CableApcExtension - components: - - pos: -51.5,91.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7801 - type: CableApcExtension - components: - - pos: -50.5,88.5 - parent: 1 - type: Transform -- uid: 7802 - type: CableApcExtension - components: - - pos: -49.5,88.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7803 - type: CableApcExtension - components: - - pos: -49.5,87.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7804 - type: CableApcExtension - components: - - pos: -49.5,86.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7805 - type: CableApcExtension - components: - - pos: -49.5,85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7806 - type: CableApcExtension - components: - - pos: -49.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7807 - type: CableApcExtension - components: - - pos: -49.5,83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7808 - type: CableMV - components: - - pos: -53.5,85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7809 - type: CableMV - components: - - pos: -52.5,85.5 - parent: 1 - type: Transform -- uid: 7810 - type: CableMV - components: - - pos: -51.5,85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7811 - type: CableMV - components: - - pos: -50.5,85.5 - parent: 1 - type: Transform -- uid: 7812 - type: CableMV - components: - - pos: -50.5,84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7813 - type: CableMV - components: - - pos: -50.5,83.5 - parent: 1 - type: Transform -- uid: 7814 - type: CableMV - components: - - pos: -50.5,82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7815 - type: CableMV - components: - - pos: -50.5,81.5 - parent: 1 - type: Transform -- uid: 7816 - type: CableMV - components: - - pos: -50.5,80.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7817 - type: CableMV - components: - - pos: -50.5,79.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7818 - type: CableMV - components: - - pos: -50.5,78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7819 - type: CableMV - components: - - pos: -50.5,77.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7820 - type: CableMV - components: - - pos: -50.5,76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7821 - type: CableMV - components: - - pos: -50.5,75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7822 - type: CableMV - components: - - pos: -50.5,74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7823 - type: CableMV - components: - - pos: -50.5,73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7824 - type: CableMV - components: - - pos: -50.5,72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7825 - type: CableMV - components: - - pos: -50.5,71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7826 - type: CableMV - components: - - pos: -50.5,70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7827 - type: CableMV - components: - - pos: -50.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7828 - type: CableMV - components: - - pos: -50.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7829 - type: CableMV - components: - - pos: -50.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7830 - type: CableMV - components: - - pos: -50.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7831 - type: CableMV - components: - - pos: -50.5,65.5 - parent: 1 - type: Transform -- uid: 7832 - type: CableMV - components: - - pos: -50.5,64.5 - parent: 1 - type: Transform -- uid: 7833 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 13.5,40.5 - parent: 1 - type: Transform -- uid: 7834 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 11.5,39.5 - parent: 1 - type: Transform -- uid: 7835 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 6.5,40.5 - parent: 1 - type: Transform -- uid: 7836 - type: CableMV - components: - - pos: -50.5,63.5 - parent: 1 - type: Transform -- uid: 7837 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 6.5,45.5 - parent: 1 - type: Transform -- uid: 7838 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 4.5,46.5 - parent: 1 - type: Transform -- uid: 7839 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 0.5,46.5 - parent: 1 - type: Transform -- uid: 7840 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -25.5,42.5 - parent: 1 - type: Transform -- uid: 7841 - type: CableMV - components: - - pos: -50.5,62.5 - parent: 1 - type: Transform -- uid: 7842 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -49.5,63.5 - parent: 1 - type: Transform -- uid: 7843 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -58.5,56.5 - parent: 1 - type: Transform -- uid: 7844 - type: CableMV - components: - - pos: -49.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7845 - type: CableMV - components: - - pos: -50.5,61.5 - parent: 1 - type: Transform -- uid: 7846 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -50.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7847 - type: CableMV - components: - - pos: -50.5,59.5 - parent: 1 - type: Transform -- uid: 7848 - type: CableMV - components: - - pos: -50.5,58.5 - parent: 1 - type: Transform -- uid: 7849 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -8.5,48.5 - parent: 1 - type: Transform -- uid: 7850 - type: CableMV - components: - - pos: -50.5,57.5 - parent: 1 - type: Transform -- uid: 7851 - type: CableMV - components: - - pos: -50.5,56.5 - parent: 1 - type: Transform -- uid: 7852 - type: CableMV - components: - - pos: -51.5,56.5 - parent: 1 - type: Transform -- uid: 7853 - type: CableMV - components: - - pos: -52.5,56.5 - parent: 1 - type: Transform -- uid: 7854 - type: CableMV - components: - - pos: -53.5,56.5 - parent: 1 - type: Transform -- uid: 7855 - type: CableMV - components: - - pos: -54.5,56.5 - parent: 1 - type: Transform -- uid: 7856 - type: CableMV - components: - - pos: -55.5,56.5 - parent: 1 - type: Transform -- uid: 7857 - type: CableMV - components: - - pos: -56.5,56.5 - parent: 1 - type: Transform -- uid: 7858 - type: CableMV - components: - - pos: -57.5,56.5 - parent: 1 - type: Transform -- uid: 7859 - type: CableMV - components: - - pos: -58.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7860 - type: ShuttersNormal - components: - - pos: -49.5,67.5 - parent: 1 - type: Transform -- uid: 7861 - type: ReinforcedWindow - components: - - pos: -47.5,52.5 - parent: 1 - type: Transform -- uid: 7862 - type: Grille - components: - - pos: -47.5,52.5 - parent: 1 - type: Transform -- uid: 7863 - type: AirlockSecurityGlassLocked - components: - - pos: -52.5,59.5 - parent: 1 - type: Transform -- uid: 7864 - type: AirlockSecurityGlassLocked - components: - - pos: -50.5,59.5 - parent: 1 - type: Transform -- uid: 7865 - type: AirlockSecurityGlassLocked - components: - - pos: -58.5,55.5 - parent: 1 - type: Transform -- uid: 7866 - type: AirlockSecurityGlassLocked - components: - - pos: -58.5,53.5 - parent: 1 - type: Transform -- uid: 7867 - type: AirlockMaintSecLocked - components: - - pos: -64.5,57.5 - parent: 1 - type: Transform -- uid: 7868 - type: AirlockSecurityLocked - components: - - pos: -62.5,60.5 - parent: 1 - type: Transform -- uid: 7869 - type: HighSecArmoryLocked - components: - - pos: -44.5,64.5 - parent: 1 - type: Transform -- uid: 7870 - type: HighSecArmoryLocked - components: - - pos: -44.5,65.5 - parent: 1 - type: Transform -- uid: 7871 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: -57.5,52.5 - parent: 1 - type: Transform -- uid: 7872 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: -54.5,52.5 - parent: 1 - type: Transform -- uid: 7873 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: -51.5,52.5 - parent: 1 - type: Transform -- uid: 7874 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: -47.5,56.5 - parent: 1 - type: Transform -- uid: 7875 - type: WindoorArmoryLocked - components: - - pos: -47.5,63.5 - parent: 1 - type: Transform -- uid: 7876 - type: AirlockArmoryLocked - components: - - pos: -49.5,61.5 - parent: 1 - type: Transform -- uid: 7877 - type: WindoorSecure - components: - - pos: -47.5,56.5 - parent: 1 - type: Transform -- uid: 7878 - type: WindoorSecure - components: - - rot: 3.141592653589793 rad - pos: -47.5,63.5 - parent: 1 - type: Transform -- uid: 7879 - type: AirlockBrigGlassLocked - components: - - pos: -49.5,55.5 - parent: 1 - type: Transform -- uid: 7880 - type: AirlockBrigGlassLocked - components: - - pos: -49.5,53.5 - parent: 1 - type: Transform -- uid: 7881 - type: AirlockBrigGlassLocked - components: - - pos: -48.5,52.5 - parent: 1 - type: Transform -- uid: 7882 - type: AirlockBrigGlassLocked - components: - - pos: -46.5,52.5 - parent: 1 - type: Transform -- uid: 7883 - type: AirlockMaintSecLocked - components: - - pos: -45.5,54.5 - parent: 1 - type: Transform -- uid: 7884 - type: CableHV - components: - - pos: -44.5,55.5 - parent: 1 - type: Transform -- uid: 7885 - type: CableHV - components: - - pos: -44.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7886 - type: CableHV - components: - - pos: -44.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7887 - type: CableHV - components: - - pos: -44.5,52.5 - parent: 1 - type: Transform -- uid: 7888 - type: CableHV - components: - - pos: -44.5,51.5 - parent: 1 - type: Transform -- uid: 7889 - type: CableHV - components: - - pos: -44.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7890 - type: CableHV - components: - - pos: -44.5,49.5 - parent: 1 - type: Transform -- uid: 7891 - type: CableHV - components: - - pos: -45.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7892 - type: CableHV - components: - - pos: -46.5,49.5 - parent: 1 - type: Transform -- uid: 7893 - type: CableHV - components: - - pos: -47.5,49.5 - parent: 1 - type: Transform -- uid: 7894 - type: CableHV - components: - - pos: -47.5,48.5 - parent: 1 - type: Transform -- uid: 7895 - type: AirlockSecurityLocked - components: - - pos: -58.5,57.5 - parent: 1 - type: Transform -- uid: 7896 - type: AirlockMaintHydroLocked - components: - - pos: -43.5,50.5 - parent: 1 - type: Transform -- uid: 7897 - type: AirlockMaintLocked - components: - - pos: -45.5,49.5 - parent: 1 - type: Transform -- uid: 7898 - type: WallReinforced - components: - - pos: -51.5,69.5 - parent: 1 - type: Transform -- uid: 7899 - type: BlastDoor - components: - - pos: -45.5,64.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7901 - type: SignalReceiver -- uid: 7900 - type: BlastDoor - components: - - pos: -45.5,65.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7901 - type: SignalReceiver -- uid: 7901 - type: SignalButton - components: - - name: armory button - type: MetaData - - rot: -1.5707963267948966 rad - pos: -45.5,61.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7899 - - port: Toggle - uid: 7900 - type: SignalTransmitter -- uid: 7902 - type: Table - components: - - pos: -47.5,56.5 - parent: 1 - type: Transform -- uid: 7903 - type: Table - components: - - pos: -47.5,63.5 - parent: 1 - type: Transform -- uid: 7904 - type: LockerSecurityFilled - components: - - pos: -64.5,55.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7905 - type: Table - components: - - pos: -48.5,59.5 - parent: 1 - type: Transform -- uid: 7906 - type: Table - components: - - pos: -47.5,59.5 - parent: 1 - type: Transform -- uid: 7907 - type: ChairOfficeDark - components: - - pos: -47.5,57.5 - parent: 1 - type: Transform -- uid: 7908 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -47.5,62.5 - parent: 1 - type: Transform -- uid: 7909 - type: Chair - components: - - pos: -47.5,60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7910 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -47.5,58.5 - parent: 1 - type: Transform -- uid: 7911 - type: Chair - components: - - pos: -48.5,60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7912 - type: TableReinforced - components: - - pos: -43.5,61.5 - parent: 1 - type: Transform -- uid: 7913 - type: TableReinforced - components: - - pos: -42.5,61.5 - parent: 1 - type: Transform -- uid: 7914 - type: TableReinforced - components: - - pos: -41.5,61.5 - parent: 1 - type: Transform -- uid: 7915 - type: TableReinforced - components: - - pos: -41.5,62.5 - parent: 1 - type: Transform -- uid: 7916 - type: TableReinforced - components: - - pos: -41.5,63.5 - parent: 1 - type: Transform -- uid: 7917 - type: SecurityTechFab - components: - - pos: -41.5,65.5 - parent: 1 - type: Transform -- uid: 7918 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -42.5,55.5 - parent: 1 - type: Transform -- uid: 7919 - type: LockerSyndicatePersonal - components: - - pos: -41.5,64.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5840 - - 7922 - - 7923 - - 14826 - - 14852 - - 7921 - type: ContainerContainer -- uid: 7920 - type: CableApcExtension - components: - - pos: -42.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7921 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 7919 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 7922 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 7919 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 7923 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 7919 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 7924 - type: TableWood - components: - - pos: -54.5,64.5 - parent: 1 - type: Transform -- uid: 7925 - type: TableWood - components: - - pos: -56.5,63.5 - parent: 1 - type: Transform -- uid: 7926 - type: TableWood - components: - - pos: -56.5,64.5 - parent: 1 - type: Transform -- uid: 7927 - type: TableWood - components: - - pos: -60.5,64.5 - parent: 1 - type: Transform -- uid: 7928 - type: TableWood - components: - - pos: -60.5,63.5 - parent: 1 - type: Transform -- uid: 7929 - type: TableWood - components: - - pos: -58.5,64.5 - parent: 1 - type: Transform -- uid: 7930 - type: PottedPlantRandom - components: - - pos: -58.5,63.5 - parent: 1 - type: Transform -- uid: 7931 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -61.5,64.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7932 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -59.5,64.5 - parent: 1 - type: Transform -- uid: 7933 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -58.5,65.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7934 - type: LockerHeadOfSecurityFilled - components: - - pos: -61.5,63.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7935 - type: DrinkWhiskeyBottleFull - components: - - pos: -58.33147,64.88806 - parent: 1 - type: Transform -- uid: 7936 - type: DrinkWhiskeyColaGlass - components: - - pos: -58.70647,64.85681 - parent: 1 - type: Transform -- uid: 7937 - type: WeaponSubMachineGunWt550 - components: - - pos: -60.450623,64.62244 - parent: 1 - type: Transform -- uid: 7938 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: -60.513123,64.48181 - parent: 1 - type: Transform -- uid: 7939 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: -60.513123,64.48181 - parent: 1 - type: Transform -- uid: 7940 - type: Lamp - components: - - pos: -60.466248,63.997437 - parent: 1 - type: Transform -- uid: 7941 - type: ChairFolding - components: - - pos: -54.5,65.5 - parent: 1 - type: Transform -- uid: 7942 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: -54.5,63.5 - parent: 1 - type: Transform -- uid: 7943 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: -56.5,65.5 - parent: 1 - type: Transform -- uid: 7944 - type: KitchenMicrowave - components: - - pos: -56.5,63.5 - parent: 1 - type: Transform -- uid: 7945 - type: InflatableDoor - components: - - pos: -35.5,12.5 - parent: 1 - type: Transform -- uid: 7946 - type: PowerCellRecharger - components: - - pos: -56.5,64.5 - parent: 1 - type: Transform -- uid: 7947 - type: FoodBoxDonkpocketBerry - components: - - pos: -54.482857,64.65437 - parent: 1 - type: Transform -- uid: 7948 - type: DrinkMugBlue - components: - - pos: -54.232857,64.76375 - parent: 1 - type: Transform -- uid: 7949 - type: DrinkMugMetal - components: - - pos: -47.25018,59.484123 - parent: 1 - type: Transform -- uid: 7950 - type: PaperOffice - components: - - pos: -47.78143,59.577873 - parent: 1 - type: Transform -- uid: 7951 - type: PaperOffice - components: - - pos: -47.734554,59.577873 - parent: 1 - type: Transform -- uid: 7952 - type: PaperOffice - components: - - pos: -47.71893,59.577873 - parent: 1 - type: Transform -- uid: 7953 - type: PaperOffice - components: - - pos: -47.672054,59.577873 - parent: 1 - type: Transform -- uid: 7954 - type: WeaponDisabler - components: - - pos: -48.547054,59.421623 - parent: 1 - type: Transform -- uid: 7955 - type: WeaponPistolMk58 - components: - - pos: -48.53143,59.640373 - parent: 1 - type: Transform -- uid: 7956 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: -48.5,57.5 - parent: 1 - type: Transform -- uid: 7957 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: -46.5,62.5 - parent: 1 - type: Transform -- uid: 7958 - type: SpawnPointWarden - components: - - pos: -47.5,61.5 - parent: 1 - type: Transform -- uid: 7959 - type: LockerWardenFilled - components: - - pos: -48.5,62.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7960 - type: Table - components: - - pos: -55.5,58.5 - parent: 1 - type: Transform -- uid: 7961 - type: Table - components: - - pos: -56.5,58.5 - parent: 1 - type: Transform -- uid: 7962 - type: DeployableBarrier - components: - - anchored: False - pos: -65.5,52.5 - parent: 1 - type: Transform -- uid: 7963 - type: Table - components: - - pos: -53.5,58.5 - parent: 1 - type: Transform -- uid: 7964 - type: DrinkMugBlack - components: - - pos: -54.71723,64.74812 - parent: 1 - type: Transform -- uid: 7965 - type: WeaponCapacitorRecharger - components: - - pos: -60.5,50.5 - parent: 1 - type: Transform -- uid: 7966 - type: VendingMachineSec - components: - - flags: SessionSpecific - type: MetaData - - pos: -59.5,50.5 - parent: 1 - type: Transform -- uid: 7967 - type: Table - components: - - pos: -60.5,50.5 - parent: 1 - type: Transform -- uid: 7968 - type: Table - components: - - pos: -61.5,50.5 - parent: 1 - type: Transform -- uid: 7969 - type: Table - components: - - pos: -62.5,50.5 - parent: 1 - type: Transform -- uid: 7970 - type: Table - components: - - pos: -63.5,50.5 - parent: 1 - type: Transform -- uid: 7971 - type: Table - components: - - pos: -63.5,51.5 - parent: 1 - type: Transform -- uid: 7972 - type: DeployableBarrier - components: - - anchored: False - pos: -65.5,53.5 - parent: 1 - type: Transform -- uid: 7973 - type: SpawnVehicleSecway - components: - - pos: -61.5,55.5 - parent: 1 - type: Transform -- uid: 7974 - type: SpawnVehicleSecway - components: - - pos: -60.5,55.5 - parent: 1 - type: Transform -- uid: 7975 - type: LockerSecurityFilled - components: - - pos: -57.5,58.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7976 - type: WallReinforced - components: - - pos: -66.5,52.5 - parent: 1 - type: Transform -- uid: 7977 - type: DisposalUnit - components: - - pos: -51.5,58.5 - parent: 1 - type: Transform -- uid: 7978 - type: WallReinforced - components: - - pos: -66.5,51.5 - parent: 1 - type: Transform -- uid: 7979 - type: ComputerSurveillanceCameraMonitor - components: - - pos: -54.5,58.5 - parent: 1 - type: Transform -- uid: 7980 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -54.5,57.5 - parent: 1 - type: Transform -- uid: 7981 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -56.5,57.5 - parent: 1 - type: Transform -- uid: 7982 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -59.5,58.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7983 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -61.5,58.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7984 - type: Table - components: - - pos: -60.5,58.5 - parent: 1 - type: Transform -- uid: 7985 - type: PaperOffice - components: - - pos: -60.29884,58.597794 - parent: 1 - type: Transform -- uid: 7986 - type: PaperOffice - components: - - pos: -60.314465,58.597794 - parent: 1 - type: Transform -- uid: 7987 - type: PaperOffice - components: - - pos: -60.33009,58.597794 - parent: 1 - type: Transform -- uid: 7988 - type: BoxFolderRed - components: - - pos: -60.701515,58.61342 - parent: 1 - type: Transform -- uid: 7989 - type: FaxMachineBase - components: - - pos: -55.5,58.5 - parent: 1 - type: Transform - - name: Security - type: FaxMachine -- uid: 7990 - type: PaperOffice - components: - - pos: -56.078358,58.626472 - parent: 1 - type: Transform -- uid: 7991 - type: PaperOffice - components: - - pos: -56.172108,58.532722 - parent: 1 - type: Transform -- uid: 7992 - type: PaperOffice - components: - - pos: -56.234608,58.595222 - parent: 1 - type: Transform -- uid: 7993 - type: BoxHandcuff - components: - - pos: -56.703358,58.661354 - parent: 1 - type: Transform -- uid: 7994 - type: BoxHandcuff - components: - - pos: -63.575817,51.607216 - parent: 1 - type: Transform -- uid: 7995 - type: FirelockGlass - components: - - pos: -48.5,34.5 - parent: 1 - type: Transform -- uid: 7996 - type: FirelockGlass - components: - - pos: -47.5,34.5 - parent: 1 - type: Transform -- uid: 7997 - type: FirelockGlass - components: - - pos: -46.5,34.5 - parent: 1 - type: Transform -- uid: 7998 - type: BoxZiptie - components: - - pos: -63.419567,51.34159 - parent: 1 - type: Transform -- uid: 7999 - type: Stunbaton - components: - - pos: -63.653942,50.74784 - parent: 1 - type: Transform -- uid: 8000 - type: Stunbaton - components: - - pos: -63.450817,50.59159 - parent: 1 - type: Transform -- uid: 8001 - type: FirelockGlass - components: - - pos: -58.5,34.5 - parent: 1 - type: Transform -- uid: 8002 - type: FirelockGlass - components: - - pos: -57.5,34.5 - parent: 1 - type: Transform -- uid: 8003 - type: FirelockGlass - components: - - pos: -56.5,34.5 - parent: 1 - type: Transform -- uid: 8004 - type: Stunbaton - components: - - pos: -63.185192,50.544716 - parent: 1 - type: Transform -- uid: 8005 - type: WeaponDisabler - components: - - pos: -61.153942,50.71659 - parent: 1 - type: Transform -- uid: 8006 - type: WeaponDisabler - components: - - pos: -61.200817,50.52909 - parent: 1 - type: Transform -- uid: 8007 - type: WeaponDisabler - components: - - pos: -61.372692,50.68534 - parent: 1 - type: Transform -- uid: 8008 - type: BoxFlashbang - components: - - pos: -62.513317,50.638466 - parent: 1 - type: Transform -- uid: 8009 - type: GrenadeFlashBang - components: - - pos: -61.810192,50.638466 - parent: 1 - type: Transform -- uid: 8010 - type: GrenadeFlashBang - components: - - pos: -61.950817,50.700966 - parent: 1 - type: Transform -- uid: 8011 - type: GrenadeFlashBang - components: - - pos: -61.997692,50.59159 - parent: 1 - type: Transform -- uid: 8012 - type: WallReinforced - components: - - pos: -65.5,51.5 - parent: 1 - type: Transform -- uid: 8013 - type: LockerEvidence - components: - - pos: -55.5,53.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8014 - type: WallReinforced - components: - - pos: -66.5,53.5 - parent: 1 - type: Transform -- uid: 8015 - type: WallReinforced - components: - - pos: -66.5,54.5 - parent: 1 - type: Transform -- uid: 8016 - type: WallReinforced - components: - - pos: -66.5,55.5 - parent: 1 - type: Transform -- uid: 8017 - type: WallReinforced - components: - - pos: -66.5,56.5 - parent: 1 - type: Transform -- uid: 8018 - type: WallReinforced - components: - - pos: -65.5,56.5 - parent: 1 - type: Transform -- uid: 8019 - type: DeployableBarrier - components: - - anchored: False - pos: -64.5,53.5 - parent: 1 - type: Transform -- uid: 8020 - type: DeployableBarrier - components: - - anchored: False - pos: -64.5,52.5 - parent: 1 - type: Transform -- uid: 8021 - type: VehicleKeySecway - components: - - pos: -63.41839,50.781906 - parent: 1 - type: Transform -- uid: 8022 - type: VehicleKeySecway - components: - - pos: -63.652763,50.594406 - parent: 1 - type: Transform -- uid: 8023 - type: VendingMachineSecDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -61.5,61.5 - parent: 1 - type: Transform -- uid: 8024 - type: WaterCooler - components: - - pos: -60.5,61.5 - parent: 1 - type: Transform -- uid: 8025 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: -40.5,51.5 - parent: 1 - type: Transform -- uid: 8026 - type: RandomSpawner - components: - - pos: -44.5,46.5 - parent: 1 - type: Transform -- uid: 8027 - type: RandomSpawner - components: - - pos: -40.5,43.5 - parent: 1 - type: Transform -- uid: 8028 - type: RandomSpawner - components: - - pos: -43.5,42.5 - parent: 1 - type: Transform -- uid: 8029 - type: RandomSpawner - components: - - pos: -37.5,43.5 - parent: 1 - type: Transform -- uid: 8030 - type: RandomSpawner - components: - - pos: -33.5,46.5 - parent: 1 - type: Transform -- uid: 8031 - type: RandomSpawner - components: - - pos: -31.5,44.5 - parent: 1 - type: Transform -- uid: 8032 - type: RandomSpawner - components: - - pos: -28.5,44.5 - parent: 1 - type: Transform -- uid: 8033 - type: RandomSpawner - components: - - pos: -29.5,46.5 - parent: 1 - type: Transform -- uid: 8034 - type: RandomSpawner - components: - - pos: -28.5,41.5 - parent: 1 - type: Transform -- uid: 8035 - type: RandomSpawner - components: - - pos: -31.5,38.5 - parent: 1 - type: Transform -- uid: 8036 - type: RandomSpawner - components: - - pos: -32.5,40.5 - parent: 1 - type: Transform -- uid: 8037 - type: RandomSpawner - components: - - pos: -35.5,35.5 - parent: 1 - type: Transform -- uid: 8038 - type: RandomSpawner - components: - - pos: -42.5,37.5 - parent: 1 - type: Transform -- uid: 8039 - type: RandomSpawner - components: - - pos: -35.5,40.5 - parent: 1 - type: Transform -- uid: 8040 - type: RandomSpawner - components: - - pos: -36.5,28.5 - parent: 1 - type: Transform -- uid: 8041 - type: RandomSpawner - components: - - pos: -38.5,22.5 - parent: 1 - type: Transform -- uid: 8042 - type: RandomSpawner - components: - - pos: -37.5,16.5 - parent: 1 - type: Transform -- uid: 8043 - type: RandomSpawner - components: - - pos: -36.5,9.5 - parent: 1 - type: Transform -- uid: 8044 - type: RandomSpawner - components: - - pos: -38.5,5.5 - parent: 1 - type: Transform -- uid: 8045 - type: RandomSpawner - components: - - pos: -33.5,4.5 - parent: 1 - type: Transform -- uid: 8046 - type: RandomSpawner - components: - - pos: -32.5,1.5 - parent: 1 - type: Transform -- uid: 8047 - type: RandomSpawner - components: - - pos: -41.5,2.5 - parent: 1 - type: Transform -- uid: 8048 - type: RandomSpawner - components: - - pos: -48.5,5.5 - parent: 1 - type: Transform -- uid: 8049 - type: RandomSpawner - components: - - pos: -55.5,6.5 - parent: 1 - type: Transform -- uid: 8050 - type: RandomSpawner - components: - - pos: -57.5,4.5 - parent: 1 - type: Transform -- uid: 8051 - type: RandomSpawner - components: - - pos: -65.5,6.5 - parent: 1 - type: Transform -- uid: 8052 - type: RandomSpawner - components: - - pos: -70.5,5.5 - parent: 1 - type: Transform -- uid: 8053 - type: RandomSpawner - components: - - pos: -74.5,6.5 - parent: 1 - type: Transform -- uid: 8054 - type: RandomSpawner - components: - - pos: -56.5,-2.5 - parent: 1 - type: Transform -- uid: 8055 - type: RandomSpawner - components: - - pos: -58.5,1.5 - parent: 1 - type: Transform -- uid: 8056 - type: RandomSpawner - components: - - pos: -56.5,-8.5 - parent: 1 - type: Transform -- uid: 8060 - type: RandomSpawner - components: - - pos: -52.5,-7.5 - parent: 1 - type: Transform -- uid: 8061 - type: RandomSpawner - components: - - pos: -54.5,-2.5 - parent: 1 - type: Transform -- uid: 8062 - type: RandomSpawner - components: - - pos: -50.5,-1.5 - parent: 1 - type: Transform -- uid: 8063 - type: RandomSpawner - components: - - pos: -44.5,-4.5 - parent: 1 - type: Transform -- uid: 8064 - type: RandomSpawner - components: - - pos: -45.5,0.5 - parent: 1 - type: Transform -- uid: 8065 - type: RandomSpawner - components: - - pos: -37.5,-3.5 - parent: 1 - type: Transform -- uid: 8066 - type: RandomSpawner - components: - - pos: -41.5,-3.5 - parent: 1 - type: Transform -- uid: 8067 - type: RandomSpawner - components: - - pos: -32.5,-9.5 - parent: 1 - type: Transform -- uid: 8068 - type: RandomSpawner - components: - - pos: -32.5,-5.5 - parent: 1 - type: Transform -- uid: 8069 - type: RandomSpawner - components: - - pos: -38.5,-12.5 - parent: 1 - type: Transform -- uid: 8070 - type: RandomSpawner - components: - - pos: -41.5,-10.5 - parent: 1 - type: Transform -- uid: 8071 - type: RandomSpawner - components: - - pos: -43.5,-9.5 - parent: 1 - type: Transform -- uid: 8072 - type: RandomSpawner - components: - - pos: -26.5,-6.5 - parent: 1 - type: Transform -- uid: 8073 - type: RandomSpawner - components: - - pos: -29.5,-5.5 - parent: 1 - type: Transform -- uid: 8074 - type: RandomSpawner - components: - - pos: -25.5,-0.5 - parent: 1 - type: Transform -- uid: 8075 - type: RandomSpawner - components: - - pos: -28.5,2.5 - parent: 1 - type: Transform -- uid: 8076 - type: RandomSpawner - components: - - pos: -21.5,-8.5 - parent: 1 - type: Transform -- uid: 8077 - type: RandomSpawner - components: - - pos: -20.5,-4.5 - parent: 1 - type: Transform -- uid: 8078 - type: RandomSpawner - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform -- uid: 8079 - type: RandomSpawner - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform -- uid: 8080 - type: RandomSpawner - components: - - pos: -15.5,1.5 - parent: 1 - type: Transform -- uid: 8081 - type: RandomSpawner - components: - - pos: -16.5,-10.5 - parent: 1 - type: Transform -- uid: 8082 - type: RandomSpawner - components: - - pos: -12.5,-13.5 - parent: 1 - type: Transform -- uid: 8083 - type: RandomSpawner - components: - - pos: -20.5,-10.5 - parent: 1 - type: Transform -- uid: 8084 - type: RandomSpawner - components: - - pos: -25.5,-13.5 - parent: 1 - type: Transform -- uid: 8085 - type: RandomSpawner - components: - - pos: -24.5,-4.5 - parent: 1 - type: Transform -- uid: 8086 - type: RandomSpawner - components: - - pos: -31.5,6.5 - parent: 1 - type: Transform -- uid: 8087 - type: RandomSpawner - components: - - pos: -24.5,4.5 - parent: 1 - type: Transform -- uid: 8088 - type: RandomSpawner - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform -- uid: 8089 - type: RandomSpawner - components: - - pos: -14.5,5.5 - parent: 1 - type: Transform -- uid: 8090 - type: RandomSpawner - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform -- uid: 8091 - type: RandomSpawner - components: - - pos: -4.5,6.5 - parent: 1 - type: Transform -- uid: 8092 - type: RandomSpawner - components: - - pos: -1.5,4.5 - parent: 1 - type: Transform -- uid: 8093 - type: RandomSpawner - components: - - pos: 7.5,5.5 - parent: 1 - type: Transform -- uid: 8094 - type: RandomSpawner - components: - - pos: 13.5,6.5 - parent: 1 - type: Transform -- uid: 8095 - type: RandomSpawner - components: - - pos: 19.5,5.5 - parent: 1 - type: Transform -- uid: 8096 - type: RandomSpawner - components: - - pos: 26.5,6.5 - parent: 1 - type: Transform -- uid: 8097 - type: RandomSpawner - components: - - pos: 28.5,10.5 - parent: 1 - type: Transform -- uid: 8098 - type: RandomSpawner - components: - - pos: 25.5,14.5 - parent: 1 - type: Transform -- uid: 8099 - type: RandomSpawner - components: - - pos: 27.5,18.5 - parent: 1 - type: Transform -- uid: 8100 - type: RandomSpawner - components: - - pos: 26.5,21.5 - parent: 1 - type: Transform -- uid: 8101 - type: RandomSpawner - components: - - pos: 22.5,15.5 - parent: 1 - type: Transform -- uid: 8102 - type: RandomSpawner - components: - - pos: 19.5,16.5 - parent: 1 - type: Transform -- uid: 8103 - type: RandomSpawner - components: - - pos: 16.5,20.5 - parent: 1 - type: Transform -- uid: 8104 - type: RandomSpawner - components: - - pos: 19.5,23.5 - parent: 1 - type: Transform -- uid: 8105 - type: RandomSpawner - components: - - pos: 23.5,25.5 - parent: 1 - type: Transform -- uid: 8106 - type: RandomSpawner - components: - - pos: 22.5,33.5 - parent: 1 - type: Transform -- uid: 8107 - type: RandomSpawner - components: - - pos: 23.5,35.5 - parent: 1 - type: Transform -- uid: 8108 - type: RandomSpawner - components: - - pos: 14.5,35.5 - parent: 1 - type: Transform -- uid: 8109 - type: RandomSpawner - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform -- uid: 8110 - type: RandomSpawner - components: - - pos: 9.5,39.5 - parent: 1 - type: Transform -- uid: 8111 - type: RandomSpawner - components: - - pos: 7.5,43.5 - parent: 1 - type: Transform -- uid: 8112 - type: RandomSpawner - components: - - pos: 6.5,46.5 - parent: 1 - type: Transform -- uid: 8113 - type: RandomSpawner - components: - - pos: 14.5,48.5 - parent: 1 - type: Transform -- uid: 8114 - type: RandomSpawner - components: - - pos: 18.5,39.5 - parent: 1 - type: Transform -- uid: 8115 - type: RandomSpawner - components: - - pos: 22.5,41.5 - parent: 1 - type: Transform -- uid: 8116 - type: RandomSpawner - components: - - pos: 11.5,51.5 - parent: 1 - type: Transform -- uid: 8117 - type: RandomSpawner - components: - - pos: 6.5,50.5 - parent: 1 - type: Transform -- uid: 8118 - type: RandomSpawner - components: - - pos: 4.5,52.5 - parent: 1 - type: Transform -- uid: 8119 - type: RandomSpawner - components: - - pos: -1.5,49.5 - parent: 1 - type: Transform -- uid: 8120 - type: RandomSpawner - components: - - pos: -0.5,53.5 - parent: 1 - type: Transform -- uid: 8121 - type: RandomSpawner - components: - - pos: -0.5,47.5 - parent: 1 - type: Transform -- uid: 8122 - type: RandomSpawner - components: - - pos: -2.5,40.5 - parent: 1 - type: Transform -- uid: 8123 - type: RandomSpawner - components: - - pos: -6.5,36.5 - parent: 1 - type: Transform -- uid: 8124 - type: RandomSpawner - components: - - pos: -5.5,47.5 - parent: 1 - type: Transform -- uid: 8125 - type: RandomSpawner - components: - - pos: -10.5,51.5 - parent: 1 - type: Transform -- uid: 8126 - type: RandomSpawner - components: - - pos: -12.5,53.5 - parent: 1 - type: Transform -- uid: 8127 - type: RandomSpawner - components: - - pos: -8.5,57.5 - parent: 1 - type: Transform -- uid: 8128 - type: RandomSpawner - components: - - pos: -5.5,59.5 - parent: 1 - type: Transform -- uid: 8129 - type: RandomSpawner - components: - - pos: -13.5,60.5 - parent: 1 - type: Transform -- uid: 8130 - type: RandomSpawner - components: - - pos: -17.5,64.5 - parent: 1 - type: Transform -- uid: 8131 - type: RandomSpawner - components: - - pos: -20.5,61.5 - parent: 1 - type: Transform -- uid: 8132 - type: RandomSpawner - components: - - pos: -17.5,56.5 - parent: 1 - type: Transform -- uid: 8133 - type: RandomSpawner - components: - - pos: -14.5,53.5 - parent: 1 - type: Transform -- uid: 8134 - type: RandomSpawner - components: - - pos: -22.5,55.5 - parent: 1 - type: Transform -- uid: 8135 - type: RandomSpawner - components: - - pos: -17.5,49.5 - parent: 1 - type: Transform -- uid: 8136 - type: RandomSpawner - components: - - pos: -16.5,42.5 - parent: 1 - type: Transform -- uid: 8137 - type: RandomSpawner - components: - - pos: -15.5,46.5 - parent: 1 - type: Transform -- uid: 8138 - type: RandomSpawner - components: - - pos: -12.5,47.5 - parent: 1 - type: Transform -- uid: 8139 - type: RandomSpawner - components: - - pos: -10.5,48.5 - parent: 1 - type: Transform -- uid: 8140 - type: RandomSpawner - components: - - pos: -15.5,39.5 - parent: 1 - type: Transform -- uid: 8141 - type: RandomSpawner - components: - - pos: -17.5,35.5 - parent: 1 - type: Transform -- uid: 8142 - type: RandomSpawner - components: - - pos: -13.5,39.5 - parent: 1 - type: Transform -- uid: 8143 - type: RandomSpawner - components: - - pos: -11.5,42.5 - parent: 1 - type: Transform -- uid: 8144 - type: RandomSpawner - components: - - pos: -4.5,33.5 - parent: 1 - type: Transform -- uid: 8145 - type: RandomSpawner - components: - - pos: -0.5,30.5 - parent: 1 - type: Transform -- uid: 8146 - type: RandomSpawner - components: - - pos: 2.5,33.5 - parent: 1 - type: Transform -- uid: 8147 - type: RandomSpawner - components: - - pos: 2.5,37.5 - parent: 1 - type: Transform -- uid: 8148 - type: RandomSpawner - components: - - pos: 1.5,40.5 - parent: 1 - type: Transform -- uid: 8149 - type: RandomSpawner - components: - - pos: 0.5,36.5 - parent: 1 - type: Transform -- uid: 8150 - type: RandomSpawner - components: - - pos: 7.5,37.5 - parent: 1 - type: Transform -- uid: 8151 - type: RandomSpawner - components: - - pos: 11.5,34.5 - parent: 1 - type: Transform -- uid: 8152 - type: RandomSpawner - components: - - pos: 4.5,28.5 - parent: 1 - type: Transform -- uid: 8153 - type: RandomSpawner - components: - - pos: 2.5,24.5 - parent: 1 - type: Transform -- uid: 8154 - type: RandomSpawner - components: - - pos: 4.5,19.5 - parent: 1 - type: Transform -- uid: 8155 - type: RandomSpawner - components: - - pos: -1.5,16.5 - parent: 1 - type: Transform -- uid: 8156 - type: RandomSpawner - components: - - pos: 2.5,15.5 - parent: 1 - type: Transform -- uid: 8157 - type: RandomSpawner - components: - - pos: -1.5,20.5 - parent: 1 - type: Transform -- uid: 8158 - type: RandomSpawner - components: - - pos: -3.5,26.5 - parent: 1 - type: Transform -- uid: 8159 - type: RandomSpawner - components: - - pos: -1.5,22.5 - parent: 1 - type: Transform -- uid: 8160 - type: RandomSpawner - components: - - pos: 10.5,20.5 - parent: 1 - type: Transform -- uid: 8161 - type: RandomSpawner - components: - - pos: 7.5,15.5 - parent: 1 - type: Transform -- uid: 8162 - type: RandomSpawner - components: - - pos: 10.5,14.5 - parent: 1 - type: Transform -- uid: 8163 - type: RandomSpawner - components: - - pos: 7.5,12.5 - parent: 1 - type: Transform -- uid: 8164 - type: RandomSpawner - components: - - pos: 11.5,11.5 - parent: 1 - type: Transform -- uid: 8165 - type: RandomSpawner - components: - - pos: 9.5,23.5 - parent: 1 - type: Transform -- uid: 8166 - type: RandomSpawner - components: - - pos: 7.5,25.5 - parent: 1 - type: Transform -- uid: 8167 - type: RandomSpawner - components: - - pos: 8.5,29.5 - parent: 1 - type: Transform -- uid: 8168 - type: RandomSpawner - components: - - pos: 11.5,28.5 - parent: 1 - type: Transform -- uid: 8169 - type: RandomSpawner - components: - - pos: 14.5,30.5 - parent: 1 - type: Transform -- uid: 8170 - type: Table - components: - - pos: 20.5,32.5 - parent: 1 - type: Transform -- uid: 8171 - type: RandomSpawner - components: - - pos: 18.5,29.5 - parent: 1 - type: Transform -- uid: 8172 - type: RandomSpawner - components: - - pos: -8.5,33.5 - parent: 1 - type: Transform -- uid: 8173 - type: RandomSpawner - components: - - pos: -12.5,30.5 - parent: 1 - type: Transform -- uid: 8174 - type: RandomSpawner - components: - - pos: -7.5,27.5 - parent: 1 - type: Transform -- uid: 8175 - type: RandomSpawner - components: - - pos: -17.5,32.5 - parent: 1 - type: Transform -- uid: 8176 - type: RandomSpawner - components: - - pos: -11.5,26.5 - parent: 1 - type: Transform -- uid: 8177 - type: RandomSpawner - components: - - pos: -13.5,22.5 - parent: 1 - type: Transform -- uid: 8178 - type: RandomSpawner - components: - - pos: -11.5,19.5 - parent: 1 - type: Transform -- uid: 8179 - type: RandomSpawner - components: - - pos: -13.5,16.5 - parent: 1 - type: Transform -- uid: 8180 - type: RandomSpawner - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform -- uid: 8181 - type: RandomSpawner - components: - - pos: -13.5,9.5 - parent: 1 - type: Transform -- uid: 8182 - type: RandomSpawner - components: - - pos: -5.5,10.5 - parent: 1 - type: Transform -- uid: 8183 - type: RandomSpawner - components: - - pos: -4.5,15.5 - parent: 1 - type: Transform -- uid: 8184 - type: RandomSpawner - components: - - pos: -6.5,20.5 - parent: 1 - type: Transform -- uid: 8185 - type: RandomSpawner - components: - - pos: -7.5,24.5 - parent: 1 - type: Transform -- uid: 8186 - type: RandomSpawner - components: - - pos: 1.5,12.5 - parent: 1 - type: Transform -- uid: 8187 - type: RandomSpawner - components: - - pos: 6.5,9.5 - parent: 1 - type: Transform -- uid: 8188 - type: RandomSpawner - components: - - pos: 14.5,9.5 - parent: 1 - type: Transform -- uid: 8189 - type: RandomSpawner - components: - - pos: 13.5,16.5 - parent: 1 - type: Transform -- uid: 8190 - type: RandomSpawner - components: - - pos: 13.5,21.5 - parent: 1 - type: Transform -- uid: 8191 - type: SpeedLoaderMagnum - components: - - flags: InContainer - type: MetaData - - parent: 10861 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 8192 - type: RandomSpawner - components: - - pos: 19.5,12.5 - parent: 1 - type: Transform -- uid: 8193 - type: RandomSpawner - components: - - pos: 16.5,9.5 - parent: 1 - type: Transform -- uid: 8194 - type: RandomSpawner - components: - - pos: 13.5,2.5 - parent: 1 - type: Transform -- uid: 8195 - type: RandomSpawner - components: - - pos: 16.5,-1.5 - parent: 1 - type: Transform -- uid: 8196 - type: RandomSpawner - components: - - pos: 19.5,1.5 - parent: 1 - type: Transform -- uid: 8197 - type: RandomSpawner - components: - - pos: 19.5,-1.5 - parent: 1 - type: Transform -- uid: 8198 - type: RandomSpawner - components: - - pos: 7.5,-2.5 - parent: 1 - type: Transform -- uid: 8199 - type: RandomSpawner - components: - - pos: 8.5,1.5 - parent: 1 - type: Transform -- uid: 8200 - type: RandomSpawner - components: - - pos: 11.5,-0.5 - parent: 1 - type: Transform -- uid: 8201 - type: RandomSpawner - components: - - pos: -18.5,-2.5 - parent: 1 - type: Transform -- uid: 8202 - type: RandomSpawner - components: - - pos: -15.5,-4.5 - parent: 1 - type: Transform -- uid: 8203 - type: RandomSpawner - components: - - pos: -13.5,-2.5 - parent: 1 - type: Transform -- uid: 8204 - type: RandomSpawner - components: - - pos: -12.5,-5.5 - parent: 1 - type: Transform -- uid: 8205 - type: RandomSpawner - components: - - pos: -11.5,-7.5 - parent: 1 - type: Transform -- uid: 8206 - type: RandomSpawner - components: - - pos: -9.5,-1.5 - parent: 1 - type: Transform -- uid: 8207 - type: RandomSpawner - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform -- uid: 8208 - type: RandomSpawner - components: - - pos: -5.5,-1.5 - parent: 1 - type: Transform -- uid: 8209 - type: SpawnPointBotanist - components: - - pos: -41.5,46.5 - parent: 1 - type: Transform -- uid: 8210 - type: RandomSpawner - components: - - pos: -4.5,-4.5 - parent: 1 - type: Transform -- uid: 8211 - type: RandomSpawner - components: - - pos: -1.5,-1.5 - parent: 1 - type: Transform -- uid: 8212 - type: SpawnPointBotanist - components: - - pos: -43.5,42.5 - parent: 1 - type: Transform -- uid: 8213 - type: RandomSpawner - components: - - pos: -3.5,1.5 - parent: 1 - type: Transform -- uid: 8214 - type: RandomSpawner - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform -- uid: 8215 - type: RandomSpawner - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform -- uid: 8216 - type: RandomSpawner - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform -- uid: 8217 - type: RandomSpawner - components: - - pos: -4.5,-12.5 - parent: 1 - type: Transform -- uid: 8218 - type: RandomSpawner - components: - - pos: -11.5,-11.5 - parent: 1 - type: Transform -- uid: 8219 - type: RandomSpawner - components: - - pos: 0.5,-8.5 - parent: 1 - type: Transform -- uid: 8220 - type: RandomSpawner - components: - - pos: 4.5,-10.5 - parent: 1 - type: Transform -- uid: 8221 - type: RandomSpawner - components: - - pos: 2.5,-15.5 - parent: 1 - type: Transform -- uid: 8222 - type: RandomSpawner - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform -- uid: 8223 - type: RandomSpawner - components: - - pos: 3.5,-5.5 - parent: 1 - type: Transform -- uid: 8224 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 19.5,-7.5 - parent: 1 - type: Transform -- uid: 8225 - type: RandomSpawner - components: - - pos: 16.5,-5.5 - parent: 1 - type: Transform -- uid: 8226 - type: RandomSpawner - components: - - pos: 19.5,-4.5 - parent: 1 - type: Transform -- uid: 8227 - type: RandomSpawner - components: - - pos: 24.5,-5.5 - parent: 1 - type: Transform -- uid: 8228 - type: RandomSpawner - components: - - pos: 27.5,-2.5 - parent: 1 - type: Transform -- uid: 8229 - type: RandomSpawner - components: - - pos: 29.5,-1.5 - parent: 1 - type: Transform -- uid: 8230 - type: RandomSpawner - components: - - pos: 19.5,-8.5 - parent: 1 - type: Transform -- uid: 8231 - type: RandomSpawner - components: - - pos: 24.5,-7.5 - parent: 1 - type: Transform -- uid: 8232 - type: RandomSpawner - components: - - pos: 29.5,-8.5 - parent: 1 - type: Transform -- uid: 8233 - type: RandomSpawner - components: - - pos: 15.5,-11.5 - parent: 1 - type: Transform -- uid: 8234 - type: RandomSpawner - components: - - pos: 13.5,-8.5 - parent: 1 - type: Transform -- uid: 8235 - type: RandomSpawner - components: - - pos: -8.5,8.5 - parent: 1 - type: Transform -- uid: 8236 - type: RandomSpawner - components: - - pos: -8.5,15.5 - parent: 1 - type: Transform -- uid: 8237 - type: RandomSpawner - components: - - pos: -7.5,11.5 - parent: 1 - type: Transform -- uid: 8238 - type: RandomSpawner - components: - - pos: -15.5,14.5 - parent: 1 - type: Transform -- uid: 8239 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,8.5 - parent: 1 - type: Transform -- uid: 8240 - type: RandomSpawner - components: - - pos: -15.5,17.5 - parent: 1 - type: Transform -- uid: 8241 - type: RandomSpawner - components: - - pos: -16.5,20.5 - parent: 1 - type: Transform -- uid: 8242 - type: RandomSpawner - components: - - pos: -20.5,16.5 - parent: 1 - type: Transform -- uid: 8243 - type: RandomSpawner - components: - - pos: -19.5,11.5 - parent: 1 - type: Transform -- uid: 8244 - type: RandomSpawner - components: - - pos: -20.5,12.5 - parent: 1 - type: Transform -- uid: 8245 - type: RandomSpawner - components: - - pos: -18.5,19.5 - parent: 1 - type: Transform -- uid: 8246 - type: RandomSpawner - components: - - pos: -25.5,21.5 - parent: 1 - type: Transform -- uid: 8247 - type: RandomSpawner - components: - - pos: -19.5,24.5 - parent: 1 - type: Transform -- uid: 8248 - type: RandomSpawner - components: - - pos: -19.5,27.5 - parent: 1 - type: Transform -- uid: 8249 - type: RandomSpawner - components: - - pos: -15.5,28.5 - parent: 1 - type: Transform -- uid: 8250 - type: RandomSpawner - components: - - pos: -16.5,25.5 - parent: 1 - type: Transform -- uid: 8251 - type: RandomSpawner - components: - - pos: -15.5,23.5 - parent: 1 - type: Transform -- uid: 8252 - type: RandomSpawner - components: - - pos: 1.5,8.5 - parent: 1 - type: Transform -- uid: 8253 - type: RandomSpawner - components: - - pos: -1.5,9.5 - parent: 1 - type: Transform -- uid: 8254 - type: RandomSpawner - components: - - pos: -28.5,8.5 - parent: 1 - type: Transform -- uid: 8255 - type: RandomSpawner - components: - - pos: -24.5,10.5 - parent: 1 - type: Transform -- uid: 8256 - type: RandomSpawner - components: - - pos: -27.5,12.5 - parent: 1 - type: Transform -- uid: 8257 - type: RandomSpawner - components: - - pos: -22.5,12.5 - parent: 1 - type: Transform -- uid: 8258 - type: RandomSpawner - components: - - pos: -25.5,16.5 - parent: 1 - type: Transform -- uid: 8259 - type: RandomSpawner - components: - - pos: -22.5,17.5 - parent: 1 - type: Transform -- uid: 8260 - type: RandomSpawner - components: - - pos: -28.5,18.5 - parent: 1 - type: Transform -- uid: 8261 - type: RandomSpawner - components: - - pos: -33.5,9.5 - parent: 1 - type: Transform -- uid: 8262 - type: RandomSpawner - components: - - pos: -30.5,13.5 - parent: 1 - type: Transform -- uid: 8263 - type: RandomSpawner - components: - - pos: -32.5,16.5 - parent: 1 - type: Transform -- uid: 8264 - type: RandomSpawner - components: - - pos: -34.5,19.5 - parent: 1 - type: Transform -- uid: 8265 - type: RandomSpawner - components: - - pos: -32.5,20.5 - parent: 1 - type: Transform -- uid: 8266 - type: RandomSpawner - components: - - pos: -29.5,21.5 - parent: 1 - type: Transform -- uid: 8267 - type: RandomSpawner - components: - - pos: -28.5,24.5 - parent: 1 - type: Transform -- uid: 8268 - type: RandomSpawner - components: - - pos: -33.5,25.5 - parent: 1 - type: Transform -- uid: 8269 - type: RandomSpawner - components: - - pos: -32.5,28.5 - parent: 1 - type: Transform -- uid: 8270 - type: RandomSpawner - components: - - pos: -36.5,24.5 - parent: 1 - type: Transform -- uid: 8271 - type: RandomSpawner - components: - - pos: -30.5,29.5 - parent: 1 - type: Transform -- uid: 8272 - type: RandomSpawner - components: - - pos: -24.5,27.5 - parent: 1 - type: Transform -- uid: 8273 - type: RandomSpawner - components: - - pos: -26.5,28.5 - parent: 1 - type: Transform -- uid: 8274 - type: RandomSpawner - components: - - pos: -27.5,36.5 - parent: 1 - type: Transform -- uid: 8275 - type: RandomSpawner - components: - - pos: -42.5,27.5 - parent: 1 - type: Transform -- uid: 8276 - type: RandomSpawner - components: - - pos: -40.5,24.5 - parent: 1 - type: Transform -- uid: 8277 - type: RandomSpawner - components: - - pos: -44.5,27.5 - parent: 1 - type: Transform -- uid: 8278 - type: Firelock - components: - - pos: -30.5,14.5 - parent: 1 - type: Transform -- uid: 8279 - type: RandomSpawner - components: - - pos: -44.5,18.5 - parent: 1 - type: Transform -- uid: 8280 - type: RandomSpawner - components: - - pos: -41.5,18.5 - parent: 1 - type: Transform -- uid: 8281 - type: RandomSpawner - components: - - pos: -42.5,21.5 - parent: 1 - type: Transform -- uid: 8282 - type: RandomSpawner - components: - - pos: -50.5,21.5 - parent: 1 - type: Transform -- uid: 8283 - type: RandomSpawner - components: - - pos: -44.5,10.5 - parent: 1 - type: Transform -- uid: 8284 - type: RandomSpawner - components: - - pos: -48.5,14.5 - parent: 1 - type: Transform -- uid: 8285 - type: RandomSpawner - components: - - pos: -41.5,10.5 - parent: 1 - type: Transform -- uid: 8286 - type: RandomSpawner - components: - - pos: -41.5,15.5 - parent: 1 - type: Transform -- uid: 8287 - type: RandomSpawner - components: - - pos: -53.5,9.5 - parent: 1 - type: Transform -- uid: 8288 - type: RandomSpawner - components: - - pos: -49.5,10.5 - parent: 1 - type: Transform -- uid: 8289 - type: RandomSpawner - components: - - pos: -49.5,12.5 - parent: 1 - type: Transform -- uid: 8290 - type: RandomSpawner - components: - - pos: -46.5,10.5 - parent: 1 - type: Transform -- uid: 8291 - type: RandomSpawner - components: - - pos: -53.5,1.5 - parent: 1 - type: Transform -- uid: 8292 - type: RandomSpawner - components: - - pos: -48.5,1.5 - parent: 1 - type: Transform -- uid: 8293 - type: RandomSpawner - components: - - pos: -48.5,-3.5 - parent: 1 - type: Transform -- uid: 8294 - type: RandomSpawner - components: - - pos: -48.5,-7.5 - parent: 1 - type: Transform -- uid: 8295 - type: RandomSpawner - components: - - pos: -51.5,-9.5 - parent: 1 - type: Transform -- uid: 8296 - type: RandomSpawner - components: - - pos: -48.5,-10.5 - parent: 1 - type: Transform -- uid: 8297 - type: RandomSpawner - components: - - pos: -56.5,9.5 - parent: 1 - type: Transform -- uid: 8298 - type: RandomSpawner - components: - - pos: -57.5,14.5 - parent: 1 - type: Transform -- uid: 8299 - type: RandomSpawner - components: - - pos: -57.5,19.5 - parent: 1 - type: Transform -- uid: 8300 - type: RandomSpawner - components: - - pos: -56.5,24.5 - parent: 1 - type: Transform -- uid: 8301 - type: RandomSpawner - components: - - pos: -58.5,26.5 - parent: 1 - type: Transform -- uid: 8302 - type: RandomSpawner - components: - - pos: -57.5,30.5 - parent: 1 - type: Transform -- uid: 8303 - type: RandomSpawner - components: - - pos: -54.5,32.5 - parent: 1 - type: Transform -- uid: 8304 - type: RandomSpawner - components: - - pos: -49.5,32.5 - parent: 1 - type: Transform -- uid: 8305 - type: RandomSpawner - components: - - pos: -45.5,32.5 - parent: 1 - type: Transform -- uid: 8306 - type: RandomSpawner - components: - - pos: -41.5,31.5 - parent: 1 - type: Transform -- uid: 8307 - type: RandomSpawner - components: - - pos: -41.5,33.5 - parent: 1 - type: Transform -- uid: 8308 - type: RandomSpawner - components: - - pos: -48.5,35.5 - parent: 1 - type: Transform -- uid: 8309 - type: RandomSpawner - components: - - pos: -46.5,40.5 - parent: 1 - type: Transform -- uid: 8310 - type: RandomSpawner - components: - - pos: -47.5,44.5 - parent: 1 - type: Transform -- uid: 8311 - type: RandomSpawner - components: - - pos: -49.5,46.5 - parent: 1 - type: Transform -- uid: 8312 - type: RandomSpawner - components: - - pos: -46.5,51.5 - parent: 1 - type: Transform -- uid: 8313 - type: RandomSpawner - components: - - pos: -54.5,47.5 - parent: 1 - type: Transform -- uid: 8314 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: -69.5,7.5 - parent: 1 - type: Transform -- uid: 8315 - type: RandomSpawner - components: - - pos: -57.5,44.5 - parent: 1 - type: Transform -- uid: 8316 - type: RandomSpawner - components: - - pos: -57.5,40.5 - parent: 1 - type: Transform -- uid: 8317 - type: RandomSpawner - components: - - pos: -56.5,39.5 - parent: 1 - type: Transform -- uid: 8318 - type: RandomSpawner - components: - - pos: -58.5,36.5 - parent: 1 - type: Transform -- uid: 8319 - type: RandomSpawner - components: - - pos: -52.5,43.5 - parent: 1 - type: Transform -- uid: 8320 - type: RandomSpawner - components: - - pos: -44.5,51.5 - parent: 1 - type: Transform -- uid: 8321 - type: RandomSpawner - components: - - pos: -40.5,55.5 - parent: 1 - type: Transform -- uid: 8322 - type: RandomSpawner - components: - - pos: -35.5,55.5 - parent: 1 - type: Transform -- uid: 8323 - type: RandomSpawner - components: - - pos: -32.5,52.5 - parent: 1 - type: Transform -- uid: 8324 - type: WallReinforced - components: - - pos: -73.5,13.5 - parent: 1 - type: Transform -- uid: 8325 - type: WallReinforced - components: - - pos: -73.5,12.5 - parent: 1 - type: Transform -- uid: 8326 - type: WallReinforced - components: - - pos: -73.5,11.5 - parent: 1 - type: Transform -- uid: 8327 - type: RandomSpawner - components: - - pos: -27.5,50.5 - parent: 1 - type: Transform -- uid: 8328 - type: RandomSpawner - components: - - pos: -28.5,54.5 - parent: 1 - type: Transform -- uid: 8329 - type: RandomSpawner - components: - - pos: -20.5,51.5 - parent: 1 - type: Transform -- uid: 8330 - type: RandomSpawner - components: - - pos: -25.5,47.5 - parent: 1 - type: Transform -- uid: 8331 - type: RandomSpawner - components: - - pos: -25.5,39.5 - parent: 1 - type: Transform -- uid: 8332 - type: RandomSpawner - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform -- uid: 8333 - type: RandomSpawner - components: - - pos: -24.5,36.5 - parent: 1 - type: Transform -- uid: 8334 - type: RandomSpawner - components: - - pos: -22.5,39.5 - parent: 1 - type: Transform -- uid: 8335 - type: RandomSpawner - components: - - pos: -20.5,41.5 - parent: 1 - type: Transform -- uid: 8336 - type: RandomSpawner - components: - - pos: -21.5,44.5 - parent: 1 - type: Transform -- uid: 8337 - type: RandomSpawner - components: - - pos: -20.5,48.5 - parent: 1 - type: Transform -- uid: 8338 - type: RandomSpawner - components: - - pos: -21.5,31.5 - parent: 1 - type: Transform -- uid: 8339 - type: RandomSpawner - components: - - pos: -25.5,32.5 - parent: 1 - type: Transform -- uid: 8340 - type: RandomSpawner - components: - - pos: -20.5,35.5 - parent: 1 - type: Transform -- uid: 8341 - type: RandomSpawner - components: - - pos: -31.5,33.5 - parent: 1 - type: Transform -- uid: 8342 - type: RandomSpawner - components: - - pos: -34.5,31.5 - parent: 1 - type: Transform -- uid: 8343 - type: RandomSpawner - components: - - pos: -51.5,24.5 - parent: 1 - type: Transform -- uid: 8344 - type: RandomSpawner - components: - - pos: -49.5,27.5 - parent: 1 - type: Transform -- uid: 8345 - type: RandomSpawner - components: - - pos: -53.5,28.5 - parent: 1 - type: Transform -- uid: 8346 - type: RandomSpawner - components: - - pos: -33.5,-3.5 - parent: 1 - type: Transform -- uid: 8347 - type: CableApcExtension - components: - - pos: -56.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8348 - type: CableApcExtension - components: - - pos: -56.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8349 - type: CableApcExtension - components: - - pos: -56.5,53.5 - parent: 1 - type: Transform -- uid: 8350 - type: SurveillanceWirelessCameraMovableEntertainment - components: - - rot: 3.141592653589793 rad - pos: -29.5,23.5 - parent: 1 - type: Transform -- uid: 8351 - type: WallmountTelevision - components: - - pos: -43.5,40.5 - parent: 1 - type: Transform -- uid: 8352 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -45.5,37.5 - parent: 1 - type: Transform -- uid: 8353 - type: PoweredSmallLight - components: - - pos: -51.5,68.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8354 - type: WeaponRifleLecter - components: - - pos: -41.519764,63.624336 - parent: 1 - type: Transform -- uid: 8355 - type: WeaponRifleLecter - components: - - pos: -41.488514,63.38996 - parent: 1 - type: Transform -- uid: 8356 - type: WeaponRifleLecter - components: - - pos: -41.488514,63.13996 - parent: 1 - type: Transform -- uid: 8357 - type: WeaponLaserCarbine - components: - - pos: -43.394764,61.749336 - parent: 1 - type: Transform -- uid: 8358 - type: WeaponLaserCarbine - components: - - pos: -43.31664,61.63996 - parent: 1 - type: Transform -- uid: 8359 - type: MagazinePistol - components: - - pos: -42.709877,61.49391 - parent: 1 - type: Transform -- uid: 8360 - type: MagazineRifle - components: - - pos: -41.301014,62.60871 - parent: 1 - type: Transform -- uid: 8361 - type: MagazineRifle - components: - - pos: -41.363514,62.60871 - parent: 1 - type: Transform -- uid: 8362 - type: MagazineRifle - components: - - pos: -41.44164,62.60871 - parent: 1 - type: Transform -- uid: 8363 - type: MagazineRifle - components: - - pos: -41.56664,62.60871 - parent: 1 - type: Transform -- uid: 8364 - type: MagazinePistol - components: - - pos: -42.491127,61.49391 - parent: 1 - type: Transform -- uid: 8365 - type: MagazinePistol - components: - - pos: -42.631752,61.49391 - parent: 1 - type: Transform -- uid: 8366 - type: MagazineRifleRubber - components: - - pos: -41.301014,62.13996 - parent: 1 - type: Transform -- uid: 8367 - type: MagazineRifleRubber - components: - - pos: -41.363514,62.13996 - parent: 1 - type: Transform -- uid: 8368 - type: MagazineRifleRubber - components: - - pos: -41.47289,62.13996 - parent: 1 - type: Transform -- uid: 8369 - type: MagazineRifleRubber - components: - - pos: -41.582264,62.13996 - parent: 1 - type: Transform -- uid: 8370 - type: WeaponShotgunKammerer - components: - - pos: -41.69164,61.686836 - parent: 1 - type: Transform -- uid: 8371 - type: WeaponShotgunKammerer - components: - - pos: -41.62914,61.561836 - parent: 1 - type: Transform -- uid: 8372 - type: MagazinePistol - components: - - pos: -42.381752,61.49391 - parent: 1 - type: Transform -- uid: 8373 - type: WeaponPistolMk58 - components: - - pos: -42.53539,61.624336 - parent: 1 - type: Transform -- uid: 8374 - type: WeaponPistolMk58 - components: - - pos: -42.426014,61.54621 - parent: 1 - type: Transform -- uid: 8375 - type: MagazinePistol - components: - - pos: -42.288002,61.49391 - parent: 1 - type: Transform -- uid: 8376 - type: BoxLethalshot - components: - - pos: -41.582264,61.530586 - parent: 1 - type: Transform -- uid: 8377 - type: BoxLethalshot - components: - - pos: -41.582264,61.530586 - parent: 1 - type: Transform -- uid: 8378 - type: CableApcExtension - components: - - pos: -58.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8379 - type: CableApcExtension - components: - - pos: -57.5,56.5 - parent: 1 - type: Transform -- uid: 8380 - type: CableApcExtension - components: - - pos: -56.5,56.5 - parent: 1 - type: Transform -- uid: 8381 - type: CableApcExtension - components: - - pos: -55.5,56.5 - parent: 1 - type: Transform -- uid: 8382 - type: CableApcExtension - components: - - pos: -54.5,56.5 - parent: 1 - type: Transform -- uid: 8383 - type: CableApcExtension - components: - - pos: -54.5,55.5 - parent: 1 - type: Transform -- uid: 8384 - type: CableApcExtension - components: - - pos: -54.5,54.5 - parent: 1 - type: Transform -- uid: 8385 - type: CableApcExtension - components: - - pos: -50.5,49.5 - parent: 1 - type: Transform -- uid: 8386 - type: CableApcExtension - components: - - pos: -50.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8387 - type: CableApcExtension - components: - - pos: -51.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8388 - type: CableApcExtension - components: - - pos: -53.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8389 - type: CableApcExtension - components: - - pos: -53.5,53.5 - parent: 1 - type: Transform -- uid: 8390 - type: CableApcExtension - components: - - pos: -55.5,54.5 - parent: 1 - type: Transform -- uid: 8391 - type: CableApcExtension - components: - - pos: -56.5,54.5 - parent: 1 - type: Transform -- uid: 8392 - type: CableApcExtension - components: - - pos: -57.5,54.5 - parent: 1 - type: Transform -- uid: 8393 - type: CableApcExtension - components: - - pos: -58.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8394 - type: CableApcExtension - components: - - pos: -59.5,54.5 - parent: 1 - type: Transform -- uid: 8395 - type: CableApcExtension - components: - - pos: -60.5,54.5 - parent: 1 - type: Transform -- uid: 8396 - type: CableApcExtension - components: - - pos: -61.5,54.5 - parent: 1 - type: Transform -- uid: 8397 - type: CableApcExtension - components: - - pos: -62.5,54.5 - parent: 1 - type: Transform -- uid: 8398 - type: CableApcExtension - components: - - pos: -63.5,54.5 - parent: 1 - type: Transform -- uid: 8399 - type: CableApcExtension - components: - - pos: -64.5,54.5 - parent: 1 - type: Transform -- uid: 8400 - type: CableApcExtension - components: - - pos: -61.5,53.5 - parent: 1 - type: Transform -- uid: 8401 - type: CableApcExtension - components: - - pos: -61.5,52.5 - parent: 1 - type: Transform -- uid: 8402 - type: CableApcExtension - components: - - pos: -61.5,51.5 - parent: 1 - type: Transform -- uid: 8403 - type: CableApcExtension - components: - - pos: -61.5,50.5 - parent: 1 - type: Transform -- uid: 8404 - type: CableApcExtension - components: - - pos: -53.5,54.5 - parent: 1 - type: Transform -- uid: 8405 - type: CableApcExtension - components: - - pos: -52.5,54.5 - parent: 1 - type: Transform -- uid: 8406 - type: CableApcExtension - components: - - pos: -51.5,54.5 - parent: 1 - type: Transform -- uid: 8407 - type: CableApcExtension - components: - - pos: -50.5,54.5 - parent: 1 - type: Transform -- uid: 8408 - type: CableApcExtension - components: - - pos: -49.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8409 - type: CableApcExtension - components: - - pos: -48.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8410 - type: CableApcExtension - components: - - pos: -47.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8411 - type: CableApcExtension - components: - - pos: -47.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8412 - type: CableApcExtension - components: - - pos: -47.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8413 - type: CableApcExtension - components: - - pos: -47.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8414 - type: CableApcExtension - components: - - pos: -47.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8415 - type: CableApcExtension - components: - - pos: -50.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8416 - type: CableApcExtension - components: - - pos: -50.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8417 - type: CableApcExtension - components: - - pos: -50.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8418 - type: CableApcExtension - components: - - pos: -50.5,53.5 - parent: 1 - type: Transform -- uid: 8419 - type: CableApcExtension - components: - - pos: -53.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8420 - type: CableApcExtension - components: - - pos: -53.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8421 - type: CableApcExtension - components: - - pos: -53.5,49.5 - parent: 1 - type: Transform -- uid: 8422 - type: CableApcExtension - components: - - pos: -54.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8423 - type: ReinforcedWindow - components: - - pos: -57.5,48.5 - parent: 1 - type: Transform -- uid: 8424 - type: CableApcExtension - components: - - pos: -57.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8425 - type: CableApcExtension - components: - - pos: -56.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8426 - type: CableApcExtension - components: - - pos: -48.5,43.5 - parent: 1 - type: Transform -- uid: 8427 - type: CableApcExtension - components: - - pos: -47.5,43.5 - parent: 1 - type: Transform -- uid: 8428 - type: CableApcExtension - components: - - pos: -47.5,42.5 - parent: 1 - type: Transform -- uid: 8429 - type: CableApcExtension - components: - - pos: -47.5,49.5 - parent: 1 - type: Transform -- uid: 8430 - type: CableApcExtension - components: - - pos: -56.5,50.5 - parent: 1 - type: Transform -- uid: 8431 - type: CableApcExtension - components: - - pos: -56.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8432 - type: CableApcExtension - components: - - pos: -53.5,56.5 - parent: 1 - type: Transform -- uid: 8433 - type: CableApcExtension - components: - - pos: -52.5,56.5 - parent: 1 - type: Transform -- uid: 8434 - type: CableApcExtension - components: - - pos: -51.5,56.5 - parent: 1 - type: Transform -- uid: 8435 - type: CableApcExtension - components: - - pos: -51.5,57.5 - parent: 1 - type: Transform -- uid: 8436 - type: CableApcExtension - components: - - pos: -51.5,58.5 - parent: 1 - type: Transform -- uid: 8437 - type: CableApcExtension - components: - - pos: -58.5,57.5 - parent: 1 - type: Transform -- uid: 8438 - type: CableApcExtension - components: - - pos: -59.5,57.5 - parent: 1 - type: Transform -- uid: 8439 - type: CableApcExtension - components: - - pos: -60.5,57.5 - parent: 1 - type: Transform -- uid: 8440 - type: CableApcExtension - components: - - pos: -49.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8441 - type: CableApcExtension - components: - - pos: -50.5,63.5 - parent: 1 - type: Transform -- uid: 8442 - type: CableApcExtension - components: - - pos: -51.5,63.5 - parent: 1 - type: Transform -- uid: 8443 - type: CableApcExtension - components: - - pos: -51.5,62.5 - parent: 1 - type: Transform -- uid: 8444 - type: CableApcExtension - components: - - pos: -51.5,61.5 - parent: 1 - type: Transform -- uid: 8445 - type: CableApcExtension - components: - - pos: -52.5,61.5 - parent: 1 - type: Transform -- uid: 8446 - type: CableApcExtension - components: - - pos: -53.5,61.5 - parent: 1 - type: Transform -- uid: 8447 - type: CableApcExtension - components: - - pos: -54.5,61.5 - parent: 1 - type: Transform -- uid: 8448 - type: CableApcExtension - components: - - pos: -55.5,61.5 - parent: 1 - type: Transform -- uid: 8449 - type: CableApcExtension - components: - - pos: -56.5,61.5 - parent: 1 - type: Transform -- uid: 8450 - type: CableApcExtension - components: - - pos: -57.5,61.5 - parent: 1 - type: Transform -- uid: 8451 - type: CableApcExtension - components: - - pos: -58.5,61.5 - parent: 1 - type: Transform -- uid: 8452 - type: CableApcExtension - components: - - pos: -59.5,61.5 - parent: 1 - type: Transform -- uid: 8453 - type: CableApcExtension - components: - - pos: -60.5,61.5 - parent: 1 - type: Transform -- uid: 8454 - type: CableApcExtension - components: - - pos: -61.5,61.5 - parent: 1 - type: Transform -- uid: 8455 - type: CableApcExtension - components: - - pos: -61.5,60.5 - parent: 1 - type: Transform -- uid: 8456 - type: CableApcExtension - components: - - pos: -62.5,60.5 - parent: 1 - type: Transform -- uid: 8457 - type: CableApcExtension - components: - - pos: -63.5,60.5 - parent: 1 - type: Transform -- uid: 8458 - type: CableApcExtension - components: - - pos: -63.5,59.5 - parent: 1 - type: Transform -- uid: 8459 - type: CableApcExtension - components: - - pos: -63.5,58.5 - parent: 1 - type: Transform -- uid: 8460 - type: CableApcExtension - components: - - pos: -50.5,61.5 - parent: 1 - type: Transform -- uid: 8461 - type: CableApcExtension - components: - - pos: -49.5,61.5 - parent: 1 - type: Transform -- uid: 8462 - type: CableApcExtension - components: - - pos: -48.5,61.5 - parent: 1 - type: Transform -- uid: 8463 - type: CableApcExtension - components: - - pos: -47.5,61.5 - parent: 1 - type: Transform -- uid: 8464 - type: CableApcExtension - components: - - pos: -47.5,60.5 - parent: 1 - type: Transform -- uid: 8465 - type: CableApcExtension - components: - - pos: -47.5,59.5 - parent: 1 - type: Transform -- uid: 8466 - type: CableApcExtension - components: - - pos: -47.5,58.5 - parent: 1 - type: Transform -- uid: 8467 - type: CableApcExtension - components: - - pos: -47.5,57.5 - parent: 1 - type: Transform -- uid: 8468 - type: CableApcExtension - components: - - pos: -51.5,64.5 - parent: 1 - type: Transform -- uid: 8469 - type: CableApcExtension - components: - - pos: -51.5,65.5 - parent: 1 - type: Transform -- uid: 8470 - type: CableApcExtension - components: - - pos: -50.5,65.5 - parent: 1 - type: Transform -- uid: 8471 - type: CableApcExtension - components: - - pos: -49.5,65.5 - parent: 1 - type: Transform -- uid: 8472 - type: CableApcExtension - components: - - pos: -48.5,65.5 - parent: 1 - type: Transform -- uid: 8473 - type: CableApcExtension - components: - - pos: -47.5,65.5 - parent: 1 - type: Transform -- uid: 8474 - type: CableHV - components: - - pos: -58.5,32.5 - parent: 1 - type: Transform -- uid: 8475 - type: CableApcExtension - components: - - pos: -46.5,65.5 - parent: 1 - type: Transform -- uid: 8476 - type: CableApcExtension - components: - - pos: -45.5,65.5 - parent: 1 - type: Transform -- uid: 8477 - type: CableApcExtension - components: - - pos: -44.5,65.5 - parent: 1 - type: Transform -- uid: 8478 - type: CableApcExtension - components: - - pos: -43.5,65.5 - parent: 1 - type: Transform -- uid: 8479 - type: CableApcExtension - components: - - pos: -42.5,65.5 - parent: 1 - type: Transform -- uid: 8480 - type: CableApcExtension - components: - - pos: -42.5,64.5 - parent: 1 - type: Transform -- uid: 8481 - type: CableApcExtension - components: - - pos: -42.5,63.5 - parent: 1 - type: Transform -- uid: 8482 - type: CableApcExtension - components: - - pos: -42.5,62.5 - parent: 1 - type: Transform -- uid: 8483 - type: CableApcExtension - components: - - pos: -52.5,65.5 - parent: 1 - type: Transform -- uid: 8484 - type: CableApcExtension - components: - - pos: -52.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8485 - type: CableApcExtension - components: - - pos: -52.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8486 - type: CableApcExtension - components: - - pos: -52.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8487 - type: CableApcExtension - components: - - pos: -52.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8488 - type: CableApcExtension - components: - - pos: -50.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8489 - type: CableApcExtension - components: - - pos: -50.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8490 - type: CableApcExtension - components: - - pos: -50.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8491 - type: CableApcExtension - components: - - pos: -50.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8492 - type: CableApcExtension - components: - - pos: -49.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8493 - type: CableApcExtension - components: - - pos: -48.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8494 - type: CableApcExtension - components: - - pos: -47.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8495 - type: CableApcExtension - components: - - pos: -55.5,62.5 - parent: 1 - type: Transform -- uid: 8496 - type: CableApcExtension - components: - - pos: -55.5,63.5 - parent: 1 - type: Transform -- uid: 8497 - type: CableApcExtension - components: - - pos: -55.5,64.5 - parent: 1 - type: Transform -- uid: 8498 - type: CableApcExtension - components: - - pos: -59.5,62.5 - parent: 1 - type: Transform -- uid: 8499 - type: CableApcExtension - components: - - pos: -59.5,63.5 - parent: 1 - type: Transform -- uid: 8500 - type: CableApcExtension - components: - - pos: -59.5,64.5 - parent: 1 - type: Transform -- uid: 8501 - type: CableApcExtension - components: - - pos: -59.5,65.5 - parent: 1 - type: Transform -- uid: 8502 - type: CableApcExtension - components: - - pos: -58.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8503 - type: CableApcExtension - components: - - pos: -59.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8504 - type: CableHV - components: - - pos: -58.5,18.5 - parent: 1 - type: Transform -- uid: 8505 - type: CableHV - components: - - pos: -57.5,18.5 - parent: 1 - type: Transform -- uid: 8506 - type: CableHV - components: - - pos: -57.5,19.5 - parent: 1 - type: Transform -- uid: 8507 - type: CableHV - components: - - pos: -57.5,20.5 - parent: 1 - type: Transform -- uid: 8508 - type: CableHV - components: - - pos: -57.5,21.5 - parent: 1 - type: Transform -- uid: 8509 - type: CableHV - components: - - pos: -57.5,22.5 - parent: 1 - type: Transform -- uid: 8510 - type: CableHV - components: - - pos: -57.5,23.5 - parent: 1 - type: Transform -- uid: 8511 - type: CableHV - components: - - pos: -57.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8512 - type: CableHV - components: - - pos: -57.5,25.5 - parent: 1 - type: Transform -- uid: 8513 - type: CableHV - components: - - pos: -57.5,26.5 - parent: 1 - type: Transform -- uid: 8514 - type: CableHV - components: - - pos: -57.5,27.5 - parent: 1 - type: Transform -- uid: 8515 - type: CableHV - components: - - pos: -57.5,28.5 - parent: 1 - type: Transform -- uid: 8516 - type: CableHV - components: - - pos: -57.5,29.5 - parent: 1 - type: Transform -- uid: 8517 - type: CableHV - components: - - pos: -57.5,30.5 - parent: 1 - type: Transform -- uid: 8518 - type: CableHV - components: - - pos: -57.5,31.5 - parent: 1 - type: Transform -- uid: 8519 - type: CableApcExtension - components: - - pos: -60.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8520 - type: CableApcExtension - components: - - pos: -61.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8521 - type: CableApcExtension - components: - - pos: -58.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8522 - type: CableApcExtension - components: - - pos: -56.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8523 - type: CableApcExtension - components: - - pos: -54.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8524 - type: CableApcExtension - components: - - pos: -53.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8525 - type: CableApcExtension - components: - - pos: -55.5,65.5 - parent: 1 - type: Transform -- uid: 8526 - type: CableApcExtension - components: - - pos: -53.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8527 - type: CableApcExtension - components: - - pos: -53.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8528 - type: CableApcExtension - components: - - pos: -56.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8529 - type: CableApcExtension - components: - - pos: -55.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8530 - type: CableApcExtension - components: - - pos: -54.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8531 - type: CableApcExtension - components: - - pos: -48.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8532 - type: CableApcExtension - components: - - pos: -47.5,63.5 - parent: 1 - type: Transform -- uid: 8533 - type: CableApcExtension - components: - - pos: -46.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8534 - type: CableApcExtension - components: - - pos: -55.5,57.5 - parent: 1 - type: Transform -- uid: 8535 - type: CableApcExtension - components: - - pos: -55.5,58.5 - parent: 1 - type: Transform -- uid: 8536 - type: CableApcExtension - components: - - pos: -55.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8537 - type: CableApcExtension - components: - - pos: -56.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8538 - type: CableApcExtension - components: - - pos: -54.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8539 - type: CableApcExtension - components: - - pos: -47.5,56.5 - parent: 1 - type: Transform -- uid: 8540 - type: CableApcExtension - components: - - pos: -48.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8541 - type: CableApcExtension - components: - - pos: -46.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8542 - type: FirelockGlass - components: - - pos: -53.5,61.5 - parent: 1 - type: Transform -- uid: 8543 - type: FirelockGlass - components: - - pos: -53.5,60.5 - parent: 1 - type: Transform -- uid: 8544 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -52.5,58.5 - parent: 1 - type: Transform -- uid: 8545 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -50.5,58.5 - parent: 1 - type: Transform -- uid: 8546 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -48.5,55.5 - parent: 1 - type: Transform -- uid: 8547 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -48.5,53.5 - parent: 1 - type: Transform -- uid: 8548 - type: CableHV - components: - - pos: -57.5,17.5 - parent: 1 - type: Transform -- uid: 8549 - type: CableHV - components: - - pos: -57.5,16.5 - parent: 1 - type: Transform -- uid: 8550 - type: CableHV - components: - - pos: -57.5,15.5 - parent: 1 - type: Transform -- uid: 8551 - type: CableHV - components: - - pos: -57.5,14.5 - parent: 1 - type: Transform -- uid: 8552 - type: CableHV - components: - - pos: -57.5,13.5 - parent: 1 - type: Transform -- uid: 8553 - type: CableHV - components: - - pos: -57.5,12.5 - parent: 1 - type: Transform -- uid: 8554 - type: CableHV - components: - - pos: -57.5,11.5 - parent: 1 - type: Transform -- uid: 8555 - type: CableHV - components: - - pos: -57.5,10.5 - parent: 1 - type: Transform -- uid: 8556 - type: CableHV - components: - - pos: -57.5,9.5 - parent: 1 - type: Transform -- uid: 8557 - type: CableHV - components: - - pos: -57.5,8.5 - parent: 1 - type: Transform -- uid: 8558 - type: CableHV - components: - - pos: -57.5,7.5 - parent: 1 - type: Transform -- uid: 8559 - type: CableHV - components: - - pos: -57.5,6.5 - parent: 1 - type: Transform -- uid: 8560 - type: CableHV - components: - - pos: -57.5,5.5 - parent: 1 - type: Transform -- uid: 8561 - type: CableHV - components: - - pos: -56.5,5.5 - parent: 1 - type: Transform -- uid: 8562 - type: CableHV - components: - - pos: -55.5,5.5 - parent: 1 - type: Transform -- uid: 8563 - type: CableHV - components: - - pos: -54.5,5.5 - parent: 1 - type: Transform -- uid: 8564 - type: CableHV - components: - - pos: -53.5,5.5 - parent: 1 - type: Transform -- uid: 8565 - type: CableHV - components: - - pos: -52.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8566 - type: CableHV - components: - - pos: -51.5,5.5 - parent: 1 - type: Transform -- uid: 8567 - type: CableHV - components: - - pos: -50.5,5.5 - parent: 1 - type: Transform -- uid: 8568 - type: CableHV - components: - - pos: -49.5,5.5 - parent: 1 - type: Transform -- uid: 8569 - type: CableHV - components: - - pos: -48.5,5.5 - parent: 1 - type: Transform -- uid: 8570 - type: CableHV - components: - - pos: -47.5,5.5 - parent: 1 - type: Transform -- uid: 8571 - type: CableHV - components: - - pos: -46.5,5.5 - parent: 1 - type: Transform -- uid: 8572 - type: CableHV - components: - - pos: -45.5,5.5 - parent: 1 - type: Transform -- uid: 8573 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -48.5,51.5 - parent: 1 - type: Transform -- uid: 8574 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -46.5,51.5 - parent: 1 - type: Transform -- uid: 8575 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -59.5,53.5 - parent: 1 - type: Transform -- uid: 8576 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -59.5,55.5 - parent: 1 - type: Transform -- uid: 8577 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -61.5,60.5 - parent: 1 - type: Transform -- uid: 8578 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: -47.5,56.5 - parent: 1 - type: Transform -- uid: 8579 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: -47.5,63.5 - parent: 1 - type: Transform -- uid: 8580 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: -49.5,64.5 - parent: 1 - type: Transform -- uid: 8581 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: -49.5,65.5 - parent: 1 - type: Transform -- uid: 8582 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8583 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -51.5,79.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8584 - type: Poweredlight - components: - - pos: -47.5,65.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8585 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,62.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8586 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -60.5,60.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8587 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,64.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8588 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,64.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8589 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,59.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8590 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,53.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8591 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8592 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -55.5,53.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8593 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,58.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8594 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -60.5,63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8595 - type: Poweredlight - components: - - pos: -62.5,55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8596 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -61.5,50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8597 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8598 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8599 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8600 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -60.5,57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8601 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.493813,8.5347 - parent: 1 - type: Transform -- uid: 8602 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -27.47025,16.628725 - parent: 1 - type: Transform -- uid: 8603 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -53.50901,17.553663 - parent: 1 - type: Transform -- uid: 8604 - type: IntercomAll - components: - - rot: -1.5707963267948966 rad - pos: -18.5,37.5 - parent: 1 - type: Transform -- uid: 8605 - type: IntercomAll - components: - - rot: 3.141592653589793 rad - pos: -6.5,58.5 - parent: 1 - type: Transform -- uid: 8606 - type: IntercomCommand - components: - - rot: 3.141592653589793 rad - pos: -14.5,61.5 - parent: 1 - type: Transform -- uid: 8607 - type: IntercomCommand - components: - - rot: -1.5707963267948966 rad - pos: -6.5,53.5 - parent: 1 - type: Transform -- uid: 8608 - type: IntercomCommand - components: - - rot: 1.5707963267948966 rad - pos: -19.5,55.5 - parent: 1 - type: Transform -- uid: 8609 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -9.5,48.5 - parent: 1 - type: Transform -- uid: 8610 - type: Intercom - components: - - rot: 3.141592653589793 rad - pos: -8.5,26.5 - parent: 1 - type: Transform -- uid: 8611 - type: Intercom - components: - - pos: -27.5,34.5 - parent: 1 - type: Transform -- uid: 8612 - type: Intercom - components: - - rot: 3.141592653589793 rad - pos: -35.5,22.5 - parent: 1 - type: Transform -- uid: 8613 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -49.5,39.5 - parent: 1 - type: Transform -- uid: 8614 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -55.5,28.5 - parent: 1 - type: Transform -- uid: 8615 - type: Intercom - components: - - rot: 3.141592653589793 rad - pos: -53.5,11.5 - parent: 1 - type: Transform -- uid: 8618 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -39.5,12.5 - parent: 1 - type: Transform -- uid: 8619 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -29.5,10.5 - parent: 1 - type: Transform -- uid: 8620 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -14.5,16.5 - parent: 1 - type: Transform -- uid: 8621 - type: Intercom - components: - - pos: 3.5,7.5 - parent: 1 - type: Transform -- uid: 8622 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: 9.5,1.5 - parent: 1 - type: Transform -- uid: 8623 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: 29.5,15.5 - parent: 1 - type: Transform -- uid: 8624 - type: IntercomScience - components: - - rot: 3.141592653589793 rad - pos: -5.5,3.5 - parent: 1 - type: Transform -- uid: 8625 - type: IntercomScience - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-3.5 - parent: 1 - type: Transform -- uid: 8626 - type: IntercomScience - components: - - pos: -1.5,-0.5 - parent: 1 - type: Transform -- uid: 8627 - type: IntercomScience - components: - - pos: 0.5,-7.5 - parent: 1 - type: Transform -- uid: 8628 - type: IntercomScience - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 1 - type: Transform -- uid: 8629 - type: IntercomMedical - components: - - pos: -3.5,35.5 - parent: 1 - type: Transform -- uid: 8630 - type: IntercomMedical - components: - - rot: 3.141592653589793 rad - pos: 1.5,35.5 - parent: 1 - type: Transform -- uid: 8631 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -79.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8632 - type: IntercomMedical - components: - - rot: 3.141592653589793 rad - pos: 9.5,27.5 - parent: 1 - type: Transform -- uid: 8633 - type: IntercomMedical - components: - - rot: 3.141592653589793 rad - pos: 9.5,21.5 - parent: 1 - type: Transform -- uid: 8634 - type: IntercomMedical - components: - - rot: 1.5707963267948966 rad - pos: 8.5,18.5 - parent: 1 - type: Transform -- uid: 8635 - type: IntercomMedical - components: - - rot: -1.5707963267948966 rad - pos: 0.5,21.5 - parent: 1 - type: Transform -- uid: 8636 - type: IntercomSupply - components: - - rot: 1.5707963267948966 rad - pos: -42.5,2.5 - parent: 1 - type: Transform -- uid: 8637 - type: IntercomSupply - components: - - pos: -41.5,-8.5 - parent: 1 - type: Transform -- uid: 8638 - type: IntercomSupply - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 1 - type: Transform -- uid: 8639 - type: IntercomService - components: - - pos: -34.5,41.5 - parent: 1 - type: Transform -- uid: 8640 - type: IntercomService - components: - - pos: -28.5,48.5 - parent: 1 - type: Transform -- uid: 8641 - type: IntercomService - components: - - rot: -1.5707963267948966 rad - pos: -45.5,45.5 - parent: 1 - type: Transform -- uid: 8642 - type: IntercomService - components: - - rot: -1.5707963267948966 rad - pos: -38.5,51.5 - parent: 1 - type: Transform -- uid: 8643 - type: IntercomSecurity - components: - - rot: 1.5707963267948966 rad - pos: -49.5,51.5 - parent: 1 - type: Transform -- uid: 8644 - type: IntercomSecurity - components: - - rot: -1.5707963267948966 rad - pos: -45.5,58.5 - parent: 1 - type: Transform -- uid: 8645 - type: IntercomSecurity - components: - - rot: 1.5707963267948966 rad - pos: -57.5,64.5 - parent: 1 - type: Transform -- uid: 8646 - type: IntercomSecurity - components: - - rot: 1.5707963267948966 rad - pos: -62.5,64.5 - parent: 1 - type: Transform -- uid: 8647 - type: IntercomSecurity - components: - - rot: -1.5707963267948966 rad - pos: -58.5,51.5 - parent: 1 - type: Transform -- uid: 8648 - type: IntercomSecurity - components: - - rot: 1.5707963267948966 rad - pos: -44.5,62.5 - parent: 1 - type: Transform -- uid: 8649 - type: IntercomSecurity - components: - - rot: -1.5707963267948966 rad - pos: -56.5,85.5 - parent: 1 - type: Transform -- uid: 8650 - type: IntercomSecurity - components: - - rot: -1.5707963267948966 rad - pos: -49.5,57.5 - parent: 1 - type: Transform -- uid: 8651 - type: LockerEvidence - components: - - pos: -52.5,53.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8652 - type: DisposalUnit - components: - - pos: -51.5,65.5 - parent: 1 - type: Transform -- uid: 8653 - type: DisposalPipe - components: - - pos: -50.5,57.5 - parent: 1 - type: Transform -- uid: 8654 - type: DisposalPipe - components: - - pos: -50.5,56.5 - parent: 1 - type: Transform -- uid: 8655 - type: DisposalPipe - components: - - pos: -50.5,60.5 - parent: 1 - type: Transform -- uid: 8656 - type: DisposalPipe - components: - - pos: -50.5,61.5 - parent: 1 - type: Transform -- uid: 8657 - type: DisposalPipe - components: - - pos: -50.5,62.5 - parent: 1 - type: Transform -- uid: 8658 - type: DisposalPipe - components: - - pos: -50.5,63.5 - parent: 1 - type: Transform -- uid: 8659 - type: DisposalPipe - components: - - pos: -50.5,64.5 - parent: 1 - type: Transform -- uid: 8660 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -49.5,55.5 - parent: 1 - type: Transform -- uid: 8661 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -48.5,54.5 - parent: 1 - type: Transform -- uid: 8662 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -48.5,53.5 - parent: 1 - type: Transform -- uid: 8663 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -48.5,52.5 - parent: 1 - type: Transform -- uid: 8664 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -48.5,51.5 - parent: 1 - type: Transform -- uid: 8665 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -48.5,50.5 - parent: 1 - type: Transform -- uid: 8666 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -48.5,49.5 - parent: 1 - type: Transform -- uid: 8667 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -48.5,48.5 - parent: 1 - type: Transform -- uid: 8668 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -50.5,55.5 - parent: 1 - type: Transform -- uid: 8669 - type: DisposalBend - components: - - pos: -48.5,55.5 - parent: 1 - type: Transform -- uid: 8670 - type: DisposalBend - components: - - pos: -50.5,65.5 - parent: 1 - type: Transform -- uid: 8671 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -51.5,65.5 - parent: 1 - type: Transform -- uid: 8672 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -51.5,58.5 - parent: 1 - type: Transform -- uid: 8673 - type: DisposalJunction - components: - - pos: -50.5,58.5 - parent: 1 - type: Transform -- uid: 8674 - type: GasPipeStraight - components: - - pos: -46.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8675 - type: GasPipeStraight - components: - - pos: -46.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8676 - type: GasPipeStraight - components: - - pos: -46.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8677 - type: GasPipeStraight - components: - - pos: -46.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8678 - type: GasPipeStraight - components: - - pos: -46.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8679 - type: GasPipeStraight - components: - - pos: -46.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8680 - type: GasPipeStraight - components: - - pos: -46.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8681 - type: GasPipeStraight - components: - - pos: -48.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8682 - type: GasPipeStraight - components: - - pos: -48.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8683 - type: GasPipeStraight - components: - - pos: -48.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8684 - type: GasPipeStraight - components: - - pos: -48.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8685 - type: GasPipeStraight - components: - - pos: -48.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8686 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -47.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8687 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8688 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8689 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8690 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -47.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8691 - type: GasPipeTJunction - components: - - pos: -48.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8692 - type: GasPipeFourway - components: - - pos: -47.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8693 - type: GasPipeBend - components: - - pos: -46.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8694 - type: GasPipeStraight - components: - - pos: -47.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8695 - type: GasPipeStraight - components: - - pos: -47.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8696 - type: GasPipeStraight - components: - - pos: -47.5,58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8697 - type: GasVentPump - components: - - pos: -47.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8698 - type: GasPipeTJunction - components: - - pos: -50.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8699 - type: GasPipeTJunction - components: - - pos: -53.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8700 - type: GasPipeTJunction - components: - - pos: -56.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8701 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8702 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -52.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8703 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8704 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -55.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8705 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8706 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8707 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -51.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8708 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -51.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8709 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -51.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8710 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -51.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8711 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8712 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8713 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -53.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8714 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -53.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8715 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -54.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8716 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -54.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8717 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8718 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8719 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8720 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8721 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8722 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -55.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8723 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8724 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -56.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8725 - type: GasPipeStraight - components: - - pos: -55.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8726 - type: GasPipeStraight - components: - - pos: -55.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8727 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -53.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8728 - type: GasPipeStraight - components: - - pos: -55.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8729 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8730 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8731 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8732 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8733 - type: GasPipeTJunction - components: - - pos: -54.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8734 - type: GasPipeTJunction - components: - - pos: -51.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8735 - type: GasPipeTJunction - components: - - pos: -57.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8736 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -50.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8737 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -54.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8738 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -54.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8739 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8740 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8741 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8742 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8743 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8744 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8745 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8746 - type: GasPipeBend - components: - - pos: -56.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8747 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8748 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8749 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -61.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8750 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8751 - type: GasPipeStraight - components: - - pos: -61.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8752 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -61.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8753 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -60.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8754 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -50.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8755 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -53.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8756 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -56.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8757 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -60.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8758 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -47.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8759 - type: GasVentScrubber - components: - - pos: -54.5,64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8760 - type: GasVentScrubber - components: - - pos: -58.5,64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8761 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -51.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8762 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -54.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8763 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -57.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8764 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -61.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8765 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -60.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8766 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -60.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8767 - type: GasPipeBend - components: - - pos: -55.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8768 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8769 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8770 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8771 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8772 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8773 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8774 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8775 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8776 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8777 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8778 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -54.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8779 - type: GasVentPump - components: - - pos: -53.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8780 - type: CableMV - components: - - pos: -50.5,60.5 - parent: 1 - type: Transform -- uid: 8781 - type: GasPipeFourway - components: - - pos: -52.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8782 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -52.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8783 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -50.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8784 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -55.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8785 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -54.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8786 - type: GasPipeStraight - components: - - pos: -52.5,60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8787 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -58.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8788 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -59.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8789 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8790 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8791 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8792 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8793 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -50.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8794 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8795 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8796 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8797 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8798 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8799 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8800 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8801 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8802 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8803 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8804 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8805 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8806 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8807 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8808 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8809 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8810 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8811 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8812 - type: GasPipeStraight - components: - - pos: -50.5,65.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8813 - type: GasPipeStraight - components: - - pos: -50.5,66.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8814 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -50.5,67.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8815 - type: GasPipeStraight - components: - - pos: -52.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8816 - type: GasPipeStraight - components: - - pos: -52.5,67.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8817 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -52.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8818 - type: GasPipeStraight - components: - - pos: -50.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8819 - type: GasPipeStraight - components: - - pos: -50.5,62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8820 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8821 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8822 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8823 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8824 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8825 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -54.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8826 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -54.5,63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8827 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -55.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8828 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -55.5,62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8829 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -55.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8830 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8831 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8832 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8833 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8834 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8835 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8836 - type: GasPipeStraight - components: - - pos: -58.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8837 - type: GasPipeStraight - components: - - pos: -58.5,63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8838 - type: GasPipeStraight - components: - - pos: -59.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8839 - type: GasPipeStraight - components: - - pos: -59.5,62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8840 - type: GasPipeStraight - components: - - pos: -59.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8841 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8842 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -60.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8843 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -51.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8844 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -42.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8845 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -60.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8846 - type: GasVentPump - components: - - pos: -59.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8847 - type: GasVentPump - components: - - pos: -55.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8848 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -51.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8849 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -42.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8850 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -50.5,80.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8851 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,68.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8852 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8853 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,70.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8854 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,71.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8855 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8856 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8857 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,74.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8858 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,75.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8859 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8860 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8861 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,78.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8862 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,79.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8863 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,80.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8864 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8865 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8866 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,69.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8867 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,70.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8868 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8869 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8870 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8871 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,74.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8872 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8873 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,76.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8874 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,77.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8875 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8876 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,79.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8877 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,81.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8878 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,82.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8879 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,81.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8880 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,82.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8881 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -51.5,67.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8882 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -51.5,80.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8883 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -51.5,84.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8884 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -51.5,85.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8885 - type: GasVentPump - components: - - pos: -54.5,84.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8886 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -55.5,83.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8887 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -55.5,88.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8888 - type: GasVentScrubber - components: - - pos: -54.5,89.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8889 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8890 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8891 - type: GasPipeStraight - components: - - pos: -52.5,83.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8892 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8893 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8894 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8895 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8896 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8897 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8898 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8899 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8900 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,85.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8901 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,86.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8902 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,87.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8903 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,88.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8904 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8905 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8906 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8907 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8908 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8909 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8910 - type: GasPipeStraight - components: - - pos: -58.5,88.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8911 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -54.5,83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8912 - type: GasPipeTJunction - components: - - pos: -55.5,84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8913 - type: GasPipeTJunction - components: - - pos: -55.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8914 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -54.5,88.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8915 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -50.5,83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8916 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -50.5,84.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8917 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -52.5,85.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8918 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -52.5,84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8919 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,86.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8920 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,87.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8921 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,88.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8922 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,88.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8923 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,88.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8924 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -57.5,87.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8925 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -58.5,84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8926 - type: GasPipeBend - components: - - pos: -52.5,88.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8927 - type: GasPipeBend - components: - - pos: -50.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8928 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -58.5,87.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8929 - type: CableHV - components: - - pos: -42.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8930 - type: NitrogenCanister - components: - - pos: 5.5,-4.5 - parent: 1 - type: Transform -- uid: 8931 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -57.5,88.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8932 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -58.5,89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8933 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: -59.5,63.5 - parent: 1 - type: Transform -- uid: 8934 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: -59.5,64.5 - parent: 1 - type: Transform -- uid: 8935 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: -59.5,65.5 - parent: 1 - type: Transform -- uid: 8936 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: -60.5,63.5 - parent: 1 - type: Transform -- uid: 8937 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: -60.5,64.5 - parent: 1 - type: Transform -- uid: 8938 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: -60.5,65.5 - parent: 1 - type: Transform -- uid: 8939 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: -61.5,63.5 - parent: 1 - type: Transform -- uid: 8940 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: -61.5,64.5 - parent: 1 - type: Transform -- uid: 8941 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: -61.5,65.5 - parent: 1 - type: Transform -- uid: 8942 - type: CableMV - components: - - pos: -51.5,60.5 - parent: 1 - type: Transform -- uid: 8943 - type: CableMV - components: - - pos: -52.5,60.5 - parent: 1 - type: Transform -- uid: 8944 - type: CableMV - components: - - pos: -53.5,60.5 - parent: 1 - type: Transform -- uid: 8945 - type: CableMV - components: - - pos: -54.5,60.5 - parent: 1 - type: Transform -- uid: 8946 - type: CableMV - components: - - pos: -55.5,60.5 - parent: 1 - type: Transform -- uid: 8947 - type: CableMV - components: - - pos: -56.5,60.5 - parent: 1 - type: Transform -- uid: 8948 - type: CableMV - components: - - pos: -57.5,60.5 - parent: 1 - type: Transform -- uid: 8949 - type: CableMV - components: - - pos: -58.5,60.5 - parent: 1 - type: Transform -- uid: 8950 - type: CableMV - components: - - pos: -59.5,60.5 - parent: 1 - type: Transform -- uid: 8951 - type: CableMV - components: - - pos: -60.5,60.5 - parent: 1 - type: Transform -- uid: 8952 - type: CableMV - components: - - pos: -61.5,60.5 - parent: 1 - type: Transform -- uid: 8953 - type: CableMV - components: - - pos: -62.5,60.5 - parent: 1 - type: Transform -- uid: 8954 - type: CableMV - components: - - pos: -63.5,60.5 - parent: 1 - type: Transform -- uid: 8955 - type: CableMV - components: - - pos: -63.5,59.5 - parent: 1 - type: Transform -- uid: 8956 - type: CableMV - components: - - pos: -63.5,58.5 - parent: 1 - type: Transform -- uid: 8957 - type: CableMV - components: - - pos: -63.5,57.5 - parent: 1 - type: Transform -- uid: 8958 - type: CableMV - components: - - pos: -64.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8959 - type: CableMV - components: - - pos: -65.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8960 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -49.5,56.5 - parent: 1 - type: Transform - - devices: - - 8547 - - 8546 - - 8573 - - 8574 - - 8578 - - 8576 - - 8575 - - 8757 - - 8764 - - 8778 - - 8779 - - 8765 - - 8766 - - 8690 - - 8686 - - 8697 - - 8754 - - 8761 - - 8755 - - 8762 - - 8756 - - 8763 - type: DeviceList -- uid: 8961 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -49.5,58.5 - parent: 1 - type: Transform - - devices: - - 8547 - - 8546 - - 8573 - - 8574 - - 8578 - - 8576 - - 8575 - type: DeviceList -- uid: 8962 - type: AirAlarm - components: - - pos: -47.5,66.5 - parent: 1 - type: Transform -- uid: 8963 - type: FireAlarm - components: - - pos: -48.5,66.5 - parent: 1 - type: Transform - - devices: - - 8579 - - 8580 - - 8581 - - 5726 - - 5723 - - 8577 - - 8543 - - 8542 - - 8544 - - 8545 - - 8849 - - 8844 - - 8848 - - 8843 - - 8758 - - 8845 - - 8842 - - 8846 - - 8760 - - 8847 - - 8759 - type: DeviceList -- uid: 8964 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -53.5,87.5 - parent: 1 - type: Transform - - devices: - - 5742 - - 5579 - - 5501 - - 5496 - type: DeviceList -- uid: 8965 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -53.5,88.5 - parent: 1 - type: Transform - - devices: - - 5742 - - 5579 - - 5501 - - 5496 - - 8883 - - 8884 - - 8887 - - 8888 - - 8886 - - 8885 - - 8925 - - 8967 - - 8928 - - 8924 - type: DeviceList -- uid: 8966 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -56.5,87.5 - parent: 1 - type: Transform - - devices: - - 5742 - - 5579 - - 5501 - - 5496 - type: DeviceList -- uid: 8967 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -58.5,83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8968 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: -32.5,23.5 - parent: 1 - type: Transform -- uid: 8969 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -31.5,29.5 - parent: 1 - type: Transform - - id: Theatre - type: SurveillanceCamera -- uid: 8970 - type: Grille - components: - - pos: -55.5,74.5 - parent: 1 - type: Transform -- uid: 8971 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -79.5,18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8972 - type: Grille - components: - - pos: -55.5,69.5 - parent: 1 - type: Transform -- uid: 8973 - type: Grille - components: - - pos: -55.5,70.5 - parent: 1 - type: Transform -- uid: 8974 - type: GrilleBroken - components: - - pos: 11.5,55.5 - parent: 1 - type: Transform -- uid: 8975 - type: Grille - components: - - pos: -55.5,72.5 - parent: 1 - type: Transform -- uid: 8976 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -1.5,59.5 - parent: 1 - type: Transform -- uid: 8977 - type: Grille - components: - - pos: -55.5,75.5 - parent: 1 - type: Transform -- uid: 8978 - type: AsteroidRock - components: - - pos: -52.5,93.5 - parent: 1 - type: Transform -- uid: 8979 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 4.5,56.5 - parent: 1 - type: Transform -- uid: 8980 - type: AsteroidRock - components: - - pos: -53.5,93.5 - parent: 1 - type: Transform -- uid: 8981 - type: Grille - components: - - pos: -107.5,22.5 - parent: 1 - type: Transform -- uid: 8982 - type: AsteroidRock - components: - - pos: -54.5,93.5 - parent: 1 - type: Transform -- uid: 8983 - type: AsteroidRock - components: - - pos: -55.5,93.5 - parent: 1 - type: Transform -- uid: 8984 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 8.5,55.5 - parent: 1 - type: Transform -- uid: 8985 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -28.5,62.5 - parent: 1 - type: Transform -- uid: 8986 - type: Grille - components: - - pos: -65.5,82.5 - parent: 1 - type: Transform -- uid: 8987 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -0.5,56.5 - parent: 1 - type: Transform -- uid: 8988 - type: Grille - components: - - pos: -65.5,84.5 - parent: 1 - type: Transform -- uid: 8989 - type: Grille - components: - - pos: -65.5,85.5 - parent: 1 - type: Transform -- uid: 8990 - type: GrilleBroken - components: - - pos: 2.5,56.5 - parent: 1 - type: Transform -- uid: 8991 - type: Grille - components: - - pos: -65.5,87.5 - parent: 1 - type: Transform -- uid: 8992 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -1.5,62.5 - parent: 1 - type: Transform -- uid: 8993 - type: Grille - components: - - pos: -64.5,88.5 - parent: 1 - type: Transform -- uid: 8994 - type: Grille - components: - - pos: -64.5,89.5 - parent: 1 - type: Transform -- uid: 8995 - type: GrilleBroken - components: - - pos: -1.5,64.5 - parent: 1 - type: Transform -- uid: 8996 - type: AsteroidRock - components: - - pos: -56.5,92.5 - parent: 1 - type: Transform -- uid: 8997 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -3.5,65.5 - parent: 1 - type: Transform -- uid: 8998 - type: AsteroidRock - components: - - pos: -56.5,94.5 - parent: 1 - type: Transform -- uid: 8999 - type: AsteroidRock - components: - - pos: -54.5,92.5 - parent: 1 - type: Transform -- uid: 9000 - type: GrilleBroken - components: - - pos: -5.5,65.5 - parent: 1 - type: Transform -- uid: 9001 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -8.5,65.5 - parent: 1 - type: Transform -- uid: 9002 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -8.5,65.5 - parent: 1 - type: Transform -- uid: 9003 - type: AsteroidRock - components: - - pos: -61.5,91.5 - parent: 1 - type: Transform -- uid: 9004 - type: AsteroidRock - components: - - pos: -60.5,91.5 - parent: 1 - type: Transform -- uid: 9005 - type: AsteroidRock - components: - - pos: -60.5,92.5 - parent: 1 - type: Transform -- uid: 9006 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -8.5,67.5 - parent: 1 - type: Transform -- uid: 9007 - type: AsteroidRock - components: - - pos: -59.5,92.5 - parent: 1 - type: Transform -- uid: 9008 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -9.5,69.5 - parent: 1 - type: Transform -- uid: 9009 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -11.5,70.5 - parent: 1 - type: Transform -- uid: 9010 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -13.5,70.5 - parent: 1 - type: Transform -- uid: 9011 - type: AsteroidRock - components: - - pos: -48.5,83.5 - parent: 1 - type: Transform -- uid: 9012 - type: AsteroidRock - components: - - pos: -48.5,82.5 - parent: 1 - type: Transform -- uid: 9013 - type: GrilleBroken - components: - - pos: -16.5,70.5 - parent: 1 - type: Transform -- uid: 9014 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -19.5,70.5 - parent: 1 - type: Transform -- uid: 9015 - type: AsteroidRock - components: - - pos: -48.5,81.5 - parent: 1 - type: Transform -- uid: 9016 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -21.5,70.5 - parent: 1 - type: Transform -- uid: 9017 - type: AsteroidRock - components: - - pos: -47.5,82.5 - parent: 1 - type: Transform -- uid: 9018 - type: GrilleBroken - components: - - pos: -22.5,70.5 - parent: 1 - type: Transform -- uid: 9019 - type: AsteroidRock - components: - - pos: -47.5,83.5 - parent: 1 - type: Transform -- uid: 9020 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -23.5,69.5 - parent: 1 - type: Transform -- uid: 9021 - type: AsteroidRock - components: - - pos: -47.5,84.5 - parent: 1 - type: Transform -- uid: 9022 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -24.5,67.5 - parent: 1 - type: Transform -- uid: 9023 - type: Grille - components: - - pos: -47.5,77.5 - parent: 1 - type: Transform -- uid: 9024 - type: Grille - components: - - pos: -47.5,76.5 - parent: 1 - type: Transform -- uid: 9025 - type: GrilleBroken - components: - - pos: -25.5,64.5 - parent: 1 - type: Transform -- uid: 9026 - type: Grille - components: - - pos: -47.5,74.5 - parent: 1 - type: Transform -- uid: 9027 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -25.5,62.5 - parent: 1 - type: Transform -- uid: 9028 - type: Grille - components: - - pos: -46.5,71.5 - parent: 1 - type: Transform -- uid: 9029 - type: Grille - components: - - pos: -45.5,71.5 - parent: 1 - type: Transform -- uid: 9030 - type: Grille - components: - - pos: -44.5,71.5 - parent: 1 - type: Transform -- uid: 9031 - type: GrilleBroken - components: - - pos: -31.5,62.5 - parent: 1 - type: Transform -- uid: 9032 - type: Grille - components: - - pos: -42.5,71.5 - parent: 1 - type: Transform -- uid: 9033 - type: ReinforcedWindow - components: - - pos: -36.5,63.5 - parent: 1 - type: Transform -- uid: 9034 - type: ReinforcedWindow - components: - - pos: -36.5,66.5 - parent: 1 - type: Transform -- uid: 9035 - type: ReinforcedWindow - components: - - pos: -36.5,64.5 - parent: 1 - type: Transform -- uid: 9036 - type: ReinforcedWindow - components: - - pos: -36.5,65.5 - parent: 1 - type: Transform -- uid: 9037 - type: ReinforcedWindow - components: - - pos: -36.5,62.5 - parent: 1 - type: Transform -- uid: 9038 - type: AsteroidRock - components: - - pos: -62.5,81.5 - parent: 1 - type: Transform -- uid: 9039 - type: ReinforcedWindow - components: - - pos: -36.5,68.5 - parent: 1 - type: Transform -- uid: 9040 - type: ReinforcedWindow - components: - - pos: -36.5,69.5 - parent: 1 - type: Transform -- uid: 9041 - type: ReinforcedWindow - components: - - pos: -37.5,69.5 - parent: 1 - type: Transform -- uid: 9042 - type: ReinforcedWindow - components: - - pos: -36.5,61.5 - parent: 1 - type: Transform -- uid: 9043 - type: ReinforcedWindow - components: - - pos: -38.5,69.5 - parent: 1 - type: Transform -- uid: 9044 - type: ReinforcedWindow - components: - - pos: -39.5,69.5 - parent: 1 - type: Transform -- uid: 9045 - type: ReinforcedWindow - components: - - pos: -36.5,67.5 - parent: 1 - type: Transform -- uid: 9046 - type: ReinforcedWindow - components: - - pos: -36.5,60.5 - parent: 1 - type: Transform -- uid: 9047 - type: ReinforcedWindow - components: - - pos: -36.5,59.5 - parent: 1 - type: Transform -- uid: 9048 - type: Grille - components: - - pos: -32.5,62.5 - parent: 1 - type: Transform -- uid: 9049 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -47.5,71.5 - parent: 1 - type: Transform -- uid: 9050 - type: Grille - components: - - pos: -30.5,62.5 - parent: 1 - type: Transform -- uid: 9051 - type: Grille - components: - - pos: -29.5,62.5 - parent: 1 - type: Transform -- uid: 9052 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -47.5,73.5 - parent: 1 - type: Transform -- uid: 9053 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -47.5,75.5 - parent: 1 - type: Transform -- uid: 9054 - type: GrilleBroken - components: - - pos: -47.5,78.5 - parent: 1 - type: Transform -- uid: 9055 - type: Grille - components: - - pos: -25.5,63.5 - parent: 1 - type: Transform -- uid: 9056 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -65.5,86.5 - parent: 1 - type: Transform -- uid: 9057 - type: AsteroidRock - components: - - pos: -48.5,84.5 - parent: 1 - type: Transform -- uid: 9058 - type: Grille - components: - - pos: -24.5,68.5 - parent: 1 - type: Transform -- uid: 9059 - type: Grille - components: - - pos: -23.5,68.5 - parent: 1 - type: Transform -- uid: 9060 - type: AsteroidRock - components: - - pos: -48.5,86.5 - parent: 1 - type: Transform -- uid: 9061 - type: Grille - components: - - pos: -22.5,69.5 - parent: 1 - type: Transform -- uid: 9062 - type: AsteroidRock - components: - - pos: -48.5,87.5 - parent: 1 - type: Transform -- uid: 9063 - type: AsteroidRock - components: - - pos: -48.5,88.5 - parent: 1 - type: Transform -- uid: 9064 - type: GrilleBroken - components: - - pos: -65.5,88.5 - parent: 1 - type: Transform -- uid: 9065 - type: AsteroidRock - components: - - pos: -48.5,89.5 - parent: 1 - type: Transform -- uid: 9066 - type: Grille - components: - - pos: -18.5,70.5 - parent: 1 - type: Transform -- uid: 9067 - type: Grille - components: - - pos: -17.5,70.5 - parent: 1 - type: Transform -- uid: 9068 - type: AsteroidRock - components: - - pos: -47.5,85.5 - parent: 1 - type: Transform -- uid: 9069 - type: Grille - components: - - pos: -15.5,70.5 - parent: 1 - type: Transform -- uid: 9070 - type: Grille - components: - - pos: -14.5,70.5 - parent: 1 - type: Transform -- uid: 9071 - type: AsteroidRock - components: - - pos: -47.5,86.5 - parent: 1 - type: Transform -- uid: 9072 - type: AsteroidRock - components: - - pos: -47.5,87.5 - parent: 1 - type: Transform -- uid: 9073 - type: Grille - components: - - pos: -10.5,70.5 - parent: 1 - type: Transform -- uid: 9074 - type: Grille - components: - - pos: -10.5,69.5 - parent: 1 - type: Transform -- uid: 9075 - type: AsteroidRock - components: - - pos: -58.5,92.5 - parent: 1 - type: Transform -- uid: 9076 - type: AsteroidRock - components: - - pos: -57.5,94.5 - parent: 1 - type: Transform -- uid: 9077 - type: Grille - components: - - pos: -8.5,68.5 - parent: 1 - type: Transform -- uid: 9078 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -64.5,90.5 - parent: 1 - type: Transform -- uid: 9079 - type: Grille - components: - - pos: -7.5,65.5 - parent: 1 - type: Transform -- uid: 9080 - type: Grille - components: - - pos: -6.5,65.5 - parent: 1 - type: Transform -- uid: 9081 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -55.5,71.5 - parent: 1 - type: Transform -- uid: 9082 - type: Grille - components: - - pos: -4.5,65.5 - parent: 1 - type: Transform -- uid: 9083 - type: GrilleBroken - components: - - pos: -43.5,71.5 - parent: 1 - type: Transform -- uid: 9084 - type: GrilleBroken - components: - - pos: -65.5,83.5 - parent: 1 - type: Transform -- uid: 9085 - type: GrilleBroken - components: - - pos: -55.5,76.5 - parent: 1 - type: Transform -- uid: 9086 - type: Grille - components: - - pos: -1.5,63.5 - parent: 1 - type: Transform -- uid: 9087 - type: AsteroidRock - components: - - pos: -51.5,92.5 - parent: 1 - type: Transform -- uid: 9088 - type: Grille - components: - - pos: -1.5,61.5 - parent: 1 - type: Transform -- uid: 9089 - type: AsteroidRock - components: - - pos: -53.5,92.5 - parent: 1 - type: Transform -- uid: 9090 - type: Grille - components: - - pos: -1.5,60.5 - parent: 1 - type: Transform -- uid: 9091 - type: Grille - components: - - pos: 0.5,56.5 - parent: 1 - type: Transform -- uid: 9092 - type: Grille - components: - - pos: 1.5,56.5 - parent: 1 - type: Transform -- uid: 9093 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -58.5,68.5 - parent: 1 - type: Transform -- uid: 9094 - type: Grille - components: - - pos: 3.5,56.5 - parent: 1 - type: Transform -- uid: 9095 - type: Grille - components: - - pos: 10.5,55.5 - parent: 1 - type: Transform -- uid: 9096 - type: Grille - components: - - pos: 5.5,56.5 - parent: 1 - type: Transform -- uid: 9097 - type: Grille - components: - - pos: 7.5,55.5 - parent: 1 - type: Transform -- uid: 9098 - type: GrilleBroken - components: - - pos: -60.5,68.5 - parent: 1 - type: Transform -- uid: 9099 - type: Grille - components: - - pos: 9.5,55.5 - parent: 1 - type: Transform -- uid: 9100 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -63.5,68.5 - parent: 1 - type: Transform -- uid: 9101 - type: AsteroidRock - components: - - pos: -52.5,92.5 - parent: 1 - type: Transform -- uid: 9102 - type: Grille - components: - - pos: 12.5,55.5 - parent: 1 - type: Transform -- uid: 9103 - type: Grille - components: - - pos: 13.5,55.5 - parent: 1 - type: Transform -- uid: 9104 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: -72.5,45.5 - parent: 1 - type: Transform -- uid: 9105 - type: RandomSpawner - components: - - pos: -57.5,84.5 - parent: 1 - type: Transform -- uid: 9106 - type: RandomSpawner - components: - - pos: -60.5,84.5 - parent: 1 - type: Transform -- uid: 9107 - type: RandomSpawner - components: - - pos: -59.5,87.5 - parent: 1 - type: Transform -- uid: 9108 - type: RandomSpawner - components: - - pos: -57.5,88.5 - parent: 1 - type: Transform -- uid: 9109 - type: RandomSpawner - components: - - pos: -54.5,89.5 - parent: 1 - type: Transform -- uid: 9110 - type: RandomSpawner - components: - - pos: -55.5,82.5 - parent: 1 - type: Transform -- uid: 9111 - type: RandomSpawner - components: - - pos: -55.5,86.5 - parent: 1 - type: Transform -- uid: 9112 - type: RandomSpawner - components: - - pos: -51.5,89.5 - parent: 1 - type: Transform -- uid: 9113 - type: RandomSpawner - components: - - pos: -52.5,85.5 - parent: 1 - type: Transform -- uid: 9114 - type: RandomSpawner - components: - - pos: -50.5,82.5 - parent: 1 - type: Transform -- uid: 9115 - type: RandomSpawner - components: - - pos: -54.5,79.5 - parent: 1 - type: Transform -- uid: 9116 - type: RandomSpawner - components: - - pos: -50.5,80.5 - parent: 1 - type: Transform -- uid: 9117 - type: RandomSpawner - components: - - pos: -52.5,76.5 - parent: 1 - type: Transform -- uid: 9118 - type: RandomSpawner - components: - - pos: -50.5,73.5 - parent: 1 - type: Transform -- uid: 9119 - type: RandomSpawner - components: - - pos: -52.5,72.5 - parent: 1 - type: Transform -- uid: 9120 - type: RandomSpawner - components: - - pos: -51.5,68.5 - parent: 1 - type: Transform -- uid: 9121 - type: RandomSpawner - components: - - pos: -47.5,67.5 - parent: 1 - type: Transform -- uid: 9122 - type: RandomSpawner - components: - - pos: -52.5,64.5 - parent: 1 - type: Transform -- uid: 9123 - type: RandomSpawner - components: - - pos: -50.5,60.5 - parent: 1 - type: Transform -- uid: 9124 - type: RandomSpawner - components: - - pos: -56.5,60.5 - parent: 1 - type: Transform -- uid: 9125 - type: RandomSpawner - components: - - pos: -59.5,61.5 - parent: 1 - type: Transform -- uid: 9126 - type: RandomSpawner - components: - - pos: -61.5,65.5 - parent: 1 - type: Transform -- uid: 9127 - type: RandomSpawner - components: - - pos: -55.5,65.5 - parent: 1 - type: Transform -- uid: 9128 - type: RandomSpawner - components: - - pos: -54.5,63.5 - parent: 1 - type: Transform -- uid: 9129 - type: RandomSpawner - components: - - pos: -47.5,65.5 - parent: 1 - type: Transform -- uid: 9130 - type: RandomSpawner - components: - - pos: -43.5,62.5 - parent: 1 - type: Transform -- uid: 9131 - type: RandomSpawner - components: - - pos: -42.5,64.5 - parent: 1 - type: Transform -- uid: 9132 - type: RandomSpawner - components: - - pos: -46.5,58.5 - parent: 1 - type: Transform -- uid: 9133 - type: RandomSpawner - components: - - pos: -48.5,61.5 - parent: 1 - type: Transform -- uid: 9134 - type: RandomSpawner - components: - - pos: -50.5,58.5 - parent: 1 - type: Transform -- uid: 9135 - type: RandomSpawner - components: - - pos: -55.5,55.5 - parent: 1 - type: Transform -- uid: 9136 - type: RandomSpawner - components: - - pos: -51.5,54.5 - parent: 1 - type: Transform -- uid: 9137 - type: RandomSpawner - components: - - pos: -59.5,55.5 - parent: 1 - type: Transform -- uid: 9138 - type: RandomSpawner - components: - - pos: -62.5,53.5 - parent: 1 - type: Transform -- uid: 9139 - type: RandomSpawner - components: - - pos: -59.5,51.5 - parent: 1 - type: Transform -- uid: 9140 - type: RandomSpawner - components: - - pos: -65.5,54.5 - parent: 1 - type: Transform -- uid: 9141 - type: RandomSpawner - components: - - pos: -50.5,50.5 - parent: 1 - type: Transform -- uid: 9142 - type: RandomSpawner - components: - - pos: -54.5,52.5 - parent: 1 - type: Transform -- uid: 9143 - type: RandomSpawner - components: - - pos: -53.5,49.5 - parent: 1 - type: Transform -- uid: 9144 - type: RandomSpawner - components: - - pos: -56.5,50.5 - parent: 1 - type: Transform -- uid: 9145 - type: RandomSpawner - components: - - pos: -46.5,54.5 - parent: 1 - type: Transform -- uid: 9146 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -63.5,55.5 - parent: 1 - type: Transform - - id: Equipment Room - type: SurveillanceCamera -- uid: 9147 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -50.5,56.5 - parent: 1 - type: Transform - - id: Brig Area - type: SurveillanceCamera -- uid: 9148 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -48.5,50.5 - parent: 1 - type: Transform - - id: Entrance - type: SurveillanceCamera -- uid: 9149 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -46.5,60.5 - parent: 1 - type: Transform - - id: Warden's Office - type: SurveillanceCamera -- uid: 9150 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -56.5,64.5 - parent: 1 - type: Transform - - id: Breakroom - type: SurveillanceCamera -- uid: 9151 - type: SurveillanceCameraSecurity - components: - - pos: -51.5,60.5 - parent: 1 - type: Transform - - id: Main Hall - type: SurveillanceCamera -- uid: 9152 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -43.5,63.5 - parent: 1 - type: Transform - - id: Armory - type: SurveillanceCamera -- uid: 9153 - type: SurveillanceCameraSecurity - components: - - pos: -51.5,71.5 - parent: 1 - type: Transform - - id: Space Bridge - type: SurveillanceCamera -- uid: 9154 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -52.5,86.5 - parent: 1 - type: Transform - - id: Perma Hall - type: SurveillanceCamera -- uid: 9155 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -57.5,85.5 - parent: 1 - type: Transform - - id: Permabrig - type: SurveillanceCamera -- uid: 9156 - type: WeaponCapacitorRecharger - components: - - rot: 3.141592653589793 rad - pos: -53.5,58.5 - parent: 1 - type: Transform -- uid: 9157 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -67.5,46.5 - parent: 1 - type: Transform -- uid: 9158 - type: AirlockSecurityLocked - components: - - pos: -67.5,47.5 - parent: 1 - type: Transform -- uid: 9159 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -68.5,49.5 - parent: 1 - type: Transform -- uid: 9160 - type: WallSolidRust - components: - - pos: -68.5,53.5 - parent: 1 - type: Transform -- uid: 9161 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -68.5,51.5 - parent: 1 - type: Transform -- uid: 9162 - type: WallReinforced - components: - - pos: -68.5,57.5 - parent: 1 - type: Transform -- uid: 9163 - type: WallSolid - components: - - pos: -69.5,46.5 - parent: 1 - type: Transform -- uid: 9164 - type: WallSolidRust - components: - - pos: -68.5,50.5 - parent: 1 - type: Transform -- uid: 9165 - type: WallSolidRust - components: - - pos: -68.5,54.5 - parent: 1 - type: Transform -- uid: 9166 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -68.5,56.5 - parent: 1 - type: Transform -- uid: 9167 - type: WallSolidRust - components: - - pos: -71.5,50.5 - parent: 1 - type: Transform -- uid: 9168 - type: WallSolidRust - components: - - pos: -69.5,50.5 - parent: 1 - type: Transform -- uid: 9169 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -67.5,58.5 - parent: 1 - type: Transform -- uid: 9170 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -66.5,58.5 - parent: 1 - type: Transform -- uid: 9171 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -66.5,59.5 - parent: 1 - type: Transform -- uid: 9172 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -66.5,60.5 - parent: 1 - type: Transform -- uid: 9173 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -65.5,60.5 - parent: 1 - type: Transform -- uid: 9174 - type: WallReinforced - components: - - pos: -68.5,58.5 - parent: 1 - type: Transform -- uid: 9175 - type: WallSolidRust - components: - - pos: -68.5,46.5 - parent: 1 - type: Transform -- uid: 9176 - type: WallSolidRust - components: - - pos: -70.5,46.5 - parent: 1 - type: Transform -- uid: 9177 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -72.5,46.5 - parent: 1 - type: Transform -- uid: 9178 - type: WallSolidRust - components: - - pos: -71.5,46.5 - parent: 1 - type: Transform -- uid: 9179 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -73.5,47.5 - parent: 1 - type: Transform -- uid: 9180 - type: WallSolidRust - components: - - pos: -73.5,46.5 - parent: 1 - type: Transform -- uid: 9181 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -73.5,49.5 - parent: 1 - type: Transform -- uid: 9182 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -72.5,50.5 - parent: 1 - type: Transform -- uid: 9183 - type: WallSolidRust - components: - - pos: -73.5,42.5 - parent: 1 - type: Transform -- uid: 9184 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -70.5,50.5 - parent: 1 - type: Transform -- uid: 9185 - type: Girder - components: - - pos: -74.5,50.5 - parent: 1 - type: Transform -- uid: 9186 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -69.5,57.5 - parent: 1 - type: Transform -- uid: 9187 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -71.5,57.5 - parent: 1 - type: Transform -- uid: 9188 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -70.5,57.5 - parent: 1 - type: Transform -- uid: 9189 - type: WallReinforced - components: - - pos: -72.5,57.5 - parent: 1 - type: Transform -- uid: 9190 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -70.5,57.5 - parent: 1 - type: Transform -- uid: 9191 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -73.5,50.5 - parent: 1 - type: Transform -- uid: 9192 - type: WallSolidRust - components: - - pos: -68.5,55.5 - parent: 1 - type: Transform -- uid: 9193 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -74.5,51.5 - parent: 1 - type: Transform -- uid: 9194 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -73.5,38.5 - parent: 1 - type: Transform -- uid: 9195 - type: WallReinforced - components: - - pos: -77.5,52.5 - parent: 1 - type: Transform -- uid: 9196 - type: WallReinforced - components: - - pos: -76.5,52.5 - parent: 1 - type: Transform -- uid: 9197 - type: WallReinforced - components: - - pos: -76.5,53.5 - parent: 1 - type: Transform -- uid: 9198 - type: WallReinforced - components: - - pos: -75.5,53.5 - parent: 1 - type: Transform -- uid: 9199 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -74.5,57.5 - parent: 1 - type: Transform -- uid: 9200 - type: WallSolidRust - components: - - pos: -73.5,48.5 - parent: 1 - type: Transform -- uid: 9201 - type: CableHV - components: - - pos: -64.5,36.5 - parent: 1 - type: Transform -- uid: 9202 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -65.5,44.5 - parent: 1 - type: Transform -- uid: 9203 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -72.5,36.5 - parent: 1 - type: Transform -- uid: 9204 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -70.5,36.5 - parent: 1 - type: Transform -- uid: 9205 - type: WallSolidRust - components: - - pos: -59.5,46.5 - parent: 1 - type: Transform -- uid: 9206 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -62.5,46.5 - parent: 1 - type: Transform -- uid: 9207 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -65.5,43.5 - parent: 1 - type: Transform -- uid: 9208 - type: WallSolidRust - components: - - pos: -65.5,40.5 - parent: 1 - type: Transform -- uid: 9209 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -67.5,35.5 - parent: 1 - type: Transform -- uid: 9210 - type: VendingMachineTankDispenserEngineering - components: - - flags: SessionSpecific - type: MetaData - - pos: -69.5,35.5 - parent: 1 - type: Transform -- uid: 9211 - type: Airlock - components: - - rot: 3.141592653589793 rad - pos: -59.5,44.5 - parent: 1 - type: Transform -- uid: 9212 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -66.5,35.5 - parent: 1 - type: Transform -- uid: 9213 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -59.5,45.5 - parent: 1 - type: Transform -- uid: 9214 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -73.5,36.5 - parent: 1 - type: Transform -- uid: 9215 - type: WallSolidRust - components: - - pos: -59.5,41.5 - parent: 1 - type: Transform -- uid: 9216 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -59.5,42.5 - parent: 1 - type: Transform -- uid: 9217 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -68.5,36.5 - parent: 1 - type: Transform -- uid: 9218 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -60.5,46.5 - parent: 1 - type: Transform -- uid: 9219 - type: Girder - components: - - pos: -59.5,39.5 - parent: 1 - type: Transform -- uid: 9220 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -59.5,38.5 - parent: 1 - type: Transform -- uid: 9221 - type: WallSolid - components: - - pos: -59.5,37.5 - parent: 1 - type: Transform -- uid: 9222 - type: WallSolidRust - components: - - pos: -61.5,46.5 - parent: 1 - type: Transform -- uid: 9223 - type: Chair - components: - - pos: -63.5,42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9224 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -62.5,27.5 - parent: 1 - type: Transform -- uid: 9225 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -65.5,37.5 - parent: 1 - type: Transform -- uid: 9226 - type: Table - components: - - pos: -63.5,41.5 - parent: 1 - type: Transform -- uid: 9227 - type: WallReinforced - components: - - pos: -76.5,42.5 - parent: 1 - type: Transform -- uid: 9228 - type: WallSolidRust - components: - - pos: -63.5,46.5 - parent: 1 - type: Transform -- uid: 9229 - type: WallSolidRust - components: - - pos: -69.5,38.5 - parent: 1 - type: Transform -- uid: 9230 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -73.5,45.5 - parent: 1 - type: Transform -- uid: 9231 - type: WallSolidRust - components: - - pos: -73.5,39.5 - parent: 1 - type: Transform -- uid: 9232 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -68.5,42.5 - parent: 1 - type: Transform -- uid: 9233 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -68.5,43.5 - parent: 1 - type: Transform -- uid: 9234 - type: WallSolidRust - components: - - pos: -68.5,44.5 - parent: 1 - type: Transform -- uid: 9235 - type: WallSolid - components: - - pos: -68.5,45.5 - parent: 1 - type: Transform -- uid: 9236 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -73.5,43.5 - parent: 1 - type: Transform -- uid: 9237 - type: WallSolid - components: - - pos: -68.5,45.5 - parent: 1 - type: Transform -- uid: 9238 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -73.5,41.5 - parent: 1 - type: Transform -- uid: 9239 - type: WallSolidRust - components: - - pos: -73.5,40.5 - parent: 1 - type: Transform -- uid: 9240 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -68.5,39.5 - parent: 1 - type: Transform -- uid: 9241 - type: OrganHumanHeart - components: - - pos: 18.986782,28.61476 - parent: 1 - type: Transform -- uid: 9242 - type: WallSolidRust - components: - - pos: -68.5,41.5 - parent: 1 - type: Transform -- uid: 9243 - type: WallSolid - components: - - pos: -68.5,38.5 - parent: 1 - type: Transform -- uid: 9244 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -71.5,38.5 - parent: 1 - type: Transform -- uid: 9245 - type: Girder - components: - - pos: -70.5,38.5 - parent: 1 - type: Transform -- uid: 9246 - type: WallReinforced - components: - - pos: -76.5,38.5 - parent: 1 - type: Transform -- uid: 9247 - type: WallReinforced - components: - - pos: -76.5,37.5 - parent: 1 - type: Transform -- uid: 9248 - type: WallReinforced - components: - - pos: -76.5,40.5 - parent: 1 - type: Transform -- uid: 9249 - type: WallReinforced - components: - - pos: -76.5,39.5 - parent: 1 - type: Transform -- uid: 9250 - type: WallReinforced - components: - - pos: -76.5,46.5 - parent: 1 - type: Transform -- uid: 9251 - type: WallReinforced - components: - - pos: -76.5,45.5 - parent: 1 - type: Transform -- uid: 9252 - type: AirlockExternalAtmosphericsLocked - components: - - rot: 1.5707963267948966 rad - pos: -77.5,47.5 - parent: 1 - type: Transform -- uid: 9253 - type: WallReinforced - components: - - pos: -76.5,47.5 - parent: 1 - type: Transform -- uid: 9254 - type: WallReinforced - components: - - pos: -76.5,44.5 - parent: 1 - type: Transform -- uid: 9255 - type: WallReinforced - components: - - pos: -76.5,43.5 - parent: 1 - type: Transform -- uid: 9256 - type: AirlockExternalAtmosphericsLocked - components: - - rot: 1.5707963267948966 rad - pos: -78.5,48.5 - parent: 1 - type: Transform -- uid: 9257 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9258 - type: AirlockMaintLocked - components: - - rot: 1.5707963267948966 rad - pos: -60.5,7.5 - parent: 1 - type: Transform -- uid: 9259 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -55.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9260 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -50.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9261 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -76.5,49.5 - parent: 1 - type: Transform -- uid: 9262 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -76.5,50.5 - parent: 1 - type: Transform -- uid: 9263 - type: KvassTankFull - components: - - pos: -77.5,51.5 - parent: 1 - type: Transform -- uid: 9264 - type: WallReinforced - components: - - pos: -74.5,53.5 - parent: 1 - type: Transform -- uid: 9265 - type: WallReinforced - components: - - pos: -74.5,55.5 - parent: 1 - type: Transform -- uid: 9266 - type: OxygenCanister - components: - - pos: 18.5,-4.5 - parent: 1 - type: Transform -- uid: 9267 - type: AirCanister - components: - - pos: 25.5,-4.5 - parent: 1 - type: Transform -- uid: 9268 - type: WallReinforced - components: - - pos: -74.5,56.5 - parent: 1 - type: Transform -- uid: 9269 - type: WallSolidRust - components: - - pos: -72.5,38.5 - parent: 1 - type: Transform -- uid: 9270 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -65.5,38.5 - parent: 1 - type: Transform -- uid: 9271 - type: WallReinforced - components: - - pos: -76.5,36.5 - parent: 1 - type: Transform -- uid: 9272 - type: WallReinforced - components: - - pos: -75.5,36.5 - parent: 1 - type: Transform -- uid: 9273 - type: WallSolidRust - components: - - pos: -65.5,42.5 - parent: 1 - type: Transform -- uid: 9274 - type: Table - components: - - pos: -60.5,41.5 - parent: 1 - type: Transform -- uid: 9275 - type: WallSolidRust - components: - - pos: -60.5,37.5 - parent: 1 - type: Transform -- uid: 9276 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -65.5,46.5 - parent: 1 - type: Transform -- uid: 9277 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -64.5,46.5 - parent: 1 - type: Transform -- uid: 9278 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -61.5,37.5 - parent: 1 - type: Transform -- uid: 9279 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -62.5,37.5 - parent: 1 - type: Transform -- uid: 9280 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -63.5,37.5 - parent: 1 - type: Transform -- uid: 9281 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -67.5,32.5 - parent: 1 - type: Transform -- uid: 9282 - type: RandomSpawner - components: - - pos: 20.5,30.5 - parent: 1 - type: Transform -- uid: 9283 - type: OrganHumanTongue - components: - - pos: 18.880354,28.451818 - parent: 1 - type: Transform -- uid: 9284 - type: OrganHumanBrain - components: - - pos: 20.599104,32.811195 - parent: 1 - type: Transform -- uid: 9285 - type: OrganHumanEyes - components: - - pos: 19.520979,30.326818 - parent: 1 - type: Transform -- uid: 9286 - type: OrganHumanKidneys - components: - - pos: 20.630354,32.467445 - parent: 1 - type: Transform -- uid: 9287 - type: OrganHumanLiver - components: - - pos: 20.286604,32.561195 - parent: 1 - type: Transform -- uid: 9288 - type: AirlockMaintLocked - components: - - pos: -59.5,47.5 - parent: 1 - type: Transform -- uid: 9289 - type: WallSolid - components: - - pos: -59.5,35.5 - parent: 1 - type: Transform -- uid: 9290 - type: WallSolid - components: - - pos: -59.5,34.5 - parent: 1 - type: Transform -- uid: 9291 - type: WallSolid - components: - - pos: -61.5,34.5 - parent: 1 - type: Transform -- uid: 9292 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -66.5,32.5 - parent: 1 - type: Transform -- uid: 9293 - type: WallSolidRust - components: - - pos: -65.5,39.5 - parent: 1 - type: Transform -- uid: 9294 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -71.5,36.5 - parent: 1 - type: Transform -- uid: 9295 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: -82.5,22.5 - parent: 1 - type: Transform -- uid: 9296 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -63.5,29.5 - parent: 1 - type: Transform -- uid: 9297 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -62.5,30.5 - parent: 1 - type: Transform -- uid: 9298 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -62.5,31.5 - parent: 1 - type: Transform -- uid: 9299 - type: WallSolid - components: - - pos: -61.5,30.5 - parent: 1 - type: Transform -- uid: 9300 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -65.5,31.5 - parent: 1 - type: Transform -- uid: 9301 - type: WallSolidRust - components: - - pos: -59.5,36.5 - parent: 1 - type: Transform -- uid: 9302 - type: ReinforcedWindow - components: - - pos: -65.5,24.5 - parent: 1 - type: Transform -- uid: 9303 - type: ReinforcedWindow - components: - - pos: -64.5,24.5 - parent: 1 - type: Transform -- uid: 9304 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -62.5,28.5 - parent: 1 - type: Transform -- uid: 9305 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -62.5,29.5 - parent: 1 - type: Transform -- uid: 9306 - type: ReinforcedWindow - components: - - pos: -66.5,24.5 - parent: 1 - type: Transform -- uid: 9307 - type: WallReinforced - components: - - pos: -71.5,24.5 - parent: 1 - type: Transform -- uid: 9308 - type: CableHV - components: - - pos: -69.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9309 - type: CableHV - components: - - pos: -69.5,28.5 - parent: 1 - type: Transform -- uid: 9310 - type: WallReinforced - components: - - pos: -72.5,25.5 - parent: 1 - type: Transform -- uid: 9311 - type: WallReinforced - components: - - pos: -68.5,25.5 - parent: 1 - type: Transform -- uid: 9312 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -62.5,26.5 - parent: 1 - type: Transform -- uid: 9313 - type: WallReinforced - components: - - pos: -68.5,27.5 - parent: 1 - type: Transform -- uid: 9314 - type: WallReinforced - components: - - pos: -68.5,26.5 - parent: 1 - type: Transform -- uid: 9315 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -63.5,29.5 - parent: 1 - type: Transform -- uid: 9316 - type: WallReinforced - components: - - pos: -68.5,31.5 - parent: 1 - type: Transform -- uid: 9317 - type: WallReinforced - components: - - pos: -68.5,30.5 - parent: 1 - type: Transform -- uid: 9318 - type: WallReinforced - components: - - pos: -68.5,29.5 - parent: 1 - type: Transform -- uid: 9319 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -67.5,24.5 - parent: 1 - type: Transform -- uid: 9320 - type: Grille - components: - - pos: -65.5,30.5 - parent: 1 - type: Transform -- uid: 9321 - type: Grille - components: - - pos: -65.5,31.5 - parent: 1 - type: Transform -- uid: 9322 - type: Grille - components: - - pos: -66.5,32.5 - parent: 1 - type: Transform -- uid: 9323 - type: Grille - components: - - pos: -67.5,32.5 - parent: 1 - type: Transform -- uid: 9324 - type: WallReinforced - components: - - pos: -68.5,28.5 - parent: 1 - type: Transform -- uid: 9325 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -63.5,24.5 - parent: 1 - type: Transform -- uid: 9326 - type: SaxophoneInstrument - components: - - pos: -71.56229,45.50187 - parent: 1 - type: Transform -- uid: 9327 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -62.5,33.5 - parent: 1 - type: Transform -- uid: 9328 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -62.5,25.5 - parent: 1 - type: Transform -- uid: 9329 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -65.5,30.5 - parent: 1 - type: Transform -- uid: 9330 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -62.5,34.5 - parent: 1 - type: Transform -- uid: 9331 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -62.5,24.5 - parent: 1 - type: Transform -- uid: 9332 - type: WallReinforced - components: - - pos: -68.5,32.5 - parent: 1 - type: Transform -- uid: 9333 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -65.5,32.5 - parent: 1 - type: Transform -- uid: 9334 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -65.5,29.5 - parent: 1 - type: Transform -- uid: 9335 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -68.5,24.5 - parent: 1 - type: Transform -- uid: 9336 - type: SubstationBasic - components: - - pos: -71.5,25.5 - parent: 1 - type: Transform -- uid: 9337 - type: WallReinforced - components: - - pos: -78.5,27.5 - parent: 1 - type: Transform -- uid: 9338 - type: WallReinforced - components: - - pos: -79.5,28.5 - parent: 1 - type: Transform -- uid: 9339 - type: WallReinforced - components: - - pos: -81.5,28.5 - parent: 1 - type: Transform -- uid: 9340 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -75.5,21.5 - parent: 1 - type: Transform -- uid: 9341 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -75.5,19.5 - parent: 1 - type: Transform -- uid: 9342 - type: ReinforcedWindow - components: - - pos: -73.5,18.5 - parent: 1 - type: Transform -- uid: 9343 - type: WallReinforced - components: - - pos: -75.5,18.5 - parent: 1 - type: Transform -- uid: 9344 - type: WallReinforced - components: - - pos: -75.5,17.5 - parent: 1 - type: Transform -- uid: 9345 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -75.5,23.5 - parent: 1 - type: Transform -- uid: 9346 - type: CableApcExtension - components: - - pos: -57.5,45.5 - parent: 1 - type: Transform -- uid: 9347 - type: CableApcExtension - components: - - pos: -57.5,44.5 - parent: 1 - type: Transform -- uid: 9348 - type: CableApcExtension - components: - - pos: -57.5,43.5 - parent: 1 - type: Transform -- uid: 9349 - type: CableApcExtension - components: - - pos: -57.5,42.5 - parent: 1 - type: Transform -- uid: 9350 - type: CableApcExtension - components: - - pos: -57.5,41.5 - parent: 1 - type: Transform -- uid: 9351 - type: CableApcExtension - components: - - pos: -57.5,40.5 - parent: 1 - type: Transform -- uid: 9352 - type: CableApcExtension - components: - - pos: -57.5,39.5 - parent: 1 - type: Transform -- uid: 9353 - type: CableApcExtension - components: - - pos: -57.5,38.5 - parent: 1 - type: Transform -- uid: 9354 - type: CableApcExtension - components: - - pos: -57.5,37.5 - parent: 1 - type: Transform -- uid: 9355 - type: CableApcExtension - components: - - pos: -57.5,36.5 - parent: 1 - type: Transform -- uid: 9356 - type: CableApcExtension - components: - - pos: -57.5,35.5 - parent: 1 - type: Transform -- uid: 9357 - type: CableApcExtension - components: - - pos: -56.5,39.5 - parent: 1 - type: Transform -- uid: 9358 - type: CableApcExtension - components: - - pos: -55.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9359 - type: CableApcExtension - components: - - pos: -54.5,39.5 - parent: 1 - type: Transform -- uid: 9360 - type: CableApcExtension - components: - - pos: -54.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9361 - type: CableApcExtension - components: - - pos: -54.5,41.5 - parent: 1 - type: Transform -- uid: 9362 - type: CableApcExtension - components: - - pos: -54.5,42.5 - parent: 1 - type: Transform -- uid: 9363 - type: CableApcExtension - components: - - pos: -54.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9364 - type: CableApcExtension - components: - - pos: -53.5,43.5 - parent: 1 - type: Transform -- uid: 9365 - type: CableApcExtension - components: - - pos: -52.5,43.5 - parent: 1 - type: Transform -- uid: 9366 - type: CableApcExtension - components: - - pos: -51.5,43.5 - parent: 1 - type: Transform -- uid: 9367 - type: CableApcExtension - components: - - pos: -50.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9368 - type: CableApcExtension - components: - - pos: -49.5,43.5 - parent: 1 - type: Transform -- uid: 9369 - type: CableApcExtension - components: - - pos: -53.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9370 - type: CableApcExtension - components: - - pos: -52.5,41.5 - parent: 1 - type: Transform -- uid: 9371 - type: CableApcExtension - components: - - pos: -52.5,40.5 - parent: 1 - type: Transform -- uid: 9372 - type: CableApcExtension - components: - - pos: -52.5,39.5 - parent: 1 - type: Transform -- uid: 9373 - type: CableApcExtension - components: - - pos: -52.5,38.5 - parent: 1 - type: Transform -- uid: 9374 - type: CableApcExtension - components: - - pos: -52.5,37.5 - parent: 1 - type: Transform -- uid: 9375 - type: CableApcExtension - components: - - pos: -52.5,36.5 - parent: 1 - type: Transform -- uid: 9376 - type: CableApcExtension - components: - - pos: -52.5,35.5 - parent: 1 - type: Transform -- uid: 9377 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9378 - type: OxygenCanister - components: - - pos: 22.5,23.5 - parent: 1 - type: Transform -- uid: 9379 - type: WallReinforced - components: - - pos: -77.5,23.5 - parent: 1 - type: Transform -- uid: 9380 - type: WallReinforced - components: - - pos: -78.5,23.5 - parent: 1 - type: Transform -- uid: 9381 - type: CableMV - components: - - pos: -35.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9382 - type: CableMV - components: - - pos: -34.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9383 - type: CableMV - components: - - pos: -34.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9384 - type: CableMV - components: - - pos: -34.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9385 - type: CableMV - components: - - pos: -33.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9386 - type: CableMV - components: - - pos: -32.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9387 - type: CableMV - components: - - pos: -32.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9388 - type: CableMV - components: - - pos: -32.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9389 - type: CableMV - components: - - pos: -32.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9390 - type: CableMV - components: - - pos: -32.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9391 - type: CableMV - components: - - pos: -32.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9392 - type: CableMV - components: - - pos: -31.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9393 - type: CableMV - components: - - pos: -31.5,49.5 - parent: 1 - type: Transform -- uid: 9394 - type: CableMV - components: - - pos: -31.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9395 - type: APCBasic - components: - - pos: -31.5,48.5 - parent: 1 - type: Transform -- uid: 9396 - type: CableMV - components: - - pos: -30.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9397 - type: CableMV - components: - - pos: -29.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9398 - type: CableMV - components: - - pos: -28.5,50.5 - parent: 1 - type: Transform -- uid: 9399 - type: CableMV - components: - - pos: -27.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9400 - type: CableMV - components: - - pos: -26.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9401 - type: CableMV - components: - - pos: -25.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9402 - type: CableMV - components: - - pos: -24.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9403 - type: CableMV - components: - - pos: -24.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9404 - type: CableMV - components: - - pos: -24.5,48.5 - parent: 1 - type: Transform -- uid: 9405 - type: CableMV - components: - - pos: -24.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9406 - type: CableMV - components: - - pos: -24.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9407 - type: CableMV - components: - - pos: -24.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9408 - type: CableMV - components: - - pos: -24.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9409 - type: CableMV - components: - - pos: -24.5,43.5 - parent: 1 - type: Transform -- uid: 9410 - type: CableMV - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9411 - type: CableMV - components: - - pos: -24.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9412 - type: CableMV - components: - - pos: -24.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9413 - type: CableMV - components: - - pos: -24.5,39.5 - parent: 1 - type: Transform -- uid: 9414 - type: CableMV - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9415 - type: CableMV - components: - - pos: -25.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9416 - type: CableMV - components: - - pos: -26.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9417 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -26.5,38.5 - parent: 1 - type: Transform -- uid: 9418 - type: CableApcExtension - components: - - pos: -31.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9419 - type: CableApcExtension - components: - - pos: -31.5,47.5 - parent: 1 - type: Transform -- uid: 9420 - type: CableApcExtension - components: - - pos: -31.5,46.5 - parent: 1 - type: Transform -- uid: 9421 - type: CableApcExtension - components: - - pos: -31.5,45.5 - parent: 1 - type: Transform -- uid: 9422 - type: CableApcExtension - components: - - pos: -31.5,44.5 - parent: 1 - type: Transform -- uid: 9423 - type: CableApcExtension - components: - - pos: -31.5,43.5 - parent: 1 - type: Transform -- uid: 9424 - type: CableApcExtension - components: - - pos: -30.5,46.5 - parent: 1 - type: Transform -- uid: 9425 - type: CableApcExtension - components: - - pos: -29.5,46.5 - parent: 1 - type: Transform -- uid: 9426 - type: CableApcExtension - components: - - pos: -28.5,46.5 - parent: 1 - type: Transform -- uid: 9427 - type: CableApcExtension - components: - - pos: -27.5,46.5 - parent: 1 - type: Transform -- uid: 9428 - type: CableApcExtension - components: - - pos: -32.5,43.5 - parent: 1 - type: Transform -- uid: 9429 - type: CableApcExtension - components: - - pos: -33.5,43.5 - parent: 1 - type: Transform -- uid: 9430 - type: CableApcExtension - components: - - pos: -34.5,43.5 - parent: 1 - type: Transform -- uid: 9431 - type: CableApcExtension - components: - - pos: -35.5,43.5 - parent: 1 - type: Transform -- uid: 9432 - type: CableApcExtension - components: - - pos: -36.5,43.5 - parent: 1 - type: Transform -- uid: 9433 - type: CableApcExtension - components: - - pos: -37.5,43.5 - parent: 1 - type: Transform -- uid: 9434 - type: CableApcExtension - components: - - pos: -38.5,43.5 - parent: 1 - type: Transform -- uid: 9435 - type: CableApcExtension - components: - - pos: -39.5,43.5 - parent: 1 - type: Transform -- uid: 9436 - type: CableApcExtension - components: - - pos: -40.5,43.5 - parent: 1 - type: Transform -- uid: 9437 - type: CableApcExtension - components: - - pos: -41.5,43.5 - parent: 1 - type: Transform -- uid: 9438 - type: CableApcExtension - components: - - pos: -42.5,43.5 - parent: 1 - type: Transform -- uid: 9439 - type: CableApcExtension - components: - - pos: -43.5,43.5 - parent: 1 - type: Transform -- uid: 9440 - type: CableApcExtension - components: - - pos: -44.5,43.5 - parent: 1 - type: Transform -- uid: 9441 - type: CableApcExtension - components: - - pos: -40.5,42.5 - parent: 1 - type: Transform -- uid: 9442 - type: CableApcExtension - components: - - pos: -40.5,41.5 - parent: 1 - type: Transform -- uid: 9443 - type: CableApcExtension - components: - - pos: -36.5,42.5 - parent: 1 - type: Transform -- uid: 9444 - type: CableApcExtension - components: - - pos: -36.5,44.5 - parent: 1 - type: Transform -- uid: 9445 - type: CableApcExtension - components: - - pos: -36.5,45.5 - parent: 1 - type: Transform -- uid: 9446 - type: CableApcExtension - components: - - pos: -36.5,46.5 - parent: 1 - type: Transform -- uid: 9447 - type: CableApcExtension - components: - - pos: -33.5,44.5 - parent: 1 - type: Transform -- uid: 9448 - type: CableApcExtension - components: - - pos: -33.5,45.5 - parent: 1 - type: Transform -- uid: 9449 - type: CableApcExtension - components: - - pos: -33.5,46.5 - parent: 1 - type: Transform -- uid: 9450 - type: CableApcExtension - components: - - pos: -44.5,44.5 - parent: 1 - type: Transform -- uid: 9451 - type: CableApcExtension - components: - - pos: -44.5,45.5 - parent: 1 - type: Transform -- uid: 9452 - type: CableApcExtension - components: - - pos: -44.5,46.5 - parent: 1 - type: Transform -- uid: 9453 - type: CableApcExtension - components: - - pos: -40.5,44.5 - parent: 1 - type: Transform -- uid: 9454 - type: CableApcExtension - components: - - pos: -40.5,45.5 - parent: 1 - type: Transform -- uid: 9455 - type: CableApcExtension - components: - - pos: -40.5,46.5 - parent: 1 - type: Transform -- uid: 9456 - type: CableApcExtension - components: - - pos: -40.5,47.5 - parent: 1 - type: Transform -- uid: 9457 - type: CableApcExtension - components: - - pos: -40.5,48.5 - parent: 1 - type: Transform -- uid: 9458 - type: CableApcExtension - components: - - pos: -40.5,49.5 - parent: 1 - type: Transform -- uid: 9459 - type: CableApcExtension - components: - - pos: -40.5,50.5 - parent: 1 - type: Transform -- uid: 9460 - type: CableApcExtension - components: - - pos: -41.5,50.5 - parent: 1 - type: Transform -- uid: 9461 - type: CableApcExtension - components: - - pos: -42.5,50.5 - parent: 1 - type: Transform -- uid: 9462 - type: WallReinforced - components: - - pos: -78.5,22.5 - parent: 1 - type: Transform -- uid: 9463 - type: WallReinforced - components: - - pos: -78.5,21.5 - parent: 1 - type: Transform -- uid: 9464 - type: WallReinforced - components: - - pos: -80.5,21.5 - parent: 1 - type: Transform -- uid: 9465 - type: WallReinforced - components: - - pos: -72.5,24.5 - parent: 1 - type: Transform -- uid: 9466 - type: ReinforcedWindow - components: - - pos: -72.5,22.5 - parent: 1 - type: Transform -- uid: 9467 - type: WallReinforced - components: - - pos: -72.5,30.5 - parent: 1 - type: Transform -- uid: 9468 - type: NitrogenCanister - components: - - pos: 22.5,24.5 - parent: 1 - type: Transform -- uid: 9469 - type: AirCanister - components: - - pos: 22.5,25.5 - parent: 1 - type: Transform -- uid: 9470 - type: AirCanister - components: - - pos: -48.5,19.5 - parent: 1 - type: Transform -- uid: 9471 - type: CableApcExtension - components: - - pos: -41.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9472 - type: CableApcExtension - components: - - pos: -40.5,55.5 - parent: 1 - type: Transform -- uid: 9473 - type: CableApcExtension - components: - - pos: -39.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9474 - type: CableApcExtension - components: - - pos: -38.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9475 - type: CableApcExtension - components: - - pos: -37.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9476 - type: CableApcExtension - components: - - pos: -31.5,49.5 - parent: 1 - type: Transform -- uid: 9477 - type: CableApcExtension - components: - - pos: -31.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9478 - type: CableApcExtension - components: - - pos: -31.5,51.5 - parent: 1 - type: Transform -- uid: 9479 - type: CableApcExtension - components: - - pos: -31.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9480 - type: CableApcExtension - components: - - pos: -31.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9481 - type: CableApcExtension - components: - - pos: -31.5,54.5 - parent: 1 - type: Transform -- uid: 9482 - type: CableApcExtension - components: - - pos: -30.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9483 - type: CableApcExtension - components: - - pos: -29.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9484 - type: CableApcExtension - components: - - pos: -28.5,50.5 - parent: 1 - type: Transform -- uid: 9485 - type: CableApcExtension - components: - - pos: -27.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9486 - type: CableApcExtension - components: - - pos: -26.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9487 - type: CableApcExtension - components: - - pos: -25.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9488 - type: CableApcExtension - components: - - pos: -24.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9489 - type: CableHV - components: - - pos: -18.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9490 - type: CableApcExtension - components: - - pos: -18.5,53.5 - parent: 1 - type: Transform -- uid: 9491 - type: CableApcExtension - components: - - pos: -21.5,53.5 - parent: 1 - type: Transform -- uid: 9492 - type: CableApcExtension - components: - - pos: -12.5,54.5 - parent: 1 - type: Transform -- uid: 9493 - type: CableApcExtension - components: - - pos: -12.5,53.5 - parent: 1 - type: Transform -- uid: 9494 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -23.5,40.5 - parent: 1 - type: Transform -- uid: 9495 - type: CableMV - components: - - pos: -23.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9496 - type: CableApcExtension - components: - - pos: -23.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9497 - type: CableApcExtension - components: - - pos: -22.5,40.5 - parent: 1 - type: Transform -- uid: 9498 - type: CableApcExtension - components: - - pos: -21.5,40.5 - parent: 1 - type: Transform -- uid: 9499 - type: CableApcExtension - components: - - pos: -20.5,40.5 - parent: 1 - type: Transform -- uid: 9500 - type: CableApcExtension - components: - - pos: -20.5,39.5 - parent: 1 - type: Transform -- uid: 9501 - type: CableApcExtension - components: - - pos: -20.5,38.5 - parent: 1 - type: Transform -- uid: 9502 - type: CableApcExtension - components: - - pos: -20.5,37.5 - parent: 1 - type: Transform -- uid: 9503 - type: CableApcExtension - components: - - pos: -20.5,41.5 - parent: 1 - type: Transform -- uid: 9504 - type: CableApcExtension - components: - - pos: -20.5,42.5 - parent: 1 - type: Transform -- uid: 9505 - type: CableApcExtension - components: - - pos: -20.5,43.5 - parent: 1 - type: Transform -- uid: 9506 - type: CableApcExtension - components: - - pos: -20.5,44.5 - parent: 1 - type: Transform -- uid: 9507 - type: CableApcExtension - components: - - pos: -20.5,45.5 - parent: 1 - type: Transform -- uid: 9508 - type: CableApcExtension - components: - - pos: -20.5,46.5 - parent: 1 - type: Transform -- uid: 9509 - type: CableApcExtension - components: - - pos: -20.5,47.5 - parent: 1 - type: Transform -- uid: 9510 - type: CableApcExtension - components: - - pos: -20.5,48.5 - parent: 1 - type: Transform -- uid: 9511 - type: CableApcExtension - components: - - pos: -19.5,45.5 - parent: 1 - type: Transform -- uid: 9512 - type: CableApcExtension - components: - - pos: -18.5,45.5 - parent: 1 - type: Transform -- uid: 9513 - type: CableApcExtension - components: - - pos: -17.5,45.5 - parent: 1 - type: Transform -- uid: 9514 - type: CableApcExtension - components: - - pos: -16.5,45.5 - parent: 1 - type: Transform -- uid: 9515 - type: CableApcExtension - components: - - pos: -16.5,46.5 - parent: 1 - type: Transform -- uid: 9516 - type: CableApcExtension - components: - - pos: -16.5,47.5 - parent: 1 - type: Transform -- uid: 9517 - type: CableApcExtension - components: - - pos: -15.5,47.5 - parent: 1 - type: Transform -- uid: 9518 - type: CableApcExtension - components: - - pos: -14.5,47.5 - parent: 1 - type: Transform -- uid: 9519 - type: CableApcExtension - components: - - pos: -13.5,47.5 - parent: 1 - type: Transform -- uid: 9520 - type: CableApcExtension - components: - - pos: -12.5,47.5 - parent: 1 - type: Transform -- uid: 9521 - type: CableApcExtension - components: - - pos: -11.5,47.5 - parent: 1 - type: Transform -- uid: 9522 - type: CableApcExtension - components: - - pos: -10.5,47.5 - parent: 1 - type: Transform -- uid: 9523 - type: CableApcExtension - components: - - pos: -16.5,44.5 - parent: 1 - type: Transform -- uid: 9524 - type: CableApcExtension - components: - - pos: -16.5,43.5 - parent: 1 - type: Transform -- uid: 9525 - type: CableApcExtension - components: - - pos: -16.5,42.5 - parent: 1 - type: Transform -- uid: 9526 - type: CableApcExtension - components: - - pos: -16.5,41.5 - parent: 1 - type: Transform -- uid: 9527 - type: CableApcExtension - components: - - pos: -16.5,40.5 - parent: 1 - type: Transform -- uid: 9528 - type: CableApcExtension - components: - - pos: -16.5,39.5 - parent: 1 - type: Transform -- uid: 9529 - type: CableApcExtension - components: - - pos: -16.5,38.5 - parent: 1 - type: Transform -- uid: 9530 - type: CableApcExtension - components: - - pos: -16.5,37.5 - parent: 1 - type: Transform -- uid: 9531 - type: CableApcExtension - components: - - pos: -16.5,36.5 - parent: 1 - type: Transform -- uid: 9532 - type: CableApcExtension - components: - - pos: -24.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9533 - type: CableApcExtension - components: - - pos: -24.5,39.5 - parent: 1 - type: Transform -- uid: 9534 - type: CableApcExtension - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9535 - type: CableApcExtension - components: - - pos: -24.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9536 - type: CableApcExtension - components: - - pos: -24.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9537 - type: CableApcExtension - components: - - pos: -24.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9538 - type: CableApcExtension - components: - - pos: -24.5,34.5 - parent: 1 - type: Transform -- uid: 9539 - type: CableApcExtension - components: - - pos: -16.5,35.5 - parent: 1 - type: Transform -- uid: 9540 - type: CableApcExtension - components: - - pos: -16.5,34.5 - parent: 1 - type: Transform -- uid: 9541 - type: CableApcExtension - components: - - pos: -16.5,33.5 - parent: 1 - type: Transform -- uid: 9542 - type: CableApcExtension - components: - - pos: -16.5,32.5 - parent: 1 - type: Transform -- uid: 9543 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9544 - type: Poweredlight - components: - - pos: -11.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9545 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9546 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9547 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9548 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9549 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9550 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9551 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9552 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -35.5,35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9553 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -41.5,35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9554 - type: Poweredlight - components: - - pos: -43.5,39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9555 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9556 - type: Poweredlight - components: - - pos: -33.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9557 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9558 - type: CableApcExtension - components: - - pos: -26.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9559 - type: CableApcExtension - components: - - pos: -27.5,38.5 - parent: 1 - type: Transform -- uid: 9560 - type: CableApcExtension - components: - - pos: -27.5,37.5 - parent: 1 - type: Transform -- uid: 9561 - type: CableApcExtension - components: - - pos: -28.5,37.5 - parent: 1 - type: Transform -- uid: 9562 - type: CableApcExtension - components: - - pos: -29.5,37.5 - parent: 1 - type: Transform -- uid: 9563 - type: CableApcExtension - components: - - pos: -30.5,37.5 - parent: 1 - type: Transform -- uid: 9564 - type: CableApcExtension - components: - - pos: -31.5,37.5 - parent: 1 - type: Transform -- uid: 9565 - type: CableApcExtension - components: - - pos: -32.5,37.5 - parent: 1 - type: Transform -- uid: 9566 - type: CableApcExtension - components: - - pos: -33.5,37.5 - parent: 1 - type: Transform -- uid: 9567 - type: CableApcExtension - components: - - pos: -34.5,37.5 - parent: 1 - type: Transform -- uid: 9568 - type: CableApcExtension - components: - - pos: -35.5,37.5 - parent: 1 - type: Transform -- uid: 9569 - type: CableApcExtension - components: - - pos: -36.5,37.5 - parent: 1 - type: Transform -- uid: 9570 - type: CableApcExtension - components: - - pos: -37.5,37.5 - parent: 1 - type: Transform -- uid: 9571 - type: CableApcExtension - components: - - pos: -38.5,37.5 - parent: 1 - type: Transform -- uid: 9572 - type: CableApcExtension - components: - - pos: -39.5,37.5 - parent: 1 - type: Transform -- uid: 9573 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9574 - type: CableApcExtension - components: - - pos: -41.5,37.5 - parent: 1 - type: Transform -- uid: 9575 - type: CableApcExtension - components: - - pos: -42.5,37.5 - parent: 1 - type: Transform -- uid: 9576 - type: CableApcExtension - components: - - pos: -43.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9577 - type: CableApcExtension - components: - - pos: -44.5,37.5 - parent: 1 - type: Transform -- uid: 9578 - type: CableApcExtension - components: - - pos: -32.5,38.5 - parent: 1 - type: Transform -- uid: 9579 - type: CableApcExtension - components: - - pos: -32.5,36.5 - parent: 1 - type: Transform -- uid: 9580 - type: CableApcExtension - components: - - pos: -36.5,38.5 - parent: 1 - type: Transform -- uid: 9581 - type: CableApcExtension - components: - - pos: -36.5,36.5 - parent: 1 - type: Transform -- uid: 9582 - type: CableApcExtension - components: - - pos: -36.5,35.5 - parent: 1 - type: Transform -- uid: 9583 - type: CableApcExtension - components: - - pos: -38.5,36.5 - parent: 1 - type: Transform -- uid: 9584 - type: CableApcExtension - components: - - pos: -38.5,35.5 - parent: 1 - type: Transform -- uid: 9585 - type: CableApcExtension - components: - - pos: -38.5,38.5 - parent: 1 - type: Transform -- uid: 9586 - type: CableApcExtension - components: - - pos: -32.5,35.5 - parent: 1 - type: Transform -- uid: 9587 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,54.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9588 - type: Poweredlight - components: - - pos: -12.5,57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9589 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9590 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -6.5,54.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9591 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -8.5,59.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9592 - type: PoweredSmallLight - components: - - pos: -4.5,56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9593 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -12.5,59.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9594 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9595 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9596 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -20.5,59.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9597 - type: PoweredSmallLight - components: - - pos: -41.5,55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9598 - type: PoweredSmallLight - components: - - pos: -30.5,50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9599 - type: WallReinforced - components: - - pos: -78.5,28.5 - parent: 1 - type: Transform -- uid: 9600 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9601 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -28.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9602 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9603 - type: WallReinforced - components: - - pos: -80.5,28.5 - parent: 1 - type: Transform -- uid: 9604 - type: WallReinforced - components: - - pos: -72.5,29.5 - parent: 1 - type: Transform -- uid: 9605 - type: WallReinforced - components: - - pos: -72.5,31.5 - parent: 1 - type: Transform -- uid: 9606 - type: CableHV - components: - - pos: -80.5,27.5 - parent: 1 - type: Transform -- uid: 9607 - type: CableHV - components: - - pos: -79.5,27.5 - parent: 1 - type: Transform -- uid: 9608 - type: WallReinforced - components: - - pos: -66.5,18.5 - parent: 1 - type: Transform -- uid: 9609 - type: WallReinforced - components: - - pos: -72.5,19.5 - parent: 1 - type: Transform -- uid: 9610 - type: WallReinforced - components: - - pos: -63.5,18.5 - parent: 1 - type: Transform -- uid: 9611 - type: WallReinforced - components: - - pos: -72.5,18.5 - parent: 1 - type: Transform -- uid: 9612 - type: WallReinforced - components: - - pos: -72.5,23.5 - parent: 1 - type: Transform -- uid: 9613 - type: WallReinforced - components: - - pos: -70.5,27.5 - parent: 1 - type: Transform -- uid: 9614 - type: WallReinforced - components: - - pos: -71.5,18.5 - parent: 1 - type: Transform -- uid: 9615 - type: WallReinforced - components: - - pos: -81.5,21.5 - parent: 1 - type: Transform -- uid: 9616 - type: WallReinforced - components: - - pos: -82.5,21.5 - parent: 1 - type: Transform -- uid: 9617 - type: WallReinforced - components: - - pos: -86.5,22.5 - parent: 1 - type: Transform -- uid: 9618 - type: WallReinforced - components: - - pos: -85.5,22.5 - parent: 1 - type: Transform -- uid: 9619 - type: ReinforcedWindow - components: - - pos: -77.5,26.5 - parent: 1 - type: Transform -- uid: 9620 - type: WallReinforced - components: - - pos: -77.5,27.5 - parent: 1 - type: Transform -- uid: 9621 - type: WallReinforced - components: - - pos: -83.5,21.5 - parent: 1 - type: Transform -- uid: 9622 - type: WallReinforced - components: - - pos: -83.5,22.5 - parent: 1 - type: Transform -- uid: 9623 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -75.5,20.5 - parent: 1 - type: Transform -- uid: 9624 - type: WallReinforced - components: - - pos: -64.5,18.5 - parent: 1 - type: Transform -- uid: 9625 - type: WallReinforced - components: - - pos: -65.5,18.5 - parent: 1 - type: Transform -- uid: 9626 - type: Grille - components: - - pos: -72.5,22.5 - parent: 1 - type: Transform -- uid: 9627 - type: Grille - components: - - pos: -71.5,32.5 - parent: 1 - type: Transform -- uid: 9628 - type: Grille - components: - - pos: -64.5,24.5 - parent: 1 - type: Transform -- uid: 9629 - type: Grille - components: - - pos: -65.5,24.5 - parent: 1 - type: Transform -- uid: 9630 - type: Grille - components: - - pos: -66.5,24.5 - parent: 1 - type: Transform -- uid: 9631 - type: WallReinforced - components: - - pos: -62.5,23.5 - parent: 1 - type: Transform -- uid: 9632 - type: ReinforcedWindow - components: - - pos: -71.5,32.5 - parent: 1 - type: Transform -- uid: 9633 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -76.5,23.5 - parent: 1 - type: Transform -- uid: 9634 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -75.5,22.5 - parent: 1 - type: Transform -- uid: 9635 - type: WallReinforced - components: - - pos: -62.5,22.5 - parent: 1 - type: Transform -- uid: 9636 - type: WallReinforced - components: - - pos: -62.5,21.5 - parent: 1 - type: Transform -- uid: 9637 - type: WallReinforced - components: - - pos: -62.5,20.5 - parent: 1 - type: Transform -- uid: 9638 - type: WallReinforced - components: - - pos: -62.5,19.5 - parent: 1 - type: Transform -- uid: 9639 - type: WallReinforced - components: - - pos: -62.5,18.5 - parent: 1 - type: Transform -- uid: 9640 - type: CableApcExtension - components: - - pos: -70.5,33.5 - parent: 1 - type: Transform -- uid: 9641 - type: LandMineExplosive - components: - - pos: -26.981983,53.509666 - parent: 1 - type: Transform -- uid: 9642 - type: CableMV - components: - - pos: -20.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9643 - type: CableMV - components: - - pos: -21.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9644 - type: CableMV - components: - - pos: -21.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9645 - type: CableMV - components: - - pos: -22.5,23.5 - parent: 1 - type: Transform -- uid: 9646 - type: CableMV - components: - - pos: -23.5,23.5 - parent: 1 - type: Transform -- uid: 9647 - type: CableMV - components: - - pos: -24.5,23.5 - parent: 1 - type: Transform -- uid: 9648 - type: CableMV - components: - - pos: -25.5,23.5 - parent: 1 - type: Transform -- uid: 9649 - type: CableMV - components: - - pos: -26.5,23.5 - parent: 1 - type: Transform -- uid: 9650 - type: CableMV - components: - - pos: -27.5,23.5 - parent: 1 - type: Transform -- uid: 9651 - type: CableMV - components: - - pos: -28.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9652 - type: CableMV - components: - - pos: -29.5,23.5 - parent: 1 - type: Transform -- uid: 9653 - type: CableMV - components: - - pos: -29.5,24.5 - parent: 1 - type: Transform -- uid: 9654 - type: CableMV - components: - - pos: -29.5,25.5 - parent: 1 - type: Transform -- uid: 9655 - type: CableMV - components: - - pos: -29.5,26.5 - parent: 1 - type: Transform -- uid: 9656 - type: CableMV - components: - - pos: -29.5,27.5 - parent: 1 - type: Transform -- uid: 9657 - type: CableMV - components: - - pos: -29.5,28.5 - parent: 1 - type: Transform -- uid: 9658 - type: CableMV - components: - - pos: -29.5,29.5 - parent: 1 - type: Transform -- uid: 9659 - type: CableMV - components: - - pos: -29.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9660 - type: WallReinforced - components: - - pos: -67.5,18.5 - parent: 1 - type: Transform -- uid: 9661 - type: ReinforcedWindow - components: - - pos: -68.5,18.5 - parent: 1 - type: Transform -- uid: 9662 - type: WallReinforced - components: - - pos: -72.5,32.5 - parent: 1 - type: Transform -- uid: 9663 - type: Grille - components: - - pos: -72.5,20.5 - parent: 1 - type: Transform -- uid: 9664 - type: ReinforcedWindow - components: - - pos: -69.5,18.5 - parent: 1 - type: Transform -- uid: 9665 - type: ReinforcedWindow - components: - - pos: -72.5,20.5 - parent: 1 - type: Transform -- uid: 9666 - type: WallReinforced - components: - - pos: -73.5,10.5 - parent: 1 - type: Transform -- uid: 9667 - type: WallReinforced - components: - - pos: -75.5,57.5 - parent: 1 - type: Transform -- uid: 9668 - type: WallReinforced - components: - - pos: -76.5,57.5 - parent: 1 - type: Transform -- uid: 9669 - type: WallReinforced - components: - - pos: -77.5,57.5 - parent: 1 - type: Transform -- uid: 9670 - type: WallReinforced - components: - - pos: -78.5,57.5 - parent: 1 - type: Transform -- uid: 9671 - type: WallReinforced - components: - - pos: -78.5,56.5 - parent: 1 - type: Transform -- uid: 9672 - type: WallReinforced - components: - - pos: -78.5,52.5 - parent: 1 - type: Transform -- uid: 9673 - type: WallReinforced - components: - - pos: -78.5,53.5 - parent: 1 - type: Transform -- uid: 9674 - type: WallReinforced - components: - - pos: -78.5,55.5 - parent: 1 - type: Transform -- uid: 9675 - type: WallReinforced - components: - - pos: -78.5,54.5 - parent: 1 - type: Transform -- uid: 9676 - type: TrumpetInstrument - components: - - pos: -70.39617,45.607796 - parent: 1 - type: Transform -- uid: 9677 - type: WallReinforced - components: - - pos: -82.5,28.5 - parent: 1 - type: Transform -- uid: 9678 - type: WallReinforced - components: - - pos: -83.5,28.5 - parent: 1 - type: Transform -- uid: 9679 - type: WallReinforced - components: - - pos: -86.5,28.5 - parent: 1 - type: Transform -- uid: 9680 - type: WallReinforced - components: - - pos: -85.5,28.5 - parent: 1 - type: Transform -- uid: 9681 - type: Grille - components: - - pos: -77.5,26.5 - parent: 1 - type: Transform -- uid: 9682 - type: ReinforcedWindow - components: - - pos: -77.5,24.5 - parent: 1 - type: Transform -- uid: 9683 - type: Grille - components: - - pos: -77.5,24.5 - parent: 1 - type: Transform -- uid: 9684 - type: Grille - components: - - pos: -80.5,47.5 - parent: 1 - type: Transform -- uid: 9685 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -76.5,17.5 - parent: 1 - type: Transform -- uid: 9686 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -78.5,17.5 - parent: 1 - type: Transform -- uid: 9687 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -77.5,17.5 - parent: 1 - type: Transform -- uid: 9688 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -79.5,17.5 - parent: 1 - type: Transform -- uid: 9689 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -80.5,17.5 - parent: 1 - type: Transform -- uid: 9690 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -81.5,17.5 - parent: 1 - type: Transform -- uid: 9691 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -82.5,17.5 - parent: 1 - type: Transform -- uid: 9692 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -83.5,17.5 - parent: 1 - type: Transform -- uid: 9693 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -83.5,18.5 - parent: 1 - type: Transform -- uid: 9694 - type: WallReinforced - components: - - pos: -83.5,20.5 - parent: 1 - type: Transform -- uid: 9695 - type: WallReinforced - components: - - pos: -83.5,19.5 - parent: 1 - type: Transform -- uid: 9696 - type: ReinforcedWindow - components: - - pos: -86.5,23.5 - parent: 1 - type: Transform -- uid: 9697 - type: ReinforcedWindow - components: - - pos: -86.5,24.5 - parent: 1 - type: Transform -- uid: 9698 - type: ReinforcedWindow - components: - - pos: -86.5,25.5 - parent: 1 - type: Transform -- uid: 9699 - type: ReinforcedWindow - components: - - pos: -86.5,26.5 - parent: 1 - type: Transform -- uid: 9700 - type: ReinforcedWindow - components: - - pos: -86.5,27.5 - parent: 1 - type: Transform -- uid: 9701 - type: Grille - components: - - pos: -86.5,23.5 - parent: 1 - type: Transform -- uid: 9702 - type: Grille - components: - - pos: -86.5,24.5 - parent: 1 - type: Transform -- uid: 9703 - type: Grille - components: - - pos: -86.5,25.5 - parent: 1 - type: Transform -- uid: 9704 - type: Grille - components: - - pos: -86.5,26.5 - parent: 1 - type: Transform -- uid: 9705 - type: Grille - components: - - pos: -86.5,27.5 - parent: 1 - type: Transform -- uid: 9706 - type: WallReinforced - components: - - pos: -83.5,29.5 - parent: 1 - type: Transform -- uid: 9707 - type: WallReinforced - components: - - pos: -83.5,30.5 - parent: 1 - type: Transform -- uid: 9708 - type: WallReinforced - components: - - pos: -83.5,31.5 - parent: 1 - type: Transform -- uid: 9709 - type: WallReinforced - components: - - pos: -84.5,31.5 - parent: 1 - type: Transform -- uid: 9710 - type: WallReinforced - components: - - pos: -85.5,31.5 - parent: 1 - type: Transform -- uid: 9711 - type: WallReinforced - components: - - pos: -86.5,31.5 - parent: 1 - type: Transform -- uid: 9712 - type: WallReinforced - components: - - pos: -86.5,29.5 - parent: 1 - type: Transform -- uid: 9713 - type: WallReinforced - components: - - pos: -84.5,19.5 - parent: 1 - type: Transform -- uid: 9714 - type: WallReinforced - components: - - pos: -85.5,19.5 - parent: 1 - type: Transform -- uid: 9715 - type: WallReinforced - components: - - pos: -86.5,19.5 - parent: 1 - type: Transform -- uid: 9716 - type: WallReinforced - components: - - pos: -86.5,21.5 - parent: 1 - type: Transform -- uid: 9717 - type: WallReinforced - components: - - pos: -75.5,31.5 - parent: 1 - type: Transform -- uid: 9718 - type: WallReinforced - components: - - pos: -75.5,32.5 - parent: 1 - type: Transform -- uid: 9719 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -64.5,35.5 - parent: 1 - type: Transform -- uid: 9720 - type: WallReinforced - components: - - pos: -75.5,30.5 - parent: 1 - type: Transform -- uid: 9721 - type: WallReinforced - components: - - pos: -75.5,27.5 - parent: 1 - type: Transform -- uid: 9722 - type: WallReinforced - components: - - pos: -75.5,28.5 - parent: 1 - type: Transform -- uid: 9723 - type: SpawnPointJanitor - components: - - pos: -52.5,36.5 - parent: 1 - type: Transform -- uid: 9724 - type: SpawnPointBartender - components: - - pos: -31.5,36.5 - parent: 1 - type: Transform -- uid: 9725 - type: SpawnPointBartender - components: - - pos: -31.5,39.5 - parent: 1 - type: Transform -- uid: 9726 - type: VendingBarDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -27.5,38.5 - parent: 1 - type: Transform -- uid: 9727 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: -30.5,40.5 - parent: 1 - type: Transform -- uid: 9728 - type: TableWood - components: - - pos: -30.5,39.5 - parent: 1 - type: Transform -- uid: 9729 - type: TableWood - components: - - pos: -30.5,38.5 - parent: 1 - type: Transform -- uid: 9730 - type: TableWood - components: - - pos: -30.5,36.5 - parent: 1 - type: Transform -- uid: 9731 - type: TableWood - components: - - pos: -30.5,35.5 - parent: 1 - type: Transform -- uid: 9732 - type: LockerBoozeFilled - components: - - pos: -28.5,35.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9733 - type: LockerBoozeFilled - components: - - pos: -28.5,38.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9734 - type: Rack - components: - - pos: -27.5,35.5 - parent: 1 - type: Transform -- uid: 9735 - type: DrinkBottleBeer - components: - - pos: -27.588842,35.58307 - parent: 1 - type: Transform -- uid: 9736 - type: ClothingEyesGlassesSunglasses - components: - - pos: -27.635717,35.723694 - parent: 1 - type: Transform -- uid: 9737 - type: DrinkBottleBeer - components: - - pos: -27.416967,35.64557 - parent: 1 - type: Transform -- uid: 9738 - type: DrinkBottleBeer - components: - - pos: -27.229467,35.567444 - parent: 1 - type: Transform -- uid: 9739 - type: BoozeDispenser - components: - - rot: -1.5707963267948966 rad - pos: -30.5,39.5 - parent: 1 - type: Transform -- uid: 9740 - type: BoozeDispenser - components: - - rot: -1.5707963267948966 rad - pos: -30.5,36.5 - parent: 1 - type: Transform -- uid: 9741 - type: soda_dispenser - components: - - rot: -1.5707963267948966 rad - pos: -30.5,38.5 - parent: 1 - type: Transform -- uid: 9742 - type: soda_dispenser - components: - - rot: -1.5707963267948966 rad - pos: -30.5,35.5 - parent: 1 - type: Transform -- uid: 9743 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: -34.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9744 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: -34.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9745 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: -34.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9746 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: -34.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9747 - type: TableWood - components: - - pos: -41.5,35.5 - parent: 1 - type: Transform -- uid: 9748 - type: TableWood - components: - - pos: -44.5,36.5 - parent: 1 - type: Transform -- uid: 9749 - type: CarpetPurple - components: - - pos: -38.5,38.5 - parent: 1 - type: Transform -- uid: 9750 - type: TableWood - components: - - pos: -38.5,37.5 - parent: 1 - type: Transform -- uid: 9751 - type: TableWood - components: - - pos: -37.5,37.5 - parent: 1 - type: Transform -- uid: 9752 - type: TableWood - components: - - pos: -36.5,37.5 - parent: 1 - type: Transform -- uid: 9753 - type: CarpetPurple - components: - - pos: -44.5,37.5 - parent: 1 - type: Transform -- uid: 9754 - type: CarpetPurple - components: - - pos: -44.5,36.5 - parent: 1 - type: Transform -- uid: 9755 - type: CarpetPurple - components: - - pos: -44.5,35.5 - parent: 1 - type: Transform -- uid: 9756 - type: CarpetPurple - components: - - pos: -42.5,35.5 - parent: 1 - type: Transform -- uid: 9757 - type: CarpetPurple - components: - - pos: -41.5,35.5 - parent: 1 - type: Transform -- uid: 9758 - type: CarpetPurple - components: - - pos: -40.5,35.5 - parent: 1 - type: Transform -- uid: 9759 - type: CarpetPurple - components: - - pos: -38.5,37.5 - parent: 1 - type: Transform -- uid: 9760 - type: CarpetPurple - components: - - pos: -38.5,36.5 - parent: 1 - type: Transform -- uid: 9761 - type: CarpetPurple - components: - - pos: -37.5,38.5 - parent: 1 - type: Transform -- uid: 9762 - type: CarpetPurple - components: - - pos: -37.5,37.5 - parent: 1 - type: Transform -- uid: 9763 - type: CarpetPurple - components: - - pos: -37.5,36.5 - parent: 1 - type: Transform -- uid: 9764 - type: CarpetPurple - components: - - pos: -36.5,38.5 - parent: 1 - type: Transform -- uid: 9765 - type: CarpetPurple - components: - - pos: -36.5,37.5 - parent: 1 - type: Transform -- uid: 9766 - type: CarpetPurple - components: - - pos: -36.5,36.5 - parent: 1 - type: Transform -- uid: 9767 - type: RandomArcade - components: - - pos: -41.5,39.5 - parent: 1 - type: Transform -- uid: 9768 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: -43.5,39.5 - parent: 1 - type: Transform -- uid: 9769 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -42.5,39.5 - parent: 1 - type: Transform -- uid: 9770 - type: TableWood - components: - - pos: -38.5,40.5 - parent: 1 - type: Transform -- uid: 9771 - type: PottedPlantRandom - components: - - pos: -37.5,33.5 - parent: 1 - type: Transform -- uid: 9772 - type: ChairWood - components: - - pos: -44.5,37.5 - parent: 1 - type: Transform -- uid: 9773 - type: ChairCursed - components: - - rot: 3.141592653589793 rad - pos: -44.5,35.5 - parent: 1 - type: Transform -- uid: 9774 - type: ChairRitual - components: - - pos: -38.5,38.5 - parent: 1 - type: Transform -- uid: 9775 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -42.5,35.5 - parent: 1 - type: Transform -- uid: 9776 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -40.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9777 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -38.5,36.5 - parent: 1 - type: Transform -- uid: 9778 - type: ChairCursed - components: - - rot: 3.141592653589793 rad - pos: -36.5,36.5 - parent: 1 - type: Transform -- uid: 9779 - type: ChairFolding - components: - - pos: -37.5,38.5 - parent: 1 - type: Transform -- uid: 9780 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -37.5,36.5 - parent: 1 - type: Transform -- uid: 9781 - type: ChairWood - components: - - pos: -36.5,38.5 - parent: 1 - type: Transform -- uid: 9782 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: -1.5,48.5 - parent: 1 - type: Transform -- uid: 9783 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -37.5,40.5 - parent: 1 - type: Transform -- uid: 9784 - type: FirelockEdge - components: - - pos: -36.5,41.5 - parent: 1 - type: Transform -- uid: 9785 - type: FirelockEdge - components: - - pos: -35.5,41.5 - parent: 1 - type: Transform -- uid: 9786 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -33.5,38.5 - parent: 1 - type: Transform -- uid: 9787 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -33.5,37.5 - parent: 1 - type: Transform -- uid: 9788 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -33.5,36.5 - parent: 1 - type: Transform -- uid: 9789 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -33.5,35.5 - parent: 1 - type: Transform -- uid: 9790 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -39.5,43.5 - parent: 1 - type: Transform -- uid: 9791 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -39.5,44.5 - parent: 1 - type: Transform -- uid: 9792 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -39.5,45.5 - parent: 1 - type: Transform -- uid: 9793 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -39.5,46.5 - parent: 1 - type: Transform -- uid: 9794 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -44.5,42.5 - parent: 1 - type: Transform -- uid: 9795 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -44.5,43.5 - parent: 1 - type: Transform -- uid: 9796 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -44.5,44.5 - parent: 1 - type: Transform -- uid: 9797 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -38.5,33.5 - parent: 1 - type: Transform -- uid: 9798 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -36.5,33.5 - parent: 1 - type: Transform -- uid: 9799 - type: ReinforcedWindow - components: - - pos: -82.5,47.5 - parent: 1 - type: Transform -- uid: 9800 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -46.5,46.5 - parent: 1 - type: Transform -- uid: 9801 - type: Barricade - components: - - pos: -31.5,52.5 - parent: 1 - type: Transform -- uid: 9802 - type: Firelock - components: - - pos: -31.5,51.5 - parent: 1 - type: Transform -- uid: 9803 - type: Firelock - components: - - pos: -25.5,42.5 - parent: 1 - type: Transform -- uid: 9804 - type: Firelock - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform -- uid: 9805 - type: WallReinforced - components: - - pos: 27.5,22.5 - parent: 1 - type: Transform -- uid: 9806 - type: WallReinforced - components: - - pos: 28.5,22.5 - parent: 1 - type: Transform -- uid: 9807 - type: SignTelecomms - components: - - pos: -40.5,7.5 - parent: 1 - type: Transform -- uid: 9808 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -7.5,57.5 - parent: 1 - type: Transform -- uid: 9809 - type: Firelock - components: - - pos: -5.5,46.5 - parent: 1 - type: Transform -- uid: 9810 - type: Firelock - components: - - pos: -5.5,47.5 - parent: 1 - type: Transform -- uid: 9811 - type: Firelock - components: - - pos: 12.5,40.5 - parent: 1 - type: Transform -- uid: 9812 - type: Firelock - components: - - pos: 12.5,39.5 - parent: 1 - type: Transform -- uid: 9813 - type: Firelock - components: - - pos: 14.5,44.5 - parent: 1 - type: Transform -- uid: 9814 - type: Firelock - components: - - pos: 15.5,44.5 - parent: 1 - type: Transform -- uid: 9815 - type: Firelock - components: - - pos: -3.5,38.5 - parent: 1 - type: Transform -- uid: 9816 - type: Firelock - components: - - pos: -2.5,38.5 - parent: 1 - type: Transform -- uid: 9817 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -22.5,34.5 - parent: 1 - type: Transform -- uid: 9818 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -17.5,35.5 - parent: 1 - type: Transform -- uid: 9819 - type: FirelockGlass - components: - - pos: -19.5,36.5 - parent: 1 - type: Transform -- uid: 9820 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -24.5,34.5 - parent: 1 - type: Transform -- uid: 9821 - type: Grille - components: - - pos: -79.5,47.5 - parent: 1 - type: Transform -- uid: 9822 - type: WallReinforced - components: - - pos: -75.5,29.5 - parent: 1 - type: Transform -- uid: 9823 - type: WallReinforced - components: - - pos: -76.5,27.5 - parent: 1 - type: Transform -- uid: 9824 - type: ReinforcedWindow - components: - - pos: -79.5,47.5 - parent: 1 - type: Transform -- uid: 9825 - type: WallReinforced - components: - - pos: -78.5,47.5 - parent: 1 - type: Transform -- uid: 9826 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -77.5,50.5 - parent: 1 - type: Transform -- uid: 9827 - type: WallReinforced - components: - - pos: -78.5,49.5 - parent: 1 - type: Transform -- uid: 9828 - type: WallReinforced - components: - - pos: -78.5,50.5 - parent: 1 - type: Transform -- uid: 9829 - type: WallReinforced - components: - - pos: -78.5,51.5 - parent: 1 - type: Transform -- uid: 9830 - type: ReinforcedWindow - components: - - pos: -84.5,47.5 - parent: 1 - type: Transform -- uid: 9831 - type: ReinforcedWindow - components: - - pos: -83.5,47.5 - parent: 1 - type: Transform -- uid: 9832 - type: ReinforcedWindow - components: - - pos: -81.5,47.5 - parent: 1 - type: Transform -- uid: 9833 - type: ReinforcedWindow - components: - - pos: -80.5,47.5 - parent: 1 - type: Transform -- uid: 9834 - type: ReinforcedWindow - components: - - pos: -85.5,47.5 - parent: 1 - type: Transform -- uid: 9835 - type: ReinforcedWindow - components: - - pos: -85.5,46.5 - parent: 1 - type: Transform -- uid: 9836 - type: ReinforcedWindow - components: - - pos: -85.5,45.5 - parent: 1 - type: Transform -- uid: 9837 - type: ReinforcedWindow - components: - - pos: -85.5,44.5 - parent: 1 - type: Transform -- uid: 9838 - type: ReinforcedWindow - components: - - pos: -85.5,43.5 - parent: 1 - type: Transform -- uid: 9839 - type: ReinforcedWindow - components: - - pos: -85.5,42.5 - parent: 1 - type: Transform -- uid: 9840 - type: ReinforcedWindow - components: - - pos: -85.5,41.5 - parent: 1 - type: Transform -- uid: 9841 - type: ReinforcedWindow - components: - - pos: -85.5,40.5 - parent: 1 - type: Transform -- uid: 9842 - type: ReinforcedWindow - components: - - pos: -85.5,39.5 - parent: 1 - type: Transform -- uid: 9843 - type: ReinforcedWindow - components: - - pos: -85.5,38.5 - parent: 1 - type: Transform -- uid: 9844 - type: ReinforcedWindow - components: - - pos: -85.5,37.5 - parent: 1 - type: Transform -- uid: 9845 - type: ReinforcedWindow - components: - - pos: -85.5,36.5 - parent: 1 - type: Transform -- uid: 9846 - type: ReinforcedWindow - components: - - pos: -85.5,35.5 - parent: 1 - type: Transform -- uid: 9847 - type: ReinforcedWindow - components: - - pos: -85.5,34.5 - parent: 1 - type: Transform -- uid: 9848 - type: WallReinforced - components: - - pos: -73.5,9.5 - parent: 1 - type: Transform -- uid: 9849 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -52.5,41.5 - parent: 1 - type: Transform -- uid: 9850 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -50.5,36.5 - parent: 1 - type: Transform -- uid: 9851 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -31.5,55.5 - parent: 1 - type: Transform -- uid: 9852 - type: WallReinforced - components: - - pos: -73.5,8.5 - parent: 1 - type: Transform -- uid: 9853 - type: WallReinforced - components: - - pos: -76.5,41.5 - parent: 1 - type: Transform -- uid: 9854 - type: CableHV - components: - - pos: -69.5,23.5 - parent: 1 - type: Transform -- uid: 9855 - type: Grille - components: - - pos: -69.5,18.5 - parent: 1 - type: Transform -- uid: 9856 - type: Grille - components: - - pos: -68.5,18.5 - parent: 1 - type: Transform -- uid: 9857 - type: WallReinforced - components: - - pos: -72.5,28.5 - parent: 1 - type: Transform -- uid: 9858 - type: WallReinforced - components: - - pos: -72.5,27.5 - parent: 1 - type: Transform -- uid: 9859 - type: CableHV - components: - - pos: -69.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9860 - type: CableHV - components: - - pos: -79.5,26.5 - parent: 1 - type: Transform -- uid: 9861 - type: WallReinforced - components: - - pos: -75.5,16.5 - parent: 1 - type: Transform -- uid: 9862 - type: WallReinforced - components: - - pos: -75.5,15.5 - parent: 1 - type: Transform -- uid: 9863 - type: WallReinforced - components: - - pos: -75.5,14.5 - parent: 1 - type: Transform -- uid: 9864 - type: WallReinforced - components: - - pos: -74.5,14.5 - parent: 1 - type: Transform -- uid: 9865 - type: WallReinforced - components: - - pos: -73.5,14.5 - parent: 1 - type: Transform -- uid: 9866 - type: WallReinforced - components: - - pos: -72.5,14.5 - parent: 1 - type: Transform -- uid: 9867 - type: WallReinforced - components: - - pos: -71.5,14.5 - parent: 1 - type: Transform -- uid: 9868 - type: WallReinforced - components: - - pos: -70.5,14.5 - parent: 1 - type: Transform -- uid: 9869 - type: WallReinforced - components: - - pos: -69.5,14.5 - parent: 1 - type: Transform -- uid: 9870 - type: WallReinforced - components: - - pos: -68.5,14.5 - parent: 1 - type: Transform -- uid: 9871 - type: WallReinforced - components: - - pos: -67.5,14.5 - parent: 1 - type: Transform -- uid: 9872 - type: WallReinforced - components: - - pos: -67.5,15.5 - parent: 1 - type: Transform -- uid: 9873 - type: WallReinforced - components: - - pos: -67.5,16.5 - parent: 1 - type: Transform -- uid: 9874 - type: WallReinforced - components: - - pos: -67.5,17.5 - parent: 1 - type: Transform -- uid: 9875 - type: Grille - components: - - pos: -81.5,47.5 - parent: 1 - type: Transform -- uid: 9876 - type: Grille - components: - - pos: -82.5,47.5 - parent: 1 - type: Transform -- uid: 9877 - type: Grille - components: - - pos: -83.5,47.5 - parent: 1 - type: Transform -- uid: 9878 - type: Grille - components: - - pos: -84.5,47.5 - parent: 1 - type: Transform -- uid: 9879 - type: Grille - components: - - pos: -85.5,47.5 - parent: 1 - type: Transform -- uid: 9880 - type: Grille - components: - - pos: -85.5,46.5 - parent: 1 - type: Transform -- uid: 9881 - type: Grille - components: - - pos: -85.5,45.5 - parent: 1 - type: Transform -- uid: 9882 - type: Grille - components: - - pos: -85.5,44.5 - parent: 1 - type: Transform -- uid: 9883 - type: Grille - components: - - pos: -85.5,43.5 - parent: 1 - type: Transform -- uid: 9884 - type: Grille - components: - - pos: -85.5,42.5 - parent: 1 - type: Transform -- uid: 9885 - type: Grille - components: - - pos: -85.5,41.5 - parent: 1 - type: Transform -- uid: 9886 - type: Grille - components: - - pos: -85.5,40.5 - parent: 1 - type: Transform -- uid: 9887 - type: Grille - components: - - pos: -85.5,39.5 - parent: 1 - type: Transform -- uid: 9888 - type: Grille - components: - - pos: -85.5,38.5 - parent: 1 - type: Transform -- uid: 9889 - type: Grille - components: - - pos: -85.5,37.5 - parent: 1 - type: Transform -- uid: 9890 - type: Grille - components: - - pos: -85.5,36.5 - parent: 1 - type: Transform -- uid: 9891 - type: Grille - components: - - pos: -85.5,35.5 - parent: 1 - type: Transform -- uid: 9892 - type: Grille - components: - - pos: -85.5,34.5 - parent: 1 - type: Transform -- uid: 9893 - type: ReinforcedWindow - components: - - pos: -85.5,33.5 - parent: 1 - type: Transform -- uid: 9894 - type: WallReinforced - components: - - pos: -85.5,32.5 - parent: 1 - type: Transform -- uid: 9895 - type: WallSolid - components: - - pos: -72.5,7.5 - parent: 1 - type: Transform -- uid: 9896 - type: WallSolid - components: - - pos: -71.5,7.5 - parent: 1 - type: Transform -- uid: 9897 - type: WallSolidRust - components: - - pos: -59.5,20.5 - parent: 1 - type: Transform -- uid: 9898 - type: WallSolid - components: - - pos: -59.5,28.5 - parent: 1 - type: Transform -- uid: 9899 - type: WallSolidRust - components: - - pos: -59.5,17.5 - parent: 1 - type: Transform -- uid: 9900 - type: WallSolid - components: - - pos: -59.5,26.5 - parent: 1 - type: Transform -- uid: 9901 - type: Girder - components: - - pos: -59.5,22.5 - parent: 1 - type: Transform -- uid: 9902 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -59.5,24.5 - parent: 1 - type: Transform -- uid: 9903 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -59.5,25.5 - parent: 1 - type: Transform -- uid: 9904 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -59.5,40.5 - parent: 1 - type: Transform -- uid: 9905 - type: WallSolid - components: - - pos: -59.5,21.5 - parent: 1 - type: Transform -- uid: 9906 - type: WallSolidRust - components: - - pos: -59.5,14.5 - parent: 1 - type: Transform -- uid: 9907 - type: WallSolid - components: - - pos: -59.5,19.5 - parent: 1 - type: Transform -- uid: 9908 - type: WallSolid - components: - - pos: -59.5,18.5 - parent: 1 - type: Transform -- uid: 9909 - type: WallSolid - components: - - pos: -59.5,15.5 - parent: 1 - type: Transform -- uid: 9910 - type: WallSolid - components: - - pos: -59.5,16.5 - parent: 1 - type: Transform -- uid: 9911 - type: WallSolidRust - components: - - pos: -59.5,13.5 - parent: 1 - type: Transform -- uid: 9912 - type: Girder - components: - - pos: -59.5,11.5 - parent: 1 - type: Transform -- uid: 9913 - type: GrilleBroken - components: - - pos: -59.5,10.5 - parent: 1 - type: Transform -- uid: 9914 - type: WallSolid - components: - - pos: -59.5,12.5 - parent: 1 - type: Transform -- uid: 9915 - type: WallSolidRust - components: - - pos: -60.5,9.5 - parent: 1 - type: Transform -- uid: 9916 - type: WallSolidRust - components: - - pos: -61.5,9.5 - parent: 1 - type: Transform -- uid: 9917 - type: WallSolid - components: - - pos: -59.5,9.5 - parent: 1 - type: Transform -- uid: 9918 - type: WallSolid - components: - - pos: -59.5,8.5 - parent: 1 - type: Transform -- uid: 9919 - type: WallSolid - components: - - pos: -68.5,13.5 - parent: 1 - type: Transform -- uid: 9920 - type: WallReinforced - components: - - pos: -26.5,57.5 - parent: 1 - type: Transform -- uid: 9921 - type: WallSolid - components: - - pos: -68.5,11.5 - parent: 1 - type: Transform -- uid: 9922 - type: WallSolid - components: - - pos: -68.5,10.5 - parent: 1 - type: Transform -- uid: 9923 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -64.5,12.5 - parent: 1 - type: Transform -- uid: 9924 - type: WallSolid - components: - - pos: -68.5,8.5 - parent: 1 - type: Transform -- uid: 9925 - type: WallSolidRust - components: - - pos: -63.5,9.5 - parent: 1 - type: Transform -- uid: 9926 - type: Girder - components: - - pos: -65.5,9.5 - parent: 1 - type: Transform -- uid: 9927 - type: WallSolid - components: - - pos: -62.5,9.5 - parent: 1 - type: Transform -- uid: 9928 - type: WallSolidRust - components: - - pos: -65.5,10.5 - parent: 1 - type: Transform -- uid: 9929 - type: WallSolid - components: - - pos: -64.5,9.5 - parent: 1 - type: Transform -- uid: 9930 - type: WallSolidRust - components: - - pos: -65.5,11.5 - parent: 1 - type: Transform -- uid: 9931 - type: WallSolidRust - components: - - pos: -65.5,15.5 - parent: 1 - type: Transform -- uid: 9932 - type: WallSolidRust - components: - - pos: -61.5,15.5 - parent: 1 - type: Transform -- uid: 9933 - type: WallSolid - components: - - pos: -65.5,12.5 - parent: 1 - type: Transform -- uid: 9934 - type: WallSolid - components: - - pos: -65.5,13.5 - parent: 1 - type: Transform -- uid: 9935 - type: WallSolid - components: - - pos: -65.5,14.5 - parent: 1 - type: Transform -- uid: 9936 - type: DrinkMugRed - components: - - pos: -54.27973,64.43562 - parent: 1 - type: Transform -- uid: 9937 - type: WallSolid - components: - - pos: -64.5,15.5 - parent: 1 - type: Transform -- uid: 9938 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -64.5,13.5 - parent: 1 - type: Transform -- uid: 9939 - type: WallSolid - components: - - pos: -62.5,15.5 - parent: 1 - type: Transform -- uid: 9940 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -69.5,26.5 - parent: 1 - type: Transform -- uid: 9941 - type: WallSolid - components: - - pos: -60.5,15.5 - parent: 1 - type: Transform -- uid: 9942 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -64.5,11.5 - parent: 1 - type: Transform -- uid: 9943 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -64.5,10.5 - parent: 1 - type: Transform -- uid: 9944 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -63.5,10.5 - parent: 1 - type: Transform -- uid: 9945 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -63.5,11.5 - parent: 1 - type: Transform -- uid: 9946 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -63.5,12.5 - parent: 1 - type: Transform -- uid: 9947 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -63.5,13.5 - parent: 1 - type: Transform -- uid: 9948 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -64.5,14.5 - parent: 1 - type: Transform -- uid: 9949 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -81.5,22.5 - parent: 1 - type: Transform -- uid: 9950 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -80.5,22.5 - parent: 1 - type: Transform -- uid: 9951 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -75.5,33.5 - parent: 1 - type: Transform -- uid: 9952 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -74.5,36.5 - parent: 1 - type: Transform -- uid: 9953 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -68.5,35.5 - parent: 1 - type: Transform -- uid: 9954 - type: ToiletEmpty - components: - - pos: -61.5,42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9955 - type: ShuttersNormal - components: - - pos: -79.5,21.5 - parent: 1 - type: Transform -- uid: 9956 - type: ShuttersRadiationOpen - components: - - pos: -76.5,24.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9959 - type: SignalReceiver -- uid: 9957 - type: ShuttersRadiationOpen - components: - - pos: -76.5,25.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9959 - type: SignalReceiver -- uid: 9958 - type: ShuttersRadiationOpen - components: - - pos: -76.5,26.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9959 - type: SignalReceiver -- uid: 9959 - type: SignalButton - components: - - pos: -75.5,27.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9958 - - port: Toggle - uid: 9957 - - port: Toggle - uid: 9956 - type: SignalTransmitter -- uid: 9960 - type: ParticleAcceleratorComputerCircuitboard - components: - - pos: -81.535706,22.686981 - parent: 1 - type: Transform -- uid: 9961 - type: MachineParticleAcceleratorEmitterCenterCircuitboard - components: - - pos: -81.52008,22.452606 - parent: 1 - type: Transform -- uid: 9962 - type: MachineParticleAcceleratorEmitterLeftCircuitboard - components: - - pos: -80.98883,22.780731 - parent: 1 - type: Transform -- uid: 9963 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9964 - type: MachineParticleAcceleratorEmitterRightCircuitboard - components: - - pos: -81.02008,22.515106 - parent: 1 - type: Transform -- uid: 9965 - type: MachineParticleAcceleratorEndCapCircuitboard - components: - - pos: -80.45758,22.765106 - parent: 1 - type: Transform -- uid: 9966 - type: MachineParticleAcceleratorFuelChamberCircuitboard - components: - - pos: -80.473206,22.483856 - parent: 1 - type: Transform -- uid: 9967 - type: MachineParticleAcceleratorPowerBoxCircuitboard - components: - - pos: -81.004456,22.608856 - parent: 1 - type: Transform -- uid: 9968 - type: MachineFrame - components: - - pos: -84.5,26.5 - parent: 1 - type: Transform -- uid: 9969 - type: MachineFrame - components: - - pos: -84.5,25.5 - parent: 1 - type: Transform -- uid: 9970 - type: MachineFrame - components: - - pos: -84.5,24.5 - parent: 1 - type: Transform -- uid: 9971 - type: MachineFrame - components: - - pos: -83.5,25.5 - parent: 1 - type: Transform -- uid: 9972 - type: MachineFrame - components: - - pos: -82.5,25.5 - parent: 1 - type: Transform -- uid: 9973 - type: MachineFrame - components: - - pos: -81.5,25.5 - parent: 1 - type: Transform -- uid: 9974 - type: ComputerFrame - components: - - rot: 1.5707963267948966 rad - pos: -82.5,26.5 - parent: 1 - type: Transform -- uid: 9975 - type: PlasmaTankFilled - components: - - pos: -82.50182,22.490105 - parent: 1 - type: Transform -- uid: 9976 - type: SingularityGenerator - components: - - pos: -77.5,22.5 - parent: 1 - type: Transform -- uid: 9977 - type: Rack - components: - - pos: -76.5,22.5 - parent: 1 - type: Transform -- uid: 9978 - type: AMEJar - components: - - pos: -76.5754,22.508444 - parent: 1 - type: Transform -- uid: 9979 - type: AMEJar - components: - - pos: -76.3254,22.508444 - parent: 1 - type: Transform -- uid: 9980 - type: CrateMaterialSteel - components: - - pos: -82.5,20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9981 - type: CrateMaterialGlass - components: - - pos: -82.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9982 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: -78.5,18.5 - parent: 1 - type: Transform -- uid: 9983 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: -77.5,18.5 - parent: 1 - type: Transform -- uid: 9984 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: -76.5,18.5 - parent: 1 - type: Transform -- uid: 9985 - type: ContainmentFieldGenerator - components: - - rot: -1.5707963267948966 rad - pos: -82.5,18.5 - parent: 1 - type: Transform -- uid: 9986 - type: ContainmentFieldGenerator - components: - - rot: -1.5707963267948966 rad - pos: -81.5,18.5 - parent: 1 - type: Transform -- uid: 9987 - type: ContainmentFieldGenerator - components: - - rot: -1.5707963267948966 rad - pos: -80.5,18.5 - parent: 1 - type: Transform -- uid: 9988 - type: ContainmentFieldGenerator - components: - - rot: -1.5707963267948966 rad - pos: -79.5,18.5 - parent: 1 - type: Transform -- uid: 9989 - type: SpawnPointHeadOfSecurity - components: - - pos: -61.5,64.5 - parent: 1 - type: Transform -- uid: 9990 - type: SpawnPointSecurityOfficer - components: - - pos: -62.5,54.5 - parent: 1 - type: Transform -- uid: 9991 - type: SpawnPointSecurityOfficer - components: - - pos: -62.5,52.5 - parent: 1 - type: Transform -- uid: 9992 - type: SpawnPointSecurityOfficer - components: - - pos: -60.5,52.5 - parent: 1 - type: Transform -- uid: 9993 - type: SpawnPointSecurityOfficer - components: - - pos: -60.5,54.5 - parent: 1 - type: Transform -- uid: 9994 - type: SpawnPointSecurityCadet - components: - - pos: -55.5,56.5 - parent: 1 - type: Transform -- uid: 9995 - type: SpawnPointSecurityCadet - components: - - pos: -53.5,56.5 - parent: 1 - type: Transform -- uid: 9996 - type: SpawnPointSecurityCadet - components: - - pos: -51.5,56.5 - parent: 1 - type: Transform -- uid: 9997 - type: SpawnPointLawyer - components: - - pos: -53.5,54.5 - parent: 1 - type: Transform -- uid: 9998 - type: CableHV - components: - - pos: -59.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9999 - type: CableHV - components: - - pos: -60.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10000 - type: CableHV - components: - - pos: -61.5,47.5 - parent: 1 - type: Transform -- uid: 10001 - type: CableHV - components: - - pos: -62.5,47.5 - parent: 1 - type: Transform -- uid: 10002 - type: CableHV - components: - - pos: -63.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10003 - type: CableHV - components: - - pos: -64.5,47.5 - parent: 1 - type: Transform -- uid: 10004 - type: CableHV - components: - - pos: -65.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10005 - type: CableHV - components: - - pos: -66.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10006 - type: CableHV - components: - - pos: -66.5,49.5 - parent: 1 - type: Transform -- uid: 10007 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: -71.5,35.5 - parent: 1 - type: Transform -- uid: 10008 - type: CableHV - components: - - pos: -66.5,50.5 - parent: 1 - type: Transform -- uid: 10009 - type: CableHV - components: - - pos: -67.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10010 - type: CableHV - components: - - pos: -67.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10011 - type: CableHV - components: - - pos: -67.5,52.5 - parent: 1 - type: Transform -- uid: 10012 - type: CableHV - components: - - pos: -67.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10013 - type: CableHV - components: - - pos: -67.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10014 - type: CableHV - components: - - pos: -67.5,55.5 - parent: 1 - type: Transform -- uid: 10015 - type: CableHV - components: - - pos: -67.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10016 - type: CableHV - components: - - pos: -67.5,57.5 - parent: 1 - type: Transform -- uid: 10017 - type: CableHV - components: - - pos: -66.5,57.5 - parent: 1 - type: Transform -- uid: 10018 - type: CableHV - components: - - pos: -65.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10019 - type: CableHV - components: - - pos: -65.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10020 - type: CableHV - components: - - pos: -65.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10021 - type: CableMV - components: - - pos: -65.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10022 - type: CableMV - components: - - pos: -65.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10023 - type: CableHV - components: - - pos: -60.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10024 - type: CableHV - components: - - pos: -60.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10025 - type: CableHV - components: - - pos: -60.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10026 - type: CableHV - components: - - pos: -65.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10027 - type: CableHV - components: - - pos: -66.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10028 - type: CableHV - components: - - pos: -66.5,37.5 - parent: 1 - type: Transform -- uid: 10029 - type: CableHV - components: - - pos: -66.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10030 - type: CableHV - components: - - pos: -66.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10031 - type: CableHV - components: - - pos: -66.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10032 - type: CableHV - components: - - pos: -66.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10033 - type: CableHV - components: - - pos: -66.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10034 - type: CableHV - components: - - pos: -66.5,43.5 - parent: 1 - type: Transform -- uid: 10035 - type: CableHV - components: - - pos: -66.5,44.5 - parent: 1 - type: Transform -- uid: 10036 - type: CableHV - components: - - pos: -60.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10037 - type: CableHV - components: - - pos: -60.5,35.5 - parent: 1 - type: Transform -- uid: 10038 - type: CableHV - components: - - pos: -60.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10039 - type: CableHV - components: - - pos: -60.5,33.5 - parent: 1 - type: Transform -- uid: 10040 - type: CableHV - components: - - pos: -60.5,32.5 - parent: 1 - type: Transform -- uid: 10041 - type: AirCanister - components: - - pos: 14.5,43.5 - parent: 1 - type: Transform -- uid: 10042 - type: CableHV - components: - - pos: -60.5,31.5 - parent: 1 - type: Transform -- uid: 10043 - type: CableHV - components: - - pos: -60.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10044 - type: RandomPosterLegit - components: - - pos: -54.5,34.5 - parent: 1 - type: Transform -- uid: 10045 - type: CableHV - components: - - pos: -60.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10046 - type: RandomPosterLegit - components: - - pos: -55.5,17.5 - parent: 1 - type: Transform -- uid: 10047 - type: CableHV - components: - - pos: -60.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10048 - type: RandomPosterLegit - components: - - pos: -68.5,7.5 - parent: 1 - type: Transform -- uid: 10049 - type: RandomPosterLegit - components: - - pos: -55.5,-2.5 - parent: 1 - type: Transform -- uid: 10050 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 9.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10051 - type: RandomPosterLegit - components: - - pos: -43.5,7.5 - parent: 1 - type: Transform -- uid: 10052 - type: RandomPosterLegit - components: - - pos: -27.5,3.5 - parent: 1 - type: Transform -- uid: 10053 - type: RandomPosterLegit - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform -- uid: 10054 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10055 - type: RandomPosterLegit - components: - - pos: 14.5,4.5 - parent: 1 - type: Transform -- uid: 10056 - type: RandomPosterLegit - components: - - pos: 24.5,8.5 - parent: 1 - type: Transform -- uid: 10057 - type: RandomPosterLegit - components: - - pos: 29.5,19.5 - parent: 1 - type: Transform -- uid: 10058 - type: RandomPosterLegit - components: - - pos: -14.5,15.5 - parent: 1 - type: Transform -- uid: 10059 - type: RandomPosterLegit - components: - - pos: -10.5,26.5 - parent: 1 - type: Transform -- uid: 10060 - type: PosterLegitHereForYourSafety - components: - - pos: -18.5,28.5 - parent: 1 - type: Transform -- uid: 10061 - type: RandomPosterLegit - components: - - pos: -49.5,41.5 - parent: 1 - type: Transform -- uid: 10062 - type: RandomPosterLegit - components: - - pos: -12.5,45.5 - parent: 1 - type: Transform -- uid: 10063 - type: PottedPlantRandom - components: - - pos: -39.5,39.5 - parent: 1 - type: Transform -- uid: 10064 - type: RandomPosterLegit - components: - - pos: -39.5,25.5 - parent: 1 - type: Transform -- uid: 10065 - type: RandomPosterLegit - components: - - pos: -35.5,14.5 - parent: 1 - type: Transform -- uid: 10066 - type: RandomPosterLegit - components: - - pos: -30.5,30.5 - parent: 1 - type: Transform -- uid: 10067 - type: RandomPosterLegit - components: - - pos: -8.5,35.5 - parent: 1 - type: Transform -- uid: 10068 - type: RandomPosterAny - components: - - pos: -4.5,41.5 - parent: 1 - type: Transform -- uid: 10069 - type: RandomPosterAny - components: - - pos: 5.5,48.5 - parent: 1 - type: Transform -- uid: 10070 - type: RandomPosterAny - components: - - pos: 13.5,42.5 - parent: 1 - type: Transform -- uid: 10071 - type: RandomPosterAny - components: - - pos: 22.5,36.5 - parent: 1 - type: Transform -- uid: 10072 - type: GasPipeStraight - components: - - pos: 10.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10073 - type: RandomPosterAny - components: - - pos: 25.5,-3.5 - parent: 1 - type: Transform -- uid: 10074 - type: RandomPosterAny - components: - - pos: 12.5,-8.5 - parent: 1 - type: Transform -- uid: 10075 - type: RandomPosterAny - components: - - pos: -22.5,-6.5 - parent: 1 - type: Transform -- uid: 10076 - type: RandomPosterAny - components: - - pos: -49.5,-5.5 - parent: 1 - type: Transform -- uid: 10077 - type: CableHV - components: - - pos: -60.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10078 - type: CableHV - components: - - pos: -60.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10079 - type: CableHV - components: - - pos: -60.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10080 - type: PosterLegit50thAnniversaryVintageReprint - components: - - pos: -12.5,-0.5 - parent: 1 - type: Transform -- uid: 10081 - type: PosterLegitScience - components: - - pos: -12.5,-9.5 - parent: 1 - type: Transform -- uid: 10082 - type: BannerScience - components: - - pos: -11.5,0.5 - parent: 1 - type: Transform -- uid: 10083 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 6.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10084 - type: GasPipeTJunction - components: - - pos: 7.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10085 - type: PosterContrabandMissingGloves - components: - - pos: -24.5,25.5 - parent: 1 - type: Transform -- uid: 10086 - type: PosterLegitLoveIan - components: - - pos: -23.5,39.5 - parent: 1 - type: Transform -- uid: 10087 - type: PosterLegitLoveIan - components: - - pos: -18.5,40.5 - parent: 1 - type: Transform -- uid: 10088 - type: RandomPosterAny - components: - - pos: -46.5,22.5 - parent: 1 - type: Transform -- uid: 10089 - type: PosterLegitJustAWeekAway - components: - - pos: -49.5,16.5 - parent: 1 - type: Transform -- uid: 10090 - type: CableHV - components: - - pos: -60.5,24.5 - parent: 1 - type: Transform -- uid: 10091 - type: CableHV - components: - - pos: -60.5,23.5 - parent: 1 - type: Transform -- uid: 10092 - type: OxygenCanister - components: - - pos: 14.5,41.5 - parent: 1 - type: Transform -- uid: 10093 - type: OxygenCanister - components: - - pos: -48.5,18.5 - parent: 1 - type: Transform -- uid: 10094 - type: NitrogenCanister - components: - - pos: 14.5,42.5 - parent: 1 - type: Transform -- uid: 10095 - type: Table - components: - - pos: -13.5,-7.5 - parent: 1 - type: Transform -- uid: 10096 - type: CableHV - components: - - pos: -60.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10097 - type: CableHV - components: - - pos: -60.5,21.5 - parent: 1 - type: Transform -- uid: 10098 - type: CableHV - components: - - pos: -60.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10099 - type: NitrogenCanister - components: - - pos: -41.5,54.5 - parent: 1 - type: Transform -- uid: 10100 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -3.5,41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10101 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: 22.5,28.5 - parent: 1 - type: Transform -- uid: 10103 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 4.5,49.5 - parent: 1 - type: Transform -- uid: 10104 - type: CableHV - components: - - pos: -61.5,17.5 - parent: 1 - type: Transform -- uid: 10105 - type: CableHV - components: - - pos: -62.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10106 - type: CableHV - components: - - pos: -63.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10107 - type: CableHV - components: - - pos: -64.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10108 - type: CableHV - components: - - pos: -65.5,17.5 - parent: 1 - type: Transform -- uid: 10109 - type: CableHV - components: - - pos: -66.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10110 - type: CableHV - components: - - pos: -66.5,16.5 - parent: 1 - type: Transform -- uid: 10111 - type: CableHV - components: - - pos: -66.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10112 - type: CableHV - components: - - pos: -66.5,14.5 - parent: 1 - type: Transform -- uid: 10113 - type: CableHV - components: - - pos: -66.5,13.5 - parent: 1 - type: Transform -- uid: 10114 - type: CableHV - components: - - pos: -66.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10115 - type: CableHV - components: - - pos: -66.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10116 - type: CableHV - components: - - pos: -66.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10117 - type: CableHV - components: - - pos: -66.5,9.5 - parent: 1 - type: Transform -- uid: 10118 - type: CableHV - components: - - pos: -66.5,8.5 - parent: 1 - type: Transform -- uid: 10119 - type: CableHV - components: - - pos: -65.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10120 - type: CableHV - components: - - pos: -64.5,8.5 - parent: 1 - type: Transform -- uid: 10121 - type: CableHV - components: - - pos: -63.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10122 - type: CableHV - components: - - pos: -62.5,8.5 - parent: 1 - type: Transform -- uid: 10123 - type: CableHV - components: - - pos: -61.5,8.5 - parent: 1 - type: Transform -- uid: 10124 - type: CableHV - components: - - pos: -60.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10125 - type: CableHV - components: - - pos: -59.5,32.5 - parent: 1 - type: Transform -- uid: 10126 - type: CableHV - components: - - pos: -62.5,36.5 - parent: 1 - type: Transform -- uid: 10127 - type: AirCanister - components: - - pos: -39.5,54.5 - parent: 1 - type: Transform -- uid: 10128 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -42.5,54.5 - parent: 1 - type: Transform -- uid: 10129 - type: OxygenCanister - components: - - pos: -40.5,54.5 - parent: 1 - type: Transform -- uid: 10130 - type: CableHV - components: - - pos: -66.5,47.5 - parent: 1 - type: Transform -- uid: 10131 - type: CableHV - components: - - pos: -61.5,36.5 - parent: 1 - type: Transform -- uid: 10132 - type: CableHV - components: - - pos: -66.5,45.5 - parent: 1 - type: Transform -- uid: 10133 - type: CableHV - components: - - pos: -66.5,46.5 - parent: 1 - type: Transform -- uid: 10134 - type: CableHV - components: - - pos: -63.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10135 - type: CableHV - components: - - pos: -63.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10136 - type: CableHV - components: - - pos: -63.5,34.5 - parent: 1 - type: Transform -- uid: 10137 - type: CableHV - components: - - pos: -63.5,33.5 - parent: 1 - type: Transform -- uid: 10138 - type: CableHV - components: - - pos: -63.5,32.5 - parent: 1 - type: Transform -- uid: 10139 - type: CableHV - components: - - pos: -62.5,32.5 - parent: 1 - type: Transform -- uid: 10140 - type: CableHV - components: - - pos: -61.5,32.5 - parent: 1 - type: Transform -- uid: 10141 - type: SubstationBasic - components: - - pos: -65.5,59.5 - parent: 1 - type: Transform -- uid: 10142 - type: AirlockEngineeringLocked - components: - - pos: -65.5,58.5 - parent: 1 - type: Transform -- uid: 10143 - type: Grille - components: - - pos: -73.5,18.5 - parent: 1 - type: Transform -- uid: 10144 - type: FloorDrain - components: - - rot: -1.5707963267948966 rad - pos: -51.5,36.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 10145 - type: CrateEngineeringCableBulk - components: - - pos: -69.5,25.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10146 - type: Catwalk - components: - - pos: -70.5,31.5 - parent: 1 - type: Transform -- uid: 10147 - type: SMESBasic - components: - - pos: -71.5,28.5 - parent: 1 - type: Transform -- uid: 10148 - type: SMESBasic - components: - - pos: -71.5,29.5 - parent: 1 - type: Transform -- uid: 10149 - type: SMESBasic - components: - - pos: -71.5,30.5 - parent: 1 - type: Transform -- uid: 10150 - type: CableHV - components: - - pos: -65.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10151 - type: CableHV - components: - - pos: -66.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10152 - type: CableHV - components: - - pos: -67.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10153 - type: CableHV - components: - - pos: -68.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10154 - type: CableHV - components: - - pos: -69.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10155 - type: CableApcExtension - components: - - pos: -51.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10156 - type: CableHV - components: - - pos: -70.5,21.5 - parent: 1 - type: Transform -- uid: 10157 - type: CableHV - components: - - pos: -64.5,21.5 - parent: 1 - type: Transform -- uid: 10158 - type: Grille - components: - - pos: -70.5,18.5 - parent: 1 - type: Transform -- uid: 10159 - type: ReinforcedWindow - components: - - pos: -70.5,18.5 - parent: 1 - type: Transform -- uid: 10160 - type: Grille - components: - - pos: -69.5,27.5 - parent: 1 - type: Transform -- uid: 10161 - type: CableHV - components: - - pos: -70.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10162 - type: CableHV - components: - - pos: -71.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10163 - type: CableHV - components: - - pos: -70.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10164 - type: Grille - components: - - pos: -69.5,24.5 - parent: 1 - type: Transform -- uid: 10165 - type: SMESBasic - components: - - pos: -71.5,31.5 - parent: 1 - type: Transform -- uid: 10166 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -71.5,27.5 - parent: 1 - type: Transform -- uid: 10167 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: -70.5,29.5 - parent: 1 - type: Transform -- uid: 10168 - type: CableHV - components: - - pos: -70.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10169 - type: CableHV - components: - - pos: -71.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10170 - type: CableHV - components: - - pos: -71.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10171 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: -70.5,31.5 - parent: 1 - type: Transform -- uid: 10172 - type: ReinforcedWindow - components: - - pos: -69.5,24.5 - parent: 1 - type: Transform -- uid: 10173 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: -70.5,30.5 - parent: 1 - type: Transform -- uid: 10174 - type: CableHV - components: - - pos: -69.5,22.5 - parent: 1 - type: Transform -- uid: 10175 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: -70.5,28.5 - parent: 1 - type: Transform -- uid: 10176 - type: Catwalk - components: - - pos: -71.5,31.5 - parent: 1 - type: Transform -- uid: 10177 - type: CableHV - components: - - pos: -71.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10178 - type: CableHV - components: - - pos: -71.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10179 - type: CableHV - components: - - pos: -70.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10180 - type: CableHV - components: - - pos: -69.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10181 - type: CableHV - components: - - pos: -71.5,21.5 - parent: 1 - type: Transform -- uid: 10182 - type: CableHV - components: - - pos: -72.5,21.5 - parent: 1 - type: Transform -- uid: 10183 - type: CableHV - components: - - pos: -73.5,21.5 - parent: 1 - type: Transform -- uid: 10184 - type: CableHV - components: - - pos: -74.5,21.5 - parent: 1 - type: Transform -- uid: 10185 - type: CableHV - components: - - pos: -74.5,22.5 - parent: 1 - type: Transform -- uid: 10186 - type: CableHV - components: - - pos: -74.5,23.5 - parent: 1 - type: Transform -- uid: 10187 - type: CableHV - components: - - pos: -74.5,24.5 - parent: 1 - type: Transform -- uid: 10188 - type: CableHV - components: - - pos: -75.5,24.5 - parent: 1 - type: Transform -- uid: 10189 - type: CableHV - components: - - pos: -76.5,24.5 - parent: 1 - type: Transform -- uid: 10190 - type: CableHV - components: - - pos: -77.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10191 - type: CableHV - components: - - pos: -78.5,24.5 - parent: 1 - type: Transform -- uid: 10192 - type: CableHV - components: - - pos: -78.5,26.5 - parent: 1 - type: Transform -- uid: 10193 - type: CableHV - components: - - pos: -77.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10194 - type: CableHV - components: - - pos: -76.5,26.5 - parent: 1 - type: Transform -- uid: 10195 - type: CableHV - components: - - pos: -75.5,26.5 - parent: 1 - type: Transform -- uid: 10196 - type: CableHV - components: - - pos: -74.5,26.5 - parent: 1 - type: Transform -- uid: 10197 - type: CableHV - components: - - pos: -74.5,25.5 - parent: 1 - type: Transform -- uid: 10198 - type: CableHV - components: - - pos: -81.5,27.5 - parent: 1 - type: Transform -- uid: 10199 - type: CableHV - components: - - pos: -82.5,27.5 - parent: 1 - type: Transform -- uid: 10200 - type: CableHV - components: - - pos: -83.5,27.5 - parent: 1 - type: Transform -- uid: 10201 - type: CableHV - components: - - pos: -84.5,27.5 - parent: 1 - type: Transform -- uid: 10202 - type: CableHV - components: - - pos: -79.5,24.5 - parent: 1 - type: Transform -- uid: 10203 - type: CableHV - components: - - pos: -80.5,24.5 - parent: 1 - type: Transform -- uid: 10204 - type: CableHV - components: - - pos: -80.5,25.5 - parent: 1 - type: Transform -- uid: 10205 - type: CableHV - components: - - pos: -81.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10206 - type: CableHV - components: - - pos: -82.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10207 - type: SubstationBasic - components: - - pos: -79.5,27.5 - parent: 1 - type: Transform -- uid: 10208 - type: CableHV - components: - - pos: -84.5,28.5 - parent: 1 - type: Transform -- uid: 10209 - type: CableHV - components: - - pos: -84.5,29.5 - parent: 1 - type: Transform -- uid: 10210 - type: CableHV - components: - - pos: -84.5,30.5 - parent: 1 - type: Transform -- uid: 10211 - type: CableHV - components: - - pos: -85.5,30.5 - parent: 1 - type: Transform -- uid: 10212 - type: CableHV - components: - - pos: -86.5,30.5 - parent: 1 - type: Transform -- uid: 10213 - type: CableMV - components: - - pos: -79.5,27.5 - parent: 1 - type: Transform -- uid: 10214 - type: CableMV - components: - - pos: -80.5,27.5 - parent: 1 - type: Transform -- uid: 10215 - type: CableMV - components: - - pos: -81.5,27.5 - parent: 1 - type: Transform -- uid: 10216 - type: SpawnPointServiceWorker - components: - - pos: -33.5,43.5 - parent: 1 - type: Transform -- uid: 10217 - type: CableMV - components: - - pos: -82.5,27.5 - parent: 1 - type: Transform -- uid: 10218 - type: CableMV - components: - - pos: -83.5,27.5 - parent: 1 - type: Transform -- uid: 10219 - type: CableMV - components: - - pos: -84.5,27.5 - parent: 1 - type: Transform -- uid: 10220 - type: CableMV - components: - - pos: -84.5,28.5 - parent: 1 - type: Transform -- uid: 10221 - type: CableMV - components: - - pos: -84.5,29.5 - parent: 1 - type: Transform -- uid: 10222 - type: CableMV - components: - - pos: -84.5,30.5 - parent: 1 - type: Transform -- uid: 10223 - type: CableMV - components: - - pos: -85.5,30.5 - parent: 1 - type: Transform -- uid: 10224 - type: CableMV - components: - - pos: -86.5,30.5 - parent: 1 - type: Transform -- uid: 10225 - type: CableHV - components: - - pos: -71.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10226 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -31.5,53.5 - parent: 1 - type: Transform -- uid: 10227 - type: CableHV - components: - - pos: -71.5,33.5 - parent: 1 - type: Transform -- uid: 10228 - type: CableHV - components: - - pos: -71.5,34.5 - parent: 1 - type: Transform -- uid: 10229 - type: CableHV - components: - - pos: -70.5,34.5 - parent: 1 - type: Transform -- uid: 10230 - type: CableHV - components: - - pos: -69.5,34.5 - parent: 1 - type: Transform -- uid: 10231 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -41.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10232 - type: CableHV - components: - - pos: -68.5,34.5 - parent: 1 - type: Transform -- uid: 10233 - type: CableHV - components: - - pos: -67.5,34.5 - parent: 1 - type: Transform -- uid: 10234 - type: GasPipeFourway - components: - - pos: -40.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10235 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10236 - type: CableHV - components: - - pos: -66.5,34.5 - parent: 1 - type: Transform -- uid: 10237 - type: CableMV - components: - - pos: -39.5,-6.5 - parent: 1 - type: Transform -- uid: 10238 - type: CableHV - components: - - pos: -65.5,34.5 - parent: 1 - type: Transform -- uid: 10239 - type: CableHV - components: - - pos: -64.5,34.5 - parent: 1 - type: Transform -- uid: 10240 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10241 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10242 - type: ReinforcedWindow - components: - - pos: -69.5,27.5 - parent: 1 - type: Transform -- uid: 10243 - type: WallReinforced - components: - - pos: -70.5,24.5 - parent: 1 - type: Transform -- uid: 10244 - type: GasPipeTJunction - components: - - pos: -39.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10245 - type: CableHV - components: - - pos: -69.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10246 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-4.5 - parent: 1 - type: Transform -- uid: 10247 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -70.5,28.5 - parent: 1 - type: Transform -- uid: 10248 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -70.5,29.5 - parent: 1 - type: Transform -- uid: 10249 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-4.5 - parent: 1 - type: Transform -- uid: 10250 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -70.5,30.5 - parent: 1 - type: Transform -- uid: 10251 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-4.5 - parent: 1 - type: Transform -- uid: 10252 - type: CableHV - components: - - pos: -69.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10253 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10254 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10255 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -71.5,28.5 - parent: 1 - type: Transform -- uid: 10256 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 1 - type: Transform -- uid: 10257 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -71.5,29.5 - parent: 1 - type: Transform -- uid: 10258 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10259 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -71.5,30.5 - parent: 1 - type: Transform -- uid: 10260 - type: AirlockExternalGlassCargoLocked - components: - - pos: -34.5,-11.5 - parent: 1 - type: Transform -- uid: 10261 - type: AirlockExternalGlassCargoLocked - components: - - pos: -32.5,-11.5 - parent: 1 - type: Transform -- uid: 10262 - type: CableHV - components: - - pos: -60.5,6.5 - parent: 1 - type: Transform -- uid: 10263 - type: CableHV - components: - - pos: -60.5,5.5 - parent: 1 - type: Transform -- uid: 10264 - type: CableApcExtension - components: - - pos: -33.5,-8.5 - parent: 1 - type: Transform -- uid: 10265 - type: CableHV - components: - - pos: -59.5,5.5 - parent: 1 - type: Transform -- uid: 10266 - type: CableHV - components: - - pos: -58.5,5.5 - parent: 1 - type: Transform -- uid: 10267 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -87.5,20.5 - parent: 1 - type: Transform -- uid: 10268 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -87.5,21.5 - parent: 1 - type: Transform -- uid: 10269 - type: CableApcExtension - components: - - pos: -33.5,-7.5 - parent: 1 - type: Transform -- uid: 10270 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -87.5,22.5 - parent: 1 - type: Transform -- uid: 10271 - type: CableMV - components: - - pos: -35.5,-6.5 - parent: 1 - type: Transform -- uid: 10272 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -87.5,23.5 - parent: 1 - type: Transform -- uid: 10273 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -87.5,24.5 - parent: 1 - type: Transform -- uid: 10274 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -87.5,25.5 - parent: 1 - type: Transform -- uid: 10275 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -87.5,26.5 - parent: 1 - type: Transform -- uid: 10276 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -87.5,27.5 - parent: 1 - type: Transform -- uid: 10277 - type: CableMV - components: - - pos: -34.5,-6.5 - parent: 1 - type: Transform -- uid: 10278 - type: AirlockSalvageGlassLocked - components: - - pos: -35.5,-2.5 - parent: 1 - type: Transform -- uid: 10279 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -87.5,28.5 - parent: 1 - type: Transform -- uid: 10280 - type: CableApcExtension - components: - - pos: -33.5,-6.5 - parent: 1 - type: Transform -- uid: 10281 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -87.5,29.5 - parent: 1 - type: Transform -- uid: 10282 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -87.5,30.5 - parent: 1 - type: Transform -- uid: 10283 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -88.5,20.5 - parent: 1 - type: Transform -- uid: 10284 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -88.5,21.5 - parent: 1 - type: Transform -- uid: 10285 - type: CableMV - components: - - pos: -33.5,-6.5 - parent: 1 - type: Transform -- uid: 10286 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -88.5,22.5 - parent: 1 - type: Transform -- uid: 10287 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -88.5,23.5 - parent: 1 - type: Transform -- uid: 10288 - type: CableMV - components: - - pos: -32.5,-6.5 - parent: 1 - type: Transform -- uid: 10289 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -88.5,24.5 - parent: 1 - type: Transform -- uid: 10290 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -88.5,25.5 - parent: 1 - type: Transform -- uid: 10291 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -88.5,26.5 - parent: 1 - type: Transform -- uid: 10292 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -34.5,-14.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 10293 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -88.5,27.5 - parent: 1 - type: Transform -- uid: 10294 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -88.5,28.5 - parent: 1 - type: Transform -- uid: 10295 - type: CableApcExtension - components: - - pos: -34.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10296 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -88.5,29.5 - parent: 1 - type: Transform -- uid: 10297 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -88.5,30.5 - parent: 1 - type: Transform -- uid: 10298 - type: CableMV - components: - - pos: -36.5,-6.5 - parent: 1 - type: Transform -- uid: 10299 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -100.5,32.5 - parent: 1 - type: Transform -- uid: 10300 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -100.5,31.5 - parent: 1 - type: Transform -- uid: 10301 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -99.5,32.5 - parent: 1 - type: Transform -- uid: 10302 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -32.5,-14.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 10303 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -99.5,31.5 - parent: 1 - type: Transform -- uid: 10304 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -98.5,32.5 - parent: 1 - type: Transform -- uid: 10305 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -98.5,31.5 - parent: 1 - type: Transform -- uid: 10306 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10307 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -96.5,32.5 - parent: 1 - type: Transform -- uid: 10308 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10309 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -96.5,31.5 - parent: 1 - type: Transform -- uid: 10310 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -95.5,32.5 - parent: 1 - type: Transform -- uid: 10311 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -95.5,31.5 - parent: 1 - type: Transform -- uid: 10312 - type: GasPipeStraight - components: - - pos: -11.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10313 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -94.5,32.5 - parent: 1 - type: Transform -- uid: 10314 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -94.5,31.5 - parent: 1 - type: Transform -- uid: 10315 - type: WallSolid - components: - - pos: -16.5,18.5 - parent: 1 - type: Transform -- uid: 10316 - type: WallSolid - components: - - pos: -17.5,18.5 - parent: 1 - type: Transform -- uid: 10317 - type: WallSolid - components: - - pos: -17.5,16.5 - parent: 1 - type: Transform -- uid: 10318 - type: CableMV - components: - - pos: -20.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10319 - type: Catwalk - components: - - pos: -41.5,55.5 - parent: 1 - type: Transform -- uid: 10320 - type: CableMV - components: - - pos: -20.5,17.5 - parent: 1 - type: Transform -- uid: 10321 - type: Catwalk - components: - - pos: -39.5,55.5 - parent: 1 - type: Transform -- uid: 10322 - type: Catwalk - components: - - pos: -38.5,55.5 - parent: 1 - type: Transform -- uid: 10323 - type: Catwalk - components: - - pos: -37.5,55.5 - parent: 1 - type: Transform -- uid: 10324 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -93.5,22.5 - parent: 1 - type: Transform -- uid: 10325 - type: Catwalk - components: - - pos: -35.5,55.5 - parent: 1 - type: Transform -- uid: 10326 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -93.5,23.5 - parent: 1 - type: Transform -- uid: 10327 - type: Catwalk - components: - - pos: -33.5,55.5 - parent: 1 - type: Transform -- uid: 10328 - type: Catwalk - components: - - pos: -32.5,55.5 - parent: 1 - type: Transform -- uid: 10329 - type: Catwalk - components: - - pos: -32.5,54.5 - parent: 1 - type: Transform -- uid: 10330 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -93.5,24.5 - parent: 1 - type: Transform -- uid: 10331 - type: Catwalk - components: - - pos: -32.5,52.5 - parent: 1 - type: Transform -- uid: 10332 - type: Catwalk - components: - - pos: -32.5,51.5 - parent: 1 - type: Transform -- uid: 10333 - type: Catwalk - components: - - pos: -32.5,50.5 - parent: 1 - type: Transform -- uid: 10334 - type: Catwalk - components: - - pos: -31.5,50.5 - parent: 1 - type: Transform -- uid: 10335 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -93.5,25.5 - parent: 1 - type: Transform -- uid: 10336 - type: Catwalk - components: - - pos: -29.5,50.5 - parent: 1 - type: Transform -- uid: 10337 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10338 - type: Catwalk - components: - - pos: -27.5,50.5 - parent: 1 - type: Transform -- uid: 10339 - type: Catwalk - components: - - pos: -26.5,50.5 - parent: 1 - type: Transform -- uid: 10340 - type: Catwalk - components: - - pos: -25.5,50.5 - parent: 1 - type: Transform -- uid: 10341 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -93.5,26.5 - parent: 1 - type: Transform -- uid: 10342 - type: Catwalk - components: - - pos: -24.5,51.5 - parent: 1 - type: Transform -- uid: 10343 - type: SpawnPointSalvageSpecialist - components: - - pos: -38.5,-11.5 - parent: 1 - type: Transform -- uid: 10344 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10345 - type: Catwalk - components: - - pos: -21.5,51.5 - parent: 1 - type: Transform -- uid: 10346 - type: Catwalk - components: - - pos: -20.5,51.5 - parent: 1 - type: Transform -- uid: 10347 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10348 - type: Catwalk - components: - - pos: -24.5,49.5 - parent: 1 - type: Transform -- uid: 10349 - type: Rack - components: - - pos: -44.5,-10.5 - parent: 1 - type: Transform -- uid: 10350 - type: Catwalk - components: - - pos: -24.5,47.5 - parent: 1 - type: Transform -- uid: 10351 - type: Catwalk - components: - - pos: -24.5,46.5 - parent: 1 - type: Transform -- uid: 10352 - type: Pickaxe - components: - - pos: -44.604443,-10.45328 - parent: 1 - type: Transform -- uid: 10353 - type: Catwalk - components: - - pos: -24.5,44.5 - parent: 1 - type: Transform -- uid: 10354 - type: Pickaxe - components: - - pos: -44.338818,-10.48453 - parent: 1 - type: Transform -- uid: 10355 - type: Catwalk - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform -- uid: 10356 - type: Catwalk - components: - - pos: -24.5,41.5 - parent: 1 - type: Transform -- uid: 10357 - type: PlasticFlapsAirtightClear - components: - - pos: -31.5,-14.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10358 - type: PlasticFlapsAirtightClear - components: - - pos: -31.5,-11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10359 - type: Catwalk - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform -- uid: 10360 - type: Catwalk - components: - - pos: -24.5,37.5 - parent: 1 - type: Transform -- uid: 10361 - type: Grille - components: - - pos: -42.5,-14.5 - parent: 1 - type: Transform -- uid: 10362 - type: Table - components: - - pos: -3.5,43.5 - parent: 1 - type: Transform -- uid: 10363 - type: ClosetMaintenanceFilledRandom - components: - - pos: -38.5,54.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10364 - type: WeldingFuelTankFull - components: - - pos: -36.5,54.5 - parent: 1 - type: Transform -- uid: 10365 - type: WaterTankFull - components: - - pos: -35.5,54.5 - parent: 1 - type: Transform -- uid: 10366 - type: Table - components: - - pos: -3.5,42.5 - parent: 1 - type: Transform -- uid: 10367 - type: ClosetMaintenanceFilledRandom - components: - - pos: -37.5,54.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10368 - type: ClosetFireFilled - components: - - pos: -31.5,49.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10369 - type: ClosetEmergencyFilledRandom - components: - - pos: -30.5,49.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10370 - type: Table - components: - - pos: -29.5,49.5 - parent: 1 - type: Transform -- uid: 10371 - type: Table - components: - - pos: -28.5,49.5 - parent: 1 - type: Transform -- uid: 10372 - type: Rack - components: - - pos: -27.5,49.5 - parent: 1 - type: Transform -- uid: 10373 - type: MaintenanceWeaponSpawner - components: - - pos: -27.5,49.5 - parent: 1 - type: Transform -- uid: 10374 - type: MaintenanceToolSpawner - components: - - pos: -29.5,49.5 - parent: 1 - type: Transform -- uid: 10375 - type: MaintenanceFluffSpawner - components: - - pos: -28.5,49.5 - parent: 1 - type: Transform -- uid: 10376 - type: ClosetEmergencyFilledRandom - components: - - pos: -20.5,50.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10377 - type: ClosetFireFilled - components: - - pos: -19.5,50.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10378 - type: ClosetMaintenanceFilledRandom - components: - - pos: -21.5,50.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10379 - type: ClosetEmergencyFilledRandom - components: - - pos: -25.5,37.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10380 - type: ClosetFireFilled - components: - - pos: -25.5,38.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10381 - type: ClosetEmergencyFilledRandom - components: - - pos: -9.5,36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10382 - type: ClosetFireFilled - components: - - pos: -8.5,36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10383 - type: Rack - components: - - pos: -8.5,46.5 - parent: 1 - type: Transform -- uid: 10384 - type: ClosetEmergencyFilledRandom - components: - - pos: -8.5,48.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10385 - type: ClosetEmergencyFilledRandom - components: - - pos: 6.5,39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10386 - type: ClosetFireFilled - components: - - pos: 7.5,39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10387 - type: WeldingFuelTankFull - components: - - pos: 0.5,45.5 - parent: 1 - type: Transform -- uid: 10388 - type: WaterTank - components: - - pos: -0.5,45.5 - parent: 1 - type: Transform -- uid: 10389 - type: Rack - components: - - pos: -1.5,45.5 - parent: 1 - type: Transform -- uid: 10390 - type: MaintenanceToolSpawner - components: - - pos: -1.5,45.5 - parent: 1 - type: Transform -- uid: 10391 - type: Rack - components: - - pos: 6.5,48.5 - parent: 1 - type: Transform -- uid: 10392 - type: MaintenanceToolSpawner - components: - - pos: 6.5,48.5 - parent: 1 - type: Transform -- uid: 10393 - type: ClosetMaintenanceFilledRandom - components: - - pos: 6.5,43.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10394 - type: ClosetMaintenanceFilledRandom - components: - - pos: 6.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10395 - type: Railing - components: - - pos: 6.5,44.5 - parent: 1 - type: Transform -- uid: 10396 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 6.5,41.5 - parent: 1 - type: Transform -- uid: 10397 - type: CableApcExtension - components: - - pos: -36.5,-6.5 - parent: 1 - type: Transform -- uid: 10398 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -34.5,54.5 - parent: 1 - type: Transform -- uid: 10399 - type: CableApcExtension - components: - - pos: -31.5,-6.5 - parent: 1 - type: Transform -- uid: 10400 - type: MaintenanceWeaponSpawner - components: - - pos: -3.5,41.5 - parent: 1 - type: Transform -- uid: 10401 - type: MaintenanceFluffSpawner - components: - - pos: -3.5,42.5 - parent: 1 - type: Transform -- uid: 10402 - type: MaintenanceFluffSpawner - components: - - pos: -3.5,43.5 - parent: 1 - type: Transform -- uid: 10403 - type: Table - components: - - pos: 22.5,29.5 - parent: 1 - type: Transform -- uid: 10404 - type: CableApcExtension - components: - - pos: -32.5,-6.5 - parent: 1 - type: Transform -- uid: 10405 - type: Rack - components: - - pos: 22.5,27.5 - parent: 1 - type: Transform -- uid: 10406 - type: MaintenanceFluffSpawner - components: - - pos: 22.5,28.5 - parent: 1 - type: Transform -- uid: 10407 - type: MaintenanceWeaponSpawner - components: - - pos: 22.5,29.5 - parent: 1 - type: Transform -- uid: 10408 - type: ClosetMaintenanceFilledRandom - components: - - pos: 22.5,30.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10409 - type: MaintenanceToolSpawner - components: - - pos: 22.5,27.5 - parent: 1 - type: Transform -- uid: 10410 - type: TableCarpet - components: - - pos: 20.5,37.5 - parent: 1 - type: Transform -- uid: 10411 - type: TableCarpet - components: - - pos: 20.5,38.5 - parent: 1 - type: Transform -- uid: 10412 - type: TableCarpet - components: - - pos: 21.5,38.5 - parent: 1 - type: Transform -- uid: 10413 - type: TableCarpet - components: - - pos: 22.5,38.5 - parent: 1 - type: Transform -- uid: 10414 - type: TableWood - components: - - pos: 17.5,41.5 - parent: 1 - type: Transform -- uid: 10415 - type: TableWood - components: - - pos: 18.5,43.5 - parent: 1 - type: Transform -- uid: 10416 - type: TableWood - components: - - pos: 19.5,43.5 - parent: 1 - type: Transform -- uid: 10417 - type: Barricade - components: - - pos: 17.5,38.5 - parent: 1 - type: Transform -- uid: 10418 - type: TableWood - components: - - pos: 18.5,41.5 - parent: 1 - type: Transform -- uid: 10419 - type: TableWood - components: - - pos: 19.5,41.5 - parent: 1 - type: Transform -- uid: 10420 - type: TableWood - components: - - pos: 20.5,41.5 - parent: 1 - type: Transform -- uid: 10421 - type: Barricade - components: - - pos: 23.5,37.5 - parent: 1 - type: Transform -- uid: 10422 - type: Barricade - components: - - pos: 19.5,39.5 - parent: 1 - type: Transform -- uid: 10423 - type: Barricade - components: - - pos: 22.5,39.5 - parent: 1 - type: Transform -- uid: 10424 - type: Barricade - components: - - pos: 21.5,41.5 - parent: 1 - type: Transform -- uid: 10425 - type: Barricade - components: - - pos: 23.5,42.5 - parent: 1 - type: Transform -- uid: 10426 - type: APCBasic - components: - - pos: -42.5,-8.5 - parent: 1 - type: Transform -- uid: 10427 - type: Barricade - components: - - pos: 18.5,42.5 - parent: 1 - type: Transform -- uid: 10428 - type: BoozeDispenser - components: - - pos: 18.5,43.5 - parent: 1 - type: Transform -- uid: 10429 - type: LockerBoozeFilled - components: - - pos: 23.5,43.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10430 - type: CableMV - components: - - pos: -42.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10431 - type: FirelockEdge - components: - - pos: 17.5,41.5 - parent: 1 - type: Transform -- uid: 10432 - type: FirelockEdge - components: - - pos: 18.5,41.5 - parent: 1 - type: Transform -- uid: 10433 - type: FirelockEdge - components: - - pos: 19.5,41.5 - parent: 1 - type: Transform -- uid: 10434 - type: FirelockEdge - components: - - pos: 20.5,41.5 - parent: 1 - type: Transform -- uid: 10435 - type: FirelockEdge - components: - - pos: 21.5,41.5 - parent: 1 - type: Transform -- uid: 10436 - type: FirelockEdge - components: - - pos: 22.5,41.5 - parent: 1 - type: Transform -- uid: 10437 - type: FirelockEdge - components: - - pos: 23.5,41.5 - parent: 1 - type: Transform -- uid: 10438 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 17.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10439 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 18.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10440 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 19.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10441 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 20.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10442 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 19.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10443 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 19.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10444 - type: StoolBar - components: - - pos: 20.5,39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10445 - type: ChairFoldingSpawnFolded - components: - - pos: 23.398178,40.668 - parent: 1 - type: Transform -- uid: 10446 - type: StoolBar - components: - - pos: 21.5,39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10447 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 21.5,37.5 - parent: 1 - type: Transform -- uid: 10448 - type: ChairFoldingSpawnFolded - components: - - rot: 3.141592653589793 rad - pos: 23.506094,39.943184 - parent: 1 - type: Transform -- uid: 10449 - type: ChairFoldingSpawnFolded - components: - - rot: 3.141592653589793 rad - pos: 23.568594,39.161934 - parent: 1 - type: Transform -- uid: 10450 - type: d6Dice - components: - - rot: 3.141592653589793 rad - pos: 20.677969,37.661934 - parent: 1 - type: Transform -- uid: 10451 - type: d6Dice - components: - - rot: 3.141592653589793 rad - pos: 20.256094,38.17756 - parent: 1 - type: Transform -- uid: 10452 - type: d6Dice - components: - - rot: 3.141592653589793 rad - pos: 22.552969,38.55256 - parent: 1 - type: Transform -- uid: 10453 - type: d6Dice - components: - - rot: 3.141592653589793 rad - pos: 21.253763,38.722572 - parent: 1 - type: Transform -- uid: 10454 - type: d6Dice - components: - - rot: 3.141592653589793 rad - pos: 20.628763,38.800697 - parent: 1 - type: Transform -- uid: 10455 - type: ClothingUniformJumpskirtDetective - components: - - pos: 21.59258,37.49341 - parent: 1 - type: Transform -- uid: 10456 - type: ClothingUniformJumpsuitDetective - components: - - pos: 21.920986,37.477783 - parent: 1 - type: Transform -- uid: 10457 - type: ClothingHeadHatFedoraBrown - components: - - pos: 21.764736,38.571533 - parent: 1 - type: Transform -- uid: 10458 - type: BriefcaseBrownFilled - components: - - pos: 22.467861,37.46216 - parent: 1 - type: Transform -- uid: 10459 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -28.5,42.5 - parent: 1 - type: Transform -- uid: 10460 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -28.5,40.5 - parent: 1 - type: Transform -- uid: 10461 - type: ChairWood - components: - - pos: -27.5,42.5 - parent: 1 - type: Transform -- uid: 10462 - type: Rack - components: - - pos: -27.5,40.5 - parent: 1 - type: Transform -- uid: 10463 - type: MaintenanceFluffSpawner - components: - - pos: -27.5,40.5 - parent: 1 - type: Transform -- uid: 10464 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -93.5,27.5 - parent: 1 - type: Transform -- uid: 10465 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -93.5,28.5 - parent: 1 - type: Transform -- uid: 10474 - type: ClosetMaintenanceFilledRandom - components: - - pos: -54.5,44.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10475 - type: WeldingFuelTankFull - components: - - pos: -51.5,44.5 - parent: 1 - type: Transform -- uid: 10476 - type: WaterTankFull - components: - - pos: -52.5,44.5 - parent: 1 - type: Transform -- uid: 10477 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -94.5,29.5 - parent: 1 - type: Transform -- uid: 10478 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -95.5,29.5 - parent: 1 - type: Transform -- uid: 10479 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -96.5,29.5 - parent: 1 - type: Transform -- uid: 10480 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -97.5,29.5 - parent: 1 - type: Transform -- uid: 10481 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -98.5,29.5 - parent: 1 - type: Transform -- uid: 10482 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -99.5,29.5 - parent: 1 - type: Transform -- uid: 10483 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -100.5,29.5 - parent: 1 - type: Transform -- uid: 10484 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -101.5,28.5 - parent: 1 - type: Transform -- uid: 10485 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -101.5,27.5 - parent: 1 - type: Transform -- uid: 10486 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -101.5,26.5 - parent: 1 - type: Transform -- uid: 10487 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -101.5,25.5 - parent: 1 - type: Transform -- uid: 10488 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -101.5,24.5 - parent: 1 - type: Transform -- uid: 10489 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -101.5,23.5 - parent: 1 - type: Transform -- uid: 10490 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -101.5,22.5 - parent: 1 - type: Transform -- uid: 10491 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -100.5,21.5 - parent: 1 - type: Transform -- uid: 10492 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -99.5,21.5 - parent: 1 - type: Transform -- uid: 10493 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -98.5,21.5 - parent: 1 - type: Transform -- uid: 10494 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -97.5,21.5 - parent: 1 - type: Transform -- uid: 10495 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -96.5,21.5 - parent: 1 - type: Transform -- uid: 10496 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -95.5,21.5 - parent: 1 - type: Transform -- uid: 10497 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -94.5,21.5 - parent: 1 - type: Transform -- uid: 10498 - type: RadiationCollector - components: - - pos: -100.5,32.5 - parent: 1 - type: Transform -- uid: 10499 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -100.5,18.5 - parent: 1 - type: Transform -- uid: 10500 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -99.5,19.5 - parent: 1 - type: Transform -- uid: 10501 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -99.5,18.5 - parent: 1 - type: Transform -- uid: 10502 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -98.5,19.5 - parent: 1 - type: Transform -- uid: 10503 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -98.5,18.5 - parent: 1 - type: Transform -- uid: 10504 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -96.5,19.5 - parent: 1 - type: Transform -- uid: 10505 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -96.5,18.5 - parent: 1 - type: Transform -- uid: 10506 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -95.5,19.5 - parent: 1 - type: Transform -- uid: 10507 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -95.5,18.5 - parent: 1 - type: Transform -- uid: 10508 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -94.5,19.5 - parent: 1 - type: Transform -- uid: 10509 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -94.5,18.5 - parent: 1 - type: Transform -- uid: 10510 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -105.5,30.5 - parent: 1 - type: Transform -- uid: 10511 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -105.5,30.5 - parent: 1 - type: Transform -- uid: 10512 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -105.5,29.5 - parent: 1 - type: Transform -- uid: 10513 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -105.5,28.5 - parent: 1 - type: Transform -- uid: 10514 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -105.5,27.5 - parent: 1 - type: Transform -- uid: 10515 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -105.5,26.5 - parent: 1 - type: Transform -- uid: 10516 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -105.5,25.5 - parent: 1 - type: Transform -- uid: 10517 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -105.5,24.5 - parent: 1 - type: Transform -- uid: 10518 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -105.5,23.5 - parent: 1 - type: Transform -- uid: 10519 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -105.5,22.5 - parent: 1 - type: Transform -- uid: 10520 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -105.5,21.5 - parent: 1 - type: Transform -- uid: 10521 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -105.5,20.5 - parent: 1 - type: Transform -- uid: 10522 - type: CableMV - components: - - pos: -87.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10523 - type: CableMV - components: - - pos: -88.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10524 - type: CableMV - components: - - pos: -79.5,26.5 - parent: 1 - type: Transform -- uid: 10525 - type: CableMV - components: - - pos: -79.5,25.5 - parent: 1 - type: Transform -- uid: 10526 - type: CableMV - components: - - pos: -79.5,24.5 - parent: 1 - type: Transform -- uid: 10527 - type: CableMV - components: - - pos: -79.5,23.5 - parent: 1 - type: Transform -- uid: 10528 - type: CableMV - components: - - pos: -80.5,23.5 - parent: 1 - type: Transform -- uid: 10529 - type: CableMV - components: - - pos: -81.5,23.5 - parent: 1 - type: Transform -- uid: 10530 - type: CableMV - components: - - pos: -82.5,23.5 - parent: 1 - type: Transform -- uid: 10531 - type: CableMV - components: - - pos: -83.5,23.5 - parent: 1 - type: Transform -- uid: 10532 - type: CableMV - components: - - pos: -84.5,23.5 - parent: 1 - type: Transform -- uid: 10533 - type: CableMV - components: - - pos: -84.5,22.5 - parent: 1 - type: Transform -- uid: 10534 - type: CableMV - components: - - pos: -84.5,21.5 - parent: 1 - type: Transform -- uid: 10535 - type: ClothingNeckLGBTPin - components: - - pos: -34.543724,28.416185 - parent: 1 - type: Transform -- uid: 10536 - type: ClothingNeckAromanticPin - components: - - pos: -25.61458,26.466957 - parent: 1 - type: Transform -- uid: 10537 - type: CableMV - components: - - pos: -84.5,20.5 - parent: 1 - type: Transform -- uid: 10538 - type: ClothingNeckBisexualPin - components: - - pos: -14.514383,9.373074 - parent: 1 - type: Transform -- uid: 10539 - type: ClothingNeckIntersexPin - components: - - pos: 28.525753,9.397884 - parent: 1 - type: Transform -- uid: 10540 - type: ClothingNeckLesbianPin - components: - - pos: 6.5544667,-2.4496374 - parent: 1 - type: Transform -- uid: 10541 - type: ClothingNeckNonBinaryPin - components: - - pos: -27.46916,-8.556879 - parent: 1 - type: Transform -- uid: 10543 - type: ClothingNeckTransPin - components: - - pos: -54.52713,17.537136 - parent: 1 - type: Transform -- uid: 10544 - type: PhoneInstrument - components: - - pos: -9.507111,55.584892 - parent: 1 - type: Transform -- uid: 10545 - type: ClothingNeckHeadphones - components: - - pos: -53.41692,13.576396 - parent: 1 - type: Transform -- uid: 10546 - type: CableMV - components: - - pos: -85.5,20.5 - parent: 1 - type: Transform -- uid: 10547 - type: CableMV - components: - - pos: -86.5,20.5 - parent: 1 - type: Transform -- uid: 10548 - type: CableMV - components: - - pos: -87.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10549 - type: CableHV - components: - - pos: -85.5,27.5 - parent: 1 - type: Transform -- uid: 10550 - type: CableHV - components: - - pos: -85.5,20.5 - parent: 1 - type: Transform -- uid: 10551 - type: CableHV - components: - - pos: -86.5,20.5 - parent: 1 - type: Transform -- uid: 10552 - type: CableHV - components: - - pos: -87.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10553 - type: CableHV - components: - - pos: -85.5,23.5 - parent: 1 - type: Transform -- uid: 10554 - type: CableHV - components: - - pos: -84.5,23.5 - parent: 1 - type: Transform -- uid: 10555 - type: CableHV - components: - - pos: -84.5,22.5 - parent: 1 - type: Transform -- uid: 10556 - type: CableHV - components: - - pos: -84.5,21.5 - parent: 1 - type: Transform -- uid: 10557 - type: CableHV - components: - - pos: -84.5,20.5 - parent: 1 - type: Transform -- uid: 10558 - type: CableHV - components: - - pos: -86.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10559 - type: CableHV - components: - - pos: -86.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10560 - type: CableHV - components: - - pos: -86.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10561 - type: CableHV - components: - - pos: -86.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10562 - type: CableHV - components: - - pos: -86.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10563 - type: CableHV - components: - - pos: -88.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10564 - type: CableHV - components: - - pos: -88.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10565 - type: CableHV - components: - - pos: -90.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10566 - type: CableHV - components: - - pos: -91.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10567 - type: CableHV - components: - - pos: -92.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10568 - type: CableHV - components: - - pos: -93.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10569 - type: CableHV - components: - - pos: -94.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10570 - type: CableHV - components: - - pos: -94.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10571 - type: CableHV - components: - - pos: -95.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10572 - type: CableHV - components: - - pos: -96.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10573 - type: CableHV - components: - - pos: -96.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10574 - type: CableHV - components: - - pos: -97.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10575 - type: RadiationCollector - components: - - pos: -99.5,32.5 - parent: 1 - type: Transform -- uid: 10576 - type: CableHV - components: - - pos: -98.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10577 - type: CableHV - components: - - pos: -98.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10578 - type: CableHV - components: - - pos: -99.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10579 - type: CableHV - components: - - pos: -100.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10580 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -100.5,19.5 - parent: 1 - type: Transform -- uid: 10581 - type: CableHV - components: - - pos: -87.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10582 - type: CableHV - components: - - pos: -88.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10583 - type: CableHV - components: - - pos: -88.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10584 - type: CableHV - components: - - pos: -89.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10585 - type: CableHV - components: - - pos: -90.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10586 - type: CableHV - components: - - pos: -91.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10587 - type: CableHV - components: - - pos: -92.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10588 - type: CableHV - components: - - pos: -93.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10589 - type: CableHV - components: - - pos: -94.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10590 - type: CableHV - components: - - pos: -94.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10591 - type: CableHV - components: - - pos: -95.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10592 - type: CableHV - components: - - pos: -96.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10593 - type: CableHV - components: - - pos: -96.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10594 - type: CableHV - components: - - pos: -97.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10595 - type: CableHV - components: - - pos: -98.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10596 - type: CableHV - components: - - pos: -98.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10597 - type: CableHV - components: - - pos: -99.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10598 - type: CableHV - components: - - pos: -100.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10599 - type: RadiationCollector - components: - - pos: -96.5,18.5 - parent: 1 - type: Transform -- uid: 10600 - type: RadiationCollector - components: - - pos: -98.5,32.5 - parent: 1 - type: Transform -- uid: 10601 - type: RadiationCollector - components: - - pos: -96.5,32.5 - parent: 1 - type: Transform -- uid: 10602 - type: RadiationCollector - components: - - pos: -95.5,32.5 - parent: 1 - type: Transform -- uid: 10603 - type: RadiationCollector - components: - - pos: -94.5,32.5 - parent: 1 - type: Transform -- uid: 10604 - type: RadiationCollector - components: - - pos: -95.5,18.5 - parent: 1 - type: Transform -- uid: 10605 - type: RadiationCollector - components: - - pos: -94.5,18.5 - parent: 1 - type: Transform -- uid: 10606 - type: RadiationCollector - components: - - pos: -98.5,18.5 - parent: 1 - type: Transform -- uid: 10607 - type: RadiationCollector - components: - - pos: -99.5,18.5 - parent: 1 - type: Transform -- uid: 10608 - type: RadiationCollector - components: - - pos: -100.5,18.5 - parent: 1 - type: Transform -- uid: 10609 - type: Emitter - components: - - rot: -1.5707963267948966 rad - pos: -90.5,21.5 - parent: 1 - type: Transform -- uid: 10610 - type: Emitter - components: - - rot: -1.5707963267948966 rad - pos: -90.5,29.5 - parent: 1 - type: Transform -- uid: 10611 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -104.5,21.5 - parent: 1 - type: Transform -- uid: 10612 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: -93.5,18.5 - parent: 1 - type: Transform -- uid: 10613 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: -101.5,18.5 - parent: 1 - type: Transform -- uid: 10614 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -104.5,29.5 - parent: 1 - type: Transform -- uid: 10615 - type: Emitter - components: - - pos: -101.5,32.5 - parent: 1 - type: Transform -- uid: 10616 - type: Emitter - components: - - pos: -93.5,32.5 - parent: 1 - type: Transform -- uid: 10617 - type: CableMV - components: - - pos: -101.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10618 - type: CableMV - components: - - pos: -93.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10619 - type: CableMV - components: - - pos: -93.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10620 - type: CableMV - components: - - pos: -101.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10621 - type: CableMV - components: - - pos: -101.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10622 - type: CableMV - components: - - pos: -104.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10623 - type: CableMV - components: - - pos: -105.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10624 - type: CableMV - components: - - pos: -105.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10625 - type: CableMV - components: - - pos: -105.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10626 - type: CableMV - components: - - pos: -105.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10627 - type: CableMV - components: - - pos: -105.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10628 - type: CableMV - components: - - pos: -105.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10629 - type: CableMV - components: - - pos: -105.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10630 - type: CableMV - components: - - pos: -105.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10631 - type: CableMV - components: - - pos: -105.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10632 - type: CableMV - components: - - pos: -105.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10633 - type: CableMV - components: - - pos: -105.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10634 - type: CableMV - components: - - pos: -105.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10635 - type: CableMV - components: - - pos: -105.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10636 - type: CableMV - components: - - pos: -104.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10637 - type: CableMV - components: - - pos: -101.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10638 - type: CableMV - components: - - pos: -93.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10639 - type: CableMV - components: - - pos: -93.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10640 - type: CableMV - components: - - pos: -90.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10641 - type: CableMV - components: - - pos: -90.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10642 - type: CableMV - components: - - pos: -89.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10643 - type: CableMV - components: - - pos: -89.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10644 - type: ContainmentFieldGenerator - components: - - pos: -93.5,21.5 - parent: 1 - type: Transform -- uid: 10645 - type: ContainmentFieldGenerator - components: - - pos: -93.5,29.5 - parent: 1 - type: Transform -- uid: 10646 - type: ContainmentFieldGenerator - components: - - pos: -101.5,29.5 - parent: 1 - type: Transform -- uid: 10647 - type: ContainmentFieldGenerator - components: - - pos: -101.5,21.5 - parent: 1 - type: Transform -- uid: 10648 - type: SingularityGenerator - components: - - pos: -97.5,25.5 - parent: 1 - type: Transform -- uid: 10649 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -87.5,27.5 - parent: 1 - type: Transform -- uid: 10650 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -87.5,26.5 - parent: 1 - type: Transform -- uid: 10651 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -87.5,25.5 - parent: 1 - type: Transform -- uid: 10652 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -87.5,24.5 - parent: 1 - type: Transform -- uid: 10653 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -87.5,23.5 - parent: 1 - type: Transform -- uid: 10654 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -78.5,24.5 - parent: 1 - type: Transform -- uid: 10655 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -78.5,26.5 - parent: 1 - type: Transform -- uid: 10656 - type: AMEController - components: - - pos: -71.5,19.5 - parent: 1 - type: Transform -- uid: 10657 - type: CrateEngineeringAMEShielding - components: - - pos: -71.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10658 - type: CrateEngineeringAMEShielding - components: - - pos: -70.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10659 - type: CrateEngineeringAMEJar - components: - - pos: -69.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10660 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -69.5,21.5 - parent: 1 - type: Transform -- uid: 10661 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -68.5,21.5 - parent: 1 - type: Transform -- uid: 10662 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -67.5,21.5 - parent: 1 - type: Transform -- uid: 10663 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -66.5,21.5 - parent: 1 - type: Transform -- uid: 10664 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -65.5,21.5 - parent: 1 - type: Transform -- uid: 10665 - type: AirlockExternalAtmosphericsLocked - components: - - rot: 1.5707963267948966 rad - pos: -76.5,48.5 - parent: 1 - type: Transform -- uid: 10666 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -76.5,35.5 - parent: 1 - type: Transform -- uid: 10667 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -76.5,34.5 - parent: 1 - type: Transform -- uid: 10668 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -76.5,33.5 - parent: 1 - type: Transform -- uid: 10669 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -77.5,33.5 - parent: 1 - type: Transform -- uid: 10670 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -78.5,33.5 - parent: 1 - type: Transform -- uid: 10671 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -79.5,33.5 - parent: 1 - type: Transform -- uid: 10672 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -80.5,33.5 - parent: 1 - type: Transform -- uid: 10673 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -81.5,33.5 - parent: 1 - type: Transform -- uid: 10674 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -82.5,33.5 - parent: 1 - type: Transform -- uid: 10675 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -83.5,33.5 - parent: 1 - type: Transform -- uid: 10676 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -84.5,33.5 - parent: 1 - type: Transform -- uid: 10677 - type: AirlockExternalGlassEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: -86.5,30.5 - parent: 1 - type: Transform -- uid: 10678 - type: AirlockExternalGlassEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: -86.5,20.5 - parent: 1 - type: Transform -- uid: 10679 - type: AirlockEngineeringGlassLocked - components: - - rot: 3.141592653589793 rad - pos: -84.5,22.5 - parent: 1 - type: Transform -- uid: 10680 - type: AirlockEngineeringGlassLocked - components: - - rot: 3.141592653589793 rad - pos: -84.5,28.5 - parent: 1 - type: Transform -- uid: 10681 - type: AirlockEngineeringGlassLocked - components: - - rot: 3.141592653589793 rad - pos: -77.5,25.5 - parent: 1 - type: Transform -- uid: 10682 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -84.5,27.5 - parent: 1 - type: Transform -- uid: 10683 - type: FirelockEdge - components: - - pos: -84.5,23.5 - parent: 1 - type: Transform -- uid: 10684 - type: FirelockGlass - components: - - pos: -74.5,27.5 - parent: 1 - type: Transform -- uid: 10685 - type: FirelockGlass - components: - - pos: -73.5,27.5 - parent: 1 - type: Transform -- uid: 10686 - type: FirelockGlass - components: - - pos: -74.5,23.5 - parent: 1 - type: Transform -- uid: 10687 - type: FirelockGlass - components: - - pos: -73.5,23.5 - parent: 1 - type: Transform -- uid: 10688 - type: FirelockGlass - components: - - pos: -65.5,33.5 - parent: 1 - type: Transform -- uid: 10689 - type: FirelockGlass - components: - - pos: -65.5,34.5 - parent: 1 - type: Transform -- uid: 10690 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -65.5,35.5 - parent: 1 - type: Transform -- uid: 10691 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -75.5,22.5 - parent: 1 - type: Transform - - devices: - - 14304 - - 14302 - - 10686 - - 10687 - - 14303 - - 10684 - - 10685 - - 10682 - - 10683 - type: DeviceList -- uid: 10692 - type: AirlockEngineeringGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -72.5,21.5 - parent: 1 - type: Transform -- uid: 10693 - type: AirlockEngineeringGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -70.5,32.5 - parent: 1 - type: Transform -- uid: 10694 - type: AirlockEngineeringGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -64.5,29.5 - parent: 1 - type: Transform -- uid: 10695 - type: AirlockAtmosphericsGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -75.5,34.5 - parent: 1 - type: Transform -- uid: 10696 - type: AirlockAtmosphericsGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -75.5,35.5 - parent: 1 - type: Transform -- uid: 10697 - type: AirlockChiefEngineerLocked - components: - - rot: -1.5707963267948966 rad - pos: -74.5,18.5 - parent: 1 - type: Transform -- uid: 10698 - type: ShuttersNormalOpen - components: - - pos: -70.5,18.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10701 - type: SignalReceiver -- uid: 10699 - type: ShuttersNormalOpen - components: - - pos: -69.5,18.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10701 - type: SignalReceiver -- uid: 10700 - type: ShuttersNormalOpen - components: - - pos: -68.5,18.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10701 - type: SignalReceiver -- uid: 10701 - type: SignalButton - components: - - pos: -71.5,18.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10698 - - port: Toggle - uid: 10699 - - port: Toggle - uid: 10700 - type: SignalTransmitter -- uid: 10702 - type: TableWood - components: - - pos: -69.5,15.5 - parent: 1 - type: Transform -- uid: 10703 - type: TableWood - components: - - pos: -69.5,16.5 - parent: 1 - type: Transform -- uid: 10704 - type: TableWood - components: - - pos: -72.5,15.5 - parent: 1 - type: Transform -- uid: 10705 - type: TableWood - components: - - pos: -73.5,15.5 - parent: 1 - type: Transform -- uid: 10706 - type: CableHV - components: - - pos: -74.5,20.5 - parent: 1 - type: Transform -- uid: 10707 - type: CableHV - components: - - pos: -74.5,19.5 - parent: 1 - type: Transform -- uid: 10708 - type: CableHV - components: - - pos: -74.5,18.5 - parent: 1 - type: Transform -- uid: 10709 - type: CableHV - components: - - pos: -74.5,17.5 - parent: 1 - type: Transform -- uid: 10710 - type: CableHV - components: - - pos: -74.5,16.5 - parent: 1 - type: Transform -- uid: 10711 - type: CableHV - components: - - pos: -74.5,15.5 - parent: 1 - type: Transform -- uid: 10712 - type: ComputerPowerMonitoring - components: - - rot: 3.141592653589793 rad - pos: -74.5,15.5 - parent: 1 - type: Transform -- uid: 10713 - type: ComputerPowerMonitoring - components: - - rot: -1.5707963267948966 rad - pos: -63.5,27.5 - parent: 1 - type: Transform -- uid: 10714 - type: CableHV - components: - - pos: -63.5,31.5 - parent: 1 - type: Transform -- uid: 10715 - type: CableHV - components: - - pos: -63.5,30.5 - parent: 1 - type: Transform -- uid: 10716 - type: CableHV - components: - - pos: -63.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10717 - type: CableHV - components: - - pos: -63.5,28.5 - parent: 1 - type: Transform -- uid: 10718 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -84.5,49.5 - parent: 1 - type: Transform -- uid: 10719 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -66.5,25.5 - parent: 1 - type: Transform -- uid: 10720 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -65.5,25.5 - parent: 1 - type: Transform -- uid: 10721 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -64.5,25.5 - parent: 1 - type: Transform -- uid: 10722 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -63.5,25.5 - parent: 1 - type: Transform -- uid: 10723 - type: CrateEngineeringCableBulk - components: - - pos: -63.5,26.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10724 - type: CableHV - components: - - pos: -63.5,27.5 - parent: 1 - type: Transform -- uid: 10725 - type: LockerChiefEngineerFilled - components: - - pos: -68.5,15.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10726 - type: LockerEngineerFilled - components: - - pos: -67.5,31.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10727 - type: LockerEngineerFilled - components: - - pos: -67.5,30.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10728 - type: LockerEngineerFilled - components: - - pos: -67.5,29.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10729 - type: LockerEngineerFilled - components: - - pos: -67.5,28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10730 - type: LockerEngineerFilled - components: - - pos: -67.5,27.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10731 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -82.5,29.5 - parent: 1 - type: Transform -- uid: 10732 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -82.5,30.5 - parent: 1 - type: Transform -- uid: 10733 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -82.5,31.5 - parent: 1 - type: Transform -- uid: 10734 - type: VendingMachineAtmosDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -84.5,32.5 - parent: 1 - type: Transform -- uid: 10735 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -83.5,32.5 - parent: 1 - type: Transform -- uid: 10736 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -82.5,32.5 - parent: 1 - type: Transform -- uid: 10737 - type: StorageCanister - components: - - pos: -77.5,28.5 - parent: 1 - type: Transform -- uid: 10738 - type: StorageCanister - components: - - pos: -76.5,28.5 - parent: 1 - type: Transform -- uid: 10739 - type: AirCanister - components: - - pos: -78.5,29.5 - parent: 1 - type: Transform -- uid: 10740 - type: AirCanister - components: - - pos: -77.5,29.5 - parent: 1 - type: Transform -- uid: 10741 - type: AirCanister - components: - - pos: -76.5,29.5 - parent: 1 - type: Transform -- uid: 10742 - type: OxygenCanister - components: - - pos: -77.5,30.5 - parent: 1 - type: Transform -- uid: 10743 - type: OxygenCanister - components: - - pos: -76.5,30.5 - parent: 1 - type: Transform -- uid: 10744 - type: NitrogenCanister - components: - - pos: -77.5,31.5 - parent: 1 - type: Transform -- uid: 10745 - type: NitrogenCanister - components: - - pos: -76.5,31.5 - parent: 1 - type: Transform -- uid: 10746 - type: LockerAtmosphericsFilled - components: - - pos: -81.5,29.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10747 - type: LockerAtmosphericsFilled - components: - - pos: -80.5,29.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10748 - type: LockerAtmosphericsFilled - components: - - pos: -79.5,29.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10749 - type: VendingMachineEngiDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -67.5,25.5 - parent: 1 - type: Transform -- uid: 10750 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -80.5,49.5 - parent: 1 - type: Transform -- uid: 10751 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -80.5,51.5 - parent: 1 - type: Transform -- uid: 10752 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -81.5,51.5 - parent: 1 - type: Transform -- uid: 10753 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -83.5,49.5 - parent: 1 - type: Transform -- uid: 10754 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -83.5,51.5 - parent: 1 - type: Transform -- uid: 10755 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -84.5,51.5 - parent: 1 - type: Transform -- uid: 10756 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -81.5,49.5 - parent: 1 - type: Transform -- uid: 10757 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -80.5,50.5 - parent: 1 - type: Transform -- uid: 10758 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -81.5,49.5 - parent: 1 - type: Transform -- uid: 10759 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -83.5,49.5 - parent: 1 - type: Transform -- uid: 10760 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -82.5,49.5 - parent: 1 - type: Transform -- uid: 10761 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -82.5,49.5 - parent: 1 - type: Transform -- uid: 10762 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -80.5,50.5 - parent: 1 - type: Transform -- uid: 10763 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -87.5,46.5 - parent: 1 - type: Transform -- uid: 10764 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -88.5,46.5 - parent: 1 - type: Transform -- uid: 10765 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -89.5,46.5 - parent: 1 - type: Transform -- uid: 10766 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -90.5,46.5 - parent: 1 - type: Transform -- uid: 10767 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -91.5,46.5 - parent: 1 - type: Transform -- uid: 10768 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -91.5,45.5 - parent: 1 - type: Transform -- uid: 10769 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -91.5,44.5 - parent: 1 - type: Transform -- uid: 10770 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -91.5,43.5 - parent: 1 - type: Transform -- uid: 10771 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -91.5,42.5 - parent: 1 - type: Transform -- uid: 10772 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -91.5,41.5 - parent: 1 - type: Transform -- uid: 10773 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -91.5,40.5 - parent: 1 - type: Transform -- uid: 10774 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -91.5,39.5 - parent: 1 - type: Transform -- uid: 10775 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -91.5,38.5 - parent: 1 - type: Transform -- uid: 10776 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -91.5,37.5 - parent: 1 - type: Transform -- uid: 10777 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -91.5,36.5 - parent: 1 - type: Transform -- uid: 10778 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -91.5,35.5 - parent: 1 - type: Transform -- uid: 10779 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -91.5,34.5 - parent: 1 - type: Transform -- uid: 10780 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -90.5,34.5 - parent: 1 - type: Transform -- uid: 10781 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -89.5,34.5 - parent: 1 - type: Transform -- uid: 10782 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -88.5,34.5 - parent: 1 - type: Transform -- uid: 10783 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -87.5,34.5 - parent: 1 - type: Transform -- uid: 10784 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -90.5,36.5 - parent: 1 - type: Transform -- uid: 10785 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -89.5,36.5 - parent: 1 - type: Transform -- uid: 10786 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -88.5,36.5 - parent: 1 - type: Transform -- uid: 10787 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -87.5,36.5 - parent: 1 - type: Transform -- uid: 10788 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -90.5,38.5 - parent: 1 - type: Transform -- uid: 10789 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -89.5,38.5 - parent: 1 - type: Transform -- uid: 10790 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -88.5,38.5 - parent: 1 - type: Transform -- uid: 10791 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -87.5,38.5 - parent: 1 - type: Transform -- uid: 10792 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -90.5,40.5 - parent: 1 - type: Transform -- uid: 10793 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -89.5,40.5 - parent: 1 - type: Transform -- uid: 10794 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -88.5,40.5 - parent: 1 - type: Transform -- uid: 10795 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -87.5,40.5 - parent: 1 - type: Transform -- uid: 10796 - type: GasPipeBend - components: - - pos: 10.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10797 - type: GasPipeBend - components: - - pos: 9.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10798 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 7.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10799 - type: AirlockGlass - components: - - pos: -22.5,30.5 - parent: 1 - type: Transform -- uid: 10800 - type: ClosetFireFilled - components: - - pos: -8.5,49.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10801 - type: MaintenanceToolSpawner - components: - - pos: -8.5,46.5 - parent: 1 - type: Transform -- uid: 10802 - type: ClosetMaintenanceFilledRandom - components: - - pos: -8.5,50.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10803 - type: FaxMachineBase - components: - - pos: -36.5,37.5 - parent: 1 - type: Transform - - name: Bar - type: FaxMachine -- uid: 10804 - type: RandomDrinkGlass - components: - - pos: -38.5,37.5 - parent: 1 - type: Transform -- uid: 10805 - type: GasVentPump - components: - - pos: 6.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10806 - type: RandomDrinkGlass - components: - - pos: -33.5,36.5 - parent: 1 - type: Transform -- uid: 10807 - type: RandomDrinkGlass - components: - - pos: -41.5,35.5 - parent: 1 - type: Transform -- uid: 10808 - type: RandomDrinkBottle - components: - - pos: -33.5,35.5 - parent: 1 - type: Transform -- uid: 10809 - type: RandomFoodSingle - components: - - pos: -33.5,37.5 - parent: 1 - type: Transform -- uid: 10810 - type: RandomFoodSingle - components: - - pos: -37.5,37.5 - parent: 1 - type: Transform -- uid: 10811 - type: RandomFoodMeal - components: - - pos: -44.5,36.5 - parent: 1 - type: Transform -- uid: 10812 - type: RandomFoodMeal - components: - - pos: -36.5,41.5 - parent: 1 - type: Transform -- uid: 10813 - type: RandomFoodSingle - components: - - pos: -35.5,41.5 - parent: 1 - type: Transform -- uid: 10814 - type: SpawnPointBotanist - components: - - pos: -41.5,42.5 - parent: 1 - type: Transform -- uid: 10815 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -90.5,42.5 - parent: 1 - type: Transform -- uid: 10816 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -89.5,42.5 - parent: 1 - type: Transform -- uid: 10817 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -88.5,42.5 - parent: 1 - type: Transform -- uid: 10818 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -87.5,42.5 - parent: 1 - type: Transform -- uid: 10819 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -90.5,44.5 - parent: 1 - type: Transform -- uid: 10820 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -89.5,44.5 - parent: 1 - type: Transform -- uid: 10821 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -88.5,44.5 - parent: 1 - type: Transform -- uid: 10822 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -87.5,44.5 - parent: 1 - type: Transform -- uid: 10823 - type: SpawnPointChaplain - components: - - pos: 20.5,-1.5 - parent: 1 - type: Transform -- uid: 10824 - type: SpawnPointAssistant - components: - - pos: -25.5,27.5 - parent: 1 - type: Transform -- uid: 10825 - type: SpawnPointAssistant - components: - - pos: -24.5,28.5 - parent: 1 - type: Transform -- uid: 10826 - type: SpawnPointAssistant - components: - - pos: -23.5,27.5 - parent: 1 - type: Transform -- uid: 10827 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -87.5,35.5 - parent: 1 - type: Transform -- uid: 10828 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -87.5,37.5 - parent: 1 - type: Transform -- uid: 10829 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -87.5,39.5 - parent: 1 - type: Transform -- uid: 10830 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -87.5,41.5 - parent: 1 - type: Transform -- uid: 10831 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -87.5,43.5 - parent: 1 - type: Transform -- uid: 10832 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -87.5,45.5 - parent: 1 - type: Transform -- uid: 10833 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -87.5,45.5 - parent: 1 - type: Transform -- uid: 10834 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -87.5,43.5 - parent: 1 - type: Transform -- uid: 10835 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -87.5,41.5 - parent: 1 - type: Transform -- uid: 10836 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -87.5,39.5 - parent: 1 - type: Transform -- uid: 10837 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -87.5,37.5 - parent: 1 - type: Transform -- uid: 10838 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -87.5,35.5 - parent: 1 - type: Transform -- uid: 10839 - type: GasMinerOxygen - components: - - rot: -1.5707963267948966 rad - pos: -89.5,35.5 - parent: 1 - type: Transform - - maxExternalPressure: 4000 - type: GasMiner -- uid: 10840 - type: GasMinerNitrogen - components: - - rot: -1.5707963267948966 rad - pos: -89.5,37.5 - parent: 1 - type: Transform - - maxExternalPressure: 4000 - type: GasMiner -- uid: 10841 - type: GasMinerCarbonDioxide - components: - - rot: -1.5707963267948966 rad - pos: -89.5,39.5 - parent: 1 - type: Transform -- uid: 10842 - type: GasMinerPlasma - components: - - pos: -89.5,43.5 - parent: 1 - type: Transform -- uid: 10844 - type: ChairFolding - components: - - pos: -60.5,42.5 - parent: 1 - type: Transform -- uid: 10845 - type: Girder - components: - - pos: -63.5,38.5 - parent: 1 - type: Transform -- uid: 10848 - type: ToiletEmpty - components: - - rot: 3.141592653589793 rad - pos: -62.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10851 - type: Table - components: - - pos: -61.5,41.5 - parent: 1 - type: Transform -- uid: 10853 - type: TableWood - components: - - pos: -63.5,39.5 - parent: 1 - type: Transform -- uid: 10854 - type: NuclearBomb - components: - - pos: -23.5,56.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10855 - type: WindoorCommandLocked - components: - - rot: 1.5707963267948966 rad - pos: -23.5,56.5 - parent: 1 - type: Transform -- uid: 10856 - type: WindowReinforcedDirectional - components: - - pos: -23.5,56.5 - parent: 1 - type: Transform -- uid: 10857 - type: TableReinforced - components: - - pos: -23.5,54.5 - parent: 1 - type: Transform -- uid: 10858 - type: TableReinforced - components: - - pos: -23.5,53.5 - parent: 1 - type: Transform -- uid: 10859 - type: TableReinforced - components: - - pos: -22.5,53.5 - parent: 1 - type: Transform -- uid: 10860 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -15.5,51.5 - parent: 1 - type: Transform -- uid: 10861 - type: LockerFreezer - components: - - pos: -20.5,53.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 8191 - - 14944 - - 14945 - type: ContainerContainer -- uid: 10862 - type: Rack - components: - - pos: -22.5,57.5 - parent: 1 - type: Transform -- uid: 10863 - type: Rack - components: - - pos: -21.5,57.5 - parent: 1 - type: Transform -- uid: 10864 - type: Rack - components: - - pos: -20.5,57.5 - parent: 1 - type: Transform -- uid: 10865 - type: SheetUranium1 - components: - - pos: -21.490997,57.551003 - parent: 1 - type: Transform -- uid: 10866 - type: SheetUranium1 - components: - - pos: -21.490997,57.551003 - parent: 1 - type: Transform -- uid: 10867 - type: SheetUranium1 - components: - - pos: -21.490997,57.551003 - parent: 1 - type: Transform -- uid: 10868 - type: SheetUranium1 - components: - - pos: -21.490997,57.551003 - parent: 1 - type: Transform -- uid: 10869 - type: SheetUranium1 - components: - - pos: -21.490997,57.551003 - parent: 1 - type: Transform -- uid: 10870 - type: IngotGold - components: - - pos: -20.428497,57.597878 - parent: 1 - type: Transform -- uid: 10871 - type: ToolboxGoldFilled - components: - - pos: -23.241955,53.59838 - parent: 1 - type: Transform - - nextAttack: 992.3779356 - type: MeleeWeapon -- uid: 10872 - type: DrinkGoldenCup - components: - - pos: -23.506622,54.363503 - parent: 1 - type: Transform -- uid: 10873 - type: ClothingHeadHatHairflower - components: - - pos: -22.049007,53.739006 - parent: 1 - type: Transform -- uid: 10874 - type: PinpointerNuclear - components: - - pos: -21.536793,53.579475 - parent: 1 - type: Transform -- uid: 10875 - type: ClothingNeckBling - components: - - pos: -22.564632,53.645256 - parent: 1 - type: Transform -- uid: 10876 - type: SheetPlasma - components: - - pos: -22.475372,57.582253 - parent: 1 - type: Transform -- uid: 10877 - type: ComfyChair - components: - - pos: -8.5,56.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10878 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: -7.5,55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10879 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -8.5,54.5 - parent: 1 - type: Transform -- uid: 10880 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: -10.5,54.5 - parent: 1 - type: Transform -- uid: 10881 - type: ChairFolding - components: - - pos: -10.5,56.5 - parent: 1 - type: Transform -- uid: 10882 - type: ChairOfficeLight - components: - - pos: -9.5,56.5 - parent: 1 - type: Transform -- uid: 10883 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -9.5,54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10884 - type: ComputerComms - components: - - pos: -16.5,66.5 - parent: 1 - type: Transform -- uid: 10885 - type: ComputerId - components: - - rot: -1.5707963267948966 rad - pos: -12.5,64.5 - parent: 1 - type: Transform -- uid: 10886 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -20.5,64.5 - parent: 1 - type: Transform -- uid: 10887 - type: ComputerRadar - components: - - rot: 1.5707963267948966 rad - pos: -21.5,61.5 - parent: 1 - type: Transform -- uid: 10888 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: -21.5,60.5 - parent: 1 - type: Transform -- uid: 10889 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -20.5,60.5 - parent: 1 - type: Transform -- uid: 10890 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -12.5,61.5 - parent: 1 - type: Transform -- uid: 10891 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: -13.5,64.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10892 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: -16.5,65.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10893 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: -19.5,64.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10894 - type: ComputerPowerMonitoring - components: - - rot: -1.5707963267948966 rad - pos: -11.5,60.5 - parent: 1 - type: Transform -- uid: 10895 - type: CableHV - components: - - pos: -14.5,60.5 - parent: 1 - type: Transform -- uid: 10896 - type: CableHV - components: - - pos: -13.5,60.5 - parent: 1 - type: Transform -- uid: 10897 - type: CableHV - components: - - pos: -12.5,60.5 - parent: 1 - type: Transform -- uid: 10898 - type: CableHV - components: - - pos: -11.5,60.5 - parent: 1 - type: Transform -- uid: 10899 - type: ComputerStationRecords - components: - - rot: -1.5707963267948966 rad - pos: -11.5,61.5 - parent: 1 - type: Transform -- uid: 10900 - type: FaxMachineCaptain - components: - - pos: -6.5,61.5 - parent: 1 - type: Transform -- uid: 10901 - type: FaxMachineBase - components: - - pos: -10.5,55.5 - parent: 1 - type: Transform - - name: Bridge - type: FaxMachine -- uid: 10902 - type: Dresser - components: - - pos: -5.5,61.5 - parent: 1 - type: Transform -- uid: 10903 - type: Bed - components: - - pos: -5.5,58.5 - parent: 1 - type: Transform -- uid: 10904 - type: BedsheetCaptain - components: - - pos: -5.5,58.5 - parent: 1 - type: Transform -- uid: 10905 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -8.5,61.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10906 - type: DogBed - components: - - pos: -9.5,59.5 - parent: 1 - type: Transform -- uid: 10907 - type: SpawnMobFoxRenault - components: - - pos: -9.5,59.5 - parent: 1 - type: Transform -- uid: 10908 - type: PaperCaptainsThoughts - components: - - pos: -7.0289607,61.72577 - parent: 1 - type: Transform -- uid: 10909 - type: PaperCaptainsThoughts - components: - - pos: -7.2008357,61.74714 - parent: 1 - type: Transform -- uid: 10910 - type: PaperCaptainsThoughts - components: - - pos: -7.2320857,61.62214 - parent: 1 - type: Transform -- uid: 10911 - type: PaperCaptainsThoughts - components: - - pos: -7.2164607,61.59089 - parent: 1 - type: Transform -- uid: 10912 - type: PaperCaptainsThoughts - components: - - pos: -7.0602107,61.575264 - parent: 1 - type: Transform -- uid: 10913 - type: PaperCaptainsThoughts - components: - - pos: -7.0602107,61.575264 - parent: 1 - type: Transform -- uid: 10914 - type: CigarGoldCase - components: - - pos: -7.7008357,61.63202 - parent: 1 - type: Transform -- uid: 10915 - type: MedkitFilled - components: - - pos: -20.50132,63.5821 - parent: 1 - type: Transform -- uid: 10916 - type: Flash - components: - - pos: -12.483002,63.566193 - parent: 1 - type: Transform -- uid: 10917 - type: Handcuffs - components: - - pos: -13.576752,65.56619 - parent: 1 - type: Transform -- uid: 10918 - type: WeaponCapacitorRecharger - components: - - pos: -17.5,66.5 - parent: 1 - type: Transform -- uid: 10919 - type: ToolboxEmergencyFilled - components: - - pos: -21.512825,62.627495 - parent: 1 - type: Transform -- uid: 10920 - type: ToolboxMechanicalFilled - components: - - pos: -11.49985,59.57393 - parent: 1 - type: Transform -- uid: 10921 - type: MedkitOxygenFilled - components: - - pos: -11.50255,62.54268 - parent: 1 - type: Transform -- uid: 10922 - type: TableWood - components: - - pos: -62.5,39.5 - parent: 1 - type: Transform -- uid: 10923 - type: TableFrame - components: - - pos: -61.5,39.5 - parent: 1 - type: Transform -- uid: 10924 - type: Window - components: - - pos: -64.5,43.5 - parent: 1 - type: Transform -- uid: 10925 - type: Window - components: - - pos: -63.5,43.5 - parent: 1 - type: Transform -- uid: 10926 - type: Grille - components: - - pos: -63.5,43.5 - parent: 1 - type: Transform -- uid: 10927 - type: Grille - components: - - pos: -64.5,43.5 - parent: 1 - type: Transform -- uid: 10928 - type: Grille - components: - - pos: -60.5,43.5 - parent: 1 - type: Transform -- uid: 10929 - type: Window - components: - - pos: -61.5,43.5 - parent: 1 - type: Transform -- uid: 10930 - type: Grille - components: - - pos: -61.5,43.5 - parent: 1 - type: Transform -- uid: 10931 - type: ToiletEmpty - components: - - pos: -64.5,45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10932 - type: ToiletEmpty - components: - - pos: -63.5,45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10933 - type: ToiletEmpty - components: - - pos: -60.5,45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10934 - type: ChairWood - components: - - pos: -61.5,45.5 - parent: 1 - type: Transform -- uid: 10935 - type: AirlockBrigGlassLocked - components: - - pos: -62.5,43.5 - parent: 1 - type: Transform -- uid: 10936 - type: PaperOffice - components: - - pos: -63.356304,41.570023 - parent: 1 - type: Transform -- uid: 10937 - type: PaperOffice - components: - - pos: -63.40318,41.570023 - parent: 1 - type: Transform -- uid: 10938 - type: PaperOffice - components: - - pos: -63.450054,41.570023 - parent: 1 - type: Transform -- uid: 10939 - type: PaperOffice - components: - - pos: -61.55943,41.601273 - parent: 1 - type: Transform -- uid: 10940 - type: PaperOffice - components: - - pos: -61.512554,41.601273 - parent: 1 - type: Transform -- uid: 10941 - type: PaperOffice - components: - - pos: -61.46568,41.585648 - parent: 1 - type: Transform -- uid: 10942 - type: BoxFolderBlue - components: - - pos: -61.137554,41.601273 - parent: 1 - type: Transform -- uid: 10943 - type: BoxFolderRed - components: - - pos: -63.62193,41.570023 - parent: 1 - type: Transform -- uid: 10944 - type: Lamp - components: - - pos: -60.49684,41.882523 - parent: 1 - type: Transform -- uid: 10945 - type: Lamp - components: - - pos: -63.449966,40.007523 - parent: 1 - type: Transform -- uid: 10946 - type: PaperOffice - components: - - pos: -62.24684,39.585648 - parent: 1 - type: Transform -- uid: 10947 - type: PaperOffice - components: - - pos: -62.30934,39.585648 - parent: 1 - type: Transform -- uid: 10948 - type: PaperOffice - components: - - pos: -62.356216,39.585648 - parent: 1 - type: Transform -- uid: 10949 - type: PaperOffice - components: - - pos: -62.37184,39.585648 - parent: 1 - type: Transform -- uid: 10950 - type: BoxFolderBlack - components: - - pos: -62.793716,39.585648 - parent: 1 - type: Transform -- uid: 10951 - type: ToiletEmpty - components: - - rot: 3.141592653589793 rad - pos: -64.5,39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10952 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: -71.5,45.5 - parent: 1 - type: Transform -- uid: 10953 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -57.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10954 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -56.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10955 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -58.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10956 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -58.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10957 - type: Grille - components: - - pos: -57.5,68.5 - parent: 1 - type: Transform -- uid: 10958 - type: TromboneInstrument - components: - - pos: -69.56805,45.607796 - parent: 1 - type: Transform -- uid: 10959 - type: ClothingShoesBootsPerformer - components: - - pos: -72.29666,45.642494 - parent: 1 - type: Transform -- uid: 10960 - type: ClothingUniformJumpskirtPerformer - components: - - pos: -72.56229,45.579994 - parent: 1 - type: Transform -- uid: 10961 - type: Railing - components: - - pos: -72.5,43.5 - parent: 1 - type: Transform -- uid: 10962 - type: Railing - components: - - pos: -71.5,43.5 - parent: 1 - type: Transform -- uid: 10963 - type: Railing - components: - - pos: -70.5,43.5 - parent: 1 - type: Transform -- uid: 10964 - type: TableWood - components: - - pos: -72.5,41.5 - parent: 1 - type: Transform -- uid: 10965 - type: TableWood - components: - - pos: -70.5,39.5 - parent: 1 - type: Transform -- uid: 10966 - type: ChairWood - components: - - pos: -72.5,42.5 - parent: 1 - type: Transform -- uid: 10967 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -72.5,40.5 - parent: 1 - type: Transform -- uid: 10968 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -71.5,39.5 - parent: 1 - type: Transform -- uid: 10969 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -69.5,39.5 - parent: 1 - type: Transform -- uid: 10970 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -72.5,39.5 - parent: 1 - type: Transform -- uid: 10971 - type: Cigarette - components: - - pos: -72.28104,41.642494 - parent: 1 - type: Transform -- uid: 10972 - type: Cigarette - components: - - pos: -72.67166,41.923744 - parent: 1 - type: Transform -- uid: 10973 - type: Cigarette - components: - - pos: -70.29666,39.954994 - parent: 1 - type: Transform -- uid: 10974 - type: Cigarette - components: - - pos: -70.68729,39.56437 - parent: 1 - type: Transform -- uid: 10975 - type: DrinkWhiskeyGlass - components: - - pos: -72.39041,41.78312 - parent: 1 - type: Transform -- uid: 10976 - type: DrinkWhiskeyGlass - components: - - pos: -70.37479,39.56437 - parent: 1 - type: Transform -- uid: 10977 - type: DrinkWhiskeyBottleFull - components: - - pos: -70.71854,40.09562 - parent: 1 - type: Transform -- uid: 10978 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -72.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10979 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10980 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -70.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10981 - type: CableMV - components: - - pos: -66.5,57.5 - parent: 1 - type: Transform -- uid: 10982 - type: CableMV - components: - - pos: -67.5,57.5 - parent: 1 - type: Transform -- uid: 10983 - type: CableMV - components: - - pos: -67.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10984 - type: CableMV - components: - - pos: -67.5,55.5 - parent: 1 - type: Transform -- uid: 10985 - type: CableMV - components: - - pos: -67.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10986 - type: CableMV - components: - - pos: -67.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10987 - type: CableMV - components: - - pos: -67.5,52.5 - parent: 1 - type: Transform -- uid: 10988 - type: CableMV - components: - - pos: -67.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10989 - type: CableMV - components: - - pos: -67.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10990 - type: CableMV - components: - - pos: -66.5,50.5 - parent: 1 - type: Transform -- uid: 10991 - type: CableMV - components: - - pos: -66.5,49.5 - parent: 1 - type: Transform -- uid: 10992 - type: CableMV - components: - - pos: -66.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10993 - type: CableMV - components: - - pos: -66.5,47.5 - parent: 1 - type: Transform -- uid: 10994 - type: CableMV - components: - - pos: -66.5,46.5 - parent: 1 - type: Transform -- uid: 10995 - type: CableMV - components: - - pos: -66.5,45.5 - parent: 1 - type: Transform -- uid: 10996 - type: CableMV - components: - - pos: -66.5,44.5 - parent: 1 - type: Transform -- uid: 10997 - type: CableMV - components: - - pos: -65.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10998 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -65.5,44.5 - parent: 1 - type: Transform -- uid: 10999 - type: CableApcExtension - components: - - pos: -65.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11000 - type: CableApcExtension - components: - - pos: -64.5,44.5 - parent: 1 - type: Transform -- uid: 11001 - type: CableApcExtension - components: - - pos: -63.5,44.5 - parent: 1 - type: Transform -- uid: 11002 - type: CableApcExtension - components: - - pos: -62.5,44.5 - parent: 1 - type: Transform -- uid: 11003 - type: CableApcExtension - components: - - pos: -61.5,44.5 - parent: 1 - type: Transform -- uid: 11004 - type: CableApcExtension - components: - - pos: -60.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11005 - type: CableApcExtension - components: - - pos: -59.5,44.5 - parent: 1 - type: Transform -- uid: 11006 - type: CableApcExtension - components: - - pos: -58.5,44.5 - parent: 1 - type: Transform -- uid: 11007 - type: CableApcExtension - components: - - pos: -57.5,46.5 - parent: 1 - type: Transform -- uid: 11008 - type: CableApcExtension - components: - - pos: -62.5,43.5 - parent: 1 - type: Transform -- uid: 11009 - type: CableApcExtension - components: - - pos: -62.5,42.5 - parent: 1 - type: Transform -- uid: 11010 - type: CableApcExtension - components: - - pos: -62.5,41.5 - parent: 1 - type: Transform -- uid: 11011 - type: CableApcExtension - components: - - pos: -62.5,40.5 - parent: 1 - type: Transform -- uid: 11012 - type: CableApcExtension - components: - - pos: -62.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11013 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -64.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11014 - type: Poweredlight - components: - - pos: -61.5,45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11015 - type: CableApcExtension - components: - - pos: -66.5,44.5 - parent: 1 - type: Transform -- uid: 11016 - type: CableApcExtension - components: - - pos: -66.5,45.5 - parent: 1 - type: Transform -- uid: 11017 - type: CableApcExtension - components: - - pos: -66.5,46.5 - parent: 1 - type: Transform -- uid: 11018 - type: CableApcExtension - components: - - pos: -66.5,47.5 - parent: 1 - type: Transform -- uid: 11019 - type: CableApcExtension - components: - - pos: -67.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11020 - type: CableApcExtension - components: - - pos: -68.5,47.5 - parent: 1 - type: Transform -- uid: 11021 - type: CableApcExtension - components: - - pos: -69.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11022 - type: CableApcExtension - components: - - pos: -70.5,47.5 - parent: 1 - type: Transform -- uid: 11023 - type: CableApcExtension - components: - - pos: -66.5,43.5 - parent: 1 - type: Transform -- uid: 11024 - type: CableApcExtension - components: - - pos: -66.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11025 - type: CableApcExtension - components: - - pos: -66.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11026 - type: CableApcExtension - components: - - pos: -66.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11027 - type: CableApcExtension - components: - - pos: -67.5,40.5 - parent: 1 - type: Transform -- uid: 11028 - type: CableApcExtension - components: - - pos: -68.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11029 - type: CableApcExtension - components: - - pos: -69.5,40.5 - parent: 1 - type: Transform -- uid: 11030 - type: CableApcExtension - components: - - pos: -70.5,40.5 - parent: 1 - type: Transform -- uid: 11031 - type: CableApcExtension - components: - - pos: -71.5,40.5 - parent: 1 - type: Transform -- uid: 11032 - type: CableApcExtension - components: - - pos: -71.5,41.5 - parent: 1 - type: Transform -- uid: 11033 - type: CableApcExtension - components: - - pos: -71.5,42.5 - parent: 1 - type: Transform -- uid: 11034 - type: CableApcExtension - components: - - pos: -71.5,43.5 - parent: 1 - type: Transform -- uid: 11035 - type: CableApcExtension - components: - - pos: -71.5,44.5 - parent: 1 - type: Transform -- uid: 11036 - type: CableApcExtension - components: - - pos: -66.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11037 - type: CableApcExtension - components: - - pos: -66.5,49.5 - parent: 1 - type: Transform -- uid: 11038 - type: CableApcExtension - components: - - pos: -66.5,50.5 - parent: 1 - type: Transform -- uid: 11039 - type: CableApcExtension - components: - - pos: -67.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11040 - type: CableApcExtension - components: - - pos: -67.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11041 - type: CableApcExtension - components: - - pos: -67.5,52.5 - parent: 1 - type: Transform -- uid: 11042 - type: CableApcExtension - components: - - pos: -68.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11043 - type: CableApcExtension - components: - - pos: -69.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11044 - type: CableApcExtension - components: - - pos: -70.5,52.5 - parent: 1 - type: Transform -- uid: 11045 - type: CableApcExtension - components: - - pos: -71.5,52.5 - parent: 1 - type: Transform -- uid: 11046 - type: CableApcExtension - components: - - pos: -71.5,53.5 - parent: 1 - type: Transform -- uid: 11047 - type: CableApcExtension - components: - - pos: -71.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11048 - type: CableApcExtension - components: - - pos: -71.5,55.5 - parent: 1 - type: Transform -- uid: 11049 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: -72.5,35.5 - parent: 1 - type: Transform -- uid: 11050 - type: WallReinforced - components: - - pos: -69.5,36.5 - parent: 1 - type: Transform -- uid: 11051 - type: WeldingFuelTankFull - components: - - pos: -70.5,35.5 - parent: 1 - type: Transform -- uid: 11052 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -76.5,51.5 - parent: 1 - type: Transform -- uid: 11053 - type: DisposalUnit - components: - - pos: -73.5,19.5 - parent: 1 - type: Transform -- uid: 11054 - type: DisposalUnit - components: - - pos: -63.5,28.5 - parent: 1 - type: Transform -- uid: 11055 - type: PottedPlantRandom - components: - - pos: -73.5,20.5 - parent: 1 - type: Transform -- uid: 11056 - type: PottedPlantRandom - components: - - pos: -71.5,15.5 - parent: 1 - type: Transform -- uid: 11057 - type: PottedPlantRandom - components: - - pos: -69.5,31.5 - parent: 1 - type: Transform -- uid: 11058 - type: APCBasic - components: - - pos: -68.5,35.5 - parent: 1 - type: Transform -- uid: 11059 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -76.5,36.5 - parent: 1 - type: Transform -- uid: 11060 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -75.5,21.5 - parent: 1 - type: Transform -- uid: 11061 - type: AirlockEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -72.5,26.5 - parent: 1 - type: Transform -- uid: 11062 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11063 - type: PoweredSmallLight - components: - - pos: 28.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11064 - type: CableMV - components: - - pos: -71.5,34.5 - parent: 1 - type: Transform -- uid: 11065 - type: CableMV - components: - - pos: -70.5,34.5 - parent: 1 - type: Transform -- uid: 11066 - type: CableMV - components: - - pos: -69.5,34.5 - parent: 1 - type: Transform -- uid: 11067 - type: CableMV - components: - - pos: -68.5,34.5 - parent: 1 - type: Transform -- uid: 11068 - type: CableMV - components: - - pos: -68.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11069 - type: CableMV - components: - - pos: -72.5,34.5 - parent: 1 - type: Transform -- uid: 11070 - type: CableMV - components: - - pos: -73.5,34.5 - parent: 1 - type: Transform -- uid: 11071 - type: CableMV - components: - - pos: -74.5,34.5 - parent: 1 - type: Transform -- uid: 11072 - type: CableMV - components: - - pos: -75.5,34.5 - parent: 1 - type: Transform -- uid: 11073 - type: CableMV - components: - - pos: -76.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11074 - type: CableMV - components: - - pos: -76.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11075 - type: CableMV - components: - - pos: -76.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11076 - type: CableMV - components: - - pos: -73.5,33.5 - parent: 1 - type: Transform -- uid: 11077 - type: CableMV - components: - - pos: -73.5,33.5 - parent: 1 - type: Transform -- uid: 11078 - type: CableMV - components: - - pos: -73.5,32.5 - parent: 1 - type: Transform -- uid: 11079 - type: CableMV - components: - - pos: -73.5,31.5 - parent: 1 - type: Transform -- uid: 11080 - type: CableMV - components: - - pos: -73.5,30.5 - parent: 1 - type: Transform -- uid: 11081 - type: CableMV - components: - - pos: -73.5,29.5 - parent: 1 - type: Transform -- uid: 11082 - type: CableMV - components: - - pos: -73.5,28.5 - parent: 1 - type: Transform -- uid: 11083 - type: GasPipeFourway - components: - - pos: -56.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11084 - type: GasPipeFourway - components: - - pos: -57.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11085 - type: CableMV - components: - - pos: -73.5,27.5 - parent: 1 - type: Transform -- uid: 11086 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -57.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11087 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11088 - type: GasPipeStraight - components: - - pos: -57.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11089 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11090 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11091 - type: CableMV - components: - - pos: -73.5,26.5 - parent: 1 - type: Transform -- uid: 11092 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11093 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -56.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11094 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -56.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11095 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -57.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11096 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -57.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11097 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11098 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11099 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11100 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11101 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11102 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11103 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -58.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11104 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11105 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11106 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11107 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11108 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11109 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11110 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11111 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11112 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11113 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11114 - type: CableMV - components: - - pos: -73.5,25.5 - parent: 1 - type: Transform -- uid: 11115 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11116 - type: CableMV - components: - - pos: -73.5,24.5 - parent: 1 - type: Transform -- uid: 11117 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11118 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11119 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -58.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11120 - type: CableMV - components: - - pos: -73.5,23.5 - parent: 1 - type: Transform -- uid: 11121 - type: CableMV - components: - - pos: -73.5,22.5 - parent: 1 - type: Transform -- uid: 11122 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -58.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11123 - type: GasVentScrubber - components: - - pos: -58.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11124 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -58.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11125 - type: GasPipeTJunction - components: - - pos: -57.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11126 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -56.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11127 - type: GasPipeStraight - components: - - pos: -56.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11128 - type: GasPipeStraight - components: - - pos: -57.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11129 - type: GasPipeStraight - components: - - pos: -57.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11130 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11131 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11132 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11133 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11134 - type: GasPipeTJunction - components: - - pos: -52.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11135 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11136 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11137 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -53.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11138 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11139 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11140 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11141 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11142 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11143 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11144 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11145 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -52.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11146 - type: GasVentScrubber - components: - - pos: -53.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11147 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -46.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11148 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -47.5,46.5 - parent: 1 - type: Transform -- uid: 11149 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11150 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11151 - type: GasPipeStraight - components: - - pos: -48.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11152 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11153 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11154 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11155 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11156 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -48.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11157 - type: CableMV - components: - - pos: -73.5,21.5 - parent: 1 - type: Transform -- uid: 11158 - type: CableMV - components: - - pos: -74.5,21.5 - parent: 1 - type: Transform -- uid: 11159 - type: CableMV - components: - - pos: -75.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11160 - type: CableApcExtension - components: - - pos: -75.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11161 - type: CableApcExtension - components: - - pos: -74.5,21.5 - parent: 1 - type: Transform -- uid: 11162 - type: CableApcExtension - components: - - pos: -73.5,21.5 - parent: 1 - type: Transform -- uid: 11163 - type: CableApcExtension - components: - - pos: -72.5,21.5 - parent: 1 - type: Transform -- uid: 11164 - type: CableApcExtension - components: - - pos: -71.5,21.5 - parent: 1 - type: Transform -- uid: 11165 - type: CableApcExtension - components: - - pos: -70.5,21.5 - parent: 1 - type: Transform -- uid: 11166 - type: CableApcExtension - components: - - pos: -69.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11167 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -48.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11168 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -46.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11169 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -46.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11170 - type: GasPipeStraight - components: - - pos: -48.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11171 - type: GasPipeStraight - components: - - pos: -48.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11172 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -47.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11173 - type: CableApcExtension - components: - - pos: -68.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11174 - type: CableApcExtension - components: - - pos: -67.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11175 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -47.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11176 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11177 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11178 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11179 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11180 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11181 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11182 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11183 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11184 - type: GasPipeTJunction - components: - - pos: -42.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11185 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -40.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11186 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11187 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11188 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11189 - type: GasPipeFourway - components: - - pos: -41.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11190 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11191 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11192 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -42.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11193 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11194 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11195 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11196 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -41.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11197 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11198 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11199 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11200 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11201 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11202 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11203 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11204 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11205 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11206 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11207 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11208 - type: GasVentPump - components: - - pos: -40.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11209 - type: GasVentScrubber - components: - - pos: -41.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11210 - type: GasPipeStraight - components: - - pos: -46.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11211 - type: GasPipeTJunction - components: - - pos: -36.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11212 - type: GasPipeTJunction - components: - - pos: -35.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11213 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11214 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11215 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11216 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11217 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11218 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11219 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11220 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11221 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -33.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11222 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -32.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11223 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -33.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11224 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -32.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11225 - type: GasPipeStraight - components: - - pos: -32.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11226 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11227 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -33.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11228 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -32.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11229 - type: GasPipeStraight - components: - - pos: -33.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11230 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11231 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11232 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11233 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11234 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11235 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -36.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11236 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -31.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11237 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -29.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11238 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -29.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11239 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -31.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11240 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -35.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11241 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11242 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11243 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11244 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11245 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11246 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11247 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11248 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11249 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11250 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11251 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11252 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11253 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11254 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11255 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -54.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11256 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11257 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11258 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -54.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11259 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11260 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11261 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11262 - type: GasPipeStraight - components: - - pos: -50.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11263 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11264 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11265 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11266 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -51.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11267 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -50.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11268 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -48.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11269 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -46.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11270 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -47.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11271 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -53.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11272 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -47.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11273 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -51.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11274 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -47.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11275 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11276 - type: GasPipeStraight - components: - - pos: -48.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11277 - type: GasPipeStraight - components: - - pos: -48.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11278 - type: GasPipeFourway - components: - - pos: -48.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11279 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -47.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11280 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -46.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11281 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11282 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11283 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -47.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11284 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -47.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11285 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11286 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -47.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11287 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -47.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11288 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -48.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11289 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11290 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11291 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11292 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11293 - type: GasPipeTJunction - components: - - pos: -50.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11294 - type: GasPipeTJunction - components: - - pos: -51.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11295 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11296 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -51.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11297 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -51.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11298 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11299 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -51.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11300 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11301 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -51.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11302 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11303 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -52.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11304 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -50.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11305 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -51.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11306 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -52.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11307 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -51.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11308 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -51.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11309 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11310 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11311 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11312 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -52.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11313 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11314 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11315 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11316 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -52.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11317 - type: GasVentPump - components: - - pos: -52.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11318 - type: GasVentPump - components: - - pos: -51.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11319 - type: GasVentScrubber - components: - - pos: -50.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11320 - type: GasVentScrubber - components: - - pos: -54.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11321 - type: GasVentPump - components: - - pos: -53.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11322 - type: CableApcExtension - components: - - pos: -66.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11323 - type: CableApcExtension - components: - - pos: -65.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11324 - type: CableApcExtension - components: - - pos: -64.5,21.5 - parent: 1 - type: Transform -- uid: 11325 - type: CableApcExtension - components: - - pos: -74.5,22.5 - parent: 1 - type: Transform -- uid: 11326 - type: CableApcExtension - components: - - pos: -74.5,23.5 - parent: 1 - type: Transform -- uid: 11327 - type: CableApcExtension - components: - - pos: -74.5,24.5 - parent: 1 - type: Transform -- uid: 11328 - type: CableApcExtension - components: - - pos: -74.5,25.5 - parent: 1 - type: Transform -- uid: 11329 - type: CableApcExtension - components: - - pos: -75.5,25.5 - parent: 1 - type: Transform -- uid: 11330 - type: CableApcExtension - components: - - pos: -76.5,25.5 - parent: 1 - type: Transform -- uid: 11331 - type: CableApcExtension - components: - - pos: -77.5,25.5 - parent: 1 - type: Transform -- uid: 11332 - type: CableApcExtension - components: - - pos: -78.5,25.5 - parent: 1 - type: Transform -- uid: 11333 - type: CableApcExtension - components: - - pos: -79.5,25.5 - parent: 1 - type: Transform -- uid: 11334 - type: CableApcExtension - components: - - pos: -79.5,24.5 - parent: 1 - type: Transform -- uid: 11335 - type: CableApcExtension - components: - - pos: -79.5,23.5 - parent: 1 - type: Transform -- uid: 11336 - type: CableApcExtension - components: - - pos: -79.5,22.5 - parent: 1 - type: Transform -- uid: 11337 - type: CableApcExtension - components: - - pos: -79.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11338 - type: CableApcExtension - components: - - pos: -79.5,20.5 - parent: 1 - type: Transform -- uid: 11339 - type: CableApcExtension - components: - - pos: -79.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11340 - type: CableApcExtension - components: - - pos: -80.5,19.5 - parent: 1 - type: Transform -- uid: 11341 - type: CableApcExtension - components: - - pos: -81.5,19.5 - parent: 1 - type: Transform -- uid: 11342 - type: CableApcExtension - components: - - pos: -78.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11343 - type: CableApcExtension - components: - - pos: -77.5,19.5 - parent: 1 - type: Transform -- uid: 11344 - type: CableApcExtension - components: - - pos: -80.5,23.5 - parent: 1 - type: Transform -- uid: 11345 - type: CableApcExtension - components: - - pos: -81.5,23.5 - parent: 1 - type: Transform -- uid: 11346 - type: CableApcExtension - components: - - pos: -82.5,23.5 - parent: 1 - type: Transform -- uid: 11347 - type: CableApcExtension - components: - - pos: -83.5,23.5 - parent: 1 - type: Transform -- uid: 11348 - type: CableApcExtension - components: - - pos: -84.5,23.5 - parent: 1 - type: Transform -- uid: 11349 - type: CableApcExtension - components: - - pos: -84.5,22.5 - parent: 1 - type: Transform -- uid: 11350 - type: CableApcExtension - components: - - pos: -84.5,21.5 - parent: 1 - type: Transform -- uid: 11351 - type: CableApcExtension - components: - - pos: -84.5,20.5 - parent: 1 - type: Transform -- uid: 11352 - type: CableApcExtension - components: - - pos: -79.5,26.5 - parent: 1 - type: Transform -- uid: 11353 - type: CableApcExtension - components: - - pos: -79.5,27.5 - parent: 1 - type: Transform -- uid: 11354 - type: CableApcExtension - components: - - pos: -80.5,27.5 - parent: 1 - type: Transform -- uid: 11355 - type: CableApcExtension - components: - - pos: -81.5,27.5 - parent: 1 - type: Transform -- uid: 11356 - type: CableApcExtension - components: - - pos: -82.5,27.5 - parent: 1 - type: Transform -- uid: 11357 - type: CableApcExtension - components: - - pos: -83.5,27.5 - parent: 1 - type: Transform -- uid: 11358 - type: CableApcExtension - components: - - pos: -84.5,27.5 - parent: 1 - type: Transform -- uid: 11359 - type: CableApcExtension - components: - - pos: -84.5,28.5 - parent: 1 - type: Transform -- uid: 11360 - type: CableApcExtension - components: - - pos: -84.5,29.5 - parent: 1 - type: Transform -- uid: 11361 - type: CableApcExtension - components: - - pos: -84.5,30.5 - parent: 1 - type: Transform -- uid: 11362 - type: CableApcExtension - components: - - pos: -74.5,26.5 - parent: 1 - type: Transform -- uid: 11363 - type: CableApcExtension - components: - - pos: -74.5,27.5 - parent: 1 - type: Transform -- uid: 11364 - type: CableApcExtension - components: - - pos: -74.5,28.5 - parent: 1 - type: Transform -- uid: 11365 - type: CableApcExtension - components: - - pos: -74.5,29.5 - parent: 1 - type: Transform -- uid: 11366 - type: CableApcExtension - components: - - pos: -74.5,20.5 - parent: 1 - type: Transform -- uid: 11367 - type: CableApcExtension - components: - - pos: -74.5,19.5 - parent: 1 - type: Transform -- uid: 11368 - type: CableApcExtension - components: - - pos: -74.5,18.5 - parent: 1 - type: Transform -- uid: 11369 - type: CableApcExtension - components: - - pos: -74.5,17.5 - parent: 1 - type: Transform -- uid: 11370 - type: CableApcExtension - components: - - pos: -74.5,16.5 - parent: 1 - type: Transform -- uid: 11371 - type: CableApcExtension - components: - - pos: -73.5,16.5 - parent: 1 - type: Transform -- uid: 11372 - type: CableApcExtension - components: - - pos: -72.5,16.5 - parent: 1 - type: Transform -- uid: 11373 - type: CableApcExtension - components: - - pos: -71.5,16.5 - parent: 1 - type: Transform -- uid: 11374 - type: CableApcExtension - components: - - pos: -70.5,16.5 - parent: 1 - type: Transform -- uid: 11375 - type: CableApcExtension - components: - - pos: -69.5,16.5 - parent: 1 - type: Transform -- uid: 11376 - type: CableApcExtension - components: - - pos: -60.5,6.5 - parent: 1 - type: Transform -- uid: 11377 - type: CableApcExtension - components: - - pos: -60.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11378 - type: CableApcExtension - components: - - pos: -60.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11379 - type: CableApcExtension - components: - - pos: -61.5,8.5 - parent: 1 - type: Transform -- uid: 11380 - type: CableApcExtension - components: - - pos: -62.5,8.5 - parent: 1 - type: Transform -- uid: 11381 - type: CableApcExtension - components: - - pos: -63.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11382 - type: CableApcExtension - components: - - pos: -64.5,8.5 - parent: 1 - type: Transform -- uid: 11383 - type: CableApcExtension - components: - - pos: -65.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11384 - type: CableApcExtension - components: - - pos: -66.5,8.5 - parent: 1 - type: Transform -- uid: 11385 - type: CableApcExtension - components: - - pos: -66.5,9.5 - parent: 1 - type: Transform -- uid: 11386 - type: CableApcExtension - components: - - pos: -66.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11387 - type: CableApcExtension - components: - - pos: -66.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11388 - type: CableApcExtension - components: - - pos: -66.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11389 - type: CableApcExtension - components: - - pos: -66.5,13.5 - parent: 1 - type: Transform -- uid: 11390 - type: CableApcExtension - components: - - pos: -66.5,14.5 - parent: 1 - type: Transform -- uid: 11391 - type: CableApcExtension - components: - - pos: -66.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11392 - type: CableApcExtension - components: - - pos: -66.5,16.5 - parent: 1 - type: Transform -- uid: 11393 - type: CableApcExtension - components: - - pos: -65.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11394 - type: CableApcExtension - components: - - pos: -64.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11395 - type: CableApcExtension - components: - - pos: -63.5,16.5 - parent: 1 - type: Transform -- uid: 11396 - type: CableApcExtension - components: - - pos: -68.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11397 - type: CableApcExtension - components: - - pos: -68.5,34.5 - parent: 1 - type: Transform -- uid: 11398 - type: CableApcExtension - components: - - pos: -68.5,33.5 - parent: 1 - type: Transform -- uid: 11399 - type: CableApcExtension - components: - - pos: -67.5,33.5 - parent: 1 - type: Transform -- uid: 11400 - type: CableApcExtension - components: - - pos: -66.5,33.5 - parent: 1 - type: Transform -- uid: 11401 - type: CableApcExtension - components: - - pos: -65.5,33.5 - parent: 1 - type: Transform -- uid: 11402 - type: CableApcExtension - components: - - pos: -64.5,33.5 - parent: 1 - type: Transform -- uid: 11403 - type: CableApcExtension - components: - - pos: -64.5,31.5 - parent: 1 - type: Transform -- uid: 11404 - type: CableApcExtension - components: - - pos: -63.5,32.5 - parent: 1 - type: Transform -- uid: 11405 - type: CableApcExtension - components: - - pos: -62.5,32.5 - parent: 1 - type: Transform -- uid: 11406 - type: CableApcExtension - components: - - pos: -61.5,32.5 - parent: 1 - type: Transform -- uid: 11407 - type: CableApcExtension - components: - - pos: -60.5,32.5 - parent: 1 - type: Transform -- uid: 11408 - type: CableApcExtension - components: - - pos: -64.5,32.5 - parent: 1 - type: Transform -- uid: 11409 - type: CableApcExtension - components: - - pos: -64.5,30.5 - parent: 1 - type: Transform -- uid: 11410 - type: CableApcExtension - components: - - pos: -64.5,29.5 - parent: 1 - type: Transform -- uid: 11411 - type: CableApcExtension - components: - - pos: -64.5,28.5 - parent: 1 - type: Transform -- uid: 11412 - type: CableApcExtension - components: - - pos: -64.5,27.5 - parent: 1 - type: Transform -- uid: 11413 - type: CableApcExtension - components: - - pos: -65.5,27.5 - parent: 1 - type: Transform -- uid: 11414 - type: CableApcExtension - components: - - pos: -66.5,27.5 - parent: 1 - type: Transform -- uid: 11415 - type: CableApcExtension - components: - - pos: -69.5,34.5 - parent: 1 - type: Transform -- uid: 11416 - type: CableApcExtension - components: - - pos: -70.5,34.5 - parent: 1 - type: Transform -- uid: 11417 - type: CableApcExtension - components: - - pos: -71.5,34.5 - parent: 1 - type: Transform -- uid: 11418 - type: CableApcExtension - components: - - pos: -72.5,34.5 - parent: 1 - type: Transform -- uid: 11419 - type: CableApcExtension - components: - - pos: -73.5,34.5 - parent: 1 - type: Transform -- uid: 11420 - type: CableApcExtension - components: - - pos: -74.5,34.5 - parent: 1 - type: Transform -- uid: 11421 - type: CableApcExtension - components: - - pos: -74.5,33.5 - parent: 1 - type: Transform -- uid: 11422 - type: CableApcExtension - components: - - pos: -74.5,32.5 - parent: 1 - type: Transform -- uid: 11423 - type: CableApcExtension - components: - - pos: -74.5,31.5 - parent: 1 - type: Transform -- uid: 11424 - type: CableApcExtension - components: - - pos: -76.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11425 - type: CableApcExtension - components: - - pos: -77.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11426 - type: CableApcExtension - components: - - pos: -78.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11427 - type: CableApcExtension - components: - - pos: -79.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11428 - type: CableApcExtension - components: - - pos: -80.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11429 - type: CableApcExtension - components: - - pos: -81.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11430 - type: CableApcExtension - components: - - pos: -82.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11431 - type: CableApcExtension - components: - - pos: -83.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11432 - type: CableApcExtension - components: - - pos: -78.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11433 - type: CableApcExtension - components: - - pos: -78.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11434 - type: CableApcExtension - components: - - pos: -78.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11435 - type: CableApcExtension - components: - - pos: -78.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11436 - type: CableApcExtension - components: - - pos: -78.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11437 - type: CableApcExtension - components: - - pos: -78.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11438 - type: CableApcExtension - components: - - pos: -78.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11439 - type: CableApcExtension - components: - - pos: -78.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11440 - type: CableApcExtension - components: - - pos: -78.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11441 - type: CableApcExtension - components: - - pos: -78.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11442 - type: CableApcExtension - components: - - pos: -77.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11443 - type: CableApcExtension - components: - - pos: -77.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11444 - type: CableApcExtension - components: - - pos: -79.5,46.5 - parent: 1 - type: Transform -- uid: 11445 - type: CableApcExtension - components: - - pos: -79.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11446 - type: CableApcExtension - components: - - pos: -80.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11447 - type: CableApcExtension - components: - - pos: -81.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11448 - type: CableApcExtension - components: - - pos: -82.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11449 - type: CableApcExtension - components: - - pos: -83.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11450 - type: CableApcExtension - components: - - pos: -84.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11451 - type: CableApcExtension - components: - - pos: -85.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11452 - type: CableApcExtension - components: - - pos: -85.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11453 - type: CableApcExtension - components: - - pos: -85.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11454 - type: CableApcExtension - components: - - pos: -85.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11455 - type: CableApcExtension - components: - - pos: -85.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11456 - type: CableApcExtension - components: - - pos: -85.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11457 - type: CableApcExtension - components: - - pos: -85.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11458 - type: CableApcExtension - components: - - pos: -85.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11459 - type: CableApcExtension - components: - - pos: -85.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11460 - type: CableApcExtension - components: - - pos: -85.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11461 - type: CableApcExtension - components: - - pos: -85.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11462 - type: CableApcExtension - components: - - pos: -85.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11463 - type: CableApcExtension - components: - - pos: -85.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11464 - type: CableApcExtension - components: - - pos: -85.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11465 - type: CableApcExtension - components: - - pos: -86.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11466 - type: CableApcExtension - components: - - pos: -87.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11467 - type: CableApcExtension - components: - - pos: -87.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11471 - type: CableApcExtension - components: - - pos: -87.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11472 - type: CableApcExtension - components: - - pos: -87.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11473 - type: CableApcExtension - components: - - pos: -87.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11474 - type: CableApcExtension - components: - - pos: -87.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11476 - type: CableApcExtension - components: - - pos: -87.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11477 - type: CableApcExtension - components: - - pos: -87.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11478 - type: CableApcExtension - components: - - pos: -87.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11479 - type: CableApcExtension - components: - - pos: -87.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11480 - type: CableApcExtension - components: - - pos: -87.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11481 - type: CableApcExtension - components: - - pos: -87.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11482 - type: CableApcExtension - components: - - pos: -87.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11483 - type: CableApcExtension - components: - - pos: -88.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11484 - type: CableApcExtension - components: - - pos: -89.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11485 - type: CableApcExtension - components: - - pos: -90.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11486 - type: CableApcExtension - components: - - pos: -91.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11487 - type: CableApcExtension - components: - - pos: -91.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11488 - type: CableApcExtension - components: - - pos: -91.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11489 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11490 - type: CableApcExtension - components: - - pos: -91.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11491 - type: CableApcExtension - components: - - pos: -91.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11492 - type: CableApcExtension - components: - - pos: -91.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11493 - type: CableApcExtension - components: - - pos: -91.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11494 - type: CableApcExtension - components: - - pos: -91.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11495 - type: CableApcExtension - components: - - pos: -91.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11496 - type: CableApcExtension - components: - - pos: -91.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11497 - type: CableApcExtension - components: - - pos: -91.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11498 - type: CableApcExtension - components: - - pos: -91.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11499 - type: CableApcExtension - components: - - pos: -91.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11500 - type: CableApcExtension - components: - - pos: -84.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11501 - type: CableApcExtension - components: - - pos: -84.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11502 - type: CableApcExtension - components: - - pos: -83.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11504 - type: CableApcExtension - components: - - pos: -82.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11505 - type: CableApcExtension - components: - - pos: -81.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11506 - type: CableApcExtension - components: - - pos: -80.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11507 - type: CableApcExtension - components: - - pos: -80.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11508 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -84.5,50.5 - parent: 1 - type: Transform -- uid: 11509 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -84.5,50.5 - parent: 1 - type: Transform -- uid: 11510 - type: CableApcExtension - components: - - pos: -84.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11511 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -74.5,54.5 - parent: 1 - type: Transform -- uid: 11512 - type: CableApcExtension - components: - - pos: -78.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11513 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -43.5,30.5 - parent: 1 - type: Transform -- uid: 11514 - type: CableApcExtension - components: - - pos: -78.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11515 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: -42.5,30.5 - parent: 1 - type: Transform -- uid: 11516 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: -41.5,30.5 - parent: 1 - type: Transform -- uid: 11517 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -40.5,30.5 - parent: 1 - type: Transform -- uid: 11518 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -43.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11519 - type: GasPipeTJunction - components: - - pos: -42.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11520 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11521 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11522 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11523 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11524 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11525 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11526 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11527 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11528 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11529 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11530 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11531 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11532 - type: GasPipeFourway - components: - - pos: -38.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11533 - type: GasPipeFourway - components: - - pos: -36.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11534 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -37.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11535 - type: GasPipeStraight - components: - - pos: -36.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11536 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -38.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11537 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11538 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11539 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11540 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11541 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11542 - type: GasPipeStraight - components: - - pos: -36.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11543 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -36.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11544 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11545 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11546 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11547 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11548 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11549 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11550 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11551 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11552 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11553 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11554 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11555 - type: GasVentScrubber - components: - - pos: -43.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11556 - type: GasVentScrubber - components: - - pos: -37.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11557 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -42.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11558 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -37.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11559 - type: GasPipeFourway - components: - - pos: -36.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11560 - type: GasPipeFourway - components: - - pos: -38.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11561 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11562 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11563 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11564 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11565 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11566 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11567 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11568 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11569 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11570 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11571 - type: GasPipeStraight - components: - - pos: -38.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11572 - type: GasPipeStraight - components: - - pos: -36.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11573 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11574 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11575 - type: CableApcExtension - components: - - pos: -40.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11576 - type: GasPipeStraight - components: - - pos: -38.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11577 - type: GasPipeStraight - components: - - pos: -36.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11578 - type: GasPipeStraight - components: - - pos: -38.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11579 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -32.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11580 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -31.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11581 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11582 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11583 - type: GasPipeStraight - components: - - pos: -31.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11584 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11585 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11586 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11587 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11588 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11589 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11590 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11591 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11592 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -40.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11593 - type: GasVentPump - components: - - pos: -36.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11594 - type: GasVentPump - components: - - pos: -32.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11595 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -27.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11596 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -40.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11597 - type: GasVentScrubber - components: - - pos: -38.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11598 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -27.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11599 - type: GasVentScrubber - components: - - pos: -31.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11600 - type: SpawnPointHeadOfPersonnel - components: - - pos: -20.5,38.5 - parent: 1 - type: Transform -- uid: 11601 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -36.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11602 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -38.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11603 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -38.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11604 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -36.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11605 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -36.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11606 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -38.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11607 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -38.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11608 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -36.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11609 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11610 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11611 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11612 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11613 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11614 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -36.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11615 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11616 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -38.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11617 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11618 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11619 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11620 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11621 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11622 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11623 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11624 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11625 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11626 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11627 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11628 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11629 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11630 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11631 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11632 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11633 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11634 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11635 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11636 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11637 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11638 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11639 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11640 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -37.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11641 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -37.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11642 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -37.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11643 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -37.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11644 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -37.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11645 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -37.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11646 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -41.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11647 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -41.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11648 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11649 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -33.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11650 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11651 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11652 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11653 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11654 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11655 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11656 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11657 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11658 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11659 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11660 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11661 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11662 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -33.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11663 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11664 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11665 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11666 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11667 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11668 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11669 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11670 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -34.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11671 - type: GasPipeStraight - components: - - pos: -34.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11672 - type: GasPipeStraight - components: - - pos: -34.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11673 - type: GasPipeStraight - components: - - pos: -34.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11674 - type: GasPipeStraight - components: - - pos: -33.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11675 - type: GasVentScrubber - components: - - pos: -33.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11676 - type: GasVentPump - components: - - pos: -34.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11677 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -25.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11678 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -25.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11679 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -57.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11680 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -58.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11681 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -58.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11682 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -56.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11683 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11684 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11685 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11686 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11687 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11688 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11689 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -58.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11690 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11691 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11692 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -56.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11693 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11694 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11695 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11696 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11697 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -54.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11698 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -54.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11699 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11700 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -58.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11701 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -56.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11702 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -58.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11703 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -56.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11704 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -58.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11705 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -56.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11706 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -53.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11707 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -54.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11708 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -53.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11709 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11710 - type: GasPipeStraight - components: - - pos: -56.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11711 - type: GasPipeStraight - components: - - pos: -56.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11712 - type: GasPipeStraight - components: - - pos: -56.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11713 - type: GasPipeStraight - components: - - pos: -56.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11714 - type: GasPipeStraight - components: - - pos: -56.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11715 - type: GasPipeStraight - components: - - pos: -58.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11716 - type: GasPipeStraight - components: - - pos: -58.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11717 - type: GasPipeStraight - components: - - pos: -58.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11718 - type: GasPipeStraight - components: - - pos: -58.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11719 - type: GasPipeStraight - components: - - pos: -58.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11720 - type: GasPipeStraight - components: - - pos: -58.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11721 - type: GasPipeStraight - components: - - pos: -56.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11722 - type: GasPipeStraight - components: - - pos: -56.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11723 - type: GasPipeStraight - components: - - pos: -58.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11724 - type: GasPipeStraight - components: - - pos: -58.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11725 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11726 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11727 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11728 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11729 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11730 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11731 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11732 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11733 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11734 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11735 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11736 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11737 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11738 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11739 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11740 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11741 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -54.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11742 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -54.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11743 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -54.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11744 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -53.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11745 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -53.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11746 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -53.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11747 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -57.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11748 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -57.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11749 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -57.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11750 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -52.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11751 - type: GasVentScrubber - components: - - pos: -54.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11752 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -57.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11753 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -57.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11754 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -57.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11755 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -52.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11756 - type: GasVentPump - components: - - pos: -53.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11757 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -67.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11758 - type: GasPipeTJunction - components: - - pos: -66.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11759 - type: GasPipeFourway - components: - - pos: -58.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11760 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -58.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11761 - type: GasPipeFourway - components: - - pos: -56.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11762 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11763 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11764 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -56.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11765 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11766 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11767 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11768 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11769 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11770 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11771 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11772 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11773 - type: GasPipeStraight - components: - - pos: -56.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11774 - type: GasPipeStraight - components: - - pos: -56.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11775 - type: GasPipeStraight - components: - - pos: -56.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11776 - type: GasPipeStraight - components: - - pos: -58.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11777 - type: GasPipeStraight - components: - - pos: -58.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11778 - type: GasPipeStraight - components: - - pos: -58.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11779 - type: GasPipeStraight - components: - - pos: -58.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11780 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11781 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11782 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11783 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11784 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -61.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11785 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11786 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11787 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -61.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11788 - type: GasPipeBend - components: - - pos: -57.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11789 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -57.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11790 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -57.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11791 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -62.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11792 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -63.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11793 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -64.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11794 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11795 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -66.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11796 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -62.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11797 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -63.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11798 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -64.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11799 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11800 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -67.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11801 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -68.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11802 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -69.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11803 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -70.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11804 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -71.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11805 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -68.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11806 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -69.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11807 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -70.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11808 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -71.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11809 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -72.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11810 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -72.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11811 - type: GasVentScrubber - components: - - pos: -67.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11812 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -73.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11813 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -73.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11814 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -66.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11815 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11816 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11817 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11818 - type: GasPipeTJunction - components: - - pos: -57.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11819 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11820 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11822 - type: GasPipeStraight - components: - - pos: -58.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11823 - type: GasPipeStraight - components: - - pos: -58.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11824 - type: GasPipeStraight - components: - - pos: -56.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11825 - type: GasPipeStraight - components: - - pos: -56.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11826 - type: GasPipeStraight - components: - - pos: -56.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11827 - type: GasPipeStraight - components: - - pos: -58.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11828 - type: GasPipeStraight - components: - - pos: -58.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11829 - type: GasPipeStraight - components: - - pos: -58.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11830 - type: GasPipeStraight - components: - - pos: -58.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11831 - type: GasPipeStraight - components: - - pos: -56.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11832 - type: GasPipeStraight - components: - - pos: -56.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11833 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11834 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11835 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11836 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11837 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11838 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11839 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11840 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11841 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11842 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11843 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11844 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11845 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11846 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11847 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11848 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11886 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -51.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11887 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -50.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11888 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -49.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11889 - type: GasPipeTJunction - components: - - pos: -48.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11890 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11891 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11892 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11893 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11894 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11895 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11896 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11897 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11898 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -51.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11899 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -51.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11900 - type: GasPipeTJunction - components: - - pos: -51.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11901 - type: GasPipeFourway - components: - - pos: -50.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11902 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11903 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11904 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11905 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11906 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11907 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -49.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11908 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -46.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11909 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -47.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11910 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11911 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11912 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11913 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11914 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11915 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -53.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11916 - type: GasVentScrubber - components: - - pos: -50.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11917 - type: GasVentScrubber - components: - - pos: -47.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11918 - type: GasVentPump - components: - - pos: -49.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11919 - type: GasVentPump - components: - - pos: -46.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11920 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -53.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11921 - type: GasPipeStraight - components: - - pos: -49.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11922 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11923 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11924 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11925 - type: GasVentScrubber - components: - - pos: -49.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11926 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -48.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11927 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11928 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11929 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11930 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11931 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11932 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11933 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11934 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11935 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11936 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11937 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11938 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11939 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11940 - type: GasPipeFourway - components: - - pos: -41.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11941 - type: GasPipeFourway - components: - - pos: -40.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11942 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11943 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11944 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11945 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11946 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11947 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11948 - type: GasVentPump - components: - - pos: -41.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11949 - type: GasVentScrubber - components: - - pos: -40.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11950 - type: GasPipeStraight - components: - - pos: -41.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11951 - type: GasPipeStraight - components: - - pos: -41.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11952 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -40.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11953 - type: GasPipeStraight - components: - - pos: -40.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11954 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -41.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11955 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -41.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11956 - type: GasPipeStraight - components: - - pos: -41.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11957 - type: GasPipeStraight - components: - - pos: -41.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11958 - type: GasPipeStraight - components: - - pos: -40.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11959 - type: GasPipeStraight - components: - - pos: -41.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11960 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11961 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -40.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11962 - type: GasPipeStraight - components: - - pos: -40.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11963 - type: GasPipeStraight - components: - - pos: -40.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11964 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11965 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11966 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11967 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11968 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -40.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11969 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -38.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11970 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -41.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11971 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -38.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11974 - type: GasPipeFourway - components: - - pos: -44.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11975 - type: GasPipeFourway - components: - - pos: -43.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11976 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11977 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11978 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11979 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -43.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11980 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -43.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11981 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11982 - type: GasPipeStraight - components: - - pos: -43.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11983 - type: GasPipeStraight - components: - - pos: -43.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11984 - type: GasPipeStraight - components: - - pos: -43.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11985 - type: GasPipeStraight - components: - - pos: -44.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11986 - type: GasPipeStraight - components: - - pos: -44.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11987 - type: GasPipeStraight - components: - - pos: -44.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11988 - type: GasPipeStraight - components: - - pos: -43.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11989 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11990 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11991 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11992 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11993 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11996 - type: GasVentPump - components: - - pos: -44.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11997 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11998 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -44.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11999 - type: GasVentScrubber - components: - - pos: -43.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12000 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -43.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12001 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12002 - type: GasPipeTJunction - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12003 - type: GasPipeTJunction - components: - - pos: -36.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12004 - type: GasPipeStraight - components: - - pos: -37.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12005 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12006 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12007 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12008 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12010 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12011 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12012 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12013 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12014 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12016 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -37.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12018 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -36.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12019 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12021 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12023 - type: SalvageMagnet - components: - - pos: -48.5,-15.5 - parent: 1 - type: Transform -- uid: 12024 - type: ComputerRadar - components: - - pos: -47.5,-12.5 - parent: 1 - type: Transform -- uid: 12025 - type: PartRodMetal - components: - - pos: -38.405903,-9.376988 - parent: 1 - type: Transform -- uid: 12026 - type: PaperOffice - components: - - pos: -31.597652,-1.4642928 - parent: 1 - type: Transform -- uid: 12027 - type: PaperOffice - components: - - pos: -31.503902,-1.4955428 - parent: 1 - type: Transform -- uid: 12028 - type: PaperOffice - components: - - pos: -31.378902,-1.5892928 - parent: 1 - type: Transform -- uid: 12029 - type: PaperOffice - components: - - pos: -31.5229,-1.5424862 - parent: 1 - type: Transform -- uid: 12030 - type: PaperOffice - components: - - pos: -31.4604,-1.5424862 - parent: 1 - type: Transform -- uid: 12031 - type: BoxFolderYellow - components: - - pos: -31.49165,-1.6362362 - parent: 1 - type: Transform -- uid: 12032 - type: Lamp - components: - - pos: -31.488277,-3.1049178 - parent: 1 - type: Transform -- uid: 12033 - type: Lamp - components: - - pos: -37.5201,-11.214624 - parent: 1 - type: Transform -- uid: 12034 - type: FireExtinguisher - components: - - pos: -37.3685,-10.479783 - parent: 1 - type: Transform -- uid: 12035 - type: FireExtinguisher - components: - - pos: -37.64975,-10.542283 - parent: 1 - type: Transform -- uid: 12036 - type: ExtinguisherCabinet - components: - - pos: -46.5,-10.5 - parent: 1 - type: Transform -- uid: 12037 - type: ExtinguisherCabinet - components: - - pos: -35.5,-4.5 - parent: 1 - type: Transform -- uid: 12038 - type: ExtinguisherCabinet - components: - - pos: -55.5,9.5 - parent: 1 - type: Transform -- uid: 12039 - type: CableApcExtension - components: - - pos: -78.5,33.5 - parent: 1 - type: Transform -- uid: 12040 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12041 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12042 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12043 - type: GasPipeStraight - components: - - pos: -38.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12044 - type: GasPipeStraight - components: - - pos: -38.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12045 - type: GasPipeStraight - components: - - pos: -38.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12046 - type: GasPipeStraight - components: - - pos: -38.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12047 - type: GasPipeStraight - components: - - pos: -38.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12048 - type: GasPipeStraight - components: - - pos: -38.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12049 - type: GasPipeStraight - components: - - pos: -38.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12050 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12051 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12052 - type: GasPipeFourway - components: - - pos: -38.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12053 - type: GasPipeFourway - components: - - pos: -36.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12054 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12055 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12056 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12057 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12058 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12059 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12060 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12061 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12062 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12063 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -36.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12064 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -38.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12065 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12066 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12067 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12068 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12069 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12070 - type: GasPipeStraight - components: - - pos: -32.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12071 - type: GasPipeStraight - components: - - pos: -32.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12072 - type: GasPipeStraight - components: - - pos: -32.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12073 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12074 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -33.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12075 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12076 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12077 - type: GasPipeTJunction - components: - - pos: -33.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12078 - type: GasPipeTJunction - components: - - pos: -32.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12079 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -32.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12080 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -33.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12081 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12082 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12083 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12084 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12085 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12086 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12087 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12088 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12089 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12090 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12091 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12092 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12093 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -25.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12094 - type: GasPipeFourway - components: - - pos: -23.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12095 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12096 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12097 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12098 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12099 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12100 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -23.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12101 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -25.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12102 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12103 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12104 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12105 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12106 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -25.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12107 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -23.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12108 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12109 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12110 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12111 - type: GasPipeStraight - components: - - pos: -25.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12112 - type: GasPipeStraight - components: - - pos: -25.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12113 - type: GasPipeStraight - components: - - pos: -25.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12114 - type: GasPipeStraight - components: - - pos: -23.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12115 - type: GasPipeStraight - components: - - pos: -23.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12116 - type: GasPipeStraight - components: - - pos: -23.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12117 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12118 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12119 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12120 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12121 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12122 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12123 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12124 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12125 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12126 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12127 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -30.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12128 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -26.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12129 - type: GasVentScrubber - components: - - pos: -25.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12130 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -26.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12131 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -30.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12132 - type: GasVentPump - components: - - pos: -23.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12133 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -24.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12134 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12135 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12136 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12137 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12138 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12139 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -23.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12140 - type: GasVentScrubber - components: - - pos: -24.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12141 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12142 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12143 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12144 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12145 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12146 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12147 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12148 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12149 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12150 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12151 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12152 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12153 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12154 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12155 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12156 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12157 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12158 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12159 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12160 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12161 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12162 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12163 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12164 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12165 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12166 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12167 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12168 - type: GasPipeTJunction - components: - - pos: -24.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12169 - type: GasPipeTJunction - components: - - pos: -22.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12170 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -31.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12171 - type: GasPipeTJunction - components: - - pos: -30.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12172 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -30.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12173 - type: GasVentScrubber - components: - - pos: -31.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12174 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -22.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12175 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -24.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12176 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12177 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12178 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12179 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12180 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12181 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12182 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12183 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12184 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12185 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12186 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -19.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12187 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12188 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12189 - type: GasPipeBend - components: - - pos: -19.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12190 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -20.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12191 - type: GasPipeFourway - components: - - pos: -17.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12192 - type: GasPipeFourway - components: - - pos: -15.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12193 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12194 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12195 - type: GasPipeStraight - components: - - pos: -17.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12196 - type: GasPipeStraight - components: - - pos: -17.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12197 - type: GasPipeStraight - components: - - pos: -17.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12198 - type: GasPipeStraight - components: - - pos: -17.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12199 - type: GasPipeStraight - components: - - pos: -15.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12200 - type: GasPipeStraight - components: - - pos: -15.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12201 - type: GasPipeTJunction - components: - - pos: -13.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12202 - type: GasPipeTJunction - components: - - pos: -11.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12203 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12204 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12205 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12206 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12207 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12208 - type: GasPipeTJunction - components: - - pos: -16.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12209 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12210 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12211 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12212 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12213 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12214 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12215 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12216 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12217 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -16.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12218 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -16.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12219 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -16.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12220 - type: ExtinguisherCabinet - components: - - pos: -55.5,29.5 - parent: 1 - type: Transform -- uid: 12221 - type: CableApcExtension - components: - - pos: -78.5,32.5 - parent: 1 - type: Transform -- uid: 12222 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12223 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12224 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12225 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12226 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12227 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12228 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12229 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12230 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12231 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12232 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12233 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12234 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12235 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12236 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12237 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12238 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12239 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12240 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -17.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12241 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12242 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12243 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12244 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12245 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12246 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12247 - type: GasPipeTJunction - components: - - pos: -20.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12248 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12249 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12250 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12251 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12252 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12253 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12254 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12255 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -16.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12256 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -16.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12257 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -21.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12258 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -20.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12259 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -16.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12260 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -16.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12261 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -21.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12262 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12263 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -15.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12264 - type: GasPipeStraight - components: - - pos: -15.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12265 - type: GasPipeStraight - components: - - pos: -17.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12266 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12267 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12268 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12269 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12270 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12271 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12272 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -12.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12273 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -12.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12274 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12275 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12276 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12277 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12278 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12279 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12280 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12281 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12282 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12283 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12284 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12285 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12286 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12287 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12288 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12289 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12290 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12291 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12292 - type: GasPipeStraight - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12293 - type: GasPipeStraight - components: - - pos: -11.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12294 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -17.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12295 - type: GasPipeTJunction - components: - - pos: -16.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12296 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -16.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12297 - type: GasVentScrubber - components: - - pos: -17.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12298 - type: GasPipeFourway - components: - - pos: -13.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12299 - type: GasPipeFourway - components: - - pos: -11.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12300 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12301 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12302 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12303 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12304 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12305 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12306 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12307 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12308 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12309 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12310 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -13.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12311 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -11.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12312 - type: GasPipeStraight - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12313 - type: GasPipeStraight - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12314 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12315 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12316 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12317 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12318 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12319 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12320 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -12.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12321 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -11.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12322 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12323 - type: GasPipeTJunction - components: - - pos: -9.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12324 - type: GasPipeTJunction - components: - - pos: -8.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12325 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12326 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12327 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12328 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12329 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12330 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12331 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12332 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12333 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12334 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12335 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12336 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12337 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12338 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12339 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12340 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12341 - type: GasPipeTJunction - components: - - pos: -15.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12342 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12343 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12344 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12345 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12346 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12347 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12348 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12349 - type: GasPipeFourway - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12350 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12351 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12352 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12353 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12354 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12355 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -8.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12356 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12357 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12358 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12359 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12360 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12361 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12362 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12363 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12364 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12365 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12366 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -3.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12367 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -2.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12368 - type: GasPipeTJunction - components: - - pos: -1.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12369 - type: GasPipeStraight - components: - - pos: -15.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12370 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12371 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12372 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12373 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12374 - type: GasPipeStraight - components: - - pos: -16.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12375 - type: GasPipeStraight - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12376 - type: GasPipeStraight - components: - - pos: -17.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12377 - type: GasPipeStraight - components: - - pos: -17.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12378 - type: GasPipeStraight - components: - - pos: -2.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12379 - type: PortableScrubber - components: - - pos: 5.5,-10.5 - parent: 1 - type: Transform -- uid: 12380 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12381 - type: GasVentScrubber - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12382 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12383 - type: GasVentPump - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12384 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -17.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12385 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12386 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12387 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12388 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12389 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12390 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12391 - type: GasPipeStraight - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12392 - type: GasPipeStraight - components: - - pos: -1.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12393 - type: GasPipeStraight - components: - - pos: -1.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12394 - type: GasPipeStraight - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12395 - type: GasPipeStraight - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12396 - type: GasPipeStraight - components: - - pos: -1.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12397 - type: GasPipeStraight - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12398 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12399 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12400 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12401 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12402 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12403 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12404 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12405 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12406 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12407 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12408 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12409 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12410 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12411 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12412 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12413 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12414 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12415 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12416 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12417 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -11.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12418 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -13.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12419 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -11.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12420 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -13.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12421 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -11.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12422 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -13.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12423 - type: GasPipeFourway - components: - - pos: -11.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12424 - type: GasPipeStraight - components: - - pos: -13.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12425 - type: GasPipeStraight - components: - - pos: -13.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12426 - type: GasPipeStraight - components: - - pos: -11.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12427 - type: GasPipeFourway - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12428 - type: GasPipeStraight - components: - - pos: -11.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12429 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -11.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12430 - type: GasPipeStraight - components: - - pos: -11.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12431 - type: GasPipeStraight - components: - - pos: -11.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12432 - type: CableApcExtension - components: - - pos: -78.5,31.5 - parent: 1 - type: Transform -- uid: 12433 - type: GasPipeStraight - components: - - pos: -13.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12434 - type: GasPipeStraight - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12435 - type: GasPipeStraight - components: - - pos: -13.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12436 - type: GasPipeStraight - components: - - pos: -13.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12437 - type: GasPipeStraight - components: - - pos: -13.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12438 - type: GasPipeStraight - components: - - pos: -13.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12439 - type: GasPipeStraight - components: - - pos: -13.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12440 - type: GasPipeStraight - components: - - pos: -11.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12441 - type: GasPipeStraight - components: - - pos: -11.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12442 - type: GasPipeStraight - components: - - pos: -11.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12443 - type: GasPipeStraight - components: - - pos: -11.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12444 - type: GasPipeStraight - components: - - pos: -11.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12445 - type: GasPipeStraight - components: - - pos: -11.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12446 - type: GasPipeStraight - components: - - pos: -11.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12447 - type: GasPipeStraight - components: - - pos: -11.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12448 - type: GasPipeStraight - components: - - pos: -13.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12449 - type: GasPipeStraight - components: - - pos: -13.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12450 - type: GasPipeStraight - components: - - pos: -13.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12451 - type: GasPipeStraight - components: - - pos: -13.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12452 - type: GasPipeStraight - components: - - pos: -13.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12453 - type: GasPipeStraight - components: - - pos: -13.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12454 - type: GasPipeStraight - components: - - pos: -13.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12455 - type: GasPipeStraight - components: - - pos: -13.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12456 - type: GasPipeStraight - components: - - pos: -11.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12457 - type: GasPipeStraight - components: - - pos: -11.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12458 - type: GasPipeStraight - components: - - pos: -11.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12459 - type: GasPipeStraight - components: - - pos: -11.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12460 - type: GasPipeStraight - components: - - pos: -11.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12461 - type: GasPipeStraight - components: - - pos: -13.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12462 - type: GasPipeStraight - components: - - pos: -13.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12463 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12464 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12465 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12466 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12467 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12468 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12469 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12470 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12471 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12472 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12473 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12474 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12475 - type: GasPipeTJunction - components: - - pos: -8.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12476 - type: GasPipeTJunction - components: - - pos: -7.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12477 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12478 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12479 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12480 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12481 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -12.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12482 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -8.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12483 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -12.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12484 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -12.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12485 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -7.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12486 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -12.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12487 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -12.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12488 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -12.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12489 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12490 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12491 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12492 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12493 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12494 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12495 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12496 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12497 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12498 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12499 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12500 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12501 - type: CableApcExtension - components: - - pos: -78.5,30.5 - parent: 1 - type: Transform -- uid: 12502 - type: CableApcExtension - components: - - pos: -78.5,29.5 - parent: 1 - type: Transform -- uid: 12503 - type: CableApcExtension - components: - - pos: -82.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12504 - type: CableApcExtension - components: - - pos: -82.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12505 - type: CableApcExtension - components: - - pos: -82.5,33.5 - parent: 1 - type: Transform -- uid: 12506 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -16.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12507 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -16.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12508 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -8.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12509 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -8.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12510 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -8.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12511 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12512 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -10.5,14.5 - parent: 1 - type: Transform -- uid: 12513 - type: GasPipeTJunction - components: - - pos: -6.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12514 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -5.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12515 - type: GasPipeTJunction - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12516 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 5.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12517 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 11.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12518 - type: GasPipeTJunction - components: - - pos: 10.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12519 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12520 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12521 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12522 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12523 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12524 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12525 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12526 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12527 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12528 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12529 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12530 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12531 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12532 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12533 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12534 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12535 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12536 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12537 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12538 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12539 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12540 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12541 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12542 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12543 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12544 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12545 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12546 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12547 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12548 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12549 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12550 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12551 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12552 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12553 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12554 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 11.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12555 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12556 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12557 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12558 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12559 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12560 - type: GasPipeStraight - components: - - pos: 10.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12561 - type: GasPipeStraight - components: - - pos: 10.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12562 - type: GasPipeStraight - components: - - pos: 10.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12563 - type: GasPipeStraight - components: - - pos: 10.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12564 - type: GasPipeStraight - components: - - pos: 11.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12565 - type: GasPipeStraight - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12566 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12567 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 11.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12568 - type: GasPipeStraight - components: - - pos: 10.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12569 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 10.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12570 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 11.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12571 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12572 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12573 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12574 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12575 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12576 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12577 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12578 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12579 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12580 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12581 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12582 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -6.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12583 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 4.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12584 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 8.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12585 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12586 - type: GasVentScrubber - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12587 - type: GasVentScrubber - components: - - pos: 5.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12588 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12589 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 8.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12590 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12591 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12592 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12593 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 15.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12594 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12595 - type: GasVentScrubber - components: - - pos: 14.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12596 - type: GasVentPump - components: - - pos: 15.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12597 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12598 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12599 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12600 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12601 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12602 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12603 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12604 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12605 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12606 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12607 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 1 - type: Transform -- uid: 12608 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 14.5,-1.5 - parent: 1 - type: Transform -- uid: 12609 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 1 - type: Transform -- uid: 12610 - type: CarpetChapel - components: - - pos: 13.5,-2.5 - parent: 1 - type: Transform -- uid: 12611 - type: Carpet - components: - - pos: 15.5,-1.5 - parent: 1 - type: Transform -- uid: 12612 - type: Carpet - components: - - pos: 15.5,-2.5 - parent: 1 - type: Transform -- uid: 12613 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12614 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12615 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 19.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12616 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 17.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12617 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12618 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12619 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12620 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12621 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12622 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12623 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12624 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12625 - type: GasPipeStraight - components: - - pos: 17.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12626 - type: GasPipeStraight - components: - - pos: 17.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12627 - type: GasPipeStraight - components: - - pos: 17.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12628 - type: GasPipeStraight - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12629 - type: GasPipeStraight - components: - - pos: 19.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12630 - type: GasPipeStraight - components: - - pos: 19.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12631 - type: GasPipeStraight - components: - - pos: 19.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12632 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12633 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12634 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12635 - type: GasPipeTJunction - components: - - pos: 20.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12636 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 21.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12637 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12638 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12639 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12640 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12641 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12642 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12643 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12644 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12645 - type: GasPipeTJunction - components: - - pos: 25.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12646 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12647 - type: GasPipeFourway - components: - - pos: 26.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12648 - type: GasPipeStraight - components: - - pos: 26.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12649 - type: GasPipeStraight - components: - - pos: 26.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12650 - type: GasPipeStraight - components: - - pos: 25.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12651 - type: GasVentScrubber - components: - - pos: 17.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12652 - type: GasVentScrubber - components: - - pos: 21.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12653 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 25.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12654 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 28.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12655 - type: GasVentPump - components: - - pos: 19.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12656 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 20.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12657 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 26.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12658 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 28.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12659 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 27.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12660 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12661 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12662 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 27.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12663 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 26.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12664 - type: GasPipeStraight - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12665 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 26.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12666 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 26.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12667 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 26.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12668 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 26.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12669 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 27.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12670 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 26.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12671 - type: GasPipeStraight - components: - - pos: 26.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12672 - type: GasPipeStraight - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12673 - type: GasPipeStraight - components: - - pos: 26.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12674 - type: GasPipeStraight - components: - - pos: 26.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12675 - type: GasPipeStraight - components: - - pos: 26.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12676 - type: GasPipeStraight - components: - - pos: 26.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12677 - type: GasPipeStraight - components: - - pos: 26.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12678 - type: GasPipeStraight - components: - - pos: 26.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12679 - type: GasPipeStraight - components: - - pos: 26.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12680 - type: GasPipeStraight - components: - - pos: 26.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12681 - type: GasPipeStraight - components: - - pos: 27.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12682 - type: GasPipeStraight - components: - - pos: 27.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12683 - type: GasPipeStraight - components: - - pos: 27.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12684 - type: GasPipeStraight - components: - - pos: 27.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12685 - type: GasPipeStraight - components: - - pos: 27.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12686 - type: GasPipeStraight - components: - - pos: 27.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12687 - type: GasPipeStraight - components: - - pos: 27.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12688 - type: GasPipeStraight - components: - - pos: 27.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12689 - type: GasPipeStraight - components: - - pos: 27.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12690 - type: GasPipeStraight - components: - - pos: 27.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12691 - type: GasPipeStraight - components: - - pos: 27.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12692 - type: GasPipeStraight - components: - - pos: 27.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12693 - type: GasPipeStraight - components: - - pos: 27.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12694 - type: GasPipeStraight - components: - - pos: 27.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12695 - type: GasPipeStraight - components: - - pos: 27.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12696 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12697 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12698 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12699 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12700 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12701 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12702 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12703 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12704 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12705 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12706 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12707 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12708 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 30.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12709 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 30.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12710 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 27.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12711 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 30.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12712 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 30.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12713 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 27.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12714 - type: GasVentPump - components: - - pos: 26.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12715 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 26.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12716 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 26.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12717 - type: GasVentScrubber - components: - - pos: 27.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12718 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12719 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12720 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -4.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12721 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -3.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12722 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12723 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12724 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12725 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12726 - type: GasPipeBend - components: - - pos: -1.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12727 - type: GasPipeBend - components: - - pos: -2.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12728 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -2.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12729 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -1.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12730 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12731 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12732 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12733 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12734 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12735 - type: PottedPlantRandom - components: - - pos: -4.5,34.5 - parent: 1 - type: Transform -- uid: 12736 - type: GasVentScrubber - components: - - pos: -3.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12737 - type: GasPipeTJunction - components: - - pos: 9.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12738 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12739 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12740 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12741 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12742 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12743 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 7.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12744 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12745 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12746 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12747 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 9.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12748 - type: GasPipeTJunction - components: - - pos: 8.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12749 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12750 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12751 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 6.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12752 - type: GasPipeBend - components: - - pos: 11.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12753 - type: GasPipeStraight - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12754 - type: GasPipeStraight - components: - - pos: 8.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12755 - type: GasPipeStraight - components: - - pos: 6.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12756 - type: GasPipeStraight - components: - - pos: 6.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12757 - type: GasPipeStraight - components: - - pos: 11.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12758 - type: GasPipeStraight - components: - - pos: 11.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12759 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 7.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12760 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 9.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12761 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 10.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12762 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 6.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12763 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 8.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12764 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 11.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12765 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 10.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12766 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 9.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12767 - type: Table - components: - - pos: 18.5,28.5 - parent: 1 - type: Transform -- uid: 12768 - type: Table - components: - - pos: 19.5,28.5 - parent: 1 - type: Transform -- uid: 12769 - type: Table - components: - - pos: 20.5,28.5 - parent: 1 - type: Transform -- uid: 12770 - type: Syringe - components: - - desc: A suspicious looking syringe. - name: suspicious syringe - type: MetaData - - pos: 19.469204,28.644407 - parent: 1 - type: Transform - - tags: [] - type: Tag - - solutions: - injector: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 15 - reagents: - - Quantity: 15 - ReagentId: Hyronalin - type: SolutionContainerManager -- uid: 12771 - type: OperatingTable - components: - - pos: 19.5,30.5 - parent: 1 - type: Transform -- uid: 12772 - type: ClothingMaskClown - components: - - pos: 18.54059,28.570738 - parent: 1 - type: Transform -- uid: 12773 - type: Cablecuffs - components: - - pos: 20.44684,28.601988 - parent: 1 - type: Transform -- uid: 12774 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12775 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12776 - type: ClothingHandsGlovesNitrile - components: - - pos: 15.627547,28.610893 - parent: 1 - type: Transform -- uid: 12777 - type: ClothingMaskBreathMedical - components: - - pos: 16.513798,28.576006 - parent: 1 - type: Transform -- uid: 12778 - type: PaperOffice - components: - - pos: 15.279422,31.607256 - parent: 1 - type: Transform -- uid: 12779 - type: PaperOffice - components: - - pos: 15.404422,31.59163 - parent: 1 - type: Transform -- uid: 12780 - type: PaperOffice - components: - - pos: 15.576297,31.59163 - parent: 1 - type: Transform -- uid: 12781 - type: PaperOffice - components: - - pos: 15.670047,31.59163 - parent: 1 - type: Transform -- uid: 12782 - type: BoxFolderWhite - components: - - pos: 15.076297,31.544756 - parent: 1 - type: Transform -- uid: 12783 - type: Lamp - components: - - pos: 14.50122,31.915655 - parent: 1 - type: Transform -- uid: 12784 - type: LockerChiefMedicalOfficerFilled - components: - - pos: 14.5,32.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12785 - type: CarpetBlue - components: - - pos: 14.5,30.5 - parent: 1 - type: Transform -- uid: 12786 - type: CarpetBlue - components: - - pos: 14.5,31.5 - parent: 1 - type: Transform -- uid: 12787 - type: CarpetBlue - components: - - pos: 14.5,32.5 - parent: 1 - type: Transform -- uid: 12788 - type: CarpetBlue - components: - - pos: 15.5,30.5 - parent: 1 - type: Transform -- uid: 12789 - type: CarpetBlue - components: - - pos: 15.5,31.5 - parent: 1 - type: Transform -- uid: 12790 - type: CarpetBlue - components: - - pos: 15.5,32.5 - parent: 1 - type: Transform -- uid: 12791 - type: CarpetBlue - components: - - pos: 16.5,30.5 - parent: 1 - type: Transform -- uid: 12792 - type: CarpetBlue - components: - - pos: 16.5,31.5 - parent: 1 - type: Transform -- uid: 12793 - type: CarpetBlue - components: - - pos: 16.5,32.5 - parent: 1 - type: Transform -- uid: 12794 - type: ChairOfficeLight - components: - - pos: 15.5,32.5 - parent: 1 - type: Transform -- uid: 12795 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 15.5,30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12796 - type: PaperOffice - components: - - rot: -1.5707963267948966 rad - pos: 4.4957075,16.929403 - parent: 1 - type: Transform -- uid: 12797 - type: PaperOffice - components: - - rot: -1.5707963267948966 rad - pos: 4.4957075,16.710653 - parent: 1 - type: Transform -- uid: 12798 - type: PaperOffice - components: - - rot: -1.5707963267948966 rad - pos: 4.4957075,16.679403 - parent: 1 - type: Transform -- uid: 12799 - type: PaperOffice - components: - - rot: -1.5707963267948966 rad - pos: 4.4800825,16.445028 - parent: 1 - type: Transform -- uid: 12800 - type: PaperOffice - components: - - rot: -1.5707963267948966 rad - pos: 4.4800825,16.320028 - parent: 1 - type: Transform -- uid: 12801 - type: BoxFolderBlack - components: - - rot: -1.5707963267948966 rad - pos: 4.444498,15.859739 - parent: 1 - type: Transform -- uid: 12802 - type: BoxFolderBlack - components: - - rot: -1.5707963267948966 rad - pos: 4.491373,15.625364 - parent: 1 - type: Transform -- uid: 12803 - type: Saw - components: - - pos: 19.561224,28.58777 - parent: 1 - type: Transform -- uid: 12804 - type: Catwalk - components: - - pos: -2.5,12.5 - parent: 1 - type: Transform -- uid: 12805 - type: Catwalk - components: - - pos: -3.5,13.5 - parent: 1 - type: Transform -- uid: 12806 - type: Catwalk - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform -- uid: 12807 - type: Catwalk - components: - - pos: 3.5,12.5 - parent: 1 - type: Transform -- uid: 12808 - type: Catwalk - components: - - pos: 4.5,11.5 - parent: 1 - type: Transform -- uid: 12809 - type: Catwalk - components: - - pos: 4.5,10.5 - parent: 1 - type: Transform -- uid: 12810 - type: Catwalk - components: - - pos: 3.5,9.5 - parent: 1 - type: Transform -- uid: 12811 - type: Catwalk - components: - - pos: 6.5,8.5 - parent: 1 - type: Transform -- uid: 12812 - type: Catwalk - components: - - pos: 10.5,9.5 - parent: 1 - type: Transform -- uid: 12813 - type: Catwalk - components: - - pos: 12.5,9.5 - parent: 1 - type: Transform -- uid: 12814 - type: Catwalk - components: - - pos: 12.5,8.5 - parent: 1 - type: Transform -- uid: 12815 - type: Catwalk - components: - - pos: 8.5,9.5 - parent: 1 - type: Transform -- uid: 12816 - type: Catwalk - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform -- uid: 12817 - type: Catwalk - components: - - pos: 14.5,9.5 - parent: 1 - type: Transform -- uid: 12818 - type: Catwalk - components: - - pos: 13.5,12.5 - parent: 1 - type: Transform -- uid: 12819 - type: Catwalk - components: - - pos: 13.5,13.5 - parent: 1 - type: Transform -- uid: 12820 - type: Catwalk - components: - - pos: 13.5,15.5 - parent: 1 - type: Transform -- uid: 12821 - type: Catwalk - components: - - pos: 14.5,17.5 - parent: 1 - type: Transform -- uid: 12822 - type: Catwalk - components: - - pos: 14.5,18.5 - parent: 1 - type: Transform -- uid: 12823 - type: Catwalk - components: - - pos: 13.5,21.5 - parent: 1 - type: Transform -- uid: 12824 - type: Catwalk - components: - - pos: 12.5,22.5 - parent: 1 - type: Transform -- uid: 12825 - type: Catwalk - components: - - pos: 15.5,23.5 - parent: 1 - type: Transform -- uid: 12826 - type: Catwalk - components: - - pos: 14.5,25.5 - parent: 1 - type: Transform -- uid: 12827 - type: Catwalk - components: - - pos: 15.5,26.5 - parent: 1 - type: Transform -- uid: 12828 - type: Catwalk - components: - - pos: 17.5,25.5 - parent: 1 - type: Transform -- uid: 12829 - type: Catwalk - components: - - pos: 14.5,24.5 - parent: 1 - type: Transform -- uid: 12830 - type: Catwalk - components: - - pos: 15.5,24.5 - parent: 1 - type: Transform -- uid: 12831 - type: Catwalk - components: - - pos: 18.5,26.5 - parent: 1 - type: Transform -- uid: 12832 - type: Catwalk - components: - - pos: 20.5,25.5 - parent: 1 - type: Transform -- uid: 12833 - type: Catwalk - components: - - pos: 21.5,26.5 - parent: 1 - type: Transform -- uid: 12834 - type: CableHV - components: - - pos: 21.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12835 - type: CableHV - components: - - pos: 22.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12836 - type: CableHV - components: - - pos: 20.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12837 - type: CableHV - components: - - pos: 19.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12838 - type: CableHV - components: - - pos: 18.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12839 - type: CableHV - components: - - pos: 17.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12840 - type: CableHV - components: - - pos: 16.5,26.5 - parent: 1 - type: Transform -- uid: 12841 - type: CableHV - components: - - pos: 15.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12842 - type: CableHV - components: - - pos: 14.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12843 - type: CableHV - components: - - pos: 14.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12844 - type: CableHV - components: - - pos: 14.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12845 - type: CableHV - components: - - pos: 14.5,23.5 - parent: 1 - type: Transform -- uid: 12846 - type: CableHV - components: - - pos: 14.5,22.5 - parent: 1 - type: Transform -- uid: 12847 - type: CableHV - components: - - pos: 14.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12848 - type: CableHV - components: - - pos: 14.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12849 - type: CableHV - components: - - pos: 14.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12850 - type: CableHV - components: - - pos: 14.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12851 - type: CableHV - components: - - pos: 14.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12852 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12853 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12854 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12855 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12856 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12857 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12858 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -1.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12859 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -1.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12860 - type: CableHV - components: - - pos: 14.5,16.5 - parent: 1 - type: Transform -- uid: 12861 - type: CableHV - components: - - pos: 14.5,15.5 - parent: 1 - type: Transform -- uid: 12862 - type: CableHV - components: - - pos: 14.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12863 - type: CableHV - components: - - pos: 14.5,13.5 - parent: 1 - type: Transform -- uid: 12864 - type: CableHV - components: - - pos: 14.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12865 - type: CableHV - components: - - pos: 14.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12866 - type: CableHV - components: - - pos: 14.5,10.5 - parent: 1 - type: Transform -- uid: 12867 - type: CableHV - components: - - pos: 14.5,9.5 - parent: 1 - type: Transform -- uid: 12868 - type: CableHV - components: - - pos: 13.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12869 - type: CableHV - components: - - pos: 12.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12870 - type: CableHV - components: - - pos: 11.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12871 - type: CableHV - components: - - pos: 10.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12872 - type: CableHV - components: - - pos: 9.5,9.5 - parent: 1 - type: Transform -- uid: 12873 - type: CableHV - components: - - pos: 8.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12874 - type: CableHV - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12875 - type: CableHV - components: - - pos: 6.5,9.5 - parent: 1 - type: Transform -- uid: 12876 - type: CableHV - components: - - pos: 5.5,9.5 - parent: 1 - type: Transform -- uid: 12877 - type: CableHV - components: - - pos: 4.5,9.5 - parent: 1 - type: Transform -- uid: 12878 - type: CableHV - components: - - pos: 3.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12879 - type: CableHV - components: - - pos: 3.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12880 - type: CableHV - components: - - pos: 3.5,11.5 - parent: 1 - type: Transform -- uid: 12881 - type: CableHV - components: - - pos: 3.5,12.5 - parent: 1 - type: Transform -- uid: 12882 - type: CableHV - components: - - pos: 2.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12883 - type: CableHV - components: - - pos: 1.5,12.5 - parent: 1 - type: Transform -- uid: 12884 - type: CableHV - components: - - pos: 0.5,12.5 - parent: 1 - type: Transform -- uid: 12885 - type: CableHV - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12886 - type: CableHV - components: - - pos: -1.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12887 - type: CableHV - components: - - pos: -2.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12888 - type: CableHV - components: - - pos: -3.5,12.5 - parent: 1 - type: Transform -- uid: 12889 - type: CableHV - components: - - pos: -4.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12890 - type: ClosetFireFilled - components: - - pos: 15.5,22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12891 - type: ClosetEmergencyFilledRandom - components: - - pos: 15.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12892 - type: ClosetMaintenanceFilledRandom - components: - - pos: 15.5,24.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12893 - type: OxygenCanister - components: - - pos: 14.5,13.5 - parent: 1 - type: Transform -- uid: 12894 - type: NitrogenCanister - components: - - pos: 14.5,14.5 - parent: 1 - type: Transform -- uid: 12895 - type: AirCanister - components: - - pos: 14.5,15.5 - parent: 1 - type: Transform -- uid: 12896 - type: Railing - components: - - pos: 14.5,16.5 - parent: 1 - type: Transform -- uid: 12897 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 14.5,12.5 - parent: 1 - type: Transform -- uid: 12898 - type: WeldingFuelTankFull - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform -- uid: 12899 - type: WaterTankFull - components: - - pos: 8.5,8.5 - parent: 1 - type: Transform -- uid: 12900 - type: ClosetMaintenanceFilledRandom - components: - - pos: 14.5,8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12901 - type: ClosetMaintenanceFilledRandom - components: - - pos: 3.5,8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12902 - type: Table - components: - - pos: 4.5,8.5 - parent: 1 - type: Transform -- uid: 12903 - type: Table - components: - - pos: 5.5,8.5 - parent: 1 - type: Transform -- uid: 12904 - type: Rack - components: - - pos: 13.5,8.5 - parent: 1 - type: Transform -- uid: 12905 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 6.5,8.5 - parent: 1 - type: Transform -- uid: 12906 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 12.5,8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12907 - type: MaintenanceToolSpawner - components: - - pos: 4.5,8.5 - parent: 1 - type: Transform -- uid: 12908 - type: MaintenanceToolSpawner - components: - - pos: 13.5,8.5 - parent: 1 - type: Transform -- uid: 12909 - type: MaintenanceWeaponSpawner - components: - - pos: 5.5,8.5 - parent: 1 - type: Transform -- uid: 12910 - type: MaintenanceFluffSpawner - components: - - pos: 6.5,8.5 - parent: 1 - type: Transform -- uid: 12911 - type: MaintenanceFluffSpawner - components: - - pos: 12.5,8.5 - parent: 1 - type: Transform -- uid: 12912 - type: WeldingFuelTankFull - components: - - pos: 20.5,25.5 - parent: 1 - type: Transform -- uid: 12913 - type: WaterTankFull - components: - - pos: 19.5,25.5 - parent: 1 - type: Transform -- uid: 12914 - type: ForensicPad - components: - - pos: 1.5309631,43.363426 - parent: 1 - type: Transform -- uid: 12915 - type: ForensicPad - components: - - pos: 1.9684631,43.62905 - parent: 1 - type: Transform -- uid: 12916 - type: ClothingHeadHatFedoraBrown - components: - - pos: 3.488522,44.563385 - parent: 1 - type: Transform -- uid: 12917 - type: DisposalTrunk - components: - - pos: 5.5,30.5 - parent: 1 - type: Transform -- uid: 12918 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 11.5,14.5 - parent: 1 - type: Transform -- uid: 12919 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 0.5,22.5 - parent: 1 - type: Transform -- uid: 12920 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 0.5,23.5 - parent: 1 - type: Transform -- uid: 12921 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 3.5,14.5 - parent: 1 - type: Transform -- uid: 12922 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,15.5 - parent: 1 - type: Transform -- uid: 12923 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,16.5 - parent: 1 - type: Transform -- uid: 12924 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,17.5 - parent: 1 - type: Transform -- uid: 12925 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,18.5 - parent: 1 - type: Transform -- uid: 12926 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,20.5 - parent: 1 - type: Transform -- uid: 12927 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,21.5 - parent: 1 - type: Transform -- uid: 12928 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,22.5 - parent: 1 - type: Transform -- uid: 12929 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,24.5 - parent: 1 - type: Transform -- uid: 12930 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,25.5 - parent: 1 - type: Transform -- uid: 12931 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,26.5 - parent: 1 - type: Transform -- uid: 12932 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,27.5 - parent: 1 - type: Transform -- uid: 12933 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,28.5 - parent: 1 - type: Transform -- uid: 12934 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,29.5 - parent: 1 - type: Transform -- uid: 12935 - type: DisposalPipe - components: - - pos: 11.5,15.5 - parent: 1 - type: Transform -- uid: 12936 - type: DisposalPipe - components: - - pos: 11.5,16.5 - parent: 1 - type: Transform -- uid: 12937 - type: DisposalPipe - components: - - pos: 11.5,17.5 - parent: 1 - type: Transform -- uid: 12938 - type: DisposalPipe - components: - - pos: 11.5,18.5 - parent: 1 - type: Transform -- uid: 12939 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,19.5 - parent: 1 - type: Transform -- uid: 12940 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,19.5 - parent: 1 - type: Transform -- uid: 12941 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,19.5 - parent: 1 - type: Transform -- uid: 12942 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,19.5 - parent: 1 - type: Transform -- uid: 12943 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,19.5 - parent: 1 - type: Transform -- uid: 12944 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,19.5 - parent: 1 - type: Transform -- uid: 12945 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,19.5 - parent: 1 - type: Transform -- uid: 12946 - type: DisposalBend - components: - - pos: 11.5,19.5 - parent: 1 - type: Transform -- uid: 12947 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 5.5,29.5 - parent: 1 - type: Transform -- uid: 12948 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,29.5 - parent: 1 - type: Transform -- uid: 12949 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,23.5 - parent: 1 - type: Transform -- uid: 12950 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,23.5 - parent: 1 - type: Transform -- uid: 12951 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,19.5 - parent: 1 - type: Transform -- uid: 12952 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 4.5,14.5 - parent: 1 - type: Transform -- uid: 12953 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: 3.5,23.5 - parent: 1 - type: Transform -- uid: 12954 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 3.5,29.5 - parent: 1 - type: Transform -- uid: 12955 - type: PottedPlantRandom - components: - - pos: 4.5,21.5 - parent: 1 - type: Transform -- uid: 12956 - type: PottedPlantRandom - components: - - pos: 2.5,34.5 - parent: 1 - type: Transform -- uid: 12957 - type: PottedPlantRandom - components: - - pos: 4.5,34.5 - parent: 1 - type: Transform -- uid: 12958 - type: PottedPlantRandom - components: - - pos: 12.5,33.5 - parent: 1 - type: Transform -- uid: 12959 - type: PottedPlantRandom - components: - - pos: -0.5,40.5 - parent: 1 - type: Transform -- uid: 12960 - type: GasPipeStraight - components: - - pos: -17.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12961 - type: GasPipeStraight - components: - - pos: -17.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12962 - type: GasPipeStraight - components: - - pos: -17.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12963 - type: GasPipeStraight - components: - - pos: -17.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12964 - type: GasPipeStraight - components: - - pos: -17.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12965 - type: GasPipeStraight - components: - - pos: -15.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12966 - type: GasPipeStraight - components: - - pos: -15.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12967 - type: GasPipeStraight - components: - - pos: -15.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12968 - type: GasPipeStraight - components: - - pos: -15.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12969 - type: GasPipeStraight - components: - - pos: -15.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12970 - type: GasPipeFourway - components: - - pos: -17.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12971 - type: GasPipeFourway - components: - - pos: -15.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12972 - type: GasPipeStraight - components: - - pos: -15.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12973 - type: GasPipeStraight - components: - - pos: -17.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12974 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12975 - type: GasPipeStraight - components: - - pos: -15.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12976 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12977 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12978 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12979 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12980 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12981 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12982 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12983 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12984 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12985 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12986 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12987 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12988 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12989 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12990 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12991 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12992 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12993 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12994 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12995 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12996 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12997 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12998 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12999 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13000 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13001 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13002 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13003 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13004 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -21.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13005 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -16.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13006 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -16.5,60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13007 - type: GasVentScrubber - components: - - pos: -15.5,63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13008 - type: GasPipeTJunction - components: - - pos: -12.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13009 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13010 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -21.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13011 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -16.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13012 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -16.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13013 - type: GasVentPump - components: - - pos: -17.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13014 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -8.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13015 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -7.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13016 - type: GasPipeTJunction - components: - - pos: -11.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13017 - type: GasPipeStraight - components: - - pos: -12.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13018 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13019 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13020 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13021 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13022 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13023 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13024 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13025 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13026 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13027 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13028 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13029 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13030 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13031 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -11.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13032 - type: GasVentPump - components: - - pos: -7.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13033 - type: GasVentScrubber - components: - - pos: -8.5,60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13034 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -12.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13035 - type: CableApcExtension - components: - - pos: -82.5,32.5 - parent: 1 - type: Transform -- uid: 13036 - type: CableApcExtension - components: - - pos: -82.5,31.5 - parent: 1 - type: Transform -- uid: 13037 - type: CableApcExtension - components: - - pos: -82.5,30.5 - parent: 1 - type: Transform -- uid: 13038 - type: CableApcExtension - components: - - pos: -82.5,29.5 - parent: 1 - type: Transform -- uid: 13039 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -84.5,45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13040 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -50.5,45.5 - parent: 1 - type: Transform - - devices: - - 7995 - - 7996 - - 7997 - - 8003 - - 8002 - - 8001 - - invalid - - 11119 - - 11122 - - 11270 - - 11272 - - 11175 - - 11172 - - 11145 - - 11146 - - 11319 - - 11318 - - 11317 - - 8573 - - 8574 - type: DeviceList -- uid: 13041 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -50.5,44.5 - parent: 1 - type: Transform - - devices: - - 7995 - - 7996 - - 7997 - - 8003 - - 8002 - - 8001 - - invalid - - 8573 - - 8574 - type: DeviceList -- uid: 13042 - type: AtmosFixPlasmaMarker - components: - - pos: -90.5,43.5 - parent: 1 - type: Transform -- uid: 13043 - type: AtmosFixPlasmaMarker - components: - - pos: -89.5,43.5 - parent: 1 - type: Transform -- uid: 13044 - type: AtmosFixPlasmaMarker - components: - - pos: -88.5,43.5 - parent: 1 - type: Transform -- uid: 13045 - type: AtmosFixBlockerMarker - components: - - pos: -90.5,45.5 - parent: 1 - type: Transform -- uid: 13046 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -46.5,30.5 - parent: 1 - type: Transform - - devices: - - 5240 - - 5241 - - 5242 - - 7995 - - 7996 - - 7997 - - 5233 - - 5232 - - 5231 - type: DeviceList -- uid: 13047 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -47.5,30.5 - parent: 1 - type: Transform - - devices: - - 5240 - - 5241 - - 5242 - - 7995 - - 7996 - - 7997 - - 5233 - - 5232 - - 5231 - - 11303 - - 11306 - - 11305 - - 11304 - - 11321 - - 11320 - - 11555 - - 11557 - type: DeviceList -- uid: 13048 - type: AtmosFixBlockerMarker - components: - - pos: -89.5,45.5 - parent: 1 - type: Transform -- uid: 13049 - type: AtmosFixBlockerMarker - components: - - pos: -88.5,45.5 - parent: 1 - type: Transform -- uid: 13050 - type: FireAlarm - components: - - pos: -67.5,7.5 - parent: 1 - type: Transform - - devices: - - 5213 - - 5214 - - 5215 - - 11812 - - 11813 - - 11811 - - 11814 - type: DeviceList -- uid: 13051 - type: AirAlarm - components: - - pos: -68.5,7.5 - parent: 1 - type: Transform - - devices: - - 5213 - - 5214 - - 5215 - type: DeviceList -- uid: 13052 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-4.5 - parent: 1 - type: Transform - - devices: - - invalid - - invalid - - invalid - - 5216 - - 5217 - - 5218 - type: DeviceList -- uid: 13053 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-3.5 - parent: 1 - type: Transform - - devices: - - invalid - - invalid - - invalid - - 5216 - - 5217 - - 5218 - - 11842 - - 11841 - - invalid - - invalid - - 11840 - - 11843 - - invalid - - invalid - - 4749 - - 4807 - - 4802 - - 4750 - - 4800 - - 3967 - - 4912 - - 4913 - - 4126 - type: DeviceList -- uid: 13054 - type: FireAlarm - components: - - pos: -46.5,7.5 - parent: 1 - type: Transform - - devices: - - 5210 - - 5211 - - 5212 - - 4110 - - 4111 - - 4112 - type: DeviceList -- uid: 13055 - type: AirAlarm - components: - - pos: -45.5,7.5 - parent: 1 - type: Transform - - devices: - - 11968 - - 11970 - - 11926 - - 11925 - - 11789 - - 11790 - - 4112 - - 4111 - - 4110 - - 5212 - - 5211 - - 5210 - type: DeviceList -- uid: 13056 - type: FireAlarm - components: - - pos: -39.5,7.5 - parent: 1 - type: Transform - - devices: - - 4112 - - 4111 - - 4110 - - 4114 - - 4115 - - 4116 - - 4109 - - 4108 - - 4107 - type: DeviceList -- uid: 13057 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-3.5 - parent: 1 - type: Transform - - devices: - - 3718 - - 3719 - - 3720 - - 3721 - - 3722 - - 3723 - - 3724 - - 3717 - - 3716 - - invalid - - 3726 - - 12016 - - 12018 - - 11970 - - 12079 - - 12063 - - 11996 - - 11998 - - 12001 - type: DeviceList -- uid: 13058 - type: AirAlarm - components: - - pos: -35.5,8.5 - parent: 1 - type: Transform - - devices: - - 4110 - - 4111 - - 4112 - - 4114 - - 4115 - - 4116 - - 4109 - - 4108 - - 4107 - - 12079 - - 12080 - - 12063 - - 12064 - - 11968 - - 11970 - - 11926 - - 11925 - - 12140 - - 12139 - - 11642 - - 11645 - type: DeviceList -- uid: 13059 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-1.5 - parent: 1 - type: Transform - - devices: - - 3718 - - 3719 - - 3720 - - 3721 - - 3722 - - 3723 - - 3724 - - 3717 - - 3716 - - invalid - - 3726 - type: DeviceList -- uid: 13060 - type: FireAlarm - components: - - pos: -22.5,7.5 - parent: 1 - type: Transform - - devices: - - 1766 - - 1765 - - 1764 - - 4107 - - 4108 - - 4109 - type: DeviceList -- uid: 13061 - type: AirAlarm - components: - - pos: -21.5,7.5 - parent: 1 - type: Transform - - devices: - - 1766 - - 1765 - - 1764 - - 4107 - - 4108 - - 4109 - - 12296 - - 12297 - - 12139 - - 12140 - - 12130 - - 12128 - type: DeviceList -- uid: 13062 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -39.5,17.5 - parent: 1 - type: Transform - - devices: - - 4114 - - 4115 - - 4116 - - 4117 - - 4118 - - 4119 - - 4120 - - 4121 - - 4122 - - 4123 - - 5227 - - 5226 - - 5225 - type: DeviceList -- uid: 13063 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -39.5,18.5 - parent: 1 - type: Transform - - devices: - - 4114 - - 4115 - - 4116 - - 4117 - - 4118 - - 4119 - - 4120 - - 4121 - - 4122 - - 4123 - - 5227 - - 5226 - - 5225 - - 11642 - - 11645 - - 11641 - - 11644 - - 11643 - - 11640 - type: DeviceList -- uid: 13064 - type: FireAlarm - components: - - pos: -39.5,40.5 - parent: 1 - type: Transform - - devices: - - 5233 - - 5232 - - 5231 - - 5225 - - 5226 - - 5227 - - 5228 - - 5229 - - 5230 - - 9798 - - 9797 - - 9786 - - 9787 - - 9788 - - 9789 - - 9783 - - 9784 - - 9785 - type: DeviceList -- uid: 13065 - type: AirAlarm - components: - - pos: -41.5,40.5 - parent: 1 - type: Transform - - devices: - - 5233 - - 5232 - - 5231 - - 5225 - - 5226 - - 5227 - - 5228 - - 5229 - - 5230 - - 9798 - - 9797 - - 11592 - - 11596 - - 11593 - - 11597 - - 11594 - - 11599 - - 9786 - - 9787 - - 9788 - - 9789 - - 9783 - - 9784 - - 9785 - type: DeviceList -- uid: 13066 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -30.5,44.5 - parent: 1 - type: Transform - - devices: - - 9783 - - 9784 - - 9785 - - 9790 - - 9791 - - 9792 - - 9793 - type: DeviceList -- uid: 13067 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -30.5,45.5 - parent: 1 - type: Transform - - devices: - - 11238 - - 11237 - - 11239 - - 11236 - - 11240 - - 9783 - - 9784 - - 9785 - - 9790 - - 9791 - - 9792 - - 9793 - - 11235 - type: DeviceList -- uid: 13068 - type: FireAlarm - components: - - pos: -28.5,34.5 - parent: 1 - type: Transform - - devices: - - 5228 - - 5229 - - 5230 - - 5234 - - 5235 - - 5236 - - 9817 - - 9820 - type: DeviceList -- uid: 13069 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -39.5,42.5 - parent: 1 - type: Transform - - devices: - - 9794 - - 9795 - - 9796 - - 9790 - - 9791 - - 9793 - - 9792 - - 11196 - - 11192 - - 11209 - - 11208 - type: DeviceList -- uid: 13070 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -39.5,41.5 - parent: 1 - type: Transform - - devices: - - 9794 - - 9795 - - 9796 - - 9790 - - 9791 - - 9793 - - 9792 - type: DeviceList -- uid: 13071 - type: AirAlarm - components: - - pos: -29.5,34.5 - parent: 1 - type: Transform - - devices: - - 12172 - - 12173 - - 5228 - - 5229 - - 5230 - - 9820 - - 9817 - - 5236 - - 5235 - - 5234 - type: DeviceList -- uid: 13072 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -18.5,41.5 - parent: 1 - type: Transform - - devices: - - 5237 - - 5238 - - 5239 - - 9818 - - invalid - type: DeviceList -- uid: 13073 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -18.5,42.5 - parent: 1 - type: Transform - - devices: - - 5237 - - 5238 - - 5239 - - 9818 - - invalid - - 12259 - - 12255 - - 12256 - - 12260 - - 12273 - - 12272 - type: DeviceList -- uid: 13074 - type: AirAlarm - components: - - pos: -22.5,43.5 - parent: 1 - type: Transform - - devices: - - 9819 - - 9817 - - 9818 - - 13076 - - 12257 - - 12261 - - 12258 - - 12190 - type: DeviceList -- uid: 13075 - type: FireAlarm - components: - - pos: -21.5,43.5 - parent: 1 - type: Transform - - devices: - - 9819 - - 9817 - - 9818 - - 13076 - type: DeviceList -- uid: 13076 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -19.5,45.5 - parent: 1 - type: Transform -- uid: 13077 - type: AirAlarm - components: - - pos: -13.5,34.5 - parent: 1 - type: Transform - - devices: - - 5237 - - 5238 - - 5239 - - 9818 - - invalid - - 12259 - - 12255 - - 12256 - - 12260 - - 12273 - - 12272 - - 3064 - - 3122 - - 2814 - - 2881 - - 3175 - - 3176 - - 3177 - - 2866 - - 2865 - - 12485 - - 12482 - - 12486 - - 12481 - type: DeviceList -- uid: 13078 - type: FireAlarm - components: - - pos: -11.5,34.5 - parent: 1 - type: Transform - - devices: - - 5237 - - 5238 - - 5239 - - 9818 - - invalid - - 12259 - - 12255 - - 12256 - - 12260 - - 12273 - - 12272 - - 3064 - - 3122 - - 2814 - - 2881 - - 3175 - - 3176 - - 3177 - - 2866 - - 2865 - type: DeviceList -- uid: 13079 - type: AirAlarm - components: - - pos: -18.5,58.5 - parent: 1 - type: Transform - - devices: - - 6496 - - 6497 - - invalid - - 9808 - - 6498 - - 6499 - - 6500 - - 6501 - - 6502 - - 6503 - - 6504 - - 13010 - - 13004 - - 13011 - - 13005 - - 13012 - - 13006 - - 13013 - - 13007 - - 13031 - - 13034 - - 13032 - - 13033 - type: DeviceList -- uid: 13080 - type: FireAlarm - components: - - pos: -14.5,58.5 - parent: 1 - type: Transform - - devices: - - 6496 - - 6497 - - invalid - - 9808 - - 6498 - - 6499 - - 6500 - - 6501 - - 6502 - - 6503 - - 6504 - type: DeviceList -- uid: 13081 - type: PottedPlantRandom - components: - - pos: -0.5,36.5 - parent: 1 - type: Transform -- uid: 13082 - type: PottedPlantRandomPlastic - components: - - pos: 6.5,15.5 - parent: 1 - type: Transform -- uid: 13083 - type: Table - components: - - pos: -2.5,10.5 - parent: 1 - type: Transform -- uid: 13084 - type: Table - components: - - pos: -1.5,10.5 - parent: 1 - type: Transform -- uid: 13085 - type: Rack - components: - - pos: -0.5,10.5 - parent: 1 - type: Transform -- uid: 13086 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: -1.5,8.5 - parent: 1 - type: Transform -- uid: 13087 - type: PottedPlantRandom - components: - - pos: -2.5,8.5 - parent: 1 - type: Transform -- uid: 13088 - type: PottedPlantRandom - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform -- uid: 13089 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 0.5,10.5 - parent: 1 - type: Transform - - id: Evac Corridor Checkpoint - type: SurveillanceCamera -- uid: 13090 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 1 - type: Transform - - id: Morgue - type: SurveillanceCamera -- uid: 13091 - type: SurveillanceCameraMedical - components: - - pos: 1.5,36.5 - parent: 1 - type: Transform - - id: Cloning - type: SurveillanceCamera -- uid: 13092 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: 10.5,37.5 - parent: 1 - type: Transform - - id: Cryo - type: SurveillanceCamera -- uid: 13093 - type: SurveillanceCameraMedical - components: - - pos: 10.5,28.5 - parent: 1 - type: Transform - - id: Ward - type: SurveillanceCamera -- uid: 13094 - type: SurveillanceCameraMedical - components: - - pos: 9.5,22.5 - parent: 1 - type: Transform - - id: Equipment Room - type: SurveillanceCamera -- uid: 13095 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: 8.5,17.5 - parent: 1 - type: Transform - - id: Virology - type: SurveillanceCamera -- uid: 13096 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -10.5,19.5 - parent: 1 - type: Transform - - devices: - - 1763 - - 1762 - - 1761 - - 3177 - - 3176 - - 3175 - - invalid - - 12506 - - 12507 - - 12508 - - 12509 - - 12510 - - 12484 - - 12488 - - 12487 - - 12483 - type: DeviceList -- uid: 13097 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -10.5,18.5 - parent: 1 - type: Transform - - devices: - - 1763 - - 1762 - - 1761 - - 3177 - - 3176 - - 3175 - type: DeviceList -- uid: 13098 - type: FireAlarm - components: - - pos: -2.5,7.5 - parent: 1 - type: Transform - - devices: - - 1758 - - 1759 - - 1760 - - 1768 - - 1767 - - 1753 - - 1752 - type: DeviceList -- uid: 13099 - type: AirAlarm - components: - - pos: -1.5,7.5 - parent: 1 - type: Transform - - devices: - - 1758 - - 1759 - - 1760 - - 1768 - - 1767 - - 1753 - - 1752 - - 12586 - - 12582 - - 12583 - - 12587 - type: DeviceList -- uid: 13100 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 1 - type: Transform - - devices: - - 12585 - - 12588 - - 12589 - - 12584 - - 1753 - - 1752 - - 12595 - - 12596 - - 12605 - - 12606 - type: DeviceList -- uid: 13101 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 1 - type: Transform - - devices: - - 1752 - - 1753 - type: DeviceList -- uid: 13102 - type: FireAlarm - components: - - pos: 20.5,7.5 - parent: 1 - type: Transform - - devices: - - 1767 - - 1768 - - 1755 - - 1754 - type: DeviceList -- uid: 13103 - type: AirAlarm - components: - - pos: 21.5,7.5 - parent: 1 - type: Transform - - devices: - - 1767 - - 1768 - - 1755 - - 1754 - - 12656 - - 12652 - - 12658 - - 12654 - - 12587 - - 12583 - type: DeviceList -- uid: 13104 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 27.5,4.5 - parent: 1 - type: Transform - - devices: - - 1755 - - 1754 - - invalid - type: DeviceList -- uid: 13105 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 28.5,4.5 - parent: 1 - type: Transform - - devices: - - 12658 - - 12654 - - 12715 - - 12710 - - 12716 - - 12713 - - 12714 - - 12717 - - 1755 - - 1754 - - invalid - type: DeviceList -- uid: 13106 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 28.5,5.5 - parent: 1 - type: Transform -- uid: 13107 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 23.5,4.5 - parent: 1 - type: Transform -- uid: 13108 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 23.5,5.5 - parent: 1 - type: Transform -- uid: 13109 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,5.5 - parent: 1 - type: Transform -- uid: 13110 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,5.5 - parent: 1 - type: Transform -- uid: 13111 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,5.5 - parent: 1 - type: Transform -- uid: 13112 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,5.5 - parent: 1 - type: Transform -- uid: 13113 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 22.5,5.5 - parent: 1 - type: Transform -- uid: 13114 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,5.5 - parent: 1 - type: Transform -- uid: 13115 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,5.5 - parent: 1 - type: Transform -- uid: 13116 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,5.5 - parent: 1 - type: Transform -- uid: 13117 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,5.5 - parent: 1 - type: Transform -- uid: 13118 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,5.5 - parent: 1 - type: Transform -- uid: 13119 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,5.5 - parent: 1 - type: Transform -- uid: 13120 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,5.5 - parent: 1 - type: Transform -- uid: 13121 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,5.5 - parent: 1 - type: Transform -- uid: 13122 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,5.5 - parent: 1 - type: Transform -- uid: 13123 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,5.5 - parent: 1 - type: Transform -- uid: 13124 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 11.5,-2.5 - parent: 1 - type: Transform -- uid: 13125 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 11.5,-1.5 - parent: 1 - type: Transform -- uid: 13126 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 11.5,-0.5 - parent: 1 - type: Transform -- uid: 13127 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 11.5,0.5 - parent: 1 - type: Transform -- uid: 13128 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 11.5,1.5 - parent: 1 - type: Transform -- uid: 13129 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 11.5,2.5 - parent: 1 - type: Transform -- uid: 13130 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 11.5,3.5 - parent: 1 - type: Transform -- uid: 13131 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 11.5,4.5 - parent: 1 - type: Transform -- uid: 13132 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 11.5,5.5 - parent: 1 - type: Transform -- uid: 13133 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 11.5,-3.5 - parent: 1 - type: Transform -- uid: 13134 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,5.5 - parent: 1 - type: Transform -- uid: 13135 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,5.5 - parent: 1 - type: Transform -- uid: 13136 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,5.5 - parent: 1 - type: Transform -- uid: 13137 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,5.5 - parent: 1 - type: Transform -- uid: 13138 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,5.5 - parent: 1 - type: Transform -- uid: 13139 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,5.5 - parent: 1 - type: Transform -- uid: 13140 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,5.5 - parent: 1 - type: Transform -- uid: 13141 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,5.5 - parent: 1 - type: Transform -- uid: 13142 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,5.5 - parent: 1 - type: Transform -- uid: 13143 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,5.5 - parent: 1 - type: Transform -- uid: 13144 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 1 - type: Transform -- uid: 13145 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,5.5 - parent: 1 - type: Transform -- uid: 13146 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 1 - type: Transform -- uid: 13147 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,5.5 - parent: 1 - type: Transform -- uid: 13148 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,5.5 - parent: 1 - type: Transform -- uid: 13149 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,5.5 - parent: 1 - type: Transform -- uid: 13150 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,5.5 - parent: 1 - type: Transform -- uid: 13151 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,5.5 - parent: 1 - type: Transform -- uid: 13152 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -5.5,2.5 - parent: 1 - type: Transform -- uid: 13153 - type: DisposalTrunk - components: - - pos: -18.5,-1.5 - parent: 1 - type: Transform -- uid: 13154 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -18.5,-2.5 - parent: 1 - type: Transform -- uid: 13155 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 1 - type: Transform -- uid: 13156 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -7.5,2.5 - parent: 1 - type: Transform -- uid: 13157 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -7.5,5.5 - parent: 1 - type: Transform -- uid: 13158 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-2.5 - parent: 1 - type: Transform -- uid: 13159 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 1 - type: Transform -- uid: 13160 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-2.5 - parent: 1 - type: Transform -- uid: 13161 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 1 - type: Transform -- uid: 13162 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 1 - type: Transform -- uid: 13163 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 1 - type: Transform -- uid: 13164 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 1 - type: Transform -- uid: 13165 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 1 - type: Transform -- uid: 13166 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 1 - type: Transform -- uid: 13167 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-2.5 - parent: 1 - type: Transform -- uid: 13168 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -7.5,-1.5 - parent: 1 - type: Transform -- uid: 13169 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -7.5,-0.5 - parent: 1 - type: Transform -- uid: 13170 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -7.5,0.5 - parent: 1 - type: Transform -- uid: 13171 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -7.5,1.5 - parent: 1 - type: Transform -- uid: 13172 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,2.5 - parent: 1 - type: Transform -- uid: 13173 - type: DisposalPipe - components: - - pos: -7.5,3.5 - parent: 1 - type: Transform -- uid: 13174 - type: DisposalPipe - components: - - pos: -7.5,4.5 - parent: 1 - type: Transform -- uid: 13175 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,5.5 - parent: 1 - type: Transform -- uid: 13176 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,5.5 - parent: 1 - type: Transform -- uid: 13177 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,5.5 - parent: 1 - type: Transform -- uid: 13178 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,5.5 - parent: 1 - type: Transform -- uid: 13179 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,5.5 - parent: 1 - type: Transform -- uid: 13180 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,5.5 - parent: 1 - type: Transform -- uid: 13181 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,5.5 - parent: 1 - type: Transform -- uid: 13182 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,5.5 - parent: 1 - type: Transform -- uid: 13183 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,5.5 - parent: 1 - type: Transform -- uid: 13184 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,5.5 - parent: 1 - type: Transform -- uid: 13185 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,5.5 - parent: 1 - type: Transform -- uid: 13186 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,5.5 - parent: 1 - type: Transform -- uid: 13187 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,5.5 - parent: 1 - type: Transform -- uid: 13188 - type: DisposalTrunk - components: - - pos: -20.5,7.5 - parent: 1 - type: Transform -- uid: 13189 - type: DisposalPipe - components: - - pos: -20.5,6.5 - parent: 1 - type: Transform -- uid: 13190 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,5.5 - parent: 1 - type: Transform -- uid: 13191 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,5.5 - parent: 1 - type: Transform -- uid: 13192 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,5.5 - parent: 1 - type: Transform -- uid: 13193 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,5.5 - parent: 1 - type: Transform -- uid: 13194 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,5.5 - parent: 1 - type: Transform -- uid: 13195 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,5.5 - parent: 1 - type: Transform -- uid: 13196 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,5.5 - parent: 1 - type: Transform -- uid: 13197 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,5.5 - parent: 1 - type: Transform -- uid: 13198 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,5.5 - parent: 1 - type: Transform -- uid: 13199 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,5.5 - parent: 1 - type: Transform -- uid: 13200 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -31.5,5.5 - parent: 1 - type: Transform -- uid: 13201 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -32.5,5.5 - parent: 1 - type: Transform -- uid: 13202 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -33.5,5.5 - parent: 1 - type: Transform -- uid: 13203 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,5.5 - parent: 1 - type: Transform -- uid: 13204 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -35.5,5.5 - parent: 1 - type: Transform -- uid: 13205 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -35.5,6.5 - parent: 1 - type: Transform -- uid: 13206 - type: DisposalTrunk - components: - - pos: -35.5,7.5 - parent: 1 - type: Transform -- uid: 13207 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -36.5,5.5 - parent: 1 - type: Transform -- uid: 13208 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -37.5,5.5 - parent: 1 - type: Transform -- uid: 13209 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -38.5,5.5 - parent: 1 - type: Transform -- uid: 13210 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -39.5,5.5 - parent: 1 - type: Transform -- uid: 13211 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -40.5,5.5 - parent: 1 - type: Transform -- uid: 13212 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -41.5,5.5 - parent: 1 - type: Transform -- uid: 13213 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -42.5,5.5 - parent: 1 - type: Transform -- uid: 13214 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -43.5,5.5 - parent: 1 - type: Transform -- uid: 13215 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -44.5,5.5 - parent: 1 - type: Transform -- uid: 13216 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -45.5,5.5 - parent: 1 - type: Transform -- uid: 13217 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -46.5,5.5 - parent: 1 - type: Transform -- uid: 13218 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -47.5,5.5 - parent: 1 - type: Transform -- uid: 13219 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -48.5,5.5 - parent: 1 - type: Transform -- uid: 13220 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -50.5,5.5 - parent: 1 - type: Transform -- uid: 13221 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -48.5,8.5 - parent: 1 - type: Transform -- uid: 13222 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -51.5,5.5 - parent: 1 - type: Transform -- uid: 13223 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -52.5,5.5 - parent: 1 - type: Transform -- uid: 13224 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -53.5,5.5 - parent: 1 - type: Transform -- uid: 13225 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -54.5,5.5 - parent: 1 - type: Transform -- uid: 13226 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -55.5,5.5 - parent: 1 - type: Transform -- uid: 13227 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -56.5,5.5 - parent: 1 - type: Transform -- uid: 13228 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,-9.5 - parent: 1 - type: Transform -- uid: 13229 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,-8.5 - parent: 1 - type: Transform -- uid: 13230 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,-7.5 - parent: 1 - type: Transform -- uid: 13231 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,-6.5 - parent: 1 - type: Transform -- uid: 13232 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,-5.5 - parent: 1 - type: Transform -- uid: 13233 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,-4.5 - parent: 1 - type: Transform -- uid: 13234 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,-3.5 - parent: 1 - type: Transform -- uid: 13235 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,-2.5 - parent: 1 - type: Transform -- uid: 13236 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,-1.5 - parent: 1 - type: Transform -- uid: 13237 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,-0.5 - parent: 1 - type: Transform -- uid: 13238 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,0.5 - parent: 1 - type: Transform -- uid: 13239 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,1.5 - parent: 1 - type: Transform -- uid: 13240 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,2.5 - parent: 1 - type: Transform -- uid: 13241 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,3.5 - parent: 1 - type: Transform -- uid: 13242 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,4.5 - parent: 1 - type: Transform -- uid: 13243 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-10.5 - parent: 1 - type: Transform -- uid: 13244 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -57.5,-10.5 - parent: 1 - type: Transform -- uid: 13245 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -57.5,5.5 - parent: 1 - type: Transform -- uid: 13246 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,6.5 - parent: 1 - type: Transform -- uid: 13247 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,7.5 - parent: 1 - type: Transform -- uid: 13248 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,8.5 - parent: 1 - type: Transform -- uid: 13249 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,9.5 - parent: 1 - type: Transform -- uid: 13250 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,10.5 - parent: 1 - type: Transform -- uid: 13251 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,11.5 - parent: 1 - type: Transform -- uid: 13252 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,12.5 - parent: 1 - type: Transform -- uid: 13253 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,13.5 - parent: 1 - type: Transform -- uid: 13254 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,14.5 - parent: 1 - type: Transform -- uid: 13255 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,16.5 - parent: 1 - type: Transform -- uid: 13256 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,17.5 - parent: 1 - type: Transform -- uid: 13257 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,18.5 - parent: 1 - type: Transform -- uid: 13258 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,19.5 - parent: 1 - type: Transform -- uid: 13259 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,20.5 - parent: 1 - type: Transform -- uid: 13260 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,21.5 - parent: 1 - type: Transform -- uid: 13261 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,22.5 - parent: 1 - type: Transform -- uid: 13262 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,23.5 - parent: 1 - type: Transform -- uid: 13263 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,24.5 - parent: 1 - type: Transform -- uid: 13264 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,25.5 - parent: 1 - type: Transform -- uid: 13265 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,26.5 - parent: 1 - type: Transform -- uid: 13266 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,27.5 - parent: 1 - type: Transform -- uid: 13267 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,28.5 - parent: 1 - type: Transform -- uid: 13268 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,29.5 - parent: 1 - type: Transform -- uid: 13269 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,30.5 - parent: 1 - type: Transform -- uid: 13270 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,31.5 - parent: 1 - type: Transform -- uid: 13271 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -56.5,32.5 - parent: 1 - type: Transform -- uid: 13272 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,34.5 - parent: 1 - type: Transform -- uid: 13273 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,35.5 - parent: 1 - type: Transform -- uid: 13274 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,36.5 - parent: 1 - type: Transform -- uid: 13275 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,38.5 - parent: 1 - type: Transform -- uid: 13276 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,39.5 - parent: 1 - type: Transform -- uid: 13277 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,40.5 - parent: 1 - type: Transform -- uid: 13278 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,41.5 - parent: 1 - type: Transform -- uid: 13279 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,42.5 - parent: 1 - type: Transform -- uid: 13280 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,43.5 - parent: 1 - type: Transform -- uid: 13281 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,44.5 - parent: 1 - type: Transform -- uid: 13282 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -57.5,45.5 - parent: 1 - type: Transform -- uid: 13283 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -57.5,46.5 - parent: 1 - type: Transform -- uid: 13284 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -55.5,15.5 - parent: 1 - type: Transform -- uid: 13285 - type: DisposalTrunk - components: - - pos: -55.5,16.5 - parent: 1 - type: Transform -- uid: 13286 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -56.5,15.5 - parent: 1 - type: Transform -- uid: 13287 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -57.5,15.5 - parent: 1 - type: Transform -- uid: 13288 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -49.5,5.5 - parent: 1 - type: Transform -- uid: 13289 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -49.5,3.5 - parent: 1 - type: Transform -- uid: 13290 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -49.5,4.5 - parent: 1 - type: Transform -- uid: 13291 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -47.5,6.5 - parent: 1 - type: Transform -- uid: 13292 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -47.5,7.5 - parent: 1 - type: Transform -- uid: 13293 - type: DisposalBend - components: - - pos: -47.5,8.5 - parent: 1 - type: Transform -- uid: 13294 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -55.5,37.5 - parent: 1 - type: Transform -- uid: 13295 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -56.5,37.5 - parent: 1 - type: Transform -- uid: 13296 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -57.5,37.5 - parent: 1 - type: Transform -- uid: 13297 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 4.5,27.5 - parent: 1 - type: Transform - - id: Main Hall - type: SurveillanceCamera -- uid: 13298 - type: WarpPoint - components: - - rot: 1.5707963267948966 rad - pos: 3.5,25.5 - parent: 1 - type: Transform - - location: med - type: WarpPoint -- uid: 13299 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 1.5,32.5 - parent: 1 - type: Transform - - devices: - - 2055 - - 2868 - - 2867 - - 2869 - - 13306 - - 13305 - - 2052 - - 2051 - - 13309 - - 13308 - - 13307 - - 2053 - - 2054 - - 12736 - - 2102 - - 3023 - - 3019 - - 2674 - - 2490 - - 2666 - - 2487 - - 2671 - - 2488 - - 2670 - - 2489 - - 3022 - - 3021 - - 15082 - - 15083 - type: DeviceList -- uid: 13300 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 1.5,34.5 - parent: 1 - type: Transform - - devices: - - 2055 - - 2868 - - 2867 - - 2869 - - 13306 - - 13305 - - 2052 - - 2051 - - 13309 - - 13308 - - 13307 - - 2053 - - 2054 - - 15082 - - 15083 - type: DeviceList -- uid: 13301 - type: FirelockEdge - components: - - pos: 3.5,19.5 - parent: 1 - type: Transform -- uid: 13302 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 4.5,19.5 - parent: 1 - type: Transform -- uid: 13303 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 5.5,21.5 - parent: 1 - type: Transform - - devices: - - 13301 - - 13302 - - 2051 - - 2052 - - 2880 - - 2878 - - 2879 - - 2869 - - 2870 - - 13307 - - 13308 - - 13309 - - 15079 - - 15080 - - 15081 - type: DeviceList -- uid: 13304 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 1.5,22.5 - parent: 1 - type: Transform - - devices: - - 13301 - - 13302 - - 2051 - - 2052 - - 2880 - - 2878 - - 2879 - - 2869 - - 2870 - - 12859 - - 12858 - - 3021 - - 3022 - - 3023 - - 3019 - - 3020 - - 3024 - - 12766 - - 12765 - - 12759 - - 12760 - - 12761 - - 12762 - - 12763 - - 13307 - - 13308 - - 13309 - - 15079 - - 15080 - - 15081 - type: DeviceList -- uid: 13305 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 5.5,28.5 - parent: 1 - type: Transform -- uid: 13306 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 5.5,29.5 - parent: 1 - type: Transform -- uid: 13307 - type: FirelockGlass - components: - - pos: 2.5,27.5 - parent: 1 - type: Transform -- uid: 13308 - type: FirelockGlass - components: - - pos: 3.5,27.5 - parent: 1 - type: Transform -- uid: 13309 - type: FirelockGlass - components: - - pos: 4.5,27.5 - parent: 1 - type: Transform -- uid: 13310 - type: WallSolidRust - components: - - pos: 1.5,13.5 - parent: 1 - type: Transform -- uid: 13311 - type: WallSolidRust - components: - - pos: 0.5,13.5 - parent: 1 - type: Transform -- uid: 13312 - type: WallSolidRust - components: - - pos: 3.5,13.5 - parent: 1 - type: Transform -- uid: 13313 - type: WallSolidRust - components: - - pos: 5.5,14.5 - parent: 1 - type: Transform -- uid: 13314 - type: WallSolidRust - components: - - pos: 5.5,13.5 - parent: 1 - type: Transform -- uid: 13315 - type: WallSolidRust - components: - - pos: 5.5,16.5 - parent: 1 - type: Transform -- uid: 13316 - type: WallSolidRust - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform -- uid: 13317 - type: LockerSecurityFilled - components: - - pos: 0.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13318 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: -0.5,7.5 - parent: 1 - type: Transform -- uid: 13319 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: 0.5,7.5 - parent: 1 - type: Transform -- uid: 13320 - type: ChairOfficeDark - components: - - pos: -0.5,8.5 - parent: 1 - type: Transform -- uid: 13321 - type: WindoorSecure - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform -- uid: 13322 - type: WindoorSecure - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform -- uid: 13323 - type: Poweredlight - components: - - pos: -0.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13324 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -2.5,29.5 - parent: 1 - type: Transform -- uid: 13325 - type: DisposalBend - components: - - pos: -2.5,30.5 - parent: 1 - type: Transform -- uid: 13326 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -3.5,30.5 - parent: 1 - type: Transform -- uid: 13327 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -3.5,29.5 - parent: 1 - type: Transform -- uid: 13328 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,29.5 - parent: 1 - type: Transform -- uid: 13329 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,29.5 - parent: 1 - type: Transform -- uid: 13330 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,29.5 - parent: 1 - type: Transform -- uid: 13331 - type: CableApcExtension - components: - - pos: -0.5,6.5 - parent: 1 - type: Transform -- uid: 13332 - type: CableApcExtension - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform -- uid: 13333 - type: CableApcExtension - components: - - pos: -0.5,8.5 - parent: 1 - type: Transform -- uid: 13334 - type: CableApcExtension - components: - - pos: -0.5,9.5 - parent: 1 - type: Transform -- uid: 13335 - type: FlashlightSeclite - components: - - pos: -0.51456356,10.706236 - parent: 1 - type: Transform -- uid: 13336 - type: FlashlightSeclite - components: - - pos: -0.48331353,10.346861 - parent: 1 - type: Transform -- uid: 13337 - type: PowerCellRecharger - components: - - pos: -2.5,10.5 - parent: 1 - type: Transform -- uid: 13338 - type: WeaponCapacitorRecharger - components: - - pos: -1.5,10.5 - parent: 1 - type: Transform -- uid: 13339 - type: PowerCellRecharger - components: - - pos: -39.5,0.5 - parent: 1 - type: Transform -- uid: 13340 - type: PowerCellRecharger - components: - - pos: -31.5,-2.5 - parent: 1 - type: Transform -- uid: 13341 - type: PowerCellRecharger - components: - - pos: -24.5,8.5 - parent: 1 - type: Transform -- uid: 13342 - type: PowerCellRecharger - components: - - pos: -14.5,14.5 - parent: 1 - type: Transform -- uid: 13343 - type: PowerCellRecharger - components: - - pos: -52.5,17.5 - parent: 1 - type: Transform -- uid: 13344 - type: Girder - components: - - pos: -2.5,13.5 - parent: 1 - type: Transform -- uid: 13345 - type: AtmosFixBlockerMarker - components: - - pos: -90.5,41.5 - parent: 1 - type: Transform -- uid: 13346 - type: AtmosFixBlockerMarker - components: - - pos: -89.5,41.5 - parent: 1 - type: Transform -- uid: 13347 - type: AtmosFixBlockerMarker - components: - - pos: -88.5,41.5 - parent: 1 - type: Transform -- uid: 13348 - type: AtmosFixBlockerMarker - components: - - pos: -90.5,39.5 - parent: 1 - type: Transform -- uid: 13349 - type: AtmosFixBlockerMarker - components: - - pos: -89.5,39.5 - parent: 1 - type: Transform -- uid: 13350 - type: AtmosFixBlockerMarker - components: - - pos: -88.5,39.5 - parent: 1 - type: Transform -- uid: 13351 - type: AtmosFixOxygenMarker - components: - - pos: -90.5,35.5 - parent: 1 - type: Transform -- uid: 13352 - type: AtmosFixOxygenMarker - components: - - pos: -89.5,35.5 - parent: 1 - type: Transform -- uid: 13353 - type: AtmosFixOxygenMarker - components: - - pos: -88.5,35.5 - parent: 1 - type: Transform -- uid: 13354 - type: AtmosFixNitrogenMarker - components: - - pos: -90.5,37.5 - parent: 1 - type: Transform -- uid: 13355 - type: AtmosFixNitrogenMarker - components: - - pos: -89.5,37.5 - parent: 1 - type: Transform -- uid: 13356 - type: AtmosFixNitrogenMarker - components: - - pos: -88.5,37.5 - parent: 1 - type: Transform -- uid: 13357 - type: AtmosFixBlockerMarker - components: - - pos: -83.5,50.5 - parent: 1 - type: Transform -- uid: 13358 - type: AtmosFixBlockerMarker - components: - - pos: -82.5,50.5 - parent: 1 - type: Transform -- uid: 13359 - type: AtmosFixBlockerMarker - components: - - pos: -81.5,50.5 - parent: 1 - type: Transform -- uid: 13360 - type: BlastDoor - components: - - pos: -82.5,51.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13361 - type: SignalReceiver -- uid: 13361 - type: SignalButton - components: - - pos: -78.5,47.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13360 - type: SignalTransmitter -- uid: 13362 - type: AirlockMaint - components: - - pos: -73.5,44.5 - parent: 1 - type: Transform -- uid: 13363 - type: AirlockMaint - components: - - pos: -68.5,40.5 - parent: 1 - type: Transform -- uid: 13364 - type: AirlockMaint - components: - - pos: -74.5,52.5 - parent: 1 - type: Transform -- uid: 13365 - type: AirlockMaint - components: - - pos: -68.5,52.5 - parent: 1 - type: Transform -- uid: 13366 - type: BlastDoor - components: - - pos: -73.5,57.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13367 - type: SignalReceiver -- uid: 13367 - type: SignalButton - components: - - pos: -71.5,57.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13366 - type: SignalTransmitter -- uid: 13368 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -72.5,56.5 - parent: 1 - type: Transform -- uid: 13369 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -72.5,55.5 - parent: 1 - type: Transform -- uid: 13370 - type: WindoorSecure - components: - - rot: 1.5707963267948966 rad - pos: -72.5,54.5 - parent: 1 - type: Transform -- uid: 13371 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -72.5,53.5 - parent: 1 - type: Transform -- uid: 13372 - type: WindowReinforcedDirectional - components: - - pos: -73.5,53.5 - parent: 1 - type: Transform -- uid: 13373 - type: WindowReinforcedDirectional - components: - - pos: -72.5,53.5 - parent: 1 - type: Transform -- uid: 13374 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -59.5,47.5 - parent: 1 - type: Transform -- uid: 13375 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -60.5,47.5 - parent: 1 - type: Transform -- uid: 13376 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -61.5,47.5 - parent: 1 - type: Transform -- uid: 13377 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -62.5,47.5 - parent: 1 - type: Transform -- uid: 13378 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -63.5,47.5 - parent: 1 - type: Transform -- uid: 13379 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -64.5,47.5 - parent: 1 - type: Transform -- uid: 13380 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -65.5,47.5 - parent: 1 - type: Transform -- uid: 13381 - type: DisposalPipe - components: - - pos: -66.5,48.5 - parent: 1 - type: Transform -- uid: 13382 - type: DisposalPipe - components: - - pos: -66.5,49.5 - parent: 1 - type: Transform -- uid: 13383 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -67.5,51.5 - parent: 1 - type: Transform -- uid: 13384 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -68.5,52.5 - parent: 1 - type: Transform -- uid: 13385 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -69.5,52.5 - parent: 1 - type: Transform -- uid: 13386 - type: DisposalPipe - components: - - pos: -70.5,53.5 - parent: 1 - type: Transform -- uid: 13387 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -71.5,54.5 - parent: 1 - type: Transform -- uid: 13388 - type: DisposalBend - components: - - pos: -3.5,31.5 - parent: 1 - type: Transform -- uid: 13389 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -6.5,31.5 - parent: 1 - type: Transform -- uid: 13390 - type: DisposalBend - components: - - pos: -6.5,32.5 - parent: 1 - type: Transform -- uid: 13391 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,31.5 - parent: 1 - type: Transform -- uid: 13392 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,31.5 - parent: 1 - type: Transform -- uid: 13393 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,32.5 - parent: 1 - type: Transform -- uid: 13394 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,30.5 - parent: 1 - type: Transform -- uid: 13395 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -8.5,31.5 - parent: 1 - type: Transform -- uid: 13396 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -8.5,32.5 - parent: 1 - type: Transform -- uid: 13397 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -8.5,30.5 - parent: 1 - type: Transform -- uid: 13398 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -10.5,30.5 - parent: 1 - type: Transform -- uid: 13399 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,32.5 - parent: 1 - type: Transform -- uid: 13400 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,32.5 - parent: 1 - type: Transform -- uid: 13401 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,32.5 - parent: 1 - type: Transform -- uid: 13402 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,32.5 - parent: 1 - type: Transform -- uid: 13403 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,32.5 - parent: 1 - type: Transform -- uid: 13404 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,32.5 - parent: 1 - type: Transform -- uid: 13405 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,32.5 - parent: 1 - type: Transform -- uid: 13406 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,32.5 - parent: 1 - type: Transform -- uid: 13407 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,32.5 - parent: 1 - type: Transform -- uid: 13408 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,32.5 - parent: 1 - type: Transform -- uid: 13409 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,32.5 - parent: 1 - type: Transform -- uid: 13410 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,32.5 - parent: 1 - type: Transform -- uid: 13411 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,32.5 - parent: 1 - type: Transform -- uid: 13412 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,32.5 - parent: 1 - type: Transform -- uid: 13413 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,32.5 - parent: 1 - type: Transform -- uid: 13414 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -26.5,32.5 - parent: 1 - type: Transform -- uid: 13415 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,32.5 - parent: 1 - type: Transform -- uid: 13416 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,32.5 - parent: 1 - type: Transform -- uid: 13417 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,32.5 - parent: 1 - type: Transform -- uid: 13418 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,32.5 - parent: 1 - type: Transform -- uid: 13419 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -31.5,32.5 - parent: 1 - type: Transform -- uid: 13420 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -32.5,32.5 - parent: 1 - type: Transform -- uid: 13421 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -33.5,32.5 - parent: 1 - type: Transform -- uid: 13422 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -34.5,32.5 - parent: 1 - type: Transform -- uid: 13423 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -35.5,32.5 - parent: 1 - type: Transform -- uid: 13424 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -36.5,32.5 - parent: 1 - type: Transform -- uid: 13425 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -38.5,32.5 - parent: 1 - type: Transform -- uid: 13426 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -39.5,32.5 - parent: 1 - type: Transform -- uid: 13427 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -40.5,32.5 - parent: 1 - type: Transform -- uid: 13428 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -41.5,32.5 - parent: 1 - type: Transform -- uid: 13429 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -42.5,32.5 - parent: 1 - type: Transform -- uid: 13430 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -43.5,32.5 - parent: 1 - type: Transform -- uid: 13431 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -44.5,32.5 - parent: 1 - type: Transform -- uid: 13432 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -46.5,32.5 - parent: 1 - type: Transform -- uid: 13433 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -47.5,32.5 - parent: 1 - type: Transform -- uid: 13434 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -48.5,32.5 - parent: 1 - type: Transform -- uid: 13435 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -49.5,32.5 - parent: 1 - type: Transform -- uid: 13436 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -50.5,32.5 - parent: 1 - type: Transform -- uid: 13437 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -51.5,32.5 - parent: 1 - type: Transform -- uid: 13438 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -52.5,32.5 - parent: 1 - type: Transform -- uid: 13439 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -53.5,32.5 - parent: 1 - type: Transform -- uid: 13440 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -54.5,32.5 - parent: 1 - type: Transform -- uid: 13441 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -55.5,32.5 - parent: 1 - type: Transform -- uid: 13442 - type: DisposalPipe - components: - - pos: -45.5,31.5 - parent: 1 - type: Transform -- uid: 13443 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -45.5,32.5 - parent: 1 - type: Transform -- uid: 13444 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -45.5,30.5 - parent: 1 - type: Transform -- uid: 13445 - type: DisposalTrunk - components: - - pos: -26.5,29.5 - parent: 1 - type: Transform -- uid: 13446 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -26.5,28.5 - parent: 1 - type: Transform -- uid: 13447 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -22.5,28.5 - parent: 1 - type: Transform -- uid: 13448 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,28.5 - parent: 1 - type: Transform -- uid: 13449 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,28.5 - parent: 1 - type: Transform -- uid: 13450 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,28.5 - parent: 1 - type: Transform -- uid: 13451 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,29.5 - parent: 1 - type: Transform -- uid: 13452 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,31.5 - parent: 1 - type: Transform -- uid: 13453 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,30.5 - parent: 1 - type: Transform -- uid: 13454 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -22.5,32.5 - parent: 1 - type: Transform -- uid: 13455 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -16.5,32.5 - parent: 1 - type: Transform -- uid: 13456 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,33.5 - parent: 1 - type: Transform -- uid: 13457 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,34.5 - parent: 1 - type: Transform -- uid: 13458 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,35.5 - parent: 1 - type: Transform -- uid: 13459 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,36.5 - parent: 1 - type: Transform -- uid: 13460 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,37.5 - parent: 1 - type: Transform -- uid: 13461 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,38.5 - parent: 1 - type: Transform -- uid: 13462 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,39.5 - parent: 1 - type: Transform -- uid: 13463 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,40.5 - parent: 1 - type: Transform -- uid: 13464 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,41.5 - parent: 1 - type: Transform -- uid: 13465 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,42.5 - parent: 1 - type: Transform -- uid: 13466 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,43.5 - parent: 1 - type: Transform -- uid: 13467 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,44.5 - parent: 1 - type: Transform -- uid: 13468 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,45.5 - parent: 1 - type: Transform -- uid: 13469 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,45.5 - parent: 1 - type: Transform -- uid: 13470 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,45.5 - parent: 1 - type: Transform -- uid: 13471 - type: DisposalPipe - components: - - pos: -20.5,44.5 - parent: 1 - type: Transform -- uid: 13472 - type: DisposalPipe - components: - - pos: -20.5,43.5 - parent: 1 - type: Transform -- uid: 13473 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -20.5,42.5 - parent: 1 - type: Transform -- uid: 13474 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -20.5,45.5 - parent: 1 - type: Transform -- uid: 13475 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -19.5,42.5 - parent: 1 - type: Transform -- uid: 13476 - type: DisposalJunction - components: - - pos: -16.5,45.5 - parent: 1 - type: Transform -- uid: 13477 - type: DisposalPipe - components: - - pos: -16.5,46.5 - parent: 1 - type: Transform -- uid: 13478 - type: DisposalPipe - components: - - pos: -16.5,47.5 - parent: 1 - type: Transform -- uid: 13479 - type: DisposalPipe - components: - - pos: -16.5,48.5 - parent: 1 - type: Transform -- uid: 13480 - type: DisposalPipe - components: - - pos: -16.5,49.5 - parent: 1 - type: Transform -- uid: 13481 - type: DisposalPipe - components: - - pos: -16.5,50.5 - parent: 1 - type: Transform -- uid: 13482 - type: DisposalPipe - components: - - pos: -16.5,51.5 - parent: 1 - type: Transform -- uid: 13483 - type: DisposalPipe - components: - - pos: -16.5,52.5 - parent: 1 - type: Transform -- uid: 13484 - type: DisposalPipe - components: - - pos: -16.5,53.5 - parent: 1 - type: Transform -- uid: 13485 - type: DisposalPipe - components: - - pos: -16.5,54.5 - parent: 1 - type: Transform -- uid: 13486 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,55.5 - parent: 1 - type: Transform -- uid: 13487 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,55.5 - parent: 1 - type: Transform -- uid: 13488 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,55.5 - parent: 1 - type: Transform -- uid: 13489 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -12.5,56.5 - parent: 1 - type: Transform -- uid: 13490 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,56.5 - parent: 1 - type: Transform -- uid: 13491 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,57.5 - parent: 1 - type: Transform -- uid: 13492 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,58.5 - parent: 1 - type: Transform -- uid: 13493 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,59.5 - parent: 1 - type: Transform -- uid: 13494 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,59.5 - parent: 1 - type: Transform -- uid: 13495 - type: DisposalBend - components: - - pos: -17.5,59.5 - parent: 1 - type: Transform -- uid: 13496 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -17.5,55.5 - parent: 1 - type: Transform -- uid: 13497 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -12.5,55.5 - parent: 1 - type: Transform -- uid: 13498 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -20.5,59.5 - parent: 1 - type: Transform -- uid: 13499 - type: DisposalTrunk - components: - - pos: -12.5,57.5 - parent: 1 - type: Transform -- uid: 13500 - type: DisposalYJunction - components: - - pos: -16.5,55.5 - parent: 1 - type: Transform -- uid: 13501 - type: DisposalUnit - components: - - pos: -20.5,59.5 - parent: 1 - type: Transform -- uid: 13502 - type: DisposalUnit - components: - - pos: -12.5,57.5 - parent: 1 - type: Transform -- uid: 13503 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -39.5,20.5 - parent: 1 - type: Transform -- uid: 13504 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -38.5,20.5 - parent: 1 - type: Transform -- uid: 13505 - type: DisposalPipe - components: - - pos: -37.5,21.5 - parent: 1 - type: Transform -- uid: 13506 - type: DisposalPipe - components: - - pos: -37.5,22.5 - parent: 1 - type: Transform -- uid: 13507 - type: DisposalPipe - components: - - pos: -37.5,23.5 - parent: 1 - type: Transform -- uid: 13508 - type: DisposalPipe - components: - - pos: -37.5,24.5 - parent: 1 - type: Transform -- uid: 13509 - type: DisposalPipe - components: - - pos: -37.5,25.5 - parent: 1 - type: Transform -- uid: 13510 - type: DisposalPipe - components: - - pos: -37.5,26.5 - parent: 1 - type: Transform -- uid: 13511 - type: DisposalPipe - components: - - pos: -37.5,27.5 - parent: 1 - type: Transform -- uid: 13512 - type: DisposalPipe - components: - - pos: -37.5,28.5 - parent: 1 - type: Transform -- uid: 13513 - type: DisposalPipe - components: - - pos: -37.5,29.5 - parent: 1 - type: Transform -- uid: 13514 - type: DisposalPipe - components: - - pos: -37.5,30.5 - parent: 1 - type: Transform -- uid: 13515 - type: DisposalPipe - components: - - pos: -37.5,31.5 - parent: 1 - type: Transform -- uid: 13516 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -37.5,20.5 - parent: 1 - type: Transform -- uid: 13517 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -37.5,32.5 - parent: 1 - type: Transform -- uid: 13518 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -44.5,39.5 - parent: 1 - type: Transform -- uid: 13519 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -43.5,39.5 - parent: 1 - type: Transform -- uid: 13520 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -42.5,39.5 - parent: 1 - type: Transform -- uid: 13521 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -41.5,39.5 - parent: 1 - type: Transform -- uid: 13522 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -40.5,39.5 - parent: 1 - type: Transform -- uid: 13523 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -39.5,39.5 - parent: 1 - type: Transform -- uid: 13524 - type: DisposalPipe - components: - - pos: -38.5,38.5 - parent: 1 - type: Transform -- uid: 13525 - type: DisposalPipe - components: - - pos: -38.5,37.5 - parent: 1 - type: Transform -- uid: 13526 - type: DisposalPipe - components: - - pos: -38.5,36.5 - parent: 1 - type: Transform -- uid: 13527 - type: DisposalPipe - components: - - pos: -38.5,35.5 - parent: 1 - type: Transform -- uid: 13528 - type: DisposalPipe - components: - - pos: -38.5,34.5 - parent: 1 - type: Transform -- uid: 13529 - type: DisposalPipe - components: - - pos: -38.5,33.5 - parent: 1 - type: Transform -- uid: 13530 - type: DisposalJunction - components: - - pos: -38.5,39.5 - parent: 1 - type: Transform -- uid: 13531 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -38.5,40.5 - parent: 1 - type: Transform -- uid: 13532 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -37.5,40.5 - parent: 1 - type: Transform -- uid: 13533 - type: DisposalTrunk - components: - - pos: -44.5,47.5 - parent: 1 - type: Transform -- uid: 13534 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -49.5,44.5 - parent: 1 - type: Transform -- uid: 13535 - type: DisposalBend - components: - - pos: -37.5,42.5 - parent: 1 - type: Transform -- uid: 13536 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -38.5,42.5 - parent: 1 - type: Transform -- uid: 13537 - type: DisposalPipe - components: - - pos: -37.5,41.5 - parent: 1 - type: Transform -- uid: 13538 - type: DisposalBend - components: - - pos: -56.5,33.5 - parent: 1 - type: Transform -- uid: 13539 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -57.5,33.5 - parent: 1 - type: Transform -- uid: 13540 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: -57.5,32.5 - parent: 1 - type: Transform -- uid: 13541 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -49.5,45.5 - parent: 1 - type: Transform -- uid: 13542 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -44.5,46.5 - parent: 1 - type: Transform -- uid: 13543 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -45.5,46.5 - parent: 1 - type: Transform -- uid: 13544 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -46.5,46.5 - parent: 1 - type: Transform -- uid: 13545 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -48.5,46.5 - parent: 1 - type: Transform -- uid: 13546 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -48.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13547 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -49.5,46.5 - parent: 1 - type: Transform -- uid: 13548 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -50.5,46.5 - parent: 1 - type: Transform -- uid: 13549 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -51.5,46.5 - parent: 1 - type: Transform -- uid: 13550 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -52.5,46.5 - parent: 1 - type: Transform -- uid: 13551 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -53.5,46.5 - parent: 1 - type: Transform -- uid: 13552 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -54.5,46.5 - parent: 1 - type: Transform -- uid: 13553 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -55.5,46.5 - parent: 1 - type: Transform -- uid: 13554 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -56.5,46.5 - parent: 1 - type: Transform -- uid: 13555 - type: DisposalBend - components: - - pos: -57.5,47.5 - parent: 1 - type: Transform -- uid: 13556 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -72.5,54.5 - parent: 1 - type: Transform -- uid: 13557 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -66.5,47.5 - parent: 1 - type: Transform -- uid: 13558 - type: DisposalBend - components: - - pos: -66.5,50.5 - parent: 1 - type: Transform -- uid: 13559 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -67.5,50.5 - parent: 1 - type: Transform -- uid: 13560 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -58.5,47.5 - parent: 1 - type: Transform -- uid: 13561 - type: DisposalBend - components: - - pos: -67.5,52.5 - parent: 1 - type: Transform -- uid: 13562 - type: DisposalBend - components: - - pos: -70.5,54.5 - parent: 1 - type: Transform -- uid: 13563 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -70.5,52.5 - parent: 1 - type: Transform -- uid: 13564 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -73.5,20.5 - parent: 1 - type: Transform -- uid: 13565 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -73.5,21.5 - parent: 1 - type: Transform -- uid: 13566 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -73.5,22.5 - parent: 1 - type: Transform -- uid: 13567 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -73.5,23.5 - parent: 1 - type: Transform -- uid: 13568 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -73.5,24.5 - parent: 1 - type: Transform -- uid: 13569 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -73.5,25.5 - parent: 1 - type: Transform -- uid: 13570 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -73.5,26.5 - parent: 1 - type: Transform -- uid: 13571 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -73.5,27.5 - parent: 1 - type: Transform -- uid: 13572 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -73.5,28.5 - parent: 1 - type: Transform -- uid: 13573 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -73.5,29.5 - parent: 1 - type: Transform -- uid: 13574 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -73.5,30.5 - parent: 1 - type: Transform -- uid: 13575 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -73.5,31.5 - parent: 1 - type: Transform -- uid: 13576 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -73.5,32.5 - parent: 1 - type: Transform -- uid: 13577 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -72.5,33.5 - parent: 1 - type: Transform -- uid: 13578 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -71.5,33.5 - parent: 1 - type: Transform -- uid: 13579 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -70.5,33.5 - parent: 1 - type: Transform -- uid: 13580 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -69.5,33.5 - parent: 1 - type: Transform -- uid: 13581 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -68.5,33.5 - parent: 1 - type: Transform -- uid: 13582 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -58.5,32.5 - parent: 1 - type: Transform -- uid: 13583 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -67.5,33.5 - parent: 1 - type: Transform -- uid: 13584 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -66.5,33.5 - parent: 1 - type: Transform -- uid: 13585 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -65.5,33.5 - parent: 1 - type: Transform -- uid: 13586 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -63.5,32.5 - parent: 1 - type: Transform -- uid: 13587 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -62.5,32.5 - parent: 1 - type: Transform -- uid: 13588 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -61.5,32.5 - parent: 1 - type: Transform -- uid: 13589 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -60.5,32.5 - parent: 1 - type: Transform -- uid: 13590 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -59.5,32.5 - parent: 1 - type: Transform -- uid: 13591 - type: DisposalYJunction - components: - - rot: 1.5707963267948966 rad - pos: -64.5,32.5 - parent: 1 - type: Transform -- uid: 13592 - type: DisposalBend - components: - - pos: -64.5,33.5 - parent: 1 - type: Transform -- uid: 13593 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -64.5,28.5 - parent: 1 - type: Transform -- uid: 13594 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -73.5,33.5 - parent: 1 - type: Transform -- uid: 13595 - type: DisposalPipe - components: - - pos: -64.5,29.5 - parent: 1 - type: Transform -- uid: 13596 - type: DisposalPipe - components: - - pos: -64.5,30.5 - parent: 1 - type: Transform -- uid: 13597 - type: DisposalPipe - components: - - pos: -64.5,31.5 - parent: 1 - type: Transform -- uid: 13598 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -63.5,28.5 - parent: 1 - type: Transform -- uid: 13599 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -73.5,19.5 - parent: 1 - type: Transform -- uid: 13600 - type: SheetSteel - components: - - pos: -66.496956,25.561287 - parent: 1 - type: Transform -- uid: 13601 - type: SheetSteel - components: - - pos: -66.496956,25.561287 - parent: 1 - type: Transform -- uid: 13602 - type: FaxMachineBase - components: - - pos: -64.5,25.5 - parent: 1 - type: Transform - - name: Engineering - type: FaxMachine -- uid: 13603 - type: SheetPlasteel - components: - - pos: -66.25047,25.549358 - parent: 1 - type: Transform -- uid: 13604 - type: SheetPlasteel - components: - - pos: -66.25047,25.549358 - parent: 1 - type: Transform -- uid: 13605 - type: SheetGlass - components: - - pos: -65.92235,25.549358 - parent: 1 - type: Transform -- uid: 13606 - type: SheetGlass - components: - - pos: -65.92235,25.549358 - parent: 1 - type: Transform -- uid: 13607 - type: PartRodMetal - components: - - pos: -65.40672,25.564983 - parent: 1 - type: Transform -- uid: 13608 - type: ToolboxElectricalFilled - components: - - pos: -63.54383,25.748787 - parent: 1 - type: Transform -- uid: 13609 - type: ToolboxMechanicalFilled - components: - - pos: -63.528206,25.389412 - parent: 1 - type: Transform -- uid: 13610 - type: SheetSteel - components: - - pos: -82.49008,29.604647 - parent: 1 - type: Transform -- uid: 13611 - type: SheetSteel - components: - - pos: -82.49008,29.604647 - parent: 1 - type: Transform -- uid: 13612 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -48.5,47.5 - parent: 1 - type: Transform -- uid: 13613 - type: PartRodMetal - components: - - pos: -82.49008,30.479647 - parent: 1 - type: Transform -- uid: 13614 - type: PartRodMetal - components: - - pos: -82.49008,30.479647 - parent: 1 - type: Transform -- uid: 13615 - type: RCD - components: - - pos: -73.40199,15.605122 - parent: 1 - type: Transform -- uid: 13616 - type: RCDAmmo - components: - - pos: -73.65199,15.448872 - parent: 1 - type: Transform -- uid: 13617 - type: RCDAmmo - components: - - pos: -73.54262,15.464497 - parent: 1 - type: Transform -- uid: 13618 - type: RCDAmmo - components: - - pos: -73.37074,15.464497 - parent: 1 - type: Transform -- uid: 13619 - type: AirlockEngineeringLocked - components: - - pos: -62.5,32.5 - parent: 1 - type: Transform -- uid: 13620 - type: PartRodMetal - components: - - pos: -65.40672,25.564983 - parent: 1 - type: Transform -- uid: 13621 - type: AirlockMaintEngiLocked - components: - - pos: -63.5,35.5 - parent: 1 - type: Transform -- uid: 13622 - type: AirlockMaintLocked - components: - - pos: -60.5,34.5 - parent: 1 - type: Transform -- uid: 13623 - type: AirlockMaintLocked - components: - - pos: -60.5,30.5 - parent: 1 - type: Transform -- uid: 13624 - type: WindoorEngineeringLocked - components: - - rot: 1.5707963267948966 rad - pos: -59.5,32.5 - parent: 1 - type: Transform -- uid: 13625 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -59.5,33.5 - parent: 1 - type: Transform -- uid: 13626 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -59.5,31.5 - parent: 1 - type: Transform -- uid: 13627 - type: GasPassiveVent - components: - - pos: -90.5,45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13628 - type: GasPassiveVent - components: - - pos: -90.5,43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13629 - type: GasPassiveVent - components: - - pos: -90.5,41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13630 - type: GasPassiveVent - components: - - pos: -90.5,39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13631 - type: GasPassiveVent - components: - - pos: -90.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13632 - type: GasPassiveVent - components: - - pos: -90.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13633 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -88.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13634 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -88.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13635 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -88.5,39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13636 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -88.5,41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13637 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -88.5,43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13638 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -88.5,45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13639 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -89.5,44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13640 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -88.5,44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13641 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -87.5,44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13642 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -86.5,44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13643 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -85.5,44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13644 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -87.5,45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13645 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -86.5,45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13646 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -85.5,45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13647 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -87.5,43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13648 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -86.5,43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13649 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -85.5,43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13650 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -89.5,42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13651 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -88.5,42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13652 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -87.5,42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13653 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -86.5,42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13654 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -85.5,42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13655 - type: ExtinguisherCabinet - components: - - pos: -39.5,47.5 - parent: 1 - type: Transform -- uid: 13656 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -87.5,41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13657 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,34.5 - parent: 1 - type: Transform -- uid: 13658 - type: CableApcExtension - components: - - pos: -51.5,36.5 - parent: 1 - type: Transform -- uid: 13659 - type: CableApcExtension - components: - - pos: -50.5,36.5 - parent: 1 - type: Transform -- uid: 13660 - type: CableApcExtension - components: - - pos: -49.5,36.5 - parent: 1 - type: Transform -- uid: 13661 - type: MachineFrame - components: - - pos: -12.5,-14.5 - parent: 1 - type: Transform -- uid: 13662 - type: APECircuitboard - components: - - pos: -15.288552,-14.404373 - parent: 1 - type: Transform -- uid: 13663 - type: MicroLaserStockPart - components: - - pos: -16.101051,-14.435623 - parent: 1 - type: Transform -- uid: 13664 - type: MicroLaserStockPart - components: - - pos: -15.913552,-14.341873 - parent: 1 - type: Transform -- uid: 13665 - type: MicroLaserStockPart - components: - - pos: -15.757302,-14.435623 - parent: 1 - type: Transform -- uid: 13666 - type: CapacitorStockPart - components: - - pos: -15.897927,-14.544998 - parent: 1 - type: Transform -- uid: 13667 - type: CableApcStack1 - components: - - pos: -17.665174,-14.392005 - parent: 1 - type: Transform - - count: 5 - type: Stack -- uid: 13668 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -86.5,41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13669 - type: VendingMachineCondiments - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,40.5 - parent: 1 - type: Transform -- uid: 13670 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -85.5,41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13671 - type: Rack - components: - - pos: -53.5,44.5 - parent: 1 - type: Transform -- uid: 13672 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: -53.5,36.5 - parent: 1 - type: Transform -- uid: 13673 - type: Rack - components: - - pos: -50.5,41.5 - parent: 1 - type: Transform -- uid: 13674 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: -50.5,41.5 - parent: 1 - type: Transform -- uid: 13675 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: -53.5,44.5 - parent: 1 - type: Transform -- uid: 13676 - type: VendingMachineRestockBooze - components: - - pos: -27.467127,35.556686 - parent: 1 - type: Transform -- uid: 13677 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -89.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13678 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -88.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13679 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -87.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13680 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -86.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13681 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -85.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13682 - type: ExtinguisherCabinet - components: - - pos: -35.5,34.5 - parent: 1 - type: Transform -- uid: 13683 - type: ExtinguisherCabinet - components: - - pos: -26.5,44.5 - parent: 1 - type: Transform -- uid: 13684 - type: ExtinguisherCabinet - components: - - pos: -27.5,29.5 - parent: 1 - type: Transform -- uid: 13685 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -87.5,39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13686 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -86.5,39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13687 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -85.5,39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13688 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -89.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13689 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -88.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13690 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -87.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13691 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -86.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13692 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -85.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13693 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -87.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13694 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -86.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13695 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -85.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13696 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -89.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13697 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -88.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13698 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -87.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13699 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -42.5,41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13700 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13701 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13702 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -86.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13703 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -85.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13704 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: -11.5,-1.5 - parent: 1 - type: Transform - - id: Main Area - type: SurveillanceCamera -- uid: 13705 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 2.5,-8.5 - parent: 1 - type: Transform - - id: Xenoarch - type: SurveillanceCamera -- uid: 13706 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: -12.5,-10.5 - parent: 1 - type: Transform - - id: Anomaly Lab - type: SurveillanceCamera -- uid: 13707 - type: SurveillanceCameraScience - components: - - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 1 - type: Transform - - id: Robotics Room - type: SurveillanceCamera -- uid: 13708 - type: SurveillanceCameraSupply - components: - - pos: -35.5,0.5 - parent: 1 - type: Transform - - id: Reception Area - type: SurveillanceCamera -- uid: 13709 - type: SurveillanceCameraSupply - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-5.5 - parent: 1 - type: Transform - - id: Cargo Bay - type: SurveillanceCamera -- uid: 13710 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -51.5,10.5 - parent: 1 - type: Transform - - id: Arrivals Checkpoint - type: SurveillanceCamera -- uid: 13711 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -87.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13712 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -86.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13713 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -85.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13714 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -89.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13715 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -88.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13716 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -87.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13717 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -86.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13718 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -85.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13719 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -90.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13720 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -90.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13721 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -90.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13722 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -90.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13723 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -51.5,29.5 - parent: 1 - type: Transform - - id: Storage - type: SurveillanceCamera -- uid: 13724 - type: SurveillanceCameraEngineering - components: - - pos: -50.5,23.5 - parent: 1 - type: Transform - - id: Tech Vault - type: SurveillanceCamera -- uid: 13725 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -90.5,42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13726 - type: SurveillanceCameraScience - components: - - pos: -10.5,4.5 - parent: 1 - type: Transform - - id: Entrance - type: SurveillanceCamera -- uid: 13727 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -11.5,13.5 - parent: 1 - type: Transform - - id: Store Area - type: SurveillanceCamera -- uid: 13728 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -28.5,11.5 - parent: 1 - type: Transform - - id: Library - type: SurveillanceCamera -- uid: 13729 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -25.5,18.5 - parent: 1 - type: Transform - - id: Library Backroom - type: SurveillanceCamera -- uid: 13730 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -90.5,44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13731 - type: SurveillanceCameraGeneral - components: - - pos: -24.5,26.5 - parent: 1 - type: Transform - - id: Tool Room - type: SurveillanceCamera -- uid: 13732 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: -22.5,37.5 - parent: 1 - type: Transform - - id: HoP Office Line - type: SurveillanceCamera -- uid: 13733 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: -22.5,45.5 - parent: 1 - type: Transform - - id: HoP Office Backroom - type: SurveillanceCamera -- uid: 13734 - type: SurveillanceCameraCommand - components: - - pos: -11.5,46.5 - parent: 1 - type: Transform - - id: EVA Room - type: SurveillanceCamera -- uid: 13735 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -15.5,51.5 - parent: 1 - type: Transform - - id: Bridge Entrance - type: SurveillanceCamera -- uid: 13736 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: -18.5,56.5 - parent: 1 - type: Transform - - id: Bridge Reception - type: SurveillanceCamera -- uid: 13737 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -20.5,56.5 - parent: 1 - type: Transform - - id: Vault - type: SurveillanceCamera -- uid: 13738 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -9.5,57.5 - parent: 1 - type: Transform - - id: Meeting Room - type: SurveillanceCamera -- uid: 13739 - type: SurveillanceCameraCommand - components: - - pos: -6.5,59.5 - parent: 1 - type: Transform - - id: Captain's Office - type: SurveillanceCamera -- uid: 13740 - type: SurveillanceCameraCommand - components: - - pos: -14.5,62.5 - parent: 1 - type: Transform - - id: Bridge - type: SurveillanceCamera -- uid: 13741 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: -28.5,47.5 - parent: 1 - type: Transform - - id: Freezer - type: SurveillanceCamera -- uid: 13742 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: -35.5,47.5 - parent: 1 - type: Transform - - id: Kitchen - type: SurveillanceCamera -- uid: 13743 - type: SurveillanceCameraService - components: - - pos: -42.5,41.5 - parent: 1 - type: Transform - - id: Botany - type: SurveillanceCamera -- uid: 13744 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: -30.5,36.5 - parent: 1 - type: Transform - - id: Bar Right - type: SurveillanceCamera -- uid: 13745 - type: SurveillanceCameraService - components: - - pos: -43.5,35.5 - parent: 1 - type: Transform - - id: Bar Left - type: SurveillanceCamera -- uid: 13746 - type: SurveillanceCameraService - components: - - rot: -1.5707963267948966 rad - pos: -42.5,51.5 - parent: 1 - type: Transform - - id: Botany Backroom - type: SurveillanceCamera -- uid: 13747 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -56.5,2.5 - parent: 1 - type: Transform - - id: Arrivals Corridor - type: SurveillanceCamera -- uid: 13748 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 14.5,6.5 - parent: 1 - type: Transform - - id: Evac Corridor - type: SurveillanceCamera -- uid: 13749 - type: SurveillanceCameraGeneral - components: - - pos: 13.5,-2.5 - parent: 1 - type: Transform - - id: Chapel - type: SurveillanceCamera -- uid: 13750 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 28.5,11.5 - parent: 1 - type: Transform - - id: Evac 2 - type: SurveillanceCamera -- uid: 13751 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 25.5,20.5 - parent: 1 - type: Transform - - id: Evac 1 - type: SurveillanceCamera -- uid: 13752 - type: Grille - components: - - pos: -85.5,33.5 - parent: 1 - type: Transform -- uid: 13753 - type: CableApcExtension - components: - - pos: -84.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13754 - type: GasPipeStraight - components: - - pos: -83.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13755 - type: GasFilterFlipped - components: - - pos: -83.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13756 - type: GasValve - components: - - rot: -1.5707963267948966 rad - pos: -84.5,33.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 13757 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -83.5,44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13758 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -84.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13759 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: -4.5,24.5 - parent: 1 - type: Transform - - id: Chemistry - type: SurveillanceCamera -- uid: 13760 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -83.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13761 - type: GasPipeStraight - components: - - pos: -83.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13762 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 0.5,31.5 - parent: 1 - type: Transform - - id: Reception - type: SurveillanceCamera -- uid: 13763 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: -11.5,33.5 - parent: 1 - type: Transform - - id: Entrance - type: SurveillanceCamera -- uid: 13764 - type: ExtinguisherCabinet - components: - - pos: -39.5,22.5 - parent: 1 - type: Transform -- uid: 13765 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -24.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13766 - type: FireAxeCabinetFilled - components: - - pos: -10.5,58.5 - parent: 1 - type: Transform -- uid: 13767 - type: ComputerComms - components: - - rot: 3.141592653589793 rad - pos: -8.5,59.5 - parent: 1 - type: Transform -- uid: 13768 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -84.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13769 - type: GasFilterFlipped - components: - - pos: -83.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13770 - type: GasFilterFlipped - components: - - pos: -83.5,45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13771 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -83.5,44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13772 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -83.5,42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13773 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -83.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13774 - type: GasFilterFlipped - components: - - pos: -83.5,39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13775 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -84.5,42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13776 - type: SpawnPointObserver - components: - - pos: -37.5,32.5 - parent: 1 - type: Transform -- uid: 13777 - type: WarpPoint - components: - - pos: -37.5,37.5 - parent: 1 - type: Transform - - location: bar - type: WarpPoint -- uid: 13778 - type: GasFilterFlipped - components: - - pos: -83.5,43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13779 - type: GasPipeStraight - components: - - pos: -84.5,47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13780 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -83.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13781 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -84.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13782 - type: GasFilterFlipped - components: - - pos: -83.5,41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13783 - type: WarpPoint - components: - - pos: -32.5,26.5 - parent: 1 - type: Transform - - location: theatre - type: WarpPoint -- uid: 13784 - type: WarpPoint - components: - - pos: -21.5,40.5 - parent: 1 - type: Transform - - location: HoP - type: WarpPoint -- uid: 13785 - type: WarpPoint - components: - - pos: -16.5,60.5 - parent: 1 - type: Transform - - location: bridge - type: WarpPoint -- uid: 13786 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -83.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13787 - type: WarpPoint - components: - - pos: 27.5,13.5 - parent: 1 - type: Transform - - location: evac - type: WarpPoint -- uid: 13788 - type: WarpPoint - components: - - pos: 15.5,-0.5 - parent: 1 - type: Transform - - location: chapel - type: WarpPoint -- uid: 13789 - type: WarpPoint - components: - - pos: -7.5,-1.5 - parent: 1 - type: Transform - - location: sci - type: WarpPoint -- uid: 13790 - type: WarpPoint - components: - - pos: -38.5,-5.5 - parent: 1 - type: Transform - - location: cargo - type: WarpPoint -- uid: 13792 - type: ExtinguisherCabinet - components: - - pos: -35.5,9.5 - parent: 1 - type: Transform -- uid: 13793 - type: ExtinguisherCabinet - components: - - pos: -55.5,-1.5 - parent: 1 - type: Transform -- uid: 13796 - type: ExtinguisherCabinet - components: - - pos: -26.5,-9.5 - parent: 1 - type: Transform -- uid: 13797 - type: ExtinguisherCabinet - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform -- uid: 13798 - type: ExtinguisherCabinet - components: - - pos: 6.5,-9.5 - parent: 1 - type: Transform -- uid: 13799 - type: ExtinguisherCabinet - components: - - pos: -18.5,-12.5 - parent: 1 - type: Transform -- uid: 13800 - type: ExtinguisherCabinet - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform -- uid: 13801 - type: ExtinguisherCabinet - components: - - pos: -14.5,11.5 - parent: 1 - type: Transform -- uid: 13802 - type: ExtinguisherCabinet - components: - - pos: -10.5,23.5 - parent: 1 - type: Transform -- uid: 13803 - type: Rack - components: - - pos: -17.5,26.5 - parent: 1 - type: Transform -- uid: 13804 - type: ExtinguisherCabinet - components: - - pos: -25.5,14.5 - parent: 1 - type: Transform -- uid: 13805 - type: ExtinguisherCabinet - components: - - pos: -2.5,35.5 - parent: 1 - type: Transform -- uid: 13806 - type: GasPipeStraight - components: - - pos: -83.5,42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13807 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -83.5,33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13808 - type: GasPipeStraight - components: - - pos: -83.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13809 - type: GasPipeBend - components: - - pos: -83.5,46.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13810 - type: ExtinguisherCabinet - components: - - pos: 29.5,17.5 - parent: 1 - type: Transform -- uid: 13811 - type: ExtinguisherCabinet - components: - - pos: 18.5,0.5 - parent: 1 - type: Transform -- uid: 13812 - type: ExtinguisherCabinet - components: - - pos: 3.5,3.5 - parent: 1 - type: Transform -- uid: 13813 - type: SpawnPointSalvageSpecialist - components: - - pos: -42.5,-11.5 - parent: 1 - type: Transform -- uid: 13814 - type: SpawnPointSalvageSpecialist - components: - - pos: -40.5,-11.5 - parent: 1 - type: Transform -- uid: 13815 - type: ClothingMaskGasExplorer - components: - - pos: -37.707386,-9.338435 - parent: 1 - type: Transform -- uid: 13816 - type: CrateEmptySpawner - components: - - pos: -42.5,-13.5 - parent: 1 - type: Transform -- uid: 13817 - type: BlastDoor - components: - - pos: -35.5,-14.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13821 - type: SignalReceiver -- uid: 13818 - type: BlastDoor - components: - - pos: -35.5,-11.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13821 - type: SignalReceiver -- uid: 13819 - type: BlastDoor - components: - - pos: -31.5,-11.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13822 - type: SignalReceiver -- uid: 13820 - type: BlastDoor - components: - - pos: -31.5,-14.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13822 - type: SignalReceiver -- uid: 13821 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-9.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13818 - - port: Toggle - uid: 13817 - type: SignalTransmitter -- uid: 13822 - type: SignalButton - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-9.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13819 - - port: Toggle - uid: 13820 - type: SignalTransmitter -- uid: 13823 - type: TwoWayLever - components: - - pos: -35.5,-8.5 - parent: 1 - type: Transform - - outputs: - Left: - - port: Forward - uid: 13829 - - port: Forward - uid: 13828 - - port: Forward - uid: 13827 - - port: Forward - uid: 13826 - - port: Forward - uid: 13825 - Right: - - port: Reverse - uid: 13829 - - port: Reverse - uid: 13828 - - port: Reverse - uid: 13827 - - port: Reverse - uid: 13826 - - port: Reverse - uid: 13825 - Middle: - - port: Off - uid: 13829 - - port: Off - uid: 13828 - - port: Off - uid: 13827 - - port: Off - uid: 13826 - - port: Off - uid: 13825 - type: SignalTransmitter -- uid: 13824 - type: TwoWayLever - components: - - pos: -31.5,-8.5 - parent: 1 - type: Transform - - outputs: - Left: - - port: Forward - uid: 13834 - - port: Forward - uid: 13833 - - port: Forward - uid: 13832 - - port: Forward - uid: 13831 - - port: Forward - uid: 13830 - Right: - - port: Reverse - uid: 13834 - - port: Reverse - uid: 13833 - - port: Reverse - uid: 13832 - - port: Reverse - uid: 13831 - - port: Reverse - uid: 13830 - Middle: - - port: Off - uid: 13834 - - port: Off - uid: 13833 - - port: Off - uid: 13832 - - port: Off - uid: 13831 - - port: Off - uid: 13830 - type: SignalTransmitter -- uid: 13825 - type: ConveyorBelt - components: - - pos: -35.5,-14.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13823 - Forward: - - port: Left - uid: 13823 - Off: - - port: Middle - uid: 13823 - type: SignalReceiver -- uid: 13826 - type: ConveyorBelt - components: - - pos: -35.5,-13.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13823 - Forward: - - port: Left - uid: 13823 - Off: - - port: Middle - uid: 13823 - type: SignalReceiver -- uid: 13827 - type: ConveyorBelt - components: - - pos: -35.5,-12.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13823 - Forward: - - port: Left - uid: 13823 - Off: - - port: Middle - uid: 13823 - type: SignalReceiver -- uid: 13828 - type: ConveyorBelt - components: - - pos: -35.5,-11.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13823 - Forward: - - port: Left - uid: 13823 - Off: - - port: Middle - uid: 13823 - type: SignalReceiver -- uid: 13829 - type: ConveyorBelt - components: - - pos: -35.5,-10.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13823 - Forward: - - port: Left - uid: 13823 - Off: - - port: Middle - uid: 13823 - type: SignalReceiver -- uid: 13830 - type: ConveyorBelt - components: - - pos: -31.5,-14.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13824 - Forward: - - port: Left - uid: 13824 - Off: - - port: Middle - uid: 13824 - type: SignalReceiver -- uid: 13831 - type: ConveyorBelt - components: - - pos: -31.5,-13.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13824 - Forward: - - port: Left - uid: 13824 - Off: - - port: Middle - uid: 13824 - type: SignalReceiver -- uid: 13832 - type: ConveyorBelt - components: - - pos: -31.5,-12.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13824 - Forward: - - port: Left - uid: 13824 - Off: - - port: Middle - uid: 13824 - type: SignalReceiver -- uid: 13833 - type: ConveyorBelt - components: - - pos: -31.5,-11.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13824 - Forward: - - port: Left - uid: 13824 - Off: - - port: Middle - uid: 13824 - type: SignalReceiver -- uid: 13834 - type: ConveyorBelt - components: - - pos: -31.5,-10.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13824 - Forward: - - port: Left - uid: 13824 - Off: - - port: Middle - uid: 13824 - type: SignalReceiver -- uid: 13835 - type: FoodCakeSpaceman - components: - - pos: -4.5029564,53.587227 - parent: 1 - type: Transform -- uid: 13836 - type: GasPipeStraight - components: - - pos: -83.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13837 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -43.5,54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13838 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: -42.5,54.5 - parent: 1 - type: Transform -- uid: 13839 - type: MaintenanceToolSpawner - components: - - pos: -43.5,54.5 - parent: 1 - type: Transform -- uid: 13840 - type: MaintenanceFluffSpawner - components: - - pos: -42.5,54.5 - parent: 1 - type: Transform -- uid: 13841 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -84.5,44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13842 - type: TwoWayLever - components: - - pos: -41.5,-9.5 - parent: 1 - type: Transform - - outputs: - Left: - - port: Forward - uid: 6793 - - port: Forward - uid: 6789 - - port: Forward - uid: 7282 - Right: - - port: Reverse - uid: 6793 - - port: Reverse - uid: 6789 - - port: Reverse - uid: 7282 - Middle: - - port: Off - uid: 6793 - - port: Off - uid: 6789 - - port: Off - uid: 7282 - type: SignalTransmitter -- uid: 13843 - type: TwoWayLever - components: - - pos: -38.5,-7.5 - parent: 1 - type: Transform - - outputs: - Left: - - port: Forward - uid: 7282 - - port: Forward - uid: 6789 - - port: Forward - uid: 6793 - Right: - - port: Reverse - uid: 7282 - - port: Reverse - uid: 6789 - - port: Reverse - uid: 6793 - Middle: - - port: Off - uid: 7282 - - port: Off - uid: 6789 - - port: Off - uid: 6793 - type: SignalTransmitter -- uid: 13844 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13845 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-12.5 - parent: 1 - type: Transform -- uid: 13846 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 30.5,9.5 - parent: 1 - type: Transform -- uid: 13847 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 31.5,9.5 - parent: 1 - type: Transform -- uid: 13848 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,9.5 - parent: 1 - type: Transform -- uid: 13849 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 31.5,9.5 - parent: 1 - type: Transform -- uid: 13850 - type: Poweredlight - components: - - pos: 30.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13851 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 30.5,16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13853 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13854 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -17.5,28.5 - parent: 1 - type: Transform - - id: Med Checkpoint - type: SurveillanceCamera -- uid: 13855 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -84.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13856 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -84.5,46.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13857 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -84.5,47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13858 - type: GasPassiveVent - components: - - pos: -84.5,48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13859 - type: GasPassiveVent - components: - - pos: -83.5,50.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13860 - type: GasPassiveVent - components: - - pos: -81.5,50.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13861 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -82.5,46.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13862 - type: GasPipeBend - components: - - pos: -82.5,47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13863 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -83.5,47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13864 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -83.5,48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13865 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -83.5,49.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13866 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -81.5,49.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13867 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -81.5,48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13868 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -81.5,47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13869 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -81.5,46.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13870 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -81.5,46.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13871 - type: GasPressurePump - components: - - pos: -81.5,45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13872 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -81.5,44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13873 - type: GasPipeTJunction - components: - - pos: -80.5,46.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13874 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -80.5,45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13875 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -80.5,44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13876 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -81.5,42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13877 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -81.5,41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13878 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -81.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13879 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -81.5,43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13880 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -80.5,42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13881 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -80.5,41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13882 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -79.5,46.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13883 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -80.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13884 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -79.5,45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13885 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -79.5,44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13886 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -79.5,42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13887 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -79.5,41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13888 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -79.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13889 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -82.5,44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13890 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -82.5,42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13891 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -82.5,40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13892 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -82.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13893 - type: GasMixerFlipped - components: - - rot: -1.5707963267948966 rad - pos: -80.5,35.5 - parent: 1 - type: Transform - - inletTwoConcentration: 0.78 - inletOneConcentration: 0.22 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 13894 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -82.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13895 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -84.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13896 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -84.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13897 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -84.5,39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13898 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -84.5,41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13899 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -84.5,43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13900 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -82.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13901 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -81.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13902 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -80.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13903 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -79.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13904 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -78.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13905 - type: GasPipeTJunction - components: - - pos: -77.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13906 - type: GasPipeBend - components: - - pos: -80.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13907 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -79.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13908 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -78.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13909 - type: GasPipeTJunction - components: - - pos: -76.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13910 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -82.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13911 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -81.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13912 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -81.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13913 - type: GasPort - components: - - pos: -82.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13914 - type: GasPort - components: - - pos: -81.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13915 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -85.5,33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13916 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: -86.5,33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13917 - type: Catwalk - components: - - pos: -3.5,-20.5 - parent: 1 - type: Transform -- uid: 13918 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -81.5,33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13919 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -81.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13920 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -82.5,33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13921 - type: GasThermoMachineFreezer - components: - - pos: -77.5,39.5 - parent: 1 - type: Transform -- uid: 13922 - type: GasThermoMachineFreezer - components: - - pos: -77.5,40.5 - parent: 1 - type: Transform -- uid: 13923 - type: GasThermoMachineHeater - components: - - pos: -77.5,41.5 - parent: 1 - type: Transform -- uid: 13924 - type: StorageCanister - components: - - pos: -77.5,43.5 - parent: 1 - type: Transform -- uid: 13925 - type: StorageCanister - components: - - pos: -77.5,44.5 - parent: 1 - type: Transform -- uid: 13926 - type: StorageCanister - components: - - pos: -77.5,45.5 - parent: 1 - type: Transform -- uid: 13927 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -79.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13928 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -79.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13929 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: -77.5,42.5 - parent: 1 - type: Transform -- uid: 13930 - type: WarningWaste - components: - - rot: 1.5707963267948966 rad - pos: -87.5,44.5 - parent: 1 - type: Transform -- uid: 13931 - type: WarningCO2 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,38.5 - parent: 1 - type: Transform -- uid: 13932 - type: WarningN2O - components: - - rot: 1.5707963267948966 rad - pos: -87.5,40.5 - parent: 1 - type: Transform -- uid: 13933 - type: WarningPlasma - components: - - rot: 1.5707963267948966 rad - pos: -87.5,42.5 - parent: 1 - type: Transform -- uid: 13934 - type: WarningO2 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,34.5 - parent: 1 - type: Transform -- uid: 13935 - type: WarningN2 - components: - - rot: 1.5707963267948966 rad - pos: -87.5,36.5 - parent: 1 - type: Transform -- uid: 13936 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -76.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13937 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -77.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13938 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -75.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13939 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -75.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13940 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -74.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13941 - type: GasPipeTJunction - components: - - pos: -74.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13942 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -77.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13943 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -76.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13944 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -77.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13945 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13946 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13947 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13948 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13949 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13950 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -62.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13951 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -61.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13952 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -60.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13953 - type: GasPipeStraight - components: - - pos: -61.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13954 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -61.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13955 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13956 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -62.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13957 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -62.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13958 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -61.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13959 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -62.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13960 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -61.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13961 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -62.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13962 - type: GasVentPump - components: - - pos: -62.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13963 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -61.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13964 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -61.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13965 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13966 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -60.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13967 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -61.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13968 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -62.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13969 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -63.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13970 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -64.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13971 - type: GasPipeStraight - components: - - pos: -66.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13972 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -66.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13973 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -67.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13974 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -68.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13975 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -69.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13976 - type: GasPipeStraight - components: - - pos: -66.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13977 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13978 - type: GasPipeStraight - components: - - pos: -67.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13979 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -68.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13980 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13981 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -70.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13982 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -70.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13983 - type: GasPipeBend - components: - - pos: -66.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13984 - type: GasPipeBend - components: - - pos: -67.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13985 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -67.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13986 - type: GasPipeStraight - components: - - pos: -61.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13987 - type: GasPipeStraight - components: - - pos: -61.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13988 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -62.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13989 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -63.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13990 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -64.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13991 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -65.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13992 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -66.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13993 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -67.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13994 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -68.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13995 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13996 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -60.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13997 - type: GasPipeBend - components: - - pos: -61.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13998 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -70.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13999 - type: Windoor - components: - - pos: -69.5,43.5 - parent: 1 - type: Transform -- uid: 14000 - type: TableWood - components: - - pos: -70.5,45.5 - parent: 1 - type: Transform -- uid: 14001 - type: TableWood - components: - - pos: -69.5,45.5 - parent: 1 - type: Transform -- uid: 14002 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -74.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14003 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -75.5,55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14004 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -67.5,53.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14005 - type: CableApcExtension - components: - - pos: -72.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14006 - type: CableApcExtension - components: - - pos: -73.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14007 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,54.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14008 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -61.5,18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14009 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14010 - type: WallSolid - components: - - pos: -68.5,9.5 - parent: 1 - type: Transform -- uid: 14011 - type: AirlockMaint - components: - - rot: -1.5707963267948966 rad - pos: -63.5,15.5 - parent: 1 - type: Transform -- uid: 14012 - type: GasPipeTJunction - components: - - pos: -73.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14013 - type: GasPipeStraight - components: - - pos: -73.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14014 - type: GasPipeStraight - components: - - pos: -73.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14015 - type: GasPipeStraight - components: - - pos: -73.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14016 - type: GasPipeStraight - components: - - pos: -73.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14017 - type: GasPipeStraight - components: - - pos: -74.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14018 - type: GasPipeStraight - components: - - pos: -74.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14019 - type: GasPipeStraight - components: - - pos: -74.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14020 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -73.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14021 - type: GasPipeBend - components: - - pos: -72.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14022 - type: GasPipeBend - components: - - pos: -71.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14023 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -72.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14024 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -71.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14025 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -72.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14026 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -71.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14027 - type: GasPipeStraight - components: - - pos: -70.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14028 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -70.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14029 - type: GasPipeTJunction - components: - - pos: -70.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14030 - type: GasPipeTJunction - components: - - pos: -69.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14031 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -68.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14032 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -70.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14033 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -70.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14034 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -70.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14035 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -69.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14036 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -68.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14037 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -69.5,32.5 - parent: 1 - type: Transform -- uid: 14038 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -69.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14039 - type: CableApcExtension - components: - - pos: -70.5,32.5 - parent: 1 - type: Transform -- uid: 14040 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -70.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14041 - type: CableApcExtension - components: - - pos: -70.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14042 - type: CableApcExtension - components: - - pos: -70.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14043 - type: CableApcExtension - components: - - pos: -70.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14044 - type: CableApcExtension - components: - - pos: -70.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14045 - type: GasVentScrubber - components: - - pos: -68.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14046 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -77.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14047 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -76.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14048 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -74.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14049 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -73.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14050 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -74.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14051 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -73.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14052 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -74.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14053 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -73.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14054 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -74.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14055 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -73.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14056 - type: GasPipeStraight - components: - - pos: -74.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14057 - type: GasPipeStraight - components: - - pos: -74.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14058 - type: GasPipeStraight - components: - - pos: -74.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14059 - type: GasPipeStraight - components: - - pos: -74.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14060 - type: GasPipeStraight - components: - - pos: -73.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14061 - type: GasPipeStraight - components: - - pos: -73.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14062 - type: GasPipeStraight - components: - - pos: -73.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14063 - type: GasPipeStraight - components: - - pos: -73.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14064 - type: GasPipeStraight - components: - - pos: -73.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14065 - type: GasPipeStraight - components: - - pos: -74.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14066 - type: GasPipeStraight - components: - - pos: -74.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14067 - type: GasPipeStraight - components: - - pos: -74.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14068 - type: GasPipeStraight - components: - - pos: -73.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14069 - type: GasPipeStraight - components: - - pos: -73.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14070 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -73.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14071 - type: GasPipeStraight - components: - - pos: -73.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14072 - type: GasPipeStraight - components: - - pos: -73.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14073 - type: GasPipeStraight - components: - - pos: -73.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14074 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -72.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14075 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -72.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14076 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -74.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14077 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -75.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14078 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -75.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14079 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -74.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14080 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -74.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14081 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -74.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14082 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -74.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14083 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -73.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14084 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -72.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14085 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -72.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14086 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -71.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14087 - type: GasPipeTJunction - components: - - pos: -70.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14088 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -70.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14089 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -70.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14090 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14091 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -68.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14092 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -67.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14093 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14094 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -68.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14095 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -67.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14096 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -71.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14097 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -71.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14098 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -70.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14099 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14100 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -68.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14101 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -67.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14102 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14103 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -68.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14104 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -67.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14105 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -71.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14106 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -71.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14107 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -70.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14108 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -71.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14109 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -66.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14110 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -66.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14111 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -66.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14112 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -71.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14113 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -71.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14114 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -66.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14115 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -73.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14116 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -74.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14117 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -67.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14118 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -66.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14119 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -65.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14120 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -67.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14121 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -66.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14122 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -65.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14123 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -64.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14124 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14125 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14126 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14127 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14128 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14129 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14130 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14131 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14132 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -64.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14133 - type: GasPipeBend - components: - - pos: -64.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14134 - type: GasPipeBend - components: - - pos: -63.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14135 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -63.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14136 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -64.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14137 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -64.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14138 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -63.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14139 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -63.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14140 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -62.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14141 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -61.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14142 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -60.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14143 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14144 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -62.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14145 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -61.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14146 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -60.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14147 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14148 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -65.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14149 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -65.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14150 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -76.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14151 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -77.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14152 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -78.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14153 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -79.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14154 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -76.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14155 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -77.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14156 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -78.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14157 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -79.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14158 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -80.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14159 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -80.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14160 - type: GasVentScrubber - components: - - pos: -61.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14161 - type: GasVentPump - components: - - pos: -60.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14162 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -61.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14163 - type: ClothingShoesBootsMag - components: - - pos: -77.410675,42.617188 - parent: 1 - type: Transform -- uid: 14164 - type: WelderIndustrial - components: - - pos: -83.38411,32.65258 - parent: 1 - type: Transform -- uid: 14165 - type: ToolboxMechanicalFilled - components: - - pos: -82.618484,32.59008 - parent: 1 - type: Transform -- uid: 14166 - type: ToolboxElectricalFilled - components: - - pos: -82.493484,31.996332 - parent: 1 - type: Transform -- uid: 14167 - type: InflatableWallStack1 - components: - - pos: -82.57161,31.449457 - parent: 1 - type: Transform -- uid: 14168 - type: InflatableWallStack1 - components: - - pos: -82.50911,31.386957 - parent: 1 - type: Transform -- uid: 14169 - type: InflatableWallStack1 - components: - - pos: -82.44661,31.246332 - parent: 1 - type: Transform -- uid: 14170 - type: OxygenCanister - components: - - pos: -77.5,49.5 - parent: 1 - type: Transform -- uid: 14171 - type: IntercomEngineering - components: - - rot: 1.5707963267948966 rad - pos: -59.5,34.5 - parent: 1 - type: Transform -- uid: 14172 - type: IntercomEngineering - components: - - rot: 1.5707963267948966 rad - pos: -68.5,26.5 - parent: 1 - type: Transform -- uid: 14173 - type: IntercomEngineering - components: - - pos: -81.5,28.5 - parent: 1 - type: Transform -- uid: 14174 - type: IntercomEngineering - components: - - rot: -1.5707963267948966 rad - pos: -75.5,32.5 - parent: 1 - type: Transform -- uid: 14175 - type: IntercomEngineering - components: - - rot: 3.141592653589793 rad - pos: -65.5,18.5 - parent: 1 - type: Transform -- uid: 14176 - type: IntercomEngineering - components: - - rot: -1.5707963267948966 rad - pos: -67.5,16.5 - parent: 1 - type: Transform -- uid: 14177 - type: IntercomEngineering - components: - - rot: -1.5707963267948966 rad - pos: -72.5,29.5 - parent: 1 - type: Transform -- uid: 14178 - type: SpawnMobBandito - components: - - pos: -8.5,-0.5 - parent: 1 - type: Transform -- uid: 14179 - type: SpawnMobRaccoonMorticia - components: - - pos: -38.5,-4.5 - parent: 1 - type: Transform -- uid: 14180 - type: SpawnMobCatRuntime - components: - - pos: 16.5,30.5 - parent: 1 - type: Transform -- uid: 14181 - type: SpawnMobWalter - components: - - pos: -2.5,22.5 - parent: 1 - type: Transform -- uid: 14182 - type: SpawnMobPossumMorty - components: - - pos: 14.5,-1.5 - parent: 1 - type: Transform -- uid: 14183 - type: SpawnMobMcGriff - components: - - pos: -46.5,59.5 - parent: 1 - type: Transform -- uid: 14184 - type: SpawnMobAlexander - components: - - pos: -35.5,46.5 - parent: 1 - type: Transform -- uid: 14185 - type: SpawnMobSlothPaperwork - components: - - pos: -24.5,12.5 - parent: 1 - type: Transform -- uid: 14186 - type: MouseTimedSpawner - components: - - pos: 9.5,9.5 - parent: 1 - type: Transform -- uid: 14187 - type: MouseTimedSpawner - components: - - pos: 7.5,46.5 - parent: 1 - type: Transform -- uid: 14188 - type: MouseTimedSpawner - components: - - pos: -44.5,14.5 - parent: 1 - type: Transform -- uid: 14189 - type: Firelock - components: - - pos: -73.5,37.5 - parent: 1 - type: Transform -- uid: 14190 - type: Firelock - components: - - pos: -64.5,47.5 - parent: 1 - type: Transform -- uid: 14191 - type: Firelock - components: - - pos: -64.5,47.5 - parent: 1 - type: Transform -- uid: 14192 - type: Firelock - components: - - pos: -64.5,48.5 - parent: 1 - type: Transform -- uid: 14193 - type: Firelock - components: - - pos: -67.5,38.5 - parent: 1 - type: Transform -- uid: 14194 - type: Firelock - components: - - pos: -66.5,38.5 - parent: 1 - type: Transform -- uid: 14195 - type: Firelock - components: - - pos: -62.5,17.5 - parent: 1 - type: Transform -- uid: 14196 - type: Firelock - components: - - pos: -62.5,16.5 - parent: 1 - type: Transform -- uid: 14197 - type: PlasmaTank - components: - - pos: -77.7388,42.76258 - parent: 1 - type: Transform - - nextAttack: 36.3192797 - type: MeleeWeapon -- uid: 14198 - type: YellowOxygenTank - components: - - pos: -77.3013,42.445312 - parent: 1 - type: Transform - - nextAttack: 28.9193093 - type: MeleeWeapon -- uid: 14199 - type: NitrogenTank - components: - - pos: -77.535675,42.554688 - parent: 1 - type: Transform - - nextAttack: 33.8359563 - type: MeleeWeapon -- uid: 14200 - type: Paper - components: - - name: hastily scribbled note - type: MetaData - - pos: -77.6763,42.345108 - parent: 1 - type: Transform - - content: > - Allan, please remember to fill these tanks. - type: Paper -- uid: 14201 - type: PaperOffice - components: - - pos: -69.47335,16.594507 - parent: 1 - type: Transform -- uid: 14202 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -70.5,16.5 - parent: 1 - type: Transform -- uid: 14203 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -68.5,16.5 - parent: 1 - type: Transform -- uid: 14204 - type: ChairOfficeDark - components: - - pos: -65.5,26.5 - parent: 1 - type: Transform -- uid: 14205 - type: PaperOffice - components: - - pos: -69.582726,16.594507 - parent: 1 - type: Transform -- uid: 14206 - type: PaperOffice - components: - - pos: -69.645226,16.594507 - parent: 1 - type: Transform -- uid: 14207 - type: PaperOffice - components: - - pos: -69.363976,16.594507 - parent: 1 - type: Transform -- uid: 14208 - type: BoxFolderYellow - components: - - pos: -69.59835,16.219507 - parent: 1 - type: Transform -- uid: 14209 - type: BoxFolderYellow - components: - - pos: -69.332726,16.235132 - parent: 1 - type: Transform -- uid: 14210 - type: Lamp - components: - - pos: -69.53585,15.969507 - parent: 1 - type: Transform -- uid: 14211 - type: DrinkWhiskeyBottleFull - components: - - pos: -72.32807,15.938257 - parent: 1 - type: Transform -- uid: 14212 - type: DrinkWhiskeyGlass - components: - - pos: -72.81245,15.797632 - parent: 1 - type: Transform -- uid: 14213 - type: CarpetOrange - components: - - pos: -70.5,15.5 - parent: 1 - type: Transform -- uid: 14214 - type: CarpetOrange - components: - - pos: -70.5,16.5 - parent: 1 - type: Transform -- uid: 14215 - type: CarpetOrange - components: - - pos: -70.5,17.5 - parent: 1 - type: Transform -- uid: 14216 - type: CarpetOrange - components: - - pos: -69.5,15.5 - parent: 1 - type: Transform -- uid: 14217 - type: CarpetOrange - components: - - pos: -69.5,16.5 - parent: 1 - type: Transform -- uid: 14218 - type: CarpetOrange - components: - - pos: -69.5,17.5 - parent: 1 - type: Transform -- uid: 14219 - type: CarpetOrange - components: - - pos: -68.5,15.5 - parent: 1 - type: Transform -- uid: 14220 - type: CarpetOrange - components: - - pos: -68.5,16.5 - parent: 1 - type: Transform -- uid: 14221 - type: CarpetOrange - components: - - pos: -68.5,17.5 - parent: 1 - type: Transform -- uid: 14222 - type: CarpetOrange - components: - - pos: -73.5,15.5 - parent: 1 - type: Transform -- uid: 14223 - type: CarpetOrange - components: - - pos: -72.5,15.5 - parent: 1 - type: Transform -- uid: 14224 - type: Recycler - components: - - rot: 3.141592653589793 rad - pos: -73.5,55.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 14233 - Forward: - - port: Left - uid: 14233 - Off: - - port: Middle - uid: 14233 - type: SignalReceiver -- uid: 14225 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -73.5,53.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 14233 - Forward: - - port: Left - uid: 14233 - Off: - - port: Middle - uid: 14233 - type: SignalReceiver -- uid: 14226 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -73.5,54.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 14233 - Forward: - - port: Left - uid: 14233 - Off: - - port: Middle - uid: 14233 - type: SignalReceiver -- uid: 14227 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -73.5,55.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 14233 - Forward: - - port: Left - uid: 14233 - Off: - - port: Middle - uid: 14233 - type: SignalReceiver -- uid: 14228 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -73.5,56.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 14233 - Forward: - - port: Left - uid: 14233 - Off: - - port: Middle - uid: 14233 - type: SignalReceiver -- uid: 14229 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -73.5,57.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 14233 - Forward: - - port: Left - uid: 14233 - Off: - - port: Middle - uid: 14233 - type: SignalReceiver -- uid: 14230 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -73.5,58.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 14233 - Forward: - - port: Left - uid: 14233 - Off: - - port: Middle - uid: 14233 - type: SignalReceiver -- uid: 14231 - type: CableApcExtension - components: - - pos: -73.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14232 - type: CableApcExtension - components: - - pos: -73.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14233 - type: TwoWayLever - components: - - pos: -70.5,55.5 - parent: 1 - type: Transform - - outputs: - Left: - - port: Forward - uid: 14225 - - port: Forward - uid: 14226 - - port: Forward - uid: 14224 - - port: Forward - uid: 14227 - - port: Forward - uid: 14228 - - port: Forward - uid: 14229 - - port: Forward - uid: 14230 - Right: - - port: Reverse - uid: 14225 - - port: Reverse - uid: 14226 - - port: Reverse - uid: 14224 - - port: Reverse - uid: 14227 - - port: Reverse - uid: 14228 - - port: Reverse - uid: 14229 - - port: Reverse - uid: 14230 - Middle: - - port: Off - uid: 14225 - - port: Off - uid: 14226 - - port: Off - uid: 14224 - - port: Off - uid: 14227 - - port: Off - uid: 14228 - - port: Off - uid: 14229 - - port: Off - uid: 14230 - type: SignalTransmitter -- uid: 14234 - type: ClosetMaintenanceFilledRandom - components: - - pos: -69.5,56.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14235 - type: ClosetEmergencyFilledRandom - components: - - pos: -70.5,56.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14236 - type: ClosetEmergencyFilledRandom - components: - - pos: -60.5,48.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14237 - type: ClosetFireFilled - components: - - pos: -61.5,48.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14238 - type: ClosetMaintenanceFilledRandom - components: - - pos: -62.5,48.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14239 - type: Table - components: - - pos: -73.5,51.5 - parent: 1 - type: Transform -- uid: 14240 - type: Table - components: - - pos: -72.5,51.5 - parent: 1 - type: Transform -- uid: 14241 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: -71.5,51.5 - parent: 1 - type: Transform -- uid: 14242 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -69.5,51.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14243 - type: ClosetFireFilled - components: - - pos: -66.5,39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14244 - type: ClosetEmergencyFilledRandom - components: - - pos: -66.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14245 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -66.5,41.5 - parent: 1 - type: Transform -- uid: 14246 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -66.5,42.5 - parent: 1 - type: Transform -- uid: 14247 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -66.5,43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14248 - type: Chair - components: - - pos: -63.5,48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14249 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -65.5,50.5 - parent: 1 - type: Transform -- uid: 14250 - type: Catwalk - components: - - pos: -67.5,50.5 - parent: 1 - type: Transform -- uid: 14251 - type: Catwalk - components: - - pos: -67.5,54.5 - parent: 1 - type: Transform -- uid: 14252 - type: Catwalk - components: - - pos: -67.5,56.5 - parent: 1 - type: Transform -- uid: 14253 - type: Catwalk - components: - - pos: -66.5,57.5 - parent: 1 - type: Transform -- uid: 14254 - type: Catwalk - components: - - pos: -75.5,52.5 - parent: 1 - type: Transform -- uid: 14255 - type: Catwalk - components: - - pos: -75.5,50.5 - parent: 1 - type: Transform -- uid: 14256 - type: Catwalk - components: - - pos: -74.5,47.5 - parent: 1 - type: Transform -- uid: 14257 - type: Catwalk - components: - - pos: -74.5,46.5 - parent: 1 - type: Transform -- uid: 14258 - type: Catwalk - components: - - pos: -75.5,45.5 - parent: 1 - type: Transform -- uid: 14259 - type: Catwalk - components: - - pos: -75.5,42.5 - parent: 1 - type: Transform -- uid: 14260 - type: Catwalk - components: - - pos: -74.5,41.5 - parent: 1 - type: Transform -- uid: 14261 - type: Catwalk - components: - - pos: -75.5,43.5 - parent: 1 - type: Transform -- uid: 14262 - type: Catwalk - components: - - pos: -74.5,44.5 - parent: 1 - type: Transform -- uid: 14263 - type: Catwalk - components: - - pos: -75.5,40.5 - parent: 1 - type: Transform -- uid: 14264 - type: Catwalk - components: - - pos: -75.5,38.5 - parent: 1 - type: Transform -- uid: 14265 - type: Catwalk - components: - - pos: -74.5,38.5 - parent: 1 - type: Transform -- uid: 14266 - type: Catwalk - components: - - pos: -71.5,37.5 - parent: 1 - type: Transform -- uid: 14267 - type: Catwalk - components: - - pos: -67.5,37.5 - parent: 1 - type: Transform -- uid: 14268 - type: Catwalk - components: - - pos: -67.5,36.5 - parent: 1 - type: Transform -- uid: 14269 - type: Catwalk - components: - - pos: -65.5,36.5 - parent: 1 - type: Transform -- uid: 14270 - type: Catwalk - components: - - pos: -61.5,35.5 - parent: 1 - type: Transform -- uid: 14271 - type: Catwalk - components: - - pos: -66.5,40.5 - parent: 1 - type: Transform -- uid: 14272 - type: Catwalk - components: - - pos: -67.5,41.5 - parent: 1 - type: Transform -- uid: 14273 - type: Catwalk - components: - - pos: -66.5,42.5 - parent: 1 - type: Transform -- uid: 14274 - type: Catwalk - components: - - pos: -67.5,43.5 - parent: 1 - type: Transform -- uid: 14275 - type: Catwalk - components: - - pos: -67.5,44.5 - parent: 1 - type: Transform -- uid: 14276 - type: Catwalk - components: - - pos: -63.5,47.5 - parent: 1 - type: Transform -- uid: 14277 - type: Catwalk - components: - - pos: -62.5,47.5 - parent: 1 - type: Transform -- uid: 14278 - type: Catwalk - components: - - pos: -61.5,48.5 - parent: 1 - type: Transform -- uid: 14279 - type: VendingMachineDetDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -72.5,49.5 - parent: 1 - type: Transform -- uid: 14280 - type: SpawnPointDetective - components: - - pos: -70.5,48.5 - parent: 1 - type: Transform -- uid: 14281 - type: LockerDetectiveFilled - components: - - pos: -69.5,49.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14282 - type: TableWood - components: - - pos: -71.5,49.5 - parent: 1 - type: Transform -- uid: 14283 - type: TableWood - components: - - pos: -70.5,49.5 - parent: 1 - type: Transform -- uid: 14284 - type: DrinkWhiskeyBottleFull - components: - - pos: -72.70246,47.903915 - parent: 1 - type: Transform -- uid: 14285 - type: DrinkWhiskeyGlass - components: - - pos: -72.34309,47.685165 - parent: 1 - type: Transform -- uid: 14286 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -72.5,32.5 - parent: 1 - type: Transform - - devices: - - 10685 - - 10684 - - 10688 - - 10689 - - 14300 - - 14115 - - 14116 - - 14038 - - 14045 - - 14148 - - 14149 - - 14160 - - 14161 - - 14040 - type: DeviceList -- uid: 14287 - type: DrinkBottleWhiskey - components: - - pos: -72.49934,47.622665 - parent: 1 - type: Transform -- uid: 14288 - type: TableWood - components: - - pos: -72.5,47.5 - parent: 1 - type: Transform -- uid: 14289 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -70.5,48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14290 - type: Lamp - components: - - pos: -71.492615,49.83911 - parent: 1 - type: Transform -- uid: 14291 - type: PaperOffice - components: - - pos: -70.305115,49.635986 - parent: 1 - type: Transform -- uid: 14292 - type: PaperOffice - components: - - pos: -70.430115,49.635986 - parent: 1 - type: Transform -- uid: 14293 - type: PaperOffice - components: - - pos: -70.492615,49.635986 - parent: 1 - type: Transform -- uid: 14294 - type: PaperOffice - components: - - pos: -70.492615,49.635986 - parent: 1 - type: Transform -- uid: 14295 - type: BoxFolderRed - components: - - pos: -70.85199,49.55786 - parent: 1 - type: Transform -- uid: 14296 - type: VendingMachineLawDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -64.5,38.5 - parent: 1 - type: Transform -- uid: 14297 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -76.5,38.5 - parent: 1 - type: Transform - - devices: - - 10676 - - 10675 - - 10674 - - 10673 - - 10672 - - 10671 - - 10670 - - 10669 - - 10668 - - 10667 - - 10666 - - 14046 - - 14047 - type: DeviceList -- uid: 14298 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -76.5,37.5 - parent: 1 - type: Transform - - devices: - - 10676 - - 10675 - - 10674 - - 10673 - - 10672 - - 10671 - - 10670 - - 10669 - - 10668 - - 10667 - - 10666 - type: DeviceList -- uid: 14299 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -72.5,31.5 - parent: 1 - type: Transform - - devices: - - 10685 - - 10684 - - 10688 - - 10689 - - 14300 - type: DeviceList -- uid: 14300 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -61.5,32.5 - parent: 1 - type: Transform -- uid: 14301 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -75.5,20.5 - parent: 1 - type: Transform - - devices: - - 14304 - - 14302 - - 10686 - - 10687 - - 14303 - - 10684 - - 10685 - - 10682 - - 10683 - - 14114 - - 14109 - - 14111 - - 14110 - - 14112 - - 14113 - - 14116 - - 14115 - - 14159 - - 14158 - type: DeviceList -- uid: 14302 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: -72.5,21.5 - parent: 1 - type: Transform -- uid: 14303 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: -77.5,25.5 - parent: 1 - type: Transform -- uid: 14304 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: -74.5,18.5 - parent: 1 - type: Transform -- uid: 14305 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -72.5,25.5 - parent: 1 - type: Transform - - devices: - - 14303 - - 10686 - - 10687 - - 10684 - - 10685 - type: DeviceList -- uid: 14306 - type: FireAlarm - components: - - pos: -80.5,28.5 - parent: 1 - type: Transform - - devices: - - 14303 - - 10683 - - 10682 - type: DeviceList -- uid: 14307 - type: WeldingFuelTankFull - components: - - pos: -74.5,49.5 - parent: 1 - type: Transform -- uid: 14308 - type: WaterTankFull - components: - - pos: -74.5,48.5 - parent: 1 - type: Transform -- uid: 14309 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -76.5,56.5 - parent: 1 - type: Transform -- uid: 14310 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -76.5,55.5 - parent: 1 - type: Transform -- uid: 14311 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -77.5,56.5 - parent: 1 - type: Transform -- uid: 14312 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -77.5,55.5 - parent: 1 - type: Transform -- uid: 14313 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: -77.5,53.5 - parent: 1 - type: Transform -- uid: 14314 - type: ClosetMaintenanceFilledRandom - components: - - pos: -74.5,47.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14315 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -74.5,46.5 - parent: 1 - type: Transform -- uid: 14316 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: -61.5,35.5 - parent: 1 - type: Transform -- uid: 14317 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: -67.5,36.5 - parent: 1 - type: Transform -- uid: 14318 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -75.5,37.5 - parent: 1 - type: Transform -- uid: 14319 - type: MaintenanceWeaponSpawner - components: - - pos: -74.5,46.5 - parent: 1 - type: Transform -- uid: 14320 - type: MaintenanceToolSpawner - components: - - pos: -66.5,42.5 - parent: 1 - type: Transform -- uid: 14321 - type: MaintenanceFluffSpawner - components: - - pos: -66.5,41.5 - parent: 1 - type: Transform -- uid: 14322 - type: MaintenanceFluffSpawner - components: - - pos: -66.5,43.5 - parent: 1 - type: Transform -- uid: 14323 - type: MaintenanceToolSpawner - components: - - pos: -63.5,48.5 - parent: 1 - type: Transform -- uid: 14324 - type: MaintenanceToolSpawner - components: - - pos: -72.5,51.5 - parent: 1 - type: Transform -- uid: 14325 - type: MaintenanceWeaponSpawner - components: - - pos: -69.5,51.5 - parent: 1 - type: Transform -- uid: 14326 - type: MaintenanceFluffSpawner - components: - - pos: -73.5,51.5 - parent: 1 - type: Transform -- uid: 14327 - type: MaintenanceFluffSpawner - components: - - pos: -71.5,51.5 - parent: 1 - type: Transform -- uid: 14328 - type: MaintenanceFluffSpawner - components: - - pos: -75.5,37.5 - parent: 1 - type: Transform -- uid: 14329 - type: MaintenanceToolSpawner - components: - - pos: -61.5,35.5 - parent: 1 - type: Transform -- uid: 14330 - type: MaintenanceWeaponSpawner - components: - - pos: -67.5,36.5 - parent: 1 - type: Transform -- uid: 14331 - type: Railing - components: - - pos: -75.5,43.5 - parent: 1 - type: Transform -- uid: 14332 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -75.5,39.5 - parent: 1 - type: Transform -- uid: 14333 - type: OxygenCanister - components: - - pos: -75.5,40.5 - parent: 1 - type: Transform -- uid: 14334 - type: NitrogenCanister - components: - - pos: -75.5,41.5 - parent: 1 - type: Transform -- uid: 14335 - type: AirCanister - components: - - pos: -75.5,42.5 - parent: 1 - type: Transform -- uid: 14336 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -75.5,55.5 - parent: 1 - type: Transform -- uid: 14337 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -75.5,56.5 - parent: 1 - type: Transform -- uid: 14338 - type: ClosetBase - components: - - pos: -75.5,56.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14339 - type: AltarConvertRed - components: - - pos: -75.5,55.5 - parent: 1 - type: Transform -- uid: 14340 - type: Bed - components: - - pos: -77.5,56.5 - parent: 1 - type: Transform -- uid: 14341 - type: BedsheetBlack - components: - - rot: 3.141592653589793 rad - pos: -77.5,56.5 - parent: 1 - type: Transform -- uid: 14342 - type: Handcuffs - components: - - pos: -77.25823,55.506813 - parent: 1 - type: Transform -- uid: 14343 - type: SignBio - components: - - pos: -76.5,57.5 - parent: 1 - type: Transform -- uid: 14344 - type: RandomPainting - components: - - pos: -78.5,55.5 - parent: 1 - type: Transform -- uid: 14345 - type: ClothingMaskMuzzle - components: - - pos: -76.77386,55.788063 - parent: 1 - type: Transform -- uid: 14346 - type: ClothingEyesBlindfold - components: - - pos: -76.41448,56.209938 - parent: 1 - type: Transform -- uid: 14347 - type: RandomPosterContraband - components: - - pos: -74.5,54.5 - parent: 1 - type: Transform -- uid: 14348 - type: RandomPosterAny - components: - - pos: -68.5,55.5 - parent: 1 - type: Transform -- uid: 14349 - type: RandomPosterAny - components: - - pos: -68.5,43.5 - parent: 1 - type: Transform -- uid: 14350 - type: RandomPosterAny - components: - - pos: -73.5,41.5 - parent: 1 - type: Transform -- uid: 14351 - type: RandomPosterLegit - components: - - pos: -62.5,37.5 - parent: 1 - type: Transform -- uid: 14352 - type: RandomPosterLegit - components: - - pos: -59.5,45.5 - parent: 1 - type: Transform -- uid: 14353 - type: RandomPosterLegit - components: - - pos: -59.5,28.5 - parent: 1 - type: Transform -- uid: 14354 - type: RandomPosterAny - components: - - pos: -65.5,13.5 - parent: 1 - type: Transform -- uid: 14355 - type: RandomPosterLegit - components: - - pos: -59.5,8.5 - parent: 1 - type: Transform -- uid: 14356 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -62.5,13.5 - parent: 1 - type: Transform -- uid: 14357 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -62.5,12.5 - parent: 1 - type: Transform -- uid: 14358 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -62.5,11.5 - parent: 1 - type: Transform -- uid: 14359 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -62.5,10.5 - parent: 1 - type: Transform -- uid: 14360 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: -62.5,14.5 - parent: 1 - type: Transform -- uid: 14361 - type: ClothingHandsGlovesBoxingBlue - components: - - pos: -60.445595,14.632732 - parent: 1 - type: Transform -- uid: 14362 - type: ClothingHandsGlovesBoxingGreen - components: - - pos: -60.42997,10.429607 - parent: 1 - type: Transform -- uid: 14363 - type: ClothingHandsGlovesBoxingRed - components: - - pos: -62.33622,10.476482 - parent: 1 - type: Transform -- uid: 14364 - type: ClothingHandsGlovesBoxingYellow - components: - - pos: -62.30497,14.523357 - parent: 1 - type: Transform -- uid: 14365 - type: UniformShortsRed - components: - - pos: -64.695595,14.460857 - parent: 1 - type: Transform -- uid: 14366 - type: UniformShortsRed - components: - - pos: -64.24247,14.460857 - parent: 1 - type: Transform -- uid: 14367 - type: UniformShortsRedWithTop - components: - - pos: -64.601845,14.679607 - parent: 1 - type: Transform -- uid: 14368 - type: UniformShortsRedWithTop - components: - - pos: -64.42997,14.679607 - parent: 1 - type: Transform -- uid: 14369 - type: SyringeEphedrine - components: - - pos: -60.77372,10.617107 - parent: 1 - type: Transform -- uid: 14370 - type: RandomSpawner - components: - - pos: -72.5,54.5 - parent: 1 - type: Transform -- uid: 14371 - type: RandomSpawner - components: - - pos: -69.5,55.5 - parent: 1 - type: Transform -- uid: 14372 - type: RandomSpawner - components: - - pos: -70.5,51.5 - parent: 1 - type: Transform -- uid: 14373 - type: RandomSpawner - components: - - pos: -75.5,52.5 - parent: 1 - type: Transform -- uid: 14374 - type: RandomSpawner - components: - - pos: -75.5,47.5 - parent: 1 - type: Transform -- uid: 14375 - type: RandomSpawner - components: - - pos: -74.5,44.5 - parent: 1 - type: Transform -- uid: 14376 - type: RandomSpawner - components: - - pos: -74.5,39.5 - parent: 1 - type: Transform -- uid: 14377 - type: RandomSpawner - components: - - pos: -75.5,38.5 - parent: 1 - type: Transform -- uid: 14378 - type: RandomSpawner - components: - - pos: -69.5,41.5 - parent: 1 - type: Transform -- uid: 14379 - type: RandomSpawner - components: - - pos: -71.5,40.5 - parent: 1 - type: Transform -- uid: 14380 - type: RandomSpawner - components: - - pos: -71.5,44.5 - parent: 1 - type: Transform -- uid: 14381 - type: RandomSpawner - components: - - pos: -66.5,46.5 - parent: 1 - type: Transform -- uid: 14382 - type: RandomSpawner - components: - - pos: -62.5,47.5 - parent: 1 - type: Transform -- uid: 14383 - type: RandomSpawner - components: - - pos: -67.5,50.5 - parent: 1 - type: Transform -- uid: 14384 - type: RandomSpawner - components: - - pos: -67.5,55.5 - parent: 1 - type: Transform -- uid: 14385 - type: RandomSpawner - components: - - pos: -67.5,41.5 - parent: 1 - type: Transform -- uid: 14386 - type: RandomSpawner - components: - - pos: -66.5,38.5 - parent: 1 - type: Transform -- uid: 14387 - type: RandomSpawner - components: - - pos: -68.5,37.5 - parent: 1 - type: Transform -- uid: 14388 - type: RandomSpawner - components: - - pos: -62.5,36.5 - parent: 1 - type: Transform -- uid: 14389 - type: RandomSpawner - components: - - pos: -60.5,38.5 - parent: 1 - type: Transform -- uid: 14390 - type: RandomSpawner - components: - - pos: -63.5,40.5 - parent: 1 - type: Transform -- uid: 14391 - type: RandomSpawner - components: - - pos: -61.5,44.5 - parent: 1 - type: Transform -- uid: 14392 - type: RandomSpawner - components: - - pos: -63.5,44.5 - parent: 1 - type: Transform -- uid: 14393 - type: SpawnMobCatRuntime - components: - - pos: -71.5,17.5 - parent: 1 - type: Transform -- uid: 14394 - type: RandomSpawner - components: - - pos: -80.5,30.5 - parent: 1 - type: Transform -- uid: 14395 - type: RandomSpawner - components: - - pos: -77.5,32.5 - parent: 1 - type: Transform -- uid: 14396 - type: RandomSpawner - components: - - pos: -80.5,33.5 - parent: 1 - type: Transform -- uid: 14397 - type: RandomSpawner - components: - - pos: -78.5,37.5 - parent: 1 - type: Transform -- uid: 14398 - type: RandomSpawner - components: - - pos: -83.5,40.5 - parent: 1 - type: Transform -- uid: 14399 - type: RandomSpawner - components: - - pos: -80.5,44.5 - parent: 1 - type: Transform -- uid: 14400 - type: RandomSpawner - components: - - pos: -82.5,46.5 - parent: 1 - type: Transform -- uid: 14401 - type: RandomSpawner - components: - - pos: -80.5,40.5 - parent: 1 - type: Transform -- uid: 14402 - type: RandomSpawner - components: - - pos: -84.5,35.5 - parent: 1 - type: Transform -- uid: 14403 - type: RandomSpawner - components: - - pos: -74.5,35.5 - parent: 1 - type: Transform -- uid: 14404 - type: RandomSpawner - components: - - pos: -71.5,34.5 - parent: 1 - type: Transform -- uid: 14405 - type: RandomSpawner - components: - - pos: -66.5,33.5 - parent: 1 - type: Transform -- uid: 14406 - type: RandomSpawner - components: - - pos: -64.5,34.5 - parent: 1 - type: Transform -- uid: 14407 - type: RandomSpawner - components: - - pos: -64.5,27.5 - parent: 1 - type: Transform -- uid: 14408 - type: RandomSpawner - components: - - pos: -66.5,29.5 - parent: 1 - type: Transform -- uid: 14409 - type: MaintenanceFluffSpawner - components: - - pos: -69.5,26.5 - parent: 1 - type: Transform -- uid: 14410 - type: RandomSpawner - components: - - pos: -70.5,29.5 - parent: 1 - type: Transform -- uid: 14411 - type: RandomSpawner - components: - - pos: -73.5,31.5 - parent: 1 - type: Transform -- uid: 14412 - type: RandomSpawner - components: - - pos: -74.5,26.5 - parent: 1 - type: Transform -- uid: 14413 - type: RandomSpawner - components: - - pos: -73.5,22.5 - parent: 1 - type: Transform -- uid: 14414 - type: RandomSpawner - components: - - pos: -74.5,19.5 - parent: 1 - type: Transform -- uid: 14415 - type: RandomSpawner - components: - - pos: -70.5,19.5 - parent: 1 - type: Transform -- uid: 14416 - type: RandomSpawner - components: - - pos: -67.5,23.5 - parent: 1 - type: Transform -- uid: 14417 - type: RandomSpawner - components: - - pos: -67.5,20.5 - parent: 1 - type: Transform -- uid: 14418 - type: RandomSpawner - components: - - pos: -64.5,21.5 - parent: 1 - type: Transform -- uid: 14419 - type: RandomSpawner - components: - - pos: -79.5,22.5 - parent: 1 - type: Transform -- uid: 14420 - type: RandomSpawner - components: - - pos: -78.5,25.5 - parent: 1 - type: Transform -- uid: 14421 - type: RandomSpawner - components: - - pos: -84.5,23.5 - parent: 1 - type: Transform -- uid: 14422 - type: RandomSpawner - components: - - pos: -81.5,27.5 - parent: 1 - type: Transform -- uid: 14423 - type: RandomSpawner - components: - - pos: -80.5,19.5 - parent: 1 - type: Transform -- uid: 14424 - type: RandomSpawner - components: - - pos: -77.5,20.5 - parent: 1 - type: Transform -- uid: 14425 - type: SpawnPointChiefEngineer - components: - - pos: -68.5,16.5 - parent: 1 - type: Transform -- uid: 14426 - type: SpawnPointStationEngineer - components: - - pos: -66.5,26.5 - parent: 1 - type: Transform -- uid: 14427 - type: SpawnPointStationEngineer - components: - - pos: -66.5,28.5 - parent: 1 - type: Transform -- uid: 14428 - type: SpawnPointStationEngineer - components: - - pos: -64.5,28.5 - parent: 1 - type: Transform -- uid: 14429 - type: SpawnPointStationEngineer - components: - - pos: -64.5,26.5 - parent: 1 - type: Transform -- uid: 14430 - type: SpawnPointTechnicalAssistant - components: - - pos: -67.5,33.5 - parent: 1 - type: Transform -- uid: 14431 - type: SpawnPointTechnicalAssistant - components: - - pos: -64.5,33.5 - parent: 1 - type: Transform -- uid: 14432 - type: SpawnPointTechnicalAssistant - components: - - pos: -64.5,31.5 - parent: 1 - type: Transform -- uid: 14433 - type: SpawnPointAtmos - components: - - pos: -81.5,31.5 - parent: 1 - type: Transform -- uid: 14434 - type: SpawnPointAtmos - components: - - pos: -80.5,31.5 - parent: 1 - type: Transform -- uid: 14435 - type: SpawnPointAtmos - components: - - pos: -79.5,31.5 - parent: 1 - type: Transform -- uid: 14436 - type: WallReinforced - components: - - pos: -26.5,58.5 - parent: 1 - type: Transform -- uid: 14437 - type: WallReinforced - components: - - pos: -25.5,58.5 - parent: 1 - type: Transform -- uid: 14438 - type: CarpetGreen - components: - - pos: -71.5,8.5 - parent: 1 - type: Transform -- uid: 14439 - type: CarpetGreen - components: - - pos: -71.5,9.5 - parent: 1 - type: Transform -- uid: 14440 - type: CarpetGreen - components: - - pos: -71.5,10.5 - parent: 1 - type: Transform -- uid: 14441 - type: CarpetGreen - components: - - pos: -71.5,11.5 - parent: 1 - type: Transform -- uid: 14442 - type: CarpetGreen - components: - - pos: -71.5,12.5 - parent: 1 - type: Transform -- uid: 14443 - type: CarpetGreen - components: - - pos: -71.5,13.5 - parent: 1 - type: Transform -- uid: 14444 - type: CarpetGreen - components: - - pos: -70.5,8.5 - parent: 1 - type: Transform -- uid: 14445 - type: CarpetGreen - components: - - pos: -70.5,9.5 - parent: 1 - type: Transform -- uid: 14446 - type: CarpetGreen - components: - - pos: -70.5,10.5 - parent: 1 - type: Transform -- uid: 14447 - type: CarpetGreen - components: - - pos: -70.5,11.5 - parent: 1 - type: Transform -- uid: 14448 - type: CarpetGreen - components: - - pos: -70.5,12.5 - parent: 1 - type: Transform -- uid: 14449 - type: CarpetGreen - components: - - pos: -70.5,13.5 - parent: 1 - type: Transform -- uid: 14450 - type: CarpetGreen - components: - - pos: -72.5,9.5 - parent: 1 - type: Transform -- uid: 14451 - type: CarpetGreen - components: - - pos: -69.5,9.5 - parent: 1 - type: Transform -- uid: 14452 - type: AltarDruid - components: - - pos: -71.5,8.5 - parent: 1 - type: Transform -- uid: 14453 - type: AltarDruid - components: - - pos: -70.5,8.5 - parent: 1 - type: Transform -- uid: 14454 - type: PlushieLizard - components: - - pos: -71.541916,8.668143 - parent: 1 - type: Transform -- uid: 14455 - type: PlushieLizard - components: - - pos: -70.479416,8.668143 - parent: 1 - type: Transform -- uid: 14456 - type: WardrobeGreenFilled - components: - - pos: -72.5,8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14457 - type: WardrobeGreenFilled - components: - - pos: -69.5,8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14458 - type: ChairFolding - components: - - pos: -72.5,10.5 - parent: 1 - type: Transform -- uid: 14459 - type: ChairFolding - components: - - pos: -72.5,11.5 - parent: 1 - type: Transform -- uid: 14460 - type: ChairFolding - components: - - pos: -72.5,12.5 - parent: 1 - type: Transform -- uid: 14461 - type: ChairFolding - components: - - pos: -72.5,13.5 - parent: 1 - type: Transform -- uid: 14462 - type: ChairFolding - components: - - pos: -69.5,13.5 - parent: 1 - type: Transform -- uid: 14463 - type: ChairFolding - components: - - pos: -69.5,11.5 - parent: 1 - type: Transform -- uid: 14464 - type: ChairFolding - components: - - pos: -69.5,10.5 - parent: 1 - type: Transform -- uid: 14465 - type: AirlockMaint - components: - - pos: -68.5,12.5 - parent: 1 - type: Transform -- uid: 14466 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -83.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14467 - type: Grille - components: - - pos: -59.5,68.5 - parent: 1 - type: Transform -- uid: 14468 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -84.5,30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14469 - type: Grille - components: - - pos: -61.5,68.5 - parent: 1 - type: Transform -- uid: 14470 - type: Grille - components: - - pos: -62.5,68.5 - parent: 1 - type: Transform -- uid: 14471 - type: Poweredlight - components: - - pos: -79.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14472 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -84.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14473 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -73.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14474 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -71.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14475 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -63.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14476 - type: Poweredlight - components: - - pos: -67.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14477 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -71.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14478 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -74.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14479 - type: Poweredlight - components: - - pos: -69.5,35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14480 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -63.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14481 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -67.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14482 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -61.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14483 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -76.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14484 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -82.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14485 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -77.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14486 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -77.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14487 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -86.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14488 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -86.5,42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14489 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -86.5,38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14490 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -86.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14491 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -90.5,35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14492 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -90.5,37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14493 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -90.5,39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14494 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -90.5,41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14495 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -90.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14496 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -90.5,45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14497 - type: Poweredlight - components: - - pos: -83.5,50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14498 - type: Poweredlight - components: - - pos: -81.5,50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14499 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: -59.490047,7.723072 - parent: 1 - type: Transform -- uid: 14500 - type: SignDirectionalEng - components: - - rot: 3.141592653589793 rad - pos: -59.490047,7.504322 - parent: 1 - type: Transform -- uid: 14501 - type: SignDirectionalBar - components: - - rot: 3.141592653589793 rad - pos: -59.490047,7.285572 - parent: 1 - type: Transform -- uid: 14502 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: -55.48836,7.2415333 - parent: 1 - type: Transform -- uid: 14503 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: -55.48836,7.4602833 - parent: 1 - type: Transform -- uid: 14504 - type: SignDirectionalSupply - components: - - rot: 1.5707963267948966 rad - pos: -55.48836,7.6790333 - parent: 1 - type: Transform -- uid: 14505 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -55.472736,3.7415338 - parent: 1 - type: Transform -- uid: 14506 - type: SignDirectionalGravity - components: - - rot: 1.5707963267948966 rad - pos: -55.472736,3.5227838 - parent: 1 - type: Transform -- uid: 14507 - type: SignDirectionalBar - components: - - rot: 3.141592653589793 rad - pos: -39.450584,8.088224 - parent: 1 - type: Transform -- uid: 14508 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: -39.450584,8.275724 - parent: 1 - type: Transform -- uid: 14509 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: -32.43669,7.2913494 - parent: 1 - type: Transform -- uid: 14510 - type: SignDirectionalEng - components: - - rot: 3.141592653589793 rad - pos: -39.452663,8.478849 - parent: 1 - type: Transform -- uid: 14511 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: -32.43541,7.4944744 - parent: 1 - type: Transform -- uid: 14512 - type: SignDirectionalGravity - components: - - rot: 1.5707963267948966 rad - pos: -30.468357,3.7672944 - parent: 1 - type: Transform -- uid: 14513 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -30.468357,3.5641694 - parent: 1 - type: Transform -- uid: 14514 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -10.488658,7.248558 - parent: 1 - type: Transform -- uid: 14515 - type: SignDirectionalMed - components: - - rot: 3.141592653589793 rad - pos: -10.488658,7.451683 - parent: 1 - type: Transform -- uid: 14516 - type: SignDirectionalChapel - components: - - rot: 1.5707963267948966 rad - pos: -10.488658,7.654808 - parent: 1 - type: Transform -- uid: 14517 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: -14.488382,7.264183 - parent: 1 - type: Transform -- uid: 14518 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -32.437344,7.701683 - parent: 1 - type: Transform -- uid: 14519 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -55.473106,3.3110576 - parent: 1 - type: Transform -- uid: 14520 - type: SignDirectionalChapel - components: - - rot: 1.5707963267948966 rad - pos: -30.469654,3.3579326 - parent: 1 - type: Transform -- uid: 14521 - type: SignDirectionalChapel - components: - - rot: 1.5707963267948966 rad - pos: -59.50527,3.7641826 - parent: 1 - type: Transform -- uid: 14522 - type: SignDirectionalSec - components: - - rot: -1.5707963267948966 rad - pos: -14.487816,3.769662 - parent: 1 - type: Transform -- uid: 14523 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: -14.487816,3.550912 - parent: 1 - type: Transform -- uid: 14524 - type: SignDirectionalSupply - components: - - rot: -1.5707963267948966 rad - pos: -14.487816,3.363412 - parent: 1 - type: Transform -- uid: 14525 - type: SignDirectionalBar - components: - - rot: 3.141592653589793 rad - pos: -14.487816,7.472787 - parent: 1 - type: Transform -- uid: 14526 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: 7.5,7.5 - parent: 1 - type: Transform -- uid: 14527 - type: SignDirectionalChapel - components: - - pos: 12.5,4.5 - parent: 1 - type: Transform -- uid: 14528 - type: ReinforcedWindow - components: - - pos: -15.5,30.5 - parent: 1 - type: Transform -- uid: 14529 - type: SignDirectionalSupply - components: - - pos: -14.482212,30.433353 - parent: 1 - type: Transform -- uid: 14530 - type: SignDirectionalBar - components: - - rot: -1.5707963267948966 rad - pos: -14.482212,30.621857 - parent: 1 - type: Transform -- uid: 14531 - type: SignDirectionalEvac - components: - - pos: -14.474767,30.840607 - parent: 1 - type: Transform -- uid: 14532 - type: SignDirectionalGravity - components: - - rot: 1.5707963267948966 rad - pos: -14.490392,7.668745 - parent: 1 - type: Transform -- uid: 14533 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: -14.4896145,34.261154 - parent: 1 - type: Transform -- uid: 14534 - type: SignDirectionalGravity - components: - - pos: -14.4896145,34.46428 - parent: 1 - type: Transform -- uid: 14535 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: -14.4896145,34.68303 - parent: 1 - type: Transform -- uid: 14536 - type: SignDirectionalSec - components: - - rot: -1.5707963267948966 rad - pos: -18.473362,34.27678 - parent: 1 - type: Transform -- uid: 14537 - type: SignDirectionalBar - components: - - rot: -1.5707963267948966 rad - pos: -18.473362,34.479904 - parent: 1 - type: Transform -- uid: 14538 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: -35.48712,30.73939 - parent: 1 - type: Transform -- uid: 14539 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: -35.48712,30.55189 - parent: 1 - type: Transform -- uid: 14540 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -35.48712,30.33314 - parent: 1 - type: Transform -- uid: 14541 - type: SignDirectionalSec - components: - - rot: -1.5707963267948966 rad - pos: -39.48712,30.348764 - parent: 1 - type: Transform -- uid: 14542 - type: SignDirectionalEvac - components: - - pos: -39.48712,30.567514 - parent: 1 - type: Transform -- uid: 14543 - type: SignDirectionalSupply - components: - - pos: -39.48712,30.77064 - parent: 1 - type: Transform -- uid: 14544 - type: SignDirectionalSolar - components: - - pos: 23.5,3.5 - parent: 1 - type: Transform -- uid: 14545 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: -39.47286,34.276833 - parent: 1 - type: Transform -- uid: 14546 - type: SignDirectionalGravity - components: - - pos: -39.47286,34.479958 - parent: 1 - type: Transform -- uid: 14547 - type: SignDirectionalBar - components: - - rot: 1.5707963267948966 rad - pos: -55.470596,30.735767 - parent: 1 - type: Transform -- uid: 14548 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: -55.48622,34.247536 - parent: 1 - type: Transform -- uid: 14549 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -55.470596,30.513163 - parent: 1 - type: Transform -- uid: 14550 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: -55.48622,34.45066 - parent: 1 - type: Transform -- uid: 14551 - type: SignDirectionalSci - components: - - pos: -55.472015,30.294413 - parent: 1 - type: Transform -- uid: 14552 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -45.46681,34.272972 - parent: 1 - type: Transform -- uid: 14553 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: -45.482433,34.476097 - parent: 1 - type: Transform -- uid: 14554 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: -45.482433,34.679222 - parent: 1 - type: Transform -- uid: 14555 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: -49.46681,48.26641 - parent: 1 - type: Transform -- uid: 14556 - type: SignDirectionalBridge - components: - - pos: -49.482433,48.469536 - parent: 1 - type: Transform -- uid: 14557 - type: SignDirectionalMed - components: - - pos: -49.482433,48.657036 - parent: 1 - type: Transform -- uid: 14558 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: -45.49806,34.875084 - parent: 1 - type: Transform -- uid: 14559 - type: Catwalk - components: - - pos: -67.5,13.5 - parent: 1 - type: Transform -- uid: 14560 - type: Catwalk - components: - - pos: -66.5,12.5 - parent: 1 - type: Transform -- uid: 14561 - type: SignDirectionalJanitor - components: - - pos: -49.48419,37.304916 - parent: 1 - type: Transform -- uid: 14562 - type: Catwalk - components: - - pos: -65.5,17.5 - parent: 1 - type: Transform -- uid: 14563 - type: Catwalk - components: - - pos: -62.5,16.5 - parent: 1 - type: Transform -- uid: 14564 - type: Catwalk - components: - - pos: -61.5,17.5 - parent: 1 - type: Transform -- uid: 14565 - type: Catwalk - components: - - pos: -60.5,21.5 - parent: 1 - type: Transform -- uid: 14566 - type: Catwalk - components: - - pos: -60.5,19.5 - parent: 1 - type: Transform -- uid: 14567 - type: Catwalk - components: - - pos: -61.5,23.5 - parent: 1 - type: Transform -- uid: 14568 - type: Catwalk - components: - - pos: -60.5,25.5 - parent: 1 - type: Transform -- uid: 14569 - type: Catwalk - components: - - pos: -60.5,27.5 - parent: 1 - type: Transform -- uid: 14570 - type: Catwalk - components: - - pos: -60.5,26.5 - parent: 1 - type: Transform -- uid: 14571 - type: Catwalk - components: - - pos: -61.5,29.5 - parent: 1 - type: Transform -- uid: 14572 - type: Catwalk - components: - - pos: -61.5,21.5 - parent: 1 - type: Transform -- uid: 14573 - type: Catwalk - components: - - pos: -64.5,17.5 - parent: 1 - type: Transform -- uid: 14574 - type: Catwalk - components: - - pos: -44.5,53.5 - parent: 1 - type: Transform -- uid: 14575 - type: Catwalk - components: - - pos: -44.5,51.5 - parent: 1 - type: Transform -- uid: 14576 - type: Catwalk - components: - - pos: -44.5,50.5 - parent: 1 - type: Transform -- uid: 14577 - type: OxygenCanister - components: - - pos: -60.5,16.5 - parent: 1 - type: Transform -- uid: 14578 - type: NitrogenCanister - components: - - pos: -60.5,17.5 - parent: 1 - type: Transform -- uid: 14579 - type: AirCanister - components: - - pos: -60.5,18.5 - parent: 1 - type: Transform -- uid: 14580 - type: Table - components: - - pos: -60.5,19.5 - parent: 1 - type: Transform -- uid: 14581 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -60.5,20.5 - parent: 1 - type: Transform -- uid: 14582 - type: ClosetEmergencyFilledRandom - components: - - pos: -61.5,29.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14583 - type: ClosetFireFilled - components: - - pos: -61.5,28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14584 - type: ClosetMaintenanceFilledRandom - components: - - pos: -61.5,27.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14585 - type: Rack - components: - - rot: -1.5707963267948966 rad - pos: -61.5,26.5 - parent: 1 - type: Transform -- uid: 14586 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -61.5,25.5 - parent: 1 - type: Transform -- uid: 14587 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -61.5,24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14588 - type: WeldingFuelTankFull - components: - - pos: -67.5,8.5 - parent: 1 - type: Transform -- uid: 14589 - type: WaterTankFull - components: - - pos: -67.5,9.5 - parent: 1 - type: Transform -- uid: 14590 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -67.5,10.5 - parent: 1 - type: Transform -- uid: 14591 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: -67.5,13.5 - parent: 1 - type: Transform -- uid: 14592 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -67.5,11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14593 - type: MaintenanceFluffSpawner - components: - - pos: -67.5,10.5 - parent: 1 - type: Transform -- uid: 14594 - type: MaintenanceToolSpawner - components: - - pos: -67.5,11.5 - parent: 1 - type: Transform -- uid: 14595 - type: MaintenanceToolSpawner - components: - - pos: -67.5,13.5 - parent: 1 - type: Transform -- uid: 14596 - type: MaintenanceWeaponSpawner - components: - - pos: -60.5,19.5 - parent: 1 - type: Transform -- uid: 14597 - type: MaintenanceToolSpawner - components: - - pos: -60.5,20.5 - parent: 1 - type: Transform -- uid: 14598 - type: MaintenanceToolSpawner - components: - - pos: -61.5,25.5 - parent: 1 - type: Transform -- uid: 14599 - type: MaintenanceFluffSpawner - components: - - pos: -61.5,24.5 - parent: 1 - type: Transform -- uid: 14600 - type: MaintenanceFluffSpawner - components: - - pos: -61.5,26.5 - parent: 1 - type: Transform -- uid: 14601 - type: GrilleBroken - components: - - pos: -107.5,23.5 - parent: 1 - type: Transform -- uid: 14602 - type: Grille - components: - - pos: -107.5,24.5 - parent: 1 - type: Transform -- uid: 14603 - type: Grille - components: - - pos: -107.5,25.5 - parent: 1 - type: Transform -- uid: 14604 - type: GrilleBroken - components: - - pos: -107.5,29.5 - parent: 1 - type: Transform -- uid: 14605 - type: GrilleBroken - components: - - pos: -107.5,26.5 - parent: 1 - type: Transform -- uid: 14606 - type: Grille - components: - - pos: -107.5,28.5 - parent: 1 - type: Transform -- uid: 14607 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -107.5,27.5 - parent: 1 - type: Transform -- uid: 14608 - type: GrilleBroken - components: - - pos: -99.5,35.5 - parent: 1 - type: Transform -- uid: 14609 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -105.5,35.5 - parent: 1 - type: Transform -- uid: 14610 - type: Grille - components: - - pos: -109.5,34.5 - parent: 1 - type: Transform -- uid: 14611 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -110.5,34.5 - parent: 1 - type: Transform -- uid: 14612 - type: Grille - components: - - pos: -107.5,34.5 - parent: 1 - type: Transform -- uid: 14613 - type: Grille - components: - - pos: -107.5,35.5 - parent: 1 - type: Transform -- uid: 14614 - type: Grille - components: - - pos: -106.5,35.5 - parent: 1 - type: Transform -- uid: 14615 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -102.5,35.5 - parent: 1 - type: Transform -- uid: 14616 - type: Grille - components: - - pos: -101.5,35.5 - parent: 1 - type: Transform -- uid: 14617 - type: Grille - components: - - pos: -100.5,35.5 - parent: 1 - type: Transform -- uid: 14618 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -94.5,36.5 - parent: 1 - type: Transform -- uid: 14619 - type: Grille - components: - - pos: -98.5,35.5 - parent: 1 - type: Transform -- uid: 14620 - type: Grille - components: - - pos: -97.5,35.5 - parent: 1 - type: Transform -- uid: 14621 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -96.5,35.5 - parent: 1 - type: Transform -- uid: 14622 - type: Grille - components: - - pos: -94.5,35.5 - parent: 1 - type: Transform -- uid: 14623 - type: GrilleBroken - components: - - pos: -94.5,40.5 - parent: 1 - type: Transform -- uid: 14624 - type: Grille - components: - - pos: -94.5,37.5 - parent: 1 - type: Transform -- uid: 14625 - type: Grille - components: - - pos: -94.5,38.5 - parent: 1 - type: Transform -- uid: 14626 - type: Grille - components: - - pos: -94.5,39.5 - parent: 1 - type: Transform -- uid: 14627 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -94.5,42.5 - parent: 1 - type: Transform -- uid: 14628 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -82.5,57.5 - parent: 1 - type: Transform -- uid: 14629 - type: GrilleBroken - components: - - pos: -94.5,44.5 - parent: 1 - type: Transform -- uid: 14630 - type: Grille - components: - - pos: -94.5,43.5 - parent: 1 - type: Transform -- uid: 14631 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -86.5,14.5 - parent: 1 - type: Transform -- uid: 14632 - type: Grille - components: - - pos: -94.5,45.5 - parent: 1 - type: Transform -- uid: 14633 - type: Grille - components: - - pos: -94.5,46.5 - parent: 1 - type: Transform -- uid: 14634 - type: GrilleBroken - components: - - pos: -94.5,47.5 - parent: 1 - type: Transform -- uid: 14635 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -93.5,49.5 - parent: 1 - type: Transform -- uid: 14636 - type: Grille - components: - - pos: -92.5,49.5 - parent: 1 - type: Transform -- uid: 14637 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -91.5,49.5 - parent: 1 - type: Transform -- uid: 14638 - type: Grille - components: - - pos: -90.5,49.5 - parent: 1 - type: Transform -- uid: 14639 - type: Grille - components: - - pos: -89.5,49.5 - parent: 1 - type: Transform -- uid: 14640 - type: Grille - components: - - pos: -88.5,49.5 - parent: 1 - type: Transform -- uid: 14641 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -87.5,49.5 - parent: 1 - type: Transform -- uid: 14642 - type: Grille - components: - - pos: -87.5,51.5 - parent: 1 - type: Transform -- uid: 14643 - type: Grille - components: - - pos: -87.5,52.5 - parent: 1 - type: Transform -- uid: 14644 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -84.5,54.5 - parent: 1 - type: Transform -- uid: 14645 - type: Grille - components: - - pos: -85.5,54.5 - parent: 1 - type: Transform -- uid: 14646 - type: GrilleBroken - components: - - pos: -86.5,54.5 - parent: 1 - type: Transform -- uid: 14647 - type: Grille - components: - - pos: -83.5,54.5 - parent: 1 - type: Transform -- uid: 14648 - type: Grille - components: - - pos: -82.5,54.5 - parent: 1 - type: Transform -- uid: 14649 - type: Grille - components: - - pos: -81.5,57.5 - parent: 1 - type: Transform -- uid: 14650 - type: Grille - components: - - pos: -80.5,57.5 - parent: 1 - type: Transform -- uid: 14651 - type: Grille - components: - - pos: -68.5,62.5 - parent: 1 - type: Transform -- uid: 14652 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -74.5,60.5 - parent: 1 - type: Transform -- uid: 14653 - type: Grille - components: - - pos: -78.5,60.5 - parent: 1 - type: Transform -- uid: 14654 - type: Grille - components: - - pos: -77.5,60.5 - parent: 1 - type: Transform -- uid: 14655 - type: GrilleBroken - components: - - pos: -76.5,60.5 - parent: 1 - type: Transform -- uid: 14656 - type: Grille - components: - - pos: -75.5,60.5 - parent: 1 - type: Transform -- uid: 14657 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -79.5,60.5 - parent: 1 - type: Transform -- uid: 14658 - type: Grille - components: - - pos: -73.5,60.5 - parent: 1 - type: Transform -- uid: 14659 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -69.5,60.5 - parent: 1 - type: Transform -- uid: 14660 - type: Grille - components: - - pos: -70.5,60.5 - parent: 1 - type: Transform -- uid: 14661 - type: GrilleBroken - components: - - pos: -71.5,60.5 - parent: 1 - type: Transform -- uid: 14662 - type: Grille - components: - - pos: -67.5,62.5 - parent: 1 - type: Transform -- uid: 14663 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -66.5,62.5 - parent: 1 - type: Transform -- uid: 14664 - type: Grille - components: - - pos: -64.5,63.5 - parent: 1 - type: Transform -- uid: 14665 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -64.5,64.5 - parent: 1 - type: Transform -- uid: 14666 - type: Grille - components: - - pos: -64.5,65.5 - parent: 1 - type: Transform -- uid: 14667 - type: Grille - components: - - pos: -64.5,66.5 - parent: 1 - type: Transform -- uid: 14668 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -79.5,57.5 - parent: 1 - type: Transform -- uid: 14669 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -81.5,54.5 - parent: 1 - type: Transform -- uid: 14670 - type: GrilleBroken - components: - - pos: -108.5,34.5 - parent: 1 - type: Transform -- uid: 14671 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -87.5,50.5 - parent: 1 - type: Transform -- uid: 14672 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-13.5 - parent: 1 - type: Transform -- uid: 14673 - type: Grille - components: - - pos: -104.5,15.5 - parent: 1 - type: Transform -- uid: 14674 - type: Grille - components: - - pos: -103.5,15.5 - parent: 1 - type: Transform -- uid: 14676 - type: Grille - components: - - pos: -101.5,15.5 - parent: 1 - type: Transform -- uid: 14677 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -102.5,15.5 - parent: 1 - type: Transform -- uid: 14678 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -105.5,15.5 - parent: 1 - type: Transform -- uid: 14679 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -100.5,15.5 - parent: 1 - type: Transform -- uid: 14680 - type: Grille - components: - - pos: -94.5,15.5 - parent: 1 - type: Transform -- uid: 14681 - type: Grille - components: - - pos: -93.5,15.5 - parent: 1 - type: Transform -- uid: 14682 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-11.5 - parent: 1 - type: Transform -- uid: 14683 - type: Grille - components: - - pos: -91.5,15.5 - parent: 1 - type: Transform -- uid: 14684 - type: Grille - components: - - pos: -90.5,15.5 - parent: 1 - type: Transform -- uid: 14685 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -95.5,15.5 - parent: 1 - type: Transform -- uid: 14686 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -89.5,15.5 - parent: 1 - type: Transform -- uid: 14687 - type: Grille - components: - - pos: -85.5,14.5 - parent: 1 - type: Transform -- uid: 14688 - type: Grille - components: - - pos: -84.5,14.5 - parent: 1 - type: Transform -- uid: 14689 - type: Grille - components: - - pos: -83.5,14.5 - parent: 1 - type: Transform -- uid: 14690 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -92.5,15.5 - parent: 1 - type: Transform -- uid: 14691 - type: Grille - components: - - pos: -81.5,14.5 - parent: 1 - type: Transform -- uid: 14692 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -82.5,14.5 - parent: 1 - type: Transform -- uid: 14693 - type: Grille - components: - - pos: -78.5,13.5 - parent: 1 - type: Transform -- uid: 14694 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -78.5,12.5 - parent: 1 - type: Transform -- uid: 14695 - type: Grille - components: - - pos: -78.5,11.5 - parent: 1 - type: Transform -- uid: 14696 - type: Grille - components: - - pos: -78.5,10.5 - parent: 1 - type: Transform -- uid: 14697 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -78.5,9.5 - parent: 1 - type: Transform -- uid: 14698 - type: Grille - components: - - pos: -79.5,3.5 - parent: 1 - type: Transform -- uid: 14699 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -80.5,14.5 - parent: 1 - type: Transform -- uid: 14700 - type: Grille - components: - - pos: -79.5,4.5 - parent: 1 - type: Transform -- uid: 14701 - type: GrilleBroken - components: - - pos: -79.5,5.5 - parent: 1 - type: Transform -- uid: 14702 - type: Grille - components: - - pos: -79.5,6.5 - parent: 1 - type: Transform -- uid: 14703 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -79.5,7.5 - parent: 1 - type: Transform -- uid: 14704 - type: AcousticGuitarInstrument - components: - - pos: 28.538687,-28.497456 - parent: 1 - type: Transform -- uid: 14705 - type: FluteInstrument - components: - - pos: -4.5521817,51.503952 - parent: 1 - type: Transform -- uid: 14706 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-13.5 - parent: 1 - type: Transform -- uid: 14707 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-13.5 - parent: 1 - type: Transform -- uid: 14709 - type: GrilleBroken - components: - - anchored: False - rot: 1.5707963267948966 rad - pos: -55.060143,-12.660082 - parent: 0 - type: Transform - - bodyType: Dynamic - type: Physics -- uid: 14713 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -51.5,-13.5 - parent: 1 - type: Transform -- uid: 14714 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -22.5,-17.5 - parent: 1 - type: Transform -- uid: 14715 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-18.5 - parent: 1 - type: Transform -- uid: 14716 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -20.5,-17.5 - parent: 1 - type: Transform -- uid: 14717 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -19.5,-17.5 - parent: 1 - type: Transform -- uid: 14718 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -18.5,-17.5 - parent: 1 - type: Transform -- uid: 14719 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-18.5 - parent: 1 - type: Transform -- uid: 14720 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -16.5,-17.5 - parent: 1 - type: Transform -- uid: 14721 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-17.5 - parent: 1 - type: Transform -- uid: 14722 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -15.5,-18.5 - parent: 1 - type: Transform -- uid: 14723 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -14.5,-18.5 - parent: 1 - type: Transform -- uid: 14724 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -13.5,-18.5 - parent: 1 - type: Transform -- uid: 14725 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-17.5 - parent: 1 - type: Transform -- uid: 14726 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -11.5,-18.5 - parent: 1 - type: Transform -- uid: 14727 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-14.5 - parent: 1 - type: Transform -- uid: 14728 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 29.5,-29.5 - parent: 1 - type: Transform -- uid: 14729 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-16.5 - parent: 1 - type: Transform -- uid: 14730 - type: GrilleBroken - components: - - pos: 26.5,-27.5 - parent: 1 - type: Transform -- uid: 14731 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-18.5 - parent: 1 - type: Transform -- uid: 14732 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-18.5 - parent: 1 - type: Transform -- uid: 14733 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 16.5,-15.5 - parent: 1 - type: Transform -- uid: 14734 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-20.5 - parent: 1 - type: Transform -- uid: 14735 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 1 - type: Transform -- uid: 14736 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-27.5 - parent: 1 - type: Transform -- uid: 14737 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-22.5 - parent: 1 - type: Transform -- uid: 14738 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-24.5 - parent: 1 - type: Transform -- uid: 14739 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 1 - type: Transform -- uid: 14740 - type: GrilleBroken - components: - - pos: 30.5,-24.5 - parent: 1 - type: Transform -- uid: 14741 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-26.5 - parent: 1 - type: Transform -- uid: 14742 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-28.5 - parent: 1 - type: Transform -- uid: 14743 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-26.5 - parent: 1 - type: Transform -- uid: 14744 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-23.5 - parent: 1 - type: Transform -- uid: 14745 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-26.5 - parent: 1 - type: Transform -- uid: 14746 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 30.5,-21.5 - parent: 1 - type: Transform -- uid: 14747 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-26.5 - parent: 1 - type: Transform -- uid: 14748 - type: GrilleBroken - components: - - pos: 17.5,-19.5 - parent: 1 - type: Transform -- uid: 14749 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-22.5 - parent: 1 - type: Transform -- uid: 14750 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-26.5 - parent: 1 - type: Transform -- uid: 14751 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-18.5 - parent: 1 - type: Transform -- uid: 14752 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-28.5 - parent: 1 - type: Transform -- uid: 14753 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-29.5 - parent: 1 - type: Transform -- uid: 14754 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-23.5 - parent: 1 - type: Transform -- uid: 14755 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-29.5 - parent: 1 - type: Transform -- uid: 14756 - type: GrilleBroken - components: - - pos: 30.5,-15.5 - parent: 1 - type: Transform -- uid: 14757 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-29.5 - parent: 1 - type: Transform -- uid: 14758 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 22.5,-11.5 - parent: 1 - type: Transform -- uid: 14759 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 - parent: 1 - type: Transform -- uid: 14760 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-25.5 - parent: 1 - type: Transform -- uid: 14761 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-29.5 - parent: 1 - type: Transform -- uid: 14762 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-26.5 - parent: 1 - type: Transform -- uid: 14763 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-22.5 - parent: 1 - type: Transform -- uid: 14764 - type: GrilleBroken - components: - - pos: 30.5,-13.5 - parent: 1 - type: Transform -- uid: 14765 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-20.5 - parent: 1 - type: Transform -- uid: 14766 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-19.5 - parent: 1 - type: Transform -- uid: 14767 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 18.5,-25.5 - parent: 1 - type: Transform -- uid: 14768 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-17.5 - parent: 1 - type: Transform -- uid: 14769 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-16.5 - parent: 1 - type: Transform -- uid: 14770 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-26.5 - parent: 1 - type: Transform -- uid: 14771 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-14.5 - parent: 1 - type: Transform -- uid: 14772 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 24.5,-26.5 - parent: 1 - type: Transform -- uid: 14773 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-26.5 - parent: 1 - type: Transform -- uid: 14774 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-11.5 - parent: 1 - type: Transform -- uid: 14775 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-17.5 - parent: 1 - type: Transform -- uid: 14776 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 24.5,-11.5 - parent: 1 - type: Transform -- uid: 14777 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 25.5,-11.5 - parent: 1 - type: Transform -- uid: 14778 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-11.5 - parent: 1 - type: Transform -- uid: 14779 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 19.5,48.5 - parent: 1 - type: Transform -- uid: 14780 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-0.5 - parent: 1 - type: Transform -- uid: 14781 - type: GrilleBroken - components: - - pos: 32.5,-6.5 - parent: 1 - type: Transform -- uid: 14782 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 32.5,-10.5 - parent: 1 - type: Transform -- uid: 14783 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-3.5 - parent: 1 - type: Transform -- uid: 14784 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-4.5 - parent: 1 - type: Transform -- uid: 14785 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-5.5 - parent: 1 - type: Transform -- uid: 14786 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 1 - type: Transform -- uid: 14787 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-7.5 - parent: 1 - type: Transform -- uid: 14788 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 1 - type: Transform -- uid: 14789 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-9.5 - parent: 1 - type: Transform -- uid: 14790 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 32.5,-1.5 - parent: 1 - type: Transform -- uid: 14791 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 14.5,55.5 - parent: 1 - type: Transform -- uid: 14792 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 15.5,55.5 - parent: 1 - type: Transform -- uid: 14793 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 19.5,49.5 - parent: 1 - type: Transform -- uid: 14794 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 21.5,54.5 - parent: 1 - type: Transform -- uid: 14795 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 22.5,46.5 - parent: 1 - type: Transform -- uid: 14796 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 21.5,53.5 - parent: 1 - type: Transform -- uid: 14797 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,55.5 - parent: 1 - type: Transform -- uid: 14798 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 16.5,55.5 - parent: 1 - type: Transform -- uid: 14799 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 21.5,46.5 - parent: 1 - type: Transform -- uid: 14800 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 17.5,55.5 - parent: 1 - type: Transform -- uid: 14801 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 23.5,46.5 - parent: 1 - type: Transform -- uid: 14802 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 24.5,46.5 - parent: 1 - type: Transform -- uid: 14803 - type: GrilleBroken - components: - - pos: 26.5,45.5 - parent: 1 - type: Transform -- uid: 14804 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 26.5,44.5 - parent: 1 - type: Transform -- uid: 14805 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 26.5,43.5 - parent: 1 - type: Transform -- uid: 14806 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 26.5,42.5 - parent: 1 - type: Transform -- uid: 14807 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 26.5,41.5 - parent: 1 - type: Transform -- uid: 14808 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 26.5,40.5 - parent: 1 - type: Transform -- uid: 14809 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 26.5,37.5 - parent: 1 - type: Transform -- uid: 14810 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 26.5,36.5 - parent: 1 - type: Transform -- uid: 14811 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 26.5,35.5 - parent: 1 - type: Transform -- uid: 14812 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 26.5,34.5 - parent: 1 - type: Transform -- uid: 14813 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 26.5,33.5 - parent: 1 - type: Transform -- uid: 14814 - type: GrilleBroken - components: - - pos: 26.5,32.5 - parent: 1 - type: Transform -- uid: 14815 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 26.5,31.5 - parent: 1 - type: Transform -- uid: 14816 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -17.5,51.5 - parent: 1 - type: Transform -- uid: 14817 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -16.5,52.5 - parent: 1 - type: Transform -- uid: 14818 - type: TableReinforced - components: - - pos: -21.5,53.5 - parent: 1 - type: Transform -- uid: 14819 - type: WallReinforced - components: - - pos: 26.5,29.5 - parent: 1 - type: Transform -- uid: 14820 - type: RandomSpawner - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-10.5 - parent: 1 - type: Transform -- uid: 14821 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 11.5,-12.5 - parent: 1 - type: Transform -- uid: 14822 - type: WallVaultRock - components: - - pos: 12.5,-14.5 - parent: 1 - type: Transform -- uid: 14823 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 9.5,-12.5 - parent: 1 - type: Transform -- uid: 14824 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 10.5,-13.5 - parent: 1 - type: Transform -- uid: 14825 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform -- uid: 14826 - type: JetpackSecurityFilled - components: - - flags: InContainer - type: MetaData - - parent: 7919 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 14827 - type: WallVaultRock - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-15.5 - parent: 1 - type: Transform -- uid: 14828 - type: WallVaultRock - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-14.5 - parent: 1 - type: Transform -- uid: 14829 - type: WallVaultRock - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-15.5 - parent: 1 - type: Transform -- uid: 14830 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 8.5,-12.5 - parent: 1 - type: Transform -- uid: 14831 - type: Grille - components: - - pos: 10.5,-15.5 - parent: 1 - type: Transform -- uid: 14832 - type: ReinforcedPlasmaWindow - components: - - pos: 9.5,-15.5 - parent: 1 - type: Transform -- uid: 14833 - type: Grille - components: - - pos: 9.5,-15.5 - parent: 1 - type: Transform -- uid: 14834 - type: ReinforcedPlasmaWindow - components: - - pos: 10.5,-15.5 - parent: 1 - type: Transform -- uid: 14835 - type: WeaponTurretHostile - components: - - flags: SessionSpecific - type: MetaData - - rot: 1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 1 - type: Transform -- uid: 14836 - type: SignDanger - components: - - pos: 11.5,-15.5 - parent: 1 - type: Transform -- uid: 14837 - type: SignSecureMedRed - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform -- uid: 14838 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-14.5 - parent: 1 - type: Transform -- uid: 14839 - type: Barricade - components: - - pos: 8.5,-14.5 - parent: 1 - type: Transform -- uid: 14840 - type: SignDanger - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 1 - type: Transform -- uid: 14841 - type: SignSecureMedRed - components: - - pos: 8.5,-11.5 - parent: 1 - type: Transform -- uid: 14842 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-13.5 - parent: 1 - type: Transform -- uid: 14843 - type: RandomPainting - components: - - rot: 3.141592653589793 rad - pos: 10.5,-11.5 - parent: 1 - type: Transform -- uid: 14844 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-13.5 - parent: 1 - type: Transform -- uid: 14845 - type: AsteroidRockMining - components: - - pos: 6.5,-15.5 - parent: 1 - type: Transform -- uid: 14846 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform -- uid: 14847 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-13.5 - parent: 1 - type: Transform -- uid: 14848 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 7.5,-13.5 - parent: 1 - type: Transform -- uid: 14849 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 10.5,-13.5 - parent: 1 - type: Transform -- uid: 14850 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 1 - type: Transform -- uid: 14851 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-12.5 - parent: 1 - type: Transform -- uid: 14852 - type: JetpackSecurityFilled - components: - - flags: InContainer - type: MetaData - - parent: 7919 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 14853 - type: AtmosDeviceFanTiny - components: - - pos: -34.5,-14.5 - parent: 1 - type: Transform -- uid: 14854 - type: AtmosDeviceFanTiny - components: - - pos: -32.5,-14.5 - parent: 1 - type: Transform -- uid: 14855 - type: Poweredlight - components: - - pos: 7.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14856 - type: Poweredlight - components: - - pos: 11.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14857 - type: Poweredlight - components: - - pos: 9.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14858 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -67.5,28.5 - parent: 1 - type: Transform - - id: Equipment Room - type: SurveillanceCamera -- uid: 14859 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: -69.5,29.5 - parent: 1 - type: Transform - - id: SMES - type: SurveillanceCamera -- uid: 14860 - type: SurveillanceCameraEngineering - components: - - pos: -80.5,29.5 - parent: 1 - type: Transform - - id: Atmospherics Equipment - type: SurveillanceCamera -- uid: 14861 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: -77.5,41.5 - parent: 1 - type: Transform - - id: Atmospherics - type: SurveillanceCamera -- uid: 14862 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -82.5,27.5 - parent: 1 - type: Transform - - id: PA Room - type: SurveillanceCamera -- uid: 14863 - type: SurveillanceCameraEngineering - components: - - pos: -66.5,19.5 - parent: 1 - type: Transform - - id: AME - type: SurveillanceCamera -- uid: 14864 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -77.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14865 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -80.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14866 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -74.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14867 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -67.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14868 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -59.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14869 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -79.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14870 - type: EmergencyLight - components: - - pos: -68.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14871 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14872 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14873 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -50.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14874 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14875 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14876 - type: EmergencyLight - components: - - pos: -68.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14878 - type: WallReinforced - components: - - pos: -46.5,7.5 - parent: 1 - type: Transform -- uid: 14879 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14880 - type: EmergencyLight - components: - - pos: -35.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14881 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -43.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14882 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14883 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14884 - type: EmergencyLight - components: - - pos: -33.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14885 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -39.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14886 - type: EmergencyLight - components: - - pos: -35.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14887 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14888 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14889 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14890 - type: EmergencyLight - components: - - pos: -20.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14891 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -20.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14892 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14893 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14894 - type: EmergencyLight - components: - - pos: -11.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14895 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14896 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14897 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -18.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14898 - type: EmergencyLight - components: - - pos: -9.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14899 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -9.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14900 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14901 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14902 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14903 - type: EmergencyLight - components: - - pos: -25.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14904 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -19.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14905 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -2.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14906 - type: EmergencyLight - components: - - pos: 7.5,6.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14907 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 20.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14908 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14909 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14910 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14911 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14912 - type: EmergencyLight - components: - - pos: -1.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14913 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14914 - type: EmergencyLight - components: - - pos: -16.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14915 - type: EmergencyLight - components: - - pos: -12.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14916 - type: EmergencyLight - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14917 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14918 - type: WallReinforced - components: - - pos: -24.5,58.5 - parent: 1 - type: Transform -- uid: 14919 - type: PlasmaReinforcedWindowDirectional - components: - - pos: -25.5,57.5 - parent: 1 - type: Transform -- uid: 14920 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -25.5,57.5 - parent: 1 - type: Transform -- uid: 14921 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -25.5,57.5 - parent: 1 - type: Transform -- uid: 14922 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -25.5,57.5 - parent: 1 - type: Transform -- uid: 14923 - type: SpawnPointMedicalDoctor - components: - - pos: 7.5,24.5 - parent: 1 - type: Transform -- uid: 14924 - type: SpawnPointMedicalDoctor - components: - - pos: 8.5,24.5 - parent: 1 - type: Transform -- uid: 14925 - type: SpawnPointMedicalDoctor - components: - - pos: 9.5,24.5 - parent: 1 - type: Transform -- uid: 14926 - type: SpawnPointMedicalDoctor - components: - - pos: 8.5,23.5 - parent: 1 - type: Transform -- uid: 14927 - type: SpawnPointMedicalIntern - components: - - pos: 3.5,31.5 - parent: 1 - type: Transform -- uid: 14928 - type: SpawnPointMedicalIntern - components: - - pos: 3.5,29.5 - parent: 1 - type: Transform -- uid: 14929 - type: SpawnPointMedicalIntern - components: - - pos: 3.5,24.5 - parent: 1 - type: Transform -- uid: 14930 - type: SpawnPointMedicalIntern - components: - - pos: 3.5,22.5 - parent: 1 - type: Transform -- uid: 14931 - type: WarpPoint - components: - - pos: -53.5,55.5 - parent: 1 - type: Transform - - location: sec - type: WarpPoint -- uid: 14932 - type: WarpPoint - components: - - pos: -70.5,26.5 - parent: 1 - type: Transform - - location: eng - type: WarpPoint -- uid: 14933 - type: CowToolboxFilled - components: - - pos: -92.450035,40.48285 - parent: 1 - type: Transform -- uid: 14934 - type: ReinforcedWindow - components: - - pos: -40.5,69.5 - parent: 1 - type: Transform -- uid: 14935 - type: ClothingHandsGlovesColorBlack - components: - - pos: -59.51448,91.46834 - parent: 1 - type: Transform -- uid: 14936 - type: ClothingHandsGlovesPowerglove - components: - - pos: -76.52277,13.482821 - parent: 1 - type: Transform -- uid: 14937 - type: MouseTimedSpawner - components: - - pos: -74.5,45.5 - parent: 1 - type: Transform -- uid: 14938 - type: FoodDonutJellySpaceman - components: - - pos: -111.48177,18.535988 - parent: 1 - type: Transform -- uid: 14939 - type: MaterialHideBear - components: - - pos: 4.5405226,-14.581865 - parent: 1 - type: Transform -- uid: 14941 - type: DrinkMugOne - components: - - pos: -54.474243,-12.528257 - parent: 1 - type: Transform -- uid: 14942 - type: FoodCakeSuppermatter - components: - - pos: 25.493773,35.43654 - parent: 1 - type: Transform -- uid: 14943 - type: Blunt - components: - - pos: 23.683538,-11.353635 - parent: 1 - type: Transform -- uid: 14944 - type: WeaponRevolverDeckard - components: - - flags: InContainer - type: MetaData - - parent: 10861 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 14945 - type: JetpackBlueFilled - components: - - flags: InContainer - type: MetaData - - parent: 10861 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 14946 - type: Omnitool - components: - - pos: -23.392815,55.502808 - parent: 1 - type: Transform -- uid: 14947 - type: CableMV - components: - - pos: -72.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14948 - type: CableMV - components: - - pos: -71.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14949 - type: CableMV - components: - - pos: -71.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14950 - type: RandomSpawner - components: - - pos: -70.5,25.5 - parent: 1 - type: Transform -- uid: 14951 - type: SpeedLoaderMagnum - components: - - pos: -43.393112,61.308212 - parent: 1 - type: Transform -- uid: 14952 - type: SpeedLoaderMagnum - components: - - pos: -43.099293,61.292587 - parent: 1 - type: Transform -- uid: 14953 - type: SpeedLoaderMagnum - components: - - pos: -43.689987,61.308212 - parent: 1 - type: Transform -- uid: 14954 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14955 - type: EmergencyLight - components: - - pos: -46.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14956 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14957 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14958 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -59.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14959 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14960 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14961 - type: EmergencyLight - components: - - pos: -52.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14962 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -64.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14965 - type: Firelock - components: - - pos: 16.5,25.5 - parent: 1 - type: Transform -- uid: 14966 - type: Firelock - components: - - pos: 16.5,26.5 - parent: 1 - type: Transform -- uid: 14967 - type: RandomSpawner - components: - - pos: 15.5,26.5 - parent: 1 - type: Transform -- uid: 14968 - type: Firelock - components: - - pos: 11.5,9.5 - parent: 1 - type: Transform -- uid: 14969 - type: Firelock - components: - - pos: -1.5,12.5 - parent: 1 - type: Transform -- uid: 14970 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 1 - type: Transform -- uid: 14971 - type: WallSolidRust - components: - - pos: -59.5,27.5 - parent: 1 - type: Transform -- uid: 14972 - type: WallSolidRust - components: - - pos: -59.5,29.5 - parent: 1 - type: Transform -- uid: 14973 - type: WallSolidRust - components: - - pos: -59.5,30.5 - parent: 1 - type: Transform -- uid: 14974 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 1 - type: Transform -- uid: 14975 - type: Firelock - components: - - pos: -6.5,18.5 - parent: 1 - type: Transform -- uid: 15005 - type: CableApcExtension - components: - - pos: -74.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15006 - type: CableApcExtension - components: - - pos: -75.5,54.5 - parent: 1 - type: Transform -- uid: 15007 - type: CableApcExtension - components: - - pos: -76.5,54.5 - parent: 1 - type: Transform -- uid: 15008 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: -31.5,44.5 - parent: 1 - type: Transform -- uid: 15009 - type: ReinforcedPlasmaWindow - components: - - pos: 12.5,-13.5 - parent: 1 - type: Transform -- uid: 15010 - type: SignSecureMedRed - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 1 - type: Transform -- uid: 15011 - type: Grille - components: - - pos: 12.5,-13.5 - parent: 1 - type: Transform -- uid: 15012 - type: TableWood - components: - - pos: 18.5,48.5 - parent: 1 - type: Transform -- uid: 15013 - type: CableHV - components: - - pos: -71.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15014 - type: CableHV - components: - - pos: -71.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15015 - type: CableHV - components: - - pos: -71.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15016 - type: ClothingBeltMilitaryWebbing - components: - - pos: -9.672067,21.926233 - parent: 1 - type: Transform -- uid: 15017 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 15.5,-7.5 - parent: 1 - type: Transform -- uid: 15018 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-13.5 - parent: 1 - type: Transform -- uid: 15019 - type: DisposalUnit - components: - - pos: 14.5,-11.5 - parent: 1 - type: Transform -- uid: 15020 - type: SignSecureMedRed - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-14.5 - parent: 1 - type: Transform -- uid: 15021 - type: RandomSpawner - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform -- uid: 15022 - type: AtmosFixBlockerMarker - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform -- uid: 15023 - type: AtmosFixBlockerMarker - components: - - pos: 8.5,-14.5 - parent: 1 - type: Transform -- uid: 15024 - type: AtmosFixBlockerMarker - components: - - pos: 9.5,-14.5 - parent: 1 - type: Transform -- uid: 15025 - type: AtmosFixBlockerMarker - components: - - pos: 10.5,-14.5 - parent: 1 - type: Transform -- uid: 15026 - type: AtmosFixBlockerMarker - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform -- uid: 15027 - type: AtmosFixBlockerMarker - components: - - pos: 11.5,-13.5 - parent: 1 - type: Transform -- uid: 15028 - type: AtmosFixBlockerMarker - components: - - pos: 11.5,-12.5 - parent: 1 - type: Transform -- uid: 15029 - type: AtmosFixBlockerMarker - components: - - pos: 10.5,-12.5 - parent: 1 - type: Transform -- uid: 15030 - type: AtmosFixBlockerMarker - components: - - pos: 9.5,-12.5 - parent: 1 - type: Transform -- uid: 15031 - type: AtmosFixBlockerMarker - components: - - pos: 8.5,-12.5 - parent: 1 - type: Transform -- uid: 15032 - type: AtmosFixBlockerMarker - components: - - pos: 7.5,-13.5 - parent: 1 - type: Transform -- uid: 15033 - type: AtmosFixBlockerMarker - components: - - pos: 8.5,-13.5 - parent: 1 - type: Transform -- uid: 15034 - type: AtmosFixBlockerMarker - components: - - pos: 9.5,-13.5 - parent: 1 - type: Transform -- uid: 15035 - type: AtmosFixBlockerMarker - components: - - pos: 10.5,-13.5 - parent: 1 - type: Transform -- uid: 15036 - type: DisposalUnit - components: - - desc: A "secure" vault container. What could be inside? - name: vault container - type: MetaData - - pos: 10.5,-13.5 - parent: 1 - type: Transform - - containers: - DisposalUnit: !type:Container - showEnts: False - occludes: True - ents: - - 15119 - type: ContainerContainer - - type: Timer - - type: ActiveDisposalUnit -- uid: 15037 - type: PowerCellMicroreactor - components: - - flags: InContainer - type: MetaData - - parent: 621 - type: Transform - - canCollide: False - type: Physics -- uid: 15038 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15039 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-11.5 - parent: 1 - type: Transform -- uid: 15040 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: 9.5,-5.5 - parent: 1 - type: Transform -- uid: 15041 - type: SpawnMobMouse - components: - - pos: 7.5,-5.5 - parent: 1 - type: Transform -- uid: 15042 - type: SpawnMobMouse - components: - - pos: 22.5,1.5 - parent: 1 - type: Transform -- uid: 15043 - type: SpawnMobMouse - components: - - pos: 14.5,17.5 - parent: 1 - type: Transform -- uid: 15044 - type: SpawnMobMouse - components: - - pos: 13.5,39.5 - parent: 1 - type: Transform -- uid: 15045 - type: SpawnMobMouse - components: - - pos: -7.5,46.5 - parent: 1 - type: Transform -- uid: 15046 - type: SpawnMobMouse - components: - - pos: -44.5,53.5 - parent: 1 - type: Transform -- uid: 15047 - type: SpawnMobMouse - components: - - pos: -66.5,48.5 - parent: 1 - type: Transform -- uid: 15048 - type: MouseTimedSpawner - components: - - pos: -66.5,8.5 - parent: 1 - type: Transform -- uid: 15049 - type: VehicleKeyJanicart - components: - - flags: InContainer - type: MetaData - - parent: 7071 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 15050 - type: CableApcExtension - components: - - pos: -36.5,55.5 - parent: 1 - type: Transform -- uid: 15051 - type: CableApcExtension - components: - - pos: -35.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15052 - type: CableApcExtension - components: - - pos: -34.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15053 - type: CableApcExtension - components: - - pos: -33.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15054 - type: CableApcExtension - components: - - pos: -32.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15055 - type: CableApcExtension - components: - - pos: -31.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15056 - type: CableApcExtension - components: - - pos: -58.5,86.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15057 - type: Chair - components: - - pos: -3.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15058 - type: Chair - components: - - pos: -2.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15059 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -2.5,29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15060 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -1.5,29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15061 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,29.5 - parent: 1 - type: Transform -- uid: 15062 - type: CableApcExtension - components: - - pos: -46.5,-2.5 - parent: 1 - type: Transform -- uid: 15063 - type: Firelock - components: - - pos: -44.5,12.5 - parent: 1 - type: Transform -- uid: 15064 - type: Firelock - components: - - pos: -50.5,16.5 - parent: 1 - type: Transform -- uid: 15065 - type: Firelock - components: - - pos: -45.5,22.5 - parent: 1 - type: Transform -- uid: 15066 - type: Firelock - components: - - pos: -44.5,22.5 - parent: 1 - type: Transform -- uid: 15067 - type: RandomSpawner - components: - - pos: -44.5,21.5 - parent: 1 - type: Transform -- uid: 15068 - type: ClosetMaintenanceFilledRandom - components: - - pos: -28.5,20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15069 - type: Firelock - components: - - pos: -21.5,21.5 - parent: 1 - type: Transform -- uid: 15070 - type: Firelock - components: - - pos: -20.5,22.5 - parent: 1 - type: Transform -- uid: 15071 - type: Firelock - components: - - pos: -19.5,22.5 - parent: 1 - type: Transform -- uid: 15072 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -20.5,17.5 - parent: 1 - type: Transform -- uid: 15073 - type: MaintenanceWeaponSpawner - components: - - pos: -20.5,17.5 - parent: 1 - type: Transform -- uid: 15074 - type: AtmosDeviceFanTiny - components: - - pos: 32.5,8.5 - parent: 1 - type: Transform -- uid: 15075 - type: RandomSpawner - components: - - pos: -16.5,8.5 - parent: 1 - type: Transform -- uid: 15076 - type: AtmosDeviceFanTiny - components: - - pos: 32.5,10.5 - parent: 1 - type: Transform -- uid: 15077 - type: AtmosDeviceFanTiny - components: - - pos: 32.5,16.5 - parent: 1 - type: Transform -- uid: 15078 - type: AtmosDeviceFanTiny - components: - - pos: 32.5,18.5 - parent: 1 - type: Transform -- uid: 15079 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -1.5,16.5 - parent: 1 - type: Transform -- uid: 15080 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 11.5,15.5 - parent: 1 - type: Transform -- uid: 15081 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 10.5,22.5 - parent: 1 - type: Transform -- uid: 15082 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 12.5,35.5 - parent: 1 - type: Transform -- uid: 15083 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 4.5,40.5 - parent: 1 - type: Transform -- uid: 15084 - type: DrinkHotCoffee - components: - - pos: -15.376344,24.974894 - parent: 1 - type: Transform -- uid: 15085 - type: CrateGenericSteel - components: - - name: crate (For Med) - type: MetaData - - pos: -5.5,-5.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 3.3523011 - - 12.611038 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15098 - - 15094 - - 15086 - - 15087 - - 15088 - - 15089 - - 15090 - - 15091 - - 15092 - - 15093 - - 15095 - - 15096 - - 15097 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - currentLabel: For Med - type: Label -- uid: 15086 - type: MicroManipulatorStockPart - components: - - flags: InContainer - type: MetaData - - parent: 15085 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 15087 - type: MicroManipulatorStockPart - components: - - flags: InContainer - type: MetaData - - parent: 15085 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 15088 - type: MicroLaserStockPart - components: - - flags: InContainer - type: MetaData - - parent: 15085 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 15089 - type: ScanningModuleStockPart - components: - - flags: InContainer - type: MetaData - - parent: 15085 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 15090 - type: ScanningModuleStockPart - components: - - flags: InContainer - type: MetaData - - parent: 15085 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 15091 - type: ScanningModuleStockPart - components: - - flags: InContainer - type: MetaData - - parent: 15085 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 15092 - type: RightArmBorg - components: - - flags: InContainer - type: MetaData - - parent: 15085 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 15093 - type: RightArmBorg - components: - - flags: InContainer - type: MetaData - - parent: 15085 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 15094 - type: MicroManipulatorStockPart - components: - - flags: InContainer - type: MetaData - - parent: 15085 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 15095 - type: RightArmBorg - components: - - flags: InContainer - type: MetaData - - parent: 15085 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 15096 - type: ScanningModuleStockPart - components: - - flags: InContainer - type: MetaData - - parent: 15085 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 15097 - type: Paper - components: - - flags: InContainer - name: missing parts list - type: MetaData - - parent: 15085 - type: Transform - - content: > - Still missing: - - 3 knives (ask kitchen) for biomass reclaimer - - 1 pipe (made of steel, constructible) for biomass reclaimer - - Glass & wires (make sure to bring some!) - - Other things to remember: One of their chem stations blew up. Getting parts for cloning's more important but keep it in mind. - - - Research Director Samuel Mendez - type: Paper - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 15098 - type: CapacitorStockPart - components: - - flags: InContainer - type: MetaData - - parent: 15085 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 15099 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.48621,65.98919 - parent: 1 - type: Transform -- uid: 15100 - type: FoodBoxDonut - components: - - pos: -15.485719,25.584269 - parent: 1 - type: Transform -- uid: 15101 - type: DrinkHotCoffee - components: - - pos: -15.688844,24.678019 - parent: 1 - type: Transform -- uid: 15102 - type: DrinkMugRed - components: - - pos: -15.313844,24.521769 - parent: 1 - type: Transform -- uid: 15103 - type: ClothingUniformJumpsuitAncient - components: - - pos: -45.285435,17.619186 - parent: 1 - type: Transform -- uid: 15104 - type: Firelock - components: - - pos: -23.5,50.5 - parent: 1 - type: Transform -- uid: 15105 - type: Firelock - components: - - pos: -23.5,51.5 - parent: 1 - type: Transform -- uid: 15106 - type: ClothingHeadHelmetScaf - components: - - pos: 8.5707035,-8.39783 - parent: 1 - type: Transform -- uid: 15107 - type: SpawnPointResearchAssistant - components: - - pos: -10.5,-3.5 - parent: 1 - type: Transform -- uid: 15108 - type: SpawnPointResearchAssistant - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform -- uid: 15109 - type: BoxShotgunFlare - components: - - pos: 16.496452,-7.6770515 - parent: 1 - type: Transform -- uid: 15110 - type: Table - components: - - pos: 14.5,-7.5 - parent: 1 - type: Transform -- uid: 15111 - type: AtmosDeviceFanTiny - components: - - pos: -30.5,46.5 - parent: 1 - type: Transform -- uid: 15112 - type: AtmosDeviceFanTiny - components: - - pos: -26.5,45.5 - parent: 1 - type: Transform -- uid: 15113 - type: CableApcExtension - components: - - pos: -31.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15114 - type: AdvancedScanningModuleStockPart - components: - - pos: 14.793325,-7.4583015 - parent: 1 - type: Transform -- uid: 15115 - type: AdvancedCapacitorStockPart - components: - - pos: 14.2777,-7.2864265 - parent: 1 - type: Transform -- uid: 15116 - type: HighPowerMicroLaserStockPart - components: - - pos: 14.2777,-7.5208015 - parent: 1 - type: Transform -- uid: 15117 - type: AdvancedMatterBinStockPart - components: - - pos: 14.6527,-7.1926765 - parent: 1 - type: Transform -- uid: 15118 - type: NanoManipulatorStockPart - components: - - pos: 14.4027,-7.5676765 - parent: 1 - type: Transform -- uid: 15119 - type: ClothingBackpackDuffelSyndicate - components: - - flags: InContainer - type: MetaData - - parent: 15036 - type: Transform - - canCollide: False - type: Physics -- uid: 15120 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: -51.5,27.5 - parent: 1 - type: Transform -- uid: 15121 - type: ToySkeleton - components: - - pos: -4.60635,49.548958 - parent: 1 - type: Transform -- uid: 15122 - type: VehicleKeySkeleton - components: - - pos: -4.309475,49.548958 - parent: 1 - type: Transform -- uid: 15123 - type: TrashBananaPeel - components: - - pos: -42.080788,28.835457 - parent: 1 - type: Transform -- uid: 15124 - type: TrashBananaPeel - components: - - pos: -42.158913,28.601082 - parent: 1 - type: Transform -- uid: 15125 - type: TrashBananaPeel - components: - - pos: -42.237038,28.413582 - parent: 1 - type: Transform -- uid: 15126 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -21.5,34.5 - parent: 1 - type: Transform -- uid: 15127 - type: WindowReinforcedDirectional - components: - - pos: -21.5,34.5 - parent: 1 - type: Transform -- uid: 15128 - type: WindowReinforcedDirectional - components: - - pos: -20.5,34.5 - parent: 1 - type: Transform -- uid: 15129 - type: WindowReinforcedDirectional - components: - - pos: -19.5,34.5 - parent: 1 - type: Transform -- uid: 15130 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -19.5,34.5 - parent: 1 - type: Transform -- uid: 15131 - type: SpawnMobCarpHolo - components: - - pos: 8.5,-13.5 - parent: 1 - type: Transform -- uid: 15132 - type: SpawnMobCarpHolo - components: - - pos: 10.5,-14.5 - parent: 1 - type: Transform -- uid: 15133 - type: SpawnMobCarpHolo - components: - - pos: 11.5,-12.5 - parent: 1 - type: Transform -- uid: 15134 - type: IntercomMedical - components: - - rot: 1.5707963267948966 rad - pos: 5.5,35.5 - parent: 1 - type: Transform -- uid: 15135 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -79.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15136 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -77.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15137 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -77.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15138 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -77.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15139 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -78.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15140 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -78.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15141 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -78.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15142 - type: PortableScrubber - components: - - pos: -77.5,38.5 - parent: 1 - type: Transform -- uid: 15143 - type: PortableScrubber - components: - - pos: -77.5,37.5 - parent: 1 - type: Transform -- uid: 15144 - type: PortableScrubber - components: - - pos: -77.5,36.5 - parent: 1 - type: Transform -- uid: 15145 - type: FireAxeCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -75.5,33.5 - parent: 1 - type: Transform -- uid: 15146 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 17.5,45.5 - parent: 1 - type: Transform -- uid: 15147 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 21.5,51.5 - parent: 1 - type: Transform -- uid: 15148 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 21.5,50.5 - parent: 1 - type: Transform -- uid: 15149 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 21.5,49.5 - parent: 1 - type: Transform -- uid: 15150 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 21.5,48.5 - parent: 1 - type: Transform -- uid: 15151 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 21.5,52.5 - parent: 1 - type: Transform -- uid: 15152 - type: GrilleBroken - components: - - pos: 21.5,55.5 - parent: 1 - type: Transform -- uid: 15153 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 19.5,55.5 - parent: 1 - type: Transform -- uid: 15154 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 17.5,53.5 - parent: 1 - type: Transform -- uid: 15155 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,53.5 - parent: 1 - type: Transform -- uid: 15156 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 19.5,53.5 - parent: 1 - type: Transform -- uid: 15157 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 19.5,52.5 - parent: 1 - type: Transform -- uid: 15158 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 19.5,51.5 - parent: 1 - type: Transform -- uid: 15159 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 19.5,50.5 - parent: 1 - type: Transform -- uid: 15160 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 19.5,49.5 - parent: 1 - type: Transform -- uid: 15161 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 19.5,48.5 - parent: 1 - type: Transform -- uid: 15162 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 16.5,52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15163 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 18.5,52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15164 - type: Bed - components: - - pos: 17.5,48.5 - parent: 1 - type: Transform -- uid: 15165 - type: BedsheetPurple - components: - - pos: 17.5,48.5 - parent: 1 - type: Transform -- uid: 15166 - type: DisposalUnit - components: - - pos: 17.5,37.5 - parent: 1 - type: Transform -- uid: 15167 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,50.5 - parent: 1 - type: Transform -- uid: 15168 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,50.5 - parent: 1 - type: Transform -- uid: 15169 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,50.5 - parent: 1 - type: Transform -- uid: 15170 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 16.5,50.5 - parent: 1 - type: Transform -- uid: 15171 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,50.5 - parent: 1 - type: Transform -- uid: 15172 - type: DisposalUnit - components: - - pos: 16.5,50.5 - parent: 1 - type: Transform -- uid: 15173 - type: BlastDoorOpen - components: - - pos: 13.5,53.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver -- uid: 15174 - type: BlastDoorOpen - components: - - pos: 14.5,53.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver -- uid: 15175 - type: BlastDoorOpen - components: - - pos: 15.5,53.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver -- uid: 15176 - type: BlastDoorOpen - components: - - pos: 16.5,53.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver -- uid: 15177 - type: BlastDoorOpen - components: - - pos: 17.5,53.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver -- uid: 15178 - type: BlastDoorOpen - components: - - pos: 18.5,53.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver -- uid: 15179 - type: BlastDoorOpen - components: - - pos: 19.5,53.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver -- uid: 15180 - type: BlastDoorOpen - components: - - pos: 19.5,52.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver -- uid: 15181 - type: BlastDoorOpen - components: - - pos: 19.5,51.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver -- uid: 15182 - type: BlastDoorOpen - components: - - pos: 19.5,50.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver -- uid: 15183 - type: BlastDoorOpen - components: - - pos: 19.5,49.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver -- uid: 15184 - type: BlastDoorOpen - components: - - pos: 19.5,48.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15185 - type: SignalReceiver -- uid: 15185 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: 18.5,48.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15173 - - port: Toggle - uid: 15175 - - port: Toggle - uid: 15174 - - port: Toggle - uid: 15177 - - port: Toggle - uid: 15178 - - port: Toggle - uid: 15179 - - port: Toggle - uid: 15180 - - port: Toggle - uid: 15181 - - port: Toggle - uid: 15182 - - port: Toggle - uid: 15183 - - port: Toggle - uid: 15184 - - port: Toggle - uid: 15176 - type: SignalTransmitter -- uid: 15186 - type: FoodSoupEyeball - components: - - pos: 4.4872284,54.545197 - parent: 1 - type: Transform -- uid: 15187 - type: Girder - components: - - pos: -68.5,48.5 - parent: 1 - type: Transform -- uid: 15188 - type: BlastDoorOpen - components: - - pos: -4.5,58.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver -- uid: 15189 - type: BlastDoorOpen - components: - - pos: -4.5,59.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver -- uid: 15190 - type: BlastDoorOpen - components: - - pos: -4.5,60.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver -- uid: 15191 - type: BlastDoorOpen - components: - - pos: -4.5,61.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver -- uid: 15192 - type: BlastDoorOpen - components: - - pos: -4.5,62.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver -- uid: 15193 - type: BlastDoorOpen - components: - - pos: -5.5,62.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver -- uid: 15194 - type: BlastDoorOpen - components: - - pos: -6.5,62.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver -- uid: 15195 - type: BlastDoorOpen - components: - - pos: -7.5,62.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver -- uid: 15196 - type: BlastDoorOpen - components: - - pos: -8.5,62.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver -- uid: 15197 - type: BlastDoorOpen - components: - - pos: -9.5,62.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15219 - type: SignalReceiver -- uid: 15198 - type: BlastDoorOpen - components: - - pos: -11.5,64.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15199 - type: BlastDoorOpen - components: - - pos: -11.5,65.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15200 - type: BlastDoorOpen - components: - - pos: -12.5,65.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15201 - type: BlastDoorOpen - components: - - pos: -12.5,66.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15202 - type: BlastDoorOpen - components: - - pos: -13.5,66.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15203 - type: BlastDoorOpen - components: - - pos: -13.5,67.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15204 - type: BlastDoorOpen - components: - - pos: -14.5,67.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15205 - type: BlastDoorOpen - components: - - pos: -15.5,67.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15206 - type: BlastDoorOpen - components: - - pos: -16.5,67.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15207 - type: BlastDoorOpen - components: - - pos: -17.5,67.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15208 - type: BlastDoorOpen - components: - - pos: -18.5,67.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15209 - type: BlastDoorOpen - components: - - pos: -19.5,67.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15210 - type: BlastDoorOpen - components: - - pos: -19.5,66.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15211 - type: BlastDoorOpen - components: - - pos: -20.5,66.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15212 - type: BlastDoorOpen - components: - - pos: -20.5,65.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15213 - type: BlastDoorOpen - components: - - pos: -21.5,65.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15214 - type: BlastDoorOpen - components: - - pos: -21.5,64.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15215 - type: BlastDoorOpen - components: - - pos: -22.5,62.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15216 - type: BlastDoorOpen - components: - - pos: -22.5,61.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15217 - type: BlastDoorOpen - components: - - pos: -22.5,60.5 - parent: 1 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15218 - type: SignalReceiver -- uid: 15218 - type: SignalButton - components: - - pos: -15.5,66.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15217 - - port: Toggle - uid: 15216 - - port: Toggle - uid: 15215 - - port: Toggle - uid: 15214 - - port: Toggle - uid: 15212 - - port: Toggle - uid: 15213 - - port: Toggle - uid: 15211 - - port: Toggle - uid: 15210 - - port: Toggle - uid: 15209 - - port: Toggle - uid: 15208 - - port: Toggle - uid: 15207 - - port: Toggle - uid: 15206 - - port: Toggle - uid: 15205 - - port: Toggle - uid: 15204 - - port: Toggle - uid: 15203 - - port: Toggle - uid: 15202 - - port: Toggle - uid: 15201 - - port: Toggle - uid: 15200 - - port: Toggle - uid: 15199 - - port: Toggle - uid: 15198 - type: SignalTransmitter -- uid: 15219 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: -10.5,60.5 - parent: 1 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15197 - - port: Toggle - uid: 15196 - - port: Toggle - uid: 15195 - - port: Toggle - uid: 15194 - - port: Toggle - uid: 15193 - - port: Toggle - uid: 15192 - - port: Toggle - uid: 15191 - - port: Toggle - uid: 15190 - - port: Toggle - uid: 15189 - - port: Toggle - uid: 15188 - type: SignalTransmitter -- uid: 15220 - type: TableWood - components: - - pos: 17.5,52.5 - parent: 1 - type: Transform -- uid: 15221 - type: soda_dispenser - components: - - rot: 3.141592653589793 rad - pos: 15.5,50.5 - parent: 1 - type: Transform -- uid: 15222 - type: DrinkGlass - components: - - pos: 17.303202,52.65593 - parent: 1 - type: Transform -- uid: 15223 - type: DrinkGlass - components: - - pos: 17.678202,52.59343 - parent: 1 - type: Transform -- uid: 15224 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -87.5,22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15225 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -2.5,37.5 - parent: 1 - type: Transform -- uid: 15226 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -87.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15227 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 2.5,43.5 - parent: 1 - type: Transform -- uid: 15228 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 4.5,42.5 - parent: 1 - type: Transform -- uid: 15229 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 0.5,42.5 - parent: 1 - type: Transform -- uid: 15230 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 2.5,44.5 - parent: 1 - type: Transform -- uid: 15231 - type: BookBase - components: - - pos: 18.514118,48.62632 - parent: 1 - type: Transform -- uid: 15232 - type: Pen - components: - - pos: 18.717243,48.360695 - parent: 1 - type: Transform -- uid: 15233 - type: CableHV - components: - - pos: 17.5,46.5 - parent: 1 - type: Transform -- uid: 15234 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 16.5,44.5 - parent: 1 - type: Transform -- uid: 15235 - type: CableMV - components: - - pos: 17.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15236 - type: CableMV - components: - - pos: 16.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15237 - type: CableApcExtension - components: - - pos: 17.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15238 - type: CableApcExtension - components: - - pos: 17.5,48.5 - parent: 1 - type: Transform -- uid: 15239 - type: CableApcExtension - components: - - pos: 17.5,49.5 - parent: 1 - type: Transform -- uid: 15240 - type: CableApcExtension - components: - - pos: 17.5,50.5 - parent: 1 - type: Transform -- uid: 15241 - type: CableApcExtension - components: - - pos: 17.5,51.5 - parent: 1 - type: Transform -- uid: 15242 - type: CableApcExtension - components: - - pos: 16.5,51.5 - parent: 1 - type: Transform -- uid: 15243 - type: CableApcExtension - components: - - pos: 15.5,51.5 - parent: 1 - type: Transform -- uid: 15244 - type: CableApcExtension - components: - - pos: 14.5,51.5 - parent: 1 - type: Transform -- uid: 15245 - type: CableApcExtension - components: - - pos: 16.5,52.5 - parent: 1 - type: Transform -- uid: 15246 - type: CableApcExtension - components: - - pos: 13.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15247 - type: CableApcExtension - components: - - pos: 14.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15248 - type: CableApcExtension - components: - - pos: 15.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15249 - type: CableApcExtension - components: - - pos: 16.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15250 - type: CableApcExtension - components: - - pos: 17.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15251 - type: CableApcExtension - components: - - pos: 18.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15252 - type: CableApcExtension - components: - - pos: 19.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15253 - type: CableApcExtension - components: - - pos: 18.5,50.5 - parent: 1 - type: Transform -- uid: 15254 - type: CableApcExtension - components: - - pos: 19.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15255 - type: CableApcExtension - components: - - pos: 19.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15256 - type: CableApcExtension - components: - - pos: 19.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15257 - type: CableApcExtension - components: - - pos: 19.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15258 - type: CableApcExtension - components: - - pos: 19.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15259 - type: AsteroidRock - components: - - pos: -56.5,93.5 - parent: 1 - type: Transform -- uid: 15260 - type: AsteroidRock - components: - - pos: -57.5,93.5 - parent: 1 - type: Transform -- uid: 15261 - type: AsteroidRock - components: - - pos: -58.5,93.5 - parent: 1 - type: Transform -- uid: 15262 - type: AsteroidRock - components: - - pos: -59.5,93.5 - parent: 1 - type: Transform -- uid: 15263 - type: AsteroidRock - components: - - pos: -58.5,91.5 - parent: 1 - type: Transform -- uid: 15264 - type: AsteroidRock - components: - - pos: -57.5,91.5 - parent: 1 - type: Transform -- uid: 15265 - type: AsteroidRock - components: - - pos: -61.5,81.5 - parent: 1 - type: Transform -- uid: 15266 - type: AsteroidRock - components: - - pos: -60.5,81.5 - parent: 1 - type: Transform -- uid: 15267 - type: AsteroidRock - components: - - pos: -59.5,81.5 - parent: 1 - type: Transform -- uid: 15268 - type: AsteroidRock - components: - - pos: -58.5,81.5 - parent: 1 - type: Transform -- uid: 15269 - type: AsteroidRock - components: - - pos: -57.5,81.5 - parent: 1 - type: Transform -- uid: 15270 - type: AsteroidRock - components: - - pos: -57.5,80.5 - parent: 1 - type: Transform -- uid: 15271 - type: AsteroidRock - components: - - pos: -58.5,80.5 - parent: 1 - type: Transform -- uid: 15272 - type: AsteroidRock - components: - - pos: -59.5,80.5 - parent: 1 - type: Transform -- uid: 15273 - type: AsteroidRock - components: - - pos: -60.5,80.5 - parent: 1 - type: Transform -- uid: 15274 - type: AsteroidRock - components: - - pos: -51.5,93.5 - parent: 1 - type: Transform -- uid: 15275 - type: AsteroidRock - components: - - pos: -50.5,92.5 - parent: 1 - type: Transform -- uid: 15276 - type: AsteroidRock - components: - - pos: -55.5,94.5 - parent: 1 - type: Transform -- uid: 15277 - type: AsteroidRock - components: - - pos: -54.5,94.5 - parent: 1 - type: Transform -- uid: 15278 - type: Pickaxe - components: - - pos: -55.437958,92.56956 - parent: 1 - type: Transform -- uid: 15279 - type: ClothingHeadHelmetSyndicate - components: - - pos: -57.70341,92.69456 - parent: 1 - type: Transform -- uid: 15280 - type: ClothingOuterHardsuitSyndicate - components: - - pos: -57.469036,92.47581 - parent: 1 - type: Transform -- uid: 15281 - type: YellowOxygenTankFilled - components: - - pos: -55.3658,79.64196 - parent: 1 - type: Transform -- uid: 15282 - type: CableApcExtension - components: - - pos: 7.5,40.5 - parent: 1 - type: Transform -- uid: 15283 - type: CableApcExtension - components: - - pos: 7.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15284 - type: CableApcExtension - components: - - pos: 7.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15285 - type: CableApcExtension - components: - - pos: 7.5,43.5 - parent: 1 - type: Transform -- uid: 15286 - type: CableApcExtension - components: - - pos: 7.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15287 - type: CableApcExtension - components: - - pos: 7.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15288 - type: CableApcExtension - components: - - pos: 7.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15289 - type: Firelock - components: - - pos: 22.5,20.5 - parent: 1 - type: Transform -- uid: 15290 - type: Firelock - components: - - pos: 23.5,20.5 - parent: 1 - type: Transform -- uid: 15291 - type: CableApcExtension - components: - - pos: 10.5,33.5 - parent: 1 - type: Transform -- uid: 15292 - type: ExtinguisherCabinetFilled - components: - - pos: -2.5,18.5 - parent: 1 - type: Transform -- uid: 15293 - type: ExtinguisherCabinetFilled - components: - - pos: 1.5,18.5 - parent: 1 - type: Transform -- uid: 15294 - type: ExtinguisherCabinetFilled - components: - - pos: 5.5,15.5 - parent: 1 - type: Transform -- uid: 15295 - type: ExtinguisherCabinetFilled - components: - - pos: 8.5,27.5 - parent: 1 - type: Transform -- uid: 15296 - type: ExtinguisherCabinetFilled - components: - - pos: 5.5,36.5 - parent: 1 - type: Transform -- uid: 15297 - type: ExtinguisherCabinetFilled - components: - - pos: -19.5,56.5 - parent: 1 - type: Transform -- uid: 15298 - type: ExtinguisherCabinetFilled - components: - - pos: -18.5,61.5 - parent: 1 - type: Transform -- uid: 15299 - type: ExtinguisherCabinetFilled - components: - - pos: -9.5,58.5 - parent: 1 - type: Transform -- uid: 15300 - type: ExtinguisherCabinetFilled - components: - - pos: -60.5,56.5 - parent: 1 - type: Transform -- uid: 15301 - type: ExtinguisherCabinetFilled - components: - - pos: -53.5,59.5 - parent: 1 - type: Transform -- uid: 15302 - type: ExtinguisherCabinetFilled - components: - - pos: -45.5,55.5 - parent: 1 - type: Transform -- uid: 15303 - type: ExtinguisherCabinetFilled - components: - - pos: -45.5,60.5 - parent: 1 - type: Transform -- uid: 15304 - type: ExtinguisherCabinetFilled - components: - - pos: -53.5,67.5 - parent: 1 - type: Transform -- uid: 15305 - type: ExtinguisherCabinetFilled - components: - - pos: -57.5,63.5 - parent: 1 - type: Transform -- uid: 15306 - type: ExtinguisherCabinetFilled - components: - - pos: -56.5,88.5 - parent: 1 - type: Transform -- uid: 15307 - type: ExtinguisherCabinetFilled - components: - - pos: -62.5,82.5 - parent: 1 - type: Transform -- uid: 15308 - type: ExtinguisherCabinetFilled - components: - - pos: -49.5,82.5 - parent: 1 - type: Transform -- uid: 15309 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 15310 - type: EmergencyLight - components: - - pos: -1.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 15311 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 15312 - type: EmergencyLight - components: - - pos: 8.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 15313 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 9.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 15314 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 8.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 15315 - type: EmergencyLight - components: - - pos: 7.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 15316 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 1.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 15317 - type: ExtinguisherCabinetFilled - components: - - rot: 1.5707963267948966 rad - pos: -75.5,19.5 - parent: 1 - type: Transform -- uid: 15318 - type: ExtinguisherCabinetFilled - components: - - rot: 1.5707963267948966 rad - pos: -83.5,22.5 - parent: 1 - type: Transform -- uid: 15319 - type: ExtinguisherCabinetFilled - components: - - rot: 1.5707963267948966 rad - pos: -75.5,31.5 - parent: 1 - type: Transform -- uid: 15320 - type: ExtinguisherCabinetFilled - components: - - rot: 1.5707963267948966 rad - pos: -76.5,42.5 - parent: 1 - type: Transform -- uid: 15321 - type: ExtinguisherCabinetFilled - components: - - rot: 1.5707963267948966 rad - pos: -65.5,29.5 - parent: 1 - type: Transform -- uid: 15322 - type: ExtinguisherCabinetFilled - components: - - rot: 1.5707963267948966 rad - pos: -66.5,18.5 - parent: 1 - type: Transform -- uid: 15323 - type: ExtinguisherCabinetFilled - components: - - rot: 1.5707963267948966 rad - pos: -62.5,46.5 - parent: 1 - type: Transform -- uid: 15324 - type: ExtinguisherCabinetFilled - components: - - rot: 1.5707963267948966 rad - pos: -59.5,38.5 - parent: 1 - type: Transform -- uid: 15325 - type: ExtinguisherCabinetFilled - components: - - rot: 1.5707963267948966 rad - pos: -52.5,48.5 - parent: 1 - type: Transform -- uid: 15326 - type: ExtinguisherCabinetFilled - components: - - rot: 1.5707963267948966 rad - pos: -45.5,38.5 - parent: 1 - type: Transform -- uid: 15327 - type: CableHV - components: - - pos: -69.5,20.5 - parent: 1 - type: Transform -- uid: 15328 - type: CableHV - components: - - pos: -69.5,19.5 - parent: 1 - type: Transform -- uid: 15329 - type: CableHV - components: - - pos: -69.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15330 - type: CableHV - components: - - pos: -70.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15331 - type: CableHV - components: - - pos: -68.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15332 - type: CableHV - components: - - pos: -73.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15333 - type: WallReinforced - components: - - pos: 25.5,29.5 - parent: 1 - type: Transform -- uid: 15334 - type: WallReinforced - components: - - pos: 29.5,25.5 - parent: 1 - type: Transform -- uid: 15335 - type: WallReinforced - components: - - pos: 29.5,24.5 - parent: 1 - type: Transform -- uid: 15336 - type: TelecomServer - components: - - pos: 25.5,28.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 15337 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 15337 - type: EncryptionKeyCommand - components: - - flags: InContainer - type: MetaData - - parent: 15336 - type: Transform - - canCollide: False - type: Physics -- uid: 15338 - type: TelecomServer - components: - - pos: 27.5,28.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 15339 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 15339 - type: EncryptionKeyEngineering - components: - - flags: InContainer - type: MetaData - - parent: 15338 - type: Transform - - canCollide: False - type: Physics -- uid: 15340 - type: TelecomServer - components: - - pos: 28.5,28.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 15341 - - 15342 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 15341 - type: EncryptionKeyMedical - components: - - flags: InContainer - type: MetaData - - parent: 15340 - type: Transform - - canCollide: False - type: Physics -- uid: 15342 - type: EncryptionKeyMedicalScience - components: - - flags: InContainer - type: MetaData - - parent: 15340 - type: Transform - - canCollide: False - type: Physics -- uid: 15343 - type: TelecomServer - components: - - pos: 28.5,26.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 15344 - - 15345 - - 15346 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 15344 - type: EncryptionKeyScience - components: - - flags: InContainer - type: MetaData - - parent: 15343 - type: Transform - - canCollide: False - type: Physics -- uid: 15345 - type: EncryptionKeyMedicalScience - components: - - flags: InContainer - type: MetaData - - parent: 15343 - type: Transform - - canCollide: False - type: Physics -- uid: 15346 - type: EncryptionKeyRobo - components: - - flags: InContainer - type: MetaData - - parent: 15343 - type: Transform - - canCollide: False - type: Physics -- uid: 15347 - type: TelecomServer - components: - - pos: 28.5,25.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 15348 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 15348 - type: EncryptionKeyCargo - components: - - flags: InContainer - type: MetaData - - parent: 15347 - type: Transform - - canCollide: False - type: Physics -- uid: 15349 - type: HospitalCurtainsOpen - components: - - pos: -5.5,58.5 - parent: 1 - type: Transform -- uid: 15350 - type: Grille - components: - - pos: 28.5,32.5 - parent: 1 - type: Transform -- uid: 15351 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 29.5,32.5 - parent: 1 - type: Transform -- uid: 15352 - type: Grille - components: - - pos: 30.5,32.5 - parent: 1 - type: Transform -- uid: 15353 - type: Grille - components: - - pos: 31.5,32.5 - parent: 1 - type: Transform -- uid: 15354 - type: Grille - components: - - pos: 32.5,32.5 - parent: 1 - type: Transform -- uid: 15355 - type: Grille - components: - - pos: 32.5,31.5 - parent: 1 - type: Transform -- uid: 15356 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 32.5,30.5 - parent: 1 - type: Transform -- uid: 15357 - type: Grille - components: - - pos: 32.5,29.5 - parent: 1 - type: Transform -- uid: 15358 - type: Grille - components: - - pos: 32.5,27.5 - parent: 1 - type: Transform -- uid: 15359 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 32.5,26.5 - parent: 1 - type: Transform -- uid: 15360 - type: Grille - components: - - pos: 32.5,25.5 - parent: 1 - type: Transform -- uid: 15361 - type: GrilleBroken - components: - - pos: 32.5,24.5 - parent: 1 - type: Transform -- uid: 15362 - type: Grille - components: - - pos: 32.5,23.5 - parent: 1 - type: Transform -- uid: 15363 - type: Grille - components: - - pos: 32.5,22.5 - parent: 1 - type: Transform -- uid: 15364 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 32.5,21.5 - parent: 1 - type: Transform -- uid: 15365 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 27.5,28.5 - parent: 1 - type: Transform - - id: Telecomms - type: SurveillanceCamera -- uid: 15366 - type: EncryptionKeyCommon - components: - - pos: 27.658451,23.492924 - parent: 1 - type: Transform -- uid: 15367 - type: EncryptionKeyService - components: - - pos: 27.345951,23.492924 - parent: 1 - type: Transform -- uid: 15368 - type: BoxCardboard - components: - - desc: A box of spare encryption keys. - name: spare encryption keys box - type: MetaData - - pos: 27.49369,23.624804 - parent: 1 - type: Transform - - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 15369 - - 15370 - - 15371 - - 15372 - - 15373 - - 15374 - type: ContainerContainer -- uid: 15369 - type: EncryptionKeyCommand - components: - - flags: InContainer - type: MetaData - - parent: 15368 - type: Transform - - canCollide: False - type: Physics -- uid: 15370 - type: EncryptionKeySecurity - components: - - flags: InContainer - type: MetaData - - parent: 15368 - type: Transform - - canCollide: False - type: Physics -- uid: 15371 - type: EncryptionKeyEngineering - components: - - flags: InContainer - type: MetaData - - parent: 15368 - type: Transform - - canCollide: False - type: Physics -- uid: 15372 - type: EncryptionKeyMedical - components: - - flags: InContainer - type: MetaData - - parent: 15368 - type: Transform - - canCollide: False - type: Physics -- uid: 15373 - type: EncryptionKeyScience - components: - - flags: InContainer - type: MetaData - - parent: 15368 - type: Transform - - canCollide: False - type: Physics -- uid: 15374 - type: EncryptionKeyCargo - components: - - flags: InContainer - type: MetaData - - parent: 15368 - type: Transform - - canCollide: False - type: Physics -- uid: 15375 - type: GasRecyclerMachineCircuitboard - components: - - pos: -52.478607,23.323547 - parent: 1 - type: Transform -- uid: 15376 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 19.5,7.5 - parent: 1 - type: Transform -- uid: 15377 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 19.5,7.5 - parent: 1 - type: Transform -- uid: 15378 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 26.5,22.5 - parent: 1 - type: Transform -- uid: 15379 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 26.5,4.5 - parent: 1 - type: Transform -- uid: 15380 - type: CableApcExtension - components: - - pos: -16.5,53.5 - parent: 1 - type: Transform -- uid: 15381 - type: SignTelecomms - components: - - pos: 27.5,22.5 - parent: 1 - type: Transform -- uid: 15382 - type: ReinforcedWindow - components: - - pos: -41.5,69.5 - parent: 1 - type: Transform -- uid: 15383 - type: ReinforcedWindow - components: - - pos: -42.5,69.5 - parent: 1 - type: Transform -- uid: 15384 - type: ReinforcedWindow - components: - - pos: -43.5,69.5 - parent: 1 - type: Transform -- uid: 15385 - type: ReinforcedWindow - components: - - pos: -44.5,69.5 - parent: 1 - type: Transform -- uid: 15386 - type: Grille - components: - - pos: -44.5,69.5 - parent: 1 - type: Transform -- uid: 15387 - type: Grille - components: - - pos: -43.5,69.5 - parent: 1 - type: Transform -- uid: 15388 - type: Grille - components: - - pos: -42.5,69.5 - parent: 1 - type: Transform -- uid: 15389 - type: Grille - components: - - pos: -41.5,69.5 - parent: 1 - type: Transform -- uid: 15390 - type: Grille - components: - - pos: -40.5,69.5 - parent: 1 - type: Transform -- uid: 15391 - type: Grille - components: - - pos: -39.5,69.5 - parent: 1 - type: Transform -- uid: 15392 - type: Grille - components: - - pos: -38.5,69.5 - parent: 1 - type: Transform -- uid: 15393 - type: Grille - components: - - pos: -37.5,69.5 - parent: 1 - type: Transform -- uid: 15394 - type: Grille - components: - - pos: -36.5,69.5 - parent: 1 - type: Transform -- uid: 15395 - type: Grille - components: - - pos: -36.5,68.5 - parent: 1 - type: Transform -- uid: 15396 - type: Grille - components: - - pos: -36.5,67.5 - parent: 1 - type: Transform -- uid: 15397 - type: Grille - components: - - pos: -36.5,66.5 - parent: 1 - type: Transform -- uid: 15398 - type: Grille - components: - - pos: -36.5,65.5 - parent: 1 - type: Transform -- uid: 15399 - type: Grille - components: - - pos: -36.5,64.5 - parent: 1 - type: Transform -- uid: 15400 - type: Grille - components: - - pos: -36.5,63.5 - parent: 1 - type: Transform -- uid: 15401 - type: Grille - components: - - pos: -36.5,62.5 - parent: 1 - type: Transform -- uid: 15402 - type: Grille - components: - - pos: -36.5,61.5 - parent: 1 - type: Transform -- uid: 15403 - type: Grille - components: - - pos: -36.5,60.5 - parent: 1 - type: Transform -- uid: 15404 - type: Grille - components: - - pos: -36.5,59.5 - parent: 1 - type: Transform -- uid: 15405 - type: CableHV - components: - - pos: -36.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15406 - type: CableHV - components: - - pos: -36.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15407 - type: CableHV - components: - - pos: -36.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15408 - type: CableHV - components: - - pos: -36.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15409 - type: CableHV - components: - - pos: -36.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15410 - type: CableHV - components: - - pos: -36.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15411 - type: CableHV - components: - - pos: -36.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15412 - type: CableHV - components: - - pos: -36.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15413 - type: CableHV - components: - - pos: -36.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15414 - type: CableHV - components: - - pos: -36.5,65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15415 - type: CableHV - components: - - pos: -36.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15416 - type: CableHV - components: - - pos: -36.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15417 - type: CableHV - components: - - pos: -36.5,68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15418 - type: CableHV - components: - - pos: -36.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15419 - type: CableHV - components: - - pos: -37.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15420 - type: CableHV - components: - - pos: -38.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15421 - type: CableHV - components: - - pos: -39.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15422 - type: CableHV - components: - - pos: -40.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15423 - type: CableHV - components: - - pos: -41.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15424 - type: CableHV - components: - - pos: -42.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15425 - type: CableHV - components: - - pos: -43.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15426 - type: CableHV - components: - - pos: -44.5,69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15427 - type: PoweredlightSodium - components: - - pos: -41.5,58.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15428 - type: PoweredlightSodium - components: - - rot: 1.5707963267948966 rad - pos: -38.5,63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15429 - type: PoweredlightSodium - components: - - rot: 3.141592653589793 rad - pos: -42.5,68.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15430 - type: CableApcExtension - components: - - pos: -41.5,63.5 - parent: 1 - type: Transform -- uid: 15431 - type: CableApcExtension - components: - - pos: -40.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15432 - type: CableApcExtension - components: - - pos: -42.5,61.5 - parent: 1 - type: Transform -- uid: 15433 - type: CableApcExtension - components: - - pos: -42.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15434 - type: CableApcExtension - components: - - pos: -42.5,66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15435 - type: GrilleBroken - components: - - pos: -34.5,61.5 - parent: 1 - type: Transform -- uid: 15436 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -34.5,62.5 - parent: 1 - type: Transform -- uid: 15437 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -34.5,63.5 - parent: 1 - type: Transform -- uid: 15438 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -34.5,64.5 - parent: 1 - type: Transform -- uid: 15439 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -34.5,65.5 - parent: 1 - type: Transform -- uid: 15440 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -34.5,66.5 - parent: 1 - type: Transform -- uid: 15441 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -34.5,67.5 - parent: 1 - type: Transform -- uid: 15442 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -34.5,68.5 - parent: 1 - type: Transform -- uid: 15443 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -34.5,69.5 - parent: 1 - type: Transform -- uid: 15444 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -34.5,70.5 - parent: 1 - type: Transform -- uid: 15445 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -34.5,71.5 - parent: 1 - type: Transform -- uid: 15446 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -35.5,71.5 - parent: 1 - type: Transform -- uid: 15447 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -36.5,71.5 - parent: 1 - type: Transform -- uid: 15448 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -37.5,71.5 - parent: 1 - type: Transform -- uid: 15449 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -38.5,71.5 - parent: 1 - type: Transform -- uid: 15450 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -39.5,71.5 - parent: 1 - type: Transform -- uid: 15451 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -40.5,71.5 - parent: 1 - type: Transform -- uid: 15452 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -41.5,71.5 - parent: 1 - type: Transform -- uid: 15453 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -34.5,60.5 - parent: 1 - type: Transform -- uid: 15454 - type: Catwalk - components: - - pos: -37.5,61.5 - parent: 1 - type: Transform -- uid: 15455 - type: Catwalk - components: - - pos: -42.5,68.5 - parent: 1 - type: Transform -- uid: 15456 - type: LandMineExplosive - components: - - pos: -42.49931,68.53585 - parent: 1 - type: Transform -- uid: 15457 - type: LandMineExplosive - components: - - pos: -37.49931,61.461067 - parent: 1 - type: Transform -- uid: 15458 - type: Catwalk - components: - - pos: -38.5,64.5 - parent: 1 - type: Transform -- uid: 15459 - type: Catwalk - components: - - pos: -37.5,67.5 - parent: 1 - type: Transform -- uid: 15460 - type: Catwalk - components: - - pos: -38.5,58.5 - parent: 1 - type: Transform -- uid: 15461 - type: Catwalk - components: - - pos: -44.5,57.5 - parent: 1 - type: Transform -- uid: 15462 - type: CableHV - components: - - pos: -44.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15463 - type: CableHV - components: - - pos: -41.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15464 - type: Grille - components: - - pos: -42.5,57.5 - parent: 1 - type: Transform -- uid: 15465 - type: Grille - components: - - pos: -40.5,58.5 - parent: 1 - type: Transform -- uid: 15466 - type: CableHV - components: - - pos: -37.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15467 - type: Grille - components: - - pos: -37.5,57.5 - parent: 1 - type: Transform -- uid: 15468 - type: CableHV - components: - - pos: -38.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15469 - type: CableHV - components: - - pos: -40.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15470 - type: CableHV - components: - - pos: -38.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15471 - type: CableHV - components: - - pos: -39.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15472 - type: Catwalk - components: - - pos: -42.5,58.5 - parent: 1 - type: Transform -- uid: 15473 - type: Catwalk - components: - - pos: -40.5,57.5 - parent: 1 - type: Transform -- uid: 15474 - type: Catwalk - components: - - pos: -39.5,58.5 - parent: 1 - type: Transform -- uid: 15475 - type: Grille - components: - - pos: -44.5,58.5 - parent: 1 - type: Transform -- uid: 15476 - type: CableHV - components: - - pos: -43.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15477 - type: CableHV - components: - - pos: -41.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15478 - type: Catwalk - components: - - pos: -43.5,58.5 - parent: 1 - type: Transform -- uid: 15479 - type: CableHV - components: - - pos: -38.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15480 - type: Catwalk - components: - - pos: -41.5,57.5 - parent: 1 - type: Transform -- uid: 15481 - type: Catwalk - components: - - pos: -39.5,57.5 - parent: 1 - type: Transform -- uid: 15482 - type: Catwalk - components: - - pos: -41.5,58.5 - parent: 1 - type: Transform -- uid: 15483 - type: Catwalk - components: - - pos: -43.5,57.5 - parent: 1 - type: Transform -- uid: 15484 - type: Grille - components: - - pos: -38.5,59.5 - parent: 1 - type: Transform -- uid: 15485 - type: CableHV - components: - - pos: -43.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15486 - type: CableHV - components: - - pos: -42.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15487 - type: Catwalk - components: - - pos: -39.5,68.5 - parent: 1 - type: Transform -- uid: 15488 - type: LandMineExplosive - components: - - pos: -38.49931,64.50794 - parent: 1 - type: Transform -- uid: 15489 - type: LandMineExplosive - components: - - pos: -37.483685,67.49232 - parent: 1 - type: Transform -- uid: 15490 - type: LandMineExplosive - components: - - pos: -39.483685,68.52357 - parent: 1 - type: Transform -- uid: 15491 - type: Catwalk - components: - - pos: -38.5,57.5 - parent: 1 - type: Transform -- uid: 15492 - type: Catwalk - components: - - pos: -37.5,58.5 - parent: 1 - type: Transform -- uid: 15493 - type: Catwalk - components: - - pos: -37.5,59.5 - parent: 1 - type: Transform -- uid: 15494 - type: ClothingShoesBootsCombatFilled - components: - - pos: -35.545906,68.57638 - parent: 1 - type: Transform -- uid: 15495 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -5.5,-18.5 - parent: 1 - type: Transform -- uid: 15496 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -87.5,33.5 - parent: 1 - type: Transform -- uid: 15497 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -87.5,32.5 - parent: 1 - type: Transform -- uid: 15498 - type: SheetPlasma - components: - - rot: 3.141592653589793 rad - pos: -53.107254,29.575062 - parent: 1 - type: Transform -- uid: 15499 - type: ReinforcedPlasmaWindow - components: - - pos: -86.5,32.5 - parent: 1 - type: Transform -- uid: 15500 - type: Grille - components: - - pos: -86.5,32.5 - parent: 1 - type: Transform -- uid: 15501 - type: Catwalk - components: - - pos: -5.5,-19.5 - parent: 1 - type: Transform -- uid: 15502 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -87.5,32.5 - parent: 1 - type: Transform -- uid: 15503 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -87.5,33.5 - parent: 1 - type: Transform -- uid: 15504 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-22.5 - parent: 1 - type: Transform -- uid: 15505 - type: Catwalk - components: - - pos: -1.5,-20.5 - parent: 1 - type: Transform -- uid: 15506 - type: Catwalk - components: - - pos: -0.5,-20.5 - parent: 1 - type: Transform -- uid: 15507 - type: Catwalk - components: - - pos: 1.5,-20.5 - parent: 1 - type: Transform -- uid: 15508 - type: Catwalk - components: - - pos: 3.5,-20.5 - parent: 1 - type: Transform -- uid: 15509 - type: Catwalk - components: - - pos: 5.5,-20.5 - parent: 1 - type: Transform -- uid: 15510 - type: Grille - components: - - pos: -1.5,-22.5 - parent: 1 - type: Transform -- uid: 15511 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-22.5 - parent: 1 - type: Transform -- uid: 15512 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 1 - type: Transform -- uid: 15513 - type: Grille - components: - - pos: -6.5,-22.5 - parent: 1 - type: Transform -- uid: 15514 - type: Grille - components: - - pos: -7.5,-21.5 - parent: 1 - type: Transform -- uid: 15515 - type: Grille - components: - - pos: -7.5,-19.5 - parent: 1 - type: Transform -- uid: 15516 - type: ComputerAnalysisConsole - components: - - pos: 9.5,-17.5 - parent: 1 - type: Transform -- uid: 15517 - type: CableApcExtension - components: - - pos: -5.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15518 - type: CableApcExtension - components: - - pos: -5.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15519 - type: CableApcExtension - components: - - pos: -5.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15520 - type: Catwalk - components: - - pos: -5.5,-20.5 - parent: 1 - type: Transform -- uid: 15521 - type: Catwalk - components: - - pos: -4.5,-20.5 - parent: 1 - type: Transform -- uid: 15522 - type: Catwalk - components: - - pos: -2.5,-20.5 - parent: 1 - type: Transform -- uid: 15523 - type: Catwalk - components: - - pos: 0.5,-20.5 - parent: 1 - type: Transform -- uid: 15524 - type: Catwalk - components: - - pos: 2.5,-20.5 - parent: 1 - type: Transform -- uid: 15525 - type: Catwalk - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform -- uid: 15526 - type: Catwalk - components: - - pos: 6.5,-20.5 - parent: 1 - type: Transform -- uid: 15527 - type: Floodlight - components: - - pos: 7.5332904,-17.502348 - parent: 1 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 15528 - type: Grille - components: - - pos: -0.5,-22.5 - parent: 1 - type: Transform -- uid: 15529 - type: Grille - components: - - pos: -3.5,-22.5 - parent: 1 - type: Transform -- uid: 15530 - type: Grille - components: - - pos: -5.5,-22.5 - parent: 1 - type: Transform -- uid: 15531 - type: Grille - components: - - pos: -7.5,-22.5 - parent: 1 - type: Transform -- uid: 15532 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -7.5,-20.5 - parent: 1 - type: Transform -- uid: 15533 - type: Grille - components: - - pos: 2.5,-22.5 - parent: 1 - type: Transform -- uid: 15534 - type: Grille - components: - - pos: 3.5,-22.5 - parent: 1 - type: Transform -- uid: 15535 - type: CableApcStack - components: - - pos: -4.5217714,-18.557777 - parent: 1 - type: Transform -- uid: 15536 - type: Grille - components: - - pos: 5.5,-22.5 - parent: 1 - type: Transform -- uid: 15537 - type: Grille - components: - - pos: 6.5,-22.5 - parent: 1 - type: Transform -- uid: 15538 - type: Grille - components: - - pos: 7.5,-22.5 - parent: 1 - type: Transform -- uid: 15539 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 8.5,-22.5 - parent: 1 - type: Transform -- uid: 15540 - type: Grille - components: - - pos: 10.5,-22.5 - parent: 1 - type: Transform -- uid: 15541 - type: Grille - components: - - pos: 11.5,-22.5 - parent: 1 - type: Transform -- uid: 15542 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 1 - type: Transform -- uid: 15543 - type: Grille - components: - - pos: 13.5,-22.5 - parent: 1 - type: Transform -- uid: 15544 - type: Grille - components: - - pos: 14.5,-22.5 - parent: 1 - type: Transform -- uid: 15545 - type: Grille - components: - - pos: 14.5,-21.5 - parent: 1 - type: Transform -- uid: 15546 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-20.5 - parent: 1 - type: Transform -- uid: 15547 - type: Table - components: - - pos: 11.5,-20.5 - parent: 1 - type: Transform -- uid: 15548 - type: Table - components: - - pos: 12.5,-20.5 - parent: 1 - type: Transform -- uid: 15549 - type: ToolboxElectricalFilled - components: - - pos: 12.466422,-20.487698 - parent: 1 - type: Transform -- uid: 15550 - type: GasAnalyzer - components: - - pos: 11.778922,-20.456448 - parent: 1 - type: Transform -- uid: 15551 - type: Catwalk - components: - - pos: 8.5,-18.5 - parent: 1 - type: Transform -- uid: 15552 - type: Catwalk - components: - - pos: 8.5,-19.5 - parent: 1 - type: Transform -- uid: 15553 - type: Catwalk - components: - - pos: 9.5,-18.5 - parent: 1 - type: Transform -- uid: 15554 - type: Catwalk - components: - - pos: 9.5,-19.5 - parent: 1 - type: Transform -- uid: 15555 - type: Catwalk - components: - - pos: 10.5,-18.5 - parent: 1 - type: Transform -- uid: 15556 - type: Catwalk - components: - - pos: 10.5,-19.5 - parent: 1 - type: Transform -- uid: 15557 - type: CrateMaterialSteel - components: - - pos: 10.5,-20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 220.53748 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15558 - type: CrateMaterialSteel - components: - - pos: 9.5,-20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 220.53748 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15559 - type: trayScanner - components: - - pos: 11.419547,-20.393948 - parent: 1 - type: Transform -- uid: 15560 - type: ToolboxMechanicalFilled - components: - - pos: 12.466422,-20.253323 - parent: 1 - type: Transform -- uid: 15561 - type: MaintenanceWeaponSpawner - components: - - pos: 6.5,-16.5 - parent: 1 - type: Transform -- uid: 15562 - type: MaintenanceWeaponSpawner - components: - - pos: 9.5,-16.5 - parent: 1 - type: Transform -- uid: 15563 - type: PoweredLightPostSmall - components: - - pos: -1.5,-19.5 - parent: 1 - type: Transform -- uid: 15564 - type: PoweredLightPostSmall - components: - - pos: 7.5,-21.5 - parent: 1 - type: Transform -- uid: 15565 - type: PoweredLightPostSmall - components: - - pos: 13.5,-18.5 - parent: 1 - type: Transform -... diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml deleted file mode 100644 index 1b2867b84e..0000000000 --- a/Resources/Maps/box.yml +++ /dev/null @@ -1,213106 +0,0 @@ -meta: - format: 3 - name: DemoStation - author: Space-Wizards - postmapinit: false -tilemap: - 0: Space - 4: FloorAsteroidCoarseSand0 - 5: FloorAsteroidCoarseSandDug - 12: FloorBar - 14: FloorBlue - 15: FloorBlueCircuit - 17: FloorCarpetClown - 18: FloorCarpetOffice - 21: FloorClown - 22: FloorDark - 27: FloorDarkMono - 34: FloorEighties - 37: FloorFreezer - 38: FloorGlass - 40: FloorGrass - 42: FloorGrassJungle - 46: FloorHydro - 47: FloorKitchen - 48: FloorLaundry - 49: FloorLino - 51: FloorMetalDiamond - 52: FloorMime - 53: FloorMono - 58: FloorReinforced - 60: FloorShowroom - 62: FloorShuttleOrange - 68: FloorSteel - 71: FloorSteelDirty - 78: FloorTechMaint - 79: FloorTechMaint2 - 81: FloorWhite - 90: FloorWhitePlastic - 91: FloorWood - 93: Lattice - 94: Plating -entities: -- uid: 0 - type: WallSolid - components: - - pos: -7.5,14.5 - parent: 8364 - type: Transform -- uid: 1 - type: GasPipeTJunction - components: - - pos: -9.5,36.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2 - type: WallSolid - components: - - pos: -3.5,12.5 - parent: 8364 - type: Transform -- uid: 3 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,36.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -4.5,39.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5 - type: WallSolid - components: - - pos: -9.5,16.5 - parent: 8364 - type: Transform -- uid: 6 - type: WallSolid - components: - - pos: -9.5,14.5 - parent: 8364 - type: Transform -- uid: 7 - type: WallSolid - components: - - pos: -9.5,12.5 - parent: 8364 - type: Transform -- uid: 8 - type: WallSolid - components: - - pos: -12.5,12.5 - parent: 8364 - type: Transform -- uid: 9 - type: WallSolid - components: - - pos: -13.5,14.5 - parent: 8364 - type: Transform -- uid: 10 - type: WallSolid - components: - - pos: -15.5,16.5 - parent: 8364 - type: Transform -- uid: 11 - type: WallSolid - components: - - pos: -15.5,14.5 - parent: 8364 - type: Transform -- uid: 12 - type: WallReinforced - components: - - pos: -20.5,17.5 - parent: 8364 - type: Transform -- uid: 13 - type: SolarPanel - components: - - pos: -53.5,36.5 - parent: 8364 - type: Transform -- uid: 14 - type: SolarPanel - components: - - pos: -51.5,36.5 - parent: 8364 - type: Transform - - supplyRate: 261 - type: PowerSupplier -- uid: 15 - type: WallReinforced - components: - - pos: -20.5,15.5 - parent: 8364 - type: Transform -- uid: 16 - type: WallReinforced - components: - - pos: -17.5,18.5 - parent: 8364 - type: Transform -- uid: 17 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -2.5,43.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory Exterior - type: SurveillanceCamera -- uid: 18 - type: PoweredlightExterior - components: - - rot: 3.141592653589793 rad - pos: -62.5,18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19 - type: WallReinforced - components: - - pos: -17.5,17.5 - parent: 8364 - type: Transform -- uid: 20 - type: SolarPanel - components: - - pos: -43.5,38.5 - parent: 8364 - type: Transform -- uid: 21 - type: SolarPanel - components: - - pos: -44.5,36.5 - parent: 8364 - type: Transform -- uid: 22 - type: ReinforcedWindow - components: - - pos: 47.5,4.5 - parent: 8364 - type: Transform -- uid: 23 - type: WallSolid - components: - - pos: -5.5,12.5 - parent: 8364 - type: Transform -- uid: 24 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,36.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25 - type: SolarPanel - components: - - pos: -45.5,38.5 - parent: 8364 - type: Transform -- uid: 26 - type: WallReinforced - components: - - pos: -9.5,0.5 - parent: 8364 - type: Transform -- uid: 27 - type: WallReinforced - components: - - pos: -7.5,0.5 - parent: 8364 - type: Transform -- uid: 28 - type: WallReinforced - components: - - pos: -7.5,3.5 - parent: 8364 - type: Transform -- uid: 29 - type: WallReinforced - components: - - pos: -15.5,4.5 - parent: 8364 - type: Transform -- uid: 30 - type: WallReinforced - components: - - pos: -15.5,6.5 - parent: 8364 - type: Transform -- uid: 31 - type: WallReinforced - components: - - pos: -15.5,9.5 - parent: 8364 - type: Transform -- uid: 32 - type: WallReinforced - components: - - pos: -14.5,10.5 - parent: 8364 - type: Transform -- uid: 33 - type: WallReinforced - components: - - pos: -10.5,10.5 - parent: 8364 - type: Transform -- uid: 34 - type: WallReinforced - components: - - pos: -8.5,10.5 - parent: 8364 - type: Transform -- uid: 35 - type: WallReinforced - components: - - pos: -2.5,4.5 - parent: 8364 - type: Transform -- uid: 36 - type: Rack - components: - - pos: -6.5,4.5 - parent: 8364 - type: Transform -- uid: 37 - type: WallReinforced - components: - - pos: -28.5,4.5 - parent: 8364 - type: Transform -- uid: 38 - type: WallReinforced - components: - - pos: -25.5,11.5 - parent: 8364 - type: Transform -- uid: 39 - type: SyringeEphedrine - components: - - pos: -20.550821,14.488405 - parent: 8364 - type: Transform - - tags: [] - type: Tag -- uid: 40 - type: SurveillanceCameraGeneral - components: - - pos: -41.5,1.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Tool Room - type: SurveillanceCamera -- uid: 41 - type: SurveillanceCameraSupply - components: - - pos: -20.5,-19.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Mail Room - type: SurveillanceCamera -- uid: 42 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,36.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 43 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 44 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 45 - type: GasPipeBend - components: - - pos: -4.5,37.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 46 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,38.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 47 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,39.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 48 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,38.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 49 - type: CableApcExtension - components: - - pos: -19.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 50 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 51 - type: WallSolid - components: - - pos: -4.5,12.5 - parent: 8364 - type: Transform -- uid: 52 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 53 - type: WallReinforced - components: - - pos: -13.5,0.5 - parent: 8364 - type: Transform -- uid: 54 - type: WallSolid - components: - - pos: -6.5,12.5 - parent: 8364 - type: Transform -- uid: 55 - type: WallSolid - components: - - pos: -9.5,17.5 - parent: 8364 - type: Transform -- uid: 56 - type: WallSolid - components: - - pos: -9.5,15.5 - parent: 8364 - type: Transform -- uid: 57 - type: WallSolid - components: - - pos: -9.5,13.5 - parent: 8364 - type: Transform -- uid: 58 - type: WallSolid - components: - - pos: -10.5,12.5 - parent: 8364 - type: Transform -- uid: 59 - type: WallSolid - components: - - pos: -11.5,12.5 - parent: 8364 - type: Transform -- uid: 60 - type: WallSolid - components: - - pos: -13.5,13.5 - parent: 8364 - type: Transform -- uid: 61 - type: WallSolid - components: - - pos: -15.5,17.5 - parent: 8364 - type: Transform -- uid: 62 - type: WallSolid - components: - - pos: -15.5,15.5 - parent: 8364 - type: Transform -- uid: 63 - type: WallReinforced - components: - - pos: -20.5,18.5 - parent: 8364 - type: Transform -- uid: 64 - type: WallReinforced - components: - - pos: -20.5,16.5 - parent: 8364 - type: Transform -- uid: 65 - type: SolarPanel - components: - - pos: -52.5,36.5 - parent: 8364 - type: Transform -- uid: 66 - type: SolarPanel - components: - - pos: -47.5,38.5 - parent: 8364 - type: Transform -- uid: 67 - type: WallReinforced - components: - - pos: -18.5,15.5 - parent: 8364 - type: Transform -- uid: 68 - type: WallReinforced - components: - - pos: -30.5,11.5 - parent: 8364 - type: Transform -- uid: 69 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 1.5,-69.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Particle Accelerator - type: SurveillanceCamera -- uid: 70 - type: WallReinforced - components: - - pos: -17.5,16.5 - parent: 8364 - type: Transform -- uid: 71 - type: SolarPanel - components: - - pos: -44.5,38.5 - parent: 8364 - type: Transform -- uid: 72 - type: SolarPanel - components: - - pos: -43.5,36.5 - parent: 8364 - type: Transform -- uid: 73 - type: CableApcExtension - components: - - pos: -61.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 74 - type: CableApcExtension - components: - - pos: -61.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 75 - type: SolarPanel - components: - - pos: -55.5,38.5 - parent: 8364 - type: Transform -- uid: 76 - type: SolarPanel - components: - - pos: -53.5,38.5 - parent: 8364 - type: Transform -- uid: 77 - type: SolarPanel - components: - - pos: -46.5,38.5 - parent: 8364 - type: Transform -- uid: 78 - type: WallReinforced - components: - - pos: -14.5,0.5 - parent: 8364 - type: Transform -- uid: 79 - type: WallReinforced - components: - - pos: -15.5,0.5 - parent: 8364 - type: Transform -- uid: 80 - type: WallReinforced - components: - - pos: -8.5,0.5 - parent: 8364 - type: Transform -- uid: 81 - type: WallReinforced - components: - - pos: -7.5,2.5 - parent: 8364 - type: Transform -- uid: 82 - type: WallReinforced - components: - - pos: -4.5,2.5 - parent: 8364 - type: Transform -- uid: 83 - type: WallReinforced - components: - - pos: -15.5,5.5 - parent: 8364 - type: Transform -- uid: 84 - type: WallReinforced - components: - - pos: -15.5,7.5 - parent: 8364 - type: Transform -- uid: 85 - type: WallReinforced - components: - - pos: -15.5,10.5 - parent: 8364 - type: Transform -- uid: 86 - type: WallReinforced - components: - - pos: -13.5,10.5 - parent: 8364 - type: Transform -- uid: 87 - type: WallReinforced - components: - - pos: -12.5,10.5 - parent: 8364 - type: Transform -- uid: 88 - type: WallReinforced - components: - - pos: -11.5,10.5 - parent: 8364 - type: Transform -- uid: 89 - type: WallReinforced - components: - - pos: -9.5,10.5 - parent: 8364 - type: Transform -- uid: 90 - type: WallReinforced - components: - - pos: -7.5,10.5 - parent: 8364 - type: Transform -- uid: 91 - type: WallReinforced - components: - - pos: -2.5,2.5 - parent: 8364 - type: Transform -- uid: 92 - type: WallReinforced - components: - - pos: -2.5,3.5 - parent: 8364 - type: Transform -- uid: 93 - type: WallReinforced - components: - - pos: -2.5,5.5 - parent: 8364 - type: Transform -- uid: 94 - type: ClothingShoesBootsMag - components: - - pos: -6.5397058,4.585363 - parent: 8364 - type: Transform -- uid: 95 - type: Grille - components: - - pos: -7.5,7.5 - parent: 8364 - type: Transform -- uid: 96 - type: Grille - components: - - pos: -7.5,6.5 - parent: 8364 - type: Transform -- uid: 97 - type: WallReinforced - components: - - pos: -7.5,4.5 - parent: 8364 - type: Transform -- uid: 98 - type: WallReinforced - components: - - pos: -7.5,5.5 - parent: 8364 - type: Transform -- uid: 99 - type: ReinforcedWindow - components: - - pos: -7.5,6.5 - parent: 8364 - type: Transform -- uid: 100 - type: WallReinforced - components: - - pos: -4.5,5.5 - parent: 8364 - type: Transform -- uid: 101 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-68.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES Bank - type: SurveillanceCamera -- uid: 102 - type: WallReinforced - components: - - pos: -4.5,3.5 - parent: 8364 - type: Transform -- uid: 103 - type: ClothingShoesBootsMag - components: - - pos: -6.3834558,4.429113 - parent: 8364 - type: Transform -- uid: 104 - type: Grille - components: - - pos: -7.5,9.5 - parent: 8364 - type: Transform -- uid: 105 - type: SurveillanceCameraEngineering - components: - - pos: -14.5,-73.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engi Locker Room - type: SurveillanceCamera -- uid: 106 - type: Grille - components: - - pos: -5.5,2.5 - parent: 8364 - type: Transform -- uid: 107 - type: Grille - components: - - pos: -6.5,2.5 - parent: 8364 - type: Transform -- uid: 108 - type: ReinforcedWindow - components: - - pos: -5.5,2.5 - parent: 8364 - type: Transform -- uid: 109 - type: ReinforcedWindow - components: - - pos: -6.5,2.5 - parent: 8364 - type: Transform -- uid: 110 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -7.5,-61.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engi Supply Room - type: SurveillanceCamera -- uid: 111 - type: WindoorEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: -5.5,5.5 - parent: 8364 - type: Transform -- uid: 112 - type: ReinforcedWindow - components: - - pos: -7.5,7.5 - parent: 8364 - type: Transform -- uid: 113 - type: WallReinforced - components: - - pos: -4.5,4.5 - parent: 8364 - type: Transform -- uid: 114 - type: AirlockHeadOfPersonnelGlassLocked - components: - - pos: -7.5,8.5 - parent: 8364 - type: Transform -- uid: 115 - type: SheetSteel - components: - - pos: -5.4615808,3.554113 - parent: 8364 - type: Transform -- uid: 116 - type: WallSolid - components: - - pos: 50.5,1.5 - parent: 8364 - type: Transform -- uid: 117 - type: WallSolid - components: - - pos: 50.5,-5.5 - parent: 8364 - type: Transform -- uid: 118 - type: WallSolid - components: - - pos: 50.5,-0.5 - parent: 8364 - type: Transform -- uid: 119 - type: WallSolid - components: - - pos: 50.5,-1.5 - parent: 8364 - type: Transform -- uid: 120 - type: SurveillanceCameraEngineering - components: - - pos: 6.5,-57.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Lobby - type: SurveillanceCamera -- uid: 121 - type: SurveillanceCameraEngineering - components: - - pos: 4.5,-45.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Desk - type: SurveillanceCamera -- uid: 122 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-45.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North Atmos - type: SurveillanceCamera -- uid: 123 - type: WallSolid - components: - - pos: 50.5,-2.5 - parent: 8364 - type: Transform -- uid: 124 - type: WallSolid - components: - - pos: 50.5,-3.5 - parent: 8364 - type: Transform -- uid: 125 - type: WallSolid - components: - - pos: 50.5,-4.5 - parent: 8364 - type: Transform -- uid: 126 - type: WallSolid - components: - - pos: 50.5,-6.5 - parent: 8364 - type: Transform -- uid: 127 - type: WallSolid - components: - - pos: 50.5,-7.5 - parent: 8364 - type: Transform -- uid: 128 - type: WallSolid - components: - - pos: 52.5,-7.5 - parent: 8364 - type: Transform -- uid: 129 - type: WallSolid - components: - - pos: 52.5,-6.5 - parent: 8364 - type: Transform -- uid: 130 - type: WallSolid - components: - - pos: 52.5,-5.5 - parent: 8364 - type: Transform -- uid: 131 - type: WallSolid - components: - - pos: 52.5,-4.5 - parent: 8364 - type: Transform -- uid: 132 - type: WallSolid - components: - - pos: 52.5,-3.5 - parent: 8364 - type: Transform -- uid: 133 - type: WallSolid - components: - - pos: 52.5,-2.5 - parent: 8364 - type: Transform -- uid: 134 - type: WallSolid - components: - - pos: 52.5,-1.5 - parent: 8364 - type: Transform -- uid: 135 - type: WallSolid - components: - - pos: 52.5,-0.5 - parent: 8364 - type: Transform -- uid: 136 - type: ReinforcedWindow - components: - - pos: -75.5,-6.5 - parent: 8364 - type: Transform -- uid: 137 - type: WallSolid - components: - - pos: 52.5,2.5 - parent: 8364 - type: Transform -- uid: 138 - type: WallSolid - components: - - pos: 52.5,0.5 - parent: 8364 - type: Transform -- uid: 139 - type: WallSolid - components: - - pos: 52.5,1.5 - parent: 8364 - type: Transform -- uid: 140 - type: WallSolid - components: - - pos: -62.5,7.5 - parent: 8364 - type: Transform -- uid: 141 - type: WallSolid - components: - - pos: -57.5,6.5 - parent: 8364 - type: Transform -- uid: 142 - type: WallSolid - components: - - pos: -58.5,6.5 - parent: 8364 - type: Transform -- uid: 143 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-53.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos - type: SurveillanceCamera -- uid: 144 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-62.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: CE's Room - type: SurveillanceCamera -- uid: 145 - type: ReinforcedWindow - components: - - pos: 47.5,3.5 - parent: 8364 - type: Transform -- uid: 146 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -53.5,13.5 - parent: 8364 - type: Transform -- uid: 147 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -53.5,14.5 - parent: 8364 - type: Transform -- uid: 148 - type: ShardGlassReinforced - components: - - pos: -52.937687,15.598715 - parent: 8364 - type: Transform -- uid: 149 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -53.5,16.5 - parent: 8364 - type: Transform -- uid: 150 - type: CableHV - components: - - pos: 1.5,-63.5 - parent: 8364 - type: Transform -- uid: 151 - type: Table - components: - - pos: 3.5,-11.5 - parent: 8364 - type: Transform -- uid: 152 - type: PlasmaCanister - components: - - pos: 28.5,-47.5 - parent: 8364 - type: Transform -- uid: 153 - type: SolarPanel - components: - - pos: -47.5,34.5 - parent: 8364 - type: Transform -- uid: 154 - type: SolarPanel - components: - - pos: -46.5,34.5 - parent: 8364 - type: Transform - - supplyRate: 261 - type: PowerSupplier -- uid: 155 - type: SolarPanel - components: - - pos: -44.5,34.5 - parent: 8364 - type: Transform -- uid: 156 - type: SolarPanel - components: - - pos: -55.5,32.5 - parent: 8364 - type: Transform -- uid: 157 - type: SolarPanel - components: - - pos: -53.5,34.5 - parent: 8364 - type: Transform -- uid: 158 - type: SolarPanel - components: - - pos: -52.5,34.5 - parent: 8364 - type: Transform -- uid: 159 - type: SolarPanel - components: - - pos: -51.5,34.5 - parent: 8364 - type: Transform - - supplyRate: 260 - type: PowerSupplier -- uid: 160 - type: SolarPanel - components: - - pos: -43.5,32.5 - parent: 8364 - type: Transform - - supplyRate: 260 - type: PowerSupplier -- uid: 161 - type: SolarPanel - components: - - pos: -44.5,32.5 - parent: 8364 - type: Transform -- uid: 162 - type: SolarPanel - components: - - pos: -47.5,32.5 - parent: 8364 - type: Transform - - supplyRate: 261 - type: PowerSupplier -- uid: 163 - type: SolarPanel - components: - - pos: -45.5,32.5 - parent: 8364 - type: Transform -- uid: 164 - type: SolarPanel - components: - - pos: -43.5,34.5 - parent: 8364 - type: Transform - - supplyRate: 261 - type: PowerSupplier -- uid: 165 - type: SolarPanel - components: - - pos: -54.5,32.5 - parent: 8364 - type: Transform -- uid: 166 - type: SolarPanel - components: - - pos: -53.5,32.5 - parent: 8364 - type: Transform -- uid: 167 - type: SolarPanel - components: - - pos: -52.5,32.5 - parent: 8364 - type: Transform - - supplyRate: 260 - type: PowerSupplier -- uid: 168 - type: SolarPanel - components: - - pos: -55.5,34.5 - parent: 8364 - type: Transform -- uid: 169 - type: SolarPanel - components: - - pos: -55.5,30.5 - parent: 8364 - type: Transform -- uid: 170 - type: SolarPanel - components: - - pos: -54.5,30.5 - parent: 8364 - type: Transform -- uid: 171 - type: SolarPanel - components: - - pos: -54.5,28.5 - parent: 8364 - type: Transform -- uid: 172 - type: SolarPanel - components: - - pos: -53.5,28.5 - parent: 8364 - type: Transform -- uid: 173 - type: SolarPanel - components: - - pos: -52.5,30.5 - parent: 8364 - type: Transform -- uid: 174 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -5.5,48.5 - parent: 8364 - type: Transform -- uid: 175 - type: SolarPanel - components: - - pos: -51.5,30.5 - parent: 8364 - type: Transform - - supplyRate: 260 - type: PowerSupplier -- uid: 176 - type: SolarPanel - components: - - pos: -51.5,28.5 - parent: 8364 - type: Transform -- uid: 177 - type: SolarPanel - components: - - pos: -46.5,30.5 - parent: 8364 - type: Transform - - supplyRate: 260 - type: PowerSupplier -- uid: 178 - type: WallReinforced - components: - - pos: -26.5,0.5 - parent: 8364 - type: Transform -- uid: 179 - type: WallReinforced - components: - - pos: -26.5,2.5 - parent: 8364 - type: Transform -- uid: 180 - type: WallReinforced - components: - - pos: -26.5,3.5 - parent: 8364 - type: Transform -- uid: 181 - type: WallReinforced - components: - - pos: -26.5,4.5 - parent: 8364 - type: Transform -- uid: 182 - type: WallReinforced - components: - - pos: -26.5,6.5 - parent: 8364 - type: Transform -- uid: 183 - type: WallReinforced - components: - - pos: -26.5,8.5 - parent: 8364 - type: Transform -- uid: 184 - type: WallReinforced - components: - - pos: -26.5,9.5 - parent: 8364 - type: Transform -- uid: 185 - type: WallReinforced - components: - - pos: -36.5,9.5 - parent: 8364 - type: Transform -- uid: 186 - type: WallReinforced - components: - - pos: -36.5,7.5 - parent: 8364 - type: Transform -- uid: 187 - type: WallReinforced - components: - - pos: -36.5,5.5 - parent: 8364 - type: Transform -- uid: 188 - type: WallReinforced - components: - - pos: -36.5,4.5 - parent: 8364 - type: Transform -- uid: 189 - type: WallReinforced - components: - - pos: -36.5,2.5 - parent: 8364 - type: Transform -- uid: 190 - type: WallReinforced - components: - - pos: -36.5,1.5 - parent: 8364 - type: Transform -- uid: 191 - type: WallReinforced - components: - - pos: -32.5,2.5 - parent: 8364 - type: Transform -- uid: 192 - type: WallReinforced - components: - - pos: -34.5,2.5 - parent: 8364 - type: Transform -- uid: 193 - type: WallReinforced - components: - - pos: -34.5,4.5 - parent: 8364 - type: Transform -- uid: 194 - type: WallReinforced - components: - - pos: -34.5,6.5 - parent: 8364 - type: Transform -- uid: 195 - type: WallReinforced - components: - - pos: -33.5,7.5 - parent: 8364 - type: Transform -- uid: 196 - type: WallReinforced - components: - - pos: -31.5,7.5 - parent: 8364 - type: Transform -- uid: 197 - type: WallReinforced - components: - - pos: -29.5,7.5 - parent: 8364 - type: Transform -- uid: 198 - type: WallReinforced - components: - - pos: -28.5,6.5 - parent: 8364 - type: Transform -- uid: 199 - type: WallReinforced - components: - - pos: -28.5,3.5 - parent: 8364 - type: Transform -- uid: 200 - type: WallReinforced - components: - - pos: -29.5,2.5 - parent: 8364 - type: Transform -- uid: 201 - type: ReinforcedWindow - components: - - pos: -32.5,1.5 - parent: 8364 - type: Transform -- uid: 202 - type: ReinforcedWindow - components: - - pos: -32.5,0.5 - parent: 8364 - type: Transform -- uid: 203 - type: ReinforcedWindow - components: - - pos: -34.5,0.5 - parent: 8364 - type: Transform -- uid: 204 - type: ReinforcedWindow - components: - - pos: -30.5,0.5 - parent: 8364 - type: Transform -- uid: 205 - type: ReinforcedWindow - components: - - pos: -28.5,0.5 - parent: 8364 - type: Transform -- uid: 206 - type: ReinforcedWindow - components: - - pos: -27.5,0.5 - parent: 8364 - type: Transform -- uid: 207 - type: ReinforcedWindow - components: - - pos: -28.5,9.5 - parent: 8364 - type: Transform -- uid: 208 - type: ReinforcedWindow - components: - - pos: -30.5,9.5 - parent: 8364 - type: Transform -- uid: 209 - type: ReinforcedWindow - components: - - pos: -32.5,9.5 - parent: 8364 - type: Transform -- uid: 210 - type: ReinforcedWindow - components: - - pos: -34.5,9.5 - parent: 8364 - type: Transform -- uid: 211 - type: Grille - components: - - pos: -27.5,9.5 - parent: 8364 - type: Transform -- uid: 212 - type: Grille - components: - - pos: -29.5,9.5 - parent: 8364 - type: Transform -- uid: 213 - type: Grille - components: - - pos: -31.5,9.5 - parent: 8364 - type: Transform -- uid: 214 - type: Grille - components: - - pos: -33.5,9.5 - parent: 8364 - type: Transform -- uid: 215 - type: Grille - components: - - pos: -35.5,9.5 - parent: 8364 - type: Transform -- uid: 216 - type: Grille - components: - - pos: -34.5,0.5 - parent: 8364 - type: Transform -- uid: 217 - type: ReinforcedWindow - components: - - pos: -33.5,0.5 - parent: 8364 - type: Transform -- uid: 218 - type: Grille - components: - - pos: -32.5,1.5 - parent: 8364 - type: Transform -- uid: 219 - type: Grille - components: - - pos: -30.5,0.5 - parent: 8364 - type: Transform -- uid: 220 - type: Grille - components: - - pos: -28.5,0.5 - parent: 8364 - type: Transform -- uid: 221 - type: Grille - components: - - pos: -27.5,0.5 - parent: 8364 - type: Transform -- uid: 222 - type: SolarPanel - components: - - pos: -54.5,36.5 - parent: 8364 - type: Transform -- uid: 223 - type: Grille - components: - - pos: -37.5,17.5 - parent: 8364 - type: Transform -- uid: 224 - type: WallReinforced - components: - - pos: 61.5,-54.5 - parent: 8364 - type: Transform -- uid: 225 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 75.5,-43.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Toxins - type: SurveillanceCamera -- uid: 226 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 71.5,-33.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RD's Room - type: SurveillanceCamera -- uid: 227 - type: SurveillanceCameraScience - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-21.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RND - type: SurveillanceCamera -- uid: 228 - type: Grille - components: - - pos: -38.5,17.5 - parent: 8364 - type: Transform -- uid: 229 - type: WallSolid - components: - - pos: -32.5,11.5 - parent: 8364 - type: Transform -- uid: 230 - type: ClothingShoesFlippers - components: - - pos: 70.422775,14.622831 - parent: 8364 - type: Transform -- uid: 231 - type: WallSolid - components: - - pos: -13.5,12.5 - parent: 8364 - type: Transform -- uid: 232 - type: Rack - components: - - pos: -5.5,-57.5 - parent: 8364 - type: Transform -- uid: 233 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-20.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Robotics - type: SurveillanceCamera -- uid: 234 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-33.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery - type: SurveillanceCamera -- uid: 235 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: 42.5,-55.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology - type: SurveillanceCamera -- uid: 236 - type: SurveillanceCameraMedical - components: - - pos: 44.5,-20.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue - type: SurveillanceCamera -- uid: 237 - type: SolarPanel - components: - - pos: -47.5,30.5 - parent: 8364 - type: Transform -- uid: 238 - type: SolarPanel - components: - - pos: -46.5,28.5 - parent: 8364 - type: Transform -- uid: 239 - type: WallReinforced - components: - - pos: -26.5,1.5 - parent: 8364 - type: Transform -- uid: 240 - type: WallReinforced - components: - - pos: -26.5,5.5 - parent: 8364 - type: Transform -- uid: 241 - type: WallReinforced - components: - - pos: -26.5,7.5 - parent: 8364 - type: Transform -- uid: 242 - type: WallReinforced - components: - - pos: -36.5,8.5 - parent: 8364 - type: Transform -- uid: 243 - type: WallReinforced - components: - - pos: -36.5,6.5 - parent: 8364 - type: Transform -- uid: 244 - type: WallReinforced - components: - - pos: -36.5,3.5 - parent: 8364 - type: Transform -- uid: 245 - type: WallReinforced - components: - - pos: -36.5,0.5 - parent: 8364 - type: Transform -- uid: 246 - type: WallReinforced - components: - - pos: -33.5,2.5 - parent: 8364 - type: Transform -- uid: 247 - type: WallReinforced - components: - - pos: -34.5,3.5 - parent: 8364 - type: Transform -- uid: 248 - type: WallReinforced - components: - - pos: -34.5,5.5 - parent: 8364 - type: Transform -- uid: 249 - type: WallReinforced - components: - - pos: -34.5,7.5 - parent: 8364 - type: Transform -- uid: 250 - type: WallReinforced - components: - - pos: -32.5,7.5 - parent: 8364 - type: Transform -- uid: 251 - type: WallReinforced - components: - - pos: -30.5,7.5 - parent: 8364 - type: Transform -- uid: 252 - type: WallReinforced - components: - - pos: -28.5,7.5 - parent: 8364 - type: Transform -- uid: 253 - type: WallReinforced - components: - - pos: -28.5,5.5 - parent: 8364 - type: Transform -- uid: 254 - type: WallReinforced - components: - - pos: -28.5,2.5 - parent: 8364 - type: Transform -- uid: 255 - type: WallReinforced - components: - - pos: -30.5,2.5 - parent: 8364 - type: Transform -- uid: 256 - type: AirlockMedicalGlassLocked - components: - - rot: 3.141592653589793 rad - pos: 47.5,-27.5 - parent: 8364 - type: Transform -- uid: 257 - type: WallSolid - components: - - pos: -37.5,9.5 - parent: 8364 - type: Transform -- uid: 258 - type: ReinforcedWindow - components: - - pos: -35.5,0.5 - parent: 8364 - type: Transform -- uid: 259 - type: ReinforcedWindow - components: - - pos: -29.5,0.5 - parent: 8364 - type: Transform -- uid: 260 - type: ReinforcedWindow - components: - - pos: -27.5,9.5 - parent: 8364 - type: Transform -- uid: 261 - type: ReinforcedWindow - components: - - pos: -29.5,9.5 - parent: 8364 - type: Transform -- uid: 262 - type: ReinforcedWindow - components: - - pos: -31.5,9.5 - parent: 8364 - type: Transform -- uid: 263 - type: ReinforcedWindow - components: - - pos: -33.5,9.5 - parent: 8364 - type: Transform -- uid: 264 - type: ReinforcedWindow - components: - - pos: -35.5,9.5 - parent: 8364 - type: Transform -- uid: 265 - type: Grille - components: - - pos: -28.5,9.5 - parent: 8364 - type: Transform -- uid: 266 - type: Grille - components: - - pos: -30.5,9.5 - parent: 8364 - type: Transform -- uid: 267 - type: Grille - components: - - pos: -32.5,9.5 - parent: 8364 - type: Transform -- uid: 268 - type: Grille - components: - - pos: -34.5,9.5 - parent: 8364 - type: Transform -- uid: 269 - type: Grille - components: - - pos: -35.5,0.5 - parent: 8364 - type: Transform -- uid: 270 - type: Grille - components: - - pos: -33.5,0.5 - parent: 8364 - type: Transform -- uid: 271 - type: Grille - components: - - pos: -32.5,0.5 - parent: 8364 - type: Transform -- uid: 272 - type: Grille - components: - - pos: -30.5,1.5 - parent: 8364 - type: Transform -- uid: 273 - type: Grille - components: - - pos: -29.5,0.5 - parent: 8364 - type: Transform -- uid: 274 - type: SurveillanceCameraMedical - components: - - pos: 44.5,-29.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cloning - type: SurveillanceCamera -- uid: 275 - type: SolarPanel - components: - - pos: -55.5,36.5 - parent: 8364 - type: Transform -- uid: 276 - type: ReinforcedWindow - components: - - pos: -29.5,19.5 - parent: 8364 - type: Transform -- uid: 277 - type: SurveillanceCameraMedical - components: - - pos: 33.5,-36.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medbay Storage - type: SurveillanceCamera -- uid: 278 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-40.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examination Room 1 - type: SurveillanceCamera -- uid: 279 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: 32.5,-27.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Emergency Room - type: SurveillanceCamera -- uid: 280 - type: SurveillanceCameraMedical - components: - - pos: 31.5,-21.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medbay Lobby - type: SurveillanceCamera -- uid: 281 - type: BoxMRE - components: - - pos: 48.424255,8.669407 - parent: 8364 - type: Transform -- uid: 282 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-20.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - type: SurveillanceCamera -- uid: 283 - type: SurveillanceCameraSupply - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-25.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Lobby - type: SurveillanceCamera -- uid: 284 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 60.5,1.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Chapel Crematorium - type: SurveillanceCamera -- uid: 285 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-4.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Chapel - type: SurveillanceCamera -- uid: 286 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-4.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Library - type: SurveillanceCamera -- uid: 287 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-6.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Hydroponics - type: SurveillanceCamera -- uid: 288 - type: SurveillanceCameraGeneral - components: - - pos: 39.5,-9.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Kitchen - type: SurveillanceCamera -- uid: 289 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 23.5,0.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Theater - type: SurveillanceCamera -- uid: 290 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-8.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bar - type: SurveillanceCamera -- uid: 291 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 11.5,1.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bathroom - type: SurveillanceCamera -- uid: 292 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 11.5,12.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms - type: SurveillanceCamera -- uid: 293 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: 12.5,24.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Courtroom - type: SurveillanceCamera -- uid: 294 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -10.5,9.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: EVA Supply - type: SurveillanceCamera -- uid: 295 - type: TableFrame - components: - - pos: -36.5,18.5 - parent: 8364 - type: Transform -- uid: 296 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -30.5,6.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - type: SurveillanceCamera -- uid: 297 - type: AirlockCargoGlassLocked - components: - - pos: -9.5,1.5 - parent: 8364 - type: Transform -- uid: 298 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-23.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP Office - type: SurveillanceCamera -- uid: 299 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -10.5,-11.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference Room - type: SurveillanceCamera -- uid: 300 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -6.5,-6.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge West - type: SurveillanceCamera -- uid: 301 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 5.5,-6.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge East - type: SurveillanceCamera -- uid: 302 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 8.5,-20.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Bedroom - type: SurveillanceCamera -- uid: 303 - type: WallSolid - components: - - pos: -44.5,22.5 - parent: 8364 - type: Transform -- uid: 304 - type: SurveillanceCameraCommand - components: - - pos: 9.5,-18.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Office - type: SurveillanceCamera -- uid: 305 - type: DrinkMugBlue - components: - - pos: 54.439556,-33.34896 - parent: 8364 - type: Transform -- uid: 306 - type: WallReinforced - components: - - pos: -47.5,23.5 - parent: 8364 - type: Transform -- uid: 307 - type: WallReinforced - components: - - pos: -47.5,20.5 - parent: 8364 - type: Transform -- uid: 308 - type: WallReinforced - components: - - pos: -47.5,22.5 - parent: 8364 - type: Transform -- uid: 309 - type: WallReinforced - components: - - pos: -47.5,21.5 - parent: 8364 - type: Transform -- uid: 310 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-18.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Medbay Sec Office - type: SurveillanceCamera -- uid: 311 - type: SurveillanceCameraSecurity - components: - - pos: -20.5,-31.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cargo Sec Office - type: SurveillanceCamera -- uid: 312 - type: WallReinforced - components: - - pos: -50.5,20.5 - parent: 8364 - type: Transform -- uid: 313 - type: WallReinforced - components: - - pos: -51.5,21.5 - parent: 8364 - type: Transform -- uid: 314 - type: WallReinforced - components: - - pos: -48.5,24.5 - parent: 8364 - type: Transform -- uid: 315 - type: ReinforcedWindow - components: - - pos: -28.5,11.5 - parent: 8364 - type: Transform -- uid: 316 - type: ReinforcedWindow - components: - - pos: -29.5,11.5 - parent: 8364 - type: Transform -- uid: 317 - type: WallReinforced - components: - - pos: -51.5,23.5 - parent: 8364 - type: Transform -- uid: 318 - type: WallReinforced - components: - - pos: -51.5,22.5 - parent: 8364 - type: Transform -- uid: 319 - type: WallReinforced - components: - - pos: -51.5,20.5 - parent: 8364 - type: Transform -- uid: 320 - type: WallReinforced - components: - - pos: -47.5,24.5 - parent: 8364 - type: Transform -- uid: 321 - type: WallReinforced - components: - - pos: -48.5,20.5 - parent: 8364 - type: Transform -- uid: 322 - type: WallReinforced - components: - - pos: -48.5,25.5 - parent: 8364 - type: Transform -- uid: 323 - type: ReinforcedWindow - components: - - pos: -27.5,11.5 - parent: 8364 - type: Transform -- uid: 324 - type: ReinforcedWindow - components: - - pos: -30.5,12.5 - parent: 8364 - type: Transform -- uid: 325 - type: ReinforcedWindow - components: - - pos: -30.5,13.5 - parent: 8364 - type: Transform -- uid: 326 - type: ReinforcedWindow - components: - - pos: -30.5,14.5 - parent: 8364 - type: Transform -- uid: 327 - type: ReinforcedWindow - components: - - pos: -30.5,15.5 - parent: 8364 - type: Transform -- uid: 328 - type: ReinforcedWindow - components: - - pos: -30.5,16.5 - parent: 8364 - type: Transform -- uid: 329 - type: ReinforcedWindow - components: - - pos: -32.5,25.5 - parent: 8364 - type: Transform -- uid: 330 - type: ReinforcedWindow - components: - - pos: -32.5,13.5 - parent: 8364 - type: Transform -- uid: 331 - type: ReinforcedWindow - components: - - pos: -32.5,14.5 - parent: 8364 - type: Transform -- uid: 332 - type: ReinforcedWindow - components: - - pos: -32.5,15.5 - parent: 8364 - type: Transform -- uid: 333 - type: ReinforcedWindow - components: - - pos: -32.5,16.5 - parent: 8364 - type: Transform -- uid: 334 - type: ReinforcedWindow - components: - - pos: -29.5,23.5 - parent: 8364 - type: Transform -- uid: 335 - type: Grille - components: - - pos: -29.5,19.5 - parent: 8364 - type: Transform -- uid: 336 - type: Grille - components: - - pos: -29.5,23.5 - parent: 8364 - type: Transform -- uid: 337 - type: WallSolid - components: - - pos: -44.5,13.5 - parent: 8364 - type: Transform -- uid: 338 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -61.5,4.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Arrivals Sec Office - type: SurveillanceCamera -- uid: 339 - type: WallReinforced - components: - - pos: -20.5,39.5 - parent: 8364 - type: Transform -- uid: 340 - type: Grille - components: - - pos: -36.5,17.5 - parent: 8364 - type: Transform -- uid: 341 - type: Grille - components: - - pos: -34.5,25.5 - parent: 8364 - type: Transform -- uid: 342 - type: Grille - components: - - pos: -29.5,24.5 - parent: 8364 - type: Transform -- uid: 343 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -35.5,20.5 - parent: 8364 - type: Transform -- uid: 344 - type: ReinforcedWindow - components: - - pos: -29.5,20.5 - parent: 8364 - type: Transform -- uid: 345 - type: WallSolid - components: - - pos: -39.5,20.5 - parent: 8364 - type: Transform -- uid: 346 - type: CableApcExtension - components: - - pos: -23.5,48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 347 - type: ReinforcedWindow - components: - - pos: -42.5,19.5 - parent: 8364 - type: Transform -- uid: 348 - type: ReinforcedWindow - components: - - pos: -43.5,19.5 - parent: 8364 - type: Transform -- uid: 349 - type: ReinforcedWindow - components: - - pos: -48.5,26.5 - parent: 8364 - type: Transform -- uid: 350 - type: ReinforcedWindow - components: - - pos: -50.5,26.5 - parent: 8364 - type: Transform -- uid: 351 - type: ReinforcedWindow - components: - - pos: -50.5,25.5 - parent: 8364 - type: Transform -- uid: 352 - type: ReinforcedWindow - components: - - pos: -50.5,24.5 - parent: 8364 - type: Transform -- uid: 353 - type: ReinforcedWindow - components: - - pos: -51.5,24.5 - parent: 8364 - type: Transform -- uid: 354 - type: Grille - components: - - pos: -27.5,11.5 - parent: 8364 - type: Transform -- uid: 355 - type: Grille - components: - - pos: -28.5,11.5 - parent: 8364 - type: Transform -- uid: 356 - type: Grille - components: - - pos: -29.5,11.5 - parent: 8364 - type: Transform -- uid: 357 - type: Grille - components: - - pos: -30.5,12.5 - parent: 8364 - type: Transform -- uid: 358 - type: Grille - components: - - pos: -30.5,13.5 - parent: 8364 - type: Transform -- uid: 359 - type: Grille - components: - - pos: -30.5,15.5 - parent: 8364 - type: Transform -- uid: 360 - type: Grille - components: - - pos: -30.5,14.5 - parent: 8364 - type: Transform -- uid: 361 - type: Grille - components: - - pos: -30.5,16.5 - parent: 8364 - type: Transform -- uid: 362 - type: Grille - components: - - pos: -32.5,16.5 - parent: 8364 - type: Transform -- uid: 363 - type: Grille - components: - - pos: -32.5,15.5 - parent: 8364 - type: Transform -- uid: 364 - type: Grille - components: - - pos: -32.5,14.5 - parent: 8364 - type: Transform -- uid: 365 - type: Grille - components: - - pos: -32.5,13.5 - parent: 8364 - type: Transform -- uid: 366 - type: ReinforcedWindow - components: - - pos: -33.5,25.5 - parent: 8364 - type: Transform -- uid: 367 - type: ReinforcedWindow - components: - - pos: -29.5,24.5 - parent: 8364 - type: Transform -- uid: 368 - type: Grille - components: - - pos: -29.5,22.5 - parent: 8364 - type: Transform -- uid: 369 - type: Grille - components: - - pos: -29.5,18.5 - parent: 8364 - type: Transform -- uid: 370 - type: Carpet - components: - - pos: -15.5,52.5 - parent: 8364 - type: Transform -- uid: 371 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 24.5,37.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Shooting Range - type: SurveillanceCamera -- uid: 372 - type: WallSolid - components: - - pos: -45.5,13.5 - parent: 8364 - type: Transform -- uid: 373 - type: Grille - components: - - pos: -35.5,25.5 - parent: 8364 - type: Transform -- uid: 374 - type: Grille - components: - - pos: -33.5,25.5 - parent: 8364 - type: Transform -- uid: 375 - type: WallSolid - components: - - pos: -39.5,22.5 - parent: 8364 - type: Transform -- uid: 376 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -35.5,18.5 - parent: 8364 - type: Transform -- uid: 377 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -33.5,23.5 - parent: 8364 - type: Transform -- uid: 378 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -35.5,22.5 - parent: 8364 - type: Transform -- uid: 379 - type: TableWood - components: - - pos: -36.5,19.5 - parent: 8364 - type: Transform -- uid: 380 - type: Grille - components: - - pos: -42.5,19.5 - parent: 8364 - type: Transform -- uid: 381 - type: Grille - components: - - pos: -43.5,19.5 - parent: 8364 - type: Transform -- uid: 382 - type: Grille - components: - - pos: -48.5,26.5 - parent: 8364 - type: Transform -- uid: 383 - type: Grille - components: - - pos: -50.5,26.5 - parent: 8364 - type: Transform -- uid: 384 - type: Grille - components: - - pos: -50.5,25.5 - parent: 8364 - type: Transform -- uid: 385 - type: Grille - components: - - pos: -50.5,24.5 - parent: 8364 - type: Transform -- uid: 386 - type: Grille - components: - - pos: -51.5,24.5 - parent: 8364 - type: Transform -- uid: 387 - type: SurveillanceCameraSecurity - components: - - pos: 15.5,37.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: HoS Room - type: SurveillanceCamera -- uid: 388 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: 6.5,39.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Locker Room - type: SurveillanceCamera -- uid: 389 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 1.5,39.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - type: SurveillanceCamera -- uid: 390 - type: WallSolid - components: - - pos: -51.5,16.5 - parent: 8364 - type: Transform -- uid: 391 - type: WallSolid - components: - - pos: -49.5,15.5 - parent: 8364 - type: Transform -- uid: 392 - type: Grille - components: - - pos: -51.5,13.5 - parent: 8364 - type: Transform -- uid: 393 - type: Grille - components: - - pos: -51.5,15.5 - parent: 8364 - type: Transform -- uid: 394 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 0.5,33.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's Room - type: SurveillanceCamera -- uid: 395 - type: ShardGlassReinforced - components: - - pos: -57.359562,12.192465 - parent: 8364 - type: Transform -- uid: 396 - type: ReinforcedWindow - components: - - pos: -29.5,22.5 - parent: 8364 - type: Transform -- uid: 397 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -3.5,28.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell Block - type: SurveillanceCamera -- uid: 398 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -5.5,17.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective Office - type: SurveillanceCamera -- uid: 399 - type: WallSolid - components: - - pos: -42.5,11.5 - parent: 8364 - type: Transform -- uid: 400 - type: WallSolid - components: - - pos: -49.5,14.5 - parent: 8364 - type: Transform -- uid: 401 - type: ShardGlassReinforced - components: - - pos: -57.531437,12.004965 - parent: 8364 - type: Transform -- uid: 402 - type: WallSolid - components: - - pos: -42.5,9.5 - parent: 8364 - type: Transform -- uid: 403 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -3.5,21.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: sec hallway - type: SurveillanceCamera -- uid: 404 - type: ReinforcedWindow - components: - - pos: -29.5,18.5 - parent: 8364 - type: Transform -- uid: 405 - type: PottedPlantRandom - components: - - pos: 1.5,1.5 - parent: 8364 - type: Transform -- uid: 406 - type: Grille - components: - - pos: -32.5,25.5 - parent: 8364 - type: Transform -- uid: 407 - type: WallSolid - components: - - pos: -45.5,16.5 - parent: 8364 - type: Transform -- uid: 408 - type: WallSolid - components: - - pos: -44.5,11.5 - parent: 8364 - type: Transform -- uid: 409 - type: GasPort - components: - - pos: -44.5,16.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 410 - type: WallSolid - components: - - pos: -42.5,10.5 - parent: 8364 - type: Transform -- uid: 411 - type: WallSolid - components: - - pos: -45.5,11.5 - parent: 8364 - type: Transform -- uid: 412 - type: PottedPlantRandom - components: - - pos: -2.5,1.5 - parent: 8364 - type: Transform -- uid: 413 - type: Grille - components: - - pos: -38.5,13.5 - parent: 8364 - type: Transform -- uid: 414 - type: IngotGold1 - components: - - pos: 58.422615,7.678384 - parent: 8364 - type: Transform -- uid: 415 - type: Grille - components: - - pos: -29.5,20.5 - parent: 8364 - type: Transform -- uid: 416 - type: ReinforcedWindow - components: - - pos: -35.5,25.5 - parent: 8364 - type: Transform -- uid: 417 - type: ReinforcedWindow - components: - - pos: -34.5,25.5 - parent: 8364 - type: Transform -- uid: 418 - type: IngotGold1 - components: - - pos: 57.56324,7.397134 - parent: 8364 - type: Transform -- uid: 419 - type: IngotGold1 - components: - - pos: 57.391365,7.569009 - parent: 8364 - type: Transform -- uid: 420 - type: MouseTimedSpawner - components: - - pos: 52.5,7.5 - parent: 8364 - type: Transform -- uid: 421 - type: Grille - components: - - pos: -35.5,13.5 - parent: 8364 - type: Transform -- uid: 422 - type: WallSolid - components: - - pos: -45.5,15.5 - parent: 8364 - type: Transform -- uid: 423 - type: Grille - components: - - pos: -37.5,13.5 - parent: 8364 - type: Transform -- uid: 424 - type: Grille - components: - - pos: -36.5,13.5 - parent: 8364 - type: Transform -- uid: 425 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-73.5 - parent: 8364 - type: Transform -- uid: 426 - type: CableApcExtension - components: - - pos: -29.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 427 - type: CableApcExtension - components: - - pos: -28.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 428 - type: CableApcExtension - components: - - pos: -27.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 429 - type: WallSolid - components: - - pos: -45.5,10.5 - parent: 8364 - type: Transform -- uid: 430 - type: WallSolid - components: - - pos: -45.5,14.5 - parent: 8364 - type: Transform -- uid: 431 - type: AirlockExternal - components: - - pos: -61.5,17.5 - parent: 8364 - type: Transform -- uid: 432 - type: WallSolid - components: - - pos: -37.5,11.5 - parent: 8364 - type: Transform -- uid: 433 - type: WallSolid - components: - - pos: -38.5,11.5 - parent: 8364 - type: Transform -- uid: 434 - type: WallSolid - components: - - pos: -39.5,11.5 - parent: 8364 - type: Transform -- uid: 435 - type: WallSolid - components: - - pos: -39.5,8.5 - parent: 8364 - type: Transform -- uid: 436 - type: WallSolid - components: - - pos: -39.5,9.5 - parent: 8364 - type: Transform -- uid: 437 - type: WallSolid - components: - - pos: -45.5,8.5 - parent: 8364 - type: Transform -- uid: 438 - type: WallSolid - components: - - pos: -44.5,8.5 - parent: 8364 - type: Transform -- uid: 439 - type: WallSolid - components: - - pos: -43.5,8.5 - parent: 8364 - type: Transform -- uid: 440 - type: WallSolid - components: - - pos: -42.5,8.5 - parent: 8364 - type: Transform -- uid: 441 - type: WallSolid - components: - - pos: -41.5,8.5 - parent: 8364 - type: Transform -- uid: 442 - type: WallSolid - components: - - pos: -40.5,8.5 - parent: 8364 - type: Transform -- uid: 443 - type: WallSolid - components: - - pos: -45.5,9.5 - parent: 8364 - type: Transform -- uid: 444 - type: AirCanister - components: - - pos: -43.5,16.5 - parent: 8364 - type: Transform -- uid: 445 - type: GasPort - components: - - pos: -43.5,16.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 446 - type: AirCanister - components: - - pos: -44.5,16.5 - parent: 8364 - type: Transform -- uid: 447 - type: CableApcExtension - components: - - pos: -55.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 448 - type: CableApcExtension - components: - - pos: -55.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 449 - type: ClothingHandsGlovesBoxingBlue - components: - - pos: -57.5,16.5 - parent: 8364 - type: Transform -- uid: 450 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-73.5 - parent: 8364 - type: Transform -- uid: 451 - type: Stool - components: - - pos: -57.5,16.5 - parent: 8364 - type: Transform -- uid: 452 - type: ChairWood - components: - - pos: 45.5,-71.5 - parent: 8364 - type: Transform -- uid: 453 - type: GrilleBroken - components: - - pos: -51.5,14.5 - parent: 8364 - type: Transform -- uid: 454 - type: CableApcExtension - components: - - pos: -53.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 455 - type: WallSolid - components: - - pos: -50.5,12.5 - parent: 8364 - type: Transform -- uid: 456 - type: WallSolid - components: - - pos: -50.5,16.5 - parent: 8364 - type: Transform -- uid: 457 - type: CableApcExtension - components: - - pos: -54.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 458 - type: CableApcExtension - components: - - pos: -47.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 459 - type: WallSolid - components: - - pos: -37.5,6.5 - parent: 8364 - type: Transform -- uid: 460 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -50.5,15.5 - parent: 8364 - type: Transform -- uid: 461 - type: WallSolid - components: - - pos: -38.5,6.5 - parent: 8364 - type: Transform -- uid: 462 - type: WallSolid - components: - - pos: -39.5,6.5 - parent: 8364 - type: Transform -- uid: 463 - type: WallSolid - components: - - pos: -40.5,6.5 - parent: 8364 - type: Transform -- uid: 464 - type: WallSolid - components: - - pos: -41.5,6.5 - parent: 8364 - type: Transform -- uid: 465 - type: WallSolid - components: - - pos: -42.5,6.5 - parent: 8364 - type: Transform -- uid: 466 - type: WallSolid - components: - - pos: -43.5,6.5 - parent: 8364 - type: Transform -- uid: 467 - type: WallSolid - components: - - pos: -44.5,6.5 - parent: 8364 - type: Transform -- uid: 468 - type: WallSolid - components: - - pos: -46.5,6.5 - parent: 8364 - type: Transform -- uid: 469 - type: WallSolid - components: - - pos: -47.5,6.5 - parent: 8364 - type: Transform -- uid: 470 - type: SolarPanel - components: - - pos: -52.5,38.5 - parent: 8364 - type: Transform -- uid: 471 - type: SolarPanel - components: - - pos: -51.5,38.5 - parent: 8364 - type: Transform - - supplyRate: 262 - type: PowerSupplier -- uid: 472 - type: MaterialDiamond1 - components: - - pos: -29.519228,5.30172 - parent: 8364 - type: Transform -- uid: 473 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -53.5,16.5 - parent: 8364 - type: Transform -- uid: 474 - type: WallSolid - components: - - pos: -47.5,4.5 - parent: 8364 - type: Transform -- uid: 475 - type: TableWood - components: - - pos: 45.5,-62.5 - parent: 8364 - type: Transform -- uid: 476 - type: ClothingHeadHatFez - components: - - pos: 47.502956,-71.100746 - parent: 8364 - type: Transform -- uid: 477 - type: DisgustingSweptSoup - components: - - pos: 38.567345,-70.52471 - parent: 8364 - type: Transform -- uid: 478 - type: BedsheetSpawner - components: - - pos: 25.5,19.5 - parent: 8364 - type: Transform -- uid: 479 - type: WallSolid - components: - - pos: -60.5,10.5 - parent: 8364 - type: Transform -- uid: 480 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -57.5,13.5 - parent: 8364 - type: Transform -- uid: 481 - type: WallSolid - components: - - pos: -60.5,16.5 - parent: 8364 - type: Transform -- uid: 482 - type: BedsheetSpawner - components: - - pos: 25.5,18.5 - parent: 8364 - type: Transform -- uid: 483 - type: CableApcExtension - components: - - pos: -51.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 484 - type: Bed - components: - - pos: 25.5,19.5 - parent: 8364 - type: Transform -- uid: 485 - type: WallSolid - components: - - pos: -55.5,9.5 - parent: 8364 - type: Transform -- uid: 486 - type: WallSolid - components: - - pos: -58.5,9.5 - parent: 8364 - type: Transform -- uid: 487 - type: WallSolid - components: - - pos: -56.5,9.5 - parent: 8364 - type: Transform -- uid: 488 - type: WallSolid - components: - - pos: -57.5,9.5 - parent: 8364 - type: Transform -- uid: 489 - type: Bed - components: - - pos: 25.5,18.5 - parent: 8364 - type: Transform -- uid: 490 - type: WallSolid - components: - - pos: -60.5,9.5 - parent: 8364 - type: Transform -- uid: 491 - type: CableApcExtension - components: - - pos: -52.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 492 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -57.5,12.5 - parent: 8364 - type: Transform -- uid: 493 - type: ChurchOrganInstrument - components: - - rot: 3.141592653589793 rad - pos: 65.5,-3.5 - parent: 8364 - type: Transform -- uid: 494 - type: SinkWide - components: - - rot: 3.141592653589793 rad - pos: 31.5,-7.5 - parent: 8364 - type: Transform -- uid: 495 - type: RCDAmmo - components: - - pos: 4.173121,-61.326607 - parent: 8364 - type: Transform -- uid: 496 - type: RCD - components: - - pos: 3.673121,-61.357857 - parent: 8364 - type: Transform -- uid: 497 - type: PosterContrabandLamarr - components: - - pos: 75.5,-34.5 - parent: 8364 - type: Transform -- uid: 498 - type: WallSolid - components: - - pos: -64.5,14.5 - parent: 8364 - type: Transform -- uid: 499 - type: WallSolid - components: - - pos: -64.5,13.5 - parent: 8364 - type: Transform -- uid: 500 - type: WallSolid - components: - - pos: -64.5,12.5 - parent: 8364 - type: Transform -- uid: 501 - type: WallSolid - components: - - pos: -64.5,11.5 - parent: 8364 - type: Transform -- uid: 502 - type: WallSolid - components: - - pos: -50.5,0.5 - parent: 8364 - type: Transform -- uid: 503 - type: WallSolid - components: - - pos: -62.5,11.5 - parent: 8364 - type: Transform -- uid: 504 - type: WallSolid - components: - - pos: -60.5,12.5 - parent: 8364 - type: Transform -- uid: 505 - type: WallSolid - components: - - pos: -60.5,11.5 - parent: 8364 - type: Transform -- uid: 506 - type: SheetPlastic - components: - - pos: 69.50902,-26.620325 - parent: 8364 - type: Transform -- uid: 507 - type: WallSolid - components: - - pos: -60.5,15.5 - parent: 8364 - type: Transform -- uid: 508 - type: VehicleKeySecway - components: - - pos: 12.474529,33.69146 - parent: 8364 - type: Transform -- uid: 509 - type: SpawnVehicleSecway - components: - - pos: 10.5,33.5 - parent: 8364 - type: Transform -- uid: 510 - type: SpawnMobSlothPaperwork - components: - - pos: 57.5,-3.5 - parent: 8364 - type: Transform -- uid: 511 - type: CableApcExtension - components: - - pos: -58.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 512 - type: SpawnMobBandito - components: - - pos: 72.5,-36.5 - parent: 8364 - type: Transform -- uid: 513 - type: WallSolid - components: - - pos: -54.5,9.5 - parent: 8364 - type: Transform -- uid: 514 - type: Barricade - components: - - pos: -50.5,3.5 - parent: 8364 - type: Transform -- uid: 515 - type: ClothingHandsGlovesNitrile - components: - - pos: 38.538353,-58.218132 - parent: 8364 - type: Transform -- uid: 516 - type: CableMV - components: - - pos: -48.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 517 - type: CableMV - components: - - pos: -49.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 518 - type: SpawnPointMedicalDoctor - components: - - pos: 35.5,-40.5 - parent: 8364 - type: Transform -- uid: 519 - type: CableMV - components: - - pos: -48.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 520 - type: CableApcExtension - components: - - pos: -18.5,50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 521 - type: CableApcExtension - components: - - pos: -23.5,46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 522 - type: WallSolid - components: - - pos: -59.5,9.5 - parent: 8364 - type: Transform -- uid: 523 - type: WallSolid - components: - - pos: -55.5,8.5 - parent: 8364 - type: Transform -- uid: 524 - type: SecurityTechFab - components: - - pos: 8.5,41.5 - parent: 8364 - type: Transform - - materialWhiteList: - - Glass - - Plastic - - Steel - type: MaterialStorage -- uid: 525 - type: WallSolid - components: - - pos: -56.5,-2.5 - parent: 8364 - type: Transform -- uid: 526 - type: Window - components: - - pos: -62.5,-0.5 - parent: 8364 - type: Transform -- uid: 527 - type: Window - components: - - pos: -62.5,-1.5 - parent: 8364 - type: Transform -- uid: 528 - type: ReinforcedWindow - components: - - pos: -59.5,2.5 - parent: 8364 - type: Transform -- uid: 529 - type: ReinforcedWindow - components: - - pos: -57.5,2.5 - parent: 8364 - type: Transform -- uid: 530 - type: WallSolid - components: - - pos: -61.5,2.5 - parent: 8364 - type: Transform -- uid: 531 - type: WallSolid - components: - - pos: -62.5,8.5 - parent: 8364 - type: Transform -- uid: 532 - type: WallSolid - components: - - pos: -62.5,9.5 - parent: 8364 - type: Transform -- uid: 533 - type: WallSolid - components: - - pos: -62.5,10.5 - parent: 8364 - type: Transform -- uid: 534 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: 16.659124,41.387413 - parent: 8364 - type: Transform - - unspawnedCount: 30 - type: BallisticAmmoProvider -- uid: 535 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: 16.580612,41.275093 - parent: 8364 - type: Transform - - unspawnedCount: 30 - type: BallisticAmmoProvider -- uid: 536 - type: WeaponSubMachineGunWt550 - components: - - pos: 16.471237,40.900093 - parent: 8364 - type: Transform -- uid: 537 - type: filingCabinet - components: - - pos: -20.5,-9.5 - parent: 8364 - type: Transform -- uid: 538 - type: CableHV - components: - - pos: 8.5,-75.5 - parent: 8364 - type: Transform -- uid: 539 - type: CableHV - components: - - pos: 8.5,-73.5 - parent: 8364 - type: Transform -- uid: 540 - type: CableHV - components: - - pos: 8.5,-74.5 - parent: 8364 - type: Transform -- uid: 541 - type: FoodBoxDonut - components: - - pos: 16.555893,33.587013 - parent: 8364 - type: Transform -- uid: 542 - type: BoxZiptie - components: - - pos: 12.512168,34.618263 - parent: 8364 - type: Transform -- uid: 543 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -76.5,-2.5 - parent: 8364 - type: Transform -- uid: 544 - type: ReinforcedWindow - components: - - pos: -65.5,20.5 - parent: 8364 - type: Transform -- uid: 545 - type: ReinforcedWindow - components: - - pos: -68.5,13.5 - parent: 8364 - type: Transform -- uid: 546 - type: Grille - components: - - pos: -65.5,21.5 - parent: 8364 - type: Transform -- uid: 547 - type: ReinforcedWindow - components: - - pos: -67.5,21.5 - parent: 8364 - type: Transform -- uid: 548 - type: BoxPDA - components: - - pos: -11.614725,-21.270159 - parent: 8364 - type: Transform -- uid: 549 - type: CableApcExtension - components: - - pos: -68.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 550 - type: ReinforcedWindow - components: - - pos: -65.5,21.5 - parent: 8364 - type: Transform -- uid: 551 - type: CableApcExtension - components: - - pos: -53.5,-1.5 - parent: 8364 - type: Transform -- uid: 552 - type: Grille - components: - - pos: -65.5,19.5 - parent: 8364 - type: Transform -- uid: 553 - type: ReinforcedWindow - components: - - pos: -68.5,14.5 - parent: 8364 - type: Transform -- uid: 554 - type: CableApcExtension - components: - - pos: -66.5,15.5 - parent: 8364 - type: Transform -- uid: 555 - type: CableMV - components: - - pos: -62.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 556 - type: AtmosDeviceFanTiny - components: - - pos: -0.5,-0.5 - parent: 11906 - type: Transform -- uid: 557 - type: Grille - components: - - pos: -67.5,21.5 - parent: 8364 - type: Transform -- uid: 558 - type: Window - components: - - pos: -67.5,11.5 - parent: 8364 - type: Transform -- uid: 559 - type: ReinforcedWindow - components: - - pos: -68.5,12.5 - parent: 8364 - type: Transform -- uid: 560 - type: CableMV - components: - - pos: -63.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 561 - type: HandLabeler - components: - - pos: -9.5991,-25.410784 - parent: 8364 - type: Transform -- uid: 562 - type: AirlockGlassShuttle - components: - - rot: 3.141592653589793 rad - pos: -66.5,21.5 - parent: 8364 - type: Transform - - dockJointId: docking46345 - dockedWith: 21828 - type: Docking - - SecondsUntilStateChange: -28098.396 - changeAirtight: False - state: Opening - type: Door - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 563 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 29.5,-111.5 - parent: 8364 - type: Transform -- uid: 564 - type: CableApcExtension - components: - - pos: -48.5,-1.5 - parent: 8364 - type: Transform -- uid: 565 - type: CableApcExtension - components: - - pos: -25.5,-0.5 - parent: 8364 - type: Transform -- uid: 566 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-100.5 - parent: 8364 - type: Transform -- uid: 567 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-92.5 - parent: 8364 - type: Transform -- uid: 568 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-92.5 - parent: 8364 - type: Transform -- uid: 569 - type: WallSolid - components: - - pos: -65.5,11.5 - parent: 8364 - type: Transform -- uid: 570 - type: WallReinforced - components: - - pos: 30.5,-83.5 - parent: 8364 - type: Transform -- uid: 571 - type: Grille - components: - - pos: -68.5,16.5 - parent: 8364 - type: Transform -- uid: 572 - type: Grille - components: - - pos: -68.5,18.5 - parent: 8364 - type: Transform -- uid: 573 - type: Grille - components: - - pos: -68.5,14.5 - parent: 8364 - type: Transform -- uid: 574 - type: ReinforcedWindow - components: - - pos: -67.5,19.5 - parent: 8364 - type: Transform -- uid: 575 - type: Grille - components: - - pos: -68.5,12.5 - parent: 8364 - type: Transform -- uid: 576 - type: AirlockEngineeringLocked - components: - - name: Shuttle Construction - type: MetaData - - pos: -66.5,11.5 - parent: 8364 - type: Transform -- uid: 577 - type: CableApcExtension - components: - - pos: -50.5,-1.5 - parent: 8364 - type: Transform -- uid: 578 - type: Grille - components: - - pos: -67.5,20.5 - parent: 8364 - type: Transform -- uid: 579 - type: Grille - components: - - pos: -67.5,19.5 - parent: 8364 - type: Transform -- uid: 580 - type: ReinforcedWindow - components: - - pos: -67.5,20.5 - parent: 8364 - type: Transform -- uid: 581 - type: ReinforcedWindow - components: - - pos: -68.5,18.5 - parent: 8364 - type: Transform -- uid: 582 - type: Grille - components: - - pos: -68.5,13.5 - parent: 8364 - type: Transform -- uid: 583 - type: Grille - components: - - pos: -67.5,11.5 - parent: 8364 - type: Transform -- uid: 584 - type: CableApcExtension - components: - - pos: -49.5,-1.5 - parent: 8364 - type: Transform -- uid: 585 - type: WallReinforced - components: - - pos: -80.5,11.5 - parent: 8364 - type: Transform -- uid: 586 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-2.5 - parent: 8364 - type: Transform -- uid: 587 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -81.5,7.5 - parent: 8364 - type: Transform -- uid: 588 - type: WallReinforced - components: - - pos: -65.5,5.5 - parent: 8364 - type: Transform -- uid: 589 - type: WallReinforced - components: - - pos: -65.5,6.5 - parent: 8364 - type: Transform -- uid: 590 - type: WallReinforced - components: - - pos: -65.5,7.5 - parent: 8364 - type: Transform -- uid: 591 - type: WallReinforced - components: - - pos: 34.5,-84.5 - parent: 8364 - type: Transform -- uid: 592 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-85.5 - parent: 8364 - type: Transform -- uid: 593 - type: AirlockExternalShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -81.5,9.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 594 - type: KitchenMicrowave - components: - - pos: 26.5,-86.5 - parent: 8364 - type: Transform -- uid: 595 - type: ComputerPowerMonitoring - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-85.5 - parent: 8364 - type: Transform -- uid: 596 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -67.5,7.5 - parent: 8364 - type: Transform -- uid: 597 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -79.5,-3.5 - parent: 8364 - type: Transform -- uid: 598 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -79.5,-2.5 - parent: 8364 - type: Transform -- uid: 599 - type: WallReinforced - components: - - pos: -78.5,11.5 - parent: 8364 - type: Transform -- uid: 600 - type: WallReinforced - components: - - pos: -79.5,11.5 - parent: 8364 - type: Transform -- uid: 601 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -81.5,11.5 - parent: 8364 - type: Transform -- uid: 602 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -68.5,7.5 - parent: 8364 - type: Transform -- uid: 603 - type: CableApcExtension - components: - - pos: -80.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 604 - type: CableApcExtension - components: - - pos: -74.5,-2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 605 - type: CableApcExtension - components: - - pos: -75.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 606 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 3.141592653589793 rad - pos: -70.5,-2.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 607 - type: ClosetEmergencyFilledRandom - components: - - pos: -72.5,8.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 608 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -76.5,7.5 - parent: 8364 - type: Transform -- uid: 609 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -68.5,-2.5 - parent: 8364 - type: Transform -- uid: 610 - type: AirlockExternalLocked - components: - - rot: 3.141592653589793 rad - pos: -79.5,-4.5 - parent: 8364 - type: Transform -- uid: 611 - type: CableApcExtension - components: - - pos: -74.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 612 - type: CableApcExtension - components: - - pos: -73.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 613 - type: CableApcExtension - components: - - pos: -79.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 614 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -80.5,7.5 - parent: 8364 - type: Transform -- uid: 615 - type: CableApcExtension - components: - - pos: -75.5,-2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 616 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 3.141592653589793 rad - pos: -77.5,-2.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 617 - type: CableApcExtension - components: - - pos: -73.5,-2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 618 - type: ClosetEmergencyFilledRandom - components: - - pos: -80.5,10.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 619 - type: ClosetEmergencyFilledRandom - components: - - pos: -80.5,-5.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 620 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -78.5,-6.5 - parent: 8364 - type: Transform -- uid: 621 - type: CableApcExtension - components: - - pos: -72.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 622 - type: CableApcExtension - components: - - pos: -72.5,-2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 623 - type: CableApcExtension - components: - - pos: -80.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 624 - type: CableApcExtension - components: - - pos: -78.5,9.5 - parent: 8364 - type: Transform -- uid: 625 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -77.5,-6.5 - parent: 8364 - type: Transform -- uid: 626 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -69.5,7.5 - parent: 8364 - type: Transform -- uid: 627 - type: Grille - components: - - pos: -65.5,4.5 - parent: 8364 - type: Transform -- uid: 628 - type: Grille - components: - - pos: -65.5,3.5 - parent: 8364 - type: Transform -- uid: 629 - type: Grille - components: - - pos: -65.5,2.5 - parent: 8364 - type: Transform -- uid: 630 - type: Grille - components: - - pos: -65.5,1.5 - parent: 8364 - type: Transform -- uid: 631 - type: Grille - components: - - pos: -65.5,0.5 - parent: 8364 - type: Transform -- uid: 632 - type: WallReinforced - components: - - pos: -65.5,-0.5 - parent: 8364 - type: Transform -- uid: 633 - type: WallReinforced - components: - - pos: -65.5,-1.5 - parent: 8364 - type: Transform -- uid: 634 - type: WallReinforced - components: - - pos: -65.5,-2.5 - parent: 8364 - type: Transform -- uid: 635 - type: AtmosDeviceFanTiny - components: - - pos: -77.5,7.5 - parent: 8364 - type: Transform -- uid: 636 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -79.5,-6.5 - parent: 8364 - type: Transform -- uid: 637 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -68.5,7.5 - parent: 8364 - type: Transform -- uid: 638 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -79.5,-5.5 - parent: 8364 - type: Transform -- uid: 639 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -81.5,-3.5 - parent: 8364 - type: Transform -- uid: 640 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -81.5,-2.5 - parent: 8364 - type: Transform -- uid: 641 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -74.5,7.5 - parent: 8364 - type: Transform -- uid: 642 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -79.5,8.5 - parent: 8364 - type: Transform -- uid: 643 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -75.5,-2.5 - parent: 8364 - type: Transform -- uid: 644 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -80.5,-6.5 - parent: 8364 - type: Transform -- uid: 645 - type: WallReinforced - components: - - pos: -66.5,-2.5 - parent: 8364 - type: Transform -- uid: 646 - type: Rack - components: - - pos: 26.5,-87.5 - parent: 8364 - type: Transform -- uid: 647 - type: Rack - components: - - pos: 29.5,-83.5 - parent: 8364 - type: Transform -- uid: 648 - type: AirlockExternalGlassShuttleArrivals - components: - - pos: -70.5,7.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 649 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -73.5,-2.5 - parent: 8364 - type: Transform -- uid: 650 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -80.5,8.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 651 - type: CableApcExtension - components: - - pos: -77.5,-4.5 - parent: 8364 - type: Transform -- uid: 652 - type: WallReinforced - components: - - pos: -76.5,-6.5 - parent: 8364 - type: Transform -- uid: 653 - type: CableApcExtension - components: - - pos: -78.5,-4.5 - parent: 8364 - type: Transform -- uid: 654 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -79.5,7.5 - parent: 8364 - type: Transform -- uid: 655 - type: AirlockExternalLocked - components: - - rot: 3.141592653589793 rad - pos: -79.5,9.5 - parent: 8364 - type: Transform -- uid: 656 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-2.5 - parent: 8364 - type: Transform -- uid: 657 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -72.5,7.5 - parent: 8364 - type: Transform -- uid: 658 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -72.5,-2.5 - parent: 8364 - type: Transform -- uid: 659 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -81.5,10.5 - parent: 8364 - type: Transform -- uid: 660 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-2.5 - parent: 8364 - type: Transform -- uid: 661 - type: ComputerAlert - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-84.5 - parent: 8364 - type: Transform -- uid: 662 - type: Table - components: - - pos: 27.5,-83.5 - parent: 8364 - type: Transform -- uid: 663 - type: WallSolid - components: - - pos: -55.5,6.5 - parent: 8364 - type: Transform -- uid: 664 - type: WallSolid - components: - - pos: -55.5,5.5 - parent: 8364 - type: Transform -- uid: 665 - type: WallSolid - components: - - pos: -55.5,3.5 - parent: 8364 - type: Transform -- uid: 666 - type: WallSolid - components: - - pos: -55.5,4.5 - parent: 8364 - type: Transform -- uid: 667 - type: Grille - components: - - pos: -62.5,-0.5 - parent: 8364 - type: Transform -- uid: 668 - type: Window - components: - - pos: -62.5,-3.5 - parent: 8364 - type: Transform -- uid: 669 - type: WallSolid - components: - - pos: -56.5,-0.5 - parent: 8364 - type: Transform -- uid: 670 - type: WallSolid - components: - - pos: -56.5,2.5 - parent: 8364 - type: Transform -- uid: 671 - type: WallSolid - components: - - pos: -62.5,5.5 - parent: 8364 - type: Transform -- uid: 672 - type: WallSolid - components: - - pos: -62.5,4.5 - parent: 8364 - type: Transform -- uid: 673 - type: WallSolid - components: - - pos: -62.5,3.5 - parent: 8364 - type: Transform -- uid: 674 - type: WallSolid - components: - - pos: -62.5,2.5 - parent: 8364 - type: Transform -- uid: 675 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -69.5,-2.5 - parent: 8364 - type: Transform -- uid: 676 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -75.5,7.5 - parent: 8364 - type: Transform -- uid: 677 - type: Poweredlight - components: - - pos: -76.5,-3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 678 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -74.5,7.5 - parent: 8364 - type: Transform -- uid: 679 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -73.5,7.5 - parent: 8364 - type: Transform -- uid: 680 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -71.5,7.5 - parent: 8364 - type: Transform -- uid: 681 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -72.5,-2.5 - parent: 8364 - type: Transform -- uid: 682 - type: AtmosDeviceFanTiny - components: - - pos: -70.5,7.5 - parent: 8364 - type: Transform -- uid: 683 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -72.5,7.5 - parent: 8364 - type: Transform -- uid: 684 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -81.5,-6.5 - parent: 8364 - type: Transform -- uid: 685 - type: Window - components: - - pos: -62.5,-2.5 - parent: 8364 - type: Transform -- uid: 686 - type: WallSolid - components: - - pos: -56.5,-1.5 - parent: 8364 - type: Transform -- uid: 687 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -54.5,16.5 - parent: 8364 - type: Transform -- uid: 688 - type: Table - components: - - pos: 26.5,-86.5 - parent: 8364 - type: Transform -- uid: 689 - type: WallSolid - components: - - pos: -56.5,-3.5 - parent: 8364 - type: Transform -- uid: 690 - type: Grille - components: - - pos: -62.5,-3.5 - parent: 8364 - type: Transform -- uid: 691 - type: Grille - components: - - pos: -62.5,-2.5 - parent: 8364 - type: Transform -- uid: 692 - type: Grille - components: - - pos: -62.5,-1.5 - parent: 8364 - type: Transform -- uid: 693 - type: WallSolid - components: - - pos: -62.5,6.5 - parent: 8364 - type: Transform -- uid: 694 - type: WallSolid - components: - - pos: -60.5,6.5 - parent: 8364 - type: Transform -- uid: 695 - type: WallSolid - components: - - pos: -61.5,6.5 - parent: 8364 - type: Transform -- uid: 696 - type: WallSolid - components: - - pos: -59.5,6.5 - parent: 8364 - type: Transform -- uid: 697 - type: WallSolid - components: - - pos: -20.5,0.5 - parent: 8364 - type: Transform -- uid: 698 - type: WallSolid - components: - - pos: -19.5,0.5 - parent: 8364 - type: Transform -- uid: 699 - type: WallSolid - components: - - pos: -18.5,0.5 - parent: 8364 - type: Transform -- uid: 700 - type: WallSolid - components: - - pos: -17.5,0.5 - parent: 8364 - type: Transform -- uid: 701 - type: Table - components: - - pos: 30.5,-87.5 - parent: 8364 - type: Transform -- uid: 702 - type: WallSolid - components: - - pos: -60.5,13.5 - parent: 8364 - type: Transform -- uid: 703 - type: WallSolid - components: - - pos: -52.5,2.5 - parent: 8364 - type: Transform -- uid: 704 - type: WallSolid - components: - - pos: -54.5,2.5 - parent: 8364 - type: Transform -- uid: 705 - type: WallSolid - components: - - pos: -55.5,2.5 - parent: 8364 - type: Transform -- uid: 706 - type: WallSolid - components: - - pos: -47.5,1.5 - parent: 8364 - type: Transform -- uid: 707 - type: Window - components: - - pos: -46.5,0.5 - parent: 8364 - type: Transform -- uid: 708 - type: WallSolid - components: - - pos: -22.5,0.5 - parent: 8364 - type: Transform -- uid: 709 - type: Window - components: - - pos: -44.5,0.5 - parent: 8364 - type: Transform -- uid: 710 - type: WallSolid - components: - - pos: -47.5,5.5 - parent: 8364 - type: Transform -- uid: 711 - type: WallSolid - components: - - pos: -47.5,3.5 - parent: 8364 - type: Transform -- uid: 712 - type: WallSolid - components: - - pos: -47.5,2.5 - parent: 8364 - type: Transform -- uid: 713 - type: Window - components: - - pos: -37.5,0.5 - parent: 8364 - type: Transform -- uid: 714 - type: Grille - components: - - pos: -46.5,0.5 - parent: 8364 - type: Transform -- uid: 715 - type: Grille - components: - - pos: -44.5,0.5 - parent: 8364 - type: Transform -- uid: 716 - type: Grille - components: - - pos: -37.5,0.5 - parent: 8364 - type: Transform -- uid: 717 - type: WallSolid - components: - - pos: -52.5,0.5 - parent: 8364 - type: Transform -- uid: 718 - type: WallSolid - components: - - pos: -53.5,2.5 - parent: 8364 - type: Transform -- uid: 719 - type: WallSolid - components: - - pos: -48.5,0.5 - parent: 8364 - type: Transform -- uid: 720 - type: WallSolid - components: - - pos: -43.5,0.5 - parent: 8364 - type: Transform -- uid: 721 - type: WallSolid - components: - - pos: -42.5,0.5 - parent: 8364 - type: Transform -- uid: 722 - type: WallSolid - components: - - pos: -41.5,0.5 - parent: 8364 - type: Transform -- uid: 723 - type: WallSolid - components: - - pos: -47.5,0.5 - parent: 8364 - type: Transform -- uid: 724 - type: WallSolid - components: - - pos: -52.5,1.5 - parent: 8364 - type: Transform -- uid: 725 - type: WallSolid - components: - - pos: -40.5,0.5 - parent: 8364 - type: Transform -- uid: 726 - type: Grille - components: - - pos: -39.5,0.5 - parent: 8364 - type: Transform -- uid: 727 - type: WallSolid - components: - - pos: -24.5,0.5 - parent: 8364 - type: Transform -- uid: 728 - type: Window - components: - - pos: -39.5,0.5 - parent: 8364 - type: Transform -- uid: 729 - type: WallSolid - components: - - pos: -23.5,0.5 - parent: 8364 - type: Transform -- uid: 730 - type: WallSolid - components: - - pos: -21.5,0.5 - parent: 8364 - type: Transform -- uid: 731 - type: ReinforcedWindow - components: - - pos: -65.5,4.5 - parent: 8364 - type: Transform -- uid: 732 - type: ReinforcedWindow - components: - - pos: -65.5,3.5 - parent: 8364 - type: Transform -- uid: 733 - type: ReinforcedWindow - components: - - pos: -65.5,2.5 - parent: 8364 - type: Transform -- uid: 734 - type: ReinforcedWindow - components: - - pos: -65.5,1.5 - parent: 8364 - type: Transform -- uid: 735 - type: WallReinforced - components: - - pos: 45.5,16.5 - parent: 8364 - type: Transform -- uid: 736 - type: ReinforcedWindow - components: - - pos: -65.5,0.5 - parent: 8364 - type: Transform -- uid: 737 - type: WallSolid - components: - - pos: 50.5,11.5 - parent: 8364 - type: Transform -- uid: 738 - type: WallReinforced - components: - - pos: 30.5,-92.5 - parent: 8364 - type: Transform -- uid: 739 - type: WallReinforced - components: - - pos: 26.5,-92.5 - parent: 8364 - type: Transform -- uid: 740 - type: ClosetEmergencyFilledRandom - components: - - pos: 25.5,-81.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 741 - type: ShuttersNormal - components: - - pos: 31.5,-84.5 - parent: 8364 - type: Transform -- uid: 742 - type: HighSecCommandLocked - components: - - pos: 31.5,-85.5 - parent: 8364 - type: Transform -- uid: 743 - type: WallReinforced - components: - - pos: 45.5,12.5 - parent: 8364 - type: Transform -- uid: 744 - type: RandomSpawner - components: - - pos: 43.5,10.5 - parent: 8364 - type: Transform -- uid: 745 - type: SpawnMobMouse - components: - - pos: 49.5,8.5 - parent: 8364 - type: Transform -- uid: 746 - type: PortableScrubber - components: - - pos: 23.5,-95.5 - parent: 8364 - type: Transform -- uid: 747 - type: Rack - components: - - pos: 33.5,-95.5 - parent: 8364 - type: Transform -- uid: 748 - type: AirlockMaintLocked - components: - - pos: 41.5,11.5 - parent: 8364 - type: Transform -- uid: 749 - type: GasPipeTJunction - components: - - pos: -6.5,50.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 750 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,43.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 751 - type: WallReinforced - components: - - pos: 45.5,14.5 - parent: 8364 - type: Transform -- uid: 752 - type: WallReinforced - components: - - pos: 45.5,15.5 - parent: 8364 - type: Transform -- uid: 753 - type: WallSolid - components: - - pos: 41.5,8.5 - parent: 8364 - type: Transform -- uid: 754 - type: WallSolid - components: - - pos: 41.5,4.5 - parent: 8364 - type: Transform -- uid: 755 - type: WallSolid - components: - - pos: 39.5,4.5 - parent: 8364 - type: Transform -- uid: 756 - type: AirCanister - components: - - pos: 39.5,8.5 - parent: 8364 - type: Transform -- uid: 757 - type: FirelockGlass - components: - - pos: -6.5,40.5 - parent: 8364 - type: Transform -- uid: 758 - type: WallSolid - components: - - pos: 43.5,4.5 - parent: 8364 - type: Transform -- uid: 759 - type: WallSolid - components: - - pos: 44.5,4.5 - parent: 8364 - type: Transform -- uid: 760 - type: WallSolid - components: - - pos: 42.5,8.5 - parent: 8364 - type: Transform -- uid: 761 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 42.5,6.5 - parent: 8364 - type: Transform -- uid: 762 - type: WallSolid - components: - - pos: 44.5,7.5 - parent: 8364 - type: Transform -- uid: 763 - type: WallSolid - components: - - pos: 44.5,6.5 - parent: 8364 - type: Transform -- uid: 764 - type: SignElectricalMed - components: - - pos: 43.5,4.5 - parent: 8364 - type: Transform -- uid: 765 - type: WallSolid - components: - - pos: 43.5,8.5 - parent: 8364 - type: Transform -- uid: 766 - type: WallSolid - components: - - pos: 44.5,5.5 - parent: 8364 - type: Transform -- uid: 767 - type: WallSolid - components: - - pos: 44.5,8.5 - parent: 8364 - type: Transform -- uid: 768 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 39.5,8.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 769 - type: AirCanister - components: - - pos: 39.5,7.5 - parent: 8364 - type: Transform -- uid: 770 - type: AirlockSecurityGlassLocked - components: - - pos: -5.5,38.5 - parent: 8364 - type: Transform -- uid: 771 - type: WallReinforced - components: - - pos: 4.5,41.5 - parent: 8364 - type: Transform -- uid: 772 - type: Grille - components: - - pos: -0.5,40.5 - parent: 8364 - type: Transform -- uid: 773 - type: Grille - components: - - pos: 0.5,40.5 - parent: 8364 - type: Transform -- uid: 774 - type: Grille - components: - - pos: 1.5,40.5 - parent: 8364 - type: Transform -- uid: 775 - type: Grille - components: - - pos: 2.5,40.5 - parent: 8364 - type: Transform -- uid: 776 - type: PlasmaReinforcedWindowDirectional - components: - - pos: -0.5,41.5 - parent: 8364 - type: Transform -- uid: 777 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 0.5,41.5 - parent: 8364 - type: Transform -- uid: 778 - type: WallReinforced - components: - - pos: -2.5,41.5 - parent: 8364 - type: Transform -- uid: 779 - type: WallReinforced - components: - - pos: -26.5,11.5 - parent: 8364 - type: Transform -- uid: 780 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree -- uid: 781 - type: WeldingFuelTankFull - components: - - pos: 33.5,-96.5 - parent: 8364 - type: Transform -- uid: 782 - type: WaterTankFull - components: - - pos: 23.5,-96.5 - parent: 8364 - type: Transform -- uid: 783 - type: AirlockMaintLocked - components: - - pos: 25.5,-99.5 - parent: 8364 - type: Transform -- uid: 784 - type: AirlockMaintLocked - components: - - pos: 31.5,-99.5 - parent: 8364 - type: Transform -- uid: 785 - type: WallSolid - components: - - pos: 41.5,7.5 - parent: 8364 - type: Transform -- uid: 786 - type: WallSolid - components: - - pos: 23.5,6.5 - parent: 8364 - type: Transform -- uid: 787 - type: WallSolid - components: - - pos: 23.5,4.5 - parent: 8364 - type: Transform -- uid: 788 - type: WallSolid - components: - - pos: 23.5,3.5 - parent: 8364 - type: Transform -- uid: 789 - type: WallSolid - components: - - pos: 23.5,2.5 - parent: 8364 - type: Transform -- uid: 790 - type: WallSolid - components: - - pos: 22.5,1.5 - parent: 8364 - type: Transform -- uid: 791 - type: WallSolid - components: - - pos: 23.5,1.5 - parent: 8364 - type: Transform -- uid: 792 - type: WallSolid - components: - - pos: 20.5,1.5 - parent: 8364 - type: Transform -- uid: 793 - type: WallSolid - components: - - pos: 24.5,1.5 - parent: 8364 - type: Transform -- uid: 794 - type: WallSolid - components: - - pos: 25.5,1.5 - parent: 8364 - type: Transform -- uid: 795 - type: ReinforcedWindow - components: - - pos: 27.5,1.5 - parent: 8364 - type: Transform -- uid: 796 - type: WallSolid - components: - - pos: 28.5,1.5 - parent: 8364 - type: Transform -- uid: 797 - type: WallSolid - components: - - pos: 28.5,2.5 - parent: 8364 - type: Transform -- uid: 798 - type: WallSolid - components: - - pos: 29.5,2.5 - parent: 8364 - type: Transform -- uid: 799 - type: AirlockEngineeringLocked - components: - - name: Starboard Bow Service Power - type: MetaData - - pos: 42.5,4.5 - parent: 8364 - type: Transform -- uid: 800 - type: WallSolid - components: - - pos: 32.5,2.5 - parent: 8364 - type: Transform -- uid: 801 - type: WallSolid - components: - - pos: 32.5,1.5 - parent: 8364 - type: Transform -- uid: 802 - type: WallSolid - components: - - pos: 34.5,2.5 - parent: 8364 - type: Transform -- uid: 803 - type: WallSolid - components: - - pos: 34.5,1.5 - parent: 8364 - type: Transform -- uid: 804 - type: WallSolid - components: - - pos: 35.5,1.5 - parent: 8364 - type: Transform -- uid: 805 - type: WallSolid - components: - - pos: 34.5,0.5 - parent: 8364 - type: Transform -- uid: 806 - type: WallSolid - components: - - pos: 34.5,-0.5 - parent: 8364 - type: Transform -- uid: 807 - type: WallSolid - components: - - pos: 34.5,-1.5 - parent: 8364 - type: Transform -- uid: 808 - type: WallSolid - components: - - pos: 34.5,-2.5 - parent: 8364 - type: Transform -- uid: 809 - type: WallSolid - components: - - pos: 34.5,-3.5 - parent: 8364 - type: Transform -- uid: 810 - type: WallSolid - components: - - pos: 33.5,-1.5 - parent: 8364 - type: Transform -- uid: 811 - type: WallSolid - components: - - pos: 32.5,-1.5 - parent: 8364 - type: Transform -- uid: 812 - type: WallSolid - components: - - pos: 32.5,-2.5 - parent: 8364 - type: Transform -- uid: 813 - type: WallSolid - components: - - pos: 32.5,-3.5 - parent: 8364 - type: Transform -- uid: 814 - type: WallSolid - components: - - pos: 33.5,-3.5 - parent: 8364 - type: Transform -- uid: 815 - type: Basketball - components: - - pos: 33.5,-2.5 - parent: 8364 - type: Transform -- uid: 816 - type: WallSolid - components: - - pos: 37.5,1.5 - parent: 8364 - type: Transform -- uid: 817 - type: WallSolid - components: - - pos: 39.5,1.5 - parent: 8364 - type: Transform -- uid: 818 - type: WallSolid - components: - - pos: 41.5,1.5 - parent: 8364 - type: Transform -- uid: 819 - type: WallSolid - components: - - pos: 42.5,1.5 - parent: 8364 - type: Transform -- uid: 820 - type: WallSolid - components: - - pos: 44.5,1.5 - parent: 8364 - type: Transform -- uid: 821 - type: WallSolid - components: - - pos: 45.5,1.5 - parent: 8364 - type: Transform -- uid: 822 - type: WallSolid - components: - - pos: 46.5,1.5 - parent: 8364 - type: Transform -- uid: 823 - type: WallSolid - components: - - pos: 47.5,1.5 - parent: 8364 - type: Transform -- uid: 824 - type: ChairOfficeDark - components: - - pos: 30.5,-106.5 - parent: 8364 - type: Transform -- uid: 825 - type: Grille - components: - - pos: 47.5,3.5 - parent: 8364 - type: Transform -- uid: 826 - type: Grille - components: - - pos: 47.5,4.5 - parent: 8364 - type: Transform -- uid: 827 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-105.5 - parent: 8364 - type: Transform -- uid: 828 - type: TableReinforced - components: - - pos: 26.5,-105.5 - parent: 8364 - type: Transform -- uid: 829 - type: WallSolid - components: - - pos: 47.5,7.5 - parent: 8364 - type: Transform -- uid: 830 - type: WallSolid - components: - - pos: 47.5,8.5 - parent: 8364 - type: Transform -- uid: 831 - type: WallSolid - components: - - pos: 47.5,9.5 - parent: 8364 - type: Transform -- uid: 832 - type: WallSolid - components: - - pos: 48.5,9.5 - parent: 8364 - type: Transform -- uid: 833 - type: GrilleBroken - components: - - pos: 49.5,9.5 - parent: 8364 - type: Transform -- uid: 834 - type: TableReinforced - components: - - pos: 26.5,-106.5 - parent: 8364 - type: Transform -- uid: 835 - type: ExtinguisherCabinetFilled - components: - - pos: 31.5,-106.5 - parent: 8364 - type: Transform -- uid: 836 - type: ToyAi - components: - - pos: 28.512953,-111.38849 - parent: 8364 - type: Transform -- uid: 837 - type: WallSolid - components: - - pos: 50.5,7.5 - parent: 8364 - type: Transform -- uid: 838 - type: WallSolid - components: - - pos: 50.5,8.5 - parent: 8364 - type: Transform -- uid: 839 - type: WallSolid - components: - - pos: 50.5,9.5 - parent: 8364 - type: Transform -- uid: 840 - type: WallSolid - components: - - pos: 51.5,6.5 - parent: 8364 - type: Transform -- uid: 841 - type: WallSolid - components: - - pos: 52.5,6.5 - parent: 8364 - type: Transform -- uid: 842 - type: WallSolid - components: - - pos: 53.5,6.5 - parent: 8364 - type: Transform -- uid: 843 - type: WallSolid - components: - - pos: 53.5,7.5 - parent: 8364 - type: Transform -- uid: 844 - type: WindoorCommandLocked - components: - - rot: 3.141592653589793 rad - pos: 28.5,-110.5 - parent: 8364 - type: Transform -- uid: 845 - type: WallSolid - components: - - pos: 53.5,9.5 - parent: 8364 - type: Transform -- uid: 846 - type: WallSolid - components: - - pos: 51.5,9.5 - parent: 8364 - type: Transform -- uid: 847 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 27.5,-110.5 - parent: 8364 - type: Transform -- uid: 848 - type: WallSolid - components: - - pos: 50.5,2.5 - parent: 8364 - type: Transform -- uid: 849 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 29.5,-110.5 - parent: 8364 - type: Transform -- uid: 850 - type: Grille - components: - - pos: 49.5,3.5 - parent: 8364 - type: Transform -- uid: 851 - type: Grille - components: - - pos: 49.5,4.5 - parent: 8364 - type: Transform -- uid: 852 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-110.5 - parent: 8364 - type: Transform -- uid: 853 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-110.5 - parent: 8364 - type: Transform -- uid: 854 - type: AirlockCommandGlassLocked - components: - - pos: 28.5,-107.5 - parent: 8364 - type: Transform -- uid: 855 - type: Poweredlight - components: - - pos: 10.5,28.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 856 - type: WallSolid - components: - - pos: 53.5,12.5 - parent: 8364 - type: Transform -- uid: 857 - type: WallSolid - components: - - pos: 64.5,11.5 - parent: 8364 - type: Transform -- uid: 858 - type: WallSolid - components: - - pos: 61.5,10.5 - parent: 8364 - type: Transform -- uid: 859 - type: WallSolid - components: - - pos: 63.5,10.5 - parent: 8364 - type: Transform -- uid: 860 - type: WallSolid - components: - - pos: 56.5,9.5 - parent: 8364 - type: Transform -- uid: 861 - type: WallSolid - components: - - pos: 56.5,11.5 - parent: 8364 - type: Transform -- uid: 862 - type: HighSecCommandLocked - components: - - pos: 28.5,-104.5 - parent: 8364 - type: Transform -- uid: 863 - type: WallSolid - components: - - pos: 54.5,11.5 - parent: 8364 - type: Transform -- uid: 864 - type: WallSolid - components: - - pos: 64.5,10.5 - parent: 8364 - type: Transform -- uid: 865 - type: SMESBasic - components: - - pos: 28.5,-113.5 - parent: 8364 - type: Transform -- uid: 866 - type: WallSolid - components: - - pos: 58.5,9.5 - parent: 8364 - type: Transform -- uid: 867 - type: HighSecCommandLocked - components: - - pos: 28.5,-94.5 - parent: 8364 - type: Transform -- uid: 868 - type: WallSolid - components: - - pos: 70.5,13.5 - parent: 8364 - type: Transform -- uid: 869 - type: WallSolid - components: - - pos: 71.5,9.5 - parent: 8364 - type: Transform -- uid: 870 - type: WallSolid - components: - - pos: 72.5,9.5 - parent: 8364 - type: Transform -- uid: 871 - type: WallSolid - components: - - pos: 75.5,9.5 - parent: 8364 - type: Transform -- uid: 872 - type: WallSolid - components: - - pos: 71.5,12.5 - parent: 8364 - type: Transform -- uid: 873 - type: WallSolid - components: - - pos: 71.5,10.5 - parent: 8364 - type: Transform -- uid: 874 - type: WallSolid - components: - - pos: 69.5,13.5 - parent: 8364 - type: Transform -- uid: 875 - type: WallReinforced - components: - - pos: 45.5,17.5 - parent: 8364 - type: Transform -- uid: 876 - type: HighSecCommandLocked - components: - - pos: 30.5,-91.5 - parent: 8364 - type: Transform -- uid: 877 - type: WallSolid - components: - - pos: 74.5,9.5 - parent: 8364 - type: Transform -- uid: 878 - type: WallSolid - components: - - pos: 70.5,15.5 - parent: 8364 - type: Transform -- uid: 879 - type: WallReinforced - components: - - pos: 49.5,18.5 - parent: 8364 - type: Transform -- uid: 880 - type: WallReinforced - components: - - pos: 49.5,19.5 - parent: 8364 - type: Transform -- uid: 881 - type: WallReinforced - components: - - pos: 49.5,20.5 - parent: 8364 - type: Transform -- uid: 882 - type: WallReinforced - components: - - pos: 49.5,21.5 - parent: 8364 - type: Transform -- uid: 883 - type: WallReinforced - components: - - pos: 48.5,21.5 - parent: 8364 - type: Transform -- uid: 884 - type: WallReinforced - components: - - pos: 45.5,18.5 - parent: 8364 - type: Transform -- uid: 885 - type: WallReinforced - components: - - pos: 45.5,19.5 - parent: 8364 - type: Transform -- uid: 886 - type: WallReinforced - components: - - pos: 45.5,20.5 - parent: 8364 - type: Transform -- uid: 887 - type: Grille - components: - - pos: 46.5,21.5 - parent: 8364 - type: Transform -- uid: 888 - type: Grille - components: - - pos: 45.5,21.5 - parent: 8364 - type: Transform -- uid: 889 - type: Grille - components: - - pos: 46.5,22.5 - parent: 8364 - type: Transform -- uid: 890 - type: WallReinforced - components: - - pos: 48.5,22.5 - parent: 8364 - type: Transform -- uid: 891 - type: Grille - components: - - pos: 46.5,23.5 - parent: 8364 - type: Transform -- uid: 892 - type: Grille - components: - - pos: 48.5,23.5 - parent: 8364 - type: Transform -- uid: 893 - type: WallSolid - components: - - pos: 64.5,12.5 - parent: 8364 - type: Transform -- uid: 894 - type: WallReinforced - components: - - pos: 53.5,18.5 - parent: 8364 - type: Transform -- uid: 895 - type: WallReinforced - components: - - pos: 52.5,18.5 - parent: 8364 - type: Transform -- uid: 896 - type: WallReinforced - components: - - pos: 51.5,18.5 - parent: 8364 - type: Transform -- uid: 897 - type: WallReinforced - components: - - pos: 50.5,18.5 - parent: 8364 - type: Transform -- uid: 898 - type: PercentileDie - components: - - pos: 57.5,20.5 - parent: 8364 - type: Transform -- uid: 899 - type: WallSolid - components: - - pos: 67.5,13.5 - parent: 8364 - type: Transform -- uid: 900 - type: WallSolid - components: - - pos: 66.5,13.5 - parent: 8364 - type: Transform -- uid: 901 - type: HighSecCommandLocked - components: - - pos: 26.5,-91.5 - parent: 8364 - type: Transform -- uid: 902 - type: ReinforcedWindow - components: - - pos: -16.5,36.5 - parent: 8364 - type: Transform -- uid: 903 - type: d6Dice - components: - - pos: 58.5,16.5 - parent: 8364 - type: Transform -- uid: 904 - type: WallSolid - components: - - pos: 58.5,11.5 - parent: 8364 - type: Transform -- uid: 905 - type: WallSolid - components: - - pos: 59.5,9.5 - parent: 8364 - type: Transform -- uid: 906 - type: ReinforcedWindow - components: - - pos: -3.5,44.5 - parent: 8364 - type: Transform -- uid: 907 - type: Grille - components: - - pos: 57.5,21.5 - parent: 8364 - type: Transform -- uid: 908 - type: Grille - components: - - pos: 56.5,21.5 - parent: 8364 - type: Transform -- uid: 909 - type: Grille - components: - - pos: 55.5,21.5 - parent: 8364 - type: Transform -- uid: 910 - type: CableHV - components: - - pos: -19.5,-70.5 - parent: 8364 - type: Transform -- uid: 911 - type: TableWood - components: - - pos: 5.5,-15.5 - parent: 8364 - type: Transform -- uid: 912 - type: SignConference - components: - - pos: -8.5,-10.5 - parent: 8364 - type: Transform -- uid: 913 - type: WallSolid - components: - - pos: 55.5,11.5 - parent: 8364 - type: Transform -- uid: 914 - type: Girder - components: - - pos: 69.5,9.5 - parent: 8364 - type: Transform -- uid: 915 - type: FirelockGlass - components: - - pos: -31.5,0.5 - parent: 8364 - type: Transform -- uid: 916 - type: CableApcExtension - components: - - pos: 58.5,-56.5 - parent: 8364 - type: Transform -- uid: 917 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 918 - type: Grille - components: - - pos: 62.5,20.5 - parent: 8364 - type: Transform -- uid: 919 - type: WallSolid - components: - - pos: 63.5,18.5 - parent: 8364 - type: Transform -- uid: 920 - type: CigPackGreen - components: - - pos: 56.5,-62.5 - parent: 8364 - type: Transform -- uid: 921 - type: Chair - components: - - pos: 56.5,-62.5 - parent: 8364 - type: Transform -- uid: 922 - type: Chair - components: - - pos: 57.5,-62.5 - parent: 8364 - type: Transform -- uid: 923 - type: WallSolid - components: - - pos: 59.5,16.5 - parent: 8364 - type: Transform -- uid: 924 - type: WallSolid - components: - - pos: 59.5,15.5 - parent: 8364 - type: Transform -- uid: 925 - type: WallReinforced - components: - - pos: 48.5,17.5 - parent: 8364 - type: Transform -- uid: 926 - type: WallSolid - components: - - pos: 54.5,15.5 - parent: 8364 - type: Transform -- uid: 927 - type: Grille - components: - - pos: 65.5,24.5 - parent: 8364 - type: Transform -- uid: 928 - type: SurveillanceCameraSupply - components: - - pos: -35.5,-27.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Bay - type: SurveillanceCamera -- uid: 929 - type: d6Dice - components: - - pos: 58.5,15.5 - parent: 8364 - type: Transform -- uid: 930 - type: SurveillanceCameraSupply - components: - - rot: 3.141592653589793 rad - pos: -33.5,-29.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Quartermaster - type: SurveillanceCamera -- uid: 931 - type: SurveillanceCameraSupply - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-35.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage Bay - type: SurveillanceCamera -- uid: 932 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-37.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: High Sec Circuitry - type: SurveillanceCamera -- uid: 933 - type: WallReinforced - components: - - pos: 38.5,4.5 - parent: 8364 - type: Transform -- uid: 934 - type: WallReinforced - components: - - pos: -24.5,11.5 - parent: 8364 - type: Transform -- uid: 935 - type: CableHV - components: - - pos: -16.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 936 - type: WallReinforced - components: - - pos: -32.5,17.5 - parent: 8364 - type: Transform -- uid: 937 - type: WallReinforced - components: - - pos: -29.5,21.5 - parent: 8364 - type: Transform -- uid: 938 - type: WallReinforced - components: - - pos: -30.5,25.5 - parent: 8364 - type: Transform -- uid: 939 - type: WallReinforced - components: - - pos: -36.5,25.5 - parent: 8364 - type: Transform -- uid: 940 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -13.5,-12.5 - parent: 8364 - type: Transform -- uid: 941 - type: CarpetSBlue - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-13.5 - parent: 8364 - type: Transform -- uid: 942 - type: TableWood - components: - - pos: -9.5,-13.5 - parent: 8364 - type: Transform -- uid: 943 - type: CableHV - components: - - pos: -10.5,-11.5 - parent: 8364 - type: Transform -- uid: 944 - type: HighSecCommandLocked - components: - - pos: 28.5,-88.5 - parent: 8364 - type: Transform -- uid: 945 - type: WallReinforced - components: - - pos: -30.5,17.5 - parent: 8364 - type: Transform -- uid: 946 - type: WallSolid - components: - - pos: 63.5,19.5 - parent: 8364 - type: Transform -- uid: 947 - type: WallSolid - components: - - pos: 64.5,15.5 - parent: 8364 - type: Transform -- uid: 948 - type: WallSolid - components: - - pos: 59.5,18.5 - parent: 8364 - type: Transform -- uid: 949 - type: WallSolid - components: - - pos: 68.5,15.5 - parent: 8364 - type: Transform -- uid: 950 - type: WallReinforced - components: - - pos: -29.5,17.5 - parent: 8364 - type: Transform -- uid: 951 - type: WallReinforced - components: - - pos: -31.5,25.5 - parent: 8364 - type: Transform -- uid: 952 - type: WallReinforced - components: - - pos: -21.5,15.5 - parent: 8364 - type: Transform -- uid: 953 - type: GasPipeTJunction - components: - - pos: -10.5,45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 954 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 955 - type: WallSolid - components: - - pos: 69.5,15.5 - parent: 8364 - type: Transform -- uid: 956 - type: WallSolid - components: - - pos: 66.5,15.5 - parent: 8364 - type: Transform -- uid: 957 - type: WallSolid - components: - - pos: 63.5,15.5 - parent: 8364 - type: Transform -- uid: 958 - type: AirlockSecurityGlass - components: - - pos: -5.5,42.5 - parent: 8364 - type: Transform -- uid: 959 - type: WallSolid - components: - - pos: 59.5,17.5 - parent: 8364 - type: Transform -- uid: 960 - type: ReinforcedWindow - components: - - pos: 60.5,20.5 - parent: 8364 - type: Transform -- uid: 961 - type: Girder - components: - - pos: 71.5,11.5 - parent: 8364 - type: Transform -- uid: 962 - type: WallSolid - components: - - pos: 62.5,15.5 - parent: 8364 - type: Transform -- uid: 963 - type: WallSolid - components: - - pos: 60.5,15.5 - parent: 8364 - type: Transform -- uid: 964 - type: FirelockGlass - components: - - pos: -4.5,40.5 - parent: 8364 - type: Transform -- uid: 965 - type: WallReinforced - components: - - pos: -16.5,37.5 - parent: 8364 - type: Transform -- uid: 966 - type: WallReinforced - components: - - pos: -38.5,25.5 - parent: 8364 - type: Transform -- uid: 967 - type: WallReinforced - components: - - pos: -39.5,25.5 - parent: 8364 - type: Transform -- uid: 968 - type: WallReinforced - components: - - pos: -39.5,24.5 - parent: 8364 - type: Transform -- uid: 969 - type: WallReinforced - components: - - pos: -37.5,25.5 - parent: 8364 - type: Transform -- uid: 970 - type: WallReinforced - components: - - pos: -40.5,23.5 - parent: 8364 - type: Transform -- uid: 971 - type: MagazineRifle - components: - - pos: -1.5611359,39.648827 - parent: 8364 - type: Transform -- uid: 972 - type: WallReinforced - components: - - pos: -40.5,19.5 - parent: 8364 - type: Transform -- uid: 973 - type: WallReinforced - components: - - pos: -39.5,19.5 - parent: 8364 - type: Transform -- uid: 974 - type: WallReinforced - components: - - pos: -42.5,16.5 - parent: 8364 - type: Transform -- uid: 975 - type: WallReinforced - components: - - pos: -39.5,18.5 - parent: 8364 - type: Transform -- uid: 976 - type: WallReinforced - components: - - pos: -39.5,23.5 - parent: 8364 - type: Transform -- uid: 977 - type: WallReinforced - components: - - pos: -41.5,23.5 - parent: 8364 - type: Transform -- uid: 978 - type: WallReinforced - components: - - pos: -42.5,23.5 - parent: 8364 - type: Transform -- uid: 979 - type: WallReinforced - components: - - pos: -43.5,23.5 - parent: 8364 - type: Transform -- uid: 980 - type: WallReinforced - components: - - pos: -44.5,23.5 - parent: 8364 - type: Transform -- uid: 981 - type: WallReinforced - components: - - pos: -44.5,19.5 - parent: 8364 - type: Transform -- uid: 982 - type: WallReinforced - components: - - pos: -41.5,19.5 - parent: 8364 - type: Transform -- uid: 983 - type: WallReinforced - components: - - pos: -46.5,23.5 - parent: 8364 - type: Transform -- uid: 984 - type: Grille - components: - - pos: -3.5,-25.5 - parent: 8364 - type: Transform -- uid: 985 - type: WallSolid - components: - - pos: 73.5,7.5 - parent: 8364 - type: Transform -- uid: 986 - type: WallSolid - components: - - pos: 72.5,7.5 - parent: 8364 - type: Transform -- uid: 987 - type: WallSolid - components: - - pos: 71.5,7.5 - parent: 8364 - type: Transform -- uid: 988 - type: WallSolid - components: - - pos: 70.5,7.5 - parent: 8364 - type: Transform -- uid: 989 - type: WallSolid - components: - - pos: 69.5,7.5 - parent: 8364 - type: Transform -- uid: 990 - type: WallReinforced - components: - - pos: -45.5,23.5 - parent: 8364 - type: Transform -- uid: 991 - type: WallReinforced - components: - - pos: -43.5,17.5 - parent: 8364 - type: Transform -- uid: 992 - type: WallSolid - components: - - pos: 66.5,7.5 - parent: 8364 - type: Transform -- uid: 993 - type: WallSolid - components: - - pos: 65.5,7.5 - parent: 8364 - type: Transform -- uid: 994 - type: WallSolid - components: - - pos: 65.5,8.5 - parent: 8364 - type: Transform -- uid: 995 - type: WallReinforced - components: - - pos: 49.5,17.5 - parent: 8364 - type: Transform -- uid: 996 - type: Grille - components: - - pos: 64.5,8.5 - parent: 8364 - type: Transform -- uid: 997 - type: WallReinforced - components: - - pos: -41.5,13.5 - parent: 8364 - type: Transform -- uid: 998 - type: ReinforcedWindow - components: - - pos: 62.5,20.5 - parent: 8364 - type: Transform -- uid: 999 - type: WallSolid - components: - - pos: 78.5,11.5 - parent: 8364 - type: Transform -- uid: 1000 - type: WallSolid - components: - - pos: 79.5,11.5 - parent: 8364 - type: Transform -- uid: 1001 - type: WallSolid - components: - - pos: 80.5,11.5 - parent: 8364 - type: Transform -- uid: 1002 - type: WallSolid - components: - - pos: 81.5,11.5 - parent: 8364 - type: Transform -- uid: 1003 - type: WallSolid - components: - - pos: 77.5,7.5 - parent: 8364 - type: Transform -- uid: 1004 - type: WallSolid - components: - - pos: 78.5,7.5 - parent: 8364 - type: Transform -- uid: 1005 - type: WallReinforced - components: - - pos: -42.5,14.5 - parent: 8364 - type: Transform -- uid: 1006 - type: WallSolid - components: - - pos: 74.5,6.5 - parent: 8364 - type: Transform -- uid: 1007 - type: WallSolid - components: - - pos: 73.5,6.5 - parent: 8364 - type: Transform -- uid: 1008 - type: GrilleBroken - components: - - pos: 63.5,8.5 - parent: 8364 - type: Transform -- uid: 1009 - type: GrilleBroken - components: - - pos: 60.5,8.5 - parent: 8364 - type: Transform -- uid: 1010 - type: WallSolid - components: - - pos: 67.5,15.5 - parent: 8364 - type: Transform -- uid: 1011 - type: WallSolid - components: - - pos: 59.5,14.5 - parent: 8364 - type: Transform -- uid: 1012 - type: WallSolid - components: - - pos: 54.5,14.5 - parent: 8364 - type: Transform -- uid: 1013 - type: WallSolid - components: - - pos: 54.5,16.5 - parent: 8364 - type: Transform -- uid: 1014 - type: WallReinforced - components: - - pos: 46.5,17.5 - parent: 8364 - type: Transform -- uid: 1015 - type: WallSolid - components: - - pos: 61.5,11.5 - parent: 8364 - type: Transform -- uid: 1016 - type: WallReinforced - components: - - pos: -42.5,17.5 - parent: 8364 - type: Transform -- uid: 1017 - type: WallSolid - components: - - pos: 59.5,7.5 - parent: 8364 - type: Transform -- uid: 1018 - type: WallSolid - components: - - pos: 59.5,8.5 - parent: 8364 - type: Transform -- uid: 1019 - type: WallSolid - components: - - pos: 58.5,6.5 - parent: 8364 - type: Transform -- uid: 1020 - type: WallSolid - components: - - pos: 57.5,6.5 - parent: 8364 - type: Transform -- uid: 1021 - type: WallSolid - components: - - pos: 56.5,6.5 - parent: 8364 - type: Transform -- uid: 1022 - type: WallSolid - components: - - pos: 56.5,7.5 - parent: 8364 - type: Transform -- uid: 1023 - type: WallSolid - components: - - pos: 56.5,8.5 - parent: 8364 - type: Transform -- uid: 1024 - type: WallSolid - components: - - pos: 64.5,13.5 - parent: 8364 - type: Transform -- uid: 1025 - type: WallSolid - components: - - pos: 63.5,13.5 - parent: 8364 - type: Transform -- uid: 1026 - type: ClosetMaintenanceFilledRandom - components: - - pos: 51.5,8.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1027 - type: Girder - components: - - pos: 59.5,6.5 - parent: 8364 - type: Transform -- uid: 1028 - type: WallSolid - components: - - pos: 68.5,6.5 - parent: 8364 - type: Transform -- uid: 1029 - type: WallSolid - components: - - pos: 68.5,4.5 - parent: 8364 - type: Transform -- uid: 1030 - type: WallSolid - components: - - pos: 67.5,4.5 - parent: 8364 - type: Transform -- uid: 1031 - type: WallSolid - components: - - pos: 66.5,4.5 - parent: 8364 - type: Transform -- uid: 1032 - type: WallSolid - components: - - pos: 65.5,4.5 - parent: 8364 - type: Transform -- uid: 1033 - type: WallSolid - components: - - pos: 64.5,4.5 - parent: 8364 - type: Transform -- uid: 1034 - type: WallSolid - components: - - pos: 63.5,4.5 - parent: 8364 - type: Transform -- uid: 1035 - type: WallSolid - components: - - pos: 62.5,4.5 - parent: 8364 - type: Transform -- uid: 1036 - type: WallSolid - components: - - pos: 62.5,3.5 - parent: 8364 - type: Transform -- uid: 1037 - type: WallSolid - components: - - pos: 60.5,3.5 - parent: 8364 - type: Transform -- uid: 1038 - type: WallSolid - components: - - pos: 59.5,3.5 - parent: 8364 - type: Transform -- uid: 1039 - type: WallSolid - components: - - pos: 59.5,4.5 - parent: 8364 - type: Transform -- uid: 1040 - type: WallSolid - components: - - pos: 58.5,4.5 - parent: 8364 - type: Transform -- uid: 1041 - type: WallSolid - components: - - pos: 57.5,4.5 - parent: 8364 - type: Transform -- uid: 1042 - type: WallSolid - components: - - pos: 56.5,4.5 - parent: 8364 - type: Transform -- uid: 1043 - type: WallSolid - components: - - pos: 55.5,4.5 - parent: 8364 - type: Transform -- uid: 1044 - type: WallSolid - components: - - pos: 53.5,3.5 - parent: 8364 - type: Transform -- uid: 1045 - type: WallSolid - components: - - pos: 55.5,3.5 - parent: 8364 - type: Transform -- uid: 1046 - type: WallSolid - components: - - pos: 52.5,3.5 - parent: 8364 - type: Transform -- uid: 1047 - type: ReinforcedWindow - components: - - pos: 45.5,21.5 - parent: 8364 - type: Transform -- uid: 1048 - type: ReinforcedWindow - components: - - pos: 46.5,21.5 - parent: 8364 - type: Transform -- uid: 1049 - type: ReinforcedWindow - components: - - pos: 46.5,22.5 - parent: 8364 - type: Transform -- uid: 1050 - type: Grille - components: - - pos: 60.5,20.5 - parent: 8364 - type: Transform -- uid: 1051 - type: ReinforcedWindow - components: - - pos: 65.5,24.5 - parent: 8364 - type: Transform -- uid: 1052 - type: Window - components: - - pos: 64.5,8.5 - parent: 8364 - type: Transform -- uid: 1053 - type: ReinforcedWindow - components: - - pos: 56.5,21.5 - parent: 8364 - type: Transform -- uid: 1054 - type: ReinforcedWindow - components: - - pos: 57.5,21.5 - parent: 8364 - type: Transform -- uid: 1055 - type: Girder - components: - - pos: 70.5,9.5 - parent: 8364 - type: Transform -- uid: 1056 - type: ReinforcedWindow - components: - - pos: 46.5,23.5 - parent: 8364 - type: Transform -- uid: 1057 - type: ReinforcedWindow - components: - - pos: 55.5,21.5 - parent: 8364 - type: Transform -- uid: 1058 - type: SolarPanel - components: - - pos: 42.5,34.5 - parent: 8364 - type: Transform -- uid: 1059 - type: WallReinforced - components: - - pos: -45.5,19.5 - parent: 8364 - type: Transform -- uid: 1060 - type: Rack - components: - - pos: 48.5,7.5 - parent: 8364 - type: Transform -- uid: 1061 - type: Window - components: - - pos: 61.5,8.5 - parent: 8364 - type: Transform -- uid: 1062 - type: ReinforcedWindow - components: - - pos: 49.5,4.5 - parent: 8364 - type: Transform -- uid: 1063 - type: ReinforcedWindow - components: - - pos: 49.5,3.5 - parent: 8364 - type: Transform -- uid: 1064 - type: WallSolid - components: - - pos: 61.5,12.5 - parent: 8364 - type: Transform -- uid: 1065 - type: WallSolid - components: - - pos: 66.5,10.5 - parent: 8364 - type: Transform -- uid: 1066 - type: ReinforcedWindow - components: - - pos: 48.5,23.5 - parent: 8364 - type: Transform -- uid: 1067 - type: WallSolid - components: - - pos: 31.5,-2.5 - parent: 8364 - type: Transform -- uid: 1068 - type: WallSolid - components: - - pos: 29.5,-2.5 - parent: 8364 - type: Transform -- uid: 1069 - type: WallSolid - components: - - pos: 28.5,-2.5 - parent: 8364 - type: Transform -- uid: 1070 - type: WallSolid - components: - - pos: 28.5,-1.5 - parent: 8364 - type: Transform -- uid: 1071 - type: WallSolid - components: - - pos: 28.5,-0.5 - parent: 8364 - type: Transform -- uid: 1072 - type: WallSolid - components: - - pos: 28.5,0.5 - parent: 8364 - type: Transform -- uid: 1073 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 26.5,30.5 - parent: 8364 - type: Transform -- uid: 1074 - type: WallReinforced - components: - - pos: -45.5,18.5 - parent: 8364 - type: Transform -- uid: 1075 - type: Grille - components: - - pos: 19.5,37.5 - parent: 8364 - type: Transform -- uid: 1076 - type: Grille - components: - - pos: 18.5,37.5 - parent: 8364 - type: Transform -- uid: 1077 - type: ReinforcedWindow - components: - - pos: -74.5,-6.5 - parent: 8364 - type: Transform -- uid: 1078 - type: ReinforcedWindow - components: - - pos: -73.5,-6.5 - parent: 8364 - type: Transform -- uid: 1079 - type: ReinforcedWindow - components: - - pos: -72.5,-6.5 - parent: 8364 - type: Transform -- uid: 1080 - type: ReinforcedWindow - components: - - pos: -71.5,-6.5 - parent: 8364 - type: Transform -- uid: 1081 - type: ReinforcedWindow - components: - - pos: -70.5,-6.5 - parent: 8364 - type: Transform -- uid: 1082 - type: ReinforcedWindow - components: - - pos: -69.5,-6.5 - parent: 8364 - type: Transform -- uid: 1083 - type: ReinforcedWindow - components: - - pos: -68.5,-6.5 - parent: 8364 - type: Transform -- uid: 1084 - type: WallReinforced - components: - - pos: -67.5,-6.5 - parent: 8364 - type: Transform -- uid: 1085 - type: WallReinforced - components: - - pos: -66.5,-6.5 - parent: 8364 - type: Transform -- uid: 1086 - type: WallReinforced - components: - - pos: -66.5,-7.5 - parent: 8364 - type: Transform -- uid: 1087 - type: WallReinforced - components: - - pos: -65.5,-8.5 - parent: 8364 - type: Transform -- uid: 1088 - type: WallReinforced - components: - - pos: -66.5,-8.5 - parent: 8364 - type: Transform -- uid: 1089 - type: WallReinforced - components: - - pos: -67.5,-8.5 - parent: 8364 - type: Transform -- uid: 1090 - type: WallReinforced - components: - - pos: -66.5,-12.5 - parent: 8364 - type: Transform -- uid: 1091 - type: WallReinforced - components: - - pos: -67.5,-12.5 - parent: 8364 - type: Transform -- uid: 1092 - type: WallReinforced - components: - - pos: -76.5,-12.5 - parent: 8364 - type: Transform -- uid: 1093 - type: WallReinforced - components: - - pos: -77.5,-12.5 - parent: 8364 - type: Transform -- uid: 1094 - type: PottedPlantRandom - components: - - pos: -72.5,-16.5 - parent: 8364 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1095 - type: WallReinforced - components: - - pos: -78.5,-12.5 - parent: 8364 - type: Transform -- uid: 1096 - type: WallReinforced - components: - - pos: -65.5,-16.5 - parent: 8364 - type: Transform -- uid: 1097 - type: WallReinforced - components: - - pos: -64.5,-16.5 - parent: 8364 - type: Transform -- uid: 1098 - type: WallReinforced - components: - - pos: -63.5,-16.5 - parent: 8364 - type: Transform -- uid: 1099 - type: ReinforcedWindow - components: - - pos: -75.5,-12.5 - parent: 8364 - type: Transform -- uid: 1100 - type: ReinforcedWindow - components: - - pos: -74.5,-12.5 - parent: 8364 - type: Transform -- uid: 1101 - type: ReinforcedWindow - components: - - pos: -73.5,-12.5 - parent: 8364 - type: Transform -- uid: 1102 - type: ReinforcedWindow - components: - - pos: -72.5,-12.5 - parent: 8364 - type: Transform -- uid: 1103 - type: ReinforcedWindow - components: - - pos: -71.5,-12.5 - parent: 8364 - type: Transform -- uid: 1104 - type: ReinforcedWindow - components: - - pos: -70.5,-12.5 - parent: 8364 - type: Transform -- uid: 1105 - type: ReinforcedWindow - components: - - pos: -69.5,-12.5 - parent: 8364 - type: Transform -- uid: 1106 - type: ReinforcedWindow - components: - - pos: -68.5,-12.5 - parent: 8364 - type: Transform -- uid: 1107 - type: CableApcExtension - components: - - pos: -75.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1108 - type: ReinforcedWindow - components: - - pos: -76.5,-17.5 - parent: 8364 - type: Transform -- uid: 1109 - type: WallReinforced - components: - - pos: -77.5,-16.5 - parent: 8364 - type: Transform -- uid: 1110 - type: AirlockExternalShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-13.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 1111 - type: WallSolid - components: - - pos: -76.5,-16.5 - parent: 8364 - type: Transform -- uid: 1112 - type: ReinforcedWindow - components: - - pos: -73.5,-17.5 - parent: 8364 - type: Transform -- uid: 1113 - type: ReinforcedWindow - components: - - pos: -72.5,-17.5 - parent: 8364 - type: Transform -- uid: 1114 - type: ReinforcedWindow - components: - - pos: -71.5,-17.5 - parent: 8364 - type: Transform -- uid: 1115 - type: ReinforcedWindow - components: - - pos: -70.5,-17.5 - parent: 8364 - type: Transform -- uid: 1116 - type: ReinforcedWindow - components: - - pos: -67.5,-17.5 - parent: 8364 - type: Transform -- uid: 1117 - type: ReinforcedWindow - components: - - pos: -67.5,-16.5 - parent: 8364 - type: Transform -- uid: 1118 - type: ReinforcedWindow - components: - - pos: -66.5,-16.5 - parent: 8364 - type: Transform -- uid: 1119 - type: WallReinforced - components: - - pos: -45.5,17.5 - parent: 8364 - type: Transform -- uid: 1120 - type: WallReinforced - components: - - pos: -51.5,19.5 - parent: 8364 - type: Transform -- uid: 1121 - type: WallSolid - components: - - pos: -69.5,-15.5 - parent: 8364 - type: Transform -- uid: 1122 - type: ReinforcedWindow - components: - - pos: -67.5,-15.5 - parent: 8364 - type: Transform -- uid: 1123 - type: WallReinforced - components: - - pos: -33.5,17.5 - parent: 8364 - type: Transform -- uid: 1124 - type: WallReinforced - components: - - pos: -39.5,17.5 - parent: 8364 - type: Transform -- uid: 1125 - type: WallSolid - components: - - pos: -74.5,-15.5 - parent: 8364 - type: Transform -- uid: 1126 - type: WallReinforced - components: - - pos: -79.5,-14.5 - parent: 8364 - type: Transform -- uid: 1127 - type: WallSolid - components: - - pos: -65.5,-12.5 - parent: 8364 - type: Transform -- uid: 1128 - type: WallReinforced - components: - - pos: -35.5,17.5 - parent: 8364 - type: Transform -- uid: 1129 - type: WallSolid - components: - - pos: -62.5,-15.5 - parent: 8364 - type: Transform -- uid: 1130 - type: WallSolid - components: - - pos: -62.5,-14.5 - parent: 8364 - type: Transform -- uid: 1131 - type: WallSolid - components: - - pos: -62.5,-12.5 - parent: 8364 - type: Transform -- uid: 1132 - type: WallSolid - components: - - pos: -62.5,-11.5 - parent: 8364 - type: Transform -- uid: 1133 - type: WallSolid - components: - - pos: -62.5,-8.5 - parent: 8364 - type: Transform -- uid: 1134 - type: WallSolid - components: - - pos: -62.5,-7.5 - parent: 8364 - type: Transform -- uid: 1135 - type: WallSolid - components: - - pos: -62.5,-6.5 - parent: 8364 - type: Transform -- uid: 1136 - type: WallSolid - components: - - pos: -62.5,-9.5 - parent: 8364 - type: Transform -- uid: 1137 - type: ReinforcedWindow - components: - - pos: -66.5,-11.5 - parent: 8364 - type: Transform -- uid: 1138 - type: ReinforcedWindow - components: - - pos: -66.5,-10.5 - parent: 8364 - type: Transform -- uid: 1139 - type: ReinforcedWindow - components: - - pos: -67.5,-10.5 - parent: 8364 - type: Transform -- uid: 1140 - type: ReinforcedWindow - components: - - pos: -65.5,-10.5 - parent: 8364 - type: Transform -- uid: 1141 - type: WallSolid - components: - - pos: -65.5,-6.5 - parent: 8364 - type: Transform -- uid: 1142 - type: WallSolid - components: - - pos: -61.5,-6.5 - parent: 8364 - type: Transform -- uid: 1143 - type: WallSolid - components: - - pos: -60.5,-6.5 - parent: 8364 - type: Transform -- uid: 1144 - type: WallSolid - components: - - pos: -59.5,-6.5 - parent: 8364 - type: Transform -- uid: 1145 - type: ReinforcedWindow - components: - - pos: -33.5,-35.5 - parent: 8364 - type: Transform -- uid: 1146 - type: Airlock - components: - - pos: -58.5,-6.5 - parent: 8364 - type: Transform -- uid: 1147 - type: WallSolid - components: - - pos: -57.5,-6.5 - parent: 8364 - type: Transform -- uid: 1148 - type: WallSolid - components: - - pos: -56.5,-6.5 - parent: 8364 - type: Transform -- uid: 1149 - type: WallSolid - components: - - pos: -55.5,-6.5 - parent: 8364 - type: Transform -- uid: 1150 - type: WallSolid - components: - - pos: -54.5,-6.5 - parent: 8364 - type: Transform -- uid: 1151 - type: WallSolid - components: - - pos: -53.5,-6.5 - parent: 8364 - type: Transform -- uid: 1152 - type: WallSolid - components: - - pos: -52.5,-6.5 - parent: 8364 - type: Transform -- uid: 1153 - type: WallSolid - components: - - pos: -52.5,-5.5 - parent: 8364 - type: Transform -- uid: 1154 - type: WallSolid - components: - - pos: -52.5,-4.5 - parent: 8364 - type: Transform -- uid: 1155 - type: WallSolid - components: - - pos: -52.5,-3.5 - parent: 8364 - type: Transform -- uid: 1156 - type: WallSolid - components: - - pos: -49.5,-3.5 - parent: 8364 - type: Transform -- uid: 1157 - type: DisposalPipe - components: - - pos: -50.5,-3.5 - parent: 8364 - type: Transform -- uid: 1158 - type: Grille - components: - - pos: -68.5,-6.5 - parent: 8364 - type: Transform -- uid: 1159 - type: Grille - components: - - pos: -69.5,-6.5 - parent: 8364 - type: Transform -- uid: 1160 - type: Grille - components: - - pos: -70.5,-6.5 - parent: 8364 - type: Transform -- uid: 1161 - type: Grille - components: - - pos: -71.5,-6.5 - parent: 8364 - type: Transform -- uid: 1162 - type: Grille - components: - - pos: -72.5,-6.5 - parent: 8364 - type: Transform -- uid: 1163 - type: Grille - components: - - pos: -73.5,-6.5 - parent: 8364 - type: Transform -- uid: 1164 - type: Grille - components: - - pos: -74.5,-6.5 - parent: 8364 - type: Transform -- uid: 1165 - type: Grille - components: - - pos: -75.5,-6.5 - parent: 8364 - type: Transform -- uid: 1166 - type: Grille - components: - - pos: -65.5,-10.5 - parent: 8364 - type: Transform -- uid: 1167 - type: Grille - components: - - pos: -66.5,-10.5 - parent: 8364 - type: Transform -- uid: 1168 - type: Grille - components: - - pos: -66.5,-11.5 - parent: 8364 - type: Transform -- uid: 1169 - type: Grille - components: - - pos: -67.5,-10.5 - parent: 8364 - type: Transform -- uid: 1170 - type: Grille - components: - - pos: -68.5,-12.5 - parent: 8364 - type: Transform -- uid: 1171 - type: Grille - components: - - pos: -69.5,-12.5 - parent: 8364 - type: Transform -- uid: 1172 - type: Grille - components: - - pos: -70.5,-12.5 - parent: 8364 - type: Transform -- uid: 1173 - type: Grille - components: - - pos: -71.5,-12.5 - parent: 8364 - type: Transform -- uid: 1174 - type: Grille - components: - - pos: -72.5,-12.5 - parent: 8364 - type: Transform -- uid: 1175 - type: Grille - components: - - pos: -73.5,-12.5 - parent: 8364 - type: Transform -- uid: 1176 - type: Grille - components: - - pos: -74.5,-12.5 - parent: 8364 - type: Transform -- uid: 1177 - type: Grille - components: - - pos: -75.5,-12.5 - parent: 8364 - type: Transform -- uid: 1178 - type: WallReinforced - components: - - pos: -78.5,-16.5 - parent: 8364 - type: Transform -- uid: 1179 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -75.5,-2.5 - parent: 8364 - type: Transform -- uid: 1180 - type: CableApcExtension - components: - - pos: -75.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1181 - type: ClosetEmergencyFilledRandom - components: - - pos: -78.5,-15.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1182 - type: Grille - components: - - pos: -76.5,-17.5 - parent: 8364 - type: Transform -- uid: 1183 - type: Grille - components: - - pos: -73.5,-17.5 - parent: 8364 - type: Transform -- uid: 1184 - type: Grille - components: - - pos: -72.5,-17.5 - parent: 8364 - type: Transform -- uid: 1185 - type: Grille - components: - - pos: -71.5,-17.5 - parent: 8364 - type: Transform -- uid: 1186 - type: Grille - components: - - pos: -70.5,-17.5 - parent: 8364 - type: Transform -- uid: 1187 - type: Grille - components: - - pos: -67.5,-17.5 - parent: 8364 - type: Transform -- uid: 1188 - type: Grille - components: - - pos: -67.5,-16.5 - parent: 8364 - type: Transform -- uid: 1189 - type: Grille - components: - - pos: -67.5,-15.5 - parent: 8364 - type: Transform -- uid: 1190 - type: Grille - components: - - pos: -66.5,-16.5 - parent: 8364 - type: Transform -- uid: 1191 - type: CableApcExtension - components: - - pos: -50.5,-6.5 - parent: 8364 - type: Transform -- uid: 1192 - type: WallReinforced - components: - - pos: -44.5,17.5 - parent: 8364 - type: Transform -- uid: 1193 - type: WallSolid - components: - - pos: -53.5,-7.5 - parent: 8364 - type: Transform -- uid: 1194 - type: WallSolid - components: - - pos: -53.5,-8.5 - parent: 8364 - type: Transform -- uid: 1195 - type: WallSolid - components: - - pos: -53.5,-9.5 - parent: 8364 - type: Transform -- uid: 1196 - type: WallSolid - components: - - pos: -53.5,-10.5 - parent: 8364 - type: Transform -- uid: 1197 - type: WallSolid - components: - - pos: -53.5,-11.5 - parent: 8364 - type: Transform -- uid: 1198 - type: WallSolid - components: - - pos: -53.5,-12.5 - parent: 8364 - type: Transform -- uid: 1199 - type: WallSolid - components: - - pos: -53.5,-13.5 - parent: 8364 - type: Transform -- uid: 1200 - type: WallSolid - components: - - pos: -53.5,-14.5 - parent: 8364 - type: Transform -- uid: 1201 - type: WallReinforced - components: - - pos: -42.5,13.5 - parent: 8364 - type: Transform -- uid: 1202 - type: WallSolid - components: - - pos: -52.5,-14.5 - parent: 8364 - type: Transform -- uid: 1203 - type: WallSolid - components: - - pos: -54.5,-12.5 - parent: 8364 - type: Transform -- uid: 1204 - type: WallSolid - components: - - pos: -55.5,-12.5 - parent: 8364 - type: Transform -- uid: 1205 - type: WallSolid - components: - - pos: -56.5,-12.5 - parent: 8364 - type: Transform -- uid: 1206 - type: Grille - components: - - pos: 17.5,-26.5 - parent: 8364 - type: Transform -- uid: 1207 - type: WallSolid - components: - - pos: -58.5,-12.5 - parent: 8364 - type: Transform -- uid: 1208 - type: WallSolid - components: - - pos: -59.5,-12.5 - parent: 8364 - type: Transform -- uid: 1209 - type: WallSolid - components: - - pos: -60.5,-12.5 - parent: 8364 - type: Transform -- uid: 1210 - type: WallSolid - components: - - pos: -61.5,-12.5 - parent: 8364 - type: Transform -- uid: 1211 - type: WallSolid - components: - - pos: -61.5,-14.5 - parent: 8364 - type: Transform -- uid: 1212 - type: WallReinforced - components: - - pos: -39.5,13.5 - parent: 8364 - type: Transform -- uid: 1213 - type: WallSolid - components: - - pos: -59.5,-14.5 - parent: 8364 - type: Transform -- uid: 1214 - type: WallSolid - components: - - pos: -58.5,-14.5 - parent: 8364 - type: Transform -- uid: 1215 - type: WallSolid - components: - - pos: -57.5,-14.5 - parent: 8364 - type: Transform -- uid: 1216 - type: WallSolid - components: - - pos: -56.5,-14.5 - parent: 8364 - type: Transform -- uid: 1217 - type: WallSolid - components: - - pos: -56.5,-15.5 - parent: 8364 - type: Transform -- uid: 1218 - type: WallReinforced - components: - - pos: -33.5,13.5 - parent: 8364 - type: Transform -- uid: 1219 - type: WallSolid - components: - - pos: -56.5,-17.5 - parent: 8364 - type: Transform -- uid: 1220 - type: WallSolid - components: - - pos: -55.5,-17.5 - parent: 8364 - type: Transform -- uid: 1221 - type: WallReinforced - components: - - pos: -34.5,13.5 - parent: 8364 - type: Transform -- uid: 1222 - type: WallReinforced - components: - - pos: -34.5,17.5 - parent: 8364 - type: Transform -- uid: 1223 - type: WallReinforced - components: - - pos: -40.5,13.5 - parent: 8364 - type: Transform -- uid: 1224 - type: HighSecCommandLocked - components: - - pos: 28.5,-82.5 - parent: 8364 - type: Transform -- uid: 1225 - type: ClothingShoesSpaceNinja - components: - - pos: 30.33621,-71.6811 - parent: 8364 - type: Transform -- uid: 1226 - type: WallReinforced - components: - - pos: -52.5,19.5 - parent: 8364 - type: Transform -- uid: 1227 - type: WallReinforced - components: - - pos: -57.5,19.5 - parent: 8364 - type: Transform -- uid: 1228 - type: Grille - components: - - pos: -58.5,-21.5 - parent: 8364 - type: Transform -- uid: 1229 - type: Grille - components: - - pos: -60.5,-20.5 - parent: 8364 - type: Transform -- uid: 1230 - type: Grille - components: - - pos: -60.5,-21.5 - parent: 8364 - type: Transform -- uid: 1231 - type: Grille - components: - - pos: -59.5,-21.5 - parent: 8364 - type: Transform -- uid: 1232 - type: WallReinforced - components: - - pos: -56.5,19.5 - parent: 8364 - type: Transform -- uid: 1233 - type: WallReinforced - components: - - pos: -58.5,19.5 - parent: 8364 - type: Transform -- uid: 1234 - type: WallReinforced - components: - - pos: -59.5,19.5 - parent: 8364 - type: Transform -- uid: 1235 - type: CableApcExtension - components: - - pos: -52.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1236 - type: WallSolid - components: - - pos: -49.5,-9.5 - parent: 8364 - type: Transform -- uid: 1237 - type: WallSolid - components: - - pos: -49.5,-10.5 - parent: 8364 - type: Transform -- uid: 1238 - type: WallSolid - components: - - pos: -49.5,-11.5 - parent: 8364 - type: Transform -- uid: 1239 - type: WallSolid - components: - - pos: -49.5,-12.5 - parent: 8364 - type: Transform -- uid: 1240 - type: WallSolid - components: - - pos: -49.5,-13.5 - parent: 8364 - type: Transform -- uid: 1241 - type: WallSolid - components: - - pos: -49.5,-14.5 - parent: 8364 - type: Transform -- uid: 1242 - type: WallSolid - components: - - pos: -49.5,-15.5 - parent: 8364 - type: Transform -- uid: 1243 - type: WallSolid - components: - - pos: -49.5,-16.5 - parent: 8364 - type: Transform -- uid: 1244 - type: WallSolid - components: - - pos: -49.5,-17.5 - parent: 8364 - type: Transform -- uid: 1245 - type: WallSolid - components: - - pos: -48.5,-17.5 - parent: 8364 - type: Transform -- uid: 1246 - type: WallSolid - components: - - pos: -47.5,-17.5 - parent: 8364 - type: Transform -- uid: 1247 - type: WallSolid - components: - - pos: -46.5,-17.5 - parent: 8364 - type: Transform -- uid: 1248 - type: WallReinforced - components: - - pos: -55.5,19.5 - parent: 8364 - type: Transform -- uid: 1249 - type: WallSolid - components: - - pos: -44.5,-17.5 - parent: 8364 - type: Transform -- uid: 1250 - type: WallSolid - components: - - pos: -44.5,-16.5 - parent: 8364 - type: Transform -- uid: 1251 - type: WallSolid - components: - - pos: -44.5,-15.5 - parent: 8364 - type: Transform -- uid: 1252 - type: WallSolid - components: - - pos: -44.5,-14.5 - parent: 8364 - type: Transform -- uid: 1253 - type: WallSolid - components: - - pos: -44.5,-13.5 - parent: 8364 - type: Transform -- uid: 1254 - type: WallSolid - components: - - pos: -44.5,-12.5 - parent: 8364 - type: Transform -- uid: 1255 - type: WallSolid - components: - - pos: -44.5,-11.5 - parent: 8364 - type: Transform -- uid: 1256 - type: WallSolid - components: - - pos: -44.5,-10.5 - parent: 8364 - type: Transform -- uid: 1257 - type: WallSolid - components: - - pos: -44.5,-9.5 - parent: 8364 - type: Transform -- uid: 1258 - type: WallSolid - components: - - pos: -46.5,-9.5 - parent: 8364 - type: Transform -- uid: 1259 - type: WallSolid - components: - - pos: -47.5,-9.5 - parent: 8364 - type: Transform -- uid: 1260 - type: WallSolid - components: - - pos: -48.5,-9.5 - parent: 8364 - type: Transform -- uid: 1261 - type: WallSolid - components: - - pos: -47.5,-11.5 - parent: 8364 - type: Transform -- uid: 1262 - type: WallSolid - components: - - pos: -48.5,-11.5 - parent: 8364 - type: Transform -- uid: 1263 - type: WallSolid - components: - - pos: -48.5,-13.5 - parent: 8364 - type: Transform -- uid: 1264 - type: WallSolid - components: - - pos: -47.5,-13.5 - parent: 8364 - type: Transform -- uid: 1265 - type: WallSolid - components: - - pos: -47.5,-15.5 - parent: 8364 - type: Transform -- uid: 1266 - type: WallSolid - components: - - pos: -48.5,-15.5 - parent: 8364 - type: Transform -- uid: 1267 - type: WallSolid - components: - - pos: -48.5,-8.5 - parent: 8364 - type: Transform -- uid: 1268 - type: WallSolid - components: - - pos: -48.5,-7.5 - parent: 8364 - type: Transform -- uid: 1269 - type: WallSolid - components: - - pos: -48.5,-6.5 - parent: 8364 - type: Transform -- uid: 1270 - type: WallSolid - components: - - pos: -48.5,-5.5 - parent: 8364 - type: Transform -- uid: 1271 - type: WallSolid - components: - - pos: -48.5,-4.5 - parent: 8364 - type: Transform -- uid: 1272 - type: WallSolid - components: - - pos: -48.5,-3.5 - parent: 8364 - type: Transform -- uid: 1273 - type: WallSolid - components: - - pos: -47.5,-3.5 - parent: 8364 - type: Transform -- uid: 1274 - type: WallSolid - components: - - pos: -46.5,-3.5 - parent: 8364 - type: Transform -- uid: 1275 - type: WallSolid - components: - - pos: -45.5,-3.5 - parent: 8364 - type: Transform -- uid: 1276 - type: WallSolid - components: - - pos: -44.5,-3.5 - parent: 8364 - type: Transform -- uid: 1277 - type: WallSolid - components: - - pos: -43.5,-3.5 - parent: 8364 - type: Transform -- uid: 1278 - type: Grille - components: - - pos: -60.5,-18.5 - parent: 8364 - type: Transform -- uid: 1279 - type: Grille - components: - - pos: -18.5,-44.5 - parent: 8364 - type: Transform -- uid: 1280 - type: MaintenanceFluffSpawner - components: - - pos: -35.5,-51.5 - parent: 8364 - type: Transform -- uid: 1281 - type: WallSolid - components: - - pos: -52.5,-18.5 - parent: 8364 - type: Transform -- uid: 1282 - type: WallReinforced - components: - - pos: -51.5,-19.5 - parent: 8364 - type: Transform -- uid: 1283 - type: WallReinforced - components: - - pos: -50.5,-19.5 - parent: 8364 - type: Transform -- uid: 1284 - type: Grille - components: - - pos: -53.5,-19.5 - parent: 8364 - type: Transform -- uid: 1285 - type: Grille - components: - - pos: -54.5,-19.5 - parent: 8364 - type: Transform -- uid: 1286 - type: WallSolid - components: - - pos: -60.5,-19.5 - parent: 8364 - type: Transform -- uid: 1287 - type: WallSolid - components: - - pos: -60.5,-17.5 - parent: 8364 - type: Transform -- uid: 1288 - type: ReinforcedWindow - components: - - pos: -53.5,-19.5 - parent: 8364 - type: Transform -- uid: 1289 - type: ReinforcedWindow - components: - - pos: -54.5,-19.5 - parent: 8364 - type: Transform -- uid: 1290 - type: ReinforcedWindow - components: - - pos: -58.5,-21.5 - parent: 8364 - type: Transform -- uid: 1291 - type: ReinforcedWindow - components: - - pos: -59.5,-21.5 - parent: 8364 - type: Transform -- uid: 1292 - type: ReinforcedWindow - components: - - pos: -60.5,-21.5 - parent: 8364 - type: Transform -- uid: 1293 - type: ReinforcedWindow - components: - - pos: -60.5,-20.5 - parent: 8364 - type: Transform -- uid: 1294 - type: ReinforcedWindow - components: - - pos: -60.5,-18.5 - parent: 8364 - type: Transform -- uid: 1295 - type: WallSolid - components: - - pos: -19.5,-41.5 - parent: 8364 - type: Transform -- uid: 1296 - type: WallReinforced - components: - - pos: -49.5,-19.5 - parent: 8364 - type: Transform -- uid: 1297 - type: WallReinforced - components: - - pos: -48.5,-19.5 - parent: 8364 - type: Transform -- uid: 1298 - type: WallReinforced - components: - - pos: -47.5,-19.5 - parent: 8364 - type: Transform -- uid: 1299 - type: WallReinforced - components: - - pos: -46.5,-19.5 - parent: 8364 - type: Transform -- uid: 1300 - type: WallReinforced - components: - - pos: -45.5,-19.5 - parent: 8364 - type: Transform -- uid: 1301 - type: Table - components: - - pos: -0.5,-59.5 - parent: 8364 - type: Transform -- uid: 1302 - type: WallReinforced - components: - - pos: -62.5,17.5 - parent: 8364 - type: Transform -- uid: 1303 - type: WallReinforced - components: - - pos: -62.5,16.5 - parent: 8364 - type: Transform -- uid: 1304 - type: WallSolid - components: - - pos: -41.5,-19.5 - parent: 8364 - type: Transform -- uid: 1305 - type: WallSolid - components: - - pos: -19.5,-36.5 - parent: 8364 - type: Transform -- uid: 1306 - type: CableMV - components: - - pos: -17.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1307 - type: CableMV - components: - - pos: -17.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1308 - type: WallReinforced - components: - - pos: 1.5,-58.5 - parent: 8364 - type: Transform -- uid: 1309 - type: WallSolid - components: - - pos: -43.5,-13.5 - parent: 8364 - type: Transform -- uid: 1310 - type: WallSolid - components: - - pos: -42.5,-13.5 - parent: 8364 - type: Transform -- uid: 1311 - type: WallSolid - components: - - pos: -41.5,-13.5 - parent: 8364 - type: Transform -- uid: 1312 - type: WallSolid - components: - - pos: -40.5,-13.5 - parent: 8364 - type: Transform -- uid: 1313 - type: WallSolid - components: - - pos: -40.5,-14.5 - parent: 8364 - type: Transform -- uid: 1314 - type: WallSolid - components: - - pos: -39.5,-14.5 - parent: 8364 - type: Transform -- uid: 1315 - type: WallSolid - components: - - pos: -40.5,-12.5 - parent: 8364 - type: Transform -- uid: 1316 - type: WallSolid - components: - - pos: -38.5,-14.5 - parent: 8364 - type: Transform -- uid: 1317 - type: WallSolid - components: - - pos: -37.5,-14.5 - parent: 8364 - type: Transform -- uid: 1318 - type: WallReinforced - components: - - pos: -62.5,15.5 - parent: 8364 - type: Transform -- uid: 1319 - type: WallSolid - components: - - pos: -35.5,-14.5 - parent: 8364 - type: Transform -- uid: 1320 - type: WallSolid - components: - - pos: -33.5,-7.5 - parent: 8364 - type: Transform -- uid: 1321 - type: WallSolid - components: - - pos: -34.5,-7.5 - parent: 8364 - type: Transform -- uid: 1322 - type: WallSolid - components: - - pos: -35.5,-13.5 - parent: 8364 - type: Transform -- uid: 1323 - type: WallSolid - components: - - pos: -35.5,-12.5 - parent: 8364 - type: Transform -- uid: 1324 - type: WallSolid - components: - - pos: -35.5,-11.5 - parent: 8364 - type: Transform -- uid: 1325 - type: WallSolid - components: - - pos: -35.5,-10.5 - parent: 8364 - type: Transform -- uid: 1326 - type: WallSolid - components: - - pos: -35.5,-9.5 - parent: 8364 - type: Transform -- uid: 1327 - type: WallSolid - components: - - pos: -35.5,-8.5 - parent: 8364 - type: Transform -- uid: 1328 - type: WallSolid - components: - - pos: -35.5,-7.5 - parent: 8364 - type: Transform -- uid: 1329 - type: WallSolid - components: - - pos: -35.5,-6.5 - parent: 8364 - type: Transform -- uid: 1330 - type: WallSolid - components: - - pos: -35.5,-5.5 - parent: 8364 - type: Transform -- uid: 1331 - type: WallSolid - components: - - pos: -35.5,-4.5 - parent: 8364 - type: Transform -- uid: 1332 - type: WallSolid - components: - - pos: -35.5,-3.5 - parent: 8364 - type: Transform -- uid: 1333 - type: WallSolid - components: - - pos: -36.5,-3.5 - parent: 8364 - type: Transform -- uid: 1334 - type: WallSolid - components: - - pos: -37.5,-3.5 - parent: 8364 - type: Transform -- uid: 1335 - type: WallSolid - components: - - pos: -38.5,-3.5 - parent: 8364 - type: Transform -- uid: 1336 - type: WallSolid - components: - - pos: -39.5,-3.5 - parent: 8364 - type: Transform -- uid: 1337 - type: WallSolid - components: - - pos: -40.5,-3.5 - parent: 8364 - type: Transform -- uid: 1338 - type: WallSolid - components: - - pos: -32.5,-7.5 - parent: 8364 - type: Transform -- uid: 1339 - type: WallSolid - components: - - pos: -31.5,-7.5 - parent: 8364 - type: Transform -- uid: 1340 - type: WallSolid - components: - - pos: -31.5,-6.5 - parent: 8364 - type: Transform -- uid: 1341 - type: WallSolid - components: - - pos: -31.5,-5.5 - parent: 8364 - type: Transform -- uid: 1342 - type: WallSolid - components: - - pos: -31.5,-4.5 - parent: 8364 - type: Transform -- uid: 1343 - type: WallSolid - components: - - pos: -31.5,-3.5 - parent: 8364 - type: Transform -- uid: 1344 - type: Grille - components: - - pos: -32.5,-3.5 - parent: 8364 - type: Transform -- uid: 1345 - type: Grille - components: - - pos: -34.5,-3.5 - parent: 8364 - type: Transform -- uid: 1346 - type: WallSolid - components: - - pos: -40.5,-10.5 - parent: 8364 - type: Transform -- uid: 1347 - type: WallSolid - components: - - pos: -40.5,-11.5 - parent: 8364 - type: Transform -- uid: 1348 - type: WallSolid - components: - - pos: -29.5,-3.5 - parent: 8364 - type: Transform -- uid: 1349 - type: WallSolid - components: - - pos: -29.5,-4.5 - parent: 8364 - type: Transform -- uid: 1350 - type: WallSolid - components: - - pos: -29.5,-5.5 - parent: 8364 - type: Transform -- uid: 1351 - type: WallSolid - components: - - pos: -29.5,-6.5 - parent: 8364 - type: Transform -- uid: 1352 - type: WallSolid - components: - - pos: -29.5,-7.5 - parent: 8364 - type: Transform -- uid: 1353 - type: WallSolid - components: - - pos: -28.5,-4.5 - parent: 8364 - type: Transform -- uid: 1354 - type: WallSolid - components: - - pos: -19.5,-3.5 - parent: 8364 - type: Transform -- uid: 1355 - type: WallSolid - components: - - pos: -19.5,-4.5 - parent: 8364 - type: Transform -- uid: 1356 - type: WallSolid - components: - - pos: -20.5,-4.5 - parent: 8364 - type: Transform -- uid: 1357 - type: WallSolid - components: - - pos: -22.5,-4.5 - parent: 8364 - type: Transform -- uid: 1358 - type: WallSolid - components: - - pos: -24.5,-4.5 - parent: 8364 - type: Transform -- uid: 1359 - type: WallSolid - components: - - pos: -23.5,-4.5 - parent: 8364 - type: Transform -- uid: 1360 - type: WallSolid - components: - - pos: -25.5,-4.5 - parent: 8364 - type: Transform -- uid: 1361 - type: WallSolid - components: - - pos: -26.5,-4.5 - parent: 8364 - type: Transform -- uid: 1362 - type: WallSolid - components: - - pos: -24.5,-5.5 - parent: 8364 - type: Transform -- uid: 1363 - type: WallSolid - components: - - pos: -24.5,-6.5 - parent: 8364 - type: Transform -- uid: 1364 - type: WallSolid - components: - - pos: -24.5,-7.5 - parent: 8364 - type: Transform -- uid: 1365 - type: WallSolid - components: - - pos: -25.5,-7.5 - parent: 8364 - type: Transform -- uid: 1366 - type: WallReinforced - components: - - pos: -63.5,15.5 - parent: 8364 - type: Transform -- uid: 1367 - type: WallSolid - components: - - pos: -27.5,-7.5 - parent: 8364 - type: Transform -- uid: 1368 - type: WallSolid - components: - - pos: -28.5,-7.5 - parent: 8364 - type: Transform -- uid: 1369 - type: WallSolid - components: - - pos: -19.5,-8.5 - parent: 8364 - type: Transform -- uid: 1370 - type: WallSolid - components: - - pos: -20.5,-8.5 - parent: 8364 - type: Transform -- uid: 1371 - type: WallSolid - components: - - pos: -21.5,-8.5 - parent: 8364 - type: Transform -- uid: 1372 - type: WallSolid - components: - - pos: -22.5,-8.5 - parent: 8364 - type: Transform -- uid: 1373 - type: WallSolid - components: - - pos: -23.5,-8.5 - parent: 8364 - type: Transform -- uid: 1374 - type: WallSolid - components: - - pos: -24.5,-8.5 - parent: 8364 - type: Transform -- uid: 1375 - type: WallSolid - components: - - pos: -25.5,-8.5 - parent: 8364 - type: Transform -- uid: 1376 - type: WallSolid - components: - - pos: -25.5,-9.5 - parent: 8364 - type: Transform -- uid: 1377 - type: WallSolid - components: - - pos: -25.5,-10.5 - parent: 8364 - type: Transform -- uid: 1378 - type: WallSolid - components: - - pos: -25.5,-11.5 - parent: 8364 - type: Transform -- uid: 1379 - type: WallSolid - components: - - pos: -25.5,-13.5 - parent: 8364 - type: Transform -- uid: 1380 - type: WallSolid - components: - - pos: -25.5,-14.5 - parent: 8364 - type: Transform -- uid: 1381 - type: WaterTankFull - components: - - pos: -27.5,-12.5 - parent: 8364 - type: Transform -- uid: 1382 - type: WallSolid - components: - - pos: -19.5,-10.5 - parent: 8364 - type: Transform -- uid: 1383 - type: WallSolid - components: - - pos: -24.5,-14.5 - parent: 8364 - type: Transform -- uid: 1384 - type: WallSolid - components: - - pos: -23.5,-14.5 - parent: 8364 - type: Transform -- uid: 1385 - type: WallSolid - components: - - pos: -22.5,-14.5 - parent: 8364 - type: Transform -- uid: 1386 - type: WallSolid - components: - - pos: -21.5,-14.5 - parent: 8364 - type: Transform -- uid: 1387 - type: WallSolid - components: - - pos: -20.5,-14.5 - parent: 8364 - type: Transform -- uid: 1388 - type: WallSolid - components: - - pos: -19.5,-14.5 - parent: 8364 - type: Transform -- uid: 1389 - type: WallSolid - components: - - pos: -19.5,-13.5 - parent: 8364 - type: Transform -- uid: 1390 - type: WallSolid - components: - - pos: -27.5,-14.5 - parent: 8364 - type: Transform -- uid: 1391 - type: WallSolid - components: - - pos: -28.5,-14.5 - parent: 8364 - type: Transform -- uid: 1392 - type: WallSolid - components: - - pos: -28.5,-13.5 - parent: 8364 - type: Transform -- uid: 1393 - type: WallSolid - components: - - pos: -28.5,-12.5 - parent: 8364 - type: Transform -- uid: 1394 - type: WallSolid - components: - - pos: -28.5,-11.5 - parent: 8364 - type: Transform -- uid: 1395 - type: WallSolid - components: - - pos: -28.5,-10.5 - parent: 8364 - type: Transform -- uid: 1396 - type: WallSolid - components: - - pos: -28.5,-9.5 - parent: 8364 - type: Transform -- uid: 1397 - type: WallSolid - components: - - pos: -30.5,-9.5 - parent: 8364 - type: Transform -- uid: 1398 - type: WallSolid - components: - - pos: -31.5,-9.5 - parent: 8364 - type: Transform -- uid: 1399 - type: WallSolid - components: - - pos: -32.5,-9.5 - parent: 8364 - type: Transform -- uid: 1400 - type: WallSolid - components: - - pos: -33.5,-9.5 - parent: 8364 - type: Transform -- uid: 1401 - type: WallSolid - components: - - pos: -33.5,-10.5 - parent: 8364 - type: Transform -- uid: 1402 - type: WallSolid - components: - - pos: -33.5,-11.5 - parent: 8364 - type: Transform -- uid: 1403 - type: WallSolid - components: - - pos: -33.5,-12.5 - parent: 8364 - type: Transform -- uid: 1404 - type: WallSolid - components: - - pos: -33.5,-13.5 - parent: 8364 - type: Transform -- uid: 1405 - type: WallSolid - components: - - pos: -33.5,-14.5 - parent: 8364 - type: Transform -- uid: 1406 - type: WallSolid - components: - - pos: -33.5,-15.5 - parent: 8364 - type: Transform -- uid: 1407 - type: WallSolid - components: - - pos: -33.5,-16.5 - parent: 8364 - type: Transform -- uid: 1408 - type: WallSolid - components: - - pos: -33.5,-17.5 - parent: 8364 - type: Transform -- uid: 1409 - type: WallSolid - components: - - pos: -32.5,-17.5 - parent: 8364 - type: Transform -- uid: 1410 - type: WallSolid - components: - - pos: -29.5,-17.5 - parent: 8364 - type: Transform -- uid: 1411 - type: WallSolid - components: - - pos: -30.5,-17.5 - parent: 8364 - type: Transform -- uid: 1412 - type: WallSolid - components: - - pos: -28.5,-17.5 - parent: 8364 - type: Transform -- uid: 1413 - type: WallSolid - components: - - pos: -28.5,-16.5 - parent: 8364 - type: Transform -- uid: 1414 - type: WallSolid - components: - - pos: -28.5,-15.5 - parent: 8364 - type: Transform -- uid: 1415 - type: WallSolid - components: - - pos: -24.5,-16.5 - parent: 8364 - type: Transform -- uid: 1416 - type: ShuttersWindow - components: - - name: Warehouse Shutters - type: MetaData - - pos: -31.5,-17.5 - parent: 8364 - type: Transform -- uid: 1417 - type: WallReinforced - components: - - pos: -64.5,15.5 - parent: 8364 - type: Transform -- uid: 1418 - type: WallSolid - components: - - pos: -40.5,-19.5 - parent: 8364 - type: Transform -- uid: 1419 - type: WallSolid - components: - - pos: -38.5,-19.5 - parent: 8364 - type: Transform -- uid: 1420 - type: WallSolid - components: - - pos: -38.5,-18.5 - parent: 8364 - type: Transform -- uid: 1421 - type: WallSolid - components: - - pos: -38.5,-17.5 - parent: 8364 - type: Transform -- uid: 1422 - type: WallSolid - components: - - pos: -37.5,-17.5 - parent: 8364 - type: Transform -- uid: 1423 - type: WallSolid - components: - - pos: -36.5,-17.5 - parent: 8364 - type: Transform -- uid: 1424 - type: WallSolid - components: - - pos: -35.5,-17.5 - parent: 8364 - type: Transform -- uid: 1425 - type: WallSolid - components: - - pos: -34.5,-17.5 - parent: 8364 - type: Transform -- uid: 1426 - type: ClosetEmergencyFilledRandom - components: - - pos: 1.5,-40.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1427 - type: WallReinforced - components: - - pos: -60.5,18.5 - parent: 8364 - type: Transform -- uid: 1428 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -41.5,-17.5 - parent: 8364 - type: Transform -- uid: 1429 - type: WallSolid - components: - - pos: -40.5,-17.5 - parent: 8364 - type: Transform -- uid: 1430 - type: FirelockGlass - components: - - pos: 0.5,-33.5 - parent: 8364 - type: Transform -- uid: 1431 - type: WallSolid - components: - - pos: -27.5,-17.5 - parent: 8364 - type: Transform -- uid: 1432 - type: AirlockMaintCargoLocked - components: - - name: Delivery Office Maintenance - type: MetaData - - pos: -26.5,-18.5 - parent: 8364 - type: Transform -- uid: 1433 - type: WallSolid - components: - - pos: -27.5,-18.5 - parent: 8364 - type: Transform -- uid: 1434 - type: WallSolid - components: - - pos: -25.5,-16.5 - parent: 8364 - type: Transform -- uid: 1435 - type: WallSolid - components: - - pos: -25.5,-18.5 - parent: 8364 - type: Transform -- uid: 1436 - type: WallSolid - components: - - pos: -24.5,-18.5 - parent: 8364 - type: Transform -- uid: 1437 - type: WallSolid - components: - - pos: -19.5,-20.5 - parent: 8364 - type: Transform -- uid: 1438 - type: WallSolid - components: - - pos: -20.5,-20.5 - parent: 8364 - type: Transform -- uid: 1439 - type: WallSolid - components: - - pos: -23.5,-27.5 - parent: 8364 - type: Transform -- uid: 1440 - type: WallSolid - components: - - pos: -23.5,-28.5 - parent: 8364 - type: Transform -- uid: 1441 - type: Grille - components: - - pos: -19.5,-28.5 - parent: 8364 - type: Transform -- uid: 1442 - type: Grille - components: - - pos: -20.5,-28.5 - parent: 8364 - type: Transform -- uid: 1443 - type: Grille - components: - - pos: -21.5,-28.5 - parent: 8364 - type: Transform -- uid: 1444 - type: Grille - components: - - pos: -22.5,-28.5 - parent: 8364 - type: Transform -- uid: 1445 - type: Grille - components: - - pos: -23.5,-25.5 - parent: 8364 - type: Transform -- uid: 1446 - type: Grille - components: - - pos: -23.5,-23.5 - parent: 8364 - type: Transform -- uid: 1447 - type: Grille - components: - - pos: -22.5,-20.5 - parent: 8364 - type: Transform -- uid: 1448 - type: Grille - components: - - pos: -23.5,-20.5 - parent: 8364 - type: Transform -- uid: 1449 - type: Grille - components: - - pos: -23.5,-21.5 - parent: 8364 - type: Transform -- uid: 1450 - type: Grille - components: - - pos: -24.5,-20.5 - parent: 8364 - type: Transform -- uid: 1451 - type: WallSolid - components: - - pos: -25.5,-20.5 - parent: 8364 - type: Transform -- uid: 1452 - type: Window - components: - - pos: -32.5,-3.5 - parent: 8364 - type: Transform -- uid: 1453 - type: Window - components: - - pos: -34.5,-3.5 - parent: 8364 - type: Transform -- uid: 1454 - type: ReinforcedWindow - components: - - pos: -22.5,-20.5 - parent: 8364 - type: Transform -- uid: 1455 - type: ReinforcedWindow - components: - - pos: -23.5,-20.5 - parent: 8364 - type: Transform -- uid: 1456 - type: ReinforcedWindow - components: - - pos: -24.5,-20.5 - parent: 8364 - type: Transform -- uid: 1457 - type: ReinforcedWindow - components: - - pos: -23.5,-21.5 - parent: 8364 - type: Transform -- uid: 1458 - type: ReinforcedWindow - components: - - pos: -23.5,-23.5 - parent: 8364 - type: Transform -- uid: 1459 - type: ReinforcedWindow - components: - - pos: -23.5,-25.5 - parent: 8364 - type: Transform -- uid: 1460 - type: ReinforcedWindow - components: - - pos: -22.5,-28.5 - parent: 8364 - type: Transform -- uid: 1461 - type: ReinforcedWindow - components: - - pos: -21.5,-28.5 - parent: 8364 - type: Transform -- uid: 1462 - type: ReinforcedWindow - components: - - pos: -20.5,-28.5 - parent: 8364 - type: Transform -- uid: 1463 - type: ReinforcedWindow - components: - - pos: -19.5,-28.5 - parent: 8364 - type: Transform -- uid: 1464 - type: WallSolid - components: - - pos: -29.5,-18.5 - parent: 8364 - type: Transform -- uid: 1465 - type: WallSolid - components: - - pos: -29.5,-23.5 - parent: 8364 - type: Transform -- uid: 1466 - type: WallSolid - components: - - pos: -29.5,-24.5 - parent: 8364 - type: Transform -- uid: 1467 - type: WallSolid - components: - - pos: -29.5,-25.5 - parent: 8364 - type: Transform -- uid: 1468 - type: WallSolid - components: - - pos: -29.5,-26.5 - parent: 8364 - type: Transform -- uid: 1469 - type: WallSolid - components: - - pos: -29.5,-27.5 - parent: 8364 - type: Transform -- uid: 1470 - type: WallReinforced - components: - - pos: -29.5,-28.5 - parent: 8364 - type: Transform -- uid: 1471 - type: Window - components: - - pos: -29.5,-19.5 - parent: 8364 - type: Transform -- uid: 1472 - type: WallSolid - components: - - pos: -26.5,-28.5 - parent: 8364 - type: Transform -- uid: 1473 - type: WallSolid - components: - - pos: -27.5,-28.5 - parent: 8364 - type: Transform -- uid: 1474 - type: WallSolid - components: - - pos: -28.5,-28.5 - parent: 8364 - type: Transform -- uid: 1475 - type: Window - components: - - pos: -29.5,-22.5 - parent: 8364 - type: Transform -- uid: 1476 - type: FirelockGlass - components: - - pos: -0.5,-33.5 - parent: 8364 - type: Transform -- uid: 1477 - type: FirelockGlass - components: - - pos: -1.5,-33.5 - parent: 8364 - type: Transform -- uid: 1478 - type: FireAlarm - components: - - pos: 68.5,-49.5 - parent: 8364 - type: Transform - - devices: - - 5511 - - 5512 - - 5513 - - 1479 - type: DeviceList -- uid: 1479 - type: AirSensor - components: - - pos: 69.5,-52.5 - parent: 8364 - type: Transform -- uid: 1480 - type: WallReinforced - components: - - pos: -60.5,17.5 - parent: 8364 - type: Transform -- uid: 1481 - type: WallReinforced - components: - - pos: -54.5,19.5 - parent: 8364 - type: Transform -- uid: 1482 - type: WallReinforced - components: - - pos: -77.5,11.5 - parent: 8364 - type: Transform -- uid: 1483 - type: WallReinforced - components: - - pos: -76.5,11.5 - parent: 8364 - type: Transform -- uid: 1484 - type: WallReinforced - components: - - pos: -75.5,11.5 - parent: 8364 - type: Transform -- uid: 1485 - type: WallReinforced - components: - - pos: -74.5,11.5 - parent: 8364 - type: Transform -- uid: 1486 - type: WallReinforced - components: - - pos: -73.5,11.5 - parent: 8364 - type: Transform -- uid: 1487 - type: WallReinforced - components: - - pos: -72.5,11.5 - parent: 8364 - type: Transform -- uid: 1488 - type: WallSolid - components: - - pos: -34.5,-28.5 - parent: 8364 - type: Transform -- uid: 1489 - type: WallSolid - components: - - pos: -33.5,-28.5 - parent: 8364 - type: Transform -- uid: 1490 - type: WallReinforced - components: - - pos: -71.5,11.5 - parent: 8364 - type: Transform -- uid: 1491 - type: WallReinforced - components: - - pos: -70.5,11.5 - parent: 8364 - type: Transform -- uid: 1492 - type: WallReinforced - components: - - pos: -69.5,11.5 - parent: 8364 - type: Transform -- uid: 1493 - type: WallReinforced - components: - - pos: -68.5,11.5 - parent: 8364 - type: Transform -- uid: 1494 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -64.5,14.5 - parent: 8364 - type: Transform -- uid: 1495 - type: AirlockExternalGlassLocked - components: - - pos: -66.5,19.5 - parent: 8364 - type: Transform -- uid: 1496 - type: ReinforcedWindow - components: - - pos: -30.5,-28.5 - parent: 8364 - type: Transform -- uid: 1497 - type: ReinforcedWindow - components: - - pos: -31.5,-28.5 - parent: 8364 - type: Transform -- uid: 1498 - type: Grille - components: - - pos: -30.5,-28.5 - parent: 8364 - type: Transform -- uid: 1499 - type: Grille - components: - - pos: -31.5,-28.5 - parent: 8364 - type: Transform -- uid: 1500 - type: Grille - components: - - pos: -29.5,-22.5 - parent: 8364 - type: Transform -- uid: 1501 - type: Grille - components: - - pos: -29.5,-19.5 - parent: 8364 - type: Transform -- uid: 1502 - type: WallReinforced - components: - - pos: -68.5,19.5 - parent: 8364 - type: Transform -- uid: 1503 - type: WallReinforced - components: - - pos: -64.5,19.5 - parent: 8364 - type: Transform -- uid: 1504 - type: WallReinforced - components: - - pos: -64.5,18.5 - parent: 8364 - type: Transform -- uid: 1505 - type: WallReinforced - components: - - pos: -64.5,17.5 - parent: 8364 - type: Transform -- uid: 1506 - type: WallReinforced - components: - - pos: -64.5,16.5 - parent: 8364 - type: Transform -- uid: 1507 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -75.5,7.5 - parent: 8364 - type: Transform -- uid: 1508 - type: AirlockExternalGlassShuttleArrivals - components: - - pos: -77.5,7.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 1509 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-2.5 - parent: 8364 - type: Transform -- uid: 1510 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -73.5,7.5 - parent: 8364 - type: Transform -- uid: 1511 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -74.5,-2.5 - parent: 8364 - type: Transform -- uid: 1512 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -78.5,-2.5 - parent: 8364 - type: Transform -- uid: 1513 - type: ClosetEmergencyFilledRandom - components: - - pos: -75.5,-3.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1514 - type: ClosetFireFilled - components: - - pos: -75.5,8.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1515 - type: WallReinforced - components: - - pos: -53.5,19.5 - parent: 8364 - type: Transform -- uid: 1516 - type: WallReinforced - components: - - pos: -60.5,19.5 - parent: 8364 - type: Transform -- uid: 1517 - type: WallSolid - components: - - pos: 48.5,12.5 - parent: 8364 - type: Transform -- uid: 1518 - type: AirlockMaintLocked - components: - - pos: -57.5,-12.5 - parent: 8364 - type: Transform -- uid: 1519 - type: WallSolid - components: - - pos: 50.5,12.5 - parent: 8364 - type: Transform -- uid: 1520 - type: WallSolid - components: - - pos: 51.5,12.5 - parent: 8364 - type: Transform -- uid: 1521 - type: WallSolid - components: - - pos: 52.5,12.5 - parent: 8364 - type: Transform -- uid: 1522 - type: ToolboxElectricalFilled - components: - - pos: 43.497356,5.7166862 - parent: 8364 - type: Transform -- uid: 1523 - type: Grille - components: - - pos: -30.5,-38.5 - parent: 8364 - type: Transform -- uid: 1524 - type: ClosetMaintenanceFilledRandom - components: - - pos: 42.5,9.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1525 - type: WallReinforced - components: - - pos: 44.5,12.5 - parent: 8364 - type: Transform -- uid: 1526 - type: Grille - components: - - pos: -30.5,-36.5 - parent: 8364 - type: Transform -- uid: 1527 - type: WallReinforced - components: - - pos: 43.5,12.5 - parent: 8364 - type: Transform -- uid: 1528 - type: RandomVending - components: - - pos: 24.5,2.5 - parent: 8364 - type: Transform -- uid: 1529 - type: WallReinforced - components: - - pos: 38.5,5.5 - parent: 8364 - type: Transform -- uid: 1530 - type: WallReinforced - components: - - pos: 38.5,6.5 - parent: 8364 - type: Transform -- uid: 1531 - type: WallReinforced - components: - - pos: 34.5,4.5 - parent: 8364 - type: Transform -- uid: 1532 - type: WallSolid - components: - - pos: -19.5,-34.5 - parent: 8364 - type: Transform -- uid: 1533 - type: WallSolid - components: - - pos: -20.5,-41.5 - parent: 8364 - type: Transform -- uid: 1534 - type: WallSolid - components: - - pos: -19.5,-37.5 - parent: 8364 - type: Transform -- uid: 1535 - type: WallSolid - components: - - pos: -21.5,-37.5 - parent: 8364 - type: Transform -- uid: 1536 - type: CableApcExtension - components: - - pos: -18.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1537 - type: WallSolid - components: - - pos: -23.5,-32.5 - parent: 8364 - type: Transform -- uid: 1538 - type: WallSolid - components: - - pos: -22.5,-32.5 - parent: 8364 - type: Transform -- uid: 1539 - type: WallSolid - components: - - pos: -21.5,-32.5 - parent: 8364 - type: Transform -- uid: 1540 - type: WallSolid - components: - - pos: -20.5,-32.5 - parent: 8364 - type: Transform -- uid: 1541 - type: WallSolid - components: - - pos: -19.5,-32.5 - parent: 8364 - type: Transform -- uid: 1542 - type: Grille - components: - - pos: -23.5,-29.5 - parent: 8364 - type: Transform -- uid: 1543 - type: Grille - components: - - pos: -23.5,-31.5 - parent: 8364 - type: Transform -- uid: 1544 - type: Grille - components: - - pos: -29.5,-29.5 - parent: 8364 - type: Transform -- uid: 1545 - type: Grille - components: - - pos: -29.5,-31.5 - parent: 8364 - type: Transform -- uid: 1546 - type: Grille - components: - - pos: -31.5,-32.5 - parent: 8364 - type: Transform -- uid: 1547 - type: Grille - components: - - pos: -32.5,-32.5 - parent: 8364 - type: Transform -- uid: 1548 - type: Grille - components: - - pos: -33.5,-32.5 - parent: 8364 - type: Transform -- uid: 1549 - type: Grille - components: - - pos: -35.5,-30.5 - parent: 8364 - type: Transform -- uid: 1550 - type: TableWood - components: - - pos: 18.5,-6.5 - parent: 8364 - type: Transform -- uid: 1551 - type: Grille - components: - - pos: -16.5,-40.5 - parent: 8364 - type: Transform -- uid: 1552 - type: WallSolid - components: - - pos: -16.5,-46.5 - parent: 8364 - type: Transform -- uid: 1553 - type: CableApcExtension - components: - - pos: -38.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1554 - type: ReinforcedWindow - components: - - pos: -32.5,-35.5 - parent: 8364 - type: Transform -- uid: 1555 - type: ReinforcedWindow - components: - - pos: -32.5,-32.5 - parent: 8364 - type: Transform -- uid: 1556 - type: Grille - components: - - pos: -32.5,-39.5 - parent: 8364 - type: Transform -- uid: 1557 - type: Grille - components: - - pos: -31.5,-39.5 - parent: 8364 - type: Transform -- uid: 1558 - type: WallReinforced - components: - - pos: 32.5,4.5 - parent: 8364 - type: Transform -- uid: 1559 - type: Grille - components: - - pos: -27.5,-39.5 - parent: 8364 - type: Transform -- uid: 1560 - type: Grille - components: - - pos: -26.5,-39.5 - parent: 8364 - type: Transform -- uid: 1561 - type: ReinforcedWindow - components: - - pos: 33.5,4.5 - parent: 8364 - type: Transform -- uid: 1562 - type: WallSolid - components: - - pos: -20.5,-37.5 - parent: 8364 - type: Transform -- uid: 1563 - type: CableHV - components: - - pos: -20.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1564 - type: CableApcExtension - components: - - pos: -19.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1565 - type: WallSolid - components: - - pos: -22.5,-34.5 - parent: 8364 - type: Transform -- uid: 1566 - type: WallSolid - components: - - pos: -22.5,-36.5 - parent: 8364 - type: Transform -- uid: 1567 - type: WallSolid - components: - - pos: -22.5,-37.5 - parent: 8364 - type: Transform -- uid: 1568 - type: WallSolid - components: - - pos: -22.5,-38.5 - parent: 8364 - type: Transform -- uid: 1569 - type: WallSolid - components: - - pos: -22.5,-35.5 - parent: 8364 - type: Transform -- uid: 1570 - type: WallSolid - components: - - pos: -21.5,-34.5 - parent: 8364 - type: Transform -- uid: 1571 - type: ReinforcedWindow - components: - - pos: -26.5,-39.5 - parent: 8364 - type: Transform -- uid: 1572 - type: ReinforcedWindow - components: - - pos: -27.5,-39.5 - parent: 8364 - type: Transform -- uid: 1573 - type: WallReinforced - components: - - pos: 30.5,4.5 - parent: 8364 - type: Transform -- uid: 1574 - type: ReinforcedWindow - components: - - pos: -32.5,-39.5 - parent: 8364 - type: Transform -- uid: 1575 - type: ReinforcedWindow - components: - - pos: -31.5,-39.5 - parent: 8364 - type: Transform -- uid: 1576 - type: ReinforcedWindow - components: - - pos: -31.5,-32.5 - parent: 8364 - type: Transform -- uid: 1577 - type: ReinforcedWindow - components: - - pos: -29.5,-31.5 - parent: 8364 - type: Transform -- uid: 1578 - type: WallReinforced - components: - - pos: 29.5,4.5 - parent: 8364 - type: Transform -- uid: 1579 - type: WallReinforced - components: - - pos: 28.5,4.5 - parent: 8364 - type: Transform -- uid: 1580 - type: ReinforcedWindow - components: - - pos: -33.5,-39.5 - parent: 8364 - type: Transform -- uid: 1581 - type: Grille - components: - - pos: -16.5,-44.5 - parent: 8364 - type: Transform -- uid: 1582 - type: Grille - components: - - pos: -16.5,-43.5 - parent: 8364 - type: Transform -- uid: 1583 - type: Grille - components: - - pos: -16.5,-42.5 - parent: 8364 - type: Transform -- uid: 1584 - type: Grille - components: - - pos: -16.5,-41.5 - parent: 8364 - type: Transform -- uid: 1585 - type: Grille - components: - - pos: -16.5,-39.5 - parent: 8364 - type: Transform -- uid: 1586 - type: WallReinforced - components: - - pos: 27.5,6.5 - parent: 8364 - type: Transform -- uid: 1587 - type: Grille - components: - - pos: -18.5,-45.5 - parent: 8364 - type: Transform -- uid: 1588 - type: WindowTintedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 31.5,11.5 - parent: 8364 - type: Transform -- uid: 1589 - type: Grille - components: - - pos: -32.5,-35.5 - parent: 8364 - type: Transform -- uid: 1590 - type: Grille - components: - - pos: -33.5,-35.5 - parent: 8364 - type: Transform -- uid: 1591 - type: APCBasic - components: - - name: Cargo Bay APC - type: MetaData - - pos: -38.5,-19.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 85 - supplyRampPosition: 53.91901 - type: PowerNetworkBattery -- uid: 1592 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 30.5,9.5 - parent: 8364 - type: Transform -- uid: 1593 - type: Grille - components: - - pos: -33.5,-39.5 - parent: 8364 - type: Transform -- uid: 1594 - type: ReinforcedWindow - components: - - pos: -23.5,-31.5 - parent: 8364 - type: Transform -- uid: 1595 - type: ReinforcedWindow - components: - - pos: -23.5,-29.5 - parent: 8364 - type: Transform -- uid: 1596 - type: ReinforcedWindow - components: - - pos: -29.5,-29.5 - parent: 8364 - type: Transform -- uid: 1597 - type: ReinforcedWindow - components: - - pos: -35.5,-30.5 - parent: 8364 - type: Transform -- uid: 1598 - type: ReinforcedWindow - components: - - pos: -33.5,-32.5 - parent: 8364 - type: Transform -- uid: 1599 - type: Grille - components: - - pos: -16.5,-35.5 - parent: 8364 - type: Transform -- uid: 1600 - type: WallReinforced - components: - - pos: 27.5,5.5 - parent: 8364 - type: Transform -- uid: 1601 - type: Grille - components: - - pos: -16.5,-36.5 - parent: 8364 - type: Transform -- uid: 1602 - type: Grille - components: - - pos: -16.5,-37.5 - parent: 8364 - type: Transform -- uid: 1603 - type: WallReinforced - components: - - pos: 27.5,4.5 - parent: 8364 - type: Transform -- uid: 1604 - type: RandomVendingDrinks - components: - - pos: 24.5,3.5 - parent: 8364 - type: Transform -- uid: 1605 - type: CableHV - components: - - pos: -18.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1606 - type: CableMV - components: - - pos: -21.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1607 - type: CableHV - components: - - pos: -21.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1608 - type: WallReinforced - components: - - pos: 2.5,-58.5 - parent: 8364 - type: Transform -- uid: 1609 - type: WallReinforced - components: - - pos: 0.5,-58.5 - parent: 8364 - type: Transform -- uid: 1610 - type: GasPipeStraight - components: - - pos: 9.5,-75.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1611 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-76.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1612 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-76.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1613 - type: WallReinforced - components: - - pos: -4.5,-57.5 - parent: 8364 - type: Transform -- uid: 1614 - type: WallReinforced - components: - - pos: -4.5,-58.5 - parent: 8364 - type: Transform -- uid: 1615 - type: WallReinforced - components: - - pos: -4.5,-55.5 - parent: 8364 - type: Transform -- uid: 1616 - type: WallReinforced - components: - - pos: -4.5,-54.5 - parent: 8364 - type: Transform -- uid: 1617 - type: WallSolid - components: - - pos: -3.5,-54.5 - parent: 8364 - type: Transform -- uid: 1618 - type: WallSolid - components: - - pos: -2.5,-54.5 - parent: 8364 - type: Transform -- uid: 1619 - type: WallSolid - components: - - pos: -2.5,-44.5 - parent: 8364 - type: Transform -- uid: 1620 - type: WallSolid - components: - - pos: -2.5,-45.5 - parent: 8364 - type: Transform -- uid: 1621 - type: WallSolid - components: - - pos: -2.5,-46.5 - parent: 8364 - type: Transform -- uid: 1622 - type: WallSolid - components: - - pos: -2.5,-47.5 - parent: 8364 - type: Transform -- uid: 1623 - type: WallSolid - components: - - pos: -2.5,-48.5 - parent: 8364 - type: Transform -- uid: 1624 - type: WallSolid - components: - - pos: -2.5,-49.5 - parent: 8364 - type: Transform -- uid: 1625 - type: WallSolid - components: - - pos: -2.5,-50.5 - parent: 8364 - type: Transform -- uid: 1626 - type: WallSolid - components: - - pos: -2.5,-51.5 - parent: 8364 - type: Transform -- uid: 1627 - type: WallSolid - components: - - pos: -2.5,-52.5 - parent: 8364 - type: Transform -- uid: 1628 - type: WallSolid - components: - - pos: -2.5,-42.5 - parent: 8364 - type: Transform -- uid: 1629 - type: WallSolid - components: - - pos: -2.5,-41.5 - parent: 8364 - type: Transform -- uid: 1630 - type: WallSolid - components: - - pos: -2.5,-40.5 - parent: 8364 - type: Transform -- uid: 1631 - type: WallSolid - components: - - pos: -2.5,-39.5 - parent: 8364 - type: Transform -- uid: 1632 - type: WallSolid - components: - - pos: -2.5,-38.5 - parent: 8364 - type: Transform -- uid: 1633 - type: WallSolid - components: - - pos: -2.5,-37.5 - parent: 8364 - type: Transform -- uid: 1634 - type: WallSolid - components: - - pos: -2.5,-35.5 - parent: 8364 - type: Transform -- uid: 1635 - type: WallSolid - components: - - pos: -2.5,-34.5 - parent: 8364 - type: Transform -- uid: 1636 - type: WallSolid - components: - - pos: -2.5,-33.5 - parent: 8364 - type: Transform -- uid: 1637 - type: WallReinforced - components: - - pos: 8.5,-33.5 - parent: 8364 - type: Transform -- uid: 1638 - type: WallReinforced - components: - - pos: 8.5,-34.5 - parent: 8364 - type: Transform -- uid: 1639 - type: WallReinforced - components: - - pos: 8.5,-35.5 - parent: 8364 - type: Transform -- uid: 1640 - type: WallReinforced - components: - - pos: 8.5,-36.5 - parent: 8364 - type: Transform -- uid: 1641 - type: WallReinforced - components: - - pos: 8.5,-37.5 - parent: 8364 - type: Transform -- uid: 1642 - type: WallReinforced - components: - - pos: 1.5,-39.5 - parent: 8364 - type: Transform -- uid: 1643 - type: ReinforcedWindow - components: - - pos: 2.5,-43.5 - parent: 8364 - type: Transform -- uid: 1644 - type: ReinforcedWindow - components: - - pos: 2.5,-45.5 - parent: 8364 - type: Transform -- uid: 1645 - type: Grille - components: - - pos: 2.5,-43.5 - parent: 8364 - type: Transform -- uid: 1646 - type: Grille - components: - - pos: 8.5,-43.5 - parent: 8364 - type: Transform -- uid: 1647 - type: WallReinforced - components: - - pos: 2.5,-46.5 - parent: 8364 - type: Transform -- uid: 1648 - type: WallReinforced - components: - - pos: 2.5,-47.5 - parent: 8364 - type: Transform -- uid: 1649 - type: WallReinforced - components: - - pos: 2.5,-48.5 - parent: 8364 - type: Transform -- uid: 1650 - type: WallReinforced - components: - - pos: 2.5,-49.5 - parent: 8364 - type: Transform -- uid: 1651 - type: WallReinforced - components: - - pos: 2.5,-50.5 - parent: 8364 - type: Transform -- uid: 1652 - type: WallSolid - components: - - pos: 1.5,-50.5 - parent: 8364 - type: Transform -- uid: 1653 - type: ReinforcedWindow - components: - - pos: -16.5,-35.5 - parent: 8364 - type: Transform -- uid: 1654 - type: ReinforcedWindow - components: - - pos: -16.5,-36.5 - parent: 8364 - type: Transform -- uid: 1655 - type: ReinforcedWindow - components: - - pos: -16.5,-37.5 - parent: 8364 - type: Transform -- uid: 1656 - type: ReinforcedWindow - components: - - pos: -16.5,-39.5 - parent: 8364 - type: Transform -- uid: 1657 - type: ReinforcedWindow - components: - - pos: -16.5,-40.5 - parent: 8364 - type: Transform -- uid: 1658 - type: ReinforcedWindow - components: - - pos: -16.5,-41.5 - parent: 8364 - type: Transform -- uid: 1659 - type: ReinforcedWindow - components: - - pos: -16.5,-42.5 - parent: 8364 - type: Transform -- uid: 1660 - type: ReinforcedWindow - components: - - pos: -16.5,-43.5 - parent: 8364 - type: Transform -- uid: 1661 - type: ReinforcedWindow - components: - - pos: -16.5,-44.5 - parent: 8364 - type: Transform -- uid: 1662 - type: ReinforcedWindow - components: - - pos: 48.5,2.5 - parent: 8364 - type: Transform -- uid: 1663 - type: CableMV - components: - - pos: -17.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1664 - type: CableApcExtension - components: - - pos: -20.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1665 - type: CableHV - components: - - pos: -19.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1666 - type: SubstationBasic - components: - - name: Cargo Substation - type: MetaData - - pos: -21.5,-35.5 - parent: 8364 - type: Transform - - startingCharge: 3527296.2 - type: Battery - - loadingNetworkDemand: 60.000237 - currentSupply: 60.000237 - supplyRampPosition: 60.000237 - type: PowerNetworkBattery -- uid: 1667 - type: WallSolid - components: - - pos: -19.5,-40.5 - parent: 8364 - type: Transform -- uid: 1668 - type: ReinforcedWindow - components: - - pos: -18.5,-44.5 - parent: 8364 - type: Transform -- uid: 1669 - type: ReinforcedWindow - components: - - pos: -18.5,-45.5 - parent: 8364 - type: Transform -- uid: 1670 - type: Grille - components: - - pos: 2.5,-45.5 - parent: 8364 - type: Transform -- uid: 1671 - type: Grille - components: - - pos: 8.5,-44.5 - parent: 8364 - type: Transform -- uid: 1672 - type: WallSolid - components: - - pos: 1.5,-51.5 - parent: 8364 - type: Transform -- uid: 1673 - type: WallSolid - components: - - pos: 1.5,-52.5 - parent: 8364 - type: Transform -- uid: 1674 - type: WallSolid - components: - - pos: 1.5,-53.5 - parent: 8364 - type: Transform -- uid: 1675 - type: WallSolid - components: - - pos: 1.5,-54.5 - parent: 8364 - type: Transform -- uid: 1676 - type: WallSolid - components: - - pos: 2.5,-54.5 - parent: 8364 - type: Transform -- uid: 1677 - type: ReinforcedWindow - components: - - pos: 2.5,-55.5 - parent: 8364 - type: Transform -- uid: 1678 - type: ReinforcedWindow - components: - - pos: 2.5,-57.5 - parent: 8364 - type: Transform -- uid: 1679 - type: Grille - components: - - pos: 2.5,-55.5 - parent: 8364 - type: Transform -- uid: 1680 - type: Grille - components: - - pos: 2.5,-57.5 - parent: 8364 - type: Transform -- uid: 1681 - type: CableApcExtension - components: - - pos: 9.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1682 - type: WallReinforced - components: - - pos: 1.5,-36.5 - parent: 8364 - type: Transform -- uid: 1683 - type: WallReinforced - components: - - pos: 1.5,-35.5 - parent: 8364 - type: Transform -- uid: 1684 - type: WallReinforced - components: - - pos: 1.5,-34.5 - parent: 8364 - type: Transform -- uid: 1685 - type: WallReinforced - components: - - pos: 1.5,-32.5 - parent: 8364 - type: Transform -- uid: 1686 - type: WallReinforced - components: - - pos: 2.5,-39.5 - parent: 8364 - type: Transform -- uid: 1687 - type: WallReinforced - components: - - pos: 3.5,-39.5 - parent: 8364 - type: Transform -- uid: 1688 - type: WallReinforced - components: - - pos: 4.5,-39.5 - parent: 8364 - type: Transform -- uid: 1689 - type: WallReinforced - components: - - pos: 5.5,-39.5 - parent: 8364 - type: Transform -- uid: 1690 - type: WallReinforced - components: - - pos: 6.5,-39.5 - parent: 8364 - type: Transform -- uid: 1691 - type: WallReinforced - components: - - pos: 7.5,-39.5 - parent: 8364 - type: Transform -- uid: 1692 - type: WallReinforced - components: - - pos: 8.5,-41.5 - parent: 8364 - type: Transform -- uid: 1693 - type: WallReinforced - components: - - pos: 47.5,2.5 - parent: 8364 - type: Transform -- uid: 1694 - type: CableApcExtension - components: - - pos: 16.5,-34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1695 - type: WallReinforced - components: - - pos: 47.5,5.5 - parent: 8364 - type: Transform -- uid: 1696 - type: WallReinforced - components: - - pos: 47.5,6.5 - parent: 8364 - type: Transform -- uid: 1697 - type: WallReinforced - components: - - pos: 1.5,-33.5 - parent: 8364 - type: Transform -- uid: 1698 - type: Catwalk - components: - - pos: 49.5,-29.5 - parent: 8364 - type: Transform -- uid: 1699 - type: WallReinforced - components: - - pos: 48.5,6.5 - parent: 8364 - type: Transform -- uid: 1700 - type: CableApcExtension - components: - - pos: 12.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1701 - type: CableApcExtension - components: - - pos: 11.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1702 - type: CableApcExtension - components: - - pos: 14.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1703 - type: WallSolidRust - components: - - pos: 50.5,6.5 - parent: 8364 - type: Transform -- uid: 1704 - type: WallSolidRust - components: - - pos: 53.5,8.5 - parent: 8364 - type: Transform -- uid: 1705 - type: WallReinforced - components: - - pos: 49.5,2.5 - parent: 8364 - type: Transform -- uid: 1706 - type: CableApcExtension - components: - - pos: 15.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1707 - type: WallReinforced - components: - - pos: 49.5,5.5 - parent: 8364 - type: Transform -- uid: 1708 - type: WallReinforced - components: - - pos: 49.5,6.5 - parent: 8364 - type: Transform -- uid: 1709 - type: ReinforcedWindow - components: - - pos: 21.5,-31.5 - parent: 8364 - type: Transform -- uid: 1710 - type: ReinforcedWindow - components: - - pos: 20.5,-31.5 - parent: 8364 - type: Transform -- uid: 1711 - type: ReinforcedWindow - components: - - pos: 19.5,-31.5 - parent: 8364 - type: Transform -- uid: 1712 - type: CableApcExtension - components: - - pos: 10.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1713 - type: CableApcExtension - components: - - pos: 13.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1714 - type: WallSolid - components: - - pos: 47.5,12.5 - parent: 8364 - type: Transform -- uid: 1715 - type: CableApcExtension - components: - - pos: 16.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1716 - type: WallSolid - components: - - pos: 46.5,12.5 - parent: 8364 - type: Transform -- uid: 1717 - type: WallSolidRust - components: - - pos: 57.5,11.5 - parent: 8364 - type: Transform -- uid: 1718 - type: LockerBoozeFilled - components: - - pos: 33.5,1.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1719 - type: WallSolid - components: - - pos: 92.5,-30.5 - parent: 8364 - type: Transform -- uid: 1720 - type: Grille - components: - - pos: 91.5,-30.5 - parent: 8364 - type: Transform -- uid: 1721 - type: Grille - components: - - pos: 93.5,-30.5 - parent: 8364 - type: Transform -- uid: 1722 - type: Grille - components: - - pos: 91.5,-28.5 - parent: 8364 - type: Transform -- uid: 1723 - type: Grille - components: - - pos: 92.5,-28.5 - parent: 8364 - type: Transform -- uid: 1724 - type: Grille - components: - - pos: 93.5,-28.5 - parent: 8364 - type: Transform -- uid: 1725 - type: Grille - components: - - pos: 91.5,-27.5 - parent: 8364 - type: Transform -- uid: 1726 - type: Grille - components: - - pos: 93.5,-27.5 - parent: 8364 - type: Transform -- uid: 1727 - type: AirlockExternalGlass - components: - - pos: 91.5,-29.5 - parent: 8364 - type: Transform -- uid: 1728 - type: WallSolid - components: - - pos: 91.5,-24.5 - parent: 8364 - type: Transform -- uid: 1729 - type: ReinforcedWindow - components: - - pos: 18.5,-31.5 - parent: 8364 - type: Transform -- uid: 1730 - type: WallSolidRust - components: - - pos: 59.5,19.5 - parent: 8364 - type: Transform -- uid: 1731 - type: ReinforcedWindow - components: - - pos: 93.5,-27.5 - parent: 8364 - type: Transform -- uid: 1732 - type: ReinforcedWindow - components: - - pos: 93.5,-28.5 - parent: 8364 - type: Transform -- uid: 1733 - type: ReinforcedWindow - components: - - pos: 92.5,-28.5 - parent: 8364 - type: Transform -- uid: 1734 - type: ReinforcedWindow - components: - - pos: 91.5,-28.5 - parent: 8364 - type: Transform -- uid: 1735 - type: ReinforcedWindow - components: - - pos: 91.5,-27.5 - parent: 8364 - type: Transform -- uid: 1736 - type: ReinforcedWindow - components: - - pos: 91.5,-30.5 - parent: 8364 - type: Transform -- uid: 1737 - type: ReinforcedWindow - components: - - pos: 93.5,-30.5 - parent: 8364 - type: Transform -- uid: 1738 - type: WallSolidRust - components: - - pos: 61.5,13.5 - parent: 8364 - type: Transform -- uid: 1739 - type: Window - components: - - pos: 86.5,-37.5 - parent: 8364 - type: Transform -- uid: 1740 - type: Window - components: - - pos: 85.5,-37.5 - parent: 8364 - type: Transform -- uid: 1741 - type: ReinforcedWindow - components: - - pos: 87.5,-36.5 - parent: 8364 - type: Transform -- uid: 1742 - type: ReinforcedWindow - components: - - pos: 87.5,-35.5 - parent: 8364 - type: Transform -- uid: 1743 - type: ReinforcedWindow - components: - - pos: 87.5,-34.5 - parent: 8364 - type: Transform -- uid: 1744 - type: Grille - components: - - pos: 87.5,-34.5 - parent: 8364 - type: Transform -- uid: 1745 - type: Grille - components: - - pos: 87.5,-35.5 - parent: 8364 - type: Transform -- uid: 1746 - type: Grille - components: - - pos: 87.5,-36.5 - parent: 8364 - type: Transform -- uid: 1747 - type: Grille - components: - - pos: 86.5,-37.5 - parent: 8364 - type: Transform -- uid: 1748 - type: Grille - components: - - pos: 85.5,-37.5 - parent: 8364 - type: Transform -- uid: 1749 - type: TableReinforced - components: - - pos: 21.5,-23.5 - parent: 8364 - type: Transform -- uid: 1750 - type: Window - components: - - pos: 37.5,-27.5 - parent: 8364 - type: Transform -- uid: 1751 - type: PottedPlantRandom - components: - - pos: 24.5,-20.5 - parent: 8364 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1752 - type: WeaponCapacitorRecharger - components: - - pos: 37.5,-19.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1753 - type: CarpetOrange - components: - - pos: 63.5,2.5 - parent: 8364 - type: Transform -- uid: 1754 - type: Paper - components: - - rot: -0.0002749452833086252 rad - pos: 37.26501,-16.262848 - parent: 8364 - type: Transform -- uid: 1755 - type: WallSolid - components: - - pos: 43.5,-21.5 - parent: 8364 - type: Transform -- uid: 1756 - type: WallSolidRust - components: - - pos: 54.5,17.5 - parent: 8364 - type: Transform -- uid: 1757 - type: AirlockChemistryLocked - components: - - name: Chemistry - type: MetaData - - pos: 19.5,-23.5 - parent: 8364 - type: Transform -- uid: 1758 - type: WindoorChemistryLocked - components: - - name: Chemistry Desk - type: MetaData - - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 - parent: 8364 - type: Transform -- uid: 1759 - type: CableApcExtension - components: - - pos: 45.5,-25.5 - parent: 8364 - type: Transform -- uid: 1760 - type: WallSolid - components: - - pos: 48.5,-25.5 - parent: 8364 - type: Transform -- uid: 1761 - type: WallSolid - components: - - pos: 47.5,-25.5 - parent: 8364 - type: Transform -- uid: 1762 - type: AirlockSecurityGlassLocked - components: - - pos: 43.5,-23.5 - parent: 8364 - type: Transform -- uid: 1763 - type: AirlockMedicalGlassLocked - components: - - pos: 39.5,-25.5 - parent: 8364 - type: Transform -- uid: 1764 - type: WallSolid - components: - - pos: 80.5,15.5 - parent: 8364 - type: Transform -- uid: 1765 - type: WallSolid - components: - - pos: 78.5,15.5 - parent: 8364 - type: Transform -- uid: 1766 - type: WallSolid - components: - - pos: 44.5,-21.5 - parent: 8364 - type: Transform -- uid: 1767 - type: Paper - components: - - pos: 37.51018,-16.396301 - parent: 8364 - type: Transform -- uid: 1768 - type: WallSolid - components: - - pos: 77.5,15.5 - parent: 8364 - type: Transform -- uid: 1769 - type: Paper - components: - - rot: 0.00023575738305225968 rad - pos: 37.322674,-16.26386 - parent: 8364 - type: Transform -- uid: 1770 - type: LockerSecurityFilled - components: - - pos: 39.5,-19.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1771 - type: WallSolid - components: - - pos: 75.5,15.5 - parent: 8364 - type: Transform -- uid: 1772 - type: WallSolid - components: - - pos: 51.5,-15.5 - parent: 8364 - type: Transform -- uid: 1773 - type: WallSolid - components: - - pos: 36.5,-15.5 - parent: 8364 - type: Transform -- uid: 1774 - type: WallSolid - components: - - pos: 50.5,-15.5 - parent: 8364 - type: Transform -- uid: 1775 - type: WallSolid - components: - - pos: 32.5,-15.5 - parent: 8364 - type: Transform -- uid: 1776 - type: WallSolid - components: - - pos: 28.5,-15.5 - parent: 8364 - type: Transform -- uid: 1777 - type: TableReinforced - components: - - pos: 33.5,-20.5 - parent: 8364 - type: Transform -- uid: 1778 - type: Pen - components: - - pos: 27.5,-20.5 - parent: 8364 - type: Transform -- uid: 1779 - type: Paper - components: - - pos: 33.5,-19.5 - parent: 8364 - type: Transform -- uid: 1780 - type: WallSolid - components: - - pos: 76.5,15.5 - parent: 8364 - type: Transform -- uid: 1781 - type: Window - components: - - pos: 31.5,-15.5 - parent: 8364 - type: Transform -- uid: 1782 - type: WallSolid - components: - - pos: 74.5,15.5 - parent: 8364 - type: Transform -- uid: 1783 - type: WallSolid - components: - - pos: 39.5,-15.5 - parent: 8364 - type: Transform -- uid: 1784 - type: WallReinforced - components: - - pos: 54.5,21.5 - parent: 8364 - type: Transform -- uid: 1785 - type: WallReinforced - components: - - pos: 54.5,20.5 - parent: 8364 - type: Transform -- uid: 1786 - type: WallSolidRust - components: - - pos: 63.5,17.5 - parent: 8364 - type: Transform -- uid: 1787 - type: WallSolid - components: - - pos: 40.5,-16.5 - parent: 8364 - type: Transform -- uid: 1788 - type: WallSolid - components: - - pos: 37.5,-15.5 - parent: 8364 - type: Transform -- uid: 1789 - type: WallSolid - components: - - pos: 40.5,-15.5 - parent: 8364 - type: Transform -- uid: 1790 - type: WallSolid - components: - - pos: 42.5,-15.5 - parent: 8364 - type: Transform -- uid: 1791 - type: ReinforcedWindow - components: - - pos: 36.5,-16.5 - parent: 8364 - type: Transform -- uid: 1792 - type: WallSolid - components: - - pos: 43.5,-15.5 - parent: 8364 - type: Transform -- uid: 1793 - type: WallSolid - components: - - pos: 17.5,-35.5 - parent: 8364 - type: Transform -- uid: 1794 - type: ReinforcedWindow - components: - - pos: 36.5,-17.5 - parent: 8364 - type: Transform -- uid: 1795 - type: WallSolid - components: - - pos: 24.5,-15.5 - parent: 8364 - type: Transform -- uid: 1796 - type: WallReinforced - components: - - pos: 54.5,19.5 - parent: 8364 - type: Transform -- uid: 1797 - type: WallReinforced - components: - - pos: 54.5,18.5 - parent: 8364 - type: Transform -- uid: 1798 - type: WallReinforced - components: - - pos: 58.5,21.5 - parent: 8364 - type: Transform -- uid: 1799 - type: WallSolid - components: - - pos: 48.5,-15.5 - parent: 8364 - type: Transform -- uid: 1800 - type: ReinforcedWindow - components: - - pos: 36.5,-19.5 - parent: 8364 - type: Transform -- uid: 1801 - type: ReinforcedWindow - components: - - pos: 39.5,-20.5 - parent: 8364 - type: Transform -- uid: 1802 - type: Pen - components: - - rot: 0.0006127880187705159 rad - pos: 37.71225,-16.262453 - parent: 8364 - type: Transform -- uid: 1803 - type: WallSolid - components: - - pos: 40.5,-21.5 - parent: 8364 - type: Transform -- uid: 1804 - type: WallSolid - components: - - pos: 46.5,-21.5 - parent: 8364 - type: Transform -- uid: 1805 - type: WallSolid - components: - - pos: 47.5,-21.5 - parent: 8364 - type: Transform -- uid: 1806 - type: WallReinforced - components: - - pos: 58.5,20.5 - parent: 8364 - type: Transform -- uid: 1807 - type: APCHighCapacity - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-17.5 - parent: 8364 - type: Transform -- uid: 1808 - type: WallSolid - components: - - pos: 42.5,-21.5 - parent: 8364 - type: Transform -- uid: 1809 - type: WallReinforced - components: - - pos: 23.5,-28.5 - parent: 8364 - type: Transform -- uid: 1810 - type: WallSolid - components: - - pos: 23.5,-27.5 - parent: 8364 - type: Transform -- uid: 1811 - type: WallSolid - components: - - pos: 23.5,-26.5 - parent: 8364 - type: Transform -- uid: 1812 - type: WallSolid - components: - - pos: 23.5,-29.5 - parent: 8364 - type: Transform -- uid: 1813 - type: WallSolid - components: - - pos: 23.5,-31.5 - parent: 8364 - type: Transform -- uid: 1814 - type: WallSolid - components: - - pos: 23.5,-30.5 - parent: 8364 - type: Transform -- uid: 1815 - type: WallSolid - components: - - pos: 23.5,-32.5 - parent: 8364 - type: Transform -- uid: 1816 - type: WallSolid - components: - - pos: 23.5,-36.5 - parent: 8364 - type: Transform -- uid: 1817 - type: Catwalk - components: - - pos: 49.5,-30.5 - parent: 8364 - type: Transform -- uid: 1818 - type: WallSolid - components: - - pos: 23.5,-33.5 - parent: 8364 - type: Transform -- uid: 1819 - type: ReinforcedWindow - components: - - pos: 22.5,-31.5 - parent: 8364 - type: Transform -- uid: 1820 - type: WallReinforced - components: - - pos: 64.5,21.5 - parent: 8364 - type: Transform -- uid: 1821 - type: WallSolid - components: - - pos: 17.5,-33.5 - parent: 8364 - type: Transform -- uid: 1822 - type: AirlockSecurityLocked - components: - - pos: 45.5,-21.5 - parent: 8364 - type: Transform -- uid: 1823 - type: Table - components: - - pos: 37.5,-19.5 - parent: 8364 - type: Transform -- uid: 1824 - type: Table - components: - - pos: 37.5,-16.5 - parent: 8364 - type: Transform -- uid: 1825 - type: BoxFolderGrey - components: - - pos: 29.490276,-19.429476 - parent: 8364 - type: Transform -- uid: 1826 - type: Chair - components: - - pos: 28.5,-16.5 - parent: 8364 - type: Transform -- uid: 1827 - type: Paper - components: - - pos: 33.5,-19.5 - parent: 8364 - type: Transform -- uid: 1828 - type: Grille - components: - - pos: 36.5,-19.5 - parent: 8364 - type: Transform -- uid: 1829 - type: Grille - components: - - pos: 37.5,-20.5 - parent: 8364 - type: Transform -- uid: 1830 - type: Grille - components: - - pos: 39.5,-20.5 - parent: 8364 - type: Transform -- uid: 1831 - type: Paper - components: - - pos: 33.5,-19.5 - parent: 8364 - type: Transform -- uid: 1832 - type: WallSolid - components: - - pos: -44.5,21.5 - parent: 8364 - type: Transform -- uid: 1833 - type: WallSolid - components: - - pos: 27.5,-22.5 - parent: 8364 - type: Transform -- uid: 1834 - type: WallReinforced - components: - - pos: 64.5,20.5 - parent: 8364 - type: Transform -- uid: 1835 - type: WallReinforced - components: - - pos: 63.5,20.5 - parent: 8364 - type: Transform -- uid: 1836 - type: WallReinforced - components: - - pos: 61.5,20.5 - parent: 8364 - type: Transform -- uid: 1837 - type: WallReinforced - components: - - pos: 59.5,20.5 - parent: 8364 - type: Transform -- uid: 1838 - type: WallSolid - components: - - pos: 27.5,-21.5 - parent: 8364 - type: Transform -- uid: 1839 - type: Grille - components: - - pos: 29.5,-15.5 - parent: 8364 - type: Transform -- uid: 1840 - type: WallSolid - components: - - pos: 33.5,-21.5 - parent: 8364 - type: Transform -- uid: 1841 - type: Pen - components: - - pos: 32.5,-19.5 - parent: 8364 - type: Transform -- uid: 1842 - type: BoxFolderGrey - components: - - pos: 31.5,-19.5 - parent: 8364 - type: Transform -- uid: 1843 - type: WallSolid - components: - - pos: 17.5,-37.5 - parent: 8364 - type: Transform -- uid: 1844 - type: WallSolid - components: - - pos: 18.5,-37.5 - parent: 8364 - type: Transform -- uid: 1845 - type: WallSolid - components: - - pos: 20.5,-37.5 - parent: 8364 - type: Transform -- uid: 1846 - type: WallSolid - components: - - pos: 21.5,-37.5 - parent: 8364 - type: Transform -- uid: 1847 - type: WallSolid - components: - - pos: 22.5,-37.5 - parent: 8364 - type: Transform -- uid: 1848 - type: WallSolid - components: - - pos: 23.5,-37.5 - parent: 8364 - type: Transform -- uid: 1849 - type: WallSolid - components: - - pos: 24.5,-37.5 - parent: 8364 - type: Transform -- uid: 1850 - type: WallSolid - components: - - pos: 26.5,-37.5 - parent: 8364 - type: Transform -- uid: 1851 - type: WallSolid - components: - - pos: 27.5,-37.5 - parent: 8364 - type: Transform -- uid: 1852 - type: WallSolid - components: - - pos: 28.5,-37.5 - parent: 8364 - type: Transform -- uid: 1853 - type: WallSolid - components: - - pos: 29.5,-37.5 - parent: 8364 - type: Transform -- uid: 1854 - type: WallSolid - components: - - pos: 30.5,-37.5 - parent: 8364 - type: Transform -- uid: 1855 - type: WallSolid - components: - - pos: 31.5,-37.5 - parent: 8364 - type: Transform -- uid: 1856 - type: WallSolid - components: - - pos: 32.5,-37.5 - parent: 8364 - type: Transform -- uid: 1857 - type: WallSolid - components: - - pos: 33.5,-37.5 - parent: 8364 - type: Transform -- uid: 1858 - type: WallSolid - components: - - pos: 34.5,-37.5 - parent: 8364 - type: Transform -- uid: 1859 - type: WallSolid - components: - - pos: 35.5,-37.5 - parent: 8364 - type: Transform -- uid: 1860 - type: WallSolid - components: - - pos: 36.5,-37.5 - parent: 8364 - type: Transform -- uid: 1861 - type: WallSolid - components: - - pos: 37.5,-37.5 - parent: 8364 - type: Transform -- uid: 1862 - type: WallSolid - components: - - pos: 38.5,-37.5 - parent: 8364 - type: Transform -- uid: 1863 - type: FirelockGlass - components: - - pos: 36.5,-18.5 - parent: 8364 - type: Transform -- uid: 1864 - type: TableReinforced - components: - - pos: 27.5,-19.5 - parent: 8364 - type: Transform -- uid: 1865 - type: Grille - components: - - pos: 36.5,-17.5 - parent: 8364 - type: Transform -- uid: 1866 - type: Grille - components: - - pos: 36.5,-16.5 - parent: 8364 - type: Transform -- uid: 1867 - type: WallReinforced - components: - - pos: 64.5,22.5 - parent: 8364 - type: Transform -- uid: 1868 - type: TableReinforced - components: - - pos: 28.5,-19.5 - parent: 8364 - type: Transform -- uid: 1869 - type: TableReinforced - components: - - pos: 32.5,-19.5 - parent: 8364 - type: Transform -- uid: 1870 - type: Grille - components: - - pos: 38.5,-40.5 - parent: 8364 - type: Transform -- uid: 1871 - type: WallSolid - components: - - pos: 38.5,-41.5 - parent: 8364 - type: Transform -- uid: 1872 - type: WallSolid - components: - - pos: 38.5,-42.5 - parent: 8364 - type: Transform -- uid: 1873 - type: WallSolid - components: - - pos: 38.5,-43.5 - parent: 8364 - type: Transform -- uid: 1874 - type: WallSolid - components: - - pos: 38.5,-44.5 - parent: 8364 - type: Transform -- uid: 1875 - type: WallSolid - components: - - pos: 37.5,-44.5 - parent: 8364 - type: Transform -- uid: 1876 - type: WallSolid - components: - - pos: 36.5,-44.5 - parent: 8364 - type: Transform -- uid: 1877 - type: WallSolid - components: - - pos: 35.5,-44.5 - parent: 8364 - type: Transform -- uid: 1878 - type: WallSolid - components: - - pos: 34.5,-44.5 - parent: 8364 - type: Transform -- uid: 1879 - type: WallSolid - components: - - pos: 33.5,-44.5 - parent: 8364 - type: Transform -- uid: 1880 - type: WallSolid - components: - - pos: 38.5,-47.5 - parent: 8364 - type: Transform -- uid: 1881 - type: WallSolid - components: - - pos: 33.5,-40.5 - parent: 8364 - type: Transform -- uid: 1882 - type: WallSolid - components: - - pos: 33.5,-41.5 - parent: 8364 - type: Transform -- uid: 1883 - type: WallSolid - components: - - pos: 33.5,-42.5 - parent: 8364 - type: Transform -- uid: 1884 - type: WallSolid - components: - - pos: 33.5,-43.5 - parent: 8364 - type: Transform -- uid: 1885 - type: WallSolid - components: - - pos: 37.5,-47.5 - parent: 8364 - type: Transform -- uid: 1886 - type: WallSolid - components: - - pos: 36.5,-47.5 - parent: 8364 - type: Transform -- uid: 1887 - type: WallSolid - components: - - pos: 35.5,-47.5 - parent: 8364 - type: Transform -- uid: 1888 - type: WallSolid - components: - - pos: 34.5,-47.5 - parent: 8364 - type: Transform -- uid: 1889 - type: WallSolid - components: - - pos: 33.5,-47.5 - parent: 8364 - type: Transform -- uid: 1890 - type: WallSolid - components: - - pos: 33.5,-46.5 - parent: 8364 - type: Transform -- uid: 1891 - type: WallSolid - components: - - pos: 33.5,-45.5 - parent: 8364 - type: Transform -- uid: 1892 - type: WallSolid - components: - - pos: 33.5,-49.5 - parent: 8364 - type: Transform -- uid: 1893 - type: WallSolid - components: - - pos: 39.5,-50.5 - parent: 8364 - type: Transform -- uid: 1894 - type: WallSolid - components: - - pos: 33.5,-48.5 - parent: 8364 - type: Transform -- uid: 1895 - type: WallSolid - components: - - pos: 41.5,-50.5 - parent: 8364 - type: Transform -- uid: 1896 - type: SpawnPointChiefMedicalOfficer - components: - - pos: 46.5,-45.5 - parent: 8364 - type: Transform -- uid: 1897 - type: LockerChiefMedicalOfficerFilled - components: - - pos: 46.5,-44.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1898 - type: Grille - components: - - pos: 42.5,-44.5 - parent: 8364 - type: Transform -- uid: 1899 - type: WallReinforced - components: - - pos: 42.5,-43.5 - parent: 8364 - type: Transform -- uid: 1900 - type: ReinforcedWindow - components: - - pos: 42.5,-44.5 - parent: 8364 - type: Transform -- uid: 1901 - type: ReinforcedWindow - components: - - pos: 42.5,-46.5 - parent: 8364 - type: Transform -- uid: 1902 - type: WallSolid - components: - - pos: 48.5,-48.5 - parent: 8364 - type: Transform -- uid: 1903 - type: WallReinforced - components: - - pos: 43.5,-43.5 - parent: 8364 - type: Transform -- uid: 1904 - type: WallReinforced - components: - - pos: 44.5,-43.5 - parent: 8364 - type: Transform -- uid: 1905 - type: WallReinforced - components: - - pos: 45.5,-43.5 - parent: 8364 - type: Transform -- uid: 1906 - type: WallReinforced - components: - - pos: 47.5,-43.5 - parent: 8364 - type: Transform -- uid: 1907 - type: WallReinforced - components: - - pos: 47.5,-44.5 - parent: 8364 - type: Transform -- uid: 1908 - type: WallReinforced - components: - - pos: 45.5,-39.5 - parent: 8364 - type: Transform -- uid: 1909 - type: WallReinforced - components: - - pos: 42.5,-39.5 - parent: 8364 - type: Transform -- uid: 1910 - type: AirlockChiefMedicalOfficerGlassLocked - components: - - name: CMO's Room - type: MetaData - - pos: 42.5,-45.5 - parent: 8364 - type: Transform -- uid: 1911 - type: WallSolid - components: - - pos: 47.5,-30.5 - parent: 8364 - type: Transform -- uid: 1912 - type: WallSolid - components: - - pos: 19.5,-28.5 - parent: 8364 - type: Transform -- uid: 1913 - type: WallReinforced - components: - - pos: 64.5,24.5 - parent: 8364 - type: Transform -- uid: 1914 - type: WallReinforced - components: - - pos: 64.5,23.5 - parent: 8364 - type: Transform -- uid: 1915 - type: WallReinforced - components: - - pos: 66.5,24.5 - parent: 8364 - type: Transform -- uid: 1916 - type: WallReinforced - components: - - pos: 66.5,23.5 - parent: 8364 - type: Transform -- uid: 1917 - type: WallReinforced - components: - - pos: 66.5,22.5 - parent: 8364 - type: Transform -- uid: 1918 - type: AirlockSecurityGlassLocked - components: - - name: Security Office - type: MetaData - - pos: 38.5,-20.5 - parent: 8364 - type: Transform -- uid: 1919 - type: WallSolid - components: - - pos: 48.5,-30.5 - parent: 8364 - type: Transform -- uid: 1920 - type: WallSolid - components: - - pos: 48.5,-31.5 - parent: 8364 - type: Transform -- uid: 1921 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 21.5,-21.5 - parent: 8364 - type: Transform -- uid: 1922 - type: SignSmoking - components: - - pos: 43.5,-31.5 - parent: 8364 - type: Transform -- uid: 1923 - type: SpaceVillainArcadeFilled - components: - - pos: 46.5,-31.5 - parent: 8364 - type: Transform -- uid: 1924 - type: BlockGameArcade - components: - - pos: 45.5,-31.5 - parent: 8364 - type: Transform -- uid: 1925 - type: WallReinforced - components: - - pos: 47.5,-37.5 - parent: 8364 - type: Transform -- uid: 1926 - type: WallReinforced - components: - - pos: 48.5,-37.5 - parent: 8364 - type: Transform -- uid: 1927 - type: WallReinforced - components: - - pos: 48.5,-38.5 - parent: 8364 - type: Transform -- uid: 1928 - type: WallReinforced - components: - - pos: 48.5,-39.5 - parent: 8364 - type: Transform -- uid: 1929 - type: WallReinforced - components: - - pos: 42.5,-40.5 - parent: 8364 - type: Transform -- uid: 1930 - type: WallReinforced - components: - - pos: 48.5,-40.5 - parent: 8364 - type: Transform -- uid: 1931 - type: WallReinforced - components: - - pos: 45.5,-38.5 - parent: 8364 - type: Transform -- uid: 1932 - type: WallReinforced - components: - - pos: 45.5,-40.5 - parent: 8364 - type: Transform -- uid: 1933 - type: WallReinforced - components: - - pos: 46.5,-40.5 - parent: 8364 - type: Transform -- uid: 1934 - type: WallReinforced - components: - - pos: 45.5,-41.5 - parent: 8364 - type: Transform -- uid: 1935 - type: WallReinforced - components: - - pos: 42.5,-37.5 - parent: 8364 - type: Transform -- uid: 1936 - type: WallReinforced - components: - - pos: 42.5,-38.5 - parent: 8364 - type: Transform -- uid: 1937 - type: WallReinforced - components: - - pos: 42.5,-54.5 - parent: 8364 - type: Transform -- uid: 1938 - type: WallReinforced - components: - - pos: 42.5,-53.5 - parent: 8364 - type: Transform -- uid: 1939 - type: WallReinforced - components: - - pos: 42.5,-52.5 - parent: 8364 - type: Transform -- uid: 1940 - type: WallReinforced - components: - - pos: 42.5,-51.5 - parent: 8364 - type: Transform -- uid: 1941 - type: WallReinforced - components: - - pos: 42.5,-50.5 - parent: 8364 - type: Transform -- uid: 1942 - type: WallReinforced - components: - - pos: 43.5,-50.5 - parent: 8364 - type: Transform -- uid: 1943 - type: WallReinforced - components: - - pos: 44.5,-50.5 - parent: 8364 - type: Transform -- uid: 1944 - type: WallReinforced - components: - - pos: 45.5,-50.5 - parent: 8364 - type: Transform -- uid: 1945 - type: WallReinforced - components: - - pos: 46.5,-50.5 - parent: 8364 - type: Transform -- uid: 1946 - type: WallReinforced - components: - - pos: 47.5,-50.5 - parent: 8364 - type: Transform -- uid: 1947 - type: WallReinforced - components: - - pos: 48.5,-50.5 - parent: 8364 - type: Transform -- uid: 1948 - type: WallReinforced - components: - - pos: 48.5,-51.5 - parent: 8364 - type: Transform -- uid: 1949 - type: WallReinforced - components: - - pos: 48.5,-52.5 - parent: 8364 - type: Transform -- uid: 1950 - type: WallReinforced - components: - - pos: 48.5,-53.5 - parent: 8364 - type: Transform -- uid: 1951 - type: WallReinforced - components: - - pos: 48.5,-54.5 - parent: 8364 - type: Transform -- uid: 1952 - type: WallReinforced - components: - - pos: 48.5,-55.5 - parent: 8364 - type: Transform -- uid: 1953 - type: WallReinforced - components: - - pos: 48.5,-56.5 - parent: 8364 - type: Transform -- uid: 1954 - type: WallReinforced - components: - - pos: 48.5,-57.5 - parent: 8364 - type: Transform -- uid: 1955 - type: WallReinforced - components: - - pos: 48.5,-58.5 - parent: 8364 - type: Transform -- uid: 1956 - type: WallReinforced - components: - - pos: 48.5,-59.5 - parent: 8364 - type: Transform -- uid: 1957 - type: WallReinforced - components: - - pos: 48.5,-60.5 - parent: 8364 - type: Transform -- uid: 1958 - type: WallReinforced - components: - - pos: 48.5,-61.5 - parent: 8364 - type: Transform -- uid: 1959 - type: WallReinforced - components: - - pos: 47.5,-61.5 - parent: 8364 - type: Transform -- uid: 1960 - type: WallReinforced - components: - - pos: 46.5,-61.5 - parent: 8364 - type: Transform -- uid: 1961 - type: WallReinforced - components: - - pos: 45.5,-61.5 - parent: 8364 - type: Transform -- uid: 1962 - type: WallReinforced - components: - - pos: 44.5,-61.5 - parent: 8364 - type: Transform -- uid: 1963 - type: WallReinforced - components: - - pos: 43.5,-61.5 - parent: 8364 - type: Transform -- uid: 1964 - type: WallReinforced - components: - - pos: 42.5,-61.5 - parent: 8364 - type: Transform -- uid: 1965 - type: WallReinforced - components: - - pos: 41.5,-61.5 - parent: 8364 - type: Transform -- uid: 1966 - type: WallReinforced - components: - - pos: 40.5,-61.5 - parent: 8364 - type: Transform -- uid: 1967 - type: WallReinforced - components: - - pos: 39.5,-61.5 - parent: 8364 - type: Transform -- uid: 1968 - type: WallReinforced - components: - - pos: 38.5,-61.5 - parent: 8364 - type: Transform -- uid: 1969 - type: WallReinforced - components: - - pos: 37.5,-61.5 - parent: 8364 - type: Transform -- uid: 1970 - type: WallReinforced - components: - - pos: 37.5,-60.5 - parent: 8364 - type: Transform -- uid: 1971 - type: WallReinforced - components: - - pos: 37.5,-59.5 - parent: 8364 - type: Transform -- uid: 1972 - type: WallReinforced - components: - - pos: 37.5,-58.5 - parent: 8364 - type: Transform -- uid: 1973 - type: WallReinforced - components: - - pos: 37.5,-57.5 - parent: 8364 - type: Transform -- uid: 1974 - type: WallReinforced - components: - - pos: 37.5,-56.5 - parent: 8364 - type: Transform -- uid: 1975 - type: WallReinforced - components: - - pos: 36.5,-56.5 - parent: 8364 - type: Transform -- uid: 1976 - type: WallReinforced - components: - - pos: 35.5,-56.5 - parent: 8364 - type: Transform -- uid: 1977 - type: WallReinforced - components: - - pos: 34.5,-56.5 - parent: 8364 - type: Transform -- uid: 1978 - type: WallReinforced - components: - - pos: 33.5,-56.5 - parent: 8364 - type: Transform -- uid: 1979 - type: WallReinforced - components: - - pos: 33.5,-55.5 - parent: 8364 - type: Transform -- uid: 1980 - type: WallReinforced - components: - - pos: 33.5,-54.5 - parent: 8364 - type: Transform -- uid: 1981 - type: WallReinforced - components: - - pos: 33.5,-53.5 - parent: 8364 - type: Transform -- uid: 1982 - type: WallReinforced - components: - - pos: 33.5,-52.5 - parent: 8364 - type: Transform -- uid: 1983 - type: WallReinforced - components: - - pos: 33.5,-51.5 - parent: 8364 - type: Transform -- uid: 1984 - type: WallReinforced - components: - - pos: 33.5,-50.5 - parent: 8364 - type: Transform -- uid: 1985 - type: WallReinforced - components: - - pos: 34.5,-50.5 - parent: 8364 - type: Transform -- uid: 1986 - type: WallReinforced - components: - - pos: 35.5,-50.5 - parent: 8364 - type: Transform -- uid: 1987 - type: WallReinforced - components: - - pos: 36.5,-50.5 - parent: 8364 - type: Transform -- uid: 1988 - type: WallReinforced - components: - - pos: 37.5,-50.5 - parent: 8364 - type: Transform -- uid: 1989 - type: WallReinforced - components: - - pos: 38.5,-50.5 - parent: 8364 - type: Transform -- uid: 1990 - type: WallReinforced - components: - - pos: 38.5,-51.5 - parent: 8364 - type: Transform -- uid: 1991 - type: WallReinforced - components: - - pos: 38.5,-52.5 - parent: 8364 - type: Transform -- uid: 1992 - type: WallReinforced - components: - - pos: 38.5,-53.5 - parent: 8364 - type: Transform -- uid: 1993 - type: WallReinforced - components: - - pos: 38.5,-54.5 - parent: 8364 - type: Transform -- uid: 1994 - type: WallSolid - components: - - pos: 37.5,-54.5 - parent: 8364 - type: Transform -- uid: 1995 - type: WallReinforced - components: - - pos: 41.5,-54.5 - parent: 8364 - type: Transform -- uid: 1996 - type: WallReinforced - components: - - pos: 39.5,-54.5 - parent: 8364 - type: Transform -- uid: 1997 - type: WallReinforced - components: - - pos: 51.5,-58.5 - parent: 8364 - type: Transform -- uid: 1998 - type: WallReinforced - components: - - pos: 50.5,-58.5 - parent: 8364 - type: Transform -- uid: 1999 - type: WallReinforced - components: - - pos: 54.5,-58.5 - parent: 8364 - type: Transform -- uid: 2000 - type: WallReinforced - components: - - pos: 55.5,-58.5 - parent: 8364 - type: Transform -- uid: 2001 - type: WallReinforced - components: - - pos: 59.5,-58.5 - parent: 8364 - type: Transform -- uid: 2002 - type: Table - components: - - pos: 57.5,-57.5 - parent: 8364 - type: Transform -- uid: 2003 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-57.5 - parent: 8364 - type: Transform -- uid: 2004 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-57.5 - parent: 8364 - type: Transform -- uid: 2005 - type: ClothingHeadHatWelding - components: - - pos: 59.576565,-55.586205 - parent: 8364 - type: Transform -- uid: 2006 - type: WelderMini - components: - - pos: 59.545315,-55.38308 - parent: 8364 - type: Transform -- uid: 2007 - type: ClosetFireFilled - components: - - pos: 56.5,-55.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2008 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 55.5,-55.5 - parent: 8364 - type: Transform -- uid: 2009 - type: WallReinforced - components: - - pos: 64.5,-55.5 - parent: 8364 - type: Transform -- uid: 2010 - type: WallSolid - components: - - pos: 67.5,-58.5 - parent: 8364 - type: Transform -- uid: 2011 - type: WallReinforced - components: - - pos: 64.5,-53.5 - parent: 8364 - type: Transform -- uid: 2012 - type: WallReinforced - components: - - pos: 64.5,-52.5 - parent: 8364 - type: Transform -- uid: 2013 - type: WallReinforced - components: - - pos: 64.5,-51.5 - parent: 8364 - type: Transform -- uid: 2014 - type: WallReinforced - components: - - pos: 64.5,-50.5 - parent: 8364 - type: Transform -- uid: 2015 - type: ClosetFireFilled - components: - - pos: 50.5,-56.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2016 - type: AirlockAtmosphericsLocked - components: - - name: Sci Test Lab - type: MetaData - - pos: 64.5,-56.5 - parent: 8364 - type: Transform -- uid: 2017 - type: WallReinforced - components: - - pos: 51.5,-56.5 - parent: 8364 - type: Transform -- uid: 2018 - type: WallReinforced - components: - - pos: 50.5,-54.5 - parent: 8364 - type: Transform -- uid: 2019 - type: WallReinforced - components: - - pos: 50.5,-53.5 - parent: 8364 - type: Transform -- uid: 2020 - type: WallReinforced - components: - - pos: 50.5,-52.5 - parent: 8364 - type: Transform -- uid: 2021 - type: WallReinforced - components: - - pos: 50.5,-51.5 - parent: 8364 - type: Transform -- uid: 2022 - type: WallReinforced - components: - - pos: 50.5,-50.5 - parent: 8364 - type: Transform -- uid: 2023 - type: WallReinforced - components: - - pos: 50.5,-49.5 - parent: 8364 - type: Transform -- uid: 2024 - type: WallReinforced - components: - - pos: 50.5,-48.5 - parent: 8364 - type: Transform -- uid: 2025 - type: WallReinforced - components: - - pos: 50.5,-47.5 - parent: 8364 - type: Transform -- uid: 2026 - type: WallReinforced - components: - - pos: 50.5,-46.5 - parent: 8364 - type: Transform -- uid: 2027 - type: WallReinforced - components: - - pos: 50.5,-45.5 - parent: 8364 - type: Transform -- uid: 2028 - type: WallReinforced - components: - - pos: 50.5,-44.5 - parent: 8364 - type: Transform -- uid: 2029 - type: WallReinforced - components: - - pos: 50.5,-43.5 - parent: 8364 - type: Transform -- uid: 2030 - type: WallReinforced - components: - - pos: 50.5,-42.5 - parent: 8364 - type: Transform -- uid: 2031 - type: WallSolid - components: - - pos: 50.5,-39.5 - parent: 8364 - type: Transform -- uid: 2032 - type: WallSolid - components: - - pos: 50.5,-38.5 - parent: 8364 - type: Transform -- uid: 2033 - type: WallSolid - components: - - pos: 43.5,-36.5 - parent: 8364 - type: Transform -- uid: 2034 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-34.5 - parent: 8364 - type: Transform -- uid: 2035 - type: LockerMedicineFilled - components: - - pos: 36.5,-45.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2036 - type: LockerMedicineFilled - components: - - pos: 36.5,-48.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2037 - type: AirlockMedicalGlassLocked - components: - - name: Giga Break Room - type: MetaData - - pos: 43.5,-35.5 - parent: 8364 - type: Transform -- uid: 2038 - type: WallSolid - components: - - pos: 50.5,-32.5 - parent: 8364 - type: Transform -- uid: 2039 - type: WallSolid - components: - - pos: 50.5,-41.5 - parent: 8364 - type: Transform -- uid: 2040 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-35.5 - parent: 8364 - type: Transform -- uid: 2041 - type: TableReinforced - components: - - pos: 53.5,-33.5 - parent: 8364 - type: Transform -- uid: 2042 - type: AsteroidRock - components: - - pos: 55.5,-76.5 - parent: 8364 - type: Transform -- uid: 2043 - type: GrilleBroken - components: - - pos: 68.5,-75.5 - parent: 8364 - type: Transform -- uid: 2044 - type: WallReinforced - components: - - pos: 58.5,-36.5 - parent: 8364 - type: Transform -- uid: 2045 - type: WallReinforced - components: - - pos: 58.5,-35.5 - parent: 8364 - type: Transform -- uid: 2046 - type: WallReinforced - components: - - pos: 58.5,-34.5 - parent: 8364 - type: Transform -- uid: 2047 - type: WallReinforced - components: - - pos: 58.5,-33.5 - parent: 8364 - type: Transform -- uid: 2048 - type: WallReinforced - components: - - pos: 58.5,-32.5 - parent: 8364 - type: Transform -- uid: 2049 - type: WallReinforced - components: - - pos: 57.5,-32.5 - parent: 8364 - type: Transform -- uid: 2050 - type: WallReinforced - components: - - pos: 56.5,-32.5 - parent: 8364 - type: Transform -- uid: 2051 - type: WallReinforced - components: - - pos: 55.5,-32.5 - parent: 8364 - type: Transform -- uid: 2052 - type: WallReinforced - components: - - pos: 54.5,-32.5 - parent: 8364 - type: Transform -- uid: 2053 - type: ReinforcedWindow - components: - - pos: 53.5,-28.5 - parent: 8364 - type: Transform -- uid: 2054 - type: WallReinforced - components: - - pos: 52.5,-32.5 - parent: 8364 - type: Transform -- uid: 2055 - type: WallReinforced - components: - - pos: 51.5,-32.5 - parent: 8364 - type: Transform -- uid: 2056 - type: WallReinforced - components: - - pos: 51.5,-31.5 - parent: 8364 - type: Transform -- uid: 2057 - type: WallReinforced - components: - - pos: 51.5,-30.5 - parent: 8364 - type: Transform -- uid: 2058 - type: WallReinforced - components: - - pos: 51.5,-29.5 - parent: 8364 - type: Transform -- uid: 2059 - type: WallReinforced - components: - - pos: 51.5,-28.5 - parent: 8364 - type: Transform -- uid: 2060 - type: WallReinforced - components: - - pos: 52.5,-28.5 - parent: 8364 - type: Transform -- uid: 2061 - type: ReinforcedWindow - components: - - pos: 53.5,-32.5 - parent: 8364 - type: Transform -- uid: 2062 - type: WallReinforced - components: - - pos: 54.5,-28.5 - parent: 8364 - type: Transform -- uid: 2063 - type: WallReinforced - components: - - pos: 56.5,-28.5 - parent: 8364 - type: Transform -- uid: 2064 - type: WallReinforced - components: - - pos: 57.5,-28.5 - parent: 8364 - type: Transform -- uid: 2065 - type: WallReinforced - components: - - pos: 58.5,-28.5 - parent: 8364 - type: Transform -- uid: 2066 - type: WallReinforced - components: - - pos: 58.5,-29.5 - parent: 8364 - type: Transform -- uid: 2067 - type: WallReinforced - components: - - pos: 58.5,-30.5 - parent: 8364 - type: Transform -- uid: 2068 - type: WallReinforced - components: - - pos: 58.5,-31.5 - parent: 8364 - type: Transform -- uid: 2069 - type: WallSolid - components: - - pos: 50.5,-21.5 - parent: 8364 - type: Transform -- uid: 2070 - type: WallSolid - components: - - pos: 50.5,-22.5 - parent: 8364 - type: Transform -- uid: 2071 - type: WallSolid - components: - - pos: 50.5,-23.5 - parent: 8364 - type: Transform -- uid: 2072 - type: WallSolid - components: - - pos: 50.5,-24.5 - parent: 8364 - type: Transform -- uid: 2073 - type: WallSolid - components: - - pos: 50.5,-25.5 - parent: 8364 - type: Transform -- uid: 2074 - type: WallSolid - components: - - pos: 51.5,-25.5 - parent: 8364 - type: Transform -- uid: 2075 - type: WallSolid - components: - - pos: 51.5,-26.5 - parent: 8364 - type: Transform -- uid: 2076 - type: WallReinforced - components: - - pos: 56.5,-15.5 - parent: 8364 - type: Transform -- uid: 2077 - type: WallReinforced - components: - - pos: 57.5,-15.5 - parent: 8364 - type: Transform -- uid: 2078 - type: AirlockScienceLocked - components: - - pos: 58.5,-15.5 - parent: 8364 - type: Transform -- uid: 2079 - type: WallReinforced - components: - - pos: 59.5,-15.5 - parent: 8364 - type: Transform -- uid: 2080 - type: WallReinforced - components: - - pos: 60.5,-15.5 - parent: 8364 - type: Transform -- uid: 2081 - type: WallReinforced - components: - - pos: 60.5,-16.5 - parent: 8364 - type: Transform -- uid: 2082 - type: WallReinforced - components: - - pos: 64.5,-16.5 - parent: 8364 - type: Transform -- uid: 2083 - type: WallReinforced - components: - - pos: 64.5,-17.5 - parent: 8364 - type: Transform -- uid: 2084 - type: WallReinforced - components: - - pos: 64.5,-18.5 - parent: 8364 - type: Transform -- uid: 2085 - type: WallReinforced - components: - - pos: 64.5,-19.5 - parent: 8364 - type: Transform -- uid: 2086 - type: WallReinforced - components: - - pos: 64.5,-20.5 - parent: 8364 - type: Transform -- uid: 2087 - type: WallReinforced - components: - - pos: 65.5,-20.5 - parent: 8364 - type: Transform -- uid: 2088 - type: WallReinforced - components: - - pos: 65.5,-16.5 - parent: 8364 - type: Transform -- uid: 2089 - type: WallReinforced - components: - - pos: 67.5,-16.5 - parent: 8364 - type: Transform -- uid: 2090 - type: WallReinforced - components: - - pos: 68.5,-16.5 - parent: 8364 - type: Transform -- uid: 2091 - type: WallReinforced - components: - - pos: 68.5,-17.5 - parent: 8364 - type: Transform -- uid: 2092 - type: WallReinforced - components: - - pos: 68.5,-18.5 - parent: 8364 - type: Transform -- uid: 2093 - type: WallReinforced - components: - - pos: 68.5,-19.5 - parent: 8364 - type: Transform -- uid: 2094 - type: WallReinforced - components: - - pos: 68.5,-20.5 - parent: 8364 - type: Transform -- uid: 2095 - type: WallReinforced - components: - - pos: 67.5,-20.5 - parent: 8364 - type: Transform -- uid: 2096 - type: WallReinforced - components: - - pos: 72.5,-16.5 - parent: 8364 - type: Transform -- uid: 2097 - type: WallReinforced - components: - - pos: 72.5,-15.5 - parent: 8364 - type: Transform -- uid: 2098 - type: WallReinforced - components: - - pos: 73.5,-15.5 - parent: 8364 - type: Transform -- uid: 2099 - type: WallReinforced - components: - - pos: 74.5,-15.5 - parent: 8364 - type: Transform -- uid: 2100 - type: WallReinforced - components: - - pos: 75.5,-15.5 - parent: 8364 - type: Transform -- uid: 2101 - type: WallReinforced - components: - - pos: 75.5,-16.5 - parent: 8364 - type: Transform -- uid: 2102 - type: WallReinforced - components: - - pos: 75.5,-17.5 - parent: 8364 - type: Transform -- uid: 2103 - type: WallReinforced - components: - - pos: 75.5,-18.5 - parent: 8364 - type: Transform -- uid: 2104 - type: WallReinforced - components: - - pos: 75.5,-19.5 - parent: 8364 - type: Transform -- uid: 2105 - type: WallReinforced - components: - - pos: 75.5,-20.5 - parent: 8364 - type: Transform -- uid: 2106 - type: WallReinforced - components: - - pos: 76.5,-20.5 - parent: 8364 - type: Transform -- uid: 2107 - type: WallReinforced - components: - - pos: 77.5,-20.5 - parent: 8364 - type: Transform -- uid: 2108 - type: WallReinforced - components: - - pos: 77.5,-22.5 - parent: 8364 - type: Transform -- uid: 2109 - type: WallReinforced - components: - - pos: 76.5,-22.5 - parent: 8364 - type: Transform -- uid: 2110 - type: WallReinforced - components: - - pos: 75.5,-22.5 - parent: 8364 - type: Transform -- uid: 2111 - type: WallReinforced - components: - - pos: 78.5,-22.5 - parent: 8364 - type: Transform -- uid: 2112 - type: WallReinforced - components: - - pos: 79.5,-22.5 - parent: 8364 - type: Transform -- uid: 2113 - type: WallReinforced - components: - - pos: 80.5,-22.5 - parent: 8364 - type: Transform -- uid: 2114 - type: WallReinforced - components: - - pos: 81.5,-22.5 - parent: 8364 - type: Transform -- uid: 2115 - type: WallReinforced - components: - - pos: 82.5,-22.5 - parent: 8364 - type: Transform -- uid: 2116 - type: WallReinforced - components: - - pos: 83.5,-22.5 - parent: 8364 - type: Transform -- uid: 2117 - type: WallReinforced - components: - - pos: 83.5,-24.5 - parent: 8364 - type: Transform -- uid: 2118 - type: WallReinforced - components: - - pos: 83.5,-25.5 - parent: 8364 - type: Transform -- uid: 2119 - type: WallReinforced - components: - - pos: 83.5,-26.5 - parent: 8364 - type: Transform -- uid: 2120 - type: WallReinforced - components: - - pos: 83.5,-27.5 - parent: 8364 - type: Transform -- uid: 2121 - type: WallReinforced - components: - - pos: 83.5,-28.5 - parent: 8364 - type: Transform -- uid: 2122 - type: WallReinforced - components: - - pos: 83.5,-29.5 - parent: 8364 - type: Transform -- uid: 2123 - type: WallReinforced - components: - - pos: 83.5,-30.5 - parent: 8364 - type: Transform -- uid: 2124 - type: WallReinforced - components: - - pos: 83.5,-31.5 - parent: 8364 - type: Transform -- uid: 2125 - type: WallReinforced - components: - - pos: 82.5,-31.5 - parent: 8364 - type: Transform -- uid: 2126 - type: WallReinforced - components: - - pos: 81.5,-31.5 - parent: 8364 - type: Transform -- uid: 2127 - type: WallReinforced - components: - - pos: 80.5,-31.5 - parent: 8364 - type: Transform -- uid: 2128 - type: WallReinforced - components: - - pos: 79.5,-31.5 - parent: 8364 - type: Transform -- uid: 2129 - type: WallReinforced - components: - - pos: 78.5,-31.5 - parent: 8364 - type: Transform -- uid: 2130 - type: WallReinforced - components: - - pos: 77.5,-31.5 - parent: 8364 - type: Transform -- uid: 2131 - type: WallReinforced - components: - - pos: 76.5,-31.5 - parent: 8364 - type: Transform -- uid: 2132 - type: WallReinforced - components: - - pos: 75.5,-32.5 - parent: 8364 - type: Transform -- uid: 2133 - type: WallReinforced - components: - - pos: 75.5,-31.5 - parent: 8364 - type: Transform -- uid: 2134 - type: WallReinforced - components: - - pos: 75.5,-30.5 - parent: 8364 - type: Transform -- uid: 2135 - type: WallReinforced - components: - - pos: 75.5,-29.5 - parent: 8364 - type: Transform -- uid: 2136 - type: WallReinforced - components: - - pos: 75.5,-28.5 - parent: 8364 - type: Transform -- uid: 2137 - type: WallReinforced - components: - - pos: 75.5,-27.5 - parent: 8364 - type: Transform -- uid: 2138 - type: WallReinforced - components: - - pos: 78.5,-27.5 - parent: 8364 - type: Transform -- uid: 2139 - type: WallReinforced - components: - - pos: 81.5,-27.5 - parent: 8364 - type: Transform -- uid: 2140 - type: WallReinforced - components: - - pos: 79.5,-32.5 - parent: 8364 - type: Transform -- uid: 2141 - type: WallReinforced - components: - - pos: 79.5,-33.5 - parent: 8364 - type: Transform -- uid: 2142 - type: WallReinforced - components: - - pos: 79.5,-34.5 - parent: 8364 - type: Transform -- uid: 2143 - type: WallReinforced - components: - - pos: 79.5,-35.5 - parent: 8364 - type: Transform -- uid: 2144 - type: WallReinforced - components: - - pos: 79.5,-37.5 - parent: 8364 - type: Transform -- uid: 2145 - type: WallReinforced - components: - - pos: 79.5,-38.5 - parent: 8364 - type: Transform -- uid: 2146 - type: WallReinforced - components: - - pos: 79.5,-39.5 - parent: 8364 - type: Transform -- uid: 2147 - type: WallReinforced - components: - - pos: 79.5,-40.5 - parent: 8364 - type: Transform -- uid: 2148 - type: WallReinforced - components: - - pos: 79.5,-41.5 - parent: 8364 - type: Transform -- uid: 2149 - type: WallReinforced - components: - - pos: 79.5,-42.5 - parent: 8364 - type: Transform -- uid: 2150 - type: WallReinforced - components: - - pos: 80.5,-42.5 - parent: 8364 - type: Transform -- uid: 2151 - type: WallReinforced - components: - - pos: 81.5,-42.5 - parent: 8364 - type: Transform -- uid: 2152 - type: WallReinforced - components: - - pos: 81.5,-43.5 - parent: 8364 - type: Transform -- uid: 2153 - type: WallReinforced - components: - - pos: 81.5,-44.5 - parent: 8364 - type: Transform -- uid: 2154 - type: WallReinforced - components: - - pos: 81.5,-45.5 - parent: 8364 - type: Transform -- uid: 2155 - type: WallReinforced - components: - - pos: 81.5,-46.5 - parent: 8364 - type: Transform -- uid: 2156 - type: WallReinforced - components: - - pos: 81.5,-47.5 - parent: 8364 - type: Transform -- uid: 2157 - type: WallReinforced - components: - - pos: 81.5,-48.5 - parent: 8364 - type: Transform -- uid: 2158 - type: WallReinforced - components: - - pos: 81.5,-49.5 - parent: 8364 - type: Transform -- uid: 2159 - type: WallReinforced - components: - - pos: 81.5,-50.5 - parent: 8364 - type: Transform -- uid: 2160 - type: WallReinforced - components: - - pos: 81.5,-51.5 - parent: 8364 - type: Transform -- uid: 2161 - type: WallReinforced - components: - - pos: 81.5,-52.5 - parent: 8364 - type: Transform -- uid: 2162 - type: WallReinforced - components: - - pos: 81.5,-53.5 - parent: 8364 - type: Transform -- uid: 2163 - type: WallReinforced - components: - - pos: 80.5,-55.5 - parent: 8364 - type: Transform -- uid: 2164 - type: WallReinforced - components: - - pos: 81.5,-54.5 - parent: 8364 - type: Transform -- uid: 2165 - type: WallReinforced - components: - - pos: 79.5,-55.5 - parent: 8364 - type: Transform -- uid: 2166 - type: WallReinforced - components: - - pos: 78.5,-55.5 - parent: 8364 - type: Transform -- uid: 2167 - type: WallReinforced - components: - - pos: 77.5,-55.5 - parent: 8364 - type: Transform -- uid: 2168 - type: WallReinforced - components: - - pos: 76.5,-55.5 - parent: 8364 - type: Transform -- uid: 2169 - type: WallReinforced - components: - - pos: 75.5,-55.5 - parent: 8364 - type: Transform -- uid: 2170 - type: MachineAPE - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-57.5 - parent: 8364 - type: Transform -- uid: 2171 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 72.5,-55.5 - parent: 8364 - type: Transform -- uid: 2172 - type: AnomalyScanner - components: - - pos: 73.60628,-49.3431 - parent: 8364 - type: Transform -- uid: 2173 - type: WallReinforced - components: - - pos: 80.5,-48.5 - parent: 8364 - type: Transform -- uid: 2174 - type: WallReinforced - components: - - pos: 79.5,-48.5 - parent: 8364 - type: Transform -- uid: 2175 - type: WallReinforced - components: - - pos: 78.5,-48.5 - parent: 8364 - type: Transform -- uid: 2176 - type: ReinforcedWindow - components: - - pos: 77.5,-48.5 - parent: 8364 - type: Transform -- uid: 2177 - type: ReinforcedWindow - components: - - pos: 75.5,-48.5 - parent: 8364 - type: Transform -- uid: 2178 - type: WallReinforced - components: - - pos: 74.5,-48.5 - parent: 8364 - type: Transform -- uid: 2179 - type: WallReinforced - components: - - pos: 73.5,-48.5 - parent: 8364 - type: Transform -- uid: 2180 - type: ReinforcedWindow - components: - - pos: 72.5,-48.5 - parent: 8364 - type: Transform -- uid: 2181 - type: ReinforcedWindow - components: - - pos: 71.5,-48.5 - parent: 8364 - type: Transform -- uid: 2182 - type: ReinforcedWindow - components: - - pos: 70.5,-48.5 - parent: 8364 - type: Transform -- uid: 2183 - type: WallReinforced - components: - - pos: 69.5,-48.5 - parent: 8364 - type: Transform -- uid: 2184 - type: WallReinforced - components: - - pos: 75.5,-56.5 - parent: 8364 - type: Transform -- uid: 2185 - type: WallReinforced - components: - - pos: 75.5,-57.5 - parent: 8364 - type: Transform -- uid: 2186 - type: WallReinforced - components: - - pos: 75.5,-58.5 - parent: 8364 - type: Transform -- uid: 2187 - type: WallReinforced - components: - - pos: 74.5,-58.5 - parent: 8364 - type: Transform -- uid: 2188 - type: WallReinforced - components: - - pos: 73.5,-58.5 - parent: 8364 - type: Transform -- uid: 2189 - type: WallReinforced - components: - - pos: 72.5,-58.5 - parent: 8364 - type: Transform -- uid: 2190 - type: WallReinforced - components: - - pos: 71.5,-58.5 - parent: 8364 - type: Transform -- uid: 2191 - type: WallReinforced - components: - - pos: 71.5,-57.5 - parent: 8364 - type: Transform -- uid: 2192 - type: WallReinforced - components: - - pos: 71.5,-56.5 - parent: 8364 - type: Transform -- uid: 2193 - type: WallReinforced - components: - - pos: 71.5,-55.5 - parent: 8364 - type: Transform -- uid: 2194 - type: WallReinforced - components: - - pos: 70.5,-54.5 - parent: 8364 - type: Transform -- uid: 2195 - type: WallReinforced - components: - - pos: 69.5,-54.5 - parent: 8364 - type: Transform -- uid: 2196 - type: WallReinforced - components: - - pos: 68.5,-54.5 - parent: 8364 - type: Transform -- uid: 2197 - type: WallReinforced - components: - - pos: 67.5,-54.5 - parent: 8364 - type: Transform -- uid: 2198 - type: WallReinforced - components: - - pos: 66.5,21.5 - parent: 8364 - type: Transform -- uid: 2199 - type: WallReinforced - components: - - pos: 68.5,20.5 - parent: 8364 - type: Transform -- uid: 2200 - type: WallSolid - components: - - pos: 33.5,-22.5 - parent: 8364 - type: Transform -- uid: 2201 - type: AirlockMedicalGlassLocked - components: - - pos: 34.5,-21.5 - parent: 8364 - type: Transform -- uid: 2202 - type: Chair - components: - - pos: 32.5,-16.5 - parent: 8364 - type: Transform -- uid: 2203 - type: Chair - components: - - pos: 29.5,-16.5 - parent: 8364 - type: Transform -- uid: 2204 - type: WallSolid - components: - - pos: 24.5,-21.5 - parent: 8364 - type: Transform -- uid: 2205 - type: TableReinforced - components: - - pos: 29.5,-19.5 - parent: 8364 - type: Transform -- uid: 2206 - type: Grille - components: - - pos: 31.5,-15.5 - parent: 8364 - type: Transform -- uid: 2207 - type: TableReinforced - components: - - pos: 27.5,-20.5 - parent: 8364 - type: Transform -- uid: 2208 - type: TableReinforced - components: - - pos: 23.5,-19.5 - parent: 8364 - type: Transform -- uid: 2209 - type: ReinforcedWindow - components: - - pos: 23.5,-18.5 - parent: 8364 - type: Transform -- uid: 2210 - type: Grille - components: - - pos: 23.5,-18.5 - parent: 8364 - type: Transform -- uid: 2211 - type: Grille - components: - - pos: 38.5,-38.5 - parent: 8364 - type: Transform -- uid: 2212 - type: Grille - components: - - pos: 38.5,-45.5 - parent: 8364 - type: Transform -- uid: 2213 - type: AirlockMedicalGlassLocked - components: - - name: Medical Storage - type: MetaData - - pos: 38.5,-39.5 - parent: 8364 - type: Transform -- uid: 2214 - type: WallReinforced - components: - - pos: 42.5,-47.5 - parent: 8364 - type: Transform -- uid: 2215 - type: WallReinforced - components: - - pos: 43.5,-48.5 - parent: 8364 - type: Transform -- uid: 2216 - type: WallReinforced - components: - - pos: 45.5,-48.5 - parent: 8364 - type: Transform -- uid: 2217 - type: WallReinforced - components: - - pos: 47.5,-48.5 - parent: 8364 - type: Transform -- uid: 2218 - type: WallReinforced - components: - - pos: 42.5,-41.5 - parent: 8364 - type: Transform -- uid: 2219 - type: WallReinforced - components: - - pos: 45.5,-37.5 - parent: 8364 - type: Transform -- uid: 2220 - type: WallReinforced - components: - - pos: 47.5,-46.5 - parent: 8364 - type: Transform -- uid: 2221 - type: WallReinforced - components: - - pos: 47.5,-47.5 - parent: 8364 - type: Transform -- uid: 2222 - type: WallSolid - components: - - pos: 33.5,-38.5 - parent: 8364 - type: Transform -- uid: 2223 - type: WallReinforced - components: - - pos: 46.5,-37.5 - parent: 8364 - type: Transform -- uid: 2224 - type: Window - components: - - pos: 29.5,-15.5 - parent: 8364 - type: Transform -- uid: 2225 - type: WallReinforced - components: - - pos: 66.5,20.5 - parent: 8364 - type: Transform -- uid: 2226 - type: Paper - components: - - pos: 28.426676,-19.487911 - parent: 8364 - type: Transform -- uid: 2227 - type: WallReinforced - components: - - pos: 67.5,20.5 - parent: 8364 - type: Transform -- uid: 2228 - type: LampGold - components: - - pos: 27.55192,-19.472286 - parent: 8364 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 2229 - type: TableReinforced - components: - - pos: 33.5,-19.5 - parent: 8364 - type: Transform -- uid: 2230 - type: Grille - components: - - pos: 43.5,-54.5 - parent: 8364 - type: Transform -- uid: 2231 - type: Grille - components: - - pos: 44.5,-54.5 - parent: 8364 - type: Transform -- uid: 2232 - type: Grille - components: - - pos: 46.5,-54.5 - parent: 8364 - type: Transform -- uid: 2233 - type: Grille - components: - - pos: 47.5,-54.5 - parent: 8364 - type: Transform -- uid: 2234 - type: Grille - components: - - pos: 46.5,-57.5 - parent: 8364 - type: Transform -- uid: 2235 - type: Grille - components: - - pos: 45.5,-57.5 - parent: 8364 - type: Transform -- uid: 2236 - type: Grille - components: - - pos: 44.5,-57.5 - parent: 8364 - type: Transform -- uid: 2237 - type: Grille - components: - - pos: 45.5,-58.5 - parent: 8364 - type: Transform -- uid: 2238 - type: Grille - components: - - pos: 45.5,-59.5 - parent: 8364 - type: Transform -- uid: 2239 - type: Grille - components: - - pos: 45.5,-60.5 - parent: 8364 - type: Transform -- uid: 2240 - type: Grille - components: - - pos: 42.5,-57.5 - parent: 8364 - type: Transform -- uid: 2241 - type: Grille - components: - - pos: 42.5,-58.5 - parent: 8364 - type: Transform -- uid: 2242 - type: Grille - components: - - pos: 42.5,-59.5 - parent: 8364 - type: Transform -- uid: 2243 - type: Grille - components: - - pos: 42.5,-60.5 - parent: 8364 - type: Transform -- uid: 2244 - type: Grille - components: - - pos: 52.5,-58.5 - parent: 8364 - type: Transform -- uid: 2245 - type: Grille - components: - - pos: 53.5,-58.5 - parent: 8364 - type: Transform -- uid: 2246 - type: Grille - components: - - pos: 56.5,-58.5 - parent: 8364 - type: Transform -- uid: 2247 - type: Grille - components: - - pos: 57.5,-58.5 - parent: 8364 - type: Transform -- uid: 2248 - type: Grille - components: - - pos: 58.5,-58.5 - parent: 8364 - type: Transform -- uid: 2249 - type: SheetSteel - components: - - pos: 60.60743,-43.443428 - parent: 8364 - type: Transform -- uid: 2250 - type: Window - components: - - pos: 52.5,-38.5 - parent: 8364 - type: Transform -- uid: 2251 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-45.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 2252 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 56.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2253 - type: FirelockGlass - components: - - pos: 56.5,-42.5 - parent: 8364 - type: Transform -- uid: 2254 - type: FirelockGlass - components: - - pos: 58.5,-42.5 - parent: 8364 - type: Transform -- uid: 2255 - type: FirelockGlass - components: - - pos: 57.5,-54.5 - parent: 8364 - type: Transform -- uid: 2256 - type: FirelockGlass - components: - - pos: 64.5,-56.5 - parent: 8364 - type: Transform -- uid: 2257 - type: StorageCanister - components: - - pos: 63.5,-55.5 - parent: 8364 - type: Transform -- uid: 2258 - type: Table - components: - - pos: 58.5,-55.5 - parent: 8364 - type: Transform -- uid: 2259 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-51.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2260 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 2261 - type: ClosetEmergencyFilledRandom - components: - - pos: 52.5,-55.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2262 - type: WallSolid - components: - - pos: 53.5,-38.5 - parent: 8364 - type: Transform -- uid: 2263 - type: StorageCanister - components: - - pos: 52.5,-57.5 - parent: 8364 - type: Transform -- uid: 2264 - type: CableApcExtension - components: - - pos: 53.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2265 - type: AirlockScienceGlassLocked - components: - - name: Atmos Sci Test Lab - type: MetaData - - pos: 56.5,-42.5 - parent: 8364 - type: Transform -- uid: 2266 - type: CableApcExtension - components: - - pos: 59.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2267 - type: CableApcExtension - components: - - pos: 56.5,-44.5 - parent: 8364 - type: Transform -- uid: 2268 - type: WallReinforced - components: - - pos: 54.5,-42.5 - parent: 8364 - type: Transform -- uid: 2269 - type: CableApcExtension - components: - - pos: 63.5,-56.5 - parent: 8364 - type: Transform -- uid: 2270 - type: CableApcExtension - components: - - pos: 62.5,-56.5 - parent: 8364 - type: Transform -- uid: 2271 - type: CableApcExtension - components: - - pos: 61.5,-56.5 - parent: 8364 - type: Transform -- uid: 2272 - type: CableApcExtension - components: - - pos: 60.5,-56.5 - parent: 8364 - type: Transform -- uid: 2273 - type: CableApcExtension - components: - - pos: 59.5,-56.5 - parent: 8364 - type: Transform -- uid: 2274 - type: CableApcExtension - components: - - pos: 54.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2275 - type: Grille - components: - - pos: 62.5,-58.5 - parent: 8364 - type: Transform -- uid: 2276 - type: WallReinforced - components: - - pos: 52.5,-52.5 - parent: 8364 - type: Transform -- uid: 2277 - type: ReinforcedPlasmaWindow - components: - - pos: 52.5,-50.5 - parent: 8364 - type: Transform -- uid: 2278 - type: ReinforcedWindow - components: - - pos: 53.5,-47.5 - parent: 8364 - type: Transform -- uid: 2279 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2280 - type: WallReinforced - components: - - pos: 54.5,-49.5 - parent: 8364 - type: Transform -- uid: 2281 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 61.5,-53.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 2282 - type: Grille - components: - - pos: 52.5,-47.5 - parent: 8364 - type: Transform -- uid: 2283 - type: Grille - components: - - pos: 52.5,-51.5 - parent: 8364 - type: Transform -- uid: 2284 - type: ReinforcedPlasmaWindow - components: - - pos: 54.5,-51.5 - parent: 8364 - type: Transform -- uid: 2285 - type: Grille - components: - - pos: 53.5,-47.5 - parent: 8364 - type: Transform -- uid: 2286 - type: Grille - components: - - pos: 56.5,-51.5 - parent: 8364 - type: Transform -- uid: 2287 - type: ReinforcedWindow - components: - - pos: 54.5,-47.5 - parent: 8364 - type: Transform -- uid: 2288 - type: ReinforcedWindow - components: - - pos: 56.5,-52.5 - parent: 8364 - type: Transform -- uid: 2289 - type: CableApcExtension - components: - - pos: 58.5,-44.5 - parent: 8364 - type: Transform -- uid: 2290 - type: CableApcExtension - components: - - pos: 58.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2291 - type: WallReinforced - components: - - pos: 64.5,-49.5 - parent: 8364 - type: Transform -- uid: 2292 - type: WallReinforced - components: - - pos: 64.5,-48.5 - parent: 8364 - type: Transform -- uid: 2293 - type: AirlockScienceGlassLocked - components: - - name: Testing Lab - type: MetaData - - pos: 66.5,-49.5 - parent: 8364 - type: Transform -- uid: 2294 - type: MachineAPE - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-56.5 - parent: 8364 - type: Transform -- uid: 2295 - type: WallReinforced - components: - - pos: 64.5,-47.5 - parent: 8364 - type: Transform -- uid: 2296 - type: WallReinforced - components: - - pos: 64.5,-46.5 - parent: 8364 - type: Transform -- uid: 2297 - type: WallReinforced - components: - - pos: 64.5,-45.5 - parent: 8364 - type: Transform -- uid: 2298 - type: WallReinforced - components: - - pos: 64.5,-44.5 - parent: 8364 - type: Transform -- uid: 2299 - type: WallReinforced - components: - - pos: 64.5,-43.5 - parent: 8364 - type: Transform -- uid: 2300 - type: WallReinforced - components: - - pos: 64.5,-42.5 - parent: 8364 - type: Transform -- uid: 2301 - type: WallReinforced - components: - - pos: 58.5,-38.5 - parent: 8364 - type: Transform -- uid: 2302 - type: WallReinforced - components: - - pos: 58.5,-37.5 - parent: 8364 - type: Transform -- uid: 2303 - type: AsteroidRock - components: - - pos: 55.5,-78.5 - parent: 8364 - type: Transform -- uid: 2304 - type: WallShuttle - components: - - pos: 70.5,-76.5 - parent: 8364 - type: Transform -- uid: 2305 - type: Grille - components: - - pos: 64.5,-41.5 - parent: 8364 - type: Transform -- uid: 2306 - type: Grille - components: - - pos: 65.5,-49.5 - parent: 8364 - type: Transform -- uid: 2307 - type: Grille - components: - - pos: 67.5,-49.5 - parent: 8364 - type: Transform -- uid: 2308 - type: WallSolid - components: - - pos: 68.5,-49.5 - parent: 8364 - type: Transform -- uid: 2309 - type: WallSolid - components: - - pos: 68.5,-48.5 - parent: 8364 - type: Transform -- uid: 2310 - type: WallSolid - components: - - pos: 71.5,-54.5 - parent: 8364 - type: Transform -- uid: 2311 - type: WallSolid - components: - - pos: 71.5,-53.5 - parent: 8364 - type: Transform -- uid: 2312 - type: WallSolid - components: - - pos: 67.5,-55.5 - parent: 8364 - type: Transform -- uid: 2313 - type: WallSolid - components: - - pos: 67.5,-57.5 - parent: 8364 - type: Transform -- uid: 2314 - type: Grille - components: - - pos: 72.5,-48.5 - parent: 8364 - type: Transform -- uid: 2315 - type: Grille - components: - - pos: 70.5,-48.5 - parent: 8364 - type: Transform -- uid: 2316 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-50.5 - parent: 8364 - type: Transform -- uid: 2317 - type: WindoorScienceLocked - components: - - rot: 3.141592653589793 rad - pos: 73.5,-55.5 - parent: 8364 - type: Transform -- uid: 2318 - type: WallSolid - components: - - pos: 69.5,-47.5 - parent: 8364 - type: Transform -- uid: 2319 - type: WallSolid - components: - - pos: 69.5,-43.5 - parent: 8364 - type: Transform -- uid: 2320 - type: WallReinforced - components: - - pos: 71.5,14.5 - parent: 8364 - type: Transform -- uid: 2321 - type: WallReinforced - components: - - pos: 71.5,13.5 - parent: 8364 - type: Transform -- uid: 2322 - type: Grille - components: - - pos: 69.5,-44.5 - parent: 8364 - type: Transform -- uid: 2323 - type: Grille - components: - - pos: 69.5,-46.5 - parent: 8364 - type: Transform -- uid: 2324 - type: WallReinforced - components: - - pos: 70.5,-42.5 - parent: 8364 - type: Transform -- uid: 2325 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-42.5 - parent: 8364 - type: Transform -- uid: 2326 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-42.5 - parent: 8364 - type: Transform -- uid: 2327 - type: WallReinforced - components: - - pos: 73.5,-42.5 - parent: 8364 - type: Transform -- uid: 2328 - type: WallReinforced - components: - - pos: 74.5,-42.5 - parent: 8364 - type: Transform -- uid: 2329 - type: WallReinforced - components: - - pos: 75.5,-42.5 - parent: 8364 - type: Transform -- uid: 2330 - type: WallReinforced - components: - - pos: 75.5,-41.5 - parent: 8364 - type: Transform -- uid: 2331 - type: WallReinforced - components: - - pos: 73.5,-41.5 - parent: 8364 - type: Transform -- uid: 2332 - type: WallReinforced - components: - - pos: 73.5,-39.5 - parent: 8364 - type: Transform -- uid: 2333 - type: WallReinforced - components: - - pos: 75.5,-39.5 - parent: 8364 - type: Transform -- uid: 2334 - type: WallReinforced - components: - - pos: 75.5,-38.5 - parent: 8364 - type: Transform -- uid: 2335 - type: WallReinforced - components: - - pos: 74.5,-38.5 - parent: 8364 - type: Transform -- uid: 2336 - type: WallReinforced - components: - - pos: 73.5,-38.5 - parent: 8364 - type: Transform -- uid: 2337 - type: WallReinforced - components: - - pos: 72.5,-38.5 - parent: 8364 - type: Transform -- uid: 2338 - type: WallReinforced - components: - - pos: 71.5,-38.5 - parent: 8364 - type: Transform -- uid: 2339 - type: WallReinforced - components: - - pos: 70.5,-38.5 - parent: 8364 - type: Transform -- uid: 2340 - type: WallSolidRust - components: - - pos: 63.5,16.5 - parent: 8364 - type: Transform -- uid: 2341 - type: WallReinforced - components: - - pos: 71.5,15.5 - parent: 8364 - type: Transform -- uid: 2342 - type: Grille - components: - - pos: 68.5,-39.5 - parent: 8364 - type: Transform -- uid: 2343 - type: Grille - components: - - pos: 68.5,-40.5 - parent: 8364 - type: Transform -- uid: 2344 - type: Grille - components: - - pos: 68.5,-41.5 - parent: 8364 - type: Transform -- uid: 2345 - type: WallSolid - components: - - pos: 68.5,-37.5 - parent: 8364 - type: Transform -- uid: 2346 - type: WallSolid - components: - - pos: 75.5,-36.5 - parent: 8364 - type: Transform -- uid: 2347 - type: WallSolid - components: - - pos: 75.5,-37.5 - parent: 8364 - type: Transform -- uid: 2348 - type: WallSolid - components: - - pos: 75.5,-35.5 - parent: 8364 - type: Transform -- uid: 2349 - type: WallSolid - components: - - pos: 75.5,-34.5 - parent: 8364 - type: Transform -- uid: 2350 - type: WallSolid - components: - - pos: 75.5,-33.5 - parent: 8364 - type: Transform -- uid: 2351 - type: WallSolid - components: - - pos: 74.5,-32.5 - parent: 8364 - type: Transform -- uid: 2352 - type: WallSolid - components: - - pos: 73.5,-32.5 - parent: 8364 - type: Transform -- uid: 2353 - type: WallSolid - components: - - pos: 72.5,-32.5 - parent: 8364 - type: Transform -- uid: 2354 - type: WallSolid - components: - - pos: 71.5,-32.5 - parent: 8364 - type: Transform -- uid: 2355 - type: WallSolid - components: - - pos: 70.5,-32.5 - parent: 8364 - type: Transform -- uid: 2356 - type: WallSolid - components: - - pos: 69.5,-32.5 - parent: 8364 - type: Transform -- uid: 2357 - type: WallSolid - components: - - pos: 68.5,-32.5 - parent: 8364 - type: Transform -- uid: 2358 - type: Grille - components: - - pos: 68.5,-33.5 - parent: 8364 - type: Transform -- uid: 2359 - type: Grille - components: - - pos: 68.5,-34.5 - parent: 8364 - type: Transform -- uid: 2360 - type: Grille - components: - - pos: 68.5,-35.5 - parent: 8364 - type: Transform -- uid: 2361 - type: WallSolid - components: - - pos: 68.5,-31.5 - parent: 8364 - type: Transform -- uid: 2362 - type: Grille - components: - - pos: 68.5,-30.5 - parent: 8364 - type: Transform -- uid: 2363 - type: Grille - components: - - pos: 68.5,-29.5 - parent: 8364 - type: Transform -- uid: 2364 - type: Grille - components: - - pos: 68.5,-28.5 - parent: 8364 - type: Transform -- uid: 2365 - type: WallSolid - components: - - pos: 68.5,-27.5 - parent: 8364 - type: Transform -- uid: 2366 - type: WallSolid - components: - - pos: 68.5,-26.5 - parent: 8364 - type: Transform -- uid: 2367 - type: WallSolid - components: - - pos: 68.5,-25.5 - parent: 8364 - type: Transform -- uid: 2368 - type: WallReinforced - components: - - pos: 75.5,-25.5 - parent: 8364 - type: Transform -- uid: 2369 - type: WallReinforced - components: - - pos: 75.5,-26.5 - parent: 8364 - type: Transform -- uid: 2370 - type: WallSolid - components: - - pos: 78.5,-26.5 - parent: 8364 - type: Transform -- uid: 2371 - type: WallSolid - components: - - pos: 81.5,-26.5 - parent: 8364 - type: Transform -- uid: 2372 - type: Grille - components: - - pos: 80.5,-27.5 - parent: 8364 - type: Transform -- uid: 2373 - type: Grille - components: - - pos: 79.5,-27.5 - parent: 8364 - type: Transform -- uid: 2374 - type: Grille - components: - - pos: 77.5,-27.5 - parent: 8364 - type: Transform -- uid: 2375 - type: Grille - components: - - pos: 76.5,-27.5 - parent: 8364 - type: Transform -- uid: 2376 - type: Grille - components: - - pos: 75.5,-24.5 - parent: 8364 - type: Transform -- uid: 2377 - type: WallSolid - components: - - pos: 64.5,-36.5 - parent: 8364 - type: Transform -- uid: 2378 - type: WallSolid - components: - - pos: 64.5,-37.5 - parent: 8364 - type: Transform -- uid: 2379 - type: WallSolid - components: - - pos: 64.5,-38.5 - parent: 8364 - type: Transform -- uid: 2380 - type: AirlockScienceGlassLocked - components: - - pos: 64.5,-35.5 - parent: 8364 - type: Transform -- uid: 2381 - type: WallSolid - components: - - pos: 62.5,-38.5 - parent: 8364 - type: Transform -- uid: 2382 - type: WallSolid - components: - - pos: 61.5,-38.5 - parent: 8364 - type: Transform -- uid: 2383 - type: WallSolid - components: - - pos: 60.5,-38.5 - parent: 8364 - type: Transform -- uid: 2384 - type: WallSolid - components: - - pos: 59.5,-38.5 - parent: 8364 - type: Transform -- uid: 2385 - type: Poweredlight - components: - - pos: 56.5,-33.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2386 - type: PosterLegitWorkForAFuture - components: - - pos: 54.5,-32.5 - parent: 8364 - type: Transform -- uid: 2387 - type: WallReinforced - components: - - pos: 59.5,-54.5 - parent: 8364 - type: Transform -- uid: 2388 - type: WallReinforced - components: - - pos: 60.5,-54.5 - parent: 8364 - type: Transform -- uid: 2389 - type: Rack - components: - - pos: 59.5,-55.5 - parent: 8364 - type: Transform -- uid: 2390 - type: BedsheetMedical - components: - - pos: 26.5,-36.5 - parent: 8364 - type: Transform -- uid: 2391 - type: Grille - components: - - pos: 64.5,-39.5 - parent: 8364 - type: Transform -- uid: 2392 - type: WallSolid - components: - - pos: 64.5,-34.5 - parent: 8364 - type: Transform -- uid: 2393 - type: WallSolid - components: - - pos: 64.5,-33.5 - parent: 8364 - type: Transform -- uid: 2394 - type: WallSolid - components: - - pos: 64.5,-32.5 - parent: 8364 - type: Transform -- uid: 2395 - type: WallSolid - components: - - pos: 63.5,-32.5 - parent: 8364 - type: Transform -- uid: 2396 - type: WallSolid - components: - - pos: 62.5,-32.5 - parent: 8364 - type: Transform -- uid: 2397 - type: WallSolid - components: - - pos: 61.5,-32.5 - parent: 8364 - type: Transform -- uid: 2398 - type: WallSolid - components: - - pos: 60.5,-32.5 - parent: 8364 - type: Transform -- uid: 2399 - type: WallSolid - components: - - pos: 59.5,-32.5 - parent: 8364 - type: Transform -- uid: 2400 - type: Grille - components: - - pos: 64.5,-31.5 - parent: 8364 - type: Transform -- uid: 2401 - type: Grille - components: - - pos: 64.5,-30.5 - parent: 8364 - type: Transform -- uid: 2402 - type: Grille - components: - - pos: 64.5,-29.5 - parent: 8364 - type: Transform -- uid: 2403 - type: Grille - components: - - pos: 64.5,-28.5 - parent: 8364 - type: Transform -- uid: 2404 - type: Grille - components: - - pos: 63.5,-28.5 - parent: 8364 - type: Transform -- uid: 2405 - type: Grille - components: - - pos: 62.5,-28.5 - parent: 8364 - type: Transform -- uid: 2406 - type: WallSolid - components: - - pos: 60.5,-28.5 - parent: 8364 - type: Transform -- uid: 2407 - type: WallSolid - components: - - pos: 59.5,-28.5 - parent: 8364 - type: Transform -- uid: 2408 - type: WallReinforced - components: - - pos: 71.5,16.5 - parent: 8364 - type: Transform -- uid: 2409 - type: WallSolid - components: - - pos: 86.5,-39.5 - parent: 8364 - type: Transform -- uid: 2410 - type: WallSolid - components: - - pos: 85.5,-39.5 - parent: 8364 - type: Transform -- uid: 2411 - type: WallSolid - components: - - pos: 84.5,-39.5 - parent: 8364 - type: Transform -- uid: 2412 - type: WallSolid - components: - - pos: 83.5,-39.5 - parent: 8364 - type: Transform -- uid: 2413 - type: WallSolid - components: - - pos: 83.5,-38.5 - parent: 8364 - type: Transform -- uid: 2414 - type: WallSolid - components: - - pos: 83.5,-37.5 - parent: 8364 - type: Transform -- uid: 2415 - type: WallSolid - components: - - pos: 82.5,-38.5 - parent: 8364 - type: Transform -- uid: 2416 - type: WallSolid - components: - - pos: 83.5,-35.5 - parent: 8364 - type: Transform -- uid: 2417 - type: WallSolid - components: - - pos: 80.5,-38.5 - parent: 8364 - type: Transform -- uid: 2418 - type: WallSolid - components: - - pos: 83.5,-34.5 - parent: 8364 - type: Transform -- uid: 2419 - type: WallSolid - components: - - pos: 82.5,-34.5 - parent: 8364 - type: Transform -- uid: 2420 - type: WallSolid - components: - - pos: 80.5,-34.5 - parent: 8364 - type: Transform -- uid: 2421 - type: WallSolid - components: - - pos: 85.5,-34.5 - parent: 8364 - type: Transform -- uid: 2422 - type: WallSolid - components: - - pos: 84.5,-34.5 - parent: 8364 - type: Transform -- uid: 2423 - type: WallReinforced - components: - - pos: 71.5,17.5 - parent: 8364 - type: Transform -- uid: 2424 - type: WallSolid - components: - - pos: 86.5,-33.5 - parent: 8364 - type: Transform -- uid: 2425 - type: WallSolid - components: - - pos: 85.5,-33.5 - parent: 8364 - type: Transform -- uid: 2426 - type: WallReinforced - components: - - pos: 71.5,18.5 - parent: 8364 - type: Transform -- uid: 2427 - type: WallReinforced - components: - - pos: 71.5,19.5 - parent: 8364 - type: Transform -- uid: 2428 - type: WallReinforced - components: - - pos: 71.5,20.5 - parent: 8364 - type: Transform -- uid: 2429 - type: WallReinforced - components: - - pos: 70.5,20.5 - parent: 8364 - type: Transform -- uid: 2430 - type: WallReinforced - components: - - pos: 69.5,20.5 - parent: 8364 - type: Transform -- uid: 2431 - type: WallSolid - components: - - pos: 87.5,-31.5 - parent: 8364 - type: Transform -- uid: 2432 - type: WallSolid - components: - - pos: 87.5,-30.5 - parent: 8364 - type: Transform -- uid: 2433 - type: WallSolid - components: - - pos: 86.5,-30.5 - parent: 8364 - type: Transform -- uid: 2434 - type: WallSolid - components: - - pos: 84.5,-30.5 - parent: 8364 - type: Transform -- uid: 2435 - type: WallReinforced - components: - - pos: 72.5,13.5 - parent: 8364 - type: Transform -- uid: 2436 - type: WallSolid - components: - - pos: 87.5,-27.5 - parent: 8364 - type: Transform -- uid: 2437 - type: WallSolid - components: - - pos: 87.5,-26.5 - parent: 8364 - type: Transform -- uid: 2438 - type: WallSolid - components: - - pos: 87.5,-25.5 - parent: 8364 - type: Transform -- uid: 2439 - type: WallReinforced - components: - - pos: 73.5,13.5 - parent: 8364 - type: Transform -- uid: 2440 - type: Grille - components: - - pos: 92.5,-23.5 - parent: 8364 - type: Transform -- uid: 2441 - type: Grille - components: - - pos: 92.5,-22.5 - parent: 8364 - type: Transform -- uid: 2442 - type: Grille - components: - - pos: 91.5,-22.5 - parent: 8364 - type: Transform -- uid: 2443 - type: Grille - components: - - pos: 90.5,-22.5 - parent: 8364 - type: Transform -- uid: 2444 - type: Grille - components: - - pos: 89.5,-22.5 - parent: 8364 - type: Transform -- uid: 2445 - type: Grille - components: - - pos: 88.5,-22.5 - parent: 8364 - type: Transform -- uid: 2446 - type: WallReinforced - components: - - pos: 76.5,13.5 - parent: 8364 - type: Transform -- uid: 2447 - type: WallReinforced - components: - - pos: 74.5,13.5 - parent: 8364 - type: Transform -- uid: 2448 - type: WallReinforced - components: - - pos: 75.5,13.5 - parent: 8364 - type: Transform -- uid: 2449 - type: WallReinforced - components: - - pos: 76.5,12.5 - parent: 8364 - type: Transform -- uid: 2450 - type: WallReinforced - components: - - pos: 76.5,11.5 - parent: 8364 - type: Transform -- uid: 2451 - type: WallReinforced - components: - - pos: 76.5,10.5 - parent: 8364 - type: Transform -- uid: 2452 - type: WallReinforced - components: - - pos: 76.5,9.5 - parent: 8364 - type: Transform -- uid: 2453 - type: Grille - components: - - pos: 71.5,-16.5 - parent: 8364 - type: Transform -- uid: 2454 - type: WallSolid - components: - - pos: 68.5,-21.5 - parent: 8364 - type: Transform -- uid: 2455 - type: WallSolid - components: - - pos: 64.5,-21.5 - parent: 8364 - type: Transform -- uid: 2456 - type: Grille - components: - - pos: 64.5,-22.5 - parent: 8364 - type: Transform -- uid: 2457 - type: WallSolid - components: - - pos: 64.5,-24.5 - parent: 8364 - type: Transform -- uid: 2458 - type: WallSolid - components: - - pos: 64.5,-25.5 - parent: 8364 - type: Transform -- uid: 2459 - type: Grille - components: - - pos: 63.5,-25.5 - parent: 8364 - type: Transform -- uid: 2460 - type: Grille - components: - - pos: 61.5,-25.5 - parent: 8364 - type: Transform -- uid: 2461 - type: WallSolid - components: - - pos: 60.5,-25.5 - parent: 8364 - type: Transform -- uid: 2462 - type: WallSolid - components: - - pos: 59.5,-25.5 - parent: 8364 - type: Transform -- uid: 2463 - type: WallSolid - components: - - pos: 58.5,-25.5 - parent: 8364 - type: Transform -- uid: 2464 - type: WallSolid - components: - - pos: 57.5,-25.5 - parent: 8364 - type: Transform -- uid: 2465 - type: WallSolid - components: - - pos: 56.5,-25.5 - parent: 8364 - type: Transform -- uid: 2466 - type: WallSolid - components: - - pos: 55.5,-25.5 - parent: 8364 - type: Transform -- uid: 2467 - type: WallSolid - components: - - pos: 54.5,-25.5 - parent: 8364 - type: Transform -- uid: 2468 - type: AirlockMedicalScienceGlassLocked - components: - - pos: 51.5,-27.5 - parent: 8364 - type: Transform -- uid: 2469 - type: WallSolid - components: - - pos: 52.5,-25.5 - parent: 8364 - type: Transform -- uid: 2470 - type: WallSolid - components: - - pos: 56.5,-20.5 - parent: 8364 - type: Transform -- uid: 2471 - type: WallSolid - components: - - pos: 56.5,-21.5 - parent: 8364 - type: Transform -- uid: 2472 - type: WallSolid - components: - - pos: 55.5,-21.5 - parent: 8364 - type: Transform -- uid: 2473 - type: WallSolid - components: - - pos: 54.5,-21.5 - parent: 8364 - type: Transform -- uid: 2474 - type: WallSolid - components: - - pos: 53.5,-21.5 - parent: 8364 - type: Transform -- uid: 2475 - type: WallSolid - components: - - pos: 52.5,-21.5 - parent: 8364 - type: Transform -- uid: 2476 - type: WallSolid - components: - - pos: 51.5,-21.5 - parent: 8364 - type: Transform -- uid: 2477 - type: WallSolid - components: - - pos: 50.5,-20.5 - parent: 8364 - type: Transform -- uid: 2478 - type: WallSolid - components: - - pos: 50.5,-19.5 - parent: 8364 - type: Transform -- uid: 2479 - type: WallSolid - components: - - pos: 50.5,-18.5 - parent: 8364 - type: Transform -- uid: 2480 - type: WallSolid - components: - - pos: 50.5,-17.5 - parent: 8364 - type: Transform -- uid: 2481 - type: WallSolid - components: - - pos: 56.5,-16.5 - parent: 8364 - type: Transform -- uid: 2482 - type: AirlockScienceGlassLocked - components: - - pos: 56.5,-18.5 - parent: 8364 - type: Transform -- uid: 2483 - type: AirlockScienceGlassLocked - components: - - pos: 56.5,-17.5 - parent: 8364 - type: Transform -- uid: 2484 - type: Grille - components: - - pos: 63.5,-16.5 - parent: 8364 - type: Transform -- uid: 2485 - type: Grille - components: - - pos: 61.5,-16.5 - parent: 8364 - type: Transform -- uid: 2486 - type: Grille - components: - - pos: 54.5,-29.5 - parent: 8364 - type: Transform -- uid: 2487 - type: Grille - components: - - pos: 54.5,-31.5 - parent: 8364 - type: Transform -- uid: 2488 - type: WallSolid - components: - - pos: 17.5,-36.5 - parent: 8364 - type: Transform -- uid: 2489 - type: WallReinforced - components: - - pos: 76.5,8.5 - parent: 8364 - type: Transform -- uid: 2490 - type: Window - components: - - pos: 24.5,-26.5 - parent: 8364 - type: Transform -- uid: 2491 - type: Window - components: - - pos: 26.5,-31.5 - parent: 8364 - type: Transform -- uid: 2492 - type: WallReinforced - components: - - pos: 76.5,7.5 - parent: 8364 - type: Transform -- uid: 2493 - type: ReinforcedWindow - components: - - pos: 37.5,-20.5 - parent: 8364 - type: Transform -- uid: 2494 - type: WallSolid - components: - - pos: 40.5,-20.5 - parent: 8364 - type: Transform -- uid: 2495 - type: WallSolid - components: - - pos: 40.5,-18.5 - parent: 8364 - type: Transform -- uid: 2496 - type: Chair - components: - - pos: 46.5,-23.5 - parent: 8364 - type: Transform -- uid: 2497 - type: WallSolid - components: - - pos: 48.5,-16.5 - parent: 8364 - type: Transform -- uid: 2498 - type: WallSolid - components: - - pos: 46.5,-15.5 - parent: 8364 - type: Transform -- uid: 2499 - type: WallSolid - components: - - pos: 21.5,-28.5 - parent: 8364 - type: Transform -- uid: 2500 - type: WallSolid - components: - - pos: 48.5,-19.5 - parent: 8364 - type: Transform -- uid: 2501 - type: WallSolid - components: - - pos: 47.5,-23.5 - parent: 8364 - type: Transform -- uid: 2502 - type: WallReinforced - components: - - pos: 75.5,7.5 - parent: 8364 - type: Transform -- uid: 2503 - type: PottedPlantRandom - components: - - pos: 24.5,-16.5 - parent: 8364 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2504 - type: WallSolidRust - components: - - pos: 67.5,7.5 - parent: 8364 - type: Transform -- uid: 2505 - type: AirlockMedicalGlassLocked - components: - - pos: 25.5,-21.5 - parent: 8364 - type: Transform -- uid: 2506 - type: AirlockMedicalGlassLocked - components: - - pos: 26.5,-21.5 - parent: 8364 - type: Transform -- uid: 2507 - type: Chair - components: - - pos: 31.5,-16.5 - parent: 8364 - type: Transform -- uid: 2508 - type: WallSolid - components: - - pos: 36.5,-21.5 - parent: 8364 - type: Transform -- uid: 2509 - type: Paper - components: - - pos: 28.395426,-19.503536 - parent: 8364 - type: Transform -- uid: 2510 - type: Grille - components: - - pos: 30.5,-15.5 - parent: 8364 - type: Transform -- uid: 2511 - type: DrinkGoldenCup - components: - - pos: 12.517619,-16.195152 - parent: 8364 - type: Transform -- uid: 2512 - type: TableReinforced - components: - - pos: 23.5,-17.5 - parent: 8364 - type: Transform -- uid: 2513 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,-23.5 - parent: 8364 - type: Transform -- uid: 2514 - type: TableReinforced - components: - - pos: 31.5,-19.5 - parent: 8364 - type: Transform -- uid: 2515 - type: TintedWindow - components: - - pos: 38.5,-48.5 - parent: 8364 - type: Transform -- uid: 2516 - type: CableApcExtension - components: - - pos: 39.5,-48.5 - parent: 8364 - type: Transform -- uid: 2517 - type: WallSolidRust - components: - - pos: 68.5,7.5 - parent: 8364 - type: Transform -- uid: 2518 - type: WallSolid - components: - - pos: 73.5,15.5 - parent: 8364 - type: Transform -- uid: 2519 - type: WallReinforced - components: - - pos: 75.5,6.5 - parent: 8364 - type: Transform -- uid: 2520 - type: WallSolidRust - components: - - pos: 66.5,12.5 - parent: 8364 - type: Transform -- uid: 2521 - type: SignRobo - components: - - pos: 64.5,-16.5 - parent: 8364 - type: Transform -- uid: 2522 - type: WallReinforced - components: - - pos: -74.5,-16.5 - parent: 8364 - type: Transform -- uid: 2523 - type: WallReinforced - components: - - pos: -74.5,-17.5 - parent: 8364 - type: Transform -- uid: 2524 - type: WallReinforced - components: - - pos: -69.5,-16.5 - parent: 8364 - type: Transform -- uid: 2525 - type: WallReinforced - components: - - pos: -69.5,-17.5 - parent: 8364 - type: Transform -- uid: 2526 - type: WallReinforced - components: - - pos: -56.5,-21.5 - parent: 8364 - type: Transform -- uid: 2527 - type: WallSolid - components: - - pos: 36.5,-20.5 - parent: 8364 - type: Transform -- uid: 2528 - type: WallSolid - components: - - pos: 40.5,-19.5 - parent: 8364 - type: Transform -- uid: 2529 - type: WallSolid - components: - - pos: 40.5,-17.5 - parent: 8364 - type: Transform -- uid: 2530 - type: Window - components: - - pos: 64.5,-22.5 - parent: 8364 - type: Transform -- uid: 2531 - type: Window - components: - - pos: 63.5,-25.5 - parent: 8364 - type: Transform -- uid: 2532 - type: Window - components: - - pos: 61.5,-25.5 - parent: 8364 - type: Transform -- uid: 2533 - type: Window - components: - - pos: 68.5,-28.5 - parent: 8364 - type: Transform -- uid: 2534 - type: Window - components: - - pos: 68.5,-29.5 - parent: 8364 - type: Transform -- uid: 2535 - type: Window - components: - - pos: 68.5,-30.5 - parent: 8364 - type: Transform -- uid: 2536 - type: GasPipeBend - components: - - pos: 59.5,-44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2537 - type: AtmosFixBlockerMarker - components: - - pos: 53.5,-51.5 - parent: 8364 - type: Transform -- uid: 2538 - type: Window - components: - - pos: 67.5,-49.5 - parent: 8364 - type: Transform -- uid: 2539 - type: Window - components: - - pos: 65.5,-49.5 - parent: 8364 - type: Transform -- uid: 2540 - type: WallSolid - components: - - pos: 47.5,-19.5 - parent: 8364 - type: Transform -- uid: 2541 - type: WallSolid - components: - - pos: 47.5,-15.5 - parent: 8364 - type: Transform -- uid: 2542 - type: WallSolid - components: - - pos: 45.5,-15.5 - parent: 8364 - type: Transform -- uid: 2543 - type: WallSolid - components: - - pos: 22.5,-28.5 - parent: 8364 - type: Transform -- uid: 2544 - type: WallSolid - components: - - pos: 27.5,-36.5 - parent: 8364 - type: Transform -- uid: 2545 - type: WallSolid - components: - - pos: -51.5,-3.5 - parent: 8364 - type: Transform -- uid: 2546 - type: Window - components: - - pos: 27.5,-26.5 - parent: 8364 - type: Transform -- uid: 2547 - type: Window - components: - - pos: 24.5,-31.5 - parent: 8364 - type: Transform -- uid: 2548 - type: WallSolid - components: - - pos: 18.5,-28.5 - parent: 8364 - type: Transform -- uid: 2549 - type: WallSolid - components: - - pos: 48.5,-17.5 - parent: 8364 - type: Transform -- uid: 2550 - type: ReinforcedWindow - components: - - pos: 38.5,-38.5 - parent: 8364 - type: Transform -- uid: 2551 - type: ReinforcedWindow - components: - - pos: 38.5,-40.5 - parent: 8364 - type: Transform -- uid: 2552 - type: WallReinforced - components: - - pos: 42.5,-48.5 - parent: 8364 - type: Transform -- uid: 2553 - type: WallReinforced - components: - - pos: 44.5,-48.5 - parent: 8364 - type: Transform -- uid: 2554 - type: WallReinforced - components: - - pos: 46.5,-48.5 - parent: 8364 - type: Transform -- uid: 2555 - type: WallReinforced - components: - - pos: 44.5,-41.5 - parent: 8364 - type: Transform -- uid: 2556 - type: WallReinforced - components: - - pos: 47.5,-45.5 - parent: 8364 - type: Transform -- uid: 2557 - type: WallReinforced - components: - - pos: 44.5,-37.5 - parent: 8364 - type: Transform -- uid: 2558 - type: Window - components: - - pos: 30.5,-15.5 - parent: 8364 - type: Transform -- uid: 2559 - type: WallSolidRust - components: - - pos: -54.5,-14.5 - parent: 8364 - type: Transform -- uid: 2560 - type: WindoorChemistryLocked - components: - - name: Chemistry Desk - type: MetaData - - rot: 3.141592653589793 rad - pos: 21.5,-23.5 - parent: 8364 - type: Transform -- uid: 2561 - type: Paper - components: - - pos: 28.395426,-19.487911 - parent: 8364 - type: Transform -- uid: 2562 - type: TableGlass - components: - - pos: 22.5,-18.5 - parent: 8364 - type: Transform -- uid: 2563 - type: WindoorChemistryLocked - components: - - name: Chemistry Desk - type: MetaData - - rot: -1.5707963267948966 rad - pos: 23.5,-19.5 - parent: 8364 - type: Transform -- uid: 2564 - type: AirlockMedicalScienceGlassLocked - components: - - pos: 48.5,-35.5 - parent: 8364 - type: Transform -- uid: 2565 - type: WallReinforced - components: - - pos: 43.5,-37.5 - parent: 8364 - type: Transform -- uid: 2566 - type: WallSolidRust - components: - - pos: -56.5,-16.5 - parent: 8364 - type: Transform -- uid: 2567 - type: WallSolidRust - components: - - pos: -60.5,-14.5 - parent: 8364 - type: Transform -- uid: 2568 - type: AirlockMaintJanitorLocked - components: - - pos: -50.5,-9.5 - parent: 8364 - type: Transform -- uid: 2569 - type: SignSmoking - components: - - pos: 61.5,-32.5 - parent: 8364 - type: Transform -- uid: 2570 - type: ReinforcedWindow - components: - - pos: 52.5,-58.5 - parent: 8364 - type: Transform -- uid: 2571 - type: ReinforcedWindow - components: - - pos: 53.5,-58.5 - parent: 8364 - type: Transform -- uid: 2572 - type: WallSolid - components: - - pos: 55.5,-38.5 - parent: 8364 - type: Transform -- uid: 2573 - type: ReinforcedWindow - components: - - pos: 56.5,-58.5 - parent: 8364 - type: Transform -- uid: 2574 - type: ReinforcedWindow - components: - - pos: 57.5,-58.5 - parent: 8364 - type: Transform -- uid: 2575 - type: ReinforcedWindow - components: - - pos: 58.5,-58.5 - parent: 8364 - type: Transform -- uid: 2576 - type: CableApcExtension - components: - - pos: 63.5,-44.5 - parent: 8364 - type: Transform -- uid: 2577 - type: CableApcExtension - components: - - pos: 52.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2578 - type: ReinforcedWindow - components: - - pos: 56.5,-53.5 - parent: 8364 - type: Transform -- uid: 2579 - type: ReinforcedWindow - components: - - pos: 55.5,-47.5 - parent: 8364 - type: Transform -- uid: 2580 - type: Grille - components: - - pos: 56.5,-52.5 - parent: 8364 - type: Transform -- uid: 2581 - type: Grille - components: - - pos: 54.5,-47.5 - parent: 8364 - type: Transform -- uid: 2582 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 74.5,-55.5 - parent: 8364 - type: Transform -- uid: 2583 - type: AirlockScienceGlassLocked - components: - - name: Toxins Lab - type: MetaData - - pos: 69.5,-45.5 - parent: 8364 - type: Transform -- uid: 2584 - type: PosterContrabandUnreadableAnnouncement - components: - - pos: 58.5,-34.5 - parent: 8364 - type: Transform -- uid: 2585 - type: KitchenMicrowave - components: - - pos: 52.5,-33.5 - parent: 8364 - type: Transform -- uid: 2586 - type: AsteroidRock - components: - - pos: 55.5,-79.5 - parent: 8364 - type: Transform -- uid: 2587 - type: AsteroidRockMining - components: - - pos: 55.5,-77.5 - parent: 8364 - type: Transform -- uid: 2588 - type: WallReinforced - components: - - pos: 64.5,-54.5 - parent: 8364 - type: Transform -- uid: 2589 - type: WallReinforced - components: - - pos: 65.5,-54.5 - parent: 8364 - type: Transform -- uid: 2590 - type: AnomalyScanner - components: - - pos: 73.76253,-49.43685 - parent: 8364 - type: Transform -- uid: 2591 - type: ComputerResearchAndDevelopment - components: - - rot: -1.5707963267948966 rad - pos: 80.5,-50.5 - parent: 8364 - type: Transform -- uid: 2592 - type: Grille - components: - - pos: 71.5,-48.5 - parent: 8364 - type: Transform -- uid: 2593 - type: Grille - components: - - pos: 75.5,-48.5 - parent: 8364 - type: Transform -- uid: 2594 - type: ReinforcedWindow - components: - - pos: 69.5,-44.5 - parent: 8364 - type: Transform -- uid: 2595 - type: ReinforcedWindow - components: - - pos: 69.5,-46.5 - parent: 8364 - type: Transform -- uid: 2596 - type: ReinforcedWindow - components: - - pos: 68.5,-41.5 - parent: 8364 - type: Transform -- uid: 2597 - type: ReinforcedWindow - components: - - pos: 68.5,-40.5 - parent: 8364 - type: Transform -- uid: 2598 - type: ReinforcedWindow - components: - - pos: 68.5,-39.5 - parent: 8364 - type: Transform -- uid: 2599 - type: ReinforcedWindow - components: - - pos: 68.5,-35.5 - parent: 8364 - type: Transform -- uid: 2600 - type: ReinforcedWindow - components: - - pos: 68.5,-34.5 - parent: 8364 - type: Transform -- uid: 2601 - type: ReinforcedWindow - components: - - pos: 68.5,-33.5 - parent: 8364 - type: Transform -- uid: 2602 - type: ReinforcedWindow - components: - - pos: 64.5,-31.5 - parent: 8364 - type: Transform -- uid: 2603 - type: ReinforcedWindow - components: - - pos: 64.5,-30.5 - parent: 8364 - type: Transform -- uid: 2604 - type: ReinforcedWindow - components: - - pos: 64.5,-29.5 - parent: 8364 - type: Transform -- uid: 2605 - type: ReinforcedWindow - components: - - pos: 64.5,-28.5 - parent: 8364 - type: Transform -- uid: 2606 - type: ReinforcedWindow - components: - - pos: 63.5,-28.5 - parent: 8364 - type: Transform -- uid: 2607 - type: ReinforcedWindow - components: - - pos: 62.5,-28.5 - parent: 8364 - type: Transform -- uid: 2608 - type: ReinforcedWindow - components: - - pos: 63.5,-16.5 - parent: 8364 - type: Transform -- uid: 2609 - type: ReinforcedWindow - components: - - pos: 61.5,-16.5 - parent: 8364 - type: Transform -- uid: 2610 - type: AirlockScienceGlassLocked - components: - - pos: 56.5,-19.5 - parent: 8364 - type: Transform -- uid: 2611 - type: ClosetBombFilled - components: - - pos: 74.5,-43.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2612 - type: Table - components: - - pos: -23.5,-38.5 - parent: 8364 - type: Transform -- uid: 2613 - type: CableApcExtension - components: - - pos: 55.5,-56.5 - parent: 8364 - type: Transform -- uid: 2614 - type: Grille - components: - - pos: 52.5,-38.5 - parent: 8364 - type: Transform -- uid: 2615 - type: WallReinforced - components: - - pos: 52.5,-49.5 - parent: 8364 - type: Transform -- uid: 2616 - type: CableApcExtension - components: - - pos: 53.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2617 - type: ReinforcedWindow - components: - - pos: 54.5,-31.5 - parent: 8364 - type: Transform -- uid: 2618 - type: ReinforcedWindow - components: - - pos: 54.5,-29.5 - parent: 8364 - type: Transform -- uid: 2619 - type: ReinforcedWindow - components: - - pos: 71.5,-16.5 - parent: 8364 - type: Transform -- uid: 2620 - type: ReinforcedWindow - components: - - pos: 75.5,-24.5 - parent: 8364 - type: Transform -- uid: 2621 - type: ReinforcedWindow - components: - - pos: 76.5,-27.5 - parent: 8364 - type: Transform -- uid: 2622 - type: ReinforcedWindow - components: - - pos: 77.5,-27.5 - parent: 8364 - type: Transform -- uid: 2623 - type: ReinforcedWindow - components: - - pos: 79.5,-27.5 - parent: 8364 - type: Transform -- uid: 2624 - type: ReinforcedWindow - components: - - pos: 80.5,-27.5 - parent: 8364 - type: Transform -- uid: 2625 - type: ReinforcedWindow - components: - - pos: 88.5,-22.5 - parent: 8364 - type: Transform -- uid: 2626 - type: ReinforcedWindow - components: - - pos: 89.5,-22.5 - parent: 8364 - type: Transform -- uid: 2627 - type: ReinforcedWindow - components: - - pos: 90.5,-22.5 - parent: 8364 - type: Transform -- uid: 2628 - type: ReinforcedWindow - components: - - pos: 91.5,-22.5 - parent: 8364 - type: Transform -- uid: 2629 - type: ReinforcedWindow - components: - - pos: 92.5,-22.5 - parent: 8364 - type: Transform -- uid: 2630 - type: ReinforcedWindow - components: - - pos: 92.5,-23.5 - parent: 8364 - type: Transform -- uid: 2631 - type: WallReinforced - components: - - pos: -62.5,-18.5 - parent: 8364 - type: Transform -- uid: 2632 - type: WallSolid - components: - - pos: 81.5,-20.5 - parent: 8364 - type: Transform -- uid: 2633 - type: WallSolid - components: - - pos: 80.5,-20.5 - parent: 8364 - type: Transform -- uid: 2634 - type: WallReinforced - components: - - pos: -62.5,-19.5 - parent: 8364 - type: Transform -- uid: 2635 - type: WallReinforced - components: - - pos: -62.5,-20.5 - parent: 8364 - type: Transform -- uid: 2636 - type: WallReinforced - components: - - pos: -62.5,-21.5 - parent: 8364 - type: Transform -- uid: 2637 - type: WallReinforced - components: - - pos: -57.5,-21.5 - parent: 8364 - type: Transform -- uid: 2638 - type: SignalButton - components: - - pos: -60.5,-19.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13910 - type: SignalTransmitter -- uid: 2639 - type: WallReinforced - components: - - pos: -52.5,-19.5 - parent: 8364 - type: Transform -- uid: 2640 - type: WallReinforced - components: - - pos: -55.5,-21.5 - parent: 8364 - type: Transform -- uid: 2641 - type: AirlockMaintLocked - components: - - pos: -45.5,-17.5 - parent: 8364 - type: Transform -- uid: 2642 - type: ReinforcedWindow - components: - - pos: 78.5,-16.5 - parent: 8364 - type: Transform -- uid: 2643 - type: ReinforcedWindow - components: - - pos: 79.5,-16.5 - parent: 8364 - type: Transform -- uid: 2644 - type: ReinforcedWindow - components: - - pos: 80.5,-16.5 - parent: 8364 - type: Transform -- uid: 2645 - type: ReinforcedWindow - components: - - pos: 80.5,-15.5 - parent: 8364 - type: Transform -- uid: 2646 - type: ReinforcedWindow - components: - - pos: 80.5,-14.5 - parent: 8364 - type: Transform -- uid: 2647 - type: ReinforcedWindow - components: - - pos: 81.5,-14.5 - parent: 8364 - type: Transform -- uid: 2648 - type: ReinforcedWindow - components: - - pos: 82.5,-14.5 - parent: 8364 - type: Transform -- uid: 2649 - type: ReinforcedWindow - components: - - pos: 83.5,-14.5 - parent: 8364 - type: Transform -- uid: 2650 - type: ReinforcedWindow - components: - - pos: 84.5,-14.5 - parent: 8364 - type: Transform -- uid: 2651 - type: ReinforcedWindow - components: - - pos: 85.5,-14.5 - parent: 8364 - type: Transform -- uid: 2652 - type: ReinforcedWindow - components: - - pos: 85.5,-10.5 - parent: 8364 - type: Transform -- uid: 2653 - type: ReinforcedWindow - components: - - pos: 84.5,-10.5 - parent: 8364 - type: Transform -- uid: 2654 - type: ReinforcedWindow - components: - - pos: 83.5,-10.5 - parent: 8364 - type: Transform -- uid: 2655 - type: ReinforcedWindow - components: - - pos: 83.5,-9.5 - parent: 8364 - type: Transform -- uid: 2656 - type: ReinforcedWindow - components: - - pos: 83.5,-8.5 - parent: 8364 - type: Transform -- uid: 2657 - type: ReinforcedWindow - components: - - pos: 83.5,-7.5 - parent: 8364 - type: Transform -- uid: 2658 - type: ReinforcedWindow - components: - - pos: 83.5,-6.5 - parent: 8364 - type: Transform -- uid: 2659 - type: ReinforcedWindow - components: - - pos: 84.5,-6.5 - parent: 8364 - type: Transform -- uid: 2660 - type: ReinforcedWindow - components: - - pos: 85.5,-6.5 - parent: 8364 - type: Transform -- uid: 2661 - type: ReinforcedWindow - components: - - pos: 85.5,-2.5 - parent: 8364 - type: Transform -- uid: 2662 - type: ReinforcedWindow - components: - - pos: 84.5,-2.5 - parent: 8364 - type: Transform -- uid: 2663 - type: ReinforcedWindow - components: - - pos: 83.5,-2.5 - parent: 8364 - type: Transform -- uid: 2664 - type: ReinforcedWindow - components: - - pos: 83.5,-1.5 - parent: 8364 - type: Transform -- uid: 2665 - type: ReinforcedWindow - components: - - pos: 83.5,-0.5 - parent: 8364 - type: Transform -- uid: 2666 - type: ReinforcedWindow - components: - - pos: 82.5,-0.5 - parent: 8364 - type: Transform -- uid: 2667 - type: ReinforcedWindow - components: - - pos: 81.5,-0.5 - parent: 8364 - type: Transform -- uid: 2668 - type: ReinforcedWindow - components: - - pos: 80.5,-0.5 - parent: 8364 - type: Transform -- uid: 2669 - type: ReinforcedWindow - components: - - pos: 79.5,-0.5 - parent: 8364 - type: Transform -- uid: 2670 - type: ReinforcedWindow - components: - - pos: 78.5,-0.5 - parent: 8364 - type: Transform -- uid: 2671 - type: ReinforcedWindow - components: - - pos: 75.5,0.5 - parent: 8364 - type: Transform -- uid: 2672 - type: ReinforcedWindow - components: - - pos: 75.5,1.5 - parent: 8364 - type: Transform -- uid: 2673 - type: ReinforcedWindow - components: - - pos: 75.5,2.5 - parent: 8364 - type: Transform -- uid: 2674 - type: ReinforcedWindow - components: - - pos: 75.5,3.5 - parent: 8364 - type: Transform -- uid: 2675 - type: Grille - components: - - pos: 75.5,3.5 - parent: 8364 - type: Transform -- uid: 2676 - type: Grille - components: - - pos: 75.5,2.5 - parent: 8364 - type: Transform -- uid: 2677 - type: Grille - components: - - pos: 75.5,1.5 - parent: 8364 - type: Transform -- uid: 2678 - type: Grille - components: - - pos: 75.5,0.5 - parent: 8364 - type: Transform -- uid: 2679 - type: Grille - components: - - pos: 78.5,-0.5 - parent: 8364 - type: Transform -- uid: 2680 - type: Grille - components: - - pos: 79.5,-0.5 - parent: 8364 - type: Transform -- uid: 2681 - type: Grille - components: - - pos: 80.5,-0.5 - parent: 8364 - type: Transform -- uid: 2682 - type: Grille - components: - - pos: 81.5,-0.5 - parent: 8364 - type: Transform -- uid: 2683 - type: Grille - components: - - pos: 82.5,-0.5 - parent: 8364 - type: Transform -- uid: 2684 - type: Grille - components: - - pos: 83.5,-0.5 - parent: 8364 - type: Transform -- uid: 2685 - type: Grille - components: - - pos: 83.5,-1.5 - parent: 8364 - type: Transform -- uid: 2686 - type: Grille - components: - - pos: 83.5,-2.5 - parent: 8364 - type: Transform -- uid: 2687 - type: Grille - components: - - pos: 84.5,-2.5 - parent: 8364 - type: Transform -- uid: 2688 - type: Grille - components: - - pos: 85.5,-2.5 - parent: 8364 - type: Transform -- uid: 2689 - type: Grille - components: - - pos: 85.5,-6.5 - parent: 8364 - type: Transform -- uid: 2690 - type: Grille - components: - - pos: 84.5,-6.5 - parent: 8364 - type: Transform -- uid: 2691 - type: Grille - components: - - pos: 83.5,-6.5 - parent: 8364 - type: Transform -- uid: 2692 - type: Grille - components: - - pos: 83.5,-7.5 - parent: 8364 - type: Transform -- uid: 2693 - type: Grille - components: - - pos: 83.5,-8.5 - parent: 8364 - type: Transform -- uid: 2694 - type: Grille - components: - - pos: 83.5,-9.5 - parent: 8364 - type: Transform -- uid: 2695 - type: Grille - components: - - pos: 83.5,-10.5 - parent: 8364 - type: Transform -- uid: 2696 - type: Grille - components: - - pos: 84.5,-10.5 - parent: 8364 - type: Transform -- uid: 2697 - type: Grille - components: - - pos: 85.5,-10.5 - parent: 8364 - type: Transform -- uid: 2698 - type: Grille - components: - - pos: 85.5,-14.5 - parent: 8364 - type: Transform -- uid: 2699 - type: Grille - components: - - pos: 84.5,-14.5 - parent: 8364 - type: Transform -- uid: 2700 - type: Grille - components: - - pos: 83.5,-14.5 - parent: 8364 - type: Transform -- uid: 2701 - type: Grille - components: - - pos: 82.5,-14.5 - parent: 8364 - type: Transform -- uid: 2702 - type: Grille - components: - - pos: 81.5,-14.5 - parent: 8364 - type: Transform -- uid: 2703 - type: Grille - components: - - pos: 80.5,-14.5 - parent: 8364 - type: Transform -- uid: 2704 - type: Grille - components: - - pos: 80.5,-15.5 - parent: 8364 - type: Transform -- uid: 2705 - type: Grille - components: - - pos: 80.5,-16.5 - parent: 8364 - type: Transform -- uid: 2706 - type: Grille - components: - - pos: 79.5,-16.5 - parent: 8364 - type: Transform -- uid: 2707 - type: Grille - components: - - pos: 78.5,-16.5 - parent: 8364 - type: Transform -- uid: 2708 - type: WallReinforced - components: - - pos: -62.5,-16.5 - parent: 8364 - type: Transform -- uid: 2709 - type: WallSolid - components: - - pos: 84.5,-4.5 - parent: 8364 - type: Transform -- uid: 2710 - type: WallSolid - components: - - pos: 83.5,-4.5 - parent: 8364 - type: Transform -- uid: 2711 - type: WallReinforced - components: - - pos: -44.5,-19.5 - parent: 8364 - type: Transform -- uid: 2712 - type: WallSolid - components: - - pos: 84.5,-12.5 - parent: 8364 - type: Transform -- uid: 2713 - type: WallSolid - components: - - pos: 83.5,-12.5 - parent: 8364 - type: Transform -- uid: 2714 - type: WallSolid - components: - - pos: 75.5,-4.5 - parent: 8364 - type: Transform -- uid: 2715 - type: WallSolid - components: - - pos: 75.5,-3.5 - parent: 8364 - type: Transform -- uid: 2716 - type: WallSolid - components: - - pos: 75.5,-2.5 - parent: 8364 - type: Transform -- uid: 2717 - type: WallSolid - components: - - pos: 75.5,-1.5 - parent: 8364 - type: Transform -- uid: 2718 - type: WallReinforced - components: - - pos: -43.5,-19.5 - parent: 8364 - type: Transform -- uid: 2719 - type: WallReinforced - components: - - pos: -42.5,-19.5 - parent: 8364 - type: Transform -- uid: 2720 - type: AirlockMaintLocked - components: - - pos: -36.5,-14.5 - parent: 8364 - type: Transform -- uid: 2721 - type: Grille - components: - - pos: 76.5,-4.5 - parent: 8364 - type: Transform -- uid: 2722 - type: Grille - components: - - pos: 78.5,-4.5 - parent: 8364 - type: Transform -- uid: 2723 - type: ReinforcedWindow - components: - - pos: 31.5,4.5 - parent: 8364 - type: Transform -- uid: 2724 - type: Grille - components: - - pos: 80.5,-4.5 - parent: 8364 - type: Transform -- uid: 2725 - type: Grille - components: - - pos: 81.5,-4.5 - parent: 8364 - type: Transform -- uid: 2726 - type: Grille - components: - - pos: 82.5,-4.5 - parent: 8364 - type: Transform -- uid: 2727 - type: ReinforcedWindow - components: - - pos: 82.5,-4.5 - parent: 8364 - type: Transform -- uid: 2728 - type: ReinforcedWindow - components: - - pos: 80.5,-4.5 - parent: 8364 - type: Transform -- uid: 2729 - type: ReinforcedWindow - components: - - pos: 81.5,-4.5 - parent: 8364 - type: Transform -- uid: 2730 - type: TableReinforced - components: - - pos: 79.5,-4.5 - parent: 8364 - type: Transform -- uid: 2731 - type: ReinforcedWindow - components: - - pos: 78.5,-4.5 - parent: 8364 - type: Transform -- uid: 2732 - type: ReinforcedWindow - components: - - pos: 76.5,-4.5 - parent: 8364 - type: Transform -- uid: 2733 - type: ReinforcedWindow - components: - - pos: 79.5,-7.5 - parent: 8364 - type: Transform -- uid: 2734 - type: ReinforcedWindow - components: - - pos: 79.5,-9.5 - parent: 8364 - type: Transform -- uid: 2735 - type: Grille - components: - - pos: 79.5,-7.5 - parent: 8364 - type: Transform -- uid: 2736 - type: Grille - components: - - pos: 79.5,-9.5 - parent: 8364 - type: Transform -- uid: 2737 - type: WallSolid - components: - - pos: 79.5,-8.5 - parent: 8364 - type: Transform -- uid: 2738 - type: Grille - components: - - pos: 74.5,-2.5 - parent: 8364 - type: Transform -- uid: 2739 - type: Grille - components: - - pos: 57.5,-11.5 - parent: 8364 - type: Transform -- uid: 2740 - type: Grille - components: - - pos: 59.5,-11.5 - parent: 8364 - type: Transform -- uid: 2741 - type: Grille - components: - - pos: 61.5,-11.5 - parent: 8364 - type: Transform -- uid: 2742 - type: Grille - components: - - pos: 72.5,-11.5 - parent: 8364 - type: Transform -- uid: 2743 - type: Grille - components: - - pos: 71.5,-11.5 - parent: 8364 - type: Transform -- uid: 2744 - type: Grille - components: - - pos: 70.5,-11.5 - parent: 8364 - type: Transform -- uid: 2745 - type: Grille - components: - - pos: 69.5,-11.5 - parent: 8364 - type: Transform -- uid: 2746 - type: Grille - components: - - pos: 68.5,-11.5 - parent: 8364 - type: Transform -- uid: 2747 - type: Grille - components: - - pos: 67.5,-11.5 - parent: 8364 - type: Transform -- uid: 2748 - type: Grille - components: - - pos: 66.5,-11.5 - parent: 8364 - type: Transform -- uid: 2749 - type: Window - components: - - pos: 57.5,-11.5 - parent: 8364 - type: Transform -- uid: 2750 - type: Window - components: - - pos: 59.5,-11.5 - parent: 8364 - type: Transform -- uid: 2751 - type: Window - components: - - pos: 61.5,-11.5 - parent: 8364 - type: Transform -- uid: 2752 - type: Window - components: - - pos: 66.5,-11.5 - parent: 8364 - type: Transform -- uid: 2753 - type: Window - components: - - pos: 67.5,-11.5 - parent: 8364 - type: Transform -- uid: 2754 - type: Window - components: - - pos: 68.5,-11.5 - parent: 8364 - type: Transform -- uid: 2755 - type: Window - components: - - pos: 69.5,-11.5 - parent: 8364 - type: Transform -- uid: 2756 - type: Window - components: - - pos: 70.5,-11.5 - parent: 8364 - type: Transform -- uid: 2757 - type: Window - components: - - pos: 71.5,-11.5 - parent: 8364 - type: Transform -- uid: 2758 - type: Window - components: - - pos: 72.5,-11.5 - parent: 8364 - type: Transform -- uid: 2759 - type: WallSolid - components: - - pos: 53.5,-7.5 - parent: 8364 - type: Transform -- uid: 2760 - type: WallSolid - components: - - pos: 54.5,-7.5 - parent: 8364 - type: Transform -- uid: 2761 - type: WallSolid - components: - - pos: 54.5,-10.5 - parent: 8364 - type: Transform -- uid: 2762 - type: WallSolid - components: - - pos: 54.5,-11.5 - parent: 8364 - type: Transform -- uid: 2763 - type: WallSolid - components: - - pos: 56.5,-11.5 - parent: 8364 - type: Transform -- uid: 2764 - type: WallSolid - components: - - pos: 55.5,-11.5 - parent: 8364 - type: Transform -- uid: 2765 - type: WallSolid - components: - - pos: 58.5,-11.5 - parent: 8364 - type: Transform -- uid: 2766 - type: WallSolid - components: - - pos: 60.5,-11.5 - parent: 8364 - type: Transform -- uid: 2767 - type: WallSolid - components: - - pos: 62.5,-11.5 - parent: 8364 - type: Transform -- uid: 2768 - type: WallSolid - components: - - pos: 63.5,-11.5 - parent: 8364 - type: Transform -- uid: 2769 - type: WallSolid - components: - - pos: 64.5,-11.5 - parent: 8364 - type: Transform -- uid: 2770 - type: WallSolid - components: - - pos: 65.5,-11.5 - parent: 8364 - type: Transform -- uid: 2771 - type: WallSolid - components: - - pos: 64.5,-10.5 - parent: 8364 - type: Transform -- uid: 2772 - type: WallSolid - components: - - pos: 73.5,-11.5 - parent: 8364 - type: Transform -- uid: 2773 - type: WallSolid - components: - - pos: 74.5,-11.5 - parent: 8364 - type: Transform -- uid: 2774 - type: WallSolid - components: - - pos: 74.5,-10.5 - parent: 8364 - type: Transform -- uid: 2775 - type: WallSolid - components: - - pos: 74.5,-6.5 - parent: 8364 - type: Transform -- uid: 2776 - type: WallSolid - components: - - pos: 74.5,-5.5 - parent: 8364 - type: Transform -- uid: 2777 - type: WallSolid - components: - - pos: 73.5,-4.5 - parent: 8364 - type: Transform -- uid: 2778 - type: WallSolid - components: - - pos: 74.5,-4.5 - parent: 8364 - type: Transform -- uid: 2779 - type: WallSolid - components: - - pos: 73.5,-2.5 - parent: 8364 - type: Transform -- uid: 2780 - type: WallSolid - components: - - pos: 73.5,-0.5 - parent: 8364 - type: Transform -- uid: 2781 - type: WallSolid - components: - - pos: 74.5,-0.5 - parent: 8364 - type: Transform -- uid: 2782 - type: FirelockGlass - components: - - pos: 20.5,-23.5 - parent: 8364 - type: Transform -- uid: 2783 - type: WallSolid - components: - - pos: 74.5,4.5 - parent: 8364 - type: Transform -- uid: 2784 - type: WallSolid - components: - - pos: 73.5,4.5 - parent: 8364 - type: Transform -- uid: 2785 - type: Grille - components: - - pos: 67.5,0.5 - parent: 8364 - type: Transform -- uid: 2786 - type: ReinforcedWindow - components: - - pos: 67.5,1.5 - parent: 8364 - type: Transform -- uid: 2787 - type: WallSolid - components: - - pos: 67.5,-0.5 - parent: 8364 - type: Transform -- uid: 2788 - type: WallSolid - components: - - pos: 67.5,-1.5 - parent: 8364 - type: Transform -- uid: 2789 - type: WallSolid - components: - - pos: 65.5,-1.5 - parent: 8364 - type: Transform -- uid: 2790 - type: WallSolid - components: - - pos: 64.5,-1.5 - parent: 8364 - type: Transform -- uid: 2791 - type: WallSolid - components: - - pos: 63.5,-1.5 - parent: 8364 - type: Transform -- uid: 2792 - type: WallSolid - components: - - pos: 62.5,-1.5 - parent: 8364 - type: Transform -- uid: 2793 - type: WallSolid - components: - - pos: 61.5,-1.5 - parent: 8364 - type: Transform -- uid: 2794 - type: WallSolid - components: - - pos: 60.5,-1.5 - parent: 8364 - type: Transform -- uid: 2795 - type: WallSolid - components: - - pos: 59.5,-1.5 - parent: 8364 - type: Transform -- uid: 2796 - type: WallSolid - components: - - pos: 59.5,-0.5 - parent: 8364 - type: Transform -- uid: 2797 - type: WallSolid - components: - - pos: 59.5,1.5 - parent: 8364 - type: Transform -- uid: 2798 - type: WallSolid - components: - - pos: 59.5,2.5 - parent: 8364 - type: Transform -- uid: 2799 - type: WallSolid - components: - - pos: 62.5,2.5 - parent: 8364 - type: Transform -- uid: 2800 - type: WallSolid - components: - - pos: 62.5,1.5 - parent: 8364 - type: Transform -- uid: 2801 - type: WallSolid - components: - - pos: 62.5,-0.5 - parent: 8364 - type: Transform -- uid: 2802 - type: WallSolid - components: - - pos: 64.5,-2.5 - parent: 8364 - type: Transform -- uid: 2803 - type: WallSolid - components: - - pos: 64.5,-3.5 - parent: 8364 - type: Transform -- uid: 2804 - type: WallSolid - components: - - pos: 64.5,-4.5 - parent: 8364 - type: Transform -- uid: 2805 - type: WallSolid - components: - - pos: 63.5,-4.5 - parent: 8364 - type: Transform -- uid: 2806 - type: WallSolid - components: - - pos: 61.5,-4.5 - parent: 8364 - type: Transform -- uid: 2807 - type: WallSolid - components: - - pos: 60.5,-4.5 - parent: 8364 - type: Transform -- uid: 2808 - type: WallSolid - components: - - pos: 60.5,-3.5 - parent: 8364 - type: Transform -- uid: 2809 - type: WallSolid - components: - - pos: 60.5,-2.5 - parent: 8364 - type: Transform -- uid: 2810 - type: WallSolid - components: - - pos: 64.5,-5.5 - parent: 8364 - type: Transform -- uid: 2811 - type: WallSolid - components: - - pos: 64.5,-6.5 - parent: 8364 - type: Transform -- uid: 2812 - type: WallSolid - components: - - pos: 50.5,-11.5 - parent: 8364 - type: Transform -- uid: 2813 - type: WallSolid - components: - - pos: 64.5,-7.5 - parent: 8364 - type: Transform -- uid: 2814 - type: WallSolid - components: - - pos: 50.5,-10.5 - parent: 8364 - type: Transform -- uid: 2815 - type: WallSolid - components: - - pos: 50.5,-9.5 - parent: 8364 - type: Transform -- uid: 2816 - type: WallSolid - components: - - pos: 50.5,-8.5 - parent: 8364 - type: Transform -- uid: 2817 - type: Grille - components: - - pos: 49.5,-10.5 - parent: 8364 - type: Transform -- uid: 2818 - type: Grille - components: - - pos: 46.5,-10.5 - parent: 8364 - type: Transform -- uid: 2819 - type: Grille - components: - - pos: 45.5,-10.5 - parent: 8364 - type: Transform -- uid: 2820 - type: Grille - components: - - pos: 45.5,-11.5 - parent: 8364 - type: Transform -- uid: 2821 - type: Grille - components: - - pos: 42.5,-11.5 - parent: 8364 - type: Transform -- uid: 2822 - type: Grille - components: - - pos: 49.5,-1.5 - parent: 8364 - type: Transform -- uid: 2823 - type: Grille - components: - - pos: 47.5,-1.5 - parent: 8364 - type: Transform -- uid: 2824 - type: WallSolid - components: - - pos: 46.5,-1.5 - parent: 8364 - type: Transform -- uid: 2825 - type: WallSolid - components: - - pos: 45.5,-1.5 - parent: 8364 - type: Transform -- uid: 2826 - type: WallSolid - components: - - pos: 44.5,-1.5 - parent: 8364 - type: Transform -- uid: 2827 - type: WallSolid - components: - - pos: 43.5,-1.5 - parent: 8364 - type: Transform -- uid: 2828 - type: WallSolid - components: - - pos: 42.5,-1.5 - parent: 8364 - type: Transform -- uid: 2829 - type: WallSolid - components: - - pos: 41.5,-1.5 - parent: 8364 - type: Transform -- uid: 2830 - type: WallSolid - components: - - pos: 41.5,-2.5 - parent: 8364 - type: Transform -- uid: 2831 - type: WallSolid - components: - - pos: 41.5,-3.5 - parent: 8364 - type: Transform -- uid: 2832 - type: WallReinforced - components: - - pos: -1.5,-17.5 - parent: 8364 - type: Transform -- uid: 2833 - type: WallSolid - components: - - pos: 41.5,-7.5 - parent: 8364 - type: Transform -- uid: 2834 - type: WallSolid - components: - - pos: 41.5,-8.5 - parent: 8364 - type: Transform -- uid: 2835 - type: WallSolid - components: - - pos: 41.5,-9.5 - parent: 8364 - type: Transform -- uid: 2836 - type: WallSolid - components: - - pos: 41.5,-10.5 - parent: 8364 - type: Transform -- uid: 2837 - type: WallSolid - components: - - pos: 40.5,-10.5 - parent: 8364 - type: Transform -- uid: 2838 - type: WallSolid - components: - - pos: 39.5,-10.5 - parent: 8364 - type: Transform -- uid: 2839 - type: WallSolid - components: - - pos: 41.5,-11.5 - parent: 8364 - type: Transform -- uid: 2840 - type: WallSolid - components: - - pos: 34.5,-10.5 - parent: 8364 - type: Transform -- uid: 2841 - type: WallSolid - components: - - pos: 33.5,-10.5 - parent: 8364 - type: Transform -- uid: 2842 - type: WallSolid - components: - - pos: 32.5,-10.5 - parent: 8364 - type: Transform -- uid: 2843 - type: WallSolid - components: - - pos: 32.5,-11.5 - parent: 8364 - type: Transform -- uid: 2844 - type: WallSolid - components: - - pos: 41.5,0.5 - parent: 8364 - type: Transform -- uid: 2845 - type: WallSolid - components: - - pos: 40.5,1.5 - parent: 8364 - type: Transform -- uid: 2846 - type: AtmosFixFreezerMarker - components: - - pos: 40.5,-2.5 - parent: 8364 - type: Transform -- uid: 2847 - type: AtmosFixFreezerMarker - components: - - pos: 39.5,-0.5 - parent: 8364 - type: Transform -- uid: 2848 - type: AtmosFixFreezerMarker - components: - - pos: 39.5,0.5 - parent: 8364 - type: Transform -- uid: 2849 - type: WallSolid - components: - - pos: 40.5,-3.5 - parent: 8364 - type: Transform -- uid: 2850 - type: WallSolid - components: - - pos: 39.5,-3.5 - parent: 8364 - type: Transform -- uid: 2851 - type: WallSolid - components: - - pos: 38.5,-3.5 - parent: 8364 - type: Transform -- uid: 2852 - type: WallSolid - components: - - pos: 37.5,-3.5 - parent: 8364 - type: Transform -- uid: 2853 - type: WallSolid - components: - - pos: 35.5,-3.5 - parent: 8364 - type: Transform -- uid: 2854 - type: WallSolid - components: - - pos: 32.5,-4.5 - parent: 8364 - type: Transform -- uid: 2855 - type: WallSolid - components: - - pos: 32.5,-6.5 - parent: 8364 - type: Transform -- uid: 2856 - type: WallSolid - components: - - pos: 32.5,-8.5 - parent: 8364 - type: Transform -- uid: 2857 - type: ReinforcedWindow - components: - - pos: 49.5,-10.5 - parent: 8364 - type: Transform -- uid: 2858 - type: ReinforcedWindow - components: - - pos: 46.5,-10.5 - parent: 8364 - type: Transform -- uid: 2859 - type: ReinforcedWindow - components: - - pos: 45.5,-10.5 - parent: 8364 - type: Transform -- uid: 2860 - type: ReinforcedWindow - components: - - pos: 45.5,-11.5 - parent: 8364 - type: Transform -- uid: 2861 - type: ReinforcedWindow - components: - - pos: 42.5,-11.5 - parent: 8364 - type: Transform -- uid: 2862 - type: VendingMachineCargoDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,-18.5 - parent: 8364 - type: Transform -- uid: 2863 - type: GrilleBroken - components: - - pos: -41.5,-17.5 - parent: 8364 - type: Transform -- uid: 2864 - type: CableMV - components: - - pos: 28.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2865 - type: WallSolidRust - components: - - pos: -40.5,-16.5 - parent: 8364 - type: Transform -- uid: 2866 - type: WallSolid - components: - - pos: 54.5,12.5 - parent: 8364 - type: Transform -- uid: 2867 - type: Grille - components: - - pos: 23.5,-11.5 - parent: 8364 - type: Transform -- uid: 2868 - type: Grille - components: - - pos: 27.5,-3.5 - parent: 8364 - type: Transform -- uid: 2869 - type: WallSolid - components: - - pos: 31.5,-11.5 - parent: 8364 - type: Transform -- uid: 2870 - type: WallSolid - components: - - pos: 30.5,-11.5 - parent: 8364 - type: Transform -- uid: 2871 - type: WallSolid - components: - - pos: 29.5,-11.5 - parent: 8364 - type: Transform -- uid: 2872 - type: WallSolid - components: - - pos: 28.5,-11.5 - parent: 8364 - type: Transform -- uid: 2873 - type: WallSolid - components: - - pos: 27.5,-11.5 - parent: 8364 - type: Transform -- uid: 2874 - type: WallSolid - components: - - pos: 26.5,-11.5 - parent: 8364 - type: Transform -- uid: 2875 - type: WallSolid - components: - - pos: 25.5,-11.5 - parent: 8364 - type: Transform -- uid: 2876 - type: WallSolid - components: - - pos: 21.5,-11.5 - parent: 8364 - type: Transform -- uid: 2877 - type: WallSolid - components: - - pos: 20.5,-11.5 - parent: 8364 - type: Transform -- uid: 2878 - type: WallSolid - components: - - pos: 19.5,-11.5 - parent: 8364 - type: Transform -- uid: 2879 - type: WallSolid - components: - - pos: 18.5,-11.5 - parent: 8364 - type: Transform -- uid: 2880 - type: Grille - components: - - pos: 74.5,-7.5 - parent: 8364 - type: Transform -- uid: 2881 - type: Window - components: - - pos: 74.5,-7.5 - parent: 8364 - type: Transform -- uid: 2882 - type: ReinforcedWindow - components: - - pos: -41.5,-32.5 - parent: 8364 - type: Transform -- uid: 2883 - type: WallReinforced - components: - - pos: 86.5,-43.5 - parent: 8364 - type: Transform -- uid: 2884 - type: WallReinforced - components: - - pos: 85.5,-43.5 - parent: 8364 - type: Transform -- uid: 2885 - type: WallReinforced - components: - - pos: 84.5,-43.5 - parent: 8364 - type: Transform -- uid: 2886 - type: WallSolid - components: - - pos: 83.5,-40.5 - parent: 8364 - type: Transform -- uid: 2887 - type: WallReinforced - components: - - pos: 83.5,-43.5 - parent: 8364 - type: Transform -- uid: 2888 - type: WallReinforced - components: - - pos: 85.5,-46.5 - parent: 8364 - type: Transform -- uid: 2889 - type: WallReinforced - components: - - pos: 84.5,-46.5 - parent: 8364 - type: Transform -- uid: 2890 - type: WallReinforced - components: - - pos: 83.5,-46.5 - parent: 8364 - type: Transform -- uid: 2891 - type: WallReinforced - components: - - pos: 87.5,-46.5 - parent: 8364 - type: Transform -- uid: 2892 - type: WallReinforced - components: - - pos: 86.5,-46.5 - parent: 8364 - type: Transform -- uid: 2893 - type: WallReinforced - components: - - pos: 87.5,-49.5 - parent: 8364 - type: Transform -- uid: 2894 - type: SubstationBasic - components: - - pos: 85.5,-44.5 - parent: 8364 - type: Transform - - startingCharge: 2779041.8 - type: Battery - - loadingNetworkDemand: 260.0401 - currentSupply: 260.0401 - supplyRampPosition: 260.0401 - type: PowerNetworkBattery -- uid: 2895 - type: ReinforcedWindow - components: - - pos: -37.5,-32.5 - parent: 8364 - type: Transform -- uid: 2896 - type: AirlockEngineeringLocked - components: - - name: Science Power - type: MetaData - - pos: 83.5,-45.5 - parent: 8364 - type: Transform -- uid: 2897 - type: WallReinforced - components: - - pos: 83.5,-48.5 - parent: 8364 - type: Transform -- uid: 2898 - type: ClothingShoesBootsJack - components: - - pos: -46.62844,-8.645075 - parent: 8364 - type: Transform -- uid: 2899 - type: ComputerCargoOrders - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-30.5 - parent: 8364 - type: Transform -- uid: 2900 - type: WallSolid - components: - - pos: 86.5,-54.5 - parent: 8364 - type: Transform -- uid: 2901 - type: WallSolid - components: - - pos: 85.5,-54.5 - parent: 8364 - type: Transform -- uid: 2902 - type: WallSolid - components: - - pos: 84.5,-54.5 - parent: 8364 - type: Transform -- uid: 2903 - type: WallSolid - components: - - pos: 83.5,-54.5 - parent: 8364 - type: Transform -- uid: 2904 - type: WallSolid - components: - - pos: 83.5,-55.5 - parent: 8364 - type: Transform -- uid: 2905 - type: WallSolid - components: - - pos: 83.5,-53.5 - parent: 8364 - type: Transform -- uid: 2906 - type: AirlockMaintLocked - components: - - pos: -26.5,-7.5 - parent: 8364 - type: Transform -- uid: 2907 - type: WallSolid - components: - - pos: 83.5,-42.5 - parent: 8364 - type: Transform -- uid: 2908 - type: ReinforcedWindow - components: - - pos: 87.5,-40.5 - parent: 8364 - type: Transform -- uid: 2909 - type: ReinforcedWindow - components: - - pos: 87.5,-41.5 - parent: 8364 - type: Transform -- uid: 2910 - type: ReinforcedWindow - components: - - pos: 87.5,-42.5 - parent: 8364 - type: Transform -- uid: 2911 - type: ReinforcedWindow - components: - - pos: 87.5,-51.5 - parent: 8364 - type: Transform -- uid: 2912 - type: ReinforcedWindow - components: - - pos: 87.5,-52.5 - parent: 8364 - type: Transform -- uid: 2913 - type: ReinforcedWindow - components: - - pos: 87.5,-53.5 - parent: 8364 - type: Transform -- uid: 2914 - type: Grille - components: - - pos: 87.5,-51.5 - parent: 8364 - type: Transform -- uid: 2915 - type: Grille - components: - - pos: 87.5,-52.5 - parent: 8364 - type: Transform -- uid: 2916 - type: Grille - components: - - pos: 87.5,-53.5 - parent: 8364 - type: Transform -- uid: 2917 - type: Grille - components: - - pos: 87.5,-40.5 - parent: 8364 - type: Transform -- uid: 2918 - type: Grille - components: - - pos: 87.5,-41.5 - parent: 8364 - type: Transform -- uid: 2919 - type: Grille - components: - - pos: 87.5,-42.5 - parent: 8364 - type: Transform -- uid: 2920 - type: WallSolid - components: - - pos: 81.5,-56.5 - parent: 8364 - type: Transform -- uid: 2921 - type: WallSolid - components: - - pos: 81.5,-57.5 - parent: 8364 - type: Transform -- uid: 2922 - type: WallSolid - components: - - pos: 81.5,-58.5 - parent: 8364 - type: Transform -- uid: 2923 - type: WallSolid - components: - - pos: 81.5,-59.5 - parent: 8364 - type: Transform -- uid: 2924 - type: WallSolid - components: - - pos: 80.5,-59.5 - parent: 8364 - type: Transform -- uid: 2925 - type: WallSolid - components: - - pos: 78.5,-59.5 - parent: 8364 - type: Transform -- uid: 2926 - type: WallSolid - components: - - pos: 77.5,-59.5 - parent: 8364 - type: Transform -- uid: 2927 - type: WallSolid - components: - - pos: 77.5,-58.5 - parent: 8364 - type: Transform -- uid: 2928 - type: WallSolid - components: - - pos: 77.5,-56.5 - parent: 8364 - type: Transform -- uid: 2929 - type: WallSolid - components: - - pos: 76.5,-59.5 - parent: 8364 - type: Transform -- uid: 2930 - type: ReinforcedWindow - components: - - pos: -43.5,-26.5 - parent: 8364 - type: Transform -- uid: 2931 - type: DrinkShotGlass - components: - - pos: 9.132981,-50.361656 - parent: 8364 - type: Transform -- uid: 2932 - type: WallSolid - components: - - pos: 83.5,-59.5 - parent: 8364 - type: Transform -- uid: 2933 - type: WallSolid - components: - - pos: 83.5,-56.5 - parent: 8364 - type: Transform -- uid: 2934 - type: CableApcExtension - components: - - pos: 21.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2935 - type: CableApcExtension - components: - - pos: -35.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2936 - type: CableMV - components: - - pos: 23.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2937 - type: CableMV - components: - - pos: 22.5,-22.5 - parent: 8364 - type: Transform -- uid: 2938 - type: RandomVendingDrinks - components: - - pos: 15.5,-32.5 - parent: 8364 - type: Transform -- uid: 2939 - type: RandomVendingSnacks - components: - - pos: 14.5,-32.5 - parent: 8364 - type: Transform -- uid: 2940 - type: FirelockGlass - components: - - pos: 20.5,-15.5 - parent: 8364 - type: Transform -- uid: 2941 - type: ShuttersNormalOpen - components: - - pos: 20.5,-15.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14147 - type: SignalReceiver -- uid: 2942 - type: CableMV - components: - - pos: 22.5,-21.5 - parent: 8364 - type: Transform -- uid: 2943 - type: VendingMachineSecDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -60.5,5.5 - parent: 8364 - type: Transform -- uid: 2944 - type: FirelockGlass - components: - - pos: -62.5,0.5 - parent: 8364 - type: Transform -- uid: 2945 - type: ComputerSurveillanceCameraMonitor - components: - - pos: -59.5,5.5 - parent: 8364 - type: Transform -- uid: 2946 - type: FirelockGlass - components: - - pos: 23.5,-17.5 - parent: 8364 - type: Transform -- uid: 2947 - type: WallReinforced - components: - - pos: 83.5,-61.5 - parent: 8364 - type: Transform -- uid: 2948 - type: Grille - components: - - pos: 83.5,-66.5 - parent: 8364 - type: Transform -- uid: 2949 - type: Grille - components: - - pos: 82.5,-66.5 - parent: 8364 - type: Transform -- uid: 2950 - type: WallReinforced - components: - - pos: 79.5,-61.5 - parent: 8364 - type: Transform -- uid: 2951 - type: WallReinforced - components: - - pos: 79.5,-62.5 - parent: 8364 - type: Transform -- uid: 2952 - type: WallReinforced - components: - - pos: 79.5,-63.5 - parent: 8364 - type: Transform -- uid: 2953 - type: WallReinforced - components: - - pos: 79.5,-64.5 - parent: 8364 - type: Transform -- uid: 2954 - type: WallReinforced - components: - - pos: 83.5,-62.5 - parent: 8364 - type: Transform -- uid: 2955 - type: WallReinforced - components: - - pos: 83.5,-63.5 - parent: 8364 - type: Transform -- uid: 2956 - type: WallReinforced - components: - - pos: 83.5,-64.5 - parent: 8364 - type: Transform -- uid: 2957 - type: ReinforcedWindow - components: - - pos: 82.5,-67.5 - parent: 8364 - type: Transform -- uid: 2958 - type: WallReinforced - components: - - pos: 79.5,-65.5 - parent: 8364 - type: Transform -- uid: 2959 - type: WallReinforced - components: - - pos: 80.5,-68.5 - parent: 8364 - type: Transform -- uid: 2960 - type: ReinforcedWindow - components: - - pos: 82.5,-66.5 - parent: 8364 - type: Transform -- uid: 2961 - type: WallReinforced - components: - - pos: 79.5,-66.5 - parent: 8364 - type: Transform -- uid: 2962 - type: WallReinforced - components: - - pos: 80.5,-67.5 - parent: 8364 - type: Transform -- uid: 2963 - type: ReinforcedWindow - components: - - pos: 83.5,-66.5 - parent: 8364 - type: Transform -- uid: 2964 - type: WallReinforced - components: - - pos: 80.5,-62.5 - parent: 8364 - type: Transform -- uid: 2965 - type: WallReinforced - components: - - pos: 82.5,-62.5 - parent: 8364 - type: Transform -- uid: 2966 - type: ReinforcedWindow - components: - - pos: 82.5,-68.5 - parent: 8364 - type: Transform -- uid: 2967 - type: WallReinforced - components: - - pos: 83.5,-65.5 - parent: 8364 - type: Transform -- uid: 2968 - type: WallReinforced - components: - - pos: 80.5,-66.5 - parent: 8364 - type: Transform -- uid: 2969 - type: WallReinforced - components: - - pos: 8.5,-39.5 - parent: 8364 - type: Transform -- uid: 2970 - type: WallReinforced - components: - - pos: 9.5,-39.5 - parent: 8364 - type: Transform -- uid: 2971 - type: WallReinforced - components: - - pos: 10.5,-39.5 - parent: 8364 - type: Transform -- uid: 2972 - type: WallReinforced - components: - - pos: 11.5,-39.5 - parent: 8364 - type: Transform -- uid: 2973 - type: WallReinforced - components: - - pos: 12.5,-39.5 - parent: 8364 - type: Transform -- uid: 2974 - type: WallReinforced - components: - - pos: 14.5,-39.5 - parent: 8364 - type: Transform -- uid: 2975 - type: WallReinforced - components: - - pos: 15.5,-39.5 - parent: 8364 - type: Transform -- uid: 2976 - type: WallReinforced - components: - - pos: 16.5,-39.5 - parent: 8364 - type: Transform -- uid: 2977 - type: WallReinforced - components: - - pos: 17.5,-39.5 - parent: 8364 - type: Transform -- uid: 2978 - type: WallReinforced - components: - - pos: 18.5,-39.5 - parent: 8364 - type: Transform -- uid: 2979 - type: WallReinforced - components: - - pos: 19.5,-39.5 - parent: 8364 - type: Transform -- uid: 2980 - type: WallReinforced - components: - - pos: 20.5,-39.5 - parent: 8364 - type: Transform -- uid: 2981 - type: WallReinforced - components: - - pos: 21.5,-39.5 - parent: 8364 - type: Transform -- uid: 2982 - type: WallReinforced - components: - - pos: 22.5,-39.5 - parent: 8364 - type: Transform -- uid: 2983 - type: WallReinforced - components: - - pos: 23.5,-39.5 - parent: 8364 - type: Transform -- uid: 2984 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-39.5 - parent: 8364 - type: Transform -- uid: 2985 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-39.5 - parent: 8364 - type: Transform -- uid: 2986 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-39.5 - parent: 8364 - type: Transform -- uid: 2987 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-57.5 - parent: 8364 - type: Transform -- uid: 2988 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-39.5 - parent: 8364 - type: Transform -- uid: 2989 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-56.5 - parent: 8364 - type: Transform -- uid: 2990 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-39.5 - parent: 8364 - type: Transform -- uid: 2991 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-39.5 - parent: 8364 - type: Transform -- uid: 2992 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-39.5 - parent: 8364 - type: Transform -- uid: 2993 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-40.5 - parent: 8364 - type: Transform -- uid: 2994 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-39.5 - parent: 8364 - type: Transform -- uid: 2995 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-52.5 - parent: 8364 - type: Transform -- uid: 2996 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-51.5 - parent: 8364 - type: Transform -- uid: 2997 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-47.5 - parent: 8364 - type: Transform -- uid: 2998 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-46.5 - parent: 8364 - type: Transform -- uid: 2999 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-42.5 - parent: 8364 - type: Transform -- uid: 3000 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-41.5 - parent: 8364 - type: Transform -- uid: 3001 - type: ShuttersNormalOpen - components: - - pos: 19.5,-15.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14147 - type: SignalReceiver -- uid: 3002 - type: WindoorChemistryLocked - components: - - pos: 20.5,-15.5 - parent: 8364 - type: Transform -- uid: 3003 - type: ReinforcedWindow - components: - - pos: -44.5,-26.5 - parent: 8364 - type: Transform -- uid: 3004 - type: CableApcExtension - components: - - pos: 43.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3005 - type: CableApcExtension - components: - - pos: 43.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3006 - type: CableApcExtension - components: - - pos: 43.5,-71.5 - parent: 8364 - type: Transform -- uid: 3007 - type: CableApcExtension - components: - - pos: 43.5,-72.5 - parent: 8364 - type: Transform -- uid: 3008 - type: CableApcExtension - components: - - pos: 43.5,-73.5 - parent: 8364 - type: Transform -- uid: 3009 - type: CableApcExtension - components: - - pos: 44.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3010 - type: CableApcExtension - components: - - pos: 48.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3011 - type: CableApcExtension - components: - - pos: 43.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3012 - type: CableApcExtension - components: - - pos: 43.5,-70.5 - parent: 8364 - type: Transform -- uid: 3013 - type: CableApcExtension - components: - - pos: 43.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3014 - type: CableApcExtension - components: - - pos: 33.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3015 - type: CableApcExtension - components: - - pos: 37.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3016 - type: CableApcExtension - components: - - pos: 37.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3017 - type: CableApcExtension - components: - - pos: 37.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3018 - type: WindowReinforcedDirectional - components: - - pos: 35.5,-68.5 - parent: 8364 - type: Transform -- uid: 3019 - type: CableApcExtension - components: - - pos: 33.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3020 - type: CableApcExtension - components: - - pos: 21.5,-16.5 - parent: 8364 - type: Transform -- uid: 3021 - type: CableApcExtension - components: - - pos: -36.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3022 - type: CableApcExtension - components: - - pos: -34.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3023 - type: ComputerCargoShuttle - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-29.5 - parent: 8364 - type: Transform -- uid: 3024 - type: CableApcExtension - components: - - pos: 37.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3025 - type: CableApcExtension - components: - - pos: 35.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3026 - type: NitrogenCanister - components: - - pos: 34.5,-69.5 - parent: 8364 - type: Transform -- uid: 3027 - type: ComputerCargoOrders - components: - - rot: 3.141592653589793 rad - pos: -24.5,-23.5 - parent: 8364 - type: Transform -- uid: 3028 - type: SpawnPointAssistant - components: - - pos: -41.5,3.5 - parent: 8364 - type: Transform -- uid: 3029 - type: ReinforcedWindow - components: - - pos: -38.5,-32.5 - parent: 8364 - type: Transform -- uid: 3030 - type: ReinforcedWindow - components: - - pos: -43.5,-32.5 - parent: 8364 - type: Transform -- uid: 3031 - type: WallSolid - components: - - pos: -35.5,-29.5 - parent: 8364 - type: Transform -- uid: 3032 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-29.5 - parent: 8364 - type: Transform -- uid: 3033 - type: WallReinforced - components: - - pos: -35.5,-32.5 - parent: 8364 - type: Transform -- uid: 3034 - type: WallReinforced - components: - - pos: -34.5,-32.5 - parent: 8364 - type: Transform -- uid: 3035 - type: WallReinforced - components: - - pos: -30.5,-32.5 - parent: 8364 - type: Transform -- uid: 3036 - type: WallReinforced - components: - - pos: -29.5,-32.5 - parent: 8364 - type: Transform -- uid: 3037 - type: WallReinforced - components: - - pos: -29.5,-33.5 - parent: 8364 - type: Transform -- uid: 3038 - type: WallReinforced - components: - - pos: -30.5,-34.5 - parent: 8364 - type: Transform -- uid: 3039 - type: WallReinforced - components: - - pos: -29.5,-34.5 - parent: 8364 - type: Transform -- uid: 3040 - type: WallReinforced - components: - - pos: -31.5,-35.5 - parent: 8364 - type: Transform -- uid: 3041 - type: WallSolid - components: - - pos: 48.5,-67.5 - parent: 8364 - type: Transform -- uid: 3042 - type: WallSolid - components: - - pos: 48.5,-66.5 - parent: 8364 - type: Transform -- uid: 3043 - type: WallReinforced - components: - - pos: -30.5,-35.5 - parent: 8364 - type: Transform -- uid: 3044 - type: WallReinforced - components: - - pos: -24.5,-42.5 - parent: 8364 - type: Transform -- uid: 3045 - type: WallReinforced - components: - - pos: -23.5,-42.5 - parent: 8364 - type: Transform -- uid: 3046 - type: WallReinforced - components: - - pos: -22.5,-42.5 - parent: 8364 - type: Transform -- uid: 3047 - type: WallReinforced - components: - - pos: -22.5,-41.5 - parent: 8364 - type: Transform -- uid: 3048 - type: WallReinforced - components: - - pos: -22.5,-39.5 - parent: 8364 - type: Transform -- uid: 3049 - type: WallReinforced - components: - - pos: -19.5,-43.5 - parent: 8364 - type: Transform -- uid: 3050 - type: ReinforcedWindow - components: - - pos: -28.5,-39.5 - parent: 8364 - type: Transform -- uid: 3051 - type: WallReinforced - components: - - pos: -23.5,-39.5 - parent: 8364 - type: Transform -- uid: 3052 - type: Grille - components: - - pos: -28.5,-39.5 - parent: 8364 - type: Transform -- uid: 3053 - type: CarpetSBlue - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 8364 - type: Transform -- uid: 3054 - type: CableHV - components: - - pos: -7.5,-10.5 - parent: 8364 - type: Transform -- uid: 3055 - type: WallReinforced - components: - - pos: -11.5,-40.5 - parent: 8364 - type: Transform -- uid: 3056 - type: CarpetSBlue - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 8364 - type: Transform -- uid: 3057 - type: TableGlass - components: - - pos: -8.5,-18.5 - parent: 8364 - type: Transform -- uid: 3058 - type: WallReinforced - components: - - pos: -11.5,-39.5 - parent: 8364 - type: Transform -- uid: 3059 - type: WallReinforced - components: - - pos: -11.5,-32.5 - parent: 8364 - type: Transform -- uid: 3060 - type: WallReinforced - components: - - pos: -11.5,-33.5 - parent: 8364 - type: Transform -- uid: 3061 - type: WallReinforced - components: - - pos: -18.5,-46.5 - parent: 8364 - type: Transform -- uid: 3062 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-27.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 20027 - Forward: - - port: Left - uid: 20027 - Off: - - port: Middle - uid: 20027 - type: SignalReceiver -- uid: 3063 - type: CableApcExtension - components: - - pos: -41.5,-30.5 - parent: 8364 - type: Transform -- uid: 3064 - type: CableApcExtension - components: - - pos: -43.5,-30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3065 - type: CableApcExtension - components: - - pos: -42.5,-30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3066 - type: CableApcExtension - components: - - pos: -43.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3067 - type: PlasticFlapsAirtightClear - components: - - pos: -44.5,-27.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 3068 - type: ReinforcedWindow - components: - - pos: 19.5,-15.5 - parent: 8364 - type: Transform -- uid: 3069 - type: CableApcExtension - components: - - pos: -41.5,-28.5 - parent: 8364 - type: Transform -- uid: 3070 - type: CableApcExtension - components: - - pos: -40.5,-30.5 - parent: 8364 - type: Transform -- uid: 3071 - type: CableApcExtension - components: - - pos: -38.5,-28.5 - parent: 8364 - type: Transform -- uid: 3072 - type: WallReinforced - components: - - pos: 93.5,-24.5 - parent: 8364 - type: Transform -- uid: 3073 - type: WallReinforced - components: - - pos: 92.5,-24.5 - parent: 8364 - type: Transform -- uid: 3074 - type: ReinforcedWindow - components: - - pos: 77.5,-65.5 - parent: 8364 - type: Transform -- uid: 3075 - type: ReinforcedWindow - components: - - pos: 76.5,-65.5 - parent: 8364 - type: Transform -- uid: 3076 - type: ReinforcedWindow - components: - - pos: 70.5,-69.5 - parent: 8364 - type: Transform -- uid: 3077 - type: ReinforcedWindow - components: - - pos: 69.5,-69.5 - parent: 8364 - type: Transform -- uid: 3078 - type: ReinforcedWindow - components: - - pos: 65.5,-73.5 - parent: 8364 - type: Transform -- uid: 3079 - type: ReinforcedWindow - components: - - pos: 64.5,-73.5 - parent: 8364 - type: Transform -- uid: 3080 - type: ReinforcedWindow - components: - - pos: 63.5,-73.5 - parent: 8364 - type: Transform -- uid: 3081 - type: ReinforcedWindow - components: - - pos: 62.5,-73.5 - parent: 8364 - type: Transform -- uid: 3082 - type: ReinforcedWindow - components: - - pos: 62.5,-72.5 - parent: 8364 - type: Transform -- uid: 3083 - type: CarpetOrange - components: - - pos: 65.5,0.5 - parent: 8364 - type: Transform -- uid: 3084 - type: ReinforcedWindow - components: - - pos: 60.5,-72.5 - parent: 8364 - type: Transform -- uid: 3085 - type: ReinforcedWindow - components: - - pos: 60.5,-71.5 - parent: 8364 - type: Transform -- uid: 3086 - type: ReinforcedWindow - components: - - pos: 60.5,-70.5 - parent: 8364 - type: Transform -- uid: 3087 - type: ReinforcedWindow - components: - - pos: 62.5,-70.5 - parent: 8364 - type: Transform -- uid: 3088 - type: ReinforcedWindow - components: - - pos: 63.5,-63.5 - parent: 8364 - type: Transform -- uid: 3089 - type: ReinforcedWindow - components: - - pos: 62.5,-63.5 - parent: 8364 - type: Transform -- uid: 3090 - type: ReinforcedWindow - components: - - pos: 61.5,-63.5 - parent: 8364 - type: Transform -- uid: 3091 - type: ReinforcedWindow - components: - - pos: 58.5,-63.5 - parent: 8364 - type: Transform -- uid: 3092 - type: ReinforcedWindow - components: - - pos: 57.5,-63.5 - parent: 8364 - type: Transform -- uid: 3093 - type: ReinforcedWindow - components: - - pos: 56.5,-63.5 - parent: 8364 - type: Transform -- uid: 3094 - type: ReinforcedWindow - components: - - pos: 53.5,-63.5 - parent: 8364 - type: Transform -- uid: 3095 - type: ReinforcedWindow - components: - - pos: 52.5,-63.5 - parent: 8364 - type: Transform -- uid: 3096 - type: ReinforcedWindow - components: - - pos: 51.5,-63.5 - parent: 8364 - type: Transform -- uid: 3097 - type: ReinforcedWindow - components: - - pos: 50.5,-63.5 - parent: 8364 - type: Transform -- uid: 3098 - type: ReinforcedWindow - components: - - pos: 50.5,-64.5 - parent: 8364 - type: Transform -- uid: 3099 - type: ReinforcedWindow - components: - - pos: 50.5,-65.5 - parent: 8364 - type: Transform -- uid: 3100 - type: ReinforcedWindow - components: - - pos: 50.5,-66.5 - parent: 8364 - type: Transform -- uid: 3101 - type: ReinforcedWindow - components: - - pos: 44.5,-74.5 - parent: 8364 - type: Transform -- uid: 3102 - type: ReinforcedWindow - components: - - pos: 43.5,-74.5 - parent: 8364 - type: Transform -- uid: 3103 - type: ReinforcedWindow - components: - - pos: 42.5,-74.5 - parent: 8364 - type: Transform -- uid: 3104 - type: WallSolid - components: - - pos: 37.5,-63.5 - parent: 8364 - type: Transform -- uid: 3105 - type: AirCanister - components: - - pos: 36.5,-69.5 - parent: 8364 - type: Transform -- uid: 3106 - type: CableApcExtension - components: - - pos: 43.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3107 - type: ReinforcedWindow - components: - - pos: 31.5,-60.5 - parent: 8364 - type: Transform -- uid: 3108 - type: ReinforcedWindow - components: - - pos: 31.5,-59.5 - parent: 8364 - type: Transform -- uid: 3109 - type: ReinforcedWindow - components: - - pos: 31.5,-58.5 - parent: 8364 - type: Transform -- uid: 3110 - type: ReinforcedWindow - components: - - pos: 31.5,-55.5 - parent: 8364 - type: Transform -- uid: 3111 - type: ReinforcedWindow - components: - - pos: 31.5,-54.5 - parent: 8364 - type: Transform -- uid: 3112 - type: ReinforcedWindow - components: - - pos: 31.5,-53.5 - parent: 8364 - type: Transform -- uid: 3113 - type: ReinforcedWindow - components: - - pos: 31.5,-50.5 - parent: 8364 - type: Transform -- uid: 3114 - type: ReinforcedWindow - components: - - pos: 31.5,-49.5 - parent: 8364 - type: Transform -- uid: 3115 - type: ReinforcedWindow - components: - - pos: 31.5,-48.5 - parent: 8364 - type: Transform -- uid: 3116 - type: ReinforcedWindow - components: - - pos: 31.5,-45.5 - parent: 8364 - type: Transform -- uid: 3117 - type: ReinforcedWindow - components: - - pos: 31.5,-44.5 - parent: 8364 - type: Transform -- uid: 3118 - type: ReinforcedWindow - components: - - pos: 31.5,-43.5 - parent: 8364 - type: Transform -- uid: 3119 - type: WallReinforced - components: - - pos: 2.5,-41.5 - parent: 8364 - type: Transform -- uid: 3120 - type: WallReinforced - components: - - pos: 2.5,-40.5 - parent: 8364 - type: Transform -- uid: 3121 - type: Grille - components: - - pos: 31.5,-43.5 - parent: 8364 - type: Transform -- uid: 3122 - type: Grille - components: - - pos: 31.5,-44.5 - parent: 8364 - type: Transform -- uid: 3123 - type: Grille - components: - - pos: 31.5,-45.5 - parent: 8364 - type: Transform -- uid: 3124 - type: Grille - components: - - pos: 31.5,-48.5 - parent: 8364 - type: Transform -- uid: 3125 - type: Grille - components: - - pos: 31.5,-49.5 - parent: 8364 - type: Transform -- uid: 3126 - type: Grille - components: - - pos: 31.5,-50.5 - parent: 8364 - type: Transform -- uid: 3127 - type: Grille - components: - - pos: 31.5,-53.5 - parent: 8364 - type: Transform -- uid: 3128 - type: Grille - components: - - pos: 31.5,-54.5 - parent: 8364 - type: Transform -- uid: 3129 - type: Grille - components: - - pos: 31.5,-55.5 - parent: 8364 - type: Transform -- uid: 3130 - type: Grille - components: - - pos: 31.5,-58.5 - parent: 8364 - type: Transform -- uid: 3131 - type: Grille - components: - - pos: 31.5,-59.5 - parent: 8364 - type: Transform -- uid: 3132 - type: Grille - components: - - pos: 31.5,-60.5 - parent: 8364 - type: Transform -- uid: 3133 - type: CableApcExtension - components: - - pos: 42.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3134 - type: AirlockExternalLocked - components: - - pos: 24.5,-80.5 - parent: 8364 - type: Transform -- uid: 3135 - type: WallSolid - components: - - pos: 36.5,-63.5 - parent: 8364 - type: Transform -- uid: 3136 - type: Grille - components: - - pos: 42.5,-74.5 - parent: 8364 - type: Transform -- uid: 3137 - type: Grille - components: - - pos: 43.5,-74.5 - parent: 8364 - type: Transform -- uid: 3138 - type: Grille - components: - - pos: 44.5,-74.5 - parent: 8364 - type: Transform -- uid: 3139 - type: Grille - components: - - pos: 50.5,-66.5 - parent: 8364 - type: Transform -- uid: 3140 - type: Grille - components: - - pos: 50.5,-65.5 - parent: 8364 - type: Transform -- uid: 3141 - type: Grille - components: - - pos: 50.5,-64.5 - parent: 8364 - type: Transform -- uid: 3142 - type: Grille - components: - - pos: 50.5,-63.5 - parent: 8364 - type: Transform -- uid: 3143 - type: Grille - components: - - pos: 51.5,-63.5 - parent: 8364 - type: Transform -- uid: 3144 - type: Grille - components: - - pos: 52.5,-63.5 - parent: 8364 - type: Transform -- uid: 3145 - type: Grille - components: - - pos: 53.5,-63.5 - parent: 8364 - type: Transform -- uid: 3146 - type: Grille - components: - - pos: 57.5,-63.5 - parent: 8364 - type: Transform -- uid: 3147 - type: Grille - components: - - pos: 56.5,-63.5 - parent: 8364 - type: Transform -- uid: 3148 - type: Grille - components: - - pos: 58.5,-63.5 - parent: 8364 - type: Transform -- uid: 3149 - type: Grille - components: - - pos: 61.5,-63.5 - parent: 8364 - type: Transform -- uid: 3150 - type: Grille - components: - - pos: 62.5,-63.5 - parent: 8364 - type: Transform -- uid: 3151 - type: Grille - components: - - pos: 63.5,-63.5 - parent: 8364 - type: Transform -- uid: 3152 - type: Grille - components: - - pos: 62.5,-70.5 - parent: 8364 - type: Transform -- uid: 3153 - type: Grille - components: - - pos: 60.5,-70.5 - parent: 8364 - type: Transform -- uid: 3154 - type: Grille - components: - - pos: 60.5,-71.5 - parent: 8364 - type: Transform -- uid: 3155 - type: Grille - components: - - pos: 60.5,-72.5 - parent: 8364 - type: Transform -- uid: 3156 - type: CarpetOrange - components: - - pos: 65.5,2.5 - parent: 8364 - type: Transform -- uid: 3157 - type: Grille - components: - - pos: 62.5,-72.5 - parent: 8364 - type: Transform -- uid: 3158 - type: Grille - components: - - pos: 62.5,-73.5 - parent: 8364 - type: Transform -- uid: 3159 - type: Grille - components: - - pos: 63.5,-73.5 - parent: 8364 - type: Transform -- uid: 3160 - type: Grille - components: - - pos: 64.5,-73.5 - parent: 8364 - type: Transform -- uid: 3161 - type: Grille - components: - - pos: 65.5,-73.5 - parent: 8364 - type: Transform -- uid: 3162 - type: Grille - components: - - pos: 69.5,-69.5 - parent: 8364 - type: Transform -- uid: 3163 - type: Grille - components: - - pos: 70.5,-69.5 - parent: 8364 - type: Transform -- uid: 3164 - type: Grille - components: - - pos: 76.5,-65.5 - parent: 8364 - type: Transform -- uid: 3165 - type: Grille - components: - - pos: 77.5,-65.5 - parent: 8364 - type: Transform -- uid: 3166 - type: Grille - components: - - pos: 78.5,-61.5 - parent: 8364 - type: Transform -- uid: 3167 - type: TableReinforcedGlass - components: - - pos: 69.5,-55.5 - parent: 8364 - type: Transform -- uid: 3168 - type: TableReinforcedGlass - components: - - pos: 68.5,-55.5 - parent: 8364 - type: Transform -- uid: 3169 - type: Grille - components: - - pos: 74.5,-61.5 - parent: 8364 - type: Transform -- uid: 3170 - type: Grille - components: - - pos: 73.5,-61.5 - parent: 8364 - type: Transform -- uid: 3171 - type: Grille - components: - - pos: 73.5,-63.5 - parent: 8364 - type: Transform -- uid: 3172 - type: Grille - components: - - pos: 74.5,-63.5 - parent: 8364 - type: Transform -- uid: 3173 - type: Grille - components: - - pos: 34.5,-61.5 - parent: 8364 - type: Transform -- uid: 3174 - type: Grille - components: - - pos: 35.5,-61.5 - parent: 8364 - type: Transform -- uid: 3175 - type: ReinforcedWindow - components: - - pos: 74.5,-61.5 - parent: 8364 - type: Transform -- uid: 3176 - type: ReinforcedWindow - components: - - pos: 73.5,-61.5 - parent: 8364 - type: Transform -- uid: 3177 - type: ReinforcedWindow - components: - - pos: 73.5,-63.5 - parent: 8364 - type: Transform -- uid: 3178 - type: ReinforcedWindow - components: - - pos: 74.5,-63.5 - parent: 8364 - type: Transform -- uid: 3179 - type: ReinforcedWindow - components: - - pos: 15.5,-44.5 - parent: 8364 - type: Transform -- uid: 3180 - type: PoweredSmallLight - components: - - pos: 69.5,-59.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3181 - type: Window - components: - - pos: 78.5,-61.5 - parent: 8364 - type: Transform -- uid: 3182 - type: Window - components: - - pos: 35.5,-61.5 - parent: 8364 - type: Transform -- uid: 3183 - type: Window - components: - - pos: 34.5,-61.5 - parent: 8364 - type: Transform -- uid: 3184 - type: WallSolid - components: - - pos: 75.5,-61.5 - parent: 8364 - type: Transform -- uid: 3185 - type: WallSolid - components: - - pos: 75.5,-62.5 - parent: 8364 - type: Transform -- uid: 3186 - type: WallSolid - components: - - pos: 75.5,-63.5 - parent: 8364 - type: Transform -- uid: 3187 - type: CarpetOrange - components: - - pos: 65.5,1.5 - parent: 8364 - type: Transform -- uid: 3188 - type: WallSolid - components: - - pos: 72.5,-62.5 - parent: 8364 - type: Transform -- uid: 3189 - type: WallSolid - components: - - pos: 72.5,-63.5 - parent: 8364 - type: Transform -- uid: 3190 - type: WallSolid - components: - - pos: 72.5,-59.5 - parent: 8364 - type: Transform -- uid: 3191 - type: WallReinforced - components: - - pos: 87.5,-37.5 - parent: 8364 - type: Transform -- uid: 3192 - type: WallSolid - components: - - pos: 71.5,-63.5 - parent: 8364 - type: Transform -- uid: 3193 - type: WallSolid - components: - - pos: 70.5,-63.5 - parent: 8364 - type: Transform -- uid: 3194 - type: WallSolid - components: - - pos: 69.5,-63.5 - parent: 8364 - type: Transform -- uid: 3195 - type: WallSolid - components: - - pos: 67.5,-66.5 - parent: 8364 - type: Transform -- uid: 3196 - type: PosterLegitNanotrasenLogo - components: - - pos: 13.5,-14.5 - parent: 8364 - type: Transform -- uid: 3197 - type: WallSolid - components: - - pos: 70.5,-67.5 - parent: 8364 - type: Transform -- uid: 3198 - type: WallSolid - components: - - pos: 69.5,-67.5 - parent: 8364 - type: Transform -- uid: 3199 - type: WallSolid - components: - - pos: 68.5,-67.5 - parent: 8364 - type: Transform -- uid: 3200 - type: WallSolid - components: - - pos: 67.5,-67.5 - parent: 8364 - type: Transform -- uid: 3201 - type: WallSolid - components: - - pos: 71.5,-67.5 - parent: 8364 - type: Transform -- uid: 3202 - type: WallSolid - components: - - pos: 68.5,-58.5 - parent: 8364 - type: Transform -- uid: 3203 - type: WallSolid - components: - - pos: 66.5,-63.5 - parent: 8364 - type: Transform -- uid: 3204 - type: WallSolid - components: - - pos: 67.5,-63.5 - parent: 8364 - type: Transform -- uid: 3205 - type: WallSolid - components: - - pos: 71.5,-66.5 - parent: 8364 - type: Transform -- uid: 3206 - type: WallSolid - components: - - pos: 71.5,-64.5 - parent: 8364 - type: Transform -- uid: 3207 - type: WallSolid - components: - - pos: 69.5,-58.5 - parent: 8364 - type: Transform -- uid: 3208 - type: WallSolid - components: - - pos: 70.5,-58.5 - parent: 8364 - type: Transform -- uid: 3209 - type: Grille - components: - - pos: 19.5,-15.5 - parent: 8364 - type: Transform -- uid: 3210 - type: WallReinforced - components: - - pos: 18.5,-23.5 - parent: 8364 - type: Transform -- uid: 3211 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 39.5,-16.5 - parent: 8364 - type: Transform -- uid: 3212 - type: VendingMachineChemDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 18.5,-19.5 - parent: 8364 - type: Transform -- uid: 3213 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 8364 - type: Transform - - devices: - - 2940 - - 2946 - - 14149 - - 22663 - - 19972 - type: DeviceList -- uid: 3214 - type: WallReinforced - components: - - pos: 17.5,-19.5 - parent: 8364 - type: Transform -- uid: 3215 - type: AirlockSecurityGlassLocked - components: - - pos: 38.5,-15.5 - parent: 8364 - type: Transform -- uid: 3216 - type: WallReinforced - components: - - pos: 17.5,-23.5 - parent: 8364 - type: Transform -- uid: 3217 - type: WallReinforced - components: - - pos: 17.5,-22.5 - parent: 8364 - type: Transform -- uid: 3218 - type: WallReinforced - components: - - pos: 17.5,-16.5 - parent: 8364 - type: Transform -- uid: 3219 - type: WallReinforced - components: - - pos: 17.5,-15.5 - parent: 8364 - type: Transform -- uid: 3220 - type: WallReinforced - components: - - pos: 18.5,-15.5 - parent: 8364 - type: Transform -- uid: 3221 - type: WallSolid - components: - - pos: 66.5,-58.5 - parent: 8364 - type: Transform -- uid: 3222 - type: WallSolid - components: - - pos: 66.5,-59.5 - parent: 8364 - type: Transform -- uid: 3223 - type: WallSolid - components: - - pos: 66.5,-62.5 - parent: 8364 - type: Transform -- uid: 3224 - type: WallSolid - components: - - pos: 66.5,-61.5 - parent: 8364 - type: Transform -- uid: 3225 - type: WallSolid - components: - - pos: 49.5,-63.5 - parent: 8364 - type: Transform -- uid: 3226 - type: Girder - components: - - pos: 48.5,-63.5 - parent: 8364 - type: Transform -- uid: 3227 - type: WallSolid - components: - - pos: 46.5,-62.5 - parent: 8364 - type: Transform -- uid: 3228 - type: CableApcExtension - components: - - pos: 23.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3229 - type: WallSolid - components: - - pos: 46.5,-64.5 - parent: 8364 - type: Transform -- uid: 3230 - type: WallSolid - components: - - pos: 45.5,-64.5 - parent: 8364 - type: Transform -- uid: 3231 - type: WallSolid - components: - - pos: 43.5,-64.5 - parent: 8364 - type: Transform -- uid: 3232 - type: WallSolid - components: - - pos: 42.5,-64.5 - parent: 8364 - type: Transform -- uid: 3233 - type: WallSolid - components: - - pos: 42.5,-63.5 - parent: 8364 - type: Transform -- uid: 3234 - type: WallSolid - components: - - pos: 42.5,-62.5 - parent: 8364 - type: Transform -- uid: 3235 - type: WallSolid - components: - - pos: 41.5,-63.5 - parent: 8364 - type: Transform -- uid: 3236 - type: WallSolid - components: - - pos: 39.5,-63.5 - parent: 8364 - type: Transform -- uid: 3237 - type: WallSolid - components: - - pos: 38.5,-63.5 - parent: 8364 - type: Transform -- uid: 3238 - type: DrinkShotGlass - components: - - pos: 9.289231,-50.53353 - parent: 8364 - type: Transform -- uid: 3239 - type: CableApcExtension - components: - - pos: 34.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3240 - type: CableApcExtension - components: - - pos: 36.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3241 - type: ReinforcedWindow - components: - - pos: 31.5,-22.5 - parent: 8364 - type: Transform -- uid: 3242 - type: ReinforcedWindow - components: - - pos: 28.5,-22.5 - parent: 8364 - type: Transform -- uid: 3243 - type: WallSolid - components: - - pos: 44.5,-67.5 - parent: 8364 - type: Transform -- uid: 3244 - type: WallSolid - components: - - pos: 44.5,-69.5 - parent: 8364 - type: Transform -- uid: 3245 - type: WallSolid - components: - - pos: 45.5,-69.5 - parent: 8364 - type: Transform -- uid: 3246 - type: WallSolid - components: - - pos: 46.5,-69.5 - parent: 8364 - type: Transform -- uid: 3247 - type: WallSolid - components: - - pos: 47.5,-69.5 - parent: 8364 - type: Transform -- uid: 3248 - type: WallSolid - components: - - pos: 42.5,-67.5 - parent: 8364 - type: Transform -- uid: 3249 - type: WallSolid - components: - - pos: 42.5,-66.5 - parent: 8364 - type: Transform -- uid: 3250 - type: GrilleBroken - components: - - pos: 42.5,-65.5 - parent: 8364 - type: Transform -- uid: 3251 - type: WallSolid - components: - - pos: 42.5,-69.5 - parent: 8364 - type: Transform -- uid: 3252 - type: ReinforcedWindow - components: - - pos: 29.5,-22.5 - parent: 8364 - type: Transform -- uid: 3253 - type: TargetHuman - components: - - pos: 59.5,-30.5 - parent: 8364 - type: Transform -- uid: 3254 - type: WallSolid - components: - - pos: 39.5,-69.5 - parent: 8364 - type: Transform -- uid: 3255 - type: WallSolid - components: - - pos: 34.5,-65.5 - parent: 8364 - type: Transform -- uid: 3256 - type: WallSolid - components: - - pos: 34.5,-68.5 - parent: 8364 - type: Transform -- uid: 3257 - type: WallSolid - components: - - pos: 34.5,-66.5 - parent: 8364 - type: Transform -- uid: 3258 - type: WallSolid - components: - - pos: 34.5,-67.5 - parent: 8364 - type: Transform -- uid: 3259 - type: WallSolid - components: - - pos: 38.5,-67.5 - parent: 8364 - type: Transform -- uid: 3260 - type: WallSolid - components: - - pos: 41.5,-67.5 - parent: 8364 - type: Transform -- uid: 3261 - type: WallSolid - components: - - pos: 39.5,-67.5 - parent: 8364 - type: Transform -- uid: 3262 - type: TableReinforced - components: - - pos: 30.5,-19.5 - parent: 8364 - type: Transform -- uid: 3263 - type: SheetPlasma1 - components: - - pos: 18.645273,-21.635523 - parent: 8364 - type: Transform -- uid: 3264 - type: CableApcExtension - components: - - pos: 33.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3265 - type: WallSolid - components: - - pos: 32.5,-61.5 - parent: 8364 - type: Transform -- uid: 3266 - type: WallSolid - components: - - pos: 33.5,-61.5 - parent: 8364 - type: Transform -- uid: 3267 - type: FloorDrain - components: - - pos: 20.5,-18.5 - parent: 8364 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 3268 - type: WallSolid - components: - - pos: 33.5,-58.5 - parent: 8364 - type: Transform -- uid: 3269 - type: WallSolid - components: - - pos: 34.5,-58.5 - parent: 8364 - type: Transform -- uid: 3270 - type: TableGlass - components: - - pos: 18.5,-21.5 - parent: 8364 - type: Transform -- uid: 3271 - type: TableReinforced - components: - - pos: 20.5,-15.5 - parent: 8364 - type: Transform -- uid: 3272 - type: Table - components: - - pos: 18.5,-17.5 - parent: 8364 - type: Transform -- uid: 3273 - type: CableApcExtension - components: - - pos: 39.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3274 - type: CableApcExtension - components: - - pos: 35.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3275 - type: CableApcExtension - components: - - pos: 38.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3276 - type: CableApcExtension - components: - - pos: 34.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3277 - type: WallReinforced - components: - - pos: -39.5,-47.5 - parent: 8364 - type: Transform -- uid: 3278 - type: WallSolid - components: - - pos: -34.5,-47.5 - parent: 8364 - type: Transform -- uid: 3279 - type: WallSolid - components: - - pos: -35.5,-47.5 - parent: 8364 - type: Transform -- uid: 3280 - type: DogBed - components: - - pos: 21.5,-18.5 - parent: 8364 - type: Transform -- uid: 3281 - type: Table - components: - - pos: -4.5,-14.5 - parent: 8364 - type: Transform -- uid: 3282 - type: WallSolid - components: - - pos: -3.5,-40.5 - parent: 8364 - type: Transform -- uid: 3283 - type: WallSolid - components: - - pos: -4.5,-40.5 - parent: 8364 - type: Transform -- uid: 3284 - type: WallSolid - components: - - pos: -5.5,-40.5 - parent: 8364 - type: Transform -- uid: 3285 - type: WallSolid - components: - - pos: -6.5,-40.5 - parent: 8364 - type: Transform -- uid: 3286 - type: WallSolid - components: - - pos: -7.5,-40.5 - parent: 8364 - type: Transform -- uid: 3287 - type: WallSolid - components: - - pos: -8.5,-40.5 - parent: 8364 - type: Transform -- uid: 3288 - type: WallSolid - components: - - pos: -9.5,-40.5 - parent: 8364 - type: Transform -- uid: 3289 - type: WallSolid - components: - - pos: -10.5,-40.5 - parent: 8364 - type: Transform -- uid: 3290 - type: WallReinforced - components: - - pos: 17.5,-20.5 - parent: 8364 - type: Transform -- uid: 3291 - type: SheetPlasma1 - components: - - pos: 18.645273,-21.635523 - parent: 8364 - type: Transform -- uid: 3292 - type: WallReinforced - components: - - pos: -11.5,-37.5 - parent: 8364 - type: Transform -- uid: 3293 - type: WallReinforced - components: - - pos: -11.5,-35.5 - parent: 8364 - type: Transform -- uid: 3294 - type: WallSolid - components: - - pos: -3.5,-46.5 - parent: 8364 - type: Transform -- uid: 3295 - type: WallSolid - components: - - pos: -4.5,-46.5 - parent: 8364 - type: Transform -- uid: 3296 - type: WallSolid - components: - - pos: -5.5,-46.5 - parent: 8364 - type: Transform -- uid: 3297 - type: WallSolid - components: - - pos: -6.5,-46.5 - parent: 8364 - type: Transform -- uid: 3298 - type: WallSolid - components: - - pos: -7.5,-46.5 - parent: 8364 - type: Transform -- uid: 3299 - type: WallSolid - components: - - pos: -8.5,-46.5 - parent: 8364 - type: Transform -- uid: 3300 - type: WallReinforced - components: - - pos: 69.5,-38.5 - parent: 8364 - type: Transform -- uid: 3301 - type: WallSolid - components: - - pos: -10.5,-46.5 - parent: 8364 - type: Transform -- uid: 3302 - type: WallSolid - components: - - pos: -11.5,-46.5 - parent: 8364 - type: Transform -- uid: 3303 - type: WallSolid - components: - - pos: -11.5,-45.5 - parent: 8364 - type: Transform -- uid: 3304 - type: WallReinforced - components: - - pos: 68.5,-38.5 - parent: 8364 - type: Transform -- uid: 3305 - type: WallReinforced - components: - - pos: 69.5,-42.5 - parent: 8364 - type: Transform -- uid: 3306 - type: WallReinforced - components: - - pos: 68.5,-42.5 - parent: 8364 - type: Transform -- uid: 3307 - type: Grille - components: - - pos: -12.5,-43.5 - parent: 8364 - type: Transform -- uid: 3308 - type: Grille - components: - - pos: -13.5,-43.5 - parent: 8364 - type: Transform -- uid: 3309 - type: Grille - components: - - pos: -13.5,-44.5 - parent: 8364 - type: Transform -- uid: 3310 - type: Grille - components: - - pos: -11.5,-38.5 - parent: 8364 - type: Transform -- uid: 3311 - type: Grille - components: - - pos: -12.5,-38.5 - parent: 8364 - type: Transform -- uid: 3312 - type: Grille - components: - - pos: -13.5,-38.5 - parent: 8364 - type: Transform -- uid: 3313 - type: Grille - components: - - pos: -14.5,-38.5 - parent: 8364 - type: Transform -- uid: 3314 - type: Grille - components: - - pos: -14.5,-37.5 - parent: 8364 - type: Transform -- uid: 3315 - type: Grille - components: - - pos: -14.5,-36.5 - parent: 8364 - type: Transform -- uid: 3316 - type: Grille - components: - - pos: -14.5,-35.5 - parent: 8364 - type: Transform -- uid: 3317 - type: Grille - components: - - pos: -14.5,-34.5 - parent: 8364 - type: Transform -- uid: 3318 - type: Grille - components: - - pos: -13.5,-34.5 - parent: 8364 - type: Transform -- uid: 3319 - type: Grille - components: - - pos: -12.5,-34.5 - parent: 8364 - type: Transform -- uid: 3320 - type: Grille - components: - - pos: -11.5,-34.5 - parent: 8364 - type: Transform -- uid: 3321 - type: WallReinforced - components: - - pos: 87.5,-39.5 - parent: 8364 - type: Transform -- uid: 3322 - type: WallReinforced - components: - - pos: 89.5,-32.5 - parent: 8364 - type: Transform -- uid: 3323 - type: WallReinforced - components: - - pos: 90.5,-32.5 - parent: 8364 - type: Transform -- uid: 3324 - type: WallSolid - components: - - pos: -13.5,-46.5 - parent: 8364 - type: Transform -- uid: 3325 - type: WallReinforced - components: - - pos: -4.5,-53.5 - parent: 8364 - type: Transform -- uid: 3326 - type: WallReinforced - components: - - pos: -4.5,-52.5 - parent: 8364 - type: Transform -- uid: 3327 - type: WallReinforced - components: - - pos: -4.5,-51.5 - parent: 8364 - type: Transform -- uid: 3328 - type: WallReinforced - components: - - pos: -4.5,-50.5 - parent: 8364 - type: Transform -- uid: 3329 - type: WallReinforced - components: - - pos: -4.5,-49.5 - parent: 8364 - type: Transform -- uid: 3330 - type: WallReinforced - components: - - pos: -5.5,-49.5 - parent: 8364 - type: Transform -- uid: 3331 - type: WallReinforced - components: - - pos: -5.5,-48.5 - parent: 8364 - type: Transform -- uid: 3332 - type: WallReinforced - components: - - pos: -6.5,-48.5 - parent: 8364 - type: Transform -- uid: 3333 - type: WallReinforced - components: - - pos: -7.5,-48.5 - parent: 8364 - type: Transform -- uid: 3334 - type: WallReinforced - components: - - pos: -8.5,-48.5 - parent: 8364 - type: Transform -- uid: 3335 - type: WallReinforced - components: - - pos: -9.5,-48.5 - parent: 8364 - type: Transform -- uid: 3336 - type: WallReinforced - components: - - pos: -10.5,-48.5 - parent: 8364 - type: Transform -- uid: 3337 - type: WallReinforced - components: - - pos: -11.5,-48.5 - parent: 8364 - type: Transform -- uid: 3338 - type: WallReinforced - components: - - pos: -12.5,-48.5 - parent: 8364 - type: Transform -- uid: 3339 - type: WallReinforced - components: - - pos: -13.5,-48.5 - parent: 8364 - type: Transform -- uid: 3340 - type: WallReinforced - components: - - pos: -14.5,-48.5 - parent: 8364 - type: Transform -- uid: 3341 - type: WallReinforced - components: - - pos: -15.5,-48.5 - parent: 8364 - type: Transform -- uid: 3342 - type: WallReinforced - components: - - pos: -16.5,-48.5 - parent: 8364 - type: Transform -- uid: 3343 - type: WallReinforced - components: - - pos: -17.5,-48.5 - parent: 8364 - type: Transform -- uid: 3344 - type: ReinforcedWindow - components: - - pos: -12.5,-43.5 - parent: 8364 - type: Transform -- uid: 3345 - type: ReinforcedWindow - components: - - pos: -13.5,-43.5 - parent: 8364 - type: Transform -- uid: 3346 - type: ReinforcedWindow - components: - - pos: -13.5,-44.5 - parent: 8364 - type: Transform -- uid: 3347 - type: ReinforcedWindow - components: - - pos: -11.5,-38.5 - parent: 8364 - type: Transform -- uid: 3348 - type: ReinforcedWindow - components: - - pos: -12.5,-38.5 - parent: 8364 - type: Transform -- uid: 3349 - type: ReinforcedWindow - components: - - pos: -13.5,-38.5 - parent: 8364 - type: Transform -- uid: 3350 - type: ReinforcedWindow - components: - - pos: -14.5,-38.5 - parent: 8364 - type: Transform -- uid: 3351 - type: ReinforcedWindow - components: - - pos: -14.5,-37.5 - parent: 8364 - type: Transform -- uid: 3352 - type: ReinforcedWindow - components: - - pos: -14.5,-36.5 - parent: 8364 - type: Transform -- uid: 3353 - type: ReinforcedWindow - components: - - pos: -14.5,-35.5 - parent: 8364 - type: Transform -- uid: 3354 - type: ReinforcedWindow - components: - - pos: -14.5,-34.5 - parent: 8364 - type: Transform -- uid: 3355 - type: ReinforcedWindow - components: - - pos: -13.5,-34.5 - parent: 8364 - type: Transform -- uid: 3356 - type: ReinforcedWindow - components: - - pos: -11.5,-34.5 - parent: 8364 - type: Transform -- uid: 3357 - type: ReinforcedWindow - components: - - pos: -12.5,-34.5 - parent: 8364 - type: Transform -- uid: 3358 - type: WallReinforced - components: - - pos: -5.5,-58.5 - parent: 8364 - type: Transform -- uid: 3359 - type: WallReinforced - components: - - pos: -6.5,-58.5 - parent: 8364 - type: Transform -- uid: 3360 - type: WallReinforced - components: - - pos: -7.5,-58.5 - parent: 8364 - type: Transform -- uid: 3361 - type: WallReinforced - components: - - pos: -8.5,-58.5 - parent: 8364 - type: Transform -- uid: 3362 - type: WallReinforced - components: - - pos: -9.5,-58.5 - parent: 8364 - type: Transform -- uid: 3363 - type: WallReinforced - components: - - pos: -10.5,-58.5 - parent: 8364 - type: Transform -- uid: 3364 - type: WallReinforced - components: - - pos: -11.5,-58.5 - parent: 8364 - type: Transform -- uid: 3365 - type: WallReinforced - components: - - pos: -12.5,-58.5 - parent: 8364 - type: Transform -- uid: 3366 - type: WallReinforced - components: - - pos: -13.5,-58.5 - parent: 8364 - type: Transform -- uid: 3367 - type: WallReinforced - components: - - pos: -14.5,-58.5 - parent: 8364 - type: Transform -- uid: 3368 - type: WallReinforced - components: - - pos: -15.5,-58.5 - parent: 8364 - type: Transform -- uid: 3369 - type: WallReinforced - components: - - pos: -16.5,-58.5 - parent: 8364 - type: Transform -- uid: 3370 - type: WallReinforced - components: - - pos: -17.5,-58.5 - parent: 8364 - type: Transform -- uid: 3371 - type: WallReinforced - components: - - pos: -17.5,-56.5 - parent: 8364 - type: Transform -- uid: 3372 - type: WallReinforced - components: - - pos: -17.5,-55.5 - parent: 8364 - type: Transform -- uid: 3373 - type: WallReinforced - components: - - pos: -17.5,-54.5 - parent: 8364 - type: Transform -- uid: 3374 - type: WallReinforced - components: - - pos: -17.5,-53.5 - parent: 8364 - type: Transform -- uid: 3375 - type: WallReinforced - components: - - pos: -17.5,-52.5 - parent: 8364 - type: Transform -- uid: 3376 - type: WallReinforced - components: - - pos: -17.5,-51.5 - parent: 8364 - type: Transform -- uid: 3377 - type: WallReinforced - components: - - pos: -17.5,-50.5 - parent: 8364 - type: Transform -- uid: 3378 - type: WallReinforced - components: - - pos: -17.5,-49.5 - parent: 8364 - type: Transform -- uid: 3379 - type: WallReinforced - components: - - pos: -17.5,-57.5 - parent: 8364 - type: Transform -- uid: 3380 - type: ReinforcedWindow - components: - - pos: -9.5,-57.5 - parent: 8364 - type: Transform -- uid: 3381 - type: ReinforcedWindow - components: - - pos: -9.5,-56.5 - parent: 8364 - type: Transform -- uid: 3382 - type: ReinforcedWindow - components: - - pos: -9.5,-55.5 - parent: 8364 - type: Transform -- uid: 3383 - type: ReinforcedWindow - components: - - pos: -9.5,-54.5 - parent: 8364 - type: Transform -- uid: 3384 - type: ReinforcedWindow - components: - - pos: -10.5,-54.5 - parent: 8364 - type: Transform -- uid: 3385 - type: ReinforcedWindow - components: - - pos: -7.5,-52.5 - parent: 8364 - type: Transform -- uid: 3386 - type: ReinforcedWindow - components: - - pos: -5.5,-52.5 - parent: 8364 - type: Transform -- uid: 3387 - type: ReinforcedWindow - components: - - pos: -9.5,-49.5 - parent: 8364 - type: Transform -- uid: 3388 - type: ReinforcedWindow - components: - - pos: -9.5,-50.5 - parent: 8364 - type: Transform -- uid: 3389 - type: ReinforcedWindow - components: - - pos: -9.5,-51.5 - parent: 8364 - type: Transform -- uid: 3390 - type: ReinforcedWindow - components: - - pos: -9.5,-52.5 - parent: 8364 - type: Transform -- uid: 3391 - type: ReinforcedWindow - components: - - pos: -10.5,-52.5 - parent: 8364 - type: Transform -- uid: 3392 - type: Grille - components: - - pos: -5.5,-52.5 - parent: 8364 - type: Transform -- uid: 3393 - type: Grille - components: - - pos: -7.5,-52.5 - parent: 8364 - type: Transform -- uid: 3394 - type: Grille - components: - - pos: -9.5,-52.5 - parent: 8364 - type: Transform -- uid: 3395 - type: Grille - components: - - pos: -9.5,-51.5 - parent: 8364 - type: Transform -- uid: 3396 - type: Grille - components: - - pos: -9.5,-50.5 - parent: 8364 - type: Transform -- uid: 3397 - type: Grille - components: - - pos: -9.5,-49.5 - parent: 8364 - type: Transform -- uid: 3398 - type: Grille - components: - - pos: -10.5,-52.5 - parent: 8364 - type: Transform -- uid: 3399 - type: Grille - components: - - pos: -10.5,-54.5 - parent: 8364 - type: Transform -- uid: 3400 - type: Grille - components: - - pos: -9.5,-54.5 - parent: 8364 - type: Transform -- uid: 3401 - type: Grille - components: - - pos: -9.5,-55.5 - parent: 8364 - type: Transform -- uid: 3402 - type: Grille - components: - - pos: -9.5,-56.5 - parent: 8364 - type: Transform -- uid: 3403 - type: Grille - components: - - pos: -9.5,-57.5 - parent: 8364 - type: Transform -- uid: 3404 - type: WallSolid - components: - - pos: -8.5,-54.5 - parent: 8364 - type: Transform -- uid: 3405 - type: WallSolid - components: - - pos: -8.5,-52.5 - parent: 8364 - type: Transform -- uid: 3406 - type: WallSolid - components: - - pos: -17.5,-59.5 - parent: 8364 - type: Transform -- uid: 3407 - type: WallReinforced - components: - - pos: 91.5,-32.5 - parent: 8364 - type: Transform -- uid: 3408 - type: WallReinforced - components: - - pos: -14.5,-60.5 - parent: 8364 - type: Transform -- uid: 3409 - type: WallReinforced - components: - - pos: -13.5,-60.5 - parent: 8364 - type: Transform -- uid: 3410 - type: WallReinforced - components: - - pos: -12.5,-60.5 - parent: 8364 - type: Transform -- uid: 3411 - type: WallReinforced - components: - - pos: -11.5,-60.5 - parent: 8364 - type: Transform -- uid: 3412 - type: WallReinforced - components: - - pos: -10.5,-60.5 - parent: 8364 - type: Transform -- uid: 3413 - type: WallReinforced - components: - - pos: -9.5,-60.5 - parent: 8364 - type: Transform -- uid: 3414 - type: WallReinforced - components: - - pos: -8.5,-60.5 - parent: 8364 - type: Transform -- uid: 3415 - type: WallReinforced - components: - - pos: -7.5,-60.5 - parent: 8364 - type: Transform -- uid: 3416 - type: WallReinforced - components: - - pos: -6.5,-60.5 - parent: 8364 - type: Transform -- uid: 3417 - type: WallReinforced - components: - - pos: -5.5,-60.5 - parent: 8364 - type: Transform -- uid: 3418 - type: WallReinforced - components: - - pos: -4.5,-60.5 - parent: 8364 - type: Transform -- uid: 3419 - type: WallReinforced - components: - - pos: -3.5,-60.5 - parent: 8364 - type: Transform -- uid: 3420 - type: WallReinforced - components: - - pos: -2.5,-60.5 - parent: 8364 - type: Transform -- uid: 3421 - type: WallReinforced - components: - - pos: -1.5,-60.5 - parent: 8364 - type: Transform -- uid: 3422 - type: WallReinforced - components: - - pos: -0.5,-60.5 - parent: 8364 - type: Transform -- uid: 3423 - type: WallReinforced - components: - - pos: 0.5,-60.5 - parent: 8364 - type: Transform -- uid: 3424 - type: WallReinforced - components: - - pos: 0.5,-59.5 - parent: 8364 - type: Transform -- uid: 3425 - type: WallSolid - components: - - pos: -17.5,-63.5 - parent: 8364 - type: Transform -- uid: 3426 - type: WallReinforced - components: - - pos: 91.5,-31.5 - parent: 8364 - type: Transform -- uid: 3427 - type: WallReinforced - components: - - pos: 92.5,-31.5 - parent: 8364 - type: Transform -- uid: 3428 - type: WallReinforced - components: - - pos: 93.5,-31.5 - parent: 8364 - type: Transform -- uid: 3429 - type: WallReinforced - components: - - pos: -14.5,-66.5 - parent: 8364 - type: Transform -- uid: 3430 - type: WallReinforced - components: - - pos: -14.5,-65.5 - parent: 8364 - type: Transform -- uid: 3431 - type: WallReinforced - components: - - pos: -14.5,-64.5 - parent: 8364 - type: Transform -- uid: 3432 - type: WallReinforced - components: - - pos: -14.5,-63.5 - parent: 8364 - type: Transform -- uid: 3433 - type: WallReinforced - components: - - pos: -14.5,-62.5 - parent: 8364 - type: Transform -- uid: 3434 - type: WallReinforced - components: - - pos: -14.5,-61.5 - parent: 8364 - type: Transform -- uid: 3435 - type: WallSolidRust - components: - - pos: 87.5,-29.5 - parent: 8364 - type: Transform -- uid: 3436 - type: WallReinforced - components: - - pos: -18.5,-67.5 - parent: 8364 - type: Transform -- uid: 3437 - type: WallReinforced - components: - - pos: -19.5,-67.5 - parent: 8364 - type: Transform -- uid: 3438 - type: WallSolidRust - components: - - pos: 87.5,-24.5 - parent: 8364 - type: Transform -- uid: 3439 - type: WallReinforced - components: - - pos: -16.5,-67.5 - parent: 8364 - type: Transform -- uid: 3440 - type: WallReinforced - components: - - pos: -14.5,-67.5 - parent: 8364 - type: Transform -- uid: 3441 - type: WallReinforced - components: - - pos: 87.5,-22.5 - parent: 8364 - type: Transform -- uid: 3442 - type: WallReinforced - components: - - pos: 87.5,-21.5 - parent: 8364 - type: Transform -- uid: 3443 - type: WallReinforced - components: - - pos: 87.5,-20.5 - parent: 8364 - type: Transform -- uid: 3444 - type: WallReinforced - components: - - pos: 86.5,-20.5 - parent: 8364 - type: Transform -- uid: 3445 - type: WallReinforced - components: - - pos: 82.5,-20.5 - parent: 8364 - type: Transform -- uid: 3446 - type: Grille - components: - - pos: -21.5,-61.5 - parent: 8364 - type: Transform -- uid: 3447 - type: Grille - components: - - pos: -22.5,-61.5 - parent: 8364 - type: Transform -- uid: 3448 - type: Grille - components: - - pos: -23.5,-61.5 - parent: 8364 - type: Transform -- uid: 3449 - type: Grille - components: - - pos: -24.5,-61.5 - parent: 8364 - type: Transform -- uid: 3450 - type: Grille - components: - - pos: -25.5,-61.5 - parent: 8364 - type: Transform -- uid: 3451 - type: Grille - components: - - pos: -26.5,-61.5 - parent: 8364 - type: Transform -- uid: 3452 - type: Grille - components: - - pos: -27.5,-61.5 - parent: 8364 - type: Transform -- uid: 3453 - type: Grille - components: - - pos: -28.5,-61.5 - parent: 8364 - type: Transform -- uid: 3454 - type: Grille - components: - - pos: -29.5,-61.5 - parent: 8364 - type: Transform -- uid: 3455 - type: WallReinforced - components: - - pos: 85.5,-20.5 - parent: 8364 - type: Transform -- uid: 3456 - type: WallSolid - components: - - pos: -19.5,-59.5 - parent: 8364 - type: Transform -- uid: 3457 - type: WallReinforced - components: - - pos: 84.5,-20.5 - parent: 8364 - type: Transform -- uid: 3458 - type: WallSolid - components: - - pos: -30.5,-59.5 - parent: 8364 - type: Transform -- uid: 3459 - type: WallSolid - components: - - pos: -29.5,-59.5 - parent: 8364 - type: Transform -- uid: 3460 - type: TintedWindow - components: - - pos: 29.5,-26.5 - parent: 8364 - type: Transform -- uid: 3461 - type: WallSolid - components: - - pos: -27.5,-59.5 - parent: 8364 - type: Transform -- uid: 3462 - type: TintedWindow - components: - - pos: 33.5,-26.5 - parent: 8364 - type: Transform -- uid: 3463 - type: WallSolid - components: - - pos: -25.5,-59.5 - parent: 8364 - type: Transform -- uid: 3464 - type: WallSolid - components: - - pos: -24.5,-59.5 - parent: 8364 - type: Transform -- uid: 3465 - type: WallSolid - components: - - pos: -23.5,-59.5 - parent: 8364 - type: Transform -- uid: 3466 - type: WallSolid - components: - - pos: -22.5,-59.5 - parent: 8364 - type: Transform -- uid: 3467 - type: WallSolid - components: - - pos: -21.5,-59.5 - parent: 8364 - type: Transform -- uid: 3468 - type: ReinforcedWindow - components: - - pos: -21.5,-61.5 - parent: 8364 - type: Transform -- uid: 3469 - type: ReinforcedWindow - components: - - pos: -22.5,-61.5 - parent: 8364 - type: Transform -- uid: 3470 - type: ReinforcedWindow - components: - - pos: -23.5,-61.5 - parent: 8364 - type: Transform -- uid: 3471 - type: ReinforcedWindow - components: - - pos: -24.5,-61.5 - parent: 8364 - type: Transform -- uid: 3472 - type: ReinforcedWindow - components: - - pos: -25.5,-61.5 - parent: 8364 - type: Transform -- uid: 3473 - type: ReinforcedWindow - components: - - pos: -27.5,-61.5 - parent: 8364 - type: Transform -- uid: 3474 - type: ReinforcedWindow - components: - - pos: -26.5,-61.5 - parent: 8364 - type: Transform -- uid: 3475 - type: ReinforcedWindow - components: - - pos: -28.5,-61.5 - parent: 8364 - type: Transform -- uid: 3476 - type: ReinforcedWindow - components: - - pos: -29.5,-61.5 - parent: 8364 - type: Transform -- uid: 3477 - type: WallSolid - components: - - pos: -30.5,-58.5 - parent: 8364 - type: Transform -- uid: 3478 - type: WallSolid - components: - - pos: -30.5,-57.5 - parent: 8364 - type: Transform -- uid: 3479 - type: WallSolid - components: - - pos: -30.5,-56.5 - parent: 8364 - type: Transform -- uid: 3480 - type: SpawnMobWalter - components: - - pos: 21.5,-18.5 - parent: 8364 - type: Transform -- uid: 3481 - type: WallSolid - components: - - pos: -31.5,-55.5 - parent: 8364 - type: Transform -- uid: 3482 - type: WallSolid - components: - - pos: -32.5,-55.5 - parent: 8364 - type: Transform -- uid: 3483 - type: WallSolid - components: - - pos: -30.5,-52.5 - parent: 8364 - type: Transform -- uid: 3484 - type: WallSolid - components: - - pos: -30.5,-51.5 - parent: 8364 - type: Transform -- uid: 3485 - type: WallSolid - components: - - pos: -30.5,-50.5 - parent: 8364 - type: Transform -- uid: 3486 - type: ReinforcedWindow - components: - - pos: 15.5,-42.5 - parent: 8364 - type: Transform -- uid: 3487 - type: WallSolid - components: - - pos: -30.5,-49.5 - parent: 8364 - type: Transform -- uid: 3488 - type: WallSolid - components: - - pos: -29.5,-48.5 - parent: 8364 - type: Transform -- uid: 3489 - type: WallSolid - components: - - pos: -28.5,-48.5 - parent: 8364 - type: Transform -- uid: 3490 - type: WallSolid - components: - - pos: -27.5,-48.5 - parent: 8364 - type: Transform -- uid: 3491 - type: ReinforcedWindow - components: - - pos: 32.5,-22.5 - parent: 8364 - type: Transform -- uid: 3492 - type: WallSolid - components: - - pos: -25.5,-48.5 - parent: 8364 - type: Transform -- uid: 3493 - type: WallSolid - components: - - pos: -24.5,-48.5 - parent: 8364 - type: Transform -- uid: 3494 - type: ReinforcedPlasmaWindow - components: - - pos: 47.5,-54.5 - parent: 8364 - type: Transform -- uid: 3495 - type: ReinforcedPlasmaWindow - components: - - pos: 46.5,-54.5 - parent: 8364 - type: Transform -- uid: 3496 - type: ReinforcedPlasmaWindow - components: - - pos: 43.5,-54.5 - parent: 8364 - type: Transform -- uid: 3497 - type: ReinforcedPlasmaWindow - components: - - pos: 44.5,-54.5 - parent: 8364 - type: Transform -- uid: 3498 - type: WallSolid - components: - - pos: -19.5,-48.5 - parent: 8364 - type: Transform -- uid: 3499 - type: WallSolid - components: - - pos: -19.5,-49.5 - parent: 8364 - type: Transform -- uid: 3500 - type: WallSolid - components: - - pos: -19.5,-50.5 - parent: 8364 - type: Transform -- uid: 3501 - type: WallSolid - components: - - pos: -19.5,-51.5 - parent: 8364 - type: Transform -- uid: 3502 - type: WallSolid - components: - - pos: -19.5,-52.5 - parent: 8364 - type: Transform -- uid: 3503 - type: WallSolid - components: - - pos: -34.5,-55.5 - parent: 8364 - type: Transform -- uid: 3504 - type: WallSolid - components: - - pos: -19.5,-54.5 - parent: 8364 - type: Transform -- uid: 3505 - type: WallSolid - components: - - pos: -19.5,-55.5 - parent: 8364 - type: Transform -- uid: 3506 - type: WallSolid - components: - - pos: -19.5,-56.5 - parent: 8364 - type: Transform -- uid: 3507 - type: ReinforcedWindow - components: - - pos: 42.5,-60.5 - parent: 8364 - type: Transform -- uid: 3508 - type: WallSolid - components: - - pos: -19.5,-58.5 - parent: 8364 - type: Transform -- uid: 3509 - type: WallSolid - components: - - pos: -35.5,-55.5 - parent: 8364 - type: Transform -- uid: 3510 - type: WallSolid - components: - - pos: -35.5,-54.5 - parent: 8364 - type: Transform -- uid: 3511 - type: WallSolid - components: - - pos: -35.5,-53.5 - parent: 8364 - type: Transform -- uid: 3512 - type: WallSolid - components: - - pos: -35.5,-52.5 - parent: 8364 - type: Transform -- uid: 3513 - type: ReinforcedWindow - components: - - pos: 42.5,-59.5 - parent: 8364 - type: Transform -- uid: 3514 - type: WallSolid - components: - - pos: -32.5,-52.5 - parent: 8364 - type: Transform -- uid: 3515 - type: WallSolid - components: - - pos: -31.5,-52.5 - parent: 8364 - type: Transform -- uid: 3516 - type: WallSolid - components: - - pos: -34.5,-59.5 - parent: 8364 - type: Transform -- uid: 3517 - type: ReinforcedWindow - components: - - pos: 42.5,-58.5 - parent: 8364 - type: Transform -- uid: 3518 - type: WallSolid - components: - - pos: -35.5,-58.5 - parent: 8364 - type: Transform -- uid: 3519 - type: WallSolid - components: - - pos: -35.5,-57.5 - parent: 8364 - type: Transform -- uid: 3520 - type: WallSolid - components: - - pos: -32.5,-58.5 - parent: 8364 - type: Transform -- uid: 3521 - type: Grille - components: - - pos: -32.5,-59.5 - parent: 8364 - type: Transform -- uid: 3522 - type: WallReinforced - components: - - pos: -35.5,-59.5 - parent: 8364 - type: Transform -- uid: 3523 - type: WallSolid - components: - - pos: -30.5,-48.5 - parent: 8364 - type: Transform -- uid: 3524 - type: ReinforcedWindow - components: - - pos: 15.5,-40.5 - parent: 8364 - type: Transform -- uid: 3525 - type: WallReinforced - components: - - pos: -39.5,-51.5 - parent: 8364 - type: Transform -- uid: 3526 - type: WallSolid - components: - - pos: -37.5,-47.5 - parent: 8364 - type: Transform -- uid: 3527 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-52.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3528 - type: WallReinforced - components: - - pos: -40.5,-50.5 - parent: 8364 - type: Transform -- uid: 3529 - type: Grille - components: - - pos: -37.5,-51.5 - parent: 8364 - type: Transform -- uid: 3530 - type: Grille - components: - - pos: -36.5,-51.5 - parent: 8364 - type: Transform -- uid: 3531 - type: ReinforcedWindow - components: - - pos: 42.5,-57.5 - parent: 8364 - type: Transform -- uid: 3532 - type: Grille - components: - - pos: 15.5,-44.5 - parent: 8364 - type: Transform -- uid: 3533 - type: WallReinforced - components: - - pos: -41.5,-51.5 - parent: 8364 - type: Transform -- uid: 3534 - type: WallReinforced - components: - - pos: -38.5,-50.5 - parent: 8364 - type: Transform -- uid: 3535 - type: BlastDoor - components: - - pos: 27.5,-41.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22020 - type: SignalReceiver -- uid: 3536 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-14.5 - parent: 8364 - type: Transform -- uid: 3537 - type: TintedWindow - components: - - pos: 31.5,-26.5 - parent: 8364 - type: Transform -- uid: 3538 - type: WallReinforced - components: - - pos: 17.5,-18.5 - parent: 8364 - type: Transform -- uid: 3539 - type: ComputerFrame - components: - - rot: 3.141592653589793 rad - pos: -1.5,-14.5 - parent: 8364 - type: Transform -- uid: 3540 - type: ComputerFrame - components: - - rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 8364 - type: Transform -- uid: 3541 - type: WindowReinforcedDirectional - components: - - pos: -4.5,-14.5 - parent: 8364 - type: Transform -- uid: 3542 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -4.5,-14.5 - parent: 8364 - type: Transform -- uid: 3543 - type: WallReinforced - components: - - pos: 83.5,-20.5 - parent: 8364 - type: Transform -- uid: 3544 - type: WallReinforced - components: - - pos: 82.5,-18.5 - parent: 8364 - type: Transform -- uid: 3545 - type: WallReinforced - components: - - pos: -36.5,-59.5 - parent: 8364 - type: Transform -- uid: 3546 - type: WallReinforced - components: - - pos: -37.5,-59.5 - parent: 8364 - type: Transform -- uid: 3547 - type: WallReinforced - components: - - pos: -38.5,-59.5 - parent: 8364 - type: Transform -- uid: 3548 - type: WallReinforced - components: - - pos: -39.5,-59.5 - parent: 8364 - type: Transform -- uid: 3549 - type: WallReinforced - components: - - pos: -35.5,-62.5 - parent: 8364 - type: Transform -- uid: 3550 - type: WallReinforced - components: - - pos: -35.5,-63.5 - parent: 8364 - type: Transform -- uid: 3551 - type: WallReinforced - components: - - pos: -36.5,-63.5 - parent: 8364 - type: Transform -- uid: 3552 - type: WallReinforced - components: - - pos: -37.5,-63.5 - parent: 8364 - type: Transform -- uid: 3553 - type: WallReinforced - components: - - pos: -38.5,-63.5 - parent: 8364 - type: Transform -- uid: 3554 - type: WallReinforced - components: - - pos: -39.5,-60.5 - parent: 8364 - type: Transform -- uid: 3555 - type: WallReinforced - components: - - pos: -40.5,-60.5 - parent: 8364 - type: Transform -- uid: 3556 - type: WallReinforced - components: - - pos: -41.5,-60.5 - parent: 8364 - type: Transform -- uid: 3557 - type: Grille - components: - - pos: -41.5,-62.5 - parent: 8364 - type: Transform -- uid: 3558 - type: Grille - components: - - pos: -39.5,-63.5 - parent: 8364 - type: Transform -- uid: 3559 - type: ReinforcedWindow - components: - - pos: -39.5,-62.5 - parent: 8364 - type: Transform -- uid: 3560 - type: Grille - components: - - pos: -40.5,-62.5 - parent: 8364 - type: Transform -- uid: 3561 - type: ReinforcedWindow - components: - - pos: -39.5,-63.5 - parent: 8364 - type: Transform -- uid: 3562 - type: ReinforcedWindow - components: - - pos: -40.5,-62.5 - parent: 8364 - type: Transform -- uid: 3563 - type: Grille - components: - - pos: -39.5,-62.5 - parent: 8364 - type: Transform -- uid: 3564 - type: ReinforcedWindow - components: - - pos: -41.5,-62.5 - parent: 8364 - type: Transform -- uid: 3565 - type: ReinforcedWindow - components: - - pos: -36.5,-51.5 - parent: 8364 - type: Transform -- uid: 3566 - type: ReinforcedWindow - components: - - pos: -37.5,-51.5 - parent: 8364 - type: Transform -- uid: 3567 - type: WallReinforced - components: - - pos: -40.5,-51.5 - parent: 8364 - type: Transform -- uid: 3568 - type: BlastDoor - components: - - name: Incinerator Vent - type: MetaData - - pos: -42.5,-49.5 - parent: 8364 - type: Transform -- uid: 3569 - type: WallReinforced - components: - - pos: 81.5,-18.5 - parent: 8364 - type: Transform -- uid: 3570 - type: WallReinforced - components: - - pos: -35.5,-60.5 - parent: 8364 - type: Transform -- uid: 3571 - type: WallReinforced - components: - - pos: 80.5,-18.5 - parent: 8364 - type: Transform -- uid: 3572 - type: WallReinforced - components: - - pos: 79.5,-18.5 - parent: 8364 - type: Transform -- uid: 3573 - type: WallReinforced - components: - - pos: 78.5,-18.5 - parent: 8364 - type: Transform -- uid: 3574 - type: WallReinforced - components: - - pos: 77.5,-18.5 - parent: 8364 - type: Transform -- uid: 3575 - type: WallReinforced - components: - - pos: 77.5,-17.5 - parent: 8364 - type: Transform -- uid: 3576 - type: WallSolid - components: - - pos: -34.5,-64.5 - parent: 8364 - type: Transform -- uid: 3577 - type: WallSolid - components: - - pos: -33.5,-64.5 - parent: 8364 - type: Transform -- uid: 3578 - type: WallSolid - components: - - pos: -30.5,-64.5 - parent: 8364 - type: Transform -- uid: 3579 - type: WallReinforced - components: - - pos: 77.5,-16.5 - parent: 8364 - type: Transform -- uid: 3580 - type: AirlockGlassShuttle - components: - - rot: 1.5707963267948966 rad - pos: 85.5,-3.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3581 - type: AirlockGlassShuttle - components: - - rot: 1.5707963267948966 rad - pos: 85.5,-5.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3582 - type: Grille - components: - - pos: -28.5,-63.5 - parent: 8364 - type: Transform -- uid: 3583 - type: WallReinforced - components: - - pos: 77.5,-0.5 - parent: 8364 - type: Transform -- uid: 3584 - type: WallReinforced - components: - - pos: 76.5,-0.5 - parent: 8364 - type: Transform -- uid: 3585 - type: WallReinforced - components: - - pos: 75.5,-0.5 - parent: 8364 - type: Transform -- uid: 3586 - type: WallReinforced - components: - - pos: -27.5,-63.5 - parent: 8364 - type: Transform -- uid: 3587 - type: WallReinforced - components: - - pos: -27.5,-64.5 - parent: 8364 - type: Transform -- uid: 3588 - type: WallReinforced - components: - - pos: 75.5,4.5 - parent: 8364 - type: Transform -- uid: 3589 - type: WallReinforced - components: - - pos: -27.5,-66.5 - parent: 8364 - type: Transform -- uid: 3590 - type: WallReinforced - components: - - pos: -27.5,-67.5 - parent: 8364 - type: Transform -- uid: 3591 - type: WallReinforced - components: - - pos: -27.5,-68.5 - parent: 8364 - type: Transform -- uid: 3592 - type: WallReinforced - components: - - pos: -27.5,-69.5 - parent: 8364 - type: Transform -- uid: 3593 - type: WallReinforced - components: - - pos: -27.5,-70.5 - parent: 8364 - type: Transform -- uid: 3594 - type: WallReinforced - components: - - pos: -27.5,-71.5 - parent: 8364 - type: Transform -- uid: 3595 - type: WallReinforced - components: - - pos: -27.5,-72.5 - parent: 8364 - type: Transform -- uid: 3596 - type: WallReinforced - components: - - pos: -26.5,-72.5 - parent: 8364 - type: Transform -- uid: 3597 - type: WallReinforced - components: - - pos: -25.5,-72.5 - parent: 8364 - type: Transform -- uid: 3598 - type: WallReinforced - components: - - pos: -24.5,-72.5 - parent: 8364 - type: Transform -- uid: 3599 - type: WallReinforced - components: - - pos: -23.5,-72.5 - parent: 8364 - type: Transform -- uid: 3600 - type: WallReinforced - components: - - pos: -22.5,-72.5 - parent: 8364 - type: Transform -- uid: 3601 - type: WallReinforced - components: - - pos: -21.5,-72.5 - parent: 8364 - type: Transform -- uid: 3602 - type: WallReinforced - components: - - pos: -21.5,-71.5 - parent: 8364 - type: Transform -- uid: 3603 - type: WallReinforced - components: - - pos: -21.5,-70.5 - parent: 8364 - type: Transform -- uid: 3604 - type: WallReinforced - components: - - pos: -20.5,-71.5 - parent: 8364 - type: Transform -- uid: 3605 - type: ReinforcedWindow - components: - - pos: -22.5,-74.5 - parent: 8364 - type: Transform -- uid: 3606 - type: WallReinforced - components: - - pos: -18.5,-71.5 - parent: 8364 - type: Transform -- uid: 3607 - type: WallReinforced - components: - - pos: -18.5,-70.5 - parent: 8364 - type: Transform -- uid: 3608 - type: WallReinforced - components: - - pos: -18.5,-68.5 - parent: 8364 - type: Transform -- uid: 3609 - type: WallReinforced - components: - - pos: -20.5,-65.5 - parent: 8364 - type: Transform -- uid: 3610 - type: WallReinforced - components: - - pos: -21.5,-67.5 - parent: 8364 - type: Transform -- uid: 3611 - type: WallReinforced - components: - - pos: -21.5,-68.5 - parent: 8364 - type: Transform -- uid: 3612 - type: WallReinforced - components: - - pos: -21.5,-66.5 - parent: 8364 - type: Transform -- uid: 3613 - type: WallReinforced - components: - - pos: -21.5,-65.5 - parent: 8364 - type: Transform -- uid: 3614 - type: WallReinforced - components: - - pos: -21.5,-64.5 - parent: 8364 - type: Transform -- uid: 3615 - type: WallReinforced - components: - - pos: -26.5,-63.5 - parent: 8364 - type: Transform -- uid: 3616 - type: WallReinforced - components: - - pos: -25.5,-63.5 - parent: 8364 - type: Transform -- uid: 3617 - type: WallReinforced - components: - - pos: -24.5,-63.5 - parent: 8364 - type: Transform -- uid: 3618 - type: WallReinforced - components: - - pos: -23.5,-63.5 - parent: 8364 - type: Transform -- uid: 3619 - type: WallReinforced - components: - - pos: -22.5,-63.5 - parent: 8364 - type: Transform -- uid: 3620 - type: WallReinforced - components: - - pos: -21.5,-63.5 - parent: 8364 - type: Transform -- uid: 3621 - type: ReinforcedWindow - components: - - pos: -28.5,-63.5 - parent: 8364 - type: Transform -- uid: 3622 - type: ReinforcedWindow - components: - - pos: -30.5,-67.5 - parent: 8364 - type: Transform -- uid: 3623 - type: ReinforcedWindow - components: - - pos: -30.5,-68.5 - parent: 8364 - type: Transform -- uid: 3624 - type: ReinforcedWindow - components: - - pos: -30.5,-69.5 - parent: 8364 - type: Transform -- uid: 3625 - type: ReinforcedWindow - components: - - pos: -30.5,-70.5 - parent: 8364 - type: Transform -- uid: 3626 - type: ReinforcedWindow - components: - - pos: -32.5,-67.5 - parent: 8364 - type: Transform -- uid: 3627 - type: ReinforcedWindow - components: - - pos: -32.5,-68.5 - parent: 8364 - type: Transform -- uid: 3628 - type: ReinforcedWindow - components: - - pos: -32.5,-69.5 - parent: 8364 - type: Transform -- uid: 3629 - type: ReinforcedWindow - components: - - pos: -32.5,-70.5 - parent: 8364 - type: Transform -- uid: 3630 - type: ReinforcedWindow - components: - - pos: -27.5,-74.5 - parent: 8364 - type: Transform -- uid: 3631 - type: ReinforcedWindow - components: - - pos: -26.5,-74.5 - parent: 8364 - type: Transform -- uid: 3632 - type: ReinforcedWindow - components: - - pos: -25.5,-74.5 - parent: 8364 - type: Transform -- uid: 3633 - type: ReinforcedWindow - components: - - pos: -24.5,-74.5 - parent: 8364 - type: Transform -- uid: 3634 - type: ReinforcedWindow - components: - - pos: -23.5,-74.5 - parent: 8364 - type: Transform -- uid: 3635 - type: CableMV - components: - - pos: -20.5,-68.5 - parent: 8364 - type: Transform -- uid: 3636 - type: WallReinforced - components: - - pos: -20.5,-74.5 - parent: 8364 - type: Transform -- uid: 3637 - type: WallReinforced - components: - - pos: -21.5,-73.5 - parent: 8364 - type: Transform -- uid: 3638 - type: Grille - components: - - pos: -30.5,-67.5 - parent: 8364 - type: Transform -- uid: 3639 - type: Grille - components: - - pos: -30.5,-68.5 - parent: 8364 - type: Transform -- uid: 3640 - type: Grille - components: - - pos: -30.5,-70.5 - parent: 8364 - type: Transform -- uid: 3641 - type: Grille - components: - - pos: -30.5,-69.5 - parent: 8364 - type: Transform -- uid: 3642 - type: Grille - components: - - pos: -32.5,-67.5 - parent: 8364 - type: Transform -- uid: 3643 - type: Grille - components: - - pos: -32.5,-68.5 - parent: 8364 - type: Transform -- uid: 3644 - type: Grille - components: - - pos: -32.5,-70.5 - parent: 8364 - type: Transform -- uid: 3645 - type: Grille - components: - - pos: -32.5,-69.5 - parent: 8364 - type: Transform -- uid: 3646 - type: Grille - components: - - pos: -33.5,-73.5 - parent: 8364 - type: Transform -- uid: 3647 - type: Grille - components: - - pos: -33.5,-74.5 - parent: 8364 - type: Transform -- uid: 3648 - type: Grille - components: - - pos: -33.5,-75.5 - parent: 8364 - type: Transform -- uid: 3649 - type: Grille - components: - - pos: -32.5,-75.5 - parent: 8364 - type: Transform -- uid: 3650 - type: Grille - components: - - pos: -31.5,-75.5 - parent: 8364 - type: Transform -- uid: 3651 - type: Grille - components: - - pos: -30.5,-75.5 - parent: 8364 - type: Transform -- uid: 3652 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: 41.5,-4.5 - parent: 8364 - type: Transform -- uid: 3653 - type: Grille - components: - - pos: -27.5,-74.5 - parent: 8364 - type: Transform -- uid: 3654 - type: Grille - components: - - pos: -26.5,-74.5 - parent: 8364 - type: Transform -- uid: 3655 - type: Grille - components: - - pos: -25.5,-74.5 - parent: 8364 - type: Transform -- uid: 3656 - type: Grille - components: - - pos: -24.5,-74.5 - parent: 8364 - type: Transform -- uid: 3657 - type: Grille - components: - - pos: -23.5,-74.5 - parent: 8364 - type: Transform -- uid: 3658 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-73.5 - parent: 8364 - type: Transform -- uid: 3659 - type: Grille - components: - - pos: -22.5,-74.5 - parent: 8364 - type: Transform -- uid: 3660 - type: WallReinforced - components: - - pos: -19.5,-74.5 - parent: 8364 - type: Transform -- uid: 3661 - type: AirlockHydroGlassLocked - components: - - pos: 48.5,-1.5 - parent: 8364 - type: Transform -- uid: 3662 - type: Window - components: - - pos: 49.5,-1.5 - parent: 8364 - type: Transform -- uid: 3663 - type: Window - components: - - pos: 27.5,-3.5 - parent: 8364 - type: Transform -- uid: 3664 - type: WallReinforced - components: - - pos: 87.5,-43.5 - parent: 8364 - type: Transform -- uid: 3665 - type: AirlockAtmosphericsLocked - components: - - pos: 83.5,-47.5 - parent: 8364 - type: Transform -- uid: 3666 - type: WallReinforced - components: - - pos: 87.5,-50.5 - parent: 8364 - type: Transform -- uid: 3667 - type: WallReinforced - components: - - pos: 87.5,-54.5 - parent: 8364 - type: Transform -- uid: 3668 - type: WallSolidRust - components: - - pos: 75.5,-59.5 - parent: 8364 - type: Transform -- uid: 3669 - type: WallReinforced - components: - - pos: 83.5,-60.5 - parent: 8364 - type: Transform -- uid: 3670 - type: WallReinforced - components: - - pos: -21.5,-74.5 - parent: 8364 - type: Transform -- uid: 3671 - type: WallReinforced - components: - - pos: -18.5,-72.5 - parent: 8364 - type: Transform -- uid: 3672 - type: WallReinforced - components: - - pos: -18.5,-73.5 - parent: 8364 - type: Transform -- uid: 3673 - type: WallReinforced - components: - - pos: -18.5,-74.5 - parent: 8364 - type: Transform -- uid: 3674 - type: ReinforcedWindow - components: - - pos: -33.5,-73.5 - parent: 8364 - type: Transform -- uid: 3675 - type: ReinforcedWindow - components: - - pos: -33.5,-74.5 - parent: 8364 - type: Transform -- uid: 3676 - type: ReinforcedWindow - components: - - pos: -33.5,-75.5 - parent: 8364 - type: Transform -- uid: 3677 - type: ReinforcedWindow - components: - - pos: -32.5,-75.5 - parent: 8364 - type: Transform -- uid: 3678 - type: ReinforcedWindow - components: - - pos: -31.5,-75.5 - parent: 8364 - type: Transform -- uid: 3679 - type: ReinforcedWindow - components: - - pos: -30.5,-75.5 - parent: 8364 - type: Transform -- uid: 3680 - type: WallReinforced - components: - - pos: -10.5,-67.5 - parent: 8364 - type: Transform -- uid: 3681 - type: WallReinforced - components: - - pos: -11.5,-67.5 - parent: 8364 - type: Transform -- uid: 3682 - type: WallReinforced - components: - - pos: -12.5,-67.5 - parent: 8364 - type: Transform -- uid: 3683 - type: WallReinforced - components: - - pos: -13.5,-67.5 - parent: 8364 - type: Transform -- uid: 3684 - type: WallReinforced - components: - - pos: -10.5,-66.5 - parent: 8364 - type: Transform -- uid: 3685 - type: WallReinforced - components: - - pos: -10.5,-65.5 - parent: 8364 - type: Transform -- uid: 3686 - type: WallReinforced - components: - - pos: -10.5,-64.5 - parent: 8364 - type: Transform -- uid: 3687 - type: WallReinforced - components: - - pos: -10.5,-61.5 - parent: 8364 - type: Transform -- uid: 3688 - type: WallReinforced - components: - - pos: 84.5,-60.5 - parent: 8364 - type: Transform -- uid: 3689 - type: SheetPlasma - components: - - pos: -12.5,-61.5 - parent: 8364 - type: Transform -- uid: 3690 - type: WallSolid - components: - - pos: -9.5,-65.5 - parent: 8364 - type: Transform -- uid: 3691 - type: WallSolid - components: - - pos: -3.5,-65.5 - parent: 8364 - type: Transform -- uid: 3692 - type: WallSolid - components: - - pos: -3.5,-64.5 - parent: 8364 - type: Transform -- uid: 3693 - type: WallSolid - components: - - pos: -3.5,-61.5 - parent: 8364 - type: Transform -- uid: 3694 - type: WallReinforced - components: - - pos: 0.5,-61.5 - parent: 8364 - type: Transform -- uid: 3695 - type: WallReinforced - components: - - pos: 0.5,-62.5 - parent: 8364 - type: Transform -- uid: 3696 - type: WallReinforced - components: - - pos: 0.5,-63.5 - parent: 8364 - type: Transform -- uid: 3697 - type: ReinforcedWindow - components: - - pos: 4.5,-64.5 - parent: 8364 - type: Transform -- uid: 3698 - type: WallReinforced - components: - - pos: 0.5,-65.5 - parent: 8364 - type: Transform -- uid: 3699 - type: Grille - components: - - pos: -0.5,-65.5 - parent: 8364 - type: Transform -- uid: 3700 - type: Grille - components: - - pos: -1.5,-65.5 - parent: 8364 - type: Transform -- uid: 3701 - type: Grille - components: - - pos: -2.5,-65.5 - parent: 8364 - type: Transform -- uid: 3702 - type: Grille - components: - - pos: -4.5,-65.5 - parent: 8364 - type: Transform -- uid: 3703 - type: Grille - components: - - pos: -5.5,-65.5 - parent: 8364 - type: Transform -- uid: 3704 - type: Grille - components: - - pos: -7.5,-65.5 - parent: 8364 - type: Transform -- uid: 3705 - type: Grille - components: - - pos: -8.5,-65.5 - parent: 8364 - type: Transform -- uid: 3706 - type: ReinforcedWindow - components: - - pos: -0.5,-65.5 - parent: 8364 - type: Transform -- uid: 3707 - type: ReinforcedWindow - components: - - pos: -1.5,-65.5 - parent: 8364 - type: Transform -- uid: 3708 - type: ReinforcedWindow - components: - - pos: -2.5,-65.5 - parent: 8364 - type: Transform -- uid: 3709 - type: ReinforcedWindow - components: - - pos: -4.5,-65.5 - parent: 8364 - type: Transform -- uid: 3710 - type: ReinforcedWindow - components: - - pos: -5.5,-65.5 - parent: 8364 - type: Transform -- uid: 3711 - type: ReinforcedWindow - components: - - pos: -7.5,-65.5 - parent: 8364 - type: Transform -- uid: 3712 - type: ReinforcedWindow - components: - - pos: -8.5,-65.5 - parent: 8364 - type: Transform -- uid: 3713 - type: Grille - components: - - pos: 3.5,-58.5 - parent: 8364 - type: Transform -- uid: 3714 - type: Grille - components: - - pos: 4.5,-58.5 - parent: 8364 - type: Transform -- uid: 3715 - type: Grille - components: - - pos: 5.5,-58.5 - parent: 8364 - type: Transform -- uid: 3716 - type: Grille - components: - - pos: 4.5,-64.5 - parent: 8364 - type: Transform -- uid: 3717 - type: Grille - components: - - pos: 3.5,-64.5 - parent: 8364 - type: Transform -- uid: 3718 - type: Grille - components: - - pos: 6.5,-60.5 - parent: 8364 - type: Transform -- uid: 3719 - type: Grille - components: - - pos: 6.5,-61.5 - parent: 8364 - type: Transform -- uid: 3720 - type: WallReinforced - components: - - pos: 6.5,-58.5 - parent: 8364 - type: Transform -- uid: 3721 - type: WallReinforced - components: - - pos: 6.5,-59.5 - parent: 8364 - type: Transform -- uid: 3722 - type: WallReinforced - components: - - pos: 6.5,-62.5 - parent: 8364 - type: Transform -- uid: 3723 - type: WallReinforced - components: - - pos: 6.5,-63.5 - parent: 8364 - type: Transform -- uid: 3724 - type: WallReinforced - components: - - pos: 6.5,-64.5 - parent: 8364 - type: Transform -- uid: 3725 - type: WallReinforced - components: - - pos: 2.5,-64.5 - parent: 8364 - type: Transform -- uid: 3726 - type: WallReinforced - components: - - pos: 0.5,-64.5 - parent: 8364 - type: Transform -- uid: 3727 - type: WallReinforced - components: - - pos: 1.5,-64.5 - parent: 8364 - type: Transform -- uid: 3728 - type: WallReinforced - components: - - pos: 85.5,-60.5 - parent: 8364 - type: Transform -- uid: 3729 - type: ReinforcedWindow - components: - - pos: 6.5,-61.5 - parent: 8364 - type: Transform -- uid: 3730 - type: ReinforcedWindow - components: - - pos: 6.5,-60.5 - parent: 8364 - type: Transform -- uid: 3731 - type: ReinforcedWindow - components: - - pos: 5.5,-58.5 - parent: 8364 - type: Transform -- uid: 3732 - type: ReinforcedWindow - components: - - pos: 4.5,-58.5 - parent: 8364 - type: Transform -- uid: 3733 - type: ReinforcedWindow - components: - - pos: 3.5,-58.5 - parent: 8364 - type: Transform -- uid: 3734 - type: WallReinforced - components: - - pos: 7.5,-63.5 - parent: 8364 - type: Transform -- uid: 3735 - type: WallReinforced - components: - - pos: 9.5,-63.5 - parent: 8364 - type: Transform -- uid: 3736 - type: WallSolid - components: - - pos: 7.5,-59.5 - parent: 8364 - type: Transform -- uid: 3737 - type: WallSolid - components: - - pos: 9.5,-59.5 - parent: 8364 - type: Transform -- uid: 3738 - type: WallReinforced - components: - - pos: 10.5,-63.5 - parent: 8364 - type: Transform -- uid: 3739 - type: WallReinforced - components: - - pos: 10.5,-62.5 - parent: 8364 - type: Transform -- uid: 3740 - type: WallReinforced - components: - - pos: 10.5,-61.5 - parent: 8364 - type: Transform -- uid: 3741 - type: WallReinforced - components: - - pos: 10.5,-60.5 - parent: 8364 - type: Transform -- uid: 3742 - type: WallReinforced - components: - - pos: 10.5,-59.5 - parent: 8364 - type: Transform -- uid: 3743 - type: WallReinforced - components: - - pos: 10.5,-58.5 - parent: 8364 - type: Transform -- uid: 3744 - type: WallReinforced - components: - - pos: -17.5,-74.5 - parent: 8364 - type: Transform -- uid: 3745 - type: WallReinforced - components: - - pos: -12.5,-75.5 - parent: 8364 - type: Transform -- uid: 3746 - type: WallReinforced - components: - - pos: -13.5,-75.5 - parent: 8364 - type: Transform -- uid: 3747 - type: WallReinforced - components: - - pos: -11.5,-74.5 - parent: 8364 - type: Transform -- uid: 3748 - type: CableApcExtension - components: - - pos: -3.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3749 - type: CableApcExtension - components: - - pos: -5.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3750 - type: CableApcExtension - components: - - pos: -4.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3751 - type: WallReinforced - components: - - pos: 86.5,-60.5 - parent: 8364 - type: Transform -- uid: 3752 - type: WallReinforced - components: - - pos: -6.5,-68.5 - parent: 8364 - type: Transform -- uid: 3753 - type: WallReinforced - components: - - pos: -3.5,-68.5 - parent: 8364 - type: Transform -- uid: 3754 - type: WallReinforced - components: - - pos: -2.5,-68.5 - parent: 8364 - type: Transform -- uid: 3755 - type: WallReinforced - components: - - pos: 1.5,-68.5 - parent: 8364 - type: Transform -- uid: 3756 - type: WallReinforced - components: - - pos: 2.5,-68.5 - parent: 8364 - type: Transform -- uid: 3757 - type: WallReinforced - components: - - pos: 5.5,-68.5 - parent: 8364 - type: Transform -- uid: 3758 - type: WallReinforced - components: - - pos: 10.5,-64.5 - parent: 8364 - type: Transform -- uid: 3759 - type: WallReinforced - components: - - pos: 10.5,-65.5 - parent: 8364 - type: Transform -- uid: 3760 - type: WallReinforced - components: - - pos: 10.5,-66.5 - parent: 8364 - type: Transform -- uid: 3761 - type: WallReinforced - components: - - pos: 10.5,-67.5 - parent: 8364 - type: Transform -- uid: 3762 - type: WallReinforced - components: - - pos: 87.5,-60.5 - parent: 8364 - type: Transform -- uid: 3763 - type: WallReinforced - components: - - pos: 87.5,-59.5 - parent: 8364 - type: Transform -- uid: 3764 - type: WallReinforced - components: - - pos: 87.5,-58.5 - parent: 8364 - type: Transform -- uid: 3765 - type: Grille - components: - - pos: 19.5,-73.5 - parent: 8364 - type: Transform -- uid: 3766 - type: ReinforcedWindow - components: - - pos: 19.5,-73.5 - parent: 8364 - type: Transform -- uid: 3767 - type: WallReinforced - components: - - pos: 18.5,-74.5 - parent: 8364 - type: Transform -- uid: 3768 - type: WallReinforced - components: - - pos: 87.5,-56.5 - parent: 8364 - type: Transform -- uid: 3769 - type: ReinforcedWindow - components: - - pos: -0.5,-75.5 - parent: 8364 - type: Transform -- uid: 3770 - type: ReinforcedPlasmaWindow - components: - - pos: -11.5,-71.5 - parent: 8364 - type: Transform -- uid: 3771 - type: ReinforcedPlasmaWindow - components: - - pos: -11.5,-70.5 - parent: 8364 - type: Transform -- uid: 3772 - type: ReinforcedPlasmaWindow - components: - - pos: -10.5,-70.5 - parent: 8364 - type: Transform -- uid: 3773 - type: ReinforcedWindow - components: - - pos: -4.5,-75.5 - parent: 8364 - type: Transform -- uid: 3774 - type: CableApcExtension - components: - - pos: 10.5,-73.5 - parent: 8364 - type: Transform -- uid: 3775 - type: WallReinforced - components: - - pos: 11.5,-69.5 - parent: 8364 - type: Transform -- uid: 3776 - type: WallReinforced - components: - - pos: 10.5,-74.5 - parent: 8364 - type: Transform -- uid: 3777 - type: WallReinforced - components: - - pos: 10.5,-75.5 - parent: 8364 - type: Transform -- uid: 3778 - type: WallReinforced - components: - - pos: 10.5,-77.5 - parent: 8364 - type: Transform -- uid: 3779 - type: RadiationCollector - components: - - pos: -11.5,-61.5 - parent: 8364 - type: Transform -- uid: 3780 - type: RadiationCollector - components: - - pos: -25.5,-71.5 - parent: 8364 - type: Transform -- uid: 3781 - type: RadiationCollector - components: - - pos: -7.5,-33.5 - parent: 8364 - type: Transform -- uid: 3782 - type: ReinforcedPlasmaWindow - components: - - pos: 10.5,-71.5 - parent: 8364 - type: Transform -- uid: 3783 - type: WallReinforced - components: - - pos: -8.5,-73.5 - parent: 8364 - type: Transform -- uid: 3784 - type: WallReinforced - components: - - pos: 87.5,-55.5 - parent: 8364 - type: Transform -- uid: 3785 - type: CableHV - components: - - pos: 4.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3786 - type: ReinforcedWindow - components: - - pos: -2.5,-75.5 - parent: 8364 - type: Transform -- uid: 3787 - type: WallReinforced - components: - - pos: 89.5,-56.5 - parent: 8364 - type: Transform -- uid: 3788 - type: CableHV - components: - - pos: 2.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3789 - type: ReinforcedWindow - components: - - pos: 0.5,-75.5 - parent: 8364 - type: Transform -- uid: 3790 - type: CableHV - components: - - pos: 3.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3791 - type: WallReinforced - components: - - pos: 15.5,-74.5 - parent: 8364 - type: Transform -- uid: 3792 - type: WallReinforced - components: - - pos: 14.5,-74.5 - parent: 8364 - type: Transform -- uid: 3793 - type: WallReinforced - components: - - pos: 13.5,-74.5 - parent: 8364 - type: Transform -- uid: 3794 - type: WallReinforced - components: - - pos: 13.5,-75.5 - parent: 8364 - type: Transform -- uid: 3795 - type: WallReinforced - components: - - pos: 88.5,-56.5 - parent: 8364 - type: Transform -- uid: 3796 - type: WallReinforced - components: - - pos: 89.5,-58.5 - parent: 8364 - type: Transform -- uid: 3797 - type: ReinforcedWindow - components: - - pos: -1.5,-75.5 - parent: 8364 - type: Transform -- uid: 3798 - type: CableHV - components: - - pos: -3.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3799 - type: WallReinforced - components: - - pos: 88.5,-58.5 - parent: 8364 - type: Transform -- uid: 3800 - type: CableHV - components: - - pos: -3.5,-56.5 - parent: 8364 - type: Transform -- uid: 3801 - type: WallReinforced - components: - - pos: 31.5,-61.5 - parent: 8364 - type: Transform -- uid: 3802 - type: CableHV - components: - - pos: -5.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3803 - type: RadiationCollector - components: - - pos: 7.5,-85.5 - parent: 8364 - type: Transform -- uid: 3804 - type: RadiationCollector - components: - - pos: -6.5,-33.5 - parent: 8364 - type: Transform -- uid: 3805 - type: ReinforcedPlasmaWindow - components: - - pos: 9.5,-70.5 - parent: 8364 - type: Transform -- uid: 3806 - type: ReinforcedPlasmaWindow - components: - - pos: -0.5,-68.5 - parent: 8364 - type: Transform -- uid: 3807 - type: ReinforcedPlasmaWindow - components: - - pos: -5.5,-68.5 - parent: 8364 - type: Transform -- uid: 3808 - type: Grille - components: - - pos: -8.5,-70.5 - parent: 8364 - type: Transform -- uid: 3809 - type: Grille - components: - - pos: -7.5,-75.5 - parent: 8364 - type: Transform -- uid: 3810 - type: ReinforcedPlasmaWindow - components: - - pos: 3.5,-68.5 - parent: 8364 - type: Transform -- uid: 3811 - type: SMESBasic - components: - - pos: 5.5,-69.5 - parent: 8364 - type: Transform -- uid: 3812 - type: ReinforcedWindow - components: - - pos: 5.5,-75.5 - parent: 8364 - type: Transform -- uid: 3813 - type: CableApcExtension - components: - - pos: 5.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3814 - type: WallReinforced - components: - - pos: 31.5,-62.5 - parent: 8364 - type: Transform -- uid: 3815 - type: WallSolid - components: - - pos: -11.5,-72.5 - parent: 8364 - type: Transform -- uid: 3816 - type: WallSolid - components: - - pos: -11.5,-73.5 - parent: 8364 - type: Transform -- uid: 3817 - type: Grille - components: - - pos: -11.5,-71.5 - parent: 8364 - type: Transform -- uid: 3818 - type: Grille - components: - - pos: -11.5,-70.5 - parent: 8364 - type: Transform -- uid: 3819 - type: WallReinforced - components: - - pos: -14.5,-74.5 - parent: 8364 - type: Transform -- uid: 3820 - type: Grille - components: - - pos: -15.5,-74.5 - parent: 8364 - type: Transform -- uid: 3821 - type: Grille - components: - - pos: -16.5,-74.5 - parent: 8364 - type: Transform -- uid: 3822 - type: WallReinforced - components: - - pos: -14.5,-75.5 - parent: 8364 - type: Transform -- uid: 3823 - type: ReinforcedWindow - components: - - pos: -15.5,-74.5 - parent: 8364 - type: Transform -- uid: 3824 - type: ReinforcedWindow - components: - - pos: -16.5,-74.5 - parent: 8364 - type: Transform -- uid: 3825 - type: ReinforcedPlasmaWindow - components: - - pos: -8.5,-71.5 - parent: 8364 - type: Transform -- uid: 3826 - type: ReinforcedPlasmaWindow - components: - - pos: -8.5,-70.5 - parent: 8364 - type: Transform -- uid: 3827 - type: CableApcExtension - components: - - pos: 5.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3828 - type: ReinforcedWindow - components: - - pos: 4.5,-75.5 - parent: 8364 - type: Transform -- uid: 3829 - type: ReinforcedWindow - components: - - pos: 6.5,-75.5 - parent: 8364 - type: Transform -- uid: 3830 - type: CableHV - components: - - pos: -6.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3831 - type: SMESBasic - components: - - pos: -6.5,-69.5 - parent: 8364 - type: Transform -- uid: 3832 - type: ReinforcedPlasmaWindow - components: - - pos: 4.5,-68.5 - parent: 8364 - type: Transform -- uid: 3833 - type: Grille - components: - - pos: -6.5,-75.5 - parent: 8364 - type: Transform -- uid: 3834 - type: Grille - components: - - pos: -8.5,-71.5 - parent: 8364 - type: Transform -- uid: 3835 - type: ReinforcedPlasmaWindow - components: - - pos: -4.5,-68.5 - parent: 8364 - type: Transform -- uid: 3836 - type: ReinforcedWindow - components: - - pos: 3.5,-75.5 - parent: 8364 - type: Transform -- uid: 3837 - type: WallReinforced - components: - - pos: -7.5,-73.5 - parent: 8364 - type: Transform -- uid: 3838 - type: AirlockMedicalGlassLocked - components: - - pos: 35.5,-21.5 - parent: 8364 - type: Transform -- uid: 3839 - type: RadiationCollector - components: - - pos: 7.5,-86.5 - parent: 8364 - type: Transform -- uid: 3840 - type: WallReinforced - components: - - pos: 37.5,-70.5 - parent: 8364 - type: Transform -- uid: 3841 - type: WallReinforced - components: - - pos: 31.5,-65.5 - parent: 8364 - type: Transform -- uid: 3842 - type: WallReinforced - components: - - pos: 32.5,-68.5 - parent: 8364 - type: Transform -- uid: 3843 - type: WallReinforced - components: - - pos: 37.5,-71.5 - parent: 8364 - type: Transform -- uid: 3844 - type: Grille - components: - - pos: 6.5,-78.5 - parent: 8364 - type: Transform -- uid: 3845 - type: Grille - components: - - pos: 0.5,-102.5 - parent: 8364 - type: Transform -- uid: 3846 - type: Grille - components: - - pos: -1.5,-75.5 - parent: 8364 - type: Transform -- uid: 3847 - type: WallReinforced - components: - - pos: -7.5,-69.5 - parent: 8364 - type: Transform -- uid: 3848 - type: Grille - components: - - pos: -6.5,-78.5 - parent: 8364 - type: Transform -- uid: 3849 - type: CableHV - components: - - pos: -8.5,-91.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3850 - type: CableHV - components: - - pos: -4.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3851 - type: CableHV - components: - - pos: 1.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3852 - type: CableMV - components: - - pos: 7.5,-87.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3853 - type: CableApcExtension - components: - - pos: -8.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3854 - type: CableApcExtension - components: - - pos: -6.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3855 - type: CableMV - components: - - pos: -4.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3856 - type: Grille - components: - - pos: -0.5,-102.5 - parent: 8364 - type: Transform -- uid: 3857 - type: WallReinforced - components: - - pos: -7.5,-68.5 - parent: 8364 - type: Transform -- uid: 3858 - type: Grille - components: - - pos: -2.5,-75.5 - parent: 8364 - type: Transform -- uid: 3859 - type: CableApcExtension - components: - - pos: -8.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3860 - type: CableHV - components: - - pos: -8.5,-92.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3861 - type: CableHV - components: - - pos: 0.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3862 - type: CableMV - components: - - pos: 7.5,-88.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3863 - type: CableHV - components: - - pos: -8.5,-90.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3864 - type: Grille - components: - - pos: -7.5,-78.5 - parent: 8364 - type: Transform -- uid: 3865 - type: CableHV - components: - - pos: -5.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3866 - type: CableHV - components: - - pos: 2.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3867 - type: Grille - components: - - pos: -8.5,-78.5 - parent: 8364 - type: Transform -- uid: 3868 - type: Grille - components: - - pos: 7.5,-71.5 - parent: 8364 - type: Transform -- uid: 3869 - type: Grille - components: - - pos: 7.5,-70.5 - parent: 8364 - type: Transform -- uid: 3870 - type: CableHV - components: - - pos: -8.5,-89.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3871 - type: CableHV - components: - - pos: -8.5,-83.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3872 - type: CableHV - components: - - pos: -8.5,-93.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3873 - type: Grille - components: - - pos: 7.5,-78.5 - parent: 8364 - type: Transform -- uid: 3874 - type: Grille - components: - - pos: -5.5,-78.5 - parent: 8364 - type: Transform -- uid: 3875 - type: Grille - components: - - pos: -0.5,-75.5 - parent: 8364 - type: Transform -- uid: 3876 - type: Grille - components: - - pos: -8.5,-100.5 - parent: 8364 - type: Transform -- uid: 3877 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -11.5,-76.5 - parent: 8364 - type: Transform -- uid: 3878 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,42.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3879 - type: DisposalUnit - components: - - pos: -9.5,-66.5 - parent: 8364 - type: Transform -- uid: 3880 - type: ReinforcedPlasmaWindow - components: - - pos: 7.5,-70.5 - parent: 8364 - type: Transform -- uid: 3881 - type: ReinforcedPlasmaWindow - components: - - pos: 7.5,-71.5 - parent: 8364 - type: Transform -- uid: 3882 - type: WallReinforced - components: - - pos: 9.5,-77.5 - parent: 8364 - type: Transform -- uid: 3883 - type: WallReinforced - components: - - pos: -12.5,-77.5 - parent: 8364 - type: Transform -- uid: 3884 - type: CableApcExtension - components: - - pos: -10.5,46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3885 - type: Grille - components: - - pos: -8.5,-101.5 - parent: 8364 - type: Transform -- uid: 3886 - type: Grille - components: - - pos: 0.5,-75.5 - parent: 8364 - type: Transform -- uid: 3887 - type: Grille - components: - - pos: -4.5,-78.5 - parent: 8364 - type: Transform -- uid: 3888 - type: ReinforcedPlasmaWindow - components: - - pos: 7.5,-72.5 - parent: 8364 - type: Transform -- uid: 3889 - type: CableHV - components: - - pos: 7.5,-84.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3890 - type: CableHV - components: - - pos: -0.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3891 - type: CableMV - components: - - pos: -5.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3892 - type: AirlockEngineeringGlassLocked - components: - - name: Particle Accelerator Room - type: MetaData - - pos: -7.5,-74.5 - parent: 8364 - type: Transform -- uid: 3893 - type: CableApcExtension - components: - - pos: -8.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3894 - type: CableApcExtension - components: - - pos: -6.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3895 - type: WallReinforced - components: - - pos: 39.5,-72.5 - parent: 8364 - type: Transform -- uid: 3896 - type: WallReinforced - components: - - pos: 39.5,-73.5 - parent: 8364 - type: Transform -- uid: 3897 - type: RadiationCollector - components: - - pos: 7.5,-87.5 - parent: 8364 - type: Transform -- uid: 3898 - type: WindoorArmoryLocked - components: - - rot: -1.5707963267948966 rad - pos: 5.5,37.5 - parent: 8364 - type: Transform -- uid: 3899 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,37.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3900 - type: Grille - components: - - pos: 0.5,-100.5 - parent: 8364 - type: Transform -- uid: 3901 - type: WallReinforced - components: - - pos: 11.5,-85.5 - parent: 8364 - type: Transform -- uid: 3902 - type: WallReinforced - components: - - pos: -8.5,-69.5 - parent: 8364 - type: Transform -- uid: 3903 - type: CableHV - components: - - pos: -3.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3904 - type: WallReinforced - components: - - pos: 11.5,-86.5 - parent: 8364 - type: Transform -- uid: 3905 - type: CableMV - components: - - pos: -8.5,-91.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3906 - type: CableMV - components: - - pos: -2.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3907 - type: CableMV - components: - - pos: -1.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3908 - type: CableApcExtension - components: - - pos: -7.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3909 - type: CableApcExtension - components: - - pos: -6.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3910 - type: CableApcExtension - components: - - pos: -6.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3911 - type: Girder - components: - - pos: -18.5,-42.5 - parent: 8364 - type: Transform -- uid: 3912 - type: WallSolid - components: - - pos: -20.5,-34.5 - parent: 8364 - type: Transform -- uid: 3913 - type: WallReinforced - components: - - pos: 40.5,-73.5 - parent: 8364 - type: Transform -- uid: 3914 - type: Grille - components: - - pos: -21.5,-44.5 - parent: 8364 - type: Transform -- uid: 3915 - type: Grille - components: - - pos: -22.5,-44.5 - parent: 8364 - type: Transform -- uid: 3916 - type: WallSolid - components: - - pos: -31.5,-46.5 - parent: 8364 - type: Transform -- uid: 3917 - type: Grille - components: - - pos: -21.5,-46.5 - parent: 8364 - type: Transform -- uid: 3918 - type: Grille - components: - - pos: -20.5,-46.5 - parent: 8364 - type: Transform -- uid: 3919 - type: Grille - components: - - pos: -22.5,-40.5 - parent: 8364 - type: Transform -- uid: 3920 - type: WallReinforced - components: - - pos: 40.5,-74.5 - parent: 8364 - type: Transform -- uid: 3921 - type: Grille - components: - - pos: -26.5,-42.5 - parent: 8364 - type: Transform -- uid: 3922 - type: Grille - components: - - pos: -27.5,-42.5 - parent: 8364 - type: Transform -- uid: 3923 - type: Grille - components: - - pos: -28.5,-42.5 - parent: 8364 - type: Transform -- uid: 3924 - type: WallSolid - components: - - pos: -21.5,-41.5 - parent: 8364 - type: Transform -- uid: 3925 - type: WallReinforced - components: - - pos: 45.5,-74.5 - parent: 8364 - type: Transform -- uid: 3926 - type: WallReinforced - components: - - pos: 41.5,-74.5 - parent: 8364 - type: Transform -- uid: 3927 - type: WallReinforced - components: - - pos: 46.5,-74.5 - parent: 8364 - type: Transform -- uid: 3928 - type: WallReinforced - components: - - pos: 48.5,-69.5 - parent: 8364 - type: Transform -- uid: 3929 - type: WallReinforced - components: - - pos: 46.5,-73.5 - parent: 8364 - type: Transform -- uid: 3930 - type: WallSolid - components: - - pos: -30.5,-43.5 - parent: 8364 - type: Transform -- uid: 3931 - type: WallSolid - components: - - pos: -30.5,-45.5 - parent: 8364 - type: Transform -- uid: 3932 - type: WallReinforced - components: - - pos: 47.5,-73.5 - parent: 8364 - type: Transform -- uid: 3933 - type: WallReinforced - components: - - pos: 48.5,-70.5 - parent: 8364 - type: Transform -- uid: 3934 - type: WallReinforced - components: - - pos: 48.5,-71.5 - parent: 8364 - type: Transform -- uid: 3935 - type: WallReinforced - components: - - pos: 48.5,-73.5 - parent: 8364 - type: Transform -- uid: 3936 - type: WallSolid - components: - - pos: -27.5,-46.5 - parent: 8364 - type: Transform -- uid: 3937 - type: WallSolid - components: - - pos: -25.5,-46.5 - parent: 8364 - type: Transform -- uid: 3938 - type: WallSolid - components: - - pos: -24.5,-46.5 - parent: 8364 - type: Transform -- uid: 3939 - type: Grille - components: - - pos: -22.5,-46.5 - parent: 8364 - type: Transform -- uid: 3940 - type: WallSolid - components: - - pos: -23.5,-46.5 - parent: 8364 - type: Transform -- uid: 3941 - type: WallSolid - components: - - pos: -32.5,-46.5 - parent: 8364 - type: Transform -- uid: 3942 - type: WallSolid - components: - - pos: -33.5,-46.5 - parent: 8364 - type: Transform -- uid: 3943 - type: WallSolid - components: - - pos: -34.5,-46.5 - parent: 8364 - type: Transform -- uid: 3944 - type: WallReinforced - components: - - pos: 48.5,-72.5 - parent: 8364 - type: Transform -- uid: 3945 - type: WallReinforced - components: - - pos: 48.5,-68.5 - parent: 8364 - type: Transform -- uid: 3946 - type: WallReinforced - components: - - pos: 54.5,-63.5 - parent: 8364 - type: Transform -- uid: 3947 - type: WallReinforced - components: - - pos: 64.5,-60.5 - parent: 8364 - type: Transform -- uid: 3948 - type: WallReinforced - components: - - pos: 59.5,-60.5 - parent: 8364 - type: Transform -- uid: 3949 - type: AirlockMaintLocked - components: - - name: Ghetto Kitchen - type: MetaData - - pos: -34.5,-45.5 - parent: 8364 - type: Transform -- uid: 3950 - type: Grille - components: - - pos: -36.5,-42.5 - parent: 8364 - type: Transform -- uid: 3951 - type: WallReinforced - components: - - pos: 60.5,-63.5 - parent: 8364 - type: Transform -- uid: 3952 - type: WallReinforced - components: - - pos: 64.5,-63.5 - parent: 8364 - type: Transform -- uid: 3953 - type: WallReinforced - components: - - pos: 64.5,-64.5 - parent: 8364 - type: Transform -- uid: 3954 - type: Grille - components: - - pos: -39.5,-45.5 - parent: 8364 - type: Transform -- uid: 3955 - type: WallReinforced - components: - - pos: 64.5,-65.5 - parent: 8364 - type: Transform -- uid: 3956 - type: WallReinforced - components: - - pos: 64.5,-66.5 - parent: 8364 - type: Transform -- uid: 3957 - type: WallReinforced - components: - - pos: -38.5,-48.5 - parent: 8364 - type: Transform -- uid: 3958 - type: WallReinforced - components: - - pos: 64.5,-67.5 - parent: 8364 - type: Transform -- uid: 3959 - type: WallReinforced - components: - - pos: 63.5,-67.5 - parent: 8364 - type: Transform -- uid: 3960 - type: WallReinforced - components: - - pos: -38.5,-47.5 - parent: 8364 - type: Transform -- uid: 3961 - type: Grille - components: - - pos: -35.5,-42.5 - parent: 8364 - type: Transform -- uid: 3962 - type: Grille - components: - - pos: -37.5,-42.5 - parent: 8364 - type: Transform -- uid: 3963 - type: ReinforcedWindow - components: - - pos: -39.5,-45.5 - parent: 8364 - type: Transform -- uid: 3964 - type: WallReinforced - components: - - pos: 63.5,-68.5 - parent: 8364 - type: Transform -- uid: 3965 - type: ReinforcedWindow - components: - - pos: -26.5,-42.5 - parent: 8364 - type: Transform -- uid: 3966 - type: ReinforcedWindow - components: - - pos: -27.5,-42.5 - parent: 8364 - type: Transform -- uid: 3967 - type: ReinforcedWindow - components: - - pos: -28.5,-42.5 - parent: 8364 - type: Transform -- uid: 3968 - type: ReinforcedWindow - components: - - pos: -22.5,-40.5 - parent: 8364 - type: Transform -- uid: 3969 - type: WallReinforced - components: - - pos: 63.5,-69.5 - parent: 8364 - type: Transform -- uid: 3970 - type: WallSolid - components: - - pos: -19.5,-38.5 - parent: 8364 - type: Transform -- uid: 3971 - type: WallReinforced - components: - - pos: 62.5,-69.5 - parent: 8364 - type: Transform -- uid: 3972 - type: ReinforcedWindow - components: - - pos: -21.5,-44.5 - parent: 8364 - type: Transform -- uid: 3973 - type: ReinforcedWindow - components: - - pos: -22.5,-44.5 - parent: 8364 - type: Transform -- uid: 3974 - type: ReinforcedWindow - components: - - pos: -22.5,-46.5 - parent: 8364 - type: Transform -- uid: 3975 - type: ReinforcedWindow - components: - - pos: -21.5,-46.5 - parent: 8364 - type: Transform -- uid: 3976 - type: ReinforcedWindow - components: - - pos: -20.5,-46.5 - parent: 8364 - type: Transform -- uid: 3977 - type: ReinforcedWindow - components: - - pos: -35.5,-42.5 - parent: 8364 - type: Transform -- uid: 3978 - type: WallReinforced - components: - - pos: 66.5,-73.5 - parent: 8364 - type: Transform -- uid: 3979 - type: ReinforcedWindow - components: - - pos: -37.5,-42.5 - parent: 8364 - type: Transform -- uid: 3980 - type: WallReinforced - components: - - pos: 66.5,-72.5 - parent: 8364 - type: Transform -- uid: 3981 - type: WallReinforced - components: - - pos: 66.5,-71.5 - parent: 8364 - type: Transform -- uid: 3982 - type: WallReinforced - components: - - pos: 66.5,-70.5 - parent: 8364 - type: Transform -- uid: 3983 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-42.5 - parent: 8364 - type: Transform -- uid: 3984 - type: WallSolid - components: - - pos: 4.5,-46.5 - parent: 8364 - type: Transform -- uid: 3985 - type: WallSolid - components: - - pos: 3.5,-46.5 - parent: 8364 - type: Transform -- uid: 3986 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-45.5 - parent: 8364 - type: Transform -- uid: 3987 - type: WallReinforced - components: - - pos: 67.5,-70.5 - parent: 8364 - type: Transform -- uid: 3988 - type: Table - components: - - pos: 31.5,-23.5 - parent: 8364 - type: Transform -- uid: 3989 - type: Grille - components: - - pos: 15.5,-40.5 - parent: 8364 - type: Transform -- uid: 3990 - type: Grille - components: - - pos: 15.5,-42.5 - parent: 8364 - type: Transform -- uid: 3991 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 1.5,-47.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 3992 - type: FirelockGlass - components: - - pos: 6.5,-46.5 - parent: 8364 - type: Transform -- uid: 3993 - type: GasPressurePump - components: - - pos: 1.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3994 - type: FirelockGlass - components: - - pos: 5.5,-46.5 - parent: 8364 - type: Transform -- uid: 3995 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-45.5 - parent: 8364 - type: Transform -- uid: 3996 - type: GasPipeStraight - components: - - pos: 16.5,-43.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3997 - type: GasPipeStraight - components: - - pos: 16.5,-42.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3998 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-41.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3999 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-41.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4000 - type: ReinforcedWindow - components: - - pos: 23.5,-40.5 - parent: 8364 - type: Transform -- uid: 4001 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4002 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4003 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4004 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4005 - type: GasPipeTJunction - components: - - pos: 21.5,-41.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4006 - type: ReinforcedWindow - components: - - pos: 23.5,-46.5 - parent: 8364 - type: Transform -- uid: 4007 - type: ReinforcedWindow - components: - - pos: 23.5,-47.5 - parent: 8364 - type: Transform -- uid: 4008 - type: ReinforcedWindow - components: - - pos: 23.5,-48.5 - parent: 8364 - type: Transform -- uid: 4009 - type: ReinforcedWindow - components: - - pos: 23.5,-49.5 - parent: 8364 - type: Transform -- uid: 4010 - type: ReinforcedWindow - components: - - pos: 23.5,-50.5 - parent: 8364 - type: Transform -- uid: 4011 - type: ReinforcedWindow - components: - - pos: 23.5,-51.5 - parent: 8364 - type: Transform -- uid: 4012 - type: ReinforcedWindow - components: - - pos: 23.5,-52.5 - parent: 8364 - type: Transform -- uid: 4013 - type: ReinforcedWindow - components: - - pos: 23.5,-53.5 - parent: 8364 - type: Transform -- uid: 4014 - type: ReinforcedWindow - components: - - pos: 23.5,-54.5 - parent: 8364 - type: Transform -- uid: 4015 - type: ReinforcedWindow - components: - - pos: 23.5,-55.5 - parent: 8364 - type: Transform -- uid: 4016 - type: ReinforcedWindow - components: - - pos: 23.5,-56.5 - parent: 8364 - type: Transform -- uid: 4017 - type: ReinforcedWindow - components: - - pos: 23.5,-57.5 - parent: 8364 - type: Transform -- uid: 4018 - type: ReinforcedWindow - components: - - pos: 21.5,-61.5 - parent: 8364 - type: Transform -- uid: 4019 - type: ReinforcedWindow - components: - - pos: 20.5,-61.5 - parent: 8364 - type: Transform -- uid: 4020 - type: ReinforcedWindow - components: - - pos: 19.5,-61.5 - parent: 8364 - type: Transform -- uid: 4021 - type: ReinforcedWindow - components: - - pos: 18.5,-61.5 - parent: 8364 - type: Transform -- uid: 4022 - type: ReinforcedWindow - components: - - pos: 17.5,-61.5 - parent: 8364 - type: Transform -- uid: 4023 - type: ReinforcedWindow - components: - - pos: 16.5,-61.5 - parent: 8364 - type: Transform -- uid: 4024 - type: ReinforcedWindow - components: - - pos: 15.5,-61.5 - parent: 8364 - type: Transform -- uid: 4025 - type: ReinforcedWindow - components: - - pos: 14.5,-61.5 - parent: 8364 - type: Transform -- uid: 4026 - type: ReinforcedWindow - components: - - pos: 13.5,-61.5 - parent: 8364 - type: Transform -- uid: 4027 - type: ReinforcedWindow - components: - - pos: 23.5,-58.5 - parent: 8364 - type: Transform -- uid: 4028 - type: WallReinforced - components: - - pos: 23.5,-59.5 - parent: 8364 - type: Transform -- uid: 4029 - type: ClothingNeckScarfStripedRed - components: - - pos: 4.459541,12.414446 - parent: 8364 - type: Transform -- uid: 4030 - type: CableMV - components: - - pos: -15.5,-69.5 - parent: 8364 - type: Transform -- uid: 4031 - type: CableApcExtension - components: - - pos: -19.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4032 - type: Poweredlight - components: - - pos: 17.5,-70.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4033 - type: WallReinforced - components: - - pos: 23.5,-61.5 - parent: 8364 - type: Transform -- uid: 4034 - type: ReinforcedWindow - components: - - pos: 12.5,-61.5 - parent: 8364 - type: Transform -- uid: 4035 - type: ReinforcedWindow - components: - - pos: 11.5,-61.5 - parent: 8364 - type: Transform -- uid: 4036 - type: ReinforcedWindow - components: - - pos: 22.5,-61.5 - parent: 8364 - type: Transform -- uid: 4037 - type: WallReinforced - components: - - pos: 10.5,-57.5 - parent: 8364 - type: Transform -- uid: 4038 - type: WallReinforced - components: - - pos: 10.5,-56.5 - parent: 8364 - type: Transform -- uid: 4039 - type: WallReinforced - components: - - pos: 10.5,-55.5 - parent: 8364 - type: Transform -- uid: 4040 - type: WallReinforced - components: - - pos: 10.5,-54.5 - parent: 8364 - type: Transform -- uid: 4041 - type: WallReinforced - components: - - pos: 10.5,-53.5 - parent: 8364 - type: Transform -- uid: 4042 - type: WallReinforced - components: - - pos: 10.5,-52.5 - parent: 8364 - type: Transform -- uid: 4043 - type: WallReinforced - components: - - pos: 67.5,-69.5 - parent: 8364 - type: Transform -- uid: 4044 - type: WallReinforced - components: - - pos: 10.5,-50.5 - parent: 8364 - type: Transform -- uid: 4045 - type: WallReinforced - components: - - pos: 10.5,-49.5 - parent: 8364 - type: Transform -- uid: 4046 - type: WallReinforced - components: - - pos: 9.5,-49.5 - parent: 8364 - type: Transform -- uid: 4047 - type: WallReinforced - components: - - pos: 8.5,-49.5 - parent: 8364 - type: Transform -- uid: 4048 - type: WallReinforced - components: - - pos: 7.5,-49.5 - parent: 8364 - type: Transform -- uid: 4049 - type: WallReinforced - components: - - pos: 6.5,-49.5 - parent: 8364 - type: Transform -- uid: 4050 - type: WallReinforced - components: - - pos: 6.5,-50.5 - parent: 8364 - type: Transform -- uid: 4051 - type: WallReinforced - components: - - pos: 5.5,-50.5 - parent: 8364 - type: Transform -- uid: 4052 - type: WallReinforced - components: - - pos: 3.5,-50.5 - parent: 8364 - type: Transform -- uid: 4053 - type: ReinforcedWindow - components: - - pos: 8.5,-48.5 - parent: 8364 - type: Transform -- uid: 4054 - type: ReinforcedWindow - components: - - pos: 6.5,-53.5 - parent: 8364 - type: Transform -- uid: 4055 - type: ReinforcedWindow - components: - - pos: 6.5,-54.5 - parent: 8364 - type: Transform -- uid: 4056 - type: ReinforcedWindow - components: - - pos: 7.5,-54.5 - parent: 8364 - type: Transform -- uid: 4057 - type: ReinforcedWindow - components: - - pos: 8.5,-54.5 - parent: 8364 - type: Transform -- uid: 4058 - type: ReinforcedWindow - components: - - pos: 9.5,-54.5 - parent: 8364 - type: Transform -- uid: 4059 - type: ReinforcedWindow - components: - - pos: 15.5,-45.5 - parent: 8364 - type: Transform -- uid: 4060 - type: ReinforcedWindow - components: - - pos: 15.5,-43.5 - parent: 8364 - type: Transform -- uid: 4061 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-46.5 - parent: 8364 - type: Transform -- uid: 4062 - type: NitrousOxideCanister - components: - - pos: 7.5,-40.5 - parent: 8364 - type: Transform -- uid: 4063 - type: ReinforcedWindow - components: - - pos: 15.5,-41.5 - parent: 8364 - type: Transform -- uid: 4064 - type: Grille - components: - - pos: 15.5,-45.5 - parent: 8364 - type: Transform -- uid: 4065 - type: SignPlaque - components: - - pos: 9.5,-23.5 - parent: 8364 - type: Transform -- uid: 4066 - type: Bookshelf - components: - - pos: 12.5,-27.5 - parent: 8364 - type: Transform -- uid: 4067 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4068 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.4702005,-4.4925995 - parent: 8364 - type: Transform -- uid: 4069 - type: Bookshelf - components: - - pos: 8.5,-26.5 - parent: 8364 - type: Transform -- uid: 4070 - type: CarpetBlue - components: - - pos: 7.5,-25.5 - parent: 8364 - type: Transform -- uid: 4071 - type: TableCarpet - components: - - pos: 6.5,-27.5 - parent: 8364 - type: Transform -- uid: 4072 - type: CarpetBlue - components: - - pos: 6.5,-26.5 - parent: 8364 - type: Transform -- uid: 4073 - type: GasPipeStraight - components: - - pos: 16.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4074 - type: CarpetBlue - components: - - pos: 7.5,-26.5 - parent: 8364 - type: Transform -- uid: 4075 - type: MedkitBurnFilled - components: - - pos: 34.611923,-41.78676 - parent: 8364 - type: Transform -- uid: 4076 - type: MedkitBurnFilled - components: - - pos: 34.393173,-41.677383 - parent: 8364 - type: Transform -- uid: 4077 - type: TableWood - components: - - pos: -9.5,-15.5 - parent: 8364 - type: Transform -- uid: 4078 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4079 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4080 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4081 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4082 - type: TableGlass - components: - - pos: 45.5,-5.5 - parent: 8364 - type: Transform -- uid: 4083 - type: Grille - components: - - pos: 23.5,-46.5 - parent: 8364 - type: Transform -- uid: 4084 - type: Grille - components: - - pos: 23.5,-47.5 - parent: 8364 - type: Transform -- uid: 4085 - type: Grille - components: - - pos: 23.5,-48.5 - parent: 8364 - type: Transform -- uid: 4086 - type: Grille - components: - - pos: 23.5,-49.5 - parent: 8364 - type: Transform -- uid: 4087 - type: Grille - components: - - pos: 23.5,-50.5 - parent: 8364 - type: Transform -- uid: 4088 - type: Grille - components: - - pos: 23.5,-51.5 - parent: 8364 - type: Transform -- uid: 4089 - type: Grille - components: - - pos: 23.5,-52.5 - parent: 8364 - type: Transform -- uid: 4090 - type: Grille - components: - - pos: 23.5,-53.5 - parent: 8364 - type: Transform -- uid: 4091 - type: Grille - components: - - pos: 23.5,-54.5 - parent: 8364 - type: Transform -- uid: 4092 - type: Grille - components: - - pos: 23.5,-55.5 - parent: 8364 - type: Transform -- uid: 4093 - type: Grille - components: - - pos: 23.5,-56.5 - parent: 8364 - type: Transform -- uid: 4094 - type: Grille - components: - - pos: 23.5,-57.5 - parent: 8364 - type: Transform -- uid: 4095 - type: Grille - components: - - pos: 23.5,-40.5 - parent: 8364 - type: Transform -- uid: 4096 - type: Grille - components: - - pos: 21.5,-61.5 - parent: 8364 - type: Transform -- uid: 4097 - type: Grille - components: - - pos: 20.5,-61.5 - parent: 8364 - type: Transform -- uid: 4098 - type: Grille - components: - - pos: 19.5,-61.5 - parent: 8364 - type: Transform -- uid: 4099 - type: Grille - components: - - pos: 18.5,-61.5 - parent: 8364 - type: Transform -- uid: 4100 - type: Grille - components: - - pos: 17.5,-61.5 - parent: 8364 - type: Transform -- uid: 4101 - type: Grille - components: - - pos: 16.5,-61.5 - parent: 8364 - type: Transform -- uid: 4102 - type: Grille - components: - - pos: 15.5,-61.5 - parent: 8364 - type: Transform -- uid: 4103 - type: Grille - components: - - pos: 14.5,-61.5 - parent: 8364 - type: Transform -- uid: 4104 - type: Grille - components: - - pos: 13.5,-61.5 - parent: 8364 - type: Transform -- uid: 4105 - type: WallSolid - components: - - pos: 15.5,-49.5 - parent: 8364 - type: Transform -- uid: 4106 - type: WallSolid - components: - - pos: 14.5,-49.5 - parent: 8364 - type: Transform -- uid: 4107 - type: WallSolid - components: - - pos: 13.5,-49.5 - parent: 8364 - type: Transform -- uid: 4108 - type: WallSolid - components: - - pos: 14.5,-50.5 - parent: 8364 - type: Transform -- uid: 4109 - type: WallSolid - components: - - pos: 14.5,-51.5 - parent: 8364 - type: Transform -- uid: 4110 - type: WallSolid - components: - - pos: 14.5,-52.5 - parent: 8364 - type: Transform -- uid: 4111 - type: WallSolid - components: - - pos: 14.5,-53.5 - parent: 8364 - type: Transform -- uid: 4112 - type: WallSolid - components: - - pos: 13.5,-53.5 - parent: 8364 - type: Transform -- uid: 4113 - type: WallSolid - components: - - pos: 15.5,-53.5 - parent: 8364 - type: Transform -- uid: 4114 - type: WallReinforced - components: - - pos: 28.5,-57.5 - parent: 8364 - type: Transform -- uid: 4115 - type: WallReinforced - components: - - pos: 27.5,-57.5 - parent: 8364 - type: Transform -- uid: 4116 - type: WallReinforced - components: - - pos: 26.5,-57.5 - parent: 8364 - type: Transform -- uid: 4117 - type: WallReinforced - components: - - pos: 25.5,-57.5 - parent: 8364 - type: Transform -- uid: 4118 - type: WallReinforced - components: - - pos: 15.5,-63.5 - parent: 8364 - type: Transform -- uid: 4119 - type: WallReinforced - components: - - pos: 19.5,-64.5 - parent: 8364 - type: Transform -- uid: 4120 - type: WallReinforced - components: - - pos: 19.5,-65.5 - parent: 8364 - type: Transform -- uid: 4121 - type: WallReinforced - components: - - pos: 19.5,-66.5 - parent: 8364 - type: Transform -- uid: 4122 - type: WallReinforced - components: - - pos: 23.5,-63.5 - parent: 8364 - type: Transform -- uid: 4123 - type: WallReinforced - components: - - pos: 22.5,-67.5 - parent: 8364 - type: Transform -- uid: 4124 - type: WallReinforced - components: - - pos: 21.5,-67.5 - parent: 8364 - type: Transform -- uid: 4125 - type: WallReinforced - components: - - pos: 20.5,-67.5 - parent: 8364 - type: Transform -- uid: 4126 - type: WallReinforced - components: - - pos: 19.5,-67.5 - parent: 8364 - type: Transform -- uid: 4127 - type: WallReinforced - components: - - pos: 11.5,-63.5 - parent: 8364 - type: Transform -- uid: 4128 - type: WallReinforced - components: - - pos: 11.5,-64.5 - parent: 8364 - type: Transform -- uid: 4129 - type: WallReinforced - components: - - pos: 11.5,-65.5 - parent: 8364 - type: Transform -- uid: 4130 - type: WallReinforced - components: - - pos: 11.5,-66.5 - parent: 8364 - type: Transform -- uid: 4131 - type: WallReinforced - components: - - pos: 11.5,-67.5 - parent: 8364 - type: Transform -- uid: 4132 - type: WallReinforced - components: - - pos: 12.5,-67.5 - parent: 8364 - type: Transform -- uid: 4133 - type: WallReinforced - components: - - pos: 13.5,-67.5 - parent: 8364 - type: Transform -- uid: 4134 - type: WallReinforced - components: - - pos: 14.5,-67.5 - parent: 8364 - type: Transform -- uid: 4135 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 7.5,-48.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4136 - type: GasPipeBend - components: - - pos: 6.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4137 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-48.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4138 - type: WallReinforced - components: - - pos: 15.5,-67.5 - parent: 8364 - type: Transform -- uid: 4139 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-48.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4140 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-47.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4141 - type: SinkEmpty - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-20.5 - parent: 8364 - type: Transform -- uid: 4142 - type: WallReinforced - components: - - pos: 23.5,-67.5 - parent: 8364 - type: Transform -- uid: 4143 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-47.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4144 - type: CableApcExtension - components: - - pos: 25.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4145 - type: GasPipeTJunction - components: - - pos: 10.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4146 - type: WallReinforced - components: - - pos: 19.5,-63.5 - parent: 8364 - type: Transform -- uid: 4147 - type: GasPipeStraight - components: - - pos: 11.5,-49.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4148 - type: CableApcExtension - components: - - pos: 25.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4149 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-62.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4150 - type: WallReinforced - components: - - pos: 29.5,-54.5 - parent: 8364 - type: Transform -- uid: 4151 - type: WallReinforced - components: - - pos: 29.5,-55.5 - parent: 8364 - type: Transform -- uid: 4152 - type: WallReinforced - components: - - pos: 29.5,-56.5 - parent: 8364 - type: Transform -- uid: 4153 - type: WallReinforced - components: - - pos: 29.5,-57.5 - parent: 8364 - type: Transform -- uid: 4154 - type: WallReinforced - components: - - pos: 15.5,-64.5 - parent: 8364 - type: Transform -- uid: 4155 - type: WallReinforced - components: - - pos: 15.5,-65.5 - parent: 8364 - type: Transform -- uid: 4156 - type: WallReinforced - components: - - pos: 15.5,-66.5 - parent: 8364 - type: Transform -- uid: 4157 - type: WallReinforced - components: - - pos: 23.5,-64.5 - parent: 8364 - type: Transform -- uid: 4158 - type: WallReinforced - components: - - pos: 23.5,-65.5 - parent: 8364 - type: Transform -- uid: 4159 - type: WallReinforced - components: - - pos: 23.5,-66.5 - parent: 8364 - type: Transform -- uid: 4160 - type: WallReinforced - components: - - pos: 18.5,-67.5 - parent: 8364 - type: Transform -- uid: 4161 - type: WallReinforced - components: - - pos: 17.5,-67.5 - parent: 8364 - type: Transform -- uid: 4162 - type: WallReinforced - components: - - pos: 16.5,-67.5 - parent: 8364 - type: Transform -- uid: 4163 - type: CableApcExtension - components: - - pos: 22.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4164 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-61.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4165 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-62.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4166 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-63.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4167 - type: WallReinforced - components: - - pos: 29.5,-49.5 - parent: 8364 - type: Transform -- uid: 4168 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-61.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4169 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-62.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4170 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-63.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4171 - type: WallReinforced - components: - - pos: 29.5,-45.5 - parent: 8364 - type: Transform -- uid: 4172 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-59.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4173 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-58.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4174 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-61.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4175 - type: WallReinforced - components: - - pos: 25.5,-41.5 - parent: 8364 - type: Transform -- uid: 4176 - type: WallReinforced - components: - - pos: 26.5,-41.5 - parent: 8364 - type: Transform -- uid: 4177 - type: ReinforcedWindow - components: - - pos: 0.5,-23.5 - parent: 8364 - type: Transform -- uid: 4178 - type: WallReinforced - components: - - pos: 28.5,-41.5 - parent: 8364 - type: Transform -- uid: 4179 - type: WallReinforced - components: - - pos: 29.5,-41.5 - parent: 8364 - type: Transform -- uid: 4180 - type: WallReinforced - components: - - pos: 29.5,-42.5 - parent: 8364 - type: Transform -- uid: 4181 - type: WallReinforced - components: - - pos: 29.5,-43.5 - parent: 8364 - type: Transform -- uid: 4182 - type: WallReinforced - components: - - pos: 29.5,-44.5 - parent: 8364 - type: Transform -- uid: 4183 - type: WallReinforced - components: - - pos: 25.5,-45.5 - parent: 8364 - type: Transform -- uid: 4184 - type: WallReinforced - components: - - pos: 29.5,-46.5 - parent: 8364 - type: Transform -- uid: 4185 - type: WallReinforced - components: - - pos: 29.5,-47.5 - parent: 8364 - type: Transform -- uid: 4186 - type: WallReinforced - components: - - pos: 29.5,-48.5 - parent: 8364 - type: Transform -- uid: 4187 - type: WallReinforced - components: - - pos: 25.5,-49.5 - parent: 8364 - type: Transform -- uid: 4188 - type: WallReinforced - components: - - pos: 29.5,-50.5 - parent: 8364 - type: Transform -- uid: 4189 - type: WallReinforced - components: - - pos: 26.5,-53.5 - parent: 8364 - type: Transform -- uid: 4190 - type: WallReinforced - components: - - pos: 29.5,-51.5 - parent: 8364 - type: Transform -- uid: 4191 - type: WallReinforced - components: - - pos: 25.5,-53.5 - parent: 8364 - type: Transform -- uid: 4192 - type: WallReinforced - components: - - pos: 27.5,-53.5 - parent: 8364 - type: Transform -- uid: 4193 - type: WallReinforced - components: - - pos: 28.5,-53.5 - parent: 8364 - type: Transform -- uid: 4194 - type: WallReinforced - components: - - pos: 29.5,-53.5 - parent: 8364 - type: Transform -- uid: 4195 - type: WallReinforced - components: - - pos: 28.5,-49.5 - parent: 8364 - type: Transform -- uid: 4196 - type: WallReinforced - components: - - pos: 26.5,-49.5 - parent: 8364 - type: Transform -- uid: 4197 - type: WallReinforced - components: - - pos: 27.5,-49.5 - parent: 8364 - type: Transform -- uid: 4198 - type: WallReinforced - components: - - pos: 28.5,-45.5 - parent: 8364 - type: Transform -- uid: 4199 - type: WallReinforced - components: - - pos: 27.5,-45.5 - parent: 8364 - type: Transform -- uid: 4200 - type: WallReinforced - components: - - pos: 26.5,-45.5 - parent: 8364 - type: Transform -- uid: 4201 - type: Grille - components: - - pos: 30.5,-81.5 - parent: 8364 - type: Transform -- uid: 4202 - type: Grille - components: - - pos: 30.5,-80.5 - parent: 8364 - type: Transform -- uid: 4203 - type: Grille - components: - - pos: 30.5,-79.5 - parent: 8364 - type: Transform -- uid: 4204 - type: Grille - components: - - pos: 30.5,-78.5 - parent: 8364 - type: Transform -- uid: 4205 - type: Grille - components: - - pos: 30.5,-77.5 - parent: 8364 - type: Transform -- uid: 4206 - type: Grille - components: - - pos: 29.5,-77.5 - parent: 8364 - type: Transform -- uid: 4207 - type: Grille - components: - - pos: 28.5,-77.5 - parent: 8364 - type: Transform -- uid: 4208 - type: Grille - components: - - pos: 27.5,-77.5 - parent: 8364 - type: Transform -- uid: 4209 - type: Grille - components: - - pos: 26.5,-77.5 - parent: 8364 - type: Transform -- uid: 4210 - type: Grille - components: - - pos: 26.5,-78.5 - parent: 8364 - type: Transform -- uid: 4211 - type: Grille - components: - - pos: 26.5,-79.5 - parent: 8364 - type: Transform -- uid: 4212 - type: Grille - components: - - pos: 26.5,-81.5 - parent: 8364 - type: Transform -- uid: 4213 - type: Grille - components: - - pos: 25.5,-79.5 - parent: 8364 - type: Transform -- uid: 4214 - type: Grille - components: - - pos: 24.5,-79.5 - parent: 8364 - type: Transform -- uid: 4215 - type: Grille - components: - - pos: 24.5,-81.5 - parent: 8364 - type: Transform -- uid: 4216 - type: WallReinforced - components: - - pos: 68.5,-69.5 - parent: 8364 - type: Transform -- uid: 4217 - type: WallReinforced - components: - - pos: 71.5,-69.5 - parent: 8364 - type: Transform -- uid: 4218 - type: WallReinforced - components: - - pos: 72.5,-69.5 - parent: 8364 - type: Transform -- uid: 4219 - type: WallReinforced - components: - - pos: 73.5,-69.5 - parent: 8364 - type: Transform -- uid: 4220 - type: WallReinforced - components: - - pos: 73.5,-68.5 - parent: 8364 - type: Transform -- uid: 4221 - type: WallReinforced - components: - - pos: 73.5,-67.5 - parent: 8364 - type: Transform -- uid: 4222 - type: WallReinforced - components: - - pos: 73.5,-66.5 - parent: 8364 - type: Transform -- uid: 4223 - type: WallReinforced - components: - - pos: 73.5,-65.5 - parent: 8364 - type: Transform -- uid: 4224 - type: WallSolid - components: - - pos: 26.5,-83.5 - parent: 8364 - type: Transform -- uid: 4225 - type: WallReinforced - components: - - pos: 75.5,-65.5 - parent: 8364 - type: Transform -- uid: 4226 - type: WallReinforced - components: - - pos: 74.5,-65.5 - parent: 8364 - type: Transform -- uid: 4227 - type: WallReinforced - components: - - pos: 78.5,-65.5 - parent: 8364 - type: Transform -- uid: 4228 - type: ExtinguisherCabinetFilled - components: - - pos: 15.5,-49.5 - parent: 8364 - type: Transform -- uid: 4229 - type: WallReinforced - components: - - pos: 25.5,-87.5 - parent: 8364 - type: Transform -- uid: 4230 - type: WallReinforced - components: - - pos: 25.5,-88.5 - parent: 8364 - type: Transform -- uid: 4231 - type: WallReinforced - components: - - pos: 26.5,-88.5 - parent: 8364 - type: Transform -- uid: 4232 - type: WallReinforced - components: - - pos: 27.5,-88.5 - parent: 8364 - type: Transform -- uid: 4233 - type: WallReinforced - components: - - pos: 29.5,-88.5 - parent: 8364 - type: Transform -- uid: 4234 - type: WallReinforced - components: - - pos: 30.5,-88.5 - parent: 8364 - type: Transform -- uid: 4235 - type: WallReinforced - components: - - pos: 31.5,-88.5 - parent: 8364 - type: Transform -- uid: 4236 - type: WallReinforced - components: - - pos: 31.5,-87.5 - parent: 8364 - type: Transform -- uid: 4237 - type: WallReinforced - components: - - pos: 32.5,-87.5 - parent: 8364 - type: Transform -- uid: 4238 - type: WallReinforced - components: - - pos: 33.5,-87.5 - parent: 8364 - type: Transform -- uid: 4239 - type: WallReinforced - components: - - pos: 34.5,-87.5 - parent: 8364 - type: Transform -- uid: 4240 - type: WallSolid - components: - - pos: 31.5,-86.5 - parent: 8364 - type: Transform -- uid: 4241 - type: ExtinguisherCabinetFilled - components: - - pos: 13.5,-49.5 - parent: 8364 - type: Transform -- uid: 4242 - type: WallSolidRust - components: - - pos: 72.5,-61.5 - parent: 8364 - type: Transform -- uid: 4243 - type: WallReinforced - components: - - pos: -55.5,-19.5 - parent: 8364 - type: Transform -- uid: 4244 - type: Catwalk - components: - - pos: 49.5,-18.5 - parent: 8364 - type: Transform -- uid: 4245 - type: WallReinforced - components: - - pos: 64.5,-57.5 - parent: 8364 - type: Transform -- uid: 4246 - type: WallReinforced - components: - - pos: 64.5,-58.5 - parent: 8364 - type: Transform -- uid: 4247 - type: WallReinforced - components: - - pos: 22.5,-88.5 - parent: 8364 - type: Transform -- uid: 4248 - type: WallReinforced - components: - - pos: 22.5,-87.5 - parent: 8364 - type: Transform -- uid: 4249 - type: WallReinforced - components: - - pos: 23.5,-87.5 - parent: 8364 - type: Transform -- uid: 4250 - type: WallReinforced - components: - - pos: 24.5,-87.5 - parent: 8364 - type: Transform -- uid: 4251 - type: WallReinforced - components: - - pos: 21.5,-89.5 - parent: 8364 - type: Transform -- uid: 4252 - type: WallReinforced - components: - - pos: 21.5,-90.5 - parent: 8364 - type: Transform -- uid: 4253 - type: WallReinforced - components: - - pos: 21.5,-91.5 - parent: 8364 - type: Transform -- uid: 4254 - type: WallSolid - components: - - pos: 25.5,-94.5 - parent: 8364 - type: Transform -- uid: 4255 - type: WallReinforced - components: - - pos: 26.5,-94.5 - parent: 8364 - type: Transform -- uid: 4256 - type: WallReinforced - components: - - pos: 22.5,-93.5 - parent: 8364 - type: Transform -- uid: 4257 - type: WallSolid - components: - - pos: 23.5,-94.5 - parent: 8364 - type: Transform -- uid: 4258 - type: WallReinforced - components: - - pos: 22.5,-94.5 - parent: 8364 - type: Transform -- uid: 4259 - type: WallReinforced - components: - - pos: 21.5,-92.5 - parent: 8364 - type: Transform -- uid: 4260 - type: WallReinforced - components: - - pos: 21.5,-93.5 - parent: 8364 - type: Transform -- uid: 4261 - type: WallReinforced - components: - - pos: 26.5,-90.5 - parent: 8364 - type: Transform -- uid: 4262 - type: WallReinforced - components: - - pos: 26.5,-89.5 - parent: 8364 - type: Transform -- uid: 4263 - type: WallReinforced - components: - - pos: 26.5,-93.5 - parent: 8364 - type: Transform -- uid: 4264 - type: WallReinforced - components: - - pos: 21.5,-88.5 - parent: 8364 - type: Transform -- uid: 4265 - type: WallReinforced - components: - - pos: 34.5,-88.5 - parent: 8364 - type: Transform -- uid: 4266 - type: WallReinforced - components: - - pos: 35.5,-88.5 - parent: 8364 - type: Transform -- uid: 4267 - type: WallReinforced - components: - - pos: 35.5,-89.5 - parent: 8364 - type: Transform -- uid: 4268 - type: WallReinforced - components: - - pos: 35.5,-90.5 - parent: 8364 - type: Transform -- uid: 4269 - type: WallReinforced - components: - - pos: 51.5,-55.5 - parent: 8364 - type: Transform -- uid: 4270 - type: WallReinforced - components: - - pos: 35.5,-91.5 - parent: 8364 - type: Transform -- uid: 4271 - type: WallReinforced - components: - - pos: 35.5,-92.5 - parent: 8364 - type: Transform -- uid: 4272 - type: WallReinforced - components: - - pos: 35.5,-93.5 - parent: 8364 - type: Transform -- uid: 4273 - type: WallReinforced - components: - - pos: 34.5,-93.5 - parent: 8364 - type: Transform -- uid: 4274 - type: WallReinforced - components: - - pos: 34.5,-94.5 - parent: 8364 - type: Transform -- uid: 4275 - type: WallSolid - components: - - pos: 33.5,-94.5 - parent: 8364 - type: Transform -- uid: 4276 - type: WallSolid - components: - - pos: 31.5,-94.5 - parent: 8364 - type: Transform -- uid: 4277 - type: WallReinforced - components: - - pos: 30.5,-89.5 - parent: 8364 - type: Transform -- uid: 4278 - type: WallReinforced - components: - - pos: 30.5,-90.5 - parent: 8364 - type: Transform -- uid: 4279 - type: WallReinforced - components: - - pos: 30.5,-94.5 - parent: 8364 - type: Transform -- uid: 4280 - type: WallReinforced - components: - - pos: 30.5,-93.5 - parent: 8364 - type: Transform -- uid: 4281 - type: WallReinforced - components: - - pos: 29.5,-94.5 - parent: 8364 - type: Transform -- uid: 4282 - type: WallReinforced - components: - - pos: 27.5,-94.5 - parent: 8364 - type: Transform -- uid: 4283 - type: WallReinforced - components: - - pos: 32.5,-118.5 - parent: 8364 - type: Transform -- uid: 4284 - type: WallReinforced - components: - - pos: 32.5,-117.5 - parent: 8364 - type: Transform -- uid: 4285 - type: WallReinforced - components: - - pos: 32.5,-116.5 - parent: 8364 - type: Transform -- uid: 4286 - type: WallReinforced - components: - - pos: 31.5,-118.5 - parent: 8364 - type: Transform -- uid: 4287 - type: WallReinforced - components: - - pos: 31.5,-117.5 - parent: 8364 - type: Transform -- uid: 4288 - type: WallReinforced - components: - - pos: 31.5,-116.5 - parent: 8364 - type: Transform -- uid: 4289 - type: WallReinforced - components: - - pos: 30.5,-118.5 - parent: 8364 - type: Transform -- uid: 4290 - type: WallReinforced - components: - - pos: 30.5,-117.5 - parent: 8364 - type: Transform -- uid: 4291 - type: WallReinforced - components: - - pos: 30.5,-116.5 - parent: 8364 - type: Transform -- uid: 4292 - type: WallReinforced - components: - - pos: 29.5,-118.5 - parent: 8364 - type: Transform -- uid: 4293 - type: WallReinforced - components: - - pos: 29.5,-117.5 - parent: 8364 - type: Transform -- uid: 4294 - type: WallReinforced - components: - - pos: 29.5,-116.5 - parent: 8364 - type: Transform -- uid: 4295 - type: WallReinforced - components: - - pos: 28.5,-118.5 - parent: 8364 - type: Transform -- uid: 4296 - type: WallReinforced - components: - - pos: 28.5,-117.5 - parent: 8364 - type: Transform -- uid: 4297 - type: WallReinforced - components: - - pos: 28.5,-116.5 - parent: 8364 - type: Transform -- uid: 4298 - type: WallReinforced - components: - - pos: 27.5,-118.5 - parent: 8364 - type: Transform -- uid: 4299 - type: WallReinforced - components: - - pos: 27.5,-117.5 - parent: 8364 - type: Transform -- uid: 4300 - type: WallReinforced - components: - - pos: 27.5,-116.5 - parent: 8364 - type: Transform -- uid: 4301 - type: WallReinforced - components: - - pos: 26.5,-118.5 - parent: 8364 - type: Transform -- uid: 4302 - type: WallReinforced - components: - - pos: 26.5,-117.5 - parent: 8364 - type: Transform -- uid: 4303 - type: WallReinforced - components: - - pos: 26.5,-116.5 - parent: 8364 - type: Transform -- uid: 4304 - type: WallReinforced - components: - - pos: 25.5,-118.5 - parent: 8364 - type: Transform -- uid: 4305 - type: WallReinforced - components: - - pos: 25.5,-117.5 - parent: 8364 - type: Transform -- uid: 4306 - type: WallReinforced - components: - - pos: 25.5,-116.5 - parent: 8364 - type: Transform -- uid: 4307 - type: WallReinforced - components: - - pos: 24.5,-118.5 - parent: 8364 - type: Transform -- uid: 4308 - type: WallReinforced - components: - - pos: 24.5,-117.5 - parent: 8364 - type: Transform -- uid: 4309 - type: WallReinforced - components: - - pos: 24.5,-116.5 - parent: 8364 - type: Transform -- uid: 4310 - type: WallReinforced - components: - - pos: 33.5,-117.5 - parent: 8364 - type: Transform -- uid: 4311 - type: WallReinforced - components: - - pos: 33.5,-116.5 - parent: 8364 - type: Transform -- uid: 4312 - type: WallReinforced - components: - - pos: 33.5,-115.5 - parent: 8364 - type: Transform -- uid: 4313 - type: WallReinforced - components: - - pos: 33.5,-114.5 - parent: 8364 - type: Transform -- uid: 4314 - type: WallReinforced - components: - - pos: 33.5,-113.5 - parent: 8364 - type: Transform -- uid: 4315 - type: WallReinforced - components: - - pos: 33.5,-112.5 - parent: 8364 - type: Transform -- uid: 4316 - type: WallReinforced - components: - - pos: 33.5,-111.5 - parent: 8364 - type: Transform -- uid: 4317 - type: WallReinforced - components: - - pos: 33.5,-110.5 - parent: 8364 - type: Transform -- uid: 4318 - type: WallReinforced - components: - - pos: 33.5,-109.5 - parent: 8364 - type: Transform -- uid: 4319 - type: WallReinforced - components: - - pos: 34.5,-116.5 - parent: 8364 - type: Transform -- uid: 4320 - type: WallReinforced - components: - - pos: 34.5,-115.5 - parent: 8364 - type: Transform -- uid: 4321 - type: WallReinforced - components: - - pos: 34.5,-114.5 - parent: 8364 - type: Transform -- uid: 4322 - type: WallReinforced - components: - - pos: 34.5,-113.5 - parent: 8364 - type: Transform -- uid: 4323 - type: WallReinforced - components: - - pos: 34.5,-112.5 - parent: 8364 - type: Transform -- uid: 4324 - type: WallReinforced - components: - - pos: 34.5,-111.5 - parent: 8364 - type: Transform -- uid: 4325 - type: WallReinforced - components: - - pos: 34.5,-110.5 - parent: 8364 - type: Transform -- uid: 4326 - type: WallReinforced - components: - - pos: 34.5,-109.5 - parent: 8364 - type: Transform -- uid: 4327 - type: WallReinforced - components: - - pos: 34.5,-108.5 - parent: 8364 - type: Transform -- uid: 4328 - type: WallReinforced - components: - - pos: 34.5,-107.5 - parent: 8364 - type: Transform -- uid: 4329 - type: WallReinforced - components: - - pos: 34.5,-106.5 - parent: 8364 - type: Transform -- uid: 4330 - type: WallReinforced - components: - - pos: 34.5,-105.5 - parent: 8364 - type: Transform -- uid: 4331 - type: WallReinforced - components: - - pos: 34.5,-104.5 - parent: 8364 - type: Transform -- uid: 4332 - type: WallReinforced - components: - - pos: 34.5,-103.5 - parent: 8364 - type: Transform -- uid: 4333 - type: WallReinforced - components: - - pos: 34.5,-102.5 - parent: 8364 - type: Transform -- uid: 4334 - type: WallReinforced - components: - - pos: 33.5,-102.5 - parent: 8364 - type: Transform -- uid: 4335 - type: WallReinforced - components: - - pos: 33.5,-101.5 - parent: 8364 - type: Transform -- uid: 4336 - type: WallReinforced - components: - - pos: 33.5,-100.5 - parent: 8364 - type: Transform -- uid: 4337 - type: WallReinforced - components: - - pos: 33.5,-99.5 - parent: 8364 - type: Transform -- uid: 4338 - type: WallReinforced - components: - - pos: 33.5,-98.5 - parent: 8364 - type: Transform -- uid: 4339 - type: WallReinforced - components: - - pos: 33.5,-97.5 - parent: 8364 - type: Transform -- uid: 4340 - type: WallReinforced - components: - - pos: 34.5,-97.5 - parent: 8364 - type: Transform -- uid: 4341 - type: WallReinforced - components: - - pos: 34.5,-96.5 - parent: 8364 - type: Transform -- uid: 4342 - type: WallReinforced - components: - - pos: 34.5,-95.5 - parent: 8364 - type: Transform -- uid: 4343 - type: WallReinforced - components: - - pos: 32.5,-115.5 - parent: 8364 - type: Transform -- uid: 4344 - type: WallReinforced - components: - - pos: 32.5,-114.5 - parent: 8364 - type: Transform -- uid: 4345 - type: WallReinforced - components: - - pos: 32.5,-113.5 - parent: 8364 - type: Transform -- uid: 4346 - type: WallReinforced - components: - - pos: 24.5,-115.5 - parent: 8364 - type: Transform -- uid: 4347 - type: WallReinforced - components: - - pos: 24.5,-114.5 - parent: 8364 - type: Transform -- uid: 4348 - type: WallReinforced - components: - - pos: 24.5,-113.5 - parent: 8364 - type: Transform -- uid: 4349 - type: WallReinforced - components: - - pos: 23.5,-117.5 - parent: 8364 - type: Transform -- uid: 4350 - type: WallReinforced - components: - - pos: 23.5,-116.5 - parent: 8364 - type: Transform -- uid: 4351 - type: WallReinforced - components: - - pos: 23.5,-115.5 - parent: 8364 - type: Transform -- uid: 4352 - type: WallReinforced - components: - - pos: 23.5,-114.5 - parent: 8364 - type: Transform -- uid: 4353 - type: WallReinforced - components: - - pos: 23.5,-113.5 - parent: 8364 - type: Transform -- uid: 4354 - type: WallReinforced - components: - - pos: 23.5,-112.5 - parent: 8364 - type: Transform -- uid: 4355 - type: WallReinforced - components: - - pos: 23.5,-111.5 - parent: 8364 - type: Transform -- uid: 4356 - type: WallReinforced - components: - - pos: 23.5,-110.5 - parent: 8364 - type: Transform -- uid: 4357 - type: WallReinforced - components: - - pos: 23.5,-109.5 - parent: 8364 - type: Transform -- uid: 4358 - type: WallReinforced - components: - - pos: 22.5,-116.5 - parent: 8364 - type: Transform -- uid: 4359 - type: WallReinforced - components: - - pos: 22.5,-115.5 - parent: 8364 - type: Transform -- uid: 4360 - type: WallReinforced - components: - - pos: 22.5,-114.5 - parent: 8364 - type: Transform -- uid: 4361 - type: WallReinforced - components: - - pos: 22.5,-113.5 - parent: 8364 - type: Transform -- uid: 4362 - type: WallReinforced - components: - - pos: 22.5,-112.5 - parent: 8364 - type: Transform -- uid: 4363 - type: WallReinforced - components: - - pos: 22.5,-111.5 - parent: 8364 - type: Transform -- uid: 4364 - type: WallReinforced - components: - - pos: 22.5,-110.5 - parent: 8364 - type: Transform -- uid: 4365 - type: WallReinforced - components: - - pos: 22.5,-109.5 - parent: 8364 - type: Transform -- uid: 4366 - type: WallReinforced - components: - - pos: 22.5,-108.5 - parent: 8364 - type: Transform -- uid: 4367 - type: WallReinforced - components: - - pos: 22.5,-107.5 - parent: 8364 - type: Transform -- uid: 4368 - type: WallReinforced - components: - - pos: 22.5,-106.5 - parent: 8364 - type: Transform -- uid: 4369 - type: WallReinforced - components: - - pos: 22.5,-105.5 - parent: 8364 - type: Transform -- uid: 4370 - type: WallReinforced - components: - - pos: 22.5,-104.5 - parent: 8364 - type: Transform -- uid: 4371 - type: WallReinforced - components: - - pos: 22.5,-103.5 - parent: 8364 - type: Transform -- uid: 4372 - type: WallReinforced - components: - - pos: 22.5,-102.5 - parent: 8364 - type: Transform -- uid: 4373 - type: WallReinforced - components: - - pos: 23.5,-102.5 - parent: 8364 - type: Transform -- uid: 4374 - type: WallReinforced - components: - - pos: 23.5,-101.5 - parent: 8364 - type: Transform -- uid: 4375 - type: WallReinforced - components: - - pos: 23.5,-100.5 - parent: 8364 - type: Transform -- uid: 4376 - type: WallReinforced - components: - - pos: 23.5,-99.5 - parent: 8364 - type: Transform -- uid: 4377 - type: WallReinforced - components: - - pos: 23.5,-98.5 - parent: 8364 - type: Transform -- uid: 4378 - type: WallReinforced - components: - - pos: 23.5,-97.5 - parent: 8364 - type: Transform -- uid: 4379 - type: WallReinforced - components: - - pos: 22.5,-97.5 - parent: 8364 - type: Transform -- uid: 4380 - type: WallReinforced - components: - - pos: 22.5,-96.5 - parent: 8364 - type: Transform -- uid: 4381 - type: WallReinforced - components: - - pos: 22.5,-95.5 - parent: 8364 - type: Transform -- uid: 4382 - type: WallReinforced - components: - - pos: 31.5,-95.5 - parent: 8364 - type: Transform -- uid: 4383 - type: WallReinforced - components: - - pos: 31.5,-96.5 - parent: 8364 - type: Transform -- uid: 4384 - type: WallReinforced - components: - - pos: 31.5,-97.5 - parent: 8364 - type: Transform -- uid: 4385 - type: WallReinforced - components: - - pos: 31.5,-98.5 - parent: 8364 - type: Transform -- uid: 4386 - type: WallReinforced - components: - - pos: 64.5,-59.5 - parent: 8364 - type: Transform -- uid: 4387 - type: WallReinforced - components: - - pos: 31.5,-100.5 - parent: 8364 - type: Transform -- uid: 4388 - type: WallReinforced - components: - - pos: 31.5,-101.5 - parent: 8364 - type: Transform -- uid: 4389 - type: WallReinforced - components: - - pos: 31.5,-102.5 - parent: 8364 - type: Transform -- uid: 4390 - type: WallReinforced - components: - - pos: 31.5,-103.5 - parent: 8364 - type: Transform -- uid: 4391 - type: WallReinforced - components: - - pos: 31.5,-104.5 - parent: 8364 - type: Transform -- uid: 4392 - type: WallReinforced - components: - - pos: 31.5,-105.5 - parent: 8364 - type: Transform -- uid: 4393 - type: WallReinforced - components: - - pos: 31.5,-106.5 - parent: 8364 - type: Transform -- uid: 4394 - type: WallReinforced - components: - - pos: 31.5,-107.5 - parent: 8364 - type: Transform -- uid: 4395 - type: WallReinforced - components: - - pos: 32.5,-104.5 - parent: 8364 - type: Transform -- uid: 4396 - type: WallReinforced - components: - - pos: 32.5,-105.5 - parent: 8364 - type: Transform -- uid: 4397 - type: WallReinforced - components: - - pos: 32.5,-106.5 - parent: 8364 - type: Transform -- uid: 4398 - type: WallReinforced - components: - - pos: 32.5,-107.5 - parent: 8364 - type: Transform -- uid: 4399 - type: WallReinforced - components: - - pos: 32.5,-108.5 - parent: 8364 - type: Transform -- uid: 4400 - type: WallReinforced - components: - - pos: 24.5,-104.5 - parent: 8364 - type: Transform -- uid: 4401 - type: WallReinforced - components: - - pos: 24.5,-105.5 - parent: 8364 - type: Transform -- uid: 4402 - type: WallReinforced - components: - - pos: 24.5,-106.5 - parent: 8364 - type: Transform -- uid: 4403 - type: WallReinforced - components: - - pos: 24.5,-107.5 - parent: 8364 - type: Transform -- uid: 4404 - type: WallReinforced - components: - - pos: 24.5,-108.5 - parent: 8364 - type: Transform -- uid: 4405 - type: WallReinforced - components: - - pos: 25.5,-107.5 - parent: 8364 - type: Transform -- uid: 4406 - type: WallReinforced - components: - - pos: 25.5,-106.5 - parent: 8364 - type: Transform -- uid: 4407 - type: WallReinforced - components: - - pos: 25.5,-105.5 - parent: 8364 - type: Transform -- uid: 4408 - type: WallReinforced - components: - - pos: 25.5,-104.5 - parent: 8364 - type: Transform -- uid: 4409 - type: WallReinforced - components: - - pos: 25.5,-103.5 - parent: 8364 - type: Transform -- uid: 4410 - type: WallReinforced - components: - - pos: 25.5,-102.5 - parent: 8364 - type: Transform -- uid: 4411 - type: WallReinforced - components: - - pos: 25.5,-101.5 - parent: 8364 - type: Transform -- uid: 4412 - type: WallReinforced - components: - - pos: 25.5,-100.5 - parent: 8364 - type: Transform -- uid: 4413 - type: WallReinforced - components: - - pos: 59.5,-63.5 - parent: 8364 - type: Transform -- uid: 4414 - type: WallReinforced - components: - - pos: 25.5,-98.5 - parent: 8364 - type: Transform -- uid: 4415 - type: WallReinforced - components: - - pos: 25.5,-97.5 - parent: 8364 - type: Transform -- uid: 4416 - type: WallReinforced - components: - - pos: 25.5,-96.5 - parent: 8364 - type: Transform -- uid: 4417 - type: WallReinforced - components: - - pos: 25.5,-95.5 - parent: 8364 - type: Transform -- uid: 4418 - type: Grille - components: - - pos: 29.5,-95.5 - parent: 8364 - type: Transform -- uid: 4419 - type: Grille - components: - - pos: 29.5,-96.5 - parent: 8364 - type: Transform -- uid: 4420 - type: Grille - components: - - pos: 29.5,-97.5 - parent: 8364 - type: Transform -- uid: 4421 - type: Grille - components: - - pos: 29.5,-98.5 - parent: 8364 - type: Transform -- uid: 4422 - type: Grille - components: - - pos: 29.5,-99.5 - parent: 8364 - type: Transform -- uid: 4423 - type: Grille - components: - - pos: 29.5,-100.5 - parent: 8364 - type: Transform -- uid: 4424 - type: Grille - components: - - pos: 29.5,-101.5 - parent: 8364 - type: Transform -- uid: 4425 - type: Grille - components: - - pos: 29.5,-102.5 - parent: 8364 - type: Transform -- uid: 4426 - type: Grille - components: - - pos: 29.5,-103.5 - parent: 8364 - type: Transform -- uid: 4427 - type: WallReinforced - components: - - pos: 30.5,-104.5 - parent: 8364 - type: Transform -- uid: 4428 - type: WallReinforced - components: - - pos: 29.5,-104.5 - parent: 8364 - type: Transform -- uid: 4429 - type: WallReinforced - components: - - pos: 27.5,-104.5 - parent: 8364 - type: Transform -- uid: 4430 - type: Grille - components: - - pos: 33.5,-107.5 - parent: 8364 - type: Transform -- uid: 4431 - type: Grille - components: - - pos: 33.5,-108.5 - parent: 8364 - type: Transform -- uid: 4432 - type: WallReinforced - components: - - pos: 26.5,-104.5 - parent: 8364 - type: Transform -- uid: 4433 - type: Grille - components: - - pos: 27.5,-103.5 - parent: 8364 - type: Transform -- uid: 4434 - type: Grille - components: - - pos: 27.5,-102.5 - parent: 8364 - type: Transform -- uid: 4435 - type: Grille - components: - - pos: 27.5,-101.5 - parent: 8364 - type: Transform -- uid: 4436 - type: Grille - components: - - pos: 27.5,-100.5 - parent: 8364 - type: Transform -- uid: 4437 - type: Grille - components: - - pos: 27.5,-99.5 - parent: 8364 - type: Transform -- uid: 4438 - type: Grille - components: - - pos: 27.5,-98.5 - parent: 8364 - type: Transform -- uid: 4439 - type: Grille - components: - - pos: 27.5,-97.5 - parent: 8364 - type: Transform -- uid: 4440 - type: Grille - components: - - pos: 27.5,-96.5 - parent: 8364 - type: Transform -- uid: 4441 - type: Grille - components: - - pos: 27.5,-95.5 - parent: 8364 - type: Transform -- uid: 4442 - type: Grille - components: - - pos: 23.5,-108.5 - parent: 8364 - type: Transform -- uid: 4443 - type: Grille - components: - - pos: 23.5,-107.5 - parent: 8364 - type: Transform -- uid: 4444 - type: Grille - components: - - pos: 30.5,-107.5 - parent: 8364 - type: Transform -- uid: 4445 - type: Grille - components: - - pos: 29.5,-107.5 - parent: 8364 - type: Transform -- uid: 4446 - type: Grille - components: - - pos: 27.5,-107.5 - parent: 8364 - type: Transform -- uid: 4447 - type: Grille - components: - - pos: 26.5,-107.5 - parent: 8364 - type: Transform -- uid: 4448 - type: WallReinforced - components: - - pos: 29.5,-111.5 - parent: 8364 - type: Transform -- uid: 4449 - type: WallReinforced - components: - - pos: 29.5,-112.5 - parent: 8364 - type: Transform -- uid: 4450 - type: WallReinforced - components: - - pos: 29.5,-113.5 - parent: 8364 - type: Transform -- uid: 4451 - type: WallReinforced - components: - - pos: 27.5,-111.5 - parent: 8364 - type: Transform -- uid: 4452 - type: WallReinforced - components: - - pos: 27.5,-112.5 - parent: 8364 - type: Transform -- uid: 4453 - type: WallReinforced - components: - - pos: 27.5,-113.5 - parent: 8364 - type: Transform -- uid: 4454 - type: WallReinforced - components: - - pos: 28.5,-112.5 - parent: 8364 - type: Transform -- uid: 4455 - type: ReinforcedWindow - components: - - pos: 29.5,-103.5 - parent: 8364 - type: Transform -- uid: 4456 - type: ReinforcedWindow - components: - - pos: 29.5,-102.5 - parent: 8364 - type: Transform -- uid: 4457 - type: ReinforcedWindow - components: - - pos: 29.5,-101.5 - parent: 8364 - type: Transform -- uid: 4458 - type: ReinforcedWindow - components: - - pos: 29.5,-100.5 - parent: 8364 - type: Transform -- uid: 4459 - type: ReinforcedWindow - components: - - pos: 29.5,-99.5 - parent: 8364 - type: Transform -- uid: 4460 - type: ReinforcedWindow - components: - - pos: 29.5,-98.5 - parent: 8364 - type: Transform -- uid: 4461 - type: ReinforcedWindow - components: - - pos: 29.5,-97.5 - parent: 8364 - type: Transform -- uid: 4462 - type: WallReinforced - components: - - pos: 32.5,-111.5 - parent: 8364 - type: Transform -- uid: 4463 - type: ReinforcedWindow - components: - - pos: 29.5,-96.5 - parent: 8364 - type: Transform -- uid: 4464 - type: ReinforcedWindow - components: - - pos: 29.5,-95.5 - parent: 8364 - type: Transform -- uid: 4465 - type: ReinforcedWindow - components: - - pos: 27.5,-95.5 - parent: 8364 - type: Transform -- uid: 4466 - type: ReinforcedWindow - components: - - pos: 27.5,-96.5 - parent: 8364 - type: Transform -- uid: 4467 - type: ReinforcedWindow - components: - - pos: 27.5,-97.5 - parent: 8364 - type: Transform -- uid: 4468 - type: ReinforcedWindow - components: - - pos: 27.5,-98.5 - parent: 8364 - type: Transform -- uid: 4469 - type: ReinforcedWindow - components: - - pos: 27.5,-99.5 - parent: 8364 - type: Transform -- uid: 4470 - type: ReinforcedWindow - components: - - pos: 27.5,-100.5 - parent: 8364 - type: Transform -- uid: 4471 - type: ReinforcedWindow - components: - - pos: 27.5,-101.5 - parent: 8364 - type: Transform -- uid: 4472 - type: ReinforcedWindow - components: - - pos: 27.5,-102.5 - parent: 8364 - type: Transform -- uid: 4473 - type: ReinforcedWindow - components: - - pos: 27.5,-103.5 - parent: 8364 - type: Transform -- uid: 4474 - type: ReinforcedWindow - components: - - pos: 30.5,-107.5 - parent: 8364 - type: Transform -- uid: 4475 - type: ReinforcedWindow - components: - - pos: 29.5,-107.5 - parent: 8364 - type: Transform -- uid: 4476 - type: ReinforcedWindow - components: - - pos: 27.5,-107.5 - parent: 8364 - type: Transform -- uid: 4477 - type: ReinforcedWindow - components: - - pos: 26.5,-107.5 - parent: 8364 - type: Transform -- uid: 4478 - type: WallReinforced - components: - - pos: 32.5,-110.5 - parent: 8364 - type: Transform -- uid: 4479 - type: WallReinforced - components: - - pos: 32.5,-109.5 - parent: 8364 - type: Transform -- uid: 4480 - type: WallReinforced - components: - - pos: 24.5,-111.5 - parent: 8364 - type: Transform -- uid: 4481 - type: WallReinforced - components: - - pos: 24.5,-110.5 - parent: 8364 - type: Transform -- uid: 4482 - type: WallReinforced - components: - - pos: 24.5,-109.5 - parent: 8364 - type: Transform -- uid: 4483 - type: ReinforcedWindow - components: - - pos: 30.5,-81.5 - parent: 8364 - type: Transform -- uid: 4484 - type: ReinforcedWindow - components: - - pos: 30.5,-80.5 - parent: 8364 - type: Transform -- uid: 4485 - type: ReinforcedWindow - components: - - pos: 30.5,-79.5 - parent: 8364 - type: Transform -- uid: 4486 - type: ReinforcedWindow - components: - - pos: 30.5,-78.5 - parent: 8364 - type: Transform -- uid: 4487 - type: ReinforcedWindow - components: - - pos: 30.5,-77.5 - parent: 8364 - type: Transform -- uid: 4488 - type: ReinforcedWindow - components: - - pos: 29.5,-77.5 - parent: 8364 - type: Transform -- uid: 4489 - type: ReinforcedWindow - components: - - pos: 28.5,-77.5 - parent: 8364 - type: Transform -- uid: 4490 - type: ReinforcedWindow - components: - - pos: 27.5,-77.5 - parent: 8364 - type: Transform -- uid: 4491 - type: ReinforcedWindow - components: - - pos: 26.5,-77.5 - parent: 8364 - type: Transform -- uid: 4492 - type: ReinforcedWindow - components: - - pos: 26.5,-78.5 - parent: 8364 - type: Transform -- uid: 4493 - type: ReinforcedWindow - components: - - pos: 26.5,-79.5 - parent: 8364 - type: Transform -- uid: 4494 - type: ReinforcedWindow - components: - - pos: 25.5,-79.5 - parent: 8364 - type: Transform -- uid: 4495 - type: ReinforcedWindow - components: - - pos: 24.5,-79.5 - parent: 8364 - type: Transform -- uid: 4496 - type: ReinforcedWindow - components: - - pos: 24.5,-81.5 - parent: 8364 - type: Transform -- uid: 4497 - type: ReinforcedWindow - components: - - pos: 26.5,-81.5 - parent: 8364 - type: Transform -- uid: 4498 - type: CableMV - components: - - pos: -3.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4499 - type: CableMV - components: - - pos: -4.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4500 - type: CableMV - components: - - pos: -5.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4501 - type: ParticleAcceleratorEmitterCenterUnfinished - components: - - pos: -0.5,-73.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 4502 - type: ParticleAcceleratorEmitterLeftUnfinished - components: - - pos: -1.5,-73.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 4503 - type: ParticleAcceleratorEmitterRightUnfinished - components: - - pos: 0.5,-73.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 4504 - type: CableMV - components: - - pos: -8.5,-92.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4505 - type: CableMV - components: - - pos: -8.5,-83.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4506 - type: CableMV - components: - - pos: 7.5,-86.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4507 - type: CableHV - components: - - pos: -1.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4508 - type: CableHV - components: - - pos: -2.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4509 - type: CableHV - components: - - pos: 7.5,-85.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4510 - type: ReinforcedPlasmaWindow - components: - - pos: -8.5,-72.5 - parent: 8364 - type: Transform -- uid: 4511 - type: Grille - components: - - pos: -3.5,-78.5 - parent: 8364 - type: Transform -- uid: 4512 - type: WallReinforced - components: - - pos: 6.5,-68.5 - parent: 8364 - type: Transform -- uid: 4513 - type: Grille - components: - - pos: 1.5,-75.5 - parent: 8364 - type: Transform -- uid: 4514 - type: Grille - components: - - pos: 1.5,-102.5 - parent: 8364 - type: Transform -- uid: 4515 - type: Grille - components: - - pos: -8.5,-102.5 - parent: 8364 - type: Transform -- uid: 4516 - type: Grille - components: - - pos: -0.5,-100.5 - parent: 8364 - type: Transform -- uid: 4517 - type: AirlockMaintCaptainLocked - components: - - name: Drone Closet - type: MetaData - - pos: 7.5,-37.5 - parent: 8364 - type: Transform -- uid: 4518 - type: Emitter - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-84.5 - parent: 8364 - type: Transform -- uid: 4519 - type: Emitter - components: - - pos: 3.5,-80.5 - parent: 8364 - type: Transform -- uid: 4520 - type: CableApcExtension - components: - - pos: -18.5,42.5 - parent: 8364 - type: Transform -- uid: 4521 - type: Emitter - components: - - pos: -4.5,-80.5 - parent: 8364 - type: Transform -- uid: 4522 - type: CableApcExtension - components: - - pos: -20.5,45.5 - parent: 8364 - type: Transform -- uid: 4523 - type: WallReinforced - components: - - pos: 11.5,-87.5 - parent: 8364 - type: Transform -- uid: 4524 - type: WallReinforced - components: - - pos: 10.5,-87.5 - parent: 8364 - type: Transform -- uid: 4525 - type: WallReinforced - components: - - pos: 60.5,-60.5 - parent: 8364 - type: Transform -- uid: 4526 - type: Grille - components: - - pos: 12.5,-85.5 - parent: 8364 - type: Transform -- uid: 4527 - type: Grille - components: - - pos: 12.5,-86.5 - parent: 8364 - type: Transform -- uid: 4528 - type: Grille - components: - - pos: 12.5,-87.5 - parent: 8364 - type: Transform -- uid: 4529 - type: Grille - components: - - pos: 12.5,-88.5 - parent: 8364 - type: Transform -- uid: 4530 - type: Grille - components: - - pos: 11.5,-88.5 - parent: 8364 - type: Transform -- uid: 4531 - type: Grille - components: - - pos: 10.5,-88.5 - parent: 8364 - type: Transform -- uid: 4532 - type: WallReinforced - components: - - pos: 55.5,-60.5 - parent: 8364 - type: Transform -- uid: 4533 - type: Grille - components: - - pos: 13.5,-88.5 - parent: 8364 - type: Transform -- uid: 4534 - type: Grille - components: - - pos: 14.5,-88.5 - parent: 8364 - type: Transform -- uid: 4535 - type: Grille - components: - - pos: 16.5,-88.5 - parent: 8364 - type: Transform -- uid: 4536 - type: Grille - components: - - pos: 20.5,-88.5 - parent: 8364 - type: Transform -- uid: 4537 - type: GrilleBroken - components: - - pos: 19.5,-88.5 - parent: 8364 - type: Transform -- uid: 4538 - type: GrilleBroken - components: - - pos: 18.5,-88.5 - parent: 8364 - type: Transform -- uid: 4539 - type: GrilleBroken - components: - - pos: 17.5,-88.5 - parent: 8364 - type: Transform -- uid: 4540 - type: GrilleBroken - components: - - pos: 15.5,-88.5 - parent: 8364 - type: Transform -- uid: 4541 - type: Emitter - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-92.5 - parent: 8364 - type: Transform -- uid: 4542 - type: Grille - components: - - pos: -1.5,-100.5 - parent: 8364 - type: Transform -- uid: 4543 - type: Grille - components: - - pos: -7.5,-102.5 - parent: 8364 - type: Transform -- uid: 4544 - type: Grille - components: - - pos: 2.5,-102.5 - parent: 8364 - type: Transform -- uid: 4545 - type: Grille - components: - - pos: 2.5,-75.5 - parent: 8364 - type: Transform -- uid: 4546 - type: WallReinforced - components: - - pos: 6.5,-69.5 - parent: 8364 - type: Transform -- uid: 4547 - type: Grille - components: - - pos: -2.5,-78.5 - parent: 8364 - type: Transform -- uid: 4548 - type: Grille - components: - - pos: 10.5,-70.5 - parent: 8364 - type: Transform -- uid: 4549 - type: CableHV - components: - - pos: 7.5,-86.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4550 - type: CableHV - components: - - pos: -1.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4551 - type: CableHV - components: - - pos: -2.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4552 - type: CableMV - components: - - pos: 7.5,-85.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4553 - type: CableMV - components: - - pos: -8.5,-84.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4554 - type: CableMV - components: - - pos: -8.5,-93.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4555 - type: ParticleAcceleratorControlBoxUnfinished - components: - - pos: -1.5,-71.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 4556 - type: ParticleAcceleratorEndCapUnfinished - components: - - pos: -0.5,-70.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 4557 - type: ParticleAcceleratorFuelChamberUnfinished - components: - - pos: -0.5,-71.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 4558 - type: CableMV - components: - - pos: 3.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4559 - type: CableMV - components: - - pos: -8.5,-86.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4560 - type: CableMV - components: - - pos: 7.5,-83.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4561 - type: CableHV - components: - - pos: -4.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4562 - type: CableHV - components: - - pos: 0.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4563 - type: CableHV - components: - - pos: 7.5,-88.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4564 - type: CableApcExtension - components: - - pos: 11.5,-73.5 - parent: 8364 - type: Transform -- uid: 4565 - type: Grille - components: - - pos: -0.5,-78.5 - parent: 8364 - type: Transform -- uid: 4566 - type: CableMV - components: - - pos: -8.5,-68.5 - parent: 8364 - type: Transform -- uid: 4567 - type: Grille - components: - - pos: 4.5,-75.5 - parent: 8364 - type: Transform -- uid: 4568 - type: Grille - components: - - pos: 4.5,-102.5 - parent: 8364 - type: Transform -- uid: 4569 - type: Grille - components: - - pos: -5.5,-102.5 - parent: 8364 - type: Transform -- uid: 4570 - type: Grille - components: - - pos: -3.5,-100.5 - parent: 8364 - type: Transform -- uid: 4571 - type: Chair - components: - - pos: 9.5,21.5 - parent: 8364 - type: Transform -- uid: 4572 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: 3.5,-97.5 - parent: 8364 - type: Transform -- uid: 4573 - type: Grille - components: - - pos: -2.5,-100.5 - parent: 8364 - type: Transform -- uid: 4574 - type: Grille - components: - - pos: -6.5,-102.5 - parent: 8364 - type: Transform -- uid: 4575 - type: Grille - components: - - pos: 3.5,-102.5 - parent: 8364 - type: Transform -- uid: 4576 - type: Grille - components: - - pos: 3.5,-75.5 - parent: 8364 - type: Transform -- uid: 4577 - type: WallReinforced - components: - - pos: 7.5,-69.5 - parent: 8364 - type: Transform -- uid: 4578 - type: Grille - components: - - pos: -1.5,-78.5 - parent: 8364 - type: Transform -- uid: 4579 - type: Grille - components: - - pos: 10.5,-71.5 - parent: 8364 - type: Transform -- uid: 4580 - type: CableHV - components: - - pos: 7.5,-87.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4581 - type: CableHV - components: - - pos: -0.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4582 - type: CableHV - components: - - pos: -3.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4583 - type: CableMV - components: - - pos: 7.5,-84.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4584 - type: CableMV - components: - - pos: -8.5,-85.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4585 - type: CableMV - components: - - pos: 4.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4586 - type: CableMV - components: - - pos: 7.5,-92.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4587 - type: WallReinforced - components: - - pos: -11.5,-87.5 - parent: 8364 - type: Transform -- uid: 4588 - type: WallReinforced - components: - - pos: -12.5,-87.5 - parent: 8364 - type: Transform -- uid: 4589 - type: WallReinforced - components: - - pos: -13.5,-87.5 - parent: 8364 - type: Transform -- uid: 4590 - type: WallReinforced - components: - - pos: -14.5,-87.5 - parent: 8364 - type: Transform -- uid: 4591 - type: WallReinforced - components: - - pos: -15.5,-87.5 - parent: 8364 - type: Transform -- uid: 4592 - type: WallReinforced - components: - - pos: -16.5,-87.5 - parent: 8364 - type: Transform -- uid: 4593 - type: CableMV - components: - - pos: 1.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4594 - type: CableMV - components: - - pos: 2.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4595 - type: Grille - components: - - pos: -11.5,-86.5 - parent: 8364 - type: Transform -- uid: 4596 - type: Grille - components: - - pos: -12.5,-86.5 - parent: 8364 - type: Transform -- uid: 4597 - type: Grille - components: - - pos: -13.5,-86.5 - parent: 8364 - type: Transform -- uid: 4598 - type: Grille - components: - - pos: -14.5,-86.5 - parent: 8364 - type: Transform -- uid: 4599 - type: Grille - components: - - pos: -15.5,-86.5 - parent: 8364 - type: Transform -- uid: 4600 - type: Grille - components: - - pos: -16.5,-86.5 - parent: 8364 - type: Transform -- uid: 4601 - type: Grille - components: - - pos: -17.5,-86.5 - parent: 8364 - type: Transform -- uid: 4602 - type: Grille - components: - - pos: -17.5,-87.5 - parent: 8364 - type: Transform -- uid: 4603 - type: Grille - components: - - pos: -17.5,-88.5 - parent: 8364 - type: Transform -- uid: 4604 - type: Grille - components: - - pos: -16.5,-88.5 - parent: 8364 - type: Transform -- uid: 4605 - type: Grille - components: - - pos: -15.5,-88.5 - parent: 8364 - type: Transform -- uid: 4606 - type: Grille - components: - - pos: -14.5,-88.5 - parent: 8364 - type: Transform -- uid: 4607 - type: Grille - components: - - pos: -13.5,-88.5 - parent: 8364 - type: Transform -- uid: 4608 - type: Grille - components: - - pos: -12.5,-88.5 - parent: 8364 - type: Transform -- uid: 4609 - type: Grille - components: - - pos: -11.5,-88.5 - parent: 8364 - type: Transform -- uid: 4610 - type: CableHV - components: - - pos: 3.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4611 - type: CableMV - components: - - pos: -8.5,-88.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4612 - type: CableMV - components: - - pos: 1.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4613 - type: Grille - components: - - pos: -20.5,-89.5 - parent: 8364 - type: Transform -- uid: 4614 - type: Grille - components: - - pos: -21.5,-89.5 - parent: 8364 - type: Transform -- uid: 4615 - type: Grille - components: - - pos: -21.5,-88.5 - parent: 8364 - type: Transform -- uid: 4616 - type: Grille - components: - - pos: -22.5,-88.5 - parent: 8364 - type: Transform -- uid: 4617 - type: Grille - components: - - pos: -22.5,-87.5 - parent: 8364 - type: Transform -- uid: 4618 - type: WallReinforced - components: - - pos: -21.5,-87.5 - parent: 8364 - type: Transform -- uid: 4619 - type: WallReinforced - components: - - pos: -20.5,-87.5 - parent: 8364 - type: Transform -- uid: 4620 - type: WallReinforced - components: - - pos: -20.5,-88.5 - parent: 8364 - type: Transform -- uid: 4621 - type: WallReinforced - components: - - pos: -20.5,-77.5 - parent: 8364 - type: Transform -- uid: 4622 - type: WallReinforced - components: - - pos: -20.5,-78.5 - parent: 8364 - type: Transform -- uid: 4623 - type: WallReinforced - components: - - pos: -20.5,-79.5 - parent: 8364 - type: Transform -- uid: 4624 - type: WallReinforced - components: - - pos: -20.5,-80.5 - parent: 8364 - type: Transform -- uid: 4625 - type: WallReinforced - components: - - pos: -20.5,-81.5 - parent: 8364 - type: Transform -- uid: 4626 - type: WallReinforced - components: - - pos: -20.5,-82.5 - parent: 8364 - type: Transform -- uid: 4627 - type: WallReinforced - components: - - pos: -20.5,-83.5 - parent: 8364 - type: Transform -- uid: 4628 - type: Grille - components: - - pos: -19.5,-76.5 - parent: 8364 - type: Transform -- uid: 4629 - type: Grille - components: - - pos: -19.5,-77.5 - parent: 8364 - type: Transform -- uid: 4630 - type: Grille - components: - - pos: -19.5,-78.5 - parent: 8364 - type: Transform -- uid: 4631 - type: Grille - components: - - pos: -19.5,-79.5 - parent: 8364 - type: Transform -- uid: 4632 - type: Grille - components: - - pos: -19.5,-80.5 - parent: 8364 - type: Transform -- uid: 4633 - type: Grille - components: - - pos: -19.5,-81.5 - parent: 8364 - type: Transform -- uid: 4634 - type: Grille - components: - - pos: -19.5,-82.5 - parent: 8364 - type: Transform -- uid: 4635 - type: Grille - components: - - pos: -19.5,-83.5 - parent: 8364 - type: Transform -- uid: 4636 - type: Grille - components: - - pos: -19.5,-84.5 - parent: 8364 - type: Transform -- uid: 4637 - type: Grille - components: - - pos: -20.5,-84.5 - parent: 8364 - type: Transform -- uid: 4638 - type: Grille - components: - - pos: -21.5,-84.5 - parent: 8364 - type: Transform -- uid: 4639 - type: Grille - components: - - pos: -21.5,-83.5 - parent: 8364 - type: Transform -- uid: 4640 - type: Grille - components: - - pos: -21.5,-82.5 - parent: 8364 - type: Transform -- uid: 4641 - type: Grille - components: - - pos: -21.5,-81.5 - parent: 8364 - type: Transform -- uid: 4642 - type: Grille - components: - - pos: -21.5,-80.5 - parent: 8364 - type: Transform -- uid: 4643 - type: Grille - components: - - pos: -21.5,-79.5 - parent: 8364 - type: Transform -- uid: 4644 - type: Grille - components: - - pos: -21.5,-78.5 - parent: 8364 - type: Transform -- uid: 4645 - type: Grille - components: - - pos: -21.5,-77.5 - parent: 8364 - type: Transform -- uid: 4646 - type: Grille - components: - - pos: -21.5,-76.5 - parent: 8364 - type: Transform -- uid: 4647 - type: Grille - components: - - pos: -20.5,-76.5 - parent: 8364 - type: Transform -- uid: 4648 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 10.5,-76.5 - parent: 8364 - type: Transform -- uid: 4649 - type: ReinforcedPlasmaWindow - components: - - pos: 10.5,-70.5 - parent: 8364 - type: Transform -- uid: 4650 - type: ReinforcedWindow - components: - - pos: -7.5,-75.5 - parent: 8364 - type: Transform -- uid: 4651 - type: ReinforcedWindow - components: - - pos: -6.5,-75.5 - parent: 8364 - type: Transform -- uid: 4652 - type: ReinforcedWindow - components: - - pos: -5.5,-75.5 - parent: 8364 - type: Transform -- uid: 4653 - type: ReinforcedWindow - components: - - pos: -3.5,-75.5 - parent: 8364 - type: Transform -- uid: 4654 - type: CableHV - components: - - pos: 5.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4655 - type: WallReinforced - components: - - pos: 54.5,-60.5 - parent: 8364 - type: Transform -- uid: 4656 - type: WallReinforced - components: - - pos: 51.5,-60.5 - parent: 8364 - type: Transform -- uid: 4657 - type: CableHV - components: - - pos: -4.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4658 - type: WallReinforced - components: - - pos: 50.5,-60.5 - parent: 8364 - type: Transform -- uid: 4659 - type: WallReinforced - components: - - pos: 55.5,-63.5 - parent: 8364 - type: Transform -- uid: 4660 - type: ReinforcedWindow - components: - - pos: 1.5,-75.5 - parent: 8364 - type: Transform -- uid: 4661 - type: ReinforcedWindow - components: - - pos: 2.5,-75.5 - parent: 8364 - type: Transform -- uid: 4662 - type: WallReinforced - components: - - pos: 50.5,-59.5 - parent: 8364 - type: Transform -- uid: 4663 - type: Catwalk - components: - - pos: 49.5,-20.5 - parent: 8364 - type: Transform -- uid: 4664 - type: WallReinforced - components: - - pos: 31.5,-64.5 - parent: 8364 - type: Transform -- uid: 4665 - type: WallReinforced - components: - - pos: 31.5,-63.5 - parent: 8364 - type: Transform -- uid: 4666 - type: Catwalk - components: - - pos: 49.5,-21.5 - parent: 8364 - type: Transform -- uid: 4667 - type: WallSolidRust - components: - - pos: 37.5,-67.5 - parent: 8364 - type: Transform -- uid: 4668 - type: WallSolidRust - components: - - pos: 41.5,-69.5 - parent: 8364 - type: Transform -- uid: 4669 - type: WallSolidRust - components: - - pos: 44.5,-66.5 - parent: 8364 - type: Transform -- uid: 4670 - type: WallSolidRust - components: - - pos: 46.5,-63.5 - parent: 8364 - type: Transform -- uid: 4671 - type: Catwalk - components: - - pos: 49.5,-22.5 - parent: 8364 - type: Transform -- uid: 4672 - type: WallSolidRust - components: - - pos: 33.5,-60.5 - parent: 8364 - type: Transform -- uid: 4673 - type: WallSolidRust - components: - - pos: 35.5,-58.5 - parent: 8364 - type: Transform -- uid: 4674 - type: WallSolidRust - components: - - pos: 40.5,-69.5 - parent: 8364 - type: Transform -- uid: 4675 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-43.5 - parent: 8364 - type: Transform -- uid: 4676 - type: WallReinforced - components: - - pos: -16.5,-34.5 - parent: 8364 - type: Transform -- uid: 4677 - type: CableHV - components: - - pos: 7.5,-91.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4678 - type: WallReinforced - components: - - pos: -9.5,-77.5 - parent: 8364 - type: Transform -- uid: 4679 - type: ReinforcedWindow - components: - - pos: -5.5,-78.5 - parent: 8364 - type: Transform -- uid: 4680 - type: ReinforcedWindow - components: - - pos: -1.5,-78.5 - parent: 8364 - type: Transform -- uid: 4681 - type: ReinforcedWindow - components: - - pos: 2.5,-78.5 - parent: 8364 - type: Transform -- uid: 4682 - type: ReinforcedWindow - components: - - pos: 6.5,-78.5 - parent: 8364 - type: Transform -- uid: 4683 - type: WallReinforced - components: - - pos: -10.5,-77.5 - parent: 8364 - type: Transform -- uid: 4684 - type: WallReinforced - components: - - pos: 12.5,-77.5 - parent: 8364 - type: Transform -- uid: 4685 - type: Grille - components: - - pos: 7.5,-102.5 - parent: 8364 - type: Transform -- uid: 4686 - type: ReinforcedWindow - components: - - pos: -8.5,-78.5 - parent: 8364 - type: Transform -- uid: 4687 - type: ReinforcedWindow - components: - - pos: -4.5,-78.5 - parent: 8364 - type: Transform -- uid: 4688 - type: ReinforcedWindow - components: - - pos: -0.5,-78.5 - parent: 8364 - type: Transform -- uid: 4689 - type: ReinforcedWindow - components: - - pos: 3.5,-78.5 - parent: 8364 - type: Transform -- uid: 4690 - type: ReinforcedWindow - components: - - pos: 7.5,-78.5 - parent: 8364 - type: Transform -- uid: 4691 - type: WallReinforced - components: - - pos: -9.5,-78.5 - parent: 8364 - type: Transform -- uid: 4692 - type: Grille - components: - - pos: 2.5,-78.5 - parent: 8364 - type: Transform -- uid: 4693 - type: Grille - components: - - pos: -3.5,-102.5 - parent: 8364 - type: Transform -- uid: 4694 - type: ReinforcedWindow - components: - - pos: -7.5,-78.5 - parent: 8364 - type: Transform -- uid: 4695 - type: ReinforcedWindow - components: - - pos: -3.5,-78.5 - parent: 8364 - type: Transform -- uid: 4696 - type: ReinforcedWindow - components: - - pos: 0.5,-78.5 - parent: 8364 - type: Transform -- uid: 4697 - type: ReinforcedWindow - components: - - pos: 4.5,-78.5 - parent: 8364 - type: Transform -- uid: 4698 - type: WallReinforced - components: - - pos: -11.5,-77.5 - parent: 8364 - type: Transform -- uid: 4699 - type: WallReinforced - components: - - pos: 8.5,-77.5 - parent: 8364 - type: Transform -- uid: 4700 - type: Grille - components: - - pos: -5.5,-68.5 - parent: 8364 - type: Transform -- uid: 4701 - type: Grille - components: - - pos: -5.5,-100.5 - parent: 8364 - type: Transform -- uid: 4702 - type: ReinforcedWindow - components: - - pos: -6.5,-78.5 - parent: 8364 - type: Transform -- uid: 4703 - type: ReinforcedWindow - components: - - pos: -2.5,-78.5 - parent: 8364 - type: Transform -- uid: 4704 - type: ReinforcedWindow - components: - - pos: 1.5,-78.5 - parent: 8364 - type: Transform -- uid: 4705 - type: ReinforcedWindow - components: - - pos: 5.5,-78.5 - parent: 8364 - type: Transform -- uid: 4706 - type: WallReinforced - components: - - pos: -11.5,-75.5 - parent: 8364 - type: Transform -- uid: 4707 - type: WallReinforced - components: - - pos: 8.5,-78.5 - parent: 8364 - type: Transform -- uid: 4708 - type: WallReinforced - components: - - pos: -11.5,37.5 - parent: 8364 - type: Transform -- uid: 4709 - type: WallReinforced - components: - - pos: -12.5,37.5 - parent: 8364 - type: Transform -- uid: 4710 - type: CableApcExtension - components: - - pos: -11.5,36.5 - parent: 8364 - type: Transform -- uid: 4711 - type: CableApcExtension - components: - - pos: -12.5,36.5 - parent: 8364 - type: Transform -- uid: 4712 - type: WallReinforced - components: - - pos: -14.5,-45.5 - parent: 8364 - type: Transform -- uid: 4713 - type: WallReinforced - components: - - pos: -13.5,-45.5 - parent: 8364 - type: Transform -- uid: 4714 - type: WallSolidRust - components: - - pos: -9.5,-46.5 - parent: 8364 - type: Transform -- uid: 4715 - type: WallReinforced - components: - - pos: -16.5,-38.5 - parent: 8364 - type: Transform -- uid: 4716 - type: WallReinforced - components: - - pos: -16.5,-45.5 - parent: 8364 - type: Transform -- uid: 4717 - type: WallReinforced - components: - - pos: -15.5,-45.5 - parent: 8364 - type: Transform -- uid: 4718 - type: WallReinforced - components: - - pos: -11.5,-41.5 - parent: 8364 - type: Transform -- uid: 4719 - type: WallReinforced - components: - - pos: -11.5,-42.5 - parent: 8364 - type: Transform -- uid: 4720 - type: WallReinforced - components: - - pos: -11.5,-43.5 - parent: 8364 - type: Transform -- uid: 4721 - type: WallSolidRust - components: - - pos: -18.5,-63.5 - parent: 8364 - type: Transform -- uid: 4722 - type: WallSolidRust - components: - - pos: -17.5,-62.5 - parent: 8364 - type: Transform -- uid: 4723 - type: WallReinforced - components: - - pos: -19.5,-62.5 - parent: 8364 - type: Transform -- uid: 4724 - type: WallReinforced - components: - - pos: -19.5,-63.5 - parent: 8364 - type: Transform -- uid: 4725 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-44.5 - parent: 8364 - type: Transform -- uid: 4726 - type: Catwalk - components: - - pos: -16.5,-70.5 - parent: 8364 - type: Transform -- uid: 4727 - type: WallReinforced - components: - - pos: -19.5,-65.5 - parent: 8364 - type: Transform -- uid: 4728 - type: WallReinforced - components: - - pos: -19.5,-64.5 - parent: 8364 - type: Transform -- uid: 4729 - type: WallReinforced - components: - - pos: -19.5,-61.5 - parent: 8364 - type: Transform -- uid: 4730 - type: WallReinforced - components: - - pos: -20.5,-61.5 - parent: 8364 - type: Transform -- uid: 4731 - type: Catwalk - components: - - pos: -16.5,-71.5 - parent: 8364 - type: Transform -- uid: 4732 - type: WallReinforced - components: - - pos: -29.5,-66.5 - parent: 8364 - type: Transform -- uid: 4733 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-59.5 - parent: 8364 - type: Transform -- uid: 4734 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-59.5 - parent: 8364 - type: Transform -- uid: 4735 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-59.5 - parent: 8364 - type: Transform -- uid: 4736 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-59.5 - parent: 8364 - type: Transform -- uid: 4737 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-48.5 - parent: 8364 - type: Transform -- uid: 4738 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-48.5 - parent: 8364 - type: Transform -- uid: 4739 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-48.5 - parent: 8364 - type: Transform -- uid: 4740 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-48.5 - parent: 8364 - type: Transform -- uid: 4741 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-48.5 - parent: 8364 - type: Transform -- uid: 4742 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-57.5 - parent: 8364 - type: Transform -- uid: 4743 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-52.5 - parent: 8364 - type: Transform -- uid: 4744 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-55.5 - parent: 8364 - type: Transform -- uid: 4745 - type: WallReinforced - components: - - pos: -36.5,-52.5 - parent: 8364 - type: Transform -- uid: 4746 - type: AirlockMaintGlassLocked - components: - - pos: -35.5,-56.5 - parent: 8364 - type: Transform -- uid: 4747 - type: WallReinforced - components: - - pos: -37.5,-53.5 - parent: 8364 - type: Transform -- uid: 4748 - type: WallReinforced - components: - - pos: -36.5,-53.5 - parent: 8364 - type: Transform -- uid: 4749 - type: WallReinforced - components: - - pos: -38.5,-53.5 - parent: 8364 - type: Transform -- uid: 4750 - type: Grille - components: - - pos: -50.5,-69.5 - parent: 8364 - type: Transform -- uid: 4751 - type: WallReinforced - components: - - pos: -39.5,-53.5 - parent: 8364 - type: Transform -- uid: 4752 - type: WallReinforced - components: - - pos: -39.5,-54.5 - parent: 8364 - type: Transform -- uid: 4753 - type: WallReinforced - components: - - pos: -39.5,-55.5 - parent: 8364 - type: Transform -- uid: 4754 - type: WallReinforced - components: - - pos: -39.5,-56.5 - parent: 8364 - type: Transform -- uid: 4755 - type: WallReinforced - components: - - pos: -39.5,-57.5 - parent: 8364 - type: Transform -- uid: 4756 - type: WallReinforced - components: - - pos: -39.5,-58.5 - parent: 8364 - type: Transform -- uid: 4757 - type: Grille - components: - - pos: -49.5,-69.5 - parent: 8364 - type: Transform -- uid: 4758 - type: AirlockExternalGlassLocked - components: - - pos: -33.5,-65.5 - parent: 8364 - type: Transform -- uid: 4759 - type: WallReinforced - components: - - pos: -32.5,-66.5 - parent: 8364 - type: Transform -- uid: 4760 - type: WallReinforced - components: - - pos: -33.5,-66.5 - parent: 8364 - type: Transform -- uid: 4761 - type: WallReinforced - components: - - pos: -34.5,-66.5 - parent: 8364 - type: Transform -- uid: 4762 - type: WallReinforced - components: - - pos: -35.5,-66.5 - parent: 8364 - type: Transform -- uid: 4763 - type: WallReinforced - components: - - pos: -35.5,-64.5 - parent: 8364 - type: Transform -- uid: 4764 - type: Grille - components: - - pos: -42.5,-53.5 - parent: 8364 - type: Transform -- uid: 4765 - type: Grille - components: - - pos: -43.5,-53.5 - parent: 8364 - type: Transform -- uid: 4766 - type: Grille - components: - - pos: -44.5,-53.5 - parent: 8364 - type: Transform -- uid: 4767 - type: Grille - components: - - pos: -45.5,-53.5 - parent: 8364 - type: Transform -- uid: 4768 - type: Grille - components: - - pos: -46.5,-53.5 - parent: 8364 - type: Transform -- uid: 4769 - type: Grille - components: - - pos: -48.5,-53.5 - parent: 8364 - type: Transform -- uid: 4770 - type: Grille - components: - - pos: -49.5,-53.5 - parent: 8364 - type: Transform -- uid: 4771 - type: Grille - components: - - pos: -50.5,-53.5 - parent: 8364 - type: Transform -- uid: 4772 - type: Grille - components: - - pos: -51.5,-53.5 - parent: 8364 - type: Transform -- uid: 4773 - type: Grille - components: - - pos: -52.5,-53.5 - parent: 8364 - type: Transform -- uid: 4774 - type: Grille - components: - - pos: -53.5,-53.5 - parent: 8364 - type: Transform -- uid: 4775 - type: Grille - components: - - pos: -54.5,-53.5 - parent: 8364 - type: Transform -- uid: 4776 - type: Grille - components: - - pos: -55.5,-53.5 - parent: 8364 - type: Transform -- uid: 4777 - type: Grille - components: - - pos: -56.5,-53.5 - parent: 8364 - type: Transform -- uid: 4778 - type: Grille - components: - - pos: -56.5,-54.5 - parent: 8364 - type: Transform -- uid: 4779 - type: Grille - components: - - pos: -56.5,-55.5 - parent: 8364 - type: Transform -- uid: 4780 - type: Grille - components: - - pos: -56.5,-56.5 - parent: 8364 - type: Transform -- uid: 4781 - type: Grille - components: - - pos: -56.5,-57.5 - parent: 8364 - type: Transform -- uid: 4782 - type: Grille - components: - - pos: -57.5,-59.5 - parent: 8364 - type: Transform -- uid: 4783 - type: Grille - components: - - pos: -58.5,-59.5 - parent: 8364 - type: Transform -- uid: 4784 - type: Grille - components: - - pos: -59.5,-59.5 - parent: 8364 - type: Transform -- uid: 4785 - type: Grille - components: - - pos: -59.5,-63.5 - parent: 8364 - type: Transform -- uid: 4786 - type: Grille - components: - - pos: -59.5,-62.5 - parent: 8364 - type: Transform -- uid: 4787 - type: Grille - components: - - pos: -59.5,-61.5 - parent: 8364 - type: Transform -- uid: 4788 - type: Grille - components: - - pos: -59.5,-60.5 - parent: 8364 - type: Transform -- uid: 4789 - type: Grille - components: - - pos: -58.5,-63.5 - parent: 8364 - type: Transform -- uid: 4790 - type: Grille - components: - - pos: -57.5,-63.5 - parent: 8364 - type: Transform -- uid: 4791 - type: Grille - components: - - pos: -56.5,-65.5 - parent: 8364 - type: Transform -- uid: 4792 - type: Grille - components: - - pos: -56.5,-66.5 - parent: 8364 - type: Transform -- uid: 4793 - type: Grille - components: - - pos: -56.5,-68.5 - parent: 8364 - type: Transform -- uid: 4794 - type: Grille - components: - - pos: -56.5,-69.5 - parent: 8364 - type: Transform -- uid: 4795 - type: Grille - components: - - pos: -55.5,-69.5 - parent: 8364 - type: Transform -- uid: 4796 - type: Grille - components: - - pos: -54.5,-69.5 - parent: 8364 - type: Transform -- uid: 4797 - type: Grille - components: - - pos: -53.5,-69.5 - parent: 8364 - type: Transform -- uid: 4798 - type: Grille - components: - - pos: -52.5,-69.5 - parent: 8364 - type: Transform -- uid: 4799 - type: Grille - components: - - pos: -48.5,-69.5 - parent: 8364 - type: Transform -- uid: 4800 - type: Grille - components: - - pos: -47.5,-69.5 - parent: 8364 - type: Transform -- uid: 4801 - type: Grille - components: - - pos: -46.5,-69.5 - parent: 8364 - type: Transform -- uid: 4802 - type: Grille - components: - - pos: -45.5,-69.5 - parent: 8364 - type: Transform -- uid: 4803 - type: Grille - components: - - pos: -44.5,-69.5 - parent: 8364 - type: Transform -- uid: 4804 - type: Grille - components: - - pos: -43.5,-69.5 - parent: 8364 - type: Transform -- uid: 4805 - type: Grille - components: - - pos: -42.5,-69.5 - parent: 8364 - type: Transform -- uid: 4806 - type: Grille - components: - - pos: -42.5,-68.5 - parent: 8364 - type: Transform -- uid: 4807 - type: Grille - components: - - pos: -42.5,-67.5 - parent: 8364 - type: Transform -- uid: 4808 - type: Grille - components: - - pos: -42.5,-55.5 - parent: 8364 - type: Transform -- uid: 4809 - type: Grille - components: - - pos: -42.5,-54.5 - parent: 8364 - type: Transform -- uid: 4810 - type: GrilleBroken - components: - - pos: -47.5,-53.5 - parent: 8364 - type: Transform -- uid: 4811 - type: GrilleBroken - components: - - pos: -56.5,-67.5 - parent: 8364 - type: Transform -- uid: 4812 - type: GrilleBroken - components: - - pos: -51.5,-69.5 - parent: 8364 - type: Transform -- uid: 4813 - type: WallReinforced - components: - - pos: -29.5,-63.5 - parent: 8364 - type: Transform -- uid: 4814 - type: WallReinforced - components: - - pos: -30.5,-66.5 - parent: 8364 - type: Transform -- uid: 4815 - type: WallReinforced - components: - - pos: -30.5,-61.5 - parent: 8364 - type: Transform -- uid: 4816 - type: WallReinforced - components: - - pos: -28.5,-66.5 - parent: 8364 - type: Transform -- uid: 4817 - type: WallReinforced - components: - - pos: -30.5,-62.5 - parent: 8364 - type: Transform -- uid: 4818 - type: WallReinforced - components: - - pos: -30.5,-63.5 - parent: 8364 - type: Transform -- uid: 4819 - type: CableHV - components: - - pos: -23.5,-64.5 - parent: 8364 - type: Transform -- uid: 4820 - type: WallReinforced - components: - - pos: -32.5,-71.5 - parent: 8364 - type: Transform -- uid: 4821 - type: WallReinforced - components: - - pos: -33.5,-71.5 - parent: 8364 - type: Transform -- uid: 4822 - type: WallReinforced - components: - - pos: -41.5,-47.5 - parent: 8364 - type: Transform -- uid: 4823 - type: AirlockGlass - components: - - name: Mixing Room - type: MetaData - - pos: -38.5,-49.5 - parent: 8364 - type: Transform -- uid: 4824 - type: BlastDoor - components: - - name: Incinerator Vent - type: MetaData - - pos: -42.5,-48.5 - parent: 8364 - type: Transform -- uid: 4825 - type: BlastDoor - components: - - name: Incinerator Vent - type: MetaData - - pos: -42.5,-50.5 - parent: 8364 - type: Transform -- uid: 4826 - type: AirlockMaintLocked - components: - - name: Incinerator - type: MetaData - - pos: -33.5,-52.5 - parent: 8364 - type: Transform -- uid: 4827 - type: WallReinforced - components: - - pos: -42.5,-47.5 - parent: 8364 - type: Transform -- uid: 4828 - type: WallReinforced - components: - - pos: -33.5,-72.5 - parent: 8364 - type: Transform -- uid: 4829 - type: WallReinforced - components: - - pos: -30.5,-71.5 - parent: 8364 - type: Transform -- uid: 4830 - type: WallReinforced - components: - - pos: -29.5,-71.5 - parent: 8364 - type: Transform -- uid: 4831 - type: WallReinforced - components: - - pos: -29.5,-72.5 - parent: 8364 - type: Transform -- uid: 4832 - type: WallReinforced - components: - - pos: -29.5,-73.5 - parent: 8364 - type: Transform -- uid: 4833 - type: WallReinforced - components: - - pos: -29.5,-75.5 - parent: 8364 - type: Transform -- uid: 4834 - type: WallReinforced - components: - - pos: -28.5,-74.5 - parent: 8364 - type: Transform -- uid: 4835 - type: WallReinforced - components: - - pos: -29.5,-74.5 - parent: 8364 - type: Transform -- uid: 4836 - type: Catwalk - components: - - pos: -16.5,-73.5 - parent: 8364 - type: Transform -- uid: 4837 - type: WallSolid - components: - - pos: 1.5,-60.5 - parent: 8364 - type: Transform -- uid: 4838 - type: SignSmoking - components: - - pos: 14.5,-51.5 - parent: 8364 - type: Transform -- uid: 4839 - type: WallReinforced - components: - - pos: 10.5,-68.5 - parent: 8364 - type: Transform -- uid: 4840 - type: PlaqueAtmos - components: - - pos: 3.5,-46.5 - parent: 8364 - type: Transform -- uid: 4841 - type: WindowReinforcedDirectional - components: - - pos: 1.5,-46.5 - parent: 8364 - type: Transform -- uid: 4842 - type: VendingMachineTankDispenserEngineering - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 12.5,-40.5 - parent: 8364 - type: Transform -- uid: 4843 - type: SignHead - components: - - pos: -8.5,-28.5 - parent: 8364 - type: Transform -- uid: 4844 - type: SignDirectionalSolar - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-59.5 - parent: 8364 - type: Transform -- uid: 4845 - type: SignDirectionalSolar - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-65.5 - parent: 8364 - type: Transform -- uid: 4846 - type: SignDirectionalSolar - components: - - pos: 83.5,-49.5 - parent: 8364 - type: Transform -- uid: 4847 - type: SignDirectionalSolar - components: - - rot: -1.5707963267948966 rad - pos: 54.5,14.5 - parent: 8364 - type: Transform -- uid: 4848 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: 55.5,4.5 - parent: 8364 - type: Transform -- uid: 4849 - type: SignDirectionalSolar - components: - - rot: 1.5707963267948966 rad - pos: 45.5,12.5 - parent: 8364 - type: Transform -- uid: 4850 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: -49.5,12.5 - parent: 8364 - type: Transform -- uid: 4851 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: -47.5,6.5 - parent: 8364 - type: Transform -- uid: 4852 - type: WallReinforced - components: - - pos: -20.5,-44.5 - parent: 8364 - type: Transform -- uid: 4853 - type: WallReinforced - components: - - pos: -25.5,-39.5 - parent: 8364 - type: Transform -- uid: 4854 - type: WallReinforced - components: - - pos: -29.5,-39.5 - parent: 8364 - type: Transform -- uid: 4855 - type: WallReinforced - components: - - pos: -30.5,-39.5 - parent: 8364 - type: Transform -- uid: 4856 - type: WallReinforced - components: - - pos: -29.5,-42.5 - parent: 8364 - type: Transform -- uid: 4857 - type: WallReinforced - components: - - pos: -25.5,-42.5 - parent: 8364 - type: Transform -- uid: 4858 - type: WallReinforced - components: - - pos: -30.5,-42.5 - parent: 8364 - type: Transform -- uid: 4859 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-46.5 - parent: 8364 - type: Transform -- uid: 4860 - type: WallReinforced - components: - - pos: -18.5,-43.5 - parent: 8364 - type: Transform -- uid: 4861 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-46.5 - parent: 8364 - type: Transform -- uid: 4862 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-46.5 - parent: 8364 - type: Transform -- uid: 4863 - type: WallReinforced - components: - - pos: -31.5,-42.5 - parent: 8364 - type: Transform -- uid: 4864 - type: WallReinforced - components: - - pos: -32.5,-42.5 - parent: 8364 - type: Transform -- uid: 4865 - type: WallReinforced - components: - - pos: -33.5,-42.5 - parent: 8364 - type: Transform -- uid: 4866 - type: WallReinforced - components: - - pos: -34.5,-42.5 - parent: 8364 - type: Transform -- uid: 4867 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-47.5 - parent: 8364 - type: Transform -- uid: 4868 - type: WallReinforced - components: - - pos: -39.5,-44.5 - parent: 8364 - type: Transform -- uid: 4869 - type: WallReinforced - components: - - pos: -39.5,-43.5 - parent: 8364 - type: Transform -- uid: 4870 - type: WallReinforced - components: - - pos: -39.5,-46.5 - parent: 8364 - type: Transform -- uid: 4871 - type: WallReinforced - components: - - pos: -38.5,-42.5 - parent: 8364 - type: Transform -- uid: 4872 - type: Table - components: - - pos: -20.5,-40.5 - parent: 8364 - type: Transform -- uid: 4873 - type: WallReinforced - components: - - pos: -24.5,-39.5 - parent: 8364 - type: Transform -- uid: 4874 - type: WallReinforced - components: - - pos: -19.5,-46.5 - parent: 8364 - type: Transform -- uid: 4875 - type: WallReinforced - components: - - pos: -20.5,-43.5 - parent: 8364 - type: Transform -- uid: 4876 - type: WallReinforced - components: - - pos: -39.5,-42.5 - parent: 8364 - type: Transform -- uid: 4877 - type: CarpetBlue - components: - - pos: 8.5,-22.5 - parent: 8364 - type: Transform -- uid: 4878 - type: SignalButton - components: - - pos: 4.5,-46.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 16553 - - port: Toggle - uid: 16554 - - port: Toggle - uid: 16555 - - port: Toggle - uid: 16738 - - port: Toggle - uid: 16739 - - port: Toggle - uid: 16740 - type: SignalTransmitter -- uid: 4879 - type: WallSolid - components: - - pos: 6.5,-51.5 - parent: 8364 - type: Transform -- uid: 4880 - type: GrilleBroken - components: - - pos: -41.5,35.5 - parent: 8364 - type: Transform -- uid: 4881 - type: GrilleBroken - components: - - pos: -57.5,28.5 - parent: 8364 - type: Transform -- uid: 4882 - type: GrilleBroken - components: - - pos: -47.5,42.5 - parent: 8364 - type: Transform -- uid: 4883 - type: Grille - components: - - pos: -47.5,43.5 - parent: 8364 - type: Transform -- uid: 4884 - type: Grille - components: - - pos: -48.5,43.5 - parent: 8364 - type: Transform -- uid: 4885 - type: Grille - components: - - pos: -49.5,43.5 - parent: 8364 - type: Transform -- uid: 4886 - type: Grille - components: - - pos: -50.5,43.5 - parent: 8364 - type: Transform -- uid: 4887 - type: Grille - components: - - pos: -51.5,43.5 - parent: 8364 - type: Transform -- uid: 4888 - type: Grille - components: - - pos: -51.5,42.5 - parent: 8364 - type: Transform -- uid: 4889 - type: Grille - components: - - pos: -51.5,41.5 - parent: 8364 - type: Transform -- uid: 4890 - type: Grille - components: - - pos: -47.5,41.5 - parent: 8364 - type: Transform -- uid: 4891 - type: Grille - components: - - pos: -45.5,40.5 - parent: 8364 - type: Transform -- uid: 4892 - type: Grille - components: - - pos: -44.5,40.5 - parent: 8364 - type: Transform -- uid: 4893 - type: Grille - components: - - pos: -43.5,40.5 - parent: 8364 - type: Transform -- uid: 4894 - type: Grille - components: - - pos: -42.5,40.5 - parent: 8364 - type: Transform -- uid: 4895 - type: Grille - components: - - pos: -41.5,40.5 - parent: 8364 - type: Transform -- uid: 4896 - type: Grille - components: - - pos: -41.5,39.5 - parent: 8364 - type: Transform -- uid: 4897 - type: Grille - components: - - pos: -41.5,38.5 - parent: 8364 - type: Transform -- uid: 4898 - type: Grille - components: - - pos: -41.5,37.5 - parent: 8364 - type: Transform -- uid: 4899 - type: Grille - components: - - pos: -41.5,36.5 - parent: 8364 - type: Transform -- uid: 4900 - type: Grille - components: - - pos: -41.5,34.5 - parent: 8364 - type: Transform -- uid: 4901 - type: Grille - components: - - pos: -41.5,33.5 - parent: 8364 - type: Transform -- uid: 4902 - type: Grille - components: - - pos: -41.5,32.5 - parent: 8364 - type: Transform -- uid: 4903 - type: Grille - components: - - pos: -41.5,31.5 - parent: 8364 - type: Transform -- uid: 4904 - type: Grille - components: - - pos: -41.5,30.5 - parent: 8364 - type: Transform -- uid: 4905 - type: Grille - components: - - pos: -41.5,29.5 - parent: 8364 - type: Transform -- uid: 4906 - type: Grille - components: - - pos: -41.5,28.5 - parent: 8364 - type: Transform -- uid: 4907 - type: Grille - components: - - pos: -41.5,27.5 - parent: 8364 - type: Transform -- uid: 4908 - type: Grille - components: - - pos: -41.5,26.5 - parent: 8364 - type: Transform -- uid: 4909 - type: Grille - components: - - pos: -42.5,26.5 - parent: 8364 - type: Transform -- uid: 4910 - type: Grille - components: - - pos: -43.5,26.5 - parent: 8364 - type: Transform -- uid: 4911 - type: Grille - components: - - pos: -55.5,26.5 - parent: 8364 - type: Transform -- uid: 4912 - type: Grille - components: - - pos: -56.5,26.5 - parent: 8364 - type: Transform -- uid: 4913 - type: Grille - components: - - pos: -57.5,26.5 - parent: 8364 - type: Transform -- uid: 4914 - type: Grille - components: - - pos: -57.5,27.5 - parent: 8364 - type: Transform -- uid: 4915 - type: Grille - components: - - pos: -57.5,29.5 - parent: 8364 - type: Transform -- uid: 4916 - type: Grille - components: - - pos: -57.5,30.5 - parent: 8364 - type: Transform -- uid: 4917 - type: Grille - components: - - pos: -57.5,31.5 - parent: 8364 - type: Transform -- uid: 4918 - type: Grille - components: - - pos: -57.5,32.5 - parent: 8364 - type: Transform -- uid: 4919 - type: Grille - components: - - pos: -57.5,33.5 - parent: 8364 - type: Transform -- uid: 4920 - type: Grille - components: - - pos: -57.5,34.5 - parent: 8364 - type: Transform -- uid: 4921 - type: Grille - components: - - pos: -57.5,35.5 - parent: 8364 - type: Transform -- uid: 4922 - type: Grille - components: - - pos: -57.5,36.5 - parent: 8364 - type: Transform -- uid: 4923 - type: Grille - components: - - pos: -57.5,37.5 - parent: 8364 - type: Transform -- uid: 4924 - type: Grille - components: - - pos: -57.5,38.5 - parent: 8364 - type: Transform -- uid: 4925 - type: Grille - components: - - pos: -57.5,39.5 - parent: 8364 - type: Transform -- uid: 4926 - type: Grille - components: - - pos: -57.5,40.5 - parent: 8364 - type: Transform -- uid: 4927 - type: Grille - components: - - pos: -56.5,40.5 - parent: 8364 - type: Transform -- uid: 4928 - type: Grille - components: - - pos: -55.5,40.5 - parent: 8364 - type: Transform -- uid: 4929 - type: Grille - components: - - pos: -54.5,40.5 - parent: 8364 - type: Transform -- uid: 4930 - type: Grille - components: - - pos: -53.5,40.5 - parent: 8364 - type: Transform -- uid: 4931 - type: WallSolid - components: - - pos: -17.5,14.5 - parent: 8364 - type: Transform -- uid: 4932 - type: WallSolid - components: - - pos: -17.5,13.5 - parent: 8364 - type: Transform -- uid: 4933 - type: WallSolid - components: - - pos: -17.5,12.5 - parent: 8364 - type: Transform -- uid: 4934 - type: AirlockAtmosphericsLocked - components: - - pos: 10.5,-51.5 - parent: 8364 - type: Transform -- uid: 4935 - type: WallReinforced - components: - - pos: 33.5,-83.5 - parent: 8364 - type: Transform -- uid: 4936 - type: WallReinforced - components: - - pos: 32.5,-83.5 - parent: 8364 - type: Transform -- uid: 4937 - type: WallReinforced - components: - - pos: 31.5,-83.5 - parent: 8364 - type: Transform -- uid: 4938 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-86.5 - parent: 8364 - type: Transform -- uid: 4939 - type: WallReinforced - components: - - pos: 30.5,-82.5 - parent: 8364 - type: Transform -- uid: 4940 - type: WallReinforced - components: - - pos: 29.5,-82.5 - parent: 8364 - type: Transform -- uid: 4941 - type: WallReinforced - components: - - pos: 27.5,-82.5 - parent: 8364 - type: Transform -- uid: 4942 - type: WallReinforced - components: - - pos: 26.5,-82.5 - parent: 8364 - type: Transform -- uid: 4943 - type: WallReinforced - components: - - pos: 34.5,-86.5 - parent: 8364 - type: Transform -- uid: 4944 - type: WallReinforced - components: - - pos: 34.5,-83.5 - parent: 8364 - type: Transform -- uid: 4945 - type: Grille - components: - - pos: 4.5,42.5 - parent: 8364 - type: Transform -- uid: 4946 - type: Grille - components: - - pos: 3.5,42.5 - parent: 8364 - type: Transform -- uid: 4947 - type: Grille - components: - - pos: 2.5,42.5 - parent: 8364 - type: Transform -- uid: 4948 - type: Grille - components: - - pos: 1.5,42.5 - parent: 8364 - type: Transform -- uid: 4949 - type: Grille - components: - - pos: 0.5,42.5 - parent: 8364 - type: Transform -- uid: 4950 - type: Grille - components: - - pos: -0.5,42.5 - parent: 8364 - type: Transform -- uid: 4951 - type: Grille - components: - - pos: -1.5,42.5 - parent: 8364 - type: Transform -- uid: 4952 - type: Grille - components: - - pos: -2.5,42.5 - parent: 8364 - type: Transform -- uid: 4953 - type: WallReinforced - components: - - pos: 34.5,-86.5 - parent: 8364 - type: Transform -- uid: 4954 - type: WallReinforced - components: - - pos: 21.5,39.5 - parent: 8364 - type: Transform -- uid: 4955 - type: IntercomAll - components: - - rot: 3.141592653589793 rad - pos: 1.5,-15.5 - parent: 8364 - type: Transform -- uid: 4956 - type: WallReinforced - components: - - pos: 26.5,34.5 - parent: 8364 - type: Transform -- uid: 4957 - type: Grille - components: - - pos: 21.5,42.5 - parent: 8364 - type: Transform -- uid: 4958 - type: Grille - components: - - pos: 20.5,34.5 - parent: 8364 - type: Transform -- uid: 4959 - type: WallReinforced - components: - - pos: 34.5,-85.5 - parent: 8364 - type: Transform -- uid: 4960 - type: WallReinforced - components: - - pos: 25.5,-86.5 - parent: 8364 - type: Transform -- uid: 4961 - type: WallReinforced - components: - - pos: 25.5,-85.5 - parent: 8364 - type: Transform -- uid: 4962 - type: WallReinforced - components: - - pos: 25.5,-84.5 - parent: 8364 - type: Transform -- uid: 4963 - type: WallReinforced - components: - - pos: 25.5,-83.5 - parent: 8364 - type: Transform -- uid: 4964 - type: WallReinforced - components: - - pos: 25.5,-82.5 - parent: 8364 - type: Transform -- uid: 4965 - type: WallReinforced - components: - - pos: 24.5,-82.5 - parent: 8364 - type: Transform -- uid: 4966 - type: AirlockMaintLocked - components: - - pos: 24.5,-94.5 - parent: 8364 - type: Transform -- uid: 4967 - type: AirlockMaintLocked - components: - - pos: 32.5,-94.5 - parent: 8364 - type: Transform -- uid: 4968 - type: SignDirectionalWash - components: - - rot: 3.141592653589793 rad - pos: 17.490667,-11.707433 - parent: 8364 - type: Transform -- uid: 4969 - type: SignSomethingOld2 - components: - - pos: -8.5,-32.5 - parent: 8364 - type: Transform -- uid: 4970 - type: SignSomethingOld - components: - - pos: -6.5,-40.5 - parent: 8364 - type: Transform -- uid: 4971 - type: SignMorgue - components: - - pos: 45.5,-15.5 - parent: 8364 - type: Transform -- uid: 4972 - type: SignMorgue - components: - - pos: 42.5,-21.5 - parent: 8364 - type: Transform -- uid: 4973 - type: SignLaserMed - components: - - pos: 8.5,-77.5 - parent: 8364 - type: Transform -- uid: 4974 - type: SignLaserMed - components: - - pos: -9.5,-77.5 - parent: 8364 - type: Transform -- uid: 4975 - type: SignMagneticsMed - components: - - pos: -29.5,-33.5 - parent: 8364 - type: Transform -- uid: 4976 - type: WallReinforced - components: - - pos: 38.5,-71.5 - parent: 8364 - type: Transform -- uid: 4977 - type: WallReinforced - components: - - pos: 33.5,-70.5 - parent: 8364 - type: Transform -- uid: 4978 - type: WallReinforced - components: - - pos: 33.5,-69.5 - parent: 8364 - type: Transform -- uid: 4979 - type: WallReinforced - components: - - pos: 33.5,-68.5 - parent: 8364 - type: Transform -- uid: 4980 - type: WallReinforced - components: - - pos: 31.5,-68.5 - parent: 8364 - type: Transform -- uid: 4981 - type: WallReinforced - components: - - pos: 31.5,-66.5 - parent: 8364 - type: Transform -- uid: 4982 - type: WallReinforced - components: - - pos: 31.5,-67.5 - parent: 8364 - type: Transform -- uid: 4983 - type: WallReinforced - components: - - pos: 39.5,-71.5 - parent: 8364 - type: Transform -- uid: 4984 - type: WallReinforced - components: - - pos: 34.5,-70.5 - parent: 8364 - type: Transform -- uid: 4985 - type: WallReinforced - components: - - pos: 35.5,-70.5 - parent: 8364 - type: Transform -- uid: 4986 - type: WallReinforced - components: - - pos: 36.5,-70.5 - parent: 8364 - type: Transform -- uid: 4987 - type: SignLibrary - components: - - pos: 54.5,-10.5 - parent: 8364 - type: Transform -- uid: 4988 - type: CableHV - components: - - pos: 47.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4989 - type: SignChapel - components: - - pos: 74.5,-6.5 - parent: 8364 - type: Transform -- uid: 4990 - type: SignArmory - components: - - pos: 4.5,34.5 - parent: 8364 - type: Transform -- uid: 4991 - type: SignEVA - components: - - pos: -13.5,0.5 - parent: 8364 - type: Transform -- uid: 4992 - type: SignDirectionalSupply - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-32.5 - parent: 8364 - type: Transform -- uid: 4993 - type: SignDirectionalSupply - components: - - rot: -1.5707963267948966 rad - pos: -12.494359,-28.72186 - parent: 8364 - type: Transform -- uid: 4994 - type: SignDirectionalSupply - components: - - pos: -18.494526,-3.909933 - parent: 8364 - type: Transform -- uid: 4995 - type: SignDirectionalGravity - components: - - rot: 1.5707963267948966 rad - pos: -12.48893,-28.299696 - parent: 8364 - type: Transform -- uid: 4996 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-28.5 - parent: 8364 - type: Transform -- uid: 4997 - type: SignDirectionalHydro - components: - - rot: 1.5707963267948966 rad - pos: -18.499992,-3.7091393 - parent: 8364 - type: Transform -- uid: 4998 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: -18.499992,-3.2872643 - parent: 8364 - type: Transform -- uid: 4999 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-3.5 - parent: 8364 - type: Transform -- uid: 5000 - type: Grille - components: - - pos: 67.5,-65.5 - parent: 8364 - type: Transform -- uid: 5001 - type: ClothingHandsGlovesColorOrange - components: - - pos: -49.450035,-4.90816 - parent: 8364 - type: Transform -- uid: 5002 - type: ClothingHandsGlovesColorOrange - components: - - pos: -49.606285,-4.798785 - parent: 8364 - type: Transform -- uid: 5003 - type: ClothingOuterCoatPirate - components: - - pos: 57.9064,7.9061937 - parent: 8364 - type: Transform -- uid: 5004 - type: ClothingHeadHatPirate - components: - - pos: 57.890774,8.249944 - parent: 8364 - type: Transform -- uid: 5005 - type: ClothingHeadHatPirate - components: - - pos: 58.4689,8.515569 - parent: 8364 - type: Transform -- uid: 5006 - type: ClothingHeadHatPirate - components: - - pos: 58.25015,8.749944 - parent: 8364 - type: Transform -- uid: 5007 - type: ClothingOuterCoatPirate - components: - - pos: 58.514145,8.160378 - parent: 8364 - type: Transform -- uid: 5008 - type: ClothingOuterCoatPirate - components: - - pos: 58.27977,8.379128 - parent: 8364 - type: Transform -- uid: 5009 - type: ClothingShoesBootsPerformer - components: - - pos: 25.47079,17.459995 - parent: 8364 - type: Transform -- uid: 5010 - type: ClothingUniformJumpskirtPerformer - components: - - pos: 25.486416,17.491245 - parent: 8364 - type: Transform -- uid: 5011 - type: CableHV - components: - - pos: 46.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5012 - type: CableHV - components: - - pos: 46.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5013 - type: ClothingHeadHatWeldingMaskPainted - components: - - pos: -56.61541,13.4948435 - parent: 8364 - type: Transform -- uid: 5014 - type: ClothingShoesBootsCombat - components: - - pos: -18.519972,12.388156 - parent: 8364 - type: Transform -- uid: 5015 - type: MedkitCombatFilled - components: - - pos: -21.561487,12.310031 - parent: 8364 - type: Transform -- uid: 5016 - type: Barricade - components: - - pos: -20.5,12.5 - parent: 8364 - type: Transform -- uid: 5017 - type: GrilleBroken - components: - - pos: 49.5,42.5 - parent: 8364 - type: Transform -- uid: 5018 - type: GrilleBroken - components: - - pos: 39.5,39.5 - parent: 8364 - type: Transform -- uid: 5019 - type: GrilleBroken - components: - - pos: 55.5,28.5 - parent: 8364 - type: Transform -- uid: 5020 - type: Grille - components: - - pos: 55.5,27.5 - parent: 8364 - type: Transform -- uid: 5021 - type: Grille - components: - - pos: 55.5,26.5 - parent: 8364 - type: Transform -- uid: 5022 - type: Grille - components: - - pos: 54.5,26.5 - parent: 8364 - type: Transform -- uid: 5023 - type: Grille - components: - - pos: 53.5,26.5 - parent: 8364 - type: Transform -- uid: 5024 - type: Grille - components: - - pos: 55.5,29.5 - parent: 8364 - type: Transform -- uid: 5025 - type: Grille - components: - - pos: 55.5,30.5 - parent: 8364 - type: Transform -- uid: 5026 - type: Grille - components: - - pos: 55.5,31.5 - parent: 8364 - type: Transform -- uid: 5027 - type: Grille - components: - - pos: 55.5,32.5 - parent: 8364 - type: Transform -- uid: 5028 - type: Grille - components: - - pos: 55.5,33.5 - parent: 8364 - type: Transform -- uid: 5029 - type: Grille - components: - - pos: 55.5,34.5 - parent: 8364 - type: Transform -- uid: 5030 - type: Grille - components: - - pos: 55.5,35.5 - parent: 8364 - type: Transform -- uid: 5031 - type: Grille - components: - - pos: 55.5,36.5 - parent: 8364 - type: Transform -- uid: 5032 - type: Grille - components: - - pos: 55.5,37.5 - parent: 8364 - type: Transform -- uid: 5033 - type: Grille - components: - - pos: 55.5,38.5 - parent: 8364 - type: Transform -- uid: 5034 - type: Grille - components: - - pos: 55.5,39.5 - parent: 8364 - type: Transform -- uid: 5035 - type: Grille - components: - - pos: 55.5,40.5 - parent: 8364 - type: Transform -- uid: 5036 - type: Grille - components: - - pos: 54.5,40.5 - parent: 8364 - type: Transform -- uid: 5037 - type: Grille - components: - - pos: 53.5,40.5 - parent: 8364 - type: Transform -- uid: 5038 - type: Grille - components: - - pos: 52.5,40.5 - parent: 8364 - type: Transform -- uid: 5039 - type: Grille - components: - - pos: 51.5,40.5 - parent: 8364 - type: Transform -- uid: 5040 - type: Grille - components: - - pos: 49.5,41.5 - parent: 8364 - type: Transform -- uid: 5041 - type: Grille - components: - - pos: 49.5,43.5 - parent: 8364 - type: Transform -- uid: 5042 - type: Grille - components: - - pos: 48.5,43.5 - parent: 8364 - type: Transform -- uid: 5043 - type: Grille - components: - - pos: 47.5,43.5 - parent: 8364 - type: Transform -- uid: 5044 - type: Grille - components: - - pos: 46.5,43.5 - parent: 8364 - type: Transform -- uid: 5045 - type: Grille - components: - - pos: 45.5,43.5 - parent: 8364 - type: Transform -- uid: 5046 - type: Grille - components: - - pos: 45.5,42.5 - parent: 8364 - type: Transform -- uid: 5047 - type: Grille - components: - - pos: 45.5,41.5 - parent: 8364 - type: Transform -- uid: 5048 - type: Grille - components: - - pos: 43.5,40.5 - parent: 8364 - type: Transform -- uid: 5049 - type: Grille - components: - - pos: 42.5,40.5 - parent: 8364 - type: Transform -- uid: 5050 - type: Grille - components: - - pos: 41.5,40.5 - parent: 8364 - type: Transform -- uid: 5051 - type: Grille - components: - - pos: 40.5,40.5 - parent: 8364 - type: Transform -- uid: 5052 - type: Grille - components: - - pos: 39.5,40.5 - parent: 8364 - type: Transform -- uid: 5053 - type: Grille - components: - - pos: 39.5,38.5 - parent: 8364 - type: Transform -- uid: 5054 - type: Grille - components: - - pos: 39.5,37.5 - parent: 8364 - type: Transform -- uid: 5055 - type: Grille - components: - - pos: 39.5,36.5 - parent: 8364 - type: Transform -- uid: 5056 - type: Grille - components: - - pos: 39.5,35.5 - parent: 8364 - type: Transform -- uid: 5057 - type: Grille - components: - - pos: 39.5,34.5 - parent: 8364 - type: Transform -- uid: 5058 - type: Grille - components: - - pos: 39.5,33.5 - parent: 8364 - type: Transform -- uid: 5059 - type: Grille - components: - - pos: 39.5,32.5 - parent: 8364 - type: Transform -- uid: 5060 - type: Grille - components: - - pos: 39.5,31.5 - parent: 8364 - type: Transform -- uid: 5061 - type: Grille - components: - - pos: 39.5,30.5 - parent: 8364 - type: Transform -- uid: 5062 - type: Grille - components: - - pos: 39.5,29.5 - parent: 8364 - type: Transform -- uid: 5063 - type: Grille - components: - - pos: 39.5,28.5 - parent: 8364 - type: Transform -- uid: 5064 - type: Grille - components: - - pos: 39.5,27.5 - parent: 8364 - type: Transform -- uid: 5065 - type: Grille - components: - - pos: 39.5,26.5 - parent: 8364 - type: Transform -- uid: 5066 - type: Grille - components: - - pos: 40.5,26.5 - parent: 8364 - type: Transform -- uid: 5067 - type: Grille - components: - - pos: 41.5,26.5 - parent: 8364 - type: Transform -- uid: 5068 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5069 - type: CableApcExtension - components: - - pos: -8.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5070 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5071 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5072 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5073 - type: CableApcExtension - components: - - pos: -5.5,36.5 - parent: 8364 - type: Transform -- uid: 5074 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,50.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5075 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,50.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5076 - type: CableApcExtension - components: - - pos: -7.5,36.5 - parent: 8364 - type: Transform -- uid: 5077 - type: Grille - components: - - pos: -5.5,40.5 - parent: 8364 - type: Transform -- uid: 5078 - type: ReinforcedWindow - components: - - pos: -16.5,34.5 - parent: 8364 - type: Transform -- uid: 5079 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5080 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5081 - type: CableApcExtension - components: - - pos: -7.5,53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5082 - type: CableApcExtension - components: - - pos: -7.5,48.5 - parent: 8364 - type: Transform -- uid: 5083 - type: CableApcExtension - components: - - pos: -7.5,51.5 - parent: 8364 - type: Transform -- uid: 5084 - type: CableApcExtension - components: - - pos: -14.5,35.5 - parent: 8364 - type: Transform -- uid: 5085 - type: CableApcExtension - components: - - pos: -5.5,42.5 - parent: 8364 - type: Transform -- uid: 5086 - type: CableApcExtension - components: - - pos: -6.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5087 - type: CableApcExtension - components: - - pos: -9.5,36.5 - parent: 8364 - type: Transform -- uid: 5088 - type: MagazineRifle - components: - - pos: -1.5298859,39.4457 - parent: 8364 - type: Transform -- uid: 5089 - type: CableApcExtension - components: - - pos: -7.5,47.5 - parent: 8364 - type: Transform -- uid: 5090 - type: CableApcExtension - components: - - pos: -5.5,38.5 - parent: 8364 - type: Transform -- uid: 5091 - type: CableApcExtension - components: - - pos: -7.5,52.5 - parent: 8364 - type: Transform -- uid: 5092 - type: CableApcExtension - components: - - pos: -8.5,36.5 - parent: 8364 - type: Transform -- uid: 5093 - type: CableApcExtension - components: - - pos: -6.5,35.5 - parent: 8364 - type: Transform -- uid: 5094 - type: MagazineRifleRubber - components: - - pos: -1.2955109,39.648827 - parent: 8364 - type: Transform -- uid: 5095 - type: MagazineRifleRubber - components: - - pos: -1.2955109,39.41445 - parent: 8364 - type: Transform -- uid: 5096 - type: CableApcExtension - components: - - pos: -10.5,36.5 - parent: 8364 - type: Transform -- uid: 5097 - type: CableApcExtension - components: - - pos: -6.5,36.5 - parent: 8364 - type: Transform -- uid: 5098 - type: CableApcExtension - components: - - pos: -5.5,41.5 - parent: 8364 - type: Transform -- uid: 5099 - type: CableApcExtension - components: - - pos: -4.5,44.5 - parent: 8364 - type: Transform -- uid: 5100 - type: CableApcExtension - components: - - pos: -5.5,43.5 - parent: 8364 - type: Transform -- uid: 5101 - type: CableApcExtension - components: - - pos: -14.5,34.5 - parent: 8364 - type: Transform -- uid: 5102 - type: CableApcExtension - components: - - pos: -14.5,33.5 - parent: 8364 - type: Transform -- uid: 5103 - type: CableApcExtension - components: - - pos: -13.5,36.5 - parent: 8364 - type: Transform -- uid: 5104 - type: CableApcExtension - components: - - pos: -14.5,36.5 - parent: 8364 - type: Transform -- uid: 5105 - type: CableApcExtension - components: - - pos: -7.5,50.5 - parent: 8364 - type: Transform -- uid: 5106 - type: CableApcExtension - components: - - pos: -5.5,37.5 - parent: 8364 - type: Transform -- uid: 5107 - type: CableApcExtension - components: - - pos: -7.5,49.5 - parent: 8364 - type: Transform -- uid: 5108 - type: CableApcExtension - components: - - pos: -8.5,48.5 - parent: 8364 - type: Transform -- uid: 5109 - type: CableApcExtension - components: - - pos: -9.5,48.5 - parent: 8364 - type: Transform -- uid: 5110 - type: MagazineRifle - components: - - pos: -1.7173859,39.4457 - parent: 8364 - type: Transform -- uid: 5111 - type: CableApcExtension - components: - - pos: -7.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5112 - type: CableApcExtension - components: - - pos: -6.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5113 - type: CableApcExtension - components: - - pos: -5.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5114 - type: ClothingOuterVestWebMerc - components: - - pos: -18.590942,12.700656 - parent: 8364 - type: Transform -- uid: 5115 - type: ClothingShoesLeather - components: - - pos: 11.53971,-11.845611 - parent: 8364 - type: Transform -- uid: 5116 - type: ClothingOuterCoatInspector - components: - - pos: 84.488655,-42.55825 - parent: 8364 - type: Transform -- uid: 5117 - type: ClothingNeckHeadphones - components: - - pos: 75.59623,12.540107 - parent: 8364 - type: Transform -- uid: 5118 - type: ClothingHeadHatWeldingMaskFlame - components: - - pos: 32.426586,-67.42694 - parent: 8364 - type: Transform -- uid: 5119 - type: ClothingUnderSocksCoder - components: - - pos: -38.47627,-56.748375 - parent: 8364 - type: Transform -- uid: 5120 - type: ClothingUnderSocksCoder - components: - - pos: 1.4697213,-22.60485 - parent: 8364 - type: Transform -- uid: 5121 - type: ClothingHeadHatCone - components: - - pos: -13.504178,6.3556924 - parent: 8364 - type: Transform -- uid: 5122 - type: ClothingNeckBling - components: - - pos: -33.543434,3.8171167 - parent: 8364 - type: Transform -- uid: 5123 - type: MaintenanceFluffSpawner - components: - - pos: 60.5,19.5 - parent: 8364 - type: Transform -- uid: 5124 - type: Grille - components: - - pos: 82.5,-67.5 - parent: 8364 - type: Transform -- uid: 5125 - type: Grille - components: - - pos: 82.5,-68.5 - parent: 8364 - type: Transform -- uid: 5126 - type: GrilleBroken - components: - - pos: 87.5,-71.5 - parent: 8364 - type: Transform -- uid: 5127 - type: GrilleBroken - components: - - pos: 76.5,-71.5 - parent: 8364 - type: Transform -- uid: 5128 - type: GrilleBroken - components: - - pos: 73.5,-80.5 - parent: 8364 - type: Transform -- uid: 5129 - type: GrilleBroken - components: - - pos: 88.5,-85.5 - parent: 8364 - type: Transform -- uid: 5130 - type: Grille - components: - - pos: 89.5,-85.5 - parent: 8364 - type: Transform -- uid: 5131 - type: Grille - components: - - pos: 89.5,-84.5 - parent: 8364 - type: Transform -- uid: 5132 - type: Grille - components: - - pos: 89.5,-83.5 - parent: 8364 - type: Transform -- uid: 5133 - type: Grille - components: - - pos: 89.5,-82.5 - parent: 8364 - type: Transform -- uid: 5134 - type: Grille - components: - - pos: 89.5,-81.5 - parent: 8364 - type: Transform -- uid: 5135 - type: Grille - components: - - pos: 89.5,-80.5 - parent: 8364 - type: Transform -- uid: 5136 - type: Grille - components: - - pos: 89.5,-79.5 - parent: 8364 - type: Transform -- uid: 5137 - type: Grille - components: - - pos: 89.5,-78.5 - parent: 8364 - type: Transform -- uid: 5138 - type: Grille - components: - - pos: 89.5,-77.5 - parent: 8364 - type: Transform -- uid: 5139 - type: Grille - components: - - pos: 89.5,-76.5 - parent: 8364 - type: Transform -- uid: 5140 - type: Grille - components: - - pos: 89.5,-75.5 - parent: 8364 - type: Transform -- uid: 5141 - type: Grille - components: - - pos: 89.5,-74.5 - parent: 8364 - type: Transform -- uid: 5142 - type: Grille - components: - - pos: 89.5,-73.5 - parent: 8364 - type: Transform -- uid: 5143 - type: Grille - components: - - pos: 89.5,-72.5 - parent: 8364 - type: Transform -- uid: 5144 - type: Grille - components: - - pos: 89.5,-71.5 - parent: 8364 - type: Transform -- uid: 5145 - type: Grille - components: - - pos: 88.5,-71.5 - parent: 8364 - type: Transform -- uid: 5146 - type: Grille - components: - - pos: 75.5,-71.5 - parent: 8364 - type: Transform -- uid: 5147 - type: Grille - components: - - pos: 74.5,-71.5 - parent: 8364 - type: Transform -- uid: 5148 - type: Grille - components: - - pos: 73.5,-71.5 - parent: 8364 - type: Transform -- uid: 5149 - type: Grille - components: - - pos: 73.5,-72.5 - parent: 8364 - type: Transform -- uid: 5150 - type: Grille - components: - - pos: 73.5,-73.5 - parent: 8364 - type: Transform -- uid: 5151 - type: Grille - components: - - pos: 73.5,-74.5 - parent: 8364 - type: Transform -- uid: 5152 - type: Grille - components: - - pos: 73.5,-75.5 - parent: 8364 - type: Transform -- uid: 5153 - type: Grille - components: - - pos: 73.5,-76.5 - parent: 8364 - type: Transform -- uid: 5154 - type: Grille - components: - - pos: 73.5,-77.5 - parent: 8364 - type: Transform -- uid: 5155 - type: Grille - components: - - pos: 73.5,-78.5 - parent: 8364 - type: Transform -- uid: 5156 - type: Grille - components: - - pos: 73.5,-79.5 - parent: 8364 - type: Transform -- uid: 5157 - type: Grille - components: - - pos: 73.5,-81.5 - parent: 8364 - type: Transform -- uid: 5158 - type: Grille - components: - - pos: 73.5,-82.5 - parent: 8364 - type: Transform -- uid: 5159 - type: Grille - components: - - pos: 73.5,-83.5 - parent: 8364 - type: Transform -- uid: 5160 - type: Grille - components: - - pos: 73.5,-84.5 - parent: 8364 - type: Transform -- uid: 5161 - type: Grille - components: - - pos: 73.5,-85.5 - parent: 8364 - type: Transform -- uid: 5162 - type: Grille - components: - - pos: 74.5,-85.5 - parent: 8364 - type: Transform -- uid: 5163 - type: Grille - components: - - pos: 75.5,-85.5 - parent: 8364 - type: Transform -- uid: 5164 - type: Grille - components: - - pos: 76.5,-85.5 - parent: 8364 - type: Transform -- uid: 5165 - type: Grille - components: - - pos: 77.5,-85.5 - parent: 8364 - type: Transform -- uid: 5166 - type: Grille - components: - - pos: 79.5,-86.5 - parent: 8364 - type: Transform -- uid: 5167 - type: Grille - components: - - pos: 79.5,-87.5 - parent: 8364 - type: Transform -- uid: 5168 - type: Grille - components: - - pos: 79.5,-88.5 - parent: 8364 - type: Transform -- uid: 5169 - type: Grille - components: - - pos: 80.5,-88.5 - parent: 8364 - type: Transform -- uid: 5170 - type: Grille - components: - - pos: 81.5,-88.5 - parent: 8364 - type: Transform -- uid: 5171 - type: Grille - components: - - pos: 82.5,-88.5 - parent: 8364 - type: Transform -- uid: 5172 - type: Grille - components: - - pos: 83.5,-88.5 - parent: 8364 - type: Transform -- uid: 5173 - type: Grille - components: - - pos: 83.5,-87.5 - parent: 8364 - type: Transform -- uid: 5174 - type: Grille - components: - - pos: 83.5,-86.5 - parent: 8364 - type: Transform -- uid: 5175 - type: Grille - components: - - pos: 87.5,-85.5 - parent: 8364 - type: Transform -- uid: 5176 - type: Grille - components: - - pos: 86.5,-85.5 - parent: 8364 - type: Transform -- uid: 5177 - type: Grille - components: - - pos: 85.5,-85.5 - parent: 8364 - type: Transform -- uid: 5178 - type: MaintenanceFluffSpawner - components: - - pos: 62.5,19.5 - parent: 8364 - type: Transform -- uid: 5179 - type: ClothingUnderSocksBee - components: - - pos: 75.39761,12.476688 - parent: 8364 - type: Transform -- uid: 5180 - type: ClothingOuterApron - components: - - pos: -22.495872,7.124408 - parent: 8364 - type: Transform -- uid: 5181 - type: OxygenCanister - components: - - pos: -29.5,-35.5 - parent: 8364 - type: Transform -- uid: 5182 - type: FirelockGlass - components: - - pos: -19.5,-0.5 - parent: 8364 - type: Transform -- uid: 5183 - type: FirelockGlass - components: - - pos: -19.5,-1.5 - parent: 8364 - type: Transform -- uid: 5184 - type: FirelockGlass - components: - - pos: -19.5,-2.5 - parent: 8364 - type: Transform -- uid: 5185 - type: PottedPlant5 - components: - - pos: 16.5,-0.5 - parent: 8364 - type: Transform -- uid: 5186 - type: Bookshelf - components: - - pos: 59.5,-4.5 - parent: 8364 - type: Transform -- uid: 5187 - type: PottedPlant10 - components: - - pos: 52.5,-8.5 - parent: 8364 - type: Transform -- uid: 5188 - type: ClothingHeadHatPumpkin - components: - - pos: 42.526115,-2.6703405 - parent: 8364 - type: Transform -- uid: 5189 - type: ComfyChair - components: - - pos: 4.5,9.5 - parent: 8364 - type: Transform -- uid: 5190 - type: Dresser - components: - - pos: 4.5,8.5 - parent: 8364 - type: Transform -- uid: 5191 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 38.5,-11.5 - parent: 8364 - type: Transform -- uid: 5192 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 37.5,-11.5 - parent: 8364 - type: Transform -- uid: 5193 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 36.5,-11.5 - parent: 8364 - type: Transform -- uid: 5194 - type: PottedPlantRandom - components: - - pos: 40.5,-11.5 - parent: 8364 - type: Transform -- uid: 5195 - type: PottedPlantRandom - components: - - pos: 33.5,-11.5 - parent: 8364 - type: Transform -- uid: 5196 - type: AirlockMaintMedLocked - components: - - name: Surgery - type: MetaData - - pos: 17.5,-34.5 - parent: 8364 - type: Transform -- uid: 5197 - type: WallReinforced - components: - - pos: 2.5,-23.5 - parent: 8364 - type: Transform -- uid: 5198 - type: WallReinforced - components: - - pos: 2.5,-24.5 - parent: 8364 - type: Transform -- uid: 5199 - type: DisposalPipe - components: - - pos: -0.5,-31.5 - parent: 8364 - type: Transform -- uid: 5200 - type: ReinforcedWindow - components: - - pos: 1.5,-23.5 - parent: 8364 - type: Transform -- uid: 5201 - type: WindowDirectional - components: - - pos: 19.5,-7.5 - parent: 8364 - type: Transform -- uid: 5202 - type: NitrogenCanister - components: - - pos: 30.5,-36.5 - parent: 8364 - type: Transform -- uid: 5203 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-36.5 - parent: 8364 - type: Transform -- uid: 5204 - type: Wrench - components: - - pos: 36.442337,-38.44587 - parent: 8364 - type: Transform -- uid: 5205 - type: CigarGold - components: - - pos: 12.548907,-14.481515 - parent: 8364 - type: Transform -- uid: 5206 - type: CigarGold - components: - - pos: 12.423907,-14.49714 - parent: 8364 - type: Transform -- uid: 5207 - type: RandomDrinkGlass - components: - - pos: 28.5,-5.5 - parent: 8364 - type: Transform -- uid: 5208 - type: SpawnPointMedicalDoctor - components: - - pos: 35.5,-41.5 - parent: 8364 - type: Transform -- uid: 5209 - type: BookEscalation - components: - - pos: 61.380688,-2.3497698 - parent: 8364 - type: Transform -- uid: 5210 - type: RandomFoodSingle - components: - - pos: 28.5,-8.5 - parent: 8364 - type: Transform -- uid: 5211 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 41.5,-31.5 - parent: 8364 - type: Transform -- uid: 5212 - type: PottedPlant21 - components: - - pos: 40.5,-31.5 - parent: 8364 - type: Transform -- uid: 5213 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-34.5 - parent: 8364 - type: Transform -- uid: 5214 - type: SignSmoking - components: - - pos: 28.5,-30.5 - parent: 8364 - type: Transform -- uid: 5215 - type: TableGlass - components: - - pos: 37.5,-38.5 - parent: 8364 - type: Transform -- uid: 5216 - type: SpawnPointMedicalDoctor - components: - - pos: 36.5,-40.5 - parent: 8364 - type: Transform -- uid: 5217 - type: MedicalTechFab - components: - - pos: 37.5,-43.5 - parent: 8364 - type: Transform -- uid: 5218 - type: LockerMedicalFilled - components: - - pos: 37.5,-42.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5219 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 44.5,-32.5 - parent: 8364 - type: Transform -- uid: 5220 - type: TableGlass - components: - - pos: 36.5,-38.5 - parent: 8364 - type: Transform -- uid: 5221 - type: filingCabinet - components: - - pos: 11.5,-24.5 - parent: 8364 - type: Transform -- uid: 5222 - type: SignalButton - components: - - pos: -10.5,-10.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5336 - - port: Toggle - uid: 5338 - - port: Toggle - uid: 22014 - type: SignalTransmitter -- uid: 5223 - type: TableGlass - components: - - pos: 34.5,-41.5 - parent: 8364 - type: Transform -- uid: 5224 - type: TableGlass - components: - - pos: 37.5,-40.5 - parent: 8364 - type: Transform -- uid: 5225 - type: ExtinguisherCabinetFilled - components: - - pos: 64.5,-21.5 - parent: 8364 - type: Transform -- uid: 5226 - type: ExtinguisherCabinetFilled - components: - - pos: 59.5,-25.5 - parent: 8364 - type: Transform -- uid: 5227 - type: SignFire - components: - - pos: 74.5,-42.5 - parent: 8364 - type: Transform -- uid: 5228 - type: SignFire - components: - - pos: 68.5,-38.5 - parent: 8364 - type: Transform -- uid: 5229 - type: SignNosmoking - components: - - pos: 64.5,-36.5 - parent: 8364 - type: Transform -- uid: 5230 - type: ExtinguisherCabinetFilled - components: - - pos: 69.5,-47.5 - parent: 8364 - type: Transform -- uid: 5231 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 68.5,-47.5 - parent: 8364 - type: Transform -- uid: 5232 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 68.5,-43.5 - parent: 8364 - type: Transform -- uid: 5233 - type: ReinforcedWindow - components: - - pos: 50.5,-68.5 - parent: 8364 - type: Transform -- uid: 5234 - type: ReinforcedWindow - components: - - pos: 50.5,-67.5 - parent: 8364 - type: Transform -- uid: 5235 - type: FirelockGlass - components: - - pos: 52.5,-26.5 - parent: 8364 - type: Transform -- uid: 5236 - type: FirelockGlass - components: - - pos: 52.5,-27.5 - parent: 8364 - type: Transform -- uid: 5237 - type: WallReinforced - components: - - pos: 54.5,-55.5 - parent: 8364 - type: Transform -- uid: 5238 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: 57.5,-37.5 - parent: 8364 - type: Transform -- uid: 5239 - type: CarpetGreen - components: - - pos: 56.5,-34.5 - parent: 8364 - type: Transform -- uid: 5240 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-18.5 - parent: 8364 - type: Transform -- uid: 5241 - type: TableGlass - components: - - pos: 34.5,-42.5 - parent: 8364 - type: Transform -- uid: 5242 - type: CarpetGreen - components: - - pos: 56.5,-35.5 - parent: 8364 - type: Transform -- uid: 5243 - type: MedkitFilled - components: - - pos: 34.611923,-41.44301 - parent: 8364 - type: Transform -- uid: 5244 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-26.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5245 - type: WallReinforced - components: - - pos: -14.5,-12.5 - parent: 8364 - type: Transform -- uid: 5246 - type: ClothingMaskBreathMedical - components: - - pos: 18.545513,-22.078382 - parent: 8364 - type: Transform -- uid: 5247 - type: ClothingMaskGasAtmos - components: - - pos: 44.61569,-40.409645 - parent: 8364 - type: Transform -- uid: 5248 - type: Wrench - components: - - pos: 44.39694,-40.48777 - parent: 8364 - type: Transform -- uid: 5249 - type: ToolboxElectricalFilled - components: - - pos: 47.537563,-38.378395 - parent: 8364 - type: Transform -- uid: 5250 - type: Rack - components: - - pos: 44.5,-40.5 - parent: 8364 - type: Transform -- uid: 5251 - type: GasPressurePump - components: - - pos: 43.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5252 - type: WallReinforced - components: - - pos: 17.5,39.5 - parent: 8364 - type: Transform -- uid: 5253 - type: WallReinforced - components: - - pos: 30.5,25.5 - parent: 8364 - type: Transform -- uid: 5254 - type: ToiletEmpty - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-21.5 - parent: 8364 - type: Transform -- uid: 5255 - type: GasPipeStraight - components: - - pos: 27.5,28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5256 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-41.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5257 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-42.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5258 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-42.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5259 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-39.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5260 - type: Carpet - components: - - pos: 8.5,-14.5 - parent: 8364 - type: Transform -- uid: 5261 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-39.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5262 - type: MedkitBruteFilled - components: - - pos: 34.4088,-42.083633 - parent: 8364 - type: Transform -- uid: 5263 - type: MedkitFilled - components: - - pos: 34.393173,-41.333633 - parent: 8364 - type: Transform -- uid: 5264 - type: MedkitToxinFilled - components: - - pos: 34.393173,-42.50551 - parent: 8364 - type: Transform -- uid: 5265 - type: Carpet - components: - - pos: 8.5,-12.5 - parent: 8364 - type: Transform -- uid: 5266 - type: Carpet - components: - - pos: 8.5,-13.5 - parent: 8364 - type: Transform -- uid: 5267 - type: WallReinforced - components: - - pos: 2.5,-22.5 - parent: 8364 - type: Transform -- uid: 5268 - type: ReinforcedWindow - components: - - pos: -1.5,-23.5 - parent: 8364 - type: Transform -- uid: 5269 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-3.5 - parent: 8364 - type: Transform -- uid: 5270 - type: CableApcExtension - components: - - pos: 5.5,-14.5 - parent: 8364 - type: Transform -- uid: 5271 - type: Grille - components: - - pos: -4.5,-17.5 - parent: 8364 - type: Transform -- uid: 5272 - type: CableHV - components: - - pos: 1.5,-24.5 - parent: 8364 - type: Transform -- uid: 5273 - type: WallReinforced - components: - - pos: 2.5,-18.5 - parent: 8364 - type: Transform -- uid: 5274 - type: WallReinforced - components: - - pos: 2.5,-26.5 - parent: 8364 - type: Transform -- uid: 5275 - type: Grille - components: - - pos: -14.5,-14.5 - parent: 8364 - type: Transform -- uid: 5276 - type: Grille - components: - - pos: -14.5,-13.5 - parent: 8364 - type: Transform -- uid: 5277 - type: MedkitBruteFilled - components: - - pos: 34.611923,-42.22426 - parent: 8364 - type: Transform -- uid: 5278 - type: TableGlass - components: - - pos: 34.5,-43.5 - parent: 8364 - type: Transform -- uid: 5279 - type: SpawnPointMedicalIntern - components: - - pos: 36.5,-42.5 - parent: 8364 - type: Transform -- uid: 5280 - type: SpawnPointMedicalDoctor - components: - - pos: 36.5,-41.5 - parent: 8364 - type: Transform -- uid: 5281 - type: Grille - components: - - pos: -12.5,-24.5 - parent: 8364 - type: Transform -- uid: 5282 - type: Grille - components: - - pos: -12.5,-23.5 - parent: 8364 - type: Transform -- uid: 5283 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-39.5 - parent: 8364 - type: Transform -- uid: 5284 - type: SignMedical - components: - - pos: 32.5,-15.5 - parent: 8364 - type: Transform -- uid: 5285 - type: ExtinguisherCabinetFilled - components: - - pos: -4.5,-9.5 - parent: 8364 - type: Transform - - containers: - cabinetSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - ItemCabinet: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 5286 - type: RemoteSignaller - components: - - pos: 0.5348537,-4.4576077 - parent: 8364 - type: Transform -- uid: 5287 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-27.5 - parent: 8364 - type: Transform -- uid: 5288 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 8364 - type: Transform -- uid: 5289 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-25.5 - parent: 8364 - type: Transform -- uid: 5290 - type: SignExamroom - components: - - pos: 38.5,-47.5 - parent: 8364 - type: Transform -- uid: 5291 - type: PottedPlant24 - components: - - pos: 34.5,-55.5 - parent: 8364 - type: Transform -- uid: 5292 - type: PottedPlant21 - components: - - pos: 34.5,-51.5 - parent: 8364 - type: Transform -- uid: 5293 - type: filingCabinetDrawer - components: - - pos: 69.5,-49.5 - parent: 8364 - type: Transform -- uid: 5294 - type: WallReinforced - components: - - pos: 54.5,-57.5 - parent: 8364 - type: Transform -- uid: 5295 - type: SignToxins2 - components: - - pos: 69.5,-43.5 - parent: 8364 - type: Transform -- uid: 5296 - type: SignToxins - components: - - pos: 64.5,-34.5 - parent: 8364 - type: Transform -- uid: 5297 - type: PottedPlantRD - components: - - pos: 70.5,-37.5 - parent: 8364 - type: Transform -- uid: 5298 - type: PowerDrill - components: - - pos: 74.5232,-35.42073 - parent: 8364 - type: Transform -- uid: 5299 - type: ClothingBeltUtilityFilled - components: - - pos: 74.5232,-33.467606 - parent: 8364 - type: Transform -- uid: 5300 - type: ToolboxEmergencyFilled - components: - - pos: 4.550616,-4.4732327 - parent: 8364 - type: Transform -- uid: 5301 - type: TableReinforced - components: - - pos: -5.5,-5.5 - parent: 8364 - type: Transform -- uid: 5302 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -0.5,-5.5 - parent: 8364 - type: Transform -- uid: 5303 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 2.5,-5.5 - parent: 8364 - type: Transform -- uid: 5304 - type: FoodBoxDonut - components: - - pos: 4.534991,-6.2857327 - parent: 8364 - type: Transform -- uid: 5305 - type: TableReinforced - components: - - pos: 0.5,-5.5 - parent: 8364 - type: Transform -- uid: 5306 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 6.5,-7.5 - parent: 8364 - type: Transform -- uid: 5307 - type: WeaponCapacitorRecharger - components: - - pos: -5.5,-6.5 - parent: 8364 - type: Transform -- uid: 5308 - type: PottedPlant1 - components: - - pos: -6.5,-9.5 - parent: 8364 - type: Transform -- uid: 5309 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 8364 - type: Transform -- uid: 5310 - type: ClosetFireFilled - components: - - pos: 7.5,-9.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5311 - type: ClosetEmergencyFilledRandom - components: - - pos: -8.5,-9.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5312 - type: ComfyChair - components: - - pos: -9.5,-12.5 - parent: 8364 - type: Transform -- uid: 5313 - type: CableMV - components: - - pos: -13.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5314 - type: CableHV - components: - - pos: -3.5,-5.5 - parent: 8364 - type: Transform -- uid: 5315 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 8364 - type: Transform -- uid: 5316 - type: ClothingHeadHelmetEVA - components: - - pos: 72.42945,-34.38948 - parent: 8364 - type: Transform -- uid: 5317 - type: ClothingOuterHardsuitEVA - components: - - pos: 72.5232,-34.467606 - parent: 8364 - type: Transform -- uid: 5318 - type: ClothingBeltUtilityFilled - components: - - pos: 74.5101,-30.533546 - parent: 8364 - type: Transform -- uid: 5319 - type: SpawnPointScientist - components: - - pos: 73.5,-27.5 - parent: 8364 - type: Transform -- uid: 5320 - type: SpawnPointScientist - components: - - pos: 72.5,-27.5 - parent: 8364 - type: Transform -- uid: 5321 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 8364 - type: Transform -- uid: 5322 - type: SpawnPointScientist - components: - - pos: 71.5,-27.5 - parent: 8364 - type: Transform -- uid: 5323 - type: SpawnPointScientist - components: - - pos: 70.5,-27.5 - parent: 8364 - type: Transform -- uid: 5324 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-28.5 - parent: 8364 - type: Transform -- uid: 5325 - type: Carpet - components: - - pos: 10.5,-13.5 - parent: 8364 - type: Transform -- uid: 5326 - type: ComputerId - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 8364 - type: Transform -- uid: 5327 - type: Carpet - components: - - pos: 9.5,-14.5 - parent: 8364 - type: Transform -- uid: 5328 - type: BoxFolderBlue - components: - - pos: 6.4906216,-15.486443 - parent: 8364 - type: Transform -- uid: 5329 - type: CaptainIDCard - components: - - pos: 8.491884,-16.71644 - parent: 8364 - type: Transform -- uid: 5330 - type: Carpet - components: - - pos: 10.5,-12.5 - parent: 8364 - type: Transform -- uid: 5331 - type: Carpet - components: - - pos: 9.5,-12.5 - parent: 8364 - type: Transform -- uid: 5332 - type: Carpet - components: - - pos: 9.5,-13.5 - parent: 8364 - type: Transform -- uid: 5333 - type: TableWood - components: - - pos: 9.5,-12.5 - parent: 8364 - type: Transform -- uid: 5334 - type: Carpet - components: - - pos: 10.5,-14.5 - parent: 8364 - type: Transform -- uid: 5335 - type: HighSecCommandLocked - components: - - pos: -0.5,-9.5 - parent: 8364 - type: Transform -- uid: 5336 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-13.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5222 - type: SignalReceiver -- uid: 5337 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -3.5,-5.5 - parent: 8364 - type: Transform -- uid: 5338 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5222 - type: SignalReceiver -- uid: 5339 - type: CarpetSBlue - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-15.5 - parent: 8364 - type: Transform -- uid: 5340 - type: filingCabinetDrawer - components: - - pos: -9.5,-21.5 - parent: 8364 - type: Transform -- uid: 5341 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-25.5 - parent: 8364 - type: Transform -- uid: 5342 - type: Crowbar - components: - - pos: 12.532225,-14.882653 - parent: 8364 - type: Transform -- uid: 5343 - type: PinpointerNuclear - components: - - pos: 12.467991,-15.505957 - parent: 8364 - type: Transform -- uid: 5344 - type: SpawnPointDetective - components: - - pos: -5.5,15.5 - parent: 8364 - type: Transform -- uid: 5345 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-29.5 - parent: 8364 - type: Transform -- uid: 5346 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-28.5 - parent: 8364 - type: Transform -- uid: 5347 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-29.5 - parent: 8364 - type: Transform -- uid: 5348 - type: Table - components: - - pos: 72.5,-29.5 - parent: 8364 - type: Transform -- uid: 5349 - type: Table - components: - - pos: 72.5,-28.5 - parent: 8364 - type: Transform -- uid: 5350 - type: Table - components: - - pos: 71.5,-28.5 - parent: 8364 - type: Transform -- uid: 5351 - type: Table - components: - - pos: 71.5,-29.5 - parent: 8364 - type: Transform -- uid: 5352 - type: SpawnPointBotanist - components: - - pos: 46.5,-0.5 - parent: 8364 - type: Transform -- uid: 5353 - type: AirlockMedicalGlassLocked - components: - - pos: 30.5,-22.5 - parent: 8364 - type: Transform -- uid: 5354 - type: CarpetBlue - components: - - pos: 5.5,6.5 - parent: 8364 - type: Transform -- uid: 5355 - type: BaseComputer - components: - - pos: 56.5,-29.5 - parent: 8364 - type: Transform -- uid: 5356 - type: CarpetBlue - components: - - pos: 4.5,6.5 - parent: 8364 - type: Transform -- uid: 5357 - type: CarpetBlue - components: - - pos: 4.5,5.5 - parent: 8364 - type: Transform -- uid: 5358 - type: Grille - components: - - pos: 32.5,-22.5 - parent: 8364 - type: Transform -- uid: 5359 - type: Grille - components: - - pos: 31.5,-22.5 - parent: 8364 - type: Transform -- uid: 5360 - type: CarpetPurple - components: - - pos: 5.5,9.5 - parent: 8364 - type: Transform -- uid: 5361 - type: CarpetPurple - components: - - pos: 5.5,8.5 - parent: 8364 - type: Transform -- uid: 5362 - type: CarpetPurple - components: - - pos: 4.5,9.5 - parent: 8364 - type: Transform -- uid: 5363 - type: CarpetPurple - components: - - pos: 4.5,8.5 - parent: 8364 - type: Transform -- uid: 5364 - type: CarpetOrange - components: - - pos: 6.5,12.5 - parent: 8364 - type: Transform -- uid: 5365 - type: CarpetOrange - components: - - pos: 6.5,11.5 - parent: 8364 - type: Transform -- uid: 5366 - type: CarpetOrange - components: - - pos: 5.5,12.5 - parent: 8364 - type: Transform -- uid: 5367 - type: CarpetOrange - components: - - pos: 5.5,11.5 - parent: 8364 - type: Transform -- uid: 5368 - type: CarpetOrange - components: - - pos: 4.5,12.5 - parent: 8364 - type: Transform -- uid: 5369 - type: CarpetOrange - components: - - pos: 4.5,11.5 - parent: 8364 - type: Transform -- uid: 5370 - type: SignalButton - components: - - pos: 81.5,-26.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5373 - type: SignalTransmitter -- uid: 5371 - type: Grille - components: - - pos: 28.5,-22.5 - parent: 8364 - type: Transform -- uid: 5372 - type: Grille - components: - - pos: 29.5,-22.5 - parent: 8364 - type: Transform -- uid: 5373 - type: BlastDoor - components: - - pos: 82.5,-26.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5370 - type: SignalReceiver -- uid: 5374 - type: BoxBeanbag - components: - - pos: 31.510162,-1.6086714 - parent: 8364 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 5375 - type: SpawnPointBartender - components: - - pos: 30.5,0.5 - parent: 8364 - type: Transform -- uid: 5376 - type: Carpet - components: - - pos: 55.5,-2.5 - parent: 8364 - type: Transform -- uid: 5377 - type: Carpet - components: - - pos: 55.5,-3.5 - parent: 8364 - type: Transform -- uid: 5378 - type: Carpet - components: - - pos: 55.5,-4.5 - parent: 8364 - type: Transform -- uid: 5379 - type: Carpet - components: - - pos: 55.5,-5.5 - parent: 8364 - type: Transform -- uid: 5380 - type: Carpet - components: - - pos: 55.5,-6.5 - parent: 8364 - type: Transform -- uid: 5381 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5382 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 56.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5383 - type: GasVentScrubber - components: - - pos: 57.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5384 - type: Carpet - components: - - pos: 56.5,-2.5 - parent: 8364 - type: Transform -- uid: 5385 - type: Carpet - components: - - pos: 56.5,-3.5 - parent: 8364 - type: Transform -- uid: 5386 - type: Carpet - components: - - pos: 56.5,-4.5 - parent: 8364 - type: Transform -- uid: 5387 - type: Carpet - components: - - pos: 56.5,-5.5 - parent: 8364 - type: Transform -- uid: 5388 - type: Carpet - components: - - pos: 56.5,-6.5 - parent: 8364 - type: Transform -- uid: 5389 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5390 - type: GasPipeBend - components: - - pos: 56.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5391 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5392 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5393 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5394 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5395 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5396 - type: Carpet - components: - - pos: 59.5,-8.5 - parent: 8364 - type: Transform -- uid: 5397 - type: Carpet - components: - - pos: 59.5,-9.5 - parent: 8364 - type: Transform -- uid: 5398 - type: Carpet - components: - - pos: 60.5,-8.5 - parent: 8364 - type: Transform -- uid: 5399 - type: Carpet - components: - - pos: 60.5,-9.5 - parent: 8364 - type: Transform -- uid: 5400 - type: Carpet - components: - - pos: 61.5,-8.5 - parent: 8364 - type: Transform -- uid: 5401 - type: Carpet - components: - - pos: 61.5,-9.5 - parent: 8364 - type: Transform -- uid: 5402 - type: Carpet - components: - - pos: 62.5,-8.5 - parent: 8364 - type: Transform -- uid: 5403 - type: Carpet - components: - - pos: 62.5,-9.5 - parent: 8364 - type: Transform -- uid: 5404 - type: Carpet - components: - - pos: 63.5,-8.5 - parent: 8364 - type: Transform -- uid: 5405 - type: Carpet - components: - - pos: 63.5,-9.5 - parent: 8364 - type: Transform -- uid: 5406 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 74.5,2.5 - parent: 8364 - type: Transform -- uid: 5407 - type: CarpetChapel - components: - - pos: 73.5,0.5 - parent: 8364 - type: Transform -- uid: 5408 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-3.5 - parent: 8364 - type: Transform -- uid: 5409 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 74.5,0.5 - parent: 8364 - type: Transform -- uid: 5410 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-7.5 - parent: 8364 - type: Transform -- uid: 5411 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-5.5 - parent: 8364 - type: Transform -- uid: 5412 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-5.5 - parent: 8364 - type: Transform -- uid: 5413 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-7.5 - parent: 8364 - type: Transform -- uid: 5414 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 72.5,-6.5 - parent: 8364 - type: Transform -- uid: 5415 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-3.5 - parent: 8364 - type: Transform -- uid: 5416 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 72.5,-2.5 - parent: 8364 - type: Transform -- uid: 5417 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 72.5,-4.5 - parent: 8364 - type: Transform -- uid: 5418 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 67.5,-4.5 - parent: 8364 - type: Transform -- uid: 5419 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 67.5,-6.5 - parent: 8364 - type: Transform -- uid: 5420 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-4.5 - parent: 8364 - type: Transform -- uid: 5421 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-6.5 - parent: 8364 - type: Transform -- uid: 5422 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-6.5 - parent: 8364 - type: Transform -- uid: 5423 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-2.5 - parent: 8364 - type: Transform -- uid: 5424 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-2.5 - parent: 8364 - type: Transform -- uid: 5425 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-4.5 - parent: 8364 - type: Transform -- uid: 5426 - type: CarpetChapel - components: - - pos: 71.5,-3.5 - parent: 8364 - type: Transform -- uid: 5427 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 67.5,-2.5 - parent: 8364 - type: Transform -- uid: 5428 - type: CarpetChapel - components: - - pos: 66.5,-3.5 - parent: 8364 - type: Transform -- uid: 5429 - type: CarpetChapel - components: - - pos: 66.5,-5.5 - parent: 8364 - type: Transform -- uid: 5430 - type: CarpetChapel - components: - - pos: 66.5,-7.5 - parent: 8364 - type: Transform -- uid: 5431 - type: CarpetChapel - components: - - pos: 71.5,-7.5 - parent: 8364 - type: Transform -- uid: 5432 - type: CarpetChapel - components: - - pos: 71.5,-5.5 - parent: 8364 - type: Transform -- uid: 5433 - type: CarpetChapel - components: - - pos: 73.5,2.5 - parent: 8364 - type: Transform -- uid: 5434 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 73.5,3.5 - parent: 8364 - type: Transform -- uid: 5435 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 73.5,1.5 - parent: 8364 - type: Transform -- uid: 5436 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 74.5,3.5 - parent: 8364 - type: Transform -- uid: 5437 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 74.5,1.5 - parent: 8364 - type: Transform -- uid: 5438 - type: Carpet - components: - - pos: -3.5,14.5 - parent: 8364 - type: Transform -- uid: 5439 - type: Carpet - components: - - pos: -3.5,13.5 - parent: 8364 - type: Transform -- uid: 5440 - type: Carpet - components: - - pos: -4.5,14.5 - parent: 8364 - type: Transform -- uid: 5441 - type: Carpet - components: - - pos: -4.5,13.5 - parent: 8364 - type: Transform -- uid: 5442 - type: Carpet - components: - - pos: -5.5,14.5 - parent: 8364 - type: Transform -- uid: 5443 - type: Carpet - components: - - pos: -5.5,13.5 - parent: 8364 - type: Transform -- uid: 5444 - type: BarSignMaidCafe - components: - - pos: 26.5,-11.5 - parent: 8364 - type: Transform -- uid: 5445 - type: ToySpawner - components: - - pos: 4.5,11.5 - parent: 8364 - type: Transform -- uid: 5446 - type: ExtinguisherCabinetFilled - components: - - pos: -6.5,-32.5 - parent: 8364 - type: Transform -- uid: 5447 - type: PottedPlantRandom - components: - - pos: -10.5,-35.5 - parent: 8364 - type: Transform -- uid: 5448 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 8364 - type: Transform -- uid: 5449 - type: PottedPlantRandom - components: - - pos: -10.5,-37.5 - parent: 8364 - type: Transform -- uid: 5450 - type: RandomVendingDrinks - components: - - pos: 24.5,-22.5 - parent: 8364 - type: Transform -- uid: 5451 - type: BedsheetMedical - components: - - pos: 32.5,-27.5 - parent: 8364 - type: Transform -- uid: 5452 - type: BedsheetMedical - components: - - pos: 30.5,-27.5 - parent: 8364 - type: Transform -- uid: 5453 - type: DisposalPipe - components: - - pos: 14.5,33.5 - parent: 8364 - type: Transform -- uid: 5454 - type: Carpet - components: - - pos: 14.5,41.5 - parent: 8364 - type: Transform -- uid: 5455 - type: Carpet - components: - - pos: 14.5,40.5 - parent: 8364 - type: Transform -- uid: 5456 - type: Carpet - components: - - pos: 14.5,39.5 - parent: 8364 - type: Transform -- uid: 5457 - type: MedicalBed - components: - - pos: 32.5,-27.5 - parent: 8364 - type: Transform -- uid: 5458 - type: DisposalPipe - components: - - pos: 14.5,34.5 - parent: 8364 - type: Transform -- uid: 5459 - type: Carpet - components: - - pos: 13.5,41.5 - parent: 8364 - type: Transform -- uid: 5460 - type: Carpet - components: - - pos: 13.5,40.5 - parent: 8364 - type: Transform -- uid: 5461 - type: Carpet - components: - - pos: 13.5,39.5 - parent: 8364 - type: Transform -- uid: 5462 - type: HospitalCurtainsOpen - components: - - pos: 38.5,-49.5 - parent: 8364 - type: Transform -- uid: 5463 - type: HospitalCurtainsOpen - components: - - pos: 38.5,-46.5 - parent: 8364 - type: Transform -- uid: 5464 - type: Carpet - components: - - pos: 12.5,41.5 - parent: 8364 - type: Transform -- uid: 5465 - type: Carpet - components: - - pos: 12.5,40.5 - parent: 8364 - type: Transform -- uid: 5466 - type: Carpet - components: - - pos: 12.5,39.5 - parent: 8364 - type: Transform -- uid: 5467 - type: BoxSterileMask - components: - - pos: 38.48153,-59.041092 - parent: 8364 - type: Transform -- uid: 5468 - type: BoxMouthSwab - components: - - pos: 38.38778,-59.853592 - parent: 8364 - type: Transform -- uid: 5469 - type: ChairOfficeLight - components: - - pos: 39.5,-58.5 - parent: 8364 - type: Transform -- uid: 5470 - type: BedsheetGreen - components: - - pos: 47.5,-58.5 - parent: 8364 - type: Transform -- uid: 5471 - type: BedsheetGreen - components: - - pos: 44.5,-58.5 - parent: 8364 - type: Transform -- uid: 5472 - type: BedsheetGreen - components: - - pos: 37.5,-51.5 - parent: 8364 - type: Transform -- uid: 5473 - type: MedicalBed - components: - - pos: 37.5,-51.5 - parent: 8364 - type: Transform -- uid: 5474 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: 38.5,-57.5 - parent: 8364 - type: Transform -- uid: 5475 - type: ChairWood - components: - - pos: 42.5,-70.5 - parent: 8364 - type: Transform -- uid: 5476 - type: Rack - components: - - pos: 50.5,-55.5 - parent: 8364 - type: Transform -- uid: 5477 - type: ResearchComputerCircuitboard - components: - - pos: 72.5,-33.5 - parent: 8364 - type: Transform -- uid: 5478 - type: SignalButton - components: - - pos: 68.5,-20.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 20840 - - port: Toggle - uid: 20841 - - port: Toggle - uid: 20842 - - port: Toggle - uid: 20843 - - port: Toggle - uid: 20844 - - port: Toggle - uid: 20845 - - port: Toggle - uid: 20846 - - port: Toggle - uid: 20848 - type: SignalTransmitter -- uid: 5479 - type: Carpet - components: - - pos: -56.5,-9.5 - parent: 8364 - type: Transform -- uid: 5480 - type: Carpet - components: - - pos: -56.5,-10.5 - parent: 8364 - type: Transform -- uid: 5481 - type: Carpet - components: - - pos: -57.5,-9.5 - parent: 8364 - type: Transform -- uid: 5482 - type: Carpet - components: - - pos: -57.5,-10.5 - parent: 8364 - type: Transform -- uid: 5483 - type: Carpet - components: - - pos: -58.5,-9.5 - parent: 8364 - type: Transform -- uid: 5484 - type: Carpet - components: - - pos: -58.5,-10.5 - parent: 8364 - type: Transform -- uid: 5485 - type: Carpet - components: - - pos: -59.5,-9.5 - parent: 8364 - type: Transform -- uid: 5486 - type: Carpet - components: - - pos: -59.5,-10.5 - parent: 8364 - type: Transform -- uid: 5487 - type: Carpet - components: - - pos: -58.5,-1.5 - parent: 8364 - type: Transform -- uid: 5488 - type: Carpet - components: - - pos: -58.5,-2.5 - parent: 8364 - type: Transform -- uid: 5489 - type: Carpet - components: - - pos: -59.5,-1.5 - parent: 8364 - type: Transform -- uid: 5490 - type: Carpet - components: - - pos: -59.5,-2.5 - parent: 8364 - type: Transform -- uid: 5491 - type: Carpet - components: - - pos: -60.5,-1.5 - parent: 8364 - type: Transform -- uid: 5492 - type: Carpet - components: - - pos: -60.5,-2.5 - parent: 8364 - type: Transform -- uid: 5493 - type: Table - components: - - pos: 69.5,-26.5 - parent: 8364 - type: Transform -- uid: 5494 - type: Table - components: - - pos: 69.5,-27.5 - parent: 8364 - type: Transform -- uid: 5495 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-7.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5496 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5497 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5498 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5499 - type: Table - components: - - pos: 69.5,-28.5 - parent: 8364 - type: Transform -- uid: 5500 - type: DogBed - components: - - name: fox bed - type: MetaData - - pos: 5.5,-17.5 - parent: 8364 - type: Transform -- uid: 5501 - type: WallReinforced - components: - - pos: 1.5,-27.5 - parent: 8364 - type: Transform -- uid: 5502 - type: WallReinforced - components: - - pos: 1.5,-26.5 - parent: 8364 - type: Transform -- uid: 5503 - type: VendingMachineSciDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 74.5,-28.5 - parent: 8364 - type: Transform -- uid: 5504 - type: ClosetL3ScienceFilled - components: - - pos: 74.5,-29.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5505 - type: ComputerResearchAndDevelopment - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-31.5 - parent: 8364 - type: Transform -- uid: 5506 - type: ClosetL3ScienceFilled - components: - - pos: 73.5,-43.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5507 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 75.5,-43.5 - parent: 8364 - type: Transform -- uid: 5508 - type: CarpetSBlue - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 8364 - type: Transform -- uid: 5509 - type: FoodBoxDonut - components: - - pos: -10.3700485,-13.3952875 - parent: 8364 - type: Transform -- uid: 5510 - type: ComputerSurveillanceCameraMonitor - components: - - pos: -7.5,-6.5 - parent: 8364 - type: Transform -- uid: 5511 - type: FirelockGlass - components: - - pos: 65.5,-48.5 - parent: 8364 - type: Transform -- uid: 5512 - type: FirelockGlass - components: - - pos: 66.5,-48.5 - parent: 8364 - type: Transform -- uid: 5513 - type: FirelockGlass - components: - - pos: 67.5,-48.5 - parent: 8364 - type: Transform -- uid: 5514 - type: AirlockCommandGlassLocked - components: - - name: Bridge - type: MetaData - - pos: -11.5,-8.5 - parent: 8364 - type: Transform -- uid: 5515 - type: AirlockCommandGlassLocked - components: - - name: Bridge - type: MetaData - - pos: -9.5,-8.5 - parent: 8364 - type: Transform -- uid: 5516 - type: AirlockCommandGlassLocked - components: - - name: Bridge - type: MetaData - - pos: 8.5,-8.5 - parent: 8364 - type: Transform -- uid: 5517 - type: AirlockCommandGlassLocked - components: - - name: Bridge - type: MetaData - - pos: 10.5,-8.5 - parent: 8364 - type: Transform -- uid: 5518 - type: FirelockGlass - components: - - pos: 65.5,-37.5 - parent: 8364 - type: Transform -- uid: 5519 - type: FirelockGlass - components: - - pos: 66.5,-37.5 - parent: 8364 - type: Transform -- uid: 5520 - type: CableHV - components: - - pos: -7.5,-7.5 - parent: 8364 - type: Transform -- uid: 5521 - type: CableHV - components: - - pos: -7.5,-9.5 - parent: 8364 - type: Transform -- uid: 5522 - type: WaterCooler - components: - - pos: -8.5,-19.5 - parent: 8364 - type: Transform -- uid: 5523 - type: filingCabinet - components: - - pos: -13.5,-11.5 - parent: 8364 - type: Transform -- uid: 5524 - type: CableHV - components: - - pos: -13.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5525 - type: ComputerCrewMonitoring - components: - - pos: 2.5,-4.5 - parent: 8364 - type: Transform -- uid: 5526 - type: IntercomAll - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 8364 - type: Transform -- uid: 5527 - type: TableGlass - components: - - pos: -13.5,-13.5 - parent: 8364 - type: Transform -- uid: 5528 - type: TableWood - components: - - pos: -10.5,-15.5 - parent: 8364 - type: Transform -- uid: 5529 - type: CableHV - components: - - pos: -13.5,-14.5 - parent: 8364 - type: Transform -- uid: 5530 - type: CarpetSBlue - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 8364 - type: Transform -- uid: 5531 - type: CableHV - components: - - pos: -13.5,-13.5 - parent: 8364 - type: Transform -- uid: 5532 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-46.5 - parent: 8364 - type: Transform -- uid: 5533 - type: CarpetSBlue - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 8364 - type: Transform -- uid: 5534 - type: FaxMachineBase - components: - - pos: -13.5,-13.5 - parent: 8364 - type: Transform - - name: Conference Room - type: FaxMachine -- uid: 5535 - type: CableHV - components: - - pos: -9.5,-11.5 - parent: 8364 - type: Transform -- uid: 5536 - type: CableHV - components: - - pos: -12.5,-11.5 - parent: 8364 - type: Transform -- uid: 5537 - type: CableHV - components: - - pos: -11.5,-11.5 - parent: 8364 - type: Transform -- uid: 5538 - type: CarpetBlue - components: - - pos: 7.5,-22.5 - parent: 8364 - type: Transform -- uid: 5539 - type: CableHV - components: - - pos: -7.5,-11.5 - parent: 8364 - type: Transform -- uid: 5540 - type: CableHV - components: - - pos: -8.5,-11.5 - parent: 8364 - type: Transform -- uid: 5541 - type: CarpetBlue - components: - - pos: 6.5,-21.5 - parent: 8364 - type: Transform -- uid: 5542 - type: CarpetBlue - components: - - pos: 8.5,-21.5 - parent: 8364 - type: Transform -- uid: 5543 - type: CarpetBlue - components: - - pos: 7.5,-21.5 - parent: 8364 - type: Transform -- uid: 5544 - type: CarpetBlue - components: - - pos: 6.5,-22.5 - parent: 8364 - type: Transform -- uid: 5545 - type: WallSolidRust - components: - - pos: 11.5,-33.5 - parent: 8364 - type: Transform -- uid: 5546 - type: FirelockGlass - components: - - pos: 40.5,-37.5 - parent: 8364 - type: Transform -- uid: 5547 - type: FirelockGlass - components: - - pos: 34.5,-28.5 - parent: 8364 - type: Transform -- uid: 5548 - type: FirelockGlass - components: - - pos: 25.5,-26.5 - parent: 8364 - type: Transform -- uid: 5549 - type: ComputerPowerMonitoring - components: - - pos: -3.5,-4.5 - parent: 8364 - type: Transform -- uid: 5550 - type: VendingMachineChefvend - components: - - flags: SessionSpecific - type: MetaData - - pos: 37.5,0.5 - parent: 8364 - type: Transform -- uid: 5551 - type: IntercomScience - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-16.5 - parent: 8364 - type: Transform -- uid: 5552 - type: Table - components: - - pos: 37.5,-7.5 - parent: 8364 - type: Transform -- uid: 5553 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5554 - type: TableCarpet - components: - - pos: 10.5,-24.5 - parent: 8364 - type: Transform -- uid: 5555 - type: DrinkGoldenCup - components: - - name: Championship Cup - type: MetaData - - pos: 10.510498,-24.37144 - parent: 8364 - type: Transform -- uid: 5556 - type: IntercomMedical - components: - - pos: 22.5,-23.5 - parent: 8364 - type: Transform -- uid: 5557 - type: TableReinforced - components: - - pos: 0.5,-4.5 - parent: 8364 - type: Transform -- uid: 5558 - type: TableReinforced - components: - - pos: -5.5,-4.5 - parent: 8364 - type: Transform -- uid: 5559 - type: BooksBag - components: - - pos: 63.255688,-2.4798405 - parent: 8364 - type: Transform -- uid: 5560 - type: CableHV - components: - - pos: -7.5,-6.5 - parent: 8364 - type: Transform -- uid: 5561 - type: CableHV - components: - - pos: -7.5,-8.5 - parent: 8364 - type: Transform -- uid: 5562 - type: ChemistryHotplate - components: - - pos: 18.5,-22.5 - parent: 8364 - type: Transform -- uid: 5563 - type: CarpetSBlue - components: - - pos: -9.5,-23.5 - parent: 8364 - type: Transform -- uid: 5564 - type: CarpetSBlue - components: - - pos: -9.5,-22.5 - parent: 8364 - type: Transform -- uid: 5565 - type: CarpetSBlue - components: - - pos: -8.5,-24.5 - parent: 8364 - type: Transform -- uid: 5566 - type: CarpetSBlue - components: - - pos: -9.5,-24.5 - parent: 8364 - type: Transform -- uid: 5567 - type: PosterLegitPDAAd - components: - - pos: -12.5,-26.5 - parent: 8364 - type: Transform -- uid: 5568 - type: CarpetSBlue - components: - - pos: -10.5,-22.5 - parent: 8364 - type: Transform -- uid: 5569 - type: CarpetSBlue - components: - - pos: -10.5,-23.5 - parent: 8364 - type: Transform -- uid: 5570 - type: CarpetSBlue - components: - - pos: -10.5,-24.5 - parent: 8364 - type: Transform -- uid: 5571 - type: HospitalCurtainsOpen - components: - - pos: 10.5,-22.5 - parent: 8364 - type: Transform -- uid: 5572 - type: CableApcExtension - components: - - pos: -1.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5573 - type: CableApcExtension - components: - - pos: 0.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5574 - type: CableApcExtension - components: - - pos: 1.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5575 - type: Table - components: - - pos: 14.5,30.5 - parent: 8364 - type: Transform -- uid: 5576 - type: KitchenMicrowave - components: - - pos: 13.5,30.5 - parent: 8364 - type: Transform -- uid: 5577 - type: DonkpocketBoxSpawner - components: - - pos: 14.5,30.5 - parent: 8364 - type: Transform -- uid: 5578 - type: CarpetBlue - components: - - pos: 5.5,5.5 - parent: 8364 - type: Transform -- uid: 5579 - type: BedsheetCosmos - components: - - pos: 6.5,6.5 - parent: 8364 - type: Transform -- uid: 5580 - type: ClothingNeckScarfStripedBlue - components: - - pos: 6.4443398,6.312227 - parent: 8364 - type: Transform -- uid: 5581 - type: TableWood - components: - - pos: 4.5,15.5 - parent: 8364 - type: Transform -- uid: 5582 - type: Table - components: - - pos: 4.5,11.5 - parent: 8364 - type: Transform -- uid: 5583 - type: BedsheetSpawner - components: - - pos: 6.5,15.5 - parent: 8364 - type: Transform -- uid: 5584 - type: UprightPianoInstrument - components: - - rot: -1.5707963267948966 rad - pos: 20.5,2.5 - parent: 8364 - type: Transform -- uid: 5585 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -12.5,-22.5 - parent: 8364 - type: Transform -- uid: 5586 - type: PianoInstrument - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-1.5 - parent: 8364 - type: Transform -- uid: 5587 - type: TableWood - components: - - pos: 24.5,0.5 - parent: 8364 - type: Transform -- uid: 5588 - type: TableWood - components: - - pos: 22.5,0.5 - parent: 8364 - type: Transform -- uid: 5589 - type: TableWood - components: - - pos: 23.5,0.5 - parent: 8364 - type: Transform -- uid: 5590 - type: ShuttersNormalOpen - components: - - pos: -12.5,-24.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20896 - type: SignalReceiver -- uid: 5591 - type: ShuttersNormalOpen - components: - - pos: -12.5,-23.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20896 - type: SignalReceiver -- uid: 5592 - type: ShuttersNormalOpen - components: - - pos: -12.5,-22.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20896 - type: SignalReceiver -- uid: 5593 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5594 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 16.5,39.5 - parent: 8364 - type: Transform -- uid: 5595 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 21.5,20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5596 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 26.5,21.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 5597 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 16.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5598 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 16.5,20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5599 - type: PottedPlant21 - components: - - pos: 12.5,37.5 - parent: 8364 - type: Transform -- uid: 5600 - type: FirelockGlass - components: - - pos: -3.5,-62.5 - parent: 8364 - type: Transform -- uid: 5601 - type: WallReinforced - components: - - pos: -7.5,1.5 - parent: 8364 - type: Transform -- uid: 5602 - type: AirCanister - components: - - pos: 26.5,21.5 - parent: 8364 - type: Transform -- uid: 5603 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -7.5,-7.5 - parent: 8364 - type: Transform -- uid: 5604 - type: Flash - components: - - pos: -5.590146,-5.5357327 - parent: 8364 - type: Transform -- uid: 5605 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-9.5 - parent: 8364 - type: Transform -- uid: 5606 - type: MedkitFilled - components: - - pos: 4.550616,-5.4263577 - parent: 8364 - type: Transform -- uid: 5607 - type: PottedPlant1 - components: - - pos: 5.5,-9.5 - parent: 8364 - type: Transform -- uid: 5608 - type: filingCabinet - components: - - pos: -5.5,-9.5 - parent: 8364 - type: Transform -- uid: 5609 - type: filingCabinetDrawer - components: - - pos: 9.5,-24.5 - parent: 8364 - type: Transform -- uid: 5610 - type: CarpetBlue - components: - - pos: 10.5,-27.5 - parent: 8364 - type: Transform -- uid: 5611 - type: TableReinforced - components: - - pos: 4.5,-4.5 - parent: 8364 - type: Transform -- uid: 5612 - type: TableReinforced - components: - - pos: 4.5,-5.5 - parent: 8364 - type: Transform -- uid: 5613 - type: TableReinforced - components: - - pos: 4.5,-6.5 - parent: 8364 - type: Transform -- uid: 5614 - type: ComputerAlert - components: - - pos: -6.5,-6.5 - parent: 8364 - type: Transform -- uid: 5615 - type: GasPipeStraight - components: - - pos: 27.5,29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5616 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5617 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5618 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5619 - type: AirlockCommandLocked - components: - - name: Briefing - type: MetaData - - pos: -7.5,-10.5 - parent: 8364 - type: Transform -- uid: 5620 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5621 - type: AirlockHeadOfSecurityGlassLocked - components: - - pos: 14.5,36.5 - parent: 8364 - type: Transform -- uid: 5622 - type: ChairOfficeLight - components: - - pos: 70.5,-34.5 - parent: 8364 - type: Transform -- uid: 5623 - type: Multitool - components: - - pos: -1.5571159,-4.59795 - parent: 8364 - type: Transform -- uid: 5624 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -9.5,-16.5 - parent: 8364 - type: Transform -- uid: 5625 - type: AirlockCaptainGlassLocked - components: - - pos: 12.5,-23.5 - parent: 8364 - type: Transform -- uid: 5626 - type: CarpetBlue - components: - - pos: 9.5,-26.5 - parent: 8364 - type: Transform -- uid: 5627 - type: AirlockCaptainGlassLocked - components: - - pos: 12.5,-19.5 - parent: 8364 - type: Transform -- uid: 5628 - type: AirlockMaintCommandLocked - components: - - name: Command Maint - type: MetaData - - pos: -14.5,-19.5 - parent: 8364 - type: Transform -- uid: 5629 - type: WallReinforced - components: - - pos: -13.5,-20.5 - parent: 8364 - type: Transform -- uid: 5630 - type: Poweredlight - components: - - pos: -8.5,-11.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5631 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-19.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5632 - type: AirlockEngineeringGlassLocked - components: - - pos: -3.5,5.5 - parent: 8364 - type: Transform -- uid: 5633 - type: CarpetBlue - components: - - pos: 10.5,-26.5 - parent: 8364 - type: Transform -- uid: 5634 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 8364 - type: Transform -- uid: 5635 - type: ComputerId - components: - - rot: 3.141592653589793 rad - pos: -11.5,-23.5 - parent: 8364 - type: Transform -- uid: 5636 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-8.5 - parent: 8364 - type: Transform -- uid: 5637 - type: TableReinforcedGlass - components: - - pos: 74.5,-33.5 - parent: 8364 - type: Transform -- uid: 5638 - type: ToyIan - components: - - pos: -9.5,-25.5 - parent: 8364 - type: Transform -- uid: 5639 - type: TableReinforcedGlass - components: - - pos: 74.5,-35.5 - parent: 8364 - type: Transform -- uid: 5640 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-8.5 - parent: 8364 - type: Transform -- uid: 5641 - type: CarpetPurple - components: - - pos: 69.5,-35.5 - parent: 8364 - type: Transform -- uid: 5642 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-26.5 - parent: 8364 - type: Transform -- uid: 5643 - type: LockerHeadOfPersonnelFilled - components: - - pos: -11.5,-27.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 5644 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-24.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5645 - type: PottedPlantRandom - components: - - pos: -8.5,-27.5 - parent: 8364 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 5646 - type: WeaponCapacitorRecharger - components: - - pos: -9.5,-27.5 - parent: 8364 - type: Transform - - containers: - WeaponCapacitorCharger-powerCellContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger-slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 5647 - type: AirlockHeadOfPersonnelLocked - components: - - name: Head of Personnel - type: MetaData - - pos: -7.5,-20.5 - parent: 8364 - type: Transform -- uid: 5648 - type: AirlockHeadOfPersonnelLocked - components: - - name: Head of Personnel - type: MetaData - - pos: -7.5,-28.5 - parent: 8364 - type: Transform -- uid: 5649 - type: CarpetPurple - components: - - pos: 69.5,-33.5 - parent: 8364 - type: Transform -- uid: 5650 - type: AirlockEngineeringGlassLocked - components: - - pos: -3.5,2.5 - parent: 8364 - type: Transform -- uid: 5651 - type: AirlockCommandGlassLocked - components: - - pos: -11.5,0.5 - parent: 8364 - type: Transform -- uid: 5652 - type: ExtinguisherCabinetFilled - components: - - pos: -14.5,-17.5 - parent: 8364 - type: Transform - - containers: - cabinetSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - ItemCabinet: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 5653 - type: ExtinguisherCabinetFilled - components: - - pos: 13.5,-17.5 - parent: 8364 - type: Transform - - containers: - cabinetSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - ItemCabinet: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 5654 - type: WallReinforced - components: - - pos: -15.5,3.5 - parent: 8364 - type: Transform -- uid: 5655 - type: TableWood - components: - - pos: 9.5,-13.5 - parent: 8364 - type: Transform -- uid: 5656 - type: CarpetPurple - components: - - pos: 70.5,-33.5 - parent: 8364 - type: Transform -- uid: 5657 - type: TableWood - components: - - pos: 6.5,-15.5 - parent: 8364 - type: Transform -- uid: 5658 - type: CarpetPurple - components: - - pos: 69.5,-34.5 - parent: 8364 - type: Transform -- uid: 5659 - type: TableWood - components: - - pos: 8.5,-15.5 - parent: 8364 - type: Transform -- uid: 5660 - type: TableWood - components: - - pos: 8.5,-16.5 - parent: 8364 - type: Transform -- uid: 5661 - type: TableWood - components: - - pos: 8.5,-17.5 - parent: 8364 - type: Transform -- uid: 5662 - type: TableWood - components: - - pos: 8.5,-22.5 - parent: 8364 - type: Transform -- uid: 5663 - type: TableWood - components: - - pos: 8.5,-21.5 - parent: 8364 - type: Transform -- uid: 5664 - type: WallReinforced - components: - - pos: 11.5,-19.5 - parent: 8364 - type: Transform -- uid: 5665 - type: TableWood - components: - - pos: 12.5,-14.5 - parent: 8364 - type: Transform -- uid: 5666 - type: TableWood - components: - - pos: 12.5,-15.5 - parent: 8364 - type: Transform -- uid: 5667 - type: TableWood - components: - - pos: 12.5,-16.5 - parent: 8364 - type: Transform -- uid: 5668 - type: PottedPlantRandom - components: - - pos: 12.5,-13.5 - parent: 8364 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 5669 - type: PottedPlantRandom - components: - - pos: 12.5,-11.5 - parent: 8364 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 5670 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-12.5 - parent: 8364 - type: Transform -- uid: 5671 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-13.5 - parent: 8364 - type: Transform -- uid: 5672 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 8364 - type: Transform -- uid: 5673 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-13.5 - parent: 8364 - type: Transform -- uid: 5674 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-16.5 - parent: 8364 - type: Transform -- uid: 5675 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-22.5 - parent: 8364 - type: Transform -- uid: 5676 - type: CarpetPurple - components: - - pos: 70.5,-35.5 - parent: 8364 - type: Transform -- uid: 5677 - type: FoodBoxDonut - components: - - pos: 9.5,-12.5 - parent: 8364 - type: Transform -- uid: 5678 - type: ComputerComms - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-16.5 - parent: 8364 - type: Transform -- uid: 5679 - type: LampGold - components: - - pos: 8.514107,-15.335099 - parent: 8364 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 5680 - type: WeaponCapacitorRecharger - components: - - pos: 8.5,-17.5 - parent: 8364 - type: Transform - - containers: - WeaponCapacitorCharger-powerCellContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger-slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 5681 - type: Paper - components: - - pos: 6.2845893,-15.291874 - parent: 8364 - type: Transform -- uid: 5682 - type: Paper - components: - - pos: 6.2533393,-15.276249 - parent: 8364 - type: Transform -- uid: 5683 - type: Paper - components: - - pos: 6.2533393,-15.260624 - parent: 8364 - type: Transform -- uid: 5684 - type: Paper - components: - - pos: 6.2377143,-15.307499 - parent: 8364 - type: Transform -- uid: 5685 - type: Paper - components: - - pos: 6.2533393,-15.307499 - parent: 8364 - type: Transform -- uid: 5686 - type: Pen - components: - - pos: 6.7796197,-15.189568 - parent: 8364 - type: Transform -- uid: 5687 - type: CarpetPurple - components: - - pos: 70.5,-34.5 - parent: 8364 - type: Transform -- uid: 5688 - type: WallReinforced - components: - - pos: -15.5,2.5 - parent: 8364 - type: Transform -- uid: 5689 - type: WallReinforced - components: - - pos: -15.5,1.5 - parent: 8364 - type: Transform -- uid: 5690 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 5.5,-12.5 - parent: 8364 - type: Transform -- uid: 5691 - components: - - type: MetaData - - pos: 5.5,-13.5 - parent: 8364 - type: Transform -- uid: 5692 - type: AirlockCaptainLocked - components: - - name: Captain's Room - type: MetaData - - pos: 7.5,-19.5 - parent: 8364 - type: Transform -- uid: 5693 - type: AirlockCaptainLocked - components: - - name: Captain's Office - type: MetaData - - pos: 6.5,-10.5 - parent: 8364 - type: Transform -- uid: 5694 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-26.5 - parent: 8364 - type: Transform -- uid: 5695 - type: CableApcExtension - components: - - pos: -2.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5696 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-14.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5697 - type: CableApcExtension - components: - - pos: -0.5,-4.5 - parent: 8364 - type: Transform -- uid: 5698 - type: Grille - components: - - pos: 5.5,-27.5 - parent: 8364 - type: Transform -- uid: 5699 - type: PoweredSmallLight - components: - - pos: 10.5,-20.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5700 - type: LampGold - components: - - pos: 8.57457,-21.260563 - parent: 8364 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 5701 - type: WallReinforced - components: - - pos: 1.5,-17.5 - parent: 8364 - type: Transform -- uid: 5702 - type: LockerCaptainFilled - components: - - pos: 6.5,-22.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 5703 - type: BedsheetCaptain - components: - - pos: 6.5,-21.5 - parent: 8364 - type: Transform -- uid: 5704 - type: Bed - components: - - pos: 6.5,-21.5 - parent: 8364 - type: Transform -- uid: 5705 - type: WallReinforced - components: - - pos: -2.5,-28.5 - parent: 8364 - type: Transform -- uid: 5706 - type: SoapNT - components: - - pos: 10.464365,-22.554323 - parent: 8364 - type: Transform -- uid: 5707 - type: ToyRubberDuck - components: - - pos: 10.494166,-22.655447 - parent: 8364 - type: Transform -- uid: 5708 - type: CableApcExtension - components: - - pos: 6.5,-14.5 - parent: 8364 - type: Transform -- uid: 5709 - type: Grille - components: - - pos: 5.5,-26.5 - parent: 8364 - type: Transform -- uid: 5710 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 8364 - type: Transform -- uid: 5711 - type: LampGold - components: - - pos: 10.301499,-25.988682 - parent: 8364 - type: Transform -- uid: 5712 - type: CarpetBlue - components: - - pos: 11.5,-27.5 - parent: 8364 - type: Transform -- uid: 5713 - type: Bookshelf - components: - - pos: 7.5,-24.5 - parent: 8364 - type: Transform -- uid: 5714 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-27.5 - parent: 8364 - type: Transform -- uid: 5715 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-27.5 - parent: 8364 - type: Transform -- uid: 5716 - type: TableWood - components: - - pos: 10.5,-27.5 - parent: 8364 - type: Transform -- uid: 5717 - type: PoweredSmallLight - components: - - pos: 9.5,-24.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5718 - type: TableWood - components: - - pos: 10.5,-26.5 - parent: 8364 - type: Transform -- uid: 5719 - type: Bookshelf - components: - - pos: 6.5,-24.5 - parent: 8364 - type: Transform -- uid: 5720 - type: Bookshelf - components: - - pos: 8.5,-27.5 - parent: 8364 - type: Transform -- uid: 5721 - type: CableMV - components: - - pos: -12.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5722 - type: ComputerSolarControl - components: - - pos: -4.5,-4.5 - parent: 8364 - type: Transform -- uid: 5723 - type: WindoorCommandLocked - components: - - pos: 10.5,-24.5 - parent: 8364 - type: Transform -- uid: 5724 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 8364 - type: Transform -- uid: 5725 - type: PhoneInstrument - components: - - pos: 7.478427,-15.438816 - parent: 8364 - type: Transform -- uid: 5726 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-17.5 - parent: 8364 - type: Transform -- uid: 5727 - type: CableApcExtension - components: - - pos: 4.5,-14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5728 - type: CableMV - components: - - pos: 0.5,-24.5 - parent: 8364 - type: Transform -- uid: 5729 - type: Table - components: - - pos: -0.5,-11.5 - parent: 8364 - type: Transform -- uid: 5730 - type: Table - components: - - pos: 3.5,-14.5 - parent: 8364 - type: Transform -- uid: 5731 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-14.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5732 - type: ReinforcedWindow - components: - - pos: -3.5,-25.5 - parent: 8364 - type: Transform -- uid: 5733 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 3.5,-14.5 - parent: 8364 - type: Transform -- uid: 5734 - type: CableMV - components: - - pos: 4.5,-14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5735 - type: WallReinforced - components: - - pos: -3.5,-15.5 - parent: 8364 - type: Transform -- uid: 5736 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-14.5 - parent: 8364 - type: Transform -- uid: 5737 - type: HighSecCaptainLocked - components: - - name: Captain Chunnel - type: MetaData - - pos: -0.5,-17.5 - parent: 8364 - type: Transform -- uid: 5738 - type: Grille - components: - - pos: 2.5,-20.5 - parent: 8364 - type: Transform -- uid: 5739 - type: CableApcExtension - components: - - pos: -2.5,-16.5 - parent: 8364 - type: Transform -- uid: 5740 - type: WindowReinforcedDirectional - components: - - pos: 3.5,-14.5 - parent: 8364 - type: Transform -- uid: 5741 - type: Table - components: - - pos: -13.5,-21.5 - parent: 8364 - type: Transform -- uid: 5742 - type: PoweredSmallLight - components: - - pos: -13.5,-21.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5743 - type: Paper - components: - - pos: -13.5,-21.5 - parent: 8364 - type: Transform -- uid: 5744 - type: Paper - components: - - pos: -13.5,-21.5 - parent: 8364 - type: Transform -- uid: 5745 - type: Paper - components: - - pos: -13.5,-21.5 - parent: 8364 - type: Transform -- uid: 5746 - type: Paper - components: - - pos: -13.5,-21.5 - parent: 8364 - type: Transform -- uid: 5747 - type: Paper - components: - - pos: -13.5,-21.5 - parent: 8364 - type: Transform -- uid: 5748 - type: Poweredlight - components: - - pos: 0.5,-18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5749 - type: SignKiddiePlaque - components: - - pos: 4.5,-12.5 - parent: 8364 - type: Transform -- uid: 5750 - type: CableApcExtension - components: - - pos: -0.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5751 - type: CableApcExtension - components: - - pos: -3.5,-16.5 - parent: 8364 - type: Transform -- uid: 5752 - type: CableHV - components: - - pos: -13.5,-12.5 - parent: 8364 - type: Transform -- uid: 5753 - type: FirelockGlass - components: - - pos: -14.5,-22.5 - parent: 8364 - type: Transform -- uid: 5754 - type: FirelockGlass - components: - - pos: -12.5,-22.5 - parent: 8364 - type: Transform -- uid: 5755 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-14.5 - parent: 8364 - type: Transform -- uid: 5756 - type: WallReinforced - components: - - pos: -3.5,-26.5 - parent: 8364 - type: Transform -- uid: 5757 - type: PoweredSmallLight - components: - - pos: -0.5,-16.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5758 - type: TableReinforced - components: - - pos: -1.5,-4.5 - parent: 8364 - type: Transform -- uid: 5759 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-14.5 - parent: 8364 - type: Transform -- uid: 5760 - type: TableReinforced - components: - - pos: -1.5,-5.5 - parent: 8364 - type: Transform -- uid: 5761 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 - parent: 8364 - type: Transform -- uid: 5762 - type: CableApcExtension - components: - - pos: -0.5,-7.5 - parent: 8364 - type: Transform -- uid: 5763 - type: CableMV - components: - - pos: -1.5,-24.5 - parent: 8364 - type: Transform -- uid: 5764 - type: WallReinforced - components: - - pos: 0.5,-17.5 - parent: 8364 - type: Transform -- uid: 5765 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-14.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5766 - type: CableHV - components: - - pos: 0.5,-25.5 - parent: 8364 - type: Transform -- uid: 5767 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5768 - type: ReinforcedWindow - components: - - pos: -2.5,-23.5 - parent: 8364 - type: Transform -- uid: 5769 - type: Grille - components: - - pos: 3.5,-17.5 - parent: 8364 - type: Transform -- uid: 5770 - type: WallReinforced - components: - - pos: -3.5,-17.5 - parent: 8364 - type: Transform -- uid: 5771 - type: CableHV - components: - - pos: -0.5,-25.5 - parent: 8364 - type: Transform -- uid: 5772 - type: CableHV - components: - - pos: -0.5,-26.5 - parent: 8364 - type: Transform -- uid: 5773 - type: TableWood - components: - - pos: -11.5,-21.5 - parent: 8364 - type: Transform -- uid: 5774 - type: CableHV - components: - - pos: -0.5,-27.5 - parent: 8364 - type: Transform -- uid: 5775 - type: PoweredSmallLight - components: - - pos: 6.5,-20.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5776 - type: PosterLegitLoveIan - components: - - pos: -10.5,-28.5 - parent: 8364 - type: Transform -- uid: 5777 - type: CableHV - components: - - pos: -0.5,-28.5 - parent: 8364 - type: Transform -- uid: 5778 - type: CableHV - components: - - pos: -4.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5779 - type: CableHV - components: - - pos: 49.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5780 - type: CableHV - components: - - pos: -5.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5781 - type: CableMV - components: - - pos: -0.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5782 - type: FireAxeCabinetFilled - components: - - rot: 3.141592653589793 rad - pos: 2.5,-9.5 - parent: 8364 - type: Transform -- uid: 5783 - type: IntercomMedical - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-42.5 - parent: 8364 - type: Transform -- uid: 5784 - type: CableHV - components: - - pos: -13.5,-17.5 - parent: 8364 - type: Transform -- uid: 5785 - type: WallReinforced - components: - - pos: 3.5,-9.5 - parent: 8364 - type: Transform -- uid: 5786 - type: CableHV - components: - - pos: -13.5,-16.5 - parent: 8364 - type: Transform -- uid: 5787 - type: CableHV - components: - - pos: 8.5,-60.5 - parent: 8364 - type: Transform -- uid: 5788 - type: CableMV - components: - - pos: -28.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5789 - type: CableMV - components: - - pos: -0.5,-14.5 - parent: 8364 - type: Transform -- uid: 5790 - type: CableHV - components: - - pos: -18.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5791 - type: WarpPoint - components: - - pos: -0.5,-7.5 - parent: 8364 - type: Transform - - location: bridge - type: WarpPoint -- uid: 5792 - type: CableHV - components: - - pos: 8.5,-61.5 - parent: 8364 - type: Transform -- uid: 5793 - type: CableHV - components: - - pos: 8.5,-62.5 - parent: 8364 - type: Transform -- uid: 5794 - type: CableHV - components: - - pos: 8.5,-63.5 - parent: 8364 - type: Transform -- uid: 5795 - type: BoxHandcuff - components: - - pos: 15.418736,30.571737 - parent: 8364 - type: Transform -- uid: 5796 - type: CableHV - components: - - pos: 8.5,-65.5 - parent: 8364 - type: Transform -- uid: 5797 - type: WallReinforced - components: - - pos: -2.5,-26.5 - parent: 8364 - type: Transform -- uid: 5798 - type: CableHV - components: - - pos: 8.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5799 - type: CableHV - components: - - pos: 7.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5800 - type: CableHV - components: - - pos: 6.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5801 - type: CableHV - components: - - pos: -0.5,-41.5 - parent: 8364 - type: Transform -- uid: 5802 - type: CableHV - components: - - pos: -0.5,-40.5 - parent: 8364 - type: Transform -- uid: 5803 - type: CableHV - components: - - pos: -0.5,-39.5 - parent: 8364 - type: Transform -- uid: 5804 - type: CableHV - components: - - pos: 0.5,-56.5 - parent: 8364 - type: Transform -- uid: 5805 - type: CableHV - components: - - pos: 1.5,-56.5 - parent: 8364 - type: Transform -- uid: 5806 - type: CableHV - components: - - pos: 2.5,-56.5 - parent: 8364 - type: Transform -- uid: 5807 - type: CableHV - components: - - pos: 3.5,-56.5 - parent: 8364 - type: Transform -- uid: 5808 - type: CableHV - components: - - pos: 4.5,-56.5 - parent: 8364 - type: Transform -- uid: 5809 - type: CableHV - components: - - pos: 5.5,-56.5 - parent: 8364 - type: Transform -- uid: 5810 - type: CableHV - components: - - pos: 6.5,-56.5 - parent: 8364 - type: Transform -- uid: 5811 - type: CableHV - components: - - pos: 7.5,-56.5 - parent: 8364 - type: Transform -- uid: 5812 - type: CableHV - components: - - pos: 8.5,-56.5 - parent: 8364 - type: Transform -- uid: 5813 - type: CableHV - components: - - pos: 8.5,-57.5 - parent: 8364 - type: Transform -- uid: 5814 - type: CableHV - components: - - pos: 8.5,-58.5 - parent: 8364 - type: Transform -- uid: 5815 - type: CableHV - components: - - pos: 8.5,-59.5 - parent: 8364 - type: Transform -- uid: 5816 - type: CableHV - components: - - pos: -0.5,-42.5 - parent: 8364 - type: Transform -- uid: 5817 - type: CableHV - components: - - pos: -0.5,-43.5 - parent: 8364 - type: Transform -- uid: 5818 - type: CableHV - components: - - pos: -0.5,-44.5 - parent: 8364 - type: Transform -- uid: 5819 - type: CableHV - components: - - pos: -0.5,-45.5 - parent: 8364 - type: Transform -- uid: 5820 - type: CableHV - components: - - pos: -0.5,-46.5 - parent: 8364 - type: Transform -- uid: 5821 - type: CableHV - components: - - pos: -0.5,-47.5 - parent: 8364 - type: Transform -- uid: 5822 - type: CableHV - components: - - pos: -0.5,-48.5 - parent: 8364 - type: Transform -- uid: 5823 - type: CableHV - components: - - pos: -0.5,-49.5 - parent: 8364 - type: Transform -- uid: 5824 - type: CableHV - components: - - pos: -0.5,-50.5 - parent: 8364 - type: Transform -- uid: 5825 - type: CableHV - components: - - pos: -2.5,-59.5 - parent: 8364 - type: Transform -- uid: 5826 - type: CableHV - components: - - pos: -2.5,-58.5 - parent: 8364 - type: Transform -- uid: 5827 - type: CableHV - components: - - pos: -2.5,-57.5 - parent: 8364 - type: Transform -- uid: 5828 - type: CableHV - components: - - pos: -1.5,-57.5 - parent: 8364 - type: Transform -- uid: 5829 - type: CableHV - components: - - pos: -0.5,-57.5 - parent: 8364 - type: Transform -- uid: 5830 - type: CableHV - components: - - pos: -0.5,-56.5 - parent: 8364 - type: Transform -- uid: 5831 - type: CableHV - components: - - pos: -0.5,-55.5 - parent: 8364 - type: Transform -- uid: 5832 - type: CableHV - components: - - pos: -0.5,-54.5 - parent: 8364 - type: Transform -- uid: 5833 - type: CableHV - components: - - pos: -0.5,-53.5 - parent: 8364 - type: Transform -- uid: 5834 - type: CableHV - components: - - pos: -0.5,-52.5 - parent: 8364 - type: Transform -- uid: 5835 - type: CableHV - components: - - pos: -0.5,-51.5 - parent: 8364 - type: Transform -- uid: 5836 - type: CableHV - components: - - pos: -16.5,-17.5 - parent: 8364 - type: Transform -- uid: 5837 - type: CableHV - components: - - pos: -16.5,-18.5 - parent: 8364 - type: Transform -- uid: 5838 - type: CableHV - components: - - pos: -16.5,-19.5 - parent: 8364 - type: Transform -- uid: 5839 - type: CableHV - components: - - pos: -15.5,-19.5 - parent: 8364 - type: Transform -- uid: 5840 - type: CableHV - components: - - pos: -15.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5841 - type: CableHV - components: - - pos: -14.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5842 - type: CableHV - components: - - pos: -13.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5843 - type: CableHV - components: - - pos: -12.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5844 - type: CableHV - components: - - pos: -11.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5845 - type: CableHV - components: - - pos: -10.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5846 - type: CableHV - components: - - pos: -9.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5847 - type: CableHV - components: - - pos: -8.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5848 - type: CableHV - components: - - pos: -7.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5849 - type: CableHV - components: - - pos: -6.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5850 - type: CableHV - components: - - pos: -5.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5851 - type: CableHV - components: - - pos: -4.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5852 - type: CableHV - components: - - pos: -3.5,-59.5 - parent: 8364 - type: Transform -- uid: 5853 - type: CableHV - components: - - pos: -16.5,-16.5 - parent: 8364 - type: Transform -- uid: 5854 - type: CableHV - components: - - pos: -16.5,-15.5 - parent: 8364 - type: Transform -- uid: 5855 - type: CableHV - components: - - pos: -19.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5856 - type: CableHV - components: - - pos: -18.5,-12.5 - parent: 8364 - type: Transform -- uid: 5857 - type: CableHV - components: - - pos: -16.5,-14.5 - parent: 8364 - type: Transform -- uid: 5858 - type: CableHV - components: - - pos: -17.5,-12.5 - parent: 8364 - type: Transform -- uid: 5859 - type: CableHV - components: - - pos: -16.5,-12.5 - parent: 8364 - type: Transform -- uid: 5860 - type: CableHV - components: - - pos: -16.5,-13.5 - parent: 8364 - type: Transform -- uid: 5861 - type: CableMV - components: - - pos: -0.5,-24.5 - parent: 8364 - type: Transform -- uid: 5862 - type: CarpetSBlue - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-16.5 - parent: 8364 - type: Transform -- uid: 5863 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 8364 - type: Transform -- uid: 5864 - type: WallReinforced - components: - - pos: -4.5,-15.5 - parent: 8364 - type: Transform -- uid: 5865 - type: CableApcExtension - components: - - pos: -2.5,-24.5 - parent: 8364 - type: Transform -- uid: 5866 - type: CableMV - components: - - pos: -2.5,-24.5 - parent: 8364 - type: Transform -- uid: 5867 - type: TableWood - components: - - pos: -9.5,-27.5 - parent: 8364 - type: Transform -- uid: 5868 - type: MaterialCloth - components: - - pos: -9.5366,-26.145159 - parent: 8364 - type: Transform -- uid: 5869 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 8364 - type: Transform -- uid: 5870 - type: UniformPrinter - components: - - pos: -11.5,-24.5 - parent: 8364 - type: Transform - - materialWhiteList: - - Cloth - - Durathread - type: MaterialStorage -- uid: 5871 - type: SignGravity - components: - - pos: -1.5,-28.5 - parent: 8364 - type: Transform -- uid: 5872 - type: SignBridge - components: - - pos: -12.5,-6.5 - parent: 8364 - type: Transform -- uid: 5873 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-16.5 - parent: 8364 - type: Transform -- uid: 5874 - type: CableMV - components: - - pos: -3.5,-24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5875 - type: AirlockCaptainLocked - components: - - name: Captain's Bathroom - type: MetaData - - pos: 9.5,-20.5 - parent: 8364 - type: Transform -- uid: 5876 - type: CableApcExtension - components: - - pos: -1.5,-24.5 - parent: 8364 - type: Transform -- uid: 5877 - type: filingCabinet - components: - - pos: 12.5,-12.5 - parent: 8364 - type: Transform -- uid: 5878 - type: AirlockCaptainLocked - components: - - name: Captain's Study - type: MetaData - - pos: 13.5,-25.5 - parent: 8364 - type: Transform -- uid: 5879 - type: FirelockGlass - components: - - pos: 28.5,-28.5 - parent: 8364 - type: Transform -- uid: 5880 - type: PlushieRGBee - components: - - pos: -21.53196,-58.55052 - parent: 8364 - type: Transform -- uid: 5881 - type: WallReinforced - components: - - pos: -2.5,-27.5 - parent: 8364 - type: Transform -- uid: 5882 - type: Grille - components: - - pos: 1.5,-23.5 - parent: 8364 - type: Transform -- uid: 5883 - type: Grille - components: - - pos: 0.5,-23.5 - parent: 8364 - type: Transform -- uid: 5884 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 8364 - type: Transform -- uid: 5885 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-8.5 - parent: 8364 - type: Transform -- uid: 5886 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 8364 - type: Transform - - visible: False - type: Sprite -- uid: 5887 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-10.5 - parent: 8364 - type: Transform -- uid: 5888 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-8.5 - parent: 8364 - type: Transform -- uid: 5889 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 8364 - type: Transform -- uid: 5890 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 8364 - type: Transform -- uid: 5891 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 4.5,-9.5 - parent: 8364 - type: Transform -- uid: 5892 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-8.5 - parent: 8364 - type: Transform -- uid: 5893 - type: SubstationBasic - components: - - name: Command Substation - type: MetaData - - pos: -10.5,-19.5 - parent: 8364 - type: Transform -- uid: 5894 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 8364 - type: Transform -- uid: 5895 - type: CableApcExtension - components: - - pos: -10.5,-26.5 - parent: 8364 - type: Transform -- uid: 5896 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-13.5 - parent: 8364 - type: Transform -- uid: 5897 - type: CableApcExtension - components: - - pos: -0.5,-6.5 - parent: 8364 - type: Transform -- uid: 5898 - type: BlastDoorOpen - components: - - pos: -10.5,-8.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11625 - type: SignalReceiver -- uid: 5899 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -7.5,-13.5 - parent: 8364 - type: Transform -- uid: 5900 - type: DisposalBend - components: - - pos: 6.5,-8.5 - parent: 8364 - type: Transform -- uid: 5901 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 8364 - type: Transform -- uid: 5902 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 8364 - type: Transform -- uid: 5903 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -7.5,-12.5 - parent: 8364 - type: Transform -- uid: 5904 - type: CableApcExtension - components: - - pos: -6.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5905 - type: CableApcExtension - components: - - pos: -7.5,-22.5 - parent: 8364 - type: Transform -- uid: 5906 - type: CableApcExtension - components: - - pos: -8.5,-22.5 - parent: 8364 - type: Transform -- uid: 5907 - type: CableApcExtension - components: - - pos: -9.5,-22.5 - parent: 8364 - type: Transform -- uid: 5908 - type: DisposalUnit - components: - - pos: -6.5,-11.5 - parent: 8364 - type: Transform -- uid: 5909 - type: DisposalUnit - components: - - pos: -10.5,-21.5 - parent: 8364 - type: Transform -- uid: 5910 - type: DisposalUnit - components: - - pos: 4.5,-9.5 - parent: 8364 - type: Transform -- uid: 5911 - type: BlastDoorOpen - components: - - pos: -10.5,-9.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11625 - type: SignalReceiver -- uid: 5912 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 25.5,6.5 - parent: 8364 - type: Transform -- uid: 5913 - type: CableHV - components: - - pos: -7.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5914 - type: AirlockEngineeringGlassLocked - components: - - name: Particle Accelerator Room - type: MetaData - - pos: 6.5,-74.5 - parent: 8364 - type: Transform -- uid: 5915 - type: CableHV - components: - - pos: -9.5,-68.5 - parent: 8364 - type: Transform -- uid: 5916 - type: CableHV - components: - - pos: -9.5,-69.5 - parent: 8364 - type: Transform -- uid: 5917 - type: CableHV - components: - - pos: -10.5,-69.5 - parent: 8364 - type: Transform -- uid: 5918 - type: CableHV - components: - - pos: -11.5,-69.5 - parent: 8364 - type: Transform -- uid: 5919 - type: CableHV - components: - - pos: -12.5,-69.5 - parent: 8364 - type: Transform -- uid: 5920 - type: CableHV - components: - - pos: -13.5,-69.5 - parent: 8364 - type: Transform -- uid: 5921 - type: CableHV - components: - - pos: 15.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5922 - type: CableHV - components: - - pos: -26.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5923 - type: CableHV - components: - - pos: -25.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5924 - type: CableHV - components: - - pos: -24.5,-12.5 - parent: 8364 - type: Transform -- uid: 5925 - type: CableHV - components: - - pos: -23.5,-12.5 - parent: 8364 - type: Transform -- uid: 5926 - type: CableHV - components: - - pos: -22.5,-12.5 - parent: 8364 - type: Transform -- uid: 5927 - type: CableHV - components: - - pos: -21.5,-12.5 - parent: 8364 - type: Transform -- uid: 5928 - type: CableHV - components: - - pos: -20.5,-12.5 - parent: 8364 - type: Transform -- uid: 5929 - type: CableHV - components: - - pos: -26.5,-11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5930 - type: CableHV - components: - - pos: -26.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5931 - type: CableHV - components: - - pos: -26.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5932 - type: CableHV - components: - - pos: -26.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5933 - type: CableHV - components: - - pos: -27.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5934 - type: CableHV - components: - - pos: -28.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5935 - type: CableHV - components: - - pos: -29.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5936 - type: CableHV - components: - - pos: -0.5,-29.5 - parent: 8364 - type: Transform -- uid: 5937 - type: CableHV - components: - - pos: -0.5,-30.5 - parent: 8364 - type: Transform -- uid: 5938 - type: CableHV - components: - - pos: 14.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5939 - type: DisposalRouterFlipped - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-30.5 - parent: 8364 - type: Transform - - tags: - - hop - type: DisposalRouter -- uid: 5940 - type: CableHV - components: - - pos: 1.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5941 - type: CableHV - components: - - pos: -14.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5942 - type: CableHV - components: - - pos: -13.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5943 - type: CableHV - components: - - pos: -12.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5944 - type: CableHV - components: - - pos: -11.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5945 - type: CableHV - components: - - pos: -10.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5946 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,4.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5947 - type: AirlockTheatreLocked - components: - - pos: 23.5,5.5 - parent: 8364 - type: Transform -- uid: 5948 - type: CarpetSBlue - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-16.5 - parent: 8364 - type: Transform -- uid: 5949 - type: CableMV - components: - - pos: -13.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5950 - type: CableMV - components: - - pos: -10.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5951 - type: CableMV - components: - - pos: -13.5,-17.5 - parent: 8364 - type: Transform -- uid: 5952 - type: CableMV - components: - - pos: -13.5,-16.5 - parent: 8364 - type: Transform -- uid: 5953 - type: CableMV - components: - - pos: -13.5,-15.5 - parent: 8364 - type: Transform -- uid: 5954 - type: CableMV - components: - - pos: -12.5,-15.5 - parent: 8364 - type: Transform -- uid: 5955 - type: CableMV - components: - - pos: -11.5,-15.5 - parent: 8364 - type: Transform -- uid: 5956 - type: CableMV - components: - - pos: -10.5,-15.5 - parent: 8364 - type: Transform -- uid: 5957 - type: CableMV - components: - - pos: -9.5,-15.5 - parent: 8364 - type: Transform -- uid: 5958 - type: CableMV - components: - - pos: -8.5,-15.5 - parent: 8364 - type: Transform -- uid: 5959 - type: CableMV - components: - - pos: -7.5,-15.5 - parent: 8364 - type: Transform -- uid: 5960 - type: CableMV - components: - - pos: -6.5,-15.5 - parent: 8364 - type: Transform -- uid: 5961 - type: CableMV - components: - - pos: -5.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5962 - type: CableApcExtension - components: - - pos: -5.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5963 - type: CableApcExtension - components: - - pos: -6.5,-15.5 - parent: 8364 - type: Transform -- uid: 5964 - type: CableApcExtension - components: - - pos: -7.5,-15.5 - parent: 8364 - type: Transform -- uid: 5965 - type: CableApcExtension - components: - - pos: -8.5,-15.5 - parent: 8364 - type: Transform -- uid: 5966 - type: CableApcExtension - components: - - pos: -8.5,-18.5 - parent: 8364 - type: Transform -- uid: 5967 - type: CableApcExtension - components: - - pos: -8.5,-14.5 - parent: 8364 - type: Transform -- uid: 5968 - type: CableApcExtension - components: - - pos: -8.5,-12.5 - parent: 8364 - type: Transform -- uid: 5969 - type: CableApcExtension - components: - - pos: -8.5,-13.5 - parent: 8364 - type: Transform -- uid: 5970 - type: CableApcExtension - components: - - pos: -10.5,-12.5 - parent: 8364 - type: Transform -- uid: 5971 - type: CableApcExtension - components: - - pos: -11.5,-12.5 - parent: 8364 - type: Transform -- uid: 5972 - type: CableApcExtension - components: - - pos: -9.5,-12.5 - parent: 8364 - type: Transform -- uid: 5973 - type: CableApcExtension - components: - - pos: -12.5,-12.5 - parent: 8364 - type: Transform -- uid: 5974 - type: CableApcExtension - components: - - pos: -8.5,-17.5 - parent: 8364 - type: Transform -- uid: 5975 - type: CableApcExtension - components: - - pos: -8.5,-16.5 - parent: 8364 - type: Transform -- uid: 5976 - type: CableMV - components: - - pos: -7.5,-14.5 - parent: 8364 - type: Transform -- uid: 5977 - type: CableMV - components: - - pos: -7.5,-13.5 - parent: 8364 - type: Transform -- uid: 5978 - type: CableMV - components: - - pos: -7.5,-12.5 - parent: 8364 - type: Transform -- uid: 5979 - type: CableMV - components: - - pos: -7.5,-11.5 - parent: 8364 - type: Transform -- uid: 5980 - type: CableMV - components: - - pos: -7.5,-10.5 - parent: 8364 - type: Transform -- uid: 5981 - type: CableMV - components: - - pos: -7.5,-9.5 - parent: 8364 - type: Transform -- uid: 5982 - type: CableMV - components: - - pos: -7.5,-8.5 - parent: 8364 - type: Transform -- uid: 5983 - type: CableMV - components: - - pos: -6.5,-8.5 - parent: 8364 - type: Transform -- uid: 5984 - type: CableMV - components: - - pos: -5.5,-8.5 - parent: 8364 - type: Transform -- uid: 5985 - type: CableMV - components: - - pos: -4.5,-8.5 - parent: 8364 - type: Transform -- uid: 5986 - type: CableMV - components: - - pos: -3.5,-8.5 - parent: 8364 - type: Transform -- uid: 5987 - type: CableMV - components: - - pos: -2.5,-8.5 - parent: 8364 - type: Transform -- uid: 5988 - type: GasPipeStraight - components: - - pos: 0.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5989 - type: CableMV - components: - - pos: -0.5,-8.5 - parent: 8364 - type: Transform -- uid: 5990 - type: CableMV - components: - - pos: 0.5,-8.5 - parent: 8364 - type: Transform -- uid: 5991 - type: CableMV - components: - - pos: 1.5,-8.5 - parent: 8364 - type: Transform -- uid: 5992 - type: CableMV - components: - - pos: 2.5,-8.5 - parent: 8364 - type: Transform -- uid: 5993 - type: CableMV - components: - - pos: 3.5,-8.5 - parent: 8364 - type: Transform -- uid: 5994 - type: CableMV - components: - - pos: 3.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5995 - type: CableMV - components: - - pos: -7.5,-16.5 - parent: 8364 - type: Transform -- uid: 5996 - type: CableMV - components: - - pos: -7.5,-17.5 - parent: 8364 - type: Transform -- uid: 5997 - type: CableMV - components: - - pos: -7.5,-18.5 - parent: 8364 - type: Transform -- uid: 5998 - type: CableMV - components: - - pos: -7.5,-19.5 - parent: 8364 - type: Transform -- uid: 5999 - type: CableMV - components: - - pos: -7.5,-20.5 - parent: 8364 - type: Transform -- uid: 6000 - type: CableMV - components: - - pos: -7.5,-21.5 - parent: 8364 - type: Transform -- uid: 6001 - type: CableMV - components: - - pos: -7.5,-22.5 - parent: 8364 - type: Transform -- uid: 6002 - type: CableMV - components: - - pos: -6.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6003 - type: CableMV - components: - - pos: 4.5,-8.5 - parent: 8364 - type: Transform -- uid: 6004 - type: CableMV - components: - - pos: 5.5,-8.5 - parent: 8364 - type: Transform -- uid: 6005 - type: CableMV - components: - - pos: 6.5,-8.5 - parent: 8364 - type: Transform -- uid: 6006 - type: CableMV - components: - - pos: 6.5,-9.5 - parent: 8364 - type: Transform -- uid: 6007 - type: CableMV - components: - - pos: 6.5,-10.5 - parent: 8364 - type: Transform -- uid: 6008 - type: CableMV - components: - - pos: 6.5,-11.5 - parent: 8364 - type: Transform -- uid: 6009 - type: CableMV - components: - - pos: 6.5,-12.5 - parent: 8364 - type: Transform -- uid: 6010 - type: CableMV - components: - - pos: 6.5,-13.5 - parent: 8364 - type: Transform -- uid: 6011 - type: CableMV - components: - - pos: 6.5,-14.5 - parent: 8364 - type: Transform -- uid: 6012 - type: CableMV - components: - - pos: 6.5,-15.5 - parent: 8364 - type: Transform -- uid: 6013 - type: CableMV - components: - - pos: 6.5,-16.5 - parent: 8364 - type: Transform -- uid: 6014 - type: CableMV - components: - - pos: 5.5,-16.5 - parent: 8364 - type: Transform -- uid: 6015 - type: WallReinforced - components: - - pos: 4.5,-14.5 - parent: 8364 - type: Transform -- uid: 6016 - type: CableMV - components: - - pos: 7.5,-16.5 - parent: 8364 - type: Transform -- uid: 6017 - type: CableMV - components: - - pos: 7.5,-17.5 - parent: 8364 - type: Transform -- uid: 6018 - type: CableMV - components: - - pos: 7.5,-18.5 - parent: 8364 - type: Transform -- uid: 6019 - type: CableMV - components: - - pos: 7.5,-19.5 - parent: 8364 - type: Transform -- uid: 6020 - type: CableMV - components: - - pos: 7.5,-20.5 - parent: 8364 - type: Transform -- uid: 6021 - type: CableMV - components: - - pos: 7.5,-21.5 - parent: 8364 - type: Transform -- uid: 6022 - type: CableMV - components: - - pos: 8.5,-21.5 - parent: 8364 - type: Transform -- uid: 6023 - type: CableMV - components: - - pos: 9.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6024 - type: CableApcExtension - components: - - pos: 9.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6025 - type: CableApcExtension - components: - - pos: 8.5,-21.5 - parent: 8364 - type: Transform -- uid: 6026 - type: WallReinforced - components: - - pos: -2.5,-15.5 - parent: 8364 - type: Transform -- uid: 6027 - type: CableApcExtension - components: - - pos: 5.5,-16.5 - parent: 8364 - type: Transform -- uid: 6028 - type: CableApcExtension - components: - - pos: 6.5,-16.5 - parent: 8364 - type: Transform -- uid: 6029 - type: CableApcExtension - components: - - pos: 7.5,-16.5 - parent: 8364 - type: Transform -- uid: 6030 - type: CableApcExtension - components: - - pos: 7.5,-15.5 - parent: 8364 - type: Transform -- uid: 6031 - type: CableApcExtension - components: - - pos: 7.5,-14.5 - parent: 8364 - type: Transform -- uid: 6032 - type: CableApcExtension - components: - - pos: 7.5,-13.5 - parent: 8364 - type: Transform -- uid: 6033 - type: CableApcExtension - components: - - pos: 7.5,-12.5 - parent: 8364 - type: Transform -- uid: 6034 - type: CableApcExtension - components: - - pos: 8.5,-12.5 - parent: 8364 - type: Transform -- uid: 6035 - type: CableApcExtension - components: - - pos: 9.5,-12.5 - parent: 8364 - type: Transform -- uid: 6036 - type: CableApcExtension - components: - - pos: 10.5,-12.5 - parent: 8364 - type: Transform -- uid: 6037 - type: CableApcExtension - components: - - pos: 10.5,-13.5 - parent: 8364 - type: Transform -- uid: 6038 - type: CableApcExtension - components: - - pos: 10.5,-14.5 - parent: 8364 - type: Transform -- uid: 6039 - type: CableApcExtension - components: - - pos: 10.5,-15.5 - parent: 8364 - type: Transform -- uid: 6040 - type: CableApcExtension - components: - - pos: 10.5,-17.5 - parent: 8364 - type: Transform -- uid: 6041 - type: CableApcExtension - components: - - pos: 10.5,-16.5 - parent: 8364 - type: Transform -- uid: 6042 - type: CableMV - components: - - pos: 8.5,-18.5 - parent: 8364 - type: Transform -- uid: 6043 - type: CableMV - components: - - pos: 9.5,-18.5 - parent: 8364 - type: Transform -- uid: 6044 - type: CableMV - components: - - pos: 10.5,-18.5 - parent: 8364 - type: Transform -- uid: 6045 - type: CableMV - components: - - pos: 11.5,-18.5 - parent: 8364 - type: Transform -- uid: 6046 - type: CableMV - components: - - pos: 12.5,-18.5 - parent: 8364 - type: Transform -- uid: 6047 - type: CableMV - components: - - pos: 12.5,-19.5 - parent: 8364 - type: Transform -- uid: 6048 - type: CableMV - components: - - pos: 12.5,-20.5 - parent: 8364 - type: Transform -- uid: 6049 - type: CableMV - components: - - pos: 12.5,-21.5 - parent: 8364 - type: Transform -- uid: 6050 - type: CableMV - components: - - pos: 12.5,-22.5 - parent: 8364 - type: Transform -- uid: 6051 - type: CableMV - components: - - pos: 12.5,-23.5 - parent: 8364 - type: Transform -- uid: 6052 - type: CableMV - components: - - pos: 12.5,-24.5 - parent: 8364 - type: Transform -- uid: 6053 - type: CableMV - components: - - pos: 12.5,-25.5 - parent: 8364 - type: Transform -- uid: 6054 - type: CableMV - components: - - pos: 11.5,-25.5 - parent: 8364 - type: Transform -- uid: 6055 - type: CableMV - components: - - pos: 10.5,-25.5 - parent: 8364 - type: Transform -- uid: 6056 - type: CableMV - components: - - pos: 9.5,-25.5 - parent: 8364 - type: Transform -- uid: 6057 - type: CableMV - components: - - pos: 8.5,-25.5 - parent: 8364 - type: Transform -- uid: 6058 - type: CableMV - components: - - pos: 7.5,-25.5 - parent: 8364 - type: Transform -- uid: 6059 - type: CableMV - components: - - pos: 6.5,-25.5 - parent: 8364 - type: Transform -- uid: 6060 - type: CableMV - components: - - pos: 5.5,-25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6061 - type: CableApcExtension - components: - - pos: 5.5,-25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6062 - type: CableApcExtension - components: - - pos: 6.5,-25.5 - parent: 8364 - type: Transform -- uid: 6063 - type: CableApcExtension - components: - - pos: 7.5,-25.5 - parent: 8364 - type: Transform -- uid: 6064 - type: CableApcExtension - components: - - pos: 8.5,-25.5 - parent: 8364 - type: Transform -- uid: 6065 - type: CableApcExtension - components: - - pos: 9.5,-25.5 - parent: 8364 - type: Transform -- uid: 6066 - type: CableApcExtension - components: - - pos: 10.5,-25.5 - parent: 8364 - type: Transform -- uid: 6067 - type: CableApcExtension - components: - - pos: 11.5,-25.5 - parent: 8364 - type: Transform -- uid: 6068 - type: CableApcExtension - components: - - pos: 3.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6069 - type: CableApcExtension - components: - - pos: 3.5,-8.5 - parent: 8364 - type: Transform -- uid: 6070 - type: CableApcExtension - components: - - pos: 3.5,-7.5 - parent: 8364 - type: Transform -- uid: 6071 - type: CableApcExtension - components: - - pos: 3.5,-6.5 - parent: 8364 - type: Transform -- uid: 6072 - type: CableApcExtension - components: - - pos: -4.5,-6.5 - parent: 8364 - type: Transform -- uid: 6073 - type: CableApcExtension - components: - - pos: -4.5,-7.5 - parent: 8364 - type: Transform -- uid: 6074 - type: CableApcExtension - components: - - pos: -9.5,-8.5 - parent: 8364 - type: Transform -- uid: 6075 - type: CableApcExtension - components: - - pos: -10.5,-8.5 - parent: 8364 - type: Transform -- uid: 6076 - type: CableApcExtension - components: - - pos: -12.5,-13.5 - parent: 8364 - type: Transform -- uid: 6077 - type: CableApcExtension - components: - - pos: -10.5,-22.5 - parent: 8364 - type: Transform -- uid: 6078 - type: CableApcExtension - components: - - pos: 9.5,-8.5 - parent: 8364 - type: Transform -- uid: 6079 - type: CableApcExtension - components: - - pos: -8.5,-8.5 - parent: 8364 - type: Transform -- uid: 6080 - type: CableApcExtension - components: - - pos: 8.5,-8.5 - parent: 8364 - type: Transform -- uid: 6081 - type: CableApcExtension - components: - - pos: -4.5,-8.5 - parent: 8364 - type: Transform -- uid: 6082 - type: CableApcExtension - components: - - pos: -5.5,-8.5 - parent: 8364 - type: Transform -- uid: 6083 - type: CableApcExtension - components: - - pos: -6.5,-8.5 - parent: 8364 - type: Transform -- uid: 6084 - type: CableApcExtension - components: - - pos: -7.5,-8.5 - parent: 8364 - type: Transform -- uid: 6085 - type: WallReinforced - components: - - pos: 4.5,-19.5 - parent: 8364 - type: Transform -- uid: 6086 - type: BlastDoorOpen - components: - - pos: -10.5,-7.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11625 - type: SignalReceiver -- uid: 6087 - type: BlastDoorOpen - components: - - pos: 9.5,-7.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11628 - type: SignalReceiver -- uid: 6088 - type: CableApcExtension - components: - - pos: -0.5,-12.5 - parent: 8364 - type: Transform -- uid: 6089 - type: CableApcExtension - components: - - pos: -1.5,-12.5 - parent: 8364 - type: Transform -- uid: 6090 - type: CableApcExtension - components: - - pos: -2.5,-12.5 - parent: 8364 - type: Transform -- uid: 6091 - type: CableApcExtension - components: - - pos: 0.5,-12.5 - parent: 8364 - type: Transform -- uid: 6092 - type: CableApcExtension - components: - - pos: 1.5,-12.5 - parent: 8364 - type: Transform -- uid: 6093 - type: CableApcExtension - components: - - pos: -0.5,-11.5 - parent: 8364 - type: Transform -- uid: 6094 - type: CableMV - components: - - pos: -0.5,-9.5 - parent: 8364 - type: Transform -- uid: 6095 - type: CableMV - components: - - pos: -0.5,-10.5 - parent: 8364 - type: Transform -- uid: 6096 - type: CableMV - components: - - pos: -0.5,-11.5 - parent: 8364 - type: Transform -- uid: 6097 - type: CableMV - components: - - pos: -0.5,-12.5 - parent: 8364 - type: Transform -- uid: 6098 - type: BlastDoorOpen - components: - - pos: 9.5,-8.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11628 - type: SignalReceiver -- uid: 6099 - type: BlastDoorOpen - components: - - pos: 9.5,-9.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11628 - type: SignalReceiver -- uid: 6100 - type: WallReinforced - components: - - pos: -5.5,-20.5 - parent: 8364 - type: Transform -- uid: 6101 - type: CableApcExtension - components: - - pos: 4.5,-8.5 - parent: 8364 - type: Transform -- uid: 6102 - type: CableApcExtension - components: - - pos: 5.5,-8.5 - parent: 8364 - type: Transform -- uid: 6103 - type: CableApcExtension - components: - - pos: 6.5,-8.5 - parent: 8364 - type: Transform -- uid: 6104 - type: CableApcExtension - components: - - pos: 7.5,-8.5 - parent: 8364 - type: Transform -- uid: 6105 - type: CableApcExtension - components: - - pos: 3.5,-5.5 - parent: 8364 - type: Transform -- uid: 6106 - type: CableApcExtension - components: - - pos: 2.5,-5.5 - parent: 8364 - type: Transform -- uid: 6107 - type: CableApcExtension - components: - - pos: 1.5,-5.5 - parent: 8364 - type: Transform -- uid: 6108 - type: CableApcExtension - components: - - pos: 0.5,-5.5 - parent: 8364 - type: Transform -- uid: 6109 - type: CableApcExtension - components: - - pos: -0.5,-5.5 - parent: 8364 - type: Transform -- uid: 6110 - type: CableApcExtension - components: - - pos: -1.5,-5.5 - parent: 8364 - type: Transform -- uid: 6111 - type: CableApcExtension - components: - - pos: -2.5,-5.5 - parent: 8364 - type: Transform -- uid: 6112 - type: CableApcExtension - components: - - pos: -3.5,-5.5 - parent: 8364 - type: Transform -- uid: 6113 - type: CableApcExtension - components: - - pos: -4.5,-5.5 - parent: 8364 - type: Transform -- uid: 6114 - type: CableApcExtension - components: - - pos: -10.5,-23.5 - parent: 8364 - type: Transform -- uid: 6115 - type: CableApcExtension - components: - - pos: -10.5,-24.5 - parent: 8364 - type: Transform -- uid: 6116 - type: CableApcExtension - components: - - pos: -10.5,-25.5 - parent: 8364 - type: Transform -- uid: 6117 - type: DisposalUnit - components: - - pos: 5.5,-11.5 - parent: 8364 - type: Transform -- uid: 6118 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -61.5,-13.5 - parent: 8364 - type: Transform -- uid: 6119 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-13.5 - parent: 8364 - type: Transform -- uid: 6120 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-13.5 - parent: 8364 - type: Transform -- uid: 6121 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-13.5 - parent: 8364 - type: Transform -- uid: 6122 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-13.5 - parent: 8364 - type: Transform -- uid: 6123 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-13.5 - parent: 8364 - type: Transform -- uid: 6124 - type: DisposalPipe - components: - - pos: -55.5,-14.5 - parent: 8364 - type: Transform -- uid: 6125 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-15.5 - parent: 8364 - type: Transform -- uid: 6126 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-15.5 - parent: 8364 - type: Transform -- uid: 6127 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-15.5 - parent: 8364 - type: Transform -- uid: 6128 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-15.5 - parent: 8364 - type: Transform -- uid: 6129 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-14.5 - parent: 8364 - type: Transform -- uid: 6130 - type: DisposalPipe - components: - - pos: -50.5,-13.5 - parent: 8364 - type: Transform -- uid: 6131 - type: DisposalPipe - components: - - pos: -50.5,-12.5 - parent: 8364 - type: Transform -- uid: 6132 - type: DisposalPipe - components: - - pos: -50.5,-11.5 - parent: 8364 - type: Transform -- uid: 6133 - type: DisposalPipe - components: - - pos: -50.5,-10.5 - parent: 8364 - type: Transform -- uid: 6134 - type: DisposalPipe - components: - - pos: -50.5,-9.5 - parent: 8364 - type: Transform -- uid: 6135 - type: DisposalJunctionFlipped - components: - - pos: -50.5,-8.5 - parent: 8364 - type: Transform -- uid: 6136 - type: DisposalPipe - components: - - pos: -50.5,-7.5 - parent: 8364 - type: Transform -- uid: 6137 - type: DisposalPipe - components: - - pos: -50.5,-6.5 - parent: 8364 - type: Transform -- uid: 6138 - type: DisposalPipe - components: - - pos: -50.5,-5.5 - parent: 8364 - type: Transform -- uid: 6139 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 3.5,-9.5 - parent: 8364 - type: Transform -- uid: 6140 - type: AirlockJanitorLocked - components: - - name: Janitor Closet - type: MetaData - - pos: -50.5,-3.5 - parent: 8364 - type: Transform -- uid: 6141 - type: DisposalPipe - components: - - pos: -50.5,-2.5 - parent: 8364 - type: Transform -- uid: 6142 - type: DisposalBend - components: - - pos: -55.5,-13.5 - parent: 8364 - type: Transform -- uid: 6143 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -55.5,-15.5 - parent: 8364 - type: Transform -- uid: 6144 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -61.5,-15.5 - parent: 8364 - type: Transform -- uid: 6145 - type: DisposalYJunction - components: - - pos: -50.5,-1.5 - parent: 8364 - type: Transform -- uid: 6146 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-1.5 - parent: 8364 - type: Transform -- uid: 6147 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-1.5 - parent: 8364 - type: Transform -- uid: 6148 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-1.5 - parent: 8364 - type: Transform -- uid: 6149 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-1.5 - parent: 8364 - type: Transform -- uid: 6150 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-1.5 - parent: 8364 - type: Transform -- uid: 6151 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-1.5 - parent: 8364 - type: Transform -- uid: 6152 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-1.5 - parent: 8364 - type: Transform -- uid: 6153 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-1.5 - parent: 8364 - type: Transform - - visible: False - type: Sprite -- uid: 6154 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-1.5 - parent: 8364 - type: Transform -- uid: 6155 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-1.5 - parent: 8364 - type: Transform -- uid: 6156 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-1.5 - parent: 8364 - type: Transform -- uid: 6157 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-1.5 - parent: 8364 - type: Transform - - visible: False - type: Sprite -- uid: 6158 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-1.5 - parent: 8364 - type: Transform -- uid: 6159 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-1.5 - parent: 8364 - type: Transform -- uid: 6160 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-1.5 - parent: 8364 - type: Transform -- uid: 6161 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 8364 - type: Transform -- uid: 6162 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-1.5 - parent: 8364 - type: Transform -- uid: 6163 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-1.5 - parent: 8364 - type: Transform -- uid: 6164 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-1.5 - parent: 8364 - type: Transform -- uid: 6165 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-1.5 - parent: 8364 - type: Transform -- uid: 6166 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-1.5 - parent: 8364 - type: Transform -- uid: 6167 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-1.5 - parent: 8364 - type: Transform -- uid: 6168 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-1.5 - parent: 8364 - type: Transform -- uid: 6169 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-1.5 - parent: 8364 - type: Transform -- uid: 6170 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-1.5 - parent: 8364 - type: Transform -- uid: 6171 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-1.5 - parent: 8364 - type: Transform -- uid: 6172 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-1.5 - parent: 8364 - type: Transform -- uid: 6173 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 8364 - type: Transform -- uid: 6174 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 8364 - type: Transform -- uid: 6175 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-1.5 - parent: 8364 - type: Transform -- uid: 6176 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-1.5 - parent: 8364 - type: Transform -- uid: 6177 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-1.5 - parent: 8364 - type: Transform -- uid: 6178 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-1.5 - parent: 8364 - type: Transform -- uid: 6179 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 8364 - type: Transform - - visible: False - type: Sprite -- uid: 6180 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,-7.5 - parent: 8364 - type: Transform -- uid: 6181 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,-5.5 - parent: 8364 - type: Transform -- uid: 6182 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,-3.5 - parent: 8364 - type: Transform -- uid: 6183 - type: CableHV - components: - - pos: 29.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6184 - type: CableHV - components: - - pos: 27.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6185 - type: CableHV - components: - - pos: 25.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6186 - type: CableHV - components: - - pos: 23.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6187 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-8.5 - parent: 8364 - type: Transform -- uid: 6188 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-8.5 - parent: 8364 - type: Transform -- uid: 6189 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-8.5 - parent: 8364 - type: Transform -- uid: 6190 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-8.5 - parent: 8364 - type: Transform -- uid: 6191 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-8.5 - parent: 8364 - type: Transform -- uid: 6192 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-8.5 - parent: 8364 - type: Transform -- uid: 6193 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-8.5 - parent: 8364 - type: Transform -- uid: 6194 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-8.5 - parent: 8364 - type: Transform -- uid: 6195 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-8.5 - parent: 8364 - type: Transform - - visible: False - type: Sprite -- uid: 6196 - type: DisposalPipe - components: - - pos: -7.5,-9.5 - parent: 8364 - type: Transform -- uid: 6197 - type: DisposalPipe - components: - - pos: -7.5,-10.5 - parent: 8364 - type: Transform -- uid: 6198 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -7.5,-11.5 - parent: 8364 - type: Transform - - visible: False - type: Sprite -- uid: 6199 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-11.5 - parent: 8364 - type: Transform -- uid: 6200 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -7.5,-14.5 - parent: 8364 - type: Transform -- uid: 6201 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -7.5,-15.5 - parent: 8364 - type: Transform -- uid: 6202 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -7.5,-16.5 - parent: 8364 - type: Transform -- uid: 6203 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -7.5,-17.5 - parent: 8364 - type: Transform -- uid: 6204 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -7.5,-18.5 - parent: 8364 - type: Transform -- uid: 6205 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -7.5,-19.5 - parent: 8364 - type: Transform -- uid: 6206 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -7.5,-20.5 - parent: 8364 - type: Transform -- uid: 6207 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-21.5 - parent: 8364 - type: Transform -- uid: 6208 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-21.5 - parent: 8364 - type: Transform -- uid: 6209 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-21.5 - parent: 8364 - type: Transform -- uid: 6210 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-21.5 - parent: 8364 - type: Transform -- uid: 6211 - type: FirelockGlass - components: - - pos: 28.5,-29.5 - parent: 8364 - type: Transform -- uid: 6212 - type: CableApcExtension - components: - - pos: -12.5,-14.5 - parent: 8364 - type: Transform -- uid: 6213 - type: CableApcExtension - components: - - pos: -9.5,-26.5 - parent: 8364 - type: Transform -- uid: 6214 - type: CableApcExtension - components: - - pos: -12.5,-15.5 - parent: 8364 - type: Transform -- uid: 6215 - type: CableApcExtension - components: - - pos: -13.5,-15.5 - parent: 8364 - type: Transform -- uid: 6216 - type: CableApcExtension - components: - - pos: -13.5,-16.5 - parent: 8364 - type: Transform -- uid: 6217 - type: CableApcExtension - components: - - pos: -13.5,-17.5 - parent: 8364 - type: Transform -- uid: 6218 - type: CableApcExtension - components: - - pos: -0.5,-23.5 - parent: 8364 - type: Transform -- uid: 6219 - type: CableApcExtension - components: - - pos: -0.5,-24.5 - parent: 8364 - type: Transform -- uid: 6220 - type: CableApcExtension - components: - - pos: -0.5,-25.5 - parent: 8364 - type: Transform -- uid: 6221 - type: CableApcExtension - components: - - pos: -0.5,-26.5 - parent: 8364 - type: Transform -- uid: 6222 - type: WallReinforced - components: - - pos: -3.5,-24.5 - parent: 8364 - type: Transform -- uid: 6223 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6224 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -61.5,-14.5 - parent: 8364 - type: Transform -- uid: 6225 - type: Recycler - components: - - pos: -58.5,-15.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver -- uid: 6226 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-15.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver -- uid: 6227 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-15.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver -- uid: 6228 - type: ConveyorBelt - components: - - pos: -57.5,-15.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver -- uid: 6229 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-16.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver -- uid: 6230 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-16.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver -- uid: 6231 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-16.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver -- uid: 6232 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-16.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver -- uid: 6233 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -61.5,-16.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver -- uid: 6234 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -61.5,-17.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver -- uid: 6235 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -61.5,-18.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver -- uid: 6236 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -61.5,-19.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver -- uid: 6237 - type: Airlock - components: - - name: Toilet - type: MetaData - - pos: 14.5,2.5 - parent: 8364 - type: Transform -- uid: 6238 - type: Airlock - components: - - name: Toilet - type: MetaData - - pos: 16.5,2.5 - parent: 8364 - type: Transform -- uid: 6239 - type: Airlock - components: - - name: Toilet - type: MetaData - - pos: 18.5,2.5 - parent: 8364 - type: Transform -- uid: 6240 - type: Airlock - components: - - name: Bathroom - type: MetaData - - pos: 17.5,8.5 - parent: 8364 - type: Transform -- uid: 6241 - type: Airlock - components: - - pos: 12.5,7.5 - parent: 8364 - type: Transform -- uid: 6242 - type: Airlock - components: - - name: Bathroom - type: MetaData - - pos: 15.5,5.5 - parent: 8364 - type: Transform -- uid: 6243 - type: FirelockGlass - components: - - pos: -14.5,-27.5 - parent: 8364 - type: Transform -- uid: 6244 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-15.5 - parent: 8364 - type: Transform -- uid: 6245 - type: RandomSoap - components: - - pos: 18.5,6.5 - parent: 8364 - type: Transform -- uid: 6246 - type: SubstationBasic - components: - - pos: 1.5,-24.5 - parent: 8364 - type: Transform -- uid: 6247 - type: WallReinforced - components: - - pos: -3.5,-23.5 - parent: 8364 - type: Transform -- uid: 6248 - type: WindoorHeadOfPersonnelLocked - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 8364 - type: Transform -- uid: 6249 - type: Windoor - components: - - name: Reception Window - type: MetaData - - rot: -1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 8364 - type: Transform -- uid: 6250 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 8364 - type: Transform -- uid: 6251 - type: GasPipeStraight - components: - - pos: 8.5,-65.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6252 - type: CableHV - components: - - pos: -14.5,-70.5 - parent: 8364 - type: Transform -- uid: 6253 - type: CableHV - components: - - pos: 8.5,-72.5 - parent: 8364 - type: Transform -- uid: 6254 - type: ToiletDirtyWater - components: - - pos: 14.5,3.5 - parent: 8364 - type: Transform -- uid: 6255 - type: ToiletDirtyWater - components: - - pos: 16.5,3.5 - parent: 8364 - type: Transform -- uid: 6256 - type: ToiletDirtyWater - components: - - pos: 18.5,3.5 - parent: 8364 - type: Transform -- uid: 6257 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 17.5,5.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6258 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,5.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6259 - type: Poweredlight - components: - - pos: 15.5,1.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6260 - type: Mirror - components: - - pos: 19.5,5.5 - parent: 8364 - type: Transform -- uid: 6261 - type: Mirror - components: - - pos: 19.5,3.5 - parent: 8364 - type: Transform -- uid: 6262 - type: Mirror - components: - - pos: 10.5,2.5 - parent: 8364 - type: Transform -- uid: 6263 - type: Mirror - components: - - pos: 10.5,6.5 - parent: 8364 - type: Transform -- uid: 6264 - type: ExtinguisherCabinetFilled - components: - - pos: 13.5,-28.5 - parent: 8364 - type: Transform -- uid: 6265 - type: Rack - components: - - pos: 24.5,21.5 - parent: 8364 - type: Transform -- uid: 6266 - type: CableHV - components: - - pos: -18.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6267 - type: WallSolid - components: - - pos: 25.5,22.5 - parent: 8364 - type: Transform -- uid: 6268 - type: CableHV - components: - - pos: 23.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6269 - type: CableHV - components: - - pos: 9.5,-72.5 - parent: 8364 - type: Transform -- uid: 6270 - type: CableHV - components: - - pos: -0.5,-32.5 - parent: 8364 - type: Transform -- uid: 6271 - type: CableHV - components: - - pos: -0.5,-33.5 - parent: 8364 - type: Transform -- uid: 6272 - type: CableHV - components: - - pos: -0.5,-34.5 - parent: 8364 - type: Transform -- uid: 6273 - type: CableHV - components: - - pos: -0.5,-35.5 - parent: 8364 - type: Transform -- uid: 6274 - type: CableHV - components: - - pos: -0.5,-36.5 - parent: 8364 - type: Transform -- uid: 6275 - type: CableHV - components: - - pos: -0.5,-37.5 - parent: 8364 - type: Transform -- uid: 6276 - type: CableHV - components: - - pos: -0.5,-38.5 - parent: 8364 - type: Transform -- uid: 6277 - type: CableHV - components: - - pos: 0.5,-38.5 - parent: 8364 - type: Transform -- uid: 6278 - type: CableHV - components: - - pos: 13.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6279 - type: CableHV - components: - - pos: 21.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6280 - type: CableHV - components: - - pos: 22.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6281 - type: CableHV - components: - - pos: 24.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6282 - type: CableHV - components: - - pos: 26.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6283 - type: CableHV - components: - - pos: 28.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6284 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,-2.5 - parent: 8364 - type: Transform -- uid: 6285 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,-4.5 - parent: 8364 - type: Transform -- uid: 6286 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,-6.5 - parent: 8364 - type: Transform -- uid: 6287 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -16.5,-8.5 - parent: 8364 - type: Transform -- uid: 6288 - type: Rack - components: - - pos: 20.5,19.5 - parent: 8364 - type: Transform -- uid: 6289 - type: BriefcaseBrownFilled - components: - - pos: -12.308378,17.63403 - parent: 8364 - type: Transform -- uid: 6290 - type: CableHV - components: - - pos: 32.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6291 - type: CableHV - components: - - pos: 32.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6292 - type: CableHV - components: - - pos: 32.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6293 - type: CableHV - components: - - pos: 32.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6294 - type: CableHV - components: - - pos: 32.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6295 - type: CableHV - components: - - pos: 32.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6296 - type: CableHV - components: - - pos: 32.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6297 - type: CableHV - components: - - pos: 20.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6298 - type: CableHV - components: - - pos: 32.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6299 - type: CableHV - components: - - pos: 32.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6300 - type: CableHV - components: - - pos: 32.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6301 - type: CableHV - components: - - pos: 32.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6302 - type: CableHV - components: - - pos: 32.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6303 - type: CableHV - components: - - pos: 32.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6304 - type: CableHV - components: - - pos: 32.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6305 - type: CableHV - components: - - pos: 10.5,-72.5 - parent: 8364 - type: Transform -- uid: 6306 - type: CableHV - components: - - pos: 32.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6307 - type: CableHV - components: - - pos: 32.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6308 - type: CableHV - components: - - pos: 32.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6309 - type: CableHV - components: - - pos: 32.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6310 - type: CableHV - components: - - pos: 12.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6311 - type: CableHV - components: - - pos: 14.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6312 - type: CableHV - components: - - pos: 15.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6313 - type: CableHV - components: - - pos: 17.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6314 - type: CableHV - components: - - pos: 18.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6315 - type: CableMV - components: - - pos: -23.5,-69.5 - parent: 8364 - type: Transform -- uid: 6316 - type: CableHV - components: - - pos: -25.5,-70.5 - parent: 8364 - type: Transform -- uid: 6317 - type: CableHV - components: - - pos: -25.5,-68.5 - parent: 8364 - type: Transform -- uid: 6318 - type: CableHV - components: - - pos: 8.5,-70.5 - parent: 8364 - type: Transform -- uid: 6319 - type: CableHV - components: - - pos: -25.5,-67.5 - parent: 8364 - type: Transform -- uid: 6320 - type: CableHV - components: - - pos: 8.5,-71.5 - parent: 8364 - type: Transform -- uid: 6321 - type: CableHV - components: - - pos: -25.5,-69.5 - parent: 8364 - type: Transform -- uid: 6322 - type: CableHV - components: - - pos: 8.5,-69.5 - parent: 8364 - type: Transform -- uid: 6323 - type: CableHV - components: - - pos: -25.5,-66.5 - parent: 8364 - type: Transform -- uid: 6324 - type: CableHV - components: - - pos: 8.5,-68.5 - parent: 8364 - type: Transform -- uid: 6325 - type: Catwalk - components: - - pos: 18.5,-72.5 - parent: 8364 - type: Transform -- uid: 6326 - type: CableHV - components: - - pos: -2.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6327 - type: CableHV - components: - - pos: -17.5,-68.5 - parent: 8364 - type: Transform -- uid: 6328 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,17.5 - parent: 8364 - type: Transform -- uid: 6329 - type: CableHV - components: - - pos: 19.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6330 - type: CableHV - components: - - pos: 20.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6331 - type: CableHV - components: - - pos: 21.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6332 - type: CableHV - components: - - pos: 21.5,18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6333 - type: CableHV - components: - - pos: 21.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6334 - type: CableHV - components: - - pos: 21.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6335 - type: CableHV - components: - - pos: 21.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6336 - type: CableHV - components: - - pos: 21.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6337 - type: CableHV - components: - - pos: -18.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6338 - type: CableHV - components: - - pos: 23.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6339 - type: CableHV - components: - - pos: 32.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6340 - type: CableHV - components: - - pos: -18.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6341 - type: CableHV - components: - - pos: -18.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6342 - type: WallSolid - components: - - pos: 24.5,20.5 - parent: 8364 - type: Transform -- uid: 6343 - type: CableMV - components: - - pos: 24.5,19.5 - parent: 8364 - type: Transform -- uid: 6344 - type: CableMV - components: - - pos: 24.5,18.5 - parent: 8364 - type: Transform -- uid: 6345 - type: CableMV - components: - - pos: 24.5,17.5 - parent: 8364 - type: Transform -- uid: 6346 - type: CableMV - components: - - pos: 24.5,16.5 - parent: 8364 - type: Transform -- uid: 6347 - type: CableMV - components: - - pos: 24.5,15.5 - parent: 8364 - type: Transform -- uid: 6348 - type: CableApcExtension - components: - - pos: 22.5,14.5 - parent: 8364 - type: Transform -- uid: 6349 - type: CableApcExtension - components: - - pos: 25.5,13.5 - parent: 8364 - type: Transform -- uid: 6350 - type: CableApcExtension - components: - - pos: 25.5,14.5 - parent: 8364 - type: Transform -- uid: 6351 - type: CableApcExtension - components: - - pos: 24.5,14.5 - parent: 8364 - type: Transform -- uid: 6352 - type: CableApcExtension - components: - - pos: 23.5,9.5 - parent: 8364 - type: Transform -- uid: 6353 - type: CableApcExtension - components: - - pos: 24.5,9.5 - parent: 8364 - type: Transform -- uid: 6354 - type: CableApcExtension - components: - - pos: 22.5,9.5 - parent: 8364 - type: Transform -- uid: 6355 - type: AirlockGlass - components: - - name: Dorms - type: MetaData - - pos: 8.5,2.5 - parent: 8364 - type: Transform -- uid: 6356 - type: CableMV - components: - - pos: 19.5,11.5 - parent: 8364 - type: Transform -- uid: 6357 - type: CableMV - components: - - pos: 18.5,11.5 - parent: 8364 - type: Transform -- uid: 6358 - type: CableMV - components: - - pos: 17.5,11.5 - parent: 8364 - type: Transform -- uid: 6359 - type: CableMV - components: - - pos: 17.5,10.5 - parent: 8364 - type: Transform -- uid: 6360 - type: CableMV - components: - - pos: 17.5,9.5 - parent: 8364 - type: Transform -- uid: 6361 - type: CableMV - components: - - pos: 17.5,8.5 - parent: 8364 - type: Transform -- uid: 6362 - type: CableMV - components: - - pos: 17.5,7.5 - parent: 8364 - type: Transform -- uid: 6363 - type: CableMV - components: - - pos: 17.5,6.5 - parent: 8364 - type: Transform -- uid: 6364 - type: CableMV - components: - - pos: 17.5,5.5 - parent: 8364 - type: Transform -- uid: 6365 - type: CableMV - components: - - pos: 16.5,5.5 - parent: 8364 - type: Transform -- uid: 6366 - type: CableMV - components: - - pos: 15.5,5.5 - parent: 8364 - type: Transform -- uid: 6367 - type: CableMV - components: - - pos: 14.5,5.5 - parent: 8364 - type: Transform -- uid: 6368 - type: CableMV - components: - - pos: 13.5,5.5 - parent: 8364 - type: Transform -- uid: 6369 - type: CableMV - components: - - pos: 13.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6370 - type: CableHV - components: - - pos: -16.5,-68.5 - parent: 8364 - type: Transform -- uid: 6371 - type: CableApcExtension - components: - - pos: 13.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6372 - type: CableApcExtension - components: - - pos: 12.5,4.5 - parent: 8364 - type: Transform -- uid: 6373 - type: CableApcExtension - components: - - pos: 12.5,3.5 - parent: 8364 - type: Transform -- uid: 6374 - type: CableApcExtension - components: - - pos: 12.5,2.5 - parent: 8364 - type: Transform -- uid: 6375 - type: CableApcExtension - components: - - pos: 12.5,1.5 - parent: 8364 - type: Transform -- uid: 6376 - type: CableApcExtension - components: - - pos: 13.5,1.5 - parent: 8364 - type: Transform -- uid: 6377 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6378 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6379 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6380 - type: CableApcExtension - components: - - pos: 14.5,1.5 - parent: 8364 - type: Transform -- uid: 6381 - type: CableApcExtension - components: - - pos: 15.5,1.5 - parent: 8364 - type: Transform -- uid: 6382 - type: CableApcExtension - components: - - pos: 16.5,1.5 - parent: 8364 - type: Transform -- uid: 6383 - type: CableApcExtension - components: - - pos: 13.5,5.5 - parent: 8364 - type: Transform -- uid: 6384 - type: CableApcExtension - components: - - pos: 14.5,5.5 - parent: 8364 - type: Transform -- uid: 6385 - type: CableApcExtension - components: - - pos: 15.5,5.5 - parent: 8364 - type: Transform -- uid: 6386 - type: CableApcExtension - components: - - pos: 16.5,5.5 - parent: 8364 - type: Transform -- uid: 6387 - type: CableApcExtension - components: - - pos: 17.5,5.5 - parent: 8364 - type: Transform -- uid: 6388 - type: CableApcExtension - components: - - pos: 17.5,6.5 - parent: 8364 - type: Transform -- uid: 6389 - type: TableWood - components: - - pos: -9.5,-25.5 - parent: 8364 - type: Transform -- uid: 6390 - type: MaterialDurathread - components: - - pos: -9.520975,-26.707659 - parent: 8364 - type: Transform -- uid: 6391 - type: TableWood - components: - - pos: -9.5,-26.5 - parent: 8364 - type: Transform -- uid: 6392 - type: CableHV - components: - - pos: 1.5,-25.5 - parent: 8364 - type: Transform -- uid: 6393 - type: WallReinforced - components: - - pos: -3.5,-22.5 - parent: 8364 - type: Transform -- uid: 6394 - type: WallReinforced - components: - - pos: -3.5,-18.5 - parent: 8364 - type: Transform -- uid: 6395 - type: APCBasic - components: - - name: Hibernation APC - type: MetaData - - pos: 25.5,20.5 - parent: 8364 - type: Transform - - startingCharge: 12000 - type: Battery - - loadingNetworkDemand: 10 - currentReceiving: 10.019571 - currentSupply: 10 - type: PowerNetworkBattery -- uid: 6396 - type: CableApcExtension - components: - - pos: 25.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6397 - type: CableApcExtension - components: - - pos: 25.5,19.5 - parent: 8364 - type: Transform -- uid: 6398 - type: CableApcExtension - components: - - pos: 25.5,18.5 - parent: 8364 - type: Transform -- uid: 6399 - type: CableMV - components: - - pos: 25.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6400 - type: AirlockGlass - components: - - pos: 28.5,10.5 - parent: 8364 - type: Transform -- uid: 6401 - type: FirelockGlass - components: - - pos: 79.5,-4.5 - parent: 8364 - type: Transform -- uid: 6402 - type: AirlockGlass - components: - - pos: 24.5,16.5 - parent: 8364 - type: Transform -- uid: 6403 - type: AirlockGlass - components: - - pos: 38.5,10.5 - parent: 8364 - type: Transform -- uid: 6404 - type: AirlockGlass - components: - - pos: 38.5,13.5 - parent: 8364 - type: Transform -- uid: 6405 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -17.5,19.5 - parent: 8364 - type: Transform -- uid: 6406 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 20.5,-10.5 - parent: 8364 - type: Transform -- uid: 6407 - type: AirlockMaintLocked - components: - - pos: 19.5,16.5 - parent: 8364 - type: Transform -- uid: 6408 - type: ReinforcedWindow - components: - - pos: -5.5,40.5 - parent: 8364 - type: Transform -- uid: 6409 - type: AirlockMaintLocked - components: - - pos: 7.5,3.5 - parent: 8364 - type: Transform -- uid: 6410 - type: AirlockGlass - components: - - pos: 18.5,10.5 - parent: 8364 - type: Transform -- uid: 6411 - type: AirlockGlass - components: - - pos: 18.5,11.5 - parent: 8364 - type: Transform -- uid: 6412 - type: Airlock - components: - - name: Dorm 6 - type: MetaData - - pos: 16.5,13.5 - parent: 8364 - type: Transform -- uid: 6413 - type: Airlock - components: - - name: Dorm 5 - type: MetaData - - pos: 12.5,13.5 - parent: 8364 - type: Transform -- uid: 6414 - type: Airlock - components: - - name: Dorm 4 - type: MetaData - - pos: 7.5,14.5 - parent: 8364 - type: Transform -- uid: 6415 - type: Airlock - components: - - name: Dorm 3 - type: MetaData - - pos: 7.5,11.5 - parent: 8364 - type: Transform -- uid: 6416 - type: Airlock - components: - - name: Dorm 2 - type: MetaData - - pos: 7.5,8.5 - parent: 8364 - type: Transform -- uid: 6417 - type: Airlock - components: - - name: Dorm 1 - type: MetaData - - pos: 7.5,5.5 - parent: 8364 - type: Transform -- uid: 6418 - type: CableMV - components: - - pos: 24.5,14.5 - parent: 8364 - type: Transform -- uid: 6419 - type: CableApcExtension - components: - - pos: 2.5,-16.5 - parent: 8364 - type: Transform -- uid: 6420 - type: SinkWide - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-6.5 - parent: 8364 - type: Transform -- uid: 6421 - type: ComputerBroken - components: - - rot: 1.5707963267948966 rad - pos: 39.5,12.5 - parent: 8364 - type: Transform -- uid: 6422 - type: Table - components: - - pos: 39.5,11.5 - parent: 8364 - type: Transform -- uid: 6423 - type: SpawnPointJanitor - components: - - pos: -50.5,-7.5 - parent: 8364 - type: Transform -- uid: 6424 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 40.5,12.5 - parent: 8364 - type: Transform -- uid: 6425 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 40.5,11.5 - parent: 8364 - type: Transform -- uid: 6426 - type: Paper - components: - - pos: 39.5,11.5 - parent: 8364 - type: Transform -- uid: 6427 - type: WallSolid - components: - - pos: 41.5,6.5 - parent: 8364 - type: Transform -- uid: 6428 - type: WallSolid - components: - - pos: 41.5,5.5 - parent: 8364 - type: Transform -- uid: 6429 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,13.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6430 - type: APCBasic - components: - - name: Telebay APC - type: MetaData - - pos: 39.5,14.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 10 - supplyRampPosition: 1.347667 - type: PowerNetworkBattery -- uid: 6431 - type: CableApcExtension - components: - - pos: 39.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6432 - type: CableApcExtension - components: - - pos: 39.5,13.5 - parent: 8364 - type: Transform -- uid: 6433 - type: CableApcExtension - components: - - pos: 39.5,12.5 - parent: 8364 - type: Transform -- uid: 6434 - type: CableMV - components: - - pos: 39.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6435 - type: CableMV - components: - - pos: 39.5,13.5 - parent: 8364 - type: Transform -- uid: 6436 - type: BookAtmosDistro - components: - - pos: 62.146313,-2.5267155 - parent: 8364 - type: Transform -- uid: 6437 - type: BookAtmosVentsMore - components: - - pos: 62.630688,-2.3860905 - parent: 8364 - type: Transform -- uid: 6438 - type: IntercomSupply - components: - - pos: -20.5,-20.5 - parent: 8364 - type: Transform -- uid: 6439 - type: CableMV - components: - - pos: 40.5,13.5 - parent: 8364 - type: Transform -- uid: 6440 - type: CableMV - components: - - pos: 40.5,12.5 - parent: 8364 - type: Transform -- uid: 6441 - type: CableMV - components: - - pos: 40.5,11.5 - parent: 8364 - type: Transform -- uid: 6442 - type: CableMV - components: - - pos: 41.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6443 - type: CableMV - components: - - pos: 42.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6444 - type: CableMV - components: - - pos: 43.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6445 - type: CableMV - components: - - pos: 44.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6446 - type: CableMV - components: - - pos: 45.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6447 - type: CableMV - components: - - pos: 27.5,13.5 - parent: 8364 - type: Transform -- uid: 6448 - type: CableMV - components: - - pos: 26.5,13.5 - parent: 8364 - type: Transform -- uid: 6449 - type: CableMV - components: - - pos: 25.5,13.5 - parent: 8364 - type: Transform -- uid: 6450 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,1.5 - parent: 8364 - type: Transform -- uid: 6451 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,0.5 - parent: 8364 - type: Transform -- uid: 6452 - type: VendingMachineCart - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-21.5 - parent: 8364 - type: Transform -- uid: 6453 - type: WallReinforced - components: - - pos: -44.5,-29.5 - parent: 8364 - type: Transform -- uid: 6454 - type: WallReinforced - components: - - pos: -43.5,-29.5 - parent: 8364 - type: Transform -- uid: 6455 - type: WallReinforced - components: - - pos: -42.5,-29.5 - parent: 8364 - type: Transform -- uid: 6456 - type: BlockGameArcade - components: - - pos: 5.5,-13.5 - parent: 8364 - type: Transform -- uid: 6457 - type: AirlockEngineeringLocked - components: - - pos: 23.5,24.5 - parent: 8364 - type: Transform -- uid: 6458 - type: GasPipeStraight - components: - - pos: 27.5,24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6459 - type: FirelockGlass - components: - - pos: 67.5,-37.5 - parent: 8364 - type: Transform -- uid: 6460 - type: WallReinforced - components: - - pos: 51.5,-57.5 - parent: 8364 - type: Transform -- uid: 6461 - type: ClosetEmergencyFilledRandom - components: - - pos: 50.5,-57.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6462 - type: WallSolid - components: - - pos: 55.5,-15.5 - parent: 8364 - type: Transform -- uid: 6463 - type: FirelockGlass - components: - - pos: 65.5,-42.5 - parent: 8364 - type: Transform -- uid: 6464 - type: FirelockGlass - components: - - pos: 66.5,-42.5 - parent: 8364 - type: Transform -- uid: 6465 - type: BedsheetSpawner - components: - - pos: 6.5,9.5 - parent: 8364 - type: Transform -- uid: 6466 - type: BedsheetSpawner - components: - - pos: 6.5,12.5 - parent: 8364 - type: Transform -- uid: 6467 - type: FirelockGlass - components: - - pos: 67.5,-42.5 - parent: 8364 - type: Transform -- uid: 6468 - type: FirelockGlass - components: - - pos: 76.5,-42.5 - parent: 8364 - type: Transform -- uid: 6469 - type: Bed - components: - - pos: 6.5,9.5 - parent: 8364 - type: Transform -- uid: 6470 - type: Bed - components: - - pos: 6.5,12.5 - parent: 8364 - type: Transform -- uid: 6471 - type: Bed - components: - - pos: 6.5,15.5 - parent: 8364 - type: Transform -- uid: 6472 - type: TableWood - components: - - pos: 11.5,14.5 - parent: 8364 - type: Transform -- uid: 6473 - type: FirelockGlass - components: - - pos: 77.5,-42.5 - parent: 8364 - type: Transform -- uid: 6474 - type: FirelockGlass - components: - - pos: 78.5,-42.5 - parent: 8364 - type: Transform -- uid: 6475 - type: PortableScrubber - components: - - pos: 77.5,-32.5 - parent: 8364 - type: Transform -- uid: 6476 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,6.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6477 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,9.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6478 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,12.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6479 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,15.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6480 - type: PoweredSmallLight - components: - - pos: 12.5,15.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6481 - type: PoweredSmallLight - components: - - pos: 16.5,15.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6482 - type: Bed - components: - - pos: 13.5,14.5 - parent: 8364 - type: Transform -- uid: 6483 - type: Bed - components: - - pos: 17.5,14.5 - parent: 8364 - type: Transform -- uid: 6484 - type: BedsheetSpawner - components: - - pos: 13.5,14.5 - parent: 8364 - type: Transform -- uid: 6485 - type: BedsheetSpawner - components: - - pos: 17.5,14.5 - parent: 8364 - type: Transform -- uid: 6486 - type: PortableScrubber - components: - - pos: 77.5,-33.5 - parent: 8364 - type: Transform -- uid: 6487 - type: PortableScrubber - components: - - pos: 77.5,-34.5 - parent: 8364 - type: Transform -- uid: 6488 - type: FirelockGlass - components: - - pos: 76.5,-38.5 - parent: 8364 - type: Transform -- uid: 6489 - type: FirelockGlass - components: - - pos: 77.5,-38.5 - parent: 8364 - type: Transform -- uid: 6490 - type: PottedPlant10 - components: - - pos: 74.5,-37.5 - parent: 8364 - type: Transform -- uid: 6491 - type: ComputerAlert - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-34.5 - parent: 8364 - type: Transform -- uid: 6492 - type: CarpetPurple - components: - - pos: 71.5,-33.5 - parent: 8364 - type: Transform -- uid: 6493 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 15.5,8.5 - parent: 8364 - type: Transform -- uid: 6494 - type: WallReinforced - components: - - pos: 27.5,16.5 - parent: 8364 - type: Transform -- uid: 6495 - type: WallReinforced - components: - - pos: 26.5,17.5 - parent: 8364 - type: Transform -- uid: 6496 - type: WallReinforced - components: - - pos: 26.5,16.5 - parent: 8364 - type: Transform -- uid: 6497 - type: WallReinforced - components: - - pos: 26.5,18.5 - parent: 8364 - type: Transform -- uid: 6498 - type: WallReinforced - components: - - pos: 26.5,19.5 - parent: 8364 - type: Transform -- uid: 6499 - type: WallReinforced - components: - - pos: 26.5,20.5 - parent: 8364 - type: Transform -- uid: 6500 - type: TableWood - components: - - pos: 14.5,10.5 - parent: 8364 - type: Transform -- uid: 6501 - type: TableWood - components: - - pos: 14.5,11.5 - parent: 8364 - type: Transform -- uid: 6502 - type: TableWood - components: - - pos: 13.5,10.5 - parent: 8364 - type: Transform -- uid: 6503 - type: TableWood - components: - - pos: 13.5,11.5 - parent: 8364 - type: Transform -- uid: 6504 - type: TableWood - components: - - pos: 12.5,10.5 - parent: 8364 - type: Transform -- uid: 6505 - type: TableWood - components: - - pos: 12.5,11.5 - parent: 8364 - type: Transform -- uid: 6506 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 15.5,11.5 - parent: 8364 - type: Transform -- uid: 6507 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 15.5,10.5 - parent: 8364 - type: Transform -- uid: 6508 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 14.5,9.5 - parent: 8364 - type: Transform -- uid: 6509 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 13.5,9.5 - parent: 8364 - type: Transform -- uid: 6510 - type: CrayonBox - components: - - pos: 12.5,10.5 - parent: 8364 - type: Transform -- uid: 6511 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 11.5,10.5 - parent: 8364 - type: Transform -- uid: 6512 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 11.5,11.5 - parent: 8364 - type: Transform -- uid: 6513 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,1.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6514 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,12.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6515 - type: Poweredlight - components: - - pos: 14.5,12.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6516 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 11.5,8.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6517 - type: ClosetFireFilled - components: - - pos: 10.5,8.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6518 - type: ClosetEmergencyFilledRandom - components: - - pos: 11.5,8.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6519 - type: BackgammonBoard - components: - - pos: 24.02721,-8.402973 - parent: 8364 - type: Transform -- uid: 6520 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 18.5,13.5 - parent: 8364 - type: Transform -- uid: 6521 - type: WallReinforced - components: - - pos: -40.5,-32.5 - parent: 8364 - type: Transform -- uid: 6522 - type: d20Dice - components: - - pos: 12.5,11.5 - parent: 8364 - type: Transform -- uid: 6523 - type: MedkitFilled - components: - - pos: 13.5,11.5 - parent: 8364 - type: Transform -- uid: 6524 - type: WindoorSecurityLocked - components: - - pos: -6.5,40.5 - parent: 8364 - type: Transform -- uid: 6525 - type: CableApcExtension - components: - - pos: 16.5,11.5 - parent: 8364 - type: Transform -- uid: 6526 - type: CableApcExtension - components: - - pos: 15.5,11.5 - parent: 8364 - type: Transform -- uid: 6527 - type: CableApcExtension - components: - - pos: 15.5,10.5 - parent: 8364 - type: Transform -- uid: 6528 - type: CableApcExtension - components: - - pos: 15.5,9.5 - parent: 8364 - type: Transform -- uid: 6529 - type: WindowDirectional - components: - - pos: 20.5,-4.5 - parent: 8364 - type: Transform -- uid: 6530 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 23.5,8.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6531 - type: ComfyChair - components: - - pos: 11.5,15.5 - parent: 8364 - type: Transform -- uid: 6532 - type: CableApcExtension - components: - - pos: 15.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6533 - type: Poweredlight - components: - - pos: 23.5,15.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6534 - type: Poweredlight - components: - - pos: 25.5,15.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6535 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,12.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6536 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,12.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6537 - type: WallSolid - components: - - pos: 18.5,13.5 - parent: 8364 - type: Transform -- uid: 6538 - type: CableApcExtension - components: - - pos: 19.5,13.5 - parent: 8364 - type: Transform -- uid: 6539 - type: CableApcExtension - components: - - pos: 20.5,13.5 - parent: 8364 - type: Transform -- uid: 6540 - type: CableMV - components: - - pos: 23.5,14.5 - parent: 8364 - type: Transform -- uid: 6541 - type: CableMV - components: - - pos: 22.5,14.5 - parent: 8364 - type: Transform -- uid: 6542 - type: CableMV - components: - - pos: 21.5,14.5 - parent: 8364 - type: Transform -- uid: 6543 - type: CableMV - components: - - pos: 20.5,14.5 - parent: 8364 - type: Transform -- uid: 6544 - type: CableMV - components: - - pos: 24.5,13.5 - parent: 8364 - type: Transform -- uid: 6545 - type: CableMV - components: - - pos: 20.5,12.5 - parent: 8364 - type: Transform -- uid: 6546 - type: CableApcExtension - components: - - pos: 26.5,12.5 - parent: 8364 - type: Transform -- uid: 6547 - type: CableApcExtension - components: - - pos: 23.5,14.5 - parent: 8364 - type: Transform -- uid: 6548 - type: CableApcExtension - components: - - pos: 21.5,14.5 - parent: 8364 - type: Transform -- uid: 6549 - type: CableApcExtension - components: - - pos: 20.5,14.5 - parent: 8364 - type: Transform -- uid: 6550 - type: AirlockMaintLocked - components: - - pos: 2.5,2.5 - parent: 8364 - type: Transform -- uid: 6551 - type: AirlockGlass - components: - - name: Dorms - type: MetaData - - pos: 9.5,2.5 - parent: 8364 - type: Transform -- uid: 6552 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 19.5,15.5 - parent: 8364 - type: Transform - - visible: False - type: Sprite -- uid: 6553 - type: CableMV - components: - - pos: 20.5,11.5 - parent: 8364 - type: Transform -- uid: 6554 - type: CableMV - components: - - pos: 20.5,13.5 - parent: 8364 - type: Transform -- uid: 6555 - type: CableMV - components: - - pos: 19.5,13.5 - parent: 8364 - type: Transform -- uid: 6556 - type: CableMV - components: - - pos: 18.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6557 - type: CableApcExtension - components: - - pos: 21.5,9.5 - parent: 8364 - type: Transform -- uid: 6558 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 23.5,9.5 - parent: 8364 - type: Transform -- uid: 6559 - type: Table - components: - - pos: 22.5,9.5 - parent: 8364 - type: Transform -- uid: 6560 - type: PottedPlantRandom - components: - - pos: 27.5,15.5 - parent: 8364 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 6561 - type: DisposalUnit - components: - - pos: 20.5,15.5 - parent: 8364 - type: Transform -- uid: 6562 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 10.5,13.5 - parent: 8364 - type: Transform -- uid: 6563 - type: CableApcExtension - components: - - pos: 16.5,12.5 - parent: 8364 - type: Transform -- uid: 6564 - type: CableApcExtension - components: - - pos: 16.5,13.5 - parent: 8364 - type: Transform -- uid: 6565 - type: CableApcExtension - components: - - pos: 14.5,11.5 - parent: 8364 - type: Transform -- uid: 6566 - type: CableApcExtension - components: - - pos: 13.5,11.5 - parent: 8364 - type: Transform -- uid: 6567 - type: CableApcExtension - components: - - pos: 12.5,11.5 - parent: 8364 - type: Transform -- uid: 6568 - type: CableApcExtension - components: - - pos: 12.5,12.5 - parent: 8364 - type: Transform -- uid: 6569 - type: CableApcExtension - components: - - pos: 12.5,13.5 - parent: 8364 - type: Transform -- uid: 6570 - type: CableApcExtension - components: - - pos: 11.5,11.5 - parent: 8364 - type: Transform -- uid: 6571 - type: CableApcExtension - components: - - pos: 10.5,11.5 - parent: 8364 - type: Transform -- uid: 6572 - type: CableApcExtension - components: - - pos: 9.5,11.5 - parent: 8364 - type: Transform -- uid: 6573 - type: CableApcExtension - components: - - pos: 8.5,11.5 - parent: 8364 - type: Transform -- uid: 6574 - type: CableApcExtension - components: - - pos: 7.5,11.5 - parent: 8364 - type: Transform -- uid: 6575 - type: CableApcExtension - components: - - pos: 8.5,12.5 - parent: 8364 - type: Transform -- uid: 6576 - type: CableApcExtension - components: - - pos: 8.5,13.5 - parent: 8364 - type: Transform -- uid: 6577 - type: CableApcExtension - components: - - pos: 8.5,14.5 - parent: 8364 - type: Transform -- uid: 6578 - type: CableApcExtension - components: - - pos: 7.5,14.5 - parent: 8364 - type: Transform -- uid: 6579 - type: CableApcExtension - components: - - pos: 8.5,10.5 - parent: 8364 - type: Transform -- uid: 6580 - type: CableApcExtension - components: - - pos: 8.5,9.5 - parent: 8364 - type: Transform -- uid: 6581 - type: CableApcExtension - components: - - pos: 8.5,8.5 - parent: 8364 - type: Transform -- uid: 6582 - type: CableApcExtension - components: - - pos: 7.5,8.5 - parent: 8364 - type: Transform -- uid: 6583 - type: CableApcExtension - components: - - pos: 8.5,7.5 - parent: 8364 - type: Transform -- uid: 6584 - type: CableApcExtension - components: - - pos: 8.5,6.5 - parent: 8364 - type: Transform -- uid: 6585 - type: CableApcExtension - components: - - pos: 8.5,5.5 - parent: 8364 - type: Transform -- uid: 6586 - type: CableApcExtension - components: - - pos: 7.5,5.5 - parent: 8364 - type: Transform -- uid: 6587 - type: CableMV - components: - - pos: 16.5,11.5 - parent: 8364 - type: Transform -- uid: 6588 - type: CableMV - components: - - pos: 15.5,11.5 - parent: 8364 - type: Transform -- uid: 6589 - type: CableMV - components: - - pos: 15.5,10.5 - parent: 8364 - type: Transform -- uid: 6590 - type: CableMV - components: - - pos: 15.5,9.5 - parent: 8364 - type: Transform -- uid: 6591 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 16.5,19.5 - parent: 8364 - type: Transform -- uid: 6592 - type: CableMV - components: - - pos: 15.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6593 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 24.5,30.5 - parent: 8364 - type: Transform -- uid: 6594 - type: ComputerTelevision - components: - - pos: 4.5,15.5 - parent: 8364 - type: Transform -- uid: 6595 - type: TableWood - components: - - pos: 4.5,6.5 - parent: 8364 - type: Transform -- uid: 6596 - type: BoxFolderBlack - components: - - pos: -11.5,13.5 - parent: 8364 - type: Transform -- uid: 6597 - type: BoxFolderBlack - components: - - pos: -11.5,13.5 - parent: 8364 - type: Transform -- uid: 6598 - type: BoxFolderBlack - components: - - pos: -11.5,13.5 - parent: 8364 - type: Transform -- uid: 6599 - type: BoxFolderBlack - components: - - pos: -11.5,13.5 - parent: 8364 - type: Transform -- uid: 6600 - type: BoxFolderBlack - components: - - pos: -11.5,13.5 - parent: 8364 - type: Transform -- uid: 6601 - type: BoxFolderYellow - components: - - pos: -12.5,13.5 - parent: 8364 - type: Transform -- uid: 6602 - type: BoxFolderYellow - components: - - pos: -12.5,13.5 - parent: 8364 - type: Transform -- uid: 6603 - type: BoxFolderYellow - components: - - pos: -12.5,13.5 - parent: 8364 - type: Transform -- uid: 6604 - type: BoxFolderYellow - components: - - pos: -12.5,13.5 - parent: 8364 - type: Transform -- uid: 6605 - type: CableHV - components: - - pos: 32.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6606 - type: BoxFolderYellow - components: - - pos: -12.5,13.5 - parent: 8364 - type: Transform -- uid: 6607 - type: CableHV - components: - - pos: 30.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6608 - type: ClothingHeadHatBunny - components: - - pos: 4.5693398,6.734102 - parent: 8364 - type: Transform -- uid: 6609 - type: PlushieBee - components: - - pos: 5.436387,5.4152575 - parent: 8364 - type: Transform -- uid: 6610 - type: CableApcExtension - components: - - pos: 25.5,12.5 - parent: 8364 - type: Transform -- uid: 6611 - type: WeaponDisablerPractice - components: - - pos: 25.415077,32.67617 - parent: 8364 - type: Transform -- uid: 6612 - type: PosterContrabandAtmosiaDeclarationIndependence - components: - - pos: 3.5,6.5 - parent: 8364 - type: Transform -- uid: 6613 - type: RandomPosterAny - components: - - pos: 3.5,9.5 - parent: 8364 - type: Transform -- uid: 6614 - type: ClosetBase - components: - - pos: 20.5,22.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6615 - type: ClothingMaskGas - components: - - pos: 25.30574,25.583838 - parent: 8364 - type: Transform -- uid: 6616 - type: FireExtinguisher - components: - - pos: 27.65475,21.45491 - parent: 8364 - type: Transform -- uid: 6617 - type: RandomPosterAny - components: - - pos: 16.5,16.5 - parent: 8364 - type: Transform -- uid: 6618 - type: Table - components: - - pos: 4.5,12.5 - parent: 8364 - type: Transform -- uid: 6619 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,22.5 - parent: 8364 - type: Transform -- uid: 6620 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,20.5 - parent: 8364 - type: Transform -- uid: 6621 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,11.5 - parent: 8364 - type: Transform -- uid: 6622 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,23.5 - parent: 8364 - type: Transform -- uid: 6623 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,12.5 - parent: 8364 - type: Transform -- uid: 6624 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,13.5 - parent: 8364 - type: Transform -- uid: 6625 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,14.5 - parent: 8364 - type: Transform -- uid: 6626 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,15.5 - parent: 8364 - type: Transform -- uid: 6627 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,16.5 - parent: 8364 - type: Transform -- uid: 6628 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,17.5 - parent: 8364 - type: Transform -- uid: 6629 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,17.5 - parent: 8364 - type: Transform -- uid: 6630 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,17.5 - parent: 8364 - type: Transform -- uid: 6631 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,17.5 - parent: 8364 - type: Transform -- uid: 6632 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,17.5 - parent: 8364 - type: Transform -- uid: 6633 - type: DisposalUnit - components: - - pos: -18.5,22.5 - parent: 8364 - type: Transform -- uid: 6634 - type: AirlockGlass - components: - - pos: 8.5,18.5 - parent: 8364 - type: Transform -- uid: 6635 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,17.5 - parent: 8364 - type: Transform -- uid: 6636 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 8364 - type: Transform -- uid: 6637 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 8364 - type: Transform -- uid: 6638 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,17.5 - parent: 8364 - type: Transform -- uid: 6639 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,17.5 - parent: 8364 - type: Transform -- uid: 6640 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,17.5 - parent: 8364 - type: Transform -- uid: 6641 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,17.5 - parent: 8364 - type: Transform -- uid: 6642 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -53.5,12.5 - parent: 8364 - type: Transform -- uid: 6643 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,17.5 - parent: 8364 - type: Transform -- uid: 6644 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,17.5 - parent: 8364 - type: Transform -- uid: 6645 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,16.5 - parent: 8364 - type: Transform -- uid: 6646 - type: AirAlarm - components: - - pos: 11.5,13.5 - parent: 8364 - type: Transform - - devices: - - 22640 - - 24368 - - 24373 - type: DeviceList -- uid: 6647 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,17.5 - parent: 8364 - type: Transform -- uid: 6648 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 19.5,17.5 - parent: 8364 - type: Transform -- uid: 6649 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 20.5,15.5 - parent: 8364 - type: Transform -- uid: 6650 - type: CableApcExtension - components: - - pos: 25.5,11.5 - parent: 8364 - type: Transform -- uid: 6651 - type: FirelockGlass - components: - - pos: 21.5,24.5 - parent: 8364 - type: Transform -- uid: 6652 - type: AirlockGlass - components: - - pos: 9.5,18.5 - parent: 8364 - type: Transform -- uid: 6653 - type: CableApcExtension - components: - - pos: 8.5,4.5 - parent: 8364 - type: Transform -- uid: 6654 - type: CableApcExtension - components: - - pos: 8.5,3.5 - parent: 8364 - type: Transform -- uid: 6655 - type: CableApcExtension - components: - - pos: 8.5,2.5 - parent: 8364 - type: Transform -- uid: 6656 - type: CableApcExtension - components: - - pos: 6.5,5.5 - parent: 8364 - type: Transform -- uid: 6657 - type: CableApcExtension - components: - - pos: 6.5,8.5 - parent: 8364 - type: Transform -- uid: 6658 - type: CableApcExtension - components: - - pos: 6.5,11.5 - parent: 8364 - type: Transform -- uid: 6659 - type: CableApcExtension - components: - - pos: 6.5,14.5 - parent: 8364 - type: Transform -- uid: 6660 - type: CableApcExtension - components: - - pos: 25.5,10.5 - parent: 8364 - type: Transform -- uid: 6661 - type: CableApcExtension - components: - - pos: 25.5,9.5 - parent: 8364 - type: Transform -- uid: 6662 - type: CableHV - components: - - pos: -18.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6663 - type: CableHV - components: - - pos: -18.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6664 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6665 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 39.5,7.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 6666 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 2.5,17.5 - parent: 8364 - type: Transform -- uid: 6667 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,10.5 - parent: 8364 - type: Transform -- uid: 6668 - type: RandomInstruments - components: - - pos: 11.5,14.5 - parent: 8364 - type: Transform -- uid: 6669 - type: FoodBreadBaguette - components: - - pos: 20.525175,6.354695 - parent: 8364 - type: Transform -- uid: 6670 - type: Bed - components: - - pos: 6.5,6.5 - parent: 8364 - type: Transform -- uid: 6671 - type: WallReinforced - components: - - pos: 45.5,13.5 - parent: 8364 - type: Transform -- uid: 6672 - type: AirlockMaintLocked - components: - - pos: 1.5,11.5 - parent: 8364 - type: Transform -- uid: 6673 - type: PottedPlantRandom - components: - - pos: 20.5,0.5 - parent: 8364 - type: Transform -- uid: 6674 - type: CableMV - components: - - pos: 19.5,32.5 - parent: 8364 - type: Transform -- uid: 6675 - type: Dresser - components: - - pos: 15.5,15.5 - parent: 8364 - type: Transform -- uid: 6676 - type: Dresser - components: - - pos: 4.5,5.5 - parent: 8364 - type: Transform -- uid: 6677 - type: WaterCooler - components: - - pos: 20.5,8.5 - parent: 8364 - type: Transform -- uid: 6678 - type: PottedPlantRandom - components: - - pos: 27.5,8.5 - parent: 8364 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 6679 - type: AirlockTheatreLocked - components: - - name: Theatre - type: MetaData - - pos: 21.5,1.5 - parent: 8364 - type: Transform -- uid: 6680 - type: ChairWood - components: - - pos: 20.5,-8.5 - parent: 8364 - type: Transform -- uid: 6681 - type: TableWood - components: - - pos: 20.5,3.5 - parent: 8364 - type: Transform -- uid: 6682 - type: FirelockGlass - components: - - pos: 15.5,-10.5 - parent: 8364 - type: Transform -- uid: 6683 - type: FirelockGlass - components: - - pos: 14.5,-10.5 - parent: 8364 - type: Transform -- uid: 6684 - type: FirelockGlass - components: - - pos: 16.5,-23.5 - parent: 8364 - type: Transform -- uid: 6685 - type: FirelockGlass - components: - - pos: 16.5,-10.5 - parent: 8364 - type: Transform -- uid: 6686 - type: FirelockGlass - components: - - pos: 14.5,-23.5 - parent: 8364 - type: Transform -- uid: 6687 - type: FirelockGlass - components: - - pos: 15.5,-23.5 - parent: 8364 - type: Transform -- uid: 6688 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: 22.5,6.5 - parent: 8364 - type: Transform -- uid: 6689 - type: LampBanana - components: - - pos: 20.577366,3.8552704 - parent: 8364 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 6690 - type: FirelockGlass - components: - - pos: 8.5,-29.5 - parent: 8364 - type: Transform -- uid: 6691 - type: DisposalUnit - components: - - pos: 22.5,4.5 - parent: 8364 - type: Transform -- uid: 6692 - type: APCHighCapacity - components: - - rot: 1.5707963267948966 rad - pos: 19.5,4.5 - parent: 8364 - type: Transform -- uid: 6693 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,4.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6694 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 22.5,4.5 - parent: 8364 - type: Transform -- uid: 6695 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 22.5,5.5 - parent: 8364 - type: Transform -- uid: 6696 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,5.5 - parent: 8364 - type: Transform -- uid: 6697 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: 24.5,5.5 - parent: 8364 - type: Transform -- uid: 6698 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,6.5 - parent: 8364 - type: Transform -- uid: 6699 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,7.5 - parent: 8364 - type: Transform -- uid: 6700 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,8.5 - parent: 8364 - type: Transform -- uid: 6701 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 24.5,9.5 - parent: 8364 - type: Transform -- uid: 6702 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 25.5,9.5 - parent: 8364 - type: Transform -- uid: 6703 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,10.5 - parent: 8364 - type: Transform -- uid: 6704 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,11.5 - parent: 8364 - type: Transform -- uid: 6705 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,12.5 - parent: 8364 - type: Transform -- uid: 6706 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,13.5 - parent: 8364 - type: Transform -- uid: 6707 - type: DisposalBend - components: - - pos: 25.5,14.5 - parent: 8364 - type: Transform -- uid: 6708 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,14.5 - parent: 8364 - type: Transform -- uid: 6709 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,14.5 - parent: 8364 - type: Transform -- uid: 6710 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 22.5,14.5 - parent: 8364 - type: Transform -- uid: 6711 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,14.5 - parent: 8364 - type: Transform -- uid: 6712 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,14.5 - parent: 8364 - type: Transform -- uid: 6713 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 19.5,14.5 - parent: 8364 - type: Transform -- uid: 6714 - type: FirelockGlass - components: - - pos: 8.5,-30.5 - parent: 8364 - type: Transform -- uid: 6715 - type: SubstationBasic - components: - - name: Starboard Bow Service Substation - type: MetaData - - pos: 43.5,7.5 - parent: 8364 - type: Transform -- uid: 6716 - type: Table - components: - - pos: 43.5,6.5 - parent: 8364 - type: Transform -- uid: 6717 - type: Table - components: - - pos: 43.5,5.5 - parent: 8364 - type: Transform -- uid: 6718 - type: CableHV - components: - - pos: 32.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6719 - type: CableHV - components: - - pos: 33.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6720 - type: CableHV - components: - - pos: 19.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6721 - type: CableHV - components: - - pos: 34.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6722 - type: CableHV - components: - - pos: 35.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6723 - type: CableHV - components: - - pos: 36.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6724 - type: CableHV - components: - - pos: 36.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6725 - type: CableHV - components: - - pos: 36.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6726 - type: CableHV - components: - - pos: 36.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6727 - type: CableHV - components: - - pos: 36.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6728 - type: CableHV - components: - - pos: 36.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6729 - type: CableHV - components: - - pos: 37.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6730 - type: CableHV - components: - - pos: 38.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6731 - type: CableHV - components: - - pos: 39.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6732 - type: CableHV - components: - - pos: 40.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6733 - type: CableHV - components: - - pos: 40.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6734 - type: CableHV - components: - - pos: 40.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6735 - type: CableHV - components: - - pos: 40.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6736 - type: CableHV - components: - - pos: 41.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6737 - type: CableHV - components: - - pos: 42.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6738 - type: CableHV - components: - - pos: 43.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6739 - type: CableHV - components: - - pos: 18.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6740 - type: CableHV - components: - - pos: 44.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6741 - type: CableHV - components: - - pos: 46.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6742 - type: CableHV - components: - - pos: 45.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6743 - type: CableHV - components: - - pos: 47.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6744 - type: CableHV - components: - - pos: 47.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6745 - type: CableHV - components: - - pos: 47.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6746 - type: CableHV - components: - - pos: 47.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6747 - type: CableHV - components: - - pos: 48.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6748 - type: CableHV - components: - - pos: 49.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6749 - type: CableHV - components: - - pos: 49.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6750 - type: CableHV - components: - - pos: 49.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6751 - type: CableHV - components: - - pos: 49.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6752 - type: CableHV - components: - - pos: 17.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6753 - type: CableHV - components: - - pos: 49.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6754 - type: CableHV - components: - - pos: 49.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6755 - type: CableHV - components: - - pos: 49.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6756 - type: CableHV - components: - - pos: 49.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6757 - type: CableHV - components: - - pos: 49.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6758 - type: CableHV - components: - - pos: 49.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6759 - type: CableHV - components: - - pos: 49.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6760 - type: FirelockGlass - components: - - pos: -16.5,-20.5 - parent: 8364 - type: Transform -- uid: 6761 - type: CableHV - components: - - pos: 49.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6762 - type: CableHV - components: - - pos: 49.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6763 - type: CableHV - components: - - pos: 49.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6764 - type: CableHV - components: - - pos: 49.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6765 - type: CableHV - components: - - pos: 49.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6766 - type: CableHV - components: - - pos: 16.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6767 - type: CableHV - components: - - pos: 5.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6768 - type: CableHV - components: - - pos: 4.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6769 - type: CableHV - components: - - pos: 3.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6770 - type: CableHV - components: - - pos: 2.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6771 - type: CableHV - components: - - pos: 1.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6772 - type: CableHV - components: - - pos: 0.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6773 - type: CableHV - components: - - pos: -0.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6774 - type: CableHV - components: - - pos: -2.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6775 - type: CableHV - components: - - pos: -3.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6776 - type: CableHV - components: - - pos: -8.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6777 - type: CableHV - components: - - pos: -6.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6778 - type: CableHV - components: - - pos: -1.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6779 - type: CableHV - components: - - pos: 49.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6780 - type: CableHV - components: - - pos: 49.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6781 - type: CableHV - components: - - pos: 49.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6782 - type: CableHV - components: - - pos: 49.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6783 - type: CableHV - components: - - pos: 49.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6784 - type: CableHV - components: - - pos: 49.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6785 - type: CableHV - components: - - pos: 49.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6786 - type: CableHV - components: - - pos: 49.5,-38.5 - parent: 8364 - type: Transform -- uid: 6787 - type: CableHV - components: - - pos: 49.5,-37.5 - parent: 8364 - type: Transform -- uid: 6788 - type: CableHV - components: - - pos: 49.5,-36.5 - parent: 8364 - type: Transform -- uid: 6789 - type: CableHV - components: - - pos: 49.5,-35.5 - parent: 8364 - type: Transform -- uid: 6790 - type: CableHV - components: - - pos: 49.5,-34.5 - parent: 8364 - type: Transform -- uid: 6791 - type: CableHV - components: - - pos: 49.5,-33.5 - parent: 8364 - type: Transform -- uid: 6792 - type: CableHV - components: - - pos: 49.5,-32.5 - parent: 8364 - type: Transform -- uid: 6793 - type: CableHV - components: - - pos: 49.5,-31.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6794 - type: CableHV - components: - - pos: 49.5,-30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6795 - type: CableHV - components: - - pos: 49.5,-29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6796 - type: CableHV - components: - - pos: 49.5,-28.5 - parent: 8364 - type: Transform -- uid: 6797 - type: CableHV - components: - - pos: 49.5,-27.5 - parent: 8364 - type: Transform -- uid: 6798 - type: CableHV - components: - - pos: 49.5,-26.5 - parent: 8364 - type: Transform -- uid: 6799 - type: CableHV - components: - - pos: 49.5,-25.5 - parent: 8364 - type: Transform -- uid: 6800 - type: CableHV - components: - - pos: 49.5,-24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6801 - type: CableHV - components: - - pos: 49.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6802 - type: CableHV - components: - - pos: 49.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6803 - type: CableHV - components: - - pos: 49.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6804 - type: CableHV - components: - - pos: 49.5,-20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6805 - type: CableHV - components: - - pos: 49.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6806 - type: CableHV - components: - - pos: 49.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6807 - type: CableHV - components: - - pos: 49.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6808 - type: CableHV - components: - - pos: 49.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6809 - type: CableHV - components: - - pos: 49.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6810 - type: CableHV - components: - - pos: 49.5,-14.5 - parent: 8364 - type: Transform -- uid: 6811 - type: CableHV - components: - - pos: 49.5,-13.5 - parent: 8364 - type: Transform -- uid: 6812 - type: CableHV - components: - - pos: 50.5,-13.5 - parent: 8364 - type: Transform -- uid: 6813 - type: CableHV - components: - - pos: 51.5,-13.5 - parent: 8364 - type: Transform -- uid: 6814 - type: CableHV - components: - - pos: 51.5,-12.5 - parent: 8364 - type: Transform -- uid: 6815 - type: CableHV - components: - - pos: 51.5,-11.5 - parent: 8364 - type: Transform -- uid: 6816 - type: CableHV - components: - - pos: 51.5,-10.5 - parent: 8364 - type: Transform -- uid: 6817 - type: CableHV - components: - - pos: 51.5,-9.5 - parent: 8364 - type: Transform -- uid: 6818 - type: CableHV - components: - - pos: 51.5,-8.5 - parent: 8364 - type: Transform -- uid: 6819 - type: CableHV - components: - - pos: 51.5,-7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6820 - type: CableHV - components: - - pos: 51.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6821 - type: CableHV - components: - - pos: 51.5,-5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6822 - type: CableHV - components: - - pos: 51.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6823 - type: CableHV - components: - - pos: 51.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6824 - type: CableHV - components: - - pos: 51.5,-2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6825 - type: CableHV - components: - - pos: 51.5,-1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6826 - type: CableHV - components: - - pos: 51.5,-0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6827 - type: CableHV - components: - - pos: 51.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6828 - type: CableHV - components: - - pos: 51.5,1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6829 - type: CableHV - components: - - pos: 51.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6830 - type: CableHV - components: - - pos: 51.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6831 - type: CableHV - components: - - pos: 51.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6832 - type: CableHV - components: - - pos: 52.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6833 - type: CableHV - components: - - pos: 53.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6834 - type: CableHV - components: - - pos: 54.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6835 - type: CableHV - components: - - pos: 54.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6836 - type: CableHV - components: - - pos: 54.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6837 - type: CableHV - components: - - pos: 54.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6838 - type: CableHV - components: - - pos: 54.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6839 - type: CableHV - components: - - pos: 54.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6840 - type: CableHV - components: - - pos: 54.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6841 - type: CableHV - components: - - pos: 53.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6842 - type: CableHV - components: - - pos: 52.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6843 - type: CableHV - components: - - pos: 51.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6844 - type: CableHV - components: - - pos: 50.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6845 - type: CableHV - components: - - pos: 49.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6846 - type: CableHV - components: - - pos: 48.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6847 - type: CableHV - components: - - pos: 47.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6848 - type: CableHV - components: - - pos: 46.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6849 - type: CableHV - components: - - pos: 45.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6850 - type: CableHV - components: - - pos: 45.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6851 - type: CableHV - components: - - pos: 45.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6852 - type: CableHV - components: - - pos: 45.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6853 - type: CableHV - components: - - pos: 45.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6854 - type: CableHV - components: - - pos: 45.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6855 - type: CableHV - components: - - pos: 45.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6856 - type: CableHV - components: - - pos: 45.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6857 - type: CableHV - components: - - pos: 44.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6858 - type: CableHV - components: - - pos: 43.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6859 - type: CableHV - components: - - pos: 42.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6860 - type: CableHV - components: - - pos: 42.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6861 - type: CableHV - components: - - pos: 42.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6862 - type: CableHV - components: - - pos: 42.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6863 - type: CableHV - components: - - pos: 42.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6864 - type: CableHV - components: - - pos: 43.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6865 - type: CableMV - components: - - pos: 43.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6866 - type: CableMV - components: - - pos: 42.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6867 - type: CableMV - components: - - pos: 42.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6868 - type: CableMV - components: - - pos: 42.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6869 - type: CableMV - components: - - pos: 42.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6870 - type: CableMV - components: - - pos: 42.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6871 - type: CableMV - components: - - pos: 40.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6872 - type: CableMV - components: - - pos: 38.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6873 - type: CableMV - components: - - pos: 36.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6874 - type: CableMV - components: - - pos: 34.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6875 - type: CableMV - components: - - pos: 32.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6876 - type: CableMV - components: - - pos: 30.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6877 - type: CableMV - components: - - pos: 28.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6878 - type: CableMV - components: - - pos: 24.5,11.5 - parent: 8364 - type: Transform -- uid: 6879 - type: CableMV - components: - - pos: 24.5,9.5 - parent: 8364 - type: Transform -- uid: 6880 - type: CableMV - components: - - pos: 24.5,7.5 - parent: 8364 - type: Transform -- uid: 6881 - type: CableMV - components: - - pos: 31.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6882 - type: Wrench - components: - - pos: 39.5,6.5 - parent: 8364 - type: Transform -- uid: 6883 - type: CableHV - components: - - pos: 19.5,15.5 - parent: 8364 - type: Transform -- uid: 6884 - type: CableHV - components: - - pos: 19.5,13.5 - parent: 8364 - type: Transform -- uid: 6885 - type: CableMV - components: - - pos: 27.5,3.5 - parent: 8364 - type: Transform -- uid: 6886 - type: CableMV - components: - - pos: 26.5,3.5 - parent: 8364 - type: Transform -- uid: 6887 - type: CableMV - components: - - pos: 25.5,3.5 - parent: 8364 - type: Transform -- uid: 6888 - type: CableMV - components: - - pos: 24.5,3.5 - parent: 8364 - type: Transform -- uid: 6889 - type: CableMV - components: - - pos: 24.5,4.5 - parent: 8364 - type: Transform -- uid: 6890 - type: CableMV - components: - - pos: 24.5,5.5 - parent: 8364 - type: Transform -- uid: 6891 - type: CableMV - components: - - pos: 23.5,5.5 - parent: 8364 - type: Transform -- uid: 6892 - type: CableMV - components: - - pos: 22.5,5.5 - parent: 8364 - type: Transform -- uid: 6893 - type: CableMV - components: - - pos: 21.5,5.5 - parent: 8364 - type: Transform -- uid: 6894 - type: CableMV - components: - - pos: 20.5,5.5 - parent: 8364 - type: Transform -- uid: 6895 - type: CableMV - components: - - pos: 20.5,4.5 - parent: 8364 - type: Transform -- uid: 6896 - type: CableMV - components: - - pos: 19.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6897 - type: CableApcExtension - components: - - pos: 20.5,4.5 - parent: 8364 - type: Transform -- uid: 6898 - type: CableApcExtension - components: - - pos: 19.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6899 - type: CableApcExtension - components: - - pos: 21.5,4.5 - parent: 8364 - type: Transform -- uid: 6900 - type: CableApcExtension - components: - - pos: 21.5,3.5 - parent: 8364 - type: Transform -- uid: 6901 - type: CableApcExtension - components: - - pos: 21.5,2.5 - parent: 8364 - type: Transform -- uid: 6902 - type: CableApcExtension - components: - - pos: 21.5,1.5 - parent: 8364 - type: Transform -- uid: 6903 - type: CableApcExtension - components: - - pos: 21.5,0.5 - parent: 8364 - type: Transform -- uid: 6904 - type: CableApcExtension - components: - - pos: 21.5,-0.5 - parent: 8364 - type: Transform -- uid: 6905 - type: CableApcExtension - components: - - pos: 22.5,-0.5 - parent: 8364 - type: Transform -- uid: 6906 - type: CableApcExtension - components: - - pos: 20.5,-0.5 - parent: 8364 - type: Transform -- uid: 6907 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 20.5,10.5 - parent: 8364 - type: Transform -- uid: 6908 - type: ReinforcedWindow - components: - - pos: 2.5,-25.5 - parent: 8364 - type: Transform -- uid: 6909 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 20.5,12.5 - parent: 8364 - type: Transform -- uid: 6910 - type: FirelockGlass - components: - - pos: -17.5,-20.5 - parent: 8364 - type: Transform -- uid: 6911 - type: FirelockGlass - components: - - pos: 8.5,-31.5 - parent: 8364 - type: Transform -- uid: 6912 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: 20.5,11.5 - parent: 8364 - type: Transform -- uid: 6913 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 25.5,11.5 - parent: 8364 - type: Transform -- uid: 6914 - type: PlushieCarp - components: - - pos: 23.5,12.5 - parent: 8364 - type: Transform -- uid: 6915 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 25.5,13.5 - parent: 8364 - type: Transform -- uid: 6916 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 - parent: 8364 - type: Transform -- uid: 6917 - type: FirelockGlass - components: - - pos: -9.5,-31.5 - parent: 8364 - type: Transform -- uid: 6918 - type: WardrobeWhiteFilled - components: - - pos: 14.5,8.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6919 - type: TableGlass - components: - - pos: 21.5,10.5 - parent: 8364 - type: Transform -- uid: 6920 - type: WardrobeYellowFilled - components: - - pos: 13.5,8.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6921 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 13.5,4.5 - parent: 8364 - type: Transform -- uid: 6922 - type: PlasticFlapsAirtightClear - components: - - pos: 26.5,24.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 6923 - type: MedkitFilled - components: - - pos: 22.595015,9.598176 - parent: 8364 - type: Transform -- uid: 6924 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: 21.5,15.5 - parent: 8364 - type: Transform -- uid: 6925 - type: CableApcExtension - components: - - pos: -1.5,-16.5 - parent: 8364 - type: Transform -- uid: 6926 - type: WardrobePinkFilled - components: - - pos: 25.5,15.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6927 - type: WardrobeMixedFilled - components: - - pos: 26.5,15.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6928 - type: Table - components: - - pos: 20.5,6.5 - parent: 8364 - type: Transform -- uid: 6929 - type: Poweredlight - components: - - pos: 22.5,0.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6930 - type: IntercomMedical - components: - - pos: 28.5,-15.5 - parent: 8364 - type: Transform -- uid: 6931 - type: IntercomEngineering - components: - - pos: -14.5,-67.5 - parent: 8364 - type: Transform -- uid: 6932 - type: Table - components: - - pos: 26.5,-3.5 - parent: 8364 - type: Transform -- uid: 6933 - type: Intercom - components: - - pos: 56.5,-11.5 - parent: 8364 - type: Transform -- uid: 6934 - type: IntercomScience - components: - - rot: 3.141592653589793 rad - pos: 67.5,-16.5 - parent: 8364 - type: Transform -- uid: 6935 - type: BookEscalationSecurity - components: - - pos: 61.552563,-2.5110905 - parent: 8364 - type: Transform -- uid: 6936 - type: CheapLighter - components: - - pos: 28.5,-4.5 - parent: 8364 - type: Transform -- uid: 6937 - type: TableReinforced - components: - - pos: 28.5,-5.5 - parent: 8364 - type: Transform -- uid: 6938 - type: TableReinforced - components: - - pos: 28.5,-6.5 - parent: 8364 - type: Transform -- uid: 6939 - type: TableReinforced - components: - - pos: 28.5,-7.5 - parent: 8364 - type: Transform -- uid: 6940 - type: TableReinforced - components: - - pos: 28.5,-8.5 - parent: 8364 - type: Transform -- uid: 6941 - type: TableReinforced - components: - - pos: 29.5,-8.5 - parent: 8364 - type: Transform -- uid: 6942 - type: Table - components: - - pos: 20.5,5.5 - parent: 8364 - type: Transform -- uid: 6943 - type: Table - components: - - pos: 31.5,-6.5 - parent: 8364 - type: Transform -- uid: 6944 - type: Table - components: - - pos: 31.5,-3.5 - parent: 8364 - type: Transform -- uid: 6945 - type: TableWood - components: - - pos: 31.5,-1.5 - parent: 8364 - type: Transform -- uid: 6946 - type: TableWood - components: - - pos: 29.5,0.5 - parent: 8364 - type: Transform -- uid: 6947 - type: TableWood - components: - - pos: 29.5,1.5 - parent: 8364 - type: Transform -- uid: 6948 - type: SpawnPointServiceWorker - components: - - pos: 27.5,-5.5 - parent: 8364 - type: Transform -- uid: 6949 - type: ReinforcedWindow - components: - - pos: 0.5,-3.5 - parent: 8364 - type: Transform -- uid: 6950 - type: TableCarpet - components: - - pos: 24.5,-8.5 - parent: 8364 - type: Transform -- uid: 6951 - type: TableWood - components: - - pos: 23.5,-3.5 - parent: 8364 - type: Transform -- uid: 6952 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 22.5,-7.5 - parent: 8364 - type: Transform -- uid: 6953 - type: ReinforcedWindow - components: - - pos: -1.5,-3.5 - parent: 8364 - type: Transform -- uid: 6954 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 18.5,-10.5 - parent: 8364 - type: Transform -- uid: 6955 - type: ReinforcedWindow - components: - - pos: 1.5,-3.5 - parent: 8364 - type: Transform -- uid: 6956 - type: ReinforcedWindow - components: - - pos: -4.5,-3.5 - parent: 8364 - type: Transform -- uid: 6957 - type: ChairWood - components: - - pos: 18.5,-8.5 - parent: 8364 - type: Transform -- uid: 6958 - type: VendingMachineCondiments - components: - - flags: SessionSpecific - type: MetaData - - pos: 26.5,-3.5 - parent: 8364 - type: Transform -- uid: 6959 - type: ReinforcedWindow - components: - - pos: -5.5,-3.5 - parent: 8364 - type: Transform -- uid: 6960 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-4.5 - parent: 8364 - type: Transform -- uid: 6961 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-5.5 - parent: 8364 - type: Transform -- uid: 6962 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-6.5 - parent: 8364 - type: Transform -- uid: 6963 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-7.5 - parent: 8364 - type: Transform -- uid: 6964 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 8364 - type: Transform -- uid: 6965 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 28.5,-9.5 - parent: 8364 - type: Transform -- uid: 6966 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 25.5,12.5 - parent: 8364 - type: Transform -- uid: 6967 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 29.5,-9.5 - parent: 8364 - type: Transform -- uid: 6968 - type: ChairWood - components: - - pos: 19.5,-8.5 - parent: 8364 - type: Transform -- uid: 6969 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 20.5,-3.5 - parent: 8364 - type: Transform -- uid: 6970 - type: WindowDirectional - components: - - pos: 18.5,-4.5 - parent: 8364 - type: Transform -- uid: 6971 - type: SpaceVillainArcadeFilled - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-1.5 - parent: 8364 - type: Transform -- uid: 6972 - type: BlockGameArcade - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-0.5 - parent: 8364 - type: Transform -- uid: 6973 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-10.5 - parent: 8364 - type: Transform -- uid: 6974 - type: WindowDirectional - components: - - pos: 19.5,-4.5 - parent: 8364 - type: Transform -- uid: 6975 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-2.5 - parent: 8364 - type: Transform -- uid: 6976 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-1.5 - parent: 8364 - type: Transform -- uid: 6977 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-0.5 - parent: 8364 - type: Transform -- uid: 6978 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 19.5,-10.5 - parent: 8364 - type: Transform -- uid: 6979 - type: ChairWood - components: - - pos: 20.5,-5.5 - parent: 8364 - type: Transform -- uid: 6980 - type: TableWood - components: - - pos: 20.5,-6.5 - parent: 8364 - type: Transform -- uid: 6981 - type: DisposalUnit - components: - - pos: 27.5,0.5 - parent: 8364 - type: Transform -- uid: 6982 - type: TableCarpet - components: - - pos: 23.5,-8.5 - parent: 8364 - type: Transform -- uid: 6983 - type: FoodBanana - components: - - pos: 20.37424,5.7458954 - parent: 8364 - type: Transform -- uid: 6984 - type: Wrench - components: - - pos: 29.5,1.5 - parent: 8364 - type: Transform -- uid: 6985 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 21.5,3.5 - parent: 8364 - type: Transform -- uid: 6986 - type: SignKiddiePlaque - components: - - pos: -30.5,7.5 - parent: 8364 - type: Transform -- uid: 6987 - type: Dresser - components: - - pos: 20.5,4.5 - parent: 8364 - type: Transform -- uid: 6988 - type: ClothingHeadHatTophat - components: - - pos: 28.5,-6.5 - parent: 8364 - type: Transform -- uid: 6989 - type: WindowDirectional - components: - - pos: 20.5,-7.5 - parent: 8364 - type: Transform -- uid: 6990 - type: Table - components: - - pos: 30.5,11.5 - parent: 8364 - type: Transform -- uid: 6991 - type: TableReinforced - components: - - pos: 28.5,-4.5 - parent: 8364 - type: Transform -- uid: 6992 - type: KitchenMicrowave - components: - - pos: 38.5,-7.5 - parent: 8364 - type: Transform -- uid: 6993 - type: Grille - components: - - pos: 27.5,1.5 - parent: 8364 - type: Transform -- uid: 6994 - type: ComfyChair - components: - - pos: 22.5,3.5 - parent: 8364 - type: Transform -- uid: 6995 - type: TableWood - components: - - pos: 22.5,2.5 - parent: 8364 - type: Transform -- uid: 6996 - type: AirlockAtmosphericsLocked - components: - - pos: 40.5,4.5 - parent: 8364 - type: Transform -- uid: 6997 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-8.5 - parent: 8364 - type: Transform -- uid: 6998 - type: AirlockGlass - components: - - pos: 22.5,-11.5 - parent: 8364 - type: Transform -- uid: 6999 - type: AirlockGlass - components: - - name: Bar - type: MetaData - - pos: 24.5,-11.5 - parent: 8364 - type: Transform -- uid: 7000 - type: CableApcExtension - components: - - pos: 23.5,-9.5 - parent: 8364 - type: Transform -- uid: 7001 - type: WeaponCapacitorRecharger - components: - - pos: 30.5,11.5 - parent: 8364 - type: Transform -- uid: 7002 - type: KitchenReagentGrinder - components: - - pos: 40.5,-8.5 - parent: 8364 - type: Transform -- uid: 7003 - type: CarpetGreen - components: - - pos: 74.5,-9.5 - parent: 8364 - type: Transform -- uid: 7004 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-8.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7005 - type: WallReinforced - components: - - pos: 1.5,-28.5 - parent: 8364 - type: Transform -- uid: 7006 - type: CableApcExtension - components: - - pos: 26.5,-9.5 - parent: 8364 - type: Transform -- uid: 7007 - type: CableApcExtension - components: - - pos: 27.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7008 - type: FoodBoxDonut - components: - - pos: 35.5,-10.5 - parent: 8364 - type: Transform -- uid: 7009 - type: CableApcExtension - components: - - pos: -33.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7010 - type: AirlockExternalGlassCargoLocked - components: - - pos: -33.5,-37.5 - parent: 8364 - type: Transform -- uid: 7011 - type: LockerFreezer - components: - - pos: 35.5,0.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 234.99966 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 7012 - type: Poweredlight - components: - - pos: 22.5,0.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7013 - type: CarpetGreen - components: - - pos: 64.5,-9.5 - parent: 8364 - type: Transform -- uid: 7014 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-10.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7015 - type: CableApcExtension - components: - - pos: 22.5,-4.5 - parent: 8364 - type: Transform -- uid: 7016 - type: WallSolid - components: - - pos: 31.5,2.5 - parent: 8364 - type: Transform -- uid: 7017 - type: Beaker - components: - - pos: 36.5,-7.5 - parent: 8364 - type: Transform -- uid: 7018 - type: CableApcExtension - components: - - pos: 26.5,-5.5 - parent: 8364 - type: Transform -- uid: 7019 - type: CableApcExtension - components: - - pos: 19.5,-8.5 - parent: 8364 - type: Transform -- uid: 7020 - type: CableApcExtension - components: - - pos: 20.5,-5.5 - parent: 8364 - type: Transform -- uid: 7021 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -13.5,-69.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7022 - type: CarpetGreen - components: - - pos: 68.5,-6.5 - parent: 8364 - type: Transform -- uid: 7023 - type: WallSolid - components: - - pos: 28.5,-3.5 - parent: 8364 - type: Transform -- uid: 7024 - type: CableMV - components: - - pos: 26.5,-3.5 - parent: 8364 - type: Transform -- uid: 7025 - type: CableApcExtension - components: - - pos: 25.5,-5.5 - parent: 8364 - type: Transform -- uid: 7026 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 24.5,0.5 - parent: 8364 - type: Transform -- uid: 7027 - type: Table - components: - - pos: 39.5,-4.5 - parent: 8364 - type: Transform -- uid: 7028 - type: CableApcExtension - components: - - pos: 30.5,-5.5 - parent: 8364 - type: Transform -- uid: 7029 - type: CableApcExtension - components: - - pos: 22.5,-9.5 - parent: 8364 - type: Transform -- uid: 7030 - type: CableApcExtension - components: - - pos: -33.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7031 - type: FirelockGlass - components: - - pos: 46.5,8.5 - parent: 8364 - type: Transform -- uid: 7032 - type: DisposalPipe - components: - - pos: 26.5,-1.5 - parent: 8364 - type: Transform -- uid: 7033 - type: CableApcExtension - components: - - pos: 32.5,-0.5 - parent: 8364 - type: Transform -- uid: 7034 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 23.5,13.5 - parent: 8364 - type: Transform -- uid: 7035 - type: CableApcExtension - components: - - pos: 19.5,-6.5 - parent: 8364 - type: Transform -- uid: 7036 - type: CarpetGreen - components: - - pos: 18.5,24.5 - parent: 8364 - type: Transform -- uid: 7037 - type: CableApcExtension - components: - - pos: 31.5,1.5 - parent: 8364 - type: Transform -- uid: 7038 - type: CarpetGreen - components: - - pos: 66.5,-9.5 - parent: 8364 - type: Transform -- uid: 7039 - type: CableMV - components: - - pos: -18.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7040 - type: FirelockGlass - components: - - pos: -35.5,-2.5 - parent: 8364 - type: Transform -- uid: 7041 - type: GasPipeStraight - components: - - pos: 69.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7042 - type: CableApcExtension - components: - - pos: 31.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7043 - type: FirelockGlass - components: - - pos: -52.5,-0.5 - parent: 8364 - type: Transform -- uid: 7044 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 - parent: 8364 - type: Transform -- uid: 7045 - type: FoodMealMint - components: - - pos: 35.5,-6.5 - parent: 8364 - type: Transform -- uid: 7046 - type: CarpetGreen - components: - - pos: 70.5,-10.5 - parent: 8364 - type: Transform -- uid: 7047 - type: ReinforcedWindow - components: - - pos: -33.5,-36.5 - parent: 8364 - type: Transform -- uid: 7048 - type: CableMV - components: - - pos: -17.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7049 - type: DisposalPipe - components: - - pos: 26.5,-0.5 - parent: 8364 - type: Transform -- uid: 7050 - type: Table - components: - - pos: 40.5,-8.5 - parent: 8364 - type: Transform -- uid: 7051 - type: DisposalTrunk - components: - - pos: 29.5,-3.5 - parent: 8364 - type: Transform -- uid: 7052 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-0.5 - parent: 8364 - type: Transform -- uid: 7053 - type: APCBasic - components: - - name: Port Quarter Maintenance APC - type: MetaData - - pos: -29.5,-63.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 55 - supplyRampPosition: 2.6408517 - type: PowerNetworkBattery -- uid: 7054 - type: CableApcExtension - components: - - pos: 30.5,-7.5 - parent: 8364 - type: Transform -- uid: 7055 - type: CableApcExtension - components: - - pos: 28.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7056 - type: GasPipeStraight - components: - - pos: 70.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7057 - type: Table - components: - - pos: 36.5,-6.5 - parent: 8364 - type: Transform -- uid: 7058 - type: TableReinforced - components: - - pos: 37.5,-10.5 - parent: 8364 - type: Transform -- uid: 7059 - type: FoodCondimentPacketPepper - components: - - pos: 35.780827,-7.280492 - parent: 8364 - type: Transform - - solution: food - type: RefillableSolution - - tags: [] - type: Tag -- uid: 7060 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 21.5,13.5 - parent: 8364 - type: Transform -- uid: 7061 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 21.5,12.5 - parent: 8364 - type: Transform -- uid: 7062 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 69.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7063 - type: WindowReinforcedDirectional - components: - - pos: 23.5,10.5 - parent: 8364 - type: Transform -- uid: 7064 - type: CableMV - components: - - pos: 28.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7065 - type: CableApcExtension - components: - - pos: 20.5,-9.5 - parent: 8364 - type: Transform -- uid: 7066 - type: CableMV - components: - - pos: 26.5,-2.5 - parent: 8364 - type: Transform -- uid: 7067 - type: PaintingMonkey - components: - - pos: 29.5,-2.5 - parent: 8364 - type: Transform -- uid: 7068 - type: ClothingHeadHatChef - components: - - pos: 39.5,-2.5 - parent: 8364 - type: Transform -- uid: 7069 - type: Sink - components: - - pos: 31.5,1.5 - parent: 8364 - type: Transform -- uid: 7070 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-1.5 - parent: 8364 - type: Transform -- uid: 7071 - type: GasPipeStraight - components: - - pos: 69.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7072 - type: GasPipeStraight - components: - - pos: 70.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7073 - type: ClothingBeltMilitaryWebbing - components: - - pos: 33.447113,-2.3700013 - parent: 8364 - type: Transform -- uid: 7074 - type: CarpetGreen - components: - - pos: 67.5,-8.5 - parent: 8364 - type: Transform -- uid: 7075 - type: WindowReinforcedDirectional - components: - - pos: 24.5,10.5 - parent: 8364 - type: Transform -- uid: 7076 - type: CableApcExtension - components: - - pos: 30.5,-8.5 - parent: 8364 - type: Transform -- uid: 7077 - type: CableApcExtension - components: - - pos: 26.5,-1.5 - parent: 8364 - type: Transform -- uid: 7078 - type: FirelockGlass - components: - - pos: -52.5,-2.5 - parent: 8364 - type: Transform -- uid: 7079 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7080 - type: CarpetGreen - components: - - pos: 64.5,-8.5 - parent: 8364 - type: Transform -- uid: 7081 - type: CableApcExtension - components: - - pos: 26.5,-3.5 - parent: 8364 - type: Transform -- uid: 7082 - type: CableApcExtension - components: - - pos: 26.5,-0.5 - parent: 8364 - type: Transform -- uid: 7083 - type: CableMV - components: - - pos: -18.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7084 - type: Mirror - components: - - pos: 11.5,-20.5 - parent: 8364 - type: Transform -- uid: 7085 - type: WindowDirectional - components: - - pos: 23.5,-2.5 - parent: 8364 - type: Transform -- uid: 7086 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7087 - type: CarpetGreen - components: - - pos: 66.5,-8.5 - parent: 8364 - type: Transform -- uid: 7088 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-4.5 - parent: 8364 - type: Transform -- uid: 7089 - type: Table - components: - - pos: 38.5,-4.5 - parent: 8364 - type: Transform -- uid: 7090 - type: CarpetGreen - components: - - pos: 18.5,25.5 - parent: 8364 - type: Transform -- uid: 7091 - type: Table - components: - - pos: 35.5,-6.5 - parent: 8364 - type: Transform -- uid: 7092 - type: CarpetGreen - components: - - pos: 68.5,-9.5 - parent: 8364 - type: Transform -- uid: 7093 - type: Chair - components: - - pos: 21.5,6.5 - parent: 8364 - type: Transform -- uid: 7094 - type: GasPipeStraight - components: - - pos: 69.5,-3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7095 - type: VendingMachineDinnerware - components: - - flags: SessionSpecific - name: Dinnerware - type: MetaData - - pos: 33.5,-4.5 - parent: 8364 - type: Transform -- uid: 7096 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7097 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 26.5,-4.5 - parent: 8364 - type: Transform -- uid: 7098 - type: CableApcExtension - components: - - pos: 0.5,-16.5 - parent: 8364 - type: Transform -- uid: 7099 - type: CableApcExtension - components: - - pos: 31.5,-0.5 - parent: 8364 - type: Transform -- uid: 7100 - type: WindowDirectional - components: - - pos: 24.5,-2.5 - parent: 8364 - type: Transform -- uid: 7101 - type: DisposalPipe - components: - - pos: 26.5,-2.5 - parent: 8364 - type: Transform -- uid: 7102 - type: CableMV - components: - - pos: 26.5,2.5 - parent: 8364 - type: Transform -- uid: 7103 - type: CableApcExtension - components: - - pos: 24.5,-9.5 - parent: 8364 - type: Transform -- uid: 7104 - type: CableApcExtension - components: - - pos: 19.5,-5.5 - parent: 8364 - type: Transform -- uid: 7105 - type: CableApcExtension - components: - - pos: 28.5,-9.5 - parent: 8364 - type: Transform -- uid: 7106 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-4.5 - parent: 8364 - type: Transform -- uid: 7107 - type: Windoor - components: - - name: Theatre Stage - type: MetaData - - rot: 1.5707963267948966 rad - pos: 24.5,-2.5 - parent: 8364 - type: Transform -- uid: 7108 - type: CableApcExtension - components: - - pos: 23.5,-4.5 - parent: 8364 - type: Transform -- uid: 7109 - type: Table - components: - - pos: 38.5,-6.5 - parent: 8364 - type: Transform -- uid: 7110 - type: CableApcExtension - components: - - pos: 30.5,-0.5 - parent: 8364 - type: Transform -- uid: 7111 - type: FoodBanana - components: - - pos: 20.608616,5.7458954 - parent: 8364 - type: Transform -- uid: 7112 - type: Table - components: - - pos: 35.5,-7.5 - parent: 8364 - type: Transform -- uid: 7113 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7114 - type: GasPipeStraight - components: - - pos: 69.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7115 - type: CableMV - components: - - pos: 26.5,-4.5 - parent: 8364 - type: Transform -- uid: 7116 - type: DisposalUnit - components: - - pos: 40.5,-9.5 - parent: 8364 - type: Transform -- uid: 7117 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 21.5,10.5 - parent: 8364 - type: Transform -- uid: 7118 - type: DisposalPipe - components: - - pos: 26.5,-3.5 - parent: 8364 - type: Transform -- uid: 7119 - type: Windoor - components: - - name: Fitness Ring - type: MetaData - - rot: -1.5707963267948966 rad - pos: 21.5,13.5 - parent: 8364 - type: Transform -- uid: 7120 - type: KitchenSpike - components: - - pos: 35.5,-2.5 - parent: 8364 - type: Transform -- uid: 7121 - type: CableApcExtension - components: - - pos: 25.5,-9.5 - parent: 8364 - type: Transform -- uid: 7122 - type: CableApcExtension - components: - - pos: 29.5,-9.5 - parent: 8364 - type: Transform -- uid: 7123 - type: CableApcExtension - components: - - pos: 19.5,-7.5 - parent: 8364 - type: Transform -- uid: 7124 - type: FoodCondimentPacketSalt - components: - - pos: 35.5152,-7.202367 - parent: 8364 - type: Transform - - solution: food - type: RefillableSolution - - tags: [] - type: Tag -- uid: 7125 - type: CableMV - components: - - pos: 26.5,0.5 - parent: 8364 - type: Transform -- uid: 7126 - type: WindowDirectional - components: - - pos: 21.5,-2.5 - parent: 8364 - type: Transform -- uid: 7127 - type: CarpetGreen - components: - - pos: 68.5,-4.5 - parent: 8364 - type: Transform -- uid: 7128 - type: WallSolid - components: - - pos: 31.5,-8.5 - parent: 8364 - type: Transform -- uid: 7129 - type: CableMV - components: - - pos: 26.5,-0.5 - parent: 8364 - type: Transform -- uid: 7130 - type: Table - components: - - pos: 36.5,-7.5 - parent: 8364 - type: Transform -- uid: 7131 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 21.5,11.5 - parent: 8364 - type: Transform -- uid: 7132 - type: DrinkShaker - components: - - pos: 29.5,1.5 - parent: 8364 - type: Transform -- uid: 7133 - type: CarpetGreen - components: - - pos: 65.5,-8.5 - parent: 8364 - type: Transform -- uid: 7134 - type: CableMV - components: - - pos: 26.5,-1.5 - parent: 8364 - type: Transform -- uid: 7135 - type: CableMV - components: - - pos: 27.5,-4.5 - parent: 8364 - type: Transform -- uid: 7136 - type: BarSignOfficerBeersky - components: - - pos: -34.5,17.5 - parent: 8364 - type: Transform -- uid: 7137 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,0.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7138 - type: CableApcExtension - components: - - pos: 28.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7139 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 8364 - type: Transform -- uid: 7140 - type: FirelockGlass - components: - - pos: -6.5,-1.5 - parent: 8364 - type: Transform -- uid: 7141 - type: CableMV - components: - - pos: -17.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7142 - type: CableApcExtension - components: - - pos: 27.5,-5.5 - parent: 8364 - type: Transform -- uid: 7143 - type: GasPipeStraight - components: - - pos: 70.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7144 - type: TableReinforced - components: - - pos: 38.5,-10.5 - parent: 8364 - type: Transform -- uid: 7145 - type: WindowDirectional - components: - - pos: 20.5,-2.5 - parent: 8364 - type: Transform -- uid: 7146 - type: FirelockGlass - components: - - pos: 5.5,-0.5 - parent: 8364 - type: Transform -- uid: 7147 - type: ReinforcedWindow - components: - - pos: -33.5,-38.5 - parent: 8364 - type: Transform -- uid: 7148 - type: FirelockGlass - components: - - pos: -6.5,-2.5 - parent: 8364 - type: Transform -- uid: 7149 - type: Catwalk - components: - - pos: -41.5,-37.5 - parent: 8364 - type: Transform -- uid: 7150 - type: FirelockGlass - components: - - pos: -6.5,-0.5 - parent: 8364 - type: Transform -- uid: 7151 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 8364 - type: Transform -- uid: 7152 - type: Windoor - components: - - name: Fitness Ring - type: MetaData - - rot: 1.5707963267948966 rad - pos: 24.5,10.5 - parent: 8364 - type: Transform -- uid: 7153 - type: CarpetGreen - components: - - pos: 69.5,-10.5 - parent: 8364 - type: Transform -- uid: 7154 - type: CarpetGreen - components: - - pos: 68.5,-8.5 - parent: 8364 - type: Transform -- uid: 7155 - type: TableReinforced - components: - - pos: 41.5,-6.5 - parent: 8364 - type: Transform -- uid: 7156 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7157 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 22.5,13.5 - parent: 8364 - type: Transform -- uid: 7158 - type: CableApcExtension - components: - - pos: 22.5,-5.5 - parent: 8364 - type: Transform -- uid: 7159 - type: CableApcExtension - components: - - pos: -29.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7160 - type: CableApcExtension - components: - - pos: 23.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7161 - type: AcousticGuitarInstrument - components: - - pos: 1.5367589,-59.420685 - parent: 8364 - type: Transform -- uid: 7162 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-31.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11322 - Forward: - - port: Left - uid: 11322 - Off: - - port: Middle - uid: 11322 - type: SignalReceiver -- uid: 7163 - type: CableApcExtension - components: - - pos: 30.5,-9.5 - parent: 8364 - type: Transform -- uid: 7164 - type: GasPipeStraight - components: - - pos: 70.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7165 - type: CableApcExtension - components: - - pos: 19.5,-9.5 - parent: 8364 - type: Transform -- uid: 7166 - type: TableReinforced - components: - - pos: 36.5,-10.5 - parent: 8364 - type: Transform -- uid: 7167 - type: CableApcExtension - components: - - pos: 27.5,-9.5 - parent: 8364 - type: Transform -- uid: 7168 - type: CableApcExtension - components: - - pos: 31.5,0.5 - parent: 8364 - type: Transform -- uid: 7169 - type: DisposalUnit - components: - - pos: 29.5,-3.5 - parent: 8364 - type: Transform -- uid: 7170 - type: Windoor - components: - - name: Theatre Stage - type: MetaData - - rot: -1.5707963267948966 rad - pos: 19.5,-2.5 - parent: 8364 - type: Transform -- uid: 7171 - type: Table - components: - - pos: 39.5,-2.5 - parent: 8364 - type: Transform -- uid: 7172 - type: CableApcExtension - components: - - pos: 24.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7173 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7174 - type: Mirror - components: - - pos: 32.5,1.5 - parent: 8364 - type: Transform -- uid: 7175 - type: ClothingShoesChef - components: - - pos: 38.47396,-2.6529508 - parent: 8364 - type: Transform -- uid: 7176 - type: CarpetGreen - components: - - pos: 68.5,-10.5 - parent: 8364 - type: Transform -- uid: 7177 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,23.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7178 - type: CableMV - components: - - pos: -17.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7179 - type: CableMV - components: - - pos: -17.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7180 - type: FirelockGlass - components: - - pos: -52.5,-1.5 - parent: 8364 - type: Transform -- uid: 7181 - type: CarpetGreen - components: - - pos: 68.5,-5.5 - parent: 8364 - type: Transform -- uid: 7182 - type: CableMV - components: - - pos: -17.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7183 - type: CableApcExtension - components: - - pos: 26.5,-4.5 - parent: 8364 - type: Transform -- uid: 7184 - type: SubstationBasic - components: - - name: Port Quarter Maintenance Substation - type: MetaData - - pos: -28.5,-64.5 - parent: 8364 - type: Transform -- uid: 7185 - type: CableApcExtension - components: - - pos: 23.5,24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7186 - type: CableMV - components: - - pos: 25.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7187 - type: CableApcExtension - components: - - pos: 23.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7188 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 27.5,23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7189 - type: CableApcExtension - components: - - pos: 24.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7190 - type: CableApcExtension - components: - - pos: 30.5,-6.5 - parent: 8364 - type: Transform -- uid: 7191 - type: BikeHorn - components: - - pos: 20.5,5.5 - parent: 8364 - type: Transform -- uid: 7192 - type: CableApcExtension - components: - - pos: 28.5,-5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7193 - type: Grille - components: - - pos: -33.5,-36.5 - parent: 8364 - type: Transform -- uid: 7194 - type: CableMV - components: - - pos: -17.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7195 - type: CableApcExtension - components: - - pos: 25.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7196 - type: Paper - components: - - pos: 20.509228,6.5730886 - parent: 8364 - type: Transform -- uid: 7197 - type: Grille - components: - - pos: -33.5,-38.5 - parent: 8364 - type: Transform -- uid: 7198 - type: FoodBoxDonkpocket - components: - - pos: 36.5,-7.5 - parent: 8364 - type: Transform -- uid: 7199 - type: CableMV - components: - - pos: 24.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7200 - type: CableMV - components: - - pos: -17.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7201 - type: CableHV - components: - - pos: 24.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7202 - type: CableApcExtension - components: - - pos: 22.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7203 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-4.5 - parent: 8364 - type: Transform -- uid: 7204 - type: CableApcExtension - components: - - pos: 27.5,24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7205 - type: CableApcExtension - components: - - pos: 21.5,-5.5 - parent: 8364 - type: Transform -- uid: 7206 - type: ClosetChefFilled - components: - - pos: 37.5,-4.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7207 - type: CableApcExtension - components: - - pos: 21.5,-9.5 - parent: 8364 - type: Transform -- uid: 7208 - type: Table - components: - - pos: 37.5,-6.5 - parent: 8364 - type: Transform -- uid: 7209 - type: AtmosDeviceFanTiny - components: - - pos: 36.5,-3.5 - parent: 8364 - type: Transform -- uid: 7210 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 8364 - type: Transform -- uid: 7211 - type: WindowReinforcedDirectional - components: - - pos: 21.5,10.5 - parent: 8364 - type: Transform -- uid: 7212 - type: WindowDirectional - components: - - pos: 22.5,-2.5 - parent: 8364 - type: Transform -- uid: 7213 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-31.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11322 - Forward: - - port: Left - uid: 11322 - Off: - - port: Middle - uid: 11322 - type: SignalReceiver -- uid: 7214 - type: WallReinforced - components: - - pos: 81.5,-55.5 - parent: 8364 - type: Transform -- uid: 7215 - type: ReinforcedWindow - components: - - pos: 76.5,-48.5 - parent: 8364 - type: Transform -- uid: 7216 - type: GasPipeStraight - components: - - pos: 69.5,-4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7217 - type: CarpetGreen - components: - - pos: 67.5,-9.5 - parent: 8364 - type: Transform -- uid: 7218 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 24.5,13.5 - parent: 8364 - type: Transform -- uid: 7219 - type: FoodPieBananaCream - components: - - pos: 20.5,5.5 - parent: 8364 - type: Transform -- uid: 7220 - type: WindowDirectional - components: - - pos: 19.5,-2.5 - parent: 8364 - type: Transform -- uid: 7221 - type: GasPipeStraight - components: - - pos: 70.5,-6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7222 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 24.5,12.5 - parent: 8364 - type: Transform -- uid: 7223 - type: GasPipeStraight - components: - - pos: 26.5,24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7224 - type: CarpetGreen - components: - - pos: 71.5,-10.5 - parent: 8364 - type: Transform -- uid: 7225 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-1.5 - parent: 8364 - type: Transform -- uid: 7226 - type: GasPipeStraight - components: - - pos: 69.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7227 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 8364 - type: Transform -- uid: 7228 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 70.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7229 - type: ClothingUniformJumpsuitChef - components: - - pos: 39.5,-2.5 - parent: 8364 - type: Transform -- uid: 7230 - type: WindowReinforcedDirectional - components: - - pos: 22.5,10.5 - parent: 8364 - type: Transform -- uid: 7231 - type: CarpetGreen - components: - - pos: 65.5,-9.5 - parent: 8364 - type: Transform -- uid: 7232 - type: CarpetGreen - components: - - pos: 67.5,-10.5 - parent: 8364 - type: Transform -- uid: 7233 - type: ChairWood - components: - - pos: 19.5,-5.5 - parent: 8364 - type: Transform -- uid: 7234 - type: TableReinforced - components: - - pos: 35.5,-10.5 - parent: 8364 - type: Transform -- uid: 7235 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-4.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7236 - type: Window - components: - - pos: 23.5,-11.5 - parent: 8364 - type: Transform -- uid: 7237 - type: KitchenMicrowave - components: - - pos: 38.5,-4.5 - parent: 8364 - type: Transform -- uid: 7238 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,0.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7239 - type: CableApcExtension - components: - - pos: 26.5,-2.5 - parent: 8364 - type: Transform -- uid: 7240 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 24.5,11.5 - parent: 8364 - type: Transform -- uid: 7241 - type: CarpetGreen - components: - - pos: 68.5,-7.5 - parent: 8364 - type: Transform -- uid: 7242 - type: ClothingNeckScarfStripedZebra - components: - - pos: 21.487698,6.2927704 - parent: 8364 - type: Transform -- uid: 7243 - type: CarpetGreen - components: - - pos: 74.5,-8.5 - parent: 8364 - type: Transform -- uid: 7244 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,4.5 - parent: 8364 - type: Transform -- uid: 7245 - type: ReinforcedWindow - components: - - pos: 5.5,-27.5 - parent: 8364 - type: Transform -- uid: 7246 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,3.5 - parent: 8364 - type: Transform -- uid: 7247 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 26.5,2.5 - parent: 8364 - type: Transform -- uid: 7248 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,3.5 - parent: 8364 - type: Transform -- uid: 7249 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 26.5,1.5 - parent: 8364 - type: Transform -- uid: 7250 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 26.5,0.5 - parent: 8364 - type: Transform - - visible: False - type: Sprite -- uid: 7251 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 27.5,0.5 - parent: 8364 - type: Transform -- uid: 7252 - type: FirelockGlass - components: - - pos: 41.5,-4.5 - parent: 8364 - type: Transform -- uid: 7253 - type: APCBasic - components: - - name: Kitchen APC - type: MetaData - - pos: 37.5,-3.5 - parent: 8364 - type: Transform -- uid: 7254 - type: APCBasic - components: - - name: Bartender's Room APC - type: MetaData - - pos: 31.5,2.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 20 - supplyRampPosition: 0.010999783 - type: PowerNetworkBattery -- uid: 7255 - type: APCBasic - components: - - name: Bar APC - type: MetaData - - pos: 28.5,-3.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 10 - supplyRampPosition: 2.735612 - type: PowerNetworkBattery -- uid: 7256 - type: soda_dispenser - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-6.5 - parent: 8364 - type: Transform - - containers: - ReagentDispenser-reagentContainerContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - ReagentDispenser-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 7257 - type: BoozeDispenser - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-3.5 - parent: 8364 - type: Transform - - containers: - ReagentDispenser-reagentContainerContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - ReagentDispenser-beaker: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 7258 - type: CarpetPurple - components: - - pos: 71.5,-34.5 - parent: 8364 - type: Transform -- uid: 7259 - type: Wrench - components: - - pos: 27.472874,22.499187 - parent: 8364 - type: Transform -- uid: 7260 - type: Beaker - components: - - pos: 29.5,1.5 - parent: 8364 - type: Transform -- uid: 7261 - type: ExtinguisherCabinetFilled - components: - - pos: 28.5,-11.5 - parent: 8364 - type: Transform - - containers: - cabinetSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - ItemCabinet: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 7262 - type: Paper - components: - - pos: 20.509228,6.5730886 - parent: 8364 - type: Transform -- uid: 7263 - type: KitchenReagentGrinder - components: - - pos: 29.5,0.5 - parent: 8364 - type: Transform -- uid: 7264 - type: SignElectricalMed - components: - - pos: 24.5,24.5 - parent: 8364 - type: Transform -- uid: 7265 - type: CarpetPurple - components: - - pos: 71.5,-35.5 - parent: 8364 - type: Transform -- uid: 7266 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 31.5,-4.5 - parent: 8364 - type: Transform -- uid: 7267 - type: WindoorBarLocked - components: - - name: Bar Door - type: MetaData - - pos: 30.5,-8.5 - parent: 8364 - type: Transform -- uid: 7268 - type: AirlockMaintBarLocked - components: - - name: Bartender's Room Maintenance - type: MetaData - - pos: 30.5,2.5 - parent: 8364 - type: Transform -- uid: 7269 - type: AirlockBarLocked - components: - - name: Bartender's Room - type: MetaData - - pos: 30.5,-2.5 - parent: 8364 - type: Transform -- uid: 7270 - type: CableMV - components: - - pos: 26.5,1.5 - parent: 8364 - type: Transform -- uid: 7271 - type: TableReinforced - components: - - pos: 32.5,-7.5 - parent: 8364 - type: Transform -- uid: 7272 - type: FoodPieBananaCream - components: - - pos: 32.5,-7.5 - parent: 8364 - type: Transform -- uid: 7273 - type: ReinforcedWindow - components: - - pos: 3.5,-3.5 - parent: 8364 - type: Transform -- uid: 7274 - type: filingCabinetDrawer - components: - - pos: 69.5,-33.5 - parent: 8364 - type: Transform -- uid: 7275 - type: WallReinforced - components: - - pos: -55.5,-20.5 - parent: 8364 - type: Transform -- uid: 7276 - type: FoodBanana - components: - - pos: 20.483616,5.7458954 - parent: 8364 - type: Transform -- uid: 7277 - type: VendingMachineChefDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 40.5,0.5 - parent: 8364 - type: Transform -- uid: 7278 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7279 - type: CableApcExtension - components: - - pos: -20.5,43.5 - parent: 8364 - type: Transform -- uid: 7280 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7281 - type: Grille - components: - - pos: -18.5,39.5 - parent: 8364 - type: Transform -- uid: 7282 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 3.5,50.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7283 - type: APCBasic - components: - - pos: -7.5,53.5 - parent: 8364 - type: Transform -- uid: 7284 - type: GasVentScrubber - components: - - pos: -7.5,44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7285 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,48.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7286 - type: AirlockSecurityGlassLocked - components: - - name: Perma Brig - type: MetaData - - pos: -10.5,37.5 - parent: 8364 - type: Transform -- uid: 7287 - type: Grille - components: - - pos: -16.5,36.5 - parent: 8364 - type: Transform -- uid: 7288 - type: Grille - components: - - pos: -16.5,34.5 - parent: 8364 - type: Transform -- uid: 7289 - type: WallReinforced - components: - - pos: -8.5,42.5 - parent: 8364 - type: Transform -- uid: 7290 - type: AirlockSecurityGlassLocked - components: - - pos: -10.5,42.5 - parent: 8364 - type: Transform -- uid: 7291 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -11.5,40.5 - parent: 8364 - type: Transform -- uid: 7292 - type: Grille - components: - - pos: -16.5,35.5 - parent: 8364 - type: Transform -- uid: 7293 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -11.5,48.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7294 - type: GasVentScrubber - components: - - pos: -13.5,47.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7295 - type: GasVentScrubber - components: - - pos: -18.5,44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7296 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -7.5,45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7297 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7298 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7299 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,46.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7300 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -25.5,44.5 - parent: 8364 - type: Transform -- uid: 7301 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -7.5,50.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7302 - type: AirlockGlass - components: - - pos: -16.5,43.5 - parent: 8364 - type: Transform -- uid: 7303 - type: WallReinforced - components: - - pos: -7.5,38.5 - parent: 8364 - type: Transform -- uid: 7304 - type: WallReinforced - components: - - pos: -7.5,39.5 - parent: 8364 - type: Transform -- uid: 7305 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7306 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -10.5,36.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7307 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-31.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11322 - Forward: - - port: Left - uid: 11322 - Off: - - port: Middle - uid: 11322 - type: SignalReceiver -- uid: 7308 - type: AirlockGlass - components: - - pos: -16.5,44.5 - parent: 8364 - type: Transform -- uid: 7309 - type: AirlockGlass - components: - - pos: -16.5,45.5 - parent: 8364 - type: Transform -- uid: 7310 - type: GasPipeStraight - components: - - pos: -9.5,35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7311 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7312 - type: GasPipeBend - components: - - pos: -5.5,43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7313 - type: GasPipeStraight - components: - - pos: -8.5,49.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7314 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -8.5,50.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7315 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -8.5,51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7316 - type: GasPipeStraight - components: - - pos: -8.5,46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7317 - type: GasPipeStraight - components: - - pos: -8.5,47.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7318 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -13.5,43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7319 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7320 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,50.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7321 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,50.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7322 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7323 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7324 - type: GasPipeBend - components: - - pos: -4.5,41.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7325 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,41.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7326 - type: Grille - components: - - pos: -0.5,46.5 - parent: 8364 - type: Transform -- uid: 7327 - type: Grille - components: - - pos: 0.5,46.5 - parent: 8364 - type: Transform -- uid: 7328 - type: Grille - components: - - pos: 1.5,46.5 - parent: 8364 - type: Transform -- uid: 7329 - type: Grille - components: - - pos: 2.5,46.5 - parent: 8364 - type: Transform -- uid: 7330 - type: Grille - components: - - pos: 3.5,46.5 - parent: 8364 - type: Transform -- uid: 7331 - type: ReinforcedWindow - components: - - pos: -2.5,46.5 - parent: 8364 - type: Transform -- uid: 7332 - type: ReinforcedWindow - components: - - pos: -1.5,46.5 - parent: 8364 - type: Transform -- uid: 7333 - type: WallReinforced - components: - - pos: -12.5,40.5 - parent: 8364 - type: Transform -- uid: 7334 - type: WallReinforced - components: - - pos: -11.5,42.5 - parent: 8364 - type: Transform -- uid: 7335 - type: WallReinforced - components: - - pos: -3.5,43.5 - parent: 8364 - type: Transform -- uid: 7336 - type: WallReinforced - components: - - pos: -3.5,42.5 - parent: 8364 - type: Transform -- uid: 7337 - type: WallReinforced - components: - - pos: -3.5,41.5 - parent: 8364 - type: Transform -- uid: 7338 - type: WallSolid - components: - - pos: -7.5,33.5 - parent: 8364 - type: Transform -- uid: 7339 - type: WallSolid - components: - - pos: -8.5,33.5 - parent: 8364 - type: Transform -- uid: 7340 - type: WallSolid - components: - - pos: -9.5,33.5 - parent: 8364 - type: Transform -- uid: 7341 - type: WallSolid - components: - - pos: -10.5,29.5 - parent: 8364 - type: Transform -- uid: 7342 - type: WallSolid - components: - - pos: -10.5,30.5 - parent: 8364 - type: Transform -- uid: 7343 - type: WallSolid - components: - - pos: -10.5,31.5 - parent: 8364 - type: Transform -- uid: 7344 - type: WallSolid - components: - - pos: -10.5,32.5 - parent: 8364 - type: Transform -- uid: 7345 - type: WallSolid - components: - - pos: -10.5,33.5 - parent: 8364 - type: Transform -- uid: 7346 - type: WallSolid - components: - - pos: -12.5,33.5 - parent: 8364 - type: Transform -- uid: 7347 - type: WallSolid - components: - - pos: -13.5,33.5 - parent: 8364 - type: Transform -- uid: 7348 - type: WallSolid - components: - - pos: -11.5,33.5 - parent: 8364 - type: Transform -- uid: 7349 - type: WallSolid - components: - - pos: -15.5,33.5 - parent: 8364 - type: Transform -- uid: 7350 - type: WallSolid - components: - - pos: -6.5,34.5 - parent: 8364 - type: Transform -- uid: 7351 - type: WallSolid - components: - - pos: -6.5,33.5 - parent: 8364 - type: Transform -- uid: 7352 - type: WallReinforced - components: - - pos: -16.5,33.5 - parent: 8364 - type: Transform -- uid: 7353 - type: WallReinforced - components: - - pos: -16.5,32.5 - parent: 8364 - type: Transform -- uid: 7354 - type: WallReinforced - components: - - pos: -16.5,31.5 - parent: 8364 - type: Transform -- uid: 7355 - type: WallReinforced - components: - - pos: -16.5,30.5 - parent: 8364 - type: Transform -- uid: 7356 - type: WallReinforced - components: - - pos: -16.5,29.5 - parent: 8364 - type: Transform -- uid: 7357 - type: FirelockGlass - components: - - pos: -4.5,33.5 - parent: 8364 - type: Transform -- uid: 7358 - type: Grille - components: - - pos: -22.5,19.5 - parent: 8364 - type: Transform -- uid: 7359 - type: Grille - components: - - pos: -22.5,21.5 - parent: 8364 - type: Transform -- uid: 7360 - type: Grille - components: - - pos: -21.5,21.5 - parent: 8364 - type: Transform -- uid: 7361 - type: ReinforcedWindow - components: - - pos: 5.5,-26.5 - parent: 8364 - type: Transform -- uid: 7362 - type: Grille - components: - - pos: -20.5,23.5 - parent: 8364 - type: Transform -- uid: 7363 - type: Grille - components: - - pos: -21.5,23.5 - parent: 8364 - type: Transform -- uid: 7364 - type: Grille - components: - - pos: -22.5,23.5 - parent: 8364 - type: Transform -- uid: 7365 - type: Grille - components: - - pos: -22.5,25.5 - parent: 8364 - type: Transform -- uid: 7366 - type: Grille - components: - - pos: -20.5,25.5 - parent: 8364 - type: Transform -- uid: 7367 - type: CableHV - components: - - pos: -17.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7368 - type: CableHV - components: - - pos: -15.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7369 - type: CableHV - components: - - pos: -18.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7370 - type: CableHV - components: - - pos: -18.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7371 - type: CableHV - components: - - pos: -16.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7372 - type: CableHV - components: - - pos: -15.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7373 - type: SubstationBasic - components: - - name: Security Substation - type: MetaData - - pos: 24.5,22.5 - parent: 8364 - type: Transform - - startingCharge: 3354776.5 - type: Battery - - loadingNetworkDemand: 45.00018 - currentSupply: 45.00018 - supplyRampPosition: 45.00018 - type: PowerNetworkBattery -- uid: 7374 - type: CableHV - components: - - pos: -15.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7375 - type: ReinforcedWindow - components: - - pos: -20.5,25.5 - parent: 8364 - type: Transform -- uid: 7376 - type: ReinforcedWindow - components: - - pos: -22.5,25.5 - parent: 8364 - type: Transform -- uid: 7377 - type: ReinforcedWindow - components: - - pos: -22.5,23.5 - parent: 8364 - type: Transform -- uid: 7378 - type: ReinforcedWindow - components: - - pos: -21.5,23.5 - parent: 8364 - type: Transform -- uid: 7379 - type: ReinforcedWindow - components: - - pos: -20.5,23.5 - parent: 8364 - type: Transform -- uid: 7380 - type: CableMV - components: - - pos: -11.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7381 - type: ReinforcedWindow - components: - - pos: -21.5,21.5 - parent: 8364 - type: Transform -- uid: 7382 - type: ReinforcedWindow - components: - - pos: -22.5,21.5 - parent: 8364 - type: Transform -- uid: 7383 - type: ReinforcedWindow - components: - - pos: -22.5,19.5 - parent: 8364 - type: Transform -- uid: 7384 - type: WallSolid - components: - - pos: -20.5,19.5 - parent: 8364 - type: Transform -- uid: 7385 - type: WallReinforced - components: - - pos: -16.5,28.5 - parent: 8364 - type: Transform -- uid: 7386 - type: CableHV - components: - - pos: -18.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7387 - type: CableHV - components: - - pos: -18.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7388 - type: CableHV - components: - - pos: -18.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7389 - type: CableHV - components: - - pos: -18.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7390 - type: FirelockGlass - components: - - pos: 5.5,-1.5 - parent: 8364 - type: Transform -- uid: 7391 - type: WallReinforced - components: - - pos: -17.5,25.5 - parent: 8364 - type: Transform -- uid: 7392 - type: SignBar - components: - - pos: 21.5,-11.5 - parent: 8364 - type: Transform -- uid: 7393 - type: FirelockGlass - components: - - pos: 5.5,-2.5 - parent: 8364 - type: Transform -- uid: 7394 - type: WallReinforced - components: - - pos: -17.5,15.5 - parent: 8364 - type: Transform -- uid: 7395 - type: WallReinforced - components: - - pos: -19.5,15.5 - parent: 8364 - type: Transform -- uid: 7396 - type: WallReinforced - components: - - pos: -19.5,18.5 - parent: 8364 - type: Transform -- uid: 7397 - type: ReinforcedWindow - components: - - pos: 38.5,11.5 - parent: 8364 - type: Transform -- uid: 7398 - type: ReinforcedWindow - components: - - pos: 38.5,12.5 - parent: 8364 - type: Transform -- uid: 7399 - type: ReinforcedWindow - components: - - pos: 38.5,15.5 - parent: 8364 - type: Transform -- uid: 7400 - type: ReinforcedWindow - components: - - pos: 38.5,16.5 - parent: 8364 - type: Transform -- uid: 7401 - type: ReinforcedWindow - components: - - pos: 38.5,17.5 - parent: 8364 - type: Transform -- uid: 7402 - type: Grille - components: - - pos: 38.5,15.5 - parent: 8364 - type: Transform -- uid: 7403 - type: Grille - components: - - pos: 38.5,16.5 - parent: 8364 - type: Transform -- uid: 7404 - type: Grille - components: - - pos: 38.5,17.5 - parent: 8364 - type: Transform -- uid: 7405 - type: FirelockGlass - components: - - pos: -5.5,33.5 - parent: 8364 - type: Transform -- uid: 7406 - type: WallSolid - components: - - pos: 38.5,7.5 - parent: 8364 - type: Transform -- uid: 7407 - type: WallSolid - components: - - pos: 38.5,8.5 - parent: 8364 - type: Transform -- uid: 7408 - type: WallSolid - components: - - pos: 38.5,9.5 - parent: 8364 - type: Transform -- uid: 7409 - type: WallSolid - components: - - pos: 39.5,9.5 - parent: 8364 - type: Transform -- uid: 7410 - type: WallSolid - components: - - pos: 40.5,9.5 - parent: 8364 - type: Transform -- uid: 7411 - type: WallSolid - components: - - pos: 41.5,9.5 - parent: 8364 - type: Transform -- uid: 7412 - type: WallSolid - components: - - pos: 41.5,10.5 - parent: 8364 - type: Transform -- uid: 7413 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,36.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7414 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7415 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7416 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7417 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7418 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 8480 - type: Transform - - canCollide: False - type: Physics -- uid: 7419 - type: Grille - components: - - pos: 28.5,6.5 - parent: 8364 - type: Transform -- uid: 7420 - type: ReinforcedWindow - components: - - pos: 37.5,17.5 - parent: 8364 - type: Transform -- uid: 7421 - type: ReinforcedWindow - components: - - pos: 36.5,17.5 - parent: 8364 - type: Transform -- uid: 7422 - type: ReinforcedWindow - components: - - pos: 35.5,17.5 - parent: 8364 - type: Transform -- uid: 7423 - type: ReinforcedWindow - components: - - pos: 34.5,17.5 - parent: 8364 - type: Transform -- uid: 7424 - type: ReinforcedWindow - components: - - pos: 33.5,17.5 - parent: 8364 - type: Transform -- uid: 7425 - type: ReinforcedWindow - components: - - pos: 32.5,17.5 - parent: 8364 - type: Transform -- uid: 7426 - type: ReinforcedWindow - components: - - pos: 31.5,17.5 - parent: 8364 - type: Transform -- uid: 7427 - type: ReinforcedWindow - components: - - pos: 30.5,17.5 - parent: 8364 - type: Transform -- uid: 7428 - type: ReinforcedWindow - components: - - pos: 29.5,17.5 - parent: 8364 - type: Transform -- uid: 7429 - type: ReinforcedWindow - components: - - pos: 28.5,17.5 - parent: 8364 - type: Transform -- uid: 7430 - type: ReinforcedWindow - components: - - pos: 28.5,16.5 - parent: 8364 - type: Transform -- uid: 7431 - type: ReinforcedWindow - components: - - pos: 28.5,15.5 - parent: 8364 - type: Transform -- uid: 7432 - type: ReinforcedWindow - components: - - pos: 28.5,14.5 - parent: 8364 - type: Transform -- uid: 7433 - type: ReinforcedWindow - components: - - pos: 37.5,6.5 - parent: 8364 - type: Transform -- uid: 7434 - type: ReinforcedWindow - components: - - pos: 36.5,6.5 - parent: 8364 - type: Transform -- uid: 7435 - type: ReinforcedWindow - components: - - pos: 35.5,6.5 - parent: 8364 - type: Transform -- uid: 7436 - type: ReinforcedWindow - components: - - pos: 34.5,6.5 - parent: 8364 - type: Transform -- uid: 7437 - type: ReinforcedWindow - components: - - pos: 33.5,6.5 - parent: 8364 - type: Transform -- uid: 7438 - type: ReinforcedWindow - components: - - pos: 32.5,6.5 - parent: 8364 - type: Transform -- uid: 7439 - type: ReinforcedWindow - components: - - pos: 31.5,6.5 - parent: 8364 - type: Transform -- uid: 7440 - type: ReinforcedWindow - components: - - pos: 30.5,6.5 - parent: 8364 - type: Transform -- uid: 7441 - type: ReinforcedWindow - components: - - pos: 28.5,6.5 - parent: 8364 - type: Transform -- uid: 7442 - type: ReinforcedWindow - components: - - pos: 28.5,7.5 - parent: 8364 - type: Transform -- uid: 7443 - type: ReinforcedWindow - components: - - pos: 28.5,8.5 - parent: 8364 - type: Transform -- uid: 7444 - type: ReinforcedWindow - components: - - pos: 28.5,9.5 - parent: 8364 - type: Transform -- uid: 7445 - type: Grille - components: - - pos: 38.5,11.5 - parent: 8364 - type: Transform -- uid: 7446 - type: Grille - components: - - pos: 38.5,12.5 - parent: 8364 - type: Transform -- uid: 7447 - type: Grille - components: - - pos: 18.5,12.5 - parent: 8364 - type: Transform -- uid: 7448 - type: Grille - components: - - pos: 18.5,9.5 - parent: 8364 - type: Transform -- uid: 7449 - type: ReinforcedWindow - components: - - pos: 28.5,12.5 - parent: 8364 - type: Transform -- uid: 7450 - type: ReinforcedWindow - components: - - pos: 28.5,11.5 - parent: 8364 - type: Transform -- uid: 7451 - type: WallReinforced - components: - - pos: -20.5,22.5 - parent: 8364 - type: Transform -- uid: 7452 - type: WallReinforced - components: - - pos: -21.5,25.5 - parent: 8364 - type: Transform -- uid: 7453 - type: Grille - components: - - pos: 37.5,17.5 - parent: 8364 - type: Transform -- uid: 7454 - type: Grille - components: - - pos: 36.5,17.5 - parent: 8364 - type: Transform -- uid: 7455 - type: Grille - components: - - pos: 35.5,17.5 - parent: 8364 - type: Transform -- uid: 7456 - type: Grille - components: - - pos: 34.5,17.5 - parent: 8364 - type: Transform -- uid: 7457 - type: Grille - components: - - pos: 33.5,17.5 - parent: 8364 - type: Transform -- uid: 7458 - type: Grille - components: - - pos: 32.5,17.5 - parent: 8364 - type: Transform -- uid: 7459 - type: ReinforcedWindow - components: - - pos: 29.5,6.5 - parent: 8364 - type: Transform -- uid: 7460 - type: Grille - components: - - pos: 28.5,9.5 - parent: 8364 - type: Transform -- uid: 7461 - type: Grille - components: - - pos: 28.5,12.5 - parent: 8364 - type: Transform -- uid: 7462 - type: Grille - components: - - pos: 28.5,11.5 - parent: 8364 - type: Transform -- uid: 7463 - type: Grille - components: - - pos: 28.5,14.5 - parent: 8364 - type: Transform -- uid: 7464 - type: Grille - components: - - pos: 28.5,15.5 - parent: 8364 - type: Transform -- uid: 7465 - type: Grille - components: - - pos: 28.5,16.5 - parent: 8364 - type: Transform -- uid: 7466 - type: Grille - components: - - pos: 37.5,6.5 - parent: 8364 - type: Transform -- uid: 7467 - type: Grille - components: - - pos: 36.5,6.5 - parent: 8364 - type: Transform -- uid: 7468 - type: Grille - components: - - pos: 35.5,6.5 - parent: 8364 - type: Transform -- uid: 7469 - type: Grille - components: - - pos: 34.5,6.5 - parent: 8364 - type: Transform -- uid: 7470 - type: Grille - components: - - pos: 33.5,6.5 - parent: 8364 - type: Transform -- uid: 7471 - type: Grille - components: - - pos: 32.5,6.5 - parent: 8364 - type: Transform -- uid: 7472 - type: Grille - components: - - pos: 31.5,6.5 - parent: 8364 - type: Transform -- uid: 7473 - type: Grille - components: - - pos: 30.5,6.5 - parent: 8364 - type: Transform -- uid: 7474 - type: Grille - components: - - pos: 29.5,6.5 - parent: 8364 - type: Transform -- uid: 7475 - type: Grille - components: - - pos: 28.5,7.5 - parent: 8364 - type: Transform -- uid: 7476 - type: Grille - components: - - pos: 28.5,8.5 - parent: 8364 - type: Transform -- uid: 7477 - type: WallReinforced - components: - - pos: -20.5,21.5 - parent: 8364 - type: Transform -- uid: 7478 - type: WallReinforced - components: - - pos: -21.5,19.5 - parent: 8364 - type: Transform -- uid: 7479 - type: WallReinforced - components: - - pos: 27.5,7.5 - parent: 8364 - type: Transform -- uid: 7480 - type: WallReinforced - components: - - pos: 42.5,12.5 - parent: 8364 - type: Transform -- uid: 7481 - type: WallReinforced - components: - - pos: 41.5,13.5 - parent: 8364 - type: Transform -- uid: 7482 - type: WallReinforced - components: - - pos: 41.5,14.5 - parent: 8364 - type: Transform -- uid: 7483 - type: WallSolid - components: - - pos: 25.5,16.5 - parent: 8364 - type: Transform -- uid: 7484 - type: WallSolid - components: - - pos: 23.5,16.5 - parent: 8364 - type: Transform -- uid: 7485 - type: WallReinforced - components: - - pos: 40.5,14.5 - parent: 8364 - type: Transform -- uid: 7486 - type: WallReinforced - components: - - pos: 39.5,14.5 - parent: 8364 - type: Transform -- uid: 7487 - type: WallReinforced - components: - - pos: 38.5,14.5 - parent: 8364 - type: Transform -- uid: 7488 - type: WallSolid - components: - - pos: 50.5,0.5 - parent: 8364 - type: Transform -- uid: 7489 - type: WallSolid - components: - - pos: 23.5,7.5 - parent: 8364 - type: Transform -- uid: 7490 - type: WallSolid - components: - - pos: 22.5,7.5 - parent: 8364 - type: Transform -- uid: 7491 - type: WallSolid - components: - - pos: 21.5,7.5 - parent: 8364 - type: Transform -- uid: 7492 - type: WallSolid - components: - - pos: 20.5,7.5 - parent: 8364 - type: Transform -- uid: 7493 - type: WallSolid - components: - - pos: 7.5,6.5 - parent: 8364 - type: Transform -- uid: 7494 - type: WallSolid - components: - - pos: 7.5,7.5 - parent: 8364 - type: Transform -- uid: 7495 - type: WallSolid - components: - - pos: 6.5,7.5 - parent: 8364 - type: Transform -- uid: 7496 - type: WallSolid - components: - - pos: 5.5,7.5 - parent: 8364 - type: Transform -- uid: 7497 - type: WallSolid - components: - - pos: 4.5,7.5 - parent: 8364 - type: Transform -- uid: 7498 - type: WallSolid - components: - - pos: 7.5,9.5 - parent: 8364 - type: Transform -- uid: 7499 - type: WallSolid - components: - - pos: 7.5,10.5 - parent: 8364 - type: Transform -- uid: 7500 - type: WallSolid - components: - - pos: 6.5,10.5 - parent: 8364 - type: Transform -- uid: 7501 - type: WallSolid - components: - - pos: 4.5,10.5 - parent: 8364 - type: Transform -- uid: 7502 - type: WallSolid - components: - - pos: 5.5,10.5 - parent: 8364 - type: Transform -- uid: 7503 - type: WallSolid - components: - - pos: 7.5,12.5 - parent: 8364 - type: Transform -- uid: 7504 - type: WallSolid - components: - - pos: 7.5,13.5 - parent: 8364 - type: Transform -- uid: 7505 - type: WallSolid - components: - - pos: 6.5,13.5 - parent: 8364 - type: Transform -- uid: 7506 - type: WallSolid - components: - - pos: 5.5,13.5 - parent: 8364 - type: Transform -- uid: 7507 - type: WallSolid - components: - - pos: 4.5,13.5 - parent: 8364 - type: Transform -- uid: 7508 - type: WallSolid - components: - - pos: 7.5,15.5 - parent: 8364 - type: Transform -- uid: 7509 - type: WallSolid - components: - - pos: 17.5,13.5 - parent: 8364 - type: Transform -- uid: 7510 - type: CableApcExtension - components: - - pos: 18.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7511 - type: WallSolid - components: - - pos: 18.5,14.5 - parent: 8364 - type: Transform -- uid: 7512 - type: WallSolid - components: - - pos: 18.5,15.5 - parent: 8364 - type: Transform -- uid: 7513 - type: WallSolid - components: - - pos: 15.5,13.5 - parent: 8364 - type: Transform -- uid: 7514 - type: WallSolid - components: - - pos: 13.5,13.5 - parent: 8364 - type: Transform -- uid: 7515 - type: WallSolid - components: - - pos: 14.5,13.5 - parent: 8364 - type: Transform -- uid: 7516 - type: WallSolid - components: - - pos: 14.5,14.5 - parent: 8364 - type: Transform -- uid: 7517 - type: WallSolid - components: - - pos: 14.5,15.5 - parent: 8364 - type: Transform -- uid: 7518 - type: WallSolid - components: - - pos: 11.5,13.5 - parent: 8364 - type: Transform -- uid: 7519 - type: WallSolid - components: - - pos: 10.5,13.5 - parent: 8364 - type: Transform -- uid: 7520 - type: WallSolid - components: - - pos: 10.5,14.5 - parent: 8364 - type: Transform -- uid: 7521 - type: WallSolid - components: - - pos: 15.5,2.5 - parent: 8364 - type: Transform -- uid: 7522 - type: WallSolid - components: - - pos: 15.5,3.5 - parent: 8364 - type: Transform -- uid: 7523 - type: WallSolid - components: - - pos: 13.5,2.5 - parent: 8364 - type: Transform -- uid: 7524 - type: WallSolid - components: - - pos: 13.5,3.5 - parent: 8364 - type: Transform -- uid: 7525 - type: WallSolid - components: - - pos: 13.5,4.5 - parent: 8364 - type: Transform -- uid: 7526 - type: WallSolid - components: - - pos: 14.5,4.5 - parent: 8364 - type: Transform -- uid: 7527 - type: WallSolid - components: - - pos: 15.5,4.5 - parent: 8364 - type: Transform -- uid: 7528 - type: WallSolid - components: - - pos: 16.5,4.5 - parent: 8364 - type: Transform -- uid: 7529 - type: WallSolid - components: - - pos: 18.5,4.5 - parent: 8364 - type: Transform -- uid: 7530 - type: WallSolid - components: - - pos: 17.5,4.5 - parent: 8364 - type: Transform -- uid: 7531 - type: WallSolid - components: - - pos: 17.5,3.5 - parent: 8364 - type: Transform -- uid: 7532 - type: WallSolid - components: - - pos: 17.5,2.5 - parent: 8364 - type: Transform -- uid: 7533 - type: Airlock - components: - - name: Bathroom - type: MetaData - - pos: 18.5,0.5 - parent: 8364 - type: Transform -- uid: 7534 - type: WallSolid - components: - - pos: 19.5,0.5 - parent: 8364 - type: Transform -- uid: 7535 - type: WallSolid - components: - - pos: 19.5,1.5 - parent: 8364 - type: Transform -- uid: 7536 - type: WallSolid - components: - - pos: 19.5,2.5 - parent: 8364 - type: Transform -- uid: 7537 - type: WallSolid - components: - - pos: 19.5,3.5 - parent: 8364 - type: Transform -- uid: 7538 - type: WallSolid - components: - - pos: 19.5,4.5 - parent: 8364 - type: Transform -- uid: 7539 - type: WallSolid - components: - - pos: 19.5,5.5 - parent: 8364 - type: Transform -- uid: 7540 - type: WallSolid - components: - - pos: 19.5,6.5 - parent: 8364 - type: Transform -- uid: 7541 - type: WallSolid - components: - - pos: 19.5,7.5 - parent: 8364 - type: Transform -- uid: 7542 - type: WallSolid - components: - - pos: 19.5,8.5 - parent: 8364 - type: Transform -- uid: 7543 - type: WallSolid - components: - - pos: 18.5,8.5 - parent: 8364 - type: Transform -- uid: 7544 - type: WallSolid - components: - - pos: 16.5,8.5 - parent: 8364 - type: Transform -- uid: 7545 - type: WallSolid - components: - - pos: 15.5,8.5 - parent: 8364 - type: Transform -- uid: 7546 - type: WallSolid - components: - - pos: 15.5,6.5 - parent: 8364 - type: Transform -- uid: 7547 - type: WallSolid - components: - - pos: 15.5,7.5 - parent: 8364 - type: Transform -- uid: 7548 - type: WallSolid - components: - - pos: 14.5,7.5 - parent: 8364 - type: Transform -- uid: 7549 - type: WallSolid - components: - - pos: 13.5,7.5 - parent: 8364 - type: Transform -- uid: 7550 - type: WallSolid - components: - - pos: 11.5,7.5 - parent: 8364 - type: Transform -- uid: 7551 - type: WallSolid - components: - - pos: 10.5,4.5 - parent: 8364 - type: Transform -- uid: 7552 - type: WallSolid - components: - - pos: 10.5,7.5 - parent: 8364 - type: Transform -- uid: 7553 - type: WallSolid - components: - - pos: 10.5,6.5 - parent: 8364 - type: Transform -- uid: 7554 - type: WallSolid - components: - - pos: 10.5,5.5 - parent: 8364 - type: Transform -- uid: 7555 - type: WallSolid - components: - - pos: 10.5,15.5 - parent: 8364 - type: Transform -- uid: 7556 - type: WallSolid - components: - - pos: 10.5,3.5 - parent: 8364 - type: Transform -- uid: 7557 - type: WallSolid - components: - - pos: 10.5,2.5 - parent: 8364 - type: Transform -- uid: 7558 - type: WallSolid - components: - - pos: 10.5,1.5 - parent: 8364 - type: Transform -- uid: 7559 - type: Grille - components: - - pos: 31.5,17.5 - parent: 8364 - type: Transform -- uid: 7560 - type: Grille - components: - - pos: 30.5,17.5 - parent: 8364 - type: Transform -- uid: 7561 - type: Grille - components: - - pos: 29.5,17.5 - parent: 8364 - type: Transform -- uid: 7562 - type: Grille - components: - - pos: 28.5,17.5 - parent: 8364 - type: Transform -- uid: 7563 - type: Window - components: - - pos: 18.5,12.5 - parent: 8364 - type: Transform -- uid: 7564 - type: WallSolid - components: - - pos: 7.5,2.5 - parent: 8364 - type: Transform -- uid: 7565 - type: Window - components: - - pos: 18.5,9.5 - parent: 8364 - type: Transform -- uid: 7566 - type: WallReinforced - components: - - pos: 28.5,23.5 - parent: 8364 - type: Transform -- uid: 7567 - type: WallReinforced - components: - - pos: 28.5,22.5 - parent: 8364 - type: Transform -- uid: 7568 - type: WallSolid - components: - - pos: 7.5,4.5 - parent: 8364 - type: Transform -- uid: 7569 - type: WallSolid - components: - - pos: 4.5,4.5 - parent: 8364 - type: Transform -- uid: 7570 - type: WallSolid - components: - - pos: 5.5,4.5 - parent: 8364 - type: Transform -- uid: 7571 - type: WallSolid - components: - - pos: 6.5,4.5 - parent: 8364 - type: Transform -- uid: 7572 - type: WallSolid - components: - - pos: 3.5,4.5 - parent: 8364 - type: Transform -- uid: 7573 - type: WallSolid - components: - - pos: 3.5,5.5 - parent: 8364 - type: Transform -- uid: 7574 - type: WallSolid - components: - - pos: 3.5,6.5 - parent: 8364 - type: Transform -- uid: 7575 - type: WallSolid - components: - - pos: 3.5,7.5 - parent: 8364 - type: Transform -- uid: 7576 - type: WallSolid - components: - - pos: 3.5,8.5 - parent: 8364 - type: Transform -- uid: 7577 - type: WallSolid - components: - - pos: 3.5,9.5 - parent: 8364 - type: Transform -- uid: 7578 - type: WallSolid - components: - - pos: 3.5,10.5 - parent: 8364 - type: Transform -- uid: 7579 - type: WallSolid - components: - - pos: 3.5,11.5 - parent: 8364 - type: Transform -- uid: 7580 - type: WallSolid - components: - - pos: 3.5,12.5 - parent: 8364 - type: Transform -- uid: 7581 - type: WallSolid - components: - - pos: 3.5,13.5 - parent: 8364 - type: Transform -- uid: 7582 - type: WallSolid - components: - - pos: 3.5,14.5 - parent: 8364 - type: Transform -- uid: 7583 - type: WallSolid - components: - - pos: 3.5,15.5 - parent: 8364 - type: Transform -- uid: 7584 - type: WallSolid - components: - - pos: 3.5,16.5 - parent: 8364 - type: Transform -- uid: 7585 - type: WallSolid - components: - - pos: 4.5,16.5 - parent: 8364 - type: Transform -- uid: 7586 - type: WallSolid - components: - - pos: 5.5,16.5 - parent: 8364 - type: Transform -- uid: 7587 - type: WallSolid - components: - - pos: 6.5,16.5 - parent: 8364 - type: Transform -- uid: 7588 - type: WallSolid - components: - - pos: 7.5,16.5 - parent: 8364 - type: Transform -- uid: 7589 - type: Grille - components: - - pos: -9.5,37.5 - parent: 8364 - type: Transform -- uid: 7590 - type: WallSolid - components: - - pos: 10.5,16.5 - parent: 8364 - type: Transform -- uid: 7591 - type: WallSolid - components: - - pos: 11.5,16.5 - parent: 8364 - type: Transform -- uid: 7592 - type: WallSolid - components: - - pos: 12.5,16.5 - parent: 8364 - type: Transform -- uid: 7593 - type: WallSolid - components: - - pos: 13.5,16.5 - parent: 8364 - type: Transform -- uid: 7594 - type: WallSolid - components: - - pos: 14.5,16.5 - parent: 8364 - type: Transform -- uid: 7595 - type: WallSolid - components: - - pos: 15.5,16.5 - parent: 8364 - type: Transform -- uid: 7596 - type: WallSolid - components: - - pos: 16.5,16.5 - parent: 8364 - type: Transform -- uid: 7597 - type: WallSolid - components: - - pos: 17.5,16.5 - parent: 8364 - type: Transform -- uid: 7598 - type: WallSolid - components: - - pos: 18.5,16.5 - parent: 8364 - type: Transform -- uid: 7599 - type: WallSolid - components: - - pos: 20.5,16.5 - parent: 8364 - type: Transform -- uid: 7600 - type: WallSolid - components: - - pos: 21.5,16.5 - parent: 8364 - type: Transform -- uid: 7601 - type: WallSolid - components: - - pos: 22.5,16.5 - parent: 8364 - type: Transform -- uid: 7602 - type: WallSolid - components: - - pos: 22.5,17.5 - parent: 8364 - type: Transform -- uid: 7603 - type: WallSolid - components: - - pos: 22.5,18.5 - parent: 8364 - type: Transform -- uid: 7604 - type: WallSolid - components: - - pos: 22.5,19.5 - parent: 8364 - type: Transform -- uid: 7605 - type: WallSolid - components: - - pos: 22.5,21.5 - parent: 8364 - type: Transform -- uid: 7606 - type: WallSolid - components: - - pos: 22.5,20.5 - parent: 8364 - type: Transform -- uid: 7607 - type: WallSolid - components: - - pos: 23.5,20.5 - parent: 8364 - type: Transform -- uid: 7608 - type: WallSolid - components: - - pos: 22.5,23.5 - parent: 8364 - type: Transform -- uid: 7609 - type: WallSolid - components: - - pos: 25.5,20.5 - parent: 8364 - type: Transform -- uid: 7610 - type: WallSolid - components: - - pos: 25.5,21.5 - parent: 8364 - type: Transform -- uid: 7611 - type: CableMV - components: - - pos: 21.5,24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7612 - type: CableMV - components: - - pos: 21.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7613 - type: WallSolid - components: - - pos: 25.5,24.5 - parent: 8364 - type: Transform -- uid: 7614 - type: WallSolid - components: - - pos: 24.5,24.5 - parent: 8364 - type: Transform -- uid: 7615 - type: CableHV - components: - - pos: 23.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7616 - type: WallSolid - components: - - pos: 22.5,24.5 - parent: 8364 - type: Transform -- uid: 7617 - type: WallReinforced - components: - - pos: 28.5,21.5 - parent: 8364 - type: Transform -- uid: 7618 - type: WallReinforced - components: - - pos: 28.5,20.5 - parent: 8364 - type: Transform -- uid: 7619 - type: WallReinforced - components: - - pos: 28.5,24.5 - parent: 8364 - type: Transform -- uid: 7620 - type: WallReinforced - components: - - pos: 28.5,25.5 - parent: 8364 - type: Transform -- uid: 7621 - type: AirlockGlass - components: - - pos: 28.5,13.5 - parent: 8364 - type: Transform -- uid: 7622 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: 27.5,29.5 - parent: 8364 - type: Transform -- uid: 7623 - type: CableMV - components: - - pos: 15.5,27.5 - parent: 8364 - type: Transform -- uid: 7624 - type: WallReinforced - components: - - pos: 20.5,31.5 - parent: 8364 - type: Transform -- uid: 7625 - type: WallReinforced - components: - - pos: 24.5,43.5 - parent: 8364 - type: Transform -- uid: 7626 - type: WallReinforced - components: - - pos: 26.5,31.5 - parent: 8364 - type: Transform -- uid: 7627 - type: WallSolid - components: - - pos: 20.5,35.5 - parent: 8364 - type: Transform -- uid: 7628 - type: IntercomSupply - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-22.5 - parent: 8364 - type: Transform -- uid: 7629 - type: CableMV - components: - - pos: 17.5,30.5 - parent: 8364 - type: Transform -- uid: 7630 - type: WallReinforced - components: - - pos: 25.5,43.5 - parent: 8364 - type: Transform -- uid: 7631 - type: WallReinforced - components: - - pos: 21.5,38.5 - parent: 8364 - type: Transform -- uid: 7632 - type: WallReinforced - components: - - pos: 25.5,31.5 - parent: 8364 - type: Transform -- uid: 7633 - type: WallReinforced - components: - - pos: 26.5,35.5 - parent: 8364 - type: Transform -- uid: 7634 - type: ReinforcedWindow - components: - - pos: 21.5,40.5 - parent: 8364 - type: Transform -- uid: 7635 - type: WallReinforced - components: - - pos: 24.5,31.5 - parent: 8364 - type: Transform -- uid: 7636 - type: WallReinforced - components: - - pos: 23.5,43.5 - parent: 8364 - type: Transform -- uid: 7637 - type: WallReinforced - components: - - pos: 21.5,31.5 - parent: 8364 - type: Transform -- uid: 7638 - type: WallReinforced - components: - - pos: 22.5,31.5 - parent: 8364 - type: Transform -- uid: 7639 - type: WallReinforced - components: - - pos: 36.5,4.5 - parent: 8364 - type: Transform -- uid: 7640 - type: WallReinforced - components: - - pos: 25.5,38.5 - parent: 8364 - type: Transform -- uid: 7641 - type: WallReinforced - components: - - pos: 26.5,33.5 - parent: 8364 - type: Transform -- uid: 7642 - type: WallReinforced - components: - - pos: 26.5,32.5 - parent: 8364 - type: Transform -- uid: 7643 - type: IntercomAll - components: - - rot: 3.141592653589793 rad - pos: 6.5,-19.5 - parent: 8364 - type: Transform -- uid: 7644 - type: WallReinforced - components: - - pos: 37.5,4.5 - parent: 8364 - type: Transform -- uid: 7645 - type: WallReinforced - components: - - pos: 4.5,2.5 - parent: 8364 - type: Transform -- uid: 7646 - type: WallReinforced - components: - - pos: 25.5,37.5 - parent: 8364 - type: Transform -- uid: 7647 - type: ReinforcedWindow - components: - - pos: 19.5,37.5 - parent: 8364 - type: Transform -- uid: 7648 - type: ReinforcedWindow - components: - - pos: 18.5,37.5 - parent: 8364 - type: Transform -- uid: 7649 - type: ReinforcedWindow - components: - - pos: 7.5,42.5 - parent: 8364 - type: Transform -- uid: 7650 - type: ReinforcedWindow - components: - - pos: 9.5,42.5 - parent: 8364 - type: Transform -- uid: 7651 - type: ReinforcedWindow - components: - - pos: 13.5,42.5 - parent: 8364 - type: Transform -- uid: 7652 - type: ReinforcedWindow - components: - - pos: 14.5,42.5 - parent: 8364 - type: Transform -- uid: 7653 - type: ReinforcedWindow - components: - - pos: 15.5,42.5 - parent: 8364 - type: Transform -- uid: 7654 - type: WallReinforced - components: - - pos: 4.5,34.5 - parent: 8364 - type: Transform -- uid: 7655 - type: WallReinforced - components: - - pos: 5.5,33.5 - parent: 8364 - type: Transform -- uid: 7656 - type: WallReinforced - components: - - pos: 5.5,34.5 - parent: 8364 - type: Transform -- uid: 7657 - type: WallReinforced - components: - - pos: 5.5,35.5 - parent: 8364 - type: Transform -- uid: 7658 - type: WallReinforced - components: - - pos: -3.5,31.5 - parent: 8364 - type: Transform -- uid: 7659 - type: WallReinforced - components: - - pos: -1.5,34.5 - parent: 8364 - type: Transform -- uid: 7660 - type: WallReinforced - components: - - pos: -2.5,34.5 - parent: 8364 - type: Transform -- uid: 7661 - type: WallReinforced - components: - - pos: -3.5,33.5 - parent: 8364 - type: Transform -- uid: 7662 - type: WallReinforced - components: - - pos: -3.5,34.5 - parent: 8364 - type: Transform -- uid: 7663 - type: WallReinforced - components: - - pos: -3.5,35.5 - parent: 8364 - type: Transform -- uid: 7664 - type: WallReinforced - components: - - pos: -3.5,36.5 - parent: 8364 - type: Transform -- uid: 7665 - type: WallReinforced - components: - - pos: -3.5,37.5 - parent: 8364 - type: Transform -- uid: 7666 - type: WallReinforced - components: - - pos: -3.5,38.5 - parent: 8364 - type: Transform -- uid: 7667 - type: WallReinforced - components: - - pos: -3.5,39.5 - parent: 8364 - type: Transform -- uid: 7668 - type: WallReinforced - components: - - pos: -3.5,40.5 - parent: 8364 - type: Transform -- uid: 7669 - type: WallReinforced - components: - - pos: -2.5,40.5 - parent: 8364 - type: Transform -- uid: 7670 - type: WallReinforced - components: - - pos: -1.5,40.5 - parent: 8364 - type: Transform -- uid: 7671 - type: ReinforcedPlasmaWindow - components: - - pos: 2.5,40.5 - parent: 8364 - type: Transform -- uid: 7672 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,40.5 - parent: 8364 - type: Transform -- uid: 7673 - type: ReinforcedPlasmaWindow - components: - - pos: 0.5,40.5 - parent: 8364 - type: Transform -- uid: 7674 - type: ReinforcedPlasmaWindow - components: - - pos: -0.5,40.5 - parent: 8364 - type: Transform -- uid: 7675 - type: WallReinforced - components: - - pos: 3.5,40.5 - parent: 8364 - type: Transform -- uid: 7676 - type: WallReinforced - components: - - pos: 4.5,40.5 - parent: 8364 - type: Transform -- uid: 7677 - type: WallReinforced - components: - - pos: 5.5,38.5 - parent: 8364 - type: Transform -- uid: 7678 - type: WallReinforced - components: - - pos: 5.5,39.5 - parent: 8364 - type: Transform -- uid: 7679 - type: WallReinforced - components: - - pos: 5.5,40.5 - parent: 8364 - type: Transform -- uid: 7680 - type: WallReinforced - components: - - pos: 5.5,41.5 - parent: 8364 - type: Transform -- uid: 7681 - type: WallReinforced - components: - - pos: 5.5,42.5 - parent: 8364 - type: Transform -- uid: 7682 - type: WallReinforced - components: - - pos: 5.5,2.5 - parent: 8364 - type: Transform -- uid: 7683 - type: WallReinforced - components: - - pos: 6.5,2.5 - parent: 8364 - type: Transform -- uid: 7684 - type: WallSolid - components: - - pos: 10.5,34.5 - parent: 8364 - type: Transform -- uid: 7685 - type: WallSolid - components: - - pos: 10.5,35.5 - parent: 8364 - type: Transform -- uid: 7686 - type: WallSolid - components: - - pos: 10.5,36.5 - parent: 8364 - type: Transform -- uid: 7687 - type: WallReinforced - components: - - pos: 6.5,1.5 - parent: 8364 - type: Transform -- uid: 7688 - type: WallReinforced - components: - - pos: 28.5,28.5 - parent: 8364 - type: Transform -- uid: 7689 - type: WallReinforced - components: - - pos: 28.5,27.5 - parent: 8364 - type: Transform -- uid: 7690 - type: ReinforcedWindow - components: - - pos: 11.5,40.5 - parent: 8364 - type: Transform -- uid: 7691 - type: Grille - components: - - pos: 11.5,37.5 - parent: 8364 - type: Transform -- uid: 7692 - type: WallReinforced - components: - - pos: 29.5,27.5 - parent: 8364 - type: Transform -- uid: 7693 - type: WallReinforced - components: - - pos: 27.5,20.5 - parent: 8364 - type: Transform -- uid: 7694 - type: ClothingNeckHeadphones - components: - - pos: 25.568052,35.594994 - parent: 8364 - type: Transform -- uid: 7695 - type: Grille - components: - - pos: 7.5,42.5 - parent: 8364 - type: Transform -- uid: 7696 - type: Grille - components: - - pos: 9.5,42.5 - parent: 8364 - type: Transform -- uid: 7697 - type: WallReinforced - components: - - pos: 28.5,29.5 - parent: 8364 - type: Transform -- uid: 7698 - type: Grille - components: - - pos: 15.5,42.5 - parent: 8364 - type: Transform -- uid: 7699 - type: Grille - components: - - pos: 13.5,42.5 - parent: 8364 - type: Transform -- uid: 7700 - type: Grille - components: - - pos: 14.5,42.5 - parent: 8364 - type: Transform -- uid: 7701 - type: WallReinforced - components: - - pos: 16.5,42.5 - parent: 8364 - type: Transform -- uid: 7702 - type: WallReinforced - components: - - pos: 12.5,42.5 - parent: 8364 - type: Transform -- uid: 7703 - type: WallReinforced - components: - - pos: 13.5,36.5 - parent: 8364 - type: Transform -- uid: 7704 - type: WallReinforced - components: - - pos: 11.5,41.5 - parent: 8364 - type: Transform -- uid: 7705 - type: WallReinforced - components: - - pos: 11.5,39.5 - parent: 8364 - type: Transform -- uid: 7706 - type: WallReinforced - components: - - pos: 6.5,42.5 - parent: 8364 - type: Transform -- uid: 7707 - type: WallReinforced - components: - - pos: 11.5,42.5 - parent: 8364 - type: Transform -- uid: 7708 - type: Grille - components: - - pos: 16.5,36.5 - parent: 8364 - type: Transform -- uid: 7709 - type: WallReinforced - components: - - pos: 8.5,42.5 - parent: 8364 - type: Transform -- uid: 7710 - type: GasPipeTJunction - components: - - pos: -11.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7711 - type: Grille - components: - - pos: 11.5,38.5 - parent: 8364 - type: Transform -- uid: 7712 - type: Grille - components: - - pos: 12.5,36.5 - parent: 8364 - type: Transform -- uid: 7713 - type: Grille - components: - - pos: 9.5,34.5 - parent: 8364 - type: Transform -- uid: 7714 - type: Grille - components: - - pos: 7.5,34.5 - parent: 8364 - type: Transform -- uid: 7715 - type: Grille - components: - - pos: 6.5,34.5 - parent: 8364 - type: Transform -- uid: 7716 - type: Grille - components: - - pos: 3.5,34.5 - parent: 8364 - type: Transform -- uid: 7717 - type: Grille - components: - - pos: -3.5,30.5 - parent: 8364 - type: Transform -- uid: 7718 - type: Grille - components: - - pos: -3.5,32.5 - parent: 8364 - type: Transform -- uid: 7719 - type: Grille - components: - - pos: 0.5,34.5 - parent: 8364 - type: Transform -- uid: 7720 - type: Grille - components: - - pos: -0.5,34.5 - parent: 8364 - type: Transform -- uid: 7721 - type: Grille - components: - - pos: 3.5,34.5 - parent: 8364 - type: Transform -- uid: 7722 - type: Grille - components: - - pos: 5.5,32.5 - parent: 8364 - type: Transform -- uid: 7723 - type: Grille - components: - - pos: 5.5,30.5 - parent: 8364 - type: Transform -- uid: 7724 - type: ReinforcedWindow - components: - - pos: 16.5,36.5 - parent: 8364 - type: Transform -- uid: 7725 - type: ReinforcedWindow - components: - - pos: 12.5,36.5 - parent: 8364 - type: Transform -- uid: 7726 - type: WallReinforced - components: - - pos: 10.5,42.5 - parent: 8364 - type: Transform -- uid: 7727 - type: ReinforcedWindow - components: - - pos: 11.5,38.5 - parent: 8364 - type: Transform -- uid: 7728 - type: ReinforcedWindow - components: - - pos: 9.5,34.5 - parent: 8364 - type: Transform -- uid: 7729 - type: ReinforcedWindow - components: - - pos: 7.5,34.5 - parent: 8364 - type: Transform -- uid: 7730 - type: ReinforcedWindow - components: - - pos: 6.5,34.5 - parent: 8364 - type: Transform -- uid: 7731 - type: ReinforcedWindow - components: - - pos: 5.5,30.5 - parent: 8364 - type: Transform -- uid: 7732 - type: ReinforcedWindow - components: - - pos: 5.5,32.5 - parent: 8364 - type: Transform -- uid: 7733 - type: ReinforcedWindow - components: - - pos: 3.5,34.5 - parent: 8364 - type: Transform -- uid: 7734 - type: ReinforcedWindow - components: - - pos: -0.5,34.5 - parent: 8364 - type: Transform -- uid: 7735 - type: ReinforcedWindow - components: - - pos: 0.5,34.5 - parent: 8364 - type: Transform -- uid: 7736 - type: ReinforcedWindow - components: - - pos: -3.5,32.5 - parent: 8364 - type: Transform -- uid: 7737 - type: ReinforcedWindow - components: - - pos: -3.5,30.5 - parent: 8364 - type: Transform -- uid: 7738 - type: ReinforcedWindow - components: - - pos: 3.5,29.5 - parent: 8364 - type: Transform -- uid: 7739 - type: ReinforcedWindow - components: - - pos: 1.5,29.5 - parent: 8364 - type: Transform -- uid: 7740 - type: ReinforcedWindow - components: - - pos: 0.5,29.5 - parent: 8364 - type: Transform -- uid: 7741 - type: ReinforcedWindow - components: - - pos: -1.5,29.5 - parent: 8364 - type: Transform -- uid: 7742 - type: ReinforcedWindow - components: - - pos: -2.5,29.5 - parent: 8364 - type: Transform -- uid: 7743 - type: CableApcExtension - components: - - pos: -1.5,23.5 - parent: 8364 - type: Transform -- uid: 7744 - type: ReinforcedWindow - components: - - pos: -8.5,25.5 - parent: 8364 - type: Transform -- uid: 7745 - type: ReinforcedWindow - components: - - pos: -6.5,25.5 - parent: 8364 - type: Transform -- uid: 7746 - type: ReinforcedWindow - components: - - pos: -4.5,25.5 - parent: 8364 - type: Transform -- uid: 7747 - type: ReinforcedWindow - components: - - pos: -2.5,25.5 - parent: 8364 - type: Transform -- uid: 7748 - type: ReinforcedWindow - components: - - pos: -0.5,25.5 - parent: 8364 - type: Transform -- uid: 7749 - type: ReinforcedWindow - components: - - pos: 2.5,25.5 - parent: 8364 - type: Transform -- uid: 7750 - type: ReinforcedWindow - components: - - pos: 5.5,25.5 - parent: 8364 - type: Transform -- uid: 7751 - type: ReinforcedWindow - components: - - pos: 8.5,25.5 - parent: 8364 - type: Transform -- uid: 7752 - type: ReinforcedWindow - components: - - pos: 10.5,25.5 - parent: 8364 - type: Transform -- uid: 7753 - type: ReinforcedWindow - components: - - pos: 18.5,23.5 - parent: 8364 - type: Transform -- uid: 7754 - type: ReinforcedWindow - components: - - pos: 17.5,23.5 - parent: 8364 - type: Transform -- uid: 7755 - type: WallReinforced - components: - - pos: 17.5,42.5 - parent: 8364 - type: Transform -- uid: 7756 - type: CableApcExtension - components: - - pos: 15.5,26.5 - parent: 8364 - type: Transform -- uid: 7757 - type: ReinforcedWindow - components: - - pos: 13.5,23.5 - parent: 8364 - type: Transform -- uid: 7758 - type: Grille - components: - - pos: 12.5,23.5 - parent: 8364 - type: Transform -- uid: 7759 - type: Grille - components: - - pos: 13.5,23.5 - parent: 8364 - type: Transform -- uid: 7760 - type: WallReinforced - components: - - pos: 17.5,41.5 - parent: 8364 - type: Transform -- uid: 7761 - type: ReinforcedWindow - components: - - pos: 12.5,23.5 - parent: 8364 - type: Transform -- uid: 7762 - type: WallReinforced - components: - - pos: 17.5,40.5 - parent: 8364 - type: Transform -- uid: 7763 - type: Grille - components: - - pos: 17.5,23.5 - parent: 8364 - type: Transform -- uid: 7764 - type: Grille - components: - - pos: 18.5,23.5 - parent: 8364 - type: Transform -- uid: 7765 - type: Grille - components: - - pos: 3.5,29.5 - parent: 8364 - type: Transform -- uid: 7766 - type: Grille - components: - - pos: 0.5,29.5 - parent: 8364 - type: Transform -- uid: 7767 - type: Grille - components: - - pos: 1.5,29.5 - parent: 8364 - type: Transform -- uid: 7768 - type: CableApcExtension - components: - - pos: -1.5,32.5 - parent: 8364 - type: Transform -- uid: 7769 - type: Grille - components: - - pos: -2.5,29.5 - parent: 8364 - type: Transform -- uid: 7770 - type: CableApcExtension - components: - - pos: -1.5,24.5 - parent: 8364 - type: Transform -- uid: 7771 - type: Grille - components: - - pos: -8.5,25.5 - parent: 8364 - type: Transform -- uid: 7772 - type: Grille - components: - - pos: -6.5,25.5 - parent: 8364 - type: Transform -- uid: 7773 - type: Grille - components: - - pos: -4.5,25.5 - parent: 8364 - type: Transform -- uid: 7774 - type: Grille - components: - - pos: -2.5,25.5 - parent: 8364 - type: Transform -- uid: 7775 - type: Grille - components: - - pos: -0.5,25.5 - parent: 8364 - type: Transform -- uid: 7776 - type: Grille - components: - - pos: 2.5,25.5 - parent: 8364 - type: Transform -- uid: 7777 - type: Grille - components: - - pos: 5.5,25.5 - parent: 8364 - type: Transform -- uid: 7778 - type: Grille - components: - - pos: 8.5,25.5 - parent: 8364 - type: Transform -- uid: 7779 - type: Grille - components: - - pos: 10.5,25.5 - parent: 8364 - type: Transform -- uid: 7780 - type: WallReinforced - components: - - pos: 10.5,29.5 - parent: 8364 - type: Transform -- uid: 7781 - type: WallReinforced - components: - - pos: 9.5,29.5 - parent: 8364 - type: Transform -- uid: 7782 - type: WallSolid - components: - - pos: 17.5,-1.5 - parent: 8364 - type: Transform -- uid: 7783 - type: ReinforcedWindow - components: - - pos: 6.5,29.5 - parent: 8364 - type: Transform -- uid: 7784 - type: WallReinforced - components: - - pos: 5.5,29.5 - parent: 8364 - type: Transform -- uid: 7785 - type: WallReinforced - components: - - pos: 4.5,29.5 - parent: 8364 - type: Transform -- uid: 7786 - type: CableMV - components: - - pos: -4.5,29.5 - parent: 8364 - type: Transform -- uid: 7787 - type: WallSolid - components: - - pos: -6.5,28.5 - parent: 8364 - type: Transform -- uid: 7788 - type: Grille - components: - - pos: -10.5,25.5 - parent: 8364 - type: Transform -- uid: 7789 - type: Bed - components: - - pos: -6.5,30.5 - parent: 8364 - type: Transform -- uid: 7790 - type: WallSolid - components: - - pos: -9.5,28.5 - parent: 8364 - type: Transform -- uid: 7791 - type: WallSolid - components: - - pos: -10.5,28.5 - parent: 8364 - type: Transform -- uid: 7792 - type: WallSolid - components: - - pos: -12.5,28.5 - parent: 8364 - type: Transform -- uid: 7793 - type: WallSolid - components: - - pos: -13.5,28.5 - parent: 8364 - type: Transform -- uid: 7794 - type: WallSolid - components: - - pos: -14.5,28.5 - parent: 8364 - type: Transform -- uid: 7795 - type: WallReinforced - components: - - pos: -15.5,28.5 - parent: 8364 - type: Transform -- uid: 7796 - type: WallReinforced - components: - - pos: -15.5,27.5 - parent: 8364 - type: Transform -- uid: 7797 - type: WallSolid - components: - - pos: -12.5,25.5 - parent: 8364 - type: Transform -- uid: 7798 - type: WallSolid - components: - - pos: -14.5,25.5 - parent: 8364 - type: Transform -- uid: 7799 - type: WallReinforced - components: - - pos: -15.5,25.5 - parent: 8364 - type: Transform -- uid: 7800 - type: WallReinforced - components: - - pos: -15.5,24.5 - parent: 8364 - type: Transform -- uid: 7801 - type: AirlockSecurityGlassLocked - components: - - name: Security EVA - type: MetaData - - pos: -15.5,23.5 - parent: 8364 - type: Transform -- uid: 7802 - type: WallReinforced - components: - - pos: -15.5,22.5 - parent: 8364 - type: Transform -- uid: 7803 - type: WallSolid - components: - - pos: -11.5,25.5 - parent: 8364 - type: Transform -- uid: 7804 - type: WallSolid - components: - - pos: -11.5,24.5 - parent: 8364 - type: Transform -- uid: 7805 - type: WallSolid - components: - - pos: -11.5,23.5 - parent: 8364 - type: Transform -- uid: 7806 - type: WallSolid - components: - - pos: -7.5,25.5 - parent: 8364 - type: Transform -- uid: 7807 - type: WallSolid - components: - - pos: -7.5,24.5 - parent: 8364 - type: Transform -- uid: 7808 - type: WallSolid - components: - - pos: -7.5,23.5 - parent: 8364 - type: Transform -- uid: 7809 - type: WallSolid - components: - - pos: -3.5,25.5 - parent: 8364 - type: Transform -- uid: 7810 - type: WallSolid - components: - - pos: -3.5,24.5 - parent: 8364 - type: Transform -- uid: 7811 - type: WallSolid - components: - - pos: -3.5,23.5 - parent: 8364 - type: Transform -- uid: 7812 - type: WallSolid - components: - - pos: 0.5,25.5 - parent: 8364 - type: Transform -- uid: 7813 - type: WallSolid - components: - - pos: 0.5,24.5 - parent: 8364 - type: Transform -- uid: 7814 - type: WallSolid - components: - - pos: 0.5,23.5 - parent: 8364 - type: Transform -- uid: 7815 - type: WallSolid - components: - - pos: 3.5,25.5 - parent: 8364 - type: Transform -- uid: 7816 - type: WallSolid - components: - - pos: 7.5,25.5 - parent: 8364 - type: Transform -- uid: 7817 - type: WallSolid - components: - - pos: 7.5,24.5 - parent: 8364 - type: Transform -- uid: 7818 - type: WallSolid - components: - - pos: 7.5,23.5 - parent: 8364 - type: Transform -- uid: 7819 - type: WallSolid - components: - - pos: 12.5,18.5 - parent: 8364 - type: Transform -- uid: 7820 - type: WallSolid - components: - - pos: 13.5,18.5 - parent: 8364 - type: Transform -- uid: 7821 - type: RandomVendingSnacks - components: - - pos: 13.5,19.5 - parent: 8364 - type: Transform -- uid: 7822 - type: WallSolid - components: - - pos: 17.5,18.5 - parent: 8364 - type: Transform -- uid: 7823 - type: WallSolid - components: - - pos: 16.5,18.5 - parent: 8364 - type: Transform -- uid: 7824 - type: WallSolid - components: - - pos: 14.5,18.5 - parent: 8364 - type: Transform -- uid: 7825 - type: WallSolid - components: - - pos: 17.5,19.5 - parent: 8364 - type: Transform -- uid: 7826 - type: WallSolid - components: - - pos: 18.5,19.5 - parent: 8364 - type: Transform -- uid: 7827 - type: WallSolid - components: - - pos: 19.5,19.5 - parent: 8364 - type: Transform -- uid: 7828 - type: CableApcExtension - components: - - pos: -46.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7829 - type: WallSolid - components: - - pos: 19.5,21.5 - parent: 8364 - type: Transform -- uid: 7830 - type: WallSolid - components: - - pos: 19.5,23.5 - parent: 8364 - type: Transform -- uid: 7831 - type: WallSolid - components: - - pos: 19.5,24.5 - parent: 8364 - type: Transform -- uid: 7832 - type: WallSolid - components: - - pos: 19.5,25.5 - parent: 8364 - type: Transform -- uid: 7833 - type: WallSolid - components: - - pos: 19.5,26.5 - parent: 8364 - type: Transform -- uid: 7834 - type: WallSolid - components: - - pos: 19.5,27.5 - parent: 8364 - type: Transform -- uid: 7835 - type: WallSolid - components: - - pos: 19.5,28.5 - parent: 8364 - type: Transform -- uid: 7836 - type: WallSolid - components: - - pos: 19.5,29.5 - parent: 8364 - type: Transform -- uid: 7837 - type: WallSolid - components: - - pos: 18.5,29.5 - parent: 8364 - type: Transform -- uid: 7838 - type: WallSolid - components: - - pos: 17.5,29.5 - parent: 8364 - type: Transform -- uid: 7839 - type: APCBasic - components: - - name: Courtroom APC - type: MetaData - - pos: 15.5,29.5 - parent: 8364 - type: Transform - - startingCharge: 12000 - type: Battery - - loadingNetworkDemand: 15 - currentReceiving: 15.000059 - currentSupply: 15 - supplyRampPosition: -5.9127808E-05 - type: PowerNetworkBattery -- uid: 7840 - type: WallSolid - components: - - pos: 15.5,29.5 - parent: 8364 - type: Transform -- uid: 7841 - type: WallSolid - components: - - pos: 14.5,29.5 - parent: 8364 - type: Transform -- uid: 7842 - type: WallSolid - components: - - pos: 13.5,29.5 - parent: 8364 - type: Transform -- uid: 7843 - type: WallSolid - components: - - pos: 12.5,29.5 - parent: 8364 - type: Transform -- uid: 7844 - type: WallSolid - components: - - pos: 11.5,29.5 - parent: 8364 - type: Transform -- uid: 7845 - type: WallReinforced - components: - - pos: 11.5,28.5 - parent: 8364 - type: Transform -- uid: 7846 - type: WallReinforced - components: - - pos: 11.5,26.5 - parent: 8364 - type: Transform -- uid: 7847 - type: WallReinforced - components: - - pos: 11.5,25.5 - parent: 8364 - type: Transform -- uid: 7848 - type: WallReinforced - components: - - pos: 11.5,24.5 - parent: 8364 - type: Transform -- uid: 7849 - type: WallReinforced - components: - - pos: 11.5,23.5 - parent: 8364 - type: Transform -- uid: 7850 - type: Window - components: - - pos: 11.5,19.5 - parent: 8364 - type: Transform -- uid: 7851 - type: Window - components: - - pos: 11.5,21.5 - parent: 8364 - type: Transform -- uid: 7852 - type: ReinforcedWindow - components: - - pos: 3.5,22.5 - parent: 8364 - type: Transform -- uid: 7853 - type: ReinforcedWindow - components: - - pos: 5.5,22.5 - parent: 8364 - type: Transform -- uid: 7854 - type: Grille - components: - - pos: -2.5,6.5 - parent: 8364 - type: Transform -- uid: 7855 - type: Grille - components: - - pos: 3.5,22.5 - parent: 8364 - type: Transform -- uid: 7856 - type: Grille - components: - - pos: -2.5,14.5 - parent: 8364 - type: Transform -- uid: 7857 - type: Grille - components: - - pos: -2.5,15.5 - parent: 8364 - type: Transform -- uid: 7858 - type: Grille - components: - - pos: -2.5,16.5 - parent: 8364 - type: Transform -- uid: 7859 - type: Grille - components: - - pos: -5.5,18.5 - parent: 8364 - type: Transform -- uid: 7860 - type: Grille - components: - - pos: -10.5,18.5 - parent: 8364 - type: Transform -- uid: 7861 - type: Grille - components: - - pos: -11.5,18.5 - parent: 8364 - type: Transform -- uid: 7862 - type: Grille - components: - - pos: -10.5,22.5 - parent: 8364 - type: Transform -- uid: 7863 - type: Grille - components: - - pos: -9.5,22.5 - parent: 8364 - type: Transform -- uid: 7864 - type: Grille - components: - - pos: -8.5,22.5 - parent: 8364 - type: Transform -- uid: 7865 - type: Grille - components: - - pos: -6.5,22.5 - parent: 8364 - type: Transform -- uid: 7866 - type: Grille - components: - - pos: -5.5,22.5 - parent: 8364 - type: Transform -- uid: 7867 - type: WallReinforced - components: - - pos: -3.5,22.5 - parent: 8364 - type: Transform -- uid: 7868 - type: Grille - components: - - pos: -4.5,22.5 - parent: 8364 - type: Transform -- uid: 7869 - type: Grille - components: - - pos: -1.5,22.5 - parent: 8364 - type: Transform -- uid: 7870 - type: Grille - components: - - pos: -0.5,22.5 - parent: 8364 - type: Transform -- uid: 7871 - type: Grille - components: - - pos: -2.5,7.5 - parent: 8364 - type: Transform -- uid: 7872 - type: Grille - components: - - pos: 5.5,22.5 - parent: 8364 - type: Transform -- uid: 7873 - type: WallReinforced - components: - - pos: 11.5,22.5 - parent: 8364 - type: Transform -- uid: 7874 - type: Grille - components: - - pos: 11.5,21.5 - parent: 8364 - type: Transform -- uid: 7875 - type: ReinforcedWindow - components: - - pos: -0.5,22.5 - parent: 8364 - type: Transform -- uid: 7876 - type: ReinforcedWindow - components: - - pos: -1.5,22.5 - parent: 8364 - type: Transform -- uid: 7877 - type: ReinforcedWindow - components: - - pos: -2.5,22.5 - parent: 8364 - type: Transform -- uid: 7878 - type: ReinforcedWindow - components: - - pos: -4.5,22.5 - parent: 8364 - type: Transform -- uid: 7879 - type: ReinforcedWindow - components: - - pos: -5.5,22.5 - parent: 8364 - type: Transform -- uid: 7880 - type: ReinforcedWindow - components: - - pos: -6.5,22.5 - parent: 8364 - type: Transform -- uid: 7881 - type: ReinforcedWindow - components: - - pos: -8.5,22.5 - parent: 8364 - type: Transform -- uid: 7882 - type: ReinforcedWindow - components: - - pos: -9.5,22.5 - parent: 8364 - type: Transform -- uid: 7883 - type: ReinforcedWindow - components: - - pos: -10.5,22.5 - parent: 8364 - type: Transform -- uid: 7884 - type: ReinforcedWindow - components: - - pos: -11.5,18.5 - parent: 8364 - type: Transform -- uid: 7885 - type: ReinforcedWindow - components: - - pos: -10.5,18.5 - parent: 8364 - type: Transform -- uid: 7886 - type: ReinforcedWindow - components: - - pos: -5.5,18.5 - parent: 8364 - type: Transform -- uid: 7887 - type: ReinforcedWindow - components: - - pos: -2.5,6.5 - parent: 8364 - type: Transform -- uid: 7888 - type: ReinforcedWindow - components: - - pos: -2.5,7.5 - parent: 8364 - type: Transform -- uid: 7889 - type: ReinforcedWindow - components: - - pos: -2.5,14.5 - parent: 8364 - type: Transform -- uid: 7890 - type: ReinforcedWindow - components: - - pos: -2.5,15.5 - parent: 8364 - type: Transform -- uid: 7891 - type: ReinforcedWindow - components: - - pos: -2.5,16.5 - parent: 8364 - type: Transform -- uid: 7892 - type: Grille - components: - - pos: 11.5,19.5 - parent: 8364 - type: Transform -- uid: 7893 - type: WallReinforced - components: - - pos: 10.5,22.5 - parent: 8364 - type: Transform -- uid: 7894 - type: WallReinforced - components: - - pos: 9.5,22.5 - parent: 8364 - type: Transform -- uid: 7895 - type: WallReinforced - components: - - pos: 8.5,22.5 - parent: 8364 - type: Transform -- uid: 7896 - type: WallReinforced - components: - - pos: 7.5,22.5 - parent: 8364 - type: Transform -- uid: 7897 - type: WallReinforced - components: - - pos: 0.5,22.5 - parent: 8364 - type: Transform -- uid: 7898 - type: Grille - components: - - pos: -2.5,22.5 - parent: 8364 - type: Transform -- uid: 7899 - type: WallReinforced - components: - - pos: -7.5,22.5 - parent: 8364 - type: Transform -- uid: 7900 - type: WallReinforced - components: - - pos: -11.5,22.5 - parent: 8364 - type: Transform -- uid: 7901 - type: WallReinforced - components: - - pos: -11.5,21.5 - parent: 8364 - type: Transform -- uid: 7902 - type: WallReinforced - components: - - pos: -12.5,21.5 - parent: 8364 - type: Transform -- uid: 7903 - type: WallReinforced - components: - - pos: -13.5,21.5 - parent: 8364 - type: Transform -- uid: 7904 - type: WallReinforced - components: - - pos: -14.5,21.5 - parent: 8364 - type: Transform -- uid: 7905 - type: WallReinforced - components: - - pos: -15.5,21.5 - parent: 8364 - type: Transform -- uid: 7906 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -18.5,22.5 - parent: 8364 - type: Transform -- uid: 7907 - type: WallSolid - components: - - pos: -15.5,18.5 - parent: 8364 - type: Transform -- uid: 7908 - type: WallSolid - components: - - pos: -14.5,18.5 - parent: 8364 - type: Transform -- uid: 7909 - type: WallSolid - components: - - pos: -12.5,18.5 - parent: 8364 - type: Transform -- uid: 7910 - type: WallSolid - components: - - pos: -9.5,18.5 - parent: 8364 - type: Transform -- uid: 7911 - type: WallSolid - components: - - pos: -8.5,18.5 - parent: 8364 - type: Transform -- uid: 7912 - type: WallSolid - components: - - pos: -7.5,18.5 - parent: 8364 - type: Transform -- uid: 7913 - type: WallSolid - components: - - pos: -6.5,18.5 - parent: 8364 - type: Transform -- uid: 7914 - type: WallSolid - components: - - pos: -3.5,18.5 - parent: 8364 - type: Transform -- uid: 7915 - type: WallSolid - components: - - pos: -2.5,18.5 - parent: 8364 - type: Transform -- uid: 7916 - type: WallSolid - components: - - pos: -2.5,17.5 - parent: 8364 - type: Transform -- uid: 7917 - type: WallSolid - components: - - pos: -2.5,13.5 - parent: 8364 - type: Transform -- uid: 7918 - type: WallSolid - components: - - pos: -2.5,12.5 - parent: 8364 - type: Transform -- uid: 7919 - type: WallReinforced - components: - - pos: -2.5,8.5 - parent: 8364 - type: Transform -- uid: 7920 - type: WallReinforced - components: - - pos: -2.5,9.5 - parent: 8364 - type: Transform -- uid: 7921 - type: WallReinforced - components: - - pos: -2.5,10.5 - parent: 8364 - type: Transform -- uid: 7922 - type: WallReinforced - components: - - pos: -6.5,10.5 - parent: 8364 - type: Transform -- uid: 7923 - type: WallReinforced - components: - - pos: -5.5,10.5 - parent: 8364 - type: Transform -- uid: 7924 - type: WallReinforced - components: - - pos: -4.5,10.5 - parent: 8364 - type: Transform -- uid: 7925 - type: WallSolid - components: - - pos: 11.5,18.5 - parent: 8364 - type: Transform -- uid: 7926 - type: WallSolid - components: - - pos: 10.5,18.5 - parent: 8364 - type: Transform -- uid: 7927 - type: ReinforcedWindow - components: - - pos: -4.5,38.5 - parent: 8364 - type: Transform -- uid: 7928 - type: Grille - components: - - pos: -4.5,38.5 - parent: 8364 - type: Transform -- uid: 7929 - type: WallSolid - components: - - pos: 7.5,18.5 - parent: 8364 - type: Transform -- uid: 7930 - type: WallSolid - components: - - pos: 6.5,18.5 - parent: 8364 - type: Transform -- uid: 7931 - type: WallSolid - components: - - pos: 5.5,18.5 - parent: 8364 - type: Transform -- uid: 7932 - type: WallSolid - components: - - pos: 4.5,18.5 - parent: 8364 - type: Transform -- uid: 7933 - type: WallSolid - components: - - pos: 3.5,18.5 - parent: 8364 - type: Transform -- uid: 7934 - type: WallSolid - components: - - pos: 2.5,18.5 - parent: 8364 - type: Transform -- uid: 7935 - type: WallSolid - components: - - pos: 1.5,18.5 - parent: 8364 - type: Transform -- uid: 7936 - type: WallSolid - components: - - pos: 1.5,17.5 - parent: 8364 - type: Transform -- uid: 7937 - type: WallSolid - components: - - pos: 1.5,16.5 - parent: 8364 - type: Transform -- uid: 7938 - type: WallSolid - components: - - pos: 1.5,15.5 - parent: 8364 - type: Transform -- uid: 7939 - type: WallSolid - components: - - pos: 1.5,14.5 - parent: 8364 - type: Transform -- uid: 7940 - type: WallSolid - components: - - pos: 1.5,13.5 - parent: 8364 - type: Transform -- uid: 7941 - type: WallSolid - components: - - pos: 1.5,12.5 - parent: 8364 - type: Transform -- uid: 7942 - type: WallSolid - components: - - pos: 1.5,10.5 - parent: 8364 - type: Transform -- uid: 7943 - type: WallSolid - components: - - pos: 1.5,9.5 - parent: 8364 - type: Transform -- uid: 7944 - type: WallSolid - components: - - pos: 1.5,8.5 - parent: 8364 - type: Transform -- uid: 7945 - type: WallSolid - components: - - pos: 1.5,7.5 - parent: 8364 - type: Transform -- uid: 7946 - type: WallSolid - components: - - pos: 1.5,6.5 - parent: 8364 - type: Transform -- uid: 7947 - type: WallSolid - components: - - pos: 1.5,5.5 - parent: 8364 - type: Transform -- uid: 7948 - type: WallSolid - components: - - pos: 1.5,4.5 - parent: 8364 - type: Transform -- uid: 7949 - type: WallSolid - components: - - pos: 1.5,3.5 - parent: 8364 - type: Transform -- uid: 7950 - type: Grille - components: - - pos: -18.5,-26.5 - parent: 8364 - type: Transform -- uid: 7951 - type: Grille - components: - - pos: -18.5,-25.5 - parent: 8364 - type: Transform -- uid: 7952 - type: Grille - components: - - pos: -18.5,-22.5 - parent: 8364 - type: Transform -- uid: 7953 - type: Grille - components: - - pos: -18.5,-21.5 - parent: 8364 - type: Transform -- uid: 7954 - type: Grille - components: - - pos: 17.5,-9.5 - parent: 8364 - type: Transform -- uid: 7955 - type: TableCarpet - components: - - rot: 3.141592653589793 rad - pos: 19.5,-3.5 - parent: 8364 - type: Transform -- uid: 7956 - type: Window - components: - - pos: 17.5,-9.5 - parent: 8364 - type: Transform -- uid: 7957 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 24.5,-5.5 - parent: 8364 - type: Transform -- uid: 7958 - type: Window - components: - - pos: -18.5,-21.5 - parent: 8364 - type: Transform -- uid: 7959 - type: Window - components: - - pos: -18.5,-22.5 - parent: 8364 - type: Transform -- uid: 7960 - type: Window - components: - - pos: -18.5,-25.5 - parent: 8364 - type: Transform -- uid: 7961 - type: Window - components: - - pos: -18.5,-26.5 - parent: 8364 - type: Transform -- uid: 7962 - type: WallReinforced - components: - - pos: 17.5,37.5 - parent: 8364 - type: Transform -- uid: 7963 - type: WallReinforced - components: - - pos: 17.5,36.5 - parent: 8364 - type: Transform -- uid: 7964 - type: WallReinforced - components: - - pos: 21.5,37.5 - parent: 8364 - type: Transform -- uid: 7965 - type: WallReinforced - components: - - pos: 20.5,37.5 - parent: 8364 - type: Transform -- uid: 7966 - type: Grille - components: - - pos: -18.5,-19.5 - parent: 8364 - type: Transform -- uid: 7967 - type: Grille - components: - - pos: -18.5,-17.5 - parent: 8364 - type: Transform -- uid: 7968 - type: Grille - components: - - pos: -12.5,0.5 - parent: 8364 - type: Transform -- uid: 7969 - type: Grille - components: - - pos: -10.5,0.5 - parent: 8364 - type: Transform -- uid: 7970 - type: Grille - components: - - pos: 4.5,-28.5 - parent: 8364 - type: Transform -- uid: 7971 - type: Grille - components: - - pos: 3.5,-28.5 - parent: 8364 - type: Transform -- uid: 7972 - type: Grille - components: - - pos: 2.5,-28.5 - parent: 8364 - type: Transform -- uid: 7973 - type: Grille - components: - - pos: -3.5,-28.5 - parent: 8364 - type: Transform -- uid: 7974 - type: Grille - components: - - pos: -4.5,-28.5 - parent: 8364 - type: Transform -- uid: 7975 - type: Grille - components: - - pos: -5.5,-28.5 - parent: 8364 - type: Transform -- uid: 7976 - type: WallReinforced - components: - - pos: 15.5,36.5 - parent: 8364 - type: Transform -- uid: 7977 - type: WallReinforced - components: - - pos: 11.5,36.5 - parent: 8364 - type: Transform -- uid: 7978 - type: Chair - components: - - pos: 18.5,28.5 - parent: 8364 - type: Transform -- uid: 7979 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 15.5,21.5 - parent: 8364 - type: Transform -- uid: 7980 - type: CarpetGreen - components: - - pos: 16.5,24.5 - parent: 8364 - type: Transform -- uid: 7981 - type: FirelockGlass - components: - - pos: 39.5,-37.5 - parent: 8364 - type: Transform -- uid: 7982 - type: WallSolid - components: - - pos: -10.5,-32.5 - parent: 8364 - type: Transform -- uid: 7983 - type: WallSolid - components: - - pos: -9.5,-32.5 - parent: 8364 - type: Transform -- uid: 7984 - type: WallSolid - components: - - pos: -8.5,-32.5 - parent: 8364 - type: Transform -- uid: 7985 - type: WallSolid - components: - - pos: -7.5,-32.5 - parent: 8364 - type: Transform -- uid: 7986 - type: WallSolid - components: - - pos: -6.5,-32.5 - parent: 8364 - type: Transform -- uid: 7987 - type: WallSolid - components: - - pos: -5.5,-32.5 - parent: 8364 - type: Transform -- uid: 7988 - type: WallSolid - components: - - pos: -4.5,-32.5 - parent: 8364 - type: Transform -- uid: 7989 - type: WallSolid - components: - - pos: -3.5,-32.5 - parent: 8364 - type: Transform -- uid: 7990 - type: WallSolid - components: - - pos: -2.5,-32.5 - parent: 8364 - type: Transform -- uid: 7991 - type: WallReinforced - components: - - pos: 8.5,-32.5 - parent: 8364 - type: Transform -- uid: 7992 - type: Girder - components: - - pos: 10.5,-36.5 - parent: 8364 - type: Transform -- uid: 7993 - type: FirelockGlass - components: - - pos: 41.5,-37.5 - parent: 8364 - type: Transform -- uid: 7994 - type: WallReinforced - components: - - pos: 1.5,-37.5 - parent: 8364 - type: Transform -- uid: 7995 - type: WallReinforced - components: - - pos: 2.5,-37.5 - parent: 8364 - type: Transform -- uid: 7996 - type: WallReinforced - components: - - pos: 3.5,-37.5 - parent: 8364 - type: Transform -- uid: 7997 - type: WallReinforced - components: - - pos: 4.5,-37.5 - parent: 8364 - type: Transform -- uid: 7998 - type: WallReinforced - components: - - pos: 5.5,-37.5 - parent: 8364 - type: Transform -- uid: 7999 - type: WallSolid - components: - - pos: 9.5,-32.5 - parent: 8364 - type: Transform -- uid: 8000 - type: WallSolid - components: - - pos: 10.5,-32.5 - parent: 8364 - type: Transform -- uid: 8001 - type: WallSolid - components: - - pos: 11.5,-32.5 - parent: 8364 - type: Transform -- uid: 8002 - type: FirelockGlass - components: - - pos: 34.5,-29.5 - parent: 8364 - type: Transform -- uid: 8003 - type: WallSolid - components: - - pos: 13.5,-32.5 - parent: 8364 - type: Transform -- uid: 8004 - type: WallSolid - components: - - pos: -12.5,-18.5 - parent: 8364 - type: Transform -- uid: 8005 - type: ReinforcedWindow - components: - - pos: -14.5,-32.5 - parent: 8364 - type: Transform -- uid: 8006 - type: WallSolid - components: - - pos: 17.5,-32.5 - parent: 8364 - type: Transform -- uid: 8007 - type: WallSolid - components: - - pos: 17.5,-31.5 - parent: 8364 - type: Transform -- uid: 8008 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-31.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8009 - type: WallSolid - components: - - pos: 17.5,-29.5 - parent: 8364 - type: Transform -- uid: 8010 - type: WallReinforced - components: - - pos: 17.5,-28.5 - parent: 8364 - type: Transform -- uid: 8011 - type: ReinforcedWindow - components: - - pos: -13.5,-32.5 - parent: 8364 - type: Transform -- uid: 8012 - type: WallReinforced - components: - - pos: -15.5,-32.5 - parent: 8364 - type: Transform -- uid: 8013 - type: WallSolid - components: - - pos: 17.5,-25.5 - parent: 8364 - type: Transform -- uid: 8014 - type: WallSolid - components: - - pos: 17.5,-24.5 - parent: 8364 - type: Transform -- uid: 8015 - type: WallReinforced - components: - - pos: -16.5,-32.5 - parent: 8364 - type: Transform -- uid: 8016 - type: WallReinforced - components: - - pos: -16.5,-33.5 - parent: 8364 - type: Transform -- uid: 8017 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-27.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 20027 - Forward: - - port: Left - uid: 20027 - Off: - - port: Middle - uid: 20027 - type: SignalReceiver -- uid: 8018 - type: WallSolid - components: - - pos: 16.5,-33.5 - parent: 8364 - type: Transform -- uid: 8019 - type: WallSolid - components: - - pos: 14.5,-33.5 - parent: 8364 - type: Transform -- uid: 8020 - type: WallSolid - components: - - pos: 13.5,-33.5 - parent: 8364 - type: Transform -- uid: 8021 - type: ReinforcedWindow - components: - - pos: -12.5,-32.5 - parent: 8364 - type: Transform -- uid: 8022 - type: AirlockMedicalGlassLocked - components: - - pos: 17.5,-27.5 - parent: 8364 - type: Transform -- uid: 8023 - type: SignChemistry1 - components: - - pos: 18.5,-23.5 - parent: 8364 - type: Transform -- uid: 8024 - type: WallSolid - components: - - pos: 17.5,-11.5 - parent: 8364 - type: Transform -- uid: 8025 - type: WallSolid - components: - - pos: 17.5,-10.5 - parent: 8364 - type: Transform -- uid: 8026 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 8364 - type: Transform -- uid: 8027 - type: WallSolid - components: - - pos: 17.5,-8.5 - parent: 8364 - type: Transform -- uid: 8028 - type: Grille - components: - - pos: 17.5,-6.5 - parent: 8364 - type: Transform -- uid: 8029 - type: ReinforcedWindow - components: - - pos: 35.5,4.5 - parent: 8364 - type: Transform -- uid: 8030 - type: Window - components: - - pos: 17.5,-6.5 - parent: 8364 - type: Transform -- uid: 8031 - type: WallSolid - components: - - pos: 17.5,-4.5 - parent: 8364 - type: Transform -- uid: 8032 - type: WallSolid - components: - - pos: 17.5,-0.5 - parent: 8364 - type: Transform -- uid: 8033 - type: WallSolid - components: - - pos: 17.5,0.5 - parent: 8364 - type: Transform -- uid: 8034 - type: WallSolid - components: - - pos: 16.5,0.5 - parent: 8364 - type: Transform -- uid: 8035 - type: WallSolid - components: - - pos: 15.5,0.5 - parent: 8364 - type: Transform -- uid: 8036 - type: WallSolid - components: - - pos: 14.5,0.5 - parent: 8364 - type: Transform -- uid: 8037 - type: WallSolid - components: - - pos: 13.5,0.5 - parent: 8364 - type: Transform -- uid: 8038 - type: Airlock - components: - - pos: 12.5,0.5 - parent: 8364 - type: Transform -- uid: 8039 - type: WallSolid - components: - - pos: 11.5,0.5 - parent: 8364 - type: Transform -- uid: 8040 - type: WallSolid - components: - - pos: 10.5,0.5 - parent: 8364 - type: Transform -- uid: 8041 - type: WallReinforced - components: - - pos: 22.5,-23.5 - parent: 8364 - type: Transform -- uid: 8042 - type: WallReinforced - components: - - pos: 23.5,-23.5 - parent: 8364 - type: Transform -- uid: 8043 - type: WallSolid - components: - - pos: 1.5,2.5 - parent: 8364 - type: Transform -- uid: 8044 - type: WallReinforced - components: - - pos: -3.5,10.5 - parent: 8364 - type: Transform -- uid: 8045 - type: WallReinforced - components: - - pos: -1.5,-15.5 - parent: 8364 - type: Transform -- uid: 8046 - type: WallReinforced - components: - - pos: 5.5,-20.5 - parent: 8364 - type: Transform -- uid: 8047 - type: WallReinforced - components: - - pos: 5.5,-21.5 - parent: 8364 - type: Transform -- uid: 8048 - type: WallReinforced - components: - - pos: 5.5,-22.5 - parent: 8364 - type: Transform -- uid: 8049 - type: ReinforcedWindow - components: - - pos: -10.5,0.5 - parent: 8364 - type: Transform -- uid: 8050 - type: ReinforcedWindow - components: - - pos: -12.5,0.5 - parent: 8364 - type: Transform -- uid: 8051 - type: WallSolid - components: - - pos: -11.5,-18.5 - parent: 8364 - type: Transform -- uid: 8052 - type: WallSolid - components: - - pos: -10.5,-18.5 - parent: 8364 - type: Transform -- uid: 8053 - type: WallReinforced - components: - - pos: 5.5,-25.5 - parent: 8364 - type: Transform -- uid: 8054 - type: SolarPanel - components: - - pos: -45.5,36.5 - parent: 8364 - type: Transform -- uid: 8055 - type: SolarPanel - components: - - pos: -47.5,36.5 - parent: 8364 - type: Transform - - supplyRate: 261 - type: PowerSupplier -- uid: 8056 - type: WallSolid - components: - - pos: -18.5,-3.5 - parent: 8364 - type: Transform -- uid: 8057 - type: WallSolid - components: - - pos: -18.5,-4.5 - parent: 8364 - type: Transform -- uid: 8058 - type: WallSolid - components: - - pos: -18.5,-5.5 - parent: 8364 - type: Transform -- uid: 8059 - type: WallSolid - components: - - pos: -18.5,-6.5 - parent: 8364 - type: Transform -- uid: 8060 - type: WallSolid - components: - - pos: -18.5,-7.5 - parent: 8364 - type: Transform -- uid: 8061 - type: WallSolid - components: - - pos: -18.5,-8.5 - parent: 8364 - type: Transform -- uid: 8062 - type: WallReinforced - components: - - pos: 23.5,-22.5 - parent: 8364 - type: Transform -- uid: 8063 - type: WallReinforced - components: - - pos: 23.5,-21.5 - parent: 8364 - type: Transform -- uid: 8064 - type: WallSolid - components: - - pos: -18.5,-14.5 - parent: 8364 - type: Transform -- uid: 8065 - type: WallSolid - components: - - pos: -18.5,-15.5 - parent: 8364 - type: Transform -- uid: 8066 - type: WallSolid - components: - - pos: -18.5,-16.5 - parent: 8364 - type: Transform -- uid: 8067 - type: ReinforcedWindow - components: - - pos: -18.5,-17.5 - parent: 8364 - type: Transform -- uid: 8068 - type: ReinforcedWindow - components: - - pos: -18.5,-19.5 - parent: 8364 - type: Transform -- uid: 8069 - type: WallSolid - components: - - pos: -18.5,-20.5 - parent: 8364 - type: Transform -- uid: 8070 - type: WallSolid - components: - - pos: -18.5,-27.5 - parent: 8364 - type: Transform -- uid: 8071 - type: WallSolid - components: - - pos: -18.5,-28.5 - parent: 8364 - type: Transform -- uid: 8072 - type: WallReinforced - components: - - pos: 22.5,-15.5 - parent: 8364 - type: Transform -- uid: 8073 - type: WallSolid - components: - - pos: -18.5,-30.5 - parent: 8364 - type: Transform -- uid: 8074 - type: WallReinforced - components: - - pos: 23.5,-20.5 - parent: 8364 - type: Transform -- uid: 8075 - type: WallSolid - components: - - pos: -18.5,-32.5 - parent: 8364 - type: Transform -- uid: 8076 - type: WallReinforced - components: - - pos: -0.5,-15.5 - parent: 8364 - type: Transform -- uid: 8077 - type: ComfyChair - components: - - pos: -10.5,-12.5 - parent: 8364 - type: Transform -- uid: 8078 - type: Grille - components: - - pos: -5.5,-18.5 - parent: 8364 - type: Transform -- uid: 8079 - type: Grille - components: - - pos: -5.5,-19.5 - parent: 8364 - type: Transform -- uid: 8080 - type: WallSolid - components: - - pos: 9.5,-23.5 - parent: 8364 - type: Transform -- uid: 8081 - type: WallReinforced - components: - - pos: -9.5,-18.5 - parent: 8364 - type: Transform -- uid: 8082 - type: WallSolid - components: - - pos: -9.5,-19.5 - parent: 8364 - type: Transform -- uid: 8083 - type: WallSolid - components: - - pos: -8.5,-20.5 - parent: 8364 - type: Transform -- uid: 8084 - type: WallSolid - components: - - pos: -9.5,-20.5 - parent: 8364 - type: Transform -- uid: 8085 - type: WallSolid - components: - - pos: -10.5,-20.5 - parent: 8364 - type: Transform -- uid: 8086 - type: WallSolid - components: - - pos: -11.5,-20.5 - parent: 8364 - type: Transform -- uid: 8087 - type: WallSolid - components: - - pos: -12.5,-20.5 - parent: 8364 - type: Transform -- uid: 8088 - type: ReinforcedWindow - components: - - pos: -12.5,-23.5 - parent: 8364 - type: Transform -- uid: 8089 - type: ReinforcedWindow - components: - - pos: -12.5,-24.5 - parent: 8364 - type: Transform -- uid: 8090 - type: WallSolid - components: - - pos: -14.5,-28.5 - parent: 8364 - type: Transform -- uid: 8091 - type: WallSolid - components: - - pos: -13.5,-28.5 - parent: 8364 - type: Transform -- uid: 8092 - type: WallReinforced - components: - - pos: -12.5,-27.5 - parent: 8364 - type: Transform -- uid: 8093 - type: WallReinforced - components: - - pos: -8.5,-28.5 - parent: 8364 - type: Transform -- uid: 8094 - type: WallReinforced - components: - - pos: -9.5,-28.5 - parent: 8364 - type: Transform -- uid: 8095 - type: WallReinforced - components: - - pos: -10.5,-28.5 - parent: 8364 - type: Transform -- uid: 8096 - type: WallReinforced - components: - - pos: -11.5,-28.5 - parent: 8364 - type: Transform -- uid: 8097 - type: WallReinforced - components: - - pos: -12.5,-28.5 - parent: 8364 - type: Transform -- uid: 8098 - type: WallReinforced - components: - - pos: -12.5,-26.5 - parent: 8364 - type: Transform -- uid: 8099 - type: WallReinforced - components: - - pos: -12.5,-25.5 - parent: 8364 - type: Transform -- uid: 8100 - type: WallReinforced - components: - - pos: -12.5,-21.5 - parent: 8364 - type: Transform -- uid: 8101 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 8364 - type: Transform -- uid: 8102 - type: WallReinforced - components: - - pos: -14.5,-21.5 - parent: 8364 - type: Transform -- uid: 8103 - type: WallReinforced - components: - - pos: -14.5,-20.5 - parent: 8364 - type: Transform -- uid: 8104 - type: WallReinforced - components: - - pos: -14.5,-18.5 - parent: 8364 - type: Transform -- uid: 8105 - type: WallReinforced - components: - - pos: -14.5,-17.5 - parent: 8364 - type: Transform -- uid: 8106 - type: WallReinforced - components: - - pos: -14.5,-16.5 - parent: 8364 - type: Transform -- uid: 8107 - type: Grille - components: - - pos: -14.5,-15.5 - parent: 8364 - type: Transform -- uid: 8108 - type: ReinforcedWindow - components: - - pos: -14.5,-14.5 - parent: 8364 - type: Transform -- uid: 8109 - type: ReinforcedWindow - components: - - pos: -14.5,-13.5 - parent: 8364 - type: Transform -- uid: 8110 - type: WallSolid - components: - - pos: 11.5,-23.5 - parent: 8364 - type: Transform -- uid: 8111 - type: WallReinforced - components: - - pos: 0.5,-15.5 - parent: 8364 - type: Transform -- uid: 8112 - type: WallReinforced - components: - - pos: -5.5,-11.5 - parent: 8364 - type: Transform -- uid: 8113 - type: WallReinforced - components: - - pos: -5.5,-12.5 - parent: 8364 - type: Transform -- uid: 8114 - type: WallReinforced - components: - - pos: -5.5,-13.5 - parent: 8364 - type: Transform -- uid: 8115 - type: WallReinforced - components: - - pos: 23.5,-16.5 - parent: 8364 - type: Transform -- uid: 8116 - type: WallReinforced - components: - - pos: -5.5,-15.5 - parent: 8364 - type: Transform -- uid: 8117 - type: CableApcExtension - components: - - pos: -3.5,-12.5 - parent: 8364 - type: Transform -- uid: 8118 - type: CableApcExtension - components: - - pos: -0.5,-13.5 - parent: 8364 - type: Transform -- uid: 8119 - type: WallSolid - components: - - pos: 10.5,-23.5 - parent: 8364 - type: Transform -- uid: 8120 - type: CableApcExtension - components: - - pos: -0.5,-14.5 - parent: 8364 - type: Transform -- uid: 8121 - type: CableApcExtension - components: - - pos: -0.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8122 - type: WallReinforced - components: - - pos: -6.5,-20.5 - parent: 8364 - type: Transform -- uid: 8123 - type: WallReinforced - components: - - pos: -6.5,-21.5 - parent: 8364 - type: Transform -- uid: 8124 - type: WallReinforced - components: - - pos: -6.5,-22.5 - parent: 8364 - type: Transform -- uid: 8125 - type: WallReinforced - components: - - pos: -6.5,-23.5 - parent: 8364 - type: Transform -- uid: 8126 - type: WallReinforced - components: - - pos: -6.5,-24.5 - parent: 8364 - type: Transform -- uid: 8127 - type: WallReinforced - components: - - pos: -6.5,-25.5 - parent: 8364 - type: Transform -- uid: 8128 - type: WallReinforced - components: - - pos: -6.5,-26.5 - parent: 8364 - type: Transform -- uid: 8129 - type: WallReinforced - components: - - pos: -6.5,-27.5 - parent: 8364 - type: Transform -- uid: 8130 - type: WallReinforced - components: - - pos: -6.5,-28.5 - parent: 8364 - type: Transform -- uid: 8131 - type: ReinforcedWindow - components: - - pos: -5.5,-28.5 - parent: 8364 - type: Transform -- uid: 8132 - type: ReinforcedWindow - components: - - pos: -4.5,-28.5 - parent: 8364 - type: Transform -- uid: 8133 - type: ReinforcedWindow - components: - - pos: -3.5,-28.5 - parent: 8364 - type: Transform -- uid: 8134 - type: WallReinforced - components: - - pos: 5.5,-24.5 - parent: 8364 - type: Transform -- uid: 8135 - type: ComputerSurveillanceCameraMonitor - components: - - pos: -7.5,17.5 - parent: 8364 - type: Transform -- uid: 8136 - type: ComputerTelevision - components: - - pos: -3.5,14.5 - parent: 8364 - type: Transform -- uid: 8137 - type: WallReinforced - components: - - pos: 23.5,-15.5 - parent: 8364 - type: Transform -- uid: 8138 - type: WallReinforced - components: - - pos: 3.5,2.5 - parent: 8364 - type: Transform -- uid: 8139 - type: ClothingHeadHelmetEVA - components: - - pos: -8.657342,7.696701 - parent: 8364 - type: Transform -- uid: 8140 - type: HighSecCommandLocked - components: - - name: Vault - type: MetaData - - pos: -31.5,2.5 - parent: 8364 - type: Transform -- uid: 8141 - type: WallReinforced - components: - - pos: -5.5,-14.5 - parent: 8364 - type: Transform -- uid: 8142 - type: CableMV - components: - - pos: -0.5,-13.5 - parent: 8364 - type: Transform -- uid: 8143 - type: AirlockCaptainLocked - components: - - name: Captain Chunnel - type: MetaData - - pos: -5.5,-16.5 - parent: 8364 - type: Transform -- uid: 8144 - type: AirlockCaptainLocked - components: - - name: Captain Chunnel - type: MetaData - - pos: 4.5,-16.5 - parent: 8364 - type: Transform -- uid: 8145 - type: ReinforcedWindow - components: - - pos: -30.5,1.5 - parent: 8364 - type: Transform -- uid: 8146 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-14.5 - parent: 8364 - type: Transform -- uid: 8147 - type: WallReinforced - components: - - pos: 1.5,-15.5 - parent: 8364 - type: Transform -- uid: 8148 - type: WallReinforced - components: - - pos: 2.5,-15.5 - parent: 8364 - type: Transform -- uid: 8149 - type: WallReinforced - components: - - pos: 3.5,-15.5 - parent: 8364 - type: Transform -- uid: 8150 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -0.5,-15.5 - parent: 8364 - type: Transform -- uid: 8151 - type: WallReinforced - components: - - pos: -3.5,-21.5 - parent: 8364 - type: Transform -- uid: 8152 - type: ReinforcedWindow - components: - - pos: 2.5,-20.5 - parent: 8364 - type: Transform -- uid: 8153 - type: WallReinforced - components: - - pos: -3.5,-19.5 - parent: 8364 - type: Transform -- uid: 8154 - type: CableApcExtension - components: - - pos: 2.5,-13.5 - parent: 8364 - type: Transform -- uid: 8155 - type: WallReinforced - components: - - pos: -5.5,-17.5 - parent: 8364 - type: Transform -- uid: 8156 - type: WindowReinforcedDirectional - components: - - pos: 6.5,-23.5 - parent: 8364 - type: Transform -- uid: 8157 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 8364 - type: Transform -- uid: 8158 - type: ShuttersNormalOpen - components: - - pos: 6.5,-23.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 27222 - type: SignalReceiver -- uid: 8159 - type: WallReinforced - components: - - pos: -2.5,-17.5 - parent: 8364 - type: Transform -- uid: 8160 - type: Table - components: - - pos: 3.5,-12.5 - parent: 8364 - type: Transform -- uid: 8161 - type: CableMV - components: - - pos: 5.5,-14.5 - parent: 8364 - type: Transform -- uid: 8162 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-18.5 - parent: 8364 - type: Transform -- uid: 8163 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-18.5 - parent: 8364 - type: Transform -- uid: 8164 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-30.5 - parent: 8364 - type: Transform -- uid: 8165 - type: DisposalPipe - components: - - pos: -16.5,-19.5 - parent: 8364 - type: Transform -- uid: 8166 - type: WallReinforced - components: - - pos: 2.5,-21.5 - parent: 8364 - type: Transform -- uid: 8167 - type: ReinforcedWindow - components: - - pos: -3.5,-20.5 - parent: 8364 - type: Transform -- uid: 8168 - type: WallReinforced - components: - - pos: 2.5,-19.5 - parent: 8364 - type: Transform -- uid: 8169 - type: DisposalPipe - components: - - pos: -16.5,-20.5 - parent: 8364 - type: Transform -- uid: 8170 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-18.5 - parent: 8364 - type: Transform -- uid: 8171 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-18.5 - parent: 8364 - type: Transform -- uid: 8172 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -22.5,-18.5 - parent: 8364 - type: Transform -- uid: 8173 - type: DisposalPipe - components: - - pos: -22.5,-17.5 - parent: 8364 - type: Transform -- uid: 8174 - type: WallReinforced - components: - - pos: 4.5,-11.5 - parent: 8364 - type: Transform -- uid: 8175 - type: WallReinforced - components: - - pos: 4.5,-12.5 - parent: 8364 - type: Transform -- uid: 8176 - type: WallReinforced - components: - - pos: 4.5,-13.5 - parent: 8364 - type: Transform -- uid: 8177 - type: WallReinforced - components: - - pos: 6.5,0.5 - parent: 8364 - type: Transform -- uid: 8178 - type: WallReinforced - components: - - pos: 4.5,-15.5 - parent: 8364 - type: Transform -- uid: 8179 - type: MailingUnit - components: - - pos: -22.5,-15.5 - parent: 8364 - type: Transform - - tag: mailroom - type: MailingUnit - - config: - tag: mailroom - type: Configuration -- uid: 8180 - type: WallReinforced - components: - - pos: 4.5,-17.5 - parent: 8364 - type: Transform -- uid: 8181 - type: WallReinforced - components: - - pos: 4.5,-18.5 - parent: 8364 - type: Transform -- uid: 8182 - type: WindoorCargoLocked - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-17.5 - parent: 8364 - type: Transform -- uid: 8183 - type: CableHV - components: - - pos: 3.5,-63.5 - parent: 8364 - type: Transform -- uid: 8184 - type: FirelockGlass - components: - - pos: -3.5,-63.5 - parent: 8364 - type: Transform -- uid: 8185 - type: CableHV - components: - - pos: 2.5,-63.5 - parent: 8364 - type: Transform -- uid: 8186 - type: WallReinforced - components: - - pos: 5.5,-19.5 - parent: 8364 - type: Transform -- uid: 8187 - type: WallReinforced - components: - - pos: 6.5,-19.5 - parent: 8364 - type: Transform -- uid: 8188 - type: ReinforcedWindow - components: - - pos: 17.5,-26.5 - parent: 8364 - type: Transform -- uid: 8189 - type: WallSolid - components: - - pos: 11.5,-20.5 - parent: 8364 - type: Transform -- uid: 8190 - type: WallReinforced - components: - - pos: 8.5,-19.5 - parent: 8364 - type: Transform -- uid: 8191 - type: WallReinforced - components: - - pos: 9.5,-19.5 - parent: 8364 - type: Transform -- uid: 8192 - type: WallReinforced - components: - - pos: 10.5,-19.5 - parent: 8364 - type: Transform -- uid: 8193 - type: WallSolid - components: - - pos: 11.5,-21.5 - parent: 8364 - type: Transform -- uid: 8194 - type: WallSolid - components: - - pos: 11.5,-22.5 - parent: 8364 - type: Transform -- uid: 8195 - type: WallSolid - components: - - pos: 9.5,-21.5 - parent: 8364 - type: Transform -- uid: 8196 - type: WindowReinforcedDirectional - components: - - pos: 7.5,-23.5 - parent: 8364 - type: Transform -- uid: 8197 - type: WindowReinforcedDirectional - components: - - pos: 8.5,-23.5 - parent: 8364 - type: Transform -- uid: 8198 - type: CarpetSBlue - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-16.5 - parent: 8364 - type: Transform -- uid: 8199 - type: FirelockGlass - components: - - pos: -15.5,19.5 - parent: 8364 - type: Transform -- uid: 8200 - type: WeaponCapacitorRecharger - components: - - pos: 30.5,12.5 - parent: 8364 - type: Transform -- uid: 8201 - type: SpaceVillainArcadeFilled - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 8364 - type: Transform -- uid: 8202 - type: WallReinforced - components: - - pos: 5.5,-23.5 - parent: 8364 - type: Transform -- uid: 8203 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-12.5 - parent: 8364 - type: Transform -- uid: 8204 - type: AtmosFixNitrogenMarker - components: - - pos: 12.5,-64.5 - parent: 8364 - type: Transform -- uid: 8205 - type: AtmosFixNitrogenMarker - components: - - pos: 13.5,-66.5 - parent: 8364 - type: Transform -- uid: 8206 - type: AtmosFixNitrogenMarker - components: - - pos: 14.5,-65.5 - parent: 8364 - type: Transform -- uid: 8207 - type: ReinforcedWindow - components: - - pos: 2.5,-28.5 - parent: 8364 - type: Transform -- uid: 8208 - type: ReinforcedWindow - components: - - pos: 3.5,-28.5 - parent: 8364 - type: Transform -- uid: 8209 - type: ReinforcedWindow - components: - - pos: 4.5,-28.5 - parent: 8364 - type: Transform -- uid: 8210 - type: WallReinforced - components: - - pos: 5.5,-28.5 - parent: 8364 - type: Transform -- uid: 8211 - type: WallReinforced - components: - - pos: 6.5,-28.5 - parent: 8364 - type: Transform -- uid: 8212 - type: WallReinforced - components: - - pos: 7.5,-28.5 - parent: 8364 - type: Transform -- uid: 8213 - type: WallReinforced - components: - - pos: 8.5,-28.5 - parent: 8364 - type: Transform -- uid: 8214 - type: WallReinforced - components: - - pos: 9.5,-28.5 - parent: 8364 - type: Transform -- uid: 8215 - type: WallReinforced - components: - - pos: 10.5,-28.5 - parent: 8364 - type: Transform -- uid: 8216 - type: WallReinforced - components: - - pos: 11.5,-28.5 - parent: 8364 - type: Transform -- uid: 8217 - type: WallReinforced - components: - - pos: 12.5,-28.5 - parent: 8364 - type: Transform -- uid: 8218 - type: WallReinforced - components: - - pos: 13.5,-28.5 - parent: 8364 - type: Transform -- uid: 8219 - type: WallReinforced - components: - - pos: 13.5,-27.5 - parent: 8364 - type: Transform -- uid: 8220 - type: WallReinforced - components: - - pos: 13.5,-26.5 - parent: 8364 - type: Transform -- uid: 8221 - type: WallReinforced - components: - - pos: 13.5,-24.5 - parent: 8364 - type: Transform -- uid: 8222 - type: WallReinforced - components: - - pos: 13.5,-23.5 - parent: 8364 - type: Transform -- uid: 8223 - type: WallReinforced - components: - - pos: 13.5,-22.5 - parent: 8364 - type: Transform -- uid: 8224 - type: WallReinforced - components: - - pos: 13.5,-21.5 - parent: 8364 - type: Transform -- uid: 8225 - type: WallReinforced - components: - - pos: 13.5,-20.5 - parent: 8364 - type: Transform -- uid: 8226 - type: WallReinforced - components: - - pos: 13.5,-19.5 - parent: 8364 - type: Transform -- uid: 8227 - type: WallReinforced - components: - - pos: 13.5,-18.5 - parent: 8364 - type: Transform -- uid: 8228 - type: WallReinforced - components: - - pos: 13.5,-17.5 - parent: 8364 - type: Transform -- uid: 8229 - type: WallReinforced - components: - - pos: 13.5,-16.5 - parent: 8364 - type: Transform -- uid: 8230 - type: WallReinforced - components: - - pos: 13.5,-15.5 - parent: 8364 - type: Transform -- uid: 8231 - type: WallReinforced - components: - - pos: 13.5,-14.5 - parent: 8364 - type: Transform -- uid: 8232 - type: WallReinforced - components: - - pos: 13.5,-13.5 - parent: 8364 - type: Transform -- uid: 8233 - type: WallReinforced - components: - - pos: 13.5,-12.5 - parent: 8364 - type: Transform -- uid: 8234 - type: WallReinforced - components: - - pos: 13.5,-11.5 - parent: 8364 - type: Transform -- uid: 8235 - type: WallReinforced - components: - - pos: 13.5,-10.5 - parent: 8364 - type: Transform -- uid: 8236 - type: WallReinforced - components: - - pos: 12.5,-10.5 - parent: 8364 - type: Transform -- uid: 8237 - type: WallReinforced - components: - - pos: 11.5,-10.5 - parent: 8364 - type: Transform -- uid: 8238 - type: WallReinforced - components: - - pos: 10.5,-10.5 - parent: 8364 - type: Transform -- uid: 8239 - type: WallReinforced - components: - - pos: 9.5,-10.5 - parent: 8364 - type: Transform -- uid: 8240 - type: WallReinforced - components: - - pos: 8.5,-10.5 - parent: 8364 - type: Transform -- uid: 8241 - type: WallReinforced - components: - - pos: 7.5,-10.5 - parent: 8364 - type: Transform -- uid: 8242 - type: WallReinforced - components: - - pos: 5.5,-10.5 - parent: 8364 - type: Transform -- uid: 8243 - type: WallReinforced - components: - - pos: 4.5,-10.5 - parent: 8364 - type: Transform -- uid: 8244 - type: WallReinforced - components: - - pos: 3.5,-10.5 - parent: 8364 - type: Transform -- uid: 8245 - type: WallReinforced - components: - - pos: 2.5,-9.5 - parent: 8364 - type: Transform -- uid: 8246 - type: WallReinforced - components: - - pos: 1.5,-9.5 - parent: 8364 - type: Transform -- uid: 8247 - type: WallReinforced - components: - - pos: 0.5,-9.5 - parent: 8364 - type: Transform -- uid: 8248 - type: DisposalPipe - components: - - pos: -22.5,-16.5 - parent: 8364 - type: Transform -- uid: 8249 - type: WallReinforced - components: - - pos: -1.5,-9.5 - parent: 8364 - type: Transform -- uid: 8250 - type: WallReinforced - components: - - pos: -2.5,-9.5 - parent: 8364 - type: Transform -- uid: 8251 - type: WallReinforced - components: - - pos: -3.5,-9.5 - parent: 8364 - type: Transform -- uid: 8252 - type: WallReinforced - components: - - pos: -4.5,-9.5 - parent: 8364 - type: Transform -- uid: 8253 - type: WallReinforced - components: - - pos: -4.5,-10.5 - parent: 8364 - type: Transform -- uid: 8254 - type: WallReinforced - components: - - pos: -5.5,-10.5 - parent: 8364 - type: Transform -- uid: 8255 - type: WallSolid - components: - - pos: -6.5,-10.5 - parent: 8364 - type: Transform -- uid: 8256 - type: WallSolid - components: - - pos: -8.5,-10.5 - parent: 8364 - type: Transform -- uid: 8257 - type: WallReinforced - components: - - pos: -10.5,-10.5 - parent: 8364 - type: Transform -- uid: 8258 - type: WallReinforced - components: - - pos: -11.5,-10.5 - parent: 8364 - type: Transform -- uid: 8259 - type: WallReinforced - components: - - pos: -14.5,-11.5 - parent: 8364 - type: Transform -- uid: 8260 - type: WallReinforced - components: - - pos: -14.5,-10.5 - parent: 8364 - type: Transform -- uid: 8261 - type: WallReinforced - components: - - pos: -13.5,-10.5 - parent: 8364 - type: Transform -- uid: 8262 - type: WallReinforced - components: - - pos: -12.5,-10.5 - parent: 8364 - type: Transform -- uid: 8263 - type: WallReinforced - components: - - pos: -9.5,-10.5 - parent: 8364 - type: Transform -- uid: 8264 - type: ReinforcedWindow - components: - - pos: -18.5,-29.5 - parent: 8364 - type: Transform -- uid: 8265 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-30.5 - parent: 8364 - type: Transform -- uid: 8266 - type: WallReinforced - components: - - pos: 9.5,-6.5 - parent: 8364 - type: Transform -- uid: 8267 - type: WallReinforced - components: - - pos: 8.5,-9.5 - parent: 8364 - type: Transform -- uid: 8268 - type: WallReinforced - components: - - pos: 8.5,-7.5 - parent: 8364 - type: Transform -- uid: 8269 - type: WallReinforced - components: - - pos: 8.5,-6.5 - parent: 8364 - type: Transform -- uid: 8270 - type: DisposalPipe - components: - - pos: -26.5,-15.5 - parent: 8364 - type: Transform -- uid: 8271 - type: WallReinforced - components: - - pos: 5.5,-4.5 - parent: 8364 - type: Transform -- uid: 8272 - type: WallReinforced - components: - - pos: 5.5,-5.5 - parent: 8364 - type: Transform -- uid: 8273 - type: WallReinforced - components: - - pos: 6.5,-5.5 - parent: 8364 - type: Transform -- uid: 8274 - type: WallReinforced - components: - - pos: 7.5,-5.5 - parent: 8364 - type: Transform -- uid: 8275 - type: WallReinforced - components: - - pos: 8.5,-5.5 - parent: 8364 - type: Transform -- uid: 8276 - type: Grille - components: - - pos: 10.5,-9.5 - parent: 8364 - type: Transform -- uid: 8277 - type: Grille - components: - - pos: 10.5,-7.5 - parent: 8364 - type: Transform -- uid: 8278 - type: Grille - components: - - pos: 12.5,-6.5 - parent: 8364 - type: Transform -- uid: 8279 - type: Grille - components: - - pos: 13.5,-3.5 - parent: 8364 - type: Transform -- uid: 8280 - type: Grille - components: - - pos: 13.5,-4.5 - parent: 8364 - type: Transform -- uid: 8281 - type: Grille - components: - - pos: 13.5,-5.5 - parent: 8364 - type: Transform -- uid: 8282 - type: Grille - components: - - pos: 13.5,-6.5 - parent: 8364 - type: Transform -- uid: 8283 - type: ReinforcedWindow - components: - - pos: 10.5,-9.5 - parent: 8364 - type: Transform -- uid: 8284 - type: WallReinforced - components: - - pos: -1.5,-28.5 - parent: 8364 - type: Transform -- uid: 8285 - type: WallReinforced - components: - - pos: 0.5,-28.5 - parent: 8364 - type: Transform -- uid: 8286 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-18.5 - parent: 8364 - type: Transform -- uid: 8287 - type: Grille - components: - - pos: -13.5,-6.5 - parent: 8364 - type: Transform -- uid: 8288 - type: Grille - components: - - pos: -11.5,-9.5 - parent: 8364 - type: Transform -- uid: 8289 - type: Grille - components: - - pos: -11.5,-7.5 - parent: 8364 - type: Transform -- uid: 8290 - type: ReinforcedWindow - components: - - pos: -11.5,-7.5 - parent: 8364 - type: Transform -- uid: 8291 - type: ReinforcedWindow - components: - - pos: -11.5,-9.5 - parent: 8364 - type: Transform -- uid: 8292 - type: WallReinforced - components: - - pos: -9.5,-9.5 - parent: 8364 - type: Transform -- uid: 8293 - type: WallReinforced - components: - - pos: -9.5,-7.5 - parent: 8364 - type: Transform -- uid: 8294 - type: WallReinforced - components: - - pos: -10.5,-6.5 - parent: 8364 - type: Transform -- uid: 8295 - type: WallReinforced - components: - - pos: -9.5,-6.5 - parent: 8364 - type: Transform -- uid: 8296 - type: WallReinforced - components: - - pos: -9.5,-5.5 - parent: 8364 - type: Transform -- uid: 8297 - type: WallReinforced - components: - - pos: -8.5,-5.5 - parent: 8364 - type: Transform -- uid: 8298 - type: WallReinforced - components: - - pos: -7.5,-5.5 - parent: 8364 - type: Transform -- uid: 8299 - type: WallReinforced - components: - - pos: -6.5,-5.5 - parent: 8364 - type: Transform -- uid: 8300 - type: WallReinforced - components: - - pos: -6.5,-4.5 - parent: 8364 - type: Transform -- uid: 8301 - type: WallReinforced - components: - - pos: 5.5,-3.5 - parent: 8364 - type: Transform -- uid: 8302 - type: WallReinforced - components: - - pos: 2.5,-3.5 - parent: 8364 - type: Transform -- uid: 8303 - type: WallReinforced - components: - - pos: -3.5,-3.5 - parent: 8364 - type: Transform -- uid: 8304 - type: WallReinforced - components: - - pos: -6.5,-3.5 - parent: 8364 - type: Transform -- uid: 8305 - type: ReinforcedWindow - components: - - pos: -7.5,-3.5 - parent: 8364 - type: Transform -- uid: 8306 - type: ReinforcedWindow - components: - - pos: 6.5,-3.5 - parent: 8364 - type: Transform -- uid: 8307 - type: Grille - components: - - pos: 6.5,-3.5 - parent: 8364 - type: Transform -- uid: 8308 - type: Grille - components: - - pos: -7.5,-3.5 - parent: 8364 - type: Transform -- uid: 8309 - type: Grille - components: - - pos: -14.5,-6.5 - parent: 8364 - type: Transform -- uid: 8310 - type: Grille - components: - - pos: -14.5,-5.5 - parent: 8364 - type: Transform -- uid: 8311 - type: Grille - components: - - pos: -14.5,-4.5 - parent: 8364 - type: Transform -- uid: 8312 - type: Grille - components: - - pos: -14.5,-3.5 - parent: 8364 - type: Transform -- uid: 8313 - type: Grille - components: - - pos: -13.5,-3.5 - parent: 8364 - type: Transform -- uid: 8314 - type: Grille - components: - - pos: -12.5,-3.5 - parent: 8364 - type: Transform -- uid: 8315 - type: Grille - components: - - pos: -11.5,-3.5 - parent: 8364 - type: Transform -- uid: 8316 - type: Grille - components: - - pos: -10.5,-3.5 - parent: 8364 - type: Transform -- uid: 8317 - type: Grille - components: - - pos: -9.5,-3.5 - parent: 8364 - type: Transform -- uid: 8318 - type: Grille - components: - - pos: -8.5,-3.5 - parent: 8364 - type: Transform -- uid: 8319 - type: ReinforcedWindow - components: - - pos: 12.5,-6.5 - parent: 8364 - type: Transform -- uid: 8320 - type: ReinforcedWindow - components: - - pos: 13.5,-5.5 - parent: 8364 - type: Transform -- uid: 8321 - type: ReinforcedWindow - components: - - pos: 13.5,-3.5 - parent: 8364 - type: Transform -- uid: 8322 - type: Grille - components: - - pos: 12.5,-3.5 - parent: 8364 - type: Transform -- uid: 8323 - type: Grille - components: - - pos: 11.5,-3.5 - parent: 8364 - type: Transform -- uid: 8324 - type: Grille - components: - - pos: 10.5,-3.5 - parent: 8364 - type: Transform -- uid: 8325 - type: Grille - components: - - pos: 9.5,-3.5 - parent: 8364 - type: Transform -- uid: 8326 - type: Grille - components: - - pos: 8.5,-3.5 - parent: 8364 - type: Transform -- uid: 8327 - type: Grille - components: - - pos: 7.5,-3.5 - parent: 8364 - type: Transform -- uid: 8328 - type: Grille - components: - - pos: 3.5,-3.5 - parent: 8364 - type: Transform -- uid: 8329 - type: Grille - components: - - pos: 4.5,-3.5 - parent: 8364 - type: Transform -- uid: 8330 - type: Grille - components: - - pos: 1.5,-3.5 - parent: 8364 - type: Transform -- uid: 8331 - type: Grille - components: - - pos: 0.5,-3.5 - parent: 8364 - type: Transform -- uid: 8332 - type: Grille - components: - - pos: -0.5,-3.5 - parent: 8364 - type: Transform -- uid: 8333 - type: Grille - components: - - pos: -1.5,-3.5 - parent: 8364 - type: Transform -- uid: 8334 - type: Grille - components: - - pos: -2.5,-3.5 - parent: 8364 - type: Transform -- uid: 8335 - type: Grille - components: - - pos: -4.5,-3.5 - parent: 8364 - type: Transform -- uid: 8336 - type: Grille - components: - - pos: -5.5,-3.5 - parent: 8364 - type: Transform -- uid: 8337 - type: Grille - components: - - pos: -4.5,1.5 - parent: 8364 - type: Transform -- uid: 8338 - type: Grille - components: - - pos: -4.5,0.5 - parent: 8364 - type: Transform -- uid: 8339 - type: Grille - components: - - pos: -5.5,0.5 - parent: 8364 - type: Transform -- uid: 8340 - type: Grille - components: - - pos: -6.5,0.5 - parent: 8364 - type: Transform -- uid: 8341 - type: Grille - components: - - pos: 5.5,0.5 - parent: 8364 - type: Transform -- uid: 8342 - type: Grille - components: - - pos: 4.5,0.5 - parent: 8364 - type: Transform -- uid: 8343 - type: Grille - components: - - pos: 3.5,0.5 - parent: 8364 - type: Transform -- uid: 8344 - type: Grille - components: - - pos: 3.5,1.5 - parent: 8364 - type: Transform -- uid: 8345 - type: ReinforcedWindow - components: - - pos: -14.5,-4.5 - parent: 8364 - type: Transform -- uid: 8346 - type: ReinforcedWindow - components: - - pos: -14.5,-5.5 - parent: 8364 - type: Transform -- uid: 8347 - type: ReinforcedWindow - components: - - pos: -14.5,-6.5 - parent: 8364 - type: Transform -- uid: 8348 - type: ReinforcedWindow - components: - - pos: -14.5,-3.5 - parent: 8364 - type: Transform -- uid: 8349 - type: ReinforcedWindow - components: - - pos: -13.5,-3.5 - parent: 8364 - type: Transform -- uid: 8350 - type: ReinforcedWindow - components: - - pos: -12.5,-3.5 - parent: 8364 - type: Transform -- uid: 8351 - type: ReinforcedWindow - components: - - pos: -11.5,-3.5 - parent: 8364 - type: Transform -- uid: 8352 - type: ReinforcedWindow - components: - - pos: -10.5,-3.5 - parent: 8364 - type: Transform -- uid: 8353 - type: ReinforcedWindow - components: - - pos: -9.5,-3.5 - parent: 8364 - type: Transform -- uid: 8354 - type: ReinforcedWindow - components: - - pos: -8.5,-3.5 - parent: 8364 - type: Transform -- uid: 8355 - type: ReinforcedWindow - components: - - pos: 10.5,-7.5 - parent: 8364 - type: Transform -- uid: 8356 - type: ReinforcedWindow - components: - - pos: 13.5,-6.5 - parent: 8364 - type: Transform -- uid: 8357 - type: ReinforcedWindow - components: - - pos: 13.5,-4.5 - parent: 8364 - type: Transform -- uid: 8358 - type: ReinforcedWindow - components: - - pos: 12.5,-3.5 - parent: 8364 - type: Transform -- uid: 8359 - type: ReinforcedWindow - components: - - pos: 11.5,-3.5 - parent: 8364 - type: Transform -- uid: 8360 - type: ReinforcedWindow - components: - - pos: 10.5,-3.5 - parent: 8364 - type: Transform -- uid: 8361 - type: ReinforcedWindow - components: - - pos: 9.5,-3.5 - parent: 8364 - type: Transform -- uid: 8362 - type: ReinforcedWindow - components: - - pos: 8.5,-3.5 - parent: 8364 - type: Transform -- uid: 8363 - type: CableHV - components: - - pos: -15.5,-70.5 - parent: 8364 - type: Transform -- uid: 8364 - components: - - type: MetaData - - pos: 0.50032806,0.50115013 - parent: 780 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: RAAAA14AAAAWAAAAFgAAARYAAAAWAAABFgAAAhYAAAEWAAADFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAFgAAABYAAAMWAAADFgAAABYAAAMWAAACFgAAAhYAAABeAAAAFgAAABYAAAMPAAAADwAAAA8AAABEAAACXgAAABYAAAIWAAACFgAAAhYAAAAWAAACFgAAABYAAAAWAAAAXgAAABYAAAEWAAAADwAAAEQAAAAPAAAARAAAAV4AAAAWAAACFgAAABYAAAEWAAABFgAAAhYAAAAWAAAAFgAAA14AAAAWAAACDwAAAA8AAAAWAAABFgAAAEQAAANeAAAAFgAAARYAAAAWAAACFgAAABYAAAAWAAACFgAAABYAAAJeAAAAFgAAAA8AAAAPAAAAFgAAARYAAAFEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAF4AAAAWAAAADwAAAA8AAAAWAAABRAAAAEQAAANEAAADRAAAA14AAABEAAAAXgAAABYAAAAWAAAAFgAAAxYAAABeAAAAXgAAAF4AAABeAAAAFgAAAkQAAABEAAACRAAAA0QAAAFEAAADRAAAAEQAAAAWAAAAFgAAARYAAAMWAAABFgAAARYAAAIWAAADFgAAAxYAAANEAAAARAAAAkQAAAFEAAAAXgAAAEQAAABeAAAAFgAAABYAAAMWAAAAFgAAARYAAAIWAAAAFgAAAhYAAAEWAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAADFgAAAhYAAAAWAAADFgAAABYAAAAWAAACFgAAAUQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAARYAAAIWAAADFgAAAxYAAAFEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAABYAAAMWAAACFgAAAhYAAAEWAAACRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAA0QAAAJEAAAARAAAAkQAAAJEAAADRAAAAEQAAANEAAADRAAAAEQAAABEAAADRAAAAkQAAAFEAAAARAAAAkQAAABEAAABRAAAAkQAAANEAAACRAAAAEQAAAJEAAABRAAAAkQAAAFEAAABRAAAA0QAAAJEAAADRAAAA0QAAAFEAAADRAAAAkQAAANEAAAARAAAAkQAAAJEAAAARAAAAEQAAAJEAAACRAAAAEQAAAFEAAAARAAAAw== - 0,0: - ind: 0,0 - tiles: RAAAAEQAAAFEAAABXgAAAF4AAABeAAAAXgAAABYAAABEAAAARAAAAl4AAABeAAAAJQAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAA14AAAAAAAAAAAAAAF4AAAAWAAACRAAAAEQAAABeAAAAPAAAADwAAAA8AAAAPAAAADwAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAAXgAAADwAAAA8AAAAXgAAAA4AAABeAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAl4AAAA8AAAAPAAAAF4AAAAOAAAAXgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANeAAAAPAAAADwAAABeAAAAXgAAAF4AAABEAAABXgAAAF4AAABeAAAAWwAAAFsAAAJbAAABWwAAA0QAAABEAAABXgAAADwAAAA8AAAAPAAAADwAAAA8AAAARAAAAV4AAABeAAAAXgAAAFsAAAJbAAAAWwAAA14AAABEAAAARAAAAF4AAAA8AAAAPAAAADwAAAA8AAAAXgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAABeAAAAXgAAACUAAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAWwAAA1sAAABbAAAAWwAAAEQAAABEAAADRAAAA0QAAAJEAAADRAAAAUQAAABeAAAARAAAAl4AAABeAAAAXgAAAFsAAAJbAAABWwAAAF4AAABEAAACRAAAAEQAAAJEAAABRAAAAkQAAAJEAAABRAAAA0QAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAADRAAAA0QAAAFEAAABRAAAAUQAAAJEAAAAXgAAAF4AAABeAAAAWwAAAVsAAAJbAAAAWwAAA0QAAABEAAABRAAAAkQAAAJEAAABRAAAA0QAAAJEAAABRAAAAV4AAABeAAAAXgAAAFsAAANbAAABWwAAA14AAABEAAADRAAAAkQAAAFEAAAARAAAAkQAAAFEAAABRAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANeAAAAXgAAAFsAAAJeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAEgAAABIAAAASAAAAEgAAAEQAAABEAAACXgAAAFsAAABbAAADWwAAAV4AAAARAAAARAAAAV4AAABeAAAAXgAAABIAAAASAAAAEgAAAF4AAABEAAACRAAAAl4AAABbAAADWwAAA1sAAABeAAAAEQAAAA== - 0,-1: - ind: 0,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABbAAADWwAAAVsAAAJbAAACWwAAA1sAAAJbAAABFgAAAl4AAABEAAABRAAAAA8AAAAPAAAAFgAAARYAAANeAAAAWwAAAVsAAAFbAAACWwAAAVsAAAJbAAAAWwAAABYAAABeAAAARAAAAkQAAAJEAAADDwAAABYAAAMWAAAAXgAAAFsAAAJbAAADWwAAA1sAAAFbAAACWwAAAVsAAAAWAAACXgAAAEQAAAJEAAAAFgAAAg8AAAAPAAAAFgAAAF4AAABbAAADWwAAAFsAAANbAAAAWwAAAlsAAAFbAAABFgAAA14AAABEAAADRAAAARYAAAAPAAAADwAAABYAAAJeAAAAFgAAABYAAAAWAAACFgAAARYAAAIWAAABFgAAAhYAAABeAAAARAAAA0QAAAIPAAAADwAAABYAAAFeAAAAXgAAAF4AAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAACFgAAARYAAANeAAAARAAAAV4AAABEAAABRAAAA0QAAAFEAAACRAAAABYAAAAWAAAAFgAAARYAAAMWAAADFgAAABYAAAMWAAACRAAAAEQAAABEAAAARAAAA0QAAABEAAACRAAAAUQAAAIWAAABFgAAARYAAAMWAAABFgAAAhYAAAAWAAAAFgAAAV4AAABEAAACXgAAAEQAAAFEAAABRAAAAUQAAABEAAABFgAAARYAAAEWAAACFgAAAhYAAAEWAAAAFgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAhYAAAIWAAAAFgAAAxYAAAIWAAADXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAEQAAAMWAAABFgAAABYAAAEWAAABFgAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAA0QAAAFEAAABRAAAAUQAAABEAAACRAAAA0QAAANEAAADRAAAAUQAAANEAAABRAAAA0QAAANEAAACRAAAAkQAAAJEAAABRAAAA0QAAABEAAAARAAAA0QAAANEAAACRAAAAUQAAANEAAABRAAAA0QAAABEAAACRAAAAUQAAAJEAAAARAAAAEQAAAFEAAACRAAAA0QAAAFEAAAARAAAAEQAAAJEAAABRAAAA0QAAAFEAAADRAAAAkQAAANEAAABRAAAAw== - -1,0: - ind: -1,0 - tiles: XgAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAACRAAAAF4AAAAWAAACFgAAAEQAAABEAAADRAAAARYAAAAWAAAAXgAAAAAAAAAAAAAAXgAAAEQAAABEAAADRAAAA0QAAABeAAAAFgAAAV4AAABEAAAARAAAAEQAAAFeAAAAFgAAAF4AAABeAAAAXgAAAF4AAAAWAAADXgAAAEQAAANEAAACXgAAABYAAAJeAAAARAAAAUQAAAFEAAADXgAAABYAAAJeAAAARAAAAEQAAANeAAAAFgAAA14AAABEAAACRAAAAF4AAAAWAAACFgAAAEQAAABEAAABRAAAARYAAAMWAAABXgAAAEQAAANEAAACXgAAABYAAAJeAAAARAAAAkQAAANeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAV4AAAAWAAACXgAAAEQAAANEAAABXgAAABYAAANEAAABRAAAAUQAAAFEAAAARAAAAxYAAAFeAAAARAAAA0QAAAFEAAAARAAAAV4AAABEAAABRAAAAl4AAAAWAAABRAAAAkQAAAJEAAAARAAAAUQAAAMWAAABXgAAAEQAAAFEAAAARAAAAkQAAABeAAAARAAAAEQAAANeAAAARAAAAUQAAANEAAAARAAAA0QAAABEAAABRAAAAkQAAAFEAAACRAAAAUQAAAJEAAAAXgAAAEQAAAFEAAABXgAAABYAAAEWAAACFgAAAhYAAAEWAAADFgAAABYAAANeAAAARAAAAEQAAABEAAAARAAAAF4AAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAE4AAABeAAAAXgAAAFsAAABbAAABWwAAAl4AAABeAAAATwAAADEAAAAxAAAAMQAAADEAAABeAAAARAAAAUQAAAFeAAAATwAAAF4AAABbAAABWwAAAVsAAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAAAxAAAAXgAAAEQAAANEAAABXgAAAFsAAAJbAAACWwAAAFsAAABbAAADXgAAAFsAAAJbAAABMQAAADEAAAAxAAAAMQAAAF4AAABEAAACRAAAAw== - 1,-1: - ind: 1,-1 - tiles: RAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAVEAAAFRAAACXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAAUQAAAJEAAAARAAAAUQAAABEAAACRAAAAEQAAABEAAACRAAAAEQAAAJEAAADRAAAAEQAAAFEAAAARAAAAUQAAABEAAACRAAAAUQAAANEAAADRAAAA0QAAAJEAAABRAAAA0QAAAJEAAABRAAAA0QAAANEAAAARAAAAUQAAANEAAACRAAAAkQAAAFEAAADRAAAA0QAAANEAAABRAAAA0QAAABEAAACRAAAAEQAAANEAAACRAAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAFsAAANbAAACWwAAAVsAAAFbAAABWwAAAlsAAABbAAACWwAAAVsAAANbAAADWwAAAFsAAABbAAABRAAAAF4AAABbAAACWwAAAFsAAABbAAABWwAAAFsAAAFbAAADWwAAAVsAAAFbAAACWwAAAlsAAAJbAAACWwAAAUQAAAJeAAAAWwAAAlsAAABbAAACWwAAAVsAAABbAAABWwAAA1sAAABbAAAAWwAAAF4AAABeAAAAFgAAAl4AAABEAAACXgAAAFsAAAFbAAACWwAAAlsAAABbAAAAWwAAAlsAAAJbAAACWwAAAVsAAAJeAAAAFgAAAhYAAAMWAAABRAAAAl4AAABbAAADWwAAA1sAAABbAAADWwAAACgAAAAoAAAAWwAAAFsAAABbAAACXgAAABYAAAMWAAADFgAAAkQAAAFeAAAAWwAAAlsAAANbAAABWwAAA1sAAAIoAAAAKAAAAFsAAABbAAACWwAAAl4AAAAWAAACFgAAARYAAANEAAAAXgAAAFsAAAJbAAACWwAAAVsAAAFbAAAAWwAAAlsAAABbAAABWwAAAVsAAAFeAAAAFgAAAhYAAAMWAAABRAAAA14AAABbAAAAWwAAAlsAAANbAAACWwAAAlsAAANbAAACWwAAAFsAAANeAAAAXgAAABYAAAMWAAADFgAAAUQAAAFeAAAAWwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAFsAAABbAAAAWwAAAV4AAABeAAAAWwAAA14AAABEAAABXgAAAFsAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAABbAAACWwAAAVsAAANbAAAAWwAAAFsAAABbAAABRAAAAV4AAABbAAADMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAWwAAAVsAAANbAAABWwAAAFsAAANbAAAAWwAAAg== - -2,-1: - ind: -2,-1 - tiles: RAAAAUQAAABEAAACXgAAAE4AAABOAAAARAAAA0QAAANEAAAARAAAAEQAAAFEAAACRAAAAF4AAABEAAABRAAAAEQAAABEAAADRAAAA14AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAADRAAAAUQAAAFeAAAATgAAAE4AAABeAAAAFgAAAxYAAAIWAAAAFgAAARYAAAFeAAAARAAAAkQAAABEAAACRAAAAkQAAABEAAADXgAAAE4AAABeAAAAXgAAABYAAAIWAAADFgAAAhYAAAIWAAACXgAAAEQAAANEAAABRAAAA0QAAABEAAABRAAAAF4AAABOAAAAXgAAAF4AAAAWAAAAFgAAAxYAAAAWAAADFgAAA0QAAAFEAAABRAAAAEQAAAFEAAABRAAAA0QAAAFeAAAATgAAAF4AAABeAAAAFgAAAxYAAAMWAAAAFgAAABYAAAJeAAAARAAAAUQAAANEAAADXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAABYAAAMWAAADFgAAAhYAAAEWAAADXgAAAEQAAAJEAAABRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAAUQAAAJEAAADXgAAAEQAAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAANEAAABRAAAAl4AAABEAAABRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAADRAAAAEQAAABeAAAARAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAAEQAAABEAAABXgAAAF4AAABeAAAARAAAA0QAAABEAAABRAAAAUQAAABEAAAARAAAA0QAAAJEAAAAXgAAAF4AAABEAAABRAAAAEQAAABEAAABRAAAAkQAAABEAAACRAAAA0QAAAFEAAADRAAAAUQAAABEAAACRAAAAkQAAAJEAAAARAAAAUQAAANEAAADRAAAAEQAAANEAAACRAAAA0QAAAJEAAAARAAAAEQAAAJEAAADRAAAAkQAAABEAAABRAAAAUQAAABEAAAARAAAA0QAAAJEAAAARAAAAUQAAAJEAAADRAAAAEQAAABEAAADRAAAA0QAAANEAAAARAAAA0QAAAJEAAADRAAAAg== - -2,-2: - ind: -2,-2 - tiles: RAAAA0QAAAJeAAAARAAAAkQAAANEAAACRAAAAEQAAABeAAAARAAAA0QAAAFEAAACRAAAAEQAAABEAAACRAAAAkQAAAJEAAAARAAAAkQAAAJEAAABRAAAAkQAAANEAAABRAAAAEQAAAJEAAACRAAAA0QAAAFeAAAARAAAAkQAAAJEAAABRAAAAF4AAABEAAACRAAAAUQAAABEAAAARAAAA14AAABEAAAARAAAAEQAAANEAAAAXgAAAEQAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAEQAAABEAAAAXgAAAEQAAABEAAACRAAAA0QAAAJEAAAAXgAAAEQAAAFEAAABRAAAAkQAAAJeAAAARAAAA0QAAABEAAADRAAAAl4AAABEAAAARAAAAEQAAAFEAAABRAAAA0QAAABEAAACRAAAAEQAAAJEAAAAXgAAAEQAAABEAAACRAAAAUQAAAFeAAAARAAAA0QAAAFEAAADRAAAAkQAAABeAAAARAAAAUQAAABEAAAARAAAAl4AAABEAAACRAAAAkQAAABEAAABXgAAAEQAAABEAAADRAAAAkQAAAFEAAADRAAAAUQAAAJEAAACRAAAAEQAAABEAAABRAAAAEQAAAFEAAADRAAAAV4AAABEAAADRAAAAUQAAAJEAAACRAAAA14AAABEAAADRAAAA0QAAABEAAAARAAAAEQAAABEAAABRAAAAkQAAAJeAAAARAAAAEQAAAFEAAAARAAAAkQAAANEAAACRAAAAUQAAABEAAAARAAAAV4AAABEAAAARAAAAEQAAANEAAADRAAAA0QAAAJEAAABRAAAA0QAAAFEAAAAXgAAAEQAAANEAAACRAAAA0QAAAJeAAAARAAAAEQAAAJEAAADRAAAA0QAAAFEAAABRAAAAkQAAAJeAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAUQAAAJeAAAARAAAAkQAAAJEAAACRAAAAUQAAABEAAADRAAAAkQAAAJEAAADRAAAAV4AAABEAAACRAAAAkQAAABEAAADXgAAAEQAAABeAAAATgAAAF4AAABeAAAARAAAAUQAAAJEAAAARAAAAUQAAAJEAAABRAAAAkQAAAJEAAADXgAAAF4AAABeAAAAXgAAAE4AAABEAAAARAAAAkQAAABEAAAARAAAA0QAAAFEAAABXgAAAEQAAAFEAAABRAAAAUQAAABEAAACXgAAAE4AAABOAAAAXgAAAF4AAABEAAADRAAAAkQAAAJEAAACRAAAAF4AAABEAAAARAAAAg== - 1,-2: - ind: 1,-2 - tiles: RAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAIbAAACFgAAAhYAAAEWAAAAFgAAARYAAANeAAAAUQAAA1EAAANRAAABUQAAA14AAABRAAAAUQAAAFEAAABEAAADXgAAABYAAAEWAAABFgAAAxYAAAMWAAAAXgAAAFEAAANRAAADUQAAAVEAAAJRAAABUQAAAFEAAANRAAADRAAAA14AAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAABRAAADUQAAA1EAAABRAAAAUQAAA1EAAANRAAADUQAAA0QAAAFRAAACUQAAAlEAAAJRAAAAUQAAAVEAAANeAAAAUQAAA1EAAAJRAAACUQAAA14AAABRAAAAUQAAAFEAAABEAAACXgAAAFEAAANRAAACUQAAAVEAAABRAAAAXgAAAF4AAABRAAAAUQAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAABRAAACUQAAAVEAAABRAAACUQAAAVEAAANRAAABUQAAAVEAAAJRAAAAUQAAAVEAAAJRAAABUQAAAkQAAAFeAAAAUQAAAVEAAAJRAAABUQAAAVEAAAFRAAABUQAAAlEAAANRAAAAUQAAA1EAAAJRAAAAUQAAAVEAAANEAAAAXgAAAF4AAABRAAADXgAAAFEAAABeAAAAXgAAAFEAAAFRAAAAUQAAAVEAAABRAAADUQAAAlEAAANRAAAARAAAAl4AAABEAAAARAAAAkQAAANEAAABRAAAAF4AAABRAAAAUQAAAVEAAAFeAAAAXgAAAF4AAABRAAACXgAAAEQAAABeAAAARAAAA0QAAANEAAACRAAAAEQAAAFeAAAAXgAAAFEAAANRAAADXgAAAFEAAAJRAAADUQAAAVEAAABEAAAAXgAAAEQAAAFEAAACUQAAAxYAAAMWAAABXgAAAFEAAAFRAAADUQAAAFEAAANRAAACUQAAAlEAAABRAAAARAAAAl4AAABRAAACUQAAAFEAAAAWAAADFgAAAFEAAABRAAABUQAAAlEAAAFRAAACUQAAAlEAAABRAAABUQAAAUQAAAJeAAAAFgAAAhYAAAJRAAADFgAAAhYAAAJeAAAAUQAAA1EAAAFRAAADUQAAA1EAAANRAAADUQAAAVEAAAFEAAADXgAAABYAAAAWAAAAUQAAAxYAAAEWAAAAUQAAAlEAAANRAAABUQAAAFEAAAFRAAADUQAAA1EAAANRAAACRAAAAl4AAAAWAAAAFgAAAlEAAAEWAAABFgAAAF4AAABRAAACUQAAAFEAAANRAAAAUQAAAlEAAAFRAAADUQAAAw== - 0,-2: - ind: 0,-2 - tiles: RAAAAEQAAANEAAABRAAAAUQAAAJEAAADRAAAA0QAAABEAAAARAAAA0QAAAJEAAAARAAAA0QAAABEAAADRAAAAkQAAANEAAADRAAAAEQAAAJEAAACRAAAAEQAAAJEAAAARAAAAkQAAAFEAAACRAAAAkQAAAJEAAACRAAAAUQAAABEAAACRAAAA0QAAAFEAAABRAAAA0QAAABEAAAARAAAAUQAAAFEAAAARAAAA0QAAABEAAAARAAAA0QAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAEQAAAFeAAAAXQAAAAAAAAAAAAAAXgAAAFsAAAFbAAAAWwAAAlsAAAFbAAABWwAAABYAAANeAAAARAAAA0QAAAJEAAACXgAAAF4AAAAAAAAAAAAAAF4AAABbAAABWwAAAFsAAANbAAADWwAAAlsAAAMWAAAAXgAAAEQAAAJEAAADRAAAA0QAAABeAAAAAAAAAAAAAABeAAAAWwAAA1sAAANbAAAAWwAAAlsAAAFbAAACFgAAAEQAAABEAAAARAAAAkQAAAFEAAADXgAAAF0AAABdAAAAXgAAAFsAAAJbAAAAWwAAAVsAAABbAAABWwAAABYAAANeAAAARAAAAkQAAANeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAqAAAAKgAAACoAAABeAAAAXgAAAF4AAAAWAAACXgAAAEQAAAJEAAAAFgAAAhYAAANeAAAAAAAAAF0AAABeAAAAWwAAAlsAAAFbAAADXgAAACUAAABeAAAAFgAAA14AAABEAAADRAAAAhYAAAEWAAABXgAAAAAAAAAAAAAAXgAAAFsAAANbAAACWwAAAF4AAAAlAAAAXgAAABYAAAFeAAAARAAAAkQAAAMWAAADFgAAAF4AAAAAAAAAXQAAAF4AAABbAAACWwAAAlsAAAMlAAAAJQAAAF4AAAAWAAABXgAAAEQAAANEAAAAFgAAAxYAAAJeAAAAXQAAAF4AAABeAAAAXgAAAFsAAABeAAAAXgAAAF4AAABeAAAAFgAAAV4AAABEAAACRAAAARYAAAIWAAABXgAAAF0AAABeAAAAWwAAA1sAAANbAAABWwAAAFsAAAJbAAAAWwAAARYAAABeAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFbAAACWwAAA1sAAANbAAADWwAAAVsAAAEWAAADXgAAAEQAAABEAAACFgAAACYAAAAWAAACFgAAARYAAANbAAABWwAAA1sAAAJbAAAAWwAAAlsAAANbAAAAFgAAAF4AAABEAAAARAAAAw== - -1,-2: - ind: -1,-2 - tiles: RAAAAEQAAABEAAABRAAAAkQAAAJEAAABRAAAAEQAAAJEAAAARAAAAUQAAANEAAAARAAAAEQAAAFEAAABRAAAA0QAAABEAAACRAAAAUQAAANEAAABRAAAAEQAAAJEAAABRAAAAUQAAAFEAAADRAAAAEQAAANEAAABRAAAAkQAAABEAAABRAAAAkQAAAJEAAADRAAAA0QAAAJEAAACRAAAAkQAAAFEAAADRAAAAkQAAAFEAAABRAAAAkQAAABEAAABRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFEAAAARAAAA14AAAAWAAAAWwAAAFsAAAFbAAABFgAAAF4AAAAAAAAAAAAAAF0AAABeAAAARAAAAEQAAABEAAADKAAAAEQAAAJeAAAAFgAAAVsAAANbAAABWwAAAhYAAABeAAAAAAAAAAAAAABeAAAAXgAAAEQAAANEAAAARAAAAygAAABEAAABXgAAABYAAANbAAAAWwAAAVsAAAIWAAADXgAAAAAAAAAAAAAAXgAAAEQAAAFEAAABRAAAA0QAAAMoAAAARAAAAl4AAAAWAAABWwAAA1sAAAJbAAABFgAAAF4AAABdAAAAXQAAAF4AAABEAAAARAAAA0QAAANEAAAAKAAAAEQAAABeAAAAFgAAAVsAAABbAAADWwAAAhYAAAFeAAAAXQAAAAAAAABeAAAAXgAAAF4AAAAWAAACRAAAAUQAAAFEAAADRAAAAhYAAANbAAADWwAAAFsAAAIWAAABXgAAAF0AAAAAAAAAXgAAABYAAAEWAAADFgAAAkQAAANeAAAARAAAAF4AAAAWAAACWwAAAFsAAAJbAAADFgAAAl4AAABdAAAAXQAAAF4AAAAWAAABFgAAAxYAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAFeAAAAXgAAAF0AAABeAAAAFgAAAxYAAAIWAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAACFgAAAV4AAABdAAAAXgAAABYAAAEWAAADFgAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAAxYAAAFeAAAAXQAAAF4AAAAWAAABFgAAAhYAAABEAAADXgAAABYAAAIWAAAAFgAAABYAAAMWAAABFgAAARYAAAEWAAABXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADRAAAAV4AAAAWAAABFgAAAhYAAAEWAAADFgAAAhYAAAAWAAAAFgAAAxYAAAIWAAADFgAAACYAAAAWAAADJgAAAA== - -2,0: - ind: -2,0 - tiles: FgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAABYAAABeAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAXgAAAE4AAAAWAAACXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAEQAAABEAAACXgAAAF4AAABeAAAAFgAAAxYAAABEAAACXgAAAF0AAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA8AAAAPAAAARAAAA14AAAAAAAAAXgAAAF4AAABOAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAPAAAADwAAAEQAAABeAAAAXQAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAEQAAABeAAAAXgAAAE4AAABeAAAADwAAAA8AAABEAAACXgAAAAAAAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAATgAAAF4AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAE4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAADMAAABeAAAAMwAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAADMAAAAzAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAMwAAADMAAAAzAAAAMwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -2,-3: - ind: -2,-3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAE4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABeAAAAXQAAAAAAAABdAAAAXgAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXgAAAF0AAAAAAAAAXQAAAF4AAABdAAAAAAAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAABEAAACRAAAAkQAAABEAAACXgAAAE4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAADRAAAAEQAAAJEAAADRAAAAV4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAUQAAAJEAAABRAAAAEQAAAFeAAAATgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAAJEAAADRAAAAUQAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAEQAAANEAAABRAAAAEQAAANEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABEAAABRAAAAUQAAABEAAABRAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAACRAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -1,-3: - ind: -1,-3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA04AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAABEAAADRAAAAQAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAAARAAAAUQAAAIAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFEAAACXgAAAEQAAABEAAACAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAACRAAAAF4AAABEAAADRAAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAMAAAAAAAAAAF0AAAAAAAAAXgAAABYAAAEWAAAAFgAAAhYAAAMWAAABFgAAARYAAAAWAAAAXgAAAEQAAANEAAABXQAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAAhYAAAIWAAABFgAAAhYAAAMWAAAAFgAAAF4AAABEAAACRAAAAAAAAABeAAAAFgAAARYAAANeAAAAFgAAABYAAAEWAAABFgAAABYAAAAWAAADFgAAAxYAAANeAAAARAAAA0QAAAJdAAAAXgAAABYAAAMWAAACFgAAABYAAAEWAAACFgAAABYAAAAWAAADFgAAAxYAAAAWAAABFgAAAEQAAAJEAAABAAAAAF4AAAAWAAACFgAAAV4AAAAWAAADFgAAAhYAAAIWAAACFgAAABYAAAMWAAAAFgAAAV4AAABEAAADRAAAAF0AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAMWAAADFgAAARYAAAMWAAABFgAAAxYAAABeAAAARAAAA0QAAAIAAAAAAAAAAF0AAAAAAAAAXgAAABYAAAAWAAACFgAAAxYAAAMWAAAAFgAAARYAAAIWAAACXgAAAEQAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAg== - 0,-3: - ind: 0,-3 - tiles: RAAAAEQAAAJeAAAARAAAA0QAAAFEAAAARAAAAEQAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADXgAAAF4AAABeAAAARAAAA0QAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAV4AAABEAAADRAAAAEQAAANEAAADRAAAAl4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAARAAAA0QAAAJEAAAARAAAAEQAAAFEAAACRAAAA0QAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAADXgAAAEQAAANEAAAAXgAAAEQAAABEAAAARAAAA0QAAABEAAACXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAV4AAABEAAABRAAAAUQAAABEAAACRAAAAEQAAABEAAADRAAAAV4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAFeAAAARAAAA0QAAAJeAAAARAAAA0QAAAFEAAADRAAAAkQAAANeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAADXgAAAEQAAAFEAAAAXgAAAEQAAANEAAAARAAAAUQAAABEAAABXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAAV4AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABXgAAAE4AAAA1AAAANQAAADUAAAA1AAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABOAAAANQAAADUAAAA1AAAANQAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAATgAAADUAAAA1AAAANQAAADUAAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAANQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAABEAAAARAAAAUQAAAFEAAADRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAA== - 1,-3: - ind: 1,-3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAA6AAAAOgAAADoAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAA6AAAAOgAAADoAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAOgAAADoAAAA6AAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAABRAAABUQAAA1EAAABRAAABXgAAAFEAAANRAAACUQAAAl4AAAA6AAAAOgAAADoAAABEAAACXgAAAF4AAABRAAABUQAAAlEAAANRAAADUQAAAV4AAABRAAACUQAAAVEAAAFeAAAARAAAAEQAAAFEAAABRAAAA14AAABeAAAAUQAAA1EAAANRAAACUQAAAVEAAAJRAAABUQAAAFEAAANRAAADXgAAAEQAAANEAAAARAAAA0QAAAFeAAAAXgAAAFEAAAJRAAAAUQAAA1EAAAJRAAADXgAAAFEAAAJRAAABUQAAA1EAAABEAAABRAAAAUQAAANEAAABFgAAAF4AAABRAAABUQAAAlEAAAFRAAACUQAAA14AAABRAAABUQAAAVEAAAFeAAAARAAAA0QAAAFEAAACRAAAAw== - 1,0: - ind: 1,0 - tiles: XgAAAF4AAAAMAAAAXgAAADEAAAAxAAAAMQAAADEAAAAxAAAAFgAAABYAAAIWAAABXgAAAFsAAANbAAACWwAAADwAAAA8AAAAPAAAAF4AAABeAAAAFQAAAF4AAABeAAAAXgAAAF4AAAAMAAACXgAAAF4AAABbAAADWwAAAFsAAAMOAAAAXgAAAA4AAABeAAAAFQAAABUAAAAVAAAAXgAAAAwAAAAMAAABDAAAAgwAAANeAAAAXgAAAF4AAABeAAAADgAAAF4AAAAOAAAAXgAAABUAAAAVAAAAFQAAAF4AAAAMAAABDAAAAQwAAAEMAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAAFeAAAADAAAAgwAAAEMAAABXgAAAF4AAABeAAAAXgAAAF4AAAA8AAAAPAAAADwAAABeAAAANAAAADQAAAA0AAAARAAAAQwAAAIMAAABDAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAXgAAADQAAAA0AAAANAAAAF4AAAAMAAAADAAAAwwAAABeAAAAXgAAAF4AAABeAAAAXgAAADwAAAA8AAAAPAAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAACXgAAAF4AAAA6AAAAOgAAADoAAABeAAAARAAAAV4AAABeAAAARAAAAkQAAANEAAADRAAAAkQAAABEAAACRAAAAkQAAABeAAAAOgAAADoAAAA6AAAARAAAAkQAAANeAAAARAAAAEQAAAJEAAADRAAAAUQAAAJEAAACRAAAAEQAAAFEAAADXgAAADoAAAA6AAAAOgAAAEQAAANEAAABRAAAA0QAAANEAAABFgAAAhYAAAEWAAAAFgAAAkQAAAJEAAAARAAAAUQAAAI6AAAAOgAAADoAAABEAAACRAAAAUQAAANEAAABRAAAABYAAAAWAAAAFgAAABYAAABEAAAARAAAA0QAAAJeAAAAOgAAADoAAAA6AAAARAAAAkQAAANeAAAARAAAA0QAAAAWAAAAFgAAAxYAAAMWAAADRAAAA0QAAANEAAADXgAAADoAAAA6AAAAOgAAABEAAABeAAAAXgAAAEQAAABEAAADFgAAAhYAAAIWAAACFgAAAkQAAABEAAABRAAAAUQAAAE6AAAAOgAAADoAAAARAAAAEQAAAF4AAABEAAABRAAAA0QAAAJEAAACRAAAAUQAAANEAAADRAAAAkQAAAJeAAAAOgAAADoAAAA6AAAAEQAAABEAAABeAAAARAAAA0QAAANEAAAARAAAAUQAAAFEAAADRAAAAEQAAANEAAACXgAAADoAAAA6AAAAOgAAAA== - 0,1: - ind: 0,1 - tiles: RAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAABEAAABRAAAA0QAAAJEAAACRAAAAUQAAANEAAADRAAAAEQAAAJeAAAAFgAAAhYAAAIWAAABFgAAA0QAAAJEAAABRAAAA0QAAABEAAACRAAAAkQAAANEAAAARAAAAEQAAANEAAACRAAAAhYAAAMWAAACFgAAAxYAAAJEAAADRAAAA0QAAAFEAAACRAAAA0QAAAJEAAABRAAAAkQAAANEAAADRAAAA14AAAAWAAAAFgAAABYAAAMWAAACXgAAAF4AAABeAAAAXgAAAEQAAABeAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAEWAAABFgAAA14AAAAWAAAAFgAAARYAAABEAAACRAAAA0QAAANeAAAAFgAAAhYAAAAWAAACXgAAAF4AAABeAAAAFgAAAVsAAANeAAAAFgAAAhYAAAEWAAADRAAAA0QAAABEAAAAXgAAABYAAAIWAAACFgAAA14AAABbAAACWwAAA1sAAAJbAAAAXgAAABYAAANeAAAAXgAAAEQAAABeAAAARAAAAV4AAABeAAAARAAAAV4AAABeAAAAWwAAAVsAAAFbAAADWwAAAUQAAAFEAAADRAAAAUQAAAFEAAABRAAAAEQAAAFEAAACRAAAA0QAAABEAAABXgAAAFsAAAJbAAAAWwAAAFsAAANEAAABRAAAAEQAAAFEAAABRAAAAUQAAAFEAAABRAAAAkQAAANEAAAARAAAAEQAAAFbAAAAWwAAAlsAAANbAAAARAAAA0QAAANEAAADRAAAAEQAAANEAAADRAAAA0QAAAJEAAAARAAAAEQAAAJeAAAAWwAAAlsAAAJbAAACWwAAAl4AAABeAAAARAAAAl4AAABeAAAAXgAAAF4AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA8AAAAPAAAADwAAAA8AAAAPAAAAF4AAABEAAACRAAAA0QAAANEAAADRAAAA0QAAANEAAAARAAAA0QAAANEAAABPAAAADwAAAA8AAAAPAAAADwAAAA8AAAARAAAAUQAAAJEAAAARAAAAkQAAABEAAABRAAAAEQAAANEAAABRAAAAQ== - -1,1: - ind: -1,1 - tiles: XgAAAFsAAANbAAADWwAAA1sAAAJbAAAAXgAAAFsAAABbAAADWwAAAFsAAAJbAAABWwAAAV4AAABEAAACRAAAA14AAABbAAADWwAAAFsAAAJbAAACWwAAAl4AAABbAAADWwAAA1sAAAJbAAACWwAAAVsAAABeAAAARAAAA0QAAAJeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADEAAABeAAAAXgAAAEQAAAFEAAADRAAAA0QAAANEAAACRAAAA0QAAANEAAADRAAAAkQAAANEAAACRAAAAkQAAABEAAABRAAAAEQAAANEAAAARAAAAUQAAANEAAABRAAAAUQAAABEAAAARAAAA0QAAAFEAAADRAAAAEQAAANEAAACRAAAAkQAAABEAAAARAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACRAAAAUQAAAJEAAAARAAAAEQAAANEAAACRAAAAkQAAABEAAACXgAAAEQAAAFEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAA0QAAAFeAAAARwAAAEcAAABHAAAAXgAAAEcAAABHAAAARwAAAF4AAABHAAAARwAAAEcAAABeAAAARAAAAUQAAAJEAAACXgAAAEcAAABHAAAARwAAAF4AAABHAAAARwAAAEcAAABeAAAARwAAAEcAAABHAAAAXgAAAF4AAABEAAACXgAAAF4AAABeAAAARAAAA14AAABeAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABEAAACXgAAAF4AAABEAAABRAAAAEQAAANEAAADRAAAA0QAAAFEAAACRAAAAkQAAAJEAAABRAAAAkQAAANEAAADRAAAAkQAAABeAAAARAAAA0QAAANEAAABRAAAAEQAAAJEAAABRAAAAEQAAANEAAABRAAAAUQAAANEAAAARAAAAEQAAABEAAABXgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAEQAAANEAAADXgAAAEQAAAJEAAADRAAAAkQAAANEAAADRAAAAxYAAAMWAAAAFgAAAhYAAAAWAAACXgAAABYAAAA8AAAAPAAAADwAAABEAAABRAAAAV4AAABeAAAAXgAAAEQAAAAWAAABFgAAAxYAAAIWAAABFgAAAV4AAABEAAABPAAAADwAAAA8AAAARAAAAkQAAAJeAAAAPAAAADwAAAA8AAAAFgAAARYAAAIWAAAAFgAAABYAAANeAAAARAAAAzwAAAA8AAAAPAAAAEQAAAJEAAACXgAAADwAAAA8AAAAPAAAAA== - 1,1: - ind: 1,1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA8AAAAXgAAAF4AAABeAAAAXgAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA8AAAAPAAAADwAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAPAAAADwAAAA8AAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAFgAAAl4AAABeAAAAXgAAAE4AAABeAAAAXgAAADwAAAA8AAAAPAAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAABYAAAMWAAADFgAAAxYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAWAAADFgAAARYAAABeAAAATgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAFgAAAhYAAAEWAAADXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAABYAAAJeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABbAAADWwAAAlsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAWwAAAVsAAAFbAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAFsAAABbAAADWwAAAF4AAABOAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF0AAABbAAABWwAAAxYAAAFeAAAATgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABdAAAAWwAAA1sAAAEWAAADXgAAAE4AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABdAAAAXQAAAF0AAABEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAARAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAA== - -1,2: - ind: -1,2 - tiles: FgAAARYAAAMWAAACFgAAABYAAANeAAAARAAAAkQAAAJEAAACRAAAAkQAAANEAAACXgAAADwAAAA8AAAAPAAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA14AAAA8AAAAPAAAADwAAABEAAACRAAAAEQAAAJEAAAARAAAAUQAAANEAAACRAAAAUQAAAJeAAAARAAAA0QAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAADRAAAAEQAAANEAAABRAAAAkQAAANEAAABRAAAAkQAAABEAAACXgAAABYAAAMWAAACFgAAAUQAAANEAAABRAAAA0QAAAJEAAADRAAAAUQAAABEAAABRAAAA0QAAAFEAAACRAAAAl4AAAAWAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAEQAAABEAAAARAAAA0QAAANeAAAAFgAAAUQAAAFEAAACAAAAAAAAAAAAAAAAXgAAABYAAAIWAAABFgAAA14AAABeAAAAXgAAAEQAAANeAAAAXgAAABYAAAJEAAACRAAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAxYAAAEWAAACXgAAAEQAAANEAAACRAAAAl4AAAAWAAAAFgAAAxYAAAFbAAAAWwAAA1sAAAFeAAAAFgAAABYAAAAWAAABFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAlsAAABbAAAAXgAAABYAAAIWAAACFgAAABYAAAJeAAAARAAAA0QAAANEAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFbAAABWwAAAl4AAABeAAAAFgAAA14AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABdAAAAXQAAAF0AAAAWAAABFgAAABYAAAMWAAACFgAAABYAAAEWAAABFgAAAhYAAAMWAAADFgAAABYAAAJeAAAAXQAAAF0AAABdAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADXgAAAF0AAABdAAAAXQAAABYAAAMWAAACFgAAAxYAAAIWAAABFgAAAhYAAAAWAAADFgAAAhYAAAIWAAABFgAAAl4AAAAAAAAAAAAAAAAAAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAANbAAAAWwAAAVsAAANeAAAARAAAAkQAAANEAAABRAAAAUQAAAJEAAACXgAAACgAAAAWAAABKAAAAA== - 0,2: - ind: 0,2 - tiles: PAAAADwAAAA8AAAAPAAAADwAAABeAAAARAAAAUQAAANEAAABRAAAAkQAAAFEAAACRAAAA0QAAAJEAAADRAAAADwAAAA8AAAAPAAAADwAAAA8AAAAXgAAAEQAAAFEAAABRAAAAEQAAAJEAAADRAAAA0QAAANEAAAARAAAA0QAAAJeAAAARAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAEQAAABEAAACRAAAA0QAAANEAAACFgAAAkQAAAFEAAACRAAAAUQAAANeAAAAFgAAABYAAAEWAAABFgAAAF4AAABEAAAARAAAAUQAAAJEAAACRAAAA0QAAAJEAAAARAAAA0QAAANEAAACRAAAAxYAAAIWAAABFgAAAxYAAAJeAAAAXgAAAF4AAABeAAAAFgAAA14AAABEAAAARAAAAEQAAABEAAACRAAAAUQAAAMWAAABFgAAAxYAAAMWAAADFgAAAV4AAAAWAAAAFgAAABYAAAIWAAAARAAAAEQAAABEAAABRAAAAkQAAABeAAAAFgAAABYAAAEWAAACFgAAAxYAAABeAAAAWwAAAVsAAAJbAAAAWwAAAhYAAAMWAAAAFgAAAxYAAAAWAAACXgAAABYAAAAWAAAAFgAAAhYAAAIWAAABXgAAAFsAAAJbAAADWwAAAVsAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAxYAAAAWAAADFgAAA14AAABbAAAAWwAAAVsAAABbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAIWAAAAFgAAARYAAANeAAAAWwAAAFsAAAFbAAAAWwAAAV0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAFgAAABYAAAIoAAAAFgAAASgAAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAA== - 1,2: - ind: 1,2 - tiles: RAAAAUQAAANEAAACRAAAAl4AAAA8AAAAPAAAADwAAAA8AAAAPAAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAEQAAANEAAADRAAAAUQAAAI8AAAAPAAAADwAAAA8AAAAPAAAADwAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAA0QAAAFEAAADXgAAADwAAAA8AAAAPAAAADwAAAA8AAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAANEAAADRAAAAl4AAAA8AAAAPAAAADwAAAA8AAAAPAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAARAAAAUQAAANeAAAAPAAAADwAAAA8AAAAPAAAADwAAABeAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAEQAAAFeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAV4AAABdAAAAXQAAAAAAAABeAAAARAAAA0QAAABEAAADXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFsAAAFeAAAAAAAAAF0AAAAAAAAAXgAAAEQAAANEAAABRAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbAAABXgAAAAAAAABdAAAAXQAAAF4AAABEAAACRAAAA0QAAANeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAA14AAAAAAAAAAAAAAAAAAABeAAAARAAAAEQAAANEAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAJEAAACRAAAA14AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,1: - ind: 2,1 - tiles: OgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAA== - 2,0: - ind: 2,0 - tiles: MQAAADEAAABeAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAXgAAAC4AAAAuAAAALgAAAC4AAAAuAAAALgAAAF4AAAAxAAAAXgAAAF4AAAAWAAACXgAAADwAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAEQAAAFEAAAARAAAAV4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAARAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAEQAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAEQAAAJEAAADRAAAA14AAAAAAAAAXQAAAAAAAABeAAAATgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAXgAAAE4AAABeAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABOAAAAXgAAAA== - -2,1: - ind: -2,1 - tiles: XgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAATwAAAF4AAABPAAAAXgAAAFsAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAAARAAAAlsAAANbAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAAEQAAANeAAAAWwAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAABXgAAAEQAAABeAAAAWwAAAl4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAUQAAAJEAAAARAAAAV4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAkQAAAFbAAABXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAACRAAAAEQAAAFEAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAABRAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAA== - -2,2: - ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAACUAAABeAAAAMQAAADEAAABeAAAAMQAAADEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAAAlAAAAXgAAADEAAAAxAAAAXgAAADEAAAAxAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAJQAAAF4AAAAxAAAAMQAAAF4AAAAxAAAAMQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAFgAAARYAAAAWAAABFgAAABYAAAMWAAACFgAAARYAAAIWAAABAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAAQAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAAAWAAABFgAAABYAAAIWAAACFgAAABYAAAMWAAADFgAAAhYAAAIAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAABeAAAAMQAAADEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAADEAAAAxAAAAXgAAADEAAAAxAAAAXgAAAA== - 0,3: - ind: 0,3 - tiles: FgAAARYAAAMoAAAAFgAAASgAAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAADRAAAAUQAAAJEAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAA0QAAANEAAAARAAAAl4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAANEAAACRAAAAEQAAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,0: - ind: -3,0 - tiles: XgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAUQAAANEAAADRAAAAkQAAAJEAAAARAAAAUQAAAJEAAADXgAAAAAAAABdAAAAAAAAAF4AAABeAAAARAAAAkQAAAJEAAADRAAAAkQAAAFEAAACRAAAAEQAAAFEAAACRAAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAA0QAAANEAAABRAAAAkQAAANEAAACRAAAAUQAAABeAAAAXQAAAF4AAABEAAACFgAAAV4AAABEAAAARAAAAkQAAAFEAAAARAAAAUQAAANEAAABRAAAA0QAAAJEAAABXgAAAAAAAABeAAAARAAAAw8AAABeAAAARAAAAEQAAABEAAAARAAAAkQAAANEAAABRAAAAUQAAAJEAAACRAAAAF4AAABdAAAAXgAAAEQAAAEPAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABEAAADDwAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF0AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAF0AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAF0AAAAAAAAAXgAAAA== - -3,1: - ind: -3,1 - tiles: TgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAAAAAABeAAAAXQAAAAAAAAAAAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAFsAAAFbAAAAXgAAAFsAAANbAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAF4AAABbAAAAWwAAAV4AAABeAAAAWwAAAV4AAABeAAAATgAAAF4AAABeAAAAXgAAAFsAAABbAAAAXgAAAFsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFeAAAAXgAAAE4AAABeAAAAXgAAAFsAAAJbAAABXgAAAF4AAABeAAAAXgAAAFsAAAJeAAAAWwAAAV4AAABbAAADXgAAAE4AAABOAAAAXgAAAFsAAANeAAAAWwAAAl4AAABeAAAAWwAAAFsAAAJeAAAAWwAAAV4AAABeAAAAWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAlsAAAFbAAAAXgAAAFsAAAFeAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAWwAAAVsAAABbAAACWwAAA1sAAANeAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,1: - ind: -4,1 - tiles: XQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABOAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAATgAAAF4AAABOAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAA== - -4,0: - ind: -4,0 - tiles: RAAAAkQAAAJEAAAARAAAAEQAAAFEAAADRAAAAkQAAAJEAAACRAAAAkQAAAJeAAAAXgAAAF4AAABPAAAAXgAAAEQAAAJEAAABRAAAAUQAAAFEAAADRAAAAEQAAABEAAADRAAAAEQAAAFEAAADXgAAAF4AAABOAAAAXgAAAE4AAABEAAACXgAAAF4AAABEAAADXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAARAAAAV4AAABEAAACRAAAAkQAAABEAAACRAAAA0QAAANeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAATgAAAEQAAABeAAAARAAAAEQAAANEAAAARAAAA0QAAANEAAAAXgAAAF4AAABEAAAAXgAAAEQAAAJeAAAAXgAAAE4AAABEAAABXgAAAEQAAANEAAACRAAAAUQAAABEAAADRAAAAl4AAABeAAAARAAAAUQAAABeAAAAXgAAAF4AAABOAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAARAAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAAEQAAAJeAAAATgAAAE4AAABOAAAATgAAAF4AAABOAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAE4AAABeAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABOAAAATgAAAE4AAABPAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAA== - -5,0: - ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAARAAAAUQAAABEAAADRAAAAEQAAANEAAACRAAAAEQAAAFEAAACRAAAAEQAAANEAAAARAAAAEQAAABEAAADXgAAAEQAAAJEAAABRAAAA0QAAAJEAAABRAAAAkQAAANEAAACRAAAAUQAAANEAAABRAAAAEQAAAJEAAABRAAAAF4AAABEAAACRAAAA0QAAABEAAAARAAAA0QAAANEAAABRAAAAkQAAANEAAADRAAAA0QAAAFEAAACRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAARAAAAEQAAABEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFEAAABRAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADRAAAA0QAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAUQAAAFEAAADXgAAAA== - -5,1: - ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAA0QAAANEAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAJEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADRAAAAEQAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -6,0: - ind: -6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,-1: - ind: -5,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAACRAAAAl4AAABeAAAAXgAAAEQAAAFEAAAARAAAAV4AAABeAAAAXgAAAEQAAAFEAAABRAAAAEQAAANEAAABRAAAAEQAAAJEAAADRAAAAEQAAANEAAACRAAAAEQAAAFeAAAAXgAAAF4AAABEAAACRAAAAEQAAANEAAAARAAAAUQAAANEAAACRAAAAEQAAAJEAAAARAAAA0QAAAJEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABEAAACRAAAA0QAAAFEAAABRAAAAkQAAAJEAAABRAAAA0QAAANEAAACRAAAA0QAAAFEAAACRAAAAEQAAANeAAAARAAAAEQAAAJEAAABRAAAAUQAAAJEAAAARAAAA0QAAAFEAAACRAAAA0QAAAFEAAADRAAAAEQAAAJEAAACXgAAAEQAAAJEAAADRAAAA0QAAABEAAABRAAAA0QAAAJEAAACRAAAAEQAAAFEAAAARAAAAkQAAAFEAAADRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAA== - -4,-1: - ind: -4,-1 - tiles: RAAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAADgAAAEQAAANeAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABEAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAXgAAAE4AAABOAAAAXgAAAF4AAAAOAAAARAAAAF4AAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAABeAAAAPAAAADwAAAA8AAAAPAAAAF4AAABEAAABXgAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAXgAAADwAAAA8AAAAPAAAADwAAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAPAAAADwAAAA8AAAAXgAAAEQAAABEAAABRAAAAEQAAANEAAABRAAAAkQAAAJEAAABRAAAAkQAAANEAAAAXgAAADwAAAA8AAAAPAAAAF4AAABEAAAARAAAAkQAAAFEAAABRAAAA0QAAANEAAAARAAAAEQAAABEAAABRAAAAV4AAABEAAADRAAAAUQAAABeAAAARAAAA14AAAAxAAAAMQAAADEAAAAxAAAAMQAAAF4AAAAWAAAARAAAAEQAAAFeAAAAXgAAAEQAAAJeAAAAXgAAAEQAAAFeAAAAMQAAADEAAAAxAAAAMQAAADEAAABeAAAAFgAAAEQAAANEAAADRAAAA0QAAAJEAAABRAAAAEQAAAJEAAAAXgAAADEAAAAxAAAAMQAAADEAAAAxAAAAXgAAABYAAAJEAAAARAAAAEQAAABEAAACRAAAA0QAAAJEAAACRAAAAl4AAAAxAAAAMQAAADEAAAAxAAAAMQAAAF4AAAAWAAADRAAAAkQAAAFEAAAARAAAA0QAAANEAAADRAAAAA== - -3,-1: - ind: -3,-1 - tiles: XgAAADwAAAA8AAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAARAAAAw4AAAA8AAAAPAAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAPAAAADwAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADRAAAARYAAAJeAAAAXgAAAF4AAABEAAAADgAAADwAAAA8AAAAXgAAADAAAAAwAAAAMAAAAF4AAABEAAADRAAAAkQAAAMWAAABXgAAAF4AAABeAAAARAAAAF4AAAA8AAAAPAAAAF4AAAAwAAAAMAAAADAAAABeAAAARAAAAEQAAAFEAAACFgAAAl4AAABeAAAAXgAAAEQAAAMOAAAAPAAAADwAAABeAAAAMAAAADAAAAAwAAAAXgAAAEQAAAJEAAAARAAAABYAAAJeAAAAXgAAAF4AAABEAAABXgAAAF4AAAA8AAAAXgAAAEQAAAFEAAACRAAAAEQAAAFEAAABRAAAAkQAAAIWAAACXgAAAF4AAABeAAAAXgAAABYAAAJEAAABRAAAAEQAAAJEAAABRAAAAEQAAANEAAADRAAAAEQAAABEAAABFgAAA14AAABeAAAAXgAAAF4AAAAWAAAARAAAAUQAAABEAAACRAAAAUQAAABEAAACRAAAAEQAAABEAAACRAAAAhYAAAFeAAAAXgAAAF4AAABeAAAAFgAAAEQAAABEAAAARAAAAUQAAAJEAAACRAAAAEQAAAFEAAABRAAAAkQAAAEWAAADXgAAABIAAAASAAAAEgAAABYAAANEAAABRAAAAEQAAABEAAADRAAAAUQAAABEAAAARAAAAkQAAANEAAABFgAAAF4AAAASAAAAEgAAABIAAAAWAAACFgAAABYAAAMWAAACFgAAARYAAAMWAAACFgAAAxYAAAIWAAACFgAAABYAAAJeAAAAEgAAABIAAAASAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAASAAAAXgAAAEQAAABEAAADRAAAAUQAAAFEAAACRAAAA0QAAABEAAADRAAAA0QAAABEAAABRAAAA0QAAAFEAAABRAAAAEQAAAFEAAADRAAAAkQAAANEAAACRAAAAEQAAANEAAADRAAAAEQAAAJEAAAARAAAAEQAAAJEAAAARAAAAUQAAABEAAABRAAAAEQAAANEAAABRAAAA0QAAAJEAAADRAAAA0QAAABEAAACRAAAAEQAAAFEAAACRAAAAEQAAANEAAADRAAAAg== - 3,0: - ind: 3,0 - tiles: LgAAAC4AAABeAAAAXgAAAF4AAABbAAAAWwAAAFsAAANbAAABWwAAAlsAAABeAAAAFgAAAhYAAAAWAAADMQAAAC4AAAAuAAAAXgAAAF4AAABeAAAAWwAAA1sAAANbAAAAWwAAAlsAAAJbAAACXgAAABYAAAMWAAAAXgAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANbAAACWwAAAlsAAANbAAACWwAAAl4AAAAWAAABFgAAAl4AAAAxAAAAAAAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAAlsAAANeAAAAXgAAAF4AAABeAAAAMQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABdAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAE4AAABOAAAAXgAAAF4AAABOAAAAXgAAAD4AAAA+AAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAPgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAATgAAAF4AAABRAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABOAAAAXgAAAE4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 2,-1: - ind: 2,-1 - tiles: XgAAAFEAAABRAAADUQAAAF4AAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAAEQAAABEAAACRAAAAUQAAAJEAAABRAAAAEQAAAJEAAADRAAAAEQAAAFEAAABRAAAAUQAAANEAAADRAAAAEQAAANEAAADRAAAA0QAAANEAAACRAAAAkQAAANEAAABRAAAA0QAAAFEAAAARAAAAEQAAAFEAAADRAAAAkQAAANEAAABRAAAAkQAAAJEAAAARAAAA0QAAAFEAAAARAAAAUQAAABEAAABRAAAAEQAAAFEAAACRAAAAl4AAABEAAAARAAAAEQAAANEAAACRAAAA0QAAANEAAABRAAAA14AAABeAAAARAAAAEQAAANeAAAARAAAA0QAAABeAAAAXgAAAF4AAAAvAAAALwAAAC8AAAAvAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAABXgAAAF4AAABEAAADFgAAAlEAAABRAAABUQAAAVEAAAJRAAACUQAAAlEAAANRAAADXgAAAEQAAAJEAAADRAAAAS4AAAAuAAAARAAAAl4AAABRAAADUQAAAVEAAANRAAAAUQAAAVEAAABRAAADUQAAAF4AAAAWAAADRAAAAEQAAABEAAACRAAAAEQAAABbAAAAUQAAAFEAAABRAAAAUQAAAVEAAAJRAAABUQAAA1EAAANeAAAAFgAAA0QAAANEAAABFgAAAxYAAABEAAAAXgAAAFEAAABRAAABUQAAAFEAAABRAAABUQAAAlEAAAJRAAADFgAAAxYAAANEAAADRAAAABYAAAIWAAACRAAAAhYAAAJRAAAAUQAAA1EAAAFRAAACUQAAA1EAAAFRAAAAUQAAABYAAAMWAAACRAAAAUQAAAIWAAABFgAAA0QAAAFeAAAAUQAAAVEAAABRAAADUQAAAFEAAAFRAAABUQAAAFEAAABeAAAAFgAAAEQAAAFEAAAAFgAAAhYAAAJEAAAAXgAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAABYAAANEAAACRAAAAkQAAAJEAAAARAAAAV4AAABeAAAAXgAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAF4AAAAWAAABFgAAAhYAAAIWAAADFgAAABYAAAJeAAAAXgAAAF4AAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAABeAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAXgAAAC4AAAAuAAAALgAAAC4AAAAuAAAALgAAAA== - 3,1: - ind: 3,1 - tiles: TgAAAE4AAABOAAAATgAAAF4AAABOAAAAXgAAAE4AAABeAAAATgAAAE4AAABeAAAAIgAAAF4AAAAiAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABOAAAAXgAAAE4AAABOAAAAXgAAACIAAAAiAAAAIgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAATgAAAF4AAAAiAAAAIgAAAF4AAABeAAAATgAAAF4AAABdAAAAAAAAAAAAAABdAAAAXgAAAE4AAABeAAAATgAAAE4AAABeAAAAIgAAACIAAABeAAAAXgAAAE4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXQAAAAAAAAAAAAAAXgAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,1: - ind: 4,1 - tiles: FgAAAl4AAABeAAAAMQAAADEAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAANeAAAAMQAAADEAAAAxAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADMQAAAF4AAAAxAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAV4AAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAV4AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAJeAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,0: - ind: 4,0 - tiles: MQAAADEAAAAxAAAAXgAAABYAAAEWAAABFgAAAhYAAAAWAAACBQAAAAUAAABeAAAAXQAAAF0AAABdAAAAXQAAADEAAAAxAAAAMQAAAF4AAAAWAAAAFgAAARYAAAEWAAAAFgAAAgUAAAAFAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAMQAAADEAAAAWAAABFgAAARYAAAMWAAAAFgAAAhYAAAEFAAAABQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAMQAAADEAAAAxAAAAXgAAABYAAAIWAAAAFgAAARYAAAIWAAADBQAAAAUAAABeAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAMWAAAAFgAAAV4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAADFgAAARYAAAEWAAAAFgAAAV4AAAAAAAAAAAAAAAAAAAAAAAAATgAAAE4AAABOAAAATgAAAF4AAAAWAAAAFgAAAxYAAAMWAAACXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXQAAAF0AAAAAAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAARwAAAEcAAABHAAAARwAAAF4AAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAATgAAAF4AAABHAAAARwAAAEcAAABHAAAAXgAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 5,0: - ind: 5,0 - tiles: XQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,-1: - ind: 3,-1 - tiles: XgAAAF4AAABeAAAAXgAAABYAAAMWAAABFgAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAEQAAANEAAACRAAAAUQAAAJEAAACRAAAAEQAAABEAAABRAAAAEQAAABEAAADRAAAA0QAAANEAAADRAAAA0QAAAFEAAAARAAAAkQAAAFEAAABRAAAAUQAAAFEAAACRAAAAUQAAABEAAABRAAAAUQAAANEAAABRAAAAkQAAANEAAADRAAAA0QAAANEAAABRAAAA0QAAAFEAAABRAAAA0QAAAFEAAABRAAAAEQAAABEAAADRAAAAEQAAANEAAADRAAAAkQAAAFEAAACRAAAAEQAAAJEAAAAXgAAAEQAAANEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABEAAACRAAAAUQAAABeAAAAWwAAA1sAAAFbAAAAWwAAAlsAAAJbAAABWwAAAFsAAANbAAADRAAAAkQAAABeAAAARAAAAEQAAAJEAAAAWwAAAFsAAAFbAAABWwAAAVsAAAFbAAAAWwAAAFsAAAJbAAACWwAAAEQAAAAWAAADXgAAAEQAAAFEAAAARAAAAlsAAANbAAABWwAAAVsAAAJbAAADWwAAA1sAAAJbAAAAWwAAAlsAAAFEAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAWwAAA1sAAABbAAACWwAAA1sAAABbAAAAWwAAAFsAAAJbAAAARAAAARYAAAFeAAAAXgAAAF4AAABbAAADWwAAAVsAAAJbAAAAWwAAA1sAAAFbAAAAWwAAA1sAAABbAAACWwAAAUQAAAMWAAABXgAAAF4AAABeAAAAWwAAAlsAAABbAAADWwAAAVsAAANbAAADWwAAAVsAAAJbAAAAWwAAAlsAAABEAAACFgAAAV4AAABeAAAAXgAAAFsAAAJbAAACWwAAAVsAAANbAAADWwAAAlsAAABeAAAAXgAAAFsAAAFeAAAARAAAABYAAAFeAAAAXgAAAF4AAABbAAACWwAAAlsAAANbAAABWwAAAlsAAAJbAAAAXgAAAFsAAANbAAADWwAAARYAAAIWAAADXgAAAF4AAABeAAAAWwAAAVsAAAJbAAABWwAAAVsAAANbAAAAWwAAA14AAABbAAAAWwAAAlsAAAIuAAAAXgAAAF4AAABeAAAAXgAAAFsAAAJbAAADWwAAAFsAAABbAAADWwAAA14AAABeAAAAXgAAAF4AAABeAAAALgAAAC4AAABeAAAAXgAAAF4AAABbAAADWwAAAFsAAABbAAABWwAAA1sAAAFeAAAAFgAAAxYAAAFeAAAAMQAAAA== - -5,-2: - ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANEAAADRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -4,-2: - ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAE4AAABeAAAATgAAAF4AAABOAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABdAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABOAAAATgAAAE4AAABeAAAATgAAAF4AAABeAAAADgAAAA== - -3,-2: - ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAABRAAAAUQAAAJEAAADXgAAAEQAAANEAAABRAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAEQAAANEAAABRAAAAl4AAABEAAACRAAAA0QAAAIAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAABEAAACRAAAAUQAAAFeAAAARAAAAEQAAANEAAABAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAACRAAAAkQAAANEAAACXgAAAF4AAABeAAAARAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAAFEAAADRAAAAkQAAANEAAADRAAAAUQAAAFEAAADRAAAA0QAAAEAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAJEAAACRAAAAkQAAAFEAAADRAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAA0QAAAJEAAABRAAAAUQAAABEAAADRAAAAEQAAANEAAAARAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEQAAANEAAACRAAAA0QAAAFEAAACRAAAAEQAAAFEAAABRAAAAUQAAAIAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAABRAAAAkQAAAFEAAAARAAAAEQAAANEAAACRAAAAkQAAAFEAAABAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAAkQAAANEAAABRAAAA0QAAAJEAAABRAAAAEQAAANEAAAARAAAAwAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEQAAAFEAAABRAAAA0QAAAFEAAAARAAAAkQAAABEAAACRAAAAEQAAAMAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAADRAAAAkQAAABEAAADRAAAA0QAAABEAAABRAAAA0QAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAA0QAAAFEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAUQAAAJEAAADRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAADgAAADwAAAA8AAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAQ== - -3,-3: - ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -2,-4: - ind: -2,-4 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAADwAAAF4AAABeAAAATgAAAF4AAABEAAACRAAAA0QAAANEAAAARAAAAkQAAAJeAAAATgAAAF4AAABeAAAAXgAAAA8AAABeAAAAXgAAAE4AAABeAAAARAAAAEQAAAFEAAAARAAAAUQAAANEAAABXgAAAE4AAABeAAAAXgAAAF4AAAAWAAABXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAUQAAABEAAACRAAAA14AAABOAAAAXgAAAF4AAABeAAAAFgAAAzMAAABOAAAATgAAAE4AAABEAAAARAAAAUQAAABEAAABRAAAAkQAAANeAAAAXgAAAF4AAABeAAAAXgAAAA8AAABeAAAAXgAAAE4AAABOAAAARAAAAEQAAANEAAADRAAAAUQAAABEAAABXgAAAE4AAABeAAAAXgAAAF4AAAAWAAACXgAAAF4AAABOAAAATgAAAEQAAAFEAAABRAAAAkQAAABEAAACRAAAAF4AAABOAAAAXgAAAF4AAABeAAAAFgAAAl4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAA8AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAAAPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -1,-4: - ind: -1,-4 - tiles: XgAAAF4AAAA6AAAAOgAAADoAAAA6AAAARAAAAkQAAABEAAACRAAAA0QAAANEAAADRAAAAEQAAAJEAAADRAAAAV4AAABeAAAAOgAAADoAAAA6AAAAOgAAAEQAAAJEAAACRAAAA0QAAAFEAAABRAAAAkQAAANEAAABRAAAAkQAAAFeAAAAXgAAADoAAAA6AAAAOgAAAF4AAABEAAABRAAAAkQAAAFEAAACRAAAAkQAAABeAAAARAAAAkQAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADRAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAkQAAAJEAAADFgAAAxYAAAAPAAAAFgAAAhYAAAEPAAAAXgAAABYAAANEAAABRAAAAEQAAANeAAAARAAAAkQAAABEAAACRAAAABYAAAMWAAADDwAAABYAAAMWAAACDwAAAF4AAAAWAAADRAAAAkQAAAJEAAACRAAAA0QAAABEAAACRAAAAUQAAAMWAAADFgAAAg8AAAAWAAACFgAAABYAAABeAAAAFgAAAUQAAABEAAABRAAAAl4AAABEAAAARAAAAEQAAANEAAACFgAAAw8AAAAPAAAADwAAABYAAAFeAAAAXgAAAF4AAABEAAACRAAAA0QAAANeAAAAXgAAAF4AAABEAAABRAAAAw8AAAAPAAAADwAAAA8AAAAPAAAAFgAAARYAAAIWAAADRAAAAUQAAABEAAADXgAAAF4AAABeAAAARAAAAkQAAAIWAAAADwAAAA8AAAAPAAAAFgAAA14AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAXgAAAEQAAABEAAADFgAAAxYAAAMPAAAAFgAAARYAAAEWAAADXgAAABYAAABEAAABRAAAAEQAAAJeAAAAXgAAAF4AAABEAAABRAAAAxYAAAAWAAACDwAAABYAAAMWAAABDwAAAF4AAAAWAAACRAAAAkQAAAJEAAACXgAAAF4AAABeAAAARAAAAEQAAAIWAAABFgAAAg8AAAAWAAADFgAAAw8AAABeAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAADRAAAAg== - 0,-4: - ind: 0,-4 - tiles: XgAAABYAAAMWAAADFgAAABYAAABEAAAAXgAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAARYAAAAWAAACRAAAA14AAABEAAACRAAAAkQAAAFeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAFgAAAxYAAAAWAAAAFgAAAkQAAAJeAAAARAAAAkQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAARYAAAFEAAAAXgAAAEQAAAFEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAAhYAAAMWAAAARAAAAV4AAABeAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJeAAAARAAAA0QAAABEAAABRAAAAUQAAAJEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADRAAAAEQAAAJEAAAARAAAAEQAAAFEAAACRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA14AAABEAAAARAAAAkQAAANEAAABRAAAAEQAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAARAAAAkQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAARAAAAEQAAAFEAAACRAAAAl4AAABEAAABRAAAAkQAAAFeAAAATgAAAE4AAABeAAAAXgAAAF4AAABEAAABXgAAAEQAAAFEAAADRAAAAkQAAABEAAABRAAAA0QAAANEAAAAXgAAAEQAAABEAAABRAAAAV4AAABeAAAARAAAA14AAABEAAAARAAAAUQAAANEAAACXgAAAEQAAAJEAAABRAAAAUQAAABEAAABRAAAAUQAAABeAAAAXgAAAEQAAABeAAAAXgAAAF4AAABEAAACXgAAAF4AAABEAAAARAAAAUQAAANeAAAARAAAAUQAAAJEAAABXgAAAF4AAABEAAADRAAAAV4AAABEAAADRAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAARAAAAUQAAABeAAAARAAAA0QAAAJEAAADRAAAA0QAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 2,-3: - ind: 2,-3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAJRAAADUQAAAF4AAABRAAAAUQAAAlEAAANRAAADXgAAAF4AAABeAAAAUQAAAVEAAANRAAACUQAAAlEAAAJRAAADUQAAAlEAAANeAAAAUQAAAVEAAAJRAAABUQAAAF4AAABeAAAAXgAAAFEAAAJRAAAAUQAAAFEAAANeAAAAUQAAA1EAAAFRAAABUQAAAlEAAAFRAAACUQAAA1EAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAJRAAADUQAAAF4AAABRAAAAUQAAAVEAAABRAAABXgAAAF4AAABeAAAAWgAAAFoAAAJaAAACWgAAAl4AAABRAAAAUQAAAlEAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFoAAANaAAACWgAAAVoAAABeAAAAUQAAAlEAAAJRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABaAAABWgAAAloAAANaAAABXgAAAFEAAAFRAAAAUQAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWgAAA1oAAAFaAAABWgAAAl4AAABRAAACUQAAAVEAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFoAAANaAAAAWgAAAVoAAABRAAADUQAAAVEAAAFRAAADXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABaAAAAWgAAAVoAAAFaAAABXgAAAFEAAABRAAACUQAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAABUQAAA1EAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAUQAAAAWAAADFgAAAxYAAABeAAAAUQAAAVEAAABRAAACUQAAAl4AAABbAAACWwAAA1sAAANbAAACRAAAA0QAAAJEAAADFgAAAhYAAAMWAAABXgAAAFEAAAJRAAAAUQAAAFEAAAFRAAADWwAAAVsAAABbAAABWwAAAEQAAAJEAAACRAAAABYAAAIWAAAAFgAAA14AAABRAAABUQAAAlEAAABRAAACXgAAAFsAAABbAAACWwAAAVsAAAJEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAUQAAAFEAAAFRAAAAUQAAA14AAABbAAABWwAAA1sAAAJbAAADRAAAAUQAAAFRAAACUQAAA1EAAAJRAAABUQAAAlEAAAJRAAAAUQAAA1EAAANeAAAAFgAAABYAAAMWAAAAFgAAAQ== - 2,-2: - ind: 2,-2 - tiles: XgAAAF4AAABeAAAAUQAAAFEAAABRAAADUQAAAlEAAANRAAACUQAAAVEAAAJeAAAAFgAAAhYAAAAWAAAAFgAAA1EAAANRAAAAXgAAAFEAAAJRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAUQAAAVEAAABRAAACUQAAA14AAAAWAAACFgAAABYAAAMWAAAAXgAAAEQAAAJaAAACWgAAAFoAAAFeAAAAUQAAAlEAAAFRAAACUQAAAlEAAAJeAAAAFgAAARYAAAMWAAABFgAAAxYAAABEAAADWgAAA1oAAANaAAACXgAAAFEAAANRAAACXgAAAFEAAAJRAAADXgAAABYAAAMWAAABFgAAARYAAAEWAAADRAAAAFoAAAFaAAAAWgAAAVEAAANeAAAAXgAAAF4AAABRAAABUQAAAF4AAAAWAAABFgAAAhYAAAIWAAABXgAAAEQAAAJEAAAARAAAAEQAAANeAAAAUQAAAVEAAAJRAAAAUQAAAVEAAAFeAAAAXgAAABYAAAIWAAACXgAAAF4AAABeAAAAFgAAARYAAAMWAAABXgAAAFEAAAJRAAADUQAAAVEAAAJRAAABUQAAAVEAAAFRAAADUQAAAVEAAANRAAACXgAAABYAAAAWAAAAFgAAAF4AAABRAAABUQAAAVEAAANRAAADUQAAA1EAAAJRAAADUQAAAVEAAAJRAAAAUQAAARYAAAIWAAABFgAAAxYAAAJeAAAAXgAAAF4AAABRAAACUQAAAlEAAANRAAAAUQAAA1EAAAJRAAACUQAAAlEAAAJeAAAAFgAAAhYAAAIWAAACTgAAAFEAAAJeAAAAUQAAAVEAAANeAAAAUQAAAVEAAAFRAAAAXgAAABYAAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABRAAACUQAAAFEAAAFRAAABXgAAAF4AAABEAAACXgAAAF4AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABOAAAAUQAAAlEAAAJRAAADUQAAAV4AAABEAAACRAAAAEQAAABeAAAAFgAAAU8AAAAWAAACTwAAABYAAAFPAAAAXgAAAFEAAABRAAABUQAAAlEAAANeAAAARAAAAUQAAANEAAAAXgAAABYAAABPAAAAFgAAAk8AAAAWAAACTwAAABYAAAJRAAAAUQAAAFEAAANRAAAAXgAAAEQAAABEAAAARAAAA14AAAAWAAABTwAAABYAAAFPAAAAFgAAAk8AAAAWAAAAUQAAAVEAAABRAAADUQAAA14AAABEAAACRAAAAEQAAABeAAAAFgAAABYAAAEWAAACTwAAABYAAABPAAAAFgAAAA== - 2,-4: - ind: 2,-4 - tiles: TgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAAlsAAAJeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAA1sAAAJbAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAAUQAAAlEAAAJRAAADUQAAAF4AAABRAAAAUQAAAV4AAABRAAAAUQAAAk4AAABOAAAATgAAAF4AAABeAAAAXgAAAFEAAAFRAAAAUQAAAVEAAABeAAAAUQAAAlEAAAJeAAAAUQAAAVEAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAACUQAAA1EAAANRAAAAXgAAAFEAAABRAAABXgAAAFEAAANRAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAVEAAAFRAAAAUQAAAF4AAABRAAABXgAAAF4AAABeAAAAUQAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAFRAAABUQAAAFEAAABRAAABUQAAAVEAAABRAAAAUQAAAFEAAABeAAAAXgAAAFEAAAJRAAAAUQAAAFEAAANRAAAAUQAAAVEAAAFRAAADUQAAAVEAAAFRAAAAUQAAAFEAAAFRAAAAXgAAAF4AAABRAAADUQAAA1EAAABeAAAAXgAAAF4AAABRAAABXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAUQAAAFEAAANRAAAAUQAAAl4AAABRAAACUQAAAVEAAAFeAAAARAAAAEQAAAFEAAABKAAAACgAAABeAAAAXgAAAFEAAAJRAAADUQAAAVEAAAJeAAAAUQAAAFEAAAFRAAAAXgAAACgAAAAoAAAAKAAAACgAAAAoAAAAXgAAAF4AAABRAAACUQAAAFEAAANRAAABXgAAAFEAAABRAAADUQAAAV4AAAAoAAAAKAAAACgAAAAoAAAAKAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAFRAAADUQAAAVEAAABRAAAAUQAAAVEAAABRAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAUQAAA1EAAAFRAAABXgAAAFEAAAJRAAADUQAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 3,-2: - ind: 3,-2 - tiles: XgAAAF4AAABOAAAAXgAAAA8AAAAPAAAAXgAAABYAAAMWAAACFgAAAV4AAABEAAACRAAAARYAAAIWAAABFgAAA14AAABeAAAATgAAAF4AAAAWAAABFgAAAhYAAAEWAAAAFgAAABYAAABeAAAARAAAAkQAAAAWAAADFgAAAxYAAAFOAAAAXgAAAE4AAABeAAAADwAAAA8AAABeAAAAFgAAAxYAAAAWAAACXgAAAEQAAAFEAAAAFgAAAxYAAAMWAAADUQAAAlEAAAJRAAADXgAAAF4AAABeAAAAXgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAFEAAANRAAADUQAAAEQAAANEAAADUQAAAFEAAAFRAAACUQAAAlEAAAJRAAACUQAAAlEAAAFRAAABUQAAAlEAAABRAAADUQAAA1EAAABeAAAARAAAA1EAAAFRAAAAUQAAAlEAAANRAAAAUQAAAVEAAANRAAABUQAAAVEAAAFRAAABXgAAAE4AAABeAAAAXgAAAF4AAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAXgAAAF4AAABeAAAAXgAAAE8AAAAWAAABFgAAABYAAABPAAAAUQAAAFEAAAJRAAAAUQAAA1EAAABRAAACUQAAAVEAAABOAAAAXgAAAF4AAABPAAAAFgAAABYAAAMWAAADTwAAAFEAAAFRAAABUQAAAkQAAANEAAABRAAAAEQAAANEAAADTgAAAF4AAABeAAAATwAAAE8AAABPAAAATwAAAE8AAABRAAADUQAAAlEAAABEAAABRAAAAUQAAANEAAABRAAAAk4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAJRAAAARAAAAUQAAABEAAABRAAAAkQAAABOAAAAXgAAAF4AAAAWAAABFgAAAxYAAAMWAAAAFgAAAV4AAABRAAACUQAAAEQAAABEAAABRAAAAkQAAAFEAAAAXgAAAF4AAABeAAAAFgAAAQ8AAABEAAAADwAAABYAAAFEAAABUQAAAlEAAANEAAAARAAAAEQAAAFEAAABRAAAAl4AAABeAAAAXgAAABYAAAEPAAAADwAAAA8AAAAWAAAARAAAAVEAAANRAAADUQAAAFEAAAFRAAACUQAAAFEAAABeAAAAXgAAAF4AAAAWAAACDwAAAEQAAAIPAAAAFgAAAkQAAANRAAACUQAAAVEAAANRAAABUQAAAFEAAABRAAACXgAAAF4AAABOAAAAFgAAAxYAAAAWAAACFgAAAxYAAAJeAAAAUQAAAVEAAABRAAADXgAAAF4AAABRAAADXgAAAA== - 4,-2: - ind: 4,-2 - tiles: XgAAAFEAAAFRAAABUQAAAl4AAAAWAAACFgAAABYAAAEWAAADFgAAAxYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAACUQAAA1EAAANeAAAAFgAAAEQAAABEAAABRAAAAEQAAAIWAAAAXgAAADoAAAA6AAAAOgAAADoAAABeAAAAUQAAAVEAAANRAAABXgAAABYAAABEAAADRAAAAEQAAABEAAACFgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAXgAAAFEAAANRAAACUQAAAl4AAAAWAAABRAAAAkQAAANEAAADRAAAAxYAAAFeAAAAOgAAADoAAAA6AAAAOgAAAFEAAAFRAAABUQAAA1EAAANeAAAAFgAAAUQAAABEAAAARAAAAEQAAAEWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAADUQAAAVEAAAFRAAABXgAAABYAAAJEAAADRAAAAEQAAAFEAAAAFgAAAl4AAABEAAACRAAAA14AAABEAAADXgAAAFEAAAFRAAAAUQAAAV4AAAAWAAAAFgAAAhYAAAIWAAACFgAAABYAAAFeAAAARAAAAEQAAAFEAAABRAAAAl4AAABRAAACUQAAAFEAAANRAAABUQAAAVEAAANRAAACUQAAAlEAAAJRAAABXgAAAFEAAANRAAACUQAAAFEAAABEAAAAUQAAA1EAAABRAAAAUQAAAVEAAAJRAAAAUQAAAFEAAAFRAAABUQAAA1EAAANRAAABUQAAAVEAAAFRAAACXgAAAFEAAANRAAADUQAAAVEAAAFRAAADUQAAAVEAAANRAAACUQAAA1EAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAUQAAAlEAAABeAAAAUQAAA1EAAAJRAAAAUQAAA1EAAABRAAAAUQAAAlEAAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAFeAAAAXgAAAEQAAAJEAAAARAAAAFEAAAFRAAAAUQAAAl4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAAAWAAADTgAAAF4AAABEAAAARAAAA0QAAANRAAADUQAAAFEAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAFgAAAU4AAABeAAAAUQAAAlEAAAFRAAACUQAAAFEAAAJRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAABYAAANOAAAAXgAAAFEAAAFRAAAAUQAAAFEAAAFRAAAAUQAAAl4AAABeAAAAXgAAAAAAAABdAAAAXgAAAF4AAAAWAAABXgAAAF4AAABeAAAAUQAAAF4AAABeAAAAUQAAAVEAAAJeAAAATgAAAF4AAABeAAAAXgAAAA== - 5,-2: - ind: 5,-2 - tiles: XgAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAAAAAAAAAAAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAAAAAAAAAAAA6AAAAOgAAADoAAABeAAAATgAAAF4AAABOAAAAXgAAAE4AAABeAAAATgAAAE4AAABOAAAATgAAAAAAAAAAAAAAOgAAADoAAAA6AAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAARAAAAV4AAABOAAAAXgAAAE4AAABeAAAATgAAAF4AAABOAAAAXgAAAE4AAABeAAAAAAAAAAAAAABEAAACXgAAAEQAAAFeAAAATgAAAF4AAABOAAAAXgAAAE4AAABeAAAATgAAAE4AAABOAAAATgAAAAAAAAAAAAAARAAAAEQAAABEAAACXgAAAE4AAABeAAAATgAAAF4AAABOAAAAXgAAAE4AAABOAAAATgAAAE4AAAAAAAAAAAAAAFEAAANRAAADUQAAAF4AAABOAAAAXgAAAE4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAAAAAAAAAAABRAAACUQAAAlEAAAJeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,-3: - ind: 4,-3 - tiles: XgAAAFEAAAFRAAACUQAAA1EAAAFeAAAARAAAAkQAAAFEAAABRAAAA0QAAANEAAAARAAAAEQAAABEAAAAUQAAAl4AAABRAAACUQAAAVEAAABRAAAAXgAAAEQAAANEAAABRAAAA0QAAABEAAACRAAAAEQAAABEAAABRAAAA1EAAABeAAAAUQAAAVEAAAFRAAADUQAAAVEAAAJRAAADUQAAA1EAAABRAAACUQAAAVEAAABRAAAAUQAAAFEAAANRAAABXgAAAFEAAANRAAABUQAAA1EAAABeAAAAUQAAA1EAAANRAAAAUQAAAlEAAAFRAAAAUQAAAlEAAABRAAABUQAAA14AAABRAAABUQAAAVEAAAJRAAABXgAAAFEAAABRAAABUQAAAFEAAABRAAADUQAAAVEAAABRAAAAUQAAAVEAAABeAAAAUQAAAFEAAANRAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAABUQAAA1EAAABeAAAAXgAAAFEAAAJRAAAAUQAAA14AAABdAAAAOgAAADoAAAA6AAAAXgAAADoAAABeAAAAUQAAAFEAAAJEAAADXgAAAFEAAAJRAAADUQAAAlEAAAJeAAAAXQAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAFEAAABRAAADRAAAAl4AAABeAAAAUQAAAFEAAAFRAAACXgAAAF0AAAA6AAAAOgAAADoAAABeAAAAOgAAAF4AAABRAAACUQAAAEQAAABeAAAAXgAAAFEAAANRAAACUQAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAFEAAANRAAABXgAAAF4AAABRAAADUQAAA1EAAAJeAAAAUQAAAlEAAAJRAAAAUQAAAVEAAAFRAAADXgAAAEQAAANEAAADRAAAAF4AAABeAAAAUQAAA1EAAABRAAABUQAAAlEAAANRAAAAUQAAAFEAAANRAAABUQAAAl4AAABEAAADRAAAAUQAAAJEAAADUQAAAVEAAAFRAAAAUQAAA14AAABRAAACUQAAAFEAAAFRAAAAUQAAA1EAAANeAAAARAAAAEQAAAJEAAADXgAAAF4AAABRAAACUQAAAFEAAABeAAAAUQAAA1EAAAFRAAABUQAAA1EAAAJRAAABXgAAAEQAAAFEAAADRAAAA14AAABeAAAAUQAAAFEAAANRAAADXgAAAFEAAABRAAABUQAAAlEAAAJRAAAAUQAAAF4AAABEAAACRAAAAkQAAABeAAAAXgAAAFEAAAFRAAABUQAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAACXgAAAA== - 3,-3: - ind: 3,-3 - tiles: TgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABEAAABRAAAA0QAAABEAAABRAAAAkQAAANEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAFEAAABRAAADUQAAA1EAAABRAAACUQAAAFEAAAJRAAABUQAAAVEAAANRAAAAUQAAA14AAABeAAAATgAAAFEAAABEAAACUQAAAkQAAABRAAAARAAAAlEAAAFEAAABUQAAAEQAAABRAAAARAAAA1EAAAFeAAAAXgAAAF4AAABRAAAAUQAAAVEAAANRAAACUQAAAlEAAAJRAAACUQAAAFEAAAJRAAADUQAAAlEAAAFRAAABXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABEAAACXgAAABYAAAMWAAACFgAAAxYAAAEWAAABFgAAAhYAAAFeAAAARAAAAUQAAAJEAAAARAAAAUQAAANeAAAARAAAAl4AAABbAAABWwAAAVsAAABbAAAAWwAAA1sAAABbAAAAXgAAAEQAAANEAAACRAAAAEQAAANEAAADFgAAAEQAAAIWAAADWwAAAVsAAAJbAAADWwAAA1sAAAFbAAACWwAAAl4AAABRAAADUQAAAFEAAAFRAAACUQAAAF4AAABEAAABXgAAAFsAAAJbAAADWwAAAVsAAAJbAAACWwAAA1sAAABeAAAAUQAAA1EAAANRAAADUQAAAlEAAABeAAAARAAAAV4AAABbAAADWwAAAlsAAABbAAABWwAAAFsAAABbAAABXgAAAEQAAAJEAAAARAAAAUQAAANEAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 4,-4: - ind: 4,-4 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAATgAAAE4AAABOAAAAXgAAAAAAAAAAAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAAAvAAAARwAAAF4AAAAWAAABFgAAARYAAANeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAC8AAABeAAAAFgAAAxYAAAEWAAACXgAAAE4AAABeAAAATgAAAE4AAABeAAAATgAAAF4AAABeAAAARwAAAC8AAAAvAAAAXgAAABYAAAAWAAADFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAAxYAAAIWAAAAFgAAAxYAAAAWAAACFgAAAl4AAABEAAABRAAAA0QAAAFEAAABRAAAAUQAAABeAAAAFgAAARYAAAMWAAADFgAAABYAAAAWAAACFgAAAxYAAANeAAAARAAAA0QAAABEAAADRAAAA0QAAAFEAAADFgAAAxYAAAIWAAADFgAAAhYAAAAWAAACFgAAABYAAAEWAAACXgAAAEQAAAJEAAADRAAAAkQAAANEAAADRAAAABYAAAMWAAABFgAAAhYAAAFPAAAATwAAAE8AAAAWAAABFgAAA14AAABEAAAARAAAAUQAAAFEAAAARAAAAUQAAAEWAAAAFgAAABYAAAMWAAADTwAAAE8AAABPAAAAFgAAAxYAAANeAAAAXgAAAEQAAABeAAAAXgAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAXgAAAFEAAANRAAABUQAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 5,-3: - ind: 5,-3 - tiles: UQAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAA14AAABeAAAAXgAAAE4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFEAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAAUQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE4AAABeAAAATgAAAF4AAABEAAACXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAADRAAAAkQAAABEAAACXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAF4AAABOAAAAXgAAAEQAAANEAAADRAAAAV4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAA== - 5,-4: - ind: 5,-4 - tiles: XgAAAF4AAABOAAAAXgAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAAXgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAE4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAFeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAFgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAJeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,-4: - ind: 3,-4 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAADRAAAAkQAAABEAAACRAAAAUQAAAJEAAADRAAAAl4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAA0QAAABEAAACRAAAAkQAAANEAAADRAAAAkQAAANeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAADRAAAAUQAAABEAAAARAAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 4,-1: - ind: 4,-1 - tiles: RAAAAkQAAAFEAAADRAAAAkQAAANEAAAARAAAAUQAAANeAAAAXgAAAF4AAABeAAAARAAAAUQAAANEAAADRAAAA0QAAAFEAAACRAAAA0QAAABEAAAARAAAAUQAAAFEAAACRAAAAkQAAAJEAAADRAAAAEQAAAFEAAADRAAAAEQAAAFEAAAARAAAAEQAAAJEAAADRAAAAUQAAAFEAAACRAAAAkQAAAJEAAABRAAAAUQAAABEAAADRAAAAUQAAAJEAAABRAAAAEQAAABEAAAARAAAAUQAAABEAAABRAAAAkQAAAJEAAABRAAAA0QAAABEAAABRAAAA0QAAANEAAABRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAACRAAAAUQAAABeAAAAFgAAAhYAAAIWAAACFgAAAhYAAAMWAAADFgAAARYAAAIWAAACXgAAAEQAAAJEAAAARAAAAEQAAAFEAAADFgAAARYAAAIWAAABFgAAAxYAAAMWAAACFgAAAhYAAAEWAAACFgAAARYAAAFEAAADRAAAA0QAAAJEAAADXgAAABYAAAMWAAAAFgAAAxYAAAMWAAADFgAAAxYAAAIWAAADFgAAAxYAAAAWAAACRAAAAkQAAAJEAAABRAAAA14AAABeAAAAFgAAAEQAAABEAAADFgAAABYAAAEWAAACRAAAAUQAAAAWAAAAXgAAAEQAAANEAAACRAAAAkQAAABeAAAAXgAAABYAAAFEAAAARAAAAxYAAAAWAAABFgAAAUQAAAFEAAABFgAAAV4AAABEAAADRAAAAUQAAABEAAABRAAAAF4AAAAWAAABRAAAA0QAAAEWAAAAFgAAABYAAANEAAACRAAAARYAAAFeAAAARAAAAUQAAAJEAAACRAAAAkQAAAJeAAAAFgAAAUQAAAJEAAADFgAAAxYAAAAWAAAARAAAA0QAAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAAXgAAABYAAANEAAABRAAAAhYAAAMWAAAAFgAAAEQAAABEAAABFgAAARYAAABeAAAARAAAAEQAAABEAAACRAAAA14AAAAWAAACRAAAAUQAAAIWAAABFgAAAxYAAABEAAAARAAAAV4AAABeAAAAXgAAAEQAAAJEAAABRAAAAUQAAAJeAAAAXgAAABYAAABeAAAAFgAAAxYAAAAWAAABFgAAAhYAAAMWAAAAFgAAAV4AAABEAAACRAAAA0QAAABEAAADMQAAADEAAAAxAAAAXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 5,-1: - ind: 5,-1 - tiles: XgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAAUQAAAJeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAANEAAACXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAV4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAAkQAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAAJEAAADXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAADRAAAA14AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAkQAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAANEAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAA14AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAANEAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAl4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAUQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,-5: - ind: 4,-5 - tiles: AAAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAATgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAATgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAA== - 5,-5: - ind: 5,-5 - tiles: AAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAE4AAABeAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,-5: - ind: 3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAABAAAAQQAAAAEAAAABAAAAAQAAAAEAAACXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAQAAAAEAAACBAAAAgQAAAIEAAACBAAAAgAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAEAAACBAAAAAQAAAIEAAACBAAAAQAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAE4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAATgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAATgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAA== - 2,-5: - ind: 2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAMQAAADEAAAAxAAAAMQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAMQAAADEAAABeAAAAMQAAADEAAAAxAAAAMQAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAAF4AAAAxAAAAMQAAADEAAAAxAAAAXgAAADEAAABeAAAAMQAAAAAAAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABOAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAWwAAAF4AAABeAAAAXgAAAA== - 1,-5: - ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAFgAAABYAAAEWAAADXgAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAWAAADFgAAABYAAANeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAFgAAAxYAAAAWAAADXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAAAAAAF0AAABdAAAAXgAAADoAAAA6AAAAOgAAAF4AAAA6AAAAOgAAADoAAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAAA6AAAAOgAAADoAAABeAAAAOgAAADoAAAA6AAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAOgAAADoAAAA6AAAAXgAAADoAAAA6AAAAOgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAA== - 1,-4: - ind: 1,-4 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAA6AAAAOgAAADoAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAOgAAADoAAAA6AAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAOgAAADoAAAA6AAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAA6AAAAOgAAADoAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAXgAAAA== - -1,-5: - ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAIWAAADFgAAAxYAAAEWAAAAFgAAABYAAAEWAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAACFgAAAhYAAAAWAAACFgAAAhYAAAAWAAAAFgAAAl0AAABeAAAAXgAAAF4AAABeAAAAFgAAAV4AAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABXgAAABYAAAFeAAAAFgAAATMAAABeAAAAFgAAAxYAAAMWAAABXgAAAF4AAABeAAAARAAAAEQAAAJEAAACRAAAAl4AAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAA0QAAAFeAAAAFgAAA14AAABeAAAAFgAAA14AAAAWAAACFgAAARYAAANeAAAAFgAAAhYAAANEAAADRAAAAkQAAABEAAAAXgAAABYAAAFeAAAAXgAAABYAAAFeAAAAFgAAARYAAAAWAAADXgAAABYAAAEWAAABRAAAAEQAAABEAAAARAAAA14AAABeAAAAMwAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAAF4AAAAWAAAAFgAAA0QAAABEAAAARAAAAUQAAABEAAABRAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAAFEAAABRAAAAkQAAANEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAADMAAABeAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAXgAAAEQAAAJEAAABRAAAAkQAAAFEAAAARAAAAEQAAANEAAAARAAAA0QAAANeAAAAXgAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA6AAAAOgAAADoAAABeAAAARAAAA0QAAABEAAAARAAAAEQAAABEAAACXgAAAEQAAAFEAAABRAAAAA== - -2,-5: - ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAMAAAADAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAwAAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABOAAAAXgAAAF4AAABEAAABXgAAAF4AAAAMAAACXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAEQAAANEAAAARAAAAkQAAABEAAABXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABEAAAARAAAAkQAAAJEAAADRAAAAl4AAABEAAACRAAAAF4AAABEAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAARAAAA0QAAAFEAAAARAAAA0QAAAIWAAACRAAAA0QAAAFEAAADRAAAAkQAAAJeAAAAXgAAAAAAAAAAAAAAXgAAABYAAAMWAAADFgAAARYAAAMWAAAAXgAAAEQAAABEAAACXgAAAEQAAAFEAAACXgAAAF4AAAAAAAAAAAAAAF4AAAAWAAABFgAAABYAAAEWAAADFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAEWAAACFgAAAxYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAAAFgAAAhYAAAMWAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAARYAAAEWAAADFgAAA14AAAAAAAAAXgAAAE4AAABeAAAAXgAAAA== - -3,-4: - ind: -3,-4 - tiles: AAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAE4AAABOAAAATgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF0AAABeAAAAXQAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXQAAAF4AAABdAAAAXgAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAAAAAABeAAAAXQAAAF4AAABdAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAADMAAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAzAAAAMwAAADMAAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAOgAAADoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -3,-5: - ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAMAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAAwAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXQAAAF4AAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF0AAABeAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABOAAAAAAAAAF4AAABdAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAATgAAAA== - 0,-5: - ind: 0,-5 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAWAAACFgAAABYAAAAWAAAAFgAAABYAAAEWAAABFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAFgAAAhYAAAMWAAACFgAAABYAAAEWAAADFgAAAxYAAAIWAAABFgAAAl4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAxYAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAABYAAAIWAAAAFgAAAl4AAAAWAAABFgAAARYAAAIWAAADXgAAABYAAAMWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAADMAAAAWAAAAFgAAAhYAAAEWAAACFgAAAxYAAABeAAAAFgAAARYAAAMWAAABXgAAABYAAAFeAAAAFgAAAxYAAAEzAAAAFgAAAV4AAABeAAAAXgAAAF4AAAAWAAABXgAAABYAAAAWAAABFgAAA14AAAAWAAACXgAAABYAAAMWAAAAXgAAABYAAAMWAAABFgAAABYAAAIWAAAAFgAAAV4AAAAWAAAAFgAAAhYAAAJeAAAAXgAAAF4AAAAzAAAAXgAAAF4AAAAWAAABFgAAARYAAAEWAAABFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAzAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAADXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACRAAAA0QAAAFEAAAARAAAA0QAAANEAAADRAAAAkQAAAFeAAAAXgAAADoAAAA6AAAAOgAAAF4AAABeAAAARAAAAkQAAABEAAABRAAAAkQAAAJEAAACRAAAAUQAAAFEAAADXgAAAF4AAAA6AAAAOgAAADoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABXgAAAEQAAANEAAABRAAAA14AAABeAAAAOgAAADoAAAA6AAAAXgAAAA== - 0,-6: - ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,-6: - ind: -1,-6 - tiles: AAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - 1,-6: - ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAA8AAABeAAAAFgAAAF4AAAAPAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFgAAAhYAAAAWAAABXgAAABYAAAIWAAAAFgAAAF4AAAAWAAABXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAABYAAAMWAAADFgAAAV4AAAAWAAABFgAAAxYAAAJeAAAAFgAAAl0AAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAWAAAAFgAAARYAAAEWAAACFgAAABYAAAIWAAAAFgAAABYAAAMAAAAAXQAAAF0AAAAAAAAAAAAAAF4AAABeAAAAFgAAAxYAAAIWAAAAXgAAABYAAAAWAAADFgAAAF4AAAAWAAACAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAxYAAAJeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAIWAAAAFgAAAhYAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAABYAAAMxAAAAMQAAADEAAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAAAWAAADMQAAADEAAAAxAAAAFgAAABYAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAFgAAADEAAAAxAAAAMQAAABYAAAEWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAAAWAAACFgAAAxYAAAJeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAA== - 2,-6: - ind: 2,-6 - tiles: XgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABFgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAhYAAAFeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAEWAAADXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAA14AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAA14AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAJeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-7: - ind: 2,-7 - tiles: XgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-8: - ind: 2,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-7: - ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAADwAAABYAAAFeAAAADwAAAF4AAAAWAAACDwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAA8AAAAWAAAADwAAAA8AAAAPAAAAFgAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAPAAAAFgAAAxYAAAAWAAADFgAAABYAAAEPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAADwAAAA8AAAAWAAAAFgAAABYAAAIPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAIWAAADFgAAARYAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAABFgAAARYAAAEWAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAADwAAAF4AAAAWAAADXgAAAA8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAA8AAABeAAAAFgAAAl4AAAAPAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAPAAAAXgAAABYAAANeAAAADwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAADwAAAF4AAAAWAAAAXgAAAA8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAA8AAABeAAAAFgAAA14AAAAPAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAPAAAAXgAAABYAAAJeAAAADwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAADwAAAF4AAAAWAAABXgAAAA8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAA8AAABeAAAAFgAAAF4AAAAPAAAAXgAAAA== - 1,-8: - ind: 1,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAADwAAABYAAAMWAAAAFgAAAhYAAAIWAAABDwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAA8AAAAWAAAADwAAAA8AAAAPAAAAFgAAAw8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAAAPAAAAFgAAA14AAAAPAAAAXgAAABYAAAEPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAAAPAAAAFgAAAxYAAAFeAAAAXgAAAF4AAAAWAAAAFgAAAQ== - -2,-6: - ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABdAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXQAAAAAAAAAAAAAAAAAAAA== - -4,-4: - ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF0AAABeAAAAXQAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,-5: - ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXQAAAF4AAABdAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAA== - -4,-3: - ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,2: - ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,2: - ind: -3,2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,3: - ind: -1,3 - tiles: WwAAA1sAAANbAAADWwAAAVsAAANEAAAARAAAAkQAAAFEAAABRAAAAUQAAABEAAABXgAAACgAAAAWAAAAKAAAAFsAAAJbAAABWwAAAFsAAAFbAAACXgAAAEQAAANEAAADRAAAA0QAAAFEAAAARAAAA14AAABEAAACRAAAAkQAAAFbAAACWwAAA1sAAANbAAACWwAAAV4AAABEAAADRAAAAUQAAANEAAABRAAAAEQAAAFEAAACRAAAAEQAAAFEAAADWwAAAlsAAANbAAADWwAAAlsAAAFeAAAAMAAAADAAAABEAAACRAAAAUQAAAJEAAAAXgAAAEQAAABEAAADRAAAA1sAAABbAAACWwAAAlsAAAFbAAACXgAAADAAAAAwAAAARAAAA0QAAAFEAAACRAAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAAxYAAAMWAAACFgAAAV4AAAAwAAAAMAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,3: - ind: 1,3 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,2: - ind: 2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,2: - ind: 3,2 - tiles: AAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,3: - ind: -2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAADEAAAAxAAAAXgAAADEAAAAxAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,-6: - ind: 5,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,-6: - ind: 4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAAAAAAAAAAABdAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAA== - -1,-7: - ind: -1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAA== - 0,-7: - ind: 0,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAA== - 3,-6: - ind: 3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAQAAAEEAAAABAAAAgQAAAEEAAAAAAAAAF0AAAAAAAAAXQAAAA== - -6,-1: - ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - id: Boxstation - type: BecomesStation - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 1479: -24,-18 - 1480: -24,-16 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 1639: 33,-35 - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 2073: 73,-55 - - node: - color: '#FFFFFFFF' - id: ArrowsGreyscale - decals: - 597: -25,-66 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 471: 10,37 - 472: 10,38 - 473: 10,39 - 474: 10,40 - 475: 10,41 - 476: 6,41 - 477: 8,37 - 478: 8,38 - 479: 8,39 - 480: 8,40 - 563: -39,1 - 671: -23,-24 - 672: -38,-23 - 673: -37,-23 - 674: -36,-23 - 675: -35,-23 - 676: -38,-25 - 677: -37,-25 - 678: -36,-25 - 679: -35,-25 - 680: -35,-27 - 681: -36,-27 - 682: -37,-27 - 683: -38,-27 - 744: -14,-24 - 745: -14,-25 - 746: -14,-26 - 747: -14,-27 - 748: -14,-28 - 929: 76,-37 - 930: 77,-37 - 931: 77,-36 - 932: 76,-36 - 933: 76,-35 - 934: 77,-35 - 935: 77,-34 - 936: 76,-34 - 937: 76,-33 - 938: 77,-33 - 950: 61,-21 - 951: 61,-23 - 1200: 6,-42 - 1201: 5,-42 - 1202: 4,-42 - 1203: 3,-42 - 1204: 3,-41 - 1205: 4,-41 - 1206: 5,-41 - 1207: 6,-41 - 1331: 81,-6 - 1332: 81,-4 - 1333: 81,-12 - 1334: 81,-14 - 1427: 63,-56 - 1428: 62,-56 - 1429: 61,-56 - 1430: 60,-56 - 1467: 7,-42 - 1468: 7,-41 - 1478: -23,-16 - 1483: -25,-18 - 1484: -25,-16 - 1592: 59,-38 - 1593: 59,-37 - 1594: 60,-37 - 1595: 60,-38 - 1596: 61,-38 - 1597: 61,-37 - 1598: 62,-37 - 1599: 62,-38 - 1640: 33,-37 - 1642: 34,-37 - 2068: 72,-58 - 2069: 72,-57 - 2070: 73,-58 - 2071: 74,-58 - 2072: 74,-57 - 2168: 45,-29 - 2169: 45,-27 - 2170: 43,-27 - 2963: -73,8 - 2964: -74,8 - 2965: -75,8 - 2966: -76,8 - 2967: -73,-4 - 2968: -74,-4 - 2969: -75,-4 - 2970: -76,-4 - - node: - color: '#FFFFFFFF' - id: BotGreyscale - decals: - 594: -26,-69 - 595: -26,-68 - 596: -26,-67 - 1398: -1,-22 - 1399: -2,-21 - 1400: -1,-20 - 1401: 0,-21 - 1418: -2,-14 - 1419: 0,-14 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 2317: 55,-32 - - node: - color: '#FFFFFFFF' - id: BotLeftGreyscale - decals: - 592: -24,-67 - 1396: 0,-20 - 1397: -2,-22 - - node: - color: '#DE3A3A96' - id: BotRight - decals: - 1986: -9,41 - 1987: -9,40 - 1988: -9,39 - - node: - color: '#FFFFFFFF' - id: BotRightGreyscale - decals: - 593: -24,-69 - 1394: 0,-22 - 1395: -2,-20 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkBox - decals: - 2700: -3,-17 - 2701: -1,-17 - 2702: 1,-17 - - node: - color: '#D381C996' - id: BrickTileSteelCornerNe - decals: - 2048: 74,-51 - - node: - color: '#D381C996' - id: BrickTileSteelCornerNw - decals: - 2045: 71,-51 - 2054: 78,-51 - - node: - color: '#D381C996' - id: BrickTileSteelCornerSe - decals: - 2308: 46,-26 - - node: - color: '#D381C996' - id: BrickTileSteelCornerSw - decals: - 2307: 44,-26 - - node: - color: '#52B4E996' - id: BrickTileSteelCornerSw - decals: - 1633: 31,-37 - - node: - color: '#D381C996' - id: BrickTileSteelInnerNe - decals: - 2057: 74,-53 - - node: - color: '#D381C996' - id: BrickTileSteelInnerNw - decals: - 2058: 78,-53 - - node: - color: '#52B4E996' - id: BrickTileSteelInnerSw - decals: - 1637: 31,-36 - - node: - color: '#D381C996' - id: BrickTileSteelLineE - decals: - 2049: 74,-52 - - node: - color: '#D381C996' - id: BrickTileSteelLineN - decals: - 2046: 72,-51 - 2047: 73,-51 - 2050: 75,-53 - 2051: 76,-53 - 2052: 77,-53 - 2055: 79,-51 - 2056: 80,-51 - - node: - color: '#52B4E996' - id: BrickTileSteelLineN - decals: - 1625: 32,-33 - 1626: 31,-33 - 1627: 30,-33 - 1628: 28,-33 - 1629: 29,-33 - 1630: 33,-33 - - node: - color: '#DE3A3A96' - id: BrickTileSteelLineN - decals: - 1946: -16,45 - 1947: -15,45 - 1948: -13,45 - 1949: -12,45 - 1950: -11,45 - 1951: -10,45 - 1952: -9,45 - 1953: -7,45 - 1954: -6,45 - 1955: -5,45 - 1956: -17,45 - 1957: -19,45 - 1958: -20,45 - 1959: -22,45 - 1960: -23,45 - 1961: -25,45 - - node: - color: '#D381C996' - id: BrickTileSteelLineS - decals: - 2059: 72,-55 - 2060: 73,-55 - 2061: 74,-55 - 2062: 75,-55 - 2063: 76,-55 - 2064: 77,-55 - 2065: 78,-55 - 2066: 79,-55 - 2067: 80,-55 - 2306: 45,-26 - - node: - color: '#52B4E996' - id: BrickTileSteelLineS - decals: - 1631: 33,-37 - 1632: 32,-37 - 1634: 30,-36 - 1635: 29,-36 - 1636: 28,-36 - 1641: 34,-37 - - node: - color: '#DE3A3A96' - id: BrickTileSteelLineS - decals: - 1937: -10,43 - 1938: -9,43 - 1939: -8,43 - 1940: -7,43 - 1941: -5,43 - 1942: -12,43 - 1943: -13,43 - 1944: -14,43 - 1945: -16,43 - 1962: -25,43 - 1963: -23,43 - 1964: -21,43 - 1965: -20,43 - 1966: -18,43 - 1967: -17,43 - - node: - color: '#D381C996' - id: BrickTileSteelLineW - decals: - 2043: 71,-53 - 2044: 71,-52 - 2053: 78,-52 - - node: - color: '#D4D4D428' - id: BrickTileWhiteBox - decals: - 2935: -16,-56 - 2936: -16,-52 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerNe - decals: - 2079: -4,9 - 2911: -12,-50 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerNe - decals: - 1850: 48,-4 - - node: - color: '#D4D4D496' - id: BrickTileWhiteCornerNe - decals: - 2919: -12,-57 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNe - decals: - 2172: 41,-27 - 2303: 54,-24 - 2905: -15,-50 - - node: - color: '#FFEBAE96' - id: BrickTileWhiteCornerNe - decals: - 2233: 19,-21 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNe - decals: - 2037: 70,-51 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNe - decals: - 1870: -7,-12 - 2765: -10,-14 - 2931: -6,-51 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNe - decals: - 2915: -15,-57 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNw - decals: - 1864: -14,-12 - 2764: -11,-14 - 2930: -8,-51 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerNw - decals: - 1845: 43,-4 - - node: - color: '#D4D4D496' - id: BrickTileWhiteCornerNw - decals: - 2918: -13,-57 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerNw - decals: - 2078: -7,9 - 2910: -13,-50 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNw - decals: - 2312: 44,-23 - 2914: -16,-57 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNw - decals: - 2171: 38,-27 - 2302: 52,-24 - 2904: -16,-50 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSe - decals: - 2906: -15,-51 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerSe - decals: - 2916: -12,-58 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSe - decals: - 2926: -6,-58 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerSe - decals: - 2909: -12,-51 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSe - decals: - 2173: 41,-30 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSe - decals: - 1877: -7,-20 - 2766: -10,-16 - 2913: -15,-58 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSw - decals: - 2081: -7,6 - 2924: -8,-58 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerSw - decals: - 2917: -13,-58 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerSw - decals: - 2908: -13,-51 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSw - decals: - 2907: -16,-51 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSw - decals: - 2174: 38,-30 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSw - decals: - 1878: -9,-20 - 2767: -11,-16 - 2912: -16,-58 - - node: - color: '#EFB34196' - id: BrickTileWhiteInnerNe - decals: - 2086: -4,6 - - node: - color: '#FFEBAE96' - id: BrickTileWhiteInnerNe - decals: - 2232: 19,-22 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSe - decals: - 2102: -10,8 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSw - decals: - 1880: -9,-18 - 2101: -14,8 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineE - decals: - 1851: 48,-5 - 1852: 48,-6 - 1853: 48,-7 - 1854: 48,-8 - 1855: 48,-9 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineE - decals: - 2084: -4,8 - 2085: -4,7 - 2927: -6,-56 - 2928: -6,-55 - 2929: -6,-54 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 2114: -11,4 - 2309: 46,-25 - 2310: 46,-24 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineE - decals: - 2301: 54,-25 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineE - decals: - 1871: -7,-13 - 1872: -7,-14 - 1873: -7,-15 - 1874: -7,-16 - 1875: -7,-18 - 1876: -7,-19 - 2103: -10,7 - 2104: -10,6 - 2109: -11,2 - 2110: -11,3 - 2768: -10,-15 - 2933: -6,-52 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 2034: 70,-54 - 2035: 70,-53 - 2036: 70,-52 - - node: - color: '#A4610696' - id: BrickTileWhiteLineE - decals: - 2113: -11,1 - - node: - color: '#D381C996' - id: BrickTileWhiteLineN - decals: - 1566: 64,-27 - 1567: 60,-27 - 1568: 59,-27 - 1569: 58,-27 - 1570: 57,-27 - 1571: 56,-27 - 1572: 55,-27 - 1573: 54,-27 - 1580: 74,-26 - 1581: 73,-26 - 1582: 72,-26 - 1583: 71,-26 - 1584: 70,-26 - 1585: 69,-26 - 1586: 70,-44 - 1587: 71,-44 - 1588: 72,-44 - 1589: 73,-44 - 1590: 74,-44 - 1591: 75,-44 - 2038: 69,-51 - 2039: 68,-51 - 2040: 67,-51 - 2041: 65,-51 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 1865: -13,-12 - 1866: -12,-12 - 1867: -11,-12 - 1868: -10,-12 - 1869: -9,-12 - 2092: -9,8 - 2093: -10,8 - 2094: -11,8 - 2095: -12,8 - 2096: -14,8 - 2097: -13,8 - 2098: -15,8 - 2932: -7,-51 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineN - decals: - 1846: 44,-4 - 1847: 45,-4 - 1848: 46,-4 - 1849: 47,-4 - 1856: 46,-10 - 1857: 45,-10 - - node: - color: '#FFEBAE96' - id: BrickTileWhiteLineN - decals: - 2229: 22,-22 - 2230: 21,-22 - 2231: 20,-22 - 2234: 18,-21 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineN - decals: - 2082: -6,9 - 2083: -5,9 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 2299: 53,-27 - 2304: 53,-24 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 1914: -10,36 - 1915: -9,36 - 1916: -12,36 - 1917: -13,36 - 1918: -14,36 - 1919: -15,36 - 1920: -16,36 - 1921: -8,36 - 1922: -7,36 - 1923: -5,36 - 2313: 46,-23 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineS - decals: - 1881: -10,-18 - 1882: -11,-18 - 1883: -12,-18 - 1884: -13,-18 - 2099: -9,8 - 2100: -15,8 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineS - decals: - 1928: -8,34 - 1929: -9,34 - 1930: -10,34 - 1931: -11,34 - 1932: -12,34 - 1933: -13,34 - 1934: -14,34 - 1935: -16,34 - 2726: -4,26 - 2727: 0,26 - 2728: -8,26 - 2729: -12,26 - 2730: -13,26 - 2731: 1,26 - 2732: 2,26 - 2733: 3,26 - 2734: 5,26 - 2735: 10,26 - 2736: 8,26 - 2737: 7,26 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 1556: 64,-28 - 1557: 63,-28 - 1558: 62,-28 - 1559: 60,-28 - 1560: 59,-28 - 1561: 58,-28 - 1562: 56,-28 - 1563: 57,-28 - 1564: 54,-28 - 1565: 53,-28 - 1575: 57,-25 - 1576: 58,-25 - 1577: 59,-25 - 1578: 60,-25 - 1579: 56,-25 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 2175: 40,-30 - 2176: 39,-30 - 2717: -11,26 - 2718: -10,26 - 2719: -9,26 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineS - decals: - 2720: -7,26 - 2721: -6,26 - 2722: -5,26 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 2080: -5,6 - 2723: -3,26 - 2724: -2,26 - 2725: -1,26 - 2925: -7,-58 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineW - decals: - 1858: -14,-18 - 1859: -14,-17 - 1860: -14,-16 - 1861: -14,-15 - 1862: -14,-14 - 1863: -14,-13 - 1879: -9,-19 - 2105: -14,6 - 2106: -14,7 - 2107: -13,2 - 2108: -13,3 - 2458: -19,-14 - 2459: -19,-13 - 2460: -19,-12 - 2461: -19,-11 - 2462: -19,-10 - 2786: 14,-27 - 2787: 14,-25 - 2934: -8,-52 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 2311: 44,-25 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineW - decals: - 1648: 3,-46 - 1649: 3,-45 - 1650: 3,-44 - 2077: -7,7 - 2921: -8,-55 - 2922: -8,-56 - 2923: -8,-57 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 1840: 43,-9 - 1841: 43,-8 - 1842: 43,-7 - 1843: 43,-6 - 1844: 43,-5 - - node: - color: '#D381C996' - id: BrickTileWhiteLineW - decals: - 2112: -13,1 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineW - decals: - 2111: -13,4 - 2177: 38,-29 - 2178: 38,-28 - 2305: 52,-25 - - node: - color: '#FFFFFFFF' - id: Busha3 - decals: - 2707: 23.265696,-6.086069 - - node: - color: '#FFFFFFFF' - id: Bushb1 - decals: - 755: -14.963916,-26.286882 - - node: - color: '#FFFFFFFF' - id: Bushc1 - decals: - 2706: 23.78132,-6.836069 - - node: - color: '#FFFFFFFF' - id: Bushe3 - decals: - 1904: 6.4905357,-24.138845 - - node: - color: '#FFFFFFFF' - id: Bushe4 - decals: - 763: -15.010791,-24.240007 - 1905: 8.037411,-24.076345 - - node: - color: '#FFFFFFFF' - id: Bushg2 - decals: - 762: -14.963916,-26.974382 - - node: - color: '#FFFFFFFF' - id: Bushh3 - decals: - 761: -15.026416,-24.552507 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 1524: 44.560696,-52.296127 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 1525: 47.01382,-53.968002 - - node: - color: '#FFFFFFFF' - id: Bushj3 - decals: - 1523: 45.623196,-52.499252 - 1906: 6.9749107,-24.013845 - - node: - color: '#FFFFFFFF' - id: Bushl4 - decals: - 1902: 7.9749107,-24.107595 - - node: - color: '#FFFFFFFF' - id: Bushm1 - decals: - 1903: 6.1780357,-24.02947 - - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 766: -14.995166,-24.818132 - - node: - color: '#FFFFFFFF' - id: Caution - decals: - 2298: 66,-22 - - node: - color: '#DE3A3A96' - id: CheckerNESW - decals: - 1657: 1,-50 - 1658: 1,-49 - - node: - color: '#D381C996' - id: CheckerNESW - decals: - 459: 68,-37 - 2126: 49,-28 - 2136: 44,-30 - 2137: 45,-30 - 2138: 46,-30 - 2139: 46,-29 - 2140: 46,-28 - 2141: 45,-28 - 2142: 44,-28 - 2143: 44,-29 - 2144: 45,-29 - 2321: 61,-32 - 2322: 61,-31 - 2323: 61,-30 - 2324: 62,-30 - 2325: 63,-30 - 2326: 63,-31 - 2327: 62,-31 - 2328: 62,-32 - 2329: 63,-32 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 200: 34,-46 - 201: 34,-47 - 202: 35,-46 - 203: 35,-47 - 204: 36,-46 - 205: 36,-47 - 206: 37,-46 - 207: 37,-47 - 208: 38,-47 - 209: 34,-49 - 210: 34,-50 - 211: 35,-49 - 212: 35,-50 - 213: 36,-49 - 214: 36,-50 - 215: 37,-49 - 216: 37,-50 - 217: 38,-50 - 218: 43,-58 - 219: 47,-58 - 1514: 19,-36 - 1515: 21,-34 - 1659: 1,-48 - 2183: 43,-48 - 2184: 44,-48 - 2185: 45,-48 - 2186: 46,-48 - 2187: 46,-47 - 2188: 45,-47 - 2189: 44,-47 - 2190: 43,-47 - 2191: 43,-46 - 2192: 44,-46 - 2193: 45,-46 - 2194: 46,-46 - 2195: 46,-45 - 2196: 45,-45 - 2197: 44,-45 - 2198: 43,-45 - 2199: 42,-46 - - node: - color: '#9D9D97FF' - id: CheckerNESW - decals: - 896: 69,-37 - 897: 69,-38 - 898: 70,-38 - 899: 70,-37 - 900: 71,-38 - 901: 71,-37 - 902: 72,-37 - 903: 72,-38 - 904: 73,-38 - 905: 73,-37 - 906: 74,-38 - 907: 74,-37 - 908: 71,-36 - 909: 70,-36 - 910: 69,-36 - 911: 69,-35 - 912: 70,-35 - 913: 71,-35 - 914: 71,-34 - 915: 70,-34 - 916: 69,-34 - - node: - color: '#EFB34196' - id: CheckerNESW - decals: - 348: 1,-60 - 349: 2,-60 - 350: 3,-60 - 351: 4,-60 - 352: 4,-61 - 353: 3,-61 - 354: 2,-61 - 355: 1,-62 - 356: 2,-62 - 357: 3,-62 - 358: 4,-62 - 359: 4,-63 - 360: 3,-63 - 361: 2,-63 - 362: 1,-63 - 363: 1,-64 - 364: 2,-64 - 365: 3,-64 - 366: 4,-64 - 367: 5,-65 - 1257: 1,-42 - - node: - color: '#92929B96' - id: CheckerNESW - decals: - 1792: 34,-10 - 1793: 34,-9 - 1794: 33,-10 - 1795: 33,-9 - 1796: 33,-8 - 1797: 33,-7 - 1798: 33,-6 - 1799: 34,-8 - 1800: 34,-7 - 1801: 34,-6 - 1802: 34,-5 - 1803: 33,-5 - 1804: 35,-5 - 1805: 35,-6 - 1806: 35,-7 - 1807: 35,-8 - 1808: 35,-9 - 1809: 35,-10 - 1810: 36,-10 - 1811: 36,-9 - 1812: 36,-8 - 1813: 36,-7 - 1814: 36,-6 - 1815: 36,-5 - 1816: 37,-5 - 1817: 37,-6 - 1818: 37,-7 - 1819: 37,-8 - 1820: 37,-9 - 1821: 37,-10 - 1822: 38,-10 - 1823: 38,-9 - 1824: 38,-8 - 1825: 38,-7 - 1826: 38,-6 - 1827: 38,-5 - 1828: 39,-5 - 1829: 39,-6 - 1830: 39,-7 - 1831: 39,-8 - 1832: 39,-9 - 1833: 39,-10 - 1834: 40,-10 - 1835: 40,-9 - 1836: 40,-8 - 1837: 40,-7 - 1838: 40,-6 - 1839: 40,-5 - - node: - color: '#D4D4D428' - id: CheckerNESW - decals: - 895: 69,-38 - - node: - color: '#FFEBAE96' - id: CheckerNESW - decals: - 2200: 21,-21 - 2201: 22,-21 - 2202: 22,-20 - 2203: 21,-20 - 2204: 21,-19 - 2205: 22,-19 - 2206: 22,-18 - 2207: 21,-18 - 2208: 21,-17 - 2209: 22,-17 - 2210: 19,-19 - 2211: 19,-18 - 2212: 18,-18 - 2213: 18,-19 - 2214: 18,-17 - 2215: 19,-17 - - node: - color: '#D381C996' - id: CheckerNWSE - decals: - 1540: 82,-25 - 1541: 82,-24 - 1542: 81,-24 - 1543: 81,-25 - 1544: 80,-25 - 1545: 80,-24 - 1546: 79,-24 - 1547: 79,-25 - 1548: 78,-25 - 1549: 78,-24 - 1550: 77,-24 - 1551: 76,-24 - 1552: 76,-25 - 1553: 77,-25 - - node: - color: '#52B4E996' - id: CheckerNWSE - decals: - 1062: 28,-22 - 1063: 28,-21 - 1064: 29,-21 - 1065: 29,-22 - 1066: 30,-22 - 1067: 30,-21 - 1068: 31,-21 - 1069: 31,-22 - 1070: 32,-22 - 1071: 32,-21 - 1512: 21,-36 - 1513: 19,-34 - 2263: 49,-38 - 2264: 49,-37 - 2265: 49,-36 - 2266: 49,-35 - 2267: 49,-34 - - node: - color: '#334E6DC8' - id: CheckerNWSE - decals: - 767: -25,-14 - 768: -25,-13 - 769: -25,-12 - 770: -25,-11 - 771: -25,-10 - 772: -24,-10 - 773: -23,-10 - 774: -22,-10 - 775: -21,-10 - 776: -21,-11 - 777: -21,-12 - 778: -21,-13 - 779: -21,-14 - 780: -22,-14 - 781: -23,-14 - 782: -24,-14 - 783: -24,-13 - 784: -24,-12 - 785: -24,-11 - 786: -23,-11 - 787: -22,-11 - 788: -22,-12 - 789: -22,-13 - 790: -23,-13 - 791: -23,-12 - - node: - color: '#EFB34196' - id: CheckerNWSE - decals: - 1266: 7,-54 - 1267: 7,-53 - 1268: 7,-52 - 1269: 7,-51 - 1270: 8,-51 - 1271: 8,-52 - 1272: 8,-53 - 1273: 8,-54 - 1274: 9,-54 - 1275: 9,-53 - 1276: 9,-52 - 1277: 9,-51 - 1713: 2,-54 - 2087: -7,3 - 2088: -7,4 - 2089: -6,4 - 2090: -6,3 - - node: - color: '#9FED5896' - id: CheckerNWSE - decals: - 598: -52,-5 - 599: -51,-5 - 600: -50,-5 - 997: 43,-61 - 998: 43,-60 - 999: 43,-59 - 1000: 44,-59 - 1001: 44,-60 - 1002: 44,-61 - 1003: 46,-61 - 1004: 46,-60 - 1005: 46,-59 - 1006: 47,-59 - 1007: 47,-60 - 1008: 47,-61 - - node: - color: '#474F52FF' - id: CheckerNWSE - decals: - 1252: 1,-41 - 1254: 1,-44 - - node: - color: '#D4D4D496' - id: CheckerNWSE - decals: - 1654: 1,-50 - 1655: 1,-49 - 1656: 1,-48 - - node: - color: '#A4610696' - id: CheckerNWSE - decals: - 650: -35,-32 - 651: -35,-31 - 652: -35,-30 - 653: -34,-30 - 654: -34,-31 - 655: -34,-32 - 656: -33,-32 - 657: -33,-31 - 658: -33,-30 - 659: -32,-30 - 660: -32,-31 - 661: -32,-32 - 662: -31,-32 - 663: -31,-31 - 664: -31,-30 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 564: -40,1 - 575: 8,-63 - 576: 9,-63 - 577: 7,-63 - 604: 9,-10 - 605: 9,-9 - 606: 9,-8 - 607: -11,-10 - 608: -11,-9 - 609: -11,-8 - 624: -39,-14 - 625: -40,-14 - 626: -40,-13 - 627: -39,-13 - 628: -39,-12 - 629: -40,-12 - 630: -40,-11 - 631: -39,-11 - 670: -23,-23 - 684: -39,-27 - 685: -39,-25 - 686: -39,-23 - 743: -14,-23 - 945: 63,-34 - 946: 62,-34 - 947: 61,-34 - 948: 60,-34 - 949: 59,-34 - 1176: 35,-16 - 1177: 34,-16 - 1178: 33,-16 - 1179: 25,-16 - 1180: 26,-16 - 1181: 27,-16 - 1327: 82,-14 - 1328: 82,-12 - 1329: 82,-6 - 1330: 82,-4 - 1481: -26,-18 - 1482: -26,-16 - 1485: 28,-30 - 1486: 28,-29 - 1487: 34,-30 - 1488: 34,-29 - 1489: 35,-27 - 1490: 36,-27 - 1491: 25,-27 - 1492: 26,-27 - 1493: 23,-26 - 1494: 23,-25 - 1495: 39,-38 - 1496: 40,-38 - 1497: 41,-38 - 2788: 14,-24 - 2789: 15,-24 - 2790: 16,-24 - 2791: 16,-11 - 2792: 15,-11 - 2793: 14,-11 - 2794: 8,-32 - 2795: 8,-31 - 2796: 8,-30 - 2797: -10,-32 - 2798: -10,-31 - 2799: -10,-30 - 2800: -16,-21 - 2801: -17,-21 - 2802: -18,-21 - 2803: -7,-3 - 2804: -7,-2 - 2805: -7,-1 - 2806: 5,-3 - 2807: 5,-2 - 2808: 5,-1 - - node: - cleanable: True - color: '#474F52FF' - id: Dirt - decals: - 267: -33,-11 - 268: -32,-11 - 269: -31,-11 - 270: -30,-11 - 271: -30,-12 - 272: -31,-12 - 273: -32,-12 - 274: -33,-12 - 275: -33,-13 - 276: -32,-13 - 277: -31,-13 - 278: -30,-13 - 279: -30,-14 - 280: -31,-14 - 281: -32,-14 - 282: -33,-14 - 283: -33,-15 - 284: -32,-15 - 285: -31,-15 - 286: -30,-15 - 287: -30,-16 - 288: -31,-16 - 289: -32,-16 - 290: -33,-16 - 291: -33,-17 - 292: -32,-17 - 293: -31,-17 - 294: -30,-17 - 320: -6,-46 - 321: -3,-44 - 464: 59,-34 - 465: 60,-34 - 466: 61,-34 - 467: 62,-34 - 468: 63,-34 - 469: 64,-36 - - node: - cleanable: True - zIndex: 1 - color: '#474F52FF' - id: Dirt - decals: - 304: -32,-18 - - node: - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 711: -28,-37 - 712: -27,-33 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 1734: 8,-58 - 1735: 4,-56 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 700: -30,-38 - 701: -29,-37 - 702: -26,-30 - 703: -27,-31 - 704: -26,-28 - 705: -26,-27 - 706: -23,-25 - 707: -20,-24 - 713: -29,-22 - 714: -28,-23 - 715: -31,-22 - 716: -32,-23 - 717: -36,-24 - 718: -37,-26 - 719: -40,-24 - 720: -40,-29 - 721: -33,-30 - 722: -33,-26 - 723: -32,-25 - 725: -32,-19 - 726: -31,-20 - 727: -25,-20 - 2754: -6,24 - 2755: -5,23 - 2756: -6,25 - 2757: -2,25 - 2758: -3,23 - 2759: -3,24 - 2760: -11,24 - 2761: -10,25 - 2762: -10,23 - 2763: -9,23 - - node: - cleanable: True - color: '#474F52FF' - id: DirtLight - decals: - 470: 61,-34 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 1345: -62,-5 - 1346: -61,-5 - 1347: -55,-3 - 1348: -57,1 - 1349: -64,2 - 1350: -47,-1 - 1351: -46,1 - 1352: -45,2 - 1353: -39,-1 - 1354: -38,-2 - 1355: -3,0 - 1356: -2,1 - 1357: -1,5 - 1358: -2,7 - 1359: -1,10 - 1360: 16,-12 - 1361: 19,-14 - 1362: 31,-13 - 1363: 44,-15 - 1364: 49,-14 - 1365: 60,-13 - 1366: 71,-14 - 1367: 1,-48 - 1368: 0,-47 - 1369: 5,-46 - 1370: 0,-56 - 1371: 1,-57 - 1372: 8,-61 - 1373: 8,-65 - 1374: 6,-66 - 1375: 9,-70 - 1376: -7,-67 - 1377: -14,-73 - 1378: -15,-73 - 1379: -17,-70 - 1380: -20,-70 - 1381: -29,-39 - 1382: -27,-39 - 1383: -25,-37 - 1384: -38,-30 - 1385: -40,-31 - 1386: -41,-30 - 1387: -42,-25 - 1724: 4,-58 - 1725: 8,-59 - 1726: 7,-57 - 1727: 4,-52 - 1728: 3,-53 - 1729: 4,-55 - 1736: 4,-55 - 1737: 5,-57 - 1738: 5,-56 - 1739: 4,-54 - 1740: 7,-52 - 1741: 7,-53 - 1742: 9,-52 - 1743: 11,-53 - 1744: 4,-50 - 1745: 6,-49 - 1746: 7,-48 - 1747: -1,-42 - 1748: -2,-44 - 1749: 0,-45 - 1750: -2,-55 - 1751: -2,-52 - 1752: 0,-49 - 1753: 1,-45 - 1754: 0,-42 - 1755: -1,-38 - 1756: -2,-35 - 1757: -1,-35 - 1758: 0,-33 - 1759: 1,-32 - 1760: -2,-32 - 1989: -6,47 - 1990: -6,47 - 1991: -9,49 - 1992: -8,48 - 1993: -5,50 - 1994: -3,50 - 1995: 0,49 - 1996: 1,48 - 1997: 2,50 - 1998: 3,50 - 1999: -10,50 - 2000: -12,49 - 2001: -16,43 - 2002: -14,43 - 2003: -11,41 - 2004: -11,36 - 2005: -6,35 - 2006: -8,35 - 2007: -9,36 - 2008: -6,39 - 2010: -10,49 - 2011: -7,51 - 2012: -10,52 - 2013: 3,49 - - node: - cleanable: True - zIndex: 1 - color: '#474F52FF' - id: DirtLight - decals: - 305: -32,-16 - 306: -32,-15 - 307: -33,-15 - 308: -33,-16 - 309: -33,-17 - 310: -33,-14 - 311: -33,-13 - 312: -32,-13 - 313: -31,-11 - 314: -30,-11 - 315: -30,-12 - 316: -30,-13 - 317: -30,-14 - 318: -32,-11 - 319: -30,-10 - - node: - color: '#FFFFFFFF' - id: DirtMedium - decals: - 708: -22,-25 - 709: -26,-31 - 710: -27,-35 - 724: -32,-24 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - decals: - 1730: 3,-57 - 1731: 5,-53 - 1732: 8,-59 - 1733: 7,-58 - 2009: -8,50 - - node: - cleanable: True - zIndex: 1 - color: '#474F52FF' - id: DirtMedium - decals: - 295: -33,-11 - 296: -32,-12 - 297: -31,-12 - 298: -31,-13 - 299: -31,-14 - 300: -30,-15 - 301: -31,-16 - 302: -32,-17 - 303: -32,-18 - - node: - color: '#FFFFFFFF' - id: Flowersbr2 - decals: - 2710: 23.65632,-6.414194 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 1901: 7.3655357,-24.02947 - - node: - color: '#FFFFFFFF' - id: Flowerspv2 - decals: - 1522: 43.154446,-52.983627 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 765: -15.026416,-25.521257 - - node: - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 1521: 43.85757,-52.030502 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 764: -15.026416,-24.599382 - 1520: 46.216946,-53.983627 - 1900: 6.2405357,-24.09197 - 2709: 23.328196,-6.882944 - - node: - color: '#52B4E931' - id: FullTileOverlayGreyscale - decals: - 2894: 2,-5 - - node: - color: '#EFB34128' - id: FullTileOverlayGreyscale - decals: - 1660: 7,-59 - 1661: 7,-58 - 1662: 6,-58 - 1663: 5,-58 - 1664: 4,-58 - 1665: 3,-58 - 1666: 3,-57 - 1667: 3,-56 - 1668: 3,-55 - 1669: 3,-54 - 1670: 2,-54 - 1671: 2,-53 - 1672: 2,-52 - 1673: 3,-52 - 1674: 3,-53 - 1675: 4,-53 - 1676: 4,-52 - 1677: 5,-52 - 1678: 5,-53 - 1679: 5,-54 - 1680: 6,-53 - 1681: 4,-51 - 1682: 4,-54 - 1683: 4,-55 - 1684: 4,-56 - 1685: 4,-57 - 1686: 5,-57 - 1687: 5,-56 - 1688: 5,-55 - 1689: 6,-56 - 1690: 6,-57 - 1691: 7,-57 - 1692: 7,-56 - 1693: 8,-56 - 1694: 8,-57 - 1695: 8,-58 - 1696: 8,-59 - 1697: 9,-59 - 1698: 9,-58 - 1699: 9,-57 - 1700: 9,-56 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 1034: 33,-21 - 1035: 33,-20 - 1036: 32,-20 - 1037: 31,-20 - 1038: 30,-20 - 1039: 29,-20 - 1040: 28,-20 - 1041: 27,-20 - 1042: 27,-21 - 1170: 35,-16 - 1171: 34,-16 - 1172: 33,-16 - 1173: 27,-16 - 1174: 26,-16 - 1175: 25,-16 - 1511: 20,-35 - 2716: -10,25 - - node: - color: '#9FED5896' - id: FullTileOverlayGreyscale - decals: - 2715: -6,25 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 1322: 77,-5 - 1460: 58,-16 - 1925: -8,37 - 1926: -7,37 - 1927: -5,37 - - node: - color: '#D381C934' - id: FullTileOverlayGreyscale - decals: - 2897: 6,-7 - - node: - color: '#A4610696' - id: FullTileOverlayGreyscale - decals: - 665: -30,-31 - 666: -33,-29 - 1528: -21,-31 - 1529: -22,-31 - - node: - color: '#334E6D5A' - id: FullTileOverlayGreyscale - decals: - 2885: -1,-5 - - node: - color: '#EFB34131' - id: FullTileOverlayGreyscale - decals: - 2876: -4,-5 - - node: - color: '#D4D4D428' - id: FullTileOverlayGreyscale - decals: - 1498: 21,-35 - - node: - color: '#D381C996' - id: FullTileOverlayGreyscale - decals: - 2295: 65,-22 - 2296: 66,-22 - 2297: 67,-22 - 2356: 61,-41 - 2357: 59,-41 - 2358: 57,-41 - 2359: 55,-41 - 2360: 53,-41 - - node: - color: '#9D9D97FF' - id: FullTileOverlayGreyscale - decals: - 1499: 18,-37 - 1500: 22,-33 - 1501: 18,-33 - 1502: 22,-37 - - node: - color: '#DE3A3A2B' - id: FullTileOverlayGreyscale - decals: - 2875: -8,-7 - - node: - color: '#EFB34196' - id: FullTileOverlayGreyscale - decals: - 2714: -2,25 - - node: - color: '#FFFFFFFF' - id: Grassa1 - decals: - 1898: 7.2717857,-23.90447 - 1899: 6.2249107,-24.045095 - 2026: -3,48 - - node: - color: '#FFFFFFFF' - id: Grassa2 - decals: - 2021: 2,47 - 2022: 4,48 - 2033: -1,47 - - node: - color: '#FFFFFFFF' - id: Grassa3 - decals: - 2027: 2,48 - - node: - color: '#FFFFFFFF' - id: Grassa5 - decals: - 2023: 4,47 - 2024: -1,48 - 2025: -3,47 - - node: - color: '#FFFFFFFF' - id: Grassb1 - decals: - 756: -14.995166,-26.943132 - 1526: 47.091946,-51.921127 - - node: - color: '#FFFFFFFF' - id: Grassb2 - decals: - 757: -14.917041,-24.615007 - - node: - color: '#FFFFFFFF' - id: Grassb5 - decals: - 1527: 42.85757,-51.827377 - 2708: 23.890696,-6.117319 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 1519: 46.57632,-52.483627 - - node: - color: '#FFFFFFFF' - id: Grassd2 - decals: - 1518: 44.04507,-52.733627 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 753: -14.979541,-25.083757 - 2019: 2,48 - - node: - color: '#FFFFFFFF' - id: Grasse1 - decals: - 752: -14.995166,-24.161882 - 1516: 46.42007,-53.327377 - 1517: 43.29507,-52.358627 - 2018: 2,47 - 2020: -3,48 - 2705: 23.90632,-6.523569 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 751: -15.010791,-27.036882 - 1893: 6,-24 - 1894: 7,-24 - 1895: 8,-24 - 2015: 4,47 - 2016: -1,48 - 2032: -1,47 - 2704: 23.171946,-6.117319 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 754: -14.995166,-25.786882 - 1896: 8,-24 - 1897: 6.3967857,-23.96697 - 2014: 4,48 - 2017: -3,47 - 2703: 23.12507,-6.836069 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale - decals: - 332: 3,-66 - 333: 2,-66 - 334: 1,-66 - 337: 0,-67 - 338: -1,-67 - 339: -2,-67 - 340: -3,-67 - 341: -4,-67 - 342: -5,-67 - 345: -9,-67 - 346: -10,-67 - 368: -11,-69 - 369: -13,-69 - 370: -12,-69 - 371: -14,-69 - 372: -18,-69 - 390: -20,-69 - 391: -21,-69 - 413: 17,-71 - 414: 16,-71 - 415: 15,-71 - 416: 14,-71 - 417: 13,-71 - 418: 12,-71 - 419: 11,-71 - 422: -10,-62 - 423: -9,-62 - 424: -8,-62 - 425: -7,-62 - 426: -6,-62 - 427: -5,-62 - 436: -4,-63 - 440: -2,-62 - 441: -1,-62 - 2713: -2,28 - - node: - color: '#F5DB9E96' - id: HalfTileOverlayGreyscale - decals: - 2248: 20,-25 - 2249: 22,-25 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 1148: 69,-18 - 1149: 70,-18 - 1150: 71,-18 - 2330: 63,-40 - 2331: 62,-40 - 2332: 61,-40 - 2333: 60,-40 - 2334: 59,-40 - 2335: 58,-40 - 2336: 57,-40 - 2337: 56,-40 - 2338: 55,-40 - 2339: 53,-40 - 2340: 52,-40 - 2341: 51,-40 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 5: -1,28 - 6: 0,28 - 7: 4,28 - 8: 5,28 - 9: 9,28 - 10: 10,28 - 17: 9,24 - 18: 8,24 - 19: 10,24 - 28: -15,27 - 30: -14,27 - 33: -10,27 - 34: -7,27 - 60: 17,35 - 61: 16,35 - 62: 12,35 - 63: 11,35 - 68: 10,33 - 69: 6,33 - 235: 38,-17 - 238: -23,-30 - 239: -22,-30 - 240: -21,-30 - 241: -20,-30 - 512: -7,31 - 513: -8,31 - 514: -9,31 - 614: -61,5 - 615: -60,5 - 616: -59,5 - 617: -58,5 - 1310: 77,-2 - 1311: 78,-2 - 1312: 79,-2 - 1313: 80,-2 - 1314: 81,-2 - 1459: 58,-17 - 1463: 60,-18 - 1464: 61,-18 - 1465: 62,-18 - 2742: 14,32 - - node: - color: '#9D9D97FF' - id: HalfTileOverlayGreyscale - decals: - 1466: 62,-27 - 1505: 21,-33 - 1506: 19,-33 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - decals: - 114: 29,-17 - 115: 30,-17 - 116: 31,-17 - 134: 37,-32 - 135: 38,-32 - 136: 39,-32 - 137: 40,-32 - 138: 41,-32 - 142: 42,-32 - 187: 28,-29 - 192: 30,-28 - 193: 32,-28 - 194: 31,-28 - 195: 33,-28 - 1056: 33,-24 - 1057: 32,-24 - 1058: 31,-24 - 1059: 29,-24 - 1060: 28,-24 - 1061: 27,-24 - 1076: 23,-25 - 2118: 49,-27 - 2154: 40,-23 - 2165: 44,-27 - 2166: 45,-27 - 2167: 46,-27 - 2711: -4,28 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 260: -32,-11 - 1469: -24,-16 - 1470: -23,-16 - 1471: -22,-16 - 1472: -21,-16 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - decals: - 1011: 46,-56 - 1012: 44,-56 - 1013: 43,-56 - 1014: 42,-56 - 1015: 41,-56 - 1016: 39,-56 - 1296: 35,-52 - 1297: 36,-52 - 2712: -3,28 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale180 - decals: - 537: -6,23 - 1303: 35,-56 - - node: - color: '#9D9D97FF' - id: HalfTileOverlayGreyscale180 - decals: - 1090: 67,-49 - 1091: 66,-49 - 1092: 65,-49 - 1503: 21,-37 - 1504: 19,-37 - - node: - color: '#9FED5828' - id: HalfTileOverlayGreyscale180 - decals: - 2028: 3,47 - 2029: 1,47 - 2030: 0,47 - 2031: -2,47 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 1156: 70,-16 - 1157: 69,-16 - 1158: 68,-16 - 1159: 67,-16 - 1160: 65,-16 - 1161: 64,-16 - 1162: 63,-16 - 1163: 62,-16 - 2287: 51,-15 - 2288: 55,-15 - 2342: 51,-42 - 2343: 52,-42 - 2344: 53,-42 - 2345: 54,-42 - 2346: 55,-42 - 2347: 57,-42 - 2348: 59,-42 - 2349: 60,-42 - 2350: 62,-42 - 2351: 63,-42 - 2352: 61,-42 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 26: 9,23 - 44: -14,22 - 74: 9,30 - 75: 10,30 - 76: 11,30 - 77: 12,30 - 78: 13,30 - 79: 14,30 - 80: 15,30 - 81: 16,30 - 242: -23,-32 - 243: -22,-32 - 244: -21,-32 - 245: -20,-32 - 620: -61,3 - 621: -60,3 - 622: -59,3 - 623: -58,3 - 1317: 77,-4 - 1318: 78,-4 - 1319: 79,-4 - 1320: 80,-4 - 1321: 81,-4 - 2740: 14,34 - 2745: 14,31 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 119: 28,-26 - 120: 29,-26 - 121: 30,-26 - 122: 31,-26 - 123: 32,-26 - 124: 33,-26 - 125: 34,-26 - 144: 42,-37 - 169: 38,-33 - 170: 37,-33 - 186: 28,-30 - 196: 30,-31 - 197: 31,-31 - 198: 32,-31 - 199: 33,-31 - 536: -10,23 - 1029: 23,-26 - 1032: 21,-28 - 1033: 19,-28 - 1047: 33,-19 - 1048: 32,-19 - 1049: 31,-19 - 1050: 30,-19 - 1051: 29,-19 - 1052: 28,-19 - 1053: 27,-19 - 2119: 49,-29 - 2146: 37,-25 - 2147: 38,-25 - 2148: 41,-25 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 379: -16,-74 - 380: -15,-74 - 384: -13,-75 - 399: 11,-75 - 400: 12,-75 - 403: 13,-74 - 404: 14,-74 - 405: 15,-74 - 406: 16,-74 - 407: 17,-74 - 408: 18,-74 - 428: -10,-65 - 429: -9,-65 - 430: -5,-65 - 447: -2,-65 - 448: -3,-65 - 451: -4,-64 - 546: -2,23 - - node: - color: '#9D9D97FF' - id: HalfTileOverlayGreyscale270 - decals: - 1507: 18,-34 - 1508: 18,-36 - - node: - color: '#334E6D5A' - id: HalfTileOverlayGreyscale270 - decals: - 2883: -2,-6 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 22: 8,23 - 27: -15,26 - 35: -6,28 - 36: -6,29 - 37: -6,32 - 57: 18,36 - 65: 11,34 - 231: 37,-20 - 232: 37,-19 - 233: 37,-18 - 234: 37,-17 - 516: -9,29 - 517: -9,30 - 619: -62,4 - 1316: 76,-3 - 1452: 57,-20 - 1453: 57,-19 - 1454: 57,-18 - 1978: -12,38 - 1979: -12,39 - 1980: -12,40 - 1981: -12,41 - - node: - color: '#EFB34131' - id: HalfTileOverlayGreyscale270 - decals: - 2882: -5,-6 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 328: 7,-65 - 376: -18,-72 - 377: -18,-73 - 378: -18,-74 - 382: -14,-75 - 393: -11,-72 - 394: -11,-73 - 395: -11,-74 - 396: -11,-75 - 438: -3,-62 - 586: -10,-68 - 1402: -3,-26 - 1403: -3,-25 - 1406: -2,-27 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 126: 24,-24 - 127: 24,-23 - 158: 39,-45 - 159: 39,-44 - 160: 39,-43 - 161: 39,-42 - 164: 39,-38 - 165: 39,-37 - 166: 39,-36 - 167: 39,-35 - 168: 39,-34 - 174: 35,-27 - 176: 24,-28 - 179: 24,-31 - 180: 24,-30 - 181: 24,-29 - 188: 29,-28 - 189: 29,-31 - 221: 24,-33 - 223: 24,-37 - 1045: 34,-21 - 1046: 34,-20 - 1055: 34,-23 - 1075: 18,-26 - 1449: 56,-24 - 2121: 48,-28 - 2161: 43,-30 - 2162: 43,-29 - 2163: 43,-28 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - decals: - 1300: 34,-55 - 1301: 34,-54 - 1302: 34,-53 - - node: - color: '#52B4E931' - id: HalfTileOverlayGreyscale270 - decals: - 2896: 1,-6 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 252: -33,-17 - 253: -33,-16 - 254: -33,-15 - 255: -33,-14 - 256: -33,-13 - 257: -33,-12 - 258: -33,-11 - 640: -29,-22 - 641: -29,-21 - 648: -30,-38 - 649: -30,-37 - 687: -42,-21 - 688: -42,-22 - 689: -42,-23 - 690: -42,-24 - 691: -42,-25 - 692: -42,-26 - 693: -42,-27 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 456: 65,-18 - 457: 65,-19 - 458: 65,-20 - 2362: 63,-41 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 1298: 37,-53 - 1299: 36,-55 - - node: - color: '#52B4E931' - id: HalfTileOverlayGreyscale90 - decals: - 2895: 3,-6 - - node: - color: '#334E6D5A' - id: HalfTileOverlayGreyscale90 - decals: - 2884: 0,-6 - - node: - color: '#9D9D97FF' - id: HalfTileOverlayGreyscale90 - decals: - 1509: 22,-36 - 1510: 22,-34 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 128: 36,-26 - 129: 36,-27 - 130: 36,-28 - 131: 36,-29 - 132: 36,-30 - 133: 36,-31 - 139: 42,-33 - 140: 42,-34 - 145: 41,-38 - 146: 41,-39 - 147: 41,-40 - 148: 41,-41 - 152: 41,-48 - 177: 27,-28 - 178: 27,-31 - 224: 26,-37 - 225: 26,-36 - 1028: 22,-27 - 1043: 26,-21 - 1044: 26,-20 - 1054: 26,-23 - 2120: 50,-28 - - node: - color: '#EFB34131' - id: HalfTileOverlayGreyscale90 - decals: - 2881: -3,-6 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 0: -5,32 - 1: -5,31 - 2: -5,30 - 3: -5,29 - 23: 10,23 - 38: -13,24 - 39: -13,23 - 40: -13,22 - 54: 19,35 - 55: 19,36 - 227: 39,-20 - 228: 39,-19 - 229: 39,-18 - 230: 39,-17 - 248: -20,-31 - 618: -57,4 - 1315: 82,-3 - 1455: 63,-19 - 1982: -10,38 - 1983: -10,39 - 1984: -10,40 - 1985: -10,41 - 2741: 13,33 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 261: -30,-17 - 262: -30,-16 - 263: -30,-15 - 264: -30,-14 - 265: -30,-13 - 266: -30,-12 - 694: -31,-28 - 695: -31,-27 - 696: -31,-26 - 697: -31,-25 - 698: -31,-24 - 1474: -20,-17 - 1475: -20,-18 - 1476: -20,-19 - 1477: -20,-20 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 453: 67,-18 - 454: 67,-19 - 455: 67,-20 - 460: 63,-20 - 461: 63,-21 - 462: 63,-22 - 2361: 51,-41 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 322: 9,-70 - 323: 9,-69 - 324: 9,-68 - 325: 9,-67 - 326: 9,-66 - 327: 9,-65 - 386: -13,-74 - 387: -13,-73 - 388: -13,-72 - 389: -13,-71 - 410: 18,-72 - 411: 18,-71 - 443: -1,-63 - 444: -1,-64 - 445: -1,-65 - 1278: 13,-53 - 1279: 13,-52 - 1280: 13,-51 - 1407: 0,-27 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 107: -8,-24 - 108: -8,-25 - 109: -8,-26 - 804: -16,-28 - 805: -16,-23 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 668: -41,-28 - 749: -15,-28 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 667: -37,-32 - 750: -15,-23 - 1304: 1,-43 - 1305: 3,-43 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 669: -25,-30 - - node: - color: '#334E6DC8' - id: MiniTileWhiteLineW - decals: - 2769: -11,-15 - - node: - color: '#9D9D97FF' - id: QuarterTileOverlayGreyscale - decals: - 1089: 63,-27 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 112: 32,-17 - 156: 39,-49 - 157: 39,-46 - 163: 39,-39 - 173: 35,-32 - 175: 35,-28 - 184: 29,-29 - 222: 24,-34 - 1074: 18,-27 - 1450: 56,-25 - 2156: 37,-23 - 2463: -77,10 - 2464: -76,10 - 2465: -75,10 - 2466: -74,10 - 2467: -72,10 - 2468: -73,10 - 2469: -71,10 - 2470: -70,10 - 2471: -69,10 - 2472: -68,10 - 2473: -66,10 - 2474: -65,10 - 2487: -77,-14 - 2488: -76,-14 - 2489: -75,-14 - 2490: -74,-14 - 2491: -73,-14 - 2492: -72,-14 - 2493: -71,-14 - 2494: -70,-14 - 2495: -69,-14 - 2496: -68,-14 - 2497: -67,-14 - 2498: -66,-14 - 2943: -78,10 - 2944: -79,10 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale - decals: - 2392: 14,-4 - 2393: 14,-5 - 2394: 14,-6 - 2395: 14,-7 - 2402: -3,1 - 2403: -4,1 - 2404: -4,0 - 2405: -4,-1 - 2406: -5,-1 - 2407: -6,-1 - 2408: -8,-1 - 2409: -9,-1 - 2410: -10,-1 - 2424: -2,10 - 2425: -2,9 - 2426: -2,8 - 2427: -2,7 - 2428: -2,6 - 2429: -2,5 - 2430: -2,4 - 2431: -2,3 - 2565: 18,-13 - 2566: 19,-13 - 2567: 20,-13 - 2568: 21,-13 - 2569: 23,-13 - 2570: 22,-13 - 2571: 24,-13 - 2572: 25,-13 - 2573: 26,-13 - 2574: 27,-13 - 2575: 28,-13 - 2576: 29,-13 - 2577: 30,-13 - 2578: 31,-13 - 2579: 32,-13 - 2580: 73,-13 - 2581: 72,-13 - 2582: 71,-13 - 2583: 70,-13 - 2584: 69,-13 - 2585: 68,-13 - 2586: 67,-13 - 2587: 66,-13 - 2588: 65,-13 - 2589: 64,-13 - 2590: 63,-13 - 2591: 62,-13 - 2592: 61,-13 - 2593: 60,-13 - 2594: 59,-13 - 2595: 58,-13 - 2596: 57,-13 - 2597: 56,-13 - 2598: 55,-13 - 2599: 54,-13 - 2600: -21,-1 - 2601: -22,-1 - 2602: -23,-1 - 2603: -24,-1 - 2604: -25,-1 - 2605: -28,-1 - 2606: -29,-1 - 2607: -27,-1 - 2608: -30,-1 - 2609: -31,-1 - 2616: -40,-1 - 2617: -41,-1 - 2620: -48,-1 - 2621: -49,-1 - 2622: -50,-1 - 2623: -51,-1 - 2624: -52,-1 - 2625: -62,1 - 2626: -61,1 - 2627: -60,1 - 2628: -59,1 - 2629: -58,1 - 2630: -57,1 - 2631: -56,1 - 2632: -55,1 - 2633: -54,1 - 2836: 2,-33 - 2839: -18,-9 - 2840: -18,-8 - 2841: -18,-7 - 2842: -18,-6 - 2843: -18,-5 - 2844: -18,-4 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 798: 11,-8 - 799: 12,-8 - 800: 13,-8 - 2655: 27,-90 - 2656: 27,-91 - 2661: 31,-91 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 249: -31,-11 - 643: -29,-23 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale - decals: - 2535: 33,-12 - 2536: 34,-12 - 2537: 35,-12 - 2538: 36,-12 - 2539: 37,-12 - 2540: 38,-12 - 2541: 39,-12 - 2542: 40,-12 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale - decals: - 2543: 75,-6 - 2544: 75,-7 - 2545: 75,-8 - 2546: 75,-9 - 2547: 75,-10 - 2548: 75,-11 - 2549: 75,-12 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 1151: 72,-18 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 13: 1,28 - 14: 6,28 - 31: -13,27 - 41: -15,24 - 47: 4,23 - 58: 19,36 - 59: 18,35 - 64: 13,35 - 67: 11,33 - 71: 7,33 - 72: 6,32 - 236: 39,-17 - 481: 21,36 - 482: 21,34 - 483: 21,35 - 518: -3,33 - 519: -2,33 - 520: -1,33 - 521: 0,33 - 522: 1,33 - 527: -3,32 - 528: -3,31 - 529: -3,30 - 831: 4,21 - 832: 3,21 - 833: 2,21 - 834: 1,21 - 835: 0,21 - 836: -1,21 - 837: -2,21 - 838: -3,21 - 839: -4,21 - 840: -5,21 - 841: -6,21 - 842: -7,21 - 843: -8,21 - 844: -9,21 - 845: -10,21 - 846: -11,21 - 866: -2,18 - 867: -2,17 - 868: -2,16 - 869: -2,15 - 870: -2,14 - 871: -2,13 - 872: -2,12 - 1461: 57,-21 - 2744: 15,31 - 2746: 15,33 - - node: - color: '#F5DB9E96' - id: QuarterTileOverlayGreyscale - decals: - 2238: 24,-17 - 2239: 24,-18 - 2240: 24,-19 - 2241: 24,-20 - 2242: 24,-21 - - node: - color: '#FFEBAE96' - id: QuarterTileOverlayGreyscale - decals: - 2216: 18,-20 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 329: 7,-66 - 331: 4,-66 - 336: 1,-67 - 344: -8,-67 - 373: -17,-69 - 397: -11,-76 - 412: 18,-71 - 421: 11,-72 - 437: -3,-63 - 449: -3,-65 - 565: -47,5 - 566: -47,4 - 567: -47,3 - 568: -47,2 - 569: -47,1 - 1243: -2,-56 - 1286: 12,-45 - 1287: 12,-44 - 1288: 12,-43 - 1289: 12,-42 - 1290: 12,-41 - 1711: 3,-56 - 1712: 3,-55 - 1714: 2,-53 - 1715: 2,-52 - 1716: 3,-52 - 1717: 9,-56 - 1718: 8,-56 - 1719: 7,-56 - 1720: 6,-56 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 111: -8,-23 - 792: -13,-10 - 793: -14,-10 - 794: -15,-10 - 808: -16,-27 - 809: -16,-22 - 810: -16,-19 - 811: -16,-18 - 812: -16,-17 - 813: -16,-16 - 814: -16,-15 - 815: -16,-14 - 816: -16,-13 - 817: -16,-12 - 2659: 29,-94 - 2660: 29,-93 - 2664: 25,-94 - 2665: 25,-93 - 2690: -9,-10 - 2691: -8,-10 - 2692: -7,-10 - 2693: -6,-10 - 2694: -6,-9 - 2695: -5,-9 - 2696: -4,-9 - 2697: -3,-9 - 2698: -2,-9 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 381: -18,-74 - 383: -14,-75 - 402: 12,-74 - 431: -6,-65 - 434: -5,-62 - 442: -1,-62 - 452: -5,-64 - 1208: 0,-34 - 1209: 0,-35 - 1210: 0,-36 - 1211: 0,-37 - 1212: 0,-38 - 1213: 0,-39 - 1214: 0,-40 - 1247: 0,-55 - 1248: 0,-54 - 1249: 0,-53 - 1250: 0,-52 - 1391: 5,-33 - 1392: 6,-33 - 1393: 7,-33 - 1431: 63,-58 - 1432: 62,-58 - 1433: 61,-58 - 1434: 60,-58 - 1435: 57,-58 - 1436: 59,-58 - 1437: 58,-58 - 1438: 56,-58 - 1439: 55,-58 - 1702: 9,-59 - 1703: 9,-58 - 1704: 9,-57 - 1705: 9,-56 - - node: - color: '#9D9D97FF' - id: QuarterTileOverlayGreyscale180 - decals: - 1117: 67,-25 - 1118: 67,-26 - 1119: 67,-27 - 1120: 67,-28 - 1121: 67,-29 - 1122: 67,-30 - 1123: 67,-31 - 1124: 67,-32 - 1125: 67,-33 - 1126: 67,-34 - 1127: 67,-35 - 1128: 67,-36 - 1129: 67,-37 - 1130: 67,-38 - 1131: 67,-39 - 1132: 67,-40 - 1133: 67,-42 - 1134: 67,-41 - 1135: 67,-43 - 1136: 67,-44 - 1137: 67,-45 - 1138: 67,-46 - 1139: 67,-47 - 1140: 67,-48 - 1141: 68,-25 - 1142: 69,-25 - 1143: 70,-25 - 1144: 71,-25 - 1145: 72,-25 - 1146: 73,-25 - 1147: 74,-25 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 118: 27,-26 - 141: 42,-32 - 150: 41,-47 - 153: 41,-44 - 171: 36,-33 - 182: 27,-30 - 190: 29,-31 - 226: 26,-35 - 1031: 22,-26 - 1073: 18,-28 - 1080: 37,-41 - 1081: 37,-42 - 1082: 37,-43 - 1083: 37,-44 - 1182: 28,-15 - 1183: 29,-15 - 1186: 36,-15 - 1187: 37,-15 - 1188: 40,-15 - 1189: 42,-15 - 1190: 43,-15 - 1191: 41,-15 - 2145: 36,-25 - 2250: 39,-15 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale180 - decals: - 1388: 59,-27 - 2379: 1,-3 - 2380: 2,-3 - 2381: 3,-3 - 2382: 4,-3 - 2383: 5,-3 - 2384: 6,-3 - 2385: 7,-3 - 2386: 8,-3 - 2387: 9,-3 - 2388: 10,-3 - 2389: 11,-3 - 2390: 12,-3 - 2391: 13,-3 - 2634: -54,1 - 2635: -54,0 - 2770: 16,-15 - 2771: 16,-16 - 2772: 16,-17 - 2773: 16,-19 - 2774: 16,-20 - 2775: 16,-18 - 2776: 16,-21 - 2777: 16,-22 - 2778: 16,-23 - 2833: 0,-32 - 2834: 1,-32 - 2838: 7,-32 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 2290: 50,-15 - 2291: 57,-15 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale180 - decals: - 2523: -77,-6 - 2524: -76,-6 - 2525: -75,-6 - 2526: -74,-6 - 2527: -73,-6 - 2528: -72,-6 - 2529: -71,-6 - 2530: -70,-6 - 2531: -69,-6 - 2532: -68,-6 - 2533: -67,-6 - 2534: -66,-6 - 2561: 76,-16 - 2562: 77,-16 - 2563: 78,-16 - 2564: 79,-16 - 2939: -78,-6 - 2940: -79,-6 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 11: -5,33 - 21: 10,24 - 24: 8,23 - 43: -15,22 - 48: 6,24 - 52: 8,30 - 246: -20,-30 - 530: 4,30 - 531: 3,30 - 880: 0,19 - 881: 1,19 - 882: 2,19 - 883: 3,19 - 884: 4,19 - 885: 5,19 - 886: 6,19 - 887: 15,37 - 888: 16,37 - 2251: 38,-15 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 250: -31,-17 - 645: -27,-28 - 699: -31,-23 - - node: - color: '#474F52FF' - id: QuarterTileOverlayGreyscale180 - decals: - 1253: 1,-42 - 1255: 1,-45 - 1256: 1,-46 - - node: - color: '#9D9D97FF' - id: QuarterTileOverlayGreyscale270 - decals: - 1093: 65,-48 - 1094: 65,-47 - 1095: 65,-46 - 1096: 65,-45 - 1097: 65,-44 - 1098: 65,-43 - 1099: 65,-42 - 1100: 65,-41 - 1101: 65,-40 - 1102: 65,-39 - 1103: 65,-38 - 1104: 65,-37 - 1105: 65,-36 - 1106: 65,-35 - 1107: 65,-34 - 1108: 65,-33 - 1109: 65,-32 - 1110: 65,-31 - 1111: 65,-30 - 1112: 65,-29 - 1113: 65,-28 - 1114: 65,-27 - 1115: 65,-26 - 1116: 65,-25 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 251: -30,-17 - 642: -29,-20 - 644: -25,-28 - 728: -18,-23 - 729: -18,-22 - 730: -18,-21 - 731: -18,-20 - 732: -18,-19 - 733: -18,-18 - 734: -18,-17 - 735: -18,-16 - 736: -18,-26 - 737: -18,-27 - 738: -18,-28 - 739: -18,-29 - 740: -18,-30 - 741: -18,-31 - 742: -18,-32 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 335: 1,-66 - 347: -10,-67 - 375: -18,-71 - 392: -21,-71 - 420: 11,-71 - 432: -8,-65 - 446: -1,-65 - 450: -3,-64 - 1215: -2,-55 - 1216: -2,-54 - 1217: -2,-53 - 1218: -2,-52 - 1219: -2,-51 - 1220: -2,-50 - 1221: -2,-49 - 1222: -2,-48 - 1223: -2,-47 - 1224: -2,-46 - 1225: -2,-45 - 1226: -2,-44 - 1227: -2,-43 - 1228: -2,-42 - 1229: -2,-41 - 1230: -2,-40 - 1231: -2,-39 - 1232: -2,-38 - 1233: -2,-37 - 1234: -2,-36 - 1235: -2,-35 - 1236: -2,-34 - 1237: -4,-56 - 1238: -4,-57 - 1239: -4,-58 - 1240: 0,-58 - 1241: 1,-58 - 1389: 2,-33 - 1390: 3,-33 - 1651: 3,-50 - 1652: 3,-49 - 1653: 3,-48 - 1701: 7,-59 - 1706: 3,-58 - 1707: 4,-58 - 1708: 5,-58 - 1709: 6,-58 - 1710: 7,-58 - 2648: -4,-59 - 2649: -4,-60 - 2650: -3,-60 - 2651: -2,-60 - 2652: -1,-60 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 2127: 50,-28 - 2128: 49,-27 - 2131: 50,-27 - 2289: 56,-15 - 2292: 59,-15 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale270 - decals: - 2363: -3,-3 - 2364: -4,-3 - 2365: -5,-3 - 2366: -6,-3 - 2367: -8,-3 - 2368: -9,-3 - 2369: -10,-3 - 2370: -12,-3 - 2371: -11,-3 - 2372: -13,-3 - 2373: -15,-3 - 2374: -14,-3 - 2432: 14,-20 - 2433: 14,-21 - 2434: 14,-22 - 2435: 14,-23 - 2436: 14,-28 - 2437: 14,-29 - 2636: -62,-6 - 2637: -61,-6 - 2638: -60,-6 - 2639: -59,-6 - 2640: -58,-6 - 2641: -57,-6 - 2642: -56,-6 - 2643: -55,-6 - 2644: -54,-6 - 2809: 9,-32 - 2810: 10,-32 - 2811: 11,-32 - 2812: 12,-32 - 2813: 13,-32 - 2814: 14,-32 - 2815: 15,-32 - 2816: 16,-32 - 2817: -17,-32 - 2818: -16,-32 - 2819: -15,-32 - 2820: -14,-32 - 2821: -13,-32 - 2822: -12,-32 - 2823: -11,-32 - 2824: -10,-32 - 2825: -9,-32 - 2826: -8,-32 - 2827: -7,-32 - 2828: -6,-32 - 2829: -5,-32 - 2830: -4,-32 - 2831: -3,-32 - 2832: -2,-32 - 2835: 2,-32 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale270 - decals: - 2550: 75,-12 - 2551: 75,-11 - 2552: 75,-10 - 2553: 75,-9 - 2554: 75,-8 - 2555: 75,-7 - 2556: 75,-6 - - node: - color: '#F5DB9E96' - id: QuarterTileOverlayGreyscale270 - decals: - 2243: 21,-15 - 2244: 20,-15 - 2245: 19,-15 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 117: 24,-21 - 155: 39,-48 - 162: 39,-41 - 172: 35,-31 - 185: 29,-30 - 1030: 24,-26 - 1184: 31,-15 - 1185: 32,-15 - 1192: 45,-15 - 1193: 46,-15 - 1194: 47,-15 - 1195: 48,-15 - 1196: 24,-15 - 1197: 23,-15 - 1198: 22,-15 - 1199: 18,-15 - 1440: 63,-58 - 1441: 62,-58 - 1442: 61,-58 - 1443: 60,-58 - 1444: 59,-58 - 1445: 58,-58 - 1446: 57,-58 - 1447: 56,-58 - 1448: 55,-58 - 1451: 56,-23 - 1644: 34,-44 - 1645: 34,-43 - 1646: 34,-42 - 1647: 34,-41 - 2236: 26,-18 - 2475: -77,-6 - 2476: -76,-6 - 2477: -75,-6 - 2478: -74,-6 - 2479: -73,-6 - 2480: -72,-6 - 2481: -71,-6 - 2482: -70,-6 - 2483: -69,-6 - 2484: -68,-6 - 2485: -67,-6 - 2486: -66,-6 - 2937: -78,-6 - 2938: -79,-6 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - decals: - 989: 41,-61 - 990: 40,-61 - 991: 39,-61 - 992: 38,-61 - 993: 38,-60 - 994: 38,-59 - 995: 38,-58 - 996: 38,-57 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - decals: - 2557: 76,-16 - 2558: 77,-16 - 2559: 78,-16 - 2560: 79,-16 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 12: -6,33 - 20: 8,24 - 25: 10,23 - 29: -15,27 - 42: -15,22 - 45: -13,22 - 46: 4,24 - 66: 11,35 - 70: 6,33 - 73: 6,30 - 515: -9,31 - 847: -20,19 - 848: -18,19 - 849: -19,19 - 850: -17,19 - 851: -16,19 - 852: -15,19 - 853: -14,19 - 854: -13,19 - 855: -12,19 - 856: -11,19 - 857: -10,19 - 858: -9,19 - 859: -8,19 - 860: -7,19 - 861: -6,19 - 862: -5,19 - 863: -4,19 - 864: -3,19 - 865: -2,19 - 889: 13,37 - 890: 12,37 - 891: 6,35 - 892: 7,35 - 893: 8,35 - 894: 9,35 - 2743: 15,32 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 801: 11,-10 - 802: 12,-10 - 803: 13,-10 - 818: 14,-12 - 819: 14,-13 - 820: 14,-14 - 821: 14,-15 - 822: 14,-19 - 823: 14,-18 - 824: 14,-17 - 825: 14,-16 - 2657: 27,-94 - 2658: 27,-93 - 2662: 31,-94 - 2663: 31,-93 - 2681: 7,-10 - 2682: 6,-10 - 2683: 5,-10 - 2684: 4,-10 - 2685: 4,-9 - 2686: 3,-9 - 2687: 2,-9 - 2688: 1,-9 - 2689: 0,-9 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 259: -33,-11 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 113: 28,-17 - 143: 42,-35 - 149: 41,-45 - 151: 41,-49 - 154: 41,-42 - 183: 27,-29 - 191: 29,-28 - 220: 26,-33 - 1084: 37,-39 - 1085: 36,-39 - 1086: 35,-39 - 1087: 34,-39 - 1530: 16,-28 - 1531: 16,-27 - 2155: 39,-23 - 2157: 36,-23 - 2237: 25,-19 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale90 - decals: - 2375: -16,-4 - 2376: -16,-5 - 2377: -16,-6 - 2378: -16,-7 - 2396: 4,-1 - 2397: 3,-1 - 2398: 2,-1 - 2399: 2,0 - 2400: 2,1 - 2401: 1,1 - 2411: -14,-1 - 2412: -15,-1 - 2413: -16,-1 - 2414: -17,-1 - 2415: -18,-1 - 2416: 0,3 - 2417: 0,4 - 2418: 0,5 - 2419: 0,6 - 2420: 0,7 - 2421: 0,8 - 2422: 0,9 - 2423: 0,10 - 2438: 13,-30 - 2439: 12,-30 - 2440: 11,-30 - 2441: 9,-30 - 2442: 10,-30 - 2443: 7,-30 - 2444: 6,-30 - 2445: 5,-30 - 2446: 4,-30 - 2447: 3,-30 - 2448: 2,-30 - 2449: 1,-30 - 2450: -6,-30 - 2451: -5,-30 - 2452: -4,-30 - 2453: -11,-30 - 2454: -12,-30 - 2455: -13,-30 - 2456: -14,-30 - 2457: -15,-30 - 2610: -33,-1 - 2611: -34,-1 - 2612: -35,-1 - 2613: -37,-1 - 2614: -36,-1 - 2615: -38,-1 - 2618: -43,-1 - 2619: -44,-1 - 2645: -54,-6 - 2646: -54,-5 - 2647: -54,-4 - 2779: 16,-25 - 2780: 16,-26 - 2781: 16,-29 - 2782: 16,-30 - 2783: 16,-31 - 2784: 16,-32 - 2837: 7,-33 - 2845: 10,-1 - 2846: 11,-1 - 2847: 12,-1 - 2848: 13,-1 - 2849: 14,-1 - 2850: 15,-1 - 2851: 16,-1 - 2852: 16,-2 - 2853: 16,-3 - 2854: 16,-4 - 2855: 16,-5 - 2856: 16,-6 - 2857: 16,-7 - 2858: 16,-8 - 2859: 16,-9 - 2860: 16,-10 - 2861: 16,-12 - 2862: 16,-13 - 2863: 9,-1 - 2864: 9,0 - 2865: 9,1 - 2866: 9,2 - 2867: 9,3 - 2868: 9,4 - 2869: 9,5 - 2870: 9,6 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 4: -5,28 - 15: 3,28 - 16: 8,28 - 32: -11,27 - 49: 6,23 - 50: 9,33 - 51: 15,35 - 53: 19,34 - 56: 18,36 - 237: 37,-17 - 247: -20,-32 - 484: 25,36 - 485: 25,35 - 486: 25,34 - 487: 25,33 - 488: 25,32 - 523: 2,33 - 524: 3,33 - 525: 4,33 - 526: 4,32 - 826: 6,21 - 827: 7,21 - 828: 8,21 - 829: 9,21 - 830: 10,21 - 873: 0,12 - 874: 0,13 - 875: 0,14 - 876: 0,15 - 877: 0,16 - 878: 0,17 - 879: 0,18 - 1462: 59,-18 - 2747: 13,31 - - node: - color: '#9D9D97FF' - id: QuarterTileOverlayGreyscale90 - decals: - 1088: 61,-27 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 463: 63,-23 - 2129: 48,-28 - 2130: 49,-29 - 2132: 48,-29 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale90 - decals: - 2499: -66,-14 - 2500: -67,-14 - 2501: -68,-14 - 2502: -69,-14 - 2503: -70,-14 - 2504: -71,-14 - 2505: -72,-14 - 2506: -73,-14 - 2507: -74,-14 - 2508: -75,-14 - 2509: -76,-14 - 2510: -77,-14 - 2511: -77,10 - 2512: -76,10 - 2513: -75,10 - 2514: -74,10 - 2515: -73,10 - 2516: -72,10 - 2517: -71,10 - 2518: -70,10 - 2519: -69,10 - 2520: -68,10 - 2521: -66,10 - 2522: -65,10 - 2941: -78,10 - 2942: -79,10 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 330: 6,-66 - 343: -6,-67 - 374: -15,-69 - 385: -13,-75 - 398: 9,-72 - 401: 12,-75 - 409: 18,-74 - 433: -5,-65 - 435: -5,-63 - 439: -3,-62 - 570: -38,1 - 571: -38,2 - 572: -38,3 - 573: -38,4 - 574: -38,5 - 1242: -3,-56 - 1244: 1,-56 - 1245: 1,-57 - 1246: 0,-56 - 1251: 1,-41 - 1258: 1,-44 - 1259: 1,-45 - 1260: 1,-46 - 1261: 1,-47 - 1281: 14,-45 - 1282: 14,-44 - 1283: 14,-43 - 1284: 14,-42 - 1285: 14,-41 - 1721: 5,-52 - 1722: 5,-54 - 1723: 5,-55 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 110: -8,-27 - 795: -13,-8 - 796: -14,-8 - 797: -15,-8 - 806: -16,-24 - 807: -16,-29 - 1077: -9,-30 - 1078: -8,-30 - 1079: -7,-30 - 2653: 29,-90 - 2654: 29,-91 - 2666: 25,-91 - - node: - color: '#F9FFFEFF' - id: Remains - decals: - 82: 23,41 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign1 - decals: - 1420: -4,-2 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign2 - decals: - 1421: -3,-2 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign3 - decals: - 1422: -2,-2 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign4 - decals: - 1423: -1,-2 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign5 - decals: - 1424: 0,-2 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign6 - decals: - 1425: 1,-2 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign7 - decals: - 1426: 2,-2 - - node: - color: '#334E6D5A' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2888: 0,-7 - 2889: -2,-5 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 533: -11,24 - 1072: 18,-25 - 2122: 48,-27 - 2158: 37,-22 - 2164: 43,-27 - - node: - color: '#D381C934' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2898: 5,-7 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 545: -3,24 - - node: - color: '#52B4E931' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2890: 3,-7 - 2893: 1,-5 - - node: - color: '#EFB34131' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2877: -3,-7 - 2878: -5,-5 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 647: -30,-36 - - node: - color: '#DE3A3A2B' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2873: -9,-7 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 538: -7,24 - 1292: 34,-52 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 613: -62,5 - 1306: 76,-2 - 1457: 57,-17 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1155: 71,-16 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 541: -5,23 - 1010: 47,-57 - 1294: 37,-54 - 1295: 36,-56 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 611: -57,3 - 1308: 82,-4 - - node: - color: '#D381C934' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2899: 7,-8 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 535: -9,23 - 1027: 22,-28 - 2123: 50,-29 - 2149: 42,-25 - 2235: 25,-18 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 542: -1,23 - 1404: 0,-28 - - node: - color: '#DE3A3A2B' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2872: -7,-8 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 540: -7,23 - 1291: 34,-56 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1154: 61,-16 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 534: -11,23 - 2124: 48,-29 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 610: -62,3 - 1309: 76,-4 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 646: -30,-39 - - node: - color: '#D381C934' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2901: 5,-8 - - node: - color: '#DE3A3A2B' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2871: -9,-8 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 543: -3,23 - 1405: -2,-28 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 612: -57,5 - 1307: 82,-2 - 1456: 63,-18 - 1458: 59,-17 - - node: - color: '#D381C934' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2900: 7,-7 - - node: - color: '#52B4E931' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2891: 1,-7 - 2892: 3,-5 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 532: -9,24 - 2125: 50,-27 - 2150: 42,-23 - 2159: 39,-22 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 544: -1,24 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1473: -20,-16 - - node: - color: '#DE3A3A2B' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2874: -7,-7 - - node: - color: '#EFB34131' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2879: -5,-7 - 2880: -3,-5 - - node: - color: '#334E6D5A' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2886: -2,-7 - 2887: 0,-5 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 539: -5,24 - 1009: 47,-56 - 1293: 37,-52 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 1323: 84,-14 - 1324: 84,-12 - 1325: 84,-6 - 1326: 84,-4 - 1339: -69,-17 - 1340: -76,-17 - 1341: -67,-10 - - node: - color: '#FED83DFF' - id: WarnBox - decals: - 83: 47,21 - 84: 91,-26 - 85: 91,-27 - 86: 91,-30 - 87: 87,-39 - 88: 87,-58 - 89: 81,-67 - 90: 62,-72 - 91: 49,-67 - 92: 26,-81 - 93: 10,-77 - 94: -12,-77 - 95: -43,-49 - 96: -43,-50 - 97: -43,-51 - 98: -31,-38 - 99: -62,-22 - 100: -69,-16 - 101: -76,-16 - 102: -78,-14 - 103: -66,-10 - 104: -67,19 - 105: -62,15 - 106: -50,24 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 2221: 19,-19 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 2228: 21,-21 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleNE - decals: - 1789: 42,-21 - 1790: 44,-21 - 1791: 46,-21 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleNW - decals: - 1786: 46,-21 - 1787: 44,-21 - 1788: 42,-21 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 1412: -3,-30 - 2283: 51,-21 - 2973: -73,-4 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 944: 76,-42 - 1411: 1,-30 - 1555: 72,-22 - 2282: 55,-21 - 2947: -79,8 - 2950: -79,-6 - 2971: -69,-4 - 2972: -76,-4 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 639: -41,-10 - 2117: -13,6 - 2281: 51,-17 - 2679: 22,-90 - 2976: -73,8 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 561: 1,36 - 638: -38,-10 - 943: 76,-40 - 972: 72,-19 - 2116: -11,6 - 2280: 55,-17 - 2680: 34,-90 - 2946: -79,10 - 2949: -79,-4 - 2974: -69,8 - 2975: -76,8 - - node: - color: '#DE3A3A96' - id: WarnFullGreyscale - decals: - 2748: -2,41 - 2749: -1,41 - 2750: 0,41 - 2751: 1,41 - 2752: 2,41 - 2753: 3,41 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 506: 24,37 - 507: 24,38 - 508: 24,39 - 509: 24,40 - 510: 24,41 - 511: 24,42 - 581: 11,-45 - 582: 11,-44 - 583: 11,-43 - 584: 11,-42 - 585: 11,-41 - 923: 74,-36 - 924: 74,-35 - 925: 74,-34 - 987: 78,-47 - 988: 78,-48 - 1024: 41,-54 - 1025: 41,-53 - 1026: 41,-52 - 1167: 67,-20 - 1168: 67,-19 - 1169: 67,-18 - 1624: 34,-36 - 1638: 34,-35 - 1643: 34,-37 - 2222: 19,-18 - 2223: 19,-17 - 2271: 51,-20 - 2272: 51,-19 - 2273: 51,-18 - 2318: 60,-32 - 2319: 60,-31 - 2320: 60,-30 - 2676: 22,-93 - 2677: 22,-92 - 2678: 22,-91 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - decals: - 1772: 46,-20 - 1773: 46,-19 - 1774: 46,-18 - 1775: 46,-17 - 1776: 44,-20 - 1777: 44,-19 - 1778: 44,-18 - 1779: 44,-17 - 1780: 42,-20 - 1781: 42,-19 - 1782: 42,-18 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleE - decals: - 2315: 46,-23 - - node: - color: '#334E6DC8' - id: WarnLineGreyscaleE - decals: - 1887: -7,-17 - 2091: -9,8 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleE - decals: - 2181: 41,-29 - 2182: 41,-28 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleN - decals: - 1913: -11,36 - 1924: -6,36 - 1973: -8,45 - 1974: -14,45 - 1975: -18,45 - 1976: -21,45 - 1977: -24,45 - 2160: 38,-22 - 2316: 45,-23 - 2902: -8,27 - 2903: -9,27 - - node: - color: '#D381C996' - id: WarnLineGreyscaleN - decals: - 2042: 66,-51 - 2355: 54,-40 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleN - decals: - 2153: 41,-23 - 2179: 40,-27 - 2180: 39,-27 - - node: - color: '#334E6DC8' - id: WarnLineGreyscaleN - decals: - 1888: -8,-12 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - decals: - 1783: 41,-21 - 1784: 43,-21 - 1785: 45,-21 - - node: - color: '#F5DB9E96' - id: WarnLineGreyscaleN - decals: - 2246: 19,-25 - 2247: 21,-25 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleS - decals: - 1912: -11,43 - 1936: -15,34 - 1968: -19,43 - 1969: -22,43 - 1970: -24,43 - 1971: -15,43 - 1972: -6,43 - 2738: 6,26 - 2739: 4,26 - - node: - color: '#334E6DC8' - id: WarnLineGreyscaleS - decals: - 1885: -14,-18 - 1886: -8,-20 - 2699: -1,-9 - - node: - color: '#D381C996' - id: WarnLineGreyscaleS - decals: - 2284: 54,-15 - 2285: 53,-15 - 2286: 52,-15 - 2293: 58,-15 - 2294: 66,-16 - 2353: 58,-42 - 2354: 56,-42 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleS - decals: - 2151: 40,-25 - 2152: 39,-25 - - node: - color: '#EFB34196' - id: WarnLineGreyscaleS - decals: - 2074: -6,6 - 2075: -4,6 - - node: - color: '#EFB34196' - id: WarnLineGreyscaleW - decals: - 2076: -7,8 - - node: - color: '#334E6DC8' - id: WarnLineGreyscaleW - decals: - 2785: 14,-26 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleW - decals: - 2314: 44,-24 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - decals: - 1761: 42,-20 - 1762: 42,-19 - 1763: 42,-18 - 1764: 44,-20 - 1765: 44,-19 - 1766: 44,-18 - 1767: 44,-17 - 1768: 46,-20 - 1769: 46,-19 - 1770: 46,-18 - 1771: 46,-17 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 489: 24,37 - 490: 23,37 - 491: 22,37 - 492: 21,32 - 493: 22,32 - 494: 23,32 - 495: 24,32 - 496: 25,32 - 557: -2,36 - 558: -1,36 - 559: 0,36 - 578: 9,-45 - 579: 10,-45 - 580: 11,-45 - 632: -40,-10 - 633: -39,-10 - 917: 72,-36 - 918: 73,-36 - 919: 74,-36 - 939: 78,-38 - 940: 77,-38 - 941: 76,-38 - 952: 63,-24 - 953: 62,-24 - 954: 61,-24 - 955: 60,-24 - 956: 59,-24 - 967: 70,-19 - 968: 71,-19 - 977: 68,-47 - 1017: 39,-54 - 1018: 41,-54 - 1153: 69,-19 - 1264: 11,-49 - 1265: 12,-49 - 1335: -73,-17 - 1336: -74,-17 - 1337: -72,-17 - 1338: -71,-17 - 2115: -12,6 - 2133: 50,-29 - 2134: 49,-29 - 2135: 48,-29 - 2217: 22,-21 - 2218: 21,-21 - 2219: 19,-19 - 2220: 18,-19 - 2277: 52,-17 - 2278: 53,-17 - 2279: 54,-17 - 2670: 33,-90 - 2671: 32,-90 - 2672: 31,-90 - 2673: 25,-90 - 2674: 24,-90 - 2675: 23,-90 - 2957: -70,8 - 2958: -71,8 - 2959: -72,8 - 2960: -77,8 - 2961: -78,8 - 2962: -79,8 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 500: 22,42 - 501: 22,41 - 502: 22,40 - 503: 22,39 - 504: 22,38 - 505: 22,37 - 554: -2,38 - 555: -2,37 - 556: -2,36 - 560: 1,35 - 562: 1,34 - 634: -38,-14 - 635: -38,-13 - 636: -38,-12 - 637: -38,-11 - 920: 72,-36 - 921: 72,-35 - 922: 72,-34 - 942: 76,-41 - 957: 59,-24 - 958: 59,-23 - 959: 59,-22 - 960: 59,-21 - 961: 59,-20 - 969: 72,-20 - 970: 72,-21 - 973: 68,-46 - 974: 68,-47 - 975: 68,-45 - 1021: 39,-54 - 1022: 39,-53 - 1023: 39,-52 - 1164: 65,-20 - 1165: 65,-19 - 1166: 65,-18 - 1574: 53,-28 - 2224: 21,-17 - 2225: 21,-18 - 2226: 21,-19 - 2227: 21,-20 - 2268: 55,-20 - 2269: 55,-19 - 2270: 55,-18 - 2300: 53,-27 - 2667: 34,-93 - 2668: 34,-92 - 2669: 34,-91 - 2920: -8,-54 - 2945: -79,9 - 2948: -79,-5 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 497: 22,42 - 498: 23,42 - 499: 24,42 - 547: 4,38 - 548: 3,38 - 549: 2,38 - 550: 1,38 - 551: 0,38 - 552: -1,38 - 553: -2,38 - 587: -23,-70 - 588: -24,-70 - 589: -25,-70 - 590: -26,-70 - 591: -27,-70 - 601: -50,-6 - 602: -51,-6 - 603: -52,-6 - 926: 74,-34 - 927: 73,-34 - 928: 72,-34 - 962: 59,-20 - 963: 60,-20 - 964: 61,-20 - 965: 62,-20 - 966: 63,-20 - 971: 70,-22 - 976: 68,-45 - 978: 70,-47 - 979: 71,-47 - 980: 72,-47 - 981: 73,-47 - 982: 74,-47 - 983: 75,-47 - 984: 76,-47 - 985: 77,-47 - 986: 78,-47 - 1019: 41,-52 - 1020: 39,-52 - 1152: 69,-22 - 1262: 11,-55 - 1263: 12,-55 - 1342: -33,3 - 1343: -32,3 - 1344: -31,3 - 1408: -1,-30 - 1409: 0,-30 - 1410: -2,-30 - 1413: 0,-25 - 1414: -1,-25 - 1415: -2,-25 - 1416: -3,-25 - 1417: 1,-25 - 1533: 76,-26 - 1534: 77,-26 - 1535: 78,-26 - 1536: 79,-26 - 1537: 80,-26 - 1538: 82,-26 - 1539: 81,-26 - 1554: 71,-22 - 2274: 54,-21 - 2275: 53,-21 - 2276: 52,-21 - 2951: -71,-4 - 2952: -72,-4 - 2953: -70,-4 - 2954: -78,-4 - 2955: -79,-4 - 2956: -77,-4 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 1600: -8,15 - 1610: 11,-19 - 1611: 11,-18 - 1612: 11,-17 - 1613: 11,-16 - 1614: 11,-15 - 1615: 11,-14 - 1616: 11,-13 - 1889: 11,-28 - 1890: 11,-27 - 1891: 11,-26 - 1892: 11,-25 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 1605: 16,37 - 1606: 15,37 - 1607: 14,37 - 1608: 13,37 - 1609: 12,37 - 1617: 11,-13 - 1618: 10,-13 - 1619: 9,-13 - 1620: 8,-13 - 1621: 7,-13 - 1622: 6,-13 - 1623: 5,-13 - 2256: 51,-38 - 2257: 52,-38 - 2258: 53,-38 - 2259: 54,-38 - 2260: 55,-38 - 2261: 56,-38 - 2262: 57,-38 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 1601: -7,16 - 1602: -6,16 - 1603: -5,16 - 1604: -4,16 - 1907: -12,53 - 1908: -13,53 - 1909: -14,53 - 1910: -15,53 - 1911: -16,53 - 2252: 47,-33 - 2253: 46,-33 - 2254: 45,-33 - 2255: 44,-33 - - node: - color: '#FFFFFFFF' - id: bushsnowa2 - decals: - 759: -14.995166,-26.958757 - - node: - color: '#FFFFFFFF' - id: bushsnowb1 - decals: - 760: -14.979541,-25.255632 - - node: - color: '#FFFFFFFF' - id: bushsnowb3 - decals: - 758: -15.010791,-24.068132 - - node: - color: '#A4610606' - id: splatter - decals: - 1532: 34.46607,8.395077 - type: DecalGrid - - version: 2 - data: - tiles: - -4,-4: - 0: 65535 - -4,-3: - 0: 65535 - -4,-2: - 0: 65535 - -4,-1: - 0: 65535 - -3,-4: - 0: 65535 - -3,-3: - 0: 63487 - 1: 2048 - -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-4: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - -1,-1: - 0: 65535 - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,0: - 0: 65487 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 1,3: - 0: 65535 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 2,2: - 0: 65523 - 1: 12 - 2,3: - 0: 65535 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 65529 - 1: 6 - 3,3: - 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 0,-1: - 0: 65535 - 1,-4: - 0: 65535 - 1,-3: - 0: 63487 - 1: 2048 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -4,2: - 0: 65535 - -4,3: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 32767 - 1: 32768 - -2,0: - 0: 65439 - -2,1: - 0: 57343 - 1: 8192 - -2,2: - 0: 65535 - -2,3: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 0: 65535 - 5,-3: - 0: 65535 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-4: - 0: 65535 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 65535 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65023 - 1: 512 - -8,-4: - 0: 65535 - -8,-3: - 0: 65535 - -8,-2: - 0: 65407 - 1: 128 - -8,-1: - 0: 65535 - -7,-4: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-4: - 0: 65535 - -6,-3: - 0: 65535 - -6,-2: - 0: 65535 - -6,-1: - 1: 1 - 0: 65534 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 1: 1 - 0: 65534 - -5,-1: - 0: 65535 - -8,-8: - 0: 65023 - 1: 512 - -8,-7: - 0: 57311 - 1: 8224 - -8,-6: - 0: 65535 - -8,-5: - 0: 65535 - -7,-8: - 0: 65535 - -7,-7: - 0: 65535 - -7,-6: - 0: 65535 - -7,-5: - 0: 65535 - -6,-8: - 0: 65533 - 1: 2 - -6,-7: - 0: 65535 - -6,-6: - 0: 65535 - -6,-5: - 0: 65535 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 - 4,-8: - 0: 65535 - 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-8: - 0: 65535 - 5,-7: - 0: 65535 - 5,-6: - 0: 65471 - 1: 64 - 5,-5: - 0: 65535 - 6,-8: - 0: 65519 - 1: 16 - 6,-7: - 0: 65535 - 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-8: - 0: 65535 - 7,-7: - 0: 65527 - 1: 8 - 7,-6: - 0: 65535 - 7,-5: - 0: 65535 - 0,-8: - 0: 65535 - 0,-7: - 1: 1 - 0: 63350 - 0,-6: - 0: 30583 - 0,-5: - 0: 65535 - 1,-8: - 0: 65535 - 1,-7: - 0: 65262 - 1,-6: - 0: 65214 - 1: 64 - 1,-5: - 0: 65535 - 2,-8: - 0: 65535 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 65535 - -3,-8: - 0: 65535 - -3,-7: - 1: 1 - 0: 65534 - -3,-6: - 0: 65535 - -3,-5: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 62259 - -2,-6: - 0: 65399 - -2,-5: - 0: 65535 - -1,-8: - 0: 65535 - -1,-7: - 0: 65531 - 1: 4 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 - -8,0: - 0: 65471 - -8,1: - 0: 65535 - -8,2: - 0: 65530 - -8,3: - 0: 13111 - -7,0: - 0: 65263 - -7,1: - 0: 65278 - -7,2: - 0: 65534 - -7,3: - 0: 1135 - -6,0: - 0: 65279 - 1: 256 - -6,1: - 0: 65503 - 1: 32 - -6,2: - 0: 65535 - -6,3: - 0: 61183 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -8,-12: - 0: 65535 - -8,-11: - 0: 61171 - 1: 12 - -8,-10: - 0: 65535 - -8,-9: - 0: 64751 - -7,-12: - 0: 65535 - -7,-11: - 0: 61183 - -7,-10: - 0: 65535 - -7,-9: - 0: 65535 - -6,-12: - 0: 63487 - -6,-11: - 0: 65535 - -6,-10: - 0: 61183 - 1: 4352 - -6,-9: - 1: 17 - 0: 65518 - -5,-12: - 0: 61183 - -5,-11: - 0: 65535 - -5,-10: - 0: 65535 - -5,-9: - 0: 65535 - -4,-12: - 0: 61439 - -4,-11: - 0: 63630 - -4,-10: - 0: 65268 - -4,-9: - 0: 62718 - -3,-12: - 0: 65535 - -3,-11: - 0: 63991 - 1: 1544 - -3,-10: - 0: 65535 - -3,-9: - 0: 65535 - -2,-12: - 0: 65535 - -2,-11: - 0: 63487 - 1: 2048 - -2,-10: - 0: 65535 - -2,-9: - 0: 65535 - -1,-12: - 0: 65535 - -1,-11: - 0: 65279 - 1: 256 - -1,-10: - 0: 65535 - -1,-9: - 0: 65535 - 0,-12: - 0: 65527 - 1: 8 - 0,-11: - 0: 57343 - 1: 8192 - 0,-10: - 0: 65535 - 0,-9: - 0: 65535 - 1,-12: - 0: 65535 - 1,-11: - 0: 65535 - 1,-10: - 0: 65535 - 1,-9: - 0: 65535 - 2,-12: - 0: 65535 - 2,-11: - 0: 65535 - 2,-10: - 0: 65535 - 2,-9: - 0: 65535 - 3,-12: - 0: 65535 - 3,-11: - 0: 65535 - 3,-10: - 0: 65535 - 3,-9: - 0: 65535 - 4,-12: - 0: 65535 - 4,-11: - 0: 65535 - 4,-10: - 0: 16383 - 1: 49152 - 4,-9: - 0: 65535 - 5,-12: - 0: 65535 - 5,-11: - 0: 65535 - 5,-10: - 0: 49151 - 1: 16384 - 5,-9: - 0: 65531 - 1: 4 - 6,-12: - 0: 16179 - 2: 204 - 3: 49152 - 6,-11: - 0: 65331 - 3: 204 - 6,-10: - 0: 61439 - 1: 4096 - 6,-9: - 0: 65535 - 7,-12: - 2: 17 - 0: 61422 - 3: 4096 - 7,-11: - 3: 17 - 0: 65518 - 7,-10: - 0: 65535 - 7,-9: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 40959 - 1: 24576 - 7,0: - 0: 65535 - 7,1: - 0: 65295 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - 0,4: - 0: 65535 - 0,5: - 0: 65535 - 0,6: - 0: 65535 - 0,7: - 0: 65535 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 1: 1 - 0: 65534 - -4,4: - 0: 65535 - -4,5: - 0: 30719 - 1: 34816 - -4,6: - 0: 57335 - 1: 8200 - -4,7: - 0: 65535 - -3,4: - 0: 65535 - -3,5: - 0: 32767 - 1: 32768 - -3,6: - 0: 65535 - -3,7: - 0: 64383 - 1: 1152 - -2,4: - 0: 65535 - -2,5: - 0: 32767 - 1: 32768 - -2,6: - 0: 65535 - -2,7: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 32767 - 1: 32768 - -1,6: - 0: 65535 - -1,7: - 1: 519 - 0: 65016 - 4,4: - 0: 65535 - 4,5: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 65535 - 5,4: - 0: 65279 - 1: 256 - 5,5: - 0: 65279 - 1: 256 - 5,6: - 0: 65535 - 5,7: - 0: 65535 - 6,4: - 0: 30591 - 6,5: - 0: 65535 - 6,6: - 0: 65519 - 1: 16 - 6,7: - 0: 65535 - 7,4: - 0: 8959 - 7,5: - 0: 4403 - 7,6: - 0: 65521 - 7,7: - 0: 13297 - -4,8: - 0: 65535 - -4,9: - 0: 65535 - -4,10: - 0: 65535 - -4,11: - 0: 65535 - -3,8: - 0: 63487 - 1: 2048 - -3,9: - 0: 32767 - 1: 32768 - -3,10: - 0: 65399 - 1: 136 - -3,11: - 0: 65535 - -2,8: - 0: 65279 - 1: 256 - -2,9: - 0: 65535 - -2,10: - 0: 65535 - -2,11: - 0: 65535 - -1,8: - 0: 65535 - -1,9: - 0: 65503 - 1: 32 - -1,10: - 0: 65535 - -1,11: - 0: 65311 - 0,8: - 0: 65535 - 0,9: - 0: 32767 - 1: 32768 - 0,10: - 0: 65535 - 0,11: - 0: 65295 - 1,8: - 0: 65535 - 1,9: - 0: 65535 - 1,10: - 0: 16319 - 1: 64 - 1,11: - 0: 32639 - 2,8: - 0: 65535 - 2,9: - 0: 43967 - 1: 21568 - 2,10: - 1: 69 - 0: 61370 - 2,11: - 0: 44971 - 3,8: - 0: 65535 - 3,9: - 0: 65535 - 3,10: - 0: 65535 - 3,11: - 0: 12066 - 4,8: - 0: 65535 - 4,9: - 0: 48895 - 1: 256 - 4,10: - 0: 4923 - 4,11: - 0: 7953 - 5,8: - 0: 65535 - 5,9: - 0: 65535 - 5,10: - 0: 61167 - 5,11: - 0: 20292 - 6,8: - 0: 65535 - 6,9: - 0: 30591 - 6,10: - 0: 30583 - 6,11: - 0: 8994 - 7,9: - 0: 7 - 7,8: - 0: 2 - 8,4: - 0: 52479 - 8,7: - 0: 16 - 8,5: - 0: 8 - 9,4: - 0: 247 - 9,5: - 0: 50737 - 9,6: - 0: 34824 - 9,7: - 0: 34952 - 10,4: - 0: 248 - 10,6: - 0: 20273 - 10,7: - 0: 36847 - 11,4: - 0: 61182 - 11,6: - 0: 40844 - 11,7: - 0: 35835 - 11,5: - 0: 52462 - 8,0: - 0: 65495 - 1: 32 - 4: 8 - 8,1: - 0: 65295 - 8,2: - 0: 65535 - 8,3: - 0: 65535 - 9,0: - 5: 15 - 0: 65520 - 9,1: - 0: 65359 - 1: 128 - 9,2: - 0: 65535 - 9,3: - 0: 32767 - 10,0: - 5: 1 - 0: 65534 - 10,1: - 0: 65535 - 10,2: - 0: 65471 - 1: 64 - 10,3: - 0: 35775 - 11,0: - 1: 7 - 0: 65528 - 11,1: - 0: 65535 - 11,2: - 0: 65535 - 11,3: - 0: 61167 - -8,4: - 0: 30579 - -8,5: - 0: 30583 - -8,6: - 0: 119 - -6,4: - 0: 64718 - -6,5: - 0: 63743 - -6,6: - 0: 19711 - -6,7: - 0: 59904 - -5,4: - 0: 61439 - 1: 4096 - -5,5: - 0: 65535 - -5,6: - 0: 20479 - -5,7: - 0: 64716 - -6,8: - 0: 65532 - -6,9: - 0: 65279 - -6,10: - 0: 65527 - 1: 8 - -5,8: - 0: 65535 - -5,9: - 0: 65535 - -5,10: - 0: 65531 - 1: 4 - -5,11: - 0: 65535 - -4,12: - 0: 65535 - -3,12: - 0: 65535 - -2,12: - 0: 65535 - -1,12: - 0: 65535 - -1,13: - 0: 255 - -12,0: - 0: 65535 - -12,1: - 0: 65535 - -12,2: - 0: 63487 - 1: 2048 - -12,3: - 0: 57343 - 1: 8192 - -11,0: - 0: 65535 - -11,1: - 0: 65535 - -11,2: - 0: 65535 - -11,3: - 0: 32767 - -10,0: - 0: 65535 - -10,1: - 0: 65535 - -10,2: - 0: 65535 - -10,3: - 0: 60671 - -9,0: - 0: 65199 - -9,1: - 0: 64254 - 1: 1024 - -9,2: - 0: 49146 - 1: 16384 - -9,3: - 0: 49151 - -12,4: - 0: 63487 - -12,5: - 0: 65535 - -12,6: - 0: 44869 - -12,7: - 0: 20479 - -11,4: - 0: 65215 - -11,5: - 1: 257 - 0: 65278 - -11,6: - 0: 18210 - -11,7: - 0: 18263 - -10,4: - 0: 57339 - 1: 8192 - -10,5: - 0: 65535 - -10,6: - 0: 255 - -9,4: - 0: 65529 - -9,5: - 0: 65535 - -9,6: - 0: 255 - -16,4: - 0: 57343 - -15,4: - 0: 65535 - -15,5: - 0: 17487 - -15,6: - 0: 19524 - -15,7: - 0: 19524 - -14,4: - 0: 65535 - -14,5: - 0: 39327 - -14,6: - 0: 44953 - -14,7: - 0: 20479 - -13,4: - 0: 65535 - -13,5: - 0: 65535 - -13,6: - 0: 61423 - -13,7: - 0: 17909 - -16,0: - 0: 65535 - -16,1: - 0: 65471 - 1: 64 - -16,2: - 0: 65535 - -16,3: - 0: 65535 - -15,0: - 0: 65535 - -15,1: - 0: 65535 - -15,2: - 0: 65535 - -15,3: - 0: 65535 - -14,0: - 0: 32767 - 1: 32768 - -14,1: - 0: 65535 - -14,2: - 0: 65535 - -14,3: - 0: 65535 - -13,0: - 0: 63487 - 1: 2048 - -13,1: - 0: 65535 - -13,2: - 0: 65535 - -13,3: - 0: 65535 - -20,1: - 0: 64766 - -20,2: - 0: 65535 - -19,1: - 0: 65535 - -19,2: - 1: 9 - 0: 65526 - -18,1: - 0: 65535 - -18,2: - 0: 65535 - -18,3: - 0: 34959 - -17,1: - 0: 65023 - -17,2: - 0: 65535 - -17,3: - 0: 65535 - -17,0: - 0: 56799 - -18,5: - 0: 12 - -18,4: - 0: 34952 - -17,4: - 1: 273 - 0: 65262 - -17,5: - 0: 127 - -21,2: - 0: 33996 - 1: 2048 - 3: 16384 - -21,1: - 0: 32768 - 3: 16384 - -20,-4: - 0: 65533 - 1: 2 - -20,-2: - 0: 65520 - -20,-1: - 0: 63743 - -19,-4: - 0: 65535 - -19,-2: - 0: 65520 - -19,-1: - 1: 9 - 0: 65526 - -18,-4: - 0: 65535 - -18,-2: - 0: 65520 - -18,-1: - 0: 65535 - -17,-4: - 0: 65535 - -17,-3: - 0: 65530 - 1: 4 - -17,-2: - 0: 65530 - 1: 4 - -17,-1: - 0: 65023 - -16,-4: - 0: 65535 - -16,-3: - 0: 65535 - -16,-2: - 0: 65535 - -16,-1: - 0: 65535 - -15,-4: - 0: 65535 - -15,-3: - 0: 65535 - -15,-2: - 0: 65535 - -15,-1: - 0: 65535 - -14,-4: - 0: 65023 - 1: 512 - -14,-3: - 0: 65535 - -14,-2: - 0: 65527 - 1: 8 - -14,-1: - 0: 65535 - -13,-4: - 0: 65535 - -13,-3: - 0: 65535 - -13,-2: - 0: 65467 - 1: 68 - -13,-1: - 0: 65535 - -12,-4: - 0: 65535 - -12,-3: - 0: 61439 - 1: 4096 - -12,-2: - 1: 4369 - 0: 61166 - -12,-1: - 0: 65535 - -11,-4: - 1: 1 - 0: 65534 - -11,-3: - 0: 65471 - 1: 64 - -11,-2: - 0: 65535 - -11,-1: - 0: 65535 - -10,-4: - 0: 65535 - -10,-3: - 0: 30719 - 1: 34816 - -10,-2: - 0: 30583 - 1: 34952 - -10,-1: - 0: 65535 - -9,-4: - 0: 65535 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - 12,0: - 0: 61439 - 12,1: - 0: 65534 - 12,2: - 0: 65527 - 1: 8 - 12,3: - 0: 65535 - 13,0: - 0: 65535 - 13,1: - 0: 65535 - 13,2: - 0: 65535 - 13,3: - 0: 65535 - 14,0: - 0: 65535 - 14,1: - 0: 65535 - 14,2: - 0: 65535 - 14,3: - 0: 65535 - 15,0: - 0: 65519 - 1: 16 - 15,1: - 0: 65535 - 15,2: - 0: 65535 - 15,3: - 0: 65535 - 8,-4: - 0: 65535 - 8,-3: - 0: 65535 - 8,-2: - 0: 32767 - 6: 32768 - 8,-1: - 0: 30591 - 5: 34944 - 9,-4: - 0: 65535 - 9,-3: - 0: 65535 - 9,-2: - 0: 57343 - 1: 8192 - 9,-1: - 0: 15 - 5: 65520 - 10,-4: - 0: 65535 - 10,-3: - 0: 65535 - 10,-2: - 0: 65535 - 10,-1: - 0: 61167 - 5: 4368 - 11,-4: - 0: 65535 - 11,-3: - 0: 65535 - 11,-2: - 0: 65535 - 11,-1: - 0: 65535 - 12,4: - 0: 32767 - 12,5: - 0: 23927 - 12,6: - 0: 20293 - 12,7: - 0: 36606 - 13,4: - 0: 61439 - 13,5: - 0: 11246 - 13,6: - 0: 40866 - 13,7: - 0: 36795 - 14,4: - 0: 65535 - 14,5: - 0: 51327 - 14,6: - 0: 310 - 15,4: - 0: 65535 - 15,5: - 0: 319 - 16,4: - 0: 56799 - 1: 8224 - 7: 512 - 16,5: - 0: 65535 - 16,6: - 0: 6559 - 16,7: - 0: 1 - 17,4: - 0: 65535 - 17,5: - 0: 11007 - 18,4: - 0: 5888 - 16,0: - 0: 65535 - 16,1: - 0: 65535 - 16,2: - 0: 65535 - 16,3: - 0: 65535 - 17,0: - 0: 65535 - 17,1: - 0: 65535 - 17,2: - 0: 65535 - 17,3: - 0: 65535 - 18,0: - 0: 65535 - 18,1: - 0: 65535 - 18,2: - 0: 65279 - 1: 256 - 18,3: - 0: 65535 - 19,0: - 0: 61455 - 19,1: - 0: 65280 - 19,2: - 0: 62455 - 19,3: - 0: 61683 - 20,0: - 0: 61715 - 20,1: - 0: 1792 - 20,2: - 0: 61456 - 20,3: - 0: 28672 - 21,0: - 0: 4096 - 12,-4: - 0: 65535 - 12,-3: - 0: 65535 - 12,-2: - 0: 65535 - 12,-1: - 0: 65535 - 13,-4: - 0: 65535 - 13,-3: - 0: 65535 - 13,-2: - 0: 65535 - 13,-1: - 0: 65535 - 14,-4: - 0: 65535 - 14,-3: - 0: 65535 - 14,-2: - 0: 65535 - 14,-1: - 0: 65535 - 15,-4: - 0: 65535 - 15,-3: - 0: 65535 - 15,-2: - 0: 65535 - 15,-1: - 0: 24575 - 1: 40960 - -20,-5: - 0: 65280 - -19,-5: - 0: 48896 - 1: 16384 - -18,-5: - 0: 57088 - 1: 8192 - -17,-5: - 0: 65356 - -17,-6: - 0: 32768 - -16,-6: - 0: 65312 - -16,-5: - 0: 65518 - -15,-6: - 0: 28640 - 1: 36864 - -15,-5: - 0: 65535 - -14,-6: - 0: 38672 - -14,-5: - 0: 65535 - -13,-5: - 0: 65519 - 1: 16 - -12,-5: - 0: 65535 - -12,-8: - 0: 34952 - -12,-7: - 0: 34952 - -12,-6: - 0: 2184 - -11,-8: - 0: 65535 - -11,-7: - 0: 65535 - -11,-6: - 0: 16383 - 1: 49152 - -11,-5: - 0: 65535 - -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 - -12,-12: - 0: 36608 - -12,-11: - 0: 1928 - -12,-10: - 0: 65520 - -12,-9: - 0: 61440 - -11,-12: - 0: 36750 - -11,-10: - 0: 65528 - -11,-11: - 0: 34952 - -10,-12: - 0: 65407 - 1: 128 - -10,-11: - 0: 35069 - 1: 2 - -10,-10: - 0: 65528 - -9,-12: - 0: 65523 - 1: 12 - -9,-11: - 0: 247 - 1: 8 - -9,-10: - 0: 32764 - 1: 32768 - -9,-9: - 0: 63628 - -8,-16: - 0: 65343 - -8,-15: - 0: 65535 - -8,-14: - 0: 65535 - -8,-13: - 0: 65535 - -7,-16: - 0: 65295 - -7,-15: - 0: 65535 - -7,-14: - 0: 65535 - -7,-13: - 0: 65535 - -6,-16: - 0: 65287 - -6,-15: - 0: 65407 - 1: 128 - -6,-14: - 0: 65535 - -6,-13: - 0: 62463 - 1: 3072 - -5,-16: - 0: 65535 - -5,-15: - 0: 65535 - -5,-14: - 0: 65535 - -5,-13: - 0: 65535 - -4,-16: - 0: 65535 - -4,-15: - 0: 65535 - -4,-14: - 0: 65535 - -4,-13: - 0: 65535 - -3,-16: - 0: 65535 - -3,-15: - 0: 65535 - -3,-14: - 0: 65535 - -3,-13: - 0: 65535 - -2,-16: - 0: 63743 - 1: 1792 - -2,-15: - 0: 65535 - -2,-14: - 0: 64511 - 1: 1024 - -2,-13: - 0: 65535 - -1,-16: - 0: 65535 - -1,-15: - 0: 65535 - -1,-14: - 1: 3 - 0: 65532 - -1,-13: - 0: 65535 - 0,-16: - 0: 65535 - 0,-15: - 0: 65535 - 0,-14: - 0: 65535 - 0,-13: - 0: 32767 - 1: 32768 - 1,-16: - 0: 65535 - 1,-15: - 0: 65405 - 1: 130 - 1,-14: - 0: 65535 - 1,-13: - 0: 65533 - 1: 2 - 2,-16: - 0: 56831 - 1: 8704 - 2,-15: - 0: 65535 - 2,-14: - 0: 65535 - 2,-13: - 0: 65535 - 3,-16: - 0: 65535 - 3,-15: - 0: 65535 - 3,-14: - 0: 57343 - 1: 8192 - 3,-13: - 0: 65501 - 1: 34 - 8,-12: - 0: 65535 - 8,-11: - 0: 65535 - 8,-10: - 0: 65535 - 8,-9: - 0: 65535 - 9,-12: - 0: 64767 - 1: 768 - 9,-11: - 0: 64991 - 1: 544 - 9,-10: - 0: 65535 - 9,-9: - 0: 65535 - 10,-12: - 0: 65535 - 10,-11: - 0: 65535 - 10,-10: - 0: 65535 - 10,-9: - 0: 65535 - 11,-12: - 0: 49151 - 1: 16384 - 11,-11: - 0: 65535 - 11,-10: - 0: 65535 - 11,-9: - 0: 65535 - 8,-8: - 0: 65535 - 8,-7: - 0: 65535 - 8,-6: - 1: 1 - 0: 65534 - 8,-5: - 0: 65535 - 9,-8: - 0: 65535 - 9,-7: - 0: 65535 - 9,-6: - 0: 65535 - 9,-5: - 0: 65527 - 1: 8 - 10,-8: - 0: 65535 - 10,-7: - 0: 65535 - 10,-6: - 0: 65535 - 10,-5: - 0: 64443 - 7: 1092 - 11,-8: - 0: 65535 - 11,-7: - 0: 65535 - 11,-6: - 0: 65519 - 1: 16 - 11,-5: - 0: 48063 - 7: 17472 - 8,-16: - 0: 61439 - 1: 4096 - 8,-15: - 0: 65535 - 8,-14: - 0: 65535 - 8,-13: - 0: 65535 - 9,-16: - 0: 65535 - 9,-15: - 0: 65535 - 9,-14: - 0: 65535 - 9,-13: - 0: 53247 - 1: 12288 - 10,-16: - 0: 61407 - 1: 4128 - 10,-15: - 0: 65535 - 10,-14: - 0: 56831 - 1: 8704 - 10,-13: - 0: 65533 - 1: 2 - 11,-16: - 0: 65535 - 11,-15: - 0: 65535 - 11,-14: - 0: 65535 - 11,-13: - 0: 65535 - 12,-8: - 0: 65467 - 1: 68 - 12,-7: - 0: 65535 - 12,-6: - 0: 65279 - 1: 256 - 12,-5: - 0: 65535 - 13,-8: - 0: 65535 - 13,-7: - 0: 28671 - 1: 36864 - 13,-6: - 0: 65535 - 13,-5: - 0: 65535 - 14,-8: - 0: 65535 - 14,-7: - 0: 65535 - 14,-6: - 0: 65535 - 14,-5: - 0: 65535 - 15,-8: - 0: 65535 - 15,-7: - 0: 65535 - 15,-6: - 0: 65535 - 15,-5: - 0: 65535 - 16,-8: - 0: 65535 - 16,-7: - 0: 65535 - 16,-6: - 0: 65535 - 16,-5: - 0: 65021 - 1: 514 - 17,-8: - 0: 65521 - 1: 14 - 17,-7: - 0: 65535 - 17,-6: - 0: 65535 - 17,-5: - 0: 65535 - 18,-8: - 1: 1027 - 0: 64508 - 18,-7: - 0: 64511 - 1: 1024 - 18,-6: - 0: 65535 - 18,-5: - 0: 65535 - 19,-8: - 0: 65535 - 19,-7: - 0: 65535 - 19,-6: - 0: 65531 - 1: 4 - 19,-5: - 0: 64511 - 20,-8: - 0: 65535 - 20,-7: - 0: 65535 - 20,-6: - 1: 1 - 0: 65534 - 20,-5: - 0: 29431 - 21,-8: - 0: 65531 - 1: 4 - 21,-7: - 0: 65535 - 21,-6: - 0: 65519 - 1: 16 - 21,-5: - 0: 563 - 22,-8: - 1: 7 - 0: 65528 - 22,-7: - 0: 65535 - 22,-6: - 0: 247 - 1: 8 - 23,-8: - 0: 13107 - 23,-7: - 0: 13107 - 23,-6: - 0: 4371 - 16,-12: - 0: 65535 - 16,-11: - 0: 65535 - 16,-10: - 0: 65535 - 16,-9: - 0: 65535 - 17,-12: - 0: 65535 - 17,-11: - 0: 65535 - 17,-10: - 0: 65535 - 17,-9: - 0: 65535 - 18,-12: - 0: 65535 - 18,-11: - 0: 65529 - 1: 6 - 18,-10: - 0: 65279 - 1: 256 - 18,-9: - 0: 65535 - 19,-12: - 0: 65535 - 19,-11: - 0: 65535 - 19,-10: - 0: 65535 - 19,-9: - 0: 65535 - 12,-12: - 0: 65535 - 12,-11: - 0: 65535 - 12,-10: - 0: 65535 - 12,-9: - 0: 65535 - 13,-12: - 0: 65535 - 13,-11: - 0: 65535 - 13,-10: - 0: 65535 - 13,-9: - 0: 65535 - 14,-12: - 0: 65535 - 14,-11: - 0: 65535 - 14,-10: - 0: 65535 - 14,-9: - 0: 65535 - 15,-12: - 0: 65535 - 15,-11: - 0: 65535 - 15,-10: - 0: 65535 - 15,-9: - 0: 65535 - 16,-16: - 0: 65535 - 16,-15: - 0: 65535 - 16,-14: - 0: 65535 - 16,-13: - 0: 65535 - 17,-16: - 0: 65535 - 17,-15: - 0: 65279 - 1: 256 - 17,-14: - 0: 65535 - 17,-13: - 0: 65535 - 18,-16: - 0: 65439 - 18,-15: - 0: 65535 - 18,-14: - 0: 65535 - 18,-13: - 0: 65279 - 1: 256 - 19,-16: - 0: 65535 - 19,-15: - 0: 65535 - 19,-14: - 0: 65407 - 1: 128 - 19,-13: - 0: 65535 - 20,-12: - 0: 65535 - 20,-11: - 0: 65535 - 20,-10: - 0: 65535 - 20,-9: - 0: 65535 - 21,-12: - 0: 61439 - 1: 4096 - 21,-11: - 0: 65535 - 21,-10: - 0: 65535 - 21,-9: - 0: 49151 - 1: 16384 - 22,-12: - 0: 4096 - 22,-11: - 0: 4111 - 22,-10: - 0: 7951 - 22,-9: - 0: 61713 - 23,-11: - 0: 15 - 23,-10: - 0: 3855 - 23,-9: - 0: 61440 - 20,-16: - 0: 64255 - 1: 1280 - 20,-15: - 0: 65535 - 20,-14: - 0: 65519 - 1: 16 - 20,-13: - 0: 65535 - 21,-16: - 0: 61676 - 21,-15: - 1: 5 - 0: 65530 - 21,-14: - 0: 65535 - 21,-13: - 0: 65467 - 1: 68 - 22,-16: - 0: 8818 - 22,-15: - 0: 32630 - 22,-14: - 0: 61719 - 22,-13: - 0: 785 - 23,-15: - 0: 3840 - 12,-16: - 0: 65535 - 12,-15: - 0: 48119 - 1: 17408 - 12,-14: - 0: 65535 - 12,-13: - 0: 65535 - 13,-16: - 0: 65535 - 13,-15: - 0: 65522 - 13,-14: - 1: 1 - 0: 65534 - 13,-13: - 0: 65501 - 3: 34 - 14,-16: - 0: 65535 - 14,-15: - 0: 65527 - 14,-14: - 1: 1 - 0: 65534 - 14,-13: - 0: 65535 - 15,-16: - 0: 65535 - 15,-15: - 0: 65522 - 15,-14: - 0: 65535 - 15,-13: - 0: 65535 - 16,-4: - 0: 65535 - 16,-3: - 0: 65535 - 16,-2: - 0: 65535 - 16,-1: - 0: 65535 - 17,-4: - 0: 65535 - 17,-3: - 0: 65535 - 17,-2: - 0: 65535 - 17,-1: - 0: 65535 - 18,-4: - 0: 65535 - 18,-3: - 0: 65535 - 18,-2: - 0: 65527 - 1: 8 - 18,-1: - 0: 65535 - 19,-4: - 0: 65535 - 19,-3: - 0: 65407 - 1: 128 - 19,-2: - 0: 65407 - 1: 128 - 19,-1: - 0: 65535 - 20,-4: - 0: 49139 - 1: 16384 - 20,-3: - 0: 65535 - 20,-2: - 0: 65535 - 20,-1: - 0: 65535 - 21,-4: - 0: 13104 - 21,-3: - 0: 12595 - 21,-2: - 0: 13105 - 21,-1: - 0: 51 - 16,-19: - 0: 63244 - 16,-18: - 0: 65527 - 16,-17: - 0: 65535 - 17,-19: - 0: 63883 - 17,-18: - 0: 65433 - 17,-17: - 0: 40959 - 1: 24576 - 17,-20: - 0: 63478 - 18,-18: - 0: 30542 - 18,-17: - 0: 65399 - 18,-20: - 0: 11966 - 18,-19: - 0: 16046 - 19,-20: - 0: 12287 - 19,-19: - 0: 24575 - 19,-18: - 0: 17487 - 19,-17: - 0: 65476 - 20,-20: - 0: 11002 - 20,-19: - 0: 11002 - 20,-18: - 0: 30511 - 20,-17: - 0: 65527 - 21,-20: - 0: 12287 - 21,-19: - 0: 24575 - 21,-18: - 0: 21855 - 21,-17: - 0: 5621 - 22,-20: - 0: 8995 - 22,-19: - 0: 8995 - 22,-18: - 0: 8739 - 22,-17: - 0: 8818 - 12,-19: - 0: 16354 - 12,-18: - 0: 30515 - 12,-17: - 0: 22391 - 1: 8192 - 15,-19: - 0: 65466 - 15,-18: - 0: 57215 - 1: 128 - 15,-17: - 0: 21853 - 8,-19: - 0: 3840 - 8,-18: - 0: 65248 - 8,-17: - 0: 65535 - 9,-19: - 0: 36736 - 9,-18: - 0: 65534 - 9,-17: - 0: 65535 - 9,-20: - 0: 34944 - 10,-20: - 0: 61440 - 10,-19: - 0: 65013 - 1: 512 - 10,-18: - 0: 65535 - 10,-17: - 0: 65535 - 11,-19: - 0: 65392 - 11,-18: - 0: 65535 - 11,-17: - 0: 65535 - 4,-19: - 0: 65520 - 4,-18: - 0: 65535 - 4,-17: - 0: 34959 - 8: 30576 - 5,-20: - 0: 62540 - 5,-19: - 0: 65280 - 5,-17: - 0: 65535 - 6,-20: - 0: 64719 - 6,-19: - 0: 62532 - 6,-18: - 0: 17476 - 6,-17: - 0: 34956 - 7,-20: - 0: 30583 - 7,-19: - 0: 31940 - 7,-17: - 0: 64718 - 7,-18: - 0: 41510 - 4,-16: - 0: 65535 - 4,-15: - 0: 65535 - 4,-14: - 0: 65535 - 4,-13: - 0: 65535 - 5,-16: - 0: 65535 - 5,-15: - 0: 65535 - 5,-14: - 0: 65535 - 5,-13: - 0: 65535 - 6,-16: - 0: 30664 - 6,-15: - 0: 16375 - 3: 49152 - 6,-14: - 0: 16179 - 3: 49356 - 6,-13: - 0: 16179 - 3: 204 - 2: 49152 - 7,-16: - 0: 34953 - 7,-15: - 0: 61432 - 3: 4096 - 7,-14: - 3: 4113 - 0: 61422 - 7,-13: - 3: 17 - 0: 61422 - 2: 4096 - -4,-20: - 0: 65248 - -4,-19: - 0: 65535 - -4,-18: - 0: 65535 - -4,-17: - 0: 65535 - -3,-20: - 0: 65534 - -3,-19: - 0: 56831 - 1: 8704 - -3,-18: - 0: 65533 - 1: 2 - -3,-17: - 0: 65535 - -2,-20: - 0: 65535 - -2,-19: - 0: 65535 - -2,-18: - 0: 65535 - -2,-17: - 0: 61439 - 1: 4096 - -1,-20: - 0: 65535 - -1,-19: - 0: 65535 - -1,-18: - 0: 65535 - -1,-17: - 0: 24575 - 1: 40960 - -8,-19: - 0: 65535 - -8,-18: - 0: 16183 - -8,-17: - 0: 65523 - -7,-19: - 0: 62704 - -7,-18: - 0: 65535 - -7,-17: - 0: 65535 - -6,-19: - 0: 32508 - 1: 32768 - -6,-18: - 0: 65535 - -6,-17: - 0: 24575 - 1: 8192 - -6,-20: - 0: 52428 - -5,-20: - 0: 4369 - -5,-19: - 0: 48113 - 1: 17408 - -5,-18: - 0: 65467 - 1: 68 - -5,-17: - 0: 65503 - 1: 32 - -12,-16: - 0: 20302 - -12,-15: - 0: 61422 - -12,-14: - 0: 49070 - -12,-13: - 0: 62 - -11,-16: - 0: 61410 - -11,-15: - 0: 15922 - -11,-14: - 0: 62434 - -11,-13: - 0: 61167 - -10,-16: - 0: 65535 - -10,-15: - 0: 65535 - -10,-14: - 0: 65535 - -10,-13: - 0: 65535 - -9,-16: - 0: 65535 - -9,-15: - 0: 65535 - -9,-14: - 0: 65535 - -9,-13: - 0: 65535 - -12,-18: - 0: 44800 - -12,-17: - 0: 61422 - -11,-18: - 0: 8960 - -11,-17: - 0: 32434 - -10,-17: - 0: 34963 - -10,-18: - 0: 27776 - -9,-18: - 0: 36767 - -9,-17: - 0: 65528 - -9,-19: - 0: 60620 - 0,-20: - 0: 65535 - 0,-19: - 0: 65535 - 0,-18: - 0: 65535 - 0,-17: - 0: 65023 - 1: 512 - 1,-20: - 0: 65535 - 1,-19: - 0: 65535 - 1,-18: - 0: 65535 - 1,-17: - 0: 65535 - 2,-20: - 0: 65523 - 2,-19: - 0: 65407 - 1: 128 - 2,-18: - 0: 65405 - 1: 130 - 2,-17: - 0: 65535 - 3,-20: - 0: 62256 - 3,-19: - 0: 65507 - 1: 16 - 3,-18: - 0: 65535 - 3,-17: - 0: 34959 - 9: 30576 - 0,-24: - 0: 63624 - 0,-23: - 0: 63624 - 0,-22: - 0: 63624 - 0,-21: - 0: 63624 - 1,-24: - 0: 63624 - 1,-23: - 0: 63624 - 1,-22: - 0: 63624 - 1,-21: - 0: 63624 - 2,-23: - 0: 64512 - 2,-22: - 0: 64750 - 2,-21: - 0: 4300 - 3,-24: - 0: 35939 - 3,-23: - 0: 61440 - 3,-22: - 0: 273 - -4,-24: - 0: 310 - -4,-23: - 0: 61440 - -4,-22: - 0: 255 - -3,-23: - 0: 47496 - -3,-22: - 0: 35065 - -3,-24: - 0: 34952 - -3,-21: - 0: 34952 - -2,-24: - 0: 63624 - -2,-23: - 0: 63624 - -2,-22: - 0: 63624 - -2,-21: - 0: 63624 - -1,-24: - 0: 63624 - -1,-23: - 0: 63624 - -1,-22: - 0: 63624 - -1,-21: - 0: 63624 - 4,-24: - 0: 4096 - 4,-23: - 0: 62563 - 5,-23: - 0: 65262 - 5,-21: - 0: 65476 - 5,-24: - 0: 61164 - 5,-22: - 0: 17646 - 6,-24: - 0: 65535 - 6,-23: - 0: 65535 - 6,-22: - 0: 61183 - 6,-21: - 0: 65022 - 1: 512 - 7,-24: - 0: 65535 - 7,-23: - 0: 65535 - 7,-22: - 0: 65535 - 7,-21: - 0: 30719 - 8,-24: - 0: 65527 - 8,-23: - 0: 65535 - 8,-22: - 0: 65535 - 8,-21: - 0: 255 - 8,-28: - 0: 30591 - 8,-27: - 0: 30583 - 8,-26: - 0: 32767 - 8,-25: - 0: 65527 - 8,-30: - 0: 29489 - 8,-29: - 0: 65399 - 5,-28: - 0: 52430 - 5,-27: - 0: 60620 - 5,-26: - 0: 52974 - 5,-25: - 0: 61164 - 6,-28: - 0: 65535 - 6,-27: - 0: 65535 - 6,-26: - 0: 65535 - 6,-25: - 0: 65535 - 7,-28: - 0: 65535 - 7,-27: - 0: 65535 - 7,-26: - 0: 65535 - 7,-25: - 0: 65535 - 5,-29: - 0: 61132 - 5,-30: - 0: 51328 - 6,-30: - 0: 65523 - 6,-29: - 0: 65535 - 7,-30: - 0: 65528 - 7,-29: - 0: 65535 - -6,-23: - 0: 60544 - -6,-22: - 0: 49358 - -6,-21: - 0: 52428 - -5,-23: - 0: 53558 - -5,-22: - 0: 4605 - -5,-21: - 0: 4369 - -5,-24: - 0: 51200 - -15,-16: - 0: 24415 - -15,-15: - 0: 34959 - -15,-14: - 0: 2184 - -14,-16: - 0: 20302 - -14,-15: - 0: 65278 - -14,-14: - 0: 36782 - -13,-16: - 0: 20302 - -13,-15: - 0: 61422 - -13,-14: - 0: 65454 - -15,-18: - 0: 34816 - -15,-17: - 0: 34952 - -14,-18: - 0: 44800 - -14,-17: - 0: 65278 - -13,-18: - 0: 44800 - -13,-17: - 0: 61422 - -13,-12: - 0: 3840 - -13,-11: - 0: 30720 - -13,-10: - 0: 65527 - -13,-9: - 0: 33911 - -21,-4: - 0: 34952 - -21,-2: - 1: 2048 - 0: 32768 - 3: 17600 - -21,-1: - 0: 49160 - 3: 196 - -15,8: - 0: 19532 - -15,9: - 0: 19532 - -15,10: - 0: 12 - -14,8: - 0: 20479 - -14,9: - 0: 45055 - -14,10: - 0: 15 - -13,8: - 0: 17909 - -13,9: - 0: 17909 - -13,10: - 0: 62965 - -12,8: - 0: 20479 - -12,9: - 0: 45055 - -12,10: - 0: 4383 - -11,8: - 0: 18263 - -11,9: - 0: 18263 - -11,10: - 0: 7 - -5,12: - 0: 65533 - 1: 2 - 4,12: - 0: 17 - 6,12: - 0: 2 - 9,8: - 0: 34952 - 9,9: - 0: 34952 - 9,10: - 0: 8 - 10,8: - 0: 36847 - 10,9: - 0: 20463 - 10,10: - 0: 15 - 11,8: - 0: 35835 - 11,9: - 0: 39931 - 11,10: - 0: 60139 - 12,8: - 0: 36606 - 12,9: - 0: 20222 - 12,10: - 0: 12862 - 13,8: - 0: 36799 - 13,9: - 0: 40895 - 13,10: - 0: 15 - 24,-11: - 0: 3 - 24,-10: - 0: 3855 - 24,-9: - 0: 61440 - 25,-10: - 0: 3855 - 26,-10: - 0: 3855 - 27,-10: - 0: 61391 - 27,-11: - 0: 60544 - 27,-9: - 0: 140 - 28,-11: - 0: 65535 - 28,-10: - 0: 65535 - 28,-9: - 0: 20479 - 28,-12: - 0: 16384 - 29,-11: - 0: 63281 - 29,-10: - 0: 65535 - 29,-9: - 0: 311 - 30,-10: - 0: 369 - 20,-23: - 0: 61440 - 20,-22: - 0: 11002 - 20,-21: - 0: 11002 - 21,-22: - 0: 24320 - 21,-21: - 0: 12287 - 22,-22: - 0: 8960 - 22,-21: - 0: 8995 - 18,-22: - 0: 11776 - 18,-21: - 0: 11951 - 19,-22: - 0: 24456 - 19,-21: - 0: 12287 - 19,-23: - 0: 32768 - -4,-25: - 0: 51200 - -3,-25: - 0: 36342 - -3,-26: - 0: 51328 - -2,-26: - 0: 65520 - -2,-25: - 0: 36608 - -1,-26: - 0: 65520 - -1,-25: - 0: 36744 - 0,-26: - 0: 65520 - 0,-25: - 0: 36608 - 1,-26: - 0: 65520 - 1,-25: - 0: 36736 - 2,-26: - 0: 4096 - 2,-25: - 0: 36211 - 3,-25: - 0: 4096 - -11,-9: - 0: 63624 - -10,-9: - 0: 63624 - 4,-20: - 0: 61440 - 5,-18: - 0: 4369 - -16,5: - 0: 12 - -20,3: - 0: 15 - -19,3: - 0: 15 - -21,3: - 0: 8 - 16,-20: - 0: 61174 - 12,-20: - 0: 12288 - 13,-20: - 0: 40445 - 13,-19: - 0: 18417 - 13,-18: - 0: 17476 - 13,-17: - 0: 17476 - 14,-20: - 0: 14335 - 14,-19: - 0: 241 - 15,-20: - 0: 44719 - 11,-20: - 0: 61440 - 9,-21: - 0: 15 - 10,-21: - 0: 15 - 11,-21: - 0: 15 - 16,-21: - 0: 24591 - 17,-21: - 0: 24591 - 12,-21: - 0: 15 - 13,-21: - 0: 37137 - 14,-21: - 0: 63232 - 15,-21: - 0: 43694 - -7,10: - 0: 56729 - -7,11: - 0: 40415 - -7,9: - 0: 32768 - -6,11: - 0: 65535 - 0,12: - 0: 65535 - 0,13: - 0: 8959 - 0,14: - 0: 15 - 1,12: - 0: 30583 - 1,13: - 0: 127 - 1,14: - 0: 15 - 2,13: - 0: 547 - 2,14: - 0: 1 - 2,12: - 0: 8738 - -4,13: - 0: 32767 - -4,14: - 0: 3916 - -3,13: - 0: 4031 - 1: 64 - -3,14: - 0: 3855 - -2,13: - 1: 1 - 0: 12286 - -2,14: - 0: 1831 - -1,14: - 0: 15 - -7,12: - 0: 39321 - -7,13: - 0: 58175 - -7,14: - 0: 3072 - -6,12: - 0: 57339 - 1: 8196 - -6,13: - 0: 64175 - -6,14: - 0: 3976 - -5,13: - 0: 63631 - -5,14: - 0: 3840 - -20,0: - 0: 65535 - -19,0: - 0: 65535 - -18,0: - 0: 65535 - -21,0: - 0: 52974 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 18.472576 - - 69.49208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 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 - - volume: 2500 - temperature: 235 - moles: - - 18.472576 - - 69.49208 - - 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: - - 10.091824 - - 37.964485 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 15.635188 - - 58.8181 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - joints: - docking46345: !type:WeldJoint - bodyB: 11906 - bodyA: 8364 - id: docking46345 - localAnchorB: -0.5,-1 - localAnchorA: -66.5,22 - damping: 42.40074 - stiffness: 380.58817 - type: Joint - - type: OccluderTree - - type: Shuttle - - nextUpdate: 5417.8279988 - type: GridPathfinding - - type: RadiationGridResistance - - nextShake: 0 - shakeTimes: 10 - type: GravityShake - - type: GasTileOverlay -- uid: 8365 - type: ReinforcedWindow - components: - - pos: 3.5,0.5 - parent: 8364 - type: Transform -- uid: 8366 - type: ReinforcedWindow - components: - - pos: -6.5,0.5 - parent: 8364 - type: Transform -- uid: 8367 - type: ReinforcedWindow - components: - - pos: -5.5,0.5 - parent: 8364 - type: Transform -- uid: 8368 - type: ReinforcedWindow - components: - - pos: 3.5,1.5 - parent: 8364 - type: Transform -- uid: 8369 - type: ReinforcedWindow - components: - - pos: -4.5,0.5 - parent: 8364 - type: Transform -- uid: 8370 - type: ReinforcedWindow - components: - - pos: 5.5,0.5 - parent: 8364 - type: Transform -- uid: 8371 - type: WallReinforced - components: - - pos: 11.5,-6.5 - parent: 8364 - type: Transform -- uid: 8372 - type: WallReinforced - components: - - pos: 10.5,-6.5 - parent: 8364 - type: Transform -- uid: 8373 - type: ReinforcedWindow - components: - - pos: -4.5,1.5 - parent: 8364 - type: Transform -- uid: 8374 - type: LampGold - components: - - pos: 26.320675,-9.895369 - parent: 8364 - type: Transform -- uid: 8375 - type: WallReinforced - components: - - pos: -11.5,-6.5 - parent: 8364 - type: Transform -- uid: 8376 - type: ReinforcedWindow - components: - - pos: 7.5,-3.5 - parent: 8364 - type: Transform -- uid: 8377 - type: ReinforcedWindow - components: - - pos: 4.5,0.5 - parent: 8364 - type: Transform -- uid: 8378 - type: ReinforcedWindow - components: - - pos: -13.5,-6.5 - parent: 8364 - type: Transform -- uid: 8379 - type: WallReinforced - components: - - pos: -12.5,-6.5 - parent: 8364 - type: Transform -- uid: 8380 - type: ReinforcedWindow - components: - - pos: 4.5,-3.5 - parent: 8364 - type: Transform -- uid: 8381 - type: ReinforcedWindow - components: - - pos: -2.5,-3.5 - parent: 8364 - type: Transform -- uid: 8382 - type: ReinforcedWindow - components: - - pos: -0.5,-3.5 - parent: 8364 - type: Transform -- uid: 8383 - type: CableApcExtension - components: - - pos: 16.5,20.5 - parent: 8364 - type: Transform -- uid: 8384 - type: ClosetLegalFilled - components: - - pos: 12.5,28.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8385 - type: WeaponDisablerPractice - components: - - pos: 25.540077,32.58242 - parent: 8364 - type: Transform -- uid: 8386 - type: CableApcExtension - components: - - pos: 15.5,24.5 - parent: 8364 - type: Transform -- uid: 8387 - type: CableApcExtension - components: - - pos: 15.5,22.5 - parent: 8364 - type: Transform -- uid: 8388 - type: IntercomSupply - components: - - pos: -26.5,-28.5 - parent: 8364 - type: Transform -- uid: 8389 - type: TargetClown - components: - - pos: 23.5,41.5 - parent: 8364 - type: Transform -- uid: 8390 - type: IntercomCommand - components: - - rot: 3.141592653589793 rad - pos: -3.5,-9.5 - parent: 8364 - type: Transform -- uid: 8391 - type: CarpetBlue - components: - - pos: 14.5,27.5 - parent: 8364 - type: Transform -- uid: 8392 - type: TableWood - components: - - pos: 16.5,27.5 - parent: 8364 - type: Transform -- uid: 8393 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 12.5,25.5 - parent: 8364 - type: Transform -- uid: 8394 - type: CarpetBlue - components: - - pos: 14.5,28.5 - parent: 8364 - type: Transform -- uid: 8395 - type: CarpetBlue - components: - - pos: 15.5,28.5 - parent: 8364 - type: Transform -- uid: 8396 - type: TableWood - components: - - pos: 13.5,25.5 - parent: 8364 - type: Transform -- uid: 8397 - type: TableWood - components: - - pos: 13.5,24.5 - parent: 8364 - type: Transform -- uid: 8398 - type: TableWood - components: - - pos: 17.5,25.5 - parent: 8364 - type: Transform -- uid: 8399 - type: TableWood - components: - - pos: 17.5,24.5 - parent: 8364 - type: Transform -- uid: 8400 - type: CarpetBlue - components: - - pos: 16.5,27.5 - parent: 8364 - type: Transform -- uid: 8401 - type: CarpetGreen - components: - - pos: 16.5,25.5 - parent: 8364 - type: Transform -- uid: 8402 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8403 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 17.5,27.5 - parent: 8364 - type: Transform -- uid: 8404 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 17.5,28.5 - parent: 8364 - type: Transform -- uid: 8405 - type: Carpet - components: - - pos: 14.5,25.5 - parent: 8364 - type: Transform -- uid: 8406 - type: Carpet - components: - - pos: 13.5,25.5 - parent: 8364 - type: Transform -- uid: 8407 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8408 - type: Carpet - components: - - pos: 14.5,24.5 - parent: 8364 - type: Transform -- uid: 8409 - type: WindoorSecurityLocked - components: - - name: Courtroom - type: MetaData - - pos: 14.5,23.5 - parent: 8364 - type: Transform -- uid: 8410 - type: Grille - components: - - pos: 15.5,23.5 - parent: 8364 - type: Transform -- uid: 8411 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 18.5,21.5 - parent: 8364 - type: Transform -- uid: 8412 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 17.5,22.5 - parent: 8364 - type: Transform -- uid: 8413 - type: ReinforcedWindow - components: - - pos: 15.5,23.5 - parent: 8364 - type: Transform -- uid: 8414 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 15.5,22.5 - parent: 8364 - type: Transform -- uid: 8415 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 18.5,22.5 - parent: 8364 - type: Transform -- uid: 8416 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 17.5,21.5 - parent: 8364 - type: Transform -- uid: 8417 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 18.5,25.5 - parent: 8364 - type: Transform -- uid: 8418 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 13.5,22.5 - parent: 8364 - type: Transform -- uid: 8419 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 18.5,24.5 - parent: 8364 - type: Transform -- uid: 8420 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 12.5,24.5 - parent: 8364 - type: Transform -- uid: 8421 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 12.5,21.5 - parent: 8364 - type: Transform -- uid: 8422 - type: BookAtmosWaste - components: - - pos: 62.740063,-2.5267155 - parent: 8364 - type: Transform -- uid: 8423 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 13.5,21.5 - parent: 8364 - type: Transform -- uid: 8424 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 12.5,22.5 - parent: 8364 - type: Transform -- uid: 8425 - type: CableMV - components: - - pos: 14.5,27.5 - parent: 8364 - type: Transform -- uid: 8426 - type: CarpetBlue - components: - - pos: 15.5,27.5 - parent: 8364 - type: Transform -- uid: 8427 - type: CableMV - components: - - pos: 11.5,27.5 - parent: 8364 - type: Transform -- uid: 8428 - type: WindoorSecurityLocked - components: - - name: Courtroom - type: MetaData - - pos: 16.5,23.5 - parent: 8364 - type: Transform -- uid: 8429 - type: CarpetGreen - components: - - pos: 17.5,25.5 - parent: 8364 - type: Transform -- uid: 8430 - type: Carpet - components: - - pos: 13.5,24.5 - parent: 8364 - type: Transform -- uid: 8431 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 16.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8432 - type: GasPipeBend - components: - - pos: 27.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8433 - type: CarpetGreen - components: - - pos: 17.5,24.5 - parent: 8364 - type: Transform -- uid: 8434 - type: CableHV - components: - - pos: 16.5,30.5 - parent: 8364 - type: Transform -- uid: 8435 - type: CableApcExtension - components: - - pos: 17.5,32.5 - parent: 8364 - type: Transform -- uid: 8436 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: 18.5,26.5 - parent: 8364 - type: Transform -- uid: 8437 - type: CarpetBlue - components: - - pos: 16.5,28.5 - parent: 8364 - type: Transform -- uid: 8438 - type: ComfyChair - components: - - pos: 15.5,28.5 - parent: 8364 - type: Transform -- uid: 8439 - type: Carpet - components: - - pos: 12.5,25.5 - parent: 8364 - type: Transform -- uid: 8440 - type: Carpet - components: - - pos: 12.5,24.5 - parent: 8364 - type: Transform -- uid: 8441 - type: WallmountTelescreen - components: - - pos: -4.5,14.5 - parent: 8364 - type: Transform -- uid: 8442 - type: ComputerTelevision - components: - - pos: -3.5,14.5 - parent: 8364 - type: Transform -- uid: 8443 - type: Table - components: - - pos: 12.5,19.5 - parent: 8364 - type: Transform -- uid: 8444 - type: BoxFolderBlue - components: - - pos: 13.5,25.5 - parent: 8364 - type: Transform -- uid: 8445 - type: BoxFolderRed - components: - - pos: 17.5,25.5 - parent: 8364 - type: Transform -- uid: 8446 - type: Paper - components: - - pos: 12.5,19.5 - parent: 8364 - type: Transform -- uid: 8447 - type: Paper - components: - - pos: 12.5,19.5 - parent: 8364 - type: Transform -- uid: 8448 - type: Paper - components: - - pos: 12.5,19.5 - parent: 8364 - type: Transform -- uid: 8449 - type: Paper - components: - - pos: 12.5,19.5 - parent: 8364 - type: Transform -- uid: 8450 - type: Paper - components: - - pos: 12.5,19.5 - parent: 8364 - type: Transform -- uid: 8451 - type: Paper - components: - - pos: 13.5,24.5 - parent: 8364 - type: Transform -- uid: 8452 - type: Paper - components: - - pos: 13.5,24.5 - parent: 8364 - type: Transform -- uid: 8453 - type: Paper - components: - - pos: 13.5,24.5 - parent: 8364 - type: Transform -- uid: 8454 - type: Paper - components: - - pos: 13.5,24.5 - parent: 8364 - type: Transform -- uid: 8455 - type: Paper - components: - - pos: 13.5,24.5 - parent: 8364 - type: Transform -- uid: 8456 - type: Paper - components: - - pos: 17.5,24.5 - parent: 8364 - type: Transform -- uid: 8457 - type: Paper - components: - - pos: 17.5,24.5 - parent: 8364 - type: Transform -- uid: 8458 - type: Paper - components: - - pos: 17.5,24.5 - parent: 8364 - type: Transform -- uid: 8459 - type: Paper - components: - - pos: 17.5,24.5 - parent: 8364 - type: Transform -- uid: 8460 - type: Paper - components: - - pos: 17.5,24.5 - parent: 8364 - type: Transform -- uid: 8461 - type: Pen - components: - - pos: 13.5,24.5 - parent: 8364 - type: Transform -- uid: 8462 - type: Pen - components: - - pos: 17.5,24.5 - parent: 8364 - type: Transform -- uid: 8463 - type: Pen - components: - - pos: 12.5,19.5 - parent: 8364 - type: Transform -- uid: 8464 - type: ComputerTechnologyDiskTerminal - components: - - pos: 72.5,-17.5 - parent: 8364 - type: Transform -- uid: 8465 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 15.5,19.5 - parent: 8364 - type: Transform -- uid: 8466 - type: CableHV - components: - - pos: 0.5,26.5 - parent: 8364 - type: Transform -- uid: 8467 - type: RandomVendingDrinks - components: - - pos: 14.5,19.5 - parent: 8364 - type: Transform -- uid: 8468 - type: WallSolid - components: - - pos: 15.5,18.5 - parent: 8364 - type: Transform -- uid: 8469 - type: RandomPosterLegit - components: - - pos: 11.5,26.5 - parent: 8364 - type: Transform -- uid: 8470 - type: SignSecurearea - components: - - pos: 11.5,28.5 - parent: 8364 - type: Transform -- uid: 8471 - type: DisposalUnit - components: - - pos: 16.5,19.5 - parent: 8364 - type: Transform -- uid: 8472 - type: ReinforcedWindow - components: - - pos: 8.5,29.5 - parent: 8364 - type: Transform -- uid: 8473 - type: FoodBoxDonut - components: - - pos: 15.5,27.5 - parent: 8364 - type: Transform -- uid: 8474 - type: LampGold - components: - - pos: 14.5,27.5 - parent: 8364 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 8475 - type: Poweredlight - components: - - pos: 15.5,28.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8476 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,22.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8477 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,22.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8478 - type: ClothingEyesGlassesSunglasses - components: - - pos: -12.483962,13.826879 - parent: 8364 - type: Transform -- uid: 8479 - type: ExtinguisherCabinetFilled - components: - - pos: 19.5,26.5 - parent: 8364 - type: Transform -- uid: 8480 - type: LockerSyndicatePersonal - components: - - pos: 3.5,39.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 8542 - - 7418 - - 8808 - type: ContainerContainer -- uid: 8481 - type: CableApcExtension - components: - - pos: 15.5,27.5 - parent: 8364 - type: Transform -- uid: 8482 - type: CableApcExtension - components: - - pos: 15.5,28.5 - parent: 8364 - type: Transform -- uid: 8483 - type: WindoorSecurityLocked - components: - - name: Courtroom - type: MetaData - - rot: 3.141592653589793 rad - pos: 14.5,23.5 - parent: 8364 - type: Transform -- uid: 8484 - type: AirlockGlass - components: - - name: Courtroom - type: MetaData - - pos: 11.5,20.5 - parent: 8364 - type: Transform -- uid: 8485 - type: CableMV - components: - - pos: 8.5,27.5 - parent: 8364 - type: Transform -- uid: 8486 - type: WaterTankFull - components: - - pos: 19.5,18.5 - parent: 8364 - type: Transform -- uid: 8487 - type: WeldingFuelTankFull - components: - - pos: 18.5,18.5 - parent: 8364 - type: Transform -- uid: 8488 - type: CableHV - components: - - pos: -0.5,26.5 - parent: 8364 - type: Transform -- uid: 8489 - type: CableHV - components: - - pos: -1.5,26.5 - parent: 8364 - type: Transform -- uid: 8490 - type: Grille - components: - - pos: 11.5,40.5 - parent: 8364 - type: Transform -- uid: 8491 - type: CableHV - components: - - pos: 2.5,26.5 - parent: 8364 - type: Transform -- uid: 8492 - type: ReinforcedWindow - components: - - pos: 11.5,37.5 - parent: 8364 - type: Transform -- uid: 8493 - type: CableHV - components: - - pos: -12.5,26.5 - parent: 8364 - type: Transform -- uid: 8494 - type: CableHV - components: - - pos: 21.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8495 - type: CableHV - components: - - pos: 21.5,24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8496 - type: CableHV - components: - - pos: 21.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8497 - type: CableHV - components: - - pos: 21.5,26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8498 - type: CableHV - components: - - pos: 21.5,27.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8499 - type: CableHV - components: - - pos: 21.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8500 - type: CableHV - components: - - pos: 21.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8501 - type: CableHV - components: - - pos: 21.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8502 - type: CableHV - components: - - pos: 20.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8503 - type: CableHV - components: - - pos: 19.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8504 - type: CableHV - components: - - pos: 18.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8505 - type: CableHV - components: - - pos: 17.5,30.5 - parent: 8364 - type: Transform -- uid: 8506 - type: WallSolid - components: - - pos: 16.5,29.5 - parent: 8364 - type: Transform -- uid: 8507 - type: CableHV - components: - - pos: 15.5,30.5 - parent: 8364 - type: Transform -- uid: 8508 - type: CableHV - components: - - pos: 14.5,30.5 - parent: 8364 - type: Transform -- uid: 8509 - type: CableHV - components: - - pos: 13.5,30.5 - parent: 8364 - type: Transform -- uid: 8510 - type: CableHV - components: - - pos: 12.5,30.5 - parent: 8364 - type: Transform -- uid: 8511 - type: CableHV - components: - - pos: 11.5,30.5 - parent: 8364 - type: Transform -- uid: 8512 - type: CableHV - components: - - pos: 10.5,30.5 - parent: 8364 - type: Transform -- uid: 8513 - type: CableHV - components: - - pos: 9.5,30.5 - parent: 8364 - type: Transform -- uid: 8514 - type: CableHV - components: - - pos: 8.5,30.5 - parent: 8364 - type: Transform -- uid: 8515 - type: AirlockSecurityGlassLocked - components: - - name: Equipment Room - type: MetaData - - pos: 8.5,34.5 - parent: 8364 - type: Transform -- uid: 8516 - type: CableHV - components: - - pos: 7.5,30.5 - parent: 8364 - type: Transform -- uid: 8517 - type: CableHV - components: - - pos: 7.5,29.5 - parent: 8364 - type: Transform -- uid: 8518 - type: CableHV - components: - - pos: 7.5,28.5 - parent: 8364 - type: Transform -- uid: 8519 - type: CableHV - components: - - pos: 7.5,27.5 - parent: 8364 - type: Transform -- uid: 8520 - type: CableHV - components: - - pos: 6.5,26.5 - parent: 8364 - type: Transform -- uid: 8521 - type: CableHV - components: - - pos: 4.5,26.5 - parent: 8364 - type: Transform -- uid: 8522 - type: CableHV - components: - - pos: 3.5,26.5 - parent: 8364 - type: Transform -- uid: 8523 - type: CableHV - components: - - pos: -4.5,26.5 - parent: 8364 - type: Transform -- uid: 8524 - type: GasPipeTJunction - components: - - pos: -6.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8525 - type: CableHV - components: - - pos: -9.5,26.5 - parent: 8364 - type: Transform -- uid: 8526 - type: GasPipeTJunction - components: - - pos: -0.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8527 - type: CableHV - components: - - pos: -11.5,26.5 - parent: 8364 - type: Transform -- uid: 8528 - type: CableHV - components: - - pos: -8.5,26.5 - parent: 8364 - type: Transform -- uid: 8529 - type: CableHV - components: - - pos: -7.5,26.5 - parent: 8364 - type: Transform -- uid: 8530 - type: CableHV - components: - - pos: -5.5,26.5 - parent: 8364 - type: Transform -- uid: 8531 - type: GasPipeStraight - components: - - pos: -10.5,25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8532 - type: CableHV - components: - - pos: -3.5,26.5 - parent: 8364 - type: Transform -- uid: 8533 - type: CableMV - components: - - pos: 8.5,38.5 - parent: 8364 - type: Transform -- uid: 8534 - type: CableMV - components: - - pos: 8.5,37.5 - parent: 8364 - type: Transform -- uid: 8535 - type: CableMV - components: - - pos: 8.5,36.5 - parent: 8364 - type: Transform -- uid: 8536 - type: CableMV - components: - - pos: 8.5,35.5 - parent: 8364 - type: Transform -- uid: 8537 - type: CableMV - components: - - pos: 8.5,34.5 - parent: 8364 - type: Transform -- uid: 8538 - type: CableMV - components: - - pos: 8.5,33.5 - parent: 8364 - type: Transform -- uid: 8539 - type: CableMV - components: - - pos: 8.5,32.5 - parent: 8364 - type: Transform -- uid: 8540 - type: CableMV - components: - - pos: 8.5,31.5 - parent: 8364 - type: Transform -- uid: 8541 - type: CableMV - components: - - pos: 8.5,30.5 - parent: 8364 - type: Transform -- uid: 8542 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 8480 - type: Transform - - canCollide: False - type: Physics -- uid: 8543 - type: TableWood - components: - - pos: 14.5,27.5 - parent: 8364 - type: Transform -- uid: 8544 - type: AirlockBrigGlassLocked - components: - - pos: -11.5,28.5 - parent: 8364 - type: Transform -- uid: 8545 - type: TableWood - components: - - pos: 15.5,27.5 - parent: 8364 - type: Transform -- uid: 8546 - type: WardrobePrisonFilled - components: - - pos: -0.5,23.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8547 - type: WardrobePrisonFilled - components: - - pos: -4.5,23.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8548 - type: CableMV - components: - - pos: 9.5,27.5 - parent: 8364 - type: Transform -- uid: 8549 - type: SignPrison - components: - - pos: -6.5,33.5 - parent: 8364 - type: Transform -- uid: 8550 - type: CableMV - components: - - pos: 10.5,27.5 - parent: 8364 - type: Transform -- uid: 8551 - type: CableMV - components: - - pos: 13.5,27.5 - parent: 8364 - type: Transform -- uid: 8552 - type: CableMV - components: - - pos: 12.5,27.5 - parent: 8364 - type: Transform -- uid: 8553 - type: LockerEvidence - components: - - pos: -12.5,24.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8554 - type: LockerEvidence - components: - - pos: -12.5,23.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8555 - type: LockerEvidence - components: - - pos: -12.5,22.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8556 - type: WindoorSecurityLocked - components: - - name: Courtroom - type: MetaData - - rot: 3.141592653589793 rad - pos: 16.5,23.5 - parent: 8364 - type: Transform -- uid: 8557 - type: CableApcExtension - components: - - pos: 15.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8558 - type: CableApcExtension - components: - - pos: 15.5,23.5 - parent: 8364 - type: Transform -- uid: 8559 - type: CableApcExtension - components: - - pos: 14.5,23.5 - parent: 8364 - type: Transform -- uid: 8560 - type: CableApcExtension - components: - - pos: 13.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8561 - type: CableApcExtension - components: - - pos: 17.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8562 - type: CableApcExtension - components: - - pos: 15.5,25.5 - parent: 8364 - type: Transform -- uid: 8563 - type: CableApcExtension - components: - - pos: 16.5,23.5 - parent: 8364 - type: Transform -- uid: 8564 - type: CableApcExtension - components: - - pos: 15.5,21.5 - parent: 8364 - type: Transform -- uid: 8565 - type: CableApcExtension - components: - - pos: 15.5,20.5 - parent: 8364 - type: Transform -- uid: 8566 - type: CableApcExtension - components: - - pos: 14.5,20.5 - parent: 8364 - type: Transform -- uid: 8567 - type: CableApcExtension - components: - - pos: 13.5,20.5 - parent: 8364 - type: Transform -- uid: 8568 - type: CableApcExtension - components: - - pos: 17.5,20.5 - parent: 8364 - type: Transform -- uid: 8569 - type: WindoorSecurityLocked - components: - - name: Holding Cell - type: MetaData - - pos: 9.5,25.5 - parent: 8364 - type: Transform -- uid: 8570 - type: Rack - components: - - pos: 10.5,24.5 - parent: 8364 - type: Transform -- uid: 8571 - type: Handcuffs - components: - - pos: 10.5,24.5 - parent: 8364 - type: Transform -- uid: 8572 - type: Handcuffs - components: - - pos: 10.5,24.5 - parent: 8364 - type: Transform -- uid: 8573 - type: Handcuffs - components: - - pos: 10.5,24.5 - parent: 8364 - type: Transform -- uid: 8574 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 8.5,24.5 - parent: 8364 - type: Transform -- uid: 8575 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 8.5,23.5 - parent: 8364 - type: Transform -- uid: 8576 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 10.5,23.5 - parent: 8364 - type: Transform -- uid: 8577 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 9.5,23.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8578 - type: CableHV - components: - - pos: 31.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8579 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 16.5,20.5 - parent: 8364 - type: Transform -- uid: 8580 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,20.5 - parent: 8364 - type: Transform -- uid: 8581 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,20.5 - parent: 8364 - type: Transform -- uid: 8582 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,20.5 - parent: 8364 - type: Transform -- uid: 8583 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,20.5 - parent: 8364 - type: Transform -- uid: 8584 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,17.5 - parent: 8364 - type: Transform -- uid: 8585 - type: DisposalPipe - components: - - pos: 21.5,18.5 - parent: 8364 - type: Transform -- uid: 8586 - type: DisposalPipe - components: - - pos: 21.5,19.5 - parent: 8364 - type: Transform -- uid: 8587 - type: DisposalJunction - components: - - pos: 21.5,20.5 - parent: 8364 - type: Transform -- uid: 8588 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 21.5,17.5 - parent: 8364 - type: Transform -- uid: 8589 - type: AirlockSecurityGlassLocked - components: - - pos: -8.5,28.5 - parent: 8364 - type: Transform -- uid: 8590 - type: SpawnPointSecurityOfficer - components: - - pos: 9.5,40.5 - parent: 8364 - type: Transform -- uid: 8591 - type: Syringe - components: - - pos: -8.886397,32.559914 - parent: 8364 - type: Transform -- uid: 8592 - type: SignSecurearea - components: - - pos: 7.5,22.5 - parent: 8364 - type: Transform -- uid: 8593 - type: TableReinforced - components: - - pos: 1.5,22.5 - parent: 8364 - type: Transform -- uid: 8594 - type: TableReinforced - components: - - pos: 2.5,22.5 - parent: 8364 - type: Transform -- uid: 8595 - type: TableReinforced - components: - - pos: 3.5,23.5 - parent: 8364 - type: Transform -- uid: 8596 - type: TableReinforced - components: - - pos: 3.5,24.5 - parent: 8364 - type: Transform -- uid: 8597 - type: RadioHandheld - components: - - pos: 3.5,23.5 - parent: 8364 - type: Transform -- uid: 8598 - type: Paper - components: - - pos: 3.5,24.5 - parent: 8364 - type: Transform -- uid: 8599 - type: Paper - components: - - pos: 3.5,24.5 - parent: 8364 - type: Transform -- uid: 8600 - type: Paper - components: - - pos: 3.5,24.5 - parent: 8364 - type: Transform -- uid: 8601 - type: Paper - components: - - pos: 3.5,24.5 - parent: 8364 - type: Transform -- uid: 8602 - type: Paper - components: - - pos: 3.5,24.5 - parent: 8364 - type: Transform -- uid: 8603 - type: Pen - components: - - pos: 3.5,24.5 - parent: 8364 - type: Transform -- uid: 8604 - type: WindoorSecurityLocked - components: - - name: Brig Desk - type: MetaData - - rot: 3.141592653589793 rad - pos: 1.5,22.5 - parent: 8364 - type: Transform -- uid: 8605 - type: WindoorSecurityLocked - components: - - name: Brig Desk - type: MetaData - - rot: 3.141592653589793 rad - pos: 2.5,22.5 - parent: 8364 - type: Transform -- uid: 8606 - type: ShuttersNormalOpen - components: - - pos: 3.5,23.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver -- uid: 8607 - type: ShuttersNormalOpen - components: - - pos: 3.5,24.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver -- uid: 8608 - type: Windoor - components: - - name: Reception Desk - type: MetaData - - pos: 2.5,22.5 - parent: 8364 - type: Transform -- uid: 8609 - type: Windoor - components: - - name: Reception Desk - type: MetaData - - pos: 1.5,22.5 - parent: 8364 - type: Transform -- uid: 8610 - type: Windoor - components: - - name: Brig Desk - type: MetaData - - rot: 1.5707963267948966 rad - pos: 3.5,23.5 - parent: 8364 - type: Transform -- uid: 8611 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: 3.5,24.5 - parent: 8364 - type: Transform -- uid: 8612 - type: Handcuffs - components: - - pos: 3.5,23.5 - parent: 8364 - type: Transform -- uid: 8613 - type: Handcuffs - components: - - pos: 3.5,23.5 - parent: 8364 - type: Transform -- uid: 8614 - type: ShuttersNormalOpen - components: - - pos: 2.5,22.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver -- uid: 8615 - type: ShuttersNormalOpen - components: - - pos: 1.5,22.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver -- uid: 8616 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,24.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8617 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 2.5,23.5 - parent: 8364 - type: Transform -- uid: 8618 - type: ReinforcedWindow - components: - - pos: -13.5,39.5 - parent: 8364 - type: Transform -- uid: 8619 - type: WindoorBrigLocked - components: - - rot: -1.5707963267948966 rad - pos: -12.5,29.5 - parent: 8364 - type: Transform -- uid: 8620 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -16.5,30.5 - parent: 8364 - type: Transform -- uid: 8621 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -6.5,34.5 - parent: 8364 - type: Transform -- uid: 8622 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 11.5,39.5 - parent: 8364 - type: Transform -- uid: 8623 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 5.5,38.5 - parent: 8364 - type: Transform -- uid: 8624 - type: WindoorSecurityLocked - components: - - name: Cell 3 - type: MetaData - - pos: -1.5,25.5 - parent: 8364 - type: Transform -- uid: 8625 - type: WindoorSecurityLocked - components: - - name: Cell 2 - type: MetaData - - pos: -5.5,25.5 - parent: 8364 - type: Transform -- uid: 8626 - type: WindoorSecurityLocked - components: - - name: Cell 1 - type: MetaData - - pos: -9.5,25.5 - parent: 8364 - type: Transform -- uid: 8627 - type: BedsheetWhite - components: - - pos: -10.5,23.5 - parent: 8364 - type: Transform -- uid: 8628 - type: BedsheetWhite - components: - - pos: -6.5,23.5 - parent: 8364 - type: Transform -- uid: 8629 - type: BedsheetWhite - components: - - pos: -2.5,23.5 - parent: 8364 - type: Transform -- uid: 8630 - type: Bed - components: - - pos: -10.5,23.5 - parent: 8364 - type: Transform -- uid: 8631 - type: Bed - components: - - pos: -6.5,23.5 - parent: 8364 - type: Transform -- uid: 8632 - type: Bed - components: - - pos: -2.5,23.5 - parent: 8364 - type: Transform -- uid: 8633 - type: SpawnPointSecurityOfficer - components: - - pos: 9.5,39.5 - parent: 8364 - type: Transform -- uid: 8634 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -20.5,22.5 - parent: 8364 - type: Transform -- uid: 8635 - type: ClothingOuterSuitFire - components: - - pos: 27.448183,21.624187 - parent: 8364 - type: Transform -- uid: 8636 - type: CableApcExtension - components: - - pos: -21.5,42.5 - parent: 8364 - type: Transform -- uid: 8637 - type: CableApcExtension - components: - - pos: -21.5,41.5 - parent: 8364 - type: Transform -- uid: 8638 - type: CableApcExtension - components: - - pos: -18.5,41.5 - parent: 8364 - type: Transform -- uid: 8639 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8640 - type: CableMV - components: - - pos: -13.5,25.5 - parent: 8364 - type: Transform -- uid: 8641 - type: Table - components: - - pos: -14.5,22.5 - parent: 8364 - type: Transform -- uid: 8642 - type: AirlockSecurityGlassLocked - components: - - name: Evidence Storage - type: MetaData - - pos: -13.5,25.5 - parent: 8364 - type: Transform -- uid: 8643 - type: AirlockSecurityGlassLocked - components: - - name: Brig Desk - type: MetaData - - pos: 1.5,25.5 - parent: 8364 - type: Transform -- uid: 8644 - type: ShuttersWindowOpen - components: - - pos: 18.5,23.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9936 - type: SignalReceiver -- uid: 8645 - type: ShuttersWindowOpen - components: - - pos: 17.5,23.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9936 - type: SignalReceiver -- uid: 8646 - type: ShuttersWindowOpen - components: - - pos: 16.5,23.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9936 - type: SignalReceiver -- uid: 8647 - type: ShuttersWindowOpen - components: - - pos: 15.5,23.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9936 - type: SignalReceiver -- uid: 8648 - type: ShuttersWindowOpen - components: - - pos: 14.5,23.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9936 - type: SignalReceiver -- uid: 8649 - type: ShuttersWindowOpen - components: - - pos: 13.5,23.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9936 - type: SignalReceiver -- uid: 8650 - type: ShuttersWindowOpen - components: - - pos: 12.5,23.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9936 - type: SignalReceiver -- uid: 8651 - type: CableApcExtension - components: - - pos: -19.5,46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8652 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,24.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8653 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,24.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8654 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,24.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8655 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -13.5,22.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8656 - type: ReinforcedWindow - components: - - pos: -10.5,25.5 - parent: 8364 - type: Transform -- uid: 8657 - type: APCBasic - components: - - name: Brig APC - type: MetaData - - pos: -3.5,29.5 - parent: 8364 - type: Transform - - startingCharge: 12000 - type: Battery - - loadingNetworkDemand: 120 - currentReceiving: 120.00047 - currentSupply: 120 - supplyRampPosition: -0.00047302246 - type: PowerNetworkBattery -- uid: 8658 - type: CableMV - components: - - pos: 2.5,27.5 - parent: 8364 - type: Transform -- uid: 8659 - type: CableMV - components: - - pos: 7.5,29.5 - parent: 8364 - type: Transform -- uid: 8660 - type: CableMV - components: - - pos: 7.5,28.5 - parent: 8364 - type: Transform -- uid: 8661 - type: CableMV - components: - - pos: 7.5,27.5 - parent: 8364 - type: Transform -- uid: 8662 - type: CableMV - components: - - pos: 7.5,26.5 - parent: 8364 - type: Transform -- uid: 8663 - type: CableMV - components: - - pos: 6.5,26.5 - parent: 8364 - type: Transform -- uid: 8664 - type: CableMV - components: - - pos: 5.5,26.5 - parent: 8364 - type: Transform -- uid: 8665 - type: CableMV - components: - - pos: 4.5,26.5 - parent: 8364 - type: Transform -- uid: 8666 - type: CableMV - components: - - pos: 3.5,26.5 - parent: 8364 - type: Transform -- uid: 8667 - type: CableMV - components: - - pos: 2.5,26.5 - parent: 8364 - type: Transform -- uid: 8668 - type: GasPipeTJunction - components: - - pos: -8.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8669 - type: CableMV - components: - - pos: 0.5,26.5 - parent: 8364 - type: Transform -- uid: 8670 - type: CableMV - components: - - pos: -0.5,26.5 - parent: 8364 - type: Transform -- uid: 8671 - type: CableMV - components: - - pos: -1.5,26.5 - parent: 8364 - type: Transform -- uid: 8672 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -5.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8673 - type: CableApcExtension - components: - - pos: -5.5,27.5 - parent: 8364 - type: Transform -- uid: 8674 - type: CableApcExtension - components: - - pos: -7.5,27.5 - parent: 8364 - type: Transform -- uid: 8675 - type: CableApcExtension - components: - - pos: -6.5,27.5 - parent: 8364 - type: Transform -- uid: 8676 - type: CableApcExtension - components: - - pos: -8.5,27.5 - parent: 8364 - type: Transform -- uid: 8677 - type: CableApcExtension - components: - - pos: -9.5,27.5 - parent: 8364 - type: Transform -- uid: 8678 - type: CableMV - components: - - pos: -3.5,26.5 - parent: 8364 - type: Transform -- uid: 8679 - type: CableMV - components: - - pos: -4.5,28.5 - parent: 8364 - type: Transform -- uid: 8680 - type: CableApcExtension - components: - - pos: -3.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8681 - type: CableApcExtension - components: - - pos: -4.5,29.5 - parent: 8364 - type: Transform -- uid: 8682 - type: CableApcExtension - components: - - pos: -5.5,29.5 - parent: 8364 - type: Transform -- uid: 8683 - type: CableApcExtension - components: - - pos: -5.5,30.5 - parent: 8364 - type: Transform -- uid: 8684 - type: CableApcExtension - components: - - pos: -6.5,30.5 - parent: 8364 - type: Transform -- uid: 8685 - type: CableApcExtension - components: - - pos: -8.5,30.5 - parent: 8364 - type: Transform -- uid: 8686 - type: CableApcExtension - components: - - pos: -7.5,30.5 - parent: 8364 - type: Transform -- uid: 8687 - type: CableApcExtension - components: - - pos: -4.5,28.5 - parent: 8364 - type: Transform -- uid: 8688 - type: CableApcExtension - components: - - pos: -4.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8689 - type: CableApcExtension - components: - - pos: -2.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8690 - type: CableApcExtension - components: - - pos: -1.5,25.5 - parent: 8364 - type: Transform -- uid: 8691 - type: CableApcExtension - components: - - pos: -4.5,27.5 - parent: 8364 - type: Transform -- uid: 8692 - type: CableApcExtension - components: - - pos: -3.5,27.5 - parent: 8364 - type: Transform -- uid: 8693 - type: CableApcExtension - components: - - pos: -2.5,27.5 - parent: 8364 - type: Transform -- uid: 8694 - type: CableApcExtension - components: - - pos: -1.5,27.5 - parent: 8364 - type: Transform -- uid: 8695 - type: CableApcExtension - components: - - pos: 2.5,27.5 - parent: 8364 - type: Transform -- uid: 8696 - type: CableApcExtension - components: - - pos: 3.5,27.5 - parent: 8364 - type: Transform -- uid: 8697 - type: CableApcExtension - components: - - pos: 4.5,27.5 - parent: 8364 - type: Transform -- uid: 8698 - type: CableApcExtension - components: - - pos: 5.5,27.5 - parent: 8364 - type: Transform -- uid: 8699 - type: CableApcExtension - components: - - pos: 6.5,27.5 - parent: 8364 - type: Transform -- uid: 8700 - type: CableApcExtension - components: - - pos: 7.5,27.5 - parent: 8364 - type: Transform -- uid: 8701 - type: CableApcExtension - components: - - pos: 8.5,27.5 - parent: 8364 - type: Transform -- uid: 8702 - type: CableApcExtension - components: - - pos: 9.5,27.5 - parent: 8364 - type: Transform -- uid: 8703 - type: CableApcExtension - components: - - pos: 9.5,26.5 - parent: 8364 - type: Transform -- uid: 8704 - type: CableApcExtension - components: - - pos: 9.5,25.5 - parent: 8364 - type: Transform -- uid: 8705 - type: CableApcExtension - components: - - pos: 9.5,24.5 - parent: 8364 - type: Transform -- uid: 8706 - type: CableApcExtension - components: - - pos: 5.5,26.5 - parent: 8364 - type: Transform -- uid: 8707 - type: CableApcExtension - components: - - pos: 5.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8708 - type: CableApcExtension - components: - - pos: 5.5,24.5 - parent: 8364 - type: Transform -- uid: 8709 - type: CableApcExtension - components: - - pos: 5.5,23.5 - parent: 8364 - type: Transform -- uid: 8710 - type: CableApcExtension - components: - - pos: 5.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8711 - type: CableApcExtension - components: - - pos: 4.5,22.5 - parent: 8364 - type: Transform -- uid: 8712 - type: CableApcExtension - components: - - pos: 3.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8713 - type: CableApcExtension - components: - - pos: 2.5,26.5 - parent: 8364 - type: Transform -- uid: 8714 - type: CableApcExtension - components: - - pos: 2.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8715 - type: CableApcExtension - components: - - pos: -9.5,26.5 - parent: 8364 - type: Transform -- uid: 8716 - type: CableApcExtension - components: - - pos: -0.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8717 - type: Bed - components: - - pos: -6.5,31.5 - parent: 8364 - type: Transform -- uid: 8718 - type: CableApcExtension - components: - - pos: 1.5,27.5 - parent: 8364 - type: Transform -- uid: 8719 - type: CableApcExtension - components: - - pos: -9.5,25.5 - parent: 8364 - type: Transform -- uid: 8720 - type: CableApcExtension - components: - - pos: -10.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8721 - type: CableApcExtension - components: - - pos: -5.5,26.5 - parent: 8364 - type: Transform -- uid: 8722 - type: CableApcExtension - components: - - pos: 2.5,24.5 - parent: 8364 - type: Transform -- uid: 8723 - type: CableApcExtension - components: - - pos: 0.5,27.5 - parent: 8364 - type: Transform -- uid: 8724 - type: CableApcExtension - components: - - pos: -0.5,27.5 - parent: 8364 - type: Transform -- uid: 8725 - type: CableApcExtension - components: - - pos: -5.5,25.5 - parent: 8364 - type: Transform -- uid: 8726 - type: CableApcExtension - components: - - pos: -6.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8727 - type: CableApcExtension - components: - - pos: -8.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8728 - type: CableApcExtension - components: - - pos: -1.5,26.5 - parent: 8364 - type: Transform -- uid: 8729 - type: CableApcExtension - components: - - pos: -1.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8730 - type: CableApcExtension - components: - - pos: -2.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8731 - type: CableApcExtension - components: - - pos: -0.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8732 - type: CableApcExtension - components: - - pos: -5.5,24.5 - parent: 8364 - type: Transform -- uid: 8733 - type: CableApcExtension - components: - - pos: -5.5,23.5 - parent: 8364 - type: Transform -- uid: 8734 - type: CableApcExtension - components: - - pos: -5.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8735 - type: CableApcExtension - components: - - pos: -6.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8736 - type: CableApcExtension - components: - - pos: -4.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8737 - type: CableApcExtension - components: - - pos: -9.5,24.5 - parent: 8364 - type: Transform -- uid: 8738 - type: CableApcExtension - components: - - pos: -9.5,23.5 - parent: 8364 - type: Transform -- uid: 8739 - type: CableApcExtension - components: - - pos: -9.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8740 - type: CableApcExtension - components: - - pos: -10.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8741 - type: CableApcExtension - components: - - pos: -8.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8742 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,30.5 - parent: 8364 - type: Transform -- uid: 8743 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -3.5,25.5 - parent: 8364 - type: Transform -- uid: 8744 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,31.5 - parent: 8364 - type: Transform -- uid: 8745 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,32.5 - parent: 8364 - type: Transform -- uid: 8746 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -9.5,29.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - morgue_tray: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8747 - type: WallReinforced - components: - - pos: -21.5,52.5 - parent: 8364 - type: Transform -- uid: 8748 - type: TableGlass - components: - - pos: -9.5,32.5 - parent: 8364 - type: Transform -- uid: 8749 - type: TableGlass - components: - - pos: -9.5,31.5 - parent: 8364 - type: Transform -- uid: 8750 - type: TableGlass - components: - - pos: -8.5,32.5 - parent: 8364 - type: Transform -- uid: 8751 - type: RollerBed - components: - - pos: -7.5,32.5 - parent: 8364 - type: Transform -- uid: 8752 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -14.5,36.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8753 - type: WindowDirectional - components: - - pos: -8.5,51.5 - parent: 8364 - type: Transform -- uid: 8754 - type: WallReinforced - components: - - pos: -20.5,52.5 - parent: 8364 - type: Transform -- uid: 8755 - type: Grille - components: - - pos: 25.5,46.5 - parent: 8364 - type: Transform -- uid: 8756 - type: SprayBottleSpaceCleaner - components: - - pos: -9.5,32.5 - parent: 8364 - type: Transform -- uid: 8757 - type: ClothingHandsGlovesLatex - components: - - pos: -9.5,32.5 - parent: 8364 - type: Transform -- uid: 8758 - type: ClothingMaskSterile - components: - - pos: -9.5,32.5 - parent: 8364 - type: Transform -- uid: 8759 - type: AirlockExternalGlass - components: - - pos: -20.5,20.5 - parent: 8364 - type: Transform -- uid: 8760 - type: MedkitFilled - components: - - pos: -8.310503,32.565964 - parent: 8364 - type: Transform -- uid: 8761 - type: BoxBodyBag - components: - - pos: -9.5,31.499998 - parent: 8364 - type: Transform -- uid: 8762 - type: CableApcExtension - components: - - pos: -10.5,27.5 - parent: 8364 - type: Transform -- uid: 8763 - type: CableApcExtension - components: - - pos: -12.5,27.5 - parent: 8364 - type: Transform -- uid: 8764 - type: CableApcExtension - components: - - pos: -11.5,27.5 - parent: 8364 - type: Transform -- uid: 8765 - type: CableApcExtension - components: - - pos: -13.5,27.5 - parent: 8364 - type: Transform -- uid: 8766 - type: CableApcExtension - components: - - pos: -13.5,26.5 - parent: 8364 - type: Transform -- uid: 8767 - type: CableApcExtension - components: - - pos: -13.5,25.5 - parent: 8364 - type: Transform -- uid: 8768 - type: CableApcExtension - components: - - pos: -13.5,24.5 - parent: 8364 - type: Transform -- uid: 8769 - type: CableApcExtension - components: - - pos: -13.5,23.5 - parent: 8364 - type: Transform -- uid: 8770 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,31.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8771 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -3.5,26.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8772 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,28.5 - parent: 8364 - type: Transform -- uid: 8773 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,27.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8774 - type: Poweredlight - components: - - pos: 5.5,28.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8775 - type: ShuttersWindowOpen - components: - - pos: -10.5,22.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver -- uid: 8776 - type: ShuttersWindowOpen - components: - - pos: -9.5,22.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver -- uid: 8777 - type: ShuttersWindowOpen - components: - - pos: -8.5,22.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver -- uid: 8778 - type: ShuttersWindowOpen - components: - - pos: -6.5,22.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver -- uid: 8779 - type: ShuttersWindowOpen - components: - - pos: -5.5,22.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver -- uid: 8780 - type: ShuttersWindowOpen - components: - - pos: -4.5,22.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver -- uid: 8781 - type: ShuttersWindowOpen - components: - - pos: -2.5,22.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver -- uid: 8782 - type: ShuttersWindowOpen - components: - - pos: -1.5,22.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver -- uid: 8783 - type: ShuttersWindowOpen - components: - - pos: -0.5,22.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19931 - type: SignalReceiver -- uid: 8784 - type: SignalSwitch - components: - - name: brig shutters switch - type: MetaData - - pos: -1.5,30.5 - parent: 8364 - type: Transform -- uid: 8785 - type: Table - components: - - pos: 6.5,35.5 - parent: 8364 - type: Transform -- uid: 8786 - type: Grille - components: - - pos: -12.5,30.5 - parent: 8364 - type: Transform -- uid: 8787 - type: ReinforcedWindow - components: - - pos: -12.5,30.5 - parent: 8364 - type: Transform -- uid: 8788 - type: Grille - components: - - pos: -12.5,31.5 - parent: 8364 - type: Transform -- uid: 8789 - type: ReinforcedWindow - components: - - pos: -12.5,31.5 - parent: 8364 - type: Transform -- uid: 8790 - type: Table - components: - - pos: -11.5,32.5 - parent: 8364 - type: Transform -- uid: 8791 - type: AirlockExternalGlassShuttleEscape - components: - - rot: -1.5707963267948966 rad - pos: -22.5,20.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 8792 - type: Grille - components: - - pos: -12.5,32.5 - parent: 8364 - type: Transform -- uid: 8793 - type: ReinforcedWindow - components: - - pos: -12.5,32.5 - parent: 8364 - type: Transform -- uid: 8794 - type: Table - components: - - pos: -14.5,31.5 - parent: 8364 - type: Transform -- uid: 8795 - type: Table - components: - - pos: -14.5,30.5 - parent: 8364 - type: Transform -- uid: 8796 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -15.5,31.5 - parent: 8364 - type: Transform -- uid: 8797 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -15.5,30.5 - parent: 8364 - type: Transform -- uid: 8798 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,31.499998 - parent: 8364 - type: Transform -- uid: 8799 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,30.5 - parent: 8364 - type: Transform -- uid: 8800 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -11.5,31.499998 - parent: 8364 - type: Transform -- uid: 8801 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -11.5,30.5 - parent: 8364 - type: Transform -- uid: 8802 - type: Pen - components: - - pos: -11.650579,32.527164 - parent: 8364 - type: Transform -- uid: 8803 - type: BoxFolderRed - components: - - pos: -11.5,32.5 - parent: 8364 - type: Transform -- uid: 8804 - type: Paper - components: - - rot: 0.00033503142185509205 rad - pos: -11.322522,32.73645 - parent: 8364 - type: Transform -- uid: 8805 - type: Paper - components: - - rot: 0.00012926501221954823 rad - pos: -11.264384,32.527164 - parent: 8364 - type: Transform -- uid: 8806 - type: Paper - components: - - pos: -11.291204,32.308414 - parent: 8364 - type: Transform -- uid: 8807 - type: AirlockExternalGlass - components: - - pos: -20.5,24.5 - parent: 8364 - type: Transform -- uid: 8808 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 8480 - type: Transform - - canCollide: False - type: Physics -- uid: 8809 - type: Lamp - components: - - pos: -14.517745,31.656202 - parent: 8364 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 8810 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,31.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8811 - type: AirlockSecurityGlassLocked - components: - - name: Interrogation - type: MetaData - - pos: -14.5,33.5 - parent: 8364 - type: Transform -- uid: 8812 - type: VehicleKeyJanicart - components: - - pos: -49.53985,-5.3556643 - parent: 8364 - type: Transform -- uid: 8813 - type: MagazinePistol - components: - - pos: -0.57955796,39.59211 - parent: 8364 - type: Transform - - unspawnedCount: 10 - type: BallisticAmmoProvider -- uid: 8814 - type: DogBed - components: - - pos: 3.5,33.5 - parent: 8364 - type: Transform -- uid: 8815 - type: SpawnPointHeadOfSecurity - components: - - pos: 14.5,40.5 - parent: 8364 - type: Transform -- uid: 8816 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -7.5,51.5 - parent: 8364 - type: Transform -- uid: 8817 - type: WallReinforced - components: - - pos: -18.5,25.5 - parent: 8364 - type: Transform -- uid: 8818 - type: MagazinePistol - components: - - pos: -0.39205796,39.59211 - parent: 8364 - type: Transform - - unspawnedCount: 10 - type: BallisticAmmoProvider -- uid: 8819 - type: WeaponDisabler - components: - - pos: 1.4993298,39.638985 - parent: 8364 - type: Transform -- uid: 8820 - type: WeaponDisabler - components: - - pos: 1.4993298,39.52961 - parent: 8364 - type: Transform -- uid: 8821 - type: ReinforcedWindow - components: - - pos: 21.5,41.5 - parent: 8364 - type: Transform -- uid: 8822 - type: APCBasic - components: - - name: Brig Control APC - type: MetaData - - pos: -1.5,34.5 - parent: 8364 - type: Transform - - startingCharge: 12000 - type: Battery -- uid: 8823 - type: CableMV - components: - - pos: 7.5,38.5 - parent: 8364 - type: Transform -- uid: 8824 - type: CableMV - components: - - pos: 6.5,38.5 - parent: 8364 - type: Transform -- uid: 8825 - type: CableMV - components: - - pos: 5.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8826 - type: CableMV - components: - - pos: 7.5,30.5 - parent: 8364 - type: Transform -- uid: 8827 - type: CableMV - components: - - pos: 2.5,28.5 - parent: 8364 - type: Transform -- uid: 8828 - type: CableMV - components: - - pos: 2.5,30.5 - parent: 8364 - type: Transform -- uid: 8829 - type: CableMV - components: - - pos: 2.5,29.5 - parent: 8364 - type: Transform -- uid: 8830 - type: CableMV - components: - - pos: 2.5,31.5 - parent: 8364 - type: Transform -- uid: 8831 - type: CableMV - components: - - pos: 9.5,33.5 - parent: 8364 - type: Transform -- uid: 8832 - type: CableMV - components: - - pos: 10.5,33.5 - parent: 8364 - type: Transform -- uid: 8833 - type: CableMV - components: - - pos: 11.5,33.5 - parent: 8364 - type: Transform -- uid: 8834 - type: CableMV - components: - - pos: 12.5,33.5 - parent: 8364 - type: Transform -- uid: 8835 - type: CableMV - components: - - pos: 13.5,33.5 - parent: 8364 - type: Transform -- uid: 8836 - type: CableMV - components: - - pos: 14.5,33.5 - parent: 8364 - type: Transform -- uid: 8837 - type: CableMV - components: - - pos: 15.5,33.5 - parent: 8364 - type: Transform -- uid: 8838 - type: CableMV - components: - - pos: 16.5,33.5 - parent: 8364 - type: Transform -- uid: 8839 - type: CableMV - components: - - pos: 17.5,33.5 - parent: 8364 - type: Transform -- uid: 8840 - type: CableMV - components: - - pos: 18.5,33.5 - parent: 8364 - type: Transform -- uid: 8841 - type: CableMV - components: - - pos: 19.5,33.5 - parent: 8364 - type: Transform -- uid: 8842 - type: CableMV - components: - - pos: 14.5,34.5 - parent: 8364 - type: Transform -- uid: 8843 - type: CableMV - components: - - pos: 14.5,35.5 - parent: 8364 - type: Transform -- uid: 8844 - type: CableMV - components: - - pos: 14.5,36.5 - parent: 8364 - type: Transform -- uid: 8845 - type: CableMV - components: - - pos: 14.5,37.5 - parent: 8364 - type: Transform -- uid: 8846 - type: CableMV - components: - - pos: 14.5,38.5 - parent: 8364 - type: Transform -- uid: 8847 - type: CableMV - components: - - pos: 14.5,39.5 - parent: 8364 - type: Transform -- uid: 8848 - type: CableMV - components: - - pos: 13.5,39.5 - parent: 8364 - type: Transform -- uid: 8849 - type: CableMV - components: - - pos: 12.5,39.5 - parent: 8364 - type: Transform -- uid: 8850 - type: CableMV - components: - - pos: 11.5,39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8851 - type: CableMV - components: - - pos: -4.5,30.5 - parent: 8364 - type: Transform -- uid: 8852 - type: CableMV - components: - - pos: -3.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8853 - type: WallSolid - components: - - pos: -3.5,29.5 - parent: 8364 - type: Transform -- uid: 8854 - type: CableMV - components: - - pos: -4.5,31.5 - parent: 8364 - type: Transform -- uid: 8855 - type: CableMV - components: - - pos: -4.5,32.5 - parent: 8364 - type: Transform -- uid: 8856 - type: CableMV - components: - - pos: -4.5,33.5 - parent: 8364 - type: Transform -- uid: 8857 - type: CableMV - components: - - pos: -4.5,34.5 - parent: 8364 - type: Transform -- uid: 8858 - type: CableMV - components: - - pos: -5.5,34.5 - parent: 8364 - type: Transform -- uid: 8859 - type: CableMV - components: - - pos: -6.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8860 - type: WallReinforced - components: - - pos: -10.5,53.5 - parent: 8364 - type: Transform -- uid: 8861 - type: WallReinforced - components: - - pos: -9.5,54.5 - parent: 8364 - type: Transform -- uid: 8862 - type: WallReinforced - components: - - pos: -8.5,54.5 - parent: 8364 - type: Transform -- uid: 8863 - type: WallReinforced - components: - - pos: -7.5,54.5 - parent: 8364 - type: Transform -- uid: 8864 - type: WallReinforced - components: - - pos: -7.5,53.5 - parent: 8364 - type: Transform -- uid: 8865 - type: WallReinforced - components: - - pos: -6.5,53.5 - parent: 8364 - type: Transform -- uid: 8866 - type: WallReinforced - components: - - pos: -5.5,53.5 - parent: 8364 - type: Transform -- uid: 8867 - type: WallReinforced - components: - - pos: -4.5,53.5 - parent: 8364 - type: Transform -- uid: 8868 - type: CableMV - components: - - pos: -14.5,33.5 - parent: 8364 - type: Transform -- uid: 8869 - type: CableMV - components: - - pos: -14.5,32.5 - parent: 8364 - type: Transform -- uid: 8870 - type: CableMV - components: - - pos: -14.5,31.5 - parent: 8364 - type: Transform -- uid: 8871 - type: CableMV - components: - - pos: -14.5,30.5 - parent: 8364 - type: Transform -- uid: 8872 - type: CableMV - components: - - pos: -15.5,30.5 - parent: 8364 - type: Transform -- uid: 8873 - type: CableMV - components: - - pos: -16.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8874 - type: CableMV - components: - - pos: -4.5,26.5 - parent: 8364 - type: Transform -- uid: 8875 - type: CableMV - components: - - pos: -5.5,26.5 - parent: 8364 - type: Transform -- uid: 8876 - type: GasPipeFourway - components: - - pos: 2.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8877 - type: CableMV - components: - - pos: -7.5,26.5 - parent: 8364 - type: Transform -- uid: 8878 - type: CableMV - components: - - pos: -8.5,26.5 - parent: 8364 - type: Transform -- uid: 8879 - type: CableMV - components: - - pos: -9.5,26.5 - parent: 8364 - type: Transform -- uid: 8880 - type: GasPipeTJunction - components: - - pos: -2.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8881 - type: CableMV - components: - - pos: -11.5,26.5 - parent: 8364 - type: Transform -- uid: 8882 - type: CableMV - components: - - pos: -12.5,26.5 - parent: 8364 - type: Transform -- uid: 8883 - type: CableMV - components: - - pos: -13.5,26.5 - parent: 8364 - type: Transform -- uid: 8884 - type: WallReinforced - components: - - pos: -15.5,26.5 - parent: 8364 - type: Transform -- uid: 8885 - type: CableHV - components: - - pos: -13.5,26.5 - parent: 8364 - type: Transform -- uid: 8886 - type: CableHV - components: - - pos: -15.5,-68.5 - parent: 8364 - type: Transform -- uid: 8887 - type: CableHV - components: - - pos: -15.5,-67.5 - parent: 8364 - type: Transform -- uid: 8888 - type: CableMV - components: - - pos: -4.5,27.5 - parent: 8364 - type: Transform -- uid: 8889 - type: CableHV - components: - - pos: -15.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8890 - type: CableHV - components: - - pos: -18.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8891 - type: CableHV - components: - - pos: 5.5,26.5 - parent: 8364 - type: Transform -- uid: 8892 - type: CableHV - components: - - pos: -18.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8893 - type: WallReinforced - components: - - pos: -19.5,25.5 - parent: 8364 - type: Transform -- uid: 8894 - type: WallReinforced - components: - - pos: -16.5,25.5 - parent: 8364 - type: Transform -- uid: 8895 - type: CableApcExtension - components: - - pos: -16.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8896 - type: CableApcExtension - components: - - pos: -15.5,30.5 - parent: 8364 - type: Transform -- uid: 8897 - type: CableApcExtension - components: - - pos: -14.5,30.5 - parent: 8364 - type: Transform -- uid: 8898 - type: CableApcExtension - components: - - pos: -13.5,30.5 - parent: 8364 - type: Transform -- uid: 8899 - type: CableApcExtension - components: - - pos: -12.5,30.5 - parent: 8364 - type: Transform -- uid: 8900 - type: CableApcExtension - components: - - pos: -12.5,31.5 - parent: 8364 - type: Transform -- uid: 8901 - type: CableApcExtension - components: - - pos: -12.5,32.5 - parent: 8364 - type: Transform -- uid: 8902 - type: CableMV - components: - - pos: 24.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8903 - type: CableHV - components: - - pos: -15.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8904 - type: WallSolid - components: - - pos: -19.5,21.5 - parent: 8364 - type: Transform -- uid: 8905 - type: RandomPosterLegit - components: - - pos: 1.5,6.5 - parent: 8364 - type: Transform -- uid: 8906 - type: AirlockSecurityGlassLocked - components: - - name: Security Office - type: MetaData - - pos: 7.5,29.5 - parent: 8364 - type: Transform -- uid: 8907 - type: CableHV - components: - - pos: 7.5,26.5 - parent: 8364 - type: Transform -- uid: 8908 - type: WeaponPistolMk58 - components: - - pos: 2.5158455,37.38336 - parent: 8364 - type: Transform -- uid: 8909 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -9.5,40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8910 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -9.5,50.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8911 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -18.5,43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8912 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8913 - type: WeaponCapacitorRecharger - components: - - pos: -19.5,22.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8914 - type: WeaponPistolMk58 - components: - - pos: 2.5158455,37.273987 - parent: 8364 - type: Transform -- uid: 8915 - type: CableApcExtension - components: - - pos: -20.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8916 - type: OxygenCanister - components: - - pos: -16.5,22.5 - parent: 8364 - type: Transform -- uid: 8917 - type: CableMV - components: - - pos: -20.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8918 - type: MagazinePistol - components: - - pos: -0.73580796,39.59211 - parent: 8364 - type: Transform - - unspawnedCount: 10 - type: BallisticAmmoProvider -- uid: 8919 - type: WeaponPistolMk58 - components: - - pos: 2.5158455,37.50836 - parent: 8364 - type: Transform -- uid: 8920 - type: AirlockArmoryGlassLocked - components: - - pos: 2.5,29.5 - parent: 8364 - type: Transform -- uid: 8921 - type: AirlockSecurityGlassLocked - components: - - name: Permanent Detention - type: MetaData - - pos: -5.5,34.5 - parent: 8364 - type: Transform -- uid: 8922 - type: AirlockSecurityGlassLocked - components: - - name: Permanent Detention - type: MetaData - - pos: -4.5,34.5 - parent: 8364 - type: Transform -- uid: 8923 - type: AirlockMaintLocked - components: - - pos: -16.5,18.5 - parent: 8364 - type: Transform -- uid: 8924 - type: Table - components: - - pos: -18.5,16.5 - parent: 8364 - type: Transform -- uid: 8925 - type: BedsheetSpawner - components: - - pos: -19.5,16.5 - parent: 8364 - type: Transform -- uid: 8926 - type: CableMV - components: - - pos: -19.5,22.5 - parent: 8364 - type: Transform -- uid: 8927 - type: WallSolid - components: - - pos: 20.5,36.5 - parent: 8364 - type: Transform -- uid: 8928 - type: ComputerCrewMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 0.5,30.5 - parent: 8364 - type: Transform -- uid: 8929 - type: BoxLethalshot - components: - - pos: -0.3215518,35.63938 - parent: 8364 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 8930 - type: FirelockGlass - components: - - pos: 1.5,34.5 - parent: 8364 - type: Transform -- uid: 8931 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8932 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8933 - type: GasPipeTJunction - components: - - pos: -10.5,35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8934 - type: FirelockGlass - components: - - pos: 2.5,34.5 - parent: 8364 - type: Transform -- uid: 8935 - type: WallReinforced - components: - - pos: 5.5,46.5 - parent: 8364 - type: Transform -- uid: 8936 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -11.5,39.5 - parent: 8364 - type: Transform -- uid: 8937 - type: CableApcExtension - components: - - pos: -20.5,46.5 - parent: 8364 - type: Transform -- uid: 8938 - type: CableApcExtension - components: - - pos: -17.5,46.5 - parent: 8364 - type: Transform -- uid: 8939 - type: CableApcExtension - components: - - pos: -17.5,47.5 - parent: 8364 - type: Transform -- uid: 8940 - type: CableApcExtension - components: - - pos: -18.5,45.5 - parent: 8364 - type: Transform -- uid: 8941 - type: CableApcExtension - components: - - pos: -17.5,45.5 - parent: 8364 - type: Transform -- uid: 8942 - type: CableApcExtension - components: - - pos: -18.5,43.5 - parent: 8364 - type: Transform -- uid: 8943 - type: CableApcExtension - components: - - pos: -19.5,45.5 - parent: 8364 - type: Transform -- uid: 8944 - type: APCBasic - components: - - pos: 0.5,52.5 - parent: 8364 - type: Transform -- uid: 8945 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -11.5,41.5 - parent: 8364 - type: Transform -- uid: 8946 - type: ReinforcedWindow - components: - - pos: -0.5,46.5 - parent: 8364 - type: Transform -- uid: 8947 - type: Chair - components: - - pos: 8.5,21.5 - parent: 8364 - type: Transform -- uid: 8948 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8949 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -6.5,43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8950 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -9.5,34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8951 - type: APCBasic - components: - - pos: -19.5,46.5 - parent: 8364 - type: Transform -- uid: 8952 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,48.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8953 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -10.5,34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8954 - type: APCBasic - components: - - pos: -10.5,46.5 - parent: 8364 - type: Transform -- uid: 8955 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -20.5,44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8956 - type: CableApcExtension - components: - - pos: -23.5,45.5 - parent: 8364 - type: Transform -- uid: 8957 - type: CableApcExtension - components: - - pos: -23.5,49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8958 - type: WallReinforced - components: - - pos: -12.5,39.5 - parent: 8364 - type: Transform -- uid: 8959 - type: CableApcExtension - components: - - pos: -21.5,50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8960 - type: CableApcExtension - components: - - pos: -23.5,50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8961 - type: LockerEvidence - components: - - pos: -8.5,40.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8962 - type: CableApcExtension - components: - - pos: -20.5,50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8963 - type: CableApcExtension - components: - - pos: -22.5,50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8964 - type: LockerEvidence - components: - - pos: -8.5,41.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8965 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -8.5,48.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8966 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8967 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,40.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8968 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,42.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8969 - type: WallReinforced - components: - - pos: -12.5,42.5 - parent: 8364 - type: Transform -- uid: 8970 - type: ReinforcedWindow - components: - - pos: 2.5,46.5 - parent: 8364 - type: Transform -- uid: 8971 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -5.5,37.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8972 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -5.5,39.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8973 - type: WindoorSecurityLocked - components: - - pos: -4.5,40.5 - parent: 8364 - type: Transform -- uid: 8974 - type: WallReinforced - components: - - pos: -12.5,41.5 - parent: 8364 - type: Transform -- uid: 8975 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -20.5,45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8976 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -25.5,43.5 - parent: 8364 - type: Transform -- uid: 8977 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8978 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8979 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -10.5,40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8980 - type: CableApcExtension - components: - - pos: -10.5,40.5 - parent: 8364 - type: Transform -- uid: 8981 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -25.5,45.5 - parent: 8364 - type: Transform -- uid: 8982 - type: Grille - components: - - pos: -21.5,39.5 - parent: 8364 - type: Transform -- uid: 8983 - type: GasPipeBend - components: - - pos: 3.5,51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8984 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -7.5,43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8985 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8986 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -5.5,41.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8987 - type: GasPipeStraight - components: - - pos: -6.5,44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8988 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8989 - type: Carpet - components: - - pos: -15.5,51.5 - parent: 8364 - type: Transform -- uid: 8990 - type: CableApcExtension - components: - - pos: -10.5,42.5 - parent: 8364 - type: Transform -- uid: 8991 - type: CableApcExtension - components: - - pos: -10.5,39.5 - parent: 8364 - type: Transform -- uid: 8992 - type: CableApcExtension - components: - - pos: -10.5,43.5 - parent: 8364 - type: Transform -- uid: 8993 - type: CableApcExtension - components: - - pos: -10.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8994 - type: CableApcExtension - components: - - pos: -10.5,45.5 - parent: 8364 - type: Transform -- uid: 8995 - type: TableCarpet - components: - - pos: 26.5,-10.5 - parent: 8364 - type: Transform -- uid: 8996 - type: Grille - components: - - pos: -2.5,46.5 - parent: 8364 - type: Transform -- uid: 8997 - type: CableApcExtension - components: - - pos: -10.5,41.5 - parent: 8364 - type: Transform -- uid: 8998 - type: Catwalk - components: - - pos: -1.5,41.5 - parent: 8364 - type: Transform -- uid: 8999 - type: Grille - components: - - pos: -1.5,46.5 - parent: 8364 - type: Transform -- uid: 9000 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9001 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9002 - type: Rack - components: - - pos: -11.5,38.5 - parent: 8364 - type: Transform -- uid: 9003 - type: WallReinforced - components: - - pos: -9.5,42.5 - parent: 8364 - type: Transform -- uid: 9004 - type: SignSecurearea - components: - - pos: -3.5,43.5 - parent: 8364 - type: Transform -- uid: 9005 - type: WallReinforced - components: - - pos: -23.5,52.5 - parent: 8364 - type: Transform -- uid: 9006 - type: WallReinforced - components: - - pos: -22.5,52.5 - parent: 8364 - type: Transform -- uid: 9007 - type: CableApcExtension - components: - - pos: -13.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9008 - type: CableApcExtension - components: - - pos: -14.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9009 - type: CableApcExtension - components: - - pos: -14.5,42.5 - parent: 8364 - type: Transform -- uid: 9010 - type: CableApcExtension - components: - - pos: -14.5,41.5 - parent: 8364 - type: Transform -- uid: 9011 - type: CableApcExtension - components: - - pos: -15.5,44.5 - parent: 8364 - type: Transform -- uid: 9012 - type: CableApcExtension - components: - - pos: -14.5,43.5 - parent: 8364 - type: Transform -- uid: 9013 - type: Stool - components: - - pos: -4.5,41.5 - parent: 8364 - type: Transform -- uid: 9014 - type: ReinforcedWindow - components: - - pos: 0.5,46.5 - parent: 8364 - type: Transform -- uid: 9015 - type: WallReinforced - components: - - pos: -24.5,42.5 - parent: 8364 - type: Transform -- uid: 9016 - type: Stool - components: - - pos: -6.5,41.5 - parent: 8364 - type: Transform -- uid: 9017 - type: WallReinforced - components: - - pos: -24.5,40.5 - parent: 8364 - type: Transform -- uid: 9018 - type: WallReinforced - components: - - pos: 5.5,47.5 - parent: 8364 - type: Transform -- uid: 9019 - type: WallReinforced - components: - - pos: -16.5,39.5 - parent: 8364 - type: Transform -- uid: 9020 - type: ReinforcedWindow - components: - - pos: 3.5,46.5 - parent: 8364 - type: Transform -- uid: 9021 - type: CableApcExtension - components: - - pos: -6.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9022 - type: ReinforcedWindow - components: - - pos: -16.5,35.5 - parent: 8364 - type: Transform -- uid: 9023 - type: TableReinforced - components: - - pos: -4.5,40.5 - parent: 8364 - type: Transform -- uid: 9024 - type: WallReinforced - components: - - pos: -10.5,54.5 - parent: 8364 - type: Transform -- uid: 9025 - type: WallReinforced - components: - - pos: 5.5,48.5 - parent: 8364 - type: Transform -- uid: 9026 - type: WallReinforced - components: - - pos: 5.5,51.5 - parent: 8364 - type: Transform -- uid: 9027 - type: WallReinforced - components: - - pos: 5.5,52.5 - parent: 8364 - type: Transform -- uid: 9028 - type: WallReinforced - components: - - pos: 5.5,49.5 - parent: 8364 - type: Transform -- uid: 9029 - type: WallSolid - components: - - pos: -10.5,52.5 - parent: 8364 - type: Transform -- uid: 9030 - type: WallSolid - components: - - pos: -5.5,46.5 - parent: 8364 - type: Transform -- uid: 9031 - type: WallSolid - components: - - pos: -3.5,47.5 - parent: 8364 - type: Transform -- uid: 9032 - type: WallSolid - components: - - pos: -10.5,49.5 - parent: 8364 - type: Transform -- uid: 9033 - type: WallSolid - components: - - pos: -10.5,47.5 - parent: 8364 - type: Transform -- uid: 9034 - type: WallSolid - components: - - pos: -10.5,46.5 - parent: 8364 - type: Transform -- uid: 9035 - type: WallSolid - components: - - pos: -11.5,46.5 - parent: 8364 - type: Transform -- uid: 9036 - type: ReinforcedWindow - components: - - pos: -18.5,39.5 - parent: 8364 - type: Transform -- uid: 9037 - type: Bookshelf - components: - - pos: -13.5,50.5 - parent: 8364 - type: Transform -- uid: 9038 - type: Bookshelf - components: - - pos: -12.5,50.5 - parent: 8364 - type: Transform -- uid: 9039 - type: WallReinforced - components: - - pos: -23.5,39.5 - parent: 8364 - type: Transform -- uid: 9040 - type: WallSolid - components: - - pos: -3.5,48.5 - parent: 8364 - type: Transform -- uid: 9041 - type: WallSolid - components: - - pos: -10.5,51.5 - parent: 8364 - type: Transform -- uid: 9042 - type: TableWood - components: - - pos: -13.5,48.5 - parent: 8364 - type: Transform -- uid: 9043 - type: Bookshelf - components: - - pos: -12.5,48.5 - parent: 8364 - type: Transform -- uid: 9044 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -4.5,48.5 - parent: 8364 - type: Transform -- uid: 9045 - type: WallReinforced - components: - - pos: -16.5,54.5 - parent: 8364 - type: Transform -- uid: 9046 - type: ReinforcedWindow - components: - - pos: -15.5,54.5 - parent: 8364 - type: Transform -- uid: 9047 - type: ReinforcedWindow - components: - - pos: -14.5,54.5 - parent: 8364 - type: Transform -- uid: 9048 - type: ReinforcedWindow - components: - - pos: -12.5,54.5 - parent: 8364 - type: Transform -- uid: 9049 - type: ReinforcedWindow - components: - - pos: -11.5,54.5 - parent: 8364 - type: Transform -- uid: 9050 - type: WallReinforced - components: - - pos: -24.5,39.5 - parent: 8364 - type: Transform -- uid: 9051 - type: WallReinforced - components: - - pos: -13.5,54.5 - parent: 8364 - type: Transform -- uid: 9052 - type: WallReinforced - components: - - pos: 5.5,50.5 - parent: 8364 - type: Transform -- uid: 9053 - type: WallReinforced - components: - - pos: -17.5,39.5 - parent: 8364 - type: Transform -- uid: 9054 - type: WallReinforced - components: - - pos: -22.5,39.5 - parent: 8364 - type: Transform -- uid: 9055 - type: ReinforcedWindow - components: - - pos: -25.5,45.5 - parent: 8364 - type: Transform -- uid: 9056 - type: WallReinforced - components: - - pos: -24.5,46.5 - parent: 8364 - type: Transform -- uid: 9057 - type: WallReinforced - components: - - pos: -24.5,49.5 - parent: 8364 - type: Transform -- uid: 9058 - type: Bookshelf - components: - - pos: -14.5,50.5 - parent: 8364 - type: Transform -- uid: 9059 - type: ReinforcedWindow - components: - - pos: 4.5,46.5 - parent: 8364 - type: Transform -- uid: 9060 - type: WallReinforced - components: - - pos: -12.5,38.5 - parent: 8364 - type: Transform -- uid: 9061 - type: ToyRubberDuck - components: - - pos: 18.5,5.5 - parent: 8364 - type: Transform -- uid: 9062 - type: ToyRubberDuck - components: - - pos: 16.5,5.5 - parent: 8364 - type: Transform -- uid: 9063 - type: CableApcExtension - components: - - pos: -10.5,38.5 - parent: 8364 - type: Transform -- uid: 9064 - type: GasPipeStraight - components: - - pos: -6.5,45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9065 - type: GasPipeStraight - components: - - pos: -6.5,47.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9066 - type: GasPipeStraight - components: - - pos: -6.5,46.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9067 - type: GasPipeStraight - components: - - pos: -6.5,49.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9068 - type: GasPipeStraight - components: - - pos: -6.5,48.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9069 - type: CableApcExtension - components: - - pos: -23.5,47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9070 - type: ReinforcedWindow - components: - - pos: 1.5,46.5 - parent: 8364 - type: Transform -- uid: 9071 - type: WallReinforced - components: - - pos: -24.5,41.5 - parent: 8364 - type: Transform -- uid: 9072 - type: Grille - components: - - pos: 4.5,46.5 - parent: 8364 - type: Transform -- uid: 9073 - type: WallSolid - components: - - pos: -10.5,50.5 - parent: 8364 - type: Transform -- uid: 9074 - type: VendingMachineSec - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,38.5 - parent: 8364 - type: Transform -- uid: 9075 - type: ComputerCriminalRecords - components: - - pos: -1.5,33.5 - parent: 8364 - type: Transform -- uid: 9076 - type: WallSolid - components: - - pos: -9.5,46.5 - parent: 8364 - type: Transform -- uid: 9077 - type: WallSolid - components: - - pos: -4.5,46.5 - parent: 8364 - type: Transform -- uid: 9078 - type: Table - components: - - pos: -6.5,52.5 - parent: 8364 - type: Transform -- uid: 9079 - type: Table - components: - - pos: -5.5,49.5 - parent: 8364 - type: Transform -- uid: 9080 - type: WallSolid - components: - - pos: -3.5,49.5 - parent: 8364 - type: Transform -- uid: 9081 - type: WallReinforced - components: - - pos: -3.5,52.5 - parent: 8364 - type: Transform -- uid: 9082 - type: Table - components: - - pos: -6.5,49.5 - parent: 8364 - type: Transform -- uid: 9083 - type: Table - components: - - pos: -4.5,52.5 - parent: 8364 - type: Transform -- uid: 9084 - type: WallReinforced - components: - - pos: -2.5,52.5 - parent: 8364 - type: Transform -- uid: 9085 - type: Rack - components: - - pos: -8.5,53.5 - parent: 8364 - type: Transform -- uid: 9086 - type: MedkitFilled - components: - - pos: -2.4584026,39.71956 - parent: 8364 - type: Transform -- uid: 9087 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9088 - type: CableApcExtension - components: - - pos: -21.5,43.5 - parent: 8364 - type: Transform -- uid: 9089 - type: CableApcExtension - components: - - pos: -22.5,43.5 - parent: 8364 - type: Transform -- uid: 9090 - type: CableApcExtension - components: - - pos: -19.5,43.5 - parent: 8364 - type: Transform -- uid: 9091 - type: Grille - components: - - pos: -15.5,37.5 - parent: 8364 - type: Transform -- uid: 9092 - type: Grille - components: - - pos: -15.5,39.5 - parent: 8364 - type: Transform -- uid: 9093 - type: Grille - components: - - pos: -14.5,37.5 - parent: 8364 - type: Transform -- uid: 9094 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -13.5,35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9095 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9096 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9097 - type: GasPipeBend - components: - - pos: -5.5,36.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9098 - type: GasPipeStraight - components: - - pos: -13.5,34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9099 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -7.5,52.5 - parent: 8364 - type: Transform -- uid: 9100 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -6.5,48.5 - parent: 8364 - type: Transform -- uid: 9101 - type: WallSolid - components: - - pos: -19.5,48.5 - parent: 8364 - type: Transform -- uid: 9102 - type: WallSolid - components: - - pos: -19.5,47.5 - parent: 8364 - type: Transform -- uid: 9103 - type: WallSolid - components: - - pos: -19.5,46.5 - parent: 8364 - type: Transform -- uid: 9104 - type: FirelockGlass - components: - - pos: -44.5,20.5 - parent: 8364 - type: Transform -- uid: 9105 - type: DisposalPipe - components: - - pos: -26.5,-17.5 - parent: 8364 - type: Transform -- uid: 9106 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9107 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -4.5,35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9108 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9109 - type: WardrobeMixedFilled - components: - - pos: -9.5,53.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9110 - type: Table - components: - - pos: -6.5,50.5 - parent: 8364 - type: Transform -- uid: 9111 - type: Table - components: - - pos: -5.5,52.5 - parent: 8364 - type: Transform -- uid: 9112 - type: KitchenReagentGrinder - components: - - pos: -5.5,52.5 - parent: 8364 - type: Transform -- uid: 9113 - type: VendingMachineSeedsUnlocked - components: - - flags: SessionSpecific - type: MetaData - - pos: 4.5,51.5 - parent: 8364 - type: Transform -- uid: 9114 - type: WallReinforced - components: - - pos: 4.5,52.5 - parent: 8364 - type: Transform -- uid: 9115 - type: WallReinforced - components: - - pos: 0.5,52.5 - parent: 8364 - type: Transform -- uid: 9116 - type: WallReinforced - components: - - pos: -0.5,52.5 - parent: 8364 - type: Transform -- uid: 9117 - type: WallReinforced - components: - - pos: -19.5,39.5 - parent: 8364 - type: Transform -- uid: 9118 - type: LockerEvidence - components: - - pos: 6.5,41.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9119 - type: RiotShield - components: - - pos: 0.2666831,39.43831 - parent: 8364 - type: Transform -- uid: 9120 - type: KitchenMicrowave - components: - - pos: -4.5,52.5 - parent: 8364 - type: Transform -- uid: 9121 - type: CableApcExtension - components: - - pos: -20.5,47.5 - parent: 8364 - type: Transform -- uid: 9122 - type: CableApcExtension - components: - - pos: -21.5,45.5 - parent: 8364 - type: Transform -- uid: 9123 - type: CableApcExtension - components: - - pos: -22.5,45.5 - parent: 8364 - type: Transform -- uid: 9124 - type: ReinforcedWindow - components: - - pos: -15.5,39.5 - parent: 8364 - type: Transform -- uid: 9125 - type: ReinforcedWindow - components: - - pos: -14.5,39.5 - parent: 8364 - type: Transform -- uid: 9126 - type: Grille - components: - - pos: -14.5,39.5 - parent: 8364 - type: Transform -- uid: 9127 - type: Grille - components: - - pos: -13.5,37.5 - parent: 8364 - type: Transform -- uid: 9128 - type: Grille - components: - - pos: -13.5,39.5 - parent: 8364 - type: Transform -- uid: 9129 - type: WallSolid - components: - - pos: -22.5,47.5 - parent: 8364 - type: Transform -- uid: 9130 - type: WallSolid - components: - - pos: -22.5,46.5 - parent: 8364 - type: Transform -- uid: 9131 - type: WallSolid - components: - - pos: -22.5,48.5 - parent: 8364 - type: Transform -- uid: 9132 - type: WallSolid - components: - - pos: -18.5,49.5 - parent: 8364 - type: Transform -- uid: 9133 - type: WallSolid - components: - - pos: -19.5,49.5 - parent: 8364 - type: Transform -- uid: 9134 - type: WallReinforced - components: - - pos: -19.5,52.5 - parent: 8364 - type: Transform -- uid: 9135 - type: RiotShield - components: - - pos: 0.2510581,39.68831 - parent: 8364 - type: Transform -- uid: 9136 - type: WallReinforced - components: - - pos: -18.5,52.5 - parent: 8364 - type: Transform -- uid: 9137 - type: WallSolid - components: - - pos: -22.5,42.5 - parent: 8364 - type: Transform -- uid: 9138 - type: WallReinforced - components: - - pos: -16.5,52.5 - parent: 8364 - type: Transform -- uid: 9139 - type: AirlockGlass - components: - - pos: -13.5,46.5 - parent: 8364 - type: Transform -- uid: 9140 - type: CableApcExtension - components: - - pos: -23.5,43.5 - parent: 8364 - type: Transform -- uid: 9141 - type: CableApcExtension - components: - - pos: -24.5,43.5 - parent: 8364 - type: Transform -- uid: 9142 - type: VendingMachineSecDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,39.5 - parent: 8364 - type: Transform -- uid: 9143 - type: CableMV - components: - - pos: -13.5,24.5 - parent: 8364 - type: Transform -- uid: 9144 - type: CableMV - components: - - pos: -13.5,23.5 - parent: 8364 - type: Transform -- uid: 9145 - type: CableMV - components: - - pos: -14.5,23.5 - parent: 8364 - type: Transform -- uid: 9146 - type: CableMV - components: - - pos: -15.5,23.5 - parent: 8364 - type: Transform -- uid: 9147 - type: CableMV - components: - - pos: -16.5,23.5 - parent: 8364 - type: Transform -- uid: 9148 - type: CableMV - components: - - pos: -17.5,23.5 - parent: 8364 - type: Transform -- uid: 9149 - type: CableMV - components: - - pos: -18.5,23.5 - parent: 8364 - type: Transform -- uid: 9150 - type: CableMV - components: - - pos: -19.5,23.5 - parent: 8364 - type: Transform -- uid: 9151 - type: Table - components: - - pos: -19.5,22.5 - parent: 8364 - type: Transform -- uid: 9152 - type: CableApcExtension - components: - - pos: -19.5,22.5 - parent: 8364 - type: Transform -- uid: 9153 - type: CableApcExtension - components: - - pos: -22.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9154 - type: CableApcExtension - components: - - pos: -22.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9155 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 2.5,41.5 - parent: 8364 - type: Transform -- uid: 9156 - type: CableApcExtension - components: - - pos: -18.5,22.5 - parent: 8364 - type: Transform -- uid: 9157 - type: CableApcExtension - components: - - pos: -19.5,20.5 - parent: 8364 - type: Transform -- uid: 9158 - type: CableApcExtension - components: - - pos: -18.5,20.5 - parent: 8364 - type: Transform -- uid: 9159 - type: CableApcExtension - components: - - pos: -22.5,24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9160 - type: CableApcExtension - components: - - pos: -20.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9161 - type: CableApcExtension - components: - - pos: -20.5,24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9162 - type: CableApcExtension - components: - - pos: -21.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9163 - type: CableApcExtension - components: - - pos: -20.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9164 - type: VehicleKeySecway - components: - - pos: -2.5474367,39.4795 - parent: 8364 - type: Transform -- uid: 9165 - type: WallReinforced - components: - - pos: 17.5,38.5 - parent: 8364 - type: Transform -- uid: 9166 - type: PortableFlasher - components: - - pos: -1.5,35.5 - parent: 8364 - type: Transform -- uid: 9167 - type: PortableFlasher - components: - - pos: -2.5,35.5 - parent: 8364 - type: Transform -- uid: 9168 - type: Rack - components: - - pos: -16.5,24.5 - parent: 8364 - type: Transform -- uid: 9169 - type: PortableFlasher - components: - - pos: -2.5,36.5 - parent: 8364 - type: Transform -- uid: 9170 - type: WeaponShotgunKammerer - components: - - pos: -0.4465518,37.405006 - parent: 8364 - type: Transform - - unspawnedCount: 4 - type: BallisticAmmoProvider -- uid: 9171 - type: ClosetEmergencyFilledRandom - components: - - pos: -19.5,19.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9172 - type: BoxFolderRed - components: - - pos: -14.5,22.5 - parent: 8364 - type: Transform -- uid: 9173 - type: BoxFolderRed - components: - - pos: -14.5,22.5 - parent: 8364 - type: Transform -- uid: 9174 - type: BoxFolderRed - components: - - pos: -14.5,22.5 - parent: 8364 - type: Transform -- uid: 9175 - type: HandLabeler - components: - - pos: -14.5,22.5 - parent: 8364 - type: Transform -- uid: 9176 - type: Rack - components: - - pos: -17.5,24.5 - parent: 8364 - type: Transform -- uid: 9177 - type: WeaponShotgunKammerer - components: - - pos: -0.4621768,37.54563 - parent: 8364 - type: Transform - - unspawnedCount: 4 - type: BallisticAmmoProvider -- uid: 9178 - type: BoxShotgunIncendiary - components: - - pos: -0.6496768,35.60813 - parent: 8364 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 9179 - type: SpawnVehicleSecway - components: - - pos: 4.5,39.5 - parent: 8364 - type: Transform -- uid: 9180 - type: Rack - components: - - pos: -18.5,24.5 - parent: 8364 - type: Transform -- uid: 9181 - type: ComputerCriminalRecords - components: - - pos: 13.5,41.5 - parent: 8364 - type: Transform -- uid: 9182 - type: BlastDoor - components: - - pos: 5.5,36.5 - parent: 8364 - type: Transform - - inputs: - Open: - - port: Left - uid: 19935 - - port: Right - uid: 19935 - Close: - - port: Middle - uid: 19935 - Toggle: [] - type: SignalReceiver -- uid: 9183 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,37.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9184 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 21.5,25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9185 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -1.5,50.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9186 - type: Catwalk - components: - - pos: 2.5,11.5 - parent: 8364 - type: Transform -- uid: 9187 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9188 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9189 - type: Rack - components: - - pos: -0.5,39.5 - parent: 8364 - type: Transform -- uid: 9190 - type: Rack - components: - - pos: 0.5,39.5 - parent: 8364 - type: Transform -- uid: 9191 - type: Rack - components: - - pos: 1.5,39.5 - parent: 8364 - type: Transform -- uid: 9192 - type: Rack - components: - - pos: 2.5,39.5 - parent: 8364 - type: Transform -- uid: 9193 - type: Rack - components: - - pos: 0.5,35.5 - parent: 8364 - type: Transform -- uid: 9194 - type: Rack - components: - - pos: -0.5,35.5 - parent: 8364 - type: Transform -- uid: 9195 - type: Table - components: - - pos: -2.5,38.5 - parent: 8364 - type: Transform -- uid: 9196 - type: Table - components: - - pos: -2.5,39.5 - parent: 8364 - type: Transform -- uid: 9197 - type: Rack - components: - - pos: -1.5,39.5 - parent: 8364 - type: Transform -- uid: 9198 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9199 - type: Table - components: - - pos: 4.5,33.5 - parent: 8364 - type: Transform -- uid: 9200 - type: Table - components: - - pos: 4.5,32.5 - parent: 8364 - type: Transform -- uid: 9201 - type: Table - components: - - pos: -1.5,30.5 - parent: 8364 - type: Transform -- uid: 9202 - type: Table - components: - - pos: -0.5,29.5 - parent: 8364 - type: Transform -- uid: 9203 - type: Table - components: - - pos: 7.5,35.5 - parent: 8364 - type: Transform -- uid: 9204 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9205 - type: ComputerSurveillanceCameraMonitor - components: - - pos: 14.5,41.5 - parent: 8364 - type: Transform -- uid: 9206 - type: WallReinforced - components: - - pos: 26.5,37.5 - parent: 8364 - type: Transform -- uid: 9207 - type: CableMV - components: - - pos: 4.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9208 - type: CableMV - components: - - pos: 5.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9209 - type: CableMV - components: - - pos: 6.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9210 - type: Table - components: - - pos: 18.5,36.5 - parent: 8364 - type: Transform -- uid: 9211 - type: TableWood - components: - - pos: 12.5,41.5 - parent: 8364 - type: Transform -- uid: 9212 - type: TableWood - components: - - pos: 12.5,40.5 - parent: 8364 - type: Transform -- uid: 9213 - type: TableWood - components: - - pos: 12.5,39.5 - parent: 8364 - type: Transform -- uid: 9214 - type: TableWood - components: - - pos: 13.5,39.5 - parent: 8364 - type: Transform -- uid: 9215 - type: TableWood - components: - - pos: 14.5,39.5 - parent: 8364 - type: Transform -- uid: 9216 - type: TableWood - components: - - pos: 16.5,41.5 - parent: 8364 - type: Transform -- uid: 9217 - type: TableWood - components: - - pos: 16.5,40.5 - parent: 8364 - type: Transform -- uid: 9218 - type: CableMV - components: - - pos: 7.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9219 - type: FirelockGlass - components: - - pos: -0.5,29.5 - parent: 8364 - type: Transform -- uid: 9220 - type: ComputerResearchAndDevelopment - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-34.5 - parent: 8364 - type: Transform -- uid: 9221 - type: Rack - components: - - pos: -2.5,33.5 - parent: 8364 - type: Transform -- uid: 9222 - type: ComputerSurveillanceCameraMonitor - components: - - pos: -0.5,33.5 - parent: 8364 - type: Transform -- uid: 9223 - type: ClothingMaskGasSecurity - components: - - pos: -2.5837722,33.57202 - parent: 8364 - type: Transform -- uid: 9224 - type: ClothingMaskGasSecurity - components: - - pos: -2.4743972,33.493896 - parent: 8364 - type: Transform -- uid: 9225 - type: WeaponCapacitorRecharger - components: - - pos: 4.5,33.5 - parent: 8364 - type: Transform -- uid: 9226 - type: WeaponCapacitorRecharger - components: - - pos: 4.5,32.5 - parent: 8364 - type: Transform -- uid: 9227 - type: DisposalUnit - components: - - pos: 4.5,30.5 - parent: 8364 - type: Transform -- uid: 9228 - type: ClothingMaskGasSecurity - components: - - pos: -2.3493972,33.38452 - parent: 8364 - type: Transform -- uid: 9229 - type: HandLabeler - components: - - pos: 1.530674,30.52632 - parent: 8364 - type: Transform -- uid: 9230 - type: BoxFolderRed - components: - - pos: -1.4970741,30.587648 - parent: 8364 - type: Transform -- uid: 9231 - type: Pen - components: - - pos: -1.2001991,30.822023 - parent: 8364 - type: Transform -- uid: 9232 - type: Pen - components: - - pos: -0.5,29.5 - parent: 8364 - type: Transform -- uid: 9233 - type: Paper - components: - - pos: -0.5,29.5 - parent: 8364 - type: Transform -- uid: 9234 - type: LockerWardenFilled - components: - - pos: -2.5,30.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9235 - type: Rack - components: - - pos: -0.5,37.5 - parent: 8364 - type: Transform -- uid: 9236 - type: Rack - components: - - pos: 0.5,37.5 - parent: 8364 - type: Transform -- uid: 9237 - type: Rack - components: - - pos: 1.5,37.5 - parent: 8364 - type: Transform -- uid: 9238 - type: Rack - components: - - pos: 2.5,37.5 - parent: 8364 - type: Transform -- uid: 9239 - type: TableReinforced - components: - - pos: 5.5,37.5 - parent: 8364 - type: Transform -- uid: 9240 - type: ChairOfficeDark - components: - - pos: -0.5,30.5 - parent: 8364 - type: Transform -- uid: 9241 - type: AirlockArmoryGlassLocked - components: - - pos: 5.5,31.5 - parent: 8364 - type: Transform -- uid: 9242 - type: Windoor - components: - - name: Reception Desk - type: MetaData - - pos: -0.5,29.5 - parent: 8364 - type: Transform -- uid: 9243 - type: SpawnMobMcGriff - components: - - pos: 3.5,33.5 - parent: 8364 - type: Transform -- uid: 9244 - type: Table - components: - - pos: 1.5,30.5 - parent: 8364 - type: Transform -- uid: 9245 - type: WindoorSecurityLocked - components: - - name: Armory Desk - type: MetaData - - rot: 1.5707963267948966 rad - pos: 5.5,37.5 - parent: 8364 - type: Transform -- uid: 9246 - type: DisposalTrunk - components: - - pos: -22.5,-15.5 - parent: 8364 - type: Transform -- uid: 9247 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 4.5,37.5 - parent: 8364 - type: Transform -- uid: 9248 - type: CableMV - components: - - pos: 3.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9249 - type: CableMV - components: - - pos: 2.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9250 - type: LockerHeadOfSecurityFilled - components: - - pos: 16.5,38.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9251 - type: filingCabinetDrawer - components: - - pos: 3.5,30.5 - parent: 8364 - type: Transform -- uid: 9252 - type: SpawnPointSecurityOfficer - components: - - pos: 9.5,38.5 - parent: 8364 - type: Transform -- uid: 9253 - type: SpawnPointSecurityOfficer - components: - - pos: 9.5,37.5 - parent: 8364 - type: Transform -- uid: 9254 - type: RandomPosterContraband - components: - - pos: -3.5,23.5 - parent: 8364 - type: Transform -- uid: 9255 - type: AirlockSecurityGlassLocked - components: - - pos: -7.5,28.5 - parent: 8364 - type: Transform -- uid: 9256 - type: LockerSecurityFilled - components: - - pos: 10.5,37.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9257 - type: WardrobePrisonFilled - components: - - pos: -8.5,23.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9258 - type: LockerSecurityFilled - components: - - pos: 10.5,38.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9259 - type: LockerSecurityFilled - components: - - pos: 10.5,39.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9260 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 1.5,41.5 - parent: 8364 - type: Transform -- uid: 9261 - type: ClosetL3SecurityFilled - components: - - pos: 10.5,41.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.9556966 - - 18.642859 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9262 - type: FirelockGlass - components: - - pos: -1.5,18.5 - parent: 8364 - type: Transform -- uid: 9263 - type: WallReinforced - components: - - pos: 30.5,27.5 - parent: 8364 - type: Transform -- uid: 9264 - type: CableMV - components: - - pos: 2.5,32.5 - parent: 8364 - type: Transform -- uid: 9265 - type: CableMV - components: - - pos: 2.5,33.5 - parent: 8364 - type: Transform -- uid: 9266 - type: CableMV - components: - - pos: 1.5,33.5 - parent: 8364 - type: Transform -- uid: 9267 - type: CableMV - components: - - pos: 0.5,33.5 - parent: 8364 - type: Transform -- uid: 9268 - type: CableMV - components: - - pos: -0.5,33.5 - parent: 8364 - type: Transform -- uid: 9269 - type: CableMV - components: - - pos: -1.5,33.5 - parent: 8364 - type: Transform -- uid: 9270 - type: CableMV - components: - - pos: -1.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9271 - type: Poweredlight - components: - - pos: -17.5,24.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9272 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -15.5,19.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9273 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,31.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9274 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,33.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9275 - type: Poweredlight - components: - - pos: 3.5,39.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9276 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,36.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9277 - type: Poweredlight - components: - - pos: 8.5,41.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9278 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,39.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9279 - type: WallReinforced - components: - - pos: 29.5,25.5 - parent: 8364 - type: Transform -- uid: 9280 - type: Poweredlight - components: - - pos: 15.5,35.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9281 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,34.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9282 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 10.5,30.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9283 - type: CableApcExtension - components: - - pos: 4.5,38.5 - parent: 8364 - type: Transform -- uid: 9284 - type: CableApcExtension - components: - - pos: 5.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9285 - type: CableApcExtension - components: - - pos: 6.5,38.5 - parent: 8364 - type: Transform -- uid: 9286 - type: CableApcExtension - components: - - pos: 3.5,38.5 - parent: 8364 - type: Transform -- uid: 9287 - type: CableApcExtension - components: - - pos: 2.5,38.5 - parent: 8364 - type: Transform -- uid: 9288 - type: CableApcExtension - components: - - pos: 1.5,38.5 - parent: 8364 - type: Transform -- uid: 9289 - type: CableApcExtension - components: - - pos: 0.5,38.5 - parent: 8364 - type: Transform -- uid: 9290 - type: CableApcExtension - components: - - pos: -0.5,38.5 - parent: 8364 - type: Transform -- uid: 9291 - type: CableApcExtension - components: - - pos: -1.5,38.5 - parent: 8364 - type: Transform -- uid: 9292 - type: CableApcExtension - components: - - pos: -1.5,37.5 - parent: 8364 - type: Transform -- uid: 9293 - type: CableApcExtension - components: - - pos: 3.5,37.5 - parent: 8364 - type: Transform -- uid: 9294 - type: CableApcExtension - components: - - pos: 0.5,37.5 - parent: 8364 - type: Transform -- uid: 9295 - type: CableApcExtension - components: - - pos: 7.5,38.5 - parent: 8364 - type: Transform -- uid: 9296 - type: CableApcExtension - components: - - pos: 8.5,38.5 - parent: 8364 - type: Transform -- uid: 9297 - type: CableApcExtension - components: - - pos: 8.5,39.5 - parent: 8364 - type: Transform -- uid: 9298 - type: CableApcExtension - components: - - pos: 8.5,37.5 - parent: 8364 - type: Transform -- uid: 9299 - type: CableApcExtension - components: - - pos: 8.5,36.5 - parent: 8364 - type: Transform -- uid: 9300 - type: CableApcExtension - components: - - pos: 11.5,39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9301 - type: CableApcExtension - components: - - pos: 12.5,39.5 - parent: 8364 - type: Transform -- uid: 9302 - type: CableApcExtension - components: - - pos: 13.5,39.5 - parent: 8364 - type: Transform -- uid: 9303 - type: CableApcExtension - components: - - pos: 14.5,39.5 - parent: 8364 - type: Transform -- uid: 9304 - type: CableApcExtension - components: - - pos: 15.5,39.5 - parent: 8364 - type: Transform -- uid: 9305 - type: CableApcExtension - components: - - pos: 15.5,40.5 - parent: 8364 - type: Transform -- uid: 9306 - type: CableApcExtension - components: - - pos: 15.5,38.5 - parent: 8364 - type: Transform -- uid: 9307 - type: CableApcExtension - components: - - pos: 19.5,33.5 - parent: 8364 - type: Transform -- uid: 9308 - type: CableApcExtension - components: - - pos: 18.5,33.5 - parent: 8364 - type: Transform -- uid: 9309 - type: CableApcExtension - components: - - pos: 17.5,33.5 - parent: 8364 - type: Transform -- uid: 9310 - type: CableApcExtension - components: - - pos: 16.5,33.5 - parent: 8364 - type: Transform -- uid: 9311 - type: CableApcExtension - components: - - pos: 15.5,33.5 - parent: 8364 - type: Transform -- uid: 9312 - type: CableApcExtension - components: - - pos: 14.5,33.5 - parent: 8364 - type: Transform -- uid: 9313 - type: CableApcExtension - components: - - pos: 13.5,33.5 - parent: 8364 - type: Transform -- uid: 9314 - type: CableApcExtension - components: - - pos: 13.5,32.5 - parent: 8364 - type: Transform -- uid: 9315 - type: CableApcExtension - components: - - pos: 13.5,31.5 - parent: 8364 - type: Transform -- uid: 9316 - type: PlasticFlapsClear - components: - - pos: 19.5,31.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 9317 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 17.5,32.5 - parent: 8364 - type: Transform -- uid: 9318 - type: CableApcExtension - components: - - pos: 12.5,31.5 - parent: 8364 - type: Transform -- uid: 9319 - type: CableApcExtension - components: - - pos: 11.5,31.5 - parent: 8364 - type: Transform -- uid: 9320 - type: CableApcExtension - components: - - pos: 10.5,31.5 - parent: 8364 - type: Transform -- uid: 9321 - type: CableApcExtension - components: - - pos: 9.5,31.5 - parent: 8364 - type: Transform -- uid: 9322 - type: CableApcExtension - components: - - pos: 8.5,31.5 - parent: 8364 - type: Transform -- uid: 9323 - type: CableApcExtension - components: - - pos: 7.5,31.5 - parent: 8364 - type: Transform -- uid: 9324 - type: CableApcExtension - components: - - pos: 15.5,34.5 - parent: 8364 - type: Transform -- uid: 9325 - type: CableApcExtension - components: - - pos: 12.5,33.5 - parent: 8364 - type: Transform -- uid: 9326 - type: CableApcExtension - components: - - pos: 18.5,34.5 - parent: 8364 - type: Transform -- uid: 9327 - type: CableApcExtension - components: - - pos: 18.5,35.5 - parent: 8364 - type: Transform -- uid: 9328 - type: CableApcExtension - components: - - pos: 19.5,35.5 - parent: 8364 - type: Transform -- uid: 9329 - type: WallReinforced - components: - - pos: 22.5,43.5 - parent: 8364 - type: Transform -- uid: 9330 - type: WallReinforced - components: - - pos: 26.5,36.5 - parent: 8364 - type: Transform -- uid: 9331 - type: WallReinforced - components: - - pos: -1.5,52.5 - parent: 8364 - type: Transform -- uid: 9332 - type: Grille - components: - - pos: 21.5,40.5 - parent: 8364 - type: Transform -- uid: 9333 - type: IntercomMedical - components: - - pos: 38.5,-54.5 - parent: 8364 - type: Transform -- uid: 9334 - type: CableApcExtension - components: - - pos: -1.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9335 - type: CableApcExtension - components: - - pos: -1.5,33.5 - parent: 8364 - type: Transform -- uid: 9336 - type: CableApcExtension - components: - - pos: -2.5,30.5 - parent: 8364 - type: Transform -- uid: 9337 - type: CableApcExtension - components: - - pos: 0.5,31.5 - parent: 8364 - type: Transform -- uid: 9338 - type: CableApcExtension - components: - - pos: -0.5,31.5 - parent: 8364 - type: Transform -- uid: 9339 - type: CableApcExtension - components: - - pos: -1.5,31.5 - parent: 8364 - type: Transform -- uid: 9340 - type: CableApcExtension - components: - - pos: 1.5,31.5 - parent: 8364 - type: Transform -- uid: 9341 - type: CableApcExtension - components: - - pos: 2.5,31.5 - parent: 8364 - type: Transform -- uid: 9342 - type: CableApcExtension - components: - - pos: 3.5,31.5 - parent: 8364 - type: Transform -- uid: 9343 - type: WeaponCapacitorRecharger - components: - - pos: 7.5,35.5 - parent: 8364 - type: Transform -- uid: 9344 - type: WeaponCapacitorRecharger - components: - - pos: 6.5,35.5 - parent: 8364 - type: Transform -- uid: 9345 - type: BoxFlashbang - components: - - pos: 0.32543182,35.35921 - parent: 8364 - type: Transform -- uid: 9346 - type: BoxHandcuff - components: - - pos: 0.7629318,35.499836 - parent: 8364 - type: Transform -- uid: 9347 - type: AtmosFixNitrogenMarker - components: - - pos: 14.5,-66.5 - parent: 8364 - type: Transform -- uid: 9348 - type: AtmosFixOxygenMarker - components: - - pos: 16.5,-64.5 - parent: 8364 - type: Transform -- uid: 9349 - type: AtmosFixOxygenMarker - components: - - pos: 16.5,-66.5 - parent: 8364 - type: Transform -- uid: 9350 - type: AtmosFixOxygenMarker - components: - - pos: 17.5,-64.5 - parent: 8364 - type: Transform -- uid: 9351 - type: AtmosFixOxygenMarker - components: - - pos: 17.5,-65.5 - parent: 8364 - type: Transform -- uid: 9352 - type: AtmosFixOxygenMarker - components: - - pos: 18.5,-64.5 - parent: 8364 - type: Transform -- uid: 9353 - type: AtmosFixOxygenMarker - components: - - pos: 18.5,-65.5 - parent: 8364 - type: Transform -- uid: 9354 - type: AtmosFixOxygenMarker - components: - - pos: 18.5,-66.5 - parent: 8364 - type: Transform -- uid: 9355 - type: AtmosFixBlockerMarker - components: - - pos: 26.5,-55.5 - parent: 8364 - type: Transform -- uid: 9356 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -0.5,37.5 - parent: 8364 - type: Transform -- uid: 9357 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -0.5,37.5 - parent: 8364 - type: Transform -- uid: 9358 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 0.5,37.5 - parent: 8364 - type: Transform -- uid: 9359 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 1.5,37.5 - parent: 8364 - type: Transform -- uid: 9360 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 2.5,37.5 - parent: 8364 - type: Transform -- uid: 9361 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 2.5,37.5 - parent: 8364 - type: Transform -- uid: 9362 - type: ClosetBase - components: - - name: contraband closet - type: MetaData - - pos: -2.5,37.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9363 - type: GasPipeBend - components: - - pos: 26.5,25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9364 - type: Rack - components: - - pos: 27.5,21.5 - parent: 8364 - type: Transform -- uid: 9365 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9366 - type: ClothingHeadHelmetRiot - components: - - pos: 2.689872,39.342834 - parent: 8364 - type: Transform -- uid: 9367 - type: ClothingHeadHelmetRiot - components: - - pos: 2.689872,39.624084 - parent: 8364 - type: Transform -- uid: 9368 - type: ClothingHeadHelmetRiot - components: - - pos: 2.689872,39.51471 - parent: 8364 - type: Transform -- uid: 9369 - type: ClothingOuterArmorRiot - components: - - pos: 2.330497,39.530334 - parent: 8364 - type: Transform -- uid: 9370 - type: ClothingOuterArmorRiot - components: - - pos: 2.346122,39.38971 - parent: 8364 - type: Transform -- uid: 9371 - type: ClothingOuterArmorRiot - components: - - pos: 2.314872,39.67096 - parent: 8364 - type: Transform -- uid: 9372 - type: ClothingOuterArmorReflective - components: - - pos: 0.3043524,39.56628 - parent: 8364 - type: Transform -- uid: 9373 - type: ClothingOuterArmorReflective - components: - - pos: 0.4762274,39.44128 - parent: 8364 - type: Transform -- uid: 9374 - type: ClothingOuterArmorReflective - components: - - pos: 0.6793524,39.28503 - parent: 8364 - type: Transform -- uid: 9375 - type: ClothingOuterArmorBulletproof - components: - - pos: 0.54769325,39.79596 - parent: 8364 - type: Transform -- uid: 9376 - type: ClothingOuterArmorBulletproof - components: - - pos: 0.71956825,39.592834 - parent: 8364 - type: Transform -- uid: 9377 - type: ClothingOuterArmorBulletproof - components: - - pos: 0.81331825,39.405334 - parent: 8364 - type: Transform -- uid: 9378 - type: AtmosFixBlockerMarker - components: - - pos: 26.5,-54.5 - parent: 8364 - type: Transform -- uid: 9379 - type: ComputerPowerMonitoring - components: - - pos: -2.5,-61.5 - parent: 8364 - type: Transform -- uid: 9380 - type: EpinephrineChemistryBottle - components: - - pos: -9.402022,31.98179 - parent: 8364 - type: Transform -- uid: 9381 - type: BoxBeanbag - components: - - pos: -0.63110375,35.29573 - parent: 8364 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 9382 - type: EpinephrineChemistryBottle - components: - - pos: -9.573897,32.028664 - parent: 8364 - type: Transform -- uid: 9383 - type: WindowReinforcedDirectional - components: - - pos: 22.5,37.5 - parent: 8364 - type: Transform -- uid: 9384 - type: BoxBeanbag - components: - - pos: -0.28735375,35.29573 - parent: 8364 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 9385 - type: AtmosFixBlockerMarker - components: - - pos: 27.5,-56.5 - parent: 8364 - type: Transform -- uid: 9386 - type: AtmosFixBlockerMarker - components: - - pos: 27.5,-54.5 - parent: 8364 - type: Transform -- uid: 9387 - type: AtmosFixBlockerMarker - components: - - pos: 28.5,-56.5 - parent: 8364 - type: Transform -- uid: 9388 - type: BoxFlashbang - components: - - pos: -2.4849367,38.8545 - parent: 8364 - type: Transform -- uid: 9389 - type: BoxHandcuff - components: - - pos: -2.5193274,39.107735 - parent: 8364 - type: Transform -- uid: 9390 - type: WindowReinforcedDirectional - components: - - pos: 24.5,37.5 - parent: 8364 - type: Transform -- uid: 9391 - type: WindoorSecurityLocked - components: - - pos: 23.5,37.5 - parent: 8364 - type: Transform -- uid: 9392 - type: GasVentPump - components: - - pos: 13.5,20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9393 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9394 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9395 - type: IntercomMedical - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-34.5 - parent: 8364 - type: Transform -- uid: 9396 - type: Grille - components: - - pos: 21.5,41.5 - parent: 8364 - type: Transform -- uid: 9397 - type: WallReinforced - components: - - pos: 23.5,31.5 - parent: 8364 - type: Transform -- uid: 9398 - type: WallReinforced - components: - - pos: 21.5,43.5 - parent: 8364 - type: Transform -- uid: 9399 - type: ReinforcedWindow - components: - - pos: 20.5,34.5 - parent: 8364 - type: Transform -- uid: 9400 - type: DisposalUnit - components: - - pos: 19.5,36.5 - parent: 8364 - type: Transform -- uid: 9401 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 14.5,35.5 - parent: 8364 - type: Transform -- uid: 9402 - type: DisposalUnit - components: - - pos: -6.5,32.5 - parent: 8364 - type: Transform -- uid: 9403 - type: Grille - components: - - pos: -16.5,21.5 - parent: 8364 - type: Transform -- uid: 9404 - type: BoxFolderRed - components: - - pos: 13.5,39.5 - parent: 8364 - type: Transform -- uid: 9405 - type: LampGold - components: - - pos: 12.51148,39.935867 - parent: 8364 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 9406 - type: Paper - components: - - pos: 13.54273,39.529617 - parent: 8364 - type: Transform -- uid: 9407 - type: WeaponCapacitorRecharger - components: - - pos: 12.5,40.5 - parent: 8364 - type: Transform -- uid: 9408 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9409 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9410 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9411 - type: FoodBoxDonut - components: - - pos: 14.5,39.5 - parent: 8364 - type: Transform -- uid: 9412 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9413 - type: ComfyChair - components: - - pos: 13.5,40.5 - parent: 8364 - type: Transform -- uid: 9414 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 13.5,38.5 - parent: 8364 - type: Transform -- uid: 9415 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 20.5,35.5 - parent: 8364 - type: Transform -- uid: 9416 - type: VendingMachineLawDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,13.5 - parent: 8364 - type: Transform -- uid: 9417 - type: AirlockBrigGlassLocked - components: - - pos: -13.5,18.5 - parent: 8364 - type: Transform -- uid: 9418 - type: CarpetBlue - components: - - pos: -14.5,16.5 - parent: 8364 - type: Transform -- uid: 9419 - type: VendingMachineDetDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,16.5 - parent: 8364 - type: Transform -- uid: 9420 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -14.5,17.5 - parent: 8364 - type: Transform -- uid: 9421 - type: SignalButton - components: - - pos: -7.5,14.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9642 - - port: Toggle - uid: 9639 - - port: Toggle - uid: 9640 - - port: Toggle - uid: 9641 - type: SignalTransmitter -- uid: 9422 - type: CableApcExtension - components: - - pos: -19.5,50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9423 - type: CrateEngineeringCableBulk - components: - - pos: -44.5,10.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 9424 - type: WallmountTelescreen - components: - - pos: 70.5,-33.5 - parent: 8364 - type: Transform -- uid: 9425 - type: AirlockBrigLocked - components: - - pos: -14.5,14.5 - parent: 8364 - type: Transform -- uid: 9426 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -14.5,16.5 - parent: 8364 - type: Transform -- uid: 9427 - type: SpawnPointWarden - components: - - pos: -0.5,30.5 - parent: 8364 - type: Transform -- uid: 9428 - type: WaterCooler - components: - - pos: -10.5,15.5 - parent: 8364 - type: Transform -- uid: 9429 - type: CarpetBlue - components: - - pos: -14.5,15.5 - parent: 8364 - type: Transform -- uid: 9430 - type: CarpetBlue - components: - - pos: -14.5,17.5 - parent: 8364 - type: Transform -- uid: 9431 - type: CarpetBlue - components: - - pos: -13.5,15.5 - parent: 8364 - type: Transform -- uid: 9432 - type: CarpetBlue - components: - - pos: -13.5,16.5 - parent: 8364 - type: Transform -- uid: 9433 - type: WallReinforced - components: - - pos: 28.5,30.5 - parent: 8364 - type: Transform -- uid: 9434 - type: DisposalPipe - components: - - pos: 17.5,31.5 - parent: 8364 - type: Transform -- uid: 9435 - type: WallReinforced - components: - - pos: 27.5,31.5 - parent: 8364 - type: Transform -- uid: 9436 - type: AirlockExternalGlassLocked - components: - - pos: 28.5,26.5 - parent: 8364 - type: Transform -- uid: 9437 - type: GasPressurePump - components: - - pos: 26.5,23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9438 - type: GasPipeStraight - components: - - pos: 27.5,27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9439 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 26.5,22.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9440 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 27.5,22.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9441 - type: GasPipeStraight - components: - - pos: 27.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9442 - type: PosterLegitFruitBowl - components: - - pos: 33.5,-10.5 - parent: 8364 - type: Transform -- uid: 9443 - type: PosterContrabandEAT - components: - - pos: 40.5,-10.5 - parent: 8364 - type: Transform -- uid: 9444 - type: PottedPlant11 - components: - - pos: 43.5,-0.5 - parent: 8364 - type: Transform -- uid: 9445 - type: Grille - components: - - pos: 48.5,2.5 - parent: 8364 - type: Transform -- uid: 9446 - type: RandomPosterLegit - components: - - pos: 9.5,29.5 - parent: 8364 - type: Transform -- uid: 9447 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-0.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9448 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 25.5,23.5 - parent: 8364 - type: Transform -- uid: 9449 - type: RandomPosterLegit - components: - - pos: 5.5,35.5 - parent: 8364 - type: Transform -- uid: 9450 - type: PottedPlant0 - components: - - pos: -23.5,-9.5 - parent: 8364 - type: Transform -- uid: 9451 - type: RandomPosterLegit - components: - - pos: 9.5,22.5 - parent: 8364 - type: Transform -- uid: 9452 - type: RandomPosterContraband - components: - - pos: -7.5,24.5 - parent: 8364 - type: Transform -- uid: 9453 - type: SpawnPointSecurityCadet - components: - - pos: 7.5,39.5 - parent: 8364 - type: Transform -- uid: 9454 - type: SpawnPointSecurityCadet - components: - - pos: 7.5,38.5 - parent: 8364 - type: Transform -- uid: 9455 - type: RandomPosterLegit - components: - - pos: -15.5,21.5 - parent: 8364 - type: Transform -- uid: 9456 - type: RandomPosterLegit - components: - - pos: -11.5,21.5 - parent: 8364 - type: Transform -- uid: 9457 - type: WallReinforced - components: - - pos: 61.5,-70.5 - parent: 8364 - type: Transform -- uid: 9458 - type: GasPipeStraight - components: - - pos: 27.5,25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9459 - type: RandomSpawner - components: - - pos: 9.5,27.5 - parent: 8364 - type: Transform -- uid: 9460 - type: RandomSpawner - components: - - pos: -12.5,26.5 - parent: 8364 - type: Transform -- uid: 9461 - type: SMESBasic - components: - - pos: 80.5,-65.5 - parent: 8364 - type: Transform -- uid: 9462 - type: CableHV - components: - - pos: 81.5,-83.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9463 - type: RandomSpawner - components: - - pos: -1.5,23.5 - parent: 8364 - type: Transform -- uid: 9464 - type: PottedPlant11 - components: - - pos: -8.5,50.5 - parent: 8364 - type: Transform -- uid: 9465 - type: CableHV - components: - - pos: 81.5,-84.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9466 - type: Grille - components: - - pos: -3.5,44.5 - parent: 8364 - type: Transform -- uid: 9467 - type: ReinforcedWindow - components: - - pos: -9.5,37.5 - parent: 8364 - type: Transform -- uid: 9468 - type: CableHV - components: - - pos: 81.5,-85.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9469 - type: CableHV - components: - - pos: 81.5,-86.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9470 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 8364 - type: Transform -- uid: 9471 - type: CableHV - components: - - pos: 83.5,-82.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9472 - type: Grille - components: - - pos: 25.5,42.5 - parent: 8364 - type: Transform -- uid: 9473 - type: CableHV - components: - - pos: 82.5,-82.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9474 - type: RandomSpawner - components: - - pos: 2.5,17.5 - parent: 8364 - type: Transform -- uid: 9475 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 25.5,30.5 - parent: 8364 - type: Transform -- uid: 9476 - type: RandomSpawner - components: - - pos: 2.5,3.5 - parent: 8364 - type: Transform -- uid: 9477 - type: CableHV - components: - - pos: 80.5,-82.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9478 - type: CableHV - components: - - pos: 79.5,-82.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9479 - type: CableHV - components: - - pos: 79.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9480 - type: SpawnMobMouse - components: - - pos: 20.5,26.5 - parent: 8364 - type: Transform -- uid: 9481 - type: DisposalTrunk - components: - - pos: 19.5,36.5 - parent: 8364 - type: Transform -- uid: 9482 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,37.5 - parent: 8364 - type: Transform -- uid: 9483 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 4.5,30.5 - parent: 8364 - type: Transform -- uid: 9484 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,21.5 - parent: 8364 - type: Transform -- uid: 9485 - type: DisposalTrunk - components: - - pos: -6.5,32.5 - parent: 8364 - type: Transform -- uid: 9486 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 21.5,21.5 - parent: 8364 - type: Transform -- uid: 9487 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 21.5,22.5 - parent: 8364 - type: Transform -- uid: 9488 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 21.5,23.5 - parent: 8364 - type: Transform -- uid: 9489 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 21.5,24.5 - parent: 8364 - type: Transform -- uid: 9490 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 21.5,25.5 - parent: 8364 - type: Transform -- uid: 9491 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 21.5,26.5 - parent: 8364 - type: Transform -- uid: 9492 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 21.5,27.5 - parent: 8364 - type: Transform -- uid: 9493 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 21.5,28.5 - parent: 8364 - type: Transform -- uid: 9494 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 21.5,29.5 - parent: 8364 - type: Transform -- uid: 9495 - type: DisposalBend - components: - - pos: 21.5,30.5 - parent: 8364 - type: Transform -- uid: 9496 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,30.5 - parent: 8364 - type: Transform -- uid: 9497 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,30.5 - parent: 8364 - type: Transform -- uid: 9498 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 18.5,32.5 - parent: 8364 - type: Transform -- uid: 9499 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: 17.5,30.5 - parent: 8364 - type: Transform -- uid: 9500 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,30.5 - parent: 8364 - type: Transform -- uid: 9501 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,30.5 - parent: 8364 - type: Transform -- uid: 9502 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: 14.5,30.5 - parent: 8364 - type: Transform - - visible: False - type: Sprite -- uid: 9503 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,30.5 - parent: 8364 - type: Transform -- uid: 9504 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,30.5 - parent: 8364 - type: Transform -- uid: 9505 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,30.5 - parent: 8364 - type: Transform -- uid: 9506 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,30.5 - parent: 8364 - type: Transform -- uid: 9507 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,30.5 - parent: 8364 - type: Transform -- uid: 9508 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,30.5 - parent: 8364 - type: Transform -- uid: 9509 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,35.5 - parent: 8364 - type: Transform -- uid: 9510 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 19.5,34.5 - parent: 8364 - type: Transform -- uid: 9511 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 18.5,34.5 - parent: 8364 - type: Transform -- uid: 9512 - type: DisposalPipe - components: - - pos: 18.5,33.5 - parent: 8364 - type: Transform -- uid: 9513 - type: WindoorSecurityLocked - components: - - pos: 19.5,32.5 - parent: 8364 - type: Transform -- uid: 9514 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 18.5,32.5 - parent: 8364 - type: Transform -- uid: 9515 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 4.5,31.5 - parent: 8364 - type: Transform -- uid: 9516 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,31.5 - parent: 8364 - type: Transform -- uid: 9517 - type: DisposalBend - components: - - pos: 6.5,31.5 - parent: 8364 - type: Transform -- uid: 9518 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 6.5,30.5 - parent: 8364 - type: Transform -- uid: 9519 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: 7.5,30.5 - parent: 8364 - type: Transform - - visible: False - type: Sprite -- uid: 9520 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 7.5,29.5 - parent: 8364 - type: Transform -- uid: 9521 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 7.5,27.5 - parent: 8364 - type: Transform -- uid: 9522 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,26.5 - parent: 8364 - type: Transform -- uid: 9523 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,26.5 - parent: 8364 - type: Transform -- uid: 9524 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,26.5 - parent: 8364 - type: Transform -- uid: 9525 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,26.5 - parent: 8364 - type: Transform -- uid: 9526 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,26.5 - parent: 8364 - type: Transform -- uid: 9527 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,26.5 - parent: 8364 - type: Transform -- uid: 9528 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,26.5 - parent: 8364 - type: Transform -- uid: 9529 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,26.5 - parent: 8364 - type: Transform -- uid: 9530 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,26.5 - parent: 8364 - type: Transform -- uid: 9531 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,26.5 - parent: 8364 - type: Transform -- uid: 9532 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,26.5 - parent: 8364 - type: Transform -- uid: 9533 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,26.5 - parent: 8364 - type: Transform -- uid: 9534 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 7.5,26.5 - parent: 8364 - type: Transform -- uid: 9535 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -5.5,26.5 - parent: 8364 - type: Transform - - visible: False - type: Sprite -- uid: 9536 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -6.5,31.5 - parent: 8364 - type: Transform -- uid: 9537 - type: DisposalBend - components: - - pos: -5.5,31.5 - parent: 8364 - type: Transform -- uid: 9538 - type: DisposalPipe - components: - - pos: -5.5,30.5 - parent: 8364 - type: Transform -- uid: 9539 - type: DisposalPipe - components: - - pos: -5.5,29.5 - parent: 8364 - type: Transform -- uid: 9540 - type: DisposalPipe - components: - - pos: -5.5,28.5 - parent: 8364 - type: Transform -- uid: 9541 - type: DisposalPipe - components: - - pos: -5.5,27.5 - parent: 8364 - type: Transform -- uid: 9542 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,26.5 - parent: 8364 - type: Transform -- uid: 9543 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,26.5 - parent: 8364 - type: Transform -- uid: 9544 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,26.5 - parent: 8364 - type: Transform -- uid: 9545 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,26.5 - parent: 8364 - type: Transform -- uid: 9546 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,26.5 - parent: 8364 - type: Transform -- uid: 9547 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,26.5 - parent: 8364 - type: Transform -- uid: 9548 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,26.5 - parent: 8364 - type: Transform -- uid: 9549 - type: DisposalPipe - components: - - pos: -13.5,25.5 - parent: 8364 - type: Transform -- uid: 9550 - type: DisposalPipe - components: - - pos: -13.5,24.5 - parent: 8364 - type: Transform -- uid: 9551 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,23.5 - parent: 8364 - type: Transform -- uid: 9552 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,23.5 - parent: 8364 - type: Transform -- uid: 9553 - type: ReinforcedWindow - components: - - pos: -16.5,21.5 - parent: 8364 - type: Transform -- uid: 9554 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -13.5,26.5 - parent: 8364 - type: Transform -- uid: 9555 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -13.5,23.5 - parent: 8364 - type: Transform -- uid: 9556 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -18.5,23.5 - parent: 8364 - type: Transform -- uid: 9557 - type: DisposalPipe - components: - - pos: 7.5,28.5 - parent: 8364 - type: Transform -- uid: 9558 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 14.5,37.5 - parent: 8364 - type: Transform -- uid: 9559 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 16.5,37.5 - parent: 8364 - type: Transform -- uid: 9560 - type: DisposalUnit - components: - - pos: 16.5,37.5 - parent: 8364 - type: Transform -- uid: 9561 - type: DisposalPipe - components: - - pos: 14.5,32.5 - parent: 8364 - type: Transform -- uid: 9562 - type: DisposalPipe - components: - - pos: 14.5,31.5 - parent: 8364 - type: Transform -- uid: 9563 - type: CableHV - components: - - pos: 80.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9564 - type: CableHV - components: - - pos: 82.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9565 - type: CableHV - components: - - pos: 83.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9566 - type: DeployableBarrier - components: - - anchored: False - pos: 3.5,35.5 - parent: 8364 - type: Transform -- uid: 9567 - type: DeployableBarrier - components: - - anchored: False - pos: 4.5,35.5 - parent: 8364 - type: Transform -- uid: 9568 - type: ReinforcedWindow - components: - - pos: 21.5,42.5 - parent: 8364 - type: Transform -- uid: 9569 - type: Grille - components: - - pos: 25.5,41.5 - parent: 8364 - type: Transform -- uid: 9570 - type: WallReinforced - components: - - pos: 25.5,39.5 - parent: 8364 - type: Transform -- uid: 9571 - type: Grille - components: - - pos: 25.5,40.5 - parent: 8364 - type: Transform -- uid: 9572 - type: Table - components: - - pos: 21.5,34.5 - parent: 8364 - type: Transform -- uid: 9573 - type: Table - components: - - pos: 21.5,35.5 - parent: 8364 - type: Transform -- uid: 9574 - type: CableHV - components: - - pos: 83.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9575 - type: IntercomScience - components: - - pos: 58.5,-38.5 - parent: 8364 - type: Transform -- uid: 9576 - type: IntercomSecurity - components: - - pos: 4.5,29.5 - parent: 8364 - type: Transform -- uid: 9577 - type: Table - components: - - pos: 25.5,35.5 - parent: 8364 - type: Transform -- uid: 9578 - type: CableHV - components: - - pos: 82.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9579 - type: IntercomCommand - components: - - pos: -33.5,7.5 - parent: 8364 - type: Transform -- uid: 9580 - type: Table - components: - - pos: 25.5,32.5 - parent: 8364 - type: Transform -- uid: 9581 - type: CableHV - components: - - pos: 80.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9582 - type: CableHV - components: - - pos: 79.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9583 - type: CableHV - components: - - pos: 83.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9584 - type: CableHV - components: - - pos: 84.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9585 - type: CableHV - components: - - pos: 85.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9586 - type: CableHV - components: - - pos: 86.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9587 - type: CableHV - components: - - pos: 87.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9588 - type: CableHV - components: - - pos: 87.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9589 - type: BoxFlashbang - components: - - pos: 21.5,35.5 - parent: 8364 - type: Transform -- uid: 9590 - type: AirlockSecurityGlassLocked - components: - - name: Firing Range - type: MetaData - - pos: 20.5,33.5 - parent: 8364 - type: Transform -- uid: 9591 - type: WeaponCapacitorRecharger - components: - - pos: 21.5,34.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9592 - type: CableHV - components: - - pos: 86.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9593 - type: CableHV - components: - - pos: 85.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9594 - type: ReinforcedWindow - components: - - pos: 25.5,42.5 - parent: 8364 - type: Transform -- uid: 9595 - type: AtmosFixBlockerMarker - components: - - pos: 28.5,-55.5 - parent: 8364 - type: Transform -- uid: 9596 - type: ReinforcedWindow - components: - - pos: 25.5,41.5 - parent: 8364 - type: Transform -- uid: 9597 - type: ReinforcedWindow - components: - - pos: 25.5,40.5 - parent: 8364 - type: Transform -- uid: 9598 - type: Poweredlight - components: - - pos: 23.5,42.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9599 - type: CableApcExtension - components: - - pos: 20.5,33.5 - parent: 8364 - type: Transform -- uid: 9600 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,34.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9601 - type: CableApcExtension - components: - - pos: 22.5,33.5 - parent: 8364 - type: Transform -- uid: 9602 - type: CableApcExtension - components: - - pos: 21.5,33.5 - parent: 8364 - type: Transform -- uid: 9603 - type: CableApcExtension - components: - - pos: 23.5,33.5 - parent: 8364 - type: Transform -- uid: 9604 - type: CableApcExtension - components: - - pos: 24.5,33.5 - parent: 8364 - type: Transform -- uid: 9605 - type: CableApcExtension - components: - - pos: 23.5,34.5 - parent: 8364 - type: Transform -- uid: 9606 - type: CableApcExtension - components: - - pos: 23.5,35.5 - parent: 8364 - type: Transform -- uid: 9607 - type: CableApcExtension - components: - - pos: 23.5,36.5 - parent: 8364 - type: Transform -- uid: 9608 - type: CableApcExtension - components: - - pos: 23.5,37.5 - parent: 8364 - type: Transform -- uid: 9609 - type: CableApcExtension - components: - - pos: 23.5,38.5 - parent: 8364 - type: Transform -- uid: 9610 - type: CableApcExtension - components: - - pos: 23.5,39.5 - parent: 8364 - type: Transform -- uid: 9611 - type: CableApcExtension - components: - - pos: 23.5,40.5 - parent: 8364 - type: Transform -- uid: 9612 - type: CableApcExtension - components: - - pos: 23.5,41.5 - parent: 8364 - type: Transform -- uid: 9613 - type: CableHV - components: - - pos: 84.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9614 - type: CableApcExtension - components: - - pos: 20.5,35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9615 - type: CableMV - components: - - pos: 19.5,34.5 - parent: 8364 - type: Transform -- uid: 9616 - type: CableMV - components: - - pos: 19.5,35.5 - parent: 8364 - type: Transform -- uid: 9617 - type: CableMV - components: - - pos: 20.5,35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9618 - type: RandomPosterAny - components: - - pos: 23.5,43.5 - parent: 8364 - type: Transform -- uid: 9619 - type: CableHV - components: - - pos: 83.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9620 - type: CableHV - components: - - pos: 83.5,-77.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9621 - type: WallSolid - components: - - pos: -8.5,14.5 - parent: 8364 - type: Transform -- uid: 9622 - type: CableHV - components: - - pos: 84.5,-77.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9623 - type: AirlockSecurityGlassLocked - components: - - name: Detective's Office - type: MetaData - - pos: -4.5,18.5 - parent: 8364 - type: Transform -- uid: 9624 - type: TableWood - components: - - pos: -5.5,14.5 - parent: 8364 - type: Transform -- uid: 9625 - type: TableWood - components: - - pos: -4.5,14.5 - parent: 8364 - type: Transform -- uid: 9626 - type: TableWood - components: - - pos: -3.5,14.5 - parent: 8364 - type: Transform -- uid: 9627 - type: ComputerStationRecords - components: - - rot: -1.5707963267948966 rad - pos: -3.5,13.5 - parent: 8364 - type: Transform -- uid: 9628 - type: TableWood - components: - - pos: -8.5,17.5 - parent: 8364 - type: Transform -- uid: 9629 - type: CableHV - components: - - pos: 85.5,-77.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9630 - type: TableWood - components: - - pos: -11.5,17.5 - parent: 8364 - type: Transform -- uid: 9631 - type: TableWood - components: - - pos: -10.5,17.5 - parent: 8364 - type: Transform -- uid: 9632 - type: TableWood - components: - - pos: -10.5,16.5 - parent: 8364 - type: Transform -- uid: 9633 - type: TableWood - components: - - pos: -11.5,13.5 - parent: 8364 - type: Transform -- uid: 9634 - type: TableWood - components: - - pos: -12.5,13.5 - parent: 8364 - type: Transform -- uid: 9635 - type: WallSolid - components: - - pos: -7.5,12.5 - parent: 8364 - type: Transform -- uid: 9636 - type: AirlockMaintSecLocked - components: - - name: Detective's Office Maintenance - type: MetaData - - pos: -7.5,13.5 - parent: 8364 - type: Transform -- uid: 9637 - type: Rack - components: - - pos: -3.5,17.5 - parent: 8364 - type: Transform -- uid: 9638 - type: Rack - components: - - pos: -12.5,17.5 - parent: 8364 - type: Transform -- uid: 9639 - type: ShuttersNormalOpen - components: - - pos: -2.5,16.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9421 - type: SignalReceiver -- uid: 9640 - type: ShuttersNormalOpen - components: - - pos: -2.5,15.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9421 - type: SignalReceiver -- uid: 9641 - type: ShuttersNormalOpen - components: - - pos: -2.5,14.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9421 - type: SignalReceiver -- uid: 9642 - type: ShuttersNormalOpen - components: - - pos: -5.5,18.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9421 - type: SignalReceiver -- uid: 9643 - type: DisposalUnit - components: - - pos: -3.5,16.5 - parent: 8364 - type: Transform -- uid: 9644 - type: CableHV - components: - - pos: 86.5,-77.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9645 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -4.5,13.5 - parent: 8364 - type: Transform -- uid: 9646 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -7.5,16.5 - parent: 8364 - type: Transform -- uid: 9647 - type: ChairOfficeDark - components: - - pos: -4.5,15.5 - parent: 8364 - type: Transform -- uid: 9648 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -11.5,14.5 - parent: 8364 - type: Transform -- uid: 9649 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -11.5,16.5 - parent: 8364 - type: Transform -- uid: 9650 - type: CableHV - components: - - pos: 87.5,-77.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9651 - type: APCHighCapacity - components: - - rot: 3.141592653589793 rad - pos: -13.5,14.5 - parent: 8364 - type: Transform -- uid: 9652 - type: CableHV - components: - - pos: 87.5,-79.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9653 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,16.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9654 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -4.5,13.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9655 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,16.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9656 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -11.5,13.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9657 - type: APCHighCapacity - components: - - rot: 3.141592653589793 rad - pos: -8.5,14.5 - parent: 8364 - type: Transform -- uid: 9658 - type: CableHV - components: - - pos: 86.5,-79.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9659 - type: CableMV - components: - - pos: -19.5,21.5 - parent: 8364 - type: Transform -- uid: 9660 - type: CableMV - components: - - pos: -19.5,20.5 - parent: 8364 - type: Transform -- uid: 9661 - type: CableMV - components: - - pos: -18.5,20.5 - parent: 8364 - type: Transform -- uid: 9662 - type: CableMV - components: - - pos: -17.5,20.5 - parent: 8364 - type: Transform -- uid: 9663 - type: CableMV - components: - - pos: -16.5,20.5 - parent: 8364 - type: Transform -- uid: 9664 - type: CableMV - components: - - pos: -15.5,20.5 - parent: 8364 - type: Transform -- uid: 9665 - type: AirlockEngineeringLocked - components: - - name: Port Bow Service Power - type: MetaData - - pos: -43.5,11.5 - parent: 8364 - type: Transform -- uid: 9666 - type: CableMV - components: - - pos: -5.5,20.5 - parent: 8364 - type: Transform -- uid: 9667 - type: CableMV - components: - - pos: -6.5,20.5 - parent: 8364 - type: Transform -- uid: 9668 - type: CableMV - components: - - pos: -7.5,20.5 - parent: 8364 - type: Transform -- uid: 9669 - type: CableMV - components: - - pos: -8.5,20.5 - parent: 8364 - type: Transform -- uid: 9670 - type: CableMV - components: - - pos: -9.5,20.5 - parent: 8364 - type: Transform -- uid: 9671 - type: CableMV - components: - - pos: -10.5,20.5 - parent: 8364 - type: Transform -- uid: 9672 - type: CableMV - components: - - pos: -11.5,20.5 - parent: 8364 - type: Transform -- uid: 9673 - type: CableMV - components: - - pos: -12.5,20.5 - parent: 8364 - type: Transform -- uid: 9674 - type: CableMV - components: - - pos: -13.5,20.5 - parent: 8364 - type: Transform -- uid: 9675 - type: CableMV - components: - - pos: -14.5,20.5 - parent: 8364 - type: Transform -- uid: 9676 - type: SubstationBasic - components: - - name: Port Bow Service Substation - type: MetaData - - pos: -44.5,9.5 - parent: 8364 - type: Transform - - startingCharge: 3899839 - type: Battery - - loadingNetworkDemand: 19.980549 - currentSupply: 19.980549 - supplyRampPosition: 19.980549 - type: PowerNetworkBattery -- uid: 9677 - type: CableHV - components: - - pos: 85.5,-79.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9678 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -43.5,9.5 - parent: 8364 - type: Transform -- uid: 9679 - type: Wrench - components: - - pos: -44.5,14.5 - parent: 8364 - type: Transform -- uid: 9680 - type: Rack - components: - - pos: -44.5,14.5 - parent: 8364 - type: Transform -- uid: 9681 - type: CableHV - components: - - pos: 84.5,-79.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9682 - type: CableHV - components: - - pos: -46.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9683 - type: CableHV - components: - - pos: -44.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9684 - type: CableMV - components: - - pos: -4.5,20.5 - parent: 8364 - type: Transform -- uid: 9685 - type: CableMV - components: - - pos: -4.5,19.5 - parent: 8364 - type: Transform -- uid: 9686 - type: CableMV - components: - - pos: -4.5,18.5 - parent: 8364 - type: Transform -- uid: 9687 - type: CableMV - components: - - pos: -13.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9688 - type: CableApcExtension - components: - - pos: -13.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9689 - type: CableApcExtension - components: - - pos: -13.5,15.5 - parent: 8364 - type: Transform -- uid: 9690 - type: CableApcExtension - components: - - pos: -13.5,16.5 - parent: 8364 - type: Transform -- uid: 9691 - type: CableApcExtension - components: - - pos: -12.5,16.5 - parent: 8364 - type: Transform -- uid: 9692 - type: CableApcExtension - components: - - pos: -11.5,16.5 - parent: 8364 - type: Transform -- uid: 9693 - type: CableApcExtension - components: - - pos: -11.5,15.5 - parent: 8364 - type: Transform -- uid: 9694 - type: CableApcExtension - components: - - pos: -11.5,14.5 - parent: 8364 - type: Transform -- uid: 9695 - type: CableApcExtension - components: - - pos: -8.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9696 - type: CableApcExtension - components: - - pos: -8.5,15.5 - parent: 8364 - type: Transform -- uid: 9697 - type: CableApcExtension - components: - - pos: -8.5,16.5 - parent: 8364 - type: Transform -- uid: 9698 - type: CableApcExtension - components: - - pos: -7.5,16.5 - parent: 8364 - type: Transform -- uid: 9699 - type: CableApcExtension - components: - - pos: -6.5,16.5 - parent: 8364 - type: Transform -- uid: 9700 - type: CableApcExtension - components: - - pos: -5.5,16.5 - parent: 8364 - type: Transform -- uid: 9701 - type: CableApcExtension - components: - - pos: -4.5,16.5 - parent: 8364 - type: Transform -- uid: 9702 - type: CableApcExtension - components: - - pos: -4.5,15.5 - parent: 8364 - type: Transform -- uid: 9703 - type: CableApcExtension - components: - - pos: -4.5,14.5 - parent: 8364 - type: Transform -- uid: 9704 - type: LockerDetectiveFilled - components: - - pos: -8.5,15.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9705 - type: HandLabeler - components: - - pos: -8.5,17.5 - parent: 8364 - type: Transform -- uid: 9706 - type: BriefcaseBrownFilled - components: - - pos: -3.5,17.5 - parent: 8364 - type: Transform -- uid: 9707 - type: BriefcaseBrownFilled - components: - - pos: -12.667753,17.35278 - parent: 8364 - type: Transform -- uid: 9708 - type: AtmosFixBlockerMarker - components: - - pos: 26.5,-52.5 - parent: 8364 - type: Transform -- uid: 9709 - type: Lighter - components: - - pos: -5.036098,14.608129 - parent: 8364 - type: Transform -- uid: 9710 - type: AtmosFixBlockerMarker - components: - - pos: 26.5,-51.5 - parent: 8364 - type: Transform -- uid: 9711 - type: AtmosFixBlockerMarker - components: - - pos: 26.5,-50.5 - parent: 8364 - type: Transform -- uid: 9712 - type: LampGold - components: - - pos: -5.4745197,14.875931 - parent: 8364 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 9713 - type: SpawnPointLawyer - components: - - pos: -11.5,16.5 - parent: 8364 - type: Transform -- uid: 9714 - type: SpawnPointLawyer - components: - - pos: -11.5,14.5 - parent: 8364 - type: Transform -- uid: 9715 - type: LampGold - components: - - pos: -11.396871,17.955116 - parent: 8364 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 9716 - type: BoxFolderBlue - components: - - pos: -10.5,17.5 - parent: 8364 - type: Transform -- uid: 9717 - type: Paper - components: - - pos: -10.5,16.5 - parent: 8364 - type: Transform -- uid: 9718 - type: Paper - components: - - pos: -10.5,16.5 - parent: 8364 - type: Transform -- uid: 9719 - type: Paper - components: - - pos: -10.5,16.5 - parent: 8364 - type: Transform -- uid: 9720 - type: Paper - components: - - pos: -10.5,16.5 - parent: 8364 - type: Transform -- uid: 9721 - type: Paper - components: - - pos: -10.5,16.5 - parent: 8364 - type: Transform -- uid: 9722 - type: BoxFolderBlue - components: - - pos: -10.5,17.5 - parent: 8364 - type: Transform -- uid: 9723 - type: BoxFolderBlue - components: - - pos: -10.5,17.5 - parent: 8364 - type: Transform -- uid: 9724 - type: BoxFolderBlue - components: - - pos: -10.5,17.5 - parent: 8364 - type: Transform -- uid: 9725 - type: BoxFolderBlue - components: - - pos: -10.5,17.5 - parent: 8364 - type: Transform -- uid: 9726 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -3.5,15.5 - parent: 8364 - type: Transform -- uid: 9727 - type: Pen - components: - - pos: -10.415172,17.04186 - parent: 8364 - type: Transform -- uid: 9728 - type: Pen - components: - - pos: -10.415172,17.04186 - parent: 8364 - type: Transform -- uid: 9729 - type: CableHV - components: - - pos: 83.5,-79.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9730 - type: DisposalTrunk - components: - - pos: -3.5,16.5 - parent: 8364 - type: Transform -- uid: 9731 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -6.5,15.5 - parent: 8364 - type: Transform -- uid: 9732 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -6.5,13.5 - parent: 8364 - type: Transform -- uid: 9733 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -8.5,13.5 - parent: 8364 - type: Transform -- uid: 9734 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 8364 - type: Transform -- uid: 9735 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,15.5 - parent: 8364 - type: Transform -- uid: 9736 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,15.5 - parent: 8364 - type: Transform -- uid: 9737 - type: DisposalPipe - components: - - pos: -6.5,14.5 - parent: 8364 - type: Transform -- uid: 9738 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,13.5 - parent: 8364 - type: Transform -- uid: 9739 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -8.5,12.5 - parent: 8364 - type: Transform -- uid: 9740 - type: CableHV - components: - - pos: 83.5,-81.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9741 - type: AirlockAtmosphericsLocked - components: - - pos: 27.5,24.5 - parent: 8364 - type: Transform -- uid: 9742 - type: CableHV - components: - - pos: 84.5,-81.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9743 - type: CableHV - components: - - pos: 85.5,-81.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9744 - type: CableHV - components: - - pos: 86.5,-81.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9745 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,11.5 - parent: 8364 - type: Transform -- uid: 9746 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,11.5 - parent: 8364 - type: Transform -- uid: 9747 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,11.5 - parent: 8364 - type: Transform -- uid: 9748 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,11.5 - parent: 8364 - type: Transform -- uid: 9749 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,11.5 - parent: 8364 - type: Transform -- uid: 9750 - type: CableHV - components: - - pos: 87.5,-81.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9751 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,11.5 - parent: 8364 - type: Transform -- uid: 9752 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 8364 - type: Transform -- uid: 9753 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 8364 - type: Transform -- uid: 9754 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 8364 - type: Transform -- uid: 9755 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 8364 - type: Transform -- uid: 9756 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-1.5 - parent: 8364 - type: Transform -- uid: 9757 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 8364 - type: Transform -- uid: 9758 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-1.5 - parent: 8364 - type: Transform -- uid: 9759 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-1.5 - parent: 8364 - type: Transform -- uid: 9760 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-1.5 - parent: 8364 - type: Transform -- uid: 9761 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,8.5 - parent: 8364 - type: Transform -- uid: 9762 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-1.5 - parent: 8364 - type: Transform -- uid: 9763 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -16.5,11.5 - parent: 8364 - type: Transform -- uid: 9764 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,9.5 - parent: 8364 - type: Transform -- uid: 9765 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,7.5 - parent: 8364 - type: Transform -- uid: 9766 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,6.5 - parent: 8364 - type: Transform -- uid: 9767 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,5.5 - parent: 8364 - type: Transform -- uid: 9768 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,4.5 - parent: 8364 - type: Transform -- uid: 9769 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 8364 - type: Transform -- uid: 9770 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,2.5 - parent: 8364 - type: Transform -- uid: 9771 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,1.5 - parent: 8364 - type: Transform -- uid: 9772 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,0.5 - parent: 8364 - type: Transform -- uid: 9773 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,10.5 - parent: 8364 - type: Transform -- uid: 9774 - type: CableHV - components: - - pos: 87.5,-83.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9775 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -8.5,11.5 - parent: 8364 - type: Transform -- uid: 9776 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 8364 - type: Transform -- uid: 9777 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 8364 - type: Transform -- uid: 9778 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 8364 - type: Transform -- uid: 9779 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 8364 - type: Transform -- uid: 9780 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 8364 - type: Transform -- uid: 9781 - type: Grille - components: - - pos: -18.5,21.5 - parent: 8364 - type: Transform -- uid: 9782 - type: DisposalBend - components: - - pos: -16.5,19.5 - parent: 8364 - type: Transform -- uid: 9783 - type: ReinforcedWindow - components: - - pos: -18.5,21.5 - parent: 8364 - type: Transform -- uid: 9784 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,23.5 - parent: 8364 - type: Transform - - visible: False - type: Sprite -- uid: 9785 - type: DisposalPipe - components: - - pos: -16.5,18.5 - parent: 8364 - type: Transform -- uid: 9786 - type: DisposalPipe - components: - - pos: -16.5,17.5 - parent: 8364 - type: Transform -- uid: 9787 - type: DisposalPipe - components: - - pos: -16.5,16.5 - parent: 8364 - type: Transform -- uid: 9788 - type: DisposalPipe - components: - - pos: -16.5,15.5 - parent: 8364 - type: Transform -- uid: 9789 - type: DisposalPipe - components: - - pos: -16.5,14.5 - parent: 8364 - type: Transform -- uid: 9790 - type: DisposalPipe - components: - - pos: -16.5,13.5 - parent: 8364 - type: Transform -- uid: 9791 - type: DisposalPipe - components: - - pos: -16.5,12.5 - parent: 8364 - type: Transform -- uid: 9792 - type: AirlockMaintLocked - components: - - pos: -18.5,18.5 - parent: 8364 - type: Transform -- uid: 9793 - type: AirlockSecurityGlassLocked - components: - - name: Security EVA - type: MetaData - - pos: -17.5,21.5 - parent: 8364 - type: Transform -- uid: 9794 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: 27.5,30.5 - parent: 8364 - type: Transform -- uid: 9795 - type: CableHV - components: - - pos: 86.5,-83.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9796 - type: CableHV - components: - - pos: 85.5,-83.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9797 - type: CableHV - components: - - pos: 84.5,-83.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9798 - type: CableHV - components: - - pos: 83.5,-83.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9799 - type: CableHV - components: - - pos: 75.5,-83.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9800 - type: WallReinforced - components: - - pos: 28.5,31.5 - parent: 8364 - type: Transform -- uid: 9801 - type: WindowDirectional - components: - - pos: 27.5,28.5 - parent: 8364 - type: Transform -- uid: 9802 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 27.5,28.5 - parent: 8364 - type: Transform -- uid: 9803 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 27.5,29.5 - parent: 8364 - type: Transform -- uid: 9804 - type: WindowDirectional - components: - - pos: 26.5,30.5 - parent: 8364 - type: Transform -- uid: 9805 - type: Windoor - components: - - name: Security Disposals Belt - type: MetaData - - pos: 25.5,30.5 - parent: 8364 - type: Transform -- uid: 9806 - type: WindowDirectional - components: - - pos: 24.5,30.5 - parent: 8364 - type: Transform -- uid: 9807 - type: TwoWayLever - components: - - pos: 25.5,29.5 - parent: 8364 - type: Transform -- uid: 9808 - type: ClosetEmergencyFilledRandom - components: - - pos: 24.5,25.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9809 - type: Rack - components: - - pos: 25.5,25.5 - parent: 8364 - type: Transform -- uid: 9810 - type: AirlockExternalLocked - components: - - pos: 30.5,26.5 - parent: 8364 - type: Transform -- uid: 9811 - type: FirelockGlass - components: - - pos: 26.5,-26.5 - parent: 8364 - type: Transform -- uid: 9812 - type: WallSolid - components: - - pos: 25.5,23.5 - parent: 8364 - type: Transform -- uid: 9813 - type: CableApcExtension - components: - - pos: -13.5,-26.5 - parent: 8364 - type: Transform -- uid: 9814 - type: CableApcExtension - components: - - pos: -13.5,-25.5 - parent: 8364 - type: Transform -- uid: 9815 - type: Barricade - components: - - pos: 22.5,25.5 - parent: 8364 - type: Transform -- uid: 9816 - type: Barricade - components: - - pos: 22.5,26.5 - parent: 8364 - type: Transform -- uid: 9817 - type: Barricade - components: - - pos: 22.5,27.5 - parent: 8364 - type: Transform -- uid: 9818 - type: Barricade - components: - - pos: 22.5,28.5 - parent: 8364 - type: Transform -- uid: 9819 - type: CableApcExtension - components: - - pos: 27.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9820 - type: Barricade - components: - - pos: 22.5,30.5 - parent: 8364 - type: Transform -- uid: 9821 - type: RandomSpawner - components: - - pos: 24.5,27.5 - parent: 8364 - type: Transform -- uid: 9822 - type: CableApcExtension - components: - - pos: -13.5,-24.5 - parent: 8364 - type: Transform -- uid: 9823 - type: FirelockGlass - components: - - pos: -35.5,-1.5 - parent: 8364 - type: Transform -- uid: 9824 - type: WindowReinforcedDirectional - components: - - pos: -14.5,-26.5 - parent: 8364 - type: Transform -- uid: 9825 - type: FirelockGlass - components: - - pos: -9.5,-29.5 - parent: 8364 - type: Transform -- uid: 9826 - type: FirelockGlass - components: - - pos: -9.5,-30.5 - parent: 8364 - type: Transform -- uid: 9827 - type: CableApcExtension - components: - - pos: -57.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9828 - type: FirelockGlass - components: - - pos: -35.5,-0.5 - parent: 8364 - type: Transform -- uid: 9829 - type: FirelockGlass - components: - - pos: -15.5,-20.5 - parent: 8364 - type: Transform -- uid: 9830 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -50.5,13.5 - parent: 8364 - type: Transform -- uid: 9831 - type: CableApcExtension - components: - - pos: -47.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9832 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -53.5,11.5 - parent: 8364 - type: Transform -- uid: 9833 - type: WallSolid - components: - - pos: 19.5,22.5 - parent: 8364 - type: Transform -- uid: 9834 - type: Paper - components: - - pos: 20.509228,6.5730886 - parent: 8364 - type: Transform -- uid: 9835 - type: CableMV - components: - - pos: -48.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9836 - type: WallReinforced - components: - - pos: -42.5,-20.5 - parent: 8364 - type: Transform -- uid: 9837 - type: ReinforcedWindow - components: - - pos: -42.5,-32.5 - parent: 8364 - type: Transform -- uid: 9838 - type: ReinforcedWindow - components: - - pos: -42.5,-26.5 - parent: 8364 - type: Transform -- uid: 9839 - type: Paper - components: - - pos: 20.509228,6.5730886 - parent: 8364 - type: Transform -- uid: 9840 - type: WallSolid - components: - - pos: 38.5,1.5 - parent: 8364 - type: Transform -- uid: 9841 - type: AirlockServiceGlassLocked - components: - - pos: 41.5,-5.5 - parent: 8364 - type: Transform -- uid: 9842 - type: CableHV - components: - - pos: 23.5,24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9843 - type: WallSolid - components: - - pos: 18.5,31.5 - parent: 8364 - type: Transform -- uid: 9844 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,30.5 - parent: 8364 - type: Transform -- uid: 9845 - type: CableMV - components: - - pos: 18.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9846 - type: CableMV - components: - - pos: 19.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9847 - type: CableMV - components: - - pos: 20.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9848 - type: CableMV - components: - - pos: 21.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9849 - type: CableMV - components: - - pos: 21.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9850 - type: CableMV - components: - - pos: 21.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9851 - type: CableMV - components: - - pos: 21.5,27.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9852 - type: CableMV - components: - - pos: 21.5,26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9853 - type: CableMV - components: - - pos: 21.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9854 - type: CableMV - components: - - pos: 22.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9855 - type: CableMV - components: - - pos: 23.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9856 - type: WindoorKitchenHydroponicsLocked - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-6.5 - parent: 8364 - type: Transform -- uid: 9857 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 23.5,21.5 - parent: 8364 - type: Transform -- uid: 9858 - type: CableHV - components: - - pos: 22.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9859 - type: CableHV - components: - - pos: 23.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9860 - type: CableApcExtension - components: - - pos: 26.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9861 - type: CableApcExtension - components: - - pos: 25.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9862 - type: CableApcExtension - components: - - pos: 27.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9863 - type: CableApcExtension - components: - - pos: 27.5,26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9864 - type: CableApcExtension - components: - - pos: 28.5,26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9865 - type: FirelockGlass - components: - - pos: 32.5,-7.5 - parent: 8364 - type: Transform -- uid: 9866 - type: CableApcExtension - components: - - pos: 29.5,26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9867 - type: WallSolid - components: - - pos: 33.5,2.5 - parent: 8364 - type: Transform -- uid: 9868 - type: SignalButton - components: - - pos: 34.5,-3.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10454 - - port: Toggle - uid: 10455 - - port: Toggle - uid: 10456 - - port: Toggle - uid: 10457 - type: SignalTransmitter -- uid: 9869 - type: CableApcExtension - components: - - pos: 23.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9870 - type: CableApcExtension - components: - - pos: 24.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9871 - type: CableApcExtension - components: - - pos: 25.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9872 - type: CableApcExtension - components: - - pos: 27.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9873 - type: CableApcExtension - components: - - pos: 21.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9874 - type: CableApcExtension - components: - - pos: 21.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9875 - type: CableApcExtension - components: - - pos: 21.5,27.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9876 - type: CableApcExtension - components: - - pos: 21.5,26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9877 - type: CableApcExtension - components: - - pos: 21.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9878 - type: CableApcExtension - components: - - pos: 21.5,24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9879 - type: CableApcExtension - components: - - pos: 21.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9880 - type: CableApcExtension - components: - - pos: 21.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9881 - type: CableApcExtension - components: - - pos: 21.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9882 - type: CableApcExtension - components: - - pos: 21.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9883 - type: CableApcExtension - components: - - pos: 21.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9884 - type: CableApcExtension - components: - - pos: 21.5,18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9885 - type: CableApcExtension - components: - - pos: 21.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9886 - type: CableApcExtension - components: - - pos: 21.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9887 - type: CableApcExtension - components: - - pos: 20.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9888 - type: CableApcExtension - components: - - pos: 19.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9889 - type: CableApcExtension - components: - - pos: 18.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9890 - type: CableApcExtension - components: - - pos: 17.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9891 - type: CableApcExtension - components: - - pos: 16.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9892 - type: CableApcExtension - components: - - pos: 15.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9893 - type: CableApcExtension - components: - - pos: 14.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9894 - type: CableApcExtension - components: - - pos: 13.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9895 - type: CableApcExtension - components: - - pos: 12.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9896 - type: CableApcExtension - components: - - pos: 11.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9897 - type: CableApcExtension - components: - - pos: 10.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9898 - type: CableApcExtension - components: - - pos: 9.5,17.5 - parent: 8364 - type: Transform -- uid: 9899 - type: CableApcExtension - components: - - pos: 8.5,17.5 - parent: 8364 - type: Transform -- uid: 9900 - type: CableApcExtension - components: - - pos: 7.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9901 - type: CableApcExtension - components: - - pos: 6.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9902 - type: CableApcExtension - components: - - pos: 5.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9903 - type: CableApcExtension - components: - - pos: 4.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9904 - type: CableApcExtension - components: - - pos: 3.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9905 - type: CableApcExtension - components: - - pos: 2.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9906 - type: CableApcExtension - components: - - pos: 2.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9907 - type: CableApcExtension - components: - - pos: 2.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9908 - type: CableApcExtension - components: - - pos: 2.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9909 - type: CableApcExtension - components: - - pos: 2.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9910 - type: CableApcExtension - components: - - pos: 2.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9911 - type: CableApcExtension - components: - - pos: 2.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9912 - type: CableApcExtension - components: - - pos: 2.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9913 - type: CableApcExtension - components: - - pos: 2.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9914 - type: CableApcExtension - components: - - pos: 2.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9915 - type: CableApcExtension - components: - - pos: 2.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9916 - type: CableApcExtension - components: - - pos: 2.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9917 - type: CableApcExtension - components: - - pos: 2.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9918 - type: CableApcExtension - components: - - pos: 2.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9919 - type: CableApcExtension - components: - - pos: 2.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9920 - type: CableApcExtension - components: - - pos: 3.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9921 - type: CableApcExtension - components: - - pos: 4.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9922 - type: CableApcExtension - components: - - pos: 5.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9923 - type: PoweredSmallLight - components: - - pos: 4.5,3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9924 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,11.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9925 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,17.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9926 - type: ReinforcedWindow - components: - - pos: -6.5,38.5 - parent: 8364 - type: Transform -- uid: 9927 - type: PoweredSmallLight - components: - - pos: 19.5,18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9928 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,22.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9929 - type: PoweredSmallLight - components: - - pos: 27.5,30.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9930 - type: CableMV - components: - - pos: 23.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9931 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,27.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9932 - type: CrateNPCCow - components: - - pos: 35.5,-4.5 - parent: 8364 - type: Transform - - air: - volume: 800 - immutable: False - temperature: 293.1499 - moles: - - 18.331388 - - 68.96094 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 9933 - type: CableMV - components: - - pos: 23.5,24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9934 - type: AtmosDeviceFanTiny - components: - - pos: 36.5,1.5 - parent: 8364 - type: Transform -- uid: 9935 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-31.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11322 - Forward: - - port: Left - uid: 11322 - Off: - - port: Middle - uid: 11322 - type: SignalReceiver -- uid: 9936 - type: SignalButton - components: - - pos: 14.5,29.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 8650 - - port: Toggle - uid: 8649 - - port: Toggle - uid: 8648 - - port: Toggle - uid: 8647 - - port: Toggle - uid: 8646 - - port: Toggle - uid: 8645 - - port: Toggle - uid: 8644 - type: SignalTransmitter -- uid: 9937 - type: LockerEvidence - components: - - pos: -3.5,28.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9938 - type: CableHV - components: - - pos: 76.5,-83.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9939 - type: CableHV - components: - - pos: 81.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9940 - type: CableHV - components: - - pos: 81.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9941 - type: CableHV - components: - - pos: 81.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9942 - type: CableHV - components: - - pos: 81.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9943 - type: CableHV - components: - - pos: 81.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9944 - type: CableHV - components: - - pos: 81.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9945 - type: CableHV - components: - - pos: 81.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9946 - type: GasPipeStraight - components: - - pos: 76.5,-15.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9947 - type: GasPipeStraight - components: - - pos: 76.5,-16.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9948 - type: GasPipeBend - components: - - pos: 85.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9949 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 79.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9950 - type: GasPipeBend - components: - - pos: 79.5,-19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9951 - type: CableApcExtension - components: - - pos: 27.5,27.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9952 - type: CableApcExtension - components: - - pos: 26.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9953 - type: CableApcExtension - components: - - pos: 27.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9954 - type: CableApcExtension - components: - - pos: 22.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9955 - type: CableApcExtension - components: - - pos: 21.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9956 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 76.5,-19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9957 - type: Barricade - components: - - pos: 22.5,29.5 - parent: 8364 - type: Transform -- uid: 9958 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,-17.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9959 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,-18.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9960 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9961 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9962 - type: GasPipeStraight - components: - - pos: 79.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9963 - type: CableMV - components: - - pos: 21.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9964 - type: CableApcExtension - components: - - pos: -46.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9965 - type: CableApcExtension - components: - - pos: -47.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9966 - type: CableApcExtension - components: - - pos: -49.5,18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9967 - type: CableApcExtension - components: - - pos: -48.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9968 - type: CableApcExtension - components: - - pos: -48.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9969 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: -53.5,12.5 - parent: 8364 - type: Transform -- uid: 9970 - type: CableApcExtension - components: - - pos: -45.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9971 - type: CableApcExtension - components: - - pos: -40.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9972 - type: CableApcExtension - components: - - pos: -40.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9973 - type: CableApcExtension - components: - - pos: -42.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9974 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 80.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9975 - type: CableApcExtension - components: - - pos: -43.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9976 - type: APCHighCapacity - components: - - rot: -1.5707963267948966 rad - pos: -42.5,10.5 - parent: 8364 - type: Transform -- uid: 9977 - type: CableMV - components: - - pos: -40.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9978 - type: CableMV - components: - - pos: -40.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9979 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 81.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9980 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 82.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9981 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 83.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9982 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 84.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9983 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 85.5,-22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9984 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 85.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9985 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 85.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9986 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 85.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9987 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 85.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9988 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 85.5,-27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9989 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 85.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9990 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 85.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9991 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 85.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9992 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 85.5,-31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9993 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,-33.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9994 - type: WallSolid - components: - - pos: 22.5,22.5 - parent: 8364 - type: Transform -- uid: 9995 - type: CableMV - components: - - pos: 25.5,19.5 - parent: 8364 - type: Transform -- uid: 9996 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 82.5,-33.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9997 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 85.5,-32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9998 - type: CableApcExtension - components: - - pos: 15.5,41.5 - parent: 8364 - type: Transform -- uid: 9999 - type: CableMV - components: - - pos: 17.5,32.5 - parent: 8364 - type: Transform -- uid: 10000 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 84.5,-32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10001 - type: ReinforcedWindow - components: - - pos: -21.5,39.5 - parent: 8364 - type: Transform -- uid: 10002 - type: WallReinforced - components: - - pos: 3.5,52.5 - parent: 8364 - type: Transform -- uid: 10003 - type: CableApcExtension - components: - - pos: -20.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10004 - type: CableApcExtension - components: - - pos: -18.5,23.5 - parent: 8364 - type: Transform -- uid: 10005 - type: AirlockExternalGlassShuttleEscape - components: - - rot: -1.5707963267948966 rad - pos: -22.5,24.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 10006 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -21.5,20.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10007 - type: PoweredlightExterior - components: - - rot: 3.141592653589793 rad - pos: 93.5,-23.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10008 - type: PoweredlightExterior - components: - - rot: 1.5707963267948966 rad - pos: 31.5,27.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10009 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 84.5,-33.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10010 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 81.5,-33.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10011 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 81.5,-33.5 - parent: 8364 - type: Transform -- uid: 10012 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,-34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10013 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10014 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,-36.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10015 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,-37.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10016 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,-38.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10017 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,-39.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10018 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 81.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10019 - type: GasPipeBend - components: - - pos: 82.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10020 - type: CableApcExtension - components: - - pos: 15.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10021 - type: CableApcExtension - components: - - pos: 14.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10022 - type: CableApcExtension - components: - - pos: 13.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10023 - type: CableApcExtension - components: - - pos: 15.5,37.5 - parent: 8364 - type: Transform -- uid: 10024 - type: CableApcExtension - components: - - pos: 16.5,37.5 - parent: 8364 - type: Transform -- uid: 10025 - type: CableApcExtension - components: - - pos: 16.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10026 - type: CableApcExtension - components: - - pos: 14.5,37.5 - parent: 8364 - type: Transform -- uid: 10027 - type: CableApcExtension - components: - - pos: 13.5,37.5 - parent: 8364 - type: Transform -- uid: 10028 - type: CableApcExtension - components: - - pos: 12.5,37.5 - parent: 8364 - type: Transform -- uid: 10029 - type: CableApcExtension - components: - - pos: 12.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10030 - type: CableApcExtension - components: - - pos: 11.5,37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10031 - type: CableApcExtension - components: - - pos: 11.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10032 - type: CableApcExtension - components: - - pos: 11.5,40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10033 - type: CableApcExtension - components: - - pos: 19.5,36.5 - parent: 8364 - type: Transform -- uid: 10034 - type: CableApcExtension - components: - - pos: 19.5,37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10035 - type: CableApcExtension - components: - - pos: 18.5,37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10036 - type: CableApcExtension - components: - - pos: 20.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10037 - type: WallReinforced - components: - - pos: 20.5,32.5 - parent: 8364 - type: Transform -- uid: 10038 - type: CableApcExtension - components: - - pos: 22.5,41.5 - parent: 8364 - type: Transform -- uid: 10039 - type: CableApcExtension - components: - - pos: 21.5,41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10040 - type: CableApcExtension - components: - - pos: 21.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10041 - type: CableApcExtension - components: - - pos: 21.5,40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10042 - type: CableApcExtension - components: - - pos: 24.5,41.5 - parent: 8364 - type: Transform -- uid: 10043 - type: CableApcExtension - components: - - pos: 25.5,41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10044 - type: CableApcExtension - components: - - pos: 25.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10045 - type: CableApcExtension - components: - - pos: 25.5,40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10046 - type: CableApcExtension - components: - - pos: 9.5,36.5 - parent: 8364 - type: Transform -- uid: 10047 - type: CableApcExtension - components: - - pos: 9.5,35.5 - parent: 8364 - type: Transform -- uid: 10048 - type: CableApcExtension - components: - - pos: 9.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10049 - type: CableApcExtension - components: - - pos: 7.5,36.5 - parent: 8364 - type: Transform -- uid: 10050 - type: CableApcExtension - components: - - pos: 6.5,36.5 - parent: 8364 - type: Transform -- uid: 10051 - type: CableApcExtension - components: - - pos: 6.5,35.5 - parent: 8364 - type: Transform -- uid: 10052 - type: CableApcExtension - components: - - pos: 6.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10053 - type: CableApcExtension - components: - - pos: 7.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10054 - type: CableApcExtension - components: - - pos: 8.5,40.5 - parent: 8364 - type: Transform -- uid: 10055 - type: CableApcExtension - components: - - pos: 8.5,41.5 - parent: 8364 - type: Transform -- uid: 10056 - type: CableApcExtension - components: - - pos: 7.5,41.5 - parent: 8364 - type: Transform -- uid: 10057 - type: CableApcExtension - components: - - pos: 7.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10058 - type: CableApcExtension - components: - - pos: 9.5,41.5 - parent: 8364 - type: Transform -- uid: 10059 - type: CableApcExtension - components: - - pos: 9.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10060 - type: CableApcExtension - components: - - pos: 3.5,36.5 - parent: 8364 - type: Transform -- uid: 10061 - type: CableApcExtension - components: - - pos: 3.5,35.5 - parent: 8364 - type: Transform -- uid: 10062 - type: CableApcExtension - components: - - pos: 3.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10063 - type: CableApcExtension - components: - - pos: 0.5,36.5 - parent: 8364 - type: Transform -- uid: 10064 - type: CableApcExtension - components: - - pos: 0.5,35.5 - parent: 8364 - type: Transform -- uid: 10065 - type: CableApcExtension - components: - - pos: 0.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10066 - type: CableApcExtension - components: - - pos: -0.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10067 - type: CableApcExtension - components: - - pos: 4.5,31.5 - parent: 8364 - type: Transform -- uid: 10068 - type: CableApcExtension - components: - - pos: 5.5,31.5 - parent: 8364 - type: Transform -- uid: 10069 - type: CableApcExtension - components: - - pos: 5.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10070 - type: CableApcExtension - components: - - pos: 5.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10071 - type: CableApcExtension - components: - - pos: 3.5,30.5 - parent: 8364 - type: Transform -- uid: 10072 - type: CableApcExtension - components: - - pos: 3.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10073 - type: CableApcExtension - components: - - pos: 1.5,30.5 - parent: 8364 - type: Transform -- uid: 10074 - type: CableApcExtension - components: - - pos: 1.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10075 - type: CableApcExtension - components: - - pos: 0.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10076 - type: CableApcExtension - components: - - pos: -1.5,30.5 - parent: 8364 - type: Transform -- uid: 10077 - type: CableApcExtension - components: - - pos: -1.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10078 - type: CableApcExtension - components: - - pos: -2.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10079 - type: CableApcExtension - components: - - pos: -3.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10080 - type: CableApcExtension - components: - - pos: -2.5,32.5 - parent: 8364 - type: Transform -- uid: 10081 - type: CableApcExtension - components: - - pos: -3.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10082 - type: Grille - components: - - pos: -1.5,29.5 - parent: 8364 - type: Transform -- uid: 10083 - type: CableApcExtension - components: - - pos: 2.5,23.5 - parent: 8364 - type: Transform -- uid: 10084 - type: CableApcExtension - components: - - pos: 2.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10085 - type: CableApcExtension - components: - - pos: 3.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10086 - type: CableApcExtension - components: - - pos: 8.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10087 - type: CableApcExtension - components: - - pos: 10.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10088 - type: CableApcExtension - components: - - pos: -3.5,15.5 - parent: 8364 - type: Transform -- uid: 10089 - type: CableApcExtension - components: - - pos: -2.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10090 - type: CableApcExtension - components: - - pos: -2.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10091 - type: CableApcExtension - components: - - pos: -2.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10092 - type: CableApcExtension - components: - - pos: -5.5,17.5 - parent: 8364 - type: Transform -- uid: 10093 - type: CableApcExtension - components: - - pos: -5.5,18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10094 - type: CableApcExtension - components: - - pos: -11.5,17.5 - parent: 8364 - type: Transform -- uid: 10095 - type: CableApcExtension - components: - - pos: -11.5,18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10096 - type: CableApcExtension - components: - - pos: -10.5,18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10097 - type: CableApcExtension - components: - - pos: -21.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10098 - type: FirelockGlass - components: - - pos: -13.5,-59.5 - parent: 8364 - type: Transform -- uid: 10099 - type: CableApcExtension - components: - - pos: -22.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10100 - type: CableApcExtension - components: - - pos: -22.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10101 - type: Poweredlight - components: - - pos: -21.5,24.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10102 - type: CableApcExtension - components: - - pos: -20.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10103 - type: CableApcExtension - components: - - pos: -18.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10104 - type: CableApcExtension - components: - - pos: -17.5,21.5 - parent: 8364 - type: Transform -- uid: 10105 - type: CableApcExtension - components: - - pos: -16.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10106 - type: CableApcExtension - components: - - pos: -17.5,23.5 - parent: 8364 - type: Transform -- uid: 10107 - type: CableHV - components: - - pos: -15.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10108 - type: CableHV - components: - - pos: -15.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10109 - type: WallReinforced - components: - - pos: 2.5,52.5 - parent: 8364 - type: Transform -- uid: 10110 - type: WallReinforced - components: - - pos: 1.5,52.5 - parent: 8364 - type: Transform -- uid: 10111 - type: WallReinforced - components: - - pos: -3.5,53.5 - parent: 8364 - type: Transform -- uid: 10112 - type: WallReinforced - components: - - pos: -24.5,50.5 - parent: 8364 - type: Transform -- uid: 10113 - type: WallReinforced - components: - - pos: -24.5,51.5 - parent: 8364 - type: Transform -- uid: 10114 - type: WallReinforced - components: - - pos: -3.5,46.5 - parent: 8364 - type: Transform -- uid: 10115 - type: WallReinforced - components: - - pos: -3.5,45.5 - parent: 8364 - type: Transform -- uid: 10116 - type: Grille - components: - - pos: -16.5,38.5 - parent: 8364 - type: Transform -- uid: 10117 - type: WallReinforced - components: - - pos: -24.5,47.5 - parent: 8364 - type: Transform -- uid: 10118 - type: WallReinforced - components: - - pos: -24.5,48.5 - parent: 8364 - type: Transform -- uid: 10119 - type: WallReinforced - components: - - pos: -25.5,42.5 - parent: 8364 - type: Transform -- uid: 10120 - type: WallReinforced - components: - - pos: -25.5,46.5 - parent: 8364 - type: Transform -- uid: 10121 - type: ReinforcedWindow - components: - - pos: -25.5,43.5 - parent: 8364 - type: Transform -- uid: 10122 - type: ReinforcedWindow - components: - - pos: -25.5,44.5 - parent: 8364 - type: Transform -- uid: 10123 - type: CableApcExtension - components: - - pos: 12.5,20.5 - parent: 8364 - type: Transform -- uid: 10124 - type: CableApcExtension - components: - - pos: 11.5,20.5 - parent: 8364 - type: Transform -- uid: 10125 - type: CableApcExtension - components: - - pos: 11.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10126 - type: CableApcExtension - components: - - pos: 11.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10127 - type: CableHV - components: - - pos: 2.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10128 - type: CableHV - components: - - pos: 3.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10129 - type: CableHV - components: - - pos: 4.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10130 - type: CableHV - components: - - pos: 5.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10131 - type: CableHV - components: - - pos: 6.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10132 - type: CableHV - components: - - pos: 7.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10133 - type: CableHV - components: - - pos: 8.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10134 - type: CableHV - components: - - pos: 9.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10135 - type: CableHV - components: - - pos: 10.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10136 - type: CableHV - components: - - pos: 11.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10137 - type: CableHV - components: - - pos: 12.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10138 - type: CableHV - components: - - pos: -16.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10139 - type: CableHV - components: - - pos: -16.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10140 - type: CableHV - components: - - pos: -16.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10141 - type: CableHV - components: - - pos: -16.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10142 - type: CableHV - components: - - pos: -16.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10143 - type: CableHV - components: - - pos: -16.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10144 - type: CableHV - components: - - pos: -16.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10145 - type: CableHV - components: - - pos: -16.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10146 - type: CableHV - components: - - pos: -16.5,18.5 - parent: 8364 - type: Transform -- uid: 10147 - type: CableHV - components: - - pos: -16.5,19.5 - parent: 8364 - type: Transform -- uid: 10148 - type: CableHV - components: - - pos: -17.5,20.5 - parent: 8364 - type: Transform -- uid: 10149 - type: CableHV - components: - - pos: -17.5,19.5 - parent: 8364 - type: Transform -- uid: 10150 - type: CableHV - components: - - pos: -17.5,21.5 - parent: 8364 - type: Transform -- uid: 10151 - type: CableHV - components: - - pos: -17.5,22.5 - parent: 8364 - type: Transform -- uid: 10152 - type: CableHV - components: - - pos: -16.5,23.5 - parent: 8364 - type: Transform -- uid: 10153 - type: CableHV - components: - - pos: -17.5,23.5 - parent: 8364 - type: Transform -- uid: 10154 - type: CableHV - components: - - pos: -15.5,23.5 - parent: 8364 - type: Transform -- uid: 10155 - type: CableHV - components: - - pos: -13.5,23.5 - parent: 8364 - type: Transform -- uid: 10156 - type: CableHV - components: - - pos: -14.5,23.5 - parent: 8364 - type: Transform -- uid: 10157 - type: CableHV - components: - - pos: -13.5,24.5 - parent: 8364 - type: Transform -- uid: 10158 - type: CableHV - components: - - pos: -13.5,25.5 - parent: 8364 - type: Transform -- uid: 10159 - type: CableHV - components: - - pos: -20.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10160 - type: CableHV - components: - - pos: -19.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10161 - type: CableHV - components: - - pos: -18.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10162 - type: CableHV - components: - - pos: -17.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10163 - type: CableHV - components: - - pos: -17.5,-34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10164 - type: CableHV - components: - - pos: -17.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10165 - type: CableHV - components: - - pos: -17.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10166 - type: CableHV - components: - - pos: -17.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10167 - type: CableHV - components: - - pos: -17.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10168 - type: CableHV - components: - - pos: -17.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10169 - type: CableHV - components: - - pos: -17.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10170 - type: CableHV - components: - - pos: -17.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10171 - type: CableHV - components: - - pos: -17.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10172 - type: CableHV - components: - - pos: -17.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10173 - type: CableHV - components: - - pos: -17.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10174 - type: CableHV - components: - - pos: -17.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10175 - type: CableHV - components: - - pos: -17.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10176 - type: CableHV - components: - - pos: -17.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10177 - type: CableHV - components: - - pos: -18.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10178 - type: CableHV - components: - - pos: -26.5,-32.5 - parent: 8364 - type: Transform -- uid: 10179 - type: CableHV - components: - - pos: -26.5,-33.5 - parent: 8364 - type: Transform -- uid: 10180 - type: CableHV - components: - - pos: -22.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10181 - type: CableHV - components: - - pos: -25.5,-33.5 - parent: 8364 - type: Transform -- uid: 10182 - type: CableHV - components: - - pos: -21.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10183 - type: CableHV - components: - - pos: -24.5,-33.5 - parent: 8364 - type: Transform -- uid: 10184 - type: CableHV - components: - - pos: -23.5,-33.5 - parent: 8364 - type: Transform -- uid: 10185 - type: CableHV - components: - - pos: -30.5,-30.5 - parent: 8364 - type: Transform -- uid: 10186 - type: CableHV - components: - - pos: -29.5,-30.5 - parent: 8364 - type: Transform -- uid: 10187 - type: CableHV - components: - - pos: -28.5,-30.5 - parent: 8364 - type: Transform -- uid: 10188 - type: CableHV - components: - - pos: -27.5,-30.5 - parent: 8364 - type: Transform -- uid: 10189 - type: CableHV - components: - - pos: -26.5,-30.5 - parent: 8364 - type: Transform -- uid: 10190 - type: CableHV - components: - - pos: -26.5,-31.5 - parent: 8364 - type: Transform -- uid: 10191 - type: CableHV - components: - - pos: -31.5,-30.5 - parent: 8364 - type: Transform -- uid: 10192 - type: CableHV - components: - - pos: -32.5,-30.5 - parent: 8364 - type: Transform -- uid: 10193 - type: CableHV - components: - - pos: -32.5,-29.5 - parent: 8364 - type: Transform -- uid: 10194 - type: CableHV - components: - - pos: -32.5,-28.5 - parent: 8364 - type: Transform -- uid: 10195 - type: CableHV - components: - - pos: -32.5,-27.5 - parent: 8364 - type: Transform -- uid: 10196 - type: CableHV - components: - - pos: -32.5,-26.5 - parent: 8364 - type: Transform -- uid: 10197 - type: CableHV - components: - - pos: -32.5,-25.5 - parent: 8364 - type: Transform -- uid: 10198 - type: CableHV - components: - - pos: -32.5,-24.5 - parent: 8364 - type: Transform -- uid: 10199 - type: CableHV - components: - - pos: -33.5,-24.5 - parent: 8364 - type: Transform -- uid: 10200 - type: CableHV - components: - - pos: -34.5,-24.5 - parent: 8364 - type: Transform -- uid: 10201 - type: CableHV - components: - - pos: -35.5,-24.5 - parent: 8364 - type: Transform -- uid: 10202 - type: CableHV - components: - - pos: -36.5,-24.5 - parent: 8364 - type: Transform -- uid: 10203 - type: CableHV - components: - - pos: -37.5,-24.5 - parent: 8364 - type: Transform -- uid: 10204 - type: CableHV - components: - - pos: -38.5,-24.5 - parent: 8364 - type: Transform -- uid: 10205 - type: CableHV - components: - - pos: -39.5,-24.5 - parent: 8364 - type: Transform -- uid: 10206 - type: CableHV - components: - - pos: -39.5,-23.5 - parent: 8364 - type: Transform -- uid: 10207 - type: CableHV - components: - - pos: -39.5,-22.5 - parent: 8364 - type: Transform -- uid: 10208 - type: CableHV - components: - - pos: -39.5,-21.5 - parent: 8364 - type: Transform -- uid: 10209 - type: CableHV - components: - - pos: -39.5,-20.5 - parent: 8364 - type: Transform -- uid: 10210 - type: CableHV - components: - - pos: -39.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10211 - type: CableHV - components: - - pos: -39.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10212 - type: CableHV - components: - - pos: -39.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10213 - type: CableHV - components: - - pos: -39.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10214 - type: CableHV - components: - - pos: -38.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10215 - type: CableHV - components: - - pos: -37.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10216 - type: CableHV - components: - - pos: -36.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10217 - type: CableHV - components: - - pos: -35.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10218 - type: CableHV - components: - - pos: -34.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10219 - type: CableHV - components: - - pos: -34.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10220 - type: CableHV - components: - - pos: -34.5,-14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10221 - type: CableHV - components: - - pos: -34.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10222 - type: CableHV - components: - - pos: -34.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10223 - type: CableHV - components: - - pos: -34.5,-11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10224 - type: CableHV - components: - - pos: -34.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10225 - type: CableHV - components: - - pos: -34.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10226 - type: CableHV - components: - - pos: -34.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10227 - type: CableHV - components: - - pos: -32.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10228 - type: CableHV - components: - - pos: -33.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10229 - type: CableHV - components: - - pos: -31.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10230 - type: CableHV - components: - - pos: -30.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10231 - type: CableHV - components: - - pos: -30.5,-7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10232 - type: CableHV - components: - - pos: -30.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10233 - type: CableHV - components: - - pos: -30.5,-5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10234 - type: CableHV - components: - - pos: -30.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10235 - type: CableHV - components: - - pos: -30.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10236 - type: CableHV - components: - - pos: -30.5,-2.5 - parent: 8364 - type: Transform -- uid: 10237 - type: CableHV - components: - - pos: -30.5,-1.5 - parent: 8364 - type: Transform -- uid: 10238 - type: CableHV - components: - - pos: -29.5,-1.5 - parent: 8364 - type: Transform -- uid: 10239 - type: CableHV - components: - - pos: -28.5,-1.5 - parent: 8364 - type: Transform -- uid: 10240 - type: CableHV - components: - - pos: -27.5,-1.5 - parent: 8364 - type: Transform -- uid: 10241 - type: CableHV - components: - - pos: -26.5,-1.5 - parent: 8364 - type: Transform -- uid: 10242 - type: CableHV - components: - - pos: -25.5,-1.5 - parent: 8364 - type: Transform -- uid: 10243 - type: CableHV - components: - - pos: -25.5,-0.5 - parent: 8364 - type: Transform -- uid: 10244 - type: CableHV - components: - - pos: -25.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10245 - type: CableHV - components: - - pos: -25.5,1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10246 - type: CableHV - components: - - pos: -25.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10247 - type: CableHV - components: - - pos: -25.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10248 - type: CableHV - components: - - pos: -25.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10249 - type: CableHV - components: - - pos: -25.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10250 - type: CableHV - components: - - pos: -25.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10251 - type: CableHV - components: - - pos: -25.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10252 - type: CableHV - components: - - pos: -25.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10253 - type: CableHV - components: - - pos: -25.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10254 - type: CableHV - components: - - pos: -25.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10255 - type: CableHV - components: - - pos: -24.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10256 - type: CableHV - components: - - pos: -23.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10257 - type: CableHV - components: - - pos: -22.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10258 - type: CableHV - components: - - pos: -21.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10259 - type: CableHV - components: - - pos: -20.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10260 - type: CableHV - components: - - pos: -19.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10261 - type: CableHV - components: - - pos: -18.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10262 - type: CableHV - components: - - pos: -17.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10263 - type: CableMV - components: - - pos: 41.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10264 - type: CableMV - components: - - pos: 39.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10265 - type: CableMV - components: - - pos: 37.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10266 - type: CableMV - components: - - pos: 35.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10267 - type: CableMV - components: - - pos: 33.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10268 - type: CableMV - components: - - pos: 31.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10269 - type: CableMV - components: - - pos: 29.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10270 - type: CableMV - components: - - pos: 24.5,12.5 - parent: 8364 - type: Transform -- uid: 10271 - type: CableMV - components: - - pos: 24.5,10.5 - parent: 8364 - type: Transform -- uid: 10272 - type: CableMV - components: - - pos: 24.5,8.5 - parent: 8364 - type: Transform -- uid: 10273 - type: CableMV - components: - - pos: 24.5,6.5 - parent: 8364 - type: Transform -- uid: 10274 - type: Rack - components: - - pos: 39.5,6.5 - parent: 8364 - type: Transform -- uid: 10275 - type: CableHV - components: - - pos: 19.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10276 - type: CableHV - components: - - pos: 19.5,14.5 - parent: 8364 - type: Transform -- uid: 10277 - type: CableHV - components: - - pos: 19.5,12.5 - parent: 8364 - type: Transform -- uid: 10278 - type: CableHV - components: - - pos: 19.5,11.5 - parent: 8364 - type: Transform -- uid: 10279 - type: CableHV - components: - - pos: 19.5,10.5 - parent: 8364 - type: Transform -- uid: 10280 - type: CableHV - components: - - pos: 19.5,9.5 - parent: 8364 - type: Transform -- uid: 10281 - type: CableHV - components: - - pos: 20.5,9.5 - parent: 8364 - type: Transform -- uid: 10282 - type: CableHV - components: - - pos: 21.5,9.5 - parent: 8364 - type: Transform -- uid: 10283 - type: CableHV - components: - - pos: 22.5,9.5 - parent: 8364 - type: Transform -- uid: 10284 - type: CableHV - components: - - pos: 24.5,9.5 - parent: 8364 - type: Transform -- uid: 10285 - type: CableHV - components: - - pos: 23.5,9.5 - parent: 8364 - type: Transform -- uid: 10286 - type: CableHV - components: - - pos: 24.5,7.5 - parent: 8364 - type: Transform -- uid: 10287 - type: CableHV - components: - - pos: 24.5,8.5 - parent: 8364 - type: Transform -- uid: 10288 - type: CableHV - components: - - pos: 24.5,6.5 - parent: 8364 - type: Transform -- uid: 10289 - type: CableHV - components: - - pos: 24.5,5.5 - parent: 8364 - type: Transform -- uid: 10290 - type: CableHV - components: - - pos: 24.5,3.5 - parent: 8364 - type: Transform -- uid: 10291 - type: CableHV - components: - - pos: 24.5,4.5 - parent: 8364 - type: Transform -- uid: 10292 - type: CableHV - components: - - pos: 25.5,3.5 - parent: 8364 - type: Transform -- uid: 10293 - type: CableHV - components: - - pos: 26.5,3.5 - parent: 8364 - type: Transform -- uid: 10294 - type: CableHV - components: - - pos: 27.5,3.5 - parent: 8364 - type: Transform -- uid: 10295 - type: CableHV - components: - - pos: 28.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10296 - type: CableHV - components: - - pos: 30.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10297 - type: CableHV - components: - - pos: 29.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10298 - type: CableHV - components: - - pos: 31.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10299 - type: CableHV - components: - - pos: 24.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10300 - type: CableHV - components: - - pos: 33.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10301 - type: CableHV - components: - - pos: 34.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10302 - type: CableHV - components: - - pos: 35.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10303 - type: CableHV - components: - - pos: 36.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10304 - type: CableHV - components: - - pos: 37.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10305 - type: CableHV - components: - - pos: 38.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10306 - type: CableHV - components: - - pos: 39.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10307 - type: CableHV - components: - - pos: 40.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10308 - type: CableHV - components: - - pos: 41.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10309 - type: CableApcExtension - components: - - pos: 38.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10310 - type: CableApcExtension - components: - - pos: 38.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10311 - type: CableApcExtension - components: - - pos: 38.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10312 - type: CableApcExtension - components: - - pos: 38.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10313 - type: CableApcExtension - components: - - pos: 37.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10314 - type: CableApcExtension - components: - - pos: 36.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10315 - type: CableApcExtension - components: - - pos: 35.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10316 - type: CableApcExtension - components: - - pos: 34.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10317 - type: CableApcExtension - components: - - pos: 33.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10318 - type: CableApcExtension - components: - - pos: 32.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10319 - type: CableApcExtension - components: - - pos: 31.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10320 - type: CableApcExtension - components: - - pos: 30.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10321 - type: CableApcExtension - components: - - pos: 29.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10322 - type: CableApcExtension - components: - - pos: 28.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10323 - type: CableApcExtension - components: - - pos: 28.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10324 - type: CableApcExtension - components: - - pos: 28.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10325 - type: CableApcExtension - components: - - pos: 28.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10326 - type: CableApcExtension - components: - - pos: 28.5,13.5 - parent: 8364 - type: Transform -- uid: 10327 - type: CableApcExtension - components: - - pos: 28.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10328 - type: CableApcExtension - components: - - pos: 28.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10329 - type: CableApcExtension - components: - - pos: 28.5,10.5 - parent: 8364 - type: Transform -- uid: 10330 - type: CableApcExtension - components: - - pos: 28.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10331 - type: CableApcExtension - components: - - pos: 28.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10332 - type: CableApcExtension - components: - - pos: 28.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10333 - type: CableApcExtension - components: - - pos: 28.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10334 - type: CableApcExtension - components: - - pos: 29.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10335 - type: CableApcExtension - components: - - pos: 30.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10336 - type: CableApcExtension - components: - - pos: 31.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10337 - type: CableApcExtension - components: - - pos: 32.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10338 - type: CableApcExtension - components: - - pos: 33.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10339 - type: CableApcExtension - components: - - pos: 34.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10340 - type: CableApcExtension - components: - - pos: 35.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10341 - type: CableApcExtension - components: - - pos: 36.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10342 - type: CableApcExtension - components: - - pos: 37.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10343 - type: CableApcExtension - components: - - pos: 38.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10344 - type: CableApcExtension - components: - - pos: 38.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10345 - type: CableApcExtension - components: - - pos: 18.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10346 - type: CableApcExtension - components: - - pos: 18.5,11.5 - parent: 8364 - type: Transform -- uid: 10347 - type: CableApcExtension - components: - - pos: 18.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10348 - type: CableApcExtension - components: - - pos: 18.5,10.5 - parent: 8364 - type: Transform -- uid: 10349 - type: CableApcExtension - components: - - pos: 18.5,-5.5 - parent: 8364 - type: Transform -- uid: 10350 - type: WallSolid - components: - - pos: 17.5,-7.5 - parent: 8364 - type: Transform -- uid: 10351 - type: CableApcExtension - components: - - pos: 18.5,-9.5 - parent: 8364 - type: Transform -- uid: 10352 - type: CableApcExtension - components: - - pos: 17.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10353 - type: CableApcExtension - components: - - pos: 23.5,-10.5 - parent: 8364 - type: Transform -- uid: 10354 - type: CableApcExtension - components: - - pos: 23.5,-11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10355 - type: CableApcExtension - components: - - pos: 27.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10356 - type: CableApcExtension - components: - - pos: -4.5,-4.5 - parent: 8364 - type: Transform -- uid: 10357 - type: CableApcExtension - components: - - pos: -4.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10358 - type: CableApcExtension - components: - - pos: -5.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10359 - type: CableApcExtension - components: - - pos: -6.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10360 - type: CableApcExtension - components: - - pos: -7.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10361 - type: CableApcExtension - components: - - pos: -9.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10362 - type: CableApcExtension - components: - - pos: -10.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10363 - type: CableApcExtension - components: - - pos: -11.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10364 - type: CableApcExtension - components: - - pos: -12.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10365 - type: CableApcExtension - components: - - pos: -13.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10366 - type: CableApcExtension - components: - - pos: -14.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10367 - type: CableApcExtension - components: - - pos: -14.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10368 - type: CableApcExtension - components: - - pos: -14.5,-5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10369 - type: CableApcExtension - components: - - pos: -14.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10370 - type: CableApcExtension - components: - - pos: -13.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10371 - type: CableApcExtension - components: - - pos: 3.5,-4.5 - parent: 8364 - type: Transform -- uid: 10372 - type: CableApcExtension - components: - - pos: 3.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10373 - type: CableApcExtension - components: - - pos: 4.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10374 - type: CableApcExtension - components: - - pos: 5.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10375 - type: CableApcExtension - components: - - pos: 6.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10376 - type: CableApcExtension - components: - - pos: 7.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10377 - type: CableApcExtension - components: - - pos: 8.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10378 - type: CableApcExtension - components: - - pos: 9.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10379 - type: CableApcExtension - components: - - pos: 10.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10380 - type: CableApcExtension - components: - - pos: 11.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10381 - type: CableApcExtension - components: - - pos: 12.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10382 - type: CableApcExtension - components: - - pos: 13.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10383 - type: CableApcExtension - components: - - pos: 13.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10384 - type: CableApcExtension - components: - - pos: 13.5,-5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10385 - type: CableApcExtension - components: - - pos: 13.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10386 - type: CableApcExtension - components: - - pos: 12.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10387 - type: CableApcExtension - components: - - pos: 10.5,-8.5 - parent: 8364 - type: Transform -- uid: 10388 - type: CableApcExtension - components: - - pos: 10.5,-7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10389 - type: CableApcExtension - components: - - pos: 10.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10390 - type: CableApcExtension - components: - - pos: -11.5,-8.5 - parent: 8364 - type: Transform -- uid: 10391 - type: CableApcExtension - components: - - pos: -11.5,-7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10392 - type: CableApcExtension - components: - - pos: -11.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10393 - type: CableApcExtension - components: - - pos: -13.5,-12.5 - parent: 8364 - type: Transform -- uid: 10394 - type: CableApcExtension - components: - - pos: -14.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10395 - type: CableApcExtension - components: - - pos: -14.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10396 - type: CableApcExtension - components: - - pos: -14.5,-14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10397 - type: CableApcExtension - components: - - pos: -11.5,-23.5 - parent: 8364 - type: Transform -- uid: 10398 - type: CableApcExtension - components: - - pos: -12.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10399 - type: CableApcExtension - components: - - pos: -13.5,-23.5 - parent: 8364 - type: Transform -- uid: 10400 - type: GasPipeStraight - components: - - pos: 82.5,-41.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10401 - type: CableApcExtension - components: - - pos: -12.5,-24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10402 - type: GasPipeStraight - components: - - pos: 82.5,-42.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10403 - type: GasPipeStraight - components: - - pos: 82.5,-43.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10404 - type: GasPipeStraight - components: - - pos: 82.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10405 - type: CableApcExtension - components: - - pos: -0.5,-27.5 - parent: 8364 - type: Transform -- uid: 10406 - type: CableApcExtension - components: - - pos: -0.5,-28.5 - parent: 8364 - type: Transform -- uid: 10407 - type: CableApcExtension - components: - - pos: -1.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10408 - type: CableApcExtension - components: - - pos: -2.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10409 - type: CableApcExtension - components: - - pos: -3.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10410 - type: CableApcExtension - components: - - pos: -4.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10411 - type: CableApcExtension - components: - - pos: -5.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10412 - type: CableApcExtension - components: - - pos: 0.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10413 - type: CableApcExtension - components: - - pos: 1.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10414 - type: CableApcExtension - components: - - pos: 2.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10415 - type: CableApcExtension - components: - - pos: 3.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10416 - type: CableApcExtension - components: - - pos: 4.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10417 - type: RandomSpawner - components: - - pos: 12.5,5.5 - parent: 8364 - type: Transform -- uid: 10418 - type: RandomSpawner - components: - - pos: 17.5,1.5 - parent: 8364 - type: Transform -- uid: 10419 - type: RandomSpawner - components: - - pos: 17.5,5.5 - parent: 8364 - type: Transform -- uid: 10420 - type: RandomSpawner - components: - - pos: 26.5,12.5 - parent: 8364 - type: Transform -- uid: 10421 - type: RandomSpawner - components: - - pos: 9.5,10.5 - parent: 8364 - type: Transform -- uid: 10422 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 24.5,-3.5 - parent: 8364 - type: Transform -- uid: 10423 - type: IntercomScience - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-26.5 - parent: 8364 - type: Transform -- uid: 10424 - type: TableWood - components: - - pos: 19.5,-6.5 - parent: 8364 - type: Transform -- uid: 10425 - type: SpawnPointServiceWorker - components: - - pos: 27.5,-7.5 - parent: 8364 - type: Transform -- uid: 10426 - type: GasPipeStraight - components: - - pos: 82.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10427 - type: RandomSpawner - components: - - pos: 36.5,-9.5 - parent: 8364 - type: Transform -- uid: 10428 - type: GasPipeStraight - components: - - pos: 82.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10429 - type: RandomSpawner - components: - - pos: 15.5,-1.5 - parent: 8364 - type: Transform -- uid: 10430 - type: RandomSpawner - components: - - pos: -16.5,-1.5 - parent: 8364 - type: Transform -- uid: 10431 - type: RandomSpawner - components: - - pos: -16.5,-30.5 - parent: 8364 - type: Transform -- uid: 10432 - type: RandomSpawner - components: - - pos: 15.5,-30.5 - parent: 8364 - type: Transform -- uid: 10433 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 83.5,-47.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10434 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 82.5,-47.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10435 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 84.5,-47.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10436 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 85.5,-48.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10437 - type: GasPipeTJunction - components: - - pos: 85.5,-47.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10438 - type: GasPipeBend - components: - - pos: 40.5,8.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10439 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 40.5,7.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10440 - type: GasPressurePump - components: - - pos: 40.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10441 - type: SpawnPointClown - components: - - pos: 21.5,3.5 - parent: 8364 - type: Transform -- uid: 10442 - type: SpawnPointMime - components: - - pos: 21.5,5.5 - parent: 8364 - type: Transform -- uid: 10443 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 40.5,3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10444 - type: SpawnPointChef - components: - - pos: 35.5,-5.5 - parent: 8364 - type: Transform -- uid: 10445 - type: AirlockFreezerLocked - components: - - name: Freezer - type: MetaData - - pos: 36.5,-3.5 - parent: 8364 - type: Transform -- uid: 10446 - type: AirlockKitchenGlassLocked - components: - - name: Kitchen - type: MetaData - - pos: 32.5,-5.5 - parent: 8364 - type: Transform -- uid: 10447 - type: AirlockKitchenGlassLocked - components: - - name: Kitchen - type: MetaData - - pos: 32.5,-9.5 - parent: 8364 - type: Transform -- uid: 10448 - type: AirlockMaintKitchenLocked - components: - - name: Freezer Maintenance - type: MetaData - - pos: 36.5,1.5 - parent: 8364 - type: Transform -- uid: 10449 - type: GasPipeBend - components: - - pos: 43.5,3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10450 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 43.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10451 - type: WindoorKitchenLocked - components: - - name: Kitchen's Desk - type: MetaData - - rot: 1.5707963267948966 rad - pos: 32.5,-7.5 - parent: 8364 - type: Transform -- uid: 10452 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 46.5,-0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10453 - type: LockerBotanistFilled - components: - - pos: 44.5,0.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10454 - type: ShuttersWindowOpen - components: - - pos: 35.5,-10.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9868 - type: SignalReceiver -- uid: 10455 - type: ShuttersWindowOpen - components: - - pos: 36.5,-10.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9868 - type: SignalReceiver -- uid: 10456 - type: ShuttersWindowOpen - components: - - pos: 37.5,-10.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9868 - type: SignalReceiver -- uid: 10457 - type: ShuttersWindowOpen - components: - - pos: 38.5,-10.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9868 - type: SignalReceiver -- uid: 10458 - type: LockerBotanistFilled - components: - - pos: 45.5,0.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10459 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-8.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10460 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,3.5 - parent: 8364 - type: Transform -- uid: 10461 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 26.5,3.5 - parent: 8364 - type: Transform -- uid: 10462 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 24.5,3.5 - parent: 8364 - type: Transform -- uid: 10463 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10464 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-2.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10465 - type: Poweredlight - components: - - pos: 38.5,-4.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10466 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-6.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10467 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 29.5,3.5 - parent: 8364 - type: Transform -- uid: 10468 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,3.5 - parent: 8364 - type: Transform -- uid: 10469 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,3.5 - parent: 8364 - type: Transform -- uid: 10470 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,3.5 - parent: 8364 - type: Transform -- uid: 10471 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,3.5 - parent: 8364 - type: Transform -- uid: 10472 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,3.5 - parent: 8364 - type: Transform -- uid: 10473 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,3.5 - parent: 8364 - type: Transform -- uid: 10474 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 36.5,3.5 - parent: 8364 - type: Transform -- uid: 10475 - type: DisposalPipe - components: - - pos: 36.5,2.5 - parent: 8364 - type: Transform -- uid: 10476 - type: DisposalPipe - components: - - pos: 36.5,1.5 - parent: 8364 - type: Transform -- uid: 10477 - type: DisposalPipe - components: - - pos: 36.5,0.5 - parent: 8364 - type: Transform -- uid: 10478 - type: DisposalPipe - components: - - pos: 36.5,-0.5 - parent: 8364 - type: Transform -- uid: 10479 - type: DisposalPipe - components: - - pos: 36.5,-1.5 - parent: 8364 - type: Transform -- uid: 10480 - type: DisposalPipe - components: - - pos: 36.5,-2.5 - parent: 8364 - type: Transform -- uid: 10481 - type: DisposalPipe - components: - - pos: 36.5,-3.5 - parent: 8364 - type: Transform -- uid: 10482 - type: DisposalPipe - components: - - pos: 36.5,-4.5 - parent: 8364 - type: Transform -- uid: 10483 - type: DisposalPipe - components: - - pos: 36.5,-5.5 - parent: 8364 - type: Transform -- uid: 10484 - type: DisposalPipe - components: - - pos: 36.5,-6.5 - parent: 8364 - type: Transform -- uid: 10485 - type: DisposalPipe - components: - - pos: 36.5,-7.5 - parent: 8364 - type: Transform -- uid: 10486 - type: DisposalPipe - components: - - pos: 36.5,-8.5 - parent: 8364 - type: Transform -- uid: 10487 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-9.5 - parent: 8364 - type: Transform -- uid: 10488 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-9.5 - parent: 8364 - type: Transform -- uid: 10489 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-9.5 - parent: 8364 - type: Transform -- uid: 10490 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-9.5 - parent: 8364 - type: Transform -- uid: 10491 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 36.5,-9.5 - parent: 8364 - type: Transform -- uid: 10492 - type: CableMV - components: - - pos: 36.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10493 - type: CableMV - components: - - pos: 36.5,1.5 - parent: 8364 - type: Transform -- uid: 10494 - type: CableMV - components: - - pos: 36.5,0.5 - parent: 8364 - type: Transform -- uid: 10495 - type: CableMV - components: - - pos: 36.5,-0.5 - parent: 8364 - type: Transform -- uid: 10496 - type: CableMV - components: - - pos: 36.5,-1.5 - parent: 8364 - type: Transform -- uid: 10497 - type: CableMV - components: - - pos: 36.5,-2.5 - parent: 8364 - type: Transform -- uid: 10498 - type: CableMV - components: - - pos: 36.5,-3.5 - parent: 8364 - type: Transform -- uid: 10499 - type: CableMV - components: - - pos: 37.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10500 - type: CableApcExtension - components: - - pos: 37.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10501 - type: CableApcExtension - components: - - pos: 37.5,-2.5 - parent: 8364 - type: Transform -- uid: 10502 - type: CableApcExtension - components: - - pos: 37.5,-1.5 - parent: 8364 - type: Transform -- uid: 10503 - type: CableApcExtension - components: - - pos: 37.5,-0.5 - parent: 8364 - type: Transform -- uid: 10504 - type: CableApcExtension - components: - - pos: 37.5,-4.5 - parent: 8364 - type: Transform -- uid: 10505 - type: CableApcExtension - components: - - pos: 37.5,-5.5 - parent: 8364 - type: Transform -- uid: 10506 - type: CableApcExtension - components: - - pos: 37.5,-6.5 - parent: 8364 - type: Transform -- uid: 10507 - type: CableApcExtension - components: - - pos: 37.5,-7.5 - parent: 8364 - type: Transform -- uid: 10508 - type: CableApcExtension - components: - - pos: 37.5,-8.5 - parent: 8364 - type: Transform -- uid: 10509 - type: CableApcExtension - components: - - pos: 36.5,-8.5 - parent: 8364 - type: Transform -- uid: 10510 - type: CableApcExtension - components: - - pos: 35.5,-8.5 - parent: 8364 - type: Transform -- uid: 10511 - type: CableApcExtension - components: - - pos: 34.5,-8.5 - parent: 8364 - type: Transform -- uid: 10512 - type: CableApcExtension - components: - - pos: 34.5,-7.5 - parent: 8364 - type: Transform -- uid: 10513 - type: CableApcExtension - components: - - pos: 34.5,-6.5 - parent: 8364 - type: Transform -- uid: 10514 - type: CableApcExtension - components: - - pos: 34.5,-5.5 - parent: 8364 - type: Transform -- uid: 10515 - type: CableApcExtension - components: - - pos: 38.5,-8.5 - parent: 8364 - type: Transform -- uid: 10516 - type: CableApcExtension - components: - - pos: 39.5,-8.5 - parent: 8364 - type: Transform -- uid: 10517 - type: CableApcExtension - components: - - pos: 39.5,-7.5 - parent: 8364 - type: Transform -- uid: 10518 - type: CableApcExtension - components: - - pos: 39.5,-6.5 - parent: 8364 - type: Transform -- uid: 10519 - type: CableApcExtension - components: - - pos: 39.5,-5.5 - parent: 8364 - type: Transform -- uid: 10520 - type: Table - components: - - pos: 49.5,-0.5 - parent: 8364 - type: Transform -- uid: 10521 - type: FirelockGlass - components: - - pos: 47.5,-10.5 - parent: 8364 - type: Transform -- uid: 10522 - type: WallSolid - components: - - pos: 41.5,-0.5 - parent: 8364 - type: Transform -- uid: 10523 - type: FirelockGlass - components: - - pos: 48.5,-10.5 - parent: 8364 - type: Transform -- uid: 10524 - type: WaterTankHighCapacity - components: - - pos: 49.5,-9.5 - parent: 8364 - type: Transform -- uid: 10525 - type: SpawnPointBotanist - components: - - pos: 45.5,-0.5 - parent: 8364 - type: Transform -- uid: 10526 - type: SpawnPointBotanist - components: - - pos: 44.5,-0.5 - parent: 8364 - type: Transform -- uid: 10527 - type: ClosetMaintenanceFilledRandom - components: - - pos: 20.5,18.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 10528 - type: ChairOfficeDark - components: - - pos: 48.5,0.5 - parent: 8364 - type: Transform -- uid: 10529 - type: SinkWide - components: - - pos: 42.5,0.5 - parent: 8364 - type: Transform -- uid: 10530 - type: AtmosFixFreezerMarker - components: - - pos: 40.5,-0.5 - parent: 8364 - type: Transform -- uid: 10531 - type: LockerBotanistFilled - components: - - pos: 46.5,0.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10532 - type: VendingMachineHydrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 42.5,-0.5 - parent: 8364 - type: Transform -- uid: 10533 - type: Window - components: - - pos: 47.5,-1.5 - parent: 8364 - type: Transform -- uid: 10534 - type: WallReinforced - components: - - pos: 41.5,12.5 - parent: 8364 - type: Transform -- uid: 10535 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-31.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11322 - Forward: - - port: Left - uid: 11322 - Off: - - port: Middle - uid: 11322 - type: SignalReceiver -- uid: 10536 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-31.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11322 - Forward: - - port: Left - uid: 11322 - Off: - - port: Middle - uid: 11322 - type: SignalReceiver -- uid: 10537 - type: WoodDoor - components: - - pos: 73.5,-3.5 - parent: 8364 - type: Transform -- uid: 10538 - type: WoodDoor - components: - - pos: 73.5,-1.5 - parent: 8364 - type: Transform -- uid: 10539 - type: AirlockMaintLocked - components: - - pos: 54.5,3.5 - parent: 8364 - type: Transform -- uid: 10540 - type: AirlockMaintLocked - components: - - pos: 68.5,5.5 - parent: 8364 - type: Transform -- uid: 10541 - type: AltarSpawner - components: - - pos: 69.5,-3.5 - parent: 8364 - type: Transform -- uid: 10542 - type: WallSolid - components: - - pos: 71.5,-0.5 - parent: 8364 - type: Transform -- uid: 10543 - type: WallSolid - components: - - pos: 72.5,-0.5 - parent: 8364 - type: Transform -- uid: 10544 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 62.5,1.5 - parent: 8364 - type: Transform -- uid: 10545 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-3.5 - parent: 8364 - type: Transform -- uid: 10546 - type: Grille - components: - - pos: 75.5,5.5 - parent: 8364 - type: Transform -- uid: 10547 - type: ComfyChair - components: - - pos: 57.5,-6.5 - parent: 8364 - type: Transform -- uid: 10548 - type: TableWood - components: - - pos: 57.5,-7.5 - parent: 8364 - type: Transform -- uid: 10549 - type: TableCarpet - components: - - pos: 59.5,-2.5 - parent: 8364 - type: Transform -- uid: 10550 - type: TableCarpet - components: - - pos: 63.5,-5.5 - parent: 8364 - type: Transform -- uid: 10551 - type: CarpetGreen - components: - - pos: 62.5,-3.5 - parent: 8364 - type: Transform -- uid: 10552 - type: CarpetGreen - components: - - pos: 61.5,-2.5 - parent: 8364 - type: Transform -- uid: 10553 - type: CarpetGreen - components: - - pos: 61.5,-3.5 - parent: 8364 - type: Transform -- uid: 10554 - type: PottedPlant14 - components: - - pos: 64.5,-0.5 - parent: 8364 - type: Transform -- uid: 10555 - type: CableApcExtension - components: - - pos: -0.5,-16.5 - parent: 8364 - type: Transform -- uid: 10556 - type: GasPipeStraight - components: - - pos: 40.5,5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10557 - type: GasPipeStraight - components: - - pos: 40.5,4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10558 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10559 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10560 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10561 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10562 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10563 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10564 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10565 - type: GasPipeStraight - components: - - pos: 48.5,-0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10566 - type: GasPipeTJunction - components: - - pos: 46.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10567 - type: PottedPlant3 - components: - - pos: -20.5,-3.5 - parent: 8364 - type: Transform -- uid: 10568 - type: Table - components: - - pos: -24.5,-3.5 - parent: 8364 - type: Transform -- uid: 10569 - type: BedsheetSpawner - components: - - pos: 33.5,-0.5 - parent: 8364 - type: Transform -- uid: 10570 - type: Bed - components: - - pos: 33.5,-0.5 - parent: 8364 - type: Transform -- uid: 10571 - type: LockerBoozeFilled - components: - - pos: 29.5,-1.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10572 - type: VendingBarDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,-0.5 - parent: 8364 - type: Transform -- uid: 10573 - type: Catwalk - components: - - pos: 49.5,-16.5 - parent: 8364 - type: Transform -- uid: 10574 - type: Catwalk - components: - - pos: 49.5,-17.5 - parent: 8364 - type: Transform -- uid: 10575 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 64.5,19.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10576 - type: Crematorium - components: - - pos: 60.5,2.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10577 - type: CarpetOrange - components: - - pos: 64.5,0.5 - parent: 8364 - type: Transform -- uid: 10578 - type: CableHV - components: - - pos: 47.5,40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10579 - type: CableHV - components: - - pos: 47.5,41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10580 - type: CableHV - components: - - pos: 49.5,33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10581 - type: CableHV - components: - - pos: 48.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10582 - type: CableHV - components: - - pos: 45.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10583 - type: CableHV - components: - - pos: 46.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10584 - type: SpawnPointBartender - components: - - pos: 30.5,-0.5 - parent: 8364 - type: Transform -- uid: 10585 - type: MonkeyCubeWrapped - components: - - pos: 31.299288,-1.340906 - parent: 8364 - type: Transform -- uid: 10586 - type: KitchenReagentGrinder - components: - - pos: 36.5,-6.5 - parent: 8364 - type: Transform -- uid: 10587 - type: FoodMeat - components: - - pos: 36.552086,-0.77867055 - parent: 8364 - type: Transform -- uid: 10588 - type: FoodMeat - components: - - pos: 35.75521,-2.2474205 - parent: 8364 - type: Transform -- uid: 10589 - type: SpawnPointChef - components: - - pos: 38.5,-5.5 - parent: 8364 - type: Transform -- uid: 10590 - type: SolarPanel - components: - - pos: 43.5,28.5 - parent: 8364 - type: Transform -- uid: 10591 - type: SolarPanel - components: - - pos: 41.5,30.5 - parent: 8364 - type: Transform -- uid: 10592 - type: SolarPanel - components: - - pos: 42.5,32.5 - parent: 8364 - type: Transform -- uid: 10593 - type: SolarPanel - components: - - pos: 44.5,34.5 - parent: 8364 - type: Transform -- uid: 10594 - type: SolarPanel - components: - - pos: 49.5,34.5 - parent: 8364 - type: Transform -- uid: 10595 - type: SolarPanel - components: - - pos: 50.5,32.5 - parent: 8364 - type: Transform -- uid: 10596 - type: SolarPanel - components: - - pos: 52.5,36.5 - parent: 8364 - type: Transform -- uid: 10597 - type: SolarPanel - components: - - pos: 44.5,38.5 - parent: 8364 - type: Transform -- uid: 10598 - type: CableHV - components: - - pos: 47.5,39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10599 - type: CableHV - components: - - pos: 47.5,18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10600 - type: AtmosFixFreezerMarker - components: - - pos: 39.5,-1.5 - parent: 8364 - type: Transform -- uid: 10601 - type: CableMV - components: - - pos: 15.5,28.5 - parent: 8364 - type: Transform -- uid: 10602 - type: AtmosFixFreezerMarker - components: - - pos: 39.5,-2.5 - parent: 8364 - type: Transform -- uid: 10603 - type: FirelockEdge - components: - - pos: 8.5,35.5 - parent: 8364 - type: Transform -- uid: 10604 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 26.5,6.5 - parent: 8364 - type: Transform -- uid: 10605 - type: AirlockMaintLocked - components: - - pos: 28.5,3.5 - parent: 8364 - type: Transform -- uid: 10606 - type: AtmosFixFreezerMarker - components: - - pos: 38.5,0.5 - parent: 8364 - type: Transform -- uid: 10607 - type: AtmosFixFreezerMarker - components: - - pos: 38.5,-0.5 - parent: 8364 - type: Transform -- uid: 10608 - type: AirlockMaintHydroLocked - components: - - name: Hydroponics Maintenance - type: MetaData - - pos: 43.5,1.5 - parent: 8364 - type: Transform -- uid: 10609 - type: AirlockHydroGlassLocked - components: - - name: 'Hydroponics ' - type: MetaData - - pos: 44.5,-11.5 - parent: 8364 - type: Transform -- uid: 10610 - type: AirlockHydroGlassLocked - components: - - name: 'Hydroponics ' - type: MetaData - - pos: 43.5,-11.5 - parent: 8364 - type: Transform -- uid: 10611 - type: AtmosFixFreezerMarker - components: - - pos: 38.5,-1.5 - parent: 8364 - type: Transform -- uid: 10612 - type: TableReinforced - components: - - pos: 48.5,-10.5 - parent: 8364 - type: Transform -- uid: 10613 - type: TableReinforced - components: - - pos: 47.5,-10.5 - parent: 8364 - type: Transform -- uid: 10614 - type: Table - components: - - pos: 48.5,1.5 - parent: 8364 - type: Transform -- uid: 10615 - type: Table - components: - - pos: 49.5,1.5 - parent: 8364 - type: Transform -- uid: 10616 - type: Table - components: - - pos: 49.5,0.5 - parent: 8364 - type: Transform -- uid: 10617 - type: AtmosFixFreezerMarker - components: - - pos: 38.5,-2.5 - parent: 8364 - type: Transform -- uid: 10618 - type: AtmosFixFreezerMarker - components: - - pos: 37.5,0.5 - parent: 8364 - type: Transform -- uid: 10619 - type: hydroponicsTray - components: - - pos: 42.5,-8.5 - parent: 8364 - type: Transform -- uid: 10620 - type: hydroponicsTray - components: - - pos: 42.5,-7.5 - parent: 8364 - type: Transform -- uid: 10621 - type: hydroponicsTray - components: - - pos: 42.5,-4.5 - parent: 8364 - type: Transform -- uid: 10622 - type: hydroponicsTray - components: - - pos: 42.5,-3.5 - parent: 8364 - type: Transform -- uid: 10623 - type: hydroponicsTray - components: - - pos: 44.5,-2.5 - parent: 8364 - type: Transform -- uid: 10624 - type: hydroponicsTray - components: - - pos: 46.5,-2.5 - parent: 8364 - type: Transform -- uid: 10625 - type: hydroponicsTray - components: - - pos: 47.5,-2.5 - parent: 8364 - type: Transform -- uid: 10626 - type: hydroponicsTray - components: - - pos: 45.5,-2.5 - parent: 8364 - type: Transform -- uid: 10627 - type: hydroponicsTray - components: - - pos: 49.5,-3.5 - parent: 8364 - type: Transform -- uid: 10628 - type: hydroponicsTray - components: - - pos: 49.5,-4.5 - parent: 8364 - type: Transform -- uid: 10629 - type: hydroponicsTray - components: - - pos: 49.5,-5.5 - parent: 8364 - type: Transform -- uid: 10630 - type: hydroponicsTray - components: - - pos: 49.5,-6.5 - parent: 8364 - type: Transform -- uid: 10631 - type: hydroponicsTray - components: - - pos: 49.5,-7.5 - parent: 8364 - type: Transform -- uid: 10632 - type: hydroponicsTray - components: - - pos: 49.5,-8.5 - parent: 8364 - type: Transform -- uid: 10633 - type: WindoorHydroponicsLocked - components: - - name: Hydroponics Desk - type: MetaData - - rot: 3.141592653589793 rad - pos: 47.5,-10.5 - parent: 8364 - type: Transform -- uid: 10634 - type: WindoorHydroponicsLocked - components: - - name: Hydroponics Desk - type: MetaData - - rot: 3.141592653589793 rad - pos: 48.5,-10.5 - parent: 8364 - type: Transform -- uid: 10635 - type: AtmosFixFreezerMarker - components: - - pos: 37.5,-0.5 - parent: 8364 - type: Transform -- uid: 10636 - type: AtmosFixFreezerMarker - components: - - pos: 37.5,-1.5 - parent: 8364 - type: Transform -- uid: 10637 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 37.5,3.5 - parent: 8364 - type: Transform -- uid: 10638 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 38.5,3.5 - parent: 8364 - type: Transform -- uid: 10639 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 40.5,3.5 - parent: 8364 - type: Transform -- uid: 10640 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 39.5,3.5 - parent: 8364 - type: Transform -- uid: 10641 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 41.5,3.5 - parent: 8364 - type: Transform -- uid: 10642 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 42.5,3.5 - parent: 8364 - type: Transform -- uid: 10643 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,2.5 - parent: 8364 - type: Transform -- uid: 10644 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,1.5 - parent: 8364 - type: Transform -- uid: 10645 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,0.5 - parent: 8364 - type: Transform -- uid: 10646 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-0.5 - parent: 8364 - type: Transform -- uid: 10647 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-0.5 - parent: 8364 - type: Transform -- uid: 10648 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-0.5 - parent: 8364 - type: Transform -- uid: 10649 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-0.5 - parent: 8364 - type: Transform -- uid: 10650 - type: DisposalPipe - components: - - pos: 48.5,-1.5 - parent: 8364 - type: Transform -- uid: 10651 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-2.5 - parent: 8364 - type: Transform -- uid: 10652 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 48.5,-2.5 - parent: 8364 - type: Transform -- uid: 10653 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 43.5,-0.5 - parent: 8364 - type: Transform -- uid: 10654 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 43.5,3.5 - parent: 8364 - type: Transform -- uid: 10655 - type: DisposalBend - components: - - pos: 48.5,-0.5 - parent: 8364 - type: Transform -- uid: 10656 - type: DisposalUnit - components: - - pos: 49.5,-2.5 - parent: 8364 - type: Transform -- uid: 10657 - type: APCBasic - components: - - name: Hydroponics APC - type: MetaData - - pos: 43.5,-1.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 65 - supplyRampPosition: 17.574497 - type: PowerNetworkBattery -- uid: 10658 - type: CableApcExtension - components: - - pos: 43.5,-1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10659 - type: CableApcExtension - components: - - pos: 43.5,-0.5 - parent: 8364 - type: Transform -- uid: 10660 - type: CableApcExtension - components: - - pos: 42.5,-0.5 - parent: 8364 - type: Transform -- uid: 10661 - type: CableApcExtension - components: - - pos: 44.5,-0.5 - parent: 8364 - type: Transform -- uid: 10662 - type: CableApcExtension - components: - - pos: 45.5,-0.5 - parent: 8364 - type: Transform -- uid: 10663 - type: CableApcExtension - components: - - pos: 46.5,-0.5 - parent: 8364 - type: Transform -- uid: 10664 - type: CableApcExtension - components: - - pos: 47.5,-0.5 - parent: 8364 - type: Transform -- uid: 10665 - type: CableApcExtension - components: - - pos: 48.5,-0.5 - parent: 8364 - type: Transform -- uid: 10666 - type: CableApcExtension - components: - - pos: 49.5,-0.5 - parent: 8364 - type: Transform -- uid: 10667 - type: CableApcExtension - components: - - pos: 49.5,-1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10668 - type: CableApcExtension - components: - - pos: 47.5,-1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10669 - type: CableApcExtension - components: - - pos: 43.5,-2.5 - parent: 8364 - type: Transform -- uid: 10670 - type: CableApcExtension - components: - - pos: 43.5,-3.5 - parent: 8364 - type: Transform -- uid: 10671 - type: CableApcExtension - components: - - pos: 43.5,-4.5 - parent: 8364 - type: Transform -- uid: 10672 - type: CableApcExtension - components: - - pos: 44.5,-3.5 - parent: 8364 - type: Transform -- uid: 10673 - type: CableApcExtension - components: - - pos: 45.5,-3.5 - parent: 8364 - type: Transform -- uid: 10674 - type: CableApcExtension - components: - - pos: 46.5,-3.5 - parent: 8364 - type: Transform -- uid: 10675 - type: CableApcExtension - components: - - pos: 47.5,-3.5 - parent: 8364 - type: Transform -- uid: 10676 - type: CableApcExtension - components: - - pos: 48.5,-3.5 - parent: 8364 - type: Transform -- uid: 10677 - type: CableApcExtension - components: - - pos: 48.5,-4.5 - parent: 8364 - type: Transform -- uid: 10678 - type: CableApcExtension - components: - - pos: 48.5,-5.5 - parent: 8364 - type: Transform -- uid: 10679 - type: CableApcExtension - components: - - pos: 48.5,-6.5 - parent: 8364 - type: Transform -- uid: 10680 - type: CableApcExtension - components: - - pos: 48.5,-7.5 - parent: 8364 - type: Transform -- uid: 10681 - type: CableApcExtension - components: - - pos: 48.5,-8.5 - parent: 8364 - type: Transform -- uid: 10682 - type: CableApcExtension - components: - - pos: 47.5,-8.5 - parent: 8364 - type: Transform -- uid: 10683 - type: CableApcExtension - components: - - pos: 46.5,-8.5 - parent: 8364 - type: Transform -- uid: 10684 - type: CableApcExtension - components: - - pos: 45.5,-8.5 - parent: 8364 - type: Transform -- uid: 10685 - type: CableApcExtension - components: - - pos: 44.5,-8.5 - parent: 8364 - type: Transform -- uid: 10686 - type: CableApcExtension - components: - - pos: 43.5,-8.5 - parent: 8364 - type: Transform -- uid: 10687 - type: CableApcExtension - components: - - pos: 43.5,-7.5 - parent: 8364 - type: Transform -- uid: 10688 - type: CableApcExtension - components: - - pos: 43.5,-6.5 - parent: 8364 - type: Transform -- uid: 10689 - type: CableApcExtension - components: - - pos: 43.5,-5.5 - parent: 8364 - type: Transform -- uid: 10690 - type: CableApcExtension - components: - - pos: 43.5,-9.5 - parent: 8364 - type: Transform -- uid: 10691 - type: CableApcExtension - components: - - pos: 43.5,-10.5 - parent: 8364 - type: Transform -- uid: 10692 - type: CableApcExtension - components: - - pos: 43.5,-11.5 - parent: 8364 - type: Transform -- uid: 10693 - type: CableApcExtension - components: - - pos: 42.5,-11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10694 - type: CableApcExtension - components: - - pos: 44.5,-11.5 - parent: 8364 - type: Transform -- uid: 10695 - type: CableApcExtension - components: - - pos: 45.5,-11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10696 - type: CableApcExtension - components: - - pos: 45.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10697 - type: CableApcExtension - components: - - pos: 46.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10698 - type: CableApcExtension - components: - - pos: 47.5,-10.5 - parent: 8364 - type: Transform -- uid: 10699 - type: CableApcExtension - components: - - pos: 48.5,-10.5 - parent: 8364 - type: Transform -- uid: 10700 - type: CableApcExtension - components: - - pos: 49.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10701 - type: CableApcExtension - components: - - pos: 48.5,-9.5 - parent: 8364 - type: Transform -- uid: 10702 - type: CableMV - components: - - pos: 43.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10703 - type: CableMV - components: - - pos: 43.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10704 - type: CableMV - components: - - pos: 43.5,1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10705 - type: CableMV - components: - - pos: 43.5,0.5 - parent: 8364 - type: Transform -- uid: 10706 - type: CableMV - components: - - pos: 43.5,-0.5 - parent: 8364 - type: Transform -- uid: 10707 - type: CableMV - components: - - pos: 43.5,-1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10708 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-7.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10709 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-7.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10710 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10711 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10712 - type: Poweredlight - components: - - pos: 46.5,-2.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10713 - type: VendingMachineSeeds - components: - - flags: SessionSpecific - type: MetaData - - pos: 46.5,-6.5 - parent: 8364 - type: Transform -- uid: 10714 - type: SeedExtractor - components: - - pos: 46.5,-5.5 - parent: 8364 - type: Transform -- uid: 10715 - type: VendingMachineNutri - components: - - flags: SessionSpecific - type: MetaData - - pos: 45.5,-6.5 - parent: 8364 - type: Transform -- uid: 10716 - type: SinkWide - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-2.5 - parent: 8364 - type: Transform -- uid: 10717 - type: AtmosFixFreezerMarker - components: - - pos: 37.5,-2.5 - parent: 8364 - type: Transform -- uid: 10718 - type: Bucket - components: - - pos: 48.5,-9.5 - parent: 8364 - type: Transform -- uid: 10719 - type: Bucket - components: - - pos: 43.5,-2.5 - parent: 8364 - type: Transform -- uid: 10720 - type: AtmosFixFreezerMarker - components: - - pos: 36.5,0.5 - parent: 8364 - type: Transform -- uid: 10721 - type: AtmosFixFreezerMarker - components: - - pos: 36.5,-0.5 - parent: 8364 - type: Transform -- uid: 10722 - type: hydroponicsTray - components: - - pos: 46.5,-9.5 - parent: 8364 - type: Transform -- uid: 10723 - type: hydroponicsTray - components: - - pos: 45.5,-9.5 - parent: 8364 - type: Transform -- uid: 10724 - type: CableApcExtension - components: - - pos: -12.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10725 - type: CableApcExtension - components: - - pos: -11.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10726 - type: AtmosFixFreezerMarker - components: - - pos: 36.5,-1.5 - parent: 8364 - type: Transform -- uid: 10727 - type: AtmosFixFreezerMarker - components: - - pos: 36.5,-2.5 - parent: 8364 - type: Transform -- uid: 10728 - type: AtmosFixFreezerMarker - components: - - pos: 35.5,0.5 - parent: 8364 - type: Transform -- uid: 10729 - type: AtmosFixFreezerMarker - components: - - pos: 35.5,-0.5 - parent: 8364 - type: Transform -- uid: 10730 - type: AtmosFixFreezerMarker - components: - - pos: 35.5,-1.5 - parent: 8364 - type: Transform -- uid: 10731 - type: AtmosFixFreezerMarker - components: - - pos: 35.5,-2.5 - parent: 8364 - type: Transform -- uid: 10732 - type: PlantBGoneSpray - components: - - pos: 49.5,0.5 - parent: 8364 - type: Transform -- uid: 10733 - type: PlantBGoneSpray - components: - - pos: 49.5,0.5 - parent: 8364 - type: Transform -- uid: 10734 - type: PlantBGoneSpray - components: - - pos: 49.5,0.5 - parent: 8364 - type: Transform -- uid: 10735 - type: KitchenReagentGrinder - components: - - pos: 49.5,1.5 - parent: 8364 - type: Transform -- uid: 10736 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,0.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10737 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-0.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10738 - type: Grille - components: - - pos: 1.5,44.5 - parent: 8364 - type: Transform -- uid: 10739 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-7.5 - parent: 8364 - type: Transform -- uid: 10740 - type: HandLabeler - components: - - pos: 37.5,-6.5 - parent: 8364 - type: Transform -- uid: 10741 - type: HandLabeler - components: - - pos: 48.5,1.5 - parent: 8364 - type: Transform -- uid: 10742 - type: SinkWide - components: - - pos: 34.5,-4.5 - parent: 8364 - type: Transform -- uid: 10743 - type: SinkWide - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-10.5 - parent: 8364 - type: Transform -- uid: 10744 - type: ExtinguisherCabinetFilled - components: - - pos: 46.5,-1.5 - parent: 8364 - type: Transform -- uid: 10745 - type: RandomSpawner - components: - - pos: 39.5,2.5 - parent: 8364 - type: Transform -- uid: 10746 - type: RandomSpawner - components: - - pos: 44.5,-10.5 - parent: 8364 - type: Transform -- uid: 10747 - type: WallSolid - components: - - pos: 44.5,9.5 - parent: 8364 - type: Transform -- uid: 10748 - type: AirlockGlass - components: - - name: Library - type: MetaData - - pos: 54.5,-8.5 - parent: 8364 - type: Transform -- uid: 10749 - type: AirlockGlass - components: - - name: Library - type: MetaData - - pos: 54.5,-9.5 - parent: 8364 - type: Transform -- uid: 10750 - type: AirlockGlass - components: - - name: Chapel - type: MetaData - - pos: 64.5,-8.5 - parent: 8364 - type: Transform -- uid: 10751 - type: AirlockGlass - components: - - name: Chapel - type: MetaData - - pos: 64.5,-9.5 - parent: 8364 - type: Transform -- uid: 10752 - type: AirlockGlass - components: - - name: Chapel - type: MetaData - - pos: 74.5,-8.5 - parent: 8364 - type: Transform -- uid: 10753 - type: AirlockGlass - components: - - name: Chapel - type: MetaData - - pos: 74.5,-9.5 - parent: 8364 - type: Transform -- uid: 10754 - type: AirlockServiceLocked - components: - - name: Private Study - type: MetaData - - pos: 62.5,-4.5 - parent: 8364 - type: Transform -- uid: 10755 - type: Windoor - components: - - name: Library Desk - type: MetaData - - rot: -1.5707963267948966 rad - pos: 60.5,-5.5 - parent: 8364 - type: Transform -- uid: 10756 - type: Grille - components: - - pos: 68.5,-0.5 - parent: 8364 - type: Transform -- uid: 10757 - type: Grille - components: - - pos: 67.5,3.5 - parent: 8364 - type: Transform -- uid: 10758 - type: WaterTankHighCapacity - components: - - pos: 42.5,-9.5 - parent: 8364 - type: Transform -- uid: 10759 - type: PottedPlant24 - components: - - pos: 49.5,-11.5 - parent: 8364 - type: Transform -- uid: 10760 - type: Catwalk - components: - - pos: -15.5,-60.5 - parent: 8364 - type: Transform -- uid: 10761 - type: AirlockMaintChapelLocked - components: - - name: Crematorium Maintenance - type: MetaData - - pos: 61.5,3.5 - parent: 8364 - type: Transform -- uid: 10762 - type: Catwalk - components: - - pos: -15.5,-61.5 - parent: 8364 - type: Transform -- uid: 10763 - type: WallSolid - components: - - pos: 59.5,0.5 - parent: 8364 - type: Transform -- uid: 10764 - type: AirlockChapelGlassLocked - components: - - name: Crematorium - type: MetaData - - pos: 62.5,0.5 - parent: 8364 - type: Transform -- uid: 10765 - type: AirlockMaintChapelLocked - components: - - name: Chapel's Office - type: MetaData - - pos: 66.5,-1.5 - parent: 8364 - type: Transform -- uid: 10766 - type: TintedWindow - components: - - pos: 74.5,-2.5 - parent: 8364 - type: Transform -- uid: 10767 - type: TableWood - components: - - pos: 60.5,-6.5 - parent: 8364 - type: Transform -- uid: 10768 - type: TableWood - components: - - pos: 60.5,-7.5 - parent: 8364 - type: Transform -- uid: 10769 - type: TableWood - components: - - pos: 61.5,-7.5 - parent: 8364 - type: Transform -- uid: 10770 - type: TableWood - components: - - pos: 62.5,-7.5 - parent: 8364 - type: Transform -- uid: 10771 - type: TableWood - components: - - pos: 63.5,-7.5 - parent: 8364 - type: Transform -- uid: 10772 - type: TableWood - components: - - pos: 55.5,1.5 - parent: 8364 - type: Transform -- uid: 10773 - type: TableWood - components: - - pos: 56.5,1.5 - parent: 8364 - type: Transform -- uid: 10774 - type: TableWood - components: - - pos: 61.5,-2.5 - parent: 8364 - type: Transform -- uid: 10775 - type: TableWood - components: - - pos: 55.5,0.5 - parent: 8364 - type: Transform -- uid: 10776 - type: TableWood - components: - - pos: 56.5,0.5 - parent: 8364 - type: Transform -- uid: 10777 - type: TableWood - components: - - pos: 62.5,-2.5 - parent: 8364 - type: Transform -- uid: 10778 - type: TableWood - components: - - pos: 63.5,-2.5 - parent: 8364 - type: Transform -- uid: 10779 - type: TableWood - components: - - pos: 63.5,1.5 - parent: 8364 - type: Transform -- uid: 10780 - type: TableWood - components: - - pos: 64.5,1.5 - parent: 8364 - type: Transform -- uid: 10781 - type: TableWood - components: - - pos: 65.5,1.5 - parent: 8364 - type: Transform -- uid: 10782 - type: TableWood - components: - - pos: 65.5,2.5 - parent: 8364 - type: Transform -- uid: 10783 - type: Catwalk - components: - - pos: -15.5,-62.5 - parent: 8364 - type: Transform -- uid: 10784 - type: TableWood - components: - - pos: 68.5,-3.5 - parent: 8364 - type: Transform -- uid: 10785 - type: TableWood - components: - - pos: 70.5,-3.5 - parent: 8364 - type: Transform -- uid: 10786 - type: WardrobeChapelFilled - components: - - pos: 63.5,-0.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 10787 - type: TableGlass - components: - - pos: 69.5,6.5 - parent: 8364 - type: Transform -- uid: 10788 - type: Window - components: - - pos: 70.5,-0.5 - parent: 8364 - type: Transform -- uid: 10789 - type: Window - components: - - pos: 68.5,-0.5 - parent: 8364 - type: Transform -- uid: 10790 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 64.5,17.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10791 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 64.5,18.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10792 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 64.5,18.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10793 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 66.5,-5.5 - parent: 8364 - type: Transform -- uid: 10794 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 66.5,-6.5 - parent: 8364 - type: Transform -- uid: 10795 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 66.5,-7.5 - parent: 8364 - type: Transform -- uid: 10796 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 74.5,-3.5 - parent: 8364 - type: Transform -- uid: 10797 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 67.5,-5.5 - parent: 8364 - type: Transform -- uid: 10798 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 67.5,-6.5 - parent: 8364 - type: Transform -- uid: 10799 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 67.5,-7.5 - parent: 8364 - type: Transform -- uid: 10800 - type: APCBasic - components: - - name: Chapel APC - type: MetaData - - pos: 73.5,-4.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 45 - supplyRampPosition: 2.4463015 - type: PowerNetworkBattery -- uid: 10801 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 71.5,-5.5 - parent: 8364 - type: Transform -- uid: 10802 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 71.5,-6.5 - parent: 8364 - type: Transform -- uid: 10803 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 71.5,-7.5 - parent: 8364 - type: Transform -- uid: 10804 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-31.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11322 - Forward: - - port: Left - uid: 11322 - Off: - - port: Middle - uid: 11322 - type: SignalReceiver -- uid: 10805 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 72.5,-5.5 - parent: 8364 - type: Transform -- uid: 10806 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 72.5,-6.5 - parent: 8364 - type: Transform -- uid: 10807 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 72.5,-7.5 - parent: 8364 - type: Transform -- uid: 10808 - type: lantern - components: - - pos: 68.5,-3.5 - parent: 8364 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 10809 - type: lantern - components: - - pos: 70.5,-3.5 - parent: 8364 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 10810 - type: ChairWood - components: - - pos: 74.5,-1.5 - parent: 8364 - type: Transform -- uid: 10811 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 57.5,1.5 - parent: 8364 - type: Transform -- uid: 10812 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 57.5,0.5 - parent: 8364 - type: Transform -- uid: 10813 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 56.5,-0.5 - parent: 8364 - type: Transform -- uid: 10814 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 55.5,-0.5 - parent: 8364 - type: Transform -- uid: 10815 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 54.5,0.5 - parent: 8364 - type: Transform -- uid: 10816 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 54.5,1.5 - parent: 8364 - type: Transform -- uid: 10817 - type: ChairOfficeDark - components: - - pos: 56.5,2.5 - parent: 8364 - type: Transform -- uid: 10818 - type: ChairOfficeDark - components: - - pos: 55.5,2.5 - parent: 8364 - type: Transform -- uid: 10819 - type: Catwalk - components: - - pos: -15.5,-63.5 - parent: 8364 - type: Transform -- uid: 10820 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-10.5 - parent: 8364 - type: Transform -- uid: 10821 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-10.5 - parent: 8364 - type: Transform -- uid: 10822 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-10.5 - parent: 8364 - type: Transform -- uid: 10823 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-10.5 - parent: 8364 - type: Transform -- uid: 10824 - type: Chair - components: - - pos: 64.5,2.5 - parent: 8364 - type: Transform -- uid: 10825 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 64.5,0.5 - parent: 8364 - type: Transform -- uid: 10826 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 55.5,-10.5 - parent: 8364 - type: Transform -- uid: 10827 - type: TableWood - components: - - pos: 57.5,-10.5 - parent: 8364 - type: Transform -- uid: 10828 - type: TableWood - components: - - pos: 61.5,-10.5 - parent: 8364 - type: Transform -- uid: 10829 - type: Bookshelf - components: - - pos: 53.5,-2.5 - parent: 8364 - type: Transform -- uid: 10830 - type: Bookshelf - components: - - pos: 54.5,-2.5 - parent: 8364 - type: Transform -- uid: 10831 - type: Bookshelf - components: - - pos: 53.5,-4.5 - parent: 8364 - type: Transform -- uid: 10832 - type: Bookshelf - components: - - pos: 54.5,-4.5 - parent: 8364 - type: Transform -- uid: 10833 - type: Bookshelf - components: - - pos: 53.5,-6.5 - parent: 8364 - type: Transform -- uid: 10834 - type: Bookshelf - components: - - pos: 54.5,-6.5 - parent: 8364 - type: Transform -- uid: 10835 - type: Catwalk - components: - - pos: -15.5,-64.5 - parent: 8364 - type: Transform -- uid: 10836 - type: Catwalk - components: - - pos: -15.5,-65.5 - parent: 8364 - type: Transform -- uid: 10837 - type: Bookshelf - components: - - pos: 57.5,-2.5 - parent: 8364 - type: Transform -- uid: 10838 - type: Bookshelf - components: - - pos: 57.5,-4.5 - parent: 8364 - type: Transform -- uid: 10839 - type: Bookshelf - components: - - pos: 58.5,-4.5 - parent: 8364 - type: Transform -- uid: 10840 - type: Catwalk - components: - - pos: -15.5,-66.5 - parent: 8364 - type: Transform -- uid: 10841 - type: TableWood - components: - - pos: 56.5,3.5 - parent: 8364 - type: Transform -- uid: 10842 - type: Bookshelf - components: - - pos: 58.5,-2.5 - parent: 8364 - type: Transform -- uid: 10843 - type: DisposalUnit - components: - - pos: 58.5,3.5 - parent: 8364 - type: Transform -- uid: 10844 - type: DisposalUnit - components: - - pos: 66.5,-10.5 - parent: 8364 - type: Transform -- uid: 10845 - type: BoxFolderYellow - components: - - pos: 55.5,1.5 - parent: 8364 - type: Transform -- uid: 10846 - type: Pen - components: - - pos: 55.5,1.5 - parent: 8364 - type: Transform -- uid: 10847 - type: Paper - components: - - pos: 56.5,1.5 - parent: 8364 - type: Transform -- uid: 10848 - type: Paper - components: - - pos: 56.5,1.5 - parent: 8364 - type: Transform -- uid: 10849 - type: Paper - components: - - pos: 56.5,1.5 - parent: 8364 - type: Transform -- uid: 10850 - type: Paper - components: - - pos: 56.5,1.5 - parent: 8364 - type: Transform -- uid: 10851 - type: Paper - components: - - pos: 56.5,1.5 - parent: 8364 - type: Transform -- uid: 10852 - type: d10Dice - components: - - pos: 56.5,3.5000002 - parent: 8364 - type: Transform -- uid: 10853 - type: PercentileDie - components: - - pos: 56.5,3.5000002 - parent: 8364 - type: Transform -- uid: 10854 - type: d12Dice - components: - - pos: 56.5,3.5000002 - parent: 8364 - type: Transform -- uid: 10855 - type: d20Dice - components: - - pos: 56.5,3.5000002 - parent: 8364 - type: Transform -- uid: 10856 - type: SpawnMobCat - components: - - pos: 57.5,-1.5 - parent: 8364 - type: Transform -- uid: 10857 - type: LampGold - components: - - pos: 60.5,-6.5 - parent: 8364 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 10858 - type: LampGold - components: - - pos: 61.465347,-10.029866 - parent: 8364 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 10859 - type: LampGold - components: - - pos: 57.47965,-10.061116 - parent: 8364 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 10860 - type: Lamp - components: - - pos: 63.59359,1.9265842 - parent: 8364 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 10861 - type: Pen - components: - - pos: 60.5,-7.5 - parent: 8364 - type: Transform -- uid: 10862 - type: Pen - components: - - pos: 60.5,-7.5 - parent: 8364 - type: Transform -- uid: 10863 - type: SpawnPointLibrarian - components: - - pos: 62.5,-6.5 - parent: 8364 - type: Transform -- uid: 10864 - type: ChairOfficeDark - components: - - pos: 62.5,-6.5 - parent: 8364 - type: Transform -- uid: 10865 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -1.5,-59.5 - parent: 8364 - type: Transform -- uid: 10866 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-58.5 - parent: 8364 - type: Transform -- uid: 10867 - type: AirlockMaintLocked - components: - - pos: -4.5,-59.5 - parent: 8364 - type: Transform -- uid: 10868 - type: Catwalk - components: - - pos: -5.5,-59.5 - parent: 8364 - type: Transform -- uid: 10869 - type: d4Dice - components: - - pos: 56.5,3.5000002 - parent: 8364 - type: Transform -- uid: 10870 - type: d6Dice - components: - - pos: 56.5,3.5000002 - parent: 8364 - type: Transform -- uid: 10871 - type: d8Dice - components: - - pos: 56.5,3.5000002 - parent: 8364 - type: Transform -- uid: 10872 - type: d10Dice - components: - - pos: 55.5,0.5 - parent: 8364 - type: Transform -- uid: 10873 - type: PercentileDie - components: - - pos: 55.5,0.5 - parent: 8364 - type: Transform -- uid: 10874 - type: d12Dice - components: - - pos: 55.5,0.5 - parent: 8364 - type: Transform -- uid: 10875 - type: d20Dice - components: - - pos: 55.5,0.5 - parent: 8364 - type: Transform -- uid: 10876 - type: d4Dice - components: - - pos: 55.5,0.5 - parent: 8364 - type: Transform -- uid: 10877 - type: d6Dice - components: - - pos: 55.5,0.5 - parent: 8364 - type: Transform -- uid: 10878 - type: d8Dice - components: - - pos: 55.5,0.5 - parent: 8364 - type: Transform -- uid: 10879 - type: Catwalk - components: - - pos: -6.5,-59.5 - parent: 8364 - type: Transform -- uid: 10880 - type: TableGlass - components: - - pos: 74.5,3.5 - parent: 8364 - type: Transform -- uid: 10881 - type: TableGlass - components: - - pos: 74.5,2.5 - parent: 8364 - type: Transform -- uid: 10882 - type: TableGlass - components: - - pos: 74.5,1.5 - parent: 8364 - type: Transform -- uid: 10883 - type: TableGlass - components: - - pos: 74.5,0.5 - parent: 8364 - type: Transform -- uid: 10884 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 44.5,3.5 - parent: 8364 - type: Transform -- uid: 10885 - type: DisposalPipe - components: - - pos: 45.5,4.5 - parent: 8364 - type: Transform -- uid: 10886 - type: DisposalPipe - components: - - pos: 45.5,5.5 - parent: 8364 - type: Transform -- uid: 10887 - type: DisposalPipe - components: - - pos: 45.5,6.5 - parent: 8364 - type: Transform -- uid: 10888 - type: DisposalPipe - components: - - pos: 45.5,7.5 - parent: 8364 - type: Transform -- uid: 10889 - type: DisposalPipe - components: - - pos: 45.5,8.5 - parent: 8364 - type: Transform -- uid: 10890 - type: DisposalPipe - components: - - pos: 45.5,9.5 - parent: 8364 - type: Transform -- uid: 10891 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 46.5,10.5 - parent: 8364 - type: Transform -- uid: 10892 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 47.5,10.5 - parent: 8364 - type: Transform -- uid: 10893 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 48.5,10.5 - parent: 8364 - type: Transform -- uid: 10894 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 49.5,10.5 - parent: 8364 - type: Transform -- uid: 10895 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 50.5,10.5 - parent: 8364 - type: Transform -- uid: 10896 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 51.5,10.5 - parent: 8364 - type: Transform -- uid: 10897 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 52.5,10.5 - parent: 8364 - type: Transform -- uid: 10898 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 53.5,10.5 - parent: 8364 - type: Transform -- uid: 10899 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 54.5,9.5 - parent: 8364 - type: Transform -- uid: 10900 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 54.5,8.5 - parent: 8364 - type: Transform -- uid: 10901 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 54.5,7.5 - parent: 8364 - type: Transform -- uid: 10902 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 54.5,6.5 - parent: 8364 - type: Transform -- uid: 10903 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 54.5,5.5 - parent: 8364 - type: Transform -- uid: 10904 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 54.5,4.5 - parent: 8364 - type: Transform -- uid: 10905 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 54.5,3.5 - parent: 8364 - type: Transform -- uid: 10906 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 55.5,2.5 - parent: 8364 - type: Transform -- uid: 10907 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 56.5,2.5 - parent: 8364 - type: Transform -- uid: 10908 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 57.5,2.5 - parent: 8364 - type: Transform -- uid: 10909 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 58.5,2.5 - parent: 8364 - type: Transform -- uid: 10910 - type: DisposalTrunk - components: - - pos: 58.5,3.5 - parent: 8364 - type: Transform -- uid: 10911 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 54.5,2.5 - parent: 8364 - type: Transform -- uid: 10912 - type: DisposalBend - components: - - pos: 54.5,10.5 - parent: 8364 - type: Transform -- uid: 10913 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 45.5,10.5 - parent: 8364 - type: Transform -- uid: 10914 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 45.5,3.5 - parent: 8364 - type: Transform -- uid: 10915 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 66.5,-9.5 - parent: 8364 - type: Transform -- uid: 10916 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 66.5,-8.5 - parent: 8364 - type: Transform -- uid: 10917 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 66.5,-7.5 - parent: 8364 - type: Transform -- uid: 10918 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 66.5,-6.5 - parent: 8364 - type: Transform -- uid: 10919 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 66.5,-5.5 - parent: 8364 - type: Transform -- uid: 10920 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 66.5,-4.5 - parent: 8364 - type: Transform -- uid: 10921 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 66.5,-3.5 - parent: 8364 - type: Transform -- uid: 10922 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 66.5,-2.5 - parent: 8364 - type: Transform -- uid: 10923 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 66.5,-1.5 - parent: 8364 - type: Transform -- uid: 10924 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 66.5,-0.5 - parent: 8364 - type: Transform -- uid: 10925 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 65.5,0.5 - parent: 8364 - type: Transform -- uid: 10926 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 64.5,0.5 - parent: 8364 - type: Transform -- uid: 10927 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 63.5,0.5 - parent: 8364 - type: Transform -- uid: 10928 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 62.5,0.5 - parent: 8364 - type: Transform -- uid: 10929 - type: DisposalPipe - components: - - pos: 61.5,1.5 - parent: 8364 - type: Transform -- uid: 10930 - type: DisposalPipe - components: - - pos: 61.5,2.5 - parent: 8364 - type: Transform -- uid: 10931 - type: DisposalPipe - components: - - pos: 61.5,3.5 - parent: 8364 - type: Transform -- uid: 10932 - type: DisposalPipe - components: - - pos: 61.5,4.5 - parent: 8364 - type: Transform -- uid: 10933 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 60.5,5.5 - parent: 8364 - type: Transform -- uid: 10934 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 59.5,5.5 - parent: 8364 - type: Transform -- uid: 10935 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 58.5,5.5 - parent: 8364 - type: Transform -- uid: 10936 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 57.5,5.5 - parent: 8364 - type: Transform -- uid: 10937 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 56.5,5.5 - parent: 8364 - type: Transform -- uid: 10938 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 55.5,5.5 - parent: 8364 - type: Transform -- uid: 10939 - type: DisposalBend - components: - - pos: 61.5,5.5 - parent: 8364 - type: Transform -- uid: 10940 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 61.5,0.5 - parent: 8364 - type: Transform -- uid: 10941 - type: DisposalBend - components: - - pos: 66.5,0.5 - parent: 8364 - type: Transform -- uid: 10942 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 66.5,-10.5 - parent: 8364 - type: Transform -- uid: 10943 - type: ClothingHeadHatHairflower - components: - - rot: 3.141592653589793 rad - pos: 74.5,3.5000002 - parent: 8364 - type: Transform -- uid: 10944 - type: Catwalk - components: - - pos: -7.5,-59.5 - parent: 8364 - type: Transform -- uid: 10945 - type: CableMV - components: - - pos: 44.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10946 - type: CableMV - components: - - pos: 45.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10947 - type: CableMV - components: - - pos: 45.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10948 - type: CableMV - components: - - pos: 45.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10949 - type: CableMV - components: - - pos: 45.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10950 - type: CableMV - components: - - pos: 45.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10951 - type: CableMV - components: - - pos: 45.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10952 - type: CableMV - components: - - pos: 45.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10953 - type: CableMV - components: - - pos: 45.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10954 - type: CableMV - components: - - pos: 46.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10955 - type: CableMV - components: - - pos: 47.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10956 - type: CableMV - components: - - pos: 48.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10957 - type: CableMV - components: - - pos: 49.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10958 - type: CableMV - components: - - pos: 50.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10959 - type: CableMV - components: - - pos: 51.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10960 - type: CableMV - components: - - pos: 52.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10961 - type: CableMV - components: - - pos: 53.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10962 - type: CableMV - components: - - pos: 54.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10963 - type: CableMV - components: - - pos: 54.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10964 - type: CableMV - components: - - pos: 54.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10965 - type: CableMV - components: - - pos: 54.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10966 - type: CableMV - components: - - pos: 54.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10967 - type: CableMV - components: - - pos: 54.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10968 - type: CableMV - components: - - pos: 54.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10969 - type: CableMV - components: - - pos: 54.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10970 - type: CableMV - components: - - pos: 54.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10971 - type: CableMV - components: - - pos: 54.5,2.5 - parent: 8364 - type: Transform -- uid: 10972 - type: CableMV - components: - - pos: 54.5,1.5 - parent: 8364 - type: Transform -- uid: 10973 - type: CableMV - components: - - pos: 54.5,0.5 - parent: 8364 - type: Transform -- uid: 10974 - type: CableMV - components: - - pos: 54.5,-0.5 - parent: 8364 - type: Transform -- uid: 10975 - type: CableMV - components: - - pos: 54.5,-1.5 - parent: 8364 - type: Transform -- uid: 10976 - type: CableMV - components: - - pos: 54.5,-2.5 - parent: 8364 - type: Transform -- uid: 10977 - type: CableMV - components: - - pos: 54.5,-3.5 - parent: 8364 - type: Transform -- uid: 10978 - type: CableMV - components: - - pos: 55.5,-3.5 - parent: 8364 - type: Transform -- uid: 10979 - type: CableMV - components: - - pos: 56.5,-3.5 - parent: 8364 - type: Transform -- uid: 10980 - type: CableMV - components: - - pos: 57.5,-3.5 - parent: 8364 - type: Transform -- uid: 10981 - type: CableMV - components: - - pos: 58.5,-3.5 - parent: 8364 - type: Transform -- uid: 10982 - type: CableMV - components: - - pos: 59.5,-3.5 - parent: 8364 - type: Transform -- uid: 10983 - type: CableMV - components: - - pos: 60.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10984 - type: CableMV - components: - - pos: 55.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10985 - type: CableMV - components: - - pos: 56.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10986 - type: CableMV - components: - - pos: 57.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10987 - type: CableMV - components: - - pos: 58.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10988 - type: CableMV - components: - - pos: 59.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10989 - type: CableMV - components: - - pos: 60.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10990 - type: CableMV - components: - - pos: 61.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10991 - type: CableMV - components: - - pos: 61.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10992 - type: CableMV - components: - - pos: 61.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10993 - type: CableMV - components: - - pos: 61.5,2.5 - parent: 8364 - type: Transform -- uid: 10994 - type: CableMV - components: - - pos: 61.5,1.5 - parent: 8364 - type: Transform -- uid: 10995 - type: CableMV - components: - - pos: 62.5,1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10996 - type: Catwalk - components: - - pos: -8.5,-59.5 - parent: 8364 - type: Transform -- uid: 10997 - type: Catwalk - components: - - pos: -9.5,-59.5 - parent: 8364 - type: Transform -- uid: 10998 - type: Catwalk - components: - - pos: -10.5,-59.5 - parent: 8364 - type: Transform -- uid: 10999 - type: Catwalk - components: - - pos: -11.5,-59.5 - parent: 8364 - type: Transform -- uid: 11000 - type: Catwalk - components: - - pos: -12.5,-59.5 - parent: 8364 - type: Transform -- uid: 11001 - type: FirelockGlass - components: - - pos: 8.5,-38.5 - parent: 8364 - type: Transform -- uid: 11002 - type: Catwalk - components: - - pos: -14.5,-59.5 - parent: 8364 - type: Transform -- uid: 11003 - type: Catwalk - components: - - pos: -21.5,-33.5 - parent: 8364 - type: Transform -- uid: 11004 - type: Catwalk - components: - - pos: -20.5,-33.5 - parent: 8364 - type: Transform -- uid: 11005 - type: Catwalk - components: - - pos: -19.5,-33.5 - parent: 8364 - type: Transform -- uid: 11006 - type: CableMV - components: - - pos: 62.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11007 - type: CableMV - components: - - pos: 63.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11008 - type: CableMV - components: - - pos: 64.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11009 - type: CableMV - components: - - pos: 65.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11010 - type: CableMV - components: - - pos: 66.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11011 - type: CableMV - components: - - pos: 67.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11012 - type: CableMV - components: - - pos: 68.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11013 - type: CableMV - components: - - pos: 69.5,5.5 - parent: 8364 - type: Transform -- uid: 11014 - type: CableMV - components: - - pos: 70.5,5.5 - parent: 8364 - type: Transform -- uid: 11015 - type: CableMV - components: - - pos: 71.5,5.5 - parent: 8364 - type: Transform -- uid: 11016 - type: CableMV - components: - - pos: 72.5,5.5 - parent: 8364 - type: Transform -- uid: 11017 - type: CableMV - components: - - pos: 72.5,4.5 - parent: 8364 - type: Transform -- uid: 11018 - type: CableMV - components: - - pos: 72.5,3.5 - parent: 8364 - type: Transform -- uid: 11019 - type: CableMV - components: - - pos: 72.5,2.5 - parent: 8364 - type: Transform -- uid: 11020 - type: CableMV - components: - - pos: 72.5,1.5 - parent: 8364 - type: Transform -- uid: 11021 - type: CableMV - components: - - pos: 72.5,0.5 - parent: 8364 - type: Transform -- uid: 11022 - type: CableMV - components: - - pos: 72.5,-0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11023 - type: CableMV - components: - - pos: 72.5,-1.5 - parent: 8364 - type: Transform -- uid: 11024 - type: CableMV - components: - - pos: 72.5,-2.5 - parent: 8364 - type: Transform -- uid: 11025 - type: CableMV - components: - - pos: 72.5,-3.5 - parent: 8364 - type: Transform -- uid: 11026 - type: CableMV - components: - - pos: 72.5,-4.5 - parent: 8364 - type: Transform -- uid: 11027 - type: CableMV - components: - - pos: 73.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11028 - type: Catwalk - components: - - pos: -18.5,-33.5 - parent: 8364 - type: Transform -- uid: 11029 - type: Catwalk - components: - - pos: -18.5,-35.5 - parent: 8364 - type: Transform -- uid: 11030 - type: Catwalk - components: - - pos: -17.5,-33.5 - parent: 8364 - type: Transform -- uid: 11031 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 34.5,-38.5 - parent: 8364 - type: Transform -- uid: 11032 - type: Catwalk - components: - - pos: -17.5,-35.5 - parent: 8364 - type: Transform -- uid: 11033 - type: Catwalk - components: - - pos: -17.5,-36.5 - parent: 8364 - type: Transform -- uid: 11034 - type: Catwalk - components: - - pos: -17.5,-37.5 - parent: 8364 - type: Transform -- uid: 11035 - type: Poweredlight - components: - - pos: 71.5,6.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11036 - type: Grille - components: - - pos: 67.5,1.5 - parent: 8364 - type: Transform -- uid: 11037 - type: Poweredlight - components: - - pos: 64.5,3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11038 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,0.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11039 - type: Poweredlight - components: - - pos: 71.5,-1.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11040 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-4.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11041 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-7.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11042 - type: Poweredlight - components: - - pos: 57.5,3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11043 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11044 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-4.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11045 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-7.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11046 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 62.5,-10.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11047 - type: Poweredlight - components: - - pos: 63.5,-5.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11048 - type: PoweredSmallLight - components: - - pos: 62.5,-2.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11049 - type: CableApcExtension - components: - - pos: 60.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11050 - type: CableApcExtension - components: - - pos: 59.5,-3.5 - parent: 8364 - type: Transform -- uid: 11051 - type: CableApcExtension - components: - - pos: 58.5,-3.5 - parent: 8364 - type: Transform -- uid: 11052 - type: CableApcExtension - components: - - pos: 57.5,-3.5 - parent: 8364 - type: Transform -- uid: 11053 - type: CableApcExtension - components: - - pos: 57.5,-2.5 - parent: 8364 - type: Transform -- uid: 11054 - type: CableApcExtension - components: - - pos: 57.5,-1.5 - parent: 8364 - type: Transform -- uid: 11055 - type: CableApcExtension - components: - - pos: 57.5,-0.5 - parent: 8364 - type: Transform -- uid: 11056 - type: CableApcExtension - components: - - pos: 57.5,0.5 - parent: 8364 - type: Transform -- uid: 11057 - type: CableApcExtension - components: - - pos: 57.5,1.5 - parent: 8364 - type: Transform -- uid: 11058 - type: CableApcExtension - components: - - pos: 57.5,2.5 - parent: 8364 - type: Transform -- uid: 11059 - type: CableApcExtension - components: - - pos: 56.5,-3.5 - parent: 8364 - type: Transform -- uid: 11060 - type: CableApcExtension - components: - - pos: 55.5,-3.5 - parent: 8364 - type: Transform -- uid: 11061 - type: CableApcExtension - components: - - pos: 54.5,-3.5 - parent: 8364 - type: Transform -- uid: 11062 - type: CableApcExtension - components: - - pos: 56.5,-4.5 - parent: 8364 - type: Transform -- uid: 11063 - type: CableApcExtension - components: - - pos: 56.5,-5.5 - parent: 8364 - type: Transform -- uid: 11064 - type: CableApcExtension - components: - - pos: 56.5,-6.5 - parent: 8364 - type: Transform -- uid: 11065 - type: CableApcExtension - components: - - pos: 56.5,-7.5 - parent: 8364 - type: Transform -- uid: 11066 - type: CableApcExtension - components: - - pos: 56.5,-8.5 - parent: 8364 - type: Transform -- uid: 11067 - type: CableApcExtension - components: - - pos: 56.5,-9.5 - parent: 8364 - type: Transform -- uid: 11068 - type: CableApcExtension - components: - - pos: 57.5,-9.5 - parent: 8364 - type: Transform -- uid: 11069 - type: CableApcExtension - components: - - pos: 58.5,-9.5 - parent: 8364 - type: Transform -- uid: 11070 - type: CableApcExtension - components: - - pos: 59.5,-9.5 - parent: 8364 - type: Transform -- uid: 11071 - type: CableApcExtension - components: - - pos: 60.5,-9.5 - parent: 8364 - type: Transform -- uid: 11072 - type: CableApcExtension - components: - - pos: 61.5,-9.5 - parent: 8364 - type: Transform -- uid: 11073 - type: CableApcExtension - components: - - pos: 62.5,-9.5 - parent: 8364 - type: Transform -- uid: 11074 - type: CableApcExtension - components: - - pos: 61.5,-10.5 - parent: 8364 - type: Transform -- uid: 11075 - type: CableApcExtension - components: - - pos: 61.5,-11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11076 - type: CableApcExtension - components: - - pos: 59.5,-10.5 - parent: 8364 - type: Transform -- uid: 11077 - type: CableApcExtension - components: - - pos: 59.5,-11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11078 - type: CableApcExtension - components: - - pos: 57.5,-10.5 - parent: 8364 - type: Transform -- uid: 11079 - type: CableApcExtension - components: - - pos: 57.5,-11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11080 - type: CableApcExtension - components: - - pos: 62.5,-8.5 - parent: 8364 - type: Transform -- uid: 11081 - type: CableApcExtension - components: - - pos: 62.5,-7.5 - parent: 8364 - type: Transform -- uid: 11082 - type: CableApcExtension - components: - - pos: 62.5,-6.5 - parent: 8364 - type: Transform -- uid: 11083 - type: CableApcExtension - components: - - pos: 62.5,-5.5 - parent: 8364 - type: Transform -- uid: 11084 - type: CableApcExtension - components: - - pos: 62.5,-4.5 - parent: 8364 - type: Transform -- uid: 11085 - type: CableApcExtension - components: - - pos: 73.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11086 - type: CableApcExtension - components: - - pos: 72.5,-4.5 - parent: 8364 - type: Transform -- uid: 11087 - type: CableApcExtension - components: - - pos: 72.5,-5.5 - parent: 8364 - type: Transform -- uid: 11088 - type: CableApcExtension - components: - - pos: 72.5,-6.5 - parent: 8364 - type: Transform -- uid: 11089 - type: CableApcExtension - components: - - pos: 72.5,-7.5 - parent: 8364 - type: Transform -- uid: 11090 - type: CableApcExtension - components: - - pos: 72.5,-8.5 - parent: 8364 - type: Transform -- uid: 11091 - type: CableApcExtension - components: - - pos: 72.5,-9.5 - parent: 8364 - type: Transform -- uid: 11092 - type: CableApcExtension - components: - - pos: 71.5,-9.5 - parent: 8364 - type: Transform -- uid: 11093 - type: CableApcExtension - components: - - pos: 70.5,-9.5 - parent: 8364 - type: Transform -- uid: 11094 - type: CableApcExtension - components: - - pos: 69.5,-9.5 - parent: 8364 - type: Transform -- uid: 11095 - type: CableApcExtension - components: - - pos: 68.5,-9.5 - parent: 8364 - type: Transform -- uid: 11096 - type: CableApcExtension - components: - - pos: 67.5,-9.5 - parent: 8364 - type: Transform -- uid: 11097 - type: CableApcExtension - components: - - pos: 66.5,-9.5 - parent: 8364 - type: Transform -- uid: 11098 - type: CableApcExtension - components: - - pos: 66.5,-8.5 - parent: 8364 - type: Transform -- uid: 11099 - type: CableApcExtension - components: - - pos: 66.5,-7.5 - parent: 8364 - type: Transform -- uid: 11100 - type: CableApcExtension - components: - - pos: 66.5,-6.5 - parent: 8364 - type: Transform -- uid: 11101 - type: CableApcExtension - components: - - pos: 66.5,-5.5 - parent: 8364 - type: Transform -- uid: 11102 - type: CableApcExtension - components: - - pos: 66.5,-4.5 - parent: 8364 - type: Transform -- uid: 11103 - type: CableApcExtension - components: - - pos: 66.5,-3.5 - parent: 8364 - type: Transform -- uid: 11104 - type: CableApcExtension - components: - - pos: 67.5,-3.5 - parent: 8364 - type: Transform -- uid: 11105 - type: CableApcExtension - components: - - pos: 68.5,-3.5 - parent: 8364 - type: Transform -- uid: 11106 - type: CableApcExtension - components: - - pos: 69.5,-3.5 - parent: 8364 - type: Transform -- uid: 11107 - type: CableApcExtension - components: - - pos: 70.5,-3.5 - parent: 8364 - type: Transform -- uid: 11108 - type: CableApcExtension - components: - - pos: 70.5,-2.5 - parent: 8364 - type: Transform -- uid: 11109 - type: CableApcExtension - components: - - pos: 70.5,-1.5 - parent: 8364 - type: Transform -- uid: 11110 - type: CableApcExtension - components: - - pos: 70.5,-0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11111 - type: CableApcExtension - components: - - pos: 70.5,0.5 - parent: 8364 - type: Transform -- uid: 11112 - type: CableApcExtension - components: - - pos: 70.5,1.5 - parent: 8364 - type: Transform -- uid: 11113 - type: CableApcExtension - components: - - pos: 70.5,2.5 - parent: 8364 - type: Transform -- uid: 11114 - type: CableApcExtension - components: - - pos: 70.5,3.5 - parent: 8364 - type: Transform -- uid: 11115 - type: CableApcExtension - components: - - pos: 70.5,4.5 - parent: 8364 - type: Transform -- uid: 11116 - type: CableApcExtension - components: - - pos: 70.5,5.5 - parent: 8364 - type: Transform -- uid: 11117 - type: CableApcExtension - components: - - pos: 71.5,5.5 - parent: 8364 - type: Transform -- uid: 11118 - type: CableApcExtension - components: - - pos: 72.5,5.5 - parent: 8364 - type: Transform -- uid: 11119 - type: CableApcExtension - components: - - pos: 73.5,5.5 - parent: 8364 - type: Transform -- uid: 11120 - type: CableApcExtension - components: - - pos: 71.5,3.5 - parent: 8364 - type: Transform -- uid: 11121 - type: CableApcExtension - components: - - pos: 72.5,3.5 - parent: 8364 - type: Transform -- uid: 11122 - type: CableApcExtension - components: - - pos: 73.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11123 - type: CableApcExtension - components: - - pos: 74.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11124 - type: CableApcExtension - components: - - pos: 75.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11125 - type: CableApcExtension - components: - - pos: 75.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11126 - type: CableApcExtension - components: - - pos: 75.5,1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11127 - type: CableApcExtension - components: - - pos: 75.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11128 - type: CableApcExtension - components: - - pos: 62.5,1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11129 - type: CableApcExtension - components: - - pos: 61.5,1.5 - parent: 8364 - type: Transform -- uid: 11130 - type: CableApcExtension - components: - - pos: 63.5,1.5 - parent: 8364 - type: Transform -- uid: 11131 - type: CableApcExtension - components: - - pos: 64.5,1.5 - parent: 8364 - type: Transform -- uid: 11132 - type: CableApcExtension - components: - - pos: 65.5,1.5 - parent: 8364 - type: Transform -- uid: 11133 - type: CableApcExtension - components: - - pos: 65.5,2.5 - parent: 8364 - type: Transform -- uid: 11134 - type: CableApcExtension - components: - - pos: 65.5,0.5 - parent: 8364 - type: Transform -- uid: 11135 - type: CableApcExtension - components: - - pos: 71.5,-2.5 - parent: 8364 - type: Transform -- uid: 11136 - type: CableApcExtension - components: - - pos: 72.5,-2.5 - parent: 8364 - type: Transform -- uid: 11137 - type: CableApcExtension - components: - - pos: 73.5,-2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11138 - type: CableApcExtension - components: - - pos: 74.5,-2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11139 - type: CableApcExtension - components: - - pos: 73.5,-7.5 - parent: 8364 - type: Transform -- uid: 11140 - type: CableApcExtension - components: - - pos: 74.5,-7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11141 - type: Catwalk - components: - - pos: -17.5,-38.5 - parent: 8364 - type: Transform -- uid: 11142 - type: Catwalk - components: - - pos: -17.5,-39.5 - parent: 8364 - type: Transform -- uid: 11143 - type: SpawnPointChaplain - components: - - pos: 64.5,2.5 - parent: 8364 - type: Transform -- uid: 11144 - type: Catwalk - components: - - pos: -17.5,-40.5 - parent: 8364 - type: Transform -- uid: 11145 - type: Catwalk - components: - - pos: -17.5,-41.5 - parent: 8364 - type: Transform -- uid: 11146 - type: Pen - components: - - pos: 64.5,1.5 - parent: 8364 - type: Transform -- uid: 11147 - type: VendingMachineChapel - components: - - flags: SessionSpecific - type: MetaData - - pos: 63.5,3.5 - parent: 8364 - type: Transform - - sprite: Structures/Machines/VendingMachines/chapel.rsi - type: Sprite -- uid: 11148 - type: CrayonBox - components: - - pos: 65.5,2.5 - parent: 8364 - type: Transform -- uid: 11149 - type: RandomSpawner - components: - - pos: 54.5,-1.5 - parent: 8364 - type: Transform -- uid: 11150 - type: RandomSpawner - components: - - pos: 58.5,1.5 - parent: 8364 - type: Transform -- uid: 11151 - type: RandomSpawner - components: - - pos: 66.5,-6.5 - parent: 8364 - type: Transform -- uid: 11152 - type: ReinforcedWindow - components: - - pos: 67.5,3.5 - parent: 8364 - type: Transform -- uid: 11153 - type: Catwalk - components: - - pos: -17.5,-42.5 - parent: 8364 - type: Transform -- uid: 11154 - type: AirlockMaintLocked - components: - - pos: 51.5,-7.5 - parent: 8364 - type: Transform -- uid: 11155 - type: Rack - components: - - pos: 66.5,6.5 - parent: 8364 - type: Transform -- uid: 11156 - type: WaterTankFull - components: - - pos: 67.5,6.5 - parent: 8364 - type: Transform -- uid: 11157 - type: WeldingFuelTankFull - components: - - pos: 65.5,6.5 - parent: 8364 - type: Transform -- uid: 11158 - type: Stool - components: - - pos: 64.5,7.5 - parent: 8364 - type: Transform -- uid: 11159 - type: Stool - components: - - pos: 64.5,6.5 - parent: 8364 - type: Transform -- uid: 11160 - type: SolarPanel - components: - - pos: 41.5,34.5 - parent: 8364 - type: Transform -- uid: 11161 - type: GrilleBroken - components: - - pos: 61.5,8.5 - parent: 8364 - type: Transform -- uid: 11162 - type: SolarPanel - components: - - pos: 43.5,34.5 - parent: 8364 - type: Transform -- uid: 11163 - type: FirelockGlass - components: - - pos: -17.5,-43.5 - parent: 8364 - type: Transform -- uid: 11164 - type: SolarPanel - components: - - pos: 45.5,34.5 - parent: 8364 - type: Transform -- uid: 11165 - type: SolarPanel - components: - - pos: 41.5,32.5 - parent: 8364 - type: Transform -- uid: 11166 - type: Catwalk - components: - - pos: -17.5,-44.5 - parent: 8364 - type: Transform -- uid: 11167 - type: SolarPanel - components: - - pos: 43.5,32.5 - parent: 8364 - type: Transform -- uid: 11168 - type: SolarPanel - components: - - pos: 44.5,32.5 - parent: 8364 - type: Transform -- uid: 11169 - type: SolarPanel - components: - - pos: 45.5,32.5 - parent: 8364 - type: Transform -- uid: 11170 - type: Catwalk - components: - - pos: -17.5,-45.5 - parent: 8364 - type: Transform -- uid: 11171 - type: SolarPanel - components: - - pos: 50.5,34.5 - parent: 8364 - type: Transform -- uid: 11172 - type: SolarPanel - components: - - pos: 51.5,34.5 - parent: 8364 - type: Transform -- uid: 11173 - type: SolarPanel - components: - - pos: 52.5,34.5 - parent: 8364 - type: Transform -- uid: 11174 - type: SolarPanel - components: - - pos: 53.5,34.5 - parent: 8364 - type: Transform -- uid: 11175 - type: SolarPanel - components: - - pos: 53.5,36.5 - parent: 8364 - type: Transform -- uid: 11176 - type: SolarPanel - components: - - pos: 53.5,32.5 - parent: 8364 - type: Transform -- uid: 11177 - type: SolarPanel - components: - - pos: 52.5,32.5 - parent: 8364 - type: Transform -- uid: 11178 - type: SolarPanel - components: - - pos: 51.5,32.5 - parent: 8364 - type: Transform -- uid: 11179 - type: Catwalk - components: - - pos: -17.5,-46.5 - parent: 8364 - type: Transform -- uid: 11180 - type: SolarPanel - components: - - pos: 49.5,32.5 - parent: 8364 - type: Transform -- uid: 11181 - type: Catwalk - components: - - pos: -18.5,-48.5 - parent: 8364 - type: Transform -- uid: 11182 - type: SolarPanel - components: - - pos: 51.5,36.5 - parent: 8364 - type: Transform -- uid: 11183 - type: SolarPanel - components: - - pos: 50.5,36.5 - parent: 8364 - type: Transform -- uid: 11184 - type: SolarPanel - components: - - pos: 49.5,36.5 - parent: 8364 - type: Transform -- uid: 11185 - type: SolarPanel - components: - - pos: 53.5,38.5 - parent: 8364 - type: Transform -- uid: 11186 - type: SolarPanel - components: - - pos: 52.5,38.5 - parent: 8364 - type: Transform -- uid: 11187 - type: SolarPanel - components: - - pos: 51.5,38.5 - parent: 8364 - type: Transform -- uid: 11188 - type: SolarPanel - components: - - pos: 50.5,38.5 - parent: 8364 - type: Transform -- uid: 11189 - type: SolarPanel - components: - - pos: 49.5,38.5 - parent: 8364 - type: Transform -- uid: 11190 - type: SolarPanel - components: - - pos: 45.5,38.5 - parent: 8364 - type: Transform -- uid: 11191 - type: Catwalk - components: - - pos: -18.5,-49.5 - parent: 8364 - type: Transform -- uid: 11192 - type: SolarPanel - components: - - pos: 43.5,38.5 - parent: 8364 - type: Transform -- uid: 11193 - type: SolarPanel - components: - - pos: 42.5,38.5 - parent: 8364 - type: Transform -- uid: 11194 - type: SolarPanel - components: - - pos: 41.5,38.5 - parent: 8364 - type: Transform -- uid: 11195 - type: SolarPanel - components: - - pos: 41.5,36.5 - parent: 8364 - type: Transform -- uid: 11196 - type: SolarPanel - components: - - pos: 42.5,36.5 - parent: 8364 - type: Transform -- uid: 11197 - type: SolarPanel - components: - - pos: 43.5,36.5 - parent: 8364 - type: Transform -- uid: 11198 - type: SolarPanel - components: - - pos: 44.5,36.5 - parent: 8364 - type: Transform -- uid: 11199 - type: SolarPanel - components: - - pos: 45.5,36.5 - parent: 8364 - type: Transform -- uid: 11200 - type: SolarTracker - components: - - pos: 47.5,41.5 - parent: 8364 - type: Transform -- uid: 11201 - type: CableHV - components: - - pos: 41.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11202 - type: CableHV - components: - - pos: 42.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11203 - type: CableHV - components: - - pos: 43.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11204 - type: CableHV - components: - - pos: 44.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11205 - type: CableHV - components: - - pos: 45.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11206 - type: CableHV - components: - - pos: 41.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11207 - type: CableHV - components: - - pos: 42.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11208 - type: CableHV - components: - - pos: 43.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11209 - type: CableHV - components: - - pos: 44.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11210 - type: CableHV - components: - - pos: 45.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11211 - type: CableHV - components: - - pos: 41.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11212 - type: CableHV - components: - - pos: 42.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11213 - type: CableHV - components: - - pos: 43.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11214 - type: CableHV - components: - - pos: 44.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11215 - type: CableHV - components: - - pos: 45.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11216 - type: CableHV - components: - - pos: 41.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11217 - type: CableHV - components: - - pos: 42.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11218 - type: CableHV - components: - - pos: 43.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11219 - type: CableHV - components: - - pos: 44.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11220 - type: CableHV - components: - - pos: 45.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11221 - type: CableHV - components: - - pos: 49.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11222 - type: CableHV - components: - - pos: 50.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11223 - type: CableHV - components: - - pos: 51.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11224 - type: CableHV - components: - - pos: 52.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11225 - type: CableHV - components: - - pos: 53.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11226 - type: CableHV - components: - - pos: 49.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11227 - type: CableHV - components: - - pos: 50.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11228 - type: CableHV - components: - - pos: 51.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11229 - type: CableHV - components: - - pos: 52.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11230 - type: CableHV - components: - - pos: 53.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11231 - type: CableHV - components: - - pos: 49.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11232 - type: CableHV - components: - - pos: 50.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11233 - type: CableHV - components: - - pos: 51.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11234 - type: CableHV - components: - - pos: 52.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11235 - type: CableHV - components: - - pos: 53.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11236 - type: CableHV - components: - - pos: 49.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11237 - type: CableHV - components: - - pos: 50.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11238 - type: CableHV - components: - - pos: 51.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11239 - type: CableHV - components: - - pos: 52.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11240 - type: CableHV - components: - - pos: 53.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11241 - type: Catwalk - components: - - pos: -18.5,-50.5 - parent: 8364 - type: Transform -- uid: 11242 - type: CableHV - components: - - pos: 47.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11243 - type: CableHV - components: - - pos: 45.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11244 - type: CableHV - components: - - pos: 44.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11245 - type: CableHV - components: - - pos: 43.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11246 - type: CableHV - components: - - pos: 42.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11247 - type: CableHV - components: - - pos: 41.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11248 - type: CableHV - components: - - pos: 41.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11249 - type: CableHV - components: - - pos: 42.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11250 - type: CableHV - components: - - pos: 43.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11251 - type: CableHV - components: - - pos: 44.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11252 - type: CableHV - components: - - pos: 45.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11253 - type: Catwalk - components: - - pos: -18.5,-51.5 - parent: 8364 - type: Transform -- uid: 11254 - type: CableHV - components: - - pos: 49.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11255 - type: CableHV - components: - - pos: 50.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11256 - type: CableHV - components: - - pos: 51.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11257 - type: CableHV - components: - - pos: 52.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11258 - type: CableHV - components: - - pos: 53.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11259 - type: CableHV - components: - - pos: 53.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11260 - type: CableHV - components: - - pos: 52.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11261 - type: CableHV - components: - - pos: 51.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11262 - type: CableHV - components: - - pos: 50.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11263 - type: CableHV - components: - - pos: 49.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11264 - type: CableHV - components: - - pos: 49.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11265 - type: CableApcExtension - components: - - pos: 45.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11266 - type: Catwalk - components: - - pos: -18.5,-52.5 - parent: 8364 - type: Transform -- uid: 11267 - type: Catwalk - components: - - pos: -18.5,-53.5 - parent: 8364 - type: Transform -- uid: 11268 - type: SMESBasic - components: - - pos: 46.5,20.5 - parent: 8364 - type: Transform -- uid: 11269 - type: Catwalk - components: - - pos: -18.5,-54.5 - parent: 8364 - type: Transform -- uid: 11270 - type: CableHV - components: - - pos: 46.5,33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11271 - type: ComputerSolarControl - components: - - rot: -1.5707963267948966 rad - pos: 48.5,19.5 - parent: 8364 - type: Transform -- uid: 11272 - type: CableHV - components: - - pos: 48.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11273 - type: PoweredlightExterior - components: - - rot: 3.141592653589793 rad - pos: 46.5,24.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11274 - type: Catwalk - components: - - pos: -18.5,-55.5 - parent: 8364 - type: Transform -- uid: 11275 - type: CableApcExtension - components: - - pos: 46.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11276 - type: Catwalk - components: - - pos: -18.5,-56.5 - parent: 8364 - type: Transform -- uid: 11277 - type: Catwalk - components: - - pos: -18.5,-57.5 - parent: 8364 - type: Transform -- uid: 11278 - type: Catwalk - components: - - pos: -18.5,-58.5 - parent: 8364 - type: Transform -- uid: 11279 - type: Catwalk - components: - - pos: -18.5,-59.5 - parent: 8364 - type: Transform -- uid: 11280 - type: Catwalk - components: - - pos: -32.5,-61.5 - parent: 8364 - type: Transform -- uid: 11281 - type: Catwalk - components: - - pos: -33.5,-61.5 - parent: 8364 - type: Transform -- uid: 11282 - type: Catwalk - components: - - pos: -34.5,-61.5 - parent: 8364 - type: Transform -- uid: 11283 - type: Catwalk - components: - - pos: -31.5,-60.5 - parent: 8364 - type: Transform -- uid: 11284 - type: Catwalk - components: - - pos: -31.5,-61.5 - parent: 8364 - type: Transform -- uid: 11285 - type: CableHV - components: - - pos: 47.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11286 - type: CableHV - components: - - pos: 47.5,27.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11287 - type: CableHV - components: - - pos: 47.5,26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11288 - type: CableHV - components: - - pos: 47.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11289 - type: CableHV - components: - - pos: 47.5,24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11290 - type: CableHV - components: - - pos: 47.5,23.5 - parent: 8364 - type: Transform -- uid: 11291 - type: CableHV - components: - - pos: 47.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11292 - type: CableHV - components: - - pos: 47.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11293 - type: Catwalk - components: - - pos: -31.5,-62.5 - parent: 8364 - type: Transform -- uid: 11294 - type: Catwalk - components: - - pos: -31.5,-63.5 - parent: 8364 - type: Transform -- uid: 11295 - type: CableHV - components: - - pos: 47.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11296 - type: CableHV - components: - - pos: 47.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11297 - type: CableHV - components: - - pos: 47.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11298 - type: CableHV - components: - - pos: 49.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11299 - type: CableHV - components: - - pos: 50.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11300 - type: CableHV - components: - - pos: 51.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11301 - type: CableHV - components: - - pos: 52.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11302 - type: CableHV - components: - - pos: 53.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11303 - type: CableHV - components: - - pos: 54.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11304 - type: CableHV - components: - - pos: 55.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11305 - type: CableHV - components: - - pos: 56.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11306 - type: CableHV - components: - - pos: 57.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11307 - type: CableHV - components: - - pos: 58.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11308 - type: CableHV - components: - - pos: 59.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11309 - type: CableHV - components: - - pos: 59.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11310 - type: CableHV - components: - - pos: 59.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11311 - type: CableHV - components: - - pos: 59.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11312 - type: CableHV - components: - - pos: 58.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11313 - type: CableHV - components: - - pos: 57.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11314 - type: CableHV - components: - - pos: 56.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11315 - type: CableHV - components: - - pos: 55.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11316 - type: VendingMachineRoboDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 63.5,-24.5 - parent: 8364 - type: Transform -- uid: 11317 - type: SignRobo - components: - - pos: 64.5,-25.5 - parent: 8364 - type: Transform -- uid: 11318 - type: SignRND - components: - - pos: 68.5,-16.5 - parent: 8364 - type: Transform -- uid: 11319 - type: SignScience1 - components: - - pos: 72.5,-15.5 - parent: 8364 - type: Transform -- uid: 11320 - type: WallSolid - components: - - pos: 9.5,-22.5 - parent: 8364 - type: Transform -- uid: 11321 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-27.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 20027 - Forward: - - port: Left - uid: 20027 - Off: - - port: Middle - uid: 20027 - type: SignalReceiver -- uid: 11322 - type: TwoWayLever - components: - - pos: -40.5,-30.5 - parent: 8364 - type: Transform - - outputs: - Left: - - port: Forward - uid: 7213 - - port: Forward - uid: 7162 - - port: Forward - uid: 9935 - - port: Forward - uid: 7307 - - port: Forward - uid: 10535 - - port: Forward - uid: 10536 - - port: Forward - uid: 11325 - - port: Forward - uid: 10804 - Right: - - port: Reverse - uid: 7213 - - port: Reverse - uid: 7162 - - port: Reverse - uid: 9935 - - port: Reverse - uid: 7307 - - port: Reverse - uid: 10535 - - port: Reverse - uid: 10536 - - port: Reverse - uid: 11325 - - port: Reverse - uid: 10804 - Middle: - - port: Off - uid: 7213 - - port: Off - uid: 7162 - - port: Off - uid: 9935 - - port: Off - uid: 7307 - - port: Off - uid: 10535 - - port: Off - uid: 10536 - - port: Off - uid: 11325 - - port: Off - uid: 10804 - type: SignalTransmitter -- uid: 11323 - type: CarpetOrange - components: - - pos: 64.5,1.5 - parent: 8364 - type: Transform -- uid: 11324 - type: CarpetOrange - components: - - pos: 64.5,2.5 - parent: 8364 - type: Transform -- uid: 11325 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-31.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11322 - Forward: - - port: Left - uid: 11322 - Off: - - port: Middle - uid: 11322 - type: SignalReceiver -- uid: 11326 - type: CableHV - components: - - pos: 48.5,37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11327 - type: CableHV - components: - - pos: 46.5,37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11328 - type: CableHV - components: - - pos: 49.5,37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11329 - type: CableHV - components: - - pos: 45.5,33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11330 - type: CableHV - components: - - pos: 48.5,33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11331 - type: CableHV - components: - - pos: 45.5,37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11332 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 74.5,-10.5 - parent: 8364 - type: Transform -- uid: 11333 - type: WallReinforced - components: - - pos: 85.5,-4.5 - parent: 8364 - type: Transform -- uid: 11334 - type: WallReinforced - components: - - pos: 85.5,-12.5 - parent: 8364 - type: Transform -- uid: 11335 - type: AirlockGlassShuttle - components: - - rot: 1.5707963267948966 rad - pos: 85.5,-13.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 11336 - type: AirlockGlassShuttle - components: - - rot: 1.5707963267948966 rad - pos: 85.5,-11.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 11337 - type: CableApcExtension - components: - - pos: 66.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11338 - type: CarpetChapel - components: - - pos: 69.5,16.5 - parent: 8364 - type: Transform -- uid: 11339 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 69.5,19.5 - parent: 8364 - type: Transform -- uid: 11340 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 69.5,17.5 - parent: 8364 - type: Transform -- uid: 11341 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 70.5,19.5 - parent: 8364 - type: Transform -- uid: 11342 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 70.5,17.5 - parent: 8364 - type: Transform -- uid: 11343 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 70.5,18.5 - parent: 8364 - type: Transform -- uid: 11344 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 70.5,16.5 - parent: 8364 - type: Transform -- uid: 11345 - type: CableMV - components: - - pos: 55.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11346 - type: CableMV - components: - - pos: 56.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11347 - type: CableMV - components: - - pos: 57.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11348 - type: CableMV - components: - - pos: 58.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11349 - type: CableMV - components: - - pos: 59.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11350 - type: CableMV - components: - - pos: 59.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11351 - type: CableMV - components: - - pos: 59.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11352 - type: CableMV - components: - - pos: 59.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11353 - type: CableMV - components: - - pos: 60.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11354 - type: CableMV - components: - - pos: 60.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11355 - type: CableMV - components: - - pos: 61.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11356 - type: CableMV - components: - - pos: 62.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11357 - type: CableMV - components: - - pos: 63.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11358 - type: CableMV - components: - - pos: 64.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11359 - type: CableMV - components: - - pos: 65.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11360 - type: CableMV - components: - - pos: 65.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11361 - type: CableMVStack1 - components: - - pos: 65.5,19.5 - parent: 8364 - type: Transform -- uid: 11362 - type: CableMVStack1 - components: - - pos: 65.5,17.5 - parent: 8364 - type: Transform -- uid: 11363 - type: RandomSoap - components: - - pos: -36.5,21.5 - parent: 8364 - type: Transform -- uid: 11364 - type: CableMV - components: - - pos: 65.5,18.5 - parent: 8364 - type: Transform -- uid: 11365 - type: CableMV - components: - - pos: 65.5,20.5 - parent: 8364 - type: Transform -- uid: 11366 - type: CableMV - components: - - pos: 66.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11367 - type: APCBasic - components: - - name: Ghetto Morgue APC - type: MetaData - - pos: 66.5,20.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 5 - supplyRampPosition: 2.4463015 - type: PowerNetworkBattery -- uid: 11368 - type: AirlockExternalGlass - components: - - pos: 83.5,-13.5 - parent: 8364 - type: Transform -- uid: 11369 - type: AirlockExternalGlass - components: - - pos: 83.5,-11.5 - parent: 8364 - type: Transform -- uid: 11370 - type: AirlockExternalGlass - components: - - pos: 83.5,-5.5 - parent: 8364 - type: Transform -- uid: 11371 - type: AirlockExternalGlass - components: - - pos: 83.5,-3.5 - parent: 8364 - type: Transform -- uid: 11372 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -6.5,5.5 - parent: 8364 - type: Transform -- uid: 11373 - type: CarpetGreen - components: - - pos: 7.5,-18.5 - parent: 8364 - type: Transform -- uid: 11374 - type: CarpetGreen - components: - - pos: 8.5,-18.5 - parent: 8364 - type: Transform -- uid: 11375 - type: PottedPlant3 - components: - - pos: 46.5,-11.5 - parent: 8364 - type: Transform -- uid: 11376 - type: Table - components: - - pos: 64.5,16.5 - parent: 8364 - type: Transform -- uid: 11377 - type: FirelockGlass - components: - - pos: 1.5,22.5 - parent: 8364 - type: Transform -- uid: 11378 - type: AirlockGlass - components: - - pos: -10.5,48.5 - parent: 8364 - type: Transform -- uid: 11379 - type: ReinforcedWindow - components: - - pos: -13.5,3.5 - parent: 8364 - type: Transform -- uid: 11380 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 65.5,23.5 - parent: 8364 - type: Transform -- uid: 11381 - type: Chair - components: - - pos: 67.5,19.5 - parent: 8364 - type: Transform -- uid: 11382 - type: Table - components: - - pos: 67.5,18.5 - parent: 8364 - type: Transform -- uid: 11383 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 69.5,19.5 - parent: 8364 - type: Transform -- uid: 11384 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 69.5,16.5 - parent: 8364 - type: Transform -- uid: 11385 - type: CableApcExtension - components: - - pos: 66.5,19.5 - parent: 8364 - type: Transform -- uid: 11386 - type: BlockGameArcade - components: - - pos: 74.5,12.5 - parent: 8364 - type: Transform -- uid: 11387 - type: CableApcExtension - components: - - pos: 65.5,18.5 - parent: 8364 - type: Transform -- uid: 11388 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 64.5,18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11389 - type: CableApcExtension - components: - - pos: 65.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11390 - type: Barricade - components: - - pos: 65.5,15.5 - parent: 8364 - type: Transform -- uid: 11391 - type: CableApcExtension - components: - - pos: 42.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11392 - type: CableApcExtension - components: - - pos: 41.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11393 - type: APCHighCapacity - components: - - rot: 1.5707963267948966 rad - pos: 41.5,5.5 - parent: 8364 - type: Transform -- uid: 11394 - type: CableApcExtension - components: - - pos: 42.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11395 - type: CableApcExtension - components: - - pos: 42.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11396 - type: CableMV - components: - - pos: 41.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11397 - type: CableApcExtension - components: - - pos: 41.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11398 - type: CableApcExtension - components: - - pos: 40.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11399 - type: CableApcExtension - components: - - pos: 39.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11400 - type: CableApcExtension - components: - - pos: 38.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11401 - type: CableApcExtension - components: - - pos: 37.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11402 - type: CableApcExtension - components: - - pos: 36.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11403 - type: CableApcExtension - components: - - pos: 35.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11404 - type: CableApcExtension - components: - - pos: 34.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11405 - type: CableApcExtension - components: - - pos: 33.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11406 - type: CableApcExtension - components: - - pos: 32.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11407 - type: CableApcExtension - components: - - pos: 31.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11408 - type: CableApcExtension - components: - - pos: 30.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11409 - type: CableApcExtension - components: - - pos: 29.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11410 - type: CableApcExtension - components: - - pos: 28.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11411 - type: CableApcExtension - components: - - pos: 27.5,3.5 - parent: 8364 - type: Transform -- uid: 11412 - type: CableApcExtension - components: - - pos: 26.5,3.5 - parent: 8364 - type: Transform -- uid: 11413 - type: CableApcExtension - components: - - pos: 25.5,3.5 - parent: 8364 - type: Transform -- uid: 11414 - type: CableApcExtension - components: - - pos: 43.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11415 - type: CableApcExtension - components: - - pos: 44.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11416 - type: CableApcExtension - components: - - pos: 45.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11417 - type: CableApcExtension - components: - - pos: 45.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11418 - type: CableApcExtension - components: - - pos: 45.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11419 - type: CableApcExtension - components: - - pos: 45.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11420 - type: CableApcExtension - components: - - pos: 45.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11421 - type: CableApcExtension - components: - - pos: 45.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11422 - type: CableApcExtension - components: - - pos: 45.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11423 - type: CableApcExtension - components: - - pos: 45.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11424 - type: CableApcExtension - components: - - pos: 46.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11425 - type: CableApcExtension - components: - - pos: 47.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11426 - type: CableApcExtension - components: - - pos: 48.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11427 - type: CableApcExtension - components: - - pos: 49.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11428 - type: CableApcExtension - components: - - pos: 50.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11429 - type: CableApcExtension - components: - - pos: 51.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11430 - type: CableApcExtension - components: - - pos: 52.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11431 - type: CableApcExtension - components: - - pos: 53.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11432 - type: CableApcExtension - components: - - pos: 54.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11433 - type: CableApcExtension - components: - - pos: 55.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11434 - type: CableApcExtension - components: - - pos: 56.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11435 - type: CableApcExtension - components: - - pos: 57.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11436 - type: CableApcExtension - components: - - pos: 58.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11437 - type: CableApcExtension - components: - - pos: 59.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11438 - type: CableApcExtension - components: - - pos: 59.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11439 - type: CableApcExtension - components: - - pos: 59.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11440 - type: CableApcExtension - components: - - pos: 59.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11441 - type: CableApcExtension - components: - - pos: 58.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11442 - type: CableApcExtension - components: - - pos: 57.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11443 - type: CableApcExtension - components: - - pos: 56.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11444 - type: CableApcExtension - components: - - pos: 55.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11445 - type: CableApcExtension - components: - - pos: 54.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11446 - type: CableApcExtension - components: - - pos: 53.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11447 - type: CableApcExtension - components: - - pos: 52.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11448 - type: CableApcExtension - components: - - pos: 51.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11449 - type: CableApcExtension - components: - - pos: 50.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11450 - type: CableApcExtension - components: - - pos: 49.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11451 - type: CableApcExtension - components: - - pos: 48.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11452 - type: CableApcExtension - components: - - pos: 52.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11453 - type: CableApcExtension - components: - - pos: 52.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11454 - type: CableApcExtension - components: - - pos: 52.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11455 - type: CableApcExtension - components: - - pos: 60.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11456 - type: CableApcExtension - components: - - pos: 60.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11457 - type: CableApcExtension - components: - - pos: 61.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11458 - type: CableApcExtension - components: - - pos: 62.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11459 - type: CableApcExtension - components: - - pos: 63.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11460 - type: CableApcExtension - components: - - pos: 64.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11461 - type: CableApcExtension - components: - - pos: 65.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11462 - type: CableApcExtension - components: - - pos: 68.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11463 - type: CableApcExtension - components: - - pos: 68.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11464 - type: CableApcExtension - components: - - pos: 69.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11465 - type: CableApcExtension - components: - - pos: 63.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11466 - type: CableApcExtension - components: - - pos: 65.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11467 - type: CableApcExtension - components: - - pos: 65.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11468 - type: CableApcExtension - components: - - pos: 65.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11469 - type: CableApcExtension - components: - - pos: 65.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11470 - type: CableApcExtension - components: - - pos: 65.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11471 - type: CableApcExtension - components: - - pos: 66.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11472 - type: CableApcExtension - components: - - pos: 66.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11473 - type: CableApcExtension - components: - - pos: 67.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11474 - type: CableApcExtension - components: - - pos: 70.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11475 - type: CableApcExtension - components: - - pos: 70.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11476 - type: CableApcExtension - components: - - pos: 69.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11477 - type: CableApcExtension - components: - - pos: 68.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11478 - type: CableApcExtension - components: - - pos: 68.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11479 - type: CableApcExtension - components: - - pos: 73.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11480 - type: CableApcExtension - components: - - pos: 74.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11481 - type: CableApcExtension - components: - - pos: 64.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11482 - type: CableApcExtension - components: - - pos: 63.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11483 - type: CableApcExtension - components: - - pos: 61.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11484 - type: CableApcExtension - components: - - pos: 62.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11485 - type: CableApcExtension - components: - - pos: 70.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11486 - type: CableApcExtension - components: - - pos: 71.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11487 - type: CableApcExtension - components: - - pos: 72.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11488 - type: CableApcExtension - components: - - pos: 73.5,11.5 - parent: 8364 - type: Transform -- uid: 11489 - type: CableApcExtension - components: - - pos: 73.5,10.5 - parent: 8364 - type: Transform -- uid: 11490 - type: CableApcExtension - components: - - pos: 73.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11491 - type: CableApcExtension - components: - - pos: 74.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11492 - type: CableApcExtension - components: - - pos: 69.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11493 - type: CableApcExtension - components: - - pos: 68.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11494 - type: CableApcExtension - components: - - pos: 68.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11495 - type: CableApcExtension - components: - - pos: 64.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11496 - type: CableApcExtension - components: - - pos: 61.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11497 - type: CableApcExtension - components: - - pos: 61.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11498 - type: CableApcExtension - components: - - pos: 61.5,17.5 - parent: 8364 - type: Transform -- uid: 11499 - type: CableApcExtension - components: - - pos: 61.5,18.5 - parent: 8364 - type: Transform -- uid: 11500 - type: CableApcExtension - components: - - pos: 60.5,18.5 - parent: 8364 - type: Transform -- uid: 11501 - type: CableApcExtension - components: - - pos: 60.5,19.5 - parent: 8364 - type: Transform -- uid: 11502 - type: CableApcExtension - components: - - pos: 56.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11503 - type: CableApcExtension - components: - - pos: 60.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11504 - type: CableApcExtension - components: - - pos: 62.5,18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11505 - type: CableApcExtension - components: - - pos: 62.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11506 - type: CableApcExtension - components: - - pos: 62.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11507 - type: CableApcExtension - components: - - pos: 56.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11508 - type: CableApcExtension - components: - - pos: 56.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11509 - type: CableApcExtension - components: - - pos: 56.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11510 - type: CableApcExtension - components: - - pos: 56.5,18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11511 - type: CableApcExtension - components: - - pos: 56.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11512 - type: CableApcExtension - components: - - pos: 56.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11513 - type: CableApcExtension - components: - - pos: 56.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11514 - type: CableApcExtension - components: - - pos: 55.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11515 - type: CableApcExtension - components: - - pos: 57.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11516 - type: CableApcExtension - components: - - pos: 46.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11517 - type: CableApcExtension - components: - - pos: 47.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11518 - type: CableApcExtension - components: - - pos: 47.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11519 - type: CableApcExtension - components: - - pos: 54.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11520 - type: CableApcExtension - components: - - pos: 54.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11521 - type: CableApcExtension - components: - - pos: 54.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11522 - type: CableApcExtension - components: - - pos: 54.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11523 - type: CableApcExtension - components: - - pos: 54.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11524 - type: CableApcExtension - components: - - pos: 54.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11525 - type: CableApcExtension - components: - - pos: 53.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11526 - type: CableApcExtension - components: - - pos: 52.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11527 - type: CableApcExtension - components: - - pos: 51.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11528 - type: CableApcExtension - components: - - pos: 50.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11529 - type: CableApcExtension - components: - - pos: 49.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11530 - type: CableApcExtension - components: - - pos: 51.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11531 - type: CableApcExtension - components: - - pos: 51.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11532 - type: CableApcExtension - components: - - pos: 51.5,1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11533 - type: CableApcExtension - components: - - pos: 51.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11534 - type: CableApcExtension - components: - - pos: 51.5,-0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11535 - type: CableApcExtension - components: - - pos: 51.5,-1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11536 - type: CableApcExtension - components: - - pos: 51.5,-2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11537 - type: CableApcExtension - components: - - pos: 51.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11538 - type: CableApcExtension - components: - - pos: 51.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11539 - type: CableApcExtension - components: - - pos: 51.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11540 - type: WindowReinforcedDirectional - components: - - pos: -8.5,3.5 - parent: 8364 - type: Transform -- uid: 11541 - type: CableApcExtension - components: - - pos: 55.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11542 - type: CableApcExtension - components: - - pos: 56.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11543 - type: CableApcExtension - components: - - pos: 57.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11544 - type: CableApcExtension - components: - - pos: 58.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11545 - type: CableApcExtension - components: - - pos: 59.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11546 - type: CableApcExtension - components: - - pos: 60.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11547 - type: CableApcExtension - components: - - pos: 61.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11548 - type: CableApcExtension - components: - - pos: 62.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11549 - type: CableApcExtension - components: - - pos: 63.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11550 - type: CableApcExtension - components: - - pos: 64.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11551 - type: CableApcExtension - components: - - pos: 65.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11552 - type: CableApcExtension - components: - - pos: 66.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11553 - type: FirelockGlass - components: - - pos: 18.5,-38.5 - parent: 8364 - type: Transform -- uid: 11554 - type: PoweredSmallLight - components: - - pos: 30.5,3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11555 - type: PoweredSmallLight - components: - - pos: 36.5,3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11556 - type: PoweredSmallLight - components: - - pos: 43.5,3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11557 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,6.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11558 - type: ClothingShoesBootsWork - components: - - name: nt approved fashionable workboot - type: MetaData - - pos: 5.286043,8.349777 - parent: 8364 - type: Transform -- uid: 11559 - type: PoweredSmallLight - components: - - pos: 45.5,11.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11560 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 52.5,7.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11561 - type: CableApcExtension - components: - - pos: 49.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11562 - type: CableApcExtension - components: - - pos: 49.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11563 - type: CableApcExtension - components: - - pos: 52.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11564 - type: CableApcExtension - components: - - pos: 52.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11565 - type: Table - components: - - pos: -18.5,14.5 - parent: 8364 - type: Transform -- uid: 11566 - type: CableApcExtension - components: - - pos: 57.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11567 - type: CableApcExtension - components: - - pos: 57.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11568 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,9.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11569 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 53.5,4.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11570 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,2.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11571 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-4.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11572 - type: ClothingShoesBootsCombat - components: - - pos: 68.49056,16.310373 - parent: 8364 - type: Transform -- uid: 11573 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,11.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11574 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,7.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11575 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 67.5,5.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11576 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 11577 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,14.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11578 - type: PoweredSmallLight - components: - - pos: 73.5,12.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11579 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,8.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11580 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 66.5,8.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11581 - type: PoweredSmallLight - components: - - pos: 69.5,12.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11582 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,16.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11583 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,19.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11584 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,5.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11585 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,6.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11586 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,14.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11587 - type: ClothingShoesBootsJack - components: - - pos: 88.4803,-26.689615 - parent: 8364 - type: Transform -- uid: 11588 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 55.5,12.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11589 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,11.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11590 - type: ReinforcedWindow - components: - - pos: -9.5,2.5 - parent: 8364 - type: Transform -- uid: 11591 - type: Grille - components: - - pos: -9.5,3.5 - parent: 8364 - type: Transform -- uid: 11592 - type: ReinforcedWindow - components: - - pos: -13.5,2.5 - parent: 8364 - type: Transform -- uid: 11593 - type: Rack - components: - - pos: -8.5,3.5 - parent: 8364 - type: Transform -- uid: 11594 - type: Rack - components: - - pos: -8.5,6.5 - parent: 8364 - type: Transform -- uid: 11595 - type: Grille - components: - - pos: -9.5,2.5 - parent: 8364 - type: Transform -- uid: 11596 - type: Table - components: - - pos: 13.5,30.5 - parent: 8364 - type: Transform -- uid: 11597 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 12.5,30.5 - parent: 8364 - type: Transform -- uid: 11598 - type: Table - components: - - pos: 15.5,30.5 - parent: 8364 - type: Transform -- uid: 11599 - type: FirelockGlass - components: - - pos: 3.5,24.5 - parent: 8364 - type: Transform -- uid: 11600 - type: FirelockGlass - components: - - pos: 0.5,18.5 - parent: 8364 - type: Transform -- uid: 11601 - type: PottedPlant12 - components: - - pos: -5.5,17.5 - parent: 8364 - type: Transform -- uid: 11602 - type: filingCabinet - components: - - pos: -3.5,15.5 - parent: 8364 - type: Transform -- uid: 11603 - type: FirelockGlass - components: - - pos: 2.5,22.5 - parent: 8364 - type: Transform -- uid: 11604 - type: FirelockGlass - components: - - pos: 3.5,23.5 - parent: 8364 - type: Transform -- uid: 11605 - type: FirelockGlass - components: - - pos: -0.5,18.5 - parent: 8364 - type: Transform -- uid: 11606 - type: ComputerCrewMonitoring - components: - - pos: -6.5,17.5 - parent: 8364 - type: Transform -- uid: 11607 - type: Grille - components: - - pos: -13.5,3.5 - parent: 8364 - type: Transform -- uid: 11608 - type: Grille - components: - - pos: -13.5,2.5 - parent: 8364 - type: Transform -- uid: 11609 - type: filingCabinet - components: - - pos: 16.5,30.5 - parent: 8364 - type: Transform -- uid: 11610 - type: Table - components: - - pos: 12.5,33.5 - parent: 8364 - type: Transform -- uid: 11611 - type: Table - components: - - pos: 12.5,34.5 - parent: 8364 - type: Transform -- uid: 11612 - type: Table - components: - - pos: 12.5,32.5 - parent: 8364 - type: Transform -- uid: 11613 - type: Table - components: - - pos: 11.5,30.5 - parent: 8364 - type: Transform -- uid: 11614 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 17.5,34.5 - parent: 8364 - type: Transform -- uid: 11615 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 17.5,33.5 - parent: 8364 - type: Transform -- uid: 11616 - type: Table - components: - - pos: 16.5,33.5 - parent: 8364 - type: Transform -- uid: 11617 - type: Table - components: - - pos: 16.5,32.5 - parent: 8364 - type: Transform -- uid: 11618 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 10.5,30.5 - parent: 8364 - type: Transform -- uid: 11619 - type: Table - components: - - pos: 16.5,34.5 - parent: 8364 - type: Transform -- uid: 11620 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 11.5,32.5 - parent: 8364 - type: Transform -- uid: 11621 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 11.5,33.5 - parent: 8364 - type: Transform -- uid: 11622 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 17.5,32.5 - parent: 8364 - type: Transform -- uid: 11623 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 11.5,34.5 - parent: 8364 - type: Transform -- uid: 11624 - type: SheetPlasteel - components: - - pos: -5.9772058,3.554113 - parent: 8364 - type: Transform -- uid: 11625 - type: SignalButton - components: - - pos: -6.5,-5.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6086 - - port: Toggle - uid: 5898 - - port: Toggle - uid: 5911 - type: SignalTransmitter -- uid: 11626 - type: CarpetGreen - components: - - pos: 6.5,-17.5 - parent: 8364 - type: Transform -- uid: 11627 - type: CarpetGreen - components: - - pos: 6.5,-16.5 - parent: 8364 - type: Transform -- uid: 11628 - type: SignalButton - components: - - pos: 5.5,-5.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6087 - - port: Toggle - uid: 6098 - - port: Toggle - uid: 6099 - type: SignalTransmitter -- uid: 11629 - type: CarpetGreen - components: - - pos: 6.5,-18.5 - parent: 8364 - type: Transform -- uid: 11630 - type: CarpetGreen - components: - - pos: 8.5,-17.5 - parent: 8364 - type: Transform -- uid: 11631 - type: CarpetGreen - components: - - pos: 5.5,-17.5 - parent: 8364 - type: Transform -- uid: 11632 - type: CarpetGreen - components: - - pos: 8.5,-16.5 - parent: 8364 - type: Transform -- uid: 11633 - type: CarpetGreen - components: - - pos: 7.5,-17.5 - parent: 8364 - type: Transform -- uid: 11634 - type: CarpetGreen - components: - - pos: 5.5,-16.5 - parent: 8364 - type: Transform -- uid: 11635 - type: CarpetGreen - components: - - pos: 7.5,-16.5 - parent: 8364 - type: Transform -- uid: 11636 - type: CableApcExtension - components: - - pos: 47.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11637 - type: CableApcExtension - components: - - pos: 62.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11638 - type: SignBridge - components: - - pos: 11.5,-6.5 - parent: 8364 - type: Transform -- uid: 11639 - type: TableWood - components: - - pos: 7.5,-15.5 - parent: 8364 - type: Transform -- uid: 11640 - type: TableReinforced - components: - - pos: -29.5,3.5 - parent: 8364 - type: Transform -- uid: 11641 - type: TableReinforced - components: - - pos: -29.5,4.5 - parent: 8364 - type: Transform -- uid: 11642 - type: filingCabinet - components: - - pos: -29.5,6.5 - parent: 8364 - type: Transform -- uid: 11643 - type: TableReinforced - components: - - pos: -29.5,5.5 - parent: 8364 - type: Transform -- uid: 11644 - type: TableReinforced - components: - - pos: -33.5,5.5 - parent: 8364 - type: Transform -- uid: 11645 - type: TableReinforced - components: - - pos: -33.5,3.5 - parent: 8364 - type: Transform -- uid: 11646 - type: ReinforcedWindow - components: - - pos: 57.5,9.5 - parent: 8364 - type: Transform -- uid: 11647 - type: CigarGoldCase - components: - - pos: -29.516005,4.760977 - parent: 8364 - type: Transform -- uid: 11648 - type: Grille - components: - - pos: 57.5,9.5 - parent: 8364 - type: Transform -- uid: 11649 - type: AirlockEngineeringLocked - components: - - name: 'Starboard Bow Solars ' - type: MetaData - - pos: 47.5,17.5 - parent: 8364 - type: Transform -- uid: 11650 - type: AirlockMaintEngiLocked - components: - - pos: 61.5,15.5 - parent: 8364 - type: Transform -- uid: 11651 - type: AirlockExternalLocked - components: - - pos: 47.5,23.5 - parent: 8364 - type: Transform -- uid: 11652 - type: AirlockExternalLocked - components: - - pos: 47.5,21.5 - parent: 8364 - type: Transform -- uid: 11653 - type: Barricade - components: - - pos: 62.5,16.5 - parent: 8364 - type: Transform -- uid: 11654 - type: Barricade - components: - - pos: 61.5,16.5 - parent: 8364 - type: Transform -- uid: 11655 - type: Barricade - components: - - pos: 60.5,16.5 - parent: 8364 - type: Transform -- uid: 11656 - type: RandomArcade - components: - - pos: 55.5,20.5 - parent: 8364 - type: Transform -- uid: 11657 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 55.5,19.5 - parent: 8364 - type: Transform -- uid: 11658 - type: TableCarpet - components: - - pos: 58.5,16.5 - parent: 8364 - type: Transform -- uid: 11659 - type: TableCarpet - components: - - pos: 58.5,15.5 - parent: 8364 - type: Transform -- uid: 11660 - type: TableCarpet - components: - - pos: 57.5,15.5 - parent: 8364 - type: Transform -- uid: 11661 - type: TableWood - components: - - pos: 57.5,20.5 - parent: 8364 - type: Transform -- uid: 11662 - type: TableWood - components: - - pos: 55.5,15.5 - parent: 8364 - type: Transform -- uid: 11663 - type: TableWood - components: - - pos: 55.5,18.5 - parent: 8364 - type: Transform -- uid: 11664 - type: TableWood - components: - - pos: 55.5,17.5 - parent: 8364 - type: Transform -- uid: 11665 - type: RandomInstruments - components: - - pos: 55.5,15.5 - parent: 8364 - type: Transform -- uid: 11666 - type: d20Dice - components: - - pos: 55.5,18.5 - parent: 8364 - type: Transform -- uid: 11667 - type: d4Dice - components: - - pos: 57.5,20.5 - parent: 8364 - type: Transform -- uid: 11668 - type: d8Dice - components: - - pos: 55.5,18.5 - parent: 8364 - type: Transform -- uid: 11669 - type: FoodPieBananaCream - components: - - pos: 55.5,17.5 - parent: 8364 - type: Transform -- uid: 11670 - type: ClothingMaskClown - components: - - pos: 55.5,17.5 - parent: 8364 - type: Transform -- uid: 11671 - type: ChessBoard - components: - - pos: 14.5,11.5 - parent: 8364 - type: Transform -- uid: 11672 - type: CheckerBoard - components: - - pos: 14.5,10.5 - parent: 8364 - type: Transform -- uid: 11673 - type: ParchisBoard - components: - - pos: 61.5,-7.5 - parent: 8364 - type: Transform -- uid: 11674 - type: BackgammonBoard - components: - - pos: 63.5,-7.5 - parent: 8364 - type: Transform -- uid: 11675 - type: ChessBoard - components: - - pos: 57.5,15.5 - parent: 8364 - type: Transform -- uid: 11676 - type: GrilleBroken - components: - - pos: 58.5,14.5 - parent: 8364 - type: Transform -- uid: 11677 - type: GrilleBroken - components: - - pos: 57.5,14.5 - parent: 8364 - type: Transform -- uid: 11678 - type: ClothingHeadHatChef - components: - - pos: 68.47937,-55.246544 - parent: 8364 - type: Transform -- uid: 11679 - type: Grille - components: - - pos: 55.5,14.5 - parent: 8364 - type: Transform -- uid: 11680 - type: Rack - components: - - pos: 70.5,12.5 - parent: 8364 - type: Transform -- uid: 11681 - type: ClosetMaintenanceFilledRandom - components: - - pos: 72.5,10.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 11682 - type: Rack - components: - - pos: 75.5,12.5 - parent: 8364 - type: Transform -- uid: 11683 - type: WeldingFuelTankFull - components: - - pos: 75.5,10.5 - parent: 8364 - type: Transform -- uid: 11684 - type: WaterTankFull - components: - - pos: 74.5,10.5 - parent: 8364 - type: Transform -- uid: 11685 - type: Multitool - components: - - pos: 70.5,12.5 - parent: 8364 - type: Transform -- uid: 11686 - type: Wirecutter - components: - - pos: 70.5,12.5 - parent: 8364 - type: Transform -- uid: 11687 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 11688 - type: SpaceVillainArcadeFilled - components: - - pos: 72.5,12.5 - parent: 8364 - type: Transform -- uid: 11689 - type: Catwalk - components: - - pos: 49.5,-31.5 - parent: 8364 - type: Transform -- uid: 11690 - type: FigureSpawner - components: - - pos: 56.5,0.5 - parent: 8364 - type: Transform -- uid: 11691 - type: FigureSpawner - components: - - pos: 12.5,10.5 - parent: 8364 - type: Transform -- uid: 11692 - type: ToySpawner - components: - - pos: 58.5,17.5 - parent: 8364 - type: Transform -- uid: 11693 - type: ToySpawner - components: - - pos: 12.5,11.5 - parent: 8364 - type: Transform -- uid: 11694 - type: RandomSpawner - components: - - pos: 52.5,17.5 - parent: 8364 - type: Transform -- uid: 11695 - type: RandomSpawner - components: - - pos: 57.5,18.5 - parent: 8364 - type: Transform -- uid: 11696 - type: RandomSpawner - components: - - pos: 62.5,17.5 - parent: 8364 - type: Transform -- uid: 11697 - type: RandomSpawner - components: - - pos: 67.5,16.5 - parent: 8364 - type: Transform -- uid: 11698 - type: RandomSpawner - components: - - pos: 73.5,12.5 - parent: 8364 - type: Transform -- uid: 11699 - type: RandomSpawner - components: - - pos: 60.5,9.5 - parent: 8364 - type: Transform -- uid: 11700 - type: RandomSpawner - components: - - pos: 50.5,3.5 - parent: 8364 - type: Transform -- uid: 11701 - type: TableReinforced - components: - - pos: -33.5,4.5 - parent: 8364 - type: Transform -- uid: 11702 - type: Catwalk - components: - - pos: -31.5,-64.5 - parent: 8364 - type: Transform -- uid: 11703 - type: Catwalk - components: - - pos: -31.5,-65.5 - parent: 8364 - type: Transform -- uid: 11704 - type: Catwalk - components: - - pos: -20.5,-60.5 - parent: 8364 - type: Transform -- uid: 11705 - type: NitrogenCanister - components: - - pos: 50.5,17.5 - parent: 8364 - type: Transform -- uid: 11706 - type: OxygenCanister - components: - - pos: 51.5,17.5 - parent: 8364 - type: Transform -- uid: 11707 - type: AirCanister - components: - - pos: 53.5,17.5 - parent: 8364 - type: Transform -- uid: 11708 - type: WindowReinforcedDirectional - components: - - pos: 50.5,17.5 - parent: 8364 - type: Transform -- uid: 11709 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-18.5 - parent: 8364 - type: Transform -- uid: 11710 - type: WaterTankFull - components: - - pos: 51.5,11.5 - parent: 8364 - type: Transform -- uid: 11711 - type: WeldingFuelTankFull - components: - - pos: 52.5,11.5 - parent: 8364 - type: Transform -- uid: 11712 - type: Catwalk - components: - - pos: -21.5,-60.5 - parent: 8364 - type: Transform -- uid: 11713 - type: Catwalk - components: - - pos: -22.5,-60.5 - parent: 8364 - type: Transform -- uid: 11714 - type: Catwalk - components: - - pos: -23.5,-60.5 - parent: 8364 - type: Transform -- uid: 11715 - type: SignToolStorage - components: - - pos: -43.5,0.5 - parent: 8364 - type: Transform -- uid: 11716 - type: PosterContrabandHackingGuide - components: - - pos: -41.5,6.5 - parent: 8364 - type: Transform -- uid: 11717 - type: PosterContrabandTools - components: - - pos: -39.5,6.5 - parent: 8364 - type: Transform -- uid: 11718 - type: SolarPanel - components: - - pos: 51.5,28.5 - parent: 8364 - type: Transform -- uid: 11719 - type: FirelockGlass - components: - - pos: 35.5,-15.5 - parent: 8364 - type: Transform -- uid: 11720 - type: SolarPanel - components: - - pos: 42.5,30.5 - parent: 8364 - type: Transform -- uid: 11721 - type: SolarPanel - components: - - pos: 42.5,28.5 - parent: 8364 - type: Transform -- uid: 11722 - type: FirelockGlass - components: - - pos: -58.5,2.5 - parent: 8364 - type: Transform -- uid: 11723 - type: SolarPanel - components: - - pos: 51.5,30.5 - parent: 8364 - type: Transform -- uid: 11724 - type: SolarPanel - components: - - pos: 43.5,30.5 - parent: 8364 - type: Transform -- uid: 11725 - type: FirelockGlass - components: - - pos: 34.5,-15.5 - parent: 8364 - type: Transform -- uid: 11726 - type: SolarPanel - components: - - pos: 50.5,28.5 - parent: 8364 - type: Transform -- uid: 11727 - type: SolarPanel - components: - - pos: 52.5,30.5 - parent: 8364 - type: Transform - - supplyRate: 259 - type: PowerSupplier -- uid: 11728 - type: SolarPanel - components: - - pos: 52.5,28.5 - parent: 8364 - type: Transform -- uid: 11729 - type: SolarPanel - components: - - pos: 49.5,30.5 - parent: 8364 - type: Transform -- uid: 11730 - type: SolarPanel - components: - - pos: 45.5,28.5 - parent: 8364 - type: Transform - - supplyRate: 259 - type: PowerSupplier -- uid: 11731 - type: SolarPanel - components: - - pos: 44.5,28.5 - parent: 8364 - type: Transform -- uid: 11732 - type: Catwalk - components: - - pos: 1.5,-73.5 - parent: 8364 - type: Transform -- uid: 11733 - type: Catwalk - components: - - pos: -24.5,-60.5 - parent: 8364 - type: Transform -- uid: 11734 - type: SolarPanel - components: - - pos: 50.5,30.5 - parent: 8364 - type: Transform -- uid: 11735 - type: SolarPanel - components: - - pos: 44.5,30.5 - parent: 8364 - type: Transform - - supplyRate: 259 - type: PowerSupplier -- uid: 11736 - type: Catwalk - components: - - pos: -25.5,-60.5 - parent: 8364 - type: Transform -- uid: 11737 - type: SolarPanel - components: - - pos: 41.5,28.5 - parent: 8364 - type: Transform -- uid: 11738 - type: CableApcExtension - components: - - pos: 47.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11739 - type: Rack - components: - - pos: 58.5,19.5 - parent: 8364 - type: Transform -- uid: 11740 - type: ClothingOuterSuitMonkey - components: - - pos: 58.5,19.5 - parent: 8364 - type: Transform -- uid: 11741 - type: ClothingHeadHatChickenhead - components: - - pos: 58.5,19.5 - parent: 8364 - type: Transform -- uid: 11742 - type: Rack - components: - - pos: 46.5,13.5 - parent: 8364 - type: Transform -- uid: 11743 - type: Rack - components: - - pos: 53.5,15.5 - parent: 8364 - type: Transform -- uid: 11744 - type: Rack - components: - - pos: 49.5,16.5 - parent: 8364 - type: Transform -- uid: 11745 - type: Rack - components: - - pos: 49.5,11.5 - parent: 8364 - type: Transform -- uid: 11746 - type: Rack - components: - - pos: 48.5,11.5 - parent: 8364 - type: Transform -- uid: 11747 - type: Rack - components: - - pos: 47.5,11.5 - parent: 8364 - type: Transform -- uid: 11748 - type: ToolboxMechanicalFilled - components: - - pos: 46.5,13.5 - parent: 8364 - type: Transform -- uid: 11749 - type: ToolboxElectricalFilled - components: - - pos: 49.5,16.5 - parent: 8364 - type: Transform -- uid: 11750 - type: ToolboxMechanicalFilled - components: - - pos: 49.5,11.5 - parent: 8364 - type: Transform -- uid: 11751 - type: ToolboxElectricalFilled - components: - - pos: 48.5,11.5 - parent: 8364 - type: Transform -- uid: 11752 - type: SheetSteel - components: - - pos: 47.796352,11.724856 - parent: 8364 - type: Transform -- uid: 11753 - type: SheetSteel - components: - - rot: 0.001271634129807353 rad - pos: 53.735325,15.802864 - parent: 8364 - type: Transform -- uid: 11754 - type: SheetGlass - components: - - pos: 47.405727,11.349856 - parent: 8364 - type: Transform -- uid: 11755 - type: SheetGlass - components: - - pos: 53.452602,15.396731 - parent: 8364 - type: Transform -- uid: 11756 - type: FlashlightLantern - components: - - pos: 49.435802,16.306866 - parent: 8364 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 11757 - type: FlashlightLantern - components: - - pos: 48.529552,11.266704 - parent: 8364 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 11758 - type: FlashlightLantern - components: - - pos: 48.47014,7.514141 - parent: 8364 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 11759 - type: FlashlightLantern - components: - - pos: 66.53939,6.4304285 - parent: 8364 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 11760 - type: FlashlightLantern - components: - - pos: 70.51346,12.480552 - parent: 8364 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 11761 - type: FlashlightLantern - components: - - pos: 67.42922,18.532057 - parent: 8364 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 11762 - type: FlashlightLantern - components: - - pos: 55.583378,18.000807 - parent: 8364 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 11763 - type: Rack - components: - - pos: 48.5,20.5 - parent: 8364 - type: Transform -- uid: 11764 - type: APCHighCapacity - components: - - rot: 1.5707963267948966 rad - pos: 45.5,19.5 - parent: 8364 - type: Transform -- uid: 11765 - type: SpawnPointHeadOfPersonnel - components: - - pos: -11.5,-22.5 - parent: 8364 - type: Transform -- uid: 11766 - type: SpawnPointCaptain - components: - - pos: 6.5,-16.5 - parent: 8364 - type: Transform -- uid: 11767 - type: CableApcExtension - components: - - pos: 47.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11768 - type: CableApcExtension - components: - - pos: 47.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11769 - type: CableMV - components: - - pos: 58.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11770 - type: CableApcExtension - components: - - pos: 47.5,23.5 - parent: 8364 - type: Transform -- uid: 11771 - type: CableApcExtension - components: - - pos: 48.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11772 - type: CableApcExtension - components: - - pos: 46.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11773 - type: CableApcExtension - components: - - pos: 46.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11774 - type: CableApcExtension - components: - - pos: 46.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11775 - type: CableApcExtension - components: - - pos: 45.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11776 - type: CableMV - components: - - pos: 57.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11777 - type: CableMV - components: - - pos: 56.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11778 - type: CableMV - components: - - pos: 55.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11779 - type: CableMV - components: - - pos: 54.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11780 - type: CableMV - components: - - pos: 53.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11781 - type: CableMV - components: - - pos: 52.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11782 - type: CableMV - components: - - pos: 51.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11783 - type: CableMV - components: - - pos: 50.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11784 - type: CableMV - components: - - pos: 49.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11785 - type: CableMV - components: - - pos: 48.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11786 - type: CableMV - components: - - pos: 47.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11787 - type: CableMV - components: - - pos: 47.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11788 - type: CableMV - components: - - pos: 47.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11789 - type: CableMV - components: - - pos: 47.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11790 - type: CableMV - components: - - pos: 47.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11791 - type: CableMV - components: - - pos: 47.5,18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11792 - type: CableMV - components: - - pos: 46.5,18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11793 - type: CableMV - components: - - pos: 46.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11794 - type: CableMV - components: - - pos: 45.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11795 - type: ClothingHandsGlovesColorYellowBudget - components: - - pos: 70.5,12.5 - parent: 8364 - type: Transform -- uid: 11796 - type: ClothingHandsGlovesColorYellowBudget - components: - - pos: 46.5,13.5 - parent: 8364 - type: Transform -- uid: 11797 - type: VendingMachineDonut - components: - - flags: SessionSpecific - name: Donut - type: MetaData - - pos: 82.5,-1.5 - parent: 8364 - type: Transform -- uid: 11798 - type: Chair - components: - - pos: 81.5,-1.5 - parent: 8364 - type: Transform -- uid: 11799 - type: Chair - components: - - pos: 80.5,-1.5 - parent: 8364 - type: Transform -- uid: 11800 - type: Chair - components: - - pos: 79.5,-1.5 - parent: 8364 - type: Transform -- uid: 11801 - type: Chair - components: - - pos: 78.5,-1.5 - parent: 8364 - type: Transform -- uid: 11802 - type: Chair - components: - - pos: 77.5,-1.5 - parent: 8364 - type: Transform -- uid: 11803 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 76.5,-2.5 - parent: 8364 - type: Transform -- uid: 11804 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 76.5,-3.5 - parent: 8364 - type: Transform -- uid: 11805 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 80.5,-7.5 - parent: 8364 - type: Transform -- uid: 11806 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 80.5,-8.5 - parent: 8364 - type: Transform -- uid: 11807 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 80.5,-9.5 - parent: 8364 - type: Transform -- uid: 11808 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-7.5 - parent: 8364 - type: Transform -- uid: 11809 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-8.5 - parent: 8364 - type: Transform -- uid: 11810 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-9.5 - parent: 8364 - type: Transform -- uid: 11811 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-10.5 - parent: 8364 - type: Transform -- uid: 11812 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-11.5 - parent: 8364 - type: Transform -- uid: 11813 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 78.5,-15.5 - parent: 8364 - type: Transform -- uid: 11814 - type: PottedPlantRandom - components: - - pos: 77.5,-15.5 - parent: 8364 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 11815 - type: CableApcExtension - components: - - pos: -66.5,16.5 - parent: 8364 - type: Transform -- uid: 11816 - type: RandomVendingDrinks - components: - - pos: 75.5,-6.5 - parent: 8364 - type: Transform -- uid: 11817 - type: RandomArcade - components: - - pos: 75.5,-5.5 - parent: 8364 - type: Transform -- uid: 11818 - type: CableApcExtension - components: - - pos: 74.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11819 - type: CableApcExtension - components: - - pos: 75.5,-10.5 - parent: 8364 - type: Transform -- uid: 11820 - type: CableApcExtension - components: - - pos: 76.5,-10.5 - parent: 8364 - type: Transform -- uid: 11821 - type: CableApcExtension - components: - - pos: 77.5,-10.5 - parent: 8364 - type: Transform -- uid: 11822 - type: CableApcExtension - components: - - pos: 78.5,-10.5 - parent: 8364 - type: Transform -- uid: 11823 - type: CableApcExtension - components: - - pos: 79.5,-10.5 - parent: 8364 - type: Transform -- uid: 11824 - type: CableApcExtension - components: - - pos: 80.5,-10.5 - parent: 8364 - type: Transform -- uid: 11825 - type: CableApcExtension - components: - - pos: 81.5,-10.5 - parent: 8364 - type: Transform -- uid: 11826 - type: CableApcExtension - components: - - pos: 82.5,-10.5 - parent: 8364 - type: Transform -- uid: 11827 - type: CableApcExtension - components: - - pos: 83.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11828 - type: CableApcExtension - components: - - pos: 84.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11829 - type: CableApcExtension - components: - - pos: 85.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11830 - type: CableApcExtension - components: - - pos: 83.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11831 - type: CableApcExtension - components: - - pos: 83.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11832 - type: CableApcExtension - components: - - pos: 83.5,-7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11833 - type: CableApcExtension - components: - - pos: 83.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11834 - type: CableApcExtension - components: - - pos: 85.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11835 - type: CableApcExtension - components: - - pos: 84.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11836 - type: CableApcExtension - components: - - pos: 79.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11837 - type: CableApcExtension - components: - - pos: 79.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11838 - type: CableApcExtension - components: - - pos: 79.5,-7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11839 - type: CableApcExtension - components: - - pos: 79.5,-6.5 - parent: 8364 - type: Transform -- uid: 11840 - type: CableApcExtension - components: - - pos: 79.5,-5.5 - parent: 8364 - type: Transform -- uid: 11841 - type: CableApcExtension - components: - - pos: 79.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11842 - type: CableApcExtension - components: - - pos: 78.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11843 - type: CableApcExtension - components: - - pos: 77.5,-4.5 - parent: 8364 - type: Transform -- uid: 11844 - type: CableApcExtension - components: - - pos: 76.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11845 - type: CableApcExtension - components: - - pos: 80.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11846 - type: CableApcExtension - components: - - pos: 81.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11847 - type: CableApcExtension - components: - - pos: 82.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11848 - type: CableApcExtension - components: - - pos: 79.5,-3.5 - parent: 8364 - type: Transform -- uid: 11849 - type: CableApcExtension - components: - - pos: 79.5,-2.5 - parent: 8364 - type: Transform -- uid: 11850 - type: CableApcExtension - components: - - pos: 79.5,-1.5 - parent: 8364 - type: Transform -- uid: 11851 - type: CableApcExtension - components: - - pos: 79.5,-0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11852 - type: CableApcExtension - components: - - pos: 78.5,-0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11853 - type: CableApcExtension - components: - - pos: 80.5,-0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11854 - type: CableApcExtension - components: - - pos: 81.5,-0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11855 - type: CableApcExtension - components: - - pos: 82.5,-0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11856 - type: CableApcExtension - components: - - pos: 83.5,-0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11857 - type: CableApcExtension - components: - - pos: 83.5,-1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11858 - type: CableApcExtension - components: - - pos: 83.5,-2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11859 - type: CableApcExtension - components: - - pos: 84.5,-2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11860 - type: CableApcExtension - components: - - pos: 85.5,-2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11861 - type: CableApcExtension - components: - - pos: 80.5,-12.5 - parent: 8364 - type: Transform -- uid: 11862 - type: CableApcExtension - components: - - pos: 80.5,-11.5 - parent: 8364 - type: Transform -- uid: 11863 - type: CableApcExtension - components: - - pos: 80.5,-13.5 - parent: 8364 - type: Transform -- uid: 11864 - type: CableApcExtension - components: - - pos: 80.5,-14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11865 - type: CableApcExtension - components: - - pos: 80.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11866 - type: CableApcExtension - components: - - pos: 80.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11867 - type: CableApcExtension - components: - - pos: 79.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11868 - type: CableApcExtension - components: - - pos: 78.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11869 - type: CableApcExtension - components: - - pos: 81.5,-14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11870 - type: CableApcExtension - components: - - pos: 82.5,-14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11871 - type: CableApcExtension - components: - - pos: 83.5,-14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11872 - type: CableApcExtension - components: - - pos: 84.5,-14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11873 - type: CableApcExtension - components: - - pos: 85.5,-14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11874 - type: Catwalk - components: - - pos: -26.5,-60.5 - parent: 8364 - type: Transform -- uid: 11875 - type: CableMV - components: - - pos: 72.5,-5.5 - parent: 8364 - type: Transform -- uid: 11876 - type: CableMV - components: - - pos: 72.5,-6.5 - parent: 8364 - type: Transform -- uid: 11877 - type: CableMV - components: - - pos: 72.5,-7.5 - parent: 8364 - type: Transform -- uid: 11878 - type: CableMV - components: - - pos: 72.5,-8.5 - parent: 8364 - type: Transform -- uid: 11879 - type: CableMV - components: - - pos: 72.5,-9.5 - parent: 8364 - type: Transform -- uid: 11880 - type: CableMV - components: - - pos: 72.5,-10.5 - parent: 8364 - type: Transform -- uid: 11881 - type: CableMV - components: - - pos: 73.5,-10.5 - parent: 8364 - type: Transform -- uid: 11882 - type: CableMV - components: - - pos: 74.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11883 - type: AirlockSecurityGlassLocked - components: - - name: Holding Area - type: MetaData - - pos: 77.5,-4.5 - parent: 8364 - type: Transform -- uid: 11884 - type: Poweredlight - components: - - pos: 77.5,-1.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11885 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-8.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11886 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 80.5,-8.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11887 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 77.5,-15.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11888 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 82.5,-12.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11889 - type: Catwalk - components: - - pos: -27.5,-60.5 - parent: 8364 - type: Transform -- uid: 11890 - type: WallReinforced - components: - - pos: -68.5,15.5 - parent: 8364 - type: Transform -- uid: 11891 - type: Catwalk - components: - - pos: -28.5,-60.5 - parent: 8364 - type: Transform -- uid: 11892 - type: Catwalk - components: - - pos: -29.5,-60.5 - parent: 8364 - type: Transform -- uid: 11893 - type: Catwalk - components: - - pos: 2.5,-38.5 - parent: 8364 - type: Transform -- uid: 11894 - type: Catwalk - components: - - pos: 3.5,-38.5 - parent: 8364 - type: Transform -- uid: 11895 - type: Catwalk - components: - - pos: 4.5,-38.5 - parent: 8364 - type: Transform -- uid: 11896 - type: Catwalk - components: - - pos: 5.5,-38.5 - parent: 8364 - type: Transform -- uid: 11897 - type: ClosetEmergencyFilledRandom - components: - - pos: 79.5,-6.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 11898 - type: ClosetEmergencyFilledRandom - components: - - pos: 79.5,-10.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 11899 - type: ToolboxEmergencyFilled - components: - - pos: 76.5,-1.5 - parent: 8364 - type: Transform -- uid: 11900 - type: Table - components: - - pos: 76.5,-1.5 - parent: 8364 - type: Transform -- uid: 11901 - type: ClosetFireFilled - components: - - pos: 75.5,-7.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 11902 - type: AirlockGlass - components: - - name: Departure - type: MetaData - - pos: 74.5,-12.5 - parent: 8364 - type: Transform -- uid: 11903 - type: AirlockGlass - components: - - name: Departure - type: MetaData - - pos: 74.5,-13.5 - parent: 8364 - type: Transform -- uid: 11904 - type: AirlockGlass - components: - - name: Departure - type: MetaData - - pos: 74.5,-14.5 - parent: 8364 - type: Transform -- uid: 11905 - type: ReinforcedWindow - components: - - pos: -65.5,19.5 - parent: 8364 - type: Transform -- uid: 11906 - components: - - type: MetaData - - pos: -65.477554,25.17142 - parent: 780 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,0: - ind: 0,0 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - index: 1 - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: [] - type: DecalGrid - - joints: - docking46345: !type:WeldJoint - bodyB: 11906 - bodyA: 8364 - id: docking46345 - localAnchorB: -0.5,-1 - localAnchorA: -66.5,22 - damping: 42.40074 - stiffness: 380.58817 - type: Joint - - type: OccluderTree - - type: Shuttle - - nextUpdate: 47.0665638 - type: GridPathfinding - - type: RadiationGridResistance -- uid: 11907 - type: ReinforcedWindow - components: - - pos: -68.5,16.5 - parent: 8364 - type: Transform -- uid: 11908 - type: Grille - components: - - pos: -65.5,20.5 - parent: 8364 - type: Transform -- uid: 11909 - type: RemoteSignaller - components: - - pos: -5.380559,9.56794 - parent: 8364 - type: Transform -- uid: 11910 - type: Rack - components: - - pos: -6.5,9.5 - parent: 8364 - type: Transform -- uid: 11911 - type: JetpackBlueFilled - components: - - pos: -6.521184,9.59919 - parent: 8364 - type: Transform -- uid: 11912 - type: ClothingHeadHelmetEVA - components: - - pos: -8.610467,6.5560756 - parent: 8364 - type: Transform -- uid: 11913 - type: AirlockMaintEngiLocked - components: - - name: EVA Maintenance - type: MetaData - - pos: -15.5,8.5 - parent: 8364 - type: Transform -- uid: 11914 - type: AtmosFixBlockerMarker - components: - - pos: 27.5,-51.5 - parent: 8364 - type: Transform -- uid: 11915 - type: Catwalk - components: - - pos: 6.5,-38.5 - parent: 8364 - type: Transform -- uid: 11916 - type: WallSolid - components: - - pos: -6.5,5.5 - parent: 8364 - type: Transform -- uid: 11917 - type: Catwalk - components: - - pos: 7.5,-38.5 - parent: 8364 - type: Transform -- uid: 11918 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: -37.5,-43.5 - parent: 8364 - type: Transform -- uid: 11919 - type: CableApcExtension - components: - - pos: -6.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11920 - type: CableApcExtension - components: - - pos: -6.5,3.5 - parent: 8364 - type: Transform -- uid: 11921 - type: CableApcExtension - components: - - pos: -6.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11922 - type: CableMV - components: - - pos: -6.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11923 - type: CableMV - components: - - pos: -6.5,6.5 - parent: 8364 - type: Transform -- uid: 11924 - type: CableMV - components: - - pos: -6.5,7.5 - parent: 8364 - type: Transform -- uid: 11925 - type: CableMV - components: - - pos: -6.5,8.5 - parent: 8364 - type: Transform -- uid: 11926 - type: CableApcExtension - components: - - pos: -5.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11927 - type: CableApcExtension - components: - - pos: -7.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11928 - type: CableApcExtension - components: - - pos: -7.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11929 - type: CableApcExtension - components: - - pos: -6.5,6.5 - parent: 8364 - type: Transform -- uid: 11930 - type: CableApcExtension - components: - - pos: -6.5,4.5 - parent: 8364 - type: Transform -- uid: 11931 - type: CableApcExtension - components: - - pos: -7.5,8.5 - parent: 8364 - type: Transform -- uid: 11932 - type: CableApcExtension - components: - - pos: -7.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11933 - type: CableApcExtension - components: - - pos: -5.5,6.5 - parent: 8364 - type: Transform -- uid: 11934 - type: CableApcExtension - components: - - pos: -4.5,6.5 - parent: 8364 - type: Transform -- uid: 11935 - type: CableApcExtension - components: - - pos: -3.5,6.5 - parent: 8364 - type: Transform -- uid: 11936 - type: CableApcExtension - components: - - pos: -2.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11937 - type: CableApcExtension - components: - - pos: -2.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11938 - type: CableApcExtension - components: - - pos: -3.5,4.5 - parent: 8364 - type: Transform -- uid: 11939 - type: CableApcExtension - components: - - pos: -3.5,5.5 - parent: 8364 - type: Transform -- uid: 11940 - type: CableApcExtension - components: - - pos: -4.5,7.5 - parent: 8364 - type: Transform -- uid: 11941 - type: CableApcExtension - components: - - pos: -4.5,8.5 - parent: 8364 - type: Transform -- uid: 11942 - type: CableApcExtension - components: - - pos: -8.5,7.5 - parent: 8364 - type: Transform -- uid: 11943 - type: CableApcExtension - components: - - pos: -9.5,7.5 - parent: 8364 - type: Transform -- uid: 11944 - type: CableApcExtension - components: - - pos: -10.5,7.5 - parent: 8364 - type: Transform -- uid: 11945 - type: CableApcExtension - components: - - pos: -11.5,7.5 - parent: 8364 - type: Transform -- uid: 11946 - type: CableApcExtension - components: - - pos: -11.5,6.5 - parent: 8364 - type: Transform -- uid: 11947 - type: CableApcExtension - components: - - pos: -11.5,5.5 - parent: 8364 - type: Transform -- uid: 11948 - type: CableApcExtension - components: - - pos: -11.5,4.5 - parent: 8364 - type: Transform -- uid: 11949 - type: CableApcExtension - components: - - pos: -11.5,3.5 - parent: 8364 - type: Transform -- uid: 11950 - type: CableApcExtension - components: - - pos: -11.5,2.5 - parent: 8364 - type: Transform -- uid: 11951 - type: CableApcExtension - components: - - pos: -11.5,1.5 - parent: 8364 - type: Transform -- uid: 11952 - type: CableApcExtension - components: - - pos: -11.5,0.5 - parent: 8364 - type: Transform -- uid: 11953 - type: CableApcExtension - components: - - pos: -12.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11954 - type: CableApcExtension - components: - - pos: -10.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11955 - type: CableApcExtension - components: - - pos: -10.5,4.5 - parent: 8364 - type: Transform -- uid: 11956 - type: CableApcExtension - components: - - pos: -12.5,4.5 - parent: 8364 - type: Transform -- uid: 11957 - type: CableApcExtension - components: - - pos: -12.5,7.5 - parent: 8364 - type: Transform -- uid: 11958 - type: CableApcExtension - components: - - pos: -13.5,7.5 - parent: 8364 - type: Transform -- uid: 11959 - type: CableApcExtension - components: - - pos: -11.5,8.5 - parent: 8364 - type: Transform -- uid: 11960 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,4.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11961 - type: Poweredlight - components: - - pos: -4.5,9.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11962 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,4.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11963 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 9.5,16.5 - parent: 8364 - type: Transform -- uid: 11964 - type: Rack - components: - - pos: -14.5,7.5 - parent: 8364 - type: Transform -- uid: 11965 - type: Rack - components: - - pos: -14.5,6.5 - parent: 8364 - type: Transform -- uid: 11966 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,7.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11967 - type: SheetGlass - components: - - pos: -6.4615808,3.554113 - parent: 8364 - type: Transform -- uid: 11968 - type: Poweredlight - components: - - pos: -9.5,9.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11969 - type: RemoteSignaller - components: - - pos: -5.505559,9.708565 - parent: 8364 - type: Transform -- uid: 11970 - type: Catwalk - components: - - pos: -5.5,-73.5 - parent: 8364 - type: Transform -- uid: 11971 - type: Lamp - components: - - pos: -61.369373,-1.2449265 - parent: 8364 - type: Transform -- uid: 11972 - type: Catwalk - components: - - pos: 9.5,-38.5 - parent: 8364 - type: Transform -- uid: 11973 - type: Table - components: - - pos: -6.5,3.5 - parent: 8364 - type: Transform -- uid: 11974 - type: Table - components: - - pos: -3.5,9.5 - parent: 8364 - type: Transform -- uid: 11975 - type: Table - components: - - pos: -4.5,9.5 - parent: 8364 - type: Transform -- uid: 11976 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,17.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11977 - type: WallReinforced - components: - - pos: -13.5,5.5 - parent: 8364 - type: Transform -- uid: 11978 - type: WallReinforced - components: - - pos: -8.5,5.5 - parent: 8364 - type: Transform -- uid: 11979 - type: Grille - components: - - pos: -12.5,5.5 - parent: 8364 - type: Transform -- uid: 11980 - type: AirlockScienceGlassLocked - components: - - pos: -13.5,1.5 - parent: 8364 - type: Transform -- uid: 11981 - type: CableApcStack - components: - - pos: -3.599309,8.864815 - parent: 8364 - type: Transform -- uid: 11982 - type: OxygenCanister - components: - - pos: -6.5,6.5 - parent: 8364 - type: Transform -- uid: 11983 - type: ReinforcedWindow - components: - - pos: -9.5,3.5 - parent: 8364 - type: Transform -- uid: 11984 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -8.5,2.5 - parent: 8364 - type: Transform -- uid: 11985 - type: ReinforcedWindow - components: - - pos: 21.5,-15.5 - parent: 8364 - type: Transform -- uid: 11986 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 35.5,-11.5 - parent: 8364 - type: Transform -- uid: 11987 - type: CableMVStack - components: - - pos: -3.489934,8.66169 - parent: 8364 - type: Transform -- uid: 11988 - type: LockerWeldingSuppliesFilled - components: - - pos: -6.5,7.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11989 - type: CableApcExtension - components: - - pos: -38.5,-31.5 - parent: 8364 - type: Transform -- uid: 11990 - type: CableHV - components: - - pos: -51.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11991 - type: Rack - components: - - pos: -14.5,2.5 - parent: 8364 - type: Transform -- uid: 11992 - type: CableHV - components: - - pos: -50.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11993 - type: CableHV - components: - - pos: -51.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11994 - type: Rack - components: - - pos: -8.5,7.5 - parent: 8364 - type: Transform -- uid: 11995 - type: ClothingOuterHardsuitEVA - components: - - pos: -14.422967,6.5873256 - parent: 8364 - type: Transform -- uid: 11996 - type: ClothingOuterHardsuitEVA - components: - - pos: -8.376092,7.587326 - parent: 8364 - type: Transform -- uid: 11997 - type: CableHVStack - components: - - pos: -3.364934,8.44294 - parent: 8364 - type: Transform -- uid: 11998 - type: CrateEngineeringShuttle - components: - - pos: -67.5,16.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11999 - type: ClothingHeadHelmetEVA - components: - - pos: -14.641717,7.696701 - parent: 8364 - type: Transform -- uid: 12000 - type: ClothingOuterHardsuitEVA - components: - - pos: -14.360467,7.556076 - parent: 8364 - type: Transform -- uid: 12001 - type: TableReinforced - components: - - pos: -12.5,6.5 - parent: 8364 - type: Transform -- uid: 12002 - type: CableHV - components: - - pos: -52.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12003 - type: CableHV - components: - - pos: -51.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12004 - type: Rack - components: - - pos: -14.5,3.5 - parent: 8364 - type: Transform -- uid: 12005 - type: ClothingHeadHelmetEVA - components: - - pos: -14.657342,6.6810756 - parent: 8364 - type: Transform -- uid: 12006 - type: ClothingOuterHardsuitEVA - components: - - pos: -8.391717,6.5717006 - parent: 8364 - type: Transform -- uid: 12007 - type: TableReinforced - components: - - pos: -10.5,6.5 - parent: 8364 - type: Transform -- uid: 12008 - type: CableHV - components: - - pos: -53.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12009 - type: CableHV - components: - - pos: -52.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12010 - type: Rack - components: - - pos: -8.5,2.5 - parent: 8364 - type: Transform -- uid: 12011 - type: CableHV - components: - - pos: -55.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12012 - type: CableHV - components: - - pos: -54.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12013 - type: CableHV - components: - - pos: -55.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12014 - type: CableHV - components: - - pos: -54.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12015 - type: CableHV - components: - - pos: -53.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12016 - type: CableHV - components: - - pos: -43.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12017 - type: CableHV - components: - - pos: -45.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12018 - type: CableHV - components: - - pos: -44.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12019 - type: CableHV - components: - - pos: -43.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12020 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -51.5,22.5 - parent: 8364 - type: Transform -- uid: 12021 - type: CableHV - components: - - pos: -43.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12022 - type: CableHV - components: - - pos: -44.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12023 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -14.5,2.5 - parent: 8364 - type: Transform -- uid: 12024 - type: AirlockHeadOfPersonnelGlassLocked - components: - - pos: -11.5,5.5 - parent: 8364 - type: Transform -- uid: 12025 - type: CableHV - components: - - pos: -45.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12026 - type: CableHV - components: - - pos: -46.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12027 - type: AirlockSecurityGlassLocked - components: - - pos: -9.5,4.5 - parent: 8364 - type: Transform -- uid: 12028 - type: WallReinforced - components: - - pos: -9.5,5.5 - parent: 8364 - type: Transform -- uid: 12029 - type: WallReinforced - components: - - pos: -14.5,5.5 - parent: 8364 - type: Transform -- uid: 12030 - type: WindowReinforcedDirectional - components: - - pos: -14.5,3.5 - parent: 8364 - type: Transform -- uid: 12031 - type: CableHV - components: - - pos: -46.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12032 - type: Grille - components: - - pos: -10.5,5.5 - parent: 8364 - type: Transform -- uid: 12033 - type: AirlockMedicalGlassLocked - components: - - pos: -13.5,4.5 - parent: 8364 - type: Transform -- uid: 12034 - type: Table - components: - - pos: -5.5,3.5 - parent: 8364 - type: Transform -- uid: 12035 - type: ReinforcedWindow - components: - - pos: -10.5,5.5 - parent: 8364 - type: Transform -- uid: 12036 - type: CableHV - components: - - pos: -48.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12037 - type: CableHV - components: - - pos: -47.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12038 - type: CableHV - components: - - pos: -47.5,30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12039 - type: CableHV - components: - - pos: -47.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12040 - type: CableHV - components: - - pos: -45.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12041 - type: CableHV - components: - - pos: -44.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12042 - type: CableHV - components: - - pos: -47.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12043 - type: CableHV - components: - - pos: -46.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12044 - type: CableHV - components: - - pos: -43.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12045 - type: WallReinforced - components: - - pos: -22.5,15.5 - parent: 8364 - type: Transform -- uid: 12046 - type: WallReinforced - components: - - pos: -22.5,12.5 - parent: 8364 - type: Transform -- uid: 12047 - type: Catwalk - components: - - pos: 10.5,-38.5 - parent: 8364 - type: Transform -- uid: 12048 - type: WallReinforced - components: - - pos: -23.5,11.5 - parent: 8364 - type: Transform -- uid: 12049 - type: WallReinforced - components: - - pos: -42.5,15.5 - parent: 8364 - type: Transform -- uid: 12050 - type: WallReinforced - components: - - pos: -29.5,25.5 - parent: 8364 - type: Transform -- uid: 12051 - type: PosterLegitCleanliness - components: - - pos: -51.5,-3.5 - parent: 8364 - type: Transform -- uid: 12052 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -39.5,20.5 - parent: 8364 - type: Transform -- uid: 12053 - type: SignDirectionalEng - components: - - pos: -19.49536,-3.7142625 - parent: 8364 - type: Transform -- uid: 12054 - type: PowerCellRecharger - components: - - pos: -4.5,9.5 - parent: 8364 - type: Transform -- uid: 12055 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: -19.49536,-3.2767625 - parent: 8364 - type: Transform -- uid: 12056 - type: Table - components: - - pos: -3.5,8.5 - parent: 8364 - type: Transform -- uid: 12057 - type: AirlockAtmosphericsLocked - components: - - pos: -43.5,13.5 - parent: 8364 - type: Transform -- uid: 12058 - type: Catwalk - components: - - pos: 11.5,-38.5 - parent: 8364 - type: Transform -- uid: 12059 - type: Catwalk - components: - - pos: 12.5,-38.5 - parent: 8364 - type: Transform -- uid: 12060 - type: Catwalk - components: - - pos: 13.5,-38.5 - parent: 8364 - type: Transform -- uid: 12061 - type: Catwalk - components: - - pos: 14.5,-38.5 - parent: 8364 - type: Transform -- uid: 12062 - type: Catwalk - components: - - pos: 15.5,-38.5 - parent: 8364 - type: Transform -- uid: 12063 - type: Catwalk - components: - - pos: 16.5,-38.5 - parent: 8364 - type: Transform -- uid: 12064 - type: FirelockGlass - components: - - pos: 65.5,-58.5 - parent: 8364 - type: Transform -- uid: 12065 - type: ComputerMedicalRecords - components: - - pos: 3.5,-4.5 - parent: 8364 - type: Transform -- uid: 12066 - type: Catwalk - components: - - pos: 19.5,-38.5 - parent: 8364 - type: Transform -- uid: 12067 - type: Catwalk - components: - - pos: 20.5,-38.5 - parent: 8364 - type: Transform -- uid: 12068 - type: Catwalk - components: - - pos: 21.5,-38.5 - parent: 8364 - type: Transform -- uid: 12069 - type: Catwalk - components: - - pos: 22.5,-38.5 - parent: 8364 - type: Transform -- uid: 12070 - type: CableMV - components: - - pos: -7.5,8.5 - parent: 8364 - type: Transform -- uid: 12071 - type: CableMV - components: - - pos: -8.5,8.5 - parent: 8364 - type: Transform -- uid: 12072 - type: CableMV - components: - - pos: -9.5,8.5 - parent: 8364 - type: Transform -- uid: 12073 - type: CableMV - components: - - pos: -10.5,8.5 - parent: 8364 - type: Transform -- uid: 12074 - type: CableMV - components: - - pos: -11.5,8.5 - parent: 8364 - type: Transform -- uid: 12075 - type: CableMV - components: - - pos: -12.5,8.5 - parent: 8364 - type: Transform -- uid: 12076 - type: CableMV - components: - - pos: -13.5,8.5 - parent: 8364 - type: Transform -- uid: 12077 - type: CableMV - components: - - pos: -14.5,8.5 - parent: 8364 - type: Transform -- uid: 12078 - type: CableMV - components: - - pos: -15.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12079 - type: CableMV - components: - - pos: -16.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12080 - type: CableMV - components: - - pos: -16.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12081 - type: CableMV - components: - - pos: -16.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12082 - type: WallSolid - components: - - pos: -51.5,0.5 - parent: 8364 - type: Transform -- uid: 12083 - type: CableHV - components: - - pos: -15.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12084 - type: AtmosFixBlockerMarker - components: - - pos: 27.5,-50.5 - parent: 8364 - type: Transform -- uid: 12085 - type: AtmosFixBlockerMarker - components: - - pos: 28.5,-52.5 - parent: 8364 - type: Transform -- uid: 12086 - type: NuclearBomb - components: - - pos: -31.5,5.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 12087 - type: IngotGold - components: - - pos: -33.561745,4.7582693 - parent: 8364 - type: Transform -- uid: 12088 - type: Catwalk - components: - - pos: 23.5,-38.5 - parent: 8364 - type: Transform -- uid: 12089 - type: IngotSilver - components: - - pos: -29.522873,5.5863943 - parent: 8364 - type: Transform -- uid: 12090 - type: Catwalk - components: - - pos: 24.5,-38.5 - parent: 8364 - type: Transform -- uid: 12091 - type: Catwalk - components: - - pos: 25.5,-38.5 - parent: 8364 - type: Transform -- uid: 12092 - type: Catwalk - components: - - pos: 26.5,-38.5 - parent: 8364 - type: Transform -- uid: 12093 - type: Catwalk - components: - - pos: 27.5,-38.5 - parent: 8364 - type: Transform -- uid: 12094 - type: Catwalk - components: - - pos: 28.5,-38.5 - parent: 8364 - type: Transform -- uid: 12095 - type: Catwalk - components: - - pos: 29.5,-38.5 - parent: 8364 - type: Transform -- uid: 12096 - type: APCBasic - components: - - pos: -31.5,7.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 15 - supplyRampPosition: 1.142588 - type: PowerNetworkBattery -- uid: 12097 - type: CableApcExtension - components: - - pos: -31.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12098 - type: CableApcExtension - components: - - pos: -30.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12099 - type: CableApcExtension - components: - - pos: -33.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12100 - type: CableApcExtension - components: - - pos: -30.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12101 - type: CableApcExtension - components: - - pos: -29.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12102 - type: CableApcExtension - components: - - pos: -28.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12103 - type: CableApcExtension - components: - - pos: -27.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12104 - type: CableApcExtension - components: - - pos: -35.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12105 - type: CableApcExtension - components: - - pos: -35.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12106 - type: CableApcExtension - components: - - pos: -34.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12107 - type: CableApcExtension - components: - - pos: -34.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12108 - type: CableApcExtension - components: - - pos: -33.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12109 - type: CableApcExtension - components: - - pos: -31.5,6.5 - parent: 8364 - type: Transform -- uid: 12110 - type: CableApcExtension - components: - - pos: -31.5,5.5 - parent: 8364 - type: Transform -- uid: 12111 - type: CableApcExtension - components: - - pos: -31.5,4.5 - parent: 8364 - type: Transform -- uid: 12112 - type: CableApcExtension - components: - - pos: -31.5,3.5 - parent: 8364 - type: Transform -- uid: 12113 - type: CableApcExtension - components: - - pos: -31.5,2.5 - parent: 8364 - type: Transform -- uid: 12114 - type: CableApcExtension - components: - - pos: -31.5,1.5 - parent: 8364 - type: Transform -- uid: 12115 - type: CableApcExtension - components: - - pos: -32.5,1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12116 - type: CableApcExtension - components: - - pos: -30.5,1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12117 - type: CableApcExtension - components: - - pos: -30.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12118 - type: CableApcExtension - components: - - pos: -29.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12119 - type: CableApcExtension - components: - - pos: -28.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12120 - type: CableApcExtension - components: - - pos: -27.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12121 - type: CableApcExtension - components: - - pos: -32.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12122 - type: CableApcExtension - components: - - pos: -33.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12123 - type: CableApcExtension - components: - - pos: -34.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12124 - type: CableApcExtension - components: - - pos: -35.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12125 - type: Poweredlight - components: - - pos: -31.5,6.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12126 - type: CableMV - components: - - pos: -17.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12127 - type: CableMV - components: - - pos: -18.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12128 - type: CableMV - components: - - pos: -19.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12129 - type: CableMV - components: - - pos: -20.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12130 - type: CableMV - components: - - pos: -21.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12131 - type: CableMV - components: - - pos: -22.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12132 - type: CableMV - components: - - pos: -23.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12133 - type: CableMV - components: - - pos: -24.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12134 - type: CableMV - components: - - pos: -25.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12135 - type: CableMV - components: - - pos: -25.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12136 - type: CableMV - components: - - pos: -25.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12137 - type: CableMV - components: - - pos: -25.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12138 - type: CableMV - components: - - pos: -25.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12139 - type: CableMV - components: - - pos: -25.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12140 - type: CableMV - components: - - pos: -25.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12141 - type: CableMV - components: - - pos: -25.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12142 - type: CableMV - components: - - pos: -25.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12143 - type: CableMV - components: - - pos: -25.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12144 - type: CableMV - components: - - pos: -25.5,1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12145 - type: CableMV - components: - - pos: -25.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12146 - type: CableMV - components: - - pos: -25.5,-0.5 - parent: 8364 - type: Transform -- uid: 12147 - type: CableMV - components: - - pos: -25.5,-1.5 - parent: 8364 - type: Transform -- uid: 12148 - type: CableMV - components: - - pos: -26.5,-1.5 - parent: 8364 - type: Transform -- uid: 12149 - type: CableMV - components: - - pos: -27.5,-1.5 - parent: 8364 - type: Transform -- uid: 12150 - type: CableMV - components: - - pos: -28.5,-1.5 - parent: 8364 - type: Transform -- uid: 12151 - type: CableMV - components: - - pos: -29.5,-1.5 - parent: 8364 - type: Transform -- uid: 12152 - type: CableMV - components: - - pos: -30.5,-1.5 - parent: 8364 - type: Transform -- uid: 12153 - type: CableMV - components: - - pos: -31.5,-1.5 - parent: 8364 - type: Transform -- uid: 12154 - type: CableMV - components: - - pos: -31.5,-0.5 - parent: 8364 - type: Transform -- uid: 12155 - type: CableMV - components: - - pos: -31.5,0.5 - parent: 8364 - type: Transform -- uid: 12156 - type: CableMV - components: - - pos: -31.5,1.5 - parent: 8364 - type: Transform -- uid: 12157 - type: CableMV - components: - - pos: -31.5,2.5 - parent: 8364 - type: Transform -- uid: 12158 - type: CableMV - components: - - pos: -31.5,3.5 - parent: 8364 - type: Transform -- uid: 12159 - type: CableMV - components: - - pos: -31.5,4.5 - parent: 8364 - type: Transform -- uid: 12160 - type: CableMV - components: - - pos: -31.5,5.5 - parent: 8364 - type: Transform -- uid: 12161 - type: CableMV - components: - - pos: -31.5,6.5 - parent: 8364 - type: Transform -- uid: 12162 - type: CableMV - components: - - pos: -31.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12163 - type: Catwalk - components: - - pos: 30.5,-38.5 - parent: 8364 - type: Transform -- uid: 12164 - type: DrinkGoldenCup - components: - - pos: -33.51487,5.3832693 - parent: 8364 - type: Transform -- uid: 12165 - type: ToolboxGoldFilled - components: - - pos: -33.54612,4.2426443 - parent: 8364 - type: Transform -- uid: 12166 - type: CableMV - components: - - pos: -4.5,17.5 - parent: 8364 - type: Transform -- uid: 12167 - type: CableMV - components: - - pos: -4.5,16.5 - parent: 8364 - type: Transform -- uid: 12168 - type: CableMV - components: - - pos: -4.5,15.5 - parent: 8364 - type: Transform -- uid: 12169 - type: CableMV - components: - - pos: -5.5,15.5 - parent: 8364 - type: Transform -- uid: 12170 - type: CableMV - components: - - pos: -6.5,15.5 - parent: 8364 - type: Transform -- uid: 12171 - type: CableMV - components: - - pos: -7.5,15.5 - parent: 8364 - type: Transform -- uid: 12172 - type: CableMV - components: - - pos: -8.5,15.5 - parent: 8364 - type: Transform -- uid: 12173 - type: CableMV - components: - - pos: -8.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12174 - type: CableMV - components: - - pos: -13.5,19.5 - parent: 8364 - type: Transform -- uid: 12175 - type: CableMV - components: - - pos: -13.5,18.5 - parent: 8364 - type: Transform -- uid: 12176 - type: CableMV - components: - - pos: -13.5,17.5 - parent: 8364 - type: Transform -- uid: 12177 - type: CableMV - components: - - pos: -13.5,16.5 - parent: 8364 - type: Transform -- uid: 12178 - type: CableMV - components: - - pos: -13.5,15.5 - parent: 8364 - type: Transform -- uid: 12179 - type: CableMV - components: - - pos: -45.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12180 - type: CableMV - components: - - pos: -43.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12181 - type: CableMV - components: - - pos: -43.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12182 - type: CableMV - components: - - pos: -44.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12183 - type: CableHV - components: - - pos: -44.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12184 - type: CableHV - components: - - pos: -43.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12185 - type: CableHV - components: - - pos: -45.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12186 - type: CableMV - components: - - pos: -46.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12187 - type: CableMV - components: - - pos: -42.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12188 - type: CableMV - components: - - pos: -41.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12189 - type: Catwalk - components: - - pos: 31.5,-38.5 - parent: 8364 - type: Transform -- uid: 12190 - type: CableApcExtension - components: - - pos: -62.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12191 - type: Catwalk - components: - - pos: 32.5,-38.5 - parent: 8364 - type: Transform -- uid: 12192 - type: CableApcExtension - components: - - pos: -60.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12193 - type: CableApcExtension - components: - - pos: -61.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12194 - type: CableApcExtension - components: - - pos: -58.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12195 - type: CableApcExtension - components: - - pos: -60.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12196 - type: CableApcExtension - components: - - pos: -61.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12197 - type: CableApcExtension - components: - - pos: -61.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12198 - type: CableApcExtension - components: - - pos: -61.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12199 - type: CableApcExtension - components: - - pos: -61.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12200 - type: CableApcExtension - components: - - pos: -61.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12201 - type: CableApcExtension - components: - - pos: -61.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12202 - type: CableApcExtension - components: - - pos: -46.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12203 - type: Chair - components: - - pos: -57.5,17.5 - parent: 8364 - type: Transform -- uid: 12204 - type: CableApcExtension - components: - - pos: -44.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12205 - type: CableApcExtension - components: - - pos: -40.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12206 - type: CableApcExtension - components: - - pos: -41.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12207 - type: CableApcExtension - components: - - pos: -43.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12208 - type: CableApcExtension - components: - - pos: -43.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12209 - type: CableApcExtension - components: - - pos: -42.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12210 - type: CableMV - components: - - pos: -39.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12211 - type: CableMV - components: - - pos: -40.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12212 - type: Catwalk - components: - - pos: 32.5,-39.5 - parent: 8364 - type: Transform -- uid: 12213 - type: Catwalk - components: - - pos: 32.5,-40.5 - parent: 8364 - type: Transform -- uid: 12214 - type: CableApcExtension - components: - - pos: -56.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12215 - type: CableApcExtension - components: - - pos: -59.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12216 - type: CableApcExtension - components: - - pos: -57.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12217 - type: CableApcExtension - components: - - pos: -57.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12218 - type: Catwalk - components: - - pos: 32.5,-41.5 - parent: 8364 - type: Transform -- uid: 12219 - type: CableApcExtension - components: - - pos: -51.5,14.5 - parent: 8364 - type: Transform -- uid: 12220 - type: CableApcExtension - components: - - pos: -46.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12221 - type: CableApcExtension - components: - - pos: -48.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12222 - type: CableApcExtension - components: - - pos: -49.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12223 - type: WindowReinforcedDirectional - components: - - pos: -54.5,12.5 - parent: 8364 - type: Transform -- uid: 12224 - type: Catwalk - components: - - pos: 32.5,-42.5 - parent: 8364 - type: Transform -- uid: 12225 - type: ShardGlassReinforced - components: - - pos: -55.265812,16.848715 - parent: 8364 - type: Transform -- uid: 12226 - type: CableApcExtension - components: - - pos: -50.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12227 - type: WallSolid - components: - - pos: -49.5,13.5 - parent: 8364 - type: Transform -- uid: 12228 - type: Table - components: - - pos: -42.5,1.5 - parent: 8364 - type: Transform -- uid: 12229 - type: Table - components: - - pos: -41.5,1.5 - parent: 8364 - type: Transform -- uid: 12230 - type: Table - components: - - pos: -37.5,2.5 - parent: 8364 - type: Transform -- uid: 12231 - type: Table - components: - - pos: -37.5,3.5 - parent: 8364 - type: Transform -- uid: 12232 - type: Table - components: - - pos: -39.5,5.5 - parent: 8364 - type: Transform -- uid: 12233 - type: Table - components: - - pos: -40.5,5.5 - parent: 8364 - type: Transform -- uid: 12234 - type: Table - components: - - pos: -41.5,5.5 - parent: 8364 - type: Transform -- uid: 12235 - type: Table - components: - - pos: -42.5,5.5 - parent: 8364 - type: Transform -- uid: 12236 - type: Table - components: - - pos: -43.5,5.5 - parent: 8364 - type: Transform -- uid: 12237 - type: Table - components: - - pos: -44.5,5.5 - parent: 8364 - type: Transform -- uid: 12238 - type: Table - components: - - pos: -46.5,3.5 - parent: 8364 - type: Transform -- uid: 12239 - type: Table - components: - - pos: -46.5,2.5 - parent: 8364 - type: Transform -- uid: 12240 - type: Table - components: - - pos: -46.5,1.5 - parent: 8364 - type: Transform -- uid: 12241 - type: Catwalk - components: - - pos: 32.5,-43.5 - parent: 8364 - type: Transform -- uid: 12242 - type: Catwalk - components: - - pos: 32.5,-44.5 - parent: 8364 - type: Transform -- uid: 12243 - type: Catwalk - components: - - pos: 32.5,-45.5 - parent: 8364 - type: Transform -- uid: 12244 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -38.5,5.5 - parent: 8364 - type: Transform -- uid: 12245 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: -37.5,5.5 - parent: 8364 - type: Transform -- uid: 12246 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: -46.5,5.5 - parent: 8364 - type: Transform -- uid: 12247 - type: DisposalUnit - components: - - pos: -37.5,1.5 - parent: 8364 - type: Transform -- uid: 12248 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -37.5,1.5 - parent: 8364 - type: Transform -- uid: 12249 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -38.5,1.5 - parent: 8364 - type: Transform -- uid: 12250 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -38.5,0.5 - parent: 8364 - type: Transform -- uid: 12251 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -38.5,-0.5 - parent: 8364 - type: Transform -- uid: 12252 - type: ToolboxMechanicalFilled - components: - - pos: -37.5,3.5000002 - parent: 8364 - type: Transform -- uid: 12253 - type: ToolboxMechanicalFilled - components: - - pos: -39.5,5.5 - parent: 8364 - type: Transform -- uid: 12254 - type: ToolboxElectricalFilled - components: - - pos: -46.5,2.5 - parent: 8364 - type: Transform -- uid: 12255 - type: CableHVStack - components: - - pos: -46.676056,3.7484043 - parent: 8364 - type: Transform -- uid: 12256 - type: CableMVStack - components: - - pos: -46.519806,3.6077793 - parent: 8364 - type: Transform -- uid: 12257 - type: CableApcStack - components: - - pos: -46.301056,3.4515293 - parent: 8364 - type: Transform -- uid: 12258 - type: Screwdriver - components: - - pos: -46.457306,2.9827793 - parent: 8364 - type: Transform -- uid: 12259 - type: GasAnalyzer - components: - - pos: -46.50418,1.7327793 - parent: 8364 - type: Transform -- uid: 12260 - type: ReinforcedWindow - components: - - pos: -12.5,5.5 - parent: 8364 - type: Transform -- uid: 12261 - type: ClothingHandsGlovesColorYellow - components: - - pos: -42.47281,1.4692228 - parent: 8364 - type: Transform -- uid: 12262 - type: Wrench - components: - - pos: -40.403015,5.626782 - parent: 8364 - type: Transform -- uid: 12263 - type: Crowbar - components: - - pos: -41.50533,1.5813448 - parent: 8364 - type: Transform -- uid: 12264 - type: MedkitFilled - components: - - pos: -41.335575,1.3768375 - parent: 8364 - type: Transform -- uid: 12265 - type: ClothingBeltUtilityFilled - components: - - pos: -44.48522,5.693037 - parent: 8364 - type: Transform -- uid: 12266 - type: trayScanner - components: - - pos: -43.679325,5.6580877 - parent: 8364 - type: Transform -- uid: 12267 - type: FlashlightLantern - components: - - pos: -43.273075,5.5487127 - parent: 8364 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 12268 - type: Wirecutter - components: - - pos: -42.44495,5.5643377 - parent: 8364 - type: Transform -- uid: 12269 - type: PowerCellRecharger - components: - - pos: -40.5,5.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12270 - type: Multitool - components: - - pos: -41.8512,5.5330877 - parent: 8364 - type: Transform -- uid: 12271 - type: Multitool - components: - - pos: -37.715458,2.9862125 - parent: 8364 - type: Transform -- uid: 12272 - type: Welder - components: - - pos: -37.277958,2.8924625 - parent: 8364 - type: Transform -- uid: 12273 - type: Crowbar - components: - - pos: -37.449833,2.5174625 - parent: 8364 - type: Transform -- uid: 12274 - type: ClothingBeltUtility - components: - - pos: -41.215458,5.5174627 - parent: 8364 - type: Transform -- uid: 12275 - type: APCBasic - components: - - name: Primary Tool Storage APC - type: MetaData - - pos: -43.5,6.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 30 - supplyRampPosition: 18.132214 - type: PowerNetworkBattery -- uid: 12276 - type: CableApcExtension - components: - - pos: -43.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12277 - type: CableApcExtension - components: - - pos: -43.5,5.5 - parent: 8364 - type: Transform -- uid: 12278 - type: CableApcExtension - components: - - pos: -43.5,4.5 - parent: 8364 - type: Transform -- uid: 12279 - type: CableApcExtension - components: - - pos: -44.5,4.5 - parent: 8364 - type: Transform -- uid: 12280 - type: CableApcExtension - components: - - pos: -45.5,1.5 - parent: 8364 - type: Transform -- uid: 12281 - type: CableApcExtension - components: - - pos: -45.5,2.5 - parent: 8364 - type: Transform -- uid: 12282 - type: CableApcExtension - components: - - pos: -45.5,4.5 - parent: 8364 - type: Transform -- uid: 12283 - type: CableApcExtension - components: - - pos: -44.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12284 - type: CableApcExtension - components: - - pos: -45.5,0.5 - parent: 8364 - type: Transform -- uid: 12285 - type: CableApcExtension - components: - - pos: -46.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12286 - type: CableApcExtension - components: - - pos: -45.5,3.5 - parent: 8364 - type: Transform -- uid: 12287 - type: CableApcExtension - components: - - pos: -42.5,4.5 - parent: 8364 - type: Transform -- uid: 12288 - type: CableApcExtension - components: - - pos: -41.5,4.5 - parent: 8364 - type: Transform -- uid: 12289 - type: CableApcExtension - components: - - pos: -40.5,4.5 - parent: 8364 - type: Transform -- uid: 12290 - type: CableApcExtension - components: - - pos: -39.5,4.5 - parent: 8364 - type: Transform -- uid: 12291 - type: CableApcExtension - components: - - pos: -38.5,4.5 - parent: 8364 - type: Transform -- uid: 12292 - type: CableApcExtension - components: - - pos: -38.5,3.5 - parent: 8364 - type: Transform -- uid: 12293 - type: CableApcExtension - components: - - pos: -38.5,2.5 - parent: 8364 - type: Transform -- uid: 12294 - type: CableApcExtension - components: - - pos: -38.5,1.5 - parent: 8364 - type: Transform -- uid: 12295 - type: CableApcExtension - components: - - pos: -38.5,0.5 - parent: 8364 - type: Transform -- uid: 12296 - type: CableApcExtension - components: - - pos: -39.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12297 - type: CableApcExtension - components: - - pos: -37.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12298 - type: CableMV - components: - - pos: -43.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12299 - type: CableMV - components: - - pos: -42.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12300 - type: CableMV - components: - - pos: -41.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12301 - type: CableMV - components: - - pos: -40.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12302 - type: CableMV - components: - - pos: -39.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12303 - type: CableMV - components: - - pos: -38.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12304 - type: CableMV - components: - - pos: -38.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12305 - type: CableMV - components: - - pos: -38.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12306 - type: CableMV - components: - - pos: -38.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12307 - type: CableMV - components: - - pos: -37.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12308 - type: CableMV - components: - - pos: -36.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12309 - type: CableMV - components: - - pos: -35.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12310 - type: CableMV - components: - - pos: -34.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12311 - type: CableMV - components: - - pos: -33.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12312 - type: CableMV - components: - - pos: -32.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12313 - type: CableMV - components: - - pos: -31.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12314 - type: CableMV - components: - - pos: -30.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12315 - type: CableMV - components: - - pos: -29.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12316 - type: CableMV - components: - - pos: -28.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12317 - type: CableMV - components: - - pos: -27.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12318 - type: CableMV - components: - - pos: -26.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12319 - type: CableMV - components: - - pos: -43.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12320 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12321 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -41.5,1.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12322 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,4.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12323 - type: AirlockGlass - components: - - name: Primary Tool Storage - type: MetaData - - pos: -45.5,0.5 - parent: 8364 - type: Transform -- uid: 12324 - type: AirlockGlass - components: - - name: Primary Tool Storage - type: MetaData - - pos: -38.5,0.5 - parent: 8364 - type: Transform -- uid: 12325 - type: AirlockMaintLocked - components: - - name: Primary Tool Storage Maintenance - type: MetaData - - pos: -45.5,6.5 - parent: 8364 - type: Transform -- uid: 12326 - type: CableApcExtension - components: - - pos: -41.5,3.5 - parent: 8364 - type: Transform -- uid: 12327 - type: CableApcExtension - components: - - pos: -41.5,2.5 - parent: 8364 - type: Transform -- uid: 12328 - type: Catwalk - components: - - pos: 32.5,-46.5 - parent: 8364 - type: Transform -- uid: 12329 - type: AirlockSecurityGlassLocked - components: - - name: Security Checkpoint - type: MetaData - - pos: -60.5,2.5 - parent: 8364 - type: Transform -- uid: 12330 - type: WindoorSecurityLocked - components: - - name: Security Checkpoint Desk - type: MetaData - - rot: 3.141592653589793 rad - pos: -58.5,2.5 - parent: 8364 - type: Transform -- uid: 12331 - type: AirlockMaintSecLocked - components: - - name: Security Checkpoint Maintenance - type: MetaData - - pos: -56.5,6.5 - parent: 8364 - type: Transform -- uid: 12332 - type: Catwalk - components: - - pos: 32.5,-47.5 - parent: 8364 - type: Transform -- uid: 12333 - type: APCBasic - components: - - name: Security Checkpoint APC - type: MetaData - - pos: -57.5,6.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 25 - supplyRampPosition: 9.296312 - type: PowerNetworkBattery -- uid: 12334 - type: CableApcExtension - components: - - pos: -57.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12335 - type: CableApcExtension - components: - - pos: -57.5,5.5 - parent: 8364 - type: Transform -- uid: 12336 - type: CableApcExtension - components: - - pos: -57.5,4.5 - parent: 8364 - type: Transform -- uid: 12337 - type: CableApcExtension - components: - - pos: -57.5,3.5 - parent: 8364 - type: Transform -- uid: 12338 - type: CableApcExtension - components: - - pos: -57.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12339 - type: CableApcExtension - components: - - pos: -58.5,2.5 - parent: 8364 - type: Transform -- uid: 12340 - type: CableApcExtension - components: - - pos: -59.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12341 - type: CableApcExtension - components: - - pos: -58.5,4.5 - parent: 8364 - type: Transform -- uid: 12342 - type: CableApcExtension - components: - - pos: -59.5,4.5 - parent: 8364 - type: Transform -- uid: 12343 - type: CableApcExtension - components: - - pos: -60.5,4.5 - parent: 8364 - type: Transform -- uid: 12344 - type: Grille - components: - - pos: -59.5,2.5 - parent: 8364 - type: Transform -- uid: 12345 - type: Grille - components: - - pos: -57.5,2.5 - parent: 8364 - type: Transform -- uid: 12346 - type: TableReinforced - components: - - pos: -58.5,2.5 - parent: 8364 - type: Transform -- uid: 12347 - type: Table - components: - - pos: -59.5,3.5 - parent: 8364 - type: Transform -- uid: 12348 - type: Table - components: - - pos: -57.5,3.5 - parent: 8364 - type: Transform -- uid: 12349 - type: Table - components: - - pos: -56.5,3.5 - parent: 8364 - type: Transform -- uid: 12350 - type: LockerSecurityFilled - components: - - pos: -61.5,5.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 12351 - type: Poweredlight - components: - - pos: -59.5,5.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12352 - type: Catwalk - components: - - pos: 32.5,-48.5 - parent: 8364 - type: Transform -- uid: 12353 - type: WeaponCapacitorRecharger - components: - - pos: -57.5,3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12354 - type: RadioHandheld - components: - - pos: -56.5,3.5000002 - parent: 8364 - type: Transform -- uid: 12355 - type: Pen - components: - - pos: -56.5,3.5000002 - parent: 8364 - type: Transform -- uid: 12356 - type: Flash - components: - - rot: 0.00028195229242555797 rad - pos: -56.26376,3.5820982 - parent: 8364 - type: Transform -- uid: 12357 - type: Crowbar - components: - - pos: -56.729946,3.644562 - parent: 8364 - type: Transform -- uid: 12358 - type: Pen - components: - - pos: -59.58932,3.613312 - parent: 8364 - type: Transform -- uid: 12359 - type: Paper - components: - - pos: -59.354946,3.707062 - parent: 8364 - type: Transform -- uid: 12360 - type: Paper - components: - - pos: -59.354946,3.707062 - parent: 8364 - type: Transform -- uid: 12361 - type: Paper - components: - - pos: -59.354946,3.707062 - parent: 8364 - type: Transform -- uid: 12362 - type: ComputerId - components: - - pos: -58.5,5.5 - parent: 8364 - type: Transform -- uid: 12363 - type: Paper - components: - - pos: -58.43307,2.519562 - parent: 8364 - type: Transform -- uid: 12364 - type: SignElectricalMed - components: - - pos: -44.5,11.5 - parent: 8364 - type: Transform -- uid: 12365 - type: CableMV - components: - - pos: -57.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12366 - type: CableMV - components: - - pos: -57.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12367 - type: CableMV - components: - - pos: -57.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12368 - type: CableMV - components: - - pos: -58.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12369 - type: CableMV - components: - - pos: -59.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12370 - type: CableMV - components: - - pos: -60.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12371 - type: CableMV - components: - - pos: -61.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12372 - type: CableMV - components: - - pos: -61.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12373 - type: CableMV - components: - - pos: -61.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12374 - type: CableMV - components: - - pos: -61.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12375 - type: CableMV - components: - - pos: -61.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12376 - type: CableMV - components: - - pos: -61.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12377 - type: CableMV - components: - - pos: -61.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12378 - type: CableMV - components: - - pos: -60.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12379 - type: Catwalk - components: - - pos: 32.5,-49.5 - parent: 8364 - type: Transform -- uid: 12380 - type: CableApcExtension - components: - - pos: -52.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12381 - type: CableApcExtension - components: - - pos: -58.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12382 - type: CableMV - components: - - pos: -48.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12383 - type: CableMV - components: - - pos: -47.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12384 - type: Catwalk - components: - - pos: 32.5,-50.5 - parent: 8364 - type: Transform -- uid: 12385 - type: ShardGlassReinforced - components: - - pos: -53.265812,15.348715 - parent: 8364 - type: Transform -- uid: 12386 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -57.5,16.5 - parent: 8364 - type: Transform -- uid: 12387 - type: WindowReinforcedDirectional - components: - - pos: -53.5,12.5 - parent: 8364 - type: Transform -- uid: 12388 - type: Catwalk - components: - - pos: 32.5,-51.5 - parent: 8364 - type: Transform -- uid: 12389 - type: PuddleVomit - components: - - pos: -54.5,14.5 - parent: 8364 - type: Transform -- uid: 12390 - type: Catwalk - components: - - pos: 32.5,-52.5 - parent: 8364 - type: Transform -- uid: 12391 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -58.5,12.5 - parent: 8364 - type: Transform -- uid: 12392 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -50.5,14.5 - parent: 8364 - type: Transform -- uid: 12393 - type: ShardGlassReinforced - components: - - rot: -1.5707963267948966 rad - pos: -51.5,14.5 - parent: 8364 - type: Transform -- uid: 12394 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -57.5,11.5 - parent: 8364 - type: Transform -- uid: 12395 - type: CableMV - components: - - pos: -47.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12396 - type: CableMV - components: - - pos: -47.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12397 - type: CableMV - components: - - pos: -47.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12398 - type: CableMV - components: - - pos: -47.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12399 - type: CableMV - components: - - pos: -46.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12400 - type: CableMV - components: - - pos: -46.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12401 - type: CableMV - components: - - pos: -46.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12402 - type: CableMV - components: - - pos: -45.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12403 - type: CableMV - components: - - pos: -44.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12404 - type: PottedPlantRandom - components: - - pos: -61.5,3.5 - parent: 8364 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 12405 - type: PottedPlantRandom - components: - - pos: 59.5,-10.5 - parent: 8364 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 12406 - type: PottedPlantRandom - components: - - pos: 73.5,-10.5 - parent: 8364 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 12407 - type: PottedPlantRandom - components: - - pos: 63.5,-10.5 - parent: 8364 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 12408 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 79.5,-15.5 - parent: 8364 - type: Transform -- uid: 12409 - type: CableApcExtension - components: - - pos: -66.5,17.5 - parent: 8364 - type: Transform -- uid: 12410 - type: CableApcExtension - components: - - pos: -51.5,-1.5 - parent: 8364 - type: Transform -- uid: 12411 - type: CableApcExtension - components: - - pos: -66.5,18.5 - parent: 8364 - type: Transform -- uid: 12412 - type: CableApcExtension - components: - - pos: -67.5,17.5 - parent: 8364 - type: Transform -- uid: 12413 - type: Catwalk - components: - - pos: 32.5,-53.5 - parent: 8364 - type: Transform -- uid: 12414 - type: CableApcExtension - components: - - pos: -68.5,18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12415 - type: CableApcExtension - components: - - pos: -66.5,14.5 - parent: 8364 - type: Transform -- uid: 12416 - type: CableApcExtension - components: - - pos: -66.5,13.5 - parent: 8364 - type: Transform -- uid: 12417 - type: CableApcExtension - components: - - pos: -66.5,12.5 - parent: 8364 - type: Transform -- uid: 12418 - type: CableApcExtension - components: - - pos: -66.5,11.5 - parent: 8364 - type: Transform -- uid: 12419 - type: CableApcExtension - components: - - pos: -67.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12420 - type: CableApcExtension - components: - - pos: -67.5,13.5 - parent: 8364 - type: Transform -- uid: 12421 - type: CableApcExtension - components: - - pos: -68.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12422 - type: CableApcExtension - components: - - pos: -68.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12423 - type: CableMV - components: - - pos: -64.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12424 - type: CableApcExtension - components: - - pos: -64.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12425 - type: CableApcExtension - components: - - pos: -65.5,14.5 - parent: 8364 - type: Transform -- uid: 12426 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -67.5,15.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12427 - type: ReinforcedWindow - components: - - pos: -68.5,17.5 - parent: 8364 - type: Transform -- uid: 12428 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -67.5,14.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12429 - type: Thruster - components: - - pos: -67.5,15.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 12430 - type: Grille - components: - - pos: -68.5,17.5 - parent: 8364 - type: Transform -- uid: 12431 - type: Table - components: - - pos: -65.5,12.5 - parent: 8364 - type: Transform -- uid: 12432 - type: Table - components: - - pos: -65.5,13.5 - parent: 8364 - type: Transform -- uid: 12433 - type: Table - components: - - pos: -65.5,14.5 - parent: 8364 - type: Transform -- uid: 12434 - type: ClosetToolFilled - components: - - pos: -67.5,18.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 12435 - type: ClosetToolFilled - components: - - pos: -67.5,17.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 12436 - type: WaterTankFull - components: - - pos: -43.5,1.5 - parent: 8364 - type: Transform -- uid: 12437 - type: WeldingFuelTankFull - components: - - pos: -40.5,1.5 - parent: 8364 - type: Transform -- uid: 12438 - type: Poweredlight - components: - - pos: -69.5,-3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12439 - type: PartRodMetal - components: - - pos: -65.43356,12.4755745 - parent: 8364 - type: Transform -- uid: 12440 - type: SheetGlass - components: - - pos: -65.69919,13.123488 - parent: 8364 - type: Transform -- uid: 12441 - type: SheetRGlass - components: - - pos: -65.35544,13.342238 - parent: 8364 - type: Transform -- uid: 12442 - type: SheetSteel - components: - - pos: -65.63669,13.873488 - parent: 8364 - type: Transform -- uid: 12443 - type: SheetSteel - components: - - pos: -65.43356,13.982863 - parent: 8364 - type: Transform -- uid: 12444 - type: CableApcStack - components: - - rot: -0.02363373152911663 rad - pos: -65.26673,14.742755 - parent: 8364 - type: Transform -- uid: 12445 - type: CableMVStack - components: - - pos: -65.41794,14.607863 - parent: 8364 - type: Transform -- uid: 12446 - type: CableHVStack - components: - - pos: -65.73044,14.545363 - parent: 8364 - type: Transform -- uid: 12447 - type: Rack - components: - - pos: -65.5,18.5 - parent: 8364 - type: Transform -- uid: 12448 - type: ClothingOuterHardsuitEVA - components: - - pos: -65.5,18.5 - parent: 8364 - type: Transform -- uid: 12449 - type: ClothingHeadHelmetEVA - components: - - pos: -65.5,18.5 - parent: 8364 - type: Transform -- uid: 12450 - type: ClothingMaskBreath - components: - - pos: -65.5,18.5 - parent: 8364 - type: Transform -- uid: 12451 - type: EmergencyOxygenTank - components: - - pos: -65.5,18.5 - parent: 8364 - type: Transform -- uid: 12452 - type: AirCanister - components: - - pos: -65.5,17.5 - parent: 8364 - type: Transform -- uid: 12453 - type: WeldingFuelTankFull - components: - - pos: -65.5,16.5 - parent: 8364 - type: Transform -- uid: 12454 - type: ShuttleConsoleCircuitboard - components: - - pos: -67.6619,12.290884 - parent: 8364 - type: Transform -- uid: 12455 - type: Table - components: - - pos: -67.5,12.5 - parent: 8364 - type: Transform -- uid: 12456 - type: SubstationMachineCircuitboard - components: - - pos: -67.42753,12.306509 - parent: 8364 - type: Transform -- uid: 12457 - type: SMESMachineCircuitboard - components: - - pos: -67.4744,12.728384 - parent: 8364 - type: Transform -- uid: 12458 - type: Thruster - components: - - pos: -67.5,13.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 12459 - type: Thruster - components: - - pos: -67.5,14.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 12460 - type: Gyroscope - components: - - pos: -65.5,15.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 12461 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -65.5,18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12462 - type: ClosetFireFilled - components: - - pos: -72.5,-3.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12463 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -74.5,8.5 - parent: 8364 - type: Transform -- uid: 12464 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -78.5,7.5 - parent: 8364 - type: Transform -- uid: 12465 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -80.5,-2.5 - parent: 8364 - type: Transform -- uid: 12466 - type: AirlockExternalGlassLocked - components: - - pos: -77.5,-13.5 - parent: 8364 - type: Transform -- uid: 12467 - type: AirlockExternalGlassLocked - components: - - pos: -68.5,-15.5 - parent: 8364 - type: Transform -- uid: 12468 - type: AirlockExternalGlassLocked - components: - - pos: -75.5,-15.5 - parent: 8364 - type: Transform -- uid: 12469 - type: AirlockExternalShuttleLocked - components: - - pos: -75.5,-17.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 12470 - type: AirlockExternalShuttleLocked - components: - - pos: -68.5,-17.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 12471 - type: AirlockExternalGlassShuttleEscape - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-9.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 12472 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -71.5,-2.5 - parent: 8364 - type: Transform -- uid: 12473 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -73.5,-3.5 - parent: 8364 - type: Transform -- uid: 12474 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -81.5,8.5 - parent: 8364 - type: Transform -- uid: 12475 - type: AtmosDeviceFanTiny - components: - - pos: -70.5,-2.5 - parent: 8364 - type: Transform -- uid: 12476 - type: PottedPlant19 - components: - - pos: -73.51865,8.204316 - parent: 8364 - type: Transform -- uid: 12477 - type: PottedPlant12 - components: - - pos: -74.5,-3.5 - parent: 8364 - type: Transform -- uid: 12478 - type: AtmosDeviceFanTiny - components: - - pos: -77.5,-2.5 - parent: 8364 - type: Transform -- uid: 12479 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -81.5,-5.5 - parent: 8364 - type: Transform -- uid: 12480 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -67.5,7.5 - parent: 8364 - type: Transform -- uid: 12481 - type: Poweredlight - components: - - pos: -69.5,10.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12482 - type: Poweredlight - components: - - pos: -75.5,10.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12483 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -63.5,9.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12484 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -63.5,3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12485 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -74.5,-2.5 - parent: 8364 - type: Transform -- uid: 12486 - type: AirlockExternalShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -81.5,-4.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 12487 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,0.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12488 - type: Poweredlight - components: - - pos: -65.5,-13.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12489 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-9.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12490 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-4.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12491 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -62.5,-5.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12492 - type: Poweredlight - components: - - pos: -62.5,1.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12493 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -74.5,-14.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12494 - type: APCBasic - components: - - name: Arrivals APC - type: MetaData - - pos: -65.5,-2.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 145 - supplyRampPosition: 32.478764 - type: PowerNetworkBattery -- uid: 12495 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -66.5,7.5 - parent: 8364 - type: Transform -- uid: 12496 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -79.5,10.5 - parent: 8364 - type: Transform -- uid: 12497 - type: CableApcExtension - components: - - pos: -64.5,9.5 - parent: 8364 - type: Transform -- uid: 12498 - type: CableApcExtension - components: - - pos: -65.5,9.5 - parent: 8364 - type: Transform -- uid: 12499 - type: CableApcExtension - components: - - pos: -66.5,9.5 - parent: 8364 - type: Transform -- uid: 12500 - type: CableApcExtension - components: - - pos: -67.5,9.5 - parent: 8364 - type: Transform -- uid: 12501 - type: CableApcExtension - components: - - pos: -68.5,9.5 - parent: 8364 - type: Transform -- uid: 12502 - type: CableApcExtension - components: - - pos: -69.5,9.5 - parent: 8364 - type: Transform -- uid: 12503 - type: CableApcExtension - components: - - pos: -70.5,9.5 - parent: 8364 - type: Transform -- uid: 12504 - type: CableApcExtension - components: - - pos: -71.5,9.5 - parent: 8364 - type: Transform -- uid: 12505 - type: CableApcExtension - components: - - pos: -72.5,9.5 - parent: 8364 - type: Transform -- uid: 12506 - type: CableApcExtension - components: - - pos: -73.5,9.5 - parent: 8364 - type: Transform -- uid: 12507 - type: CableApcExtension - components: - - pos: -74.5,9.5 - parent: 8364 - type: Transform -- uid: 12508 - type: CableApcExtension - components: - - pos: -75.5,9.5 - parent: 8364 - type: Transform -- uid: 12509 - type: CableApcExtension - components: - - pos: -76.5,9.5 - parent: 8364 - type: Transform -- uid: 12510 - type: CableApcExtension - components: - - pos: -77.5,9.5 - parent: 8364 - type: Transform -- uid: 12511 - type: PoweredSmallLight - components: - - pos: -80.5,-3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12512 - type: CableApcExtension - components: - - pos: -79.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12513 - type: CableApcExtension - components: - - pos: -75.5,8.5 - parent: 8364 - type: Transform -- uid: 12514 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -66.5,7.5 - parent: 8364 - type: Transform -- uid: 12515 - type: SpawnPointLatejoin - components: - - pos: -75.5,10.5 - parent: 8364 - type: Transform -- uid: 12516 - type: SpawnPointLatejoin - components: - - pos: -74.5,10.5 - parent: 8364 - type: Transform -- uid: 12517 - type: SpawnPointLatejoin - components: - - pos: -73.5,10.5 - parent: 8364 - type: Transform -- uid: 12518 - type: SpawnPointLatejoin - components: - - pos: -72.5,10.5 - parent: 8364 - type: Transform -- uid: 12519 - type: SpawnPointLatejoin - components: - - pos: -75.5,-5.5 - parent: 8364 - type: Transform -- uid: 12520 - type: SpawnPointLatejoin - components: - - pos: -74.5,-5.5 - parent: 8364 - type: Transform -- uid: 12521 - type: SpawnPointLatejoin - components: - - pos: -73.5,-5.5 - parent: 8364 - type: Transform -- uid: 12522 - type: SpawnPointLatejoin - components: - - pos: -72.5,-5.5 - parent: 8364 - type: Transform -- uid: 12523 - type: CableApcExtension - components: - - pos: -69.5,8.5 - parent: 8364 - type: Transform -- uid: 12524 - type: CableApcExtension - components: - - pos: -63.5,8.5 - parent: 8364 - type: Transform -- uid: 12525 - type: CableApcExtension - components: - - pos: -63.5,7.5 - parent: 8364 - type: Transform -- uid: 12526 - type: CableApcExtension - components: - - pos: -63.5,6.5 - parent: 8364 - type: Transform -- uid: 12527 - type: CableApcExtension - components: - - pos: -63.5,5.5 - parent: 8364 - type: Transform -- uid: 12528 - type: CableApcExtension - components: - - pos: -63.5,4.5 - parent: 8364 - type: Transform -- uid: 12529 - type: CableApcExtension - components: - - pos: -63.5,3.5 - parent: 8364 - type: Transform -- uid: 12530 - type: CableApcExtension - components: - - pos: -63.5,2.5 - parent: 8364 - type: Transform -- uid: 12531 - type: CableApcExtension - components: - - pos: -63.5,1.5 - parent: 8364 - type: Transform -- uid: 12532 - type: CableApcExtension - components: - - pos: -63.5,0.5 - parent: 8364 - type: Transform -- uid: 12533 - type: CableMV - components: - - pos: -30.5,-2.5 - parent: 8364 - type: Transform -- uid: 12534 - type: CableApcExtension - components: - - pos: -63.5,-1.5 - parent: 8364 - type: Transform -- uid: 12535 - type: CableApcExtension - components: - - pos: -63.5,-0.5 - parent: 8364 - type: Transform -- uid: 12536 - type: CableApcExtension - components: - - pos: -63.5,-2.5 - parent: 8364 - type: Transform -- uid: 12537 - type: CableApcExtension - components: - - pos: -63.5,-4.5 - parent: 8364 - type: Transform -- uid: 12538 - type: CableApcExtension - components: - - pos: -63.5,-5.5 - parent: 8364 - type: Transform -- uid: 12539 - type: CableApcExtension - components: - - pos: -63.5,-6.5 - parent: 8364 - type: Transform -- uid: 12540 - type: CableApcExtension - components: - - pos: -63.5,-7.5 - parent: 8364 - type: Transform -- uid: 12541 - type: CableApcExtension - components: - - pos: -63.5,-8.5 - parent: 8364 - type: Transform -- uid: 12542 - type: CableApcExtension - components: - - pos: -63.5,-9.5 - parent: 8364 - type: Transform -- uid: 12543 - type: CableApcExtension - components: - - pos: -63.5,-10.5 - parent: 8364 - type: Transform -- uid: 12544 - type: CableApcExtension - components: - - pos: -63.5,-11.5 - parent: 8364 - type: Transform -- uid: 12545 - type: CableApcExtension - components: - - pos: -63.5,-12.5 - parent: 8364 - type: Transform -- uid: 12546 - type: CableApcExtension - components: - - pos: -63.5,-13.5 - parent: 8364 - type: Transform -- uid: 12547 - type: CableApcExtension - components: - - pos: -63.5,-14.5 - parent: 8364 - type: Transform -- uid: 12548 - type: CableApcExtension - components: - - pos: -64.5,-14.5 - parent: 8364 - type: Transform -- uid: 12549 - type: CableApcExtension - components: - - pos: -65.5,-14.5 - parent: 8364 - type: Transform -- uid: 12550 - type: CableApcExtension - components: - - pos: -66.5,-14.5 - parent: 8364 - type: Transform -- uid: 12551 - type: CableApcExtension - components: - - pos: -67.5,-14.5 - parent: 8364 - type: Transform -- uid: 12552 - type: CableApcExtension - components: - - pos: -68.5,-14.5 - parent: 8364 - type: Transform -- uid: 12553 - type: CableApcExtension - components: - - pos: -69.5,-14.5 - parent: 8364 - type: Transform -- uid: 12554 - type: CableApcExtension - components: - - pos: -70.5,-14.5 - parent: 8364 - type: Transform -- uid: 12555 - type: CableApcExtension - components: - - pos: -71.5,-14.5 - parent: 8364 - type: Transform -- uid: 12556 - type: CableApcExtension - components: - - pos: -72.5,-14.5 - parent: 8364 - type: Transform -- uid: 12557 - type: ClosetEmergencyFilledRandom - components: - - pos: -70.5,-16.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 12558 - type: WallReinforced - components: - - pos: -79.5,-16.5 - parent: 8364 - type: Transform -- uid: 12559 - type: WallReinforced - components: - - pos: -79.5,-12.5 - parent: 8364 - type: Transform -- uid: 12560 - type: CableApcExtension - components: - - pos: -76.5,-14.5 - parent: 8364 - type: Transform -- uid: 12561 - type: Catwalk - components: - - pos: 32.5,-54.5 - parent: 8364 - type: Transform -- uid: 12562 - type: WallReinforced - components: - - pos: -77.5,-15.5 - parent: 8364 - type: Transform -- uid: 12563 - type: WallSolid - components: - - pos: -76.5,-15.5 - parent: 8364 - type: Transform -- uid: 12564 - type: CableApcExtension - components: - - pos: -75.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12565 - type: CableApcExtension - components: - - pos: -76.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12566 - type: CableApcExtension - components: - - pos: -72.5,-15.5 - parent: 8364 - type: Transform -- uid: 12567 - type: CableApcExtension - components: - - pos: -72.5,-16.5 - parent: 8364 - type: Transform -- uid: 12568 - type: CableApcExtension - components: - - pos: -72.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12569 - type: CableApcExtension - components: - - pos: -73.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12570 - type: CableApcExtension - components: - - pos: -71.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12571 - type: CableApcExtension - components: - - pos: -70.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12572 - type: CableApcExtension - components: - - pos: -67.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12573 - type: CableApcExtension - components: - - pos: -67.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12574 - type: CableApcExtension - components: - - pos: -67.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12575 - type: CableApcExtension - components: - - pos: -66.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12576 - type: CableApcExtension - components: - - pos: -64.5,-10.5 - parent: 8364 - type: Transform -- uid: 12577 - type: CableApcExtension - components: - - pos: -65.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12578 - type: CableApcExtension - components: - - pos: -66.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12579 - type: CableApcExtension - components: - - pos: -67.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12580 - type: CableApcExtension - components: - - pos: -66.5,-11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12581 - type: CableApcExtension - components: - - pos: -62.5,-0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12582 - type: CableApcExtension - components: - - pos: -62.5,-1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12583 - type: CableApcExtension - components: - - pos: -62.5,-2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12584 - type: CableApcExtension - components: - - pos: -62.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12585 - type: CableApcExtension - components: - - pos: -63.5,-3.5 - parent: 8364 - type: Transform -- uid: 12586 - type: CableApcExtension - components: - - pos: -65.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12587 - type: CableApcExtension - components: - - pos: -65.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12588 - type: CableApcExtension - components: - - pos: -65.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12589 - type: CableApcExtension - components: - - pos: -65.5,1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12590 - type: CableApcExtension - components: - - pos: -65.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12591 - type: CableApcExtension - components: - - pos: -73.5,-14.5 - parent: 8364 - type: Transform -- uid: 12592 - type: CableApcExtension - components: - - pos: -72.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12593 - type: CableApcExtension - components: - - pos: -74.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12594 - type: CableApcExtension - components: - - pos: -75.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12595 - type: CableApcExtension - components: - - pos: -71.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12596 - type: CableApcExtension - components: - - pos: -70.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12597 - type: CableApcExtension - components: - - pos: -69.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12598 - type: CableApcExtension - components: - - pos: -68.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12599 - type: CableApcExtension - components: - - pos: -73.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12600 - type: CableApcExtension - components: - - pos: -62.5,-4.5 - parent: 8364 - type: Transform -- uid: 12601 - type: CableApcExtension - components: - - pos: -61.5,-4.5 - parent: 8364 - type: Transform -- uid: 12602 - type: CableApcExtension - components: - - pos: -60.5,-4.5 - parent: 8364 - type: Transform -- uid: 12603 - type: CableApcExtension - components: - - pos: -59.5,-4.5 - parent: 8364 - type: Transform -- uid: 12604 - type: CableApcExtension - components: - - pos: -58.5,-4.5 - parent: 8364 - type: Transform -- uid: 12605 - type: CableApcExtension - components: - - pos: -57.5,-4.5 - parent: 8364 - type: Transform -- uid: 12606 - type: CableApcExtension - components: - - pos: -56.5,-4.5 - parent: 8364 - type: Transform -- uid: 12607 - type: CableApcExtension - components: - - pos: -55.5,-4.5 - parent: 8364 - type: Transform -- uid: 12608 - type: CableApcExtension - components: - - pos: -54.5,-4.5 - parent: 8364 - type: Transform -- uid: 12609 - type: CableApcExtension - components: - - pos: -54.5,-3.5 - parent: 8364 - type: Transform -- uid: 12610 - type: CableApcExtension - components: - - pos: -54.5,-2.5 - parent: 8364 - type: Transform -- uid: 12611 - type: CableApcExtension - components: - - pos: -54.5,-1.5 - parent: 8364 - type: Transform -- uid: 12612 - type: CableApcExtension - components: - - pos: -54.5,-0.5 - parent: 8364 - type: Transform -- uid: 12613 - type: CableApcExtension - components: - - pos: -54.5,0.5 - parent: 8364 - type: Transform -- uid: 12614 - type: CableApcExtension - components: - - pos: -55.5,0.5 - parent: 8364 - type: Transform -- uid: 12615 - type: CableApcExtension - components: - - pos: -56.5,0.5 - parent: 8364 - type: Transform -- uid: 12616 - type: CableApcExtension - components: - - pos: -57.5,0.5 - parent: 8364 - type: Transform -- uid: 12617 - type: CableApcExtension - components: - - pos: -58.5,0.5 - parent: 8364 - type: Transform -- uid: 12618 - type: CableApcExtension - components: - - pos: -59.5,0.5 - parent: 8364 - type: Transform -- uid: 12619 - type: CableApcExtension - components: - - pos: -60.5,0.5 - parent: 8364 - type: Transform -- uid: 12620 - type: CableApcExtension - components: - - pos: -61.5,0.5 - parent: 8364 - type: Transform -- uid: 12621 - type: CableApcExtension - components: - - pos: -62.5,0.5 - parent: 8364 - type: Transform -- uid: 12622 - type: CableApcExtension - components: - - pos: -64.5,-4.5 - parent: 8364 - type: Transform -- uid: 12623 - type: CableApcExtension - components: - - pos: -65.5,-4.5 - parent: 8364 - type: Transform -- uid: 12624 - type: CableApcExtension - components: - - pos: -66.5,-4.5 - parent: 8364 - type: Transform -- uid: 12625 - type: CableApcExtension - components: - - pos: -67.5,-4.5 - parent: 8364 - type: Transform -- uid: 12626 - type: CableApcExtension - components: - - pos: -68.5,-4.5 - parent: 8364 - type: Transform -- uid: 12627 - type: CableApcExtension - components: - - pos: -69.5,-4.5 - parent: 8364 - type: Transform -- uid: 12628 - type: CableApcExtension - components: - - pos: -70.5,-4.5 - parent: 8364 - type: Transform -- uid: 12629 - type: CableApcExtension - components: - - pos: -71.5,-4.5 - parent: 8364 - type: Transform -- uid: 12630 - type: CableApcExtension - components: - - pos: -72.5,-4.5 - parent: 8364 - type: Transform -- uid: 12631 - type: CableApcExtension - components: - - pos: -73.5,-4.5 - parent: 8364 - type: Transform -- uid: 12632 - type: CableApcExtension - components: - - pos: -74.5,-4.5 - parent: 8364 - type: Transform -- uid: 12633 - type: CableApcExtension - components: - - pos: -75.5,-4.5 - parent: 8364 - type: Transform -- uid: 12634 - type: CableApcExtension - components: - - pos: -76.5,-4.5 - parent: 8364 - type: Transform -- uid: 12635 - type: AirlockExternalGlass - components: - - pos: -65.5,-9.5 - parent: 8364 - type: Transform -- uid: 12636 - type: RandomVendingDrinks - components: - - pos: -55.5,-2.5 - parent: 8364 - type: Transform -- uid: 12637 - type: CableApcExtension - components: - - pos: -74.5,-3.5 - parent: 8364 - type: Transform -- uid: 12638 - type: RandomVendingSnacks - components: - - pos: -55.5,-3.5 - parent: 8364 - type: Transform -- uid: 12639 - type: RandomVending - components: - - pos: -55.5,-1.5 - parent: 8364 - type: Transform -- uid: 12640 - type: RandomVendingDrinks - components: - - pos: -43.5,-4.5 - parent: 8364 - type: Transform -- uid: 12641 - type: RandomVendingSnacks - components: - - pos: -40.5,-4.5 - parent: 8364 - type: Transform -- uid: 12642 - type: AirlockExternalGlassShuttleEscape - components: - - rot: 1.5707963267948966 rad - pos: 93.5,-29.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 12643 - type: AirlockExternalGlass - components: - - pos: 91.5,-26.5 - parent: 8364 - type: Transform -- uid: 12644 - type: AirlockExternalGlassShuttleEscape - components: - - rot: 1.5707963267948966 rad - pos: 93.5,-26.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 12645 - type: SignEscapePods - components: - - pos: -65.5,-8.5 - parent: 8364 - type: Transform -- uid: 12646 - type: CableApcExtension - components: - - pos: -69.5,-3.5 - parent: 8364 - type: Transform -- uid: 12647 - type: CableApcExtension - components: - - pos: -74.5,-5.5 - parent: 8364 - type: Transform -- uid: 12648 - type: CableApcExtension - components: - - pos: -74.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12649 - type: CableApcExtension - components: - - pos: -75.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12650 - type: CableApcExtension - components: - - pos: -73.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12651 - type: CableApcExtension - components: - - pos: -72.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12652 - type: CableApcExtension - components: - - pos: -71.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12653 - type: CableApcExtension - components: - - pos: -70.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12654 - type: CableApcExtension - components: - - pos: -69.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12655 - type: CableApcExtension - components: - - pos: -68.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12656 - type: CableApcExtension - components: - - pos: -69.5,-5.5 - parent: 8364 - type: Transform -- uid: 12657 - type: Catwalk - components: - - pos: 32.5,-55.5 - parent: 8364 - type: Transform -- uid: 12658 - type: FirelockGlass - components: - - pos: 32.5,-56.5 - parent: 8364 - type: Transform -- uid: 12659 - type: Catwalk - components: - - pos: 32.5,-57.5 - parent: 8364 - type: Transform -- uid: 12660 - type: Catwalk - components: - - pos: 33.5,-57.5 - parent: 8364 - type: Transform -- uid: 12661 - type: Catwalk - components: - - pos: 34.5,-57.5 - parent: 8364 - type: Transform -- uid: 12662 - type: Catwalk - components: - - pos: 35.5,-57.5 - parent: 8364 - type: Transform -- uid: 12663 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: -0.5,29.5 - parent: 8364 - type: Transform -- uid: 12664 - type: PianoInstrument - components: - - rot: -1.5707963267948966 rad - pos: -32.5,24.5 - parent: 8364 - type: Transform -- uid: 12665 - type: CableApcExtension - components: - - pos: 51.5,-9.5 - parent: 8364 - type: Transform -- uid: 12666 - type: CableApcExtension - components: - - pos: 51.5,-10.5 - parent: 8364 - type: Transform -- uid: 12667 - type: CableApcExtension - components: - - pos: -25.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12668 - type: CableApcExtension - components: - - pos: -30.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12669 - type: CableApcExtension - components: - - pos: -30.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12670 - type: CableApcExtension - components: - - pos: -30.5,-5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12671 - type: CableApcExtension - components: - - pos: -30.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12672 - type: CableApcExtension - components: - - pos: -63.5,9.5 - parent: 8364 - type: Transform -- uid: 12673 - type: CableMV - components: - - pos: -65.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12674 - type: RandomVendingSnacks - components: - - pos: -22.5,-3.5 - parent: 8364 - type: Transform -- uid: 12675 - type: SignRadiationMed - components: - - pos: 6.5,-68.5 - parent: 8364 - type: Transform -- uid: 12676 - type: Catwalk - components: - - pos: 36.5,-57.5 - parent: 8364 - type: Transform -- uid: 12677 - type: Catwalk - components: - - pos: 36.5,-58.5 - parent: 8364 - type: Transform -- uid: 12678 - type: SignRadiationMed - components: - - pos: -7.5,-68.5 - parent: 8364 - type: Transform -- uid: 12679 - type: AtmosDeviceFanTiny - components: - - pos: -66.5,-9.5 - parent: 8364 - type: Transform -- uid: 12680 - type: AtmosDeviceFanTiny - components: - - pos: -21.5,20.5 - parent: 8364 - type: Transform -- uid: 12681 - type: AtmosDeviceFanTiny - components: - - pos: -21.5,24.5 - parent: 8364 - type: Transform -- uid: 12682 - type: Catwalk - components: - - pos: 36.5,-59.5 - parent: 8364 - type: Transform -- uid: 12683 - type: CableApcExtension - components: - - pos: -74.5,-14.5 - parent: 8364 - type: Transform -- uid: 12684 - type: CableApcExtension - components: - - pos: -75.5,-14.5 - parent: 8364 - type: Transform -- uid: 12685 - type: CableApcExtension - components: - - pos: -76.5,-13.5 - parent: 8364 - type: Transform -- uid: 12686 - type: WallReinforced - components: - - pos: -77.5,-14.5 - parent: 8364 - type: Transform -- uid: 12687 - type: WallReinforced - components: - - pos: -79.5,-15.5 - parent: 8364 - type: Transform -- uid: 12688 - type: SignEscapePods - components: - - pos: -19.5,21.5 - parent: 8364 - type: Transform -- uid: 12689 - type: SignEscapePods - components: - - pos: -15.5,24.5 - parent: 8364 - type: Transform -- uid: 12690 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: -71.5,-16.5 - parent: 8364 - type: Transform -- uid: 12691 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -63.5,-15.5 - parent: 8364 - type: Transform -- uid: 12692 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -64.5,-15.5 - parent: 8364 - type: Transform -- uid: 12693 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -65.5,-15.5 - parent: 8364 - type: Transform -- uid: 12694 - type: ClosetEmergencyFilledRandom - components: - - pos: -65.5,-7.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 12695 - type: ClosetEmergencyFilledRandom - components: - - pos: -65.5,-11.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 12696 - type: TableWood - components: - - pos: -61.5,-1.5 - parent: 8364 - type: Transform -- uid: 12697 - type: TableWood - components: - - pos: -60.5,-1.5 - parent: 8364 - type: Transform -- uid: 12698 - type: TableWood - components: - - pos: -60.5,-2.5 - parent: 8364 - type: Transform -- uid: 12699 - type: TableWood - components: - - pos: -61.5,-2.5 - parent: 8364 - type: Transform -- uid: 12700 - type: TableWood - components: - - pos: -57.5,-0.5 - parent: 8364 - type: Transform -- uid: 12701 - type: TableWood - components: - - pos: -57.5,-3.5 - parent: 8364 - type: Transform -- uid: 12702 - type: LampGold - components: - - pos: -57.50557,-0.1837722 - parent: 8364 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 12703 - type: Catwalk - components: - - pos: 36.5,-60.5 - parent: 8364 - type: Transform -- uid: 12704 - type: ComfyChair - components: - - pos: -61.5,-0.5 - parent: 8364 - type: Transform -- uid: 12705 - type: ComfyChair - components: - - pos: -60.5,-0.5 - parent: 8364 - type: Transform -- uid: 12706 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -60.5,-3.5 - parent: 8364 - type: Transform -- uid: 12707 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -61.5,-3.5 - parent: 8364 - type: Transform -- uid: 12708 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-1.5 - parent: 8364 - type: Transform -- uid: 12709 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-2.5 - parent: 8364 - type: Transform -- uid: 12710 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -55.5,-0.5 - parent: 8364 - type: Transform -- uid: 12711 - type: SignEscapePods - components: - - pos: 87.5,-27.5 - parent: 8364 - type: Transform -- uid: 12712 - type: AtmosDeviceFanTiny - components: - - pos: 93.5,-29.5 - parent: 8364 - type: Transform -- uid: 12713 - type: AtmosDeviceFanTiny - components: - - pos: 93.5,-26.5 - parent: 8364 - type: Transform -- uid: 12714 - type: DeskBell - components: - - pos: 1.5,22.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 12715 - type: ClosetEmergencyFilledRandom - components: - - pos: -73.5,-16.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 12716 - type: DeskBell - components: - - pos: 38.5,-10.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 12717 - type: CableApcExtension - components: - - pos: -47.5,-1.5 - parent: 8364 - type: Transform -- uid: 12718 - type: CableApcExtension - components: - - pos: -46.5,-1.5 - parent: 8364 - type: Transform -- uid: 12719 - type: CableApcExtension - components: - - pos: -45.5,-1.5 - parent: 8364 - type: Transform -- uid: 12720 - type: CableApcExtension - components: - - pos: -44.5,-1.5 - parent: 8364 - type: Transform -- uid: 12721 - type: CableApcExtension - components: - - pos: -43.5,-1.5 - parent: 8364 - type: Transform -- uid: 12722 - type: CableApcExtension - components: - - pos: -42.5,-1.5 - parent: 8364 - type: Transform -- uid: 12723 - type: CableApcExtension - components: - - pos: -41.5,-1.5 - parent: 8364 - type: Transform -- uid: 12724 - type: CableApcExtension - components: - - pos: -40.5,-1.5 - parent: 8364 - type: Transform -- uid: 12725 - type: CableApcExtension - components: - - pos: -39.5,-1.5 - parent: 8364 - type: Transform -- uid: 12726 - type: CableApcExtension - components: - - pos: -38.5,-1.5 - parent: 8364 - type: Transform -- uid: 12727 - type: CableApcExtension - components: - - pos: -37.5,-1.5 - parent: 8364 - type: Transform -- uid: 12728 - type: CableApcExtension - components: - - pos: -36.5,-1.5 - parent: 8364 - type: Transform -- uid: 12729 - type: CableApcExtension - components: - - pos: -35.5,-1.5 - parent: 8364 - type: Transform -- uid: 12730 - type: CableApcExtension - components: - - pos: -34.5,-1.5 - parent: 8364 - type: Transform -- uid: 12731 - type: CableApcExtension - components: - - pos: -33.5,-1.5 - parent: 8364 - type: Transform -- uid: 12732 - type: CableApcExtension - components: - - pos: -32.5,-1.5 - parent: 8364 - type: Transform -- uid: 12733 - type: CableApcExtension - components: - - pos: -31.5,-1.5 - parent: 8364 - type: Transform -- uid: 12734 - type: CableApcExtension - components: - - pos: -30.5,-1.5 - parent: 8364 - type: Transform -- uid: 12735 - type: CableApcExtension - components: - - pos: -29.5,-1.5 - parent: 8364 - type: Transform -- uid: 12736 - type: CableApcExtension - components: - - pos: -24.5,-1.5 - parent: 8364 - type: Transform -- uid: 12737 - type: CableApcExtension - components: - - pos: -25.5,-1.5 - parent: 8364 - type: Transform -- uid: 12738 - type: CableApcExtension - components: - - pos: -26.5,-1.5 - parent: 8364 - type: Transform -- uid: 12739 - type: CableApcExtension - components: - - pos: -27.5,-1.5 - parent: 8364 - type: Transform -- uid: 12740 - type: CableApcExtension - components: - - pos: -28.5,-1.5 - parent: 8364 - type: Transform -- uid: 12741 - type: CableApcExtension - components: - - pos: -23.5,-1.5 - parent: 8364 - type: Transform -- uid: 12742 - type: CableApcExtension - components: - - pos: -21.5,-1.5 - parent: 8364 - type: Transform -- uid: 12743 - type: CableApcExtension - components: - - pos: -22.5,-1.5 - parent: 8364 - type: Transform -- uid: 12744 - type: CableApcExtension - components: - - pos: -20.5,-1.5 - parent: 8364 - type: Transform -- uid: 12745 - type: Catwalk - components: - - pos: 36.5,-61.5 - parent: 8364 - type: Transform -- uid: 12746 - type: CableApcExtension - components: - - pos: 5.5,20.5 - parent: 8364 - type: Transform -- uid: 12747 - type: CableApcExtension - components: - - pos: 6.5,20.5 - parent: 8364 - type: Transform -- uid: 12748 - type: CableApcExtension - components: - - pos: 7.5,20.5 - parent: 8364 - type: Transform -- uid: 12749 - type: CableApcExtension - components: - - pos: 8.5,20.5 - parent: 8364 - type: Transform -- uid: 12750 - type: CableApcExtension - components: - - pos: 9.5,20.5 - parent: 8364 - type: Transform -- uid: 12751 - type: CableApcExtension - components: - - pos: 4.5,20.5 - parent: 8364 - type: Transform -- uid: 12752 - type: CableApcExtension - components: - - pos: 3.5,20.5 - parent: 8364 - type: Transform -- uid: 12753 - type: CableApcExtension - components: - - pos: 2.5,20.5 - parent: 8364 - type: Transform -- uid: 12754 - type: CableApcExtension - components: - - pos: 1.5,20.5 - parent: 8364 - type: Transform -- uid: 12755 - type: CableApcExtension - components: - - pos: 0.5,20.5 - parent: 8364 - type: Transform -- uid: 12756 - type: CableApcExtension - components: - - pos: -0.5,20.5 - parent: 8364 - type: Transform -- uid: 12757 - type: CableApcExtension - components: - - pos: -1.5,20.5 - parent: 8364 - type: Transform -- uid: 12758 - type: CableApcExtension - components: - - pos: -2.5,20.5 - parent: 8364 - type: Transform -- uid: 12759 - type: CableApcExtension - components: - - pos: -3.5,20.5 - parent: 8364 - type: Transform -- uid: 12760 - type: CableApcExtension - components: - - pos: -4.5,20.5 - parent: 8364 - type: Transform -- uid: 12761 - type: CableApcExtension - components: - - pos: -5.5,20.5 - parent: 8364 - type: Transform -- uid: 12762 - type: CableApcExtension - components: - - pos: -6.5,20.5 - parent: 8364 - type: Transform -- uid: 12763 - type: CableApcExtension - components: - - pos: -7.5,20.5 - parent: 8364 - type: Transform -- uid: 12764 - type: CableApcExtension - components: - - pos: -8.5,20.5 - parent: 8364 - type: Transform -- uid: 12765 - type: CableApcExtension - components: - - pos: -9.5,20.5 - parent: 8364 - type: Transform -- uid: 12766 - type: CableApcExtension - components: - - pos: -10.5,20.5 - parent: 8364 - type: Transform -- uid: 12767 - type: CableApcExtension - components: - - pos: -11.5,20.5 - parent: 8364 - type: Transform -- uid: 12768 - type: CableApcExtension - components: - - pos: -12.5,20.5 - parent: 8364 - type: Transform -- uid: 12769 - type: CableApcExtension - components: - - pos: -13.5,20.5 - parent: 8364 - type: Transform -- uid: 12770 - type: CableApcExtension - components: - - pos: -14.5,20.5 - parent: 8364 - type: Transform -- uid: 12771 - type: CableApcExtension - components: - - pos: -0.5,19.5 - parent: 8364 - type: Transform -- uid: 12772 - type: CableApcExtension - components: - - pos: -0.5,18.5 - parent: 8364 - type: Transform -- uid: 12773 - type: CableApcExtension - components: - - pos: -0.5,17.5 - parent: 8364 - type: Transform -- uid: 12774 - type: CableApcExtension - components: - - pos: -0.5,16.5 - parent: 8364 - type: Transform -- uid: 12775 - type: CableApcExtension - components: - - pos: -0.5,15.5 - parent: 8364 - type: Transform -- uid: 12776 - type: CableApcExtension - components: - - pos: -0.5,14.5 - parent: 8364 - type: Transform -- uid: 12777 - type: CableApcExtension - components: - - pos: -0.5,13.5 - parent: 8364 - type: Transform -- uid: 12778 - type: CableApcExtension - components: - - pos: -0.5,12.5 - parent: 8364 - type: Transform -- uid: 12779 - type: CableApcExtension - components: - - pos: -0.5,11.5 - parent: 8364 - type: Transform -- uid: 12780 - type: CableApcExtension - components: - - pos: -0.5,10.5 - parent: 8364 - type: Transform -- uid: 12781 - type: CableApcExtension - components: - - pos: -0.5,9.5 - parent: 8364 - type: Transform -- uid: 12782 - type: CableApcExtension - components: - - pos: -0.5,8.5 - parent: 8364 - type: Transform -- uid: 12783 - type: CableApcExtension - components: - - pos: -0.5,7.5 - parent: 8364 - type: Transform -- uid: 12784 - type: CableApcExtension - components: - - pos: -0.5,6.5 - parent: 8364 - type: Transform -- uid: 12785 - type: CableApcExtension - components: - - pos: -0.5,5.5 - parent: 8364 - type: Transform -- uid: 12786 - type: CableApcExtension - components: - - pos: -0.5,4.5 - parent: 8364 - type: Transform -- uid: 12787 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,13.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12788 - type: Catwalk - components: - - pos: 36.5,-62.5 - parent: 8364 - type: Transform -- uid: 12789 - type: CableApcExtension - components: - - pos: 79.5,-13.5 - parent: 8364 - type: Transform -- uid: 12790 - type: CableApcExtension - components: - - pos: 78.5,-13.5 - parent: 8364 - type: Transform -- uid: 12791 - type: CableApcExtension - components: - - pos: 77.5,-13.5 - parent: 8364 - type: Transform -- uid: 12792 - type: CableApcExtension - components: - - pos: 76.5,-13.5 - parent: 8364 - type: Transform -- uid: 12793 - type: CableApcExtension - components: - - pos: 51.5,-7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12794 - type: CableApcExtension - components: - - pos: 51.5,-8.5 - parent: 8364 - type: Transform -- uid: 12795 - type: CableApcExtension - components: - - pos: 51.5,-5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12796 - type: CableApcExtension - components: - - pos: 72.5,-13.5 - parent: 8364 - type: Transform -- uid: 12797 - type: CableApcExtension - components: - - pos: 71.5,-13.5 - parent: 8364 - type: Transform -- uid: 12798 - type: CableApcExtension - components: - - pos: 70.5,-13.5 - parent: 8364 - type: Transform -- uid: 12799 - type: CableApcExtension - components: - - pos: 69.5,-13.5 - parent: 8364 - type: Transform -- uid: 12800 - type: CableApcExtension - components: - - pos: 68.5,-13.5 - parent: 8364 - type: Transform -- uid: 12801 - type: CableApcExtension - components: - - pos: 67.5,-13.5 - parent: 8364 - type: Transform -- uid: 12802 - type: CableApcExtension - components: - - pos: 66.5,-13.5 - parent: 8364 - type: Transform -- uid: 12803 - type: CableApcExtension - components: - - pos: 65.5,-13.5 - parent: 8364 - type: Transform -- uid: 12804 - type: CableApcExtension - components: - - pos: 64.5,-13.5 - parent: 8364 - type: Transform -- uid: 12805 - type: CableApcExtension - components: - - pos: 63.5,-13.5 - parent: 8364 - type: Transform -- uid: 12806 - type: CableApcExtension - components: - - pos: 62.5,-13.5 - parent: 8364 - type: Transform -- uid: 12807 - type: CableApcExtension - components: - - pos: 61.5,-13.5 - parent: 8364 - type: Transform -- uid: 12808 - type: CableApcExtension - components: - - pos: 60.5,-13.5 - parent: 8364 - type: Transform -- uid: 12809 - type: CableApcExtension - components: - - pos: 59.5,-13.5 - parent: 8364 - type: Transform -- uid: 12810 - type: CableApcExtension - components: - - pos: 58.5,-13.5 - parent: 8364 - type: Transform -- uid: 12811 - type: CableApcExtension - components: - - pos: 57.5,-13.5 - parent: 8364 - type: Transform -- uid: 12812 - type: CableApcExtension - components: - - pos: 56.5,-13.5 - parent: 8364 - type: Transform -- uid: 12813 - type: CableApcExtension - components: - - pos: 55.5,-13.5 - parent: 8364 - type: Transform -- uid: 12814 - type: CableApcExtension - components: - - pos: 54.5,-13.5 - parent: 8364 - type: Transform -- uid: 12815 - type: CableApcExtension - components: - - pos: 53.5,-13.5 - parent: 8364 - type: Transform -- uid: 12816 - type: CableApcExtension - components: - - pos: 52.5,-13.5 - parent: 8364 - type: Transform -- uid: 12817 - type: CableApcExtension - components: - - pos: 51.5,-13.5 - parent: 8364 - type: Transform -- uid: 12818 - type: CableApcExtension - components: - - pos: 50.5,-13.5 - parent: 8364 - type: Transform -- uid: 12819 - type: CableApcExtension - components: - - pos: 49.5,-13.5 - parent: 8364 - type: Transform -- uid: 12820 - type: CableApcExtension - components: - - pos: 48.5,-13.5 - parent: 8364 - type: Transform -- uid: 12821 - type: CableApcExtension - components: - - pos: 47.5,-13.5 - parent: 8364 - type: Transform -- uid: 12822 - type: CableApcExtension - components: - - pos: 46.5,-13.5 - parent: 8364 - type: Transform -- uid: 12823 - type: CableApcExtension - components: - - pos: 45.5,-13.5 - parent: 8364 - type: Transform -- uid: 12824 - type: CableApcExtension - components: - - pos: 44.5,-13.5 - parent: 8364 - type: Transform -- uid: 12825 - type: CableApcExtension - components: - - pos: 43.5,-13.5 - parent: 8364 - type: Transform -- uid: 12826 - type: CableApcExtension - components: - - pos: 42.5,-13.5 - parent: 8364 - type: Transform -- uid: 12827 - type: CableApcExtension - components: - - pos: 41.5,-13.5 - parent: 8364 - type: Transform -- uid: 12828 - type: CableApcExtension - components: - - pos: 40.5,-13.5 - parent: 8364 - type: Transform -- uid: 12829 - type: CableApcExtension - components: - - pos: 39.5,-13.5 - parent: 8364 - type: Transform -- uid: 12830 - type: CableApcExtension - components: - - pos: 38.5,-13.5 - parent: 8364 - type: Transform -- uid: 12831 - type: CableApcExtension - components: - - pos: 37.5,-13.5 - parent: 8364 - type: Transform -- uid: 12832 - type: CableApcExtension - components: - - pos: 36.5,-13.5 - parent: 8364 - type: Transform -- uid: 12833 - type: CableApcExtension - components: - - pos: 35.5,-13.5 - parent: 8364 - type: Transform -- uid: 12834 - type: CableApcExtension - components: - - pos: 34.5,-13.5 - parent: 8364 - type: Transform -- uid: 12835 - type: CableApcExtension - components: - - pos: 33.5,-13.5 - parent: 8364 - type: Transform -- uid: 12836 - type: CableApcExtension - components: - - pos: 32.5,-13.5 - parent: 8364 - type: Transform -- uid: 12837 - type: CableApcExtension - components: - - pos: 31.5,-13.5 - parent: 8364 - type: Transform -- uid: 12838 - type: CableApcExtension - components: - - pos: 30.5,-13.5 - parent: 8364 - type: Transform -- uid: 12839 - type: CableApcExtension - components: - - pos: 29.5,-13.5 - parent: 8364 - type: Transform -- uid: 12840 - type: CableApcExtension - components: - - pos: 28.5,-13.5 - parent: 8364 - type: Transform -- uid: 12841 - type: CableApcExtension - components: - - pos: 27.5,-13.5 - parent: 8364 - type: Transform -- uid: 12842 - type: CableApcExtension - components: - - pos: 26.5,-13.5 - parent: 8364 - type: Transform -- uid: 12843 - type: CableApcExtension - components: - - pos: 25.5,-13.5 - parent: 8364 - type: Transform -- uid: 12844 - type: CableApcExtension - components: - - pos: 24.5,-13.5 - parent: 8364 - type: Transform -- uid: 12845 - type: CableApcExtension - components: - - pos: 23.5,-13.5 - parent: 8364 - type: Transform -- uid: 12846 - type: CableApcExtension - components: - - pos: 22.5,-13.5 - parent: 8364 - type: Transform -- uid: 12847 - type: CableApcExtension - components: - - pos: 21.5,-13.5 - parent: 8364 - type: Transform -- uid: 12848 - type: CableApcExtension - components: - - pos: 20.5,-13.5 - parent: 8364 - type: Transform -- uid: 12849 - type: CableApcExtension - components: - - pos: 19.5,-13.5 - parent: 8364 - type: Transform -- uid: 12850 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-2.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12851 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -43.5,-2.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12852 - type: Poweredlight - components: - - pos: -48.5,-0.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12853 - type: Poweredlight - components: - - pos: -36.5,-0.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12854 - type: Poweredlight - components: - - pos: -26.5,-0.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12855 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-2.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12856 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 5.5,19.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12857 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12858 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,8.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12859 - type: Poweredlight - components: - - pos: 9.5,21.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12860 - type: Poweredlight - components: - - pos: -3.5,21.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12861 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -9.5,19.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12862 - type: Poweredlight - components: - - pos: 73.5,-12.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12863 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-15.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12864 - type: Poweredlight - components: - - pos: 60.5,-12.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12865 - type: Poweredlight - components: - - pos: 54.5,-12.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12866 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-9.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12867 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 48.5,-14.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12868 - type: Poweredlight - components: - - pos: 41.5,-12.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12869 - type: Poweredlight - components: - - pos: 18.5,-12.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12870 - type: Poweredlight - components: - - pos: 36.5,-22.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12871 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-14.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12872 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-23.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12873 - type: Catwalk - components: - - pos: 37.5,-62.5 - parent: 8364 - type: Transform -- uid: 12874 - type: CableApcExtension - components: - - pos: 51.5,-12.5 - parent: 8364 - type: Transform -- uid: 12875 - type: CableApcExtension - components: - - pos: 51.5,-11.5 - parent: 8364 - type: Transform -- uid: 12876 - type: DeskBell - components: - - pos: -23.5,-22.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 12877 - type: ClosetEmergencyFilledRandom - components: - - pos: 82.5,-12.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 12878 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: 81.5,-6.5 - parent: 8364 - type: Transform -- uid: 12879 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: 77.5,-11.5 - parent: 8364 - type: Transform -- uid: 12880 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: 68.5,-14.5 - parent: 8364 - type: Transform -- uid: 12881 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: 53.5,-12.5 - parent: 8364 - type: Transform -- uid: 12882 - type: CableApcExtension - components: - - pos: -66.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12883 - type: Catwalk - components: - - pos: 38.5,-62.5 - parent: 8364 - type: Transform -- uid: 12884 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: 23.5,-12.5 - parent: 8364 - type: Transform -- uid: 12885 - type: CableApcExtension - components: - - pos: -67.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12886 - type: CableApcExtension - components: - - pos: -67.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12887 - type: CableApcExtension - components: - - pos: -67.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12888 - type: CableApcExtension - components: - - pos: -65.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12889 - type: CableApcExtension - components: - - pos: -65.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12890 - type: CableApcExtension - components: - - pos: -65.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12891 - type: CableApcExtension - components: - - pos: -68.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12892 - type: CableApcExtension - components: - - pos: -68.5,18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12893 - type: CableApcExtension - components: - - pos: -68.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12894 - type: CableApcExtension - components: - - pos: -68.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12895 - type: CableApcExtension - components: - - pos: -68.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12896 - type: DisposalUnit - components: - - pos: -53.5,-5.5 - parent: 8364 - type: Transform -- uid: 12897 - type: DisposalUnit - components: - - pos: -53.5,1.5 - parent: 8364 - type: Transform -- uid: 12898 - type: DisposalTrunk - components: - - pos: -53.5,1.5 - parent: 8364 - type: Transform -- uid: 12899 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -53.5,-5.5 - parent: 8364 - type: Transform -- uid: 12900 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -53.5,0.5 - parent: 8364 - type: Transform -- uid: 12901 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -53.5,-4.5 - parent: 8364 - type: Transform -- uid: 12902 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -53.5,-3.5 - parent: 8364 - type: Transform -- uid: 12903 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -53.5,-2.5 - parent: 8364 - type: Transform -- uid: 12904 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -53.5,-0.5 - parent: 8364 - type: Transform -- uid: 12905 - type: DisposalYJunction - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-1.5 - parent: 8364 - type: Transform -- uid: 12906 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-1.5 - parent: 8364 - type: Transform -- uid: 12907 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-1.5 - parent: 8364 - type: Transform -- uid: 12908 - type: ComputerComms - components: - - pos: -0.5,-4.5 - parent: 8364 - type: Transform -- uid: 12909 - type: CableApcExtension - components: - - pos: -14.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12910 - type: CableApcExtension - components: - - pos: -15.5,-18.5 - parent: 8364 - type: Transform -- uid: 12911 - type: CableApcExtension - components: - - pos: -16.5,-18.5 - parent: 8364 - type: Transform -- uid: 12912 - type: CableApcExtension - components: - - pos: -16.5,-17.5 - parent: 8364 - type: Transform -- uid: 12913 - type: CableApcExtension - components: - - pos: -16.5,-16.5 - parent: 8364 - type: Transform -- uid: 12914 - type: CableApcExtension - components: - - pos: -16.5,-15.5 - parent: 8364 - type: Transform -- uid: 12915 - type: CableApcExtension - components: - - pos: -16.5,-14.5 - parent: 8364 - type: Transform -- uid: 12916 - type: CableApcExtension - components: - - pos: -16.5,-13.5 - parent: 8364 - type: Transform -- uid: 12917 - type: CableApcExtension - components: - - pos: -16.5,-12.5 - parent: 8364 - type: Transform -- uid: 12918 - type: CableApcExtension - components: - - pos: -16.5,-11.5 - parent: 8364 - type: Transform -- uid: 12919 - type: CableApcExtension - components: - - pos: -16.5,-10.5 - parent: 8364 - type: Transform -- uid: 12920 - type: CableApcExtension - components: - - pos: -16.5,-9.5 - parent: 8364 - type: Transform -- uid: 12921 - type: CableApcExtension - components: - - pos: -16.5,-8.5 - parent: 8364 - type: Transform -- uid: 12922 - type: CableApcExtension - components: - - pos: -16.5,-7.5 - parent: 8364 - type: Transform -- uid: 12923 - type: CableApcExtension - components: - - pos: -16.5,-6.5 - parent: 8364 - type: Transform -- uid: 12924 - type: CableApcExtension - components: - - pos: -16.5,-5.5 - parent: 8364 - type: Transform -- uid: 12925 - type: CableApcExtension - components: - - pos: -16.5,-4.5 - parent: 8364 - type: Transform -- uid: 12926 - type: CableApcExtension - components: - - pos: -16.5,-3.5 - parent: 8364 - type: Transform -- uid: 12927 - type: CableApcExtension - components: - - pos: -16.5,-2.5 - parent: 8364 - type: Transform -- uid: 12928 - type: CableApcExtension - components: - - pos: -16.5,-1.5 - parent: 8364 - type: Transform -- uid: 12929 - type: CableApcExtension - components: - - pos: -15.5,-1.5 - parent: 8364 - type: Transform -- uid: 12930 - type: CableApcExtension - components: - - pos: -14.5,-1.5 - parent: 8364 - type: Transform -- uid: 12931 - type: CableApcExtension - components: - - pos: -13.5,-1.5 - parent: 8364 - type: Transform -- uid: 12932 - type: CableApcExtension - components: - - pos: -12.5,-1.5 - parent: 8364 - type: Transform -- uid: 12933 - type: CableApcExtension - components: - - pos: -11.5,-1.5 - parent: 8364 - type: Transform -- uid: 12934 - type: CableApcExtension - components: - - pos: -10.5,-1.5 - parent: 8364 - type: Transform -- uid: 12935 - type: CableApcExtension - components: - - pos: -9.5,-1.5 - parent: 8364 - type: Transform -- uid: 12936 - type: CableApcExtension - components: - - pos: -8.5,-1.5 - parent: 8364 - type: Transform -- uid: 12937 - type: CableApcExtension - components: - - pos: -7.5,-1.5 - parent: 8364 - type: Transform -- uid: 12938 - type: CableApcExtension - components: - - pos: -6.5,-1.5 - parent: 8364 - type: Transform -- uid: 12939 - type: CableApcExtension - components: - - pos: -5.5,-1.5 - parent: 8364 - type: Transform -- uid: 12940 - type: CableApcExtension - components: - - pos: -4.5,-1.5 - parent: 8364 - type: Transform -- uid: 12941 - type: CableApcExtension - components: - - pos: -3.5,-1.5 - parent: 8364 - type: Transform -- uid: 12942 - type: CableApcExtension - components: - - pos: -2.5,-1.5 - parent: 8364 - type: Transform -- uid: 12943 - type: CableApcExtension - components: - - pos: -1.5,-1.5 - parent: 8364 - type: Transform -- uid: 12944 - type: CableApcExtension - components: - - pos: -0.5,-1.5 - parent: 8364 - type: Transform -- uid: 12945 - type: CableApcExtension - components: - - pos: 0.5,-1.5 - parent: 8364 - type: Transform -- uid: 12946 - type: CableApcExtension - components: - - pos: 1.5,-1.5 - parent: 8364 - type: Transform -- uid: 12947 - type: CableApcExtension - components: - - pos: 2.5,-1.5 - parent: 8364 - type: Transform -- uid: 12948 - type: CableApcExtension - components: - - pos: 3.5,-1.5 - parent: 8364 - type: Transform -- uid: 12949 - type: CableApcExtension - components: - - pos: 4.5,-1.5 - parent: 8364 - type: Transform -- uid: 12950 - type: CableApcExtension - components: - - pos: 5.5,-1.5 - parent: 8364 - type: Transform -- uid: 12951 - type: CableApcExtension - components: - - pos: 6.5,-1.5 - parent: 8364 - type: Transform -- uid: 12952 - type: CableApcExtension - components: - - pos: 7.5,-1.5 - parent: 8364 - type: Transform -- uid: 12953 - type: CableApcExtension - components: - - pos: 8.5,-1.5 - parent: 8364 - type: Transform -- uid: 12954 - type: CableApcExtension - components: - - pos: 9.5,-1.5 - parent: 8364 - type: Transform -- uid: 12955 - type: CableApcExtension - components: - - pos: 10.5,-1.5 - parent: 8364 - type: Transform -- uid: 12956 - type: CableApcExtension - components: - - pos: 11.5,-1.5 - parent: 8364 - type: Transform -- uid: 12957 - type: CableApcExtension - components: - - pos: 12.5,-1.5 - parent: 8364 - type: Transform -- uid: 12958 - type: CableApcExtension - components: - - pos: 13.5,-1.5 - parent: 8364 - type: Transform -- uid: 12959 - type: CableApcExtension - components: - - pos: 14.5,-1.5 - parent: 8364 - type: Transform -- uid: 12960 - type: CableApcExtension - components: - - pos: 15.5,-1.5 - parent: 8364 - type: Transform -- uid: 12961 - type: CableApcExtension - components: - - pos: 15.5,-2.5 - parent: 8364 - type: Transform -- uid: 12962 - type: CableApcExtension - components: - - pos: 15.5,-3.5 - parent: 8364 - type: Transform -- uid: 12963 - type: CableApcExtension - components: - - pos: 15.5,-4.5 - parent: 8364 - type: Transform -- uid: 12964 - type: CableApcExtension - components: - - pos: 15.5,-5.5 - parent: 8364 - type: Transform -- uid: 12965 - type: CableApcExtension - components: - - pos: 15.5,-6.5 - parent: 8364 - type: Transform -- uid: 12966 - type: CableApcExtension - components: - - pos: 15.5,-7.5 - parent: 8364 - type: Transform -- uid: 12967 - type: CableApcExtension - components: - - pos: 15.5,-8.5 - parent: 8364 - type: Transform -- uid: 12968 - type: CableApcExtension - components: - - pos: 15.5,-9.5 - parent: 8364 - type: Transform -- uid: 12969 - type: CableApcExtension - components: - - pos: 15.5,-10.5 - parent: 8364 - type: Transform -- uid: 12970 - type: CableApcExtension - components: - - pos: 15.5,-11.5 - parent: 8364 - type: Transform -- uid: 12971 - type: CableApcExtension - components: - - pos: 15.5,-12.5 - parent: 8364 - type: Transform -- uid: 12972 - type: CableApcExtension - components: - - pos: 15.5,-13.5 - parent: 8364 - type: Transform -- uid: 12973 - type: CableApcExtension - components: - - pos: 15.5,-14.5 - parent: 8364 - type: Transform -- uid: 12974 - type: CableApcExtension - components: - - pos: 15.5,-15.5 - parent: 8364 - type: Transform -- uid: 12975 - type: CableApcExtension - components: - - pos: 15.5,-16.5 - parent: 8364 - type: Transform -- uid: 12976 - type: CableApcExtension - components: - - pos: 15.5,-17.5 - parent: 8364 - type: Transform -- uid: 12977 - type: CableApcExtension - components: - - pos: 15.5,-18.5 - parent: 8364 - type: Transform -- uid: 12978 - type: CableApcExtension - components: - - pos: 15.5,-19.5 - parent: 8364 - type: Transform -- uid: 12979 - type: CableApcExtension - components: - - pos: 15.5,-20.5 - parent: 8364 - type: Transform -- uid: 12980 - type: CableApcExtension - components: - - pos: 15.5,-21.5 - parent: 8364 - type: Transform -- uid: 12981 - type: CableApcExtension - components: - - pos: 15.5,-22.5 - parent: 8364 - type: Transform -- uid: 12982 - type: CableApcExtension - components: - - pos: 15.5,-23.5 - parent: 8364 - type: Transform -- uid: 12983 - type: CableApcExtension - components: - - pos: 15.5,-24.5 - parent: 8364 - type: Transform -- uid: 12984 - type: CableApcExtension - components: - - pos: 15.5,-25.5 - parent: 8364 - type: Transform -- uid: 12985 - type: CableApcExtension - components: - - pos: 15.5,-26.5 - parent: 8364 - type: Transform -- uid: 12986 - type: CableApcExtension - components: - - pos: 15.5,-27.5 - parent: 8364 - type: Transform -- uid: 12987 - type: CableApcExtension - components: - - pos: 15.5,-28.5 - parent: 8364 - type: Transform -- uid: 12988 - type: CableApcExtension - components: - - pos: 15.5,-29.5 - parent: 8364 - type: Transform -- uid: 12989 - type: CableApcExtension - components: - - pos: 15.5,-30.5 - parent: 8364 - type: Transform -- uid: 12990 - type: CableApcExtension - components: - - pos: 14.5,-30.5 - parent: 8364 - type: Transform -- uid: 12991 - type: CableApcExtension - components: - - pos: 13.5,-30.5 - parent: 8364 - type: Transform -- uid: 12992 - type: CableApcExtension - components: - - pos: 12.5,-30.5 - parent: 8364 - type: Transform -- uid: 12993 - type: CableApcExtension - components: - - pos: 11.5,-30.5 - parent: 8364 - type: Transform -- uid: 12994 - type: CableApcExtension - components: - - pos: 10.5,-30.5 - parent: 8364 - type: Transform -- uid: 12995 - type: CableApcExtension - components: - - pos: 9.5,-30.5 - parent: 8364 - type: Transform -- uid: 12996 - type: CableApcExtension - components: - - pos: 8.5,-30.5 - parent: 8364 - type: Transform -- uid: 12997 - type: CableApcExtension - components: - - pos: 7.5,-30.5 - parent: 8364 - type: Transform -- uid: 12998 - type: CableApcExtension - components: - - pos: 6.5,-30.5 - parent: 8364 - type: Transform -- uid: 12999 - type: CableApcExtension - components: - - pos: 5.5,-30.5 - parent: 8364 - type: Transform -- uid: 13000 - type: CableApcExtension - components: - - pos: 4.5,-30.5 - parent: 8364 - type: Transform -- uid: 13001 - type: CableApcExtension - components: - - pos: 3.5,-30.5 - parent: 8364 - type: Transform -- uid: 13002 - type: CableApcExtension - components: - - pos: 2.5,-30.5 - parent: 8364 - type: Transform -- uid: 13003 - type: CableApcExtension - components: - - pos: 1.5,-30.5 - parent: 8364 - type: Transform -- uid: 13004 - type: CableApcExtension - components: - - pos: 0.5,-30.5 - parent: 8364 - type: Transform -- uid: 13005 - type: CableApcExtension - components: - - pos: -0.5,-30.5 - parent: 8364 - type: Transform -- uid: 13006 - type: CableApcExtension - components: - - pos: -1.5,-30.5 - parent: 8364 - type: Transform -- uid: 13007 - type: CableApcExtension - components: - - pos: -2.5,-30.5 - parent: 8364 - type: Transform -- uid: 13008 - type: CableApcExtension - components: - - pos: -3.5,-30.5 - parent: 8364 - type: Transform -- uid: 13009 - type: CableApcExtension - components: - - pos: -4.5,-30.5 - parent: 8364 - type: Transform -- uid: 13010 - type: CableApcExtension - components: - - pos: -5.5,-30.5 - parent: 8364 - type: Transform -- uid: 13011 - type: CableApcExtension - components: - - pos: -6.5,-30.5 - parent: 8364 - type: Transform -- uid: 13012 - type: CableApcExtension - components: - - pos: -7.5,-30.5 - parent: 8364 - type: Transform -- uid: 13013 - type: CableApcExtension - components: - - pos: -8.5,-30.5 - parent: 8364 - type: Transform -- uid: 13014 - type: CableApcExtension - components: - - pos: -9.5,-30.5 - parent: 8364 - type: Transform -- uid: 13015 - type: CableApcExtension - components: - - pos: -10.5,-30.5 - parent: 8364 - type: Transform -- uid: 13016 - type: CableApcExtension - components: - - pos: -11.5,-30.5 - parent: 8364 - type: Transform -- uid: 13017 - type: CableApcExtension - components: - - pos: -12.5,-30.5 - parent: 8364 - type: Transform -- uid: 13018 - type: CableApcExtension - components: - - pos: -13.5,-30.5 - parent: 8364 - type: Transform -- uid: 13019 - type: CableApcExtension - components: - - pos: -14.5,-30.5 - parent: 8364 - type: Transform -- uid: 13020 - type: CableApcExtension - components: - - pos: -15.5,-30.5 - parent: 8364 - type: Transform -- uid: 13021 - type: CableApcExtension - components: - - pos: -16.5,-30.5 - parent: 8364 - type: Transform -- uid: 13022 - type: CableApcExtension - components: - - pos: -16.5,-29.5 - parent: 8364 - type: Transform -- uid: 13023 - type: CableApcExtension - components: - - pos: -16.5,-28.5 - parent: 8364 - type: Transform -- uid: 13024 - type: CableApcExtension - components: - - pos: -16.5,-27.5 - parent: 8364 - type: Transform -- uid: 13025 - type: CableApcExtension - components: - - pos: -16.5,-26.5 - parent: 8364 - type: Transform -- uid: 13026 - type: CableApcExtension - components: - - pos: -16.5,-25.5 - parent: 8364 - type: Transform -- uid: 13027 - type: CableApcExtension - components: - - pos: -16.5,-24.5 - parent: 8364 - type: Transform -- uid: 13028 - type: CableApcExtension - components: - - pos: -16.5,-23.5 - parent: 8364 - type: Transform -- uid: 13029 - type: CableApcExtension - components: - - pos: -16.5,-22.5 - parent: 8364 - type: Transform -- uid: 13030 - type: CableApcExtension - components: - - pos: -16.5,-21.5 - parent: 8364 - type: Transform -- uid: 13031 - type: CableApcExtension - components: - - pos: -16.5,-20.5 - parent: 8364 - type: Transform -- uid: 13032 - type: CableApcExtension - components: - - pos: -16.5,-19.5 - parent: 8364 - type: Transform -- uid: 13033 - type: CableMV - components: - - pos: -14.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13034 - type: Poweredlight - components: - - pos: -14.5,-0.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13035 - type: Poweredlight - components: - - pos: -7.5,-0.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13036 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-2.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13037 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-2.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13038 - type: Poweredlight - components: - - pos: 1.5,1.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13039 - type: CableApcExtension - components: - - pos: -0.5,-0.5 - parent: 8364 - type: Transform -- uid: 13040 - type: CableApcExtension - components: - - pos: -0.5,0.5 - parent: 8364 - type: Transform -- uid: 13041 - type: Poweredlight - components: - - pos: 11.5,-0.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13042 - type: WallSolid - components: - - pos: 17.5,-2.5 - parent: 8364 - type: Transform -- uid: 13043 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-13.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13044 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13045 - type: CableApcExtension - components: - - pos: -4.5,-0.5 - parent: 8364 - type: Transform -- uid: 13046 - type: CableApcExtension - components: - - pos: -4.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13047 - type: CableApcExtension - components: - - pos: -4.5,1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13048 - type: CableApcExtension - components: - - pos: -5.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13049 - type: CableApcExtension - components: - - pos: -6.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13050 - type: CableApcExtension - components: - - pos: 3.5,-0.5 - parent: 8364 - type: Transform -- uid: 13051 - type: CableApcExtension - components: - - pos: 3.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13052 - type: CableApcExtension - components: - - pos: 3.5,1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13053 - type: CableApcExtension - components: - - pos: 4.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13054 - type: CableApcExtension - components: - - pos: 5.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13055 - type: CableApcExtension - components: - - pos: -15.5,-8.5 - parent: 8364 - type: Transform -- uid: 13056 - type: CableApcExtension - components: - - pos: -14.5,-8.5 - parent: 8364 - type: Transform -- uid: 13057 - type: CableApcExtension - components: - - pos: 14.5,-8.5 - parent: 8364 - type: Transform -- uid: 13058 - type: CableApcExtension - components: - - pos: 13.5,-8.5 - parent: 8364 - type: Transform -- uid: 13059 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 20.5,-7.5 - parent: 8364 - type: Transform -- uid: 13060 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-17.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13061 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-21.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13062 - type: Catwalk - components: - - pos: 39.5,-62.5 - parent: 8364 - type: Transform -- uid: 13063 - type: WallReinforced - components: - - pos: 6.5,-37.5 - parent: 8364 - type: Transform -- uid: 13064 - type: Poweredlight - components: - - pos: 10.5,-29.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13065 - type: Catwalk - components: - - pos: 40.5,-62.5 - parent: 8364 - type: Transform -- uid: 13066 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-31.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13067 - type: Poweredlight - components: - - pos: -1.5,-29.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13068 - type: Poweredlight - components: - - pos: -11.5,-29.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13069 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-31.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13070 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-27.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13071 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-21.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13072 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-15.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13073 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-11.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13074 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13075 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-5.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13076 - type: SolarPanel - components: - - pos: -45.5,28.5 - parent: 8364 - type: Transform -- uid: 13077 - type: SolarPanel - components: - - pos: -44.5,30.5 - parent: 8364 - type: Transform -- uid: 13078 - type: SolarPanel - components: - - pos: -43.5,30.5 - parent: 8364 - type: Transform - - supplyRate: 259 - type: PowerSupplier -- uid: 13079 - type: SolarPanel - components: - - pos: -43.5,28.5 - parent: 8364 - type: Transform -- uid: 13080 - type: SolarTracker - components: - - pos: -49.5,41.5 - parent: 8364 - type: Transform -- uid: 13081 - type: Catwalk - components: - - pos: 40.5,-63.5 - parent: 8364 - type: Transform -- uid: 13082 - type: Catwalk - components: - - pos: 40.5,-64.5 - parent: 8364 - type: Transform -- uid: 13083 - type: Catwalk - components: - - pos: 40.5,-65.5 - parent: 8364 - type: Transform -- uid: 13084 - type: Catwalk - components: - - pos: 41.5,-65.5 - parent: 8364 - type: Transform -- uid: 13085 - type: Catwalk - components: - - pos: 42.5,-65.5 - parent: 8364 - type: Transform -- uid: 13086 - type: Catwalk - components: - - pos: 43.5,-65.5 - parent: 8364 - type: Transform -- uid: 13087 - type: Catwalk - components: - - pos: 44.5,-65.5 - parent: 8364 - type: Transform -- uid: 13088 - type: Catwalk - components: - - pos: 45.5,-65.5 - parent: 8364 - type: Transform -- uid: 13089 - type: Catwalk - components: - - pos: 46.5,-65.5 - parent: 8364 - type: Transform -- uid: 13090 - type: Catwalk - components: - - pos: 47.5,-65.5 - parent: 8364 - type: Transform -- uid: 13091 - type: Catwalk - components: - - pos: 47.5,-64.5 - parent: 8364 - type: Transform -- uid: 13092 - type: Catwalk - components: - - pos: 47.5,-62.5 - parent: 8364 - type: Transform -- uid: 13093 - type: Catwalk - components: - - pos: 47.5,-63.5 - parent: 8364 - type: Transform -- uid: 13094 - type: Catwalk - components: - - pos: 48.5,-62.5 - parent: 8364 - type: Transform -- uid: 13095 - type: Catwalk - components: - - pos: 82.5,-45.5 - parent: 8364 - type: Transform -- uid: 13096 - type: Catwalk - components: - - pos: 82.5,-46.5 - parent: 8364 - type: Transform -- uid: 13097 - type: Catwalk - components: - - pos: 82.5,-47.5 - parent: 8364 - type: Transform -- uid: 13098 - type: Catwalk - components: - - pos: 82.5,-48.5 - parent: 8364 - type: Transform -- uid: 13099 - type: Catwalk - components: - - pos: 82.5,-49.5 - parent: 8364 - type: Transform -- uid: 13100 - type: Catwalk - components: - - pos: 82.5,-50.5 - parent: 8364 - type: Transform -- uid: 13101 - type: Catwalk - components: - - pos: 82.5,-51.5 - parent: 8364 - type: Transform -- uid: 13102 - type: CableHV - components: - - pos: -49.5,28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13103 - type: CableHV - components: - - pos: -49.5,27.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13104 - type: CableHV - components: - - pos: -49.5,26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13105 - type: CableHV - components: - - pos: -49.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13106 - type: CableHV - components: - - pos: -49.5,24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13107 - type: CableApcExtension - components: - - pos: -49.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13108 - type: CableHV - components: - - pos: -51.5,37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13109 - type: Catwalk - components: - - pos: 82.5,-52.5 - parent: 8364 - type: Transform -- uid: 13110 - type: CableHV - components: - - pos: -47.5,37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13111 - type: Catwalk - components: - - pos: 82.5,-53.5 - parent: 8364 - type: Transform -- uid: 13112 - type: CableHV - components: - - pos: -47.5,33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13113 - type: PottedPlant10 - components: - - pos: -6.5,-19.5 - parent: 8364 - type: Transform -- uid: 13114 - type: CableHV - components: - - pos: -51.5,33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13115 - type: Catwalk - components: - - pos: 82.5,-55.5 - parent: 8364 - type: Transform -- uid: 13116 - type: Catwalk - components: - - pos: 82.5,-56.5 - parent: 8364 - type: Transform -- uid: 13117 - type: Catwalk - components: - - pos: 82.5,-57.5 - parent: 8364 - type: Transform -- uid: 13118 - type: Catwalk - components: - - pos: 82.5,-58.5 - parent: 8364 - type: Transform -- uid: 13119 - type: Catwalk - components: - - pos: 82.5,-59.5 - parent: 8364 - type: Transform -- uid: 13120 - type: Catwalk - components: - - pos: 81.5,-60.5 - parent: 8364 - type: Transform -- uid: 13121 - type: CableApcExtension - components: - - pos: -48.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13122 - type: Rack - components: - - pos: -48.5,23.5 - parent: 8364 - type: Transform -- uid: 13123 - type: ComputerSolarControl - components: - - rot: -1.5707963267948966 rad - pos: -48.5,22.5 - parent: 8364 - type: Transform -- uid: 13124 - type: SMESBasic - components: - - pos: -50.5,23.5 - parent: 8364 - type: Transform -- uid: 13125 - type: AirlockEngineeringLocked - components: - - name: Port Bow Solars - type: MetaData - - pos: -49.5,20.5 - parent: 8364 - type: Transform -- uid: 13126 - type: Catwalk - components: - - pos: 80.5,-60.5 - parent: 8364 - type: Transform -- uid: 13127 - type: CableApcExtension - components: - - pos: -51.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13128 - type: CableApcExtension - components: - - pos: -50.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13129 - type: CableApcExtension - components: - - pos: -49.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13130 - type: CableApcExtension - components: - - pos: -49.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13131 - type: CableApcExtension - components: - - pos: -49.5,24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13132 - type: CableApcExtension - components: - - pos: -50.5,24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13133 - type: CableApcExtension - components: - - pos: -51.5,24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13134 - type: CableApcExtension - components: - - pos: -50.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13135 - type: CableApcExtension - components: - - pos: -50.5,26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13136 - type: CableApcExtension - components: - - pos: -49.5,26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13137 - type: CableApcExtension - components: - - pos: -48.5,26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13138 - type: AirlockExternalGlassLocked - components: - - pos: -49.5,26.5 - parent: 8364 - type: Transform -- uid: 13139 - type: AirlockExternalGlassLocked - components: - - pos: -49.5,24.5 - parent: 8364 - type: Transform -- uid: 13140 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,22.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13141 - type: CableHV - components: - - pos: -49.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13142 - type: CableHV - components: - - pos: -49.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13143 - type: CableHV - components: - - pos: -49.5,18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13144 - type: CableApcExtension - components: - - pos: -48.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13145 - type: CableApcExtension - components: - - pos: -49.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13146 - type: CableApcExtension - components: - - pos: -52.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13147 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -58.5,15.5 - parent: 8364 - type: Transform -- uid: 13148 - type: WallSolid - components: - - pos: -51.5,12.5 - parent: 8364 - type: Transform -- uid: 13149 - type: ReinforcedWindow - components: - - pos: -51.5,13.5 - parent: 8364 - type: Transform -- uid: 13150 - type: Chair - components: - - pos: -54.5,17.5 - parent: 8364 - type: Transform -- uid: 13151 - type: CableHV - components: - - pos: -47.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13152 - type: CableHV - components: - - pos: -47.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13153 - type: CableHV - components: - - pos: -47.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13154 - type: CableHV - components: - - pos: -47.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13155 - type: CableHV - components: - - pos: -48.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13156 - type: CableHV - components: - - pos: -49.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13157 - type: CableHV - components: - - pos: -49.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13158 - type: CableHV - components: - - pos: -49.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13159 - type: CableHV - components: - - pos: -49.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13160 - type: CableHV - components: - - pos: -49.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13161 - type: CableHV - components: - - pos: -49.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13162 - type: CableHV - components: - - pos: -49.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13163 - type: CableHV - components: - - pos: -49.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13164 - type: CableHV - components: - - pos: -49.5,1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13165 - type: CableHV - components: - - pos: -49.5,0.5 - parent: 8364 - type: Transform -- uid: 13166 - type: CableHV - components: - - pos: -49.5,-0.5 - parent: 8364 - type: Transform -- uid: 13167 - type: CableHV - components: - - pos: -49.5,-1.5 - parent: 8364 - type: Transform -- uid: 13168 - type: CableHV - components: - - pos: -50.5,-1.5 - parent: 8364 - type: Transform -- uid: 13169 - type: CableHV - components: - - pos: -50.5,-2.5 - parent: 8364 - type: Transform -- uid: 13170 - type: CableMV - components: - - pos: -50.5,-3.5 - parent: 8364 - type: Transform -- uid: 13171 - type: CableHV - components: - - pos: -50.5,-4.5 - parent: 8364 - type: Transform -- uid: 13172 - type: CableHV - components: - - pos: -50.5,-5.5 - parent: 8364 - type: Transform -- uid: 13173 - type: CableHV - components: - - pos: -50.5,-6.5 - parent: 8364 - type: Transform -- uid: 13174 - type: CableHV - components: - - pos: -50.5,-7.5 - parent: 8364 - type: Transform -- uid: 13175 - type: CableHV - components: - - pos: -50.5,-8.5 - parent: 8364 - type: Transform -- uid: 13176 - type: CableHV - components: - - pos: -50.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13177 - type: CableHV - components: - - pos: -50.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13178 - type: CableHV - components: - - pos: -50.5,-11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13179 - type: CableHV - components: - - pos: -50.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13180 - type: CableHV - components: - - pos: -50.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13181 - type: CableHV - components: - - pos: -50.5,-14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13182 - type: CableHV - components: - - pos: -50.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13183 - type: CableHV - components: - - pos: -50.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13184 - type: CableHV - components: - - pos: -50.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13185 - type: CableHV - components: - - pos: -50.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13186 - type: CableHV - components: - - pos: -49.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13187 - type: CableHV - components: - - pos: -48.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13188 - type: CableHV - components: - - pos: -47.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13189 - type: CableHV - components: - - pos: -46.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13190 - type: CableHV - components: - - pos: -45.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13191 - type: CableHV - components: - - pos: -44.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13192 - type: CableHV - components: - - pos: -43.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13193 - type: CableHV - components: - - pos: -42.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13194 - type: CableHV - components: - - pos: -41.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13195 - type: CableHV - components: - - pos: -40.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13196 - type: hydroponicsSoil - components: - - pos: -19.5,1.5 - parent: 8364 - type: Transform -- uid: 13197 - type: WallSolid - components: - - pos: -23.5,8.5 - parent: 8364 - type: Transform -- uid: 13198 - type: WallSolid - components: - - pos: -22.5,8.5 - parent: 8364 - type: Transform -- uid: 13199 - type: WallSolid - components: - - pos: -19.5,8.5 - parent: 8364 - type: Transform -- uid: 13200 - type: hydroponicsSoil - components: - - pos: -18.5,1.5 - parent: 8364 - type: Transform -- uid: 13201 - type: WallSolid - components: - - pos: -17.5,2.5 - parent: 8364 - type: Transform -- uid: 13202 - type: WallSolid - components: - - pos: -17.5,1.5 - parent: 8364 - type: Transform -- uid: 13203 - type: Catwalk - components: - - pos: 79.5,-60.5 - parent: 8364 - type: Transform -- uid: 13204 - type: WallSolid - components: - - pos: -18.5,8.5 - parent: 8364 - type: Transform -- uid: 13205 - type: WallSolid - components: - - pos: -23.5,7.5 - parent: 8364 - type: Transform -- uid: 13206 - type: WallSolid - components: - - pos: -23.5,6.5 - parent: 8364 - type: Transform -- uid: 13207 - type: WallSolid - components: - - pos: -23.5,5.5 - parent: 8364 - type: Transform -- uid: 13208 - type: WallSolid - components: - - pos: -18.5,7.5 - parent: 8364 - type: Transform -- uid: 13209 - type: WallSolid - components: - - pos: -54.5,8.5 - parent: 8364 - type: Transform -- uid: 13210 - type: ReinforcedWindow - components: - - pos: -36.5,17.5 - parent: 8364 - type: Transform -- uid: 13211 - type: WallSolid - components: - - pos: -24.5,3.5 - parent: 8364 - type: Transform -- uid: 13212 - type: WallSolid - components: - - pos: -24.5,2.5 - parent: 8364 - type: Transform -- uid: 13213 - type: WallSolid - components: - - pos: -24.5,1.5 - parent: 8364 - type: Transform -- uid: 13214 - type: WallSolid - components: - - pos: -17.5,11.5 - parent: 8364 - type: Transform -- uid: 13215 - type: WallSolid - components: - - pos: -18.5,11.5 - parent: 8364 - type: Transform -- uid: 13216 - type: WallSolid - components: - - pos: -19.5,11.5 - parent: 8364 - type: Transform -- uid: 13217 - type: hydroponicsSoil - components: - - pos: -23.5,1.5 - parent: 8364 - type: Transform -- uid: 13218 - type: WallSolid - components: - - pos: -21.5,11.5 - parent: 8364 - type: Transform -- uid: 13219 - type: Catwalk - components: - - pos: 78.5,-60.5 - parent: 8364 - type: Transform -- uid: 13220 - type: Catwalk - components: - - pos: 77.5,-60.5 - parent: 8364 - type: Transform -- uid: 13221 - type: Catwalk - components: - - pos: 76.5,-60.5 - parent: 8364 - type: Transform -- uid: 13222 - type: ReinforcedWindow - components: - - pos: -37.5,17.5 - parent: 8364 - type: Transform -- uid: 13223 - type: ReinforcedWindow - components: - - pos: -38.5,17.5 - parent: 8364 - type: Transform -- uid: 13224 - type: Catwalk - components: - - pos: 74.5,-60.5 - parent: 8364 - type: Transform -- uid: 13225 - type: TableWood - components: - - pos: -36.5,21.5 - parent: 8364 - type: Transform -- uid: 13226 - type: TableWood - components: - - pos: -30.5,23.5 - parent: 8364 - type: Transform -- uid: 13227 - type: Chair - components: - - pos: -30.5,24.5 - parent: 8364 - type: Transform -- uid: 13228 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -30.5,22.5 - parent: 8364 - type: Transform -- uid: 13229 - type: RandomArcade - components: - - pos: -33.5,24.5 - parent: 8364 - type: Transform -- uid: 13230 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -35.5,23.5 - parent: 8364 - type: Transform -- uid: 13231 - type: Chair - components: - - pos: -30.5,20.5 - parent: 8364 - type: Transform -- uid: 13232 - type: Catwalk - components: - - pos: 73.5,-60.5 - parent: 8364 - type: Transform -- uid: 13233 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -30.5,18.5 - parent: 8364 - type: Transform -- uid: 13234 - type: MaterialWoodPlank1 - components: - - rot: 3.1415202617645264 rad - pos: -30.264874,19.73441 - parent: 8364 - type: Transform -- uid: 13235 - type: MaterialWoodPlank1 - components: - - rot: 3.141592653589793 rad - pos: -30.638481,19.375069 - parent: 8364 - type: Transform -- uid: 13236 - type: TableWood - components: - - pos: -36.5,22.5 - parent: 8364 - type: Transform -- uid: 13237 - type: TableWood - components: - - pos: -33.5,18.5 - parent: 8364 - type: Transform -- uid: 13238 - type: KitchenMicrowave - components: - - pos: -33.5,18.5 - parent: 8364 - type: Transform -- uid: 13239 - type: TableWood - components: - - pos: -36.5,20.5 - parent: 8364 - type: Transform -- uid: 13240 - type: TableFrame - components: - - pos: -36.5,23.5 - parent: 8364 - type: Transform -- uid: 13241 - type: ReinforcedWindow - components: - - pos: -35.5,13.5 - parent: 8364 - type: Transform -- uid: 13242 - type: ReinforcedWindow - components: - - pos: -36.5,13.5 - parent: 8364 - type: Transform -- uid: 13243 - type: ReinforcedWindow - components: - - pos: -37.5,13.5 - parent: 8364 - type: Transform -- uid: 13244 - type: ReinforcedWindow - components: - - pos: -38.5,13.5 - parent: 8364 - type: Transform -- uid: 13245 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 11.5,6.5 - parent: 8364 - type: Transform -- uid: 13246 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 11.5,5.5 - parent: 8364 - type: Transform -- uid: 13247 - type: SignalSwitch - components: - - name: lights switch - type: MetaData - - pos: 10.8,3.5 - parent: 8364 - type: Transform -- uid: 13248 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 11.5,3.5 - parent: 8364 - type: Transform -- uid: 13249 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 11.5,2.5 - parent: 8364 - type: Transform -- uid: 13250 - type: TableWood - components: - - pos: -37.5,23.5 - parent: 8364 - type: Transform -- uid: 13251 - type: Catwalk - components: - - pos: 72.5,-60.5 - parent: 8364 - type: Transform -- uid: 13252 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,18.5 - parent: 8364 - type: Transform -- uid: 13253 - type: Barricade - components: - - rot: 3.141592653589793 rad - pos: -32.5,19.5 - parent: 8364 - type: Transform -- uid: 13254 - type: Barricade - components: - - rot: 3.141592653589793 rad - pos: -34.5,22.5 - parent: 8364 - type: Transform -- uid: 13255 - type: LockerBoozeFilled - components: - - pos: -38.5,19.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 13256 - type: ClosetBase - components: - - pos: -43.5,22.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 13257 - type: SinkWide - components: - - pos: -42.5,22.5 - parent: 8364 - type: Transform -- uid: 13258 - type: hydroponicsSoil - components: - - pos: -40.5,22.5 - parent: 8364 - type: Transform -- uid: 13259 - type: hydroponicsSoil - components: - - pos: -41.5,22.5 - parent: 8364 - type: Transform -- uid: 13260 - type: hydroponicsSoil - components: - - pos: -41.5,20.5 - parent: 8364 - type: Transform -- uid: 13261 - type: hydroponicsSoil - components: - - pos: -40.5,20.5 - parent: 8364 - type: Transform -- uid: 13262 - type: Bucket - components: - - pos: -42.5,21.5 - parent: 8364 - type: Transform -- uid: 13263 - type: CrateHydroponicsSeeds - components: - - pos: -43.5,20.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 13264 - type: Catwalk - components: - - pos: 71.5,-60.5 - parent: 8364 - type: Transform -- uid: 13265 - type: Catwalk - components: - - pos: 70.5,-60.5 - parent: 8364 - type: Transform -- uid: 13266 - type: Catwalk - components: - - pos: 69.5,-60.5 - parent: 8364 - type: Transform -- uid: 13267 - type: PoweredSmallLight - components: - - pos: -41.5,22.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13268 - type: PoweredSmallLight - components: - - pos: -31.5,24.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13269 - type: CableApcExtension - components: - - pos: -39.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13270 - type: CableApcExtension - components: - - pos: -40.5,20.5 - parent: 8364 - type: Transform -- uid: 13271 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,19.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13272 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -34.5,18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13273 - type: CableApcExtension - components: - - pos: -41.5,21.5 - parent: 8364 - type: Transform -- uid: 13274 - type: CableApcExtension - components: - - pos: -41.5,20.5 - parent: 8364 - type: Transform -- uid: 13275 - type: CableApcExtension - components: - - pos: -42.5,21.5 - parent: 8364 - type: Transform -- uid: 13276 - type: CableApcExtension - components: - - pos: -38.5,20.5 - parent: 8364 - type: Transform -- uid: 13277 - type: CableApcExtension - components: - - pos: -37.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13278 - type: CableApcExtension - components: - - pos: -35.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13279 - type: CableApcExtension - components: - - pos: -36.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13280 - type: CableApcExtension - components: - - pos: -34.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13281 - type: CableApcExtension - components: - - pos: -33.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13282 - type: CableApcExtension - components: - - pos: -33.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13283 - type: CableApcExtension - components: - - pos: -32.5,21.5 - parent: 8364 - type: Transform -- uid: 13284 - type: CableApcStack1 - components: - - pos: -33.5,22.5 - parent: 8364 - type: Transform -- uid: 13285 - type: CableApcStack1 - components: - - pos: -33.5,23.5 - parent: 8364 - type: Transform -- uid: 13286 - type: CableApcExtension - components: - - pos: -33.5,24.5 - parent: 8364 - type: Transform -- uid: 13287 - type: CableApcExtension - components: - - pos: -33.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13288 - type: CableApcExtension - components: - - pos: -34.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13289 - type: CableApcExtension - components: - - pos: -35.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13290 - type: CableApcExtension - components: - - pos: -32.5,25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13291 - type: CableApcStack1 - components: - - pos: -31.5,21.5 - parent: 8364 - type: Transform -- uid: 13292 - type: CableApcExtension - components: - - pos: -31.5,22.5 - parent: 8364 - type: Transform -- uid: 13293 - type: LockerEvidence - components: - - pos: -2.5,28.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.9556966 - - 18.642859 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13294 - type: CableApcExtension - components: - - pos: -30.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13295 - type: CableApcExtension - components: - - pos: -29.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13296 - type: CableApcExtension - components: - - pos: -29.5,24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13297 - type: CableApcExtension - components: - - pos: -29.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13298 - type: CableApcExtension - components: - - pos: -31.5,20.5 - parent: 8364 - type: Transform -- uid: 13299 - type: CableApcStack1 - components: - - pos: -31.5,23.5 - parent: 8364 - type: Transform -- uid: 13300 - type: CableApcExtension - components: - - pos: -30.5,19.5 - parent: 8364 - type: Transform -- uid: 13301 - type: CableApcExtension - components: - - pos: -29.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13302 - type: CableApcExtension - components: - - pos: -29.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13303 - type: CableApcExtension - components: - - pos: -29.5,18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13304 - type: CableApcExtension - components: - - pos: -32.5,19.5 - parent: 8364 - type: Transform -- uid: 13305 - type: Catwalk - components: - - pos: 68.5,-60.5 - parent: 8364 - type: Transform -- uid: 13306 - type: ClothingHeadHatBowlerHat - components: - - pos: -36.5,22.5 - parent: 8364 - type: Transform -- uid: 13307 - type: Ash - components: - - pos: -36.5,20.5 - parent: 8364 - type: Transform -- uid: 13308 - type: Barricade - components: - - pos: -39.5,21.5 - parent: 8364 - type: Transform -- uid: 13309 - type: AirlockGlass - components: - - pos: -31.5,13.5 - parent: 8364 - type: Transform -- uid: 13310 - type: Barricade - components: - - pos: -31.5,17.5 - parent: 8364 - type: Transform -- uid: 13311 - type: WindoorAssembly - components: - - rot: 3.141592653589793 rad - pos: -38.5,23.5 - parent: 8364 - type: Transform -- uid: 13312 - type: CableMV - components: - - pos: -31.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13313 - type: CableMV - components: - - pos: -31.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13314 - type: CableMV - components: - - pos: -31.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13315 - type: CableMV - components: - - pos: -31.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13316 - type: CableMV - components: - - pos: -31.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13317 - type: CableMV - components: - - pos: -31.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13318 - type: CableMV - components: - - pos: -31.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13319 - type: CableMVStack1 - components: - - pos: -31.5,18.5 - parent: 8364 - type: Transform -- uid: 13320 - type: CableMVStack1 - components: - - pos: 65.5,16.5 - parent: 8364 - type: Transform -- uid: 13321 - type: CableMV - components: - - pos: -31.5,20.5 - parent: 8364 - type: Transform -- uid: 13322 - type: CableMV - components: - - pos: -32.5,20.5 - parent: 8364 - type: Transform -- uid: 13323 - type: CableMVStack1 - components: - - pos: -33.5,20.5 - parent: 8364 - type: Transform -- uid: 13324 - type: CableMVStack1 - components: - - pos: -34.5,20.5 - parent: 8364 - type: Transform -- uid: 13325 - type: CableMVStack1 - components: - - pos: -35.5,20.5 - parent: 8364 - type: Transform -- uid: 13326 - type: CableMVStack1 - components: - - pos: -36.5,20.5 - parent: 8364 - type: Transform -- uid: 13327 - type: CableMVStack1 - components: - - pos: -37.5,20.5 - parent: 8364 - type: Transform -- uid: 13328 - type: CableMV - components: - - pos: -39.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13329 - type: CableMV - components: - - pos: -38.5,20.5 - parent: 8364 - type: Transform -- uid: 13330 - type: CableMV - components: - - pos: -35.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13331 - type: CableMV - components: - - pos: -33.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13332 - type: CableMVStack1 - components: - - pos: -31.5,19.5 - parent: 8364 - type: Transform -- uid: 13333 - type: Catwalk - components: - - pos: 67.5,-60.5 - parent: 8364 - type: Transform -- uid: 13334 - type: Catwalk - components: - - pos: 66.5,-60.5 - parent: 8364 - type: Transform -- uid: 13335 - type: Catwalk - components: - - pos: 64.5,-61.5 - parent: 8364 - type: Transform -- uid: 13336 - type: AirlockMaintGlassLocked - components: - - pos: -55.5,-18.5 - parent: 8364 - type: Transform -- uid: 13337 - type: Catwalk - components: - - pos: 63.5,-61.5 - parent: 8364 - type: Transform -- uid: 13338 - type: Catwalk - components: - - pos: 62.5,-61.5 - parent: 8364 - type: Transform -- uid: 13339 - type: Catwalk - components: - - pos: 61.5,-61.5 - parent: 8364 - type: Transform -- uid: 13340 - type: Catwalk - components: - - pos: 60.5,-61.5 - parent: 8364 - type: Transform -- uid: 13341 - type: Catwalk - components: - - pos: 59.5,-61.5 - parent: 8364 - type: Transform -- uid: 13342 - type: Catwalk - components: - - pos: 58.5,-61.5 - parent: 8364 - type: Transform -- uid: 13343 - type: Catwalk - components: - - pos: 57.5,-61.5 - parent: 8364 - type: Transform -- uid: 13344 - type: Catwalk - components: - - pos: 56.5,-61.5 - parent: 8364 - type: Transform -- uid: 13345 - type: Catwalk - components: - - pos: 55.5,-61.5 - parent: 8364 - type: Transform -- uid: 13346 - type: Catwalk - components: - - pos: 54.5,-61.5 - parent: 8364 - type: Transform -- uid: 13347 - type: Catwalk - components: - - pos: 53.5,-61.5 - parent: 8364 - type: Transform -- uid: 13348 - type: Catwalk - components: - - pos: 52.5,-61.5 - parent: 8364 - type: Transform -- uid: 13349 - type: CableApcExtension - components: - - pos: 57.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13350 - type: TableWood - components: - - pos: -9.5,-14.5 - parent: 8364 - type: Transform -- uid: 13351 - type: Catwalk - components: - - pos: 49.5,-60.5 - parent: 8364 - type: Transform -- uid: 13352 - type: Catwalk - components: - - pos: 49.5,-59.5 - parent: 8364 - type: Transform -- uid: 13353 - type: ClothingHeadHatAnimalCatBrown - components: - - pos: -54.557106,-7.452629 - parent: 8364 - type: Transform -- uid: 13354 - type: ClothingOuterCoatBomber - components: - - pos: -46.493744,14.462048 - parent: 8364 - type: Transform -- uid: 13355 - type: Catwalk - components: - - pos: 49.5,-58.5 - parent: 8364 - type: Transform -- uid: 13356 - type: WallReinforced - components: - - pos: -22.5,13.5 - parent: 8364 - type: Transform -- uid: 13357 - type: Catwalk - components: - - pos: 49.5,-57.5 - parent: 8364 - type: Transform -- uid: 13358 - type: Catwalk - components: - - pos: 49.5,-56.5 - parent: 8364 - type: Transform -- uid: 13359 - type: Catwalk - components: - - pos: 49.5,-55.5 - parent: 8364 - type: Transform -- uid: 13360 - type: Catwalk - components: - - pos: 49.5,-54.5 - parent: 8364 - type: Transform -- uid: 13361 - type: Catwalk - components: - - pos: 49.5,-53.5 - parent: 8364 - type: Transform -- uid: 13362 - type: FirelockGlass - components: - - pos: 70.5,-16.5 - parent: 8364 - type: Transform -- uid: 13363 - type: FirelockGlass - components: - - pos: 62.5,-16.5 - parent: 8364 - type: Transform -- uid: 13364 - type: FirelockGlass - components: - - pos: 64.5,-23.5 - parent: 8364 - type: Transform -- uid: 13365 - type: FirelockGlass - components: - - pos: 65.5,-21.5 - parent: 8364 - type: Transform -- uid: 13366 - type: WallReinforced - components: - - pos: -22.5,11.5 - parent: 8364 - type: Transform -- uid: 13367 - type: FirelockGlass - components: - - pos: 66.5,-21.5 - parent: 8364 - type: Transform -- uid: 13368 - type: FirelockGlass - components: - - pos: 67.5,-21.5 - parent: 8364 - type: Transform -- uid: 13369 - type: FirelockGlass - components: - - pos: 68.5,-22.5 - parent: 8364 - type: Transform -- uid: 13370 - type: FirelockGlass - components: - - pos: 68.5,-23.5 - parent: 8364 - type: Transform -- uid: 13371 - type: FirelockGlass - components: - - pos: 68.5,-24.5 - parent: 8364 - type: Transform -- uid: 13372 - type: CableMV - components: - - pos: -44.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13373 - type: CableMV - components: - - pos: -43.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13374 - type: CableMV - components: - - pos: -43.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13375 - type: CableHV - components: - - pos: -44.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13376 - type: CableHV - components: - - pos: -43.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13377 - type: CableHV - components: - - pos: -43.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13378 - type: FirelockGlass - components: - - pos: 73.5,-12.5 - parent: 8364 - type: Transform -- uid: 13379 - type: FirelockGlass - components: - - pos: 73.5,-13.5 - parent: 8364 - type: Transform -- uid: 13380 - type: FirelockGlass - components: - - pos: 73.5,-14.5 - parent: 8364 - type: Transform -- uid: 13381 - type: FirelockGlass - components: - - pos: 38.5,-10.5 - parent: 8364 - type: Transform -- uid: 13382 - type: FirelockGlass - components: - - pos: 37.5,-10.5 - parent: 8364 - type: Transform -- uid: 13383 - type: FirelockGlass - components: - - pos: 36.5,-10.5 - parent: 8364 - type: Transform -- uid: 13384 - type: FirelockGlass - components: - - pos: 35.5,-10.5 - parent: 8364 - type: Transform -- uid: 13385 - type: FirelockGlass - components: - - pos: 18.5,-12.5 - parent: 8364 - type: Transform -- uid: 13386 - type: FirelockGlass - components: - - pos: 18.5,-13.5 - parent: 8364 - type: Transform -- uid: 13387 - type: CableApcExtension - components: - - pos: -31.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13388 - type: FirelockGlass - components: - - pos: 18.5,-14.5 - parent: 8364 - type: Transform -- uid: 13389 - type: FirelockGlass - components: - - pos: 41.5,-12.5 - parent: 8364 - type: Transform -- uid: 13390 - type: FirelockGlass - components: - - pos: 41.5,-13.5 - parent: 8364 - type: Transform -- uid: 13391 - type: FirelockGlass - components: - - pos: 41.5,-14.5 - parent: 8364 - type: Transform -- uid: 13392 - type: CableApcExtension - components: - - pos: -31.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13393 - type: SignHydro3 - components: - - pos: 41.5,-11.5 - parent: 8364 - type: Transform -- uid: 13394 - type: FirelockGlass - components: - - pos: 41.5,-6.5 - parent: 8364 - type: Transform -- uid: 13395 - type: Catwalk - components: - - pos: 19.5,30.5 - parent: 8364 - type: Transform -- uid: 13396 - type: Catwalk - components: - - pos: 20.5,30.5 - parent: 8364 - type: Transform -- uid: 13397 - type: WallReinforced - components: - - pos: -22.5,14.5 - parent: 8364 - type: Transform -- uid: 13398 - type: SpawnPointAssistant - components: - - pos: -43.5,3.5 - parent: 8364 - type: Transform -- uid: 13399 - type: AirlockScienceGlassLocked - components: - - pos: 63.5,-38.5 - parent: 8364 - type: Transform -- uid: 13400 - type: Catwalk - components: - - pos: 21.5,29.5 - parent: 8364 - type: Transform -- uid: 13401 - type: Catwalk - components: - - pos: 21.5,28.5 - parent: 8364 - type: Transform -- uid: 13402 - type: Catwalk - components: - - pos: 21.5,27.5 - parent: 8364 - type: Transform -- uid: 13403 - type: Catwalk - components: - - pos: 21.5,26.5 - parent: 8364 - type: Transform -- uid: 13404 - type: Catwalk - components: - - pos: 21.5,25.5 - parent: 8364 - type: Transform -- uid: 13405 - type: FirelockGlass - components: - - pos: 20.5,24.5 - parent: 8364 - type: Transform -- uid: 13406 - type: Autolathe - components: - - pos: 69.5,-19.5 - parent: 8364 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage -- uid: 13407 - type: ChemDispenserMachineCircuitboard - components: - - pos: -13.506469,-36.388306 - parent: 8364 - type: Transform -- uid: 13408 - type: LockerScienceFilled - components: - - pos: 71.5,-31.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13409 - type: LockerScienceFilled - components: - - pos: 70.5,-31.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13410 - type: LockerScienceFilled - components: - - pos: 69.5,-31.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13411 - type: Catwalk - components: - - pos: 21.5,23.5 - parent: 8364 - type: Transform -- uid: 13412 - type: Catwalk - components: - - pos: 21.5,22.5 - parent: 8364 - type: Transform -- uid: 13413 - type: Catwalk - components: - - pos: 21.5,21.5 - parent: 8364 - type: Transform -- uid: 13414 - type: Catwalk - components: - - pos: 21.5,20.5 - parent: 8364 - type: Transform -- uid: 13415 - type: WallReinforced - components: - - pos: -62.5,-17.5 - parent: 8364 - type: Transform -- uid: 13416 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-17.5 - parent: 8364 - type: Transform -- uid: 13417 - type: Catwalk - components: - - pos: 21.5,19.5 - parent: 8364 - type: Transform -- uid: 13418 - type: Catwalk - components: - - pos: 21.5,18.5 - parent: 8364 - type: Transform -- uid: 13419 - type: RandomArtifactSpawner - components: - - pos: 78.5,-29.5 - parent: 8364 - type: Transform -- uid: 13420 - type: Catwalk - components: - - pos: 20.5,17.5 - parent: 8364 - type: Transform -- uid: 13421 - type: Catwalk - components: - - pos: 19.5,17.5 - parent: 8364 - type: Transform -- uid: 13422 - type: Catwalk - components: - - pos: 18.5,17.5 - parent: 8364 - type: Transform -- uid: 13423 - type: DisposalUnit - components: - - pos: 79.5,-23.5 - parent: 8364 - type: Transform -- uid: 13424 - type: Catwalk - components: - - pos: 16.5,17.5 - parent: 8364 - type: Transform -- uid: 13425 - type: Catwalk - components: - - pos: 15.5,17.5 - parent: 8364 - type: Transform -- uid: 13426 - type: Catwalk - components: - - pos: 14.5,17.5 - parent: 8364 - type: Transform -- uid: 13427 - type: Catwalk - components: - - pos: 13.5,17.5 - parent: 8364 - type: Transform -- uid: 13428 - type: Catwalk - components: - - pos: 12.5,17.5 - parent: 8364 - type: Transform -- uid: 13429 - type: Catwalk - components: - - pos: 11.5,17.5 - parent: 8364 - type: Transform -- uid: 13430 - type: AirlockMaintLocked - components: - - pos: 7.5,17.5 - parent: 8364 - type: Transform -- uid: 13431 - type: Grille - components: - - pos: -6.5,38.5 - parent: 8364 - type: Transform -- uid: 13432 - type: Chair - components: - - pos: -55.5,17.5 - parent: 8364 - type: Transform -- uid: 13433 - type: ReinforcedWindow - components: - - pos: -51.5,15.5 - parent: 8364 - type: Transform -- uid: 13434 - type: WallSolid - components: - - pos: -49.5,12.5 - parent: 8364 - type: Transform -- uid: 13435 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -58.5,13.5 - parent: 8364 - type: Transform -- uid: 13436 - type: CableApcExtension - components: - - pos: -51.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13437 - type: CableApcExtension - components: - - pos: -48.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13438 - type: CableApcExtension - components: - - pos: -48.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13439 - type: TableReinforced - components: - - pos: -6.5,40.5 - parent: 8364 - type: Transform -- uid: 13440 - type: AirlockMaintLocked - components: - - pos: 10.5,17.5 - parent: 8364 - type: Transform -- uid: 13441 - type: Catwalk - components: - - pos: 6.5,17.5 - parent: 8364 - type: Transform -- uid: 13442 - type: CableHV - components: - - pos: -49.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13443 - type: CableMV - components: - - pos: -49.5,18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13444 - type: CableMV - components: - - pos: -49.5,19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13445 - type: CableMV - components: - - pos: -49.5,20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13446 - type: CableMV - components: - - pos: -49.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13447 - type: CableMV - components: - - pos: -49.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13448 - type: CableMV - components: - - pos: -50.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13449 - type: CableMV - components: - - pos: -51.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13450 - type: ShardGlassReinforced - components: - - pos: -57.531437,14.45809 - parent: 8364 - type: Transform -- uid: 13451 - type: Catwalk - components: - - pos: 5.5,17.5 - parent: 8364 - type: Transform -- uid: 13452 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: -57.5,16.5 - parent: 8364 - type: Transform -- uid: 13453 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -56.5,16.5 - parent: 8364 - type: Transform -- uid: 13454 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -57.5,15.5 - parent: 8364 - type: Transform -- uid: 13455 - type: Catwalk - components: - - pos: 4.5,17.5 - parent: 8364 - type: Transform -- uid: 13456 - type: CableApcExtension - components: - - pos: -51.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13457 - type: CableMV - components: - - pos: -48.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13458 - type: CableApcExtension - components: - - pos: -58.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13459 - type: CableApcExtension - components: - - pos: -56.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13460 - type: Catwalk - components: - - pos: 3.5,17.5 - parent: 8364 - type: Transform -- uid: 13461 - type: FirelockGlass - components: - - pos: 17.5,17.5 - parent: 8364 - type: Transform -- uid: 13462 - type: Catwalk - components: - - pos: 2.5,16.5 - parent: 8364 - type: Transform -- uid: 13463 - type: Catwalk - components: - - pos: 2.5,15.5 - parent: 8364 - type: Transform -- uid: 13464 - type: Catwalk - components: - - pos: 2.5,14.5 - parent: 8364 - type: Transform -- uid: 13465 - type: CableApcExtension - components: - - pos: -25.5,1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13466 - type: CableApcExtension - components: - - pos: -30.5,-2.5 - parent: 8364 - type: Transform -- uid: 13467 - type: Catwalk - components: - - pos: 2.5,13.5 - parent: 8364 - type: Transform -- uid: 13468 - type: Catwalk - components: - - pos: 2.5,12.5 - parent: 8364 - type: Transform -- uid: 13469 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 8.5,16.5 - parent: 8364 - type: Transform -- uid: 13470 - type: Table - components: - - pos: -5.5,9.5 - parent: 8364 - type: Transform -- uid: 13471 - type: CarpetSBlue - components: - - pos: -23.5,-11.5 - parent: 8364 - type: Transform -- uid: 13472 - type: PowerCellRecharger - components: - - pos: -19.5,-16.5 - parent: 8364 - type: Transform -- uid: 13473 - type: FirelockGlass - components: - - pos: -18.5,-18.5 - parent: 8364 - type: Transform -- uid: 13474 - type: AirlockGlass - components: - - pos: -19.5,-11.5 - parent: 8364 - type: Transform -- uid: 13475 - type: FireAlarm - components: - - pos: -3.5,-54.5 - parent: 8364 - type: Transform - - devices: - - 14697 - - 14698 - - 14699 - - 14486 - type: DeviceList -- uid: 13476 - type: WindowDirectional - components: - - pos: 18.5,-7.5 - parent: 8364 - type: Transform -- uid: 13477 - type: BrbSign - components: - - pos: -11.524348,-21.41842 - parent: 8364 - type: Transform -- uid: 13478 - type: CarpetSBlue - components: - - pos: -8.5,-22.5 - parent: 8364 - type: Transform -- uid: 13479 - type: hydroponicsSoil - components: - - pos: -21.5,1.5 - parent: 8364 - type: Transform -- uid: 13480 - type: WallSolid - components: - - pos: -18.5,6.5 - parent: 8364 - type: Transform -- uid: 13481 - type: hydroponicsSoil - components: - - pos: -20.5,1.5 - parent: 8364 - type: Transform -- uid: 13482 - type: WallSolid - components: - - pos: -23.5,3.5 - parent: 8364 - type: Transform -- uid: 13483 - type: WallSolid - components: - - pos: -21.5,3.5 - parent: 8364 - type: Transform -- uid: 13484 - type: Barricade - components: - - pos: -23.5,4.5 - parent: 8364 - type: Transform -- uid: 13485 - type: Barricade - components: - - pos: -18.5,4.5 - parent: 8364 - type: Transform -- uid: 13486 - type: WallSolid - components: - - pos: -20.5,3.5 - parent: 8364 - type: Transform -- uid: 13487 - type: WallSolid - components: - - pos: -17.5,3.5 - parent: 8364 - type: Transform -- uid: 13488 - type: WallSolid - components: - - pos: -18.5,3.5 - parent: 8364 - type: Transform -- uid: 13489 - type: WallSolid - components: - - pos: -18.5,5.5 - parent: 8364 - type: Transform -- uid: 13490 - type: hydroponicsSoil - components: - - pos: -22.5,1.5 - parent: 8364 - type: Transform -- uid: 13491 - type: Grille - components: - - pos: -21.5,8.5 - parent: 8364 - type: Transform -- uid: 13492 - type: CableApcExtension - components: - - pos: -20.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13493 - type: TableGlass - components: - - pos: -22.5,7.5 - parent: 8364 - type: Transform -- uid: 13494 - type: TableGlass - components: - - pos: -22.5,6.5 - parent: 8364 - type: Transform -- uid: 13495 - type: TableGlass - components: - - pos: -19.5,7.5 - parent: 8364 - type: Transform -- uid: 13496 - type: TableGlass - components: - - pos: -19.5,6.5 - parent: 8364 - type: Transform -- uid: 13497 - type: CrateHydroponicsSeeds - components: - - pos: -22.5,5.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 13498 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -19.5,5.5 - parent: 8364 - type: Transform -- uid: 13499 - type: Bucket - components: - - pos: -19.5,6.5 - parent: 8364 - type: Transform -- uid: 13500 - type: PlantBGoneSpray - components: - - pos: -19.5,7.5 - parent: 8364 - type: Transform -- uid: 13501 - type: HydroponicsToolHatchet - components: - - pos: -19.5,6.5 - parent: 8364 - type: Transform -- uid: 13502 - type: HydroponicsToolMiniHoe - components: - - pos: -19.5,6.5 - parent: 8364 - type: Transform -- uid: 13503 - type: Crowbar - components: - - pos: -19.5,6.5 - parent: 8364 - type: Transform -- uid: 13504 - type: PestSpray - components: - - pos: -19.276125,7.595537 - parent: 8364 - type: Transform -- uid: 13505 - type: RobustHarvestChemistryBottle - components: - - pos: -19.744875,7.720537 - parent: 8364 - type: Transform -- uid: 13506 - type: Crowbar - components: - - pos: -22.5,6.5 - parent: 8364 - type: Transform -- uid: 13507 - type: HydroponicsToolMiniHoe - components: - - pos: -22.5,6.5 - parent: 8364 - type: Transform -- uid: 13508 - type: Bucket - components: - - pos: -22.5,6.5 - parent: 8364 - type: Transform -- uid: 13509 - type: HydroponicsToolHatchet - components: - - pos: -22.5,6.5 - parent: 8364 - type: Transform -- uid: 13510 - type: HydroponicsToolClippers - components: - - pos: -22.5,6.5 - parent: 8364 - type: Transform -- uid: 13511 - type: HydroponicsToolClippers - components: - - pos: -19.5,6.5 - parent: 8364 - type: Transform -- uid: 13512 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -4.5,39.5 - parent: 8364 - type: Transform -- uid: 13513 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -6.5,39.5 - parent: 8364 - type: Transform -- uid: 13514 - type: APCBasic - components: - - name: Garden APC - type: MetaData - - pos: -21.5,3.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 10 - supplyRampPosition: 6.0937796 - type: PowerNetworkBattery -- uid: 13515 - type: CableApcExtension - components: - - pos: -21.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13516 - type: CableApcExtension - components: - - pos: -21.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13517 - type: CableApcExtension - components: - - pos: -21.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13518 - type: CableApcExtension - components: - - pos: -20.5,2.5 - parent: 8364 - type: Transform -- uid: 13519 - type: CableApcExtension - components: - - pos: -22.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13520 - type: CableApcExtension - components: - - pos: -19.5,2.5 - parent: 8364 - type: Transform -- uid: 13521 - type: CableApcExtension - components: - - pos: -21.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13522 - type: CableApcExtension - components: - - pos: -21.5,6.5 - parent: 8364 - type: Transform -- uid: 13523 - type: CableApcExtension - components: - - pos: -20.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13524 - type: CableMV - components: - - pos: -16.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13525 - type: CableMV - components: - - pos: -16.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13526 - type: CableMV - components: - - pos: -16.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13527 - type: CableMV - components: - - pos: -16.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13528 - type: CableMV - components: - - pos: -17.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13529 - type: CableMV - components: - - pos: -18.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13530 - type: CableMVStack1 - components: - - pos: -19.5,4.5 - parent: 8364 - type: Transform -- uid: 13531 - type: CableMVStack1 - components: - - pos: -20.5,4.5 - parent: 8364 - type: Transform -- uid: 13532 - type: CarpetSBlue - components: - - pos: -8.5,-23.5 - parent: 8364 - type: Transform -- uid: 13533 - type: CableMVStack1 - components: - - pos: -21.5,4.5 - parent: 8364 - type: Transform -- uid: 13534 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 8364 - type: Transform -- uid: 13535 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 8364 - type: Transform -- uid: 13536 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 8364 - type: Transform -- uid: 13537 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-26.5 - parent: 8364 - type: Transform -- uid: 13538 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-26.5 - parent: 8364 - type: Transform -- uid: 13539 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,6.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13540 - type: PoweredSmallLight - components: - - pos: -21.5,2.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13541 - type: Windoor - components: - - name: Garden - type: MetaData - - pos: -22.5,3.5 - parent: 8364 - type: Transform -- uid: 13542 - type: Windoor - components: - - name: 'Garden ' - type: MetaData - - pos: -19.5,3.5 - parent: 8364 - type: Transform -- uid: 13543 - type: CrateGenericSteel - components: - - pos: -23.5,2.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 13544 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 8364 - type: Transform -- uid: 13545 - type: PestSpray - components: - - pos: -22.188848,7.6088066 - parent: 8364 - type: Transform -- uid: 13546 - type: PlantBGoneSpray - components: - - pos: -22.454473,7.468181 - parent: 8364 - type: Transform -- uid: 13547 - type: RobustHarvestChemistryBottle - components: - - rot: 2.9154674848541617E-05 rad - pos: -22.735086,7.7025566 - parent: 8364 - type: Transform -- uid: 13548 - type: CableApcExtension - components: - - pos: -55.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13549 - type: CableApcExtension - components: - - pos: -55.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13550 - type: CableApcExtension - components: - - pos: -58.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13551 - type: CableApcExtension - components: - - pos: -58.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13552 - type: CableApcExtension - components: - - pos: -58.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13553 - type: CableApcExtension - components: - - pos: -47.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13554 - type: CableApcExtension - components: - - pos: -47.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13555 - type: CableApcExtension - components: - - pos: -47.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13556 - type: CableApcExtension - components: - - pos: -48.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13557 - type: CableApcExtension - components: - - pos: -49.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13558 - type: CableApcExtension - components: - - pos: -49.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13559 - type: CableApcExtension - components: - - pos: -49.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13560 - type: CableApcExtension - components: - - pos: -49.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13561 - type: CableApcExtension - components: - - pos: -49.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13562 - type: CableApcExtension - components: - - pos: -49.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13563 - type: CableApcExtension - components: - - pos: -49.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13564 - type: CableApcExtension - components: - - pos: -49.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13565 - type: CableApcExtension - components: - - pos: -46.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13566 - type: CableApcExtension - components: - - pos: -46.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13567 - type: CableApcExtension - components: - - pos: -46.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13568 - type: CableApcExtension - components: - - pos: -31.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13569 - type: CableApcExtension - components: - - pos: -31.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13570 - type: CableApcExtension - components: - - pos: -28.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13571 - type: CableApcExtension - components: - - pos: -27.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13572 - type: CableApcExtension - components: - - pos: -36.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13573 - type: CableApcExtension - components: - - pos: -37.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13574 - type: CableApcExtension - components: - - pos: -39.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13575 - type: CableApcExtension - components: - - pos: -38.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13576 - type: CableApcExtension - components: - - pos: -38.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13577 - type: CableApcExtension - components: - - pos: -38.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13578 - type: CableApcExtension - components: - - pos: -38.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13579 - type: CableApcExtension - components: - - pos: -29.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13580 - type: CableApcExtension - components: - - pos: -30.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13581 - type: CableApcExtension - components: - - pos: -32.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13582 - type: CableApcExtension - components: - - pos: -31.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13583 - type: CableApcExtension - components: - - pos: -32.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13584 - type: CableApcExtension - components: - - pos: -26.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13585 - type: CableApcExtension - components: - - pos: -25.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13586 - type: CableApcExtension - components: - - pos: -39.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13587 - type: CableApcExtension - components: - - pos: -38.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13588 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -54.5,11.5 - parent: 8364 - type: Transform -- uid: 13589 - type: WindowReinforcedDirectional - components: - - pos: -55.5,12.5 - parent: 8364 - type: Transform -- uid: 13590 - type: Grille - components: - - pos: -55.5,14.5 - parent: 8364 - type: Transform -- uid: 13591 - type: CableApcExtension - components: - - pos: -52.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13592 - type: ClothingHandsGlovesBoxingRed - components: - - pos: -53.5,12.5 - parent: 8364 - type: Transform -- uid: 13593 - type: CableApcExtension - components: - - pos: -55.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13594 - type: WallSolid - components: - - pos: -49.5,16.5 - parent: 8364 - type: Transform -- uid: 13595 - type: CableApcExtension - components: - - pos: -38.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13596 - type: CableApcExtension - components: - - pos: -37.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13597 - type: CableApcExtension - components: - - pos: -35.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13598 - type: CableApcExtension - components: - - pos: -36.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13599 - type: CableApcExtension - components: - - pos: -32.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13600 - type: CableApcExtension - components: - - pos: -32.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13601 - type: CableApcExtension - components: - - pos: -32.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13602 - type: CableApcExtension - components: - - pos: -32.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13603 - type: CableApcExtension - components: - - pos: -30.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13604 - type: CableApcExtension - components: - - pos: -30.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13605 - type: CableApcExtension - components: - - pos: -30.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13606 - type: CableApcExtension - components: - - pos: -30.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13607 - type: CableApcExtension - components: - - pos: -30.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13608 - type: CableApcExtension - components: - - pos: -25.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13609 - type: CableApcExtension - components: - - pos: -25.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13610 - type: CableApcExtension - components: - - pos: -25.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13611 - type: CableApcExtension - components: - - pos: -25.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13612 - type: CableApcExtension - components: - - pos: -25.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13613 - type: CableApcExtension - components: - - pos: -25.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13614 - type: CableApcExtension - components: - - pos: -25.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13615 - type: CableApcExtension - components: - - pos: -25.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13616 - type: CableApcExtension - components: - - pos: -24.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13617 - type: CableApcExtension - components: - - pos: -23.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13618 - type: PoweredlightExterior - components: - - rot: 3.141592653589793 rad - pos: -50.5,27.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13619 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 8364 - type: Transform -- uid: 13620 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 8364 - type: Transform -- uid: 13621 - type: CableApcExtension - components: - - pos: -22.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13622 - type: CableApcExtension - components: - - pos: -21.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13623 - type: CableApcExtension - components: - - pos: -20.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13624 - type: CableApcExtension - components: - - pos: -19.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13625 - type: CableApcExtension - components: - - pos: -18.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13626 - type: CableApcExtension - components: - - pos: -17.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13627 - type: CableApcExtension - components: - - pos: -16.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13628 - type: CableApcExtension - components: - - pos: -16.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13629 - type: CableApcExtension - components: - - pos: -16.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13630 - type: CableApcExtension - components: - - pos: -16.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13631 - type: CableApcExtension - components: - - pos: -16.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13632 - type: CableApcExtension - components: - - pos: -16.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13633 - type: CableApcExtension - components: - - pos: -16.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13634 - type: CableApcExtension - components: - - pos: -15.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13635 - type: CableApcExtension - components: - - pos: -14.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13636 - type: CableApcExtension - components: - - pos: -13.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13637 - type: CableApcExtension - components: - - pos: -12.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13638 - type: CableApcExtension - components: - - pos: -11.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13639 - type: CableApcExtension - components: - - pos: -10.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13640 - type: CableApcExtension - components: - - pos: -9.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13641 - type: CableApcExtension - components: - - pos: -8.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13642 - type: CableApcExtension - components: - - pos: -7.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13643 - type: CableApcExtension - components: - - pos: -6.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13644 - type: CableApcExtension - components: - - pos: -5.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13645 - type: CableApcExtension - components: - - pos: -16.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13646 - type: CableApcExtension - components: - - pos: -4.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13647 - type: CableApcExtension - components: - - pos: -16.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13648 - type: CableApcExtension - components: - - pos: -16.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13649 - type: CableApcExtension - components: - - pos: -16.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13650 - type: CableApcExtension - components: - - pos: -16.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13651 - type: CableApcExtension - components: - - pos: -16.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13652 - type: CableApcExtension - components: - - pos: -16.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13653 - type: CableApcExtension - components: - - pos: -16.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13654 - type: CableApcExtension - components: - - pos: -20.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13655 - type: CableApcExtension - components: - - pos: -20.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13656 - type: CableApcExtension - components: - - pos: -20.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13657 - type: CableApcExtension - components: - - pos: -3.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13658 - type: CableApcExtension - components: - - pos: -1.5,11.5 - parent: 8364 - type: Transform -- uid: 13659 - type: CableApcExtension - components: - - pos: -2.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13660 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -14.5,-23.5 - parent: 8364 - type: Transform -- uid: 13661 - type: FireAxeCabinetFilled - components: - - pos: 14.5,-53.5 - parent: 8364 - type: Transform -- uid: 13662 - type: PlaqueAtmos - components: - - pos: 14.5,-52.5 - parent: 8364 - type: Transform -- uid: 13663 - type: PosterContrabandAtmosiaDeclarationIndependence - components: - - pos: 14.5,-50.5 - parent: 8364 - type: Transform -- uid: 13664 - type: SpawnPointTechnicalAssistant - components: - - pos: -1.5,-63.5 - parent: 8364 - type: Transform -- uid: 13665 - type: SpawnPointTechnicalAssistant - components: - - pos: -1.5,-62.5 - parent: 8364 - type: Transform -- uid: 13666 - type: Catwalk - components: - - pos: -16.5,10.5 - parent: 8364 - type: Transform -- uid: 13667 - type: Catwalk - components: - - pos: -3.5,11.5 - parent: 8364 - type: Transform -- uid: 13668 - type: Catwalk - components: - - pos: -4.5,11.5 - parent: 8364 - type: Transform -- uid: 13669 - type: AirlockExternal - components: - - pos: -61.5,15.5 - parent: 8364 - type: Transform -- uid: 13670 - type: Catwalk - components: - - pos: -5.5,11.5 - parent: 8364 - type: Transform -- uid: 13671 - type: Catwalk - components: - - pos: -6.5,11.5 - parent: 8364 - type: Transform -- uid: 13672 - type: Catwalk - components: - - pos: -7.5,11.5 - parent: 8364 - type: Transform -- uid: 13673 - type: Catwalk - components: - - pos: -8.5,11.5 - parent: 8364 - type: Transform -- uid: 13674 - type: Catwalk - components: - - pos: -9.5,11.5 - parent: 8364 - type: Transform -- uid: 13675 - type: Catwalk - components: - - pos: -10.5,11.5 - parent: 8364 - type: Transform -- uid: 13676 - type: Catwalk - components: - - pos: -11.5,11.5 - parent: 8364 - type: Transform -- uid: 13677 - type: Catwalk - components: - - pos: -12.5,11.5 - parent: 8364 - type: Transform -- uid: 13678 - type: ComputerAnalysisConsole - components: - - rot: 3.141592653589793 rad - pos: 79.5,-26.5 - parent: 8364 - type: Transform -- uid: 13679 - type: Catwalk - components: - - pos: -14.5,11.5 - parent: 8364 - type: Transform -- uid: 13680 - type: Catwalk - components: - - pos: -15.5,11.5 - parent: 8364 - type: Transform -- uid: 13681 - type: Catwalk - components: - - pos: -16.5,17.5 - parent: 8364 - type: Transform -- uid: 13682 - type: Catwalk - components: - - pos: -16.5,16.5 - parent: 8364 - type: Transform -- uid: 13683 - type: Catwalk - components: - - pos: -16.5,15.5 - parent: 8364 - type: Transform -- uid: 13684 - type: Catwalk - components: - - pos: -16.5,14.5 - parent: 8364 - type: Transform -- uid: 13685 - type: Catwalk - components: - - pos: -16.5,13.5 - parent: 8364 - type: Transform -- uid: 13686 - type: Catwalk - components: - - pos: -16.5,12.5 - parent: 8364 - type: Transform -- uid: 13687 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -56.5,11.5 - parent: 8364 - type: Transform -- uid: 13688 - type: Catwalk - components: - - pos: -16.5,11.5 - parent: 8364 - type: Transform -- uid: 13689 - type: Catwalk - components: - - pos: -17.5,10.5 - parent: 8364 - type: Transform -- uid: 13690 - type: Catwalk - components: - - pos: -18.5,10.5 - parent: 8364 - type: Transform -- uid: 13691 - type: Catwalk - components: - - pos: -19.5,10.5 - parent: 8364 - type: Transform -- uid: 13692 - type: Catwalk - components: - - pos: -20.5,10.5 - parent: 8364 - type: Transform -- uid: 13693 - type: CableApcExtension - components: - - pos: -55.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13694 - type: CableApcExtension - components: - - pos: -58.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13695 - type: WindowReinforcedDirectional - components: - - pos: -56.5,12.5 - parent: 8364 - type: Transform -- uid: 13696 - type: CableHV - components: - - pos: -14.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13697 - type: CableHV - components: - - pos: -13.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13698 - type: CableHV - components: - - pos: -12.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13699 - type: CableHV - components: - - pos: -10.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13700 - type: CableHV - components: - - pos: -11.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13701 - type: CableHV - components: - - pos: -9.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13702 - type: CableHV - components: - - pos: -8.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13703 - type: CableHV - components: - - pos: -7.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13704 - type: CableHV - components: - - pos: -6.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13705 - type: CableHV - components: - - pos: -5.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13706 - type: CableHV - components: - - pos: -4.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13707 - type: CableHV - components: - - pos: -3.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13708 - type: CableHV - components: - - pos: -2.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13709 - type: CableHV - components: - - pos: -1.5,11.5 - parent: 8364 - type: Transform -- uid: 13710 - type: CableHV - components: - - pos: -0.5,11.5 - parent: 8364 - type: Transform -- uid: 13711 - type: CableHV - components: - - pos: 0.5,11.5 - parent: 8364 - type: Transform -- uid: 13712 - type: CableHV - components: - - pos: 1.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13713 - type: CableHV - components: - - pos: 2.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13714 - type: CableHV - components: - - pos: 2.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13715 - type: CableHV - components: - - pos: 2.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13716 - type: CableHV - components: - - pos: 2.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13717 - type: CableHV - components: - - pos: 2.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13718 - type: CableHV - components: - - pos: 2.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13719 - type: CableHV - components: - - pos: 2.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13720 - type: CableHV - components: - - pos: 3.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13721 - type: CableHV - components: - - pos: 4.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13722 - type: CableHV - components: - - pos: 5.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13723 - type: CableHV - components: - - pos: 6.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13724 - type: CableHV - components: - - pos: 7.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13725 - type: CableHV - components: - - pos: 8.5,17.5 - parent: 8364 - type: Transform -- uid: 13726 - type: CableHV - components: - - pos: 9.5,17.5 - parent: 8364 - type: Transform -- uid: 13727 - type: CableHV - components: - - pos: 10.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13728 - type: CableHV - components: - - pos: 11.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13729 - type: CableHV - components: - - pos: 12.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13730 - type: CableHV - components: - - pos: 13.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13731 - type: CableHV - components: - - pos: 14.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13732 - type: CableHV - components: - - pos: 15.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13733 - type: CableHV - components: - - pos: 16.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13734 - type: CableHV - components: - - pos: 17.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13735 - type: CableHV - components: - - pos: 18.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13736 - type: AirlockMaintLocked - components: - - pos: -25.5,0.5 - parent: 8364 - type: Transform -- uid: 13737 - type: AirlockMaintLocked - components: - - pos: -16.5,0.5 - parent: 8364 - type: Transform -- uid: 13738 - type: AirlockMaintLocked - components: - - pos: -49.5,0.5 - parent: 8364 - type: Transform -- uid: 13739 - type: AirlockMaintLocked - components: - - pos: -63.5,11.5 - parent: 8364 - type: Transform -- uid: 13740 - type: Grille - components: - - pos: -20.5,8.5 - parent: 8364 - type: Transform -- uid: 13741 - type: Window - components: - - pos: -20.5,8.5 - parent: 8364 - type: Transform -- uid: 13742 - type: Window - components: - - pos: -21.5,8.5 - parent: 8364 - type: Transform -- uid: 13743 - type: CableApcExtension - components: - - pos: -20.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13744 - type: CableApcExtension - components: - - pos: -21.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13745 - type: Catwalk - components: - - pos: -21.5,10.5 - parent: 8364 - type: Transform -- uid: 13746 - type: Catwalk - components: - - pos: -22.5,10.5 - parent: 8364 - type: Transform -- uid: 13747 - type: WallSolid - components: - - pos: -53.5,8.5 - parent: 8364 - type: Transform -- uid: 13748 - type: WallSolid - components: - - pos: -52.5,8.5 - parent: 8364 - type: Transform -- uid: 13749 - type: WallSolid - components: - - pos: -51.5,8.5 - parent: 8364 - type: Transform -- uid: 13750 - type: WallSolid - components: - - pos: -50.5,8.5 - parent: 8364 - type: Transform -- uid: 13751 - type: WallSolid - components: - - pos: -50.5,7.5 - parent: 8364 - type: Transform -- uid: 13752 - type: WallSolid - components: - - pos: -50.5,6.5 - parent: 8364 - type: Transform -- uid: 13753 - type: WallSolid - components: - - pos: -50.5,5.5 - parent: 8364 - type: Transform -- uid: 13754 - type: WallSolid - components: - - pos: -51.5,2.5 - parent: 8364 - type: Transform -- uid: 13755 - type: Barricade - components: - - pos: -55.5,7.5 - parent: 8364 - type: Transform -- uid: 13756 - type: TableGlass - components: - - pos: -51.5,7.5 - parent: 8364 - type: Transform -- uid: 13757 - type: CableApcExtension - components: - - pos: -50.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13758 - type: CableApcExtension - components: - - pos: -51.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13759 - type: CableApcExtension - components: - - pos: -52.5,3.5 - parent: 8364 - type: Transform -- uid: 13760 - type: CableApcExtension - components: - - pos: -53.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13761 - type: CableApcExtension - components: - - pos: -53.5,4.5 - parent: 8364 - type: Transform -- uid: 13762 - type: TableReinforced - components: - - pos: -53.5,5.5 - parent: 8364 - type: Transform -- uid: 13763 - type: CableApcExtension - components: - - pos: -53.5,5.5 - parent: 8364 - type: Transform -- uid: 13764 - type: TableGlass - components: - - pos: -52.5,7.5 - parent: 8364 - type: Transform -- uid: 13765 - type: TableGlass - components: - - pos: -53.5,7.5 - parent: 8364 - type: Transform -- uid: 13766 - type: TableGlass - components: - - pos: -53.5,3.5 - parent: 8364 - type: Transform -- uid: 13767 - type: TableGlass - components: - - pos: -54.5,3.5 - parent: 8364 - type: Transform -- uid: 13768 - type: MachineFrameDestroyed - components: - - pos: -52.5,5.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 13769 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -53.5,4.5 - parent: 8364 - type: Transform -- uid: 13770 - type: FoodSoupTomatoBlood - components: - - pos: -54.5,3.5 - parent: 8364 - type: Transform -- uid: 13771 - type: WallSolid - components: - - pos: -50.5,4.5 - parent: 8364 - type: Transform -- uid: 13772 - type: WallSolid - components: - - pos: -50.5,2.5 - parent: 8364 - type: Transform -- uid: 13773 - type: WallSolid - components: - - pos: -50.5,1.5 - parent: 8364 - type: Transform -- uid: 13774 - type: TrashBag - components: - - pos: -53.5,3.5 - parent: 8364 - type: Transform -- uid: 13775 - type: Zipties - components: - - pos: -51.5,7.5 - parent: 8364 - type: Transform -- uid: 13776 - type: Hemostat - components: - - pos: -52.5,7.5 - parent: 8364 - type: Transform -- uid: 13777 - type: ClosetBase - components: - - pos: -52.5,3.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 13778 - type: Mirror - components: - - pos: -51.5,2.5 - parent: 8364 - type: Transform -- uid: 13779 - type: AtmosDeviceFanTiny - components: - - pos: -66.5,21.5 - parent: 8364 - type: Transform -- uid: 13780 - type: Wrench - components: - - pos: -52.5,7.5 - parent: 8364 - type: Transform -- uid: 13781 - type: ClothingShoesBootsJack - components: - - pos: -53.5,3.5 - parent: 8364 - type: Transform -- uid: 13782 - type: ClothingHandsGlovesBoxingRed - components: - - pos: 21.5,13.5 - parent: 8364 - type: Transform -- uid: 13783 - type: ClothingHandsGlovesBoxingBlue - components: - - pos: 24.5,13.5 - parent: 8364 - type: Transform -- uid: 13784 - type: ClothingHandsGlovesBoxingGreen - components: - - pos: 22.5,13.5 - parent: 8364 - type: Transform -- uid: 13785 - type: ClothingHandsGlovesBoxingYellow - components: - - pos: 23.5,13.5 - parent: 8364 - type: Transform -- uid: 13786 - type: Catwalk - components: - - pos: -24.5,10.5 - parent: 8364 - type: Transform -- uid: 13787 - type: Catwalk - components: - - pos: -25.5,9.5 - parent: 8364 - type: Transform -- uid: 13788 - type: Catwalk - components: - - pos: -25.5,8.5 - parent: 8364 - type: Transform -- uid: 13789 - type: Catwalk - components: - - pos: -25.5,7.5 - parent: 8364 - type: Transform -- uid: 13790 - type: Catwalk - components: - - pos: -25.5,6.5 - parent: 8364 - type: Transform -- uid: 13791 - type: Catwalk - components: - - pos: -25.5,5.5 - parent: 8364 - type: Transform -- uid: 13792 - type: Catwalk - components: - - pos: -25.5,4.5 - parent: 8364 - type: Transform -- uid: 13793 - type: WeldingFuelTankFull - components: - - pos: -61.5,7.5 - parent: 8364 - type: Transform -- uid: 13794 - type: WaterTankFull - components: - - pos: -60.5,7.5 - parent: 8364 - type: Transform -- uid: 13795 - type: PoweredSmallLight - components: - - pos: -60.5,14.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13796 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,5.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13797 - type: AirlockMaintLocked - components: - - name: Ghetto Surgery - type: MetaData - - pos: -50.5,3.5 - parent: 8364 - type: Transform -- uid: 13798 - type: AirlockMaintLocked - components: - - name: Ghetto Surgery - type: MetaData - - pos: -55.5,7.5 - parent: 8364 - type: Transform -- uid: 13799 - type: MedkitBurnFilled - components: - - pos: -59.651424,18.448038 - parent: 8364 - type: Transform -- uid: 13800 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -58.5,7.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13801 - type: PoweredSmallLight - components: - - pos: -55.5,18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13802 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -55.5,10.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13803 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -51.5,17.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13804 - type: PlasticFlapsAirtightClear - components: - - pos: -61.5,-21.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 13805 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,14.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13806 - type: PoweredSmallLight - components: - - pos: -46.5,22.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13807 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -47.5,7.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13808 - type: SheetSteel - components: - - pos: -38.48763,24.440645 - parent: 8364 - type: Transform -- uid: 13809 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-17.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13810 - type: CarpetSBlue - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-16.5 - parent: 8364 - type: Transform -- uid: 13811 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,7.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13812 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -61.5,-20.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 13893 - Forward: - - port: Left - uid: 13893 - Off: - - port: Middle - uid: 13893 - type: SignalReceiver -- uid: 13813 - type: WindoorEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-42.5 - parent: 8364 - type: Transform -- uid: 13814 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,4.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13815 - type: PoweredSmallLight - components: - - pos: -17.5,10.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13816 - type: MaintenanceWeaponSpawner - components: - - pos: -19.5,14.5 - parent: 8364 - type: Transform -- uid: 13817 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,16.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13818 - type: Table - components: - - pos: -4.5,49.5 - parent: 8364 - type: Transform -- uid: 13819 - type: PoweredSmallLight - components: - - pos: -8.5,13.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13820 - type: PoweredSmallLight - components: - - pos: -3.5,11.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13821 - type: PoweredSmallLight - components: - - pos: -15.5,13.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13822 - type: AirlockMaintLocked - components: - - pos: -2.5,11.5 - parent: 8364 - type: Transform -- uid: 13823 - type: WeldingFuelTankFull - components: - - pos: -37.5,7.5 - parent: 8364 - type: Transform -- uid: 13824 - type: WaterTankFull - components: - - pos: -37.5,8.5 - parent: 8364 - type: Transform -- uid: 13825 - type: WeldingFuelTankFull - components: - - pos: -15.5,13.5 - parent: 8364 - type: Transform -- uid: 13826 - type: WaterTankFull - components: - - pos: -15.5,12.5 - parent: 8364 - type: Transform -- uid: 13827 - type: NitrogenCanister - components: - - pos: -40.5,9.5 - parent: 8364 - type: Transform -- uid: 13828 - type: OxygenCanister - components: - - pos: -41.5,9.5 - parent: 8364 - type: Transform -- uid: 13829 - type: AirCanister - components: - - pos: -41.5,10.5 - parent: 8364 - type: Transform -- uid: 13830 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -40.5,9.5 - parent: 8364 - type: Transform -- uid: 13831 - type: Rack - components: - - pos: -46.5,22.5 - parent: 8364 - type: Transform -- uid: 13832 - type: Rack - components: - - pos: -45.5,22.5 - parent: 8364 - type: Transform -- uid: 13833 - type: Rack - components: - - pos: -45.5,21.5 - parent: 8364 - type: Transform -- uid: 13834 - type: Rack - components: - - pos: -48.5,1.5 - parent: 8364 - type: Transform -- uid: 13835 - type: ClosetMaintenanceFilledRandom - components: - - pos: -33.5,11.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 13836 - type: ClosetMaintenanceFilledRandom - components: - - pos: -48.5,2.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 13837 - type: ClosetMaintenanceFilledRandom - components: - - pos: -46.5,15.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 13838 - type: Table - components: - - pos: -46.5,14.5 - parent: 8364 - type: Transform -- uid: 13839 - type: Table - components: - - pos: -46.5,13.5 - parent: 8364 - type: Transform -- uid: 13840 - type: ClosetEmergencyFilledRandom - components: - - pos: -54.5,-13.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13841 - type: ToiletEmpty - components: - - pos: -48.5,-10.5 - parent: 8364 - type: Transform -- uid: 13842 - type: ToiletEmpty - components: - - pos: -48.5,-12.5 - parent: 8364 - type: Transform -- uid: 13843 - type: ToiletEmpty - components: - - pos: -48.5,-14.5 - parent: 8364 - type: Transform -- uid: 13844 - type: ToiletEmpty - components: - - pos: -48.5,-16.5 - parent: 8364 - type: Transform -- uid: 13845 - type: GrilleBroken - components: - - pos: -20.5,11.5 - parent: 8364 - type: Transform -- uid: 13846 - type: ToolboxMechanicalFilled - components: - - pos: -46.5,22.5 - parent: 8364 - type: Transform -- uid: 13847 - type: ToolboxElectricalFilled - components: - - pos: -45.5,22.5 - parent: 8364 - type: Transform -- uid: 13848 - type: FlashlightLantern - components: - - pos: -45.601074,22.357426 - parent: 8364 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 13849 - type: SheetSteel - components: - - pos: -45.69763,21.378166 - parent: 8364 - type: Transform -- uid: 13850 - type: SheetGlass - components: - - pos: -45.29138,21.721916 - parent: 8364 - type: Transform -- uid: 13851 - type: FlashlightLantern - components: - - pos: -48.703045,1.6598 - parent: 8364 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 13852 - type: ClothingHandsGlovesColorYellowBudget - components: - - pos: -48.265545,1.3473 - parent: 8364 - type: Transform -- uid: 13853 - type: CowToolboxFilled - components: - - pos: -51.5,1.5 - parent: 8364 - type: Transform -- uid: 13854 - type: LockerEvidence - components: - - pos: -1.5,28.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.9556966 - - 18.642859 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13855 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -42.5,1.5 - parent: 8364 - type: Transform -- uid: 13856 - type: RandomSpawner - components: - - pos: -36.5,19.5 - parent: 8364 - type: Transform -- uid: 13857 - type: RandomSpawner - components: - - pos: -37.5,23.5 - parent: 8364 - type: Transform -- uid: 13858 - type: RandomSpawner - components: - - pos: -30.5,21.5 - parent: 8364 - type: Transform -- uid: 13859 - type: RandomSpawner - components: - - pos: -36.5,11.5 - parent: 8364 - type: Transform -- uid: 13860 - type: RandomSpawner - components: - - pos: -54.5,17.5 - parent: 8364 - type: Transform -- uid: 13861 - type: RandomSpawner - components: - - pos: -56.5,15.5 - parent: 8364 - type: Transform -- uid: 13862 - type: RandomSpawner - components: - - pos: -56.5,11.5 - parent: 8364 - type: Transform -- uid: 13863 - type: RandomSpawner - components: - - pos: -48.5,4.5 - parent: 8364 - type: Transform -- uid: 13864 - type: RandomSpawner - components: - - pos: -24.5,6.5 - parent: 8364 - type: Transform -- uid: 13865 - type: RandomSpawner - components: - - pos: -17.5,6.5 - parent: 8364 - type: Transform -- uid: 13866 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-9.5 - parent: 8364 - type: Transform -- uid: 13867 - type: RandomSpawner - components: - - pos: -21.5,7.5 - parent: 8364 - type: Transform -- uid: 13868 - type: RandomSpawner - components: - - pos: -53.5,4.5 - parent: 8364 - type: Transform -- uid: 13869 - type: RandomSpawner - components: - - pos: -46.5,17.5 - parent: 8364 - type: Transform -- uid: 13870 - type: CableMV - components: - - pos: -48.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13871 - type: CableMV - components: - - pos: -49.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13872 - type: CableMV - components: - - pos: -50.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13873 - type: CableMV - components: - - pos: -51.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13874 - type: CableMV - components: - - pos: -52.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13875 - type: CableMV - components: - - pos: -53.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13876 - type: CableMV - components: - - pos: -54.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13877 - type: CableMV - components: - - pos: -55.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13878 - type: CableMV - components: - - pos: -56.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13879 - type: CableMV - components: - - pos: -57.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13880 - type: CableMV - components: - - pos: -58.5,11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13881 - type: CableMV - components: - - pos: -58.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13882 - type: CableMV - components: - - pos: -58.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13883 - type: CableMV - components: - - pos: -58.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13884 - type: CableMV - components: - - pos: -59.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13885 - type: WardrobeBlackFilled - components: - - pos: -47.5,-8.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13886 - type: WardrobeGreyFilled - components: - - pos: -47.5,-7.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13887 - type: WardrobeGreenFilled - components: - - pos: -47.5,-6.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13888 - type: WardrobeMixedFilled - components: - - pos: -47.5,-5.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13889 - type: CableMV - components: - - pos: -42.5,10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13890 - type: CableApcExtension - components: - - pos: -59.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13891 - type: ClosetEmergencyFilledRandom - components: - - pos: -59.5,-20.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 13892 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -59.5,-19.5 - parent: 8364 - type: Transform -- uid: 13893 - type: TwoWayLever - components: - - pos: -59.5,-18.5 - parent: 8364 - type: Transform - - outputs: - Left: - - port: Forward - uid: 6232 - - port: Forward - uid: 6231 - - port: Forward - uid: 6230 - - port: Forward - uid: 6229 - - port: Forward - uid: 6228 - - port: Forward - uid: 6225 - - port: Forward - uid: 6227 - - port: Forward - uid: 6226 - - port: Forward - uid: 6233 - - port: Forward - uid: 6234 - - port: Forward - uid: 6235 - - port: Forward - uid: 6236 - - port: Forward - uid: 13812 - Right: - - port: Reverse - uid: 6232 - - port: Reverse - uid: 6231 - - port: Reverse - uid: 6230 - - port: Reverse - uid: 6229 - - port: Reverse - uid: 6228 - - port: Reverse - uid: 6225 - - port: Reverse - uid: 6227 - - port: Reverse - uid: 6226 - - port: Reverse - uid: 6233 - - port: Reverse - uid: 6234 - - port: Reverse - uid: 6235 - - port: Reverse - uid: 6236 - - port: Reverse - uid: 13812 - Middle: - - port: Off - uid: 6232 - - port: Off - uid: 6231 - - port: Off - uid: 6230 - - port: Off - uid: 6229 - - port: Off - uid: 6228 - - port: Off - uid: 6225 - - port: Off - uid: 6227 - - port: Off - uid: 6226 - - port: Off - uid: 6233 - - port: Off - uid: 6234 - - port: Off - uid: 6235 - - port: Off - uid: 6236 - - port: Off - uid: 13812 - type: SignalTransmitter -- uid: 13894 - type: ClosetMaintenanceFilledRandom - components: - - pos: -56.5,-20.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 13895 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-14.5 - parent: 8364 - type: Transform -- uid: 13896 - type: DisposalBend - components: - - pos: -50.5,-15.5 - parent: 8364 - type: Transform -- uid: 13897 - type: DisposalPipe - components: - - pos: -50.5,-16.5 - parent: 8364 - type: Transform -- uid: 13898 - type: DisposalPipe - components: - - pos: -50.5,-17.5 - parent: 8364 - type: Transform -- uid: 13899 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-18.5 - parent: 8364 - type: Transform -- uid: 13900 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-18.5 - parent: 8364 - type: Transform -- uid: 13901 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-18.5 - parent: 8364 - type: Transform -- uid: 13902 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-18.5 - parent: 8364 - type: Transform -- uid: 13903 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-18.5 - parent: 8364 - type: Transform -- uid: 13904 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-18.5 - parent: 8364 - type: Transform -- uid: 13905 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-18.5 - parent: 8364 - type: Transform -- uid: 13906 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-18.5 - parent: 8364 - type: Transform -- uid: 13907 - type: Catwalk - components: - - pos: -39.5,-17.5 - parent: 8364 - type: Transform -- uid: 13908 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-18.5 - parent: 8364 - type: Transform -- uid: 13909 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -50.5,-18.5 - parent: 8364 - type: Transform -- uid: 13910 - type: BlastDoor - components: - - pos: -61.5,-21.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2638 - type: SignalReceiver -- uid: 13911 - type: WardrobeWhiteFilled - components: - - pos: -47.5,-4.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13912 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -59.5,-17.5 - parent: 8364 - type: Transform -- uid: 13913 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -58.5,-17.5 - parent: 8364 - type: Transform -- uid: 13914 - type: WindoorSecure - components: - - rot: 3.141592653589793 rad - pos: -57.5,-17.5 - parent: 8364 - type: Transform -- uid: 13915 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-13.5 - parent: 8364 - type: Transform -- uid: 13916 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-19.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13917 - type: PoweredSmallLight - components: - - pos: -59.5,-15.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13918 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -61.5,-18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13919 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-11.5 - parent: 8364 - type: Transform -- uid: 13920 - type: CableApcExtension - components: - - pos: -60.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13921 - type: CableApcExtension - components: - - pos: -59.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13922 - type: CableApcExtension - components: - - pos: -58.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13923 - type: CableApcExtension - components: - - pos: -58.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13924 - type: CableApcExtension - components: - - pos: -58.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13925 - type: CableApcExtension - components: - - pos: -57.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13926 - type: CableApcExtension - components: - - pos: -61.5,-17.5 - parent: 8364 - type: Transform -- uid: 13927 - type: CableApcExtension - components: - - pos: -61.5,-18.5 - parent: 8364 - type: Transform -- uid: 13928 - type: CableApcExtension - components: - - pos: -61.5,-19.5 - parent: 8364 - type: Transform -- uid: 13929 - type: CableApcExtension - components: - - pos: -59.5,-16.5 - parent: 8364 - type: Transform -- uid: 13930 - type: CableApcExtension - components: - - pos: -65.5,-2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13931 - type: CableApcExtension - components: - - pos: -64.5,-2.5 - parent: 8364 - type: Transform -- uid: 13932 - type: CableMV - components: - - pos: -30.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13933 - type: CableMV - components: - - pos: -30.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13934 - type: CableMV - components: - - pos: -30.5,-5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13935 - type: CableMV - components: - - pos: -30.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13936 - type: CableMV - components: - - pos: -30.5,-7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13937 - type: CableMV - components: - - pos: -30.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13938 - type: CableMV - components: - - pos: -31.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13939 - type: CableMV - components: - - pos: -32.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13940 - type: CableMV - components: - - pos: -33.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13941 - type: CableMV - components: - - pos: -34.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13942 - type: CableMV - components: - - pos: -34.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13943 - type: CableMV - components: - - pos: -34.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13944 - type: CableMV - components: - - pos: -34.5,-11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13945 - type: CableMV - components: - - pos: -34.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13946 - type: CableMV - components: - - pos: -34.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13947 - type: CableMV - components: - - pos: -34.5,-14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13948 - type: CableMV - components: - - pos: -34.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13949 - type: CableMV - components: - - pos: -34.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13950 - type: CableMV - components: - - pos: -35.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13951 - type: CableMV - components: - - pos: -36.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13952 - type: CableMV - components: - - pos: -37.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13953 - type: CableMV - components: - - pos: -38.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13954 - type: CableMV - components: - - pos: -39.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13955 - type: CableMV - components: - - pos: -41.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13956 - type: CableMV - components: - - pos: -41.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13957 - type: CableMV - components: - - pos: -41.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13958 - type: CableMV - components: - - pos: -41.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13959 - type: CableMV - components: - - pos: -42.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13960 - type: CableMV - components: - - pos: -43.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13961 - type: CableMV - components: - - pos: -44.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13962 - type: CableMV - components: - - pos: -45.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13963 - type: CableMV - components: - - pos: -46.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13964 - type: CableMV - components: - - pos: -47.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13965 - type: CableMV - components: - - pos: -48.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13966 - type: CableMV - components: - - pos: -49.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13967 - type: CableMV - components: - - pos: -50.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13968 - type: CableMV - components: - - pos: -50.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13969 - type: CableMV - components: - - pos: -51.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13970 - type: CableMV - components: - - pos: -52.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13971 - type: CableMV - components: - - pos: -53.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13972 - type: CableMV - components: - - pos: -54.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13973 - type: CableMV - components: - - pos: -54.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13974 - type: CableMV - components: - - pos: -55.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13975 - type: CableMV - components: - - pos: -56.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13976 - type: CableMV - components: - - pos: -57.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13977 - type: CableMV - components: - - pos: -58.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13978 - type: CableMV - components: - - pos: -59.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13979 - type: CableMV - components: - - pos: -59.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13980 - type: CableMV - components: - - pos: -60.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13981 - type: CableMV - components: - - pos: -48.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13982 - type: CableMV - components: - - pos: -49.5,9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13983 - type: CableMV - components: - - pos: -49.5,8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13984 - type: CableMV - components: - - pos: -49.5,7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13985 - type: CableMV - components: - - pos: -49.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13986 - type: CableMV - components: - - pos: -49.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13987 - type: CableMV - components: - - pos: -49.5,4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13988 - type: CableMV - components: - - pos: -49.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13989 - type: CableMV - components: - - pos: -49.5,2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13990 - type: CableMV - components: - - pos: -49.5,1.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13991 - type: CableMV - components: - - pos: -49.5,0.5 - parent: 8364 - type: Transform -- uid: 13992 - type: CableMV - components: - - pos: -49.5,-0.5 - parent: 8364 - type: Transform -- uid: 13993 - type: CableMV - components: - - pos: -49.5,-1.5 - parent: 8364 - type: Transform -- uid: 13994 - type: CableMV - components: - - pos: -50.5,-1.5 - parent: 8364 - type: Transform -- uid: 13995 - type: CableMV - components: - - pos: -50.5,-2.5 - parent: 8364 - type: Transform -- uid: 13996 - type: CableHV - components: - - pos: -50.5,-3.5 - parent: 8364 - type: Transform -- uid: 13997 - type: CableMV - components: - - pos: -50.5,-4.5 - parent: 8364 - type: Transform -- uid: 13998 - type: CableMV - components: - - pos: -50.5,-5.5 - parent: 8364 - type: Transform -- uid: 13999 - type: CableMV - components: - - pos: -50.5,-6.5 - parent: 8364 - type: Transform -- uid: 14000 - type: CableMV - components: - - pos: -50.5,-7.5 - parent: 8364 - type: Transform -- uid: 14001 - type: CableMV - components: - - pos: -50.5,-8.5 - parent: 8364 - type: Transform -- uid: 14002 - type: CableMV - components: - - pos: -50.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14003 - type: CableMV - components: - - pos: -50.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14004 - type: CableMV - components: - - pos: -50.5,-11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14005 - type: CableMV - components: - - pos: -50.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14006 - type: CableMV - components: - - pos: -50.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14007 - type: CableMV - components: - - pos: -50.5,-14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14008 - type: CableMV - components: - - pos: -50.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14009 - type: CableMV - components: - - pos: -50.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14010 - type: CableApcExtension - components: - - pos: -30.5,-7.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14011 - type: CableApcExtension - components: - - pos: -30.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14012 - type: CableApcExtension - components: - - pos: -29.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14013 - type: CableApcExtension - components: - - pos: -28.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14014 - type: CableApcExtension - components: - - pos: -27.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14015 - type: CableApcExtension - components: - - pos: -26.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14016 - type: CableApcExtension - components: - - pos: -26.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14017 - type: CableApcExtension - components: - - pos: -26.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14018 - type: CableApcExtension - components: - - pos: -26.5,-11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14019 - type: CableApcExtension - components: - - pos: -26.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14020 - type: CableApcExtension - components: - - pos: -31.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14021 - type: CableApcExtension - components: - - pos: -32.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14022 - type: CableApcExtension - components: - - pos: -33.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14023 - type: CableApcExtension - components: - - pos: -34.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14024 - type: CableApcExtension - components: - - pos: -34.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14025 - type: CableApcExtension - components: - - pos: -34.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14026 - type: CableApcExtension - components: - - pos: -34.5,-11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14027 - type: CableApcExtension - components: - - pos: -34.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14028 - type: CableApcExtension - components: - - pos: -34.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14029 - type: CableApcExtension - components: - - pos: -34.5,-14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14030 - type: CableApcExtension - components: - - pos: -34.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14031 - type: CableApcExtension - components: - - pos: -34.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14032 - type: CableApcExtension - components: - - pos: -35.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14033 - type: CableApcExtension - components: - - pos: -36.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14034 - type: CableApcExtension - components: - - pos: -37.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14035 - type: CableApcExtension - components: - - pos: -38.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14036 - type: CableApcExtension - components: - - pos: -39.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14037 - type: CableApcExtension - components: - - pos: -39.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14038 - type: CableApcExtension - components: - - pos: -39.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14039 - type: CableApcExtension - components: - - pos: -39.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14040 - type: CableApcExtension - components: - - pos: -40.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14041 - type: CableApcExtension - components: - - pos: -41.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14042 - type: CableApcExtension - components: - - pos: -40.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14043 - type: CableApcExtension - components: - - pos: -41.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14044 - type: CableApcExtension - components: - - pos: -42.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14045 - type: CableApcExtension - components: - - pos: -43.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14046 - type: CableApcExtension - components: - - pos: -44.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14047 - type: CableApcExtension - components: - - pos: -45.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14048 - type: CableApcExtension - components: - - pos: -46.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14049 - type: CableApcExtension - components: - - pos: -47.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14050 - type: CableApcExtension - components: - - pos: -48.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14051 - type: CableApcExtension - components: - - pos: -49.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14052 - type: CableApcExtension - components: - - pos: -50.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14053 - type: CableApcExtension - components: - - pos: -50.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14054 - type: CableApcExtension - components: - - pos: -50.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14055 - type: CableApcExtension - components: - - pos: -50.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14056 - type: CableApcExtension - components: - - pos: -51.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14057 - type: CableApcExtension - components: - - pos: -52.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14058 - type: CableApcExtension - components: - - pos: -53.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14059 - type: CableApcExtension - components: - - pos: -54.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14060 - type: CableApcExtension - components: - - pos: -55.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14061 - type: CableApcExtension - components: - - pos: -55.5,-14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14062 - type: CableApcExtension - components: - - pos: -55.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14063 - type: CableApcExtension - components: - - pos: -56.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14064 - type: CableApcExtension - components: - - pos: -57.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14065 - type: CableApcExtension - components: - - pos: -58.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14066 - type: CableApcExtension - components: - - pos: -59.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14067 - type: CableApcExtension - components: - - pos: -60.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14068 - type: CableApcExtension - components: - - pos: -50.5,-14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14069 - type: CableApcExtension - components: - - pos: -50.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14070 - type: CableApcExtension - components: - - pos: -50.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14071 - type: CableApcExtension - components: - - pos: -50.5,-11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14072 - type: CableApcExtension - components: - - pos: -52.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14073 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-9.5 - parent: 8364 - type: Transform -- uid: 14074 - type: CableMV - components: - - pos: -21.5,3.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14075 - type: APCBasic - components: - - name: Vacant Office B APC - type: MetaData - - pos: -19.5,-10.5 - parent: 8364 - type: Transform -- uid: 14076 - type: ChairWood - components: - - pos: 44.5,-70.5 - parent: 8364 - type: Transform -- uid: 14077 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-13.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14078 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -52.5,-17.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14079 - type: FirelockGlass - components: - - pos: 7.5,-46.5 - parent: 8364 - type: Transform -- uid: 14080 - type: PoweredSmallLight - components: - - pos: -40.5,-18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14081 - type: PoweredSmallLight - components: - - pos: -42.5,-14.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14082 - type: WeaponRifleLecter - components: - - pos: 0.5326141,37.60195 - parent: 8364 - type: Transform -- uid: 14083 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-6.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14084 - type: WeaponRifleLecter - components: - - pos: 0.5326141,37.492577 - parent: 8364 - type: Transform -- uid: 14085 - type: PortableScrubber - components: - - pos: -38.5,-13.5 - parent: 8364 - type: Transform -- uid: 14086 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-12.5 - parent: 8364 - type: Transform -- uid: 14087 - type: Catwalk - components: - - pos: 5.5,-73.5 - parent: 8364 - type: Transform -- uid: 14088 - type: Catwalk - components: - - pos: 4.5,-73.5 - parent: 8364 - type: Transform -- uid: 14089 - type: ChairOfficeDark - components: - - pos: -21.5,-12.5 - parent: 8364 - type: Transform -- uid: 14090 - type: TableWood - components: - - pos: -22.5,-13.5 - parent: 8364 - type: Transform -- uid: 14091 - type: CarpetSBlue - components: - - pos: -23.5,-12.5 - parent: 8364 - type: Transform -- uid: 14092 - type: AirlockMaintGlassLocked - components: - - pos: -27.5,-4.5 - parent: 8364 - type: Transform -- uid: 14093 - type: FirelockGlass - components: - - pos: 25.5,-15.5 - parent: 8364 - type: Transform -- uid: 14094 - type: FirelockGlass - components: - - pos: 33.5,-15.5 - parent: 8364 - type: Transform -- uid: 14095 - type: WallReinforced - components: - - pos: -36.5,-32.5 - parent: 8364 - type: Transform -- uid: 14096 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -54.5,-8.5 - parent: 8364 - type: Transform -- uid: 14097 - type: filingCabinetDrawer - components: - - pos: -54.5,-9.5 - parent: 8364 - type: Transform -- uid: 14098 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,-17.5 - parent: 8364 - type: Transform -- uid: 14099 - type: PottedPlant8 - components: - - pos: -28.5,-3.5 - parent: 8364 - type: Transform -- uid: 14100 - type: ClosetEmergencyFilledRandom - components: - - pos: -23.5,-3.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14101 - type: Table - components: - - pos: -25.5,-3.5 - parent: 8364 - type: Transform -- uid: 14102 - type: JanitorialTrolley - components: - - pos: -52.5,-8.5 - parent: 8364 - type: Transform -- uid: 14103 - type: VendingMachineJaniDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -51.5,-4.5 - parent: 8364 - type: Transform -- uid: 14104 - type: SpawnVehicleJanicart - components: - - pos: -51.5,-5.5 - parent: 8364 - type: Transform -- uid: 14105 - type: CarpetSBlue - components: - - pos: -22.5,-10.5 - parent: 8364 - type: Transform -- uid: 14106 - type: CarpetSBlue - components: - - pos: -23.5,-10.5 - parent: 8364 - type: Transform -- uid: 14107 - type: Grille - components: - - pos: 15.5,-43.5 - parent: 8364 - type: Transform -- uid: 14108 - type: PosterContrabandGreyTide - components: - - pos: -47.5,2.5 - parent: 8364 - type: Transform -- uid: 14109 - type: TableWood - components: - - pos: -22.5,-12.5 - parent: 8364 - type: Transform -- uid: 14110 - type: WaterCooler - components: - - pos: -20.5,-13.5 - parent: 8364 - type: Transform -- uid: 14111 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-11.5 - parent: 8364 - type: Transform -- uid: 14112 - type: TableWood - components: - - pos: -21.5,-11.5 - parent: 8364 - type: Transform -- uid: 14113 - type: CarpetSBlue - components: - - pos: -21.5,-10.5 - parent: 8364 - type: Transform -- uid: 14114 - type: CarpetSBlue - components: - - pos: -21.5,-12.5 - parent: 8364 - type: Transform -- uid: 14115 - type: CarpetSBlue - components: - - pos: -21.5,-11.5 - parent: 8364 - type: Transform -- uid: 14116 - type: CarpetSBlue - components: - - pos: -22.5,-11.5 - parent: 8364 - type: Transform -- uid: 14117 - type: CarpetSBlue - components: - - pos: -22.5,-12.5 - parent: 8364 - type: Transform -- uid: 14118 - type: FloorDrain - components: - - pos: -50.5,-6.5 - parent: 8364 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 14119 - type: Catwalk - components: - - pos: -25.5,3.5 - parent: 8364 - type: Transform -- uid: 14120 - type: Catwalk - components: - - pos: -25.5,2.5 - parent: 8364 - type: Transform -- uid: 14121 - type: Catwalk - components: - - pos: -30.5,-4.5 - parent: 8364 - type: Transform -- uid: 14122 - type: Catwalk - components: - - pos: -30.5,-5.5 - parent: 8364 - type: Transform -- uid: 14123 - type: Catwalk - components: - - pos: -30.5,-6.5 - parent: 8364 - type: Transform -- uid: 14124 - type: TableWood - components: - - pos: -22.5,-11.5 - parent: 8364 - type: Transform -- uid: 14125 - type: CableApcExtension - components: - - pos: 2.5,-12.5 - parent: 8364 - type: Transform -- uid: 14126 - type: FirelockGlass - components: - - pos: -12.5,-9.5 - parent: 8364 - type: Transform -- uid: 14127 - type: FirelockGlass - components: - - pos: -12.5,-8.5 - parent: 8364 - type: Transform -- uid: 14128 - type: FirelockGlass - components: - - pos: -12.5,-7.5 - parent: 8364 - type: Transform -- uid: 14129 - type: FirelockGlass - components: - - pos: 11.5,-9.5 - parent: 8364 - type: Transform -- uid: 14130 - type: WindowTintedDirectional - components: - - pos: 29.5,14.5 - parent: 8364 - type: Transform -- uid: 14131 - type: DisposalBend - components: - - pos: 3.5,-51.5 - parent: 8364 - type: Transform -- uid: 14132 - type: WallReinforced - components: - - pos: -42.5,-22.5 - parent: 8364 - type: Transform -- uid: 14133 - type: WallReinforced - components: - - pos: -42.5,-23.5 - parent: 8364 - type: Transform -- uid: 14134 - type: Grille - components: - - pos: -42.5,-17.5 - parent: 8364 - type: Transform -- uid: 14135 - type: Grille - components: - - pos: -43.5,-17.5 - parent: 8364 - type: Transform -- uid: 14136 - type: Catwalk - components: - - pos: -30.5,-7.5 - parent: 8364 - type: Transform -- uid: 14137 - type: ReinforcedWindow - components: - - pos: -42.5,-25.5 - parent: 8364 - type: Transform -- uid: 14138 - type: ReinforcedWindow - components: - - pos: -42.5,-24.5 - parent: 8364 - type: Transform -- uid: 14139 - type: ReinforcedWindow - components: - - pos: -39.5,-32.5 - parent: 8364 - type: Transform -- uid: 14140 - type: ReinforcedWindow - components: - - pos: -44.5,-32.5 - parent: 8364 - type: Transform -- uid: 14141 - type: SpawnPointAssistant - components: - - pos: -40.5,3.5 - parent: 8364 - type: Transform -- uid: 14142 - type: Stool - components: - - pos: -41.5,2.5 - parent: 8364 - type: Transform -- uid: 14143 - type: WallReinforced - components: - - pos: -42.5,-21.5 - parent: 8364 - type: Transform -- uid: 14144 - type: CableApcExtension - components: - - pos: 19.5,-16.5 - parent: 8364 - type: Transform -- uid: 14145 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 8364 - type: Transform -- uid: 14146 - type: CableApcExtension - components: - - pos: 19.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14147 - type: SignalButton - components: - - pos: 23.5,-21.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 19024 - - port: Toggle - uid: 19023 - - port: Toggle - uid: 19022 - - port: Toggle - uid: 14148 - - port: Toggle - uid: 2941 - - port: Toggle - uid: 3001 - type: SignalTransmitter -- uid: 14148 - type: ShuttersNormalOpen - components: - - pos: 21.5,-15.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14147 - type: SignalReceiver -- uid: 14149 - type: FirelockGlass - components: - - pos: 23.5,-19.5 - parent: 8364 - type: Transform -- uid: 14150 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 16.5,-32.5 - parent: 8364 - type: Transform -- uid: 14151 - type: AirlockSecurityGlassLocked - components: - - pos: -18.5,-31.5 - parent: 8364 - type: Transform -- uid: 14152 - type: WallSolid - components: - - pos: -35.5,-31.5 - parent: 8364 - type: Transform -- uid: 14153 - type: FirelockGlass - components: - - pos: -18.5,-24.5 - parent: 8364 - type: Transform -- uid: 14154 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-14.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14155 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-10.5 - parent: 8364 - type: Transform -- uid: 14156 - type: PortableScrubber - components: - - pos: -38.5,-12.5 - parent: 8364 - type: Transform -- uid: 14157 - type: PortableScrubber - components: - - pos: -38.5,-10.5 - parent: 8364 - type: Transform -- uid: 14158 - type: PortableScrubber - components: - - pos: -38.5,-11.5 - parent: 8364 - type: Transform -- uid: 14159 - type: CableApcExtension - components: - - pos: -39.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14160 - type: CableApcExtension - components: - - pos: -38.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14161 - type: Catwalk - components: - - pos: -34.5,-37.5 - parent: 8364 - type: Transform -- uid: 14162 - type: Catwalk - components: - - pos: -35.5,-37.5 - parent: 8364 - type: Transform -- uid: 14163 - type: CableApcExtension - components: - - pos: -40.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14164 - type: CableApcExtension - components: - - pos: -41.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14165 - type: Catwalk - components: - - pos: -36.5,-37.5 - parent: 8364 - type: Transform -- uid: 14166 - type: CableApcExtension - components: - - pos: -37.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14167 - type: FirelockGlass - components: - - pos: -62.5,-5.5 - parent: 8364 - type: Transform -- uid: 14168 - type: PottedPlantRandom - components: - - pos: -58.5,-11.5 - parent: 8364 - type: Transform -- uid: 14169 - type: Table - components: - - pos: -33.5,-31.5 - parent: 8364 - type: Transform -- uid: 14170 - type: LockerSalvageSpecialistFilled - components: - - pos: -23.5,-37.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14171 - type: PowerCellRecharger - components: - - pos: -28.5,-26.5 - parent: 8364 - type: Transform -- uid: 14172 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,15.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14173 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,9.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14174 - type: FirelockGlass - components: - - pos: -23.5,-22.5 - parent: 8364 - type: Transform -- uid: 14175 - type: CableApcExtension - components: - - pos: -50.5,-5.5 - parent: 8364 - type: Transform -- uid: 14176 - type: Table - components: - - pos: -52.5,-13.5 - parent: 8364 - type: Transform -- uid: 14177 - type: CrateGenericSteel - components: - - pos: -51.5,-18.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 14178 - type: Wrench - components: - - pos: -52.517487,-13.387003 - parent: 8364 - type: Transform -- uid: 14179 - type: EmergencyOxygenTank - components: - - pos: -52.5,-13.5 - parent: 8364 - type: Transform -- uid: 14180 - type: ClothingMaskBreath - components: - - pos: -52.5,-13.5 - parent: 8364 - type: Transform -- uid: 14181 - type: ClosetMaintenanceFilledRandom - components: - - pos: -43.5,-15.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14182 - type: WeldingFuelTankFull - components: - - pos: -27.5,-13.5 - parent: 8364 - type: Transform -- uid: 14183 - type: AirlockMaintCargoLocked - components: - - name: 'Delivery Office Maintenance ' - type: MetaData - - pos: -26.5,-14.5 - parent: 8364 - type: Transform -- uid: 14184 - type: Airlock - components: - - name: Lockers Toilets - type: MetaData - - pos: -45.5,-9.5 - parent: 8364 - type: Transform -- uid: 14185 - type: Airlock - components: - - name: Unit 1 - type: MetaData - - pos: -47.5,-10.5 - parent: 8364 - type: Transform -- uid: 14186 - type: Airlock - components: - - name: Unit 2 - type: MetaData - - pos: -47.5,-12.5 - parent: 8364 - type: Transform -- uid: 14187 - type: Airlock - components: - - name: Unit 3 - type: MetaData - - pos: -47.5,-14.5 - parent: 8364 - type: Transform -- uid: 14188 - type: Airlock - components: - - name: Unit 4 - type: MetaData - - pos: -47.5,-16.5 - parent: 8364 - type: Transform -- uid: 14189 - type: AirlockQuartermasterGlassLocked - components: - - pos: -29.5,-30.5 - parent: 8364 - type: Transform -- uid: 14190 - type: AirlockQuartermasterGlassLocked - components: - - pos: -32.5,-28.5 - parent: 8364 - type: Transform -- uid: 14191 - type: OreProcessor - components: - - pos: -24.5,-28.5 - parent: 8364 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Plasma - - Uranium - - Gold - - Silver - type: MaterialStorage -- uid: 14192 - type: FirelockGlass - components: - - pos: -24.5,-28.5 - parent: 8364 - type: Transform -- uid: 14193 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-11.5 - parent: 8364 - type: Transform -- uid: 14194 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-12.5 - parent: 8364 - type: Transform -- uid: 14195 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-13.5 - parent: 8364 - type: Transform -- uid: 14196 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-14.5 - parent: 8364 - type: Transform -- uid: 14197 - type: Mirror - components: - - pos: -44.5,-11.5 - parent: 8364 - type: Transform -- uid: 14198 - type: Mirror - components: - - pos: -44.5,-14.5 - parent: 8364 - type: Transform -- uid: 14199 - type: Table - components: - - pos: -43.5,-10.5 - parent: 8364 - type: Transform -- uid: 14200 - type: Table - components: - - pos: -43.5,-7.5 - parent: 8364 - type: Transform -- uid: 14201 - type: Table - components: - - pos: -43.5,-6.5 - parent: 8364 - type: Transform -- uid: 14202 - type: Table - components: - - pos: -42.5,-6.5 - parent: 8364 - type: Transform -- uid: 14203 - type: Catwalk - components: - - pos: -37.5,-37.5 - parent: 8364 - type: Transform -- uid: 14204 - type: Table - components: - - pos: -41.5,-6.5 - parent: 8364 - type: Transform -- uid: 14205 - type: Table - components: - - pos: -41.5,-7.5 - parent: 8364 - type: Transform -- uid: 14206 - type: Table - components: - - pos: -42.5,-7.5 - parent: 8364 - type: Transform -- uid: 14207 - type: Catwalk - components: - - pos: -38.5,-37.5 - parent: 8364 - type: Transform -- uid: 14208 - type: FirelockGlass - components: - - pos: 26.5,-15.5 - parent: 8364 - type: Transform -- uid: 14209 - type: WallReinforced - components: - - pos: 2.5,-17.5 - parent: 8364 - type: Transform -- uid: 14210 - type: Catwalk - components: - - pos: -39.5,-37.5 - parent: 8364 - type: Transform -- uid: 14211 - type: ClosetBase - components: - - pos: -36.5,-4.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14212 - type: ClosetBase - components: - - pos: -36.5,-5.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14213 - type: ClosetBase - components: - - pos: -36.5,-6.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14214 - type: ClosetBase - components: - - pos: -36.5,-7.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14215 - type: ClosetBase - components: - - pos: -36.5,-8.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14216 - type: ClosetBase - components: - - pos: -36.5,-9.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14217 - type: HolofanProjector - components: - - pos: -20.405937,-40.342514 - parent: 8364 - type: Transform -- uid: 14218 - type: MaintenanceFluffSpawner - components: - - pos: 10.5,-34.5 - parent: 8364 - type: Transform -- uid: 14219 - type: Catwalk - components: - - pos: -40.5,-37.5 - parent: 8364 - type: Transform -- uid: 14220 - type: FirelockGlass - components: - - pos: 27.5,-15.5 - parent: 8364 - type: Transform -- uid: 14221 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -43.5,-10.5 - parent: 8364 - type: Transform -- uid: 14222 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -41.5,-10.5 - parent: 8364 - type: Transform -- uid: 14223 - type: ClosetBase - components: - - anchored: True - pos: -41.5,-10.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14224 - type: ToolboxMechanical - components: - - pos: -43.5,-6.5 - parent: 8364 - type: Transform -- uid: 14225 - type: ToolboxElectrical - components: - - pos: -42.5,-6.5 - parent: 8364 - type: Transform -- uid: 14226 - type: WeldingFuelTankFull - components: - - pos: -44.5,-4.5 - parent: 8364 - type: Transform -- uid: 14227 - type: ClothingHeadHatGreysoftFlipped - components: - - pos: -41.5,-7.5 - parent: 8364 - type: Transform -- uid: 14228 - type: ClothingHeadHatGreysoft - components: - - pos: -43.5,-7.5 - parent: 8364 - type: Transform -- uid: 14229 - type: WaterTankFull - components: - - pos: -45.5,-4.5 - parent: 8364 - type: Transform -- uid: 14232 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: -39.5,-4.5 - parent: 8364 - type: Transform -- uid: 14233 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -38.5,-4.5 - parent: 8364 - type: Transform -- uid: 14234 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-6.5 - parent: 8364 - type: Transform -- uid: 14235 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-6.5 - parent: 8364 - type: Transform -- uid: 14236 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-7.5 - parent: 8364 - type: Transform -- uid: 14237 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-7.5 - parent: 8364 - type: Transform -- uid: 14238 - type: SignElectricalMed - components: - - pos: -19.5,-36.5 - parent: 8364 - type: Transform -- uid: 14239 - type: MaintenanceToolSpawner - components: - - pos: 15.5,-34.5 - parent: 8364 - type: Transform -- uid: 14240 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-6.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14241 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-6.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14242 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-9.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14243 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -37.5,-13.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14244 - type: DisposalUnit - components: - - pos: -43.5,-9.5 - parent: 8364 - type: Transform -- uid: 14245 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-9.5 - parent: 8364 - type: Transform -- uid: 14246 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-9.5 - parent: 8364 - type: Transform -- uid: 14247 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -42.5,-8.5 - parent: 8364 - type: Transform -- uid: 14248 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -42.5,-7.5 - parent: 8364 - type: Transform -- uid: 14249 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -42.5,-6.5 - parent: 8364 - type: Transform -- uid: 14250 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -42.5,-5.5 - parent: 8364 - type: Transform -- uid: 14251 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -42.5,-4.5 - parent: 8364 - type: Transform -- uid: 14252 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -42.5,-3.5 - parent: 8364 - type: Transform -- uid: 14253 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -42.5,-2.5 - parent: 8364 - type: Transform -- uid: 14254 - type: CableMV - components: - - pos: -48.5,-1.5 - parent: 8364 - type: Transform -- uid: 14255 - type: CableMV - components: - - pos: -47.5,-1.5 - parent: 8364 - type: Transform -- uid: 14256 - type: CableMV - components: - - pos: -46.5,-1.5 - parent: 8364 - type: Transform -- uid: 14257 - type: CableMV - components: - - pos: -45.5,-1.5 - parent: 8364 - type: Transform -- uid: 14258 - type: CableMV - components: - - pos: -44.5,-1.5 - parent: 8364 - type: Transform -- uid: 14259 - type: CableMV - components: - - pos: -43.5,-1.5 - parent: 8364 - type: Transform -- uid: 14260 - type: CableMV - components: - - pos: -42.5,-1.5 - parent: 8364 - type: Transform -- uid: 14261 - type: CableMV - components: - - pos: -42.5,-2.5 - parent: 8364 - type: Transform -- uid: 14262 - type: CableMV - components: - - pos: -42.5,-3.5 - parent: 8364 - type: Transform -- uid: 14263 - type: CableMV - components: - - pos: -42.5,-4.5 - parent: 8364 - type: Transform -- uid: 14264 - type: CableMV - components: - - pos: -42.5,-5.5 - parent: 8364 - type: Transform -- uid: 14265 - type: CableMV - components: - - pos: -42.5,-6.5 - parent: 8364 - type: Transform -- uid: 14266 - type: CableMV - components: - - pos: -42.5,-7.5 - parent: 8364 - type: Transform -- uid: 14267 - type: CableMV - components: - - pos: -42.5,-8.5 - parent: 8364 - type: Transform -- uid: 14268 - type: CableMV - components: - - pos: -42.5,-9.5 - parent: 8364 - type: Transform -- uid: 14269 - type: CableMV - components: - - pos: -43.5,-9.5 - parent: 8364 - type: Transform -- uid: 14270 - type: CableMV - components: - - pos: -44.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14271 - type: CableApcExtension - components: - - pos: -44.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14272 - type: CableApcExtension - components: - - pos: -43.5,-9.5 - parent: 8364 - type: Transform -- uid: 14273 - type: CableApcExtension - components: - - pos: -42.5,-9.5 - parent: 8364 - type: Transform -- uid: 14274 - type: CableApcExtension - components: - - pos: -42.5,-8.5 - parent: 8364 - type: Transform -- uid: 14275 - type: CableApcExtension - components: - - pos: -42.5,-7.5 - parent: 8364 - type: Transform -- uid: 14276 - type: CableApcExtension - components: - - pos: -42.5,-6.5 - parent: 8364 - type: Transform -- uid: 14277 - type: CableApcExtension - components: - - pos: -42.5,-5.5 - parent: 8364 - type: Transform -- uid: 14278 - type: CableApcExtension - components: - - pos: -43.5,-5.5 - parent: 8364 - type: Transform -- uid: 14279 - type: CableApcExtension - components: - - pos: -44.5,-5.5 - parent: 8364 - type: Transform -- uid: 14280 - type: CableApcExtension - components: - - pos: -45.5,-5.5 - parent: 8364 - type: Transform -- uid: 14281 - type: CableApcExtension - components: - - pos: -46.5,-5.5 - parent: 8364 - type: Transform -- uid: 14282 - type: CableApcExtension - components: - - pos: -41.5,-5.5 - parent: 8364 - type: Transform -- uid: 14283 - type: CableApcExtension - components: - - pos: -40.5,-5.5 - parent: 8364 - type: Transform -- uid: 14284 - type: CableApcExtension - components: - - pos: -39.5,-5.5 - parent: 8364 - type: Transform -- uid: 14285 - type: CableApcExtension - components: - - pos: -38.5,-5.5 - parent: 8364 - type: Transform -- uid: 14286 - type: CableApcExtension - components: - - pos: -37.5,-5.5 - parent: 8364 - type: Transform -- uid: 14287 - type: CableApcExtension - components: - - pos: -37.5,-6.5 - parent: 8364 - type: Transform -- uid: 14288 - type: CableApcExtension - components: - - pos: -37.5,-7.5 - parent: 8364 - type: Transform -- uid: 14289 - type: CableApcExtension - components: - - pos: -37.5,-8.5 - parent: 8364 - type: Transform -- uid: 14290 - type: CableApcExtension - components: - - pos: -37.5,-9.5 - parent: 8364 - type: Transform -- uid: 14291 - type: CableApcExtension - components: - - pos: -37.5,-10.5 - parent: 8364 - type: Transform -- uid: 14292 - type: CableApcExtension - components: - - pos: -37.5,-11.5 - parent: 8364 - type: Transform -- uid: 14293 - type: CableApcExtension - components: - - pos: -37.5,-12.5 - parent: 8364 - type: Transform -- uid: 14294 - type: ToolboxEmergency - components: - - pos: -41.5,-6.5 - parent: 8364 - type: Transform -- uid: 14295 - type: ClothingHeadHatCake - components: - - pos: -42.5,-7.5 - parent: 8364 - type: Transform -- uid: 14296 - type: Table - components: - - pos: -34.5,-6.5 - parent: 8364 - type: Transform -- uid: 14297 - type: Table - components: - - pos: -34.5,-4.5 - parent: 8364 - type: Transform -- uid: 14298 - type: Table - components: - - pos: -34.5,-5.5 - parent: 8364 - type: Transform -- uid: 14299 - type: Table - components: - - pos: -33.5,-6.5 - parent: 8364 - type: Transform -- uid: 14300 - type: Table - components: - - pos: -32.5,-6.5 - parent: 8364 - type: Transform -- uid: 14301 - type: Rack - components: - - pos: -25.5,-6.5 - parent: 8364 - type: Transform -- uid: 14302 - type: Table - components: - - pos: -22.5,-5.5 - parent: 8364 - type: Transform -- uid: 14303 - type: Table - components: - - pos: -23.5,-5.5 - parent: 8364 - type: Transform -- uid: 14304 - type: Table - components: - - pos: -19.5,-5.5 - parent: 8364 - type: Transform -- uid: 14305 - type: Table - components: - - pos: -20.5,-5.5 - parent: 8364 - type: Transform -- uid: 14306 - type: Rack - components: - - pos: -19.5,-6.5 - parent: 8364 - type: Transform -- uid: 14307 - type: ComputerCriminalRecords - components: - - pos: -57.5,5.5 - parent: 8364 - type: Transform -- uid: 14308 - type: SpawnPointAssistant - components: - - pos: -42.5,3.5 - parent: 8364 - type: Transform -- uid: 14309 - type: ChairOfficeDark - components: - - pos: -58.5,3.5 - parent: 8364 - type: Transform -- uid: 14310 - type: WallSolid - components: - - pos: -19.5,-9.5 - parent: 8364 - type: Transform -- uid: 14311 - type: AirlockGlass - components: - - name: Art Storage - type: MetaData - - pos: -33.5,-3.5 - parent: 8364 - type: Transform -- uid: 14312 - type: LockerEvidence - components: - - pos: -14.5,27.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14313 - type: AirlockGlass - components: - - name: Auxiliary Tool Storage - type: MetaData - - pos: -21.5,-4.5 - parent: 8364 - type: Transform -- uid: 14314 - type: AirlockGlass - components: - - name: Closets Room - type: MetaData - - pos: -41.5,-3.5 - parent: 8364 - type: Transform -- uid: 14315 - type: AirlockGlass - components: - - name: Closets Room - type: MetaData - - pos: -42.5,-3.5 - parent: 8364 - type: Transform -- uid: 14316 - type: CableApcExtension - components: - - pos: -33.5,-2.5 - parent: 8364 - type: Transform -- uid: 14317 - type: CableApcExtension - components: - - pos: -33.5,-3.5 - parent: 8364 - type: Transform -- uid: 14318 - type: CableApcExtension - components: - - pos: -33.5,-4.5 - parent: 8364 - type: Transform -- uid: 14319 - type: CableApcExtension - components: - - pos: -33.5,-5.5 - parent: 8364 - type: Transform -- uid: 14320 - type: CableApcExtension - components: - - pos: -27.5,-2.5 - parent: 8364 - type: Transform -- uid: 14321 - type: CableApcExtension - components: - - pos: -27.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14322 - type: CableApcExtension - components: - - pos: -27.5,-3.5 - parent: 8364 - type: Transform -- uid: 14323 - type: CableApcExtension - components: - - pos: -27.5,-5.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14324 - type: CableApcExtension - components: - - pos: -21.5,-2.5 - parent: 8364 - type: Transform -- uid: 14325 - type: CableApcExtension - components: - - pos: -21.5,-3.5 - parent: 8364 - type: Transform -- uid: 14326 - type: CableApcExtension - components: - - pos: -21.5,-4.5 - parent: 8364 - type: Transform -- uid: 14327 - type: CableApcExtension - components: - - pos: -21.5,-5.5 - parent: 8364 - type: Transform -- uid: 14328 - type: CableApcExtension - components: - - pos: -21.5,-6.5 - parent: 8364 - type: Transform -- uid: 14329 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-7.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14330 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -27.5,-6.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14331 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -33.5,-6.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14332 - type: SprayBottleSpaceCleaner - components: - - pos: -34.47067,-4.5023966 - parent: 8364 - type: Transform -- uid: 14333 - type: SprayBottleSpaceCleaner - components: - - pos: -34.25192,-4.6898966 - parent: 8364 - type: Transform -- uid: 14334 - type: SprayBottleSpaceCleaner - components: - - pos: -34.68942,-4.3773966 - parent: 8364 - type: Transform -- uid: 14335 - type: Paper - components: - - pos: -34.62692,-5.2055216 - parent: 8364 - type: Transform -- uid: 14336 - type: Paper - components: - - pos: -34.361294,-5.4555216 - parent: 8364 - type: Transform -- uid: 14337 - type: Paper - components: - - pos: -34.18942,-5.6742716 - parent: 8364 - type: Transform -- uid: 14338 - type: HandLabeler - components: - - pos: -34.5,-6.5 - parent: 8364 - type: Transform -- uid: 14339 - type: CrayonBox - components: - - pos: -32.5,-6.5 - parent: 8364 - type: Transform -- uid: 14340 - type: CrayonBox - components: - - pos: -33.5,-6.5 - parent: 8364 - type: Transform -- uid: 14341 - type: WindowTintedDirectional - components: - - pos: 30.5,14.5 - parent: 8364 - type: Transform -- uid: 14342 - type: FirelockGlass - components: - - pos: -62.5,1.5 - parent: 8364 - type: Transform -- uid: 14343 - type: FirelockGlass - components: - - pos: -62.5,-4.5 - parent: 8364 - type: Transform -- uid: 14344 - type: CableApcExtension - components: - - pos: -51.5,-6.5 - parent: 8364 - type: Transform -- uid: 14345 - type: PortableScrubber - components: - - pos: -20.5,-38.5 - parent: 8364 - type: Transform -- uid: 14346 - type: AirlockServiceLocked - components: - - name: Vacant Office A - type: MetaData - - pos: -62.5,-10.5 - parent: 8364 - type: Transform -- uid: 14347 - type: TableWood - components: - - pos: -59.5,-7.5 - parent: 8364 - type: Transform -- uid: 14348 - type: TableWood - components: - - pos: -59.5,-8.5 - parent: 8364 - type: Transform -- uid: 14349 - type: TableWood - components: - - pos: -60.5,-8.5 - parent: 8364 - type: Transform -- uid: 14350 - type: TableWood - components: - - pos: -57.5,-7.5 - parent: 8364 - type: Transform -- uid: 14351 - type: TableWood - components: - - pos: -57.5,-8.5 - parent: 8364 - type: Transform -- uid: 14352 - type: TableWood - components: - - pos: -56.5,-8.5 - parent: 8364 - type: Transform -- uid: 14353 - type: TableWood - components: - - pos: -54.5,-7.5 - parent: 8364 - type: Transform -- uid: 14354 - type: AirlockAtmosphericsLocked - components: - - pos: -19.5,-39.5 - parent: 8364 - type: Transform -- uid: 14355 - type: TableWood - components: - - pos: -54.5,-11.5 - parent: 8364 - type: Transform -- uid: 14356 - type: TableWood - components: - - pos: -55.5,-11.5 - parent: 8364 - type: Transform -- uid: 14357 - type: ChairOfficeDark - components: - - pos: -60.5,-10.5 - parent: 8364 - type: Transform -- uid: 14358 - type: TableWood - components: - - pos: -56.5,-11.5 - parent: 8364 - type: Transform -- uid: 14359 - type: TableWood - components: - - pos: -61.5,-11.5 - parent: 8364 - type: Transform -- uid: 14360 - type: TableWood - components: - - pos: -60.5,-11.5 - parent: 8364 - type: Transform -- uid: 14361 - type: TableWood - components: - - pos: -59.5,-11.5 - parent: 8364 - type: Transform -- uid: 14362 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-7.5 - parent: 8364 - type: Transform -- uid: 14363 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-7.5 - parent: 8364 - type: Transform -- uid: 14364 - type: ChairOfficeDark - components: - - pos: -55.5,-10.5 - parent: 8364 - type: Transform -- uid: 14365 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-10.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14366 - type: BoxFolderRed - components: - - pos: -60.5,-11.5 - parent: 8364 - type: Transform -- uid: 14367 - type: BoxFolderBlue - components: - - pos: -55.5,-11.5 - parent: 8364 - type: Transform -- uid: 14368 - type: CableHV - components: - - pos: -23.5,-65.5 - parent: 8364 - type: Transform -- uid: 14369 - type: LampGold - components: - - pos: -57.52329,-8.160038 - parent: 8364 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 14370 - type: Pen - components: - - pos: -60.5,-8.5 - parent: 8364 - type: Transform -- uid: 14371 - type: Pen - components: - - pos: -56.5,-8.5 - parent: 8364 - type: Transform -- uid: 14372 - type: Paper - components: - - pos: -59.641922,-7.353676 - parent: 8364 - type: Transform -- uid: 14373 - type: Paper - components: - - pos: -59.470047,-7.572426 - parent: 8364 - type: Transform -- uid: 14374 - type: Paper - components: - - pos: -59.266922,-7.775551 - parent: 8364 - type: Transform -- uid: 14375 - type: Paper - components: - - pos: -57.641922,-7.353676 - parent: 8364 - type: Transform -- uid: 14376 - type: Paper - components: - - pos: -57.407547,-7.572426 - parent: 8364 - type: Transform -- uid: 14377 - type: Paper - components: - - pos: -57.298172,-7.791176 - parent: 8364 - type: Transform -- uid: 14378 - type: CableMV - components: - - pos: -51.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14379 - type: CableMV - components: - - pos: -52.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14380 - type: CableMV - components: - - pos: -53.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14381 - type: CableMV - components: - - pos: -54.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14382 - type: CableMV - components: - - pos: -55.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14383 - type: CableMV - components: - - pos: -55.5,-14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14384 - type: CableMV - components: - - pos: -55.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14385 - type: CableMV - components: - - pos: -56.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14386 - type: CableMV - components: - - pos: -57.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14387 - type: CableMV - components: - - pos: -58.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14388 - type: CableMV - components: - - pos: -59.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14389 - type: CableMV - components: - - pos: -60.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14390 - type: CableMV - components: - - pos: -61.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14391 - type: CableMV - components: - - pos: -62.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14392 - type: CableMV - components: - - pos: -63.5,-13.5 - parent: 8364 - type: Transform -- uid: 14393 - type: CableMV - components: - - pos: -63.5,-12.5 - parent: 8364 - type: Transform -- uid: 14394 - type: CableMV - components: - - pos: -63.5,-11.5 - parent: 8364 - type: Transform -- uid: 14395 - type: CableMV - components: - - pos: -63.5,-10.5 - parent: 8364 - type: Transform -- uid: 14396 - type: CableMV - components: - - pos: -62.5,-10.5 - parent: 8364 - type: Transform -- uid: 14397 - type: CableMV - components: - - pos: -61.5,-10.5 - parent: 8364 - type: Transform -- uid: 14398 - type: CableMV - components: - - pos: -60.5,-10.5 - parent: 8364 - type: Transform -- uid: 14399 - type: CableMV - components: - - pos: -59.5,-10.5 - parent: 8364 - type: Transform -- uid: 14400 - type: CableMV - components: - - pos: -58.5,-10.5 - parent: 8364 - type: Transform -- uid: 14401 - type: CableMV - components: - - pos: -57.5,-10.5 - parent: 8364 - type: Transform -- uid: 14402 - type: CableMV - components: - - pos: -56.5,-10.5 - parent: 8364 - type: Transform -- uid: 14403 - type: CableMV - components: - - pos: -55.5,-10.5 - parent: 8364 - type: Transform -- uid: 14404 - type: CableMV - components: - - pos: -55.5,-9.5 - parent: 8364 - type: Transform -- uid: 14405 - type: CableMV - components: - - pos: -54.5,-9.5 - parent: 8364 - type: Transform -- uid: 14406 - type: CableMV - components: - - pos: -53.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14407 - type: CableApcExtension - components: - - pos: -53.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14408 - type: CableApcExtension - components: - - pos: -54.5,-9.5 - parent: 8364 - type: Transform -- uid: 14409 - type: CableApcExtension - components: - - pos: -55.5,-9.5 - parent: 8364 - type: Transform -- uid: 14410 - type: CableApcExtension - components: - - pos: -56.5,-9.5 - parent: 8364 - type: Transform -- uid: 14411 - type: CableApcExtension - components: - - pos: -57.5,-9.5 - parent: 8364 - type: Transform -- uid: 14412 - type: CableApcExtension - components: - - pos: -58.5,-9.5 - parent: 8364 - type: Transform -- uid: 14413 - type: CableApcExtension - components: - - pos: -59.5,-9.5 - parent: 8364 - type: Transform -- uid: 14414 - type: CableApcExtension - components: - - pos: -60.5,-9.5 - parent: 8364 - type: Transform -- uid: 14415 - type: CableApcExtension - components: - - pos: -58.5,-10.5 - parent: 8364 - type: Transform -- uid: 14416 - type: CableApcExtension - components: - - pos: -58.5,-8.5 - parent: 8364 - type: Transform -- uid: 14417 - type: AirlockMaintLocked - components: - - pos: -62.5,-13.5 - parent: 8364 - type: Transform -- uid: 14418 - type: AirCanister - components: - - pos: -52.5,-10.5 - parent: 8364 - type: Transform -- uid: 14419 - type: AirlockMaintCargoLocked - components: - - name: Warehouse Maintenance - type: MetaData - - pos: -29.5,-9.5 - parent: 8364 - type: Transform -- uid: 14420 - type: AirlockMaintLocked - components: - - pos: -30.5,-3.5 - parent: 8364 - type: Transform -- uid: 14421 - type: AirlockMaintLocked - components: - - name: Vacant Office B Maintenance - type: MetaData - - pos: -25.5,-12.5 - parent: 8364 - type: Transform -- uid: 14422 - type: AirlockMaintCargoLocked - components: - - name: Cargo Bay Maintenance - type: MetaData - - pos: -39.5,-19.5 - parent: 8364 - type: Transform -- uid: 14423 - type: Table - components: - - pos: -28.5,-5.5 - parent: 8364 - type: Transform -- uid: 14424 - type: CrateServiceReplacementLights - components: - - pos: -28.5,-6.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 14425 - type: LightReplacer - components: - - pos: -28.5,-5.5 - parent: 8364 - type: Transform -- uid: 14426 - type: AirCanister - components: - - pos: -25.5,-5.5 - parent: 8364 - type: Transform -- uid: 14427 - type: EmergencyOxygenTankFilled - components: - - pos: -25.5,-6.5 - parent: 8364 - type: Transform -- uid: 14428 - type: ClothingMaskBreath - components: - - pos: -25.5,-6.5 - parent: 8364 - type: Transform -- uid: 14429 - type: WeldingFuelTankFull - components: - - pos: -23.5,-6.5 - parent: 8364 - type: Transform -- uid: 14430 - type: WaterTankFull - components: - - pos: -23.5,-7.5 - parent: 8364 - type: Transform -- uid: 14431 - type: ClosetToolFilled - components: - - pos: -19.5,-7.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14432 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -37.5,-63.5 - parent: 8364 - type: Transform -- uid: 14433 - type: ClothingHandsGlovesColorYellowBudget - components: - - pos: -19.5,-6.5 - parent: 8364 - type: Transform -- uid: 14434 - type: Multitool - components: - - pos: -19.5,-6.5 - parent: 8364 - type: Transform -- uid: 14435 - type: FlashlightLantern - components: - - pos: -19.5,-6.5 - parent: 8364 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 14436 - type: ToolboxEmergencyFilled - components: - - pos: -19.5,-5.5 - parent: 8364 - type: Transform -- uid: 14437 - type: BoxLightbulb - components: - - pos: -20.70863,-5.352804 - parent: 8364 - type: Transform -- uid: 14438 - type: BoxLighttube - components: - - pos: -20.536755,-5.462179 - parent: 8364 - type: Transform -- uid: 14439 - type: BoxLightMixed - components: - - pos: -20.20863,-5.399679 - parent: 8364 - type: Transform -- uid: 14440 - type: APCElectronics - components: - - pos: -22.30238,-5.274679 - parent: 8364 - type: Transform -- uid: 14441 - type: DoorElectronics - components: - - pos: -22.349255,-5.634054 - parent: 8364 - type: Transform -- uid: 14442 - type: SheetGlass - components: - - pos: -23.474255,-5.524679 - parent: 8364 - type: Transform -- uid: 14443 - type: SheetSteel - components: - - pos: -23.005505,-5.509054 - parent: 8364 - type: Transform -- uid: 14444 - type: AirlockGlass - components: - - name: Central Access - type: MetaData - - pos: -18.5,-0.5 - parent: 8364 - type: Transform -- uid: 14445 - type: AirlockGlass - components: - - name: Central Access - type: MetaData - - pos: -18.5,-1.5 - parent: 8364 - type: Transform -- uid: 14446 - type: AirlockGlass - components: - - name: Central Access - type: MetaData - - pos: -18.5,-2.5 - parent: 8364 - type: Transform -- uid: 14447 - type: WallReinforced - components: - - pos: -17.5,-67.5 - parent: 8364 - type: Transform -- uid: 14448 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -41.5,-61.5 - parent: 8364 - type: Transform -- uid: 14449 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -39.5,-61.5 - parent: 8364 - type: Transform -- uid: 14450 - type: CableMV - components: - - pos: -51.5,-6.5 - parent: 8364 - type: Transform -- uid: 14451 - type: CableApcExtension - components: - - pos: -50.5,-7.5 - parent: 8364 - type: Transform -- uid: 14452 - type: WallSolid - components: - - pos: -52.5,-9.5 - parent: 8364 - type: Transform -- uid: 14453 - type: WallSolid - components: - - pos: -51.5,-9.5 - parent: 8364 - type: Transform -- uid: 14454 - type: CableMV - components: - - pos: -52.5,-6.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14455 - type: APCBasic - components: - - name: Janitor Closet APC - type: MetaData - - pos: -52.5,-6.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 5 - supplyRampPosition: 2.4463015 - type: PowerNetworkBattery -- uid: 14456 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-6.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14457 - type: SpawnPointJanitor - components: - - pos: -50.5,-6.5 - parent: 8364 - type: Transform -- uid: 14458 - type: Lamp - components: - - pos: -59.557964,-8.137121 - parent: 8364 - type: Transform -- uid: 14459 - type: ClosetL3JanitorFilled - components: - - pos: -52.5,-7.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14460 - type: Table - components: - - pos: -49.5,-4.5 - parent: 8364 - type: Transform -- uid: 14461 - type: Table - components: - - pos: -49.5,-5.5 - parent: 8364 - type: Transform -- uid: 14462 - type: WallSolid - components: - - pos: 62.5,13.5 - parent: 8364 - type: Transform -- uid: 14463 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-8.5 - parent: 8364 - type: Transform -- uid: 14464 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-27.5 - parent: 8364 - type: Transform -- uid: 14465 - type: DisposalPipe - components: - - pos: -50.5,-4.5 - parent: 8364 - type: Transform -- uid: 14466 - type: ClothingBeltJanitorFilled - components: - - pos: -49.5,-4.5 - parent: 8364 - type: Transform -- uid: 14467 - type: CrateServiceJanitorialSupplies - components: - - pos: -49.5,-7.5 - parent: 8364 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 14468 - type: PoweredlightLED - components: - - pos: -34.5,1.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14469 - type: WaterTankFull - components: - - pos: -51.5,-6.5 - parent: 8364 - type: Transform -- uid: 14470 - type: MopItem - components: - - pos: -49.5,-5.5 - parent: 8364 - type: Transform -- uid: 14471 - type: Bucket - components: - - pos: -49.5,-5.5 - parent: 8364 - type: Transform -- uid: 14472 - type: SprayBottleSpaceCleaner - components: - - pos: -49.723927,-5.097249 - parent: 8364 - type: Transform -- uid: 14473 - type: SprayBottleSpaceCleaner - components: - - pos: -49.3958,-5.081624 - parent: 8364 - type: Transform -- uid: 14474 - type: BoxLightMixed - components: - - pos: -49.441856,-4.426453 - parent: 8364 - type: Transform -- uid: 14475 - type: LightReplacer - components: - - pos: -49.660606,-4.301453 - parent: 8364 - type: Transform -- uid: 14476 - type: RandomSoap - components: - - pos: -51.5,-7.5 - parent: 8364 - type: Transform -- uid: 14477 - type: CableApcExtension - components: - - pos: -19.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14478 - type: CableApcExtension - components: - - pos: -20.5,-10.5 - parent: 8364 - type: Transform -- uid: 14479 - type: CableApcExtension - components: - - pos: -21.5,-10.5 - parent: 8364 - type: Transform -- uid: 14480 - type: CableApcExtension - components: - - pos: -22.5,-10.5 - parent: 8364 - type: Transform -- uid: 14481 - type: CableApcExtension - components: - - pos: -23.5,-10.5 - parent: 8364 - type: Transform -- uid: 14482 - type: CableApcExtension - components: - - pos: -23.5,-11.5 - parent: 8364 - type: Transform -- uid: 14483 - type: CableApcExtension - components: - - pos: -23.5,-12.5 - parent: 8364 - type: Transform -- uid: 14484 - type: CableApcExtension - components: - - pos: -22.5,-12.5 - parent: 8364 - type: Transform -- uid: 14485 - type: CableApcExtension - components: - - pos: -21.5,-12.5 - parent: 8364 - type: Transform -- uid: 14486 - type: AirSensor - components: - - pos: -0.5,-55.5 - parent: 8364 - type: Transform -- uid: 14487 - type: Grille - components: - - pos: -19.5,-12.5 - parent: 8364 - type: Transform -- uid: 14488 - type: Window - components: - - pos: -19.5,-12.5 - parent: 8364 - type: Transform -- uid: 14489 - type: AirAlarm - components: - - pos: -2.5,-54.5 - parent: 8364 - type: Transform - - devices: - - 14697 - - 14698 - - 14699 - - 14486 - - 23067 - - 23068 - type: DeviceList -- uid: 14490 - type: CableMV - components: - - pos: -29.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14491 - type: CableMV - components: - - pos: -28.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14492 - type: CableMV - components: - - pos: -27.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14493 - type: CableMV - components: - - pos: -26.5,-8.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14494 - type: CableMV - components: - - pos: -26.5,-9.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14495 - type: CableMV - components: - - pos: -26.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14496 - type: CableMV - components: - - pos: -26.5,-11.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14497 - type: CableMV - components: - - pos: -26.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14498 - type: CableMV - components: - - pos: -25.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14499 - type: CableMV - components: - - pos: -24.5,-12.5 - parent: 8364 - type: Transform -- uid: 14500 - type: CableMV - components: - - pos: -23.5,-12.5 - parent: 8364 - type: Transform -- uid: 14501 - type: CableMV - components: - - pos: -23.5,-11.5 - parent: 8364 - type: Transform -- uid: 14502 - type: CableMV - components: - - pos: -23.5,-10.5 - parent: 8364 - type: Transform -- uid: 14503 - type: CableMV - components: - - pos: -22.5,-10.5 - parent: 8364 - type: Transform -- uid: 14504 - type: CableMV - components: - - pos: -21.5,-10.5 - parent: 8364 - type: Transform -- uid: 14505 - type: CableMV - components: - - pos: -20.5,-10.5 - parent: 8364 - type: Transform -- uid: 14506 - type: CableMV - components: - - pos: -19.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14507 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -22.5,-13.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14508 - type: CigPackRed - components: - - pos: -60.502205,-2.3450234 - parent: 8364 - type: Transform -- uid: 14509 - type: CheapLighter - components: - - pos: -61.04908,-2.3450234 - parent: 8364 - type: Transform -- uid: 14510 - type: PottedPlant21 - components: - - pos: -46.5,-4.5 - parent: 8364 - type: Transform -- uid: 14511 - type: WindoorCargoLocked - components: - - pos: -24.5,-28.5 - parent: 8364 - type: Transform -- uid: 14512 - type: DisposalUnit - components: - - pos: -24.5,-13.5 - parent: 8364 - type: Transform -- uid: 14513 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -24.5,-13.5 - parent: 8364 - type: Transform -- uid: 14514 - type: DisposalBend - components: - - pos: -24.5,-12.5 - parent: 8364 - type: Transform -- uid: 14515 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -26.5,-12.5 - parent: 8364 - type: Transform -- uid: 14516 - type: DisposalBend - components: - - pos: -26.5,-8.5 - parent: 8364 - type: Transform -- uid: 14517 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-8.5 - parent: 8364 - type: Transform -- uid: 14518 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-16.5 - parent: 8364 - type: Transform -- uid: 14519 - type: Catwalk - components: - - pos: -40.5,-18.5 - parent: 8364 - type: Transform -- uid: 14520 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-15.5 - parent: 8364 - type: Transform -- uid: 14521 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -39.5,-16.5 - parent: 8364 - type: Transform -- uid: 14522 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -41.5,-16.5 - parent: 8364 - type: Transform -- uid: 14523 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-15.5 - parent: 8364 - type: Transform -- uid: 14524 - type: DisposalBend - components: - - pos: -39.5,-15.5 - parent: 8364 - type: Transform -- uid: 14525 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-16.5 - parent: 8364 - type: Transform -- uid: 14526 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-16.5 - parent: 8364 - type: Transform -- uid: 14527 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-16.5 - parent: 8364 - type: Transform -- uid: 14528 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-16.5 - parent: 8364 - type: Transform -- uid: 14529 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -34.5,-15.5 - parent: 8364 - type: Transform -- uid: 14530 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -34.5,-14.5 - parent: 8364 - type: Transform -- uid: 14531 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -34.5,-13.5 - parent: 8364 - type: Transform -- uid: 14532 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -34.5,-12.5 - parent: 8364 - type: Transform -- uid: 14533 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -34.5,-11.5 - parent: 8364 - type: Transform -- uid: 14534 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -34.5,-10.5 - parent: 8364 - type: Transform -- uid: 14535 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -34.5,-9.5 - parent: 8364 - type: Transform -- uid: 14536 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-8.5 - parent: 8364 - type: Transform -- uid: 14537 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-8.5 - parent: 8364 - type: Transform -- uid: 14538 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-8.5 - parent: 8364 - type: Transform -- uid: 14539 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 8364 - type: Transform -- uid: 14540 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-8.5 - parent: 8364 - type: Transform -- uid: 14541 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-8.5 - parent: 8364 - type: Transform -- uid: 14542 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-8.5 - parent: 8364 - type: Transform -- uid: 14543 - type: DisposalPipe - components: - - pos: -26.5,-9.5 - parent: 8364 - type: Transform -- uid: 14544 - type: DisposalPipe - components: - - pos: -26.5,-10.5 - parent: 8364 - type: Transform -- uid: 14545 - type: DisposalPipe - components: - - pos: -26.5,-11.5 - parent: 8364 - type: Transform -- uid: 14546 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-12.5 - parent: 8364 - type: Transform -- uid: 14547 - type: Catwalk - components: - - pos: -41.5,-18.5 - parent: 8364 - type: Transform -- uid: 14548 - type: Catwalk - components: - - pos: -0.5,-74.5 - parent: 8364 - type: Transform -- uid: 14549 - type: Catwalk - components: - - pos: 0.5,-74.5 - parent: 8364 - type: Transform -- uid: 14550 - type: Catwalk - components: - - pos: -7.5,-67.5 - parent: 8364 - type: Transform -- uid: 14551 - type: Catwalk - components: - - pos: -6.5,-67.5 - parent: 8364 - type: Transform -- uid: 14552 - type: Catwalk - components: - - pos: -2.5,-74.5 - parent: 8364 - type: Transform -- uid: 14553 - type: Catwalk - components: - - pos: -1.5,-74.5 - parent: 8364 - type: Transform -- uid: 14554 - type: Catwalk - components: - - pos: -8.5,-67.5 - parent: 8364 - type: Transform -- uid: 14555 - type: WallReinforced - components: - - pos: -35.5,-28.5 - parent: 8364 - type: Transform -- uid: 14556 - type: FirelockGlass - components: - - pos: -18.5,-23.5 - parent: 8364 - type: Transform -- uid: 14557 - type: Catwalk - components: - - pos: 1.5,-74.5 - parent: 8364 - type: Transform -- uid: 14558 - type: LockerSalvageSpecialistFilled - components: - - pos: -23.5,-36.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14559 - type: LockerSalvageSpecialistFilled - components: - - pos: -23.5,-35.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14560 - type: SpawnPointSalvageSpecialist - components: - - pos: -26.5,-35.5 - parent: 8364 - type: Transform -- uid: 14561 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -18.5,-9.5 - parent: 8364 - type: Transform -- uid: 14562 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-18.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14563 - type: ClosetEmergencyFilledRandom - components: - - pos: 65.5,-17.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14564 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,-10.5 - parent: 8364 - type: Transform -- uid: 14565 - type: Poweredlight - components: - - pos: -57.5,-7.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14566 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-12.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14567 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-14.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14568 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-16.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14569 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-12.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14570 - type: WardrobeSalvageFilled - components: - - pos: -23.5,-34.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14571 - type: SpawnPointSalvageSpecialist - components: - - pos: -26.5,-31.5 - parent: 8364 - type: Transform -- uid: 14572 - type: CableMV - components: - - pos: -65.5,-2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14573 - type: CableMV - components: - - pos: -63.5,-2.5 - parent: 8364 - type: Transform -- uid: 14574 - type: CableMV - components: - - pos: -63.5,-1.5 - parent: 8364 - type: Transform -- uid: 14575 - type: CableMV - components: - - pos: -63.5,-0.5 - parent: 8364 - type: Transform -- uid: 14576 - type: CableMV - components: - - pos: -63.5,0.5 - parent: 8364 - type: Transform -- uid: 14577 - type: CableMV - components: - - pos: -63.5,1.5 - parent: 8364 - type: Transform -- uid: 14578 - type: CableMV - components: - - pos: -63.5,2.5 - parent: 8364 - type: Transform -- uid: 14579 - type: CableMV - components: - - pos: -63.5,3.5 - parent: 8364 - type: Transform -- uid: 14580 - type: CableMV - components: - - pos: -63.5,4.5 - parent: 8364 - type: Transform -- uid: 14581 - type: CableMV - components: - - pos: -63.5,5.5 - parent: 8364 - type: Transform -- uid: 14582 - type: CableMV - components: - - pos: -63.5,6.5 - parent: 8364 - type: Transform -- uid: 14583 - type: CableMV - components: - - pos: -63.5,7.5 - parent: 8364 - type: Transform -- uid: 14584 - type: CableMV - components: - - pos: -63.5,8.5 - parent: 8364 - type: Transform -- uid: 14585 - type: CableMV - components: - - pos: -63.5,9.5 - parent: 8364 - type: Transform -- uid: 14586 - type: CableMV - components: - - pos: -63.5,10.5 - parent: 8364 - type: Transform -- uid: 14587 - type: CableMV - components: - - pos: -63.5,11.5 - parent: 8364 - type: Transform -- uid: 14588 - type: CableMV - components: - - pos: -63.5,12.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14589 - type: CableMV - components: - - pos: -63.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14590 - type: CableMV - components: - - pos: -64.5,-2.5 - parent: 8364 - type: Transform -- uid: 14591 - type: CableMV - components: - - pos: -65.5,-2.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14592 - type: CableMV - components: - - pos: -63.5,-3.5 - parent: 8364 - type: Transform -- uid: 14593 - type: CableMV - components: - - pos: -63.5,-4.5 - parent: 8364 - type: Transform -- uid: 14594 - type: CableMV - components: - - pos: -63.5,-5.5 - parent: 8364 - type: Transform -- uid: 14595 - type: CableMV - components: - - pos: -63.5,-6.5 - parent: 8364 - type: Transform -- uid: 14596 - type: CableMV - components: - - pos: -63.5,-7.5 - parent: 8364 - type: Transform -- uid: 14597 - type: CableMV - components: - - pos: -63.5,-8.5 - parent: 8364 - type: Transform -- uid: 14598 - type: CableMV - components: - - pos: -63.5,-9.5 - parent: 8364 - type: Transform -- uid: 14599 - type: SpawnPointSalvageSpecialist - components: - - pos: -26.5,-33.5 - parent: 8364 - type: Transform -- uid: 14600 - type: CableHV - components: - - pos: -13.5,-11.5 - parent: 8364 - type: Transform -- uid: 14601 - type: FirelockGlass - components: - - pos: 11.5,-8.5 - parent: 8364 - type: Transform -- uid: 14603 - type: RandomSpawner - components: - - pos: -71.5,10.5 - parent: 8364 - type: Transform -- uid: 14604 - type: RandomSpawner - components: - - pos: -63.5,-14.5 - parent: 8364 - type: Transform -- uid: 14605 - type: RandomSpawner - components: - - pos: -49.5,-2.5 - parent: 8364 - type: Transform -- uid: 14606 - type: RandomSpawner - components: - - pos: -19.5,-0.5 - parent: 8364 - type: Transform -- uid: 14607 - type: RandomSpawner - components: - - pos: -43.5,-5.5 - parent: 8364 - type: Transform -- uid: 14608 - type: RandomSpawner - components: - - pos: -39.5,-5.5 - parent: 8364 - type: Transform -- uid: 14609 - type: RandomSpawner - components: - - pos: -46.5,-12.5 - parent: 8364 - type: Transform -- uid: 14610 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: -28.5,-29.5 - parent: 8364 - type: Transform -- uid: 14611 - type: RandomSpawner - components: - - pos: -61.5,-9.5 - parent: 8364 - type: Transform -- uid: 14612 - type: RandomSpawner - components: - - pos: -51.5,-16.5 - parent: 8364 - type: Transform -- uid: 14613 - type: RandomSpawner - components: - - pos: -43.5,-14.5 - parent: 8364 - type: Transform -- uid: 14614 - type: RandomSpawner - components: - - pos: -27.5,-9.5 - parent: 8364 - type: Transform -- uid: 14615 - type: RandomSpawner - components: - - pos: -57.5,-17.5 - parent: 8364 - type: Transform -- uid: 14616 - type: RandomSpawner - components: - - pos: -58.5,-20.5 - parent: 8364 - type: Transform -- uid: 14617 - type: SpawnMobMouse - components: - - pos: -53.5,-16.5 - parent: 8364 - type: Transform -- uid: 14618 - type: CableApcExtension - components: - - pos: -45.5,-9.5 - parent: 8364 - type: Transform -- uid: 14619 - type: CableApcExtension - components: - - pos: -45.5,-10.5 - parent: 8364 - type: Transform -- uid: 14620 - type: CableApcExtension - components: - - pos: -45.5,-11.5 - parent: 8364 - type: Transform -- uid: 14621 - type: CableApcExtension - components: - - pos: -45.5,-12.5 - parent: 8364 - type: Transform -- uid: 14622 - type: CableApcExtension - components: - - pos: -45.5,-13.5 - parent: 8364 - type: Transform -- uid: 14623 - type: CableApcExtension - components: - - pos: -45.5,-14.5 - parent: 8364 - type: Transform -- uid: 14624 - type: CableApcExtension - components: - - pos: -45.5,-15.5 - parent: 8364 - type: Transform -- uid: 14625 - type: CableApcExtension - components: - - pos: -46.5,-15.5 - parent: 8364 - type: Transform -- uid: 14626 - type: CableApcExtension - components: - - pos: -46.5,-13.5 - parent: 8364 - type: Transform -- uid: 14627 - type: CableApcExtension - components: - - pos: -46.5,-11.5 - parent: 8364 - type: Transform -- uid: 14628 - type: Table - components: - - pos: -28.5,-32.5 - parent: 8364 - type: Transform -- uid: 14629 - type: SpawnPointCargoTechnician - components: - - pos: -26.5,-20.5 - parent: 8364 - type: Transform -- uid: 14630 - type: FirelockGlass - components: - - pos: 11.5,-7.5 - parent: 8364 - type: Transform -- uid: 14631 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-37.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Circuitry - type: SurveillanceCamera -- uid: 14632 - type: SpawnPointCargoTechnician - components: - - pos: -26.5,-22.5 - parent: 8364 - type: Transform -- uid: 14633 - type: SpawnPointQuartermaster - components: - - pos: -32.5,-30.5 - parent: 8364 - type: Transform -- uid: 14634 - type: SpawnPointCargoTechnician - components: - - pos: -26.5,-21.5 - parent: 8364 - type: Transform -- uid: 14635 - type: BoxCardboard - components: - - pos: -31.5,-16.5 - parent: 8364 - type: Transform -- uid: 14636 - type: ClothingOuterCardborg - components: - - pos: -32.5,-10.5 - parent: 8364 - type: Transform -- uid: 14637 - type: ClothingHeadHatCardborg - components: - - pos: -32.5,-11.5 - parent: 8364 - type: Transform -- uid: 14638 - type: Rack - components: - - pos: -32.5,-10.5 - parent: 8364 - type: Transform -- uid: 14639 - type: Rack - components: - - pos: -32.5,-11.5 - parent: 8364 - type: Transform -- uid: 14640 - type: Rack - components: - - pos: -31.5,-11.5 - parent: 8364 - type: Transform -- uid: 14641 - type: AtmosFixBlockerMarker - components: - - pos: 28.5,-50.5 - parent: 8364 - type: Transform -- uid: 14642 - type: CableApcExtension - components: - - pos: -38.5,-20.5 - parent: 8364 - type: Transform -- uid: 14643 - type: APCBasic - components: - - name: Cargo Office APC - type: MetaData - - pos: -25.5,-20.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 65 - supplyRampPosition: 2.4463015 - type: PowerNetworkBattery -- uid: 14644 - type: APCBasic - components: - - name: Salvage APC - type: MetaData - - pos: -29.5,-34.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 25 - supplyRampPosition: 9.488577 - type: PowerNetworkBattery -- uid: 14645 - type: CableApcExtension - components: - - pos: -35.5,-26.5 - parent: 8364 - type: Transform -- uid: 14646 - type: CableApcExtension - components: - - pos: -34.5,-26.5 - parent: 8364 - type: Transform -- uid: 14647 - type: CableApcExtension - components: - - pos: -33.5,-26.5 - parent: 8364 - type: Transform -- uid: 14648 - type: CableApcExtension - components: - - pos: -32.5,-26.5 - parent: 8364 - type: Transform -- uid: 14649 - type: CableApcExtension - components: - - pos: -31.5,-26.5 - parent: 8364 - type: Transform -- uid: 14650 - type: CableApcExtension - components: - - pos: -31.5,-25.5 - parent: 8364 - type: Transform -- uid: 14651 - type: CableApcExtension - components: - - pos: -31.5,-24.5 - parent: 8364 - type: Transform -- uid: 14652 - type: CableApcExtension - components: - - pos: -31.5,-23.5 - parent: 8364 - type: Transform -- uid: 14653 - type: CableApcExtension - components: - - pos: -31.5,-22.5 - parent: 8364 - type: Transform -- uid: 14654 - type: CableApcExtension - components: - - pos: -31.5,-21.5 - parent: 8364 - type: Transform -- uid: 14655 - type: CableApcExtension - components: - - pos: -31.5,-20.5 - parent: 8364 - type: Transform -- uid: 14656 - type: CableApcExtension - components: - - pos: -31.5,-19.5 - parent: 8364 - type: Transform -- uid: 14657 - type: CableApcExtension - components: - - pos: -31.5,-18.5 - parent: 8364 - type: Transform -- uid: 14658 - type: CableApcExtension - components: - - pos: -31.5,-17.5 - parent: 8364 - type: Transform -- uid: 14659 - type: CableApcExtension - components: - - pos: -31.5,-16.5 - parent: 8364 - type: Transform -- uid: 14660 - type: CableApcExtension - components: - - pos: -31.5,-15.5 - parent: 8364 - type: Transform -- uid: 14661 - type: CableApcExtension - components: - - pos: -31.5,-14.5 - parent: 8364 - type: Transform -- uid: 14662 - type: CableApcExtension - components: - - pos: -31.5,-13.5 - parent: 8364 - type: Transform -- uid: 14663 - type: CableApcExtension - components: - - pos: -31.5,-12.5 - parent: 8364 - type: Transform -- uid: 14664 - type: CableApcExtension - components: - - pos: -31.5,-11.5 - parent: 8364 - type: Transform -- uid: 14665 - type: CableApcExtension - components: - - pos: -36.5,-26.5 - parent: 8364 - type: Transform -- uid: 14666 - type: CableApcExtension - components: - - pos: -37.5,-26.5 - parent: 8364 - type: Transform -- uid: 14667 - type: CableApcExtension - components: - - pos: -38.5,-26.5 - parent: 8364 - type: Transform -- uid: 14668 - type: CableApcExtension - components: - - pos: -39.5,-26.5 - parent: 8364 - type: Transform -- uid: 14669 - type: CableApcExtension - components: - - pos: -40.5,-26.5 - parent: 8364 - type: Transform -- uid: 14670 - type: CableApcExtension - components: - - pos: -41.5,-26.5 - parent: 8364 - type: Transform -- uid: 14671 - type: Paper - components: - - pos: -32.527534,-31.396044 - parent: 8364 - type: Transform -- uid: 14672 - type: CableApcExtension - components: - - pos: -41.5,-25.5 - parent: 8364 - type: Transform -- uid: 14673 - type: CableApcExtension - components: - - pos: -41.5,-24.5 - parent: 8364 - type: Transform -- uid: 14674 - type: CableHV - components: - - pos: 6.5,-65.5 - parent: 8364 - type: Transform -- uid: 14675 - type: CableApcExtension - components: - - pos: -60.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14676 - type: CableApcExtension - components: - - pos: -58.5,-20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14677 - type: CableApcExtension - components: - - pos: -58.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14678 - type: CableApcExtension - components: - - pos: -59.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14679 - type: CableApcExtension - components: - - pos: -60.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14680 - type: CableApcExtension - components: - - pos: -60.5,-20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14681 - type: CableApcExtension - components: - - pos: -54.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14682 - type: CableApcExtension - components: - - pos: -53.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14683 - type: CableApcExtension - components: - - pos: -54.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14684 - type: CableApcExtension - components: - - pos: -54.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14685 - type: CableApcExtension - components: - - pos: -53.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14686 - type: CableApcExtension - components: - - pos: -52.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14687 - type: CableHV - components: - - pos: 8.5,-65.5 - parent: 8364 - type: Transform -- uid: 14688 - type: CableHV - components: - - pos: 8.5,-64.5 - parent: 8364 - type: Transform -- uid: 14689 - type: CableHV - components: - - pos: 5.5,-64.5 - parent: 8364 - type: Transform -- uid: 14690 - type: CableHV - components: - - pos: -2.5,-61.5 - parent: 8364 - type: Transform -- uid: 14691 - type: CableHV - components: - - pos: -20.5,-70.5 - parent: 8364 - type: Transform -- uid: 14692 - type: CableHV - components: - - pos: 7.5,-65.5 - parent: 8364 - type: Transform -- uid: 14693 - type: CableHV - components: - - pos: -23.5,-70.5 - parent: 8364 - type: Transform -- uid: 14694 - type: CableHV - components: - - pos: -22.5,-70.5 - parent: 8364 - type: Transform -- uid: 14695 - type: CableHV - components: - - pos: -24.5,-70.5 - parent: 8364 - type: Transform -- uid: 14696 - type: MagazineRifle - components: - - pos: -1.7173859,39.648827 - parent: 8364 - type: Transform -- uid: 14697 - type: FirelockGlass - components: - - pos: -1.5,-52.5 - parent: 8364 - type: Transform -- uid: 14698 - type: FirelockGlass - components: - - pos: -0.5,-52.5 - parent: 8364 - type: Transform -- uid: 14699 - type: FirelockGlass - components: - - pos: 0.5,-52.5 - parent: 8364 - type: Transform -- uid: 14700 - type: Catwalk - components: - - pos: -26.5,-9.5 - parent: 8364 - type: Transform -- uid: 14701 - type: Catwalk - components: - - pos: -26.5,-10.5 - parent: 8364 - type: Transform -- uid: 14702 - type: Catwalk - components: - - pos: -26.5,-11.5 - parent: 8364 - type: Transform -- uid: 14703 - type: Catwalk - components: - - pos: -26.5,-12.5 - parent: 8364 - type: Transform -- uid: 14704 - type: CableApcExtension - components: - - pos: -38.5,-27.5 - parent: 8364 - type: Transform -- uid: 14705 - type: CableApcExtension - components: - - pos: -32.5,-19.5 - parent: 8364 - type: Transform -- uid: 14706 - type: CableApcExtension - components: - - pos: -33.5,-19.5 - parent: 8364 - type: Transform -- uid: 14707 - type: CableApcExtension - components: - - pos: -34.5,-19.5 - parent: 8364 - type: Transform -- uid: 14708 - type: CableApcExtension - components: - - pos: -35.5,-19.5 - parent: 8364 - type: Transform -- uid: 14709 - type: CableApcExtension - components: - - pos: -36.5,-19.5 - parent: 8364 - type: Transform -- uid: 14710 - type: CableApcExtension - components: - - pos: -36.5,-21.5 - parent: 8364 - type: Transform -- uid: 14711 - type: CableApcExtension - components: - - pos: -36.5,-20.5 - parent: 8364 - type: Transform -- uid: 14712 - type: CableApcExtension - components: - - pos: -37.5,-21.5 - parent: 8364 - type: Transform -- uid: 14713 - type: CableApcExtension - components: - - pos: -38.5,-21.5 - parent: 8364 - type: Transform -- uid: 14714 - type: CableApcExtension - components: - - pos: -39.5,-21.5 - parent: 8364 - type: Transform -- uid: 14715 - type: CableApcExtension - components: - - pos: -40.5,-21.5 - parent: 8364 - type: Transform -- uid: 14716 - type: CableApcExtension - components: - - pos: -29.5,-34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14717 - type: CableApcExtension - components: - - pos: -29.5,-35.5 - parent: 8364 - type: Transform -- uid: 14718 - type: CableApcExtension - components: - - pos: -29.5,-36.5 - parent: 8364 - type: Transform -- uid: 14719 - type: CableApcExtension - components: - - pos: -29.5,-37.5 - parent: 8364 - type: Transform -- uid: 14720 - type: CableApcExtension - components: - - pos: -30.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14721 - type: CableApcExtension - components: - - pos: -31.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14722 - type: CableApcExtension - components: - - pos: -32.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14723 - type: AtmosFixPlasmaMarker - components: - - pos: 26.5,-48.5 - parent: 8364 - type: Transform -- uid: 14724 - type: AtmosFixPlasmaMarker - components: - - pos: 26.5,-47.5 - parent: 8364 - type: Transform -- uid: 14725 - type: CableApcExtension - components: - - pos: -33.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14726 - type: CableApcExtension - components: - - pos: -32.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14727 - type: AtmosFixPlasmaMarker - components: - - pos: 27.5,-48.5 - parent: 8364 - type: Transform -- uid: 14728 - type: CableApcExtension - components: - - pos: -33.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14729 - type: CableApcExtension - components: - - pos: -32.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14730 - type: CableApcExtension - components: - - pos: -31.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14731 - type: CableApcExtension - components: - - pos: -28.5,-37.5 - parent: 8364 - type: Transform -- uid: 14732 - type: CableApcExtension - components: - - pos: -27.5,-37.5 - parent: 8364 - type: Transform -- uid: 14733 - type: CableApcExtension - components: - - pos: -26.5,-37.5 - parent: 8364 - type: Transform -- uid: 14734 - type: CableApcExtension - components: - - pos: -25.5,-37.5 - parent: 8364 - type: Transform -- uid: 14735 - type: CableApcExtension - components: - - pos: -24.5,-37.5 - parent: 8364 - type: Transform -- uid: 14736 - type: CableApcExtension - components: - - pos: -25.5,-36.5 - parent: 8364 - type: Transform -- uid: 14737 - type: CableApcExtension - components: - - pos: -25.5,-35.5 - parent: 8364 - type: Transform -- uid: 14738 - type: CableApcExtension - components: - - pos: -25.5,-34.5 - parent: 8364 - type: Transform -- uid: 14739 - type: CableApcExtension - components: - - pos: -25.5,-33.5 - parent: 8364 - type: Transform -- uid: 14740 - type: CableApcExtension - components: - - pos: -25.5,-32.5 - parent: 8364 - type: Transform -- uid: 14741 - type: CableApcExtension - components: - - pos: -25.5,-31.5 - parent: 8364 - type: Transform -- uid: 14742 - type: CableApcExtension - components: - - pos: -25.5,-30.5 - parent: 8364 - type: Transform -- uid: 14743 - type: CableApcExtension - components: - - pos: -26.5,-30.5 - parent: 8364 - type: Transform -- uid: 14744 - type: CableApcExtension - components: - - pos: -27.5,-30.5 - parent: 8364 - type: Transform -- uid: 14745 - type: CableApcExtension - components: - - pos: -27.5,-38.5 - parent: 8364 - type: Transform -- uid: 14746 - type: CableApcExtension - components: - - pos: -27.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14747 - type: CableApcExtension - components: - - pos: -28.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14748 - type: CableApcExtension - components: - - pos: -26.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14749 - type: CableApcExtension - components: - - pos: -18.5,-30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14750 - type: CableApcExtension - components: - - pos: -19.5,-30.5 - parent: 8364 - type: Transform -- uid: 14751 - type: CableApcExtension - components: - - pos: -20.5,-30.5 - parent: 8364 - type: Transform -- uid: 14752 - type: CableApcExtension - components: - - pos: -21.5,-30.5 - parent: 8364 - type: Transform -- uid: 14753 - type: CableApcExtension - components: - - pos: -22.5,-30.5 - parent: 8364 - type: Transform -- uid: 14754 - type: CableApcExtension - components: - - pos: -23.5,-30.5 - parent: 8364 - type: Transform -- uid: 14755 - type: CableApcExtension - components: - - pos: -23.5,-29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14756 - type: CableApcExtension - components: - - pos: -23.5,-31.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14757 - type: Catwalk - components: - - pos: -26.5,-8.5 - parent: 8364 - type: Transform -- uid: 14758 - type: Catwalk - components: - - pos: -27.5,-8.5 - parent: 8364 - type: Transform -- uid: 14759 - type: CableApcExtension - components: - - pos: -35.5,-29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14760 - type: CableApcExtension - components: - - pos: -34.5,-29.5 - parent: 8364 - type: Transform -- uid: 14761 - type: CableApcExtension - components: - - pos: -34.5,-30.5 - parent: 8364 - type: Transform -- uid: 14762 - type: CableApcExtension - components: - - pos: -33.5,-30.5 - parent: 8364 - type: Transform -- uid: 14763 - type: CableApcExtension - components: - - pos: -32.5,-30.5 - parent: 8364 - type: Transform -- uid: 14764 - type: CableApcExtension - components: - - pos: -31.5,-30.5 - parent: 8364 - type: Transform -- uid: 14765 - type: CableApcExtension - components: - - pos: -30.5,-30.5 - parent: 8364 - type: Transform -- uid: 14766 - type: CableApcExtension - components: - - pos: -29.5,-30.5 - parent: 8364 - type: Transform -- uid: 14767 - type: CableApcExtension - components: - - pos: -29.5,-29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14768 - type: CableApcExtension - components: - - pos: -29.5,-31.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14769 - type: CableApcExtension - components: - - pos: -31.5,-29.5 - parent: 8364 - type: Transform -- uid: 14770 - type: CableApcExtension - components: - - pos: -31.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14771 - type: CableApcExtension - components: - - pos: -30.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14772 - type: CableApcExtension - components: - - pos: -31.5,-31.5 - parent: 8364 - type: Transform -- uid: 14773 - type: CableApcExtension - components: - - pos: -31.5,-32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14774 - type: CableApcExtension - components: - - pos: -32.5,-32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14775 - type: CableApcExtension - components: - - pos: -33.5,-32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14776 - type: CableApcExtension - components: - - pos: -35.5,-30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14777 - type: CableApcExtension - components: - - pos: -25.5,-20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14778 - type: CableApcExtension - components: - - pos: -26.5,-19.5 - parent: 8364 - type: Transform -- uid: 14779 - type: CableApcExtension - components: - - pos: -25.5,-19.5 - parent: 8364 - type: Transform -- uid: 14780 - type: CableApcExtension - components: - - pos: -23.5,-19.5 - parent: 8364 - type: Transform -- uid: 14781 - type: CableApcExtension - components: - - pos: -26.5,-18.5 - parent: 8364 - type: Transform -- uid: 14782 - type: CableApcExtension - components: - - pos: -23.5,-17.5 - parent: 8364 - type: Transform -- uid: 14783 - type: CableApcExtension - components: - - pos: -18.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14784 - type: CableApcExtension - components: - - pos: -18.5,-18.5 - parent: 8364 - type: Transform -- uid: 14785 - type: CableApcExtension - components: - - pos: -20.5,-18.5 - parent: 8364 - type: Transform -- uid: 14786 - type: CableApcExtension - components: - - pos: -23.5,-18.5 - parent: 8364 - type: Transform -- uid: 14787 - type: CableApcExtension - components: - - pos: -18.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14788 - type: CableApcExtension - components: - - pos: -18.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14789 - type: CableApcExtension - components: - - pos: -19.5,-18.5 - parent: 8364 - type: Transform -- uid: 14790 - type: CableApcExtension - components: - - pos: -21.5,-18.5 - parent: 8364 - type: Transform -- uid: 14791 - type: CableApcExtension - components: - - pos: -22.5,-18.5 - parent: 8364 - type: Transform -- uid: 14792 - type: CableApcExtension - components: - - pos: -26.5,-17.5 - parent: 8364 - type: Transform -- uid: 14793 - type: CableApcExtension - components: - - pos: -26.5,-16.5 - parent: 8364 - type: Transform -- uid: 14794 - type: CableApcExtension - components: - - pos: -24.5,-17.5 - parent: 8364 - type: Transform -- uid: 14795 - type: CableApcExtension - components: - - pos: -25.5,-17.5 - parent: 8364 - type: Transform -- uid: 14796 - type: CableApcExtension - components: - - pos: -28.5,-22.5 - parent: 8364 - type: Transform -- uid: 14797 - type: CableApcExtension - components: - - pos: -22.5,-26.5 - parent: 8364 - type: Transform -- uid: 14798 - type: CableApcExtension - components: - - pos: -24.5,-26.5 - parent: 8364 - type: Transform -- uid: 14799 - type: CableApcExtension - components: - - pos: -26.5,-26.5 - parent: 8364 - type: Transform -- uid: 14800 - type: CableApcExtension - components: - - pos: -27.5,-26.5 - parent: 8364 - type: Transform -- uid: 14801 - type: CableApcExtension - components: - - pos: -21.5,-21.5 - parent: 8364 - type: Transform -- uid: 14802 - type: CableApcExtension - components: - - pos: -21.5,-20.5 - parent: 8364 - type: Transform -- uid: 14803 - type: CableApcExtension - components: - - pos: -21.5,-19.5 - parent: 8364 - type: Transform -- uid: 14804 - type: CableApcExtension - components: - - pos: -20.5,-21.5 - parent: 8364 - type: Transform -- uid: 14805 - type: CableApcExtension - components: - - pos: -18.5,-24.5 - parent: 8364 - type: Transform -- uid: 14806 - type: CableApcExtension - components: - - pos: -18.5,-23.5 - parent: 8364 - type: Transform -- uid: 14807 - type: CableApcExtension - components: - - pos: -18.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14808 - type: CableApcExtension - components: - - pos: -18.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14809 - type: CableApcExtension - components: - - pos: -19.5,-21.5 - parent: 8364 - type: Transform -- uid: 14810 - type: CableApcExtension - components: - - pos: -21.5,-21.5 - parent: 8364 - type: Transform -- uid: 14811 - type: CableApcExtension - components: - - pos: -20.5,-23.5 - parent: 8364 - type: Transform -- uid: 14812 - type: CableApcExtension - components: - - pos: -20.5,-22.5 - parent: 8364 - type: Transform -- uid: 14813 - type: CableApcExtension - components: - - pos: -18.5,-26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14814 - type: CableApcExtension - components: - - pos: -18.5,-25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14815 - type: CableApcExtension - components: - - pos: -20.5,-24.5 - parent: 8364 - type: Transform -- uid: 14816 - type: CableApcExtension - components: - - pos: -25.5,-26.5 - parent: 8364 - type: Transform -- uid: 14817 - type: CableApcExtension - components: - - pos: -23.5,-26.5 - parent: 8364 - type: Transform -- uid: 14818 - type: CableApcExtension - components: - - pos: -21.5,-26.5 - parent: 8364 - type: Transform -- uid: 14819 - type: CableApcExtension - components: - - pos: -27.5,-25.5 - parent: 8364 - type: Transform -- uid: 14820 - type: CableApcExtension - components: - - pos: -20.5,-26.5 - parent: 8364 - type: Transform -- uid: 14821 - type: CableApcExtension - components: - - pos: -20.5,-25.5 - parent: 8364 - type: Transform -- uid: 14822 - type: CableApcExtension - components: - - pos: -23.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14823 - type: CableApcExtension - components: - - pos: -23.5,-25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14824 - type: CableApcExtension - components: - - pos: -23.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14825 - type: CableApcExtension - components: - - pos: -23.5,-20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14826 - type: CableApcExtension - components: - - pos: -24.5,-20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14827 - type: CableApcExtension - components: - - pos: -22.5,-20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14828 - type: CableApcExtension - components: - - pos: -27.5,-24.5 - parent: 8364 - type: Transform -- uid: 14829 - type: CableApcExtension - components: - - pos: -27.5,-23.5 - parent: 8364 - type: Transform -- uid: 14830 - type: CableApcExtension - components: - - pos: -27.5,-22.5 - parent: 8364 - type: Transform -- uid: 14831 - type: CableApcExtension - components: - - pos: -27.5,-21.5 - parent: 8364 - type: Transform -- uid: 14832 - type: CableApcExtension - components: - - pos: -27.5,-20.5 - parent: 8364 - type: Transform -- uid: 14833 - type: CableApcExtension - components: - - pos: -27.5,-19.5 - parent: 8364 - type: Transform -- uid: 14834 - type: CableApcExtension - components: - - pos: -28.5,-19.5 - parent: 8364 - type: Transform -- uid: 14835 - type: CableApcExtension - components: - - pos: -29.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14836 - type: CableApcExtension - components: - - pos: -29.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14837 - type: CableApcExtension - components: - - pos: -26.5,-22.5 - parent: 8364 - type: Transform -- uid: 14838 - type: CableApcExtension - components: - - pos: -23.5,-22.5 - parent: 8364 - type: Transform -- uid: 14839 - type: CableApcExtension - components: - - pos: -23.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14840 - type: CableApcExtension - components: - - pos: -25.5,-22.5 - parent: 8364 - type: Transform -- uid: 14841 - type: CableApcExtension - components: - - pos: -24.5,-22.5 - parent: 8364 - type: Transform -- uid: 14842 - type: CableApcExtension - components: - - pos: -19.5,-26.5 - parent: 8364 - type: Transform -- uid: 14843 - type: CableApcExtension - components: - - pos: -20.5,-29.5 - parent: 8364 - type: Transform -- uid: 14844 - type: CableApcExtension - components: - - pos: -20.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14845 - type: CableApcExtension - components: - - pos: -19.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14846 - type: CableApcExtension - components: - - pos: -21.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14847 - type: CableApcExtension - components: - - pos: -22.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14848 - type: CableMV - components: - - pos: -39.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14849 - type: CableMV - components: - - pos: -38.5,-20.5 - parent: 8364 - type: Transform -- uid: 14850 - type: CableMV - components: - - pos: -39.5,-21.5 - parent: 8364 - type: Transform -- uid: 14851 - type: CableMV - components: - - pos: -39.5,-22.5 - parent: 8364 - type: Transform -- uid: 14852 - type: CableMV - components: - - pos: -39.5,-23.5 - parent: 8364 - type: Transform -- uid: 14853 - type: CableMV - components: - - pos: -39.5,-24.5 - parent: 8364 - type: Transform -- uid: 14854 - type: CableMV - components: - - pos: -38.5,-24.5 - parent: 8364 - type: Transform -- uid: 14855 - type: CableMV - components: - - pos: -37.5,-24.5 - parent: 8364 - type: Transform -- uid: 14856 - type: CableMV - components: - - pos: -36.5,-24.5 - parent: 8364 - type: Transform -- uid: 14857 - type: CableMV - components: - - pos: -35.5,-24.5 - parent: 8364 - type: Transform -- uid: 14858 - type: CableMV - components: - - pos: -34.5,-24.5 - parent: 8364 - type: Transform -- uid: 14859 - type: CableMV - components: - - pos: -33.5,-24.5 - parent: 8364 - type: Transform -- uid: 14860 - type: CableMV - components: - - pos: -32.5,-24.5 - parent: 8364 - type: Transform -- uid: 14861 - type: CableMV - components: - - pos: -32.5,-25.5 - parent: 8364 - type: Transform -- uid: 14862 - type: CableMV - components: - - pos: -32.5,-26.5 - parent: 8364 - type: Transform -- uid: 14863 - type: CableMV - components: - - pos: -32.5,-27.5 - parent: 8364 - type: Transform -- uid: 14864 - type: CableMV - components: - - pos: -32.5,-28.5 - parent: 8364 - type: Transform -- uid: 14865 - type: CableMV - components: - - pos: -32.5,-29.5 - parent: 8364 - type: Transform -- uid: 14866 - type: CableMV - components: - - pos: -32.5,-30.5 - parent: 8364 - type: Transform -- uid: 14867 - type: CableMV - components: - - pos: -33.5,-29.5 - parent: 8364 - type: Transform -- uid: 14868 - type: CableMV - components: - - pos: -34.5,-29.5 - parent: 8364 - type: Transform -- uid: 14869 - type: CableMV - components: - - pos: -35.5,-29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14870 - type: CableMV - components: - - pos: -38.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14871 - type: CableMV - components: - - pos: -31.5,-30.5 - parent: 8364 - type: Transform -- uid: 14872 - type: CableMV - components: - - pos: -30.5,-30.5 - parent: 8364 - type: Transform -- uid: 14873 - type: CableMV - components: - - pos: -29.5,-30.5 - parent: 8364 - type: Transform -- uid: 14874 - type: CableMV - components: - - pos: -28.5,-30.5 - parent: 8364 - type: Transform -- uid: 14875 - type: CableMV - components: - - pos: -27.5,-30.5 - parent: 8364 - type: Transform -- uid: 14876 - type: CableMV - components: - - pos: -26.5,-30.5 - parent: 8364 - type: Transform -- uid: 14877 - type: CableMV - components: - - pos: -26.5,-31.5 - parent: 8364 - type: Transform -- uid: 14878 - type: CableMV - components: - - pos: -26.5,-32.5 - parent: 8364 - type: Transform -- uid: 14879 - type: CableMV - components: - - pos: -26.5,-33.5 - parent: 8364 - type: Transform -- uid: 14880 - type: CableMV - components: - - pos: -26.5,-34.5 - parent: 8364 - type: Transform -- uid: 14881 - type: CableMV - components: - - pos: -27.5,-34.5 - parent: 8364 - type: Transform -- uid: 14882 - type: CableMV - components: - - pos: -28.5,-34.5 - parent: 8364 - type: Transform -- uid: 14883 - type: CableMV - components: - - pos: -29.5,-34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14884 - type: CableMV - components: - - pos: -25.5,-30.5 - parent: 8364 - type: Transform -- uid: 14885 - type: CableMV - components: - - pos: -24.5,-30.5 - parent: 8364 - type: Transform -- uid: 14886 - type: CableMV - components: - - pos: -23.5,-30.5 - parent: 8364 - type: Transform -- uid: 14887 - type: CableMV - components: - - pos: -22.5,-30.5 - parent: 8364 - type: Transform -- uid: 14888 - type: CableMV - components: - - pos: -21.5,-30.5 - parent: 8364 - type: Transform -- uid: 14889 - type: CableMV - components: - - pos: -20.5,-30.5 - parent: 8364 - type: Transform -- uid: 14890 - type: CableMV - components: - - pos: -19.5,-30.5 - parent: 8364 - type: Transform -- uid: 14891 - type: CableMV - components: - - pos: -18.5,-30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14892 - type: CableMV - components: - - pos: -25.5,-29.5 - parent: 8364 - type: Transform -- uid: 14893 - type: CableMV - components: - - pos: -25.5,-28.5 - parent: 8364 - type: Transform -- uid: 14894 - type: CableMV - components: - - pos: -25.5,-27.5 - parent: 8364 - type: Transform -- uid: 14895 - type: CableMV - components: - - pos: -25.5,-26.5 - parent: 8364 - type: Transform -- uid: 14896 - type: CableMV - components: - - pos: -25.5,-25.5 - parent: 8364 - type: Transform -- uid: 14897 - type: CableMV - components: - - pos: -25.5,-24.5 - parent: 8364 - type: Transform -- uid: 14898 - type: CableMV - components: - - pos: -25.5,-23.5 - parent: 8364 - type: Transform -- uid: 14899 - type: CableMV - components: - - pos: -25.5,-22.5 - parent: 8364 - type: Transform -- uid: 14900 - type: CableMV - components: - - pos: -25.5,-21.5 - parent: 8364 - type: Transform -- uid: 14901 - type: CableMV - components: - - pos: -25.5,-20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14902 - type: Rack - components: - - pos: -21.5,-36.5 - parent: 8364 - type: Transform -- uid: 14903 - type: CableMV - components: - - pos: -37.5,-20.5 - parent: 8364 - type: Transform -- uid: 14904 - type: CableMV - components: - - pos: -36.5,-20.5 - parent: 8364 - type: Transform -- uid: 14905 - type: CableMV - components: - - pos: -35.5,-20.5 - parent: 8364 - type: Transform -- uid: 14906 - type: CableMV - components: - - pos: -34.5,-20.5 - parent: 8364 - type: Transform -- uid: 14907 - type: CableMV - components: - - pos: -33.5,-20.5 - parent: 8364 - type: Transform -- uid: 14908 - type: CableMV - components: - - pos: -32.5,-20.5 - parent: 8364 - type: Transform -- uid: 14909 - type: CableMV - components: - - pos: -31.5,-20.5 - parent: 8364 - type: Transform -- uid: 14910 - type: CableMV - components: - - pos: -30.5,-20.5 - parent: 8364 - type: Transform -- uid: 14911 - type: CableMV - components: - - pos: -29.5,-20.5 - parent: 8364 - type: Transform -- uid: 14912 - type: CableMV - components: - - pos: -28.5,-20.5 - parent: 8364 - type: Transform -- uid: 14913 - type: CableMV - components: - - pos: -27.5,-20.5 - parent: 8364 - type: Transform -- uid: 14914 - type: CableMV - components: - - pos: -26.5,-20.5 - parent: 8364 - type: Transform -- uid: 14915 - type: CableMV - components: - - pos: -38.5,-21.5 - parent: 8364 - type: Transform -- uid: 14916 - type: CableApcExtension - components: - - pos: -3.5,-13.5 - parent: 8364 - type: Transform -- uid: 14917 - type: DisposalPipe - components: - - pos: -0.5,-55.5 - parent: 8364 - type: Transform -- uid: 14918 - type: CableApcExtension - components: - - pos: 1.5,-16.5 - parent: 8364 - type: Transform -- uid: 14919 - type: CableMV - components: - - pos: 1.5,-24.5 - parent: 8364 - type: Transform -- uid: 14920 - type: Table - components: - - pos: -4.5,-11.5 - parent: 8364 - type: Transform -- uid: 14921 - type: FirelockGlass - components: - - pos: -13.5,11.5 - parent: 8364 - type: Transform -- uid: 14922 - type: Catwalk - components: - - pos: -29.5,-8.5 - parent: 8364 - type: Transform -- uid: 14923 - type: Catwalk - components: - - pos: -30.5,-8.5 - parent: 8364 - type: Transform -- uid: 14924 - type: Catwalk - components: - - pos: -31.5,-8.5 - parent: 8364 - type: Transform -- uid: 14925 - type: CableHV - components: - - pos: -24.5,-64.5 - parent: 8364 - type: Transform -- uid: 14926 - type: AirlockEngineeringLocked - components: - - pos: -27.5,-65.5 - parent: 8364 - type: Transform -- uid: 14927 - type: PosterContrabandEAT - components: - - pos: -34.5,-44.5 - parent: 8364 - type: Transform -- uid: 14928 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -42.5,1.5 - parent: 8364 - type: Transform -- uid: 14929 - type: WallReinforced - components: - - pos: -19.5,-66.5 - parent: 8364 - type: Transform -- uid: 14930 - type: Catwalk - components: - - pos: -32.5,-8.5 - parent: 8364 - type: Transform -- uid: 14931 - type: Catwalk - components: - - pos: -33.5,-8.5 - parent: 8364 - type: Transform -- uid: 14932 - type: Catwalk - components: - - pos: -34.5,-8.5 - parent: 8364 - type: Transform -- uid: 14933 - type: Catwalk - components: - - pos: -34.5,-9.5 - parent: 8364 - type: Transform -- uid: 14934 - type: Catwalk - components: - - pos: -34.5,-10.5 - parent: 8364 - type: Transform -- uid: 14935 - type: Catwalk - components: - - pos: -34.5,-11.5 - parent: 8364 - type: Transform -- uid: 14936 - type: Catwalk - components: - - pos: -34.5,-12.5 - parent: 8364 - type: Transform -- uid: 14937 - type: Catwalk - components: - - pos: -34.5,-13.5 - parent: 8364 - type: Transform -- uid: 14938 - type: FirelockGlass - components: - - pos: -34.5,-14.5 - parent: 8364 - type: Transform -- uid: 14939 - type: Catwalk - components: - - pos: -34.5,-15.5 - parent: 8364 - type: Transform -- uid: 14940 - type: Catwalk - components: - - pos: -34.5,-16.5 - parent: 8364 - type: Transform -- uid: 14941 - type: Catwalk - components: - - pos: -35.5,-16.5 - parent: 8364 - type: Transform -- uid: 14942 - type: Catwalk - components: - - pos: -36.5,-16.5 - parent: 8364 - type: Transform -- uid: 14943 - type: Catwalk - components: - - pos: -37.5,-16.5 - parent: 8364 - type: Transform -- uid: 14944 - type: Poweredlight - components: - - pos: -33.5,-18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14945 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -33.5,-27.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14946 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-23.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14947 - type: Poweredlight - components: - - pos: -38.5,-20.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14948 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-23.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14949 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-16.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14950 - type: Poweredlight - components: - - pos: -20.5,-21.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14951 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-30.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14952 - type: Poweredlight - components: - - pos: -27.5,-29.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14953 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-35.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14954 - type: PoweredSmallLight - components: - - pos: -31.5,-36.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14955 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-16.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14956 - type: MopBucket - components: - - pos: -51.546043,-8.527111 - parent: 8364 - type: Transform -- uid: 14957 - type: WindoorCargoLocked - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-17.5 - parent: 8364 - type: Transform -- uid: 14958 - type: WindoorCargoLocked - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-15.5 - parent: 8364 - type: Transform -- uid: 14959 - type: Table - components: - - pos: -19.5,-16.5 - parent: 8364 - type: Transform -- uid: 14960 - type: Table - components: - - pos: -19.5,-17.5 - parent: 8364 - type: Transform -- uid: 14961 - type: Table - components: - - pos: -19.5,-19.5 - parent: 8364 - type: Transform -- uid: 14962 - type: Catwalk - components: - - pos: -38.5,-16.5 - parent: 8364 - type: Transform -- uid: 14963 - type: Table - components: - - pos: -28.5,-27.5 - parent: 8364 - type: Transform -- uid: 14964 - type: Table - components: - - pos: -28.5,-26.5 - parent: 8364 - type: Transform -- uid: 14965 - type: Table - components: - - pos: -28.5,-25.5 - parent: 8364 - type: Transform -- uid: 14966 - type: Table - components: - - pos: -25.5,-21.5 - parent: 8364 - type: Transform -- uid: 14967 - type: Table - components: - - pos: -24.5,-21.5 - parent: 8364 - type: Transform -- uid: 14968 - type: Table - components: - - pos: -37.5,-18.5 - parent: 8364 - type: Transform -- uid: 14969 - type: Table - components: - - pos: -36.5,-18.5 - parent: 8364 - type: Transform -- uid: 14970 - type: Table - components: - - pos: -35.5,-18.5 - parent: 8364 - type: Transform -- uid: 14971 - type: Table - components: - - pos: -32.5,-31.5 - parent: 8364 - type: Transform -- uid: 14972 - type: Table - components: - - pos: -31.5,-31.5 - parent: 8364 - type: Transform -- uid: 14973 - type: Catwalk - components: - - pos: -39.5,-16.5 - parent: 8364 - type: Transform -- uid: 14974 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 40.5,-27.5 - parent: 8364 - type: Transform -- uid: 14975 - type: Table - components: - - pos: -28.5,-33.5 - parent: 8364 - type: Transform -- uid: 14976 - type: BoxFolderYellow - components: - - pos: -28.5,-33.5 - parent: 8364 - type: Transform -- uid: 14977 - type: Table - components: - - pos: -22.5,-29.5 - parent: 8364 - type: Transform -- uid: 14978 - type: Table - components: - - pos: -21.5,-29.5 - parent: 8364 - type: Transform -- uid: 14979 - type: Table - components: - - pos: -20.5,-29.5 - parent: 8364 - type: Transform -- uid: 14980 - type: Table - components: - - pos: -19.5,-29.5 - parent: 8364 - type: Transform -- uid: 14981 - type: TableReinforced - components: - - pos: -23.5,-22.5 - parent: 8364 - type: Transform -- uid: 14982 - type: TableReinforced - components: - - pos: -18.5,-18.5 - parent: 8364 - type: Transform -- uid: 14983 - type: WindoorCargoLocked - components: - - name: Delivery Desk - type: MetaData - - rot: -1.5707963267948966 rad - pos: -18.5,-18.5 - parent: 8364 - type: Transform -- uid: 14984 - type: WindoorCargoLocked - components: - - name: Cargo Desk - type: MetaData - - rot: -1.5707963267948966 rad - pos: -23.5,-22.5 - parent: 8364 - type: Transform -- uid: 14985 - type: DisposalUnit - components: - - pos: 41.5,-26.5 - parent: 8364 - type: Transform -- uid: 14986 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-27.5 - parent: 8364 - type: Transform -- uid: 14987 - type: AirlockCargoGlassLocked - components: - - name: Delivery Office - type: MetaData - - pos: -21.5,-20.5 - parent: 8364 - type: Transform -- uid: 14988 - type: AirlockCargoGlassLocked - components: - - name: Cargo Office - type: MetaData - - pos: -23.5,-24.5 - parent: 8364 - type: Transform -- uid: 14989 - type: AirlockCargoGlassLocked - components: - - name: Cargo Office - type: MetaData - - pos: -23.5,-26.5 - parent: 8364 - type: Transform -- uid: 14990 - type: AirlockCargoGlassLocked - components: - - name: Salvage - type: MetaData - - pos: -25.5,-28.5 - parent: 8364 - type: Transform -- uid: 14991 - type: WindowTintedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 31.5,12.5 - parent: 8364 - type: Transform -- uid: 14992 - type: Catwalk - components: - - pos: -42.5,-18.5 - parent: 8364 - type: Transform -- uid: 14993 - type: AirlockCargoGlassLocked - components: - - name: Cargo Bay - type: MetaData - - pos: -29.5,-21.5 - parent: 8364 - type: Transform -- uid: 14994 - type: AirlockCargoGlassLocked - components: - - name: Cargo Bay - type: MetaData - - pos: -29.5,-20.5 - parent: 8364 - type: Transform -- uid: 14995 - type: AirlockCargoGlassLocked - components: - - name: Cargo Office - type: MetaData - - pos: -25.5,-19.5 - parent: 8364 - type: Transform -- uid: 14996 - type: AirlockSecurityGlassLocked - components: - - name: Security Office - type: MetaData - - pos: -23.5,-30.5 - parent: 8364 - type: Transform -- uid: 14997 - type: Catwalk - components: - - pos: -43.5,-18.5 - parent: 8364 - type: Transform -- uid: 14998 - type: Catwalk - components: - - pos: -44.5,-18.5 - parent: 8364 - type: Transform -- uid: 14999 - type: CableApcExtension - components: - - pos: -24.5,-27.5 - parent: 8364 - type: Transform -- uid: 15000 - type: CableApcExtension - components: - - pos: -24.5,-28.5 - parent: 8364 - type: Transform -- uid: 15001 - type: AirlockMaintCargoLocked - components: - - name: Salvage Maintenance - type: MetaData - - pos: -22.5,-33.5 - parent: 8364 - type: Transform -- uid: 15002 - type: AirlockExternalGlassCargoLocked - components: - - pos: -30.5,-37.5 - parent: 8364 - type: Transform -- uid: 15003 - type: AtmosFixPlasmaMarker - components: - - pos: 27.5,-47.5 - parent: 8364 - type: Transform -- uid: 15004 - type: ReinforcedWindow - components: - - pos: -30.5,-36.5 - parent: 8364 - type: Transform -- uid: 15005 - type: ReinforcedWindow - components: - - pos: -30.5,-38.5 - parent: 8364 - type: Transform -- uid: 15006 - type: Catwalk - components: - - pos: -45.5,-18.5 - parent: 8364 - type: Transform -- uid: 15007 - type: Catwalk - components: - - pos: -46.5,-18.5 - parent: 8364 - type: Transform -- uid: 15008 - type: Catwalk - components: - - pos: -47.5,-18.5 - parent: 8364 - type: Transform -- uid: 15009 - type: Catwalk - components: - - pos: -48.5,-18.5 - parent: 8364 - type: Transform -- uid: 15010 - type: FirelockGlass - components: - - pos: -49.5,-18.5 - parent: 8364 - type: Transform -- uid: 15011 - type: Catwalk - components: - - pos: -25.5,1.5 - parent: 8364 - type: Transform -- uid: 15012 - type: Catwalk - components: - - pos: -50.5,-17.5 - parent: 8364 - type: Transform -- uid: 15013 - type: Catwalk - components: - - pos: -50.5,-16.5 - parent: 8364 - type: Transform -- uid: 15014 - type: Catwalk - components: - - pos: -50.5,-15.5 - parent: 8364 - type: Transform -- uid: 15015 - type: Catwalk - components: - - pos: -50.5,-14.5 - parent: 8364 - type: Transform -- uid: 15016 - type: Catwalk - components: - - pos: -50.5,-13.5 - parent: 8364 - type: Transform -- uid: 15017 - type: Catwalk - components: - - pos: -50.5,-12.5 - parent: 8364 - type: Transform -- uid: 15018 - type: Catwalk - components: - - pos: -50.5,-11.5 - parent: 8364 - type: Transform -- uid: 15019 - type: Catwalk - components: - - pos: -50.5,-10.5 - parent: 8364 - type: Transform -- uid: 15020 - type: Sink - components: - - pos: -26.5,-5.5 - parent: 8364 - type: Transform -- uid: 15021 - type: Catwalk - components: - - pos: -13.5,-19.5 - parent: 8364 - type: Transform -- uid: 15022 - type: Catwalk - components: - - pos: -12.5,-19.5 - parent: 8364 - type: Transform -- uid: 15023 - type: CableMV - components: - - pos: -40.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15024 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-36.5 - parent: 8364 - type: Transform -- uid: 15025 - type: CableMV - components: - - pos: -20.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15026 - type: CableMV - components: - - pos: -19.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15027 - type: CableMV - components: - - pos: -18.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15028 - type: CableMV - components: - - pos: -17.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15029 - type: CableMV - components: - - pos: -17.5,-34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15030 - type: CableMV - components: - - pos: -17.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15031 - type: CableMV - components: - - pos: -18.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15032 - type: CableMV - components: - - pos: -19.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15033 - type: CableMV - components: - - pos: -20.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15034 - type: CableMV - components: - - pos: -21.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15035 - type: CableMV - components: - - pos: -22.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15036 - type: CableMV - components: - - pos: -23.5,-33.5 - parent: 8364 - type: Transform -- uid: 15037 - type: CableMV - components: - - pos: -24.5,-33.5 - parent: 8364 - type: Transform -- uid: 15038 - type: CableMV - components: - - pos: -25.5,-33.5 - parent: 8364 - type: Transform -- uid: 15039 - type: CableMV - components: - - pos: -17.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15040 - type: CableMV - components: - - pos: -17.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15041 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-35.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15042 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-38.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15043 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-33.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15044 - type: FirelockGlass - components: - - pos: 60.5,11.5 - parent: 8364 - type: Transform -- uid: 15045 - type: GasPort - components: - - pos: -20.5,-38.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15046 - type: GasPort - components: - - pos: -21.5,-38.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15047 - type: Catwalk - components: - - pos: -11.5,-19.5 - parent: 8364 - type: Transform -- uid: 15048 - type: AirCanister - components: - - pos: -21.5,-38.5 - parent: 8364 - type: Transform -- uid: 15049 - type: Rack - components: - - pos: -21.5,-40.5 - parent: 8364 - type: Transform -- uid: 15050 - type: Wrench - components: - - pos: -21.530937,-40.42064 - parent: 8364 - type: Transform -- uid: 15051 - type: AirlockEngineeringLocked - components: - - name: Cargo Power - type: MetaData - - pos: -19.5,-35.5 - parent: 8364 - type: Transform -- uid: 15052 - type: AirlockGlass - components: - - pos: 26.5,1.5 - parent: 8364 - type: Transform -- uid: 15053 - type: ChairWood - components: - - pos: 45.5,-70.5 - parent: 8364 - type: Transform -- uid: 15054 - type: AirlockGlass - components: - - pos: 26.5,7.5 - parent: 8364 - type: Transform -- uid: 15055 - type: PoweredSmallLight - components: - - pos: -32.5,-43.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15056 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-44.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15057 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-48.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15058 - type: ChairWood - components: - - pos: 41.5,-71.5 - parent: 8364 - type: Transform -- uid: 15059 - type: AirlockGlass - components: - - pos: 25.5,7.5 - parent: 8364 - type: Transform -- uid: 15060 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-59.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15061 - type: PoweredSmallLight - components: - - pos: -14.5,-59.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15062 - type: Railing - components: - - pos: -25.5,-56.5 - parent: 8364 - type: Transform -- uid: 15063 - type: PoweredSmallLight - components: - - pos: -30.5,-60.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15064 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-54.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15065 - type: PoweredSmallLight - components: - - pos: -24.5,-60.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15066 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-62.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15067 - type: AirlockGlass - components: - - pos: 24.5,7.5 - parent: 8364 - type: Transform -- uid: 15068 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-73.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15069 - type: PaintingCafeTerraceAtNight - components: - - pos: -9.5,-20.5 - parent: 8364 - type: Transform -- uid: 15070 - type: CableApcExtension - components: - - pos: -17.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15071 - type: CableApcExtension - components: - - pos: -17.5,-34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15072 - type: CableApcExtension - components: - - pos: -17.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15073 - type: CableApcExtension - components: - - pos: -18.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15074 - type: CableApcExtension - components: - - pos: -19.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15075 - type: CableApcExtension - components: - - pos: -20.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15076 - type: CableApcExtension - components: - - pos: -17.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15077 - type: CableApcExtension - components: - - pos: -17.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15078 - type: CableApcExtension - components: - - pos: -17.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15079 - type: CableApcExtension - components: - - pos: -17.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15080 - type: CableApcExtension - components: - - pos: -17.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15081 - type: CableApcExtension - components: - - pos: -17.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15082 - type: CableApcExtension - components: - - pos: -17.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15083 - type: CableApcExtension - components: - - pos: -17.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15084 - type: CableApcExtension - components: - - pos: -17.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15085 - type: CableApcExtension - components: - - pos: -17.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15086 - type: CableApcExtension - components: - - pos: -17.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15087 - type: CableApcExtension - components: - - pos: -17.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15088 - type: CableApcExtension - components: - - pos: -16.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15089 - type: CableApcExtension - components: - - pos: -15.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15090 - type: CableApcExtension - components: - - pos: -14.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15091 - type: CableApcExtension - components: - - pos: -13.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15092 - type: CableApcExtension - components: - - pos: -12.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15093 - type: CableApcExtension - components: - - pos: -11.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15094 - type: CableApcExtension - components: - - pos: -10.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15095 - type: CableApcExtension - components: - - pos: -9.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15096 - type: CableApcExtension - components: - - pos: -8.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15097 - type: CableApcExtension - components: - - pos: -7.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15098 - type: CableApcExtension - components: - - pos: -6.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15099 - type: CableApcExtension - components: - - pos: -5.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15100 - type: CableApcExtension - components: - - pos: -4.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15101 - type: CableApcExtension - components: - - pos: -3.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15102 - type: CableApcExtension - components: - - pos: -3.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15103 - type: CableApcExtension - components: - - pos: -3.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15104 - type: CableApcExtension - components: - - pos: -3.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15105 - type: CableApcExtension - components: - - pos: -3.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15106 - type: CableApcExtension - components: - - pos: -3.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15107 - type: CableApcExtension - components: - - pos: -12.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15108 - type: CableApcExtension - components: - - pos: -12.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15109 - type: CableApcExtension - components: - - pos: -18.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15110 - type: CableApcExtension - components: - - pos: -18.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15111 - type: CableApcExtension - components: - - pos: -18.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15112 - type: CableApcExtension - components: - - pos: -18.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15113 - type: CableApcExtension - components: - - pos: -18.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15114 - type: CableApcExtension - components: - - pos: -18.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15115 - type: CableApcExtension - components: - - pos: -18.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15116 - type: CableApcExtension - components: - - pos: -18.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15117 - type: CableApcExtension - components: - - pos: -18.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15118 - type: CableApcExtension - components: - - pos: -18.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15119 - type: CableApcExtension - components: - - pos: -18.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15120 - type: CableApcExtension - components: - - pos: -18.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15121 - type: CableApcExtension - components: - - pos: -18.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15122 - type: CableApcExtension - components: - - pos: -18.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15123 - type: CableApcExtension - components: - - pos: -17.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15124 - type: CableApcExtension - components: - - pos: -16.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15125 - type: CableApcExtension - components: - - pos: -15.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15126 - type: CableApcExtension - components: - - pos: -15.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15127 - type: CableApcExtension - components: - - pos: -14.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15128 - type: CableApcExtension - components: - - pos: -13.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15129 - type: CableApcExtension - components: - - pos: -12.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15130 - type: CableApcExtension - components: - - pos: -11.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15131 - type: CableApcExtension - components: - - pos: -10.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15132 - type: CableApcExtension - components: - - pos: -9.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15133 - type: CableApcExtension - components: - - pos: -8.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15134 - type: CableApcExtension - components: - - pos: -7.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15135 - type: CableApcExtension - components: - - pos: -6.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15136 - type: CableApcExtension - components: - - pos: -5.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15137 - type: CableApcExtension - components: - - pos: -4.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15138 - type: CableApcExtension - components: - - pos: -3.5,-59.5 - parent: 8364 - type: Transform -- uid: 15139 - type: CableApcExtension - components: - - pos: -2.5,-59.5 - parent: 8364 - type: Transform -- uid: 15140 - type: CableApcExtension - components: - - pos: -1.5,-59.5 - parent: 8364 - type: Transform -- uid: 15141 - type: CableApcExtension - components: - - pos: -15.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15142 - type: CableApcExtension - components: - - pos: -15.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15143 - type: CableApcExtension - components: - - pos: -15.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15144 - type: CableApcExtension - components: - - pos: -15.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15145 - type: CableApcExtension - components: - - pos: -15.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15146 - type: CableApcExtension - components: - - pos: -16.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15147 - type: CableApcExtension - components: - - pos: -17.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15148 - type: CableApcExtension - components: - - pos: -17.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15149 - type: CableApcExtension - components: - - pos: -19.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15150 - type: CableApcExtension - components: - - pos: -20.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15151 - type: CableApcExtension - components: - - pos: -21.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15152 - type: CableApcExtension - components: - - pos: -22.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15153 - type: CableApcExtension - components: - - pos: -23.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15154 - type: CableApcExtension - components: - - pos: -24.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15155 - type: CableApcExtension - components: - - pos: -25.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15156 - type: CableApcExtension - components: - - pos: -26.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15157 - type: CableApcExtension - components: - - pos: -27.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15158 - type: CableApcExtension - components: - - pos: -28.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15159 - type: CableApcExtension - components: - - pos: -29.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15160 - type: CableApcExtension - components: - - pos: -30.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15161 - type: CableApcExtension - components: - - pos: -31.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15162 - type: CableApcExtension - components: - - pos: -31.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15163 - type: CableApcExtension - components: - - pos: -31.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15164 - type: CableApcExtension - components: - - pos: -31.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15165 - type: CableApcExtension - components: - - pos: -31.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15166 - type: CableApcExtension - components: - - pos: -31.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15167 - type: CableApcExtension - components: - - pos: -31.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15168 - type: CableApcExtension - components: - - pos: -31.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15169 - type: CableApcExtension - components: - - pos: -31.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15170 - type: CableApcExtension - components: - - pos: -31.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15171 - type: CableApcExtension - components: - - pos: -31.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15172 - type: CableApcExtension - components: - - pos: -31.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15173 - type: CableApcExtension - components: - - pos: -31.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15174 - type: CableApcExtension - components: - - pos: -31.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15175 - type: CableApcExtension - components: - - pos: -30.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15176 - type: CableApcExtension - components: - - pos: -29.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15177 - type: CableApcExtension - components: - - pos: -19.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15178 - type: CableApcExtension - components: - - pos: -20.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15179 - type: CableApcExtension - components: - - pos: -21.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15180 - type: CableApcExtension - components: - - pos: -22.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15181 - type: CableApcExtension - components: - - pos: -23.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15182 - type: CableApcExtension - components: - - pos: -24.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15183 - type: CableApcExtension - components: - - pos: -25.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15184 - type: CableApcExtension - components: - - pos: -26.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15185 - type: CableApcExtension - components: - - pos: -27.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15186 - type: CableApcExtension - components: - - pos: -28.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15187 - type: CableApcExtension - components: - - pos: -29.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15188 - type: CableApcExtension - components: - - pos: -30.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15189 - type: CableApcExtension - components: - - pos: -31.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15190 - type: CableApcExtension - components: - - pos: -18.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15191 - type: CableApcExtension - components: - - pos: -19.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15192 - type: CableApcExtension - components: - - pos: -20.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15193 - type: CableApcExtension - components: - - pos: -21.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15194 - type: CableApcExtension - components: - - pos: -21.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15195 - type: CableApcExtension - components: - - pos: -22.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15196 - type: CableApcExtension - components: - - pos: -23.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15197 - type: CableApcExtension - components: - - pos: -23.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15198 - type: CableApcExtension - components: - - pos: -24.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15199 - type: CableApcExtension - components: - - pos: -25.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15200 - type: CableApcExtension - components: - - pos: -26.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15201 - type: CableApcExtension - components: - - pos: -27.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15202 - type: CableApcExtension - components: - - pos: -28.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15203 - type: CableApcExtension - components: - - pos: -29.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15204 - type: CableApcExtension - components: - - pos: -30.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15205 - type: CableApcExtension - components: - - pos: -31.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15206 - type: CableApcExtension - components: - - pos: -32.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15207 - type: CableApcExtension - components: - - pos: -33.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15208 - type: WallSolid - components: - - pos: -34.5,-44.5 - parent: 8364 - type: Transform -- uid: 15209 - type: CableApcExtension - components: - - pos: -35.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15210 - type: CableApcExtension - components: - - pos: -36.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15211 - type: CableApcExtension - components: - - pos: -37.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15212 - type: CableApcExtension - components: - - pos: -16.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15213 - type: CableApcExtension - components: - - pos: -16.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15214 - type: CableApcExtension - components: - - pos: -16.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15215 - type: CableApcExtension - components: - - pos: -16.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15216 - type: CableApcExtension - components: - - pos: -16.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15217 - type: CableApcExtension - components: - - pos: -16.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15218 - type: CableApcExtension - components: - - pos: -16.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15219 - type: CableApcExtension - components: - - pos: -16.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15220 - type: CableApcExtension - components: - - pos: -16.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15221 - type: CableApcExtension - components: - - pos: -18.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15222 - type: CableApcExtension - components: - - pos: -18.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15223 - type: CableApcExtension - components: - - pos: -20.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15224 - type: CableApcExtension - components: - - pos: -21.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15225 - type: CableApcExtension - components: - - pos: -22.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15226 - type: CableApcExtension - components: - - pos: -22.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15227 - type: CableApcExtension - components: - - pos: -21.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15228 - type: CableApcExtension - components: - - pos: -23.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15229 - type: CableApcExtension - components: - - pos: -21.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15230 - type: CableApcExtension - components: - - pos: -22.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15231 - type: CableApcExtension - components: - - pos: -23.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15232 - type: CableApcExtension - components: - - pos: -24.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15233 - type: CableApcExtension - components: - - pos: -25.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15234 - type: CableApcExtension - components: - - pos: -26.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15235 - type: CableApcExtension - components: - - pos: -27.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15236 - type: CableApcExtension - components: - - pos: -28.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15237 - type: CableApcExtension - components: - - pos: -29.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15238 - type: CableApcExtension - components: - - pos: -29.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15239 - type: CableApcExtension - components: - - pos: -28.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15240 - type: CableApcExtension - components: - - pos: -28.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15241 - type: CableApcExtension - components: - - pos: -32.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15242 - type: CableApcExtension - components: - - pos: -32.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15243 - type: CableApcExtension - components: - - pos: -32.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15244 - type: CableApcExtension - components: - - pos: -32.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15245 - type: CableApcExtension - components: - - pos: -30.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15246 - type: CableApcExtension - components: - - pos: -30.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15247 - type: CableApcExtension - components: - - pos: -30.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15248 - type: CableApcExtension - components: - - pos: -30.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15249 - type: CableApcExtension - components: - - pos: -32.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15250 - type: CableApcExtension - components: - - pos: -33.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15251 - type: CableApcExtension - components: - - pos: -33.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15252 - type: CableApcExtension - components: - - pos: -33.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15253 - type: CableApcExtension - components: - - pos: -32.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15254 - type: CableApcExtension - components: - - pos: -31.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15255 - type: CableApcExtension - components: - - pos: -30.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15256 - type: CableApcExtension - components: - - pos: -27.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15257 - type: CableApcExtension - components: - - pos: -28.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15258 - type: CableApcExtension - components: - - pos: -27.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15259 - type: CableApcExtension - components: - - pos: -26.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15260 - type: CableApcExtension - components: - - pos: -25.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15261 - type: CableApcExtension - components: - - pos: -35.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15262 - type: CableApcExtension - components: - - pos: -35.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15263 - type: CableApcExtension - components: - - pos: -37.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15264 - type: CableApcExtension - components: - - pos: -37.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15265 - type: CableApcExtension - components: - - pos: -37.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15266 - type: CableApcExtension - components: - - pos: -38.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15267 - type: CableApcExtension - components: - - pos: -39.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15268 - type: CableApcExtension - components: - - pos: -18.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15269 - type: CableApcExtension - components: - - pos: -19.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15270 - type: CableApcExtension - components: - - pos: -20.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15271 - type: CableApcExtension - components: - - pos: -21.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15272 - type: CableApcExtension - components: - - pos: -21.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15273 - type: CableApcExtension - components: - - pos: -22.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15274 - type: CableApcExtension - components: - - pos: -12.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15275 - type: CableApcExtension - components: - - pos: -12.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15276 - type: CableApcExtension - components: - - pos: -13.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15277 - type: CableApcExtension - components: - - pos: -13.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15278 - type: PaintingTheGreatWave - components: - - pos: 10.5,-19.5 - parent: 8364 - type: Transform -- uid: 15279 - type: CableApcExtension - components: - - pos: -37.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15280 - type: CableApcExtension - components: - - pos: -37.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15281 - type: Rack - components: - - pos: -36.5,-62.5 - parent: 8364 - type: Transform -- uid: 15282 - type: CableMV - components: - - pos: -37.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15283 - type: CableApcExtension - components: - - pos: -37.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15284 - type: CableApcExtension - components: - - pos: -38.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15285 - type: CableApcExtension - components: - - pos: -39.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15286 - type: CableApcExtension - components: - - pos: -32.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15287 - type: CableApcExtension - components: - - pos: -32.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15288 - type: CableApcExtension - components: - - pos: -41.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15289 - type: CableApcExtension - components: - - pos: -40.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15290 - type: CableApcExtension - components: - - pos: -39.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15291 - type: CableApcExtension - components: - - pos: -39.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15292 - type: CableApcExtension - components: - - pos: -32.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15293 - type: CableApcExtension - components: - - pos: -32.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15294 - type: CableApcExtension - components: - - pos: -33.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15295 - type: CableApcExtension - components: - - pos: -34.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15296 - type: CableApcExtension - components: - - pos: -35.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15297 - type: CableApcExtension - components: - - pos: -36.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15298 - type: WallReinforced - components: - - pos: -40.5,-48.5 - parent: 8364 - type: Transform -- uid: 15299 - type: WallReinforced - components: - - pos: -38.5,-51.5 - parent: 8364 - type: Transform -- uid: 15300 - type: Barricade - components: - - pos: -30.5,-47.5 - parent: 8364 - type: Transform -- uid: 15301 - type: CableApcExtension - components: - - pos: -37.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15302 - type: CableApcExtension - components: - - pos: -36.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15303 - type: AirlockMaintLocked - components: - - pos: -17.5,-32.5 - parent: 8364 - type: Transform -- uid: 15304 - type: AirlockMaintEngiLocked - components: - - name: Construction Area Maintenance - type: MetaData - - pos: -11.5,-44.5 - parent: 8364 - type: Transform -- uid: 15305 - type: AirlockMaintLocked - components: - - pos: -2.5,-53.5 - parent: 8364 - type: Transform -- uid: 15306 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-76.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15307 - type: PaintingMoony - components: - - pos: 62.5,-11.5 - parent: 8364 - type: Transform -- uid: 15308 - type: AirlockMaintEngiLocked - components: - - pos: -15.5,-67.5 - parent: 8364 - type: Transform -- uid: 15309 - type: PaintingTheScream - components: - - pos: 60.5,-11.5 - parent: 8364 - type: Transform -- uid: 15310 - type: PaintingTheSonOfMan - components: - - pos: 58.5,-11.5 - parent: 8364 - type: Transform -- uid: 15311 - type: WallReinforced - components: - - pos: -40.5,-47.5 - parent: 8364 - type: Transform -- uid: 15312 - type: AirlockMaintLocked - components: - - name: Incinerator - type: MetaData - - pos: -30.5,-47.5 - parent: 8364 - type: Transform -- uid: 15313 - type: ClosetEmergencyFilledRandom - components: - - pos: -41.5,-20.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 15314 - type: ClosetEmergencyFilledRandom - components: - - pos: -40.5,-20.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 15315 - type: ClothingHeadHatCargosoft - components: - - pos: -37.5,-18.5 - parent: 8364 - type: Transform -- uid: 15316 - type: HandLabeler - components: - - pos: -36.5,-18.5 - parent: 8364 - type: Transform -- uid: 15317 - type: PowerCellRecharger - components: - - pos: -35.5,-18.5 - parent: 8364 - type: Transform -- uid: 15318 - type: AtmosFixPlasmaMarker - components: - - pos: 27.5,-46.5 - parent: 8364 - type: Transform -- uid: 15319 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-26.5 - parent: 8364 - type: Transform -- uid: 15320 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-7.5 - parent: 8364 - type: Transform -- uid: 15321 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-25.5 - parent: 8364 - type: Transform -- uid: 15322 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-21.5 - parent: 8364 - type: Transform -- uid: 15323 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-22.5 - parent: 8364 - type: Transform -- uid: 15324 - type: ClothingNeckScarfStripedGreen - components: - - pos: 63.447033,-2.4922638 - parent: 8364 - type: Transform -- uid: 15325 - type: BedsheetSpawner - components: - - pos: 63.5,-3.5 - parent: 8364 - type: Transform -- uid: 15326 - type: Bed - components: - - pos: 63.5,-3.5 - parent: 8364 - type: Transform -- uid: 15327 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-3.5 - parent: 8364 - type: Transform -- uid: 15328 - type: CarpetGreen - components: - - pos: 63.5,-2.5 - parent: 8364 - type: Transform -- uid: 15329 - type: Paper - components: - - pos: -19.72908,-19.2799 - parent: 8364 - type: Transform -- uid: 15330 - type: Paper - components: - - pos: -19.619705,-19.483025 - parent: 8364 - type: Transform -- uid: 15331 - type: Paper - components: - - pos: -19.432205,-19.6549 - parent: 8364 - type: Transform -- uid: 15332 - type: BoxFolderYellow - components: - - rot: 3.7546858948189765E-05 rad - pos: -19.264854,-19.34227 - parent: 8364 - type: Transform -- uid: 15333 - type: Pen - components: - - rot: 5.431357567431405E-05 rad - pos: -19.264788,-19.545263 - parent: 8364 - type: Transform -- uid: 15334 - type: BoxCardboard - components: - - pos: -19.5,-17.5 - parent: 8364 - type: Transform -- uid: 15335 - type: BoxCardboard - components: - - pos: -19.5,-17.5 - parent: 8364 - type: Transform -- uid: 15336 - type: BoxCardboard - components: - - pos: -19.55601,-15.847038 - parent: 8364 - type: Transform -- uid: 15337 - type: HandLabeler - components: - - pos: -19.57096,-16.96328 - parent: 8364 - type: Transform -- uid: 15338 - type: Table - components: - - pos: -4.5,-12.5 - parent: 8364 - type: Transform -- uid: 15339 - type: SignSecurity - components: - - pos: 1.5,18.5 - parent: 8364 - type: Transform -- uid: 15340 - type: GasPipeStraight - components: - - pos: -1.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15341 - type: GasPipeBend - components: - - pos: -1.5,-21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15342 - type: GasPipeStraight - components: - - pos: -1.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15343 - type: Grille - components: - - pos: -1.5,-23.5 - parent: 8364 - type: Transform -- uid: 15344 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15345 - type: GasPipeStraight - components: - - pos: 0.5,-22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15346 - type: Grille - components: - - pos: -2.5,-23.5 - parent: 8364 - type: Transform -- uid: 15347 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15348 - type: BoxFolderYellow - components: - - pos: -24.5,-21.5 - parent: 8364 - type: Transform -- uid: 15349 - type: Pen - components: - - pos: -25.5,-21.5 - parent: 8364 - type: Transform -- uid: 15350 - type: Paper - components: - - pos: -25.177052,-21.289703 - parent: 8364 - type: Transform -- uid: 15351 - type: Paper - components: - - pos: -25.083302,-21.477203 - parent: 8364 - type: Transform -- uid: 15352 - type: Paper - components: - - pos: -24.911427,-21.695953 - parent: 8364 - type: Transform -- uid: 15353 - type: AtmosFixPlasmaMarker - components: - - pos: 28.5,-47.5 - parent: 8364 - type: Transform -- uid: 15354 - type: CarpetGreen - components: - - pos: 63.5,-3.5 - parent: 8364 - type: Transform -- uid: 15355 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-22.5 - parent: 8364 - type: Transform -- uid: 15356 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-18.5 - parent: 8364 - type: Transform -- uid: 15357 - type: BoxFolderYellow - components: - - pos: -28.451855,-25.468752 - parent: 8364 - type: Transform -- uid: 15358 - type: Multitool - components: - - pos: -28.508348,-26.915876 - parent: 8364 - type: Transform -- uid: 15359 - type: MedkitFilled - components: - - pos: -28.5,-27.5 - parent: 8364 - type: Transform -- uid: 15360 - type: CarpetGreen - components: - - pos: 62.5,-2.5 - parent: 8364 - type: Transform -- uid: 15361 - type: Autolathe - components: - - pos: -28.5,-24.5 - parent: 8364 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage -- uid: 15362 - type: DisposalTrunk - components: - - pos: -28.5,-18.5 - parent: 8364 - type: Transform -- uid: 15363 - type: DisposalUnit - components: - - pos: -28.5,-18.5 - parent: 8364 - type: Transform -- uid: 15364 - type: DisposalYJunction - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-19.5 - parent: 8364 - type: Transform -- uid: 15365 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: -26.5,-19.5 - parent: 8364 - type: Transform - - visible: False - type: Sprite -- uid: 15366 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-19.5 - parent: 8364 - type: Transform -- uid: 15367 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15368 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -26.5,-16.5 - parent: 8364 - type: Transform -- uid: 15369 - type: CableApcExtension - components: - - pos: -3.5,-24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15370 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -26.5,-14.5 - parent: 8364 - type: Transform -- uid: 15371 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -26.5,-13.5 - parent: 8364 - type: Transform -- uid: 15372 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -26.5,-12.5 - parent: 8364 - type: Transform -- uid: 15373 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -26.5,-18.5 - parent: 8364 - type: Transform -- uid: 15374 - type: AtmosFixPlasmaMarker - components: - - pos: 28.5,-46.5 - parent: 8364 - type: Transform -- uid: 15375 - type: AtmosFixBlockerMarker - components: - - pos: 26.5,-44.5 - parent: 8364 - type: Transform -- uid: 15376 - type: AtmosFixBlockerMarker - components: - - pos: 26.5,-42.5 - parent: 8364 - type: Transform -- uid: 15377 - type: LockerQuarterMasterFilled - components: - - pos: -30.5,-29.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 22553 - type: ContainerContainer -- uid: 15378 - type: filingCabinet - components: - - pos: 57.5,3.5 - parent: 8364 - type: Transform -- uid: 15379 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: 53.5,2.5 - parent: 8364 - type: Transform -- uid: 15380 - type: CarpetGreen - components: - - pos: 57.5,2.5 - parent: 8364 - type: Transform -- uid: 15381 - type: CarpetGreen - components: - - pos: 57.5,1.5 - parent: 8364 - type: Transform -- uid: 15382 - type: CarpetGreen - components: - - pos: 57.5,0.5 - parent: 8364 - type: Transform -- uid: 15383 - type: CarpetGreen - components: - - pos: 57.5,-0.5 - parent: 8364 - type: Transform -- uid: 15384 - type: CarpetGreen - components: - - pos: 56.5,2.5 - parent: 8364 - type: Transform -- uid: 15385 - type: CarpetGreen - components: - - pos: 56.5,1.5 - parent: 8364 - type: Transform -- uid: 15386 - type: CarpetGreen - components: - - pos: 56.5,0.5 - parent: 8364 - type: Transform -- uid: 15387 - type: CarpetGreen - components: - - pos: 56.5,-0.5 - parent: 8364 - type: Transform -- uid: 15388 - type: LockerSecurity - components: - - pos: -22.5,-31.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 15389 - type: WeaponCapacitorRecharger - components: - - pos: -20.5,-29.5 - parent: 8364 - type: Transform -- uid: 15390 - type: Pen - components: - - pos: -21.5,-29.5 - parent: 8364 - type: Transform -- uid: 15391 - type: Paper - components: - - pos: -19.5,-29.5 - parent: 8364 - type: Transform -- uid: 15392 - type: Paper - components: - - pos: -19.5,-29.5 - parent: 8364 - type: Transform -- uid: 15393 - type: Paper - components: - - pos: -19.5,-29.5 - parent: 8364 - type: Transform -- uid: 15394 - type: RadioHandheld - components: - - pos: -22.5,-29.5 - parent: 8364 - type: Transform -- uid: 15395 - type: Screwdriver - components: - - pos: -22.5,-29.5 - parent: 8364 - type: Transform -- uid: 15396 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -20.5,-30.5 - parent: 8364 - type: Transform -- uid: 15397 - type: CarpetGreen - components: - - pos: 55.5,2.5 - parent: 8364 - type: Transform -- uid: 15398 - type: CarpetGreen - components: - - pos: 55.5,1.5 - parent: 8364 - type: Transform -- uid: 15399 - type: CarpetGreen - components: - - pos: 55.5,0.5 - parent: 8364 - type: Transform -- uid: 15400 - type: Pen - components: - - pos: -28.5,-33.5 - parent: 8364 - type: Transform -- uid: 15401 - type: CarpetGreen - components: - - pos: 55.5,-0.5 - parent: 8364 - type: Transform -- uid: 15402 - type: CarpetGreen - components: - - pos: 54.5,2.5 - parent: 8364 - type: Transform -- uid: 15403 - type: CarpetGreen - components: - - pos: 54.5,1.5 - parent: 8364 - type: Transform -- uid: 15404 - type: Rack - components: - - pos: -28.5,-34.5 - parent: 8364 - type: Transform -- uid: 15405 - type: CarpetGreen - components: - - pos: 54.5,0.5 - parent: 8364 - type: Transform -- uid: 15406 - type: CarpetGreen - components: - - pos: 54.5,-0.5 - parent: 8364 - type: Transform -- uid: 15407 - type: Catwalk - components: - - pos: 51.5,-6.5 - parent: 8364 - type: Transform -- uid: 15408 - type: SalvageMagnet - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-37.5 - parent: 8364 - type: Transform -- uid: 15409 - type: Catwalk - components: - - pos: 51.5,-5.5 - parent: 8364 - type: Transform -- uid: 15410 - type: Catwalk - components: - - pos: 51.5,-4.5 - parent: 8364 - type: Transform -- uid: 15411 - type: Catwalk - components: - - pos: 51.5,-3.5 - parent: 8364 - type: Transform -- uid: 15412 - type: Catwalk - components: - - pos: 51.5,-2.5 - parent: 8364 - type: Transform -- uid: 15413 - type: Pickaxe - components: - - pos: -28.5,-34.5 - parent: 8364 - type: Transform -- uid: 15414 - type: Catwalk - components: - - pos: 51.5,-1.5 - parent: 8364 - type: Transform -- uid: 15415 - type: Catwalk - components: - - pos: 51.5,-0.5 - parent: 8364 - type: Transform -- uid: 15416 - type: Shovel - components: - - pos: -28.5,-34.5 - parent: 8364 - type: Transform -- uid: 15417 - type: Catwalk - components: - - pos: 51.5,0.5 - parent: 8364 - type: Transform -- uid: 15418 - type: Catwalk - components: - - pos: 51.5,1.5 - parent: 8364 - type: Transform -- uid: 15419 - type: ToolboxMechanicalFilled - components: - - pos: -28.5,-34.5 - parent: 8364 - type: Transform -- uid: 15420 - type: DisposalUnit - components: - - pos: -31.5,-29.5 - parent: 8364 - type: Transform -- uid: 15421 - type: DisposalUnit - components: - - pos: -21.5,-27.5 - parent: 8364 - type: Transform -- uid: 15422 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-29.5 - parent: 8364 - type: Transform -- uid: 15423 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -21.5,-27.5 - parent: 8364 - type: Transform -- uid: 15424 - type: DisposalBend - components: - - pos: -21.5,-24.5 - parent: 8364 - type: Transform -- uid: 15425 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -26.5,-24.5 - parent: 8364 - type: Transform -- uid: 15426 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -32.5,-29.5 - parent: 8364 - type: Transform - - visible: False - type: Sprite -- uid: 15427 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-20.5 - parent: 8364 - type: Transform -- uid: 15428 - type: DisposalPipe - components: - - pos: -32.5,-28.5 - parent: 8364 - type: Transform -- uid: 15429 - type: DisposalPipe - components: - - pos: -32.5,-27.5 - parent: 8364 - type: Transform -- uid: 15430 - type: DisposalPipe - components: - - pos: -32.5,-26.5 - parent: 8364 - type: Transform -- uid: 15431 - type: DisposalPipe - components: - - pos: -32.5,-25.5 - parent: 8364 - type: Transform -- uid: 15432 - type: DisposalPipe - components: - - pos: -32.5,-24.5 - parent: 8364 - type: Transform -- uid: 15433 - type: DisposalPipe - components: - - pos: -32.5,-23.5 - parent: 8364 - type: Transform -- uid: 15434 - type: DisposalPipe - components: - - pos: -32.5,-22.5 - parent: 8364 - type: Transform -- uid: 15435 - type: DisposalPipe - components: - - pos: -32.5,-21.5 - parent: 8364 - type: Transform -- uid: 15436 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-20.5 - parent: 8364 - type: Transform -- uid: 15437 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-20.5 - parent: 8364 - type: Transform -- uid: 15438 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-20.5 - parent: 8364 - type: Transform -- uid: 15439 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-20.5 - parent: 8364 - type: Transform -- uid: 15440 - type: DisposalPipe - components: - - pos: -21.5,-26.5 - parent: 8364 - type: Transform -- uid: 15441 - type: DisposalPipe - components: - - pos: -21.5,-25.5 - parent: 8364 - type: Transform -- uid: 15442 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-24.5 - parent: 8364 - type: Transform -- uid: 15443 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 8364 - type: Transform -- uid: 15444 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-24.5 - parent: 8364 - type: Transform -- uid: 15445 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-24.5 - parent: 8364 - type: Transform -- uid: 15446 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -26.5,-23.5 - parent: 8364 - type: Transform -- uid: 15447 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -26.5,-22.5 - parent: 8364 - type: Transform -- uid: 15448 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -26.5,-21.5 - parent: 8364 - type: Transform -- uid: 15449 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -26.5,-20.5 - parent: 8364 - type: Transform -- uid: 15450 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-30.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15451 - type: AtmosFixBlockerMarker - components: - - pos: 27.5,-44.5 - parent: 8364 - type: Transform -- uid: 15452 - type: AtmosFixBlockerMarker - components: - - pos: 27.5,-43.5 - parent: 8364 - type: Transform -- uid: 15453 - type: AtmosFixBlockerMarker - components: - - pos: 28.5,-44.5 - parent: 8364 - type: Transform -- uid: 15454 - type: AtmosFixBlockerMarker - components: - - pos: 28.5,-43.5 - parent: 8364 - type: Transform -- uid: 15455 - type: Catwalk - components: - - pos: 51.5,2.5 - parent: 8364 - type: Transform -- uid: 15456 - type: Catwalk - components: - - pos: 51.5,3.5 - parent: 8364 - type: Transform -- uid: 15457 - type: Catwalk - components: - - pos: 51.5,4.5 - parent: 8364 - type: Transform -- uid: 15458 - type: ComputerSolarControl - components: - - pos: -1.5,-61.5 - parent: 8364 - type: Transform -- uid: 15459 - type: CableMV - components: - - pos: -7.5,-50.5 - parent: 8364 - type: Transform -- uid: 15460 - type: CableHV - components: - - pos: -6.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15461 - type: Catwalk - components: - - pos: 52.5,4.5 - parent: 8364 - type: Transform -- uid: 15462 - type: Catwalk - components: - - pos: 53.5,4.5 - parent: 8364 - type: Transform -- uid: 15463 - type: Catwalk - components: - - pos: 54.5,4.5 - parent: 8364 - type: Transform -- uid: 15464 - type: CableHV - components: - - pos: -7.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15465 - type: CableHV - components: - - pos: 4.5,-63.5 - parent: 8364 - type: Transform -- uid: 15466 - type: ComputerSolarControl - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-62.5 - parent: 8364 - type: Transform -- uid: 15467 - type: AtmosFixNitrogenMarker - components: - - pos: 14.5,-64.5 - parent: 8364 - type: Transform -- uid: 15468 - type: AtmosFixOxygenMarker - components: - - pos: 16.5,-65.5 - parent: 8364 - type: Transform -- uid: 15469 - type: AtmosFixOxygenMarker - components: - - pos: 17.5,-66.5 - parent: 8364 - type: Transform -- uid: 15470 - type: AtmosFixBlockerMarker - components: - - pos: 26.5,-56.5 - parent: 8364 - type: Transform -- uid: 15471 - type: AtmosFixBlockerMarker - components: - - pos: 27.5,-55.5 - parent: 8364 - type: Transform -- uid: 15472 - type: AtmosFixBlockerMarker - components: - - pos: 28.5,-54.5 - parent: 8364 - type: Transform -- uid: 15473 - type: AtmosFixBlockerMarker - components: - - pos: 27.5,-52.5 - parent: 8364 - type: Transform -- uid: 15474 - type: AtmosFixBlockerMarker - components: - - pos: 28.5,-51.5 - parent: 8364 - type: Transform -- uid: 15475 - type: AtmosFixPlasmaMarker - components: - - pos: 26.5,-46.5 - parent: 8364 - type: Transform -- uid: 15476 - type: AtmosFixPlasmaMarker - components: - - pos: 28.5,-48.5 - parent: 8364 - type: Transform -- uid: 15477 - type: AtmosFixBlockerMarker - components: - - pos: 26.5,-43.5 - parent: 8364 - type: Transform -- uid: 15478 - type: AtmosFixBlockerMarker - components: - - pos: 27.5,-42.5 - parent: 8364 - type: Transform -- uid: 15479 - type: Catwalk - components: - - pos: 54.5,5.5 - parent: 8364 - type: Transform -- uid: 15480 - type: AtmosFixBlockerMarker - components: - - pos: 28.5,-42.5 - parent: 8364 - type: Transform -- uid: 15481 - type: CableApcExtension - components: - - pos: -0.5,-22.5 - parent: 8364 - type: Transform -- uid: 15482 - type: Catwalk - components: - - pos: 54.5,6.5 - parent: 8364 - type: Transform -- uid: 15483 - type: Catwalk - components: - - pos: 54.5,7.5 - parent: 8364 - type: Transform -- uid: 15484 - type: CableMV - components: - - pos: -6.5,-52.5 - parent: 8364 - type: Transform -- uid: 15485 - type: CableHV - components: - - pos: -6.5,-50.5 - parent: 8364 - type: Transform -- uid: 15486 - type: Catwalk - components: - - pos: 54.5,8.5 - parent: 8364 - type: Transform -- uid: 15487 - type: CableApcStack - components: - - pos: -4.4804783,-45.275856 - parent: 8364 - type: Transform -- uid: 15488 - type: ClothingOuterVestHazard - components: - - pos: -5.4336033,-45.463356 - parent: 8364 - type: Transform -- uid: 15489 - type: CrateGenericSteel - components: - - pos: -8.5,-43.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 15490 - type: WindoorCommandLocked - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 8364 - type: Transform -- uid: 15491 - type: CableApcExtension - components: - - pos: -0.5,-21.5 - parent: 8364 - type: Transform -- uid: 15492 - type: HighSecCommandLocked - components: - - pos: -11.5,-36.5 - parent: 8364 - type: Transform -- uid: 15493 - type: AirlockCommandGlassLocked - components: - - pos: -6.5,-52.5 - parent: 8364 - type: Transform -- uid: 15494 - type: PlasticFlapsAirtightClear - components: - - pos: 2.5,-42.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15495 - type: Catwalk - components: - - pos: 54.5,9.5 - parent: 8364 - type: Transform -- uid: 15496 - type: AirlockAtmosphericsLocked - components: - - name: Atmos - type: MetaData - - pos: 4.5,-50.5 - parent: 8364 - type: Transform -- uid: 15497 - type: AirlockMaintAtmoLocked - components: - - name: Atmos Maint - type: MetaData - - pos: 13.5,-39.5 - parent: 8364 - type: Transform -- uid: 15498 - type: Catwalk - components: - - pos: 47.5,16.5 - parent: 8364 - type: Transform -- uid: 15499 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 3.5,-45.5 - parent: 8364 - type: Transform -- uid: 15500 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-47.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15501 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-47.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15502 - type: GasPipeBend - components: - - pos: 1.5,-47.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15503 - type: CableApcExtension - components: - - pos: -33.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15504 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -0.5,-50.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15505 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-49.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15506 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 1.5,-48.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15507 - type: PortableScrubber - components: - - pos: 1.5,-49.5 - parent: 8364 - type: Transform -- uid: 15508 - type: PortableScrubber - components: - - pos: 1.5,-48.5 - parent: 8364 - type: Transform -- uid: 15509 - type: Dresser - components: - - pos: 6.5,-20.5 - parent: 8364 - type: Transform -- uid: 15510 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-49.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15511 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-44.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15512 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-48.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15513 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-52.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15514 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-56.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15515 - type: GasOutletInjector - components: - - rot: 3.141592653589793 rad - pos: 16.5,-64.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15516 - type: GasOutletInjector - components: - - rot: 3.141592653589793 rad - pos: 12.5,-64.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15517 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 20.5,-64.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15518 - type: SignalButton - components: - - pos: 2.5,-58.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 17577 - - port: Toggle - uid: 17578 - - port: Toggle - uid: 17579 - - port: Toggle - uid: 17583 - - port: Toggle - uid: 17582 - - port: Toggle - uid: 17580 - - port: Toggle - uid: 17581 - type: SignalTransmitter -- uid: 15519 - type: Catwalk - components: - - pos: 47.5,15.5 - parent: 8364 - type: Transform -- uid: 15520 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: -1.5,-64.5 - parent: 8364 - type: Transform -- uid: 15521 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-55.5 - parent: 8364 - type: Transform -- uid: 15522 - type: Table - components: - - pos: -8.5,-57.5 - parent: 8364 - type: Transform -- uid: 15523 - type: Table - components: - - pos: -8.5,-56.5 - parent: 8364 - type: Transform -- uid: 15524 - type: Catwalk - components: - - pos: 47.5,14.5 - parent: 8364 - type: Transform -- uid: 15525 - type: Catwalk - components: - - pos: 47.5,13.5 - parent: 8364 - type: Transform -- uid: 15526 - type: Catwalk - components: - - pos: 48.5,13.5 - parent: 8364 - type: Transform -- uid: 15527 - type: FirelockGlass - components: - - pos: 72.5,4.5 - parent: 8364 - type: Transform -- uid: 15528 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 8.5,-47.5 - parent: 8364 - type: Transform -- uid: 15529 - type: Catwalk - components: - - pos: 49.5,13.5 - parent: 8364 - type: Transform -- uid: 15530 - type: Catwalk - components: - - pos: 50.5,13.5 - parent: 8364 - type: Transform -- uid: 15531 - type: CableMV - components: - - pos: -18.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15532 - type: CableMV - components: - - pos: -18.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15533 - type: CableMV - components: - - pos: -18.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15534 - type: CableMV - components: - - pos: -18.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15535 - type: CableMV - components: - - pos: -18.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15536 - type: Catwalk - components: - - pos: 51.5,13.5 - parent: 8364 - type: Transform -- uid: 15537 - type: Catwalk - components: - - pos: 52.5,13.5 - parent: 8364 - type: Transform -- uid: 15538 - type: Catwalk - components: - - pos: 53.5,13.5 - parent: 8364 - type: Transform -- uid: 15539 - type: Table - components: - - pos: -19.5,-15.5 - parent: 8364 - type: Transform -- uid: 15540 - type: Catwalk - components: - - pos: 55.5,13.5 - parent: 8364 - type: Transform -- uid: 15541 - type: Catwalk - components: - - pos: 56.5,13.5 - parent: 8364 - type: Transform -- uid: 15542 - type: Catwalk - components: - - pos: 57.5,13.5 - parent: 8364 - type: Transform -- uid: 15543 - type: SheetSteel - components: - - pos: -8.364725,-64.27204 - parent: 8364 - type: Transform -- uid: 15544 - type: LockerEngineerFilled - components: - - pos: -2.5,-64.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 15545 - type: SheetGlass - components: - - pos: -8.5,-64.5 - parent: 8364 - type: Transform -- uid: 15546 - type: LockerEngineerFilled - components: - - pos: -0.5,-64.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 15547 - type: LockerMedicalFilled - components: - - pos: 37.5,-41.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15548 - type: GasMinerPlasma - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-47.5 - parent: 8364 - type: Transform -- uid: 15549 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-47.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15550 - type: CrateEngineeringAMEShielding - components: - - pos: -5.5,-61.5 - parent: 8364 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 15551 - type: GasPipeTJunction - components: - - pos: -0.5,-49.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15552 - type: CrateEngineeringAMEJar - components: - - pos: -7.5,-61.5 - parent: 8364 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 15553 - type: Catwalk - components: - - pos: 58.5,13.5 - parent: 8364 - type: Transform -- uid: 15554 - type: Catwalk - components: - - pos: 59.5,13.5 - parent: 8364 - type: Transform -- uid: 15555 - type: Catwalk - components: - - pos: 59.5,12.5 - parent: 8364 - type: Transform -- uid: 15556 - type: CableMV - components: - - pos: -31.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15557 - type: CableMV - components: - - pos: -31.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15558 - type: CableMV - components: - - pos: -31.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15559 - type: CableMV - components: - - pos: -31.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15560 - type: CableMV - components: - - pos: -31.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15561 - type: CableMV - components: - - pos: -31.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15562 - type: CableMV - components: - - pos: -30.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15563 - type: CableMV - components: - - pos: -29.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15564 - type: CableMV - components: - - pos: -29.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15565 - type: CableMV - components: - - pos: -29.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15566 - type: FirelockGlass - components: - - pos: 50.5,10.5 - parent: 8364 - type: Transform -- uid: 15567 - type: Catwalk - components: - - pos: 59.5,10.5 - parent: 8364 - type: Transform -- uid: 15568 - type: AirlockEngineeringLocked - components: - - name: Port Quarter Maintenance Power - type: MetaData - - pos: -30.5,-65.5 - parent: 8364 - type: Transform -- uid: 15569 - type: LockerFreezer - components: - - pos: -38.5,-43.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 15570 - type: Table - components: - - pos: -38.5,-44.5 - parent: 8364 - type: Transform -- uid: 15571 - type: Table - components: - - pos: -38.5,-45.5 - parent: 8364 - type: Transform -- uid: 15572 - type: TableGlass - components: - - pos: -35.5,-43.5 - parent: 8364 - type: Transform -- uid: 15573 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-43.5 - parent: 8364 - type: Transform -- uid: 15574 - type: ReinforcedWindow - components: - - pos: -36.5,-42.5 - parent: 8364 - type: Transform -- uid: 15575 - type: CableApcExtension - components: - - pos: -36.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15576 - type: KitchenReagentGrinder - components: - - pos: -38.5,-44.5 - parent: 8364 - type: Transform -- uid: 15577 - type: KitchenMicrowave - components: - - pos: -38.5,-45.5 - parent: 8364 - type: Transform -- uid: 15578 - type: Barricade - components: - - pos: -34.5,-45.5 - parent: 8364 - type: Transform -- uid: 15579 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -35.5,-44.5 - parent: 8364 - type: Transform -- uid: 15580 - type: Table - components: - - pos: -37.5,-46.5 - parent: 8364 - type: Transform -- uid: 15581 - type: Table - components: - - pos: -38.5,-46.5 - parent: 8364 - type: Transform -- uid: 15582 - type: FoodBoxDonkpocket - components: - - pos: -38.562927,-46.360855 - parent: 8364 - type: Transform -- uid: 15583 - type: KitchenKnife - components: - - pos: -37.922302,-46.40773 - parent: 8364 - type: Transform -- uid: 15584 - type: ReagentContainerSugar - components: - - pos: -38.656677,-45.97023 - parent: 8364 - type: Transform - - tags: [] - type: Tag -- uid: 15585 - type: FoodCondimentBottleEnzyme - components: - - pos: -37.375427,-46.31398 - parent: 8364 - type: Transform - - tags: [] - type: Tag -- uid: 15586 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-46.5 - parent: 8364 - type: Transform -- uid: 15587 - type: ClosetMaintenanceFilledRandom - components: - - pos: -36.5,-46.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 15588 - type: FoodCondimentPacketPepper - components: - - pos: -35.798805,-43.6252 - parent: 8364 - type: Transform - - solution: food - type: RefillableSolution - - tags: [] - type: Tag -- uid: 15589 - type: FoodCondimentPacketSalt - components: - - pos: -35.53318,-43.578323 - parent: 8364 - type: Transform - - solution: food - type: RefillableSolution - - tags: [] - type: Tag -- uid: 15590 - type: FoodMealMint - components: - - pos: -35.361305,-43.28145 - parent: 8364 - type: Transform -- uid: 15591 - type: LargeBeaker - components: - - pos: -38.156677,-46.329605 - parent: 8364 - type: Transform -- uid: 15592 - type: AirlockExternalLocked - components: - - pos: -35.5,-65.5 - parent: 8364 - type: Transform -- uid: 15593 - type: WallReinforced - components: - - pos: -42.5,-51.5 - parent: 8364 - type: Transform -- uid: 15594 - type: AirlockGlass - components: - - name: Mixing Room - type: MetaData - - pos: -40.5,-49.5 - parent: 8364 - type: Transform -- uid: 15595 - type: Barricade - components: - - pos: -33.5,-52.5 - parent: 8364 - type: Transform -- uid: 15596 - type: Barricade - components: - - pos: -30.5,-54.5 - parent: 8364 - type: Transform -- uid: 15597 - type: Barricade - components: - - pos: -30.5,-53.5 - parent: 8364 - type: Transform -- uid: 15598 - type: Barricade - components: - - pos: -33.5,-55.5 - parent: 8364 - type: Transform -- uid: 15599 - type: Railing - components: - - pos: -26.5,-56.5 - parent: 8364 - type: Transform -- uid: 15600 - type: ClothingHeadHatTrucker - components: - - pos: 49.506485,-0.5377447 - parent: 8364 - type: Transform -- uid: 15601 - type: CableApcExtension - components: - - pos: -33.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15602 - type: ClosetEmergencyFilledRandom - components: - - pos: -33.5,-47.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 15603 - type: ClosetMaintenanceFilledRandom - components: - - pos: -32.5,-47.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 15604 - type: Catwalk - components: - - pos: 58.5,10.5 - parent: 8364 - type: Transform -- uid: 15605 - type: OxygenCanister - components: - - pos: -32.5,-51.5 - parent: 8364 - type: Transform -- uid: 15606 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-23.5 - parent: 8364 - type: Transform -- uid: 15607 - type: ClothingBeltHolster - components: - - pos: -54.62445,-11.406659 - parent: 8364 - type: Transform -- uid: 15608 - type: Airlock - components: - - pos: 44.5,-64.5 - parent: 8364 - type: Transform -- uid: 15609 - type: SpawnMobMouse - components: - - pos: -22.5,-54.5 - parent: 8364 - type: Transform -- uid: 15610 - type: Catwalk - components: - - pos: 57.5,10.5 - parent: 8364 - type: Transform -- uid: 15611 - type: RandomSpawner - components: - - pos: -19.5,-22.5 - parent: 8364 - type: Transform -- uid: 15612 - type: RandomSpawner - components: - - pos: -17.5,-33.5 - parent: 8364 - type: Transform -- uid: 15613 - type: RandomSpawner - components: - - pos: -4.5,-48.5 - parent: 8364 - type: Transform -- uid: 15614 - type: RandomSpawner - components: - - pos: -33.5,-43.5 - parent: 8364 - type: Transform -- uid: 15615 - type: RandomSpawner - components: - - pos: -26.5,-43.5 - parent: 8364 - type: Transform -- uid: 15616 - type: RandomSpawner - components: - - pos: -35.5,-44.5 - parent: 8364 - type: Transform -- uid: 15617 - type: RandomSpawner - components: - - pos: -21.5,-50.5 - parent: 8364 - type: Transform -- uid: 15618 - type: RandomSpawner - components: - - pos: -27.5,-58.5 - parent: 8364 - type: Transform -- uid: 15619 - type: FirelockGlass - components: - - pos: 56.5,10.5 - parent: 8364 - type: Transform -- uid: 15620 - type: RandomSpawner - components: - - pos: -32.5,-74.5 - parent: 8364 - type: Transform -- uid: 15621 - type: AirlockMaintLocked - components: - - name: Construction Area - type: MetaData - - pos: -19.5,-53.5 - parent: 8364 - type: Transform -- uid: 15622 - type: Table - components: - - pos: -34.5,-51.5 - parent: 8364 - type: Transform -- uid: 15623 - type: Table - components: - - pos: -35.5,-51.5 - parent: 8364 - type: Transform -- uid: 15624 - type: DisposalUnit - components: - - pos: -37.5,-50.5 - parent: 8364 - type: Transform -- uid: 15625 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-52.5 - parent: 8364 - type: Transform -- uid: 15626 - type: DisposalTrunk - components: - - pos: -37.5,-50.5 - parent: 8364 - type: Transform -- uid: 15627 - type: DisposalPipe - components: - - pos: -37.5,-51.5 - parent: 8364 - type: Transform -- uid: 15628 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-52.5 - parent: 8364 - type: Transform -- uid: 15629 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-52.5 - parent: 8364 - type: Transform -- uid: 15630 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -44.5,-52.5 - parent: 8364 - type: Transform -- uid: 15631 - type: DisposalBend - components: - - pos: -44.5,-51.5 - parent: 8364 - type: Transform -- uid: 15632 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -46.5,-51.5 - parent: 8364 - type: Transform -- uid: 15633 - type: DisposalBend - components: - - pos: -46.5,-50.5 - parent: 8364 - type: Transform -- uid: 15634 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-50.5 - parent: 8364 - type: Transform -- uid: 15635 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-51.5 - parent: 8364 - type: Transform -- uid: 15636 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-52.5 - parent: 8364 - type: Transform -- uid: 15637 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-52.5 - parent: 8364 - type: Transform -- uid: 15638 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-52.5 - parent: 8364 - type: Transform -- uid: 15639 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-52.5 - parent: 8364 - type: Transform -- uid: 15640 - type: Paper - components: - - pos: -35.5,-51.5 - parent: 8364 - type: Transform -- uid: 15641 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -32.5,-51.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15642 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -31.5,-51.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15643 - type: Paper - components: - - pos: -35.5,-51.5 - parent: 8364 - type: Transform -- uid: 15644 - type: Paper - components: - - pos: -35.5,-51.5 - parent: 8364 - type: Transform -- uid: 15645 - type: Pen - components: - - pos: -34.5,-51.5 - parent: 8364 - type: Transform -- uid: 15646 - type: CableApcExtension - components: - - pos: -19.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15647 - type: CableApcExtension - components: - - pos: -20.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15648 - type: CableApcExtension - components: - - pos: -21.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15649 - type: CableApcExtension - components: - - pos: -21.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15650 - type: CableApcExtension - components: - - pos: -21.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15651 - type: CableApcExtension - components: - - pos: -21.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15652 - type: CableApcExtension - components: - - pos: -28.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15653 - type: CableApcExtension - components: - - pos: -27.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15654 - type: CableApcExtension - components: - - pos: -26.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15655 - type: CableApcExtension - components: - - pos: -25.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15656 - type: CableApcExtension - components: - - pos: -24.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15657 - type: CableApcExtension - components: - - pos: -23.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15658 - type: CableApcExtension - components: - - pos: -22.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15659 - type: CableApcExtension - components: - - pos: -31.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15660 - type: CableApcExtension - components: - - pos: -31.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15661 - type: CableApcExtension - components: - - pos: -31.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15662 - type: CableApcExtension - components: - - pos: -31.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15663 - type: CableApcExtension - components: - - pos: -32.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15664 - type: CableApcExtension - components: - - pos: -33.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15665 - type: CableApcExtension - components: - - pos: -28.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15666 - type: CableApcExtension - components: - - pos: -21.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15667 - type: Catwalk - components: - - pos: 55.5,10.5 - parent: 8364 - type: Transform -- uid: 15668 - type: WeldingFuelTankFull - components: - - pos: -14.5,-46.5 - parent: 8364 - type: Transform -- uid: 15669 - type: CableApcExtension - components: - - pos: -21.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15670 - type: CableApcExtension - components: - - pos: -22.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15671 - type: CableApcExtension - components: - - pos: -23.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15672 - type: CableApcExtension - components: - - pos: -24.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15673 - type: CableApcExtension - components: - - pos: -25.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15674 - type: CableApcExtension - components: - - pos: -26.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15675 - type: CableApcExtension - components: - - pos: -27.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15676 - type: CableApcExtension - components: - - pos: -34.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15677 - type: CableApcExtension - components: - - pos: -35.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15678 - type: CableApcExtension - components: - - pos: -36.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15679 - type: CableApcExtension - components: - - pos: -37.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15680 - type: CableApcExtension - components: - - pos: -33.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15681 - type: CableApcExtension - components: - - pos: -33.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15682 - type: PoweredSmallLight - components: - - pos: -24.5,-49.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15683 - type: FirelockGlass - components: - - pos: -61.5,11.5 - parent: 8364 - type: Transform -- uid: 15684 - type: Rack - components: - - pos: -34.5,-63.5 - parent: 8364 - type: Transform -- uid: 15685 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-51.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15686 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-55.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15687 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-58.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15688 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-56.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15689 - type: PoweredSmallLight - components: - - pos: -37.5,-60.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15690 - type: PoweredSmallLightEmpty - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-54.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15691 - type: PoweredSmallLightEmpty - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-58.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15692 - type: WallSolid - components: - - pos: -38.5,-55.5 - parent: 8364 - type: Transform -- uid: 15693 - type: WallSolid - components: - - pos: -37.5,-55.5 - parent: 8364 - type: Transform -- uid: 15694 - type: WallSolid - components: - - pos: -38.5,-57.5 - parent: 8364 - type: Transform -- uid: 15695 - type: WallSolid - components: - - pos: -37.5,-57.5 - parent: 8364 - type: Transform -- uid: 15696 - type: ToiletDirtyWater - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-54.5 - parent: 8364 - type: Transform -- uid: 15697 - type: ToiletDirtyWater - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-56.5 - parent: 8364 - type: Transform -- uid: 15698 - type: ToiletDirtyWater - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-58.5 - parent: 8364 - type: Transform -- uid: 15699 - type: AirlockMaint - components: - - name: Unit 3 - type: MetaData - - pos: -37.5,-58.5 - parent: 8364 - type: Transform -- uid: 15700 - type: AirlockMaint - components: - - name: Unit 2 - type: MetaData - - pos: -37.5,-56.5 - parent: 8364 - type: Transform -- uid: 15701 - type: AirlockMaint - components: - - name: Unit 1 - type: MetaData - - pos: -37.5,-54.5 - parent: 8364 - type: Transform -- uid: 15702 - type: CableApcExtension - components: - - pos: -38.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15703 - type: CableApcExtension - components: - - pos: -36.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15704 - type: CableApcExtension - components: - - pos: -36.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15705 - type: CableApcExtension - components: - - pos: -37.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15706 - type: CableApcExtension - components: - - pos: -38.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15707 - type: CableApcExtension - components: - - pos: -36.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15708 - type: CableApcExtension - components: - - pos: -36.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15709 - type: CableApcExtension - components: - - pos: -37.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15710 - type: CableApcExtension - components: - - pos: -38.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15711 - type: Barricade - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-58.5 - parent: 8364 - type: Transform -- uid: 15712 - type: SinkEmpty - components: - - pos: -36.5,-54.5 - parent: 8364 - type: Transform -- uid: 15713 - type: Catwalk - components: - - pos: 54.5,10.5 - parent: 8364 - type: Transform -- uid: 15714 - type: Catwalk - components: - - pos: 53.5,10.5 - parent: 8364 - type: Transform -- uid: 15715 - type: Catwalk - components: - - pos: 52.5,10.5 - parent: 8364 - type: Transform -- uid: 15716 - type: PuddleVomit - components: - - pos: -36.5,-54.5 - parent: 8364 - type: Transform -- uid: 15717 - type: Mirror - components: - - pos: -36.5,-53.5 - parent: 8364 - type: Transform -- uid: 15718 - type: PuddleVomit - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-54.5 - parent: 8364 - type: Transform -- uid: 15719 - type: PuddleVomit - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-58.5 - parent: 8364 - type: Transform -- uid: 15720 - type: Catwalk - components: - - pos: 51.5,10.5 - parent: 8364 - type: Transform -- uid: 15721 - type: CableApcExtension - components: - - pos: -0.5,-20.5 - parent: 8364 - type: Transform -- uid: 15722 - type: Catwalk - components: - - pos: 49.5,10.5 - parent: 8364 - type: Transform -- uid: 15723 - type: Catwalk - components: - - pos: 48.5,10.5 - parent: 8364 - type: Transform -- uid: 15724 - type: Catwalk - components: - - pos: 47.5,10.5 - parent: 8364 - type: Transform -- uid: 15725 - type: Catwalk - components: - - pos: 46.5,10.5 - parent: 8364 - type: Transform -- uid: 15726 - type: AirCanister - components: - - pos: 1.5,-47.5 - parent: 8364 - type: Transform -- uid: 15727 - type: GasFilterFlipped - components: - - name: Exhalation Waste - type: MetaData - - rot: 1.5707963267948966 rad - pos: 33.5,-35.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15728 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-34.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15729 - type: FirelockGlass - components: - - pos: -28.5,-8.5 - parent: 8364 - type: Transform -- uid: 15730 - type: AirlockMaintMedLocked - components: - - pos: 33.5,-39.5 - parent: 8364 - type: Transform -- uid: 15731 - type: GasThermoMachineFreezer - components: - - pos: 36.5,-34.5 - parent: 8364 - type: Transform -- uid: 15732 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 33.5,-34.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15733 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 32.5,-35.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15734 - type: Catwalk - components: - - pos: 29.5,3.5 - parent: 8364 - type: Transform -- uid: 15735 - type: Catwalk - components: - - pos: 30.5,3.5 - parent: 8364 - type: Transform -- uid: 15736 - type: Catwalk - components: - - pos: 31.5,3.5 - parent: 8364 - type: Transform -- uid: 15737 - type: Catwalk - components: - - pos: 32.5,3.5 - parent: 8364 - type: Transform -- uid: 15738 - type: Catwalk - components: - - pos: 33.5,3.5 - parent: 8364 - type: Transform -- uid: 15739 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-23.5 - parent: 8364 - type: Transform -- uid: 15740 - type: Catwalk - components: - - pos: 35.5,3.5 - parent: 8364 - type: Transform -- uid: 15741 - type: Catwalk - components: - - pos: 36.5,3.5 - parent: 8364 - type: Transform -- uid: 15742 - type: Catwalk - components: - - pos: 37.5,3.5 - parent: 8364 - type: Transform -- uid: 15743 - type: Catwalk - components: - - pos: 38.5,3.5 - parent: 8364 - type: Transform -- uid: 15744 - type: Catwalk - components: - - pos: 39.5,3.5 - parent: 8364 - type: Transform -- uid: 15745 - type: Catwalk - components: - - pos: 40.5,3.5 - parent: 8364 - type: Transform -- uid: 15746 - type: Catwalk - components: - - pos: 41.5,3.5 - parent: 8364 - type: Transform -- uid: 15747 - type: Catwalk - components: - - pos: 42.5,3.5 - parent: 8364 - type: Transform -- uid: 15748 - type: Catwalk - components: - - pos: 43.5,3.5 - parent: 8364 - type: Transform -- uid: 15749 - type: Catwalk - components: - - pos: 44.5,3.5 - parent: 8364 - type: Transform -- uid: 15750 - type: FirelockGlass - components: - - pos: 34.5,3.5 - parent: 8364 - type: Transform -- uid: 15751 - type: Catwalk - components: - - pos: 45.5,4.5 - parent: 8364 - type: Transform -- uid: 15752 - type: Catwalk - components: - - pos: 45.5,5.5 - parent: 8364 - type: Transform -- uid: 15753 - type: Catwalk - components: - - pos: 45.5,6.5 - parent: 8364 - type: Transform -- uid: 15754 - type: Catwalk - components: - - pos: 45.5,7.5 - parent: 8364 - type: Transform -- uid: 15755 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 33.5,-36.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15756 - type: Catwalk - components: - - pos: 45.5,9.5 - parent: 8364 - type: Transform -- uid: 15757 - type: ComputerResearchAndDevelopment - components: - - rot: 3.141592653589793 rad - pos: 76.5,-26.5 - parent: 8364 - type: Transform -- uid: 15758 - type: WardrobeAtmospherics - components: - - pos: 39.5,5.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15759 - type: Catwalk - components: - - pos: 41.5,29.5 - parent: 8364 - type: Transform -- uid: 15760 - type: Catwalk - components: - - pos: 42.5,29.5 - parent: 8364 - type: Transform -- uid: 15761 - type: Catwalk - components: - - pos: 43.5,29.5 - parent: 8364 - type: Transform -- uid: 15762 - type: Catwalk - components: - - pos: 44.5,29.5 - parent: 8364 - type: Transform -- uid: 15763 - type: Catwalk - components: - - pos: 45.5,29.5 - parent: 8364 - type: Transform -- uid: 15764 - type: Catwalk - components: - - pos: 46.5,29.5 - parent: 8364 - type: Transform -- uid: 15765 - type: Catwalk - components: - - pos: 48.5,29.5 - parent: 8364 - type: Transform -- uid: 15766 - type: Catwalk - components: - - pos: 49.5,29.5 - parent: 8364 - type: Transform -- uid: 15767 - type: Catwalk - components: - - pos: 50.5,29.5 - parent: 8364 - type: Transform -- uid: 15768 - type: Catwalk - components: - - pos: 51.5,29.5 - parent: 8364 - type: Transform -- uid: 15769 - type: Catwalk - components: - - pos: 52.5,29.5 - parent: 8364 - type: Transform -- uid: 15770 - type: Catwalk - components: - - pos: 53.5,29.5 - parent: 8364 - type: Transform -- uid: 15771 - type: Catwalk - components: - - pos: 53.5,33.5 - parent: 8364 - type: Transform -- uid: 15772 - type: Catwalk - components: - - pos: 52.5,33.5 - parent: 8364 - type: Transform -- uid: 15773 - type: Catwalk - components: - - pos: 51.5,33.5 - parent: 8364 - type: Transform -- uid: 15774 - type: Catwalk - components: - - pos: 50.5,33.5 - parent: 8364 - type: Transform -- uid: 15775 - type: Catwalk - components: - - pos: 49.5,33.5 - parent: 8364 - type: Transform -- uid: 15776 - type: Catwalk - components: - - pos: 48.5,33.5 - parent: 8364 - type: Transform -- uid: 15777 - type: Catwalk - components: - - pos: 46.5,33.5 - parent: 8364 - type: Transform -- uid: 15778 - type: Catwalk - components: - - pos: 45.5,33.5 - parent: 8364 - type: Transform -- uid: 15779 - type: Catwalk - components: - - pos: 44.5,33.5 - parent: 8364 - type: Transform -- uid: 15780 - type: Catwalk - components: - - pos: 43.5,33.5 - parent: 8364 - type: Transform -- uid: 15781 - type: Catwalk - components: - - pos: 42.5,33.5 - parent: 8364 - type: Transform -- uid: 15782 - type: Catwalk - components: - - pos: 41.5,33.5 - parent: 8364 - type: Transform -- uid: 15783 - type: Catwalk - components: - - pos: 41.5,37.5 - parent: 8364 - type: Transform -- uid: 15784 - type: Catwalk - components: - - pos: 42.5,37.5 - parent: 8364 - type: Transform -- uid: 15785 - type: Catwalk - components: - - pos: 43.5,37.5 - parent: 8364 - type: Transform -- uid: 15786 - type: Catwalk - components: - - pos: 44.5,37.5 - parent: 8364 - type: Transform -- uid: 15787 - type: Catwalk - components: - - pos: 45.5,37.5 - parent: 8364 - type: Transform -- uid: 15788 - type: Catwalk - components: - - pos: 46.5,37.5 - parent: 8364 - type: Transform -- uid: 15789 - type: Catwalk - components: - - pos: 53.5,37.5 - parent: 8364 - type: Transform -- uid: 15790 - type: Catwalk - components: - - pos: 52.5,37.5 - parent: 8364 - type: Transform -- uid: 15791 - type: Catwalk - components: - - pos: 51.5,37.5 - parent: 8364 - type: Transform -- uid: 15792 - type: Catwalk - components: - - pos: 50.5,37.5 - parent: 8364 - type: Transform -- uid: 15793 - type: Catwalk - components: - - pos: 49.5,37.5 - parent: 8364 - type: Transform -- uid: 15794 - type: Catwalk - components: - - pos: 48.5,37.5 - parent: 8364 - type: Transform -- uid: 15795 - type: Catwalk - components: - - pos: 47.5,40.5 - parent: 8364 - type: Transform -- uid: 15796 - type: Catwalk - components: - - pos: 47.5,39.5 - parent: 8364 - type: Transform -- uid: 15797 - type: Catwalk - components: - - pos: 47.5,38.5 - parent: 8364 - type: Transform -- uid: 15798 - type: CableApcExtension - components: - - pos: -32.5,-65.5 - parent: 8364 - type: Transform -- uid: 15799 - type: CableApcExtension - components: - - pos: -34.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15800 - type: CableApcExtension - components: - - pos: -33.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15801 - type: AirlockMaintGlassLocked - components: - - pos: -26.5,-46.5 - parent: 8364 - type: Transform -- uid: 15802 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-41.5 - parent: 8364 - type: Transform -- uid: 15803 - type: Barricade - components: - - pos: -30.5,-44.5 - parent: 8364 - type: Transform -- uid: 15804 - type: ClothingMaskGasCentcom - components: - - pos: -31.539621,-74.493805 - parent: 8364 - type: Transform -- uid: 15805 - type: ClothingHeadHatWeldingMaskFlame - components: - - pos: -36.50452,-64.51913 - parent: 8364 - type: Transform -- uid: 15806 - type: ClothingHeadHatAnimalHeadslime - components: - - pos: 41.493343,-57.314545 - parent: 8364 - type: Transform -- uid: 15807 - type: ClothingHeadHatFez - components: - - pos: 47.313797,-71.28293 - parent: 8364 - type: Transform -- uid: 15808 - type: ClothingHeadHatFez - components: - - pos: 47.548172,-71.37668 - parent: 8364 - type: Transform -- uid: 15809 - type: SMESBasic - components: - - pos: -6.5,-49.5 - parent: 8364 - type: Transform -- uid: 15810 - type: CrateEngineeringAMEControl - components: - - pos: -6.5,-61.5 - parent: 8364 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 15811 - type: MaintenanceToolSpawner - components: - - pos: -26.5,-43.5 - parent: 8364 - type: Transform -- uid: 15812 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-35.5 - parent: 8364 - type: Transform -- uid: 15813 - type: ClosetMaintenanceFilledRandom - components: - - pos: -18.5,-66.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15814 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 36.5,-35.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 15815 - type: CableHV - components: - - pos: -54.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15816 - type: CableHV - components: - - pos: -54.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15817 - type: CableHV - components: - - pos: -52.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15818 - type: CableHV - components: - - pos: -52.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15819 - type: CableHV - components: - - pos: -52.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15820 - type: CableHV - components: - - pos: -54.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15821 - type: SolarPanel - components: - - pos: -50.5,-64.5 - parent: 8364 - type: Transform -- uid: 15822 - type: SolarPanel - components: - - pos: -44.5,-58.5 - parent: 8364 - type: Transform -- uid: 15823 - type: SolarPanel - components: - - pos: -54.5,-65.5 - parent: 8364 - type: Transform -- uid: 15824 - type: CableHV - components: - - pos: -54.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15825 - type: SolarPanel - components: - - pos: -54.5,-59.5 - parent: 8364 - type: Transform -- uid: 15826 - type: SolarPanel - components: - - pos: -52.5,-58.5 - parent: 8364 - type: Transform -- uid: 15827 - type: SolarPanel - components: - - pos: -48.5,-56.5 - parent: 8364 - type: Transform -- uid: 15828 - type: SolarPanel - components: - - pos: -50.5,-55.5 - parent: 8364 - type: Transform -- uid: 15829 - type: SolarPanel - components: - - pos: -52.5,-59.5 - parent: 8364 - type: Transform -- uid: 15830 - type: CableHV - components: - - pos: -52.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15831 - type: CableHV - components: - - pos: -49.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15832 - type: CableHV - components: - - pos: -49.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15833 - type: CableHV - components: - - pos: -50.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15834 - type: CableHV - components: - - pos: -50.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15835 - type: SolarPanel - components: - - pos: -52.5,-55.5 - parent: 8364 - type: Transform -- uid: 15836 - type: CableHV - components: - - pos: -52.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15837 - type: CableHV - components: - - pos: -52.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15838 - type: CableHV - components: - - pos: -54.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15839 - type: CableHV - components: - - pos: -54.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15840 - type: CableMV - components: - - pos: -37.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15841 - type: SolarPanel - components: - - pos: -48.5,-58.5 - parent: 8364 - type: Transform -- uid: 15842 - type: CableHV - components: - - pos: -53.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15843 - type: CableHV - components: - - pos: -52.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15844 - type: CableHV - components: - - pos: -52.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15845 - type: SolarPanel - components: - - pos: -46.5,-57.5 - parent: 8364 - type: Transform -- uid: 15846 - type: CableHV - components: - - pos: -36.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15847 - type: CableHV - components: - - pos: -38.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15848 - type: CableHV - components: - - pos: -37.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15849 - type: SolarPanel - components: - - pos: -54.5,-57.5 - parent: 8364 - type: Transform -- uid: 15850 - type: CableHV - components: - - pos: -54.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15851 - type: SolarPanel - components: - - pos: -52.5,-64.5 - parent: 8364 - type: Transform -- uid: 15852 - type: SolarPanel - components: - - pos: -54.5,-66.5 - parent: 8364 - type: Transform -- uid: 15853 - type: SolarPanel - components: - - pos: -48.5,-67.5 - parent: 8364 - type: Transform -- uid: 15854 - type: SolarPanel - components: - - pos: -50.5,-65.5 - parent: 8364 - type: Transform -- uid: 15855 - type: SolarPanel - components: - - pos: -46.5,-66.5 - parent: 8364 - type: Transform -- uid: 15856 - type: SolarPanel - components: - - pos: -44.5,-64.5 - parent: 8364 - type: Transform -- uid: 15857 - type: CableHV - components: - - pos: -53.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15858 - type: CableHV - components: - - pos: -53.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15859 - type: CableHV - components: - - pos: -53.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15860 - type: CableHV - components: - - pos: -54.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15861 - type: CableHV - components: - - pos: -52.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15862 - type: CableHV - components: - - pos: -54.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15863 - type: CableHV - components: - - pos: -54.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15864 - type: CableHV - components: - - pos: -52.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15865 - type: CableHV - components: - - pos: -50.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15866 - type: CableHV - components: - - pos: -50.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15867 - type: CableHV - components: - - pos: -48.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15868 - type: CableHV - components: - - pos: -50.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15869 - type: CableHV - components: - - pos: -36.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15870 - type: CableApcExtension - components: - - pos: -21.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15871 - type: Catwalk - components: - - pos: 47.5,37.5 - parent: 8364 - type: Transform -- uid: 15872 - type: Catwalk - components: - - pos: 47.5,36.5 - parent: 8364 - type: Transform -- uid: 15873 - type: Catwalk - components: - - pos: 47.5,35.5 - parent: 8364 - type: Transform -- uid: 15874 - type: Catwalk - components: - - pos: 47.5,34.5 - parent: 8364 - type: Transform -- uid: 15875 - type: CableHV - components: - - pos: 13.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15876 - type: Catwalk - components: - - pos: 2.5,-67.5 - parent: 8364 - type: Transform -- uid: 15877 - type: Catwalk - components: - - pos: 0.5,-67.5 - parent: 8364 - type: Transform -- uid: 15878 - type: Catwalk - components: - - pos: 5.5,-67.5 - parent: 8364 - type: Transform -- uid: 15879 - type: Catwalk - components: - - pos: 3.5,-67.5 - parent: 8364 - type: Transform -- uid: 15880 - type: Catwalk - components: - - pos: 4.5,-67.5 - parent: 8364 - type: Transform -- uid: 15881 - type: Catwalk - components: - - pos: 1.5,-67.5 - parent: 8364 - type: Transform -- uid: 15882 - type: Catwalk - components: - - pos: -0.5,-67.5 - parent: 8364 - type: Transform -- uid: 15883 - type: Catwalk - components: - - pos: -1.5,-67.5 - parent: 8364 - type: Transform -- uid: 15884 - type: Catwalk - components: - - pos: -5.5,-67.5 - parent: 8364 - type: Transform -- uid: 15885 - type: Catwalk - components: - - pos: -2.5,-67.5 - parent: 8364 - type: Transform -- uid: 15886 - type: Catwalk - components: - - pos: -3.5,-67.5 - parent: 8364 - type: Transform -- uid: 15887 - type: Catwalk - components: - - pos: -4.5,-67.5 - parent: 8364 - type: Transform -- uid: 15888 - type: SpawnPointAtmos - components: - - pos: 12.5,-51.5 - parent: 8364 - type: Transform -- uid: 15889 - type: SpawnPointAtmos - components: - - pos: 12.5,-52.5 - parent: 8364 - type: Transform -- uid: 15890 - type: SpawnPointAtmos - components: - - pos: 12.5,-50.5 - parent: 8364 - type: Transform -- uid: 15891 - type: Catwalk - components: - - pos: 8.5,-67.5 - parent: 8364 - type: Transform -- uid: 15892 - type: Catwalk - components: - - pos: 7.5,-67.5 - parent: 8364 - type: Transform -- uid: 15893 - type: Catwalk - components: - - pos: 6.5,-67.5 - parent: 8364 - type: Transform -- uid: 15894 - type: Catwalk - components: - - pos: 47.5,33.5 - parent: 8364 - type: Transform -- uid: 15895 - type: Catwalk - components: - - pos: 47.5,32.5 - parent: 8364 - type: Transform -- uid: 15896 - type: Catwalk - components: - - pos: 47.5,31.5 - parent: 8364 - type: Transform -- uid: 15897 - type: SignEngineering - components: - - pos: 1.5,-54.5 - parent: 8364 - type: Transform -- uid: 15898 - type: FirelockGlass - components: - - pos: 2.5,-44.5 - parent: 8364 - type: Transform -- uid: 15899 - type: AirlockExternalGlassAtmosphericsLocked - components: - - pos: 23.5,-60.5 - parent: 8364 - type: Transform -- uid: 15900 - type: Catwalk - components: - - pos: 47.5,30.5 - parent: 8364 - type: Transform -- uid: 15901 - type: Catwalk - components: - - pos: 47.5,29.5 - parent: 8364 - type: Transform -- uid: 15902 - type: Catwalk - components: - - pos: 47.5,28.5 - parent: 8364 - type: Transform -- uid: 15903 - type: SignFire - components: - - pos: 9.5,-59.5 - parent: 8364 - type: Transform -- uid: 15904 - type: CableHV - components: - - pos: -31.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15905 - type: CableHV - components: - - pos: -33.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15906 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-25.5 - parent: 8364 - type: Transform -- uid: 15907 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-54.5 - parent: 8364 - type: Transform -- uid: 15908 - type: Catwalk - components: - - pos: 47.5,27.5 - parent: 8364 - type: Transform -- uid: 15909 - type: Catwalk - components: - - pos: 47.5,26.5 - parent: 8364 - type: Transform -- uid: 15910 - type: Catwalk - components: - - pos: 47.5,25.5 - parent: 8364 - type: Transform -- uid: 15911 - type: Catwalk - components: - - pos: 47.5,24.5 - parent: 8364 - type: Transform -- uid: 15912 - type: SolarPanel - components: - - pos: 53.5,30.5 - parent: 8364 - type: Transform -- uid: 15913 - type: SolarPanel - components: - - pos: 53.5,28.5 - parent: 8364 - type: Transform -- uid: 15914 - type: SolarPanel - components: - - pos: 49.5,28.5 - parent: 8364 - type: Transform -- uid: 15915 - type: SolarPanel - components: - - pos: 45.5,30.5 - parent: 8364 - type: Transform -- uid: 15916 - type: CableHV - components: - - pos: 47.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15917 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 47.5,20.5 - parent: 8364 - type: Transform -- uid: 15918 - type: CableHV - components: - - pos: 46.5,18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15919 - type: ChairOfficeDark - components: - - pos: -27.5,-26.5 - parent: 8364 - type: Transform -- uid: 15920 - type: SignDirectionalEng - components: - - pos: -2.495048,-32.707497 - parent: 8364 - type: Transform -- uid: 15921 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: -2.495048,-32.301247 - parent: 8364 - type: Transform -- uid: 15922 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-32.5 - parent: 8364 - type: Transform -- uid: 15923 - type: SignDirectionalEng - components: - - pos: 17.493805,-15.696056 - parent: 8364 - type: Transform -- uid: 15924 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: 17.493805,-15.305431 - parent: 8364 - type: Transform -- uid: 15925 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-15.5 - parent: 8364 - type: Transform -- uid: 15926 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 17.499279,-11.288156 - parent: 8364 - type: Transform -- uid: 15927 - type: CableApcExtension - components: - - pos: -21.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15928 - type: WaterTankFull - components: - - pos: -15.5,-46.5 - parent: 8364 - type: Transform -- uid: 15929 - type: WeldingFuelTankFull - components: - - pos: -34.5,-58.5 - parent: 8364 - type: Transform -- uid: 15930 - type: WaterTankFull - components: - - pos: -33.5,-58.5 - parent: 8364 - type: Transform -- uid: 15931 - type: NitrogenCanister - components: - - pos: -18.5,-62.5 - parent: 8364 - type: Transform -- uid: 15932 - type: OxygenCanister - components: - - pos: -18.5,-61.5 - parent: 8364 - type: Transform -- uid: 15933 - type: AirCanister - components: - - pos: -16.5,-59.5 - parent: 8364 - type: Transform -- uid: 15934 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -18.5,-62.5 - parent: 8364 - type: Transform -- uid: 15935 - type: ClosetMaintenanceFilledRandom - components: - - pos: -29.5,-43.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 15936 - type: ClosetEmergencyFilledRandom - components: - - pos: -28.5,-43.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 15937 - type: CrateGenericSteel - components: - - pos: -32.5,-43.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 15938 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-11.5 - parent: 8364 - type: Transform -- uid: 15939 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: 1.504663,2.2990081 - parent: 8364 - type: Transform -- uid: 15940 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 1.504663,2.7208831 - parent: 8364 - type: Transform -- uid: 15941 - type: Catwalk - components: - - pos: -55.5,29.5 - parent: 8364 - type: Transform -- uid: 15942 - type: Catwalk - components: - - pos: -54.5,29.5 - parent: 8364 - type: Transform -- uid: 15943 - type: Catwalk - components: - - pos: -53.5,29.5 - parent: 8364 - type: Transform -- uid: 15944 - type: Barricade - components: - - pos: -19.5,-53.5 - parent: 8364 - type: Transform -- uid: 15945 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-58.5 - parent: 8364 - type: Transform -- uid: 15946 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-57.5 - parent: 8364 - type: Transform -- uid: 15947 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-58.5 - parent: 8364 - type: Transform -- uid: 15948 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-49.5 - parent: 8364 - type: Transform -- uid: 15949 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-49.5 - parent: 8364 - type: Transform -- uid: 15950 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-50.5 - parent: 8364 - type: Transform -- uid: 15951 - type: CrateGenericSteel - components: - - pos: -20.5,-58.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 15952 - type: ClosetBase - components: - - pos: -20.5,-49.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 15953 - type: Table - components: - - pos: -28.5,-52.5 - parent: 8364 - type: Transform -- uid: 15954 - type: Table - components: - - pos: -28.5,-53.5 - parent: 8364 - type: Transform -- uid: 15955 - type: Table - components: - - pos: -28.5,-54.5 - parent: 8364 - type: Transform -- uid: 15956 - type: Table - components: - - pos: -28.5,-55.5 - parent: 8364 - type: Transform -- uid: 15957 - type: ToySpawner - components: - - pos: -28.5,-55.5 - parent: 8364 - type: Transform -- uid: 15958 - type: SheetGlass - components: - - pos: -28.687122,-52.44169 - parent: 8364 - type: Transform -- uid: 15959 - type: SheetRGlass - components: - - pos: -28.390247,-52.707314 - parent: 8364 - type: Transform -- uid: 15960 - type: SheetSteel - components: - - pos: -28.671497,-53.41044 - parent: 8364 - type: Transform -- uid: 15961 - type: PartRodMetal - components: - - pos: -28.374622,-53.801064 - parent: 8364 - type: Transform -- uid: 15962 - type: CableApcStack - components: - - pos: -28.687122,-54.44169 - parent: 8364 - type: Transform -- uid: 15963 - type: CableMVStack - components: - - pos: -28.562122,-54.582314 - parent: 8364 - type: Transform -- uid: 15964 - type: CableHVStack - components: - - pos: -28.452747,-54.81669 - parent: 8364 - type: Transform -- uid: 15965 - type: Catwalk - components: - - pos: -52.5,29.5 - parent: 8364 - type: Transform -- uid: 15966 - type: Catwalk - components: - - pos: -51.5,29.5 - parent: 8364 - type: Transform -- uid: 15967 - type: Rack - components: - - pos: -31.5,-74.5 - parent: 8364 - type: Transform -- uid: 15968 - type: Catwalk - components: - - pos: -50.5,29.5 - parent: 8364 - type: Transform -- uid: 15969 - type: Crowbar - components: - - pos: -24.345285,-43.747276 - parent: 8364 - type: Transform -- uid: 15970 - type: Catwalk - components: - - pos: -48.5,29.5 - parent: 8364 - type: Transform -- uid: 15971 - type: Wrench - components: - - pos: -25.576,-43.60518 - parent: 8364 - type: Transform -- uid: 15972 - type: Catwalk - components: - - pos: -47.5,29.5 - parent: 8364 - type: Transform -- uid: 15973 - type: Catwalk - components: - - pos: -46.5,29.5 - parent: 8364 - type: Transform -- uid: 15974 - type: Catwalk - components: - - pos: -45.5,29.5 - parent: 8364 - type: Transform -- uid: 15975 - type: ToolboxMechanicalFilled - components: - - pos: -34.5,-63.5 - parent: 8364 - type: Transform -- uid: 15976 - type: ToolboxMechanicalFilled - components: - - pos: -29.300238,-45.38687 - parent: 8364 - type: Transform -- uid: 15977 - type: ToolboxElectricalFilled - components: - - rot: 0.0005229588132351637 rad - pos: -29.737185,-45.684746 - parent: 8364 - type: Transform -- uid: 15978 - type: ClothingBeltUtility - components: - - pos: -34.5,-60.5 - parent: 8364 - type: Transform -- uid: 15979 - type: Rack - components: - - pos: -18.5,-64.5 - parent: 8364 - type: Transform -- uid: 15980 - type: Rack - components: - - pos: -34.5,-60.5 - parent: 8364 - type: Transform -- uid: 15981 - type: Rack - components: - - pos: -18.5,-65.5 - parent: 8364 - type: Transform -- uid: 15982 - type: Catwalk - components: - - pos: -44.5,29.5 - parent: 8364 - type: Transform -- uid: 15983 - type: ClothingBeltUtility - components: - - pos: -18.5,-64.5 - parent: 8364 - type: Transform -- uid: 15984 - type: ClothingHeadHatWelding - components: - - pos: 7.5731544,-44.46618 - parent: 8364 - type: Transform -- uid: 15985 - type: Rack - components: - - pos: -24.5,-43.5 - parent: 8364 - type: Transform -- uid: 15986 - type: Rack - components: - - pos: -25.5,-43.5 - parent: 8364 - type: Transform -- uid: 15987 - type: Rack - components: - - pos: -26.5,-43.5 - parent: 8364 - type: Transform -- uid: 15988 - type: Rack - components: - - pos: -29.5,-45.5 - parent: 8364 - type: Transform -- uid: 15989 - type: Catwalk - components: - - pos: -43.5,29.5 - parent: 8364 - type: Transform -- uid: 15990 - type: SolarPanel - components: - - pos: -50.5,-67.5 - parent: 8364 - type: Transform - - supplyRate: 1493 - type: PowerSupplier -- uid: 15991 - type: SolarPanel - components: - - pos: -50.5,-66.5 - parent: 8364 - type: Transform -- uid: 15992 - type: Catwalk - components: - - pos: -43.5,33.5 - parent: 8364 - type: Transform -- uid: 15993 - type: Catwalk - components: - - pos: -44.5,33.5 - parent: 8364 - type: Transform -- uid: 15994 - type: SolarPanel - components: - - pos: -50.5,-63.5 - parent: 8364 - type: Transform -- uid: 15995 - type: Catwalk - components: - - pos: -45.5,33.5 - parent: 8364 - type: Transform -- uid: 15996 - type: SolarPanel - components: - - pos: -48.5,-66.5 - parent: 8364 - type: Transform - - supplyRate: 1493 - type: PowerSupplier -- uid: 15997 - type: SolarPanel - components: - - pos: -48.5,-65.5 - parent: 8364 - type: Transform -- uid: 15998 - type: SolarPanel - components: - - pos: -48.5,-64.5 - parent: 8364 - type: Transform -- uid: 15999 - type: SolarPanel - components: - - pos: -48.5,-63.5 - parent: 8364 - type: Transform -- uid: 16000 - type: SolarPanel - components: - - pos: -44.5,-67.5 - parent: 8364 - type: Transform - - supplyRate: 1493 - type: PowerSupplier -- uid: 16001 - type: SolarPanel - components: - - pos: -44.5,-66.5 - parent: 8364 - type: Transform -- uid: 16002 - type: SolarPanel - components: - - pos: -44.5,-65.5 - parent: 8364 - type: Transform -- uid: 16003 - type: Catwalk - components: - - pos: -46.5,33.5 - parent: 8364 - type: Transform -- uid: 16004 - type: SolarPanel - components: - - pos: -44.5,-63.5 - parent: 8364 - type: Transform -- uid: 16005 - type: SolarPanel - components: - - pos: -46.5,-67.5 - parent: 8364 - type: Transform - - supplyRate: 1493 - type: PowerSupplier -- uid: 16006 - type: Catwalk - components: - - pos: -47.5,33.5 - parent: 8364 - type: Transform -- uid: 16007 - type: SolarPanel - components: - - pos: -46.5,-65.5 - parent: 8364 - type: Transform -- uid: 16008 - type: SolarPanel - components: - - pos: -46.5,-64.5 - parent: 8364 - type: Transform -- uid: 16009 - type: SolarPanel - components: - - pos: -46.5,-63.5 - parent: 8364 - type: Transform -- uid: 16010 - type: SolarPanel - components: - - pos: -44.5,-59.5 - parent: 8364 - type: Transform -- uid: 16011 - type: SolarPanel - components: - - pos: -54.5,-64.5 - parent: 8364 - type: Transform -- uid: 16012 - type: SolarPanel - components: - - pos: -44.5,-57.5 - parent: 8364 - type: Transform -- uid: 16013 - type: SolarPanel - components: - - pos: -44.5,-56.5 - parent: 8364 - type: Transform -- uid: 16014 - type: SolarPanel - components: - - pos: -44.5,-55.5 - parent: 8364 - type: Transform -- uid: 16015 - type: SolarPanel - components: - - pos: -46.5,-59.5 - parent: 8364 - type: Transform -- uid: 16016 - type: SolarPanel - components: - - pos: -46.5,-58.5 - parent: 8364 - type: Transform -- uid: 16017 - type: SolarPanel - components: - - pos: -54.5,-63.5 - parent: 8364 - type: Transform -- uid: 16018 - type: SolarPanel - components: - - pos: -46.5,-56.5 - parent: 8364 - type: Transform -- uid: 16019 - type: SolarPanel - components: - - pos: -46.5,-55.5 - parent: 8364 - type: Transform -- uid: 16020 - type: SolarPanel - components: - - pos: -48.5,-59.5 - parent: 8364 - type: Transform -- uid: 16021 - type: Catwalk - components: - - pos: -48.5,33.5 - parent: 8364 - type: Transform -- uid: 16022 - type: SolarPanel - components: - - pos: -48.5,-57.5 - parent: 8364 - type: Transform -- uid: 16023 - type: Catwalk - components: - - pos: -50.5,33.5 - parent: 8364 - type: Transform -- uid: 16024 - type: SolarPanel - components: - - pos: -48.5,-55.5 - parent: 8364 - type: Transform -- uid: 16025 - type: SolarPanel - components: - - pos: -52.5,-67.5 - parent: 8364 - type: Transform - - supplyRate: 1494 - type: PowerSupplier -- uid: 16026 - type: SolarPanel - components: - - pos: -50.5,-58.5 - parent: 8364 - type: Transform -- uid: 16027 - type: SolarPanel - components: - - pos: -50.5,-57.5 - parent: 8364 - type: Transform -- uid: 16028 - type: SolarPanel - components: - - pos: -50.5,-56.5 - parent: 8364 - type: Transform -- uid: 16029 - type: SolarPanel - components: - - pos: -54.5,-67.5 - parent: 8364 - type: Transform - - supplyRate: 1494 - type: PowerSupplier -- uid: 16030 - type: SolarPanel - components: - - pos: -52.5,-66.5 - parent: 8364 - type: Transform -- uid: 16031 - type: SolarPanel - components: - - pos: -52.5,-65.5 - parent: 8364 - type: Transform -- uid: 16032 - type: SolarPanel - components: - - pos: -52.5,-57.5 - parent: 8364 - type: Transform - - supplyRate: 1494 - type: PowerSupplier -- uid: 16033 - type: SolarPanel - components: - - pos: -52.5,-56.5 - parent: 8364 - type: Transform -- uid: 16034 - type: Catwalk - components: - - pos: -51.5,33.5 - parent: 8364 - type: Transform -- uid: 16035 - type: SolarPanel - components: - - pos: -54.5,-56.5 - parent: 8364 - type: Transform -- uid: 16036 - type: SolarPanel - components: - - pos: -54.5,-58.5 - parent: 8364 - type: Transform -- uid: 16037 - type: SolarPanel - components: - - pos: -50.5,-59.5 - parent: 8364 - type: Transform -- uid: 16038 - type: SolarPanel - components: - - pos: -52.5,-63.5 - parent: 8364 - type: Transform -- uid: 16039 - type: SolarPanel - components: - - pos: -54.5,-55.5 - parent: 8364 - type: Transform -- uid: 16040 - type: Catwalk - components: - - pos: -52.5,33.5 - parent: 8364 - type: Transform -- uid: 16041 - type: Catwalk - components: - - pos: -53.5,33.5 - parent: 8364 - type: Transform -- uid: 16042 - type: Catwalk - components: - - pos: -54.5,33.5 - parent: 8364 - type: Transform -- uid: 16043 - type: Catwalk - components: - - pos: -55.5,33.5 - parent: 8364 - type: Transform -- uid: 16044 - type: Catwalk - components: - - pos: -55.5,37.5 - parent: 8364 - type: Transform -- uid: 16045 - type: Catwalk - components: - - pos: -54.5,37.5 - parent: 8364 - type: Transform -- uid: 16046 - type: Catwalk - components: - - pos: -53.5,37.5 - parent: 8364 - type: Transform -- uid: 16047 - type: Catwalk - components: - - pos: -52.5,37.5 - parent: 8364 - type: Transform -- uid: 16048 - type: Catwalk - components: - - pos: -51.5,37.5 - parent: 8364 - type: Transform -- uid: 16049 - type: Catwalk - components: - - pos: -50.5,37.5 - parent: 8364 - type: Transform -- uid: 16050 - type: Catwalk - components: - - pos: -43.5,37.5 - parent: 8364 - type: Transform -- uid: 16051 - type: Catwalk - components: - - pos: -44.5,37.5 - parent: 8364 - type: Transform -- uid: 16052 - type: Catwalk - components: - - pos: -45.5,37.5 - parent: 8364 - type: Transform -- uid: 16053 - type: Catwalk - components: - - pos: -46.5,37.5 - parent: 8364 - type: Transform -- uid: 16054 - type: Catwalk - components: - - pos: -47.5,37.5 - parent: 8364 - type: Transform -- uid: 16055 - type: Catwalk - components: - - pos: -48.5,37.5 - parent: 8364 - type: Transform -- uid: 16056 - type: Catwalk - components: - - pos: -49.5,40.5 - parent: 8364 - type: Transform -- uid: 16057 - type: SignAtmosMinsky - components: - - pos: 3.5,-50.5 - parent: 8364 - type: Transform -- uid: 16058 - type: Catwalk - components: - - pos: -49.5,39.5 - parent: 8364 - type: Transform -- uid: 16059 - type: Catwalk - components: - - pos: -49.5,38.5 - parent: 8364 - type: Transform -- uid: 16060 - type: Catwalk - components: - - pos: -49.5,37.5 - parent: 8364 - type: Transform -- uid: 16061 - type: Catwalk - components: - - pos: -49.5,36.5 - parent: 8364 - type: Transform -- uid: 16062 - type: CableHV - components: - - pos: -41.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16063 - type: CableHV - components: - - pos: -40.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16064 - type: CableHV - components: - - pos: -39.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16065 - type: Catwalk - components: - - pos: -49.5,35.5 - parent: 8364 - type: Transform -- uid: 16066 - type: Catwalk - components: - - pos: -49.5,34.5 - parent: 8364 - type: Transform -- uid: 16067 - type: Catwalk - components: - - pos: -49.5,33.5 - parent: 8364 - type: Transform -- uid: 16068 - type: Catwalk - components: - - pos: -49.5,32.5 - parent: 8364 - type: Transform -- uid: 16069 - type: Catwalk - components: - - pos: -49.5,31.5 - parent: 8364 - type: Transform -- uid: 16070 - type: Catwalk - components: - - pos: -49.5,30.5 - parent: 8364 - type: Transform -- uid: 16071 - type: Catwalk - components: - - pos: -49.5,29.5 - parent: 8364 - type: Transform -- uid: 16072 - type: Catwalk - components: - - pos: -49.5,28.5 - parent: 8364 - type: Transform -- uid: 16073 - type: Catwalk - components: - - pos: -49.5,27.5 - parent: 8364 - type: Transform -- uid: 16074 - type: Catwalk - components: - - pos: -49.5,23.5 - parent: 8364 - type: Transform -- uid: 16075 - type: Catwalk - components: - - pos: -49.5,22.5 - parent: 8364 - type: Transform -- uid: 16076 - type: Catwalk - components: - - pos: -49.5,21.5 - parent: 8364 - type: Transform -- uid: 16077 - type: Catwalk - components: - - pos: -49.5,19.5 - parent: 8364 - type: Transform -- uid: 16078 - type: Catwalk - components: - - pos: -49.5,18.5 - parent: 8364 - type: Transform -- uid: 16079 - type: Catwalk - components: - - pos: -49.5,17.5 - parent: 8364 - type: Transform -- uid: 16080 - type: Catwalk - components: - - pos: -48.5,17.5 - parent: 8364 - type: Transform -- uid: 16081 - type: CableHV - components: - - pos: -13.5,-15.5 - parent: 8364 - type: Transform -- uid: 16082 - type: VendingMachineAtmosDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,-45.5 - parent: 8364 - type: Transform -- uid: 16083 - type: Catwalk - components: - - pos: -48.5,16.5 - parent: 8364 - type: Transform -- uid: 16084 - type: Catwalk - components: - - pos: -48.5,15.5 - parent: 8364 - type: Transform -- uid: 16085 - type: Catwalk - components: - - pos: -48.5,14.5 - parent: 8364 - type: Transform -- uid: 16086 - type: Catwalk - components: - - pos: -48.5,13.5 - parent: 8364 - type: Transform -- uid: 16087 - type: Catwalk - components: - - pos: -47.5,13.5 - parent: 8364 - type: Transform -- uid: 16088 - type: CableHV - components: - - pos: -47.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16089 - type: SMESBasic - components: - - pos: -38.5,-62.5 - parent: 8364 - type: Transform -- uid: 16090 - type: ComputerSolarControl - components: - - pos: -37.5,-60.5 - parent: 8364 - type: Transform -- uid: 16091 - type: CableHV - components: - - pos: -48.5,13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16092 - type: CableHV - components: - - pos: -48.5,14.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16093 - type: CableHV - components: - - pos: -48.5,15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16094 - type: CableMV - components: - - pos: -37.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16095 - type: CableMV - components: - - pos: -36.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16096 - type: CableMV - components: - - pos: -34.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16097 - type: CableMV - components: - - pos: -35.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16098 - type: CableMV - components: - - pos: -33.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16099 - type: CableMV - components: - - pos: -32.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16100 - type: CableHV - components: - - pos: -48.5,16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16101 - type: AirlockEngineeringLocked - components: - - name: Port Quarter Solars - type: MetaData - - pos: -35.5,-61.5 - parent: 8364 - type: Transform -- uid: 16102 - type: Rack - components: - - pos: -4.5,-35.5 - parent: 8364 - type: Transform -- uid: 16103 - type: Rack - components: - - pos: -5.5,-35.5 - parent: 8364 - type: Transform -- uid: 16104 - type: Rack - components: - - pos: -6.5,-35.5 - parent: 8364 - type: Transform -- uid: 16105 - type: Rack - components: - - pos: -4.5,-37.5 - parent: 8364 - type: Transform -- uid: 16106 - type: Rack - components: - - pos: -5.5,-37.5 - parent: 8364 - type: Transform -- uid: 16107 - type: Rack - components: - - pos: -6.5,-37.5 - parent: 8364 - type: Transform -- uid: 16108 - type: Rack - components: - - pos: -5.5,-39.5 - parent: 8364 - type: Transform -- uid: 16109 - type: Rack - components: - - pos: -6.5,-39.5 - parent: 8364 - type: Transform -- uid: 16110 - type: Rack - components: - - pos: -13.5,-35.5 - parent: 8364 - type: Transform -- uid: 16111 - type: Rack - components: - - pos: -13.5,-36.5 - parent: 8364 - type: Transform -- uid: 16112 - type: Rack - components: - - pos: -13.5,-37.5 - parent: 8364 - type: Transform -- uid: 16113 - type: Table - components: - - pos: -4.5,-33.5 - parent: 8364 - type: Transform -- uid: 16114 - type: Table - components: - - pos: -5.5,-33.5 - parent: 8364 - type: Transform -- uid: 16115 - type: Table - components: - - pos: -10.5,-33.5 - parent: 8364 - type: Transform -- uid: 16116 - type: Table - components: - - pos: -9.5,-33.5 - parent: 8364 - type: Transform -- uid: 16117 - type: Table - components: - - pos: -8.5,-33.5 - parent: 8364 - type: Transform -- uid: 16118 - type: Table - components: - - pos: -8.5,-34.5 - parent: 8364 - type: Transform -- uid: 16119 - type: Table - components: - - pos: -8.5,-35.5 - parent: 8364 - type: Transform -- uid: 16120 - type: Table - components: - - pos: -10.5,-34.5 - parent: 8364 - type: Transform -- uid: 16121 - type: Table - components: - - pos: -10.5,-38.5 - parent: 8364 - type: Transform -- uid: 16122 - type: Table - components: - - pos: -10.5,-39.5 - parent: 8364 - type: Transform -- uid: 16123 - type: Table - components: - - pos: -9.5,-39.5 - parent: 8364 - type: Transform -- uid: 16124 - type: Table - components: - - pos: -8.5,-39.5 - parent: 8364 - type: Transform -- uid: 16125 - type: Table - components: - - pos: -8.5,-38.5 - parent: 8364 - type: Transform -- uid: 16126 - type: Table - components: - - pos: -8.5,-37.5 - parent: 8364 - type: Transform -- uid: 16127 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-39.5 - parent: 8364 - type: Transform -- uid: 16128 - type: AirlockExternalEngineeringLocked - components: - - pos: 12.5,-76.5 - parent: 8364 - type: Transform -- uid: 16129 - type: AirlockEngineeringLocked - components: - - name: 'Technical Storage ' - type: MetaData - - pos: -2.5,-36.5 - parent: 8364 - type: Transform -- uid: 16130 - type: AtmosFixNitrogenMarker - components: - - pos: 13.5,-65.5 - parent: 8364 - type: Transform -- uid: 16131 - type: CableMV - components: - - pos: -15.5,-67.5 - parent: 8364 - type: Transform -- uid: 16132 - type: CableMV - components: - - pos: -18.5,-69.5 - parent: 8364 - type: Transform -- uid: 16133 - type: CableMV - components: - - pos: -17.5,-69.5 - parent: 8364 - type: Transform -- uid: 16134 - type: CableMV - components: - - pos: -15.5,-68.5 - parent: 8364 - type: Transform -- uid: 16135 - type: CableHV - components: - - pos: -20.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16136 - type: CableMV - components: - - pos: -19.5,-69.5 - parent: 8364 - type: Transform -- uid: 16137 - type: SubstationBasic - components: - - name: Engineering Substation - type: MetaData - - pos: -20.5,-66.5 - parent: 8364 - type: Transform -- uid: 16138 - type: ClothingNeckScarfStripedRed - components: - - pos: -38.611267,-58.59867 - parent: 8364 - type: Transform -- uid: 16139 - type: CableHV - components: - - pos: -48.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16140 - type: CableMV - components: - - pos: -15.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16141 - type: CableMV - components: - - pos: -20.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16142 - type: CableMV - components: - - pos: -15.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16143 - type: CableMV - components: - - pos: -12.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16144 - type: CableMV - components: - - pos: -11.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16145 - type: AirlockEngineeringLocked - components: - - pos: -19.5,-71.5 - parent: 8364 - type: Transform -- uid: 16146 - type: LockerWeldingSuppliesFilled - components: - - pos: -20.5,-72.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16147 - type: CableMV - components: - - pos: -16.5,-69.5 - parent: 8364 - type: Transform -- uid: 16148 - type: CableMV - components: - - pos: -15.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16149 - type: CableMV - components: - - pos: -15.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16150 - type: CableMV - components: - - pos: -15.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16151 - type: CableMV - components: - - pos: -15.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16152 - type: CableMV - components: - - pos: -13.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16153 - type: CableApcExtension - components: - - pos: -19.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16154 - type: CableHV - components: - - pos: -20.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16155 - type: CableMV - components: - - pos: -15.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16156 - type: CableMV - components: - - pos: -15.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16157 - type: CableMV - components: - - pos: -14.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16158 - type: CableMV - components: - - pos: -20.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16159 - type: CableMV - components: - - pos: -10.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16160 - type: CableMV - components: - - pos: -9.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16161 - type: CableMV - components: - - pos: -8.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16162 - type: CableMV - components: - - pos: -7.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16163 - type: CableMV - components: - - pos: -6.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16164 - type: CableMV - components: - - pos: -5.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16165 - type: CableMV - components: - - pos: -4.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16166 - type: CableMV - components: - - pos: -3.5,-59.5 - parent: 8364 - type: Transform -- uid: 16167 - type: CableMV - components: - - pos: -2.5,-59.5 - parent: 8364 - type: Transform -- uid: 16168 - type: CableMV - components: - - pos: -2.5,-58.5 - parent: 8364 - type: Transform -- uid: 16169 - type: CableMV - components: - - pos: -2.5,-57.5 - parent: 8364 - type: Transform -- uid: 16170 - type: CableMV - components: - - pos: -1.5,-57.5 - parent: 8364 - type: Transform -- uid: 16171 - type: CableMV - components: - - pos: -0.5,-57.5 - parent: 8364 - type: Transform -- uid: 16172 - type: CableMV - components: - - pos: -0.5,-56.5 - parent: 8364 - type: Transform -- uid: 16173 - type: CableMV - components: - - pos: -0.5,-55.5 - parent: 8364 - type: Transform -- uid: 16174 - type: CableMV - components: - - pos: -0.5,-54.5 - parent: 8364 - type: Transform -- uid: 16175 - type: CableMV - components: - - pos: -0.5,-53.5 - parent: 8364 - type: Transform -- uid: 16176 - type: CableMV - components: - - pos: -0.5,-52.5 - parent: 8364 - type: Transform -- uid: 16177 - type: CableMV - components: - - pos: -0.5,-51.5 - parent: 8364 - type: Transform -- uid: 16178 - type: CableMV - components: - - pos: -0.5,-50.5 - parent: 8364 - type: Transform -- uid: 16179 - type: CableMV - components: - - pos: -0.5,-49.5 - parent: 8364 - type: Transform -- uid: 16180 - type: CableMV - components: - - pos: -0.5,-48.5 - parent: 8364 - type: Transform -- uid: 16181 - type: CableMV - components: - - pos: -0.5,-47.5 - parent: 8364 - type: Transform -- uid: 16182 - type: CableMV - components: - - pos: -0.5,-46.5 - parent: 8364 - type: Transform -- uid: 16183 - type: CableMV - components: - - pos: -0.5,-45.5 - parent: 8364 - type: Transform -- uid: 16184 - type: CableMV - components: - - pos: -0.5,-44.5 - parent: 8364 - type: Transform -- uid: 16185 - type: CableMV - components: - - pos: -0.5,-43.5 - parent: 8364 - type: Transform -- uid: 16186 - type: CableMV - components: - - pos: -0.5,-42.5 - parent: 8364 - type: Transform -- uid: 16187 - type: CableMV - components: - - pos: -0.5,-41.5 - parent: 8364 - type: Transform -- uid: 16188 - type: CableMV - components: - - pos: -0.5,-40.5 - parent: 8364 - type: Transform -- uid: 16189 - type: CableMV - components: - - pos: -0.5,-39.5 - parent: 8364 - type: Transform -- uid: 16190 - type: CableMV - components: - - pos: -0.5,-38.5 - parent: 8364 - type: Transform -- uid: 16191 - type: CableMV - components: - - pos: -0.5,-37.5 - parent: 8364 - type: Transform -- uid: 16192 - type: CableMV - components: - - pos: -0.5,-36.5 - parent: 8364 - type: Transform -- uid: 16193 - type: CableMV - components: - - pos: -1.5,-36.5 - parent: 8364 - type: Transform -- uid: 16194 - type: CableMV - components: - - pos: -2.5,-36.5 - parent: 8364 - type: Transform -- uid: 16195 - type: CableMV - components: - - pos: -3.5,-36.5 - parent: 8364 - type: Transform -- uid: 16196 - type: CableMV - components: - - pos: -4.5,-36.5 - parent: 8364 - type: Transform -- uid: 16197 - type: CableMV - components: - - pos: -5.5,-36.5 - parent: 8364 - type: Transform -- uid: 16198 - type: CableMV - components: - - pos: -6.5,-36.5 - parent: 8364 - type: Transform -- uid: 16199 - type: CableMV - components: - - pos: -7.5,-36.5 - parent: 8364 - type: Transform -- uid: 16200 - type: CableMV - components: - - pos: -8.5,-36.5 - parent: 8364 - type: Transform -- uid: 16201 - type: CableMV - components: - - pos: -9.5,-36.5 - parent: 8364 - type: Transform -- uid: 16202 - type: CableMV - components: - - pos: -10.5,-36.5 - parent: 8364 - type: Transform -- uid: 16203 - type: CableMV - components: - - pos: -10.5,-35.5 - parent: 8364 - type: Transform -- uid: 16204 - type: CableMV - components: - - pos: -11.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16205 - type: CableMV - components: - - pos: -14.5,-69.5 - parent: 8364 - type: Transform -- uid: 16206 - type: CableMV - components: - - pos: -13.5,-69.5 - parent: 8364 - type: Transform -- uid: 16207 - type: CableMV - components: - - pos: -12.5,-69.5 - parent: 8364 - type: Transform -- uid: 16208 - type: CableMV - components: - - pos: -11.5,-69.5 - parent: 8364 - type: Transform -- uid: 16209 - type: CableMV - components: - - pos: -10.5,-69.5 - parent: 8364 - type: Transform -- uid: 16210 - type: CableMV - components: - - pos: -9.5,-69.5 - parent: 8364 - type: Transform -- uid: 16211 - type: CableMV - components: - - pos: -9.5,-68.5 - parent: 8364 - type: Transform -- uid: 16212 - type: Grille - components: - - pos: -8.5,-72.5 - parent: 8364 - type: Transform -- uid: 16213 - type: CableMV - components: - - pos: -8.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16214 - type: CableMV - components: - - pos: -7.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16215 - type: CableMV - components: - - pos: -6.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16216 - type: CableMV - components: - - pos: -5.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16217 - type: CableMV - components: - - pos: -4.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16218 - type: CableMV - components: - - pos: -3.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16219 - type: CableMV - components: - - pos: -2.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16220 - type: CableMV - components: - - pos: -1.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16221 - type: CableMV - components: - - pos: -0.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16222 - type: CableMV - components: - - pos: 0.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16223 - type: CableMV - components: - - pos: 1.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16224 - type: CableMV - components: - - pos: 2.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16225 - type: CableMV - components: - - pos: 3.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16226 - type: CableMV - components: - - pos: 4.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16227 - type: CableMV - components: - - pos: 5.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16228 - type: CableMV - components: - - pos: 6.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16229 - type: CableMV - components: - - pos: 7.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16230 - type: CableMV - components: - - pos: 8.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16231 - type: CableMV - components: - - pos: 8.5,-66.5 - parent: 8364 - type: Transform -- uid: 16232 - type: CableMV - components: - - pos: 8.5,-65.5 - parent: 8364 - type: Transform -- uid: 16233 - type: CableMV - components: - - pos: 8.5,-64.5 - parent: 8364 - type: Transform -- uid: 16234 - type: CableMV - components: - - pos: 8.5,-63.5 - parent: 8364 - type: Transform -- uid: 16235 - type: CableMV - components: - - pos: 8.5,-62.5 - parent: 8364 - type: Transform -- uid: 16236 - type: CableMV - components: - - pos: 8.5,-61.5 - parent: 8364 - type: Transform -- uid: 16237 - type: CableMV - components: - - pos: 8.5,-60.5 - parent: 8364 - type: Transform -- uid: 16238 - type: CableMV - components: - - pos: 8.5,-59.5 - parent: 8364 - type: Transform -- uid: 16239 - type: CableMV - components: - - pos: 8.5,-58.5 - parent: 8364 - type: Transform -- uid: 16240 - type: CableMV - components: - - pos: 8.5,-57.5 - parent: 8364 - type: Transform -- uid: 16241 - type: CableMV - components: - - pos: 8.5,-56.5 - parent: 8364 - type: Transform -- uid: 16242 - type: CableMV - components: - - pos: 7.5,-56.5 - parent: 8364 - type: Transform -- uid: 16243 - type: CableMV - components: - - pos: 6.5,-56.5 - parent: 8364 - type: Transform -- uid: 16244 - type: CableMV - components: - - pos: 5.5,-56.5 - parent: 8364 - type: Transform -- uid: 16245 - type: CableMV - components: - - pos: 4.5,-56.5 - parent: 8364 - type: Transform -- uid: 16246 - type: CableMV - components: - - pos: 3.5,-56.5 - parent: 8364 - type: Transform -- uid: 16247 - type: CableMV - components: - - pos: 2.5,-56.5 - parent: 8364 - type: Transform -- uid: 16248 - type: CableMV - components: - - pos: 1.5,-56.5 - parent: 8364 - type: Transform -- uid: 16249 - type: CableMV - components: - - pos: 0.5,-56.5 - parent: 8364 - type: Transform -- uid: 16250 - type: CableApcExtension - components: - - pos: -11.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16251 - type: CableApcExtension - components: - - pos: -10.5,-35.5 - parent: 8364 - type: Transform -- uid: 16252 - type: CableApcExtension - components: - - pos: -9.5,-35.5 - parent: 8364 - type: Transform -- uid: 16253 - type: CableApcExtension - components: - - pos: -9.5,-34.5 - parent: 8364 - type: Transform -- uid: 16254 - type: CableApcExtension - components: - - pos: -8.5,-34.5 - parent: 8364 - type: Transform -- uid: 16255 - type: CableApcExtension - components: - - pos: -7.5,-34.5 - parent: 8364 - type: Transform -- uid: 16256 - type: CableApcExtension - components: - - pos: -6.5,-34.5 - parent: 8364 - type: Transform -- uid: 16257 - type: CableApcExtension - components: - - pos: -5.5,-34.5 - parent: 8364 - type: Transform -- uid: 16258 - type: CableApcExtension - components: - - pos: -4.5,-34.5 - parent: 8364 - type: Transform -- uid: 16259 - type: AtmosFixNitrogenMarker - components: - - pos: 13.5,-64.5 - parent: 8364 - type: Transform -- uid: 16260 - type: CableApcExtension - components: - - pos: -4.5,-35.5 - parent: 8364 - type: Transform -- uid: 16261 - type: CableApcExtension - components: - - pos: -4.5,-36.5 - parent: 8364 - type: Transform -- uid: 16262 - type: CableApcExtension - components: - - pos: -4.5,-37.5 - parent: 8364 - type: Transform -- uid: 16263 - type: CableApcExtension - components: - - pos: -4.5,-38.5 - parent: 8364 - type: Transform -- uid: 16264 - type: CableApcExtension - components: - - pos: -5.5,-38.5 - parent: 8364 - type: Transform -- uid: 16265 - type: CableApcExtension - components: - - pos: -6.5,-38.5 - parent: 8364 - type: Transform -- uid: 16266 - type: CableApcExtension - components: - - pos: -7.5,-38.5 - parent: 8364 - type: Transform -- uid: 16267 - type: CableApcExtension - components: - - pos: -8.5,-38.5 - parent: 8364 - type: Transform -- uid: 16268 - type: CableApcExtension - components: - - pos: -9.5,-38.5 - parent: 8364 - type: Transform -- uid: 16269 - type: CableApcExtension - components: - - pos: -9.5,-37.5 - parent: 8364 - type: Transform -- uid: 16270 - type: CableApcExtension - components: - - pos: -9.5,-36.5 - parent: 8364 - type: Transform -- uid: 16271 - type: CableApcExtension - components: - - pos: -11.5,-36.5 - parent: 8364 - type: Transform -- uid: 16272 - type: CableApcExtension - components: - - pos: -12.5,-36.5 - parent: 8364 - type: Transform -- uid: 16273 - type: CableApcExtension - components: - - pos: -13.5,-36.5 - parent: 8364 - type: Transform -- uid: 16274 - type: CableApcExtension - components: - - pos: -14.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16275 - type: CableApcExtension - components: - - pos: -14.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16276 - type: CableApcExtension - components: - - pos: -14.5,-34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16277 - type: CableApcExtension - components: - - pos: -14.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16278 - type: CableApcExtension - components: - - pos: -14.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16279 - type: CableApcExtension - components: - - pos: -13.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16280 - type: CableApcExtension - components: - - pos: -12.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16281 - type: CableApcExtension - components: - - pos: -11.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16282 - type: CableApcExtension - components: - - pos: -11.5,-34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16283 - type: CableApcExtension - components: - - pos: -12.5,-34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16284 - type: CableApcExtension - components: - - pos: -13.5,-34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16285 - type: AtmosFixNitrogenMarker - components: - - pos: 12.5,-66.5 - parent: 8364 - type: Transform -- uid: 16286 - type: ToolboxElectricalFilled - components: - - pos: -5.5,-39.5 - parent: 8364 - type: Transform -- uid: 16287 - type: ToolboxElectricalFilled - components: - - pos: -6.5,-39.5 - parent: 8364 - type: Transform -- uid: 16288 - type: ClothingEyesGlassesMeson - components: - - pos: -5.5,-39.5 - parent: 8364 - type: Transform -- uid: 16289 - type: Multitool - components: - - pos: -5.5,-39.5 - parent: 8364 - type: Transform -- uid: 16290 - type: Multitool - components: - - pos: -6.5,-39.5 - parent: 8364 - type: Transform -- uid: 16291 - type: trayScanner - components: - - pos: -6.5,-39.5 - parent: 8364 - type: Transform -- uid: 16292 - type: PowerCellRecharger - components: - - pos: -8.5,-34.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16293 - type: PowerCellRecharger - components: - - pos: -8.5,-38.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16294 - type: CableHVStack - components: - - pos: -8.716513,-35.166092 - parent: 8364 - type: Transform -- uid: 16295 - type: CableHVStack - components: - - pos: -8.747763,-37.275467 - parent: 8364 - type: Transform -- uid: 16296 - type: CableMVStack - components: - - pos: -8.529013,-35.369217 - parent: 8364 - type: Transform -- uid: 16297 - type: CableMVStack - components: - - pos: -8.544638,-37.541092 - parent: 8364 - type: Transform -- uid: 16298 - type: CableApcStack - components: - - pos: -8.310263,-35.572342 - parent: 8364 - type: Transform -- uid: 16299 - type: CableApcStack - components: - - pos: -8.325888,-37.791092 - parent: 8364 - type: Transform -- uid: 16300 - type: Flash - components: - - pos: -10.669638,-34.384842 - parent: 8364 - type: Transform -- uid: 16301 - type: FlashlightLantern - components: - - pos: -10.388388,-34.587967 - parent: 8364 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 16302 - type: Screwdriver - components: - - rot: 0.00013372956891544163 rad - pos: -8.435265,-33.26435 - parent: 8364 - type: Transform -- uid: 16303 - type: Wirecutter - components: - - pos: -8.450888,-33.681717 - parent: 8364 - type: Transform -- uid: 16304 - type: DoorElectronics - components: - - pos: -9.622763,-33.275467 - parent: 8364 - type: Transform -- uid: 16305 - type: FirelockElectronics - components: - - pos: -10.185263,-33.478592 - parent: 8364 - type: Transform -- uid: 16306 - type: CableHV - components: - - pos: -49.5,17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16307 - type: Catwalk - components: - - pos: -43.5,12.5 - parent: 8364 - type: Transform -- uid: 16308 - type: Catwalk - components: - - pos: -44.5,12.5 - parent: 8364 - type: Transform -- uid: 16309 - type: Catwalk - components: - - pos: -45.5,12.5 - parent: 8364 - type: Transform -- uid: 16310 - type: Catwalk - components: - - pos: -46.5,12.5 - parent: 8364 - type: Transform -- uid: 16311 - type: Catwalk - components: - - pos: -47.5,12.5 - parent: 8364 - type: Transform -- uid: 16312 - type: AutolatheMachineCircuitboard - components: - - pos: -5.654519,-37.322342 - parent: 8364 - type: Transform -- uid: 16313 - type: ProtolatheMachineCircuitboard - components: - - pos: -5.404519,-37.541092 - parent: 8364 - type: Transform -- uid: 16314 - type: SMESMachineCircuitboard - components: - - pos: -4.685769,-37.353592 - parent: 8364 - type: Transform -- uid: 16315 - type: SubstationMachineCircuitboard - components: - - pos: -4.482644,-37.509842 - parent: 8364 - type: Transform -- uid: 16316 - type: HydroponicsTrayMachineCircuitboard - components: - - pos: -6.560769,-35.478592 - parent: 8364 - type: Transform -- uid: 16317 - type: CloningPodMachineCircuitboard - components: - - pos: -5.732644,-35.369217 - parent: 8364 - type: Transform -- uid: 16318 - type: ChemMasterMachineCircuitboard - components: - - pos: -5.592019,-35.416092 - parent: 8364 - type: Transform -- uid: 16319 - type: ChemDispenserMachineCircuitboard - components: - - pos: -5.482644,-35.431717 - parent: 8364 - type: Transform -- uid: 16320 - type: MedicalScannerMachineCircuitboard - components: - - pos: -4.545144,-35.509842 - parent: 8364 - type: Transform -- uid: 16321 - type: ReagentGrinderMachineCircuitboard - components: - - pos: -6.498269,-35.369217 - parent: 8364 - type: Transform -- uid: 16322 - type: Catwalk - components: - - pos: -47.5,11.5 - parent: 8364 - type: Transform -- uid: 16323 - type: Catwalk - components: - - pos: -47.5,10.5 - parent: 8364 - type: Transform -- uid: 16324 - type: Catwalk - components: - - pos: -47.5,9.5 - parent: 8364 - type: Transform -- uid: 16325 - type: Catwalk - components: - - pos: -48.5,9.5 - parent: 8364 - type: Transform -- uid: 16326 - type: SpaceVillainArcadeComputerCircuitboard - components: - - pos: -6.670475,-35.587967 - parent: 8364 - type: Transform -- uid: 16327 - type: Catwalk - components: - - pos: -49.5,9.5 - parent: 8364 - type: Transform -- uid: 16328 - type: Catwalk - components: - - pos: -49.5,8.5 - parent: 8364 - type: Transform -- uid: 16329 - type: AirAlarmElectronics - components: - - pos: -10.607975,-33.322342 - parent: 8364 - type: Transform -- uid: 16330 - type: FireAlarmElectronics - components: - - pos: -10.4361,-33.822342 - parent: 8364 - type: Transform -- uid: 16331 - type: APCElectronics - components: - - pos: -9.1861,-33.556717 - parent: 8364 - type: Transform -- uid: 16332 - type: CableApcExtension - components: - - pos: -8.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16333 - type: CableApcExtension - components: - - pos: -9.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16334 - type: CableApcExtension - components: - - pos: -11.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16335 - type: CableApcExtension - components: - - pos: -10.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16336 - type: AirlockEngineeringLocked - components: - - name: Construction Area - type: MetaData - - pos: -2.5,-43.5 - parent: 8364 - type: Transform -- uid: 16337 - type: Catwalk - components: - - pos: -49.5,7.5 - parent: 8364 - type: Transform -- uid: 16338 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-36.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 16339 - type: Catwalk - components: - - pos: -49.5,5.5 - parent: 8364 - type: Transform -- uid: 16340 - type: Catwalk - components: - - pos: -49.5,4.5 - parent: 8364 - type: Transform -- uid: 16341 - type: Catwalk - components: - - pos: -49.5,3.5 - parent: 8364 - type: Transform -- uid: 16342 - type: Catwalk - components: - - pos: -49.5,2.5 - parent: 8364 - type: Transform -- uid: 16343 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-35.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16344 - type: Poweredlight - components: - - pos: -7.5,-33.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16345 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-39.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16346 - type: CableApcExtension - components: - - pos: -0.5,-51.5 - parent: 8364 - type: Transform -- uid: 16347 - type: CableApcExtension - components: - - pos: -0.5,-52.5 - parent: 8364 - type: Transform -- uid: 16348 - type: CableApcExtension - components: - - pos: -2.5,-56.5 - parent: 8364 - type: Transform -- uid: 16349 - type: CrystalSubspaceStockPart - components: - - pos: -9.94314,-39.65799 - parent: 8364 - type: Transform -- uid: 16350 - type: CableApcExtension - components: - - pos: -1.5,-56.5 - parent: 8364 - type: Transform -- uid: 16351 - type: CableApcExtension - components: - - pos: 0.5,-56.5 - parent: 8364 - type: Transform -- uid: 16352 - type: CableApcExtension - components: - - pos: -2.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16353 - type: CableApcExtension - components: - - pos: -1.5,-53.5 - parent: 8364 - type: Transform -- uid: 16354 - type: FilterSubspaceStockPart - components: - - pos: -8.945715,-39.591064 - parent: 8364 - type: Transform -- uid: 16355 - type: MatterBinStockPart - components: - - pos: -8.245951,-39.650208 - parent: 8364 - type: Transform -- uid: 16356 - type: MicroLaserStockPart - components: - - pos: -8.652201,-39.009583 - parent: 8364 - type: Transform -- uid: 16357 - type: MicroManipulatorStockPart - components: - - pos: -8.807449,-39.33577 - parent: 8364 - type: Transform -- uid: 16358 - type: CableApcExtension - components: - - pos: -7.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16359 - type: CableApcExtension - components: - - pos: -0.5,-56.5 - parent: 8364 - type: Transform -- uid: 16360 - type: CableApcExtension - components: - - pos: -0.5,-53.5 - parent: 8364 - type: Transform -- uid: 16361 - type: CableApcExtension - components: - - pos: -4.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16362 - type: CableApcExtension - components: - - pos: -6.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16363 - type: ScanningModuleStockPart - components: - - pos: -8.441639,-39.39827 - parent: 8364 - type: Transform -- uid: 16364 - type: AmplifierSubspaceStockPart - components: - - pos: -9.791486,-39.24208 - parent: 8364 - type: Transform -- uid: 16365 - type: AnsibleSubspaceStockPart - components: - - pos: -9.385236,-39.476456 - parent: 8364 - type: Transform -- uid: 16366 - type: TransmitterSubspaceStockPart - components: - - pos: -9.281598,-39.498627 - parent: 8364 - type: Transform -- uid: 16367 - type: TreatmentSubspaceStockPart - components: - - pos: -9.250348,-39.26425 - parent: 8364 - type: Transform -- uid: 16368 - type: AnalyzerSubspaceStockPart - components: - - pos: -8.99259,-39.184814 - parent: 8364 - type: Transform -- uid: 16369 - type: CableApcExtension - components: - - pos: -0.5,-55.5 - parent: 8364 - type: Transform -- uid: 16370 - type: CableApcExtension - components: - - pos: -0.5,-54.5 - parent: 8364 - type: Transform -- uid: 16371 - type: CableApcExtension - components: - - pos: -3.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16372 - type: CableApcExtension - components: - - pos: -5.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16373 - type: CapacitorStockPart - components: - - pos: -8.183451,-39.306458 - parent: 8364 - type: Transform -- uid: 16374 - type: CableApcExtension - components: - - pos: -0.5,-50.5 - parent: 8364 - type: Transform -- uid: 16375 - type: CableApcExtension - components: - - pos: -0.5,-49.5 - parent: 8364 - type: Transform -- uid: 16376 - type: CableApcExtension - components: - - pos: -0.5,-48.5 - parent: 8364 - type: Transform -- uid: 16377 - type: CableApcExtension - components: - - pos: -0.5,-47.5 - parent: 8364 - type: Transform -- uid: 16378 - type: CableApcExtension - components: - - pos: -0.5,-46.5 - parent: 8364 - type: Transform -- uid: 16379 - type: CableApcExtension - components: - - pos: -0.5,-45.5 - parent: 8364 - type: Transform -- uid: 16380 - type: CableApcExtension - components: - - pos: -0.5,-44.5 - parent: 8364 - type: Transform -- uid: 16381 - type: CableApcExtension - components: - - pos: -0.5,-43.5 - parent: 8364 - type: Transform -- uid: 16382 - type: CableApcExtension - components: - - pos: -0.5,-42.5 - parent: 8364 - type: Transform -- uid: 16383 - type: CableApcExtension - components: - - pos: -0.5,-41.5 - parent: 8364 - type: Transform -- uid: 16384 - type: CableApcExtension - components: - - pos: -0.5,-40.5 - parent: 8364 - type: Transform -- uid: 16385 - type: CableApcExtension - components: - - pos: -0.5,-39.5 - parent: 8364 - type: Transform -- uid: 16386 - type: CableApcExtension - components: - - pos: -0.5,-38.5 - parent: 8364 - type: Transform -- uid: 16387 - type: CableApcExtension - components: - - pos: -0.5,-37.5 - parent: 8364 - type: Transform -- uid: 16388 - type: CableApcExtension - components: - - pos: -0.5,-36.5 - parent: 8364 - type: Transform -- uid: 16389 - type: CableApcExtension - components: - - pos: -0.5,-35.5 - parent: 8364 - type: Transform -- uid: 16390 - type: CableApcExtension - components: - - pos: -0.5,-34.5 - parent: 8364 - type: Transform -- uid: 16391 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-42.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16392 - type: CableApcExtension - components: - - pos: -7.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16393 - type: CableApcExtension - components: - - pos: -7.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16394 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-34.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16395 - type: CrateGenericSteel - components: - - pos: -10.5,-41.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 16396 - type: TableReinforced - components: - - pos: 2.5,-44.5 - parent: 8364 - type: Transform -- uid: 16397 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-48.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16398 - type: CrateGenericSteel - components: - - pos: -9.5,-41.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 16399 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-55.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16400 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-53.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16401 - type: ClosetToolFilled - components: - - pos: -3.5,-41.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 16402 - type: ClosetToolFilled - components: - - pos: -4.5,-41.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 16403 - type: DisposalUnit - components: - - pos: -10.5,-45.5 - parent: 8364 - type: Transform -- uid: 16404 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-30.5 - parent: 8364 - type: Transform -- uid: 16405 - type: DisposalBend - components: - - pos: -26.5,-30.5 - parent: 8364 - type: Transform -- uid: 16406 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -26.5,-33.5 - parent: 8364 - type: Transform -- uid: 16407 - type: DisposalBend - components: - - pos: -17.5,-33.5 - parent: 8364 - type: Transform -- uid: 16408 - type: DisposalYJunction - components: - - rot: 3.141592653589793 rad - pos: -17.5,-47.5 - parent: 8364 - type: Transform -- uid: 16409 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-47.5 - parent: 8364 - type: Transform -- uid: 16410 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-44.5 - parent: 8364 - type: Transform -- uid: 16411 - type: DisposalBend - components: - - pos: -10.5,-44.5 - parent: 8364 - type: Transform -- uid: 16412 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -10.5,-45.5 - parent: 8364 - type: Transform -- uid: 16413 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-44.5 - parent: 8364 - type: Transform -- uid: 16414 - type: DisposalPipe - components: - - pos: -12.5,-45.5 - parent: 8364 - type: Transform -- uid: 16415 - type: DisposalPipe - components: - - pos: -12.5,-46.5 - parent: 8364 - type: Transform -- uid: 16416 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-47.5 - parent: 8364 - type: Transform -- uid: 16417 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-47.5 - parent: 8364 - type: Transform -- uid: 16418 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-47.5 - parent: 8364 - type: Transform -- uid: 16419 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-47.5 - parent: 8364 - type: Transform -- uid: 16420 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-46.5 - parent: 8364 - type: Transform -- uid: 16421 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-45.5 - parent: 8364 - type: Transform -- uid: 16422 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-44.5 - parent: 8364 - type: Transform -- uid: 16423 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-43.5 - parent: 8364 - type: Transform -- uid: 16424 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-42.5 - parent: 8364 - type: Transform -- uid: 16425 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-41.5 - parent: 8364 - type: Transform -- uid: 16426 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-40.5 - parent: 8364 - type: Transform -- uid: 16427 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-39.5 - parent: 8364 - type: Transform -- uid: 16428 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-38.5 - parent: 8364 - type: Transform -- uid: 16429 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-37.5 - parent: 8364 - type: Transform -- uid: 16430 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-36.5 - parent: 8364 - type: Transform -- uid: 16431 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-35.5 - parent: 8364 - type: Transform -- uid: 16432 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-34.5 - parent: 8364 - type: Transform -- uid: 16433 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-33.5 - parent: 8364 - type: Transform -- uid: 16434 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-33.5 - parent: 8364 - type: Transform -- uid: 16435 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-33.5 - parent: 8364 - type: Transform -- uid: 16436 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-33.5 - parent: 8364 - type: Transform -- uid: 16437 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-33.5 - parent: 8364 - type: Transform -- uid: 16438 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-33.5 - parent: 8364 - type: Transform -- uid: 16439 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-33.5 - parent: 8364 - type: Transform -- uid: 16440 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-33.5 - parent: 8364 - type: Transform -- uid: 16441 - type: DisposalPipe - components: - - pos: -26.5,-32.5 - parent: 8364 - type: Transform -- uid: 16442 - type: DisposalPipe - components: - - pos: -26.5,-31.5 - parent: 8364 - type: Transform -- uid: 16443 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-30.5 - parent: 8364 - type: Transform -- uid: 16444 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-30.5 - parent: 8364 - type: Transform -- uid: 16445 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-30.5 - parent: 8364 - type: Transform -- uid: 16446 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-30.5 - parent: 8364 - type: Transform -- uid: 16447 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -32.5,-30.5 - parent: 8364 - type: Transform -- uid: 16448 - type: Table - components: - - pos: -3.5,-45.5 - parent: 8364 - type: Transform -- uid: 16449 - type: Table - components: - - pos: -4.5,-45.5 - parent: 8364 - type: Transform -- uid: 16450 - type: Rack - components: - - pos: -5.5,-45.5 - parent: 8364 - type: Transform -- uid: 16451 - type: FlashlightLantern - components: - - pos: -4.4961033,-45.400856 - parent: 8364 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 16452 - type: Catwalk - components: - - pos: -49.5,1.5 - parent: 8364 - type: Transform -- uid: 16455 - type: SignTelecomms - components: - - pos: -4.5,-55.5 - parent: 8364 - type: Transform -- uid: 16457 - type: AirlockEngineeringLocked - components: - - name: Telecomms - type: MetaData - - pos: -4.5,-56.5 - parent: 8364 - type: Transform -- uid: 16458 - type: AirlockEngineeringGlassLocked - components: - - name: Server Room - type: MetaData - - pos: -8.5,-53.5 - parent: 8364 - type: Transform -- uid: 16459 - type: AirlockEngineeringGlassLocked - components: - - name: Server Room - type: MetaData - - pos: -10.5,-53.5 - parent: 8364 - type: Transform -- uid: 16460 - type: AtmosFixNitrogenMarker - components: - - pos: 12.5,-65.5 - parent: 8364 - type: Transform -- uid: 16461 - type: APCBasic - components: - - name: Telecomms APC - type: MetaData - - pos: -8.5,-54.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 10 - supplyRampPosition: 1.347667 - type: PowerNetworkBattery -- uid: 16462 - type: CableApcExtension - components: - - pos: -7.5,-54.5 - parent: 8364 - type: Transform -- uid: 16463 - type: CableApcExtension - components: - - pos: -8.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16464 - type: CableApcExtension - components: - - pos: -6.5,-54.5 - parent: 8364 - type: Transform -- uid: 16465 - type: CableApcExtension - components: - - pos: -6.5,-53.5 - parent: 8364 - type: Transform -- uid: 16466 - type: CableApcExtension - components: - - pos: -6.5,-52.5 - parent: 8364 - type: Transform -- uid: 16467 - type: CableApcExtension - components: - - pos: -6.5,-50.5 - parent: 8364 - type: Transform -- uid: 16468 - type: CableApcExtension - components: - - pos: -6.5,-51.5 - parent: 8364 - type: Transform -- uid: 16469 - type: CableApcExtension - components: - - pos: -7.5,-50.5 - parent: 8364 - type: Transform -- uid: 16470 - type: CableApcExtension - components: - - pos: -6.5,-55.5 - parent: 8364 - type: Transform -- uid: 16471 - type: CableApcExtension - components: - - pos: -6.5,-56.5 - parent: 8364 - type: Transform -- uid: 16472 - type: CableApcExtension - components: - - pos: -7.5,-56.5 - parent: 8364 - type: Transform -- uid: 16473 - type: CableApcExtension - components: - - pos: -8.5,-53.5 - parent: 8364 - type: Transform -- uid: 16474 - type: CableApcExtension - components: - - pos: -9.5,-53.5 - parent: 8364 - type: Transform -- uid: 16475 - type: CableApcExtension - components: - - pos: -10.5,-53.5 - parent: 8364 - type: Transform -- uid: 16476 - type: CableApcExtension - components: - - pos: -11.5,-53.5 - parent: 8364 - type: Transform -- uid: 16477 - type: CableApcExtension - components: - - pos: -12.5,-53.5 - parent: 8364 - type: Transform -- uid: 16478 - type: CableApcExtension - components: - - pos: -13.5,-53.5 - parent: 8364 - type: Transform -- uid: 16479 - type: CableApcExtension - components: - - pos: -13.5,-52.5 - parent: 8364 - type: Transform -- uid: 16480 - type: CableApcExtension - components: - - pos: -13.5,-51.5 - parent: 8364 - type: Transform -- uid: 16481 - type: CableApcExtension - components: - - pos: -13.5,-50.5 - parent: 8364 - type: Transform -- uid: 16482 - type: CableApcExtension - components: - - pos: -13.5,-54.5 - parent: 8364 - type: Transform -- uid: 16483 - type: CableApcExtension - components: - - pos: -13.5,-55.5 - parent: 8364 - type: Transform -- uid: 16484 - type: CableApcExtension - components: - - pos: -13.5,-56.5 - parent: 8364 - type: Transform -- uid: 16485 - type: CableApcExtension - components: - - pos: -14.5,-53.5 - parent: 8364 - type: Transform -- uid: 16486 - type: CableApcExtension - components: - - pos: -15.5,-53.5 - parent: 8364 - type: Transform -- uid: 16487 - type: CableApcExtension - components: - - pos: -9.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16488 - type: CableApcExtension - components: - - pos: -9.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16489 - type: CableApcExtension - components: - - pos: -9.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16490 - type: CableApcExtension - components: - - pos: -9.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16491 - type: CableApcExtension - components: - - pos: -9.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16492 - type: CableApcExtension - components: - - pos: -9.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16493 - type: CableApcExtension - components: - - pos: -9.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16494 - type: CableApcExtension - components: - - pos: -9.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16495 - type: CableApcExtension - components: - - pos: -10.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16496 - type: CableApcExtension - components: - - pos: -10.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16497 - type: CableApcExtension - components: - - pos: -7.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16498 - type: CableApcExtension - components: - - pos: -5.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16499 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-53.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16500 - type: SubstationBasic - components: - - pos: -7.5,-49.5 - parent: 8364 - type: Transform -- uid: 16501 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-57.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16502 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: -6.5,-50.5 - parent: 8364 - type: Transform -- uid: 16503 - type: OxygenCanister - components: - - pos: 5.5,-40.5 - parent: 8364 - type: Transform -- uid: 16504 - type: ComputerAlert - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-43.5 - parent: 8364 - type: Transform -- uid: 16505 - type: OxygenCanister - components: - - pos: 5.5,-41.5 - parent: 8364 - type: Transform -- uid: 16506 - type: NitrogenCanister - components: - - pos: 6.5,-40.5 - parent: 8364 - type: Transform -- uid: 16507 - type: NitrogenCanister - components: - - pos: 6.5,-41.5 - parent: 8364 - type: Transform -- uid: 16508 - type: StorageCanister - components: - - pos: 3.5,-40.5 - parent: 8364 - type: Transform -- uid: 16509 - type: StorageCanister - components: - - pos: 3.5,-41.5 - parent: 8364 - type: Transform -- uid: 16510 - type: AirCanister - components: - - pos: 4.5,-40.5 - parent: 8364 - type: Transform -- uid: 16511 - type: AirCanister - components: - - pos: 4.5,-41.5 - parent: 8364 - type: Transform -- uid: 16512 - type: DisposalUnit - components: - - pos: 4.5,-45.5 - parent: 8364 - type: Transform -- uid: 16513 - type: CableMV - components: - - pos: 8.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16514 - type: CableApcExtension - components: - - pos: 7.5,-41.5 - parent: 8364 - type: Transform -- uid: 16515 - type: CableApcExtension - components: - - pos: 6.5,-41.5 - parent: 8364 - type: Transform -- uid: 16516 - type: CableApcExtension - components: - - pos: 5.5,-41.5 - parent: 8364 - type: Transform -- uid: 16517 - type: CableApcExtension - components: - - pos: 2.5,-44.5 - parent: 8364 - type: Transform -- uid: 16518 - type: CableApcExtension - components: - - pos: 4.5,-41.5 - parent: 8364 - type: Transform -- uid: 16519 - type: CableApcExtension - components: - - pos: 4.5,-42.5 - parent: 8364 - type: Transform -- uid: 16520 - type: CableApcExtension - components: - - pos: 4.5,-43.5 - parent: 8364 - type: Transform -- uid: 16521 - type: CableApcExtension - components: - - pos: 7.5,-43.5 - parent: 8364 - type: Transform -- uid: 16522 - type: CableApcExtension - components: - - pos: 6.5,-43.5 - parent: 8364 - type: Transform -- uid: 16523 - type: CableApcExtension - components: - - pos: 5.5,-43.5 - parent: 8364 - type: Transform -- uid: 16524 - type: CableApcExtension - components: - - pos: 3.5,-43.5 - parent: 8364 - type: Transform -- uid: 16525 - type: CableApcExtension - components: - - pos: 2.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16526 - type: CableApcExtension - components: - - pos: 2.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16527 - type: CableApcExtension - components: - - pos: 8.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16528 - type: CableApcExtension - components: - - pos: 8.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16529 - type: CableApcExtension - components: - - pos: 6.5,-44.5 - parent: 8364 - type: Transform -- uid: 16530 - type: CableApcExtension - components: - - pos: 6.5,-45.5 - parent: 8364 - type: Transform -- uid: 16531 - type: CableApcExtension - components: - - pos: 6.5,-46.5 - parent: 8364 - type: Transform -- uid: 16532 - type: CableApcExtension - components: - - pos: 5.5,-46.5 - parent: 8364 - type: Transform -- uid: 16533 - type: CableApcExtension - components: - - pos: 7.5,-46.5 - parent: 8364 - type: Transform -- uid: 16534 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 5.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16535 - type: CableMV - components: - - pos: 4.5,-54.5 - parent: 8364 - type: Transform -- uid: 16536 - type: CableMV - components: - - pos: 4.5,-53.5 - parent: 8364 - type: Transform -- uid: 16537 - type: CableMV - components: - - pos: 4.5,-52.5 - parent: 8364 - type: Transform -- uid: 16538 - type: CableMV - components: - - pos: 4.5,-51.5 - parent: 8364 - type: Transform -- uid: 16539 - type: CableMV - components: - - pos: 4.5,-50.5 - parent: 8364 - type: Transform -- uid: 16540 - type: CableMV - components: - - pos: 4.5,-49.5 - parent: 8364 - type: Transform -- uid: 16541 - type: CableMV - components: - - pos: 4.5,-48.5 - parent: 8364 - type: Transform -- uid: 16542 - type: CableMV - components: - - pos: 6.5,-47.5 - parent: 8364 - type: Transform -- uid: 16543 - type: CableMV - components: - - pos: 6.5,-46.5 - parent: 8364 - type: Transform -- uid: 16544 - type: CableMV - components: - - pos: 6.5,-45.5 - parent: 8364 - type: Transform -- uid: 16545 - type: CableMV - components: - - pos: 6.5,-44.5 - parent: 8364 - type: Transform -- uid: 16546 - type: CableMV - components: - - pos: 6.5,-43.5 - parent: 8364 - type: Transform -- uid: 16547 - type: CableMV - components: - - pos: 5.5,-43.5 - parent: 8364 - type: Transform -- uid: 16548 - type: Poweredlight - components: - - pos: 5.5,-40.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16549 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-45.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16550 - type: WindoorEngineeringLocked - components: - - name: Atmospherics Desk - type: MetaData - - rot: 1.5707963267948966 rad - pos: 2.5,-44.5 - parent: 8364 - type: Transform -- uid: 16552 - type: CableHV - components: - - pos: -6.5,-53.5 - parent: 8364 - type: Transform -- uid: 16553 - type: ShuttersNormalOpen - components: - - pos: 2.5,-45.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4878 - type: SignalReceiver -- uid: 16554 - type: ShuttersNormalOpen - components: - - pos: 2.5,-44.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4878 - type: SignalReceiver -- uid: 16555 - type: ShuttersNormalOpen - components: - - pos: 2.5,-43.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4878 - type: SignalReceiver -- uid: 16556 - type: CableApcExtension - components: - - pos: 8.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16557 - type: CableApcExtension - components: - - pos: 9.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16558 - type: CableApcExtension - components: - - pos: 10.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16559 - type: CableApcExtension - components: - - pos: 11.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16560 - type: CableApcExtension - components: - - pos: 12.5,-41.5 - parent: 8364 - type: Transform -- uid: 16561 - type: CableApcExtension - components: - - pos: 13.5,-41.5 - parent: 8364 - type: Transform -- uid: 16562 - type: CableApcExtension - components: - - pos: 13.5,-42.5 - parent: 8364 - type: Transform -- uid: 16563 - type: CableApcExtension - components: - - pos: 13.5,-43.5 - parent: 8364 - type: Transform -- uid: 16564 - type: CableApcExtension - components: - - pos: 13.5,-44.5 - parent: 8364 - type: Transform -- uid: 16565 - type: CableApcExtension - components: - - pos: 13.5,-45.5 - parent: 8364 - type: Transform -- uid: 16566 - type: CableApcExtension - components: - - pos: 13.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16567 - type: CableApcExtension - components: - - pos: 13.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16568 - type: CableApcExtension - components: - - pos: 12.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16569 - type: CableApcExtension - components: - - pos: 11.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16570 - type: CableApcExtension - components: - - pos: 10.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16571 - type: CableApcExtension - components: - - pos: 14.5,-41.5 - parent: 8364 - type: Transform -- uid: 16572 - type: CableApcExtension - components: - - pos: 15.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16573 - type: CableApcExtension - components: - - pos: 15.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16574 - type: CableApcExtension - components: - - pos: 15.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16575 - type: CableApcExtension - components: - - pos: 15.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16576 - type: CableApcExtension - components: - - pos: 14.5,-44.5 - parent: 8364 - type: Transform -- uid: 16577 - type: CableApcExtension - components: - - pos: 15.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16578 - type: CableApcExtension - components: - - pos: 16.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16579 - type: CableApcExtension - components: - - pos: 17.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16580 - type: CableApcExtension - components: - - pos: 18.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16581 - type: CableApcExtension - components: - - pos: 19.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16582 - type: CableApcExtension - components: - - pos: 20.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16583 - type: CableApcExtension - components: - - pos: 21.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16584 - type: CableApcExtension - components: - - pos: 22.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16585 - type: CableApcExtension - components: - - pos: 23.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16586 - type: CableApcExtension - components: - - pos: 24.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16587 - type: CableApcExtension - components: - - pos: 25.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16588 - type: CableApcExtension - components: - - pos: 26.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16589 - type: CableApcExtension - components: - - pos: 27.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16590 - type: CableApcExtension - components: - - pos: 28.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16591 - type: CableApcExtension - components: - - pos: 29.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16592 - type: CableApcExtension - components: - - pos: 29.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16593 - type: CableApcExtension - components: - - pos: 29.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16594 - type: CableApcExtension - components: - - pos: 29.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16595 - type: CableApcExtension - components: - - pos: 29.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16596 - type: CableApcExtension - components: - - pos: 28.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16597 - type: CableApcExtension - components: - - pos: 27.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16598 - type: CableApcExtension - components: - - pos: 26.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16599 - type: CableApcExtension - components: - - pos: 25.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16600 - type: CableApcExtension - components: - - pos: 25.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16601 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-48.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16602 - type: CableApcExtension - components: - - pos: 25.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16603 - type: CableApcExtension - components: - - pos: 25.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16604 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-48.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16605 - type: CableApcExtension - components: - - pos: 25.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16606 - type: CableApcExtension - components: - - pos: 25.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16607 - type: CableApcExtension - components: - - pos: 25.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16608 - type: CableApcExtension - components: - - pos: 25.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16609 - type: CableApcExtension - components: - - pos: 25.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16610 - type: CableApcExtension - components: - - pos: 25.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16611 - type: CableApcExtension - components: - - pos: 25.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16612 - type: CableApcExtension - components: - - pos: 25.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16613 - type: CableApcExtension - components: - - pos: 25.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16614 - type: CableApcExtension - components: - - pos: 25.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16615 - type: CableApcExtension - components: - - pos: 26.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16616 - type: CableApcExtension - components: - - pos: 27.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16617 - type: CableApcExtension - components: - - pos: 28.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16618 - type: CableApcExtension - components: - - pos: 29.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16619 - type: CableApcExtension - components: - - pos: 29.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16620 - type: CableApcExtension - components: - - pos: 29.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16621 - type: CableApcExtension - components: - - pos: 29.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16622 - type: CableApcExtension - components: - - pos: 29.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16623 - type: CableApcExtension - components: - - pos: 29.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16624 - type: CableApcExtension - components: - - pos: 29.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16625 - type: CableApcExtension - components: - - pos: 29.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16626 - type: CableApcExtension - components: - - pos: 29.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16627 - type: CableApcExtension - components: - - pos: 29.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16628 - type: CableApcExtension - components: - - pos: 29.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16629 - type: CableApcExtension - components: - - pos: 29.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16630 - type: CableApcExtension - components: - - pos: 28.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16631 - type: CableApcExtension - components: - - pos: 27.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16632 - type: CableApcExtension - components: - - pos: 26.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16633 - type: CableApcExtension - components: - - pos: 28.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16634 - type: CableApcExtension - components: - - pos: 27.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16635 - type: CableApcExtension - components: - - pos: 26.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16636 - type: CableApcExtension - components: - - pos: 23.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16637 - type: CableApcExtension - components: - - pos: 23.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16638 - type: CableApcExtension - components: - - pos: 23.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16639 - type: CableApcExtension - components: - - pos: 23.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16640 - type: CableApcExtension - components: - - pos: 23.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16641 - type: CableApcExtension - components: - - pos: 23.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16642 - type: CableApcExtension - components: - - pos: 23.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16643 - type: CableApcExtension - components: - - pos: 23.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16644 - type: CableApcExtension - components: - - pos: 23.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16645 - type: CableApcExtension - components: - - pos: 23.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16646 - type: CableApcExtension - components: - - pos: 23.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16647 - type: CableApcExtension - components: - - pos: 23.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16648 - type: CableApcExtension - components: - - pos: 23.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16649 - type: CableApcExtension - components: - - pos: 23.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16650 - type: CableApcExtension - components: - - pos: 23.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16651 - type: CableApcExtension - components: - - pos: 23.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16652 - type: CableApcExtension - components: - - pos: 23.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16653 - type: CableApcExtension - components: - - pos: 15.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16654 - type: DisposalUnit - components: - - pos: 35.5,-43.5 - parent: 8364 - type: Transform -- uid: 16655 - type: CableApcExtension - components: - - pos: 17.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16656 - type: CableApcExtension - components: - - pos: 17.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16657 - type: CableApcExtension - components: - - pos: 18.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16658 - type: CableApcExtension - components: - - pos: 18.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16659 - type: CableApcExtension - components: - - pos: 19.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16660 - type: CableApcExtension - components: - - pos: 20.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16661 - type: CableApcExtension - components: - - pos: 12.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16662 - type: CableApcExtension - components: - - pos: 12.5,-49.5 - parent: 8364 - type: Transform -- uid: 16663 - type: CableApcExtension - components: - - pos: 12.5,-50.5 - parent: 8364 - type: Transform -- uid: 16664 - type: CableApcExtension - components: - - pos: 12.5,-51.5 - parent: 8364 - type: Transform -- uid: 16665 - type: CableApcExtension - components: - - pos: 12.5,-52.5 - parent: 8364 - type: Transform -- uid: 16666 - type: CableApcExtension - components: - - pos: 12.5,-53.5 - parent: 8364 - type: Transform -- uid: 16667 - type: CableApcExtension - components: - - pos: 12.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16668 - type: CableApcExtension - components: - - pos: 12.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16669 - type: CableApcExtension - components: - - pos: 12.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16670 - type: CableApcExtension - components: - - pos: 12.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16671 - type: CableApcExtension - components: - - pos: 12.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16672 - type: CableApcExtension - components: - - pos: 12.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16673 - type: CableApcExtension - components: - - pos: 13.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16674 - type: CableApcExtension - components: - - pos: 14.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16675 - type: CableApcExtension - components: - - pos: 15.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16676 - type: CableApcExtension - components: - - pos: 16.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16677 - type: CableApcExtension - components: - - pos: 17.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16678 - type: CableApcExtension - components: - - pos: 18.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16679 - type: CableApcExtension - components: - - pos: 19.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16680 - type: CableApcExtension - components: - - pos: 20.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16681 - type: CableApcExtension - components: - - pos: 21.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16682 - type: CableApcExtension - components: - - pos: 21.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16683 - type: CableApcExtension - components: - - pos: 21.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16684 - type: CableApcExtension - components: - - pos: 21.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16685 - type: CableApcExtension - components: - - pos: 21.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16686 - type: CableApcExtension - components: - - pos: 21.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16687 - type: CableApcExtension - components: - - pos: 21.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16688 - type: CableApcExtension - components: - - pos: 21.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16689 - type: CableApcExtension - components: - - pos: 21.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16690 - type: CableApcExtension - components: - - pos: 21.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16691 - type: CableApcExtension - components: - - pos: 21.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16692 - type: CableApcExtension - components: - - pos: 21.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16693 - type: CableApcExtension - components: - - pos: 21.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16694 - type: CableApcExtension - components: - - pos: 16.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16695 - type: CableApcExtension - components: - - pos: 17.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16696 - type: CableApcExtension - components: - - pos: 18.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16697 - type: CableApcExtension - components: - - pos: 19.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16698 - type: CableApcExtension - components: - - pos: 20.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16699 - type: CableApcExtension - components: - - pos: 13.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16700 - type: CableApcExtension - components: - - pos: 13.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16701 - type: CableApcExtension - components: - - pos: 14.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16702 - type: CableApcExtension - components: - - pos: 15.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16703 - type: CableApcExtension - components: - - pos: 16.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16704 - type: CableApcExtension - components: - - pos: 17.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16705 - type: CableApcExtension - components: - - pos: 18.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16706 - type: CableApcExtension - components: - - pos: 19.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16707 - type: CableApcExtension - components: - - pos: 20.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16708 - type: CableApcExtension - components: - - pos: 21.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16709 - type: CableApcExtension - components: - - pos: 6.5,-47.5 - parent: 8364 - type: Transform -- uid: 16710 - type: CableApcExtension - components: - - pos: 4.5,-48.5 - parent: 8364 - type: Transform -- uid: 16711 - type: AirlockExternalAtmosphericsLocked - components: - - pos: 25.5,-60.5 - parent: 8364 - type: Transform -- uid: 16713 - type: WallReinforced - components: - - pos: 24.5,-59.5 - parent: 8364 - type: Transform -- uid: 16714 - type: WallReinforced - components: - - pos: 25.5,-59.5 - parent: 8364 - type: Transform -- uid: 16715 - type: WallReinforced - components: - - pos: 25.5,-59.5 - parent: 8364 - type: Transform -- uid: 16716 - type: WallReinforced - components: - - pos: 25.5,-61.5 - parent: 8364 - type: Transform -- uid: 16717 - type: WallReinforced - components: - - pos: 24.5,-61.5 - parent: 8364 - type: Transform -- uid: 16719 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-3.5 - parent: 8364 - type: Transform -- uid: 16720 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16721 - type: Grille - components: - - pos: 14.5,-63.5 - parent: 8364 - type: Transform -- uid: 16722 - type: Grille - components: - - pos: 16.5,-63.5 - parent: 8364 - type: Transform -- uid: 16723 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-47.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16724 - type: Grille - components: - - pos: 17.5,-63.5 - parent: 8364 - type: Transform -- uid: 16725 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 5.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16726 - type: CableHV - components: - - pos: 11.5,-72.5 - parent: 8364 - type: Transform -- uid: 16727 - type: CableHV - components: - - pos: 16.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16728 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-48.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16729 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-51.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16730 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-51.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16731 - type: Poweredlight - components: - - pos: 14.5,-54.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16732 - type: Poweredlight - components: - - pos: 10.5,-40.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16733 - type: Poweredlight - components: - - pos: 17.5,-40.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16734 - type: Poweredlight - components: - - pos: 21.5,-40.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16735 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-58.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16736 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-58.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16737 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-48.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16738 - type: ShuttersNormalOpen - components: - - pos: 3.5,-49.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4878 - type: SignalReceiver -- uid: 16739 - type: ShuttersNormalOpen - components: - - pos: 4.5,-49.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4878 - type: SignalReceiver -- uid: 16740 - type: ShuttersNormalOpen - components: - - pos: 5.5,-49.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4878 - type: SignalReceiver -- uid: 16741 - type: GasPipeStraight - components: - - pos: 16.5,-63.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16742 - type: GasPipeStraight - components: - - pos: 16.5,-60.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16743 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-59.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16744 - type: Rack - components: - - pos: 15.5,-48.5 - parent: 8364 - type: Transform -- uid: 16745 - type: WaterTankFull - components: - - pos: 14.5,-48.5 - parent: 8364 - type: Transform -- uid: 16746 - type: WeldingFuelTankFull - components: - - pos: 13.5,-48.5 - parent: 8364 - type: Transform -- uid: 16747 - type: LockerAtmosphericsFilled - components: - - pos: 13.5,-50.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 16748 - type: LockerAtmosphericsFilled - components: - - pos: 13.5,-52.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 16749 - type: LockerAtmosphericsFilled - components: - - pos: 13.5,-51.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 16750 - type: Grille - components: - - pos: 13.5,-63.5 - parent: 8364 - type: Transform -- uid: 16751 - type: Grille - components: - - pos: 18.5,-63.5 - parent: 8364 - type: Transform -- uid: 16752 - type: Grille - components: - - pos: 20.5,-63.5 - parent: 8364 - type: Transform -- uid: 16753 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-53.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16754 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 18.5,-54.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16755 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-59.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16756 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-59.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16757 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-59.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16758 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-59.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16759 - type: GasPipeStraight - components: - - pos: 16.5,-61.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16760 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 14.5,-64.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16761 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-59.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16762 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-59.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16763 - type: GasPipeStraight - components: - - pos: 16.5,-62.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16764 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 18.5,-64.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16765 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 22.5,-64.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16766 - type: CableApcExtension - components: - - pos: 13.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16767 - type: CableApcExtension - components: - - pos: 13.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16768 - type: CableApcExtension - components: - - pos: 14.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16769 - type: CableApcExtension - components: - - pos: 15.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16770 - type: CableApcExtension - components: - - pos: 16.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16771 - type: CableApcExtension - components: - - pos: 17.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16772 - type: CableApcExtension - components: - - pos: 18.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16773 - type: CableApcExtension - components: - - pos: 19.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16774 - type: CableApcExtension - components: - - pos: 20.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16775 - type: CableApcExtension - components: - - pos: 21.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16776 - type: CableApcExtension - components: - - pos: 22.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16777 - type: CableApcExtension - components: - - pos: 23.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16778 - type: CableApcExtension - components: - - pos: 23.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16779 - type: CableApcExtension - components: - - pos: 23.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16780 - type: CableApcExtension - components: - - pos: 23.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16781 - type: CableApcExtension - components: - - pos: 23.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16782 - type: WallReinforced - components: - - pos: 29.5,-52.5 - parent: 8364 - type: Transform -- uid: 16783 - type: CableApcExtension - components: - - pos: 21.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16784 - type: CableApcExtension - components: - - pos: 20.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16785 - type: CableApcExtension - components: - - pos: 19.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16786 - type: CableApcExtension - components: - - pos: 18.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16787 - type: CableApcExtension - components: - - pos: 17.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16788 - type: CableApcExtension - components: - - pos: 16.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16789 - type: CableApcExtension - components: - - pos: 15.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16790 - type: CableApcExtension - components: - - pos: 14.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16791 - type: CableApcExtension - components: - - pos: 13.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16792 - type: CableApcExtension - components: - - pos: 12.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16793 - type: CableApcExtension - components: - - pos: 11.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16794 - type: CableApcExtension - components: - - pos: 11.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16795 - type: CableApcExtension - components: - - pos: 11.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16796 - type: CableApcExtension - components: - - pos: 11.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16797 - type: CableApcExtension - components: - - pos: 11.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16798 - type: CableApcExtension - components: - - pos: 12.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16799 - type: CableApcExtension - components: - - pos: 15.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16800 - type: CableApcExtension - components: - - pos: 15.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16801 - type: CableApcExtension - components: - - pos: 15.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16802 - type: CableApcExtension - components: - - pos: 19.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16803 - type: CableApcExtension - components: - - pos: 19.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16804 - type: CableApcExtension - components: - - pos: 19.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16805 - type: Grille - components: - - pos: 8.5,-48.5 - parent: 8364 - type: Transform -- uid: 16806 - type: GasMinerWaterVapor - components: - - pos: 27.5,-51.5 - parent: 8364 - type: Transform -- uid: 16807 - type: GasMinerCarbonDioxide - components: - - pos: 27.5,-55.5 - parent: 8364 - type: Transform -- uid: 16808 - type: GasMinerOxygen - components: - - pos: 17.5,-65.5 - parent: 8364 - type: Transform - - maxExternalPressure: 4500 - type: GasMiner -- uid: 16809 - type: GasMinerNitrogen - components: - - pos: 13.5,-65.5 - parent: 8364 - type: Transform - - maxExternalPressure: 4500 - type: GasMiner -- uid: 16810 - type: AirCanister - components: - - pos: 21.5,-66.5 - parent: 8364 - type: Transform -- uid: 16811 - type: ToolboxMechanicalFilled - components: - - pos: -5.492169,-57.366646 - parent: 8364 - type: Transform -- uid: 16812 - type: Multitool - components: - - pos: -5.398419,-57.63227 - parent: 8364 - type: Transform -- uid: 16813 - type: filingCabinetDrawer - components: - - pos: -6.5,-57.5 - parent: 8364 - type: Transform -- uid: 16814 - type: ClosetEmergencyFilledRandom - components: - - pos: -5.5,-53.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16815 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-56.5 - parent: 8364 - type: Transform -- uid: 16816 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-50.5 - parent: 8364 - type: Transform -- uid: 16817 - type: Table - components: - - pos: -8.5,-49.5 - parent: 8364 - type: Transform -- uid: 16818 - type: Table - components: - - pos: -5.5,-50.5 - parent: 8364 - type: Transform -- uid: 16819 - type: Table - components: - - pos: -8.5,-51.5 - parent: 8364 - type: Transform -- uid: 16820 - type: Table - components: - - pos: -8.5,-50.5 - parent: 8364 - type: Transform -- uid: 16821 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-47.5 - parent: 8364 - type: Transform -- uid: 16822 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -18.5,-60.5 - parent: 8364 - type: Transform -- uid: 16823 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-60.5 - parent: 8364 - type: Transform -- uid: 16824 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-59.5 - parent: 8364 - type: Transform -- uid: 16825 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-59.5 - parent: 8364 - type: Transform -- uid: 16826 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-56.5 - parent: 8364 - type: Transform -- uid: 16827 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-56.5 - parent: 8364 - type: Transform -- uid: 16828 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-47.5 - parent: 8364 - type: Transform -- uid: 16829 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-47.5 - parent: 8364 - type: Transform -- uid: 16830 - type: DisposalBend - components: - - pos: 6.5,-45.5 - parent: 8364 - type: Transform -- uid: 16831 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-45.5 - parent: 8364 - type: Transform -- uid: 16832 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-46.5 - parent: 8364 - type: Transform -- uid: 16833 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-45.5 - parent: 8364 - type: Transform -- uid: 16834 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-47.5 - parent: 8364 - type: Transform -- uid: 16835 - type: DisposalPipe - components: - - pos: 4.5,-48.5 - parent: 8364 - type: Transform -- uid: 16836 - type: DisposalPipe - components: - - pos: 4.5,-49.5 - parent: 8364 - type: Transform -- uid: 16837 - type: DisposalPipe - components: - - pos: 4.5,-50.5 - parent: 8364 - type: Transform -- uid: 16838 - type: DisposalPipe - components: - - pos: 4.5,-51.5 - parent: 8364 - type: Transform -- uid: 16839 - type: DisposalPipe - components: - - pos: 4.5,-52.5 - parent: 8364 - type: Transform -- uid: 16840 - type: DisposalPipe - components: - - pos: 4.5,-53.5 - parent: 8364 - type: Transform -- uid: 16841 - type: DisposalJunction - components: - - pos: 4.5,-54.5 - parent: 8364 - type: Transform -- uid: 16842 - type: DisposalPipe - components: - - pos: 4.5,-55.5 - parent: 8364 - type: Transform -- uid: 16843 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-56.5 - parent: 8364 - type: Transform -- uid: 16844 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-56.5 - parent: 8364 - type: Transform -- uid: 16845 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-56.5 - parent: 8364 - type: Transform -- uid: 16846 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-56.5 - parent: 8364 - type: Transform -- uid: 16847 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-56.5 - parent: 8364 - type: Transform - - visible: False - type: Sprite -- uid: 16848 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-56.5 - parent: 8364 - type: Transform -- uid: 16849 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -2.5,-57.5 - parent: 8364 - type: Transform -- uid: 16850 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -2.5,-58.5 - parent: 8364 - type: Transform -- uid: 16851 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-59.5 - parent: 8364 - type: Transform -- uid: 16852 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-59.5 - parent: 8364 - type: Transform -- uid: 16853 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-59.5 - parent: 8364 - type: Transform -- uid: 16854 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-59.5 - parent: 8364 - type: Transform -- uid: 16855 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-59.5 - parent: 8364 - type: Transform -- uid: 16856 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-59.5 - parent: 8364 - type: Transform -- uid: 16857 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-59.5 - parent: 8364 - type: Transform -- uid: 16858 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-59.5 - parent: 8364 - type: Transform -- uid: 16859 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-59.5 - parent: 8364 - type: Transform -- uid: 16860 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-59.5 - parent: 8364 - type: Transform -- uid: 16861 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-59.5 - parent: 8364 - type: Transform -- uid: 16862 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-59.5 - parent: 8364 - type: Transform -- uid: 16863 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-60.5 - parent: 8364 - type: Transform -- uid: 16864 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-60.5 - parent: 8364 - type: Transform -- uid: 16865 - type: DisposalPipe - components: - - pos: -18.5,-59.5 - parent: 8364 - type: Transform -- uid: 16866 - type: DisposalPipe - components: - - pos: -18.5,-58.5 - parent: 8364 - type: Transform -- uid: 16867 - type: DisposalPipe - components: - - pos: -18.5,-57.5 - parent: 8364 - type: Transform -- uid: 16868 - type: DisposalPipe - components: - - pos: -18.5,-56.5 - parent: 8364 - type: Transform -- uid: 16869 - type: DisposalPipe - components: - - pos: -18.5,-55.5 - parent: 8364 - type: Transform -- uid: 16870 - type: DisposalPipe - components: - - pos: -18.5,-54.5 - parent: 8364 - type: Transform -- uid: 16871 - type: DisposalPipe - components: - - pos: -18.5,-53.5 - parent: 8364 - type: Transform -- uid: 16872 - type: DisposalPipe - components: - - pos: -18.5,-52.5 - parent: 8364 - type: Transform -- uid: 16873 - type: DisposalPipe - components: - - pos: -18.5,-51.5 - parent: 8364 - type: Transform -- uid: 16874 - type: DisposalPipe - components: - - pos: -18.5,-50.5 - parent: 8364 - type: Transform -- uid: 16875 - type: DisposalPipe - components: - - pos: -18.5,-49.5 - parent: 8364 - type: Transform -- uid: 16876 - type: DisposalPipe - components: - - pos: -18.5,-48.5 - parent: 8364 - type: Transform -- uid: 16877 - type: DisposalUnit - components: - - pos: 9.5,-48.5 - parent: 8364 - type: Transform -- uid: 16878 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 9.5,-48.5 - parent: 8364 - type: Transform -- uid: 16879 - type: DisposalBend - components: - - pos: 9.5,-47.5 - parent: 8364 - type: Transform -- uid: 16880 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-47.5 - parent: 8364 - type: Transform -- uid: 16881 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-47.5 - parent: 8364 - type: Transform -- uid: 16882 - type: Grille - components: - - pos: 6.5,-53.5 - parent: 8364 - type: Transform -- uid: 16883 - type: Grille - components: - - pos: 6.5,-54.5 - parent: 8364 - type: Transform -- uid: 16884 - type: Grille - components: - - pos: 7.5,-54.5 - parent: 8364 - type: Transform -- uid: 16885 - type: Grille - components: - - pos: 8.5,-54.5 - parent: 8364 - type: Transform -- uid: 16886 - type: Grille - components: - - pos: 9.5,-54.5 - parent: 8364 - type: Transform -- uid: 16887 - type: RadioHandheld - components: - - pos: -8.455454,-57.408157 - parent: 8364 - type: Transform -- uid: 16888 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16889 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16890 - type: CableHV - components: - - pos: 5.5,-63.5 - parent: 8364 - type: Transform -- uid: 16891 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16892 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-73.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16893 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-43.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16894 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-47.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16895 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-51.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16896 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-55.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16897 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-66.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16898 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-66.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16899 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-66.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16900 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-43.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16901 - type: CableApcExtension - components: - - pos: 8.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16902 - type: CableApcExtension - components: - - pos: -4.5,-43.5 - parent: 8364 - type: Transform -- uid: 16903 - type: CableApcExtension - components: - - pos: 8.5,-50.5 - parent: 8364 - type: Transform -- uid: 16904 - type: CableApcExtension - components: - - pos: 8.5,-51.5 - parent: 8364 - type: Transform -- uid: 16905 - type: CableApcExtension - components: - - pos: 8.5,-52.5 - parent: 8364 - type: Transform -- uid: 16906 - type: CableApcExtension - components: - - pos: 8.5,-53.5 - parent: 8364 - type: Transform -- uid: 16907 - type: CableApcExtension - components: - - pos: 8.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16908 - type: CableApcExtension - components: - - pos: 9.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16909 - type: CableApcExtension - components: - - pos: 7.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16910 - type: CableApcExtension - components: - - pos: 6.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16911 - type: CableApcExtension - components: - - pos: 6.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16912 - type: APCBasic - components: - - name: Security Office APC - type: MetaData - - pos: 8.5,-49.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 10 - supplyRampPosition: 1.347667 - type: PowerNetworkBattery -- uid: 16913 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16914 - type: APCBasic - components: - - name: Engine Room APC - type: MetaData - - pos: 1.5,-68.5 - parent: 8364 - type: Transform -- uid: 16915 - type: APCBasic - components: - - name: Chief Engineer's Office APC - type: MetaData - - pos: 1.5,-60.5 - parent: 8364 - type: Transform -- uid: 16916 - type: APCBasic - components: - - name: Storage APC - type: MetaData - - pos: -3.5,-61.5 - parent: 8364 - type: Transform -- uid: 16917 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-92.5 - parent: 8364 - type: Transform -- uid: 16918 - type: CableApcExtension - components: - - pos: -0.5,-19.5 - parent: 8364 - type: Transform -- uid: 16919 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-84.5 - parent: 8364 - type: Transform -- uid: 16920 - type: WallReinforced - components: - - pos: -6.5,-101.5 - parent: 8364 - type: Transform -- uid: 16921 - type: WallReinforced - components: - - pos: -4.5,-101.5 - parent: 8364 - type: Transform -- uid: 16922 - type: WallReinforced - components: - - pos: -2.5,-101.5 - parent: 8364 - type: Transform -- uid: 16923 - type: WallReinforced - components: - - pos: -0.5,-101.5 - parent: 8364 - type: Transform -- uid: 16924 - type: WallReinforced - components: - - pos: 1.5,-101.5 - parent: 8364 - type: Transform -- uid: 16925 - type: WallReinforced - components: - - pos: 3.5,-101.5 - parent: 8364 - type: Transform -- uid: 16926 - type: WallReinforced - components: - - pos: 5.5,-101.5 - parent: 8364 - type: Transform -- uid: 16927 - type: Grille - components: - - pos: 7.5,-100.5 - parent: 8364 - type: Transform -- uid: 16928 - type: Grille - components: - - pos: 5.5,-100.5 - parent: 8364 - type: Transform -- uid: 16929 - type: Grille - components: - - pos: 4.5,-100.5 - parent: 8364 - type: Transform -- uid: 16930 - type: Grille - components: - - pos: 3.5,-100.5 - parent: 8364 - type: Transform -- uid: 16931 - type: Grille - components: - - pos: 2.5,-100.5 - parent: 8364 - type: Transform -- uid: 16932 - type: Grille - components: - - pos: -6.5,-100.5 - parent: 8364 - type: Transform -- uid: 16933 - type: Grille - components: - - pos: -2.5,-102.5 - parent: 8364 - type: Transform -- uid: 16934 - type: Grille - components: - - pos: -4.5,-75.5 - parent: 8364 - type: Transform -- uid: 16935 - type: WallReinforced - components: - - pos: 6.5,-73.5 - parent: 8364 - type: Transform -- uid: 16936 - type: Grille - components: - - pos: 4.5,-68.5 - parent: 8364 - type: Transform -- uid: 16937 - type: Grille - components: - - pos: 4.5,-78.5 - parent: 8364 - type: Transform -- uid: 16938 - type: CableHV - components: - - pos: -8.5,-87.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16939 - type: CableHV - components: - - pos: 7.5,-93.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16940 - type: CableHV - components: - - pos: 4.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16941 - type: CableMV - components: - - pos: 7.5,-90.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16942 - type: CableMV - components: - - pos: -2.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16943 - type: CableMV - components: - - pos: -8.5,-89.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16944 - type: CableMV - components: - - pos: 0.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16945 - type: CableApcExtension - components: - - pos: 5.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16946 - type: CableApcExtension - components: - - pos: 4.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16947 - type: CableApcExtension - components: - - pos: 3.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16948 - type: CableApcExtension - components: - - pos: 2.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16949 - type: CableApcExtension - components: - - pos: -0.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16950 - type: CableApcExtension - components: - - pos: -2.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16951 - type: CableApcExtension - components: - - pos: -2.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16952 - type: CableApcExtension - components: - - pos: -2.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16953 - type: CableApcExtension - components: - - pos: -1.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16954 - type: CableApcExtension - components: - - pos: 0.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16955 - type: CableApcExtension - components: - - pos: 1.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16956 - type: CableApcExtension - components: - - pos: 1.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16957 - type: CableApcExtension - components: - - pos: 1.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16958 - type: CableApcExtension - components: - - pos: 1.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16959 - type: CableMV - components: - - pos: 7.5,-93.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16960 - type: CableHV - components: - - pos: 2.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16961 - type: CableHV - components: - - pos: 7.5,-90.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16962 - type: Grille - components: - - pos: 1.5,-78.5 - parent: 8364 - type: Transform -- uid: 16963 - type: Grille - components: - - pos: -4.5,-68.5 - parent: 8364 - type: Transform -- uid: 16964 - type: Grille - components: - - pos: 6.5,-75.5 - parent: 8364 - type: Transform -- uid: 16965 - type: WallReinforced - components: - - pos: -5.5,-101.5 - parent: 8364 - type: Transform -- uid: 16966 - type: WallReinforced - components: - - pos: -3.5,-101.5 - parent: 8364 - type: Transform -- uid: 16967 - type: WallReinforced - components: - - pos: -1.5,-101.5 - parent: 8364 - type: Transform -- uid: 16968 - type: WallReinforced - components: - - pos: 2.5,-101.5 - parent: 8364 - type: Transform -- uid: 16969 - type: WallReinforced - components: - - pos: 4.5,-101.5 - parent: 8364 - type: Transform -- uid: 16970 - type: WallReinforced - components: - - pos: 6.5,-101.5 - parent: 8364 - type: Transform -- uid: 16971 - type: Grille - components: - - pos: -0.5,-68.5 - parent: 8364 - type: Transform -- uid: 16972 - type: Grille - components: - - pos: 3.5,-78.5 - parent: 8364 - type: Transform -- uid: 16973 - type: CableHV - components: - - pos: 7.5,-92.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16974 - type: CableHV - components: - - pos: 4.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16975 - type: CableMV - components: - - pos: 7.5,-91.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16976 - type: CableApcExtension - components: - - pos: -1.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16977 - type: CableApcExtension - components: - - pos: -2.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16978 - type: CableApcExtension - components: - - pos: -2.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16979 - type: CableApcExtension - components: - - pos: -0.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16980 - type: CableApcExtension - components: - - pos: 1.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16981 - type: CableApcExtension - components: - - pos: 1.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16982 - type: CableHV - components: - - pos: -8.5,-84.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16983 - type: CableMV - components: - - pos: 0.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16984 - type: CableMV - components: - - pos: 1.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16985 - type: WallReinforced - components: - - pos: 11.5,-77.5 - parent: 8364 - type: Transform -- uid: 16986 - type: Grille - components: - - pos: 7.5,-101.5 - parent: 8364 - type: Transform -- uid: 16987 - type: Grille - components: - - pos: -10.5,-70.5 - parent: 8364 - type: Transform -- uid: 16988 - type: Grille - components: - - pos: 9.5,-70.5 - parent: 8364 - type: Transform -- uid: 16989 - type: CableHV - components: - - pos: -8.5,-85.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16990 - type: CableMV - components: - - pos: -0.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16991 - type: CableApcExtension - components: - - pos: -2.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16992 - type: CableApcExtension - components: - - pos: 0.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16993 - type: CableApcExtension - components: - - pos: 1.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16994 - type: CableMV - components: - - pos: 3.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16995 - type: AirlockExternalEngineeringLocked - components: - - pos: -13.5,-76.5 - parent: 8364 - type: Transform -- uid: 16996 - type: Grille - components: - - pos: 6.5,-102.5 - parent: 8364 - type: Transform -- uid: 16997 - type: WallReinforced - components: - - pos: -7.5,-101.5 - parent: 8364 - type: Transform -- uid: 16998 - type: WallReinforced - components: - - pos: 0.5,-101.5 - parent: 8364 - type: Transform -- uid: 16999 - type: Grille - components: - - pos: 6.5,-100.5 - parent: 8364 - type: Transform -- uid: 17000 - type: Grille - components: - - pos: -5.5,-75.5 - parent: 8364 - type: Transform -- uid: 17001 - type: CableHV - components: - - pos: -8.5,-86.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17002 - type: CableMV - components: - - pos: -1.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17003 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17004 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17005 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17006 - type: SpawnPointStationEngineer - components: - - pos: -15.5,-72.5 - parent: 8364 - type: Transform -- uid: 17007 - type: Catwalk - components: - - pos: -16.5,-72.5 - parent: 8364 - type: Transform -- uid: 17008 - type: CableHV - components: - - pos: -31.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17009 - type: CableHV - components: - - pos: -32.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17010 - type: SignSecureMed - components: - - pos: 8.5,-7.5 - parent: 8364 - type: Transform -- uid: 17011 - type: SignSecureMed - components: - - pos: -9.5,-7.5 - parent: 8364 - type: Transform -- uid: 17012 - type: CableHV - components: - - pos: -25.5,-64.5 - parent: 8364 - type: Transform -- uid: 17013 - type: Dresser - components: - - pos: 3.5,-59.5 - parent: 8364 - type: Transform -- uid: 17014 - type: CableHV - components: - - pos: -34.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17015 - type: Table - components: - - pos: 7.5,-50.5 - parent: 8364 - type: Transform -- uid: 17016 - type: Table - components: - - pos: 9.5,-50.5 - parent: 8364 - type: Transform -- uid: 17017 - type: AirlockEngineeringGlassLocked - components: - - pos: 6.5,-52.5 - parent: 8364 - type: Transform -- uid: 17018 - type: KitchenMicrowave - components: - - pos: 7.5,-50.5 - parent: 8364 - type: Transform -- uid: 17019 - type: Table - components: - - pos: 8.5,-50.5 - parent: 8364 - type: Transform -- uid: 17020 - type: PosterLegitBuild - components: - - pos: 2.5,-50.5 - parent: 8364 - type: Transform -- uid: 17021 - type: SignSecureMed - components: - - pos: 5.5,-50.5 - parent: 8364 - type: Transform -- uid: 17022 - type: CableApcExtension - components: - - pos: -4.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17023 - type: CableApcExtension - components: - - pos: -6.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17024 - type: CableApcExtension - components: - - pos: 5.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17025 - type: CableMV - components: - - pos: -0.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17026 - type: CableMV - components: - - pos: -8.5,-90.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17027 - type: CableMV - components: - - pos: -3.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17028 - type: CableMV - components: - - pos: 7.5,-89.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17029 - type: CableHV - components: - - pos: 3.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17030 - type: CableHV - components: - - pos: 7.5,-83.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17031 - type: CableHV - components: - - pos: -8.5,-88.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17032 - type: Grille - components: - - pos: 5.5,-78.5 - parent: 8364 - type: Transform -- uid: 17033 - type: Grille - components: - - pos: 3.5,-68.5 - parent: 8364 - type: Transform -- uid: 17034 - type: Grille - components: - - pos: 7.5,-72.5 - parent: 8364 - type: Transform -- uid: 17035 - type: Grille - components: - - pos: -3.5,-75.5 - parent: 8364 - type: Transform -- uid: 17036 - type: Grille - components: - - pos: -1.5,-102.5 - parent: 8364 - type: Transform -- uid: 17037 - type: Grille - components: - - pos: -7.5,-100.5 - parent: 8364 - type: Transform -- uid: 17038 - type: Grille - components: - - pos: 1.5,-100.5 - parent: 8364 - type: Transform -- uid: 17039 - type: RadiationCollector - components: - - pos: -8.5,-89.5 - parent: 8364 - type: Transform -- uid: 17040 - type: GravityGenerator - components: - - pos: -0.5,-20.5 - parent: 8364 - type: Transform - - charge: 100 - type: GravityGenerator - - radius: 175.75 - type: PointLight -- uid: 17041 - type: SignRadiationMed - components: - - pos: 2.5,-23.5 - parent: 8364 - type: Transform -- uid: 17042 - type: ContainmentFieldGenerator - components: - - pos: -4.5,-92.5 - parent: 8364 - type: Transform -- uid: 17043 - type: SignRadiationMed - components: - - pos: 1.5,-27.5 - parent: 8364 - type: Transform -- uid: 17044 - type: ContainmentFieldGenerator - components: - - pos: 3.5,-92.5 - parent: 8364 - type: Transform -- uid: 17045 - type: SignRadiationMed - components: - - pos: -2.5,-27.5 - parent: 8364 - type: Transform -- uid: 17046 - type: ContainmentFieldGenerator - components: - - pos: 3.5,-84.5 - parent: 8364 - type: Transform -- uid: 17047 - type: ContainmentFieldGenerator - components: - - pos: -4.5,-84.5 - parent: 8364 - type: Transform -- uid: 17048 - type: SignElectricalMed - components: - - pos: -3.5,-23.5 - parent: 8364 - type: Transform -- uid: 17049 - type: RadiationCollector - components: - - pos: 2.5,-80.5 - parent: 8364 - type: Transform -- uid: 17050 - type: RadiationCollector - components: - - pos: 1.5,-80.5 - parent: 8364 - type: Transform -- uid: 17051 - type: RadiationCollector - components: - - pos: 0.5,-80.5 - parent: 8364 - type: Transform -- uid: 17052 - type: RadiationCollector - components: - - pos: -1.5,-80.5 - parent: 8364 - type: Transform -- uid: 17053 - type: RadiationCollector - components: - - pos: -2.5,-80.5 - parent: 8364 - type: Transform -- uid: 17054 - type: RadiationCollector - components: - - pos: -3.5,-80.5 - parent: 8364 - type: Transform -- uid: 17055 - type: WallReinforced - components: - - pos: 11.5,-75.5 - parent: 8364 - type: Transform -- uid: 17056 - type: WallReinforced - components: - - pos: 12.5,-75.5 - parent: 8364 - type: Transform -- uid: 17057 - type: WallReinforced - components: - - pos: -13.5,-77.5 - parent: 8364 - type: Transform -- uid: 17058 - type: CableHV - components: - - pos: -35.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17059 - type: CableApcExtension - components: - - pos: -5.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17060 - type: CableApcExtension - components: - - pos: -7.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17061 - type: Table - components: - - pos: -2.5,-25.5 - parent: 8364 - type: Transform -- uid: 17062 - type: RadiationCollector - components: - - pos: -8.5,-90.5 - parent: 8364 - type: Transform -- uid: 17063 - type: ParticleAcceleratorPowerBoxUnfinished - components: - - pos: -0.5,-72.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 17064 - type: CableMV - components: - - pos: 2.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17065 - type: CableMV - components: - - pos: -8.5,-87.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17066 - type: CableMV - components: - - pos: 4.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17067 - type: CableHV - components: - - pos: -5.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17068 - type: CableHV - components: - - pos: 1.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17069 - type: CableHV - components: - - pos: 7.5,-89.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17070 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-47.5 - parent: 8364 - type: Transform -- uid: 17071 - type: Grille - components: - - pos: 0.5,-78.5 - parent: 8364 - type: Transform -- uid: 17072 - type: CableHV - components: - - pos: -8.5,-68.5 - parent: 8364 - type: Transform -- uid: 17073 - type: Grille - components: - - pos: 5.5,-75.5 - parent: 8364 - type: Transform -- uid: 17074 - type: Grille - components: - - pos: 5.5,-102.5 - parent: 8364 - type: Transform -- uid: 17075 - type: Grille - components: - - pos: -4.5,-102.5 - parent: 8364 - type: Transform -- uid: 17076 - type: Grille - components: - - pos: -4.5,-100.5 - parent: 8364 - type: Transform -- uid: 17077 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: -4.5,-97.5 - parent: 8364 - type: Transform -- uid: 17078 - type: RadiationCollector - components: - - pos: -8.5,-91.5 - parent: 8364 - type: Transform -- uid: 17079 - type: CableApcExtension - components: - - pos: -3.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17080 - type: CableHV - components: - - pos: -17.5,-70.5 - parent: 8364 - type: Transform -- uid: 17081 - type: CableHV - components: - - pos: 5.5,-65.5 - parent: 8364 - type: Transform -- uid: 17082 - type: Table - components: - - pos: 1.5,-59.5 - parent: 8364 - type: Transform -- uid: 17083 - type: CableApcExtension - components: - - pos: -2.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17084 - type: CableApcExtension - components: - - pos: -1.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17085 - type: CableApcExtension - components: - - pos: -0.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17086 - type: CableApcExtension - components: - - pos: 0.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17087 - type: CableApcExtension - components: - - pos: 1.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17088 - type: CableApcExtension - components: - - pos: 2.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17089 - type: CableApcExtension - components: - - pos: 3.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17090 - type: CableApcExtension - components: - - pos: 4.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17091 - type: CableApcExtension - components: - - pos: 5.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17092 - type: CableApcExtension - components: - - pos: 6.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17093 - type: WallReinforced - components: - - pos: 7.5,-73.5 - parent: 8364 - type: Transform -- uid: 17094 - type: CableApcExtension - components: - - pos: 7.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17095 - type: CableApcExtension - components: - - pos: 7.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17096 - type: CableApcExtension - components: - - pos: 7.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17097 - type: CableApcExtension - components: - - pos: 6.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17098 - type: CableApcExtension - components: - - pos: 8.5,-70.5 - parent: 8364 - type: Transform -- uid: 17099 - type: CableApcExtension - components: - - pos: 9.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17100 - type: CableApcExtension - components: - - pos: 10.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17101 - type: CableApcExtension - components: - - pos: 10.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17102 - type: CableApcExtension - components: - - pos: 9.5,-73.5 - parent: 8364 - type: Transform -- uid: 17103 - type: CableApcExtension - components: - - pos: -0.5,-76.5 - parent: 8364 - type: Transform -- uid: 17104 - type: CableApcExtension - components: - - pos: -0.5,-77.5 - parent: 8364 - type: Transform -- uid: 17105 - type: CableApcExtension - components: - - pos: -0.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17106 - type: CableApcExtension - components: - - pos: -1.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17107 - type: CableApcExtension - components: - - pos: -2.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17108 - type: CableApcExtension - components: - - pos: -3.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17109 - type: CableApcExtension - components: - - pos: -4.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17110 - type: CableApcExtension - components: - - pos: -5.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17111 - type: CableApcExtension - components: - - pos: -6.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17112 - type: CableApcExtension - components: - - pos: -7.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17113 - type: CableApcExtension - components: - - pos: -8.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17114 - type: CableApcExtension - components: - - pos: 0.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17115 - type: CableApcExtension - components: - - pos: 1.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17116 - type: CableApcExtension - components: - - pos: 2.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17117 - type: CableApcExtension - components: - - pos: 3.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17118 - type: CableApcExtension - components: - - pos: 4.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17119 - type: CableApcExtension - components: - - pos: 5.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17120 - type: CableApcExtension - components: - - pos: 6.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17121 - type: CableApcExtension - components: - - pos: 7.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17122 - type: CableApcExtension - components: - - pos: -9.5,-70.5 - parent: 8364 - type: Transform -- uid: 17123 - type: CableApcExtension - components: - - pos: -10.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17124 - type: CableApcExtension - components: - - pos: -11.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17125 - type: CableApcExtension - components: - - pos: -11.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17126 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17127 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17128 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17129 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17130 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17131 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17132 - type: GasPipeStraight - components: - - pos: -38.5,8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17133 - type: GasPipeStraight - components: - - pos: -38.5,9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17134 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17135 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17136 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17137 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17138 - type: GasPipeStraight - components: - - pos: -43.5,13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17139 - type: GasPressurePump - components: - - pos: -43.5,14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17140 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -43.5,12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17141 - type: GasPipeBend - components: - - pos: -40.5,12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17142 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -40.5,10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17143 - type: GasPipeBend - components: - - pos: -38.5,10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17144 - type: CrateEngineeringAMEShielding - components: - - pos: 12.5,-74.5 - parent: 8364 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17145 - type: BlastDoor - components: - - pos: -10.5,-62.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17146 - type: SignalReceiver -- uid: 17146 - type: SignalButton - components: - - pos: -10.5,-64.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 17147 - - port: Toggle - uid: 17145 - type: SignalTransmitter -- uid: 17147 - type: BlastDoor - components: - - pos: -10.5,-63.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17146 - type: SignalReceiver -- uid: 17148 - type: CableHV - components: - - pos: -21.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17149 - type: SpawnPointStationEngineer - components: - - pos: -14.5,-71.5 - parent: 8364 - type: Transform -- uid: 17150 - type: SignAtmos - components: - - pos: 8.5,-46.5 - parent: 8364 - type: Transform -- uid: 17151 - type: SpawnPointStationEngineer - components: - - pos: -13.5,-71.5 - parent: 8364 - type: Transform -- uid: 17152 - type: SpawnPointStationEngineer - components: - - pos: -15.5,-71.5 - parent: 8364 - type: Transform -- uid: 17153 - type: SignSecureMed - components: - - pos: 7.5,-59.5 - parent: 8364 - type: Transform -- uid: 17154 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-73.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17155 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-77.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17156 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-77.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17157 - type: CableApcExtension - components: - - pos: 11.5,-72.5 - parent: 8364 - type: Transform -- uid: 17158 - type: Poweredlight - components: - - pos: -6.5,-69.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17159 - type: Poweredlight - components: - - pos: 5.5,-69.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17160 - type: BedsheetCE - components: - - pos: 2.5,-59.5 - parent: 8364 - type: Transform -- uid: 17161 - type: Bed - components: - - pos: 2.5,-59.5 - parent: 8364 - type: Transform -- uid: 17162 - type: CableHV - components: - - pos: -23.5,-66.5 - parent: 8364 - type: Transform -- uid: 17163 - type: CableHV - components: - - pos: -23.5,-67.5 - parent: 8364 - type: Transform -- uid: 17164 - type: CableHV - components: - - pos: -22.5,-68.5 - parent: 8364 - type: Transform -- uid: 17165 - type: CableHV - components: - - pos: -23.5,-68.5 - parent: 8364 - type: Transform -- uid: 17166 - type: SignSecureMed - components: - - pos: 7.5,-63.5 - parent: 8364 - type: Transform -- uid: 17167 - type: CableHV - components: - - pos: -19.5,-68.5 - parent: 8364 - type: Transform -- uid: 17168 - type: CableHV - components: - - pos: -21.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17169 - type: CableHV - components: - - pos: -20.5,-68.5 - parent: 8364 - type: Transform -- uid: 17170 - type: SignalButton - components: - - pos: 6.5,-63.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 17174 - - port: Toggle - uid: 17175 - - port: Toggle - uid: 17173 - type: SignalTransmitter -- uid: 17171 - type: PosterContrabandHighEffectEngineering - components: - - pos: -13.5,-67.5 - parent: 8364 - type: Transform -- uid: 17172 - type: PosterLegitSafetyEyeProtection - components: - - pos: 9.5,-63.5 - parent: 8364 - type: Transform -- uid: 17173 - type: ShuttersNormalOpen - components: - - pos: 9.5,-62.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17170 - type: SignalReceiver -- uid: 17174 - type: ShuttersNormalOpen - components: - - pos: 7.5,-62.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17170 - type: SignalReceiver -- uid: 17175 - type: ShuttersNormalOpen - components: - - pos: 8.5,-62.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17170 - type: SignalReceiver -- uid: 17176 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-69.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17177 - type: GasVentPump - components: - - pos: -15.5,-68.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17178 - type: ClosetFireFilled - components: - - pos: -10.5,-73.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17179 - type: ClosetRadiationSuitFilled - components: - - pos: -10.5,-72.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17180 - type: ClosetRadiationSuitFilled - components: - - pos: -10.5,-71.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17181 - type: ClosetRadiationSuitFilled - components: - - pos: 9.5,-71.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17182 - type: VendingMachineEngiDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,-68.5 - parent: 8364 - type: Transform -- uid: 17183 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -15.5,-69.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17184 - type: Catwalk - components: - - pos: 49.5,-23.5 - parent: 8364 - type: Transform -- uid: 17185 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-33.5 - parent: 8364 - type: Transform -- uid: 17186 - type: CableApcExtension - components: - - pos: 22.5,-22.5 - parent: 8364 - type: Transform -- uid: 17187 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 0.5,-67.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17188 - type: GasVentPump - components: - - pos: -1.5,-66.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17189 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-66.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17190 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-67.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17191 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 34.5,-35.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 17192 - type: WindoorMedicalLocked - components: - - pos: 30.5,-35.5 - parent: 8364 - type: Transform -- uid: 17193 - type: CableApcExtension - components: - - pos: 22.5,-21.5 - parent: 8364 - type: Transform -- uid: 17194 - type: AirlockAtmosphericsLocked - components: - - pos: 43.5,-41.5 - parent: 8364 - type: Transform -- uid: 17195 - type: AirlockVirologyGlassLocked - components: - - pos: 47.5,-57.5 - parent: 8364 - type: Transform -- uid: 17196 - type: AirlockVirologyGlassLocked - components: - - pos: 45.5,-54.5 - parent: 8364 - type: Transform -- uid: 17197 - type: AirlockVirologyLocked - components: - - pos: 40.5,-50.5 - parent: 8364 - type: Transform -- uid: 17198 - type: AirlockVirologyGlassLocked - components: - - pos: 37.5,-55.5 - parent: 8364 - type: Transform -- uid: 17199 - type: AirlockVirologyLocked - components: - - pos: 40.5,-54.5 - parent: 8364 - type: Transform -- uid: 17200 - type: AirlockVirologyGlassLocked - components: - - pos: 43.5,-57.5 - parent: 8364 - type: Transform -- uid: 17201 - type: Grille - components: - - pos: 21.5,-15.5 - parent: 8364 - type: Transform -- uid: 17202 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-27.5 - parent: 8364 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 20027 - Forward: - - port: Left - uid: 20027 - Off: - - port: Middle - uid: 20027 - type: SignalReceiver -- uid: 17203 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -38.5,7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17204 - type: PhoneInstrument - components: - - pos: -8.522932,-51.390182 - parent: 8364 - type: Transform -- uid: 17205 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-44.5 - parent: 8364 - type: Transform -- uid: 17206 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-43.5 - parent: 8364 - type: Transform -- uid: 17207 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17208 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17209 - type: GasPipeStraight - components: - - pos: 11.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17210 - type: GasPipeStraight - components: - - pos: 11.5,-57.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17211 - type: GasPipeStraight - components: - - pos: 11.5,-58.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17212 - type: GasVolumePump - components: - - pos: 11.5,-54.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17213 - type: GasPipeStraight - components: - - pos: 11.5,-53.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17214 - type: GasPipeStraight - components: - - pos: 11.5,-52.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17215 - type: GasPipeStraight - components: - - pos: 11.5,-51.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17216 - type: GasPipeStraight - components: - - pos: 11.5,-50.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17217 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-63.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17218 - type: GasPressurePump - components: - - name: air to distro - type: MetaData - - rot: 3.141592653589793 rad - pos: 22.5,-60.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17219 - type: GasPressurePump - components: - - name: o2 pump - type: MetaData - - rot: 3.141592653589793 rad - pos: 18.5,-60.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17220 - type: GasPressurePump - components: - - name: n2 pump - type: MetaData - - rot: 3.141592653589793 rad - pos: 14.5,-60.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17221 - type: GasPipeFourway - components: - - pos: 21.5,-43.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17222 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-42.5 - parent: 8364 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17223 - type: Fireplace - components: - - pos: 9.5,-11.5 - parent: 8364 - type: Transform -- uid: 17224 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-46.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17225 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-50.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17226 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-54.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17227 - type: SpawnMobFoxRenault - components: - - pos: 5.5,-17.5 - parent: 8364 - type: Transform -- uid: 17228 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-56.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17229 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -45.5,7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17230 - type: SpawnPointMusician - components: - - pos: 21.5,2.5 - parent: 8364 - type: Transform -- uid: 17231 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-56.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17232 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-56.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17233 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-56.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17234 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-52.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17235 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-52.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17236 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-52.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17237 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-52.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17238 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-48.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17239 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-48.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17240 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-48.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17241 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-48.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17242 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-50.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17243 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-51.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17244 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-53.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17245 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-54.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17246 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 11.5,-59.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17247 - type: GasFilter - components: - - name: n2 filter - type: MetaData - - rot: 1.5707963267948966 rad - pos: 12.5,-59.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17248 - type: GasFilter - components: - - name: o2 filter - type: MetaData - - rot: 1.5707963267948966 rad - pos: 16.5,-59.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17249 - type: Grille - components: - - pos: 23.5,-58.5 - parent: 8364 - type: Transform -- uid: 17250 - type: Grille - components: - - pos: 22.5,-61.5 - parent: 8364 - type: Transform -- uid: 17251 - type: Grille - components: - - pos: 12.5,-61.5 - parent: 8364 - type: Transform -- uid: 17252 - type: GasPipeStraight - components: - - pos: 12.5,-61.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17253 - type: GasPipeStraight - components: - - pos: 12.5,-62.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17254 - type: GasPipeStraight - components: - - pos: 12.5,-63.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17255 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -45.5,4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17256 - type: GasPipeBend - components: - - pos: -44.5,4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17257 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -44.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17258 - type: Grille - components: - - pos: 11.5,-61.5 - parent: 8364 - type: Transform -- uid: 17259 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-55.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17260 - type: GasFilter - components: - - name: waste filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 21.5,-48.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17261 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -43.5,15.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17262 - type: GasPipeStraight - components: - - pos: 12.5,-60.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17263 - type: GasFilter - components: - - name: h2o filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 21.5,-52.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17264 - type: GasFilter - components: - - name: co2 filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 21.5,-56.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17265 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-59.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17266 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-57.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17267 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-58.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17268 - type: CableMV - components: - - pos: 4.5,-43.5 - parent: 8364 - type: Transform -- uid: 17269 - type: CableMV - components: - - pos: 4.5,-41.5 - parent: 8364 - type: Transform -- uid: 17270 - type: CableMV - components: - - pos: 4.5,-42.5 - parent: 8364 - type: Transform -- uid: 17271 - type: CableMV - components: - - pos: 5.5,-41.5 - parent: 8364 - type: Transform -- uid: 17272 - type: CableMV - components: - - pos: 6.5,-41.5 - parent: 8364 - type: Transform -- uid: 17273 - type: CableMV - components: - - pos: 7.5,-41.5 - parent: 8364 - type: Transform -- uid: 17274 - type: CableApcExtension - components: - - pos: 1.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17275 - type: CableApcExtension - components: - - pos: 0.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17276 - type: CableApcExtension - components: - - pos: -0.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17277 - type: CableApcExtension - components: - - pos: -1.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17278 - type: CableApcExtension - components: - - pos: -2.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17279 - type: CableApcExtension - components: - - pos: -3.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17280 - type: CableApcExtension - components: - - pos: -4.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17281 - type: CableApcExtension - components: - - pos: -5.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17282 - type: CableApcExtension - components: - - pos: -6.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17283 - type: CableApcExtension - components: - - pos: -7.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17284 - type: CableApcExtension - components: - - pos: -8.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17285 - type: CableApcExtension - components: - - pos: -8.5,-68.5 - parent: 8364 - type: Transform -- uid: 17286 - type: CableApcExtension - components: - - pos: -9.5,-68.5 - parent: 8364 - type: Transform -- uid: 17287 - type: CableApcExtension - components: - - pos: -9.5,-69.5 - parent: 8364 - type: Transform -- uid: 17288 - type: CableApcExtension - components: - - pos: 2.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17289 - type: CableApcExtension - components: - - pos: 3.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17290 - type: CableApcExtension - components: - - pos: 4.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17291 - type: CableApcExtension - components: - - pos: 5.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17292 - type: CableApcExtension - components: - - pos: 6.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17293 - type: CableApcExtension - components: - - pos: 7.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17294 - type: CableApcExtension - components: - - pos: 8.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17295 - type: CableApcExtension - components: - - pos: 8.5,-68.5 - parent: 8364 - type: Transform -- uid: 17296 - type: CableApcExtension - components: - - pos: 8.5,-69.5 - parent: 8364 - type: Transform -- uid: 17297 - type: CableApcExtension - components: - - pos: -9.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17298 - type: CableApcExtension - components: - - pos: -9.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17299 - type: CableApcExtension - components: - - pos: -9.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17300 - type: CableApcExtension - components: - - pos: -9.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17301 - type: CableApcExtension - components: - - pos: -9.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17302 - type: CableApcExtension - components: - - pos: -9.5,-76.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17303 - type: CableApcExtension - components: - - pos: -10.5,-76.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17304 - type: CableApcExtension - components: - - pos: -11.5,-76.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17305 - type: CableApcExtension - components: - - pos: 14.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17306 - type: CableApcExtension - components: - - pos: -8.5,-74.5 - parent: 8364 - type: Transform -- uid: 17307 - type: CableApcExtension - components: - - pos: -7.5,-74.5 - parent: 8364 - type: Transform -- uid: 17308 - type: CableApcExtension - components: - - pos: -6.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17309 - type: CableApcExtension - components: - - pos: 8.5,-71.5 - parent: 8364 - type: Transform -- uid: 17310 - type: CableApcExtension - components: - - pos: 8.5,-72.5 - parent: 8364 - type: Transform -- uid: 17311 - type: CableApcExtension - components: - - pos: 8.5,-73.5 - parent: 8364 - type: Transform -- uid: 17312 - type: CableApcExtension - components: - - pos: 8.5,-74.5 - parent: 8364 - type: Transform -- uid: 17313 - type: CableApcExtension - components: - - pos: 8.5,-75.5 - parent: 8364 - type: Transform -- uid: 17314 - type: CableApcExtension - components: - - pos: 8.5,-76.5 - parent: 8364 - type: Transform -- uid: 17315 - type: CableApcExtension - components: - - pos: 9.5,-76.5 - parent: 8364 - type: Transform -- uid: 17316 - type: CableApcExtension - components: - - pos: 10.5,-76.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17317 - type: CableApcExtension - components: - - pos: 15.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17318 - type: CableApcExtension - components: - - pos: 7.5,-74.5 - parent: 8364 - type: Transform -- uid: 17319 - type: CableApcExtension - components: - - pos: 6.5,-74.5 - parent: 8364 - type: Transform -- uid: 17320 - type: CableApcExtension - components: - - pos: 5.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17321 - type: Poweredlight - components: - - pos: -0.5,-69.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17322 - type: Poweredlight - components: - - pos: -0.5,-76.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17323 - type: CableApcExtension - components: - - pos: -10.5,-69.5 - parent: 8364 - type: Transform -- uid: 17324 - type: CableApcExtension - components: - - pos: -11.5,-69.5 - parent: 8364 - type: Transform -- uid: 17325 - type: CableApcExtension - components: - - pos: -12.5,-69.5 - parent: 8364 - type: Transform -- uid: 17326 - type: CableApcExtension - components: - - pos: -13.5,-69.5 - parent: 8364 - type: Transform -- uid: 17327 - type: CableApcExtension - components: - - pos: -14.5,-69.5 - parent: 8364 - type: Transform -- uid: 17328 - type: CableApcExtension - components: - - pos: -15.5,-69.5 - parent: 8364 - type: Transform -- uid: 17329 - type: CableApcExtension - components: - - pos: -16.5,-69.5 - parent: 8364 - type: Transform -- uid: 17330 - type: CableApcExtension - components: - - pos: -16.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17331 - type: CableApcExtension - components: - - pos: -16.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17332 - type: CableApcExtension - components: - - pos: -16.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17333 - type: CableApcExtension - components: - - pos: -15.5,-72.5 - parent: 8364 - type: Transform -- uid: 17334 - type: CableApcExtension - components: - - pos: -14.5,-72.5 - parent: 8364 - type: Transform -- uid: 17335 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-72.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17336 - type: CableApcExtension - components: - - pos: -13.5,-73.5 - parent: 8364 - type: Transform -- uid: 17337 - type: CableApcExtension - components: - - pos: -16.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17338 - type: CableApcExtension - components: - - pos: -16.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17339 - type: CableApcExtension - components: - - pos: -15.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17340 - type: ClothingMaskGasAtmos - components: - - pos: -44.458595,14.399037 - parent: 8364 - type: Transform -- uid: 17341 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -44.5,15.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17342 - type: CableHV - components: - - pos: -50.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17343 - type: CableHV - components: - - pos: -50.5,22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17344 - type: CableHV - components: - - pos: -50.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17345 - type: CableHV - components: - - pos: -49.5,23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17346 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: -49.5,23.5 - parent: 8364 - type: Transform -- uid: 17347 - type: CableHV - components: - - pos: -49.5,39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17348 - type: CableHV - components: - - pos: -49.5,40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17349 - type: CableHV - components: - - pos: -49.5,41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17350 - type: SolarPanel - components: - - pos: -46.5,36.5 - parent: 8364 - type: Transform -- uid: 17351 - type: SolarPanel - components: - - pos: -54.5,38.5 - parent: 8364 - type: Transform -- uid: 17352 - type: SolarPanel - components: - - pos: -54.5,34.5 - parent: 8364 - type: Transform -- uid: 17353 - type: CableApcExtension - components: - - pos: 13.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17354 - type: SolarPanel - components: - - pos: -51.5,32.5 - parent: 8364 - type: Transform -- uid: 17355 - type: SolarPanel - components: - - pos: -45.5,34.5 - parent: 8364 - type: Transform -- uid: 17356 - type: SolarPanel - components: - - pos: -46.5,32.5 - parent: 8364 - type: Transform -- uid: 17357 - type: SolarPanel - components: - - pos: -45.5,30.5 - parent: 8364 - type: Transform -- uid: 17358 - type: SolarPanel - components: - - pos: -44.5,28.5 - parent: 8364 - type: Transform -- uid: 17359 - type: SolarPanel - components: - - pos: -47.5,28.5 - parent: 8364 - type: Transform -- uid: 17360 - type: SolarPanel - components: - - pos: -52.5,28.5 - parent: 8364 - type: Transform -- uid: 17361 - type: SolarPanel - components: - - pos: -55.5,28.5 - parent: 8364 - type: Transform -- uid: 17362 - type: SolarPanel - components: - - pos: -53.5,30.5 - parent: 8364 - type: Transform -- uid: 17363 - type: CableHV - components: - - pos: -47.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17364 - type: CableHV - components: - - pos: -46.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17365 - type: CableApcExtension - components: - - pos: 12.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17366 - type: CableHV - components: - - pos: -45.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17367 - type: CableHV - components: - - pos: -44.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17368 - type: CableHV - components: - - pos: -43.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17369 - type: CableHV - components: - - pos: -43.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17370 - type: CableHV - components: - - pos: -44.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17371 - type: CableHV - components: - - pos: -45.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17372 - type: CableHV - components: - - pos: -46.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17373 - type: CableApcExtension - components: - - pos: -13.5,-72.5 - parent: 8364 - type: Transform -- uid: 17374 - type: CableHV - components: - - pos: -47.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17375 - type: CableHV - components: - - pos: -48.5,37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17376 - type: CableHV - components: - - pos: -50.5,37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17377 - type: CableHV - components: - - pos: -51.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17378 - type: CableHV - components: - - pos: -52.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17379 - type: CableHV - components: - - pos: -53.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17380 - type: CableHV - components: - - pos: -54.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17381 - type: AirlockEngineeringGlassLocked - components: - - name: Particle Accelerator Room - type: MetaData - - pos: 0.5,-68.5 - parent: 8364 - type: Transform -- uid: 17382 - type: AirlockEngineeringGlassLocked - components: - - pos: -1.5,-68.5 - parent: 8364 - type: Transform -- uid: 17383 - type: AirlockEngineeringGlassLocked - components: - - pos: -9.5,-70.5 - parent: 8364 - type: Transform -- uid: 17384 - type: AirlockEngineeringGlassLocked - components: - - name: Engine Room - type: MetaData - - pos: 8.5,-70.5 - parent: 8364 - type: Transform -- uid: 17385 - type: AirlockEngineeringGlassLocked - components: - - name: Engine Room - type: MetaData - - pos: 8.5,-63.5 - parent: 8364 - type: Transform -- uid: 17386 - type: AirlockEngineeringGlassLocked - components: - - name: Engine Room - type: MetaData - - pos: 8.5,-59.5 - parent: 8364 - type: Transform -- uid: 17387 - type: AirlockEngineeringGlassLocked - components: - - name: Engineering Foyer - type: MetaData - - pos: 2.5,-56.5 - parent: 8364 - type: Transform -- uid: 17388 - type: CableHV - components: - - pos: -55.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17389 - type: CableHV - components: - - pos: -55.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17390 - type: APCBasic - components: - - pos: -24.5,-63.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound - - loadingNetworkDemand: 5 - supplyRampPosition: 2.4463015 - type: PowerNetworkBattery -- uid: 17391 - type: CableApcExtension - components: - - pos: 2.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17392 - type: CableApcExtension - components: - - pos: 3.5,-54.5 - parent: 8364 - type: Transform -- uid: 17393 - type: CableMV - components: - - pos: 2.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17394 - type: CableMV - components: - - pos: 3.5,-54.5 - parent: 8364 - type: Transform -- uid: 17395 - type: Grille - components: - - pos: 12.5,-63.5 - parent: 8364 - type: Transform -- uid: 17396 - type: CableApcExtension - components: - - pos: 8.5,-61.5 - parent: 8364 - type: Transform -- uid: 17397 - type: CableApcExtension - components: - - pos: 8.5,-60.5 - parent: 8364 - type: Transform -- uid: 17398 - type: CableApcExtension - components: - - pos: 8.5,-59.5 - parent: 8364 - type: Transform -- uid: 17399 - type: CableApcExtension - components: - - pos: 8.5,-58.5 - parent: 8364 - type: Transform -- uid: 17400 - type: CableApcExtension - components: - - pos: 8.5,-57.5 - parent: 8364 - type: Transform -- uid: 17401 - type: CableApcExtension - components: - - pos: 8.5,-56.5 - parent: 8364 - type: Transform -- uid: 17402 - type: CableApcExtension - components: - - pos: 7.5,-56.5 - parent: 8364 - type: Transform -- uid: 17403 - type: CableApcExtension - components: - - pos: 6.5,-56.5 - parent: 8364 - type: Transform -- uid: 17404 - type: CableApcExtension - components: - - pos: 5.5,-56.5 - parent: 8364 - type: Transform -- uid: 17405 - type: CableApcExtension - components: - - pos: 4.5,-56.5 - parent: 8364 - type: Transform -- uid: 17406 - type: CableApcExtension - components: - - pos: 4.5,-55.5 - parent: 8364 - type: Transform -- uid: 17407 - type: CableApcExtension - components: - - pos: 4.5,-54.5 - parent: 8364 - type: Transform -- uid: 17408 - type: CableApcExtension - components: - - pos: 4.5,-53.5 - parent: 8364 - type: Transform -- uid: 17409 - type: CableApcExtension - components: - - pos: 4.5,-52.5 - parent: 8364 - type: Transform -- uid: 17410 - type: CableApcExtension - components: - - pos: -24.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17411 - type: CableApcExtension - components: - - pos: -24.5,-64.5 - parent: 8364 - type: Transform -- uid: 17412 - type: CableApcExtension - components: - - pos: -24.5,-65.5 - parent: 8364 - type: Transform -- uid: 17413 - type: CableApcExtension - components: - - pos: -25.5,-65.5 - parent: 8364 - type: Transform -- uid: 17414 - type: CableApcExtension - components: - - pos: -25.5,-66.5 - parent: 8364 - type: Transform -- uid: 17415 - type: CableApcExtension - components: - - pos: -25.5,-67.5 - parent: 8364 - type: Transform -- uid: 17416 - type: CableApcExtension - components: - - pos: -25.5,-68.5 - parent: 8364 - type: Transform -- uid: 17417 - type: CableApcExtension - components: - - pos: -25.5,-69.5 - parent: 8364 - type: Transform -- uid: 17418 - type: CableApcExtension - components: - - pos: -24.5,-69.5 - parent: 8364 - type: Transform -- uid: 17419 - type: CableApcExtension - components: - - pos: -23.5,-69.5 - parent: 8364 - type: Transform -- uid: 17420 - type: CableApcExtension - components: - - pos: -22.5,-69.5 - parent: 8364 - type: Transform -- uid: 17421 - type: CableApcExtension - components: - - pos: -21.5,-69.5 - parent: 8364 - type: Transform -- uid: 17422 - type: CableApcExtension - components: - - pos: -20.5,-69.5 - parent: 8364 - type: Transform -- uid: 17423 - type: CableApcExtension - components: - - pos: -19.5,-69.5 - parent: 8364 - type: Transform -- uid: 17424 - type: CableApcExtension - components: - - pos: -19.5,-70.5 - parent: 8364 - type: Transform -- uid: 17425 - type: CableApcExtension - components: - - pos: -19.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17426 - type: WindoorEngineeringLocked - components: - - pos: -20.5,-67.5 - parent: 8364 - type: Transform -- uid: 17427 - type: CableApcExtension - components: - - pos: -23.5,-65.5 - parent: 8364 - type: Transform -- uid: 17428 - type: CableApcExtension - components: - - pos: -23.5,-66.5 - parent: 8364 - type: Transform -- uid: 17429 - type: CableApcExtension - components: - - pos: -23.5,-67.5 - parent: 8364 - type: Transform -- uid: 17430 - type: CableApcExtension - components: - - pos: -23.5,-68.5 - parent: 8364 - type: Transform -- uid: 17431 - type: CableHV - components: - - pos: -54.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17432 - type: CableHV - components: - - pos: -53.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17433 - type: CableApcExtension - components: - - pos: -3.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17434 - type: CableApcExtension - components: - - pos: -3.5,-62.5 - parent: 8364 - type: Transform -- uid: 17435 - type: CableApcExtension - components: - - pos: -2.5,-62.5 - parent: 8364 - type: Transform -- uid: 17436 - type: CableApcExtension - components: - - pos: -1.5,-62.5 - parent: 8364 - type: Transform -- uid: 17437 - type: CableApcExtension - components: - - pos: -1.5,-63.5 - parent: 8364 - type: Transform -- uid: 17438 - type: CableApcExtension - components: - - pos: -1.5,-64.5 - parent: 8364 - type: Transform -- uid: 17439 - type: CableApcExtension - components: - - pos: -1.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17440 - type: CableApcExtension - components: - - pos: -2.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17441 - type: CableApcExtension - components: - - pos: -0.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17442 - type: CableApcExtension - components: - - pos: -4.5,-62.5 - parent: 8364 - type: Transform -- uid: 17443 - type: CableApcExtension - components: - - pos: -5.5,-62.5 - parent: 8364 - type: Transform -- uid: 17444 - type: CableApcExtension - components: - - pos: -6.5,-62.5 - parent: 8364 - type: Transform -- uid: 17445 - type: CableApcExtension - components: - - pos: -7.5,-62.5 - parent: 8364 - type: Transform -- uid: 17446 - type: CableApcExtension - components: - - pos: -8.5,-62.5 - parent: 8364 - type: Transform -- uid: 17447 - type: CableApcExtension - components: - - pos: -9.5,-62.5 - parent: 8364 - type: Transform -- uid: 17448 - type: CableApcExtension - components: - - pos: -10.5,-62.5 - parent: 8364 - type: Transform -- uid: 17449 - type: CableApcExtension - components: - - pos: -11.5,-62.5 - parent: 8364 - type: Transform -- uid: 17450 - type: CableApcExtension - components: - - pos: -12.5,-62.5 - parent: 8364 - type: Transform -- uid: 17451 - type: CableApcExtension - components: - - pos: -12.5,-63.5 - parent: 8364 - type: Transform -- uid: 17452 - type: CableApcExtension - components: - - pos: -12.5,-64.5 - parent: 8364 - type: Transform -- uid: 17453 - type: CableApcExtension - components: - - pos: -12.5,-65.5 - parent: 8364 - type: Transform -- uid: 17454 - type: CableApcExtension - components: - - pos: -8.5,-63.5 - parent: 8364 - type: Transform -- uid: 17455 - type: CableApcExtension - components: - - pos: -8.5,-64.5 - parent: 8364 - type: Transform -- uid: 17456 - type: CableApcExtension - components: - - pos: -8.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17457 - type: CableApcExtension - components: - - pos: -7.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17458 - type: CableApcExtension - components: - - pos: -4.5,-63.5 - parent: 8364 - type: Transform -- uid: 17459 - type: CableApcExtension - components: - - pos: -4.5,-64.5 - parent: 8364 - type: Transform -- uid: 17460 - type: CableApcExtension - components: - - pos: -4.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17461 - type: CableApcExtension - components: - - pos: -5.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17462 - type: CableApcExtension - components: - - pos: 1.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17463 - type: CableApcExtension - components: - - pos: 2.5,-60.5 - parent: 8364 - type: Transform -- uid: 17464 - type: CableApcExtension - components: - - pos: 3.5,-60.5 - parent: 8364 - type: Transform -- uid: 17465 - type: CableApcExtension - components: - - pos: 4.5,-60.5 - parent: 8364 - type: Transform -- uid: 17466 - type: CableApcExtension - components: - - pos: 4.5,-59.5 - parent: 8364 - type: Transform -- uid: 17467 - type: CableApcExtension - components: - - pos: 4.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17468 - type: CableApcExtension - components: - - pos: 3.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17469 - type: CableApcExtension - components: - - pos: 5.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17470 - type: CableApcExtension - components: - - pos: 5.5,-60.5 - parent: 8364 - type: Transform -- uid: 17471 - type: CableApcExtension - components: - - pos: 6.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17472 - type: CableApcExtension - components: - - pos: 6.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17473 - type: CableApcExtension - components: - - pos: 4.5,-61.5 - parent: 8364 - type: Transform -- uid: 17474 - type: CableApcExtension - components: - - pos: 4.5,-62.5 - parent: 8364 - type: Transform -- uid: 17475 - type: CableApcExtension - components: - - pos: 4.5,-63.5 - parent: 8364 - type: Transform -- uid: 17476 - type: CableApcExtension - components: - - pos: 4.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17477 - type: CableApcExtension - components: - - pos: 3.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17478 - type: CableMV - components: - - pos: -6.5,-66.5 - parent: 8364 - type: Transform -- uid: 17479 - type: CableMV - components: - - pos: -6.5,-65.5 - parent: 8364 - type: Transform -- uid: 17480 - type: CableMV - components: - - pos: -6.5,-64.5 - parent: 8364 - type: Transform -- uid: 17481 - type: CableMV - components: - - pos: -6.5,-63.5 - parent: 8364 - type: Transform -- uid: 17482 - type: CableMV - components: - - pos: -6.5,-62.5 - parent: 8364 - type: Transform -- uid: 17483 - type: CableMV - components: - - pos: -5.5,-62.5 - parent: 8364 - type: Transform -- uid: 17484 - type: CableMV - components: - - pos: -4.5,-62.5 - parent: 8364 - type: Transform -- uid: 17485 - type: CableMV - components: - - pos: -3.5,-62.5 - parent: 8364 - type: Transform -- uid: 17486 - type: CableMV - components: - - pos: -3.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17487 - type: CableMV - components: - - pos: 5.5,-66.5 - parent: 8364 - type: Transform -- uid: 17488 - type: CableMV - components: - - pos: 5.5,-65.5 - parent: 8364 - type: Transform -- uid: 17489 - type: CableMV - components: - - pos: 5.5,-64.5 - parent: 8364 - type: Transform -- uid: 17490 - type: CableMV - components: - - pos: 5.5,-63.5 - parent: 8364 - type: Transform -- uid: 17491 - type: CableMV - components: - - pos: 5.5,-62.5 - parent: 8364 - type: Transform -- uid: 17492 - type: CableMV - components: - - pos: 5.5,-61.5 - parent: 8364 - type: Transform -- uid: 17493 - type: CableMV - components: - - pos: 5.5,-60.5 - parent: 8364 - type: Transform -- uid: 17494 - type: CableMV - components: - - pos: 4.5,-60.5 - parent: 8364 - type: Transform -- uid: 17495 - type: CableMV - components: - - pos: 3.5,-60.5 - parent: 8364 - type: Transform -- uid: 17496 - type: CableMV - components: - - pos: 2.5,-60.5 - parent: 8364 - type: Transform -- uid: 17497 - type: CableMV - components: - - pos: 1.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17498 - type: CableMV - components: - - pos: -20.5,-69.5 - parent: 8364 - type: Transform -- uid: 17499 - type: CableMV - components: - - pos: -21.5,-69.5 - parent: 8364 - type: Transform -- uid: 17500 - type: CableMV - components: - - pos: -22.5,-69.5 - parent: 8364 - type: Transform -- uid: 17501 - type: CableHV - components: - - pos: -52.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17502 - type: CableMV - components: - - pos: -24.5,-69.5 - parent: 8364 - type: Transform -- uid: 17503 - type: CableMV - components: - - pos: -24.5,-68.5 - parent: 8364 - type: Transform -- uid: 17504 - type: CableMV - components: - - pos: -24.5,-67.5 - parent: 8364 - type: Transform -- uid: 17505 - type: CableMV - components: - - pos: -24.5,-66.5 - parent: 8364 - type: Transform -- uid: 17506 - type: CableMV - components: - - pos: -24.5,-65.5 - parent: 8364 - type: Transform -- uid: 17507 - type: CableMV - components: - - pos: -24.5,-64.5 - parent: 8364 - type: Transform -- uid: 17508 - type: CableMV - components: - - pos: -24.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17509 - type: CableHV - components: - - pos: -51.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17510 - type: CableHV - components: - - pos: -51.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17511 - type: CableHV - components: - - pos: -52.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17512 - type: CableHV - components: - - pos: -53.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17513 - type: CableMV - components: - - pos: 5.5,-52.5 - parent: 8364 - type: Transform -- uid: 17514 - type: CableMV - components: - - pos: 6.5,-52.5 - parent: 8364 - type: Transform -- uid: 17515 - type: CableMV - components: - - pos: 7.5,-52.5 - parent: 8364 - type: Transform -- uid: 17516 - type: CableMV - components: - - pos: 8.5,-52.5 - parent: 8364 - type: Transform -- uid: 17517 - type: CableMV - components: - - pos: 8.5,-51.5 - parent: 8364 - type: Transform -- uid: 17518 - type: Poweredlight - components: - - pos: 8.5,-50.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17519 - type: CableMV - components: - - pos: 8.5,-50.5 - parent: 8364 - type: Transform -- uid: 17520 - type: CableMV - components: - - pos: 8.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17521 - type: Poweredlight - components: - - pos: 3.5,-51.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17522 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-56.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17523 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-61.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17524 - type: Poweredlight - components: - - pos: 2.5,-59.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17525 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-63.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17526 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-65.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17527 - type: Poweredlight - components: - - pos: 2.5,-65.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17528 - type: Poweredlight - components: - - pos: -1.5,-61.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17529 - type: Poweredlight - components: - - pos: -6.5,-61.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17530 - type: Poweredlight - components: - - pos: -12.5,-61.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17531 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-67.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17532 - type: Poweredlight - components: - - pos: -24.5,-64.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17533 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-69.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17534 - type: Poweredlight - components: - - pos: -16.5,-68.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17535 - type: CableHV - components: - - pos: -54.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17536 - type: PoweredSmallLight - components: - - pos: -19.5,-68.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17537 - type: CableHV - components: - - pos: -55.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17538 - type: CableHV - components: - - pos: -55.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17539 - type: CableHV - components: - - pos: -54.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17540 - type: CableHV - components: - - pos: -53.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17541 - type: CableHV - components: - - pos: -52.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17542 - type: CableHV - components: - - pos: -51.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17543 - type: CableHV - components: - - pos: -50.5,33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17544 - type: CableHV - components: - - pos: -48.5,33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17545 - type: CableHV - components: - - pos: -47.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17546 - type: CableHV - components: - - pos: -46.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17547 - type: CableHV - components: - - pos: -45.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17548 - type: CableHV - components: - - pos: -44.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17549 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-29.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17550 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -43.5,-28.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17551 - type: PoweredSmallLight - components: - - pos: -43.5,-30.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17552 - type: ComputerAnalysisConsole - components: - - pos: 71.5,-43.5 - parent: 8364 - type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 21199 - type: SignalTransmitter -- uid: 17553 - type: MaintenanceFluffSpawner - components: - - pos: -18.5,-65.5 - parent: 8364 - type: Transform -- uid: 17554 - type: ChairOfficeLight - components: - - pos: -2.5,-24.5 - parent: 8364 - type: Transform -- uid: 17555 - type: ExtinguisherCabinetFilled - components: - - pos: 10.5,-57.5 - parent: 8364 - type: Transform -- uid: 17556 - type: WallSolidRust - components: - - pos: 67.5,-64.5 - parent: 8364 - type: Transform -- uid: 17557 - type: Catwalk - components: - - pos: 49.5,-19.5 - parent: 8364 - type: Transform -- uid: 17558 - type: ReinforcedWindow - components: - - pos: 3.5,-64.5 - parent: 8364 - type: Transform -- uid: 17559 - type: Lamp - components: - - pos: 3.5354433,-43.043236 - parent: 8364 - type: Transform -- uid: 17560 - type: CableApcExtension - components: - - pos: 4.5,-47.5 - parent: 8364 - type: Transform -- uid: 17561 - type: CableApcExtension - components: - - pos: 5.5,-47.5 - parent: 8364 - type: Transform -- uid: 17562 - type: CableApcExtension - components: - - pos: 7.5,-47.5 - parent: 8364 - type: Transform -- uid: 17563 - type: CableApcExtension - components: - - pos: 8.5,-47.5 - parent: 8364 - type: Transform -- uid: 17564 - type: CableApcExtension - components: - - pos: 9.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17565 - type: ClosetFireFilled - components: - - pos: 5.5,-51.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 17566 - type: ClosetFireFilled - components: - - pos: 7.5,-58.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 17567 - type: ClosetRadiationSuitFilled - components: - - pos: 9.5,-60.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 17568 - type: ClosetRadiationSuitFilled - components: - - pos: 9.5,-61.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 17569 - type: Table - components: - - pos: 9.5,-58.5 - parent: 8364 - type: Transform -- uid: 17570 - type: ClothingEyesGlassesMeson - components: - - pos: 9.607866,-58.326355 - parent: 8364 - type: Transform -- uid: 17571 - type: PowerCellRecharger - components: - - pos: 9.5,-58.5 - parent: 8364 - type: Transform -- uid: 17572 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-57.5 - parent: 8364 - type: Transform -- uid: 17573 - type: Table - components: - - pos: 3.5,-43.5 - parent: 8364 - type: Transform -- uid: 17574 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-55.5 - parent: 8364 - type: Transform -- uid: 17575 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -15.5,-71.5 - parent: 8364 - type: Transform -- uid: 17576 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -14.5,-71.5 - parent: 8364 - type: Transform -- uid: 17577 - type: ShuttersNormalOpen - components: - - pos: 3.5,-58.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15518 - type: SignalReceiver -- uid: 17578 - type: ShuttersNormalOpen - components: - - pos: 4.5,-58.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15518 - type: SignalReceiver -- uid: 17579 - type: ShuttersNormalOpen - components: - - pos: 5.5,-58.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15518 - type: SignalReceiver -- uid: 17580 - type: ShuttersNormalOpen - components: - - pos: 6.5,-60.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15518 - type: SignalReceiver -- uid: 17581 - type: ShuttersNormalOpen - components: - - pos: 6.5,-61.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15518 - type: SignalReceiver -- uid: 17582 - type: ShuttersNormalOpen - components: - - pos: 4.5,-64.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15518 - type: SignalReceiver -- uid: 17583 - type: ShuttersNormalOpen - components: - - pos: 3.5,-64.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15518 - type: SignalReceiver -- uid: 17584 - type: LockerChiefEngineerFilled - components: - - pos: 5.5,-59.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 17585 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -13.5,-71.5 - parent: 8364 - type: Transform -- uid: 17586 - type: TableReinforced - components: - - pos: 4.5,-63.5 - parent: 8364 - type: Transform -- uid: 17587 - type: TableReinforced - components: - - pos: 4.5,-62.5 - parent: 8364 - type: Transform -- uid: 17588 - type: TableReinforced - components: - - pos: 4.5,-61.5 - parent: 8364 - type: Transform -- uid: 17589 - type: ComputerPowerMonitoring - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-63.5 - parent: 8364 - type: Transform -- uid: 17590 - type: ComputerAlert - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-61.5 - parent: 8364 - type: Transform -- uid: 17591 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-62.5 - parent: 8364 - type: Transform -- uid: 17592 - type: TableReinforced - components: - - pos: 3.5,-61.5 - parent: 8364 - type: Transform -- uid: 17593 - type: Chair - components: - - pos: -15.5,-69.5 - parent: 8364 - type: Transform -- uid: 17594 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 71.5,-44.5 - parent: 8364 - type: Transform -- uid: 17595 - type: ClothingEyesGlassesMeson - components: - - pos: 4.5,-62.5 - parent: 8364 - type: Transform -- uid: 17596 - type: PowerCellRecharger - components: - - pos: 3.5,-61.5 - parent: 8364 - type: Transform -- uid: 17597 - type: Paper - components: - - pos: 4.5,-61.5 - parent: 8364 - type: Transform -- uid: 17598 - type: Paper - components: - - pos: 4.5,-61.5 - parent: 8364 - type: Transform -- uid: 17599 - type: Paper - components: - - pos: 4.5,-61.5 - parent: 8364 - type: Transform -- uid: 17600 - type: Pen - components: - - pos: 4.5,-61.5 - parent: 8364 - type: Transform -- uid: 17601 - type: SpawnPointChiefEngineer - components: - - pos: 3.5,-62.5 - parent: 8364 - type: Transform -- uid: 17602 - type: DisposalUnit - components: - - pos: 3.5,-63.5 - parent: 8364 - type: Transform -- uid: 17603 - type: DisposalUnit - components: - - pos: 3.5,-54.5 - parent: 8364 - type: Transform -- uid: 17604 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-54.5 - parent: 8364 - type: Transform -- uid: 17605 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-63.5 - parent: 8364 - type: Transform -- uid: 17606 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-63.5 - parent: 8364 - type: Transform -- uid: 17607 - type: DisposalPipe - components: - - pos: 5.5,-64.5 - parent: 8364 - type: Transform -- uid: 17608 - type: DisposalPipe - components: - - pos: 5.5,-65.5 - parent: 8364 - type: Transform -- uid: 17609 - type: DisposalPipe - components: - - pos: 5.5,-66.5 - parent: 8364 - type: Transform -- uid: 17610 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-67.5 - parent: 8364 - type: Transform -- uid: 17611 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-67.5 - parent: 8364 - type: Transform -- uid: 17612 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 8.5,-66.5 - parent: 8364 - type: Transform -- uid: 17613 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 8.5,-65.5 - parent: 8364 - type: Transform -- uid: 17614 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 8.5,-64.5 - parent: 8364 - type: Transform -- uid: 17615 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 8.5,-63.5 - parent: 8364 - type: Transform -- uid: 17616 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 8.5,-62.5 - parent: 8364 - type: Transform -- uid: 17617 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 8.5,-61.5 - parent: 8364 - type: Transform -- uid: 17618 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 8.5,-60.5 - parent: 8364 - type: Transform -- uid: 17619 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 8.5,-59.5 - parent: 8364 - type: Transform -- uid: 17620 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 8.5,-58.5 - parent: 8364 - type: Transform -- uid: 17621 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 8.5,-57.5 - parent: 8364 - type: Transform -- uid: 17622 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-56.5 - parent: 8364 - type: Transform -- uid: 17623 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-56.5 - parent: 8364 - type: Transform -- uid: 17624 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-56.5 - parent: 8364 - type: Transform -- uid: 17625 - type: DisposalBend - components: - - pos: 8.5,-56.5 - parent: 8364 - type: Transform -- uid: 17626 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-67.5 - parent: 8364 - type: Transform -- uid: 17627 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-67.5 - parent: 8364 - type: Transform -- uid: 17628 - type: DisposalBend - components: - - pos: 5.5,-63.5 - parent: 8364 - type: Transform -- uid: 17629 - type: DisposalTrunk - components: - - pos: -9.5,-66.5 - parent: 8364 - type: Transform -- uid: 17630 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -9.5,-67.5 - parent: 8364 - type: Transform -- uid: 17631 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-67.5 - parent: 8364 - type: Transform -- uid: 17632 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-67.5 - parent: 8364 - type: Transform -- uid: 17633 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-67.5 - parent: 8364 - type: Transform -- uid: 17634 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-67.5 - parent: 8364 - type: Transform -- uid: 17635 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-67.5 - parent: 8364 - type: Transform -- uid: 17636 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-67.5 - parent: 8364 - type: Transform -- uid: 17637 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-67.5 - parent: 8364 - type: Transform -- uid: 17638 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-67.5 - parent: 8364 - type: Transform -- uid: 17639 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-67.5 - parent: 8364 - type: Transform -- uid: 17640 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-67.5 - parent: 8364 - type: Transform -- uid: 17641 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-67.5 - parent: 8364 - type: Transform -- uid: 17642 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-67.5 - parent: 8364 - type: Transform -- uid: 17643 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-67.5 - parent: 8364 - type: Transform -- uid: 17644 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-67.5 - parent: 8364 - type: Transform -- uid: 17645 - type: Chair - components: - - pos: -14.5,-69.5 - parent: 8364 - type: Transform -- uid: 17646 - type: WallReinforced - components: - - pos: 19.5,-74.5 - parent: 8364 - type: Transform -- uid: 17647 - type: WallReinforced - components: - - pos: 19.5,-69.5 - parent: 8364 - type: Transform -- uid: 17648 - type: WallReinforced - components: - - pos: 18.5,-69.5 - parent: 8364 - type: Transform -- uid: 17649 - type: WallReinforced - components: - - pos: 17.5,-69.5 - parent: 8364 - type: Transform -- uid: 17650 - type: WallReinforced - components: - - pos: 16.5,-69.5 - parent: 8364 - type: Transform -- uid: 17651 - type: WallReinforced - components: - - pos: 15.5,-69.5 - parent: 8364 - type: Transform -- uid: 17652 - type: WallReinforced - components: - - pos: 14.5,-69.5 - parent: 8364 - type: Transform -- uid: 17653 - type: WallReinforced - components: - - pos: 13.5,-69.5 - parent: 8364 - type: Transform -- uid: 17654 - type: WallReinforced - components: - - pos: 12.5,-69.5 - parent: 8364 - type: Transform -- uid: 17655 - type: WallReinforced - components: - - pos: 16.5,-74.5 - parent: 8364 - type: Transform -- uid: 17656 - type: ReinforcedWindow - components: - - pos: 19.5,-70.5 - parent: 8364 - type: Transform -- uid: 17657 - type: ReinforcedWindow - components: - - pos: 19.5,-71.5 - parent: 8364 - type: Transform -- uid: 17658 - type: ReinforcedWindow - components: - - pos: 19.5,-72.5 - parent: 8364 - type: Transform -- uid: 17659 - type: WallReinforced - components: - - pos: 17.5,-74.5 - parent: 8364 - type: Transform -- uid: 17660 - type: Grille - components: - - pos: 19.5,-70.5 - parent: 8364 - type: Transform -- uid: 17661 - type: Grille - components: - - pos: 19.5,-71.5 - parent: 8364 - type: Transform -- uid: 17662 - type: Grille - components: - - pos: 19.5,-72.5 - parent: 8364 - type: Transform -- uid: 17663 - type: WallReinforced - components: - - pos: 10.5,-69.5 - parent: 8364 - type: Transform -- uid: 17664 - type: Chair - components: - - pos: -13.5,-69.5 - parent: 8364 - type: Transform -- uid: 17665 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-60.5 - parent: 8364 - type: Transform -- uid: 17666 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-60.5 - parent: 8364 - type: Transform -- uid: 17667 - type: ComputerCargoOrders - components: - - pos: -22.5,-21.5 - parent: 8364 - type: Transform -- uid: 17668 - type: Grille - components: - - pos: -18.5,-29.5 - parent: 8364 - type: Transform -- uid: 17669 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-30.5 - parent: 8364 - type: Transform -- uid: 17670 - type: CableApcExtension - components: - - pos: 16.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17671 - type: CableApcExtension - components: - - pos: 17.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17672 - type: CableApcExtension - components: - - pos: 18.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17673 - type: CableApcExtension - components: - - pos: 19.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17674 - type: CableApcExtension - components: - - pos: 19.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17675 - type: CableApcExtension - components: - - pos: 19.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17676 - type: CableApcExtension - components: - - pos: 19.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17677 - type: VendingMachineSecDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -21.5,-31.5 - parent: 8364 - type: Transform -- uid: 17678 - type: SignShipDock - components: - - pos: -23.5,-28.5 - parent: 8364 - type: Transform -- uid: 17679 - type: SignCargo - components: - - pos: -18.5,-20.5 - parent: 8364 - type: Transform -- uid: 17680 - type: SignMail - components: - - pos: -18.5,-16.5 - parent: 8364 - type: Transform -- uid: 17681 - type: LampGold - components: - - pos: -33.41874,-30.90813 - parent: 8364 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 17682 - type: Pen - components: - - pos: -32.26191,-31.239794 - parent: 8364 - type: Transform -- uid: 17683 - type: BoxFolderYellow - components: - - pos: -32.590034,-31.474169 - parent: 8364 - type: Transform -- uid: 17684 - type: Paper - components: - - pos: -32.527534,-31.396044 - parent: 8364 - type: Transform -- uid: 17685 - type: Paper - components: - - pos: -32.527534,-31.396044 - parent: 8364 - type: Transform -- uid: 17686 - type: filingCabinetTall - components: - - pos: -20.5,-19.5 - parent: 8364 - type: Transform -- uid: 17687 - type: ComputerShuttleCargo - components: - - pos: -41.5,-29.5 - parent: 8364 - type: Transform -- uid: 17688 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-74.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17689 - type: Poweredlight - components: - - pos: 12.5,-70.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17690 - type: AirlockEngineeringGlassLocked - components: - - name: AME Room - type: MetaData - - pos: 10.5,-72.5 - parent: 8364 - type: Transform -- uid: 17691 - type: AirlockEngineeringGlassLocked - components: - - name: AME Room - type: MetaData - - pos: 10.5,-73.5 - parent: 8364 - type: Transform -- uid: 17692 - type: Table - components: - - pos: -41.5,-12.5 - parent: 8364 - type: Transform -- uid: 17693 - type: Table - components: - - pos: -43.5,-12.5 - parent: 8364 - type: Transform -- uid: 17694 - type: MaintenanceFluffSpawner - components: - - pos: -43.5,-10.5 - parent: 8364 - type: Transform -- uid: 17695 - type: SingularityGenerator - components: - - pos: -13.5,-61.5 - parent: 8364 - type: Transform -- uid: 17696 - type: Rack - components: - - pos: -12.5,-61.5 - parent: 8364 - type: Transform -- uid: 17697 - type: SheetGlass - components: - - pos: -12.5,-61.5 - parent: 8364 - type: Transform -- uid: 17698 - type: PartRodMetal - components: - - pos: -12.5,-61.5 - parent: 8364 - type: Transform -- uid: 17699 - type: SheetRGlass - components: - - pos: -12.5,-61.5 - parent: 8364 - type: Transform -- uid: 17700 - type: SheetSteel - components: - - pos: -12.5,-61.5 - parent: 8364 - type: Transform -- uid: 17701 - type: PottedPlant12 - components: - - pos: -37.5,-4.5 - parent: 8364 - type: Transform -- uid: 17702 - type: ContainmentFieldGenerator - components: - - pos: -12.5,-63.5 - parent: 8364 - type: Transform -- uid: 17703 - type: ContainmentFieldGenerator - components: - - pos: -13.5,-63.5 - parent: 8364 - type: Transform -- uid: 17704 - type: ContainmentFieldGenerator - components: - - pos: -12.5,-64.5 - parent: 8364 - type: Transform -- uid: 17705 - type: ContainmentFieldGenerator - components: - - pos: -13.5,-64.5 - parent: 8364 - type: Transform -- uid: 17706 - type: ContainmentFieldGenerator - components: - - pos: -12.5,-65.5 - parent: 8364 - type: Transform -- uid: 17707 - type: ContainmentFieldGenerator - components: - - pos: -13.5,-65.5 - parent: 8364 - type: Transform -- uid: 17708 - type: ContainmentFieldGenerator - components: - - pos: -13.5,-66.5 - parent: 8364 - type: Transform -- uid: 17709 - type: Emitter - components: - - pos: -12.5,-66.5 - parent: 8364 - type: Transform -- uid: 17710 - type: Emitter - components: - - pos: -11.5,-66.5 - parent: 8364 - type: Transform -- uid: 17711 - type: Emitter - components: - - pos: -11.5,-65.5 - parent: 8364 - type: Transform -- uid: 17712 - type: Emitter - components: - - pos: -11.5,-64.5 - parent: 8364 - type: Transform -- uid: 17713 - type: WeldingFuelTankFull - components: - - pos: -8.5,-61.5 - parent: 8364 - type: Transform -- uid: 17714 - type: StorageCanister - components: - - pos: -9.5,-61.5 - parent: 8364 - type: Transform -- uid: 17715 - type: WaterTankFull - components: - - pos: -4.5,-61.5 - parent: 8364 - type: Transform -- uid: 17716 - type: CrateEngineeringSolar - components: - - pos: -7.5,-64.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 17717 - type: Table - components: - - pos: -8.5,-64.5 - parent: 8364 - type: Transform -- uid: 17718 - type: Table - components: - - pos: -9.5,-64.5 - parent: 8364 - type: Transform -- uid: 17719 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,-64.5 - parent: 8364 - type: Transform -- uid: 17720 - type: SpawnMobRaccoonMorticia - components: - - pos: -33.5,-29.5 - parent: 8364 - type: Transform -- uid: 17721 - type: ComputerAlert - components: - - pos: -0.5,-61.5 - parent: 8364 - type: Transform -- uid: 17722 - type: ChairOfficeDark - components: - - pos: -32.5,-30.5 - parent: 8364 - type: Transform -- uid: 17723 - type: CableMV - components: - - pos: -31.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17724 - type: CableMV - components: - - pos: -31.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17725 - type: CableMV - components: - - pos: -31.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17726 - type: CableMV - components: - - pos: -31.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17727 - type: CableMV - components: - - pos: -32.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17728 - type: CableMV - components: - - pos: -33.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17729 - type: CableMV - components: - - pos: -33.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17730 - type: CableMV - components: - - pos: -33.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17731 - type: CableMV - components: - - pos: -32.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17732 - type: CableMV - components: - - pos: -31.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17733 - type: CableMV - components: - - pos: -30.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17734 - type: CableMV - components: - - pos: -29.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17735 - type: CableMV - components: - - pos: -28.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17736 - type: CableMV - components: - - pos: -28.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17737 - type: CableMV - components: - - pos: -28.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17738 - type: CableMV - components: - - pos: -28.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17739 - type: CableMV - components: - - pos: -27.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17740 - type: CableMV - components: - - pos: -26.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17741 - type: CableMV - components: - - pos: -25.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17742 - type: CableMV - components: - - pos: -24.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17743 - type: CableMV - components: - - pos: -23.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17744 - type: CableMV - components: - - pos: -22.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17745 - type: CableMV - components: - - pos: -21.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17746 - type: CableMV - components: - - pos: -21.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17747 - type: CableMV - components: - - pos: -21.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17748 - type: CableMV - components: - - pos: -21.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17749 - type: CableMV - components: - - pos: -21.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17750 - type: CableMV - components: - - pos: -20.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17751 - type: CableMV - components: - - pos: -19.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17752 - type: CableApcStack - components: - - pos: -9.717347,-64.16326 - parent: 8364 - type: Transform -- uid: 17753 - type: CableMVStack - components: - - pos: -9.545472,-64.31951 - parent: 8364 - type: Transform -- uid: 17754 - type: CableHVStack - components: - - pos: -9.404847,-64.49139 - parent: 8364 - type: Transform -- uid: 17755 - type: ToolboxMechanicalFilled - components: - - pos: -9.012563,-64.24783 - parent: 8364 - type: Transform -- uid: 17756 - type: ToolboxElectricalFilled - components: - - pos: -9.075063,-64.60721 - parent: 8364 - type: Transform -- uid: 17757 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,-74.5 - parent: 8364 - type: Transform -- uid: 17758 - type: PottedPlant24 - components: - - pos: -34.5,-31.5 - parent: 8364 - type: Transform -- uid: 17759 - type: filingCabinet - components: - - pos: -30.5,-31.5 - parent: 8364 - type: Transform -- uid: 17760 - type: DonkpocketBoxSpawner - components: - - pos: -30.5,-15.5 - parent: 8364 - type: Transform -- uid: 17761 - type: KitchenMicrowave - components: - - pos: -29.5,-15.5 - parent: 8364 - type: Transform -- uid: 17762 - type: Table - components: - - pos: -29.5,-15.5 - parent: 8364 - type: Transform -- uid: 17763 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,-64.5 - parent: 8364 - type: Transform -- uid: 17764 - type: LockerEngineerFilled - components: - - pos: -17.5,-73.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 17765 - type: LockerEngineerFilled - components: - - pos: -17.5,-72.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 17766 - type: LockerEngineerFilled - components: - - pos: -17.5,-71.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 17767 - type: LockerEngineerFilled - components: - - pos: -17.5,-70.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 17768 - type: CrateFilledSpawner - components: - - pos: -32.5,-15.5 - parent: 8364 - type: Transform -- uid: 17769 - type: CrateFilledSpawner - components: - - pos: -29.5,-14.5 - parent: 8364 - type: Transform -- uid: 17770 - type: CrateFilledSpawner - components: - - pos: -30.5,-16.5 - parent: 8364 - type: Transform -- uid: 17771 - type: Table - components: - - pos: -12.5,-72.5 - parent: 8364 - type: Transform -- uid: 17772 - type: Table - components: - - pos: -12.5,-71.5 - parent: 8364 - type: Transform -- uid: 17773 - type: Table - components: - - pos: -12.5,-70.5 - parent: 8364 - type: Transform -- uid: 17774 - type: CrateEmptySpawner - components: - - pos: -29.5,-16.5 - parent: 8364 - type: Transform -- uid: 17775 - type: Table - components: - - pos: -13.5,-70.5 - parent: 8364 - type: Transform -- uid: 17776 - type: CrateEmptySpawner - components: - - pos: -31.5,-13.5 - parent: 8364 - type: Transform -- uid: 17777 - type: Table - components: - - pos: -14.5,-70.5 - parent: 8364 - type: Transform -- uid: 17778 - type: Table - components: - - pos: -15.5,-70.5 - parent: 8364 - type: Transform -- uid: 17779 - type: CableApcStack - components: - - pos: -12.28748,-72.52563 - parent: 8364 - type: Transform -- uid: 17780 - type: CableMVStack - components: - - pos: -12.50623,-72.385 - parent: 8364 - type: Transform -- uid: 17781 - type: CableHVStack - components: - - pos: -12.63123,-72.22875 - parent: 8364 - type: Transform -- uid: 17782 - type: SheetGlass - components: - - rot: 0.05433867871761322 rad - pos: -12.276855,-71.75135 - parent: 8364 - type: Transform -- uid: 17783 - type: SheetRGlass - components: - - pos: -12.553105,-71.58813 - parent: 8364 - type: Transform -- uid: 17784 - type: SheetSteel - components: - - rot: 0.00260317325592041 rad - pos: -12.26562,-71.073494 - parent: 8364 - type: Transform -- uid: 17785 - type: PartRodMetal - components: - - pos: -12.66248,-70.93188 - parent: 8364 - type: Transform -- uid: 17786 - type: ToolboxMechanicalFilled - components: - - pos: -12.553105,-70.18188 - parent: 8364 - type: Transform -- uid: 17787 - type: ToolboxElectricalFilled - components: - - pos: -12.41248,-70.41625 - parent: 8364 - type: Transform -- uid: 17788 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: -13.5,-74.5 - parent: 8364 - type: Transform -- uid: 17789 - type: CrateEmptySpawner - components: - - pos: -31.5,-12.5 - parent: 8364 - type: Transform -- uid: 17790 - type: CrateEmptySpawner - components: - - pos: -29.5,-12.5 - parent: 8364 - type: Transform -- uid: 17791 - type: SignalButton - components: - - pos: -42.5,-29.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 18327 - - port: Toggle - uid: 18326 - type: SignalTransmitter -- uid: 17792 - type: Grille - components: - - pos: -42.5,-24.5 - parent: 8364 - type: Transform -- uid: 17793 - type: Grille - components: - - pos: -42.5,-25.5 - parent: 8364 - type: Transform -- uid: 17794 - type: PowerCellRecharger - components: - - pos: -15.5,-70.5 - parent: 8364 - type: Transform -- uid: 17795 - type: Grille - components: - - pos: -42.5,-26.5 - parent: 8364 - type: Transform -- uid: 17796 - type: Grille - components: - - pos: -43.5,-26.5 - parent: 8364 - type: Transform -- uid: 17797 - type: Grille - components: - - pos: -44.5,-26.5 - parent: 8364 - type: Transform -- uid: 17798 - type: Grille - components: - - pos: -44.5,-32.5 - parent: 8364 - type: Transform -- uid: 17799 - type: Grille - components: - - pos: -43.5,-32.5 - parent: 8364 - type: Transform -- uid: 17800 - type: Grille - components: - - pos: -41.5,-32.5 - parent: 8364 - type: Transform -- uid: 17801 - type: Autolathe - components: - - pos: 2.5,-52.5 - parent: 8364 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage -- uid: 17802 - type: Protolathe - components: - - pos: 2.5,-53.5 - parent: 8364 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold - type: MaterialStorage -- uid: 17803 - type: Grille - components: - - pos: -42.5,-32.5 - parent: 8364 - type: Transform -- uid: 17804 - type: Grille - components: - - pos: -39.5,-32.5 - parent: 8364 - type: Transform -- uid: 17805 - type: Grille - components: - - pos: -38.5,-32.5 - parent: 8364 - type: Transform -- uid: 17806 - type: Grille - components: - - pos: -37.5,-32.5 - parent: 8364 - type: Transform -- uid: 17807 - type: CableMV - components: - - pos: 5.5,-47.5 - parent: 8364 - type: Transform -- uid: 17808 - type: CableMV - components: - - pos: 4.5,-47.5 - parent: 8364 - type: Transform -- uid: 17809 - type: ClosetToolFilled - components: - - pos: 1.5,-65.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 17810 - type: SignSpace - components: - - pos: -44.5,-29.5 - parent: 8364 - type: Transform -- uid: 17811 - type: CableApcExtension - components: - - pos: 8.5,-66.5 - parent: 8364 - type: Transform -- uid: 17812 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-44.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17813 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-45.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17814 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-46.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17815 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-47.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17816 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-49.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17817 - type: WallSolid - components: - - pos: 27.5,-35.5 - parent: 8364 - type: Transform -- uid: 17818 - type: SignSpace - components: - - pos: -44.5,-32.5 - parent: 8364 - type: Transform -- uid: 17819 - type: WallSolid - components: - - pos: 27.5,-31.5 - parent: 8364 - type: Transform -- uid: 17820 - type: WallSolid - components: - - pos: 28.5,-31.5 - parent: 8364 - type: Transform -- uid: 17821 - type: WallSolid - components: - - pos: 28.5,-30.5 - parent: 8364 - type: Transform -- uid: 17822 - type: WallSolid - components: - - pos: 28.5,-27.5 - parent: 8364 - type: Transform -- uid: 17823 - type: WallSolid - components: - - pos: 28.5,-26.5 - parent: 8364 - type: Transform -- uid: 17824 - type: WallSolid - components: - - pos: 30.5,-26.5 - parent: 8364 - type: Transform -- uid: 17825 - type: WallSolid - components: - - pos: 32.5,-26.5 - parent: 8364 - type: Transform -- uid: 17826 - type: WallSolid - components: - - pos: 34.5,-26.5 - parent: 8364 - type: Transform -- uid: 17827 - type: WallSolid - components: - - pos: 34.5,-27.5 - parent: 8364 - type: Transform -- uid: 17828 - type: WallSolid - components: - - pos: 34.5,-30.5 - parent: 8364 - type: Transform -- uid: 17829 - type: WallSolid - components: - - pos: 34.5,-31.5 - parent: 8364 - type: Transform -- uid: 17830 - type: WallSolid - components: - - pos: 33.5,-31.5 - parent: 8364 - type: Transform -- uid: 17831 - type: WallSolid - components: - - pos: 32.5,-31.5 - parent: 8364 - type: Transform -- uid: 17832 - type: WallSolid - components: - - pos: 31.5,-31.5 - parent: 8364 - type: Transform -- uid: 17833 - type: WallSolid - components: - - pos: 30.5,-31.5 - parent: 8364 - type: Transform -- uid: 17834 - type: WallSolid - components: - - pos: 29.5,-31.5 - parent: 8364 - type: Transform -- uid: 17835 - type: ReinforcedWindow - components: - - pos: 27.5,-32.5 - parent: 8364 - type: Transform -- uid: 17836 - type: Grille - components: - - pos: 38.5,-35.5 - parent: 8364 - type: Transform -- uid: 17837 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-32.5 - parent: 8364 - type: Transform -- uid: 17838 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-32.5 - parent: 8364 - type: Transform -- uid: 17839 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-32.5 - parent: 8364 - type: Transform -- uid: 17840 - type: WallSolid - components: - - pos: 43.5,-25.5 - parent: 8364 - type: Transform -- uid: 17841 - type: WallSolid - components: - - pos: 37.5,-25.5 - parent: 8364 - type: Transform -- uid: 17842 - type: WallSolid - components: - - pos: 37.5,-26.5 - parent: 8364 - type: Transform -- uid: 17843 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -42.5,1.5 - parent: 8364 - type: Transform -- uid: 17844 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-28.5 - parent: 8364 - type: Transform -- uid: 17845 - type: WallSolid - components: - - pos: 37.5,-29.5 - parent: 8364 - type: Transform -- uid: 17846 - type: WallSolid - components: - - pos: 37.5,-30.5 - parent: 8364 - type: Transform -- uid: 17847 - type: WallSolid - components: - - pos: 38.5,-30.5 - parent: 8364 - type: Transform -- uid: 17848 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-30.5 - parent: 8364 - type: Transform -- uid: 17849 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-30.5 - parent: 8364 - type: Transform -- uid: 17850 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-30.5 - parent: 8364 - type: Transform -- uid: 17851 - type: WallSolid - components: - - pos: 42.5,-30.5 - parent: 8364 - type: Transform -- uid: 17852 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-30.5 - parent: 8364 - type: Transform -- uid: 17853 - type: WallSolid - components: - - pos: 43.5,-30.5 - parent: 8364 - type: Transform -- uid: 17854 - type: WallSolid - components: - - pos: 45.5,-30.5 - parent: 8364 - type: Transform -- uid: 17855 - type: WallSolid - components: - - pos: 44.5,-30.5 - parent: 8364 - type: Transform -- uid: 17856 - type: WallSolid - components: - - pos: 46.5,-30.5 - parent: 8364 - type: Transform -- uid: 17857 - type: WallSolid - components: - - pos: 47.5,-29.5 - parent: 8364 - type: Transform -- uid: 17858 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-30.5 - parent: 8364 - type: Transform -- uid: 17859 - type: VendingMachineGeneDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 38.5,-29.5 - parent: 8364 - type: Transform -- uid: 17860 - type: MedicalScanner - components: - - pos: 45.5,-26.5 - parent: 8364 - type: Transform - - inputs: - MedicalScannerReceiver: - - port: MedicalScannerSender - uid: 17889 - type: SignalReceiver -- uid: 17861 - type: CloningPod - components: - - pos: 45.5,-28.5 - parent: 8364 - type: Transform - - inputs: - CloningPodReceiver: - - port: CloningPodSender - uid: 17889 - type: SignalReceiver -- uid: 17862 - type: ComputerCloningConsole - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-27.5 - parent: 8364 - type: Transform -- uid: 17863 - type: WallSolid - components: - - pos: 47.5,-26.5 - parent: 8364 - type: Transform -- uid: 17864 - type: SignCloning - components: - - pos: 37.5,-25.5 - parent: 8364 - type: Transform -- uid: 17865 - type: Grille - components: - - pos: 43.5,-22.5 - parent: 8364 - type: Transform -- uid: 17866 - type: Grille - components: - - pos: 43.5,-24.5 - parent: 8364 - type: Transform -- uid: 17867 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-30.5 - parent: 8364 - type: Transform -- uid: 17868 - type: WallSolid - components: - - pos: 50.5,-37.5 - parent: 8364 - type: Transform -- uid: 17869 - type: WallSolid - components: - - pos: 50.5,-36.5 - parent: 8364 - type: Transform -- uid: 17870 - type: Bed - components: - - pos: 36.5,-36.5 - parent: 8364 - type: Transform -- uid: 17871 - type: Grille - components: - - pos: 22.5,-31.5 - parent: 8364 - type: Transform -- uid: 17872 - type: Grille - components: - - pos: 21.5,-31.5 - parent: 8364 - type: Transform -- uid: 17873 - type: Grille - components: - - pos: 20.5,-31.5 - parent: 8364 - type: Transform -- uid: 17874 - type: Grille - components: - - pos: 19.5,-31.5 - parent: 8364 - type: Transform -- uid: 17875 - type: Grille - components: - - pos: 18.5,-31.5 - parent: 8364 - type: Transform -- uid: 17876 - type: Grille - components: - - pos: 24.5,-31.5 - parent: 8364 - type: Transform -- uid: 17877 - type: Grille - components: - - pos: 26.5,-31.5 - parent: 8364 - type: Transform -- uid: 17878 - type: Grille - components: - - pos: 29.5,-26.5 - parent: 8364 - type: Transform -- uid: 17879 - type: Grille - components: - - pos: 27.5,-26.5 - parent: 8364 - type: Transform -- uid: 17880 - type: Grille - components: - - pos: 24.5,-26.5 - parent: 8364 - type: Transform -- uid: 17881 - type: Grille - components: - - pos: 31.5,-26.5 - parent: 8364 - type: Transform -- uid: 17882 - type: Grille - components: - - pos: 33.5,-26.5 - parent: 8364 - type: Transform -- uid: 17883 - type: Grille - components: - - pos: 38.5,-36.5 - parent: 8364 - type: Transform -- uid: 17884 - type: Grille - components: - - pos: 27.5,-32.5 - parent: 8364 - type: Transform -- uid: 17885 - type: WallSolid - components: - - pos: 48.5,-36.5 - parent: 8364 - type: Transform -- uid: 17886 - type: WallSolid - components: - - pos: 48.5,-34.5 - parent: 8364 - type: Transform -- uid: 17887 - type: BlockGameArcade - components: - - pos: 44.5,-31.5 - parent: 8364 - type: Transform -- uid: 17888 - type: Table - components: - - pos: 38.5,-26.5 - parent: 8364 - type: Transform -- uid: 17889 - type: ComputerCloningConsole - components: - - pos: 43.5,-26.5 - parent: 8364 - type: Transform - - outputs: - MedicalScannerSender: - - port: MedicalScannerReceiver - uid: 17860 - CloningPodSender: - - port: CloningPodReceiver - uid: 17861 - type: SignalTransmitter -- uid: 17890 - type: MedicalScanner - components: - - pos: 38.5,-28.5 - parent: 8364 - type: Transform -- uid: 17891 - type: AirlockMedicalGlassLocked - components: - - rot: 3.141592653589793 rad - pos: 42.5,-28.5 - parent: 8364 - type: Transform -- uid: 17892 - type: APCHighCapacity - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-19.5 - parent: 8364 - type: Transform -- uid: 17893 - type: Grille - components: - - pos: 42.5,-29.5 - parent: 8364 - type: Transform -- uid: 17894 - type: LockerEvidence - components: - - pos: 44.5,-22.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17895 - type: Grille - components: - - pos: 38.5,-25.5 - parent: 8364 - type: Transform -- uid: 17896 - type: APCBasic - components: - - name: Medbay APC - type: MetaData - - pos: 30.5,-26.5 - parent: 8364 - type: Transform - - startingCharge: 12000 - type: Battery - - loadingNetworkDemand: 55 - currentReceiving: 55.01975 - currentSupply: 55 - type: PowerNetworkBattery -- uid: 17897 - type: WallSolid - components: - - pos: 48.5,-18.5 - parent: 8364 - type: Transform -- uid: 17898 - type: WallSolid - components: - - pos: 47.5,-24.5 - parent: 8364 - type: Transform -- uid: 17899 - type: AirlockMedicalGlassLocked - components: - - pos: 40.5,-25.5 - parent: 8364 - type: Transform -- uid: 17900 - type: Grille - components: - - pos: 42.5,-26.5 - parent: 8364 - type: Transform -- uid: 17901 - type: ReinforcedWindow - components: - - pos: 42.5,-26.5 - parent: 8364 - type: Transform -- uid: 17902 - type: AirlockMedicalGlassLocked - components: - - rot: 3.141592653589793 rad - pos: 42.5,-27.5 - parent: 8364 - type: Transform -- uid: 17903 - type: APCHighCapacity - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-36.5 - parent: 8364 - type: Transform -- uid: 17904 - type: SignSpace - components: - - pos: -44.5,-26.5 - parent: 8364 - type: Transform -- uid: 17905 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-54.5 - parent: 8364 - type: Transform -- uid: 17906 - type: ClothingOuterCoatInspector - components: - - pos: 45.44214,-62.516068 - parent: 8364 - type: Transform -- uid: 17907 - type: CableApcExtension - components: - - pos: 30.5,-26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17908 - type: CableApcExtension - components: - - pos: 30.5,-25.5 - parent: 8364 - type: Transform -- uid: 17909 - type: CableApcExtension - components: - - pos: 23.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17910 - type: AtmosDeviceFanTiny - components: - - pos: -44.5,-28.5 - parent: 8364 - type: Transform -- uid: 17911 - type: CableApcExtension - components: - - pos: 21.5,-21.5 - parent: 8364 - type: Transform -- uid: 17912 - type: CableApcExtension - components: - - pos: 20.5,-21.5 - parent: 8364 - type: Transform -- uid: 17913 - type: CableApcExtension - components: - - pos: 19.5,-21.5 - parent: 8364 - type: Transform -- uid: 17914 - type: CableApcExtension - components: - - pos: 19.5,-20.5 - parent: 8364 - type: Transform -- uid: 17915 - type: CableApcExtension - components: - - pos: 19.5,-19.5 - parent: 8364 - type: Transform -- uid: 17916 - type: CableApcExtension - components: - - pos: 19.5,-18.5 - parent: 8364 - type: Transform -- uid: 17917 - type: CableApcExtension - components: - - pos: 19.5,-17.5 - parent: 8364 - type: Transform -- uid: 17918 - type: CableApcExtension - components: - - pos: 20.5,-17.5 - parent: 8364 - type: Transform -- uid: 17919 - type: CableApcExtension - components: - - pos: 21.5,-17.5 - parent: 8364 - type: Transform -- uid: 17920 - type: CableApcExtension - components: - - pos: 22.5,-17.5 - parent: 8364 - type: Transform -- uid: 17921 - type: CableApcExtension - components: - - pos: 23.5,-17.5 - parent: 8364 - type: Transform -- uid: 17922 - type: CableApcExtension - components: - - pos: 23.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17923 - type: CableApcExtension - components: - - pos: 20.5,-22.5 - parent: 8364 - type: Transform -- uid: 17924 - type: CableApcExtension - components: - - pos: 20.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17925 - type: CableApcExtension - components: - - pos: 30.5,-24.5 - parent: 8364 - type: Transform -- uid: 17926 - type: CableApcExtension - components: - - pos: 30.5,-23.5 - parent: 8364 - type: Transform -- uid: 17927 - type: CableApcExtension - components: - - pos: 29.5,-23.5 - parent: 8364 - type: Transform -- uid: 17928 - type: CableApcExtension - components: - - pos: 28.5,-23.5 - parent: 8364 - type: Transform -- uid: 17929 - type: CableApcExtension - components: - - pos: 27.5,-23.5 - parent: 8364 - type: Transform -- uid: 17930 - type: CableApcExtension - components: - - pos: 26.5,-23.5 - parent: 8364 - type: Transform -- uid: 17931 - type: CableApcExtension - components: - - pos: 25.5,-23.5 - parent: 8364 - type: Transform -- uid: 17932 - type: CableApcExtension - components: - - pos: 25.5,-24.5 - parent: 8364 - type: Transform -- uid: 17933 - type: CableApcExtension - components: - - pos: 25.5,-25.5 - parent: 8364 - type: Transform -- uid: 17934 - type: CableApcExtension - components: - - pos: 24.5,-25.5 - parent: 8364 - type: Transform -- uid: 17935 - type: CableApcExtension - components: - - pos: 23.5,-25.5 - parent: 8364 - type: Transform -- uid: 17936 - type: CableApcExtension - components: - - pos: 22.5,-25.5 - parent: 8364 - type: Transform -- uid: 17937 - type: CableApcExtension - components: - - pos: 21.5,-25.5 - parent: 8364 - type: Transform -- uid: 17938 - type: CableApcExtension - components: - - pos: 20.5,-25.5 - parent: 8364 - type: Transform -- uid: 17939 - type: CableApcExtension - components: - - pos: 19.5,-25.5 - parent: 8364 - type: Transform -- uid: 17940 - type: CableApcExtension - components: - - pos: 20.5,-26.5 - parent: 8364 - type: Transform -- uid: 17941 - type: CableApcExtension - components: - - pos: 31.5,-23.5 - parent: 8364 - type: Transform -- uid: 17942 - type: CableApcExtension - components: - - pos: 32.5,-23.5 - parent: 8364 - type: Transform -- uid: 17943 - type: CableApcExtension - components: - - pos: 33.5,-23.5 - parent: 8364 - type: Transform -- uid: 17944 - type: CableApcExtension - components: - - pos: 34.5,-23.5 - parent: 8364 - type: Transform -- uid: 17945 - type: CableApcExtension - components: - - pos: 35.5,-23.5 - parent: 8364 - type: Transform -- uid: 17946 - type: CableApcExtension - components: - - pos: 36.5,-23.5 - parent: 8364 - type: Transform -- uid: 17947 - type: CableApcExtension - components: - - pos: 37.5,-23.5 - parent: 8364 - type: Transform -- uid: 17948 - type: CableApcExtension - components: - - pos: 38.5,-23.5 - parent: 8364 - type: Transform -- uid: 17949 - type: CableApcExtension - components: - - pos: 39.5,-23.5 - parent: 8364 - type: Transform -- uid: 17950 - type: CableApcExtension - components: - - pos: 39.5,-22.5 - parent: 8364 - type: Transform -- uid: 17951 - type: WallSolid - components: - - pos: 42.5,-25.5 - parent: 8364 - type: Transform -- uid: 17952 - type: ReinforcedWindow - components: - - pos: 42.5,-29.5 - parent: 8364 - type: Transform -- uid: 17953 - type: CableApcExtension - components: - - pos: 42.5,-22.5 - parent: 8364 - type: Transform -- uid: 17954 - type: CableApcExtension - components: - - pos: 43.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17955 - type: CableApcExtension - components: - - pos: 44.5,-22.5 - parent: 8364 - type: Transform -- uid: 17956 - type: CableApcExtension - components: - - pos: 45.5,-22.5 - parent: 8364 - type: Transform -- uid: 17957 - type: CableApcExtension - components: - - pos: 46.5,-22.5 - parent: 8364 - type: Transform -- uid: 17958 - type: CableApcExtension - components: - - pos: 40.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17959 - type: CableApcExtension - components: - - pos: 39.5,-17.5 - parent: 8364 - type: Transform -- uid: 17960 - type: CableApcExtension - components: - - pos: 38.5,-17.5 - parent: 8364 - type: Transform -- uid: 17961 - type: CableApcExtension - components: - - pos: 38.5,-18.5 - parent: 8364 - type: Transform -- uid: 17962 - type: CableApcExtension - components: - - pos: 38.5,-19.5 - parent: 8364 - type: Transform -- uid: 17963 - type: CableApcExtension - components: - - pos: 38.5,-20.5 - parent: 8364 - type: Transform -- uid: 17964 - type: CableApcExtension - components: - - pos: 37.5,-20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17965 - type: CableApcExtension - components: - - pos: 39.5,-20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17966 - type: CableApcExtension - components: - - pos: 36.5,-24.5 - parent: 8364 - type: Transform -- uid: 17967 - type: CableApcExtension - components: - - pos: 36.5,-25.5 - parent: 8364 - type: Transform -- uid: 17968 - type: CableApcExtension - components: - - pos: 36.5,-26.5 - parent: 8364 - type: Transform -- uid: 17969 - type: CableApcExtension - components: - - pos: 36.5,-27.5 - parent: 8364 - type: Transform -- uid: 17970 - type: CableApcExtension - components: - - pos: 36.5,-28.5 - parent: 8364 - type: Transform -- uid: 17971 - type: CableApcExtension - components: - - pos: 36.5,-29.5 - parent: 8364 - type: Transform -- uid: 17972 - type: CableApcExtension - components: - - pos: 36.5,-30.5 - parent: 8364 - type: Transform -- uid: 17973 - type: CableApcExtension - components: - - pos: 36.5,-31.5 - parent: 8364 - type: Transform -- uid: 17974 - type: CableApcExtension - components: - - pos: 36.5,-32.5 - parent: 8364 - type: Transform -- uid: 17975 - type: CableApcExtension - components: - - pos: 37.5,-32.5 - parent: 8364 - type: Transform -- uid: 17976 - type: CableApcExtension - components: - - pos: 38.5,-32.5 - parent: 8364 - type: Transform -- uid: 17977 - type: CableApcExtension - components: - - pos: 39.5,-32.5 - parent: 8364 - type: Transform -- uid: 17978 - type: CableApcExtension - components: - - pos: 40.5,-32.5 - parent: 8364 - type: Transform -- uid: 17979 - type: CableApcExtension - components: - - pos: 41.5,-32.5 - parent: 8364 - type: Transform -- uid: 17980 - type: CableApcExtension - components: - - pos: 41.5,-33.5 - parent: 8364 - type: Transform -- uid: 17981 - type: CableApcExtension - components: - - pos: 41.5,-34.5 - parent: 8364 - type: Transform -- uid: 17982 - type: CableApcExtension - components: - - pos: 41.5,-35.5 - parent: 8364 - type: Transform -- uid: 17983 - type: CableApcExtension - components: - - pos: 40.5,-35.5 - parent: 8364 - type: Transform -- uid: 17984 - type: CableApcExtension - components: - - pos: 40.5,-36.5 - parent: 8364 - type: Transform -- uid: 17985 - type: CableApcExtension - components: - - pos: 40.5,-37.5 - parent: 8364 - type: Transform -- uid: 17986 - type: CableApcExtension - components: - - pos: 40.5,-38.5 - parent: 8364 - type: Transform -- uid: 17987 - type: CableApcExtension - components: - - pos: 40.5,-39.5 - parent: 8364 - type: Transform -- uid: 17988 - type: CableApcExtension - components: - - pos: 37.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17989 - type: CableApcExtension - components: - - pos: 37.5,-53.5 - parent: 8364 - type: Transform -- uid: 17990 - type: CableApcExtension - components: - - pos: 39.5,-39.5 - parent: 8364 - type: Transform -- uid: 17991 - type: CableApcExtension - components: - - pos: 38.5,-39.5 - parent: 8364 - type: Transform -- uid: 17992 - type: CableApcExtension - components: - - pos: 37.5,-39.5 - parent: 8364 - type: Transform -- uid: 17993 - type: CableApcExtension - components: - - pos: 36.5,-39.5 - parent: 8364 - type: Transform -- uid: 17994 - type: CableApcExtension - components: - - pos: 35.5,-39.5 - parent: 8364 - type: Transform -- uid: 17995 - type: CableApcExtension - components: - - pos: 35.5,-40.5 - parent: 8364 - type: Transform -- uid: 17996 - type: CableApcExtension - components: - - pos: 35.5,-41.5 - parent: 8364 - type: Transform -- uid: 17997 - type: CableApcExtension - components: - - pos: 35.5,-42.5 - parent: 8364 - type: Transform -- uid: 17998 - type: CableApcExtension - components: - - pos: 38.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17999 - type: CableApcExtension - components: - - pos: 38.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18000 - type: CableApcExtension - components: - - pos: 43.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18001 - type: CableApcExtension - components: - - pos: 43.5,-35.5 - parent: 8364 - type: Transform -- uid: 18002 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-21.5 - parent: 8364 - type: Transform -- uid: 18003 - type: CableApcExtension - components: - - pos: 45.5,-35.5 - parent: 8364 - type: Transform -- uid: 18004 - type: CableApcExtension - components: - - pos: 44.5,-35.5 - parent: 8364 - type: Transform -- uid: 18005 - type: CableApcExtension - components: - - pos: 44.5,-32.5 - parent: 8364 - type: Transform -- uid: 18006 - type: CableApcExtension - components: - - pos: 45.5,-32.5 - parent: 8364 - type: Transform -- uid: 18007 - type: CableApcExtension - components: - - pos: 46.5,-32.5 - parent: 8364 - type: Transform -- uid: 18008 - type: CableApcExtension - components: - - pos: 46.5,-33.5 - parent: 8364 - type: Transform -- uid: 18009 - type: CableApcExtension - components: - - pos: 46.5,-34.5 - parent: 8364 - type: Transform -- uid: 18010 - type: CableApcExtension - components: - - pos: 46.5,-35.5 - parent: 8364 - type: Transform -- uid: 18011 - type: CableApcExtension - components: - - pos: 42.5,-29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18012 - type: CableApcExtension - components: - - pos: 42.5,-28.5 - parent: 8364 - type: Transform -- uid: 18013 - type: CableApcExtension - components: - - pos: 42.5,-27.5 - parent: 8364 - type: Transform -- uid: 18014 - type: CableApcExtension - components: - - pos: 42.5,-26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18015 - type: CableApcExtension - components: - - pos: 43.5,-26.5 - parent: 8364 - type: Transform -- uid: 18016 - type: CableApcExtension - components: - - pos: 42.5,-24.5 - parent: 8364 - type: Transform -- uid: 18017 - type: CableApcExtension - components: - - pos: 41.5,-25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18018 - type: CableApcExtension - components: - - pos: 40.5,-25.5 - parent: 8364 - type: Transform -- uid: 18019 - type: CableApcExtension - components: - - pos: 43.5,-24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18020 - type: CableApcExtension - components: - - pos: 44.5,-24.5 - parent: 8364 - type: Transform -- uid: 18021 - type: CableApcExtension - components: - - pos: 45.5,-24.5 - parent: 8364 - type: Transform -- uid: 18022 - type: CableApcExtension - components: - - pos: 46.5,-24.5 - parent: 8364 - type: Transform -- uid: 18023 - type: CableApcExtension - components: - - pos: 43.5,-28.5 - parent: 8364 - type: Transform -- uid: 18024 - type: CableApcExtension - components: - - pos: 44.5,-28.5 - parent: 8364 - type: Transform -- uid: 18025 - type: CableApcExtension - components: - - pos: 45.5,-28.5 - parent: 8364 - type: Transform -- uid: 18026 - type: CableApcExtension - components: - - pos: 46.5,-28.5 - parent: 8364 - type: Transform -- uid: 18027 - type: CableApcExtension - components: - - pos: 46.5,-27.5 - parent: 8364 - type: Transform -- uid: 18028 - type: CableApcExtension - components: - - pos: 46.5,-26.5 - parent: 8364 - type: Transform -- uid: 18029 - type: CableApcExtension - components: - - pos: 45.5,-26.5 - parent: 8364 - type: Transform -- uid: 18030 - type: CableApcExtension - components: - - pos: 44.5,-26.5 - parent: 8364 - type: Transform -- uid: 18031 - type: CableApcExtension - components: - - pos: 41.5,-28.5 - parent: 8364 - type: Transform -- uid: 18032 - type: CableApcExtension - components: - - pos: 40.5,-28.5 - parent: 8364 - type: Transform -- uid: 18033 - type: CableApcExtension - components: - - pos: 39.5,-28.5 - parent: 8364 - type: Transform -- uid: 18034 - type: CableApcExtension - components: - - pos: 39.5,-27.5 - parent: 8364 - type: Transform -- uid: 18035 - type: WallSolid - components: - - pos: 34.5,-33.5 - parent: 8364 - type: Transform -- uid: 18036 - type: ReinforcedWindow - components: - - pos: 37.5,-33.5 - parent: 8364 - type: Transform -- uid: 18037 - type: ReinforcedWindow - components: - - pos: 36.5,-33.5 - parent: 8364 - type: Transform -- uid: 18038 - type: Grille - components: - - pos: 36.5,-33.5 - parent: 8364 - type: Transform -- uid: 18039 - type: AtmosDeviceFanTiny - components: - - pos: -44.5,-30.5 - parent: 8364 - type: Transform -- uid: 18040 - type: AirlockExternalGlassCargoLocked - components: - - pos: -42.5,-28.5 - parent: 8364 - type: Transform -- uid: 18041 - type: CableApcExtension - components: - - pos: 42.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18042 - type: CableApcExtension - components: - - pos: 42.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18043 - type: CableApcExtension - components: - - pos: 42.5,-45.5 - parent: 8364 - type: Transform -- uid: 18044 - type: CableApcExtension - components: - - pos: 42.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18045 - type: CableApcExtension - components: - - pos: 42.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18046 - type: CableApcExtension - components: - - pos: 43.5,-45.5 - parent: 8364 - type: Transform -- uid: 18047 - type: CableApcExtension - components: - - pos: 44.5,-45.5 - parent: 8364 - type: Transform -- uid: 18048 - type: CableApcExtension - components: - - pos: 45.5,-45.5 - parent: 8364 - type: Transform -- uid: 18049 - type: CableApcExtension - components: - - pos: 45.5,-46.5 - parent: 8364 - type: Transform -- uid: 18050 - type: CableApcExtension - components: - - pos: 41.5,-45.5 - parent: 8364 - type: Transform -- uid: 18051 - type: CableApcExtension - components: - - pos: 40.5,-45.5 - parent: 8364 - type: Transform -- uid: 18052 - type: CableApcExtension - components: - - pos: 39.5,-45.5 - parent: 8364 - type: Transform -- uid: 18053 - type: CableApcExtension - components: - - pos: 38.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18054 - type: CableApcExtension - components: - - pos: 37.5,-45.5 - parent: 8364 - type: Transform -- uid: 18055 - type: CableApcExtension - components: - - pos: 36.5,-45.5 - parent: 8364 - type: Transform -- uid: 18056 - type: CableApcExtension - components: - - pos: 35.5,-45.5 - parent: 8364 - type: Transform -- uid: 18057 - type: CableApcExtension - components: - - pos: 40.5,-46.5 - parent: 8364 - type: Transform -- uid: 18058 - type: CableApcExtension - components: - - pos: 40.5,-47.5 - parent: 8364 - type: Transform -- uid: 18059 - type: CableApcExtension - components: - - pos: 40.5,-48.5 - parent: 8364 - type: Transform -- uid: 18060 - type: TintedWindow - components: - - pos: 38.5,-45.5 - parent: 8364 - type: Transform -- uid: 18061 - type: AirlockMedicalGlassLocked - components: - - name: Patient Room 2 - type: MetaData - - pos: 38.5,-49.5 - parent: 8364 - type: Transform -- uid: 18062 - type: CableApcExtension - components: - - pos: 36.5,-48.5 - parent: 8364 - type: Transform -- uid: 18063 - type: CableApcExtension - components: - - pos: 38.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18064 - type: CableApcExtension - components: - - pos: 37.5,-48.5 - parent: 8364 - type: Transform -- uid: 18065 - type: CableApcExtension - components: - - pos: 35.5,-48.5 - parent: 8364 - type: Transform -- uid: 18066 - type: CableApcExtension - components: - - pos: 40.5,-44.5 - parent: 8364 - type: Transform -- uid: 18067 - type: CableApcExtension - components: - - pos: 40.5,-43.5 - parent: 8364 - type: Transform -- uid: 18068 - type: CableApcExtension - components: - - pos: 37.5,-52.5 - parent: 8364 - type: Transform -- uid: 18069 - type: CableApcExtension - components: - - pos: 36.5,-52.5 - parent: 8364 - type: Transform -- uid: 18070 - type: CableApcExtension - components: - - pos: 35.5,-52.5 - parent: 8364 - type: Transform -- uid: 18071 - type: CableApcExtension - components: - - pos: 35.5,-53.5 - parent: 8364 - type: Transform -- uid: 18072 - type: CableApcExtension - components: - - pos: 35.5,-54.5 - parent: 8364 - type: Transform -- uid: 18073 - type: CableApcExtension - components: - - pos: 37.5,-55.5 - parent: 8364 - type: Transform -- uid: 18074 - type: CableApcExtension - components: - - pos: 38.5,-55.5 - parent: 8364 - type: Transform -- uid: 18075 - type: CableApcExtension - components: - - pos: 39.5,-55.5 - parent: 8364 - type: Transform -- uid: 18076 - type: CableApcExtension - components: - - pos: 40.5,-55.5 - parent: 8364 - type: Transform -- uid: 18077 - type: CableApcExtension - components: - - pos: 40.5,-54.5 - parent: 8364 - type: Transform -- uid: 18078 - type: CableApcExtension - components: - - pos: 40.5,-53.5 - parent: 8364 - type: Transform -- uid: 18079 - type: CableApcExtension - components: - - pos: 40.5,-52.5 - parent: 8364 - type: Transform -- uid: 18080 - type: CableApcExtension - components: - - pos: 40.5,-51.5 - parent: 8364 - type: Transform -- uid: 18081 - type: CableApcExtension - components: - - pos: 39.5,-56.5 - parent: 8364 - type: Transform -- uid: 18082 - type: CableApcExtension - components: - - pos: 39.5,-57.5 - parent: 8364 - type: Transform -- uid: 18083 - type: CableApcExtension - components: - - pos: 39.5,-58.5 - parent: 8364 - type: Transform -- uid: 18084 - type: CableApcExtension - components: - - pos: 39.5,-59.5 - parent: 8364 - type: Transform -- uid: 18085 - type: CableApcExtension - components: - - pos: 40.5,-59.5 - parent: 8364 - type: Transform -- uid: 18086 - type: CableApcExtension - components: - - pos: 41.5,-59.5 - parent: 8364 - type: Transform -- uid: 18087 - type: CableApcExtension - components: - - pos: 42.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18088 - type: CableApcExtension - components: - - pos: 42.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18089 - type: CableApcExtension - components: - - pos: 42.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18090 - type: CableApcExtension - components: - - pos: 45.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18091 - type: CableApcExtension - components: - - pos: 42.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18092 - type: CableApcExtension - components: - - pos: 45.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18093 - type: CableApcExtension - components: - - pos: 45.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18094 - type: CableApcExtension - components: - - pos: 44.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18095 - type: CableApcExtension - components: - - pos: 46.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18096 - type: CableApcExtension - components: - - pos: 45.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18097 - type: CableApcExtension - components: - - pos: 44.5,-59.5 - parent: 8364 - type: Transform -- uid: 18098 - type: CableApcExtension - components: - - pos: 43.5,-59.5 - parent: 8364 - type: Transform -- uid: 18099 - type: CableApcExtension - components: - - pos: 45.5,-56.5 - parent: 8364 - type: Transform -- uid: 18100 - type: CableApcExtension - components: - - pos: 45.5,-55.5 - parent: 8364 - type: Transform -- uid: 18101 - type: CableApcExtension - components: - - pos: 45.5,-54.5 - parent: 8364 - type: Transform -- uid: 18102 - type: CableApcExtension - components: - - pos: 44.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18103 - type: CableApcExtension - components: - - pos: 43.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18104 - type: CableApcExtension - components: - - pos: 46.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18105 - type: CableApcExtension - components: - - pos: 47.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18106 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-27.5 - parent: 8364 - type: Transform -- uid: 18107 - type: CableApcExtension - components: - - pos: 45.5,-53.5 - parent: 8364 - type: Transform -- uid: 18108 - type: SubstationBasic - components: - - name: Medbay Substation - type: MetaData - - pos: 46.5,-38.5 - parent: 8364 - type: Transform - - startingCharge: 2421964.2 - type: Battery - - loadingNetworkDemand: 225.0009 - currentSupply: 225.0009 - supplyRampPosition: 225.0009 - type: PowerNetworkBattery -- uid: 18109 - type: Rack - components: - - pos: 47.5,-38.5 - parent: 8364 - type: Transform -- uid: 18110 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 46.5,-39.5 - parent: 8364 - type: Transform -- uid: 18111 - type: CableHV - components: - - pos: 48.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18112 - type: CableHV - components: - - pos: 47.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18113 - type: CableHV - components: - - pos: 47.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18114 - type: CableHV - components: - - pos: 47.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18115 - type: CableHV - components: - - pos: 47.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18116 - type: CableHV - components: - - pos: 46.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18117 - type: CableMV - components: - - pos: 46.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18118 - type: CableMV - components: - - pos: 47.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18119 - type: CableMV - components: - - pos: 47.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18120 - type: CableMV - components: - - pos: 47.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18121 - type: CableMV - components: - - pos: 47.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18122 - type: CableMV - components: - - pos: 47.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18123 - type: CableMV - components: - - pos: 46.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18124 - type: CableMV - components: - - pos: 45.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18125 - type: CableMV - components: - - pos: 44.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18126 - type: CableMV - components: - - pos: 43.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18127 - type: CableMV - components: - - pos: 42.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18128 - type: CableMV - components: - - pos: 41.5,-42.5 - parent: 8364 - type: Transform -- uid: 18129 - type: CableMV - components: - - pos: 40.5,-42.5 - parent: 8364 - type: Transform -- uid: 18130 - type: CableMV - components: - - pos: 40.5,-43.5 - parent: 8364 - type: Transform -- uid: 18131 - type: CableMV - components: - - pos: 40.5,-44.5 - parent: 8364 - type: Transform -- uid: 18132 - type: CableMV - components: - - pos: 40.5,-45.5 - parent: 8364 - type: Transform -- uid: 18133 - type: CableMV - components: - - pos: 40.5,-46.5 - parent: 8364 - type: Transform -- uid: 18134 - type: CableMV - components: - - pos: 40.5,-47.5 - parent: 8364 - type: Transform -- uid: 18135 - type: CableMV - components: - - pos: 40.5,-48.5 - parent: 8364 - type: Transform -- uid: 18136 - type: CableMV - components: - - pos: 40.5,-49.5 - parent: 8364 - type: Transform -- uid: 18137 - type: CableMV - components: - - pos: 40.5,-50.5 - parent: 8364 - type: Transform -- uid: 18138 - type: CableMV - components: - - pos: 40.5,-51.5 - parent: 8364 - type: Transform -- uid: 18139 - type: CableMV - components: - - pos: 40.5,-52.5 - parent: 8364 - type: Transform -- uid: 18140 - type: CableMV - components: - - pos: 40.5,-53.5 - parent: 8364 - type: Transform -- uid: 18141 - type: CableMV - components: - - pos: 40.5,-54.5 - parent: 8364 - type: Transform -- uid: 18142 - type: CableMV - components: - - pos: 40.5,-55.5 - parent: 8364 - type: Transform -- uid: 18143 - type: CableMV - components: - - pos: 39.5,-55.5 - parent: 8364 - type: Transform -- uid: 18144 - type: CableMV - components: - - pos: 38.5,-55.5 - parent: 8364 - type: Transform -- uid: 18145 - type: CableMV - components: - - pos: 37.5,-55.5 - parent: 8364 - type: Transform -- uid: 18146 - type: CableMV - components: - - pos: 37.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18147 - type: CableMV - components: - - pos: 41.5,-47.5 - parent: 8364 - type: Transform -- uid: 18148 - type: CableMV - components: - - pos: 42.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18149 - type: CableMV - components: - - pos: 40.5,-41.5 - parent: 8364 - type: Transform -- uid: 18150 - type: CableMV - components: - - pos: 40.5,-40.5 - parent: 8364 - type: Transform -- uid: 18151 - type: CableMV - components: - - pos: 40.5,-39.5 - parent: 8364 - type: Transform -- uid: 18152 - type: CableMV - components: - - pos: 40.5,-38.5 - parent: 8364 - type: Transform -- uid: 18153 - type: CableMV - components: - - pos: 40.5,-37.5 - parent: 8364 - type: Transform -- uid: 18154 - type: CableMV - components: - - pos: 40.5,-36.5 - parent: 8364 - type: Transform -- uid: 18155 - type: CableMV - components: - - pos: 41.5,-36.5 - parent: 8364 - type: Transform -- uid: 18156 - type: CableMV - components: - - pos: 42.5,-36.5 - parent: 8364 - type: Transform -- uid: 18157 - type: CableMV - components: - - pos: 43.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18158 - type: CableMV - components: - - pos: 40.5,-35.5 - parent: 8364 - type: Transform -- uid: 18159 - type: CableMV - components: - - pos: 40.5,-34.5 - parent: 8364 - type: Transform -- uid: 18160 - type: CableMV - components: - - pos: 40.5,-33.5 - parent: 8364 - type: Transform -- uid: 18161 - type: CableMV - components: - - pos: 40.5,-32.5 - parent: 8364 - type: Transform -- uid: 18162 - type: CableMV - components: - - pos: 39.5,-32.5 - parent: 8364 - type: Transform -- uid: 18163 - type: CableMV - components: - - pos: 38.5,-32.5 - parent: 8364 - type: Transform -- uid: 18164 - type: CableMV - components: - - pos: 37.5,-32.5 - parent: 8364 - type: Transform -- uid: 18165 - type: CableMV - components: - - pos: 36.5,-32.5 - parent: 8364 - type: Transform -- uid: 18166 - type: CableMV - components: - - pos: 36.5,-31.5 - parent: 8364 - type: Transform -- uid: 18167 - type: CableMV - components: - - pos: 36.5,-30.5 - parent: 8364 - type: Transform -- uid: 18168 - type: CableMV - components: - - pos: 36.5,-29.5 - parent: 8364 - type: Transform -- uid: 18169 - type: CableMV - components: - - pos: 36.5,-28.5 - parent: 8364 - type: Transform -- uid: 18170 - type: CableMV - components: - - pos: 36.5,-27.5 - parent: 8364 - type: Transform -- uid: 18171 - type: CableMV - components: - - pos: 36.5,-26.5 - parent: 8364 - type: Transform -- uid: 18172 - type: CableMV - components: - - pos: 36.5,-25.5 - parent: 8364 - type: Transform -- uid: 18173 - type: CableMV - components: - - pos: 36.5,-24.5 - parent: 8364 - type: Transform -- uid: 18174 - type: CableMV - components: - - pos: 36.5,-23.5 - parent: 8364 - type: Transform -- uid: 18175 - type: CableMV - components: - - pos: 37.5,-23.5 - parent: 8364 - type: Transform -- uid: 18176 - type: CableMV - components: - - pos: 38.5,-23.5 - parent: 8364 - type: Transform -- uid: 18177 - type: CableMV - components: - - pos: 39.5,-23.5 - parent: 8364 - type: Transform -- uid: 18178 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-23.5 - parent: 8364 - type: Transform -- uid: 18179 - type: CableMV - components: - - pos: 42.5,-23.5 - parent: 8364 - type: Transform -- uid: 18180 - type: CableMV - components: - - pos: 43.5,-23.5 - parent: 8364 - type: Transform -- uid: 18181 - type: CableMV - components: - - pos: 44.5,-23.5 - parent: 8364 - type: Transform -- uid: 18182 - type: CableMV - components: - - pos: 45.5,-23.5 - parent: 8364 - type: Transform -- uid: 18183 - type: CableMV - components: - - pos: 46.5,-23.5 - parent: 8364 - type: Transform -- uid: 18184 - type: CableMV - components: - - pos: 47.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18185 - type: CableApcExtension - components: - - pos: 46.5,-23.5 - parent: 8364 - type: Transform -- uid: 18186 - type: CableApcExtension - components: - - pos: 47.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18187 - type: CableMV - components: - - pos: 40.5,-23.5 - parent: 8364 - type: Transform -- uid: 18188 - type: CableMV - components: - - pos: 41.5,-23.5 - parent: 8364 - type: Transform -- uid: 18189 - type: CableMV - components: - - pos: 41.5,-22.5 - parent: 8364 - type: Transform -- uid: 18190 - type: CableMV - components: - - pos: 41.5,-21.5 - parent: 8364 - type: Transform -- uid: 18191 - type: CableMV - components: - - pos: 41.5,-20.5 - parent: 8364 - type: Transform -- uid: 18192 - type: CableMV - components: - - pos: 41.5,-19.5 - parent: 8364 - type: Transform -- uid: 18193 - type: CableMV - components: - - pos: 42.5,-19.5 - parent: 8364 - type: Transform -- uid: 18194 - type: CableMV - components: - - pos: 43.5,-19.5 - parent: 8364 - type: Transform -- uid: 18195 - type: CableMV - components: - - pos: 44.5,-19.5 - parent: 8364 - type: Transform -- uid: 18196 - type: HandLabeler - components: - - pos: 42.78838,-16.408396 - parent: 8364 - type: Transform -- uid: 18197 - type: CableMV - components: - - pos: 46.5,-19.5 - parent: 8364 - type: Transform -- uid: 18198 - type: CableMV - components: - - pos: 47.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18199 - type: CableMV - components: - - pos: 38.5,-22.5 - parent: 8364 - type: Transform -- uid: 18200 - type: CableMV - components: - - pos: 38.5,-21.5 - parent: 8364 - type: Transform -- uid: 18201 - type: CableMV - components: - - pos: 38.5,-20.5 - parent: 8364 - type: Transform -- uid: 18202 - type: CableMV - components: - - pos: 38.5,-19.5 - parent: 8364 - type: Transform -- uid: 18203 - type: CableMV - components: - - pos: 38.5,-18.5 - parent: 8364 - type: Transform -- uid: 18204 - type: CableMV - components: - - pos: 38.5,-17.5 - parent: 8364 - type: Transform -- uid: 18205 - type: CableMV - components: - - pos: 39.5,-17.5 - parent: 8364 - type: Transform -- uid: 18206 - type: CableMV - components: - - pos: 40.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18207 - type: CableMV - components: - - pos: 35.5,-23.5 - parent: 8364 - type: Transform -- uid: 18208 - type: CableMV - components: - - pos: 34.5,-23.5 - parent: 8364 - type: Transform -- uid: 18209 - type: CableMV - components: - - pos: 33.5,-23.5 - parent: 8364 - type: Transform -- uid: 18210 - type: CableMV - components: - - pos: 32.5,-23.5 - parent: 8364 - type: Transform -- uid: 18211 - type: CableMV - components: - - pos: 31.5,-23.5 - parent: 8364 - type: Transform -- uid: 18212 - type: CableMV - components: - - pos: 30.5,-23.5 - parent: 8364 - type: Transform -- uid: 18213 - type: CableMV - components: - - pos: 30.5,-24.5 - parent: 8364 - type: Transform -- uid: 18214 - type: CableMV - components: - - pos: 30.5,-25.5 - parent: 8364 - type: Transform -- uid: 18215 - type: CableMV - components: - - pos: 30.5,-26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18216 - type: CableMV - components: - - pos: 29.5,-23.5 - parent: 8364 - type: Transform -- uid: 18217 - type: CableMV - components: - - pos: 28.5,-23.5 - parent: 8364 - type: Transform -- uid: 18218 - type: CableMV - components: - - pos: 27.5,-23.5 - parent: 8364 - type: Transform -- uid: 18219 - type: CableMV - components: - - pos: 26.5,-23.5 - parent: 8364 - type: Transform -- uid: 18220 - type: CableMV - components: - - pos: 25.5,-23.5 - parent: 8364 - type: Transform -- uid: 18221 - type: CableMV - components: - - pos: 25.5,-24.5 - parent: 8364 - type: Transform -- uid: 18222 - type: CableMV - components: - - pos: 25.5,-25.5 - parent: 8364 - type: Transform -- uid: 18223 - type: CableMV - components: - - pos: 24.5,-25.5 - parent: 8364 - type: Transform -- uid: 18224 - type: CableMV - components: - - pos: 23.5,-25.5 - parent: 8364 - type: Transform -- uid: 18225 - type: CableMV - components: - - pos: 22.5,-25.5 - parent: 8364 - type: Transform -- uid: 18226 - type: CableMV - components: - - pos: 21.5,-25.5 - parent: 8364 - type: Transform -- uid: 18227 - type: CableMV - components: - - pos: 20.5,-25.5 - parent: 8364 - type: Transform -- uid: 18228 - type: CableMV - components: - - pos: 20.5,-24.5 - parent: 8364 - type: Transform -- uid: 18229 - type: CableMV - components: - - pos: 20.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18230 - type: CableMV - components: - - pos: 20.5,-22.5 - parent: 8364 - type: Transform -- uid: 18231 - type: CableMV - components: - - pos: 20.5,-21.5 - parent: 8364 - type: Transform -- uid: 18232 - type: CableMV - components: - - pos: 21.5,-21.5 - parent: 8364 - type: Transform -- uid: 18233 - type: AirlockExternalGlassCargoLocked - components: - - pos: -42.5,-30.5 - parent: 8364 - type: Transform -- uid: 18234 - type: CableMV - components: - - pos: 23.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18235 - type: CableMV - components: - - pos: 25.5,-26.5 - parent: 8364 - type: Transform -- uid: 18236 - type: CableMV - components: - - pos: 25.5,-27.5 - parent: 8364 - type: Transform -- uid: 18237 - type: CableMV - components: - - pos: 25.5,-28.5 - parent: 8364 - type: Transform -- uid: 18238 - type: CableMV - components: - - pos: 25.5,-29.5 - parent: 8364 - type: Transform -- uid: 18239 - type: CableMV - components: - - pos: 25.5,-30.5 - parent: 8364 - type: Transform -- uid: 18240 - type: CableMV - components: - - pos: 25.5,-31.5 - parent: 8364 - type: Transform -- uid: 18241 - type: CableMV - components: - - pos: 25.5,-32.5 - parent: 8364 - type: Transform -- uid: 18242 - type: CableMV - components: - - pos: 25.5,-33.5 - parent: 8364 - type: Transform -- uid: 18243 - type: CableMV - components: - - pos: 24.5,-33.5 - parent: 8364 - type: Transform -- uid: 18244 - type: CableMV - components: - - pos: 23.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18245 - type: CableApcExtension - components: - - pos: 23.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18246 - type: CableApcExtension - components: - - pos: 22.5,-33.5 - parent: 8364 - type: Transform -- uid: 18247 - type: CableApcExtension - components: - - pos: 21.5,-33.5 - parent: 8364 - type: Transform -- uid: 18248 - type: CableApcExtension - components: - - pos: 20.5,-33.5 - parent: 8364 - type: Transform -- uid: 18249 - type: CableApcExtension - components: - - pos: 20.5,-32.5 - parent: 8364 - type: Transform -- uid: 18250 - type: CableApcExtension - components: - - pos: 20.5,-31.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18251 - type: CableApcExtension - components: - - pos: 20.5,-30.5 - parent: 8364 - type: Transform -- uid: 18252 - type: CableApcExtension - components: - - pos: 20.5,-29.5 - parent: 8364 - type: Transform -- uid: 18253 - type: CableApcExtension - components: - - pos: 21.5,-31.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18254 - type: CableApcExtension - components: - - pos: 22.5,-31.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18255 - type: CableApcExtension - components: - - pos: 19.5,-31.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18256 - type: CableApcExtension - components: - - pos: 18.5,-31.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18257 - type: CableApcExtension - components: - - pos: 20.5,-34.5 - parent: 8364 - type: Transform -- uid: 18258 - type: CableApcExtension - components: - - pos: 20.5,-35.5 - parent: 8364 - type: Transform -- uid: 18259 - type: CableApcExtension - components: - - pos: 24.5,-33.5 - parent: 8364 - type: Transform -- uid: 18260 - type: CableApcExtension - components: - - pos: 25.5,-33.5 - parent: 8364 - type: Transform -- uid: 18261 - type: CableApcExtension - components: - - pos: 25.5,-32.5 - parent: 8364 - type: Transform -- uid: 18262 - type: CableApcExtension - components: - - pos: 25.5,-31.5 - parent: 8364 - type: Transform -- uid: 18263 - type: CableApcExtension - components: - - pos: 24.5,-31.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18264 - type: CableApcExtension - components: - - pos: 26.5,-31.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18265 - type: CableApcExtension - components: - - pos: 26.5,-33.5 - parent: 8364 - type: Transform -- uid: 18266 - type: CableApcExtension - components: - - pos: 27.5,-33.5 - parent: 8364 - type: Transform -- uid: 18267 - type: CableApcExtension - components: - - pos: 27.5,-32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18268 - type: CableApcExtension - components: - - pos: 35.5,-29.5 - parent: 8364 - type: Transform -- uid: 18269 - type: CableApcExtension - components: - - pos: 34.5,-29.5 - parent: 8364 - type: Transform -- uid: 18270 - type: CableApcExtension - components: - - pos: 33.5,-29.5 - parent: 8364 - type: Transform -- uid: 18271 - type: CableApcExtension - components: - - pos: 32.5,-29.5 - parent: 8364 - type: Transform -- uid: 18272 - type: CableApcExtension - components: - - pos: 31.5,-29.5 - parent: 8364 - type: Transform -- uid: 18273 - type: CableApcExtension - components: - - pos: 30.5,-29.5 - parent: 8364 - type: Transform -- uid: 18274 - type: CableApcExtension - components: - - pos: 29.5,-29.5 - parent: 8364 - type: Transform -- uid: 18275 - type: CableApcExtension - components: - - pos: 29.5,-28.5 - parent: 8364 - type: Transform -- uid: 18276 - type: CableApcExtension - components: - - pos: 29.5,-27.5 - parent: 8364 - type: Transform -- uid: 18277 - type: CableApcExtension - components: - - pos: 29.5,-26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18278 - type: CableApcExtension - components: - - pos: 31.5,-28.5 - parent: 8364 - type: Transform -- uid: 18279 - type: CableApcExtension - components: - - pos: 31.5,-27.5 - parent: 8364 - type: Transform -- uid: 18280 - type: CableApcExtension - components: - - pos: 31.5,-26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18281 - type: CableApcExtension - components: - - pos: 33.5,-28.5 - parent: 8364 - type: Transform -- uid: 18282 - type: CableApcExtension - components: - - pos: 33.5,-27.5 - parent: 8364 - type: Transform -- uid: 18283 - type: CableApcExtension - components: - - pos: 33.5,-26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18284 - type: CableApcExtension - components: - - pos: 35.5,-32.5 - parent: 8364 - type: Transform -- uid: 18285 - type: Grille - components: - - pos: 38.5,-34.5 - parent: 8364 - type: Transform -- uid: 18286 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-32.5 - parent: 8364 - type: Transform -- uid: 18287 - type: CableApcExtension - components: - - pos: 33.5,-33.5 - parent: 8364 - type: Transform -- uid: 18288 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-32.5 - parent: 8364 - type: Transform -- uid: 18289 - type: CableApcExtension - components: - - pos: 32.5,-33.5 - parent: 8364 - type: Transform -- uid: 18290 - type: CableApcExtension - components: - - pos: 31.5,-33.5 - parent: 8364 - type: Transform -- uid: 18291 - type: CableApcExtension - components: - - pos: 30.5,-33.5 - parent: 8364 - type: Transform -- uid: 18292 - type: CableApcExtension - components: - - pos: 29.5,-33.5 - parent: 8364 - type: Transform -- uid: 18293 - type: CableApcExtension - components: - - pos: 29.5,-34.5 - parent: 8364 - type: Transform -- uid: 18294 - type: CableApcExtension - components: - - pos: 29.5,-35.5 - parent: 8364 - type: Transform -- uid: 18295 - type: CableApcExtension - components: - - pos: 30.5,-35.5 - parent: 8364 - type: Transform -- uid: 18296 - type: CableApcExtension - components: - - pos: 31.5,-35.5 - parent: 8364 - type: Transform -- uid: 18297 - type: CableApcExtension - components: - - pos: 32.5,-35.5 - parent: 8364 - type: Transform -- uid: 18298 - type: GasPort - components: - - pos: 43.5,-38.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 18299 - type: GasPort - components: - - pos: 44.5,-38.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 18300 - type: AirCanister - components: - - pos: 44.5,-38.5 - parent: 8364 - type: Transform -- uid: 18301 - type: AirCanister - components: - - pos: 43.5,-38.5 - parent: 8364 - type: Transform -- uid: 18302 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-28.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 18303 - type: AirlockEngineeringLocked - components: - - name: Medbay Power - type: MetaData - - pos: 47.5,-40.5 - parent: 8364 - type: Transform -- uid: 18304 - type: AirlockMaintMedLocked - components: - - name: Medbay Maintenance - type: MetaData - - pos: 42.5,-42.5 - parent: 8364 - type: Transform -- uid: 18305 - type: AirlockMaintMedLocked - components: - - name: Medbay Maintenance - type: MetaData - - pos: 42.5,-49.5 - parent: 8364 - type: Transform -- uid: 18306 - type: AirlockMaintMedLocked - components: - - name: 'Medbay Maintenance ' - type: MetaData - - pos: 25.5,-37.5 - parent: 8364 - type: Transform -- uid: 18307 - type: AirlockMaintMedLocked - components: - - name: 'Morgue Maintenance ' - type: MetaData - - pos: 47.5,-20.5 - parent: 8364 - type: Transform -- uid: 18308 - type: AirlockMaintSecLocked - components: - - pos: 47.5,-22.5 - parent: 8364 - type: Transform -- uid: 18309 - type: WindowDirectional - components: - - pos: -43.5,-17.5 - parent: 8364 - type: Transform -- uid: 18310 - type: ReinforcedWindow - components: - - pos: 43.5,-22.5 - parent: 8364 - type: Transform -- uid: 18311 - type: AirlockMaintGlassLocked - components: - - pos: 49.5,-32.5 - parent: 8364 - type: Transform -- uid: 18312 - type: AirlockMaintLocked - components: - - pos: 49.5,-25.5 - parent: 8364 - type: Transform -- uid: 18313 - type: AirlockMedicalLocked - components: - - name: Surgery Observation - type: MetaData - - pos: 20.5,-28.5 - parent: 8364 - type: Transform -- uid: 18314 - type: AirlockMedicalGlassLocked - components: - - name: Operating Theatre - type: MetaData - - pos: 23.5,-34.5 - parent: 8364 - type: Transform -- uid: 18315 - type: AirlockMedicalGlassLocked - components: - - name: Recovery Room - type: MetaData - - pos: 25.5,-31.5 - parent: 8364 - type: Transform -- uid: 18316 - type: AirlockMedicalGlassLocked - components: - - name: Cryonics - type: MetaData - - pos: 27.5,-33.5 - parent: 8364 - type: Transform -- uid: 18317 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-32.5 - parent: 8364 - type: Transform -- uid: 18318 - type: Grille - components: - - pos: 41.5,-25.5 - parent: 8364 - type: Transform -- uid: 18319 - type: DisposalTrunk - components: - - pos: 41.5,-26.5 - parent: 8364 - type: Transform -- uid: 18320 - type: AirlockMedicalLocked - components: - - name: Morgue - type: MetaData - - pos: 41.5,-21.5 - parent: 8364 - type: Transform -- uid: 18321 - type: AirlockMedicalLocked - components: - - name: Morgue - type: MetaData - - pos: 44.5,-15.5 - parent: 8364 - type: Transform -- uid: 18322 - type: AirlockMedicalGlassLocked - components: - - name: Patient Room 1 - type: MetaData - - pos: 38.5,-46.5 - parent: 8364 - type: Transform -- uid: 18323 - type: Grille - components: - - pos: 38.5,-48.5 - parent: 8364 - type: Transform -- uid: 18324 - type: Grille - components: - - pos: 42.5,-46.5 - parent: 8364 - type: Transform -- uid: 18325 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-30.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 18326 - type: BlastDoor - components: - - pos: -44.5,-27.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17791 - type: SignalReceiver -- uid: 18327 - type: BlastDoor - components: - - pos: -44.5,-31.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 17791 - type: SignalReceiver -- uid: 18328 - type: PlasticFlapsAirtightClear - components: - - pos: -42.5,-31.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 18329 - type: PlasticFlapsAirtightClear - components: - - pos: -44.5,-31.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 18330 - type: PlasticFlapsAirtightClear - components: - - pos: -42.5,-27.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 18331 - type: WallSolid - components: - - pos: 50.5,-33.5 - parent: 8364 - type: Transform -- uid: 18332 - type: WallSolid - components: - - pos: 19.5,-37.5 - parent: 8364 - type: Transform -- uid: 18333 - type: CableApcExtension - components: - - pos: 47.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18334 - type: CableApcExtension - components: - - pos: 46.5,-19.5 - parent: 8364 - type: Transform -- uid: 18335 - type: CableMV - components: - - pos: 45.5,-19.5 - parent: 8364 - type: Transform -- uid: 18336 - type: CableApcExtension - components: - - pos: 44.5,-19.5 - parent: 8364 - type: Transform -- uid: 18337 - type: CableApcExtension - components: - - pos: 43.5,-19.5 - parent: 8364 - type: Transform -- uid: 18338 - type: CableApcExtension - components: - - pos: 42.5,-19.5 - parent: 8364 - type: Transform -- uid: 18339 - type: CableApcExtension - components: - - pos: 42.5,-18.5 - parent: 8364 - type: Transform -- uid: 18340 - type: CableApcExtension - components: - - pos: 42.5,-17.5 - parent: 8364 - type: Transform -- uid: 18341 - type: CableApcExtension - components: - - pos: 43.5,-17.5 - parent: 8364 - type: Transform -- uid: 18342 - type: CableApcExtension - components: - - pos: 44.5,-17.5 - parent: 8364 - type: Transform -- uid: 18343 - type: CableApcExtension - components: - - pos: 45.5,-17.5 - parent: 8364 - type: Transform -- uid: 18344 - type: CableApcExtension - components: - - pos: 30.5,-22.5 - parent: 8364 - type: Transform -- uid: 18345 - type: CableApcExtension - components: - - pos: 46.5,-17.5 - parent: 8364 - type: Transform -- uid: 18346 - type: CableApcExtension - components: - - pos: 30.5,-21.5 - parent: 8364 - type: Transform -- uid: 18347 - type: CableApcExtension - components: - - pos: 30.5,-20.5 - parent: 8364 - type: Transform -- uid: 18348 - type: CableApcExtension - components: - - pos: 30.5,-19.5 - parent: 8364 - type: Transform -- uid: 18349 - type: CableApcExtension - components: - - pos: 30.5,-18.5 - parent: 8364 - type: Transform -- uid: 18350 - type: CableApcExtension - components: - - pos: 30.5,-17.5 - parent: 8364 - type: Transform -- uid: 18351 - type: CableApcExtension - components: - - pos: 30.5,-16.5 - parent: 8364 - type: Transform -- uid: 18352 - type: CableApcExtension - components: - - pos: 30.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18353 - type: CableApcExtension - components: - - pos: 29.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18354 - type: CableApcExtension - components: - - pos: 31.5,-15.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18355 - type: CableApcExtension - components: - - pos: 31.5,-18.5 - parent: 8364 - type: Transform -- uid: 18356 - type: CableApcExtension - components: - - pos: 32.5,-18.5 - parent: 8364 - type: Transform -- uid: 18357 - type: CableApcExtension - components: - - pos: 33.5,-18.5 - parent: 8364 - type: Transform -- uid: 18358 - type: CableApcExtension - components: - - pos: 34.5,-18.5 - parent: 8364 - type: Transform -- uid: 18359 - type: CableApcExtension - components: - - pos: 34.5,-17.5 - parent: 8364 - type: Transform -- uid: 18360 - type: CableApcExtension - components: - - pos: 34.5,-16.5 - parent: 8364 - type: Transform -- uid: 18361 - type: CableApcExtension - components: - - pos: 34.5,-15.5 - parent: 8364 - type: Transform -- uid: 18362 - type: CableApcExtension - components: - - pos: 29.5,-18.5 - parent: 8364 - type: Transform -- uid: 18363 - type: CableApcExtension - components: - - pos: 28.5,-18.5 - parent: 8364 - type: Transform -- uid: 18364 - type: CableApcExtension - components: - - pos: 27.5,-18.5 - parent: 8364 - type: Transform -- uid: 18365 - type: CableApcExtension - components: - - pos: 26.5,-18.5 - parent: 8364 - type: Transform -- uid: 18366 - type: CableApcExtension - components: - - pos: 25.5,-18.5 - parent: 8364 - type: Transform -- uid: 18367 - type: CableApcExtension - components: - - pos: 26.5,-17.5 - parent: 8364 - type: Transform -- uid: 18368 - type: CableApcExtension - components: - - pos: 26.5,-16.5 - parent: 8364 - type: Transform -- uid: 18369 - type: CableApcExtension - components: - - pos: 26.5,-15.5 - parent: 8364 - type: Transform -- uid: 18370 - type: CableApcExtension - components: - - pos: 25.5,-16.5 - parent: 8364 - type: Transform -- uid: 18371 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18372 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-20.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18373 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-20.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18374 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-17.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18375 - type: Poweredlight - components: - - pos: 32.5,-16.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18376 - type: Poweredlight - components: - - pos: 28.5,-16.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18377 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-14.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18378 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-14.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18379 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18380 - type: Poweredlight - components: - - pos: 44.5,-22.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18381 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-29.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18382 - type: DrinkMugBlack - components: - - pos: 53.98643,-33.364586 - parent: 8364 - type: Transform -- uid: 18383 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 22.5,-21.5 - parent: 8364 - type: Transform -- uid: 18384 - type: Poweredlight - components: - - pos: 40.5,-31.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18385 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-32.5 - parent: 8364 - type: Transform -- uid: 18386 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-39.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18387 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-44.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18388 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-49.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18389 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-52.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18390 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-52.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18391 - type: Poweredlight - components: - - pos: 45.5,-51.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18392 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-59.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18393 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-59.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18394 - type: Poweredlight - components: - - pos: 41.5,-55.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18395 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-48.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18396 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-45.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18397 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-45.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18398 - type: Poweredlight - components: - - pos: 36.5,-38.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18399 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-43.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18400 - type: PoweredSmallLight - components: - - pos: 43.5,-38.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18401 - type: PoweredSmallLight - components: - - pos: 46.5,-38.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18402 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-30.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18403 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-29.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18404 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18405 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-34.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18406 - type: ReinforcedWindow - components: - - pos: 38.5,-36.5 - parent: 8364 - type: Transform -- uid: 18407 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-33.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18408 - type: Poweredlight - components: - - pos: 19.5,-29.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18409 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-36.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18410 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-24.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18411 - type: PowerCellRecharger - components: - - pos: -20.5,-40.5 - parent: 8364 - type: Transform -- uid: 18412 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-22.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18413 - type: APCBasic - components: - - name: Aft Maintenance APC - type: MetaData - - pos: 46.5,-40.5 - parent: 8364 - type: Transform - - startingCharge: 12000 - type: Battery - - loadingNetworkDemand: 20 - currentReceiving: 19.980549 - currentSupply: 20 - supplyRampPosition: 0.019451141 - type: PowerNetworkBattery -- uid: 18414 - type: CableMV - components: - - pos: 46.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18415 - type: CableApcExtension - components: - - pos: 46.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18416 - type: CableApcExtension - components: - - pos: 46.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18417 - type: CableApcExtension - components: - - pos: 46.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18418 - type: CableApcExtension - components: - - pos: 45.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18419 - type: CableApcExtension - components: - - pos: 44.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18420 - type: CableApcExtension - components: - - pos: 43.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18421 - type: CableApcExtension - components: - - pos: 43.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18422 - type: CableApcExtension - components: - - pos: 43.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18423 - type: CableApcExtension - components: - - pos: 43.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18424 - type: CableApcExtension - components: - - pos: 47.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18425 - type: CableApcExtension - components: - - pos: 47.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18426 - type: CableApcExtension - components: - - pos: 47.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18427 - type: CableApcExtension - components: - - pos: 48.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18428 - type: CableApcExtension - components: - - pos: 49.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18429 - type: CableApcExtension - components: - - pos: 49.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18430 - type: CableApcExtension - components: - - pos: 49.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18431 - type: CableApcExtension - components: - - pos: 49.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18432 - type: CableApcExtension - components: - - pos: 49.5,-38.5 - parent: 8364 - type: Transform -- uid: 18433 - type: CableApcExtension - components: - - pos: 49.5,-37.5 - parent: 8364 - type: Transform -- uid: 18434 - type: CableApcExtension - components: - - pos: 49.5,-36.5 - parent: 8364 - type: Transform -- uid: 18435 - type: CableApcExtension - components: - - pos: 49.5,-35.5 - parent: 8364 - type: Transform -- uid: 18436 - type: CableApcExtension - components: - - pos: 49.5,-34.5 - parent: 8364 - type: Transform -- uid: 18437 - type: CableApcExtension - components: - - pos: 49.5,-33.5 - parent: 8364 - type: Transform -- uid: 18438 - type: CableApcExtension - components: - - pos: 49.5,-32.5 - parent: 8364 - type: Transform -- uid: 18439 - type: CableApcExtension - components: - - pos: 49.5,-31.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18440 - type: CableApcExtension - components: - - pos: 49.5,-30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18441 - type: CableApcExtension - components: - - pos: 49.5,-29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18442 - type: CableApcExtension - components: - - pos: 49.5,-28.5 - parent: 8364 - type: Transform -- uid: 18443 - type: CableApcExtension - components: - - pos: 49.5,-27.5 - parent: 8364 - type: Transform -- uid: 18444 - type: CableApcExtension - components: - - pos: 49.5,-26.5 - parent: 8364 - type: Transform -- uid: 18445 - type: CableApcExtension - components: - - pos: 49.5,-25.5 - parent: 8364 - type: Transform -- uid: 18446 - type: CableApcExtension - components: - - pos: 49.5,-24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18447 - type: CableApcExtension - components: - - pos: 49.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18448 - type: CableApcExtension - components: - - pos: 49.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18449 - type: CableApcExtension - components: - - pos: 49.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18450 - type: CableApcExtension - components: - - pos: 49.5,-20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18451 - type: CableApcExtension - components: - - pos: 49.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18452 - type: CableApcExtension - components: - - pos: 49.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18453 - type: CableApcExtension - components: - - pos: 49.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18454 - type: CableApcExtension - components: - - pos: 49.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18455 - type: CableApcExtension - components: - - pos: 49.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18456 - type: CableApcExtension - components: - - pos: 49.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18457 - type: CableApcExtension - components: - - pos: 49.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18458 - type: CableApcExtension - components: - - pos: 49.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18459 - type: CableApcExtension - components: - - pos: 49.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18460 - type: CableApcExtension - components: - - pos: 49.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18461 - type: CableApcExtension - components: - - pos: 49.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18462 - type: CableApcExtension - components: - - pos: 49.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18463 - type: CableApcExtension - components: - - pos: 49.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18464 - type: CableApcExtension - components: - - pos: 49.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18465 - type: CableApcExtension - components: - - pos: 49.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18466 - type: CableApcExtension - components: - - pos: 49.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18467 - type: CableApcExtension - components: - - pos: 49.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18468 - type: CableApcExtension - components: - - pos: 49.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18469 - type: CableApcExtension - components: - - pos: 49.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18470 - type: CableApcExtension - components: - - pos: 49.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18471 - type: CableApcExtension - components: - - pos: 49.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18472 - type: CableApcExtension - components: - - pos: 49.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18473 - type: CableApcExtension - components: - - pos: 49.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18474 - type: CableApcExtension - components: - - pos: 48.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18475 - type: CableApcExtension - components: - - pos: 47.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18476 - type: CableApcExtension - components: - - pos: 46.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18477 - type: CableApcExtension - components: - - pos: 45.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18478 - type: CableApcExtension - components: - - pos: 44.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18479 - type: CableApcExtension - components: - - pos: 48.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18480 - type: CableApcExtension - components: - - pos: 47.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18481 - type: CableApcExtension - components: - - pos: 47.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18482 - type: CableApcExtension - components: - - pos: 47.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18483 - type: CableApcExtension - components: - - pos: 47.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18484 - type: CableApcExtension - components: - - pos: 46.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18485 - type: CableApcExtension - components: - - pos: 45.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18486 - type: CableApcExtension - components: - - pos: 44.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18487 - type: CableApcExtension - components: - - pos: 43.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18488 - type: CableApcExtension - components: - - pos: 42.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18489 - type: CableApcExtension - components: - - pos: 41.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18490 - type: CableApcExtension - components: - - pos: 40.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18491 - type: CableApcExtension - components: - - pos: 40.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18492 - type: CableApcExtension - components: - - pos: 40.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18493 - type: CableApcExtension - components: - - pos: 40.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18494 - type: CableApcExtension - components: - - pos: 39.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18495 - type: CableApcExtension - components: - - pos: 38.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18496 - type: CableApcExtension - components: - - pos: 37.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18497 - type: CableApcExtension - components: - - pos: 36.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18498 - type: CableApcExtension - components: - - pos: 36.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18499 - type: CableApcExtension - components: - - pos: 36.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18500 - type: CableApcExtension - components: - - pos: 36.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18501 - type: CableApcExtension - components: - - pos: 36.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18502 - type: CableApcExtension - components: - - pos: 36.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18503 - type: CableApcExtension - components: - - pos: 35.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18504 - type: CableApcExtension - components: - - pos: 34.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18505 - type: CableApcExtension - components: - - pos: 33.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18506 - type: CableApcExtension - components: - - pos: 32.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18507 - type: CableApcExtension - components: - - pos: 32.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18508 - type: CableApcExtension - components: - - pos: 32.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18509 - type: CableApcExtension - components: - - pos: 32.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18510 - type: CableApcExtension - components: - - pos: 32.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18511 - type: CableApcExtension - components: - - pos: 32.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18512 - type: CableApcExtension - components: - - pos: 32.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18513 - type: CableApcExtension - components: - - pos: 32.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18514 - type: CableApcExtension - components: - - pos: 32.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18515 - type: CableApcExtension - components: - - pos: 32.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18516 - type: CableApcExtension - components: - - pos: 32.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18517 - type: CableApcExtension - components: - - pos: 32.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18518 - type: CableApcExtension - components: - - pos: 32.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18519 - type: CableApcExtension - components: - - pos: 32.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18520 - type: CableApcExtension - components: - - pos: 32.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18521 - type: CableApcExtension - components: - - pos: 32.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18522 - type: CableApcExtension - components: - - pos: 32.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18523 - type: CableApcExtension - components: - - pos: 32.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18524 - type: CableApcExtension - components: - - pos: 32.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18525 - type: CableApcExtension - components: - - pos: 32.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18526 - type: CableApcExtension - components: - - pos: 31.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18527 - type: CableApcExtension - components: - - pos: 30.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18528 - type: CableApcExtension - components: - - pos: 29.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18529 - type: CableApcExtension - components: - - pos: 28.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18530 - type: CableApcExtension - components: - - pos: 27.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18531 - type: CableApcExtension - components: - - pos: 26.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18532 - type: CableApcExtension - components: - - pos: 25.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18533 - type: CableApcExtension - components: - - pos: 24.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18534 - type: CableApcExtension - components: - - pos: 23.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18535 - type: CableApcExtension - components: - - pos: 22.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18536 - type: CableApcExtension - components: - - pos: 21.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18537 - type: CableApcExtension - components: - - pos: 20.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18538 - type: CableApcExtension - components: - - pos: 19.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18539 - type: CableApcExtension - components: - - pos: 18.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18540 - type: CableApcExtension - components: - - pos: 17.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18541 - type: CableApcExtension - components: - - pos: 16.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18542 - type: CableApcExtension - components: - - pos: 15.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18543 - type: CableApcExtension - components: - - pos: 14.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18544 - type: CableApcExtension - components: - - pos: 13.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18545 - type: CableApcExtension - components: - - pos: 12.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18546 - type: CableApcExtension - components: - - pos: 11.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18547 - type: CableApcExtension - components: - - pos: 10.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18548 - type: CableApcExtension - components: - - pos: 9.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18549 - type: CableApcExtension - components: - - pos: 8.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18550 - type: CableApcExtension - components: - - pos: 7.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18551 - type: CableApcExtension - components: - - pos: 6.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18552 - type: CableApcExtension - components: - - pos: 5.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18553 - type: CableApcExtension - components: - - pos: 4.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18554 - type: CableApcExtension - components: - - pos: 3.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18555 - type: CableApcExtension - components: - - pos: 2.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18556 - type: CableApcExtension - components: - - pos: 49.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18557 - type: CableApcExtension - components: - - pos: 50.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18558 - type: CableApcExtension - components: - - pos: 50.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18559 - type: CableApcExtension - components: - - pos: 50.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18560 - type: CableApcExtension - components: - - pos: 50.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18561 - type: CableApcExtension - components: - - pos: 51.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18562 - type: CableApcExtension - components: - - pos: 52.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18563 - type: CableApcExtension - components: - - pos: 53.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18564 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-17.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18565 - type: WeaponRifleLecter - components: - - pos: 0.5326141,37.336327 - parent: 8364 - type: Transform -- uid: 18566 - type: Window - components: - - pos: 38.5,-25.5 - parent: 8364 - type: Transform -- uid: 18567 - type: WallSolid - components: - - pos: 43.5,-31.5 - parent: 8364 - type: Transform -- uid: 18568 - type: CableApcExtension - components: - - pos: -9.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18569 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,39.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18570 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-45.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18571 - type: AirlockGlass - components: - - pos: -7.5,46.5 - parent: 8364 - type: Transform -- uid: 18572 - type: CableApcExtension - components: - - pos: 57.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18573 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 49.5,-62.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18574 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 48.5,-65.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18575 - type: PoweredSmallLight - components: - - pos: 44.5,-62.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18576 - type: PoweredSmallLight - components: - - pos: 45.5,-70.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18577 - type: WeldingFuelTankFull - components: - - pos: 48.5,-46.5 - parent: 8364 - type: Transform -- uid: 18578 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-69.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18579 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-63.5 - parent: 8364 - type: Transform -- uid: 18580 - type: WaterTankFull - components: - - pos: 48.5,-47.5 - parent: 8364 - type: Transform -- uid: 18581 - type: TableWood - components: - - pos: 45.5,-63.5 - parent: 8364 - type: Transform -- uid: 18582 - type: WindoorMedicalLocked - components: - - pos: 28.5,-35.5 - parent: 8364 - type: Transform -- uid: 18583 - type: PoweredSmallLight - components: - - pos: 34.5,-59.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18584 - type: ChairWood - components: - - pos: 42.5,-71.5 - parent: 8364 - type: Transform -- uid: 18585 - type: GasPipeBend - components: - - pos: 34.5,-34.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 18586 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-43.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18587 - type: TableWood - components: - - pos: 44.5,-62.5 - parent: 8364 - type: Transform -- uid: 18588 - type: Crowbar - components: - - pos: 36.48232,-38.49459 - parent: 8364 - type: Transform -- uid: 18589 - type: CryoPod - components: - - pos: 37.5,-34.5 - parent: 8364 - type: Transform -- uid: 18590 - type: AirlockMaintGlassLocked - components: - - pos: -31.5,-71.5 - parent: 8364 - type: Transform -- uid: 18591 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: -6.5,40.5 - parent: 8364 - type: Transform -- uid: 18592 - type: AirlockMaintLocked - components: - - pos: 1.5,-38.5 - parent: 8364 - type: Transform -- uid: 18593 - type: LockerElectricalSuppliesFilled - components: - - pos: -22.5,-64.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18594 - type: Table - components: - - pos: -25.5,-64.5 - parent: 8364 - type: Transform -- uid: 18595 - type: Table - components: - - pos: -24.5,-64.5 - parent: 8364 - type: Transform -- uid: 18596 - type: Table - components: - - pos: -23.5,-64.5 - parent: 8364 - type: Transform -- uid: 18597 - type: PottedPlant17 - components: - - pos: -22.5,-71.5 - parent: 8364 - type: Transform -- uid: 18598 - type: ChairOfficeLight - components: - - pos: -24.5,-70.5 - parent: 8364 - type: Transform -- uid: 18599 - type: Window - components: - - pos: 16.5,-36.5 - parent: 8364 - type: Transform -- uid: 18600 - type: SheetPlasma1 - components: - - pos: 18.645273,-21.635523 - parent: 8364 - type: Transform -- uid: 18601 - type: SheetPlasma1 - components: - - pos: 18.645273,-21.635523 - parent: 8364 - type: Transform -- uid: 18602 - type: SheetPlasma1 - components: - - pos: 18.645273,-21.635523 - parent: 8364 - type: Transform -- uid: 18603 - type: SpawnPointChemist - components: - - pos: 20.5,-19.5 - parent: 8364 - type: Transform -- uid: 18604 - type: LargeBeaker - components: - - pos: 18.410898,-21.182398 - parent: 8364 - type: Transform -- uid: 18605 - type: TableGlass - components: - - pos: 18.5,-20.5 - parent: 8364 - type: Transform -- uid: 18606 - type: SpawnPointChemist - components: - - pos: 20.5,-18.5 - parent: 8364 - type: Transform -- uid: 18607 - type: TableGlass - components: - - pos: 18.5,-22.5 - parent: 8364 - type: Transform -- uid: 18608 - type: SpawnPointChemist - components: - - pos: 20.5,-17.5 - parent: 8364 - type: Transform -- uid: 18609 - type: SignChem - components: - - pos: 23.5,-16.5 - parent: 8364 - type: Transform -- uid: 18610 - type: chem_dispenser - components: - - pos: 18.5,-18.5 - parent: 8364 - type: Transform -- uid: 18611 - type: SprayBottleSpaceCleaner - components: - - pos: 36.60732,-38.40084 - parent: 8364 - type: Transform -- uid: 18612 - type: HandLabeler - components: - - pos: 37.404194,-38.416466 - parent: 8364 - type: Transform -- uid: 18613 - type: KitchenReagentGrinder - components: - - pos: 18.5,-20.5 - parent: 8364 - type: Transform -- uid: 18614 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-17.5 - parent: 8364 - type: Transform -- uid: 18615 - type: Window - components: - - pos: 15.5,-36.5 - parent: 8364 - type: Transform -- uid: 18616 - type: Window - components: - - pos: 14.5,-36.5 - parent: 8364 - type: Transform -- uid: 18617 - type: PosterLegitNanotrasenLogo - components: - - pos: -14.5,-21.5 - parent: 8364 - type: Transform -- uid: 18618 - type: PottedPlantRandom - components: - - pos: -22.5,-27.5 - parent: 8364 - type: Transform -- uid: 18619 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-15.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18620 - type: HighSecCommandLocked - components: - - pos: -0.5,-23.5 - parent: 8364 - type: Transform -- uid: 18621 - type: ReinforcedWindow - components: - - pos: -14.5,-15.5 - parent: 8364 - type: Transform -- uid: 18622 - type: WallReinforced - components: - - pos: 17.5,-17.5 - parent: 8364 - type: Transform -- uid: 18623 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-17.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18624 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-16.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18625 - type: Grille - components: - - pos: 13.5,-34.5 - parent: 8364 - type: Transform -- uid: 18626 - type: Catwalk - components: - - pos: 49.5,-24.5 - parent: 8364 - type: Transform -- uid: 18627 - type: WallSolid - components: - - pos: 27.5,-34.5 - parent: 8364 - type: Transform -- uid: 18628 - type: Window - components: - - pos: 13.5,-34.5 - parent: 8364 - type: Transform -- uid: 18629 - type: Window - components: - - pos: 14.5,-34.5 - parent: 8364 - type: Transform -- uid: 18630 - type: Grille - components: - - pos: 14.5,-36.5 - parent: 8364 - type: Transform -- uid: 18631 - type: Grille - components: - - pos: 15.5,-36.5 - parent: 8364 - type: Transform -- uid: 18632 - type: Grille - components: - - pos: 16.5,-36.5 - parent: 8364 - type: Transform -- uid: 18633 - type: GrilleBroken - components: - - pos: 12.5,-34.5 - parent: 8364 - type: Transform -- uid: 18634 - type: WallSolid - components: - - pos: 11.5,-34.5 - parent: 8364 - type: Transform -- uid: 18635 - type: Rack - components: - - pos: 15.5,-34.5 - parent: 8364 - type: Transform -- uid: 18636 - type: GrilleBroken - components: - - pos: 9.5,-36.5 - parent: 8364 - type: Transform -- uid: 18637 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-36.5 - parent: 8364 - type: Transform -- uid: 18638 - type: Grille - components: - - pos: 12.5,-36.5 - parent: 8364 - type: Transform -- uid: 18639 - type: Grille - components: - - pos: 13.5,-36.5 - parent: 8364 - type: Transform -- uid: 18640 - type: SignSurgery - components: - - pos: 23.5,-32.5 - parent: 8364 - type: Transform -- uid: 18641 - type: LockerMedicineFilled - components: - - pos: 31.5,-27.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18642 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -10.5,-16.5 - parent: 8364 - type: Transform -- uid: 18643 - type: VendingMachineViroDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 37.5,-53.5 - parent: 8364 - type: Transform -- uid: 18644 - type: TablePlasmaGlass - components: - - pos: 47.5,-60.5 - parent: 8364 - type: Transform -- uid: 18645 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 40.5,-24.5 - parent: 8364 - type: Transform -- uid: 18646 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-46.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: CMO's Room - type: SurveillanceCamera -- uid: 18647 - type: SpawnPointMedicalIntern - components: - - pos: 35.5,-42.5 - parent: 8364 - type: Transform -- uid: 18648 - type: MedicalBed - components: - - pos: 30.5,-27.5 - parent: 8364 - type: Transform -- uid: 18649 - type: ChairOfficeLight - components: - - pos: 46.5,-45.5 - parent: 8364 - type: Transform -- uid: 18650 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: 40.5,-39.5 - parent: 8364 - type: Transform -- uid: 18651 - type: ClothingEyesHudMedical - components: - - pos: 37.44005,-40.28676 - parent: 8364 - type: Transform -- uid: 18652 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-39.5 - parent: 8364 - type: Transform -- uid: 18653 - type: DisposalPipe - components: - - pos: 35.5,-40.5 - parent: 8364 - type: Transform -- uid: 18654 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 35.5,-43.5 - parent: 8364 - type: Transform -- uid: 18655 - type: CryoPod - components: - - pos: 35.5,-34.5 - parent: 8364 - type: Transform -- uid: 18656 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-35.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 18657 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 35.5,-35.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 18658 - type: GasPressurePump - components: - - name: Gas Input - type: MetaData - - rot: 1.5707963267948966 rad - pos: 35.5,-36.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 18659 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-36.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 18660 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18661 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18662 - type: OxygenCanister - components: - - pos: 29.5,-36.5 - parent: 8364 - type: Transform -- uid: 18663 - type: MedicalBed - components: - - pos: 34.5,-46.5 - parent: 8364 - type: Transform -- uid: 18664 - type: SyringeSpaceacillin - components: - - pos: 43.602566,-60.485146 - parent: 8364 - type: Transform - - tags: [] - type: Tag -- uid: 18665 - type: MedicalBed - components: - - pos: 34.5,-49.5 - parent: 8364 - type: Transform -- uid: 18666 - type: SignExamroom - components: - - pos: 34.5,-26.5 - parent: 8364 - type: Transform -- uid: 18667 - type: TablePlasmaGlass - components: - - pos: 44.5,-60.5 - parent: 8364 - type: Transform -- uid: 18668 - type: OxygenCanister - components: - - pos: 35.5,-69.5 - parent: 8364 - type: Transform -- uid: 18669 - type: AirlockExternalGlassLocked - components: - - pos: 49.5,-66.5 - parent: 8364 - type: Transform -- uid: 18670 - type: WallSolid - components: - - pos: 37.5,-69.5 - parent: 8364 - type: Transform -- uid: 18671 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-23.5 - parent: 8364 - type: Transform -- uid: 18672 - type: Poweredlight - components: - - pos: 50.5,-26.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18673 - type: PottedPlant22 - components: - - pos: 18.5,-26.5 - parent: 8364 - type: Transform -- uid: 18674 - type: HospitalCurtainsOpen - components: - - pos: 34.5,-28.5 - parent: 8364 - type: Transform -- uid: 18675 - type: HospitalCurtainsOpen - components: - - pos: 34.5,-29.5 - parent: 8364 - type: Transform -- uid: 18676 - type: StasisBed - components: - - pos: 32.5,-30.5 - parent: 8364 - type: Transform -- uid: 18677 - type: HospitalCurtainsOpen - components: - - pos: 28.5,-29.5 - parent: 8364 - type: Transform -- uid: 18678 - type: HospitalCurtainsOpen - components: - - pos: 28.5,-28.5 - parent: 8364 - type: Transform -- uid: 18679 - type: CableApcExtension - components: - - pos: 41.5,-24.5 - parent: 8364 - type: Transform -- uid: 18680 - type: FirelockGlass - components: - - pos: 35.5,-26.5 - parent: 8364 - type: Transform -- uid: 18681 - type: AirlockEngineeringLocked - components: - - name: Gravity Gen - type: MetaData - - pos: -0.5,-28.5 - parent: 8364 - type: Transform -- uid: 18682 - type: FirelockGlass - components: - - pos: 36.5,-26.5 - parent: 8364 - type: Transform -- uid: 18683 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-23.5 - parent: 8364 - type: Transform -- uid: 18684 - type: Window - components: - - pos: 12.5,-36.5 - parent: 8364 - type: Transform -- uid: 18685 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-20.5 - parent: 8364 - type: Transform -- uid: 18686 - type: Grille - components: - - pos: 14.5,-34.5 - parent: 8364 - type: Transform -- uid: 18687 - type: ChairOfficeLight - components: - - pos: 28.5,-20.5 - parent: 8364 - type: Transform -- uid: 18688 - type: TableReinforced - components: - - pos: 52.5,-33.5 - parent: 8364 - type: Transform -- uid: 18689 - type: CheapRollerBed - components: - - pos: 31.502064,-25.385933 - parent: 8364 - type: Transform -- uid: 18690 - type: CheapRollerBed - components: - - pos: 32.48644,-25.354683 - parent: 8364 - type: Transform -- uid: 18691 - type: SignElectricalMed - components: - - pos: -2.5,-35.5 - parent: 8364 - type: Transform -- uid: 18692 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 40.5,-26.5 - parent: 8364 - type: Transform -- uid: 18693 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-23.5 - parent: 8364 - type: Transform -- uid: 18694 - type: MedicalBed - components: - - pos: 47.5,-58.5 - parent: 8364 - type: Transform -- uid: 18695 - type: MedicalBed - components: - - pos: 44.5,-58.5 - parent: 8364 - type: Transform -- uid: 18696 - type: SignVirology - components: - - pos: 39.5,-50.5 - parent: 8364 - type: Transform -- uid: 18697 - type: SpawnMobPossumMorty - components: - - pos: 44.5,-18.5 - parent: 8364 - type: Transform -- uid: 18698 - type: DiseaseDiagnoser - components: - - pos: 41.5,-58.5 - parent: 8364 - type: Transform -- uid: 18699 - type: TableGlass - components: - - pos: 41.5,-57.5 - parent: 8364 - type: Transform -- uid: 18700 - type: SignBiohazardMed - components: - - pos: 41.5,-50.5 - parent: 8364 - type: Transform -- uid: 18701 - type: SignBiohazardMed - components: - - pos: 39.5,-54.5 - parent: 8364 - type: Transform -- uid: 18702 - type: Vaccinator - components: - - pos: 41.5,-59.5 - parent: 8364 - type: Transform -- uid: 18703 - type: ChairOfficeLight - components: - - pos: 35.5,-53.5 - parent: 8364 - type: Transform -- uid: 18704 - type: TablePlasmaGlass - components: - - pos: 46.5,-60.5 - parent: 8364 - type: Transform -- uid: 18705 - type: TablePlasmaGlass - components: - - pos: 43.5,-60.5 - parent: 8364 - type: Transform -- uid: 18706 - type: SignExamroom - components: - - pos: 28.5,-26.5 - parent: 8364 - type: Transform -- uid: 18707 - type: PottedPlant14 - components: - - pos: 42.53557,-24.731617 - parent: 8364 - type: Transform -- uid: 18708 - type: TableReinforced - components: - - pos: 51.5,-33.5 - parent: 8364 - type: Transform -- uid: 18709 - type: CheapRollerBed - components: - - pos: 30.486439,-25.370308 - parent: 8364 - type: Transform -- uid: 18710 - type: StorageCanister - components: - - pos: 28.5,-36.5 - parent: 8364 - type: Transform -- uid: 18711 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-18.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18712 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-19.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18713 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-19.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18714 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-18.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18715 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-17.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18716 - type: BiomassReclaimer - components: - - pos: 45.5,-19.5 - parent: 8364 - type: Transform -- uid: 18717 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-18.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.7822967 - - 17.990545 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18718 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18719 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-16.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18720 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-18.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18721 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-17.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 4.3997126 - - 16.5513 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18722 - type: CableHV - components: - - pos: -2.5,-56.5 - parent: 8364 - type: Transform -- uid: 18723 - type: CableHV - components: - - pos: -4.5,-56.5 - parent: 8364 - type: Transform -- uid: 18724 - type: Table - components: - - pos: -24.5,-71.5 - parent: 8364 - type: Transform -- uid: 18725 - type: Table - components: - - pos: -23.5,-71.5 - parent: 8364 - type: Transform -- uid: 18726 - type: LockerElectricalSuppliesFilled - components: - - pos: 84.5,-44.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18727 - type: WindoorEngineeringLocked - components: - - pos: -23.5,-68.5 - parent: 8364 - type: Transform -- uid: 18728 - type: WindowReinforcedDirectional - components: - - pos: -26.5,-68.5 - parent: 8364 - type: Transform -- uid: 18729 - type: WindowReinforcedDirectional - components: - - pos: -24.5,-68.5 - parent: 8364 - type: Transform -- uid: 18730 - type: WindoorEngineeringLocked - components: - - pos: -25.5,-68.5 - parent: 8364 - type: Transform -- uid: 18731 - type: WindowReinforcedDirectional - components: - - pos: -22.5,-68.5 - parent: 8364 - type: Transform -- uid: 18732 - type: GeneratorUranium - components: - - pos: -26.5,-70.5 - parent: 8364 - type: Transform -- uid: 18733 - type: GeneratorPlasma - components: - - pos: -26.5,-71.5 - parent: 8364 - type: Transform -- uid: 18734 - type: Catwalk - components: - - pos: 13.5,-76.5 - parent: 8364 - type: Transform -- uid: 18735 - type: Catwalk - components: - - pos: 14.5,-76.5 - parent: 8364 - type: Transform -- uid: 18736 - type: Catwalk - components: - - pos: 15.5,-76.5 - parent: 8364 - type: Transform -- uid: 18737 - type: Catwalk - components: - - pos: 16.5,-76.5 - parent: 8364 - type: Transform -- uid: 18738 - type: Catwalk - components: - - pos: 17.5,-76.5 - parent: 8364 - type: Transform -- uid: 18739 - type: Catwalk - components: - - pos: 18.5,-76.5 - parent: 8364 - type: Transform -- uid: 18740 - type: Catwalk - components: - - pos: 19.5,-76.5 - parent: 8364 - type: Transform -- uid: 18741 - type: Catwalk - components: - - pos: 21.5,-76.5 - parent: 8364 - type: Transform -- uid: 18742 - type: Catwalk - components: - - pos: 20.5,-76.5 - parent: 8364 - type: Transform -- uid: 18743 - type: Catwalk - components: - - pos: 22.5,-76.5 - parent: 8364 - type: Transform -- uid: 18744 - type: Catwalk - components: - - pos: 22.5,-77.5 - parent: 8364 - type: Transform -- uid: 18745 - type: Catwalk - components: - - pos: 22.5,-78.5 - parent: 8364 - type: Transform -- uid: 18746 - type: Catwalk - components: - - pos: 22.5,-79.5 - parent: 8364 - type: Transform -- uid: 18747 - type: Catwalk - components: - - pos: 22.5,-80.5 - parent: 8364 - type: Transform -- uid: 18748 - type: Catwalk - components: - - pos: 23.5,-79.5 - parent: 8364 - type: Transform -- uid: 18749 - type: Catwalk - components: - - pos: 23.5,-80.5 - parent: 8364 - type: Transform -- uid: 18750 - type: Catwalk - components: - - pos: 23.5,-81.5 - parent: 8364 - type: Transform -- uid: 18751 - type: Catwalk - components: - - pos: 23.5,-82.5 - parent: 8364 - type: Transform -- uid: 18752 - type: FirelockGlass - components: - - pos: 14.5,-45.5 - parent: 8364 - type: Transform -- uid: 18753 - type: FirelockGlass - components: - - pos: 13.5,-45.5 - parent: 8364 - type: Transform -- uid: 18754 - type: FirelockGlass - components: - - pos: 12.5,-45.5 - parent: 8364 - type: Transform -- uid: 18755 - type: FirelockGlass - components: - - pos: 11.5,-45.5 - parent: 8364 - type: Transform -- uid: 18756 - type: FirelockGlass - components: - - pos: 10.5,-45.5 - parent: 8364 - type: Transform -- uid: 18757 - type: FirelockGlass - components: - - pos: 9.5,-45.5 - parent: 8364 - type: Transform -- uid: 18758 - type: PottedPlantRandom - components: - - pos: 9.5,-64.5 - parent: 8364 - type: Transform -- uid: 18759 - type: PottedPlantRandom - components: - - pos: 7.5,-64.5 - parent: 8364 - type: Transform -- uid: 18760 - type: AMEController - components: - - pos: 12.5,-70.5 - parent: 8364 - type: Transform -- uid: 18761 - type: CrateEngineeringAMEShielding - components: - - pos: 11.5,-74.5 - parent: 8364 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18762 - type: CrateEngineeringAMEJar - components: - - pos: 11.5,-70.5 - parent: 8364 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18763 - type: SignDangerMed - components: - - pos: 2.5,-68.5 - parent: 8364 - type: Transform -- uid: 18764 - type: SignRadiationMed - components: - - pos: -3.5,-68.5 - parent: 8364 - type: Transform -- uid: 18765 - type: SignSecureMed - components: - - pos: -21.5,-70.5 - parent: 8364 - type: Transform -- uid: 18766 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-17.5 - parent: 8364 - type: Transform -- uid: 18767 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-19.5 - parent: 8364 - type: Transform -- uid: 18768 - type: chem_dispenser - components: - - pos: 21.5,-16.5 - parent: 8364 - type: Transform -- uid: 18769 - type: chem_dispenser - components: - - pos: 21.5,-20.5 - parent: 8364 - type: Transform -- uid: 18770 - type: chem_master - components: - - pos: 22.5,-20.5 - parent: 8364 - type: Transform -- uid: 18771 - type: chem_master - components: - - pos: 22.5,-16.5 - parent: 8364 - type: Transform -- uid: 18772 - type: LockerChemistryFilled - components: - - pos: 22.5,-22.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 18773 - type: SignElectricalMed - components: - - pos: -21.5,-68.5 - parent: 8364 - type: Transform -- uid: 18774 - type: ChairOfficeLight - components: - - pos: 21.5,-22.5 - parent: 8364 - type: Transform -- uid: 18775 - type: chem_master - components: - - pos: 18.5,-16.5 - parent: 8364 - type: Transform -- uid: 18776 - type: DisposalUnit - components: - - pos: 30.5,-16.5 - parent: 8364 - type: Transform -- uid: 18777 - type: DisposalUnit - components: - - pos: 18.5,-25.5 - parent: 8364 - type: Transform -- uid: 18778 - type: DisposalUnit - components: - - pos: 47.5,-31.5 - parent: 8364 - type: Transform -- uid: 18779 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-32.5 - parent: 8364 - type: Transform -- uid: 18780 - type: DisposalUnit - components: - - pos: 43.5,-47.5 - parent: 8364 - type: Transform -- uid: 18781 - type: DisposalUnit - components: - - pos: 19.5,-16.5 - parent: 8364 - type: Transform -- uid: 18782 - type: DisposalTrunk - components: - - pos: 30.5,-16.5 - parent: 8364 - type: Transform -- uid: 18783 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-25.5 - parent: 8364 - type: Transform -- uid: 18784 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-32.5 - parent: 8364 - type: Transform -- uid: 18785 - type: DisposalTrunk - components: - - pos: 47.5,-31.5 - parent: 8364 - type: Transform -- uid: 18786 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 43.5,-47.5 - parent: 8364 - type: Transform -- uid: 18787 - type: Grille - components: - - pos: -3.5,-20.5 - parent: 8364 - type: Transform -- uid: 18788 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-54.5 - parent: 8364 - type: Transform -- uid: 18789 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-53.5 - parent: 8364 - type: Transform -- uid: 18790 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-52.5 - parent: 8364 - type: Transform -- uid: 18791 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-51.5 - parent: 8364 - type: Transform -- uid: 18792 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-50.5 - parent: 8364 - type: Transform -- uid: 18793 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-49.5 - parent: 8364 - type: Transform -- uid: 18794 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-48.5 - parent: 8364 - type: Transform -- uid: 18795 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-47.5 - parent: 8364 - type: Transform -- uid: 18796 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-46.5 - parent: 8364 - type: Transform -- uid: 18797 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-45.5 - parent: 8364 - type: Transform -- uid: 18798 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-44.5 - parent: 8364 - type: Transform -- uid: 18799 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-43.5 - parent: 8364 - type: Transform -- uid: 18800 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-42.5 - parent: 8364 - type: Transform -- uid: 18801 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-41.5 - parent: 8364 - type: Transform -- uid: 18802 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-40.5 - parent: 8364 - type: Transform -- uid: 18803 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-39.5 - parent: 8364 - type: Transform -- uid: 18804 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-38.5 - parent: 8364 - type: Transform -- uid: 18805 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-38.5 - parent: 8364 - type: Transform -- uid: 18806 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-38.5 - parent: 8364 - type: Transform -- uid: 18807 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-38.5 - parent: 8364 - type: Transform -- uid: 18808 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-38.5 - parent: 8364 - type: Transform -- uid: 18809 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-38.5 - parent: 8364 - type: Transform -- uid: 18810 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-38.5 - parent: 8364 - type: Transform -- uid: 18811 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-38.5 - parent: 8364 - type: Transform -- uid: 18812 - type: DisposalBend - components: - - pos: 7.5,-36.5 - parent: 8364 - type: Transform -- uid: 18813 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-38.5 - parent: 8364 - type: Transform -- uid: 18814 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-38.5 - parent: 8364 - type: Transform -- uid: 18815 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-38.5 - parent: 8364 - type: Transform -- uid: 18816 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-38.5 - parent: 8364 - type: Transform -- uid: 18817 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-38.5 - parent: 8364 - type: Transform -- uid: 18818 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-38.5 - parent: 8364 - type: Transform -- uid: 18819 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-38.5 - parent: 8364 - type: Transform -- uid: 18820 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-38.5 - parent: 8364 - type: Transform -- uid: 18821 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-38.5 - parent: 8364 - type: Transform -- uid: 18822 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-38.5 - parent: 8364 - type: Transform -- uid: 18823 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-38.5 - parent: 8364 - type: Transform -- uid: 18824 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-38.5 - parent: 8364 - type: Transform -- uid: 18825 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-38.5 - parent: 8364 - type: Transform -- uid: 18826 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-38.5 - parent: 8364 - type: Transform -- uid: 18827 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-38.5 - parent: 8364 - type: Transform -- uid: 18828 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-38.5 - parent: 8364 - type: Transform -- uid: 18829 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-38.5 - parent: 8364 - type: Transform -- uid: 18830 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-38.5 - parent: 8364 - type: Transform -- uid: 18831 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-38.5 - parent: 8364 - type: Transform -- uid: 18832 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-38.5 - parent: 8364 - type: Transform -- uid: 18833 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-38.5 - parent: 8364 - type: Transform -- uid: 18834 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-38.5 - parent: 8364 - type: Transform -- uid: 18835 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-38.5 - parent: 8364 - type: Transform -- uid: 18836 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-38.5 - parent: 8364 - type: Transform -- uid: 18837 - type: DisposalBend - components: - - pos: 32.5,-38.5 - parent: 8364 - type: Transform -- uid: 18838 - type: DisposalPipe - components: - - pos: 32.5,-39.5 - parent: 8364 - type: Transform -- uid: 18839 - type: DisposalPipe - components: - - pos: 32.5,-40.5 - parent: 8364 - type: Transform -- uid: 18840 - type: DisposalPipe - components: - - pos: 32.5,-41.5 - parent: 8364 - type: Transform -- uid: 18841 - type: DisposalPipe - components: - - pos: 32.5,-42.5 - parent: 8364 - type: Transform -- uid: 18842 - type: DisposalPipe - components: - - pos: 32.5,-43.5 - parent: 8364 - type: Transform -- uid: 18843 - type: DisposalPipe - components: - - pos: 32.5,-44.5 - parent: 8364 - type: Transform -- uid: 18844 - type: DisposalPipe - components: - - pos: 32.5,-45.5 - parent: 8364 - type: Transform -- uid: 18845 - type: DisposalPipe - components: - - pos: 32.5,-46.5 - parent: 8364 - type: Transform -- uid: 18846 - type: DisposalPipe - components: - - pos: 32.5,-47.5 - parent: 8364 - type: Transform -- uid: 18847 - type: DisposalPipe - components: - - pos: 32.5,-48.5 - parent: 8364 - type: Transform -- uid: 18848 - type: DisposalPipe - components: - - pos: 32.5,-49.5 - parent: 8364 - type: Transform -- uid: 18849 - type: DisposalPipe - components: - - pos: 32.5,-50.5 - parent: 8364 - type: Transform -- uid: 18850 - type: DisposalPipe - components: - - pos: 32.5,-51.5 - parent: 8364 - type: Transform -- uid: 18851 - type: DisposalPipe - components: - - pos: 32.5,-52.5 - parent: 8364 - type: Transform -- uid: 18852 - type: DisposalPipe - components: - - pos: 32.5,-53.5 - parent: 8364 - type: Transform -- uid: 18853 - type: DisposalPipe - components: - - pos: 32.5,-54.5 - parent: 8364 - type: Transform -- uid: 18854 - type: DisposalPipe - components: - - pos: 32.5,-55.5 - parent: 8364 - type: Transform -- uid: 18855 - type: DisposalPipe - components: - - pos: 32.5,-56.5 - parent: 8364 - type: Transform -- uid: 18856 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-57.5 - parent: 8364 - type: Transform -- uid: 18857 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-57.5 - parent: 8364 - type: Transform -- uid: 18858 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-57.5 - parent: 8364 - type: Transform -- uid: 18859 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 36.5,-58.5 - parent: 8364 - type: Transform -- uid: 18860 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 36.5,-59.5 - parent: 8364 - type: Transform -- uid: 18861 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 36.5,-60.5 - parent: 8364 - type: Transform -- uid: 18862 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 36.5,-61.5 - parent: 8364 - type: Transform -- uid: 18863 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-62.5 - parent: 8364 - type: Transform -- uid: 18864 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-62.5 - parent: 8364 - type: Transform -- uid: 18865 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-62.5 - parent: 8364 - type: Transform -- uid: 18866 - type: DisposalPipe - components: - - pos: 40.5,-63.5 - parent: 8364 - type: Transform -- uid: 18867 - type: DisposalPipe - components: - - pos: 40.5,-64.5 - parent: 8364 - type: Transform -- uid: 18868 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-65.5 - parent: 8364 - type: Transform -- uid: 18869 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-65.5 - parent: 8364 - type: Transform -- uid: 18870 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-65.5 - parent: 8364 - type: Transform -- uid: 18871 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-65.5 - parent: 8364 - type: Transform -- uid: 18872 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-65.5 - parent: 8364 - type: Transform -- uid: 18873 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-65.5 - parent: 8364 - type: Transform -- uid: 18874 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 47.5,-64.5 - parent: 8364 - type: Transform -- uid: 18875 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 47.5,-63.5 - parent: 8364 - type: Transform -- uid: 18876 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-62.5 - parent: 8364 - type: Transform -- uid: 18877 - type: DisposalPipe - components: - - pos: 49.5,-61.5 - parent: 8364 - type: Transform -- uid: 18878 - type: DisposalPipe - components: - - pos: 49.5,-60.5 - parent: 8364 - type: Transform -- uid: 18879 - type: DisposalPipe - components: - - pos: 49.5,-59.5 - parent: 8364 - type: Transform -- uid: 18880 - type: DisposalPipe - components: - - pos: 49.5,-58.5 - parent: 8364 - type: Transform -- uid: 18881 - type: DisposalPipe - components: - - pos: 49.5,-57.5 - parent: 8364 - type: Transform -- uid: 18882 - type: DisposalPipe - components: - - pos: 49.5,-56.5 - parent: 8364 - type: Transform -- uid: 18883 - type: DisposalPipe - components: - - pos: 49.5,-55.5 - parent: 8364 - type: Transform -- uid: 18884 - type: DisposalPipe - components: - - pos: 49.5,-54.5 - parent: 8364 - type: Transform -- uid: 18885 - type: DisposalPipe - components: - - pos: 49.5,-53.5 - parent: 8364 - type: Transform -- uid: 18886 - type: DisposalPipe - components: - - pos: 49.5,-52.5 - parent: 8364 - type: Transform -- uid: 18887 - type: DisposalPipe - components: - - pos: 49.5,-51.5 - parent: 8364 - type: Transform -- uid: 18888 - type: DisposalPipe - components: - - pos: 49.5,-50.5 - parent: 8364 - type: Transform -- uid: 18889 - type: DisposalPipe - components: - - pos: 49.5,-38.5 - parent: 8364 - type: Transform -- uid: 18890 - type: DisposalPipe - components: - - pos: 49.5,-39.5 - parent: 8364 - type: Transform -- uid: 18891 - type: DisposalPipe - components: - - pos: 49.5,-41.5 - parent: 8364 - type: Transform -- uid: 18892 - type: DisposalPipe - components: - - pos: 49.5,-45.5 - parent: 8364 - type: Transform -- uid: 18893 - type: DisposalPipe - components: - - pos: 49.5,-44.5 - parent: 8364 - type: Transform -- uid: 18894 - type: DisposalPipe - components: - - pos: 49.5,-43.5 - parent: 8364 - type: Transform -- uid: 18895 - type: DisposalTrunk - components: - - pos: 19.5,-16.5 - parent: 8364 - type: Transform -- uid: 18896 - type: BoxBeaker - components: - - pos: 22.5,-18.5 - parent: 8364 - type: Transform -- uid: 18897 - type: BoxBeaker - components: - - pos: 22.5,-18.5 - parent: 8364 - type: Transform -- uid: 18898 - type: SignElectricalMed - components: - - pos: -30.5,-64.5 - parent: 8364 - type: Transform -- uid: 18899 - type: CableHV - components: - - pos: -28.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18900 - type: CableHV - components: - - pos: -31.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18901 - type: CableHV - components: - - pos: -31.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18902 - type: CableHV - components: - - pos: -31.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18903 - type: HandLabeler - components: - - pos: 22.5,-18.5 - parent: 8364 - type: Transform -- uid: 18904 - type: CableHV - components: - - pos: -31.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18905 - type: CableHV - components: - - pos: -30.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18906 - type: CableHV - components: - - pos: -29.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18907 - type: CableHV - components: - - pos: -28.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18908 - type: CableHV - components: - - pos: -27.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18909 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 32.5,-57.5 - parent: 8364 - type: Transform -- uid: 18910 - type: DisposalBend - components: - - pos: 36.5,-57.5 - parent: 8364 - type: Transform -- uid: 18911 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 36.5,-62.5 - parent: 8364 - type: Transform -- uid: 18912 - type: DisposalBend - components: - - pos: 40.5,-62.5 - parent: 8364 - type: Transform -- uid: 18913 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 40.5,-65.5 - parent: 8364 - type: Transform -- uid: 18914 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-65.5 - parent: 8364 - type: Transform -- uid: 18915 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-62.5 - parent: 8364 - type: Transform -- uid: 18916 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-62.5 - parent: 8364 - type: Transform -- uid: 18917 - type: DisposalJunction - components: - - pos: 49.5,-49.5 - parent: 8364 - type: Transform -- uid: 18918 - type: DisposalJunction - components: - - pos: 49.5,-42.5 - parent: 8364 - type: Transform -- uid: 18919 - type: CableHV - components: - - pos: -26.5,-65.5 - parent: 8364 - type: Transform -- uid: 18920 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-17.5 - parent: 8364 - type: Transform -- uid: 18921 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-18.5 - parent: 8364 - type: Transform -- uid: 18922 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-19.5 - parent: 8364 - type: Transform -- uid: 18923 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-20.5 - parent: 8364 - type: Transform -- uid: 18924 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-21.5 - parent: 8364 - type: Transform -- uid: 18925 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-22.5 - parent: 8364 - type: Transform -- uid: 18926 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-23.5 - parent: 8364 - type: Transform -- uid: 18927 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-24.5 - parent: 8364 - type: Transform -- uid: 18928 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,-17.5 - parent: 8364 - type: Transform -- uid: 18929 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,-18.5 - parent: 8364 - type: Transform -- uid: 18930 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,-19.5 - parent: 8364 - type: Transform -- uid: 18931 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,-20.5 - parent: 8364 - type: Transform -- uid: 18932 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,-21.5 - parent: 8364 - type: Transform -- uid: 18933 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,-22.5 - parent: 8364 - type: Transform -- uid: 18934 - type: DisposalJunctionFlipped - components: - - pos: 30.5,-23.5 - parent: 8364 - type: Transform -- uid: 18935 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,-24.5 - parent: 8364 - type: Transform -- uid: 18936 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-25.5 - parent: 8364 - type: Transform - - visible: False - type: Sprite -- uid: 18937 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-25.5 - parent: 8364 - type: Transform -- uid: 18938 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-25.5 - parent: 8364 - type: Transform -- uid: 18939 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-25.5 - parent: 8364 - type: Transform -- uid: 18940 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-25.5 - parent: 8364 - type: Transform -- uid: 18941 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 8364 - type: Transform -- uid: 18942 - type: DisposalYJunction - components: - - pos: 25.5,-25.5 - parent: 8364 - type: Transform -- uid: 18943 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-25.5 - parent: 8364 - type: Transform -- uid: 18944 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-25.5 - parent: 8364 - type: Transform -- uid: 18945 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-25.5 - parent: 8364 - type: Transform -- uid: 18946 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-25.5 - parent: 8364 - type: Transform -- uid: 18947 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-25.5 - parent: 8364 - type: Transform -- uid: 18948 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-26.5 - parent: 8364 - type: Transform -- uid: 18949 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-27.5 - parent: 8364 - type: Transform -- uid: 18950 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-28.5 - parent: 8364 - type: Transform -- uid: 18951 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-29.5 - parent: 8364 - type: Transform -- uid: 18952 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-30.5 - parent: 8364 - type: Transform -- uid: 18953 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-31.5 - parent: 8364 - type: Transform -- uid: 18954 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-32.5 - parent: 8364 - type: Transform -- uid: 18955 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-33.5 - parent: 8364 - type: Transform -- uid: 18956 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-34.5 - parent: 8364 - type: Transform -- uid: 18957 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-35.5 - parent: 8364 - type: Transform -- uid: 18958 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-36.5 - parent: 8364 - type: Transform -- uid: 18959 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-37.5 - parent: 8364 - type: Transform -- uid: 18960 - type: WallSolid - components: - - pos: 38.5,-33.5 - parent: 8364 - type: Transform -- uid: 18961 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-35.5 - parent: 8364 - type: Transform -- uid: 18962 - type: DisposalBend - components: - - pos: 43.5,-45.5 - parent: 8364 - type: Transform -- uid: 18963 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-45.5 - parent: 8364 - type: Transform -- uid: 18964 - type: DisposalYJunction - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-49.5 - parent: 8364 - type: Transform -- uid: 18965 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 40.5,-42.5 - parent: 8364 - type: Transform -- uid: 18966 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 47.5,-32.5 - parent: 8364 - type: Transform -- uid: 18967 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 47.5,-33.5 - parent: 8364 - type: Transform -- uid: 18968 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 47.5,-34.5 - parent: 8364 - type: Transform -- uid: 18969 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-35.5 - parent: 8364 - type: Transform -- uid: 18970 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-35.5 - parent: 8364 - type: Transform -- uid: 18971 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-35.5 - parent: 8364 - type: Transform -- uid: 18972 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-35.5 - parent: 8364 - type: Transform -- uid: 18973 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-35.5 - parent: 8364 - type: Transform -- uid: 18974 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-35.5 - parent: 8364 - type: Transform -- uid: 18975 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-32.5 - parent: 8364 - type: Transform -- uid: 18976 - type: ReinforcedWindow - components: - - pos: 35.5,-33.5 - parent: 8364 - type: Transform -- uid: 18977 - type: Grille - components: - - pos: 37.5,-33.5 - parent: 8364 - type: Transform -- uid: 18978 - type: Grille - components: - - pos: 35.5,-33.5 - parent: 8364 - type: Transform -- uid: 18979 - type: CableHV - components: - - pos: -26.5,-64.5 - parent: 8364 - type: Transform -- uid: 18980 - type: AirlockEngineeringGlassLocked - components: - - pos: -18.5,-69.5 - parent: 8364 - type: Transform -- uid: 18981 - type: DisposalPipe - components: - - pos: 40.5,-34.5 - parent: 8364 - type: Transform -- uid: 18982 - type: DisposalBend - components: - - pos: 40.5,-33.5 - parent: 8364 - type: Transform -- uid: 18983 - type: DisposalJunctionFlipped - components: - - pos: 40.5,-35.5 - parent: 8364 - type: Transform - - visible: False - type: Sprite -- uid: 18984 - type: DisposalPipe - components: - - pos: 40.5,-36.5 - parent: 8364 - type: Transform -- uid: 18985 - type: DisposalPipe - components: - - pos: 40.5,-37.5 - parent: 8364 - type: Transform -- uid: 18986 - type: DisposalPipe - components: - - pos: 40.5,-38.5 - parent: 8364 - type: Transform -- uid: 18987 - type: FirelockGlass - components: - - pos: -7.5,-77.5 - parent: 8364 - type: Transform -- uid: 18988 - type: DisposalPipe - components: - - pos: 40.5,-40.5 - parent: 8364 - type: Transform -- uid: 18989 - type: DisposalPipe - components: - - pos: 40.5,-41.5 - parent: 8364 - type: Transform -- uid: 18990 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-42.5 - parent: 8364 - type: Transform -- uid: 18991 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-42.5 - parent: 8364 - type: Transform -- uid: 18992 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-42.5 - parent: 8364 - type: Transform -- uid: 18993 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-42.5 - parent: 8364 - type: Transform -- uid: 18994 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-42.5 - parent: 8364 - type: Transform -- uid: 18995 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-42.5 - parent: 8364 - type: Transform -- uid: 18996 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-42.5 - parent: 8364 - type: Transform -- uid: 18997 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-42.5 - parent: 8364 - type: Transform -- uid: 18998 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,-46.5 - parent: 8364 - type: Transform -- uid: 18999 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-45.5 - parent: 8364 - type: Transform -- uid: 19000 - type: DisposalPipe - components: - - pos: 40.5,-46.5 - parent: 8364 - type: Transform -- uid: 19001 - type: DisposalPipe - components: - - pos: 40.5,-47.5 - parent: 8364 - type: Transform -- uid: 19002 - type: DisposalPipe - components: - - pos: 40.5,-48.5 - parent: 8364 - type: Transform -- uid: 19003 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-49.5 - parent: 8364 - type: Transform -- uid: 19004 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-49.5 - parent: 8364 - type: Transform -- uid: 19005 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-49.5 - parent: 8364 - type: Transform -- uid: 19006 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-49.5 - parent: 8364 - type: Transform -- uid: 19007 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-49.5 - parent: 8364 - type: Transform -- uid: 19008 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-49.5 - parent: 8364 - type: Transform -- uid: 19009 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-49.5 - parent: 8364 - type: Transform -- uid: 19010 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-49.5 - parent: 8364 - type: Transform -- uid: 19011 - type: AirlockEngineeringGlassLocked - components: - - pos: -6.5,-65.5 - parent: 8364 - type: Transform -- uid: 19012 - type: AirlockEngineeringLocked - components: - - pos: -21.5,-69.5 - parent: 8364 - type: Transform -- uid: 19013 - type: SMESBasic - components: - - pos: -24.5,-66.5 - parent: 8364 - type: Transform -- uid: 19014 - type: SMESBasic - components: - - pos: -24.5,-67.5 - parent: 8364 - type: Transform -- uid: 19015 - type: Bookshelf - components: - - pos: 44.5,-36.5 - parent: 8364 - type: Transform -- uid: 19016 - type: VendingMachineWallMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 34.5,-33.5 - parent: 8364 - type: Transform -- uid: 19017 - type: CableHV - components: - - pos: -24.5,-68.5 - parent: 8364 - type: Transform -- uid: 19018 - type: CableHV - components: - - pos: -24.5,-67.5 - parent: 8364 - type: Transform -- uid: 19019 - type: CableHV - components: - - pos: -24.5,-66.5 - parent: 8364 - type: Transform -- uid: 19020 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-68.5 - parent: 8364 - type: Transform -- uid: 19021 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-67.5 - parent: 8364 - type: Transform -- uid: 19022 - type: ShuttersNormalOpen - components: - - pos: 23.5,-17.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14147 - type: SignalReceiver -- uid: 19023 - type: ShuttersNormalOpen - components: - - pos: 23.5,-18.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14147 - type: SignalReceiver -- uid: 19024 - type: ShuttersNormalOpen - components: - - pos: 23.5,-19.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14147 - type: SignalReceiver -- uid: 19025 - type: AirlockMedicalScienceGlassLocked - components: - - pos: 50.5,-35.5 - parent: 8364 - type: Transform -- uid: 19026 - type: Grille - components: - - pos: 53.5,-28.5 - parent: 8364 - type: Transform -- uid: 19027 - type: Grille - components: - - pos: 53.5,-32.5 - parent: 8364 - type: Transform -- uid: 19028 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-66.5 - parent: 8364 - type: Transform -- uid: 19029 - type: SMESBasic - components: - - pos: -24.5,-68.5 - parent: 8364 - type: Transform -- uid: 19030 - type: AirlockChiefEngineerLocked - components: - - pos: 5.5,-64.5 - parent: 8364 - type: Transform -- uid: 19031 - type: Catwalk - components: - - pos: 12.5,-72.5 - parent: 8364 - type: Transform -- uid: 19032 - type: Catwalk - components: - - pos: 13.5,-72.5 - parent: 8364 - type: Transform -- uid: 19033 - type: Catwalk - components: - - pos: 14.5,-72.5 - parent: 8364 - type: Transform -- uid: 19034 - type: Catwalk - components: - - pos: 15.5,-72.5 - parent: 8364 - type: Transform -- uid: 19035 - type: Catwalk - components: - - pos: 16.5,-72.5 - parent: 8364 - type: Transform -- uid: 19036 - type: FirelockGlass - components: - - pos: -11.5,-68.5 - parent: 8364 - type: Transform -- uid: 19037 - type: FirelockGlass - components: - - pos: -11.5,-69.5 - parent: 8364 - type: Transform -- uid: 19038 - type: FirelockGlass - components: - - pos: 11.5,-49.5 - parent: 8364 - type: Transform -- uid: 19039 - type: FirelockGlass - components: - - pos: 12.5,-49.5 - parent: 8364 - type: Transform -- uid: 19040 - type: FirelockGlass - components: - - pos: 11.5,-53.5 - parent: 8364 - type: Transform -- uid: 19041 - type: FirelockGlass - components: - - pos: 12.5,-53.5 - parent: 8364 - type: Transform -- uid: 19042 - type: DonkpocketBoxSpawner - components: - - pos: 8.5,-50.5 - parent: 8364 - type: Transform -- uid: 19043 - type: Table - components: - - pos: 8.5,-53.5 - parent: 8364 - type: Transform -- uid: 19044 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-53.5 - parent: 8364 - type: Transform -- uid: 19045 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-53.5 - parent: 8364 - type: Transform -- uid: 19046 - type: PottedPlant8 - components: - - pos: 3.5,-57.5 - parent: 8364 - type: Transform -- uid: 19047 - type: Table - components: - - pos: 22.5,-27.5 - parent: 8364 - type: Transform -- uid: 19048 - type: Table - components: - - pos: 22.5,-26.5 - parent: 8364 - type: Transform -- uid: 19049 - type: Table - components: - - pos: 22.5,-33.5 - parent: 8364 - type: Transform -- uid: 19050 - type: BedsheetMedical - components: - - pos: 26.5,-35.5 - parent: 8364 - type: Transform -- uid: 19051 - type: SignSmoking - components: - - pos: 23.5,-36.5 - parent: 8364 - type: Transform -- uid: 19052 - type: OperatingTable - components: - - pos: 19.5,-32.5 - parent: 8364 - type: Transform -- uid: 19053 - type: OperatingTable - components: - - pos: 21.5,-32.5 - parent: 8364 - type: Transform -- uid: 19054 - type: computerBodyScanner - components: - - pos: 18.5,-32.5 - parent: 8364 - type: Transform -- uid: 19055 - type: computerBodyScanner - components: - - pos: 22.5,-32.5 - parent: 8364 - type: Transform -- uid: 19056 - type: Table - components: - - pos: 24.5,-32.5 - parent: 8364 - type: Transform -- uid: 19057 - type: Table - components: - - pos: 24.5,-33.5 - parent: 8364 - type: Transform -- uid: 19058 - type: PottedPlant17 - components: - - pos: -3.5,-57.5 - parent: 8364 - type: Transform -- uid: 19059 - type: DisposalPipe - components: - - pos: 35.5,-42.5 - parent: 8364 - type: Transform -- uid: 19060 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-36.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 19061 - type: DisposalPipe - components: - - pos: 35.5,-41.5 - parent: 8364 - type: Transform -- uid: 19062 - type: MedkitToxinFilled - components: - - pos: 34.62755,-42.66176 - parent: 8364 - type: Transform -- uid: 19063 - type: ClothingBeltMedicalFilled - components: - - pos: 34.44005,-43.177383 - parent: 8364 - type: Transform -- uid: 19064 - type: ClothingBeltMedicalFilled - components: - - pos: 34.580673,-43.38051 - parent: 8364 - type: Transform -- uid: 19065 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-39.5 - parent: 8364 - type: Transform -- uid: 19066 - type: ClosetEmergencyFilledRandom - components: - - pos: -2.5,-55.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19067 - type: DisposalUnit - components: - - pos: 28.5,-32.5 - parent: 8364 - type: Transform -- uid: 19068 - type: ReinforcedWindow - components: - - pos: 38.5,-35.5 - parent: 8364 - type: Transform -- uid: 19069 - type: Table - components: - - pos: 34.5,-52.5 - parent: 8364 - type: Transform -- uid: 19070 - type: Table - components: - - pos: 34.5,-53.5 - parent: 8364 - type: Transform -- uid: 19071 - type: Table - components: - - pos: 34.5,-54.5 - parent: 8364 - type: Transform -- uid: 19072 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-60.5 - parent: 8364 - type: Transform -- uid: 19073 - type: ClosetFireFilled - components: - - pos: -3.5,-55.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19074 - type: PoweredSmallLight - components: - - pos: 24.5,-60.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19075 - type: CableApcExtension - components: - - pos: 25.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19076 - type: TableGlass - components: - - pos: 29.5,-27.5 - parent: 8364 - type: Transform -- uid: 19077 - type: TableGlass - components: - - pos: 33.5,-27.5 - parent: 8364 - type: Transform -- uid: 19078 - type: ComfyChair - components: - - pos: 46.5,-33.5 - parent: 8364 - type: Transform -- uid: 19079 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 46.5,-32.5 - parent: 8364 - type: Transform -- uid: 19080 - type: TableCarpet - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-36.5 - parent: 8364 - type: Transform -- uid: 19081 - type: TableGlass - components: - - pos: 38.5,-58.5 - parent: 8364 - type: Transform -- uid: 19082 - type: DisposalUnit - components: - - pos: 41.5,-60.5 - parent: 8364 - type: Transform -- uid: 19083 - type: TableGlass - components: - - pos: 38.5,-59.5 - parent: 8364 - type: Transform -- uid: 19084 - type: TableGlass - components: - - pos: 38.5,-60.5 - parent: 8364 - type: Transform -- uid: 19085 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: 45.5,-25.5 - parent: 8364 - type: Transform -- uid: 19086 - type: ShuttersNormalOpen - components: - - pos: 42.5,-44.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19294 - type: SignalReceiver -- uid: 19087 - type: DrinkDoctorsDelightGlass - components: - - pos: 45.47768,-45.540512 - parent: 8364 - type: Transform -- uid: 19088 - type: HandheldCrewMonitor - components: - - pos: 45.47768,-46.290512 - parent: 8364 - type: Transform -- uid: 19089 - type: CableApcExtension - components: - - pos: 24.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19090 - type: Table - components: - - pos: 34.5,-45.5 - parent: 8364 - type: Transform -- uid: 19091 - type: Table - components: - - pos: 34.5,-48.5 - parent: 8364 - type: Transform -- uid: 19092 - type: ComputerMedicalRecords - components: - - rot: 3.141592653589793 rad - pos: 28.5,-21.5 - parent: 8364 - type: Transform -- uid: 19093 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 18.5,-24.5 - parent: 8364 - type: Transform -- uid: 19094 - type: ComputerCrewMonitoring - components: - - rot: 3.141592653589793 rad - pos: 32.5,-21.5 - parent: 8364 - type: Transform -- uid: 19095 - type: Stool - components: - - pos: 47.5,-9.5 - parent: 8364 - type: Transform -- uid: 19096 - type: ReinforcedWindow - components: - - pos: 38.5,-34.5 - parent: 8364 - type: Transform -- uid: 19097 - type: Table - components: - - pos: 20.5,-32.5 - parent: 8364 - type: Transform -- uid: 19098 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 39.5,-33.5 - parent: 8364 - type: Transform -- uid: 19099 - type: DisposalBend - components: - - pos: 39.5,-32.5 - parent: 8364 - type: Transform -- uid: 19100 - type: CableApcExtension - components: - - pos: 34.5,-32.5 - parent: 8364 - type: Transform -- uid: 19101 - type: CableApcExtension - components: - - pos: 33.5,-32.5 - parent: 8364 - type: Transform -- uid: 19102 - type: CableApcExtension - components: - - pos: 33.5,-35.5 - parent: 8364 - type: Transform -- uid: 19103 - type: CableApcExtension - components: - - pos: 34.5,-35.5 - parent: 8364 - type: Transform -- uid: 19104 - type: CableApcExtension - components: - - pos: 35.5,-35.5 - parent: 8364 - type: Transform -- uid: 19105 - type: CableApcExtension - components: - - pos: 36.5,-35.5 - parent: 8364 - type: Transform -- uid: 19106 - type: CableApcExtension - components: - - pos: 37.5,-35.5 - parent: 8364 - type: Transform -- uid: 19107 - type: CableApcExtension - components: - - pos: 38.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19108 - type: CableApcExtension - components: - - pos: 36.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19109 - type: CableApcExtension - components: - - pos: 35.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19110 - type: CableApcExtension - components: - - pos: 37.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19111 - type: CableApcExtension - components: - - pos: 38.5,-34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19112 - type: CableApcExtension - components: - - pos: 38.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19113 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-32.5 - parent: 8364 - type: Transform -- uid: 19114 - type: AirlockMedicalGlassLocked - components: - - name: Cryonics - type: MetaData - - pos: 34.5,-32.5 - parent: 8364 - type: Transform -- uid: 19115 - type: Poweredlight - components: - - pos: 34.5,-34.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19116 - type: CableApcExtension - components: - - pos: 23.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19117 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-23.5 - parent: 8364 - type: Transform -- uid: 19118 - type: ClothingEyesHudMedical - components: - - pos: 37.549423,-40.41176 - parent: 8364 - type: Transform -- uid: 19119 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-39.5 - parent: 8364 - type: Transform -- uid: 19120 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-39.5 - parent: 8364 - type: Transform -- uid: 19121 - type: WindoorMedicalLocked - components: - - pos: 29.5,-35.5 - parent: 8364 - type: Transform -- uid: 19122 - type: VendingMachineMediDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 35.5,-38.5 - parent: 8364 - type: Transform -- uid: 19123 - type: SinkWide - components: - - pos: 32.5,-32.5 - parent: 8364 - type: Transform -- uid: 19124 - type: CableApcExtension - components: - - pos: 22.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19125 - type: CableApcExtension - components: - - pos: 21.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19126 - type: CheapRollerBed - components: - - pos: 42.5,-32.5 - parent: 8364 - type: Transform -- uid: 19127 - type: CheapRollerBed - components: - - pos: 42.5,-33.5 - parent: 8364 - type: Transform -- uid: 19128 - type: CheapRollerBed - components: - - pos: 42.5,-34.5 - parent: 8364 - type: Transform -- uid: 19129 - type: TableGlass - components: - - pos: 45.5,-44.5 - parent: 8364 - type: Transform -- uid: 19130 - type: CableHV - components: - - pos: -38.5,-62.5 - parent: 8364 - type: Transform -- uid: 19131 - type: CableTerminal - components: - - pos: -38.5,-61.5 - parent: 8364 - type: Transform -- uid: 19132 - type: CableHV - components: - - pos: -19.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19133 - type: CableHV - components: - - pos: -20.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19134 - type: CableHV - components: - - pos: -21.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19135 - type: CableHV - components: - - pos: -22.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19136 - type: CableHV - components: - - pos: -23.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19137 - type: CableHV - components: - - pos: -24.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19138 - type: CableHV - components: - - pos: -25.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19139 - type: CableHV - components: - - pos: -26.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19140 - type: CableHV - components: - - pos: -27.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19141 - type: CableHV - components: - - pos: -28.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19142 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-45.5 - parent: 8364 - type: Transform -- uid: 19143 - type: PottedPlant6 - components: - - pos: 43.53772,-46.793503 - parent: 8364 - type: Transform -- uid: 19144 - type: FirelockGlass - components: - - pos: 49.5,-61.5 - parent: 8364 - type: Transform -- uid: 19145 - type: TableReinforced - components: - - pos: -5.5,-6.5 - parent: 8364 - type: Transform -- uid: 19146 - type: Table - components: - - pos: 38.5,-7.5 - parent: 8364 - type: Transform -- uid: 19147 - type: AirlockMaintCommandLocked - components: - - pos: -13.5,-18.5 - parent: 8364 - type: Transform -- uid: 19148 - type: ReinforcedWindow - components: - - pos: -5.5,-18.5 - parent: 8364 - type: Transform -- uid: 19149 - type: TableGlass - components: - - pos: -13.5,-15.5 - parent: 8364 - type: Transform -- uid: 19150 - type: CarpetSBlue - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 8364 - type: Transform -- uid: 19151 - type: ClosetL3VirologyFilled - components: - - pos: 40.5,-60.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 19152 - type: CarpetSBlue - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 8364 - type: Transform -- uid: 19153 - type: Bookshelf - components: - - pos: 8.5,-24.5 - parent: 8364 - type: Transform -- uid: 19154 - type: CarpetBlue - components: - - pos: 9.5,-27.5 - parent: 8364 - type: Transform -- uid: 19155 - type: CableHV - components: - - pos: -29.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19156 - type: CableHV - components: - - pos: -30.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19157 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-32.5 - parent: 8364 - type: Transform -- uid: 19158 - type: ClosetBase - components: - - pos: 24.5,-36.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19159 - type: GasThermoMachineFreezer - components: - - pos: 11.5,-40.5 - parent: 8364 - type: Transform -- uid: 19160 - type: GasMixerFlipped - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-41.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 19161 - type: PortableScrubber - components: - - pos: 15.5,-54.5 - parent: 8364 - type: Transform -- uid: 19162 - type: PortableScrubber - components: - - pos: 14.5,-54.5 - parent: 8364 - type: Transform -- uid: 19163 - type: PortableScrubber - components: - - pos: 13.5,-54.5 - parent: 8364 - type: Transform -- uid: 19164 - type: GasPort - components: - - pos: 13.5,-54.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19165 - type: GasPort - components: - - pos: 14.5,-54.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19166 - type: GasPort - components: - - pos: 15.5,-54.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19167 - type: Rack - components: - - pos: 7.5,-44.5 - parent: 8364 - type: Transform -- uid: 19168 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-43.5 - parent: 8364 - type: Transform -- uid: 19169 - type: CableHV - components: - - pos: -54.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19170 - type: BedsheetMedical - components: - - pos: 34.5,-49.5 - parent: 8364 - type: Transform -- uid: 19171 - type: BedsheetMedical - components: - - pos: 34.5,-46.5 - parent: 8364 - type: Transform -- uid: 19172 - type: CableHV - components: - - pos: -55.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19173 - type: CableHV - components: - - pos: -56.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19174 - type: CableHV - components: - - pos: -57.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19175 - type: CableHV - components: - - pos: -42.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19176 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-35.5 - parent: 8364 - type: Transform -- uid: 19177 - type: FirelockGlass - components: - - pos: 23.5,-35.5 - parent: 8364 - type: Transform -- uid: 19178 - type: Bed - components: - - pos: 26.5,-36.5 - parent: 8364 - type: Transform -- uid: 19179 - type: ClosetBase - components: - - pos: 18.5,-36.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 19180 - type: Cautery - components: - - pos: 20.433233,-32.48986 - parent: 8364 - type: Transform -- uid: 19181 - type: Retractor - components: - - pos: 22.567125,-33.505486 - parent: 8364 - type: Transform -- uid: 19182 - type: Scalpel - components: - - pos: 22.531345,-33.55236 - parent: 8364 - type: Transform -- uid: 19183 - type: SawElectric - components: - - pos: 20.527624,-32.505486 - parent: 8364 - type: Transform -- uid: 19184 - type: Hemostat - components: - - pos: 22.523493,-33.536736 - parent: 8364 - type: Transform -- uid: 19185 - type: ClothingHeadHatSurgcapBlue - components: - - pos: 18.493454,-33.349236 - parent: 8364 - type: Transform -- uid: 19186 - type: ClothingHandsGlovesLatex - components: - - pos: 18.43795,-33.442986 - parent: 8364 - type: Transform -- uid: 19187 - type: ClothingMaskSterile - components: - - pos: 18.458704,-33.192986 - parent: 8364 - type: Transform -- uid: 19188 - type: ClothingBackpackDuffelSurgeryFilled - components: - - pos: 22.481104,-33.161736 - parent: 8364 - type: Transform -- uid: 19189 - type: Catwalk - components: - - pos: -42.5,-61.5 - parent: 8364 - type: Transform -- uid: 19190 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 8364 - type: Transform -- uid: 19191 - type: ComputerMedicalRecords - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-27.5 - parent: 8364 - type: Transform -- uid: 19192 - type: LockerMedical - components: - - pos: 24.5,-30.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 19193 - type: OxygenCanister - components: - - pos: 29.5,-30.5 - parent: 8364 - type: Transform -- uid: 19194 - type: Catwalk - components: - - pos: -43.5,-61.5 - parent: 8364 - type: Transform -- uid: 19195 - type: Catwalk - components: - - pos: -44.5,-61.5 - parent: 8364 - type: Transform -- uid: 19196 - type: Catwalk - components: - - pos: -45.5,-61.5 - parent: 8364 - type: Transform -- uid: 19197 - type: Catwalk - components: - - pos: -46.5,-61.5 - parent: 8364 - type: Transform -- uid: 19198 - type: Table - components: - - pos: 30.5,-30.5 - parent: 8364 - type: Transform -- uid: 19199 - type: Wrench - components: - - pos: 30.5,-30.5 - parent: 8364 - type: Transform -- uid: 19200 - type: Catwalk - components: - - pos: -47.5,-61.5 - parent: 8364 - type: Transform -- uid: 19201 - type: Catwalk - components: - - pos: -48.5,-61.5 - parent: 8364 - type: Transform -- uid: 19202 - type: Catwalk - components: - - pos: -49.5,-61.5 - parent: 8364 - type: Transform -- uid: 19203 - type: Catwalk - components: - - pos: -50.5,-61.5 - parent: 8364 - type: Transform -- uid: 19204 - type: Catwalk - components: - - pos: -51.5,-61.5 - parent: 8364 - type: Transform -- uid: 19205 - type: Catwalk - components: - - pos: -52.5,-61.5 - parent: 8364 - type: Transform -- uid: 19206 - type: DisposalBend - components: - - pos: 40.5,-23.5 - parent: 8364 - type: Transform -- uid: 19207 - type: Catwalk - components: - - pos: -53.5,-61.5 - parent: 8364 - type: Transform -- uid: 19208 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-23.5 - parent: 8364 - type: Transform -- uid: 19209 - type: Catwalk - components: - - pos: -54.5,-61.5 - parent: 8364 - type: Transform -- uid: 19210 - type: Catwalk - components: - - pos: -55.5,-61.5 - parent: 8364 - type: Transform -- uid: 19211 - type: Catwalk - components: - - pos: -56.5,-61.5 - parent: 8364 - type: Transform -- uid: 19212 - type: Catwalk - components: - - pos: -53.5,-55.5 - parent: 8364 - type: Transform -- uid: 19213 - type: Table - components: - - pos: 46.5,-24.5 - parent: 8364 - type: Transform -- uid: 19214 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-27.5 - parent: 8364 - type: Transform -- uid: 19215 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 44.5,-25.5 - parent: 8364 - type: Transform -- uid: 19216 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 46.5,-25.5 - parent: 8364 - type: Transform -- uid: 19217 - type: WeaponCapacitorRecharger - components: - - pos: 46.5,-24.5 - parent: 8364 - type: Transform -- uid: 19218 - type: Catwalk - components: - - pos: -53.5,-56.5 - parent: 8364 - type: Transform -- uid: 19219 - type: Catwalk - components: - - pos: -53.5,-57.5 - parent: 8364 - type: Transform -- uid: 19220 - type: Catwalk - components: - - pos: -53.5,-58.5 - parent: 8364 - type: Transform -- uid: 19221 - type: Catwalk - components: - - pos: -53.5,-59.5 - parent: 8364 - type: Transform -- uid: 19222 - type: Catwalk - components: - - pos: -53.5,-60.5 - parent: 8364 - type: Transform -- uid: 19223 - type: Catwalk - components: - - pos: -49.5,-60.5 - parent: 8364 - type: Transform -- uid: 19224 - type: Catwalk - components: - - pos: -49.5,-59.5 - parent: 8364 - type: Transform -- uid: 19225 - type: Catwalk - components: - - pos: -49.5,-58.5 - parent: 8364 - type: Transform -- uid: 19226 - type: Catwalk - components: - - pos: -49.5,-57.5 - parent: 8364 - type: Transform -- uid: 19227 - type: Catwalk - components: - - pos: -49.5,-56.5 - parent: 8364 - type: Transform -- uid: 19228 - type: SprayBottleSpaceCleaner - components: - - rot: 0.00031763542210683227 rad - pos: 22.734983,-27.003876 - parent: 8364 - type: Transform -- uid: 19229 - type: CrowbarRed - components: - - pos: 22.39215,-26.988102 - parent: 8364 - type: Transform -- uid: 19230 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-36.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19231 - type: WallSolid - components: - - pos: 48.5,-33.5 - parent: 8364 - type: Transform -- uid: 19232 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 47.5,-36.5 - parent: 8364 - type: Transform -- uid: 19233 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-35.5 - parent: 8364 - type: Transform -- uid: 19234 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-35.5 - parent: 8364 - type: Transform -- uid: 19235 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-34.5 - parent: 8364 - type: Transform -- uid: 19236 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-34.5 - parent: 8364 - type: Transform -- uid: 19237 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-35.5 - parent: 8364 - type: Transform -- uid: 19238 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 45.5,-32.5 - parent: 8364 - type: Transform -- uid: 19239 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-36.5 - parent: 8364 - type: Transform -- uid: 19240 - type: CarpetBlue - components: - - pos: 11.5,-26.5 - parent: 8364 - type: Transform -- uid: 19241 - type: ClothingNeckStethoscope - components: - - pos: 30.348389,-19.489916 - parent: 8364 - type: Transform -- uid: 19242 - type: WallSolid - components: - - pos: 50.5,-34.5 - parent: 8364 - type: Transform -- uid: 19243 - type: OxygenCanister - components: - - pos: 57.5,-30.5 - parent: 8364 - type: Transform -- uid: 19244 - type: KitchenMicrowave - components: - - pos: 34.5,-52.5 - parent: 8364 - type: Transform -- uid: 19245 - type: FoodBoxDonkpocket - components: - - pos: 34.5,-53.5 - parent: 8364 - type: Transform -- uid: 19246 - type: KitchenReagentGrinder - components: - - pos: 34.5,-54.5 - parent: 8364 - type: Transform -- uid: 19247 - type: SheetPlasma1 - components: - - pos: 34.5,-53.5 - parent: 8364 - type: Transform -- uid: 19248 - type: Catwalk - components: - - pos: -49.5,-55.5 - parent: 8364 - type: Transform -- uid: 19249 - type: Catwalk - components: - - pos: -45.5,-55.5 - parent: 8364 - type: Transform -- uid: 19250 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-56.5 - parent: 8364 - type: Transform -- uid: 19251 - type: Catwalk - components: - - pos: -45.5,-56.5 - parent: 8364 - type: Transform -- uid: 19252 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 40.5,-59.5 - parent: 8364 - type: Transform -- uid: 19253 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 40.5,-58.5 - parent: 8364 - type: Transform -- uid: 19254 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 40.5,-57.5 - parent: 8364 - type: Transform -- uid: 19255 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 40.5,-56.5 - parent: 8364 - type: Transform -- uid: 19256 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 40.5,-55.5 - parent: 8364 - type: Transform -- uid: 19257 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 40.5,-54.5 - parent: 8364 - type: Transform -- uid: 19258 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 40.5,-53.5 - parent: 8364 - type: Transform -- uid: 19259 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 40.5,-52.5 - parent: 8364 - type: Transform -- uid: 19260 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 40.5,-51.5 - parent: 8364 - type: Transform -- uid: 19261 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 40.5,-50.5 - parent: 8364 - type: Transform -- uid: 19262 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 40.5,-60.5 - parent: 8364 - type: Transform -- uid: 19263 - type: BoxSyringe - components: - - pos: 38.5,-59.5 - parent: 8364 - type: Transform -- uid: 19264 - type: BoxBeaker - components: - - pos: 38.5,-60.5 - parent: 8364 - type: Transform -- uid: 19265 - type: Catwalk - components: - - pos: -45.5,-57.5 - parent: 8364 - type: Transform -- uid: 19266 - type: ClothingMaskSterile - components: - - pos: 38.5,-58.5 - parent: 8364 - type: Transform -- uid: 19267 - type: Catwalk - components: - - pos: -45.5,-58.5 - parent: 8364 - type: Transform -- uid: 19268 - type: Catwalk - components: - - pos: -45.5,-59.5 - parent: 8364 - type: Transform -- uid: 19269 - type: Catwalk - components: - - pos: -45.5,-60.5 - parent: 8364 - type: Transform -- uid: 19270 - type: Catwalk - components: - - pos: -45.5,-62.5 - parent: 8364 - type: Transform -- uid: 19271 - type: Catwalk - components: - - pos: -45.5,-63.5 - parent: 8364 - type: Transform -- uid: 19272 - type: Catwalk - components: - - pos: -45.5,-64.5 - parent: 8364 - type: Transform -- uid: 19273 - type: Catwalk - components: - - pos: -45.5,-65.5 - parent: 8364 - type: Transform -- uid: 19274 - type: Catwalk - components: - - pos: -45.5,-66.5 - parent: 8364 - type: Transform -- uid: 19275 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 47.5,-55.5 - parent: 8364 - type: Transform -- uid: 19276 - type: MonkeyCubeBox - components: - - pos: 45.5,-52.5 - parent: 8364 - type: Transform -- uid: 19277 - type: ClosetEmergencyFilledRandom - components: - - pos: 41.5,-51.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 19278 - type: ClosetL3VirologyFilled - components: - - pos: 41.5,-52.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 19279 - type: ClosetL3VirologyFilled - components: - - pos: 41.5,-53.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 19280 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-45.5 - parent: 8364 - type: Transform -- uid: 19281 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-48.5 - parent: 8364 - type: Transform -- uid: 19282 - type: ClothingNeckStethoscope - components: - - pos: 34.5,-48.5 - parent: 8364 - type: Transform -- uid: 19283 - type: ClothingNeckStethoscope - components: - - pos: 34.5,-45.5 - parent: 8364 - type: Transform -- uid: 19284 - type: BoxFolderGrey - components: - - pos: 34.5,-45.5 - parent: 8364 - type: Transform -- uid: 19285 - type: BoxFolderGrey - components: - - pos: 34.5,-48.5 - parent: 8364 - type: Transform -- uid: 19286 - type: ClosetBase - components: - - pos: 37.5,-45.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 19287 - type: ClosetBase - components: - - pos: 37.5,-48.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 19288 - type: CableHV - components: - - pos: -3.5,-4.5 - parent: 8364 - type: Transform -- uid: 19289 - type: Catwalk - components: - - pos: -45.5,-67.5 - parent: 8364 - type: Transform -- uid: 19290 - type: Catwalk - components: - - pos: -49.5,-62.5 - parent: 8364 - type: Transform -- uid: 19291 - type: Catwalk - components: - - pos: -49.5,-63.5 - parent: 8364 - type: Transform -- uid: 19292 - type: Catwalk - components: - - pos: -49.5,-64.5 - parent: 8364 - type: Transform -- uid: 19293 - type: ComputerRadar - components: - - pos: -2.5,-4.5 - parent: 8364 - type: Transform -- uid: 19294 - type: SignalButton - components: - - pos: 45.5,-46.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 19295 - - port: Toggle - uid: 19086 - type: SignalTransmitter -- uid: 19295 - type: ShuttersNormalOpen - components: - - pos: 42.5,-46.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19294 - type: SignalReceiver -- uid: 19296 - type: Catwalk - components: - - pos: -49.5,-65.5 - parent: 8364 - type: Transform -- uid: 19297 - type: ComputerStationRecords - components: - - pos: 1.5,-4.5 - parent: 8364 - type: Transform -- uid: 19298 - type: Catwalk - components: - - pos: -49.5,-66.5 - parent: 8364 - type: Transform -- uid: 19299 - type: Catwalk - components: - - pos: -49.5,-67.5 - parent: 8364 - type: Transform -- uid: 19300 - type: Catwalk - components: - - pos: -53.5,-62.5 - parent: 8364 - type: Transform -- uid: 19301 - type: Catwalk - components: - - pos: -53.5,-63.5 - parent: 8364 - type: Transform -- uid: 19302 - type: Catwalk - components: - - pos: -53.5,-64.5 - parent: 8364 - type: Transform -- uid: 19303 - type: Catwalk - components: - - pos: -53.5,-65.5 - parent: 8364 - type: Transform -- uid: 19304 - type: Table - components: - - pos: 42.5,-16.5 - parent: 8364 - type: Transform -- uid: 19305 - type: Catwalk - components: - - pos: -53.5,-66.5 - parent: 8364 - type: Transform -- uid: 19306 - type: Catwalk - components: - - pos: -53.5,-67.5 - parent: 8364 - type: Transform -- uid: 19307 - type: Table - components: - - pos: 43.5,-16.5 - parent: 8364 - type: Transform -- uid: 19308 - type: CableHV - components: - - pos: -44.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19309 - type: CableHV - components: - - pos: -44.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19310 - type: CableApcExtension - components: - - pos: 45.5,-19.5 - parent: 8364 - type: Transform -- uid: 19311 - type: Chair - components: - - pos: 18.5,-29.5 - parent: 8364 - type: Transform -- uid: 19312 - type: CableHV - components: - - pos: -44.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19313 - type: CableHV - components: - - pos: -44.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19314 - type: CableHV - components: - - pos: -44.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19315 - type: BoxBodyBag - components: - - rot: 0.00039273296715691686 rad - pos: 41.63594,-16.263338 - parent: 8364 - type: Transform -- uid: 19316 - type: Scalpel - components: - - pos: 42.121296,-16.246696 - parent: 8364 - type: Transform -- uid: 19317 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19318 - type: Paper - components: - - pos: 43.6327,-16.439646 - parent: 8364 - type: Transform -- uid: 19319 - type: Paper - components: - - pos: 43.679577,-16.377146 - parent: 8364 - type: Transform -- uid: 19320 - type: Paper - components: - - pos: 43.648327,-16.33027 - parent: 8364 - type: Transform -- uid: 19321 - type: Pen - components: - - pos: 43.44618,-16.36152 - parent: 8364 - type: Transform -- uid: 19322 - type: Table - components: - - pos: 41.5,-16.5 - parent: 8364 - type: Transform -- uid: 19323 - type: FirelockGlass - components: - - pos: -66.5,11.5 - parent: 8364 - type: Transform -- uid: 19324 - type: Chair - components: - - pos: 19.5,-29.5 - parent: 8364 - type: Transform -- uid: 19325 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-25.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19326 - type: Chair - components: - - pos: 21.5,-29.5 - parent: 8364 - type: Transform -- uid: 19327 - type: Chair - components: - - pos: 21.5,-30.5 - parent: 8364 - type: Transform -- uid: 19328 - type: Chair - components: - - pos: 22.5,-29.5 - parent: 8364 - type: Transform -- uid: 19329 - type: Chair - components: - - pos: 22.5,-30.5 - parent: 8364 - type: Transform -- uid: 19330 - type: WeldingFuelTankFull - components: - - pos: 32.5,-62.5 - parent: 8364 - type: Transform -- uid: 19331 - type: WaterTankFull - components: - - pos: 32.5,-63.5 - parent: 8364 - type: Transform -- uid: 19332 - type: AirlockExternalLocked - components: - - pos: 26.5,-80.5 - parent: 8364 - type: Transform -- uid: 19333 - type: Rack - components: - - pos: 47.5,-72.5 - parent: 8364 - type: Transform -- uid: 19334 - type: Rack - components: - - pos: 47.5,-71.5 - parent: 8364 - type: Transform -- uid: 19335 - type: CableHVStack - components: - - pos: 47.727077,-68.63297 - parent: 8364 - type: Transform -- uid: 19336 - type: Table - components: - - pos: 47.5,-68.5 - parent: 8364 - type: Transform -- uid: 19337 - type: Table - components: - - pos: 47.5,-67.5 - parent: 8364 - type: Transform -- uid: 19338 - type: Table - components: - - pos: 47.5,-66.5 - parent: 8364 - type: Transform -- uid: 19339 - type: CableHV - components: - - pos: -46.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19340 - type: CableHV - components: - - pos: -46.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19341 - type: CableMVStack - components: - - pos: 47.602077,-68.53922 - parent: 8364 - type: Transform -- uid: 19342 - type: CableApcStack - components: - - pos: 47.398952,-68.41422 - parent: 8364 - type: Transform -- uid: 19343 - type: SheetGlass - components: - - rot: -0.0007233519572764635 rad - pos: 47.73502,-67.92985 - parent: 8364 - type: Transform -- uid: 19344 - type: SheetRGlass - components: - - pos: 47.289577,-67.7736 - parent: 8364 - type: Transform -- uid: 19345 - type: SheetSteel - components: - - pos: 47.711452,-67.03922 - parent: 8364 - type: Transform -- uid: 19346 - type: PartRodMetal - components: - - pos: 47.258327,-66.86735 - parent: 8364 - type: Transform -- uid: 19347 - type: ClothingHandsGlovesColorYellowBudget - components: - - pos: 47.523952,-66.32047 - parent: 8364 - type: Transform -- uid: 19348 - type: Multitool - components: - - pos: 47.523952,-66.25797 - parent: 8364 - type: Transform -- uid: 19349 - type: Grille - components: - - pos: 53.5,-60.5 - parent: 8364 - type: Transform -- uid: 19350 - type: Grille - components: - - pos: 52.5,-60.5 - parent: 8364 - type: Transform -- uid: 19351 - type: Grille - components: - - pos: 58.5,-60.5 - parent: 8364 - type: Transform -- uid: 19352 - type: Grille - components: - - pos: 57.5,-60.5 - parent: 8364 - type: Transform -- uid: 19353 - type: Grille - components: - - pos: 56.5,-60.5 - parent: 8364 - type: Transform -- uid: 19354 - type: Grille - components: - - pos: 63.5,-60.5 - parent: 8364 - type: Transform -- uid: 19355 - type: Grille - components: - - pos: 62.5,-60.5 - parent: 8364 - type: Transform -- uid: 19356 - type: Grille - components: - - pos: 61.5,-60.5 - parent: 8364 - type: Transform -- uid: 19357 - type: ReinforcedWindow - components: - - pos: 53.5,-60.5 - parent: 8364 - type: Transform -- uid: 19358 - type: ReinforcedWindow - components: - - pos: 52.5,-60.5 - parent: 8364 - type: Transform -- uid: 19359 - type: ReinforcedWindow - components: - - pos: 58.5,-60.5 - parent: 8364 - type: Transform -- uid: 19360 - type: ReinforcedWindow - components: - - pos: 57.5,-60.5 - parent: 8364 - type: Transform -- uid: 19361 - type: ReinforcedWindow - components: - - pos: 56.5,-60.5 - parent: 8364 - type: Transform -- uid: 19362 - type: ReinforcedWindow - components: - - pos: 63.5,-60.5 - parent: 8364 - type: Transform -- uid: 19363 - type: ReinforcedWindow - components: - - pos: 62.5,-60.5 - parent: 8364 - type: Transform -- uid: 19364 - type: ReinforcedWindow - components: - - pos: 61.5,-60.5 - parent: 8364 - type: Transform -- uid: 19365 - type: ClothingHeadHatFez - components: - - pos: 47.690456,-71.225746 - parent: 8364 - type: Transform -- uid: 19366 - type: AirlockExternalLocked - components: - - pos: 49.5,-68.5 - parent: 8364 - type: Transform -- uid: 19367 - type: Grille - components: - - pos: 50.5,-67.5 - parent: 8364 - type: Transform -- uid: 19368 - type: Grille - components: - - pos: 50.5,-68.5 - parent: 8364 - type: Transform -- uid: 19369 - type: CableHV - components: - - pos: -46.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19370 - type: CableHV - components: - - pos: -46.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19371 - type: CableApcExtension - components: - - pos: 50.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19372 - type: CableApcExtension - components: - - pos: 50.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19373 - type: WallReinforced - components: - - pos: 83.5,-44.5 - parent: 8364 - type: Transform -- uid: 19374 - type: WallReinforced - components: - - pos: 86.5,-44.5 - parent: 8364 - type: Transform -- uid: 19375 - type: WallReinforced - components: - - pos: 86.5,-45.5 - parent: 8364 - type: Transform -- uid: 19376 - type: WallReinforced - components: - - pos: 87.5,-47.5 - parent: 8364 - type: Transform -- uid: 19377 - type: WallReinforced - components: - - pos: 87.5,-48.5 - parent: 8364 - type: Transform -- uid: 19378 - type: WallReinforced - components: - - pos: 86.5,-49.5 - parent: 8364 - type: Transform -- uid: 19379 - type: WallReinforced - components: - - pos: 85.5,-49.5 - parent: 8364 - type: Transform -- uid: 19380 - type: WallReinforced - components: - - pos: 84.5,-49.5 - parent: 8364 - type: Transform -- uid: 19381 - type: WallReinforced - components: - - pos: 83.5,-49.5 - parent: 8364 - type: Transform -- uid: 19382 - type: Wrench - components: - - pos: 84.626945,-48.5344 - parent: 8364 - type: Transform -- uid: 19383 - type: Rack - components: - - pos: 84.5,-48.5 - parent: 8364 - type: Transform -- uid: 19384 - type: CableHV - components: - - pos: -46.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19385 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 85.5,-45.5 - parent: 8364 - type: Transform -- uid: 19386 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 86.5,-47.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 19387 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 86.5,-48.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 19388 - type: AirCanister - components: - - pos: 86.5,-47.5 - parent: 8364 - type: Transform -- uid: 19389 - type: AirCanister - components: - - pos: 86.5,-48.5 - parent: 8364 - type: Transform -- uid: 19390 - type: APCHighCapacity - components: - - rot: 3.141592653589793 rad - pos: 84.5,-46.5 - parent: 8364 - type: Transform -- uid: 19391 - type: CableApcExtension - components: - - pos: 84.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19392 - type: CableApcExtension - components: - - pos: 84.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19393 - type: CableApcExtension - components: - - pos: 83.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19394 - type: CableApcExtension - components: - - pos: 82.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19395 - type: CableApcExtension - components: - - pos: 82.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19396 - type: CableApcExtension - components: - - pos: 82.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19397 - type: CableApcExtension - components: - - pos: 82.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19398 - type: CableApcExtension - components: - - pos: 82.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19399 - type: CableApcExtension - components: - - pos: 82.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19400 - type: CableApcExtension - components: - - pos: 81.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19401 - type: CableApcExtension - components: - - pos: 81.5,-34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19402 - type: CableApcExtension - components: - - pos: 81.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19403 - type: CableApcExtension - components: - - pos: 81.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19404 - type: CableApcExtension - components: - - pos: 81.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19405 - type: CableApcExtension - components: - - pos: 81.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19406 - type: CableApcExtension - components: - - pos: 81.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19407 - type: CableApcExtension - components: - - pos: 81.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19408 - type: CableApcExtension - components: - - pos: 84.5,-32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19409 - type: CableApcExtension - components: - - pos: 84.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19410 - type: CableApcExtension - components: - - pos: 83.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19411 - type: CableApcExtension - components: - - pos: 82.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19412 - type: CableApcExtension - components: - - pos: 85.5,-32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19413 - type: CableApcExtension - components: - - pos: 83.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19414 - type: CableApcExtension - components: - - pos: 84.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19415 - type: CableApcExtension - components: - - pos: 85.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19416 - type: CableApcExtension - components: - - pos: 86.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19417 - type: CableApcExtension - components: - - pos: 87.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19418 - type: CableApcExtension - components: - - pos: 87.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19419 - type: CableApcExtension - components: - - pos: 87.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19420 - type: CableApcExtension - components: - - pos: 82.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19421 - type: CableApcExtension - components: - - pos: 83.5,-36.5 - parent: 8364 - type: Transform -- uid: 19422 - type: CableApcExtension - components: - - pos: 84.5,-36.5 - parent: 8364 - type: Transform -- uid: 19423 - type: CableApcExtension - components: - - pos: 85.5,-36.5 - parent: 8364 - type: Transform -- uid: 19424 - type: CableApcExtension - components: - - pos: 85.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19425 - type: CableApcExtension - components: - - pos: 86.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19426 - type: CableApcExtension - components: - - pos: 86.5,-36.5 - parent: 8364 - type: Transform -- uid: 19427 - type: CableApcExtension - components: - - pos: 87.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19428 - type: CableApcExtension - components: - - pos: 87.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19429 - type: CableApcExtension - components: - - pos: 87.5,-34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19430 - type: CableApcExtension - components: - - pos: 85.5,-31.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19431 - type: CableApcExtension - components: - - pos: 85.5,-30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19432 - type: CableApcExtension - components: - - pos: 85.5,-29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19433 - type: CableApcExtension - components: - - pos: 85.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19434 - type: CableApcExtension - components: - - pos: 85.5,-27.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19435 - type: CableApcExtension - components: - - pos: 85.5,-26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19436 - type: CableApcExtension - components: - - pos: 85.5,-25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19437 - type: CableApcExtension - components: - - pos: 85.5,-24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19438 - type: CableApcExtension - components: - - pos: 85.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19439 - type: CableApcExtension - components: - - pos: 85.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19440 - type: CableApcExtension - components: - - pos: 85.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19441 - type: CableApcExtension - components: - - pos: 84.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19442 - type: CableApcExtension - components: - - pos: 83.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19443 - type: CableApcExtension - components: - - pos: 82.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19444 - type: CableApcExtension - components: - - pos: 81.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19445 - type: CableApcExtension - components: - - pos: 80.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19446 - type: CableApcExtension - components: - - pos: 79.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19447 - type: CableApcExtension - components: - - pos: 79.5,-20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19448 - type: CableApcExtension - components: - - pos: 79.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19449 - type: CableApcExtension - components: - - pos: 80.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19450 - type: CableApcExtension - components: - - pos: 81.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19451 - type: CableApcExtension - components: - - pos: 78.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19452 - type: CableApcExtension - components: - - pos: 77.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19453 - type: CableApcExtension - components: - - pos: 76.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19454 - type: CableApcExtension - components: - - pos: 76.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19455 - type: CableApcExtension - components: - - pos: 76.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19456 - type: CableApcExtension - components: - - pos: 82.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19457 - type: CableApcExtension - components: - - pos: 82.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19458 - type: CableApcExtension - components: - - pos: 82.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19459 - type: CableApcExtension - components: - - pos: 82.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19460 - type: CableApcExtension - components: - - pos: 82.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19461 - type: CableApcExtension - components: - - pos: 82.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19462 - type: CableApcExtension - components: - - pos: 82.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19463 - type: CableApcExtension - components: - - pos: 83.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19464 - type: CableApcExtension - components: - - pos: 84.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19465 - type: CableApcExtension - components: - - pos: 85.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19466 - type: CableApcExtension - components: - - pos: 86.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19467 - type: CableApcExtension - components: - - pos: 87.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19468 - type: CableApcExtension - components: - - pos: 87.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19469 - type: CableApcExtension - components: - - pos: 87.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19470 - type: CableApcExtension - components: - - pos: 82.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19471 - type: CableApcExtension - components: - - pos: 82.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19472 - type: CableApcExtension - components: - - pos: 82.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19473 - type: CableApcExtension - components: - - pos: 82.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19474 - type: CableApcExtension - components: - - pos: 82.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19475 - type: CableApcExtension - components: - - pos: 83.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19476 - type: CableApcExtension - components: - - pos: 84.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19477 - type: CableApcExtension - components: - - pos: 85.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19478 - type: CableApcExtension - components: - - pos: 86.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19479 - type: CableApcExtension - components: - - pos: 87.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19480 - type: CableApcExtension - components: - - pos: 88.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19481 - type: CableApcExtension - components: - - pos: 82.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19482 - type: CableApcExtension - components: - - pos: 82.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19483 - type: CableApcExtension - components: - - pos: 82.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19484 - type: CableApcExtension - components: - - pos: 81.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19485 - type: CableApcExtension - components: - - pos: 80.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19486 - type: CableApcExtension - components: - - pos: 79.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19487 - type: CableApcExtension - components: - - pos: 78.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19488 - type: CableApcExtension - components: - - pos: 77.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19489 - type: CableApcExtension - components: - - pos: 76.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19490 - type: Grille - components: - - pos: 76.5,-61.5 - parent: 8364 - type: Transform -- uid: 19491 - type: CableApcExtension - components: - - pos: 74.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19492 - type: CableApcExtension - components: - - pos: 73.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19493 - type: CableApcExtension - components: - - pos: 72.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19494 - type: CableApcExtension - components: - - pos: 71.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19495 - type: CableApcExtension - components: - - pos: 70.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19496 - type: CableApcExtension - components: - - pos: 69.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19497 - type: CableApcExtension - components: - - pos: 68.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19498 - type: CableApcExtension - components: - - pos: 67.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19499 - type: CableApcExtension - components: - - pos: 66.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19500 - type: CableApcExtension - components: - - pos: 65.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19501 - type: CableApcExtension - components: - - pos: 65.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19502 - type: CableApcExtension - components: - - pos: 65.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19503 - type: CableApcExtension - components: - - pos: 65.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19504 - type: CableApcExtension - components: - - pos: 65.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19505 - type: CableApcExtension - components: - - pos: 66.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19506 - type: CableApcExtension - components: - - pos: 67.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19507 - type: CableApcExtension - components: - - pos: 68.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19508 - type: CableApcExtension - components: - - pos: 69.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19509 - type: CableApcExtension - components: - - pos: 66.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19510 - type: CableApcExtension - components: - - pos: 68.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19511 - type: CableApcExtension - components: - - pos: 68.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19512 - type: CableApcExtension - components: - - pos: 68.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19513 - type: CableApcExtension - components: - - pos: 68.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19514 - type: CableApcExtension - components: - - pos: 68.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19515 - type: CableApcExtension - components: - - pos: 77.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19516 - type: CableApcExtension - components: - - pos: 77.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19517 - type: CableApcExtension - components: - - pos: 77.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19518 - type: CableApcExtension - components: - - pos: 77.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19519 - type: CableApcExtension - components: - - pos: 76.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19520 - type: CableApcExtension - components: - - pos: 75.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19521 - type: CableApcExtension - components: - - pos: 74.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19522 - type: CableApcExtension - components: - - pos: 73.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19523 - type: CableApcExtension - components: - - pos: 72.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19524 - type: CableApcExtension - components: - - pos: 72.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19525 - type: CableApcExtension - components: - - pos: 71.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19526 - type: CableApcExtension - components: - - pos: 70.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19527 - type: CableApcExtension - components: - - pos: 69.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19528 - type: CableApcExtension - components: - - pos: 72.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19529 - type: CableApcExtension - components: - - pos: 72.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19530 - type: CableApcExtension - components: - - pos: 72.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19531 - type: CableApcExtension - components: - - pos: 71.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19532 - type: CableApcExtension - components: - - pos: 70.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19533 - type: CableApcExtension - components: - - pos: 69.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19534 - type: CableApcExtension - components: - - pos: 68.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19535 - type: CableApcExtension - components: - - pos: 67.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19536 - type: CableApcExtension - components: - - pos: 66.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19537 - type: CableApcExtension - components: - - pos: 65.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19538 - type: CableApcExtension - components: - - pos: 65.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19539 - type: CableApcExtension - components: - - pos: 65.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19540 - type: CableApcExtension - components: - - pos: 65.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19541 - type: CableApcExtension - components: - - pos: 64.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19542 - type: CableApcExtension - components: - - pos: 63.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19543 - type: CableApcExtension - components: - - pos: 62.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19544 - type: CableApcExtension - components: - - pos: 61.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19545 - type: CableApcExtension - components: - - pos: 65.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19546 - type: CableApcExtension - components: - - pos: 65.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19547 - type: CableApcExtension - components: - - pos: 65.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19548 - type: CableApcExtension - components: - - pos: 65.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19549 - type: CableApcExtension - components: - - pos: 65.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19550 - type: CableApcExtension - components: - - pos: 65.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19551 - type: CableApcExtension - components: - - pos: 65.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19552 - type: CableApcExtension - components: - - pos: 64.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19553 - type: CableApcExtension - components: - - pos: 63.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19554 - type: CableApcExtension - components: - - pos: 62.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19555 - type: CableApcExtension - components: - - pos: 61.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19556 - type: CableApcExtension - components: - - pos: 60.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19557 - type: CableApcExtension - components: - - pos: 59.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19558 - type: CableApcExtension - components: - - pos: 58.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19559 - type: CableApcExtension - components: - - pos: 57.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19560 - type: CableApcExtension - components: - - pos: 56.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19561 - type: CableApcExtension - components: - - pos: 55.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19562 - type: CableApcExtension - components: - - pos: 54.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19563 - type: CableApcExtension - components: - - pos: 53.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19564 - type: CableApcExtension - components: - - pos: 53.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19565 - type: CableApcExtension - components: - - pos: 52.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19566 - type: CableApcExtension - components: - - pos: 56.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19567 - type: CableApcExtension - components: - - pos: 57.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19568 - type: CableApcExtension - components: - - pos: 58.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19569 - type: CableApcExtension - components: - - pos: 61.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19570 - type: CableApcExtension - components: - - pos: 62.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19571 - type: CableApcExtension - components: - - pos: 63.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19572 - type: CableApcExtension - components: - - pos: 63.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19573 - type: CableApcExtension - components: - - pos: 63.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19574 - type: CableApcExtension - components: - - pos: 62.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19575 - type: CableApcExtension - components: - - pos: 61.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19576 - type: CableApcExtension - components: - - pos: 58.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19577 - type: CableApcExtension - components: - - pos: 58.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19578 - type: CableApcExtension - components: - - pos: 57.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19579 - type: CableApcExtension - components: - - pos: 56.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19580 - type: CableApcExtension - components: - - pos: 62.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19581 - type: CableApcExtension - components: - - pos: 60.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19582 - type: CableApcExtension - components: - - pos: 60.5,-70.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19583 - type: CableApcExtension - components: - - pos: 60.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19584 - type: CableApcExtension - components: - - pos: 62.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19585 - type: CableApcExtension - components: - - pos: 62.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19586 - type: CableApcExtension - components: - - pos: 63.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19587 - type: CableApcExtension - components: - - pos: 64.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19588 - type: CableApcExtension - components: - - pos: 65.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19589 - type: CableApcExtension - components: - - pos: 69.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19590 - type: CableApcExtension - components: - - pos: 70.5,-69.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19591 - type: CableApcExtension - components: - - pos: 73.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19592 - type: CableApcExtension - components: - - pos: 74.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19593 - type: CableApcExtension - components: - - pos: 74.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19594 - type: CableApcExtension - components: - - pos: 73.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19595 - type: CableApcExtension - components: - - pos: 75.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19596 - type: CableApcExtension - components: - - pos: 78.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19597 - type: CableApcExtension - components: - - pos: 77.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19598 - type: CableApcExtension - components: - - pos: 76.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19599 - type: CableApcExtension - components: - - pos: 86.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19600 - type: CableApcExtension - components: - - pos: 87.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19601 - type: CableApcExtension - components: - - pos: 88.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19602 - type: CableApcExtension - components: - - pos: 89.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19603 - type: CableApcExtension - components: - - pos: 90.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19604 - type: CableApcExtension - components: - - pos: 91.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19605 - type: CableApcExtension - components: - - pos: 92.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19606 - type: CableApcExtension - components: - - pos: 93.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19607 - type: CableApcExtension - components: - - pos: 91.5,-27.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19608 - type: CableApcExtension - components: - - pos: 93.5,-27.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19609 - type: CableApcExtension - components: - - pos: 91.5,-30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19610 - type: CableApcExtension - components: - - pos: 91.5,-29.5 - parent: 8364 - type: Transform -- uid: 19611 - type: CableApcExtension - components: - - pos: 93.5,-29.5 - parent: 8364 - type: Transform -- uid: 19612 - type: CableApcExtension - components: - - pos: 93.5,-30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19613 - type: CableApcExtension - components: - - pos: 89.5,-27.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19614 - type: CableApcExtension - components: - - pos: 89.5,-26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19615 - type: CableApcExtension - components: - - pos: 89.5,-25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19616 - type: CableApcExtension - components: - - pos: 89.5,-24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19617 - type: CableApcExtension - components: - - pos: 89.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19618 - type: CableApcExtension - components: - - pos: 89.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19619 - type: CableApcExtension - components: - - pos: 88.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19620 - type: CableApcExtension - components: - - pos: 90.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19621 - type: CableApcExtension - components: - - pos: 91.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19622 - type: CableApcExtension - components: - - pos: 92.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19623 - type: CableApcExtension - components: - - pos: 92.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19624 - type: CableApcExtension - components: - - pos: 89.5,-29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19625 - type: CableApcExtension - components: - - pos: 89.5,-30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19626 - type: WallSolid - components: - - pos: 50.5,-61.5 - parent: 8364 - type: Transform -- uid: 19627 - type: CableHV - components: - - pos: 51.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19628 - type: CableHV - components: - - pos: 52.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19629 - type: CableHV - components: - - pos: 53.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19630 - type: CableHV - components: - - pos: 54.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19631 - type: CableHV - components: - - pos: 55.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19632 - type: CableHV - components: - - pos: 56.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19633 - type: CableHV - components: - - pos: 57.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19634 - type: CableHV - components: - - pos: 58.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19635 - type: CableHV - components: - - pos: 59.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19636 - type: CableHV - components: - - pos: 60.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19637 - type: CableHV - components: - - pos: 61.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19638 - type: CableHV - components: - - pos: 62.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19639 - type: CableHV - components: - - pos: 63.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19640 - type: CableHV - components: - - pos: 64.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19641 - type: CableHV - components: - - pos: 65.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19642 - type: CableHV - components: - - pos: 65.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19643 - type: CableHV - components: - - pos: 66.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19644 - type: CableHV - components: - - pos: 67.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19645 - type: CableHV - components: - - pos: 68.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19646 - type: CableHV - components: - - pos: 69.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19647 - type: CableHV - components: - - pos: 70.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19648 - type: CableHV - components: - - pos: 71.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19649 - type: CableHV - components: - - pos: 72.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19650 - type: CableHV - components: - - pos: 73.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19651 - type: CableHV - components: - - pos: 74.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19652 - type: CableHV - components: - - pos: 75.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19653 - type: CableHV - components: - - pos: 76.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19654 - type: CableHV - components: - - pos: 77.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19655 - type: CableHV - components: - - pos: 78.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19656 - type: CableHV - components: - - pos: 79.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19657 - type: CableHV - components: - - pos: 80.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19658 - type: CableHV - components: - - pos: 81.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19659 - type: CableHV - components: - - pos: 82.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19660 - type: CableHV - components: - - pos: 82.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19661 - type: CableHV - components: - - pos: 82.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19662 - type: CableHV - components: - - pos: 82.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19663 - type: CableHV - components: - - pos: 82.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19664 - type: CableHV - components: - - pos: 82.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19665 - type: CableHV - components: - - pos: 82.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19666 - type: CableHV - components: - - pos: 82.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19667 - type: CableHV - components: - - pos: 82.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19668 - type: CableHV - components: - - pos: 82.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19669 - type: CableHV - components: - - pos: 82.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19670 - type: CableHV - components: - - pos: 82.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19671 - type: CableHV - components: - - pos: 82.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19672 - type: CableHV - components: - - pos: 82.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19673 - type: CableHV - components: - - pos: 82.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19674 - type: CableHV - components: - - pos: 82.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19675 - type: CableHV - components: - - pos: 83.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19676 - type: CableHV - components: - - pos: 84.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19677 - type: CableHV - components: - - pos: 85.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19678 - type: CableHV - components: - - pos: 85.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19679 - type: CableMV - components: - - pos: 85.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19680 - type: CableMV - components: - - pos: 85.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19681 - type: CableMV - components: - - pos: 84.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19682 - type: CableMV - components: - - pos: 83.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19683 - type: CableMV - components: - - pos: 82.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19684 - type: CableMV - components: - - pos: 84.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19685 - type: CableMV - components: - - pos: 82.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19686 - type: CableMV - components: - - pos: 82.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19687 - type: CableMV - components: - - pos: 82.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19688 - type: CableMV - components: - - pos: 82.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19689 - type: CableMV - components: - - pos: 82.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19690 - type: CableMV - components: - - pos: 81.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19691 - type: CableMV - components: - - pos: 81.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19692 - type: CableMV - components: - - pos: 81.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19693 - type: CableMV - components: - - pos: 81.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19694 - type: CableMV - components: - - pos: 81.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19695 - type: CableMV - components: - - pos: 80.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19696 - type: CableMV - components: - - pos: 79.5,-36.5 - parent: 8364 - type: Transform -- uid: 19697 - type: CableMV - components: - - pos: 78.5,-36.5 - parent: 8364 - type: Transform -- uid: 19698 - type: CableMV - components: - - pos: 77.5,-36.5 - parent: 8364 - type: Transform -- uid: 19699 - type: CableMV - components: - - pos: 83.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19700 - type: CableMV - components: - - pos: 84.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19701 - type: CableMV - components: - - pos: 85.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19702 - type: CableMV - components: - - pos: 85.5,-24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19703 - type: CableMV - components: - - pos: 85.5,-25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19704 - type: CableMV - components: - - pos: 85.5,-26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19705 - type: CableMV - components: - - pos: 85.5,-27.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19706 - type: CableMV - components: - - pos: 85.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19707 - type: CableMV - components: - - pos: 85.5,-29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19708 - type: CableMV - components: - - pos: 85.5,-30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19709 - type: CableMV - components: - - pos: 85.5,-31.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19710 - type: CableMV - components: - - pos: 85.5,-32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19711 - type: CableMV - components: - - pos: 84.5,-32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19712 - type: CableMV - components: - - pos: 84.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19713 - type: CableMV - components: - - pos: 83.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19714 - type: CableMV - components: - - pos: 82.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19715 - type: CableMV - components: - - pos: 81.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19716 - type: CableMV - components: - - pos: 81.5,-34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19717 - type: CableMV - components: - - pos: 81.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19718 - type: CableMV - components: - - pos: 82.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19719 - type: CableMV - components: - - pos: 82.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19720 - type: CableMV - components: - - pos: 82.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19721 - type: CableMV - components: - - pos: 82.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19722 - type: CableMV - components: - - pos: 82.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19723 - type: CableMV - components: - - pos: 82.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19724 - type: CableMV - components: - - pos: 82.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19725 - type: CableMV - components: - - pos: 82.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19726 - type: CableMV - components: - - pos: 82.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19727 - type: CableMV - components: - - pos: 82.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19728 - type: CableMV - components: - - pos: 82.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19729 - type: CableMV - components: - - pos: 82.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19730 - type: CableMV - components: - - pos: 82.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19731 - type: CableMV - components: - - pos: 82.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19732 - type: CableMV - components: - - pos: 82.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19733 - type: CableMV - components: - - pos: 81.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19734 - type: CableMV - components: - - pos: 80.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19735 - type: CableMV - components: - - pos: 79.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19736 - type: CableMV - components: - - pos: 78.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19737 - type: CableMV - components: - - pos: 77.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19738 - type: CableMV - components: - - pos: 76.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19739 - type: CableMV - components: - - pos: 75.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19740 - type: CableMV - components: - - pos: 74.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19741 - type: CableMV - components: - - pos: 73.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19742 - type: CableMV - components: - - pos: 72.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19743 - type: CableMV - components: - - pos: 71.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19744 - type: CableMV - components: - - pos: 70.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19745 - type: CableMV - components: - - pos: 69.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19746 - type: CableMV - components: - - pos: 68.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19747 - type: CableMV - components: - - pos: 67.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19748 - type: CableMV - components: - - pos: 66.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19749 - type: CableMV - components: - - pos: 65.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19750 - type: CableMV - components: - - pos: 65.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19751 - type: CableMV - components: - - pos: 65.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19752 - type: CableMV - components: - - pos: 65.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19753 - type: CableMV - components: - - pos: 65.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19754 - type: CableMV - components: - - pos: 66.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19755 - type: CableMV - components: - - pos: 66.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19756 - type: CableMV - components: - - pos: 66.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19757 - type: CableMV - components: - - pos: 66.5,-53.5 - parent: 8364 - type: Transform -- uid: 19758 - type: CableMV - components: - - pos: 66.5,-52.5 - parent: 8364 - type: Transform -- uid: 19759 - type: CableMV - components: - - pos: 85.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19760 - type: CableMV - components: - - pos: 85.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19761 - type: CableMV - components: - - pos: 84.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19762 - type: CableMV - components: - - pos: 83.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19763 - type: CableMV - components: - - pos: 82.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19764 - type: CableMV - components: - - pos: 81.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19765 - type: CableMV - components: - - pos: 80.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19766 - type: CableMV - components: - - pos: 79.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19767 - type: CableMV - components: - - pos: 78.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19768 - type: CableMV - components: - - pos: 77.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19769 - type: CableMV - components: - - pos: 76.5,-21.5 - parent: 8364 - type: Transform -- uid: 19770 - type: CableMV - components: - - pos: 75.5,-21.5 - parent: 8364 - type: Transform -- uid: 19771 - type: CableMV - components: - - pos: 74.5,-21.5 - parent: 8364 - type: Transform -- uid: 19772 - type: WallReinforced - components: - - pos: 82.5,-19.5 - parent: 8364 - type: Transform -- uid: 19773 - type: CableHV - components: - - pos: -45.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19774 - type: CableHV - components: - - pos: -45.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19775 - type: SolarPanel - components: - - pos: 78.5,-77.5 - parent: 8364 - type: Transform -- uid: 19776 - type: SolarPanel - components: - - pos: 77.5,-79.5 - parent: 8364 - type: Transform -- uid: 19777 - type: SolarPanel - components: - - pos: 75.5,-73.5 - parent: 8364 - type: Transform -- uid: 19778 - type: SolarPanel - components: - - pos: 78.5,-75.5 - parent: 8364 - type: Transform -- uid: 19779 - type: SolarPanel - components: - - pos: 79.5,-81.5 - parent: 8364 - type: Transform -- uid: 19780 - type: SolarPanel - components: - - pos: 79.5,-83.5 - parent: 8364 - type: Transform -- uid: 19781 - type: SolarPanel - components: - - pos: 84.5,-83.5 - parent: 8364 - type: Transform -- uid: 19782 - type: SolarPanel - components: - - pos: 77.5,-83.5 - parent: 8364 - type: Transform -- uid: 19783 - type: SolarPanel - components: - - pos: 76.5,-81.5 - parent: 8364 - type: Transform -- uid: 19784 - type: SolarPanel - components: - - pos: 76.5,-77.5 - parent: 8364 - type: Transform -- uid: 19785 - type: SolarPanel - components: - - pos: 75.5,-83.5 - parent: 8364 - type: Transform -- uid: 19786 - type: SolarPanel - components: - - pos: 87.5,-77.5 - parent: 8364 - type: Transform -- uid: 19787 - type: SolarPanel - components: - - pos: 84.5,-75.5 - parent: 8364 - type: Transform -- uid: 19788 - type: SolarPanel - components: - - pos: 83.5,-77.5 - parent: 8364 - type: Transform -- uid: 19789 - type: SolarPanel - components: - - pos: 86.5,-79.5 - parent: 8364 - type: Transform -- uid: 19790 - type: SolarPanel - components: - - pos: 85.5,-73.5 - parent: 8364 - type: Transform -- uid: 19791 - type: SolarPanel - components: - - pos: 87.5,-81.5 - parent: 8364 - type: Transform -- uid: 19792 - type: SolarPanel - components: - - pos: 86.5,-83.5 - parent: 8364 - type: Transform -- uid: 19793 - type: SolarPanel - components: - - pos: 83.5,-81.5 - parent: 8364 - type: Transform -- uid: 19794 - type: SolarPanel - components: - - pos: 84.5,-79.5 - parent: 8364 - type: Transform -- uid: 19795 - type: CableHV - components: - - pos: 80.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19796 - type: CableHV - components: - - pos: 80.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19797 - type: CableHV - components: - - pos: 80.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19798 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 81.5,-65.5 - parent: 8364 - type: Transform -- uid: 19799 - type: CableHV - components: - - pos: 77.5,-81.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19800 - type: CableHV - components: - - pos: 78.5,-81.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19801 - type: CableHV - components: - - pos: 79.5,-81.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19802 - type: CableHV - components: - - pos: 77.5,-83.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19803 - type: CableHV - components: - - pos: 79.5,-83.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19804 - type: CableHV - components: - - pos: 78.5,-83.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19805 - type: CableHV - components: - - pos: 76.5,-81.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19806 - type: CableHV - components: - - pos: 75.5,-81.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19807 - type: CableHV - components: - - pos: 75.5,-79.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19808 - type: CableHV - components: - - pos: 76.5,-79.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19809 - type: CableHV - components: - - pos: 79.5,-79.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19810 - type: CableHV - components: - - pos: 79.5,-77.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19811 - type: CableHV - components: - - pos: 78.5,-77.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19812 - type: CableHV - components: - - pos: 77.5,-77.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19813 - type: CableHV - components: - - pos: 78.5,-79.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19814 - type: CableHV - components: - - pos: 77.5,-79.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19815 - type: CableHV - components: - - pos: 79.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19816 - type: CableHV - components: - - pos: 76.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19817 - type: CableHV - components: - - pos: 75.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19818 - type: CableHV - components: - - pos: 75.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19819 - type: CableHV - components: - - pos: 76.5,-77.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19820 - type: CableHV - components: - - pos: 75.5,-77.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19821 - type: CableHV - components: - - pos: 76.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19822 - type: CableHV - components: - - pos: 79.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19823 - type: CableHV - components: - - pos: 78.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19824 - type: CableHV - components: - - pos: 77.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19825 - type: CableHV - components: - - pos: 77.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19826 - type: CableHV - components: - - pos: 78.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19827 - type: CableHV - components: - - pos: -50.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19828 - type: CableHV - components: - - pos: -50.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19829 - type: CableHV - components: - - pos: -50.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19830 - type: CableHV - components: - - pos: -50.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19831 - type: CableHV - components: - - pos: -50.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19832 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 71.5,-53.5 - parent: 8364 - type: Transform -- uid: 19833 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-20.5 - parent: 8364 - type: Transform -- uid: 19834 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 78.5,-26.5 - parent: 8364 - type: Transform -- uid: 19835 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-30.5 - parent: 8364 - type: Transform -- uid: 19836 - type: APCHighCapacity - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-36.5 - parent: 8364 - type: Transform -- uid: 19837 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 69.5,-38.5 - parent: 8364 - type: Transform -- uid: 19838 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 55.5,-32.5 - parent: 8364 - type: Transform -- uid: 19839 - type: Grille - components: - - pos: 43.5,-34.5 - parent: 8364 - type: Transform -- uid: 19840 - type: Grille - components: - - pos: 43.5,-33.5 - parent: 8364 - type: Transform -- uid: 19841 - type: Grille - components: - - pos: 43.5,-32.5 - parent: 8364 - type: Transform -- uid: 19842 - type: AirlockMaintLocked - components: - - pos: 49.5,-38.5 - parent: 8364 - type: Transform -- uid: 19843 - type: Catwalk - components: - - pos: 49.5,-39.5 - parent: 8364 - type: Transform -- uid: 19844 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-33.5 - parent: 8364 - type: Transform -- uid: 19845 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-32.5 - parent: 8364 - type: Transform -- uid: 19846 - type: Bed - components: - - pos: 26.5,-35.5 - parent: 8364 - type: Transform -- uid: 19847 - type: AirlockMedicalScienceGlassLocked - components: - - pos: 53.5,-25.5 - parent: 8364 - type: Transform -- uid: 19848 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-22.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19849 - type: CableMV - components: - - pos: -8.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19850 - type: CableHV - components: - - pos: -6.5,-56.5 - parent: 8364 - type: Transform -- uid: 19851 - type: CableHV - components: - - pos: -6.5,-55.5 - parent: 8364 - type: Transform -- uid: 19852 - type: CableHV - components: - - pos: -6.5,-54.5 - parent: 8364 - type: Transform -- uid: 19853 - type: CableMV - components: - - pos: -7.5,-54.5 - parent: 8364 - type: Transform -- uid: 19854 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-22.5 - parent: 8364 - type: Transform -- uid: 19855 - type: CableHV - components: - - pos: -5.5,-56.5 - parent: 8364 - type: Transform -- uid: 19856 - type: SignalButton - components: - - pos: 75.5,-41.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 20182 - - port: Toggle - uid: 20181 - - port: Toggle - uid: 20180 - type: SignalTransmitter -- uid: 19857 - type: AirlockExternalGlassLocked - components: - - pos: 62.5,-71.5 - parent: 8364 - type: Transform -- uid: 19858 - type: WallReinforced - components: - - pos: 87.5,-32.5 - parent: 8364 - type: Transform -- uid: 19859 - type: WallReinforced - components: - - pos: 88.5,-32.5 - parent: 8364 - type: Transform -- uid: 19860 - type: Catwalk - components: - - pos: 49.5,-40.5 - parent: 8364 - type: Transform -- uid: 19861 - type: Catwalk - components: - - pos: 49.5,-41.5 - parent: 8364 - type: Transform -- uid: 19862 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-24.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19863 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-20.5 - parent: 8364 - type: Transform -- uid: 19864 - type: filingCabinetDrawer - components: - - pos: 63.5,-17.5 - parent: 8364 - type: Transform -- uid: 19865 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-17.5 - parent: 8364 - type: Transform -- uid: 19866 - type: CableApcExtension - components: - - pos: 57.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19867 - type: Catwalk - components: - - pos: 49.5,-48.5 - parent: 8364 - type: Transform -- uid: 19868 - type: Catwalk - components: - - pos: 49.5,-47.5 - parent: 8364 - type: Transform -- uid: 19869 - type: Catwalk - components: - - pos: 49.5,-46.5 - parent: 8364 - type: Transform -- uid: 19870 - type: Catwalk - components: - - pos: 49.5,-45.5 - parent: 8364 - type: Transform -- uid: 19871 - type: CableHV - components: - - pos: 50.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19872 - type: Catwalk - components: - - pos: 49.5,-44.5 - parent: 8364 - type: Transform -- uid: 19873 - type: Catwalk - components: - - pos: 49.5,-52.5 - parent: 8364 - type: Transform -- uid: 19874 - type: Catwalk - components: - - pos: 49.5,-51.5 - parent: 8364 - type: Transform -- uid: 19875 - type: Catwalk - components: - - pos: 49.5,-50.5 - parent: 8364 - type: Transform -- uid: 19876 - type: ComputerResearchAndDevelopment - components: - - pos: 6.5,-6.5 - parent: 8364 - type: Transform -- uid: 19877 - type: Catwalk - components: - - pos: 49.5,-42.5 - parent: 8364 - type: Transform -- uid: 19878 - type: DawInstrumentMachineCircuitboard - components: - - pos: -13.553344,-35.450806 - parent: 8364 - type: Transform -- uid: 19879 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-30.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19880 - type: GeneratorUraniumMachineCircuitboard - components: - - pos: -13.537719,-37.43518 - parent: 8364 - type: Transform -- uid: 19881 - type: ComputerId - components: - - pos: 5.5,-6.5 - parent: 8364 - type: Transform -- uid: 19882 - type: PaintingNightHawks - components: - - pos: 8.5,-10.5 - parent: 8364 - type: Transform -- uid: 19883 - type: FirelockGlass - components: - - pos: 78.5,-38.5 - parent: 8364 - type: Transform -- uid: 19884 - type: CarpetOrange - components: - - pos: 63.5,0.5 - parent: 8364 - type: Transform -- uid: 19885 - type: CarpetOrange - components: - - pos: 63.5,1.5 - parent: 8364 - type: Transform -- uid: 19886 - type: CableMV - components: - - pos: -1.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19887 - type: CableMV - components: - - pos: -0.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19888 - type: CableMV - components: - - pos: 0.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19889 - type: CableMV - components: - - pos: 1.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19890 - type: CableMV - components: - - pos: -2.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19891 - type: WallReinforced - components: - - pos: -8.5,38.5 - parent: 8364 - type: Transform -- uid: 19892 - type: CableHV - components: - - pos: -48.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19893 - type: CableApcExtension - components: - - pos: 83.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19894 - type: CableApcExtension - components: - - pos: 84.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19895 - type: CableHV - components: - - pos: -48.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19896 - type: CableHV - components: - - pos: -48.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19897 - type: CableHV - components: - - pos: -48.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19898 - type: CableHV - components: - - pos: -48.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19899 - type: CableHV - components: - - pos: -49.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19900 - type: CableHV - components: - - pos: -49.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19901 - type: CableHV - components: - - pos: -44.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19902 - type: CableHV - components: - - pos: -44.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19903 - type: CableHV - components: - - pos: -44.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19904 - type: CableHV - components: - - pos: -44.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19905 - type: CableHV - components: - - pos: -44.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19906 - type: CableHV - components: - - pos: -46.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19907 - type: CableHV - components: - - pos: -46.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19908 - type: CableHV - components: - - pos: -46.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19909 - type: CableHV - components: - - pos: -46.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19910 - type: CableHV - components: - - pos: -46.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19911 - type: CableHV - components: - - pos: -45.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19912 - type: CableHV - components: - - pos: -45.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19913 - type: CableHV - components: - - pos: -48.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19914 - type: CableHV - components: - - pos: -48.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19915 - type: CableHV - components: - - pos: -48.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19916 - type: CableHV - components: - - pos: -48.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19917 - type: Catwalk - components: - - pos: -9.5,-71.5 - parent: 8364 - type: Transform -- uid: 19918 - type: ReinforcedWindow - components: - - pos: 75.5,5.5 - parent: 8364 - type: Transform -- uid: 19919 - type: WallReinforced - components: - - pos: 87.5,-33.5 - parent: 8364 - type: Transform -- uid: 19920 - type: ComputerCargoShuttle - components: - - pos: -33.5,-18.5 - parent: 8364 - type: Transform -- uid: 19921 - type: AirlockBrigGlassLocked - components: - - pos: 4.5,25.5 - parent: 8364 - type: Transform -- uid: 19922 - type: AirlockBrigGlassLocked - components: - - pos: 4.5,22.5 - parent: 8364 - type: Transform -- uid: 19923 - type: AirlockBrigGlassLocked - components: - - pos: 6.5,22.5 - parent: 8364 - type: Transform -- uid: 19924 - type: AirlockBrigGlassLocked - components: - - pos: 6.5,25.5 - parent: 8364 - type: Transform -- uid: 19925 - type: CableMV - components: - - pos: 8.5,39.5 - parent: 8364 - type: Transform -- uid: 19926 - type: CableMV - components: - - pos: 8.5,40.5 - parent: 8364 - type: Transform -- uid: 19927 - type: CableMV - components: - - pos: 8.5,41.5 - parent: 8364 - type: Transform -- uid: 19928 - type: CableMV - components: - - pos: 8.5,42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19929 - type: AirlockBrigLocked - components: - - pos: 11.5,27.5 - parent: 8364 - type: Transform -- uid: 19930 - type: BlastDoorOpen - components: - - pos: -4.5,33.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19933 - type: SignalReceiver -- uid: 19931 - type: SignalButton - components: - - pos: 0.5,25.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 8783 - - port: Toggle - uid: 8782 - - port: Toggle - uid: 8781 - - port: Toggle - uid: 8780 - - port: Toggle - uid: 8779 - - port: Toggle - uid: 8778 - - port: Toggle - uid: 8777 - - port: Toggle - uid: 8776 - - port: Toggle - uid: 8775 - - port: Toggle - uid: 8615 - - port: Toggle - uid: 8614 - - port: Toggle - uid: 8606 - - port: Toggle - uid: 8607 - type: SignalTransmitter -- uid: 19932 - type: BlastDoorOpen - components: - - pos: -5.5,33.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19933 - type: SignalReceiver -- uid: 19933 - type: SignalButton - components: - - pos: -3.5,33.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 19930 - - port: Toggle - uid: 19932 - type: SignalTransmitter -- uid: 19934 - type: FirelockGlass - components: - - pos: 5.5,37.5 - parent: 8364 - type: Transform -- uid: 19935 - type: TwoWayLever - components: - - pos: 4.5,36.5 - parent: 8364 - type: Transform - - outputs: - Left: - - port: Open - uid: 9182 - Right: - - port: Open - uid: 9182 - Middle: - - port: Close - uid: 9182 - type: SignalTransmitter -- uid: 19936 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19937 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19938 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19939 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19940 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19941 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19942 - type: Catwalk - components: - - pos: -9.5,-72.5 - parent: 8364 - type: Transform -- uid: 19943 - type: WeaponLaserCarbine - components: - - pos: 1.4928343,37.501183 - parent: 8364 - type: Transform -- uid: 19944 - type: WeaponLaserCarbine - components: - - pos: 1.4928343,37.360558 - parent: 8364 - type: Transform -- uid: 19945 - type: WeaponLaserCarbine - components: - - pos: 1.4928343,37.594933 - parent: 8364 - type: Transform -- uid: 19946 - type: hydroponicsSoil - components: - - pos: 4.5,47.5 - parent: 8364 - type: Transform -- uid: 19947 - type: WallReinforced - components: - - pos: -24.5,52.5 - parent: 8364 - type: Transform -- uid: 19948 - type: WallReinforced - components: - - pos: -7.5,41.5 - parent: 8364 - type: Transform -- uid: 19949 - type: WallReinforced - components: - - pos: -6.5,42.5 - parent: 8364 - type: Transform -- uid: 19950 - type: Catwalk - components: - - pos: -9.5,-73.5 - parent: 8364 - type: Transform -- uid: 19951 - type: Catwalk - components: - - pos: -9.5,-74.5 - parent: 8364 - type: Transform -- uid: 19952 - type: Catwalk - components: - - pos: -9.5,-75.5 - parent: 8364 - type: Transform -- uid: 19953 - type: Catwalk - components: - - pos: -9.5,-76.5 - parent: 8364 - type: Transform -- uid: 19954 - type: Catwalk - components: - - pos: -10.5,-76.5 - parent: 8364 - type: Transform -- uid: 19955 - type: Catwalk - components: - - pos: -7.5,-70.5 - parent: 8364 - type: Transform -- uid: 19956 - type: Catwalk - components: - - pos: -6.5,-70.5 - parent: 8364 - type: Transform -- uid: 19957 - type: Catwalk - components: - - pos: -6.5,-71.5 - parent: 8364 - type: Transform -- uid: 19958 - type: Catwalk - components: - - pos: -6.5,-72.5 - parent: 8364 - type: Transform -- uid: 19959 - type: Catwalk - components: - - pos: -6.5,-74.5 - parent: 8364 - type: Transform -- uid: 19960 - type: PoweredSmallLight - components: - - pos: 85.5,-44.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19961 - type: PoweredSmallLight - components: - - pos: 85.5,-47.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19962 - type: CableHV - components: - - pos: -3.5,-6.5 - parent: 8364 - type: Transform -- uid: 19963 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 86.5,-56.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19964 - type: CableHV - components: - - pos: -6.5,-6.5 - parent: 8364 - type: Transform -- uid: 19965 - type: CableApcExtension - components: - - pos: 79.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19966 - type: CableApcExtension - components: - - pos: 79.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19967 - type: CableApcExtension - components: - - pos: 79.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19968 - type: Catwalk - components: - - pos: 6.5,-70.5 - parent: 8364 - type: Transform -- uid: 19969 - type: Catwalk - components: - - pos: 5.5,-70.5 - parent: 8364 - type: Transform -- uid: 19970 - type: CableApcExtension - components: - - pos: -38.5,-29.5 - parent: 8364 - type: Transform -- uid: 19971 - type: WallSolid - components: - - pos: 15.5,-33.5 - parent: 8364 - type: Transform -- uid: 19972 - type: FirelockGlass - components: - - pos: 21.5,-23.5 - parent: 8364 - type: Transform -- uid: 19973 - type: CableApcExtension - components: - - pos: 78.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19974 - type: CableApcExtension - components: - - pos: 77.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19975 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-64.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19976 - type: AcousticGuitarInstrument - components: - - pos: -58.55762,-61.482254 - parent: 8364 - type: Transform -- uid: 19977 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 69.5,-66.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19978 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-65.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19979 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-71.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19980 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-68.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19981 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-56.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19982 - type: PoweredSmallLight - components: - - pos: 65.5,-55.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19983 - type: WallReinforced - components: - - pos: -7.5,42.5 - parent: 8364 - type: Transform -- uid: 19984 - type: AirlockEngineeringLocked - components: - - name: Starboard Quarter Solars - type: MetaData - - pos: 81.5,-62.5 - parent: 8364 - type: Transform -- uid: 19985 - type: AirlockExternalLocked - components: - - pos: 81.5,-66.5 - parent: 8364 - type: Transform -- uid: 19986 - type: AirlockExternalLocked - components: - - pos: 81.5,-68.5 - parent: 8364 - type: Transform -- uid: 19987 - type: AirlockExternalLocked - components: - - pos: 61.5,-72.5 - parent: 8364 - type: Transform -- uid: 19988 - type: AirlockExternalGlassLocked - components: - - pos: 87.5,-57.5 - parent: 8364 - type: Transform -- uid: 19989 - type: AirlockExternalLocked - components: - - pos: 89.5,-57.5 - parent: 8364 - type: Transform -- uid: 19990 - type: ToolboxEmergencyFilled - components: - - pos: 43.489185,-72.69064 - parent: 8364 - type: Transform -- uid: 19994 - type: BlastDoor - components: - - pos: 93.5,-25.5 - parent: 8364 - type: Transform -- uid: 19995 - type: BlastDoor - components: - - pos: 91.5,-25.5 - parent: 8364 - type: Transform -- uid: 19996 - type: PoweredSmallLight - components: - - pos: 85.5,-40.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19997 - type: WallReinforced - components: - - pos: -4.5,42.5 - parent: 8364 - type: Transform -- uid: 19998 - type: PoweredSmallLight - components: - - pos: 80.5,-35.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19999 - type: CableHV - components: - - pos: -4.5,-6.5 - parent: 8364 - type: Transform -- uid: 20000 - type: CableHV - components: - - pos: -5.5,-6.5 - parent: 8364 - type: Transform -- uid: 20001 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 88.5,-26.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20002 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 92.5,-29.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20003 - type: ReinforcedWindow - components: - - pos: -5.5,-19.5 - parent: 8364 - type: Transform -- uid: 20004 - type: PoweredSmallLight - components: - - pos: 79.5,-19.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20005 - type: AirlockMaintLocked - components: - - pos: 76.5,-16.5 - parent: 8364 - type: Transform -- uid: 20006 - type: Catwalk - components: - - pos: 5.5,-71.5 - parent: 8364 - type: Transform -- uid: 20007 - type: AirlockMaintLocked - components: - - name: Ghetto Port - type: MetaData - - pos: 87.5,-23.5 - parent: 8364 - type: Transform -- uid: 20008 - type: AirlockMaintLocked - components: - - name: Ghetto Port - type: MetaData - - pos: 87.5,-28.5 - parent: 8364 - type: Transform -- uid: 20009 - type: AirlockMaintLocked - components: - - pos: 81.5,-34.5 - parent: 8364 - type: Transform -- uid: 20010 - type: AirlockMaintLocked - components: - - pos: 81.5,-38.5 - parent: 8364 - type: Transform -- uid: 20011 - type: AirlockMaint - components: - - pos: 50.5,-62.5 - parent: 8364 - type: Transform -- uid: 20012 - type: CableHV - components: - - pos: 51.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20013 - type: AirlockMaintLocked - components: - - pos: 12.5,-32.5 - parent: 8364 - type: Transform -- uid: 20014 - type: CableApcExtension - components: - - pos: -39.5,-30.5 - parent: 8364 - type: Transform -- uid: 20015 - type: CrateGenericSteel - components: - - pos: 90.5,-31.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 20016 - type: CrateGenericSteel - components: - - pos: 89.5,-31.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 20017 - type: ClosetBase - components: - - pos: 88.5,-31.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20018 - type: ClosetMaintenanceFilledRandom - components: - - pos: 48.5,-21.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20019 - type: ClosetEmergencyFilledRandom - components: - - pos: 50.5,-31.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20020 - type: ClosetMaintenanceFilledRandom - components: - - pos: 41.5,-62.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20021 - type: ClosetMaintenanceFilledRandom - components: - - pos: 32.5,-60.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20022 - type: ClosetFireFilled - components: - - pos: 50.5,-30.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20023 - type: ClosetFireFilled - components: - - pos: 70.5,-64.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20024 - type: ClosetFireFilled - components: - - pos: 86.5,-50.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20025 - type: ClosetFireFilled - components: - - pos: 86.5,-32.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20026 - type: ClosetEmergencyFilledRandom - components: - - pos: 86.5,-31.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20027 - type: TwoWayLever - components: - - pos: -41.5,-26.5 - parent: 8364 - type: Transform - - outputs: - Left: - - port: Forward - uid: 11321 - - port: Forward - uid: 17202 - - port: Forward - uid: 8017 - - port: Forward - uid: 3062 - Right: - - port: Reverse - uid: 11321 - - port: Reverse - uid: 17202 - - port: Reverse - uid: 8017 - - port: Reverse - uid: 3062 - Middle: - - port: Off - uid: 11321 - - port: Off - uid: 17202 - - port: Off - uid: 8017 - - port: Off - uid: 3062 - type: SignalTransmitter -- uid: 20028 - type: ClosetEmergencyFilledRandom - components: - - pos: 91.5,-23.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20029 - type: ClosetEmergencyFilledRandom - components: - - pos: 86.5,-51.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20030 - type: ClosetEmergencyFilledRandom - components: - - pos: 86.5,-59.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20031 - type: ClosetEmergencyFilledRandom - components: - - pos: 80.5,-61.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20032 - type: ClosetEmergencyFilledRandom - components: - - pos: 63.5,-70.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20033 - type: ClosetEmergencyFilledRandom - components: - - pos: 69.5,-64.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20034 - type: ClosetMaintenanceFilledRandom - components: - - pos: 82.5,-61.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20035 - type: ClosetMaintenanceFilledRandom - components: - - pos: 84.5,-59.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20036 - type: ClosetMaintenanceFilledRandom - components: - - pos: 68.5,-57.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20037 - type: ClosetMaintenanceFilledRandom - components: - - pos: 84.5,-22.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 20038 - type: Barricade - components: - - pos: 87.5,-23.5 - parent: 8364 - type: Transform -- uid: 20039 - type: Barricade - components: - - pos: 87.5,-28.5 - parent: 8364 - type: Transform -- uid: 20040 - type: ConveyorBeltAssembly - components: - - pos: 89.5,-23.5 - parent: 8364 - type: Transform -- uid: 20041 - type: ConveyorBeltAssembly - components: - - pos: 90.5,-23.5 - parent: 8364 - type: Transform -- uid: 20042 - type: ConveyorBeltAssembly - components: - - pos: 90.5,-24.5 - parent: 8364 - type: Transform -- uid: 20043 - type: ConveyorBeltAssembly - components: - - pos: 90.5,-25.5 - parent: 8364 - type: Transform -- uid: 20044 - type: ConveyorBeltAssembly - components: - - pos: 90.5,-30.5 - parent: 8364 - type: Transform -- uid: 20045 - type: ConveyorBeltAssembly - components: - - pos: 90.5,-29.5 - parent: 8364 - type: Transform -- uid: 20046 - type: ConveyorBeltAssembly - components: - - pos: 90.5,-28.5 - parent: 8364 - type: Transform -- uid: 20047 - type: ConveyorBeltAssembly - components: - - pos: 90.5,-27.5 - parent: 8364 - type: Transform -- uid: 20048 - type: ConveyorBelt - components: - - pos: 90.5,-26.5 - parent: 8364 - type: Transform -- uid: 20049 - type: TwoWayLever - components: - - pos: 88.5,-25.5 - parent: 8364 - type: Transform -- uid: 20050 - type: Multitool - components: - - pos: 88.5,-27.5 - parent: 8364 - type: Transform -- uid: 20051 - type: Rack - components: - - pos: 88.5,-27.5 - parent: 8364 - type: Transform -- uid: 20052 - type: CableApcExtension - components: - - pos: -42.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20053 - type: Window - components: - - pos: 13.5,-36.5 - parent: 8364 - type: Transform -- uid: 20054 - type: Catwalk - components: - - pos: 5.5,-72.5 - parent: 8364 - type: Transform -- uid: 20055 - type: Catwalk - components: - - pos: 5.5,-74.5 - parent: 8364 - type: Transform -- uid: 20056 - type: PowerCellPotato - components: - - pos: -18.541685,16.576048 - parent: 8364 - type: Transform -- uid: 20057 - type: WallSolidRust - components: - - pos: 49.5,12.5 - parent: 8364 - type: Transform -- uid: 20058 - type: Window - components: - - pos: 37.5,-28.5 - parent: 8364 - type: Transform -- uid: 20059 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: 1.5,2.5 - parent: 8364 - type: Transform -- uid: 20060 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-26.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20061 - type: PosterLegitNanotrasenLogo - components: - - pos: 5.5,-3.5 - parent: 8364 - type: Transform -- uid: 20062 - type: PosterLegitNanotrasenLogo - components: - - pos: -6.5,-3.5 - parent: 8364 - type: Transform -- uid: 20063 - type: CableApcExtension - components: - - pos: -38.5,-30.5 - parent: 8364 - type: Transform -- uid: 20064 - type: CableApcExtension - components: - - pos: -41.5,-27.5 - parent: 8364 - type: Transform -- uid: 20065 - type: Catwalk - components: - - pos: 1.5,-70.5 - parent: 8364 - type: Transform -- uid: 20066 - type: Catwalk - components: - - pos: 1.5,-69.5 - parent: 8364 - type: Transform -- uid: 20067 - type: Catwalk - components: - - pos: 1.5,-72.5 - parent: 8364 - type: Transform -- uid: 20068 - type: Catwalk - components: - - pos: 1.5,-71.5 - parent: 8364 - type: Transform -- uid: 20069 - type: Catwalk - components: - - pos: -2.5,-70.5 - parent: 8364 - type: Transform -- uid: 20070 - type: Catwalk - components: - - pos: -2.5,-69.5 - parent: 8364 - type: Transform -- uid: 20071 - type: ComputerSolarControl - components: - - rot: -1.5707963267948966 rad - pos: 82.5,-64.5 - parent: 8364 - type: Transform -- uid: 20072 - type: SolarPanel - components: - - pos: 76.5,-73.5 - parent: 8364 - type: Transform -- uid: 20073 - type: SolarPanel - components: - - pos: 77.5,-73.5 - parent: 8364 - type: Transform -- uid: 20074 - type: SolarPanel - components: - - pos: 78.5,-73.5 - parent: 8364 - type: Transform -- uid: 20075 - type: SolarPanel - components: - - pos: 79.5,-73.5 - parent: 8364 - type: Transform -- uid: 20076 - type: SolarPanel - components: - - pos: 79.5,-75.5 - parent: 8364 - type: Transform -- uid: 20077 - type: SolarPanel - components: - - pos: 77.5,-75.5 - parent: 8364 - type: Transform -- uid: 20078 - type: SolarPanel - components: - - pos: 76.5,-75.5 - parent: 8364 - type: Transform -- uid: 20079 - type: SolarPanel - components: - - pos: 75.5,-75.5 - parent: 8364 - type: Transform - - supplyRate: 1297 - type: PowerSupplier -- uid: 20080 - type: SolarPanel - components: - - pos: 83.5,-73.5 - parent: 8364 - type: Transform -- uid: 20081 - type: SolarPanel - components: - - pos: 84.5,-73.5 - parent: 8364 - type: Transform -- uid: 20082 - type: SolarPanel - components: - - pos: 86.5,-73.5 - parent: 8364 - type: Transform -- uid: 20083 - type: SolarPanel - components: - - pos: 87.5,-73.5 - parent: 8364 - type: Transform -- uid: 20084 - type: SolarPanel - components: - - pos: 87.5,-75.5 - parent: 8364 - type: Transform -- uid: 20085 - type: SolarPanel - components: - - pos: 86.5,-75.5 - parent: 8364 - type: Transform -- uid: 20086 - type: SolarPanel - components: - - pos: 85.5,-75.5 - parent: 8364 - type: Transform -- uid: 20087 - type: SolarPanel - components: - - pos: 83.5,-75.5 - parent: 8364 - type: Transform -- uid: 20088 - type: SolarPanel - components: - - pos: 75.5,-77.5 - parent: 8364 - type: Transform - - supplyRate: 1297 - type: PowerSupplier -- uid: 20089 - type: SolarPanel - components: - - pos: 77.5,-77.5 - parent: 8364 - type: Transform -- uid: 20090 - type: SolarPanel - components: - - pos: 79.5,-77.5 - parent: 8364 - type: Transform -- uid: 20091 - type: SolarPanel - components: - - pos: 79.5,-79.5 - parent: 8364 - type: Transform -- uid: 20092 - type: SolarPanel - components: - - pos: 78.5,-79.5 - parent: 8364 - type: Transform -- uid: 20093 - type: SolarPanel - components: - - pos: 76.5,-79.5 - parent: 8364 - type: Transform -- uid: 20094 - type: SolarPanel - components: - - pos: 75.5,-79.5 - parent: 8364 - type: Transform - - supplyRate: 1297 - type: PowerSupplier -- uid: 20095 - type: SolarPanel - components: - - pos: 75.5,-81.5 - parent: 8364 - type: Transform - - supplyRate: 1297 - type: PowerSupplier -- uid: 20096 - type: SolarPanel - components: - - pos: 78.5,-81.5 - parent: 8364 - type: Transform - - supplyRate: 1297 - type: PowerSupplier -- uid: 20097 - type: SolarPanel - components: - - pos: 77.5,-81.5 - parent: 8364 - type: Transform -- uid: 20098 - type: SolarPanel - components: - - pos: 76.5,-83.5 - parent: 8364 - type: Transform - - supplyRate: 1297 - type: PowerSupplier -- uid: 20099 - type: SolarPanel - components: - - pos: 78.5,-83.5 - parent: 8364 - type: Transform - - supplyRate: 1297 - type: PowerSupplier -- uid: 20100 - type: SolarPanel - components: - - pos: 83.5,-83.5 - parent: 8364 - type: Transform -- uid: 20101 - type: SolarPanel - components: - - pos: 85.5,-83.5 - parent: 8364 - type: Transform - - supplyRate: 1297 - type: PowerSupplier -- uid: 20102 - type: SolarPanel - components: - - pos: 87.5,-83.5 - parent: 8364 - type: Transform - - supplyRate: 1297 - type: PowerSupplier -- uid: 20103 - type: SolarPanel - components: - - pos: 86.5,-81.5 - parent: 8364 - type: Transform -- uid: 20104 - type: SolarPanel - components: - - pos: 85.5,-81.5 - parent: 8364 - type: Transform - - supplyRate: 1297 - type: PowerSupplier -- uid: 20105 - type: SolarPanel - components: - - pos: 84.5,-81.5 - parent: 8364 - type: Transform -- uid: 20106 - type: SolarPanel - components: - - pos: 83.5,-79.5 - parent: 8364 - type: Transform - - supplyRate: 1297 - type: PowerSupplier -- uid: 20107 - type: SolarPanel - components: - - pos: 85.5,-79.5 - parent: 8364 - type: Transform -- uid: 20108 - type: SolarPanel - components: - - pos: 87.5,-79.5 - parent: 8364 - type: Transform -- uid: 20109 - type: SolarPanel - components: - - pos: 86.5,-77.5 - parent: 8364 - type: Transform -- uid: 20110 - type: SolarPanel - components: - - pos: 85.5,-77.5 - parent: 8364 - type: Transform - - supplyRate: 1297 - type: PowerSupplier -- uid: 20111 - type: SolarPanel - components: - - pos: 84.5,-77.5 - parent: 8364 - type: Transform -- uid: 20112 - type: SolarTracker - components: - - pos: 81.5,-86.5 - parent: 8364 - type: Transform -- uid: 20113 - type: SolarTracker - components: - - pos: -57.5,-61.5 - parent: 8364 - type: Transform -- uid: 20114 - type: AirlockMaintRnDLocked - components: - - name: Artifact Room Maintenance - type: MetaData - - pos: 83.5,-23.5 - parent: 8364 - type: Transform -- uid: 20115 - type: AirlockMaintRnDLocked - components: - - name: Atmos Sci Test Hall - type: MetaData - - pos: 50.5,-40.5 - parent: 8364 - type: Transform -- uid: 20116 - type: AirlockMaintRnDLocked - components: - - name: Testing Lab Maintenance - type: MetaData - - pos: 66.5,-54.5 - parent: 8364 - type: Transform -- uid: 20117 - type: AirlockMaintRnDLocked - components: - - name: Mech Bay Maintenance - type: MetaData - - pos: 50.5,-16.5 - parent: 8364 - type: Transform -- uid: 20118 - type: FireExtinguisher - components: - - pos: 76.5,-57.5 - parent: 8364 - type: Transform -- uid: 20119 - type: Rack - components: - - pos: 76.5,-57.5 - parent: 8364 - type: Transform -- uid: 20120 - type: ClothingOuterSuitFire - components: - - pos: 76.5,-57.5 - parent: 8364 - type: Transform -- uid: 20121 - type: OxygenTankFilled - components: - - pos: 76.5,-57.5 - parent: 8364 - type: Transform -- uid: 20122 - type: ClothingMaskBreath - components: - - pos: 76.5,-57.5 - parent: 8364 - type: Transform -- uid: 20123 - type: Rack - components: - - pos: 82.5,-63.5 - parent: 8364 - type: Transform -- uid: 20124 - type: Catwalk - components: - - pos: -1.5,-69.5 - parent: 8364 - type: Transform -- uid: 20125 - type: Catwalk - components: - - pos: -0.5,-69.5 - parent: 8364 - type: Transform -- uid: 20126 - type: Catwalk - components: - - pos: 0.5,-69.5 - parent: 8364 - type: Transform -- uid: 20127 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20128 - type: CableHV - components: - - pos: 81.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20129 - type: CableHV - components: - - pos: 81.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20130 - type: CableHV - components: - - pos: 81.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20131 - type: CableHV - components: - - pos: 81.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20132 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20133 - type: Catwalk - components: - - pos: -2.5,-72.5 - parent: 8364 - type: Transform -- uid: 20134 - type: Catwalk - components: - - pos: -3.5,-73.5 - parent: 8364 - type: Transform -- uid: 20135 - type: Catwalk - components: - - pos: -4.5,-73.5 - parent: 8364 - type: Transform -- uid: 20136 - type: Catwalk - components: - - pos: -6.5,-73.5 - parent: 8364 - type: Transform -- uid: 20137 - type: Catwalk - components: - - pos: 2.5,-73.5 - parent: 8364 - type: Transform -- uid: 20138 - type: Catwalk - components: - - pos: 3.5,-73.5 - parent: 8364 - type: Transform -- uid: 20139 - type: Catwalk - components: - - pos: 17.5,-72.5 - parent: 8364 - type: Transform -- uid: 20140 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 38.5,-0.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20141 - type: GasThermoMachineFreezer - components: - - pos: 38.5,0.5 - parent: 8364 - type: Transform -- uid: 20142 - type: CrateMedicalSurgery - components: - - pos: 22.5,-36.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 20143 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 13.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20144 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 14.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20145 - type: GasPipeFourway - components: - - pos: 15.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20146 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-43.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20147 - type: GasThermoMachineHeater - components: - - pos: 9.5,-42.5 - parent: 8364 - type: Transform -- uid: 20148 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 11.5,-42.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20149 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 9.5,-44.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20150 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-41.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20151 - type: GasPort - components: - - pos: 10.5,-40.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20152 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-41.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20153 - type: GasPipeStraight - components: - - pos: 8.5,-64.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20154 - type: CableHV - components: - - pos: -13.5,-70.5 - parent: 8364 - type: Transform -- uid: 20155 - type: PowerCellRecharger - components: - - pos: -18.5,16.5 - parent: 8364 - type: Transform -- uid: 20156 - type: Bed - components: - - pos: -19.5,16.5 - parent: 8364 - type: Transform -- uid: 20157 - type: SignInterrogation - components: - - pos: -12.5,28.5 - parent: 8364 - type: Transform -- uid: 20158 - type: PottedPlant16 - components: - - pos: -14.5,26.5 - parent: 8364 - type: Transform -- uid: 20159 - type: WindoorArmoryLocked - components: - - pos: 2.5,34.5 - parent: 8364 - type: Transform -- uid: 20160 - type: APCHighCapacity - components: - - rot: -1.5707963267948966 rad - pos: 83.5,-64.5 - parent: 8364 - type: Transform -- uid: 20161 - type: CableApcExtension - components: - - pos: 83.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20162 - type: CableApcExtension - components: - - pos: 82.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20163 - type: CableApcExtension - components: - - pos: 81.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20164 - type: CableMV - components: - - pos: 81.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20165 - type: CableMV - components: - - pos: 81.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20166 - type: CableMV - components: - - pos: 81.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20167 - type: CableMV - components: - - pos: 81.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20168 - type: CableMV - components: - - pos: 82.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20169 - type: CableMV - components: - - pos: 83.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20170 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 80.5,-64.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20171 - type: CableApcExtension - components: - - pos: 81.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20172 - type: CableApcExtension - components: - - pos: 81.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20173 - type: CableApcExtension - components: - - pos: 81.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20174 - type: WindoorArmoryLocked - components: - - pos: 1.5,34.5 - parent: 8364 - type: Transform -- uid: 20175 - type: Carpet - components: - - pos: -13.5,41.5 - parent: 8364 - type: Transform -- uid: 20176 - type: CableApcExtension - components: - - pos: 82.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20177 - type: CableApcExtension - components: - - pos: 83.5,-66.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20178 - type: CableApcExtension - components: - - pos: 82.5,-67.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20179 - type: CableApcExtension - components: - - pos: 82.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20180 - type: BlastDoor - components: - - pos: 70.5,-39.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19856 - type: SignalReceiver -- uid: 20181 - type: BlastDoor - components: - - pos: 70.5,-40.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19856 - type: SignalReceiver -- uid: 20182 - type: BlastDoor - components: - - pos: 70.5,-41.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19856 - type: SignalReceiver -- uid: 20183 - type: WindoorScienceLocked - components: - - name: Research Delivery - type: MetaData - - rot: -1.5707963267948966 rad - pos: 75.5,-21.5 - parent: 8364 - type: Transform -- uid: 20184 - type: CarpetBlue - components: - - pos: -13.5,17.5 - parent: 8364 - type: Transform -- uid: 20185 - type: GasPipeTJunction - components: - - pos: 76.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20186 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-42.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20187 - type: CableApcExtension - components: - - pos: 57.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20188 - type: ComputerCriminalRecords - components: - - pos: -8.5,-6.5 - parent: 8364 - type: Transform -- uid: 20189 - type: AirlockScienceLocked - components: - - name: Research Division Access - type: MetaData - - pos: 66.5,-16.5 - parent: 8364 - type: Transform -- uid: 20190 - type: AirlockScienceLocked - components: - - name: Research Division Access - type: MetaData - - pos: 66.5,-20.5 - parent: 8364 - type: Transform -- uid: 20191 - type: AirlockScienceGlassLocked - components: - - name: Robotics - type: MetaData - - pos: 62.5,-25.5 - parent: 8364 - type: Transform -- uid: 20192 - type: ShuttersNormal - components: - - pos: 52.5,-15.5 - parent: 8364 - type: Transform -- uid: 20193 - type: ShuttersNormal - components: - - pos: 53.5,-15.5 - parent: 8364 - type: Transform -- uid: 20194 - type: ShuttersNormal - components: - - pos: 54.5,-15.5 - parent: 8364 - type: Transform -- uid: 20195 - type: Grille - components: - - pos: 69.5,-16.5 - parent: 8364 - type: Transform -- uid: 20196 - type: ReinforcedWindow - components: - - pos: 69.5,-16.5 - parent: 8364 - type: Transform -- uid: 20197 - type: TableReinforced - components: - - pos: 70.5,-16.5 - parent: 8364 - type: Transform -- uid: 20198 - type: TableReinforced - components: - - pos: 62.5,-16.5 - parent: 8364 - type: Transform -- uid: 20199 - type: Table - components: - - pos: 64.5,-23.5 - parent: 8364 - type: Transform -- uid: 20200 - type: AirlockResearchDirectorLocked - components: - - name: Research Director - type: MetaData - - pos: 68.5,-36.5 - parent: 8364 - type: Transform -- uid: 20201 - type: AirlockScienceGlassLocked - components: - - name: Sci West Hall - type: MetaData - - pos: 64.5,-40.5 - parent: 8364 - type: Transform -- uid: 20202 - type: GasPipeBend - components: - - pos: 48.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20203 - type: AirlockScienceGlassLocked - components: - - name: Mixing Room - type: MetaData - - pos: 75.5,-40.5 - parent: 8364 - type: Transform -- uid: 20204 - type: AirlockScienceGlassLocked - components: - - name: Mixing Room - type: MetaData - - pos: 73.5,-40.5 - parent: 8364 - type: Transform -- uid: 20205 - type: AirlockScienceGlassLocked - components: - - name: Toxins Launch - type: MetaData - - pos: 79.5,-36.5 - parent: 8364 - type: Transform -- uid: 20206 - type: AirlockScienceGlassLocked - components: - - name: Toxins Launch - type: MetaData - - pos: 83.5,-36.5 - parent: 8364 - type: Transform -- uid: 20207 - type: MachineArtifactAnalyzer - components: - - pos: 79.5,-29.5 - parent: 8364 - type: Transform -- uid: 20208 - type: AirlockScienceGlassLocked - components: - - name: Artifact Research - type: MetaData - - pos: 75.5,-23.5 - parent: 8364 - type: Transform -- uid: 20209 - type: AirlockScienceGlassLocked - components: - - name: Artifact Room - type: MetaData - - pos: 82.5,-27.5 - parent: 8364 - type: Transform -- uid: 20210 - type: ComputerResearchAndDevelopment - components: - - pos: 59.5,-16.5 - parent: 8364 - type: Transform -- uid: 20211 - type: APCHighCapacity - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-25.5 - parent: 8364 - type: Transform -- uid: 20212 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -68.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20213 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20214 - type: Catwalk - components: - - pos: -2.5,-71.5 - parent: 8364 - type: Transform -- uid: 20215 - type: Catwalk - components: - - pos: -2.5,-73.5 - parent: 8364 - type: Transform -- uid: 20216 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -38.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20217 - type: CableMV - components: - - pos: 60.5,-41.5 - parent: 8364 - type: Transform -- uid: 20218 - type: APCBasic - components: - - name: Toxins Lab APC - type: MetaData - - pos: 75.5,-42.5 - parent: 8364 - type: Transform - - startingCharge: 12000 - type: Battery - - loadingNetworkDemand: 10 - currentReceiving: 10.019571 - currentSupply: 10 - type: PowerNetworkBattery -- uid: 20219 - type: Catwalk - components: - - pos: 55.5,-51.5 - parent: 8364 - type: Transform -- uid: 20220 - type: WallReinforced - components: - - pos: 61.5,-42.5 - parent: 8364 - type: Transform -- uid: 20221 - type: WallReinforced - components: - - pos: 62.5,-42.5 - parent: 8364 - type: Transform -- uid: 20222 - type: WallReinforced - components: - - pos: 58.5,-54.5 - parent: 8364 - type: Transform -- uid: 20223 - type: CableMV - components: - - pos: 74.5,-22.5 - parent: 8364 - type: Transform -- uid: 20224 - type: CableMV - components: - - pos: 74.5,-23.5 - parent: 8364 - type: Transform -- uid: 20225 - type: CableMV - components: - - pos: 73.5,-23.5 - parent: 8364 - type: Transform -- uid: 20226 - type: CableMV - components: - - pos: 72.5,-23.5 - parent: 8364 - type: Transform -- uid: 20227 - type: CableMV - components: - - pos: 71.5,-23.5 - parent: 8364 - type: Transform -- uid: 20228 - type: CableMV - components: - - pos: 70.5,-23.5 - parent: 8364 - type: Transform -- uid: 20229 - type: CableMV - components: - - pos: 75.5,-23.5 - parent: 8364 - type: Transform -- uid: 20230 - type: CableMV - components: - - pos: 68.5,-23.5 - parent: 8364 - type: Transform -- uid: 20231 - type: CableMV - components: - - pos: 68.5,-24.5 - parent: 8364 - type: Transform -- uid: 20232 - type: CableMV - components: - - pos: 68.5,-25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20233 - type: CableMV - components: - - pos: 78.5,-26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20234 - type: CableMV - components: - - pos: 78.5,-25.5 - parent: 8364 - type: Transform -- uid: 20235 - type: CableMV - components: - - pos: 78.5,-24.5 - parent: 8364 - type: Transform -- uid: 20236 - type: CableMV - components: - - pos: 78.5,-23.5 - parent: 8364 - type: Transform -- uid: 20237 - type: CableMV - components: - - pos: 79.5,-23.5 - parent: 8364 - type: Transform -- uid: 20238 - type: CableMV - components: - - pos: 80.5,-23.5 - parent: 8364 - type: Transform -- uid: 20239 - type: CableMV - components: - - pos: 81.5,-23.5 - parent: 8364 - type: Transform -- uid: 20240 - type: CableMV - components: - - pos: 82.5,-23.5 - parent: 8364 - type: Transform -- uid: 20241 - type: CableMV - components: - - pos: 75.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20242 - type: CableMV - components: - - pos: 76.5,-42.5 - parent: 8364 - type: Transform -- uid: 20243 - type: CableMV - components: - - pos: 77.5,-42.5 - parent: 8364 - type: Transform -- uid: 20244 - type: CableMV - components: - - pos: 77.5,-41.5 - parent: 8364 - type: Transform -- uid: 20245 - type: CableMV - components: - - pos: 77.5,-40.5 - parent: 8364 - type: Transform -- uid: 20246 - type: CableMV - components: - - pos: 77.5,-39.5 - parent: 8364 - type: Transform -- uid: 20247 - type: CableMV - components: - - pos: 77.5,-38.5 - parent: 8364 - type: Transform -- uid: 20248 - type: CableMV - components: - - pos: 77.5,-37.5 - parent: 8364 - type: Transform -- uid: 20249 - type: CableMV - components: - - pos: 67.5,-53.5 - parent: 8364 - type: Transform -- uid: 20250 - type: CableMV - components: - - pos: 68.5,-53.5 - parent: 8364 - type: Transform -- uid: 20251 - type: CableMV - components: - - pos: 69.5,-53.5 - parent: 8364 - type: Transform -- uid: 20252 - type: CableMV - components: - - pos: 70.5,-53.5 - parent: 8364 - type: Transform -- uid: 20253 - type: CableMV - components: - - pos: 71.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20254 - type: CableMV - components: - - pos: 66.5,-51.5 - parent: 8364 - type: Transform -- uid: 20255 - type: CableMV - components: - - pos: 66.5,-50.5 - parent: 8364 - type: Transform -- uid: 20256 - type: CableMV - components: - - pos: 66.5,-49.5 - parent: 8364 - type: Transform -- uid: 20257 - type: CableMV - components: - - pos: 66.5,-48.5 - parent: 8364 - type: Transform -- uid: 20258 - type: CableMV - components: - - pos: 66.5,-47.5 - parent: 8364 - type: Transform -- uid: 20259 - type: CableMV - components: - - pos: 66.5,-46.5 - parent: 8364 - type: Transform -- uid: 20260 - type: CableMV - components: - - pos: 66.5,-45.5 - parent: 8364 - type: Transform -- uid: 20261 - type: CableMV - components: - - pos: 66.5,-44.5 - parent: 8364 - type: Transform -- uid: 20262 - type: CableMV - components: - - pos: 66.5,-43.5 - parent: 8364 - type: Transform -- uid: 20263 - type: CableMV - components: - - pos: 66.5,-42.5 - parent: 8364 - type: Transform -- uid: 20264 - type: GasPipeFourway - components: - - pos: 65.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20265 - type: CableMV - components: - - pos: 66.5,-40.5 - parent: 8364 - type: Transform -- uid: 20266 - type: CableMV - components: - - pos: 65.5,-40.5 - parent: 8364 - type: Transform -- uid: 20267 - type: CableMV - components: - - pos: 64.5,-40.5 - parent: 8364 - type: Transform -- uid: 20268 - type: CableMV - components: - - pos: 63.5,-40.5 - parent: 8364 - type: Transform -- uid: 20269 - type: CableMV - components: - - pos: 62.5,-40.5 - parent: 8364 - type: Transform -- uid: 20270 - type: CableMV - components: - - pos: 61.5,-40.5 - parent: 8364 - type: Transform -- uid: 20271 - type: CableMV - components: - - pos: 60.5,-40.5 - parent: 8364 - type: Transform -- uid: 20272 - type: WallReinforced - components: - - pos: 53.5,-42.5 - parent: 8364 - type: Transform -- uid: 20273 - type: CableApcExtension - components: - - pos: 60.5,-41.5 - parent: 8364 - type: Transform -- uid: 20274 - type: Catwalk - components: - - pos: 55.5,-50.5 - parent: 8364 - type: Transform -- uid: 20275 - type: Table - components: - - pos: 62.5,-43.5 - parent: 8364 - type: Transform -- uid: 20276 - type: CableMV - components: - - pos: 67.5,-45.5 - parent: 8364 - type: Transform -- uid: 20277 - type: CableMV - components: - - pos: 68.5,-45.5 - parent: 8364 - type: Transform -- uid: 20278 - type: CableMV - components: - - pos: 69.5,-45.5 - parent: 8364 - type: Transform -- uid: 20279 - type: CableMV - components: - - pos: 70.5,-45.5 - parent: 8364 - type: Transform -- uid: 20280 - type: CableMV - components: - - pos: 71.5,-45.5 - parent: 8364 - type: Transform -- uid: 20281 - type: CableMV - components: - - pos: 72.5,-45.5 - parent: 8364 - type: Transform -- uid: 20282 - type: CableMV - components: - - pos: 73.5,-45.5 - parent: 8364 - type: Transform -- uid: 20283 - type: CableMV - components: - - pos: 74.5,-45.5 - parent: 8364 - type: Transform -- uid: 20284 - type: CableMV - components: - - pos: 75.5,-45.5 - parent: 8364 - type: Transform -- uid: 20285 - type: CableMV - components: - - pos: 76.5,-45.5 - parent: 8364 - type: Transform -- uid: 20286 - type: CableMV - components: - - pos: 77.5,-45.5 - parent: 8364 - type: Transform -- uid: 20287 - type: CableMV - components: - - pos: 77.5,-44.5 - parent: 8364 - type: Transform -- uid: 20288 - type: CableMV - components: - - pos: 77.5,-43.5 - parent: 8364 - type: Transform -- uid: 20289 - type: CableMV - components: - - pos: 66.5,-39.5 - parent: 8364 - type: Transform -- uid: 20290 - type: CableMV - components: - - pos: 66.5,-38.5 - parent: 8364 - type: Transform -- uid: 20291 - type: CableMV - components: - - pos: 66.5,-37.5 - parent: 8364 - type: Transform -- uid: 20292 - type: CableMV - components: - - pos: 66.5,-36.5 - parent: 8364 - type: Transform -- uid: 20293 - type: CableMV - components: - - pos: 66.5,-35.5 - parent: 8364 - type: Transform -- uid: 20294 - type: CableMV - components: - - pos: 65.5,-35.5 - parent: 8364 - type: Transform -- uid: 20295 - type: CableMV - components: - - pos: 64.5,-35.5 - parent: 8364 - type: Transform -- uid: 20296 - type: CableMV - components: - - pos: 63.5,-35.5 - parent: 8364 - type: Transform -- uid: 20297 - type: CableMV - components: - - pos: 62.5,-35.5 - parent: 8364 - type: Transform -- uid: 20298 - type: CableMV - components: - - pos: 61.5,-35.5 - parent: 8364 - type: Transform -- uid: 20299 - type: CableMV - components: - - pos: 60.5,-35.5 - parent: 8364 - type: Transform -- uid: 20300 - type: CableMV - components: - - pos: 60.5,-36.5 - parent: 8364 - type: Transform -- uid: 20301 - type: CableMV - components: - - pos: 59.5,-36.5 - parent: 8364 - type: Transform -- uid: 20302 - type: CableMV - components: - - pos: 58.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20303 - type: CableMV - components: - - pos: 67.5,-36.5 - parent: 8364 - type: Transform -- uid: 20304 - type: CableMV - components: - - pos: 68.5,-36.5 - parent: 8364 - type: Transform -- uid: 20305 - type: CableMV - components: - - pos: 69.5,-36.5 - parent: 8364 - type: Transform -- uid: 20306 - type: CableMV - components: - - pos: 69.5,-37.5 - parent: 8364 - type: Transform -- uid: 20307 - type: CableMV - components: - - pos: 69.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20308 - type: CableMV - components: - - pos: 66.5,-34.5 - parent: 8364 - type: Transform -- uid: 20309 - type: CableMV - components: - - pos: 66.5,-33.5 - parent: 8364 - type: Transform -- uid: 20310 - type: CableMV - components: - - pos: 66.5,-32.5 - parent: 8364 - type: Transform -- uid: 20311 - type: CableMV - components: - - pos: 66.5,-31.5 - parent: 8364 - type: Transform -- uid: 20312 - type: CableMV - components: - - pos: 66.5,-30.5 - parent: 8364 - type: Transform -- uid: 20313 - type: CableMV - components: - - pos: 66.5,-29.5 - parent: 8364 - type: Transform -- uid: 20314 - type: CableMV - components: - - pos: 66.5,-28.5 - parent: 8364 - type: Transform -- uid: 20315 - type: CableMV - components: - - pos: 66.5,-27.5 - parent: 8364 - type: Transform -- uid: 20316 - type: CableMV - components: - - pos: 65.5,-27.5 - parent: 8364 - type: Transform -- uid: 20317 - type: CableMV - components: - - pos: 64.5,-27.5 - parent: 8364 - type: Transform -- uid: 20318 - type: CableMV - components: - - pos: 63.5,-27.5 - parent: 8364 - type: Transform -- uid: 20319 - type: CableMV - components: - - pos: 62.5,-27.5 - parent: 8364 - type: Transform -- uid: 20320 - type: CableMV - components: - - pos: 61.5,-27.5 - parent: 8364 - type: Transform -- uid: 20321 - type: CableMV - components: - - pos: 61.5,-28.5 - parent: 8364 - type: Transform -- uid: 20322 - type: CableMV - components: - - pos: 61.5,-30.5 - parent: 8364 - type: Transform -- uid: 20323 - type: CableMV - components: - - pos: 60.5,-30.5 - parent: 8364 - type: Transform -- uid: 20324 - type: CableMV - components: - - pos: 59.5,-30.5 - parent: 8364 - type: Transform -- uid: 20325 - type: CableMV - components: - - pos: 58.5,-30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20326 - type: CableMV - components: - - pos: 61.5,-29.5 - parent: 8364 - type: Transform -- uid: 20327 - type: CableMV - components: - - pos: 66.5,-26.5 - parent: 8364 - type: Transform -- uid: 20328 - type: CableMV - components: - - pos: 66.5,-25.5 - parent: 8364 - type: Transform -- uid: 20329 - type: CableMV - components: - - pos: 66.5,-24.5 - parent: 8364 - type: Transform -- uid: 20330 - type: CableMV - components: - - pos: 66.5,-23.5 - parent: 8364 - type: Transform -- uid: 20331 - type: CableMV - components: - - pos: 67.5,-23.5 - parent: 8364 - type: Transform -- uid: 20332 - type: CableMV - components: - - pos: 69.5,-23.5 - parent: 8364 - type: Transform -- uid: 20333 - type: CableMV - components: - - pos: 76.5,-23.5 - parent: 8364 - type: Transform -- uid: 20334 - type: CableMV - components: - - pos: 77.5,-23.5 - parent: 8364 - type: Transform -- uid: 20335 - type: CableMV - components: - - pos: 62.5,-26.5 - parent: 8364 - type: Transform -- uid: 20336 - type: CableMV - components: - - pos: 62.5,-25.5 - parent: 8364 - type: Transform -- uid: 20337 - type: CableMV - components: - - pos: 62.5,-24.5 - parent: 8364 - type: Transform -- uid: 20338 - type: CableMV - components: - - pos: 62.5,-23.5 - parent: 8364 - type: Transform -- uid: 20339 - type: CableMV - components: - - pos: 62.5,-22.5 - parent: 8364 - type: Transform -- uid: 20340 - type: CableMV - components: - - pos: 62.5,-21.5 - parent: 8364 - type: Transform -- uid: 20341 - type: CableMV - components: - - pos: 62.5,-20.5 - parent: 8364 - type: Transform -- uid: 20342 - type: CableMV - components: - - pos: 61.5,-20.5 - parent: 8364 - type: Transform -- uid: 20343 - type: CableMV - components: - - pos: 60.5,-20.5 - parent: 8364 - type: Transform -- uid: 20344 - type: CableMV - components: - - pos: 59.5,-20.5 - parent: 8364 - type: Transform -- uid: 20345 - type: CableMV - components: - - pos: 58.5,-20.5 - parent: 8364 - type: Transform -- uid: 20346 - type: CableMV - components: - - pos: 57.5,-20.5 - parent: 8364 - type: Transform -- uid: 20347 - type: CableMV - components: - - pos: 56.5,-20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20348 - type: CableMV - components: - - pos: 60.5,-27.5 - parent: 8364 - type: Transform -- uid: 20349 - type: CableMV - components: - - pos: 59.5,-27.5 - parent: 8364 - type: Transform -- uid: 20350 - type: CableMV - components: - - pos: 58.5,-27.5 - parent: 8364 - type: Transform -- uid: 20351 - type: CableMV - components: - - pos: 57.5,-27.5 - parent: 8364 - type: Transform -- uid: 20352 - type: CableMV - components: - - pos: 56.5,-27.5 - parent: 8364 - type: Transform -- uid: 20353 - type: CableMV - components: - - pos: 55.5,-27.5 - parent: 8364 - type: Transform -- uid: 20354 - type: CableMV - components: - - pos: 55.5,-28.5 - parent: 8364 - type: Transform -- uid: 20355 - type: CableMV - components: - - pos: 55.5,-29.5 - parent: 8364 - type: Transform -- uid: 20356 - type: CableMV - components: - - pos: 55.5,-30.5 - parent: 8364 - type: Transform -- uid: 20357 - type: CableMV - components: - - pos: 55.5,-31.5 - parent: 8364 - type: Transform -- uid: 20358 - type: CableMV - components: - - pos: 55.5,-32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20359 - type: WindoorScienceLocked - components: - - name: Robotics Desk - type: MetaData - - pos: 62.5,-16.5 - parent: 8364 - type: Transform -- uid: 20360 - type: WindoorScienceLocked - components: - - name: Robotics Desk - type: MetaData - - rot: -1.5707963267948966 rad - pos: 64.5,-23.5 - parent: 8364 - type: Transform -- uid: 20361 - type: WindoorScienceLocked - components: - - name: Research And Development Desk - type: MetaData - - pos: 70.5,-16.5 - parent: 8364 - type: Transform -- uid: 20362 - type: AirlockResearchDirectorLocked - components: - - name: Server Room - type: MetaData - - pos: 54.5,-30.5 - parent: 8364 - type: Transform -- uid: 20363 - type: AirlockResearchDirectorLocked - components: - - name: Server Room - type: MetaData - - pos: 55.5,-28.5 - parent: 8364 - type: Transform -- uid: 20364 - type: CarpetGreen - components: - - pos: 57.5,-34.5 - parent: 8364 - type: Transform -- uid: 20365 - type: StorageCanister - components: - - pos: 62.5,-55.5 - parent: 8364 - type: Transform -- uid: 20366 - type: GasPipeBend - components: - - pos: 62.5,-50.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20367 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-51.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20368 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 55.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20369 - type: WallReinforced - components: - - pos: 52.5,-42.5 - parent: 8364 - type: Transform -- uid: 20370 - type: WallReinforced - components: - - pos: 55.5,-42.5 - parent: 8364 - type: Transform -- uid: 20371 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-43.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20372 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-44.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20373 - type: Windoor - components: - - name: Reception Desk - type: MetaData - - rot: 3.141592653589793 rad - pos: 62.5,-16.5 - parent: 8364 - type: Transform -- uid: 20374 - type: Windoor - components: - - name: Reception Desk - type: MetaData - - rot: 3.141592653589793 rad - pos: 70.5,-16.5 - parent: 8364 - type: Transform -- uid: 20375 - type: Windoor - components: - - name: Reception Desk - type: MetaData - - rot: 1.5707963267948966 rad - pos: 64.5,-23.5 - parent: 8364 - type: Transform -- uid: 20376 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-51.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20377 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-51.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20378 - type: Catwalk - components: - - pos: 53.5,-48.5 - parent: 8364 - type: Transform -- uid: 20379 - type: Table - components: - - pos: 60.5,-43.5 - parent: 8364 - type: Transform -- uid: 20380 - type: Table - components: - - pos: 61.5,-43.5 - parent: 8364 - type: Transform -- uid: 20381 - type: CableMV - components: - - pos: 60.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20382 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-51.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20383 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-51.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20384 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-51.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20385 - type: WallReinforced - components: - - pos: 60.5,-42.5 - parent: 8364 - type: Transform -- uid: 20386 - type: WallReinforced - components: - - pos: 63.5,-42.5 - parent: 8364 - type: Transform -- uid: 20387 - type: GasPressurePump - components: - - pos: 53.5,-46.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20388 - type: GasPipeBend - components: - - pos: 53.5,-43.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20389 - type: TableReinforced - components: - - pos: 36.5,-18.5 - parent: 8364 - type: Transform -- uid: 20390 - type: CableApcExtension - components: - - pos: 36.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20391 - type: CableApcExtension - components: - - pos: 36.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20392 - type: CableApcExtension - components: - - pos: 36.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20393 - type: CableApcExtension - components: - - pos: 36.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20394 - type: CableApcExtension - components: - - pos: 37.5,-17.5 - parent: 8364 - type: Transform -- uid: 20395 - type: CableApcExtension - components: - - pos: 68.5,-25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20396 - type: CableApcExtension - components: - - pos: 69.5,-25.5 - parent: 8364 - type: Transform -- uid: 20397 - type: CableApcExtension - components: - - pos: 70.5,-25.5 - parent: 8364 - type: Transform -- uid: 20398 - type: CableApcExtension - components: - - pos: 70.5,-26.5 - parent: 8364 - type: Transform -- uid: 20399 - type: CableApcExtension - components: - - pos: 70.5,-27.5 - parent: 8364 - type: Transform -- uid: 20400 - type: CableApcExtension - components: - - pos: 70.5,-28.5 - parent: 8364 - type: Transform -- uid: 20401 - type: CableApcExtension - components: - - pos: 70.5,-29.5 - parent: 8364 - type: Transform -- uid: 20402 - type: CableApcExtension - components: - - pos: 70.5,-30.5 - parent: 8364 - type: Transform -- uid: 20403 - type: CableApcExtension - components: - - pos: 71.5,-30.5 - parent: 8364 - type: Transform -- uid: 20404 - type: CableApcExtension - components: - - pos: 72.5,-30.5 - parent: 8364 - type: Transform -- uid: 20405 - type: CableApcExtension - components: - - pos: 73.5,-30.5 - parent: 8364 - type: Transform -- uid: 20406 - type: CableApcExtension - components: - - pos: 73.5,-29.5 - parent: 8364 - type: Transform -- uid: 20407 - type: CableApcExtension - components: - - pos: 73.5,-28.5 - parent: 8364 - type: Transform -- uid: 20408 - type: CableApcExtension - components: - - pos: 73.5,-27.5 - parent: 8364 - type: Transform -- uid: 20409 - type: CableApcExtension - components: - - pos: 73.5,-26.5 - parent: 8364 - type: Transform -- uid: 20410 - type: CableApcExtension - components: - - pos: 73.5,-25.5 - parent: 8364 - type: Transform -- uid: 20411 - type: CableApcExtension - components: - - pos: 73.5,-24.5 - parent: 8364 - type: Transform -- uid: 20412 - type: CableApcExtension - components: - - pos: 73.5,-23.5 - parent: 8364 - type: Transform -- uid: 20413 - type: CableApcExtension - components: - - pos: 73.5,-22.5 - parent: 8364 - type: Transform -- uid: 20414 - type: CableApcExtension - components: - - pos: 73.5,-21.5 - parent: 8364 - type: Transform -- uid: 20415 - type: CableApcExtension - components: - - pos: 73.5,-20.5 - parent: 8364 - type: Transform -- uid: 20416 - type: CableApcExtension - components: - - pos: 73.5,-19.5 - parent: 8364 - type: Transform -- uid: 20417 - type: CableApcExtension - components: - - pos: 73.5,-18.5 - parent: 8364 - type: Transform -- uid: 20418 - type: CableApcExtension - components: - - pos: 73.5,-17.5 - parent: 8364 - type: Transform -- uid: 20419 - type: CableApcExtension - components: - - pos: 72.5,-18.5 - parent: 8364 - type: Transform -- uid: 20420 - type: CableApcExtension - components: - - pos: 71.5,-18.5 - parent: 8364 - type: Transform -- uid: 20421 - type: CableApcExtension - components: - - pos: 70.5,-18.5 - parent: 8364 - type: Transform -- uid: 20422 - type: CableApcExtension - components: - - pos: 70.5,-19.5 - parent: 8364 - type: Transform -- uid: 20423 - type: CableApcExtension - components: - - pos: 70.5,-20.5 - parent: 8364 - type: Transform -- uid: 20424 - type: CableApcExtension - components: - - pos: 70.5,-21.5 - parent: 8364 - type: Transform -- uid: 20425 - type: CableApcExtension - components: - - pos: 70.5,-22.5 - parent: 8364 - type: Transform -- uid: 20426 - type: CableApcExtension - components: - - pos: 69.5,-22.5 - parent: 8364 - type: Transform -- uid: 20427 - type: CableApcExtension - components: - - pos: 68.5,-22.5 - parent: 8364 - type: Transform -- uid: 20428 - type: CableApcExtension - components: - - pos: 67.5,-22.5 - parent: 8364 - type: Transform -- uid: 20429 - type: CableApcExtension - components: - - pos: 66.5,-22.5 - parent: 8364 - type: Transform -- uid: 20430 - type: CableApcExtension - components: - - pos: 66.5,-21.5 - parent: 8364 - type: Transform -- uid: 20431 - type: CableApcExtension - components: - - pos: 66.5,-20.5 - parent: 8364 - type: Transform -- uid: 20432 - type: CableApcExtension - components: - - pos: 66.5,-19.5 - parent: 8364 - type: Transform -- uid: 20433 - type: CableApcExtension - components: - - pos: 66.5,-18.5 - parent: 8364 - type: Transform -- uid: 20434 - type: CableApcExtension - components: - - pos: 66.5,-23.5 - parent: 8364 - type: Transform -- uid: 20435 - type: CableApcExtension - components: - - pos: 66.5,-24.5 - parent: 8364 - type: Transform -- uid: 20436 - type: CableApcExtension - components: - - pos: 66.5,-25.5 - parent: 8364 - type: Transform -- uid: 20437 - type: CableApcExtension - components: - - pos: 66.5,-26.5 - parent: 8364 - type: Transform -- uid: 20438 - type: CableApcExtension - components: - - pos: 66.5,-27.5 - parent: 8364 - type: Transform -- uid: 20439 - type: CableApcExtension - components: - - pos: 62.5,-25.5 - parent: 8364 - type: Transform -- uid: 20440 - type: CableApcExtension - components: - - pos: 61.5,-25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20441 - type: CableApcExtension - components: - - pos: 63.5,-25.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20442 - type: CableApcExtension - components: - - pos: 62.5,-26.5 - parent: 8364 - type: Transform -- uid: 20443 - type: CableApcExtension - components: - - pos: 61.5,-26.5 - parent: 8364 - type: Transform -- uid: 20444 - type: CableApcExtension - components: - - pos: 60.5,-26.5 - parent: 8364 - type: Transform -- uid: 20445 - type: CableApcExtension - components: - - pos: 59.5,-26.5 - parent: 8364 - type: Transform -- uid: 20446 - type: CableApcExtension - components: - - pos: 58.5,-26.5 - parent: 8364 - type: Transform -- uid: 20447 - type: CableApcExtension - components: - - pos: 57.5,-26.5 - parent: 8364 - type: Transform -- uid: 20448 - type: CableApcExtension - components: - - pos: 56.5,-26.5 - parent: 8364 - type: Transform -- uid: 20449 - type: CableApcExtension - components: - - pos: 55.5,-26.5 - parent: 8364 - type: Transform -- uid: 20450 - type: CableApcExtension - components: - - pos: 54.5,-26.5 - parent: 8364 - type: Transform -- uid: 20451 - type: CableApcExtension - components: - - pos: 55.5,-32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20452 - type: CableApcExtension - components: - - pos: 66.5,-17.5 - parent: 8364 - type: Transform -- uid: 20453 - type: CableApcExtension - components: - - pos: 70.5,-24.5 - parent: 8364 - type: Transform -- uid: 20454 - type: CableApcExtension - components: - - pos: 70.5,-23.5 - parent: 8364 - type: Transform -- uid: 20455 - type: CableApcExtension - components: - - pos: 71.5,-25.5 - parent: 8364 - type: Transform -- uid: 20456 - type: CableApcExtension - components: - - pos: 72.5,-25.5 - parent: 8364 - type: Transform -- uid: 20457 - type: CableApcExtension - components: - - pos: 71.5,-22.5 - parent: 8364 - type: Transform -- uid: 20458 - type: CableApcExtension - components: - - pos: 72.5,-22.5 - parent: 8364 - type: Transform -- uid: 20459 - type: CableApcExtension - components: - - pos: 66.5,-28.5 - parent: 8364 - type: Transform -- uid: 20460 - type: CableApcExtension - components: - - pos: 66.5,-29.5 - parent: 8364 - type: Transform -- uid: 20461 - type: CableApcExtension - components: - - pos: 66.5,-30.5 - parent: 8364 - type: Transform -- uid: 20462 - type: CableApcExtension - components: - - pos: 66.5,-31.5 - parent: 8364 - type: Transform -- uid: 20463 - type: CableApcExtension - components: - - pos: 66.5,-32.5 - parent: 8364 - type: Transform -- uid: 20464 - type: CableApcExtension - components: - - pos: 66.5,-33.5 - parent: 8364 - type: Transform -- uid: 20465 - type: CableApcExtension - components: - - pos: 66.5,-34.5 - parent: 8364 - type: Transform -- uid: 20466 - type: CableApcExtension - components: - - pos: 66.5,-35.5 - parent: 8364 - type: Transform -- uid: 20467 - type: CableApcExtension - components: - - pos: 66.5,-36.5 - parent: 8364 - type: Transform -- uid: 20468 - type: CableApcExtension - components: - - pos: 66.5,-37.5 - parent: 8364 - type: Transform -- uid: 20469 - type: CableApcExtension - components: - - pos: 66.5,-38.5 - parent: 8364 - type: Transform -- uid: 20470 - type: CableApcExtension - components: - - pos: 66.5,-39.5 - parent: 8364 - type: Transform -- uid: 20471 - type: CableApcExtension - components: - - pos: 66.5,-40.5 - parent: 8364 - type: Transform -- uid: 20472 - type: CableApcExtension - components: - - pos: 66.5,-41.5 - parent: 8364 - type: Transform -- uid: 20473 - type: CableApcExtension - components: - - pos: 66.5,-42.5 - parent: 8364 - type: Transform -- uid: 20474 - type: CableApcExtension - components: - - pos: 66.5,-43.5 - parent: 8364 - type: Transform -- uid: 20475 - type: CableApcExtension - components: - - pos: 66.5,-44.5 - parent: 8364 - type: Transform -- uid: 20476 - type: CableApcExtension - components: - - pos: 66.5,-45.5 - parent: 8364 - type: Transform -- uid: 20477 - type: CableApcExtension - components: - - pos: 66.5,-46.5 - parent: 8364 - type: Transform -- uid: 20478 - type: CableApcExtension - components: - - pos: 66.5,-47.5 - parent: 8364 - type: Transform -- uid: 20479 - type: CableApcExtension - components: - - pos: 67.5,-45.5 - parent: 8364 - type: Transform -- uid: 20480 - type: CableApcExtension - components: - - pos: 67.5,-43.5 - parent: 8364 - type: Transform -- uid: 20481 - type: CableApcExtension - components: - - pos: 67.5,-47.5 - parent: 8364 - type: Transform -- uid: 20482 - type: CableApcExtension - components: - - pos: 67.5,-40.5 - parent: 8364 - type: Transform -- uid: 20483 - type: CableApcExtension - components: - - pos: 68.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20484 - type: CableApcExtension - components: - - pos: 68.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20485 - type: CableApcExtension - components: - - pos: 68.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20486 - type: CableApcExtension - components: - - pos: 71.5,-17.5 - parent: 8364 - type: Transform -- uid: 20487 - type: CableApcExtension - components: - - pos: 71.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20488 - type: CableApcExtension - components: - - pos: 69.5,-18.5 - parent: 8364 - type: Transform -- uid: 20489 - type: CableApcExtension - components: - - pos: 69.5,-17.5 - parent: 8364 - type: Transform -- uid: 20490 - type: CableApcExtension - components: - - pos: 69.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20491 - type: CableApcExtension - components: - - pos: 78.5,-26.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20492 - type: CableApcExtension - components: - - pos: 78.5,-25.5 - parent: 8364 - type: Transform -- uid: 20493 - type: CableApcExtension - components: - - pos: 78.5,-24.5 - parent: 8364 - type: Transform -- uid: 20494 - type: CableApcExtension - components: - - pos: 79.5,-25.5 - parent: 8364 - type: Transform -- uid: 20495 - type: CableApcExtension - components: - - pos: 80.5,-25.5 - parent: 8364 - type: Transform -- uid: 20496 - type: CableApcExtension - components: - - pos: 80.5,-26.5 - parent: 8364 - type: Transform -- uid: 20497 - type: CableApcExtension - components: - - pos: 77.5,-24.5 - parent: 8364 - type: Transform -- uid: 20498 - type: CableApcExtension - components: - - pos: 76.5,-24.5 - parent: 8364 - type: Transform -- uid: 20499 - type: CableApcExtension - components: - - pos: 75.5,-24.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20500 - type: CableApcExtension - components: - - pos: 80.5,-27.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20501 - type: CableApcExtension - components: - - pos: 79.5,-27.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20502 - type: CableApcExtension - components: - - pos: 76.5,-25.5 - parent: 8364 - type: Transform -- uid: 20503 - type: CableApcExtension - components: - - pos: 76.5,-26.5 - parent: 8364 - type: Transform -- uid: 20504 - type: CableApcExtension - components: - - pos: 76.5,-27.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20505 - type: CableApcExtension - components: - - pos: 77.5,-27.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20506 - type: CableApcExtension - components: - - pos: 81.5,-25.5 - parent: 8364 - type: Transform -- uid: 20507 - type: CableApcExtension - components: - - pos: 82.5,-25.5 - parent: 8364 - type: Transform -- uid: 20508 - type: CableApcExtension - components: - - pos: 82.5,-26.5 - parent: 8364 - type: Transform -- uid: 20509 - type: CableApcExtension - components: - - pos: 82.5,-27.5 - parent: 8364 - type: Transform -- uid: 20510 - type: CableApcExtension - components: - - pos: 82.5,-28.5 - parent: 8364 - type: Transform -- uid: 20511 - type: CableApcExtension - components: - - pos: 82.5,-29.5 - parent: 8364 - type: Transform -- uid: 20512 - type: CableApcExtension - components: - - pos: 81.5,-29.5 - parent: 8364 - type: Transform -- uid: 20513 - type: CableApcExtension - components: - - pos: 80.5,-29.5 - parent: 8364 - type: Transform -- uid: 20514 - type: CableApcExtension - components: - - pos: 79.5,-29.5 - parent: 8364 - type: Transform -- uid: 20515 - type: CableApcExtension - components: - - pos: 78.5,-29.5 - parent: 8364 - type: Transform -- uid: 20516 - type: CableApcExtension - components: - - pos: 77.5,-29.5 - parent: 8364 - type: Transform -- uid: 20517 - type: CableApcExtension - components: - - pos: 81.5,-24.5 - parent: 8364 - type: Transform -- uid: 20518 - type: BlastDoor - components: - - pos: 87.5,-38.5 - parent: 8364 - type: Transform -- uid: 20519 - type: WindoorScienceLocked - components: - - rot: 3.141592653589793 rad - pos: 84.5,-37.5 - parent: 8364 - type: Transform -- uid: 20520 - type: CableApcExtension - components: - - pos: 58.5,-20.5 - parent: 8364 - type: Transform -- uid: 20521 - type: CableApcExtension - components: - - pos: 57.5,-20.5 - parent: 8364 - type: Transform -- uid: 20522 - type: CableApcExtension - components: - - pos: 56.5,-20.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20523 - type: CableApcExtension - components: - - pos: 55.5,-20.5 - parent: 8364 - type: Transform -- uid: 20524 - type: CableApcExtension - components: - - pos: 54.5,-20.5 - parent: 8364 - type: Transform -- uid: 20525 - type: CableApcExtension - components: - - pos: 53.5,-20.5 - parent: 8364 - type: Transform -- uid: 20526 - type: CableApcExtension - components: - - pos: 52.5,-20.5 - parent: 8364 - type: Transform -- uid: 20527 - type: CableApcExtension - components: - - pos: 52.5,-19.5 - parent: 8364 - type: Transform -- uid: 20528 - type: CableApcExtension - components: - - pos: 52.5,-18.5 - parent: 8364 - type: Transform -- uid: 20529 - type: CableApcExtension - components: - - pos: 52.5,-17.5 - parent: 8364 - type: Transform -- uid: 20530 - type: CableApcExtension - components: - - pos: 53.5,-17.5 - parent: 8364 - type: Transform -- uid: 20531 - type: CableApcExtension - components: - - pos: 54.5,-17.5 - parent: 8364 - type: Transform -- uid: 20532 - type: CableApcExtension - components: - - pos: 55.5,-17.5 - parent: 8364 - type: Transform -- uid: 20533 - type: CableApcExtension - components: - - pos: 56.5,-17.5 - parent: 8364 - type: Transform -- uid: 20534 - type: CableApcExtension - components: - - pos: 56.5,-18.5 - parent: 8364 - type: Transform -- uid: 20535 - type: CableApcExtension - components: - - pos: 56.5,-19.5 - parent: 8364 - type: Transform -- uid: 20536 - type: CableApcExtension - components: - - pos: 58.5,-19.5 - parent: 8364 - type: Transform -- uid: 20537 - type: CableApcExtension - components: - - pos: 58.5,-18.5 - parent: 8364 - type: Transform -- uid: 20538 - type: CableApcExtension - components: - - pos: 58.5,-17.5 - parent: 8364 - type: Transform -- uid: 20539 - type: CableApcExtension - components: - - pos: 59.5,-18.5 - parent: 8364 - type: Transform -- uid: 20540 - type: CableApcExtension - components: - - pos: 60.5,-18.5 - parent: 8364 - type: Transform -- uid: 20541 - type: CableApcExtension - components: - - pos: 61.5,-18.5 - parent: 8364 - type: Transform -- uid: 20542 - type: CableApcExtension - components: - - pos: 62.5,-18.5 - parent: 8364 - type: Transform -- uid: 20543 - type: CableApcExtension - components: - - pos: 62.5,-19.5 - parent: 8364 - type: Transform -- uid: 20544 - type: CableApcExtension - components: - - pos: 62.5,-20.5 - parent: 8364 - type: Transform -- uid: 20545 - type: CableApcExtension - components: - - pos: 62.5,-21.5 - parent: 8364 - type: Transform -- uid: 20546 - type: CableApcExtension - components: - - pos: 62.5,-22.5 - parent: 8364 - type: Transform -- uid: 20547 - type: CableApcExtension - components: - - pos: 62.5,-23.5 - parent: 8364 - type: Transform -- uid: 20548 - type: CableApcExtension - components: - - pos: 61.5,-23.5 - parent: 8364 - type: Transform -- uid: 20549 - type: CableApcExtension - components: - - pos: 60.5,-23.5 - parent: 8364 - type: Transform -- uid: 20550 - type: CableApcExtension - components: - - pos: 59.5,-23.5 - parent: 8364 - type: Transform -- uid: 20551 - type: CableApcExtension - components: - - pos: 58.5,-23.5 - parent: 8364 - type: Transform -- uid: 20552 - type: CableApcExtension - components: - - pos: 57.5,-23.5 - parent: 8364 - type: Transform -- uid: 20553 - type: CableApcExtension - components: - - pos: 56.5,-23.5 - parent: 8364 - type: Transform -- uid: 20554 - type: CableApcExtension - components: - - pos: 55.5,-23.5 - parent: 8364 - type: Transform -- uid: 20555 - type: CableApcExtension - components: - - pos: 54.5,-23.5 - parent: 8364 - type: Transform -- uid: 20556 - type: CableApcExtension - components: - - pos: 53.5,-23.5 - parent: 8364 - type: Transform -- uid: 20557 - type: CableApcExtension - components: - - pos: 52.5,-23.5 - parent: 8364 - type: Transform -- uid: 20558 - type: CableApcExtension - components: - - pos: 57.5,-21.5 - parent: 8364 - type: Transform -- uid: 20559 - type: CableApcExtension - components: - - pos: 57.5,-22.5 - parent: 8364 - type: Transform -- uid: 20560 - type: CableApcExtension - components: - - pos: 63.5,-22.5 - parent: 8364 - type: Transform -- uid: 20561 - type: CableApcExtension - components: - - pos: 64.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20562 - type: CableApcExtension - components: - - pos: 62.5,-24.5 - parent: 8364 - type: Transform -- uid: 20563 - type: CableApcExtension - components: - - pos: 55.5,-31.5 - parent: 8364 - type: Transform -- uid: 20564 - type: CableApcExtension - components: - - pos: 55.5,-30.5 - parent: 8364 - type: Transform -- uid: 20565 - type: CableApcExtension - components: - - pos: 54.5,-30.5 - parent: 8364 - type: Transform -- uid: 20566 - type: CableApcExtension - components: - - pos: 53.5,-30.5 - parent: 8364 - type: Transform -- uid: 20567 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-19.5 - parent: 8364 - type: Transform -- uid: 20568 - type: CableApcExtension - components: - - pos: 56.5,-30.5 - parent: 8364 - type: Transform -- uid: 20569 - type: CableApcExtension - components: - - pos: 58.5,-30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20570 - type: CableApcExtension - components: - - pos: 59.5,-30.5 - parent: 8364 - type: Transform -- uid: 20571 - type: CableApcExtension - components: - - pos: 60.5,-30.5 - parent: 8364 - type: Transform -- uid: 20572 - type: CableApcExtension - components: - - pos: 61.5,-30.5 - parent: 8364 - type: Transform -- uid: 20573 - type: CableApcExtension - components: - - pos: 62.5,-30.5 - parent: 8364 - type: Transform -- uid: 20574 - type: CableApcExtension - components: - - pos: 61.5,-29.5 - parent: 8364 - type: Transform -- uid: 20575 - type: CableApcExtension - components: - - pos: 61.5,-31.5 - parent: 8364 - type: Transform -- uid: 20576 - type: CableApcExtension - components: - - pos: 63.5,-30.5 - parent: 8364 - type: Transform -- uid: 20577 - type: CableApcExtension - components: - - pos: 64.5,-30.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20578 - type: CableApcExtension - components: - - pos: 64.5,-29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20579 - type: CableApcExtension - components: - - pos: 64.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20580 - type: CableApcExtension - components: - - pos: 63.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20581 - type: CableApcExtension - components: - - pos: 62.5,-28.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20582 - type: CableApcExtension - components: - - pos: 64.5,-31.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20583 - type: CableApcExtension - components: - - pos: 54.5,-29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20584 - type: CableApcExtension - components: - - pos: 54.5,-31.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20585 - type: CableApcExtension - components: - - pos: 58.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20586 - type: CableApcExtension - components: - - pos: 59.5,-36.5 - parent: 8364 - type: Transform -- uid: 20587 - type: CableApcExtension - components: - - pos: 60.5,-36.5 - parent: 8364 - type: Transform -- uid: 20588 - type: CableApcExtension - components: - - pos: 61.5,-36.5 - parent: 8364 - type: Transform -- uid: 20589 - type: CableApcExtension - components: - - pos: 62.5,-36.5 - parent: 8364 - type: Transform -- uid: 20590 - type: CableApcExtension - components: - - pos: 62.5,-35.5 - parent: 8364 - type: Transform -- uid: 20591 - type: CableApcExtension - components: - - pos: 62.5,-34.5 - parent: 8364 - type: Transform -- uid: 20592 - type: CableApcExtension - components: - - pos: 61.5,-34.5 - parent: 8364 - type: Transform -- uid: 20593 - type: CableApcExtension - components: - - pos: 60.5,-34.5 - parent: 8364 - type: Transform -- uid: 20594 - type: CableApcExtension - components: - - pos: 60.5,-35.5 - parent: 8364 - type: Transform -- uid: 20595 - type: GasMixer - components: - - pos: 53.5,-44.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20596 - type: GasMixer - components: - - pos: 53.5,-45.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20597 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 59.5,-53.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20598 - type: CableApcExtension - components: - - pos: 59.5,-40.5 - parent: 8364 - type: Transform -- uid: 20599 - type: CableApcExtension - components: - - pos: 60.5,-40.5 - parent: 8364 - type: Transform -- uid: 20600 - type: CableApcExtension - components: - - pos: 61.5,-40.5 - parent: 8364 - type: Transform -- uid: 20601 - type: CableApcExtension - components: - - pos: 62.5,-40.5 - parent: 8364 - type: Transform -- uid: 20602 - type: CableApcExtension - components: - - pos: 63.5,-40.5 - parent: 8364 - type: Transform -- uid: 20603 - type: CableApcExtension - components: - - pos: 64.5,-40.5 - parent: 8364 - type: Transform -- uid: 20604 - type: CableApcExtension - components: - - pos: 64.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20605 - type: CableApcExtension - components: - - pos: 64.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20606 - type: CableApcExtension - components: - - pos: 58.5,-40.5 - parent: 8364 - type: Transform -- uid: 20607 - type: CableApcExtension - components: - - pos: 57.5,-40.5 - parent: 8364 - type: Transform -- uid: 20608 - type: CableApcExtension - components: - - pos: 56.5,-40.5 - parent: 8364 - type: Transform -- uid: 20609 - type: CableApcExtension - components: - - pos: 55.5,-40.5 - parent: 8364 - type: Transform -- uid: 20610 - type: CableApcExtension - components: - - pos: 54.5,-40.5 - parent: 8364 - type: Transform -- uid: 20611 - type: CableApcExtension - components: - - pos: 53.5,-40.5 - parent: 8364 - type: Transform -- uid: 20612 - type: CableApcExtension - components: - - pos: 52.5,-40.5 - parent: 8364 - type: Transform -- uid: 20613 - type: CableApcExtension - components: - - pos: 54.5,-39.5 - parent: 8364 - type: Transform -- uid: 20614 - type: CableApcExtension - components: - - pos: 54.5,-38.5 - parent: 8364 - type: Transform -- uid: 20615 - type: CableApcExtension - components: - - pos: 54.5,-37.5 - parent: 8364 - type: Transform -- uid: 20616 - type: CableApcExtension - components: - - pos: 54.5,-36.5 - parent: 8364 - type: Transform -- uid: 20617 - type: CableApcExtension - components: - - pos: 54.5,-35.5 - parent: 8364 - type: Transform -- uid: 20618 - type: CableApcExtension - components: - - pos: 54.5,-34.5 - parent: 8364 - type: Transform -- uid: 20619 - type: CableApcExtension - components: - - pos: 53.5,-34.5 - parent: 8364 - type: Transform -- uid: 20620 - type: CableApcExtension - components: - - pos: 52.5,-34.5 - parent: 8364 - type: Transform -- uid: 20621 - type: CableApcExtension - components: - - pos: 55.5,-34.5 - parent: 8364 - type: Transform -- uid: 20622 - type: CableApcExtension - components: - - pos: 56.5,-34.5 - parent: 8364 - type: Transform -- uid: 20623 - type: CableApcExtension - components: - - pos: 55.5,-37.5 - parent: 8364 - type: Transform -- uid: 20624 - type: CableApcExtension - components: - - pos: 56.5,-37.5 - parent: 8364 - type: Transform -- uid: 20625 - type: CableApcExtension - components: - - pos: 53.5,-37.5 - parent: 8364 - type: Transform -- uid: 20626 - type: CableApcExtension - components: - - pos: 52.5,-37.5 - parent: 8364 - type: Transform -- uid: 20627 - type: CableApcExtension - components: - - pos: 54.5,-41.5 - parent: 8364 - type: Transform -- uid: 20628 - type: CableApcExtension - components: - - pos: 57.5,-41.5 - parent: 8364 - type: Transform -- uid: 20629 - type: CableApcExtension - components: - - pos: 57.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20630 - type: CableApcExtension - components: - - pos: 57.5,-43.5 - parent: 8364 - type: Transform -- uid: 20631 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,-52.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20632 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-52.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20633 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-46.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20634 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-47.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20635 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-49.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20636 - type: GasPipeTJunction - components: - - pos: 60.5,-46.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20637 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-47.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20638 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 60.5,-49.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20639 - type: GasPipeTJunction - components: - - pos: 62.5,-46.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20640 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-48.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20641 - type: AirlockExternalGlassLocked - components: - - pos: 54.5,-56.5 - parent: 8364 - type: Transform -- uid: 20642 - type: CableApcExtension - components: - - pos: 61.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20643 - type: CableApcExtension - components: - - pos: 62.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20644 - type: Grille - components: - - pos: 57.5,-42.5 - parent: 8364 - type: Transform -- uid: 20645 - type: CableApcExtension - components: - - pos: 57.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20646 - type: CableApcExtension - components: - - pos: 56.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20647 - type: CableApcExtension - components: - - pos: 58.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20648 - type: CableApcExtension - components: - - pos: 53.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20649 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-46.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20650 - type: CableApcExtension - components: - - pos: 57.5,-56.5 - parent: 8364 - type: Transform -- uid: 20651 - type: CableApcExtension - components: - - pos: 59.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20652 - type: CableApcExtension - components: - - pos: 62.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20653 - type: ReinforcedWindow - components: - - pos: 57.5,-42.5 - parent: 8364 - type: Transform -- uid: 20654 - type: CableApcExtension - components: - - pos: 52.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20655 - type: CableApcExtension - components: - - pos: 53.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20656 - type: GasOutletInjector - components: - - rot: 3.141592653589793 rad - pos: 53.5,-50.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20657 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-51.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20658 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 59.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20659 - type: CableApcExtension - components: - - pos: 71.5,-52.5 - parent: 8364 - type: Transform -- uid: 20660 - type: CableApcExtension - components: - - pos: 71.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20661 - type: Grille - components: - - pos: 53.5,-49.5 - parent: 8364 - type: Transform -- uid: 20662 - type: ReinforcedPlasmaWindow - components: - - pos: 54.5,-50.5 - parent: 8364 - type: Transform -- uid: 20663 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-50.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20664 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-51.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20665 - type: Grille - components: - - pos: 56.5,-49.5 - parent: 8364 - type: Transform -- uid: 20666 - type: Grille - components: - - pos: 54.5,-50.5 - parent: 8364 - type: Transform -- uid: 20667 - type: BlastDoor - components: - - pos: 53.5,-52.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20866 - type: SignalReceiver -- uid: 20668 - type: GasValve - components: - - pos: 60.5,-48.5 - parent: 8364 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 20669 - type: CableApcExtension - components: - - pos: 60.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20670 - type: CableApcExtension - components: - - pos: 60.5,-44.5 - parent: 8364 - type: Transform -- uid: 20671 - type: CableApcExtension - components: - - pos: 61.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20672 - type: AirlockScienceGlassLocked - components: - - name: Atmos Sci Test Lab - type: MetaData - - pos: 58.5,-42.5 - parent: 8364 - type: Transform -- uid: 20673 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 62.5,-48.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20674 - type: AirlockAtmosphericsGlassLocked - components: - - name: Atmos Sci Test Room - type: MetaData - - pos: 57.5,-54.5 - parent: 8364 - type: Transform -- uid: 20675 - type: CableApcExtension - components: - - pos: 57.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20676 - type: CableApcExtension - components: - - pos: 58.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20677 - type: CableApcExtension - components: - - pos: 62.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20678 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-50.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20679 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-45.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 20680 - type: ReinforcedWindow - components: - - pos: 56.5,-50.5 - parent: 8364 - type: Transform -- uid: 20681 - type: ReinforcedPlasmaWindow - components: - - pos: 52.5,-51.5 - parent: 8364 - type: Transform -- uid: 20682 - type: WallReinforced - components: - - pos: 54.5,-52.5 - parent: 8364 - type: Transform -- uid: 20683 - type: ReinforcedWindow - components: - - pos: 56.5,-48.5 - parent: 8364 - type: Transform -- uid: 20684 - type: WallReinforced - components: - - pos: 56.5,-47.5 - parent: 8364 - type: Transform -- uid: 20685 - type: CableApcExtension - components: - - pos: 57.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20686 - type: CableApcExtension - components: - - pos: 57.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20687 - type: CableApcExtension - components: - - pos: 53.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20688 - type: CableApcExtension - components: - - pos: 62.5,-44.5 - parent: 8364 - type: Transform -- uid: 20689 - type: Grille - components: - - pos: 56.5,-53.5 - parent: 8364 - type: Transform -- uid: 20690 - type: Grille - components: - - pos: 55.5,-47.5 - parent: 8364 - type: Transform -- uid: 20691 - type: Table - components: - - pos: 18.5,-33.5 - parent: 8364 - type: Transform -- uid: 20692 - type: Window - components: - - pos: 56.5,-38.5 - parent: 8364 - type: Transform -- uid: 20693 - type: CableApcExtension - components: - - pos: 60.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20694 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-45.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20695 - type: Grille - components: - - pos: 61.5,-58.5 - parent: 8364 - type: Transform -- uid: 20696 - type: Grille - components: - - pos: 63.5,-58.5 - parent: 8364 - type: Transform -- uid: 20697 - type: CableApcExtension - components: - - pos: 53.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20698 - type: CableApcExtension - components: - - pos: 53.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20699 - type: AtmosFixBlockerMarker - components: - - pos: 53.5,-50.5 - parent: 8364 - type: Transform -- uid: 20700 - type: CableApcExtension - components: - - pos: 70.5,-52.5 - parent: 8364 - type: Transform -- uid: 20701 - type: CableApcExtension - components: - - pos: 69.5,-52.5 - parent: 8364 - type: Transform -- uid: 20702 - type: CableApcExtension - components: - - pos: 68.5,-52.5 - parent: 8364 - type: Transform -- uid: 20703 - type: CableApcExtension - components: - - pos: 67.5,-52.5 - parent: 8364 - type: Transform -- uid: 20704 - type: CableApcExtension - components: - - pos: 66.5,-52.5 - parent: 8364 - type: Transform -- uid: 20705 - type: CableApcExtension - components: - - pos: 66.5,-51.5 - parent: 8364 - type: Transform -- uid: 20706 - type: CableApcExtension - components: - - pos: 66.5,-50.5 - parent: 8364 - type: Transform -- uid: 20707 - type: CableApcExtension - components: - - pos: 66.5,-49.5 - parent: 8364 - type: Transform -- uid: 20708 - type: CableApcExtension - components: - - pos: 67.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20709 - type: CableApcExtension - components: - - pos: 65.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20710 - type: CableApcExtension - components: - - pos: 71.5,-51.5 - parent: 8364 - type: Transform -- uid: 20711 - type: CableApcExtension - components: - - pos: 71.5,-50.5 - parent: 8364 - type: Transform -- uid: 20712 - type: CableApcExtension - components: - - pos: 71.5,-49.5 - parent: 8364 - type: Transform -- uid: 20713 - type: CableApcExtension - components: - - pos: 72.5,-49.5 - parent: 8364 - type: Transform -- uid: 20714 - type: CableApcExtension - components: - - pos: 73.5,-49.5 - parent: 8364 - type: Transform -- uid: 20715 - type: CableApcExtension - components: - - pos: 74.5,-49.5 - parent: 8364 - type: Transform -- uid: 20716 - type: CableApcExtension - components: - - pos: 75.5,-49.5 - parent: 8364 - type: Transform -- uid: 20717 - type: CableApcExtension - components: - - pos: 76.5,-49.5 - parent: 8364 - type: Transform -- uid: 20718 - type: CableApcExtension - components: - - pos: 77.5,-49.5 - parent: 8364 - type: Transform -- uid: 20719 - type: CableApcExtension - components: - - pos: 78.5,-49.5 - parent: 8364 - type: Transform -- uid: 20720 - type: CableApcExtension - components: - - pos: 79.5,-49.5 - parent: 8364 - type: Transform -- uid: 20721 - type: CableApcExtension - components: - - pos: 79.5,-50.5 - parent: 8364 - type: Transform -- uid: 20722 - type: CableApcExtension - components: - - pos: 79.5,-51.5 - parent: 8364 - type: Transform -- uid: 20723 - type: CableApcExtension - components: - - pos: 79.5,-52.5 - parent: 8364 - type: Transform -- uid: 20724 - type: CableApcExtension - components: - - pos: 79.5,-53.5 - parent: 8364 - type: Transform -- uid: 20725 - type: CableApcExtension - components: - - pos: 78.5,-53.5 - parent: 8364 - type: Transform -- uid: 20726 - type: CableApcExtension - components: - - pos: 77.5,-53.5 - parent: 8364 - type: Transform -- uid: 20727 - type: CableApcExtension - components: - - pos: 76.5,-53.5 - parent: 8364 - type: Transform -- uid: 20728 - type: CableApcExtension - components: - - pos: 72.5,-52.5 - parent: 8364 - type: Transform -- uid: 20729 - type: CableApcExtension - components: - - pos: 73.5,-52.5 - parent: 8364 - type: Transform -- uid: 20730 - type: CableApcExtension - components: - - pos: 77.5,-51.5 - parent: 8364 - type: Transform -- uid: 20731 - type: CableApcExtension - components: - - pos: 78.5,-51.5 - parent: 8364 - type: Transform -- uid: 20732 - type: CableApcExtension - components: - - pos: 77.5,-52.5 - parent: 8364 - type: Transform -- uid: 20733 - type: CableApcExtension - components: - - pos: 74.5,-52.5 - parent: 8364 - type: Transform -- uid: 20734 - type: CableApcExtension - components: - - pos: 75.5,-52.5 - parent: 8364 - type: Transform -- uid: 20735 - type: CableApcExtension - components: - - pos: 75.5,-51.5 - parent: 8364 - type: Transform -- uid: 20736 - type: CableApcExtension - components: - - pos: 75.5,-53.5 - parent: 8364 - type: Transform -- uid: 20737 - type: CableApcExtension - components: - - pos: 75.5,-54.5 - parent: 8364 - type: Transform -- uid: 20738 - type: CableApcExtension - components: - - pos: 73.5,-53.5 - parent: 8364 - type: Transform -- uid: 20739 - type: CableApcExtension - components: - - pos: 73.5,-54.5 - parent: 8364 - type: Transform -- uid: 20740 - type: CableApcExtension - components: - - pos: 73.5,-55.5 - parent: 8364 - type: Transform -- uid: 20741 - type: CableApcExtension - components: - - pos: 73.5,-56.5 - parent: 8364 - type: Transform -- uid: 20742 - type: CableApcExtension - components: - - pos: 75.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20743 - type: CableApcExtension - components: - - pos: 75.5,-43.5 - parent: 8364 - type: Transform -- uid: 20744 - type: CableApcExtension - components: - - pos: 75.5,-44.5 - parent: 8364 - type: Transform -- uid: 20745 - type: CableApcExtension - components: - - pos: 75.5,-45.5 - parent: 8364 - type: Transform -- uid: 20746 - type: CableApcExtension - components: - - pos: 74.5,-45.5 - parent: 8364 - type: Transform -- uid: 20747 - type: CableApcExtension - components: - - pos: 73.5,-45.5 - parent: 8364 - type: Transform -- uid: 20748 - type: CableApcExtension - components: - - pos: 72.5,-45.5 - parent: 8364 - type: Transform -- uid: 20749 - type: CableApcExtension - components: - - pos: 71.5,-45.5 - parent: 8364 - type: Transform -- uid: 20750 - type: CableApcExtension - components: - - pos: 70.5,-45.5 - parent: 8364 - type: Transform -- uid: 20751 - type: CableApcExtension - components: - - pos: 69.5,-45.5 - parent: 8364 - type: Transform -- uid: 20752 - type: CableApcExtension - components: - - pos: 69.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20753 - type: CableApcExtension - components: - - pos: 69.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20754 - type: CableApcExtension - components: - - pos: 78.5,-46.5 - parent: 8364 - type: Transform -- uid: 20755 - type: CableApcExtension - components: - - pos: 77.5,-46.5 - parent: 8364 - type: Transform -- uid: 20756 - type: CableApcExtension - components: - - pos: 76.5,-46.5 - parent: 8364 - type: Transform -- uid: 20757 - type: CableApcExtension - components: - - pos: 75.5,-46.5 - parent: 8364 - type: Transform -- uid: 20758 - type: CableApcExtension - components: - - pos: 79.5,-46.5 - parent: 8364 - type: Transform -- uid: 20759 - type: CableApcExtension - components: - - pos: 77.5,-45.5 - parent: 8364 - type: Transform -- uid: 20760 - type: CableApcExtension - components: - - pos: 77.5,-44.5 - parent: 8364 - type: Transform -- uid: 20761 - type: CableApcExtension - components: - - pos: 77.5,-43.5 - parent: 8364 - type: Transform -- uid: 20762 - type: CableApcExtension - components: - - pos: 77.5,-42.5 - parent: 8364 - type: Transform -- uid: 20763 - type: CableApcExtension - components: - - pos: 77.5,-41.5 - parent: 8364 - type: Transform -- uid: 20764 - type: CableApcExtension - components: - - pos: 77.5,-40.5 - parent: 8364 - type: Transform -- uid: 20765 - type: CableApcExtension - components: - - pos: 77.5,-39.5 - parent: 8364 - type: Transform -- uid: 20766 - type: CableApcExtension - components: - - pos: 77.5,-38.5 - parent: 8364 - type: Transform -- uid: 20767 - type: CableApcExtension - components: - - pos: 77.5,-37.5 - parent: 8364 - type: Transform -- uid: 20768 - type: CableApcExtension - components: - - pos: 77.5,-36.5 - parent: 8364 - type: Transform -- uid: 20769 - type: CableApcExtension - components: - - pos: 77.5,-35.5 - parent: 8364 - type: Transform -- uid: 20770 - type: CableApcExtension - components: - - pos: 77.5,-34.5 - parent: 8364 - type: Transform -- uid: 20771 - type: CableApcExtension - components: - - pos: 77.5,-33.5 - parent: 8364 - type: Transform -- uid: 20772 - type: CableApcExtension - components: - - pos: 76.5,-40.5 - parent: 8364 - type: Transform -- uid: 20773 - type: CableApcExtension - components: - - pos: 75.5,-40.5 - parent: 8364 - type: Transform -- uid: 20774 - type: CableApcExtension - components: - - pos: 74.5,-40.5 - parent: 8364 - type: Transform -- uid: 20775 - type: CableApcExtension - components: - - pos: 73.5,-40.5 - parent: 8364 - type: Transform -- uid: 20776 - type: CableApcExtension - components: - - pos: 72.5,-40.5 - parent: 8364 - type: Transform -- uid: 20777 - type: CableApcExtension - components: - - pos: 69.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20778 - type: CableApcExtension - components: - - pos: 69.5,-37.5 - parent: 8364 - type: Transform -- uid: 20779 - type: CableApcExtension - components: - - pos: 69.5,-36.5 - parent: 8364 - type: Transform -- uid: 20780 - type: CableApcExtension - components: - - pos: 70.5,-36.5 - parent: 8364 - type: Transform -- uid: 20781 - type: CableApcExtension - components: - - pos: 71.5,-36.5 - parent: 8364 - type: Transform -- uid: 20782 - type: CableApcExtension - components: - - pos: 72.5,-36.5 - parent: 8364 - type: Transform -- uid: 20783 - type: CableApcExtension - components: - - pos: 73.5,-36.5 - parent: 8364 - type: Transform -- uid: 20784 - type: CableApcExtension - components: - - pos: 73.5,-35.5 - parent: 8364 - type: Transform -- uid: 20785 - type: CableApcExtension - components: - - pos: 73.5,-34.5 - parent: 8364 - type: Transform -- uid: 20786 - type: CableApcExtension - components: - - pos: 72.5,-34.5 - parent: 8364 - type: Transform -- uid: 20787 - type: CableApcExtension - components: - - pos: 71.5,-34.5 - parent: 8364 - type: Transform -- uid: 20788 - type: CableApcExtension - components: - - pos: 70.5,-34.5 - parent: 8364 - type: Transform -- uid: 20789 - type: CableApcExtension - components: - - pos: 69.5,-34.5 - parent: 8364 - type: Transform -- uid: 20790 - type: CableApcExtension - components: - - pos: 68.5,-34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20791 - type: CableApcExtension - components: - - pos: 68.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20792 - type: CableApcExtension - components: - - pos: 68.5,-35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20793 - type: PoweredSmallLight - components: - - pos: 71.5,-39.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20794 - type: PoweredSmallLight - components: - - pos: 74.5,-39.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20795 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 77.5,-54.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20796 - type: Poweredlight - components: - - pos: 80.5,-49.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20797 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 73.5,-57.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20798 - type: WallReinforced - components: - - pos: 62.5,-54.5 - parent: 8364 - type: Transform -- uid: 20799 - type: CableApcExtension - components: - - pos: 64.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20800 - type: WeldingFuelTankFull - components: - - pos: 63.5,-43.5 - parent: 8364 - type: Transform -- uid: 20801 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-48.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20802 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 18.5,-20.5 - parent: 8364 - type: Transform -- uid: 20803 - type: Bookshelf - components: - - pos: 56.5,-33.5 - parent: 8364 - type: Transform -- uid: 20804 - type: WallSolid - components: - - pos: 48.5,-32.5 - parent: 8364 - type: Transform -- uid: 20805 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 76.5,-30.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20806 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 82.5,-30.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20807 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20808 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-26.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20809 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20810 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-23.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20811 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 59.5,-24.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20812 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20813 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-30.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20814 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-30.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20815 - type: Poweredlight - components: - - pos: 60.5,-26.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20816 - type: Poweredlight - components: - - pos: 68.5,-22.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20817 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-18.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20818 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-27.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20819 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-20.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20820 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-35.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20821 - type: Poweredlight - components: - - pos: 78.5,-23.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20822 - type: Poweredlight - components: - - pos: 61.5,-39.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20823 - type: WallShuttle - components: - - pos: 69.5,-75.5 - parent: 8364 - type: Transform -- uid: 20824 - type: AirlockShuttle - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-78.5 - parent: 8364 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 20825 - type: CableApcExtension - components: - - pos: 57.5,-44.5 - parent: 8364 - type: Transform -- uid: 20826 - type: Poweredlight - components: - - pos: 72.5,-33.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20827 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-34.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20828 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-42.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20829 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-47.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20830 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 68.5,-53.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20831 - type: Poweredlight - components: - - pos: 73.5,-49.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20832 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,-45.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20833 - type: Poweredlight - components: - - pos: 73.5,-43.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20834 - type: Poweredlight - components: - - pos: 77.5,-32.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20835 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-38.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20836 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 85.5,-38.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20837 - type: ShuttersWindowOpen - components: - - pos: 61.5,-16.5 - parent: 8364 - type: Transform -- uid: 20838 - type: ShuttersWindowOpen - components: - - pos: 62.5,-16.5 - parent: 8364 - type: Transform -- uid: 20839 - type: ShuttersWindowOpen - components: - - pos: 63.5,-16.5 - parent: 8364 - type: Transform -- uid: 20840 - type: ShuttersWindowOpen - components: - - pos: 69.5,-16.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5478 - type: SignalReceiver -- uid: 20841 - type: ShuttersWindowOpen - components: - - pos: 70.5,-16.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5478 - type: SignalReceiver -- uid: 20842 - type: ShuttersWindowOpen - components: - - pos: 71.5,-16.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5478 - type: SignalReceiver -- uid: 20843 - type: ShuttersWindowOpen - components: - - pos: 68.5,-22.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5478 - type: SignalReceiver -- uid: 20844 - type: ShuttersWindowOpen - components: - - pos: 68.5,-23.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5478 - type: SignalReceiver -- uid: 20845 - type: ShuttersWindowOpen - components: - - pos: 68.5,-24.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5478 - type: SignalReceiver -- uid: 20846 - type: ShuttersWindowOpen - components: - - pos: 68.5,-28.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5478 - type: SignalReceiver -- uid: 20847 - type: ShuttersWindowOpen - components: - - pos: 68.5,-29.5 - parent: 8364 - type: Transform -- uid: 20848 - type: ShuttersWindowOpen - components: - - pos: 68.5,-30.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5478 - type: SignalReceiver -- uid: 20849 - type: ShuttersWindowOpen - components: - - pos: 64.5,-22.5 - parent: 8364 - type: Transform -- uid: 20850 - type: ShuttersWindowOpen - components: - - pos: 64.5,-23.5 - parent: 8364 - type: Transform -- uid: 20851 - type: ShuttersWindowOpen - components: - - pos: 68.5,-33.5 - parent: 8364 - type: Transform -- uid: 20852 - type: ShuttersWindowOpen - components: - - pos: 68.5,-34.5 - parent: 8364 - type: Transform -- uid: 20853 - type: ShuttersWindowOpen - components: - - pos: 68.5,-35.5 - parent: 8364 - type: Transform -- uid: 20854 - type: CableApcExtension - components: - - pos: 57.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20855 - type: CableApcExtension - components: - - pos: 57.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20856 - type: CableApcExtension - components: - - pos: 54.5,-44.5 - parent: 8364 - type: Transform -- uid: 20857 - type: CableApcExtension - components: - - pos: 59.5,-44.5 - parent: 8364 - type: Transform -- uid: 20858 - type: CableApcExtension - components: - - pos: 61.5,-44.5 - parent: 8364 - type: Transform -- uid: 20859 - type: Catwalk - components: - - pos: 53.5,-56.5 - parent: 8364 - type: Transform -- uid: 20860 - type: GasAnalyzer - components: - - pos: 61.54493,-43.505928 - parent: 8364 - type: Transform -- uid: 20861 - type: GasAnalyzer - components: - - pos: 61.35743,-43.380928 - parent: 8364 - type: Transform -- uid: 20862 - type: PortableScrubber - components: - - pos: 60.5,-55.5 - parent: 8364 - type: Transform -- uid: 20863 - type: PortableScrubber - components: - - pos: 61.5,-55.5 - parent: 8364 - type: Transform -- uid: 20864 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-17.5 - parent: 8364 - type: Transform -- uid: 20865 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 58.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20866 - type: SignalButton - components: - - pos: 56.5,-47.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 20667 - type: SignalTransmitter -- uid: 20867 - type: Grille - components: - - pos: 56.5,-48.5 - parent: 8364 - type: Transform -- uid: 20868 - type: Grille - components: - - pos: 56.5,-50.5 - parent: 8364 - type: Transform -- uid: 20869 - type: ReinforcedWindow - components: - - pos: 51.5,-47.5 - parent: 8364 - type: Transform -- uid: 20870 - type: ReinforcedWindow - components: - - pos: 56.5,-49.5 - parent: 8364 - type: Transform -- uid: 20871 - type: ReinforcedWindow - components: - - pos: 56.5,-51.5 - parent: 8364 - type: Transform -- uid: 20872 - type: ReinforcedWindow - components: - - pos: 64.5,-39.5 - parent: 8364 - type: Transform -- uid: 20873 - type: WallReinforced - components: - - pos: 60.5,-58.5 - parent: 8364 - type: Transform -- uid: 20874 - type: WallReinforced - components: - - pos: 63.5,-54.5 - parent: 8364 - type: Transform -- uid: 20875 - type: ReinforcedWindow - components: - - pos: 63.5,-58.5 - parent: 8364 - type: Transform -- uid: 20876 - type: ReinforcedWindow - components: - - pos: 62.5,-58.5 - parent: 8364 - type: Transform -- uid: 20877 - type: ReinforcedWindow - components: - - pos: 61.5,-58.5 - parent: 8364 - type: Transform -- uid: 20878 - type: WallReinforced - components: - - pos: 51.5,-42.5 - parent: 8364 - type: Transform -- uid: 20879 - type: DisposalUnit - components: - - pos: 51.5,-41.5 - parent: 8364 - type: Transform -- uid: 20880 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 51.5,-41.5 - parent: 8364 - type: Transform -- uid: 20881 - type: OperatingTable - components: - - pos: 53.5,-22.5 - parent: 8364 - type: Transform -- uid: 20882 - type: computerBodyScanner - components: - - pos: 54.5,-22.5 - parent: 8364 - type: Transform -- uid: 20883 - type: SinkEmpty - components: - - pos: 55.5,-22.5 - parent: 8364 - type: Transform -- uid: 20884 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 13.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20885 - type: GasPipeTJunction - components: - - pos: 16.5,31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20886 - type: LockerFreezer - components: - - pos: -33.5,6.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 4.999335 - - 18.80702 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21277 - - 25839 - - 20932 - type: ContainerContainer -- uid: 20887 - type: PinpointerNuclear - components: - - pos: -29.43788,4.760977 - parent: 8364 - type: Transform -- uid: 20888 - type: SignSecureMed - components: - - pos: -32.5,2.5 - parent: 8364 - type: Transform -- uid: 20889 - type: SignSecureMed - components: - - pos: -30.5,2.5 - parent: 8364 - type: Transform -- uid: 20890 - type: ClothingBeltChampion - components: - - pos: -33.527653,3.6516018 - parent: 8364 - type: Transform - - containers: - storagebase: !type:Container - ents: [] - type: ContainerContainer -- uid: 20891 - type: ClothingHeadHatHairflower - components: - - pos: -29.262028,3.9797268 - parent: 8364 - type: Transform -- uid: 20892 - type: CigarGold - components: - - pos: -29.402653,3.5422268 - parent: 8364 - type: Transform -- uid: 20893 - type: CigarGold - components: - - pos: -29.512028,3.6359768 - parent: 8364 - type: Transform -- uid: 20894 - type: BoxFolderBlack - components: - - pos: -29.590153,4.042227 - parent: 8364 - type: Transform -- uid: 20895 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 29.5,9.5 - parent: 8364 - type: Transform -- uid: 20896 - type: SignalButton - components: - - pos: -6.5,-21.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5592 - - port: Toggle - uid: 5591 - - port: Toggle - uid: 5590 - type: SignalTransmitter -- uid: 20897 - type: AtmosDeviceFanTiny - components: - - pos: 85.5,-13.5 - parent: 8364 - type: Transform -- uid: 20898 - type: AtmosDeviceFanTiny - components: - - pos: 85.5,-11.5 - parent: 8364 - type: Transform -- uid: 20899 - type: AtmosDeviceFanTiny - components: - - pos: 85.5,-5.5 - parent: 8364 - type: Transform -- uid: 20900 - type: AtmosDeviceFanTiny - components: - - pos: 85.5,-3.5 - parent: 8364 - type: Transform -- uid: 20901 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-16.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20902 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-27.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20903 - type: CarpetBlue - components: - - pos: 6.5,-25.5 - parent: 8364 - type: Transform -- uid: 20904 - type: ClothingNeckScarfStripedGreen - components: - - pos: 39.53401,11.65906 - parent: 8364 - type: Transform -- uid: 20905 - type: ClothingNeckScarfStripedBlue - components: - - pos: 76.514496,-58.52488 - parent: 8364 - type: Transform -- uid: 20906 - type: FoodTinMRE - components: - - pos: 80.451996,-57.478004 - parent: 8364 - type: Transform -- uid: 20907 - type: AltarConvertMaint - components: - - pos: 43.5,-73.5 - parent: 8364 - type: Transform -- uid: 20908 - type: TableReinforced - components: - - pos: 2.5,-34.5 - parent: 8364 - type: Transform -- uid: 20909 - type: FoodTinPeachesMaint - components: - - pos: -46.54512,13.835054 - parent: 8364 - type: Transform -- uid: 20910 - type: ClothingNeckMantleCE - components: - - pos: 1.4583907,-59.35031 - parent: 8364 - type: Transform -- uid: 20911 - type: TableCarpet - components: - - pos: 46.5,-34.5 - parent: 8364 - type: Transform -- uid: 20912 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-34.5 - parent: 8364 - type: Transform -- uid: 20913 - type: WeldingFuelTankFull - components: - - pos: 73.5,-59.5 - parent: 8364 - type: Transform -- uid: 20914 - type: WaterTankFull - components: - - pos: 74.5,-59.5 - parent: 8364 - type: Transform -- uid: 20915 - type: WeldingFuelTankFull - components: - - pos: 80.5,-39.5 - parent: 8364 - type: Transform -- uid: 20916 - type: WaterTankFull - components: - - pos: 82.5,-39.5 - parent: 8364 - type: Transform -- uid: 20917 - type: WaterTankFull - components: - - pos: 86.5,-29.5 - parent: 8364 - type: Transform -- uid: 20918 - type: WeldingFuelTankFull - components: - - pos: 84.5,-29.5 - parent: 8364 - type: Transform -- uid: 20919 - type: RandomSpawner - components: - - pos: 53.5,-62.5 - parent: 8364 - type: Transform -- uid: 20920 - type: RandomSpawner - components: - - pos: 68.5,-59.5 - parent: 8364 - type: Transform -- uid: 20921 - type: RandomSpawner - components: - - pos: 70.5,-56.5 - parent: 8364 - type: Transform -- uid: 20922 - type: RandomSpawner - components: - - pos: 66.5,-67.5 - parent: 8364 - type: Transform -- uid: 20923 - type: RandomSpawner - components: - - pos: 80.5,-58.5 - parent: 8364 - type: Transform -- uid: 20924 - type: RandomSpawner - components: - - pos: 81.5,-61.5 - parent: 8364 - type: Transform -- uid: 20925 - type: RandomSpawner - components: - - pos: 86.5,-55.5 - parent: 8364 - type: Transform -- uid: 20926 - type: RandomSpawner - components: - - pos: 85.5,-42.5 - parent: 8364 - type: Transform -- uid: 20927 - type: RandomSpawner - components: - - pos: 82.5,-35.5 - parent: 8364 - type: Transform -- uid: 20928 - type: RandomSpawner - components: - - pos: 84.5,-31.5 - parent: 8364 - type: Transform -- uid: 20929 - type: RandomSpawner - components: - - pos: 86.5,-21.5 - parent: 8364 - type: Transform -- uid: 20930 - type: RandomSpawner - components: - - pos: 78.5,-19.5 - parent: 8364 - type: Transform -- uid: 20931 - type: RandomSpawner - components: - - pos: 89.5,-25.5 - parent: 8364 - type: Transform -- uid: 20932 - type: BikeHorn - components: - - flags: InContainer - type: MetaData - - parent: 20886 - type: Transform - - nextAttack: 3063.5165265 - type: MeleeWeapon - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 20933 - type: SpawnMobMouse - components: - - pos: 80.5,-32.5 - parent: 8364 - type: Transform -- uid: 20934 - type: SmokingPipeFilledTobacco - components: - - pos: 8.552821,-16.117027 - parent: 8364 - type: Transform -- uid: 20935 - type: DisposalUnit - components: - - pos: 74.5,-17.5 - parent: 8364 - type: Transform -- uid: 20936 - type: DisposalUnit - components: - - pos: 56.5,-22.5 - parent: 8364 - type: Transform -- uid: 20937 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -62.5,6.5 - parent: 8364 - type: Transform -- uid: 20938 - type: DisposalUnit - components: - - pos: 73.5,-37.5 - parent: 8364 - type: Transform -- uid: 20939 - type: StorageCanister - components: - - pos: 63.5,-52.5 - parent: 8364 - type: Transform -- uid: 20940 - type: DisposalUnit - components: - - pos: 67.5,-53.5 - parent: 8364 - type: Transform -- uid: 20941 - type: DisposalUnit - components: - - pos: 70.5,-43.5 - parent: 8364 - type: Transform -- uid: 20942 - type: DisposalJunctionFlipped - components: - - pos: 49.5,-40.5 - parent: 8364 - type: Transform -- uid: 20943 - type: DisposalPipe - components: - - pos: 49.5,-27.5 - parent: 8364 - type: Transform -- uid: 20944 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-16.5 - parent: 8364 - type: Transform -- uid: 20945 - type: DisposalPipe - components: - - pos: 49.5,-48.5 - parent: 8364 - type: Transform -- uid: 20946 - type: DisposalPipe - components: - - pos: 49.5,-47.5 - parent: 8364 - type: Transform -- uid: 20947 - type: DisposalPipe - components: - - pos: 49.5,-46.5 - parent: 8364 - type: Transform -- uid: 20948 - type: DisposalPipe - components: - - pos: 49.5,-37.5 - parent: 8364 - type: Transform -- uid: 20949 - type: DisposalPipe - components: - - pos: 49.5,-36.5 - parent: 8364 - type: Transform -- uid: 20950 - type: DisposalPipe - components: - - pos: 49.5,-35.5 - parent: 8364 - type: Transform -- uid: 20951 - type: DisposalPipe - components: - - pos: 49.5,-34.5 - parent: 8364 - type: Transform -- uid: 20952 - type: DisposalPipe - components: - - pos: 49.5,-33.5 - parent: 8364 - type: Transform -- uid: 20953 - type: DisposalPipe - components: - - pos: 49.5,-32.5 - parent: 8364 - type: Transform -- uid: 20954 - type: DisposalPipe - components: - - pos: 49.5,-31.5 - parent: 8364 - type: Transform -- uid: 20955 - type: DisposalPipe - components: - - pos: 49.5,-30.5 - parent: 8364 - type: Transform -- uid: 20956 - type: DisposalPipe - components: - - pos: 49.5,-29.5 - parent: 8364 - type: Transform -- uid: 20957 - type: DisposalPipe - components: - - pos: 49.5,-28.5 - parent: 8364 - type: Transform -- uid: 20958 - type: DisposalPipe - components: - - pos: 49.5,-26.5 - parent: 8364 - type: Transform -- uid: 20959 - type: DisposalPipe - components: - - pos: 49.5,-25.5 - parent: 8364 - type: Transform -- uid: 20960 - type: DisposalPipe - components: - - pos: 49.5,-24.5 - parent: 8364 - type: Transform -- uid: 20961 - type: DisposalPipe - components: - - pos: 49.5,-23.5 - parent: 8364 - type: Transform -- uid: 20962 - type: DisposalPipe - components: - - pos: 49.5,-22.5 - parent: 8364 - type: Transform -- uid: 20963 - type: DisposalPipe - components: - - pos: 49.5,-21.5 - parent: 8364 - type: Transform -- uid: 20964 - type: DisposalPipe - components: - - pos: 49.5,-20.5 - parent: 8364 - type: Transform -- uid: 20965 - type: DisposalPipe - components: - - pos: 49.5,-19.5 - parent: 8364 - type: Transform -- uid: 20966 - type: DisposalPipe - components: - - pos: 49.5,-18.5 - parent: 8364 - type: Transform -- uid: 20967 - type: DisposalPipe - components: - - pos: 49.5,-17.5 - parent: 8364 - type: Transform -- uid: 20968 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-16.5 - parent: 8364 - type: Transform -- uid: 20969 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-16.5 - parent: 8364 - type: Transform -- uid: 20970 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-16.5 - parent: 8364 - type: Transform -- uid: 20971 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-16.5 - parent: 8364 - type: Transform -- uid: 20972 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-16.5 - parent: 8364 - type: Transform -- uid: 20973 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-16.5 - parent: 8364 - type: Transform -- uid: 20974 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-16.5 - parent: 8364 - type: Transform -- uid: 20975 - type: DisposalPipe - components: - - pos: 57.5,-17.5 - parent: 8364 - type: Transform -- uid: 20976 - type: DisposalPipe - components: - - pos: 57.5,-18.5 - parent: 8364 - type: Transform -- uid: 20977 - type: DisposalPipe - components: - - pos: 57.5,-19.5 - parent: 8364 - type: Transform -- uid: 20978 - type: DisposalPipe - components: - - pos: 57.5,-20.5 - parent: 8364 - type: Transform -- uid: 20979 - type: DisposalPipe - components: - - pos: 57.5,-21.5 - parent: 8364 - type: Transform -- uid: 20980 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-22.5 - parent: 8364 - type: Transform -- uid: 20981 - type: DisposalBend - components: - - pos: 57.5,-16.5 - parent: 8364 - type: Transform -- uid: 20982 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-22.5 - parent: 8364 - type: Transform -- uid: 20983 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-40.5 - parent: 8364 - type: Transform -- uid: 20984 - type: StorageCanister - components: - - pos: 63.5,-51.5 - parent: 8364 - type: Transform -- uid: 20985 - type: StorageCanister - components: - - pos: 63.5,-53.5 - parent: 8364 - type: Transform -- uid: 20986 - type: DisposalBend - components: - - pos: 51.5,-40.5 - parent: 8364 - type: Transform -- uid: 20987 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-62.5 - parent: 8364 - type: Transform -- uid: 20988 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-62.5 - parent: 8364 - type: Transform -- uid: 20989 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-61.5 - parent: 8364 - type: Transform -- uid: 20990 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-61.5 - parent: 8364 - type: Transform -- uid: 20991 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-61.5 - parent: 8364 - type: Transform -- uid: 20992 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-61.5 - parent: 8364 - type: Transform -- uid: 20993 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-61.5 - parent: 8364 - type: Transform -- uid: 20994 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-61.5 - parent: 8364 - type: Transform -- uid: 20995 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-61.5 - parent: 8364 - type: Transform -- uid: 20996 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-61.5 - parent: 8364 - type: Transform -- uid: 20997 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-61.5 - parent: 8364 - type: Transform -- uid: 20998 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-61.5 - parent: 8364 - type: Transform -- uid: 20999 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-61.5 - parent: 8364 - type: Transform -- uid: 21000 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-61.5 - parent: 8364 - type: Transform -- uid: 21001 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-61.5 - parent: 8364 - type: Transform -- uid: 21002 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-61.5 - parent: 8364 - type: Transform -- uid: 21003 - type: DisposalJunctionFlipped - components: - - pos: 65.5,-60.5 - parent: 8364 - type: Transform -- uid: 21004 - type: DisposalPipe - components: - - pos: 65.5,-59.5 - parent: 8364 - type: Transform -- uid: 21005 - type: DisposalPipe - components: - - pos: 65.5,-58.5 - parent: 8364 - type: Transform -- uid: 21006 - type: DisposalPipe - components: - - pos: 65.5,-57.5 - parent: 8364 - type: Transform -- uid: 21007 - type: DisposalPipe - components: - - pos: 66.5,-55.5 - parent: 8364 - type: Transform -- uid: 21008 - type: DisposalPipe - components: - - pos: 66.5,-54.5 - parent: 8364 - type: Transform -- uid: 21009 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-61.5 - parent: 8364 - type: Transform -- uid: 21010 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-56.5 - parent: 8364 - type: Transform -- uid: 21011 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-56.5 - parent: 8364 - type: Transform -- uid: 21012 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-53.5 - parent: 8364 - type: Transform -- uid: 21013 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-53.5 - parent: 8364 - type: Transform -- uid: 21014 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-60.5 - parent: 8364 - type: Transform -- uid: 21015 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-60.5 - parent: 8364 - type: Transform -- uid: 21016 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-60.5 - parent: 8364 - type: Transform -- uid: 21017 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-60.5 - parent: 8364 - type: Transform -- uid: 21018 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-60.5 - parent: 8364 - type: Transform -- uid: 21019 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-60.5 - parent: 8364 - type: Transform -- uid: 21020 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-60.5 - parent: 8364 - type: Transform -- uid: 21021 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-60.5 - parent: 8364 - type: Transform -- uid: 21022 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-60.5 - parent: 8364 - type: Transform -- uid: 21023 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-60.5 - parent: 8364 - type: Transform -- uid: 21024 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-60.5 - parent: 8364 - type: Transform -- uid: 21025 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-60.5 - parent: 8364 - type: Transform -- uid: 21026 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-60.5 - parent: 8364 - type: Transform -- uid: 21027 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 79.5,-60.5 - parent: 8364 - type: Transform -- uid: 21028 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 80.5,-60.5 - parent: 8364 - type: Transform -- uid: 21029 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 81.5,-60.5 - parent: 8364 - type: Transform -- uid: 21030 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-59.5 - parent: 8364 - type: Transform -- uid: 21031 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-58.5 - parent: 8364 - type: Transform -- uid: 21032 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-57.5 - parent: 8364 - type: Transform -- uid: 21033 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-56.5 - parent: 8364 - type: Transform -- uid: 21034 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-55.5 - parent: 8364 - type: Transform -- uid: 21035 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-54.5 - parent: 8364 - type: Transform -- uid: 21036 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-53.5 - parent: 8364 - type: Transform -- uid: 21037 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-52.5 - parent: 8364 - type: Transform -- uid: 21038 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-51.5 - parent: 8364 - type: Transform -- uid: 21039 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-50.5 - parent: 8364 - type: Transform -- uid: 21040 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-49.5 - parent: 8364 - type: Transform -- uid: 21041 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-48.5 - parent: 8364 - type: Transform -- uid: 21042 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-47.5 - parent: 8364 - type: Transform -- uid: 21043 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-46.5 - parent: 8364 - type: Transform -- uid: 21044 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-45.5 - parent: 8364 - type: Transform -- uid: 21045 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-44.5 - parent: 8364 - type: Transform -- uid: 21046 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-43.5 - parent: 8364 - type: Transform -- uid: 21047 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-42.5 - parent: 8364 - type: Transform -- uid: 21048 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-41.5 - parent: 8364 - type: Transform -- uid: 21049 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 81.5,-39.5 - parent: 8364 - type: Transform -- uid: 21050 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 81.5,-38.5 - parent: 8364 - type: Transform -- uid: 21051 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 81.5,-37.5 - parent: 8364 - type: Transform -- uid: 21052 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 80.5,-36.5 - parent: 8364 - type: Transform -- uid: 21053 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-36.5 - parent: 8364 - type: Transform -- uid: 21054 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 78.5,-36.5 - parent: 8364 - type: Transform -- uid: 21055 - type: DisposalPipe - components: - - pos: 77.5,-37.5 - parent: 8364 - type: Transform -- uid: 21056 - type: DisposalPipe - components: - - pos: 77.5,-38.5 - parent: 8364 - type: Transform -- uid: 21057 - type: DisposalPipe - components: - - pos: 77.5,-39.5 - parent: 8364 - type: Transform -- uid: 21058 - type: DisposalPipe - components: - - pos: 77.5,-40.5 - parent: 8364 - type: Transform -- uid: 21059 - type: DisposalPipe - components: - - pos: 77.5,-41.5 - parent: 8364 - type: Transform -- uid: 21060 - type: DisposalPipe - components: - - pos: 77.5,-42.5 - parent: 8364 - type: Transform -- uid: 21061 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-43.5 - parent: 8364 - type: Transform -- uid: 21062 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-43.5 - parent: 8364 - type: Transform -- uid: 21063 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-43.5 - parent: 8364 - type: Transform -- uid: 21064 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-43.5 - parent: 8364 - type: Transform -- uid: 21065 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-43.5 - parent: 8364 - type: Transform -- uid: 21066 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-43.5 - parent: 8364 - type: Transform -- uid: 21067 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-43.5 - parent: 8364 - type: Transform -- uid: 21068 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-43.5 - parent: 8364 - type: Transform -- uid: 21069 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 77.5,-36.5 - parent: 8364 - type: Transform -- uid: 21070 - type: DisposalJunction - components: - - pos: 81.5,-36.5 - parent: 8364 - type: Transform -- uid: 21071 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 81.5,-40.5 - parent: 8364 - type: Transform -- uid: 21072 - type: DisposalBend - components: - - pos: 82.5,-40.5 - parent: 8364 - type: Transform -- uid: 21073 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 82.5,-60.5 - parent: 8364 - type: Transform -- uid: 21074 - type: DisposalPipe - components: - - pos: 81.5,-35.5 - parent: 8364 - type: Transform -- uid: 21075 - type: DisposalPipe - components: - - pos: 81.5,-34.5 - parent: 8364 - type: Transform -- uid: 21076 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 82.5,-33.5 - parent: 8364 - type: Transform -- uid: 21077 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 83.5,-33.5 - parent: 8364 - type: Transform -- uid: 21078 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 85.5,-31.5 - parent: 8364 - type: Transform -- uid: 21079 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 85.5,-30.5 - parent: 8364 - type: Transform -- uid: 21080 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 85.5,-29.5 - parent: 8364 - type: Transform -- uid: 21081 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 85.5,-28.5 - parent: 8364 - type: Transform -- uid: 21082 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 85.5,-27.5 - parent: 8364 - type: Transform -- uid: 21083 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 85.5,-26.5 - parent: 8364 - type: Transform -- uid: 21084 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 85.5,-25.5 - parent: 8364 - type: Transform -- uid: 21085 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 85.5,-24.5 - parent: 8364 - type: Transform -- uid: 21086 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 84.5,-23.5 - parent: 8364 - type: Transform -- uid: 21087 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 83.5,-23.5 - parent: 8364 - type: Transform -- uid: 21088 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 82.5,-23.5 - parent: 8364 - type: Transform -- uid: 21089 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 81.5,-23.5 - parent: 8364 - type: Transform -- uid: 21090 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 80.5,-23.5 - parent: 8364 - type: Transform -- uid: 21091 - type: IntercomSecurity - components: - - pos: 17.5,36.5 - parent: 8364 - type: Transform -- uid: 21092 - type: IntercomSecurity - components: - - pos: -10.5,28.5 - parent: 8364 - type: Transform -- uid: 21093 - type: DisposalPipe - components: - - pos: 85.5,-22.5 - parent: 8364 - type: Transform -- uid: 21094 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 74.5,-20.5 - parent: 8364 - type: Transform -- uid: 21095 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 84.5,-21.5 - parent: 8364 - type: Transform -- uid: 21096 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 83.5,-21.5 - parent: 8364 - type: Transform -- uid: 21097 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 82.5,-21.5 - parent: 8364 - type: Transform -- uid: 21098 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 81.5,-21.5 - parent: 8364 - type: Transform -- uid: 21099 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 80.5,-21.5 - parent: 8364 - type: Transform -- uid: 21100 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 79.5,-21.5 - parent: 8364 - type: Transform -- uid: 21101 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-21.5 - parent: 8364 - type: Transform -- uid: 21102 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-21.5 - parent: 8364 - type: Transform -- uid: 21103 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-21.5 - parent: 8364 - type: Transform -- uid: 21104 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-21.5 - parent: 8364 - type: Transform -- uid: 21105 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 74.5,-19.5 - parent: 8364 - type: Transform -- uid: 21106 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 74.5,-18.5 - parent: 8364 - type: Transform -- uid: 21107 - type: DisposalTrunk - components: - - pos: 74.5,-17.5 - parent: 8364 - type: Transform -- uid: 21108 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 74.5,-21.5 - parent: 8364 - type: Transform -- uid: 21109 - type: DisposalBend - components: - - pos: 85.5,-21.5 - parent: 8364 - type: Transform -- uid: 21110 - type: IntercomEngineering - components: - - rot: 3.141592653589793 rad - pos: 6.5,-49.5 - parent: 8364 - type: Transform -- uid: 21111 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 85.5,-32.5 - parent: 8364 - type: Transform -- uid: 21112 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 84.5,-32.5 - parent: 8364 - type: Transform -- uid: 21113 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 84.5,-33.5 - parent: 8364 - type: Transform -- uid: 21114 - type: DisposalJunction - components: - - pos: 85.5,-23.5 - parent: 8364 - type: Transform -- uid: 21115 - type: BookAtmosAirAlarms - components: - - pos: 62.036938,-2.3704655 - parent: 8364 - type: Transform -- uid: 21116 - type: TableGlass - components: - - pos: 74.5,-18.5 - parent: 8364 - type: Transform -- uid: 21117 - type: TableGlass - components: - - pos: 74.5,-19.5 - parent: 8364 - type: Transform -- uid: 21118 - type: TableGlass - components: - - pos: 74.5,-20.5 - parent: 8364 - type: Transform -- uid: 21119 - type: Table - components: - - pos: 73.5,-16.5 - parent: 8364 - type: Transform -- uid: 21120 - type: Table - components: - - pos: 74.5,-16.5 - parent: 8364 - type: Transform -- uid: 21121 - type: Table - components: - - pos: 74.5,-31.5 - parent: 8364 - type: Transform -- uid: 21122 - type: Table - components: - - pos: 74.5,-30.5 - parent: 8364 - type: Transform -- uid: 21123 - type: Table - components: - - pos: 69.5,-29.5 - parent: 8364 - type: Transform -- uid: 21124 - type: Table - components: - - pos: 63.5,-22.5 - parent: 8364 - type: Transform -- uid: 21125 - type: Table - components: - - pos: 63.5,-21.5 - parent: 8364 - type: Transform -- uid: 21126 - type: Table - components: - - pos: 63.5,-20.5 - parent: 8364 - type: Transform -- uid: 21127 - type: Table - components: - - pos: 63.5,-19.5 - parent: 8364 - type: Transform -- uid: 21128 - type: AsteroidRock - components: - - pos: 55.5,-80.5 - parent: 8364 - type: Transform -- uid: 21129 - type: WaterCooler - components: - - pos: 52.5,-37.5 - parent: 8364 - type: Transform -- uid: 21130 - type: Grille - components: - - pos: 57.5,-38.5 - parent: 8364 - type: Transform -- uid: 21131 - type: Table - components: - - pos: 52.5,-22.5 - parent: 8364 - type: Transform -- uid: 21132 - type: Table - components: - - pos: 51.5,-22.5 - parent: 8364 - type: Transform -- uid: 21133 - type: Table - components: - - pos: 51.5,-23.5 - parent: 8364 - type: Transform -- uid: 21134 - type: Table - components: - - pos: 61.5,-19.5 - parent: 8364 - type: Transform -- uid: 21135 - type: Table - components: - - pos: 60.5,-19.5 - parent: 8364 - type: Transform -- uid: 21136 - type: Table - components: - - pos: 61.5,-23.5 - parent: 8364 - type: Transform -- uid: 21137 - type: Table - components: - - pos: 60.5,-23.5 - parent: 8364 - type: Transform -- uid: 21138 - type: Table - components: - - pos: 53.5,-20.5 - parent: 8364 - type: Transform -- uid: 21139 - type: BaseComputer - components: - - rot: 3.141592653589793 rad - pos: 54.5,-20.5 - parent: 8364 - type: Transform -- uid: 21140 - type: AirlockScienceGlassLocked - components: - - pos: 64.5,-26.5 - parent: 8364 - type: Transform -- uid: 21141 - type: CarpetOrange - components: - - pos: 52.5,-36.5 - parent: 8364 - type: Transform -- uid: 21142 - type: CarpetGreen - components: - - pos: 55.5,-34.5 - parent: 8364 - type: Transform -- uid: 21143 - type: Table - components: - - pos: 57.5,-31.5 - parent: 8364 - type: Transform -- uid: 21144 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-47.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21145 - type: ClothingMaskBreath - components: - - pos: 54.372658,-24.335497 - parent: 8364 - type: Transform -- uid: 21146 - type: FoodBoxDonkpocketPizza - components: - - pos: 51.57733,-33.333336 - parent: 8364 - type: Transform -- uid: 21147 - type: DrinkMugMoebius - components: - - pos: 54.220806,-33.552086 - parent: 8364 - type: Transform -- uid: 21148 - type: AirlockScienceGlassLocked - components: - - name: Giga Break Room - type: MetaData - - pos: 54.5,-38.5 - parent: 8364 - type: Transform -- uid: 21149 - type: TableReinforced - components: - - pos: 54.5,-24.5 - parent: 8364 - type: Transform -- uid: 21150 - type: WallShuttle - components: - - pos: 66.5,-75.5 - parent: 8364 - type: Transform -- uid: 21151 - type: ShuttleWindow - components: - - pos: 67.5,-75.5 - parent: 8364 - type: Transform -- uid: 21152 - type: WallShuttle - components: - - pos: 65.5,-77.5 - parent: 8364 - type: Transform -- uid: 21153 - type: WallShuttle - components: - - pos: 65.5,-76.5 - parent: 8364 - type: Transform -- uid: 21154 - type: PosterLegitHighClassMartini - components: - - pos: 48.5,-33.5 - parent: 8364 - type: Transform -- uid: 21155 - type: Table - components: - - pos: 70.5,-53.5 - parent: 8364 - type: Transform -- uid: 21156 - type: Table - components: - - pos: 69.5,-53.5 - parent: 8364 - type: Transform -- uid: 21157 - type: Grille - components: - - pos: 76.5,-48.5 - parent: 8364 - type: Transform -- uid: 21158 - type: Table - components: - - pos: 76.5,-54.5 - parent: 8364 - type: Transform -- uid: 21159 - type: ClosetRadiationSuitFilled - components: - - pos: 79.5,-54.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21160 - type: ClosetFireFilled - components: - - pos: 80.5,-54.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21161 - type: AnomalyScanner - components: - - pos: 74.46565,-49.3431 - parent: 8364 - type: Transform -- uid: 21162 - type: Table - components: - - pos: 79.5,-43.5 - parent: 8364 - type: Transform -- uid: 21163 - type: Table - components: - - pos: 80.5,-43.5 - parent: 8364 - type: Transform -- uid: 21164 - type: Table - components: - - pos: 80.5,-44.5 - parent: 8364 - type: Transform -- uid: 21165 - type: Table - components: - - pos: 80.5,-45.5 - parent: 8364 - type: Transform -- uid: 21166 - type: Table - components: - - pos: 80.5,-46.5 - parent: 8364 - type: Transform -- uid: 21167 - type: Table - components: - - pos: 80.5,-47.5 - parent: 8364 - type: Transform -- uid: 21168 - type: Table - components: - - pos: 79.5,-47.5 - parent: 8364 - type: Transform -- uid: 21169 - type: Table - components: - - pos: 69.5,-34.5 - parent: 8364 - type: Transform -- uid: 21170 - type: Table - components: - - pos: 69.5,-35.5 - parent: 8364 - type: Transform -- uid: 21171 - type: Table - components: - - pos: 70.5,-33.5 - parent: 8364 - type: Transform -- uid: 21172 - type: Table - components: - - pos: 71.5,-37.5 - parent: 8364 - type: Transform -- uid: 21173 - type: Table - components: - - pos: 77.5,-26.5 - parent: 8364 - type: Transform -- uid: 21174 - type: Intercom - components: - - pos: -40.5,0.5 - parent: 8364 - type: Transform -- uid: 21175 - type: Table - components: - - pos: 80.5,-26.5 - parent: 8364 - type: Transform -- uid: 21176 - type: SheetGlass - components: - - pos: 73.74213,-16.318996 - parent: 8364 - type: Transform -- uid: 21177 - type: SheetSteel - components: - - pos: 73.38275,-16.428371 - parent: 8364 - type: Transform -- uid: 21178 - type: ToolboxMechanicalFilled - components: - - pos: 73.5,-16.5 - parent: 8364 - type: Transform -- uid: 21179 - type: PowerCellRecharger - components: - - pos: 74.5,-16.5 - parent: 8364 - type: Transform -- uid: 21180 - type: Beaker - components: - - pos: 74.27338,-18.287746 - parent: 8364 - type: Transform -- uid: 21181 - type: LargeBeaker - components: - - pos: 74.664,-18.318996 - parent: 8364 - type: Transform -- uid: 21182 - type: Dropper - components: - - pos: 74.3515,-18.443996 - parent: 8364 - type: Transform -- uid: 21183 - type: CableApcStack - components: - - pos: 74.33588,-19.006496 - parent: 8364 - type: Transform -- uid: 21184 - type: CableApcStack - components: - - pos: 74.7265,-19.100246 - parent: 8364 - type: Transform -- uid: 21185 - type: MicroLaserStockPart - components: - - pos: 74.25775,-19.490871 - parent: 8364 - type: Transform -- uid: 21186 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-42.5 - parent: 8364 - type: Transform -- uid: 21187 - type: MicroManipulatorStockPart - components: - - rot: 0.0004530529258772731 rad - pos: 74.7369,-19.349794 - parent: 8364 - type: Transform -- uid: 21188 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-42.5 - parent: 8364 - type: Transform -- uid: 21189 - type: FaxMachineCaptain - components: - - pos: 5.5,-15.5 - parent: 8364 - type: Transform - - name: Captain - type: FaxMachine -- uid: 21190 - type: CapacitorStockPart - components: - - pos: 74.3515,-19.897121 - parent: 8364 - type: Transform -- uid: 21191 - type: Protolathe - components: - - pos: 71.5,-19.5 - parent: 8364 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold - type: MaterialStorage -- uid: 21192 - type: ComputerResearchAndDevelopment - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-20.5 - parent: 8364 - type: Transform -- uid: 21193 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-20.5 - parent: 8364 - type: Transform -- uid: 21194 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 70.5,-17.5 - parent: 8364 - type: Transform -- uid: 21195 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-23.5 - parent: 8364 - type: Transform -- uid: 21196 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 62.5,-17.5 - parent: 8364 - type: Transform -- uid: 21197 - type: ExosuitFabricator - components: - - pos: 59.5,-19.5 - parent: 8364 - type: Transform -- uid: 21198 - type: ScanningModuleStockPart - components: - - pos: 74.72912,-20.240425 - parent: 8364 - type: Transform -- uid: 21199 - type: MachineArtifactAnalyzer - components: - - pos: 71.5,-40.5 - parent: 8364 - type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 17552 - type: SignalReceiver -- uid: 21200 - type: FaxMachineBase - components: - - pos: 71.5,-37.5 - parent: 8364 - type: Transform - - name: RD - type: FaxMachine -- uid: 21201 - type: TableGlass - components: - - pos: 71.5,-15.5 - parent: 8364 - type: Transform -- uid: 21202 - type: TableGlass - components: - - pos: 61.5,-15.5 - parent: 8364 - type: Transform -- uid: 21203 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 57.5,-30.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 21204 - type: Railing - components: - - pos: 71.5,-14.5 - parent: 8364 - type: Transform -- uid: 21205 - type: Railing - components: - - pos: 69.5,-14.5 - parent: 8364 - type: Transform -- uid: 21206 - type: Railing - components: - - pos: 70.5,-14.5 - parent: 8364 - type: Transform -- uid: 21207 - type: Railing - components: - - pos: 63.5,-14.5 - parent: 8364 - type: Transform -- uid: 21208 - type: Railing - components: - - pos: 62.5,-14.5 - parent: 8364 - type: Transform -- uid: 21209 - type: Railing - components: - - pos: 61.5,-14.5 - parent: 8364 - type: Transform -- uid: 21210 - type: Bed - components: - - pos: 71.5,-35.5 - parent: 8364 - type: Transform -- uid: 21211 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-14.5 - parent: 8364 - type: Transform -- uid: 21212 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: 60.5,-14.5 - parent: 8364 - type: Transform -- uid: 21213 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-17.5 - parent: 8364 - type: Transform -- uid: 21214 - type: LargeBeaker - components: - - pos: 60.5,-17.5 - parent: 8364 - type: Transform -- uid: 21215 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 59.5,-17.5 - parent: 8364 - type: Transform -- uid: 21216 - type: ClosetFireFilled - components: - - pos: 65.5,-19.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 21217 - type: Table - components: - - pos: 60.5,-17.5 - parent: 8364 - type: Transform -- uid: 21218 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-19.5 - parent: 8364 - type: Transform -- uid: 21219 - type: Paper - components: - - pos: 61.5,-15.5 - parent: 8364 - type: Transform -- uid: 21220 - type: Paper - components: - - pos: 61.5,-15.5 - parent: 8364 - type: Transform -- uid: 21221 - type: Paper - components: - - pos: 61.5,-15.5 - parent: 8364 - type: Transform -- uid: 21222 - type: Paper - components: - - pos: 71.5,-15.5 - parent: 8364 - type: Transform -- uid: 21223 - type: Paper - components: - - pos: 71.5,-15.5 - parent: 8364 - type: Transform -- uid: 21224 - type: Paper - components: - - pos: 71.5,-15.5 - parent: 8364 - type: Transform -- uid: 21225 - type: Pen - components: - - pos: 61.5,-15.5 - parent: 8364 - type: Transform -- uid: 21226 - type: Pen - components: - - pos: 71.5,-15.5 - parent: 8364 - type: Transform -- uid: 21227 - type: ToolboxElectricalFilled - components: - - pos: 61.5,-19.5 - parent: 8364 - type: Transform -- uid: 21228 - type: Multitool - components: - - pos: 61.5,-19.5 - parent: 8364 - type: Transform -- uid: 21229 - type: ClothingHeadHatWelding - components: - - pos: 61.5,-19.5 - parent: 8364 - type: Transform -- uid: 21230 - type: SheetGlass - components: - - pos: 60.819416,-19.367544 - parent: 8364 - type: Transform -- uid: 21231 - type: FaxMachineBase - components: - - pos: 4.5,-63.5 - parent: 8364 - type: Transform - - name: CE - type: FaxMachine -- uid: 21232 - type: SheetSteel - components: - - pos: 60.36629,-23.555044 - parent: 8364 - type: Transform -- uid: 21233 - type: FaxMachineBase - components: - - pos: 12.5,41.5 - parent: 8364 - type: Transform - - name: HoS - type: FaxMachine -- uid: 21234 - type: ToolboxElectricalFilled - components: - - pos: 61.5,-23.5 - parent: 8364 - type: Transform -- uid: 21235 - type: WeldingFuelTankFull - components: - - pos: 52.5,-20.5 - parent: 8364 - type: Transform -- uid: 21236 - type: Welder - components: - - pos: 61.5,-19.5 - parent: 8364 - type: Transform -- uid: 21237 - type: FaxMachineBase - components: - - pos: -21.5,-15.5 - parent: 8364 - type: Transform - - name: Mail Room - type: FaxMachine -- uid: 21238 - type: FaxMachineBase - components: - - pos: 59.5,-2.5 - parent: 8364 - type: Transform - - name: Library - type: FaxMachine -- uid: 21239 - type: IntercomEngineering - components: - - pos: 6.5,-64.5 - parent: 8364 - type: Transform -- uid: 21240 - type: ClothingBeltUtility - components: - - pos: 60.5,-19.5 - parent: 8364 - type: Transform -- uid: 21241 - type: Intercom - components: - - pos: 6.5,0.5 - parent: 8364 - type: Transform -- uid: 21242 - type: PowerCellRecharger - components: - - pos: 63.5,-22.5 - parent: 8364 - type: Transform -- uid: 21243 - type: BedsheetRD - components: - - pos: 71.5,-35.5 - parent: 8364 - type: Transform -- uid: 21244 - type: Bed - components: - - pos: 15.5,41.5 - parent: 8364 - type: Transform -- uid: 21245 - type: BedsheetHOS - components: - - pos: 15.5,41.5 - parent: 8364 - type: Transform -- uid: 21246 - type: ClothingNeckMantleHOS - components: - - pos: 16.528389,41.590538 - parent: 8364 - type: Transform -- uid: 21247 - type: ClothingNeckMantleRD - components: - - pos: 72.42283,-33.371964 - parent: 8364 - type: Transform -- uid: 21248 - type: Crowbar - components: - - pos: 63.478237,-20.930044 - parent: 8364 - type: Transform -- uid: 21249 - type: Medkit - components: - - pos: 63.5,-19.5 - parent: 8364 - type: Transform -- uid: 21250 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-20.5 - parent: 8364 - type: Transform -- uid: 21251 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-20.5 - parent: 8364 - type: Transform -- uid: 21252 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-22.5 - parent: 8364 - type: Transform -- uid: 21253 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-22.5 - parent: 8364 - type: Transform -- uid: 21254 - type: TwoWayLever - components: - - pos: 58.5,-22.5 - parent: 8364 - type: Transform -- uid: 21255 - type: TwoWayLever - components: - - pos: 58.5,-20.5 - parent: 8364 - type: Transform -- uid: 21256 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-22.5 - parent: 8364 - type: Transform -- uid: 21257 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-24.5 - parent: 8364 - type: Transform -- uid: 21258 - type: WindoorScienceLocked - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-23.5 - parent: 8364 - type: Transform -- uid: 21259 - type: Retractor - components: - - pos: 51.721848,-23.02736 - parent: 8364 - type: Transform -- uid: 21260 - type: Scalpel - components: - - pos: 52.096134,-22.664438 - parent: 8364 - type: Transform -- uid: 21261 - type: SawElectric - components: - - pos: 52.36176,-22.383188 - parent: 8364 - type: Transform -- uid: 21262 - type: Cautery - components: - - pos: 52.5,-22.5 - parent: 8364 - type: Transform -- uid: 21263 - type: Hemostat - components: - - rot: 0.000406441162340343 rad - pos: 52.576862,-22.263298 - parent: 8364 - type: Transform -- uid: 21264 - type: ClothingHandsGlovesLatex - components: - - pos: 51.5,-22.5 - parent: 8364 - type: Transform -- uid: 21265 - type: ClothingMaskSterile - components: - - pos: 51.5,-22.5 - parent: 8364 - type: Transform -- uid: 21266 - type: BoxBodyBag - components: - - pos: 51.5,-23.5 - parent: 8364 - type: Transform -- uid: 21267 - type: Pen - components: - - pos: 51.5,-23.5 - parent: 8364 - type: Transform -- uid: 21268 - type: ClothingNeckMantleHOP - components: - - pos: -11.38187,-21.310575 - parent: 8364 - type: Transform -- uid: 21269 - type: BoxBeaker - components: - - pos: 69.43082,-28.496725 - parent: 8364 - type: Transform -- uid: 21270 - type: ToolboxMechanicalFilled - components: - - pos: 53.5,-20.5 - parent: 8364 - type: Transform -- uid: 21271 - type: Crowbar - components: - - pos: 53.5,-20.5 - parent: 8364 - type: Transform -- uid: 21272 - type: BoxFolderWhite - components: - - pos: 57.5,-31.5 - parent: 8364 - type: Transform -- uid: 21273 - type: Pen - components: - - pos: 57.5,-31.5 - parent: 8364 - type: Transform -- uid: 21274 - type: GasThermoMachineFreezer - components: - - pos: 57.5,-29.5 - parent: 8364 - type: Transform -- uid: 21275 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-31.5 - parent: 8364 - type: Transform -- uid: 21276 - type: ResearchAndDevelopmentServer - components: - - pos: 52.5,-31.5 - parent: 8364 - type: Transform -- uid: 21277 - type: WeaponRevolverDeckard - components: - - flags: InContainer - type: MetaData - - parent: 20886 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 21278 - type: BedsheetHOP - components: - - pos: -10.5,-27.5 - parent: 8364 - type: Transform -- uid: 21279 - type: AirlockScienceGlassLocked - components: - - pos: 64.5,-27.5 - parent: 8364 - type: Transform -- uid: 21280 - type: CarpetOrange - components: - - pos: 53.5,-35.5 - parent: 8364 - type: Transform -- uid: 21281 - type: CarpetOrange - components: - - pos: 53.5,-36.5 - parent: 8364 - type: Transform -- uid: 21282 - type: CarpetOrange - components: - - pos: 52.5,-35.5 - parent: 8364 - type: Transform -- uid: 21283 - type: CarpetGreen - components: - - pos: 55.5,-35.5 - parent: 8364 - type: Transform -- uid: 21284 - type: BedsheetQM - components: - - pos: -33.5,-31.5 - parent: 8364 - type: Transform -- uid: 21285 - type: CarpetGreen - components: - - pos: 57.5,-35.5 - parent: 8364 - type: Transform -- uid: 21286 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-18.5 - parent: 8364 - type: Transform -- uid: 21287 - type: RadioHandheld - components: - - pos: 39.489,-18.457443 - parent: 8364 - type: Transform -- uid: 21288 - type: Screwdriver - components: - - pos: 39.535873,-18.379318 - parent: 8364 - type: Transform - - nextAttack: 4724.4472423 - type: MeleeWeapon -- uid: 21289 - type: ClothingNeckMantleCap - components: - - pos: 8.566137,-22.541813 - parent: 8364 - type: Transform -- uid: 21290 - type: ClosetRadiationSuitFilled - components: - - pos: -1.5,-27.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21291 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-17.5 - parent: 8364 - type: Transform -- uid: 21292 - type: CableApcExtension - components: - - pos: 12.5,-34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21293 - type: CableApcExtension - components: - - pos: 12.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21294 - type: CableApcExtension - components: - - pos: 12.5,-32.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21295 - type: CableApcExtension - components: - - pos: 12.5,-31.5 - parent: 8364 - type: Transform -- uid: 21296 - type: ClothingOuterWinterAtmos - components: - - pos: 4.4599648,6.546602 - parent: 8364 - type: Transform -- uid: 21297 - type: OxygenCanister - components: - - pos: 62.5,-36.5 - parent: 8364 - type: Transform -- uid: 21298 - type: OxygenCanister - components: - - pos: 62.5,-37.5 - parent: 8364 - type: Transform -- uid: 21299 - type: OxygenCanister - components: - - pos: 61.5,-36.5 - parent: 8364 - type: Transform -- uid: 21300 - type: OxygenCanister - components: - - pos: 61.5,-37.5 - parent: 8364 - type: Transform -- uid: 21301 - type: NitrogenCanister - components: - - pos: 60.5,-36.5 - parent: 8364 - type: Transform -- uid: 21302 - type: NitrogenCanister - components: - - pos: 60.5,-37.5 - parent: 8364 - type: Transform -- uid: 21303 - type: CarbonDioxideCanister - components: - - pos: 59.5,-36.5 - parent: 8364 - type: Transform -- uid: 21304 - type: CarbonDioxideCanister - components: - - pos: 59.5,-37.5 - parent: 8364 - type: Transform -- uid: 21305 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-33.5 - parent: 8364 - type: Transform -- uid: 21306 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-34.5 - parent: 8364 - type: Transform -- uid: 21307 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-35.5 - parent: 8364 - type: Transform -- uid: 21308 - type: EmergencyLight - components: - - pos: -2.5,1.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21309 - type: EmergencyLight - components: - - pos: 0.5,-29.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21310 - type: EmergencyLight - components: - - pos: 20.5,-12.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21311 - type: EmergencyLight - components: - - pos: 35.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21312 - type: EmergencyLight - components: - - pos: 25.5,0.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21313 - type: EmergencyLight - components: - - pos: -7.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21314 - type: SpawnPointResearchDirector - components: - - pos: 70.5,-34.5 - parent: 8364 - type: Transform -- uid: 21315 - type: Paper - components: - - pos: 69.5,-34.5 - parent: 8364 - type: Transform -- uid: 21316 - type: Paper - components: - - pos: 69.5,-34.5 - parent: 8364 - type: Transform -- uid: 21317 - type: Paper - components: - - pos: 69.5,-34.5 - parent: 8364 - type: Transform -- uid: 21318 - type: Pen - components: - - pos: 69.5,-34.5 - parent: 8364 - type: Transform -- uid: 21319 - type: BoxFolderWhite - components: - - pos: 69.5,-35.5 - parent: 8364 - type: Transform -- uid: 21320 - type: PottedPlantRandom - components: - - pos: 69.5,-37.5 - parent: 8364 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 21321 - type: Rack - components: - - pos: 72.5,-33.5 - parent: 8364 - type: Transform -- uid: 21322 - type: Rack - components: - - pos: 72.5,-34.5 - parent: 8364 - type: Transform -- uid: 21323 - type: Rack - components: - - pos: 72.5,-35.5 - parent: 8364 - type: Transform -- uid: 21324 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 72.5,-35.5 - parent: 8364 - type: Transform -- uid: 21325 - type: LockerResearchDirectorFilled - components: - - pos: 72.5,-37.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 21326 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,32.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21327 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 53.5,-37.5 - parent: 8364 - type: Transform -- uid: 21328 - type: TableWood - components: - - pos: 56.5,-35.5 - parent: 8364 - type: Transform -- uid: 21329 - type: Bookshelf - components: - - pos: 57.5,-33.5 - parent: 8364 - type: Transform -- uid: 21330 - type: Poweredlight - components: - - pos: 53.5,-39.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21331 - type: TableReinforced - components: - - pos: 54.5,-33.5 - parent: 8364 - type: Transform -- uid: 21332 - type: Bookshelf - components: - - pos: 55.5,-33.5 - parent: 8364 - type: Transform -- uid: 21333 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-35.5 - parent: 8364 - type: Transform -- uid: 21334 - type: TableWood - components: - - pos: 56.5,-34.5 - parent: 8364 - type: Transform -- uid: 21335 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-34.5 - parent: 8364 - type: Transform -- uid: 21336 - type: WallReinforced - components: - - pos: 56.5,-54.5 - parent: 8364 - type: Transform -- uid: 21337 - type: Grille - components: - - pos: 56.5,-38.5 - parent: 8364 - type: Transform -- uid: 21338 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-34.5 - parent: 8364 - type: Transform -- uid: 21339 - type: KitchenReagentGrinder - components: - - pos: 69.5,-27.5 - parent: 8364 - type: Transform -- uid: 21340 - type: Grille - components: - - pos: 51.5,-38.5 - parent: 8364 - type: Transform -- uid: 21341 - type: ClosetBase - components: - - pos: 55.5,-24.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21342 - type: NitrousOxideTankFilled - components: - - pos: 54.482033,-24.522997 - parent: 8364 - type: Transform - - nextAttack: 4442.2490056 - type: MeleeWeapon -- uid: 21343 - type: BagpipeInstrument - components: - - pos: 57.44085,-57.432228 - parent: 8364 - type: Transform -- uid: 21344 - type: WallReinforced - components: - - pos: 51.5,-54.5 - parent: 8364 - type: Transform -- uid: 21345 - type: WallReinforced - components: - - pos: 52.5,-54.5 - parent: 8364 - type: Transform -- uid: 21346 - type: CableApcExtension - components: - - pos: 56.5,-56.5 - parent: 8364 - type: Transform -- uid: 21347 - type: WallReinforced - components: - - pos: 55.5,-54.5 - parent: 8364 - type: Transform -- uid: 21348 - type: WallReinforced - components: - - pos: 54.5,-54.5 - parent: 8364 - type: Transform -- uid: 21349 - type: GasThermoMachineFreezer - components: - - pos: 63.5,-45.5 - parent: 8364 - type: Transform -- uid: 21350 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-43.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 21351 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21352 - type: APCBasic - components: - - pos: 60.5,-42.5 - parent: 8364 - type: Transform -- uid: 21353 - type: Rack - components: - - pos: 55.5,-43.5 - parent: 8364 - type: Transform -- uid: 21354 - type: GasFilter - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-51.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 21355 - type: Window - components: - - pos: 57.5,-38.5 - parent: 8364 - type: Transform -- uid: 21356 - type: Catwalk - components: - - pos: 53.5,-55.5 - parent: 8364 - type: Transform -- uid: 21357 - type: GasFilter - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-51.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 21358 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21359 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-44.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 21360 - type: GasThermoMachineHeater - components: - - pos: 63.5,-47.5 - parent: 8364 - type: Transform -- uid: 21361 - type: WallReinforced - components: - - pos: 59.5,-42.5 - parent: 8364 - type: Transform -- uid: 21362 - type: ReinforcedPlasmaWindow - components: - - pos: 53.5,-49.5 - parent: 8364 - type: Transform -- uid: 21363 - type: Grille - components: - - pos: 54.5,-51.5 - parent: 8364 - type: Transform -- uid: 21364 - type: Grille - components: - - pos: 52.5,-50.5 - parent: 8364 - type: Transform -- uid: 21365 - type: CableApcExtension - components: - - pos: 60.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21366 - type: CableApcExtension - components: - - pos: 62.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21367 - type: AirlockExternalGlassLocked - components: - - pos: 53.5,-54.5 - parent: 8364 - type: Transform -- uid: 21368 - type: CableApcExtension - components: - - pos: 55.5,-44.5 - parent: 8364 - type: Transform -- uid: 21369 - type: Window - components: - - pos: 51.5,-38.5 - parent: 8364 - type: Transform -- uid: 21370 - type: Grille - components: - - pos: 51.5,-47.5 - parent: 8364 - type: Transform -- uid: 21371 - type: ReinforcedWindow - components: - - pos: 52.5,-47.5 - parent: 8364 - type: Transform -- uid: 21372 - type: ReinforcedWindow - components: - - pos: 64.5,-41.5 - parent: 8364 - type: Transform -- uid: 21373 - type: WallShuttle - components: - - pos: 70.5,-79.5 - parent: 8364 - type: Transform -- uid: 21374 - type: WallShuttle - components: - - pos: 65.5,-80.5 - parent: 8364 - type: Transform -- uid: 21375 - type: Grille - components: - - pos: 67.5,-75.5 - parent: 8364 - type: Transform -- uid: 21376 - type: CableApcExtension - components: - - pos: 53.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21377 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-49.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21378 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-56.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21379 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-51.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21380 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-45.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21381 - type: GasPassiveGate - components: - - pos: 20.5,-60.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 21382 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21383 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21384 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21385 - type: GasPipeStraight - components: - - pos: 62.5,-47.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21386 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-50.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21387 - type: SignAnomaly2 - components: - - pos: 68.5,-48.5 - parent: 8364 - type: Transform -- uid: 21388 - type: PoweredSmallLight - components: - - pos: -39.5,-48.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21389 - type: Rack - components: - - pos: 65.5,-52.5 - parent: 8364 - type: Transform -- uid: 21390 - type: Rack - components: - - pos: 65.5,-53.5 - parent: 8364 - type: Transform -- uid: 21391 - type: Crowbar - components: - - pos: 65.5,-53.5 - parent: 8364 - type: Transform -- uid: 21392 - type: Wrench - components: - - pos: 65.5,-53.5 - parent: 8364 - type: Transform -- uid: 21393 - type: HandLabeler - components: - - pos: 65.5,-53.5 - parent: 8364 - type: Transform -- uid: 21394 - type: ClothingMaskBreath - components: - - pos: 65.5,-52.5 - parent: 8364 - type: Transform -- uid: 21395 - type: ClothingMaskBreath - components: - - pos: 65.5,-52.5 - parent: 8364 - type: Transform -- uid: 21396 - type: ClothingMaskBreath - components: - - pos: 65.5,-52.5 - parent: 8364 - type: Transform -- uid: 21397 - type: AnomalyScanner - components: - - pos: 74.59065,-49.452477 - parent: 8364 - type: Transform -- uid: 21398 - type: MachineAnomalyVessel - components: - - pos: 70.5,-49.5 - parent: 8364 - type: Transform -- uid: 21399 - type: MachineAnomalyVessel - components: - - pos: 71.5,-49.5 - parent: 8364 - type: Transform -- uid: 21400 - type: LockerScienceFilled - components: - - pos: 72.5,-49.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21401 - type: Rack - components: - - pos: 75.5,-54.5 - parent: 8364 - type: Transform -- uid: 21402 - type: Table - components: - - pos: 77.5,-54.5 - parent: 8364 - type: Transform -- uid: 21403 - type: Table - components: - - pos: 78.5,-54.5 - parent: 8364 - type: Transform -- uid: 21404 - type: Grille - components: - - pos: 77.5,-48.5 - parent: 8364 - type: Transform -- uid: 21405 - type: GasThermoMachineHeater - components: - - pos: 74.5,-47.5 - parent: 8364 - type: Transform -- uid: 21406 - type: GasThermoMachineFreezer - components: - - pos: 70.5,-47.5 - parent: 8364 - type: Transform -- uid: 21407 - type: IntercomEngineering - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-53.5 - parent: 8364 - type: Transform -- uid: 21408 - type: LockerMedicineFilled - components: - - pos: 32.5,-23.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21409 - type: EmergencyLight - components: - - pos: 10.5,21.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21410 - type: EmergencyLight - components: - - pos: -44.5,-4.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21411 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-1.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21412 - type: WardrobeScienceFilled - components: - - pos: 72.5,-31.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 21413 - type: WardrobeScienceFilled - components: - - pos: 73.5,-31.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 21414 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-44.5 - parent: 8364 - type: Transform -- uid: 21415 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-46.5 - parent: 8364 - type: Transform -- uid: 21416 - type: Screwdriver - components: - - pos: 79.5,-47.5 - parent: 8364 - type: Transform -- uid: 21417 - type: Wrench - components: - - pos: 79.5,-47.5 - parent: 8364 - type: Transform -- uid: 21418 - type: MedkitToxin - components: - - pos: 80.5,-47.5 - parent: 8364 - type: Transform -- uid: 21419 - type: YellowOxygenTank - components: - - name: empty tank - type: MetaData - - pos: 79.5,-43.5 - parent: 8364 - type: Transform -- uid: 21420 - type: YellowOxygenTank - components: - - name: empty tank - type: MetaData - - pos: 79.5,-43.5 - parent: 8364 - type: Transform -- uid: 21421 - type: YellowOxygenTank - components: - - name: empty tank - type: MetaData - - pos: 79.5,-43.5 - parent: 8364 - type: Transform -- uid: 21422 - type: YellowOxygenTank - components: - - name: empty tank - type: MetaData - - pos: 79.5,-43.5 - parent: 8364 - type: Transform -- uid: 21423 - type: YellowOxygenTank - components: - - name: empty tank - type: MetaData - - pos: 79.5,-43.5 - parent: 8364 - type: Transform -- uid: 21424 - type: StorageCanister - components: - - pos: 76.5,-36.5 - parent: 8364 - type: Transform -- uid: 21425 - type: StorageCanister - components: - - pos: 76.5,-35.5 - parent: 8364 - type: Transform -- uid: 21426 - type: StorageCanister - components: - - pos: 76.5,-34.5 - parent: 8364 - type: Transform -- uid: 21427 - type: StorageCanister - components: - - pos: 76.5,-33.5 - parent: 8364 - type: Transform -- uid: 21428 - type: StorageCanister - components: - - pos: 76.5,-32.5 - parent: 8364 - type: Transform -- uid: 21429 - type: EmergencyLight - components: - - pos: -42.5,5.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21430 - type: AirCanister - components: - - pos: 69.5,-59.5 - parent: 8364 - type: Transform -- uid: 21431 - type: OxygenCanister - components: - - pos: 70.5,-59.5 - parent: 8364 - type: Transform -- uid: 21432 - type: NitrogenCanister - components: - - pos: 71.5,-59.5 - parent: 8364 - type: Transform -- uid: 21433 - type: WindowReinforcedDirectional - components: - - pos: 71.5,-59.5 - parent: 8364 - type: Transform -- uid: 21434 - type: Table - components: - - pos: 78.5,-64.5 - parent: 8364 - type: Transform -- uid: 21435 - type: Table - components: - - pos: 78.5,-63.5 - parent: 8364 - type: Transform -- uid: 21436 - type: Table - components: - - pos: 78.5,-62.5 - parent: 8364 - type: Transform -- uid: 21437 - type: Rack - components: - - pos: 86.5,-27.5 - parent: 8364 - type: Transform -- uid: 21438 - type: Rack - components: - - pos: 86.5,-26.5 - parent: 8364 - type: Transform -- uid: 21439 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -24.5,-3.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21440 - type: EmergencyLight - components: - - pos: -10.5,-29.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21441 - type: ToolboxElectricalFilled - components: - - pos: 78.5,-62.5 - parent: 8364 - type: Transform -- uid: 21442 - type: Multitool - components: - - pos: 78.5,-62.5 - parent: 8364 - type: Transform -- uid: 21443 - type: SheetGlass - components: - - pos: 78.42439,-63.099358 - parent: 8364 - type: Transform -- uid: 21444 - type: SheetSteel - components: - - pos: 78.65877,-63.208733 - parent: 8364 - type: Transform -- uid: 21445 - type: SheetRGlass - components: - - pos: 78.42439,-63.599358 - parent: 8364 - type: Transform -- uid: 21446 - type: PartRodMetal - components: - - rot: 0.0003970976686105132 rad - pos: 78.73667,-63.693985 - parent: 8364 - type: Transform -- uid: 21447 - type: CableHVStack - components: - - pos: 78.323975,-64.10042 - parent: 8364 - type: Transform -- uid: 21448 - type: CableMVStack - components: - - pos: 78.5271,-64.24104 - parent: 8364 - type: Transform -- uid: 21449 - type: CableApcStack - components: - - pos: 78.68335,-64.45979 - parent: 8364 - type: Transform -- uid: 21450 - type: ReinforcedWindow - components: - - pos: -22.5,-45.5 - parent: 8364 - type: Transform -- uid: 21451 - type: Grille - components: - - pos: -22.5,-45.5 - parent: 8364 - type: Transform -- uid: 21452 - type: CableApcExtension - components: - - pos: -22.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21453 - type: CableApcExtension - components: - - pos: -77.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21454 - type: CableApcExtension - components: - - pos: -78.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21455 - type: PoweredlightExterior - components: - - pos: 93.5,-32.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21456 - type: PoweredlightExterior - components: - - rot: 1.5707963267948966 rad - pos: 90.5,-56.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21457 - type: PoweredlightExterior - components: - - pos: 80.5,-69.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21458 - type: PoweredlightExterior - components: - - pos: 60.5,-73.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21459 - type: PoweredlightExterior - components: - - pos: 50.5,-69.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21460 - type: PoweredlightExterior - components: - - pos: -14.5,-76.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21461 - type: PoweredlightExterior - components: - - pos: 13.5,-76.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21462 - type: PoweredlightExterior - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-60.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21463 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21464 - type: PoweredlightExterior - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-64.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21465 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-18.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21466 - type: Table - components: - - pos: 29.5,-23.5 - parent: 8364 - type: Transform -- uid: 21467 - type: EmergencyLight - components: - - pos: 1.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21468 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21469 - type: EmergencyLight - components: - - pos: -7.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21470 - type: EmergencyLight - components: - - pos: -14.5,-68.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21471 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-24.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21472 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-16.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21473 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-25.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21474 - type: EmergencyLight - components: - - pos: 39.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21475 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-22.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21476 - type: EmergencyLight - components: - - pos: 79.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21477 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-21.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21478 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-10.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21479 - type: PoweredSmallLight - components: - - pos: 84.5,-5.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21480 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 84.5,-3.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21481 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 84.5,-11.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21482 - type: PoweredSmallLight - components: - - pos: 84.5,-13.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21483 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-1.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21484 - type: EmergencyLight - components: - - pos: -32.5,6.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21485 - type: hydroponicsSoil - components: - - pos: 4.5,48.5 - parent: 8364 - type: Transform -- uid: 21486 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21487 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21488 - type: TableReinforced - components: - - pos: 5.5,-34.5 - parent: 8364 - type: Transform -- uid: 21489 - type: TableReinforced - components: - - pos: 6.5,-34.5 - parent: 8364 - type: Transform -- uid: 21490 - type: SheetSteel - components: - - pos: 4.010032,-36.477028 - parent: 8364 - type: Transform -- uid: 21491 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-36.5 - parent: 8364 - type: Transform -- uid: 21492 - type: SheetPlasteel - components: - - pos: 5.103782,-36.492653 - parent: 8364 - type: Transform -- uid: 21493 - type: SheetPlasteel - components: - - pos: 5.103782,-36.492653 - parent: 8364 - type: Transform -- uid: 21494 - type: SheetSteel - components: - - pos: 4.010032,-36.477028 - parent: 8364 - type: Transform -- uid: 21495 - type: SheetSteel - components: - - pos: 4.010032,-36.477028 - parent: 8364 - type: Transform -- uid: 21496 - type: TableReinforced - components: - - pos: 5.5,-36.5 - parent: 8364 - type: Transform -- uid: 21497 - type: SheetGlass - components: - - pos: 4.556907,-36.461403 - parent: 8364 - type: Transform -- uid: 21498 - type: SheetPlasteel - components: - - pos: 5.103782,-36.492653 - parent: 8364 - type: Transform -- uid: 21499 - type: TableReinforced - components: - - pos: 6.5,-36.5 - parent: 8364 - type: Transform -- uid: 21500 - type: SheetGlass - components: - - pos: 4.556907,-36.461403 - parent: 8364 - type: Transform -- uid: 21501 - type: SheetGlass - components: - - pos: 4.556907,-36.461403 - parent: 8364 - type: Transform -- uid: 21502 - type: TableReinforced - components: - - pos: 3.5,-36.5 - parent: 8364 - type: Transform -- uid: 21503 - type: MopBucket - components: - - pos: 2.5100322,-35.352028 - parent: 8364 - type: Transform -- uid: 21504 - type: SpawnMobDrone - components: - - pos: 5.5,-35.5 - parent: 8364 - type: Transform -- uid: 21505 - type: SignDrones - components: - - pos: 5.5,-33.5 - parent: 8364 - type: Transform -- uid: 21506 - type: WallReinforced - components: - - pos: 5.5,-33.5 - parent: 8364 - type: Transform -- uid: 21507 - type: SpawnMobDrone - components: - - pos: 3.5,-35.5 - parent: 8364 - type: Transform -- uid: 21508 - type: SpawnMobDrone - components: - - pos: 4.5,-35.5 - parent: 8364 - type: Transform -- uid: 21509 - type: WallReinforced - components: - - pos: 7.5,-33.5 - parent: 8364 - type: Transform -- uid: 21510 - type: WallReinforced - components: - - pos: 6.5,-33.5 - parent: 8364 - type: Transform -- uid: 21511 - type: WallReinforced - components: - - pos: 3.5,-33.5 - parent: 8364 - type: Transform -- uid: 21512 - type: SignSpace - components: - - pos: -20.5,19.5 - parent: 8364 - type: Transform -- uid: 21513 - type: SignSpace - components: - - pos: -19.5,25.5 - parent: 8364 - type: Transform -- uid: 21514 - type: WallSolid - components: - - pos: -16.5,48.5 - parent: 8364 - type: Transform -- uid: 21515 - type: SignSpace - components: - - pos: 28.5,27.5 - parent: 8364 - type: Transform -- uid: 21516 - type: SignSpace - components: - - pos: 48.5,21.5 - parent: 8364 - type: Transform -- uid: 21517 - type: AirlockCaptainLocked - components: - - name: Drone Closet - type: MetaData - - pos: 4.5,-33.5 - parent: 8364 - type: Transform -- uid: 21518 - type: SignSpace - components: - - pos: 91.5,-24.5 - parent: 8364 - type: Transform -- uid: 21519 - type: SignSpace - components: - - pos: 83.5,-4.5 - parent: 8364 - type: Transform -- uid: 21520 - type: SignSpace - components: - - pos: 83.5,-12.5 - parent: 8364 - type: Transform -- uid: 21521 - type: WallReinforced - components: - - pos: 2.5,-33.5 - parent: 8364 - type: Transform -- uid: 21522 - type: SignSpace - components: - - pos: 87.5,-56.5 - parent: 8364 - type: Transform -- uid: 21523 - type: SignSpace - components: - - pos: 80.5,-66.5 - parent: 8364 - type: Transform -- uid: 21524 - type: SignSpace - components: - - pos: 48.5,-66.5 - parent: 8364 - type: Transform -- uid: 21525 - type: SignSpace - components: - - pos: 62.5,-69.5 - parent: 8364 - type: Transform -- uid: 21526 - type: SignSpace - components: - - pos: 23.5,-59.5 - parent: 8364 - type: Transform -- uid: 21527 - type: SignSpace - components: - - pos: 26.5,-81.5 - parent: 8364 - type: Transform -- uid: 21528 - type: SignSpace - components: - - pos: 10.5,-75.5 - parent: 8364 - type: Transform -- uid: 21529 - type: SignSpace - components: - - pos: -11.5,-75.5 - parent: 8364 - type: Transform -- uid: 21530 - type: SignSpace - components: - - pos: -33.5,-64.5 - parent: 8364 - type: Transform -- uid: 21531 - type: SignSpace - components: - - pos: -39.5,-60.5 - parent: 8364 - type: Transform -- uid: 21532 - type: SignSpace - components: - - pos: -38.5,-48.5 - parent: 8364 - type: Transform -- uid: 21533 - type: SignSpace - components: - - pos: -30.5,-35.5 - parent: 8364 - type: Transform -- uid: 21534 - type: PosterContrabandFreeDrone - components: - - pos: 8.5,-34.5 - parent: 8364 - type: Transform -- uid: 21535 - type: SignSpace - components: - - pos: -62.5,-20.5 - parent: 8364 - type: Transform -- uid: 21536 - type: SignSpace - components: - - pos: -69.5,-15.5 - parent: 8364 - type: Transform -- uid: 21537 - type: SignSpace - components: - - pos: -74.5,-15.5 - parent: 8364 - type: Transform -- uid: 21538 - type: SignSpace - components: - - pos: -76.5,-12.5 - parent: 8364 - type: Transform -- uid: 21546 - type: SignSpace - components: - - pos: -67.5,19.5 - parent: 8364 - type: Transform -- uid: 21547 - type: SignSpace - components: - - pos: -62.5,15.5 - parent: 8364 - type: Transform -- uid: 21548 - type: TableReinforced - components: - - pos: 4.5,-36.5 - parent: 8364 - type: Transform -- uid: 21549 - type: SignSpace - components: - - pos: -48.5,24.5 - parent: 8364 - type: Transform -- uid: 21550 - type: ToyAssistant - components: - - pos: 45.487507,-73.57517 - parent: 8364 - type: Transform -- uid: 21551 - type: Catwalk - components: - - pos: 81.5,-69.5 - parent: 8364 - type: Transform -- uid: 21552 - type: Catwalk - components: - - pos: 81.5,-70.5 - parent: 8364 - type: Transform -- uid: 21553 - type: Catwalk - components: - - pos: 81.5,-71.5 - parent: 8364 - type: Transform -- uid: 21554 - type: Catwalk - components: - - pos: 81.5,-72.5 - parent: 8364 - type: Transform -- uid: 21555 - type: Catwalk - components: - - pos: 81.5,-73.5 - parent: 8364 - type: Transform -- uid: 21556 - type: Catwalk - components: - - pos: 81.5,-74.5 - parent: 8364 - type: Transform -- uid: 21557 - type: Catwalk - components: - - pos: 81.5,-75.5 - parent: 8364 - type: Transform -- uid: 21558 - type: Catwalk - components: - - pos: 81.5,-76.5 - parent: 8364 - type: Transform -- uid: 21559 - type: Catwalk - components: - - pos: 81.5,-77.5 - parent: 8364 - type: Transform -- uid: 21560 - type: Catwalk - components: - - pos: 81.5,-78.5 - parent: 8364 - type: Transform -- uid: 21561 - type: Catwalk - components: - - pos: 81.5,-79.5 - parent: 8364 - type: Transform -- uid: 21562 - type: Catwalk - components: - - pos: 81.5,-80.5 - parent: 8364 - type: Transform -- uid: 21563 - type: Catwalk - components: - - pos: 81.5,-81.5 - parent: 8364 - type: Transform -- uid: 21564 - type: Catwalk - components: - - pos: 81.5,-82.5 - parent: 8364 - type: Transform -- uid: 21565 - type: Catwalk - components: - - pos: 81.5,-83.5 - parent: 8364 - type: Transform -- uid: 21566 - type: Catwalk - components: - - pos: 81.5,-84.5 - parent: 8364 - type: Transform -- uid: 21567 - type: Catwalk - components: - - pos: 81.5,-85.5 - parent: 8364 - type: Transform -- uid: 21568 - type: Catwalk - components: - - pos: 80.5,-82.5 - parent: 8364 - type: Transform -- uid: 21569 - type: Catwalk - components: - - pos: 79.5,-82.5 - parent: 8364 - type: Transform -- uid: 21570 - type: Catwalk - components: - - pos: 78.5,-82.5 - parent: 8364 - type: Transform -- uid: 21571 - type: Catwalk - components: - - pos: 77.5,-82.5 - parent: 8364 - type: Transform -- uid: 21572 - type: Catwalk - components: - - pos: 76.5,-82.5 - parent: 8364 - type: Transform -- uid: 21573 - type: Catwalk - components: - - pos: 75.5,-82.5 - parent: 8364 - type: Transform -- uid: 21574 - type: Catwalk - components: - - pos: 82.5,-82.5 - parent: 8364 - type: Transform -- uid: 21575 - type: Catwalk - components: - - pos: 83.5,-82.5 - parent: 8364 - type: Transform -- uid: 21576 - type: Catwalk - components: - - pos: 84.5,-82.5 - parent: 8364 - type: Transform -- uid: 21577 - type: Catwalk - components: - - pos: 85.5,-82.5 - parent: 8364 - type: Transform -- uid: 21578 - type: AirlockMaintLocked - components: - - name: Courtroom Maintenance - type: MetaData - - pos: 19.5,20.5 - parent: 8364 - type: Transform -- uid: 21579 - type: CableMV - components: - - pos: 19.5,31.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21580 - type: CableMV - components: - - pos: 17.5,31.5 - parent: 8364 - type: Transform -- uid: 21581 - type: Catwalk - components: - - pos: 86.5,-82.5 - parent: 8364 - type: Transform -- uid: 21582 - type: Catwalk - components: - - pos: 87.5,-82.5 - parent: 8364 - type: Transform -- uid: 21583 - type: Catwalk - components: - - pos: 82.5,-78.5 - parent: 8364 - type: Transform -- uid: 21584 - type: Catwalk - components: - - pos: 83.5,-78.5 - parent: 8364 - type: Transform -- uid: 21585 - type: Catwalk - components: - - pos: 84.5,-78.5 - parent: 8364 - type: Transform -- uid: 21586 - type: Catwalk - components: - - pos: 85.5,-78.5 - parent: 8364 - type: Transform -- uid: 21587 - type: Catwalk - components: - - pos: 86.5,-78.5 - parent: 8364 - type: Transform -- uid: 21588 - type: Catwalk - components: - - pos: 87.5,-78.5 - parent: 8364 - type: Transform -- uid: 21589 - type: Catwalk - components: - - pos: 80.5,-78.5 - parent: 8364 - type: Transform -- uid: 21590 - type: Catwalk - components: - - pos: 79.5,-78.5 - parent: 8364 - type: Transform -- uid: 21591 - type: Catwalk - components: - - pos: 78.5,-78.5 - parent: 8364 - type: Transform -- uid: 21592 - type: Catwalk - components: - - pos: 77.5,-78.5 - parent: 8364 - type: Transform -- uid: 21593 - type: Catwalk - components: - - pos: 76.5,-78.5 - parent: 8364 - type: Transform -- uid: 21594 - type: Catwalk - components: - - pos: 75.5,-78.5 - parent: 8364 - type: Transform -- uid: 21595 - type: Catwalk - components: - - pos: 80.5,-74.5 - parent: 8364 - type: Transform -- uid: 21596 - type: Catwalk - components: - - pos: 79.5,-74.5 - parent: 8364 - type: Transform -- uid: 21597 - type: Catwalk - components: - - pos: 78.5,-74.5 - parent: 8364 - type: Transform -- uid: 21598 - type: Catwalk - components: - - pos: 77.5,-74.5 - parent: 8364 - type: Transform -- uid: 21599 - type: Catwalk - components: - - pos: 76.5,-74.5 - parent: 8364 - type: Transform -- uid: 21600 - type: Catwalk - components: - - pos: 75.5,-74.5 - parent: 8364 - type: Transform -- uid: 21601 - type: Catwalk - components: - - pos: 82.5,-74.5 - parent: 8364 - type: Transform -- uid: 21602 - type: Catwalk - components: - - pos: 83.5,-74.5 - parent: 8364 - type: Transform -- uid: 21603 - type: Catwalk - components: - - pos: 84.5,-74.5 - parent: 8364 - type: Transform -- uid: 21604 - type: Catwalk - components: - - pos: 85.5,-74.5 - parent: 8364 - type: Transform -- uid: 21605 - type: Catwalk - components: - - pos: 86.5,-74.5 - parent: 8364 - type: Transform -- uid: 21606 - type: Catwalk - components: - - pos: 87.5,-74.5 - parent: 8364 - type: Transform -- uid: 21607 - type: AirlockGlass - components: - - pos: 17.5,-30.5 - parent: 8364 - type: Transform -- uid: 21608 - type: soda_dispenser - components: - - pos: -34.5,24.5 - parent: 8364 - type: Transform -- uid: 21609 - type: BoozeDispenser - components: - - rot: 1.5707963267948966 rad - pos: -38.5,20.5 - parent: 8364 - type: Transform -- uid: 21610 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-40.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21611 - type: ChairWood - components: - - pos: 44.5,-71.5 - parent: 8364 - type: Transform -- uid: 21612 - type: ChairWood - components: - - pos: 41.5,-70.5 - parent: 8364 - type: Transform -- uid: 21613 - type: FoodTinPeachesMaint - components: - - pos: 47.544956,-70.26469 - parent: 8364 - type: Transform -- uid: 21614 - type: ClothingHandsGlovesColorYellow - components: - - name: the grey kings gloves - type: MetaData - - pos: 43.508904,-73.44038 - parent: 8364 - type: Transform -- uid: 21615 - type: WardrobeGreyFilled - components: - - pos: 41.5,-73.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21616 - type: PosterContrabandGreyTide - components: - - pos: 41.5,-69.5 - parent: 8364 - type: Transform -- uid: 21617 - type: AirlockMaintGlassLocked - components: - - name: the church of the tide - type: MetaData - - pos: 43.5,-69.5 - parent: 8364 - type: Transform -- uid: 21618 - type: Grille - components: - - pos: 38.5,-69.5 - parent: 8364 - type: Transform -- uid: 21619 - type: Crowbar - components: - - pos: 40.48116,-72.5237 - parent: 8364 - type: Transform -- uid: 21620 - type: SheetPlasma - components: - - pos: 43.53589,-62.501984 - parent: 8364 - type: Transform -- uid: 21621 - type: PottedPlant29 - components: - - pos: 43.5,-63.5 - parent: 8364 - type: Transform -- uid: 21622 - type: ClothingHeadHatFedoraBrown - components: - - pos: 45.44214,-62.312943 - parent: 8364 - type: Transform -- uid: 21623 - type: CrateEmptySpawner - components: - - pos: -35.5,-22.5 - parent: 8364 - type: Transform -- uid: 21624 - type: CrateEmptySpawner - components: - - pos: -37.5,-22.5 - parent: 8364 - type: Transform -- uid: 21625 - type: CarpetGreen - components: - - pos: 43.5,-63.5 - parent: 8364 - type: Transform -- uid: 21626 - type: CarpetGreen - components: - - pos: 43.5,-62.5 - parent: 8364 - type: Transform -- uid: 21627 - type: CarpetGreen - components: - - pos: 44.5,-63.5 - parent: 8364 - type: Transform -- uid: 21628 - type: CarpetGreen - components: - - pos: 44.5,-62.5 - parent: 8364 - type: Transform -- uid: 21629 - type: Rack - components: - - pos: 43.5,-62.5 - parent: 8364 - type: Transform -- uid: 21630 - type: PlushieLamp - components: - - pos: 44.578045,-62.22757 - parent: 8364 - type: Transform -- uid: 21631 - type: PosterLegitDickGumshue - components: - - pos: 43.5,-64.5 - parent: 8364 - type: Transform -- uid: 21632 - type: ClosetEmergencyFilledRandom - components: - - pos: 49.5,-64.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21633 - type: ClothingOuterHoodieGrey - components: - - pos: 47.616776,-72.55742 - parent: 8364 - type: Transform -- uid: 21634 - type: ClothingOuterHoodieGrey - components: - - pos: 47.41365,-72.40117 - parent: 8364 - type: Transform -- uid: 21635 - type: ClothingOuterHoodieGrey - components: - - pos: 47.60115,-72.260544 - parent: 8364 - type: Transform -- uid: 21636 - type: ClothingOuterHoodieGrey - components: - - pos: 47.72615,-72.416794 - parent: 8364 - type: Transform -- uid: 21637 - type: Railing - components: - - pos: -24.5,-56.5 - parent: 8364 - type: Transform -- uid: 21638 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -23.5,-51.5 - parent: 8364 - type: Transform -- uid: 21639 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -24.5,-51.5 - parent: 8364 - type: Transform -- uid: 21640 - type: ClothingHeadHatUshanka - components: - - pos: 62.38717,18.759663 - parent: 8364 - type: Transform -- uid: 21641 - type: ClothingHeadHatUshanka - components: - - pos: 62.527794,18.509663 - parent: 8364 - type: Transform -- uid: 21642 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: 61.5,19.5 - parent: 8364 - type: Transform -- uid: 21643 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21644 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21645 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21646 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21647 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21648 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21649 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21650 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21651 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21652 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21653 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21654 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21655 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21656 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21657 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21658 - type: AirlockGlass - components: - - name: Central Access - type: MetaData - - pos: 0.5,2.5 - parent: 8364 - type: Transform -- uid: 21659 - type: AirlockGlass - components: - - name: Central Access - type: MetaData - - pos: -0.5,2.5 - parent: 8364 - type: Transform -- uid: 21660 - type: AirlockGlass - components: - - name: Central Access - type: MetaData - - pos: -1.5,2.5 - parent: 8364 - type: Transform -- uid: 21661 - type: AirlockGlass - components: - - name: Central Access - type: MetaData - - pos: 17.5,-12.5 - parent: 8364 - type: Transform -- uid: 21662 - type: AirlockGlass - components: - - name: Central Access - type: MetaData - - pos: 17.5,-13.5 - parent: 8364 - type: Transform -- uid: 21663 - type: AirlockGlass - components: - - name: Central Access - type: MetaData - - pos: 17.5,-14.5 - parent: 8364 - type: Transform -- uid: 21664 - type: AirlockGlass - components: - - name: Central Access - type: MetaData - - pos: 0.5,-32.5 - parent: 8364 - type: Transform -- uid: 21665 - type: AirlockGlass - components: - - name: Central Access - type: MetaData - - pos: -0.5,-32.5 - parent: 8364 - type: Transform -- uid: 21666 - type: AirlockGlass - components: - - name: Central Access - type: MetaData - - pos: -1.5,-32.5 - parent: 8364 - type: Transform -- uid: 21667 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21668 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21669 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21670 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21671 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21672 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.470098 - parent: 8364 - type: Transform -- uid: 21673 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.485723 - parent: 8364 - type: Transform -- uid: 21674 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.485723 - parent: 8364 - type: Transform -- uid: 21675 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.485723 - parent: 8364 - type: Transform -- uid: 21676 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.485723 - parent: 8364 - type: Transform -- uid: 21677 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.485723 - parent: 8364 - type: Transform -- uid: 21678 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.485723 - parent: 8364 - type: Transform -- uid: 21679 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.485723 - parent: 8364 - type: Transform -- uid: 21680 - type: FloorTileItemEighties - components: - - pos: 60.499405,18.485723 - parent: 8364 - type: Transform -- uid: 21681 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 21682 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 21683 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 21684 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 21685 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 21686 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 21687 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 21688 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 21689 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 21690 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 21691 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 21692 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 21693 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 21694 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 21695 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 21696 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 21697 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.54602,11.361063 - parent: 8364 - type: Transform -- uid: 21698 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.530396,11.361063 - parent: 8364 - type: Transform -- uid: 21699 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.530396,11.361063 - parent: 8364 - type: Transform -- uid: 21700 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.530396,11.361063 - parent: 8364 - type: Transform -- uid: 21701 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.530396,11.361063 - parent: 8364 - type: Transform -- uid: 21702 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.530396,11.361063 - parent: 8364 - type: Transform -- uid: 21703 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.530396,11.361063 - parent: 8364 - type: Transform -- uid: 21704 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.530396,11.361063 - parent: 8364 - type: Transform -- uid: 21705 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.530396,11.376688 - parent: 8364 - type: Transform -- uid: 21706 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.530396,11.376688 - parent: 8364 - type: Transform -- uid: 21707 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.530396,11.376688 - parent: 8364 - type: Transform -- uid: 21708 - type: FloorTileItemArcadeBlue2 - components: - - pos: 75.530396,11.376688 - parent: 8364 - type: Transform -- uid: 21709 - type: SpaceVillainArcadeComputerCircuitboard - components: - - pos: 75.53078,12.7389765 - parent: 8364 - type: Transform -- uid: 21710 - type: Table - components: - - pos: -19.5,14.5 - parent: 8364 - type: Transform -- uid: 21711 - type: Table - components: - - pos: -20.5,14.5 - parent: 8364 - type: Transform -- uid: 21712 - type: HospitalCurtainsOpen - components: - - pos: 62.5,10.5 - parent: 8364 - type: Transform -- uid: 21713 - type: RollerBed - components: - - pos: 63.382973,11.66713 - parent: 8364 - type: Transform -- uid: 21714 - type: TableReinforcedGlass - components: - - pos: 63.5,12.5 - parent: 8364 - type: Transform -- uid: 21715 - type: HandheldHealthAnalyzer - components: - - pos: 63.429848,12.47963 - parent: 8364 - type: Transform -- uid: 21716 - type: ClothingNeckStethoscope - components: - - pos: 63.304848,12.495255 - parent: 8364 - type: Transform -- uid: 21717 - type: MedkitBruteFilled - components: - - pos: 62.445473,12.47963 - parent: 8364 - type: Transform -- uid: 21718 - type: SignMedical - components: - - pos: 63.5,10.5 - parent: 8364 - type: Transform -- uid: 21719 - type: ClothingMaskBreathMedical - components: - - pos: 63.664223,12.6749115 - parent: 8364 - type: Transform -- uid: 21720 - type: Grille - components: - - pos: 15.5,-41.5 - parent: 8364 - type: Transform -- uid: 21721 - type: TrashBag - components: - - pos: 5.306907,-34.414528 - parent: 8364 - type: Transform -- uid: 21722 - type: TrashBag - components: - - pos: 5.510032,-34.414528 - parent: 8364 - type: Transform -- uid: 21723 - type: TrashBag - components: - - pos: 5.728782,-34.414528 - parent: 8364 - type: Transform -- uid: 21724 - type: MopItem - components: - - pos: 6.166282,-34.414528 - parent: 8364 - type: Transform -- uid: 21725 - type: MopItem - components: - - pos: 6.369407,-34.430153 - parent: 8364 - type: Transform -- uid: 21726 - type: MopItem - components: - - pos: 6.603782,-34.398903 - parent: 8364 - type: Transform -- uid: 21727 - type: ClothingHeadHatHardhatOrange - components: - - pos: 2.5256572,-34.211403 - parent: 8364 - type: Transform -- uid: 21728 - type: trayScanner - components: - - pos: 5.666282,-36.398903 - parent: 8364 - type: Transform -- uid: 21729 - type: trayScanner - components: - - pos: 5.853782,-36.398903 - parent: 8364 - type: Transform -- uid: 21730 - type: CableApcStack - components: - - pos: 6.150657,-36.320778 - parent: 8364 - type: Transform -- uid: 21731 - type: CableApcStack - components: - - pos: 6.150657,-36.320778 - parent: 8364 - type: Transform -- uid: 21732 - type: CableMVStack - components: - - pos: 6.338157,-36.430153 - parent: 8364 - type: Transform -- uid: 21733 - type: CableMVStack - components: - - pos: 6.338157,-36.430153 - parent: 8364 - type: Transform -- uid: 21734 - type: CableHVStack - components: - - pos: 6.572532,-36.555153 - parent: 8364 - type: Transform -- uid: 21735 - type: CableHVStack - components: - - pos: 6.572532,-36.555153 - parent: 8364 - type: Transform -- uid: 21736 - type: PottedPlantRandom - components: - - pos: 2.5,-32.5 - parent: 8364 - type: Transform -- uid: 21737 - type: PottedPlantRandom - components: - - pos: 7.5,-32.5 - parent: 8364 - type: Transform -- uid: 21738 - type: Rack - components: - - pos: -36.5,-48.5 - parent: 8364 - type: Transform -- uid: 21739 - type: FoodTinPeachesMaint - components: - - pos: -37.41171,-48.284546 - parent: 8364 - type: Transform -- uid: 21740 - type: MaintenanceToolSpawner - components: - - pos: -36.5,-48.5 - parent: 8364 - type: Transform -- uid: 21741 - type: MaintenanceWeaponSpawner - components: - - pos: -30.5,-72.5 - parent: 8364 - type: Transform -- uid: 21742 - type: BedsheetCentcom - components: - - pos: -30.5,-74.5 - parent: 8364 - type: Transform -- uid: 21743 - type: Bed - components: - - pos: -30.5,-74.5 - parent: 8364 - type: Transform -- uid: 21744 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -32.5,-72.5 - parent: 8364 - type: Transform -- uid: 21745 - type: Lighter - components: - - pos: -20.062664,-73.65716 - parent: 8364 - type: Transform -- uid: 21746 - type: Cigar - components: - - pos: -20.468914,-73.59466 - parent: 8364 - type: Transform -- uid: 21747 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-31.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21748 - type: SpawnMobMedibot - components: - - pos: 33.5,-24.5 - parent: 8364 - type: Transform -- uid: 21749 - type: ClothingShoeSlippersDuck - components: - - pos: 45.466923,-63.487274 - parent: 8364 - type: Transform -- uid: 21750 - type: ClothingNeckTieRed - components: - - pos: 45.295048,-62.737274 - parent: 8364 - type: Transform -- uid: 21751 - type: CrateEmptySpawner - components: - - pos: -34.5,-24.5 - parent: 8364 - type: Transform -- uid: 21752 - type: CrateFilledSpawner - components: - - pos: -37.5,-24.5 - parent: 8364 - type: Transform -- uid: 21753 - type: CrateFilledSpawner - components: - - pos: -36.5,-26.5 - parent: 8364 - type: Transform -- uid: 21754 - type: SpawnVehicleATV - components: - - pos: -23.5,-18.5 - parent: 8364 - type: Transform -- uid: 21755 - type: VehicleKeyATV - components: - - pos: -20.36851,-15.550163 - parent: 8364 - type: Transform -- uid: 21756 - type: SpawnMobCleanBot - components: - - pos: 66.5,-13.5 - parent: 8364 - type: Transform -- uid: 21757 - type: Lamp - components: - - pos: 45.47768,-44.248093 - parent: 8364 - type: Transform -- uid: 21758 - type: RandomFoodSingle - components: - - pos: 71.5,-29.5 - parent: 8364 - type: Transform -- uid: 21759 - type: RandomDrinkGlass - components: - - pos: 72.5,-28.5 - parent: 8364 - type: Transform -- uid: 21760 - type: CrateScienceSecure - components: - - pos: 74.5,-25.5 - parent: 8364 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21761 - type: SignScience2 - components: - - pos: 56.5,-15.5 - parent: 8364 - type: Transform -- uid: 21762 - type: ClosetRadiationSuitFilled - components: - - pos: 0.5,-27.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21763 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Grav Gen - type: SurveillanceCamera -- uid: 21764 - type: PosterLegitNanotrasenLogo - components: - - pos: -19.5,-9.5 - parent: 8364 - type: Transform -- uid: 21765 - type: BannerNanotrasen - components: - - pos: -24.5,-9.5 - parent: 8364 - type: Transform -- uid: 21766 - type: Poweredlight - components: - - pos: 5.5,-29.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21767 - type: SignRadiationMed - components: - - pos: -19.5,-54.5 - parent: 8364 - type: Transform -- uid: 21768 - type: SignRadiationMed - components: - - pos: -30.5,-52.5 - parent: 8364 - type: Transform -- uid: 21769 - type: ClosetRadiationSuitFilled - components: - - pos: -21.5,-49.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21770 - type: NitrousOxideCanister - components: - - pos: 17.5,-40.5 - parent: 8364 - type: Transform -- uid: 21771 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-21.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21772 - type: WelderIndustrial - components: - - pos: 7.5565205,-44.478836 - parent: 8364 - type: Transform -- uid: 21773 - type: FirelockGlass - components: - - pos: 23.5,-25.5 - parent: 8364 - type: Transform -- uid: 21774 - type: FirelockGlass - components: - - pos: 23.5,-24.5 - parent: 8364 - type: Transform -- uid: 21775 - type: ChairOfficeLight - components: - - pos: 21.5,-26.5 - parent: 8364 - type: Transform -- uid: 21776 - type: ClothingOuterWinterPara - components: - - pos: 22.537373,-27.38887 - parent: 8364 - type: Transform -- uid: 21777 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-27.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21778 - type: PoweredlightSodium - components: - - pos: -36.5,-33.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21779 - type: PoweredlightSodium - components: - - pos: -40.5,-33.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21780 - type: Poweredlight - components: - - pos: 9.5,-7.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21781 - type: CableApcExtension - components: - - pos: 9.5,-34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21782 - type: Poweredlight - components: - - pos: -10.5,-7.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21783 - type: AcousticGuitarInstrument - components: - - pos: -2.5226965,33.557365 - parent: 8364 - type: Transform -- uid: 21784 - type: WeaponDisabler - components: - - pos: 16.460697,34.505676 - parent: 8364 - type: Transform -- uid: 21785 - type: WeaponCapacitorRecharger - components: - - pos: 18.5,36.5 - parent: 8364 - type: Transform -- uid: 21786 - type: WeaponDisabler - components: - - pos: 4.4614744,33.066376 - parent: 8364 - type: Transform -- uid: 21787 - type: PosterLegitDickGumshue - components: - - pos: -4.5,12.5 - parent: 8364 - type: Transform -- uid: 21788 - type: RandomPosterLegit - components: - - pos: 7.5,18.5 - parent: 8364 - type: Transform -- uid: 21789 - type: Table - components: - - pos: 6.5,32.5 - parent: 8364 - type: Transform -- uid: 21790 - type: VendingMachineDonut - components: - - flags: SessionSpecific - name: Donut - type: MetaData - - pos: 6.5,33.5 - parent: 8364 - type: Transform -- uid: 21791 - type: PottedPlantRandom - components: - - pos: 11.5,35.5 - parent: 8364 - type: Transform -- uid: 21792 - type: PottedPlantRandom - components: - - pos: 9.5,30.5 - parent: 8364 - type: Transform -- uid: 21793 - type: VendingMachineSalvage - components: - - flags: SessionSpecific - name: Salvage Equipment - type: MetaData - - pos: -27.5,-29.5 - parent: 8364 - type: Transform -- uid: 21795 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-33.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21796 - type: ClothingHeadHatChef - components: - - pos: 68.588745,-55.41842 - parent: 8364 - type: Transform -- uid: 21797 - type: FoodMeatRatdoubleKebab - components: - - pos: 69.38562,-55.371544 - parent: 8364 - type: Transform -- uid: 21798 - type: PlushieLamp - components: - - pos: -22.362862,-11.265691 - parent: 8364 - type: Transform -- uid: 21799 - type: CableApcExtension - components: - - pos: 5.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21800 - type: GasPipeTJunction - components: - - pos: 1.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21801 - type: CableApcExtension - components: - - pos: 8.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21802 - type: CableApcExtension - components: - - pos: 7.5,-36.5 - parent: 8364 - type: Transform -- uid: 21803 - type: CableApcExtension - components: - - pos: 6.5,-36.5 - parent: 8364 - type: Transform -- uid: 21804 - type: CableApcExtension - components: - - pos: 5.5,-36.5 - parent: 8364 - type: Transform -- uid: 21805 - type: CableApcExtension - components: - - pos: 4.5,-36.5 - parent: 8364 - type: Transform -- uid: 21806 - type: CableApcExtension - components: - - pos: 3.5,-36.5 - parent: 8364 - type: Transform -- uid: 21807 - type: CableApcExtension - components: - - pos: 3.5,-35.5 - parent: 8364 - type: Transform -- uid: 21808 - type: CableApcExtension - components: - - pos: 3.5,-34.5 - parent: 8364 - type: Transform -- uid: 21809 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21810 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 35.5,-32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21811 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-23.5 - parent: 8364 - type: Transform -- uid: 21812 - type: FirelockGlass - components: - - pos: -63.5,-12.5 - parent: 8364 - type: Transform -- uid: 21813 - type: CableApcExtension - components: - - pos: 6.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21814 - type: FirelockGlass - components: - - pos: -64.5,-12.5 - parent: 8364 - type: Transform -- uid: 21815 - type: FirelockGlass - components: - - pos: -63.5,7.5 - parent: 8364 - type: Transform -- uid: 21816 - type: FirelockGlass - components: - - pos: -64.5,7.5 - parent: 8364 - type: Transform -- uid: 21817 - type: FirelockGlass - components: - - pos: -51.5,17.5 - parent: 8364 - type: Transform -- uid: 21818 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-36.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21819 - type: CableApcExtension - components: - - pos: 4.5,-33.5 - parent: 8364 - type: Transform -- uid: 21820 - type: CableApcExtension - components: - - pos: 3.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21821 - type: FirelockGlass - components: - - pos: -51.5,18.5 - parent: 8364 - type: Transform -- uid: 21822 - type: FirelockGlass - components: - - pos: -51.5,9.5 - parent: 8364 - type: Transform -- uid: 21823 - type: FirelockGlass - components: - - pos: -51.5,10.5 - parent: 8364 - type: Transform -- uid: 21824 - type: FirelockGlass - components: - - pos: -51.5,11.5 - parent: 8364 - type: Transform -- uid: 21825 - type: FirelockGlass - components: - - pos: -23.5,9.5 - parent: 8364 - type: Transform -- uid: 21826 - type: CableApcExtension - components: - - pos: 2.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21827 - type: FirelockGlass - components: - - pos: -23.5,10.5 - parent: 8364 - type: Transform -- uid: 21828 - type: AirlockGlassShuttle - components: - - pos: -0.5,-0.5 - parent: 11906 - type: Transform - - dockJointId: docking46345 - dockedWith: 562 - type: Docking - - SecondsUntilStateChange: -28098.396 - changeAirtight: False - state: Opening - type: Door - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 21829 - type: FirelockGlass - components: - - pos: 59.5,11.5 - parent: 8364 - type: Transform -- uid: 21830 - type: FirelockGlass - components: - - pos: 64.5,14.5 - parent: 8364 - type: Transform -- uid: 21831 - type: FirelockGlass - components: - - pos: 75.5,-64.5 - parent: 8364 - type: Transform -- uid: 21832 - type: FirelockGlass - components: - - pos: 75.5,-60.5 - parent: 8364 - type: Transform -- uid: 21833 - type: FirelockGlass - components: - - pos: 65.5,-63.5 - parent: 8364 - type: Transform -- uid: 21834 - type: CableApcExtension - components: - - pos: 7.5,-33.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21835 - type: FirelockGlass - components: - - pos: -16.5,-47.5 - parent: 8364 - type: Transform -- uid: 21836 - type: CableMV - components: - - pos: 49.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21837 - type: CableMV - components: - - pos: 48.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21838 - type: CableMV - components: - - pos: 49.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21839 - type: CableMV - components: - - pos: 49.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21840 - type: CableMV - components: - - pos: 49.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21841 - type: CableMV - components: - - pos: 49.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21842 - type: CableMV - components: - - pos: 49.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21843 - type: CableMV - components: - - pos: 49.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21844 - type: CableMV - components: - - pos: 49.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21845 - type: CableMV - components: - - pos: 49.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21846 - type: CableMV - components: - - pos: 49.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21847 - type: CableMV - components: - - pos: 49.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21848 - type: CableMV - components: - - pos: 49.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21849 - type: CableMV - components: - - pos: 49.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21850 - type: CableMV - components: - - pos: 49.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21851 - type: CableMV - components: - - pos: 49.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21852 - type: CableMV - components: - - pos: 49.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21853 - type: CableMV - components: - - pos: 49.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21854 - type: CableMV - components: - - pos: 49.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21855 - type: CableMV - components: - - pos: 49.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21856 - type: CableMV - components: - - pos: 49.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21857 - type: CableMV - components: - - pos: 49.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21858 - type: CableMV - components: - - pos: 48.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21859 - type: CableMV - components: - - pos: 47.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21860 - type: CableMV - components: - - pos: 47.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21861 - type: CableMV - components: - - pos: 47.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21862 - type: CableMV - components: - - pos: 47.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21863 - type: CableMV - components: - - pos: 46.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21864 - type: CableMV - components: - - pos: 45.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21865 - type: CableMV - components: - - pos: 44.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21866 - type: CableMV - components: - - pos: 43.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21867 - type: CableMV - components: - - pos: 42.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21868 - type: CableMV - components: - - pos: 41.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21869 - type: CableMV - components: - - pos: 40.5,-65.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21870 - type: CableMV - components: - - pos: 40.5,-64.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21871 - type: CableMV - components: - - pos: 40.5,-63.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21872 - type: CableMV - components: - - pos: 40.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21873 - type: CableMV - components: - - pos: 39.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21874 - type: CableMV - components: - - pos: 38.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21875 - type: CableMV - components: - - pos: 37.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21876 - type: CableMV - components: - - pos: 36.5,-62.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21877 - type: CableMV - components: - - pos: 36.5,-61.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21878 - type: CableMV - components: - - pos: 36.5,-60.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21879 - type: CableMV - components: - - pos: 36.5,-59.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21880 - type: CableMV - components: - - pos: 36.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21881 - type: CableMV - components: - - pos: 36.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21882 - type: CableMV - components: - - pos: 35.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21883 - type: CableMV - components: - - pos: 34.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21884 - type: CableMV - components: - - pos: 33.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21885 - type: CableMV - components: - - pos: 32.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21886 - type: CableMV - components: - - pos: 32.5,-56.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21887 - type: CableMV - components: - - pos: 32.5,-55.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21888 - type: CableMV - components: - - pos: 32.5,-54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21889 - type: CableMV - components: - - pos: 32.5,-53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21890 - type: CableMV - components: - - pos: 32.5,-52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21891 - type: CableMV - components: - - pos: 32.5,-51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21892 - type: CableMV - components: - - pos: 32.5,-50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21893 - type: CableMV - components: - - pos: 32.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21894 - type: CableMV - components: - - pos: 32.5,-48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21895 - type: CableMV - components: - - pos: 32.5,-47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21896 - type: CableMV - components: - - pos: 32.5,-46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21897 - type: CableMV - components: - - pos: 32.5,-45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21898 - type: CableMV - components: - - pos: 32.5,-44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21899 - type: CableMV - components: - - pos: 32.5,-43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21900 - type: CableMV - components: - - pos: 32.5,-42.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21901 - type: CableMV - components: - - pos: 32.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21902 - type: CableMV - components: - - pos: 32.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21903 - type: CableMV - components: - - pos: 32.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21904 - type: CableMV - components: - - pos: 32.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21905 - type: CableMV - components: - - pos: 31.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21906 - type: CableMV - components: - - pos: 30.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21907 - type: CableMV - components: - - pos: 29.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21908 - type: CableMV - components: - - pos: 28.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21909 - type: CableMV - components: - - pos: 27.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21910 - type: CableMV - components: - - pos: 26.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21911 - type: CableMV - components: - - pos: 25.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21912 - type: CableMV - components: - - pos: 24.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21913 - type: CableMV - components: - - pos: 23.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21914 - type: CableMV - components: - - pos: 22.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21915 - type: CableMV - components: - - pos: 21.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21916 - type: CableMV - components: - - pos: 20.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21917 - type: CableMV - components: - - pos: 19.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21918 - type: CableMV - components: - - pos: 18.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21919 - type: CableMV - components: - - pos: 17.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21920 - type: CableMV - components: - - pos: 16.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21921 - type: CableMV - components: - - pos: 15.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21922 - type: CableMV - components: - - pos: 14.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21923 - type: CableMV - components: - - pos: 13.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21924 - type: CableMV - components: - - pos: 12.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21925 - type: CableMV - components: - - pos: 11.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21926 - type: CableMV - components: - - pos: 10.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21927 - type: CableMV - components: - - pos: 9.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21928 - type: CableMV - components: - - pos: 8.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21929 - type: CableMV - components: - - pos: 7.5,-38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21930 - type: CableMV - components: - - pos: 7.5,-37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21931 - type: CableMV - components: - - pos: 7.5,-36.5 - parent: 8364 - type: Transform -- uid: 21932 - type: CableMV - components: - - pos: 8.5,-36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21933 - type: SignSecureSmall - components: - - pos: 13.5,-26.5 - parent: 8364 - type: Transform -- uid: 21934 - type: Carpet - components: - - pos: 20.5,-1.5 - parent: 8364 - type: Transform -- uid: 21935 - type: Carpet - components: - - pos: 20.5,-0.5 - parent: 8364 - type: Transform -- uid: 21936 - type: DisposalUnit - components: - - pos: 2.5,-36.5 - parent: 8364 - type: Transform -- uid: 21937 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-36.5 - parent: 8364 - type: Transform -- uid: 21938 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-36.5 - parent: 8364 - type: Transform -- uid: 21939 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-36.5 - parent: 8364 - type: Transform -- uid: 21940 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-36.5 - parent: 8364 - type: Transform -- uid: 21941 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-36.5 - parent: 8364 - type: Transform -- uid: 21942 - type: DisposalPipe - components: - - pos: 7.5,-37.5 - parent: 8364 - type: Transform -- uid: 21943 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-38.5 - parent: 8364 - type: Transform -- uid: 21944 - type: Carpet - components: - - pos: 21.5,-1.5 - parent: 8364 - type: Transform -- uid: 21945 - type: Carpet - components: - - pos: 21.5,-0.5 - parent: 8364 - type: Transform -- uid: 21946 - type: Carpet - components: - - pos: 22.5,-1.5 - parent: 8364 - type: Transform -- uid: 21947 - type: Carpet - components: - - pos: 22.5,-0.5 - parent: 8364 - type: Transform -- uid: 21948 - type: Carpet - components: - - pos: 23.5,-1.5 - parent: 8364 - type: Transform -- uid: 21949 - type: Carpet - components: - - pos: 23.5,-0.5 - parent: 8364 - type: Transform -- uid: 21950 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-1.5 - parent: 8364 - type: Transform -- uid: 21951 - type: WallSolid - components: - - pos: 47.5,-28.5 - parent: 8364 - type: Transform -- uid: 21952 - type: ToolboxMechanicalFilled - components: - - pos: -3.505559,9.50544 - parent: 8364 - type: Transform -- uid: 21953 - type: ToolboxElectricalFilled - components: - - pos: -3.614934,9.66169 - parent: 8364 - type: Transform -- uid: 21954 - type: ToySpawner - components: - - pos: -48.5,-12.5 - parent: 8364 - type: Transform -- uid: 21955 - type: RandomInstruments - components: - - pos: -48.5,-16.5 - parent: 8364 - type: Transform -- uid: 21956 - type: RandomPosterLegit - components: - - pos: -62.5,3.5 - parent: 8364 - type: Transform -- uid: 21957 - type: AirlockMaintLocked - components: - - pos: 49.5,-15.5 - parent: 8364 - type: Transform -- uid: 21958 - type: RandomPosterLegit - components: - - pos: -71.5,11.5 - parent: 8364 - type: Transform -- uid: 21959 - type: RandomPosterLegit - components: - - pos: -76.5,11.5 - parent: 8364 - type: Transform -- uid: 21960 - type: RandomPosterLegit - components: - - pos: -66.5,-7.5 - parent: 8364 - type: Transform -- uid: 21961 - type: SpawnMobMouse - components: - - pos: 9.5,-36.5 - parent: 8364 - type: Transform -- uid: 21962 - type: RandomSpawner - components: - - pos: 9.5,-33.5 - parent: 8364 - type: Transform -- uid: 21963 - type: RandomPosterLegit - components: - - pos: -62.5,-7.5 - parent: 8364 - type: Transform -- uid: 21964 - type: RandomPosterLegit - components: - - pos: -59.5,-12.5 - parent: 8364 - type: Transform -- uid: 21965 - type: RandomPosterLegit - components: - - pos: -53.5,-7.5 - parent: 8364 - type: Transform -- uid: 21966 - type: RandomPosterLegit - components: - - pos: -58.5,-14.5 - parent: 8364 - type: Transform -- uid: 21967 - type: RandomPosterLegit - components: - - pos: -44.5,-16.5 - parent: 8364 - type: Transform -- uid: 21968 - type: RandomPosterLegit - components: - - pos: -42.5,-13.5 - parent: 8364 - type: Transform -- uid: 21969 - type: RandomPosterLegit - components: - - pos: -35.5,-10.5 - parent: 8364 - type: Transform -- uid: 21970 - type: RandomPosterLegit - components: - - pos: -35.5,-4.5 - parent: 8364 - type: Transform -- uid: 21971 - type: RandomPosterLegit - components: - - pos: -36.5,4.5 - parent: 8364 - type: Transform -- uid: 21972 - type: PosterLegitNanotrasenLogo - components: - - pos: -28.5,5.5 - parent: 8364 - type: Transform -- uid: 21973 - type: PosterContrabandNuclearDeviceInformational - components: - - pos: -34.5,5.5 - parent: 8364 - type: Transform -- uid: 21974 - type: PosterLegitPDAAd - components: - - pos: -6.5,-25.5 - parent: 8364 - type: Transform -- uid: 21975 - type: RandomPosterLegit - components: - - pos: -56.5,-1.5 - parent: 8364 - type: Transform -- uid: 21976 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-0.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21977 - type: RandomPosterLegit - components: - - pos: -2.5,-38.5 - parent: 8364 - type: Transform -- uid: 21978 - type: RandomPosterLegit - components: - - pos: 17.5,-24.5 - parent: 8364 - type: Transform -- uid: 21979 - type: RandomPosterLegit - components: - - pos: 30.5,-11.5 - parent: 8364 - type: Transform -- uid: 21980 - type: MachineAnomalyGenerator - components: - - pos: 76.5,-51.5 - parent: 8364 - type: Transform - - enabled: False - type: AmbientSound -- uid: 21981 - type: PoweredlightLED - components: - - pos: -28.5,1.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21982 - type: RandomPosterLegit - components: - - pos: 13.5,7.5 - parent: 8364 - type: Transform -- uid: 21983 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -15.5,41.5 - parent: 8364 - type: Transform -- uid: 21984 - type: RandomPosterLegit - components: - - pos: 22.5,16.5 - parent: 8364 - type: Transform -- uid: 21985 - type: PosterContrabandClown - components: - - pos: 23.5,3.5 - parent: 8364 - type: Transform -- uid: 21986 - type: PottedPlantRandom - components: - - pos: 74.5,5.5 - parent: 8364 - type: Transform -- uid: 21987 - type: PottedPlantRandom - components: - - pos: 73.5,0.5 - parent: 8364 - type: Transform -- uid: 21988 - type: PottedPlantRandom - components: - - pos: 73.5,3.5 - parent: 8364 - type: Transform -- uid: 21989 - type: PottedPlantRandom - components: - - pos: 73.5,-5.5 - parent: 8364 - type: Transform -- uid: 21990 - type: RandomPosterLegit - components: - - pos: 13.5,-21.5 - parent: 8364 - type: Transform -- uid: 21991 - type: WallReinforced - components: - - pos: 46.5,-43.5 - parent: 8364 - type: Transform -- uid: 21992 - type: PosterContrabandBeachStarYamamoto - components: - - pos: 6.5,-50.5 - parent: 8364 - type: Transform -- uid: 21993 - type: CarpetGreen - components: - - pos: 5.5,-18.5 - parent: 8364 - type: Transform -- uid: 21994 - type: filingCabinet - components: - - pos: 5.5,-18.5 - parent: 8364 - type: Transform -- uid: 21995 - type: ReinforcedWindow - components: - - pos: -4.5,-17.5 - parent: 8364 - type: Transform -- uid: 21996 - type: ReinforcedWindow - components: - - pos: 3.5,-17.5 - parent: 8364 - type: Transform -- uid: 21997 - type: CableApcExtension - components: - - pos: -4.5,-16.5 - parent: 8364 - type: Transform -- uid: 21998 - type: CableApcExtension - components: - - pos: -4.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21999 - type: CableApcExtension - components: - - pos: 3.5,-17.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22000 - type: CableApcExtension - components: - - pos: 3.5,-16.5 - parent: 8364 - type: Transform -- uid: 22001 - type: CableApcExtension - components: - - pos: -1.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22002 - type: CableApcExtension - components: - - pos: -2.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22003 - type: CableApcExtension - components: - - pos: 0.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22004 - type: CableApcExtension - components: - - pos: 1.5,-23.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22005 - type: CableMV - components: - - pos: -10.5,-19.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22006 - type: GasPressurePump - components: - - name: Dump To Waste - type: MetaData - - rot: 3.141592653589793 rad - pos: 33.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22007 - type: Window - components: - - pos: 17.5,-3.5 - parent: 8364 - type: Transform -- uid: 22008 - type: LockerMedicineFilled - components: - - pos: -9.5,30.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.9556966 - - 18.642859 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22009 - type: CarpetSBlue - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 8364 - type: Transform -- uid: 22010 - type: TableWood - components: - - pos: -10.5,-13.5 - parent: 8364 - type: Transform -- uid: 22011 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 24.5,6.5 - parent: 8364 - type: Transform -- uid: 22012 - type: TableGlass - components: - - pos: 33.5,-30.5 - parent: 8364 - type: Transform -- uid: 22013 - type: TableGlass - components: - - pos: -13.5,-14.5 - parent: 8364 - type: Transform -- uid: 22014 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-15.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5222 - type: SignalReceiver -- uid: 22015 - type: Table - components: - - pos: 30.5,12.5 - parent: 8364 - type: Transform -- uid: 22016 - type: ExtinguisherCabinetFilled - components: - - pos: -2.5,-46.5 - parent: 8364 - type: Transform -- uid: 22017 - type: SignPlaque - components: - - pos: -11.5,-10.5 - parent: 8364 - type: Transform -- uid: 22018 - type: SignSecurity - components: - - pos: -2.5,18.5 - parent: 8364 - type: Transform -- uid: 22019 - type: ExtinguisherCabinetFilled - components: - - pos: 4.5,18.5 - parent: 8364 - type: Transform -- uid: 22020 - type: SignalButton - components: - - name: Waste Tank Blast Door - type: MetaData - - pos: 22.5,-39.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3535 - type: SignalTransmitter -- uid: 22021 - type: ExtinguisherCabinetFilled - components: - - pos: 38.5,-52.5 - parent: 8364 - type: Transform -- uid: 22022 - type: ExtinguisherCabinetFilled - components: - - pos: 48.5,-56.5 - parent: 8364 - type: Transform -- uid: 22023 - type: ReinforcedWindow - components: - - pos: 45.5,-60.5 - parent: 8364 - type: Transform -- uid: 22024 - type: ReinforcedWindow - components: - - pos: 45.5,-59.5 - parent: 8364 - type: Transform -- uid: 22025 - type: ReinforcedWindow - components: - - pos: 45.5,-58.5 - parent: 8364 - type: Transform -- uid: 22026 - type: ReinforcedWindow - components: - - pos: 45.5,-57.5 - parent: 8364 - type: Transform -- uid: 22027 - type: ReinforcedWindow - components: - - pos: 44.5,-57.5 - parent: 8364 - type: Transform -- uid: 22028 - type: ReinforcedWindow - components: - - pos: 46.5,-57.5 - parent: 8364 - type: Transform -- uid: 22029 - type: DisposalPipe - components: - - pos: -16.5,-21.5 - parent: 8364 - type: Transform -- uid: 22030 - type: DisposalPipe - components: - - pos: -16.5,-22.5 - parent: 8364 - type: Transform -- uid: 22031 - type: DisposalPipe - components: - - pos: -16.5,-23.5 - parent: 8364 - type: Transform -- uid: 22032 - type: DisposalPipe - components: - - pos: -16.5,-24.5 - parent: 8364 - type: Transform -- uid: 22033 - type: DisposalPipe - components: - - pos: -16.5,-25.5 - parent: 8364 - type: Transform -- uid: 22034 - type: DisposalPipe - components: - - pos: -16.5,-26.5 - parent: 8364 - type: Transform -- uid: 22035 - type: DisposalPipe - components: - - pos: -16.5,-27.5 - parent: 8364 - type: Transform -- uid: 22036 - type: DisposalPipe - components: - - pos: -16.5,-28.5 - parent: 8364 - type: Transform -- uid: 22037 - type: DisposalPipe - components: - - pos: -16.5,-29.5 - parent: 8364 - type: Transform -- uid: 22038 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -16.5,-30.5 - parent: 8364 - type: Transform -- uid: 22039 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-30.5 - parent: 8364 - type: Transform -- uid: 22040 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-30.5 - parent: 8364 - type: Transform -- uid: 22041 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-30.5 - parent: 8364 - type: Transform -- uid: 22042 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-30.5 - parent: 8364 - type: Transform -- uid: 22043 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-30.5 - parent: 8364 - type: Transform -- uid: 22044 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-30.5 - parent: 8364 - type: Transform -- uid: 22045 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-30.5 - parent: 8364 - type: Transform -- uid: 22046 - type: DisposalRouterFlipped - components: - - rot: 3.141592653589793 rad - pos: 15.5,-8.5 - parent: 8364 - type: Transform - - tags: - - bridge - type: DisposalRouter -- uid: 22047 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-14.5 - parent: 8364 - type: Transform -- uid: 22048 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 8364 - type: Transform -- uid: 22049 - type: DisposalPipe - components: - - pos: -7.5,-28.5 - parent: 8364 - type: Transform -- uid: 22050 - type: DisposalPipe - components: - - pos: -7.5,-27.5 - parent: 8364 - type: Transform -- uid: 22051 - type: DisposalBend - components: - - pos: -7.5,-26.5 - parent: 8364 - type: Transform -- uid: 22052 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 8364 - type: Transform -- uid: 22053 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-26.5 - parent: 8364 - type: Transform -- uid: 22054 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-26.5 - parent: 8364 - type: Transform -- uid: 22055 - type: WeaponLaserCarbinePractice - components: - - pos: 30.516956,12.595894 - parent: 8364 - type: Transform -- uid: 22056 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-30.5 - parent: 8364 - type: Transform -- uid: 22057 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-30.5 - parent: 8364 - type: Transform -- uid: 22058 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-30.5 - parent: 8364 - type: Transform -- uid: 22059 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-30.5 - parent: 8364 - type: Transform -- uid: 22060 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-30.5 - parent: 8364 - type: Transform -- uid: 22061 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-17.5 - parent: 8364 - type: Transform -- uid: 22062 - type: DisposalRouter - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 8364 - type: Transform - - tags: - - engineering - type: DisposalRouter -- uid: 22063 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-40.5 - parent: 8364 - type: Transform -- uid: 22064 - type: DisposalPipe - components: - - pos: -0.5,-32.5 - parent: 8364 - type: Transform -- uid: 22065 - type: WallSolid - components: - - pos: 41.5,-15.5 - parent: 8364 - type: Transform -- uid: 22066 - type: DisposalPipe - components: - - pos: -0.5,-33.5 - parent: 8364 - type: Transform -- uid: 22067 - type: DisposalPipe - components: - - pos: -0.5,-34.5 - parent: 8364 - type: Transform -- uid: 22068 - type: DisposalPipe - components: - - pos: -0.5,-35.5 - parent: 8364 - type: Transform -- uid: 22069 - type: DisposalPipe - components: - - pos: -0.5,-36.5 - parent: 8364 - type: Transform -- uid: 22070 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-41.5 - parent: 8364 - type: Transform -- uid: 22071 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-42.5 - parent: 8364 - type: Transform -- uid: 22072 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-43.5 - parent: 8364 - type: Transform -- uid: 22073 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-44.5 - parent: 8364 - type: Transform -- uid: 22074 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-45.5 - parent: 8364 - type: Transform -- uid: 22075 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-46.5 - parent: 8364 - type: Transform -- uid: 22076 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-47.5 - parent: 8364 - type: Transform -- uid: 22077 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-48.5 - parent: 8364 - type: Transform -- uid: 22078 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-49.5 - parent: 8364 - type: Transform -- uid: 22079 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-50.5 - parent: 8364 - type: Transform -- uid: 22080 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-51.5 - parent: 8364 - type: Transform -- uid: 22081 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-52.5 - parent: 8364 - type: Transform -- uid: 22082 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-53.5 - parent: 8364 - type: Transform -- uid: 22083 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-54.5 - parent: 8364 - type: Transform -- uid: 22084 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -1.5,-55.5 - parent: 8364 - type: Transform -- uid: 22085 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-37.5 - parent: 8364 - type: Transform -- uid: 22086 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-37.5 - parent: 8364 - type: Transform -- uid: 22087 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 8364 - type: Transform -- uid: 22088 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-39.5 - parent: 8364 - type: Transform -- uid: 22089 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-38.5 - parent: 8364 - type: Transform -- uid: 22090 - type: PlasticFlapsClear - components: - - pos: 76.5,-21.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 22091 - type: DisposalUnit - components: - - pos: -49.5,-8.5 - parent: 8364 - type: Transform -- uid: 22092 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-55.5 - parent: 8364 - type: Transform -- uid: 22093 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-55.5 - parent: 8364 - type: Transform -- uid: 22094 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-55.5 - parent: 8364 - type: Transform -- uid: 22095 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-55.5 - parent: 8364 - type: Transform -- uid: 22096 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-55.5 - parent: 8364 - type: Transform -- uid: 22097 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,-54.5 - parent: 8364 - type: Transform -- uid: 22098 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,-53.5 - parent: 8364 - type: Transform -- uid: 22099 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,-52.5 - parent: 8364 - type: Transform -- uid: 22100 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-51.5 - parent: 8364 - type: Transform -- uid: 22101 - type: MailingUnit - components: - - pos: -11.5,-26.5 - parent: 8364 - type: Transform - - tag: hop - type: MailingUnit - - config: - tag: hop - type: Configuration -- uid: 22102 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 8364 - type: Transform -- uid: 22103 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-30.5 - parent: 8364 - type: Transform -- uid: 22104 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-30.5 - parent: 8364 - type: Transform -- uid: 22105 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-30.5 - parent: 8364 - type: Transform -- uid: 22106 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-30.5 - parent: 8364 - type: Transform -- uid: 22107 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-30.5 - parent: 8364 - type: Transform -- uid: 22108 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-30.5 - parent: 8364 - type: Transform -- uid: 22109 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-30.5 - parent: 8364 - type: Transform -- uid: 22110 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-30.5 - parent: 8364 - type: Transform -- uid: 22111 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-30.5 - parent: 8364 - type: Transform -- uid: 22112 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-30.5 - parent: 8364 - type: Transform -- uid: 22113 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-30.5 - parent: 8364 - type: Transform -- uid: 22114 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-30.5 - parent: 8364 - type: Transform -- uid: 22115 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-30.5 - parent: 8364 - type: Transform -- uid: 22116 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-30.5 - parent: 8364 - type: Transform -- uid: 22117 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-29.5 - parent: 8364 - type: Transform -- uid: 22118 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-28.5 - parent: 8364 - type: Transform -- uid: 22119 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-27.5 - parent: 8364 - type: Transform -- uid: 22120 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-27.5 - parent: 8364 - type: Transform -- uid: 22121 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-27.5 - parent: 8364 - type: Transform -- uid: 22122 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-27.5 - parent: 8364 - type: Transform -- uid: 22123 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-27.5 - parent: 8364 - type: Transform -- uid: 22124 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-30.5 - parent: 8364 - type: Transform -- uid: 22125 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-17.5 - parent: 8364 - type: Transform -- uid: 22126 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-27.5 - parent: 8364 - type: Transform -- uid: 22127 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-24.5 - parent: 8364 - type: Transform -- uid: 22128 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-24.5 - parent: 8364 - type: Transform -- uid: 22129 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 21.5,-26.5 - parent: 8364 - type: Transform -- uid: 22130 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 21.5,-25.5 - parent: 8364 - type: Transform -- uid: 22131 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 8364 - type: Transform -- uid: 22132 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 8364 - type: Transform -- uid: 22133 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-24.5 - parent: 8364 - type: Transform -- uid: 22134 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-24.5 - parent: 8364 - type: Transform -- uid: 22135 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-24.5 - parent: 8364 - type: Transform -- uid: 22136 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-24.5 - parent: 8364 - type: Transform -- uid: 22137 - type: DisposalTrunk - components: - - pos: 28.5,-23.5 - parent: 8364 - type: Transform -- uid: 22138 - type: MailingUnit - components: - - pos: 5.5,28.5 - parent: 8364 - type: Transform - - tag: security - type: MailingUnit - - config: - tag: security - type: Configuration -- uid: 22139 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-18.5 - parent: 8364 - type: Transform -- uid: 22140 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22141 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,-16.5 - parent: 8364 - type: Transform -- uid: 22142 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,-15.5 - parent: 8364 - type: Transform -- uid: 22143 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,-14.5 - parent: 8364 - type: Transform -- uid: 22144 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,-13.5 - parent: 8364 - type: Transform -- uid: 22145 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,-12.5 - parent: 8364 - type: Transform -- uid: 22146 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,-11.5 - parent: 8364 - type: Transform -- uid: 22147 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,-10.5 - parent: 8364 - type: Transform -- uid: 22148 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,-9.5 - parent: 8364 - type: Transform -- uid: 22149 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,-8.5 - parent: 8364 - type: Transform -- uid: 22150 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,-7.5 - parent: 8364 - type: Transform -- uid: 22151 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,-6.5 - parent: 8364 - type: Transform -- uid: 22152 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,-5.5 - parent: 8364 - type: Transform -- uid: 22153 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,-4.5 - parent: 8364 - type: Transform -- uid: 22154 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,-3.5 - parent: 8364 - type: Transform -- uid: 22155 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-2.5 - parent: 8364 - type: Transform -- uid: 22156 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 8364 - type: Transform -- uid: 22157 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 8364 - type: Transform -- uid: 22158 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 8364 - type: Transform -- uid: 22159 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 8364 - type: Transform -- uid: 22160 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 8364 - type: Transform -- uid: 22161 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 8364 - type: Transform -- uid: 22162 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-2.5 - parent: 8364 - type: Transform -- uid: 22163 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 8364 - type: Transform -- uid: 22164 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 8364 - type: Transform -- uid: 22165 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 8364 - type: Transform -- uid: 22166 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 8364 - type: Transform -- uid: 22167 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 8364 - type: Transform -- uid: 22168 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 8364 - type: Transform -- uid: 22169 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-22.5 - parent: 8364 - type: Transform -- uid: 22170 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-20.5 - parent: 8364 - type: Transform -- uid: 22171 - type: DisposalPipe - components: - - pos: -0.5,-1.5 - parent: 8364 - type: Transform -- uid: 22172 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-25.5 - parent: 8364 - type: Transform -- uid: 22173 - type: DisposalPipe - components: - - pos: -0.5,0.5 - parent: 8364 - type: Transform -- uid: 22174 - type: DisposalPipe - components: - - pos: -0.5,1.5 - parent: 8364 - type: Transform -- uid: 22175 - type: DisposalPipe - components: - - pos: -0.5,2.5 - parent: 8364 - type: Transform -- uid: 22176 - type: DisposalPipe - components: - - pos: -0.5,3.5 - parent: 8364 - type: Transform -- uid: 22177 - type: DisposalPipe - components: - - pos: -0.5,4.5 - parent: 8364 - type: Transform -- uid: 22178 - type: DisposalPipe - components: - - pos: -0.5,5.5 - parent: 8364 - type: Transform -- uid: 22179 - type: DisposalPipe - components: - - pos: -0.5,6.5 - parent: 8364 - type: Transform -- uid: 22180 - type: DisposalPipe - components: - - pos: -0.5,7.5 - parent: 8364 - type: Transform -- uid: 22181 - type: DisposalPipe - components: - - pos: -0.5,8.5 - parent: 8364 - type: Transform -- uid: 22182 - type: DisposalPipe - components: - - pos: -0.5,9.5 - parent: 8364 - type: Transform -- uid: 22183 - type: DisposalPipe - components: - - pos: -0.5,10.5 - parent: 8364 - type: Transform -- uid: 22184 - type: DisposalPipe - components: - - pos: -0.5,11.5 - parent: 8364 - type: Transform -- uid: 22185 - type: DisposalPipe - components: - - pos: -0.5,12.5 - parent: 8364 - type: Transform -- uid: 22186 - type: DisposalPipe - components: - - pos: -0.5,13.5 - parent: 8364 - type: Transform -- uid: 22187 - type: DisposalPipe - components: - - pos: -0.5,14.5 - parent: 8364 - type: Transform -- uid: 22188 - type: DisposalPipe - components: - - pos: -0.5,15.5 - parent: 8364 - type: Transform -- uid: 22189 - type: DisposalPipe - components: - - pos: -0.5,16.5 - parent: 8364 - type: Transform -- uid: 22190 - type: DisposalPipe - components: - - pos: -0.5,17.5 - parent: 8364 - type: Transform -- uid: 22191 - type: DisposalPipe - components: - - pos: -0.5,18.5 - parent: 8364 - type: Transform -- uid: 22192 - type: DisposalPipe - components: - - pos: -0.5,19.5 - parent: 8364 - type: Transform -- uid: 22193 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -0.5,20.5 - parent: 8364 - type: Transform -- uid: 22194 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 5.5,20.5 - parent: 8364 - type: Transform -- uid: 22195 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,20.5 - parent: 8364 - type: Transform -- uid: 22196 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,20.5 - parent: 8364 - type: Transform -- uid: 22197 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,20.5 - parent: 8364 - type: Transform -- uid: 22198 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,20.5 - parent: 8364 - type: Transform -- uid: 22199 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,20.5 - parent: 8364 - type: Transform -- uid: 22200 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,21.5 - parent: 8364 - type: Transform -- uid: 22201 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,22.5 - parent: 8364 - type: Transform -- uid: 22202 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,23.5 - parent: 8364 - type: Transform -- uid: 22203 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,24.5 - parent: 8364 - type: Transform -- uid: 22204 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,25.5 - parent: 8364 - type: Transform -- uid: 22205 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,26.5 - parent: 8364 - type: Transform -- uid: 22206 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,27.5 - parent: 8364 - type: Transform -- uid: 22207 - type: DisposalTrunk - components: - - pos: 5.5,28.5 - parent: 8364 - type: Transform -- uid: 22208 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-19.5 - parent: 8364 - type: Transform -- uid: 22209 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-23.5 - parent: 8364 - type: Transform -- uid: 22210 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 8364 - type: Transform -- uid: 22211 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 8364 - type: Transform -- uid: 22212 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 8364 - type: Transform -- uid: 22213 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 8364 - type: Transform -- uid: 22214 - type: WarpPoint - components: - - pos: 66.5,-23.5 - parent: 8364 - type: Transform - - location: science - type: WarpPoint -- uid: 22215 - type: WarpPoint - components: - - pos: 30.5,-20.5 - parent: 8364 - type: Transform - - location: medbay - type: WarpPoint -- uid: 22216 - type: WarpPoint - components: - - pos: 4.5,-56.5 - parent: 8364 - type: Transform - - location: engineering - type: WarpPoint -- uid: 22217 - type: WarpPoint - components: - - pos: -26.5,-24.5 - parent: 8364 - type: Transform - - location: cargo - type: WarpPoint -- uid: 22218 - type: WarpPoint - components: - - pos: 5.5,27.5 - parent: 8364 - type: Transform - - location: security - type: WarpPoint -- uid: 22219 - type: WarpPoint - components: - - pos: -49.5,18.5 - parent: 8364 - type: Transform - - location: port bow - type: WarpPoint -- uid: 22220 - type: WarpPoint - components: - - pos: -33.5,-63.5 - parent: 8364 - type: Transform - - location: port quarter - type: WarpPoint -- uid: 22221 - type: WarpPoint - components: - - pos: 67.5,11.5 - parent: 8364 - type: Transform - - location: starboard bow - type: WarpPoint -- uid: 22222 - type: WarpPoint - components: - - pos: 76.5,-62.5 - parent: 8364 - type: Transform - - location: starboard quarter - type: WarpPoint -- uid: 22223 - type: WarpPoint - components: - - pos: -64.5,-4.5 - parent: 8364 - type: Transform - - location: arrivals - type: WarpPoint -- uid: 22224 - type: WarpPoint - components: - - pos: 79.5,-11.5 - parent: 8364 - type: Transform - - location: departure - type: WarpPoint -- uid: 22225 - type: CircuitImprinter - components: - - pos: 71.5,-20.5 - parent: 8364 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Gold - type: MaterialStorage -- uid: 22226 - type: ExtinguisherCabinetFilled - components: - - pos: -14.5,-28.5 - parent: 8364 - type: Transform -- uid: 22227 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 8364 - type: Transform -- uid: 22228 - type: ExtinguisherCabinetFilled - components: - - pos: -15.5,0.5 - parent: 8364 - type: Transform -- uid: 22229 - type: ExtinguisherCabinetFilled - components: - - pos: 10.5,0.5 - parent: 8364 - type: Transform -- uid: 22230 - type: ExtinguisherCabinetFilled - components: - - pos: 1.5,-28.5 - parent: 8364 - type: Transform -- uid: 22231 - type: ExtinguisherCabinetFilled - components: - - pos: -6.5,-23.5 - parent: 8364 - type: Transform -- uid: 22232 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 - parent: 8364 - type: Transform -- uid: 22233 - type: ExtinguisherCabinetFilled - components: - - pos: 4.5,-17.5 - parent: 8364 - type: Transform -- uid: 22234 - type: ExtinguisherCabinetFilled - components: - - pos: -24.5,0.5 - parent: 8364 - type: Transform -- uid: 22235 - type: ExtinguisherCabinetFilled - components: - - pos: -47.5,0.5 - parent: 8364 - type: Transform -- uid: 22236 - type: ExtinguisherCabinetFilled - components: - - pos: -47.5,4.5 - parent: 8364 - type: Transform -- uid: 22237 - type: ExtinguisherCabinetFilled - components: - - pos: -35.5,-7.5 - parent: 8364 - type: Transform -- uid: 22238 - type: ExtinguisherCabinetFilled - components: - - pos: -55.5,2.5 - parent: 8364 - type: Transform -- uid: 22239 - type: ExtinguisherCabinetFilled - components: - - pos: -65.5,-12.5 - parent: 8364 - type: Transform -- uid: 22240 - type: ExtinguisherCabinetFilled - components: - - pos: -65.5,-1.5 - parent: 8364 - type: Transform -- uid: 22241 - type: ExtinguisherCabinetFilled - components: - - pos: -65.5,7.5 - parent: 8364 - type: Transform -- uid: 22242 - type: ExtinguisherCabinetFilled - components: - - pos: -52.5,-14.5 - parent: 8364 - type: Transform -- uid: 22243 - type: ExtinguisherCabinetFilled - components: - - pos: -28.5,-9.5 - parent: 8364 - type: Transform -- uid: 22244 - type: ExtinguisherCabinetFilled - components: - - pos: -23.5,8.5 - parent: 8364 - type: Transform -- uid: 22245 - type: ExtinguisherCabinetFilled - components: - - pos: -51.5,16.5 - parent: 8364 - type: Transform -- uid: 22246 - type: ReinforcedWindow - components: - - pos: -7.5,9.5 - parent: 8364 - type: Transform -- uid: 22247 - type: ExtinguisherCabinetFilled - components: - - pos: 1.5,9.5 - parent: 8364 - type: Transform -- uid: 22248 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 8364 - type: Transform -- uid: 22249 - type: ExtinguisherCabinetFilled - components: - - pos: 19.5,21.5 - parent: 8364 - type: Transform -- uid: 22250 - type: ExtinguisherCabinetFilled - components: - - pos: 3.5,25.5 - parent: 8364 - type: Transform -- uid: 22251 - type: ExtinguisherCabinetFilled - components: - - pos: 5.5,33.5 - parent: 8364 - type: Transform -- uid: 22252 - type: ExtinguisherCabinetFilled - components: - - pos: 14.5,13.5 - parent: 8364 - type: Transform -- uid: 22253 - type: ExtinguisherCabinetFilled - components: - - pos: 27.5,16.5 - parent: 8364 - type: Transform -- uid: 22254 - type: ExtinguisherCabinetFilled - components: - - pos: 44.5,4.5 - parent: 8364 - type: Transform -- uid: 22255 - type: ExtinguisherCabinetFilled - components: - - pos: 59.5,14.5 - parent: 8364 - type: Transform -- uid: 22256 - type: ExtinguisherCabinetFilled - components: - - pos: 62.5,2.5 - parent: 8364 - type: Transform -- uid: 22257 - type: ReinforcedWindow - components: - - pos: 67.5,0.5 - parent: 8364 - type: Transform -- uid: 22258 - type: ExtinguisherCabinetFilled - components: - - pos: 60.5,-4.5 - parent: 8364 - type: Transform -- uid: 22259 - type: ExtinguisherCabinetFilled - components: - - pos: 77.5,-0.5 - parent: 8364 - type: Transform -- uid: 22260 - type: ExtinguisherCabinetFilled - components: - - pos: 79.5,-8.5 - parent: 8364 - type: Transform -- uid: 22261 - type: ExtinguisherCabinetFilled - components: - - pos: 35.5,-3.5 - parent: 8364 - type: Transform -- uid: 22262 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 8364 - type: Transform -- uid: 22263 - type: ExtinguisherCabinetFilled - components: - - pos: 32.5,-8.5 - parent: 8364 - type: Transform -- uid: 22264 - type: SpawnMobCorgi - components: - - pos: -10.5,-27.5 - parent: 8364 - type: Transform -- uid: 22265 - type: DogBed - components: - - pos: -10.5,-27.5 - parent: 8364 - type: Transform -- uid: 22266 - type: RandomPosterLegit - components: - - pos: 13.5,-10.5 - parent: 8364 - type: Transform -- uid: 22267 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 8364 - type: Transform -- uid: 22268 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 8364 - type: Transform -- uid: 22269 - type: RandomPosterLegit - components: - - pos: -14.5,-10.5 - parent: 8364 - type: Transform -- uid: 22270 - type: RandomPosterLegit - components: - - pos: -6.5,-28.5 - parent: 8364 - type: Transform -- uid: 22271 - type: RandomPosterLegit - components: - - pos: 5.5,-28.5 - parent: 8364 - type: Transform -- uid: 22272 - type: RandomPosterAny - components: - - pos: -40.5,-17.5 - parent: 8364 - type: Transform -- uid: 22273 - type: RandomPosterAny - components: - - pos: -53.5,-13.5 - parent: 8364 - type: Transform -- uid: 22274 - type: RandomPosterAny - components: - - pos: -51.5,12.5 - parent: 8364 - type: Transform -- uid: 22275 - type: RandomPosterContraband - components: - - pos: -60.5,13.5 - parent: 8364 - type: Transform -- uid: 22276 - type: RandomPosterContraband - components: - - pos: -60.5,15.5 - parent: 8364 - type: Transform -- uid: 22277 - type: RandomPosterAny - components: - - pos: -44.5,8.5 - parent: 8364 - type: Transform -- uid: 22278 - type: RandomPosterAny - components: - - pos: -32.5,11.5 - parent: 8364 - type: Transform -- uid: 22279 - type: RandomPosterContraband - components: - - pos: -17.5,3.5 - parent: 8364 - type: Transform -- uid: 22280 - type: RandomPosterContraband - components: - - pos: -24.5,3.5 - parent: 8364 - type: Transform -- uid: 22281 - type: RandomPosterAny - components: - - pos: -13.5,12.5 - parent: 8364 - type: Transform -- uid: 22282 - type: RandomPosterAny - components: - - pos: -9.5,12.5 - parent: 8364 - type: Transform -- uid: 22283 - type: RandomPosterAny - components: - - pos: 3.5,16.5 - parent: 8364 - type: Transform -- uid: 22284 - type: RandomPosterAny - components: - - pos: 3.5,4.5 - parent: 8364 - type: Transform -- uid: 22285 - type: RandomPosterAny - components: - - pos: 10.5,16.5 - parent: 8364 - type: Transform -- uid: 22286 - type: RandomPosterAny - components: - - pos: 22.5,24.5 - parent: 8364 - type: Transform -- uid: 22287 - type: RandomPosterAny - components: - - pos: -19.5,-34.5 - parent: 8364 - type: Transform -- uid: 22288 - type: RandomPosterAny - components: - - pos: -19.5,-41.5 - parent: 8364 - type: Transform -- uid: 22289 - type: RandomPosterAny - components: - - pos: -30.5,-45.5 - parent: 8364 - type: Transform -- uid: 22290 - type: RandomPosterAny - components: - - pos: -19.5,-52.5 - parent: 8364 - type: Transform -- uid: 22291 - type: RandomPosterAny - components: - - pos: -30.5,-50.5 - parent: 8364 - type: Transform -- uid: 22292 - type: RandomPosterAny - components: - - pos: -30.5,-57.5 - parent: 8364 - type: Transform -- uid: 22293 - type: RandomPosterAny - components: - - pos: -30.5,-62.5 - parent: 8364 - type: Transform -- uid: 22294 - type: RandomPosterAny - components: - - pos: -17.5,-59.5 - parent: 8364 - type: Transform -- uid: 22295 - type: RandomPosterAny - components: - - pos: -18.5,-46.5 - parent: 8364 - type: Transform -- uid: 22296 - type: RandomPosterAny - components: - - pos: 33.5,-58.5 - parent: 8364 - type: Transform -- uid: 22297 - type: RandomPosterAny - components: - - pos: 33.5,-61.5 - parent: 8364 - type: Transform -- uid: 22298 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 8364 - type: Transform -- uid: 22299 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 8364 - type: Transform -- uid: 22300 - type: RandomPosterAny - components: - - pos: 34.5,-66.5 - parent: 8364 - type: Transform -- uid: 22301 - type: RandomPosterAny - components: - - pos: 41.5,-67.5 - parent: 8364 - type: Transform -- uid: 22302 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 8364 - type: Transform -- uid: 22303 - type: RandomPosterAny - components: - - pos: 50.5,-61.5 - parent: 8364 - type: Transform -- uid: 22304 - type: RandomPosterAny - components: - - pos: 48.5,-48.5 - parent: 8364 - type: Transform -- uid: 22305 - type: RandomPosterAny - components: - - pos: 48.5,-40.5 - parent: 8364 - type: Transform -- uid: 22306 - type: RandomPosterAny - components: - - pos: 48.5,-19.5 - parent: 8364 - type: Transform -- uid: 22307 - type: RandomPosterAny - components: - - pos: 64.5,-63.5 - parent: 8364 - type: Transform -- uid: 22308 - type: RandomPosterAny - components: - - pos: 67.5,-57.5 - parent: 8364 - type: Transform -- uid: 22309 - type: RandomPosterAny - components: - - pos: 69.5,-67.5 - parent: 8364 - type: Transform -- uid: 22310 - type: RandomPosterAny - components: - - pos: 75.5,-62.5 - parent: 8364 - type: Transform -- uid: 22311 - type: RandomPosterAny - components: - - pos: 72.5,-62.5 - parent: 8364 - type: Transform -- uid: 22312 - type: RandomPosterAny - components: - - pos: 83.5,-56.5 - parent: 8364 - type: Transform -- uid: 22313 - type: RandomPosterAny - components: - - pos: 83.5,-53.5 - parent: 8364 - type: Transform -- uid: 22314 - type: RandomPosterAny - components: - - pos: 83.5,-40.5 - parent: 8364 - type: Transform -- uid: 22315 - type: RandomPosterAny - components: - - pos: 82.5,-34.5 - parent: 8364 - type: Transform -- uid: 22316 - type: RandomPosterAny - components: - - pos: 84.5,-30.5 - parent: 8364 - type: Transform -- uid: 22317 - type: RandomPosterAny - components: - - pos: 87.5,-25.5 - parent: 8364 - type: Transform -- uid: 22318 - type: RandomPosterAny - components: - - pos: 77.5,-18.5 - parent: 8364 - type: Transform -- uid: 22319 - type: RandomPosterAny - components: - - pos: 59.5,7.5 - parent: 8364 - type: Transform -- uid: 22320 - type: RandomPosterAny - components: - - pos: 64.5,12.5 - parent: 8364 - type: Transform -- uid: 22321 - type: RandomPosterAny - components: - - pos: 67.5,15.5 - parent: 8364 - type: Transform -- uid: 22322 - type: RandomPosterAny - components: - - pos: 60.5,15.5 - parent: 8364 - type: Transform -- uid: 22323 - type: RandomPosterAny - components: - - pos: 54.5,16.5 - parent: 8364 - type: Transform -- uid: 22324 - type: RandomPosterAny - components: - - pos: 53.5,11.5 - parent: 8364 - type: Transform -- uid: 22325 - type: RandomPosterAny - components: - - pos: 47.5,9.5 - parent: 8364 - type: Transform -- uid: 22326 - type: RandomPosterAny - components: - - pos: 51.5,6.5 - parent: 8364 - type: Transform -- uid: 22327 - type: WeaponLaserCarbinePractice - components: - - pos: 30.641956,12.408394 - parent: 8364 - type: Transform -- uid: 22328 - type: RandomPosterAny - components: - - pos: 44.5,9.5 - parent: 8364 - type: Transform -- uid: 22329 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 8364 - type: Transform -- uid: 22330 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 8364 - type: Transform -- uid: 22331 - type: DisposalBend - components: - - pos: 15.5,-2.5 - parent: 8364 - type: Transform -- uid: 22332 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 7.5,-8.5 - parent: 8364 - type: Transform -- uid: 22333 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-4.5 - parent: 8364 - type: Transform -- uid: 22334 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-5.5 - parent: 8364 - type: Transform -- uid: 22335 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-6.5 - parent: 8364 - type: Transform -- uid: 22336 - type: DisposalRouter - components: - - rot: 3.141592653589793 rad - pos: 15.5,-13.5 - parent: 8364 - type: Transform - - tags: - - science - type: DisposalRouter -- uid: 22337 - type: CableHV - components: - - pos: -0.5,-31.5 - parent: 8364 - type: Transform -- uid: 22338 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-24.5 - parent: 8364 - type: Transform -- uid: 22339 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-8.5 - parent: 8364 - type: Transform -- uid: 22340 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 8364 - type: Transform -- uid: 22341 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 8364 - type: Transform -- uid: 22342 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-8.5 - parent: 8364 - type: Transform -- uid: 22343 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-8.5 - parent: 8364 - type: Transform -- uid: 22344 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-8.5 - parent: 8364 - type: Transform -- uid: 22345 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 7.5,-7.5 - parent: 8364 - type: Transform -- uid: 22346 - type: DisposalTrunk - components: - - pos: 7.5,-6.5 - parent: 8364 - type: Transform -- uid: 22347 - type: MailingUnit - components: - - pos: 28.5,-23.5 - parent: 8364 - type: Transform - - tag: medical - type: MailingUnit - - config: - tag: medical - type: Configuration -- uid: 22348 - type: DisposalPipe - components: - - pos: 15.5,-9.5 - parent: 8364 - type: Transform -- uid: 22349 - type: DisposalPipe - components: - - pos: 15.5,-10.5 - parent: 8364 - type: Transform -- uid: 22350 - type: DisposalPipe - components: - - pos: 15.5,-11.5 - parent: 8364 - type: Transform -- uid: 22351 - type: DisposalPipe - components: - - pos: 15.5,-12.5 - parent: 8364 - type: Transform -- uid: 22352 - type: DisposalRouter - components: - - rot: 3.141592653589793 rad - pos: 15.5,-27.5 - parent: 8364 - type: Transform - - tags: - - medical - type: DisposalRouter -- uid: 22353 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-13.5 - parent: 8364 - type: Transform -- uid: 22354 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-13.5 - parent: 8364 - type: Transform -- uid: 22355 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-13.5 - parent: 8364 - type: Transform -- uid: 22356 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-13.5 - parent: 8364 - type: Transform -- uid: 22357 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-16.5 - parent: 8364 - type: Transform -- uid: 22358 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-7.5 - parent: 8364 - type: Transform -- uid: 22359 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-13.5 - parent: 8364 - type: Transform -- uid: 22360 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-13.5 - parent: 8364 - type: Transform -- uid: 22361 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-13.5 - parent: 8364 - type: Transform -- uid: 22362 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-13.5 - parent: 8364 - type: Transform -- uid: 22363 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-13.5 - parent: 8364 - type: Transform -- uid: 22364 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-13.5 - parent: 8364 - type: Transform -- uid: 22365 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-13.5 - parent: 8364 - type: Transform -- uid: 22366 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-13.5 - parent: 8364 - type: Transform -- uid: 22367 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-13.5 - parent: 8364 - type: Transform -- uid: 22368 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-13.5 - parent: 8364 - type: Transform -- uid: 22369 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-13.5 - parent: 8364 - type: Transform -- uid: 22370 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-13.5 - parent: 8364 - type: Transform -- uid: 22371 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-13.5 - parent: 8364 - type: Transform -- uid: 22372 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-13.5 - parent: 8364 - type: Transform -- uid: 22373 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-13.5 - parent: 8364 - type: Transform -- uid: 22374 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-13.5 - parent: 8364 - type: Transform -- uid: 22375 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-13.5 - parent: 8364 - type: Transform -- uid: 22376 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-13.5 - parent: 8364 - type: Transform -- uid: 22377 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-13.5 - parent: 8364 - type: Transform -- uid: 22378 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-13.5 - parent: 8364 - type: Transform -- uid: 22379 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-13.5 - parent: 8364 - type: Transform -- uid: 22380 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-13.5 - parent: 8364 - type: Transform -- uid: 22381 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-13.5 - parent: 8364 - type: Transform -- uid: 22382 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-13.5 - parent: 8364 - type: Transform -- uid: 22383 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-13.5 - parent: 8364 - type: Transform -- uid: 22384 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-13.5 - parent: 8364 - type: Transform -- uid: 22385 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-13.5 - parent: 8364 - type: Transform -- uid: 22386 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-13.5 - parent: 8364 - type: Transform -- uid: 22387 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-13.5 - parent: 8364 - type: Transform -- uid: 22388 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-13.5 - parent: 8364 - type: Transform -- uid: 22389 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-13.5 - parent: 8364 - type: Transform -- uid: 22390 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-13.5 - parent: 8364 - type: Transform -- uid: 22391 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-13.5 - parent: 8364 - type: Transform -- uid: 22392 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-13.5 - parent: 8364 - type: Transform -- uid: 22393 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-13.5 - parent: 8364 - type: Transform -- uid: 22394 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-13.5 - parent: 8364 - type: Transform -- uid: 22395 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-13.5 - parent: 8364 - type: Transform -- uid: 22396 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-13.5 - parent: 8364 - type: Transform -- uid: 22397 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-13.5 - parent: 8364 - type: Transform -- uid: 22398 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-13.5 - parent: 8364 - type: Transform -- uid: 22399 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-13.5 - parent: 8364 - type: Transform -- uid: 22400 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-13.5 - parent: 8364 - type: Transform -- uid: 22401 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-13.5 - parent: 8364 - type: Transform -- uid: 22402 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-13.5 - parent: 8364 - type: Transform -- uid: 22403 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-13.5 - parent: 8364 - type: Transform -- uid: 22404 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-13.5 - parent: 8364 - type: Transform -- uid: 22405 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-13.5 - parent: 8364 - type: Transform -- uid: 22406 - type: DisposalBend - components: - - pos: 70.5,-13.5 - parent: 8364 - type: Transform -- uid: 22407 - type: DisposalPipe - components: - - pos: 70.5,-14.5 - parent: 8364 - type: Transform -- uid: 22408 - type: DisposalPipe - components: - - pos: 70.5,-15.5 - parent: 8364 - type: Transform -- uid: 22409 - type: DisposalPipe - components: - - pos: 70.5,-16.5 - parent: 8364 - type: Transform -- uid: 22410 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-17.5 - parent: 8364 - type: Transform -- uid: 22411 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-17.5 - parent: 8364 - type: Transform -- uid: 22412 - type: MailingUnit - components: - - pos: 69.5,-17.5 - parent: 8364 - type: Transform - - tag: science - type: MailingUnit - - config: - tag: science - type: Configuration -- uid: 22413 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-13.5 - parent: 8364 - type: Transform -- uid: 22414 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-13.5 - parent: 8364 - type: Transform -- uid: 22415 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-13.5 - parent: 8364 - type: Transform -- uid: 22416 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-17.5 - parent: 8364 - type: Transform -- uid: 22417 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-21.5 - parent: 8364 - type: Transform -- uid: 22418 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-26.5 - parent: 8364 - type: Transform -- uid: 22419 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-15.5 - parent: 8364 - type: Transform -- uid: 22420 - type: DisposalPipe - components: - - pos: -7.5,-29.5 - parent: 8364 - type: Transform -- uid: 22421 - type: SignKiddiePlaque - components: - - pos: -56.5,-6.5 - parent: 8364 - type: Transform -- uid: 22422 - type: WindoorCargoLocked - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-15.5 - parent: 8364 - type: Transform -- uid: 22423 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-8.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22424 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-8.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22425 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-25.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22426 - type: MailingUnit - components: - - pos: 2.5,-51.5 - parent: 8364 - type: Transform - - tag: engineering - type: MailingUnit - - config: - tag: engineering - type: Configuration -- uid: 22427 - type: MailingUnit - components: - - pos: 7.5,-6.5 - parent: 8364 - type: Transform - - tag: bridge - type: MailingUnit - - config: - tag: bridge - type: Configuration -- uid: 22428 - type: WallReinforced - components: - - pos: -80.5,12.5 - parent: 8364 - type: Transform -- uid: 22429 - type: WallReinforced - components: - - pos: -74.5,12.5 - parent: 8364 - type: Transform -- uid: 22430 - type: Grille - components: - - pos: -79.5,12.5 - parent: 8364 - type: Transform -- uid: 22431 - type: Grille - components: - - pos: -78.5,12.5 - parent: 8364 - type: Transform -- uid: 22432 - type: Grille - components: - - pos: -77.5,12.5 - parent: 8364 - type: Transform -- uid: 22433 - type: Grille - components: - - pos: -76.5,12.5 - parent: 8364 - type: Transform -- uid: 22434 - type: Grille - components: - - pos: -75.5,12.5 - parent: 8364 - type: Transform -- uid: 22435 - type: Grille - components: - - pos: -73.5,12.5 - parent: 8364 - type: Transform -- uid: 22436 - type: Grille - components: - - pos: -72.5,12.5 - parent: 8364 - type: Transform -- uid: 22437 - type: Grille - components: - - pos: -71.5,12.5 - parent: 8364 - type: Transform -- uid: 22438 - type: Grille - components: - - pos: -70.5,12.5 - parent: 8364 - type: Transform -- uid: 22439 - type: Grille - components: - - pos: -69.5,12.5 - parent: 8364 - type: Transform -- uid: 22440 - type: SignSecureSmall - components: - - pos: -80.5,12.5 - parent: 8364 - type: Transform -- uid: 22441 - type: SignSecureSmall - components: - - pos: -74.5,12.5 - parent: 8364 - type: Transform -- uid: 22442 - type: CommsComputerCircuitboard - components: - - pos: 3.487607,-14.509554 - parent: 8364 - type: Transform -- uid: 22443 - type: IDComputerCircuitboard - components: - - pos: -4.512393,-14.478304 - parent: 8364 - type: Transform -- uid: 22444 - type: SignKiddiePlaque - components: - - pos: -22.5,-14.5 - parent: 8364 - type: Transform -- uid: 22445 - type: SignPlaque - components: - - pos: -24.5,-8.5 - parent: 8364 - type: Transform -- uid: 22446 - type: DisposalRouter - components: - - pos: -16.5,-18.5 - parent: 8364 - type: Transform - - tags: - - mailroom - type: DisposalRouter -- uid: 22447 - type: DisposalRouter - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 8364 - type: Transform - - tags: - - security - type: DisposalRouter -- uid: 22448 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 8364 - type: Transform -- uid: 22449 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 8364 - type: Transform -- uid: 22450 - type: GasPipeStraight - components: - - pos: 61.5,-47.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22451 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-50.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22452 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-50.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22453 - type: GasFilter - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-46.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 22454 - type: GasMixerFlipped - components: - - rot: 3.141592653589793 rad - pos: 61.5,-48.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 22455 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-50.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22456 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-49.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22457 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-50.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22458 - type: GasVentPump - components: - - pos: 1.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22459 - type: GasVentScrubber - components: - - pos: -2.5,0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22460 - type: CableApcExtension - components: - - pos: -13.5,-7.5 - parent: 8364 - type: Transform -- uid: 22461 - type: CableApcExtension - components: - - pos: -12.5,-7.5 - parent: 8364 - type: Transform -- uid: 22462 - type: CableApcExtension - components: - - pos: -12.5,-8.5 - parent: 8364 - type: Transform -- uid: 22463 - type: CableApcExtension - components: - - pos: 11.5,-7.5 - parent: 8364 - type: Transform -- uid: 22464 - type: CableApcExtension - components: - - pos: 12.5,-7.5 - parent: 8364 - type: Transform -- uid: 22465 - type: CableApcExtension - components: - - pos: 11.5,-8.5 - parent: 8364 - type: Transform -- uid: 22466 - type: AsteroidRock - components: - - pos: 56.5,-76.5 - parent: 8364 - type: Transform -- uid: 22467 - type: AsteroidRock - components: - - pos: 56.5,-77.5 - parent: 8364 - type: Transform -- uid: 22468 - type: AsteroidRockMining - components: - - pos: 58.5,-80.5 - parent: 8364 - type: Transform -- uid: 22469 - type: ClothingNeckCloakMiner - components: - - pos: 56.558487,-78.42358 - parent: 8364 - type: Transform -- uid: 22470 - type: AsteroidRock - components: - - pos: 56.5,-80.5 - parent: 8364 - type: Transform -- uid: 22471 - type: AsteroidRock - components: - - pos: 57.5,-76.5 - parent: 8364 - type: Transform -- uid: 22472 - type: AsteroidRock - components: - - pos: 57.5,-77.5 - parent: 8364 - type: Transform -- uid: 22473 - type: AsteroidRock - components: - - pos: 57.5,-78.5 - parent: 8364 - type: Transform -- uid: 22474 - type: AsteroidRockMining - components: - - pos: 57.5,-79.5 - parent: 8364 - type: Transform -- uid: 22475 - type: AsteroidRock - components: - - pos: 57.5,-80.5 - parent: 8364 - type: Transform -- uid: 22476 - type: AsteroidRock - components: - - pos: 54.5,-79.5 - parent: 8364 - type: Transform -- uid: 22477 - type: AsteroidRock - components: - - pos: 54.5,-78.5 - parent: 8364 - type: Transform -- uid: 22478 - type: AsteroidRock - components: - - pos: 54.5,-77.5 - parent: 8364 - type: Transform -- uid: 22479 - type: AsteroidRock - components: - - pos: 58.5,-77.5 - parent: 8364 - type: Transform -- uid: 22480 - type: AsteroidRock - components: - - pos: 58.5,-78.5 - parent: 8364 - type: Transform -- uid: 22481 - type: AsteroidRock - components: - - pos: 58.5,-79.5 - parent: 8364 - type: Transform -- uid: 22482 - type: AsteroidRockMining - components: - - pos: 56.5,-79.5 - parent: 8364 - type: Transform -- uid: 22483 - type: AsteroidRock - components: - - pos: 58.5,-81.5 - parent: 8364 - type: Transform -- uid: 22484 - type: AsteroidRock - components: - - pos: 57.5,-81.5 - parent: 8364 - type: Transform -- uid: 22485 - type: AsteroidRock - components: - - pos: 56.5,-81.5 - parent: 8364 - type: Transform -- uid: 22486 - type: AsteroidRock - components: - - pos: 59.5,-80.5 - parent: 8364 - type: Transform -- uid: 22487 - type: AsteroidRock - components: - - pos: 59.5,-79.5 - parent: 8364 - type: Transform -- uid: 22488 - type: AsteroidRock - components: - - pos: 59.5,-78.5 - parent: 8364 - type: Transform -- uid: 22489 - type: Catwalk - components: - - pos: 53.5,-73.5 - parent: 8364 - type: Transform -- uid: 22490 - type: Catwalk - components: - - pos: 52.5,-73.5 - parent: 8364 - type: Transform -- uid: 22491 - type: Catwalk - components: - - pos: 51.5,-73.5 - parent: 8364 - type: Transform -- uid: 22492 - type: Catwalk - components: - - pos: 52.5,-74.5 - parent: 8364 - type: Transform -- uid: 22493 - type: Catwalk - components: - - pos: 53.5,-74.5 - parent: 8364 - type: Transform -- uid: 22494 - type: Catwalk - components: - - pos: 54.5,-74.5 - parent: 8364 - type: Transform -- uid: 22495 - type: Catwalk - components: - - pos: 55.5,-74.5 - parent: 8364 - type: Transform -- uid: 22496 - type: Catwalk - components: - - pos: 56.5,-74.5 - parent: 8364 - type: Transform -- uid: 22497 - type: Catwalk - components: - - pos: 57.5,-74.5 - parent: 8364 - type: Transform -- uid: 22498 - type: Catwalk - components: - - pos: 58.5,-74.5 - parent: 8364 - type: Transform -- uid: 22499 - type: Catwalk - components: - - pos: 59.5,-74.5 - parent: 8364 - type: Transform -- uid: 22500 - type: Catwalk - components: - - pos: 60.5,-74.5 - parent: 8364 - type: Transform -- uid: 22501 - type: Catwalk - components: - - pos: 50.5,-73.5 - parent: 8364 - type: Transform -- uid: 22502 - type: Catwalk - components: - - pos: 61.5,-73.5 - parent: 8364 - type: Transform -- uid: 22503 - type: Catwalk - components: - - pos: 49.5,-73.5 - parent: 8364 - type: Transform -- uid: 22504 - type: Catwalk - components: - - pos: 49.5,-72.5 - parent: 8364 - type: Transform -- uid: 22505 - type: Catwalk - components: - - pos: 49.5,-71.5 - parent: 8364 - type: Transform -- uid: 22506 - type: Catwalk - components: - - pos: 49.5,-70.5 - parent: 8364 - type: Transform -- uid: 22507 - type: Catwalk - components: - - pos: 49.5,-69.5 - parent: 8364 - type: Transform -- uid: 22508 - type: Catwalk - components: - - pos: 52.5,-75.5 - parent: 8364 - type: Transform -- uid: 22509 - type: Catwalk - components: - - pos: 52.5,-76.5 - parent: 8364 - type: Transform -- uid: 22510 - type: Catwalk - components: - - pos: 52.5,-77.5 - parent: 8364 - type: Transform -- uid: 22511 - type: Catwalk - components: - - pos: 52.5,-78.5 - parent: 8364 - type: Transform -- uid: 22512 - type: Catwalk - components: - - pos: 52.5,-79.5 - parent: 8364 - type: Transform -- uid: 22513 - type: Catwalk - components: - - pos: 52.5,-80.5 - parent: 8364 - type: Transform -- uid: 22514 - type: Catwalk - components: - - pos: 52.5,-81.5 - parent: 8364 - type: Transform -- uid: 22515 - type: Catwalk - components: - - pos: 52.5,-82.5 - parent: 8364 - type: Transform -- uid: 22516 - type: Pickaxe - components: - - pos: 52.54258,-74.65333 - parent: 8364 - type: Transform -- uid: 22517 - type: Catwalk - components: - - pos: 61.5,-82.5 - parent: 8364 - type: Transform -- uid: 22518 - type: Catwalk - components: - - pos: 61.5,-81.5 - parent: 8364 - type: Transform -- uid: 22519 - type: Catwalk - components: - - pos: 61.5,-80.5 - parent: 8364 - type: Transform -- uid: 22520 - type: Catwalk - components: - - pos: 61.5,-79.5 - parent: 8364 - type: Transform -- uid: 22521 - type: Catwalk - components: - - pos: 61.5,-78.5 - parent: 8364 - type: Transform -- uid: 22522 - type: Catwalk - components: - - pos: 61.5,-77.5 - parent: 8364 - type: Transform -- uid: 22523 - type: Catwalk - components: - - pos: 61.5,-76.5 - parent: 8364 - type: Transform -- uid: 22524 - type: Catwalk - components: - - pos: 61.5,-75.5 - parent: 8364 - type: Transform -- uid: 22525 - type: Catwalk - components: - - pos: 60.5,-73.5 - parent: 8364 - type: Transform -- uid: 22526 - type: Catwalk - components: - - pos: 61.5,-74.5 - parent: 8364 - type: Transform -- uid: 22527 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 55.5,-57.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22528 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 60.5,-57.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22529 - type: ClothingMaskBreath - components: - - pos: 58.432278,-55.434486 - parent: 8364 - type: Transform -- uid: 22530 - type: ClothingMaskBreath - components: - - pos: 58.682278,-55.57511 - parent: 8364 - type: Transform -- uid: 22531 - type: ClothingOuterHardsuitEVA - components: - - pos: 66.509186,-76.72045 - parent: 8364 - type: Transform -- uid: 22532 - type: ClothingHeadHelmetEVA - components: - - pos: 66.852936,-76.32983 - parent: 8364 - type: Transform -- uid: 22533 - type: EmergencyOxygenTankFilled - components: - - pos: 69.43106,-78.4392 - parent: 8364 - type: Transform -- uid: 22534 - type: ClothingShoesBootsMag - components: - - pos: 66.39981,-80.5017 - parent: 8364 - type: Transform -- uid: 22535 - type: FlashlightLantern - components: - - pos: 69.14265,-78.04858 - parent: 8364 - type: Transform -- uid: 22536 - type: CableApcExtension - components: - - pos: 62.5,-57.5 - parent: 8364 - type: Transform -- uid: 22537 - type: CableApcExtension - components: - - pos: 57.5,-57.5 - parent: 8364 - type: Transform -- uid: 22538 - type: CableApcExtension - components: - - pos: 62.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22539 - type: CableApcExtension - components: - - pos: 61.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22540 - type: CableApcExtension - components: - - pos: 63.5,-58.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22541 - type: CableApcExtension - components: - - pos: 53.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22542 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-49.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22543 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-23.5 - parent: 8364 - type: Transform -- uid: 22544 - type: ClosetFireFilled - components: - - pos: 3.5,-47.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22545 - type: ClosetEmergencyFilledRandom - components: - - pos: 3.5,-48.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22546 - type: ClosetEmergencyFilledRandom - components: - - pos: -32.5,-36.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22547 - type: ClothingHeadFishCap - components: - - pos: -43.50487,-10.468363 - parent: 8364 - type: Transform -- uid: 22548 - type: ClothingEyesGlasses - components: - - pos: -43.489246,-12.358988 - parent: 8364 - type: Transform -- uid: 22549 - type: ClothingEyesGlasses - components: - - pos: 33.436237,-27.366598 - parent: 8364 - type: Transform -- uid: 22550 - type: ClothingEyesGlasses - components: - - pos: 74.511635,-31.335205 - parent: 8364 - type: Transform -- uid: 22551 - type: ClothingEyesGlasses - components: - - pos: 69.542885,-29.28833 - parent: 8364 - type: Transform -- uid: 22552 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-23.5 - parent: 8364 - type: Transform -- uid: 22553 - type: ClothingOuterHardsuitSalvage - components: - - flags: InContainer - type: MetaData - - parent: 15377 - type: Transform - - canCollide: False - type: Physics -- uid: 22554 - type: AtmosFixFreezerMarker - components: - - pos: 40.5,-1.5 - parent: 8364 - type: Transform -- uid: 22555 - type: APCHighCapacity - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-41.5 - parent: 8364 - type: Transform -- uid: 22556 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 76.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22557 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 78.5,-12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22558 - type: ComputerRadar - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-38.5 - parent: 8364 - type: Transform -- uid: 22559 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-50.5 - parent: 8364 - type: Transform - - devices: - - 14699 - - 14698 - - 14697 - - 22562 - - 22561 - - 1477 - - 1476 - - 1430 - - 15898 - type: DeviceList -- uid: 22560 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-35.5 - parent: 8364 - type: Transform - - devices: - - 14699 - - 14698 - - 14697 - - 22562 - - 22561 - - 1477 - - 1476 - - 1430 - - 15898 - type: DeviceList -- uid: 22561 - type: AirSensor - components: - - pos: -0.5,-39.5 - parent: 8364 - type: Transform -- uid: 22562 - type: AirSensor - components: - - pos: -0.5,-49.5 - parent: 8364 - type: Transform -- uid: 22563 - type: AirAlarm - components: - - pos: 1.5,-39.5 - parent: 8364 - type: Transform - - devices: - - 14699 - - 14698 - - 14697 - - 15504 - - 22562 - - 23281 - - 22561 - - 23305 - - 23304 - - 1477 - - 1476 - - 1430 - - 15898 - type: DeviceList -- uid: 22564 - type: AirSensor - components: - - pos: 6.5,-44.5 - parent: 8364 - type: Transform -- uid: 22565 - type: AirSensor - components: - - pos: 5.5,-48.5 - parent: 8364 - type: Transform -- uid: 22566 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-42.5 - parent: 8364 - type: Transform - - devices: - - 22986 - - 22564 - - 22985 - - 15898 - - 22565 - - 22997 - type: DeviceList -- uid: 22567 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-45.5 - parent: 8364 - type: Transform - - devices: - - 22986 - - 22564 - - 22985 - - 15898 - - 22565 - - 22997 - type: DeviceList -- uid: 22568 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-56.5 - parent: 8364 - type: Transform - - devices: - - 22570 - - 19040 - - 19041 - - 19039 - - 19038 - - 18757 - - 18756 - - 18755 - - 18754 - - 18753 - - 18752 - - 22571 - - 22951 - - 22950 - type: DeviceList -- uid: 22569 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-55.5 - parent: 8364 - type: Transform - - devices: - - 22570 - - 19040 - - 19041 - - 19039 - - 19038 - - 18757 - - 18756 - - 18755 - - 18754 - - 18753 - - 18752 - - 22571 - type: DeviceList -- uid: 22570 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-56.5 - parent: 8364 - type: Transform -- uid: 22571 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-47.5 - parent: 8364 - type: Transform -- uid: 22572 - type: AirSensor - components: - - pos: 4.5,-54.5 - parent: 8364 - type: Transform -- uid: 22573 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 6.5,-58.5 - parent: 8364 - type: Transform - - devices: - - 22572 - - 23012 - - 23009 - - 23010 - - 23011 - type: DeviceList -- uid: 22574 - type: AirAlarm - components: - - pos: 2.5,-64.5 - parent: 8364 - type: Transform - - devices: - - 19037 - - 19036 - - 17188 - - 17187 - - 23121 - - 23120 - type: DeviceList -- uid: 22575 - type: FireAlarm - components: - - pos: 1.5,-64.5 - parent: 8364 - type: Transform - - devices: - - 19037 - - 19036 - - 17188 - - 17187 - - 23121 - - 23120 - type: DeviceList -- uid: 22576 - type: AirAlarm - components: - - pos: -8.5,-73.5 - parent: 8364 - type: Transform - - devices: - - 22577 - - 23240 - - 23239 - - 22578 - - 23176 - - invalid - type: DeviceList -- uid: 22577 - type: AirSensor - components: - - pos: -8.5,-76.5 - parent: 8364 - type: Transform -- uid: 22578 - type: AirSensor - components: - - pos: 7.5,-76.5 - parent: 8364 - type: Transform -- uid: 22579 - type: AirSensor - components: - - pos: 11.5,-73.5 - parent: 8364 - type: Transform -- uid: 22580 - type: AirAlarm - components: - - pos: 11.5,-69.5 - parent: 8364 - type: Transform - - devices: - - 23180 - - 23178 - - 22579 - type: DeviceList -- uid: 22581 - type: AirAlarm - components: - - pos: -2.5,-68.5 - parent: 8364 - type: Transform - - devices: - - 23241 - - 23238 - - 22582 - - 23177 - - 23179 - - 22583 - type: DeviceList -- uid: 22582 - type: AirSensor - components: - - pos: -4.5,-72.5 - parent: 8364 - type: Transform -- uid: 22583 - type: AirSensor - components: - - pos: 3.5,-72.5 - parent: 8364 - type: Transform -- uid: 22584 - type: AirAlarm - components: - - pos: -16.5,-67.5 - parent: 8364 - type: Transform - - devices: - - 19037 - - 19036 - - 22586 - - 17177 - type: DeviceList -- uid: 22585 - type: FireAlarm - components: - - pos: -17.5,-67.5 - parent: 8364 - type: Transform - - devices: - - 19037 - - 19036 - - 22586 - type: DeviceList -- uid: 22586 - type: AirSensor - components: - - pos: -15.5,-72.5 - parent: 8364 - type: Transform -- uid: 22587 - type: AirSensor - components: - - pos: -23.5,-67.5 - parent: 8364 - type: Transform -- uid: 22588 - type: AirAlarm - components: - - pos: -23.5,-63.5 - parent: 8364 - type: Transform - - devices: - - 23261 - - 23260 - - 22587 - type: DeviceList -- uid: 22589 - type: AirAlarm - components: - - pos: -2.5,-28.5 - parent: 8364 - type: Transform - - devices: - - 1477 - - 1476 - - 1430 - - 22591 - - 6917 - - 9826 - - 9825 - - 6911 - - 6714 - - 6690 - - 23948 - - 23947 - type: DeviceList -- uid: 22590 - type: FireAlarm - components: - - pos: 0.5,-28.5 - parent: 8364 - type: Transform - - devices: - - 1477 - - 1476 - - 1430 - - 22591 - - 6917 - - 9826 - - 9825 - - 6911 - - 6714 - - 6690 - type: DeviceList -- uid: 22591 - type: AirSensor - components: - - pos: -3.5,-30.5 - parent: 8364 - type: Transform -- uid: 22592 - type: FireAlarm - components: - - pos: -11.5,-28.5 - parent: 8364 - type: Transform - - devices: - - 6917 - - 9826 - - 9825 - - 22593 - - 6243 - - 5753 - - 9829 - - 6760 - - 6910 - - 14556 - - 14153 - type: DeviceList -- uid: 22593 - type: AirSensor - components: - - pos: -13.5,-30.5 - parent: 8364 - type: Transform -- uid: 22594 - type: AirAlarm - components: - - pos: -13.5,-28.5 - parent: 8364 - type: Transform - - devices: - - 6917 - - 9826 - - 9825 - - 22593 - - 6243 - - 5753 - - 9829 - - 6760 - - 6910 - - 14556 - - 14153 - - 23949 - - 23950 - - 24084 - - 24085 - - 24063 - - 24062 - type: DeviceList -- uid: 22595 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-24.5 - parent: 8364 - type: Transform - - devices: - - 22597 - - 5754 - type: DeviceList -- uid: 22596 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-26.5 - parent: 8364 - type: Transform - - devices: - - 22597 - - 5754 - - 24073 - - 24072 - type: DeviceList -- uid: 22597 - type: AirSensor - components: - - pos: -7.5,-22.5 - parent: 8364 - type: Transform -- uid: 22598 - type: AirSensor - components: - - pos: -7.5,-17.5 - parent: 8364 - type: Transform -- uid: 22599 - type: AirAlarm - components: - - pos: -9.5,-10.5 - parent: 8364 - type: Transform - - devices: - - 22598 - - 24240 - - 24239 - type: DeviceList -- uid: 22600 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-13.5 - parent: 8364 - type: Transform - - devices: - - 22601 - - 24187 - - 24188 - type: DeviceList -- uid: 22601 - type: AirSensor - components: - - pos: -0.5,-12.5 - parent: 8364 - type: Transform -- uid: 22602 - type: AirSensor - components: - - pos: -0.5,-7.5 - parent: 8364 - type: Transform -- uid: 22603 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -2.5,-9.5 - parent: 8364 - type: Transform - - devices: - - 14126 - - 14127 - - 14128 - - invalid - - 22602 - - 14129 - - 14601 - - 14630 - - 24181 - - 24179 - - 24178 - - 24180 - type: DeviceList -- uid: 22604 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -5.5,-10.5 - parent: 8364 - type: Transform - - devices: - - 14126 - - 14127 - - 14128 - - invalid - - 22602 - - 14129 - - 14601 - - 14630 - type: DeviceList -- uid: 22605 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 8364 - type: Transform - - devices: - - 14126 - - 14127 - - 14128 - - invalid - - 22602 - - 14129 - - 14601 - - 14630 - type: DeviceList -- uid: 22606 - type: FirelockGlass - components: - - pos: 54.5,13.5 - parent: 8364 - type: Transform -- uid: 22607 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-20.5 - parent: 8364 - type: Transform -- uid: 22608 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-19.5 - parent: 8364 - type: Transform -- uid: 22609 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 27.5,-19.5 - parent: 8364 - type: Transform -- uid: 22610 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-20.5 - parent: 8364 - type: Transform -- uid: 22611 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-19.5 - parent: 8364 - type: Transform -- uid: 22612 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-16.5 - parent: 8364 - type: Transform - - devices: - - 24217 - - 24224 - - 22613 - type: DeviceList -- uid: 22613 - type: AirSensor - components: - - pos: 10.5,-16.5 - parent: 8364 - type: Transform -- uid: 22614 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-21.5 - parent: 8364 - type: Transform - - devices: - - 24219 - - 24220 - - 22615 - type: DeviceList -- uid: 22615 - type: AirSensor - components: - - pos: 8.5,-20.5 - parent: 8364 - type: Transform -- uid: 22616 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-16.5 - parent: 8364 - type: Transform - - devices: - - 5184 - - 5183 - - 5182 - - 7148 - - 7140 - - 7150 - - 22618 - - 14126 - - 14127 - - 14128 - - 22617 - - 9829 - - 6760 - - 6910 - - 13473 - type: DeviceList -- uid: 22617 - type: AirSensor - components: - - pos: -16.5,-16.5 - parent: 8364 - type: Transform -- uid: 22618 - type: AirSensor - components: - - pos: -13.5,-1.5 - parent: 8364 - type: Transform -- uid: 22619 - type: FireAlarm - components: - - pos: -14.5,0.5 - parent: 8364 - type: Transform - - devices: - - 5184 - - 5183 - - 5182 - - 7148 - - 7140 - - 7150 - - 22618 - - 14126 - - 14127 - - 14128 - - 22617 - - 9829 - - 6760 - - 6910 - - 13473 - type: DeviceList -- uid: 22620 - type: AirAlarm - components: - - pos: -9.5,0.5 - parent: 8364 - type: Transform - - devices: - - 5184 - - 5183 - - 5182 - - 7148 - - 7140 - - 7150 - - 22618 - - 14126 - - 14127 - - 14128 - - 22617 - - 9829 - - 6760 - - 6910 - - 24331 - - 24335 - - 24241 - - 24242 - - 24087 - - 24086 - - 13473 - type: DeviceList -- uid: 22621 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-26.5 - parent: 8364 - type: Transform - - devices: - - 14153 - - 14556 - - 22623 - - 14174 - - 22624 - - 24031 - - 24032 - - 24014 - - 23998 - type: DeviceList -- uid: 22622 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-25.5 - parent: 8364 - type: Transform - - devices: - - 14153 - - 14556 - - 22623 - - 14174 - - 22624 - type: DeviceList -- uid: 22623 - type: AirSensor - components: - - pos: -21.5,-26.5 - parent: 8364 - type: Transform -- uid: 22624 - type: AirSensor - components: - - pos: -26.5,-24.5 - parent: 8364 - type: Transform -- uid: 22625 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-18.5 - parent: 8364 - type: Transform - - devices: - - 22626 - - 13473 - - 23999 - - 24013 - type: DeviceList -- uid: 22626 - type: AirSensor - components: - - pos: -22.5,-17.5 - parent: 8364 - type: Transform -- uid: 22627 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-15.5 - parent: 8364 - type: Transform - - devices: - - 22626 - - 13473 - type: DeviceList -- uid: 22628 - type: AirAlarm - components: - - pos: 14.5,0.5 - parent: 8364 - type: Transform - - devices: - - 7393 - - 7390 - - 7146 - - 22632 - - 22631 - - 22630 - - 14129 - - 14601 - - 14630 - - 6683 - - 6682 - - 6685 - - 24299 - - 24300 - - 24244 - - 24243 - - invalid - type: DeviceList -- uid: 22629 - type: FireAlarm - components: - - pos: 13.5,0.5 - parent: 8364 - type: Transform - - devices: - - 7393 - - 7390 - - 7146 - - 22632 - - 22631 - - 22630 - - 14129 - - 14601 - - 14630 - - 6683 - - 6682 - - 6685 - - invalid - type: DeviceList -- uid: 22630 - type: AirSensor - components: - - pos: 14.5,-1.5 - parent: 8364 - type: Transform -- uid: 22631 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 9.5,1.5 - parent: 8364 - type: Transform -- uid: 22632 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 8.5,1.5 - parent: 8364 - type: Transform -- uid: 22633 - type: AirAlarm - components: - - pos: 12.5,-28.5 - parent: 8364 - type: Transform - - devices: - - 6911 - - 6714 - - 6690 - - 22635 - - 6686 - - 6687 - - 6684 - - 24099 - - 24098 - type: DeviceList -- uid: 22634 - type: FireAlarm - components: - - pos: 11.5,-28.5 - parent: 8364 - type: Transform - - devices: - - 6911 - - 6714 - - 6690 - - 22635 - - 6686 - - 6687 - - 6684 - type: DeviceList -- uid: 22635 - type: AirSensor - components: - - pos: 15.5,-29.5 - parent: 8364 - type: Transform -- uid: 22636 - type: AirSensor - components: - - pos: 15.5,-17.5 - parent: 8364 - type: Transform -- uid: 22637 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-20.5 - parent: 8364 - type: Transform - - devices: - - 22636 - - 6686 - - 6687 - - 6684 - - 6683 - - 6682 - - 6685 - - 13385 - - 13386 - - 13388 - - 24111 - - 24110 - type: DeviceList -- uid: 22638 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-19.5 - parent: 8364 - type: Transform - - devices: - - 22636 - - 6686 - - 6687 - - 6684 - - 6683 - - 6682 - - 6685 - - 13385 - - 13386 - - 13388 - type: DeviceList -- uid: 22639 - type: WallSolid - components: - - pos: -19.5,42.5 - parent: 8364 - type: Transform -- uid: 22640 - type: AirSensor - components: - - pos: 10.5,10.5 - parent: 8364 - type: Transform -- uid: 22641 - type: AirAlarm - components: - - pos: 25.5,1.5 - parent: 8364 - type: Transform - - devices: - - invalid - - 22645 - - 22646 - - 22647 - - 24436 - type: DeviceList -- uid: 22642 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 20.5,-11.5 - parent: 8364 - type: Transform - - devices: - - invalid - - 22645 - - 22646 - - 22647 - - 24436 - - 27233 - type: DeviceList -- uid: 22643 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 19.5,-11.5 - parent: 8364 - type: Transform - - devices: - - invalid - - 22645 - - 22646 - - 22647 - - 27233 - type: DeviceList -- uid: 22644 - type: WindowDirectional - components: - - pos: 23.5,-6.5 - parent: 8364 - type: Transform -- uid: 22645 - type: FirelockGlass - components: - - pos: 22.5,-11.5 - parent: 8364 - type: Transform -- uid: 22646 - type: FirelockGlass - components: - - pos: 24.5,-11.5 - parent: 8364 - type: Transform -- uid: 22647 - type: AirSensor - components: - - pos: 26.5,-9.5 - parent: 8364 - type: Transform -- uid: 22648 - type: AirSensor - components: - - pos: 30.5,0.5 - parent: 8364 - type: Transform -- uid: 22649 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 8364 - type: Transform - - devices: - - 24494 - - 24493 - - 22648 - type: DeviceList -- uid: 22650 - type: AirAlarm - components: - - pos: 40.5,-3.5 - parent: 8364 - type: Transform - - devices: - - 13381 - - 13382 - - 13383 - - 13384 - - 22653 - - 9865 - - 13394 - - 24505 - - 24506 - type: DeviceList -- uid: 22651 - type: AtmosFixFreezerMarker - components: - - pos: 40.5,0.5 - parent: 8364 - type: Transform -- uid: 22652 - type: KitchenSpike - components: - - pos: 39.5,0.5 - parent: 8364 - type: Transform -- uid: 22653 - type: AirSensor - components: - - pos: 37.5,-8.5 - parent: 8364 - type: Transform -- uid: 22654 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-7.5 - parent: 8364 - type: Transform - - devices: - - 13381 - - 13382 - - 13383 - - 13384 - - 22653 - - 9865 - - 13394 - - 7252 - type: DeviceList -- uid: 22655 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-6.5 - parent: 8364 - type: Transform - - devices: - - 10521 - - 10523 - - 13394 - - 22657 - - 10452 - - 24916 - - 24914 - - 24917 - type: DeviceList -- uid: 22656 - type: FireAlarm - components: - - pos: 45.5,-1.5 - parent: 8364 - type: Transform - - devices: - - 10521 - - 10523 - - 13394 - - 22657 - - 7252 - type: DeviceList -- uid: 22657 - type: AirSensor - components: - - pos: 45.5,-7.5 - parent: 8364 - type: Transform -- uid: 22658 - type: AirSensor - components: - - pos: 30.5,-13.5 - parent: 8364 - type: Transform -- uid: 22659 - type: AirAlarm - components: - - pos: 32.5,-11.5 - parent: 8364 - type: Transform - - devices: - - 13388 - - 13386 - - 13385 - - 22645 - - 22646 - - 2940 - - 14093 - - 14208 - - 14220 - - 14094 - - 11725 - - 11719 - - 22658 - - 13391 - - 13390 - - 13389 - - 13382 - - 13381 - - 13383 - - 13384 - - 24586 - - 24585 - type: DeviceList -- uid: 22660 - type: FireAlarm - components: - - pos: 31.5,-11.5 - parent: 8364 - type: Transform - - devices: - - 13388 - - 13386 - - 13385 - - 22645 - - 22646 - - 2940 - - 14093 - - 14208 - - 14220 - - 14094 - - 11725 - - 11719 - - 22658 - - 13391 - - 13390 - - 13389 - - 13382 - - 13381 - - 13383 - - 13384 - type: DeviceList -- uid: 22661 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-20.5 - parent: 8364 - type: Transform - - devices: - - 2940 - - 2946 - - 14149 - - 22663 - - 19972 - - 24599 - - 24610 - type: DeviceList -- uid: 22662 - type: WallReinforced - components: - - pos: 17.5,-21.5 - parent: 8364 - type: Transform -- uid: 22663 - type: AirSensor - components: - - pos: 20.5,-21.5 - parent: 8364 - type: Transform -- uid: 22664 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 8364 - type: Transform - - devices: - - 14149 - - 2946 - - 14093 - - 14208 - - 14220 - - 22666 - - 14094 - - 11725 - - 11719 - type: DeviceList -- uid: 22665 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-20.5 - parent: 8364 - type: Transform - - devices: - - 14149 - - 2946 - - 14093 - - 14208 - - 14220 - - 22666 - - 14094 - - 11725 - - 11719 - - 24584 - - 24581 - - 24583 - - 24582 - type: DeviceList -- uid: 22666 - type: AirSensor - components: - - pos: 28.5,-17.5 - parent: 8364 - type: Transform -- uid: 22667 - type: AirAlarm - components: - - pos: 40.5,-21.5 - parent: 8364 - type: Transform - - devices: - - 21773 - - 21774 - - 5548 - - 9811 - - 18680 - - 18682 - - 22668 - - 24587 - - 24588 - type: DeviceList -- uid: 22668 - type: AirSensor - components: - - pos: 30.5,-24.5 - parent: 8364 - type: Transform -- uid: 22669 - type: FireAlarm - components: - - pos: 36.5,-21.5 - parent: 8364 - type: Transform - - devices: - - 21773 - - 21774 - - 5548 - - 9811 - - 18680 - - 18682 - - 22668 - type: DeviceList -- uid: 22670 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 33.5,-31.5 - parent: 8364 - type: Transform - - devices: - - 8002 - - 5547 - - 6211 - - 5879 - - 22672 - - 24712 - - 24705 - type: DeviceList -- uid: 22671 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-30.5 - parent: 8364 - type: Transform - - devices: - - 8002 - - 5547 - - 6211 - - 5879 - - 22672 - type: DeviceList -- uid: 22672 - type: AirSensor - components: - - pos: 31.5,-29.5 - parent: 8364 - type: Transform -- uid: 22673 - type: AirAlarm - components: - - pos: 45.5,-30.5 - parent: 8364 - type: Transform - - devices: - - 22674 - - 24747 - - 24746 - type: DeviceList -- uid: 22674 - type: AirSensor - components: - - pos: 46.5,-34.5 - parent: 8364 - type: Transform -- uid: 22675 - type: FireAlarm - components: - - pos: 38.5,-30.5 - parent: 8364 - type: Transform - - devices: - - 8002 - - 5547 - - 18680 - - 18682 - - 22677 - - 7981 - - 5546 - - 7993 - type: DeviceList -- uid: 22676 - type: AirAlarm - components: - - pos: 37.5,-30.5 - parent: 8364 - type: Transform - - devices: - - 8002 - - 5547 - - 18680 - - 18682 - - 22677 - - 7981 - - 5546 - - 7993 - - 24752 - - 24745 - type: DeviceList -- uid: 22677 - type: AirSensor - components: - - pos: 40.5,-33.5 - parent: 8364 - type: Transform -- uid: 22678 - type: ReinforcedWindow - components: - - pos: 43.5,-24.5 - parent: 8364 - type: Transform -- uid: 22679 - type: AirSensor - components: - - pos: 45.5,-27.5 - parent: 8364 - type: Transform -- uid: 22680 - type: AirSensor - components: - - pos: 39.5,-28.5 - parent: 8364 - type: Transform -- uid: 22681 - type: AirSensor - components: - - pos: 40.5,-43.5 - parent: 8364 - type: Transform -- uid: 22682 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-44.5 - parent: 8364 - type: Transform - - devices: - - 7981 - - 5546 - - 7993 - - 22681 - - 24813 - - 24814 - - 24812 - - 24815 - - 24811 - - 24816 - - 24775 - - 24778 - - 24776 - - 24777 - type: DeviceList -- uid: 22683 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-43.5 - parent: 8364 - type: Transform - - devices: - - 7981 - - 5546 - - 7993 - - 22681 - type: DeviceList -- uid: 22684 - type: AirAlarm - components: - - pos: 42.5,-54.5 - parent: 8364 - type: Transform - - devices: - - 24864 - - 22685 - - 24853 - - 24852 - - 24863 - - 24851 - - 24879 - - 24850 - - 24880 - - invalid - - 24830 - - 24831 - type: DeviceList -- uid: 22685 - type: AirSensor - components: - - pos: 40.5,-57.5 - parent: 8364 - type: Transform -- uid: 22686 - type: AirSensor - components: - - pos: -6.5,-63.5 - parent: 8364 - type: Transform -- uid: 22687 - type: AirAlarm - components: - - pos: -6.5,-60.5 - parent: 8364 - type: Transform - - devices: - - 22686 - - 8184 - - 5600 - - 23201 - - 23202 - type: DeviceList -- uid: 22688 - type: FireAlarm - components: - - pos: -5.5,-60.5 - parent: 8364 - type: Transform - - devices: - - 22686 - - 8184 - - 5600 - type: DeviceList -- uid: 22689 - type: FireAlarm - components: - - pos: 64.5,-11.5 - parent: 8364 - type: Transform - - devices: - - 13380 - - 13379 - - 13378 - - 13362 - - 13363 - - 22690 - - 13391 - - 13390 - - 13389 - - 10521 - - 10523 - - 22691 - type: DeviceList -- uid: 22690 - type: AirSensor - components: - - pos: 66.5,-13.5 - parent: 8364 - type: Transform -- uid: 22691 - type: AirSensor - components: - - pos: 48.5,-13.5 - parent: 8364 - type: Transform -- uid: 22692 - type: FireAlarm - components: - - pos: 50.5,-11.5 - parent: 8364 - type: Transform - - devices: - - 13380 - - 13379 - - 13378 - - 13362 - - 13363 - - 22690 - - 13391 - - 13390 - - 13389 - - 10521 - - 10523 - - 22691 - type: DeviceList -- uid: 22693 - type: AirAlarm - components: - - pos: 54.5,-11.5 - parent: 8364 - type: Transform - - devices: - - 13380 - - 13379 - - 13378 - - 13362 - - 13363 - - 22690 - - 13391 - - 13390 - - 13389 - - 10521 - - 10523 - - 22691 - - 24920 - - 24918 - - 24921 - - 24919 - type: DeviceList -- uid: 22694 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 77.5,-16.5 - parent: 8364 - type: Transform - - devices: - - 13380 - - 13379 - - 13378 - - 22697 - - 22696 - - 22695 - - 24246 - - 24245 - type: DeviceList -- uid: 22695 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22696 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 79.5,-12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22697 - type: AirSensor - components: - - pos: 78.5,-12.5 - parent: 8364 - type: Transform -- uid: 22698 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 74.5,-11.5 - parent: 8364 - type: Transform - - devices: - - 13380 - - 13379 - - 13378 - - 22697 - type: DeviceList -- uid: 22699 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-6.5 - parent: 8364 - type: Transform - - devices: - - 22700 - - 24930 - - 24931 - type: DeviceList -- uid: 22700 - type: AirSensor - components: - - pos: 72.5,-10.5 - parent: 8364 - type: Transform -- uid: 22701 - type: AirAlarm - components: - - pos: 66.5,4.5 - parent: 8364 - type: Transform - - devices: - - 24967 - - 24968 - - 22702 - type: DeviceList -- uid: 22702 - type: AirSensor - components: - - pos: 66.5,3.5 - parent: 8364 - type: Transform -- uid: 22703 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-0.5 - parent: 8364 - type: Transform - - devices: - - 5382 - - 5383 - - 22704 - type: DeviceList -- uid: 22704 - type: AirSensor - components: - - pos: 54.5,-3.5 - parent: 8364 - type: Transform -- uid: 22705 - type: FireAlarm - components: - - pos: 60.5,-16.5 - parent: 8364 - type: Transform - - devices: - - 22707 - - 13363 - - 13364 - type: DeviceList -- uid: 22706 - type: AirAlarm - components: - - pos: 56.5,-21.5 - parent: 8364 - type: Transform - - devices: - - 22707 - - 13363 - - 13364 - - 25116 - - 25115 - type: DeviceList -- uid: 22707 - type: AirSensor - components: - - pos: 61.5,-21.5 - parent: 8364 - type: Transform -- uid: 22708 - type: CableMV - components: - - pos: 15.5,29.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22709 - type: CableApcExtension - components: - - pos: 17.5,31.5 - parent: 8364 - type: Transform -- uid: 22710 - type: AirlockMaintSecLocked - components: - - name: Security Maintenance - type: MetaData - - pos: 18.5,30.5 - parent: 8364 - type: Transform -- uid: 22711 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,35.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22712 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-24.5 - parent: 8364 - type: Transform - - devices: - - 13365 - - 13367 - - 13368 - - 13369 - - 13370 - - 13371 - - 22713 - - 5519 - - 5518 - - 6459 - - 5236 - - 5235 - type: DeviceList -- uid: 22713 - type: AirSensor - components: - - pos: 66.5,-24.5 - parent: 8364 - type: Transform -- uid: 22714 - type: AirAlarm - components: - - pos: 60.5,-25.5 - parent: 8364 - type: Transform - - devices: - - 13365 - - 13367 - - 13368 - - 13369 - - 13370 - - 13371 - - 22713 - - 5519 - - 5518 - - 6459 - - 25170 - - 25171 - - 25168 - - 25169 - - 25136 - - 25131 - type: DeviceList -- uid: 22715 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-19.5 - parent: 8364 - type: Transform - - devices: - - 13371 - - 13370 - - 13369 - - 22717 - - 13362 - - 25069 - - 25072 - type: DeviceList -- uid: 22716 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-20.5 - parent: 8364 - type: Transform - - devices: - - 13371 - - 13370 - - 13369 - - 22717 - - 13362 - type: DeviceList -- uid: 22717 - type: AirSensor - components: - - pos: 73.5,-23.5 - parent: 8364 - type: Transform -- uid: 22718 - type: AirAlarm - components: - - pos: 79.5,-22.5 - parent: 8364 - type: Transform - - devices: - - 25070 - - 25071 - - 22719 - type: DeviceList -- uid: 22719 - type: AirSensor - components: - - pos: 80.5,-24.5 - parent: 8364 - type: Transform -- uid: 22720 - type: AirSensor - components: - - pos: 69.5,-37.5 - parent: 8364 - type: Transform -- uid: 22721 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-36.5 - parent: 8364 - type: Transform - - devices: - - 25167 - - 25165 - - 22720 - type: DeviceList -- uid: 22722 - type: AirSensor - components: - - pos: 72.5,-40.5 - parent: 8364 - type: Transform -- uid: 22723 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-39.5 - parent: 8364 - type: Transform - - devices: - - 25013 - - 22722 - - 25012 - type: DeviceList -- uid: 22724 - type: FireAlarm - components: - - pos: 79.5,-42.5 - parent: 8364 - type: Transform - - devices: - - 6468 - - 6473 - - 6474 - - 6488 - - 6489 - - 19883 - - 22725 - type: DeviceList -- uid: 22725 - type: AirSensor - components: - - pos: 77.5,-45.5 - parent: 8364 - type: Transform -- uid: 22726 - type: AirAlarm - components: - - pos: 73.5,-42.5 - parent: 8364 - type: Transform - - devices: - - 6468 - - 6473 - - 6474 - - 6488 - - 6489 - - 19883 - - 22725 - - 25261 - - 25260 - type: DeviceList -- uid: 22727 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-45.5 - parent: 8364 - type: Transform - - devices: - - 6463 - - 6464 - - 6467 - - 22728 - - 5511 - - 5512 - - 5513 - type: DeviceList -- uid: 22728 - type: AirSensor - components: - - pos: 66.5,-45.5 - parent: 8364 - type: Transform -- uid: 22729 - type: SpawnPointObserver - components: - - pos: -0.5,-6.5 - parent: 8364 - type: Transform -- uid: 22730 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-38.5 - parent: 8364 - type: Transform - - devices: - - 5518 - - 5519 - - 6459 - - 6463 - - 6464 - - 6467 - - 22731 - type: DeviceList -- uid: 22731 - type: AirSensor - components: - - pos: 67.5,-39.5 - parent: 8364 - type: Transform -- uid: 22732 - type: AirAlarm - components: - - pos: 62.5,-38.5 - parent: 8364 - type: Transform - - devices: - - 25223 - - 25224 - - 25241 - - 25242 - - 22733 - - 22731 - type: DeviceList -- uid: 22733 - type: AirSensor - components: - - pos: 54.5,-39.5 - parent: 8364 - type: Transform -- uid: 22734 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-30.5 - parent: 8364 - type: Transform - - devices: - - 22742 - - 25133 - - 25132 - - 25134 - - 25135 - type: DeviceList -- uid: 22735 - type: GasPipeStraight - components: - - pos: 14.5,-59.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22736 - type: GasPipeStraight - components: - - pos: 14.5,-58.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22737 - type: GasPipeStraight - components: - - pos: 18.5,-57.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22738 - type: GasMixer - components: - - name: air mixer - type: MetaData - - rot: 1.5707963267948966 rad - pos: 18.5,-56.5 - parent: 8364 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22739 - type: GasPipeStraight - components: - - pos: 20.5,-63.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22740 - type: GasPipeStraight - components: - - pos: 20.5,-62.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22741 - type: GasPipeStraight - components: - - pos: 20.5,-61.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22742 - type: AirSensor - components: - - pos: 55.5,-30.5 - parent: 8364 - type: Transform -- uid: 22743 - type: GasPipeStraight - components: - - pos: 20.5,-59.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22744 - type: GasPipeStraight - components: - - pos: 20.5,-58.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22745 - type: GasPipeStraight - components: - - pos: 20.5,-57.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22746 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-56.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22747 - type: GasPipeBend - components: - - pos: 20.5,-56.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22748 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 17.5,-56.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22749 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-56.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22750 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-56.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22751 - type: GasPipeStraight - components: - - pos: 14.5,-57.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22752 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-56.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22753 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-55.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22754 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-58.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22755 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-57.5 - parent: 8364 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22756 - type: GasPressurePump - components: - - name: o2 to mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 19.5,-56.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22757 - type: GasPressurePump - components: - - name: n2 to mix - type: MetaData - - rot: 1.5707963267948966 rad - pos: 18.5,-55.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22758 - type: GasPipeTJunction - components: - - pos: 19.5,-55.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22759 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-55.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22760 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-54.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22761 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-54.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22762 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-54.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22763 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-54.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22764 - type: GasPressurePump - components: - - name: co2 pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 22.5,-54.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22765 - type: GasPressurePump - components: - - name: h2o pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 22.5,-50.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22766 - type: GasPressurePump - components: - - name: waste filter pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 22.5,-46.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22767 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-50.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22768 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-50.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22769 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-50.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22770 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-50.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22771 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-46.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22772 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-46.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22773 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-46.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22774 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-46.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22775 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-54.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22776 - type: GasPipeStraight - components: - - pos: 20.5,-53.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22777 - type: GasPipeStraight - components: - - pos: 20.5,-52.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22778 - type: GasPipeStraight - components: - - pos: 20.5,-51.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22779 - type: GasPipeStraight - components: - - pos: 22.5,-59.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22780 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-58.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22781 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-58.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22782 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-57.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22783 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-56.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22784 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22785 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-54.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22786 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-53.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22787 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-52.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22788 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22789 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-50.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22790 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-49.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22791 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-48.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22792 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-47.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22793 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22794 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22795 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22796 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-43.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22797 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-42.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22798 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22799 - type: GasPipeBend - components: - - pos: 23.5,-41.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22800 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 6.5,-47.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22801 - type: GasPipeBend - components: - - pos: 7.5,-44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22802 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-48.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22803 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-46.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22804 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22805 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-47.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22806 - type: VendingMachineTankDispenserEngineering - components: - - flags: SessionSpecific - type: MetaData - - pos: 63.5,-33.5 - parent: 8364 - type: Transform -- uid: 22807 - type: ClothingOuterVestHazard - components: - - pos: 30.360706,11.674019 - parent: 8364 - type: Transform -- uid: 22808 - type: ClothingOuterVestHazard - components: - - pos: 30.532581,11.595894 - parent: 8364 - type: Transform -- uid: 22809 - type: ClothingOuterVestHazard - components: - - pos: 30.324142,11.502144 - parent: 8364 - type: Transform -- uid: 22810 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22811 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22812 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22813 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22814 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-45.5 - parent: 8364 - type: Transform -- uid: 22815 - type: ClothingOuterVestHazard - components: - - pos: 30.542892,11.424019 - parent: 8364 - type: Transform -- uid: 22816 - type: GasPipeTJunction - components: - - pos: 20.5,-43.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22817 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 20.5,-44.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22818 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-44.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22819 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-44.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22820 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-44.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22821 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-44.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22822 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-44.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22823 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-41.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22824 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-41.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22825 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-41.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22826 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-41.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22827 - type: GasMixer - components: - - rot: 3.141592653589793 rad - pos: 20.5,-50.5 - parent: 8364 - type: Transform - - inletTwoConcentration: 0 - inletOneConcentration: 1 - type: GasMixer - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22828 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-49.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22829 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-48.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22830 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-47.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22831 - type: GasPipeTJunction - components: - - pos: 20.5,-46.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22832 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 19.5,-46.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22833 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-45.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22834 - type: GasPressurePump - components: - - name: mix pump - type: MetaData - - rot: 3.141592653589793 rad - pos: 19.5,-44.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22835 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-43.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22836 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-42.5 - parent: 8364 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22837 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-42.5 - parent: 8364 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22838 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-42.5 - parent: 8364 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22839 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 22.5,-42.5 - parent: 8364 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22840 - type: GasPressurePump - components: - - name: mix to waste - type: MetaData - - rot: 3.141592653589793 rad - pos: 22.5,-41.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22841 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-40.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22842 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-40.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22843 - type: GasValve - components: - - name: waste valve 2 - type: MetaData - - rot: -1.5707963267948966 rad - pos: 24.5,-40.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22844 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-40.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22845 - type: GasPressurePump - components: - - name: distro to ports - type: MetaData - - pos: 16.5,-47.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22846 - type: GasPressurePump - components: - - name: mix product to ports - type: MetaData - - pos: 17.5,-47.5 - parent: 8364 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22847 - type: GasPressurePump - components: - - name: mix line to ports - type: MetaData - - pos: 18.5,-47.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22848 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-42.5 - parent: 8364 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22849 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-42.5 - parent: 8364 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22850 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-42.5 - parent: 8364 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22851 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-42.5 - parent: 8364 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22852 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-42.5 - parent: 8364 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22853 - type: GasPipeStraight - components: - - pos: 17.5,-43.5 - parent: 8364 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22854 - type: GasPipeStraight - components: - - pos: 17.5,-44.5 - parent: 8364 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22855 - type: GasPipeStraight - components: - - pos: 17.5,-45.5 - parent: 8364 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22856 - type: GasPipeStraight - components: - - pos: 17.5,-46.5 - parent: 8364 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22857 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-46.5 - parent: 8364 - type: Transform - - color: '#B3A234FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22858 - type: GasPressurePump - components: - - name: distro to mix - type: MetaData - - pos: 21.5,-42.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22859 - type: ReinforcedWindow - components: - - pos: 23.5,-44.5 - parent: 8364 - type: Transform -- uid: 22860 - type: ReinforcedWindow - components: - - pos: 23.5,-43.5 - parent: 8364 - type: Transform -- uid: 22861 - type: ReinforcedWindow - components: - - pos: 23.5,-42.5 - parent: 8364 - type: Transform -- uid: 22862 - type: ReinforcedWindow - components: - - pos: 23.5,-41.5 - parent: 8364 - type: Transform -- uid: 22863 - type: Grille - components: - - pos: 23.5,-44.5 - parent: 8364 - type: Transform -- uid: 22864 - type: Grille - components: - - pos: 23.5,-43.5 - parent: 8364 - type: Transform -- uid: 22865 - type: Grille - components: - - pos: 23.5,-42.5 - parent: 8364 - type: Transform -- uid: 22866 - type: Grille - components: - - pos: 23.5,-41.5 - parent: 8364 - type: Transform -- uid: 22867 - type: Grille - components: - - pos: 21.5,-63.5 - parent: 8364 - type: Transform -- uid: 22868 - type: Grille - components: - - pos: 22.5,-63.5 - parent: 8364 - type: Transform -- uid: 22869 - type: Grille - components: - - pos: 25.5,-56.5 - parent: 8364 - type: Transform -- uid: 22870 - type: Grille - components: - - pos: 25.5,-55.5 - parent: 8364 - type: Transform -- uid: 22871 - type: Grille - components: - - pos: 25.5,-54.5 - parent: 8364 - type: Transform -- uid: 22872 - type: Grille - components: - - pos: 25.5,-52.5 - parent: 8364 - type: Transform -- uid: 22873 - type: Grille - components: - - pos: 25.5,-51.5 - parent: 8364 - type: Transform -- uid: 22874 - type: Grille - components: - - pos: 25.5,-50.5 - parent: 8364 - type: Transform -- uid: 22875 - type: Grille - components: - - pos: 25.5,-48.5 - parent: 8364 - type: Transform -- uid: 22876 - type: Grille - components: - - pos: 25.5,-47.5 - parent: 8364 - type: Transform -- uid: 22877 - type: Grille - components: - - pos: 25.5,-46.5 - parent: 8364 - type: Transform -- uid: 22878 - type: Grille - components: - - pos: 25.5,-44.5 - parent: 8364 - type: Transform -- uid: 22879 - type: Grille - components: - - pos: 25.5,-43.5 - parent: 8364 - type: Transform -- uid: 22880 - type: Grille - components: - - pos: 25.5,-42.5 - parent: 8364 - type: Transform -- uid: 22881 - type: ReinforcedPlasmaWindow - components: - - pos: 25.5,-44.5 - parent: 8364 - type: Transform -- uid: 22882 - type: ReinforcedPlasmaWindow - components: - - pos: 25.5,-43.5 - parent: 8364 - type: Transform -- uid: 22883 - type: ReinforcedPlasmaWindow - components: - - pos: 25.5,-42.5 - parent: 8364 - type: Transform -- uid: 22884 - type: ReinforcedPlasmaWindow - components: - - pos: 25.5,-48.5 - parent: 8364 - type: Transform -- uid: 22885 - type: ReinforcedPlasmaWindow - components: - - pos: 25.5,-47.5 - parent: 8364 - type: Transform -- uid: 22886 - type: ReinforcedPlasmaWindow - components: - - pos: 25.5,-46.5 - parent: 8364 - type: Transform -- uid: 22887 - type: ReinforcedPlasmaWindow - components: - - pos: 25.5,-52.5 - parent: 8364 - type: Transform -- uid: 22888 - type: ReinforcedPlasmaWindow - components: - - pos: 25.5,-51.5 - parent: 8364 - type: Transform -- uid: 22889 - type: ReinforcedPlasmaWindow - components: - - pos: 25.5,-50.5 - parent: 8364 - type: Transform -- uid: 22890 - type: ReinforcedPlasmaWindow - components: - - pos: 25.5,-56.5 - parent: 8364 - type: Transform -- uid: 22891 - type: ReinforcedPlasmaWindow - components: - - pos: 25.5,-55.5 - parent: 8364 - type: Transform -- uid: 22892 - type: ReinforcedPlasmaWindow - components: - - pos: 25.5,-54.5 - parent: 8364 - type: Transform -- uid: 22893 - type: ReinforcedPlasmaWindow - components: - - pos: 12.5,-63.5 - parent: 8364 - type: Transform -- uid: 22894 - type: ReinforcedPlasmaWindow - components: - - pos: 13.5,-63.5 - parent: 8364 - type: Transform -- uid: 22895 - type: ReinforcedPlasmaWindow - components: - - pos: 14.5,-63.5 - parent: 8364 - type: Transform -- uid: 22896 - type: ReinforcedPlasmaWindow - components: - - pos: 16.5,-63.5 - parent: 8364 - type: Transform -- uid: 22897 - type: ReinforcedPlasmaWindow - components: - - pos: 17.5,-63.5 - parent: 8364 - type: Transform -- uid: 22898 - type: ReinforcedPlasmaWindow - components: - - pos: 18.5,-63.5 - parent: 8364 - type: Transform -- uid: 22899 - type: ReinforcedPlasmaWindow - components: - - pos: 20.5,-63.5 - parent: 8364 - type: Transform -- uid: 22900 - type: ReinforcedPlasmaWindow - components: - - pos: 21.5,-63.5 - parent: 8364 - type: Transform -- uid: 22901 - type: ReinforcedPlasmaWindow - components: - - pos: 22.5,-63.5 - parent: 8364 - type: Transform -- uid: 22902 - type: NitrogenCanister - components: - - pos: 13.5,-66.5 - parent: 8364 - type: Transform -- uid: 22903 - type: OxygenCanister - components: - - pos: 17.5,-66.5 - parent: 8364 - type: Transform -- uid: 22904 - type: CarbonDioxideCanister - components: - - pos: 28.5,-55.5 - parent: 8364 - type: Transform -- uid: 22905 - type: WaterVaporCanister - components: - - pos: 28.5,-51.5 - parent: 8364 - type: Transform -- uid: 22906 - type: StorageCanister - components: - - pos: 59.5,-33.5 - parent: 8364 - type: Transform -- uid: 22907 - type: StorageCanister - components: - - pos: 28.5,-43.5 - parent: 8364 - type: Transform -- uid: 22908 - type: WarningCO2 - components: - - pos: 25.5,-53.5 - parent: 8364 - type: Transform -- uid: 22909 - type: WarningWaste - components: - - pos: 25.5,-49.5 - parent: 8364 - type: Transform -- uid: 22910 - type: WarningPlasma - components: - - pos: 25.5,-45.5 - parent: 8364 - type: Transform -- uid: 22911 - type: WarningWaste - components: - - pos: 25.5,-41.5 - parent: 8364 - type: Transform -- uid: 22912 - type: WarningO2 - components: - - pos: 15.5,-63.5 - parent: 8364 - type: Transform -- uid: 22913 - type: WarningN2 - components: - - pos: 11.5,-63.5 - parent: 8364 - type: Transform -- uid: 22914 - type: WarningAir - components: - - pos: 19.5,-63.5 - parent: 8364 - type: Transform -- uid: 22915 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-48.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22916 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-48.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22917 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 17.5,-48.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22918 - type: GasPressurePump - components: - - name: volatile ports pump - type: MetaData - - pos: 18.5,-49.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 22919 - type: GasPressurePump - components: - - name: neutral ports pump - type: MetaData - - pos: 16.5,-49.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 22920 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-50.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22921 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-51.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22922 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-52.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22923 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-52.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 22924 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-51.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 22925 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-50.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 22926 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-50.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22927 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-51.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22928 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-52.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22929 - type: GasThermoMachineHeater - components: - - pos: 19.5,-53.5 - parent: 8364 - type: Transform -- uid: 22930 - type: GasThermoMachineFreezer - components: - - pos: 19.5,-54.5 - parent: 8364 - type: Transform -- uid: 22931 - type: GasPressurePump - components: - - name: ports to waste - type: MetaData - - pos: 16.5,-53.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22932 - type: GasPressurePump - components: - - name: volatile ports to waste - type: MetaData - - rot: -1.5707963267948966 rad - pos: 17.5,-54.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22933 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-54.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22934 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-52.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 22935 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-51.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 22936 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-50.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 22937 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22938 - type: StorageCanister - components: - - pos: 60.5,-33.5 - parent: 8364 - type: Transform -- uid: 22939 - type: StorageCanister - components: - - pos: 61.5,-33.5 - parent: 8364 - type: Transform -- uid: 22940 - type: StorageCanister - components: - - pos: 62.5,-33.5 - parent: 8364 - type: Transform -- uid: 22941 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22942 - type: GasPipeStraight - components: - - pos: 15.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22943 - type: GasValve - components: - - name: waste valve 1 - type: MetaData - - pos: 15.5,-57.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22944 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-58.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22945 - type: GasPipeStraight - components: - - pos: 15.5,-59.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22946 - type: GasPipeStraight - components: - - pos: 15.5,-60.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22947 - type: GasPipeStraight - components: - - pos: 15.5,-61.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22948 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 15.5,-62.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22949 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-58.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22950 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22951 - type: GasVentScrubber - components: - - pos: 11.5,-47.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22952 - type: GasVentPump - components: - - pos: 16.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22953 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-43.5 - parent: 8364 - type: Transform - - color: '#3AB334FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22954 - type: AirAlarm - components: - - pos: 73.5,-48.5 - parent: 8364 - type: Transform - - devices: - - 5511 - - 5512 - - 5513 - - 1479 - - 25206 - - 25207 - type: DeviceList -- uid: 22955 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-40.5 - parent: 8364 - type: Transform -- uid: 22956 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-39.5 - parent: 8364 - type: Transform - - devices: - - 23302 - - 23303 - - 22957 - type: DeviceList -- uid: 22957 - type: AirSensor - components: - - pos: -7.5,-36.5 - parent: 8364 - type: Transform -- uid: 22958 - type: AirSensor - components: - - pos: -26.5,-33.5 - parent: 8364 - type: Transform -- uid: 22959 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-34.5 - parent: 8364 - type: Transform - - devices: - - 22958 - - 14192 - - 24056 - - 24057 - type: DeviceList -- uid: 22960 - type: GasPort - components: - - pos: 10.5,-42.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 22961 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-43.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 22962 - type: FireAlarm - components: - - pos: -23.5,-32.5 - parent: 8364 - type: Transform - - devices: - - 22958 - - 14192 - type: DeviceList -- uid: 22963 - type: GasMixer - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-43.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 22964 - type: AirAlarm - components: - - pos: -40.5,-19.5 - parent: 8364 - type: Transform - - devices: - - 22965 - - 24010 - - 24011 - - 24012 - type: DeviceList -- uid: 22965 - type: AirSensor - components: - - pos: -32.5,-26.5 - parent: 8364 - type: Transform -- uid: 22966 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-47.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22967 - type: StorageCanister - components: - - pos: 14.5,-40.5 - parent: 8364 - type: Transform -- uid: 22968 - type: StorageCanister - components: - - pos: 14.5,-41.5 - parent: 8364 - type: Transform -- uid: 22969 - type: StorageCanister - components: - - pos: 14.5,-42.5 - parent: 8364 - type: Transform -- uid: 22970 - type: AirAlarm - components: - - pos: -37.5,-3.5 - parent: 8364 - type: Transform - - devices: - - 23046 - - 25364 - - 25367 - - 25366 - - 25365 - type: DeviceList -- uid: 22971 - type: NitrogenCanister - components: - - pos: 18.5,-40.5 - parent: 8364 - type: Transform -- uid: 22972 - type: OxygenCanister - components: - - pos: 19.5,-40.5 - parent: 8364 - type: Transform -- uid: 22973 - type: OxygenCanister - components: - - pos: 20.5,-40.5 - parent: 8364 - type: Transform -- uid: 22974 - type: CarbonDioxideCanister - components: - - pos: 21.5,-40.5 - parent: 8364 - type: Transform -- uid: 22975 - type: GasPipeTJunction - components: - - pos: 6.5,-44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22976 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22977 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22978 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22979 - type: WeaponLaserCarbinePractice - components: - - pos: 30.386642,12.205269 - parent: 8364 - type: Transform -- uid: 22980 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22981 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22982 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22983 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22984 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22985 - type: GasVentPump - components: - - pos: 5.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22986 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 6.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22987 - type: GasPipeTJunction - components: - - pos: 5.5,-48.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22988 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-47.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22989 - type: GasPipeTJunction - components: - - pos: 4.5,-47.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22990 - type: GasPipeStraight - components: - - pos: 5.5,-49.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22991 - type: GasPipeStraight - components: - - pos: 5.5,-50.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22992 - type: GasPipeStraight - components: - - pos: 5.5,-51.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22993 - type: GasPipeStraight - components: - - pos: 4.5,-48.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22994 - type: GasPipeStraight - components: - - pos: 4.5,-49.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22995 - type: GasPipeStraight - components: - - pos: 4.5,-50.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22996 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-47.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22997 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-48.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22998 - type: GasPipeStraight - components: - - pos: 4.5,-51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22999 - type: GasPipeStraight - components: - - pos: 4.5,-52.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23000 - type: GasPipeFourway - components: - - pos: 4.5,-53.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23001 - type: GasPipeFourway - components: - - pos: 5.5,-52.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23002 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-52.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23003 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-52.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23004 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-53.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23005 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-53.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23006 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-53.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23007 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-53.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23008 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-53.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23009 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-52.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23010 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-52.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23011 - type: GasVentPump - components: - - pos: 9.5,-52.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23012 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-53.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23013 - type: GasPipeStraight - components: - - pos: 4.5,-54.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23014 - type: GasPipeStraight - components: - - pos: 5.5,-53.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23015 - type: GasPipeStraight - components: - - pos: 5.5,-54.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23016 - type: GasPipeStraight - components: - - pos: 5.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23017 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 4.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23018 - type: CableMV - components: - - pos: 4.5,-55.5 - parent: 8364 - type: Transform -- uid: 23019 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23020 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23021 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23022 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23023 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23024 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23025 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23026 - type: GasPipeFourway - components: - - pos: 0.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23027 - type: GasPipeFourway - components: - - pos: -1.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23028 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23029 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23030 - type: GasPipeStraight - components: - - pos: -1.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23031 - type: GasPipeStraight - components: - - pos: -1.5,-54.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23032 - type: GasPipeStraight - components: - - pos: -1.5,-53.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23033 - type: GasPipeStraight - components: - - pos: -1.5,-52.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23034 - type: GasPipeStraight - components: - - pos: 0.5,-54.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23035 - type: GasPipeStraight - components: - - pos: 0.5,-53.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23036 - type: GasPipeStraight - components: - - pos: 0.5,-52.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23037 - type: GasPipeStraight - components: - - pos: 0.5,-51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23038 - type: GasPipeStraight - components: - - pos: -1.5,-51.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23039 - type: GasPipeStraight - components: - - pos: 0.5,-50.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23040 - type: GasPipeStraight - components: - - pos: 0.5,-49.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23041 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-49.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23042 - type: GasPipeStraight - components: - - pos: 0.5,-47.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23043 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-48.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23044 - type: GasPipeStraight - components: - - pos: -1.5,-50.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23045 - type: GasPipeStraight - components: - - pos: -1.5,-48.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23046 - type: AirSensor - components: - - pos: -39.5,-7.5 - parent: 8364 - type: Transform -- uid: 23047 - type: GasPipeStraight - components: - - pos: -1.5,-46.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23048 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23049 - type: GasPipeStraight - components: - - pos: 0.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23050 - type: GasPipeStraight - components: - - pos: 0.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23051 - type: GasPipeStraight - components: - - pos: 0.5,-43.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23052 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23053 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23054 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23055 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23056 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23057 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23058 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23059 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23060 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -5.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23061 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23062 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23063 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23064 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23065 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23066 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23067 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -1.5,-57.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23068 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 0.5,-56.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23069 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -6.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23070 - type: GasPipeTJunction - components: - - pos: -7.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23071 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -7.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23072 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23073 - type: GasPipeStraight - components: - - pos: -5.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23074 - type: GasPipeStraight - components: - - pos: -7.5,-54.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23075 - type: GasPipeStraight - components: - - pos: -7.5,-53.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23076 - type: GasPipeStraight - components: - - pos: -7.5,-52.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23077 - type: GasPipeStraight - components: - - pos: -5.5,-54.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23078 - type: GasPipeStraight - components: - - pos: -5.5,-53.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23079 - type: GasPipeStraight - components: - - pos: -5.5,-52.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23080 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23081 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23082 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23083 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23084 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23085 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23086 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -7.5,-57.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23087 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23088 - type: GasVentScrubber - components: - - pos: -5.5,-51.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23089 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23090 - type: GasVentPump - components: - - pos: -7.5,-51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23091 - type: GasVentPump - components: - - pos: -6.5,-54.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23092 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23093 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23094 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23095 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23096 - type: GasPipeBend - components: - - pos: 7.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23097 - type: GasPipeBend - components: - - pos: 8.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23098 - type: GasPipeStraight - components: - - pos: 7.5,-57.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23099 - type: GasPipeStraight - components: - - pos: 7.5,-58.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23100 - type: GasPipeStraight - components: - - pos: 7.5,-59.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23101 - type: GasPipeStraight - components: - - pos: 7.5,-60.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23102 - type: GasPipeStraight - components: - - pos: 7.5,-61.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23103 - type: GasPipeStraight - components: - - pos: 8.5,-56.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23104 - type: GasPipeStraight - components: - - pos: 8.5,-57.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23105 - type: GasPipeStraight - components: - - pos: 8.5,-58.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23106 - type: GasPipeStraight - components: - - pos: 8.5,-59.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23107 - type: GasPipeStraight - components: - - pos: 8.5,-60.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23108 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-62.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23109 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-61.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23110 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-62.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23111 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-61.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23112 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-63.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23113 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-64.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23114 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,-62.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23115 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,-63.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23116 - type: FireAlarm - components: - - pos: -26.5,0.5 - parent: 8364 - type: Transform - - devices: - - 7040 - - 9823 - - 9828 - - 5184 - - 5183 - - 5182 - - 23117 - type: DeviceList -- uid: 23117 - type: AirSensor - components: - - pos: -27.5,-1.5 - parent: 8364 - type: Transform -- uid: 23118 - type: GasPipeFourway - components: - - pos: 8.5,-66.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23119 - type: GasPipeFourway - components: - - pos: 7.5,-65.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23120 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-65.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23121 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-66.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23122 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-66.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23123 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-66.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23124 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-65.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23125 - type: GasPipeStraight - components: - - pos: 7.5,-66.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23126 - type: GasPipeStraight - components: - - pos: 7.5,-67.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23127 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 7.5,-68.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23128 - type: GasPipeBend - components: - - pos: 8.5,-68.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23129 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 8.5,-67.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23130 - type: GasPipeBend - components: - - pos: 9.5,-67.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23131 - type: GasPipeStraight - components: - - pos: 8.5,-69.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23132 - type: GasPipeStraight - components: - - pos: 8.5,-70.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23133 - type: GasPipeStraight - components: - - pos: 9.5,-68.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23134 - type: GasPipeStraight - components: - - pos: 9.5,-69.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23135 - type: GasPipeStraight - components: - - pos: 9.5,-70.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23136 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 5.5,-65.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23137 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-64.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23138 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-63.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23139 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-66.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23140 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,-66.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23141 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-66.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23142 - type: GasPipeStraight - components: - - pos: 3.5,-65.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23143 - type: GasPipeStraight - components: - - pos: 3.5,-64.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23144 - type: GasPipeStraight - components: - - pos: 3.5,-63.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23145 - type: GasVentScrubber - components: - - pos: 5.5,-62.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23146 - type: GasVentPump - components: - - pos: 3.5,-62.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23147 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-66.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23148 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-67.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23149 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-65.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23150 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-66.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23151 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-65.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23152 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-65.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23153 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-65.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23154 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-67.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23155 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,-71.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23156 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-71.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23157 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-72.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23158 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,-72.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23159 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,-73.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23160 - type: GasPipeFourway - components: - - pos: 8.5,-74.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23161 - type: GasPipeFourway - components: - - pos: 9.5,-73.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23162 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-74.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23163 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-74.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23164 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-74.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23165 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-74.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23166 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-73.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23167 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-73.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23168 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-73.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23169 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-73.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23170 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-73.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23171 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-73.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23172 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-73.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23173 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-74.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23174 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-74.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23175 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-74.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23176 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 8.5,-75.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23177 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-74.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23178 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-74.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23179 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-73.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23180 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-73.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23181 - type: GasPipeStraight - components: - - pos: 9.5,-74.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23182 - type: GasPipeTJunction - components: - - pos: 0.5,-66.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23183 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,-67.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23184 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-67.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23185 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-67.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23186 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-66.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23187 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-66.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23188 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-66.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23189 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-67.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23190 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-66.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23191 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-67.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23192 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-67.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23193 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-67.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23194 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -7.5,-67.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23195 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -5.5,-66.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23196 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-66.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23197 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-65.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23198 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-65.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23199 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-64.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23200 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-64.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23201 - type: GasVentPump - components: - - pos: -7.5,-63.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23202 - type: GasVentScrubber - components: - - pos: -5.5,-63.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23203 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-67.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23204 - type: GasPipeStraight - components: - - pos: -8.5,-68.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23205 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-69.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23206 - type: GasPipeTJunction - components: - - pos: -9.5,-69.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23207 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-66.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23208 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-66.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23209 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-66.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23210 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-66.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23211 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-67.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23212 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-67.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23213 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-68.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23214 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-69.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23215 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-69.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23216 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-68.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23217 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-68.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23218 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-69.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23219 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-69.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23220 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-70.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23221 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-70.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23222 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-71.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23223 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-71.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23224 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-72.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23225 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-73.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23226 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-74.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23227 - type: GasPipeStraight - components: - - pos: -10.5,-72.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23228 - type: GasPipeStraight - components: - - pos: -10.5,-73.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23229 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-74.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23230 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-74.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23231 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-74.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23232 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-74.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23233 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-74.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23234 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-73.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23235 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-73.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23236 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-73.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23237 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-73.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23238 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-73.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23239 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -9.5,-74.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23240 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -10.5,-75.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23241 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-74.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23242 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-68.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23243 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-68.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23244 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-68.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23245 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-68.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23246 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-68.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23247 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-68.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23248 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-68.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23249 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-68.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23250 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-68.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23251 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-69.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23252 - type: GasPipeTJunction - components: - - pos: -13.5,-68.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23253 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-69.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23254 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-69.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23255 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-69.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23256 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-69.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23257 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-69.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23258 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-69.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23259 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-69.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23260 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-68.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23261 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-69.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23262 - type: AirAlarm - components: - - pos: -23.5,0.5 - parent: 8364 - type: Transform - - devices: - - 7040 - - 9823 - - 9828 - - 5184 - - 5183 - - 5182 - - 23117 - - 25408 - - 25409 - type: DeviceList -- uid: 23263 - type: AirAlarm - components: - - pos: -32.5,7.5 - parent: 8364 - type: Transform - - devices: - - 25407 - - 25406 - - 23264 - type: DeviceList -- uid: 23264 - type: AirSensor - components: - - pos: -32.5,3.5 - parent: 8364 - type: Transform -- uid: 23265 - type: AirSensor - components: - - pos: -46.5,-1.5 - parent: 8364 - type: Transform -- uid: 23266 - type: FireAlarm - components: - - pos: -42.5,0.5 - parent: 8364 - type: Transform - - devices: - - 7040 - - 9823 - - 9828 - - 23265 - - 7078 - - 7180 - - 7043 - type: DeviceList -- uid: 23267 - type: AirAlarm - components: - - pos: -50.5,0.5 - parent: 8364 - type: Transform - - devices: - - 7040 - - 9823 - - 9828 - - 23265 - - 7078 - - 7180 - - 7043 - - 25397 - - 25396 - type: DeviceList -- uid: 23268 - type: AirAlarm - components: - - pos: -44.5,6.5 - parent: 8364 - type: Transform - - devices: - - 25377 - - 23269 - - 25376 - type: DeviceList -- uid: 23269 - type: AirSensor - components: - - pos: -42.5,3.5 - parent: 8364 - type: Transform -- uid: 23270 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23271 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-42.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23272 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-42.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23273 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-42.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23274 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-42.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23275 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-42.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23276 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23277 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23278 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23279 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-42.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23280 - type: AirAlarm - components: - - pos: -11.5,10.5 - parent: 8364 - type: Transform - - devices: - - 23696 - - 24334 - - 24338 - - 24333 - - 23462 - - 24337 - - invalid - type: DeviceList -- uid: 23281 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-48.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23282 - type: GasPipeStraight - components: - - pos: -1.5,-42.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23283 - type: GasPipeStraight - components: - - pos: -1.5,-41.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23284 - type: GasPipeStraight - components: - - pos: -1.5,-40.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23285 - type: GasPipeStraight - components: - - pos: -1.5,-39.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23286 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-37.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23287 - type: GasPipeStraight - components: - - pos: -1.5,-37.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23288 - type: GasPipeStraight - components: - - pos: 0.5,-41.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23289 - type: GasPipeStraight - components: - - pos: 0.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23290 - type: GasPipeStraight - components: - - pos: 0.5,-39.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23291 - type: GasPipeStraight - components: - - pos: 0.5,-38.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23292 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-38.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23293 - type: GasPipeStraight - components: - - pos: 0.5,-36.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23294 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-36.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23295 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23296 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-36.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23297 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-36.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23298 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23299 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23300 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23301 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23302 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-36.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23303 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23304 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-37.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23305 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-38.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23306 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23307 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23308 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23309 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-33.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23310 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23311 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23312 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23313 - type: GasPipeFourway - components: - - pos: -1.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23314 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23315 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23316 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23317 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23318 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23319 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23320 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23321 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23322 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23323 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23324 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -12.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23325 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23326 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23327 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23328 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23329 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -17.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23330 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-30.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23331 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-29.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23332 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23333 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23334 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23335 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23336 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23337 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23338 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23339 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23340 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23341 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-19.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23342 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-18.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23343 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-17.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23344 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-16.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23345 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-15.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23346 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-14.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23347 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23348 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23349 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23350 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23351 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23352 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23353 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23354 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23355 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23356 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23357 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23358 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23359 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23360 - type: GasPipeTJunction - components: - - pos: -17.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23361 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23362 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23363 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23364 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23365 - type: GasPipeTJunction - components: - - pos: -21.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23366 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -25.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23367 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23368 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23369 - type: GasPipeTJunction - components: - - pos: -33.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23370 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23371 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23372 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23373 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23374 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -31.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23375 - type: GasPipeTJunction - components: - - pos: -27.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23376 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23377 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23378 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23379 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23380 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23381 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23382 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23383 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23384 - type: GasPipeTJunction - components: - - pos: -42.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23385 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23386 - type: GasPipeTJunction - components: - - pos: -43.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23387 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23388 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -38.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23389 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23390 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23391 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23392 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23393 - type: GasPipeTJunction - components: - - pos: -51.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23394 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23395 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23396 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23397 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23398 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23399 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23400 - type: GasPipeStraight - components: - - pos: -54.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23401 - type: GasPipeStraight - components: - - pos: -54.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23402 - type: GasPipeStraight - components: - - pos: -54.5,-3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23403 - type: GasPipeStraight - components: - - pos: -54.5,-4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23404 - type: GasPipeStraight - components: - - pos: -54.5,0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23405 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23406 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -57.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23407 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -59.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23408 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23409 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -61.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23410 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23411 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -62.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23412 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -63.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23413 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23414 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23415 - type: GasPipeTJunction - components: - - pos: -59.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23416 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23417 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23418 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23419 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23420 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23421 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,-4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23422 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,-3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23423 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23424 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23425 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23426 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23427 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23428 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23429 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23430 - type: GasPipeFourway - components: - - pos: -64.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23431 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -64.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23432 - type: GasPipeBend - components: - - pos: -54.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23433 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23434 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23435 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23436 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,-10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23437 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,-11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23438 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23439 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23440 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23441 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23442 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23443 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23444 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23445 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23446 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23447 - type: GasPipeBend - components: - - pos: -64.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23448 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23449 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23450 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23451 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23452 - type: GasPipeFourway - components: - - pos: -12.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23453 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23454 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23455 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23456 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23457 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23458 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23459 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23460 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23461 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23462 - type: AirSensor - components: - - pos: -11.5,8.5 - parent: 8364 - type: Transform -- uid: 23463 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23464 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23465 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23466 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23467 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23468 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23469 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23470 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23471 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23472 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23473 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23474 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23475 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23476 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23477 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23478 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,16.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23479 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,15.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23480 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,16.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23481 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,17.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23482 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,18.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23483 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,19.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23484 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23485 - type: GasPipeTJunction - components: - - pos: -1.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23486 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23487 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23488 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23489 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23490 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23491 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23492 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23493 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23494 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23495 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 8.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23496 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23497 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 11.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23498 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23499 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23500 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23501 - type: GasPipeBend - components: - - pos: 14.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23502 - type: GasPipeStraight - components: - - pos: 14.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23503 - type: GasPipeStraight - components: - - pos: 14.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23504 - type: GasPipeStraight - components: - - pos: 14.5,-3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23505 - type: GasPipeStraight - components: - - pos: 14.5,-4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23506 - type: GasPipeStraight - components: - - pos: 14.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23507 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23508 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23509 - type: GasPipeStraight - components: - - pos: 14.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23510 - type: GasPipeStraight - components: - - pos: 14.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23511 - type: GasPipeStraight - components: - - pos: 14.5,-10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23512 - type: GasPipeStraight - components: - - pos: 14.5,-11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23513 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23514 - type: GasPipeStraight - components: - - pos: 14.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23515 - type: GasPipeStraight - components: - - pos: 14.5,-14.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23516 - type: GasPipeStraight - components: - - pos: 14.5,-15.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23517 - type: GasPipeStraight - components: - - pos: 14.5,-16.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23518 - type: GasPipeStraight - components: - - pos: 14.5,-17.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23519 - type: GasPipeStraight - components: - - pos: 14.5,-18.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23520 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-19.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23521 - type: GasPipeStraight - components: - - pos: 14.5,-20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23522 - type: GasPipeStraight - components: - - pos: 14.5,-21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23523 - type: GasPipeStraight - components: - - pos: 14.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23524 - type: GasPipeStraight - components: - - pos: 14.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23525 - type: GasPipeStraight - components: - - pos: 14.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23526 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23527 - type: GasPipeStraight - components: - - pos: 14.5,-26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23528 - type: GasPipeStraight - components: - - pos: 14.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23529 - type: GasPipeStraight - components: - - pos: 14.5,-28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23530 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 14.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23531 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23532 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23533 - type: GasPipeTJunction - components: - - pos: -2.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23534 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23535 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23536 - type: GasPipeTJunction - components: - - pos: 5.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23537 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23538 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23539 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23540 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23541 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23542 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23543 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23544 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23545 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23546 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-30.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23547 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-29.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23548 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23549 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23550 - type: GasPipeFourway - components: - - pos: 0.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23551 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23552 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23553 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 1.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23554 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23555 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23556 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23557 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23558 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -7.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23559 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23560 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23561 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23562 - type: GasPipeTJunction - components: - - pos: -11.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23563 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23564 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23565 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23566 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23567 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -15.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23568 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23569 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23570 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23571 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23572 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23573 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23574 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23575 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23576 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23577 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-18.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23578 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-17.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23579 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-16.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23580 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-15.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23581 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23582 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23583 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23584 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23585 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23586 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23587 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23588 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23589 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23590 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23591 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23592 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23593 - type: GasPipeTJunction - components: - - pos: -15.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23594 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23595 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23596 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23597 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23598 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23599 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23600 - type: GasPipeTJunction - components: - - pos: -22.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23601 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23602 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23603 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23604 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23605 - type: GasPipeTJunction - components: - - pos: -23.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23606 - type: GasPipeTJunction - components: - - pos: -32.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23607 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23608 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23609 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -30.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23610 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23611 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23612 - type: GasPipeTJunction - components: - - pos: -26.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23613 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23614 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23615 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23616 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23617 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -45.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23618 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23619 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -40.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23620 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23621 - type: GasPipeTJunction - components: - - pos: -41.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23622 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23623 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23624 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23625 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23626 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23627 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23628 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23629 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23630 - type: GasPipeTJunction - components: - - pos: -50.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23631 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23632 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23633 - type: GasPipeStraight - components: - - pos: -53.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23634 - type: GasPipeStraight - components: - - pos: -53.5,-0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23635 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23636 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23637 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23638 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23639 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23640 - type: GasPipeTJunction - components: - - pos: -58.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23641 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -60.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23642 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -61.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23643 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -62.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23644 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23645 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23646 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23647 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23648 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23649 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23650 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23651 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23652 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23653 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -64.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23654 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23655 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23656 - type: GasPipeFourway - components: - - pos: -63.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23657 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23658 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23659 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23660 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23661 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23662 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -64.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23663 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23664 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23665 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23666 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23667 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -61.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23668 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23669 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -58.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23670 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23671 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23672 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23673 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23674 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23675 - type: GasPipeStraight - components: - - pos: -53.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23676 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23677 - type: GasPipeBend - components: - - pos: -53.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23678 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -63.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23679 - type: GasPipeBend - components: - - pos: -63.5,9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23680 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -64.5,9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23681 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23682 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23683 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23684 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23685 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23686 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -10.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23687 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23688 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23689 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23690 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23691 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23692 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23693 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23694 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23695 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23696 - type: AirSensor - components: - - pos: -4.5,6.5 - parent: 8364 - type: Transform -- uid: 23697 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 1.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23698 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23699 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23700 - type: GasPipeStraight - components: - - pos: 0.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23701 - type: GasPipeStraight - components: - - pos: 0.5,-0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23702 - type: GasPipeStraight - components: - - pos: 0.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23703 - type: GasPipeStraight - components: - - pos: 0.5,1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23704 - type: GasPipeStraight - components: - - pos: 0.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23705 - type: GasPipeStraight - components: - - pos: 0.5,3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23706 - type: GasPipeStraight - components: - - pos: 0.5,4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23707 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23708 - type: GasPipeStraight - components: - - pos: 0.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23709 - type: GasPipeStraight - components: - - pos: 0.5,7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23710 - type: GasPipeStraight - components: - - pos: 0.5,8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23711 - type: GasPipeStraight - components: - - pos: 0.5,9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23712 - type: GasPipeStraight - components: - - pos: 0.5,10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23713 - type: GasPipeStraight - components: - - pos: 0.5,11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23714 - type: GasPipeStraight - components: - - pos: 0.5,12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23715 - type: GasPipeStraight - components: - - pos: 0.5,13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23716 - type: GasPipeStraight - components: - - pos: 0.5,14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23717 - type: GasPipeStraight - components: - - pos: 0.5,15.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23718 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,14.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23719 - type: GasPipeStraight - components: - - pos: 0.5,17.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23720 - type: GasPipeStraight - components: - - pos: 0.5,18.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23721 - type: GasPipeTJunction - components: - - pos: 0.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23722 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23723 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23724 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23725 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23726 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23727 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23728 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 9.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23729 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23730 - type: GasPipeTJunction - components: - - pos: 10.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23731 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23732 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23733 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23734 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23735 - type: GasPipeBend - components: - - pos: 16.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23736 - type: GasPipeStraight - components: - - pos: 16.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23737 - type: GasPipeStraight - components: - - pos: 16.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23738 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23739 - type: GasPipeStraight - components: - - pos: 16.5,-6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23740 - type: GasPipeStraight - components: - - pos: 16.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23741 - type: GasPipeStraight - components: - - pos: 16.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23742 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23743 - type: GasPipeStraight - components: - - pos: 16.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23744 - type: GasPipeStraight - components: - - pos: 16.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23745 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23746 - type: GasPipeStraight - components: - - pos: 16.5,-12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23747 - type: GasPipeStraight - components: - - pos: 16.5,-13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23748 - type: GasPipeStraight - components: - - pos: 16.5,-15.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23749 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23750 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23751 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23752 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23753 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23754 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23755 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-16.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23756 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-17.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23757 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-18.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23758 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23759 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23760 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23761 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23762 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23763 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23764 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23765 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23766 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23767 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23768 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23769 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23770 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23771 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23772 - type: GasPipeTJunction - components: - - pos: 4.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23773 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23774 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23775 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23776 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23777 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23778 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23779 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23780 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23781 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23782 - type: GasPipeTJunction - components: - - pos: 15.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23783 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23784 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23785 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23786 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23787 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23788 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23789 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23790 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23791 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23792 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 22.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23793 - type: GasPipeTJunction - components: - - pos: 35.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23794 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23795 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23796 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23797 - type: GasPipeTJunction - components: - - pos: 31.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23798 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23799 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23800 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23801 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23802 - type: GasPipeTJunction - components: - - pos: 26.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23803 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23804 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23805 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 37.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23806 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23807 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23808 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23809 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23810 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23811 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23812 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 44.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23813 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23814 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23815 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 47.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23816 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23817 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23818 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23819 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23820 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23821 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 53.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23822 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23823 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23824 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23825 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23826 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23827 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23828 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23829 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23830 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23831 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23832 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23833 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23834 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23835 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 52.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23836 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23837 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23838 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23839 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23840 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23841 - type: GasPipeTJunction - components: - - pos: 46.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23842 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23843 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23844 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 43.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23845 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23846 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23847 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23848 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23849 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23850 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23851 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 36.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23852 - type: GasPipeTJunction - components: - - pos: 25.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23853 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23854 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23855 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23856 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 29.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23857 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23858 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23859 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23860 - type: GasPipeTJunction - components: - - pos: 34.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23861 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23862 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23863 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23864 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23865 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 24.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23866 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23867 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23868 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23869 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23870 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23871 - type: GasPipeTJunction - components: - - pos: 65.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23872 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23873 - type: GasPipeTJunction - components: - - pos: 66.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23874 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23875 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23876 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23877 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23878 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23879 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23880 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23881 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23882 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23883 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23884 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23885 - type: GasPipeTJunction - components: - - pos: 65.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23886 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 67.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23887 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23888 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23889 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23890 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23891 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23892 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23893 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23894 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23895 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23896 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23897 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23898 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 1.5,17.5 - parent: 8364 - type: Transform - - devices: - - 23903 - - 7148 - - 7140 - - 7150 - - 7393 - - 7390 - - 7146 - - 9262 - - 11605 - - 11600 - - 23935 - - 22459 - - 22458 - - 25423 - - 25420 - - 25422 - - 25421 - type: DeviceList -- uid: 23899 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23900 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -2.5,10.5 - parent: 8364 - type: Transform - - devices: - - 23903 - - 7148 - - 7140 - - 7150 - - 7393 - - 7390 - - 7146 - - 9262 - - 11605 - - 11600 - - 23935 - type: DeviceList -- uid: 23901 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23902 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 78.5,-13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23903 - type: AirSensor - components: - - pos: -0.5,6.5 - parent: 8364 - type: Transform -- uid: 23904 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 78.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23905 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,-11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23906 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,-10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23907 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23908 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23909 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 78.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23910 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 78.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23911 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23912 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 78.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23913 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23914 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23915 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23916 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23917 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 78.5,-6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23918 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 78.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23919 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 78.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23920 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 78.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23921 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,-4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23922 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,-3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23923 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-30.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23924 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-29.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23925 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23926 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23927 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23928 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23929 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23930 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23931 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23932 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23933 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23934 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23935 - type: AirSensor - components: - - pos: -0.5,15.5 - parent: 8364 - type: Transform -- uid: 23936 - type: FireAlarm - components: - - pos: -2.5,2.5 - parent: 8364 - type: Transform - - devices: - - 23903 - - 7148 - - 7140 - - 7150 - - 7393 - - 7390 - - 7146 - - 9262 - - 11605 - - 11600 - - 23935 - type: DeviceList -- uid: 23937 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23938 - type: AirAlarm - components: - - pos: 8.5,22.5 - parent: 8364 - type: Transform - - devices: - - 9262 - - 11605 - - 11600 - - 11377 - - 11603 - - 23939 - - 23940 - - 25488 - - 25487 - - 25518 - - 25519 - type: DeviceList -- uid: 23939 - type: AirSensor - components: - - pos: 7.5,20.5 - parent: 8364 - type: Transform -- uid: 23940 - type: AirSensor - components: - - pos: -8.5,20.5 - parent: 8364 - type: Transform -- uid: 23941 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23942 - type: FireAlarm - components: - - pos: 0.5,22.5 - parent: 8364 - type: Transform - - devices: - - 9262 - - 11605 - - 11600 - - 11377 - - 11603 - - 23939 - - 23940 - type: DeviceList -- uid: 23943 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 17.5,19.5 - parent: 8364 - type: Transform - - devices: - - 9392 - - 25516 - - 23944 - type: DeviceList -- uid: 23944 - type: AirSensor - components: - - pos: 16.5,21.5 - parent: 8364 - type: Transform -- uid: 23945 - type: AirAlarm - components: - - pos: -6.5,28.5 - parent: 8364 - type: Transform - - devices: - - 25625 - - 25622 - - 25621 - - 25626 - - 25620 - - 25627 - - 25756 - - 25755 - - 24302 - - 25757 - - 25758 - - 25753 - - 25754 - - 9219 - - 7405 - - 7357 - - 25557 - - 25560 - type: DeviceList -- uid: 23946 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23947 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -2.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23948 - type: GasVentScrubber - components: - - pos: 1.5,-30.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23949 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -11.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23950 - type: GasVentScrubber - components: - - pos: -12.5,-30.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23951 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23952 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23953 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23954 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23955 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23956 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23957 - type: GasPipeTJunction - components: - - pos: -20.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23958 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -20.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23959 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -21.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23960 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -22.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23961 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23962 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23963 - type: GasPipeStraight - components: - - pos: -21.5,-22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23964 - type: GasPipeStraight - components: - - pos: -21.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23965 - type: GasPipeStraight - components: - - pos: -21.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23966 - type: GasPipeStraight - components: - - pos: -22.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23967 - type: GasPipeStraight - components: - - pos: -22.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23968 - type: GasPipeStraight - components: - - pos: -22.5,-21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23969 - type: GasPipeStraight - components: - - pos: -22.5,-20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23970 - type: GasPipeStraight - components: - - pos: -21.5,-19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23971 - type: GasPipeStraight - components: - - pos: -22.5,-19.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23972 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23973 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23974 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23975 - type: GasPipeTJunction - components: - - pos: -24.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23976 - type: GasPipeTJunction - components: - - pos: -25.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23977 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23978 - type: GasPipeTJunction - components: - - pos: -26.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23979 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23980 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23981 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23982 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,-22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23983 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -28.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23984 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -27.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23985 - type: GasPipeBend - components: - - pos: -28.5,-21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23986 - type: GasPipeBend - components: - - pos: -27.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23987 - type: GasPipeStraight - components: - - pos: -28.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23988 - type: GasPipeStraight - components: - - pos: -27.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23989 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23990 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23991 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23992 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23993 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23994 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23995 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23996 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23997 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23998 - type: GasVentPump - components: - - pos: -20.5,-22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23999 - type: GasVentPump - components: - - pos: -21.5,-18.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24000 - type: GasPipeTJunction - components: - - pos: -34.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24001 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24002 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24003 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24004 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24005 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24006 - type: GasPipeStraight - components: - - pos: -39.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24007 - type: GasPipeStraight - components: - - pos: -39.5,-22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24008 - type: GasPipeStraight - components: - - pos: -39.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24009 - type: GasPipeStraight - components: - - pos: -39.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24010 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -39.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24011 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -34.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24012 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24013 - type: GasVentScrubber - components: - - pos: -22.5,-18.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24014 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -20.5,-25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24015 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24016 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24017 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -26.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24018 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24019 - type: GasPipeBend - components: - - pos: -24.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24020 - type: GasPipeStraight - components: - - pos: -25.5,-26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24021 - type: GasPipeStraight - components: - - pos: -24.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24022 - type: GasPipeStraight - components: - - pos: -25.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24023 - type: GasPipeStraight - components: - - pos: -24.5,-27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24024 - type: GasPipeStraight - components: - - pos: -24.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24025 - type: GasPipeStraight - components: - - pos: -25.5,-28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24026 - type: GasPipeStraight - components: - - pos: -25.5,-29.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24027 - type: GasPipeStraight - components: - - pos: -24.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24028 - type: GasPipeFourway - components: - - pos: -24.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24029 - type: GasPipeFourway - components: - - pos: -25.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24030 - type: GasPipeStraight - components: - - pos: -25.5,-30.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24031 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24032 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -24.5,-25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24033 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24034 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24035 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24036 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24037 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24038 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24039 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24040 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24041 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24042 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24043 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24044 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24045 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24046 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24047 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24048 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24049 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24050 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24051 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24052 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24053 - type: GasPipeStraight - components: - - pos: -24.5,-31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24054 - type: GasPipeStraight - components: - - pos: -24.5,-32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24055 - type: GasPipeStraight - components: - - pos: -25.5,-32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24056 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -25.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24057 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -24.5,-33.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24058 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24059 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24060 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24061 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24062 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24063 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24064 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-30.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24065 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-29.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24066 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24067 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24068 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24069 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24070 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24071 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24072 - type: GasVentPump - components: - - pos: -7.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24073 - type: GasVentScrubber - components: - - pos: -8.5,-25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24074 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24075 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24076 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24077 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24078 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24079 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24080 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24081 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24082 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24083 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24084 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24085 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24086 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24087 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24088 - type: GasPipeStraight - components: - - pos: 4.5,-32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24089 - type: GasPipeStraight - components: - - pos: 4.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24090 - type: GasPipeStraight - components: - - pos: 4.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24091 - type: GasPipeStraight - components: - - pos: 5.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24092 - type: GasPipeStraight - components: - - pos: 5.5,-31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24093 - type: GasPipeStraight - components: - - pos: 5.5,-32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24094 - type: GasPipeStraight - components: - - pos: 5.5,-33.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24095 - type: GasPipeStraight - components: - - pos: 5.5,-34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24096 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 5.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24097 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 4.5,-35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24098 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 15.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24099 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24100 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24101 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24102 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24103 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24104 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24105 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24106 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24107 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24108 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24109 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24110 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-18.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24111 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-19.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24112 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24113 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24114 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24115 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24116 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24117 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24118 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24119 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24120 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24121 - type: GasPipeTJunction - components: - - pos: 7.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24122 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24123 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24124 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24125 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24126 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24127 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24128 - type: GasPipeTJunction - components: - - pos: 6.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24129 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24130 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24131 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24132 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24133 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24134 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24135 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24136 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24137 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24138 - type: GasPipeTJunction - components: - - pos: -7.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24139 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24140 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24141 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24142 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24143 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24144 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24145 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24146 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24147 - type: GasPipeTJunction - components: - - pos: -8.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24148 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24149 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 3.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24150 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24151 - type: GasPipeBend - components: - - pos: 3.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24152 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24153 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24154 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24155 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 5.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24156 - type: GasPipeBend - components: - - pos: 5.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24157 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24158 - type: GasPipeTJunction - components: - - pos: 2.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24159 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24160 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24161 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24162 - type: GasPipeTJunction - components: - - pos: -1.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24163 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24164 - type: GasPipeTJunction - components: - - pos: -3.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24165 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24166 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24167 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24168 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24169 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24170 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -2.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24171 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24172 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24173 - type: GasPipeTJunction - components: - - pos: 0.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24174 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 1.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24175 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24176 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24177 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24178 - type: GasVentPump - components: - - pos: -2.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24179 - type: GasVentPump - components: - - pos: 1.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24180 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -3.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24181 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 2.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24182 - type: GasPipeStraight - components: - - pos: 0.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24183 - type: GasPipeStraight - components: - - pos: 0.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24184 - type: GasPipeStraight - components: - - pos: 0.5,-10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24185 - type: GasPipeStraight - components: - - pos: -1.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24186 - type: GasPipeStraight - components: - - pos: -1.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24187 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -1.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24188 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 0.5,-11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24189 - type: CableMV - components: - - pos: -1.5,-8.5 - parent: 8364 - type: Transform -- uid: 24190 - type: GasPipeStraight - components: - - pos: 6.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24191 - type: GasPipeStraight - components: - - pos: 6.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24192 - type: GasPipeStraight - components: - - pos: 6.5,-12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24193 - type: GasPipeStraight - components: - - pos: 7.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24194 - type: GasPipeStraight - components: - - pos: 7.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24195 - type: GasPipeStraight - components: - - pos: 7.5,-10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24196 - type: GasPipeStraight - components: - - pos: 7.5,-11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24197 - type: GasPipeStraight - components: - - pos: 7.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24198 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24199 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24200 - type: GasPipeStraight - components: - - pos: 6.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24201 - type: GasPipeStraight - components: - - pos: 7.5,-14.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24202 - type: GasPipeStraight - components: - - pos: 6.5,-15.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24203 - type: GasPipeStraight - components: - - pos: 7.5,-15.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24204 - type: GasPipeStraight - components: - - pos: 6.5,-16.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24205 - type: GasPipeStraight - components: - - pos: 7.5,-16.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24206 - type: GasPipeStraight - components: - - pos: 6.5,-17.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24207 - type: GasPipeStraight - components: - - pos: 7.5,-17.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24208 - type: GasPipeStraight - components: - - pos: 6.5,-18.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24209 - type: GasPipeStraight - components: - - pos: 7.5,-18.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24210 - type: GasPipeStraight - components: - - pos: 7.5,-19.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24211 - type: GasPipeStraight - components: - - pos: 6.5,-19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24212 - type: GasPipeStraight - components: - - pos: 6.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24213 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24214 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24215 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24216 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24217 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24218 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24219 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 7.5,-20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24220 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 6.5,-22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24221 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24222 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24223 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24224 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24225 - type: GasPipeStraight - components: - - pos: -8.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24226 - type: GasPipeStraight - components: - - pos: -8.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24227 - type: GasPipeStraight - components: - - pos: -8.5,-10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24228 - type: GasPipeStraight - components: - - pos: -8.5,-11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24229 - type: GasPipeStraight - components: - - pos: -7.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24230 - type: GasPipeStraight - components: - - pos: -7.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24231 - type: GasPipeStraight - components: - - pos: -8.5,-12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24232 - type: GasPipeStraight - components: - - pos: -8.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24233 - type: GasPipeStraight - components: - - pos: -8.5,-14.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24234 - type: GasPipeStraight - components: - - pos: -8.5,-15.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24235 - type: GasPipeStraight - components: - - pos: -7.5,-12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24236 - type: GasPipeStraight - components: - - pos: -7.5,-13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24237 - type: GasPipeStraight - components: - - pos: -7.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24238 - type: GasPipeStraight - components: - - pos: -7.5,-15.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24239 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -8.5,-16.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24240 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -7.5,-16.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24241 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24242 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24243 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24244 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24245 - type: GasVentScrubber - components: - - pos: 76.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24246 - type: GasVentPump - components: - - pos: 78.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24247 - type: GasPipeStraight - components: - - pos: 9.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24248 - type: GasPipeStraight - components: - - pos: 9.5,-0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24249 - type: GasPipeStraight - components: - - pos: 9.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24250 - type: GasPipeStraight - components: - - pos: 8.5,0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24251 - type: GasPipeStraight - components: - - pos: 8.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24252 - type: GasPipeStraight - components: - - pos: 9.5,1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24253 - type: GasPipeStraight - components: - - pos: 9.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24254 - type: GasPipeStraight - components: - - pos: 9.5,3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24255 - type: GasPipeStraight - components: - - pos: 8.5,3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24256 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24257 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 9.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24258 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 8.5,8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24259 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 9.5,9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24260 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 8.5,11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24261 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 9.5,12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24262 - type: GasPipeBend - components: - - pos: 8.5,14.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24263 - type: GasPipeBend - components: - - pos: 9.5,15.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24264 - type: GasPipeStraight - components: - - pos: 9.5,4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24265 - type: GasPipeStraight - components: - - pos: 9.5,5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24266 - type: GasPipeStraight - components: - - pos: 8.5,4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24267 - type: GasPipeStraight - components: - - pos: 8.5,6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24268 - type: GasPipeStraight - components: - - pos: 8.5,7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24269 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24270 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24271 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24272 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24273 - type: GasPipeStraight - components: - - pos: 8.5,9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24274 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 8.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24275 - type: GasPipeStraight - components: - - pos: 9.5,10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24276 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 9.5,11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24277 - type: GasPipeStraight - components: - - pos: 8.5,12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24278 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24279 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24280 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24281 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24282 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,15.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24283 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,14.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24284 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,15.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24285 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24286 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24287 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24288 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24289 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24290 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24291 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 6.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24292 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24293 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 6.5,12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24294 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 6.5,15.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24295 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 6.5,14.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24296 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 6.5,11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24297 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24298 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 6.5,5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24299 - type: GasVentPump - components: - - pos: 11.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24300 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 10.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24301 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24302 - type: AirSensor - components: - - pos: -3.5,27.5 - parent: 8364 - type: Transform -- uid: 24303 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24304 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24305 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24306 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24307 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24308 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24309 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -12.5,3.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 24310 - type: GasPipeStraight - components: - - pos: -12.5,2.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 24311 - type: GasPipeStraight - components: - - pos: -10.5,3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24312 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -10.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24313 - type: GasPipeStraight - components: - - pos: -12.5,4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24314 - type: GasPipeStraight - components: - - pos: -10.5,4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24315 - type: GasPipeStraight - components: - - pos: -10.5,5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24316 - type: GasPipeStraight - components: - - pos: -12.5,5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24317 - type: GasPipeTJunction - components: - - pos: -10.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24318 - type: GasPipeTJunction - components: - - pos: -12.5,8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24319 - type: GasPipeStraight - components: - - pos: -12.5,6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24320 - type: GasPipeStraight - components: - - pos: -12.5,7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24321 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24322 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24323 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24324 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24325 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24326 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24327 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24328 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24329 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24330 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24331 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24332 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -11.5,3.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 24333 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -11.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24334 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -5.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24335 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -12.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24336 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -11.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24337 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -13.5,8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24338 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -5.5,8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24339 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24340 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24341 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24342 - type: GasPipeTJunction - components: - - pos: 11.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24343 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24344 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 12.5,11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24345 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 13.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24346 - type: GasPipeFourway - components: - - pos: 17.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24347 - type: GasPipeFourway - components: - - pos: 16.5,11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24348 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24349 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24350 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24351 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24352 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24353 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24354 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24355 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24356 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24357 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24358 - type: GasPipeStraight - components: - - pos: 17.5,11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24359 - type: GasPipeStraight - components: - - pos: 17.5,12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24360 - type: GasPipeStraight - components: - - pos: 17.5,13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24361 - type: GasPipeStraight - components: - - pos: 16.5,12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24362 - type: GasPipeStraight - components: - - pos: 16.5,13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24363 - type: GasPipeStraight - components: - - pos: 12.5,12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24364 - type: GasPipeStraight - components: - - pos: 12.5,13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24365 - type: GasPipeStraight - components: - - pos: 13.5,11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24366 - type: GasPipeStraight - components: - - pos: 13.5,12.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24367 - type: GasPipeStraight - components: - - pos: 13.5,13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24368 - type: GasVentPump - components: - - pos: 11.5,12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24369 - type: GasVentPump - components: - - pos: 12.5,14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24370 - type: GasVentPump - components: - - pos: 16.5,14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24371 - type: GasVentScrubber - components: - - pos: 13.5,14.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24372 - type: GasVentScrubber - components: - - pos: 17.5,14.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24373 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 11.5,9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24374 - type: GasPipeTJunction - components: - - pos: 19.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24375 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 19.5,11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24376 - type: GasVentPump - components: - - pos: 19.5,12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24377 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 19.5,9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24378 - type: GasPipeBend - components: - - pos: 20.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24379 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 20.5,11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24380 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24381 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24382 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24383 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24384 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24385 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24386 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24387 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24388 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24389 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24390 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24391 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24392 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24393 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24394 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24395 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24396 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24397 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24398 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 20.5,9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24399 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 20.5,14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24400 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 29.5,14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24401 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 29.5,9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24402 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24403 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24404 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24405 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24406 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24407 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24408 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24409 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24410 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 16.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24411 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 17.5,5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24412 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24413 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24414 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24415 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24416 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24417 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24418 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24419 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 17.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24420 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24421 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 12.5,5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24422 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 18.5,5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24423 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24424 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24425 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24426 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24427 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24428 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24429 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24430 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24431 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24432 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24433 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24434 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,29.5 - parent: 8364 - type: Transform -- uid: 24435 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24436 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24437 - type: GasPipeBend - components: - - pos: 22.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24438 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 20.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24439 - type: GasPipeTJunction - components: - - pos: 24.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24440 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24441 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24442 - type: GasPipeBend - components: - - pos: 25.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24443 - type: GasPipeStraight - components: - - pos: 25.5,-6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24444 - type: GasPipeStraight - components: - - pos: 25.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24445 - type: GasPipeStraight - components: - - pos: 20.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24446 - type: GasPipeStraight - components: - - pos: 20.5,-4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24447 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24448 - type: GasPipeStraight - components: - - pos: 21.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24449 - type: GasPipeStraight - components: - - pos: 20.5,-3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24450 - type: GasPipeStraight - components: - - pos: 20.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24451 - type: GasPipeStraight - components: - - pos: 21.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24452 - type: GasPipeStraight - components: - - pos: 21.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24453 - type: GasPipeStraight - components: - - pos: 20.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24454 - type: GasPipeStraight - components: - - pos: 20.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24455 - type: GasPipeStraight - components: - - pos: 20.5,0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24456 - type: GasPipeStraight - components: - - pos: 21.5,-0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24457 - type: GasPipeStraight - components: - - pos: 21.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24458 - type: GasPipeStraight - components: - - pos: 21.5,1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24459 - type: GasPipeStraight - components: - - pos: 20.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24460 - type: GasPipeStraight - components: - - pos: 20.5,2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24461 - type: GasPipeStraight - components: - - pos: 21.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24462 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 21.5,3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24463 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 22.5,3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24464 - type: GasVentScrubber - components: - - pos: 20.5,3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24465 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24466 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24467 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24468 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24469 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24470 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24471 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24472 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24473 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24474 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24475 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24476 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24477 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24478 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24479 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24480 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24481 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24482 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24483 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24484 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24485 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24486 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24487 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24488 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24489 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24490 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24491 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24492 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24493 - type: GasVentPump - components: - - pos: 30.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24494 - type: GasVentScrubber - components: - - pos: 29.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24495 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24496 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24497 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24498 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24499 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24500 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24501 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24502 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24503 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24504 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24505 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24506 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24507 - type: GasPipeStraight - components: - - pos: 37.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24508 - type: GasPipeStraight - components: - - pos: 36.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24509 - type: GasPipeStraight - components: - - pos: 36.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24510 - type: GasPipeStraight - components: - - pos: 36.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24511 - type: GasPipeStraight - components: - - pos: 36.5,-4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24512 - type: GasPipeStraight - components: - - pos: 36.5,-3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24513 - type: GasPipeStraight - components: - - pos: 36.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24514 - type: GasPipeStraight - components: - - pos: 37.5,-6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24515 - type: GasPipeStraight - components: - - pos: 37.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24516 - type: GasPipeStraight - components: - - pos: 37.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24517 - type: GasPipeStraight - components: - - pos: 37.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24518 - type: GasPipeStraight - components: - - pos: 37.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24519 - type: GasVentPump - components: - - pos: 37.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24520 - type: GasVentScrubber - components: - - pos: 36.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24521 - type: GasPipeStraight - components: - - pos: 25.5,-15.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24522 - type: GasPipeStraight - components: - - pos: 25.5,-16.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24523 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-17.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24524 - type: GasPipeStraight - components: - - pos: 25.5,-18.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24525 - type: GasPipeStraight - components: - - pos: 25.5,-19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24526 - type: GasPipeStraight - components: - - pos: 25.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24527 - type: GasPipeStraight - components: - - pos: 25.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24528 - type: GasPipeStraight - components: - - pos: 25.5,-22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24529 - type: GasPipeStraight - components: - - pos: 25.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24530 - type: GasPipeStraight - components: - - pos: 25.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24531 - type: GasPipeStraight - components: - - pos: 34.5,-15.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24532 - type: GasPipeStraight - components: - - pos: 34.5,-16.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24533 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-18.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24534 - type: GasPipeStraight - components: - - pos: 34.5,-18.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24535 - type: GasPipeStraight - components: - - pos: 34.5,-19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24536 - type: GasPipeStraight - components: - - pos: 34.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24537 - type: GasPipeStraight - components: - - pos: 34.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24538 - type: GasPipeStraight - components: - - pos: 34.5,-22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24539 - type: GasPipeStraight - components: - - pos: 34.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24540 - type: GasPipeStraight - components: - - pos: 34.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24541 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 34.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24542 - type: GasPipeFourway - components: - - pos: 26.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24543 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24544 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24545 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24546 - type: GasPipeTJunction - components: - - pos: 31.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24547 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24548 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24549 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24550 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24551 - type: GasPipeStraight - components: - - pos: 35.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24552 - type: GasPipeStraight - components: - - pos: 35.5,-14.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24553 - type: GasPipeStraight - components: - - pos: 35.5,-15.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24554 - type: GasPipeStraight - components: - - pos: 35.5,-16.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24555 - type: GasPipeStraight - components: - - pos: 35.5,-17.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24556 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-17.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24557 - type: GasPipeStraight - components: - - pos: 35.5,-19.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24558 - type: GasPipeStraight - components: - - pos: 35.5,-20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24559 - type: GasPipeStraight - components: - - pos: 35.5,-21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24560 - type: GasPipeStraight - components: - - pos: 35.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24561 - type: GasPipeStraight - components: - - pos: 26.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24562 - type: GasPipeStraight - components: - - pos: 26.5,-14.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24563 - type: GasPipeStraight - components: - - pos: 26.5,-15.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24564 - type: GasPipeStraight - components: - - pos: 26.5,-16.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24565 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-17.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24566 - type: GasPipeStraight - components: - - pos: 26.5,-18.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24567 - type: GasPipeStraight - components: - - pos: 26.5,-19.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24568 - type: GasPipeStraight - components: - - pos: 26.5,-20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24569 - type: GasPipeStraight - components: - - pos: 26.5,-21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24570 - type: GasPipeStraight - components: - - pos: 26.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24571 - type: GasPipeFourway - components: - - pos: 25.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24572 - type: GasPipeFourway - components: - - pos: 35.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24573 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24574 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24575 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24576 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24577 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 29.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24578 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24579 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24580 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24581 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-17.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24582 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-18.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24583 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-17.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24584 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-17.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24585 - type: GasVentPump - components: - - pos: 29.5,-13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24586 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 31.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24587 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 31.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24588 - type: GasVentPump - components: - - pos: 29.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24589 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24590 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24591 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24592 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24593 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24594 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24595 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24596 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24597 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24598 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 19.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24599 - type: GasVentPump - components: - - pos: 19.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24600 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24601 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24602 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24603 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 20.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24604 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24605 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24606 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24607 - type: GasPipeStraight - components: - - pos: 20.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24608 - type: GasPipeStraight - components: - - pos: 20.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24609 - type: GasPipeStraight - components: - - pos: 20.5,-21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24610 - type: GasVentScrubber - components: - - pos: 20.5,-20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24611 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24612 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 35.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24613 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 35.5,-25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24614 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 35.5,-26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24615 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24616 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24617 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24618 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 38.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24619 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24620 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24621 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24622 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-19.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24623 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24624 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24625 - type: GasPipeFourway - components: - - pos: 39.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24626 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24627 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24628 - type: GasPipeStraight - components: - - pos: 39.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24629 - type: GasPipeStraight - components: - - pos: 39.5,-22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24630 - type: GasPipeStraight - components: - - pos: 39.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24631 - type: GasPipeStraight - components: - - pos: 39.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24632 - type: GasPipeStraight - components: - - pos: 39.5,-19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24633 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24634 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24635 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24636 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24637 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24638 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24639 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24640 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,-22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24641 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24642 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24643 - type: GasVentPump - components: - - pos: 42.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24644 - type: GasVentScrubber - components: - - pos: 41.5,-20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24645 - type: GasVentPump - components: - - pos: 39.5,-18.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24646 - type: GasVentScrubber - components: - - pos: 38.5,-18.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24647 - type: GasPipeStraight - components: - - pos: 26.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24648 - type: GasPipeStraight - components: - - pos: 26.5,-25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24649 - type: GasPipeStraight - components: - - pos: 26.5,-26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24650 - type: GasPipeStraight - components: - - pos: 26.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24651 - type: GasPipeStraight - components: - - pos: 25.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24652 - type: GasPipeStraight - components: - - pos: 25.5,-27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24653 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24654 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24655 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24656 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24657 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24658 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24659 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24660 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 39.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24661 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 40.5,-26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24662 - type: GasPipeTJunction - components: - - pos: 41.5,-26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24663 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 40.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24664 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24665 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24666 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24667 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24668 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24669 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24670 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24671 - type: GasVentPump - components: - - pos: 40.5,-27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24672 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24673 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 41.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24674 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24675 - type: GasPipeStraight - components: - - pos: 25.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24676 - type: GasPipeStraight - components: - - pos: 25.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24677 - type: GasPipeStraight - components: - - pos: 25.5,-31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24678 - type: GasPipeStraight - components: - - pos: 25.5,-32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24679 - type: GasPipeStraight - components: - - pos: 25.5,-33.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24680 - type: GasPipeFourway - components: - - pos: 25.5,-34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24681 - type: GasPipeFourway - components: - - pos: 26.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24682 - type: GasPipeStraight - components: - - pos: 26.5,-32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24683 - type: GasPipeStraight - components: - - pos: 26.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24684 - type: GasPipeStraight - components: - - pos: 26.5,-30.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24685 - type: GasPipeStraight - components: - - pos: 26.5,-29.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24686 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24687 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24688 - type: WeaponLaserCarbinePractice - components: - - pos: 30.636642,12.080269 - parent: 8364 - type: Transform -- uid: 24689 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24690 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24691 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24692 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24693 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24694 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24695 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24696 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24697 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24698 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24699 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24700 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24701 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24702 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24703 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24704 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24705 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24706 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 25.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24707 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24708 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24709 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 26.5,-35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24710 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24711 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24712 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24713 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24714 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24715 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24716 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24717 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24718 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24719 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24720 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24721 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24722 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 36.5,-31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24723 - type: GasPipeBend - components: - - pos: 41.5,-31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24724 - type: GasPipeFourway - components: - - pos: 41.5,-32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24725 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24726 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24727 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24728 - type: GasPipeStraight - components: - - pos: 35.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24729 - type: GasPipeStraight - components: - - pos: 35.5,-28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24730 - type: GasPipeStraight - components: - - pos: 35.5,-29.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24731 - type: GasPipeStraight - components: - - pos: 35.5,-30.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24732 - type: GasPipeStraight - components: - - pos: 35.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24733 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: 31.5,10.5 - parent: 8364 - type: Transform -- uid: 24734 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24735 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24736 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24737 - type: GasPipeBend - components: - - pos: 39.5,-32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24738 - type: GasPipeStraight - components: - - pos: 39.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24739 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24740 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24741 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24742 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24743 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24744 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24745 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24746 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24747 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24748 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-33.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24749 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24750 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24751 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24752 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24753 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-36.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24754 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-36.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24755 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-37.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24756 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-37.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24757 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-38.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24758 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-38.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24759 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-39.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24760 - type: GasPipeFourway - components: - - pos: 39.5,-39.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24761 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24762 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-41.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24763 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-40.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24764 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-41.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24765 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-42.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24766 - type: AirAlarm - components: - - pos: 11.5,36.5 - parent: 8364 - type: Transform - - devices: - - 25800 - - 24915 - - 25804 - type: DeviceList -- uid: 24767 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24768 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24769 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24770 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24771 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24772 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-39.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24773 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-39.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24774 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-39.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24775 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24776 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-41.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24777 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-39.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24778 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-39.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24779 - type: GasPipeStraight - components: - - pos: 8.5,2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24780 - type: GasPipeFourway - components: - - pos: 39.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24781 - type: GasPipeFourway - components: - - pos: 41.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24782 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-48.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24783 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-49.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24784 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-49.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24785 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-49.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24786 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-49.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24787 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-49.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24788 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-48.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24789 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-48.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24790 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24791 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24792 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24793 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24794 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24795 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24796 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-47.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24797 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-46.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24798 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24799 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24800 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-43.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24801 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24802 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24803 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-47.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24804 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-48.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24805 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24806 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24807 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24808 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24809 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24810 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24811 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24812 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24813 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-49.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24814 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-48.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24815 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24816 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24817 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-49.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24818 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-50.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24819 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-51.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24820 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-50.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24821 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24822 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-53.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24823 - type: GasPipeStraight - components: - - pos: 39.5,-52.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24824 - type: GasPipeStraight - components: - - pos: 41.5,-52.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24825 - type: GasPipeStraight - components: - - pos: 41.5,-53.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24826 - type: GasPipeStraight - components: - - pos: 41.5,-54.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24827 - type: GasPipeStraight - components: - - pos: 39.5,-54.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24828 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 39.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24829 - type: GasPipeStraight - components: - - pos: 41.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24830 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-53.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24831 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24832 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24833 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24834 - type: GasPipeTJunction - components: - - pos: 40.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24835 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24836 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24837 - type: GasPipeBend - components: - - pos: 46.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24838 - type: GasPipeFourway - components: - - pos: 43.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24839 - type: GasPipeStraight - components: - - pos: 43.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24840 - type: GasPipeStraight - components: - - pos: 43.5,-57.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24841 - type: GasPipeStraight - components: - - pos: 43.5,-58.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24842 - type: GasPipeStraight - components: - - pos: 46.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24843 - type: GasPipeStraight - components: - - pos: 46.5,-57.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24844 - type: GasPipeStraight - components: - - pos: 46.5,-58.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24845 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24846 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24847 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-54.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24848 - type: DrinkGinBottleFull - components: - - pos: 9.523606,-50.236656 - parent: 8364 - type: Transform -- uid: 24849 - type: GasVentPump - components: - - pos: 44.5,-53.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24850 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 46.5,-59.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24851 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 43.5,-59.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24852 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-55.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24853 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 40.5,-56.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24854 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-57.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24855 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 37.5,-57.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24856 - type: GasPipeBend - components: - - pos: 37.5,-56.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24857 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 35.5,-56.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24858 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-56.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24859 - type: GasPipeTJunction - components: - - pos: 40.5,-57.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24860 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-57.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24861 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-57.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24862 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-56.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24863 - type: GasVentPump - components: - - pos: 35.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24864 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 40.5,-58.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24865 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-56.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24866 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-56.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24867 - type: GasPipeFourway - components: - - pos: 44.5,-56.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24868 - type: GasPipeBend - components: - - pos: 47.5,-56.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24869 - type: GasPipeStraight - components: - - pos: 44.5,-57.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24870 - type: GasPipeStraight - components: - - pos: 44.5,-58.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24871 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-56.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24872 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-56.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24873 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-57.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24874 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-58.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24875 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-55.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24876 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-54.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24877 - type: WindowDirectional - components: - - pos: -41.5,-17.5 - parent: 8364 - type: Transform -- uid: 24878 - type: GasVentScrubber - components: - - pos: 43.5,-53.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24879 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 44.5,-59.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24880 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 47.5,-59.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24881 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24882 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24883 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24884 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24885 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24886 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24887 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24888 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24889 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24890 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24891 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24892 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24893 - type: GasPipeStraight - components: - - pos: 44.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24894 - type: GasPipeStraight - components: - - pos: 43.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24895 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24896 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24897 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24898 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24899 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24900 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24901 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24902 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24903 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 48.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24904 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 48.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24905 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24906 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24907 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24908 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24909 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24910 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24911 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24912 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24913 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24914 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24915 - type: AirSensor - components: - - pos: 14.5,32.5 - parent: 8364 - type: Transform -- uid: 24916 - type: GasVentScrubber - components: - - pos: 47.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24917 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24918 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 46.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24919 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 65.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24920 - type: GasVentPump - components: - - pos: 47.5,-13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24921 - type: GasVentPump - components: - - pos: 67.5,-13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24922 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24923 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24924 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24925 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24926 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24927 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24928 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 73.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24929 - type: GasPipeTJunction - components: - - pos: 73.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24930 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 73.5,-10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24931 - type: GasVentPump - components: - - pos: 73.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24932 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-13.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24933 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-12.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24934 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24935 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24936 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,-11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24937 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,-10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24938 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24939 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24940 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24941 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-7.5 - parent: 8364 - type: Transform -- uid: 24942 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-7.5 - parent: 8364 - type: Transform -- uid: 24943 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-8.5 - parent: 8364 - type: Transform -- uid: 24944 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-8.5 - parent: 8364 - type: Transform -- uid: 24945 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-8.5 - parent: 8364 - type: Transform -- uid: 24946 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-8.5 - parent: 8364 - type: Transform -- uid: 24947 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-9.5 - parent: 8364 - type: Transform -- uid: 24948 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-9.5 - parent: 8364 - type: Transform -- uid: 24949 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-9.5 - parent: 8364 - type: Transform -- uid: 24950 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-9.5 - parent: 8364 - type: Transform -- uid: 24951 - type: GasPipeStraight - components: - - pos: 69.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24952 - type: GasPipeStraight - components: - - pos: 70.5,-2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24953 - type: GasPipeStraight - components: - - pos: 70.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24954 - type: GasPipeStraight - components: - - pos: 69.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24955 - type: GasPipeStraight - components: - - pos: 69.5,-0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24956 - type: GasPipeStraight - components: - - pos: 69.5,0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24957 - type: GasPipeStraight - components: - - pos: 70.5,-0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24958 - type: GasPipeStraight - components: - - pos: 70.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24959 - type: GasPipeStraight - components: - - pos: 70.5,1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24960 - type: GasPipeBend - components: - - pos: 69.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24961 - type: GasPipeBend - components: - - pos: 70.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24962 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24963 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 68.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24964 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 68.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24965 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 67.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24966 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 67.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24967 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 66.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24968 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 66.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24969 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-9.5 - parent: 8364 - type: Transform -- uid: 24970 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-9.5 - parent: 8364 - type: Transform -- uid: 24971 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-9.5 - parent: 8364 - type: Transform -- uid: 24972 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-9.5 - parent: 8364 - type: Transform -- uid: 24973 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-9.5 - parent: 8364 - type: Transform -- uid: 24974 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-8.5 - parent: 8364 - type: Transform -- uid: 24975 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-8.5 - parent: 8364 - type: Transform -- uid: 24976 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-8.5 - parent: 8364 - type: Transform -- uid: 24977 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-8.5 - parent: 8364 - type: Transform -- uid: 24978 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-8.5 - parent: 8364 - type: Transform -- uid: 24979 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-7.5 - parent: 8364 - type: Transform -- uid: 24980 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-7.5 - parent: 8364 - type: Transform -- uid: 24981 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-6.5 - parent: 8364 - type: Transform -- uid: 24982 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-6.5 - parent: 8364 - type: Transform -- uid: 24983 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-5.5 - parent: 8364 - type: Transform -- uid: 24984 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-4.5 - parent: 8364 - type: Transform -- uid: 24985 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-4.5 - parent: 8364 - type: Transform -- uid: 24986 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-5.5 - parent: 8364 - type: Transform -- uid: 24987 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -3.5,31.5 - parent: 8364 - type: Transform - - devices: - - 25040 - - 9219 - - 8930 - - 8934 - - 25762 - - 25759 - type: DeviceList -- uid: 24988 - type: GasMixer - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-47.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 24989 - type: GasMixer - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-47.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 24990 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-47.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 24991 - type: GasPort - components: - - pos: 76.5,-46.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 24992 - type: GasPort - components: - - pos: 77.5,-46.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 24993 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-47.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 24994 - type: GasPort - components: - - pos: 74.5,-46.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 24995 - type: GasPort - components: - - pos: 70.5,-46.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 24996 - type: GasMixer - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-47.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 24997 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-47.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 24998 - type: GasPort - components: - - pos: 72.5,-46.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 24999 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-47.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 25000 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-41.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 25001 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-39.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 25002 - type: GasValve - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-41.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - - bodyType: Static - type: Physics -- uid: 25003 - type: GasValve - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound - - bodyType: Static - type: Physics -- uid: 25004 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-41.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 25005 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: 74.5,-39.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 25006 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 76.5,-41.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 25007 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-41.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25008 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 76.5,-39.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 25009 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-39.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25010 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-41.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25011 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-39.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25012 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-39.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 25013 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-41.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 25014 - type: TablePlasmaGlass - components: - - pos: 73.5,-49.5 - parent: 8364 - type: Transform -- uid: 25015 - type: TablePlasmaGlass - components: - - pos: 74.5,-49.5 - parent: 8364 - type: Transform -- uid: 25016 - type: TablePlasmaGlass - components: - - pos: 74.5,-50.5 - parent: 8364 - type: Transform -- uid: 25017 - type: TablePlasmaGlass - components: - - pos: 74.5,-51.5 - parent: 8364 - type: Transform -- uid: 25018 - type: TablePlasmaGlass - components: - - pos: 78.5,-51.5 - parent: 8364 - type: Transform -- uid: 25019 - type: TablePlasmaGlass - components: - - pos: 78.5,-50.5 - parent: 8364 - type: Transform -- uid: 25020 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-50.5 - parent: 8364 - type: Transform -- uid: 25021 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 76.5,-52.5 - parent: 8364 - type: Transform -- uid: 25022 - type: MachineAPE - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-57.5 - parent: 8364 - type: Transform -- uid: 25023 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-15.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25024 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-16.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25025 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-17.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25026 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-18.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25027 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25028 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25029 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-14.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25030 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-15.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25031 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-17.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25032 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-16.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25033 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-19.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25034 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-18.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25035 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-18.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25036 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25037 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25038 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25039 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25040 - type: AirSensor - components: - - pos: 0.5,32.5 - parent: 8364 - type: Transform -- uid: 25041 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25042 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25043 - type: GasPipeStraight - components: - - pos: 65.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25044 - type: GasPipeStraight - components: - - pos: 65.5,-22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25045 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25046 - type: GasPipeStraight - components: - - pos: 66.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25047 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25048 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25049 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25050 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25051 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25052 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25053 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25054 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 70.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25055 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 70.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25056 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25057 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25058 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25059 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 74.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25060 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25061 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 76.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25062 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25063 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25064 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25065 - type: GasPipeBend - components: - - pos: 74.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25066 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 74.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25067 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25068 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 76.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25069 - type: GasVentPump - components: - - pos: 70.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25070 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25071 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25072 - type: GasVentScrubber - components: - - pos: 70.5,-21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25073 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25074 - type: GasPipeStraight - components: - - pos: 66.5,-25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25075 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25076 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25077 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25078 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25079 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25080 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25081 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25082 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25083 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25084 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25085 - type: GasPipeFourway - components: - - pos: 61.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25086 - type: GasPipeStraight - components: - - pos: 65.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25087 - type: GasPipeStraight - components: - - pos: 66.5,-28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25088 - type: GasPipeStraight - components: - - pos: 65.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25089 - type: GasPipeStraight - components: - - pos: 66.5,-29.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25090 - type: GasPipeStraight - components: - - pos: 65.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25091 - type: GasPipeStraight - components: - - pos: 66.5,-30.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25092 - type: GasPipeStraight - components: - - pos: 65.5,-31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25093 - type: GasPipeStraight - components: - - pos: 66.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25094 - type: GasPipeFourway - components: - - pos: 62.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25095 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25096 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25097 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25098 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25099 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25100 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25101 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25102 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25103 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-28.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25104 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25105 - type: GasPipeStraight - components: - - pos: 61.5,-26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25106 - type: GasPipeStraight - components: - - pos: 61.5,-25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25107 - type: GasPipeStraight - components: - - pos: 61.5,-24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25108 - type: GasPipeStraight - components: - - pos: 62.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25109 - type: GasPipeStraight - components: - - pos: 62.5,-24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25110 - type: GasPipeStraight - components: - - pos: 61.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25111 - type: GasPipeStraight - components: - - pos: 62.5,-23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25112 - type: GasPipeStraight - components: - - pos: 62.5,-22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25113 - type: GasPipeStraight - components: - - pos: 62.5,-21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25114 - type: GasPipeBend - components: - - pos: 62.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25115 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25116 - type: GasVentScrubber - components: - - pos: 61.5,-22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25117 - type: GasPipeTJunction - components: - - pos: 56.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25118 - type: GasPipeTJunction - components: - - pos: 55.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25119 - type: GasPipeStraight - components: - - pos: 55.5,-27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25120 - type: GasPipeStraight - components: - - pos: 55.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25121 - type: GasPipeStraight - components: - - pos: 56.5,-28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25122 - type: GasPipeStraight - components: - - pos: 56.5,-29.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25123 - type: GasPipeStraight - components: - - pos: 56.5,-30.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25124 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 56.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25125 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 55.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25126 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25127 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25128 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25129 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25130 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25131 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25132 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25133 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25134 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25135 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25136 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25137 - type: GasPipeStraight - components: - - pos: 61.5,-28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25138 - type: GasPipeStraight - components: - - pos: 61.5,-29.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25139 - type: GasPipeStraight - components: - - pos: 62.5,-27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25140 - type: GasPipeStraight - components: - - pos: 62.5,-28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25141 - type: GasPipeStraight - components: - - pos: 62.5,-29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25142 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 62.5,-30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25143 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 61.5,-30.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25144 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-33.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25145 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25146 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25147 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25148 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25149 - type: GasPipeFourway - components: - - pos: 65.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25150 - type: GasPipeFourway - components: - - pos: 66.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25151 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25152 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25153 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25154 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25155 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25156 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25157 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25158 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25159 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25160 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25161 - type: GasPipeStraight - components: - - pos: 66.5,-35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25162 - type: GasPipeStraight - components: - - pos: 65.5,-36.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25163 - type: GasPipeStraight - components: - - pos: 66.5,-36.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25164 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25165 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25166 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25167 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25168 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-33.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25169 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25170 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25171 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25172 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-37.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25173 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-38.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25174 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-39.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25175 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-41.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25176 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-41.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25177 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-42.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25178 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-43.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25179 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25180 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-45.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25181 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-46.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25182 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-47.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25183 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-37.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25184 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-38.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25185 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-39.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25186 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-40.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25187 - type: GasPipeFourway - components: - - pos: 66.5,-41.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25188 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-42.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25189 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25190 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-44.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25191 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25192 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-46.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25193 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-47.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25194 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-48.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25195 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-48.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25196 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-49.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25197 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-49.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25198 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-50.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25199 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 66.5,-50.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25200 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 65.5,-51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25201 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25202 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25203 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25204 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-50.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25205 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-50.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25206 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-51.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25207 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-50.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25208 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25209 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-41.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25210 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-41.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25211 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25212 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-41.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25213 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25214 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-41.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25215 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25216 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-41.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25217 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25218 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-41.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25219 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25220 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25221 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25222 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25223 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-41.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25224 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25225 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-41.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25226 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-40.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25227 - type: GasPipeStraight - components: - - pos: 58.5,-40.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25228 - type: GasPipeStraight - components: - - pos: 56.5,-41.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25229 - type: GasPipeStraight - components: - - pos: 56.5,-42.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25230 - type: GasPipeStraight - components: - - pos: 56.5,-43.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25231 - type: GasPipeStraight - components: - - pos: 58.5,-42.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25232 - type: GasPipeStraight - components: - - pos: 58.5,-43.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25233 - type: FireAlarm - components: - - pos: -2.5,34.5 - parent: 8364 - type: Transform - - devices: - - 25040 - - 9219 - - 8930 - - 8934 - type: DeviceList -- uid: 25234 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -3.5,38.5 - parent: 8364 - type: Transform - - devices: - - 8930 - - 8934 - - 25236 - - 19934 - - 25761 - - 25760 - type: DeviceList -- uid: 25235 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 5.5,39.5 - parent: 8364 - type: Transform - - devices: - - 8930 - - 8934 - - 25236 - - 19934 - - 10603 - type: DeviceList -- uid: 25236 - type: AirSensor - components: - - pos: 3.5,36.5 - parent: 8364 - type: Transform -- uid: 25237 - type: AirSensor - components: - - pos: 9.5,37.5 - parent: 8364 - type: Transform -- uid: 25238 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 5.5,40.5 - parent: 8364 - type: Transform - - devices: - - 25801 - - 25805 - - 25237 - - 10603 - type: DeviceList -- uid: 25239 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 13.5,36.5 - parent: 8364 - type: Transform - - devices: - - 25802 - - 25803 - - 25240 - type: DeviceList -- uid: 25240 - type: AirSensor - components: - - pos: 14.5,37.5 - parent: 8364 - type: Transform -- uid: 25241 - type: GasVentScrubber - components: - - pos: 58.5,-39.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25242 - type: GasVentPump - components: - - pos: 56.5,-39.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25243 - type: AirSensor - components: - - pos: 24.5,33.5 - parent: 8364 - type: Transform -- uid: 25244 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 26.5,33.5 - parent: 8364 - type: Transform - - devices: - - 25824 - - 25823 - - 25243 - type: DeviceList -- uid: 25245 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25246 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25247 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25248 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25249 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25250 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25251 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25252 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25253 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25254 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25255 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25256 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25257 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25258 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25259 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25260 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-44.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25261 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-45.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25262 - type: CableMV - components: - - pos: 66.5,-41.5 - parent: 8364 - type: Transform -- uid: 25263 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25264 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25265 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25266 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -68.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25267 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25268 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25269 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25270 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25271 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-13.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25272 - type: WallSolid - components: - - pos: -16.5,42.5 - parent: 8364 - type: Transform -- uid: 25273 - type: WallSolid - components: - - pos: -14.5,46.5 - parent: 8364 - type: Transform -- uid: 25274 - type: AirSensor - components: - - pos: -12.5,14.5 - parent: 8364 - type: Transform -- uid: 25275 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -9.5,14.5 - parent: 8364 - type: Transform - - devices: - - 25274 - - 25480 - - 25485 - type: DeviceList -- uid: 25276 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-14.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25277 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25278 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -66.5,9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25279 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -67.5,9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25280 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -68.5,9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25281 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -69.5,9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25282 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -70.5,9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25283 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25284 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -66.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25285 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -67.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25286 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -68.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25287 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -69.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25288 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -70.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25289 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -71.5,9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25290 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -71.5,10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25291 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25292 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25293 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25294 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25295 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -69.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25296 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25297 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -64.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25298 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25299 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25300 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25301 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25302 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -69.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25303 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25304 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25305 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25306 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25307 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -64.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25308 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25309 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -61.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25310 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25311 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25312 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -61.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25313 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25314 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25315 - type: GasVentPump - components: - - pos: -59.5,1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25316 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -59.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25317 - type: GasVentScrubber - components: - - pos: -58.5,-4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25318 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -58.5,0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25319 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -60.5,1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25320 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -60.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25321 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -60.5,3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25322 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25323 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25324 - type: GasVentScrubber - components: - - pos: -57.5,4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25325 - type: GasVentPump - components: - - pos: -60.5,4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25326 - type: GasPipeStraight - components: - - pos: -50.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25327 - type: GasPipeStraight - components: - - pos: -50.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25328 - type: GasPipeStraight - components: - - pos: -51.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25329 - type: GasPipeStraight - components: - - pos: -50.5,-3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25330 - type: GasPipeStraight - components: - - pos: -51.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25331 - type: GasPipeStraight - components: - - pos: -50.5,-4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25332 - type: GasPipeStraight - components: - - pos: -51.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25333 - type: GasPipeStraight - components: - - pos: -50.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25334 - type: GasPipeStraight - components: - - pos: -51.5,-6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25335 - type: GasPipeStraight - components: - - pos: -50.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25336 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -51.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25337 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -50.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25338 - type: GasPipeStraight - components: - - pos: -41.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25339 - type: GasPipeStraight - components: - - pos: -41.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25340 - type: GasPipeStraight - components: - - pos: -41.5,-3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25341 - type: GasPipeStraight - components: - - pos: -41.5,-4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25342 - type: GasPipeStraight - components: - - pos: -42.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25343 - type: GasPipeStraight - components: - - pos: -42.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25344 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25345 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25346 - type: GasPipeStraight - components: - - pos: -42.5,-6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25347 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25348 - type: GasPipeStraight - components: - - pos: -41.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25349 - type: GasPipeStraight - components: - - pos: -41.5,-7.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25350 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25351 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25352 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25353 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25354 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25355 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25356 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25357 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25358 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-8.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25359 - type: GasPipeStraight - components: - - pos: -46.5,-8.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25360 - type: GasPipeStraight - components: - - pos: -46.5,-9.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25361 - type: GasPipeStraight - components: - - pos: -45.5,-9.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25362 - type: GasPipeStraight - components: - - pos: -46.5,-10.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25363 - type: GasPipeStraight - components: - - pos: -45.5,-10.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25364 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25365 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -45.5,-11.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25366 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -46.5,-11.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25367 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25368 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25369 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25370 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25371 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25372 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,-0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25373 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25374 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25375 - type: AirSensor - components: - - pos: -6.5,15.5 - parent: 8364 - type: Transform -- uid: 25376 - type: GasVentPump - components: - - pos: -38.5,3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25377 - type: GasVentScrubber - components: - - pos: -45.5,3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25378 - type: GasPipeStraight - components: - - pos: -33.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25379 - type: GasPipeStraight - components: - - pos: -33.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25380 - type: GasPipeStraight - components: - - pos: -32.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25381 - type: GasPipeStraight - components: - - pos: -32.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25382 - type: GasPipeStraight - components: - - pos: -32.5,-3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25383 - type: GasPipeStraight - components: - - pos: -32.5,-4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25384 - type: GasPipeStraight - components: - - pos: -27.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25385 - type: GasPipeStraight - components: - - pos: -27.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25386 - type: GasPipeStraight - components: - - pos: -27.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25387 - type: GasPipeStraight - components: - - pos: -26.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25388 - type: GasPipeStraight - components: - - pos: -26.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25389 - type: GasPipeStraight - components: - - pos: -26.5,-3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25390 - type: GasPipeStraight - components: - - pos: -26.5,-4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25391 - type: GasPipeStraight - components: - - pos: -26.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25392 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -26.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25393 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -32.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25394 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -33.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25395 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -27.5,-6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25396 - type: GasVentPump - components: - - pos: -40.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25397 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -43.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25398 - type: GasPipeStraight - components: - - pos: -31.5,0.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25399 - type: GasPipeStraight - components: - - pos: -31.5,1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25400 - type: GasPipeStraight - components: - - pos: -31.5,2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25401 - type: GasPipeStraight - components: - - pos: -30.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25402 - type: GasPipeStraight - components: - - pos: -30.5,-0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25403 - type: GasPipeStraight - components: - - pos: -30.5,0.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25404 - type: GasPipeStraight - components: - - pos: -30.5,1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25405 - type: GasPipeStraight - components: - - pos: -30.5,2.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25406 - type: GasVentScrubber - components: - - pos: -31.5,3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25407 - type: GasVentPump - components: - - pos: -30.5,3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25408 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -23.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25409 - type: GasVentPump - components: - - pos: -25.5,-1.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25410 - type: GasPipeStraight - components: - - pos: -22.5,-1.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25411 - type: GasPipeStraight - components: - - pos: -22.5,-2.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25412 - type: GasPipeStraight - components: - - pos: -22.5,-3.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25413 - type: GasPipeStraight - components: - - pos: -22.5,-4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25414 - type: GasPipeStraight - components: - - pos: -22.5,-5.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25415 - type: GasPipeStraight - components: - - pos: -21.5,-3.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25416 - type: GasPipeStraight - components: - - pos: -21.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25417 - type: GasPipeStraight - components: - - pos: -21.5,-5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25418 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -21.5,-6.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25419 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -22.5,-6.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25420 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -0.5,5.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25421 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -0.5,16.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25422 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -0.5,14.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25423 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -0.5,4.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25424 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25425 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25426 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25427 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25428 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25429 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25430 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25431 - type: GasPipeTJunction - components: - - pos: -4.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25432 - type: GasPipeTJunction - components: - - pos: -5.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25433 - type: GasPipeTJunction - components: - - pos: -10.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25434 - type: GasPipeTJunction - components: - - pos: -11.5,20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25435 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -10.5,20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25436 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -10.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25437 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -16.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25438 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -17.5,20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25439 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25440 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25441 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25442 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25443 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25444 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,18.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25445 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,17.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25446 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,16.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25447 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,19.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25448 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,18.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25449 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,17.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25450 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,16.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25451 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,18.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25452 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,17.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25453 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,16.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25454 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25455 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,19.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25456 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,18.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25457 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,17.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25458 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,16.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25459 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25460 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -6.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25461 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25462 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25463 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25464 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25465 - type: GasPipeTJunction - components: - - pos: -7.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25466 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25467 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25468 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25469 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25470 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25471 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25472 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25473 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25474 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25475 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25476 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25477 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25478 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25479 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -5.5,15.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25480 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -11.5,15.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25481 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -18.5,20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25482 - type: GasVentScrubber - components: - - pos: -17.5,23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25483 - type: GasVentPump - components: - - pos: -16.5,23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25484 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -18.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25485 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -10.5,15.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25486 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -4.5,15.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25487 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -7.5,20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25488 - type: GasVentPump - components: - - pos: -6.5,20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25489 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25490 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25491 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25492 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25493 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 6.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25494 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 4.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25495 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25496 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25497 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25498 - type: GasPipeTJunction - components: - - pos: 8.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25499 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25500 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25501 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25502 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25503 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25504 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25505 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25506 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25507 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25508 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25509 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25510 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25511 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 9.5,19.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25512 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25513 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25514 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25515 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25516 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 13.5,21.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25517 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -9.5,15.5 - parent: 8364 - type: Transform - - devices: - - 25375 - - 25479 - - 25486 - type: DeviceList -- uid: 25518 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 8.5,20.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25519 - type: GasVentPump - components: - - pos: 9.5,20.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25520 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,21.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25521 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,22.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25522 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,22.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25523 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25524 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25525 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 6.5,23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25526 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 4.5,24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25527 - type: GasPipeStraight - components: - - pos: 4.5,25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25528 - type: GasPipeStraight - components: - - pos: 6.5,25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25529 - type: GasPipeStraight - components: - - pos: 4.5,26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25530 - type: GasPipeStraight - components: - - pos: 4.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25531 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25532 - type: GasPipeTJunction - components: - - pos: 4.5,28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25533 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 5.5,23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25534 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 5.5,24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25535 - type: GasPipeTJunction - components: - - pos: 6.5,27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25536 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 7.5,28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25537 - type: GasPipeFourway - components: - - pos: 8.5,27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25538 - type: GasPipeTJunction - components: - - pos: 9.5,28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25539 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25540 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25541 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25542 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25543 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25544 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25545 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25546 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,29.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25547 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,30.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25548 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25549 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25550 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25551 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25552 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25553 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25554 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25555 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25556 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25557 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 10.5,27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25558 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 8.5,23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25559 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 9.5,23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25560 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 10.5,28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25561 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 5.5,27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25562 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 5.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25563 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 3.5,28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25564 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 3.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25565 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25566 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25567 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25568 - type: GasPipeStraight - components: - - pos: -8.5,25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25569 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25570 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25571 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25572 - type: GasPipeStraight - components: - - pos: -8.5,26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25573 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25574 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25575 - type: GasPipeFourway - components: - - pos: -4.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25576 - type: GasPipeFourway - components: - - pos: 1.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25577 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25578 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25579 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25580 - type: GasPipeStraight - components: - - pos: -0.5,26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25581 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25582 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25583 - type: GasPipeStraight - components: - - pos: -6.5,25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25584 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25585 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25586 - type: GasPipeStraight - components: - - pos: -4.5,26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25587 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25588 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25589 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25590 - type: GasPipeStraight - components: - - pos: -4.5,25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25591 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25592 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25593 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25594 - type: GasPipeStraight - components: - - pos: -2.5,25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25595 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25596 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25597 - type: GasPipeFourway - components: - - pos: -10.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25598 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25599 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25600 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -13.5,26.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25601 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -14.5,27.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25602 - type: GasPipeStraight - components: - - pos: -14.5,26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25603 - type: GasPipeStraight - components: - - pos: -14.5,25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25604 - type: GasPipeStraight - components: - - pos: -14.5,24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25605 - type: GasPipeStraight - components: - - pos: -13.5,25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25606 - type: GasPipeStraight - components: - - pos: -13.5,24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25607 - type: GasPipeStraight - components: - - pos: -0.5,25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25608 - type: GasPipeStraight - components: - - pos: 1.5,25.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25609 - type: GasPipeStraight - components: - - pos: 2.5,25.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25610 - type: GasPipeStraight - components: - - pos: 2.5,26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25611 - type: CableHV - components: - - pos: -2.5,26.5 - parent: 8364 - type: Transform -- uid: 25612 - type: CableHV - components: - - pos: 1.5,26.5 - parent: 8364 - type: Transform -- uid: 25613 - type: CableHV - components: - - pos: -6.5,26.5 - parent: 8364 - type: Transform -- uid: 25614 - type: CableHV - components: - - pos: -10.5,26.5 - parent: 8364 - type: Transform -- uid: 25615 - type: CableMV - components: - - pos: -10.5,26.5 - parent: 8364 - type: Transform -- uid: 25616 - type: CableMV - components: - - pos: -6.5,26.5 - parent: 8364 - type: Transform -- uid: 25617 - type: CableMV - components: - - pos: -2.5,26.5 - parent: 8364 - type: Transform -- uid: 25618 - type: CableMV - components: - - pos: 1.5,26.5 - parent: 8364 - type: Transform -- uid: 25619 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 1.5,24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25620 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -2.5,24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25621 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -6.5,24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25622 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -10.5,24.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25623 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -13.5,23.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25624 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -14.5,23.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25625 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -8.5,24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25626 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -4.5,24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25627 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -0.5,24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25628 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 2.5,24.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25629 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25630 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25631 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25632 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25633 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25634 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,29.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25635 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,30.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25636 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 1.5,31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25637 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 2.5,31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25638 - type: GasPipeStraight - components: - - pos: 1.5,32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25639 - type: GasPipeStraight - components: - - pos: 1.5,33.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25640 - type: GasPipeStraight - components: - - pos: 1.5,34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25641 - type: GasPipeStraight - components: - - pos: 1.5,35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25642 - type: GasPipeStraight - components: - - pos: 2.5,32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25643 - type: GasPipeStraight - components: - - pos: 2.5,33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25644 - type: GasPipeStraight - components: - - pos: 2.5,34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25645 - type: GasPipeStraight - components: - - pos: 2.5,35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25646 - type: GasPipeStraight - components: - - pos: -5.5,27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25647 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -4.5,29.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25648 - type: GasPipeStraight - components: - - pos: -5.5,29.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25649 - type: GasPipeStraight - components: - - pos: -4.5,28.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25650 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -5.5,28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25651 - type: GasPipeStraight - components: - - pos: -4.5,30.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25652 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -5.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25653 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -4.5,31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25654 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25655 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25656 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25657 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25658 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25659 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,33.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25660 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25661 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25662 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25663 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25664 - type: WallSolid - components: - - pos: -16.5,46.5 - parent: 8364 - type: Transform -- uid: 25665 - type: WallSolid - components: - - pos: -16.5,47.5 - parent: 8364 - type: Transform -- uid: 25666 - type: WallSolid - components: - - pos: -19.5,40.5 - parent: 8364 - type: Transform -- uid: 25667 - type: WallReinforced - components: - - pos: -17.5,52.5 - parent: 8364 - type: Transform -- uid: 25668 - type: WallSolid - components: - - pos: -19.5,41.5 - parent: 8364 - type: Transform -- uid: 25669 - type: WallSolid - components: - - pos: -16.5,49.5 - parent: 8364 - type: Transform -- uid: 25670 - type: WallSolid - components: - - pos: -12.5,46.5 - parent: 8364 - type: Transform -- uid: 25671 - type: WallSolid - components: - - pos: -16.5,40.5 - parent: 8364 - type: Transform -- uid: 25672 - type: WallSolid - components: - - pos: -16.5,41.5 - parent: 8364 - type: Transform -- uid: 25673 - type: WallSolid - components: - - pos: -16.5,51.5 - parent: 8364 - type: Transform -- uid: 25674 - type: MopItem - components: - - pos: -18.522163,51.546326 - parent: 8364 - type: Transform -- uid: 25675 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: -3.5,50.5 - parent: 8364 - type: Transform -- uid: 25676 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,51.5 - parent: 8364 - type: Transform -- uid: 25677 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -3.5,50.5 - parent: 8364 - type: Transform -- uid: 25678 - type: FirelockGlass - components: - - pos: -3.5,51.5 - parent: 8364 - type: Transform -- uid: 25679 - type: TableWood - components: - - pos: -14.5,40.5 - parent: 8364 - type: Transform -- uid: 25680 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -15.5,40.5 - parent: 8364 - type: Transform -- uid: 25681 - type: WallReinforced - components: - - pos: -7.5,40.5 - parent: 8364 - type: Transform -- uid: 25682 - type: WallReinforced - components: - - pos: -8.5,37.5 - parent: 8364 - type: Transform -- uid: 25683 - type: TableWood - components: - - pos: -14.5,41.5 - parent: 8364 - type: Transform -- uid: 25684 - type: Carpet - components: - - pos: -15.5,40.5 - parent: 8364 - type: Transform -- uid: 25685 - type: hydroponicsSoil - components: - - pos: -0.5,47.5 - parent: 8364 - type: Transform -- uid: 25686 - type: WallSolid - components: - - pos: -17.5,49.5 - parent: 8364 - type: Transform -- uid: 25687 - type: WallReinforced - components: - - pos: -16.5,53.5 - parent: 8364 - type: Transform -- uid: 25688 - type: Window - components: - - pos: -6.5,46.5 - parent: 8364 - type: Transform -- uid: 25689 - type: WallSolid - components: - - pos: -15.5,46.5 - parent: 8364 - type: Transform -- uid: 25690 - type: WallSolid - components: - - pos: -22.5,40.5 - parent: 8364 - type: Transform -- uid: 25691 - type: WallSolid - components: - - pos: -22.5,41.5 - parent: 8364 - type: Transform -- uid: 25692 - type: AirlockMaint - components: - - pos: -23.5,46.5 - parent: 8364 - type: Transform -- uid: 25693 - type: AirlockMaint - components: - - pos: -16.5,50.5 - parent: 8364 - type: Transform -- uid: 25694 - type: WallSolid - components: - - pos: -21.5,49.5 - parent: 8364 - type: Transform -- uid: 25695 - type: GasPipeStraight - components: - - pos: -14.5,35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25696 - type: Carpet - components: - - pos: -15.5,41.5 - parent: 8364 - type: Transform -- uid: 25697 - type: hydroponicsSoil - components: - - pos: -0.5,48.5 - parent: 8364 - type: Transform -- uid: 25698 - type: WallSolid - components: - - pos: -22.5,49.5 - parent: 8364 - type: Transform -- uid: 25699 - type: Grille - components: - - pos: -6.5,46.5 - parent: 8364 - type: Transform -- uid: 25700 - type: SubstationBasic - components: - - name: Perma Substation - type: MetaData - - pos: -20.5,51.5 - parent: 8364 - type: Transform -- uid: 25701 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -17.5,42.5 - parent: 8364 - type: Transform -- uid: 25702 - type: hydroponicsSoil - components: - - pos: 2.5,47.5 - parent: 8364 - type: Transform -- uid: 25703 - type: Carpet - components: - - pos: -14.5,40.5 - parent: 8364 - type: Transform -- uid: 25704 - type: Carpet - components: - - pos: -14.5,41.5 - parent: 8364 - type: Transform -- uid: 25705 - type: Carpet - components: - - pos: -13.5,40.5 - parent: 8364 - type: Transform -- uid: 25706 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -15.5,42.5 - parent: 8364 - type: Transform -- uid: 25707 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -13.5,42.5 - parent: 8364 - type: Transform -- uid: 25708 - type: WindowReinforcedDirectional - components: - - pos: -18.5,46.5 - parent: 8364 - type: Transform -- uid: 25709 - type: WindowReinforcedDirectional - components: - - pos: -21.5,46.5 - parent: 8364 - type: Transform -- uid: 25710 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,36.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25711 - type: GasPipeStraight - components: - - pos: -5.5,35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25712 - type: Grille - components: - - pos: -14.5,54.5 - parent: 8364 - type: Transform -- uid: 25713 - type: Grille - components: - - pos: -15.5,54.5 - parent: 8364 - type: Transform -- uid: 25714 - type: Grille - components: - - pos: -12.5,54.5 - parent: 8364 - type: Transform -- uid: 25715 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -13.5,40.5 - parent: 8364 - type: Transform -- uid: 25716 - type: WindoorSecure - components: - - rot: 3.141592653589793 rad - pos: -21.5,42.5 - parent: 8364 - type: Transform -- uid: 25717 - type: WallSolid - components: - - pos: -20.5,49.5 - parent: 8364 - type: Transform -- uid: 25718 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,36.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25719 - type: LockerEvidence - components: - - pos: -8.5,39.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25720 - type: AirlockFreezer - components: - - pos: -23.5,42.5 - parent: 8364 - type: Transform -- uid: 25721 - type: Grille - components: - - pos: -8.5,46.5 - parent: 8364 - type: Transform -- uid: 25722 - type: GasPipeStraight - components: - - pos: -14.5,34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25723 - type: hydroponicsSoil - components: - - pos: 2.5,48.5 - parent: 8364 - type: Transform -- uid: 25724 - type: hydroponicsSoil - components: - - pos: -2.5,47.5 - parent: 8364 - type: Transform -- uid: 25725 - type: WindoorSecure - components: - - pos: -20.5,46.5 - parent: 8364 - type: Transform -- uid: 25726 - type: Grille - components: - - pos: -11.5,54.5 - parent: 8364 - type: Transform -- uid: 25727 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -13.5,41.5 - parent: 8364 - type: Transform -- uid: 25728 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,36.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25729 - type: hydroponicsSoil - components: - - pos: -2.5,48.5 - parent: 8364 - type: Transform -- uid: 25730 - type: MopBucket - components: - - pos: -18.537788,51.577576 - parent: 8364 - type: Transform -- uid: 25731 - type: Window - components: - - pos: -8.5,46.5 - parent: 8364 - type: Transform -- uid: 25732 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -20.5,42.5 - parent: 8364 - type: Transform -- uid: 25733 - type: WindoorSecure - components: - - pos: -17.5,46.5 - parent: 8364 - type: Transform -- uid: 25734 - type: WindoorSecure - components: - - rot: 3.141592653589793 rad - pos: -18.5,42.5 - parent: 8364 - type: Transform -- uid: 25735 - type: ReinforcedWindow - components: - - pos: -15.5,37.5 - parent: 8364 - type: Transform -- uid: 25736 - type: ReinforcedWindow - components: - - pos: -13.5,37.5 - parent: 8364 - type: Transform -- uid: 25737 - type: ReinforcedWindow - components: - - pos: -14.5,37.5 - parent: 8364 - type: Transform -- uid: 25738 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: -4.5,40.5 - parent: 8364 - type: Transform -- uid: 25739 - type: CableApcExtension - components: - - pos: -10.5,48.5 - parent: 8364 - type: Transform -- uid: 25740 - type: CableApcExtension - components: - - pos: -11.5,48.5 - parent: 8364 - type: Transform -- uid: 25741 - type: CableApcExtension - components: - - pos: -11.5,49.5 - parent: 8364 - type: Transform -- uid: 25742 - type: CableApcExtension - components: - - pos: -11.5,50.5 - parent: 8364 - type: Transform -- uid: 25743 - type: CableApcExtension - components: - - pos: -11.5,51.5 - parent: 8364 - type: Transform -- uid: 25744 - type: CableApcExtension - components: - - pos: -11.5,52.5 - parent: 8364 - type: Transform -- uid: 25745 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25746 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25747 - type: CableApcExtension - components: - - pos: -11.5,53.5 - parent: 8364 - type: Transform -- uid: 25748 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,33.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25749 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25750 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -14.5,31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25751 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -15.5,31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25752 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -13.5,31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25753 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -7.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25754 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -7.5,31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25755 - type: GasVentPump - components: - - pos: -10.5,27.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25756 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -11.5,26.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25757 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -4.5,28.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25758 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -5.5,29.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25759 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 3.5,31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25760 - type: GasVentScrubber - components: - - pos: 2.5,36.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25761 - type: GasVentPump - components: - - pos: 1.5,36.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25762 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 0.5,31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25763 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 8.5,31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25764 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 7.5,32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25765 - type: GasPipeStraight - components: - - pos: 7.5,33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25766 - type: GasPipeStraight - components: - - pos: 7.5,34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25767 - type: GasPipeStraight - components: - - pos: 7.5,35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25768 - type: GasPipeStraight - components: - - pos: 7.5,36.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25769 - type: GasPipeStraight - components: - - pos: 8.5,32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25770 - type: GasPipeStraight - components: - - pos: 8.5,33.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25771 - type: GasPipeStraight - components: - - pos: 8.5,34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25772 - type: GasPipeStraight - components: - - pos: 8.5,35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25773 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25774 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25775 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25776 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25777 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25778 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25779 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25780 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25781 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25782 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25783 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25784 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25785 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25786 - type: GasPipeFourway - components: - - pos: 15.5,31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25787 - type: GasPipeFourway - components: - - pos: 14.5,32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25788 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25789 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,33.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25790 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,34.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25791 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,35.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25792 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,36.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25793 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,37.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25794 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25795 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,34.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25796 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,35.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25797 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25798 - type: GasPipeBend - components: - - pos: 14.5,38.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25799 - type: GasPipeStraight - components: - - pos: 14.5,37.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25800 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 14.5,31.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25801 - type: GasVentScrubber - components: - - pos: 7.5,37.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25802 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 13.5,38.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25803 - type: GasVentPump - components: - - pos: 15.5,38.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25804 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 15.5,30.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25805 - type: GasVentPump - components: - - pos: 8.5,36.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25806 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25807 - type: FireAlarm - components: - - pos: -56.5,2.5 - parent: 8364 - type: Transform - - devices: - - 14167 - - 14343 - - 2944 - - 14342 - - 7078 - - 7180 - - 7043 - - 25827 - - 25826 - - 11722 - type: DeviceList -- uid: 25808 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 17.5,31.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25809 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 16.5,32.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25810 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 16.5,33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25811 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 17.5,32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25812 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25813 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25814 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25815 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25816 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25817 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25818 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25819 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25820 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25821 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25822 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25823 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 23.5,33.5 - parent: 8364 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25824 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 23.5,32.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25825 - type: AirAlarm - components: - - pos: -61.5,2.5 - parent: 8364 - type: Transform - - devices: - - 14167 - - 14343 - - 2944 - - 14342 - - 7078 - - 7180 - - 7043 - - 25827 - - 25826 - - 25316 - - 25317 - - 25318 - - 25315 - - 11722 - type: DeviceList -- uid: 25826 - type: AirSensor - components: - - pos: -57.5,1.5 - parent: 8364 - type: Transform -- uid: 25827 - type: AirSensor - components: - - pos: -57.5,-5.5 - parent: 8364 - type: Transform -- uid: 25828 - type: AirAlarm - components: - - pos: -66.5,-2.5 - parent: 8364 - type: Transform - - devices: - - 21814 - - 21812 - - 14167 - - 14343 - - 25830 - - 2944 - - 14342 - - 21815 - - 21816 - - 25307 - - 25306 - - 25305 - - 25304 - type: DeviceList -- uid: 25829 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-0.5 - parent: 8364 - type: Transform - - devices: - - 21814 - - 21812 - - 14167 - - 14343 - - 25830 - - 2944 - - 14342 - - 21815 - - 21816 - type: DeviceList -- uid: 25830 - type: AirSensor - components: - - pos: -65.5,-4.5 - parent: 8364 - type: Transform -- uid: 25831 - type: AirSensor - components: - - pos: -73.5,9.5 - parent: 8364 - type: Transform -- uid: 25832 - type: FireAlarm - components: - - pos: -64.5,11.5 - parent: 8364 - type: Transform - - devices: - - 25831 - - 21816 - - 21815 - type: DeviceList -- uid: 25833 - type: AirAlarm - components: - - pos: -74.5,11.5 - parent: 8364 - type: Transform - - devices: - - 25831 - - 21816 - - 21815 - - 25289 - - 25290 - type: DeviceList -- uid: 25834 - type: AirAlarm - components: - - pos: -66.5,-12.5 - parent: 8364 - type: Transform - - devices: - - 25836 - - 21814 - - 21812 - - 25276 - - 20132 - type: DeviceList -- uid: 25835 - type: FireAlarm - components: - - pos: -67.5,-12.5 - parent: 8364 - type: Transform - - devices: - - 25836 - - 21814 - - 21812 - type: DeviceList -- uid: 25836 - type: AirSensor - components: - - pos: -70.5,-14.5 - parent: 8364 - type: Transform -- uid: 25837 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-7.5 - parent: 8364 - type: Transform - - devices: - - 25838 - - 25336 - - 25337 - type: DeviceList -- uid: 25838 - type: AirSensor - components: - - pos: -51.5,-8.5 - parent: 8364 - type: Transform -- uid: 25839 - type: JetpackBlueFilled - components: - - flags: InContainer - type: MetaData - - parent: 20886 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 25840 - type: WallmountTelevision - components: - - pos: 23.5,1.5 - parent: 8364 - type: Transform -- uid: 25841 - type: Bed - components: - - pos: 27.5,-30.5 - parent: 8364 - type: Transform -- uid: 25842 - type: Bed - components: - - pos: 27.5,-27.5 - parent: 8364 - type: Transform -- uid: 25843 - type: PaintingAmogusTriptych - components: - - pos: 53.5,-7.5 - parent: 8364 - type: Transform -- uid: 25844 - type: RandomPosterLegit - components: - - pos: 52.5,-3.5 - parent: 8364 - type: Transform -- uid: 25845 - type: RandomPosterLegit - components: - - pos: 58.5,4.5 - parent: 8364 - type: Transform -- uid: 25846 - type: RandomPosterLegit - components: - - pos: 75.5,-4.5 - parent: 8364 - type: Transform -- uid: 25847 - type: RandomPosterLegit - components: - - pos: 68.5,-27.5 - parent: 8364 - type: Transform -- uid: 25848 - type: RandomPosterLegit - components: - - pos: 75.5,-17.5 - parent: 8364 - type: Transform -- uid: 25849 - type: RandomPosterLegit - components: - - pos: 60.5,-38.5 - parent: 8364 - type: Transform -- uid: 25850 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-40.5 - parent: 8364 - type: Transform -- uid: 25851 - type: RandomPosterLegit - components: - - pos: 37.5,-59.5 - parent: 8364 - type: Transform -- uid: 25852 - type: RandomPosterLegit - components: - - pos: -4.5,-32.5 - parent: 8364 - type: Transform -- uid: 25853 - type: RandomPosterLegit - components: - - pos: -2.5,-49.5 - parent: 8364 - type: Transform -- uid: 25854 - type: RandomPosterLegit - components: - - pos: -18.5,-6.5 - parent: 8364 - type: Transform -- uid: 25855 - type: RandomPosterLegit - components: - - pos: -23.5,-4.5 - parent: 8364 - type: Transform -- uid: 25856 - type: RandomPosterLegit - components: - - pos: -38.5,-3.5 - parent: 8364 - type: Transform -- uid: 25857 - type: RandomPosterLegit - components: - - pos: -45.5,-3.5 - parent: 8364 - type: Transform -- uid: 25858 - type: RandomPosterLegit - components: - - pos: -54.5,-6.5 - parent: 8364 - type: Transform -- uid: 25859 - type: BoxFolderBlue - components: - - pos: -0.48406625,-11.440446 - parent: 8364 - type: Transform -- uid: 25860 - type: WeaponTurretSyndicateBroken - components: - - pos: -4.5,-13.5 - parent: 8364 - type: Transform -- uid: 25861 - type: WeaponTurretSyndicateBroken - components: - - pos: 3.5,-13.5 - parent: 8364 - type: Transform -- uid: 25862 - type: WeaponTurretSyndicateBroken - components: - - pos: -3.5,-10.5 - parent: 8364 - type: Transform -- uid: 25863 - type: WeaponTurretSyndicateBroken - components: - - pos: 2.5,-10.5 - parent: 8364 - type: Transform -- uid: 25864 - type: Poweredlight - components: - - pos: 30.5,-27.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25865 - type: Grille - components: - - pos: 6.5,29.5 - parent: 8364 - type: Transform -- uid: 25866 - type: Grille - components: - - pos: 8.5,29.5 - parent: 8364 - type: Transform -- uid: 25867 - type: Poweredlight - components: - - pos: -13.5,-11.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25868 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: 31.5,13.5 - parent: 8364 - type: Transform -- uid: 25869 - type: Poweredlight - components: - - pos: 57.5,-16.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25870 - type: Poweredlight - components: - - pos: 54.5,-26.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25871 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-30.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25872 - type: RandomPosterLegit - components: - - pos: 1.5,15.5 - parent: 8364 - type: Transform -- uid: 25873 - type: ClosetJanitorFilled - components: - - pos: -49.5,-6.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25874 - type: Table - components: - - pos: -20.5,-15.5 - parent: 8364 - type: Transform -- uid: 25875 - type: Table - components: - - pos: -21.5,-15.5 - parent: 8364 - type: Transform -- uid: 25876 - type: Poweredlight - components: - - pos: -19.5,-15.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25877 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-27.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25878 - type: WardrobeCargoFilled - components: - - pos: -30.5,-26.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25879 - type: WardrobeCargoFilled - components: - - pos: -30.5,-24.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25880 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 21.5,-4.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25881 - type: TableWood - components: - - pos: 20.5,-9.5 - parent: 8364 - type: Transform -- uid: 25882 - type: TableWood - components: - - pos: 19.5,-9.5 - parent: 8364 - type: Transform -- uid: 25883 - type: Poweredlight - components: - - pos: 28.5,-4.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25884 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-1.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25885 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 33.5,-19.5 - parent: 8364 - type: Transform -- uid: 25886 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 31.5,-19.5 - parent: 8364 - type: Transform -- uid: 25887 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 29.5,-19.5 - parent: 8364 - type: Transform -- uid: 25888 - type: WindoorMedicalLocked - components: - - rot: 3.141592653589793 rad - pos: 28.5,-19.5 - parent: 8364 - type: Transform -- uid: 25889 - type: WindoorMedicalLocked - components: - - rot: 3.141592653589793 rad - pos: 30.5,-19.5 - parent: 8364 - type: Transform -- uid: 25890 - type: WindoorMedicalLocked - components: - - rot: 3.141592653589793 rad - pos: 32.5,-19.5 - parent: 8364 - type: Transform -- uid: 25891 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-29.5 - parent: 8364 - type: Transform - - devices: - - 5548 - - 9811 - - 5879 - - 6211 - type: DeviceList -- uid: 25892 - type: Poweredlight - components: - - pos: 54.5,-43.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25893 - type: Poweredlight - components: - - pos: 61.5,-43.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25894 - type: CableHV - components: - - pos: -6.5,-52.5 - parent: 8364 - type: Transform -- uid: 25895 - type: CableHV - components: - - pos: -6.5,-51.5 - parent: 8364 - type: Transform -- uid: 25896 - type: WindowDirectional - components: - - pos: -42.5,-17.5 - parent: 8364 - type: Transform -- uid: 25897 - type: Grille - components: - - pos: 2.5,-25.5 - parent: 8364 - type: Transform -- uid: 25898 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 3.5,39.5 - parent: 8364 - type: Transform -- uid: 25899 - type: WindowReinforcedDirectional - components: - - pos: -2.5,38.5 - parent: 8364 - type: Transform -- uid: 25900 - type: TimpaniInstrument - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 - parent: 8364 - type: Transform -- uid: 25901 - type: BassGuitarInstrument - components: - - pos: 22.460173,2.6171174 - parent: 8364 - type: Transform -- uid: 25902 - type: RockGuitarInstrument - components: - - pos: 22.573097,2.4609609 - parent: 8364 - type: Transform -- uid: 25903 - type: Grille - components: - - pos: -12.5,-32.5 - parent: 8364 - type: Transform -- uid: 25904 - type: Grille - components: - - pos: -13.5,-32.5 - parent: 8364 - type: Transform -- uid: 25905 - type: Grille - components: - - pos: -14.5,-32.5 - parent: 8364 - type: Transform -- uid: 25906 - type: RandomPosterLegit - components: - - pos: 11.5,-32.5 - parent: 8364 - type: Transform -- uid: 25907 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 11.5,-36.5 - parent: 8364 - type: Transform -- uid: 25908 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 9.5,-36.5 - parent: 8364 - type: Transform -- uid: 25909 - type: Mirror - components: - - pos: 17.5,-35.5 - parent: 8364 - type: Transform -- uid: 25910 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-35.5 - parent: 8364 - type: Transform -- uid: 25911 - type: CrateFreezer - components: - - pos: 22.5,-35.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25912 - type: LockerMedicineFilled - components: - - pos: 19.5,-36.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25913 - type: ClothingBackpackDuffelSurgeryFilled - components: - - pos: 20.48545,-32.161736 - parent: 8364 - type: Transform -- uid: 25914 - type: AirSensor - components: - - pos: 20.5,-36.5 - parent: 8364 - type: Transform -- uid: 25915 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 20.5,-37.5 - parent: 8364 - type: Transform - - devices: - - 25914 - - 24707 - - 24711 - - 19177 - type: DeviceList -- uid: 25916 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 21.5,-37.5 - parent: 8364 - type: Transform - - devices: - - 19177 - - 25914 - type: DeviceList -- uid: 25917 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 24.5,-29.5 - parent: 8364 - type: Transform -- uid: 25918 - type: WindowReinforcedDirectional - components: - - pos: 24.5,-29.5 - parent: 8364 - type: Transform -- uid: 25919 - type: Window - components: - - pos: 41.5,-25.5 - parent: 8364 - type: Transform -- uid: 25920 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-26.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25921 - type: DisposalUnit - components: - - pos: 42.5,-31.5 - parent: 8364 - type: Transform -- uid: 25922 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-31.5 - parent: 8364 - type: Transform -- uid: 25923 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-31.5 - parent: 8364 - type: Transform -- uid: 25924 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-31.5 - parent: 8364 - type: Transform -- uid: 25925 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-31.5 - parent: 8364 - type: Transform -- uid: 25926 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-31.5 - parent: 8364 - type: Transform -- uid: 25927 - type: WindowTintedDirectional - components: - - pos: 31.5,14.5 - parent: 8364 - type: Transform -- uid: 25928 - type: WallmountTelevision - components: - - pos: -21.5,0.5 - parent: 8364 - type: Transform -- uid: 25929 - type: ToolboxArtistic - components: - - pos: -34.499626,-5.94352 - parent: 8364 - type: Transform -- uid: 25930 - type: SignDirectionalJanitor - components: - - pos: -49.5,-3.5 - parent: 8364 - type: Transform -- uid: 25931 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -62.5,2.5 - parent: 8364 - type: Transform -- uid: 25932 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: -62.499004,2.7260544 - parent: 8364 - type: Transform -- uid: 25933 - type: SignDirectionalDorms - components: - - rot: 1.5707963267948966 rad - pos: -62.499004,2.2885544 - parent: 8364 - type: Transform -- uid: 25934 - type: SignDirectionalHop - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-6.5 - parent: 8364 - type: Transform -- uid: 25935 - type: SignDirectionalSupply - components: - - rot: 1.5707963267948966 rad - pos: -62.50528,-6.2843995 - parent: 8364 - type: Transform -- uid: 25936 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: -62.50528,-6.7218995 - parent: 8364 - type: Transform -- uid: 25937 - type: SignDirectionalBridge - components: - - pos: -17.5,0.5 - parent: 8364 - type: Transform -- uid: 25938 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: -17.505136,0.7252439 - parent: 8364 - type: Transform -- uid: 25939 - type: SignDirectionalSupply - components: - - pos: -17.505136,0.28774393 - parent: 8364 - type: Transform -- uid: 25940 - type: SignDirectionalHop - components: - - pos: -18.489511,-4.1296644 - parent: 8364 - type: Transform -- uid: 25941 - type: SignDirectionalHop - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-28.5 - parent: 8364 - type: Transform -- uid: 25942 - type: SignDirectionalHop - components: - - pos: -14.5,-20.5 - parent: 8364 - type: Transform -- uid: 25943 - type: SignPlaque - components: - - pos: -10.5,-20.5 - parent: 8364 - type: Transform -- uid: 25944 - type: PoweredlightLED - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-24.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25945 - type: PoweredlightLED - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-24.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25946 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -43.5,-17.5 - parent: 8364 - type: Transform -- uid: 25947 - type: ShardGlass - components: - - pos: -41.498413,-16.841608 - parent: 8364 - type: Transform -- uid: 25948 - type: WindowDirectional - components: - - pos: -42.5,1.5 - parent: 8364 - type: Transform -- uid: 25949 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 31.5,12.5 - parent: 8364 - type: Transform -- uid: 25950 - type: WindowTintedDirectional - components: - - pos: 31.5,11.5 - parent: 8364 - type: Transform -- uid: 25951 - type: FirelockGlass - components: - - pos: 82.5,-21.5 - parent: 8364 - type: Transform -- uid: 25952 - type: FirelockGlass - components: - - pos: 82.5,-43.5 - parent: 8364 - type: Transform -- uid: 25953 - type: FirelockGlass - components: - - pos: 68.5,-63.5 - parent: 8364 - type: Transform -- uid: 25954 - type: FirelockGlass - components: - - pos: -33.5,-55.5 - parent: 8364 - type: Transform -- uid: 25955 - type: FirelockGlass - components: - - pos: 2.5,10.5 - parent: 8364 - type: Transform -- uid: 25956 - type: TableWood - components: - - pos: 18.5,-9.5 - parent: 8364 - type: Transform -- uid: 25957 - type: Grille - components: - - pos: 17.5,-3.5 - parent: 8364 - type: Transform -- uid: 25958 - type: FirelockGlass - components: - - pos: 28.5,-8.5 - parent: 8364 - type: Transform -- uid: 25959 - type: FirelockGlass - components: - - pos: 28.5,-7.5 - parent: 8364 - type: Transform -- uid: 25960 - type: FirelockGlass - components: - - pos: 28.5,-6.5 - parent: 8364 - type: Transform -- uid: 25961 - type: FirelockGlass - components: - - pos: 28.5,-5.5 - parent: 8364 - type: Transform -- uid: 25962 - type: FirelockGlass - components: - - pos: 28.5,-4.5 - parent: 8364 - type: Transform -- uid: 25963 - type: FirelockGlass - components: - - pos: 29.5,-8.5 - parent: 8364 - type: Transform -- uid: 25964 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 8364 - type: Transform -- uid: 25965 - type: FireAlarm - components: - - pos: 31.5,-8.5 - parent: 8364 - type: Transform - - devices: - - 22647 - - 25964 - - 25963 - - 25958 - - 25959 - - 25960 - - 25961 - - 25962 - type: DeviceList -- uid: 25966 - type: ClothingHeadHatCardborg - components: - - pos: 18.501087,3.516245 - parent: 8364 - type: Transform -- uid: 25967 - type: BaseBigBox - components: - - pos: -25.023743,-15.516048 - parent: 8364 - type: Transform -- uid: 25968 - type: WindoorSecurityLocked - components: - - pos: 79.5,-4.5 - parent: 8364 - type: Transform -- uid: 25969 - type: PowerCellRecharger - components: - - pos: 79.5,-4.5 - parent: 8364 - type: Transform -- uid: 25970 - type: PowerCellRecharger - components: - - pos: 69.5,-29.5 - parent: 8364 - type: Transform -- uid: 25971 - type: PowerCellRecharger - components: - - pos: 22.5,9.5 - parent: 8364 - type: Transform -- uid: 25972 - type: PowerCellRecharger - components: - - pos: 6.5,32.5 - parent: 8364 - type: Transform -- uid: 25973 - type: PowerCellRecharger - components: - - pos: -5.5,-33.5 - parent: 8364 - type: Transform -- uid: 25974 - type: PowerCellRecharger - components: - - pos: -8.5,-56.5 - parent: 8364 - type: Transform -- uid: 25975 - type: Chair - components: - - pos: 6.5,-29.5 - parent: 8364 - type: Transform -- uid: 25976 - type: Chair - components: - - pos: 5.5,-29.5 - parent: 8364 - type: Transform -- uid: 25977 - type: NitrousOxideTankFilled - components: - - pos: 24.446787,-32.484436 - parent: 8364 - type: Transform -- uid: 25978 - type: Grille - components: - - pos: 35.5,4.5 - parent: 8364 - type: Transform -- uid: 25979 - type: Grille - components: - - pos: 33.5,4.5 - parent: 8364 - type: Transform -- uid: 25980 - type: Grille - components: - - pos: 31.5,4.5 - parent: 8364 - type: Transform -- uid: 25981 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 31.5,9.5 - parent: 8364 - type: Transform -- uid: 25982 - type: WindowTintedDirectional - components: - - pos: 32.5,11.5 - parent: 8364 - type: Transform -- uid: 25983 - type: WindowTintedDirectional - components: - - pos: 34.5,11.5 - parent: 8364 - type: Transform -- uid: 25984 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 33.5,12.5 - parent: 8364 - type: Transform -- uid: 25985 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 34.5,12.5 - parent: 8364 - type: Transform -- uid: 25986 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 34.5,12.5 - parent: 8364 - type: Transform -- uid: 25987 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 32.5,10.5 - parent: 8364 - type: Transform -- uid: 25988 - type: RandomArtifactSpawner - components: - - pos: 80.5,-29.5 - parent: 8364 - type: Transform -- uid: 25989 - type: CrateArtifactContainer - components: - - pos: 80.5,-23.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25990 - type: ChairOfficeDark - components: - - pos: 76.5,-25.5 - parent: 8364 - type: Transform -- uid: 25991 - type: ChairOfficeDark - components: - - pos: 79.5,-25.5 - parent: 8364 - type: Transform -- uid: 25992 - type: ClosetRadiationSuitFilled - components: - - pos: 78.5,-23.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25993 - type: Rack - components: - - pos: 81.5,-23.5 - parent: 8364 - type: Transform -- uid: 25994 - type: SignAnomaly - components: - - pos: 75.5,-22.5 - parent: 8364 - type: Transform -- uid: 25995 - type: CableApcExtension - components: - - pos: -12.5,51.5 - parent: 8364 - type: Transform -- uid: 25996 - type: CableApcExtension - components: - - pos: -13.5,51.5 - parent: 8364 - type: Transform -- uid: 25997 - type: CableApcExtension - components: - - pos: -14.5,51.5 - parent: 8364 - type: Transform -- uid: 25998 - type: WindowTintedDirectional - components: - - pos: 33.5,10.5 - parent: 8364 - type: Transform -- uid: 25999 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 32.5,8.5 - parent: 8364 - type: Transform -- uid: 26000 - type: WindowTintedDirectional - components: - - pos: 32.5,8.5 - parent: 8364 - type: Transform -- uid: 26001 - type: WindowTintedDirectional - components: - - pos: 31.5,8.5 - parent: 8364 - type: Transform -- uid: 26002 - type: WindowTintedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 30.5,8.5 - parent: 8364 - type: Transform -- uid: 26003 - type: FoodCakeChristmasSlice - components: - - pos: 36.51706,-10.491591 - parent: 8364 - type: Transform -- uid: 26004 - type: BagpipeInstrument - components: - - pos: 22.356016,2.7478647 - parent: 8364 - type: Transform -- uid: 26005 - type: WindowTintedDirectional - components: - - pos: 30.5,8.5 - parent: 8364 - type: Transform -- uid: 26006 - type: WindowTintedDirectional - components: - - pos: 34.5,10.5 - parent: 8364 - type: Transform -- uid: 26007 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 34.5,9.5 - parent: 8364 - type: Transform -- uid: 26008 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 34.5,8.5 - parent: 8364 - type: Transform -- uid: 26009 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 35.5,8.5 - parent: 8364 - type: Transform -- uid: 26010 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 37.5,8.5 - parent: 8364 - type: Transform -- uid: 26011 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 35.5,9.5 - parent: 8364 - type: Transform -- uid: 26012 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 35.5,10.5 - parent: 8364 - type: Transform -- uid: 26013 - type: WindowTintedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 33.5,13.5 - parent: 8364 - type: Transform -- uid: 26014 - type: WindowTintedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 33.5,14.5 - parent: 8364 - type: Transform -- uid: 26015 - type: WindowTintedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 33.5,15.5 - parent: 8364 - type: Transform -- uid: 26016 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 31.5,15.5 - parent: 8364 - type: Transform -- uid: 26017 - type: WindowTintedDirectional - components: - - pos: 31.5,15.5 - parent: 8364 - type: Transform -- uid: 26018 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 31.5,15.5 - parent: 8364 - type: Transform -- uid: 26019 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 33.5,15.5 - parent: 8364 - type: Transform -- uid: 26020 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 34.5,15.5 - parent: 8364 - type: Transform -- uid: 26021 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 35.5,15.5 - parent: 8364 - type: Transform -- uid: 26022 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 37.5,15.5 - parent: 8364 - type: Transform -- uid: 26023 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 35.5,15.5 - parent: 8364 - type: Transform -- uid: 26024 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 35.5,14.5 - parent: 8364 - type: Transform -- uid: 26025 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: 37.5,12.5 - parent: 8364 - type: Transform -- uid: 26026 - type: WindowTintedDirectional - components: - - pos: 37.5,11.5 - parent: 8364 - type: Transform -- uid: 26027 - type: GlowstickRed - components: - - pos: 29.436188,12.492701 - parent: 8364 - type: Transform -- uid: 26028 - type: GlowstickRed - components: - - pos: 29.618818,12.327314 - parent: 8364 - type: Transform -- uid: 26029 - type: GlowstickBlue - components: - - pos: 29.319035,11.539576 - parent: 8364 - type: Transform -- uid: 26030 - type: GlowstickBlue - components: - - pos: 29.506535,11.430201 - parent: 8364 - type: Transform -- uid: 26031 - type: FirelockGlass - components: - - pos: 45.5,8.5 - parent: 8364 - type: Transform -- uid: 26032 - type: FirelockGlass - components: - - pos: 71.5,4.5 - parent: 8364 - type: Transform -- uid: 26033 - type: FirelockGlass - components: - - pos: 70.5,4.5 - parent: 8364 - type: Transform -- uid: 26034 - type: FirelockGlass - components: - - pos: 69.5,4.5 - parent: 8364 - type: Transform -- uid: 26035 - type: FirelockGlass - components: - - pos: 77.5,-4.5 - parent: 8364 - type: Transform -- uid: 26036 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-9.5 - parent: 8364 - type: Transform -- uid: 26037 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-8.5 - parent: 8364 - type: Transform -- uid: 26038 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-9.5 - parent: 8364 - type: Transform -- uid: 26039 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-8.5 - parent: 8364 - type: Transform -- uid: 26040 - type: TableGlass - components: - - pos: 37.5,-36.5 - parent: 8364 - type: Transform -- uid: 26041 - type: GasAnalyzer - components: - - pos: 37.528275,-36.43644 - parent: 8364 - type: Transform -- uid: 26042 - type: TableGlass - components: - - pos: 29.5,-32.5 - parent: 8364 - type: Transform -- uid: 26043 - type: TableGlass - components: - - pos: 30.5,-32.5 - parent: 8364 - type: Transform -- uid: 26044 - type: TableGlass - components: - - pos: 31.5,-32.5 - parent: 8364 - type: Transform -- uid: 26045 - type: BoxSyringe - components: - - pos: 29.377853,-32.327065 - parent: 8364 - type: Transform -- uid: 26046 - type: FirelockGlass - components: - - pos: 48.5,-43.5 - parent: 8364 - type: Transform -- uid: 26047 - type: FirelockGlass - components: - - pos: 49.5,-43.5 - parent: 8364 - type: Transform -- uid: 26048 - type: FirelockGlass - components: - - pos: 82.5,-54.5 - parent: 8364 - type: Transform -- uid: 26049 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: -31.5,-43.5 - parent: 8364 - type: Transform -- uid: 26050 - type: FirelockGlass - components: - - pos: -23.5,-47.5 - parent: 8364 - type: Transform -- uid: 26051 - type: FirelockGlass - components: - - pos: -3.5,-49.5 - parent: 8364 - type: Transform -- uid: 26052 - type: FirelockGlass - components: - - pos: 56.5,5.5 - parent: 8364 - type: Transform -- uid: 26053 - type: FirelockGlass - components: - - pos: 64.5,9.5 - parent: 8364 - type: Transform -- uid: 26054 - type: BoxPillCanister - components: - - pos: 29.91919,-32.34986 - parent: 8364 - type: Transform -- uid: 26055 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 40.5,-25.5 - parent: 8364 - type: Transform -- uid: 26056 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-23.5 - parent: 8364 - type: Transform -- uid: 26057 - type: FaxMachineBase - components: - - pos: 33.5,-20.5 - parent: 8364 - type: Transform - - name: Medical - type: FaxMachine -- uid: 26058 - type: TableGlass - components: - - pos: 45.5,-45.5 - parent: 8364 - type: Transform -- uid: 26059 - type: DogBed - components: - - pos: 44.5,-47.5 - parent: 8364 - type: Transform -- uid: 26060 - type: SpawnMobCatRuntime - components: - - pos: 44.5,-47.5 - parent: 8364 - type: Transform -- uid: 26061 - type: ComputerCrewMonitoring - components: - - pos: 43.5,-44.5 - parent: 8364 - type: Transform -- uid: 26062 - type: filingCabinet - components: - - pos: 44.5,-44.5 - parent: 8364 - type: Transform -- uid: 26063 - type: PottedPlantBioluminscent - components: - - pos: 42.5,-36.5 - parent: 8364 - type: Transform -- uid: 26064 - type: FirelockGlass - components: - - pos: -7.5,-76.5 - parent: 8364 - type: Transform -- uid: 26065 - type: FirelockGlass - components: - - pos: 6.5,-77.5 - parent: 8364 - type: Transform -- uid: 26066 - type: FirelockGlass - components: - - pos: 6.5,-76.5 - parent: 8364 - type: Transform -- uid: 26067 - type: FirelockGlass - components: - - pos: 6.5,-67.5 - parent: 8364 - type: Transform -- uid: 26068 - type: FirelockGlass - components: - - pos: 6.5,-66.5 - parent: 8364 - type: Transform -- uid: 26069 - type: FirelockGlass - components: - - pos: 6.5,-65.5 - parent: 8364 - type: Transform -- uid: 26070 - type: FirelockEdge - components: - - pos: 8.5,-69.5 - parent: 8364 - type: Transform -- uid: 26071 - type: FirelockEdge - components: - - pos: 9.5,-69.5 - parent: 8364 - type: Transform -- uid: 26072 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-26.5 - parent: 8364 - type: Transform -- uid: 26073 - type: SmokingPipeFilledTobacco - components: - - pos: 6.4571357,-27.269932 - parent: 8364 - type: Transform -- uid: 26074 - type: SmokingPipeFilledTobacco - components: - - pos: 6.6133857,-27.457432 - parent: 8364 - type: Transform -- uid: 26075 - type: BookEscalationSecurity - components: - - pos: 10.473087,-27.290308 - parent: 8364 - type: Transform -- uid: 26076 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 6.5,-23.5 - parent: 8364 - type: Transform -- uid: 26077 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 7.5,-23.5 - parent: 8364 - type: Transform -- uid: 26078 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 8.5,-23.5 - parent: 8364 - type: Transform -- uid: 26079 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-23.5 - parent: 8364 - type: Transform -- uid: 26080 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-23.5 - parent: 8364 - type: Transform -- uid: 26081 - type: CableHV - components: - - pos: 9.5,-76.5 - parent: 8364 - type: Transform -- uid: 26082 - type: CableHV - components: - - pos: 8.5,-76.5 - parent: 8364 - type: Transform -- uid: 26083 - type: PosterLegitNanotrasenLogo - components: - - pos: 5.5,-23.5 - parent: 8364 - type: Transform -- uid: 26084 - type: CableHV - components: - - pos: 10.5,-76.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26085 - type: CableHV - components: - - pos: 11.5,-76.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26086 - type: CableHV - components: - - pos: 12.5,-76.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26087 - type: CableHV - components: - - pos: 13.5,-76.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26088 - type: CableHV - components: - - pos: 13.5,-77.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26089 - type: CableMV - components: - - pos: -9.5,-70.5 - parent: 8364 - type: Transform -- uid: 26090 - type: CableMV - components: - - pos: -9.5,-71.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26091 - type: CableMV - components: - - pos: -9.5,-72.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26092 - type: CableMV - components: - - pos: -9.5,-73.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26093 - type: CableMV - components: - - pos: -9.5,-74.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26094 - type: CableMV - components: - - pos: -9.5,-75.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26095 - type: CableMV - components: - - pos: -9.5,-76.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26096 - type: CableMV - components: - - pos: -10.5,-76.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26097 - type: CableMV - components: - - pos: -11.5,-76.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26098 - type: CableMV - components: - - pos: -12.5,-76.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26099 - type: CableMV - components: - - pos: -13.5,-76.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26100 - type: CableMV - components: - - pos: -14.5,-76.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26101 - type: CableMV - components: - - pos: -14.5,-77.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26102 - type: CableMV - components: - - pos: -14.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26103 - type: CableMV - components: - - pos: -13.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26104 - type: CableMV - components: - - pos: -12.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26105 - type: CableMV - components: - - pos: -11.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26106 - type: CableMV - components: - - pos: -10.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26107 - type: CableMV - components: - - pos: -10.5,-79.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26108 - type: CableMV - components: - - pos: -9.5,-79.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26109 - type: FirelockGlass - components: - - pos: -17.5,-34.5 - parent: 8364 - type: Transform -- uid: 26110 - type: FirelockGlass - components: - - pos: -18.5,-34.5 - parent: 8364 - type: Transform -- uid: 26111 - type: FirelockGlass - components: - - pos: 7.5,29.5 - parent: 8364 - type: Transform -- uid: 26112 - type: FirelockGlass - components: - - pos: 7.5,21.5 - parent: 8364 - type: Transform -- uid: 26113 - type: FirelockGlass - components: - - pos: 7.5,20.5 - parent: 8364 - type: Transform -- uid: 26114 - type: FirelockGlass - components: - - pos: 7.5,19.5 - parent: 8364 - type: Transform -- uid: 26115 - type: FirelockGlass - components: - - pos: -15.5,20.5 - parent: 8364 - type: Transform -- uid: 26116 - type: WallSolid - components: - - pos: 17.5,-5.5 - parent: 8364 - type: Transform -- uid: 26117 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: 26.5,-1.5 - parent: 8364 - type: Transform -- uid: 26118 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: 26.5,-0.5 - parent: 8364 - type: Transform -- uid: 26119 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: 27.5,-1.5 - parent: 8364 - type: Transform -- uid: 26120 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: 26.5,-2.5 - parent: 8364 - type: Transform -- uid: 26121 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: 27.5,-2.5 - parent: 8364 - type: Transform -- uid: 26122 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: 27.5,-0.5 - parent: 8364 - type: Transform -- uid: 26123 - type: ChairWood - components: - - pos: 18.5,-5.5 - parent: 8364 - type: Transform -- uid: 26124 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-6.5 - parent: 8364 - type: Transform -- uid: 26125 - type: CigPackRed - components: - - pos: 31.422329,-23.460308 - parent: 8364 - type: Transform -- uid: 26126 - type: CheapLighter - components: - - pos: 31.641079,-23.335308 - parent: 8364 - type: Transform -- uid: 26127 - type: FirelockGlass - components: - - pos: -38.5,9.5 - parent: 8364 - type: Transform -- uid: 26128 - type: FirelockGlass - components: - - pos: -26.5,10.5 - parent: 8364 - type: Transform -- uid: 26129 - type: FirelockGlass - components: - - pos: -48.5,6.5 - parent: 8364 - type: Transform -- uid: 26130 - type: FirelockGlass - components: - - pos: -49.5,6.5 - parent: 8364 - type: Transform -- uid: 26131 - type: FirelockGlass - components: - - pos: -63.5,-6.5 - parent: 8364 - type: Transform -- uid: 26132 - type: FirelockGlass - components: - - pos: -64.5,-6.5 - parent: 8364 - type: Transform -- uid: 26133 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 27.5,2.5 - parent: 8364 - type: Transform -- uid: 26134 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 24.5,4.5 - parent: 8364 - type: Transform -- uid: 26135 - type: RandomSpawner - components: - - pos: 24.5,5.5 - parent: 8364 - type: Transform -- uid: 26136 - type: CableApcExtension - components: - - pos: -15.5,51.5 - parent: 8364 - type: Transform -- uid: 26137 - type: CableApcExtension - components: - - pos: -12.5,49.5 - parent: 8364 - type: Transform -- uid: 26138 - type: CableApcExtension - components: - - pos: -13.5,49.5 - parent: 8364 - type: Transform -- uid: 26139 - type: CableApcExtension - components: - - pos: -14.5,49.5 - parent: 8364 - type: Transform -- uid: 26140 - type: CableApcExtension - components: - - pos: -15.5,49.5 - parent: 8364 - type: Transform -- uid: 26141 - type: CableApcExtension - components: - - pos: -6.5,50.5 - parent: 8364 - type: Transform -- uid: 26142 - type: CableApcExtension - components: - - pos: -5.5,50.5 - parent: 8364 - type: Transform -- uid: 26143 - type: CableApcExtension - components: - - pos: 0.5,52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26144 - type: CableApcExtension - components: - - pos: 0.5,51.5 - parent: 8364 - type: Transform -- uid: 26145 - type: CableApcExtension - components: - - pos: 0.5,50.5 - parent: 8364 - type: Transform -- uid: 26146 - type: CableApcExtension - components: - - pos: 0.5,49.5 - parent: 8364 - type: Transform -- uid: 26147 - type: CableApcExtension - components: - - pos: 0.5,48.5 - parent: 8364 - type: Transform -- uid: 26148 - type: CableApcExtension - components: - - pos: 0.5,47.5 - parent: 8364 - type: Transform -- uid: 26149 - type: CableApcExtension - components: - - pos: -0.5,50.5 - parent: 8364 - type: Transform -- uid: 26150 - type: CableApcExtension - components: - - pos: -1.5,50.5 - parent: 8364 - type: Transform -- uid: 26151 - type: CableApcExtension - components: - - pos: -1.5,49.5 - parent: 8364 - type: Transform -- uid: 26152 - type: CableApcExtension - components: - - pos: -1.5,48.5 - parent: 8364 - type: Transform -- uid: 26153 - type: CableApcExtension - components: - - pos: -1.5,47.5 - parent: 8364 - type: Transform -- uid: 26154 - type: CableApcExtension - components: - - pos: 1.5,50.5 - parent: 8364 - type: Transform -- uid: 26155 - type: CableApcExtension - components: - - pos: 2.5,50.5 - parent: 8364 - type: Transform -- uid: 26156 - type: CableApcExtension - components: - - pos: 3.5,50.5 - parent: 8364 - type: Transform -- uid: 26157 - type: CableApcExtension - components: - - pos: 3.5,49.5 - parent: 8364 - type: Transform -- uid: 26158 - type: CableApcExtension - components: - - pos: 3.5,48.5 - parent: 8364 - type: Transform -- uid: 26159 - type: CableApcExtension - components: - - pos: 3.5,47.5 - parent: 8364 - type: Transform -- uid: 26160 - type: CableMV - components: - - pos: -20.5,51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26161 - type: CableMV - components: - - pos: -21.5,51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26162 - type: CableMV - components: - - pos: -22.5,51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26163 - type: CableMV - components: - - pos: -23.5,51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26164 - type: CableMV - components: - - pos: -23.5,50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26165 - type: CableMV - components: - - pos: -23.5,49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26166 - type: CableMV - components: - - pos: -23.5,48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26167 - type: CableMV - components: - - pos: -23.5,47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26168 - type: CableMV - components: - - pos: -23.5,46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26169 - type: CableMV - components: - - pos: -23.5,45.5 - parent: 8364 - type: Transform -- uid: 26170 - type: CableMV - components: - - pos: -23.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26171 - type: CableMV - components: - - pos: -22.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26172 - type: CableMV - components: - - pos: -21.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26173 - type: CableMV - components: - - pos: -20.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26174 - type: CableMV - components: - - pos: -19.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26175 - type: CableMV - components: - - pos: -19.5,45.5 - parent: 8364 - type: Transform -- uid: 26176 - type: CableMV - components: - - pos: -19.5,46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26177 - type: CableMV - components: - - pos: -18.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26178 - type: CableMV - components: - - pos: -17.5,44.5 - parent: 8364 - type: Transform -- uid: 26179 - type: CableMV - components: - - pos: -16.5,44.5 - parent: 8364 - type: Transform -- uid: 26180 - type: CableMV - components: - - pos: -15.5,44.5 - parent: 8364 - type: Transform -- uid: 26181 - type: CableMV - components: - - pos: -14.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26182 - type: CableMV - components: - - pos: -13.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26183 - type: CableMV - components: - - pos: -12.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26184 - type: CableMV - components: - - pos: -11.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26185 - type: CableMV - components: - - pos: -10.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26186 - type: CableMV - components: - - pos: -10.5,45.5 - parent: 8364 - type: Transform -- uid: 26187 - type: CableMV - components: - - pos: -10.5,46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26188 - type: CableMV - components: - - pos: -9.5,45.5 - parent: 8364 - type: Transform -- uid: 26189 - type: CableMV - components: - - pos: -8.5,45.5 - parent: 8364 - type: Transform -- uid: 26190 - type: CableMV - components: - - pos: -7.5,45.5 - parent: 8364 - type: Transform -- uid: 26191 - type: CableMV - components: - - pos: -7.5,46.5 - parent: 8364 - type: Transform -- uid: 26192 - type: CableMV - components: - - pos: -7.5,47.5 - parent: 8364 - type: Transform -- uid: 26193 - type: CableMV - components: - - pos: -7.5,48.5 - parent: 8364 - type: Transform -- uid: 26194 - type: CableMV - components: - - pos: -7.5,49.5 - parent: 8364 - type: Transform -- uid: 26195 - type: CableMV - components: - - pos: -7.5,50.5 - parent: 8364 - type: Transform -- uid: 26196 - type: CableMV - components: - - pos: -7.5,51.5 - parent: 8364 - type: Transform -- uid: 26197 - type: CableMV - components: - - pos: -7.5,52.5 - parent: 8364 - type: Transform -- uid: 26198 - type: CableMV - components: - - pos: -7.5,53.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26199 - type: CableMV - components: - - pos: -6.5,50.5 - parent: 8364 - type: Transform -- uid: 26200 - type: CableMV - components: - - pos: -5.5,50.5 - parent: 8364 - type: Transform -- uid: 26201 - type: CableMV - components: - - pos: -4.5,50.5 - parent: 8364 - type: Transform -- uid: 26202 - type: CableMV - components: - - pos: -3.5,50.5 - parent: 8364 - type: Transform -- uid: 26203 - type: CableMV - components: - - pos: -2.5,50.5 - parent: 8364 - type: Transform -- uid: 26204 - type: CableMV - components: - - pos: -1.5,50.5 - parent: 8364 - type: Transform -- uid: 26205 - type: CableMV - components: - - pos: -0.5,50.5 - parent: 8364 - type: Transform -- uid: 26206 - type: CableMV - components: - - pos: 0.5,50.5 - parent: 8364 - type: Transform -- uid: 26207 - type: CableMV - components: - - pos: 0.5,52.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26208 - type: CableMV - components: - - pos: 0.5,51.5 - parent: 8364 - type: Transform -- uid: 26209 - type: CableMV - components: - - pos: 0.5,49.5 - parent: 8364 - type: Transform -- uid: 26210 - type: CableMV - components: - - pos: 0.5,48.5 - parent: 8364 - type: Transform -- uid: 26211 - type: CableMV - components: - - pos: 0.5,47.5 - parent: 8364 - type: Transform -- uid: 26212 - type: CableMV - components: - - pos: 0.5,46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26213 - type: CableMV - components: - - pos: 1.5,46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26214 - type: CableMV - components: - - pos: 2.5,46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26215 - type: CableMV - components: - - pos: 3.5,46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26216 - type: CableMV - components: - - pos: 4.5,46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26217 - type: CableMV - components: - - pos: -0.5,46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26218 - type: CableMV - components: - - pos: -1.5,46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26219 - type: CableMV - components: - - pos: -2.5,46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26220 - type: CableMV - components: - - pos: -7.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26221 - type: CableMV - components: - - pos: -6.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26222 - type: CableMV - components: - - pos: -5.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26223 - type: CableMV - components: - - pos: -4.5,44.5 - parent: 8364 - type: Transform -- uid: 26224 - type: CableMV - components: - - pos: -3.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26225 - type: CableMV - components: - - pos: -24.5,44.5 - parent: 8364 - type: Transform -- uid: 26226 - type: CableMV - components: - - pos: -25.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26227 - type: CableMV - components: - - pos: -25.5,45.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26228 - type: CableMV - components: - - pos: -25.5,43.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26229 - type: CableMV - components: - - pos: -21.5,43.5 - parent: 8364 - type: Transform -- uid: 26230 - type: CableMV - components: - - pos: -21.5,42.5 - parent: 8364 - type: Transform -- uid: 26231 - type: CableMV - components: - - pos: -21.5,41.5 - parent: 8364 - type: Transform -- uid: 26232 - type: CableMV - components: - - pos: -21.5,40.5 - parent: 8364 - type: Transform -- uid: 26233 - type: CableMV - components: - - pos: -21.5,39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26234 - type: CableMV - components: - - pos: -18.5,39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26235 - type: CableMV - components: - - pos: -18.5,40.5 - parent: 8364 - type: Transform -- uid: 26236 - type: CableMV - components: - - pos: -18.5,41.5 - parent: 8364 - type: Transform -- uid: 26237 - type: CableMV - components: - - pos: -18.5,42.5 - parent: 8364 - type: Transform -- uid: 26238 - type: CableMV - components: - - pos: -18.5,43.5 - parent: 8364 - type: Transform -- uid: 26239 - type: CableMV - components: - - pos: -14.5,43.5 - parent: 8364 - type: Transform -- uid: 26240 - type: CableMV - components: - - pos: -14.5,42.5 - parent: 8364 - type: Transform -- uid: 26241 - type: CableMV - components: - - pos: -14.5,41.5 - parent: 8364 - type: Transform -- uid: 26242 - type: CableMV - components: - - pos: -14.5,40.5 - parent: 8364 - type: Transform -- uid: 26243 - type: CableMV - components: - - pos: -14.5,39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26244 - type: CableMV - components: - - pos: -15.5,39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26245 - type: CableMV - components: - - pos: -13.5,39.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26246 - type: CableMV - components: - - pos: -8.5,48.5 - parent: 8364 - type: Transform -- uid: 26247 - type: CableMV - components: - - pos: -9.5,48.5 - parent: 8364 - type: Transform -- uid: 26248 - type: CableMV - components: - - pos: -10.5,48.5 - parent: 8364 - type: Transform -- uid: 26249 - type: CableMV - components: - - pos: -11.5,48.5 - parent: 8364 - type: Transform -- uid: 26250 - type: CableMV - components: - - pos: -11.5,49.5 - parent: 8364 - type: Transform -- uid: 26251 - type: CableMV - components: - - pos: -11.5,50.5 - parent: 8364 - type: Transform -- uid: 26252 - type: CableMV - components: - - pos: -11.5,51.5 - parent: 8364 - type: Transform -- uid: 26253 - type: CableMV - components: - - pos: -11.5,52.5 - parent: 8364 - type: Transform -- uid: 26254 - type: CableMV - components: - - pos: -11.5,53.5 - parent: 8364 - type: Transform -- uid: 26255 - type: CableMV - components: - - pos: -11.5,54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26256 - type: CableMV - components: - - pos: -12.5,54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26257 - type: CableMV - components: - - pos: -12.5,53.5 - parent: 8364 - type: Transform -- uid: 26258 - type: CableMV - components: - - pos: -13.5,53.5 - parent: 8364 - type: Transform -- uid: 26259 - type: CableMV - components: - - pos: -14.5,53.5 - parent: 8364 - type: Transform -- uid: 26260 - type: CableMV - components: - - pos: -14.5,54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26261 - type: CableMV - components: - - pos: -15.5,54.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26262 - type: CableMV - components: - - pos: -20.5,50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26263 - type: CableMV - components: - - pos: -19.5,50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26264 - type: CableMV - components: - - pos: -18.5,50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26265 - type: CableMV - components: - - pos: -17.5,50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26266 - type: CableMV - components: - - pos: -16.5,50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26267 - type: CableMV - components: - - pos: -15.5,50.5 - parent: 8364 - type: Transform -- uid: 26268 - type: CableMV - components: - - pos: -15.5,49.5 - parent: 8364 - type: Transform -- uid: 26269 - type: CableMV - components: - - pos: -14.5,49.5 - parent: 8364 - type: Transform -- uid: 26270 - type: CableMV - components: - - pos: -13.5,49.5 - parent: 8364 - type: Transform -- uid: 26271 - type: CableMV - components: - - pos: -12.5,49.5 - parent: 8364 - type: Transform -- uid: 26272 - type: CableMV - components: - - pos: -4.5,35.5 - parent: 8364 - type: Transform -- uid: 26273 - type: CableMV - components: - - pos: -5.5,35.5 - parent: 8364 - type: Transform -- uid: 26274 - type: CableMV - components: - - pos: -6.5,35.5 - parent: 8364 - type: Transform -- uid: 26275 - type: CableMV - components: - - pos: -5.5,36.5 - parent: 8364 - type: Transform -- uid: 26276 - type: CableMV - components: - - pos: -5.5,37.5 - parent: 8364 - type: Transform -- uid: 26277 - type: CableMV - components: - - pos: -6.5,37.5 - parent: 8364 - type: Transform -- uid: 26278 - type: CableMV - components: - - pos: -6.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26279 - type: CableMV - components: - - pos: -4.5,37.5 - parent: 8364 - type: Transform -- uid: 26280 - type: CableMV - components: - - pos: -4.5,38.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26281 - type: CableMV - components: - - pos: -7.5,35.5 - parent: 8364 - type: Transform -- uid: 26282 - type: CableMV - components: - - pos: -8.5,35.5 - parent: 8364 - type: Transform -- uid: 26283 - type: CableMV - components: - - pos: -9.5,35.5 - parent: 8364 - type: Transform -- uid: 26284 - type: CableMV - components: - - pos: -10.5,35.5 - parent: 8364 - type: Transform -- uid: 26285 - type: CableMV - components: - - pos: -11.5,35.5 - parent: 8364 - type: Transform -- uid: 26286 - type: CableMV - components: - - pos: -12.5,35.5 - parent: 8364 - type: Transform -- uid: 26287 - type: CableMV - components: - - pos: -13.5,35.5 - parent: 8364 - type: Transform -- uid: 26288 - type: CableMV - components: - - pos: -14.5,35.5 - parent: 8364 - type: Transform -- uid: 26289 - type: CableMV - components: - - pos: -15.5,35.5 - parent: 8364 - type: Transform -- uid: 26290 - type: CableMV - components: - - pos: -16.5,35.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26291 - type: CableMV - components: - - pos: -16.5,34.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26292 - type: CableMV - components: - - pos: -16.5,36.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26293 - type: CableMV - components: - - pos: -14.5,36.5 - parent: 8364 - type: Transform -- uid: 26294 - type: CableMV - components: - - pos: -14.5,37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26295 - type: CableMV - components: - - pos: -15.5,37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26296 - type: CableMV - components: - - pos: -13.5,37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26297 - type: CableMV - components: - - pos: -9.5,36.5 - parent: 8364 - type: Transform -- uid: 26298 - type: CableMV - components: - - pos: -9.5,37.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26299 - type: CableHV - components: - - pos: -5.5,27.5 - parent: 8364 - type: Transform -- uid: 26300 - type: CableHV - components: - - pos: -5.5,28.5 - parent: 8364 - type: Transform -- uid: 26301 - type: CableHV - components: - - pos: -5.5,29.5 - parent: 8364 - type: Transform -- uid: 26302 - type: CableHV - components: - - pos: -5.5,30.5 - parent: 8364 - type: Transform -- uid: 26303 - type: CableHV - components: - - pos: -5.5,31.5 - parent: 8364 - type: Transform -- uid: 26304 - type: CableHV - components: - - pos: -5.5,32.5 - parent: 8364 - type: Transform -- uid: 26305 - type: CableHV - components: - - pos: -5.5,33.5 - parent: 8364 - type: Transform -- uid: 26306 - type: CableHV - components: - - pos: -5.5,34.5 - parent: 8364 - type: Transform -- uid: 26307 - type: CableHV - components: - - pos: -5.5,35.5 - parent: 8364 - type: Transform -- uid: 26308 - type: CableHV - components: - - pos: -6.5,35.5 - parent: 8364 - type: Transform -- uid: 26309 - type: CableHV - components: - - pos: -7.5,35.5 - parent: 8364 - type: Transform -- uid: 26310 - type: CableHV - components: - - pos: -8.5,35.5 - parent: 8364 - type: Transform -- uid: 26311 - type: CableHV - components: - - pos: -9.5,35.5 - parent: 8364 - type: Transform -- uid: 26312 - type: CableHV - components: - - pos: -10.5,35.5 - parent: 8364 - type: Transform -- uid: 26313 - type: CableHV - components: - - pos: -10.5,36.5 - parent: 8364 - type: Transform -- uid: 26314 - type: CableHV - components: - - pos: -10.5,37.5 - parent: 8364 - type: Transform -- uid: 26315 - type: CableHV - components: - - pos: -10.5,38.5 - parent: 8364 - type: Transform -- uid: 26316 - type: CableHV - components: - - pos: -10.5,39.5 - parent: 8364 - type: Transform -- uid: 26317 - type: CableHV - components: - - pos: -10.5,40.5 - parent: 8364 - type: Transform -- uid: 26318 - type: CableHV - components: - - pos: -10.5,41.5 - parent: 8364 - type: Transform -- uid: 26319 - type: CableHV - components: - - pos: -10.5,42.5 - parent: 8364 - type: Transform -- uid: 26320 - type: CableHV - components: - - pos: -10.5,43.5 - parent: 8364 - type: Transform -- uid: 26321 - type: CableHV - components: - - pos: -10.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26322 - type: CableHV - components: - - pos: -11.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26323 - type: CableHV - components: - - pos: -12.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26324 - type: CableHV - components: - - pos: -13.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26325 - type: CableHV - components: - - pos: -14.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26326 - type: CableHV - components: - - pos: -15.5,44.5 - parent: 8364 - type: Transform -- uid: 26327 - type: CableHV - components: - - pos: -16.5,44.5 - parent: 8364 - type: Transform -- uid: 26328 - type: CableHV - components: - - pos: -17.5,44.5 - parent: 8364 - type: Transform -- uid: 26329 - type: CableHV - components: - - pos: -18.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26330 - type: CableHV - components: - - pos: -19.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26331 - type: CableHV - components: - - pos: -20.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26332 - type: CableHV - components: - - pos: -21.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26333 - type: CableHV - components: - - pos: -22.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26334 - type: CableHV - components: - - pos: -23.5,44.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26335 - type: CableHV - components: - - pos: -23.5,45.5 - parent: 8364 - type: Transform -- uid: 26336 - type: CableHV - components: - - pos: -23.5,46.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26337 - type: CableHV - components: - - pos: -23.5,47.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26338 - type: CableHV - components: - - pos: -23.5,48.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26339 - type: CableHV - components: - - pos: -23.5,49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26340 - type: CableHV - components: - - pos: -23.5,50.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26341 - type: CableHV - components: - - pos: -23.5,51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26342 - type: CableHV - components: - - pos: -22.5,51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26343 - type: CableHV - components: - - pos: -21.5,51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26344 - type: CableHV - components: - - pos: -20.5,51.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26345 - type: WardrobePrisonFilled - components: - - pos: -17.5,40.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26346 - type: WardrobePrisonFilled - components: - - pos: -20.5,40.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26347 - type: WardrobePrisonFilled - components: - - pos: -21.5,48.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26348 - type: WardrobePrisonFilled - components: - - pos: -18.5,48.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26349 - type: Bed - components: - - pos: -21.5,40.5 - parent: 8364 - type: Transform -- uid: 26350 - type: Bed - components: - - pos: -18.5,40.5 - parent: 8364 - type: Transform -- uid: 26351 - type: Bed - components: - - pos: -17.5,48.5 - parent: 8364 - type: Transform -- uid: 26352 - type: Bed - components: - - pos: -20.5,48.5 - parent: 8364 - type: Transform -- uid: 26353 - type: BedsheetOrange - components: - - pos: -20.5,48.5 - parent: 8364 - type: Transform -- uid: 26354 - type: BedsheetSyndie - components: - - pos: -17.5,48.5 - parent: 8364 - type: Transform -- uid: 26355 - type: BedsheetOrange - components: - - pos: -18.5,40.5 - parent: 8364 - type: Transform -- uid: 26356 - type: BedsheetOrange - components: - - pos: -21.5,40.5 - parent: 8364 - type: Transform -- uid: 26357 - type: ToiletDirtyWater - components: - - rot: -1.5707963267948966 rad - pos: -23.5,40.5 - parent: 8364 - type: Transform -- uid: 26358 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -23.5,41.5 - parent: 8364 - type: Transform -- uid: 26359 - type: Mirror - components: - - rot: 1.5707963267948966 rad - pos: -24.5,41.5 - parent: 8364 - type: Transform -- uid: 26360 - type: ChessBoard - components: - - pos: -14.520999,41.38247 - parent: 8364 - type: Transform -- uid: 26361 - type: ParchisBoard - components: - - pos: -14.380374,40.648094 - parent: 8364 - type: Transform -- uid: 26362 - type: d6Dice - components: - - pos: -14.755374,40.835594 - parent: 8364 - type: Transform -- uid: 26363 - type: d6Dice - components: - - pos: -14.567874,40.56997 - parent: 8364 - type: Transform -- uid: 26364 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,41.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26365 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,41.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26366 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,47.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26367 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,47.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26368 - type: Poweredlight - components: - - pos: -19.5,45.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26369 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,50.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26370 - type: Poweredlight - components: - - pos: -14.5,45.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26371 - type: Poweredlight - components: - - pos: -5.5,45.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26372 - type: Poweredlight - components: - - pos: -9.5,41.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26373 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,49.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26374 - type: Poweredlight - components: - - pos: -1.5,51.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26375 - type: Poweredlight - components: - - pos: 3.5,51.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26376 - type: Poweredlight - components: - - pos: -8.5,53.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26377 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -21.5,47.5 - parent: 8364 - type: Transform -- uid: 26378 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -18.5,47.5 - parent: 8364 - type: Transform -- uid: 26379 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -17.5,41.5 - parent: 8364 - type: Transform -- uid: 26380 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -20.5,41.5 - parent: 8364 - type: Transform -- uid: 26381 - type: Table - components: - - pos: -9.5,34.5 - parent: 8364 - type: Transform -- uid: 26382 - type: Table - components: - - pos: -10.5,34.5 - parent: 8364 - type: Transform -- uid: 26383 - type: Table - components: - - pos: -11.5,34.5 - parent: 8364 - type: Transform -- uid: 26384 - type: LockerEvidence - components: - - pos: -7.5,34.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26385 - type: LockerEvidence - components: - - pos: -8.5,34.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26386 - type: PottedPlant16 - components: - - pos: -12.5,34.5 - parent: 8364 - type: Transform -- uid: 26387 - type: Rack - components: - - pos: -15.5,34.5 - parent: 8364 - type: Transform -- uid: 26388 - type: Handcuffs - components: - - pos: -15.384127,34.584564 - parent: 8364 - type: Transform -- uid: 26389 - type: Poweredlight - components: - - pos: -12.5,36.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26390 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,36.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26391 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -10.5,45.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Hall - type: SurveillanceCamera -- uid: 26392 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -4.5,48.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Recreation - type: SurveillanceCamera -- uid: 26393 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 1.5,51.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Botany - type: SurveillanceCamera -- uid: 26394 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -11.5,51.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Library - type: SurveillanceCamera -- uid: 26395 - type: SurveillanceCameraSecurity - components: - - pos: -19.5,43.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Cells - type: SurveillanceCamera -- uid: 26396 - type: Chair - components: - - pos: -7.5,37.5 - parent: 8364 - type: Transform -- uid: 26397 - type: AirSensor - components: - - pos: -5.5,51.5 - parent: 8364 - type: Transform -- uid: 26398 - type: AirSensor - components: - - pos: 0.5,50.5 - parent: 8364 - type: Transform -- uid: 26399 - type: FireAlarm - components: - - pos: -0.5,52.5 - parent: 8364 - type: Transform - - devices: - - 9185 - - 26398 - - 7282 - - 25677 - - 25678 - type: DeviceList -- uid: 26400 - type: FireAlarm - components: - - pos: -6.5,53.5 - parent: 8364 - type: Transform - - devices: - - 7301 - - 8910 - - 26397 - - 25677 - - 25678 - type: DeviceList -- uid: 26401 - type: Catwalk - components: - - pos: -23.5,47.5 - parent: 8364 - type: Transform -- uid: 26402 - type: Catwalk - components: - - pos: -23.5,48.5 - parent: 8364 - type: Transform -- uid: 26403 - type: Catwalk - components: - - pos: -23.5,49.5 - parent: 8364 - type: Transform -- uid: 26404 - type: Catwalk - components: - - pos: -23.5,50.5 - parent: 8364 - type: Transform -- uid: 26405 - type: Table - components: - - pos: 1.5,51.5 - parent: 8364 - type: Transform -- uid: 26406 - type: Table - components: - - pos: 0.5,51.5 - parent: 8364 - type: Transform -- uid: 26407 - type: Table - components: - - pos: -0.5,51.5 - parent: 8364 - type: Transform -- uid: 26408 - type: Table - components: - - pos: 2.5,51.5 - parent: 8364 - type: Transform -- uid: 26409 - type: Carpet - components: - - pos: -14.5,52.5 - parent: 8364 - type: Transform -- uid: 26410 - type: Carpet - components: - - pos: -14.5,51.5 - parent: 8364 - type: Transform -- uid: 26411 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,42.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26412 - type: Carpet - components: - - pos: -13.5,51.5 - parent: 8364 - type: Transform -- uid: 26413 - type: Carpet - components: - - pos: -13.5,52.5 - parent: 8364 - type: Transform -- uid: 26414 - type: Fireplace - components: - - pos: -13.5,53.5 - parent: 8364 - type: Transform -- uid: 26415 - type: Carpet - components: - - pos: -12.5,51.5 - parent: 8364 - type: Transform -- uid: 26416 - type: Carpet - components: - - pos: -12.5,52.5 - parent: 8364 - type: Transform -- uid: 26417 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -8.5,47.5 - parent: 8364 - type: Transform -- uid: 26418 - type: Carpet - components: - - pos: -11.5,51.5 - parent: 8364 - type: Transform -- uid: 26419 - type: Carpet - components: - - pos: -11.5,52.5 - parent: 8364 - type: Transform -- uid: 26420 - type: BlockGameArcade - components: - - rot: 1.5707963267948966 rad - pos: -9.5,47.5 - parent: 8364 - type: Transform -- uid: 26421 - type: TableWood - components: - - pos: -14.5,53.5 - parent: 8364 - type: Transform -- uid: 26422 - type: TableWood - components: - - pos: -11.5,52.5 - parent: 8364 - type: Transform -- uid: 26423 - type: ComfyChair - components: - - pos: -11.5,53.5 - parent: 8364 - type: Transform -- uid: 26424 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -15.5,53.5 - parent: 8364 - type: Transform -- uid: 26425 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,41.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26426 - type: SpaceVillainArcadeFilled - components: - - pos: -4.5,45.5 - parent: 8364 - type: Transform -- uid: 26427 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -4.5,44.5 - parent: 8364 - type: Transform -- uid: 26428 - type: Catwalk - components: - - pos: -14.5,44.5 - parent: 8364 - type: Transform -- uid: 26429 - type: Catwalk - components: - - pos: -13.5,44.5 - parent: 8364 - type: Transform -- uid: 26430 - type: Catwalk - components: - - pos: -12.5,44.5 - parent: 8364 - type: Transform -- uid: 26431 - type: Catwalk - components: - - pos: -11.5,44.5 - parent: 8364 - type: Transform -- uid: 26432 - type: Catwalk - components: - - pos: -10.5,44.5 - parent: 8364 - type: Transform -- uid: 26433 - type: Catwalk - components: - - pos: -9.5,44.5 - parent: 8364 - type: Transform -- uid: 26434 - type: Catwalk - components: - - pos: -8.5,44.5 - parent: 8364 - type: Transform -- uid: 26435 - type: Catwalk - components: - - pos: -7.5,44.5 - parent: 8364 - type: Transform -- uid: 26436 - type: Catwalk - components: - - pos: -6.5,44.5 - parent: 8364 - type: Transform -- uid: 26437 - type: Catwalk - components: - - pos: -5.5,44.5 - parent: 8364 - type: Transform -- uid: 26438 - type: Catwalk - components: - - pos: -23.5,44.5 - parent: 8364 - type: Transform -- uid: 26439 - type: Catwalk - components: - - pos: -22.5,44.5 - parent: 8364 - type: Transform -- uid: 26440 - type: Catwalk - components: - - pos: -21.5,44.5 - parent: 8364 - type: Transform -- uid: 26441 - type: Catwalk - components: - - pos: -20.5,44.5 - parent: 8364 - type: Transform -- uid: 26442 - type: Catwalk - components: - - pos: -19.5,44.5 - parent: 8364 - type: Transform -- uid: 26443 - type: Catwalk - components: - - pos: -18.5,44.5 - parent: 8364 - type: Transform -- uid: 26444 - type: ClothingShoesSlippers - components: - - pos: -15.657842,47.202713 - parent: 8364 - type: Transform -- uid: 26445 - type: ClothingOuterApronChef - components: - - pos: -6.4873962,52.56498 - parent: 8364 - type: Transform -- uid: 26446 - type: RandomSpawner - components: - - pos: -4.5,43.5 - parent: 8364 - type: Transform -- uid: 26447 - type: RandomSpawner - components: - - pos: -7.5,48.5 - parent: 8364 - type: Transform -- uid: 26448 - type: RandomSpawner - components: - - pos: -0.5,50.5 - parent: 8364 - type: Transform -- uid: 26449 - type: RandomSpawner - components: - - pos: -21.5,44.5 - parent: 8364 - type: Transform -- uid: 26450 - type: TrashBag - components: - - pos: -23.561554,51.44249 - parent: 8364 - type: Transform -- uid: 26451 - type: SpawnMobMouse - components: - - pos: -21.5,50.5 - parent: 8364 - type: Transform -- uid: 26452 - type: Sink - components: - - pos: -19.5,51.5 - parent: 8364 - type: Transform -- uid: 26453 - type: Rack - components: - - pos: -17.5,51.5 - parent: 8364 - type: Transform -- uid: 26454 - type: ClothingHandsGlovesColorOrange - components: - - pos: -17.662788,51.5307 - parent: 8364 - type: Transform -- uid: 26455 - type: ClothingHeadHatOrangesoft - components: - - pos: -17.569038,51.765076 - parent: 8364 - type: Transform -- uid: 26456 - type: SignElectricalMed - components: - - pos: 5.5,46.5 - parent: 8364 - type: Transform -- uid: 26457 - type: SignElectricalMed - components: - - pos: -3.5,46.5 - parent: 8364 - type: Transform -- uid: 26458 - type: SignElectricalMed - components: - - pos: -25.5,46.5 - parent: 8364 - type: Transform -- uid: 26459 - type: SignElectricalMed - components: - - pos: -16.5,39.5 - parent: 8364 - type: Transform -- uid: 26460 - type: PosterLegitWorkForAFuture - components: - - pos: -3.5,52.5 - parent: 8364 - type: Transform -- uid: 26461 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -11.5,51.5 - parent: 8364 - type: Transform -- uid: 26462 - type: Bookshelf - components: - - pos: -11.5,50.5 - parent: 8364 - type: Transform -- uid: 26463 - type: HydroponicsToolSpade - components: - - pos: 1.5683146,51.57647 - parent: 8364 - type: Transform -- uid: 26464 - type: WeedSpray - components: - - pos: 2.5214396,51.592094 - parent: 8364 - type: Transform -- uid: 26465 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: 4.5,49.5 - parent: 8364 - type: Transform -- uid: 26466 - type: HydroponicsToolMiniHoe - components: - - pos: 1.5058146,51.529594 - parent: 8364 - type: Transform -- uid: 26467 - type: BookEscalationSecurity - components: - - pos: -13.487206,48.529594 - parent: 8364 - type: Transform -- uid: 26468 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -9.5,51.5 - parent: 8364 - type: Transform -- uid: 26469 - type: SeedExtractor - components: - - pos: -1.5,51.5 - parent: 8364 - type: Transform -- uid: 26470 - type: Bookshelf - components: - - pos: -14.5,48.5 - parent: 8364 - type: Transform -- uid: 26471 - type: CannabisSeeds - components: - - pos: -23.525152,40.482742 - parent: 8364 - type: Transform -- uid: 26472 - type: Grille - components: - - pos: 21.5,46.5 - parent: 8364 - type: Transform -- uid: 26473 - type: CarpetSBlue - components: - - pos: -12.5,48.5 - parent: 8364 - type: Transform -- uid: 26474 - type: PackPaperRollingFilters - components: - - pos: -21.532673,46.54654 - parent: 8364 - type: Transform -- uid: 26475 - type: Grille - components: - - pos: 22.5,46.5 - parent: 8364 - type: Transform -- uid: 26476 - type: Grille - components: - - pos: 23.5,46.5 - parent: 8364 - type: Transform -- uid: 26477 - type: Grille - components: - - pos: 24.5,46.5 - parent: 8364 - type: Transform -- uid: 26478 - type: Grille - components: - - pos: 17.5,46.5 - parent: 8364 - type: Transform -- uid: 26479 - type: Grille - components: - - pos: 16.5,46.5 - parent: 8364 - type: Transform -- uid: 26480 - type: Grille - components: - - pos: 15.5,46.5 - parent: 8364 - type: Transform -- uid: 26481 - type: Grille - components: - - pos: 14.5,46.5 - parent: 8364 - type: Transform -- uid: 26482 - type: Grille - components: - - pos: 13.5,46.5 - parent: 8364 - type: Transform -- uid: 26483 - type: Grille - components: - - pos: 12.5,46.5 - parent: 8364 - type: Transform -- uid: 26484 - type: Grille - components: - - pos: 11.5,46.5 - parent: 8364 - type: Transform -- uid: 26485 - type: Grille - components: - - pos: 10.5,46.5 - parent: 8364 - type: Transform -- uid: 26486 - type: Grille - components: - - pos: 9.5,46.5 - parent: 8364 - type: Transform -- uid: 26487 - type: Grille - components: - - pos: 8.5,46.5 - parent: 8364 - type: Transform -- uid: 26488 - type: Grille - components: - - pos: 7.5,46.5 - parent: 8364 - type: Transform -- uid: 26489 - type: Grille - components: - - pos: -27.5,41.5 - parent: 8364 - type: Transform -- uid: 26490 - type: Grille - components: - - pos: -27.5,42.5 - parent: 8364 - type: Transform -- uid: 26491 - type: Grille - components: - - pos: -27.5,43.5 - parent: 8364 - type: Transform -- uid: 26492 - type: Grille - components: - - pos: -27.5,44.5 - parent: 8364 - type: Transform -- uid: 26493 - type: Grille - components: - - pos: -27.5,45.5 - parent: 8364 - type: Transform -- uid: 26494 - type: Grille - components: - - pos: -27.5,46.5 - parent: 8364 - type: Transform -- uid: 26495 - type: Grille - components: - - pos: -27.5,47.5 - parent: 8364 - type: Transform -- uid: 26496 - type: Grille - components: - - pos: -24.5,58.5 - parent: 8364 - type: Transform -- uid: 26497 - type: Grille - components: - - pos: -23.5,58.5 - parent: 8364 - type: Transform -- uid: 26498 - type: Grille - components: - - pos: -22.5,58.5 - parent: 8364 - type: Transform -- uid: 26499 - type: Grille - components: - - pos: -21.5,58.5 - parent: 8364 - type: Transform -- uid: 26500 - type: Grille - components: - - pos: -20.5,58.5 - parent: 8364 - type: Transform -- uid: 26501 - type: Grille - components: - - pos: -19.5,58.5 - parent: 8364 - type: Transform -- uid: 26502 - type: Grille - components: - - pos: -18.5,58.5 - parent: 8364 - type: Transform -- uid: 26503 - type: Grille - components: - - pos: -17.5,58.5 - parent: 8364 - type: Transform -- uid: 26504 - type: Grille - components: - - pos: -15.5,58.5 - parent: 8364 - type: Transform -- uid: 26505 - type: Grille - components: - - pos: -14.5,58.5 - parent: 8364 - type: Transform -- uid: 26506 - type: Grille - components: - - pos: -13.5,58.5 - parent: 8364 - type: Transform -- uid: 26507 - type: Grille - components: - - pos: -12.5,58.5 - parent: 8364 - type: Transform -- uid: 26508 - type: Grille - components: - - pos: -11.5,58.5 - parent: 8364 - type: Transform -- uid: 26509 - type: Grille - components: - - pos: -10.5,58.5 - parent: 8364 - type: Transform -- uid: 26510 - type: Grille - components: - - pos: -9.5,58.5 - parent: 8364 - type: Transform -- uid: 26511 - type: Grille - components: - - pos: -8.5,58.5 - parent: 8364 - type: Transform -- uid: 26512 - type: Grille - components: - - pos: -2.5,56.5 - parent: 8364 - type: Transform -- uid: 26513 - type: Grille - components: - - pos: -1.5,56.5 - parent: 8364 - type: Transform -- uid: 26514 - type: Grille - components: - - pos: -0.5,56.5 - parent: 8364 - type: Transform -- uid: 26515 - type: Grille - components: - - pos: 0.5,56.5 - parent: 8364 - type: Transform -- uid: 26516 - type: Grille - components: - - pos: 1.5,56.5 - parent: 8364 - type: Transform -- uid: 26517 - type: Grille - components: - - pos: 2.5,56.5 - parent: 8364 - type: Transform -- uid: 26518 - type: Grille - components: - - pos: 3.5,56.5 - parent: 8364 - type: Transform -- uid: 26519 - type: Grille - components: - - pos: 4.5,56.5 - parent: 8364 - type: Transform -- uid: 26520 - type: Grille - components: - - pos: 5.5,56.5 - parent: 8364 - type: Transform -- uid: 26521 - type: Grille - components: - - pos: 6.5,56.5 - parent: 8364 - type: Transform -- uid: 26522 - type: Grille - components: - - pos: 7.5,56.5 - parent: 8364 - type: Transform -- uid: 26523 - type: Grille - components: - - pos: 9.5,53.5 - parent: 8364 - type: Transform -- uid: 26524 - type: Grille - components: - - pos: 9.5,52.5 - parent: 8364 - type: Transform -- uid: 26525 - type: Grille - components: - - pos: 9.5,51.5 - parent: 8364 - type: Transform -- uid: 26526 - type: Grille - components: - - pos: 9.5,50.5 - parent: 8364 - type: Transform -- uid: 26527 - type: Grille - components: - - pos: 9.5,49.5 - parent: 8364 - type: Transform -- uid: 26528 - type: Grille - components: - - pos: 9.5,48.5 - parent: 8364 - type: Transform -- uid: 26529 - type: Grille - components: - - pos: -27.5,54.5 - parent: 8364 - type: Transform -- uid: 26530 - type: Grille - components: - - pos: -27.5,53.5 - parent: 8364 - type: Transform -- uid: 26531 - type: Grille - components: - - pos: -27.5,52.5 - parent: 8364 - type: Transform -- uid: 26532 - type: Grille - components: - - pos: -27.5,51.5 - parent: 8364 - type: Transform -- uid: 26533 - type: Grille - components: - - pos: -27.5,50.5 - parent: 8364 - type: Transform -- uid: 26534 - type: GrilleBroken - components: - - pos: -27.5,48.5 - parent: 8364 - type: Transform -- uid: 26535 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -27.5,49.5 - parent: 8364 - type: Transform -- uid: 26536 - type: RandomSpawner - components: - - pos: -10.5,45.5 - parent: 8364 - type: Transform -- uid: 26537 - type: RandomSpawner - components: - - pos: -12.5,47.5 - parent: 8364 - type: Transform -- uid: 26538 - type: Pill - components: - - pos: -4.40826,47.26007 - parent: 8364 - type: Transform -- uid: 26539 - type: Grille - components: - - pos: -20.5,35.5 - parent: 8364 - type: Transform -- uid: 26540 - type: Grille - components: - - pos: -20.5,34.5 - parent: 8364 - type: Transform -- uid: 26541 - type: Grille - components: - - pos: -20.5,33.5 - parent: 8364 - type: Transform -- uid: 26542 - type: Grille - components: - - pos: -20.5,32.5 - parent: 8364 - type: Transform -- uid: 26543 - type: Grille - components: - - pos: -20.5,31.5 - parent: 8364 - type: Transform -- uid: 26544 - type: Grille - components: - - pos: -20.5,30.5 - parent: 8364 - type: Transform -- uid: 26545 - type: AirCanister - components: - - pos: -21.5,51.5 - parent: 8364 - type: Transform -- uid: 26546 - type: ClosetEmergencyFilledRandom - components: - - pos: -22.5,51.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26547 - type: Bucket - components: - - pos: 0.4866991,51.66165 - parent: 8364 - type: Transform -- uid: 26548 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: -24.5,45.5 - parent: 8364 - type: Transform -- uid: 26549 - type: Chair - components: - - pos: 1.5,50.5 - parent: 8364 - type: Transform -- uid: 26550 - type: Beaker - components: - - pos: -6.0280805,52.564606 - parent: 8364 - type: Transform -- uid: 26551 - type: ReagentContainerFlourSmall - components: - - pos: -6.5124555,50.51773 - parent: 8364 - type: Transform -- uid: 26552 - type: LockerFreezer - components: - - pos: -7.5,52.5 - parent: 8364 - type: Transform - - locked: False - type: Lock - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 26553 - type: ContainerContainer -- uid: 26553 - type: KnifePlastic - components: - - flags: InContainer - type: MetaData - - parent: 26552 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 26554 - type: MaintenanceFluffSpawner - components: - - pos: -8.5,53.5 - parent: 8364 - type: Transform -- uid: 26555 - type: BookRandom - components: - - pos: -14.522785,53.581825 - parent: 8364 - type: Transform -- uid: 26556 - type: PosterContrabandBountyHunters - components: - - pos: -18.5,49.5 - parent: 8364 - type: Transform -- uid: 26557 - type: PosterContrabandBeachStarYamamoto - components: - - pos: -19.5,41.5 - parent: 8364 - type: Transform -- uid: 26558 - type: PosterContrabandFreeTonto - components: - - pos: -11.5,46.5 - parent: 8364 - type: Transform -- uid: 26559 - type: PosterLegitNoERP - components: - - pos: -22.5,46.5 - parent: 8364 - type: Transform -- uid: 26560 - type: PosterLegitObey - components: - - pos: -4.5,46.5 - parent: 8364 - type: Transform -- uid: 26561 - type: PosterLegitSecWatch - components: - - pos: -10.5,53.5 - parent: 8364 - type: Transform -- uid: 26562 - type: PosterContrabandSyndicateRecruitment - components: - - pos: -22.5,49.5 - parent: 8364 - type: Transform -- uid: 26563 - type: PosterLegitStateLaws - components: - - pos: -7.5,40.5 - parent: 8364 - type: Transform -- uid: 26564 - type: PosterLegitSafetyReport - components: - - pos: -10.5,50.5 - parent: 8364 - type: Transform -- uid: 26565 - type: RandomPosterAny - components: - - pos: -16.5,52.5 - parent: 8364 - type: Transform -- uid: 26566 - type: RandomPosterAny - components: - - pos: 2.5,52.5 - parent: 8364 - type: Transform -- uid: 26567 - type: Chair - components: - - pos: -14.5,36.5 - parent: 8364 - type: Transform -- uid: 26568 - type: Chair - components: - - pos: -15.5,36.5 - parent: 8364 - type: Transform -- uid: 26569 - type: HarmonicaInstrument - components: - - pos: -17.476429,42.24517 - parent: 8364 - type: Transform -- uid: 26570 - type: FoodCondimentBottleEnzyme - components: - - pos: -0.39335,51.742676 - parent: 8364 - type: Transform -- uid: 26571 - type: PlushieSharkBlue - components: - - pos: -8.5066185,51.492676 - parent: 8364 - type: Transform -- uid: 26572 - type: CableMV - components: - - pos: -14.5,34.5 - parent: 8364 - type: Transform -- uid: 26573 - type: FirelockGlass - components: - - pos: -42.5,12.5 - parent: 8364 - type: Transform -- uid: 26574 - type: FirelockGlass - components: - - pos: -60.5,14.5 - parent: 8364 - type: Transform -- uid: 26767 - type: BoxBeaker - components: - - pos: 76.50828,-54.33026 - parent: 8364 - type: Transform -- uid: 26768 - type: SheetPlasma - components: - - pos: 77.44578,-54.439636 - parent: 8364 - type: Transform -- uid: 26769 - type: PosterLegitScience - components: - - pos: 81.5,-50.5 - parent: 8364 - type: Transform -- uid: 26770 - type: Rack - components: - - pos: 80.5,-49.5 - parent: 8364 - type: Transform -- uid: 26771 - type: FirelockGlass - components: - - pos: -55.5,-14.5 - parent: 8364 - type: Transform -- uid: 26772 - type: FlashlightLantern - components: - - pos: 69.42417,-53.31951 - parent: 8364 - type: Transform -- uid: 26773 - type: FlashlightLantern - components: - - pos: 69.5648,-53.522636 - parent: 8364 - type: Transform -- uid: 26774 - type: FlashlightLantern - components: - - pos: -14.701593,-70.23676 - parent: 8364 - type: Transform -- uid: 26775 - type: FlashlightLantern - components: - - pos: -14.467218,-70.53364 - parent: 8364 - type: Transform -- uid: 26776 - type: FlashlightLantern - components: - - pos: -13.748468,-70.31489 - parent: 8364 - type: Transform -- uid: 26777 - type: FlashlightLantern - components: - - pos: -13.529718,-70.48676 - parent: 8364 - type: Transform -- uid: 26778 - type: FlashlightLantern - components: - - pos: -28.559113,-32.33705 - parent: 8364 - type: Transform -- uid: 26779 - type: FlashlightLantern - components: - - pos: -28.371613,-32.602676 - parent: 8364 - type: Transform -- uid: 26780 - type: FlashlightLantern - components: - - pos: -37.597115,-18.261875 - parent: 8364 - type: Transform -- uid: 26781 - type: FlashlightLantern - components: - - pos: -19.543085,-5.225024 - parent: 8364 - type: Transform -- uid: 26782 - type: FlashlightLantern - components: - - pos: -43.302475,5.7392464 - parent: 8364 - type: Transform -- uid: 26783 - type: FlashlightLantern - components: - - pos: 12.378976,32.716896 - parent: 8364 - type: Transform -- uid: 26784 - type: FlashlightLantern - components: - - pos: 12.519601,32.51377 - parent: 8364 - type: Transform -- uid: 26785 - type: VendingMachineHappyHonk - components: - - flags: SessionSpecific - type: MetaData - - pos: 40.5,-2.5 - parent: 8364 - type: Transform -- uid: 26786 - type: ShuttersNormalOpen - components: - - pos: -5.5,-3.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver -- uid: 26787 - type: ShuttersNormalOpen - components: - - pos: -4.5,-3.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver -- uid: 26788 - type: ShuttersNormalOpen - components: - - pos: -2.5,-3.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver -- uid: 26789 - type: ShuttersNormalOpen - components: - - pos: -1.5,-3.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver -- uid: 26790 - type: ShuttersNormalOpen - components: - - pos: -0.5,-3.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver -- uid: 26791 - type: ShuttersNormalOpen - components: - - pos: 0.5,-3.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver -- uid: 26792 - type: ShuttersNormalOpen - components: - - pos: 1.5,-3.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver -- uid: 26793 - type: ShuttersNormalOpen - components: - - pos: 4.5,-3.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver -- uid: 26794 - type: ShuttersNormalOpen - components: - - pos: 3.5,-3.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26795 - type: SignalReceiver -- uid: 26795 - type: SignalButton - components: - - pos: -1.5,-5.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 26786 - - port: Toggle - uid: 26787 - - port: Toggle - uid: 26788 - - port: Toggle - uid: 26789 - - port: Toggle - uid: 26790 - - port: Toggle - uid: 26791 - - port: Toggle - uid: 26792 - - port: Toggle - uid: 26794 - - port: Toggle - uid: 26793 - type: SignalTransmitter -- uid: 26796 - type: CrewMonitoringServer - components: - - pos: 52.5,-29.5 - parent: 8364 - type: Transform -- uid: 26797 - type: WallReinforced - components: - - pos: 5.5,44.5 - parent: 8364 - type: Transform -- uid: 26798 - type: WallReinforced - components: - - pos: 5.5,45.5 - parent: 8364 - type: Transform -- uid: 26799 - type: WallReinforced - components: - - pos: 5.5,43.5 - parent: 8364 - type: Transform -- uid: 26800 - type: WindoorArmoryLocked - components: - - pos: -0.5,37.5 - parent: 8364 - type: Transform -- uid: 26801 - type: WindoorArmoryLocked - components: - - pos: 0.5,37.5 - parent: 8364 - type: Transform -- uid: 26802 - type: WindoorArmoryLocked - components: - - pos: 1.5,37.5 - parent: 8364 - type: Transform -- uid: 26803 - type: WindoorArmoryLocked - components: - - pos: 2.5,37.5 - parent: 8364 - type: Transform -- uid: 26804 - type: FirelockGlass - components: - - pos: 55.5,-14.5 - parent: 8364 - type: Transform -- uid: 26805 - type: FirelockGlass - components: - - pos: 55.5,-13.5 - parent: 8364 - type: Transform -- uid: 26806 - type: FirelockGlass - components: - - pos: 55.5,-12.5 - parent: 8364 - type: Transform -- uid: 26807 - type: OxygenCanister - components: - - pos: -14.5,9.5 - parent: 8364 - type: Transform -- uid: 26808 - type: NitrogenCanister - components: - - pos: -13.5,9.5 - parent: 8364 - type: Transform -- uid: 26809 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,9.5 - parent: 8364 - type: Transform -- uid: 26810 - type: Table - components: - - pos: -12.5,9.5 - parent: 8364 - type: Transform -- uid: 26811 - type: Table - components: - - pos: -11.5,9.5 - parent: 8364 - type: Transform -- uid: 26812 - type: Table - components: - - pos: -10.5,9.5 - parent: 8364 - type: Transform -- uid: 26813 - type: Table - components: - - pos: -9.5,9.5 - parent: 8364 - type: Transform -- uid: 26814 - type: FlashlightLantern - components: - - pos: -12.485467,9.712326 - parent: 8364 - type: Transform -- uid: 26815 - type: FlashlightLantern - components: - - pos: -12.391717,9.571701 - parent: 8364 - type: Transform -- uid: 26816 - type: ToolboxEmergencyFilled - components: - - pos: -11.516717,9.665451 - parent: 8364 - type: Transform -- uid: 26817 - type: PowerCellRecharger - components: - - pos: -10.5,9.5 - parent: 8364 - type: Transform -- uid: 26818 - type: PartRodMetal - components: - - pos: -9.532342,9.557216 - parent: 8364 - type: Transform -- uid: 26819 - type: GeigerCounter - components: - - pos: -4.985467,9.557216 - parent: 8364 - type: Transform -- uid: 26820 - type: ClothingOuterHardsuitEVA - components: - - pos: -14.454217,2.512531 - parent: 8364 - type: Transform -- uid: 26821 - type: ClothingOuterHardsuitVoidParamed - components: - - pos: -14.313592,3.496906 - parent: 8364 - type: Transform -- uid: 26822 - type: ClothingHeadHelmetVoidParamed - components: - - pos: -14.657342,3.450031 - parent: 8364 - type: Transform -- uid: 26823 - type: ClothingHeadHelmetEVA - components: - - pos: -14.626092,2.450031 - parent: 8364 - type: Transform -- uid: 26824 - type: ClothingOuterHardsuitSalvage - components: - - pos: -8.485467,2.496906 - parent: 8364 - type: Transform -- uid: 26825 - type: ClothingOuterHardsuitEVA - components: - - pos: -8.407342,3.5750313 - parent: 8364 - type: Transform -- uid: 26826 - type: ClothingHeadHelmetEVA - components: - - pos: -8.688592,3.5125313 - parent: 8364 - type: Transform -- uid: 26827 - type: TableReinforced - components: - - pos: -12.5,2.5 - parent: 8364 - type: Transform -- uid: 26828 - type: TableReinforced - components: - - pos: -12.5,3.5 - parent: 8364 - type: Transform -- uid: 26829 - type: TableReinforced - components: - - pos: -10.5,2.5 - parent: 8364 - type: Transform -- uid: 26830 - type: TableReinforced - components: - - pos: -10.5,3.5 - parent: 8364 - type: Transform -- uid: 26831 - type: Poweredlight - components: - - pos: -8.5,4.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26832 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -14.5,1.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26833 - type: ClothingBeltUtility - components: - - pos: -10.4692955,3.5135746 - parent: 8364 - type: Transform -- uid: 26834 - type: PowerCellRecharger - components: - - pos: -12.5,2.5 - parent: 8364 - type: Transform -- uid: 26835 - type: ToolboxMechanicalFilled - components: - - pos: -12.5005455,3.5448246 - parent: 8364 - type: Transform -- uid: 26836 - type: WeldingFuelTankFull - components: - - pos: -12.5,7.5 - parent: 8364 - type: Transform -- uid: 26837 - type: SignSecureMed - components: - - pos: -13.5,5.5 - parent: 8364 - type: Transform -- uid: 26838 - type: SignSecureMed - components: - - pos: -9.5,5.5 - parent: 8364 - type: Transform -- uid: 26839 - type: ClothingMaskBreath - components: - - pos: -10.557705,2.6917586 - parent: 8364 - type: Transform -- uid: 26840 - type: ClothingMaskBreath - components: - - pos: -10.401455,2.4886336 - parent: 8364 - type: Transform -- uid: 26841 - type: ClothingMaskBreath - components: - - pos: -10.57333,6.5823836 - parent: 8364 - type: Transform -- uid: 26842 - type: ClothingMaskBreath - components: - - pos: -10.401455,6.3948836 - parent: 8364 - type: Transform -- uid: 26843 - type: trayScanner - components: - - pos: -12.463955,6.5667586 - parent: 8364 - type: Transform -- uid: 26844 - type: Rack - components: - - pos: -10.5,7.5 - parent: 8364 - type: Transform -- uid: 26845 - type: JetpackMiniFilled - components: - - pos: -10.540829,7.6840305 - parent: 8364 - type: Transform -- uid: 26846 - type: JetpackMiniFilled - components: - - pos: -10.400204,7.4809055 - parent: 8364 - type: Transform -- uid: 26847 - type: JetpackMiniFilled - components: - - pos: -10.088213,9.755057 - parent: 8364 - type: Transform - - nextAttack: 1188.9447201 - type: MeleeWeapon -- uid: 26848 - type: JetpackMiniFilled - components: - - pos: -12.493954,3.065948 - parent: 8364 - type: Transform -- uid: 26849 - type: WindoorHeadOfPersonnelLocked - components: - - rot: 3.141592653589793 rad - pos: -7.5,-25.5 - parent: 8364 - type: Transform -- uid: 26850 - type: BoxBodyBag - components: - - pos: 38.47307,-26.402807 - parent: 8364 - type: Transform -- uid: 26851 - type: CheapRollerBedSpawnFolded - components: - - pos: 41.44182,-29.340307 - parent: 8364 - type: Transform -- uid: 26852 - type: CheapRollerBedSpawnFolded - components: - - pos: 40.457443,-29.324682 - parent: 8364 - type: Transform -- uid: 26853 - type: FoodSnackPopcorn - components: - - pos: 53.448444,-33.429512 - parent: 8364 - type: Transform -- uid: 26854 - type: AirlockMedicalScienceGlassLocked - components: - - name: spare room - type: MetaData - - pos: 61.5,-28.5 - parent: 8364 - type: Transform -- uid: 26855 - type: Table - components: - - pos: 39.5,-18.5 - parent: 8364 - type: Transform -- uid: 26856 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-29.5 - parent: 8364 - type: Transform -- uid: 26857 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-31.5 - parent: 8364 - type: Transform -- uid: 26858 - type: ModularGrenade - components: - - pos: 63.409798,-29.418337 - parent: 8364 - type: Transform -- uid: 26859 - type: ModularGrenade - components: - - pos: 63.566048,-29.496462 - parent: 8364 - type: Transform -- uid: 26860 - type: Table - components: - - pos: 63.5,-29.5 - parent: 8364 - type: Transform -- uid: 26861 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-36.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26862 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-33.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26863 - type: ChessBoard - components: - - rot: 3.141592653589793 rad - pos: 46.491802,-34.415268 - parent: 8364 - type: Transform -- uid: 26864 - type: ParchisBoard - components: - - pos: 56.483215,-34.930893 - parent: 8364 - type: Transform -- uid: 26865 - type: d6Dice - components: - - pos: 56.501217,-34.290268 - parent: 8364 - type: Transform -- uid: 26866 - type: MachineAPE - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-30.5 - parent: 8364 - type: Transform -- uid: 26867 - type: LandMineModular - components: - - pos: 63.685905,-29.24602 - parent: 8364 - type: Transform -- uid: 26868 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 56.5,-37.5 - parent: 8364 - type: Transform -- uid: 26869 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 51.5,-37.5 - parent: 8364 - type: Transform -- uid: 26870 - type: PottedPlant0 - components: - - pos: 55.5,-39.5 - parent: 8364 - type: Transform -- uid: 26871 - type: Table - components: - - pos: 59.5,-39.5 - parent: 8364 - type: Transform -- uid: 26872 - type: PottedPlant19 - components: - - pos: 60.5,-39.5 - parent: 8364 - type: Transform -- uid: 26873 - type: Chair - components: - - pos: 61.5,-39.5 - parent: 8364 - type: Transform -- uid: 26874 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 59.539406,-39.454147 - parent: 8364 - type: Transform -- uid: 26875 - type: GasMixer - components: - - pos: 58.5,-48.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 26876 - type: GasPort - components: - - pos: 58.5,-47.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 26877 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 58.5,-49.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 26878 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-48.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 26880 - type: Grille - components: - - pos: 70.5,-0.5 - parent: 8364 - type: Transform -- uid: 26881 - type: AirlockChapelGlassLocked - components: - - pos: 67.5,2.5 - parent: 8364 - type: Transform -- uid: 26882 - type: AirlockGlass - components: - - pos: 69.5,-0.5 - parent: 8364 - type: Transform -- uid: 26883 - type: Poweredlight - components: - - pos: 67.5,-2.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26884 - type: Carpet - components: - - pos: 69.5,1.5 - parent: 8364 - type: Transform -- uid: 26885 - type: Carpet - components: - - pos: 69.5,2.5 - parent: 8364 - type: Transform -- uid: 26886 - type: Carpet - components: - - pos: 70.5,1.5 - parent: 8364 - type: Transform -- uid: 26887 - type: Carpet - components: - - pos: 70.5,2.5 - parent: 8364 - type: Transform -- uid: 26888 - type: Carpet - components: - - pos: 71.5,1.5 - parent: 8364 - type: Transform -- uid: 26889 - type: Carpet - components: - - pos: 71.5,2.5 - parent: 8364 - type: Transform -- uid: 26890 - type: Chair - components: - - pos: 70.5,6.5 - parent: 8364 - type: Transform -- uid: 26891 - type: Chair - components: - - pos: 72.5,6.5 - parent: 8364 - type: Transform -- uid: 26892 - type: Chair - components: - - pos: 71.5,6.5 - parent: 8364 - type: Transform -- uid: 26893 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 72.5,0.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26894 - type: TableCarpet - components: - - pos: 60.5,0.5 - parent: 8364 - type: Transform -- uid: 26895 - type: CableHV - components: - - pos: 9.5,-56.5 - parent: 8364 - type: Transform -- uid: 26896 - type: ComputerPowerMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-56.5 - parent: 8364 - type: Transform -- uid: 26897 - type: Table - components: - - pos: 7.5,-55.5 - parent: 8364 - type: Transform -- uid: 26898 - type: PowerCellRecharger - components: - - pos: 7.5,-55.5 - parent: 8364 - type: Transform -- uid: 26899 - type: Chair - components: - - pos: 6.5,-55.5 - parent: 8364 - type: Transform -- uid: 26900 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-76.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26901 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-76.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26902 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-76.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26903 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-76.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26904 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-76.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26905 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-76.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26906 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-76.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26907 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-76.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26908 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-76.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26909 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-77.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26910 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-78.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26911 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-79.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26912 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-80.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26913 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-80.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26914 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-80.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26915 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-80.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26916 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-80.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26917 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 9.5,-76.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26918 - type: GasPipeBend - components: - - pos: 22.5,-76.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26919 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 22.5,-80.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26920 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-80.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26921 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-81.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26922 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-82.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26923 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-83.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26924 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-84.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26925 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-85.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26926 - type: GasPipeStraight - components: - - pos: 28.5,-86.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26927 - type: GasPipeStraight - components: - - pos: 28.5,-87.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26928 - type: GasPipeStraight - components: - - pos: 28.5,-88.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26929 - type: GasPipeStraight - components: - - pos: 28.5,-89.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26930 - type: GasPipeStraight - components: - - pos: 28.5,-90.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26931 - type: GasPipeFourway - components: - - pos: 28.5,-91.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26932 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-92.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26933 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-93.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26934 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-94.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26935 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-95.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26936 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-96.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26937 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-97.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26938 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-98.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26939 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-99.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26940 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-100.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26941 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-101.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26942 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-102.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26943 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-103.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26944 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-104.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26945 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-105.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26946 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-106.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26947 - type: GasPipeStraight - components: - - pos: 28.5,-107.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26948 - type: GasPipeStraight - components: - - pos: 28.5,-108.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26949 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 28.5,-109.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26950 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-106.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26951 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-92.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26952 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-91.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26953 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-91.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26954 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-91.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26955 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-91.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26956 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-91.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26957 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-91.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26958 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-91.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26959 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-91.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26960 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-85.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26961 - type: GasVentPump - components: - - pos: 28.5,-79.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26962 - type: GeneratorUranium - components: - - pos: 34.5,-92.5 - parent: 8364 - type: Transform -- uid: 26963 - type: SubstationBasic - components: - - pos: 34.5,-89.5 - parent: 8364 - type: Transform -- uid: 26964 - type: SMESBasic - components: - - pos: 34.5,-91.5 - parent: 8364 - type: Transform -- uid: 26965 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 34.5,-92.5 - parent: 8364 - type: Transform -- uid: 26966 - type: CableHV - components: - - pos: 34.5,-92.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26967 - type: CableHV - components: - - pos: 34.5,-91.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26968 - type: CableHV - components: - - pos: 34.5,-90.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26969 - type: CableHV - components: - - pos: 34.5,-89.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26970 - type: CableMV - components: - - pos: 35.5,-92.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26971 - type: CableMV - components: - - pos: 34.5,-92.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26972 - type: CableMV - components: - - pos: 33.5,-92.5 - parent: 8364 - type: Transform -- uid: 26973 - type: CableMV - components: - - pos: 33.5,-91.5 - parent: 8364 - type: Transform -- uid: 26974 - type: CableMV - components: - - pos: 33.5,-90.5 - parent: 8364 - type: Transform -- uid: 26975 - type: CableMV - components: - - pos: 33.5,-89.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26976 - type: CableMV - components: - - pos: 34.5,-89.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26977 - type: CableMV - components: - - pos: 32.5,-91.5 - parent: 8364 - type: Transform -- uid: 26978 - type: CableMV - components: - - pos: 31.5,-91.5 - parent: 8364 - type: Transform -- uid: 26979 - type: CableMV - components: - - pos: 30.5,-91.5 - parent: 8364 - type: Transform -- uid: 26980 - type: CableMV - components: - - pos: 29.5,-91.5 - parent: 8364 - type: Transform -- uid: 26981 - type: CableMV - components: - - pos: 28.5,-91.5 - parent: 8364 - type: Transform -- uid: 26982 - type: CableMV - components: - - pos: 28.5,-90.5 - parent: 8364 - type: Transform -- uid: 26983 - type: CableMV - components: - - pos: 28.5,-89.5 - parent: 8364 - type: Transform -- uid: 26984 - type: CableMV - components: - - pos: 28.5,-88.5 - parent: 8364 - type: Transform -- uid: 26985 - type: CableMV - components: - - pos: 28.5,-87.5 - parent: 8364 - type: Transform -- uid: 26986 - type: CableMV - components: - - pos: 28.5,-86.5 - parent: 8364 - type: Transform -- uid: 26987 - type: CableMV - components: - - pos: 29.5,-86.5 - parent: 8364 - type: Transform -- uid: 26988 - type: CableMV - components: - - pos: 30.5,-86.5 - parent: 8364 - type: Transform -- uid: 26989 - type: CableMV - components: - - pos: 31.5,-86.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26990 - type: CableMV - components: - - pos: 27.5,-91.5 - parent: 8364 - type: Transform -- uid: 26991 - type: CableMV - components: - - pos: 26.5,-91.5 - parent: 8364 - type: Transform -- uid: 26992 - type: CableMV - components: - - pos: 25.5,-91.5 - parent: 8364 - type: Transform -- uid: 26993 - type: CableMV - components: - - pos: 24.5,-91.5 - parent: 8364 - type: Transform -- uid: 26994 - type: CableMV - components: - - pos: 23.5,-91.5 - parent: 8364 - type: Transform -- uid: 26995 - type: CableMV - components: - - pos: 22.5,-91.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26996 - type: CableMV - components: - - pos: 22.5,-92.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26997 - type: CableMV - components: - - pos: 21.5,-92.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26998 - type: CableMV - components: - - pos: 28.5,-92.5 - parent: 8364 - type: Transform -- uid: 26999 - type: CableMV - components: - - pos: 28.5,-93.5 - parent: 8364 - type: Transform -- uid: 27000 - type: CableMV - components: - - pos: 28.5,-94.5 - parent: 8364 - type: Transform -- uid: 27001 - type: CableMV - components: - - pos: 28.5,-95.5 - parent: 8364 - type: Transform -- uid: 27002 - type: CableMV - components: - - pos: 28.5,-96.5 - parent: 8364 - type: Transform -- uid: 27003 - type: CableMV - components: - - pos: 28.5,-97.5 - parent: 8364 - type: Transform -- uid: 27004 - type: CableMV - components: - - pos: 28.5,-98.5 - parent: 8364 - type: Transform -- uid: 27005 - type: CableMV - components: - - pos: 28.5,-99.5 - parent: 8364 - type: Transform -- uid: 27006 - type: CableMV - components: - - pos: 28.5,-100.5 - parent: 8364 - type: Transform -- uid: 27007 - type: CableMV - components: - - pos: 29.5,-100.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27008 - type: CableMV - components: - - pos: 30.5,-100.5 - parent: 8364 - type: Transform -- uid: 27009 - type: CableMV - components: - - pos: 31.5,-100.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27010 - type: CableMV - components: - - pos: 32.5,-100.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27011 - type: CableMV - components: - - pos: 32.5,-99.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27012 - type: CableMV - components: - - pos: 32.5,-98.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27013 - type: CableMV - components: - - pos: 32.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27014 - type: CableMV - components: - - pos: 32.5,-96.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27015 - type: CableMV - components: - - pos: 32.5,-95.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27016 - type: CableMV - components: - - pos: 32.5,-94.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27017 - type: CableMV - components: - - pos: 32.5,-93.5 - parent: 8364 - type: Transform -- uid: 27018 - type: CableMV - components: - - pos: 32.5,-92.5 - parent: 8364 - type: Transform -- uid: 27019 - type: CableMV - components: - - pos: 28.5,-101.5 - parent: 8364 - type: Transform -- uid: 27020 - type: CableMV - components: - - pos: 28.5,-102.5 - parent: 8364 - type: Transform -- uid: 27021 - type: CableMV - components: - - pos: 28.5,-103.5 - parent: 8364 - type: Transform -- uid: 27022 - type: CableMV - components: - - pos: 28.5,-104.5 - parent: 8364 - type: Transform -- uid: 27023 - type: CableMV - components: - - pos: 28.5,-105.5 - parent: 8364 - type: Transform -- uid: 27024 - type: CableMV - components: - - pos: 28.5,-106.5 - parent: 8364 - type: Transform -- uid: 27025 - type: CableMV - components: - - pos: 28.5,-107.5 - parent: 8364 - type: Transform -- uid: 27026 - type: CableMV - components: - - pos: 28.5,-108.5 - parent: 8364 - type: Transform -- uid: 27027 - type: CableMV - components: - - pos: 28.5,-109.5 - parent: 8364 - type: Transform -- uid: 27028 - type: CableMV - components: - - pos: 28.5,-110.5 - parent: 8364 - type: Transform -- uid: 27029 - type: CableMV - components: - - pos: 28.5,-111.5 - parent: 8364 - type: Transform -- uid: 27030 - type: CableMV - components: - - pos: 29.5,-111.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27031 - type: CableApcExtension - components: - - pos: 29.5,-111.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27032 - type: CableApcExtension - components: - - pos: 28.5,-111.5 - parent: 8364 - type: Transform -- uid: 27033 - type: CableApcExtension - components: - - pos: 28.5,-110.5 - parent: 8364 - type: Transform -- uid: 27034 - type: CableApcExtension - components: - - pos: 28.5,-109.5 - parent: 8364 - type: Transform -- uid: 27035 - type: CableApcExtension - components: - - pos: 28.5,-108.5 - parent: 8364 - type: Transform -- uid: 27036 - type: CableApcExtension - components: - - pos: 29.5,-109.5 - parent: 8364 - type: Transform -- uid: 27037 - type: CableApcExtension - components: - - pos: 30.5,-109.5 - parent: 8364 - type: Transform -- uid: 27038 - type: CableApcExtension - components: - - pos: 31.5,-109.5 - parent: 8364 - type: Transform -- uid: 27039 - type: CableApcExtension - components: - - pos: 31.5,-111.5 - parent: 8364 - type: Transform -- uid: 27040 - type: CableApcExtension - components: - - pos: 31.5,-110.5 - parent: 8364 - type: Transform -- uid: 27041 - type: CableApcExtension - components: - - pos: 31.5,-112.5 - parent: 8364 - type: Transform -- uid: 27042 - type: CableApcExtension - components: - - pos: 31.5,-113.5 - parent: 8364 - type: Transform -- uid: 27043 - type: CableApcExtension - components: - - pos: 31.5,-114.5 - parent: 8364 - type: Transform -- uid: 27044 - type: CableApcExtension - components: - - pos: 31.5,-115.5 - parent: 8364 - type: Transform -- uid: 27045 - type: CableApcExtension - components: - - pos: 30.5,-115.5 - parent: 8364 - type: Transform -- uid: 27046 - type: CableApcExtension - components: - - pos: 29.5,-115.5 - parent: 8364 - type: Transform -- uid: 27047 - type: CableApcExtension - components: - - pos: 28.5,-115.5 - parent: 8364 - type: Transform -- uid: 27048 - type: CableApcExtension - components: - - pos: 27.5,-115.5 - parent: 8364 - type: Transform -- uid: 27049 - type: CableApcExtension - components: - - pos: 26.5,-115.5 - parent: 8364 - type: Transform -- uid: 27050 - type: CableApcExtension - components: - - pos: 25.5,-115.5 - parent: 8364 - type: Transform -- uid: 27051 - type: CableApcExtension - components: - - pos: 25.5,-114.5 - parent: 8364 - type: Transform -- uid: 27052 - type: CableApcExtension - components: - - pos: 25.5,-113.5 - parent: 8364 - type: Transform -- uid: 27053 - type: CableApcExtension - components: - - pos: 25.5,-112.5 - parent: 8364 - type: Transform -- uid: 27054 - type: CableApcExtension - components: - - pos: 25.5,-111.5 - parent: 8364 - type: Transform -- uid: 27055 - type: CableApcExtension - components: - - pos: 25.5,-110.5 - parent: 8364 - type: Transform -- uid: 27056 - type: CableApcExtension - components: - - pos: 25.5,-109.5 - parent: 8364 - type: Transform -- uid: 27057 - type: CableApcExtension - components: - - pos: 26.5,-109.5 - parent: 8364 - type: Transform -- uid: 27058 - type: CableApcExtension - components: - - pos: 27.5,-109.5 - parent: 8364 - type: Transform -- uid: 27059 - type: CableApcExtension - components: - - pos: 28.5,-107.5 - parent: 8364 - type: Transform -- uid: 27060 - type: CableApcExtension - components: - - pos: 28.5,-106.5 - parent: 8364 - type: Transform -- uid: 27061 - type: CableApcExtension - components: - - pos: 27.5,-106.5 - parent: 8364 - type: Transform -- uid: 27062 - type: CableApcExtension - components: - - pos: 29.5,-106.5 - parent: 8364 - type: Transform -- uid: 27063 - type: CableApcExtension - components: - - pos: 31.5,-100.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27064 - type: CableApcExtension - components: - - pos: 30.5,-100.5 - parent: 8364 - type: Transform -- uid: 27065 - type: CableApcExtension - components: - - pos: 29.5,-103.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27066 - type: CableApcExtension - components: - - pos: 29.5,-102.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27067 - type: CableApcExtension - components: - - pos: 29.5,-101.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27068 - type: CableApcExtension - components: - - pos: 29.5,-100.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27069 - type: CableApcExtension - components: - - pos: 29.5,-99.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27070 - type: CableApcExtension - components: - - pos: 29.5,-98.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27071 - type: CableApcExtension - components: - - pos: 29.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27072 - type: CableApcExtension - components: - - pos: 29.5,-96.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27073 - type: CableApcExtension - components: - - pos: 29.5,-95.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27074 - type: CableApcExtension - components: - - pos: 27.5,-95.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27075 - type: CableApcExtension - components: - - pos: 27.5,-96.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27076 - type: CableApcExtension - components: - - pos: 27.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27077 - type: CableApcExtension - components: - - pos: 27.5,-98.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27078 - type: CableApcExtension - components: - - pos: 27.5,-99.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27079 - type: CableApcExtension - components: - - pos: 27.5,-100.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27080 - type: CableApcExtension - components: - - pos: 27.5,-101.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27081 - type: CableApcExtension - components: - - pos: 27.5,-102.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27082 - type: CableApcExtension - components: - - pos: 27.5,-103.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27083 - type: CableApcExtension - components: - - pos: 28.5,-100.5 - parent: 8364 - type: Transform -- uid: 27084 - type: CableApcExtension - components: - - pos: 32.5,-100.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27085 - type: CableApcExtension - components: - - pos: 32.5,-101.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27086 - type: CableApcExtension - components: - - pos: 32.5,-102.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27087 - type: CableApcExtension - components: - - pos: 32.5,-103.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27088 - type: CableApcExtension - components: - - pos: 33.5,-103.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27089 - type: CableApcExtension - components: - - pos: 33.5,-104.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27090 - type: CableApcExtension - components: - - pos: 32.5,-99.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27091 - type: CableApcExtension - components: - - pos: 32.5,-98.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27092 - type: CableApcExtension - components: - - pos: 32.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27093 - type: CableApcExtension - components: - - pos: 32.5,-96.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27094 - type: CableApcExtension - components: - - pos: 35.5,-92.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27095 - type: CableApcExtension - components: - - pos: 34.5,-92.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27096 - type: CableApcExtension - components: - - pos: 33.5,-92.5 - parent: 8364 - type: Transform -- uid: 27097 - type: CableApcExtension - components: - - pos: 32.5,-92.5 - parent: 8364 - type: Transform -- uid: 27098 - type: CableApcExtension - components: - - pos: 31.5,-92.5 - parent: 8364 - type: Transform -- uid: 27099 - type: CableApcExtension - components: - - pos: 32.5,-91.5 - parent: 8364 - type: Transform -- uid: 27100 - type: CableApcExtension - components: - - pos: 32.5,-90.5 - parent: 8364 - type: Transform -- uid: 27101 - type: CableApcExtension - components: - - pos: 32.5,-89.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27102 - type: CableApcExtension - components: - - pos: 32.5,-88.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27103 - type: CableApcExtension - components: - - pos: 32.5,-93.5 - parent: 8364 - type: Transform -- uid: 27104 - type: CableApcExtension - components: - - pos: 21.5,-92.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27105 - type: CableApcExtension - components: - - pos: 22.5,-92.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27106 - type: CableApcExtension - components: - - pos: 23.5,-92.5 - parent: 8364 - type: Transform -- uid: 27107 - type: CableApcExtension - components: - - pos: 24.5,-92.5 - parent: 8364 - type: Transform -- uid: 27108 - type: CableApcExtension - components: - - pos: 24.5,-91.5 - parent: 8364 - type: Transform -- uid: 27109 - type: CableApcExtension - components: - - pos: 24.5,-90.5 - parent: 8364 - type: Transform -- uid: 27110 - type: CableApcExtension - components: - - pos: 24.5,-89.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27111 - type: CableApcExtension - components: - - pos: 24.5,-93.5 - parent: 8364 - type: Transform -- uid: 27112 - type: CableApcExtension - components: - - pos: 24.5,-94.5 - parent: 8364 - type: Transform -- uid: 27113 - type: CableApcExtension - components: - - pos: 24.5,-95.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27114 - type: CableApcExtension - components: - - pos: 24.5,-96.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27115 - type: CableApcExtension - components: - - pos: 24.5,-97.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27116 - type: CableApcExtension - components: - - pos: 24.5,-98.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27117 - type: CableApcExtension - components: - - pos: 24.5,-99.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27118 - type: CableApcExtension - components: - - pos: 24.5,-100.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27119 - type: CableApcExtension - components: - - pos: 24.5,-101.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27120 - type: CableApcExtension - components: - - pos: 24.5,-102.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27121 - type: CableApcExtension - components: - - pos: 24.5,-103.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27122 - type: CableApcExtension - components: - - pos: 23.5,-103.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27123 - type: CableApcExtension - components: - - pos: 23.5,-104.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27124 - type: CableApcExtension - components: - - pos: 31.5,-86.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27125 - type: CableApcExtension - components: - - pos: 30.5,-86.5 - parent: 8364 - type: Transform -- uid: 27126 - type: CableApcExtension - components: - - pos: 29.5,-86.5 - parent: 8364 - type: Transform -- uid: 27127 - type: CableApcExtension - components: - - pos: 28.5,-86.5 - parent: 8364 - type: Transform -- uid: 27128 - type: CableApcExtension - components: - - pos: 28.5,-87.5 - parent: 8364 - type: Transform -- uid: 27129 - type: CableApcExtension - components: - - pos: 28.5,-88.5 - parent: 8364 - type: Transform -- uid: 27130 - type: CableApcExtension - components: - - pos: 28.5,-89.5 - parent: 8364 - type: Transform -- uid: 27131 - type: CableApcExtension - components: - - pos: 28.5,-90.5 - parent: 8364 - type: Transform -- uid: 27132 - type: CableApcExtension - components: - - pos: 28.5,-91.5 - parent: 8364 - type: Transform -- uid: 27133 - type: CableApcExtension - components: - - pos: 28.5,-92.5 - parent: 8364 - type: Transform -- uid: 27134 - type: CableApcExtension - components: - - pos: 28.5,-93.5 - parent: 8364 - type: Transform -- uid: 27135 - type: CableApcExtension - components: - - pos: 28.5,-85.5 - parent: 8364 - type: Transform -- uid: 27136 - type: CableApcExtension - components: - - pos: 28.5,-84.5 - parent: 8364 - type: Transform -- uid: 27137 - type: CableApcExtension - components: - - pos: 28.5,-83.5 - parent: 8364 - type: Transform -- uid: 27138 - type: CableApcExtension - components: - - pos: 28.5,-82.5 - parent: 8364 - type: Transform -- uid: 27139 - type: CableApcExtension - components: - - pos: 28.5,-81.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27140 - type: CableApcExtension - components: - - pos: 28.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27141 - type: CableApcExtension - components: - - pos: 28.5,-79.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27142 - type: CableApcExtension - components: - - pos: 28.5,-78.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27143 - type: CableApcExtension - components: - - pos: 27.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27144 - type: CableApcExtension - components: - - pos: 26.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27145 - type: CableApcExtension - components: - - pos: 25.5,-80.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27146 - type: CableApcExtension - components: - - pos: 29.5,-85.5 - parent: 8364 - type: Transform -- uid: 27147 - type: CableApcExtension - components: - - pos: 30.5,-85.5 - parent: 8364 - type: Transform -- uid: 27148 - type: CableApcExtension - components: - - pos: 31.5,-85.5 - parent: 8364 - type: Transform -- uid: 27149 - type: CableApcExtension - components: - - pos: 32.5,-85.5 - parent: 8364 - type: Transform -- uid: 27150 - type: AirCanister - components: - - pos: 22.5,-89.5 - parent: 8364 - type: Transform -- uid: 27151 - type: AirCanister - components: - - pos: 24.5,-88.5 - parent: 8364 - type: Transform -- uid: 27152 - type: PortableScrubber - components: - - pos: 22.5,-91.5 - parent: 8364 - type: Transform -- uid: 27153 - type: Rack - components: - - pos: 23.5,-88.5 - parent: 8364 - type: Transform -- uid: 27154 - type: Rack - components: - - pos: 34.5,-90.5 - parent: 8364 - type: Transform -- uid: 27155 - type: FoodBoxDonkpocketGondola - components: - - pos: 26.502972,-87.37317 - parent: 8364 - type: Transform -- uid: 27156 - type: PottedPlant6 - components: - - pos: 27.518597,-87.763794 - parent: 8364 - type: Transform -- uid: 27157 - type: PoweredSmallLight - components: - - pos: 29.5,-83.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27158 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-87.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27159 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-90.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27160 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-90.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27161 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-90.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27162 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-81.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27163 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-101.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27164 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-97.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27165 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-97.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27166 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-101.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27167 - type: PoweredSmallLight - components: - - pos: 26.5,-105.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27168 - type: PoweredSmallLight - components: - - pos: 30.5,-105.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27169 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-109.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27170 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-109.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27171 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-114.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27172 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-114.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27173 - type: Paper - components: - - pos: 26.502972,-105.49065 - parent: 8364 - type: Transform -- uid: 27174 - type: Paper - components: - - pos: 26.502972,-105.49065 - parent: 8364 - type: Transform -- uid: 27175 - type: BoxFolderWhite - components: - - pos: 26.534222,-106.3969 - parent: 8364 - type: Transform -- uid: 27176 - type: Pen - components: - - pos: 26.706097,-106.16252 - parent: 8364 - type: Transform -- uid: 27177 - type: Wrench - components: - - pos: 33.549847,-95.50195 - parent: 8364 - type: Transform -- uid: 27178 - type: GasPort - components: - - pos: 22.5,-91.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 27179 - type: GasPipeStraight - components: - - pos: 22.5,-92.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27180 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-93.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27181 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-93.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27182 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 21.5,-94.5 - parent: 8364 - type: Transform - - bodyType: Static - type: Physics -- uid: 27183 - type: ExtinguisherCabinetFilled - components: - - pos: 25.5,-88.5 - parent: 8364 - type: Transform -- uid: 27184 - type: ExtinguisherCabinetFilled - components: - - pos: 31.5,-88.5 - parent: 8364 - type: Transform -- uid: 27185 - type: SignSecureMed - components: - - pos: 30.5,-82.5 - parent: 8364 - type: Transform -- uid: 27186 - type: SignSecureMed - components: - - pos: 26.5,-82.5 - parent: 8364 - type: Transform -- uid: 27187 - type: SignSecureMed - components: - - pos: 26.5,-93.5 - parent: 8364 - type: Transform -- uid: 27188 - type: SignSecureMed - components: - - pos: 30.5,-93.5 - parent: 8364 - type: Transform -- uid: 27189 - type: MachineFrame - components: - - pos: 33.5,-85.5 - parent: 8364 - type: Transform -- uid: 27190 - type: BaseComputer - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-86.5 - parent: 8364 - type: Transform -- uid: 27191 - type: Table - components: - - pos: 32.5,-88.5 - parent: 8364 - type: Transform -- uid: 27192 - type: Table - components: - - pos: 33.5,-88.5 - parent: 8364 - type: Transform -- uid: 27193 - type: ToolboxMechanicalFilled - components: - - pos: 34.48152,-90.32544 - parent: 8364 - type: Transform -- uid: 27194 - type: ToolboxElectricalFilled - components: - - pos: 34.60652,-90.48169 - parent: 8364 - type: Transform -- uid: 27195 - type: Multitool - components: - - pos: 33.528397,-88.48169 - parent: 8364 - type: Transform -- uid: 27196 - type: PowerCellRecharger - components: - - pos: 32.5,-88.5 - parent: 8364 - type: Transform -- uid: 27197 - type: WeaponTurretSyndicateBroken - components: - - pos: 23.5,-93.5 - parent: 8364 - type: Transform -- uid: 27198 - type: WeaponTurretSyndicateBroken - components: - - pos: 27.5,-93.5 - parent: 8364 - type: Transform -- uid: 27199 - type: WeaponTurretSyndicateBroken - components: - - pos: 29.5,-93.5 - parent: 8364 - type: Transform -- uid: 27200 - type: WeaponTurretSyndicateBroken - components: - - pos: 33.5,-93.5 - parent: 8364 - type: Transform -- uid: 27201 - type: WeaponTurretSyndicateBroken - components: - - pos: 26.5,-97.5 - parent: 8364 - type: Transform -- uid: 27202 - type: WeaponTurretSyndicateBroken - components: - - pos: 30.5,-97.5 - parent: 8364 - type: Transform -- uid: 27203 - type: WeaponTurretSyndicateBroken - components: - - pos: 30.5,-101.5 - parent: 8364 - type: Transform -- uid: 27204 - type: WeaponTurretSyndicateBroken - components: - - pos: 26.5,-101.5 - parent: 8364 - type: Transform -- uid: 27205 - type: WeaponTurretSyndicateBroken - components: - - pos: 25.5,-113.5 - parent: 8364 - type: Transform -- uid: 27206 - type: WeaponTurretSyndicateBroken - components: - - pos: 31.5,-113.5 - parent: 8364 - type: Transform -- uid: 27207 - type: WeaponTurretSyndicateBroken - components: - - pos: 31.5,-110.5 - parent: 8364 - type: Transform -- uid: 27208 - type: WeaponTurretSyndicateBroken - components: - - pos: 25.5,-110.5 - parent: 8364 - type: Transform -- uid: 27209 - type: PhoneInstrument - components: - - pos: 27.481524,-83.38469 - parent: 8364 - type: Transform -- uid: 27210 - type: Screwdriver - components: - - pos: 29.559649,-83.400314 - parent: 8364 - type: Transform -- uid: 27211 - type: RadioHandheld - components: - - pos: 29.481524,-83.494064 - parent: 8364 - type: Transform -- uid: 27212 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 22.5,-3.5 - parent: 8364 - type: Transform -- uid: 27213 - type: AirCanister - components: - - pos: -39.5,-13.5 - parent: 8364 - type: Transform -- uid: 27214 - type: AirCanister - components: - - pos: -39.5,-12.5 - parent: 8364 - type: Transform -- uid: 27215 - type: AirCanister - components: - - pos: -39.5,-11.5 - parent: 8364 - type: Transform -- uid: 27216 - type: AirCanister - components: - - pos: -39.5,-10.5 - parent: 8364 - type: Transform -- uid: 27217 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -8.5,36.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Entryway - type: SurveillanceCamera -- uid: 27218 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 11.5,-70.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - type: SurveillanceCamera -- uid: 27219 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 74.5,-49.5 - parent: 8364 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Anomaly Lab - type: SurveillanceCamera -- uid: 27220 - type: ShuttersNormalOpen - components: - - pos: 7.5,-23.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 27222 - type: SignalReceiver -- uid: 27221 - type: ShuttersNormalOpen - components: - - pos: 8.5,-23.5 - parent: 8364 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 27222 - type: SignalReceiver -- uid: 27222 - type: SignalButton - components: - - pos: 9.5,-22.5 - parent: 8364 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 27221 - - port: Toggle - uid: 27220 - - port: Toggle - uid: 8158 - type: SignalTransmitter -- uid: 27223 - type: CableApcExtension - components: - - pos: 10.5,-18.5 - parent: 8364 - type: Transform -- uid: 27224 - type: CableApcExtension - components: - - pos: 11.5,-18.5 - parent: 8364 - type: Transform -- uid: 27225 - type: CableApcExtension - components: - - pos: 12.5,-18.5 - parent: 8364 - type: Transform -- uid: 27226 - type: CableApcExtension - components: - - pos: 12.5,-19.5 - parent: 8364 - type: Transform -- uid: 27227 - type: PhoneInstrument - components: - - pos: -9.523602,-13.459726 - parent: 8364 - type: Transform -- uid: 27228 - type: WeaponCapacitorRecharger - components: - - pos: -9.5,-15.5 - parent: 8364 - type: Transform -- uid: 27229 - type: CigarGoldSpent - components: - - pos: -10.398602,-15.412851 - parent: 8364 - type: Transform -- uid: 27230 - type: WindowDirectional - components: - - pos: 24.5,-6.5 - parent: 8364 - type: Transform -- uid: 27231 - type: CableApcExtension - components: - - pos: 24.5,-4.5 - parent: 8364 - type: Transform -- uid: 27232 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 23.5,-5.5 - parent: 8364 - type: Transform -- uid: 27233 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-7.5 - parent: 8364 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27234 - type: CableApcExtension - components: - - pos: 25.5,-4.5 - parent: 8364 - type: Transform -- uid: 27235 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 23.5,-9.5 - parent: 8364 - type: Transform -- uid: 27236 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 22.5,-9.5 - parent: 8364 - type: Transform -- uid: 27237 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 18.5,-7.5 - parent: 8364 - type: Transform -- uid: 27238 - type: ChairWood - components: - - pos: 24.5,-7.5 - parent: 8364 - type: Transform -- uid: 27239 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-8.5 - parent: 8364 - type: Transform -- uid: 27240 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 22.5,-8.5 - parent: 8364 - type: Transform -- uid: 27241 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 23.5,-7.5 - parent: 8364 - type: Transform -- uid: 27242 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 24.5,-7.5 - parent: 8364 - type: Transform -- uid: 27243 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 23.5,-8.5 - parent: 8364 - type: Transform -- uid: 27244 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 23.5,-9.5 - parent: 8364 - type: Transform -- uid: 27245 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 19.5,-7.5 - parent: 8364 - type: Transform -- uid: 27246 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 8364 - type: Transform -- uid: 27247 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 24.5,-9.5 - parent: 8364 - type: Transform -- uid: 27248 - type: ChairWood - components: - - pos: 23.5,-7.5 - parent: 8364 - type: Transform -- uid: 27249 - type: RandomPosterLegit - components: - - pos: 17.5,-1.5 - parent: 8364 - type: Transform -- uid: 27250 - type: RandomPosterLegit - components: - - pos: 17.5,-2.5 - parent: 8364 - type: Transform -- uid: 27251 - type: RandomPosterLegit - components: - - pos: 17.5,-0.5 - parent: 8364 - type: Transform -- uid: 27252 - type: RandomPosterLegit - components: - - pos: 17.5,-5.5 - parent: 8364 - type: Transform -- uid: 27253 - type: RandomPosterLegit - components: - - pos: 17.5,-8.5 - parent: 8364 - type: Transform -- uid: 27254 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-2.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27255 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 24.5,-8.5 - parent: 8364 - type: Transform -- uid: 27256 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 24.5,-9.5 - parent: 8364 - type: Transform -- uid: 27257 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 25.5,-7.5 - parent: 8364 - type: Transform -- uid: 27258 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 25.5,-8.5 - parent: 8364 - type: Transform -- uid: 27259 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 25.5,-9.5 - parent: 8364 - type: Transform -- uid: 27260 - type: RandomFoodSingle - components: - - pos: 19.5,-9.5 - parent: 8364 - type: Transform -- uid: 27261 - type: RandomFoodSingle - components: - - pos: 20.5,-6.5 - parent: 8364 - type: Transform -- uid: 27262 - type: RandomDrinkGlass - components: - - pos: 18.5,-6.5 - parent: 8364 - type: Transform -- uid: 27263 - type: RandomDrinkGlass - components: - - pos: 28.5,-7.5 - parent: 8364 - type: Transform -- uid: 27264 - type: RandomFoodSingle - components: - - pos: 19.5,-3.5 - parent: 8364 - type: Transform -- uid: 27265 - type: SmokingPipeFilledTobacco - components: - - pos: 23.548721,-3.4380002 - parent: 8364 - type: Transform -- uid: 27266 - type: CarpetBlue - components: - - pos: 19.5,-3.5 - parent: 8364 - type: Transform -- uid: 27267 - type: CarpetBlue - components: - - pos: 20.5,-3.5 - parent: 8364 - type: Transform -- uid: 27268 - type: CarpetBlue - components: - - pos: 21.5,-3.5 - parent: 8364 - type: Transform -- uid: 27269 - type: CarpetBlue - components: - - pos: 22.5,-3.5 - parent: 8364 - type: Transform -- uid: 27270 - type: CarpetBlue - components: - - pos: 23.5,-3.5 - parent: 8364 - type: Transform -- uid: 27271 - type: CarpetBlue - components: - - pos: 24.5,-3.5 - parent: 8364 - type: Transform -- uid: 27272 - type: d6Dice - components: - - pos: 20.361593,-9.293598 - parent: 8364 - type: Transform -- uid: 27273 - type: d6Dice - components: - - pos: 20.517843,-9.418598 - parent: 8364 - type: Transform -- uid: 27274 - type: Grille - components: - - pos: 0.5,44.5 - parent: 8364 - type: Transform -- uid: 27275 - type: Grille - components: - - pos: -0.5,44.5 - parent: 8364 - type: Transform -- uid: 27276 - type: Catwalk - components: - - pos: -0.5,41.5 - parent: 8364 - type: Transform -- uid: 27277 - type: Catwalk - components: - - pos: 0.5,41.5 - parent: 8364 - type: Transform -- uid: 27278 - type: Catwalk - components: - - pos: 1.5,41.5 - parent: 8364 - type: Transform -- uid: 27279 - type: Catwalk - components: - - pos: 2.5,41.5 - parent: 8364 - type: Transform -- uid: 27280 - type: Catwalk - components: - - pos: 3.5,41.5 - parent: 8364 - type: Transform -- uid: 27281 - type: PoweredlightLED - components: - - rot: 3.141592653589793 rad - pos: -1.5,41.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27282 - type: PoweredlightLED - components: - - rot: 3.141592653589793 rad - pos: 3.5,41.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27283 - type: Grille - components: - - pos: 2.5,44.5 - parent: 8364 - type: Transform -- uid: 27284 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 3.5,44.5 - parent: 8364 - type: Transform -- uid: 27285 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -1.5,44.5 - parent: 8364 - type: Transform -- uid: 27286 - type: ClosetBombFilled - components: - - pos: 10.5,40.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.9556966 - - 18.642859 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 27287 - type: LockerSecurityFilled - components: - - pos: 8.5,40.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.9556966 - - 18.642859 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 27288 - type: LockerSecurityFilled - components: - - pos: 8.5,39.5 - parent: 8364 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 4.9556966 - - 18.642859 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 27289 - type: SpawnVehicleSecway - components: - - pos: 9.5,35.5 - parent: 8364 - type: Transform -- uid: 27290 - type: VehicleKeySecway - components: - - pos: 6.925049,35.639854 - parent: 8364 - type: Transform -- uid: 27291 - type: WeaponCapacitorRecharger - components: - - pos: -2.5,38.5 - parent: 8364 - type: Transform -- uid: 27292 - type: CarpetPink - components: - - pos: 11.5,9.5 - parent: 8364 - type: Transform -- uid: 27293 - type: CarpetPink - components: - - pos: 11.5,10.5 - parent: 8364 - type: Transform -- uid: 27294 - type: CarpetPink - components: - - pos: 11.5,11.5 - parent: 8364 - type: Transform -- uid: 27295 - type: CarpetPink - components: - - pos: 12.5,9.5 - parent: 8364 - type: Transform -- uid: 27296 - type: CarpetPink - components: - - pos: 12.5,10.5 - parent: 8364 - type: Transform -- uid: 27297 - type: CarpetPink - components: - - pos: 12.5,11.5 - parent: 8364 - type: Transform -- uid: 27298 - type: CarpetPink - components: - - pos: 13.5,9.5 - parent: 8364 - type: Transform -- uid: 27299 - type: CarpetPink - components: - - pos: 13.5,10.5 - parent: 8364 - type: Transform -- uid: 27300 - type: CarpetPink - components: - - pos: 13.5,11.5 - parent: 8364 - type: Transform -- uid: 27301 - type: CarpetPink - components: - - pos: 14.5,9.5 - parent: 8364 - type: Transform -- uid: 27302 - type: CarpetPink - components: - - pos: 14.5,10.5 - parent: 8364 - type: Transform -- uid: 27303 - type: CarpetPink - components: - - pos: 14.5,11.5 - parent: 8364 - type: Transform -- uid: 27304 - type: CarpetPink - components: - - pos: 15.5,9.5 - parent: 8364 - type: Transform -- uid: 27305 - type: CarpetPink - components: - - pos: 15.5,10.5 - parent: 8364 - type: Transform -- uid: 27306 - type: CarpetPink - components: - - pos: 15.5,11.5 - parent: 8364 - type: Transform -- uid: 27307 - type: TableGlass - components: - - pos: -6.5,29.5 - parent: 8364 - type: Transform -- uid: 27308 - type: BedsheetMedical - components: - - pos: -6.5,31.5 - parent: 8364 - type: Transform -- uid: 27309 - type: LandMineExplosive - components: - - pos: -0.5,43.5 - parent: 8364 - type: Transform -- uid: 27310 - type: BikeHorn - components: - - pos: 20.5,3.5 - parent: 8364 - type: Transform -- uid: 27311 - type: BedsheetMedical - components: - - pos: -6.5,30.5 - parent: 8364 - type: Transform -- uid: 27312 - type: FireAlarm - components: - - pos: -9.5,28.5 - parent: 8364 - type: Transform - - devices: - - 26111 - - 7405 - - 7357 - type: DeviceList -- uid: 27313 - type: LandMineExplosive - components: - - pos: 2.5,43.5 - parent: 8364 - type: Transform -- uid: 27314 - type: SpawnPointResearchAssistant - components: - - pos: 71.5,-26.5 - parent: 8364 - type: Transform -- uid: 27315 - type: SpawnPointResearchAssistant - components: - - pos: 72.5,-26.5 - parent: 8364 - type: Transform -- uid: 27316 - type: CableMV - components: - - pos: -6.5,-51.5 - parent: 8364 - type: Transform -- uid: 27317 - type: CableMV - components: - - pos: -7.5,-51.5 - parent: 8364 - type: Transform -- uid: 27318 - type: CableMV - components: - - pos: -7.5,-49.5 - parent: 8364 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27319 - type: CableMV - components: - - pos: -6.5,-53.5 - parent: 8364 - type: Transform -- uid: 27320 - type: CableMV - components: - - pos: -6.5,-54.5 - parent: 8364 - type: Transform -- uid: 27321 - type: CableApcExtension - components: - - pos: -14.5,-50.5 - parent: 8364 - type: Transform -- uid: 27322 - type: CableApcExtension - components: - - pos: -12.5,-50.5 - parent: 8364 - type: Transform -- uid: 27323 - type: CableApcExtension - components: - - pos: -12.5,-56.5 - parent: 8364 - type: Transform -- uid: 27324 - type: CableApcExtension - components: - - pos: -14.5,-56.5 - parent: 8364 - type: Transform -- uid: 27325 - type: CableApcExtension - components: - - pos: -11.5,-50.5 - parent: 8364 - type: Transform -- uid: 27326 - type: CableApcExtension - components: - - pos: -15.5,-50.5 - parent: 8364 - type: Transform -- uid: 27327 - type: CableApcExtension - components: - - pos: -15.5,-56.5 - parent: 8364 - type: Transform -- uid: 27328 - type: CableApcExtension - components: - - pos: -11.5,-56.5 - parent: 8364 - type: Transform -- uid: 27329 - type: SurveillanceCameraRouterScience - components: - - pos: -15.5,-50.5 - parent: 8364 - type: Transform -- uid: 27330 - type: SurveillanceCameraRouterMedical - components: - - pos: -15.5,-49.5 - parent: 8364 - type: Transform -- uid: 27331 - type: SurveillanceCameraRouterEngineering - components: - - pos: -11.5,-49.5 - parent: 8364 - type: Transform -- uid: 27332 - type: SurveillanceCameraRouterSupply - components: - - pos: -11.5,-50.5 - parent: 8364 - type: Transform -- uid: 27333 - type: TelecomServer - components: - - pos: -14.5,-57.5 - parent: 8364 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 27334 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 27334 - type: EncryptionKeyCommand - components: - - flags: InContainer - type: MetaData - - parent: 27333 - type: Transform - - canCollide: False - type: Physics -- uid: 27335 - type: SurveillanceCameraRouterGeneral - components: - - pos: -11.5,-56.5 - parent: 8364 - type: Transform -- uid: 27336 - type: TelecomServer - components: - - pos: -14.5,-56.5 - parent: 8364 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 27337 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 27337 - type: EncryptionKeySecurity - components: - - flags: InContainer - type: MetaData - - parent: 27336 - type: Transform - - canCollide: False - type: Physics -- uid: 27338 - type: SurveillanceCameraRouterCommand - components: - - pos: -15.5,-57.5 - parent: 8364 - type: Transform -- uid: 27339 - type: SurveillanceCameraWirelessRouterEntertainment - components: - - pos: -15.5,-55.5 - parent: 8364 - type: Transform -- uid: 27340 - type: SurveillanceCameraRouterSecurity - components: - - pos: -15.5,-56.5 - parent: 8364 - type: Transform -- uid: 27341 - type: SurveillanceCameraRouterService - components: - - pos: -11.5,-57.5 - parent: 8364 - type: Transform -- uid: 27342 - type: TelecomServer - components: - - pos: -14.5,-49.5 - parent: 8364 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 27343 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 27343 - type: EncryptionKeyMedical - components: - - flags: InContainer - type: MetaData - - parent: 27342 - type: Transform - - canCollide: False - type: Physics -- uid: 27344 - type: TelecomServer - components: - - pos: -14.5,-50.5 - parent: 8364 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 27345 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 27345 - type: EncryptionKeyScience - components: - - flags: InContainer - type: MetaData - - parent: 27344 - type: Transform - - canCollide: False - type: Physics -- uid: 27346 - type: TelecomServer - components: - - pos: -12.5,-50.5 - parent: 8364 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 27347 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 27347 - type: EncryptionKeyCargo - components: - - flags: InContainer - type: MetaData - - parent: 27346 - type: Transform - - canCollide: False - type: Physics -- uid: 27348 - type: TelecomServer - components: - - pos: -12.5,-49.5 - parent: 8364 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 27349 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 27349 - type: EncryptionKeyEngineering - components: - - flags: InContainer - type: MetaData - - parent: 27348 - type: Transform - - canCollide: False - type: Physics -- uid: 27350 - type: TelecomServer - components: - - pos: -12.5,-57.5 - parent: 8364 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 27351 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 27351 - type: EncryptionKeyService - components: - - flags: InContainer - type: MetaData - - parent: 27350 - type: Transform - - canCollide: False - type: Physics -- uid: 27352 - type: TelecomServer - components: - - pos: -12.5,-56.5 - parent: 8364 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 27353 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 27353 - type: EncryptionKeyCommon - components: - - flags: InContainer - type: MetaData - - parent: 27352 - type: Transform - - canCollide: False - type: Physics -- uid: 27354 - type: SurveillanceCameraRouterConstructed - components: - - pos: -15.5,-51.5 - parent: 8364 - type: Transform -- uid: 27355 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-50.5 - parent: 8364 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27356 - type: CigarSpent - components: - - pos: -8.459225,-50.202682 - parent: 8364 - type: Transform -- uid: 27357 - type: BoxFolderYellow - components: - - pos: -8.5061,-50.749557 - parent: 8364 - type: Transform -... diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml deleted file mode 100644 index f475f27489..0000000000 --- a/Resources/Maps/centcomm.yml +++ /dev/null @@ -1,47588 +0,0 @@ -meta: - format: 3 - name: DemoStation - author: Space-Wizards - postmapinit: false -tilemap: - 0: Space - 10: FloorAsteroidSand - 12: FloorBar - 15: FloorBlueCircuit - 22: FloorDark - 40: FloorGrass - 44: FloorGreenCircuit - 47: FloorKitchen - 49: FloorLino - 58: FloorReinforced - 68: FloorSteel - 78: FloorTechMaint - 81: FloorWhite - 91: FloorWood - 93: Lattice - 94: Plating -entities: -- uid: 0 - components: - - name: Central Command - type: MetaData - - parent: invalid - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAAXgAAABYAAAAWAAAAXgAAAEQAAABEAAAARAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAABeAAAACgAAAF4AAAAWAAAAFgAAABYAAABeAAAARAAAAEQAAABEAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAFgAAABYAAAAWAAAAXgAAAEQAAABEAAAARAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAWAAAAFgAAABYAAAAWAAAAFgAAAF4AAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAABYAAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAAoAAABeAAAAFgAAABYAAAAWAAAAXgAAAEQAAABEAAAARAAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAABeAAAAXgAAACgAAABeAAAAFgAAAF4AAAAoAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAF4AAAAoAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAABeAAAAKAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAEQAAABEAAAAXgAAABYAAABbAAAAMQAAADEAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAWAAAAFgAAABYAAABEAAAARAAAAF4AAAAWAAAAWwAAADEAAAAxAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAABYAAABeAAAARAAAAEQAAABeAAAAFgAAAFsAAAAxAAAAMQAAAA== - 0,-1: - ind: 0,-1 - tiles: RAAAAEQAAABeAAAAFgAAABYAAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABEAAAARAAAAEQAAAAWAAAAXgAAAF4AAABEAAAARAAAAF4AAAAWAAAAFgAAABYAAABeAAAACgAAAF4AAAAWAAAARAAAAEQAAABEAAAAFgAAAF4AAABeAAAARAAAAEQAAABeAAAAFgAAABYAAAAWAAAAXgAAAF4AAABeAAAAFgAAAEQAAABEAAAARAAAABYAAABeAAAAXgAAAEQAAABEAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAABEAAAARAAAAF4AAAAWAAAAFgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAAFgAAABYAAAAWAAAAXgAAAAoAAABeAAAACgAAAAoAAAAKAAAAXgAAAAoAAAAKAAAACgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAACgAAABeAAAAFgAAAF4AAAAoAAAAXgAAAF4AAABRAAAARAAAAEQAAABEAAAARAAAAEQAAABRAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAUQAAAEQAAABEAAAARAAAAEQAAABEAAAAUQAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAAAoAAAAXgAAAFEAAABEAAAARAAAAEQAAABEAAAARAAAAFEAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAKAAAAF4AAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAF4AAABRAAAAXgAAADEAAABbAAAAFgAAAF4AAABEAAAARAAAAF4AAAAWAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAxAAAAWwAAABYAAABeAAAARAAAAEQAAAAWAAAAFgAAABYAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAMQAAAFsAAAAWAAAAXgAAAEQAAABEAAAAXgAAABYAAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAA== - -1,0: - ind: -1,0 - tiles: RAAAAEQAAABEAAAARAAAAEQAAABEAAAAFgAAABYAAAAWAAAARAAAAEQAAAAWAAAAFgAAABYAAAAWAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAEQAAABEAAAAXgAAABYAAAAWAAAAFgAAABYAAAAoAAAAKAAAAF4AAAAoAAAAKAAAACgAAABeAAAAXgAAAF4AAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACgAAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAAF4AAAAoAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAF4AAABeAAAAFgAAABYAAAAWAAAAXgAAAF4AAAAKAAAAXgAAABYAAABeAAAACgAAAF4AAAAWAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAAF4AAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAF4AAABEAAAARAAAAEQAAABEAAAAMQAAABYAAABeAAAAFgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAABYAAABeAAAARAAAAEQAAABEAAAARAAAADEAAAAWAAAAXgAAABYAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAWAAAAXgAAAEQAAABEAAAARAAAAEQAAAAxAAAAFgAAAF4AAAAWAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAFgAAAF4AAABEAAAARAAAAEQAAABEAAAAFgAAABYAAABeAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAABeAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAEQAAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAXgAAAEQAAABEAAAARAAAAF4AAABEAAAARAAAAEQAAABEAAAAFgAAAEQAAABEAAAARAAAAEQAAABEAAAAFgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAA== - 0,0: - ind: 0,0 - tiles: FgAAABYAAAAWAAAAFgAAAEQAAABEAAAAFgAAABYAAAAWAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAABYAAAAWAAAAFgAAAF4AAABEAAAARAAAAF4AAAAWAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAKAAAAF4AAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAF4AAAAoAAAAXgAAACgAAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAABeAAAAKAAAAF4AAAAKAAAACgAAAF4AAAAKAAAACgAAAAoAAABeAAAACgAAAAoAAABeAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAF4AAAAWAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABEAAAARAAAAEQAAAAWAAAAFgAAABYAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAWAAAARAAAAEQAAABEAAAAXgAAABYAAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAEQAAABEAAAARAAAABYAAAAWAAAAFgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAABYAAABEAAAARAAAAEQAAABeAAAAFgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAA== - 1,-1: - ind: 1,-1 - tiles: TgAAAE4AAABeAAAARAAAAEQAAABEAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABEAAAARAAAAF4AAAAWAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAABYAAAAWAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAABeAAAAFgAAABYAAABeAAAAFgAAAF4AAAAWAAAAFgAAABYAAAAWAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAXgAAABYAAAAWAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAABYAAAAWAAAAFgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAACgAAAAoAAAAKAAAACgAAABeAAAAFgAAABYAAAAWAAAAFgAAABYAAABeAAAAKAAAACgAAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAF4AAABeAAAAXgAAABYAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAACgAAAF4AAAAWAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAFgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAAAWAAAAXgAAABYAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAWAAAAFgAAABYAAAAWAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAABYAAABeAAAAFgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAA== - 1,0: - ind: 1,0 - tiles: FgAAABYAAAAWAAAAFgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAAAWAAAAXgAAABYAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAAAWAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAAoAAABeAAAAFgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAAXgAAABYAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAKAAAACgAAAAoAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAKAAAAXgAAACgAAAAoAAAAKAAAACgAAAAoAAAAXgAAACgAAAAoAAAAKAAAAF4AAAAoAAAAKAAAACgAAABeAAAAXgAAAF4AAAAoAAAAKAAAACgAAAAoAAAAKAAAAF4AAAAoAAAAKAAAACgAAABeAAAAKAAAACgAAAAoAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAMQAAADEAAAAxAAAAFgAAABYAAAAWAAAAWwAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAFgAAADEAAAAxAAAAMQAAABYAAAAWAAAAFgAAAFsAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAABYAAAAxAAAAMQAAADEAAAAWAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAMQAAADEAAAAxAAAAFgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAFgAAADEAAAAxAAAAMQAAABYAAABeAAAAFgAAABYAAABeAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAA== - 0,-2: - ind: 0,-2 - tiles: AAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAFgAAABYAAABbAAAAFgAAABYAAAAWAAAADAAAAAwAAAAMAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAF4AAABOAAAAWwAAABYAAAAWAAAAFgAAAAwAAAAMAAAAFgAAABYAAABbAAAAWwAAABYAAABeAAAARAAAAEQAAABeAAAAXgAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAABYAAAAWAAAAWwAAAFsAAAAWAAAAXgAAAEQAAABEAAAARAAAAEQAAAAMAAAADAAAABYAAAAWAAAAFgAAAAwAAAAWAAAAFgAAAFsAAABbAAAAFgAAAF4AAABEAAAARAAAAEQAAABEAAAADAAAAAwAAAAWAAAAFgAAABYAAAAMAAAAFgAAABYAAABbAAAAWwAAABYAAABeAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABeAAAAWwAAAFsAAAAWAAAAXgAAAEQAAABEAAAARAAAAEQAAAAWAAAAXgAAABYAAABeAAAAKAAAAF4AAABbAAAAWwAAAFsAAABbAAAAFgAAAF4AAABEAAAARAAAAEQAAABEAAAAFgAAAF4AAAAWAAAAXgAAACgAAABeAAAAWwAAAFsAAABbAAAAWwAAABYAAABEAAAARAAAAEQAAABeAAAAXgAAABYAAABeAAAAFgAAAF4AAAAoAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAXgAAAEQAAABEAAAAXgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAE4AAABEAAAARAAAAF4AAABEAAAAXgAAAF4AAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAARAAAAEQAAABeAAAARAAAAEQAAABeAAAACgAAAAoAAABeAAAAFgAAABYAAABeAAAAXgAAAA== - 1,-2: - ind: 1,-2 - tiles: FgAAABYAAABeAAAAXQAAADoAAAA6AAAAXQAAADoAAAA6AAAAXQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAXgAAAF0AAAA6AAAAOgAAAF0AAAA6AAAAOgAAAF0AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABOAAAATgAAAF4AAABdAAAAOgAAADoAAABdAAAAOgAAADoAAABdAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAF4AAAAWAAAAFgAAABYAAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAOgAAADoAAAA6AAAARAAAAEQAAAAWAAAAFgAAABYAAAAWAAAAFgAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAADoAAABeAAAAXgAAAEQAAABEAAAAXgAAABYAAAAWAAAAFgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAF4AAAA6AAAALAAAACwAAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAADoAAAAPAAAADwAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAF4AAAA6AAAAXgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAOgAAADoAAAA6AAAARAAAAF4AAABeAAAAFgAAABYAAAAWAAAAXgAAAF4AAAAWAAAAFgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAWAAAARAAAAEQAAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAFgAAAEQAAABEAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAAXgAAAEQAAABeAAAAXgAAAF4AAABeAAAARAAAABYAAABEAAAARAAAAA== - -1,-2: - ind: -1,-2 - tiles: XgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAAwAAAAMAAAADAAAABYAAAAWAAAAFgAAAFsAAABbAAAAXgAAAEQAAABEAAAAXgAAABYAAAAWAAAAFgAAAF4AAAAMAAAADAAAAAwAAAAWAAAAFgAAABYAAABbAAAAWwAAAF4AAABEAAAARAAAAF4AAAAWAAAALwAAAC8AAAAWAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAWAAAARAAAAEQAAABeAAAAFgAAAC8AAAAvAAAAFgAAAAwAAAAMAAAAFgAAABYAAAAWAAAADAAAAAwAAAAMAAAAXgAAAEQAAABEAAAAXgAAABYAAAAvAAAALwAAABYAAAAMAAAADAAAABYAAAAWAAAAFgAAAAwAAAAMAAAADAAAABYAAABEAAAARAAAAF4AAAAWAAAALwAAAC8AAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAARAAAAEQAAABeAAAAFgAAAC8AAAAvAAAALwAAAC8AAABeAAAAKAAAAF4AAAAWAAAAXgAAABYAAAAWAAAAXgAAAEQAAABEAAAAFgAAABYAAAAvAAAALwAAAC8AAAAvAAAAXgAAACgAAABeAAAAFgAAAF4AAAAWAAAAFgAAAF4AAABEAAAARAAAAF4AAAAWAAAAFgAAABYAAAAWAAAAFgAAAF4AAAAoAAAAXgAAABYAAABeAAAAFgAAABYAAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAAXgAAAEQAAABeAAAARAAAAEQAAABEAAAAXgAAABYAAAAWAAAAXgAAAAoAAAAKAAAAXgAAAEQAAABEAAAAXgAAAEQAAABEAAAAXgAAAEQAAABEAAAARAAAAA== - 2,0: - ind: 2,0 - tiles: RAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAWwAAABYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAFsAAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAABYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAADEAAAAxAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-1: - ind: 2,-1 - tiles: RAAAAEQAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAF4AAAAoAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,1: - ind: -1,1 - tiles: FgAAAEQAAABEAAAARAAAAEQAAABEAAAAFgAAAF4AAABEAAAARAAAAEQAAABeAAAARAAAAEQAAABEAAAARAAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAABeAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAAAKAAAAXgAAABYAAABeAAAAAAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAAAWAAAAXgAAAAAAAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAABYAAAAWAAAAFgAAABYAAAAWAAAAAAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABdAAAAXQAAAF0AAABdAAAAAAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAAAAAAF0AAAAAAAAAAAAAAA== - 0,1: - ind: 0,1 - tiles: RAAAAEQAAABEAAAAXgAAACgAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABeAAAAFgAAABYAAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAAAWAAAAXgAAAAoAAABeAAAAWwAAAFsAAABbAAAAXgAAABYAAAAWAAAAXgAAAEQAAABEAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAFsAAABbAAAAWwAAAFsAAAAWAAAAFgAAAF4AAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAAAWAAAAFgAAABYAAABeAAAAFgAAABYAAAAWAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAAAWAAAAXgAAAF4AAAAWAAAAFgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAXgAAAEQAAABEAAAAXgAAABYAAAAWAAAAFgAAAF4AAABEAAAARAAAAF4AAAAWAAAAXgAAAF4AAAAWAAAAFgAAAEQAAABEAAAARAAAABYAAAAWAAAAFgAAABYAAAAWAAAARAAAAEQAAABEAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAAFgAAABYAAAAWAAAAXgAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAADoAAAA6AAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAAF4AAABeAAAAXgAAAF4AAAA6AAAAXgAAAF4AAAA6AAAAOgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAOgAAAA== - 2,-2: - ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAPAAAADwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAACwAAAAsAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,1: - ind: 1,1 - tiles: FgAAABYAAAAWAAAAFgAAABYAAABeAAAAFgAAABYAAABeAAAAWwAAADEAAAAxAAAAMQAAADEAAAAxAAAAWwAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAABYAAAAWAAAAXgAAAFsAAAAxAAAAMQAAADEAAAAxAAAAMQAAAFsAAABOAAAAXgAAABYAAABbAAAAWwAAABYAAAAWAAAAFgAAABYAAABbAAAAMQAAADEAAAAxAAAAMQAAADEAAABbAAAATgAAAF4AAAAWAAAAMQAAADEAAABeAAAAFgAAABYAAABeAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAF4AAABeAAAAFgAAADEAAAAxAAAAXgAAAF4AAAAWAAAAXgAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAWAAAAXgAAABYAAAAxAAAAMQAAAF4AAAAWAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAFgAAAF4AAAAWAAAAWwAAAFsAAAAWAAAAFgAAADEAAAAxAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAF4AAABeAAAAFgAAABYAAAAWAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,1: - ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,0: - ind: -2,0 - tiles: RAAAAEQAAABEAAAAFgAAABYAAAAWAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAFgAAABYAAABeAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAF4AAAAoAAAAFgAAABYAAAAWAAAAXgAAAF4AAAAWAAAAXgAAADEAAAAxAAAAWwAAAFsAAABbAAAAWwAAAFsAAABeAAAAXgAAAEQAAABEAAAARAAAABYAAABeAAAAFgAAAF4AAAAxAAAAMQAAAFsAAABbAAAAMQAAADEAAAAxAAAAXgAAAF4AAABEAAAARAAAAEQAAABeAAAAXgAAABYAAABeAAAAMQAAADEAAABbAAAAWwAAADEAAAAxAAAAMQAAABYAAAAWAAAAFgAAABYAAAAWAAAAXgAAABYAAAAWAAAAXgAAABYAAAAWAAAAWwAAAFsAAAAxAAAAMQAAADEAAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAF4AAAAWAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAWwAAAFsAAABbAAAAWwAAAFsAAAAxAAAAMQAAADEAAABeAAAAMQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAFsAAAAxAAAAMQAAADEAAABbAAAAMQAAADEAAAAxAAAAXgAAADEAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAABbAAAAMQAAADEAAAAxAAAAWwAAADEAAAAxAAAAMQAAADEAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAxAAAAMQAAADEAAABeAAAAFgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUQAAAFEAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFEAAABRAAAAXgAAAF0AAABdAAAAXgAAAA== - -1,2: - ind: -1,2 - tiles: AAAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAABYAAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,1: - ind: 2,1 - tiles: FgAAADEAAAAxAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAxAAAAMQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAMQAAADEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAMQAAABYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAADEAAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,2: - ind: 0,2 - tiles: XgAAAF4AAAA6AAAAOgAAAF4AAAAWAAAAFgAAAF4AAAAWAAAAFgAAABYAAABeAAAAFgAAABYAAABeAAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,2: - ind: 1,2 - tiles: OgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAMQAAADEAAAAxAAAAFgAAAEQAAAAWAAAARAAAABYAAABEAAAAFgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAFgAAADEAAAAxAAAAMQAAAEQAAAAWAAAARAAAABYAAABEAAAAFgAAAEQAAAAWAAAAAAAAAAAAAAAAAAAAXgAAABYAAAAxAAAAMQAAADEAAAAWAAAARAAAACwAAAAsAAAARAAAAEQAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAMQAAADEAAAAxAAAARAAAABYAAABEAAAAFgAAAEQAAAAWAAAARAAAABYAAAAAAAAAAAAAAAAAAABeAAAAFgAAADEAAAAxAAAAMQAAABYAAABEAAAAFgAAAEQAAAAWAAAARAAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAXgAAAEQAAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAAAWAAAAFgAAABYAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAABYAAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAA== - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAA== - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,-3: - ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAAWAAAAFgAAAF4AAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAABYAAAAWAAAAXgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAAWAAAAFgAAAF4AAABeAAAAFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAFgAAABYAAABeAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAAAAAAAAAAAAFgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAAAAAAAAAAAAAA== - 0,-3: - ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAXgAAABYAAAAWAAAAFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAABeAAAAFgAAABYAAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABeAAAAXgAAABYAAAAWAAAAFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAAF4AAAAWAAAAFgAAABYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAF4AAABeAAAAAAAAAF4AAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAAXgAAAA== - 1,-3: - ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-3: - ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAFgAAAA== - -2,-2: - ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAAXgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAABeAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAF4AAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - id: centcomm - type: BecomesStation - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 826: 31,-27 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 408: -11,28 - 481: 15,31 - 483: 5,31 - 947: 19,-26 - 1033: 3,-43 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 383: -6,15 - 407: -11,24 - 482: 3,31 - 484: 13,31 - 946: 21,-26 - 1034: -5,-43 - - node: - angle: -1.5707963267948966 rad - color: '#DE3A3A96' - id: Arrows - decals: - 529: 8,28 - - node: - angle: 1.5707963267948966 rad - color: '#DE3A3A96' - id: Arrows - decals: - 528: 10,28 - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 817: 33,-21 - 818: 31,-21 - 822: 29,-26 - 971: 17,-31 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 823: 29,-22 - 824: 33,-27 - 836: 32,-14 - - node: - angle: -3.141592653589793 rad - color: '#52B4E9C3' - id: ArrowsGreyscale - decals: - 313: 11,-15 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 49: 31,-6 - 50: 31,-4 - 51: 30,-6 - 52: 30,-4 - 53: 31,2 - 54: 30,2 - 55: 31,4 - 56: 30,4 - 103: 14,-3 - 104: 12,-3 - 235: -3,-13 - 236: 1,-13 - 237: -1,-12 - 282: 4,0 - 283: -6,0 - 379: -4,10 - 380: -4,15 - 384: -6,16 - 385: -6,17 - 386: -6,14 - 389: -7,28 - 390: -8,28 - 391: -9,28 - 392: -7,26 - 393: -8,26 - 394: -9,26 - 395: -7,24 - 396: -8,24 - 397: -9,24 - 398: -7,22 - 399: -8,22 - 400: -9,22 - 572: 9,15 - 574: 14,13 - 575: 14,11 - 576: 6,11 - 577: 6,13 - 582: 11,25 - 583: 8,22 - 584: -1,13 - 585: -1,11 - 587: -34,1 - 588: -34,-3 - 591: -31,-2 - 592: -30,-2 - 593: -31,0 - 594: -30,0 - 626: -22,0 - 627: -21,-2 - 628: -23,-2 - 629: -14,-1 - 681: -15,-8 - 682: -15,-7 - 683: -15,-6 - 684: -12,-8 - 685: -12,-7 - 686: -12,-6 - 721: 3,-18 - 722: 1,-17 - 723: -1,-16 - 724: -3,-17 - 725: -5,-18 - 726: 4,25 - 727: 4,28 - 728: 14,28 - 729: 14,25 - 730: 14,22 - 819: 29,-23 - 820: 29,-25 - 827: 32,-12 - 832: 32,-13 - 833: 31,-12 - 834: 32,-11 - 835: 33,-12 - 932: 23,-24 - 933: 23,-23 - 934: 28,-14 - 935: 27,-14 - 936: 34,-19 - 937: 34,-16 - 944: 17,-26 - 945: 23,-26 - 948: 17,-32 - 949: 16,-32 - 988: -20,-27 - 989: -19,-27 - 990: -20,-25 - 991: -19,-25 - 1035: -5,-41 - 1036: -5,-44 - 1043: 3,-41 - 1044: 3,-44 - - node: - color: '#DE3A3A96' - id: Bot - decals: - 307: 9,6 - 308: 13,4 - 541: 8,31 - 542: 10,31 - 543: 12,31 - 545: 6,31 - 798: 22,-11 - 799: 19,-11 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 314: 13,-14 - 315: 13,-15 - 581: 8,25 - 828: 33,-11 - 829: 31,-13 - 1039: -6,-42 - 1040: -6,-43 - 1041: 4,-43 - 1042: 4,-42 - - node: - color: '#FFFFFFFF' - id: BotRight - decals: - 830: 33,-13 - 831: 31,-11 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 1150: 19,15 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 1156: 17,15 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 1154: 19,11 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 1155: 17,11 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 1151: 19,14 - 1152: 19,13 - 1153: 19,12 - 1164: 33,21 - 1165: 33,22 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 1158: 18,15 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 1157: 18,11 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 1159: 17,12 - 1160: 17,13 - 1161: 17,14 - 1162: 23,21 - 1163: 23,22 - - node: - color: '#FFFFFFFF' - id: Bushb3 - decals: - 459: 10,8 - 758: 9.488686,-17.018105 - - node: - color: '#FFFFFFFF' - id: Bushc1 - decals: - 755: -11.564524,-16.986855 - - node: - color: '#FFFFFFFF' - id: Bushe1 - decals: - 150: 25.445843,7.7053776 - 179: 11.130266,-9.945588 - 324: -4,18 - 465: 10.845012,7.992337 - - node: - color: '#FFFFFFFF' - id: Bushe2 - decals: - 149: 26.461468,7.8616276 - 180: 14.583391,-9.976838 - 181: 13.520891,-10.008088 - - node: - color: '#FFFFFFFF' - id: Bushe3 - decals: - 151: 28.82894,6.877252 - 152: 23.178217,6.861627 - 323: 2,18 - 466: 9.048137,8.023587 - - node: - color: '#FFFFFFFF' - id: Bushe4 - decals: - 153: 18.801558,6.901756 - 154: 33.138065,6.979881 - - node: - color: '#FFFFFFFF' - id: Bushf1 - decals: - 178: 9.755266,-9.992463 - 464: 10.782512,8.007962 - - node: - color: '#FFFFFFFF' - id: Bushf2 - decals: - 177: 10.411516,-10.008088 - 322: -4,18 - 463: 9.141887,8.007962 - - node: - color: '#FFFFFFFF' - id: Bushf3 - decals: - 176: 14.052141,-10.008088 - 321: 2,18 - - node: - color: '#FFFFFFFF' - id: Bushg1 - decals: - 656: -11.486805,2.0009332 - - node: - color: '#FFFFFFFF' - id: Bushh1 - decals: - 320: -4,18 - 467: 13.141887,8.086087 - 468: 6.0012617,8.086087 - 475: 8.798137,7.961087 - 756: -10.814524,-16.955605 - 760: 8.848061,-16.97123 - - node: - color: '#FFFFFFFF' - id: Bushh2 - decals: - 757: -12.142649,-17.03373 - - node: - color: '#FFFFFFFF' - id: Bushh3 - decals: - 185: 10.099016,-9.945588 - 319: 2,18 - 474: 11.282512,7.929837 - 759: 10.098061,-16.97123 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 141: 22.818914,7.5022526 - 142: 19.100164,8.142878 - 143: 27.037664,6.330377 - 144: 29.052135,7.267877 - 145: 32.06776,8.049128 - 171: 32.98406,-8.985069 - 173: 17.014437,2.9736261 - 174: 16.998812,6.958001 - 175: 17.020891,-5.0002565 - 195: 7.009032,-9.986469 - 198: -3.9782841,6.046785 - 201: -8.985234,-13.989886 - 650: -16.924305,2.0790582 - 651: -10.93993,2.0321832 - 719: -5.975403,-22.996408 - - node: - color: '#FFFFFFFF' - id: Bushi2 - decals: - 172: 19.006546,-8.953819 - 196: 6.9877787,-14.02815 - 197: -8.025159,5.99991 - 202: -9.047734,-10.021136 - 720: 3.9464722,-22.996408 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 652: -12.93993,1.9853082 - - node: - color: '#FFFFFFFF' - id: Bushj1 - decals: - 170: 30.968433,-8.891319 - - node: - color: '#FFFFFFFF' - id: Bushj2 - decals: - 169: 20.959995,-9.000694 - 469: 13.579387,8.023587 - - node: - color: '#FFFFFFFF' - id: Bushj3 - decals: - 471: 6.5325117,8.164212 - - node: - color: '#FFFFFFFF' - id: Bushk2 - decals: - 318: 4,16 - - node: - color: '#FFFFFFFF' - id: Bushk3 - decals: - 148: 20.972792,7.5335026 - 654: -16.03368,2.0478082 - - node: - color: '#FFFFFFFF' - id: Bushl1 - decals: - 190: 7.116846,-5.379048 - - node: - color: '#FFFFFFFF' - id: Bushl2 - decals: - 653: -15.03368,2.0165582 - - node: - color: '#FFFFFFFF' - id: Bushl4 - decals: - 655: -12.00243,1.9853082 - 718: -6.022278,-23.574533 - - node: - color: '#FFFFFFFF' - id: Bushm1 - decals: - 147: 31.989635,7.5335026 - - node: - color: '#FFFFFFFF' - id: Bushm2 - decals: - 223: 3.9493294,6.054844 - 715: 4.008972,-23.668283 - - node: - color: '#FFFFFFFF' - id: Bushm3 - decals: - 146: 30.208385,7.5960026 - 224: -9.056177,3.4392257 - 716: 4.008972,-22.558908 - - node: - color: '#FFFFFFFF' - id: Bushm4 - decals: - 717: -6.022278,-22.512033 - - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 200: 34.054134,-1.0223641 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 68: 12,-5 - 69: 13,-5 - 70: 14,-5 - 71: 15,-5 - 72: 15,-6 - 73: 15,-7 - 74: 15,-8 - 75: 11,-5 - 76: 10,-5 - 77: 9,-5 - 78: 9,-6 - 79: 9,-7 - 80: 9,-8 - - node: - color: '#D4D4D428' - id: CheckerNWSE - decals: - 27: 31,-3 - 28: 30,-2 - 29: 29,-1 - 30: 21,1 - 31: 22,0 - 32: 23,-1 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 45: 32,4 - 46: 32,2 - 47: 32,-4 - 48: 32,-6 - 99: 12,1 - 100: 14,1 - 387: -8,17 - 388: -8,16 - 401: -10,22 - 402: -10,24 - 403: -10,26 - 404: -10,28 - 409: -14,30 - 410: -14,31 - 413: -14,22 - 414: -14,21 - 415: -14,20 - 589: -32,-2 - 590: -32,0 - 751: 6,-16 - 752: 7,-16 - 753: -9,-16 - 754: -8,-16 - 821: 29,-24 - 941: 32,-15 - 942: 16,-24 - 950: 15,-32 - 986: -21,-27 - 987: -21,-25 - 1037: -6,-41 - 1038: -6,-44 - 1045: 4,-44 - 1046: 4,-41 - - node: - color: '#DE3A3A96' - id: Delivery - decals: - 532: 13,32 - 533: 12,32 - 534: 6,32 - 535: 5,32 - 536: 3,32 - 537: 3,30 - 538: 15,30 - 540: 15,32 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 57: 32,2 - 58: 32,-5 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 59: 31,-6 - 60: 32,3 - 61: 31,4 - 62: 29,4 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 189: 7.054346,-5.972798 - 218: -8.98181,3.039219 - 219: 4.0382257,5.992344 - 648: -12.455555,2.0009332 - 712: -5.959778,-23.277658 - - node: - color: '#FFFFFFFF' - id: Flowersbr2 - decals: - 140: 25.64704,7.7835026 - 163: 21.006866,-8.969444 - 164: 21.928741,-8.985069 - 165: 32.30374,-9.031944 - 647: -17.09618,2.0009332 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 137: 31.017263,7.330377 - 138: 20.33454,7.330377 - 139: 26.99079,6.721002 - 188: 6.991846,-5.004048 - 210: -4.0670047,-7.975866 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 166: 31.131866,-9.000694 - 167: 20.241241,-8.953819 - 168: 32.80374,-9.000694 - 220: 7.0694757,4.992344 - 221: 3.9757257,7.992344 - - node: - color: '#FFFFFFFF' - id: Flowerspv2 - decals: - 194: 5.962157,-7.9708443 - 207: -7.8673525,-7.959863 - 649: -14.90868,2.0634332 - 713: 4.102722,-23.308908 - 714: -5.991028,-22.152658 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 134: 21.940147,6.877252 - 135: 26.987022,7.6116276 - 136: 32.829765,6.955377 - 208: -8.9611025,-5.006738 - 317: 4,16 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 193: 2.0246568,-7.9552193 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 217: -8.91931,3.929844 - - node: - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 222: 1.9913507,6.023594 - 711: -5.975403,-23.949533 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 129: 25.080772,6.455377 - 130: 29.596397,7.017877 - 131: 32.737022,7.9397526 - 132: 21.674522,8.017878 - 133: 19.190147,7.174127 - 161: 30.038116,-9.047569 - 162: 18.959991,-8.985069 - 182: 15.052141,-10.039338 - 183: 9.052141,-9.976838 - 184: 13.005266,-9.992463 - 209: -9.0236025,-5.991113 - 470: 6.6731367,7.961087 - 646: -13.12743,2.0009332 - 710: 4.024597,-22.012033 - - node: - color: '#EFB34196' - id: FullTileOverlayGreyscale - decals: - 860: 19,-23 - 861: 20,-23 - 862: 21,-23 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 487: 14,28 - 488: 14,25 - 489: 14,22 - 490: 4,25 - 491: 4,28 - 507: 9,27 - 508: 9,28 - 509: 9,29 - 510: 9,30 - 511: 9,31 - 512: 9,32 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 9: 27,-1 - 10: 26,-1 - 11: 25,-1 - 12: 27,-2 - 39: 25,0 - 687: -24,-5 - 688: -22,-5 - 689: -20,-5 - 690: -18,-5 - 691: -19,-6 - 692: -18,-7 - 693: -19,-8 - 694: -18,-9 - 695: -20,-9 - 696: -22,-9 - 697: -21,-8 - 698: -21,-6 - 699: -20,-7 - 700: -23,-8 - 701: -23,-6 - 702: -24,-7 - 703: -24,-9 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 63: 10,-7 - 64: 11,-6 - 65: 12,-7 - 66: 13,-6 - 67: 14,-7 - - node: - color: '#FFFFFFFF' - id: Grassa4 - decals: - 462: 14,8 - - node: - color: '#FFFFFFFF' - id: Grassb1 - decals: - 460: 9,8 - 472: 11.391887,8.179837 - 473: 7.2825117,8.054837 - - node: - color: '#FFFFFFFF' - id: Grassb5 - decals: - 461: 13,8 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 123: 30.685312,7.0542355 - 124: 33.18531,8.16361 - 125: 22.82111,7.9761105 - 126: 26.85236,8.13236 - 127: 24.842615,8.147985 - 128: 19.093754,6.9448605 - 160: 32.92874,-8.891319 - 643: -12.75243,1.9384332 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 192: 2.0715318,-7.9395943 - 642: -14.955555,2.0165582 - 709: 3.9620972,-23.215158 - - node: - color: '#FFFFFFFF' - id: Grasse1 - decals: - 117: 31.288973,7.8974113 - 118: 22.757723,7.1474113 - 119: 20.210848,7.8817863 - 120: 25.163973,7.1167355 - 121: 26.195223,6.1636105 - 122: 29.242098,7.9917355 - 156: 20.2297,-9.031944 - 157: 30.694366,-8.953819 - 204: -8.907109,-5.8244467 - 213: 1.9943819,6.0206404 - 214: 3.947507,8.005015 - 644: -11.986805,1.9696832 - 708: -6.084778,-23.808908 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 113: 31.617165,7.1005363 - 114: 26.992098,6.2724113 - 115: 21.070223,7.2411613 - 116: 20.007723,6.9442863 - 187: 7.054346,-5.004048 - 205: -8.985234,-5.0900717 - 206: -3.9383593,-7.9338217 - 211: -8.996265,3.0206404 - 212: -8.965015,3.9112654 - 216: 6.954139,4.9425154 - 641: -15.861805,1.9071832 - 645: -11.049305,1.8915582 - 706: 3.9464722,-22.418283 - 707: -5.928528,-22.652658 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 105: 25.217262,6.1942863 - 106: 26.967262,7.3974113 - 107: 25.389137,7.8036613 - 108: 21.686012,7.6161613 - 109: 19.107887,7.5067863 - 110: 29.420387,7.0224113 - 111: 30.092262,7.5849113 - 112: 32.41404,7.2099113 - 155: 19.2922,-8.953819 - 158: 31.506866,-8.985069 - 159: 21.444366,-8.953819 - 186: 7.023096,-5.941548 - 191: 5.962157,-8.002094 - 199: 34.00726,-1.0379891 - 203: -7.9071093,-7.9963217 - 215: 4.041257,6.0675154 - 316: 4,16 - 640: -16.674305,2.0478082 - 704: 4,-24 - 705: -6,-22 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 86: 13,1 - 87: 11,1 - 564: 13,15 - 565: 10,15 - 566: 8,15 - 789: 28,-9 - 790: 27,-9 - 791: 26,-9 - 792: 25,-9 - 793: 24,-9 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 329: -8,11 - 330: -9,11 - 331: -10,11 - 332: -11,11 - 341: -12,16 - 342: -13,16 - 343: -14,16 - 431: -7,31 - 432: -8,31 - 433: -9,31 - 434: -11,31 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - decals: - 294: -1,1 - 663: -11,-5 - 664: -12,-5 - 665: -13,-5 - 666: -14,-5 - 667: -15,-5 - 668: -16,-5 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - decals: - 88: 10,1 - 369: 1,16 - 370: 0,16 - 371: -1,16 - 372: -2,16 - 373: -3,16 - 570: 7,15 - 764: 8,-20 - 767: 10,-20 - 768: 12,-20 - 777: -10,-20 - 778: -12,-20 - 779: -14,-20 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 335: -8,9 - 336: -10,9 - 337: -11,9 - 338: -9,9 - 339: -13,15 - 340: -14,15 - 348: -12,15 - 448: -8,19 - 449: -9,19 - 450: -10,19 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 854: 15,-22 - 855: 16,-22 - 856: 17,-22 - 857: 18,-22 - 858: 19,-22 - 859: 20,-22 - 863: 21,-22 - 879: 26,-27 - 880: 25,-27 - 881: 24,-27 - 902: 28,-19 - 903: 27,-19 - 904: 23,-19 - 905: 22,-19 - 906: 30,-19 - 907: 34,-19 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 84: 13,-3 - 85: 11,-3 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 297: 13,3 - 298: 15,3 - 299: 11,3 - 526: 10,21 - 527: 9,21 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale180 - decals: - 361: 1,8 - 362: 0,8 - 363: -1,8 - 364: -2,8 - 365: -3,8 - 555: 13,10 - 556: 12,10 - 557: 11,10 - 558: 10,10 - 559: 9,10 - 560: 8,10 - 561: 7,10 - 586: 10,-3 - 740: 3,-20 - 745: -5,-20 - 765: 9,-19 - 766: 11,-19 - 780: -11,-19 - 781: -13,-19 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 625: -22,-2 - 657: -16,-9 - 658: -15,-9 - 659: -14,-9 - 660: -13,-9 - 661: -12,-9 - 662: -11,-9 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 334: -12,10 - 349: -4,11 - 350: -4,12 - 351: -4,13 - 436: -12,30 - 437: -12,29 - 438: -12,28 - 439: -12,27 - 440: -12,26 - 441: -12,25 - 442: -12,24 - 443: -12,23 - 444: -12,22 - 445: -12,21 - 446: -12,20 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 492: 5,24 - 493: 5,25 - 494: 5,26 - 495: 5,27 - 496: 5,28 - 497: 5,29 - 513: 11,16 - 514: 11,17 - 515: 11,18 - 516: 11,19 - 517: 11,20 - 562: 6,12 - 579: 8,22 - 580: 8,23 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 864: 23,-21 - 865: 23,-22 - 866: 23,-23 - 867: 23,-24 - 868: 23,-25 - 869: 23,-27 - 928: 19,-19 - 929: 19,-17 - 930: 19,-16 - 931: 19,-14 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 0: 28,-1 - 3: 28,1 - 4: 28,0 - 5: 28,-2 - 17: 23,1 - 18: 29,-3 - 19: 29,-2 - 33: 25,-3 - 44: 25,-2 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - decals: - 96: 9,-2 - 97: 9,-1 - 98: 9,0 - 571: 6,14 - 609: -26,-1 - 743: -6,-19 - 750: -6,-17 - 775: -8,-18 - 974: -14,-24 - 976: -14,-26 - 977: -14,-28 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 240: 3,-14 - 241: 3,-13 - 242: 3,-12 - 243: 3,-11 - 249: 3,-10 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 93: 15,-2 - 94: 15,-1 - 95: 15,0 - 359: 2,9 - 367: 2,15 - 568: 14,14 - 595: -11,-1 - 737: 4,-17 - 738: 4,-19 - 762: 6,-18 - 973: -15,-23 - 975: -15,-25 - 978: -15,-27 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 244: -5,-14 - 245: -5,-13 - 246: -5,-12 - 247: -5,-11 - 248: -5,-10 - 374: 2,10 - 375: 2,11 - 376: 2,12 - 377: 2,13 - 378: 2,14 - 498: 13,21 - 499: 13,22 - 500: 13,23 - 501: 13,24 - 502: 13,25 - 503: 13,27 - 504: 13,26 - 505: 13,28 - 506: 13,29 - 518: 12,16 - 519: 12,17 - 520: 12,18 - 521: 12,19 - 522: 12,20 - 563: 14,12 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 870: 27,-27 - 871: 27,-26 - 872: 27,-22 - 873: 27,-21 - 874: 27,-24 - 875: 27,-23 - 876: 27,-25 - 883: 21,-21 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 333: -7,10 - 420: -6,20 - 421: -6,22 - 422: -6,23 - 423: -6,24 - 424: -6,25 - 425: -6,26 - 426: -6,27 - 427: -6,28 - 428: -6,29 - 429: -6,30 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 1: 24,-1 - 2: 27,1 - 6: 24,-2 - 7: 24,-3 - 8: 24,0 - 13: 23,1 - 14: 23,0 - 22: 29,-3 - 38: 27,0 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 381: -4,9 - 382: -4,14 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 405: -14,25 - 406: -14,27 - 411: -13,30 - 412: -13,31 - 416: -13,20 - 417: -13,21 - 418: -13,22 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 101: 14,0 - 102: 12,0 - 238: 1,-12 - 239: -3,-12 - 573: 9,14 - 943: 16,-25 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 15: 23,0 - 35: 28,-3 - 284: -4,1 - 285: -4,-1 - 286: -4,-2 - 291: -3,1 - 292: -2,1 - 296: -4,-3 - 623: -23,0 - 1029: -3,-42 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 232: -2,-10 - 262: -7,1 - 263: -7,0 - 264: -4,4 - 265: -3,4 - 266: -2,4 - 606: -26,0 - 607: -25,0 - 608: -24,0 - 632: -33,5 - 633: -32,5 - 733: -2,-16 - 981: -21,-23 - 996: 8,-31 - 997: 9,-31 - 998: 10,-31 - 999: 11,-31 - 1000: 12,-22 - 1012: 2,-32 - 1013: 3,-32 - 1014: 4,-32 - 1015: 6,-32 - 1016: 7,-32 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 259: -7,3 - 260: -7,4 - 261: -6,4 - 354: -8,17 - 357: -8,16 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 233: -3,-11 - 552: 11,15 - 795: 19,-11 - 796: 20,-11 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 908: 30,-16 - 909: 31,-16 - 913: 19,-25 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 312: 10,-13 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 352: -6,14 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 20: 29,-2 - 34: 24,1 - 1017: 1,-38 - 1018: 2,-38 - 1019: 3,-38 - 1020: 4,-38 - 1027: 4,-37 - 1028: 4,-36 - 1030: 1,-44 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - decals: - 230: 0,-14 - 277: 0,-6 - 278: 1,-6 - 279: 2,-6 - 280: 5,-3 - 281: 5,-2 - 613: -20,-2 - 614: -19,-2 - 615: -18,-2 - 616: -17,-2 - 617: -16,-2 - 618: -15,-2 - 619: -14,-2 - 620: -13,-2 - 621: -12,-2 - 622: -11,-2 - 636: -30,4 - 637: -31,4 - 736: 1,-18 - 741: 1,-20 - 742: 0,-20 - 749: 2,-20 - 774: -9,-17 - 782: -15,-19 - 783: 0,-24 - 784: 0,-23 - 785: 0,-22 - 984: -19,-29 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 250: 4,-6 - 251: 5,-6 - 252: 5,-5 - 309: 12,-15 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 300: 10,3 - 523: 12,21 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 844: 13,-29 - 845: 17,-28 - 846: 16,-28 - 847: 15,-28 - 848: 14,-28 - 849: 17,-27 - 877: 23,-27 - 914: 21,-27 - 985: -19,-30 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - decals: - 229: -2,-14 - 272: -7,-2 - 273: -7,-3 - 274: -4,-6 - 275: -3,-6 - 276: -2,-6 - 610: -26,-2 - 611: -25,-2 - 612: -24,-2 - 638: -32,4 - 639: -33,4 - 735: -3,-18 - 746: -4,-20 - 747: -3,-20 - 748: -2,-20 - 761: 7,-17 - 769: 13,-19 - 786: -2,-24 - 787: -2,-23 - 788: -2,-22 - 972: -14,-22 - 982: -21,-30 - 983: -21,-29 - 1001: 12,-29 - 1002: 12,-28 - 1003: 12,-24 - 1004: 12,-25 - 1005: 12,-26 - 1006: 12,-27 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 40: 28,-3 - 1021: -3,-38 - 1022: -4,-38 - 1023: -6,-38 - 1024: -5,-38 - 1025: -6,-37 - 1026: -6,-36 - 1031: -3,-44 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 353: -8,14 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 878: 27,-27 - 915: 19,-27 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 310: 10,-15 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 253: -6,-6 - 254: -7,-6 - 255: -7,-5 - 524: 13,21 - 525: 11,21 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 842: 13,-22 - 843: 13,-23 - 850: 17,-25 - 851: 17,-24 - 852: 15,-24 - 853: 14,-24 - 882: 21,-22 - 910: 34,-16 - 911: 33,-16 - 912: 21,-25 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 355: -6,17 - 356: -6,16 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 256: 5,3 - 257: 5,4 - 258: 4,4 - 301: 15,6 - 302: 14,6 - 303: 13,6 - 304: 12,6 - 305: 11,6 - 306: 10,6 - 551: 12,15 - 794: 22,-11 - 797: 21,-11 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 41: 24,1 - 287: 2,-2 - 288: 2,-1 - 289: 2,1 - 290: 1,1 - 293: 0,1 - 295: 2,-3 - 624: -21,0 - 1032: 1,-42 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 234: 1,-11 - 311: 12,-13 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 231: 0,-10 - 267: 0,4 - 268: 1,4 - 269: 2,4 - 270: 5,1 - 271: 5,0 - 596: -11,0 - 597: -12,0 - 598: -13,0 - 599: -14,0 - 600: -15,0 - 601: -16,0 - 602: -17,0 - 603: -18,0 - 604: -20,0 - 605: -19,0 - 634: -31,5 - 635: -30,5 - 734: 0,-16 - 979: -15,-29 - 980: -19,-23 - 992: -10,-31 - 993: -12,-31 - 994: -11,-31 - 995: -13,-31 - 1007: -4,-32 - 1008: -5,-32 - 1009: -6,-32 - 1010: -8,-32 - 1011: -9,-32 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 816: 32,-21 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 326: -12,11 - 345: -15,16 - 435: -12,31 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 91: 9,1 - 226: -3,-10 - 366: -4,16 - 569: 6,15 - 630: -34,5 - 732: -3,-16 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 327: -7,9 - 347: -11,15 - 419: -6,19 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 92: 15,-3 - 228: 1,-14 - 360: 2,8 - 554: 14,10 - 739: 4,-20 - 776: -9,-19 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 90: 9,-3 - 227: -3,-14 - 358: -4,8 - 553: 6,10 - 631: -34,4 - 744: -6,-20 - 763: 7,-19 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 21: 30,-3 - 36: 25,1 - 37: 26,0 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 578: 8,21 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 328: -12,9 - 344: -15,15 - 447: -12,19 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 89: 15,1 - 225: 1,-10 - 368: 2,16 - 567: 14,15 - 731: 1,-16 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 16: 22,1 - 42: 27,-3 - 43: 26,-2 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 325: -7,11 - 346: -11,16 - 430: -6,31 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 23: 34,-6 - 24: 34,-4 - 25: 34,2 - 26: 34,4 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 927: 21,-19 - 940: 31,-16 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 926: 23,-19 - 939: 33,-16 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 810: 29,-21 - 924: 21,-15 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 804: 29,-27 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 925: 23,-15 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 476: 3,30 - 477: 3,31 - 480: 3,32 - 485: 10,28 - 811: 29,-26 - 812: 29,-25 - 813: 29,-24 - 814: 29,-23 - 815: 29,-22 - 896: 29,-19 - 897: 29,-18 - 898: 29,-17 - 921: 21,-18 - 922: 21,-17 - 923: 21,-16 - 951: 21,-32 - 952: 21,-31 - 953: 21,-30 - 954: 24,-32 - 955: 24,-31 - 956: 24,-30 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 675: -11,-9 - 676: -12,-9 - 677: -13,-9 - 678: -14,-9 - 679: -15,-9 - 680: -16,-9 - 770: 12,-21 - 771: 13,-21 - 772: -15,-21 - 773: -14,-21 - 805: 34,-21 - 806: 33,-21 - 807: 32,-21 - 808: 31,-21 - 809: 30,-21 - 837: 34,-14 - 838: 33,-14 - 839: 32,-14 - 840: 31,-14 - 841: 30,-14 - 890: 26,-20 - 891: 25,-20 - 892: 24,-20 - 893: 21,-20 - 894: 20,-20 - 895: 19,-20 - 919: 22,-15 - 967: 24,-32 - 968: 23,-32 - 969: 21,-32 - 970: 20,-32 - - node: - color: '#DE3A3A96' - id: WarnLineN - decals: - 530: 13,31 - 531: 5,31 - 544: 12,31 - 546: 12,31 - 547: 13,31 - 548: 5,31 - 549: 6,31 - 550: 6,31 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 451: -14,25 - 452: -14,27 - 453: -14,26 - 454: -14,24 - 455: -14,28 - 456: -14,29 - 457: -14,23 - 478: 15,30 - 479: 15,31 - 486: 8,28 - 539: 15,32 - 899: 29,-19 - 900: 29,-18 - 901: 29,-17 - 916: 23,-18 - 917: 23,-17 - 918: 23,-16 - 957: 20,-32 - 958: 20,-31 - 959: 20,-30 - 960: 23,-32 - 961: 23,-31 - 962: 23,-30 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 81: 11,-8 - 82: 12,-8 - 83: 13,-8 - 458: -10,31 - 669: -11,-5 - 670: -12,-5 - 671: -13,-5 - 672: -14,-5 - 673: -15,-5 - 674: -16,-5 - 800: 34,-27 - 801: 33,-27 - 802: 32,-27 - 803: 30,-27 - 825: 31,-27 - 884: 26,-20 - 885: 24,-20 - 886: 25,-20 - 887: 21,-20 - 888: 20,-20 - 889: 19,-20 - 920: 22,-19 - 938: 32,-16 - 963: 23,-30 - 964: 24,-30 - 965: 21,-30 - 966: 20,-30 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 1087: 24,21 - 1120: -24,2 - 1148: 22,10 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 1088: 32,21 - 1146: 34,10 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 1139: -3,-28 - 1147: 22,13 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - decals: - 1138: 1,-28 - 1149: 34,13 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 1047: 20,19 - 1048: 20,20 - 1049: 20,21 - 1050: 20,22 - 1051: 20,18 - 1057: 18,18 - 1058: 18,19 - 1059: 18,20 - 1060: 18,21 - 1061: 18,22 - 1070: 30,18 - 1071: 30,17 - 1072: 30,16 - 1078: 24,22 - 1116: -24,3 - 1117: -24,4 - 1118: -24,5 - 1119: -24,6 - 1121: -23,10 - 1122: -23,11 - 1142: 22,11 - 1143: 22,12 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 1065: 26,18 - 1066: 27,18 - 1067: 28,18 - 1068: 29,18 - 1069: 30,18 - 1080: 31,21 - 1081: 30,21 - 1082: 29,21 - 1083: 28,21 - 1084: 27,21 - 1085: 26,21 - 1086: 25,21 - 1100: 23,10 - 1101: 24,10 - 1102: 25,10 - 1103: 26,10 - 1104: 27,10 - 1105: 28,10 - 1106: 29,10 - 1107: 30,10 - 1108: 31,10 - 1109: 32,10 - 1110: 33,10 - 1111: -19,2 - 1112: -20,2 - 1113: -21,2 - 1114: -22,2 - 1115: -23,2 - 1130: -22,8 - 1131: -23,8 - 1132: -24,8 - 1133: -25,8 - 1134: -26,8 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 1073: 30,16 - 1074: 29,16 - 1075: 28,16 - 1076: 27,16 - 1077: 26,16 - 1089: 33,13 - 1090: 32,13 - 1091: 31,13 - 1092: 30,13 - 1093: 29,13 - 1094: 28,13 - 1095: 27,13 - 1096: 26,13 - 1097: 23,13 - 1098: 24,13 - 1099: 25,13 - 1125: -22,12 - 1126: -23,12 - 1127: -24,12 - 1128: -25,12 - 1129: -26,12 - 1135: 0,-28 - 1136: -1,-28 - 1137: -2,-28 - 1140: 1,0 - 1141: -3,0 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 1052: 19,18 - 1053: 19,19 - 1054: 19,20 - 1055: 19,21 - 1056: 19,22 - 1062: 26,16 - 1063: 26,17 - 1064: 26,18 - 1079: 32,22 - 1123: -25,10 - 1124: -25,11 - 1144: 34,11 - 1145: 34,12 - type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 65535 - 0,-1: - 0: 65535 - -4,-4: - 0: 52431 - -4,-3: - 0: 64764 - 1: 768 - -4,-2: - 0: 65535 - -4,-1: - 1: 3 - 0: 65532 - -3,-4: - 0: 64719 - -3,-3: - 0: 64767 - 1: 768 - -3,-2: - 0: 65535 - -3,-1: - 1: 3 - 0: 65532 - -2,-4: - 0: 65535 - -2,-3: - 0: 65503 - 1: 32 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 63487 - 2: 2048 - 0,-2: - 0: 65535 - 1,-4: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 49151 - 1: 16384 - 2,-1: - 0: 65535 - 3,-4: - 0: 65527 - 1: 8 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -4,2: - 0: 65535 - -4,3: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 65535 - -2,0: - 0: 65535 - -2,1: - 0: 65535 - -2,2: - 0: 65535 - -2,3: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - 0,0: - 0: 65471 - 2: 64 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 1,3: - 0: 65535 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - 4,-4: - 0: 63231 - 1: 2304 - 4,-3: - 0: 65407 - 1: 128 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 0: 63487 - 1: 2048 - 5,-3: - 0: 65471 - 1: 64 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-4: - 0: 63487 - 1: 2048 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 65275 - 1: 260 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - 0,-8: - 0: 65535 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-8: - 0: 49151 - 3: 16384 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 63487 - 1: 2048 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-6: - 0: 65399 - 1: 136 - 5,-5: - 0: 65535 - 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-6: - 0: 65535 - 7,-5: - 0: 65535 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 57343 - 1: 8192 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -3,-6: - 0: 63999 - 1: 1536 - -3,-5: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-8: - 0: 65535 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 - 8,0: - 0: 65471 - 1: 64 - 8,1: - 0: 65471 - 1: 64 - 8,2: - 0: 65535 - 8,3: - 0: 65535 - 8,-4: - 0: 65531 - 1: 4 - 8,-3: - 0: 65535 - 8,-2: - 0: 65471 - 1: 64 - 8,-1: - 0: 65471 - 1: 64 - -4,4: - 0: 61439 - -4,5: - 0: 65262 - -4,6: - 0: 65535 - -4,7: - 0: 61183 - -3,4: - 0: 32767 - 1: 32768 - -3,5: - 0: 63487 - 1: 2048 - -3,6: - 0: 65531 - 1: 4 - -3,7: - 0: 65527 - 1: 8 - -2,4: - 0: 49087 - 1: 16448 - -2,5: - 0: 65279 - 1: 256 - -2,6: - 0: 64767 - 1: 768 - -2,7: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 65535 - -1,6: - 1: 1 - 0: 12286 - -1,7: - 0: 12079 - 0,4: - 0: 61439 - 1: 4096 - 0,5: - 0: 65471 - 1: 64 - 0,6: - 0: 49147 - 1: 16388 - 0,7: - 0: 65535 - 1,4: - 0: 65471 - 1: 64 - 1,5: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 2,6: - 0: 65519 - 1: 16 - 2,7: - 0: 65535 - 3,4: - 0: 49151 - 1: 16384 - 3,5: - 0: 65407 - 1: 128 - 3,6: - 0: 32759 - 1: 32776 - 3,7: - 0: 65535 - 8,-6: - 0: 65535 - 8,-5: - 0: 65471 - 1: 64 - 4,4: - 0: 65535 - 4,5: - 0: 32767 - 1: 32768 - 4,6: - 0: 30719 - 4,7: - 0: 30583 - 5,4: - 0: 65535 - 5,5: - 0: 61439 - 1: 4096 - 5,6: - 0: 255 - 6,4: - 0: 65535 - 6,5: - 0: 65535 - 6,6: - 0: 255 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 255 - -6,4: - 0: 14 - -5,4: - 0: 2185 - -5,5: - 0: 32768 - -5,6: - 0: 34952 - -5,7: - 0: 136 - -8,0: - 0: 65535 - -8,1: - 0: 63999 - 1: 1536 - -7,0: - 0: 65023 - 1: 512 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -7,3: - 0: 255 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -6,2: - 0: 65535 - -6,3: - 0: 61183 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -4,8: - 0: 14 - -3,8: - 0: 4095 - -2,8: - 0: 287 - -1,8: - 0: 15 - 8,4: - 0: 65535 - 8,5: - 0: 65535 - 8,6: - 0: 255 - 0,8: - 0: 4095 - 1,8: - 0: 4095 - 2,8: - 0: 4095 - 3,8: - 0: 4095 - 4,8: - 0: 1911 - -8,-1: - 0: 65535 - -8,-3: - 0: 34944 - -8,-2: - 0: 34952 - -7,-3: - 0: 65520 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-3: - 0: 65520 - -6,-2: - 0: 65535 - -6,-1: - 0: 65535 - -5,-3: - 0: 65520 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -9,-1: - 0: 61102 - 1: 64 - -9,0: - 0: 61102 - 1: 64 - -9,1: - 0: 61166 - -4,-9: - 0: 65520 - -3,-9: - 0: 65520 - -2,-9: - 0: 65535 - -1,-9: - 0: 65535 - 0,-9: - 0: 65535 - 1,-9: - 0: 65535 - 2,-9: - 0: 65535 - 3,-9: - 0: 65535 - 4,-8: - 0: 65535 - 4,-7: - 0: 65407 - 1: 128 - 5,-8: - 0: 65535 - 5,-7: - 0: 65487 - 1: 48 - 6,-8: - 0: 65535 - 6,-7: - 0: 65535 - 7,-8: - 0: 65535 - 7,-7: - 0: 65535 - 8,-8: - 0: 65535 - 8,-7: - 0: 65535 - 4,-9: - 0: 65280 - 5,-9: - 0: 65280 - 6,-9: - 0: 65280 - 7,-9: - 0: 61440 - 8,-9: - 0: 61440 - -5,-4: - 0: 8 - -2,-12: - 0: 61440 - -2,-11: - 0: 65535 - -2,-10: - 0: 65535 - -1,-12: - 0: 65520 - -1,-11: - 0: 65535 - -1,-10: - 0: 65535 - 0,-12: - 0: 63344 - 0,-11: - 0: 65535 - 0,-10: - 0: 65535 - 1,-12: - 0: 28672 - 1,-11: - 0: 30583 - 1,-10: - 0: 30583 - -6,-9: - 0: 52352 - -5,-9: - 0: 65520 - -6,-8: - 0: 57292 - 1: 8192 - -6,-7: - 0: 65535 - -6,-6: - 0: 4063 - 1: 32 - -5,-8: - 0: 65527 - 1: 8 - -5,-7: - 0: 65535 - -5,-6: - 0: 36863 - -5,-5: - 0: 34952 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 17.389294 - - 65.41687 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 20.619795 - - 77.56971 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.213781 - - 79.80423 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: OccluderTree - - type: Shuttle - - nextUpdate: 539.6480757 - type: GridPathfinding - - type: RadiationGridResistance - - nextShake: 0 - shakeTimes: 10 - type: GravityShake - - type: GasTileOverlay -- uid: 1 - type: WallRiveted - components: - - pos: 10.5,2.5 - parent: 0 - type: Transform -- uid: 2 - type: WallRiveted - components: - - pos: 9.5,2.5 - parent: 0 - type: Transform -- uid: 3 - type: WallRiveted - components: - - pos: 8.5,1.5 - parent: 0 - type: Transform -- uid: 4 - type: WallRiveted - components: - - pos: 8.5,2.5 - parent: 0 - type: Transform -- uid: 5 - type: WallRiveted - components: - - pos: 7.5,2.5 - parent: 0 - type: Transform -- uid: 6 - type: WallRiveted - components: - - pos: 6.5,2.5 - parent: 0 - type: Transform -- uid: 7 - type: WallRiveted - components: - - pos: 6.5,1.5 - parent: 0 - type: Transform -- uid: 8 - type: WallRiveted - components: - - pos: 10.5,-3.5 - parent: 0 - type: Transform -- uid: 9 - type: WallRiveted - components: - - pos: 9.5,-3.5 - parent: 0 - type: Transform -- uid: 10 - type: WallRiveted - components: - - pos: 8.5,-2.5 - parent: 0 - type: Transform -- uid: 11 - type: WallRiveted - components: - - pos: 8.5,-3.5 - parent: 0 - type: Transform -- uid: 12 - type: WallRiveted - components: - - pos: 7.5,-3.5 - parent: 0 - type: Transform -- uid: 13 - type: WallRiveted - components: - - pos: 6.5,-3.5 - parent: 0 - type: Transform -- uid: 14 - type: WallRiveted - components: - - pos: 6.5,-2.5 - parent: 0 - type: Transform -- uid: 15 - type: FirelockGlass - components: - - pos: 5.5,-3.5 - parent: 0 - type: Transform -- uid: 16 - type: FirelockGlass - components: - - pos: 4.5,-3.5 - parent: 0 - type: Transform -- uid: 17 - type: FirelockGlass - components: - - pos: 3.5,-4.5 - parent: 0 - type: Transform -- uid: 18 - type: FirelockGlass - components: - - pos: 3.5,-5.5 - parent: 0 - type: Transform -- uid: 19 - type: FirelockGlass - components: - - pos: 5.5,2.5 - parent: 0 - type: Transform -- uid: 20 - type: FirelockGlass - components: - - pos: 4.5,2.5 - parent: 0 - type: Transform -- uid: 21 - type: FirelockGlass - components: - - pos: 3.5,4.5 - parent: 0 - type: Transform -- uid: 22 - type: FirelockGlass - components: - - pos: 3.5,3.5 - parent: 0 - type: Transform -- uid: 23 - type: FirelockGlass - components: - - pos: -4.5,4.5 - parent: 0 - type: Transform -- uid: 24 - type: FirelockGlass - components: - - pos: -4.5,3.5 - parent: 0 - type: Transform -- uid: 25 - type: FirelockGlass - components: - - pos: -6.5,2.5 - parent: 0 - type: Transform -- uid: 26 - type: FirelockGlass - components: - - pos: -5.5,2.5 - parent: 0 - type: Transform -- uid: 27 - type: FirelockGlass - components: - - pos: -6.5,-3.5 - parent: 0 - type: Transform -- uid: 28 - type: FirelockGlass - components: - - pos: -5.5,-3.5 - parent: 0 - type: Transform -- uid: 29 - type: FirelockGlass - components: - - pos: -4.5,-4.5 - parent: 0 - type: Transform -- uid: 30 - type: Grille - components: - - pos: -0.5,-3.5 - parent: 0 - type: Transform -- uid: 31 - type: Grille - components: - - pos: 2.5,-3.5 - parent: 0 - type: Transform -- uid: 32 - type: Grille - components: - - pos: 3.5,-1.5 - parent: 0 - type: Transform -- uid: 33 - type: Grille - components: - - pos: 3.5,-0.5 - parent: 0 - type: Transform -- uid: 34 - type: Grille - components: - - pos: 3.5,1.5 - parent: 0 - type: Transform -- uid: 35 - type: Grille - components: - - pos: 2.5,2.5 - parent: 0 - type: Transform -- uid: 36 - type: Grille - components: - - pos: 3.5,2.5 - parent: 0 - type: Transform -- uid: 37 - type: Grille - components: - - pos: 0.5,2.5 - parent: 0 - type: Transform -- uid: 38 - type: Grille - components: - - pos: -0.5,2.5 - parent: 0 - type: Transform -- uid: 39 - type: Grille - components: - - pos: -1.5,2.5 - parent: 0 - type: Transform -- uid: 40 - type: Grille - components: - - pos: -3.5,2.5 - parent: 0 - type: Transform -- uid: 41 - type: Grille - components: - - pos: -4.5,2.5 - parent: 0 - type: Transform -- uid: 42 - type: Grille - components: - - pos: -4.5,1.5 - parent: 0 - type: Transform -- uid: 43 - type: Grille - components: - - pos: -4.5,-0.5 - parent: 0 - type: Transform -- uid: 44 - type: Grille - components: - - pos: -4.5,-1.5 - parent: 0 - type: Transform -- uid: 45 - type: Grille - components: - - pos: -4.5,-2.5 - parent: 0 - type: Transform -- uid: 46 - type: Grille - components: - - pos: -3.5,-3.5 - parent: 0 - type: Transform -- uid: 47 - type: Grille - components: - - pos: -2.5,-3.5 - parent: 0 - type: Transform -- uid: 48 - type: HighSecCommandLocked - components: - - pos: 3.5,0.5 - parent: 0 - type: Transform -- uid: 49 - type: HighSecCommandLocked - components: - - pos: -4.5,0.5 - parent: 0 - type: Transform -- uid: 50 - type: ReinforcedWindow - components: - - pos: 1.5,-3.5 - parent: 0 - type: Transform -- uid: 51 - type: ReinforcedWindow - components: - - pos: 2.5,-3.5 - parent: 0 - type: Transform -- uid: 52 - type: ReinforcedWindow - components: - - pos: 3.5,-2.5 - parent: 0 - type: Transform -- uid: 53 - type: ReinforcedWindow - components: - - pos: 3.5,-1.5 - parent: 0 - type: Transform -- uid: 54 - type: ReinforcedWindow - components: - - pos: 3.5,-0.5 - parent: 0 - type: Transform -- uid: 55 - type: ReinforcedWindow - components: - - pos: 3.5,1.5 - parent: 0 - type: Transform -- uid: 56 - type: ReinforcedWindow - components: - - pos: 3.5,2.5 - parent: 0 - type: Transform -- uid: 57 - type: ReinforcedWindow - components: - - pos: 2.5,2.5 - parent: 0 - type: Transform -- uid: 58 - type: ReinforcedWindow - components: - - pos: 0.5,2.5 - parent: 0 - type: Transform -- uid: 59 - type: ReinforcedWindow - components: - - pos: -1.5,2.5 - parent: 0 - type: Transform -- uid: 60 - type: ReinforcedWindow - components: - - pos: -0.5,2.5 - parent: 0 - type: Transform -- uid: 61 - type: ReinforcedWindow - components: - - pos: -3.5,2.5 - parent: 0 - type: Transform -- uid: 62 - type: ReinforcedWindow - components: - - pos: -4.5,2.5 - parent: 0 - type: Transform -- uid: 63 - type: ReinforcedWindow - components: - - pos: -4.5,1.5 - parent: 0 - type: Transform -- uid: 64 - type: ReinforcedWindow - components: - - pos: -4.5,-0.5 - parent: 0 - type: Transform -- uid: 65 - type: ReinforcedWindow - components: - - pos: -4.5,-1.5 - parent: 0 - type: Transform -- uid: 66 - type: ReinforcedWindow - components: - - pos: -4.5,-2.5 - parent: 0 - type: Transform -- uid: 67 - type: ReinforcedWindow - components: - - pos: -3.5,-3.5 - parent: 0 - type: Transform -- uid: 68 - type: ReinforcedWindow - components: - - pos: -2.5,-3.5 - parent: 0 - type: Transform -- uid: 69 - type: ReinforcedWindow - components: - - pos: -0.5,-3.5 - parent: 0 - type: Transform -- uid: 70 - type: WallRiveted - components: - - pos: 3.5,-3.5 - parent: 0 - type: Transform -- uid: 71 - type: WallRiveted - components: - - pos: -4.5,-3.5 - parent: 0 - type: Transform -- uid: 72 - type: WallRiveted - components: - - pos: -1.5,-3.5 - parent: 0 - type: Transform -- uid: 73 - type: WallRiveted - components: - - pos: 0.5,-3.5 - parent: 0 - type: Transform -- uid: 74 - type: WallRiveted - components: - - pos: 1.5,2.5 - parent: 0 - type: Transform -- uid: 75 - type: WallRiveted - components: - - pos: -2.5,2.5 - parent: 0 - type: Transform -- uid: 76 - type: FaxMachineCentcom - components: - - pos: -2.5,-2.5 - parent: 0 - type: Transform - - name: CentComm - type: FaxMachine -- uid: 77 - type: ReinforcedWindow - components: - - pos: 6.5,-4.5 - parent: 0 - type: Transform -- uid: 78 - type: WallRiveted - components: - - pos: 5.5,7.5 - parent: 0 - type: Transform -- uid: 79 - type: WallRiveted - components: - - pos: 5.5,6.5 - parent: 0 - type: Transform -- uid: 80 - type: Grille - components: - - pos: 8.5,5.5 - parent: 0 - type: Transform -- uid: 81 - type: Grille - components: - - pos: 7.5,4.5 - parent: 0 - type: Transform -- uid: 82 - type: Grille - components: - - pos: 4.5,7.5 - parent: 0 - type: Transform -- uid: 83 - type: Grille - components: - - pos: 3.5,6.5 - parent: 0 - type: Transform -- uid: 84 - type: Grille - components: - - pos: 2.5,5.5 - parent: 0 - type: Transform -- uid: 85 - type: Grille - components: - - pos: 4.5,5.5 - parent: 0 - type: Transform -- uid: 86 - type: WallRiveted - components: - - pos: 3.5,5.5 - parent: 0 - type: Transform -- uid: 87 - type: WallRiveted - components: - - pos: 3.5,7.5 - parent: 0 - type: Transform -- uid: 88 - type: WallRiveted - components: - - pos: 2.5,7.5 - parent: 0 - type: Transform -- uid: 89 - type: WallRiveted - components: - - pos: 1.5,7.5 - parent: 0 - type: Transform -- uid: 90 - type: WallRiveted - components: - - pos: 1.5,6.5 - parent: 0 - type: Transform -- uid: 91 - type: WallRiveted - components: - - pos: 1.5,5.5 - parent: 0 - type: Transform -- uid: 92 - type: ReinforcedWindow - components: - - pos: 2.5,5.5 - parent: 0 - type: Transform -- uid: 93 - type: ReinforcedWindow - components: - - pos: 4.5,7.5 - parent: 0 - type: Transform -- uid: 94 - type: ReinforcedWindow - components: - - pos: 3.5,6.5 - parent: 0 - type: Transform -- uid: 95 - type: ReinforcedWindow - components: - - pos: 4.5,5.5 - parent: 0 - type: Transform -- uid: 96 - type: WallRiveted - components: - - pos: 5.5,5.5 - parent: 0 - type: Transform -- uid: 97 - type: WallRiveted - components: - - pos: 8.5,6.5 - parent: 0 - type: Transform -- uid: 98 - type: WallRiveted - components: - - pos: 7.5,6.5 - parent: 0 - type: Transform -- uid: 99 - type: WallRiveted - components: - - pos: 6.5,6.5 - parent: 0 - type: Transform -- uid: 100 - type: WallRiveted - components: - - pos: 6.5,5.5 - parent: 0 - type: Transform -- uid: 101 - type: WallRiveted - components: - - pos: 6.5,4.5 - parent: 0 - type: Transform -- uid: 102 - type: WallRiveted - components: - - pos: 8.5,4.5 - parent: 0 - type: Transform -- uid: 103 - type: ReinforcedWindow - components: - - pos: 8.5,5.5 - parent: 0 - type: Transform -- uid: 104 - type: ReinforcedWindow - components: - - pos: 7.5,4.5 - parent: 0 - type: Transform -- uid: 105 - type: Grille - components: - - pos: 18.5,-0.5 - parent: 0 - type: Transform -- uid: 106 - type: Grille - components: - - pos: 16.5,-0.5 - parent: 0 - type: Transform -- uid: 107 - type: Grille - components: - - pos: 8.5,-0.5 - parent: 0 - type: Transform -- uid: 108 - type: Grille - components: - - pos: 6.5,-0.5 - parent: 0 - type: Transform -- uid: 109 - type: ReinforcedWindow - components: - - pos: 18.5,-0.5 - parent: 0 - type: Transform -- uid: 110 - type: ReinforcedWindow - components: - - pos: 16.5,-0.5 - parent: 0 - type: Transform -- uid: 111 - type: ReinforcedWindow - components: - - pos: 8.5,-0.5 - parent: 0 - type: Transform -- uid: 112 - type: ReinforcedWindow - components: - - pos: 6.5,-0.5 - parent: 0 - type: Transform -- uid: 113 - type: WallRiveted - components: - - pos: 16.5,1.5 - parent: 0 - type: Transform -- uid: 114 - type: WallRiveted - components: - - pos: 16.5,2.5 - parent: 0 - type: Transform -- uid: 115 - type: WallRiveted - components: - - pos: 17.5,2.5 - parent: 0 - type: Transform -- uid: 116 - type: WallRiveted - components: - - pos: 18.5,2.5 - parent: 0 - type: Transform -- uid: 117 - type: WallRiveted - components: - - pos: 18.5,1.5 - parent: 0 - type: Transform -- uid: 118 - type: WallRiveted - components: - - pos: 18.5,-2.5 - parent: 0 - type: Transform -- uid: 119 - type: WallRiveted - components: - - pos: 18.5,-3.5 - parent: 0 - type: Transform -- uid: 120 - type: WallRiveted - components: - - pos: 17.5,-3.5 - parent: 0 - type: Transform -- uid: 121 - type: WallRiveted - components: - - pos: 16.5,-2.5 - parent: 0 - type: Transform -- uid: 122 - type: WallRiveted - components: - - pos: 16.5,-3.5 - parent: 0 - type: Transform -- uid: 123 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 124 - type: ReinforcedWindow - components: - - pos: 8.5,20.5 - parent: 0 - type: Transform -- uid: 125 - type: FirelockGlass - components: - - pos: 9.5,16.5 - parent: 0 - type: Transform -- uid: 126 - type: TableReinforced - components: - - pos: 9.5,16.5 - parent: 0 - type: Transform -- uid: 127 - type: WeldingFuelTankFull - components: - - pos: -26.5,6.5 - parent: 0 - type: Transform -- uid: 128 - type: WaterTankFull - components: - - pos: -27.5,2.5 - parent: 0 - type: Transform -- uid: 129 - type: LockerWeldingSuppliesFilled - components: - - pos: -26.5,2.5 - parent: 0 - type: Transform -- uid: 130 - type: Poweredlight - components: - - pos: -25.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 131 - type: FirelockGlass - components: - - pos: -4.5,-5.5 - parent: 0 - type: Transform -- uid: 132 - type: Grille - components: - - pos: 1.5,-3.5 - parent: 0 - type: Transform -- uid: 133 - type: Grille - components: - - pos: 3.5,-2.5 - parent: 0 - type: Transform -- uid: 134 - type: ReinforcedWindow - components: - - pos: 6.5,-5.5 - parent: 0 - type: Transform -- uid: 135 - type: ReinforcedWindow - components: - - pos: 8.5,-4.5 - parent: 0 - type: Transform -- uid: 136 - type: ReinforcedWindow - components: - - pos: 8.5,-5.5 - parent: 0 - type: Transform -- uid: 137 - type: WallRiveted - components: - - pos: 8.5,-6.5 - parent: 0 - type: Transform -- uid: 138 - type: WallRiveted - components: - - pos: 7.5,-6.5 - parent: 0 - type: Transform -- uid: 139 - type: WallRiveted - components: - - pos: 6.5,-6.5 - parent: 0 - type: Transform -- uid: 140 - type: WallRiveted - components: - - pos: 5.5,-6.5 - parent: 0 - type: Transform -- uid: 141 - type: WallRiveted - components: - - pos: 3.5,-6.5 - parent: 0 - type: Transform -- uid: 142 - type: WallRiveted - components: - - pos: 1.5,-6.5 - parent: 0 - type: Transform -- uid: 143 - type: WallRiveted - components: - - pos: 1.5,-7.5 - parent: 0 - type: Transform -- uid: 144 - type: WallRiveted - components: - - pos: 1.5,-8.5 - parent: 0 - type: Transform -- uid: 145 - type: WallRiveted - components: - - pos: 2.5,-8.5 - parent: 0 - type: Transform -- uid: 146 - type: WallRiveted - components: - - pos: 3.5,-8.5 - parent: 0 - type: Transform -- uid: 147 - type: WallRiveted - components: - - pos: 5.5,-8.5 - parent: 0 - type: Transform -- uid: 148 - type: WallRiveted - components: - - pos: 6.5,-8.5 - parent: 0 - type: Transform -- uid: 149 - type: WallRiveted - components: - - pos: 7.5,-8.5 - parent: 0 - type: Transform -- uid: 150 - type: WallRiveted - components: - - pos: 7.5,-7.5 - parent: 0 - type: Transform -- uid: 151 - type: ReinforcedWindow - components: - - pos: 2.5,-6.5 - parent: 0 - type: Transform -- uid: 152 - type: ReinforcedWindow - components: - - pos: 3.5,-7.5 - parent: 0 - type: Transform -- uid: 153 - type: ReinforcedWindow - components: - - pos: 5.5,-7.5 - parent: 0 - type: Transform -- uid: 154 - type: Grille - components: - - pos: 5.5,-7.5 - parent: 0 - type: Transform -- uid: 155 - type: Grille - components: - - pos: 3.5,-7.5 - parent: 0 - type: Transform -- uid: 156 - type: Grille - components: - - pos: 2.5,-6.5 - parent: 0 - type: Transform -- uid: 157 - type: Grille - components: - - pos: 6.5,-5.5 - parent: 0 - type: Transform -- uid: 158 - type: Grille - components: - - pos: 6.5,-4.5 - parent: 0 - type: Transform -- uid: 159 - type: Grille - components: - - pos: 8.5,-5.5 - parent: 0 - type: Transform -- uid: 160 - type: Grille - components: - - pos: 8.5,-4.5 - parent: 0 - type: Transform -- uid: 161 - type: ReinforcedWindow - components: - - pos: 9.5,-8.5 - parent: 0 - type: Transform -- uid: 162 - type: ReinforcedWindow - components: - - pos: 10.5,-8.5 - parent: 0 - type: Transform -- uid: 163 - type: ReinforcedWindow - components: - - pos: 11.5,-8.5 - parent: 0 - type: Transform -- uid: 164 - type: ReinforcedWindow - components: - - pos: 13.5,-8.5 - parent: 0 - type: Transform -- uid: 165 - type: ReinforcedWindow - components: - - pos: 15.5,-8.5 - parent: 0 - type: Transform -- uid: 166 - type: ReinforcedWindow - components: - - pos: 14.5,-8.5 - parent: 0 - type: Transform -- uid: 167 - type: ReinforcedWindow - components: - - pos: 12.5,-9.5 - parent: 0 - type: Transform -- uid: 168 - type: ReinforcedWindow - components: - - pos: 11.5,-10.5 - parent: 0 - type: Transform -- uid: 169 - type: ReinforcedWindow - components: - - pos: 10.5,-10.5 - parent: 0 - type: Transform -- uid: 170 - type: ReinforcedWindow - components: - - pos: 9.5,-10.5 - parent: 0 - type: Transform -- uid: 171 - type: ReinforcedWindow - components: - - pos: 13.5,-10.5 - parent: 0 - type: Transform -- uid: 172 - type: ReinforcedWindow - components: - - pos: 14.5,-10.5 - parent: 0 - type: Transform -- uid: 173 - type: ReinforcedWindow - components: - - pos: 15.5,-10.5 - parent: 0 - type: Transform -- uid: 174 - type: WallRiveted - components: - - pos: 8.5,-7.5 - parent: 0 - type: Transform -- uid: 175 - type: WallRiveted - components: - - pos: 8.5,-8.5 - parent: 0 - type: Transform -- uid: 176 - type: WallRiveted - components: - - pos: 8.5,-9.5 - parent: 0 - type: Transform -- uid: 177 - type: WallRiveted - components: - - pos: 8.5,-10.5 - parent: 0 - type: Transform -- uid: 178 - type: WallRiveted - components: - - pos: 12.5,-10.5 - parent: 0 - type: Transform -- uid: 179 - type: WallRiveted - components: - - pos: 12.5,-8.5 - parent: 0 - type: Transform -- uid: 180 - type: WallRiveted - components: - - pos: 16.5,-7.5 - parent: 0 - type: Transform -- uid: 181 - type: WallRiveted - components: - - pos: 16.5,-8.5 - parent: 0 - type: Transform -- uid: 182 - type: WallRiveted - components: - - pos: 16.5,-10.5 - parent: 0 - type: Transform -- uid: 183 - type: ReinforcedWindow - components: - - pos: 16.5,-9.5 - parent: 0 - type: Transform -- uid: 184 - type: WallRiveted - components: - - pos: 18.5,-7.5 - parent: 0 - type: Transform -- uid: 185 - type: WallRiveted - components: - - pos: 16.5,-5.5 - parent: 0 - type: Transform -- uid: 186 - type: Grille - components: - - pos: 16.5,3.5 - parent: 0 - type: Transform -- uid: 187 - type: WallRiveted - components: - - pos: 18.5,-4.5 - parent: 0 - type: Transform -- uid: 188 - type: WallRiveted - components: - - pos: 18.5,-5.5 - parent: 0 - type: Transform -- uid: 189 - type: Grille - components: - - pos: 17.5,-5.5 - parent: 0 - type: Transform -- uid: 190 - type: ReinforcedWindow - components: - - pos: 17.5,-5.5 - parent: 0 - type: Transform -- uid: 191 - type: Grille - components: - - pos: 9.5,-8.5 - parent: 0 - type: Transform -- uid: 192 - type: Grille - components: - - pos: 10.5,-8.5 - parent: 0 - type: Transform -- uid: 193 - type: Grille - components: - - pos: 11.5,-8.5 - parent: 0 - type: Transform -- uid: 194 - type: Grille - components: - - pos: 12.5,-9.5 - parent: 0 - type: Transform -- uid: 195 - type: Grille - components: - - pos: 9.5,-10.5 - parent: 0 - type: Transform -- uid: 196 - type: Grille - components: - - pos: 10.5,-10.5 - parent: 0 - type: Transform -- uid: 197 - type: Grille - components: - - pos: 11.5,-10.5 - parent: 0 - type: Transform -- uid: 198 - type: Grille - components: - - pos: 13.5,-10.5 - parent: 0 - type: Transform -- uid: 199 - type: Grille - components: - - pos: 14.5,-10.5 - parent: 0 - type: Transform -- uid: 200 - type: Grille - components: - - pos: 15.5,-10.5 - parent: 0 - type: Transform -- uid: 201 - type: Grille - components: - - pos: 15.5,-8.5 - parent: 0 - type: Transform -- uid: 202 - type: Grille - components: - - pos: 13.5,-8.5 - parent: 0 - type: Transform -- uid: 203 - type: Grille - components: - - pos: 14.5,-8.5 - parent: 0 - type: Transform -- uid: 204 - type: Grille - components: - - pos: 6.5,-9.5 - parent: 0 - type: Transform -- uid: 205 - type: Grille - components: - - pos: 7.5,-10.5 - parent: 0 - type: Transform -- uid: 206 - type: ReinforcedWindow - components: - - pos: 7.5,-10.5 - parent: 0 - type: Transform -- uid: 207 - type: ReinforcedWindow - components: - - pos: 6.5,-9.5 - parent: 0 - type: Transform -- uid: 208 - type: WallRiveted - components: - - pos: 6.5,-10.5 - parent: 0 - type: Transform -- uid: 209 - type: WallRiveted - components: - - pos: 18.5,-8.5 - parent: 0 - type: Transform -- uid: 210 - type: WallRiveted - components: - - pos: 18.5,-10.5 - parent: 0 - type: Transform -- uid: 211 - type: WallRiveted - components: - - pos: 18.5,-9.5 - parent: 0 - type: Transform -- uid: 212 - type: Grille - components: - - pos: 16.5,-9.5 - parent: 0 - type: Transform -- uid: 213 - type: WallRiveted - components: - - pos: 2.5,-9.5 - parent: 0 - type: Transform -- uid: 214 - type: ReinforcedWindow - components: - - pos: 2.5,-10.5 - parent: 0 - type: Transform -- uid: 215 - type: ReinforcedWindow - components: - - pos: 2.5,-13.5 - parent: 0 - type: Transform -- uid: 216 - type: TableReinforced - components: - - pos: 2.5,-12.5 - parent: 0 - type: Transform -- uid: 217 - type: TableReinforced - components: - - pos: 2.5,-11.5 - parent: 0 - type: Transform -- uid: 218 - type: TableReinforced - components: - - pos: 12.5,2.5 - parent: 0 - type: Transform -- uid: 219 - type: TableReinforced - components: - - pos: 14.5,2.5 - parent: 0 - type: Transform -- uid: 220 - type: ReinforcedWindow - components: - - pos: 11.5,2.5 - parent: 0 - type: Transform -- uid: 221 - type: ReinforcedWindow - components: - - pos: 13.5,2.5 - parent: 0 - type: Transform -- uid: 222 - type: ReinforcedWindow - components: - - pos: 15.5,2.5 - parent: 0 - type: Transform -- uid: 223 - type: Grille - components: - - pos: 15.5,2.5 - parent: 0 - type: Transform -- uid: 224 - type: Grille - components: - - pos: 13.5,2.5 - parent: 0 - type: Transform -- uid: 225 - type: Grille - components: - - pos: 11.5,2.5 - parent: 0 - type: Transform -- uid: 226 - type: ReinforcedWindow - components: - - pos: 7.5,-14.5 - parent: 0 - type: Transform -- uid: 227 - type: ReinforcedWindow - components: - - pos: 6.5,-13.5 - parent: 0 - type: Transform -- uid: 228 - type: ReinforcedWindow - components: - - pos: 7.5,-12.5 - parent: 0 - type: Transform -- uid: 229 - type: WallRiveted - components: - - pos: 8.5,-14.5 - parent: 0 - type: Transform -- uid: 230 - type: WallRiveted - components: - - pos: 8.5,-13.5 - parent: 0 - type: Transform -- uid: 231 - type: WallRiveted - components: - - pos: 8.5,-12.5 - parent: 0 - type: Transform -- uid: 232 - type: WallRiveted - components: - - pos: 6.5,-14.5 - parent: 0 - type: Transform -- uid: 233 - type: WallRiveted - components: - - pos: 5.5,-14.5 - parent: 0 - type: Transform -- uid: 234 - type: WallRiveted - components: - - pos: 4.5,-14.5 - parent: 0 - type: Transform -- uid: 235 - type: WallRiveted - components: - - pos: 3.5,-14.5 - parent: 0 - type: Transform -- uid: 236 - type: WallRiveted - components: - - pos: 2.5,-14.5 - parent: 0 - type: Transform -- uid: 237 - type: WallRiveted - components: - - pos: 6.5,-12.5 - parent: 0 - type: Transform -- uid: 238 - type: Grille - components: - - pos: 7.5,-12.5 - parent: 0 - type: Transform -- uid: 239 - type: Grille - components: - - pos: 6.5,-13.5 - parent: 0 - type: Transform -- uid: 240 - type: Grille - components: - - pos: 7.5,-14.5 - parent: 0 - type: Transform -- uid: 241 - type: Grille - components: - - pos: 2.5,-13.5 - parent: 0 - type: Transform -- uid: 242 - type: Grille - components: - - pos: 2.5,-10.5 - parent: 0 - type: Transform -- uid: 243 - type: ReinforcedWindow - components: - - pos: 17.5,4.5 - parent: 0 - type: Transform -- uid: 244 - type: ReinforcedWindow - components: - - pos: 17.5,6.5 - parent: 0 - type: Transform -- uid: 245 - type: Grille - components: - - pos: 17.5,6.5 - parent: 0 - type: Transform -- uid: 246 - type: Grille - components: - - pos: 17.5,4.5 - parent: 0 - type: Transform -- uid: 247 - type: ReinforcedWindow - components: - - pos: 16.5,3.5 - parent: 0 - type: Transform -- uid: 248 - type: WallRiveted - components: - - pos: 16.5,4.5 - parent: 0 - type: Transform -- uid: 249 - type: WallRiveted - components: - - pos: 18.5,3.5 - parent: 0 - type: Transform -- uid: 250 - type: WallRiveted - components: - - pos: 18.5,4.5 - parent: 0 - type: Transform -- uid: 251 - type: WallRiveted - components: - - pos: 18.5,6.5 - parent: 0 - type: Transform -- uid: 252 - type: WallRiveted - components: - - pos: 18.5,7.5 - parent: 0 - type: Transform -- uid: 253 - type: WallRiveted - components: - - pos: 18.5,8.5 - parent: 0 - type: Transform -- uid: 254 - type: WallRiveted - components: - - pos: 17.5,8.5 - parent: 0 - type: Transform -- uid: 255 - type: WallRiveted - components: - - pos: 16.5,8.5 - parent: 0 - type: Transform -- uid: 256 - type: WallRiveted - components: - - pos: 16.5,7.5 - parent: 0 - type: Transform -- uid: 257 - type: WallRiveted - components: - - pos: 16.5,6.5 - parent: 0 - type: Transform -- uid: 258 - type: WallRiveted - components: - - pos: 15.5,7.5 - parent: 0 - type: Transform -- uid: 259 - type: ReinforcedWindow - components: - - pos: 9.5,7.5 - parent: 0 - type: Transform -- uid: 260 - type: ReinforcedWindow - components: - - pos: 10.5,7.5 - parent: 0 - type: Transform -- uid: 261 - type: ReinforcedWindow - components: - - pos: 11.5,7.5 - parent: 0 - type: Transform -- uid: 262 - type: ReinforcedWindow - components: - - pos: 13.5,7.5 - parent: 0 - type: Transform -- uid: 263 - type: ReinforcedWindow - components: - - pos: 14.5,7.5 - parent: 0 - type: Transform -- uid: 264 - type: ReinforcedWindow - components: - - pos: 11.5,9.5 - parent: 0 - type: Transform -- uid: 265 - type: ReinforcedWindow - components: - - pos: 10.5,9.5 - parent: 0 - type: Transform -- uid: 266 - type: ReinforcedWindow - components: - - pos: 9.5,9.5 - parent: 0 - type: Transform -- uid: 267 - type: ReinforcedWindow - components: - - pos: 3.5,8.5 - parent: 0 - type: Transform -- uid: 268 - type: ReinforcedWindow - components: - - pos: 14.5,9.5 - parent: 0 - type: Transform -- uid: 269 - type: ReinforcedWindow - components: - - pos: 7.5,9.5 - parent: 0 - type: Transform -- uid: 270 - type: ReinforcedWindow - components: - - pos: 6.5,9.5 - parent: 0 - type: Transform -- uid: 271 - type: ReinforcedWindow - components: - - pos: 8.5,8.5 - parent: 0 - type: Transform -- uid: 272 - type: ReinforcedWindow - components: - - pos: 12.5,8.5 - parent: 0 - type: Transform -- uid: 273 - type: WallRiveted - components: - - pos: 8.5,7.5 - parent: 0 - type: Transform -- uid: 274 - type: WallRiveted - components: - - pos: 8.5,9.5 - parent: 0 - type: Transform -- uid: 275 - type: ReinforcedWindow - components: - - pos: 13.5,9.5 - parent: 0 - type: Transform -- uid: 276 - type: WallRiveted - components: - - pos: 12.5,9.5 - parent: 0 - type: Transform -- uid: 277 - type: WallRiveted - components: - - pos: 12.5,7.5 - parent: 0 - type: Transform -- uid: 278 - type: Grille - components: - - pos: 3.5,8.5 - parent: 0 - type: Transform -- uid: 279 - type: Grille - components: - - pos: 6.5,9.5 - parent: 0 - type: Transform -- uid: 280 - type: Grille - components: - - pos: 7.5,9.5 - parent: 0 - type: Transform -- uid: 281 - type: Grille - components: - - pos: 8.5,8.5 - parent: 0 - type: Transform -- uid: 282 - type: Grille - components: - - pos: 9.5,7.5 - parent: 0 - type: Transform -- uid: 283 - type: Grille - components: - - pos: 10.5,7.5 - parent: 0 - type: Transform -- uid: 284 - type: Grille - components: - - pos: 11.5,7.5 - parent: 0 - type: Transform -- uid: 285 - type: Grille - components: - - pos: 13.5,7.5 - parent: 0 - type: Transform -- uid: 286 - type: Grille - components: - - pos: 14.5,7.5 - parent: 0 - type: Transform -- uid: 287 - type: Grille - components: - - pos: 12.5,8.5 - parent: 0 - type: Transform -- uid: 288 - type: Grille - components: - - pos: 14.5,9.5 - parent: 0 - type: Transform -- uid: 289 - type: Grille - components: - - pos: 13.5,9.5 - parent: 0 - type: Transform -- uid: 290 - type: Grille - components: - - pos: 11.5,9.5 - parent: 0 - type: Transform -- uid: 291 - type: Grille - components: - - pos: 10.5,9.5 - parent: 0 - type: Transform -- uid: 292 - type: Grille - components: - - pos: 9.5,9.5 - parent: 0 - type: Transform -- uid: 293 - type: WallRiveted - components: - - pos: 3.5,9.5 - parent: 0 - type: Transform -- uid: 294 - type: WallRiveted - components: - - pos: 4.5,9.5 - parent: 0 - type: Transform -- uid: 295 - type: WallRiveted - components: - - pos: 5.5,9.5 - parent: 0 - type: Transform -- uid: 296 - type: WallRiveted - components: - - pos: 5.5,8.5 - parent: 0 - type: Transform -- uid: 297 - type: WallRiveted - components: - - pos: 7.5,7.5 - parent: 0 - type: Transform -- uid: 298 - type: WallRiveted - components: - - pos: 6.5,7.5 - parent: 0 - type: Transform -- uid: 299 - type: WallRiveted - components: - - pos: 15.5,8.5 - parent: 0 - type: Transform -- uid: 300 - type: WallRiveted - components: - - pos: 15.5,9.5 - parent: 0 - type: Transform -- uid: 301 - type: ReinforcedWindow - components: - - pos: 11.5,-3.5 - parent: 0 - type: Transform -- uid: 302 - type: ReinforcedWindow - components: - - pos: 13.5,-3.5 - parent: 0 - type: Transform -- uid: 303 - type: ReinforcedWindow - components: - - pos: 15.5,-3.5 - parent: 0 - type: Transform -- uid: 304 - type: Grille - components: - - pos: 15.5,-3.5 - parent: 0 - type: Transform -- uid: 305 - type: Grille - components: - - pos: 13.5,-3.5 - parent: 0 - type: Transform -- uid: 306 - type: Grille - components: - - pos: 11.5,-3.5 - parent: 0 - type: Transform -- uid: 307 - type: ReinforcedWindow - components: - - pos: 0.5,-6.5 - parent: 0 - type: Transform -- uid: 308 - type: ReinforcedWindow - components: - - pos: -1.5,-6.5 - parent: 0 - type: Transform -- uid: 309 - type: ReinforcedWindow - components: - - pos: -1.5,-8.5 - parent: 0 - type: Transform -- uid: 310 - type: ReinforcedWindow - components: - - pos: 0.5,-8.5 - parent: 0 - type: Transform -- uid: 311 - type: Grille - components: - - pos: 0.5,-8.5 - parent: 0 - type: Transform -- uid: 312 - type: Grille - components: - - pos: -1.5,-8.5 - parent: 0 - type: Transform -- uid: 313 - type: Grille - components: - - pos: -1.5,-6.5 - parent: 0 - type: Transform -- uid: 314 - type: Grille - components: - - pos: 0.5,-6.5 - parent: 0 - type: Transform -- uid: 315 - type: WallRiveted - components: - - pos: -2.5,-6.5 - parent: 0 - type: Transform -- uid: 316 - type: WallRiveted - components: - - pos: -2.5,-7.5 - parent: 0 - type: Transform -- uid: 317 - type: WallRiveted - components: - - pos: -2.5,-8.5 - parent: 0 - type: Transform -- uid: 318 - type: WallRiveted - components: - - pos: -3.5,-8.5 - parent: 0 - type: Transform -- uid: 319 - type: WallRiveted - components: - - pos: -4.5,-8.5 - parent: 0 - type: Transform -- uid: 320 - type: WallRiveted - components: - - pos: -4.5,-6.5 - parent: 0 - type: Transform -- uid: 321 - type: WallRiveted - components: - - pos: -6.5,-6.5 - parent: 0 - type: Transform -- uid: 322 - type: WallRiveted - components: - - pos: -7.5,-6.5 - parent: 0 - type: Transform -- uid: 323 - type: WallRiveted - components: - - pos: -8.5,-6.5 - parent: 0 - type: Transform -- uid: 324 - type: WallRiveted - components: - - pos: -6.5,-8.5 - parent: 0 - type: Transform -- uid: 325 - type: WallRiveted - components: - - pos: -7.5,-8.5 - parent: 0 - type: Transform -- uid: 326 - type: WallRiveted - components: - - pos: -8.5,-8.5 - parent: 0 - type: Transform -- uid: 327 - type: WallRiveted - components: - - pos: -8.5,-7.5 - parent: 0 - type: Transform -- uid: 328 - type: WallRiveted - components: - - pos: -7.5,-3.5 - parent: 0 - type: Transform -- uid: 329 - type: WallRiveted - components: - - pos: -8.5,-3.5 - parent: 0 - type: Transform -- uid: 330 - type: WallRiveted - components: - - pos: -9.5,-3.5 - parent: 0 - type: Transform -- uid: 331 - type: WallRiveted - components: - - pos: -9.5,-4.5 - parent: 0 - type: Transform -- uid: 332 - type: WallRiveted - components: - - pos: -9.5,-5.5 - parent: 0 - type: Transform -- uid: 333 - type: WallRiveted - components: - - pos: -9.5,-6.5 - parent: 0 - type: Transform -- uid: 334 - type: WallRiveted - components: - - pos: -9.5,-7.5 - parent: 0 - type: Transform -- uid: 335 - type: WallRiveted - components: - - pos: -9.5,-8.5 - parent: 0 - type: Transform -- uid: 336 - type: ReinforcedWindow - components: - - pos: -7.5,-5.5 - parent: 0 - type: Transform -- uid: 337 - type: ReinforcedWindow - components: - - pos: -7.5,-4.5 - parent: 0 - type: Transform -- uid: 338 - type: ReinforcedWindow - components: - - pos: -3.5,-6.5 - parent: 0 - type: Transform -- uid: 339 - type: ReinforcedWindow - components: - - pos: -4.5,-7.5 - parent: 0 - type: Transform -- uid: 340 - type: ReinforcedWindow - components: - - pos: -6.5,-7.5 - parent: 0 - type: Transform -- uid: 341 - type: Grille - components: - - pos: -6.5,-7.5 - parent: 0 - type: Transform -- uid: 342 - type: Grille - components: - - pos: -4.5,-7.5 - parent: 0 - type: Transform -- uid: 343 - type: Grille - components: - - pos: -3.5,-6.5 - parent: 0 - type: Transform -- uid: 344 - type: Grille - components: - - pos: -7.5,-5.5 - parent: 0 - type: Transform -- uid: 345 - type: Grille - components: - - pos: -7.5,-4.5 - parent: 0 - type: Transform -- uid: 346 - type: WallRiveted - components: - - pos: 19.5,6.5 - parent: 0 - type: Transform -- uid: 347 - type: Catwalk - components: - - pos: 34.5,2.5 - parent: 0 - type: Transform -- uid: 348 - type: ReinforcedWindow - components: - - pos: 21.5,6.5 - parent: 0 - type: Transform -- uid: 349 - type: WallRiveted - components: - - pos: 22.5,6.5 - parent: 0 - type: Transform -- uid: 350 - type: WallRiveted - components: - - pos: 23.5,6.5 - parent: 0 - type: Transform -- uid: 351 - type: WallRiveted - components: - - pos: 24.5,6.5 - parent: 0 - type: Transform -- uid: 352 - type: WallRiveted - components: - - pos: 28.5,6.5 - parent: 0 - type: Transform -- uid: 353 - type: WallRiveted - components: - - pos: 29.5,6.5 - parent: 0 - type: Transform -- uid: 354 - type: WallRiveted - components: - - pos: 30.5,6.5 - parent: 0 - type: Transform -- uid: 355 - type: ReinforcedWindow - components: - - pos: 31.5,6.5 - parent: 0 - type: Transform -- uid: 356 - type: WallRiveted - components: - - pos: 32.5,6.5 - parent: 0 - type: Transform -- uid: 357 - type: WallRiveted - components: - - pos: 33.5,6.5 - parent: 0 - type: Transform -- uid: 358 - type: WallRiveted - components: - - pos: 34.5,6.5 - parent: 0 - type: Transform -- uid: 359 - type: WallRiveted - components: - - pos: 35.5,6.5 - parent: 0 - type: Transform -- uid: 360 - type: ReinforcedWindow - components: - - pos: 24.5,7.5 - parent: 0 - type: Transform -- uid: 361 - type: ReinforcedWindow - components: - - pos: 28.5,7.5 - parent: 0 - type: Transform -- uid: 362 - type: WallRiveted - components: - - pos: 18.5,9.5 - parent: 0 - type: Transform -- uid: 363 - type: WallRiveted - components: - - pos: 19.5,9.5 - parent: 0 - type: Transform -- uid: 364 - type: WallRiveted - components: - - pos: 20.5,9.5 - parent: 0 - type: Transform -- uid: 365 - type: WallRiveted - components: - - pos: 21.5,9.5 - parent: 0 - type: Transform -- uid: 366 - type: WallRiveted - components: - - pos: 22.5,9.5 - parent: 0 - type: Transform -- uid: 367 - type: WallRiveted - components: - - pos: 23.5,9.5 - parent: 0 - type: Transform -- uid: 368 - type: WallRiveted - components: - - pos: 24.5,9.5 - parent: 0 - type: Transform -- uid: 369 - type: WallRiveted - components: - - pos: 25.5,9.5 - parent: 0 - type: Transform -- uid: 370 - type: WallRiveted - components: - - pos: 26.5,9.5 - parent: 0 - type: Transform -- uid: 371 - type: WallRiveted - components: - - pos: 27.5,9.5 - parent: 0 - type: Transform -- uid: 372 - type: WallRiveted - components: - - pos: 28.5,9.5 - parent: 0 - type: Transform -- uid: 373 - type: WallRiveted - components: - - pos: 29.5,9.5 - parent: 0 - type: Transform -- uid: 374 - type: WallRiveted - components: - - pos: 30.5,9.5 - parent: 0 - type: Transform -- uid: 375 - type: WallRiveted - components: - - pos: 31.5,9.5 - parent: 0 - type: Transform -- uid: 376 - type: WallRiveted - components: - - pos: 32.5,9.5 - parent: 0 - type: Transform -- uid: 377 - type: WallRiveted - components: - - pos: 33.5,9.5 - parent: 0 - type: Transform -- uid: 378 - type: WallRiveted - components: - - pos: 34.5,9.5 - parent: 0 - type: Transform -- uid: 379 - type: WallRiveted - components: - - pos: 35.5,9.5 - parent: 0 - type: Transform -- uid: 380 - type: WallRiveted - components: - - pos: 35.5,8.5 - parent: 0 - type: Transform -- uid: 381 - type: WallRiveted - components: - - pos: 35.5,7.5 - parent: 0 - type: Transform -- uid: 382 - type: WallRiveted - components: - - pos: 34.5,8.5 - parent: 0 - type: Transform -- uid: 383 - type: WallRiveted - components: - - pos: 34.5,7.5 - parent: 0 - type: Transform -- uid: 384 - type: WallRiveted - components: - - pos: 28.5,8.5 - parent: 0 - type: Transform -- uid: 385 - type: WallRiveted - components: - - pos: 24.5,8.5 - parent: 0 - type: Transform -- uid: 386 - type: WallRiveted - components: - - pos: 35.5,-7.5 - parent: 0 - type: Transform -- uid: 387 - type: WallRiveted - components: - - pos: 35.5,-8.5 - parent: 0 - type: Transform -- uid: 388 - type: WallRiveted - components: - - pos: 35.5,-9.5 - parent: 0 - type: Transform -- uid: 389 - type: WallRiveted - components: - - pos: 34.5,-9.5 - parent: 0 - type: Transform -- uid: 390 - type: WallRiveted - components: - - pos: 34.5,-8.5 - parent: 0 - type: Transform -- uid: 391 - type: WallRiveted - components: - - pos: 34.5,-7.5 - parent: 0 - type: Transform -- uid: 392 - type: WallRiveted - components: - - pos: 33.5,-7.5 - parent: 0 - type: Transform -- uid: 393 - type: ReinforcedWindow - components: - - pos: 31.5,-7.5 - parent: 0 - type: Transform -- uid: 394 - type: WallRiveted - components: - - pos: 32.5,-7.5 - parent: 0 - type: Transform -- uid: 395 - type: WallRiveted - components: - - pos: 30.5,-7.5 - parent: 0 - type: Transform -- uid: 396 - type: ReinforcedWindow - components: - - pos: 23.5,-8.5 - parent: 0 - type: Transform -- uid: 397 - type: WallRiveted - components: - - pos: 32.5,-9.5 - parent: 0 - type: Transform -- uid: 398 - type: WallRiveted - components: - - pos: 23.5,-9.5 - parent: 0 - type: Transform -- uid: 399 - type: WallRiveted - components: - - pos: 30.5,-9.5 - parent: 0 - type: Transform -- uid: 400 - type: WallRiveted - components: - - pos: 28.5,-7.5 - parent: 0 - type: Transform -- uid: 401 - type: ReinforcedWindow - components: - - pos: 29.5,-8.5 - parent: 0 - type: Transform -- uid: 402 - type: WallRiveted - components: - - pos: 33.5,-9.5 - parent: 0 - type: Transform -- uid: 403 - type: WallRiveted - components: - - pos: 29.5,-9.5 - parent: 0 - type: Transform -- uid: 404 - type: WallRiveted - components: - - pos: 31.5,-9.5 - parent: 0 - type: Transform -- uid: 405 - type: WallRiveted - components: - - pos: 29.5,-7.5 - parent: 0 - type: Transform -- uid: 406 - type: WallRiveted - components: - - pos: 19.5,-7.5 - parent: 0 - type: Transform -- uid: 407 - type: WallRiveted - components: - - pos: 20.5,-7.5 - parent: 0 - type: Transform -- uid: 408 - type: ReinforcedWindow - components: - - pos: 21.5,-7.5 - parent: 0 - type: Transform -- uid: 409 - type: WallRiveted - components: - - pos: 22.5,-7.5 - parent: 0 - type: Transform -- uid: 410 - type: WallRiveted - components: - - pos: 23.5,-7.5 - parent: 0 - type: Transform -- uid: 411 - type: WallRiveted - components: - - pos: 24.5,-7.5 - parent: 0 - type: Transform -- uid: 412 - type: WallRiveted - components: - - pos: 22.5,-9.5 - parent: 0 - type: Transform -- uid: 413 - type: WallRiveted - components: - - pos: 21.5,-9.5 - parent: 0 - type: Transform -- uid: 414 - type: WallRiveted - components: - - pos: 20.5,-9.5 - parent: 0 - type: Transform -- uid: 415 - type: WallRiveted - components: - - pos: 19.5,-9.5 - parent: 0 - type: Transform -- uid: 416 - type: WallRiveted - components: - - pos: 23.5,-10.5 - parent: 0 - type: Transform -- uid: 417 - type: WallRiveted - components: - - pos: 29.5,-10.5 - parent: 0 - type: Transform -- uid: 418 - type: WallRiveted - components: - - pos: 29.5,-11.5 - parent: 0 - type: Transform -- uid: 419 - type: WallRiveted - components: - - pos: 29.5,-12.5 - parent: 0 - type: Transform -- uid: 420 - type: WallRiveted - components: - - pos: 28.5,-12.5 - parent: 0 - type: Transform -- uid: 421 - type: WallRiveted - components: - - pos: 27.5,-12.5 - parent: 0 - type: Transform -- uid: 422 - type: WallRiveted - components: - - pos: 26.5,-12.5 - parent: 0 - type: Transform -- uid: 423 - type: WallRiveted - components: - - pos: 25.5,-12.5 - parent: 0 - type: Transform -- uid: 424 - type: WallRiveted - components: - - pos: 24.5,-12.5 - parent: 0 - type: Transform -- uid: 425 - type: WallRiveted - components: - - pos: 23.5,-12.5 - parent: 0 - type: Transform -- uid: 426 - type: WallRiveted - components: - - pos: 22.5,-12.5 - parent: 0 - type: Transform -- uid: 427 - type: WallRiveted - components: - - pos: 21.5,-12.5 - parent: 0 - type: Transform -- uid: 428 - type: WallRiveted - components: - - pos: 20.5,-12.5 - parent: 0 - type: Transform -- uid: 429 - type: WallRiveted - components: - - pos: 19.5,-12.5 - parent: 0 - type: Transform -- uid: 430 - type: WallRiveted - components: - - pos: 18.5,-12.5 - parent: 0 - type: Transform -- uid: 431 - type: WallRiveted - components: - - pos: 35.5,-1.5 - parent: 0 - type: Transform -- uid: 432 - type: WallRiveted - components: - - pos: 35.5,-0.5 - parent: 0 - type: Transform -- uid: 433 - type: WallRiveted - components: - - pos: 35.5,0.5 - parent: 0 - type: Transform -- uid: 434 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 435 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 1.5707963267948966 rad - pos: 35.5,2.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 436 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-3.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 437 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 438 - type: AtmosDeviceFanTiny - components: - - pos: 35.5,-5.5 - parent: 0 - type: Transform -- uid: 439 - type: AtmosDeviceFanTiny - components: - - pos: 35.5,-3.5 - parent: 0 - type: Transform -- uid: 440 - type: AtmosDeviceFanTiny - components: - - pos: 35.5,2.5 - parent: 0 - type: Transform -- uid: 441 - type: AtmosDeviceFanTiny - components: - - pos: 35.5,4.5 - parent: 0 - type: Transform -- uid: 442 - type: ReinforcedWindow - components: - - pos: 35.5,1.5 - parent: 0 - type: Transform -- uid: 443 - type: ReinforcedWindow - components: - - pos: 35.5,3.5 - parent: 0 - type: Transform -- uid: 444 - type: ReinforcedWindow - components: - - pos: 35.5,5.5 - parent: 0 - type: Transform -- uid: 445 - type: ReinforcedWindow - components: - - pos: 35.5,-2.5 - parent: 0 - type: Transform -- uid: 446 - type: ReinforcedWindow - components: - - pos: 35.5,-4.5 - parent: 0 - type: Transform -- uid: 447 - type: ReinforcedWindow - components: - - pos: 35.5,-6.5 - parent: 0 - type: Transform -- uid: 448 - type: Grille - components: - - pos: 35.5,-6.5 - parent: 0 - type: Transform -- uid: 449 - type: Grille - components: - - pos: 35.5,-4.5 - parent: 0 - type: Transform -- uid: 450 - type: Grille - components: - - pos: 35.5,-2.5 - parent: 0 - type: Transform -- uid: 451 - type: Grille - components: - - pos: 35.5,1.5 - parent: 0 - type: Transform -- uid: 452 - type: Grille - components: - - pos: 35.5,3.5 - parent: 0 - type: Transform -- uid: 453 - type: Grille - components: - - pos: 35.5,5.5 - parent: 0 - type: Transform -- uid: 454 - type: Grille - components: - - pos: 21.5,-7.5 - parent: 0 - type: Transform -- uid: 455 - type: Grille - components: - - pos: 23.5,-8.5 - parent: 0 - type: Transform -- uid: 456 - type: Grille - components: - - pos: 29.5,-8.5 - parent: 0 - type: Transform -- uid: 457 - type: Grille - components: - - pos: 31.5,-7.5 - parent: 0 - type: Transform -- uid: 458 - type: Grille - components: - - pos: 31.5,6.5 - parent: 0 - type: Transform -- uid: 459 - type: Grille - components: - - pos: 28.5,7.5 - parent: 0 - type: Transform -- uid: 460 - type: Grille - components: - - pos: 24.5,7.5 - parent: 0 - type: Transform -- uid: 461 - type: Grille - components: - - pos: 21.5,6.5 - parent: 0 - type: Transform -- uid: 462 - type: ReinforcedWindow - components: - - pos: 33.5,5.5 - parent: 0 - type: Transform -- uid: 463 - type: ReinforcedWindow - components: - - pos: 33.5,3.5 - parent: 0 - type: Transform -- uid: 464 - type: ReinforcedWindow - components: - - pos: 33.5,1.5 - parent: 0 - type: Transform -- uid: 465 - type: ReinforcedWindow - components: - - pos: 33.5,-2.5 - parent: 0 - type: Transform -- uid: 466 - type: ReinforcedWindow - components: - - pos: 33.5,-4.5 - parent: 0 - type: Transform -- uid: 467 - type: ReinforcedWindow - components: - - pos: 33.5,-6.5 - parent: 0 - type: Transform -- uid: 468 - type: WallRiveted - components: - - pos: 33.5,-1.5 - parent: 0 - type: Transform -- uid: 469 - type: WallRiveted - components: - - pos: 33.5,-0.5 - parent: 0 - type: Transform -- uid: 470 - type: WallRiveted - components: - - pos: 33.5,0.5 - parent: 0 - type: Transform -- uid: 471 - type: ReinforcedWindow - components: - - pos: 34.5,-1.5 - parent: 0 - type: Transform -- uid: 472 - type: ReinforcedWindow - components: - - pos: 34.5,0.5 - parent: 0 - type: Transform -- uid: 473 - type: Grille - components: - - pos: 33.5,-6.5 - parent: 0 - type: Transform -- uid: 474 - type: Grille - components: - - pos: 33.5,-4.5 - parent: 0 - type: Transform -- uid: 475 - type: Grille - components: - - pos: 33.5,-2.5 - parent: 0 - type: Transform -- uid: 476 - type: Grille - components: - - pos: 34.5,-1.5 - parent: 0 - type: Transform -- uid: 477 - type: Grille - components: - - pos: 34.5,0.5 - parent: 0 - type: Transform -- uid: 478 - type: Grille - components: - - pos: 33.5,1.5 - parent: 0 - type: Transform -- uid: 479 - type: Grille - components: - - pos: 33.5,3.5 - parent: 0 - type: Transform -- uid: 480 - type: Grille - components: - - pos: 33.5,5.5 - parent: 0 - type: Transform -- uid: 481 - type: AirlockExternalGlass - components: - - pos: 33.5,4.5 - parent: 0 - type: Transform -- uid: 482 - type: AirlockExternalGlass - components: - - pos: 33.5,2.5 - parent: 0 - type: Transform -- uid: 483 - type: AirlockExternalGlass - components: - - pos: 33.5,-3.5 - parent: 0 - type: Transform -- uid: 484 - type: AirlockExternalGlass - components: - - pos: 33.5,-5.5 - parent: 0 - type: Transform -- uid: 485 - type: WindowReinforcedDirectional - components: - - pos: 25.5,6.5 - parent: 0 - type: Transform -- uid: 486 - type: SS13Memorial - components: - - pos: 26.5,7.5 - parent: 0 - type: Transform -- uid: 487 - type: WindowReinforcedDirectional - components: - - pos: 26.5,6.5 - parent: 0 - type: Transform -- uid: 488 - type: WindowReinforcedDirectional - components: - - pos: 27.5,6.5 - parent: 0 - type: Transform -- uid: 489 - type: TableReinforced - components: - - pos: 27.5,-7.5 - parent: 0 - type: Transform -- uid: 490 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 25.5,-7.5 - parent: 0 - type: Transform -- uid: 491 - type: TableReinforced - components: - - pos: 25.5,-7.5 - parent: 0 - type: Transform -- uid: 492 - type: FirelockGlass - components: - - pos: 25.5,-7.5 - parent: 0 - type: Transform -- uid: 493 - type: FirelockGlass - components: - - pos: 26.5,-7.5 - parent: 0 - type: Transform -- uid: 494 - type: TableReinforced - components: - - pos: 26.5,-7.5 - parent: 0 - type: Transform -- uid: 495 - type: FirelockGlass - components: - - pos: 27.5,-7.5 - parent: 0 - type: Transform -- uid: 496 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 27.5,-7.5 - parent: 0 - type: Transform -- uid: 497 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: 26.5,-7.5 - parent: 0 - type: Transform -- uid: 498 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 0 - type: Transform -- uid: 499 - type: ComputerSurveillanceCameraMonitor - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-9.5 - parent: 0 - type: Transform -- uid: 500 - type: TableReinforced - components: - - pos: 24.5,-9.5 - parent: 0 - type: Transform -- uid: 501 - type: TableReinforced - components: - - pos: 24.5,-8.5 - parent: 0 - type: Transform -- uid: 502 - type: TableReinforced - components: - - pos: 28.5,-10.5 - parent: 0 - type: Transform -- uid: 503 - type: TableReinforced - components: - - pos: 28.5,-11.5 - parent: 0 - type: Transform -- uid: 504 - type: TableReinforced - components: - - pos: 27.5,-11.5 - parent: 0 - type: Transform -- uid: 505 - type: TableReinforced - components: - - pos: 26.5,-11.5 - parent: 0 - type: Transform -- uid: 506 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 26.5,-8.5 - parent: 0 - type: Transform -- uid: 507 - type: ChairOfficeDark - components: - - pos: 27.5,-10.5 - parent: 0 - type: Transform -- uid: 508 - type: PottedPlant21 - components: - - pos: 24.5,-10.5 - parent: 0 - type: Transform -- uid: 509 - type: AirlockSecurityLocked - components: - - pos: 18.5,-11.5 - parent: 0 - type: Transform -- uid: 510 - type: Poweredlight - components: - - pos: 20.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 511 - type: LockerSecurityFilled - components: - - pos: 19.5,-10.5 - parent: 0 - type: Transform -- uid: 512 - type: LockerSecurityFilled - components: - - pos: 22.5,-10.5 - parent: 0 - type: Transform -- uid: 513 - type: TableReinforced - components: - - pos: 20.5,-10.5 - parent: 0 - type: Transform -- uid: 514 - type: TableReinforced - components: - - pos: 21.5,-10.5 - parent: 0 - type: Transform -- uid: 515 - type: CrowbarRed - components: - - pos: 20.552847,-10.547255 - parent: 0 - type: Transform -- uid: 516 - type: BoxHandcuff - components: - - pos: 21.459097,-10.359755 - parent: 0 - type: Transform -- uid: 517 - type: Chair - components: - - pos: 22.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 518 - type: Chair - components: - - pos: 23.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 519 - type: Chair - components: - - pos: 24.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 520 - type: Chair - components: - - pos: 28.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 521 - type: Chair - components: - - pos: 29.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 522 - type: Chair - components: - - pos: 30.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 523 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 524 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 525 - type: Poweredlight - components: - - pos: 26.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 526 - type: Poweredlight - components: - - pos: 21.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 527 - type: Poweredlight - components: - - pos: 31.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 528 - type: Table - components: - - pos: 21.5,5.5 - parent: 0 - type: Transform -- uid: 529 - type: Table - components: - - pos: 31.5,5.5 - parent: 0 - type: Transform -- uid: 530 - type: Table - components: - - pos: 21.5,-6.5 - parent: 0 - type: Transform -- uid: 531 - type: DisposalUnit - components: - - pos: 31.5,-6.5 - parent: 0 - type: Transform -- uid: 532 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 22.5,-6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 533 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 534 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 24.5,-6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 535 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 536 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 537 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 30.5,-6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 538 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 539 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 540 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 19.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 541 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 19.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 542 - type: PottedPlant21 - components: - - pos: 19.5,-5.5 - parent: 0 - type: Transform -- uid: 543 - type: PottedPlant21 - components: - - pos: 19.5,4.5 - parent: 0 - type: Transform -- uid: 544 - type: PottedPlant22 - components: - - pos: 19.5,-0.5 - parent: 0 - type: Transform -- uid: 545 - type: SignDoors - components: - - pos: 18.5,-0.5 - parent: 0 - type: Transform -- uid: 546 - type: SignDoors - components: - - pos: 16.5,-0.5 - parent: 0 - type: Transform -- uid: 547 - type: SignDoors - components: - - pos: 8.5,-0.5 - parent: 0 - type: Transform -- uid: 548 - type: SignDoors - components: - - pos: 6.5,-0.5 - parent: 0 - type: Transform -- uid: 549 - type: AirlockSecurityLocked - components: - - pos: 18.5,5.5 - parent: 0 - type: Transform -- uid: 550 - type: AirlockSecurityLocked - components: - - pos: 16.5,5.5 - parent: 0 - type: Transform -- uid: 551 - type: AirlockSecurityLocked - components: - - pos: 8.5,3.5 - parent: 0 - type: Transform -- uid: 552 - type: AirlockSecurityLocked - components: - - pos: 6.5,3.5 - parent: 0 - type: Transform -- uid: 553 - type: AtmosDeviceFanTiny - components: - - pos: 7.5,3.5 - parent: 0 - type: Transform -- uid: 554 - type: AtmosDeviceFanTiny - components: - - pos: 17.5,5.5 - parent: 0 - type: Transform -- uid: 555 - type: AtmosDeviceFanTiny - components: - - pos: 17.5,-6.5 - parent: 0 - type: Transform -- uid: 556 - type: AtmosDeviceFanTiny - components: - - pos: 4.5,-7.5 - parent: 0 - type: Transform -- uid: 557 - type: AirlockMedicalGlassLocked - components: - - pos: 12.5,-3.5 - parent: 0 - type: Transform -- uid: 558 - type: AirlockMedicalGlassLocked - components: - - pos: 14.5,-3.5 - parent: 0 - type: Transform -- uid: 559 - type: FirelockGlass - components: - - pos: 12.5,2.5 - parent: 0 - type: Transform -- uid: 560 - type: FirelockGlass - components: - - pos: 14.5,2.5 - parent: 0 - type: Transform -- uid: 561 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: 12.5,2.5 - parent: 0 - type: Transform -- uid: 562 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: 14.5,2.5 - parent: 0 - type: Transform -- uid: 563 - type: Windoor - components: - - pos: 12.5,2.5 - parent: 0 - type: Transform -- uid: 564 - type: Windoor - components: - - pos: 14.5,2.5 - parent: 0 - type: Transform -- uid: 565 - type: HighSecDoor - components: - - pos: 18.5,-6.5 - parent: 0 - type: Transform -- uid: 566 - type: HighSecDoor - components: - - pos: 18.5,-1.5 - parent: 0 - type: Transform -- uid: 567 - type: HighSecDoor - components: - - pos: 18.5,0.5 - parent: 0 - type: Transform -- uid: 568 - type: HighSecDoor - components: - - pos: 16.5,0.5 - parent: 0 - type: Transform -- uid: 569 - type: HighSecDoor - components: - - pos: 16.5,-1.5 - parent: 0 - type: Transform -- uid: 570 - type: HighSecDoor - components: - - pos: 8.5,-1.5 - parent: 0 - type: Transform -- uid: 571 - type: HighSecDoor - components: - - pos: 6.5,-1.5 - parent: 0 - type: Transform -- uid: 572 - type: HighSecDoor - components: - - pos: 6.5,0.5 - parent: 0 - type: Transform -- uid: 573 - type: HighSecDoor - components: - - pos: 8.5,0.5 - parent: 0 - type: Transform -- uid: 574 - type: AirlockMedicalLocked - components: - - pos: 16.5,-6.5 - parent: 0 - type: Transform -- uid: 575 - type: ComputerCloningConsole - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 0 - type: Transform - - outputs: - MedicalScannerSender: - - port: MedicalScannerReceiver - uid: 723 - CloningPodSender: - - port: CloningPodReceiver - uid: 722 - type: SignalTransmitter -- uid: 576 - type: Poweredlight - components: - - pos: 17.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 577 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 578 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 17.5,3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 579 - type: Poweredlight - components: - - pos: 17.5,7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 580 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 581 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 582 - type: Poweredlight - components: - - pos: 34.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 583 - type: Poweredlight - components: - - pos: 23.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 584 - type: Poweredlight - components: - - pos: 29.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 585 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 586 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 587 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 588 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 589 - type: ComputerId - components: - - rot: 3.141592653589793 rad - pos: 13.5,3.5 - parent: 0 - type: Transform -- uid: 590 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: 15.5,3.5 - parent: 0 - type: Transform -- uid: 591 - type: ComputerCriminalRecords - components: - - rot: 1.5707963267948966 rad - pos: 11.5,4.5 - parent: 0 - type: Transform -- uid: 592 - type: ComputerSurveillanceCameraMonitor - components: - - rot: -1.5707963267948966 rad - pos: 15.5,4.5 - parent: 0 - type: Transform -- uid: 593 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: 11.5,3.5 - parent: 0 - type: Transform -- uid: 594 - type: filingCabinet - components: - - pos: 10.5,6.5 - parent: 0 - type: Transform -- uid: 595 - type: filingCabinet - components: - - pos: 11.5,6.5 - parent: 0 - type: Transform -- uid: 596 - type: TableReinforced - components: - - pos: 10.5,3.5 - parent: 0 - type: Transform -- uid: 597 - type: TableReinforced - components: - - pos: 10.5,4.5 - parent: 0 - type: Transform -- uid: 598 - type: TableReinforced - components: - - pos: 12.5,6.5 - parent: 0 - type: Transform -- uid: 599 - type: TableReinforced - components: - - pos: 13.5,6.5 - parent: 0 - type: Transform -- uid: 600 - type: TableReinforced - components: - - pos: 14.5,6.5 - parent: 0 - type: Transform -- uid: 601 - type: TableReinforced - components: - - pos: 15.5,6.5 - parent: 0 - type: Transform -- uid: 602 - type: PottedPlant21 - components: - - name: security plant - type: MetaData - - pos: 9.5,6.5 - parent: 0 - type: Transform -- uid: 603 - type: PottedPlant22 - components: - - name: security plant - type: MetaData - - pos: 13.5,4.5 - parent: 0 - type: Transform -- uid: 604 - type: ChairOfficeDark - components: - - pos: 12.5,3.5 - parent: 0 - type: Transform -- uid: 605 - type: ChairOfficeDark - components: - - pos: 14.5,3.5 - parent: 0 - type: Transform -- uid: 606 - type: PottedPlant21 - components: - - pos: 9.5,-0.5 - parent: 0 - type: Transform -- uid: 607 - type: PottedPlant21 - components: - - pos: 15.5,-0.5 - parent: 0 - type: Transform -- uid: 608 - type: ComputerCrewMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-4.5 - parent: 0 - type: Transform -- uid: 609 - type: StasisBed - components: - - pos: 11.5,-7.5 - parent: 0 - type: Transform -- uid: 610 - type: OperatingTable - components: - - pos: 9.5,-5.5 - parent: 0 - type: Transform -- uid: 611 - type: computerBodyScanner - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 0 - type: Transform -- uid: 612 - type: MedicalBed - components: - - pos: 13.5,-7.5 - parent: 0 - type: Transform -- uid: 613 - type: TableReinforced - components: - - pos: 14.5,-7.5 - parent: 0 - type: Transform -- uid: 614 - type: TableReinforced - components: - - pos: 15.5,-7.5 - parent: 0 - type: Transform -- uid: 615 - type: TableReinforced - components: - - pos: 10.5,-7.5 - parent: 0 - type: Transform -- uid: 616 - type: MedicalTechFab - components: - - pos: 9.5,-7.5 - parent: 0 - type: Transform -- uid: 617 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 15.5,-5.5 - parent: 0 - type: Transform -- uid: 618 - type: TableReinforced - components: - - pos: 9.5,-4.5 - parent: 0 - type: Transform -- uid: 619 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 0 - type: Transform -- uid: 620 - type: MedkitFilled - components: - - pos: 14.516341,-7.5759134 - parent: 0 - type: Transform -- uid: 621 - type: MedkitBurnFilled - components: - - pos: 14.594466,-7.4821634 - parent: 0 - type: Transform -- uid: 622 - type: MedkitBruteFilled - components: - - pos: 14.703841,-7.3571634 - parent: 0 - type: Transform -- uid: 623 - type: MedkitRadiationFilled - components: - - pos: 15.266341,-7.6071634 - parent: 0 - type: Transform -- uid: 624 - type: MedkitToxinFilled - components: - - pos: 15.406966,-7.4977884 - parent: 0 - type: Transform -- uid: 625 - type: MedkitOxygenFilled - components: - - pos: 15.547591,-7.3884134 - parent: 0 - type: Transform -- uid: 626 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 0 - type: Transform -- uid: 627 - type: BoxSterileMask - components: - - pos: 10.430174,-7.5213776 - parent: 0 - type: Transform -- uid: 628 - type: ExtinguisherCabinetFilled - components: - - pos: 16.5,-5.5 - parent: 0 - type: Transform -- uid: 629 - type: CrateMedicalSurgery - components: - - pos: 10.5,-4.5 - parent: 0 - type: Transform -- uid: 630 - type: DisposalUnit - components: - - pos: 9.5,-2.5 - parent: 0 - type: Transform -- uid: 631 - type: Table - components: - - pos: 9.5,1.5 - parent: 0 - type: Transform -- uid: 632 - type: Table - components: - - pos: 15.5,1.5 - parent: 0 - type: Transform -- uid: 633 - type: Table - components: - - pos: 15.5,-2.5 - parent: 0 - type: Transform -- uid: 634 - type: Chair - components: - - pos: 10.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 635 - type: Chair - components: - - pos: 11.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 636 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 10.5,-2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 637 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 11.5,-2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 638 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 13.5,-2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 639 - type: Chair - components: - - pos: 13.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 640 - type: CarpetBlue - components: - - pos: -1.5,0.5 - parent: 0 - type: Transform -- uid: 641 - type: TableReinforced - components: - - pos: -1.5,0.5 - parent: 0 - type: Transform -- uid: 642 - type: TableReinforced - components: - - pos: -0.5,1.5 - parent: 0 - type: Transform -- uid: 643 - type: TableReinforced - components: - - pos: 0.5,1.5 - parent: 0 - type: Transform -- uid: 644 - type: TableReinforced - components: - - pos: 0.5,0.5 - parent: 0 - type: Transform -- uid: 645 - type: TableReinforced - components: - - pos: 2.5,-2.5 - parent: 0 - type: Transform -- uid: 646 - type: TableReinforced - components: - - pos: 1.5,-2.5 - parent: 0 - type: Transform -- uid: 647 - type: TableReinforced - components: - - pos: -2.5,-2.5 - parent: 0 - type: Transform -- uid: 648 - type: TableReinforced - components: - - pos: -3.5,-2.5 - parent: 0 - type: Transform -- uid: 649 - type: VendingMachineCentDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,1.5 - parent: 0 - type: Transform -- uid: 650 - type: filingCabinet - components: - - pos: 1.5,1.5 - parent: 0 - type: Transform -- uid: 651 - type: ComputerId - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 0 - type: Transform -- uid: 652 - type: ComputerComms - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 0 - type: Transform -- uid: 653 - type: ComputerCriminalRecords - components: - - rot: 3.141592653589793 rad - pos: -1.5,-2.5 - parent: 0 - type: Transform -- uid: 654 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 3.141592653589793 rad - pos: -0.5,-2.5 - parent: 0 - type: Transform -- uid: 655 - type: ComputerAlert - components: - - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 0 - type: Transform -- uid: 656 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 0 - type: Transform -- uid: 657 - type: ComputerMedicalRecords - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 0 - type: Transform -- uid: 658 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 0 - type: Transform -- uid: 659 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 0 - type: Transform -- uid: 660 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 0 - type: Transform -- uid: 661 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 0 - type: Transform -- uid: 662 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -8.5,2.5 - parent: 0 - type: Transform -- uid: 663 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 0 - type: Transform -- uid: 664 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 0 - type: Transform -- uid: 665 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 0 - type: Transform -- uid: 666 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -9.5,4.5 - parent: 0 - type: Transform -- uid: 667 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -9.5,5.5 - parent: 0 - type: Transform -- uid: 668 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -8.5,5.5 - parent: 0 - type: Transform -- uid: 669 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 0 - type: Transform -- uid: 670 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 0 - type: Transform -- uid: 671 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 0 - type: Transform -- uid: 672 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 0 - type: Transform -- uid: 673 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 0 - type: Transform -- uid: 674 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 0 - type: Transform -- uid: 675 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 0 - type: Transform -- uid: 676 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 0 - type: Transform -- uid: 677 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 0 - type: Transform -- uid: 678 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 0.5,7.5 - parent: 0 - type: Transform -- uid: 679 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -1.5,7.5 - parent: 0 - type: Transform -- uid: 680 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 0 - type: Transform -- uid: 681 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 0 - type: Transform -- uid: 682 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -1.5,7.5 - parent: 0 - type: Transform -- uid: 683 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 0.5,7.5 - parent: 0 - type: Transform -- uid: 684 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 0 - type: Transform -- uid: 685 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 0 - type: Transform -- uid: 686 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -4.5,5.5 - parent: 0 - type: Transform -- uid: 687 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -3.5,5.5 - parent: 0 - type: Transform -- uid: 688 - type: APCBasic - components: - - pos: -3.5,5.5 - parent: 0 - type: Transform -- uid: 689 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -2.5,6.5 - parent: 0 - type: Transform -- uid: 690 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -2.5,7.5 - parent: 0 - type: Transform -- uid: 691 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -3.5,7.5 - parent: 0 - type: Transform -- uid: 692 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -4.5,7.5 - parent: 0 - type: Transform -- uid: 693 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -9.5,6.5 - parent: 0 - type: Transform -- uid: 694 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -9.5,7.5 - parent: 0 - type: Transform -- uid: 695 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -8.5,7.5 - parent: 0 - type: Transform -- uid: 696 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -7.5,7.5 - parent: 0 - type: Transform -- uid: 697 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -6.5,5.5 - parent: 0 - type: Transform -- uid: 698 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -6.5,7.5 - parent: 0 - type: Transform -- uid: 699 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -8.5,6.5 - parent: 0 - type: Transform -- uid: 700 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -6.5,6.5 - parent: 0 - type: Transform -- uid: 701 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -4.5,6.5 - parent: 0 - type: Transform -- uid: 702 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -4.5,6.5 - parent: 0 - type: Transform -- uid: 703 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -6.5,6.5 - parent: 0 - type: Transform -- uid: 704 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -4.5,8.5 - parent: 0 - type: Transform -- uid: 705 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -4.5,8.5 - parent: 0 - type: Transform -- uid: 706 - type: PottedPlant22 - components: - - pos: -6.5,4.5 - parent: 0 - type: Transform -- uid: 707 - type: PottedPlant22 - components: - - pos: 5.5,-5.5 - parent: 0 - type: Transform -- uid: 708 - type: PottedPlant21 - components: - - pos: -6.5,-5.5 - parent: 0 - type: Transform -- uid: 709 - type: PottedPlant21 - components: - - pos: 5.5,4.5 - parent: 0 - type: Transform -- uid: 710 - type: BlastDoorExterior1Open - components: - - pos: 17.5,1.5 - parent: 0 - type: Transform -- uid: 711 - type: BlastDoorExterior1Open - components: - - pos: 17.5,0.5 - parent: 0 - type: Transform -- uid: 712 - type: BlastDoorExterior1Open - components: - - pos: 17.5,-0.5 - parent: 0 - type: Transform -- uid: 713 - type: BlastDoorExterior1Open - components: - - pos: 17.5,-1.5 - parent: 0 - type: Transform -- uid: 714 - type: BlastDoorExterior1Open - components: - - pos: 17.5,-2.5 - parent: 0 - type: Transform -- uid: 715 - type: SignalButtonExt1 - components: - - name: East Checkpoint Doors - type: MetaData - - pos: 16.5,4.5 - parent: 0 - type: Transform -- uid: 716 - type: BlastDoorExterior2Open - components: - - pos: 7.5,-2.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1435 - type: SignalReceiver -- uid: 717 - type: BlastDoorExterior2Open - components: - - pos: 7.5,-1.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1435 - type: SignalReceiver -- uid: 718 - type: BlastDoorExterior2Open - components: - - pos: 7.5,-0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1435 - type: SignalReceiver -- uid: 719 - type: BlastDoorExterior2Open - components: - - pos: 7.5,0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1435 - type: SignalReceiver -- uid: 720 - type: BlastDoorExterior2Open - components: - - pos: 7.5,1.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1435 - type: SignalReceiver -- uid: 721 - type: SignalButtonExt2 - components: - - name: West Checkpoint Doors - type: MetaData - - pos: 8.5,4.5 - parent: 0 - type: Transform -- uid: 722 - type: CloningPod - components: - - pos: 11.5,-13.5 - parent: 0 - type: Transform - - containers: - - machine_parts - - machine_board - type: Construction - - inputs: - CloningPodReceiver: - - port: CloningPodSender - uid: 575 - type: SignalReceiver -- uid: 723 - type: MedicalScanner - components: - - pos: 9.5,-14.5 - parent: 0 - type: Transform - - inputs: - MedicalScannerReceiver: - - port: MedicalScannerSender - uid: 575 - type: SignalReceiver -- uid: 724 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 0 - type: Transform -- uid: 725 - type: Grille - components: - - pos: 3.5,14.5 - parent: 0 - type: Transform -- uid: 726 - type: WallRiveted - components: - - pos: 14.5,-12.5 - parent: 0 - type: Transform -- uid: 727 - type: WallRiveted - components: - - pos: 15.5,-12.5 - parent: 0 - type: Transform -- uid: 728 - type: WallRiveted - components: - - pos: 16.5,-12.5 - parent: 0 - type: Transform -- uid: 729 - type: AirlockMedicalLocked - components: - - pos: 4.5,-6.5 - parent: 0 - type: Transform -- uid: 730 - type: AirlockMedicalGlassLocked - components: - - pos: 4.5,-8.5 - parent: 0 - type: Transform -- uid: 731 - type: AirlockMedicalLocked - components: - - pos: 8.5,-11.5 - parent: 0 - type: Transform -- uid: 732 - type: WindoorMedicalLocked - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 0 - type: Transform -- uid: 733 - type: FirelockGlass - components: - - pos: 2.5,-11.5 - parent: 0 - type: Transform -- uid: 734 - type: WindoorMedicalLocked - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 0 - type: Transform -- uid: 735 - type: FirelockGlass - components: - - pos: 2.5,-12.5 - parent: 0 - type: Transform -- uid: 736 - type: SignMedical - components: - - pos: 5.5,-6.5 - parent: 0 - type: Transform -- uid: 737 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 738 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 739 - type: Poweredlight - components: - - pos: 12.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 740 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 741 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 0 - type: Transform -- uid: 742 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 0 - type: Transform -- uid: 743 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-13.5 - parent: 0 - type: Transform -- uid: 744 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-13.5 - parent: 0 - type: Transform -- uid: 745 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-14.5 - parent: 0 - type: Transform -- uid: 746 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-14.5 - parent: 0 - type: Transform -- uid: 747 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 0 - type: Transform -- uid: 748 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-14.5 - parent: 0 - type: Transform -- uid: 749 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 0 - type: Transform -- uid: 750 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-14.5 - parent: 0 - type: Transform -- uid: 751 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-15.5 - parent: 0 - type: Transform -- uid: 752 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 0 - type: Transform -- uid: 753 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 0 - type: Transform -- uid: 754 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-10.5 - parent: 0 - type: Transform -- uid: 755 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 0 - type: Transform -- uid: 756 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-10.5 - parent: 0 - type: Transform -- uid: 757 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 0 - type: Transform -- uid: 758 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 0 - type: Transform -- uid: 759 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 0 - type: Transform -- uid: 760 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 0 - type: Transform -- uid: 761 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-10.5 - parent: 0 - type: Transform -- uid: 762 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-9.5 - parent: 0 - type: Transform -- uid: 763 - type: AtmosDeviceFanTiny - components: - - pos: -8.5,-11.5 - parent: 0 - type: Transform -- uid: 764 - type: AirlockExternalGlassLocked - components: - - pos: -7.5,-11.5 - parent: 0 - type: Transform -- uid: 765 - type: Grille - components: - - pos: -7.5,-9.5 - parent: 0 - type: Transform -- uid: 766 - type: Grille - components: - - pos: -8.5,-10.5 - parent: 0 - type: Transform -- uid: 767 - type: Grille - components: - - pos: -8.5,-12.5 - parent: 0 - type: Transform -- uid: 768 - type: Grille - components: - - pos: -7.5,-13.5 - parent: 0 - type: Transform -- uid: 769 - type: Grille - components: - - pos: -8.5,-14.5 - parent: 0 - type: Transform -- uid: 770 - type: TableReinforced - components: - - pos: -3.5,-12.5 - parent: 0 - type: Transform -- uid: 771 - type: TableReinforced - components: - - pos: -3.5,-11.5 - parent: 0 - type: Transform -- uid: 772 - type: FirelockGlass - components: - - pos: -3.5,-12.5 - parent: 0 - type: Transform -- uid: 773 - type: FirelockGlass - components: - - pos: -3.5,-11.5 - parent: 0 - type: Transform -- uid: 774 - type: AirlockSecurityGlassLocked - components: - - pos: -5.5,-8.5 - parent: 0 - type: Transform -- uid: 775 - type: AirlockSecurityLocked - components: - - pos: -5.5,-6.5 - parent: 0 - type: Transform -- uid: 776 - type: SignSecureMed - components: - - pos: -6.5,-6.5 - parent: 0 - type: Transform -- uid: 777 - type: AirlockExternalLocked - components: - - pos: -9.5,-11.5 - parent: 0 - type: Transform -- uid: 778 - type: ReinforcedWindow - components: - - pos: -2.5,-14.5 - parent: 0 - type: Transform -- uid: 779 - type: ReinforcedWindow - components: - - pos: -1.5,-14.5 - parent: 0 - type: Transform -- uid: 780 - type: ReinforcedWindow - components: - - pos: 0.5,-14.5 - parent: 0 - type: Transform -- uid: 781 - type: ReinforcedWindow - components: - - pos: 1.5,-14.5 - parent: 0 - type: Transform -- uid: 782 - type: Grille - components: - - pos: 1.5,-14.5 - parent: 0 - type: Transform -- uid: 783 - type: Grille - components: - - pos: 0.5,-14.5 - parent: 0 - type: Transform -- uid: 784 - type: Grille - components: - - pos: -1.5,-14.5 - parent: 0 - type: Transform -- uid: 785 - type: Grille - components: - - pos: -2.5,-14.5 - parent: 0 - type: Transform -- uid: 786 - type: BlastDoorOpen - components: - - pos: -1.5,-7.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 789 - - port: Pressed - uid: 1436 - type: SignalReceiver -- uid: 787 - type: BlastDoorOpen - components: - - pos: -0.5,-7.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 789 - - port: Pressed - uid: 1436 - type: SignalReceiver -- uid: 788 - type: BlastDoorOpen - components: - - pos: 0.5,-7.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 789 - - port: Pressed - uid: 1436 - type: SignalReceiver -- uid: 789 - type: SignalButton - components: - - pos: -4.5,-8.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 786 - - port: Toggle - uid: 787 - - port: Toggle - uid: 788 - type: SignalTransmitter -- uid: 790 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 0 - type: Transform -- uid: 791 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 0 - type: Transform -- uid: 792 - type: HighSecDoor - components: - - pos: -0.5,-8.5 - parent: 0 - type: Transform -- uid: 793 - type: HighSecDoor - components: - - pos: -0.5,-6.5 - parent: 0 - type: Transform -- uid: 794 - type: HighSecDoor - components: - - pos: -0.5,-14.5 - parent: 0 - type: Transform -- uid: 795 - type: SignDoors - components: - - pos: -1.5,-8.5 - parent: 0 - type: Transform -- uid: 796 - type: SignDoors - components: - - pos: 0.5,-6.5 - parent: 0 - type: Transform -- uid: 797 - type: PosterLegitNanotrasenLogo - components: - - pos: -2.5,-8.5 - parent: 0 - type: Transform -- uid: 798 - type: PosterLegitNanotrasenLogo - components: - - pos: -2.5,-6.5 - parent: 0 - type: Transform -- uid: 799 - type: PosterLegitNanotrasenLogo - components: - - pos: 1.5,-6.5 - parent: 0 - type: Transform -- uid: 800 - type: PosterLegitNanotrasenLogo - components: - - pos: 1.5,-8.5 - parent: 0 - type: Transform -- uid: 801 - type: PosterLegitNanotrasenLogo - components: - - pos: 3.5,-3.5 - parent: 0 - type: Transform -- uid: 802 - type: PosterLegitNanotrasenLogo - components: - - pos: -4.5,-3.5 - parent: 0 - type: Transform -- uid: 803 - type: PottedPlant21 - components: - - pos: -1.5,-13.5 - parent: 0 - type: Transform -- uid: 804 - type: PottedPlant22 - components: - - pos: 0.5,-13.5 - parent: 0 - type: Transform -- uid: 805 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,-13.5 - parent: 0 - type: Transform -- uid: 806 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-13.5 - parent: 0 - type: Transform -- uid: 807 - type: Table - components: - - pos: -2.5,-9.5 - parent: 0 - type: Transform -- uid: 808 - type: Table - components: - - pos: 1.5,-9.5 - parent: 0 - type: Transform -- uid: 809 - type: TableReinforced - components: - - pos: -6.5,-13.5 - parent: 0 - type: Transform -- uid: 810 - type: TableReinforced - components: - - pos: -6.5,-12.5 - parent: 0 - type: Transform -- uid: 811 - type: TableReinforced - components: - - pos: -4.5,-10.5 - parent: 0 - type: Transform -- uid: 812 - type: TableReinforced - components: - - pos: -4.5,-9.5 - parent: 0 - type: Transform -- uid: 813 - type: ComputerCriminalRecords - components: - - rot: 3.141592653589793 rad - pos: -4.5,-13.5 - parent: 0 - type: Transform -- uid: 814 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 3.141592653589793 rad - pos: -5.5,-13.5 - parent: 0 - type: Transform -- uid: 815 - type: LockerSecurityFilled - components: - - pos: -6.5,-10.5 - parent: 0 - type: Transform -- uid: 816 - type: filingCabinet - components: - - pos: -6.5,-9.5 - parent: 0 - type: Transform -- uid: 817 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 0 - type: Transform -- uid: 818 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 0 - type: Transform -- uid: 819 - type: ReinforcedWindow - components: - - pos: -10.5,32.5 - parent: 0 - type: Transform -- uid: 820 - type: TableReinforced - components: - - pos: 3.5,-10.5 - parent: 0 - type: Transform -- uid: 821 - type: Vaccinator - components: - - pos: 5.5,-9.5 - parent: 0 - type: Transform -- uid: 822 - type: DiseaseDiagnoser - components: - - pos: 5.5,-10.5 - parent: 0 - type: Transform -- uid: 823 - type: TableReinforced - components: - - pos: 5.5,-13.5 - parent: 0 - type: Transform -- uid: 824 - type: chem_dispenser - components: - - pos: 3.5,-13.5 - parent: 0 - type: Transform -- uid: 825 - type: chem_master - components: - - pos: 4.5,-13.5 - parent: 0 - type: Transform -- uid: 826 - type: WallRiveted - components: - - pos: -13.5,11.5 - parent: 0 - type: Transform -- uid: 827 - type: WallRiveted - components: - - pos: -13.5,12.5 - parent: 0 - type: Transform -- uid: 828 - type: ReinforcedWindow - components: - - pos: 9.5,-17.5 - parent: 0 - type: Transform -- uid: 829 - type: ReinforcedWindow - components: - - pos: 11.5,-16.5 - parent: 0 - type: Transform -- uid: 830 - type: ReinforcedWindow - components: - - pos: 8.5,-16.5 - parent: 0 - type: Transform -- uid: 831 - type: ReinforcedWindow - components: - - pos: 10.5,-17.5 - parent: 0 - type: Transform -- uid: 832 - type: WallRiveted - components: - - pos: 11.5,-15.5 - parent: 0 - type: Transform -- uid: 833 - type: WallRiveted - components: - - pos: 10.5,-15.5 - parent: 0 - type: Transform -- uid: 834 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-15.5 - parent: 0 - type: Transform -- uid: 835 - type: WallRiveted - components: - - pos: 8.5,-15.5 - parent: 0 - type: Transform -- uid: 836 - type: DisposalUnit - components: - - pos: 13.5,-16.5 - parent: 0 - type: Transform -- uid: 837 - type: WallRiveted - components: - - pos: 14.5,-15.5 - parent: 0 - type: Transform -- uid: 838 - type: WallRiveted - components: - - pos: 14.5,-14.5 - parent: 0 - type: Transform -- uid: 839 - type: WallRiveted - components: - - pos: 14.5,-13.5 - parent: 0 - type: Transform -- uid: 840 - type: WallRiveted - components: - - pos: 8.5,-17.5 - parent: 0 - type: Transform -- uid: 841 - type: WallRiveted - components: - - pos: 11.5,-17.5 - parent: 0 - type: Transform -- uid: 842 - type: WallRiveted - components: - - pos: 13.5,-17.5 - parent: 0 - type: Transform -- uid: 843 - type: WallRiveted - components: - - pos: 14.5,-17.5 - parent: 0 - type: Transform -- uid: 844 - type: WallRiveted - components: - - pos: 14.5,-16.5 - parent: 0 - type: Transform -- uid: 845 - type: Grille - components: - - pos: 8.5,-16.5 - parent: 0 - type: Transform -- uid: 846 - type: Grille - components: - - pos: 9.5,-17.5 - parent: 0 - type: Transform -- uid: 847 - type: Grille - components: - - pos: 10.5,-17.5 - parent: 0 - type: Transform -- uid: 848 - type: Grille - components: - - pos: 11.5,-16.5 - parent: 0 - type: Transform -- uid: 849 - type: Grille - components: - - pos: -4.5,11.5 - parent: 0 - type: Transform -- uid: 850 - type: Grille - components: - - pos: -3.5,17.5 - parent: 0 - type: Transform -- uid: 851 - type: WallRiveted - components: - - pos: -13.5,10.5 - parent: 0 - type: Transform -- uid: 852 - type: AirlockMedicalLocked - components: - - pos: 16.5,-11.5 - parent: 0 - type: Transform -- uid: 853 - type: Grille - components: - - pos: 3.5,16.5 - parent: 0 - type: Transform -- uid: 854 - type: AirlockMedicalLocked - components: - - pos: 12.5,-17.5 - parent: 0 - type: Transform -- uid: 855 - type: Grille - components: - - pos: 2.5,17.5 - parent: 0 - type: Transform -- uid: 856 - type: APCBasic - components: - - pos: 20.5,6.5 - parent: 0 - type: Transform -- uid: 857 - type: CableApcExtension - components: - - pos: 20.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 858 - type: CableApcExtension - components: - - pos: 20.5,5.5 - parent: 0 - type: Transform -- uid: 859 - type: CableApcExtension - components: - - pos: 20.5,4.5 - parent: 0 - type: Transform -- uid: 860 - type: CableApcExtension - components: - - pos: 20.5,3.5 - parent: 0 - type: Transform -- uid: 861 - type: CableApcExtension - components: - - pos: 20.5,2.5 - parent: 0 - type: Transform -- uid: 862 - type: CableApcExtension - components: - - pos: 21.5,2.5 - parent: 0 - type: Transform -- uid: 863 - type: CableApcExtension - components: - - pos: 22.5,2.5 - parent: 0 - type: Transform -- uid: 864 - type: CableApcExtension - components: - - pos: 23.5,2.5 - parent: 0 - type: Transform -- uid: 865 - type: CableApcExtension - components: - - pos: 24.5,2.5 - parent: 0 - type: Transform -- uid: 866 - type: CableApcExtension - components: - - pos: 25.5,2.5 - parent: 0 - type: Transform -- uid: 867 - type: CableApcExtension - components: - - pos: 26.5,2.5 - parent: 0 - type: Transform -- uid: 868 - type: CableApcExtension - components: - - pos: 27.5,2.5 - parent: 0 - type: Transform -- uid: 869 - type: CableApcExtension - components: - - pos: 28.5,2.5 - parent: 0 - type: Transform -- uid: 870 - type: CableApcExtension - components: - - pos: 29.5,2.5 - parent: 0 - type: Transform -- uid: 871 - type: CableApcExtension - components: - - pos: 30.5,2.5 - parent: 0 - type: Transform -- uid: 872 - type: CableApcExtension - components: - - pos: 31.5,2.5 - parent: 0 - type: Transform -- uid: 873 - type: CableApcExtension - components: - - pos: 32.5,2.5 - parent: 0 - type: Transform -- uid: 874 - type: CableApcExtension - components: - - pos: 33.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 875 - type: CableApcExtension - components: - - pos: 34.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 876 - type: CableApcExtension - components: - - pos: 21.5,4.5 - parent: 0 - type: Transform -- uid: 877 - type: CableApcExtension - components: - - pos: 22.5,4.5 - parent: 0 - type: Transform -- uid: 878 - type: CableApcExtension - components: - - pos: 23.5,4.5 - parent: 0 - type: Transform -- uid: 879 - type: CableApcExtension - components: - - pos: 24.5,4.5 - parent: 0 - type: Transform -- uid: 880 - type: CableApcExtension - components: - - pos: 25.5,4.5 - parent: 0 - type: Transform -- uid: 881 - type: CableApcExtension - components: - - pos: 26.5,4.5 - parent: 0 - type: Transform -- uid: 882 - type: CableApcExtension - components: - - pos: 27.5,4.5 - parent: 0 - type: Transform -- uid: 883 - type: CableApcExtension - components: - - pos: 28.5,4.5 - parent: 0 - type: Transform -- uid: 884 - type: CableApcExtension - components: - - pos: 29.5,4.5 - parent: 0 - type: Transform -- uid: 885 - type: CableApcExtension - components: - - pos: 30.5,4.5 - parent: 0 - type: Transform -- uid: 886 - type: CableApcExtension - components: - - pos: 31.5,4.5 - parent: 0 - type: Transform -- uid: 887 - type: CableApcExtension - components: - - pos: 32.5,4.5 - parent: 0 - type: Transform -- uid: 888 - type: CableApcExtension - components: - - pos: 33.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 889 - type: CableApcExtension - components: - - pos: 26.5,5.5 - parent: 0 - type: Transform -- uid: 890 - type: CableApcExtension - components: - - pos: 30.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 891 - type: CableApcExtension - components: - - pos: 28.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 892 - type: CableApcExtension - components: - - pos: 20.5,-2.5 - parent: 0 - type: Transform -- uid: 893 - type: CableApcExtension - components: - - pos: 24.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 894 - type: CableApcExtension - components: - - pos: 20.5,-1.5 - parent: 0 - type: Transform -- uid: 895 - type: CableApcExtension - components: - - pos: 20.5,-0.5 - parent: 0 - type: Transform -- uid: 896 - type: CableApcExtension - components: - - pos: 32.5,1.5 - parent: 0 - type: Transform -- uid: 897 - type: CableApcExtension - components: - - pos: 32.5,0.5 - parent: 0 - type: Transform -- uid: 898 - type: WallRiveted - components: - - pos: 20.5,6.5 - parent: 0 - type: Transform -- uid: 899 - type: CableApcExtension - components: - - pos: 29.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 900 - type: CableApcExtension - components: - - pos: 28.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 901 - type: CableApcExtension - components: - - pos: 31.5,5.5 - parent: 0 - type: Transform -- uid: 902 - type: CableApcExtension - components: - - pos: 24.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 903 - type: CableApcExtension - components: - - pos: 23.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 904 - type: CableApcExtension - components: - - pos: 22.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 905 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 20.5,-7.5 - parent: 0 - type: Transform -- uid: 906 - type: CableApcExtension - components: - - pos: 20.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 907 - type: CableApcExtension - components: - - pos: 20.5,-6.5 - parent: 0 - type: Transform -- uid: 908 - type: CableApcExtension - components: - - pos: 20.5,-5.5 - parent: 0 - type: Transform -- uid: 909 - type: CableApcExtension - components: - - pos: 20.5,-4.5 - parent: 0 - type: Transform -- uid: 910 - type: CableApcExtension - components: - - pos: 20.5,-3.5 - parent: 0 - type: Transform -- uid: 911 - type: CableApcExtension - components: - - pos: 21.5,-3.5 - parent: 0 - type: Transform -- uid: 912 - type: CableApcExtension - components: - - pos: 22.5,-3.5 - parent: 0 - type: Transform -- uid: 913 - type: CableApcExtension - components: - - pos: 23.5,-3.5 - parent: 0 - type: Transform -- uid: 914 - type: CableApcExtension - components: - - pos: 24.5,-3.5 - parent: 0 - type: Transform -- uid: 915 - type: CableApcExtension - components: - - pos: 25.5,-3.5 - parent: 0 - type: Transform -- uid: 916 - type: CableApcExtension - components: - - pos: 26.5,-3.5 - parent: 0 - type: Transform -- uid: 917 - type: CableApcExtension - components: - - pos: 27.5,-3.5 - parent: 0 - type: Transform -- uid: 918 - type: CableApcExtension - components: - - pos: 28.5,-3.5 - parent: 0 - type: Transform -- uid: 919 - type: CableApcExtension - components: - - pos: 29.5,-3.5 - parent: 0 - type: Transform -- uid: 920 - type: CableApcExtension - components: - - pos: 30.5,-3.5 - parent: 0 - type: Transform -- uid: 921 - type: CableApcExtension - components: - - pos: 31.5,-3.5 - parent: 0 - type: Transform -- uid: 922 - type: CableApcExtension - components: - - pos: 32.5,-3.5 - parent: 0 - type: Transform -- uid: 923 - type: CableApcExtension - components: - - pos: 33.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 924 - type: CableApcExtension - components: - - pos: 34.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 925 - type: CableApcExtension - components: - - pos: 21.5,-5.5 - parent: 0 - type: Transform -- uid: 926 - type: CableApcExtension - components: - - pos: 22.5,-5.5 - parent: 0 - type: Transform -- uid: 927 - type: CableApcExtension - components: - - pos: 23.5,-5.5 - parent: 0 - type: Transform -- uid: 928 - type: CableApcExtension - components: - - pos: 24.5,-5.5 - parent: 0 - type: Transform -- uid: 929 - type: CableApcExtension - components: - - pos: 25.5,-5.5 - parent: 0 - type: Transform -- uid: 930 - type: CableApcExtension - components: - - pos: 26.5,-5.5 - parent: 0 - type: Transform -- uid: 931 - type: CableApcExtension - components: - - pos: 27.5,-5.5 - parent: 0 - type: Transform -- uid: 932 - type: CableApcExtension - components: - - pos: 28.5,-5.5 - parent: 0 - type: Transform -- uid: 933 - type: CableApcExtension - components: - - pos: 29.5,-5.5 - parent: 0 - type: Transform -- uid: 934 - type: CableApcExtension - components: - - pos: 30.5,-5.5 - parent: 0 - type: Transform -- uid: 935 - type: CableApcExtension - components: - - pos: 31.5,-5.5 - parent: 0 - type: Transform -- uid: 936 - type: CableApcExtension - components: - - pos: 32.5,-5.5 - parent: 0 - type: Transform -- uid: 937 - type: CableApcExtension - components: - - pos: 33.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 938 - type: CableApcExtension - components: - - pos: 31.5,-6.5 - parent: 0 - type: Transform -- uid: 939 - type: CableApcExtension - components: - - pos: 31.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 940 - type: CableApcExtension - components: - - pos: 21.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 941 - type: CableApcExtension - components: - - pos: 21.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 942 - type: CableApcExtension - components: - - pos: 31.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 943 - type: CableApcExtension - components: - - pos: 33.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 944 - type: CableApcExtension - components: - - pos: 33.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 945 - type: CableApcExtension - components: - - pos: 33.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 946 - type: CableApcExtension - components: - - pos: 35.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 947 - type: CableApcExtension - components: - - pos: 35.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 948 - type: CableApcExtension - components: - - pos: 35.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 949 - type: CableApcExtension - components: - - pos: 35.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 950 - type: CableApcExtension - components: - - pos: 35.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 951 - type: CableApcExtension - components: - - pos: 35.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 952 - type: CableApcExtension - components: - - pos: 35.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 953 - type: CableApcExtension - components: - - pos: 35.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 954 - type: CableApcExtension - components: - - pos: 35.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 955 - type: CableApcExtension - components: - - pos: 35.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 956 - type: CableApcExtension - components: - - pos: 33.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 957 - type: CableApcExtension - components: - - pos: 33.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 958 - type: CableApcExtension - components: - - pos: 33.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 959 - type: CableApcExtension - components: - - pos: 34.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 960 - type: CableApcExtension - components: - - pos: 34.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 961 - type: CableApcExtension - components: - - pos: 34.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 962 - type: CableApcExtension - components: - - pos: 34.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 963 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 0 - type: Transform -- uid: 964 - type: CableApcExtension - components: - - pos: 23.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 965 - type: CableApcExtension - components: - - pos: 24.5,-10.5 - parent: 0 - type: Transform -- uid: 966 - type: CableApcExtension - components: - - pos: 25.5,-10.5 - parent: 0 - type: Transform -- uid: 967 - type: CableApcExtension - components: - - pos: 26.5,-10.5 - parent: 0 - type: Transform -- uid: 968 - type: CableApcExtension - components: - - pos: 26.5,-9.5 - parent: 0 - type: Transform -- uid: 969 - type: CableApcExtension - components: - - pos: 26.5,-8.5 - parent: 0 - type: Transform -- uid: 970 - type: CableApcExtension - components: - - pos: 26.5,-11.5 - parent: 0 - type: Transform -- uid: 971 - type: CableApcExtension - components: - - pos: 22.5,-10.5 - parent: 0 - type: Transform -- uid: 972 - type: CableApcExtension - components: - - pos: 22.5,-11.5 - parent: 0 - type: Transform -- uid: 973 - type: CableApcExtension - components: - - pos: 21.5,-11.5 - parent: 0 - type: Transform -- uid: 974 - type: AirlockSecurityGlassLocked - components: - - pos: 23.5,-11.5 - parent: 0 - type: Transform -- uid: 975 - type: CableApcExtension - components: - - pos: 20.5,-10.5 - parent: 0 - type: Transform -- uid: 976 - type: CableApcExtension - components: - - pos: 32.5,-0.5 - parent: 0 - type: Transform -- uid: 977 - type: APCBasic - components: - - pos: 10.5,-3.5 - parent: 0 - type: Transform -- uid: 978 - type: APCBasic - components: - - pos: 12.5,7.5 - parent: 0 - type: Transform -- uid: 979 - type: APCBasic - components: - - pos: 9.5,2.5 - parent: 0 - type: Transform -- uid: 980 - type: CableApcExtension - components: - - pos: 9.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 981 - type: CableApcExtension - components: - - pos: 9.5,1.5 - parent: 0 - type: Transform -- uid: 982 - type: CableApcExtension - components: - - pos: 9.5,0.5 - parent: 0 - type: Transform -- uid: 983 - type: CableApcExtension - components: - - pos: 9.5,-0.5 - parent: 0 - type: Transform -- uid: 984 - type: CableApcExtension - components: - - pos: 9.5,-1.5 - parent: 0 - type: Transform -- uid: 985 - type: CableApcExtension - components: - - pos: 9.5,-2.5 - parent: 0 - type: Transform -- uid: 986 - type: CableApcExtension - components: - - pos: 10.5,-0.5 - parent: 0 - type: Transform -- uid: 987 - type: CableApcExtension - components: - - pos: 11.5,-0.5 - parent: 0 - type: Transform -- uid: 988 - type: CableApcExtension - components: - - pos: 12.5,-0.5 - parent: 0 - type: Transform -- uid: 989 - type: CableApcExtension - components: - - pos: 13.5,-0.5 - parent: 0 - type: Transform -- uid: 990 - type: CableApcExtension - components: - - pos: 14.5,-0.5 - parent: 0 - type: Transform -- uid: 991 - type: CableApcExtension - components: - - pos: 15.5,-0.5 - parent: 0 - type: Transform -- uid: 992 - type: CableApcExtension - components: - - pos: 15.5,0.5 - parent: 0 - type: Transform -- uid: 993 - type: CableApcExtension - components: - - pos: 16.5,0.5 - parent: 0 - type: Transform -- uid: 994 - type: CableApcExtension - components: - - pos: 16.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 995 - type: CableApcExtension - components: - - pos: 17.5,-0.5 - parent: 0 - type: Transform -- uid: 996 - type: CableApcExtension - components: - - pos: 18.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 997 - type: CableApcExtension - components: - - pos: 8.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 998 - type: CableApcExtension - components: - - pos: 5.5,0.5 - parent: 0 - type: Transform -- uid: 999 - type: CableApcExtension - components: - - pos: 6.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1000 - type: CableApcExtension - components: - - pos: 10.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1001 - type: CableApcExtension - components: - - pos: 10.5,-4.5 - parent: 0 - type: Transform -- uid: 1002 - type: CableApcExtension - components: - - pos: 10.5,-5.5 - parent: 0 - type: Transform -- uid: 1003 - type: CableApcExtension - components: - - pos: 10.5,-6.5 - parent: 0 - type: Transform -- uid: 1004 - type: CableApcExtension - components: - - pos: 10.5,-7.5 - parent: 0 - type: Transform -- uid: 1005 - type: CableApcExtension - components: - - pos: 11.5,-6.5 - parent: 0 - type: Transform -- uid: 1006 - type: CableApcExtension - components: - - pos: 12.5,-6.5 - parent: 0 - type: Transform -- uid: 1007 - type: CableApcExtension - components: - - pos: 13.5,-6.5 - parent: 0 - type: Transform -- uid: 1008 - type: CableApcExtension - components: - - pos: 14.5,-6.5 - parent: 0 - type: Transform -- uid: 1009 - type: CableApcExtension - components: - - pos: 15.5,-6.5 - parent: 0 - type: Transform -- uid: 1010 - type: CableApcExtension - components: - - pos: 16.5,-6.5 - parent: 0 - type: Transform -- uid: 1011 - type: CableApcExtension - components: - - pos: 17.5,-6.5 - parent: 0 - type: Transform -- uid: 1012 - type: CableApcExtension - components: - - pos: 17.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1013 - type: CableApcExtension - components: - - pos: 13.5,-5.5 - parent: 0 - type: Transform -- uid: 1014 - type: CableApcExtension - components: - - pos: 13.5,-4.5 - parent: 0 - type: Transform -- uid: 1015 - type: CableApcExtension - components: - - pos: 13.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1016 - type: CableApcExtension - components: - - pos: 12.5,-3.5 - parent: 0 - type: Transform -- uid: 1017 - type: CableApcExtension - components: - - pos: 11.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1018 - type: CableApcExtension - components: - - pos: 14.5,-3.5 - parent: 0 - type: Transform -- uid: 1019 - type: CableApcExtension - components: - - pos: 15.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1020 - type: CableApcExtension - components: - - pos: 12.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1021 - type: CableApcExtension - components: - - pos: 12.5,6.5 - parent: 0 - type: Transform -- uid: 1022 - type: CableApcExtension - components: - - pos: 12.5,5.5 - parent: 0 - type: Transform -- uid: 1023 - type: CableApcExtension - components: - - pos: 12.5,4.5 - parent: 0 - type: Transform -- uid: 1024 - type: CableApcExtension - components: - - pos: 12.5,3.5 - parent: 0 - type: Transform -- uid: 1025 - type: CableApcExtension - components: - - pos: 12.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1026 - type: CableApcExtension - components: - - pos: 13.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1027 - type: CableApcExtension - components: - - pos: 14.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1028 - type: CableApcExtension - components: - - pos: 15.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1029 - type: CableApcExtension - components: - - pos: 11.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1030 - type: CableApcExtension - components: - - pos: 13.5,5.5 - parent: 0 - type: Transform -- uid: 1031 - type: CableApcExtension - components: - - pos: 14.5,5.5 - parent: 0 - type: Transform -- uid: 1032 - type: CableApcExtension - components: - - pos: 15.5,5.5 - parent: 0 - type: Transform -- uid: 1033 - type: CableApcExtension - components: - - pos: 16.5,5.5 - parent: 0 - type: Transform -- uid: 1034 - type: CableApcExtension - components: - - pos: 17.5,5.5 - parent: 0 - type: Transform -- uid: 1035 - type: CableApcExtension - components: - - pos: 17.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1036 - type: CableApcExtension - components: - - pos: 17.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1037 - type: CableApcExtension - components: - - pos: 13.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1038 - type: CableApcExtension - components: - - pos: 14.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1039 - type: CableApcExtension - components: - - pos: 11.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1040 - type: CableApcExtension - components: - - pos: 10.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1041 - type: CableApcExtension - components: - - pos: 9.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1042 - type: CableApcExtension - components: - - pos: 11.5,5.5 - parent: 0 - type: Transform -- uid: 1043 - type: CableApcExtension - components: - - pos: 10.5,5.5 - parent: 0 - type: Transform -- uid: 1044 - type: CableApcExtension - components: - - pos: 9.5,5.5 - parent: 0 - type: Transform -- uid: 1045 - type: CableApcExtension - components: - - pos: 8.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1046 - type: CableApcExtension - components: - - pos: 9.5,4.5 - parent: 0 - type: Transform -- uid: 1047 - type: CableApcExtension - components: - - pos: 8.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1048 - type: CableApcExtension - components: - - pos: 8.5,3.5 - parent: 0 - type: Transform -- uid: 1049 - type: CableApcExtension - components: - - pos: 7.5,3.5 - parent: 0 - type: Transform -- uid: 1050 - type: CableApcExtension - components: - - pos: 7.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1051 - type: CableApcExtension - components: - - pos: 12.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1052 - type: CableApcExtension - components: - - pos: 12.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1053 - type: CableApcExtension - components: - - pos: 13.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1054 - type: CableApcExtension - components: - - pos: 14.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1055 - type: CableApcExtension - components: - - pos: 11.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1056 - type: CableApcExtension - components: - - pos: 10.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1057 - type: CableApcExtension - components: - - pos: 9.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1058 - type: CableApcExtension - components: - - pos: 8.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1059 - type: CableApcExtension - components: - - pos: 7.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1060 - type: CableApcExtension - components: - - pos: 6.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1061 - type: CableApcExtension - components: - - pos: 8.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1062 - type: CableApcExtension - components: - - pos: 28.5,1.5 - parent: 0 - type: Transform -- uid: 1063 - type: CableApcExtension - components: - - pos: 28.5,0.5 - parent: 0 - type: Transform -- uid: 1064 - type: CableApcExtension - components: - - pos: 28.5,-0.5 - parent: 0 - type: Transform -- uid: 1065 - type: Catwalk - components: - - pos: 34.5,-3.5 - parent: 0 - type: Transform -- uid: 1066 - type: Catwalk - components: - - pos: 34.5,-5.5 - parent: 0 - type: Transform -- uid: 1067 - type: Catwalk - components: - - pos: 34.5,4.5 - parent: 0 - type: Transform -- uid: 1068 - type: CableApcExtension - components: - - pos: 24.5,-2.5 - parent: 0 - type: Transform -- uid: 1069 - type: CableApcExtension - components: - - pos: 24.5,-1.5 - parent: 0 - type: Transform -- uid: 1070 - type: CableApcExtension - components: - - pos: 24.5,-0.5 - parent: 0 - type: Transform -- uid: 1071 - type: ClosetEmergencyFilledRandom - components: - - pos: 34.5,-2.5 - parent: 0 - type: Transform -- uid: 1072 - type: ClosetEmergencyFilledRandom - components: - - pos: 34.5,5.5 - parent: 0 - type: Transform -- uid: 1073 - type: ClosetFireFilled - components: - - pos: 34.5,1.5 - parent: 0 - type: Transform -- uid: 1074 - type: ClosetFireFilled - components: - - pos: 34.5,-6.5 - parent: 0 - type: Transform -- uid: 1075 - type: Railing - components: - - pos: 34.5,-4.5 - parent: 0 - type: Transform -- uid: 1076 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 34.5,-4.5 - parent: 0 - type: Transform -- uid: 1077 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 34.5,3.5 - parent: 0 - type: Transform -- uid: 1078 - type: Railing - components: - - pos: 34.5,3.5 - parent: 0 - type: Transform -- uid: 1079 - type: C4 - components: - - pos: -12.328807,-3.4569058 - parent: 0 - type: Transform -- uid: 1080 - type: WallRiveted - components: - - pos: -13.5,9.5 - parent: 0 - type: Transform -- uid: 1081 - type: WallRiveted - components: - - pos: -13.5,8.5 - parent: 0 - type: Transform -- uid: 1082 - type: WallRiveted - components: - - pos: -13.5,7.5 - parent: 0 - type: Transform -- uid: 1083 - type: WallRiveted - components: - - pos: -12.5,7.5 - parent: 0 - type: Transform -- uid: 1084 - type: WallRiveted - components: - - pos: -11.5,7.5 - parent: 0 - type: Transform -- uid: 1085 - type: WallRiveted - components: - - pos: -10.5,7.5 - parent: 0 - type: Transform -- uid: 1086 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 0 - type: Transform -- uid: 1087 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 0 - type: Transform -- uid: 1088 - type: APCBasic - components: - - pos: -2.5,2.5 - parent: 0 - type: Transform -- uid: 1089 - type: CableApcExtension - components: - - pos: -2.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1090 - type: CableApcExtension - components: - - pos: -2.5,1.5 - parent: 0 - type: Transform -- uid: 1091 - type: CableApcExtension - components: - - pos: -2.5,0.5 - parent: 0 - type: Transform -- uid: 1092 - type: CableApcExtension - components: - - pos: -2.5,-0.5 - parent: 0 - type: Transform -- uid: 1093 - type: CableApcExtension - components: - - pos: -2.5,-1.5 - parent: 0 - type: Transform -- uid: 1094 - type: CableApcExtension - components: - - pos: -1.5,0.5 - parent: 0 - type: Transform -- uid: 1095 - type: CableApcExtension - components: - - pos: -0.5,0.5 - parent: 0 - type: Transform -- uid: 1096 - type: CableApcExtension - components: - - pos: 0.5,0.5 - parent: 0 - type: Transform -- uid: 1097 - type: CableApcExtension - components: - - pos: 1.5,0.5 - parent: 0 - type: Transform -- uid: 1098 - type: CableApcExtension - components: - - pos: 2.5,0.5 - parent: 0 - type: Transform -- uid: 1099 - type: CableApcExtension - components: - - pos: 2.5,1.5 - parent: 0 - type: Transform -- uid: 1100 - type: CableApcExtension - components: - - pos: 2.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1101 - type: CableApcExtension - components: - - pos: 3.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1102 - type: CableApcExtension - components: - - pos: 3.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1103 - type: CableApcExtension - components: - - pos: -3.5,1.5 - parent: 0 - type: Transform -- uid: 1104 - type: CableApcExtension - components: - - pos: -4.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1105 - type: CableApcExtension - components: - - pos: -4.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1106 - type: CableApcExtension - components: - - pos: -3.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1107 - type: CableApcExtension - components: - - pos: -1.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1108 - type: CableApcExtension - components: - - pos: -0.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1109 - type: CableApcExtension - components: - - pos: 0.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1110 - type: CableApcExtension - components: - - pos: -3.5,-0.5 - parent: 0 - type: Transform -- uid: 1111 - type: CableApcExtension - components: - - pos: -4.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1112 - type: CableApcExtension - components: - - pos: -4.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1113 - type: CableApcExtension - components: - - pos: -4.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1114 - type: CableApcExtension - components: - - pos: -2.5,-2.5 - parent: 0 - type: Transform -- uid: 1115 - type: CableApcExtension - components: - - pos: -2.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1116 - type: CableApcExtension - components: - - pos: -3.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1117 - type: CableApcExtension - components: - - pos: -1.5,-1.5 - parent: 0 - type: Transform -- uid: 1118 - type: CableApcExtension - components: - - pos: -0.5,-1.5 - parent: 0 - type: Transform -- uid: 1119 - type: CableApcExtension - components: - - pos: -0.5,-2.5 - parent: 0 - type: Transform -- uid: 1120 - type: CableApcExtension - components: - - pos: -0.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1121 - type: CableApcExtension - components: - - pos: 0.5,-1.5 - parent: 0 - type: Transform -- uid: 1122 - type: CableApcExtension - components: - - pos: 1.5,-1.5 - parent: 0 - type: Transform -- uid: 1123 - type: CableApcExtension - components: - - pos: 2.5,-1.5 - parent: 0 - type: Transform -- uid: 1124 - type: CableApcExtension - components: - - pos: 3.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1125 - type: CableApcExtension - components: - - pos: 3.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1126 - type: CableApcExtension - components: - - pos: 3.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1127 - type: CableApcExtension - components: - - pos: 1.5,-2.5 - parent: 0 - type: Transform -- uid: 1128 - type: CableApcExtension - components: - - pos: 1.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1129 - type: CableApcExtension - components: - - pos: 2.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1130 - type: SubstationBasic - components: - - pos: 15.5,-13.5 - parent: 0 - type: Transform -- uid: 1131 - type: AirlockEngineeringLocked - components: - - pos: 17.5,-12.5 - parent: 0 - type: Transform -- uid: 1132 - type: WallRiveted - components: - - pos: 15.5,-16.5 - parent: 0 - type: Transform -- uid: 1133 - type: WallRiveted - components: - - pos: 16.5,-16.5 - parent: 0 - type: Transform -- uid: 1134 - type: WallRiveted - components: - - pos: 17.5,-16.5 - parent: 0 - type: Transform -- uid: 1135 - type: WallRiveted - components: - - pos: 18.5,-16.5 - parent: 0 - type: Transform -- uid: 1136 - type: WallRiveted - components: - - pos: 18.5,-15.5 - parent: 0 - type: Transform -- uid: 1137 - type: CableApcExtension - components: - - pos: 21.5,-10.5 - parent: 0 - type: Transform -- uid: 1138 - type: WallRiveted - components: - - pos: 18.5,-13.5 - parent: 0 - type: Transform -- uid: 1139 - type: WallRiveted - components: - - pos: 29.5,-14.5 - parent: 0 - type: Transform -- uid: 1140 - type: GravityGenerator - components: - - pos: 32.5,-11.5 - parent: 0 - type: Transform -- uid: 1141 - type: WallRiveted - components: - - pos: 35.5,-13.5 - parent: 0 - type: Transform -- uid: 1142 - type: WallRiveted - components: - - pos: 35.5,-14.5 - parent: 0 - type: Transform -- uid: 1143 - type: WallRiveted - components: - - pos: 35.5,-15.5 - parent: 0 - type: Transform -- uid: 1144 - type: WallRiveted - components: - - pos: 35.5,-16.5 - parent: 0 - type: Transform -- uid: 1145 - type: WallRiveted - components: - - pos: 35.5,-17.5 - parent: 0 - type: Transform -- uid: 1146 - type: CableMV - components: - - pos: 15.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1147 - type: CableMV - components: - - pos: 16.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1148 - type: CableMV - components: - - pos: 17.5,-13.5 - parent: 0 - type: Transform -- uid: 1149 - type: CableMV - components: - - pos: 17.5,-12.5 - parent: 0 - type: Transform -- uid: 1150 - type: CableMV - components: - - pos: 17.5,-11.5 - parent: 0 - type: Transform -- uid: 1151 - type: CableMV - components: - - pos: 18.5,-11.5 - parent: 0 - type: Transform -- uid: 1152 - type: WallRiveted - components: - - pos: 35.5,-11.5 - parent: 0 - type: Transform -- uid: 1153 - type: CableMV - components: - - pos: 19.5,-11.5 - parent: 0 - type: Transform -- uid: 1154 - type: CableMV - components: - - pos: 21.5,-11.5 - parent: 0 - type: Transform -- uid: 1155 - type: CableMV - components: - - pos: 22.5,-11.5 - parent: 0 - type: Transform -- uid: 1156 - type: CableMV - components: - - pos: 23.5,-11.5 - parent: 0 - type: Transform -- uid: 1157 - type: CableMV - components: - - pos: 23.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1158 - type: CableMV - components: - - pos: 17.5,-10.5 - parent: 0 - type: Transform -- uid: 1159 - type: CableMV - components: - - pos: 17.5,-9.5 - parent: 0 - type: Transform -- uid: 1160 - type: CableMV - components: - - pos: 17.5,-8.5 - parent: 0 - type: Transform -- uid: 1161 - type: CableMV - components: - - pos: 17.5,-7.5 - parent: 0 - type: Transform -- uid: 1162 - type: CableMV - components: - - pos: 17.5,-6.5 - parent: 0 - type: Transform -- uid: 1163 - type: CableMV - components: - - pos: 18.5,-6.5 - parent: 0 - type: Transform -- uid: 1164 - type: CableMV - components: - - pos: 19.5,-6.5 - parent: 0 - type: Transform -- uid: 1165 - type: CableMV - components: - - pos: 20.5,-6.5 - parent: 0 - type: Transform -- uid: 1166 - type: CableMV - components: - - pos: 20.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1167 - type: CableMV - components: - - pos: 16.5,-6.5 - parent: 0 - type: Transform -- uid: 1168 - type: CableMV - components: - - pos: 15.5,-6.5 - parent: 0 - type: Transform -- uid: 1169 - type: CableMV - components: - - pos: 13.5,-6.5 - parent: 0 - type: Transform -- uid: 1170 - type: CableMV - components: - - pos: 14.5,-6.5 - parent: 0 - type: Transform -- uid: 1171 - type: CableMV - components: - - pos: 12.5,-6.5 - parent: 0 - type: Transform -- uid: 1172 - type: CableMV - components: - - pos: 11.5,-6.5 - parent: 0 - type: Transform -- uid: 1173 - type: CableMV - components: - - pos: 10.5,-6.5 - parent: 0 - type: Transform -- uid: 1174 - type: CableMV - components: - - pos: 10.5,-5.5 - parent: 0 - type: Transform -- uid: 1175 - type: CableMV - components: - - pos: 10.5,-4.5 - parent: 0 - type: Transform -- uid: 1176 - type: CableMV - components: - - pos: 10.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1177 - type: AirlockEngineeringLocked - components: - - pos: 18.5,-14.5 - parent: 0 - type: Transform -- uid: 1178 - type: LockerElectricalSuppliesFilled - components: - - pos: 15.5,-15.5 - parent: 0 - type: Transform -- uid: 1179 - type: Catwalk - components: - - pos: 16.5,-13.5 - parent: 0 - type: Transform -- uid: 1180 - type: Table - components: - - pos: 17.5,-15.5 - parent: 0 - type: Transform -- uid: 1181 - type: Table - components: - - pos: 16.5,-15.5 - parent: 0 - type: Transform -- uid: 1182 - type: CableMV - components: - - pos: 19.5,-10.5 - parent: 0 - type: Transform -- uid: 1183 - type: WallRiveted - components: - - pos: 35.5,-12.5 - parent: 0 - type: Transform -- uid: 1184 - type: WallRiveted - components: - - pos: 35.5,-10.5 - parent: 0 - type: Transform -- uid: 1185 - type: HighSecDoor - components: - - pos: -9.5,-1.5 - parent: 0 - type: Transform -- uid: 1186 - type: HighSecDoor - components: - - pos: -9.5,0.5 - parent: 0 - type: Transform -- uid: 1187 - type: HighSecDoor - components: - - pos: -7.5,0.5 - parent: 0 - type: Transform -- uid: 1188 - type: HighSecDoor - components: - - pos: -7.5,-1.5 - parent: 0 - type: Transform -- uid: 1189 - type: HighSecDoor - components: - - pos: -0.5,5.5 - parent: 0 - type: Transform -- uid: 1190 - type: HighSecDoor - components: - - pos: -0.5,7.5 - parent: 0 - type: Transform -- uid: 1191 - type: AirlockCargoGlassLocked - components: - - pos: -5.5,7.5 - parent: 0 - type: Transform -- uid: 1192 - type: AirlockCargoLocked - components: - - pos: -5.5,5.5 - parent: 0 - type: Transform -- uid: 1193 - type: ReinforcedWindow - components: - - pos: -8.5,32.5 - parent: 0 - type: Transform -- uid: 1194 - type: TableReinforced - components: - - pos: 13.5,-12.5 - parent: 0 - type: Transform -- uid: 1195 - type: MedicalBed - components: - - pos: 13.5,-14.5 - parent: 0 - type: Transform -- uid: 1196 - type: MedicalBed - components: - - pos: 13.5,-13.5 - parent: 0 - type: Transform -- uid: 1197 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 13.5,-15.5 - parent: 0 - type: Transform -- uid: 1198 - type: WindoorMedicalLocked - components: - - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 0 - type: Transform -- uid: 1199 - type: BedsheetMedical - components: - - rot: 3.141592653589793 rad - pos: 13.5,-14.5 - parent: 0 - type: Transform -- uid: 1200 - type: BedsheetMedical - components: - - rot: 3.141592653589793 rad - pos: 13.5,-13.5 - parent: 0 - type: Transform -- uid: 1201 - type: APCBasic - components: - - pos: 12.5,-10.5 - parent: 0 - type: Transform -- uid: 1202 - type: CableApcExtension - components: - - pos: 10.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1203 - type: CableApcExtension - components: - - pos: 11.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1204 - type: CableApcExtension - components: - - pos: 9.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1205 - type: CableApcExtension - components: - - pos: 14.5,-7.5 - parent: 0 - type: Transform -- uid: 1206 - type: CableApcExtension - components: - - pos: 14.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1207 - type: CableApcExtension - components: - - pos: 15.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1208 - type: CableApcExtension - components: - - pos: 13.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1209 - type: CableApcExtension - components: - - pos: 12.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1210 - type: CableApcExtension - components: - - pos: 12.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1211 - type: CableApcExtension - components: - - pos: 13.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1212 - type: CableApcExtension - components: - - pos: 14.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1213 - type: CableApcExtension - components: - - pos: 15.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1214 - type: CableApcExtension - components: - - pos: 16.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1215 - type: CableApcExtension - components: - - pos: 16.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1216 - type: CableApcExtension - components: - - pos: 11.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1217 - type: CableApcExtension - components: - - pos: 10.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1218 - type: CableApcExtension - components: - - pos: 9.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1219 - type: CableApcExtension - components: - - pos: 12.5,-11.5 - parent: 0 - type: Transform -- uid: 1220 - type: CableApcExtension - components: - - pos: 12.5,-12.5 - parent: 0 - type: Transform -- uid: 1221 - type: CableApcExtension - components: - - pos: 12.5,-13.5 - parent: 0 - type: Transform -- uid: 1222 - type: CableApcExtension - components: - - pos: 12.5,-14.5 - parent: 0 - type: Transform -- uid: 1223 - type: CableApcExtension - components: - - pos: 12.5,-14.5 - parent: 0 - type: Transform -- uid: 1224 - type: CableApcExtension - components: - - pos: 12.5,-16.5 - parent: 0 - type: Transform -- uid: 1225 - type: CableApcExtension - components: - - pos: 12.5,-15.5 - parent: 0 - type: Transform -- uid: 1226 - type: CableApcExtension - components: - - pos: 11.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1227 - type: CableApcExtension - components: - - pos: 11.5,-11.5 - parent: 0 - type: Transform -- uid: 1228 - type: CableApcExtension - components: - - pos: 10.5,-11.5 - parent: 0 - type: Transform -- uid: 1229 - type: CableApcExtension - components: - - pos: 9.5,-11.5 - parent: 0 - type: Transform -- uid: 1230 - type: CableApcExtension - components: - - pos: 13.5,-11.5 - parent: 0 - type: Transform -- uid: 1231 - type: CableApcExtension - components: - - pos: 14.5,-11.5 - parent: 0 - type: Transform -- uid: 1232 - type: CableApcExtension - components: - - pos: 15.5,-11.5 - parent: 0 - type: Transform -- uid: 1233 - type: CableApcExtension - components: - - pos: 11.5,-14.5 - parent: 0 - type: Transform -- uid: 1234 - type: CableApcExtension - components: - - pos: 10.5,-14.5 - parent: 0 - type: Transform -- uid: 1235 - type: APCBasic - components: - - pos: 3.5,-8.5 - parent: 0 - type: Transform -- uid: 1236 - type: CableApcExtension - components: - - pos: 3.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1237 - type: CableApcExtension - components: - - pos: 3.5,-9.5 - parent: 0 - type: Transform -- uid: 1238 - type: CableApcExtension - components: - - pos: 4.5,-9.5 - parent: 0 - type: Transform -- uid: 1239 - type: CableApcExtension - components: - - pos: 4.5,-10.5 - parent: 0 - type: Transform -- uid: 1240 - type: CableApcExtension - components: - - pos: 4.5,-11.5 - parent: 0 - type: Transform -- uid: 1241 - type: CableApcExtension - components: - - pos: 4.5,-12.5 - parent: 0 - type: Transform -- uid: 1242 - type: CableApcExtension - components: - - pos: 4.5,-13.5 - parent: 0 - type: Transform -- uid: 1243 - type: CableApcExtension - components: - - pos: 5.5,-11.5 - parent: 0 - type: Transform -- uid: 1244 - type: CableApcExtension - components: - - pos: 6.5,-11.5 - parent: 0 - type: Transform -- uid: 1245 - type: CableApcExtension - components: - - pos: 7.5,-11.5 - parent: 0 - type: Transform -- uid: 1246 - type: CableApcExtension - components: - - pos: 7.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1247 - type: CableApcExtension - components: - - pos: 5.5,-9.5 - parent: 0 - type: Transform -- uid: 1248 - type: CableApcExtension - components: - - pos: 6.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1249 - type: CableApcExtension - components: - - pos: 7.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1250 - type: CableApcExtension - components: - - pos: 5.5,-13.5 - parent: 0 - type: Transform -- uid: 1251 - type: CableApcExtension - components: - - pos: 6.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1252 - type: CableApcExtension - components: - - pos: 3.5,-10.5 - parent: 0 - type: Transform -- uid: 1253 - type: CableApcExtension - components: - - pos: 2.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1254 - type: CableApcExtension - components: - - pos: 3.5,-13.5 - parent: 0 - type: Transform -- uid: 1255 - type: CableApcExtension - components: - - pos: 2.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1256 - type: CableApcExtension - components: - - pos: 4.5,-8.5 - parent: 0 - type: Transform -- uid: 1257 - type: CableApcExtension - components: - - pos: 4.5,-7.5 - parent: 0 - type: Transform -- uid: 1258 - type: CableApcExtension - components: - - pos: 5.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1259 - type: CableApcExtension - components: - - pos: 3.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1260 - type: CableApcExtension - components: - - pos: -1.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1261 - type: CableApcExtension - components: - - pos: -1.5,-5.5 - parent: 0 - type: Transform -- uid: 1262 - type: CableApcExtension - components: - - pos: -0.5,-5.5 - parent: 0 - type: Transform -- uid: 1263 - type: CableApcExtension - components: - - pos: 0.5,-5.5 - parent: 0 - type: Transform -- uid: 1264 - type: CableApcExtension - components: - - pos: 0.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1265 - type: CableApcExtension - components: - - pos: 1.5,-5.5 - parent: 0 - type: Transform -- uid: 1266 - type: CableApcExtension - components: - - pos: 2.5,-5.5 - parent: 0 - type: Transform -- uid: 1267 - type: CableApcExtension - components: - - pos: 2.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1268 - type: CableApcExtension - components: - - pos: 3.5,-5.5 - parent: 0 - type: Transform -- uid: 1269 - type: CableApcExtension - components: - - pos: 4.5,-5.5 - parent: 0 - type: Transform -- uid: 1270 - type: CableApcExtension - components: - - pos: 5.5,-5.5 - parent: 0 - type: Transform -- uid: 1271 - type: CableApcExtension - components: - - pos: 6.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1272 - type: CableApcExtension - components: - - pos: 6.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1273 - type: CableApcExtension - components: - - pos: 5.5,-4.5 - parent: 0 - type: Transform -- uid: 1274 - type: CableApcExtension - components: - - pos: 5.5,-3.5 - parent: 0 - type: Transform -- uid: 1275 - type: CableApcExtension - components: - - pos: 5.5,-2.5 - parent: 0 - type: Transform -- uid: 1276 - type: CableApcExtension - components: - - pos: 9.5,-5.5 - parent: 0 - type: Transform -- uid: 1277 - type: CableApcExtension - components: - - pos: 8.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1278 - type: CableApcExtension - components: - - pos: 8.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1279 - type: CableApcExtension - components: - - pos: 5.5,-1.5 - parent: 0 - type: Transform -- uid: 1280 - type: CableApcExtension - components: - - pos: 5.5,-0.5 - parent: 0 - type: Transform -- uid: 1281 - type: CableApcExtension - components: - - pos: 5.5,1.5 - parent: 0 - type: Transform -- uid: 1282 - type: CableApcExtension - components: - - pos: 5.5,2.5 - parent: 0 - type: Transform -- uid: 1283 - type: CableApcExtension - components: - - pos: 5.5,3.5 - parent: 0 - type: Transform -- uid: 1284 - type: CableApcExtension - components: - - pos: 5.5,4.5 - parent: 0 - type: Transform -- uid: 1285 - type: CableApcExtension - components: - - pos: 4.5,4.5 - parent: 0 - type: Transform -- uid: 1286 - type: CableApcExtension - components: - - pos: 3.5,4.5 - parent: 0 - type: Transform -- uid: 1287 - type: CableApcExtension - components: - - pos: 2.5,4.5 - parent: 0 - type: Transform -- uid: 1288 - type: CableApcExtension - components: - - pos: 1.5,4.5 - parent: 0 - type: Transform -- uid: 1289 - type: CableApcExtension - components: - - pos: 0.5,4.5 - parent: 0 - type: Transform -- uid: 1290 - type: CableApcExtension - components: - - pos: -0.5,4.5 - parent: 0 - type: Transform -- uid: 1291 - type: CableApcExtension - components: - - pos: -1.5,4.5 - parent: 0 - type: Transform -- uid: 1292 - type: CableApcExtension - components: - - pos: -2.5,4.5 - parent: 0 - type: Transform -- uid: 1293 - type: CableApcExtension - components: - - pos: -3.5,4.5 - parent: 0 - type: Transform -- uid: 1294 - type: CableApcExtension - components: - - pos: -4.5,4.5 - parent: 0 - type: Transform -- uid: 1295 - type: CableApcExtension - components: - - pos: -5.5,4.5 - parent: 0 - type: Transform -- uid: 1296 - type: CableApcExtension - components: - - pos: -6.5,4.5 - parent: 0 - type: Transform -- uid: 1297 - type: CableApcExtension - components: - - pos: -6.5,3.5 - parent: 0 - type: Transform -- uid: 1298 - type: CableApcExtension - components: - - pos: -6.5,2.5 - parent: 0 - type: Transform -- uid: 1299 - type: CableApcExtension - components: - - pos: -6.5,1.5 - parent: 0 - type: Transform -- uid: 1300 - type: CableApcExtension - components: - - pos: -6.5,0.5 - parent: 0 - type: Transform -- uid: 1301 - type: CableApcExtension - components: - - pos: -6.5,-0.5 - parent: 0 - type: Transform -- uid: 1302 - type: CableApcExtension - components: - - pos: -6.5,-1.5 - parent: 0 - type: Transform -- uid: 1303 - type: CableApcExtension - components: - - pos: -6.5,-2.5 - parent: 0 - type: Transform -- uid: 1304 - type: CableApcExtension - components: - - pos: -6.5,-3.5 - parent: 0 - type: Transform -- uid: 1305 - type: CableApcExtension - components: - - pos: -6.5,-4.5 - parent: 0 - type: Transform -- uid: 1306 - type: CableApcExtension - components: - - pos: -6.5,-5.5 - parent: 0 - type: Transform -- uid: 1307 - type: CableApcExtension - components: - - pos: -5.5,-5.5 - parent: 0 - type: Transform -- uid: 1308 - type: CableApcExtension - components: - - pos: -4.5,-5.5 - parent: 0 - type: Transform -- uid: 1309 - type: CableApcExtension - components: - - pos: -3.5,-5.5 - parent: 0 - type: Transform -- uid: 1310 - type: CableApcExtension - components: - - pos: -2.5,-5.5 - parent: 0 - type: Transform -- uid: 1311 - type: CableApcExtension - components: - - pos: -3.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1312 - type: CableApcExtension - components: - - pos: -7.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1313 - type: CableApcExtension - components: - - pos: -7.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1314 - type: CableApcExtension - components: - - pos: -7.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1315 - type: CableApcExtension - components: - - pos: -7.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1316 - type: CableApcExtension - components: - - pos: -7.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1317 - type: CableApcExtension - components: - - pos: -1.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1318 - type: CableApcExtension - components: - - pos: 0.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1319 - type: CableApcExtension - components: - - pos: 2.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1320 - type: CableApcExtension - components: - - pos: 4.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1321 - type: CableMV - components: - - pos: -3.5,4.5 - parent: 0 - type: Transform -- uid: 1322 - type: WallRiveted - components: - - pos: -2.5,5.5 - parent: 0 - type: Transform -- uid: 1323 - type: CableMV - components: - - pos: 16.5,-11.5 - parent: 0 - type: Transform -- uid: 1324 - type: CableMV - components: - - pos: 15.5,-11.5 - parent: 0 - type: Transform -- uid: 1325 - type: CableMV - components: - - pos: 14.5,-11.5 - parent: 0 - type: Transform -- uid: 1326 - type: CableMV - components: - - pos: 13.5,-11.5 - parent: 0 - type: Transform -- uid: 1327 - type: CableMV - components: - - pos: 12.5,-11.5 - parent: 0 - type: Transform -- uid: 1328 - type: CableMV - components: - - pos: 12.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1329 - type: CableMV - components: - - pos: 11.5,-11.5 - parent: 0 - type: Transform -- uid: 1330 - type: CableMV - components: - - pos: 10.5,-11.5 - parent: 0 - type: Transform -- uid: 1331 - type: CableMV - components: - - pos: 9.5,-11.5 - parent: 0 - type: Transform -- uid: 1332 - type: CableMV - components: - - pos: 8.5,-11.5 - parent: 0 - type: Transform -- uid: 1333 - type: CableMV - components: - - pos: 7.5,-11.5 - parent: 0 - type: Transform -- uid: 1334 - type: CableMV - components: - - pos: 6.5,-11.5 - parent: 0 - type: Transform -- uid: 1335 - type: CableMV - components: - - pos: 5.5,-11.5 - parent: 0 - type: Transform -- uid: 1336 - type: CableMV - components: - - pos: 4.5,-11.5 - parent: 0 - type: Transform -- uid: 1337 - type: CableMV - components: - - pos: 3.5,-11.5 - parent: 0 - type: Transform -- uid: 1338 - type: CableMV - components: - - pos: 3.5,-10.5 - parent: 0 - type: Transform -- uid: 1339 - type: CableMV - components: - - pos: 3.5,-9.5 - parent: 0 - type: Transform -- uid: 1340 - type: CableMV - components: - - pos: 3.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1341 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 0 - type: Transform -- uid: 1342 - type: CableApcExtension - components: - - pos: -3.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1343 - type: CableApcExtension - components: - - pos: -2.5,-9.5 - parent: 0 - type: Transform -- uid: 1344 - type: CableApcExtension - components: - - pos: -1.5,-9.5 - parent: 0 - type: Transform -- uid: 1345 - type: CableApcExtension - components: - - pos: -0.5,-9.5 - parent: 0 - type: Transform -- uid: 1346 - type: CableApcExtension - components: - - pos: 0.5,-9.5 - parent: 0 - type: Transform -- uid: 1347 - type: CableApcExtension - components: - - pos: 0.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1348 - type: CableApcExtension - components: - - pos: -1.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1349 - type: CableApcExtension - components: - - pos: -0.5,-10.5 - parent: 0 - type: Transform -- uid: 1350 - type: CableApcExtension - components: - - pos: -0.5,-11.5 - parent: 0 - type: Transform -- uid: 1351 - type: CableApcExtension - components: - - pos: -0.5,-12.5 - parent: 0 - type: Transform -- uid: 1352 - type: CableApcExtension - components: - - pos: -0.5,-13.5 - parent: 0 - type: Transform -- uid: 1353 - type: CableApcExtension - components: - - pos: -1.5,-13.5 - parent: 0 - type: Transform -- uid: 1354 - type: CableApcExtension - components: - - pos: -1.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1355 - type: CableApcExtension - components: - - pos: -2.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1356 - type: CableApcExtension - components: - - pos: 0.5,-13.5 - parent: 0 - type: Transform -- uid: 1357 - type: CableApcExtension - components: - - pos: 0.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1358 - type: CableApcExtension - components: - - pos: 1.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1359 - type: CableApcExtension - components: - - pos: -4.5,-9.5 - parent: 0 - type: Transform -- uid: 1360 - type: CableApcExtension - components: - - pos: -5.5,-9.5 - parent: 0 - type: Transform -- uid: 1361 - type: CableApcExtension - components: - - pos: -5.5,-8.5 - parent: 0 - type: Transform -- uid: 1362 - type: CableApcExtension - components: - - pos: -5.5,-7.5 - parent: 0 - type: Transform -- uid: 1363 - type: CableApcExtension - components: - - pos: -4.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1364 - type: CableApcExtension - components: - - pos: -6.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1365 - type: CableApcExtension - components: - - pos: -5.5,-10.5 - parent: 0 - type: Transform -- uid: 1366 - type: CableApcExtension - components: - - pos: -5.5,-11.5 - parent: 0 - type: Transform -- uid: 1367 - type: CableApcExtension - components: - - pos: -6.5,-11.5 - parent: 0 - type: Transform -- uid: 1368 - type: CableApcExtension - components: - - pos: -7.5,-11.5 - parent: 0 - type: Transform -- uid: 1369 - type: CableApcExtension - components: - - pos: -8.5,-11.5 - parent: 0 - type: Transform -- uid: 1370 - type: CableApcExtension - components: - - pos: -8.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1371 - type: CableApcExtension - components: - - pos: -8.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1372 - type: CableApcExtension - components: - - pos: -5.5,-12.5 - parent: 0 - type: Transform -- uid: 1373 - type: CableApcExtension - components: - - pos: -5.5,-13.5 - parent: 0 - type: Transform -- uid: 1374 - type: CableApcExtension - components: - - pos: -4.5,-10.5 - parent: 0 - type: Transform -- uid: 1375 - type: CableApcExtension - components: - - pos: -3.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1376 - type: CableApcExtension - components: - - pos: -3.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1377 - type: CableApcExtension - components: - - pos: -4.5,-13.5 - parent: 0 - type: Transform -- uid: 1378 - type: CableApcExtension - components: - - pos: -6.5,-13.5 - parent: 0 - type: Transform -- uid: 1379 - type: CableApcExtension - components: - - pos: -7.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1380 - type: CableApcExtension - components: - - pos: -7.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1381 - type: CableApcExtension - components: - - pos: -8.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1382 - type: CableApcExtension - components: - - pos: -6.5,-9.5 - parent: 0 - type: Transform -- uid: 1383 - type: CableApcExtension - components: - - pos: -7.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1384 - type: Poweredlight - components: - - pos: 7.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1385 - type: Poweredlight - components: - - pos: 17.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1386 - type: Poweredlight - components: - - pos: -8.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1387 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1388 - type: Poweredlight - components: - - pos: -2.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1389 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1390 - type: Poweredlight - components: - - pos: 5.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1391 - type: Poweredlight - components: - - pos: 7.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1392 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1393 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1394 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1395 - type: Poweredlight - components: - - pos: -2.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1396 - type: Poweredlight - components: - - pos: 1.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1397 - type: BoxFolderWhite - components: - - pos: 2.5401459,-12.541659 - parent: 0 - type: Transform -- uid: 1398 - type: BoxFolderRed - components: - - pos: -3.4754791,-12.432284 - parent: 0 - type: Transform -- uid: 1399 - type: DrinkMugHeart - components: - - pos: 2.5713959,-11.619784 - parent: 0 - type: Transform -- uid: 1400 - type: FoodBoxDonut - components: - - pos: -3.5536041,-11.463534 - parent: 0 - type: Transform -- uid: 1401 - type: ChairOfficeDark - components: - - pos: -1.5,-1.5 - parent: 0 - type: Transform -- uid: 1402 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 0 - type: Transform -- uid: 1403 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 0 - type: Transform -- uid: 1404 - type: ChairOfficeDark - components: - - pos: 0.5,-1.5 - parent: 0 - type: Transform -- uid: 1405 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -0.5,0.5 - parent: 0 - type: Transform -- uid: 1406 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,1.5 - parent: 0 - type: Transform -- uid: 1407 - type: DisposalUnit - components: - - pos: -3.5,1.5 - parent: 0 - type: Transform -- uid: 1408 - type: WallRiveted - components: - - pos: -4.5,17.5 - parent: 0 - type: Transform -- uid: 1409 - type: WallRiveted - components: - - pos: -2.5,17.5 - parent: 0 - type: Transform -- uid: 1410 - type: WallRiveted - components: - - pos: 1.5,17.5 - parent: 0 - type: Transform -- uid: 1411 - type: WallRiveted - components: - - pos: 3.5,17.5 - parent: 0 - type: Transform -- uid: 1412 - type: WallRiveted - components: - - pos: 3.5,15.5 - parent: 0 - type: Transform -- uid: 1413 - type: WallRiveted - components: - - pos: -4.5,16.5 - parent: 0 - type: Transform -- uid: 1414 - type: WallRiveted - components: - - pos: -4.5,14.5 - parent: 0 - type: Transform -- uid: 1415 - type: WallRiveted - components: - - pos: -4.5,13.5 - parent: 0 - type: Transform -- uid: 1416 - type: WallRiveted - components: - - pos: -4.5,12.5 - parent: 0 - type: Transform -- uid: 1417 - type: ReinforcedWindow - components: - - pos: -4.5,11.5 - parent: 0 - type: Transform -- uid: 1418 - type: ReinforcedWindow - components: - - pos: -3.5,17.5 - parent: 0 - type: Transform -- uid: 1419 - type: ReinforcedWindow - components: - - pos: 2.5,17.5 - parent: 0 - type: Transform -- uid: 1420 - type: ReinforcedWindow - components: - - pos: 3.5,16.5 - parent: 0 - type: Transform -- uid: 1421 - type: ReinforcedWindow - components: - - pos: 3.5,14.5 - parent: 0 - type: Transform -- uid: 1422 - type: ReinforcedWindow - components: - - pos: 3.5,12.5 - parent: 0 - type: Transform -- uid: 1423 - type: ReinforcedWindow - components: - - pos: 3.5,10.5 - parent: 0 - type: Transform -- uid: 1424 - type: Grille - components: - - pos: -10.5,32.5 - parent: 0 - type: Transform -- uid: 1425 - type: CarpetBlue - components: - - pos: -1.5,-0.5 - parent: 0 - type: Transform -- uid: 1426 - type: CarpetBlue - components: - - pos: -0.5,0.5 - parent: 0 - type: Transform -- uid: 1427 - type: CarpetBlue - components: - - pos: -0.5,-0.5 - parent: 0 - type: Transform -- uid: 1428 - type: CarpetBlue - components: - - pos: 0.5,0.5 - parent: 0 - type: Transform -- uid: 1429 - type: CarpetBlue - components: - - pos: 0.5,-0.5 - parent: 0 - type: Transform -- uid: 1430 - type: BlastDoorOpen - components: - - pos: -1.5,6.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1434 - type: SignalReceiver -- uid: 1431 - type: BlastDoorOpen - components: - - pos: -0.5,6.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1434 - type: SignalReceiver -- uid: 1432 - type: BlastDoorOpen - components: - - pos: 0.5,6.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1434 - type: SignalReceiver -- uid: 1433 - type: TableReinforced - components: - - pos: -1.5,1.5 - parent: 0 - type: Transform -- uid: 1434 - type: SignalButton - components: - - name: North Doors - type: MetaData - - pos: -1.5,1.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1430 - - port: Toggle - uid: 1431 - - port: Toggle - uid: 1432 - type: SignalTransmitter -- uid: 1435 - type: SignalButton - components: - - name: East Doors - type: MetaData - - pos: 0.5,1.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 720 - - port: Toggle - uid: 719 - - port: Toggle - uid: 718 - - port: Toggle - uid: 717 - - port: Toggle - uid: 716 - type: SignalTransmitter -- uid: 1436 - type: SignalButton - components: - - name: South Doors - type: MetaData - - pos: 0.5,0.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 786 - - port: Toggle - uid: 787 - - port: Toggle - uid: 788 - type: SignalTransmitter -- uid: 1437 - type: BlastDoorOpen - components: - - pos: -8.5,-2.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6602 - type: SignalReceiver -- uid: 1438 - type: BlastDoorOpen - components: - - pos: -8.5,-1.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6602 - type: SignalReceiver -- uid: 1439 - type: BlastDoorOpen - components: - - pos: -8.5,-0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6602 - type: SignalReceiver -- uid: 1440 - type: BlastDoorOpen - components: - - pos: -8.5,0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6602 - type: SignalReceiver -- uid: 1441 - type: BlastDoorOpen - components: - - pos: -8.5,1.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6602 - type: SignalReceiver -- uid: 1442 - type: Lamp - components: - - pos: -0.93100256,1.9752237 - parent: 0 - type: Transform -- uid: 1443 - type: BoxFolderBlue - components: - - pos: -0.35287756,1.4752237 - parent: 0 - type: Transform -- uid: 1444 - type: BoxFolderRed - components: - - pos: -0.22787756,1.6627237 - parent: 0 - type: Transform -- uid: 1445 - type: ClothingHeadsetAltCentCom - components: - - pos: 0.49087244,0.9907036 - parent: 0 - type: Transform -- uid: 1446 - type: WeaponCapacitorRecharger - components: - - pos: 2.5,-2.5 - parent: 0 - type: Transform -- uid: 1447 - type: WeaponCapacitorRecharger - components: - - pos: 10.5,3.5 - parent: 0 - type: Transform -- uid: 1448 - type: PowerCellRecharger - components: - - pos: 12.5,6.5 - parent: 0 - type: Transform -- uid: 1449 - type: WeaponCapacitorRecharger - components: - - pos: -6.5,-13.5 - parent: 0 - type: Transform -- uid: 1450 - type: BoxFlashbang - components: - - pos: 13.475631,6.6059804 - parent: 0 - type: Transform -- uid: 1451 - type: CrowbarRed - components: - - pos: 14.506881,6.5434804 - parent: 0 - type: Transform -- uid: 1452 - type: Flash - components: - - pos: 10.538131,4.4341054 - parent: 0 - type: Transform -- uid: 1453 - type: BoxHandcuff - components: - - pos: 15.460006,6.6372304 - parent: 0 - type: Transform -- uid: 1454 - type: MedkitFilled - components: - - pos: 15.537778,-2.524952 - parent: 0 - type: Transform -- uid: 1455 - type: AcousticGuitarInstrument - components: - - pos: 15.537778,1.6263883 - parent: 0 - type: Transform -- uid: 1456 - type: BookBase - components: - - pos: 9.522153,1.5795133 - parent: 0 - type: Transform -- uid: 1457 - type: BoxPDA - components: - - pos: 1.5702643,-2.4016738 - parent: 0 - type: Transform -- uid: 1458 - type: PowerCellRecharger - components: - - pos: -4.5,-10.5 - parent: 0 - type: Transform -- uid: 1459 - type: WeaponTaser - components: - - pos: -4.4574313,-9.606358 - parent: 0 - type: Transform -- uid: 1460 - type: ClothingBeltSecurityFilled - components: - - pos: -6.4730563,-12.590733 - parent: 0 - type: Transform -- uid: 1461 - type: HandheldCrewMonitor - components: - - pos: 13.504195,-12.438507 - parent: 0 - type: Transform -- uid: 1462 - type: EpinephrineChemistryBottle - components: - - pos: 13.808971,-12.626007 - parent: 0 - type: Transform -- uid: 1463 - type: EpinephrineChemistryBottle - components: - - pos: 13.818524,-12.297882 - parent: 0 - type: Transform -- uid: 1464 - type: BoxSyringe - components: - - pos: 3.3950944,-10.201927 - parent: 0 - type: Transform -- uid: 1465 - type: BoxMouthSwab - components: - - pos: 3.506433,-10.325108 - parent: 0 - type: Transform -- uid: 1466 - type: ReinforcedWindow - components: - - pos: 16.5,-4.5 - parent: 0 - type: Transform -- uid: 1467 - type: Grille - components: - - pos: 16.5,-4.5 - parent: 0 - type: Transform -- uid: 1468 - type: CableApcExtension - components: - - pos: 15.5,-4.5 - parent: 0 - type: Transform -- uid: 1469 - type: CableApcExtension - components: - - pos: 16.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1470 - type: CableApcExtension - components: - - pos: 15.5,4.5 - parent: 0 - type: Transform -- uid: 1471 - type: CableApcExtension - components: - - pos: 15.5,3.5 - parent: 0 - type: Transform -- uid: 1472 - type: CableApcExtension - components: - - pos: 16.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1473 - type: AtmosDeviceFanTiny - components: - - pos: -5.5,6.5 - parent: 0 - type: Transform -- uid: 1474 - type: AtmosDeviceFanTiny - components: - - pos: -5.5,-7.5 - parent: 0 - type: Transform -- uid: 1475 - type: CableHV - components: - - pos: 15.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1476 - type: CableHV - components: - - pos: 16.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1477 - type: CableHV - components: - - pos: 17.5,-13.5 - parent: 0 - type: Transform -- uid: 1478 - type: CableHV - components: - - pos: 17.5,-14.5 - parent: 0 - type: Transform -- uid: 1479 - type: CableHV - components: - - pos: 18.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1480 - type: CableHV - components: - - pos: 19.5,-14.5 - parent: 0 - type: Transform -- uid: 1481 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1482 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1483 - type: Poweredlight - components: - - pos: 7.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1484 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1485 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1486 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1487 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1488 - type: Grille - components: - - pos: 3.5,12.5 - parent: 0 - type: Transform -- uid: 1489 - type: Grille - components: - - pos: 3.5,10.5 - parent: 0 - type: Transform -- uid: 1490 - type: WallRiveted - components: - - pos: -5.5,13.5 - parent: 0 - type: Transform -- uid: 1491 - type: WallRiveted - components: - - pos: -7.5,13.5 - parent: 0 - type: Transform -- uid: 1492 - type: WallRiveted - components: - - pos: -9.5,13.5 - parent: 0 - type: Transform -- uid: 1493 - type: WallRiveted - components: - - pos: -8.5,13.5 - parent: 0 - type: Transform -- uid: 1494 - type: WallRiveted - components: - - pos: -8.5,14.5 - parent: 0 - type: Transform -- uid: 1495 - type: WallRiveted - components: - - pos: -11.5,13.5 - parent: 0 - type: Transform -- uid: 1496 - type: WallRiveted - components: - - pos: -12.5,13.5 - parent: 0 - type: Transform -- uid: 1497 - type: WallRiveted - components: - - pos: -13.5,13.5 - parent: 0 - type: Transform -- uid: 1498 - type: WallRiveted - components: - - pos: -14.5,13.5 - parent: 0 - type: Transform -- uid: 1499 - type: WallRiveted - components: - - pos: -15.5,13.5 - parent: 0 - type: Transform -- uid: 1500 - type: WallRiveted - components: - - pos: -16.5,13.5 - parent: 0 - type: Transform -- uid: 1501 - type: WallRiveted - components: - - pos: -16.5,14.5 - parent: 0 - type: Transform -- uid: 1502 - type: WallRiveted - components: - - pos: -16.5,15.5 - parent: 0 - type: Transform -- uid: 1503 - type: WallRiveted - components: - - pos: -16.5,16.5 - parent: 0 - type: Transform -- uid: 1504 - type: WallRiveted - components: - - pos: -14.5,18.5 - parent: 0 - type: Transform -- uid: 1505 - type: WallRiveted - components: - - pos: -8.5,16.5 - parent: 0 - type: Transform -- uid: 1506 - type: WallRiveted - components: - - pos: -8.5,17.5 - parent: 0 - type: Transform -- uid: 1507 - type: WallRiveted - components: - - pos: -8.5,18.5 - parent: 0 - type: Transform -- uid: 1508 - type: WallRiveted - components: - - pos: -7.5,18.5 - parent: 0 - type: Transform -- uid: 1509 - type: WallRiveted - components: - - pos: -4.5,18.5 - parent: 0 - type: Transform -- uid: 1510 - type: WallRiveted - components: - - pos: -5.5,18.5 - parent: 0 - type: Transform -- uid: 1511 - type: WallRiveted - components: - - pos: -9.5,18.5 - parent: 0 - type: Transform -- uid: 1512 - type: WallRiveted - components: - - pos: -11.5,18.5 - parent: 0 - type: Transform -- uid: 1513 - type: Grille - components: - - pos: -13.5,18.5 - parent: 0 - type: Transform -- uid: 1514 - type: Grille - components: - - pos: -12.5,18.5 - parent: 0 - type: Transform -- uid: 1515 - type: Grille - components: - - pos: -16.5,17.5 - parent: 0 - type: Transform -- uid: 1516 - type: Grille - components: - - pos: -16.5,18.5 - parent: 0 - type: Transform -- uid: 1517 - type: Grille - components: - - pos: -15.5,18.5 - parent: 0 - type: Transform -- uid: 1518 - type: ReinforcedWindow - components: - - pos: -16.5,17.5 - parent: 0 - type: Transform -- uid: 1519 - type: ReinforcedWindow - components: - - pos: -16.5,18.5 - parent: 0 - type: Transform -- uid: 1520 - type: ReinforcedWindow - components: - - pos: -15.5,18.5 - parent: 0 - type: Transform -- uid: 1521 - type: ReinforcedWindow - components: - - pos: -13.5,18.5 - parent: 0 - type: Transform -- uid: 1522 - type: ReinforcedWindow - components: - - pos: -12.5,18.5 - parent: 0 - type: Transform -- uid: 1523 - type: WallRiveted - components: - - pos: -2.5,18.5 - parent: 0 - type: Transform -- uid: 1524 - type: WallRiveted - components: - - pos: -2.5,19.5 - parent: 0 - type: Transform -- uid: 1525 - type: WallRiveted - components: - - pos: -3.5,19.5 - parent: 0 - type: Transform -- uid: 1526 - type: WallRiveted - components: - - pos: -4.5,19.5 - parent: 0 - type: Transform -- uid: 1527 - type: WallRiveted - components: - - pos: 1.5,18.5 - parent: 0 - type: Transform -- uid: 1528 - type: WallRiveted - components: - - pos: 1.5,19.5 - parent: 0 - type: Transform -- uid: 1529 - type: WallRiveted - components: - - pos: 2.5,19.5 - parent: 0 - type: Transform -- uid: 1530 - type: WallRiveted - components: - - pos: 3.5,19.5 - parent: 0 - type: Transform -- uid: 1531 - type: WallRiveted - components: - - pos: 3.5,18.5 - parent: 0 - type: Transform -- uid: 1532 - type: WallRiveted - components: - - pos: 0.5,17.5 - parent: 0 - type: Transform -- uid: 1533 - type: SignElectricalMed - components: - - pos: -1.5,17.5 - parent: 0 - type: Transform -- uid: 1534 - type: AirlockEngineeringLocked - components: - - pos: -0.5,17.5 - parent: 0 - type: Transform -- uid: 1535 - type: WallRiveted - components: - - pos: -1.5,17.5 - parent: 0 - type: Transform -- uid: 1536 - type: WallRiveted - components: - - pos: 3.5,21.5 - parent: 0 - type: Transform -- uid: 1537 - type: WallRiveted - components: - - pos: 3.5,20.5 - parent: 0 - type: Transform -- uid: 1538 - type: WallRiveted - components: - - pos: -14.5,19.5 - parent: 0 - type: Transform -- uid: 1539 - type: ReinforcedWindow - components: - - pos: -14.5,20.5 - parent: 0 - type: Transform -- uid: 1540 - type: ReinforcedWindow - components: - - pos: -14.5,21.5 - parent: 0 - type: Transform -- uid: 1541 - type: ReinforcedWindow - components: - - pos: -14.5,22.5 - parent: 0 - type: Transform -- uid: 1542 - type: ReinforcedWindow - components: - - pos: -14.5,23.5 - parent: 0 - type: Transform -- uid: 1543 - type: ReinforcedWindow - components: - - pos: -15.5,23.5 - parent: 0 - type: Transform -- uid: 1544 - type: ReinforcedWindow - components: - - pos: -16.5,23.5 - parent: 0 - type: Transform -- uid: 1545 - type: ReinforcedWindow - components: - - pos: -14.5,29.5 - parent: 0 - type: Transform -- uid: 1546 - type: ReinforcedWindow - components: - - pos: -15.5,29.5 - parent: 0 - type: Transform -- uid: 1547 - type: ReinforcedWindow - components: - - pos: -16.5,29.5 - parent: 0 - type: Transform -- uid: 1548 - type: ReinforcedWindow - components: - - pos: -14.5,30.5 - parent: 0 - type: Transform -- uid: 1549 - type: ReinforcedWindow - components: - - pos: -14.5,26.5 - parent: 0 - type: Transform -- uid: 1550 - type: ReinforcedWindow - components: - - pos: -15.5,26.5 - parent: 0 - type: Transform -- uid: 1551 - type: ReinforcedWindow - components: - - pos: -16.5,26.5 - parent: 0 - type: Transform -- uid: 1552 - type: BlastDoor - components: - - pos: -4.5,21.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1804 - type: SignalReceiver -- uid: 1553 - type: WallRiveted - components: - - pos: -4.5,20.5 - parent: 0 - type: Transform -- uid: 1554 - type: WallRiveted - components: - - pos: -4.5,22.5 - parent: 0 - type: Transform -- uid: 1555 - type: WallRiveted - components: - - pos: -4.5,23.5 - parent: 0 - type: Transform -- uid: 1556 - type: WallRiveted - components: - - pos: -4.5,24.5 - parent: 0 - type: Transform -- uid: 1557 - type: WallRiveted - components: - - pos: -4.5,25.5 - parent: 0 - type: Transform -- uid: 1558 - type: WallRiveted - components: - - pos: -4.5,26.5 - parent: 0 - type: Transform -- uid: 1559 - type: WallRiveted - components: - - pos: -4.5,27.5 - parent: 0 - type: Transform -- uid: 1560 - type: WallRiveted - components: - - pos: -4.5,28.5 - parent: 0 - type: Transform -- uid: 1561 - type: WallRiveted - components: - - pos: -4.5,29.5 - parent: 0 - type: Transform -- uid: 1562 - type: WallRiveted - components: - - pos: -4.5,30.5 - parent: 0 - type: Transform -- uid: 1563 - type: WallRiveted - components: - - pos: -4.5,31.5 - parent: 0 - type: Transform -- uid: 1564 - type: WallRiveted - components: - - pos: -4.5,32.5 - parent: 0 - type: Transform -- uid: 1565 - type: WallRiveted - components: - - pos: -5.5,32.5 - parent: 0 - type: Transform -- uid: 1566 - type: ReinforcedWindow - components: - - pos: -12.5,32.5 - parent: 0 - type: Transform -- uid: 1567 - type: WallRiveted - components: - - pos: -11.5,32.5 - parent: 0 - type: Transform -- uid: 1568 - type: WallRiveted - components: - - pos: -11.5,34.5 - parent: 0 - type: Transform -- uid: 1569 - type: WallRiveted - components: - - pos: -7.5,33.5 - parent: 0 - type: Transform -- uid: 1570 - type: WallRiveted - components: - - pos: -7.5,32.5 - parent: 0 - type: Transform -- uid: 1571 - type: WallRiveted - components: - - pos: -11.5,33.5 - parent: 0 - type: Transform -- uid: 1572 - type: ReinforcedWindow - components: - - pos: -6.5,32.5 - parent: 0 - type: Transform -- uid: 1573 - type: WallRiveted - components: - - pos: -13.5,32.5 - parent: 0 - type: Transform -- uid: 1574 - type: WallRiveted - components: - - pos: -14.5,32.5 - parent: 0 - type: Transform -- uid: 1575 - type: WallRiveted - components: - - pos: -14.5,31.5 - parent: 0 - type: Transform -- uid: 1576 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -16.5,24.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1588 - Forward: - - port: Left - uid: 1588 - Off: - - port: Middle - uid: 1588 - type: SignalReceiver -- uid: 1577 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -15.5,24.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1588 - Forward: - - port: Left - uid: 1588 - Off: - - port: Middle - uid: 1588 - type: SignalReceiver -- uid: 1578 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -14.5,24.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1588 - Forward: - - port: Left - uid: 1588 - Off: - - port: Middle - uid: 1588 - type: SignalReceiver -- uid: 1579 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -13.5,24.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1588 - Forward: - - port: Left - uid: 1588 - Off: - - port: Middle - uid: 1588 - type: SignalReceiver -- uid: 1580 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -12.5,24.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1588 - Forward: - - port: Left - uid: 1588 - Off: - - port: Middle - uid: 1588 - type: SignalReceiver -- uid: 1581 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -11.5,24.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1588 - Forward: - - port: Left - uid: 1588 - Off: - - port: Middle - uid: 1588 - type: SignalReceiver -- uid: 1582 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -16.5,28.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1589 - Forward: - - port: Left - uid: 1589 - Off: - - port: Middle - uid: 1589 - type: SignalReceiver -- uid: 1583 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -15.5,28.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1589 - Forward: - - port: Left - uid: 1589 - Off: - - port: Middle - uid: 1589 - type: SignalReceiver -- uid: 1584 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -14.5,28.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1589 - Forward: - - port: Left - uid: 1589 - Off: - - port: Middle - uid: 1589 - type: SignalReceiver -- uid: 1585 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -13.5,28.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1589 - Forward: - - port: Left - uid: 1589 - Off: - - port: Middle - uid: 1589 - type: SignalReceiver -- uid: 1586 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -12.5,28.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1589 - Forward: - - port: Left - uid: 1589 - Off: - - port: Middle - uid: 1589 - type: SignalReceiver -- uid: 1587 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -11.5,28.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1589 - Forward: - - port: Left - uid: 1589 - Off: - - port: Middle - uid: 1589 - type: SignalReceiver -- uid: 1588 - type: TwoWayLever - components: - - pos: -12.5,23.5 - parent: 0 - type: Transform - - nextSignalLeft: True - type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 1576 - - port: Forward - uid: 1577 - - port: Forward - uid: 1578 - - port: Forward - uid: 1579 - - port: Forward - uid: 1580 - - port: Forward - uid: 1581 - Right: - - port: Reverse - uid: 1576 - - port: Reverse - uid: 1577 - - port: Reverse - uid: 1578 - - port: Reverse - uid: 1579 - - port: Reverse - uid: 1580 - - port: Reverse - uid: 1581 - Middle: - - port: Off - uid: 1576 - - port: Off - uid: 1577 - - port: Off - uid: 1578 - - port: Off - uid: 1579 - - port: Off - uid: 1580 - - port: Off - uid: 1581 - type: SignalTransmitter -- uid: 1589 - type: TwoWayLever - components: - - pos: -12.5,29.5 - parent: 0 - type: Transform - - nextSignalLeft: True - type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 1582 - - port: Forward - uid: 1583 - - port: Forward - uid: 1584 - - port: Forward - uid: 1585 - - port: Forward - uid: 1586 - - port: Forward - uid: 1587 - Right: - - port: Reverse - uid: 1582 - - port: Reverse - uid: 1583 - - port: Reverse - uid: 1584 - - port: Reverse - uid: 1585 - - port: Reverse - uid: 1586 - - port: Reverse - uid: 1587 - Middle: - - port: Off - uid: 1582 - - port: Off - uid: 1583 - - port: Off - uid: 1584 - - port: Off - uid: 1585 - - port: Off - uid: 1586 - - port: Off - uid: 1587 - type: SignalTransmitter -- uid: 1590 - type: PlasticFlapsAirtightClear - components: - - pos: -16.5,24.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 1591 - type: PlasticFlapsAirtightClear - components: - - pos: -14.5,24.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 1592 - type: PlasticFlapsAirtightClear - components: - - pos: -16.5,28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 1593 - type: PlasticFlapsAirtightClear - components: - - pos: -14.5,28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 1594 - type: Grille - components: - - pos: -14.5,20.5 - parent: 0 - type: Transform -- uid: 1595 - type: Grille - components: - - pos: -14.5,21.5 - parent: 0 - type: Transform -- uid: 1596 - type: Grille - components: - - pos: -14.5,22.5 - parent: 0 - type: Transform -- uid: 1597 - type: Grille - components: - - pos: -14.5,23.5 - parent: 0 - type: Transform -- uid: 1598 - type: Grille - components: - - pos: -15.5,23.5 - parent: 0 - type: Transform -- uid: 1599 - type: Grille - components: - - pos: -16.5,23.5 - parent: 0 - type: Transform -- uid: 1600 - type: Grille - components: - - pos: -16.5,26.5 - parent: 0 - type: Transform -- uid: 1601 - type: Grille - components: - - pos: -15.5,26.5 - parent: 0 - type: Transform -- uid: 1602 - type: Grille - components: - - pos: -14.5,26.5 - parent: 0 - type: Transform -- uid: 1603 - type: Grille - components: - - pos: -16.5,29.5 - parent: 0 - type: Transform -- uid: 1604 - type: Grille - components: - - pos: -15.5,29.5 - parent: 0 - type: Transform -- uid: 1605 - type: Grille - components: - - pos: -14.5,29.5 - parent: 0 - type: Transform -- uid: 1606 - type: Grille - components: - - pos: -14.5,30.5 - parent: 0 - type: Transform -- uid: 1607 - type: BlastDoor - components: - - pos: -16.5,24.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1611 - type: SignalReceiver -- uid: 1608 - type: BlastDoor - components: - - pos: -16.5,28.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1612 - type: SignalReceiver -- uid: 1609 - type: BlastDoor - components: - - pos: -14.5,28.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1612 - type: SignalReceiver -- uid: 1610 - type: BlastDoor - components: - - pos: -14.5,24.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1611 - type: SignalReceiver -- uid: 1611 - type: SignalButton - components: - - pos: -14.5,23.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1607 - - port: Toggle - uid: 1610 - type: SignalTransmitter -- uid: 1612 - type: SignalButton - components: - - pos: -14.5,29.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1608 - - port: Toggle - uid: 1609 - type: SignalTransmitter -- uid: 1613 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -16.5,25.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 1614 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -16.5,27.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 1615 - type: AirlockExternalGlass - components: - - pos: -14.5,25.5 - parent: 0 - type: Transform -- uid: 1616 - type: AirlockExternalGlass - components: - - pos: -14.5,27.5 - parent: 0 - type: Transform -- uid: 1617 - type: TableReinforced - components: - - pos: -4.5,9.5 - parent: 0 - type: Transform -- uid: 1618 - type: TableReinforced - components: - - pos: -4.5,10.5 - parent: 0 - type: Transform -- uid: 1619 - type: FirelockGlass - components: - - pos: -4.5,9.5 - parent: 0 - type: Transform -- uid: 1620 - type: FirelockGlass - components: - - pos: -4.5,10.5 - parent: 0 - type: Transform -- uid: 1621 - type: WindoorSecureCargoLocked - components: - - rot: 1.5707963267948966 rad - pos: -4.5,9.5 - parent: 0 - type: Transform -- uid: 1622 - type: WindoorSecureCargoLocked - components: - - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 0 - type: Transform -- uid: 1623 - type: PlasticFlapsAirtightClear - components: - - pos: -4.5,15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 1624 - type: ComputerCargoOrders - components: - - rot: -1.5707963267948966 rad - pos: -5.5,11.5 - parent: 0 - type: Transform -- uid: 1625 - type: ComputerCargoShuttle - components: - - rot: -1.5707963267948966 rad - pos: -5.5,12.5 - parent: 0 - type: Transform -- uid: 1626 - type: filingCabinetTall - components: - - pos: -12.5,8.5 - parent: 0 - type: Transform -- uid: 1627 - type: filingCabinetTall - components: - - pos: -11.5,8.5 - parent: 0 - type: Transform -- uid: 1628 - type: filingCabinetDrawer - components: - - pos: -12.5,12.5 - parent: 0 - type: Transform -- uid: 1629 - type: AirlockCargoGlassLocked - components: - - pos: -6.5,13.5 - parent: 0 - type: Transform -- uid: 1630 - type: AirlockCargoGlassLocked - components: - - pos: -10.5,13.5 - parent: 0 - type: Transform -- uid: 1631 - type: AirlockCargoGlassLocked - components: - - pos: -8.5,15.5 - parent: 0 - type: Transform -- uid: 1632 - type: AirlockCargoLocked - components: - - pos: -10.5,18.5 - parent: 0 - type: Transform -- uid: 1633 - type: AirlockCargoLocked - components: - - pos: -6.5,18.5 - parent: 0 - type: Transform -- uid: 1634 - type: AtmosDeviceFanTiny - components: - - pos: -16.5,25.5 - parent: 0 - type: Transform -- uid: 1635 - type: AtmosDeviceFanTiny - components: - - pos: -16.5,27.5 - parent: 0 - type: Transform -- uid: 1636 - type: TableReinforced - components: - - pos: -9.5,8.5 - parent: 0 - type: Transform -- uid: 1637 - type: TableReinforced - components: - - pos: -8.5,8.5 - parent: 0 - type: Transform -- uid: 1638 - type: TableReinforced - components: - - pos: -7.5,8.5 - parent: 0 - type: Transform -- uid: 1639 - type: TableReinforced - components: - - pos: -12.5,9.5 - parent: 0 - type: Transform -- uid: 1640 - type: TableReinforced - components: - - pos: -12.5,10.5 - parent: 0 - type: Transform -- uid: 1641 - type: TableReinforced - components: - - pos: -12.5,11.5 - parent: 0 - type: Transform -- uid: 1642 - type: TableReinforced - components: - - pos: -8.5,12.5 - parent: 0 - type: Transform -- uid: 1643 - type: TableReinforced - components: - - pos: -9.5,12.5 - parent: 0 - type: Transform -- uid: 1644 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -3.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 1645 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 1646 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 0 - type: Transform -- uid: 1647 - type: ChairOfficeDark - components: - - pos: -8.5,9.5 - parent: 0 - type: Transform -- uid: 1648 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -8.5,11.5 - parent: 0 - type: Transform -- uid: 1649 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -11.5,10.5 - parent: 0 - type: Transform -- uid: 1650 - type: ComputerCargoOrders - components: - - rot: 1.5707963267948966 rad - pos: -15.5,16.5 - parent: 0 - type: Transform -- uid: 1651 - type: ComputerCargoShuttle - components: - - rot: 1.5707963267948966 rad - pos: -15.5,15.5 - parent: 0 - type: Transform -- uid: 1652 - type: ComputerCargoShuttle - components: - - rot: 3.141592653589793 rad - pos: -12.5,14.5 - parent: 0 - type: Transform -- uid: 1653 - type: ComputerCargoOrders - components: - - rot: 3.141592653589793 rad - pos: -13.5,14.5 - parent: 0 - type: Transform -- uid: 1654 - type: TableReinforced - components: - - pos: -15.5,14.5 - parent: 0 - type: Transform -- uid: 1655 - type: TableReinforced - components: - - pos: -14.5,14.5 - parent: 0 - type: Transform -- uid: 1656 - type: TableReinforced - components: - - pos: -15.5,17.5 - parent: 0 - type: Transform -- uid: 1657 - type: TableReinforced - components: - - pos: -14.5,17.5 - parent: 0 - type: Transform -- uid: 1658 - type: ComputerShuttleCargo - components: - - pos: -13.5,17.5 - parent: 0 - type: Transform -- uid: 1659 - type: ComputerCrewMonitoring - components: - - pos: -12.5,17.5 - parent: 0 - type: Transform -- uid: 1660 - type: filingCabinetDrawer - components: - - pos: -11.5,14.5 - parent: 0 - type: Transform -- uid: 1661 - type: filingCabinetTall - components: - - pos: -9.5,17.5 - parent: 0 - type: Transform -- uid: 1662 - type: Rack - components: - - pos: -11.5,17.5 - parent: 0 - type: Transform -- uid: 1663 - type: DisposalUnit - components: - - pos: -9.5,14.5 - parent: 0 - type: Transform -- uid: 1664 - type: WallRiveted - components: - - pos: -7.5,34.5 - parent: 0 - type: Transform -- uid: 1665 - type: WallRiveted - components: - - pos: -8.5,34.5 - parent: 0 - type: Transform -- uid: 1666 - type: WallRiveted - components: - - pos: -10.5,34.5 - parent: 0 - type: Transform -- uid: 1667 - type: Grille - components: - - pos: -8.5,32.5 - parent: 0 - type: Transform -- uid: 1669 - type: Grille - components: - - pos: -6.5,32.5 - parent: 0 - type: Transform -- uid: 1670 - type: Grille - components: - - pos: -12.5,32.5 - parent: 0 - type: Transform -- uid: 1671 - type: AtmosDeviceFanTiny - components: - - pos: -9.5,33.5 - parent: 0 - type: Transform -- uid: 1672 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 3.141592653589793 rad - pos: -9.5,34.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 1673 - type: AirlockExternalGlassLocked - components: - - pos: -9.5,32.5 - parent: 0 - type: Transform -- uid: 1674 - type: APCBasic - components: - - pos: -14.5,18.5 - parent: 0 - type: Transform -- uid: 1675 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -4.5,17.5 - parent: 0 - type: Transform -- uid: 1676 - type: APCBasic - components: - - pos: -8.5,13.5 - parent: 0 - type: Transform -- uid: 1677 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -4.5,19.5 - parent: 0 - type: Transform -- uid: 1678 - type: CableApcExtension - components: - - pos: -6.5,16.5 - parent: 0 - type: Transform -- uid: 1679 - type: CableApcExtension - components: - - pos: -6.5,15.5 - parent: 0 - type: Transform -- uid: 1680 - type: CableApcExtension - components: - - pos: -6.5,17.5 - parent: 0 - type: Transform -- uid: 1681 - type: CableApcExtension - components: - - pos: -5.5,17.5 - parent: 0 - type: Transform -- uid: 1682 - type: CableApcExtension - components: - - pos: -4.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1683 - type: CableApcExtension - components: - - pos: -8.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1684 - type: CableApcExtension - components: - - pos: -8.5,12.5 - parent: 0 - type: Transform -- uid: 1685 - type: CableApcExtension - components: - - pos: -8.5,11.5 - parent: 0 - type: Transform -- uid: 1686 - type: CableApcExtension - components: - - pos: -8.5,10.5 - parent: 0 - type: Transform -- uid: 1687 - type: CableApcExtension - components: - - pos: -8.5,9.5 - parent: 0 - type: Transform -- uid: 1688 - type: CableApcExtension - components: - - pos: -7.5,9.5 - parent: 0 - type: Transform -- uid: 1689 - type: CableApcExtension - components: - - pos: -6.5,9.5 - parent: 0 - type: Transform -- uid: 1690 - type: CableApcExtension - components: - - pos: -5.5,9.5 - parent: 0 - type: Transform -- uid: 1691 - type: CableApcExtension - components: - - pos: -5.5,8.5 - parent: 0 - type: Transform -- uid: 1692 - type: CableApcExtension - components: - - pos: -4.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1693 - type: CableApcExtension - components: - - pos: -5.5,7.5 - parent: 0 - type: Transform -- uid: 1694 - type: CableApcExtension - components: - - pos: -5.5,6.5 - parent: 0 - type: Transform -- uid: 1695 - type: CableApcExtension - components: - - pos: -4.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1696 - type: CableApcExtension - components: - - pos: -6.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1697 - type: CableApcExtension - components: - - pos: -9.5,9.5 - parent: 0 - type: Transform -- uid: 1698 - type: CableApcExtension - components: - - pos: -10.5,9.5 - parent: 0 - type: Transform -- uid: 1699 - type: CableApcExtension - components: - - pos: -11.5,9.5 - parent: 0 - type: Transform -- uid: 1700 - type: CableApcExtension - components: - - pos: -9.5,11.5 - parent: 0 - type: Transform -- uid: 1701 - type: CableApcExtension - components: - - pos: -10.5,11.5 - parent: 0 - type: Transform -- uid: 1702 - type: CableApcExtension - components: - - pos: -11.5,11.5 - parent: 0 - type: Transform -- uid: 1703 - type: CableApcExtension - components: - - pos: -7.5,11.5 - parent: 0 - type: Transform -- uid: 1704 - type: CableApcExtension - components: - - pos: -6.5,11.5 - parent: 0 - type: Transform -- uid: 1705 - type: CableApcExtension - components: - - pos: -6.5,12.5 - parent: 0 - type: Transform -- uid: 1706 - type: CableApcExtension - components: - - pos: -14.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1707 - type: CableApcExtension - components: - - pos: -14.5,17.5 - parent: 0 - type: Transform -- uid: 1708 - type: CableApcExtension - components: - - pos: -15.5,17.5 - parent: 0 - type: Transform -- uid: 1709 - type: CableApcExtension - components: - - pos: -16.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1710 - type: CableApcExtension - components: - - pos: -16.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1711 - type: CableApcExtension - components: - - pos: -15.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1712 - type: CableApcExtension - components: - - pos: -13.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1713 - type: CableApcExtension - components: - - pos: -12.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1714 - type: CableApcExtension - components: - - pos: -14.5,16.5 - parent: 0 - type: Transform -- uid: 1715 - type: CableApcExtension - components: - - pos: -14.5,15.5 - parent: 0 - type: Transform -- uid: 1716 - type: CableApcExtension - components: - - pos: -13.5,15.5 - parent: 0 - type: Transform -- uid: 1717 - type: CableApcExtension - components: - - pos: -12.5,15.5 - parent: 0 - type: Transform -- uid: 1718 - type: CableApcExtension - components: - - pos: -11.5,15.5 - parent: 0 - type: Transform -- uid: 1719 - type: CableApcExtension - components: - - pos: -10.5,15.5 - parent: 0 - type: Transform -- uid: 1720 - type: CableApcExtension - components: - - pos: -9.5,15.5 - parent: 0 - type: Transform -- uid: 1721 - type: CableApcExtension - components: - - pos: -10.5,14.5 - parent: 0 - type: Transform -- uid: 1722 - type: CableApcExtension - components: - - pos: -10.5,16.5 - parent: 0 - type: Transform -- uid: 1723 - type: CableApcExtension - components: - - pos: -10.5,17.5 - parent: 0 - type: Transform -- uid: 1724 - type: CableApcExtension - components: - - pos: -4.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1725 - type: CableApcExtension - components: - - pos: -5.5,19.5 - parent: 0 - type: Transform -- uid: 1726 - type: CableApcExtension - components: - - pos: -6.5,19.5 - parent: 0 - type: Transform -- uid: 1727 - type: CableApcExtension - components: - - pos: -7.5,19.5 - parent: 0 - type: Transform -- uid: 1728 - type: CableApcExtension - components: - - pos: -8.5,19.5 - parent: 0 - type: Transform -- uid: 1729 - type: CableApcExtension - components: - - pos: -9.5,19.5 - parent: 0 - type: Transform -- uid: 1730 - type: CableApcExtension - components: - - pos: -10.5,19.5 - parent: 0 - type: Transform -- uid: 1731 - type: CableApcExtension - components: - - pos: -11.5,19.5 - parent: 0 - type: Transform -- uid: 1732 - type: CableApcExtension - components: - - pos: -11.5,20.5 - parent: 0 - type: Transform -- uid: 1733 - type: CableApcExtension - components: - - pos: -11.5,21.5 - parent: 0 - type: Transform -- uid: 1734 - type: CableApcExtension - components: - - pos: -11.5,22.5 - parent: 0 - type: Transform -- uid: 1735 - type: CableApcExtension - components: - - pos: -11.5,23.5 - parent: 0 - type: Transform -- uid: 1736 - type: CableApcExtension - components: - - pos: -11.5,24.5 - parent: 0 - type: Transform -- uid: 1737 - type: CableApcExtension - components: - - pos: -11.5,25.5 - parent: 0 - type: Transform -- uid: 1738 - type: CableApcExtension - components: - - pos: -11.5,26.5 - parent: 0 - type: Transform -- uid: 1739 - type: CableApcExtension - components: - - pos: -11.5,27.5 - parent: 0 - type: Transform -- uid: 1740 - type: CableApcExtension - components: - - pos: -11.5,28.5 - parent: 0 - type: Transform -- uid: 1741 - type: CableApcExtension - components: - - pos: -11.5,29.5 - parent: 0 - type: Transform -- uid: 1742 - type: CableApcExtension - components: - - pos: -11.5,30.5 - parent: 0 - type: Transform -- uid: 1743 - type: CableApcExtension - components: - - pos: -11.5,31.5 - parent: 0 - type: Transform -- uid: 1744 - type: CableApcExtension - components: - - pos: -12.5,31.5 - parent: 0 - type: Transform -- uid: 1745 - type: CableApcExtension - components: - - pos: -12.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1746 - type: CableApcExtension - components: - - pos: -10.5,31.5 - parent: 0 - type: Transform -- uid: 1747 - type: CableApcExtension - components: - - pos: -9.5,31.5 - parent: 0 - type: Transform -- uid: 1748 - type: CableApcExtension - components: - - pos: -8.5,31.5 - parent: 0 - type: Transform -- uid: 1749 - type: CableApcExtension - components: - - pos: -7.5,31.5 - parent: 0 - type: Transform -- uid: 1750 - type: CableApcExtension - components: - - pos: -6.5,31.5 - parent: 0 - type: Transform -- uid: 1751 - type: CableApcExtension - components: - - pos: -6.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1752 - type: CableApcExtension - components: - - pos: -9.5,32.5 - parent: 0 - type: Transform -- uid: 1753 - type: CableApcExtension - components: - - pos: -9.5,33.5 - parent: 0 - type: Transform -- uid: 1754 - type: CableApcExtension - components: - - pos: -12.5,30.5 - parent: 0 - type: Transform -- uid: 1755 - type: CableApcExtension - components: - - pos: -13.5,30.5 - parent: 0 - type: Transform -- uid: 1756 - type: CableApcExtension - components: - - pos: -14.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1757 - type: CableApcExtension - components: - - pos: -14.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1758 - type: CableApcExtension - components: - - pos: -15.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1759 - type: CableApcExtension - components: - - pos: -16.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1760 - type: CableApcExtension - components: - - pos: -12.5,26.5 - parent: 0 - type: Transform -- uid: 1761 - type: CableApcExtension - components: - - pos: -13.5,26.5 - parent: 0 - type: Transform -- uid: 1762 - type: CableApcExtension - components: - - pos: -14.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1763 - type: CableApcExtension - components: - - pos: -15.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1764 - type: CableApcExtension - components: - - pos: -16.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1765 - type: CableApcExtension - components: - - pos: -12.5,23.5 - parent: 0 - type: Transform -- uid: 1766 - type: CableApcExtension - components: - - pos: -13.5,23.5 - parent: 0 - type: Transform -- uid: 1767 - type: CableApcExtension - components: - - pos: -14.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1768 - type: CableApcExtension - components: - - pos: -15.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1769 - type: CableApcExtension - components: - - pos: -16.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1770 - type: CableApcExtension - components: - - pos: -14.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1771 - type: CableApcExtension - components: - - pos: -14.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1772 - type: CableApcExtension - components: - - pos: -14.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1773 - type: CableApcExtension - components: - - pos: -10.5,23.5 - parent: 0 - type: Transform -- uid: 1774 - type: CableApcExtension - components: - - pos: -9.5,23.5 - parent: 0 - type: Transform -- uid: 1775 - type: CableApcExtension - components: - - pos: -8.5,23.5 - parent: 0 - type: Transform -- uid: 1776 - type: CableApcExtension - components: - - pos: -7.5,23.5 - parent: 0 - type: Transform -- uid: 1777 - type: CableApcExtension - components: - - pos: -6.5,23.5 - parent: 0 - type: Transform -- uid: 1778 - type: CableApcExtension - components: - - pos: -6.5,20.5 - parent: 0 - type: Transform -- uid: 1779 - type: CableApcExtension - components: - - pos: -6.5,21.5 - parent: 0 - type: Transform -- uid: 1780 - type: CableApcExtension - components: - - pos: -6.5,22.5 - parent: 0 - type: Transform -- uid: 1781 - type: CableApcExtension - components: - - pos: -6.5,24.5 - parent: 0 - type: Transform -- uid: 1782 - type: CableApcExtension - components: - - pos: -6.5,25.5 - parent: 0 - type: Transform -- uid: 1783 - type: CableApcExtension - components: - - pos: -6.5,26.5 - parent: 0 - type: Transform -- uid: 1784 - type: CableApcExtension - components: - - pos: -6.5,27.5 - parent: 0 - type: Transform -- uid: 1785 - type: CableApcExtension - components: - - pos: -6.5,28.5 - parent: 0 - type: Transform -- uid: 1786 - type: CableApcExtension - components: - - pos: -6.5,29.5 - parent: 0 - type: Transform -- uid: 1787 - type: CableApcExtension - components: - - pos: -6.5,30.5 - parent: 0 - type: Transform -- uid: 1788 - type: CableApcExtension - components: - - pos: -7.5,27.5 - parent: 0 - type: Transform -- uid: 1789 - type: CableApcExtension - components: - - pos: -8.5,27.5 - parent: 0 - type: Transform -- uid: 1790 - type: CableApcExtension - components: - - pos: -9.5,27.5 - parent: 0 - type: Transform -- uid: 1791 - type: CableApcExtension - components: - - pos: -10.5,27.5 - parent: 0 - type: Transform -- uid: 1792 - type: SignSpace - components: - - pos: -15.5,23.5 - parent: 0 - type: Transform -- uid: 1793 - type: SignSpace - components: - - pos: -15.5,29.5 - parent: 0 - type: Transform -- uid: 1794 - type: WallRiveted - components: - - pos: 3.5,22.5 - parent: 0 - type: Transform -- uid: 1795 - type: WallRiveted - components: - - pos: 2.5,22.5 - parent: 0 - type: Transform -- uid: 1796 - type: WallRiveted - components: - - pos: 1.5,22.5 - parent: 0 - type: Transform -- uid: 1797 - type: WallRiveted - components: - - pos: 0.5,22.5 - parent: 0 - type: Transform -- uid: 1798 - type: WallRiveted - components: - - pos: 0.5,23.5 - parent: 0 - type: Transform -- uid: 1799 - type: WallRiveted - components: - - pos: -1.5,22.5 - parent: 0 - type: Transform -- uid: 1800 - type: WallRiveted - components: - - pos: -2.5,22.5 - parent: 0 - type: Transform -- uid: 1801 - type: WallRiveted - components: - - pos: -3.5,22.5 - parent: 0 - type: Transform -- uid: 1802 - type: SubstationBasic - components: - - pos: -3.5,20.5 - parent: 0 - type: Transform -- uid: 1803 - type: SubstationBasic - components: - - pos: 2.5,20.5 - parent: 0 - type: Transform -- uid: 1804 - type: SignalButton - components: - - pos: -2.5,19.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1552 - type: SignalTransmitter -- uid: 1805 - type: CableMV - components: - - pos: -3.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1806 - type: CableMV - components: - - pos: -3.5,21.5 - parent: 0 - type: Transform -- uid: 1807 - type: CableMV - components: - - pos: -4.5,21.5 - parent: 0 - type: Transform -- uid: 1808 - type: CableMV - components: - - pos: -5.5,21.5 - parent: 0 - type: Transform -- uid: 1809 - type: CableMV - components: - - pos: -5.5,20.5 - parent: 0 - type: Transform -- uid: 1810 - type: CableMV - components: - - pos: -5.5,19.5 - parent: 0 - type: Transform -- uid: 1811 - type: CableMV - components: - - pos: -4.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1812 - type: CableMV - components: - - pos: -6.5,19.5 - parent: 0 - type: Transform -- uid: 1813 - type: CableMV - components: - - pos: -6.5,18.5 - parent: 0 - type: Transform -- uid: 1814 - type: CableMV - components: - - pos: -6.5,17.5 - parent: 0 - type: Transform -- uid: 1815 - type: CableMV - components: - - pos: -5.5,17.5 - parent: 0 - type: Transform -- uid: 1816 - type: CableMV - components: - - pos: -4.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1817 - type: CableMV - components: - - pos: -6.5,16.5 - parent: 0 - type: Transform -- uid: 1818 - type: CableMV - components: - - pos: -6.5,15.5 - parent: 0 - type: Transform -- uid: 1819 - type: CableMV - components: - - pos: -6.5,14.5 - parent: 0 - type: Transform -- uid: 1820 - type: CableMV - components: - - pos: -6.5,13.5 - parent: 0 - type: Transform -- uid: 1821 - type: CableMV - components: - - pos: -6.5,12.5 - parent: 0 - type: Transform -- uid: 1822 - type: CableMV - components: - - pos: -7.5,12.5 - parent: 0 - type: Transform -- uid: 1823 - type: CableMV - components: - - pos: -8.5,12.5 - parent: 0 - type: Transform -- uid: 1824 - type: CableMV - components: - - pos: -8.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1825 - type: CableMV - components: - - pos: -5.5,12.5 - parent: 0 - type: Transform -- uid: 1826 - type: CableMV - components: - - pos: -5.5,11.5 - parent: 0 - type: Transform -- uid: 1827 - type: CableMV - components: - - pos: -4.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1828 - type: CableMV - components: - - pos: -7.5,19.5 - parent: 0 - type: Transform -- uid: 1829 - type: CableMV - components: - - pos: -8.5,19.5 - parent: 0 - type: Transform -- uid: 1830 - type: CableMV - components: - - pos: -9.5,19.5 - parent: 0 - type: Transform -- uid: 1831 - type: CableMV - components: - - pos: -10.5,19.5 - parent: 0 - type: Transform -- uid: 1832 - type: CableMV - components: - - pos: -10.5,18.5 - parent: 0 - type: Transform -- uid: 1833 - type: CableMV - components: - - pos: -10.5,17.5 - parent: 0 - type: Transform -- uid: 1834 - type: CableMV - components: - - pos: -11.5,17.5 - parent: 0 - type: Transform -- uid: 1835 - type: CableMV - components: - - pos: -12.5,17.5 - parent: 0 - type: Transform -- uid: 1836 - type: CableMV - components: - - pos: -13.5,17.5 - parent: 0 - type: Transform -- uid: 1837 - type: CableMV - components: - - pos: -14.5,17.5 - parent: 0 - type: Transform -- uid: 1838 - type: CableMV - components: - - pos: -14.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1839 - type: CableMV - components: - - pos: 2.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1840 - type: CableMV - components: - - pos: 1.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1841 - type: CableMV - components: - - pos: 0.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1842 - type: CableMV - components: - - pos: -0.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1843 - type: CableMV - components: - - pos: -0.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1844 - type: CableMV - components: - - pos: -0.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1845 - type: CableMV - components: - - pos: -0.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1846 - type: CableMV - components: - - pos: -0.5,16.5 - parent: 0 - type: Transform -- uid: 1847 - type: CableMV - components: - - pos: -0.5,15.5 - parent: 0 - type: Transform -- uid: 1848 - type: CableMV - components: - - pos: -0.5,14.5 - parent: 0 - type: Transform -- uid: 1849 - type: CableMV - components: - - pos: -0.5,13.5 - parent: 0 - type: Transform -- uid: 1850 - type: CableMV - components: - - pos: -0.5,12.5 - parent: 0 - type: Transform -- uid: 1851 - type: CableMV - components: - - pos: -0.5,11.5 - parent: 0 - type: Transform -- uid: 1852 - type: CableMV - components: - - pos: -0.5,10.5 - parent: 0 - type: Transform -- uid: 1853 - type: CableMV - components: - - pos: -0.5,9.5 - parent: 0 - type: Transform -- uid: 1854 - type: CableMV - components: - - pos: -0.5,8.5 - parent: 0 - type: Transform -- uid: 1855 - type: CableMV - components: - - pos: -0.5,7.5 - parent: 0 - type: Transform -- uid: 1856 - type: CableMV - components: - - pos: -0.5,6.5 - parent: 0 - type: Transform -- uid: 1857 - type: CableMV - components: - - pos: -0.5,5.5 - parent: 0 - type: Transform -- uid: 1858 - type: CableMV - components: - - pos: -0.5,4.5 - parent: 0 - type: Transform -- uid: 1859 - type: CableMV - components: - - pos: -1.5,4.5 - parent: 0 - type: Transform -- uid: 1860 - type: CableMV - components: - - pos: -2.5,4.5 - parent: 0 - type: Transform -- uid: 1861 - type: PosterLegitNanotrasenLogo - components: - - pos: -2.5,5.5 - parent: 0 - type: Transform -- uid: 1862 - type: CableMV - components: - - pos: -2.5,3.5 - parent: 0 - type: Transform -- uid: 1863 - type: CableMV - components: - - pos: -2.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1864 - type: CableHV - components: - - pos: -3.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1865 - type: CableHV - components: - - pos: -2.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1866 - type: CableHV - components: - - pos: -1.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1867 - type: CableHV - components: - - pos: -0.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1868 - type: CableHV - components: - - pos: 0.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1869 - type: CableHV - components: - - pos: 1.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1870 - type: CableHV - components: - - pos: 2.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1871 - type: CableHV - components: - - pos: -0.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1872 - type: CableHV - components: - - pos: -0.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1873 - type: CableHV - components: - - pos: -0.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1874 - type: CableHV - components: - - pos: -0.5,16.5 - parent: 0 - type: Transform -- uid: 1875 - type: CableHV - components: - - pos: -0.5,15.5 - parent: 0 - type: Transform -- uid: 1876 - type: CableHV - components: - - pos: -0.5,14.5 - parent: 0 - type: Transform -- uid: 1877 - type: CableHV - components: - - pos: -0.5,13.5 - parent: 0 - type: Transform -- uid: 1878 - type: CableHV - components: - - pos: -0.5,12.5 - parent: 0 - type: Transform -- uid: 1879 - type: CableHV - components: - - pos: -0.5,11.5 - parent: 0 - type: Transform -- uid: 1880 - type: CableHV - components: - - pos: -0.5,10.5 - parent: 0 - type: Transform -- uid: 1881 - type: CableHV - components: - - pos: -0.5,9.5 - parent: 0 - type: Transform -- uid: 1882 - type: CableHV - components: - - pos: -0.5,8.5 - parent: 0 - type: Transform -- uid: 1883 - type: CableHV - components: - - pos: -0.5,7.5 - parent: 0 - type: Transform -- uid: 1884 - type: CableHV - components: - - pos: -0.5,6.5 - parent: 0 - type: Transform -- uid: 1885 - type: CableHV - components: - - pos: -0.5,5.5 - parent: 0 - type: Transform -- uid: 1886 - type: CableHV - components: - - pos: -0.5,4.5 - parent: 0 - type: Transform -- uid: 1887 - type: CableHV - components: - - pos: -0.5,3.5 - parent: 0 - type: Transform -- uid: 1888 - type: CableHV - components: - - pos: 0.5,3.5 - parent: 0 - type: Transform -- uid: 1889 - type: CableHV - components: - - pos: 1.5,3.5 - parent: 0 - type: Transform -- uid: 1890 - type: CableHV - components: - - pos: 2.5,3.5 - parent: 0 - type: Transform -- uid: 1891 - type: CableHV - components: - - pos: 3.5,3.5 - parent: 0 - type: Transform -- uid: 1892 - type: CableHV - components: - - pos: 4.5,3.5 - parent: 0 - type: Transform -- uid: 1893 - type: CableHV - components: - - pos: 4.5,2.5 - parent: 0 - type: Transform -- uid: 1894 - type: CableHV - components: - - pos: 4.5,1.5 - parent: 0 - type: Transform -- uid: 1895 - type: CableHV - components: - - pos: 4.5,0.5 - parent: 0 - type: Transform -- uid: 1896 - type: CableHV - components: - - pos: 4.5,-0.5 - parent: 0 - type: Transform -- uid: 1897 - type: CableHV - components: - - pos: 17.5,-12.5 - parent: 0 - type: Transform -- uid: 1898 - type: CableHV - components: - - pos: 17.5,-11.5 - parent: 0 - type: Transform -- uid: 1899 - type: CableHV - components: - - pos: 16.5,-11.5 - parent: 0 - type: Transform -- uid: 1900 - type: CableHV - components: - - pos: 15.5,-11.5 - parent: 0 - type: Transform -- uid: 1901 - type: CableHV - components: - - pos: 14.5,-11.5 - parent: 0 - type: Transform -- uid: 1902 - type: CableHV - components: - - pos: 13.5,-11.5 - parent: 0 - type: Transform -- uid: 1903 - type: CableHV - components: - - pos: 12.5,-11.5 - parent: 0 - type: Transform -- uid: 1904 - type: CableHV - components: - - pos: 11.5,-11.5 - parent: 0 - type: Transform -- uid: 1905 - type: CableHV - components: - - pos: 10.5,-11.5 - parent: 0 - type: Transform -- uid: 1906 - type: CableHV - components: - - pos: 9.5,-11.5 - parent: 0 - type: Transform -- uid: 1907 - type: CableHV - components: - - pos: 8.5,-11.5 - parent: 0 - type: Transform -- uid: 1908 - type: CableHV - components: - - pos: 7.5,-11.5 - parent: 0 - type: Transform -- uid: 1909 - type: CableHV - components: - - pos: 6.5,-11.5 - parent: 0 - type: Transform -- uid: 1910 - type: CableHV - components: - - pos: 5.5,-11.5 - parent: 0 - type: Transform -- uid: 1911 - type: CableHV - components: - - pos: 4.5,-11.5 - parent: 0 - type: Transform -- uid: 1912 - type: CableHV - components: - - pos: 3.5,-11.5 - parent: 0 - type: Transform -- uid: 1913 - type: CableHV - components: - - pos: 2.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1914 - type: CableHV - components: - - pos: 1.5,-11.5 - parent: 0 - type: Transform -- uid: 1915 - type: CableHV - components: - - pos: 0.5,-11.5 - parent: 0 - type: Transform -- uid: 1916 - type: CableHV - components: - - pos: -0.5,-11.5 - parent: 0 - type: Transform -- uid: 1917 - type: CableHV - components: - - pos: -0.5,-10.5 - parent: 0 - type: Transform -- uid: 1918 - type: CableHV - components: - - pos: -0.5,-9.5 - parent: 0 - type: Transform -- uid: 1919 - type: CableHV - components: - - pos: -0.5,-8.5 - parent: 0 - type: Transform -- uid: 1920 - type: CableHV - components: - - pos: -0.5,-7.5 - parent: 0 - type: Transform -- uid: 1921 - type: CableHV - components: - - pos: -0.5,-6.5 - parent: 0 - type: Transform -- uid: 1922 - type: CableHV - components: - - pos: -1.5,-5.5 - parent: 0 - type: Transform -- uid: 1923 - type: CableHV - components: - - pos: -0.5,-4.5 - parent: 0 - type: Transform -- uid: 1924 - type: CableHV - components: - - pos: 0.5,-4.5 - parent: 0 - type: Transform -- uid: 1925 - type: CableHV - components: - - pos: 1.5,-4.5 - parent: 0 - type: Transform -- uid: 1926 - type: CableHV - components: - - pos: 2.5,-4.5 - parent: 0 - type: Transform -- uid: 1927 - type: CableHV - components: - - pos: 3.5,-4.5 - parent: 0 - type: Transform -- uid: 1928 - type: CableHV - components: - - pos: 4.5,-4.5 - parent: 0 - type: Transform -- uid: 1929 - type: CableHV - components: - - pos: 4.5,-3.5 - parent: 0 - type: Transform -- uid: 1930 - type: CableHV - components: - - pos: 4.5,-2.5 - parent: 0 - type: Transform -- uid: 1931 - type: CableHV - components: - - pos: 4.5,-1.5 - parent: 0 - type: Transform -- uid: 1932 - type: CableHV - components: - - pos: 17.5,-10.5 - parent: 0 - type: Transform -- uid: 1933 - type: CableHV - components: - - pos: 17.5,-9.5 - parent: 0 - type: Transform -- uid: 1934 - type: CableHV - components: - - pos: 17.5,-8.5 - parent: 0 - type: Transform -- uid: 1935 - type: CableHV - components: - - pos: 17.5,-7.5 - parent: 0 - type: Transform -- uid: 1936 - type: CableHV - components: - - pos: 17.5,-6.5 - parent: 0 - type: Transform -- uid: 1937 - type: CableHV - components: - - pos: 16.5,-6.5 - parent: 0 - type: Transform -- uid: 1938 - type: CableHV - components: - - pos: 15.5,-6.5 - parent: 0 - type: Transform -- uid: 1939 - type: CableHV - components: - - pos: 14.5,-6.5 - parent: 0 - type: Transform -- uid: 1940 - type: CableHV - components: - - pos: 13.5,-6.5 - parent: 0 - type: Transform -- uid: 1941 - type: CableHV - components: - - pos: 12.5,-6.5 - parent: 0 - type: Transform -- uid: 1942 - type: CableHV - components: - - pos: 12.5,-5.5 - parent: 0 - type: Transform -- uid: 1943 - type: CableHV - components: - - pos: 12.5,-4.5 - parent: 0 - type: Transform -- uid: 1944 - type: CableHV - components: - - pos: 12.5,-3.5 - parent: 0 - type: Transform -- uid: 1945 - type: CableHV - components: - - pos: 12.5,-2.5 - parent: 0 - type: Transform -- uid: 1946 - type: CableHV - components: - - pos: 12.5,-1.5 - parent: 0 - type: Transform -- uid: 1947 - type: CableHV - components: - - pos: 12.5,-0.5 - parent: 0 - type: Transform -- uid: 1948 - type: CableHV - components: - - pos: 11.5,-0.5 - parent: 0 - type: Transform -- uid: 1949 - type: CableHV - components: - - pos: 10.5,-0.5 - parent: 0 - type: Transform -- uid: 1950 - type: CableHV - components: - - pos: 9.5,-0.5 - parent: 0 - type: Transform -- uid: 1951 - type: CableHV - components: - - pos: 8.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1952 - type: CableHV - components: - - pos: 7.5,-0.5 - parent: 0 - type: Transform -- uid: 1953 - type: CableHV - components: - - pos: 6.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1954 - type: CableHV - components: - - pos: 5.5,-0.5 - parent: 0 - type: Transform -- uid: 1955 - type: APCBasic - components: - - pos: 1.5,17.5 - parent: 0 - type: Transform -- uid: 1956 - type: CableApcExtension - components: - - pos: 1.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1957 - type: CableApcExtension - components: - - pos: 1.5,16.5 - parent: 0 - type: Transform -- uid: 1958 - type: CableApcExtension - components: - - pos: 1.5,15.5 - parent: 0 - type: Transform -- uid: 1959 - type: CableApcExtension - components: - - pos: 1.5,14.5 - parent: 0 - type: Transform -- uid: 1960 - type: CableApcExtension - components: - - pos: 1.5,13.5 - parent: 0 - type: Transform -- uid: 1961 - type: CableApcExtension - components: - - pos: 1.5,12.5 - parent: 0 - type: Transform -- uid: 1962 - type: CableApcExtension - components: - - pos: 1.5,11.5 - parent: 0 - type: Transform -- uid: 1963 - type: CableApcExtension - components: - - pos: 1.5,10.5 - parent: 0 - type: Transform -- uid: 1964 - type: CableApcExtension - components: - - pos: 1.5,9.5 - parent: 0 - type: Transform -- uid: 1965 - type: CableApcExtension - components: - - pos: 1.5,8.5 - parent: 0 - type: Transform -- uid: 1966 - type: CableApcExtension - components: - - pos: 2.5,8.5 - parent: 0 - type: Transform -- uid: 1967 - type: CableApcExtension - components: - - pos: 3.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1968 - type: CableApcExtension - components: - - pos: 2.5,10.5 - parent: 0 - type: Transform -- uid: 1969 - type: CableApcExtension - components: - - pos: 3.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1970 - type: CableApcExtension - components: - - pos: 2.5,12.5 - parent: 0 - type: Transform -- uid: 1971 - type: CableApcExtension - components: - - pos: 3.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1972 - type: CableApcExtension - components: - - pos: 2.5,14.5 - parent: 0 - type: Transform -- uid: 1973 - type: CableApcExtension - components: - - pos: 3.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1974 - type: CableApcExtension - components: - - pos: 2.5,16.5 - parent: 0 - type: Transform -- uid: 1975 - type: CableApcExtension - components: - - pos: 3.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1976 - type: CableApcExtension - components: - - pos: 2.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1977 - type: CableApcExtension - components: - - pos: -3.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1978 - type: CableApcExtension - components: - - pos: 0.5,15.5 - parent: 0 - type: Transform -- uid: 1979 - type: CableApcExtension - components: - - pos: -0.5,15.5 - parent: 0 - type: Transform -- uid: 1980 - type: CableApcExtension - components: - - pos: -1.5,15.5 - parent: 0 - type: Transform -- uid: 1981 - type: CableApcExtension - components: - - pos: -2.5,15.5 - parent: 0 - type: Transform -- uid: 1982 - type: CableApcExtension - components: - - pos: -2.5,14.5 - parent: 0 - type: Transform -- uid: 1983 - type: CableApcExtension - components: - - pos: -2.5,13.5 - parent: 0 - type: Transform -- uid: 1984 - type: CableApcExtension - components: - - pos: -2.5,12.5 - parent: 0 - type: Transform -- uid: 1985 - type: CableApcExtension - components: - - pos: -2.5,11.5 - parent: 0 - type: Transform -- uid: 1986 - type: CableApcExtension - components: - - pos: -2.5,10.5 - parent: 0 - type: Transform -- uid: 1987 - type: CableApcExtension - components: - - pos: -2.5,9.5 - parent: 0 - type: Transform -- uid: 1988 - type: CableApcExtension - components: - - pos: -2.5,8.5 - parent: 0 - type: Transform -- uid: 1989 - type: CableApcExtension - components: - - pos: -1.5,8.5 - parent: 0 - type: Transform -- uid: 1990 - type: CableApcExtension - components: - - pos: -1.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1991 - type: CableApcExtension - components: - - pos: 0.5,8.5 - parent: 0 - type: Transform -- uid: 1992 - type: CableApcExtension - components: - - pos: 0.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1993 - type: CableApcExtension - components: - - pos: -0.5,8.5 - parent: 0 - type: Transform -- uid: 1994 - type: WallRiveted - components: - - pos: 4.5,15.5 - parent: 0 - type: Transform -- uid: 1995 - type: WallRiveted - components: - - pos: 5.5,15.5 - parent: 0 - type: Transform -- uid: 1996 - type: WallRiveted - components: - - pos: 5.5,16.5 - parent: 0 - type: Transform -- uid: 1997 - type: WallRiveted - components: - - pos: 5.5,17.5 - parent: 0 - type: Transform -- uid: 1998 - type: WallRiveted - components: - - pos: 4.5,17.5 - parent: 0 - type: Transform -- uid: 1999 - type: ReinforcedWindow - components: - - pos: 5.5,10.5 - parent: 0 - type: Transform -- uid: 2000 - type: ReinforcedWindow - components: - - pos: 5.5,12.5 - parent: 0 - type: Transform -- uid: 2001 - type: ReinforcedWindow - components: - - pos: 5.5,14.5 - parent: 0 - type: Transform -- uid: 2002 - type: Grille - components: - - pos: 5.5,10.5 - parent: 0 - type: Transform -- uid: 2003 - type: Grille - components: - - pos: 5.5,12.5 - parent: 0 - type: Transform -- uid: 2004 - type: Grille - components: - - pos: 5.5,14.5 - parent: 0 - type: Transform -- uid: 2005 - type: WallRiveted - components: - - pos: 0.5,24.5 - parent: 0 - type: Transform -- uid: 2006 - type: WallRiveted - components: - - pos: 0.5,25.5 - parent: 0 - type: Transform -- uid: 2007 - type: WallRiveted - components: - - pos: -0.5,25.5 - parent: 0 - type: Transform -- uid: 2008 - type: WallRiveted - components: - - pos: -1.5,25.5 - parent: 0 - type: Transform -- uid: 2009 - type: WallRiveted - components: - - pos: -3.5,25.5 - parent: 0 - type: Transform -- uid: 2010 - type: AirlockExternalGlassLocked - components: - - pos: -0.5,22.5 - parent: 0 - type: Transform -- uid: 2011 - type: AirlockExternalLocked - components: - - pos: -2.5,25.5 - parent: 0 - type: Transform -- uid: 2012 - type: AtmosDeviceFanTiny - components: - - pos: -2.5,25.5 - parent: 0 - type: Transform -- uid: 2013 - type: APCBasic - components: - - pos: -1.5,22.5 - parent: 0 - type: Transform -- uid: 2014 - type: CableMV - components: - - pos: 0.5,16.5 - parent: 0 - type: Transform -- uid: 2015 - type: CableMV - components: - - pos: 1.5,16.5 - parent: 0 - type: Transform -- uid: 2016 - type: CableMV - components: - - pos: 1.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2017 - type: CableMV - components: - - pos: -0.5,21.5 - parent: 0 - type: Transform -- uid: 2018 - type: CableMV - components: - - pos: -1.5,21.5 - parent: 0 - type: Transform -- uid: 2019 - type: CableMV - components: - - pos: -1.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2020 - type: CableApcExtension - components: - - pos: -1.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2021 - type: CableApcExtension - components: - - pos: -1.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2022 - type: CableApcExtension - components: - - pos: -1.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2023 - type: CableApcExtension - components: - - pos: -2.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2024 - type: CableApcExtension - components: - - pos: -1.5,21.5 - parent: 0 - type: Transform -- uid: 2025 - type: CableApcExtension - components: - - pos: -1.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2026 - type: CableApcExtension - components: - - pos: -0.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2027 - type: CableApcExtension - components: - - pos: -0.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2028 - type: CableApcExtension - components: - - pos: -0.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2029 - type: CableApcExtension - components: - - pos: 0.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2030 - type: CableApcExtension - components: - - pos: 1.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2031 - type: CableApcExtension - components: - - pos: -2.5,21.5 - parent: 0 - type: Transform -- uid: 2032 - type: Catwalk - components: - - pos: -0.5,18.5 - parent: 0 - type: Transform -- uid: 2033 - type: Catwalk - components: - - pos: -0.5,19.5 - parent: 0 - type: Transform -- uid: 2034 - type: Catwalk - components: - - pos: -0.5,20.5 - parent: 0 - type: Transform -- uid: 2035 - type: Catwalk - components: - - pos: 0.5,20.5 - parent: 0 - type: Transform -- uid: 2036 - type: Catwalk - components: - - pos: 1.5,20.5 - parent: 0 - type: Transform -- uid: 2037 - type: Catwalk - components: - - pos: -1.5,20.5 - parent: 0 - type: Transform -- uid: 2038 - type: Catwalk - components: - - pos: -2.5,20.5 - parent: 0 - type: Transform -- uid: 2039 - type: LockerElectricalSuppliesFilled - components: - - pos: 2.5,21.5 - parent: 0 - type: Transform -- uid: 2040 - type: LockerWeldingSuppliesFilled - components: - - pos: 0.5,19.5 - parent: 0 - type: Transform -- uid: 2041 - type: WeldingFuelTankFull - components: - - pos: 0.5,18.5 - parent: 0 - type: Transform -- uid: 2042 - type: WaterTankFull - components: - - pos: -1.5,18.5 - parent: 0 - type: Transform -- uid: 2043 - type: Table - components: - - pos: -1.5,19.5 - parent: 0 - type: Transform -- uid: 2044 - type: ClosetEmergencyFilledRandom - components: - - pos: -3.5,24.5 - parent: 0 - type: Transform -- uid: 2045 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,23.5 - parent: 0 - type: Transform -- uid: 2046 - type: Catwalk - components: - - pos: -0.5,23.5 - parent: 0 - type: Transform -- uid: 2047 - type: Catwalk - components: - - pos: -1.5,23.5 - parent: 0 - type: Transform -- uid: 2048 - type: Catwalk - components: - - pos: -2.5,23.5 - parent: 0 - type: Transform -- uid: 2049 - type: Catwalk - components: - - pos: -2.5,24.5 - parent: 0 - type: Transform -- uid: 2050 - type: PoweredSmallLight - components: - - pos: -1.5,24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2051 - type: PoweredSmallLight - components: - - pos: -2.5,21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2052 - type: PoweredSmallLight - components: - - pos: 1.5,21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2053 - type: PosterLegitNanotrasenLogo - components: - - pos: 1.5,5.5 - parent: 0 - type: Transform -- uid: 2054 - type: PosterLegitNanotrasenLogo - components: - - pos: -2.5,7.5 - parent: 0 - type: Transform -- uid: 2055 - type: PosterLegitNanotrasenLogo - components: - - pos: 1.5,7.5 - parent: 0 - type: Transform -- uid: 2056 - type: CableMV - components: - - pos: -3.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2057 - type: CableApcExtension - components: - - pos: -3.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2058 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -9.5,14.5 - parent: 0 - type: Transform -- uid: 2059 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -10.5,14.5 - parent: 0 - type: Transform -- uid: 2060 - type: DisposalPipe - components: - - pos: -10.5,13.5 - parent: 0 - type: Transform -- uid: 2061 - type: DisposalPipe - components: - - pos: -10.5,12.5 - parent: 0 - type: Transform -- uid: 2062 - type: DisposalPipe - components: - - pos: -10.5,11.5 - parent: 0 - type: Transform -- uid: 2063 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,10.5 - parent: 0 - type: Transform -- uid: 2064 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,10.5 - parent: 0 - type: Transform -- uid: 2065 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,10.5 - parent: 0 - type: Transform -- uid: 2066 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 0 - type: Transform -- uid: 2067 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,9.5 - parent: 0 - type: Transform -- uid: 2068 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,8.5 - parent: 0 - type: Transform -- uid: 2069 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,7.5 - parent: 0 - type: Transform -- uid: 2070 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 0 - type: Transform -- uid: 2071 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,5.5 - parent: 0 - type: Transform -- uid: 2072 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,4.5 - parent: 0 - type: Transform -- uid: 2073 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -10.5,10.5 - parent: 0 - type: Transform -- uid: 2074 - type: DisposalBend - components: - - pos: -5.5,10.5 - parent: 0 - type: Transform -- uid: 2075 - type: DisposalTrunk - components: - - pos: -3.5,1.5 - parent: 0 - type: Transform -- uid: 2076 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -3.5,0.5 - parent: 0 - type: Transform -- uid: 2077 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 0 - type: Transform -- uid: 2078 - type: DisposalPipe - components: - - pos: -5.5,1.5 - parent: 0 - type: Transform -- uid: 2079 - type: DisposalPipe - components: - - pos: -5.5,2.5 - parent: 0 - type: Transform -- uid: 2080 - type: DisposalJunctionFlipped - components: - - pos: -5.5,3.5 - parent: 0 - type: Transform -- uid: 2081 - type: DisposalJunctionFlipped - components: - - pos: -5.5,0.5 - parent: 0 - type: Transform -- uid: 2082 - type: DisposalJunction - components: - - pos: -5.5,-0.5 - parent: 0 - type: Transform -- uid: 2083 - type: DisposalPipe - components: - - pos: -5.5,-1.5 - parent: 0 - type: Transform -- uid: 2084 - type: DisposalPipe - components: - - pos: -5.5,-2.5 - parent: 0 - type: Transform -- uid: 2085 - type: DisposalPipe - components: - - pos: -5.5,-3.5 - parent: 0 - type: Transform -- uid: 2086 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 0 - type: Transform -- uid: 2087 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 0 - type: Transform -- uid: 2088 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 0 - type: Transform -- uid: 2089 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 0 - type: Transform -- uid: 2090 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 0 - type: Transform -- uid: 2091 - type: DisposalBend - components: - - pos: -0.5,-4.5 - parent: 0 - type: Transform -- uid: 2092 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 31.5,-6.5 - parent: 0 - type: Transform -- uid: 2093 - type: DisposalBend - components: - - pos: 31.5,-5.5 - parent: 0 - type: Transform -- uid: 2094 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 0 - type: Transform -- uid: 2095 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-5.5 - parent: 0 - type: Transform -- uid: 2096 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 0 - type: Transform -- uid: 2097 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-5.5 - parent: 0 - type: Transform -- uid: 2098 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 0 - type: Transform -- uid: 2099 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-5.5 - parent: 0 - type: Transform -- uid: 2100 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 0 - type: Transform -- uid: 2101 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 0 - type: Transform -- uid: 2102 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 0 - type: Transform -- uid: 2103 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-5.5 - parent: 0 - type: Transform -- uid: 2104 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 20.5,-4.5 - parent: 0 - type: Transform -- uid: 2105 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 20.5,-3.5 - parent: 0 - type: Transform -- uid: 2106 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 20.5,-2.5 - parent: 0 - type: Transform -- uid: 2107 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-1.5 - parent: 0 - type: Transform -- uid: 2108 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-1.5 - parent: 0 - type: Transform -- uid: 2109 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-1.5 - parent: 0 - type: Transform -- uid: 2110 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 0 - type: Transform -- uid: 2111 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-1.5 - parent: 0 - type: Transform -- uid: 2112 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-1.5 - parent: 0 - type: Transform -- uid: 2113 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 0 - type: Transform -- uid: 2114 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 0 - type: Transform -- uid: 2115 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 0 - type: Transform -- uid: 2116 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 0 - type: Transform -- uid: 2117 - type: DisposalBend - components: - - pos: 20.5,-1.5 - parent: 0 - type: Transform -- uid: 2118 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 20.5,-5.5 - parent: 0 - type: Transform -- uid: 2119 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 9.5,-2.5 - parent: 0 - type: Transform -- uid: 2120 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 0 - type: Transform -- uid: 2121 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 0 - type: Transform -- uid: 2122 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 0 - type: Transform -- uid: 2123 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 0 - type: Transform -- uid: 2124 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 0 - type: Transform -- uid: 2125 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 0 - type: Transform -- uid: 2126 - type: DisposalPipe - components: - - pos: 4.5,-2.5 - parent: 0 - type: Transform -- uid: 2127 - type: DisposalPipe - components: - - pos: 4.5,-3.5 - parent: 0 - type: Transform -- uid: 2128 - type: DisposalPipe - components: - - pos: 4.5,-4.5 - parent: 0 - type: Transform -- uid: 2129 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 0 - type: Transform -- uid: 2130 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 0 - type: Transform -- uid: 2131 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 0 - type: Transform -- uid: 2132 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 0 - type: Transform -- uid: 2133 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 0 - type: Transform -- uid: 2134 - type: DisposalJunctionFlipped - components: - - pos: -0.5,-5.5 - parent: 0 - type: Transform -- uid: 2135 - type: DisposalPipe - components: - - pos: -0.5,-6.5 - parent: 0 - type: Transform -- uid: 2136 - type: DisposalPipe - components: - - pos: -0.5,-7.5 - parent: 0 - type: Transform -- uid: 2137 - type: DisposalPipe - components: - - pos: -0.5,-8.5 - parent: 0 - type: Transform -- uid: 2138 - type: DisposalPipe - components: - - pos: -0.5,-9.5 - parent: 0 - type: Transform -- uid: 2139 - type: DisposalPipe - components: - - pos: -0.5,-10.5 - parent: 0 - type: Transform -- uid: 2140 - type: DisposalPipe - components: - - pos: -0.5,-11.5 - parent: 0 - type: Transform -- uid: 2141 - type: DisposalPipe - components: - - pos: -0.5,-12.5 - parent: 0 - type: Transform -- uid: 2142 - type: HighSecDoor - components: - - pos: 5.5,11.5 - parent: 0 - type: Transform -- uid: 2143 - type: HighSecDoor - components: - - pos: 5.5,13.5 - parent: 0 - type: Transform -- uid: 2144 - type: HighSecDoor - components: - - pos: 3.5,13.5 - parent: 0 - type: Transform -- uid: 2145 - type: HighSecDoor - components: - - pos: 3.5,11.5 - parent: 0 - type: Transform -- uid: 2146 - type: BlastDoorOpen - components: - - pos: 4.5,10.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2712 - type: SignalReceiver -- uid: 2147 - type: BlastDoorOpen - components: - - pos: 4.5,11.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2712 - type: SignalReceiver -- uid: 2148 - type: BlastDoorOpen - components: - - pos: 4.5,12.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2712 - type: SignalReceiver -- uid: 2149 - type: BlastDoorOpen - components: - - pos: 4.5,13.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2712 - type: SignalReceiver -- uid: 2150 - type: BlastDoorOpen - components: - - pos: 4.5,14.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2712 - type: SignalReceiver -- uid: 2151 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2152 - type: Poweredlight - components: - - pos: -11.5,17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2153 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -14.5,14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2154 - type: Poweredlight - components: - - pos: -8.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2155 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -9.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2156 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2157 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2158 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2159 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2160 - type: PottedPlant21 - components: - - pos: 0.5,16.5 - parent: 0 - type: Transform -- uid: 2161 - type: PottedPlant21 - components: - - pos: -1.5,16.5 - parent: 0 - type: Transform -- uid: 2162 - type: PottedPlant21 - components: - - pos: 2.5,12.5 - parent: 0 - type: Transform -- uid: 2163 - type: Table - components: - - pos: -0.5,12.5 - parent: 0 - type: Transform -- uid: 2164 - type: Table - components: - - pos: -3.5,12.5 - parent: 0 - type: Transform -- uid: 2165 - type: Table - components: - - pos: 2.5,8.5 - parent: 0 - type: Transform -- uid: 2166 - type: Table - components: - - pos: 2.5,16.5 - parent: 0 - type: Transform -- uid: 2167 - type: Rack - components: - - pos: -3.5,16.5 - parent: 0 - type: Transform -- uid: 2168 - type: Chair - components: - - pos: 1.5,16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2169 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 2.5,15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2170 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 2.5,14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2171 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -1.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2172 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -2.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2173 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 1.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2174 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 0.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2175 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 2.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2176 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 2.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2177 - type: DisposalUnit - components: - - pos: -3.5,8.5 - parent: 0 - type: Transform -- uid: 2178 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -3.5,8.5 - parent: 0 - type: Transform -- uid: 2179 - type: DisposalBend - components: - - pos: -0.5,8.5 - parent: 0 - type: Transform -- uid: 2180 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -0.5,3.5 - parent: 0 - type: Transform -- uid: 2181 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 0 - type: Transform -- uid: 2182 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 0 - type: Transform -- uid: 2183 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,6.5 - parent: 0 - type: Transform -- uid: 2184 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,7.5 - parent: 0 - type: Transform -- uid: 2185 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,8.5 - parent: 0 - type: Transform -- uid: 2186 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,8.5 - parent: 0 - type: Transform -- uid: 2187 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,3.5 - parent: 0 - type: Transform -- uid: 2188 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 0 - type: Transform -- uid: 2189 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 0 - type: Transform -- uid: 2190 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 0 - type: Transform -- uid: 2191 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,11.5 - parent: 0 - type: Transform -- uid: 2192 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,13.5 - parent: 0 - type: Transform -- uid: 2193 - type: PottedPlant22 - components: - - pos: -2.5,16.5 - parent: 0 - type: Transform -- uid: 2194 - type: ComfyChair - components: - - pos: -0.5,24.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2195 - type: Rack - components: - - pos: -1.5,24.5 - parent: 0 - type: Transform -- uid: 2196 - type: WelderIndustrialAdvanced - components: - - pos: -1.3562617,24.407354 - parent: 0 - type: Transform -- uid: 2197 - type: ClothingHeadHatWelding - components: - - pos: -1.4187617,24.501104 - parent: 0 - type: Transform -- uid: 2198 - type: WeaponRevolverMateba - components: - - pos: 5.504429,32.55603 - parent: 0 - type: Transform -- uid: 2199 - type: WeaponPulsePistol - components: - - pos: 2.4486532,30.58716 - parent: 0 - type: Transform -- uid: 2200 - type: Rack - components: - - pos: 15.5,30.5 - parent: 0 - type: Transform -- uid: 2201 - type: Rack - components: - - pos: 3.5,30.5 - parent: 0 - type: Transform -- uid: 2202 - type: WeaponPulseCarbine - components: - - pos: 6.5531197,32.415283 - parent: 0 - type: Transform -- uid: 2203 - type: WeaponPulseCarbine - components: - - pos: 6.5062447,32.64966 - parent: 0 - type: Transform -- uid: 2204 - type: WeaponRevolverMateba - components: - - pos: 13.676304,32.384155 - parent: 0 - type: Transform -- uid: 2205 - type: WeaponRevolverMateba - components: - - pos: 13.566929,32.540405 - parent: 0 - type: Transform -- uid: 2206 - type: WeaponRevolverMateba - components: - - pos: 5.613804,32.39978 - parent: 0 - type: Transform -- uid: 2207 - type: SignCargo - components: - - pos: -4.5,13.5 - parent: 0 - type: Transform -- uid: 2208 - type: WardrobeCargoFilled - components: - - pos: -5.5,19.5 - parent: 0 - type: Transform -- uid: 2209 - type: VendingMachineCargoDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,31.5 - parent: 0 - type: Transform -- uid: 2210 - type: Table - components: - - pos: -6.5,31.5 - parent: 0 - type: Transform -- uid: 2211 - type: Table - components: - - pos: -7.5,31.5 - parent: 0 - type: Transform -- uid: 2212 - type: Table - components: - - pos: -5.5,24.5 - parent: 0 - type: Transform -- uid: 2213 - type: Table - components: - - pos: -5.5,25.5 - parent: 0 - type: Transform -- uid: 2214 - type: Table - components: - - pos: -5.5,26.5 - parent: 0 - type: Transform -- uid: 2215 - type: Table - components: - - pos: -11.5,31.5 - parent: 0 - type: Transform -- uid: 2216 - type: Table - components: - - pos: -10.5,31.5 - parent: 0 - type: Transform -- uid: 2217 - type: PoweredSmallLight - components: - - pos: -15.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2218 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -15.5,24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2219 - type: Poweredlight - components: - - pos: -11.5,31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2220 - type: Poweredlight - components: - - pos: -7.5,31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2221 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -8.5,19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2222 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2223 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2224 - type: ClothingMaskGas - components: - - pos: -11.500146,17.576977 - parent: 0 - type: Transform -- uid: 2225 - type: CrowbarRed - components: - - pos: -11.468896,17.467602 - parent: 0 - type: Transform -- uid: 2226 - type: KitchenMicrowave - components: - - pos: -15.5,17.5 - parent: 0 - type: Transform -- uid: 2227 - type: FoodBoxDonkpocketPizza - components: - - pos: -14.517971,17.62628 - parent: 0 - type: Transform -- uid: 2228 - type: HandLabeler - components: - - pos: -14.611721,14.56378 - parent: 0 - type: Transform -- uid: 2229 - type: HandLabeler - components: - - pos: -9.361721,12.50128 - parent: 0 - type: Transform -- uid: 2230 - type: BoxFolderYellow - components: - - pos: -15.424221,14.516905 - parent: 0 - type: Transform -- uid: 2231 - type: BoxFolderYellow - components: - - pos: -8.454054,12.663795 - parent: 0 - type: Transform -- uid: 2232 - type: BoxFolderYellow - components: - - pos: -12.532179,10.67942 - parent: 0 - type: Transform -- uid: 2233 - type: RubberStampTrader - components: - - pos: -12.532179,11.55442 - parent: 0 - type: Transform -- uid: 2234 - type: RubberStampQm - components: - - pos: -12.516554,9.632545 - parent: 0 - type: Transform -- uid: 2235 - type: LockerQuarterMasterFilled - components: - - pos: -8.5,19.5 - parent: 0 - type: Transform -- uid: 2236 - type: BoxFolderBlack - components: - - pos: -8.478459,8.547297 - parent: 0 - type: Transform -- uid: 2237 - type: ExtinguisherCabinetFilled - components: - - pos: 8.5,6.5 - parent: 0 - type: Transform -- uid: 2238 - type: WallRiveted - components: - - pos: 17.5,9.5 - parent: 0 - type: Transform -- uid: 2239 - type: WallRiveted - components: - - pos: 16.5,9.5 - parent: 0 - type: Transform -- uid: 2240 - type: HandLabeler - components: - - pos: -3.4985683,16.513187 - parent: 0 - type: Transform -- uid: 2241 - type: ClothingBeltUtilityFilled - components: - - pos: -9.339353,8.480244 - parent: 0 - type: Transform -- uid: 2242 - type: ReinforcedWindow - components: - - pos: 15.5,10.5 - parent: 0 - type: Transform -- uid: 2243 - type: ReinforcedWindow - components: - - pos: 15.5,12.5 - parent: 0 - type: Transform -- uid: 2244 - type: ReinforcedWindow - components: - - pos: 15.5,14.5 - parent: 0 - type: Transform -- uid: 2245 - type: WallRiveted - components: - - pos: 15.5,15.5 - parent: 0 - type: Transform -- uid: 2246 - type: Grille - components: - - pos: 15.5,14.5 - parent: 0 - type: Transform -- uid: 2247 - type: Grille - components: - - pos: 15.5,12.5 - parent: 0 - type: Transform -- uid: 2248 - type: Grille - components: - - pos: 15.5,10.5 - parent: 0 - type: Transform -- uid: 2249 - type: HighSecDoor - components: - - pos: 15.5,11.5 - parent: 0 - type: Transform -- uid: 2250 - type: HighSecDoor - components: - - pos: 15.5,13.5 - parent: 0 - type: Transform -- uid: 2251 - type: WallRiveted - components: - - pos: 15.5,16.5 - parent: 0 - type: Transform -- uid: 2252 - type: WallRiveted - components: - - pos: 15.5,17.5 - parent: 0 - type: Transform -- uid: 2253 - type: WallRiveted - components: - - pos: 16.5,17.5 - parent: 0 - type: Transform -- uid: 2254 - type: WallRiveted - components: - - pos: 17.5,17.5 - parent: 0 - type: Transform -- uid: 2255 - type: WallRiveted - components: - - pos: 18.5,17.5 - parent: 0 - type: Transform -- uid: 2256 - type: WallRiveted - components: - - pos: 20.5,17.5 - parent: 0 - type: Transform -- uid: 2257 - type: WallRiveted - components: - - pos: 21.5,10.5 - parent: 0 - type: Transform -- uid: 2258 - type: WallRiveted - components: - - pos: 21.5,13.5 - parent: 0 - type: Transform -- uid: 2259 - type: WallRiveted - components: - - pos: 21.5,14.5 - parent: 0 - type: Transform -- uid: 2260 - type: WallRiveted - components: - - pos: 21.5,15.5 - parent: 0 - type: Transform -- uid: 2261 - type: WallRiveted - components: - - pos: 21.5,16.5 - parent: 0 - type: Transform -- uid: 2262 - type: WallRiveted - components: - - pos: 21.5,17.5 - parent: 0 - type: Transform -- uid: 2263 - type: WallRiveted - components: - - pos: 35.5,10.5 - parent: 0 - type: Transform -- uid: 2264 - type: WallRiveted - components: - - pos: 35.5,11.5 - parent: 0 - type: Transform -- uid: 2265 - type: WallRiveted - components: - - pos: 35.5,12.5 - parent: 0 - type: Transform -- uid: 2266 - type: WallRiveted - components: - - pos: 35.5,13.5 - parent: 0 - type: Transform -- uid: 2267 - type: WallRiveted - components: - - pos: 35.5,14.5 - parent: 0 - type: Transform -- uid: 2268 - type: WallRiveted - components: - - pos: 35.5,15.5 - parent: 0 - type: Transform -- uid: 2269 - type: SignDoors - components: - - pos: 5.5,12.5 - parent: 0 - type: Transform -- uid: 2270 - type: SignDoors - components: - - pos: 3.5,12.5 - parent: 0 - type: Transform -- uid: 2271 - type: SignDoors - components: - - pos: 15.5,12.5 - parent: 0 - type: Transform -- uid: 2272 - type: SignDoors - components: - - pos: -1.5,5.5 - parent: 0 - type: Transform -- uid: 2273 - type: SignDoors - components: - - pos: 0.5,7.5 - parent: 0 - type: Transform -- uid: 2274 - type: WallRiveted - components: - - pos: 24.5,14.5 - parent: 0 - type: Transform -- uid: 2275 - type: WallRiveted - components: - - pos: 32.5,14.5 - parent: 0 - type: Transform -- uid: 2276 - type: ReinforcedWindow - components: - - pos: 23.5,14.5 - parent: 0 - type: Transform -- uid: 2277 - type: ReinforcedWindow - components: - - pos: 33.5,14.5 - parent: 0 - type: Transform -- uid: 2278 - type: ReinforcedWindow - components: - - pos: 31.5,14.5 - parent: 0 - type: Transform -- uid: 2279 - type: ReinforcedWindow - components: - - pos: 30.5,14.5 - parent: 0 - type: Transform -- uid: 2280 - type: ReinforcedWindow - components: - - pos: 29.5,14.5 - parent: 0 - type: Transform -- uid: 2281 - type: ReinforcedWindow - components: - - pos: 27.5,14.5 - parent: 0 - type: Transform -- uid: 2282 - type: ReinforcedWindow - components: - - pos: 26.5,14.5 - parent: 0 - type: Transform -- uid: 2283 - type: ReinforcedWindow - components: - - pos: 25.5,14.5 - parent: 0 - type: Transform -- uid: 2284 - type: Grille - components: - - pos: 23.5,14.5 - parent: 0 - type: Transform -- uid: 2285 - type: Grille - components: - - pos: 25.5,14.5 - parent: 0 - type: Transform -- uid: 2286 - type: Grille - components: - - pos: 26.5,14.5 - parent: 0 - type: Transform -- uid: 2287 - type: Grille - components: - - pos: 27.5,14.5 - parent: 0 - type: Transform -- uid: 2288 - type: Grille - components: - - pos: 29.5,14.5 - parent: 0 - type: Transform -- uid: 2289 - type: Grille - components: - - pos: 30.5,14.5 - parent: 0 - type: Transform -- uid: 2290 - type: Grille - components: - - pos: 31.5,14.5 - parent: 0 - type: Transform -- uid: 2291 - type: Grille - components: - - pos: 33.5,14.5 - parent: 0 - type: Transform -- uid: 2292 - type: WallRiveted - components: - - pos: 35.5,16.5 - parent: 0 - type: Transform -- uid: 2293 - type: WallRiveted - components: - - pos: 35.5,17.5 - parent: 0 - type: Transform -- uid: 2294 - type: WallRiveted - components: - - pos: 35.5,18.5 - parent: 0 - type: Transform -- uid: 2295 - type: WallRiveted - components: - - pos: 35.5,19.5 - parent: 0 - type: Transform -- uid: 2296 - type: WallRiveted - components: - - pos: 35.5,20.5 - parent: 0 - type: Transform -- uid: 2297 - type: WallRiveted - components: - - pos: 35.5,21.5 - parent: 0 - type: Transform -- uid: 2298 - type: WallRiveted - components: - - pos: 35.5,22.5 - parent: 0 - type: Transform -- uid: 2299 - type: AirlockBrigGlassLocked - components: - - pos: 28.5,14.5 - parent: 0 - type: Transform -- uid: 2300 - type: AirlockBrigLocked - components: - - pos: 21.5,22.5 - parent: 0 - type: Transform -- uid: 2301 - type: WallRiveted - components: - - pos: 17.5,18.5 - parent: 0 - type: Transform -- uid: 2302 - type: WallRiveted - components: - - pos: 17.5,19.5 - parent: 0 - type: Transform -- uid: 2303 - type: WallRiveted - components: - - pos: 17.5,20.5 - parent: 0 - type: Transform -- uid: 2304 - type: WallRiveted - components: - - pos: 17.5,21.5 - parent: 0 - type: Transform -- uid: 2305 - type: WallRiveted - components: - - pos: 17.5,22.5 - parent: 0 - type: Transform -- uid: 2306 - type: WallRiveted - components: - - pos: 17.5,23.5 - parent: 0 - type: Transform -- uid: 2307 - type: WallRiveted - components: - - pos: 17.5,24.5 - parent: 0 - type: Transform -- uid: 2308 - type: WallRiveted - components: - - pos: 18.5,24.5 - parent: 0 - type: Transform -- uid: 2309 - type: WallRiveted - components: - - pos: 19.5,24.5 - parent: 0 - type: Transform -- uid: 2310 - type: WallRiveted - components: - - pos: 20.5,24.5 - parent: 0 - type: Transform -- uid: 2311 - type: WallRiveted - components: - - pos: 21.5,24.5 - parent: 0 - type: Transform -- uid: 2312 - type: WallRiveted - components: - - pos: 21.5,23.5 - parent: 0 - type: Transform -- uid: 2313 - type: WallRiveted - components: - - pos: 21.5,19.5 - parent: 0 - type: Transform -- uid: 2314 - type: WallRiveted - components: - - pos: 21.5,20.5 - parent: 0 - type: Transform -- uid: 2315 - type: WallRiveted - components: - - pos: 21.5,21.5 - parent: 0 - type: Transform -- uid: 2316 - type: AirlockBrigGlassLocked - components: - - pos: 23.5,20.5 - parent: 0 - type: Transform -- uid: 2317 - type: AirlockBrigLocked - components: - - pos: 19.5,17.5 - parent: 0 - type: Transform -- uid: 2318 - type: WallRiveted - components: - - pos: 35.5,23.5 - parent: 0 - type: Transform -- uid: 2319 - type: WallRiveted - components: - - pos: 35.5,24.5 - parent: 0 - type: Transform -- uid: 2320 - type: WallRiveted - components: - - pos: 34.5,24.5 - parent: 0 - type: Transform -- uid: 2321 - type: WallRiveted - components: - - pos: 33.5,24.5 - parent: 0 - type: Transform -- uid: 2322 - type: WallRiveted - components: - - pos: 32.5,24.5 - parent: 0 - type: Transform -- uid: 2323 - type: WallRiveted - components: - - pos: 31.5,24.5 - parent: 0 - type: Transform -- uid: 2324 - type: WallRiveted - components: - - pos: 30.5,24.5 - parent: 0 - type: Transform -- uid: 2325 - type: WallRiveted - components: - - pos: 29.5,24.5 - parent: 0 - type: Transform -- uid: 2326 - type: WallRiveted - components: - - pos: 28.5,24.5 - parent: 0 - type: Transform -- uid: 2327 - type: WallRiveted - components: - - pos: 27.5,24.5 - parent: 0 - type: Transform -- uid: 2328 - type: WallRiveted - components: - - pos: 26.5,24.5 - parent: 0 - type: Transform -- uid: 2329 - type: WallRiveted - components: - - pos: 25.5,24.5 - parent: 0 - type: Transform -- uid: 2330 - type: WallRiveted - components: - - pos: 24.5,24.5 - parent: 0 - type: Transform -- uid: 2331 - type: WallRiveted - components: - - pos: 23.5,24.5 - parent: 0 - type: Transform -- uid: 2332 - type: WallRiveted - components: - - pos: 22.5,24.5 - parent: 0 - type: Transform -- uid: 2333 - type: WallRiveted - components: - - pos: 22.5,20.5 - parent: 0 - type: Transform -- uid: 2334 - type: WallRiveted - components: - - pos: 24.5,20.5 - parent: 0 - type: Transform -- uid: 2335 - type: WallRiveted - components: - - pos: 34.5,20.5 - parent: 0 - type: Transform -- uid: 2336 - type: WallRiveted - components: - - pos: 32.5,20.5 - parent: 0 - type: Transform -- uid: 2337 - type: ReinforcedWindow - components: - - pos: 24.5,15.5 - parent: 0 - type: Transform -- uid: 2338 - type: ReinforcedWindow - components: - - pos: 24.5,16.5 - parent: 0 - type: Transform -- uid: 2339 - type: ReinforcedWindow - components: - - pos: 24.5,17.5 - parent: 0 - type: Transform -- uid: 2340 - type: AirlockBrigGlassLocked - components: - - pos: 24.5,18.5 - parent: 0 - type: Transform -- uid: 2341 - type: ReinforcedWindow - components: - - pos: 24.5,19.5 - parent: 0 - type: Transform -- uid: 2342 - type: AirlockBrigGlassLocked - components: - - pos: 22.5,14.5 - parent: 0 - type: Transform -- uid: 2343 - type: AirlockBrigLocked - components: - - pos: 33.5,20.5 - parent: 0 - type: Transform -- uid: 2344 - type: AirlockBrigLocked - components: - - pos: 21.5,18.5 - parent: 0 - type: Transform -- uid: 2345 - type: WindoorSecure - components: - - pos: 34.5,14.5 - parent: 0 - type: Transform -- uid: 2346 - type: Grille - components: - - pos: 24.5,15.5 - parent: 0 - type: Transform -- uid: 2347 - type: Grille - components: - - pos: 24.5,16.5 - parent: 0 - type: Transform -- uid: 2348 - type: Grille - components: - - pos: 24.5,17.5 - parent: 0 - type: Transform -- uid: 2349 - type: Grille - components: - - pos: 24.5,19.5 - parent: 0 - type: Transform -- uid: 2350 - type: HighSecDoor - components: - - pos: 21.5,11.5 - parent: 0 - type: Transform -- uid: 2351 - type: HighSecDoor - components: - - pos: 21.5,12.5 - parent: 0 - type: Transform -- uid: 2352 - type: TableWood - components: - - pos: 32.5,15.5 - parent: 0 - type: Transform -- uid: 2353 - type: TableWood - components: - - pos: 32.5,16.5 - parent: 0 - type: Transform -- uid: 2354 - type: TableWood - components: - - pos: 32.5,17.5 - parent: 0 - type: Transform -- uid: 2355 - type: TableWood - components: - - pos: 32.5,18.5 - parent: 0 - type: Transform -- uid: 2356 - type: TableWood - components: - - pos: 32.5,19.5 - parent: 0 - type: Transform -- uid: 2357 - type: TableWood - components: - - pos: 27.5,20.5 - parent: 0 - type: Transform -- uid: 2358 - type: TableWood - components: - - pos: 28.5,20.5 - parent: 0 - type: Transform -- uid: 2359 - type: TableWood - components: - - pos: 29.5,20.5 - parent: 0 - type: Transform -- uid: 2360 - type: TableWood - components: - - pos: 29.5,21.5 - parent: 0 - type: Transform -- uid: 2361 - type: TableWood - components: - - pos: 27.5,21.5 - parent: 0 - type: Transform -- uid: 2362 - type: TableWood - components: - - pos: 30.5,20.5 - parent: 0 - type: Transform -- uid: 2363 - type: TableWood - components: - - pos: 26.5,20.5 - parent: 0 - type: Transform -- uid: 2364 - type: TableWood - components: - - pos: 22.5,23.5 - parent: 0 - type: Transform -- uid: 2365 - type: TableWood - components: - - pos: 34.5,23.5 - parent: 0 - type: Transform -- uid: 2366 - type: TableWood - components: - - pos: 30.5,23.5 - parent: 0 - type: Transform -- uid: 2367 - type: TableWood - components: - - pos: 29.5,23.5 - parent: 0 - type: Transform -- uid: 2368 - type: TableWood - components: - - pos: 27.5,23.5 - parent: 0 - type: Transform -- uid: 2369 - type: TableWood - components: - - pos: 26.5,23.5 - parent: 0 - type: Transform -- uid: 2370 - type: Bookshelf - components: - - pos: 23.5,23.5 - parent: 0 - type: Transform -- uid: 2371 - type: Bookshelf - components: - - pos: 24.5,23.5 - parent: 0 - type: Transform -- uid: 2372 - type: Bookshelf - components: - - pos: 25.5,23.5 - parent: 0 - type: Transform -- uid: 2373 - type: Bookshelf - components: - - pos: 32.5,23.5 - parent: 0 - type: Transform -- uid: 2374 - type: Bookshelf - components: - - pos: 33.5,23.5 - parent: 0 - type: Transform -- uid: 2375 - type: Bookshelf - components: - - pos: 31.5,23.5 - parent: 0 - type: Transform -- uid: 2376 - type: Bookshelf - components: - - pos: 26.5,10.5 - parent: 0 - type: Transform -- uid: 2377 - type: Bookshelf - components: - - pos: 25.5,10.5 - parent: 0 - type: Transform -- uid: 2378 - type: Bookshelf - components: - - pos: 24.5,10.5 - parent: 0 - type: Transform -- uid: 2379 - type: Bookshelf - components: - - pos: 30.5,10.5 - parent: 0 - type: Transform -- uid: 2380 - type: Bookshelf - components: - - pos: 31.5,10.5 - parent: 0 - type: Transform -- uid: 2381 - type: PottedPlant21 - components: - - pos: 22.5,10.5 - parent: 0 - type: Transform -- uid: 2382 - type: Bookshelf - components: - - pos: 32.5,10.5 - parent: 0 - type: Transform -- uid: 2383 - type: PottedPlant21 - components: - - pos: 34.5,10.5 - parent: 0 - type: Transform -- uid: 2384 - type: PottedPlant21 - components: - - pos: 24.5,21.5 - parent: 0 - type: Transform -- uid: 2385 - type: PottedPlant21 - components: - - pos: 32.5,21.5 - parent: 0 - type: Transform -- uid: 2386 - type: PottedPlant21 - components: - - pos: 18.5,18.5 - parent: 0 - type: Transform -- uid: 2387 - type: PottedPlant22 - components: - - pos: 23.5,10.5 - parent: 0 - type: Transform -- uid: 2388 - type: PottedPlant22 - components: - - pos: 33.5,10.5 - parent: 0 - type: Transform -- uid: 2389 - type: PottedPlant22 - components: - - pos: 34.5,21.5 - parent: 0 - type: Transform -- uid: 2390 - type: PottedPlant22 - components: - - pos: 22.5,21.5 - parent: 0 - type: Transform -- uid: 2391 - type: PottedPlant22 - components: - - pos: 25.5,21.5 - parent: 0 - type: Transform -- uid: 2392 - type: PottedPlant22 - components: - - pos: 31.5,21.5 - parent: 0 - type: Transform -- uid: 2393 - type: PottedPlant22 - components: - - pos: 18.5,22.5 - parent: 0 - type: Transform -- uid: 2394 - type: PottedPlant22 - components: - - pos: 16.5,12.5 - parent: 0 - type: Transform -- uid: 2395 - type: WindowReinforcedDirectional - components: - - pos: 26.5,22.5 - parent: 0 - type: Transform -- uid: 2396 - type: WindowReinforcedDirectional - components: - - pos: 25.5,22.5 - parent: 0 - type: Transform -- uid: 2397 - type: WindowReinforcedDirectional - components: - - pos: 31.5,22.5 - parent: 0 - type: Transform -- uid: 2398 - type: WindowReinforcedDirectional - components: - - pos: 30.5,22.5 - parent: 0 - type: Transform -- uid: 2399 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 24.5,21.5 - parent: 0 - type: Transform -- uid: 2400 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 32.5,21.5 - parent: 0 - type: Transform -- uid: 2401 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 29.5,20.5 - parent: 0 - type: Transform -- uid: 2402 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 29.5,21.5 - parent: 0 - type: Transform -- uid: 2403 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 27.5,20.5 - parent: 0 - type: Transform -- uid: 2404 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 27.5,21.5 - parent: 0 - type: Transform -- uid: 2405 - type: WindowReinforcedDirectional - components: - - pos: 27.5,20.5 - parent: 0 - type: Transform -- uid: 2406 - type: WindowReinforcedDirectional - components: - - pos: 29.5,20.5 - parent: 0 - type: Transform -- uid: 2407 - type: WindowReinforcedDirectional - components: - - pos: 30.5,20.5 - parent: 0 - type: Transform -- uid: 2408 - type: WindowReinforcedDirectional - components: - - pos: 26.5,20.5 - parent: 0 - type: Transform -- uid: 2409 - type: Windoor - components: - - pos: 25.5,20.5 - parent: 0 - type: Transform -- uid: 2410 - type: Windoor - components: - - pos: 31.5,20.5 - parent: 0 - type: Transform -- uid: 2411 - type: TableWood - components: - - pos: 27.5,17.5 - parent: 0 - type: Transform -- uid: 2412 - type: TableWood - components: - - pos: 26.5,17.5 - parent: 0 - type: Transform -- uid: 2413 - type: TableWood - components: - - pos: 30.5,17.5 - parent: 0 - type: Transform -- uid: 2414 - type: TableWood - components: - - pos: 29.5,17.5 - parent: 0 - type: Transform -- uid: 2415 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 27.5,16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2416 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 26.5,16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2417 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 29.5,16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2418 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 30.5,16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2419 - type: Chair - components: - - pos: 26.5,21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2420 - type: Chair - components: - - pos: 30.5,21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2421 - type: ComfyChair - components: - - pos: 28.5,21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2422 - type: PottedPlant21 - components: - - pos: 28.5,23.5 - parent: 0 - type: Transform -- uid: 2423 - type: TableReinforced - components: - - pos: 23.5,15.5 - parent: 0 - type: Transform -- uid: 2424 - type: TableReinforced - components: - - pos: 23.5,16.5 - parent: 0 - type: Transform -- uid: 2425 - type: WindoorBrigLocked - components: - - pos: 28.5,20.5 - parent: 0 - type: Transform -- uid: 2426 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: 23.5,17.5 - parent: 0 - type: Transform -- uid: 2427 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 33.5,15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2428 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 33.5,16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2429 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 33.5,17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2430 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 33.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2431 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2432 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 34.5,16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2433 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 34.5,17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2434 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 34.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2435 - type: TableWood - components: - - pos: 28.5,10.5 - parent: 0 - type: Transform -- uid: 2436 - type: TableWood - components: - - pos: 34.5,11.5 - parent: 0 - type: Transform -- uid: 2437 - type: TableWood - components: - - pos: 34.5,12.5 - parent: 0 - type: Transform -- uid: 2438 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,10.5 - parent: 0 - type: Transform -- uid: 2439 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,10.5 - parent: 0 - type: Transform -- uid: 2440 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,16.5 - parent: 0 - type: Transform -- uid: 2441 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,14.5 - parent: 0 - type: Transform -- uid: 2442 - type: TableWood - components: - - pos: 20.5,13.5 - parent: 0 - type: Transform -- uid: 2443 - type: TableWood - components: - - pos: 20.5,15.5 - parent: 0 - type: Transform -- uid: 2444 - type: TableWood - components: - - pos: 16.5,10.5 - parent: 0 - type: Transform -- uid: 2445 - type: TableWood - components: - - pos: 20.5,10.5 - parent: 0 - type: Transform -- uid: 2446 - type: TableWood - components: - - pos: 16.5,15.5 - parent: 0 - type: Transform -- uid: 2447 - type: TableWood - components: - - pos: 16.5,16.5 - parent: 0 - type: Transform -- uid: 2448 - type: Bookshelf - components: - - pos: 18.5,16.5 - parent: 0 - type: Transform -- uid: 2449 - type: Bookshelf - components: - - pos: 17.5,16.5 - parent: 0 - type: Transform -- uid: 2450 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 17.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2451 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 18.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2452 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 19.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2453 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 16.5,14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2454 - type: PosterLegitNanotrasenLogo - components: - - pos: 21.5,10.5 - parent: 0 - type: Transform -- uid: 2455 - type: PosterLegitNanotrasenLogo - components: - - pos: 21.5,13.5 - parent: 0 - type: Transform -- uid: 2456 - type: PosterLegitNanotrasenLogo - components: - - pos: 28.5,24.5 - parent: 0 - type: Transform -- uid: 2457 - type: PosterLegitNanotrasenLogo - components: - - pos: 30.5,24.5 - parent: 0 - type: Transform -- uid: 2458 - type: PosterLegitNanotrasenLogo - components: - - pos: 26.5,24.5 - parent: 0 - type: Transform -- uid: 2459 - type: PosterLegitNanotrasenLogo - components: - - pos: 34.5,20.5 - parent: 0 - type: Transform -- uid: 2460 - type: PosterLegitNanotrasenLogo - components: - - pos: 22.5,20.5 - parent: 0 - type: Transform -- uid: 2461 - type: BoxFolderRed - components: - - pos: 27.393238,17.582628 - parent: 0 - type: Transform -- uid: 2462 - type: BoxFolderBlue - components: - - pos: 30.518238,17.551378 - parent: 0 - type: Transform -- uid: 2463 - type: BoxFolderBlue - components: - - pos: 29.486988,21.410753 - parent: 0 - type: Transform -- uid: 2464 - type: PhoneInstrument - components: - - pos: 29.471363,23.660753 - parent: 0 - type: Transform -- uid: 2465 - type: CigarGold - components: - - pos: 30.393238,23.676378 - parent: 0 - type: Transform -- uid: 2466 - type: CigarGold - components: - - pos: 30.502613,23.598253 - parent: 0 - type: Transform -- uid: 2467 - type: CrowbarRed - components: - - pos: 22.533863,23.410753 - parent: 0 - type: Transform -- uid: 2468 - type: BriefcaseBrownFilled - components: - - pos: 34.408863,23.770128 - parent: 0 - type: Transform -- uid: 2469 - type: BriefcaseBrownFilled - components: - - pos: 34.533863,23.582628 - parent: 0 - type: Transform -- uid: 2470 - type: BriefcaseBrownFilled - components: - - pos: 32.486988,19.707628 - parent: 0 - type: Transform -- uid: 2471 - type: WeaponCapacitorRecharger - components: - - pos: 23.5,15.5 - parent: 0 - type: Transform -- uid: 2472 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 25.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2473 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 26.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2474 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 27.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2475 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 29.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2476 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 30.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2477 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 31.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2478 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 32.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2479 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 31.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2480 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 30.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2481 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 29.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2482 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 27.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2483 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 26.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2484 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 25.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2485 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 24.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2486 - type: TableWood - components: - - pos: 20.5,20.5 - parent: 0 - type: Transform -- uid: 2487 - type: TableWood - components: - - pos: 19.5,20.5 - parent: 0 - type: Transform -- uid: 2488 - type: TableWood - components: - - pos: 19.5,21.5 - parent: 0 - type: Transform -- uid: 2489 - type: VendingMachineLawDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 18.5,23.5 - parent: 0 - type: Transform -- uid: 2490 - type: ClosetLegalFilled - components: - - pos: 19.5,23.5 - parent: 0 - type: Transform -- uid: 2491 - type: ClosetBase - components: - - pos: 20.5,23.5 - parent: 0 - type: Transform -- uid: 2492 - type: ComfyChair - components: - - pos: 20.5,21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2493 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 20.5,19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2494 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 19.5,19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2495 - type: MaterialBiomass - components: - - pos: 13.210049,-12.580112 - parent: 0 - type: Transform -- uid: 2496 - type: FoodBoxDonut - components: - - pos: 28.583382,10.652384 - parent: 0 - type: Transform -- uid: 2497 - type: AirlockSecurityGlassLocked - components: - - pos: 12.5,16.5 - parent: 0 - type: Transform -- uid: 2498 - type: AirlockSecurityGlassLocked - components: - - pos: 11.5,16.5 - parent: 0 - type: Transform -- uid: 2499 - type: AirlockSecurityGlassLocked - components: - - pos: 12.5,19.5 - parent: 0 - type: Transform -- uid: 2500 - type: AirlockSecurityGlassLocked - components: - - pos: 11.5,19.5 - parent: 0 - type: Transform -- uid: 2501 - type: WallRiveted - components: - - pos: 13.5,16.5 - parent: 0 - type: Transform -- uid: 2502 - type: WallRiveted - components: - - pos: 13.5,17.5 - parent: 0 - type: Transform -- uid: 2503 - type: WallRiveted - components: - - pos: 13.5,18.5 - parent: 0 - type: Transform -- uid: 2504 - type: WallRiveted - components: - - pos: 13.5,19.5 - parent: 0 - type: Transform -- uid: 2505 - type: ReinforcedWindow - components: - - pos: 10.5,16.5 - parent: 0 - type: Transform -- uid: 2506 - type: ReinforcedWindow - components: - - pos: 10.5,17.5 - parent: 0 - type: Transform -- uid: 2507 - type: ReinforcedWindow - components: - - pos: 10.5,18.5 - parent: 0 - type: Transform -- uid: 2508 - type: WallRiveted - components: - - pos: 10.5,19.5 - parent: 0 - type: Transform -- uid: 2509 - type: ReinforcedWindow - components: - - pos: 8.5,16.5 - parent: 0 - type: Transform -- uid: 2510 - type: Grille - components: - - pos: 10.5,16.5 - parent: 0 - type: Transform -- uid: 2511 - type: Grille - components: - - pos: 10.5,17.5 - parent: 0 - type: Transform -- uid: 2512 - type: Grille - components: - - pos: 10.5,18.5 - parent: 0 - type: Transform -- uid: 2513 - type: Grille - components: - - pos: 8.5,16.5 - parent: 0 - type: Transform -- uid: 2514 - type: WallRiveted - components: - - pos: 7.5,16.5 - parent: 0 - type: Transform -- uid: 2515 - type: WallRiveted - components: - - pos: 6.5,16.5 - parent: 0 - type: Transform -- uid: 2516 - type: WallRiveted - components: - - pos: 10.5,20.5 - parent: 0 - type: Transform -- uid: 2517 - type: WallRiveted - components: - - pos: 13.5,20.5 - parent: 0 - type: Transform -- uid: 2518 - type: WallRiveted - components: - - pos: 14.5,20.5 - parent: 0 - type: Transform -- uid: 2519 - type: WallRiveted - components: - - pos: 15.5,20.5 - parent: 0 - type: Transform -- uid: 2520 - type: WallRiveted - components: - - pos: 16.5,20.5 - parent: 0 - type: Transform -- uid: 2521 - type: SubstationBasic - components: - - pos: 15.5,19.5 - parent: 0 - type: Transform -- uid: 2522 - type: AirlockEngineeringLocked - components: - - pos: 14.5,16.5 - parent: 0 - type: Transform -- uid: 2523 - type: CableHV - components: - - pos: 0.5,12.5 - parent: 0 - type: Transform -- uid: 2524 - type: CableHV - components: - - pos: 1.5,12.5 - parent: 0 - type: Transform -- uid: 2525 - type: CableHV - components: - - pos: 2.5,12.5 - parent: 0 - type: Transform -- uid: 2526 - type: CableHV - components: - - pos: 3.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2527 - type: CableHV - components: - - pos: 4.5,12.5 - parent: 0 - type: Transform -- uid: 2528 - type: CableHV - components: - - pos: 5.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2529 - type: CableHV - components: - - pos: 6.5,12.5 - parent: 0 - type: Transform -- uid: 2530 - type: CableHV - components: - - pos: 7.5,12.5 - parent: 0 - type: Transform -- uid: 2531 - type: CableHV - components: - - pos: 8.5,12.5 - parent: 0 - type: Transform -- uid: 2532 - type: CableHV - components: - - pos: 9.5,12.5 - parent: 0 - type: Transform -- uid: 2533 - type: CableHV - components: - - pos: 10.5,12.5 - parent: 0 - type: Transform -- uid: 2534 - type: CableHV - components: - - pos: 11.5,12.5 - parent: 0 - type: Transform -- uid: 2535 - type: CableHV - components: - - pos: 12.5,12.5 - parent: 0 - type: Transform -- uid: 2536 - type: CableHV - components: - - pos: 13.5,12.5 - parent: 0 - type: Transform -- uid: 2537 - type: CableHV - components: - - pos: 14.5,12.5 - parent: 0 - type: Transform -- uid: 2538 - type: CableHV - components: - - pos: 14.5,13.5 - parent: 0 - type: Transform -- uid: 2539 - type: CableHV - components: - - pos: 14.5,14.5 - parent: 0 - type: Transform -- uid: 2540 - type: CableHV - components: - - pos: 14.5,15.5 - parent: 0 - type: Transform -- uid: 2541 - type: CableHV - components: - - pos: 14.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2542 - type: CableHV - components: - - pos: 14.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2543 - type: CableHV - components: - - pos: 14.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2544 - type: CableHV - components: - - pos: 15.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2545 - type: CableHV - components: - - pos: 15.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2546 - type: Grille - components: - - pos: 8.5,20.5 - parent: 0 - type: Transform -- uid: 2547 - type: WallRiveted - components: - - pos: 7.5,20.5 - parent: 0 - type: Transform -- uid: 2548 - type: WallRiveted - components: - - pos: 6.5,20.5 - parent: 0 - type: Transform -- uid: 2549 - type: WallRiveted - components: - - pos: 5.5,20.5 - parent: 0 - type: Transform -- uid: 2550 - type: WallRiveted - components: - - pos: 4.5,20.5 - parent: 0 - type: Transform -- uid: 2551 - type: WallRiveted - components: - - pos: 7.5,17.5 - parent: 0 - type: Transform -- uid: 2552 - type: WallRiveted - components: - - pos: 7.5,18.5 - parent: 0 - type: Transform -- uid: 2553 - type: HighSecArmoryLocked - components: - - pos: 9.5,20.5 - parent: 0 - type: Transform -- uid: 2554 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: 9.5,16.5 - parent: 0 - type: Transform -- uid: 2555 - type: AirlockArmoryLocked - components: - - pos: 7.5,19.5 - parent: 0 - type: Transform -- uid: 2556 - type: ReinforcedWindow - components: - - pos: 14.5,21.5 - parent: 0 - type: Transform -- uid: 2557 - type: Grille - components: - - pos: 14.5,21.5 - parent: 0 - type: Transform -- uid: 2558 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 14.5,22.5 - parent: 0 - type: Transform -- uid: 2559 - type: WallRiveted - components: - - pos: 16.5,23.5 - parent: 0 - type: Transform -- uid: 2560 - type: WallRiveted - components: - - pos: 15.5,23.5 - parent: 0 - type: Transform -- uid: 2561 - type: WallRiveted - components: - - pos: 14.5,23.5 - parent: 0 - type: Transform -- uid: 2562 - type: APCBasic - components: - - pos: 7.5,16.5 - parent: 0 - type: Transform -- uid: 2563 - type: APCBasic - components: - - pos: 17.5,17.5 - parent: 0 - type: Transform -- uid: 2564 - type: APCBasic - components: - - pos: 24.5,14.5 - parent: 0 - type: Transform -- uid: 2565 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 35.5,19.5 - parent: 0 - type: Transform -- uid: 2566 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 21.5,21.5 - parent: 0 - type: Transform -- uid: 2567 - type: CableApcExtension - components: - - pos: 17.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2568 - type: CableApcExtension - components: - - pos: 17.5,16.5 - parent: 0 - type: Transform -- uid: 2569 - type: CableApcExtension - components: - - pos: 17.5,15.5 - parent: 0 - type: Transform -- uid: 2570 - type: CableApcExtension - components: - - pos: 17.5,14.5 - parent: 0 - type: Transform -- uid: 2571 - type: CableApcExtension - components: - - pos: 17.5,13.5 - parent: 0 - type: Transform -- uid: 2572 - type: CableApcExtension - components: - - pos: 17.5,12.5 - parent: 0 - type: Transform -- uid: 2573 - type: CableApcExtension - components: - - pos: 17.5,11.5 - parent: 0 - type: Transform -- uid: 2574 - type: CableApcExtension - components: - - pos: 16.5,12.5 - parent: 0 - type: Transform -- uid: 2575 - type: CableApcExtension - components: - - pos: 15.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2576 - type: CableApcExtension - components: - - pos: 16.5,14.5 - parent: 0 - type: Transform -- uid: 2577 - type: CableApcExtension - components: - - pos: 15.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2578 - type: CableApcExtension - components: - - pos: 17.5,10.5 - parent: 0 - type: Transform -- uid: 2579 - type: CableApcExtension - components: - - pos: 16.5,10.5 - parent: 0 - type: Transform -- uid: 2580 - type: CableApcExtension - components: - - pos: 15.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2581 - type: CableApcExtension - components: - - pos: 18.5,11.5 - parent: 0 - type: Transform -- uid: 2582 - type: CableApcExtension - components: - - pos: 19.5,11.5 - parent: 0 - type: Transform -- uid: 2583 - type: CableApcExtension - components: - - pos: 20.5,11.5 - parent: 0 - type: Transform -- uid: 2584 - type: CableApcExtension - components: - - pos: 18.5,14.5 - parent: 0 - type: Transform -- uid: 2585 - type: CableApcExtension - components: - - pos: 19.5,14.5 - parent: 0 - type: Transform -- uid: 2586 - type: CableApcExtension - components: - - pos: 20.5,14.5 - parent: 0 - type: Transform -- uid: 2587 - type: CableApcExtension - components: - - pos: 19.5,15.5 - parent: 0 - type: Transform -- uid: 2588 - type: CableApcExtension - components: - - pos: 21.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2589 - type: CableApcExtension - components: - - pos: 20.5,20.5 - parent: 0 - type: Transform -- uid: 2590 - type: CableApcExtension - components: - - pos: 19.5,20.5 - parent: 0 - type: Transform -- uid: 2591 - type: CableApcExtension - components: - - pos: 18.5,20.5 - parent: 0 - type: Transform -- uid: 2592 - type: CableApcExtension - components: - - pos: 19.5,19.5 - parent: 0 - type: Transform -- uid: 2593 - type: CableApcExtension - components: - - pos: 19.5,18.5 - parent: 0 - type: Transform -- uid: 2594 - type: CableApcExtension - components: - - pos: 19.5,21.5 - parent: 0 - type: Transform -- uid: 2595 - type: CableApcExtension - components: - - pos: 19.5,22.5 - parent: 0 - type: Transform -- uid: 2596 - type: CableApcExtension - components: - - pos: 21.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2597 - type: CableApcExtension - components: - - pos: 22.5,21.5 - parent: 0 - type: Transform -- uid: 2598 - type: CableApcExtension - components: - - pos: 23.5,21.5 - parent: 0 - type: Transform -- uid: 2599 - type: CableApcExtension - components: - - pos: 23.5,22.5 - parent: 0 - type: Transform -- uid: 2600 - type: CableApcExtension - components: - - pos: 24.5,22.5 - parent: 0 - type: Transform -- uid: 2601 - type: CableApcExtension - components: - - pos: 25.5,22.5 - parent: 0 - type: Transform -- uid: 2602 - type: CableApcExtension - components: - - pos: 26.5,22.5 - parent: 0 - type: Transform -- uid: 2603 - type: CableApcExtension - components: - - pos: 27.5,22.5 - parent: 0 - type: Transform -- uid: 2604 - type: CableApcExtension - components: - - pos: 28.5,22.5 - parent: 0 - type: Transform -- uid: 2605 - type: CableApcExtension - components: - - pos: 29.5,22.5 - parent: 0 - type: Transform -- uid: 2606 - type: CableApcExtension - components: - - pos: 30.5,22.5 - parent: 0 - type: Transform -- uid: 2607 - type: CableApcExtension - components: - - pos: 31.5,22.5 - parent: 0 - type: Transform -- uid: 2608 - type: CableApcExtension - components: - - pos: 32.5,22.5 - parent: 0 - type: Transform -- uid: 2609 - type: CableApcExtension - components: - - pos: 33.5,22.5 - parent: 0 - type: Transform -- uid: 2610 - type: CableApcExtension - components: - - pos: 34.5,22.5 - parent: 0 - type: Transform -- uid: 2611 - type: CableApcExtension - components: - - pos: 33.5,21.5 - parent: 0 - type: Transform -- uid: 2612 - type: CableApcExtension - components: - - pos: 28.5,21.5 - parent: 0 - type: Transform -- uid: 2613 - type: CableApcExtension - components: - - pos: 20.5,21.5 - parent: 0 - type: Transform -- uid: 2614 - type: CableApcExtension - components: - - pos: 23.5,20.5 - parent: 0 - type: Transform -- uid: 2615 - type: CableApcExtension - components: - - pos: 23.5,19.5 - parent: 0 - type: Transform -- uid: 2616 - type: CableApcExtension - components: - - pos: 23.5,18.5 - parent: 0 - type: Transform -- uid: 2617 - type: CableApcExtension - components: - - pos: 23.5,17.5 - parent: 0 - type: Transform -- uid: 2618 - type: CableApcExtension - components: - - pos: 23.5,16.5 - parent: 0 - type: Transform -- uid: 2619 - type: CableApcExtension - components: - - pos: 23.5,15.5 - parent: 0 - type: Transform -- uid: 2620 - type: CableApcExtension - components: - - pos: 24.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2621 - type: CableApcExtension - components: - - pos: 24.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2622 - type: CableApcExtension - components: - - pos: 24.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2623 - type: CableApcExtension - components: - - pos: 24.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2624 - type: CableApcExtension - components: - - pos: 24.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2625 - type: CableApcExtension - components: - - pos: 24.5,13.5 - parent: 0 - type: Transform -- uid: 2626 - type: CableApcExtension - components: - - pos: 25.5,13.5 - parent: 0 - type: Transform -- uid: 2627 - type: CableApcExtension - components: - - pos: 26.5,13.5 - parent: 0 - type: Transform -- uid: 2628 - type: CableApcExtension - components: - - pos: 27.5,13.5 - parent: 0 - type: Transform -- uid: 2629 - type: CableApcExtension - components: - - pos: 28.5,13.5 - parent: 0 - type: Transform -- uid: 2630 - type: CableApcExtension - components: - - pos: 29.5,13.5 - parent: 0 - type: Transform -- uid: 2631 - type: CableApcExtension - components: - - pos: 30.5,13.5 - parent: 0 - type: Transform -- uid: 2632 - type: CableApcExtension - components: - - pos: 31.5,13.5 - parent: 0 - type: Transform -- uid: 2633 - type: CableApcExtension - components: - - pos: 32.5,13.5 - parent: 0 - type: Transform -- uid: 2634 - type: CableApcExtension - components: - - pos: 33.5,13.5 - parent: 0 - type: Transform -- uid: 2635 - type: CableApcExtension - components: - - pos: 33.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2636 - type: CableApcExtension - components: - - pos: 31.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2637 - type: CableApcExtension - components: - - pos: 30.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2638 - type: CableApcExtension - components: - - pos: 29.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2639 - type: CableApcExtension - components: - - pos: 27.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2640 - type: CableApcExtension - components: - - pos: 26.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2641 - type: CableApcExtension - components: - - pos: 25.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2642 - type: CableApcExtension - components: - - pos: 28.5,14.5 - parent: 0 - type: Transform -- uid: 2643 - type: CableApcExtension - components: - - pos: 28.5,15.5 - parent: 0 - type: Transform -- uid: 2644 - type: CableApcExtension - components: - - pos: 28.5,16.5 - parent: 0 - type: Transform -- uid: 2645 - type: CableApcExtension - components: - - pos: 28.5,17.5 - parent: 0 - type: Transform -- uid: 2646 - type: CableApcExtension - components: - - pos: 28.5,18.5 - parent: 0 - type: Transform -- uid: 2647 - type: CableApcExtension - components: - - pos: 29.5,18.5 - parent: 0 - type: Transform -- uid: 2648 - type: CableApcExtension - components: - - pos: 30.5,18.5 - parent: 0 - type: Transform -- uid: 2649 - type: CableApcExtension - components: - - pos: 31.5,18.5 - parent: 0 - type: Transform -- uid: 2650 - type: CableApcExtension - components: - - pos: 27.5,18.5 - parent: 0 - type: Transform -- uid: 2651 - type: CableApcExtension - components: - - pos: 26.5,18.5 - parent: 0 - type: Transform -- uid: 2652 - type: CableApcExtension - components: - - pos: 25.5,18.5 - parent: 0 - type: Transform -- uid: 2653 - type: CableApcExtension - components: - - pos: 27.5,15.5 - parent: 0 - type: Transform -- uid: 2654 - type: CableApcExtension - components: - - pos: 26.5,15.5 - parent: 0 - type: Transform -- uid: 2655 - type: CableApcExtension - components: - - pos: 29.5,15.5 - parent: 0 - type: Transform -- uid: 2656 - type: CableApcExtension - components: - - pos: 30.5,15.5 - parent: 0 - type: Transform -- uid: 2657 - type: CableApcExtension - components: - - pos: 24.5,12.5 - parent: 0 - type: Transform -- uid: 2658 - type: CableApcExtension - components: - - pos: 23.5,12.5 - parent: 0 - type: Transform -- uid: 2659 - type: CableApcExtension - components: - - pos: 22.5,12.5 - parent: 0 - type: Transform -- uid: 2660 - type: CableApcExtension - components: - - pos: 33.5,12.5 - parent: 0 - type: Transform -- uid: 2661 - type: CableApcExtension - components: - - pos: 34.5,12.5 - parent: 0 - type: Transform -- uid: 2662 - type: CableApcExtension - components: - - pos: 33.5,11.5 - parent: 0 - type: Transform -- uid: 2663 - type: CableApcExtension - components: - - pos: 32.5,11.5 - parent: 0 - type: Transform -- uid: 2664 - type: CableApcExtension - components: - - pos: 31.5,11.5 - parent: 0 - type: Transform -- uid: 2665 - type: CableApcExtension - components: - - pos: 30.5,11.5 - parent: 0 - type: Transform -- uid: 2666 - type: CableApcExtension - components: - - pos: 29.5,11.5 - parent: 0 - type: Transform -- uid: 2667 - type: CableApcExtension - components: - - pos: 28.5,11.5 - parent: 0 - type: Transform -- uid: 2668 - type: CableApcExtension - components: - - pos: 27.5,11.5 - parent: 0 - type: Transform -- uid: 2669 - type: CableApcExtension - components: - - pos: 26.5,11.5 - parent: 0 - type: Transform -- uid: 2670 - type: CableApcExtension - components: - - pos: 25.5,11.5 - parent: 0 - type: Transform -- uid: 2671 - type: CableApcExtension - components: - - pos: 24.5,11.5 - parent: 0 - type: Transform -- uid: 2672 - type: CableApcExtension - components: - - pos: 23.5,11.5 - parent: 0 - type: Transform -- uid: 2673 - type: CableApcExtension - components: - - pos: 35.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2674 - type: CableApcExtension - components: - - pos: 34.5,19.5 - parent: 0 - type: Transform -- uid: 2675 - type: CableApcExtension - components: - - pos: 33.5,19.5 - parent: 0 - type: Transform -- uid: 2676 - type: CableApcExtension - components: - - pos: 33.5,18.5 - parent: 0 - type: Transform -- uid: 2677 - type: CableApcExtension - components: - - pos: 33.5,17.5 - parent: 0 - type: Transform -- uid: 2678 - type: CableApcExtension - components: - - pos: 33.5,16.5 - parent: 0 - type: Transform -- uid: 2679 - type: CableApcExtension - components: - - pos: 7.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2680 - type: CableApcExtension - components: - - pos: 7.5,15.5 - parent: 0 - type: Transform -- uid: 2681 - type: CableApcExtension - components: - - pos: 7.5,14.5 - parent: 0 - type: Transform -- uid: 2682 - type: CableApcExtension - components: - - pos: 7.5,13.5 - parent: 0 - type: Transform -- uid: 2683 - type: CableApcExtension - components: - - pos: 7.5,12.5 - parent: 0 - type: Transform -- uid: 2684 - type: CableApcExtension - components: - - pos: 7.5,11.5 - parent: 0 - type: Transform -- uid: 2685 - type: CableApcExtension - components: - - pos: 6.5,12.5 - parent: 0 - type: Transform -- uid: 2686 - type: CableApcExtension - components: - - pos: 5.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2687 - type: CableApcExtension - components: - - pos: 6.5,14.5 - parent: 0 - type: Transform -- uid: 2688 - type: CableApcExtension - components: - - pos: 5.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2689 - type: CableApcExtension - components: - - pos: 8.5,14.5 - parent: 0 - type: Transform -- uid: 2690 - type: CableApcExtension - components: - - pos: 9.5,14.5 - parent: 0 - type: Transform -- uid: 2691 - type: CableApcExtension - components: - - pos: 10.5,14.5 - parent: 0 - type: Transform -- uid: 2692 - type: CableApcExtension - components: - - pos: 11.5,14.5 - parent: 0 - type: Transform -- uid: 2693 - type: CableApcExtension - components: - - pos: 12.5,14.5 - parent: 0 - type: Transform -- uid: 2694 - type: CableApcExtension - components: - - pos: 8.5,12.5 - parent: 0 - type: Transform -- uid: 2695 - type: CableApcExtension - components: - - pos: 9.5,12.5 - parent: 0 - type: Transform -- uid: 2696 - type: CableApcExtension - components: - - pos: 10.5,12.5 - parent: 0 - type: Transform -- uid: 2697 - type: CableApcExtension - components: - - pos: 11.5,12.5 - parent: 0 - type: Transform -- uid: 2698 - type: CableApcExtension - components: - - pos: 12.5,12.5 - parent: 0 - type: Transform -- uid: 2699 - type: CableApcExtension - components: - - pos: 13.5,14.5 - parent: 0 - type: Transform -- uid: 2700 - type: CableApcExtension - components: - - pos: 13.5,15.5 - parent: 0 - type: Transform -- uid: 2701 - type: CableApcExtension - components: - - pos: 14.5,15.5 - parent: 0 - type: Transform -- uid: 2702 - type: CableApcExtension - components: - - pos: 14.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2703 - type: CableApcExtension - components: - - pos: 14.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2704 - type: CableApcExtension - components: - - pos: 14.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2705 - type: CableApcExtension - components: - - pos: 15.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2706 - type: CableApcExtension - components: - - pos: 13.5,13.5 - parent: 0 - type: Transform -- uid: 2707 - type: CableApcExtension - components: - - pos: 13.5,12.5 - parent: 0 - type: Transform -- uid: 2708 - type: CableApcExtension - components: - - pos: 13.5,11.5 - parent: 0 - type: Transform -- uid: 2709 - type: CableApcExtension - components: - - pos: 10.5,13.5 - parent: 0 - type: Transform -- uid: 2710 - type: Windoor - components: - - pos: 9.5,16.5 - parent: 0 - type: Transform -- uid: 2711 - type: CableApcExtension - components: - - pos: 10.5,11.5 - parent: 0 - type: Transform -- uid: 2712 - type: SignalButton - components: - - pos: 7.5,17.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2150 - - port: Toggle - uid: 2149 - - port: Toggle - uid: 2148 - - port: Toggle - uid: 2147 - - port: Toggle - uid: 2146 - type: SignalTransmitter -- uid: 2713 - type: LockerWardenFilled - components: - - pos: 6.5,17.5 - parent: 0 - type: Transform -- uid: 2714 - type: Carpet - components: - - pos: 6.5,18.5 - parent: 0 - type: Transform -- uid: 2715 - type: Carpet - components: - - pos: 6.5,19.5 - parent: 0 - type: Transform -- uid: 2716 - type: Carpet - components: - - pos: 5.5,18.5 - parent: 0 - type: Transform -- uid: 2717 - type: Carpet - components: - - pos: 5.5,19.5 - parent: 0 - type: Transform -- uid: 2718 - type: Bed - components: - - pos: 5.5,18.5 - parent: 0 - type: Transform -- uid: 2719 - type: BedsheetHOS - components: - - name: Warden's - type: MetaData - - pos: 5.5,18.5 - parent: 0 - type: Transform -- uid: 2720 - type: TableReinforced - components: - - pos: 4.5,18.5 - parent: 0 - type: Transform -- uid: 2721 - type: TableReinforced - components: - - pos: 4.5,19.5 - parent: 0 - type: Transform -- uid: 2722 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2723 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2724 - type: Poweredlight - components: - - pos: 4.5,14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2725 - type: Poweredlight - components: - - pos: 6.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2726 - type: Poweredlight - components: - - pos: 13.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2727 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2728 - type: Poweredlight - components: - - pos: 16.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2729 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 23.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2730 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 33.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2731 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2732 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2733 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2734 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2735 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2736 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2737 - type: Poweredlight - components: - - pos: 32.5,23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2738 - type: Poweredlight - components: - - pos: 24.5,23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2739 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2740 - type: PoweredSmallLight - components: - - pos: 14.5,19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2741 - type: SignSpace - components: - - pos: 0.5,22.5 - parent: 0 - type: Transform -- uid: 2742 - type: AcousticGuitarInstrument - components: - - pos: 4.5448904,18.624214 - parent: 0 - type: Transform -- uid: 2743 - type: CableApcExtension - components: - - pos: 10.5,22.5 - parent: 0 - type: Transform -- uid: 2744 - type: ChairOfficeDark - components: - - pos: 9.5,17.5 - parent: 0 - type: Transform -- uid: 2745 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: 8.5,18.5 - parent: 0 - type: Transform -- uid: 2746 - type: Stunbaton - components: - - pos: 4.4667654,19.499214 - parent: 0 - type: Transform -- uid: 2747 - type: WeaponCapacitorRecharger - components: - - pos: 8.5,17.5 - parent: 0 - type: Transform -- uid: 2748 - type: WallRiveted - components: - - pos: 3.5,26.5 - parent: 0 - type: Transform -- uid: 2749 - type: WallRiveted - components: - - pos: 4.5,26.5 - parent: 0 - type: Transform -- uid: 2750 - type: WallRiveted - components: - - pos: 1.5,26.5 - parent: 0 - type: Transform -- uid: 2751 - type: WallRiveted - components: - - pos: 4.5,23.5 - parent: 0 - type: Transform -- uid: 2752 - type: TintedWindow - components: - - pos: 7.5,22.5 - parent: 0 - type: Transform -- uid: 2753 - type: WallRiveted - components: - - pos: 3.5,23.5 - parent: 0 - type: Transform -- uid: 2754 - type: Grille - components: - - pos: 4.5,24.5 - parent: 0 - type: Transform -- uid: 2755 - type: ReinforcedWindow - components: - - pos: 4.5,24.5 - parent: 0 - type: Transform -- uid: 2756 - type: Grille - components: - - pos: 7.5,21.5 - parent: 0 - type: Transform -- uid: 2757 - type: WallRiveted - components: - - pos: 6.5,23.5 - parent: 0 - type: Transform -- uid: 2758 - type: Grille - components: - - pos: 7.5,22.5 - parent: 0 - type: Transform -- uid: 2759 - type: WallRiveted - components: - - pos: 7.5,23.5 - parent: 0 - type: Transform -- uid: 2760 - type: TintedWindow - components: - - pos: 7.5,21.5 - parent: 0 - type: Transform -- uid: 2761 - type: WallRiveted - components: - - pos: 2.5,26.5 - parent: 0 - type: Transform -- uid: 2762 - type: PoweredSmallLight - components: - - pos: 16.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2763 - type: Bed - components: - - pos: 16.5,21.5 - parent: 0 - type: Transform -- uid: 2764 - type: BedsheetOrange - components: - - pos: 16.5,21.5 - parent: 0 - type: Transform -- uid: 2765 - type: WardrobePrisonFilled - components: - - pos: 15.5,21.5 - parent: 0 - type: Transform -- uid: 2766 - type: WallRiveted - components: - - pos: 17.5,25.5 - parent: 0 - type: Transform -- uid: 2767 - type: WallRiveted - components: - - pos: 17.5,26.5 - parent: 0 - type: Transform -- uid: 2768 - type: WallRiveted - components: - - pos: 16.5,26.5 - parent: 0 - type: Transform -- uid: 2769 - type: WallRiveted - components: - - pos: 15.5,26.5 - parent: 0 - type: Transform -- uid: 2770 - type: WallRiveted - components: - - pos: 14.5,26.5 - parent: 0 - type: Transform -- uid: 2771 - type: ReinforcedWindow - components: - - pos: 14.5,24.5 - parent: 0 - type: Transform -- uid: 2772 - type: Grille - components: - - pos: 14.5,24.5 - parent: 0 - type: Transform -- uid: 2773 - type: WardrobePrisonFilled - components: - - pos: 15.5,24.5 - parent: 0 - type: Transform -- uid: 2774 - type: Bed - components: - - pos: 16.5,24.5 - parent: 0 - type: Transform -- uid: 2775 - type: BedsheetOrange - components: - - pos: 16.5,24.5 - parent: 0 - type: Transform -- uid: 2776 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 14.5,25.5 - parent: 0 - type: Transform -- uid: 2777 - type: ReinforcedWindow - components: - - pos: 10.5,26.5 - parent: 0 - type: Transform -- uid: 2778 - type: ReinforcedWindow - components: - - pos: 11.5,26.5 - parent: 0 - type: Transform -- uid: 2779 - type: ReinforcedWindow - components: - - pos: 11.5,27.5 - parent: 0 - type: Transform -- uid: 2780 - type: ReinforcedWindow - components: - - pos: 8.5,26.5 - parent: 0 - type: Transform -- uid: 2781 - type: ReinforcedWindow - components: - - pos: 7.5,26.5 - parent: 0 - type: Transform -- uid: 2782 - type: ReinforcedWindow - components: - - pos: 7.5,27.5 - parent: 0 - type: Transform -- uid: 2783 - type: WallRiveted - components: - - pos: 9.5,26.5 - parent: 0 - type: Transform -- uid: 2784 - type: HighSecArmoryLocked - components: - - pos: 7.5,28.5 - parent: 0 - type: Transform -- uid: 2785 - type: HighSecArmoryLocked - components: - - pos: 11.5,28.5 - parent: 0 - type: Transform -- uid: 2786 - type: ReinforcedWindow - components: - - pos: 7.5,29.5 - parent: 0 - type: Transform -- uid: 2787 - type: ReinforcedWindow - components: - - pos: 11.5,29.5 - parent: 0 - type: Transform -- uid: 2788 - type: WallRiveted - components: - - pos: 11.5,30.5 - parent: 0 - type: Transform -- uid: 2789 - type: WallRiveted - components: - - pos: 7.5,30.5 - parent: 0 - type: Transform -- uid: 2790 - type: BlastDoor - components: - - pos: 11.5,31.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2928 - type: SignalReceiver -- uid: 2791 - type: ReinforcedPlasmaWindow - components: - - pos: 6.5,30.5 - parent: 0 - type: Transform -- uid: 2792 - type: Grille - components: - - pos: 13.5,30.5 - parent: 0 - type: Transform -- uid: 2793 - type: WallRiveted - components: - - pos: 7.5,32.5 - parent: 0 - type: Transform -- uid: 2794 - type: WallRiveted - components: - - pos: 14.5,33.5 - parent: 0 - type: Transform -- uid: 2795 - type: WallRiveted - components: - - pos: 13.5,33.5 - parent: 0 - type: Transform -- uid: 2796 - type: WallRiveted - components: - - pos: 12.5,33.5 - parent: 0 - type: Transform -- uid: 2797 - type: WallRiveted - components: - - pos: 11.5,33.5 - parent: 0 - type: Transform -- uid: 2798 - type: WallRiveted - components: - - pos: 10.5,33.5 - parent: 0 - type: Transform -- uid: 2799 - type: WallRiveted - components: - - pos: 9.5,33.5 - parent: 0 - type: Transform -- uid: 2800 - type: WallRiveted - components: - - pos: 8.5,33.5 - parent: 0 - type: Transform -- uid: 2801 - type: WallRiveted - components: - - pos: 7.5,33.5 - parent: 0 - type: Transform -- uid: 2802 - type: WallRiveted - components: - - pos: 6.5,33.5 - parent: 0 - type: Transform -- uid: 2803 - type: WallRiveted - components: - - pos: 5.5,33.5 - parent: 0 - type: Transform -- uid: 2804 - type: WallRiveted - components: - - pos: 4.5,33.5 - parent: 0 - type: Transform -- uid: 2805 - type: WallRiveted - components: - - pos: 3.5,33.5 - parent: 0 - type: Transform -- uid: 2806 - type: WallRiveted - components: - - pos: 2.5,33.5 - parent: 0 - type: Transform -- uid: 2807 - type: WallRiveted - components: - - pos: 1.5,33.5 - parent: 0 - type: Transform -- uid: 2808 - type: Grille - components: - - pos: 8.5,26.5 - parent: 0 - type: Transform -- uid: 2809 - type: Grille - components: - - pos: 7.5,26.5 - parent: 0 - type: Transform -- uid: 2810 - type: Grille - components: - - pos: 7.5,27.5 - parent: 0 - type: Transform -- uid: 2811 - type: Grille - components: - - pos: 7.5,29.5 - parent: 0 - type: Transform -- uid: 2812 - type: ReinforcedPlasmaWindow - components: - - pos: 12.5,30.5 - parent: 0 - type: Transform -- uid: 2813 - type: ReinforcedPlasmaWindow - components: - - pos: 5.5,30.5 - parent: 0 - type: Transform -- uid: 2814 - type: WallRiveted - components: - - pos: 11.5,32.5 - parent: 0 - type: Transform -- uid: 2815 - type: Grille - components: - - pos: 6.5,30.5 - parent: 0 - type: Transform -- uid: 2816 - type: Grille - components: - - pos: 11.5,29.5 - parent: 0 - type: Transform -- uid: 2817 - type: Grille - components: - - pos: 11.5,27.5 - parent: 0 - type: Transform -- uid: 2818 - type: Grille - components: - - pos: 11.5,26.5 - parent: 0 - type: Transform -- uid: 2819 - type: Grille - components: - - pos: 10.5,26.5 - parent: 0 - type: Transform -- uid: 2820 - type: VendingMachineSec - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,27.5 - parent: 0 - type: Transform -- uid: 2821 - type: VendingMachineAmmo - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,27.5 - parent: 0 - type: Transform -- uid: 2822 - type: TableReinforced - components: - - pos: 10.5,27.5 - parent: 0 - type: Transform -- uid: 2823 - type: SpawnVehicleSecway - components: - - pos: 11.5,25.5 - parent: 0 - type: Transform -- uid: 2824 - type: WeaponCapacitorRecharger - components: - - pos: 10.5,27.5 - parent: 0 - type: Transform -- uid: 2825 - type: AirlockSecurityLocked - components: - - pos: 5.5,23.5 - parent: 0 - type: Transform -- uid: 2826 - type: Table - components: - - pos: 5.5,21.5 - parent: 0 - type: Transform -- uid: 2827 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2828 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 4.5,21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2829 - type: Lamp - components: - - pos: 5.496662,21.877665 - parent: 0 - type: Transform -- uid: 2830 - type: SignInterrogation - components: - - pos: 6.5,23.5 - parent: 0 - type: Transform -- uid: 2831 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 5.5,21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2832 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: 4.5,25.5 - parent: 0 - type: Transform -- uid: 2833 - type: WallRiveted - components: - - rot: 3.141592653589793 rad - pos: 2.5,23.5 - parent: 0 - type: Transform -- uid: 2834 - type: WallRiveted - components: - - pos: 1.5,23.5 - parent: 0 - type: Transform -- uid: 2835 - type: WallRiveted - components: - - pos: 1.5,24.5 - parent: 0 - type: Transform -- uid: 2836 - type: WallRiveted - components: - - pos: 1.5,25.5 - parent: 0 - type: Transform -- uid: 2837 - type: WallRiveted - components: - - pos: 1.5,27.5 - parent: 0 - type: Transform -- uid: 2838 - type: WallRiveted - components: - - pos: 1.5,28.5 - parent: 0 - type: Transform -- uid: 2839 - type: WallRiveted - components: - - pos: 1.5,29.5 - parent: 0 - type: Transform -- uid: 2840 - type: WallRiveted - components: - - pos: 1.5,30.5 - parent: 0 - type: Transform -- uid: 2841 - type: WallRiveted - components: - - pos: 1.5,31.5 - parent: 0 - type: Transform -- uid: 2842 - type: WallRiveted - components: - - pos: 1.5,32.5 - parent: 0 - type: Transform -- uid: 2843 - type: WallRiveted - components: - - pos: 17.5,27.5 - parent: 0 - type: Transform -- uid: 2844 - type: WallRiveted - components: - - pos: 17.5,28.5 - parent: 0 - type: Transform -- uid: 2845 - type: WallRiveted - components: - - pos: 17.5,29.5 - parent: 0 - type: Transform -- uid: 2846 - type: WallRiveted - components: - - pos: 17.5,30.5 - parent: 0 - type: Transform -- uid: 2847 - type: WallRiveted - components: - - pos: 17.5,31.5 - parent: 0 - type: Transform -- uid: 2848 - type: WallRiveted - components: - - pos: 17.5,32.5 - parent: 0 - type: Transform -- uid: 2849 - type: WallRiveted - components: - - pos: 17.5,33.5 - parent: 0 - type: Transform -- uid: 2850 - type: WallRiveted - components: - - pos: 16.5,33.5 - parent: 0 - type: Transform -- uid: 2851 - type: WallRiveted - components: - - pos: 15.5,33.5 - parent: 0 - type: Transform -- uid: 2852 - type: WallRiveted - components: - - pos: 16.5,29.5 - parent: 0 - type: Transform -- uid: 2853 - type: WallRiveted - components: - - pos: 14.5,29.5 - parent: 0 - type: Transform -- uid: 2854 - type: WallRiveted - components: - - pos: 15.5,29.5 - parent: 0 - type: Transform -- uid: 2855 - type: WallRiveted - components: - - pos: 2.5,29.5 - parent: 0 - type: Transform -- uid: 2856 - type: WallRiveted - components: - - pos: 3.5,29.5 - parent: 0 - type: Transform -- uid: 2857 - type: WallRiveted - components: - - pos: 4.5,29.5 - parent: 0 - type: Transform -- uid: 2858 - type: ReinforcedWindow - components: - - pos: 14.5,27.5 - parent: 0 - type: Transform -- uid: 2859 - type: ReinforcedWindow - components: - - pos: 4.5,27.5 - parent: 0 - type: Transform -- uid: 2860 - type: Grille - components: - - pos: 4.5,27.5 - parent: 0 - type: Transform -- uid: 2861 - type: Grille - components: - - pos: 14.5,27.5 - parent: 0 - type: Transform -- uid: 2862 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: 4.5,28.5 - parent: 0 - type: Transform -- uid: 2863 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 14.5,28.5 - parent: 0 - type: Transform -- uid: 2864 - type: Bed - components: - - pos: 3.5,24.5 - parent: 0 - type: Transform -- uid: 2865 - type: Bed - components: - - pos: 3.5,27.5 - parent: 0 - type: Transform -- uid: 2866 - type: Bed - components: - - pos: 16.5,27.5 - parent: 0 - type: Transform -- uid: 2867 - type: BedsheetOrange - components: - - pos: 3.5,24.5 - parent: 0 - type: Transform -- uid: 2868 - type: BedsheetOrange - components: - - pos: 3.5,27.5 - parent: 0 - type: Transform -- uid: 2869 - type: BedsheetOrange - components: - - pos: 16.5,27.5 - parent: 0 - type: Transform -- uid: 2870 - type: CrowbarRed - components: - - pos: 4.569995,19.321579 - parent: 0 - type: Transform -- uid: 2871 - type: WardrobePrisonFilled - components: - - pos: 2.5,24.5 - parent: 0 - type: Transform -- uid: 2872 - type: WardrobePrisonFilled - components: - - pos: 2.5,27.5 - parent: 0 - type: Transform -- uid: 2873 - type: WardrobePrisonFilled - components: - - pos: 15.5,27.5 - parent: 0 - type: Transform -- uid: 2874 - type: SecurityTechFab - components: - - pos: 9.5,32.5 - parent: 0 - type: Transform -- uid: 2875 - type: TableReinforced - components: - - pos: 8.5,29.5 - parent: 0 - type: Transform -- uid: 2876 - type: TableReinforced - components: - - pos: 8.5,30.5 - parent: 0 - type: Transform -- uid: 2877 - type: ReinforcedPlasmaWindow - components: - - pos: 13.5,30.5 - parent: 0 - type: Transform -- uid: 2878 - type: TableReinforced - components: - - pos: 8.5,32.5 - parent: 0 - type: Transform -- uid: 2879 - type: TableReinforced - components: - - pos: 10.5,32.5 - parent: 0 - type: Transform -- uid: 2880 - type: Grille - components: - - pos: 12.5,30.5 - parent: 0 - type: Transform -- uid: 2881 - type: TableReinforced - components: - - pos: 10.5,30.5 - parent: 0 - type: Transform -- uid: 2882 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-17.5 - parent: 0 - type: Transform -- uid: 2883 - type: WallRiveted - components: - - pos: 4.5,32.5 - parent: 0 - type: Transform -- uid: 2884 - type: WallRiveted - components: - - pos: 14.5,32.5 - parent: 0 - type: Transform -- uid: 2885 - type: WallRiveted - components: - - pos: 4.5,30.5 - parent: 0 - type: Transform -- uid: 2886 - type: BlastDoor - components: - - pos: 14.5,31.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2928 - type: SignalReceiver -- uid: 2887 - type: Grille - components: - - pos: 5.5,30.5 - parent: 0 - type: Transform -- uid: 2888 - type: WallRiveted - components: - - pos: 14.5,30.5 - parent: 0 - type: Transform -- uid: 2889 - type: Rack - components: - - pos: 3.5,32.5 - parent: 0 - type: Transform -- uid: 2890 - type: Rack - components: - - pos: 15.5,32.5 - parent: 0 - type: Transform -- uid: 2891 - type: TableReinforced - components: - - pos: 2.5,30.5 - parent: 0 - type: Transform -- uid: 2892 - type: TableReinforced - components: - - pos: 2.5,31.5 - parent: 0 - type: Transform -- uid: 2893 - type: TableReinforced - components: - - pos: 2.5,32.5 - parent: 0 - type: Transform -- uid: 2894 - type: TableReinforced - components: - - pos: 16.5,30.5 - parent: 0 - type: Transform -- uid: 2895 - type: TableReinforced - components: - - pos: 16.5,31.5 - parent: 0 - type: Transform -- uid: 2896 - type: TableReinforced - components: - - pos: 16.5,32.5 - parent: 0 - type: Transform -- uid: 2897 - type: ClothingOuterHardsuitDeathsquad - components: - - pos: 3.403695,32.551796 - parent: 0 - type: Transform -- uid: 2898 - type: ClothingOuterHardsuitDeathsquad - components: - - pos: 3.653695,32.69242 - parent: 0 - type: Transform -- uid: 2899 - type: ClothingOuterHardsuitDeathsquad - components: - - pos: 15.372445,32.53617 - parent: 0 - type: Transform -- uid: 2900 - type: ClothingOuterHardsuitDeathsquad - components: - - pos: 15.653695,32.676796 - parent: 0 - type: Transform -- uid: 2901 - type: ClothingBackpackERTSecurity - components: - - pos: 16.642612,32.410297 - parent: 0 - type: Transform -- uid: 2902 - type: ClothingBackpackERTSecurity - components: - - pos: 16.439487,32.566547 - parent: 0 - type: Transform -- uid: 2903 - type: ClothingBackpackERTSecurity - components: - - pos: 2.6113625,32.457172 - parent: 0 - type: Transform -- uid: 2904 - type: ClothingBackpackERTSecurity - components: - - pos: 2.4551125,32.613422 - parent: 0 - type: Transform -- uid: 2905 - type: CentcomIDCardDeathsquad - components: - - pos: 2.48182,31.94242 - parent: 0 - type: Transform -- uid: 2906 - type: CentcomIDCardDeathsquad - components: - - pos: 2.48182,31.78617 - parent: 0 - type: Transform -- uid: 2907 - type: CentcomIDCardDeathsquad - components: - - pos: 16.528694,31.87992 - parent: 0 - type: Transform -- uid: 2908 - type: CentcomIDCardDeathsquad - components: - - pos: 16.528694,31.676794 - parent: 0 - type: Transform -- uid: 2909 - type: ClothingShoesBootsMagAdv - components: - - pos: 3.4296377,30.58716 - parent: 0 - type: Transform -- uid: 2910 - type: ClothingShoesBootsMagAdv - components: - - pos: 3.6171377,30.446535 - parent: 0 - type: Transform -- uid: 2911 - type: ClothingShoesBootsMagAdv - components: - - pos: 15.407025,30.634035 - parent: 0 - type: Transform -- uid: 2912 - type: ClothingShoesBootsMagAdv - components: - - pos: 15.6414,30.415285 - parent: 0 - type: Transform -- uid: 2913 - type: ClothingEyesGlassesSecurity - components: - - pos: 2.4973187,31.363422 - parent: 0 - type: Transform -- uid: 2914 - type: ClothingEyesGlassesSecurity - components: - - pos: 2.5441937,31.254047 - parent: 0 - type: Transform -- uid: 2915 - type: ClothingEyesGlassesSecurity - components: - - pos: 16.54238,31.238422 - parent: 0 - type: Transform -- uid: 2916 - type: ClothingEyesGlassesSecurity - components: - - pos: 16.589254,31.129047 - parent: 0 - type: Transform -- uid: 2917 - type: ClothingMaskGasSecurity - components: - - pos: 2.458208,30.941547 - parent: 0 - type: Transform -- uid: 2918 - type: ClothingMaskGasSecurity - components: - - pos: 2.551958,30.894672 - parent: 0 - type: Transform -- uid: 2919 - type: ClothingMaskGasSecurity - components: - - pos: 16.473833,30.832172 - parent: 0 - type: Transform -- uid: 2920 - type: ClothingMaskGasSecurity - components: - - pos: 16.536333,30.785297 - parent: 0 - type: Transform -- uid: 2921 - type: ClothingHandsGlovesCombat - components: - - pos: 2.442583,31.629047 - parent: 0 - type: Transform -- uid: 2922 - type: ClothingHandsGlovesCombat - components: - - pos: 2.505083,31.582172 - parent: 0 - type: Transform -- uid: 2923 - type: ClothingHandsGlovesCombat - components: - - pos: 16.536333,31.535297 - parent: 0 - type: Transform -- uid: 2924 - type: ClothingHandsGlovesCombat - components: - - pos: 16.614458,31.488422 - parent: 0 - type: Transform -- uid: 2925 - type: BlastDoor - components: - - pos: 7.5,31.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2927 - type: SignalReceiver -- uid: 2926 - type: BlastDoor - components: - - pos: 4.5,31.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2927 - type: SignalReceiver -- uid: 2927 - type: SignalButton - components: - - name: le funny admin button - type: MetaData - - pos: 4.5,32.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2926 - - port: Toggle - uid: 2925 - type: SignalTransmitter -- uid: 2928 - type: SignalButton - components: - - name: le funny admin button - type: MetaData - - pos: 14.5,32.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2886 - - port: Toggle - uid: 2790 - type: SignalTransmitter -- uid: 2929 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2930 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2931 - type: Poweredlight - components: - - pos: 12.5,32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2932 - type: Poweredlight - components: - - pos: 6.5,32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2933 - type: Poweredlight - components: - - pos: 9.5,32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2934 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 9.5,27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2935 - type: PoweredSmallLight - components: - - pos: 16.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2936 - type: PoweredSmallLight - components: - - pos: 16.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2937 - type: PoweredSmallLight - components: - - pos: 2.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2938 - type: PoweredSmallLight - components: - - pos: 2.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2939 - type: Poweredlight - components: - - pos: 9.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2940 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2941 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2942 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2943 - type: PoweredSmallLight - components: - - pos: 5.5,19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2944 - type: APCBasic - components: - - pos: 9.5,26.5 - parent: 0 - type: Transform -- uid: 2945 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 7.5,18.5 - parent: 0 - type: Transform -- uid: 2946 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 7.5,30.5 - parent: 0 - type: Transform -- uid: 2947 - type: CableMV - components: - - pos: 15.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2948 - type: CableMV - components: - - pos: 15.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2949 - type: CableMV - components: - - pos: 14.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2950 - type: CableMV - components: - - pos: 14.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2951 - type: CableMV - components: - - pos: 14.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2952 - type: CableMV - components: - - pos: 14.5,15.5 - parent: 0 - type: Transform -- uid: 2953 - type: CableMV - components: - - pos: 14.5,14.5 - parent: 0 - type: Transform -- uid: 2954 - type: CableMV - components: - - pos: 14.5,13.5 - parent: 0 - type: Transform -- uid: 2955 - type: CableMV - components: - - pos: 15.5,13.5 - parent: 0 - type: Transform -- uid: 2956 - type: CableMV - components: - - pos: 16.5,13.5 - parent: 0 - type: Transform -- uid: 2957 - type: CableMV - components: - - pos: 17.5,13.5 - parent: 0 - type: Transform -- uid: 2958 - type: CableMV - components: - - pos: 17.5,14.5 - parent: 0 - type: Transform -- uid: 2959 - type: CableMV - components: - - pos: 17.5,15.5 - parent: 0 - type: Transform -- uid: 2960 - type: CableMV - components: - - pos: 17.5,16.5 - parent: 0 - type: Transform -- uid: 2961 - type: CableMV - components: - - pos: 17.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2962 - type: CableMV - components: - - pos: 17.5,12.5 - parent: 0 - type: Transform -- uid: 2963 - type: CableMV - components: - - pos: 18.5,12.5 - parent: 0 - type: Transform -- uid: 2964 - type: CableMV - components: - - pos: 19.5,12.5 - parent: 0 - type: Transform -- uid: 2965 - type: CableMV - components: - - pos: 20.5,12.5 - parent: 0 - type: Transform -- uid: 2966 - type: CableMV - components: - - pos: 21.5,12.5 - parent: 0 - type: Transform -- uid: 2967 - type: CableMV - components: - - pos: 22.5,12.5 - parent: 0 - type: Transform -- uid: 2968 - type: CableMV - components: - - pos: 23.5,12.5 - parent: 0 - type: Transform -- uid: 2969 - type: CableMV - components: - - pos: 24.5,12.5 - parent: 0 - type: Transform -- uid: 2970 - type: CableMV - components: - - pos: 24.5,13.5 - parent: 0 - type: Transform -- uid: 2971 - type: CableMV - components: - - pos: 24.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2972 - type: CableMV - components: - - pos: 19.5,13.5 - parent: 0 - type: Transform -- uid: 2973 - type: CableMV - components: - - pos: 19.5,14.5 - parent: 0 - type: Transform -- uid: 2974 - type: CableMV - components: - - pos: 19.5,15.5 - parent: 0 - type: Transform -- uid: 2975 - type: CableMV - components: - - pos: 19.5,16.5 - parent: 0 - type: Transform -- uid: 2976 - type: CableMV - components: - - pos: 19.5,17.5 - parent: 0 - type: Transform -- uid: 2977 - type: CableMV - components: - - pos: 19.5,18.5 - parent: 0 - type: Transform -- uid: 2978 - type: CableMV - components: - - pos: 19.5,19.5 - parent: 0 - type: Transform -- uid: 2979 - type: CableMV - components: - - pos: 19.5,20.5 - parent: 0 - type: Transform -- uid: 2980 - type: CableMV - components: - - pos: 19.5,21.5 - parent: 0 - type: Transform -- uid: 2981 - type: CableMV - components: - - pos: 20.5,21.5 - parent: 0 - type: Transform -- uid: 2982 - type: CableMV - components: - - pos: 21.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2983 - type: CableMV - components: - - pos: 25.5,12.5 - parent: 0 - type: Transform -- uid: 2984 - type: CableMV - components: - - pos: 26.5,12.5 - parent: 0 - type: Transform -- uid: 2985 - type: CableMV - components: - - pos: 27.5,12.5 - parent: 0 - type: Transform -- uid: 2986 - type: CableMV - components: - - pos: 28.5,12.5 - parent: 0 - type: Transform -- uid: 2987 - type: CableMV - components: - - pos: 29.5,12.5 - parent: 0 - type: Transform -- uid: 2988 - type: CableMV - components: - - pos: 30.5,12.5 - parent: 0 - type: Transform -- uid: 2989 - type: CableMV - components: - - pos: 31.5,12.5 - parent: 0 - type: Transform -- uid: 2990 - type: CableMV - components: - - pos: 32.5,12.5 - parent: 0 - type: Transform -- uid: 2991 - type: CableMV - components: - - pos: 33.5,12.5 - parent: 0 - type: Transform -- uid: 2992 - type: CableMV - components: - - pos: 34.5,12.5 - parent: 0 - type: Transform -- uid: 2993 - type: CableMV - components: - - pos: 34.5,13.5 - parent: 0 - type: Transform -- uid: 2994 - type: CableMV - components: - - pos: 34.5,14.5 - parent: 0 - type: Transform -- uid: 2995 - type: CableMV - components: - - pos: 34.5,15.5 - parent: 0 - type: Transform -- uid: 2996 - type: CableMV - components: - - pos: 34.5,16.5 - parent: 0 - type: Transform -- uid: 2997 - type: CableMV - components: - - pos: 34.5,17.5 - parent: 0 - type: Transform -- uid: 2998 - type: CableMV - components: - - pos: 34.5,18.5 - parent: 0 - type: Transform -- uid: 2999 - type: CableMV - components: - - pos: 34.5,19.5 - parent: 0 - type: Transform -- uid: 3000 - type: CableMV - components: - - pos: 35.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3001 - type: CableMV - components: - - pos: 13.5,15.5 - parent: 0 - type: Transform -- uid: 3002 - type: CableMV - components: - - pos: 12.5,15.5 - parent: 0 - type: Transform -- uid: 3003 - type: CableMV - components: - - pos: 11.5,15.5 - parent: 0 - type: Transform -- uid: 3004 - type: CableMV - components: - - pos: 10.5,15.5 - parent: 0 - type: Transform -- uid: 3005 - type: CableMV - components: - - pos: 9.5,15.5 - parent: 0 - type: Transform -- uid: 3006 - type: CableMV - components: - - pos: 8.5,15.5 - parent: 0 - type: Transform -- uid: 3007 - type: CableMV - components: - - pos: 7.5,15.5 - parent: 0 - type: Transform -- uid: 3008 - type: CableMV - components: - - pos: 7.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3009 - type: CableMV - components: - - pos: 11.5,16.5 - parent: 0 - type: Transform -- uid: 3010 - type: CableMV - components: - - pos: 11.5,17.5 - parent: 0 - type: Transform -- uid: 3011 - type: CableMV - components: - - pos: 11.5,18.5 - parent: 0 - type: Transform -- uid: 3012 - type: CableMV - components: - - pos: 11.5,19.5 - parent: 0 - type: Transform -- uid: 3013 - type: CableMV - components: - - pos: 11.5,20.5 - parent: 0 - type: Transform -- uid: 3014 - type: CableMV - components: - - pos: 11.5,21.5 - parent: 0 - type: Transform -- uid: 3015 - type: CableMV - components: - - pos: 10.5,21.5 - parent: 0 - type: Transform -- uid: 3016 - type: CableMV - components: - - pos: 9.5,21.5 - parent: 0 - type: Transform -- uid: 3017 - type: CableMV - components: - - pos: 9.5,20.5 - parent: 0 - type: Transform -- uid: 3018 - type: CableMV - components: - - pos: 9.5,19.5 - parent: 0 - type: Transform -- uid: 3019 - type: CableMV - components: - - pos: 9.5,18.5 - parent: 0 - type: Transform -- uid: 3020 - type: CableMV - components: - - pos: 8.5,18.5 - parent: 0 - type: Transform -- uid: 3021 - type: CableMV - components: - - pos: 7.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3022 - type: CableMV - components: - - pos: 9.5,22.5 - parent: 0 - type: Transform -- uid: 3023 - type: CableMV - components: - - pos: 9.5,23.5 - parent: 0 - type: Transform -- uid: 3024 - type: CableMV - components: - - pos: 9.5,24.5 - parent: 0 - type: Transform -- uid: 3025 - type: CableMV - components: - - pos: 9.5,25.5 - parent: 0 - type: Transform -- uid: 3026 - type: CableMV - components: - - pos: 9.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3027 - type: CableMV - components: - - pos: 9.5,27.5 - parent: 0 - type: Transform -- uid: 3028 - type: CableMV - components: - - pos: 9.5,28.5 - parent: 0 - type: Transform -- uid: 3029 - type: CableMV - components: - - pos: 9.5,29.5 - parent: 0 - type: Transform -- uid: 3030 - type: CableMV - components: - - pos: 9.5,30.5 - parent: 0 - type: Transform -- uid: 3031 - type: CableMV - components: - - pos: 8.5,30.5 - parent: 0 - type: Transform -- uid: 3032 - type: CableMV - components: - - pos: 7.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3033 - type: CableApcExtension - components: - - pos: 7.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3034 - type: CableApcExtension - components: - - pos: 8.5,30.5 - parent: 0 - type: Transform -- uid: 3035 - type: CableApcExtension - components: - - pos: 9.5,30.5 - parent: 0 - type: Transform -- uid: 3036 - type: CableApcExtension - components: - - pos: 9.5,31.5 - parent: 0 - type: Transform -- uid: 3037 - type: CableApcExtension - components: - - pos: 10.5,31.5 - parent: 0 - type: Transform -- uid: 3038 - type: CableApcExtension - components: - - pos: 11.5,31.5 - parent: 0 - type: Transform -- uid: 3039 - type: CableApcExtension - components: - - pos: 12.5,31.5 - parent: 0 - type: Transform -- uid: 3040 - type: CableApcExtension - components: - - pos: 13.5,31.5 - parent: 0 - type: Transform -- uid: 3041 - type: CableApcExtension - components: - - pos: 14.5,31.5 - parent: 0 - type: Transform -- uid: 3042 - type: CableApcExtension - components: - - pos: 15.5,31.5 - parent: 0 - type: Transform -- uid: 3043 - type: CableApcExtension - components: - - pos: 8.5,31.5 - parent: 0 - type: Transform -- uid: 3044 - type: CableApcExtension - components: - - pos: 7.5,31.5 - parent: 0 - type: Transform -- uid: 3045 - type: CableApcExtension - components: - - pos: 6.5,31.5 - parent: 0 - type: Transform -- uid: 3046 - type: CableApcExtension - components: - - pos: 5.5,31.5 - parent: 0 - type: Transform -- uid: 3047 - type: CableApcExtension - components: - - pos: 4.5,31.5 - parent: 0 - type: Transform -- uid: 3048 - type: CableApcExtension - components: - - pos: 3.5,31.5 - parent: 0 - type: Transform -- uid: 3049 - type: CableApcExtension - components: - - pos: 9.5,29.5 - parent: 0 - type: Transform -- uid: 3050 - type: CableApcExtension - components: - - pos: 9.5,28.5 - parent: 0 - type: Transform -- uid: 3051 - type: CableApcExtension - components: - - pos: 8.5,29.5 - parent: 0 - type: Transform -- uid: 3052 - type: CableApcExtension - components: - - pos: 7.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3053 - type: CableApcExtension - components: - - pos: 10.5,29.5 - parent: 0 - type: Transform -- uid: 3054 - type: CableApcExtension - components: - - pos: 11.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3055 - type: CableApcExtension - components: - - pos: 9.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3056 - type: CableApcExtension - components: - - pos: 9.5,25.5 - parent: 0 - type: Transform -- uid: 3057 - type: CableApcExtension - components: - - pos: 8.5,25.5 - parent: 0 - type: Transform -- uid: 3058 - type: CableApcExtension - components: - - pos: 8.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3059 - type: CableApcExtension - components: - - pos: 7.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3060 - type: CableApcExtension - components: - - pos: 7.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3061 - type: CableApcExtension - components: - - pos: 10.5,25.5 - parent: 0 - type: Transform -- uid: 3062 - type: CableApcExtension - components: - - pos: 10.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3063 - type: CableApcExtension - components: - - pos: 11.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3064 - type: CableApcExtension - components: - - pos: 11.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3065 - type: CableApcExtension - components: - - pos: 9.5,24.5 - parent: 0 - type: Transform -- uid: 3066 - type: CableApcExtension - components: - - pos: 9.5,23.5 - parent: 0 - type: Transform -- uid: 3067 - type: CableApcExtension - components: - - pos: 9.5,22.5 - parent: 0 - type: Transform -- uid: 3068 - type: CableApcExtension - components: - - pos: 8.5,22.5 - parent: 0 - type: Transform -- uid: 3069 - type: CableApcExtension - components: - - pos: 7.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3070 - type: CableApcExtension - components: - - pos: 7.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3071 - type: CableApcExtension - components: - - pos: 7.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3072 - type: CableApcExtension - components: - - pos: 6.5,18.5 - parent: 0 - type: Transform -- uid: 3073 - type: CableApcExtension - components: - - pos: 5.5,18.5 - parent: 0 - type: Transform -- uid: 3074 - type: CableApcExtension - components: - - pos: 8.5,18.5 - parent: 0 - type: Transform -- uid: 3075 - type: CableApcExtension - components: - - pos: 9.5,18.5 - parent: 0 - type: Transform -- uid: 3076 - type: CableApcExtension - components: - - pos: 10.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3077 - type: CableApcExtension - components: - - pos: 10.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3078 - type: CableApcExtension - components: - - pos: 10.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3079 - type: TableReinforced - components: - - pos: 8.5,17.5 - parent: 0 - type: Transform -- uid: 3080 - type: CableApcExtension - components: - - pos: 8.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3081 - type: CableApcExtension - components: - - pos: 8.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3082 - type: CableApcExtension - components: - - pos: 8.5,19.5 - parent: 0 - type: Transform -- uid: 3083 - type: CableApcExtension - components: - - pos: 11.5,22.5 - parent: 0 - type: Transform -- uid: 3084 - type: CableApcExtension - components: - - pos: 12.5,22.5 - parent: 0 - type: Transform -- uid: 3085 - type: CableApcExtension - components: - - pos: 13.5,22.5 - parent: 0 - type: Transform -- uid: 3086 - type: CableApcExtension - components: - - pos: 14.5,22.5 - parent: 0 - type: Transform -- uid: 3087 - type: CableApcExtension - components: - - pos: 15.5,22.5 - parent: 0 - type: Transform -- uid: 3088 - type: CableApcExtension - components: - - pos: 11.5,25.5 - parent: 0 - type: Transform -- uid: 3089 - type: CableApcExtension - components: - - pos: 12.5,25.5 - parent: 0 - type: Transform -- uid: 3090 - type: CableApcExtension - components: - - pos: 13.5,25.5 - parent: 0 - type: Transform -- uid: 3091 - type: CableApcExtension - components: - - pos: 14.5,25.5 - parent: 0 - type: Transform -- uid: 3092 - type: CableApcExtension - components: - - pos: 15.5,25.5 - parent: 0 - type: Transform -- uid: 3093 - type: CableApcExtension - components: - - pos: 13.5,26.5 - parent: 0 - type: Transform -- uid: 3094 - type: CableApcExtension - components: - - pos: 13.5,27.5 - parent: 0 - type: Transform -- uid: 3095 - type: CableApcExtension - components: - - pos: 13.5,28.5 - parent: 0 - type: Transform -- uid: 3096 - type: CableApcExtension - components: - - pos: 14.5,28.5 - parent: 0 - type: Transform -- uid: 3097 - type: CableApcExtension - components: - - pos: 15.5,28.5 - parent: 0 - type: Transform -- uid: 3098 - type: CableApcExtension - components: - - pos: 7.5,25.5 - parent: 0 - type: Transform -- uid: 3099 - type: CableApcExtension - components: - - pos: 6.5,25.5 - parent: 0 - type: Transform -- uid: 3100 - type: CableApcExtension - components: - - pos: 5.5,25.5 - parent: 0 - type: Transform -- uid: 3101 - type: CableApcExtension - components: - - pos: 4.5,25.5 - parent: 0 - type: Transform -- uid: 3102 - type: CableApcExtension - components: - - pos: 3.5,25.5 - parent: 0 - type: Transform -- uid: 3103 - type: CableApcExtension - components: - - pos: 5.5,26.5 - parent: 0 - type: Transform -- uid: 3104 - type: CableApcExtension - components: - - pos: 5.5,27.5 - parent: 0 - type: Transform -- uid: 3105 - type: CableApcExtension - components: - - pos: 5.5,28.5 - parent: 0 - type: Transform -- uid: 3106 - type: CableApcExtension - components: - - pos: 4.5,28.5 - parent: 0 - type: Transform -- uid: 3107 - type: CableApcExtension - components: - - pos: 3.5,28.5 - parent: 0 - type: Transform -- uid: 3108 - type: CableApcExtension - components: - - pos: 4.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3109 - type: CableApcExtension - components: - - pos: 4.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3110 - type: CableApcExtension - components: - - pos: 14.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3111 - type: CableApcExtension - components: - - pos: 14.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3112 - type: CableApcExtension - components: - - pos: 14.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3113 - type: CableApcExtension - components: - - pos: 6.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3114 - type: CableApcExtension - components: - - pos: 5.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3115 - type: CableApcExtension - components: - - pos: 12.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3116 - type: CableApcExtension - components: - - pos: 13.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3117 - type: Rack - components: - - pos: 5.5,32.5 - parent: 0 - type: Transform -- uid: 3118 - type: Rack - components: - - pos: 6.5,32.5 - parent: 0 - type: Transform -- uid: 3119 - type: Rack - components: - - pos: 12.5,32.5 - parent: 0 - type: Transform -- uid: 3120 - type: Rack - components: - - pos: 13.5,32.5 - parent: 0 - type: Transform -- uid: 3121 - type: WeaponPulsePistol - components: - - pos: 2.6049032,30.46216 - parent: 0 - type: Transform -- uid: 3122 - type: WeaponPulsePistol - components: - - pos: 16.544842,30.55591 - parent: 0 - type: Transform -- uid: 3123 - type: WeaponPulsePistol - components: - - pos: 16.685467,30.39966 - parent: 0 - type: Transform -- uid: 3124 - type: WeaponPulseCarbine - components: - - pos: 12.544843,32.634033 - parent: 0 - type: Transform -- uid: 3125 - type: WeaponPulseCarbine - components: - - pos: 12.669843,32.477783 - parent: 0 - type: Transform -- uid: 3126 - type: WeaponShotgunKammerer - components: - - pos: 10.519303,30.544327 - parent: 0 - type: Transform -- uid: 3127 - type: WeaponShotgunKammerer - components: - - pos: 10.566178,30.403702 - parent: 0 - type: Transform -- uid: 3128 - type: WeaponShotgunKammerer - components: - - pos: 10.613053,30.263077 - parent: 0 - type: Transform -- uid: 3129 - type: WeaponSubMachineGunWt550 - components: - - pos: 4.532072,18.989985 - parent: 0 - type: Transform -- uid: 3130 - type: WeaponAdvancedLaser - components: - - pos: 10.557603,32.615883 - parent: 0 - type: Transform -- uid: 3131 - type: WeaponAdvancedLaser - components: - - pos: 10.604478,32.490883 - parent: 0 - type: Transform -- uid: 3132 - type: WeaponAdvancedLaser - components: - - pos: 10.651353,32.365883 - parent: 0 - type: Transform -- uid: 3133 - type: WeaponPistolMk58 - components: - - pos: 8.526353,30.524189 - parent: 0 - type: Transform -- uid: 3134 - type: WeaponPistolMk58 - components: - - pos: 8.588853,30.446064 - parent: 0 - type: Transform -- uid: 3135 - type: WeaponPistolMk58 - components: - - pos: 8.635728,30.305439 - parent: 0 - type: Transform -- uid: 3136 - type: WeaponXrayCannon - components: - - pos: 8.510728,32.664814 - parent: 0 - type: Transform -- uid: 3137 - type: WeaponXrayCannon - components: - - pos: 8.526353,32.55544 - parent: 0 - type: Transform -- uid: 3138 - type: WeaponSniperHristov - components: - - pos: 8.479478,29.789814 - parent: 0 - type: Transform -- uid: 3139 - type: WeaponSniperHristov - components: - - pos: 8.495103,29.586689 - parent: 0 - type: Transform -- uid: 3140 - type: WeaponRifleLecter - components: - - pos: 8.530321,29.994818 - parent: 0 - type: Transform -- uid: 3141 - type: WeaponRifleLecter - components: - - pos: 8.530321,30.088568 - parent: 0 - type: Transform -- uid: 3142 - type: Table - components: - - pos: 10.5,25.5 - parent: 0 - type: Transform -- uid: 3143 - type: Table - components: - - pos: 9.5,25.5 - parent: 0 - type: Transform -- uid: 3144 - type: DeployableBarrier - components: - - anchored: False - pos: 6.5,29.5 - parent: 0 - type: Transform -- uid: 3145 - type: DeployableBarrier - components: - - anchored: False - pos: 5.5,29.5 - parent: 0 - type: Transform -- uid: 3146 - type: DeployableBarrier - components: - - anchored: False - pos: 12.5,29.5 - parent: 0 - type: Transform -- uid: 3147 - type: DeployableBarrier - components: - - anchored: False - pos: 13.5,29.5 - parent: 0 - type: Transform -- uid: 3148 - type: LockerEvidence - components: - - pos: 8.5,25.5 - parent: 0 - type: Transform -- uid: 3149 - type: VehicleKeySecway - components: - - pos: 10.387553,25.600338 - parent: 0 - type: Transform -- uid: 3150 - type: BoxHandcuff - components: - - pos: 10.465678,25.678463 - parent: 0 - type: Transform -- uid: 3151 - type: ClothingBeltSecurityFilled - components: - - pos: 9.512553,25.678463 - parent: 0 - type: Transform -- uid: 3152 - type: ClothingBeltSecurityFilled - components: - - pos: 9.637553,25.537838 - parent: 0 - type: Transform -- uid: 3153 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: 4.5554476,19.207918 - parent: 0 - type: Transform -- uid: 3154 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: 4.5710726,19.317293 - parent: 0 - type: Transform -- uid: 3155 - type: EmergencyLight - components: - - pos: 9.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3156 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3157 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3158 - type: EmergencyLight - components: - - pos: 7.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3159 - type: EmergencyLight - components: - - pos: 24.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3160 - type: EmergencyLight - components: - - pos: 29.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3161 - type: EmergencyLight - components: - - pos: 23.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3162 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3163 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3164 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3165 - type: EmergencyLight - components: - - pos: -6.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3166 - type: EmergencyLight - components: - - pos: -2.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3167 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3168 - type: EmergencyLight - components: - - pos: -2.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3169 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3170 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3171 - type: EmergencyLight - components: - - pos: 18.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3172 - type: Chair - components: - - pos: 8.5,15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3173 - type: Chair - components: - - pos: 7.5,15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3174 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3175 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 8.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3176 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 7.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3177 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 13.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3178 - type: PottedPlant21 - components: - - pos: 6.5,10.5 - parent: 0 - type: Transform -- uid: 3179 - type: PottedPlant21 - components: - - pos: 13.5,15.5 - parent: 0 - type: Transform -- uid: 3180 - type: PottedPlant22 - components: - - pos: 6.5,15.5 - parent: 0 - type: Transform -- uid: 3181 - type: PottedPlant22 - components: - - pos: 14.5,10.5 - parent: 0 - type: Transform -- uid: 3182 - type: Table - components: - - pos: 10.5,15.5 - parent: 0 - type: Transform -- uid: 3183 - type: Table - components: - - pos: 10.5,10.5 - parent: 0 - type: Transform -- uid: 3184 - type: WallRiveted - components: - - pos: 0.5,26.5 - parent: 0 - type: Transform -- uid: 3185 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,10.5 - parent: 0 - type: Transform -- uid: 3186 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,10.5 - parent: 0 - type: Transform -- uid: 3187 - type: WallRiveted - components: - - pos: 0.5,27.5 - parent: 0 - type: Transform -- uid: 3188 - type: WallRiveted - components: - - pos: 0.5,28.5 - parent: 0 - type: Transform -- uid: 3189 - type: WallRiveted - components: - - pos: 0.5,29.5 - parent: 0 - type: Transform -- uid: 3190 - type: WallRiveted - components: - - pos: 0.5,30.5 - parent: 0 - type: Transform -- uid: 3191 - type: WallRiveted - components: - - pos: 0.5,31.5 - parent: 0 - type: Transform -- uid: 3192 - type: WallRiveted - components: - - pos: 0.5,32.5 - parent: 0 - type: Transform -- uid: 3193 - type: WallRiveted - components: - - pos: 0.5,33.5 - parent: 0 - type: Transform -- uid: 3194 - type: WallRiveted - components: - - pos: 0.5,34.5 - parent: 0 - type: Transform -- uid: 3195 - type: WallRiveted - components: - - pos: 1.5,34.5 - parent: 0 - type: Transform -- uid: 3196 - type: WallRiveted - components: - - pos: 2.5,34.5 - parent: 0 - type: Transform -- uid: 3197 - type: WallRiveted - components: - - pos: 3.5,34.5 - parent: 0 - type: Transform -- uid: 3198 - type: WallRiveted - components: - - pos: 4.5,34.5 - parent: 0 - type: Transform -- uid: 3199 - type: WallRiveted - components: - - pos: 5.5,34.5 - parent: 0 - type: Transform -- uid: 3200 - type: WallRiveted - components: - - pos: 6.5,34.5 - parent: 0 - type: Transform -- uid: 3201 - type: WallRiveted - components: - - pos: 7.5,34.5 - parent: 0 - type: Transform -- uid: 3202 - type: WallRiveted - components: - - pos: 8.5,34.5 - parent: 0 - type: Transform -- uid: 3203 - type: WallRiveted - components: - - pos: 9.5,34.5 - parent: 0 - type: Transform -- uid: 3204 - type: WallRiveted - components: - - pos: 10.5,34.5 - parent: 0 - type: Transform -- uid: 3205 - type: WallRiveted - components: - - pos: 11.5,34.5 - parent: 0 - type: Transform -- uid: 3206 - type: WallRiveted - components: - - pos: 12.5,34.5 - parent: 0 - type: Transform -- uid: 3207 - type: WallRiveted - components: - - pos: 13.5,34.5 - parent: 0 - type: Transform -- uid: 3208 - type: WallRiveted - components: - - pos: 14.5,34.5 - parent: 0 - type: Transform -- uid: 3209 - type: WallRiveted - components: - - pos: 15.5,34.5 - parent: 0 - type: Transform -- uid: 3210 - type: WallRiveted - components: - - pos: 16.5,34.5 - parent: 0 - type: Transform -- uid: 3211 - type: WallRiveted - components: - - pos: 17.5,34.5 - parent: 0 - type: Transform -- uid: 3212 - type: WallRiveted - components: - - pos: 18.5,34.5 - parent: 0 - type: Transform -- uid: 3213 - type: WallRiveted - components: - - pos: 18.5,33.5 - parent: 0 - type: Transform -- uid: 3214 - type: WallRiveted - components: - - pos: 18.5,32.5 - parent: 0 - type: Transform -- uid: 3215 - type: WallRiveted - components: - - pos: 18.5,31.5 - parent: 0 - type: Transform -- uid: 3216 - type: WallRiveted - components: - - pos: 18.5,30.5 - parent: 0 - type: Transform -- uid: 3217 - type: WallRiveted - components: - - pos: 18.5,29.5 - parent: 0 - type: Transform -- uid: 3218 - type: WallRiveted - components: - - pos: 18.5,28.5 - parent: 0 - type: Transform -- uid: 3219 - type: WallRiveted - components: - - pos: 18.5,27.5 - parent: 0 - type: Transform -- uid: 3220 - type: WallRiveted - components: - - pos: 18.5,26.5 - parent: 0 - type: Transform -- uid: 3221 - type: WallRiveted - components: - - pos: 18.5,25.5 - parent: 0 - type: Transform -- uid: 3222 - type: WallRiveted - components: - - pos: 35.5,25.5 - parent: 0 - type: Transform -- uid: 3223 - type: WallRiveted - components: - - pos: 34.5,25.5 - parent: 0 - type: Transform -- uid: 3224 - type: WallRiveted - components: - - pos: 33.5,25.5 - parent: 0 - type: Transform -- uid: 3225 - type: WallRiveted - components: - - pos: 32.5,25.5 - parent: 0 - type: Transform -- uid: 3226 - type: WallRiveted - components: - - pos: 31.5,25.5 - parent: 0 - type: Transform -- uid: 3227 - type: WallRiveted - components: - - pos: 30.5,25.5 - parent: 0 - type: Transform -- uid: 3228 - type: WallRiveted - components: - - pos: 29.5,25.5 - parent: 0 - type: Transform -- uid: 3229 - type: WallRiveted - components: - - pos: 28.5,25.5 - parent: 0 - type: Transform -- uid: 3230 - type: WallRiveted - components: - - pos: 27.5,25.5 - parent: 0 - type: Transform -- uid: 3231 - type: WallRiveted - components: - - pos: 26.5,25.5 - parent: 0 - type: Transform -- uid: 3232 - type: WallRiveted - components: - - pos: 25.5,25.5 - parent: 0 - type: Transform -- uid: 3233 - type: WallRiveted - components: - - pos: 24.5,25.5 - parent: 0 - type: Transform -- uid: 3234 - type: WallRiveted - components: - - pos: 23.5,25.5 - parent: 0 - type: Transform -- uid: 3235 - type: WallRiveted - components: - - pos: 22.5,25.5 - parent: 0 - type: Transform -- uid: 3236 - type: WallRiveted - components: - - pos: 21.5,25.5 - parent: 0 - type: Transform -- uid: 3237 - type: WallRiveted - components: - - pos: 20.5,25.5 - parent: 0 - type: Transform -- uid: 3238 - type: WallRiveted - components: - - pos: 19.5,25.5 - parent: 0 - type: Transform -- uid: 3239 - type: Catwalk - components: - - pos: -2.5,26.5 - parent: 0 - type: Transform -- uid: 3240 - type: Catwalk - components: - - pos: -2.5,27.5 - parent: 0 - type: Transform -- uid: 3241 - type: Catwalk - components: - - pos: -2.5,28.5 - parent: 0 - type: Transform -- uid: 3242 - type: Catwalk - components: - - pos: -2.5,29.5 - parent: 0 - type: Transform -- uid: 3243 - type: Catwalk - components: - - pos: -2.5,30.5 - parent: 0 - type: Transform -- uid: 3244 - type: Catwalk - components: - - pos: -2.5,31.5 - parent: 0 - type: Transform -- uid: 3245 - type: PoweredlightSodium - components: - - rot: 3.141592653589793 rad - pos: -1.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3246 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -2.5,32.5 - parent: 0 - type: Transform -- uid: 3247 - type: ClothingUniformJumpsuitSecGrey - components: - - pos: 3.300664,32.693604 - parent: 0 - type: Transform -- uid: 3248 - type: ClothingUniformJumpsuitSecGrey - components: - - pos: 3.425664,32.818604 - parent: 0 - type: Transform -- uid: 3249 - type: ClothingUniformJumpsuitSecGrey - components: - - pos: 15.331914,32.724854 - parent: 0 - type: Transform -- uid: 3250 - type: ClothingUniformJumpsuitSecGrey - components: - - pos: 15.472539,32.787354 - parent: 0 - type: Transform -- uid: 3251 - type: Catwalk - components: - - pos: 14.5,17.5 - parent: 0 - type: Transform -- uid: 3252 - type: Catwalk - components: - - pos: 14.5,18.5 - parent: 0 - type: Transform -- uid: 3253 - type: Catwalk - components: - - pos: 15.5,18.5 - parent: 0 - type: Transform -- uid: 3254 - type: ClosetToolFilled - components: - - pos: 14.5,19.5 - parent: 0 - type: Transform -- uid: 3255 - type: TableReinforced - components: - - pos: 16.5,19.5 - parent: 0 - type: Transform -- uid: 3256 - type: ComputerPowerMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 16.5,18.5 - parent: 0 - type: Transform -- uid: 3257 - type: CableHV - components: - - pos: 16.5,18.5 - parent: 0 - type: Transform -- uid: 3258 - type: ComputerCriminalRecords - components: - - rot: 1.5707963267948966 rad - pos: 8.5,22.5 - parent: 0 - type: Transform -- uid: 3259 - type: VendingMachineSec - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,21.5 - parent: 0 - type: Transform -- uid: 3260 - type: Table - components: - - pos: 8.5,23.5 - parent: 0 - type: Transform -- uid: 3261 - type: WeaponCapacitorRecharger - components: - - pos: 8.5,23.5 - parent: 0 - type: Transform -- uid: 3262 - type: WallRiveted - components: - - pos: -10.5,-10.5 - parent: 0 - type: Transform -- uid: 3263 - type: WallRiveted - components: - - pos: -11.5,-10.5 - parent: 0 - type: Transform -- uid: 3264 - type: WallRiveted - components: - - pos: -12.5,-10.5 - parent: 0 - type: Transform -- uid: 3265 - type: WallRiveted - components: - - pos: -13.5,-10.5 - parent: 0 - type: Transform -- uid: 3266 - type: WallRiveted - components: - - pos: -14.5,-10.5 - parent: 0 - type: Transform -- uid: 3267 - type: WallRiveted - components: - - pos: -15.5,-10.5 - parent: 0 - type: Transform -- uid: 3268 - type: WallRiveted - components: - - pos: -16.5,-10.5 - parent: 0 - type: Transform -- uid: 3269 - type: WallRiveted - components: - - pos: -17.5,-10.5 - parent: 0 - type: Transform -- uid: 3270 - type: WallRiveted - components: - - pos: -18.5,-10.5 - parent: 0 - type: Transform -- uid: 3271 - type: WallRiveted - components: - - pos: -19.5,-10.5 - parent: 0 - type: Transform -- uid: 3272 - type: WallRiveted - components: - - pos: -20.5,-10.5 - parent: 0 - type: Transform -- uid: 3273 - type: WallRiveted - components: - - pos: -21.5,-10.5 - parent: 0 - type: Transform -- uid: 3274 - type: WallRiveted - components: - - pos: -17.5,13.5 - parent: 0 - type: Transform -- uid: 3275 - type: WallRiveted - components: - - pos: -18.5,13.5 - parent: 0 - type: Transform -- uid: 3276 - type: WallRiveted - components: - - pos: -19.5,13.5 - parent: 0 - type: Transform -- uid: 3277 - type: WallRiveted - components: - - pos: -19.5,14.5 - parent: 0 - type: Transform -- uid: 3278 - type: WallRiveted - components: - - pos: -19.5,15.5 - parent: 0 - type: Transform -- uid: 3279 - type: WallRiveted - components: - - pos: -19.5,16.5 - parent: 0 - type: Transform -- uid: 3280 - type: WallRiveted - components: - - pos: -20.5,16.5 - parent: 0 - type: Transform -- uid: 3281 - type: WallRiveted - components: - - pos: -21.5,16.5 - parent: 0 - type: Transform -- uid: 3282 - type: WallRiveted - components: - - pos: -22.5,16.5 - parent: 0 - type: Transform -- uid: 3283 - type: WallRiveted - components: - - pos: -22.5,15.5 - parent: 0 - type: Transform -- uid: 3284 - type: WallRiveted - components: - - pos: -22.5,14.5 - parent: 0 - type: Transform -- uid: 3285 - type: WallRiveted - components: - - pos: -22.5,13.5 - parent: 0 - type: Transform -- uid: 3286 - type: WallRiveted - components: - - pos: -20.5,13.5 - parent: 0 - type: Transform -- uid: 3287 - type: ReinforcedWindow - components: - - pos: -10.5,1.5 - parent: 0 - type: Transform -- uid: 3288 - type: ReinforcedWindow - components: - - pos: -11.5,1.5 - parent: 0 - type: Transform -- uid: 3289 - type: ReinforcedWindow - components: - - pos: -12.5,1.5 - parent: 0 - type: Transform -- uid: 3290 - type: ReinforcedWindow - components: - - pos: -14.5,1.5 - parent: 0 - type: Transform -- uid: 3291 - type: ReinforcedWindow - components: - - pos: -15.5,1.5 - parent: 0 - type: Transform -- uid: 3292 - type: ReinforcedWindow - components: - - pos: -16.5,1.5 - parent: 0 - type: Transform -- uid: 3293 - type: ReinforcedWindow - components: - - pos: -13.5,2.5 - parent: 0 - type: Transform -- uid: 3294 - type: WallRiveted - components: - - pos: -10.5,3.5 - parent: 0 - type: Transform -- uid: 3295 - type: WallRiveted - components: - - pos: -11.5,3.5 - parent: 0 - type: Transform -- uid: 3296 - type: WallRiveted - components: - - pos: -12.5,3.5 - parent: 0 - type: Transform -- uid: 3297 - type: WallRiveted - components: - - pos: -13.5,3.5 - parent: 0 - type: Transform -- uid: 3298 - type: WallRiveted - components: - - pos: -14.5,3.5 - parent: 0 - type: Transform -- uid: 3299 - type: WallRiveted - components: - - pos: -15.5,3.5 - parent: 0 - type: Transform -- uid: 3300 - type: WallRiveted - components: - - pos: -16.5,3.5 - parent: 0 - type: Transform -- uid: 3301 - type: WallRiveted - components: - - pos: -17.5,3.5 - parent: 0 - type: Transform -- uid: 3302 - type: WallRiveted - components: - - pos: -17.5,2.5 - parent: 0 - type: Transform -- uid: 3303 - type: WallRiveted - components: - - pos: -17.5,1.5 - parent: 0 - type: Transform -- uid: 3304 - type: WallRiveted - components: - - pos: -13.5,1.5 - parent: 0 - type: Transform -- uid: 3305 - type: WallRiveted - components: - - pos: -10.5,-2.5 - parent: 0 - type: Transform -- uid: 3306 - type: WallRiveted - components: - - pos: -11.5,-2.5 - parent: 0 - type: Transform -- uid: 3307 - type: WallRiveted - components: - - pos: -12.5,-2.5 - parent: 0 - type: Transform -- uid: 3308 - type: WallRiveted - components: - - pos: -13.5,-2.5 - parent: 0 - type: Transform -- uid: 3309 - type: WallRiveted - components: - - pos: -14.5,-2.5 - parent: 0 - type: Transform -- uid: 3310 - type: WallRiveted - components: - - pos: -15.5,-2.5 - parent: 0 - type: Transform -- uid: 3311 - type: WallRiveted - components: - - pos: -16.5,-2.5 - parent: 0 - type: Transform -- uid: 3312 - type: WallRiveted - components: - - pos: -17.5,-2.5 - parent: 0 - type: Transform -- uid: 3313 - type: WallRiveted - components: - - pos: -16.5,-3.5 - parent: 0 - type: Transform -- uid: 3314 - type: WallRiveted - components: - - pos: -16.5,-4.5 - parent: 0 - type: Transform -- uid: 3315 - type: WallRiveted - components: - - pos: -16.5,-9.5 - parent: 0 - type: Transform -- uid: 3316 - type: WallRiveted - components: - - pos: -16.5,-8.5 - parent: 0 - type: Transform -- uid: 3317 - type: WallRiveted - components: - - pos: -18.5,1.5 - parent: 0 - type: Transform -- uid: 3318 - type: WallRiveted - components: - - pos: -19.5,1.5 - parent: 0 - type: Transform -- uid: 3319 - type: WallRiveted - components: - - pos: -20.5,1.5 - parent: 0 - type: Transform -- uid: 3320 - type: WallRiveted - components: - - pos: -23.5,13.5 - parent: 0 - type: Transform -- uid: 3321 - type: WallRiveted - components: - - pos: -24.5,13.5 - parent: 0 - type: Transform -- uid: 3322 - type: WallRiveted - components: - - pos: -25.5,13.5 - parent: 0 - type: Transform -- uid: 3323 - type: WallRiveted - components: - - pos: -26.5,13.5 - parent: 0 - type: Transform -- uid: 3324 - type: WallRiveted - components: - - pos: -27.5,13.5 - parent: 0 - type: Transform -- uid: 3325 - type: WallRiveted - components: - - pos: -27.5,10.5 - parent: 0 - type: Transform -- uid: 3326 - type: WallRiveted - components: - - pos: -27.5,7.5 - parent: 0 - type: Transform -- uid: 3327 - type: ReinforcedWindow - components: - - pos: -27.5,8.5 - parent: 0 - type: Transform -- uid: 3328 - type: ReinforcedWindow - components: - - pos: -27.5,9.5 - parent: 0 - type: Transform -- uid: 3329 - type: ReinforcedWindow - components: - - pos: -27.5,12.5 - parent: 0 - type: Transform -- uid: 3330 - type: ReinforcedWindow - components: - - pos: -27.5,11.5 - parent: 0 - type: Transform -- uid: 3331 - type: WallRiveted - components: - - pos: -17.5,12.5 - parent: 0 - type: Transform -- uid: 3332 - type: WallRiveted - components: - - pos: -17.5,10.5 - parent: 0 - type: Transform -- uid: 3333 - type: WallRiveted - components: - - pos: -17.5,9.5 - parent: 0 - type: Transform -- uid: 3334 - type: WallRiveted - components: - - pos: -17.5,8.5 - parent: 0 - type: Transform -- uid: 3335 - type: WallRiveted - components: - - pos: -17.5,7.5 - parent: 0 - type: Transform -- uid: 3336 - type: WallRiveted - components: - - pos: -13.5,6.5 - parent: 0 - type: Transform -- uid: 3337 - type: WallRiveted - components: - - pos: -13.5,4.5 - parent: 0 - type: Transform -- uid: 3338 - type: WallRiveted - components: - - pos: -14.5,7.5 - parent: 0 - type: Transform -- uid: 3339 - type: WallRiveted - components: - - pos: -15.5,7.5 - parent: 0 - type: Transform -- uid: 3340 - type: WallRiveted - components: - - pos: -16.5,7.5 - parent: 0 - type: Transform -- uid: 3341 - type: WallRiveted - components: - - pos: -17.5,4.5 - parent: 0 - type: Transform -- uid: 3342 - type: WallRiveted - components: - - pos: -17.5,6.5 - parent: 0 - type: Transform -- uid: 3343 - type: WallRiveted - components: - - pos: -18.5,7.5 - parent: 0 - type: Transform -- uid: 3344 - type: WallRiveted - components: - - pos: -20.5,7.5 - parent: 0 - type: Transform -- uid: 3345 - type: WallRiveted - components: - - pos: -21.5,7.5 - parent: 0 - type: Transform -- uid: 3346 - type: WallRiveted - components: - - pos: -22.5,7.5 - parent: 0 - type: Transform -- uid: 3347 - type: WallRiveted - components: - - pos: -22.5,1.5 - parent: 0 - type: Transform -- uid: 3348 - type: WallRiveted - components: - - pos: -26.5,7.5 - parent: 0 - type: Transform -- uid: 3349 - type: WallRiveted - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 3350 - type: WallRiveted - components: - - pos: -24.5,7.5 - parent: 0 - type: Transform -- uid: 3351 - type: WallRiveted - components: - - pos: -25.5,6.5 - parent: 0 - type: Transform -- uid: 3352 - type: WallRiveted - components: - - pos: -23.5,1.5 - parent: 0 - type: Transform -- uid: 3353 - type: WallRiveted - components: - - pos: -24.5,1.5 - parent: 0 - type: Transform -- uid: 3354 - type: WallRiveted - components: - - pos: -25.5,1.5 - parent: 0 - type: Transform -- uid: 3355 - type: WallRiveted - components: - - pos: -25.5,2.5 - parent: 0 - type: Transform -- uid: 3356 - type: WallRiveted - components: - - pos: -25.5,3.5 - parent: 0 - type: Transform -- uid: 3357 - type: WallRiveted - components: - - pos: -25.5,4.5 - parent: 0 - type: Transform -- uid: 3358 - type: WallRiveted - components: - - pos: -25.5,5.5 - parent: 0 - type: Transform -- uid: 3359 - type: WallRiveted - components: - - pos: -28.5,1.5 - parent: 0 - type: Transform -- uid: 3360 - type: WallRiveted - components: - - pos: -28.5,2.5 - parent: 0 - type: Transform -- uid: 3361 - type: WallRiveted - components: - - pos: -28.5,3.5 - parent: 0 - type: Transform -- uid: 3362 - type: WallRiveted - components: - - pos: -26.5,1.5 - parent: 0 - type: Transform -- uid: 3363 - type: WallRiveted - components: - - pos: -28.5,5.5 - parent: 0 - type: Transform -- uid: 3364 - type: WallRiveted - components: - - pos: -28.5,6.5 - parent: 0 - type: Transform -- uid: 3365 - type: WallRiveted - components: - - pos: -28.5,7.5 - parent: 0 - type: Transform -- uid: 3366 - type: WallRiveted - components: - - pos: -27.5,1.5 - parent: 0 - type: Transform -- uid: 3367 - type: WallRiveted - components: - - pos: -22.5,-10.5 - parent: 0 - type: Transform -- uid: 3368 - type: WallRiveted - components: - - pos: -23.5,-10.5 - parent: 0 - type: Transform -- uid: 3369 - type: WallRiveted - components: - - pos: -24.5,-10.5 - parent: 0 - type: Transform -- uid: 3370 - type: WallRiveted - components: - - pos: -25.5,-10.5 - parent: 0 - type: Transform -- uid: 3371 - type: WallRiveted - components: - - pos: -26.5,-10.5 - parent: 0 - type: Transform -- uid: 3372 - type: WallRiveted - components: - - pos: -27.5,-10.5 - parent: 0 - type: Transform -- uid: 3373 - type: WallRiveted - components: - - pos: -28.5,-10.5 - parent: 0 - type: Transform -- uid: 3374 - type: WallRiveted - components: - - pos: -18.5,-2.5 - parent: 0 - type: Transform -- uid: 3375 - type: WallRiveted - components: - - pos: -19.5,-2.5 - parent: 0 - type: Transform -- uid: 3376 - type: WallRiveted - components: - - pos: -23.5,-2.5 - parent: 0 - type: Transform -- uid: 3377 - type: WallRiveted - components: - - pos: -24.5,-2.5 - parent: 0 - type: Transform -- uid: 3378 - type: WallRiveted - components: - - pos: -25.5,-2.5 - parent: 0 - type: Transform -- uid: 3379 - type: WallRiveted - components: - - pos: -26.5,-2.5 - parent: 0 - type: Transform -- uid: 3380 - type: WallRiveted - components: - - pos: -27.5,-2.5 - parent: 0 - type: Transform -- uid: 3381 - type: WallRiveted - components: - - pos: -28.5,-2.5 - parent: 0 - type: Transform -- uid: 3382 - type: WallRiveted - components: - - pos: -28.5,-3.5 - parent: 0 - type: Transform -- uid: 3383 - type: WallRiveted - components: - - pos: -28.5,-4.5 - parent: 0 - type: Transform -- uid: 3384 - type: WallRiveted - components: - - pos: -28.5,-9.5 - parent: 0 - type: Transform -- uid: 3385 - type: ReinforcedWindow - components: - - pos: -28.5,-0.5 - parent: 0 - type: Transform -- uid: 3386 - type: ReinforcedWindow - components: - - pos: -26.5,-0.5 - parent: 0 - type: Transform -- uid: 3387 - type: Grille - components: - - pos: -26.5,-0.5 - parent: 0 - type: Transform -- uid: 3388 - type: Grille - components: - - pos: -28.5,-0.5 - parent: 0 - type: Transform -- uid: 3389 - type: Grille - components: - - pos: -27.5,11.5 - parent: 0 - type: Transform -- uid: 3390 - type: Grille - components: - - pos: -27.5,12.5 - parent: 0 - type: Transform -- uid: 3391 - type: Grille - components: - - pos: -27.5,8.5 - parent: 0 - type: Transform -- uid: 3392 - type: Grille - components: - - pos: -27.5,9.5 - parent: 0 - type: Transform -- uid: 3393 - type: Fireplace - components: - - pos: -23.5,12.5 - parent: 0 - type: Transform -- uid: 3394 - type: TableWood - components: - - pos: -25.5,8.5 - parent: 0 - type: Transform -- uid: 3395 - type: TableWood - components: - - pos: -26.5,8.5 - parent: 0 - type: Transform -- uid: 3396 - type: TableWood - components: - - pos: -26.5,9.5 - parent: 0 - type: Transform -- uid: 3397 - type: TableWood - components: - - pos: -26.5,11.5 - parent: 0 - type: Transform -- uid: 3398 - type: TableWood - components: - - pos: -26.5,12.5 - parent: 0 - type: Transform -- uid: 3399 - type: TableWood - components: - - pos: -25.5,12.5 - parent: 0 - type: Transform -- uid: 3400 - type: TableWood - components: - - pos: -15.5,12.5 - parent: 0 - type: Transform -- uid: 3401 - type: TableWood - components: - - pos: -14.5,12.5 - parent: 0 - type: Transform -- uid: 3402 - type: TableWood - components: - - pos: -16.5,12.5 - parent: 0 - type: Transform -- uid: 3403 - type: TableWood - components: - - pos: -16.5,8.5 - parent: 0 - type: Transform -- uid: 3404 - type: TableWood - components: - - pos: -19.5,10.5 - parent: 0 - type: Transform -- uid: 3405 - type: TableWood - components: - - pos: -20.5,10.5 - parent: 0 - type: Transform -- uid: 3406 - type: TableWood - components: - - pos: -20.5,11.5 - parent: 0 - type: Transform -- uid: 3407 - type: TableWood - components: - - pos: -20.5,12.5 - parent: 0 - type: Transform -- uid: 3408 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,8.5 - parent: 0 - type: Transform -- uid: 3409 - type: TableWood - components: - - pos: -18.5,8.5 - parent: 0 - type: Transform -- uid: 3410 - type: TableWood - components: - - pos: -24.5,4.5 - parent: 0 - type: Transform -- uid: 3411 - type: TableWood - components: - - pos: -23.5,4.5 - parent: 0 - type: Transform -- uid: 3412 - type: TableReinforced - components: - - pos: -18.5,4.5 - parent: 0 - type: Transform -- uid: 3413 - type: TableReinforced - components: - - pos: -19.5,4.5 - parent: 0 - type: Transform -- uid: 3414 - type: TableReinforced - components: - - pos: -20.5,4.5 - parent: 0 - type: Transform -- uid: 3415 - type: TableReinforced - components: - - pos: -20.5,5.5 - parent: 0 - type: Transform -- uid: 3416 - type: TableReinforced - components: - - pos: -20.5,6.5 - parent: 0 - type: Transform -- uid: 3417 - type: TableWood - components: - - pos: -23.5,2.5 - parent: 0 - type: Transform -- uid: 3418 - type: TableWood - components: - - pos: -18.5,2.5 - parent: 0 - type: Transform -- uid: 3419 - type: AirlockFreezer - components: - - pos: -21.5,13.5 - parent: 0 - type: Transform -- uid: 3420 - type: ToiletEmpty - components: - - rot: 1.5707963267948966 rad - pos: -21.5,15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3421 - type: FloorDrain - components: - - pos: -20.5,15.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 3422 - type: HospitalCurtainsOpen - components: - - pos: -20.5,15.5 - parent: 0 - type: Transform -- uid: 3423 - type: ToyRubberDuck - components: - - pos: -20.47715,15.513819 - parent: 0 - type: Transform -- uid: 3424 - type: SoapDeluxe - components: - - pos: -20.47715,15.560694 - parent: 0 - type: Transform -- uid: 3425 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -20.5,14.5 - parent: 0 - type: Transform -- uid: 3426 - type: Mirror - components: - - pos: -19.5,14.5 - parent: 0 - type: Transform -- uid: 3427 - type: HighSecCaptainLocked - components: - - pos: -17.5,5.5 - parent: 0 - type: Transform -- uid: 3428 - type: HighSecCaptainLocked - components: - - pos: -21.5,1.5 - parent: 0 - type: Transform -- uid: 3429 - type: HighSecCaptainLocked - components: - - pos: -19.5,7.5 - parent: 0 - type: Transform -- uid: 3430 - type: HighSecCaptainLocked - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 3431 - type: HighSecCaptainLocked - components: - - pos: -17.5,11.5 - parent: 0 - type: Transform -- uid: 3432 - type: SubstationBasic - components: - - pos: -15.5,6.5 - parent: 0 - type: Transform -- uid: 3433 - type: Bookshelf - components: - - pos: -24.5,2.5 - parent: 0 - type: Transform -- uid: 3434 - type: Bookshelf - components: - - pos: -26.5,10.5 - parent: 0 - type: Transform -- uid: 3435 - type: Dresser - components: - - pos: -14.5,8.5 - parent: 0 - type: Transform -- uid: 3436 - type: Grille - components: - - pos: -13.5,2.5 - parent: 0 - type: Transform -- uid: 3437 - type: Grille - components: - - pos: -10.5,1.5 - parent: 0 - type: Transform -- uid: 3438 - type: Grille - components: - - pos: -11.5,1.5 - parent: 0 - type: Transform -- uid: 3439 - type: Grille - components: - - pos: -12.5,1.5 - parent: 0 - type: Transform -- uid: 3440 - type: Grille - components: - - pos: -14.5,1.5 - parent: 0 - type: Transform -- uid: 3441 - type: Grille - components: - - pos: -15.5,1.5 - parent: 0 - type: Transform -- uid: 3442 - type: Grille - components: - - pos: -16.5,1.5 - parent: 0 - type: Transform -- uid: 3443 - type: WallRiveted - components: - - pos: -17.5,14.5 - parent: 0 - type: Transform -- uid: 3444 - type: WallRiveted - components: - - pos: -18.5,14.5 - parent: 0 - type: Transform -- uid: 3445 - type: TableWood - components: - - pos: -23.5,10.5 - parent: 0 - type: Transform -- uid: 3446 - type: TableWood - components: - - pos: -23.5,11.5 - parent: 0 - type: Transform -- uid: 3447 - type: ComputerComms - components: - - pos: -19.5,12.5 - parent: 0 - type: Transform -- uid: 3448 - type: ComputerId - components: - - pos: -18.5,12.5 - parent: 0 - type: Transform -- uid: 3449 - type: WallmountTelescreen - components: - - pos: -18.5,7.5 - parent: 0 - type: Transform -- uid: 3450 - type: PosterLegitNanotrasenLogo - components: - - pos: -13.5,1.5 - parent: 0 - type: Transform -- uid: 3451 - type: SignSecureMed - components: - - pos: -20.5,1.5 - parent: 0 - type: Transform -- uid: 3452 - type: WallmountTelevision - components: - - pos: -23.5,1.5 - parent: 0 - type: Transform -- uid: 3453 - type: PottedPlant22 - components: - - pos: -22.5,2.5 - parent: 0 - type: Transform -- uid: 3454 - type: PottedPlant22 - components: - - pos: -24.5,6.5 - parent: 0 - type: Transform -- uid: 3455 - type: PottedPlant22 - components: - - pos: -22.5,8.5 - parent: 0 - type: Transform -- uid: 3456 - type: PottedPlant21 - components: - - pos: -20.5,2.5 - parent: 0 - type: Transform -- uid: 3457 - type: PottedPlant21 - components: - - pos: -21.5,6.5 - parent: 0 - type: Transform -- uid: 3458 - type: PottedPlant21 - components: - - pos: -24.5,8.5 - parent: 0 - type: Transform -- uid: 3459 - type: PottedPlant15 - components: - - pos: -24.5,12.5 - parent: 0 - type: Transform -- uid: 3460 - type: PottedPlant21 - components: - - pos: -25.5,-0.5 - parent: 0 - type: Transform -- uid: 3461 - type: PottedPlant21 - components: - - pos: -10.5,-0.5 - parent: 0 - type: Transform -- uid: 3462 - type: DisposalUnit - components: - - pos: -19.5,2.5 - parent: 0 - type: Transform -- uid: 3463 - type: APCBasic - components: - - pos: -22.5,7.5 - parent: 0 - type: Transform -- uid: 3464 - type: APCBasic - components: - - pos: -16.5,13.5 - parent: 0 - type: Transform -- uid: 3465 - type: APCBasic - components: - - pos: -22.5,13.5 - parent: 0 - type: Transform -- uid: 3466 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -13.5,6.5 - parent: 0 - type: Transform -- uid: 3467 - type: CableApcExtension - components: - - pos: -22.5,12.5 - parent: 0 - type: Transform -- uid: 3468 - type: CableApcExtension - components: - - pos: -22.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3469 - type: CableApcExtension - components: - - pos: -21.5,12.5 - parent: 0 - type: Transform -- uid: 3470 - type: CableApcExtension - components: - - pos: -21.5,13.5 - parent: 0 - type: Transform -- uid: 3471 - type: CableApcExtension - components: - - pos: -21.5,14.5 - parent: 0 - type: Transform -- uid: 3472 - type: CableApcExtension - components: - - pos: -21.5,11.5 - parent: 0 - type: Transform -- uid: 3473 - type: CableApcExtension - components: - - pos: -21.5,10.5 - parent: 0 - type: Transform -- uid: 3474 - type: CableApcExtension - components: - - pos: -21.5,9.5 - parent: 0 - type: Transform -- uid: 3475 - type: CableApcExtension - components: - - pos: -20.5,11.5 - parent: 0 - type: Transform -- uid: 3476 - type: CableApcExtension - components: - - pos: -19.5,11.5 - parent: 0 - type: Transform -- uid: 3477 - type: CableApcExtension - components: - - pos: -22.5,11.5 - parent: 0 - type: Transform -- uid: 3478 - type: CableApcExtension - components: - - pos: -23.5,11.5 - parent: 0 - type: Transform -- uid: 3479 - type: CableApcExtension - components: - - pos: -24.5,11.5 - parent: 0 - type: Transform -- uid: 3480 - type: CableApcExtension - components: - - pos: -25.5,11.5 - parent: 0 - type: Transform -- uid: 3481 - type: CableApcExtension - components: - - pos: -26.5,11.5 - parent: 0 - type: Transform -- uid: 3482 - type: CableApcExtension - components: - - pos: -27.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3483 - type: CableApcExtension - components: - - pos: -27.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3484 - type: CableApcExtension - components: - - pos: -25.5,10.5 - parent: 0 - type: Transform -- uid: 3485 - type: CableApcExtension - components: - - pos: -25.5,9.5 - parent: 0 - type: Transform -- uid: 3486 - type: CableApcExtension - components: - - pos: -26.5,9.5 - parent: 0 - type: Transform -- uid: 3487 - type: CableApcExtension - components: - - pos: -27.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3488 - type: CableApcExtension - components: - - pos: -27.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3489 - type: CableApcExtension - components: - - pos: -22.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3490 - type: CableApcExtension - components: - - pos: -22.5,6.5 - parent: 0 - type: Transform -- uid: 3491 - type: CableApcExtension - components: - - pos: -22.5,5.5 - parent: 0 - type: Transform -- uid: 3492 - type: CableApcExtension - components: - - pos: -22.5,4.5 - parent: 0 - type: Transform -- uid: 3493 - type: CableApcExtension - components: - - pos: -22.5,3.5 - parent: 0 - type: Transform -- uid: 3494 - type: CableApcExtension - components: - - pos: -22.5,2.5 - parent: 0 - type: Transform -- uid: 3495 - type: CableApcExtension - components: - - pos: -21.5,3.5 - parent: 0 - type: Transform -- uid: 3496 - type: CableApcExtension - components: - - pos: -20.5,3.5 - parent: 0 - type: Transform -- uid: 3497 - type: CableApcExtension - components: - - pos: -19.5,3.5 - parent: 0 - type: Transform -- uid: 3498 - type: CableApcExtension - components: - - pos: -18.5,3.5 - parent: 0 - type: Transform -- uid: 3499 - type: CableApcExtension - components: - - pos: -21.5,5.5 - parent: 0 - type: Transform -- uid: 3500 - type: CableApcExtension - components: - - pos: -20.5,5.5 - parent: 0 - type: Transform -- uid: 3501 - type: CableApcExtension - components: - - pos: -19.5,5.5 - parent: 0 - type: Transform -- uid: 3502 - type: CableApcExtension - components: - - pos: -23.5,5.5 - parent: 0 - type: Transform -- uid: 3503 - type: CableApcExtension - components: - - pos: -23.5,3.5 - parent: 0 - type: Transform -- uid: 3504 - type: CableApcExtension - components: - - pos: -13.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3505 - type: CableApcExtension - components: - - pos: -14.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3506 - type: CableApcExtension - components: - - pos: -14.5,5.5 - parent: 0 - type: Transform -- uid: 3507 - type: CableApcExtension - components: - - pos: -12.5,6.5 - parent: 0 - type: Transform -- uid: 3508 - type: CableApcExtension - components: - - pos: -12.5,5.5 - parent: 0 - type: Transform -- uid: 3509 - type: CableApcExtension - components: - - pos: -11.5,5.5 - parent: 0 - type: Transform -- uid: 3510 - type: CableApcExtension - components: - - pos: -15.5,5.5 - parent: 0 - type: Transform -- uid: 3511 - type: CableApcExtension - components: - - pos: -16.5,5.5 - parent: 0 - type: Transform -- uid: 3512 - type: CableApcExtension - components: - - pos: -10.5,5.5 - parent: 0 - type: Transform -- uid: 3513 - type: CableApcExtension - components: - - pos: -16.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3514 - type: CableApcExtension - components: - - pos: -16.5,12.5 - parent: 0 - type: Transform -- uid: 3515 - type: CableApcExtension - components: - - pos: -15.5,12.5 - parent: 0 - type: Transform -- uid: 3516 - type: CableApcExtension - components: - - pos: -15.5,11.5 - parent: 0 - type: Transform -- uid: 3517 - type: CableApcExtension - components: - - pos: -15.5,10.5 - parent: 0 - type: Transform -- uid: 3518 - type: CableApcExtension - components: - - pos: -15.5,9.5 - parent: 0 - type: Transform -- uid: 3519 - type: CableApcExtension - components: - - pos: -20.5,9.5 - parent: 0 - type: Transform -- uid: 3520 - type: CableApcExtension - components: - - pos: -19.5,9.5 - parent: 0 - type: Transform -- uid: 3521 - type: CableApcExtension - components: - - pos: -22.5,9.5 - parent: 0 - type: Transform -- uid: 3522 - type: CableApcExtension - components: - - pos: -23.5,9.5 - parent: 0 - type: Transform -- uid: 3523 - type: CableHV - components: - - pos: -1.5,-4.5 - parent: 0 - type: Transform -- uid: 3524 - type: CableHV - components: - - pos: -1.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3525 - type: CableHV - components: - - pos: -1.5,4.5 - parent: 0 - type: Transform -- uid: 3526 - type: CableHV - components: - - pos: -2.5,4.5 - parent: 0 - type: Transform -- uid: 3527 - type: CableHV - components: - - pos: -3.5,4.5 - parent: 0 - type: Transform -- uid: 3528 - type: CableHV - components: - - pos: -4.5,4.5 - parent: 0 - type: Transform -- uid: 3529 - type: CableHV - components: - - pos: -5.5,4.5 - parent: 0 - type: Transform -- uid: 3530 - type: CableHV - components: - - pos: -6.5,4.5 - parent: 0 - type: Transform -- uid: 3531 - type: CableHV - components: - - pos: -2.5,-4.5 - parent: 0 - type: Transform -- uid: 3532 - type: CableHV - components: - - pos: -3.5,-4.5 - parent: 0 - type: Transform -- uid: 3533 - type: CableHV - components: - - pos: -4.5,-4.5 - parent: 0 - type: Transform -- uid: 3534 - type: CableHV - components: - - pos: -5.5,-4.5 - parent: 0 - type: Transform -- uid: 3535 - type: CableHV - components: - - pos: -6.5,-4.5 - parent: 0 - type: Transform -- uid: 3536 - type: CableHV - components: - - pos: -6.5,-3.5 - parent: 0 - type: Transform -- uid: 3537 - type: CableHV - components: - - pos: -6.5,-2.5 - parent: 0 - type: Transform -- uid: 3538 - type: CableHV - components: - - pos: -6.5,-1.5 - parent: 0 - type: Transform -- uid: 3539 - type: CableHV - components: - - pos: -6.5,-0.5 - parent: 0 - type: Transform -- uid: 3540 - type: CableHV - components: - - pos: -6.5,0.5 - parent: 0 - type: Transform -- uid: 3541 - type: CableHV - components: - - pos: -6.5,1.5 - parent: 0 - type: Transform -- uid: 3542 - type: CableHV - components: - - pos: -6.5,2.5 - parent: 0 - type: Transform -- uid: 3543 - type: CableHV - components: - - pos: -6.5,3.5 - parent: 0 - type: Transform -- uid: 3544 - type: CableHV - components: - - pos: -7.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3545 - type: CableHV - components: - - pos: -8.5,-0.5 - parent: 0 - type: Transform -- uid: 3546 - type: CableHV - components: - - pos: -9.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3547 - type: CableHV - components: - - pos: -10.5,-0.5 - parent: 0 - type: Transform -- uid: 3548 - type: CableHV - components: - - pos: -11.5,-0.5 - parent: 0 - type: Transform -- uid: 3549 - type: CableHV - components: - - pos: -12.5,-0.5 - parent: 0 - type: Transform -- uid: 3550 - type: CableHV - components: - - pos: -13.5,-0.5 - parent: 0 - type: Transform -- uid: 3551 - type: CableHV - components: - - pos: -14.5,-0.5 - parent: 0 - type: Transform -- uid: 3552 - type: CableHV - components: - - pos: -15.5,-0.5 - parent: 0 - type: Transform -- uid: 3553 - type: CableHV - components: - - pos: -16.5,-0.5 - parent: 0 - type: Transform -- uid: 3554 - type: CableHV - components: - - pos: -17.5,-0.5 - parent: 0 - type: Transform -- uid: 3555 - type: CableHV - components: - - pos: -18.5,-0.5 - parent: 0 - type: Transform -- uid: 3556 - type: CableHV - components: - - pos: -19.5,-0.5 - parent: 0 - type: Transform -- uid: 3557 - type: CableHV - components: - - pos: -20.5,0.5 - parent: 0 - type: Transform -- uid: 3558 - type: CableHV - components: - - pos: -19.5,0.5 - parent: 0 - type: Transform -- uid: 3559 - type: CableHV - components: - - pos: -21.5,0.5 - parent: 0 - type: Transform -- uid: 3560 - type: CableHV - components: - - pos: -21.5,1.5 - parent: 0 - type: Transform -- uid: 3561 - type: CableHV - components: - - pos: -21.5,2.5 - parent: 0 - type: Transform -- uid: 3562 - type: CableHV - components: - - pos: -21.5,3.5 - parent: 0 - type: Transform -- uid: 3563 - type: CableHV - components: - - pos: -21.5,4.5 - parent: 0 - type: Transform -- uid: 3564 - type: CableHV - components: - - pos: -21.5,5.5 - parent: 0 - type: Transform -- uid: 3565 - type: CableHV - components: - - pos: -20.5,5.5 - parent: 0 - type: Transform -- uid: 3566 - type: CableHV - components: - - pos: -19.5,5.5 - parent: 0 - type: Transform -- uid: 3567 - type: CableHV - components: - - pos: -18.5,5.5 - parent: 0 - type: Transform -- uid: 3568 - type: CableHV - components: - - pos: -17.5,5.5 - parent: 0 - type: Transform -- uid: 3569 - type: CableHV - components: - - pos: -16.5,5.5 - parent: 0 - type: Transform -- uid: 3570 - type: CableHV - components: - - pos: -15.5,5.5 - parent: 0 - type: Transform -- uid: 3571 - type: CableHV - components: - - pos: -15.5,6.5 - parent: 0 - type: Transform -- uid: 3572 - type: HighSecCaptainLocked - components: - - pos: -13.5,5.5 - parent: 0 - type: Transform -- uid: 3573 - type: ComputerPowerMonitoring - components: - - rot: 3.141592653589793 rad - pos: -15.5,4.5 - parent: 0 - type: Transform -- uid: 3574 - type: CableHV - components: - - pos: -15.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3575 - type: CableMV - components: - - pos: -15.5,6.5 - parent: 0 - type: Transform -- uid: 3576 - type: CableMV - components: - - pos: -15.5,5.5 - parent: 0 - type: Transform -- uid: 3577 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -14.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3578 - type: CableMV - components: - - pos: -14.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3579 - type: CableMV - components: - - pos: -13.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3580 - type: CableMV - components: - - pos: -16.5,5.5 - parent: 0 - type: Transform -- uid: 3581 - type: CableMV - components: - - pos: -17.5,5.5 - parent: 0 - type: Transform -- uid: 3582 - type: CableMV - components: - - pos: -18.5,5.5 - parent: 0 - type: Transform -- uid: 3583 - type: CableMV - components: - - pos: -19.5,5.5 - parent: 0 - type: Transform -- uid: 3584 - type: CableMV - components: - - pos: -20.5,5.5 - parent: 0 - type: Transform -- uid: 3585 - type: CableMV - components: - - pos: -21.5,5.5 - parent: 0 - type: Transform -- uid: 3586 - type: CableMV - components: - - pos: -22.5,5.5 - parent: 0 - type: Transform -- uid: 3587 - type: CableMV - components: - - pos: -22.5,6.5 - parent: 0 - type: Transform -- uid: 3588 - type: CableMV - components: - - pos: -22.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3589 - type: CableMV - components: - - pos: -22.5,8.5 - parent: 0 - type: Transform -- uid: 3590 - type: CableMV - components: - - pos: -22.5,9.5 - parent: 0 - type: Transform -- uid: 3591 - type: CableMV - components: - - pos: -22.5,10.5 - parent: 0 - type: Transform -- uid: 3592 - type: CableMV - components: - - pos: -22.5,11.5 - parent: 0 - type: Transform -- uid: 3593 - type: CableMV - components: - - pos: -22.5,12.5 - parent: 0 - type: Transform -- uid: 3594 - type: CableMV - components: - - pos: -22.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3595 - type: CableMV - components: - - pos: -21.5,11.5 - parent: 0 - type: Transform -- uid: 3596 - type: CableMV - components: - - pos: -20.5,11.5 - parent: 0 - type: Transform -- uid: 3597 - type: CableMV - components: - - pos: -19.5,11.5 - parent: 0 - type: Transform -- uid: 3598 - type: CableMV - components: - - pos: -18.5,11.5 - parent: 0 - type: Transform -- uid: 3599 - type: CableMV - components: - - pos: -17.5,11.5 - parent: 0 - type: Transform -- uid: 3600 - type: CableMV - components: - - pos: -16.5,11.5 - parent: 0 - type: Transform -- uid: 3601 - type: CableMV - components: - - pos: -16.5,12.5 - parent: 0 - type: Transform -- uid: 3602 - type: CableMV - components: - - pos: -16.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3603 - type: PosterLegitNanotrasenLogo - components: - - pos: -11.5,7.5 - parent: 0 - type: Transform -- uid: 3604 - type: PosterLegitNanotrasenLogo - components: - - pos: -15.5,7.5 - parent: 0 - type: Transform -- uid: 3605 - type: PosterLegitNanotrasenLogo - components: - - pos: -11.5,-2.5 - parent: 0 - type: Transform -- uid: 3606 - type: PosterLegitNanotrasenLogo - components: - - pos: -17.5,-2.5 - parent: 0 - type: Transform -- uid: 3607 - type: SignDoors - components: - - pos: -7.5,-0.5 - parent: 0 - type: Transform -- uid: 3608 - type: SignDoors - components: - - pos: -9.5,-0.5 - parent: 0 - type: Transform -- uid: 3609 - type: SignDoors - components: - - pos: -26.5,-0.5 - parent: 0 - type: Transform -- uid: 3610 - type: SignDoors - components: - - pos: -28.5,-0.5 - parent: 0 - type: Transform -- uid: 3611 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -19.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3612 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -15.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3613 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -24.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3614 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -24.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3615 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -22.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3616 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -22.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3617 - type: ComfyChair - components: - - pos: -24.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3618 - type: ComfyChair - components: - - pos: -23.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3619 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -23.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3620 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -24.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3621 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -21.5,4.5 - parent: 0 - type: Transform -- uid: 3622 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -21.5,5.5 - parent: 0 - type: Transform -- uid: 3623 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -19.5,5.5 - parent: 0 - type: Transform -- uid: 3624 - type: Bed - components: - - pos: -15.5,8.5 - parent: 0 - type: Transform -- uid: 3625 - type: BedsheetCentcom - components: - - rot: -1.5707963267948966 rad - pos: -15.5,8.5 - parent: 0 - type: Transform -- uid: 3626 - type: Lamp - components: - - pos: -20.472635,6.7337127 - parent: 0 - type: Transform -- uid: 3627 - type: Lamp - components: - - pos: -20.48826,12.764963 - parent: 0 - type: Transform -- uid: 3628 - type: LampGold - components: - - pos: -16.37576,12.926986 - parent: 0 - type: Transform -- uid: 3629 - type: ComputerComms - components: - - pos: -18.5,6.5 - parent: 0 - type: Transform -- uid: 3630 - type: ComputerComms - components: - - rot: -1.5707963267948966 rad - pos: -14.5,11.5 - parent: 0 - type: Transform -- uid: 3631 - type: PottedPlant21 - components: - - pos: -14.5,10.5 - parent: 0 - type: Transform -- uid: 3632 - type: TableReinforced - components: - - pos: -12.5,4.5 - parent: 0 - type: Transform -- uid: 3633 - type: TableReinforced - components: - - pos: -11.5,4.5 - parent: 0 - type: Transform -- uid: 3634 - type: TableReinforced - components: - - pos: -10.5,4.5 - parent: 0 - type: Transform -- uid: 3635 - type: TableReinforced - components: - - pos: -10.5,6.5 - parent: 0 - type: Transform -- uid: 3636 - type: TableReinforced - components: - - pos: -11.5,6.5 - parent: 0 - type: Transform -- uid: 3637 - type: TableReinforced - components: - - pos: -12.5,6.5 - parent: 0 - type: Transform -- uid: 3638 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -19.5,2.5 - parent: 0 - type: Transform -- uid: 3639 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -21.5,2.5 - parent: 0 - type: Transform -- uid: 3640 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 0 - type: Transform -- uid: 3641 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,2.5 - parent: 0 - type: Transform -- uid: 3642 - type: DisposalPipe - components: - - pos: -21.5,1.5 - parent: 0 - type: Transform -- uid: 3643 - type: DisposalPipe - components: - - pos: -21.5,0.5 - parent: 0 - type: Transform -- uid: 3644 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 0 - type: Transform -- uid: 3645 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 0 - type: Transform -- uid: 3646 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 0 - type: Transform -- uid: 3647 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 0 - type: Transform -- uid: 3648 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 0 - type: Transform -- uid: 3649 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 0 - type: Transform -- uid: 3650 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 0 - type: Transform -- uid: 3651 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 0 - type: Transform -- uid: 3652 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 0 - type: Transform -- uid: 3653 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 0 - type: Transform -- uid: 3654 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 0 - type: Transform -- uid: 3655 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 0 - type: Transform -- uid: 3656 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 0 - type: Transform -- uid: 3657 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 0 - type: Transform -- uid: 3658 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 0 - type: Transform -- uid: 3659 - type: GasPort - components: - - pos: -14.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3660 - type: GasPipeBend - components: - - pos: -16.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3661 - type: StorageCanister - components: - - pos: -14.5,6.5 - parent: 0 - type: Transform -- uid: 3662 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -16.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3663 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: -14.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3664 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3665 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3666 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3667 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3668 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3669 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3670 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -23.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3671 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -23.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3672 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3673 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3674 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -23.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3675 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -18.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3676 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -18.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3677 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3678 - type: GasPipeFourway - components: - - pos: -21.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3679 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3680 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3681 - type: GasPipeStraight - components: - - pos: -18.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3682 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3683 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3684 - type: GasPipeBend - components: - - pos: -15.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3685 - type: GasPipeStraight - components: - - pos: -15.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3686 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3687 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -14.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3688 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -21.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3689 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -24.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3690 - type: GasPipeStraight - components: - - pos: -21.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3691 - type: GasPipeStraight - components: - - pos: -21.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3692 - type: GasPipeStraight - components: - - pos: -21.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3693 - type: GasPipeStraight - components: - - pos: -21.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3694 - type: GasVentPump - components: - - pos: -21.5,14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3695 - type: AirCanister - components: - - pos: -16.5,4.5 - parent: 0 - type: Transform -- uid: 3696 - type: PortableScrubber - components: - - pos: -14.5,4.5 - parent: 0 - type: Transform -- uid: 3697 - type: TableReinforced - components: - - pos: -16.5,6.5 - parent: 0 - type: Transform -- uid: 3698 - type: PowerDrill - components: - - pos: -16.54512,6.5009594 - parent: 0 - type: Transform -- uid: 3699 - type: WelderExperimental - components: - - pos: -16.435745,6.6259594 - parent: 0 - type: Transform -- uid: 3700 - type: ClothingHeadHatWelding - components: - - pos: -16.435745,6.5478344 - parent: 0 - type: Transform -- uid: 3701 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3702 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3703 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3704 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3705 - type: Poweredlight - components: - - pos: -21.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3706 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3707 - type: Poweredlight - components: - - pos: -15.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3708 - type: Poweredlight - components: - - pos: -11.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3709 - type: Catwalk - components: - - pos: -16.5,4.5 - parent: 0 - type: Transform -- uid: 3710 - type: Catwalk - components: - - pos: -15.5,4.5 - parent: 0 - type: Transform -- uid: 3711 - type: Catwalk - components: - - pos: -14.5,4.5 - parent: 0 - type: Transform -- uid: 3712 - type: Catwalk - components: - - pos: -14.5,6.5 - parent: 0 - type: Transform -- uid: 3713 - type: SignSecureMed - components: - - pos: -17.5,6.5 - parent: 0 - type: Transform -- uid: 3714 - type: SignSecureMed - components: - - pos: -13.5,4.5 - parent: 0 - type: Transform -- uid: 3715 - type: ComputerTelevision - components: - - pos: -14.5,12.5 - parent: 0 - type: Transform -- uid: 3716 - type: Rack - components: - - pos: -14.5,9.5 - parent: 0 - type: Transform -- uid: 3717 - type: ClothingUniformJumpskirtCentcomFormalDress - components: - - pos: -14.539978,9.611614 - parent: 0 - type: Transform -- uid: 3718 - type: ClothingUniformJumpsuitCentcomFormal - components: - - pos: -14.383728,9.486614 - parent: 0 - type: Transform -- uid: 3719 - type: ClothingHeadsetCentCom - components: - - pos: -15.25574,12.628634 - parent: 0 - type: Transform -- uid: 3720 - type: ClothingHeadHatCentcom - components: - - pos: -14.271365,9.771096 - parent: 0 - type: Transform -- uid: 3721 - type: CentcomIDCard - components: - - pos: -16.521366,8.567018 - parent: 0 - type: Transform -- uid: 3722 - type: ClothingShoesBootsLaceup - components: - - pos: -16.568241,9.145143 - parent: 0 - type: Transform -- uid: 3723 - type: ClothingOuterVestKevlar - components: - - pos: -14.615115,9.379518 - parent: 0 - type: Transform -- uid: 3724 - type: ClothingHandsGlovesCombat - components: - - pos: -16.552616,8.708888 - parent: 0 - type: Transform -- uid: 3725 - type: ClothingBeltSheathFilled - components: - - pos: -15.72449,12.605259 - parent: 0 - type: Transform -- uid: 3726 - type: ClothingMaskGasCentcom - components: - - pos: -15.949173,12.5279455 - parent: 0 - type: Transform -- uid: 3727 - type: WeaponTaser - components: - - pos: -25.555511,12.593331 - parent: 0 - type: Transform -- uid: 3728 - type: CarpetGreen - components: - - pos: -16.5,10.5 - parent: 0 - type: Transform -- uid: 3729 - type: CarpetGreen - components: - - pos: -16.5,11.5 - parent: 0 - type: Transform -- uid: 3730 - type: CarpetGreen - components: - - pos: -15.5,10.5 - parent: 0 - type: Transform -- uid: 3731 - type: CarpetGreen - components: - - pos: -15.5,11.5 - parent: 0 - type: Transform -- uid: 3732 - type: CarpetGreen - components: - - pos: -19.5,11.5 - parent: 0 - type: Transform -- uid: 3733 - type: CarpetGreen - components: - - pos: -19.5,10.5 - parent: 0 - type: Transform -- uid: 3734 - type: WeaponCapacitorRecharger - components: - - pos: -26.5,9.5 - parent: 0 - type: Transform -- uid: 3735 - type: CarpetGreen - components: - - pos: -18.5,11.5 - parent: 0 - type: Transform -- uid: 3736 - type: CarpetGreen - components: - - pos: -18.5,10.5 - parent: 0 - type: Transform -- uid: 3737 - type: ClothingBackpackSatchelHolding - components: - - pos: -26.540686,12.537982 - parent: 0 - type: Transform -- uid: 3738 - type: CarpetGreen - components: - - pos: -19.5,5.5 - parent: 0 - type: Transform -- uid: 3739 - type: CarpetGreen - components: - - pos: -19.5,6.5 - parent: 0 - type: Transform -- uid: 3740 - type: CarpetGreen - components: - - pos: -18.5,5.5 - parent: 0 - type: Transform -- uid: 3741 - type: CarpetGreen - components: - - pos: -18.5,6.5 - parent: 0 - type: Transform -- uid: 3742 - type: PhoneInstrument - components: - - pos: -19.555511,10.655831 - parent: 0 - type: Transform -- uid: 3743 - type: PaintingTheGreatWave - components: - - pos: -20.5,13.5 - parent: 0 - type: Transform -- uid: 3744 - type: PaintingTheSonOfMan - components: - - pos: -17.5,9.5 - parent: 0 - type: Transform -- uid: 3745 - type: FoodBoxDonut - components: - - pos: -23.474928,11.563223 - parent: 0 - type: Transform -- uid: 3746 - type: CigarGold - components: - - pos: -23.553053,10.781973 - parent: 0 - type: Transform -- uid: 3747 - type: CigarGold - components: - - pos: -23.443678,10.672598 - parent: 0 - type: Transform -- uid: 3748 - type: Flash - components: - - pos: -26.453917,8.594473 - parent: 0 - type: Transform -- uid: 3749 - type: RubberStampCentcom - components: - - pos: -20.5068,11.16328 - parent: 0 - type: Transform -- uid: 3750 - type: BoxFolderBlack - components: - - pos: -20.479141,11.485098 - parent: 0 - type: Transform -- uid: 3751 - type: Handcuffs - components: - - pos: -25.604141,8.625723 - parent: 0 - type: Transform -- uid: 3752 - type: FoodBoxDonut - components: - - pos: -19.463516,4.614471 - parent: 0 - type: Transform -- uid: 3753 - type: SmokingPipeFilledTobacco - components: - - pos: -18.510391,8.646521 - parent: 0 - type: Transform -- uid: 3754 - type: Lighter - components: - - pos: -18.379215,8.381029 - parent: 0 - type: Transform -- uid: 3755 - type: GroundTobacco - components: - - pos: -18.558027,8.843213 - parent: 0 - type: Transform -- uid: 3756 - type: GroundTobacco - components: - - pos: -18.370527,8.827588 - parent: 0 - type: Transform -- uid: 3757 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -20.5,8.5 - parent: 0 - type: Transform -- uid: 3758 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -20.5,12.5 - parent: 0 - type: Transform -- uid: 3759 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -20.5,10.5 - parent: 0 - type: Transform -- uid: 3760 - type: WindoorSecure - components: - - rot: -1.5707963267948966 rad - pos: -20.5,11.5 - parent: 0 - type: Transform -- uid: 3761 - type: WindoorSecure - components: - - rot: -1.5707963267948966 rad - pos: -20.5,9.5 - parent: 0 - type: Transform -- uid: 3762 - type: ChessBoard - components: - - pos: -23.529772,4.584259 - parent: 0 - type: Transform -- uid: 3763 - type: DiceBag - components: - - pos: -24.498522,4.631134 - parent: 0 - type: Transform -- uid: 3764 - type: ParchisBoard - components: - - pos: -23.482897,2.599884 - parent: 0 - type: Transform -- uid: 3765 - type: PercentileDie - components: - - pos: -18.522638,2.6762333 - parent: 0 - type: Transform -- uid: 3766 - type: PaintingAmogusTriptych - components: - - pos: -21.5,7.5 - parent: 0 - type: Transform -- uid: 3767 - type: PaintingHelloWorld - components: - - pos: -17.5,3.5 - parent: 0 - type: Transform -- uid: 3768 - type: WeaponRevolverDeckard - components: - - pos: -12.392023,4.511138 - parent: 0 - type: Transform -- uid: 3769 - type: DrinkGoldenCup - components: - - pos: -26.535545,11.773157 - parent: 0 - type: Transform -- uid: 3770 - type: SignPlaque - components: - - pos: -18.5,13.5 - parent: 0 - type: Transform -- uid: 3771 - type: ClothingOuterArmorCaptainCarapace - components: - - pos: -12.455681,6.5291095 - parent: 0 - type: Transform -- uid: 3772 - type: Telecrystal5 - components: - - pos: -10.611931,6.5603595 - parent: 0 - type: Transform -- uid: 3773 - type: DrinkFlask - components: - - pos: -11.533806,6.6228595 - parent: 0 - type: Transform -- uid: 3774 - type: ClothingBackpackSatchelCaptain - components: - - pos: -11.518181,4.5291095 - parent: 0 - type: Transform -- uid: 3775 - type: ClothingShoesLeather - components: - - pos: -10.574664,4.498021 - parent: 0 - type: Transform -- uid: 3776 - type: PaintingSaturn - components: - - pos: -9.5,5.5 - parent: 0 - type: Transform -- uid: 3777 - type: PosterLegitNanotrasenLogo - components: - - pos: -25.5,2.5 - parent: 0 - type: Transform -- uid: 3778 - type: PosterLegitNanomichiAd - components: - - pos: -25.5,6.5 - parent: 0 - type: Transform -- uid: 3779 - type: PaintingNightHawks - components: - - pos: -25.5,4.5 - parent: 0 - type: Transform -- uid: 3780 - type: WallRiveted - components: - - pos: -21.5,-2.5 - parent: 0 - type: Transform -- uid: 3781 - type: HighSecCommandLocked - components: - - pos: -22.5,-2.5 - parent: 0 - type: Transform -- uid: 3782 - type: HighSecCommandLocked - components: - - pos: -20.5,-2.5 - parent: 0 - type: Transform -- uid: 3783 - type: WallRiveted - components: - - pos: -28.5,-5.5 - parent: 0 - type: Transform -- uid: 3784 - type: WallRiveted - components: - - pos: -28.5,-6.5 - parent: 0 - type: Transform -- uid: 3785 - type: WallRiveted - components: - - pos: -28.5,-7.5 - parent: 0 - type: Transform -- uid: 3786 - type: WallRiveted - components: - - pos: -28.5,-8.5 - parent: 0 - type: Transform -- uid: 3787 - type: BlastDoor - components: - - pos: -16.5,-7.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3906 - type: SignalReceiver -- uid: 3788 - type: BlastDoor - components: - - pos: -16.5,-6.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3906 - type: SignalReceiver -- uid: 3789 - type: BlastDoor - components: - - pos: -16.5,-5.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3906 - type: SignalReceiver -- uid: 3790 - type: LockerChiefEngineerFilled - components: - - pos: -15.5,-3.5 - parent: 0 - type: Transform -- uid: 3791 - type: LockerChiefEngineerFilled - components: - - pos: -14.5,-3.5 - parent: 0 - type: Transform -- uid: 3792 - type: LockerChiefMedicalOfficerFilled - components: - - pos: -15.5,-9.5 - parent: 0 - type: Transform -- uid: 3793 - type: LockerChiefMedicalOfficerFilled - components: - - pos: -14.5,-9.5 - parent: 0 - type: Transform -- uid: 3794 - type: LockerHeadOfSecurityFilled - components: - - pos: -10.5,-9.5 - parent: 0 - type: Transform -- uid: 3795 - type: LockerHeadOfSecurityFilled - components: - - pos: -11.5,-9.5 - parent: 0 - type: Transform -- uid: 3796 - type: LockerCaptainFilled - components: - - pos: -10.5,-3.5 - parent: 0 - type: Transform -- uid: 3797 - type: LockerHeadOfPersonnelFilled - components: - - pos: -11.5,-3.5 - parent: 0 - type: Transform -- uid: 3798 - type: TableReinforced - components: - - pos: -13.5,-9.5 - parent: 0 - type: Transform -- uid: 3799 - type: TableReinforced - components: - - pos: -12.5,-9.5 - parent: 0 - type: Transform -- uid: 3800 - type: TableReinforced - components: - - pos: -12.5,-3.5 - parent: 0 - type: Transform -- uid: 3801 - type: TableReinforced - components: - - pos: -13.5,-3.5 - parent: 0 - type: Transform -- uid: 3802 - type: TableReinforced - components: - - pos: -13.5,-7.5 - parent: 0 - type: Transform -- uid: 3803 - type: TableReinforced - components: - - pos: -13.5,-6.5 - parent: 0 - type: Transform -- uid: 3804 - type: TableReinforced - components: - - pos: -13.5,-5.5 - parent: 0 - type: Transform -- uid: 3805 - type: TableReinforced - components: - - pos: -12.5,-7.5 - parent: 0 - type: Transform -- uid: 3806 - type: TableReinforced - components: - - pos: -12.5,-6.5 - parent: 0 - type: Transform -- uid: 3807 - type: TableReinforced - components: - - pos: -12.5,-5.5 - parent: 0 - type: Transform -- uid: 3808 - type: TableReinforced - components: - - pos: -19.5,-7.5 - parent: 0 - type: Transform -- uid: 3809 - type: TableReinforced - components: - - pos: -19.5,-6.5 - parent: 0 - type: Transform -- uid: 3810 - type: TableReinforced - components: - - pos: -19.5,-5.5 - parent: 0 - type: Transform -- uid: 3811 - type: TableReinforced - components: - - pos: -20.5,-5.5 - parent: 0 - type: Transform -- uid: 3812 - type: TableReinforced - components: - - pos: -21.5,-5.5 - parent: 0 - type: Transform -- uid: 3813 - type: TableReinforced - components: - - pos: -22.5,-5.5 - parent: 0 - type: Transform -- uid: 3814 - type: TableReinforced - components: - - pos: -22.5,-6.5 - parent: 0 - type: Transform -- uid: 3815 - type: TableReinforced - components: - - pos: -24.5,-7.5 - parent: 0 - type: Transform -- uid: 3816 - type: TableReinforced - components: - - pos: -24.5,-6.5 - parent: 0 - type: Transform -- uid: 3817 - type: TableReinforced - components: - - pos: -22.5,-7.5 - parent: 0 - type: Transform -- uid: 3818 - type: Bookshelf - components: - - pos: -25.5,-9.5 - parent: 0 - type: Transform -- uid: 3819 - type: TableReinforced - components: - - pos: -21.5,-7.5 - parent: 0 - type: Transform -- uid: 3820 - type: TableReinforced - components: - - pos: -20.5,-7.5 - parent: 0 - type: Transform -- uid: 3821 - type: Bookshelf - components: - - pos: -25.5,-3.5 - parent: 0 - type: Transform -- uid: 3822 - type: TableReinforced - components: - - pos: -24.5,-5.5 - parent: 0 - type: Transform -- uid: 3823 - type: ClothingHeadsetAltCentCom - components: - - pos: 2.6429226,32.7473 - parent: 0 - type: Transform -- uid: 3824 - type: ClothingHeadsetAltCentCom - components: - - pos: 2.7522976,32.637924 - parent: 0 - type: Transform -- uid: 3825 - type: ClothingHeadsetAltCentCom - components: - - pos: 16.661858,32.6848 - parent: 0 - type: Transform -- uid: 3826 - type: ClothingHeadsetAltCentCom - components: - - pos: 16.771233,32.575424 - parent: 0 - type: Transform -- uid: 3827 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 13.5,23.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3828 - type: Ash - components: - - pos: -10.652057,6.7775984 - parent: 0 - type: Transform -- uid: 3829 - type: TableWood - components: - - pos: -26.5,-9.5 - parent: 0 - type: Transform -- uid: 3830 - type: TableWood - components: - - pos: -27.5,-9.5 - parent: 0 - type: Transform -- uid: 3831 - type: TableWood - components: - - pos: -27.5,-4.5 - parent: 0 - type: Transform -- uid: 3832 - type: TableWood - components: - - pos: -27.5,-3.5 - parent: 0 - type: Transform -- uid: 3833 - type: TableWood - components: - - pos: -26.5,-3.5 - parent: 0 - type: Transform -- uid: 3834 - type: TableWood - components: - - pos: -24.5,-3.5 - parent: 0 - type: Transform -- uid: 3835 - type: TableWood - components: - - pos: -17.5,-9.5 - parent: 0 - type: Transform -- uid: 3836 - type: TableWood - components: - - pos: -17.5,-3.5 - parent: 0 - type: Transform -- uid: 3837 - type: ComputerComms - components: - - rot: 3.141592653589793 rad - pos: -25.5,-7.5 - parent: 0 - type: Transform -- uid: 3838 - type: BoxFolderRed - components: - - pos: -24.551022,-5.5465455 - parent: 0 - type: Transform -- uid: 3839 - type: BoxFolderBlue - components: - - pos: -24.426022,-5.7340455 - parent: 0 - type: Transform -- uid: 3840 - type: filingCabinet - components: - - pos: -24.5,-9.5 - parent: 0 - type: Transform -- uid: 3841 - type: filingCabinet - components: - - pos: -23.5,-9.5 - parent: 0 - type: Transform -- uid: 3842 - type: DisposalUnit - components: - - pos: -22.5,-9.5 - parent: 0 - type: Transform -- uid: 3843 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -22.5,-9.5 - parent: 0 - type: Transform -- uid: 3844 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-8.5 - parent: 0 - type: Transform -- uid: 3845 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-7.5 - parent: 0 - type: Transform -- uid: 3846 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-6.5 - parent: 0 - type: Transform -- uid: 3847 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-5.5 - parent: 0 - type: Transform -- uid: 3848 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-4.5 - parent: 0 - type: Transform -- uid: 3849 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-3.5 - parent: 0 - type: Transform -- uid: 3850 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-2.5 - parent: 0 - type: Transform -- uid: 3851 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-1.5 - parent: 0 - type: Transform -- uid: 3852 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 0 - type: Transform -- uid: 3853 - type: PottedPlant22 - components: - - pos: -21.5,-9.5 - parent: 0 - type: Transform -- uid: 3854 - type: PottedPlant22 - components: - - pos: -19.5,-9.5 - parent: 0 - type: Transform -- uid: 3855 - type: PottedPlant22 - components: - - pos: -19.5,-3.5 - parent: 0 - type: Transform -- uid: 3856 - type: PottedPlant21 - components: - - pos: -18.5,-3.5 - parent: 0 - type: Transform -- uid: 3857 - type: PottedPlant21 - components: - - pos: -18.5,-9.5 - parent: 0 - type: Transform -- uid: 3858 - type: PottedPlant21 - components: - - pos: -23.5,-3.5 - parent: 0 - type: Transform -- uid: 3859 - type: WeaponCapacitorRecharger - components: - - pos: -17.5,-3.5 - parent: 0 - type: Transform -- uid: 3860 - type: HighSecDoor - components: - - pos: -26.5,-1.5 - parent: 0 - type: Transform -- uid: 3861 - type: HighSecDoor - components: - - pos: -28.5,-1.5 - parent: 0 - type: Transform -- uid: 3862 - type: HighSecDoor - components: - - pos: -28.5,0.5 - parent: 0 - type: Transform -- uid: 3863 - type: HighSecDoor - components: - - pos: -26.5,0.5 - parent: 0 - type: Transform -- uid: 3864 - type: BlastDoorOpen - components: - - pos: -27.5,-1.5 - parent: 0 - type: Transform -- uid: 3865 - type: BlastDoorOpen - components: - - pos: -27.5,-0.5 - parent: 0 - type: Transform -- uid: 3866 - type: BlastDoorOpen - components: - - pos: -27.5,0.5 - parent: 0 - type: Transform -- uid: 3867 - type: PosterLegitNanotrasenLogo - components: - - pos: -25.5,-2.5 - parent: 0 - type: Transform -- uid: 3868 - type: SignSecureSmall - components: - - pos: -23.5,-2.5 - parent: 0 - type: Transform -- uid: 3869 - type: SignSecureSmall - components: - - pos: -19.5,-2.5 - parent: 0 - type: Transform -- uid: 3870 - type: SignSecureMed - components: - - pos: -16.5,-4.5 - parent: 0 - type: Transform -- uid: 3871 - type: SignSecureMed - components: - - pos: -16.5,-8.5 - parent: 0 - type: Transform -- uid: 3872 - type: SignSecureMed - components: - - pos: -9.5,-4.5 - parent: 0 - type: Transform -- uid: 3873 - type: SignSecureMed - components: - - pos: -9.5,-8.5 - parent: 0 - type: Transform -- uid: 3874 - type: FoodBoxDonut - components: - - pos: -27.444466,-3.3787808 - parent: 0 - type: Transform -- uid: 3875 - type: DrinkWhiskeyBottleFull - components: - - pos: -27.52259,-4.144406 - parent: 0 - type: Transform -- uid: 3876 - type: PhoneInstrument - components: - - pos: -26.67884,-3.3787808 - parent: 0 - type: Transform -- uid: 3877 - type: CigarGold - components: - - pos: -26.36634,-3.4881558 - parent: 0 - type: Transform -- uid: 3878 - type: CigarGold - components: - - pos: -26.30384,-3.5194058 - parent: 0 - type: Transform -- uid: 3879 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3880 - type: ChairOfficeDark - components: - - pos: -21.5,-4.5 - parent: 0 - type: Transform -- uid: 3881 - type: ChairOfficeDark - components: - - pos: -20.5,-4.5 - parent: 0 - type: Transform -- uid: 3882 - type: ChairOfficeDark - components: - - pos: -19.5,-4.5 - parent: 0 - type: Transform -- uid: 3883 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 0 - type: Transform -- uid: 3884 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-6.5 - parent: 0 - type: Transform -- uid: 3885 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-7.5 - parent: 0 - type: Transform -- uid: 3886 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -19.5,-8.5 - parent: 0 - type: Transform -- uid: 3887 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -20.5,-8.5 - parent: 0 - type: Transform -- uid: 3888 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -21.5,-8.5 - parent: 0 - type: Transform -- uid: 3889 - type: DrinkShotGlass - components: - - pos: -24.572554,-3.3475308 - parent: 0 - type: Transform -- uid: 3890 - type: DrinkShotGlass - components: - - pos: -24.400679,-3.4725308 - parent: 0 - type: Transform -- uid: 3891 - type: FoodBoxDonut - components: - - pos: -22.447554,-6.441281 - parent: 0 - type: Transform -- uid: 3892 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-3.5 - parent: 0 - type: Transform -- uid: 3893 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 0 - type: Transform -- uid: 3894 - type: C4 - components: - - pos: -12.516307,-3.4100308 - parent: 0 - type: Transform -- uid: 3895 - type: WeaponSubMachineGunWt550 - components: - - pos: -13.438182,-3.4256558 - parent: 0 - type: Transform -- uid: 3896 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: -13.453807,-3.1600308 - parent: 0 - type: Transform -- uid: 3897 - type: MedkitFilled - components: - - pos: -13.438182,-5.5085163 - parent: 0 - type: Transform -- uid: 3898 - type: BoxHandcuff - components: - - pos: -12.656932,-5.6960163 - parent: 0 - type: Transform -- uid: 3899 - type: CrowbarRed - components: - - pos: -12.531932,-6.3835163 - parent: 0 - type: Transform -- uid: 3900 - type: ToolboxMechanicalFilled - components: - - pos: -12.610057,-7.2428913 - parent: 0 - type: Transform -- uid: 3901 - type: YellowOxygenTankFilled - components: - - pos: -12.625682,-7.0710163 - parent: 0 - type: Transform -- uid: 3902 - type: WeaponPistolMk58 - components: - - pos: -12.469432,-9.508516 - parent: 0 - type: Transform -- uid: 3903 - type: RadioHandheld - components: - - pos: -13.516307,-6.3210163 - parent: 0 - type: Transform -- uid: 3904 - type: RadioHandheld - components: - - pos: -13.344432,-6.4147663 - parent: 0 - type: Transform -- uid: 3905 - type: FoodBoxDonkpocketPizza - components: - - pos: -13.406932,-7.1178913 - parent: 0 - type: Transform -- uid: 3906 - type: SignalButton - components: - - name: Command Room Vault - type: MetaData - - pos: -19.5,13.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 3789 - - port: Toggle - uid: 3788 - - port: Toggle - uid: 3787 - type: SignalTransmitter -- uid: 3907 - type: ComputerId - components: - - pos: -25.5,-5.5 - parent: 0 - type: Transform -- uid: 3908 - type: ExtinguisherCabinetFilled - components: - - pos: -16.5,-3.5 - parent: 0 - type: Transform -- uid: 3909 - type: ClothingBeltUtilityFilled - components: - - pos: -13.494019,-9.4266615 - parent: 0 - type: Transform -- uid: 3910 - type: ExtinguisherCabinetFilled - components: - - pos: -9.5,-5.5 - parent: 0 - type: Transform -- uid: 3911 - type: ExtinguisherCabinetFilled - components: - - pos: -13.5,10.5 - parent: 0 - type: Transform -- uid: 3912 - type: ExtinguisherCabinetFilled - components: - - pos: -4.5,16.5 - parent: 0 - type: Transform -- uid: 3913 - type: ExtinguisherCabinetFilled - components: - - pos: 15.5,15.5 - parent: 0 - type: Transform -- uid: 3914 - type: ExtinguisherCabinetFilled - components: - - pos: 21.5,17.5 - parent: 0 - type: Transform -- uid: 3915 - type: ExtinguisherCabinetFilled - components: - - pos: 13.5,18.5 - parent: 0 - type: Transform -- uid: 3916 - type: ExtinguisherCabinetFilled - components: - - pos: 18.5,2.5 - parent: 0 - type: Transform -- uid: 3917 - type: ExtinguisherCabinetFilled - components: - - pos: 18.5,-3.5 - parent: 0 - type: Transform -- uid: 3918 - type: ExtinguisherCabinetFilled - components: - - pos: 2.5,-9.5 - parent: 0 - type: Transform -- uid: 3919 - type: WallRiveted - components: - - pos: -29.5,2.5 - parent: 0 - type: Transform -- uid: 3920 - type: WallRiveted - components: - - pos: -31.5,2.5 - parent: 0 - type: Transform -- uid: 3921 - type: WallRiveted - components: - - pos: -32.5,2.5 - parent: 0 - type: Transform -- uid: 3922 - type: WallRiveted - components: - - pos: -33.5,2.5 - parent: 0 - type: Transform -- uid: 3923 - type: WallRiveted - components: - - pos: -34.5,2.5 - parent: 0 - type: Transform -- uid: 3924 - type: WallRiveted - components: - - pos: -34.5,-3.5 - parent: 0 - type: Transform -- uid: 3925 - type: WallRiveted - components: - - pos: -33.5,-3.5 - parent: 0 - type: Transform -- uid: 3926 - type: WallRiveted - components: - - pos: -32.5,-3.5 - parent: 0 - type: Transform -- uid: 3927 - type: WallRiveted - components: - - pos: -31.5,-3.5 - parent: 0 - type: Transform -- uid: 3928 - type: WallRiveted - components: - - pos: -30.5,-3.5 - parent: 0 - type: Transform -- uid: 3929 - type: WallRiveted - components: - - pos: -29.5,-3.5 - parent: 0 - type: Transform -- uid: 3930 - type: WallRiveted - components: - - pos: -29.5,7.5 - parent: 0 - type: Transform -- uid: 3931 - type: WallRiveted - components: - - pos: -31.5,7.5 - parent: 0 - type: Transform -- uid: 3932 - type: WallRiveted - components: - - pos: -34.5,7.5 - parent: 0 - type: Transform -- uid: 3933 - type: ReinforcedWindow - components: - - pos: -33.5,7.5 - parent: 0 - type: Transform -- uid: 3934 - type: ReinforcedWindow - components: - - pos: -32.5,7.5 - parent: 0 - type: Transform -- uid: 3935 - type: ReinforcedWindow - components: - - pos: -30.5,7.5 - parent: 0 - type: Transform -- uid: 3936 - type: Grille - components: - - pos: -30.5,7.5 - parent: 0 - type: Transform -- uid: 3937 - type: Grille - components: - - pos: -32.5,7.5 - parent: 0 - type: Transform -- uid: 3938 - type: Grille - components: - - pos: -33.5,7.5 - parent: 0 - type: Transform -- uid: 3939 - type: ReinforcedWindow - components: - - pos: -34.5,3.5 - parent: 0 - type: Transform -- uid: 3940 - type: ReinforcedWindow - components: - - pos: -34.5,4.5 - parent: 0 - type: Transform -- uid: 3941 - type: ReinforcedWindow - components: - - pos: -34.5,5.5 - parent: 0 - type: Transform -- uid: 3942 - type: ReinforcedWindow - components: - - pos: -34.5,6.5 - parent: 0 - type: Transform -- uid: 3943 - type: Grille - components: - - pos: -34.5,6.5 - parent: 0 - type: Transform -- uid: 3944 - type: Grille - components: - - pos: -34.5,5.5 - parent: 0 - type: Transform -- uid: 3945 - type: Grille - components: - - pos: -34.5,4.5 - parent: 0 - type: Transform -- uid: 3946 - type: Grille - components: - - pos: -34.5,3.5 - parent: 0 - type: Transform -- uid: 3947 - type: AirlockGlass - components: - - pos: -30.5,2.5 - parent: 0 - type: Transform -- uid: 3948 - type: AirlockEngineeringLocked - components: - - pos: -28.5,4.5 - parent: 0 - type: Transform -- uid: 3949 - type: SubstationBasic - components: - - pos: -27.5,6.5 - parent: 0 - type: Transform -- uid: 3950 - type: CableHV - components: - - pos: -22.5,0.5 - parent: 0 - type: Transform -- uid: 3951 - type: CableHV - components: - - pos: -23.5,0.5 - parent: 0 - type: Transform -- uid: 3952 - type: CableHV - components: - - pos: -24.5,0.5 - parent: 0 - type: Transform -- uid: 3953 - type: CableHV - components: - - pos: -25.5,0.5 - parent: 0 - type: Transform -- uid: 3954 - type: CableHV - components: - - pos: -26.5,0.5 - parent: 0 - type: Transform -- uid: 3955 - type: CableHV - components: - - pos: -27.5,0.5 - parent: 0 - type: Transform -- uid: 3956 - type: CableHV - components: - - pos: -28.5,0.5 - parent: 0 - type: Transform -- uid: 3957 - type: CableHV - components: - - pos: -29.5,0.5 - parent: 0 - type: Transform -- uid: 3958 - type: CableHV - components: - - pos: -30.5,0.5 - parent: 0 - type: Transform -- uid: 3959 - type: CableHV - components: - - pos: -30.5,1.5 - parent: 0 - type: Transform -- uid: 3960 - type: CableHV - components: - - pos: -30.5,2.5 - parent: 0 - type: Transform -- uid: 3961 - type: CableHV - components: - - pos: -30.5,3.5 - parent: 0 - type: Transform -- uid: 3962 - type: CableHV - components: - - pos: -30.5,4.5 - parent: 0 - type: Transform -- uid: 3963 - type: CableHV - components: - - pos: -29.5,4.5 - parent: 0 - type: Transform -- uid: 3964 - type: CableHV - components: - - pos: -28.5,4.5 - parent: 0 - type: Transform -- uid: 3965 - type: CableHV - components: - - pos: -27.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3966 - type: CableHV - components: - - pos: -27.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3967 - type: CableHV - components: - - pos: -27.5,6.5 - parent: 0 - type: Transform -- uid: 3968 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3969 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -34.5,0.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3970 - type: AirlockExternalGlass - components: - - pos: -32.5,-1.5 - parent: 0 - type: Transform -- uid: 3971 - type: AirlockExternalGlass - components: - - pos: -32.5,0.5 - parent: 0 - type: Transform -- uid: 3972 - type: ReinforcedWindow - components: - - pos: -34.5,-2.5 - parent: 0 - type: Transform -- uid: 3973 - type: ReinforcedWindow - components: - - pos: -34.5,-0.5 - parent: 0 - type: Transform -- uid: 3974 - type: ReinforcedWindow - components: - - pos: -34.5,1.5 - parent: 0 - type: Transform -- uid: 3975 - type: ReinforcedWindow - components: - - pos: -32.5,1.5 - parent: 0 - type: Transform -- uid: 3976 - type: ReinforcedWindow - components: - - pos: -32.5,-2.5 - parent: 0 - type: Transform -- uid: 3977 - type: ReinforcedWindow - components: - - pos: -32.5,-0.5 - parent: 0 - type: Transform -- uid: 3978 - type: ReinforcedWindow - components: - - pos: -33.5,-0.5 - parent: 0 - type: Transform -- uid: 3979 - type: Grille - components: - - pos: -32.5,-0.5 - parent: 0 - type: Transform -- uid: 3980 - type: Grille - components: - - pos: -33.5,-0.5 - parent: 0 - type: Transform -- uid: 3981 - type: Grille - components: - - pos: -34.5,-0.5 - parent: 0 - type: Transform -- uid: 3982 - type: Grille - components: - - pos: -34.5,-2.5 - parent: 0 - type: Transform -- uid: 3983 - type: Grille - components: - - pos: -32.5,-2.5 - parent: 0 - type: Transform -- uid: 3984 - type: Grille - components: - - pos: -32.5,1.5 - parent: 0 - type: Transform -- uid: 3985 - type: Grille - components: - - pos: -34.5,1.5 - parent: 0 - type: Transform -- uid: 3986 - type: APCBasic - components: - - pos: -31.5,2.5 - parent: 0 - type: Transform -- uid: 3987 - type: APCBasic - components: - - pos: -31.5,7.5 - parent: 0 - type: Transform -- uid: 3988 - type: APCBasic - components: - - pos: -21.5,-2.5 - parent: 0 - type: Transform -- uid: 3989 - type: APCBasic - components: - - pos: -13.5,-2.5 - parent: 0 - type: Transform -- uid: 3990 - type: APCBasic - components: - - pos: -17.5,1.5 - parent: 0 - type: Transform -- uid: 3991 - type: CableApcExtension - components: - - pos: -31.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3992 - type: CableApcExtension - components: - - pos: -31.5,1.5 - parent: 0 - type: Transform -- uid: 3993 - type: CableApcExtension - components: - - pos: -31.5,0.5 - parent: 0 - type: Transform -- uid: 3994 - type: CableApcExtension - components: - - pos: -31.5,-0.5 - parent: 0 - type: Transform -- uid: 3995 - type: CableApcExtension - components: - - pos: -31.5,-1.5 - parent: 0 - type: Transform -- uid: 3996 - type: CableApcExtension - components: - - pos: -31.5,-2.5 - parent: 0 - type: Transform -- uid: 3997 - type: CableApcExtension - components: - - pos: -32.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3998 - type: CableApcExtension - components: - - pos: -33.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3999 - type: CableApcExtension - components: - - pos: -34.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4000 - type: CableApcExtension - components: - - pos: -32.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4001 - type: CableApcExtension - components: - - pos: -33.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4002 - type: CableApcExtension - components: - - pos: -34.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4003 - type: CableApcExtension - components: - - pos: -32.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4004 - type: CableApcExtension - components: - - pos: -33.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4005 - type: CableApcExtension - components: - - pos: -34.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4006 - type: CableApcExtension - components: - - pos: -30.5,-0.5 - parent: 0 - type: Transform -- uid: 4007 - type: CableApcExtension - components: - - pos: -29.5,-0.5 - parent: 0 - type: Transform -- uid: 4008 - type: CableApcExtension - components: - - pos: -28.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4009 - type: CableApcExtension - components: - - pos: -26.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4010 - type: CableApcExtension - components: - - pos: -25.5,-0.5 - parent: 0 - type: Transform -- uid: 4011 - type: CableApcExtension - components: - - pos: -24.5,-0.5 - parent: 0 - type: Transform -- uid: 4012 - type: CableApcExtension - components: - - pos: -23.5,-0.5 - parent: 0 - type: Transform -- uid: 4013 - type: CableApcExtension - components: - - pos: -22.5,-0.5 - parent: 0 - type: Transform -- uid: 4014 - type: CableApcExtension - components: - - pos: -21.5,-0.5 - parent: 0 - type: Transform -- uid: 4015 - type: CableApcExtension - components: - - pos: -20.5,-0.5 - parent: 0 - type: Transform -- uid: 4016 - type: CableApcExtension - components: - - pos: -19.5,-0.5 - parent: 0 - type: Transform -- uid: 4017 - type: CableApcExtension - components: - - pos: -18.5,-0.5 - parent: 0 - type: Transform -- uid: 4018 - type: CableApcExtension - components: - - pos: -17.5,-0.5 - parent: 0 - type: Transform -- uid: 4019 - type: CableApcExtension - components: - - pos: -16.5,-0.5 - parent: 0 - type: Transform -- uid: 4020 - type: CableApcExtension - components: - - pos: -15.5,-0.5 - parent: 0 - type: Transform -- uid: 4021 - type: CableApcExtension - components: - - pos: -14.5,-0.5 - parent: 0 - type: Transform -- uid: 4022 - type: CableApcExtension - components: - - pos: -13.5,-0.5 - parent: 0 - type: Transform -- uid: 4023 - type: CableApcExtension - components: - - pos: -12.5,-0.5 - parent: 0 - type: Transform -- uid: 4024 - type: CableApcExtension - components: - - pos: -11.5,-0.5 - parent: 0 - type: Transform -- uid: 4025 - type: CableApcExtension - components: - - pos: -10.5,-0.5 - parent: 0 - type: Transform -- uid: 4026 - type: CableApcExtension - components: - - pos: -9.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4027 - type: CableApcExtension - components: - - pos: -14.5,0.5 - parent: 0 - type: Transform -- uid: 4028 - type: CableApcExtension - components: - - pos: -14.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4029 - type: CableApcExtension - components: - - pos: -15.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4030 - type: CableApcExtension - components: - - pos: -16.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4031 - type: CableApcExtension - components: - - pos: -12.5,0.5 - parent: 0 - type: Transform -- uid: 4032 - type: CableApcExtension - components: - - pos: -12.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4033 - type: CableApcExtension - components: - - pos: -11.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4034 - type: CableApcExtension - components: - - pos: -10.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4035 - type: CableApcExtension - components: - - pos: -13.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4036 - type: CableApcExtension - components: - - pos: -13.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4037 - type: CableApcExtension - components: - - pos: -17.5,0.5 - parent: 0 - type: Transform -- uid: 4038 - type: CableApcExtension - components: - - pos: -17.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4039 - type: CableApcExtension - components: - - pos: -21.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4040 - type: CableApcExtension - components: - - pos: -21.5,-3.5 - parent: 0 - type: Transform -- uid: 4041 - type: CableApcExtension - components: - - pos: -21.5,-4.5 - parent: 0 - type: Transform -- uid: 4042 - type: CableApcExtension - components: - - pos: -21.5,-5.5 - parent: 0 - type: Transform -- uid: 4043 - type: CableApcExtension - components: - - pos: -21.5,-6.5 - parent: 0 - type: Transform -- uid: 4044 - type: CableApcExtension - components: - - pos: -21.5,-7.5 - parent: 0 - type: Transform -- uid: 4045 - type: CableApcExtension - components: - - pos: -21.5,-8.5 - parent: 0 - type: Transform -- uid: 4046 - type: CableApcExtension - components: - - pos: -22.5,-5.5 - parent: 0 - type: Transform -- uid: 4047 - type: CableApcExtension - components: - - pos: -23.5,-5.5 - parent: 0 - type: Transform -- uid: 4048 - type: CableApcExtension - components: - - pos: -24.5,-5.5 - parent: 0 - type: Transform -- uid: 4049 - type: CableApcExtension - components: - - pos: -25.5,-5.5 - parent: 0 - type: Transform -- uid: 4050 - type: CableApcExtension - components: - - pos: -26.5,-5.5 - parent: 0 - type: Transform -- uid: 4051 - type: CableApcExtension - components: - - pos: -26.5,-6.5 - parent: 0 - type: Transform -- uid: 4052 - type: CableApcExtension - components: - - pos: -26.5,-7.5 - parent: 0 - type: Transform -- uid: 4053 - type: CableApcExtension - components: - - pos: -25.5,-7.5 - parent: 0 - type: Transform -- uid: 4054 - type: CableApcExtension - components: - - pos: -24.5,-7.5 - parent: 0 - type: Transform -- uid: 4055 - type: CableApcExtension - components: - - pos: -23.5,-7.5 - parent: 0 - type: Transform -- uid: 4056 - type: CableApcExtension - components: - - pos: -22.5,-7.5 - parent: 0 - type: Transform -- uid: 4057 - type: CableApcExtension - components: - - pos: -20.5,-5.5 - parent: 0 - type: Transform -- uid: 4058 - type: CableApcExtension - components: - - pos: -19.5,-5.5 - parent: 0 - type: Transform -- uid: 4059 - type: CableApcExtension - components: - - pos: -18.5,-5.5 - parent: 0 - type: Transform -- uid: 4060 - type: CableApcExtension - components: - - pos: -17.5,-5.5 - parent: 0 - type: Transform -- uid: 4061 - type: CableApcExtension - components: - - pos: -17.5,-6.5 - parent: 0 - type: Transform -- uid: 4062 - type: CableApcExtension - components: - - pos: -17.5,-7.5 - parent: 0 - type: Transform -- uid: 4063 - type: CableApcExtension - components: - - pos: -18.5,-7.5 - parent: 0 - type: Transform -- uid: 4064 - type: CableApcExtension - components: - - pos: -19.5,-7.5 - parent: 0 - type: Transform -- uid: 4065 - type: CableApcExtension - components: - - pos: -20.5,-7.5 - parent: 0 - type: Transform -- uid: 4066 - type: CableApcExtension - components: - - pos: -26.5,-4.5 - parent: 0 - type: Transform -- uid: 4067 - type: CableApcExtension - components: - - pos: -26.5,-8.5 - parent: 0 - type: Transform -- uid: 4068 - type: CableApcExtension - components: - - pos: -17.5,-8.5 - parent: 0 - type: Transform -- uid: 4069 - type: CableApcExtension - components: - - pos: -17.5,-4.5 - parent: 0 - type: Transform -- uid: 4070 - type: CableApcExtension - components: - - pos: -13.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4071 - type: CableApcExtension - components: - - pos: -13.5,-3.5 - parent: 0 - type: Transform -- uid: 4072 - type: CableApcExtension - components: - - pos: -13.5,-4.5 - parent: 0 - type: Transform -- uid: 4073 - type: CableApcExtension - components: - - pos: -13.5,-5.5 - parent: 0 - type: Transform -- uid: 4074 - type: CableApcExtension - components: - - pos: -13.5,-6.5 - parent: 0 - type: Transform -- uid: 4075 - type: CableApcExtension - components: - - pos: -13.5,-7.5 - parent: 0 - type: Transform -- uid: 4076 - type: CableApcExtension - components: - - pos: -13.5,-8.5 - parent: 0 - type: Transform -- uid: 4077 - type: CableApcExtension - components: - - pos: -12.5,-8.5 - parent: 0 - type: Transform -- uid: 4078 - type: CableApcExtension - components: - - pos: -11.5,-8.5 - parent: 0 - type: Transform -- uid: 4079 - type: CableApcExtension - components: - - pos: -12.5,-4.5 - parent: 0 - type: Transform -- uid: 4080 - type: CableApcExtension - components: - - pos: -11.5,-4.5 - parent: 0 - type: Transform -- uid: 4081 - type: CableApcExtension - components: - - pos: -14.5,-4.5 - parent: 0 - type: Transform -- uid: 4082 - type: CableApcExtension - components: - - pos: -14.5,-8.5 - parent: 0 - type: Transform -- uid: 4083 - type: CableApcExtension - components: - - pos: -11.5,-6.5 - parent: 0 - type: Transform -- uid: 4084 - type: CableApcExtension - components: - - pos: -12.5,-6.5 - parent: 0 - type: Transform -- uid: 4085 - type: CableApcExtension - components: - - pos: -31.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4086 - type: CableApcExtension - components: - - pos: -31.5,6.5 - parent: 0 - type: Transform -- uid: 4087 - type: CableApcExtension - components: - - pos: -31.5,5.5 - parent: 0 - type: Transform -- uid: 4088 - type: CableApcExtension - components: - - pos: -31.5,4.5 - parent: 0 - type: Transform -- uid: 4089 - type: CableApcExtension - components: - - pos: -32.5,4.5 - parent: 0 - type: Transform -- uid: 4090 - type: CableApcExtension - components: - - pos: -33.5,4.5 - parent: 0 - type: Transform -- uid: 4091 - type: CableApcExtension - components: - - pos: -34.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4092 - type: CableApcExtension - components: - - pos: -34.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4093 - type: CableApcExtension - components: - - pos: -34.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4094 - type: CableApcExtension - components: - - pos: -34.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4095 - type: CableApcExtension - components: - - pos: -32.5,6.5 - parent: 0 - type: Transform -- uid: 4096 - type: CableApcExtension - components: - - pos: -32.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4097 - type: CableApcExtension - components: - - pos: -33.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4098 - type: CableApcExtension - components: - - pos: -30.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4099 - type: CableApcExtension - components: - - pos: -30.5,4.5 - parent: 0 - type: Transform -- uid: 4100 - type: CableApcExtension - components: - - pos: -29.5,4.5 - parent: 0 - type: Transform -- uid: 4101 - type: CableApcExtension - components: - - pos: -28.5,4.5 - parent: 0 - type: Transform -- uid: 4102 - type: CableApcExtension - components: - - pos: -27.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4103 - type: CableApcExtension - components: - - pos: -27.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4104 - type: CableApcExtension - components: - - pos: -27.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4105 - type: CableMV - components: - - pos: -31.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4106 - type: CableMV - components: - - pos: -31.5,3.5 - parent: 0 - type: Transform -- uid: 4107 - type: CableMV - components: - - pos: -31.5,4.5 - parent: 0 - type: Transform -- uid: 4108 - type: CableMV - components: - - pos: -31.5,5.5 - parent: 0 - type: Transform -- uid: 4109 - type: CableMV - components: - - pos: -31.5,6.5 - parent: 0 - type: Transform -- uid: 4110 - type: CableMV - components: - - pos: -30.5,4.5 - parent: 0 - type: Transform -- uid: 4111 - type: CableMV - components: - - pos: -29.5,4.5 - parent: 0 - type: Transform -- uid: 4112 - type: CableMV - components: - - pos: -28.5,4.5 - parent: 0 - type: Transform -- uid: 4113 - type: CableMV - components: - - pos: -27.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4114 - type: CableMV - components: - - pos: -27.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4115 - type: CableMV - components: - - pos: -27.5,6.5 - parent: 0 - type: Transform -- uid: 4116 - type: CableMV - components: - - pos: -31.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4117 - type: CableMV - components: - - pos: -31.5,1.5 - parent: 0 - type: Transform -- uid: 4118 - type: CableMV - components: - - pos: -31.5,0.5 - parent: 0 - type: Transform -- uid: 4119 - type: CableMV - components: - - pos: -31.5,-0.5 - parent: 0 - type: Transform -- uid: 4120 - type: CableMV - components: - - pos: -30.5,-0.5 - parent: 0 - type: Transform -- uid: 4121 - type: CableMV - components: - - pos: -29.5,-0.5 - parent: 0 - type: Transform -- uid: 4122 - type: CableMV - components: - - pos: -28.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4123 - type: CableMV - components: - - pos: -27.5,-0.5 - parent: 0 - type: Transform -- uid: 4124 - type: CableMV - components: - - pos: -26.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4125 - type: CableMV - components: - - pos: -25.5,-0.5 - parent: 0 - type: Transform -- uid: 4126 - type: CableMV - components: - - pos: -24.5,-0.5 - parent: 0 - type: Transform -- uid: 4127 - type: CableMV - components: - - pos: -23.5,-0.5 - parent: 0 - type: Transform -- uid: 4128 - type: CableMV - components: - - pos: -22.5,-0.5 - parent: 0 - type: Transform -- uid: 4129 - type: CableMV - components: - - pos: -21.5,-0.5 - parent: 0 - type: Transform -- uid: 4130 - type: CableMV - components: - - pos: -21.5,-1.5 - parent: 0 - type: Transform -- uid: 4131 - type: CableMV - components: - - pos: -21.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4132 - type: CableMV - components: - - pos: -20.5,-0.5 - parent: 0 - type: Transform -- uid: 4133 - type: CableMV - components: - - pos: -19.5,-0.5 - parent: 0 - type: Transform -- uid: 4134 - type: CableMV - components: - - pos: -18.5,-0.5 - parent: 0 - type: Transform -- uid: 4135 - type: CableMV - components: - - pos: -17.5,-0.5 - parent: 0 - type: Transform -- uid: 4136 - type: CableMV - components: - - pos: -17.5,0.5 - parent: 0 - type: Transform -- uid: 4137 - type: CableMV - components: - - pos: -17.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4138 - type: CableMV - components: - - pos: -16.5,-0.5 - parent: 0 - type: Transform -- uid: 4139 - type: CableMV - components: - - pos: -15.5,-0.5 - parent: 0 - type: Transform -- uid: 4140 - type: CableMV - components: - - pos: -14.5,-0.5 - parent: 0 - type: Transform -- uid: 4141 - type: CableMV - components: - - pos: -13.5,-0.5 - parent: 0 - type: Transform -- uid: 4142 - type: CableMV - components: - - pos: -13.5,-1.5 - parent: 0 - type: Transform -- uid: 4143 - type: CableMV - components: - - pos: -13.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4144 - type: AtmosDeviceFanTiny - components: - - pos: -34.5,-1.5 - parent: 0 - type: Transform -- uid: 4145 - type: AtmosDeviceFanTiny - components: - - pos: -34.5,0.5 - parent: 0 - type: Transform -- uid: 4146 - type: Catwalk - components: - - pos: -33.5,0.5 - parent: 0 - type: Transform -- uid: 4147 - type: Catwalk - components: - - pos: -33.5,-1.5 - parent: 0 - type: Transform -- uid: 4148 - type: ClosetEmergencyFilledRandom - components: - - pos: -33.5,1.5 - parent: 0 - type: Transform -- uid: 4149 - type: ClosetEmergencyFilledRandom - components: - - pos: -33.5,-2.5 - parent: 0 - type: Transform -- uid: 4150 - type: ExtinguisherCabinetFilled - components: - - pos: -28.5,1.5 - parent: 0 - type: Transform -- uid: 4151 - type: SignSecureMed - components: - - pos: -28.5,-2.5 - parent: 0 - type: Transform -- uid: 4152 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -31.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4153 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4154 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4155 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4156 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4157 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -29.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4158 - type: ClosetFireFilled - components: - - pos: -29.5,6.5 - parent: 0 - type: Transform -- uid: 4159 - type: ClosetEmergencyFilledRandom - components: - - pos: -30.5,6.5 - parent: 0 - type: Transform -- uid: 4160 - type: Chair - components: - - pos: -31.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4161 - type: Chair - components: - - pos: -32.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4162 - type: Chair - components: - - pos: -33.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4163 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -31.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4164 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -32.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4165 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -33.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4166 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -29.5,3.5 - parent: 0 - type: Transform -- uid: 4167 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4168 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -33.5,3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4169 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -29.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4170 - type: Poweredlight - components: - - pos: -31.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4171 - type: Poweredlight - components: - - pos: -27.5,0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4172 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4173 - type: Poweredlight - components: - - pos: -13.5,0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4174 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4175 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4176 - type: Poweredlight - components: - - pos: -17.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4177 - type: Poweredlight - components: - - pos: -12.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4178 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4179 - type: StatueVenusRed - components: - - pos: -21.5,-6.5 - parent: 0 - type: Transform -- uid: 4180 - type: StatueVenusBlue - components: - - pos: -20.5,-6.5 - parent: 0 - type: Transform -- uid: 4181 - type: Catwalk - components: - - pos: -27.5,3.5 - parent: 0 - type: Transform -- uid: 4182 - type: Catwalk - components: - - pos: -27.5,4.5 - parent: 0 - type: Transform -- uid: 4183 - type: Catwalk - components: - - pos: -27.5,5.5 - parent: 0 - type: Transform -- uid: 4184 - type: TableWood - components: - - pos: -27.5,-8.5 - parent: 0 - type: Transform -- uid: 4185 - type: Bookshelf - components: - - pos: -27.5,-7.5 - parent: 0 - type: Transform -- uid: 4186 - type: Bookshelf - components: - - pos: -27.5,-6.5 - parent: 0 - type: Transform -- uid: 4187 - type: Bookshelf - components: - - pos: -27.5,-5.5 - parent: 0 - type: Transform -- uid: 4188 - type: WallRiveted - components: - - pos: 5.5,-15.5 - parent: 0 - type: Transform -- uid: 4189 - type: WallRiveted - components: - - pos: 5.5,-16.5 - parent: 0 - type: Transform -- uid: 4190 - type: WallRiveted - components: - - pos: 5.5,-17.5 - parent: 0 - type: Transform -- uid: 4191 - type: WallRiveted - components: - - pos: -6.5,-17.5 - parent: 0 - type: Transform -- uid: 4192 - type: WallRiveted - components: - - pos: -6.5,-16.5 - parent: 0 - type: Transform -- uid: 4193 - type: WallRiveted - components: - - pos: -6.5,-19.5 - parent: 0 - type: Transform -- uid: 4194 - type: WallRiveted - components: - - pos: 5.5,-19.5 - parent: 0 - type: Transform -- uid: 4195 - type: WallRiveted - components: - - pos: 5.5,-20.5 - parent: 0 - type: Transform -- uid: 4196 - type: WallRiveted - components: - - pos: 4.5,-20.5 - parent: 0 - type: Transform -- uid: 4197 - type: WallRiveted - components: - - pos: 3.5,-20.5 - parent: 0 - type: Transform -- uid: 4198 - type: WallRiveted - components: - - pos: 2.5,-20.5 - parent: 0 - type: Transform -- uid: 4199 - type: WallRiveted - components: - - pos: 1.5,-20.5 - parent: 0 - type: Transform -- uid: 4200 - type: WallRiveted - components: - - pos: 0.5,-20.5 - parent: 0 - type: Transform -- uid: 4201 - type: WallRiveted - components: - - pos: -1.5,-20.5 - parent: 0 - type: Transform -- uid: 4202 - type: WallRiveted - components: - - pos: -2.5,-20.5 - parent: 0 - type: Transform -- uid: 4203 - type: WallRiveted - components: - - pos: -3.5,-20.5 - parent: 0 - type: Transform -- uid: 4204 - type: WallRiveted - components: - - pos: -4.5,-20.5 - parent: 0 - type: Transform -- uid: 4205 - type: WallRiveted - components: - - pos: -5.5,-20.5 - parent: 0 - type: Transform -- uid: 4206 - type: WallRiveted - components: - - pos: -6.5,-20.5 - parent: 0 - type: Transform -- uid: 4207 - type: WallRiveted - components: - - pos: 14.5,-18.5 - parent: 0 - type: Transform -- uid: 4208 - type: WallRiveted - components: - - pos: 14.5,-19.5 - parent: 0 - type: Transform -- uid: 4209 - type: WallRiveted - components: - - pos: 14.5,-20.5 - parent: 0 - type: Transform -- uid: 4210 - type: WallRiveted - components: - - pos: 11.5,-20.5 - parent: 0 - type: Transform -- uid: 4211 - type: WallRiveted - components: - - pos: 10.5,-20.5 - parent: 0 - type: Transform -- uid: 4212 - type: WallRiveted - components: - - pos: 9.5,-20.5 - parent: 0 - type: Transform -- uid: 4213 - type: WallRiveted - components: - - pos: 8.5,-20.5 - parent: 0 - type: Transform -- uid: 4214 - type: WallRiveted - components: - - pos: 7.5,-20.5 - parent: 0 - type: Transform -- uid: 4215 - type: WallRiveted - components: - - pos: 6.5,-20.5 - parent: 0 - type: Transform -- uid: 4216 - type: WallRiveted - components: - - pos: -9.5,-15.5 - parent: 0 - type: Transform -- uid: 4217 - type: WallRiveted - components: - - pos: -10.5,-15.5 - parent: 0 - type: Transform -- uid: 4218 - type: WallRiveted - components: - - pos: -11.5,-15.5 - parent: 0 - type: Transform -- uid: 4219 - type: WallRiveted - components: - - pos: -12.5,-15.5 - parent: 0 - type: Transform -- uid: 4220 - type: WallRiveted - components: - - pos: -9.5,-17.5 - parent: 0 - type: Transform -- uid: 4221 - type: WallRiveted - components: - - pos: -12.5,-17.5 - parent: 0 - type: Transform -- uid: 4222 - type: ReinforcedWindow - components: - - pos: -11.5,-17.5 - parent: 0 - type: Transform -- uid: 4223 - type: ReinforcedWindow - components: - - pos: -10.5,-17.5 - parent: 0 - type: Transform -- uid: 4224 - type: ReinforcedWindow - components: - - pos: -9.5,-16.5 - parent: 0 - type: Transform -- uid: 4225 - type: ReinforcedWindow - components: - - pos: -12.5,-16.5 - parent: 0 - type: Transform -- uid: 4226 - type: Grille - components: - - pos: -9.5,-16.5 - parent: 0 - type: Transform -- uid: 4227 - type: Grille - components: - - pos: -10.5,-17.5 - parent: 0 - type: Transform -- uid: 4228 - type: Grille - components: - - pos: -11.5,-17.5 - parent: 0 - type: Transform -- uid: 4229 - type: Grille - components: - - pos: -12.5,-16.5 - parent: 0 - type: Transform -- uid: 4230 - type: WindoorCommandLocked - components: - - pos: -12.5,-3.5 - parent: 0 - type: Transform -- uid: 4231 - type: WindoorCommandLocked - components: - - pos: -13.5,-3.5 - parent: 0 - type: Transform -- uid: 4232 - type: WindoorCommandLocked - components: - - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 0 - type: Transform -- uid: 4233 - type: WindoorCommandLocked - components: - - rot: 3.141592653589793 rad - pos: -12.5,-9.5 - parent: 0 - type: Transform -- uid: 4234 - type: WallRiveted - components: - - pos: -14.5,-17.5 - parent: 0 - type: Transform -- uid: 4235 - type: WallRiveted - components: - - pos: -15.5,-17.5 - parent: 0 - type: Transform -- uid: 4236 - type: WallRiveted - components: - - pos: -15.5,-16.5 - parent: 0 - type: Transform -- uid: 4237 - type: WallRiveted - components: - - pos: -15.5,-15.5 - parent: 0 - type: Transform -- uid: 4238 - type: WallRiveted - components: - - pos: -14.5,-15.5 - parent: 0 - type: Transform -- uid: 4239 - type: WallRiveted - components: - - pos: -15.5,-19.5 - parent: 0 - type: Transform -- uid: 4240 - type: WallRiveted - components: - - pos: -15.5,-18.5 - parent: 0 - type: Transform -- uid: 4241 - type: AtmosDeviceFanTiny - components: - - pos: -13.5,-16.5 - parent: 0 - type: Transform -- uid: 4242 - type: AirlockExternalLocked - components: - - pos: -13.5,-15.5 - parent: 0 - type: Transform -- uid: 4243 - type: AirlockExternalGlassLocked - components: - - pos: -13.5,-17.5 - parent: 0 - type: Transform -- uid: 4244 - type: WallRiveted - components: - - pos: -12.5,-20.5 - parent: 0 - type: Transform -- uid: 4245 - type: WallRiveted - components: - - pos: -11.5,-20.5 - parent: 0 - type: Transform -- uid: 4246 - type: WallRiveted - components: - - pos: -10.5,-20.5 - parent: 0 - type: Transform -- uid: 4247 - type: WallRiveted - components: - - pos: -9.5,-20.5 - parent: 0 - type: Transform -- uid: 4248 - type: WallRiveted - components: - - pos: -8.5,-20.5 - parent: 0 - type: Transform -- uid: 4249 - type: WallRiveted - components: - - pos: -7.5,-20.5 - parent: 0 - type: Transform -- uid: 4250 - type: WallRiveted - components: - - pos: -15.5,-20.5 - parent: 0 - type: Transform -- uid: 4251 - type: ReinforcedWindow - components: - - pos: -3.5,-17.5 - parent: 0 - type: Transform -- uid: 4252 - type: ReinforcedWindow - components: - - pos: -3.5,-15.5 - parent: 0 - type: Transform -- uid: 4253 - type: ReinforcedWindow - components: - - pos: -5.5,-17.5 - parent: 0 - type: Transform -- uid: 4254 - type: ReinforcedWindow - components: - - pos: 4.5,-17.5 - parent: 0 - type: Transform -- uid: 4255 - type: ReinforcedWindow - components: - - pos: 2.5,-17.5 - parent: 0 - type: Transform -- uid: 4256 - type: ReinforcedWindow - components: - - pos: 2.5,-15.5 - parent: 0 - type: Transform -- uid: 4257 - type: Grille - components: - - pos: -3.5,-17.5 - parent: 0 - type: Transform -- uid: 4258 - type: Grille - components: - - pos: -3.5,-15.5 - parent: 0 - type: Transform -- uid: 4259 - type: Grille - components: - - pos: -5.5,-17.5 - parent: 0 - type: Transform -- uid: 4260 - type: Grille - components: - - pos: 2.5,-17.5 - parent: 0 - type: Transform -- uid: 4261 - type: Grille - components: - - pos: 2.5,-15.5 - parent: 0 - type: Transform -- uid: 4262 - type: Grille - components: - - pos: 4.5,-17.5 - parent: 0 - type: Transform -- uid: 4263 - type: Table - components: - - pos: -3.5,-16.5 - parent: 0 - type: Transform -- uid: 4264 - type: Table - components: - - pos: 2.5,-16.5 - parent: 0 - type: Transform -- uid: 4265 - type: FirelockGlass - components: - - pos: -3.5,-16.5 - parent: 0 - type: Transform -- uid: 4266 - type: FirelockGlass - components: - - pos: 2.5,-16.5 - parent: 0 - type: Transform -- uid: 4267 - type: WallRiveted - components: - - pos: -12.5,-21.5 - parent: 0 - type: Transform -- uid: 4268 - type: WallRiveted - components: - - pos: 11.5,-21.5 - parent: 0 - type: Transform -- uid: 4269 - type: WallRiveted - components: - - pos: -12.5,-23.5 - parent: 0 - type: Transform -- uid: 4270 - type: WallRiveted - components: - - pos: -6.5,-21.5 - parent: 0 - type: Transform -- uid: 4271 - type: WallRiveted - components: - - pos: -6.5,-22.5 - parent: 0 - type: Transform -- uid: 4272 - type: WallRiveted - components: - - pos: -6.5,-23.5 - parent: 0 - type: Transform -- uid: 4273 - type: WallRiveted - components: - - pos: -6.5,-24.5 - parent: 0 - type: Transform -- uid: 4274 - type: WallRiveted - components: - - pos: -8.5,-24.5 - parent: 0 - type: Transform -- uid: 4275 - type: WallRiveted - components: - - pos: -8.5,-28.5 - parent: 0 - type: Transform -- uid: 4276 - type: WallRiveted - components: - - pos: -8.5,-29.5 - parent: 0 - type: Transform -- uid: 4277 - type: WallRiveted - components: - - pos: -9.5,-29.5 - parent: 0 - type: Transform -- uid: 4278 - type: WallRiveted - components: - - pos: -10.5,-29.5 - parent: 0 - type: Transform -- uid: 4279 - type: WallRiveted - components: - - pos: -11.5,-29.5 - parent: 0 - type: Transform -- uid: 4280 - type: WallRiveted - components: - - pos: -12.5,-29.5 - parent: 0 - type: Transform -- uid: 4281 - type: WallRiveted - components: - - pos: -12.5,-28.5 - parent: 0 - type: Transform -- uid: 4282 - type: WallRiveted - components: - - pos: -12.5,-27.5 - parent: 0 - type: Transform -- uid: 4283 - type: WallRiveted - components: - - pos: -12.5,-26.5 - parent: 0 - type: Transform -- uid: 4284 - type: WallRiveted - components: - - pos: -12.5,-25.5 - parent: 0 - type: Transform -- uid: 4285 - type: WallRiveted - components: - - pos: -12.5,-24.5 - parent: 0 - type: Transform -- uid: 4286 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,29.5 - parent: 0 - type: Transform -- uid: 4287 - type: AirlockGlass - components: - - pos: -6.5,-18.5 - parent: 0 - type: Transform -- uid: 4288 - type: WallRiveted - components: - - pos: 11.5,-29.5 - parent: 0 - type: Transform -- uid: 4289 - type: WallRiveted - components: - - pos: 10.5,-29.5 - parent: 0 - type: Transform -- uid: 4290 - type: WallRiveted - components: - - pos: 9.5,-29.5 - parent: 0 - type: Transform -- uid: 4291 - type: WallRiveted - components: - - pos: 8.5,-29.5 - parent: 0 - type: Transform -- uid: 4292 - type: WallRiveted - components: - - pos: 7.5,-29.5 - parent: 0 - type: Transform -- uid: 4293 - type: WallRiveted - components: - - pos: 11.5,-28.5 - parent: 0 - type: Transform -- uid: 4294 - type: WallRiveted - components: - - pos: 11.5,-27.5 - parent: 0 - type: Transform -- uid: 4295 - type: WallRiveted - components: - - pos: 11.5,-26.5 - parent: 0 - type: Transform -- uid: 4296 - type: WallRiveted - components: - - pos: 11.5,-25.5 - parent: 0 - type: Transform -- uid: 4297 - type: WallRiveted - components: - - pos: 11.5,-24.5 - parent: 0 - type: Transform -- uid: 4298 - type: WallRiveted - components: - - pos: 11.5,-23.5 - parent: 0 - type: Transform -- uid: 4299 - type: FirelockGlass - components: - - pos: 6.5,-24.5 - parent: 0 - type: Transform -- uid: 4300 - type: WallRiveted - components: - - pos: 7.5,-24.5 - parent: 0 - type: Transform -- uid: 4301 - type: WallRiveted - components: - - pos: 5.5,-24.5 - parent: 0 - type: Transform -- uid: 4302 - type: WallRiveted - components: - - pos: 5.5,-23.5 - parent: 0 - type: Transform -- uid: 4303 - type: WallRiveted - components: - - pos: 5.5,-22.5 - parent: 0 - type: Transform -- uid: 4304 - type: WallRiveted - components: - - pos: 5.5,-21.5 - parent: 0 - type: Transform -- uid: 4305 - type: ReinforcedWindow - components: - - pos: -4.5,-21.5 - parent: 0 - type: Transform -- uid: 4306 - type: ReinforcedWindow - components: - - pos: -4.5,-22.5 - parent: 0 - type: Transform -- uid: 4307 - type: ReinforcedWindow - components: - - pos: -4.5,-23.5 - parent: 0 - type: Transform -- uid: 4308 - type: ReinforcedWindow - components: - - pos: -2.5,-23.5 - parent: 0 - type: Transform -- uid: 4309 - type: ReinforcedWindow - components: - - pos: -2.5,-22.5 - parent: 0 - type: Transform -- uid: 4310 - type: ReinforcedWindow - components: - - pos: -2.5,-21.5 - parent: 0 - type: Transform -- uid: 4311 - type: ReinforcedWindow - components: - - pos: 1.5,-21.5 - parent: 0 - type: Transform -- uid: 4312 - type: ReinforcedWindow - components: - - pos: 1.5,-22.5 - parent: 0 - type: Transform -- uid: 4313 - type: ReinforcedWindow - components: - - pos: 1.5,-23.5 - parent: 0 - type: Transform -- uid: 4314 - type: ReinforcedWindow - components: - - pos: 3.5,-23.5 - parent: 0 - type: Transform -- uid: 4315 - type: ReinforcedWindow - components: - - pos: 3.5,-22.5 - parent: 0 - type: Transform -- uid: 4316 - type: ReinforcedWindow - components: - - pos: 3.5,-21.5 - parent: 0 - type: Transform -- uid: 4317 - type: Grille - components: - - pos: -4.5,-23.5 - parent: 0 - type: Transform -- uid: 4318 - type: Grille - components: - - pos: -4.5,-22.5 - parent: 0 - type: Transform -- uid: 4319 - type: Grille - components: - - pos: -4.5,-21.5 - parent: 0 - type: Transform -- uid: 4320 - type: Grille - components: - - pos: -2.5,-23.5 - parent: 0 - type: Transform -- uid: 4321 - type: Grille - components: - - pos: -2.5,-22.5 - parent: 0 - type: Transform -- uid: 4322 - type: Grille - components: - - pos: -2.5,-21.5 - parent: 0 - type: Transform -- uid: 4323 - type: Grille - components: - - pos: 3.5,-23.5 - parent: 0 - type: Transform -- uid: 4324 - type: Grille - components: - - pos: 3.5,-22.5 - parent: 0 - type: Transform -- uid: 4325 - type: Grille - components: - - pos: 3.5,-21.5 - parent: 0 - type: Transform -- uid: 4326 - type: Grille - components: - - pos: 1.5,-23.5 - parent: 0 - type: Transform -- uid: 4327 - type: Grille - components: - - pos: 1.5,-22.5 - parent: 0 - type: Transform -- uid: 4328 - type: Grille - components: - - pos: 1.5,-21.5 - parent: 0 - type: Transform -- uid: 4329 - type: WallRiveted - components: - - pos: -1.5,-24.5 - parent: 0 - type: Transform -- uid: 4330 - type: WallRiveted - components: - - pos: -2.5,-24.5 - parent: 0 - type: Transform -- uid: 4331 - type: WallRiveted - components: - - pos: -3.5,-24.5 - parent: 0 - type: Transform -- uid: 4332 - type: WallRiveted - components: - - pos: -4.5,-24.5 - parent: 0 - type: Transform -- uid: 4333 - type: WallRiveted - components: - - pos: -5.5,-24.5 - parent: 0 - type: Transform -- uid: 4334 - type: WallRiveted - components: - - pos: 0.5,-24.5 - parent: 0 - type: Transform -- uid: 4335 - type: WallRiveted - components: - - pos: 1.5,-24.5 - parent: 0 - type: Transform -- uid: 4336 - type: WallRiveted - components: - - pos: 2.5,-24.5 - parent: 0 - type: Transform -- uid: 4337 - type: WallRiveted - components: - - pos: 3.5,-24.5 - parent: 0 - type: Transform -- uid: 4338 - type: WallRiveted - components: - - pos: 4.5,-24.5 - parent: 0 - type: Transform -- uid: 4339 - type: AirlockGlass - components: - - pos: 5.5,-18.5 - parent: 0 - type: Transform -- uid: 4340 - type: AirlockGlass - components: - - pos: -0.5,-24.5 - parent: 0 - type: Transform -- uid: 4341 - type: AirlockKitchenLocked - components: - - pos: -12.5,-22.5 - parent: 0 - type: Transform -- uid: 4342 - type: AirlockKitchenGlassLocked - components: - - pos: -7.5,-24.5 - parent: 0 - type: Transform -- uid: 4343 - type: AirlockBarLocked - components: - - pos: 11.5,-22.5 - parent: 0 - type: Transform -- uid: 4344 - type: TableReinforced - components: - - pos: 6.5,-24.5 - parent: 0 - type: Transform -- uid: 4345 - type: BarSignTheLooseGoose - components: - - pos: 4.5,-24.5 - parent: 0 - type: Transform -- uid: 4346 - type: BarSignTheLooseGoose - components: - - pos: -5.5,-24.5 - parent: 0 - type: Transform -- uid: 4347 - type: TableReinforced - components: - - pos: -8.5,-25.5 - parent: 0 - type: Transform -- uid: 4348 - type: TableReinforced - components: - - pos: -8.5,-26.5 - parent: 0 - type: Transform -- uid: 4349 - type: TableReinforced - components: - - pos: -8.5,-27.5 - parent: 0 - type: Transform -- uid: 4350 - type: TableReinforced - components: - - pos: 7.5,-27.5 - parent: 0 - type: Transform -- uid: 4351 - type: TableReinforced - components: - - pos: 7.5,-26.5 - parent: 0 - type: Transform -- uid: 4352 - type: TableReinforced - components: - - pos: 7.5,-25.5 - parent: 0 - type: Transform -- uid: 4353 - type: WallRiveted - components: - - pos: -8.5,-30.5 - parent: 0 - type: Transform -- uid: 4354 - type: ReinforcedWindow - components: - - pos: -5.5,-30.5 - parent: 0 - type: Transform -- uid: 4355 - type: ReinforcedWindow - components: - - pos: -7.5,-30.5 - parent: 0 - type: Transform -- uid: 4356 - type: WallRiveted - components: - - pos: -4.5,-30.5 - parent: 0 - type: Transform -- uid: 4357 - type: WallRiveted - components: - - pos: -3.5,-30.5 - parent: 0 - type: Transform -- uid: 4358 - type: WallRiveted - components: - - pos: -2.5,-30.5 - parent: 0 - type: Transform -- uid: 4359 - type: CableHV - components: - - pos: 22.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4360 - type: CableHV - components: - - pos: 22.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4361 - type: APCBasic - components: - - pos: 34.5,-9.5 - parent: 0 - type: Transform -- uid: 4362 - type: WallRiveted - components: - - pos: 1.5,-30.5 - parent: 0 - type: Transform -- uid: 4363 - type: WallRiveted - components: - - pos: 2.5,-30.5 - parent: 0 - type: Transform -- uid: 4364 - type: WallRiveted - components: - - pos: 3.5,-30.5 - parent: 0 - type: Transform -- uid: 4365 - type: ReinforcedWindow - components: - - pos: 4.5,-30.5 - parent: 0 - type: Transform -- uid: 4366 - type: Grille - components: - - pos: 4.5,-30.5 - parent: 0 - type: Transform -- uid: 4367 - type: ReinforcedWindow - components: - - pos: 6.5,-30.5 - parent: 0 - type: Transform -- uid: 4368 - type: WallRiveted - components: - - pos: 7.5,-30.5 - parent: 0 - type: Transform -- uid: 4369 - type: TableWood - components: - - pos: -3.5,-23.5 - parent: 0 - type: Transform -- uid: 4370 - type: TableWood - components: - - pos: -3.5,-22.5 - parent: 0 - type: Transform -- uid: 4371 - type: TableWood - components: - - pos: -3.5,-21.5 - parent: 0 - type: Transform -- uid: 4372 - type: TableWood - components: - - pos: 2.5,-23.5 - parent: 0 - type: Transform -- uid: 4373 - type: TableWood - components: - - pos: 2.5,-22.5 - parent: 0 - type: Transform -- uid: 4374 - type: TableWood - components: - - pos: 2.5,-21.5 - parent: 0 - type: Transform -- uid: 4375 - type: DrinkGoldenCup - components: - - pos: -3.5,-22.5 - parent: 0 - type: Transform -- uid: 4376 - type: DrinkGoldenCup - components: - - pos: 2.5,-22.5 - parent: 0 - type: Transform -- uid: 4377 - type: ClothingNeckBronzeheart - components: - - pos: -3.5,-21.5 - parent: 0 - type: Transform -- uid: 4378 - type: ClothingNeckGoldmedal - components: - - pos: 2.5,-21.5 - parent: 0 - type: Transform -- uid: 4379 - type: ClothingNeckLawyerbadge - components: - - pos: -3.5,-23.5 - parent: 0 - type: Transform -- uid: 4380 - type: FoodTartGapple - components: - - pos: 2.5,-23.5 - parent: 0 - type: Transform -- uid: 4381 - type: SignPlaque - components: - - pos: -3.5,-24.5 - parent: 0 - type: Transform -- uid: 4382 - type: SignPlaque - components: - - pos: 2.5,-20.5 - parent: 0 - type: Transform -- uid: 4383 - type: PlaqueAtmos - components: - - pos: 2.5,-24.5 - parent: 0 - type: Transform -- uid: 4384 - type: SignKiddiePlaque - components: - - pos: -3.5,-20.5 - parent: 0 - type: Transform -- uid: 4385 - type: SignKiddiePlaque - components: - - pos: -13.5,12.5 - parent: 0 - type: Transform -- uid: 4386 - type: SignKiddiePlaque - components: - - pos: 21.5,16.5 - parent: 0 - type: Transform -- uid: 4387 - type: SignKiddiePlaque - components: - - pos: 1.5,2.5 - parent: 0 - type: Transform -- uid: 4388 - type: BoxBeaker - components: - - pos: 5.5,-13.5 - parent: 0 - type: Transform -- uid: 4389 - type: BoxBottle - components: - - pos: 5.399058,-13.32889 - parent: 0 - type: Transform -- uid: 4390 - type: BoxPillCanister - components: - - pos: 5.602183,-13.64139 - parent: 0 - type: Transform -- uid: 4391 - type: BoxLatexGloves - components: - - pos: 10.34866,-7.2899737 - parent: 0 - type: Transform -- uid: 4392 - type: WindoorSecure - components: - - pos: -4.5,-17.5 - parent: 0 - type: Transform -- uid: 4393 - type: WindoorSecure - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-16.5 - parent: 0 - type: Transform -- uid: 4394 - type: WindoorSecure - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-16.5 - parent: 0 - type: Transform -- uid: 4395 - type: WindoorSecure - components: - - pos: 3.5,-17.5 - parent: 0 - type: Transform -- uid: 4396 - type: Table - components: - - pos: -4.5,-15.5 - parent: 0 - type: Transform -- uid: 4397 - type: Table - components: - - pos: -5.5,-15.5 - parent: 0 - type: Transform -- uid: 4398 - type: Table - components: - - pos: 4.5,-15.5 - parent: 0 - type: Transform -- uid: 4399 - type: Table - components: - - pos: 3.5,-15.5 - parent: 0 - type: Transform -- uid: 4400 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,-15.5 - parent: 0 - type: Transform -- uid: 4401 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,-15.5 - parent: 0 - type: Transform -- uid: 4402 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-15.5 - parent: 0 - type: Transform -- uid: 4403 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,-15.5 - parent: 0 - type: Transform -- uid: 4404 - type: FirelockGlass - components: - - pos: -8.5,-27.5 - parent: 0 - type: Transform -- uid: 4405 - type: FirelockGlass - components: - - pos: -8.5,-26.5 - parent: 0 - type: Transform -- uid: 4406 - type: FirelockGlass - components: - - pos: -8.5,-25.5 - parent: 0 - type: Transform -- uid: 4407 - type: FirelockGlass - components: - - pos: 7.5,-27.5 - parent: 0 - type: Transform -- uid: 4408 - type: FirelockGlass - components: - - pos: 7.5,-26.5 - parent: 0 - type: Transform -- uid: 4409 - type: FirelockGlass - components: - - pos: 7.5,-25.5 - parent: 0 - type: Transform -- uid: 4410 - type: WindoorBarLocked - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-28.5 - parent: 0 - type: Transform -- uid: 4411 - type: WindowReinforcedDirectional - components: - - pos: 7.5,-27.5 - parent: 0 - type: Transform -- uid: 4412 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4413 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4414 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4415 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,-26.5 - parent: 0 - type: Transform -- uid: 4416 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-21.5 - parent: 0 - type: Transform -- uid: 4417 - type: LockerBoozeFilled - components: - - pos: 10.5,-28.5 - parent: 0 - type: Transform -- uid: 4418 - type: TableWood - components: - - pos: 10.5,-27.5 - parent: 0 - type: Transform -- uid: 4419 - type: TableWood - components: - - pos: 8.5,-21.5 - parent: 0 - type: Transform -- uid: 4420 - type: TableWood - components: - - pos: 7.5,-21.5 - parent: 0 - type: Transform -- uid: 4421 - type: TableWood - components: - - pos: 6.5,-21.5 - parent: 0 - type: Transform -- uid: 4422 - type: TableWood - components: - - pos: 10.5,-21.5 - parent: 0 - type: Transform -- uid: 4423 - type: TableWood - components: - - pos: 10.5,-25.5 - parent: 0 - type: Transform -- uid: 4424 - type: TableWood - components: - - pos: 10.5,-24.5 - parent: 0 - type: Transform -- uid: 4425 - type: chem_master - components: - - pos: 10.5,-23.5 - parent: 0 - type: Transform -- uid: 4426 - type: BoozeDispenser - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 0 - type: Transform -- uid: 4427 - type: soda_dispenser - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 0 - type: Transform -- uid: 4428 - type: BoozeDispenser - components: - - pos: 6.5,-21.5 - parent: 0 - type: Transform -- uid: 4429 - type: soda_dispenser - components: - - pos: 7.5,-21.5 - parent: 0 - type: Transform -- uid: 4430 - type: TableReinforced - components: - - pos: 3.5,-25.5 - parent: 0 - type: Transform -- uid: 4431 - type: TableReinforced - components: - - pos: 3.5,-26.5 - parent: 0 - type: Transform -- uid: 4432 - type: TableReinforced - components: - - pos: -4.5,-25.5 - parent: 0 - type: Transform -- uid: 4433 - type: TableReinforced - components: - - pos: -4.5,-26.5 - parent: 0 - type: Transform -- uid: 4434 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 0 - type: Transform -- uid: 4435 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 0 - type: Transform -- uid: 4436 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 0 - type: Transform -- uid: 4437 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4438 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 0 - type: Transform -- uid: 4439 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 0 - type: Transform -- uid: 4440 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 0 - type: Transform -- uid: 4441 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4442 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4443 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4444 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4445 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4446 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4447 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4448 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4449 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4450 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4451 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4452 - type: TableReinforced - components: - - pos: 2.5,-29.5 - parent: 0 - type: Transform -- uid: 4453 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4454 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 0 - type: Transform -- uid: 4455 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-28.5 - parent: 0 - type: Transform -- uid: 4456 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 0 - type: Transform -- uid: 4457 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-29.5 - parent: 0 - type: Transform -- uid: 4458 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4459 - type: TableReinforced - components: - - pos: -3.5,-29.5 - parent: 0 - type: Transform -- uid: 4460 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 0 - type: Transform -- uid: 4461 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-29.5 - parent: 0 - type: Transform -- uid: 4462 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 0 - type: Transform -- uid: 4463 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-28.5 - parent: 0 - type: Transform -- uid: 4464 - type: Railing - components: - - pos: 0.5,-27.5 - parent: 0 - type: Transform -- uid: 4465 - type: Railing - components: - - pos: -1.5,-27.5 - parent: 0 - type: Transform -- uid: 4466 - type: TableReinforced - components: - - pos: -3.5,-28.5 - parent: 0 - type: Transform -- uid: 4467 - type: TableReinforced - components: - - pos: 2.5,-28.5 - parent: 0 - type: Transform -- uid: 4468 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 0 - type: Transform -- uid: 4469 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 0 - type: Transform -- uid: 4470 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4471 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: -2.5,-27.5 - parent: 0 - type: Transform -- uid: 4472 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4473 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-27.5 - parent: 0 - type: Transform -- uid: 4474 - type: PianoInstrument - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-29.5 - parent: 0 - type: Transform -- uid: 4475 - type: APCBasic - components: - - pos: -2.5,-24.5 - parent: 0 - type: Transform -- uid: 4476 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-24.5 - parent: 0 - type: Transform -- uid: 4477 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-24.5 - parent: 0 - type: Transform -- uid: 4478 - type: APCBasic - components: - - pos: -9.5,-17.5 - parent: 0 - type: Transform -- uid: 4479 - type: APCBasic - components: - - pos: 8.5,-17.5 - parent: 0 - type: Transform -- uid: 4480 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 1.5,-20.5 - parent: 0 - type: Transform -- uid: 4481 - type: CableApcExtension - components: - - pos: 1.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4482 - type: CableApcExtension - components: - - pos: 1.5,-19.5 - parent: 0 - type: Transform -- uid: 4483 - type: CableApcExtension - components: - - pos: 1.5,-18.5 - parent: 0 - type: Transform -- uid: 4484 - type: CableApcExtension - components: - - pos: 1.5,-17.5 - parent: 0 - type: Transform -- uid: 4485 - type: CableApcExtension - components: - - pos: 1.5,-16.5 - parent: 0 - type: Transform -- uid: 4486 - type: CableApcExtension - components: - - pos: 0.5,-18.5 - parent: 0 - type: Transform -- uid: 4487 - type: CableApcExtension - components: - - pos: -0.5,-18.5 - parent: 0 - type: Transform -- uid: 4488 - type: CableApcExtension - components: - - pos: -1.5,-18.5 - parent: 0 - type: Transform -- uid: 4489 - type: CableApcExtension - components: - - pos: -2.5,-18.5 - parent: 0 - type: Transform -- uid: 4490 - type: CableApcExtension - components: - - pos: -3.5,-18.5 - parent: 0 - type: Transform -- uid: 4491 - type: CableApcExtension - components: - - pos: -10.5,-24.5 - parent: 0 - type: Transform -- uid: 4492 - type: CableApcExtension - components: - - pos: -5.5,-18.5 - parent: 0 - type: Transform -- uid: 4493 - type: CableApcExtension - components: - - pos: -4.5,-17.5 - parent: 0 - type: Transform -- uid: 4494 - type: CableApcExtension - components: - - pos: -4.5,-16.5 - parent: 0 - type: Transform -- uid: 4495 - type: CableApcExtension - components: - - pos: -8.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4496 - type: CableApcExtension - components: - - pos: -9.5,-24.5 - parent: 0 - type: Transform -- uid: 4497 - type: CableApcExtension - components: - - pos: 3.5,-17.5 - parent: 0 - type: Transform -- uid: 4498 - type: CableApcExtension - components: - - pos: 3.5,-16.5 - parent: 0 - type: Transform -- uid: 4499 - type: CableApcExtension - components: - - pos: 4.5,-18.5 - parent: 0 - type: Transform -- uid: 4500 - type: CableApcExtension - components: - - pos: -1.5,-17.5 - parent: 0 - type: Transform -- uid: 4501 - type: CableApcExtension - components: - - pos: -1.5,-16.5 - parent: 0 - type: Transform -- uid: 4502 - type: CableApcExtension - components: - - pos: 2.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4503 - type: CableApcExtension - components: - - pos: 3.5,-15.5 - parent: 0 - type: Transform -- uid: 4504 - type: CableApcExtension - components: - - pos: 2.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4505 - type: CableApcExtension - components: - - pos: -4.5,-15.5 - parent: 0 - type: Transform -- uid: 4506 - type: CableApcExtension - components: - - pos: -3.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4507 - type: CableApcExtension - components: - - pos: -3.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4508 - type: CableApcExtension - components: - - pos: -5.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4509 - type: CableApcExtension - components: - - pos: 4.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4510 - type: CableApcExtension - components: - - pos: -10.5,-25.5 - parent: 0 - type: Transform -- uid: 4511 - type: CableApcExtension - components: - - pos: -10.5,-26.5 - parent: 0 - type: Transform -- uid: 4512 - type: CableApcExtension - components: - - pos: -10.5,-27.5 - parent: 0 - type: Transform -- uid: 4513 - type: CableApcExtension - components: - - pos: -10.5,-23.5 - parent: 0 - type: Transform -- uid: 4514 - type: CableApcExtension - components: - - pos: -10.5,-22.5 - parent: 0 - type: Transform -- uid: 4515 - type: CableApcExtension - components: - - pos: -9.5,-22.5 - parent: 0 - type: Transform -- uid: 4516 - type: CableApcExtension - components: - - pos: -8.5,-22.5 - parent: 0 - type: Transform -- uid: 4517 - type: CableApcExtension - components: - - pos: 7.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4518 - type: CableApcExtension - components: - - pos: 8.5,-24.5 - parent: 0 - type: Transform -- uid: 4519 - type: CableApcExtension - components: - - pos: 9.5,-24.5 - parent: 0 - type: Transform -- uid: 4520 - type: CableApcExtension - components: - - pos: 9.5,-25.5 - parent: 0 - type: Transform -- uid: 4521 - type: CableApcExtension - components: - - pos: 9.5,-26.5 - parent: 0 - type: Transform -- uid: 4522 - type: CableApcExtension - components: - - pos: 9.5,-27.5 - parent: 0 - type: Transform -- uid: 4523 - type: CableApcExtension - components: - - pos: 9.5,-23.5 - parent: 0 - type: Transform -- uid: 4524 - type: CableApcExtension - components: - - pos: 9.5,-22.5 - parent: 0 - type: Transform -- uid: 4525 - type: CableApcExtension - components: - - pos: 8.5,-22.5 - parent: 0 - type: Transform -- uid: 4526 - type: CableApcExtension - components: - - pos: 7.5,-22.5 - parent: 0 - type: Transform -- uid: 4527 - type: CableApcExtension - components: - - pos: -2.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4528 - type: CableApcExtension - components: - - pos: -2.5,-25.5 - parent: 0 - type: Transform -- uid: 4529 - type: CableApcExtension - components: - - pos: -2.5,-26.5 - parent: 0 - type: Transform -- uid: 4530 - type: CableApcExtension - components: - - pos: -2.5,-27.5 - parent: 0 - type: Transform -- uid: 4531 - type: CableApcExtension - components: - - pos: -1.5,-27.5 - parent: 0 - type: Transform -- uid: 4532 - type: CableApcExtension - components: - - pos: -0.5,-27.5 - parent: 0 - type: Transform -- uid: 4533 - type: CableApcExtension - components: - - pos: 0.5,-27.5 - parent: 0 - type: Transform -- uid: 4534 - type: CableApcExtension - components: - - pos: 1.5,-27.5 - parent: 0 - type: Transform -- uid: 4535 - type: CableApcExtension - components: - - pos: 2.5,-27.5 - parent: 0 - type: Transform -- uid: 4536 - type: CableApcExtension - components: - - pos: 3.5,-27.5 - parent: 0 - type: Transform -- uid: 4537 - type: CableApcExtension - components: - - pos: 4.5,-27.5 - parent: 0 - type: Transform -- uid: 4538 - type: CableApcExtension - components: - - pos: 5.5,-27.5 - parent: 0 - type: Transform -- uid: 4539 - type: CableApcExtension - components: - - pos: -4.5,-27.5 - parent: 0 - type: Transform -- uid: 4540 - type: CableApcExtension - components: - - pos: -3.5,-27.5 - parent: 0 - type: Transform -- uid: 4541 - type: CableApcExtension - components: - - pos: -5.5,-27.5 - parent: 0 - type: Transform -- uid: 4542 - type: CableApcExtension - components: - - pos: -6.5,-27.5 - parent: 0 - type: Transform -- uid: 4543 - type: CableApcExtension - components: - - pos: 5.5,-28.5 - parent: 0 - type: Transform -- uid: 4544 - type: CableApcExtension - components: - - pos: -6.5,-28.5 - parent: 0 - type: Transform -- uid: 4545 - type: CableApcExtension - components: - - pos: -6.5,-26.5 - parent: 0 - type: Transform -- uid: 4546 - type: CableApcExtension - components: - - pos: 5.5,-26.5 - parent: 0 - type: Transform -- uid: 4547 - type: CableApcExtension - components: - - pos: -0.5,-26.5 - parent: 0 - type: Transform -- uid: 4548 - type: CableApcExtension - components: - - pos: -0.5,-28.5 - parent: 0 - type: Transform -- uid: 4549 - type: CableApcExtension - components: - - pos: -0.5,-25.5 - parent: 0 - type: Transform -- uid: 4550 - type: CableApcExtension - components: - - pos: -0.5,-24.5 - parent: 0 - type: Transform -- uid: 4551 - type: CableApcExtension - components: - - pos: -0.5,-23.5 - parent: 0 - type: Transform -- uid: 4552 - type: CableApcExtension - components: - - pos: -0.5,-22.5 - parent: 0 - type: Transform -- uid: 4553 - type: CableApcExtension - components: - - pos: 2.5,-22.5 - parent: 0 - type: Transform -- uid: 4554 - type: CableApcExtension - components: - - pos: -1.5,-22.5 - parent: 0 - type: Transform -- uid: 4555 - type: CableApcExtension - components: - - pos: -2.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4556 - type: CableApcExtension - components: - - pos: -2.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4557 - type: CableApcExtension - components: - - pos: -2.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4558 - type: CableApcExtension - components: - - pos: -3.5,-22.5 - parent: 0 - type: Transform -- uid: 4559 - type: CableApcExtension - components: - - pos: -4.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4560 - type: CableApcExtension - components: - - pos: -4.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4561 - type: CableApcExtension - components: - - pos: -4.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4562 - type: CableApcExtension - components: - - pos: 1.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4563 - type: CableApcExtension - components: - - pos: 1.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4564 - type: CableApcExtension - components: - - pos: 1.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4565 - type: CableApcExtension - components: - - pos: 3.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4566 - type: CableApcExtension - components: - - pos: 3.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4567 - type: CableApcExtension - components: - - pos: 3.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4568 - type: Catwalk - components: - - pos: -13.5,-14.5 - parent: 0 - type: Transform -- uid: 4569 - type: Catwalk - components: - - pos: -13.5,-13.5 - parent: 0 - type: Transform -- uid: 4570 - type: Catwalk - components: - - pos: -13.5,-12.5 - parent: 0 - type: Transform -- uid: 4571 - type: Catwalk - components: - - pos: -13.5,-11.5 - parent: 0 - type: Transform -- uid: 4572 - type: Catwalk - components: - - pos: -12.5,-11.5 - parent: 0 - type: Transform -- uid: 4573 - type: Catwalk - components: - - pos: -11.5,-11.5 - parent: 0 - type: Transform -- uid: 4574 - type: Catwalk - components: - - pos: -10.5,-11.5 - parent: 0 - type: Transform -- uid: 4575 - type: PosterLegitNanotrasenLogo - components: - - pos: 0.5,-20.5 - parent: 0 - type: Transform -- uid: 4576 - type: PosterLegitNanotrasenLogo - components: - - pos: -1.5,-24.5 - parent: 0 - type: Transform -- uid: 4577 - type: LockerFreezer - components: - - pos: -10.5,-21.5 - parent: 0 - type: Transform -- uid: 4578 - type: VendingMachineDinnerware - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,-21.5 - parent: 0 - type: Transform -- uid: 4579 - type: ClosetChefFilled - components: - - pos: -9.5,-21.5 - parent: 0 - type: Transform -- uid: 4580 - type: TableReinforced - components: - - pos: -8.5,-21.5 - parent: 0 - type: Transform -- uid: 4581 - type: KitchenSpike - components: - - pos: -7.5,-21.5 - parent: 0 - type: Transform -- uid: 4582 - type: TableReinforced - components: - - pos: -10.5,-28.5 - parent: 0 - type: Transform -- uid: 4583 - type: TableReinforced - components: - - pos: -9.5,-28.5 - parent: 0 - type: Transform -- uid: 4584 - type: TableReinforced - components: - - pos: -11.5,-28.5 - parent: 0 - type: Transform -- uid: 4585 - type: KitchenMicrowave - components: - - pos: -11.5,-24.5 - parent: 0 - type: Transform -- uid: 4586 - type: TableReinforced - components: - - pos: -11.5,-26.5 - parent: 0 - type: Transform -- uid: 4587 - type: TableReinforced - components: - - pos: -11.5,-25.5 - parent: 0 - type: Transform -- uid: 4588 - type: TableReinforced - components: - - pos: -11.5,-24.5 - parent: 0 - type: Transform -- uid: 4589 - type: KitchenMicrowave - components: - - pos: -11.5,-28.5 - parent: 0 - type: Transform -- uid: 4590 - type: KitchenReagentGrinder - components: - - pos: -11.5,-25.5 - parent: 0 - type: Transform -- uid: 4591 - type: KitchenReagentGrinder - components: - - pos: -9.5,-28.5 - parent: 0 - type: Transform -- uid: 4592 - type: FoodCondimentBottleEnzyme - components: - - pos: -11.611271,-26.1594 - parent: 0 - type: Transform -- uid: 4593 - type: FoodCondimentBottleEnzyme - components: - - pos: -11.470646,-26.268776 - parent: 0 - type: Transform -- uid: 4594 - type: ReagentContainerFlour - components: - - pos: -10.626896,-28.3469 - parent: 0 - type: Transform -- uid: 4595 - type: ReagentContainerFlour - components: - - pos: -10.376896,-28.50315 - parent: 0 - type: Transform -- uid: 4596 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4597 - type: Poweredlight - components: - - pos: -8.5,-21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4598 - type: Poweredlight - components: - - pos: 7.5,-21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4599 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4600 - type: Poweredlight - components: - - pos: -3.5,-25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4601 - type: Poweredlight - components: - - pos: 2.5,-25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4602 - type: Grille - components: - - pos: 6.5,-30.5 - parent: 0 - type: Transform -- uid: 4603 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4604 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4605 - type: RandomFoodSingle - components: - - pos: -4.5,-25.5 - parent: 0 - type: Transform -- uid: 4606 - type: RandomFoodSingle - components: - - pos: 2.5,-28.5 - parent: 0 - type: Transform -- uid: 4607 - type: RandomDrinkBottle - components: - - pos: 10.5,-27.5 - parent: 0 - type: Transform -- uid: 4608 - type: RandomFoodMeal - components: - - pos: -8.5,-26.5 - parent: 0 - type: Transform -- uid: 4609 - type: RandomFoodMeal - components: - - pos: -8.5,-27.5 - parent: 0 - type: Transform -- uid: 4610 - type: RandomDrinkBottle - components: - - pos: 8.5,-21.5 - parent: 0 - type: Transform -- uid: 4611 - type: RandomDrinkGlass - components: - - pos: 7.5,-26.5 - parent: 0 - type: Transform -- uid: 4612 - type: RandomDrinkGlass - components: - - pos: 7.5,-25.5 - parent: 0 - type: Transform -- uid: 4613 - type: RandomDrinkGlass - components: - - pos: 3.5,-26.5 - parent: 0 - type: Transform -- uid: 4614 - type: RandomDrinkGlass - components: - - pos: -4.5,-26.5 - parent: 0 - type: Transform -- uid: 4615 - type: RandomFoodBakedWhole - components: - - pos: -8.5,-21.5 - parent: 0 - type: Transform -- uid: 4616 - type: RandomFoodBakedSingle - components: - - pos: -3.5,-29.5 - parent: 0 - type: Transform -- uid: 4617 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-29.5 - parent: 0 - type: Transform -- uid: 4618 - type: FoodCondimentPacketSalt - components: - - pos: 2.4007215,-29.404095 - parent: 0 - type: Transform -- uid: 4619 - type: FoodCondimentPacketPepper - components: - - pos: 2.4944715,-29.54472 - parent: 0 - type: Transform -- uid: 4620 - type: PottedPlant22 - components: - - pos: -4.5,-19.5 - parent: 0 - type: Transform -- uid: 4621 - type: PottedPlant22 - components: - - pos: 3.5,-19.5 - parent: 0 - type: Transform -- uid: 4622 - type: PottedPlant22 - components: - - pos: 7.5,-19.5 - parent: 0 - type: Transform -- uid: 4623 - type: PottedPlant22 - components: - - pos: -8.5,-19.5 - parent: 0 - type: Transform -- uid: 4624 - type: PottedPlant21 - components: - - pos: -7.5,-19.5 - parent: 0 - type: Transform -- uid: 4625 - type: PottedPlant21 - components: - - pos: -5.5,-19.5 - parent: 0 - type: Transform -- uid: 4626 - type: PottedPlant21 - components: - - pos: 4.5,-19.5 - parent: 0 - type: Transform -- uid: 4627 - type: PottedPlant21 - components: - - pos: 6.5,-19.5 - parent: 0 - type: Transform -- uid: 4628 - type: PottedPlant21 - components: - - pos: 13.5,-18.5 - parent: 0 - type: Transform -- uid: 4629 - type: PottedPlant21 - components: - - pos: -14.5,-18.5 - parent: 0 - type: Transform -- uid: 4630 - type: FirelockGlass - components: - - pos: -13.5,-20.5 - parent: 0 - type: Transform -- uid: 4631 - type: FirelockGlass - components: - - pos: -14.5,-20.5 - parent: 0 - type: Transform -- uid: 4632 - type: FirelockGlass - components: - - pos: 13.5,-20.5 - parent: 0 - type: Transform -- uid: 4633 - type: FirelockGlass - components: - - pos: 12.5,-20.5 - parent: 0 - type: Transform -- uid: 4634 - type: SignSmoking - components: - - pos: -1.5,-20.5 - parent: 0 - type: Transform -- uid: 4635 - type: PosterLegitNanotrasenLogo - components: - - pos: -3.5,-14.5 - parent: 0 - type: Transform -- uid: 4636 - type: PosterLegitNanotrasenLogo - components: - - pos: 2.5,-14.5 - parent: 0 - type: Transform -- uid: 4637 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4638 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4639 - type: HighSecDoor - components: - - pos: -15.5,-24.5 - parent: 0 - type: Transform -- uid: 4640 - type: HighSecDoor - components: - - pos: -15.5,-26.5 - parent: 0 - type: Transform -- uid: 4641 - type: WallRiveted - components: - - pos: -15.5,-27.5 - parent: 0 - type: Transform -- uid: 4642 - type: WallRiveted - components: - - pos: -15.5,-28.5 - parent: 0 - type: Transform -- uid: 4643 - type: WallRiveted - components: - - pos: -15.5,-23.5 - parent: 0 - type: Transform -- uid: 4644 - type: WallRiveted - components: - - pos: -15.5,-22.5 - parent: 0 - type: Transform -- uid: 4645 - type: WallRiveted - components: - - pos: -15.5,-21.5 - parent: 0 - type: Transform -- uid: 4646 - type: WallRiveted - components: - - pos: -16.5,-28.5 - parent: 0 - type: Transform -- uid: 4647 - type: WallRiveted - components: - - rot: 3.141592653589793 rad - pos: -15.5,-29.5 - parent: 0 - type: Transform -- uid: 4648 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-30.5 - parent: 0 - type: Transform -- uid: 4649 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-32.5 - parent: 0 - type: Transform -- uid: 4650 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-33.5 - parent: 0 - type: Transform -- uid: 4651 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 0 - type: Transform -- uid: 4652 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 0 - type: Transform -- uid: 4653 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 - parent: 0 - type: Transform -- uid: 4654 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-34.5 - parent: 0 - type: Transform -- uid: 4655 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-34.5 - parent: 0 - type: Transform -- uid: 4656 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-34.5 - parent: 0 - type: Transform -- uid: 4657 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-34.5 - parent: 0 - type: Transform -- uid: 4658 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-34.5 - parent: 0 - type: Transform -- uid: 4659 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-34.5 - parent: 0 - type: Transform -- uid: 4660 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-34.5 - parent: 0 - type: Transform -- uid: 4661 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-34.5 - parent: 0 - type: Transform -- uid: 4662 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-34.5 - parent: 0 - type: Transform -- uid: 4663 - type: ReinforcedWindow - components: - - pos: -1.5,-34.5 - parent: 0 - type: Transform -- uid: 4664 - type: ReinforcedWindow - components: - - pos: -0.5,-34.5 - parent: 0 - type: Transform -- uid: 4665 - type: ReinforcedWindow - components: - - pos: 0.5,-34.5 - parent: 0 - type: Transform -- uid: 4666 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 0 - type: Transform -- uid: 4667 - type: CableHV - components: - - pos: 5.5,-28.5 - parent: 0 - type: Transform -- uid: 4668 - type: CableHV - components: - - pos: 5.5,-27.5 - parent: 0 - type: Transform -- uid: 4669 - type: CableHV - components: - - pos: 5.5,-29.5 - parent: 0 - type: Transform -- uid: 4670 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-34.5 - parent: 0 - type: Transform -- uid: 4671 - type: Grille - components: - - pos: -1.5,-34.5 - parent: 0 - type: Transform -- uid: 4672 - type: Grille - components: - - pos: -0.5,-34.5 - parent: 0 - type: Transform -- uid: 4673 - type: Grille - components: - - pos: 0.5,-34.5 - parent: 0 - type: Transform -- uid: 4674 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-34.5 - parent: 0 - type: Transform -- uid: 4675 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-34.5 - parent: 0 - type: Transform -- uid: 4676 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-34.5 - parent: 0 - type: Transform -- uid: 4677 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-34.5 - parent: 0 - type: Transform -- uid: 4678 - type: WallRiveted - components: - - pos: 29.5,-13.5 - parent: 0 - type: Transform -- uid: 4679 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-34.5 - parent: 0 - type: Transform -- uid: 4680 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-34.5 - parent: 0 - type: Transform -- uid: 4681 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-34.5 - parent: 0 - type: Transform -- uid: 4682 - type: WallRiveted - components: - - rot: 3.141592653589793 rad - pos: 14.5,-32.5 - parent: 0 - type: Transform -- uid: 4683 - type: WallRiveted - components: - - pos: 14.5,-33.5 - parent: 0 - type: Transform -- uid: 4684 - type: WallRiveted - components: - - pos: 35.5,-18.5 - parent: 0 - type: Transform -- uid: 4685 - type: WallRiveted - components: - - pos: 35.5,-19.5 - parent: 0 - type: Transform -- uid: 4686 - type: WallRiveted - components: - - pos: 35.5,-20.5 - parent: 0 - type: Transform -- uid: 4687 - type: WallRiveted - components: - - pos: 35.5,-22.5 - parent: 0 - type: Transform -- uid: 4688 - type: WallRiveted - components: - - pos: 35.5,-23.5 - parent: 0 - type: Transform -- uid: 4689 - type: WallRiveted - components: - - pos: 35.5,-24.5 - parent: 0 - type: Transform -- uid: 4690 - type: WallRiveted - components: - - pos: 35.5,-21.5 - parent: 0 - type: Transform -- uid: 4691 - type: WallRiveted - components: - - pos: 35.5,-25.5 - parent: 0 - type: Transform -- uid: 4692 - type: WallRiveted - components: - - pos: 35.5,-26.5 - parent: 0 - type: Transform -- uid: 4693 - type: WallRiveted - components: - - pos: 35.5,-27.5 - parent: 0 - type: Transform -- uid: 4694 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4695 - type: WeaponCapacitorRecharger - components: - - pos: 24.5,-9.5 - parent: 0 - type: Transform -- uid: 4696 - type: BoxZiptie - components: - - pos: 28.527084,-11.476642 - parent: 0 - type: Transform -- uid: 4697 - type: WeaponDisabler - components: - - pos: 20.88646,-10.507892 - parent: 0 - type: Transform -- uid: 4698 - type: Flash - components: - - pos: 24.48021,-8.554767 - parent: 0 - type: Transform -- uid: 4699 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-34.5 - parent: 0 - type: Transform -- uid: 4700 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-34.5 - parent: 0 - type: Transform -- uid: 4701 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-34.5 - parent: 0 - type: Transform -- uid: 4702 - type: Grille - components: - - pos: 18.5,-30.5 - parent: 0 - type: Transform -- uid: 4703 - type: ReinforcedWindow - components: - - pos: 18.5,-31.5 - parent: 0 - type: Transform -- uid: 4704 - type: WallRiveted - components: - - pos: 22.5,-33.5 - parent: 0 - type: Transform -- uid: 4705 - type: WallRiveted - components: - - pos: 21.5,-33.5 - parent: 0 - type: Transform -- uid: 4706 - type: WallRiveted - components: - - pos: 26.5,-31.5 - parent: 0 - type: Transform -- uid: 4707 - type: WallRiveted - components: - - pos: 26.5,-32.5 - parent: 0 - type: Transform -- uid: 4708 - type: WallRiveted - components: - - pos: 26.5,-30.5 - parent: 0 - type: Transform -- uid: 4709 - type: WallRiveted - components: - - pos: 26.5,-29.5 - parent: 0 - type: Transform -- uid: 4710 - type: WallRiveted - components: - - pos: 26.5,-28.5 - parent: 0 - type: Transform -- uid: 4711 - type: GasPipeBend - components: - - pos: 24.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4712 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 24.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4713 - type: ReinforcedWindow - components: - - pos: 18.5,-30.5 - parent: 0 - type: Transform -- uid: 4714 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4715 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4716 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-29.5 - parent: 0 - type: Transform -- uid: 4717 - type: WallRiveted - components: - - pos: 20.5,-33.5 - parent: 0 - type: Transform -- uid: 4718 - type: WallRiveted - components: - - pos: 23.5,-33.5 - parent: 0 - type: Transform -- uid: 4719 - type: WallRiveted - components: - - pos: 24.5,-33.5 - parent: 0 - type: Transform -- uid: 4720 - type: WallRiveted - components: - - pos: 18.5,-32.5 - parent: 0 - type: Transform -- uid: 4721 - type: WallRiveted - components: - - pos: 17.5,-32.5 - parent: 0 - type: Transform -- uid: 4722 - type: WallRiveted - components: - - pos: 16.5,-32.5 - parent: 0 - type: Transform -- uid: 4723 - type: WallRiveted - components: - - pos: 15.5,-32.5 - parent: 0 - type: Transform -- uid: 4724 - type: WallRiveted - components: - - pos: 14.5,-21.5 - parent: 0 - type: Transform -- uid: 4725 - type: WallRiveted - components: - - pos: 14.5,-22.5 - parent: 0 - type: Transform -- uid: 4726 - type: WallRiveted - components: - - pos: 22.5,-27.5 - parent: 0 - type: Transform -- uid: 4727 - type: WallRiveted - components: - - pos: 21.5,-27.5 - parent: 0 - type: Transform -- uid: 4728 - type: WallRiveted - components: - - pos: 20.5,-27.5 - parent: 0 - type: Transform -- uid: 4729 - type: WallRiveted - components: - - pos: 18.5,-22.5 - parent: 0 - type: Transform -- uid: 4730 - type: WallRiveted - components: - - pos: 18.5,-23.5 - parent: 0 - type: Transform -- uid: 4731 - type: WallRiveted - components: - - pos: 18.5,-24.5 - parent: 0 - type: Transform -- uid: 4732 - type: WallRiveted - components: - - pos: 19.5,-27.5 - parent: 0 - type: Transform -- uid: 4733 - type: WallRiveted - components: - - pos: 18.5,-26.5 - parent: 0 - type: Transform -- uid: 4734 - type: WallRiveted - components: - - pos: 18.5,-27.5 - parent: 0 - type: Transform -- uid: 4735 - type: WallRiveted - components: - - pos: 18.5,-28.5 - parent: 0 - type: Transform -- uid: 4736 - type: WallRiveted - components: - - pos: 17.5,-28.5 - parent: 0 - type: Transform -- uid: 4737 - type: WallRiveted - components: - - pos: 16.5,-28.5 - parent: 0 - type: Transform -- uid: 4738 - type: WallRiveted - components: - - pos: 15.5,-28.5 - parent: 0 - type: Transform -- uid: 4739 - type: WallRiveted - components: - - pos: 14.5,-28.5 - parent: 0 - type: Transform -- uid: 4740 - type: WallRiveted - components: - - pos: 14.5,-29.5 - parent: 0 - type: Transform -- uid: 4741 - type: WallRiveted - components: - - pos: 18.5,-33.5 - parent: 0 - type: Transform -- uid: 4742 - type: WallRiveted - components: - - pos: 14.5,-31.5 - parent: 0 - type: Transform -- uid: 4743 - type: WallRiveted - components: - - pos: 22.5,-26.5 - parent: 0 - type: Transform -- uid: 4744 - type: WallRiveted - components: - - pos: 19.5,-33.5 - parent: 0 - type: Transform -- uid: 4745 - type: WallRiveted - components: - - pos: 25.5,-33.5 - parent: 0 - type: Transform -- uid: 4746 - type: AirlockAtmosphericsLocked - components: - - pos: 14.5,-30.5 - parent: 0 - type: Transform -- uid: 4747 - type: WallRiveted - components: - - pos: 22.5,-23.5 - parent: 0 - type: Transform -- uid: 4748 - type: WallRiveted - components: - - pos: 22.5,-24.5 - parent: 0 - type: Transform -- uid: 4749 - type: TableReinforced - components: - - pos: 16.5,-22.5 - parent: 0 - type: Transform -- uid: 4750 - type: Grille - components: - - pos: 15.5,-22.5 - parent: 0 - type: Transform -- uid: 4751 - type: Grille - components: - - pos: 17.5,-22.5 - parent: 0 - type: Transform -- uid: 4752 - type: ReinforcedWindow - components: - - pos: 17.5,-22.5 - parent: 0 - type: Transform -- uid: 4753 - type: ReinforcedWindow - components: - - pos: 15.5,-22.5 - parent: 0 - type: Transform -- uid: 4754 - type: FirelockGlass - components: - - pos: 16.5,-22.5 - parent: 0 - type: Transform -- uid: 4755 - type: AirlockEngineeringLocked - components: - - pos: 18.5,-25.5 - parent: 0 - type: Transform -- uid: 4756 - type: AirlockEngineeringLocked - components: - - pos: 22.5,-25.5 - parent: 0 - type: Transform -- uid: 4757 - type: WindoorEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: 16.5,-22.5 - parent: 0 - type: Transform -- uid: 4758 - type: WallRiveted - components: - - pos: 15.5,-19.5 - parent: 0 - type: Transform -- uid: 4759 - type: WallRiveted - components: - - pos: 17.5,-19.5 - parent: 0 - type: Transform -- uid: 4760 - type: WallRiveted - components: - - pos: 18.5,-19.5 - parent: 0 - type: Transform -- uid: 4761 - type: WallRiveted - components: - - pos: 18.5,-18.5 - parent: 0 - type: Transform -- uid: 4762 - type: BlastDoor - components: - - pos: 18.5,-17.5 - parent: 0 - type: Transform -- uid: 4763 - type: AirlockEngineeringLocked - components: - - pos: 16.5,-19.5 - parent: 0 - type: Transform -- uid: 4764 - type: CableHV - components: - - pos: 17.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4765 - type: CableHV - components: - - pos: 16.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4766 - type: CableHV - components: - - pos: 16.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4767 - type: CableHV - components: - - pos: 16.5,-19.5 - parent: 0 - type: Transform -- uid: 4768 - type: CableHV - components: - - pos: 16.5,-20.5 - parent: 0 - type: Transform -- uid: 4769 - type: CableHV - components: - - pos: 17.5,-20.5 - parent: 0 - type: Transform -- uid: 4770 - type: CableHV - components: - - pos: 18.5,-20.5 - parent: 0 - type: Transform -- uid: 4771 - type: CableHV - components: - - pos: 19.5,-20.5 - parent: 0 - type: Transform -- uid: 4772 - type: CableHV - components: - - pos: 20.5,-20.5 - parent: 0 - type: Transform -- uid: 4773 - type: CableHV - components: - - pos: 20.5,-19.5 - parent: 0 - type: Transform -- uid: 4774 - type: CableHV - components: - - pos: 20.5,-18.5 - parent: 0 - type: Transform -- uid: 4775 - type: CableHV - components: - - pos: 20.5,-17.5 - parent: 0 - type: Transform -- uid: 4776 - type: CableHV - components: - - pos: 20.5,-16.5 - parent: 0 - type: Transform -- uid: 4777 - type: CableHV - components: - - pos: 20.5,-15.5 - parent: 0 - type: Transform -- uid: 4778 - type: CableHV - components: - - pos: 20.5,-14.5 - parent: 0 - type: Transform -- uid: 4779 - type: CableHV - components: - - pos: 16.5,-21.5 - parent: 0 - type: Transform -- uid: 4780 - type: CableHV - components: - - pos: 16.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4781 - type: CableHV - components: - - pos: 16.5,-23.5 - parent: 0 - type: Transform -- uid: 4782 - type: CableHV - components: - - pos: 16.5,-24.5 - parent: 0 - type: Transform -- uid: 4783 - type: CableHV - components: - - pos: 16.5,-25.5 - parent: 0 - type: Transform -- uid: 4784 - type: CableHV - components: - - pos: 15.5,-25.5 - parent: 0 - type: Transform -- uid: 4785 - type: CableHV - components: - - pos: 14.5,-25.5 - parent: 0 - type: Transform -- uid: 4786 - type: CableHV - components: - - pos: 13.5,-25.5 - parent: 0 - type: Transform -- uid: 4787 - type: CableHV - components: - - pos: 12.5,-25.5 - parent: 0 - type: Transform -- uid: 4788 - type: CableHV - components: - - pos: 12.5,-24.5 - parent: 0 - type: Transform -- uid: 4789 - type: CableHV - components: - - pos: 12.5,-23.5 - parent: 0 - type: Transform -- uid: 4790 - type: CableHV - components: - - pos: 12.5,-22.5 - parent: 0 - type: Transform -- uid: 4791 - type: CableHV - components: - - pos: 12.5,-21.5 - parent: 0 - type: Transform -- uid: 4792 - type: CableHV - components: - - pos: 12.5,-20.5 - parent: 0 - type: Transform -- uid: 4793 - type: CableHV - components: - - pos: 12.5,-19.5 - parent: 0 - type: Transform -- uid: 4794 - type: CableHV - components: - - pos: 12.5,-18.5 - parent: 0 - type: Transform -- uid: 4795 - type: CableHV - components: - - pos: 11.5,-18.5 - parent: 0 - type: Transform -- uid: 4796 - type: CableHV - components: - - pos: 10.5,-18.5 - parent: 0 - type: Transform -- uid: 4797 - type: CableHV - components: - - pos: 9.5,-18.5 - parent: 0 - type: Transform -- uid: 4798 - type: CableHV - components: - - pos: 8.5,-18.5 - parent: 0 - type: Transform -- uid: 4799 - type: CableHV - components: - - pos: 7.5,-18.5 - parent: 0 - type: Transform -- uid: 4800 - type: CableHV - components: - - pos: 6.5,-18.5 - parent: 0 - type: Transform -- uid: 4801 - type: CableHV - components: - - pos: 5.5,-18.5 - parent: 0 - type: Transform -- uid: 4802 - type: CableHV - components: - - pos: 4.5,-18.5 - parent: 0 - type: Transform -- uid: 4803 - type: CableHV - components: - - pos: 3.5,-18.5 - parent: 0 - type: Transform -- uid: 4804 - type: CableHV - components: - - pos: 2.5,-18.5 - parent: 0 - type: Transform -- uid: 4805 - type: CableHV - components: - - pos: 1.5,-18.5 - parent: 0 - type: Transform -- uid: 4806 - type: CableHV - components: - - pos: 0.5,-18.5 - parent: 0 - type: Transform -- uid: 4807 - type: CableMV - components: - - pos: 0.5,-17.5 - parent: 0 - type: Transform -- uid: 4808 - type: CableHV - components: - - pos: -0.5,-17.5 - parent: 0 - type: Transform -- uid: 4809 - type: CableHV - components: - - pos: -0.5,-16.5 - parent: 0 - type: Transform -- uid: 4810 - type: CableHV - components: - - pos: -0.5,-15.5 - parent: 0 - type: Transform -- uid: 4811 - type: CableHV - components: - - pos: -0.5,-14.5 - parent: 0 - type: Transform -- uid: 4812 - type: CableHV - components: - - pos: -0.5,-13.5 - parent: 0 - type: Transform -- uid: 4813 - type: CableHV - components: - - pos: -0.5,-12.5 - parent: 0 - type: Transform -- uid: 4814 - type: CableHV - components: - - pos: 15.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4815 - type: SubstationBasic - components: - - pos: 17.5,-17.5 - parent: 0 - type: Transform -- uid: 4816 - type: SubstationBasic - components: - - pos: 15.5,-17.5 - parent: 0 - type: Transform -- uid: 4817 - type: CableMV - components: - - pos: 15.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4818 - type: CableMV - components: - - pos: 15.5,-18.5 - parent: 0 - type: Transform -- uid: 4819 - type: CableMV - components: - - pos: 16.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4820 - type: CableMV - components: - - pos: 16.5,-19.5 - parent: 0 - type: Transform -- uid: 4821 - type: CableMV - components: - - pos: 16.5,-20.5 - parent: 0 - type: Transform -- uid: 4822 - type: CableMV - components: - - pos: 16.5,-21.5 - parent: 0 - type: Transform -- uid: 4823 - type: CableMV - components: - - pos: 16.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4824 - type: CableMV - components: - - pos: 16.5,-23.5 - parent: 0 - type: Transform -- uid: 4825 - type: CableMV - components: - - pos: 15.5,-23.5 - parent: 0 - type: Transform -- uid: 4826 - type: CableMV - components: - - pos: 14.5,-23.5 - parent: 0 - type: Transform -- uid: 4827 - type: CableMV - components: - - pos: 13.5,-23.5 - parent: 0 - type: Transform -- uid: 4828 - type: CableMV - components: - - pos: 13.5,-22.5 - parent: 0 - type: Transform -- uid: 4829 - type: CableMV - components: - - pos: 12.5,-22.5 - parent: 0 - type: Transform -- uid: 4830 - type: CableMV - components: - - pos: 11.5,-22.5 - parent: 0 - type: Transform -- uid: 4831 - type: CableMV - components: - - pos: 10.5,-22.5 - parent: 0 - type: Transform -- uid: 4832 - type: CableMV - components: - - pos: 9.5,-22.5 - parent: 0 - type: Transform -- uid: 4833 - type: CableMV - components: - - pos: 8.5,-22.5 - parent: 0 - type: Transform -- uid: 4834 - type: CableMV - components: - - pos: 8.5,-23.5 - parent: 0 - type: Transform -- uid: 4835 - type: CableMV - components: - - pos: 8.5,-24.5 - parent: 0 - type: Transform -- uid: 4836 - type: CableMV - components: - - pos: 7.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4837 - type: CableMV - components: - - pos: 12.5,-21.5 - parent: 0 - type: Transform -- uid: 4838 - type: CableMV - components: - - pos: 12.5,-20.5 - parent: 0 - type: Transform -- uid: 4839 - type: CableMV - components: - - pos: 12.5,-19.5 - parent: 0 - type: Transform -- uid: 4840 - type: CableMV - components: - - pos: 11.5,-19.5 - parent: 0 - type: Transform -- uid: 4841 - type: CableMV - components: - - pos: 10.5,-19.5 - parent: 0 - type: Transform -- uid: 4842 - type: CableMV - components: - - pos: 9.5,-19.5 - parent: 0 - type: Transform -- uid: 4843 - type: CableMV - components: - - pos: 8.5,-19.5 - parent: 0 - type: Transform -- uid: 4844 - type: CableMV - components: - - pos: 8.5,-18.5 - parent: 0 - type: Transform -- uid: 4845 - type: CableMV - components: - - pos: 8.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4846 - type: CableMV - components: - - pos: 7.5,-18.5 - parent: 0 - type: Transform -- uid: 4847 - type: CableMV - components: - - pos: 6.5,-18.5 - parent: 0 - type: Transform -- uid: 4848 - type: CableMV - components: - - pos: 5.5,-18.5 - parent: 0 - type: Transform -- uid: 4849 - type: CableMV - components: - - pos: 4.5,-18.5 - parent: 0 - type: Transform -- uid: 4850 - type: CableMV - components: - - pos: 3.5,-18.5 - parent: 0 - type: Transform -- uid: 4851 - type: CableMV - components: - - pos: 2.5,-18.5 - parent: 0 - type: Transform -- uid: 4852 - type: CableMV - components: - - pos: 1.5,-18.5 - parent: 0 - type: Transform -- uid: 4853 - type: CableMV - components: - - pos: 1.5,-19.5 - parent: 0 - type: Transform -- uid: 4854 - type: CableMV - components: - - pos: 1.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4855 - type: CableMV - components: - - pos: 0.5,-18.5 - parent: 0 - type: Transform -- uid: 4856 - type: CableHV - components: - - pos: 0.5,-17.5 - parent: 0 - type: Transform -- uid: 4857 - type: CableMV - components: - - pos: -0.5,-17.5 - parent: 0 - type: Transform -- uid: 4858 - type: CableMV - components: - - pos: -0.5,-16.5 - parent: 0 - type: Transform -- uid: 4859 - type: CableMV - components: - - pos: -0.5,-15.5 - parent: 0 - type: Transform -- uid: 4860 - type: CableMV - components: - - pos: -0.5,-14.5 - parent: 0 - type: Transform -- uid: 4861 - type: CableMV - components: - - pos: -0.5,-13.5 - parent: 0 - type: Transform -- uid: 4862 - type: CableMV - components: - - pos: -0.5,-12.5 - parent: 0 - type: Transform -- uid: 4863 - type: CableMV - components: - - pos: -0.5,-11.5 - parent: 0 - type: Transform -- uid: 4864 - type: CableMV - components: - - pos: -0.5,-10.5 - parent: 0 - type: Transform -- uid: 4865 - type: CableMV - components: - - pos: -0.5,-9.5 - parent: 0 - type: Transform -- uid: 4866 - type: CableMV - components: - - pos: -1.5,-9.5 - parent: 0 - type: Transform -- uid: 4867 - type: CableMV - components: - - pos: -2.5,-9.5 - parent: 0 - type: Transform -- uid: 4868 - type: CableMV - components: - - pos: -3.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4869 - type: CableMV - components: - - pos: -0.5,-19.5 - parent: 0 - type: Transform -- uid: 4870 - type: CableMV - components: - - pos: -0.5,-20.5 - parent: 0 - type: Transform -- uid: 4871 - type: CableMV - components: - - pos: -0.5,-21.5 - parent: 0 - type: Transform -- uid: 4872 - type: CableMV - components: - - pos: -0.5,-22.5 - parent: 0 - type: Transform -- uid: 4873 - type: CableMV - components: - - pos: -0.5,-23.5 - parent: 0 - type: Transform -- uid: 4874 - type: CableMV - components: - - pos: -0.5,-24.5 - parent: 0 - type: Transform -- uid: 4875 - type: CableMV - components: - - pos: -0.5,-25.5 - parent: 0 - type: Transform -- uid: 4876 - type: CableMV - components: - - pos: -1.5,-25.5 - parent: 0 - type: Transform -- uid: 4877 - type: CableMV - components: - - pos: -2.5,-25.5 - parent: 0 - type: Transform -- uid: 4878 - type: CableMV - components: - - pos: -2.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4879 - type: CableMV - components: - - pos: -3.5,-25.5 - parent: 0 - type: Transform -- uid: 4880 - type: CableMV - components: - - pos: -4.5,-25.5 - parent: 0 - type: Transform -- uid: 4881 - type: CableMV - components: - - pos: -5.5,-25.5 - parent: 0 - type: Transform -- uid: 4882 - type: CableMV - components: - - pos: -6.5,-25.5 - parent: 0 - type: Transform -- uid: 4883 - type: CableMV - components: - - pos: -7.5,-25.5 - parent: 0 - type: Transform -- uid: 4884 - type: CableMV - components: - - pos: -8.5,-25.5 - parent: 0 - type: Transform -- uid: 4885 - type: CableMV - components: - - pos: -9.5,-25.5 - parent: 0 - type: Transform -- uid: 4886 - type: CableMV - components: - - pos: -9.5,-24.5 - parent: 0 - type: Transform -- uid: 4887 - type: CableMV - components: - - pos: -8.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4888 - type: CableMV - components: - - pos: -1.5,-18.5 - parent: 0 - type: Transform -- uid: 4889 - type: CableMV - components: - - pos: -2.5,-18.5 - parent: 0 - type: Transform -- uid: 4890 - type: CableMV - components: - - pos: -3.5,-18.5 - parent: 0 - type: Transform -- uid: 4891 - type: CableMV - components: - - pos: -4.5,-18.5 - parent: 0 - type: Transform -- uid: 4892 - type: CableMV - components: - - pos: -5.5,-18.5 - parent: 0 - type: Transform -- uid: 4893 - type: CableMV - components: - - pos: -6.5,-18.5 - parent: 0 - type: Transform -- uid: 4894 - type: CableMV - components: - - pos: -7.5,-18.5 - parent: 0 - type: Transform -- uid: 4895 - type: CableMV - components: - - pos: -8.5,-18.5 - parent: 0 - type: Transform -- uid: 4896 - type: CableMV - components: - - pos: -9.5,-18.5 - parent: 0 - type: Transform -- uid: 4897 - type: CableMV - components: - - pos: -9.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4898 - type: CableApcExtension - components: - - pos: 8.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4899 - type: CableApcExtension - components: - - pos: 8.5,-18.5 - parent: 0 - type: Transform -- uid: 4900 - type: CableApcExtension - components: - - pos: 8.5,-19.5 - parent: 0 - type: Transform -- uid: 4901 - type: CableApcExtension - components: - - pos: 9.5,-19.5 - parent: 0 - type: Transform -- uid: 4902 - type: CableApcExtension - components: - - pos: 10.5,-19.5 - parent: 0 - type: Transform -- uid: 4903 - type: CableApcExtension - components: - - pos: 11.5,-19.5 - parent: 0 - type: Transform -- uid: 4904 - type: CableApcExtension - components: - - pos: 12.5,-19.5 - parent: 0 - type: Transform -- uid: 4905 - type: CableApcExtension - components: - - pos: 13.5,-19.5 - parent: 0 - type: Transform -- uid: 4906 - type: CableApcExtension - components: - - pos: 7.5,-18.5 - parent: 0 - type: Transform -- uid: 4907 - type: CableApcExtension - components: - - pos: 6.5,-18.5 - parent: 0 - type: Transform -- uid: 4908 - type: CableApcExtension - components: - - pos: 6.5,-17.5 - parent: 0 - type: Transform -- uid: 4909 - type: CableApcExtension - components: - - pos: 6.5,-16.5 - parent: 0 - type: Transform -- uid: 4910 - type: CableApcExtension - components: - - pos: -9.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4911 - type: CableApcExtension - components: - - pos: -9.5,-18.5 - parent: 0 - type: Transform -- uid: 4912 - type: CableApcExtension - components: - - pos: -8.5,-18.5 - parent: 0 - type: Transform -- uid: 4913 - type: CableApcExtension - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform -- uid: 4914 - type: CableApcExtension - components: - - pos: -8.5,-16.5 - parent: 0 - type: Transform -- uid: 4915 - type: CableApcExtension - components: - - pos: -9.5,-19.5 - parent: 0 - type: Transform -- uid: 4916 - type: CableApcExtension - components: - - pos: -10.5,-19.5 - parent: 0 - type: Transform -- uid: 4917 - type: CableApcExtension - components: - - pos: -11.5,-19.5 - parent: 0 - type: Transform -- uid: 4918 - type: CableApcExtension - components: - - pos: -12.5,-19.5 - parent: 0 - type: Transform -- uid: 4919 - type: CableApcExtension - components: - - pos: -13.5,-19.5 - parent: 0 - type: Transform -- uid: 4920 - type: CableApcExtension - components: - - pos: -13.5,-18.5 - parent: 0 - type: Transform -- uid: 4921 - type: CableApcExtension - components: - - pos: -13.5,-17.5 - parent: 0 - type: Transform -- uid: 4922 - type: CableApcExtension - components: - - pos: -13.5,-16.5 - parent: 0 - type: Transform -- uid: 4923 - type: DisposalUnit - components: - - pos: -11.5,-23.5 - parent: 0 - type: Transform -- uid: 4924 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -11.5,-23.5 - parent: 0 - type: Transform -- uid: 4925 - type: DisposalBend - components: - - pos: -11.5,-22.5 - parent: 0 - type: Transform -- uid: 4926 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 0 - type: Transform -- uid: 4927 - type: DisposalJunctionFlipped - components: - - pos: -13.5,-22.5 - parent: 0 - type: Transform -- uid: 4928 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -13.5,-21.5 - parent: 0 - type: Transform -- uid: 4929 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -13.5,-20.5 - parent: 0 - type: Transform -- uid: 4930 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -13.5,-19.5 - parent: 0 - type: Transform -- uid: 4931 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-18.5 - parent: 0 - type: Transform -- uid: 4932 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 0 - type: Transform -- uid: 4933 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 0 - type: Transform -- uid: 4934 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 0 - type: Transform -- uid: 4935 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 0 - type: Transform -- uid: 4936 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 0 - type: Transform -- uid: 4937 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 0 - type: Transform -- uid: 4938 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 0 - type: Transform -- uid: 4939 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 0 - type: Transform -- uid: 4940 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 0 - type: Transform -- uid: 4941 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-18.5 - parent: 0 - type: Transform -- uid: 4942 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 0 - type: Transform -- uid: 4943 - type: DisposalPipe - components: - - pos: -0.5,-17.5 - parent: 0 - type: Transform -- uid: 4944 - type: DisposalPipe - components: - - pos: -0.5,-16.5 - parent: 0 - type: Transform -- uid: 4945 - type: DisposalPipe - components: - - pos: -0.5,-15.5 - parent: 0 - type: Transform -- uid: 4946 - type: DisposalPipe - components: - - pos: -0.5,-14.5 - parent: 0 - type: Transform -- uid: 4947 - type: DisposalPipe - components: - - pos: -0.5,-13.5 - parent: 0 - type: Transform -- uid: 4948 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-18.5 - parent: 0 - type: Transform -- uid: 4949 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-18.5 - parent: 0 - type: Transform -- uid: 4950 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-16.5 - parent: 0 - type: Transform -- uid: 4951 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-16.5 - parent: 0 - type: Transform -- uid: 4952 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-18.5 - parent: 0 - type: Transform -- uid: 4953 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-17.5 - parent: 0 - type: Transform -- uid: 4954 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 0 - type: Transform -- uid: 4955 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-18.5 - parent: 0 - type: Transform -- uid: 4956 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-18.5 - parent: 0 - type: Transform -- uid: 4957 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 0 - type: Transform -- uid: 4958 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 0 - type: Transform -- uid: 4959 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 0 - type: Transform -- uid: 4960 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-18.5 - parent: 0 - type: Transform -- uid: 4961 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 0 - type: Transform -- uid: 4962 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 0 - type: Transform -- uid: 4963 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 0 - type: Transform -- uid: 4964 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 0 - type: Transform -- uid: 4965 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 0 - type: Transform -- uid: 4966 - type: CableMV - components: - - pos: -1.5,-19.5 - parent: 0 - type: Transform -- uid: 4967 - type: CableMV - components: - - pos: -1.5,-17.5 - parent: 0 - type: Transform -- uid: 4968 - type: FirelockGlass - components: - - pos: 12.5,-29.5 - parent: 0 - type: Transform -- uid: 4969 - type: FirelockGlass - components: - - pos: 13.5,-29.5 - parent: 0 - type: Transform -- uid: 4970 - type: SignEngineering - components: - - pos: 18.5,-24.5 - parent: 0 - type: Transform -- uid: 4971 - type: ComputerPowerMonitoring - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-21.5 - parent: 0 - type: Transform -- uid: 4972 - type: CableHV - components: - - pos: 15.5,-21.5 - parent: 0 - type: Transform -- uid: 4973 - type: ComputerAlert - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-20.5 - parent: 0 - type: Transform -- uid: 4974 - type: CableHV - components: - - pos: 18.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4975 - type: CableHV - components: - - pos: 19.5,-17.5 - parent: 0 - type: Transform -- uid: 4976 - type: CableMV - components: - - pos: 17.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4977 - type: APCBasic - components: - - pos: 20.5,-12.5 - parent: 0 - type: Transform -- uid: 4978 - type: CableMV - components: - - pos: 18.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4979 - type: CableMV - components: - - pos: 19.5,-17.5 - parent: 0 - type: Transform -- uid: 4980 - type: CableMV - components: - - pos: 20.5,-17.5 - parent: 0 - type: Transform -- uid: 4981 - type: CableMV - components: - - pos: 20.5,-16.5 - parent: 0 - type: Transform -- uid: 4982 - type: CableMV - components: - - pos: 20.5,-15.5 - parent: 0 - type: Transform -- uid: 4983 - type: CableMV - components: - - pos: 20.5,-14.5 - parent: 0 - type: Transform -- uid: 4984 - type: CableMV - components: - - pos: 20.5,-13.5 - parent: 0 - type: Transform -- uid: 4985 - type: CableMV - components: - - pos: 20.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4986 - type: CableMV - components: - - pos: 20.5,-10.5 - parent: 0 - type: Transform -- uid: 4987 - type: CableMV - components: - - pos: 21.5,-10.5 - parent: 0 - type: Transform -- uid: 4988 - type: CableMV - components: - - pos: 20.5,-18.5 - parent: 0 - type: Transform -- uid: 4989 - type: CableMV - components: - - pos: 20.5,-19.5 - parent: 0 - type: Transform -- uid: 4990 - type: CableMV - components: - - pos: 19.5,-19.5 - parent: 0 - type: Transform -- uid: 4991 - type: CableMV - components: - - pos: 18.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4992 - type: APCBasic - components: - - pos: 18.5,-19.5 - parent: 0 - type: Transform -- uid: 4993 - type: CableApcExtension - components: - - pos: 18.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4994 - type: CableApcExtension - components: - - pos: 18.5,-20.5 - parent: 0 - type: Transform -- uid: 4995 - type: CableApcExtension - components: - - pos: 17.5,-20.5 - parent: 0 - type: Transform -- uid: 4996 - type: CableApcExtension - components: - - pos: 16.5,-20.5 - parent: 0 - type: Transform -- uid: 4997 - type: CableApcExtension - components: - - pos: 16.5,-19.5 - parent: 0 - type: Transform -- uid: 4998 - type: CableApcExtension - components: - - pos: 16.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4999 - type: CableApcExtension - components: - - pos: 20.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5000 - type: CableApcExtension - components: - - pos: 20.5,-13.5 - parent: 0 - type: Transform -- uid: 5001 - type: CableApcExtension - components: - - pos: 20.5,-14.5 - parent: 0 - type: Transform -- uid: 5002 - type: CableApcExtension - components: - - pos: 20.5,-15.5 - parent: 0 - type: Transform -- uid: 5003 - type: CableApcExtension - components: - - pos: 19.5,-10.5 - parent: 0 - type: Transform -- uid: 5004 - type: CableApcExtension - components: - - pos: 19.5,-14.5 - parent: 0 - type: Transform -- uid: 5005 - type: CableApcExtension - components: - - pos: 18.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5006 - type: CableApcExtension - components: - - pos: 17.5,-14.5 - parent: 0 - type: Transform -- uid: 5007 - type: CableApcExtension - components: - - pos: 16.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5008 - type: CableApcExtension - components: - - pos: 15.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5009 - type: CableApcExtension - components: - - pos: 21.5,-14.5 - parent: 0 - type: Transform -- uid: 5010 - type: CableApcExtension - components: - - pos: 22.5,-14.5 - parent: 0 - type: Transform -- uid: 5011 - type: CableApcExtension - components: - - pos: 19.5,-19.5 - parent: 0 - type: Transform -- uid: 5012 - type: CableApcExtension - components: - - pos: 20.5,-19.5 - parent: 0 - type: Transform -- uid: 5013 - type: CableApcExtension - components: - - pos: 21.5,-19.5 - parent: 0 - type: Transform -- uid: 5014 - type: CableApcExtension - components: - - pos: 21.5,-18.5 - parent: 0 - type: Transform -- uid: 5015 - type: CableApcExtension - components: - - pos: 21.5,-17.5 - parent: 0 - type: Transform -- uid: 5016 - type: CableApcExtension - components: - - pos: 21.5,-20.5 - parent: 0 - type: Transform -- uid: 5017 - type: CableApcExtension - components: - - pos: 21.5,-21.5 - parent: 0 - type: Transform -- uid: 5018 - type: CableApcExtension - components: - - pos: 21.5,-22.5 - parent: 0 - type: Transform -- uid: 5019 - type: CableApcExtension - components: - - pos: 16.5,-21.5 - parent: 0 - type: Transform -- uid: 5020 - type: CableApcExtension - components: - - pos: 16.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5021 - type: CableApcExtension - components: - - pos: 16.5,-23.5 - parent: 0 - type: Transform -- uid: 5022 - type: CableApcExtension - components: - - pos: 16.5,-24.5 - parent: 0 - type: Transform -- uid: 5023 - type: CableApcExtension - components: - - pos: 16.5,-25.5 - parent: 0 - type: Transform -- uid: 5024 - type: CableApcExtension - components: - - pos: 16.5,-26.5 - parent: 0 - type: Transform -- uid: 5025 - type: Grille - components: - - pos: 19.5,-23.5 - parent: 0 - type: Transform -- uid: 5026 - type: CableApcExtension - components: - - pos: 15.5,-24.5 - parent: 0 - type: Transform -- uid: 5027 - type: CableApcExtension - components: - - pos: 14.5,-24.5 - parent: 0 - type: Transform -- uid: 5028 - type: CableApcExtension - components: - - pos: 13.5,-24.5 - parent: 0 - type: Transform -- uid: 5029 - type: CableApcExtension - components: - - pos: 13.5,-23.5 - parent: 0 - type: Transform -- uid: 5030 - type: CableApcExtension - components: - - pos: 13.5,-22.5 - parent: 0 - type: Transform -- uid: 5031 - type: CableApcExtension - components: - - pos: 13.5,-21.5 - parent: 0 - type: Transform -- uid: 5032 - type: CableApcExtension - components: - - pos: 13.5,-25.5 - parent: 0 - type: Transform -- uid: 5033 - type: CableApcExtension - components: - - pos: 13.5,-26.5 - parent: 0 - type: Transform -- uid: 5034 - type: CableApcExtension - components: - - pos: 13.5,-27.5 - parent: 0 - type: Transform -- uid: 5035 - type: CableApcExtension - components: - - pos: 13.5,-28.5 - parent: 0 - type: Transform -- uid: 5036 - type: CableApcExtension - components: - - pos: 17.5,-25.5 - parent: 0 - type: Transform -- uid: 5037 - type: CableApcExtension - components: - - pos: 18.5,-25.5 - parent: 0 - type: Transform -- uid: 5038 - type: CableApcExtension - components: - - pos: 19.5,-25.5 - parent: 0 - type: Transform -- uid: 5039 - type: CableApcExtension - components: - - pos: 20.5,-25.5 - parent: 0 - type: Transform -- uid: 5040 - type: CableApcExtension - components: - - pos: 21.5,-25.5 - parent: 0 - type: Transform -- uid: 5041 - type: WallRiveted - components: - - pos: 22.5,-22.5 - parent: 0 - type: Transform -- uid: 5042 - type: WallRiveted - components: - - pos: 22.5,-21.5 - parent: 0 - type: Transform -- uid: 5043 - type: WallRiveted - components: - - pos: 22.5,-20.5 - parent: 0 - type: Transform -- uid: 5044 - type: WallRiveted - components: - - pos: 22.5,-19.5 - parent: 0 - type: Transform -- uid: 5045 - type: FirelockGlass - components: - - pos: 19.5,-19.5 - parent: 0 - type: Transform -- uid: 5046 - type: FirelockGlass - components: - - pos: 20.5,-19.5 - parent: 0 - type: Transform -- uid: 5047 - type: FirelockGlass - components: - - pos: 21.5,-19.5 - parent: 0 - type: Transform -- uid: 5048 - type: WallRiveted - components: - - pos: 30.5,-14.5 - parent: 0 - type: Transform -- uid: 5049 - type: WallRiveted - components: - - pos: 33.5,-14.5 - parent: 0 - type: Transform -- uid: 5050 - type: WallRiveted - components: - - pos: 34.5,-14.5 - parent: 0 - type: Transform -- uid: 5051 - type: WallRiveted - components: - - pos: 23.5,-27.5 - parent: 0 - type: Transform -- uid: 5052 - type: WallRiveted - components: - - pos: 31.5,-14.5 - parent: 0 - type: Transform -- uid: 5053 - type: WallRiveted - components: - - pos: 24.5,-27.5 - parent: 0 - type: Transform -- uid: 5054 - type: WallRiveted - components: - - pos: 25.5,-27.5 - parent: 0 - type: Transform -- uid: 5055 - type: WallRiveted - components: - - pos: 26.5,-27.5 - parent: 0 - type: Transform -- uid: 5056 - type: WallRiveted - components: - - pos: 27.5,-27.5 - parent: 0 - type: Transform -- uid: 5057 - type: WallRiveted - components: - - pos: 28.5,-27.5 - parent: 0 - type: Transform -- uid: 5058 - type: WallRiveted - components: - - pos: 29.5,-27.5 - parent: 0 - type: Transform -- uid: 5059 - type: WallRiveted - components: - - pos: 30.5,-27.5 - parent: 0 - type: Transform -- uid: 5060 - type: WallRiveted - components: - - pos: 31.5,-27.5 - parent: 0 - type: Transform -- uid: 5061 - type: WallRiveted - components: - - pos: 32.5,-27.5 - parent: 0 - type: Transform -- uid: 5062 - type: WallRiveted - components: - - pos: 33.5,-27.5 - parent: 0 - type: Transform -- uid: 5063 - type: WallRiveted - components: - - pos: 34.5,-27.5 - parent: 0 - type: Transform -- uid: 5064 - type: Grille - components: - - pos: 20.5,-23.5 - parent: 0 - type: Transform -- uid: 5065 - type: Grille - components: - - pos: 21.5,-23.5 - parent: 0 - type: Transform -- uid: 5066 - type: WallRiveted - components: - - pos: 27.5,-32.5 - parent: 0 - type: Transform -- uid: 5067 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5068 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-30.5 - parent: 0 - type: Transform -- uid: 5069 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-31.5 - parent: 0 - type: Transform -- uid: 5070 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5071 - type: CableHV - components: - - pos: 22.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5072 - type: CableHV - components: - - pos: 23.5,-15.5 - parent: 0 - type: Transform -- uid: 5073 - type: CableHV - components: - - pos: 23.5,-16.5 - parent: 0 - type: Transform -- uid: 5074 - type: CableHV - components: - - pos: 23.5,-17.5 - parent: 0 - type: Transform -- uid: 5075 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-15.5 - parent: 0 - type: Transform -- uid: 5076 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-16.5 - parent: 0 - type: Transform -- uid: 5077 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 - parent: 0 - type: Transform -- uid: 5078 - type: SMESBasic - components: - - pos: 22.5,-17.5 - parent: 0 - type: Transform -- uid: 5079 - type: SMESBasic - components: - - pos: 22.5,-15.5 - parent: 0 - type: Transform -- uid: 5080 - type: SMESBasic - components: - - pos: 22.5,-16.5 - parent: 0 - type: Transform -- uid: 5081 - type: CableHV - components: - - pos: 21.5,-16.5 - parent: 0 - type: Transform -- uid: 5082 - type: CableHV - components: - - pos: 21.5,-17.5 - parent: 0 - type: Transform -- uid: 5083 - type: CableHV - components: - - pos: 21.5,-15.5 - parent: 0 - type: Transform -- uid: 5084 - type: CableHV - components: - - pos: 24.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5085 - type: CableHV - components: - - pos: 25.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5086 - type: CableHV - components: - - pos: 26.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5087 - type: CableHV - components: - - pos: 27.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5088 - type: CableHV - components: - - pos: 28.5,-16.5 - parent: 0 - type: Transform -- uid: 5089 - type: CableHV - components: - - pos: 29.5,-16.5 - parent: 0 - type: Transform -- uid: 5090 - type: CableHV - components: - - pos: 30.5,-16.5 - parent: 0 - type: Transform -- uid: 5091 - type: CableHV - components: - - pos: 31.5,-16.5 - parent: 0 - type: Transform -- uid: 5092 - type: CableHV - components: - - pos: 32.5,-16.5 - parent: 0 - type: Transform -- uid: 5093 - type: CableHV - components: - - pos: 32.5,-17.5 - parent: 0 - type: Transform -- uid: 5094 - type: CableHV - components: - - pos: 32.5,-18.5 - parent: 0 - type: Transform -- uid: 5095 - type: CableHV - components: - - pos: 32.5,-19.5 - parent: 0 - type: Transform -- uid: 5096 - type: CableHV - components: - - pos: 32.5,-20.5 - parent: 0 - type: Transform -- uid: 5097 - type: CableHV - components: - - pos: 32.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5098 - type: CableHV - components: - - pos: 32.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5099 - type: CableHV - components: - - pos: 32.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5100 - type: CableHV - components: - - pos: 32.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5101 - type: CableHV - components: - - pos: 32.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5102 - type: WallRiveted - components: - - pos: 29.5,-15.5 - parent: 0 - type: Transform -- uid: 5103 - type: WallRiveted - components: - - pos: 29.5,-19.5 - parent: 0 - type: Transform -- uid: 5104 - type: WallRiveted - components: - - pos: 28.5,-19.5 - parent: 0 - type: Transform -- uid: 5105 - type: WallRiveted - components: - - pos: 27.5,-19.5 - parent: 0 - type: Transform -- uid: 5106 - type: WallRiveted - components: - - pos: 23.5,-19.5 - parent: 0 - type: Transform -- uid: 5107 - type: WallRiveted - components: - - pos: 28.5,-20.5 - parent: 0 - type: Transform -- uid: 5108 - type: ReinforcedPlasmaWindow - components: - - pos: 28.5,-25.5 - parent: 0 - type: Transform -- uid: 5109 - type: ReinforcedPlasmaWindow - components: - - pos: 28.5,-24.5 - parent: 0 - type: Transform -- uid: 5110 - type: ReinforcedPlasmaWindow - components: - - pos: 28.5,-23.5 - parent: 0 - type: Transform -- uid: 5111 - type: ReinforcedPlasmaWindow - components: - - pos: 28.5,-22.5 - parent: 0 - type: Transform -- uid: 5112 - type: ReinforcedPlasmaWindow - components: - - pos: 28.5,-21.5 - parent: 0 - type: Transform -- uid: 5113 - type: WallRiveted - components: - - pos: 28.5,-26.5 - parent: 0 - type: Transform -- uid: 5114 - type: Grille - components: - - pos: 28.5,-25.5 - parent: 0 - type: Transform -- uid: 5115 - type: Grille - components: - - pos: 28.5,-24.5 - parent: 0 - type: Transform -- uid: 5116 - type: Grille - components: - - pos: 28.5,-23.5 - parent: 0 - type: Transform -- uid: 5117 - type: Grille - components: - - pos: 28.5,-22.5 - parent: 0 - type: Transform -- uid: 5118 - type: Grille - components: - - pos: 28.5,-21.5 - parent: 0 - type: Transform -- uid: 5119 - type: WallRiveted - components: - - pos: 30.5,-19.5 - parent: 0 - type: Transform -- uid: 5120 - type: WallRiveted - components: - - pos: 34.5,-19.5 - parent: 0 - type: Transform -- uid: 5121 - type: CableApcExtension - components: - - pos: 34.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5122 - type: CableApcExtension - components: - - pos: 34.5,-10.5 - parent: 0 - type: Transform -- uid: 5123 - type: CableApcExtension - components: - - pos: 34.5,-11.5 - parent: 0 - type: Transform -- uid: 5124 - type: CableApcExtension - components: - - pos: 34.5,-12.5 - parent: 0 - type: Transform -- uid: 5125 - type: CableApcExtension - components: - - pos: 34.5,-13.5 - parent: 0 - type: Transform -- uid: 5126 - type: CableApcExtension - components: - - pos: 33.5,-13.5 - parent: 0 - type: Transform -- uid: 5127 - type: CableApcExtension - components: - - pos: 32.5,-13.5 - parent: 0 - type: Transform -- uid: 5128 - type: CableApcExtension - components: - - pos: 32.5,-14.5 - parent: 0 - type: Transform -- uid: 5129 - type: CableApcExtension - components: - - pos: 31.5,-13.5 - parent: 0 - type: Transform -- uid: 5130 - type: CableApcExtension - components: - - pos: 30.5,-13.5 - parent: 0 - type: Transform -- uid: 5131 - type: CableApcExtension - components: - - pos: 30.5,-12.5 - parent: 0 - type: Transform -- uid: 5132 - type: CableApcExtension - components: - - pos: 30.5,-11.5 - parent: 0 - type: Transform -- uid: 5133 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 0 - type: Transform -- uid: 5134 - type: CableApcExtension - components: - - pos: 22.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5135 - type: CableApcExtension - components: - - pos: 23.5,-23.5 - parent: 0 - type: Transform -- uid: 5136 - type: CableApcExtension - components: - - pos: 24.5,-23.5 - parent: 0 - type: Transform -- uid: 5137 - type: CableApcExtension - components: - - pos: 25.5,-23.5 - parent: 0 - type: Transform -- uid: 5138 - type: CableApcExtension - components: - - pos: 26.5,-23.5 - parent: 0 - type: Transform -- uid: 5139 - type: CableApcExtension - components: - - pos: 25.5,-24.5 - parent: 0 - type: Transform -- uid: 5140 - type: CableApcExtension - components: - - pos: 25.5,-25.5 - parent: 0 - type: Transform -- uid: 5141 - type: CableApcExtension - components: - - pos: 25.5,-26.5 - parent: 0 - type: Transform -- uid: 5142 - type: CableApcExtension - components: - - pos: 25.5,-22.5 - parent: 0 - type: Transform -- uid: 5143 - type: CableApcExtension - components: - - pos: 25.5,-21.5 - parent: 0 - type: Transform -- uid: 5144 - type: CableApcExtension - components: - - pos: 25.5,-20.5 - parent: 0 - type: Transform -- uid: 5145 - type: CableApcExtension - components: - - pos: 25.5,-19.5 - parent: 0 - type: Transform -- uid: 5146 - type: APCBasic - components: - - pos: 29.5,-19.5 - parent: 0 - type: Transform -- uid: 5147 - type: CableApcExtension - components: - - pos: 29.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5148 - type: CableApcExtension - components: - - pos: 29.5,-20.5 - parent: 0 - type: Transform -- uid: 5149 - type: CableApcExtension - components: - - pos: 29.5,-21.5 - parent: 0 - type: Transform -- uid: 5150 - type: CableApcExtension - components: - - pos: 29.5,-22.5 - parent: 0 - type: Transform -- uid: 5151 - type: CableApcExtension - components: - - pos: 29.5,-23.5 - parent: 0 - type: Transform -- uid: 5152 - type: CableApcExtension - components: - - pos: 29.5,-24.5 - parent: 0 - type: Transform -- uid: 5153 - type: CableApcExtension - components: - - pos: 29.5,-25.5 - parent: 0 - type: Transform -- uid: 5154 - type: CableApcExtension - components: - - pos: 28.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5155 - type: CableApcExtension - components: - - pos: 28.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5156 - type: CableApcExtension - components: - - pos: 28.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5157 - type: CableApcExtension - components: - - pos: 28.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5158 - type: CableApcExtension - components: - - pos: 28.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5159 - type: CableApcExtension - components: - - pos: 30.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5160 - type: CableApcExtension - components: - - pos: 31.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5161 - type: CableApcExtension - components: - - pos: 32.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5162 - type: CableApcExtension - components: - - pos: 33.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5163 - type: CableApcExtension - components: - - pos: 30.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5164 - type: CableApcExtension - components: - - pos: 31.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5165 - type: CableApcExtension - components: - - pos: 32.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5166 - type: CableApcExtension - components: - - pos: 33.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5167 - type: ReinforcedPlasmaWindow - components: - - pos: 31.5,-19.5 - parent: 0 - type: Transform -- uid: 5168 - type: ReinforcedPlasmaWindow - components: - - pos: 33.5,-19.5 - parent: 0 - type: Transform -- uid: 5169 - type: Grille - components: - - pos: 31.5,-19.5 - parent: 0 - type: Transform -- uid: 5170 - type: Grille - components: - - pos: 33.5,-19.5 - parent: 0 - type: Transform -- uid: 5171 - type: CableApcExtension - components: - - pos: 31.5,-20.5 - parent: 0 - type: Transform -- uid: 5172 - type: CableApcExtension - components: - - pos: 31.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5173 - type: CableApcExtension - components: - - pos: 33.5,-20.5 - parent: 0 - type: Transform -- uid: 5174 - type: CableApcExtension - components: - - pos: 33.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5175 - type: AirlockEngineeringGlassLocked - components: - - pos: 32.5,-19.5 - parent: 0 - type: Transform -- uid: 5176 - type: GeneratorUranium - components: - - pos: 30.5,-21.5 - parent: 0 - type: Transform -- uid: 5177 - type: GeneratorUranium - components: - - pos: 30.5,-25.5 - parent: 0 - type: Transform -- uid: 5178 - type: GeneratorUranium - components: - - pos: 30.5,-23.5 - parent: 0 - type: Transform -- uid: 5179 - type: GeneratorUranium - components: - - pos: 34.5,-25.5 - parent: 0 - type: Transform -- uid: 5180 - type: GeneratorUranium - components: - - pos: 34.5,-23.5 - parent: 0 - type: Transform -- uid: 5181 - type: GeneratorUranium - components: - - pos: 34.5,-21.5 - parent: 0 - type: Transform -- uid: 5182 - type: GeneratorRTG - components: - - pos: 32.5,-25.5 - parent: 0 - type: Transform -- uid: 5183 - type: GeneratorRTG - components: - - pos: 32.5,-23.5 - parent: 0 - type: Transform -- uid: 5184 - type: GeneratorRTG - components: - - pos: 32.5,-21.5 - parent: 0 - type: Transform -- uid: 5185 - type: CableHV - components: - - pos: 31.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5186 - type: CableHV - components: - - pos: 30.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5187 - type: CableHV - components: - - pos: 33.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5188 - type: CableHV - components: - - pos: 34.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5189 - type: CableHV - components: - - pos: 34.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5190 - type: CableHV - components: - - pos: 33.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5191 - type: CableHV - components: - - pos: 31.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5192 - type: CableHV - components: - - pos: 30.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5193 - type: CableHV - components: - - pos: 31.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5194 - type: CableHV - components: - - pos: 30.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5195 - type: CableHV - components: - - pos: 33.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5196 - type: CableHV - components: - - pos: 34.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5197 - type: Catwalk - components: - - pos: 32.5,-24.5 - parent: 0 - type: Transform -- uid: 5198 - type: Catwalk - components: - - pos: 31.5,-25.5 - parent: 0 - type: Transform -- uid: 5199 - type: Catwalk - components: - - pos: 33.5,-25.5 - parent: 0 - type: Transform -- uid: 5200 - type: Catwalk - components: - - pos: 32.5,-25.5 - parent: 0 - type: Transform -- uid: 5201 - type: Catwalk - components: - - pos: 30.5,-25.5 - parent: 0 - type: Transform -- uid: 5202 - type: Catwalk - components: - - pos: 34.5,-25.5 - parent: 0 - type: Transform -- uid: 5203 - type: Catwalk - components: - - pos: 34.5,-23.5 - parent: 0 - type: Transform -- uid: 5204 - type: Catwalk - components: - - pos: 33.5,-23.5 - parent: 0 - type: Transform -- uid: 5205 - type: Catwalk - components: - - pos: 32.5,-23.5 - parent: 0 - type: Transform -- uid: 5206 - type: Catwalk - components: - - pos: 31.5,-23.5 - parent: 0 - type: Transform -- uid: 5207 - type: Catwalk - components: - - pos: 30.5,-23.5 - parent: 0 - type: Transform -- uid: 5208 - type: Catwalk - components: - - pos: 32.5,-22.5 - parent: 0 - type: Transform -- uid: 5209 - type: Catwalk - components: - - pos: 30.5,-21.5 - parent: 0 - type: Transform -- uid: 5210 - type: Catwalk - components: - - pos: 31.5,-21.5 - parent: 0 - type: Transform -- uid: 5211 - type: Catwalk - components: - - pos: 32.5,-21.5 - parent: 0 - type: Transform -- uid: 5212 - type: Catwalk - components: - - pos: 33.5,-21.5 - parent: 0 - type: Transform -- uid: 5213 - type: Catwalk - components: - - pos: 34.5,-21.5 - parent: 0 - type: Transform -- uid: 5214 - type: AirlockChiefEngineerLocked - components: - - pos: 32.5,-14.5 - parent: 0 - type: Transform -- uid: 5215 - type: SignGravity - components: - - pos: 31.5,-14.5 - parent: 0 - type: Transform -- uid: 5216 - type: Railing - components: - - pos: 34.5,-20.5 - parent: 0 - type: Transform -- uid: 5217 - type: GeneratorBasic - components: - - pos: 29.5,-22.5 - parent: 0 - type: Transform -- uid: 5218 - type: Railing - components: - - pos: 32.5,-20.5 - parent: 0 - type: Transform -- uid: 5219 - type: GeneratorBasic - components: - - pos: 29.5,-24.5 - parent: 0 - type: Transform -- uid: 5220 - type: Railing - components: - - pos: 30.5,-20.5 - parent: 0 - type: Transform -- uid: 5221 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 34.5,-26.5 - parent: 0 - type: Transform -- uid: 5222 - type: FirelockGlass - components: - - pos: 25.5,-19.5 - parent: 0 - type: Transform -- uid: 5223 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 32.5,-26.5 - parent: 0 - type: Transform -- uid: 5224 - type: FirelockGlass - components: - - pos: 24.5,-19.5 - parent: 0 - type: Transform -- uid: 5225 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 30.5,-26.5 - parent: 0 - type: Transform -- uid: 5226 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-25.5 - parent: 0 - type: Transform -- uid: 5227 - type: PoweredlightSodium - components: - - rot: 3.141592653589793 rad - pos: 34.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5228 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-23.5 - parent: 0 - type: Transform -- uid: 5229 - type: PoweredlightSodium - components: - - pos: 34.5,-20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5230 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-21.5 - parent: 0 - type: Transform -- uid: 5231 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-26.5 - parent: 0 - type: Transform -- uid: 5232 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: 29.5,-20.5 - parent: 0 - type: Transform -- uid: 5233 - type: FirelockGlass - components: - - pos: 26.5,-19.5 - parent: 0 - type: Transform -- uid: 5234 - type: BlastDoorOpen - components: - - pos: 28.5,-25.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5242 - type: SignalReceiver -- uid: 5235 - type: BlastDoorOpen - components: - - pos: 28.5,-24.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5242 - type: SignalReceiver -- uid: 5236 - type: BlastDoorOpen - components: - - pos: 28.5,-23.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5242 - type: SignalReceiver -- uid: 5237 - type: BlastDoorOpen - components: - - pos: 28.5,-22.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5242 - type: SignalReceiver -- uid: 5238 - type: BlastDoorOpen - components: - - pos: 28.5,-21.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5242 - type: SignalReceiver -- uid: 5239 - type: BlastDoorOpen - components: - - pos: 31.5,-19.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5242 - type: SignalReceiver -- uid: 5240 - type: BlastDoorOpen - components: - - pos: 33.5,-19.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5242 - type: SignalReceiver -- uid: 5241 - type: BlastDoorOpen - components: - - pos: 32.5,-19.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5242 - type: SignalReceiver -- uid: 5242 - type: SignalButton - components: - - pos: 28.5,-20.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5238 - - port: Toggle - uid: 5237 - - port: Toggle - uid: 5236 - - port: Toggle - uid: 5235 - - port: Toggle - uid: 5234 - - port: Toggle - uid: 5239 - - port: Toggle - uid: 5241 - - port: Toggle - uid: 5240 - type: SignalTransmitter -- uid: 5243 - type: ChairOfficeDark - components: - - pos: 3.5,-16.5 - parent: 0 - type: Transform -- uid: 5244 - type: Table - components: - - pos: 27.5,-23.5 - parent: 0 - type: Transform -- uid: 5245 - type: Table - components: - - pos: 27.5,-22.5 - parent: 0 - type: Transform -- uid: 5246 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 27.5,-24.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5247 - type: Table - components: - - pos: 26.5,-22.5 - parent: 0 - type: Transform -- uid: 5248 - type: Table - components: - - pos: 26.5,-23.5 - parent: 0 - type: Transform -- uid: 5249 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 26.5,-24.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5250 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-20.5 - parent: 0 - type: Transform -- uid: 5251 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-21.5 - parent: 0 - type: Transform -- uid: 5252 - type: LockerEngineerFilled - components: - - pos: 23.5,-22.5 - parent: 0 - type: Transform -- uid: 5253 - type: LockerEngineerFilled - components: - - pos: 23.5,-23.5 - parent: 0 - type: Transform -- uid: 5254 - type: FirelockGlass - components: - - pos: 29.5,-18.5 - parent: 0 - type: Transform -- uid: 5255 - type: FirelockGlass - components: - - pos: 29.5,-17.5 - parent: 0 - type: Transform -- uid: 5256 - type: FirelockGlass - components: - - pos: 29.5,-16.5 - parent: 0 - type: Transform -- uid: 5257 - type: APCBasic - components: - - pos: 30.5,-14.5 - parent: 0 - type: Transform -- uid: 5258 - type: CableApcExtension - components: - - pos: 30.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5259 - type: CableApcExtension - components: - - pos: 30.5,-15.5 - parent: 0 - type: Transform -- uid: 5260 - type: CableApcExtension - components: - - pos: 30.5,-16.5 - parent: 0 - type: Transform -- uid: 5261 - type: CableApcExtension - components: - - pos: 30.5,-17.5 - parent: 0 - type: Transform -- uid: 5262 - type: CableApcExtension - components: - - pos: 31.5,-17.5 - parent: 0 - type: Transform -- uid: 5263 - type: CableApcExtension - components: - - pos: 32.5,-17.5 - parent: 0 - type: Transform -- uid: 5264 - type: CableApcExtension - components: - - pos: 33.5,-17.5 - parent: 0 - type: Transform -- uid: 5265 - type: CableApcExtension - components: - - pos: 29.5,-17.5 - parent: 0 - type: Transform -- uid: 5266 - type: CableApcExtension - components: - - pos: 28.5,-17.5 - parent: 0 - type: Transform -- uid: 5267 - type: CableApcExtension - components: - - pos: 27.5,-17.5 - parent: 0 - type: Transform -- uid: 5268 - type: CableApcExtension - components: - - pos: 26.5,-17.5 - parent: 0 - type: Transform -- uid: 5269 - type: CableApcExtension - components: - - pos: 25.5,-17.5 - parent: 0 - type: Transform -- uid: 5270 - type: CableApcExtension - components: - - pos: 24.5,-17.5 - parent: 0 - type: Transform -- uid: 5271 - type: CableApcExtension - components: - - pos: 24.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5272 - type: CableApcExtension - components: - - pos: 24.5,-15.5 - parent: 0 - type: Transform -- uid: 5273 - type: CableApcExtension - components: - - pos: 24.5,-14.5 - parent: 0 - type: Transform -- uid: 5274 - type: CableApcExtension - components: - - pos: 27.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5275 - type: CableApcExtension - components: - - pos: 27.5,-15.5 - parent: 0 - type: Transform -- uid: 5276 - type: CableApcExtension - components: - - pos: 27.5,-14.5 - parent: 0 - type: Transform -- uid: 5277 - type: CableMV - components: - - pos: 21.5,-18.5 - parent: 0 - type: Transform -- uid: 5278 - type: CableMV - components: - - pos: 22.5,-18.5 - parent: 0 - type: Transform -- uid: 5279 - type: CableMV - components: - - pos: 23.5,-18.5 - parent: 0 - type: Transform -- uid: 5280 - type: CableMV - components: - - pos: 24.5,-18.5 - parent: 0 - type: Transform -- uid: 5281 - type: CableMV - components: - - pos: 25.5,-18.5 - parent: 0 - type: Transform -- uid: 5282 - type: CableMV - components: - - pos: 26.5,-18.5 - parent: 0 - type: Transform -- uid: 5283 - type: CableMV - components: - - pos: 27.5,-18.5 - parent: 0 - type: Transform -- uid: 5284 - type: CableMV - components: - - pos: 28.5,-18.5 - parent: 0 - type: Transform -- uid: 5285 - type: CableMV - components: - - pos: 29.5,-18.5 - parent: 0 - type: Transform -- uid: 5286 - type: CableMV - components: - - pos: 29.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5287 - type: CableMV - components: - - pos: 30.5,-18.5 - parent: 0 - type: Transform -- uid: 5288 - type: CableMV - components: - - pos: 30.5,-17.5 - parent: 0 - type: Transform -- uid: 5289 - type: CableMV - components: - - pos: 30.5,-16.5 - parent: 0 - type: Transform -- uid: 5290 - type: CableMV - components: - - pos: 30.5,-15.5 - parent: 0 - type: Transform -- uid: 5291 - type: CableMV - components: - - pos: 30.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5292 - type: CableMV - components: - - pos: 30.5,-13.5 - parent: 0 - type: Transform -- uid: 5293 - type: CableMV - components: - - pos: 30.5,-12.5 - parent: 0 - type: Transform -- uid: 5294 - type: CableMV - components: - - pos: 30.5,-11.5 - parent: 0 - type: Transform -- uid: 5295 - type: CableMV - components: - - pos: 30.5,-10.5 - parent: 0 - type: Transform -- uid: 5296 - type: CableMV - components: - - pos: 31.5,-10.5 - parent: 0 - type: Transform -- uid: 5297 - type: CableMV - components: - - pos: 32.5,-10.5 - parent: 0 - type: Transform -- uid: 5298 - type: CableMV - components: - - pos: 33.5,-10.5 - parent: 0 - type: Transform -- uid: 5299 - type: CableMV - components: - - pos: 34.5,-10.5 - parent: 0 - type: Transform -- uid: 5300 - type: CableMV - components: - - pos: 34.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5301 - type: CableMV - components: - - pos: 22.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5302 - type: CableMV - components: - - pos: 23.5,-23.5 - parent: 0 - type: Transform -- uid: 5303 - type: CableMV - components: - - pos: 24.5,-23.5 - parent: 0 - type: Transform -- uid: 5304 - type: CableMV - components: - - pos: 24.5,-22.5 - parent: 0 - type: Transform -- uid: 5305 - type: CableMV - components: - - pos: 24.5,-21.5 - parent: 0 - type: Transform -- uid: 5306 - type: CableMV - components: - - pos: 24.5,-20.5 - parent: 0 - type: Transform -- uid: 5307 - type: CableMV - components: - - pos: 24.5,-19.5 - parent: 0 - type: Transform -- uid: 5308 - type: Chair - components: - - pos: 27.5,-21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5309 - type: Chair - components: - - pos: 26.5,-21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5310 - type: Autolathe - components: - - pos: 19.5,-22.5 - parent: 0 - type: Transform -- uid: 5311 - type: Protolathe - components: - - pos: 24.5,-26.5 - parent: 0 - type: Transform -- uid: 5312 - type: TableReinforced - components: - - pos: 25.5,-26.5 - parent: 0 - type: Transform -- uid: 5313 - type: TableReinforced - components: - - pos: 26.5,-26.5 - parent: 0 - type: Transform -- uid: 5314 - type: TableReinforced - components: - - pos: 27.5,-26.5 - parent: 0 - type: Transform -- uid: 5315 - type: TableReinforced - components: - - pos: 20.5,-22.5 - parent: 0 - type: Transform -- uid: 5316 - type: TableReinforced - components: - - pos: 21.5,-22.5 - parent: 0 - type: Transform -- uid: 5317 - type: TableReinforced - components: - - pos: 21.5,-21.5 - parent: 0 - type: Transform -- uid: 5318 - type: WaterCooler - components: - - pos: 27.5,-20.5 - parent: 0 - type: Transform -- uid: 5319 - type: LockerWeldingSuppliesFilled - components: - - pos: 28.5,-13.5 - parent: 0 - type: Transform -- uid: 5320 - type: WeldingFuelTankFull - components: - - pos: 25.5,-13.5 - parent: 0 - type: Transform -- uid: 5321 - type: WeldingFuelTankFull - components: - - pos: 26.5,-13.5 - parent: 0 - type: Transform -- uid: 5322 - type: LockerElectricalSuppliesFilled - components: - - pos: 27.5,-13.5 - parent: 0 - type: Transform -- uid: 5323 - type: Catwalk - components: - - pos: 24.5,-16.5 - parent: 0 - type: Transform -- uid: 5324 - type: Catwalk - components: - - pos: 25.5,-16.5 - parent: 0 - type: Transform -- uid: 5325 - type: Catwalk - components: - - pos: 26.5,-16.5 - parent: 0 - type: Transform -- uid: 5326 - type: Catwalk - components: - - pos: 27.5,-16.5 - parent: 0 - type: Transform -- uid: 5327 - type: Rack - components: - - pos: 24.5,-13.5 - parent: 0 - type: Transform -- uid: 5328 - type: CrateEngineeringCableBulk - components: - - pos: 30.5,-15.5 - parent: 0 - type: Transform -- uid: 5329 - type: Table - components: - - pos: 34.5,-17.5 - parent: 0 - type: Transform -- uid: 5330 - type: Table - components: - - pos: 34.5,-16.5 - parent: 0 - type: Transform -- uid: 5331 - type: ClosetRadiationSuitFilled - components: - - pos: 34.5,-15.5 - parent: 0 - type: Transform -- uid: 5332 - type: ClosetRadiationSuitFilled - components: - - pos: 34.5,-18.5 - parent: 0 - type: Transform -- uid: 5333 - type: ReinforcedWindow - components: - - pos: 21.5,-23.5 - parent: 0 - type: Transform -- uid: 5334 - type: ReinforcedWindow - components: - - pos: 20.5,-23.5 - parent: 0 - type: Transform -- uid: 5335 - type: ReinforcedWindow - components: - - pos: 19.5,-23.5 - parent: 0 - type: Transform -- uid: 5336 - type: ChairOfficeDark - components: - - pos: 16.5,-21.5 - parent: 0 - type: Transform -- uid: 5337 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 0 - type: Transform -- uid: 5338 - type: ComputerAlert - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-16.5 - parent: 0 - type: Transform -- uid: 5339 - type: Table - components: - - pos: 21.5,-15.5 - parent: 0 - type: Transform -- uid: 5340 - type: Rack - components: - - pos: 21.5,-17.5 - parent: 0 - type: Transform -- uid: 5341 - type: CableHV - components: - - pos: 29.5,-21.5 - parent: 0 - type: Transform -- uid: 5342 - type: CableHV - components: - - pos: 29.5,-22.5 - parent: 0 - type: Transform -- uid: 5343 - type: CableHV - components: - - pos: 29.5,-24.5 - parent: 0 - type: Transform -- uid: 5344 - type: CableHV - components: - - pos: 29.5,-25.5 - parent: 0 - type: Transform -- uid: 5345 - type: ClothingBeltUtilityFilled - components: - - pos: 25.530863,-26.462372 - parent: 0 - type: Transform -- uid: 5346 - type: ClothingMaskGasAtmos - components: - - pos: 21.493792,-17.470217 - parent: 0 - type: Transform -- uid: 5347 - type: CrowbarRed - components: - - pos: 21.478167,-17.501467 - parent: 0 - type: Transform -- uid: 5348 - type: SignRadiationMed - components: - - pos: 33.5,-14.5 - parent: 0 - type: Transform -- uid: 5349 - type: SignRadiationMed - components: - - pos: 34.5,-19.5 - parent: 0 - type: Transform -- uid: 5350 - type: SignRadiationMed - components: - - pos: 30.5,-19.5 - parent: 0 - type: Transform -- uid: 5351 - type: SignElectricalMed - components: - - pos: 18.5,-13.5 - parent: 0 - type: Transform -- uid: 5352 - type: ClosetEmergencyFilledRandom - components: - - pos: 20.5,-26.5 - parent: 0 - type: Transform -- uid: 5353 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5354 - type: Poweredlight - components: - - pos: 14.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5355 - type: ClosetFireFilled - components: - - pos: 21.5,-26.5 - parent: 0 - type: Transform -- uid: 5356 - type: ClosetFireFilled - components: - - pos: 19.5,-26.5 - parent: 0 - type: Transform -- uid: 5357 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5358 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5359 - type: Poweredlight - components: - - pos: 13.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5360 - type: Poweredlight - components: - - pos: 18.5,-20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5361 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5362 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5363 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5364 - type: Poweredlight - components: - - pos: 31.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5365 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5366 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5367 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5368 - type: PoweredSmallLight - components: - - pos: 16.5,-17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5369 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5370 - type: JawsOfLife - components: - - pos: 20.616133,-22.396145 - parent: 0 - type: Transform -- uid: 5371 - type: ClothingEyesHudDiagnostic - components: - - pos: 26.529047,-22.34483 - parent: 0 - type: Transform -- uid: 5372 - type: ClothingHeadHatWelding - components: - - pos: 27.357172,-22.34483 - parent: 0 - type: Transform -- uid: 5373 - type: ClothingHeadHatWelding - components: - - pos: 27.544672,-22.46983 - parent: 0 - type: Transform -- uid: 5374 - type: WelderIndustrial - components: - - pos: 26.560297,-23.266705 - parent: 0 - type: Transform -- uid: 5375 - type: PottedPlant21 - components: - - pos: 18.5,-20.5 - parent: 0 - type: Transform -- uid: 5376 - type: PowerCellRecharger - components: - - pos: 21.5,-21.5 - parent: 0 - type: Transform -- uid: 5377 - type: PottedPlant22 - components: - - pos: 27.5,-25.5 - parent: 0 - type: Transform -- uid: 5378 - type: PowerCellRecharger - components: - - pos: 26.5,-26.5 - parent: 0 - type: Transform -- uid: 5379 - type: CrateEmergencyRadiation - components: - - pos: 23.5,-13.5 - parent: 0 - type: Transform -- uid: 5380 - type: CrateEngineeringCableLV - components: - - pos: 19.5,-13.5 - parent: 0 - type: Transform -- uid: 5381 - type: CrateEngineeringCableMV - components: - - pos: 16.5,-13.5 - parent: 0 - type: Transform -- uid: 5382 - type: PottedPlant21 - components: - - pos: 17.5,-23.5 - parent: 0 - type: Transform -- uid: 5383 - type: PottedPlant22 - components: - - pos: 17.5,-27.5 - parent: 0 - type: Transform -- uid: 5384 - type: Chair - components: - - pos: 15.5,-23.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5385 - type: Chair - components: - - pos: 14.5,-23.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5386 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 20.5,-29.5 - parent: 0 - type: Transform -- uid: 5387 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 21.5,-29.5 - parent: 0 - type: Transform -- uid: 5388 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5389 - type: GasMixerFlipped - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-28.5 - parent: 0 - type: Transform - - inletTwoConcentration: 0.78 - inletOneConcentration: 0.22 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 5390 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5391 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 21.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5392 - type: WallRiveted - components: - - pos: 27.5,-33.5 - parent: 0 - type: Transform -- uid: 5393 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-16.5 - parent: 0 - type: Transform -- uid: 5394 - type: ReinforcedWindow - components: - - pos: 18.5,-29.5 - parent: 0 - type: Transform -- uid: 5395 - type: Grille - components: - - pos: 18.5,-29.5 - parent: 0 - type: Transform -- uid: 5396 - type: WallRiveted - components: - - pos: 26.5,-33.5 - parent: 0 - type: Transform -- uid: 5397 - type: GasMinerNitrogen - components: - - pos: 21.5,-30.5 - parent: 0 - type: Transform -- uid: 5398 - type: WindowReinforcedDirectional - components: - - pos: 21.5,-31.5 - parent: 0 - type: Transform -- uid: 5399 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-29.5 - parent: 0 - type: Transform -- uid: 5400 - type: Grille - components: - - pos: 18.5,-31.5 - parent: 0 - type: Transform -- uid: 5401 - type: GasMinerOxygen - components: - - pos: 24.5,-30.5 - parent: 0 - type: Transform -- uid: 5402 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-31.5 - parent: 0 - type: Transform -- uid: 5403 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-30.5 - parent: 0 - type: Transform -- uid: 5404 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-29.5 - parent: 0 - type: Transform -- uid: 5405 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-30.5 - parent: 0 - type: Transform -- uid: 5406 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-31.5 - parent: 0 - type: Transform -- uid: 5407 - type: WindowReinforcedDirectional - components: - - pos: 20.5,-31.5 - parent: 0 - type: Transform -- uid: 5408 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-31.5 - parent: 0 - type: Transform -- uid: 5409 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-30.5 - parent: 0 - type: Transform -- uid: 5410 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-29.5 - parent: 0 - type: Transform -- uid: 5411 - type: WindowReinforcedDirectional - components: - - pos: 24.5,-31.5 - parent: 0 - type: Transform -- uid: 5412 - type: WindowReinforcedDirectional - components: - - pos: 23.5,-31.5 - parent: 0 - type: Transform -- uid: 5413 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 23.5,-29.5 - parent: 0 - type: Transform -- uid: 5414 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 24.5,-29.5 - parent: 0 - type: Transform -- uid: 5415 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5416 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5417 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5418 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5419 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5420 - type: LockerAtmosphericsFilled - components: - - pos: 15.5,-29.5 - parent: 0 - type: Transform -- uid: 5421 - type: Table - components: - - pos: 16.5,-29.5 - parent: 0 - type: Transform -- uid: 5422 - type: ComfyChair - components: - - pos: 17.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5423 - type: APCBasic - components: - - pos: 16.5,-28.5 - parent: 0 - type: Transform -- uid: 5424 - type: CableMV - components: - - pos: 16.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5425 - type: CableMV - components: - - pos: 16.5,-27.5 - parent: 0 - type: Transform -- uid: 5426 - type: CableMV - components: - - pos: 16.5,-26.5 - parent: 0 - type: Transform -- uid: 5427 - type: CableMV - components: - - pos: 16.5,-25.5 - parent: 0 - type: Transform -- uid: 5428 - type: CableMV - components: - - pos: 17.5,-25.5 - parent: 0 - type: Transform -- uid: 5429 - type: CableMV - components: - - pos: 18.5,-25.5 - parent: 0 - type: Transform -- uid: 5430 - type: CableMV - components: - - pos: 19.5,-25.5 - parent: 0 - type: Transform -- uid: 5431 - type: CableMV - components: - - pos: 20.5,-25.5 - parent: 0 - type: Transform -- uid: 5432 - type: CableMV - components: - - pos: 21.5,-25.5 - parent: 0 - type: Transform -- uid: 5433 - type: CableMV - components: - - pos: 22.5,-25.5 - parent: 0 - type: Transform -- uid: 5434 - type: CableMV - components: - - pos: 23.5,-25.5 - parent: 0 - type: Transform -- uid: 5435 - type: CableMV - components: - - pos: 24.5,-25.5 - parent: 0 - type: Transform -- uid: 5436 - type: CableMV - components: - - pos: 24.5,-24.5 - parent: 0 - type: Transform -- uid: 5437 - type: CableMV - components: - - pos: 20.5,-24.5 - parent: 0 - type: Transform -- uid: 5438 - type: CableMV - components: - - pos: 20.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5439 - type: CableMV - components: - - pos: 21.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5440 - type: CableMV - components: - - pos: 19.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5441 - type: CableApcExtension - components: - - pos: 15.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5442 - type: CableApcExtension - components: - - pos: 17.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5443 - type: CableApcExtension - components: - - pos: 16.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5444 - type: CableApcExtension - components: - - pos: 16.5,-29.5 - parent: 0 - type: Transform -- uid: 5445 - type: CableApcExtension - components: - - pos: 16.5,-30.5 - parent: 0 - type: Transform -- uid: 5446 - type: CableApcExtension - components: - - pos: 16.5,-31.5 - parent: 0 - type: Transform -- uid: 5447 - type: CableApcExtension - components: - - pos: 17.5,-30.5 - parent: 0 - type: Transform -- uid: 5448 - type: CableApcExtension - components: - - pos: 18.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5449 - type: CableApcExtension - components: - - pos: 18.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5450 - type: CableApcExtension - components: - - pos: 18.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5451 - type: WallRiveted - components: - - pos: 27.5,-31.5 - parent: 0 - type: Transform -- uid: 5452 - type: WallRiveted - components: - - pos: 27.5,-30.5 - parent: 0 - type: Transform -- uid: 5453 - type: WallRiveted - components: - - pos: 27.5,-29.5 - parent: 0 - type: Transform -- uid: 5454 - type: WallRiveted - components: - - pos: 27.5,-28.5 - parent: 0 - type: Transform -- uid: 5455 - type: WallRiveted - components: - - pos: 28.5,-28.5 - parent: 0 - type: Transform -- uid: 5456 - type: WallRiveted - components: - - pos: 29.5,-28.5 - parent: 0 - type: Transform -- uid: 5457 - type: WallRiveted - components: - - pos: 30.5,-28.5 - parent: 0 - type: Transform -- uid: 5458 - type: WallRiveted - components: - - pos: 31.5,-28.5 - parent: 0 - type: Transform -- uid: 5459 - type: WallRiveted - components: - - pos: 32.5,-28.5 - parent: 0 - type: Transform -- uid: 5460 - type: WallRiveted - components: - - pos: 33.5,-28.5 - parent: 0 - type: Transform -- uid: 5461 - type: WallRiveted - components: - - pos: 34.5,-28.5 - parent: 0 - type: Transform -- uid: 5462 - type: WallRiveted - components: - - pos: 35.5,-28.5 - parent: 0 - type: Transform -- uid: 5463 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 15.5,-31.5 - parent: 0 - type: Transform -- uid: 5464 - type: DrinkHotCoffee - components: - - pos: 16.572073,-29.470444 - parent: 0 - type: Transform -- uid: 5465 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5466 - type: GasPipeStraight - components: - - pos: 13.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5467 - type: GasPipeStraight - components: - - pos: 13.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5468 - type: GasPipeStraight - components: - - pos: 13.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5469 - type: GasPipeStraight - components: - - pos: 13.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5470 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5471 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5472 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5473 - type: GasPipeTJunction - components: - - pos: 16.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5474 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 16.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5475 - type: GasVentPump - components: - - pos: 20.5,-24.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5476 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5477 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 20.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5478 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 25.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5479 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5480 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5481 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5482 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5483 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5484 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5485 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5486 - type: GasPipeStraight - components: - - pos: 25.5,-24.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5487 - type: GasPipeStraight - components: - - pos: 25.5,-23.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5488 - type: GasPipeStraight - components: - - pos: 25.5,-22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5489 - type: GasPipeStraight - components: - - pos: 25.5,-21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5490 - type: GasPipeStraight - components: - - pos: 25.5,-20.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5491 - type: GasPipeStraight - components: - - pos: 25.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5492 - type: GasPipeFourway - components: - - pos: 25.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5493 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5494 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5495 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5496 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5497 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5498 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5499 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5500 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5501 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5502 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5503 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5504 - type: GasPipeStraight - components: - - pos: 20.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5505 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 20.5,-20.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5506 - type: GasVentPump - components: - - pos: 25.5,-17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5507 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5508 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-24.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5509 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-23.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5510 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5511 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5512 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-20.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5513 - type: GasPipeBend - components: - - pos: 13.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5514 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5515 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5516 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5517 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5518 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5519 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 7.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5520 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5521 - type: GasVentPump - components: - - pos: 7.5,-17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5522 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5523 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5524 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5525 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5526 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5527 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5528 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5529 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -1.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5530 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5531 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5532 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5533 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5534 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5535 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5536 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5537 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5538 - type: GasVentPump - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5539 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5540 - type: GasPipeBend - components: - - pos: 0.5,-17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5541 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5542 - type: GasPipeTJunction - components: - - pos: -0.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5543 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -0.5,-17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5544 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5545 - type: GasPipeStraight - components: - - pos: -0.5,-20.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5546 - type: GasPipeStraight - components: - - pos: -0.5,-21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5547 - type: GasPipeStraight - components: - - pos: -0.5,-22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5548 - type: GasPipeStraight - components: - - pos: -0.5,-23.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5549 - type: GasPipeStraight - components: - - pos: -0.5,-24.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5550 - type: GasPipeStraight - components: - - pos: -0.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5551 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -0.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5552 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5553 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5554 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5555 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5556 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5557 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5558 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5559 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5560 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5561 - type: GasPipeStraight - components: - - pos: -13.5,-20.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5562 - type: GasPipeStraight - components: - - pos: -13.5,-21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5563 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5564 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5565 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5566 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5567 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5568 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5569 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5570 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5571 - type: GasPipeFourway - components: - - pos: -0.5,-11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5572 - type: GasPipeTJunction - components: - - pos: -1.5,-11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5573 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -1.5,-12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5574 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5575 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5576 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5577 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5578 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5579 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5580 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5581 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5582 - type: Poweredlight - components: - - pos: 16.5,-29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5583 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5584 - type: PoweredlightLED - components: - - pos: 22.5,-28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5585 - type: CableApcExtension - components: - - pos: 21.5,-26.5 - parent: 0 - type: Transform -- uid: 5586 - type: GasPipeStraight - components: - - pos: -0.5,-10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5587 - type: GasPipeStraight - components: - - pos: -0.5,-9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5588 - type: GasPipeStraight - components: - - pos: -0.5,-8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5589 - type: GasPipeStraight - components: - - pos: -0.5,-7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5590 - type: GasPipeStraight - components: - - pos: -0.5,-6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5591 - type: GasPipeStraight - components: - - pos: -0.5,-5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5592 - type: GasPipeTJunction - components: - - pos: -0.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5593 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5594 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5595 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -0.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5596 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5597 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -5.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5598 - type: GasPipeBend - components: - - pos: 4.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5599 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5600 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5601 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5602 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5603 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5604 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5605 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5606 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5607 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -5.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5608 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5609 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5610 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5611 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5612 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5613 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5614 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5615 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5616 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5617 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5618 - type: GasPipeStraight - components: - - pos: 4.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5619 - type: GasPipeStraight - components: - - pos: 4.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5620 - type: GasPipeStraight - components: - - pos: 4.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5621 - type: GasPipeStraight - components: - - pos: 4.5,-1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5622 - type: GasPipeStraight - components: - - pos: 4.5,-2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5623 - type: GasPipeStraight - components: - - pos: 4.5,-3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5624 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5625 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5626 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5627 - type: GasPipeTJunction - components: - - pos: 0.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5628 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -6.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5629 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5630 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5631 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5632 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5633 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5634 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5635 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5636 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5637 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5638 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5639 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5640 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5641 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5642 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5643 - type: GasPipeTJunction - components: - - pos: -21.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5644 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5645 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5646 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5647 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5648 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5649 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5650 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5651 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5652 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5653 - type: GasPipeStraight - components: - - pos: -30.5,-1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5654 - type: GasPipeStraight - components: - - pos: -30.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5655 - type: GasPipeStraight - components: - - pos: -30.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5656 - type: GasPipeStraight - components: - - pos: -30.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5657 - type: GasPipeStraight - components: - - pos: -30.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5658 - type: GasVentPump - components: - - pos: -30.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5659 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -30.5,-2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5660 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -21.5,-1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5661 - type: GasPipeBend - components: - - pos: -20.5,-1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5662 - type: GasPipeStraight - components: - - pos: -20.5,-2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5663 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5664 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -20.5,-3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5665 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5666 - type: GasVentPump - components: - - pos: -6.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5667 - type: GasVentPump - components: - - pos: 5.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5668 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5669 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -3.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5670 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 0.5,-5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5671 - type: GasVentPump - components: - - pos: -1.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5672 - type: GasPipeStraight - components: - - pos: -0.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5673 - type: GasPipeStraight - components: - - pos: -0.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5674 - type: GasPipeStraight - components: - - pos: -0.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5675 - type: GasPipeStraight - components: - - pos: -0.5,7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5676 - type: GasPipeStraight - components: - - pos: -0.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5677 - type: GasPipeStraight - components: - - pos: -0.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5678 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -0.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5679 - type: GasPipeTJunction - components: - - pos: -0.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5680 - type: GasPipeStraight - components: - - pos: -0.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5681 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5682 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5683 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5684 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5685 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5686 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5687 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5688 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5689 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5690 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5691 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5692 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5693 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5694 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5695 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5696 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -1.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5697 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -6.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5698 - type: GasPipeTJunction - components: - - pos: -6.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5699 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -10.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5700 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -10.5,16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5701 - type: GasPipeStraight - components: - - pos: -10.5,17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5702 - type: GasPipeStraight - components: - - pos: -10.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5703 - type: GasPipeStraight - components: - - pos: -10.5,19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5704 - type: GasPipeStraight - components: - - pos: -10.5,20.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5705 - type: GasPipeStraight - components: - - pos: -10.5,21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5706 - type: GasPipeStraight - components: - - pos: -10.5,22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5707 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -10.5,23.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5708 - type: GasPipeStraight - components: - - pos: -10.5,24.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5709 - type: GasPipeStraight - components: - - pos: -10.5,25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5710 - type: GasPipeStraight - components: - - pos: -10.5,26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5711 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -10.5,27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5712 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -9.5,27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5713 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -9.5,23.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5714 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -9.5,16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5715 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5716 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5717 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5718 - type: GasPipeStraight - components: - - pos: -10.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5719 - type: GasPipeStraight - components: - - pos: -10.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5720 - type: GasPipeStraight - components: - - pos: -10.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5721 - type: GasPipeStraight - components: - - pos: -10.5,14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5722 - type: GasPipeStraight - components: - - pos: -10.5,15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5723 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 10.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5724 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 11.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5725 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5726 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5727 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5728 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5729 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5730 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5731 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 18.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5732 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5733 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5734 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5735 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5736 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5737 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5738 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5739 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5740 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5741 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 28.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5742 - type: GasVentPump - components: - - pos: 10.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5743 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 28.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5744 - type: GasVentPump - components: - - pos: 18.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5745 - type: GasPipeStraight - components: - - pos: 11.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5746 - type: GasPipeStraight - components: - - pos: 11.5,14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5747 - type: GasPipeStraight - components: - - pos: 11.5,15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5748 - type: GasPipeStraight - components: - - pos: 11.5,16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5749 - type: GasPipeStraight - components: - - pos: 11.5,17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5750 - type: GasPipeStraight - components: - - pos: 11.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5751 - type: GasPipeStraight - components: - - pos: 11.5,19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5752 - type: GasPipeStraight - components: - - pos: 11.5,20.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5753 - type: GasPipeStraight - components: - - pos: 11.5,21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5754 - type: GasPipeStraight - components: - - pos: 11.5,22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5755 - type: GasPipeStraight - components: - - pos: 11.5,23.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5756 - type: GasVentPump - components: - - pos: 11.5,24.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5757 - type: GasPipeStraight - components: - - pos: 28.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5758 - type: GasPipeStraight - components: - - pos: 28.5,14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5759 - type: GasPipeStraight - components: - - pos: 28.5,15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5760 - type: GasPipeStraight - components: - - pos: 28.5,16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5761 - type: GasPipeStraight - components: - - pos: 28.5,17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5762 - type: GasPipeStraight - components: - - pos: 28.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5763 - type: GasVentPump - components: - - pos: 28.5,19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5764 - type: PortableScrubber - components: - - pos: 16.5,-31.5 - parent: 0 - type: Transform -- uid: 5765 - type: PortableScrubber - components: - - pos: 17.5,-31.5 - parent: 0 - type: Transform -- uid: 5766 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5767 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5768 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5769 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5770 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5771 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5772 - type: GasPipeTJunction - components: - - pos: 12.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5773 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5774 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5775 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5776 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5777 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5778 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5779 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 12.5,-1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5780 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5781 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 0 - type: Transform -- uid: 5782 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 0 - type: Transform -- uid: 5783 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 - parent: 0 - type: Transform -- uid: 5784 - type: WallRiveted - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-34.5 - parent: 0 - type: Transform -- uid: 5785 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 0 - type: Transform -- uid: 5786 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -13.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5787 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5788 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5789 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5790 - type: GasPipeStraight - components: - - pos: -13.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5791 - type: GasPipeStraight - components: - - pos: -13.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5792 - type: GasPipeStraight - components: - - pos: -13.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5793 - type: GasPipeStraight - components: - - pos: -13.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5794 - type: GasPipeStraight - components: - - pos: -13.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5795 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5796 - type: GasPipeStraight - components: - - pos: -13.5,-24.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5797 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-23.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5798 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5799 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5800 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5801 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5802 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5803 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5804 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5805 - type: GasPipeTJunction - components: - - pos: 4.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5806 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5807 - type: CableHV - components: - - pos: -3.5,-27.5 - parent: 0 - type: Transform -- uid: 5808 - type: CableHV - components: - - pos: 1.5,-27.5 - parent: 0 - type: Transform -- uid: 5809 - type: CableHV - components: - - pos: 2.5,-27.5 - parent: 0 - type: Transform -- uid: 5810 - type: CableHV - components: - - pos: 3.5,-27.5 - parent: 0 - type: Transform -- uid: 5811 - type: CableHV - components: - - pos: 4.5,-27.5 - parent: 0 - type: Transform -- uid: 5812 - type: CableHV - components: - - pos: -1.5,-27.5 - parent: 0 - type: Transform -- uid: 5813 - type: CableHV - components: - - pos: -2.5,-27.5 - parent: 0 - type: Transform -- uid: 5814 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5815 - type: GasPipeTJunction - components: - - pos: -5.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5816 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5817 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5818 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5819 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5820 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5821 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5822 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5823 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5824 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5825 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5826 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5827 - type: Poweredlight - components: - - pos: -14.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5828 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5829 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5830 - type: Poweredlight - components: - - pos: -2.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5831 - type: Poweredlight - components: - - pos: 1.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5832 - type: CableMV - components: - - pos: 10.5,6.5 - parent: 0 - type: Transform -- uid: 5833 - type: CableMV - components: - - pos: 9.5,6.5 - parent: 0 - type: Transform -- uid: 5834 - type: CableMV - components: - - pos: 9.5,5.5 - parent: 0 - type: Transform -- uid: 5835 - type: CableMV - components: - - pos: 9.5,4.5 - parent: 0 - type: Transform -- uid: 5836 - type: CableMV - components: - - pos: 9.5,3.5 - parent: 0 - type: Transform -- uid: 5837 - type: CableMV - components: - - pos: 9.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5838 - type: CableMV - components: - - pos: 9.5,1.5 - parent: 0 - type: Transform -- uid: 5839 - type: CableMV - components: - - pos: 10.5,1.5 - parent: 0 - type: Transform -- uid: 5840 - type: CableMV - components: - - pos: 10.5,0.5 - parent: 0 - type: Transform -- uid: 5841 - type: CableMV - components: - - pos: 10.5,-0.5 - parent: 0 - type: Transform -- uid: 5842 - type: CableMV - components: - - pos: 10.5,-1.5 - parent: 0 - type: Transform -- uid: 5843 - type: CableMV - components: - - pos: 10.5,-2.5 - parent: 0 - type: Transform -- uid: 5844 - type: CableMV - components: - - pos: 11.5,6.5 - parent: 0 - type: Transform -- uid: 5845 - type: CableMV - components: - - pos: 12.5,6.5 - parent: 0 - type: Transform -- uid: 5846 - type: CableMV - components: - - pos: 12.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5847 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5848 - type: Poweredlight - components: - - pos: 2.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5849 - type: Poweredlight - components: - - pos: 3.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5850 - type: Poweredlight - components: - - pos: -4.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5851 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5852 - type: Poweredlight - components: - - pos: -4.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5853 - type: Poweredlight - components: - - pos: 3.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5854 - type: CableMV - components: - - pos: 20.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5855 - type: CableMV - components: - - pos: 20.5,5.5 - parent: 0 - type: Transform -- uid: 5856 - type: CableMV - components: - - pos: 19.5,5.5 - parent: 0 - type: Transform -- uid: 5857 - type: CableMV - components: - - pos: 18.5,5.5 - parent: 0 - type: Transform -- uid: 5858 - type: CableMV - components: - - pos: 17.5,5.5 - parent: 0 - type: Transform -- uid: 5859 - type: CableMV - components: - - pos: 16.5,5.5 - parent: 0 - type: Transform -- uid: 5860 - type: CableMV - components: - - pos: 15.5,5.5 - parent: 0 - type: Transform -- uid: 5861 - type: CableMV - components: - - pos: 14.5,5.5 - parent: 0 - type: Transform -- uid: 5862 - type: CableMV - components: - - pos: 13.5,5.5 - parent: 0 - type: Transform -- uid: 5863 - type: CableMV - components: - - pos: 12.5,5.5 - parent: 0 - type: Transform -- uid: 5864 - type: WallRiveted - components: - - pos: -17.5,-28.5 - parent: 0 - type: Transform -- uid: 5865 - type: CableMV - components: - - pos: 20.5,4.5 - parent: 0 - type: Transform -- uid: 5866 - type: CableMV - components: - - pos: 20.5,3.5 - parent: 0 - type: Transform -- uid: 5867 - type: CableMV - components: - - pos: 20.5,2.5 - parent: 0 - type: Transform -- uid: 5868 - type: CableMV - components: - - pos: 20.5,1.5 - parent: 0 - type: Transform -- uid: 5869 - type: CableMV - components: - - pos: 20.5,0.5 - parent: 0 - type: Transform -- uid: 5870 - type: CableMV - components: - - pos: 20.5,-0.5 - parent: 0 - type: Transform -- uid: 5871 - type: CableMV - components: - - pos: 20.5,-1.5 - parent: 0 - type: Transform -- uid: 5872 - type: CableMV - components: - - pos: 20.5,-2.5 - parent: 0 - type: Transform -- uid: 5873 - type: CableMV - components: - - pos: 20.5,-3.5 - parent: 0 - type: Transform -- uid: 5874 - type: CableMV - components: - - pos: 20.5,-4.5 - parent: 0 - type: Transform -- uid: 5875 - type: CableMV - components: - - pos: 20.5,-5.5 - parent: 0 - type: Transform -- uid: 5876 - type: FirelockGlass - components: - - pos: -14.5,-29.5 - parent: 0 - type: Transform -- uid: 5877 - type: FirelockGlass - components: - - pos: -13.5,-29.5 - parent: 0 - type: Transform -- uid: 5878 - type: PoweredlightSodium - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5879 - type: WallRiveted - components: - - pos: -3.5,-39.5 - parent: 0 - type: Transform -- uid: 5880 - type: ReinforcedWindow - components: - - pos: -0.5,-40.5 - parent: 0 - type: Transform -- uid: 5881 - type: WallRiveted - components: - - pos: -3.5,-40.5 - parent: 0 - type: Transform -- uid: 5882 - type: WallRiveted - components: - - pos: -2.5,-38.5 - parent: 0 - type: Transform -- uid: 5883 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5884 - type: Poweredlight - components: - - pos: 12.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5885 - type: Poweredlight - components: - - pos: 9.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5886 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5887 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5888 - type: DisposalPipe - components: - - pos: -13.5,-23.5 - parent: 0 - type: Transform -- uid: 5889 - type: DisposalPipe - components: - - pos: -13.5,-24.5 - parent: 0 - type: Transform -- uid: 5890 - type: DisposalPipe - components: - - pos: -13.5,-25.5 - parent: 0 - type: Transform -- uid: 5891 - type: DisposalPipe - components: - - pos: -13.5,-26.5 - parent: 0 - type: Transform -- uid: 5892 - type: DisposalPipe - components: - - pos: -13.5,-27.5 - parent: 0 - type: Transform -- uid: 5893 - type: DisposalPipe - components: - - pos: -13.5,-28.5 - parent: 0 - type: Transform -- uid: 5894 - type: DisposalPipe - components: - - pos: -13.5,-29.5 - parent: 0 - type: Transform -- uid: 5895 - type: DisposalPipe - components: - - pos: -13.5,-30.5 - parent: 0 - type: Transform -- uid: 5896 - type: DisposalPipe - components: - - pos: -13.5,-31.5 - parent: 0 - type: Transform -- uid: 5897 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-32.5 - parent: 0 - type: Transform -- uid: 5898 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 0 - type: Transform -- uid: 5899 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-33.5 - parent: 0 - type: Transform -- uid: 5900 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-33.5 - parent: 0 - type: Transform -- uid: 5901 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-33.5 - parent: 0 - type: Transform -- uid: 5902 - type: ConveyorBelt - components: - - pos: -19.5,-33.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 5906 - Forward: - - port: Left - uid: 5906 - Off: - - port: Middle - uid: 5906 - type: SignalReceiver -- uid: 5903 - type: ConveyorBelt - components: - - pos: -19.5,-32.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 5906 - Forward: - - port: Left - uid: 5906 - Off: - - port: Middle - uid: 5906 - type: SignalReceiver -- uid: 5904 - type: ConveyorBelt - components: - - pos: -19.5,-31.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 5906 - Forward: - - port: Left - uid: 5906 - Off: - - port: Middle - uid: 5906 - type: SignalReceiver -- uid: 5905 - type: WallRiveted - components: - - pos: -3.5,-38.5 - parent: 0 - type: Transform -- uid: 5906 - type: TwoWayLever - components: - - pos: -18.5,-32.5 - parent: 0 - type: Transform - - outputs: - Left: - - port: Forward - uid: 5902 - - port: Forward - uid: 5903 - - port: Forward - uid: 5904 - Right: - - port: Reverse - uid: 5902 - - port: Reverse - uid: 5903 - - port: Reverse - uid: 5904 - Middle: - - port: Off - uid: 5902 - - port: Off - uid: 5903 - - port: Off - uid: 5904 - type: SignalTransmitter -- uid: 5907 - type: TwoWayLever - components: - - pos: -18.5,-31.5 - parent: 0 - type: Transform - - outputs: - Left: - - port: Forward - uid: 5908 - Right: - - port: Reverse - uid: 5908 - Middle: - - port: Off - uid: 5908 - type: SignalTransmitter -- uid: 5908 - type: Recycler - components: - - rot: 3.141592653589793 rad - pos: -19.5,-31.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 5907 - Forward: - - port: Left - uid: 5907 - Off: - - port: Middle - uid: 5907 - type: SignalReceiver -- uid: 5909 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-34.5 - parent: 0 - type: Transform -- uid: 5910 - type: ReinforcedWindow - components: - - pos: -17.5,-34.5 - parent: 0 - type: Transform -- uid: 5911 - type: ReinforcedWindow - components: - - pos: -18.5,-34.5 - parent: 0 - type: Transform -- uid: 5912 - type: ReinforcedWindow - components: - - pos: -19.5,-34.5 - parent: 0 - type: Transform -- uid: 5913 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-34.5 - parent: 0 - type: Transform -- uid: 5914 - type: ReinforcedWindow - components: - - pos: -20.5,-31.5 - parent: 0 - type: Transform -- uid: 5915 - type: ReinforcedWindow - components: - - pos: -20.5,-32.5 - parent: 0 - type: Transform -- uid: 5916 - type: ReinforcedWindow - components: - - pos: -20.5,-33.5 - parent: 0 - type: Transform -- uid: 5917 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 0 - type: Transform -- uid: 5918 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-30.5 - parent: 0 - type: Transform -- uid: 5919 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-30.5 - parent: 0 - type: Transform -- uid: 5920 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-30.5 - parent: 0 - type: Transform -- uid: 5921 - type: WallRiveted - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-30.5 - parent: 0 - type: Transform -- uid: 5922 - type: Grille - components: - - pos: -20.5,-33.5 - parent: 0 - type: Transform -- uid: 5923 - type: Grille - components: - - pos: -20.5,-32.5 - parent: 0 - type: Transform -- uid: 5924 - type: Grille - components: - - pos: -20.5,-31.5 - parent: 0 - type: Transform -- uid: 5925 - type: Grille - components: - - pos: -18.5,-34.5 - parent: 0 - type: Transform -- uid: 5926 - type: Grille - components: - - pos: -17.5,-34.5 - parent: 0 - type: Transform -- uid: 5927 - type: Grille - components: - - pos: -19.5,-34.5 - parent: 0 - type: Transform -- uid: 5928 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-31.5 - parent: 0 - type: Transform -- uid: 5929 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 0 - type: Transform -- uid: 5930 - type: WallRiveted - components: - - pos: -15.5,-33.5 - parent: 0 - type: Transform -- uid: 5931 - type: WallRiveted - components: - - pos: -15.5,-31.5 - parent: 0 - type: Transform -- uid: 5932 - type: HighSecDoor - components: - - pos: -15.5,-32.5 - parent: 0 - type: Transform -- uid: 5933 - type: Poweredlight - components: - - pos: -17.5,-31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5934 - type: APCBasic - components: - - pos: -16.5,-30.5 - parent: 0 - type: Transform -- uid: 5935 - type: CableApcExtension - components: - - pos: -16.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5936 - type: CableApcExtension - components: - - pos: -16.5,-31.5 - parent: 0 - type: Transform -- uid: 5937 - type: CableApcExtension - components: - - pos: -16.5,-32.5 - parent: 0 - type: Transform -- uid: 5938 - type: CableApcExtension - components: - - pos: -16.5,-33.5 - parent: 0 - type: Transform -- uid: 5939 - type: CableApcExtension - components: - - pos: -17.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5940 - type: CableApcExtension - components: - - pos: -18.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5941 - type: WallRiveted - components: - - pos: -17.5,-27.5 - parent: 0 - type: Transform -- uid: 5942 - type: WallRiveted - components: - - pos: -16.5,-22.5 - parent: 0 - type: Transform -- uid: 5943 - type: WallRiveted - components: - - pos: -17.5,-22.5 - parent: 0 - type: Transform -- uid: 5944 - type: WallRiveted - components: - - pos: -17.5,-23.5 - parent: 0 - type: Transform -- uid: 5945 - type: HighSecDoor - components: - - pos: -17.5,-26.5 - parent: 0 - type: Transform -- uid: 5946 - type: HighSecDoor - components: - - pos: -17.5,-24.5 - parent: 0 - type: Transform -- uid: 5947 - type: ReinforcedWindow - components: - - pos: -15.5,-25.5 - parent: 0 - type: Transform -- uid: 5948 - type: ReinforcedWindow - components: - - pos: -17.5,-25.5 - parent: 0 - type: Transform -- uid: 5949 - type: Grille - components: - - pos: -15.5,-25.5 - parent: 0 - type: Transform -- uid: 5950 - type: Grille - components: - - pos: -17.5,-25.5 - parent: 0 - type: Transform -- uid: 5951 - type: BlastDoorOpen - components: - - pos: -16.5,-27.5 - parent: 0 - type: Transform -- uid: 5952 - type: BlastDoorOpen - components: - - pos: -16.5,-26.5 - parent: 0 - type: Transform -- uid: 5953 - type: BlastDoorOpen - components: - - pos: -16.5,-25.5 - parent: 0 - type: Transform -- uid: 5954 - type: BlastDoorOpen - components: - - pos: -16.5,-24.5 - parent: 0 - type: Transform -- uid: 5955 - type: BlastDoorOpen - components: - - pos: -16.5,-23.5 - parent: 0 - type: Transform -- uid: 5956 - type: SignSpace - components: - - pos: -15.5,-25.5 - parent: 0 - type: Transform -- uid: 5957 - type: SignSpace - components: - - pos: -17.5,-25.5 - parent: 0 - type: Transform -- uid: 5958 - type: SubstationBasic - components: - - pos: -16.5,-29.5 - parent: 0 - type: Transform -- uid: 5959 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 5960 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-26.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 5961 - type: AirlockExternalGlassLocked - components: - - pos: -21.5,-26.5 - parent: 0 - type: Transform -- uid: 5962 - type: AirlockExternalGlassLocked - components: - - pos: -21.5,-24.5 - parent: 0 - type: Transform -- uid: 5963 - type: WallRiveted - components: - - pos: -21.5,-30.5 - parent: 0 - type: Transform -- uid: 5964 - type: WallRiveted - components: - - pos: -21.5,-29.5 - parent: 0 - type: Transform -- uid: 5965 - type: WallRiveted - components: - - pos: -22.5,-29.5 - parent: 0 - type: Transform -- uid: 5966 - type: WallRiveted - components: - - pos: -23.5,-29.5 - parent: 0 - type: Transform -- uid: 5967 - type: WallRiveted - components: - - pos: -23.5,-21.5 - parent: 0 - type: Transform -- uid: 5968 - type: WallRiveted - components: - - pos: -22.5,-21.5 - parent: 0 - type: Transform -- uid: 5969 - type: WallRiveted - components: - - pos: -21.5,-21.5 - parent: 0 - type: Transform -- uid: 5970 - type: WallRiveted - components: - - pos: -17.5,-21.5 - parent: 0 - type: Transform -- uid: 5971 - type: WallRiveted - components: - - pos: -16.5,-21.5 - parent: 0 - type: Transform -- uid: 5972 - type: WallRiveted - components: - - pos: -23.5,-28.5 - parent: 0 - type: Transform -- uid: 5973 - type: WallRiveted - components: - - pos: -23.5,-22.5 - parent: 0 - type: Transform -- uid: 5974 - type: WallRiveted - components: - - pos: -21.5,-28.5 - parent: 0 - type: Transform -- uid: 5975 - type: WallRiveted - components: - - pos: -21.5,-22.5 - parent: 0 - type: Transform -- uid: 5976 - type: ReinforcedWindow - components: - - pos: -23.5,-27.5 - parent: 0 - type: Transform -- uid: 5977 - type: ReinforcedWindow - components: - - pos: -21.5,-27.5 - parent: 0 - type: Transform -- uid: 5978 - type: ReinforcedWindow - components: - - pos: -21.5,-23.5 - parent: 0 - type: Transform -- uid: 5979 - type: ReinforcedWindow - components: - - pos: -23.5,-23.5 - parent: 0 - type: Transform -- uid: 5980 - type: ReinforcedWindow - components: - - pos: -23.5,-25.5 - parent: 0 - type: Transform -- uid: 5981 - type: ReinforcedWindow - components: - - pos: -22.5,-25.5 - parent: 0 - type: Transform -- uid: 5982 - type: ReinforcedWindow - components: - - pos: -21.5,-25.5 - parent: 0 - type: Transform -- uid: 5983 - type: Grille - components: - - pos: -21.5,-27.5 - parent: 0 - type: Transform -- uid: 5984 - type: Grille - components: - - pos: -23.5,-27.5 - parent: 0 - type: Transform -- uid: 5985 - type: Grille - components: - - pos: -23.5,-25.5 - parent: 0 - type: Transform -- uid: 5986 - type: Grille - components: - - pos: -22.5,-25.5 - parent: 0 - type: Transform -- uid: 5987 - type: Grille - components: - - pos: -21.5,-25.5 - parent: 0 - type: Transform -- uid: 5988 - type: Grille - components: - - pos: -21.5,-23.5 - parent: 0 - type: Transform -- uid: 5989 - type: Grille - components: - - pos: -23.5,-23.5 - parent: 0 - type: Transform -- uid: 5990 - type: ReinforcedWindow - components: - - pos: -20.5,-21.5 - parent: 0 - type: Transform -- uid: 5991 - type: ReinforcedWindow - components: - - pos: -19.5,-21.5 - parent: 0 - type: Transform -- uid: 5992 - type: ReinforcedWindow - components: - - pos: -18.5,-21.5 - parent: 0 - type: Transform -- uid: 5993 - type: Grille - components: - - pos: -18.5,-21.5 - parent: 0 - type: Transform -- uid: 5994 - type: Grille - components: - - pos: -19.5,-21.5 - parent: 0 - type: Transform -- uid: 5995 - type: Grille - components: - - pos: -20.5,-21.5 - parent: 0 - type: Transform -- uid: 5996 - type: AtmosDeviceFanTiny - components: - - pos: -23.5,-26.5 - parent: 0 - type: Transform -- uid: 5997 - type: AtmosDeviceFanTiny - components: - - pos: -23.5,-24.5 - parent: 0 - type: Transform -- uid: 5998 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5999 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6000 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6001 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6002 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6003 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6004 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-22.5 - parent: 0 - type: Transform -- uid: 6005 - type: AirlockEngineeringLocked - components: - - pos: -17.5,-29.5 - parent: 0 - type: Transform -- uid: 6006 - type: CableHV - components: - - pos: 12.5,-26.5 - parent: 0 - type: Transform -- uid: 6007 - type: CableHV - components: - - pos: 12.5,-27.5 - parent: 0 - type: Transform -- uid: 6008 - type: CableHV - components: - - pos: 12.5,-28.5 - parent: 0 - type: Transform -- uid: 6009 - type: CableHV - components: - - pos: 12.5,-29.5 - parent: 0 - type: Transform -- uid: 6010 - type: CableHV - components: - - pos: 12.5,-30.5 - parent: 0 - type: Transform -- uid: 6011 - type: CableHV - components: - - pos: 12.5,-31.5 - parent: 0 - type: Transform -- uid: 6012 - type: CableHV - components: - - pos: 11.5,-31.5 - parent: 0 - type: Transform -- uid: 6013 - type: CableHV - components: - - pos: 10.5,-31.5 - parent: 0 - type: Transform -- uid: 6014 - type: CableHV - components: - - pos: 9.5,-31.5 - parent: 0 - type: Transform -- uid: 6015 - type: CableHV - components: - - pos: 8.5,-31.5 - parent: 0 - type: Transform -- uid: 6016 - type: CableHV - components: - - pos: 7.5,-31.5 - parent: 0 - type: Transform -- uid: 6017 - type: CableHV - components: - - pos: 6.5,-31.5 - parent: 0 - type: Transform -- uid: 6018 - type: CableHV - components: - - pos: 5.5,-31.5 - parent: 0 - type: Transform -- uid: 6019 - type: CableHV - components: - - pos: -6.5,-28.5 - parent: 0 - type: Transform -- uid: 6020 - type: CableHV - components: - - pos: -6.5,-27.5 - parent: 0 - type: Transform -- uid: 6021 - type: CableHV - components: - - pos: -5.5,-27.5 - parent: 0 - type: Transform -- uid: 6022 - type: CableHV - components: - - pos: -0.5,-27.5 - parent: 0 - type: Transform -- uid: 6023 - type: CableHV - components: - - pos: 5.5,-30.5 - parent: 0 - type: Transform -- uid: 6024 - type: ReinforcedWindow - components: - - pos: -2.5,-33.5 - parent: 0 - type: Transform -- uid: 6025 - type: ReinforcedWindow - components: - - pos: -2.5,-32.5 - parent: 0 - type: Transform -- uid: 6026 - type: CableHV - components: - - pos: 0.5,-27.5 - parent: 0 - type: Transform -- uid: 6027 - type: CableHV - components: - - pos: -4.5,-27.5 - parent: 0 - type: Transform -- uid: 6028 - type: CableHV - components: - - pos: -6.5,-30.5 - parent: 0 - type: Transform -- uid: 6029 - type: CableHV - components: - - pos: -6.5,-29.5 - parent: 0 - type: Transform -- uid: 6030 - type: CableHV - components: - - pos: -6.5,-31.5 - parent: 0 - type: Transform -- uid: 6031 - type: CableHV - components: - - pos: -7.5,-31.5 - parent: 0 - type: Transform -- uid: 6032 - type: CableHV - components: - - pos: -8.5,-31.5 - parent: 0 - type: Transform -- uid: 6033 - type: CableHV - components: - - pos: -9.5,-31.5 - parent: 0 - type: Transform -- uid: 6034 - type: CableHV - components: - - pos: -10.5,-31.5 - parent: 0 - type: Transform -- uid: 6035 - type: CableHV - components: - - pos: -11.5,-31.5 - parent: 0 - type: Transform -- uid: 6036 - type: CableHV - components: - - pos: -12.5,-31.5 - parent: 0 - type: Transform -- uid: 6037 - type: CableHV - components: - - pos: -13.5,-31.5 - parent: 0 - type: Transform -- uid: 6038 - type: CableHV - components: - - pos: -14.5,-31.5 - parent: 0 - type: Transform -- uid: 6039 - type: CableHV - components: - - pos: -14.5,-30.5 - parent: 0 - type: Transform -- uid: 6040 - type: CableHV - components: - - pos: -14.5,-29.5 - parent: 0 - type: Transform -- uid: 6041 - type: CableHV - components: - - pos: -14.5,-28.5 - parent: 0 - type: Transform -- uid: 6042 - type: CableHV - components: - - pos: -14.5,-27.5 - parent: 0 - type: Transform -- uid: 6043 - type: CableHV - components: - - pos: -14.5,-26.5 - parent: 0 - type: Transform -- uid: 6044 - type: CableHV - components: - - pos: -14.5,-25.5 - parent: 0 - type: Transform -- uid: 6045 - type: CableHV - components: - - pos: -15.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6046 - type: CableHV - components: - - pos: -16.5,-25.5 - parent: 0 - type: Transform -- uid: 6047 - type: CableHV - components: - - pos: -17.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6048 - type: CableHV - components: - - pos: -18.5,-25.5 - parent: 0 - type: Transform -- uid: 6049 - type: CableHV - components: - - pos: -18.5,-26.5 - parent: 0 - type: Transform -- uid: 6050 - type: CableHV - components: - - pos: -18.5,-27.5 - parent: 0 - type: Transform -- uid: 6051 - type: CableHV - components: - - pos: -18.5,-28.5 - parent: 0 - type: Transform -- uid: 6052 - type: CableHV - components: - - pos: -18.5,-29.5 - parent: 0 - type: Transform -- uid: 6053 - type: CableHV - components: - - pos: -17.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6054 - type: CableHV - components: - - pos: -16.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6055 - type: CableMV - components: - - pos: -16.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6056 - type: CableMV - components: - - pos: -16.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6057 - type: CableMV - components: - - pos: -17.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6058 - type: CableMV - components: - - pos: -18.5,-29.5 - parent: 0 - type: Transform -- uid: 6059 - type: CableMV - components: - - pos: -18.5,-28.5 - parent: 0 - type: Transform -- uid: 6060 - type: CableMV - components: - - pos: -18.5,-27.5 - parent: 0 - type: Transform -- uid: 6061 - type: CableMV - components: - - pos: -18.5,-26.5 - parent: 0 - type: Transform -- uid: 6062 - type: CableMV - components: - - pos: -18.5,-25.5 - parent: 0 - type: Transform -- uid: 6063 - type: CableMV - components: - - pos: -18.5,-24.5 - parent: 0 - type: Transform -- uid: 6064 - type: CableMV - components: - - pos: -18.5,-23.5 - parent: 0 - type: Transform -- uid: 6065 - type: CableMV - components: - - pos: -18.5,-22.5 - parent: 0 - type: Transform -- uid: 6066 - type: CableMV - components: - - pos: -17.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6067 - type: CableApcExtension - components: - - pos: -17.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6068 - type: CableApcExtension - components: - - pos: -18.5,-22.5 - parent: 0 - type: Transform -- uid: 6069 - type: CableApcExtension - components: - - pos: -19.5,-22.5 - parent: 0 - type: Transform -- uid: 6070 - type: CableApcExtension - components: - - pos: -19.5,-23.5 - parent: 0 - type: Transform -- uid: 6071 - type: CableApcExtension - components: - - pos: -19.5,-24.5 - parent: 0 - type: Transform -- uid: 6072 - type: CableApcExtension - components: - - pos: -19.5,-25.5 - parent: 0 - type: Transform -- uid: 6073 - type: CableApcExtension - components: - - pos: -19.5,-26.5 - parent: 0 - type: Transform -- uid: 6074 - type: CableApcExtension - components: - - pos: -19.5,-27.5 - parent: 0 - type: Transform -- uid: 6075 - type: CableApcExtension - components: - - pos: -19.5,-28.5 - parent: 0 - type: Transform -- uid: 6076 - type: CableApcExtension - components: - - pos: -20.5,-26.5 - parent: 0 - type: Transform -- uid: 6077 - type: CableApcExtension - components: - - pos: -21.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6078 - type: CableApcExtension - components: - - pos: -22.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6079 - type: CableApcExtension - components: - - pos: -20.5,-24.5 - parent: 0 - type: Transform -- uid: 6080 - type: CableApcExtension - components: - - pos: -21.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6081 - type: CableApcExtension - components: - - pos: -22.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6082 - type: CableApcExtension - components: - - pos: -19.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6083 - type: CableApcExtension - components: - - pos: -18.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6084 - type: CableApcExtension - components: - - pos: -20.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6085 - type: CableApcExtension - components: - - pos: -21.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6086 - type: CableApcExtension - components: - - pos: -21.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6087 - type: CableApcExtension - components: - - pos: -21.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6088 - type: CableApcExtension - components: - - pos: -22.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6089 - type: CableApcExtension - components: - - pos: -23.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6090 - type: CableApcExtension - components: - - pos: -23.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6091 - type: CableApcExtension - components: - - pos: -23.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6092 - type: CableApcExtension - components: - - pos: -23.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6093 - type: CableApcExtension - components: - - pos: -23.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6094 - type: CableApcExtension - components: - - pos: -18.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6095 - type: CableApcExtension - components: - - pos: -17.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6096 - type: CableApcExtension - components: - - pos: -19.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6097 - type: CableApcExtension - components: - - pos: -19.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6098 - type: CableApcExtension - components: - - pos: -20.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6099 - type: CableApcExtension - components: - - pos: -20.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6100 - type: CableApcExtension - components: - - pos: -20.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6101 - type: Poweredlight - components: - - pos: -22.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6102 - type: Poweredlight - components: - - pos: -16.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6103 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 - parent: 0 - type: Transform -- uid: 6104 - type: CableMV - components: - - pos: -17.5,-26.5 - parent: 0 - type: Transform -- uid: 6105 - type: CableMV - components: - - pos: -16.5,-26.5 - parent: 0 - type: Transform -- uid: 6106 - type: CableMV - components: - - pos: -15.5,-26.5 - parent: 0 - type: Transform -- uid: 6107 - type: CableMV - components: - - pos: -14.5,-26.5 - parent: 0 - type: Transform -- uid: 6108 - type: CableMV - components: - - pos: -14.5,-27.5 - parent: 0 - type: Transform -- uid: 6109 - type: CableMV - components: - - pos: -14.5,-28.5 - parent: 0 - type: Transform -- uid: 6110 - type: CableMV - components: - - pos: -14.5,-28.5 - parent: 0 - type: Transform -- uid: 6111 - type: CableMV - components: - - pos: -15.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6112 - type: CableApcExtension - components: - - pos: -15.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6113 - type: CableApcExtension - components: - - pos: -14.5,-28.5 - parent: 0 - type: Transform -- uid: 6114 - type: CableApcExtension - components: - - pos: -13.5,-28.5 - parent: 0 - type: Transform -- uid: 6115 - type: CableApcExtension - components: - - pos: -13.5,-29.5 - parent: 0 - type: Transform -- uid: 6116 - type: CableApcExtension - components: - - pos: -13.5,-30.5 - parent: 0 - type: Transform -- uid: 6117 - type: CableApcExtension - components: - - pos: -13.5,-31.5 - parent: 0 - type: Transform -- uid: 6118 - type: CableApcExtension - components: - - pos: -13.5,-32.5 - parent: 0 - type: Transform -- uid: 6119 - type: CableApcExtension - components: - - pos: -13.5,-33.5 - parent: 0 - type: Transform -- uid: 6120 - type: CableApcExtension - components: - - pos: -13.5,-27.5 - parent: 0 - type: Transform -- uid: 6121 - type: CableApcExtension - components: - - pos: -13.5,-26.5 - parent: 0 - type: Transform -- uid: 6122 - type: CableApcExtension - components: - - pos: -13.5,-25.5 - parent: 0 - type: Transform -- uid: 6123 - type: CableApcExtension - components: - - pos: -13.5,-24.5 - parent: 0 - type: Transform -- uid: 6124 - type: CableApcExtension - components: - - pos: -13.5,-23.5 - parent: 0 - type: Transform -- uid: 6125 - type: CableApcExtension - components: - - pos: -13.5,-22.5 - parent: 0 - type: Transform -- uid: 6126 - type: CableApcExtension - components: - - pos: -13.5,-21.5 - parent: 0 - type: Transform -- uid: 6127 - type: CableApcExtension - components: - - pos: 15.5,-30.5 - parent: 0 - type: Transform -- uid: 6128 - type: CableApcExtension - components: - - pos: 14.5,-30.5 - parent: 0 - type: Transform -- uid: 6129 - type: CableApcExtension - components: - - pos: 13.5,-30.5 - parent: 0 - type: Transform -- uid: 6130 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6131 - type: CableApcExtension - components: - - pos: 13.5,-32.5 - parent: 0 - type: Transform -- uid: 6132 - type: CableApcExtension - components: - - pos: 13.5,-33.5 - parent: 0 - type: Transform -- uid: 6133 - type: CableApcExtension - components: - - pos: -0.5,-29.5 - parent: 0 - type: Transform -- uid: 6134 - type: CableApcExtension - components: - - pos: -0.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6135 - type: CableApcExtension - components: - - pos: -1.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6136 - type: CableApcExtension - components: - - pos: 0.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6137 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6138 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6139 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6140 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6141 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6142 - type: Catwalk - components: - - pos: -22.5,-26.5 - parent: 0 - type: Transform -- uid: 6143 - type: Catwalk - components: - - pos: -22.5,-24.5 - parent: 0 - type: Transform -- uid: 6144 - type: Railing - components: - - pos: -22.5,-23.5 - parent: 0 - type: Transform -- uid: 6145 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -22.5,-27.5 - parent: 0 - type: Transform -- uid: 6146 - type: ClosetFireFilled - components: - - pos: -22.5,-28.5 - parent: 0 - type: Transform -- uid: 6147 - type: ClosetEmergencyFilledRandom - components: - - pos: -22.5,-22.5 - parent: 0 - type: Transform -- uid: 6148 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6149 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6150 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,-29.5 - parent: 0 - type: Transform -- uid: 6151 - type: Table - components: - - pos: -19.5,-22.5 - parent: 0 - type: Transform -- uid: 6152 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6153 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6154 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6155 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6156 - type: ReinforcedWindow - components: - - pos: -2.5,-31.5 - parent: 0 - type: Transform -- uid: 6157 - type: ReinforcedWindow - components: - - pos: 1.5,-33.5 - parent: 0 - type: Transform -- uid: 6158 - type: ReinforcedWindow - components: - - pos: 1.5,-32.5 - parent: 0 - type: Transform -- uid: 6159 - type: ReinforcedWindow - components: - - pos: 1.5,-31.5 - parent: 0 - type: Transform -- uid: 6160 - type: Grille - components: - - pos: -2.5,-33.5 - parent: 0 - type: Transform -- uid: 6161 - type: Grille - components: - - pos: -2.5,-32.5 - parent: 0 - type: Transform -- uid: 6162 - type: Grille - components: - - pos: -2.5,-31.5 - parent: 0 - type: Transform -- uid: 6163 - type: Grille - components: - - pos: 1.5,-33.5 - parent: 0 - type: Transform -- uid: 6164 - type: Grille - components: - - pos: 1.5,-32.5 - parent: 0 - type: Transform -- uid: 6165 - type: Grille - components: - - pos: 1.5,-31.5 - parent: 0 - type: Transform -- uid: 6166 - type: CableHV - components: - - pos: -6.5,-32.5 - parent: 0 - type: Transform -- uid: 6167 - type: CableHV - components: - - pos: -5.5,-32.5 - parent: 0 - type: Transform -- uid: 6168 - type: CableHV - components: - - pos: -4.5,-32.5 - parent: 0 - type: Transform -- uid: 6169 - type: CableHV - components: - - pos: -3.5,-32.5 - parent: 0 - type: Transform -- uid: 6170 - type: CableHV - components: - - pos: -2.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6171 - type: CableHV - components: - - pos: -2.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6172 - type: CableHV - components: - - pos: -2.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6173 - type: CableHV - components: - - pos: 5.5,-32.5 - parent: 0 - type: Transform -- uid: 6174 - type: CableHV - components: - - pos: 4.5,-32.5 - parent: 0 - type: Transform -- uid: 6175 - type: CableHV - components: - - pos: 3.5,-32.5 - parent: 0 - type: Transform -- uid: 6176 - type: CableHV - components: - - pos: 2.5,-32.5 - parent: 0 - type: Transform -- uid: 6177 - type: CableHV - components: - - pos: 1.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6178 - type: CableHV - components: - - pos: 1.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6179 - type: CableHV - components: - - pos: 1.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6180 - type: APCBasic - components: - - pos: 7.5,-30.5 - parent: 0 - type: Transform -- uid: 6181 - type: APCBasic - components: - - pos: -8.5,-30.5 - parent: 0 - type: Transform -- uid: 6182 - type: CableMV - components: - - pos: -14.5,-29.5 - parent: 0 - type: Transform -- uid: 6183 - type: CableMV - components: - - pos: -14.5,-30.5 - parent: 0 - type: Transform -- uid: 6184 - type: CableMV - components: - - pos: -13.5,-30.5 - parent: 0 - type: Transform -- uid: 6185 - type: CableMV - components: - - pos: -12.5,-30.5 - parent: 0 - type: Transform -- uid: 6186 - type: CableMV - components: - - pos: -11.5,-30.5 - parent: 0 - type: Transform -- uid: 6187 - type: CableMV - components: - - pos: -10.5,-30.5 - parent: 0 - type: Transform -- uid: 6188 - type: CableMV - components: - - pos: -9.5,-30.5 - parent: 0 - type: Transform -- uid: 6189 - type: CableMV - components: - - pos: -8.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6190 - type: CableMV - components: - - pos: 7.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6191 - type: CableMV - components: - - pos: 8.5,-30.5 - parent: 0 - type: Transform -- uid: 6192 - type: CableMV - components: - - pos: 9.5,-30.5 - parent: 0 - type: Transform -- uid: 6193 - type: CableMV - components: - - pos: 10.5,-30.5 - parent: 0 - type: Transform -- uid: 6194 - type: CableMV - components: - - pos: 11.5,-30.5 - parent: 0 - type: Transform -- uid: 6195 - type: CableMV - components: - - pos: 12.5,-30.5 - parent: 0 - type: Transform -- uid: 6196 - type: CableMV - components: - - pos: 13.5,-30.5 - parent: 0 - type: Transform -- uid: 6197 - type: CableMV - components: - - pos: 13.5,-29.5 - parent: 0 - type: Transform -- uid: 6198 - type: CableMV - components: - - pos: 13.5,-28.5 - parent: 0 - type: Transform -- uid: 6199 - type: CableMV - components: - - pos: 13.5,-27.5 - parent: 0 - type: Transform -- uid: 6200 - type: CableMV - components: - - pos: 14.5,-27.5 - parent: 0 - type: Transform -- uid: 6201 - type: CableMV - components: - - pos: 15.5,-27.5 - parent: 0 - type: Transform -- uid: 6202 - type: CableApcExtension - components: - - pos: -8.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6203 - type: CableApcExtension - components: - - pos: -8.5,-31.5 - parent: 0 - type: Transform -- uid: 6204 - type: CableApcExtension - components: - - pos: -8.5,-33.5 - parent: 0 - type: Transform -- uid: 6205 - type: CableApcExtension - components: - - pos: -8.5,-32.5 - parent: 0 - type: Transform -- uid: 6206 - type: CableApcExtension - components: - - pos: -7.5,-32.5 - parent: 0 - type: Transform -- uid: 6207 - type: CableApcExtension - components: - - pos: -6.5,-32.5 - parent: 0 - type: Transform -- uid: 6208 - type: CableApcExtension - components: - - pos: -5.5,-32.5 - parent: 0 - type: Transform -- uid: 6209 - type: CableApcExtension - components: - - pos: -4.5,-32.5 - parent: 0 - type: Transform -- uid: 6210 - type: CableApcExtension - components: - - pos: -9.5,-32.5 - parent: 0 - type: Transform -- uid: 6211 - type: CableApcExtension - components: - - pos: -10.5,-32.5 - parent: 0 - type: Transform -- uid: 6212 - type: CableApcExtension - components: - - pos: -11.5,-32.5 - parent: 0 - type: Transform -- uid: 6213 - type: CableApcExtension - components: - - pos: 7.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6214 - type: CableApcExtension - components: - - pos: 7.5,-31.5 - parent: 0 - type: Transform -- uid: 6215 - type: CableApcExtension - components: - - pos: 7.5,-32.5 - parent: 0 - type: Transform -- uid: 6216 - type: CableApcExtension - components: - - pos: 7.5,-33.5 - parent: 0 - type: Transform -- uid: 6217 - type: CableApcExtension - components: - - pos: 6.5,-32.5 - parent: 0 - type: Transform -- uid: 6218 - type: CableApcExtension - components: - - pos: 5.5,-32.5 - parent: 0 - type: Transform -- uid: 6219 - type: CableApcExtension - components: - - pos: 4.5,-32.5 - parent: 0 - type: Transform -- uid: 6220 - type: CableApcExtension - components: - - pos: 3.5,-32.5 - parent: 0 - type: Transform -- uid: 6221 - type: CableApcExtension - components: - - pos: 8.5,-32.5 - parent: 0 - type: Transform -- uid: 6222 - type: CableApcExtension - components: - - pos: 9.5,-32.5 - parent: 0 - type: Transform -- uid: 6223 - type: CableApcExtension - components: - - pos: 10.5,-32.5 - parent: 0 - type: Transform -- uid: 6224 - type: CableApcExtension - components: - - pos: 11.5,-32.5 - parent: 0 - type: Transform -- uid: 6225 - type: CableApcExtension - components: - - pos: 12.5,-32.5 - parent: 0 - type: Transform -- uid: 6226 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6227 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6228 - type: MopBucket - components: - - pos: -17.484179,-31.509739 - parent: 0 - type: Transform -- uid: 6229 - type: ClosetL3JanitorFilled - components: - - pos: -16.5,-31.5 - parent: 0 - type: Transform -- uid: 6230 - type: MopItem - components: - - pos: -17.485325,-31.461966 - parent: 0 - type: Transform -- uid: 6231 - type: SignSpace - components: - - pos: -32.5,-0.5 - parent: 0 - type: Transform -- uid: 6232 - type: SignSpace - components: - - pos: -21.5,-25.5 - parent: 0 - type: Transform -- uid: 6233 - type: WallRiveted - components: - - pos: -6.5,-35.5 - parent: 0 - type: Transform -- uid: 6234 - type: WallRiveted - components: - - pos: -6.5,-36.5 - parent: 0 - type: Transform -- uid: 6235 - type: WallRiveted - components: - - pos: -6.5,-37.5 - parent: 0 - type: Transform -- uid: 6236 - type: WallRiveted - components: - - pos: -6.5,-38.5 - parent: 0 - type: Transform -- uid: 6237 - type: WallRiveted - components: - - pos: -5.5,-38.5 - parent: 0 - type: Transform -- uid: 6238 - type: WallRiveted - components: - - pos: -4.5,-38.5 - parent: 0 - type: Transform -- uid: 6239 - type: FirelockGlass - components: - - pos: 3.5,-34.5 - parent: 0 - type: Transform -- uid: 6240 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 16.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6241 - type: WallRiveted - components: - - pos: 1.5,-38.5 - parent: 0 - type: Transform -- uid: 6242 - type: WallRiveted - components: - - pos: 2.5,-38.5 - parent: 0 - type: Transform -- uid: 6243 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 15.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6244 - type: FirelockGlass - components: - - pos: 2.5,-34.5 - parent: 0 - type: Transform -- uid: 6245 - type: FirelockGlass - components: - - pos: 4.5,-34.5 - parent: 0 - type: Transform -- uid: 6246 - type: WallRiveted - components: - - pos: 3.5,-38.5 - parent: 0 - type: Transform -- uid: 6247 - type: WallRiveted - components: - - pos: 4.5,-38.5 - parent: 0 - type: Transform -- uid: 6248 - type: WallRiveted - components: - - pos: 5.5,-38.5 - parent: 0 - type: Transform -- uid: 6249 - type: WallRiveted - components: - - pos: 5.5,-37.5 - parent: 0 - type: Transform -- uid: 6250 - type: WallRiveted - components: - - pos: 5.5,-36.5 - parent: 0 - type: Transform -- uid: 6251 - type: WallRiveted - components: - - pos: 5.5,-35.5 - parent: 0 - type: Transform -- uid: 6252 - type: ClosetEmergencyFilledRandom - components: - - pos: -14.5,-16.5 - parent: 0 - type: Transform -- uid: 6253 - type: CableHV - components: - - pos: -3.5,-33.5 - parent: 0 - type: Transform -- uid: 6254 - type: CableHV - components: - - pos: -3.5,-34.5 - parent: 0 - type: Transform -- uid: 6255 - type: CableHV - components: - - pos: -3.5,-35.5 - parent: 0 - type: Transform -- uid: 6256 - type: CableHV - components: - - pos: -2.5,-35.5 - parent: 0 - type: Transform -- uid: 6257 - type: CableHV - components: - - pos: -1.5,-35.5 - parent: 0 - type: Transform -- uid: 6258 - type: CableHV - components: - - pos: -0.5,-35.5 - parent: 0 - type: Transform -- uid: 6259 - type: CableHV - components: - - pos: 0.5,-35.5 - parent: 0 - type: Transform -- uid: 6260 - type: CableHV - components: - - pos: 1.5,-35.5 - parent: 0 - type: Transform -- uid: 6261 - type: CableHV - components: - - pos: 2.5,-35.5 - parent: 0 - type: Transform -- uid: 6262 - type: CableHV - components: - - pos: 2.5,-34.5 - parent: 0 - type: Transform -- uid: 6263 - type: CableHV - components: - - pos: 2.5,-33.5 - parent: 0 - type: Transform -- uid: 6264 - type: CableHV - components: - - pos: -0.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6265 - type: CableHV - components: - - pos: 0.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6266 - type: CableHV - components: - - pos: -1.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6267 - type: FirelockGlass - components: - - pos: -5.5,-34.5 - parent: 0 - type: Transform -- uid: 6268 - type: FirelockGlass - components: - - pos: -4.5,-34.5 - parent: 0 - type: Transform -- uid: 6269 - type: FirelockGlass - components: - - pos: -3.5,-34.5 - parent: 0 - type: Transform -- uid: 6270 - type: Table - components: - - pos: 14.5,-27.5 - parent: 0 - type: Transform -- uid: 6271 - type: WallRiveted - components: - - pos: -2.5,-40.5 - parent: 0 - type: Transform -- uid: 6272 - type: WallRiveted - components: - - pos: 2.5,-39.5 - parent: 0 - type: Transform -- uid: 6273 - type: WallRiveted - components: - - pos: 2.5,-40.5 - parent: 0 - type: Transform -- uid: 6274 - type: WallRiveted - components: - - pos: 1.5,-40.5 - parent: 0 - type: Transform -- uid: 6275 - type: ReinforcedWindow - components: - - pos: -0.5,-38.5 - parent: 0 - type: Transform -- uid: 6276 - type: HighSecCommandLocked - components: - - pos: -1.5,-38.5 - parent: 0 - type: Transform -- uid: 6277 - type: APCBasic - components: - - pos: -2.5,-34.5 - parent: 0 - type: Transform -- uid: 6278 - type: HighSecCommandLocked - components: - - pos: -1.5,-40.5 - parent: 0 - type: Transform -- uid: 6279 - type: HighSecCommandLocked - components: - - pos: 0.5,-38.5 - parent: 0 - type: Transform -- uid: 6280 - type: Grille - components: - - pos: -0.5,-38.5 - parent: 0 - type: Transform -- uid: 6281 - type: Grille - components: - - pos: -0.5,-40.5 - parent: 0 - type: Transform -- uid: 6282 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -1.5,-46.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 6283 - type: AirlockExternalGlassShuttleLocked - components: - - pos: 0.5,-46.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 6284 - type: AirlockExternalGlass - components: - - pos: -1.5,-44.5 - parent: 0 - type: Transform -- uid: 6285 - type: AirlockExternalGlass - components: - - pos: 0.5,-44.5 - parent: 0 - type: Transform -- uid: 6286 - type: AtmosDeviceFanTiny - components: - - pos: -1.5,-46.5 - parent: 0 - type: Transform -- uid: 6287 - type: AtmosDeviceFanTiny - components: - - pos: 0.5,-46.5 - parent: 0 - type: Transform -- uid: 6288 - type: ReinforcedWindow - components: - - pos: -0.5,-46.5 - parent: 0 - type: Transform -- uid: 6289 - type: ReinforcedWindow - components: - - pos: -0.5,-45.5 - parent: 0 - type: Transform -- uid: 6290 - type: ReinforcedWindow - components: - - pos: -0.5,-44.5 - parent: 0 - type: Transform -- uid: 6291 - type: ReinforcedWindow - components: - - pos: -2.5,-46.5 - parent: 0 - type: Transform -- uid: 6292 - type: WallRiveted - components: - - pos: -3.5,-44.5 - parent: 0 - type: Transform -- uid: 6293 - type: WallRiveted - components: - - pos: -3.5,-45.5 - parent: 0 - type: Transform -- uid: 6294 - type: WallRiveted - components: - - pos: -3.5,-46.5 - parent: 0 - type: Transform -- uid: 6295 - type: ReinforcedWindow - components: - - pos: -2.5,-44.5 - parent: 0 - type: Transform -- uid: 6296 - type: ReinforcedWindow - components: - - pos: 1.5,-46.5 - parent: 0 - type: Transform -- uid: 6297 - type: WallRiveted - components: - - pos: 2.5,-44.5 - parent: 0 - type: Transform -- uid: 6298 - type: WallRiveted - components: - - pos: 2.5,-45.5 - parent: 0 - type: Transform -- uid: 6299 - type: WallRiveted - components: - - pos: 2.5,-46.5 - parent: 0 - type: Transform -- uid: 6300 - type: ReinforcedWindow - components: - - pos: 1.5,-44.5 - parent: 0 - type: Transform -- uid: 6301 - type: Grille - components: - - pos: -2.5,-46.5 - parent: 0 - type: Transform -- uid: 6302 - type: Grille - components: - - pos: -2.5,-44.5 - parent: 0 - type: Transform -- uid: 6303 - type: Grille - components: - - pos: -0.5,-46.5 - parent: 0 - type: Transform -- uid: 6304 - type: Grille - components: - - pos: -0.5,-45.5 - parent: 0 - type: Transform -- uid: 6305 - type: Grille - components: - - pos: -0.5,-44.5 - parent: 0 - type: Transform -- uid: 6306 - type: Grille - components: - - pos: 1.5,-46.5 - parent: 0 - type: Transform -- uid: 6307 - type: Grille - components: - - pos: 1.5,-44.5 - parent: 0 - type: Transform -- uid: 6308 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6309 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -5.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6310 - type: GasPipeFourway - components: - - pos: -0.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6311 - type: Grille - components: - - pos: 22.5,-30.5 - parent: 0 - type: Transform -- uid: 6312 - type: Grille - components: - - pos: 22.5,-29.5 - parent: 0 - type: Transform -- uid: 6313 - type: HighSecCommandLocked - components: - - pos: 0.5,-40.5 - parent: 0 - type: Transform -- uid: 6314 - type: Grille - components: - - pos: 22.5,-31.5 - parent: 0 - type: Transform -- uid: 6315 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-36.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6316 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6317 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6318 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6319 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6320 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6321 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6322 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6323 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6324 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6325 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6326 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6327 - type: GasPipeStraight - components: - - pos: 4.5,-36.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6328 - type: GasPipeStraight - components: - - pos: 4.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6329 - type: GasPipeStraight - components: - - pos: 4.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6330 - type: GasPipeStraight - components: - - pos: 4.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6331 - type: GasPipeStraight - components: - - pos: -0.5,-38.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6332 - type: GasPipeStraight - components: - - pos: -0.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6333 - type: GasPipeStraight - components: - - pos: -0.5,-40.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6334 - type: GasVentPump - components: - - pos: -0.5,-36.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6335 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -0.5,-41.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6336 - type: CableMV - components: - - pos: -8.5,-31.5 - parent: 0 - type: Transform -- uid: 6337 - type: CableMV - components: - - pos: -7.5,-31.5 - parent: 0 - type: Transform -- uid: 6338 - type: CableMV - components: - - pos: -6.5,-31.5 - parent: 0 - type: Transform -- uid: 6339 - type: CableMV - components: - - pos: -5.5,-31.5 - parent: 0 - type: Transform -- uid: 6340 - type: CableMV - components: - - pos: -4.5,-31.5 - parent: 0 - type: Transform -- uid: 6341 - type: CableMV - components: - - pos: -3.5,-31.5 - parent: 0 - type: Transform -- uid: 6342 - type: CableMV - components: - - pos: -3.5,-32.5 - parent: 0 - type: Transform -- uid: 6343 - type: CableMV - components: - - pos: -3.5,-33.5 - parent: 0 - type: Transform -- uid: 6344 - type: CableMV - components: - - pos: -3.5,-34.5 - parent: 0 - type: Transform -- uid: 6345 - type: CableMV - components: - - pos: -2.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6346 - type: CableApcExtension - components: - - pos: -2.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6347 - type: CableApcExtension - components: - - pos: -2.5,-35.5 - parent: 0 - type: Transform -- uid: 6348 - type: CableApcExtension - components: - - pos: -2.5,-36.5 - parent: 0 - type: Transform -- uid: 6349 - type: CableApcExtension - components: - - pos: -2.5,-37.5 - parent: 0 - type: Transform -- uid: 6350 - type: CableApcExtension - components: - - pos: -1.5,-36.5 - parent: 0 - type: Transform -- uid: 6351 - type: CableApcExtension - components: - - pos: -0.5,-36.5 - parent: 0 - type: Transform -- uid: 6352 - type: CableApcExtension - components: - - pos: 0.5,-36.5 - parent: 0 - type: Transform -- uid: 6353 - type: CableApcExtension - components: - - pos: 1.5,-36.5 - parent: 0 - type: Transform -- uid: 6354 - type: CableApcExtension - components: - - pos: 2.5,-36.5 - parent: 0 - type: Transform -- uid: 6355 - type: CableApcExtension - components: - - pos: 3.5,-36.5 - parent: 0 - type: Transform -- uid: 6356 - type: CableApcExtension - components: - - pos: -3.5,-36.5 - parent: 0 - type: Transform -- uid: 6357 - type: CableApcExtension - components: - - pos: -4.5,-36.5 - parent: 0 - type: Transform -- uid: 6358 - type: CableApcExtension - components: - - pos: -5.5,-36.5 - parent: 0 - type: Transform -- uid: 6359 - type: CableApcExtension - components: - - pos: -0.5,-37.5 - parent: 0 - type: Transform -- uid: 6360 - type: CableApcExtension - components: - - pos: -0.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6361 - type: WallRiveted - components: - - pos: -4.5,-44.5 - parent: 0 - type: Transform -- uid: 6362 - type: WallRiveted - components: - - pos: -5.5,-44.5 - parent: 0 - type: Transform -- uid: 6363 - type: WallRiveted - components: - - pos: -6.5,-44.5 - parent: 0 - type: Transform -- uid: 6364 - type: WallRiveted - components: - - pos: -7.5,-44.5 - parent: 0 - type: Transform -- uid: 6365 - type: WallRiveted - components: - - pos: -7.5,-43.5 - parent: 0 - type: Transform -- uid: 6366 - type: WallRiveted - components: - - pos: -7.5,-42.5 - parent: 0 - type: Transform -- uid: 6367 - type: WallRiveted - components: - - pos: -7.5,-41.5 - parent: 0 - type: Transform -- uid: 6368 - type: WallRiveted - components: - - pos: -7.5,-40.5 - parent: 0 - type: Transform -- uid: 6369 - type: WallRiveted - components: - - pos: -7.5,-39.5 - parent: 0 - type: Transform -- uid: 6370 - type: WallRiveted - components: - - pos: -7.5,-38.5 - parent: 0 - type: Transform -- uid: 6371 - type: WallRiveted - components: - - pos: -7.5,-37.5 - parent: 0 - type: Transform -- uid: 6372 - type: WallRiveted - components: - - pos: -7.5,-36.5 - parent: 0 - type: Transform -- uid: 6373 - type: WallRiveted - components: - - pos: -7.5,-35.5 - parent: 0 - type: Transform -- uid: 6374 - type: WallRiveted - components: - - pos: 6.5,-35.5 - parent: 0 - type: Transform -- uid: 6375 - type: WallRiveted - components: - - pos: 6.5,-36.5 - parent: 0 - type: Transform -- uid: 6376 - type: WallRiveted - components: - - pos: 6.5,-37.5 - parent: 0 - type: Transform -- uid: 6377 - type: WallRiveted - components: - - pos: 6.5,-38.5 - parent: 0 - type: Transform -- uid: 6378 - type: WallRiveted - components: - - pos: 6.5,-39.5 - parent: 0 - type: Transform -- uid: 6379 - type: WallRiveted - components: - - pos: 6.5,-40.5 - parent: 0 - type: Transform -- uid: 6380 - type: WallRiveted - components: - - pos: 6.5,-41.5 - parent: 0 - type: Transform -- uid: 6381 - type: WallRiveted - components: - - pos: 6.5,-42.5 - parent: 0 - type: Transform -- uid: 6382 - type: WallRiveted - components: - - pos: 6.5,-43.5 - parent: 0 - type: Transform -- uid: 6383 - type: WallRiveted - components: - - pos: 6.5,-44.5 - parent: 0 - type: Transform -- uid: 6384 - type: WallRiveted - components: - - pos: 5.5,-44.5 - parent: 0 - type: Transform -- uid: 6385 - type: WallRiveted - components: - - pos: 4.5,-44.5 - parent: 0 - type: Transform -- uid: 6386 - type: WallRiveted - components: - - pos: 3.5,-44.5 - parent: 0 - type: Transform -- uid: 6387 - type: WallRiveted - components: - - pos: 2.5,-43.5 - parent: 0 - type: Transform -- uid: 6388 - type: WallRiveted - components: - - pos: 2.5,-41.5 - parent: 0 - type: Transform -- uid: 6389 - type: WallRiveted - components: - - pos: -3.5,-43.5 - parent: 0 - type: Transform -- uid: 6390 - type: WallRiveted - components: - - pos: -3.5,-41.5 - parent: 0 - type: Transform -- uid: 6391 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-43.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6392 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6393 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-43.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6394 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-41.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6395 - type: AirlockCommandGlassLocked - components: - - pos: -3.5,-42.5 - parent: 0 - type: Transform -- uid: 6396 - type: AirlockCommandGlassLocked - components: - - pos: 2.5,-42.5 - parent: 0 - type: Transform -- uid: 6397 - type: APCBasic - components: - - pos: -2.5,-40.5 - parent: 0 - type: Transform -- uid: 6398 - type: CableMV - components: - - pos: -2.5,-35.5 - parent: 0 - type: Transform -- uid: 6399 - type: CableMV - components: - - pos: -2.5,-36.5 - parent: 0 - type: Transform -- uid: 6400 - type: CableMV - components: - - pos: -2.5,-36.5 - parent: 0 - type: Transform -- uid: 6401 - type: CableMV - components: - - pos: -1.5,-37.5 - parent: 0 - type: Transform -- uid: 6402 - type: CableMV - components: - - pos: -2.5,-37.5 - parent: 0 - type: Transform -- uid: 6403 - type: CableMV - components: - - pos: -1.5,-38.5 - parent: 0 - type: Transform -- uid: 6404 - type: CableMV - components: - - pos: -1.5,-39.5 - parent: 0 - type: Transform -- uid: 6405 - type: CableMV - components: - - pos: -1.5,-40.5 - parent: 0 - type: Transform -- uid: 6406 - type: CableMV - components: - - pos: -1.5,-41.5 - parent: 0 - type: Transform -- uid: 6407 - type: CableMV - components: - - pos: -2.5,-41.5 - parent: 0 - type: Transform -- uid: 6408 - type: CableMV - components: - - pos: -2.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6409 - type: CableApcExtension - components: - - pos: -2.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6410 - type: CableApcExtension - components: - - pos: -2.5,-41.5 - parent: 0 - type: Transform -- uid: 6411 - type: CableApcExtension - components: - - pos: -2.5,-42.5 - parent: 0 - type: Transform -- uid: 6412 - type: CableApcExtension - components: - - pos: -2.5,-43.5 - parent: 0 - type: Transform -- uid: 6413 - type: CableApcExtension - components: - - pos: -1.5,-42.5 - parent: 0 - type: Transform -- uid: 6414 - type: CableApcExtension - components: - - pos: -0.5,-42.5 - parent: 0 - type: Transform -- uid: 6415 - type: CableApcExtension - components: - - pos: 0.5,-42.5 - parent: 0 - type: Transform -- uid: 6416 - type: CableApcExtension - components: - - pos: 1.5,-42.5 - parent: 0 - type: Transform -- uid: 6417 - type: CableApcExtension - components: - - pos: 2.5,-42.5 - parent: 0 - type: Transform -- uid: 6418 - type: CableApcExtension - components: - - pos: 3.5,-42.5 - parent: 0 - type: Transform -- uid: 6419 - type: CableApcExtension - components: - - pos: 4.5,-42.5 - parent: 0 - type: Transform -- uid: 6420 - type: CableApcExtension - components: - - pos: 4.5,-41.5 - parent: 0 - type: Transform -- uid: 6421 - type: CableApcExtension - components: - - pos: 4.5,-40.5 - parent: 0 - type: Transform -- uid: 6422 - type: CableApcExtension - components: - - pos: -3.5,-42.5 - parent: 0 - type: Transform -- uid: 6423 - type: CableApcExtension - components: - - pos: -4.5,-42.5 - parent: 0 - type: Transform -- uid: 6424 - type: CableApcExtension - components: - - pos: -5.5,-42.5 - parent: 0 - type: Transform -- uid: 6425 - type: CableApcExtension - components: - - pos: -5.5,-41.5 - parent: 0 - type: Transform -- uid: 6426 - type: CableApcExtension - components: - - pos: -5.5,-40.5 - parent: 0 - type: Transform -- uid: 6427 - type: CableApcExtension - components: - - pos: -0.5,-41.5 - parent: 0 - type: Transform -- uid: 6428 - type: CableApcExtension - components: - - pos: -0.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6429 - type: CableApcExtension - components: - - pos: -0.5,-43.5 - parent: 0 - type: Transform -- uid: 6430 - type: CableApcExtension - components: - - pos: -0.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6431 - type: CableApcExtension - components: - - pos: -0.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6432 - type: CableApcExtension - components: - - pos: -0.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6433 - type: CableApcExtension - components: - - pos: -2.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6434 - type: CableApcExtension - components: - - pos: -2.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6435 - type: CableApcExtension - components: - - pos: -2.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6436 - type: CableApcExtension - components: - - pos: 1.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6437 - type: CableApcExtension - components: - - pos: 1.5,-43.5 - parent: 0 - type: Transform -- uid: 6438 - type: CableApcExtension - components: - - pos: 1.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6439 - type: CableApcExtension - components: - - pos: 1.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6440 - type: Catwalk - components: - - pos: -1.5,-45.5 - parent: 0 - type: Transform -- uid: 6441 - type: Catwalk - components: - - pos: 0.5,-45.5 - parent: 0 - type: Transform -- uid: 6442 - type: SignalButton - components: - - pos: 1.5,-40.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6521 - - port: Toggle - uid: 6525 - - port: Toggle - uid: 6524 - - port: Toggle - uid: 6523 - - port: Toggle - uid: 6522 - type: SignalTransmitter -- uid: 6443 - type: SignSecureMed - components: - - pos: -3.5,-46.5 - parent: 0 - type: Transform -- uid: 6444 - type: SignSecureMed - components: - - pos: 2.5,-46.5 - parent: 0 - type: Transform -- uid: 6445 - type: SignSecureMed - components: - - pos: -2.5,-38.5 - parent: 0 - type: Transform -- uid: 6446 - type: PosterLegitNanotrasenLogo - components: - - pos: 1.5,-38.5 - parent: 0 - type: Transform -- uid: 6447 - type: PosterLegitNanotrasenLogo - components: - - pos: -3.5,-40.5 - parent: 0 - type: Transform -- uid: 6448 - type: PosterLegitNanotrasenLogo - components: - - pos: 2.5,-40.5 - parent: 0 - type: Transform -- uid: 6449 - type: Rack - components: - - pos: -6.5,-40.5 - parent: 0 - type: Transform -- uid: 6450 - type: Rack - components: - - pos: -6.5,-42.5 - parent: 0 - type: Transform -- uid: 6451 - type: Rack - components: - - pos: 5.5,-42.5 - parent: 0 - type: Transform -- uid: 6452 - type: Rack - components: - - pos: 5.5,-40.5 - parent: 0 - type: Transform -- uid: 6453 - type: TableReinforced - components: - - pos: -6.5,-43.5 - parent: 0 - type: Transform -- uid: 6454 - type: TableReinforced - components: - - pos: -6.5,-41.5 - parent: 0 - type: Transform -- uid: 6455 - type: TableReinforced - components: - - pos: -6.5,-39.5 - parent: 0 - type: Transform -- uid: 6456 - type: TableReinforced - components: - - pos: -5.5,-39.5 - parent: 0 - type: Transform -- uid: 6457 - type: TableReinforced - components: - - pos: -4.5,-39.5 - parent: 0 - type: Transform -- uid: 6458 - type: TableReinforced - components: - - pos: 4.5,-39.5 - parent: 0 - type: Transform -- uid: 6459 - type: TableReinforced - components: - - pos: 5.5,-39.5 - parent: 0 - type: Transform -- uid: 6460 - type: TableReinforced - components: - - pos: 3.5,-39.5 - parent: 0 - type: Transform -- uid: 6461 - type: TableReinforced - components: - - pos: 5.5,-41.5 - parent: 0 - type: Transform -- uid: 6462 - type: TableReinforced - components: - - pos: 5.5,-43.5 - parent: 0 - type: Transform -- uid: 6463 - type: Poweredlight - components: - - pos: -5.5,-39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6464 - type: Poweredlight - components: - - pos: 4.5,-39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6465 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6466 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-43.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6467 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6468 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6469 - type: Poweredlight - components: - - pos: -11.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6470 - type: Poweredlight - components: - - pos: 10.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6471 - type: Poweredlight - components: - - pos: 3.5,-31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6472 - type: Poweredlight - components: - - pos: -4.5,-31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6473 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6474 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6475 - type: ClothingBackpackERTJanitor - components: - - pos: -6.572158,-40.432423 - parent: 0 - type: Transform -- uid: 6476 - type: ClothingOuterHardsuitERTJanitor - components: - - pos: -6.322158,-40.432423 - parent: 0 - type: Transform -- uid: 6477 - type: ClothingBackpackERTMedical - components: - - pos: -6.603408,-42.385548 - parent: 0 - type: Transform -- uid: 6478 - type: ClothingOuterHardsuitERTMedical - components: - - pos: -6.306533,-42.385548 - parent: 0 - type: Transform -- uid: 6479 - type: ClothingOuterHardsuitERTSecurity - components: - - pos: 5.655767,-42.432423 - parent: 0 - type: Transform -- uid: 6480 - type: ClothingBackpackERTSecurity - components: - - pos: 5.390142,-42.369923 - parent: 0 - type: Transform -- uid: 6481 - type: ClothingOuterHardsuitERTEngineer - components: - - pos: 5.687017,-40.432423 - parent: 0 - type: Transform -- uid: 6482 - type: ClothingBackpackERTEngineer - components: - - pos: 5.405767,-40.385548 - parent: 0 - type: Transform -- uid: 6483 - type: ClothingHandsGlovesNitrile - components: - - pos: -6.499597,-42.244923 - parent: 0 - type: Transform -- uid: 6484 - type: ClothingHandsGlovesColorOrange - components: - - pos: -6.483972,-40.260548 - parent: 0 - type: Transform -- uid: 6485 - type: ClothingHandsGlovesCombat - components: - - pos: 5.5331564,-42.244923 - parent: 0 - type: Transform -- uid: 6486 - type: ClothingHandsGlovesColorYellow - components: - - pos: 5.5487814,-40.276173 - parent: 0 - type: Transform -- uid: 6487 - type: ClothingShoesBootsMag - components: - - pos: 5.422375,-40.776173 - parent: 0 - type: Transform -- uid: 6488 - type: ClothingShoesBootsMag - components: - - pos: 5.391125,-42.760548 - parent: 0 - type: Transform -- uid: 6489 - type: ClothingShoesGaloshes - components: - - pos: -6.647761,-40.740555 - parent: 0 - type: Transform -- uid: 6490 - type: ClothingShoesBootsMag - components: - - pos: -6.663386,-42.678055 - parent: 0 - type: Transform -- uid: 6491 - type: ClothingUniformJumpsuitJanitor - components: - - pos: -6.4606533,-40.401173 - parent: 0 - type: Transform -- uid: 6492 - type: ClothingUniformJumpsuitParamedic - components: - - pos: -6.500409,-42.323048 - parent: 0 - type: Transform -- uid: 6493 - type: ClothingUniformJumpsuitSec - components: - - pos: 5.5288286,-42.276173 - parent: 0 - type: Transform -- uid: 6494 - type: ClothingUniformJumpsuitEngineeringHazard - components: - - pos: 5.560579,-40.369923 - parent: 0 - type: Transform -- uid: 6495 - type: JanitorialTrolley - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-40.5 - parent: 0 - type: Transform -- uid: 6496 - type: CheapRollerBed - components: - - pos: -4.516034,-43.401173 - parent: 0 - type: Transform -- uid: 6497 - type: HandheldHealthAnalyzer - components: - - pos: -6.516034,-43.276962 - parent: 0 - type: Transform -- uid: 6498 - type: ClothingEyesGlassesMeson - components: - - pos: 5.4943223,-41.167587 - parent: 0 - type: Transform -- uid: 6499 - type: ClothingEyesGlassesSecurity - components: - - pos: 5.4786973,-43.183212 - parent: 0 - type: Transform -- uid: 6500 - type: ClothingMaskGasSecurity - components: - - pos: 5.5255723,-43.620712 - parent: 0 - type: Transform -- uid: 6501 - type: ClothingMaskGasAtmos - components: - - pos: 5.5099473,-41.480087 - parent: 0 - type: Transform -- uid: 6502 - type: ClothingMaskBreathMedical - components: - - pos: -6.496473,-43.620712 - parent: 0 - type: Transform -- uid: 6503 - type: ClothingMaskGas - components: - - pos: -6.480848,-41.464462 - parent: 0 - type: Transform -- uid: 6504 - type: TrashBag - components: - - pos: -4.433973,-39.464462 - parent: 0 - type: Transform -- uid: 6505 - type: MopItem - components: - - pos: -4.496473,-39.433212 - parent: 0 - type: Transform -- uid: 6506 - type: MedkitCombatFilled - components: - - pos: -5.324598,-39.292587 - parent: 0 - type: Transform -- uid: 6507 - type: MedkitFilled - components: - - pos: -5.527723,-39.558212 - parent: 0 - type: Transform -- uid: 6508 - type: SheetSteel - components: - - pos: 3.4901893,-39.558212 - parent: 0 - type: Transform -- uid: 6509 - type: SheetSteel - components: - - pos: 3.5839393,-39.448837 - parent: 0 - type: Transform -- uid: 6510 - type: SheetPlasteel - components: - - pos: 4.2860384,-39.471622 - parent: 0 - type: Transform -- uid: 6511 - type: SheetPlasteel - components: - - pos: 4.3329134,-39.549747 - parent: 0 - type: Transform -- uid: 6512 - type: SheetRGlass - components: - - pos: 3.8797882,-39.455997 - parent: 0 - type: Transform -- uid: 6513 - type: SheetRGlass - components: - - pos: 3.9579132,-39.565372 - parent: 0 - type: Transform -- uid: 6514 - type: RCD - components: - - pos: 5.473581,-41.167587 - parent: 0 - type: Transform -- uid: 6515 - type: RCDAmmo - components: - - pos: 5.2691145,-41.308212 - parent: 0 - type: Transform -- uid: 6516 - type: RCDAmmo - components: - - pos: 5.8159895,-41.323837 - parent: 0 - type: Transform -- uid: 6517 - type: ClothingBeltJanitorFilled - components: - - pos: -6.514548,-41.214462 - parent: 0 - type: Transform -- uid: 6518 - type: ClothingBeltChiefEngineerFilled - components: - - pos: 5.5354643,-41.589462 - parent: 0 - type: Transform -- uid: 6519 - type: ClothingBeltSecurityFilled - components: - - pos: 5.5468187,-43.386337 - parent: 0 - type: Transform -- uid: 6520 - type: ClothingBeltMedicalFilled - components: - - pos: -6.5086355,-43.355087 - parent: 0 - type: Transform -- uid: 6521 - type: BlastDoorOpen - components: - - pos: -2.5,-39.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6442 - type: SignalReceiver -- uid: 6522 - type: BlastDoorOpen - components: - - pos: -1.5,-39.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6442 - type: SignalReceiver -- uid: 6523 - type: BlastDoorOpen - components: - - pos: -0.5,-39.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6442 - type: SignalReceiver -- uid: 6524 - type: BlastDoorOpen - components: - - pos: 0.5,-39.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6442 - type: SignalReceiver -- uid: 6525 - type: BlastDoorOpen - components: - - pos: 1.5,-39.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6442 - type: SignalReceiver -- uid: 6526 - type: KvassTankFull - components: - - pos: -7.5,17.5 - parent: 0 - type: Transform -- uid: 6527 - type: CrateHydroponicsSeedsExotic - components: - - pos: -5.5,17.5 - parent: 0 - type: Transform -- uid: 6528 - type: CrateFoodPizza - components: - - pos: -8.5,22.5 - parent: 0 - type: Transform -- uid: 6529 - type: CrateMousetrapBoxes - components: - - pos: -7.5,26.5 - parent: 0 - type: Transform -- uid: 6530 - type: CrateFunPlushie - components: - - pos: -8.5,28.5 - parent: 0 - type: Transform -- uid: 6531 - type: CrateArmorySMG - components: - - pos: -6.5,26.5 - parent: 0 - type: Transform -- uid: 6532 - type: CrateArmoryShotgun - components: - - pos: -9.5,24.5 - parent: 0 - type: Transform -- uid: 6533 - type: CrateArmoryLaser - components: - - pos: -7.5,22.5 - parent: 0 - type: Transform -- uid: 6534 - type: WallRiveted - components: - - pos: 7.5,-35.5 - parent: 0 - type: Transform -- uid: 6535 - type: WallRiveted - components: - - pos: 8.5,-35.5 - parent: 0 - type: Transform -- uid: 6536 - type: WallRiveted - components: - - pos: 9.5,-35.5 - parent: 0 - type: Transform -- uid: 6537 - type: WallRiveted - components: - - pos: 10.5,-35.5 - parent: 0 - type: Transform -- uid: 6538 - type: WallRiveted - components: - - pos: 11.5,-35.5 - parent: 0 - type: Transform -- uid: 6539 - type: WallRiveted - components: - - pos: 12.5,-35.5 - parent: 0 - type: Transform -- uid: 6540 - type: WallRiveted - components: - - pos: 13.5,-35.5 - parent: 0 - type: Transform -- uid: 6541 - type: WallRiveted - components: - - pos: 14.5,-35.5 - parent: 0 - type: Transform -- uid: 6542 - type: WallRiveted - components: - - pos: 15.5,-35.5 - parent: 0 - type: Transform -- uid: 6543 - type: WallRiveted - components: - - pos: 15.5,-34.5 - parent: 0 - type: Transform -- uid: 6544 - type: WallRiveted - components: - - pos: 15.5,-33.5 - parent: 0 - type: Transform -- uid: 6545 - type: WallRiveted - components: - - pos: 16.5,-33.5 - parent: 0 - type: Transform -- uid: 6546 - type: WallRiveted - components: - - pos: 17.5,-33.5 - parent: 0 - type: Transform -- uid: 6547 - type: trayScanner - components: - - pos: 4.8927507,-39.44935 - parent: 0 - type: Transform -- uid: 6548 - type: WeaponDisabler - components: - - pos: 5.3912725,-39.402473 - parent: 0 - type: Transform -- uid: 6549 - type: Hypospray - components: - - pos: -6.5056453,-39.44935 - parent: 0 - type: Transform -- uid: 6550 - type: EpinephrineChemistryBottle - components: - - pos: -6.2556453,-39.464973 - parent: 0 - type: Transform -- uid: 6551 - type: EpinephrineChemistryBottle - components: - - pos: -6.2087703,-39.339973 - parent: 0 - type: Transform -- uid: 6552 - type: EpinephrineChemistryBottle - components: - - pos: -6.1462703,-39.246223 - parent: 0 - type: Transform -- uid: 6553 - type: SoapOmega - components: - - pos: -4.4900203,-39.32435 - parent: 0 - type: Transform -- uid: 6554 - type: MedkitOxygenFilled - components: - - pos: -5.4431453,-39.4181 - parent: 0 - type: Transform -- uid: 6555 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-45.5 - parent: 0 - type: Transform -- uid: 6556 - type: VendingMachineTankDispenserEngineering - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,-45.5 - parent: 0 - type: Transform -- uid: 6557 - type: PosterLegitNanotrasenLogo - components: - - pos: -17.5,-23.5 - parent: 0 - type: Transform -- uid: 6558 - type: PosterLegitNanotrasenLogo - components: - - pos: -15.5,-27.5 - parent: 0 - type: Transform -- uid: 6559 - type: PosterLegitNanotrasenLogo - components: - - pos: 1.5,-30.5 - parent: 0 - type: Transform -- uid: 6560 - type: PosterLegitNanotrasenLogo - components: - - pos: -2.5,-30.5 - parent: 0 - type: Transform -- uid: 6561 - type: PottedPlant21 - components: - - pos: -18.5,-27.5 - parent: 0 - type: Transform -- uid: 6562 - type: PottedPlant21 - components: - - pos: -3.5,-31.5 - parent: 0 - type: Transform -- uid: 6563 - type: PottedPlant21 - components: - - pos: 2.5,-31.5 - parent: 0 - type: Transform -- uid: 6564 - type: PottedPlant22 - components: - - pos: -14.5,-33.5 - parent: 0 - type: Transform -- uid: 6565 - type: PottedPlant22 - components: - - pos: 13.5,-33.5 - parent: 0 - type: Transform -- uid: 6566 - type: PottedPlantBioluminscent - components: - - pos: -0.5,-41.5 - parent: 0 - type: Transform -- uid: 6567 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6568 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6569 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6570 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6571 - type: Table - components: - - pos: -12.5,-33.5 - parent: 0 - type: Transform -- uid: 6572 - type: Table - components: - - pos: -8.5,-33.5 - parent: 0 - type: Transform -- uid: 6573 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,-33.5 - parent: 0 - type: Transform -- uid: 6574 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,-37.5 - parent: 0 - type: Transform -- uid: 6575 - type: Grille - components: - - pos: -5.5,-30.5 - parent: 0 - type: Transform -- uid: 6576 - type: Grille - components: - - pos: -7.5,-30.5 - parent: 0 - type: Transform -- uid: 6577 - type: AirlockGlass - components: - - pos: -6.5,-30.5 - parent: 0 - type: Transform -- uid: 6578 - type: AirlockGlass - components: - - pos: 5.5,-30.5 - parent: 0 - type: Transform -- uid: 6579 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6580 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6581 - type: Table - components: - - pos: -10.5,-30.5 - parent: 0 - type: Transform -- uid: 6582 - type: Table - components: - - pos: 9.5,-30.5 - parent: 0 - type: Transform -- uid: 6583 - type: Table - components: - - pos: 11.5,-33.5 - parent: 0 - type: Transform -- uid: 6584 - type: Table - components: - - pos: 7.5,-33.5 - parent: 0 - type: Transform -- uid: 6585 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6586 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6587 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6588 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6589 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6590 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6591 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-33.5 - parent: 0 - type: Transform -- uid: 6592 - type: AirlockGlass - components: - - pos: -0.5,-20.5 - parent: 0 - type: Transform -- uid: 6593 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-34.5 - parent: 0 - type: Transform -- uid: 6600 - type: LockerMedicineFilled - components: - - pos: 3.5,-9.5 - parent: 0 - type: Transform -- uid: 6601 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-12.5 - parent: 0 - type: Transform -- uid: 6602 - type: SignalButton - components: - - pos: -1.5,0.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1437 - - port: Toggle - uid: 1438 - - port: Toggle - uid: 1439 - - port: Toggle - uid: 1440 - - port: Toggle - uid: 1441 - type: SignalTransmitter -- uid: 6603 - type: PenCap - components: - - pos: -20.479628,12.125576 - parent: 0 - type: Transform -- uid: 6604 - type: BiomassReclaimer - components: - - pos: 13.5,-15.5 - parent: 0 - type: Transform -- uid: 6605 - type: ClothingHeadHatHairflower - components: - - pos: -11.182456,6.7149878 - parent: 0 - type: Transform -- uid: 6606 - type: ComputerCriminalRecords - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-16.5 - parent: 0 - type: Transform -- uid: 6607 - type: Poweredlight - components: - - pos: -1.5,-21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6608 - type: CentcomIDCardSyndie - components: - - pos: -16.408298,8.44868 - parent: 0 - type: Transform -- uid: 6609 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6610 - type: ClothingNeckCloakNanotrasen - components: - - pos: -12.45408,6.654963 - parent: 0 - type: Transform -- uid: 6611 - type: ClothingUniformJumpsuitNanotrasen - components: - - pos: -5.5209417,-15.367945 - parent: 0 - type: Transform -- uid: 6612 - type: BoxFolderYellow - components: - - pos: 2.170168,-2.5148773 - parent: 0 - type: Transform -- uid: 6613 - type: ClothingNeckCloakNanotrasen - components: - - pos: -5.5209417,-15.367945 - parent: 0 - type: Transform -- uid: 6614 - type: GeneratorUranium - components: - - pos: 29.5,-23.5 - parent: 0 - type: Transform -- uid: 6615 - type: VendingMachineWallMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,-10.5 - parent: 0 - type: Transform -- uid: 6616 - type: CableHV - components: - - pos: 29.5,-23.5 - parent: 0 - type: Transform -- uid: 6617 - type: CentcomPDA - components: - - pos: -20.428675,10.647655 - parent: 0 - type: Transform -- uid: 6618 - type: BoxFolderYellow - components: - - pos: 2.060793,-2.4055023 - parent: 0 - type: Transform -- uid: 6619 - type: SinkWide - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-27.5 - parent: 0 - type: Transform -- uid: 6620 - type: SinkWide - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-22.5 - parent: 0 - type: Transform -- uid: 6621 - type: DrinkShaker - components: - - pos: 10.4809675,-21.408005 - parent: 0 - type: Transform -- uid: 6622 - type: FloorDrain - components: - - pos: 12.5,-16.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 6623 - type: FloorDrain - components: - - pos: -16.5,-33.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 6624 - type: Table - components: - - pos: 1.5,-25.5 - parent: 0 - type: Transform -- uid: 6625 - type: Table - components: - - pos: 0.5,-25.5 - parent: 0 - type: Transform -- uid: 6626 - type: VendingMachineCondiments - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-25.5 - parent: 0 - type: Transform -- uid: 6627 - type: FoodPlateSmall - components: - - pos: 0.5503339,-25.456686 - parent: 0 - type: Transform -- uid: 6628 - type: FoodPlateSmall - components: - - pos: 0.5503339,-25.394186 - parent: 0 - type: Transform -- uid: 6629 - type: FoodPlateSmall - components: - - pos: 0.5503339,-25.316061 - parent: 0 - type: Transform -- uid: 6630 - type: PaperBin10 - components: - - pos: -3.5,-2.5 - parent: 0 - type: Transform -- uid: 6631 - type: ClothingBackpackSatchelLeather - components: - - pos: -4.5521917,-15.28982 - parent: 0 - type: Transform -- uid: 6632 - type: ClothingShoesLeather - components: - - pos: -4.518946,-17.586695 - parent: 0 - type: Transform -- uid: 6633 - type: CentcomPDA - components: - - pos: -3.5585515,-16.492945 - parent: 0 - type: Transform -- uid: 6634 - type: ClothingHeadsetCentCom - components: - - pos: -5.042927,-15.461695 - parent: 0 - type: Transform -... diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml deleted file mode 100644 index 0757bb29c8..0000000000 --- a/Resources/Maps/cluster.yml +++ /dev/null @@ -1,74915 +0,0 @@ -meta: - format: 3 - name: DemoStation - author: Space-Wizards - postmapinit: false -tilemap: - 0: Space - 1: FloorArcadeBlue - 2: FloorArcadeBlue2 - 3: FloorArcadeRed - 4: FloorAsteroidCoarseSand0 - 5: FloorAsteroidCoarseSandDug - 6: FloorAsteroidIronsand1 - 7: FloorAsteroidIronsand2 - 8: FloorAsteroidIronsand3 - 9: FloorAsteroidIronsand4 - 10: FloorAsteroidSand - 11: FloorAsteroidTile - 12: FloorBar - 13: FloorBasalt - 14: FloorBlue - 15: FloorBlueCircuit - 16: FloorBoxing - 17: FloorCarpetClown - 18: FloorCarpetOffice - 19: FloorCave - 20: FloorCaveDrought - 21: FloorClown - 22: FloorDark - 23: FloorDarkDiagonal - 24: FloorDarkDiagonalMini - 25: FloorDarkHerringbone - 26: FloorDarkMini - 27: FloorDarkMono - 28: FloorDarkOffset - 29: FloorDarkPavement - 30: FloorDarkPavementVertical - 31: FloorDarkPlastic - 32: FloorDesert - 33: FloorDirt - 34: FloorEighties - 35: FloorElevatorShaft - 36: FloorFlesh - 37: FloorFreezer - 38: FloorGlass - 39: FloorGold - 40: FloorGrass - 41: FloorGrassDark - 42: FloorGrassJungle - 43: FloorGrassLight - 44: FloorGreenCircuit - 45: FloorGym - 46: FloorHydro - 47: FloorKitchen - 48: FloorLaundry - 49: FloorLino - 50: FloorLowDesert - 51: FloorMetalDiamond - 52: FloorMime - 53: FloorMono - 54: FloorPlanetDirt - 55: FloorPlanetGrass - 56: FloorPlastic - 57: FloorRGlass - 58: FloorReinforced - 59: FloorRockVault - 60: FloorShowroom - 61: FloorShuttleBlue - 62: FloorShuttleOrange - 63: FloorShuttlePurple - 64: FloorShuttleRed - 65: FloorShuttleWhite - 66: FloorSilver - 67: FloorSnow - 68: FloorSteel - 69: FloorSteelDiagonal - 70: FloorSteelDiagonalMini - 71: FloorSteelDirty - 72: FloorSteelHerringbone - 73: FloorSteelMini - 74: FloorSteelMono - 75: FloorSteelOffset - 76: FloorSteelPavement - 77: FloorSteelPavementVertical - 78: FloorTechMaint - 79: FloorTechMaint2 - 80: FloorTechMaint3 - 81: FloorWhite - 82: FloorWhiteDiagonal - 83: FloorWhiteDiagonalMini - 84: FloorWhiteHerringbone - 85: FloorWhiteMini - 86: FloorWhiteMono - 87: FloorWhiteOffset - 88: FloorWhitePavement - 89: FloorWhitePavementVertical - 90: FloorWhitePlastic - 91: FloorWood - 92: FloorWoodTile - 93: Lattice - 94: Plating -entities: -- uid: 0 - type: AirlockHeadOfPersonnelGlassLocked - components: - - pos: 25.5,-3.5 - parent: 127 - type: Transform -- uid: 1 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 43.5,1.5 - parent: 127 - type: Transform -- uid: 2 - type: AirlockHeadOfPersonnelLocked - components: - - pos: 26.5,-8.5 - parent: 127 - type: Transform -- uid: 3 - type: AirlockCaptainLocked - components: - - pos: 34.5,-2.5 - parent: 127 - type: Transform -- uid: 4 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 47.5,1.5 - parent: 127 - type: Transform -- uid: 5 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 49.5,1.5 - parent: 127 - type: Transform -- uid: 6 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 48.5,1.5 - parent: 127 - type: Transform -- uid: 7 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 51.5,1.5 - parent: 127 - type: Transform -- uid: 8 - type: PoweredSmallLight - components: - - pos: -3.5,-19.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9 - type: WallReinforced - components: - - pos: 8.5,-5.5 - parent: 127 - type: Transform -- uid: 10 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 50.5,1.5 - parent: 127 - type: Transform -- uid: 11 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 37.5,-33.5 - parent: 127 - type: Transform -- uid: 12 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 31.5,1.5 - parent: 127 - type: Transform -- uid: 13 - type: CableHV - components: - - pos: 22.5,10.5 - parent: 127 - type: Transform -- uid: 14 - type: AirlockServiceGlassLocked - components: - - pos: 18.5,-8.5 - parent: 127 - type: Transform -- uid: 15 - type: AirlockGlass - components: - - pos: 13.5,-30.5 - parent: 127 - type: Transform -- uid: 16 - type: AirlockGlass - components: - - pos: 13.5,-29.5 - parent: 127 - type: Transform -- uid: 17 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -11.5,-8.5 - parent: 127 - type: Transform -- uid: 18 - type: SignDisposalSpace - components: - - rot: 3.141592653589793 rad - pos: -11.5,-8.5 - parent: 127 - type: Transform -- uid: 19 - type: Catwalk - components: - - pos: 31.5,-29.5 - parent: 127 - type: Transform -- uid: 20 - type: Catwalk - components: - - pos: 42.5,-29.5 - parent: 127 - type: Transform -- uid: 21 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -12.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 22 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 23 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 24 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 25 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 26 - type: WallSolid - components: - - pos: 2.5,-8.5 - parent: 127 - type: Transform -- uid: 27 - type: ClothingOuterWinterRD - components: - - flags: InContainer - type: MetaData - - parent: 201 - type: Transform - - canCollide: False - type: Physics -- uid: 28 - type: WallSolid - components: - - pos: 0.5,-8.5 - parent: 127 - type: Transform -- uid: 29 - type: WallSolid - components: - - pos: 3.5,-8.5 - parent: 127 - type: Transform -- uid: 30 - type: WallSolid - components: - - pos: -1.5,-8.5 - parent: 127 - type: Transform -- uid: 31 - type: Grille - components: - - pos: -2.5,-5.5 - parent: 127 - type: Transform -- uid: 32 - type: WallReinforced - components: - - pos: 7.5,-5.5 - parent: 127 - type: Transform -- uid: 33 - type: WallSolid - components: - - pos: 8.5,15.5 - parent: 127 - type: Transform -- uid: 34 - type: AirlockCargoGlassLocked - components: - - pos: 15.5,11.5 - parent: 127 - type: Transform -- uid: 35 - type: WallSolid - components: - - pos: 9.5,15.5 - parent: 127 - type: Transform -- uid: 36 - type: Grille - components: - - pos: 18.5,0.5 - parent: 127 - type: Transform -- uid: 37 - type: WallSolid - components: - - pos: 8.5,16.5 - parent: 127 - type: Transform -- uid: 38 - type: WallSolid - components: - - pos: 10.5,15.5 - parent: 127 - type: Transform -- uid: 39 - type: WallReinforced - components: - - pos: -16.5,14.5 - parent: 127 - type: Transform -- uid: 40 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-16.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 41 - type: WallReinforced - components: - - pos: 5.5,-5.5 - parent: 127 - type: Transform -- uid: 42 - type: WallReinforced - components: - - pos: 4.5,-5.5 - parent: 127 - type: Transform -- uid: 43 - type: WallReinforced - components: - - pos: 4.5,-6.5 - parent: 127 - type: Transform -- uid: 44 - type: WallReinforced - components: - - pos: 4.5,-7.5 - parent: 127 - type: Transform -- uid: 45 - type: WallReinforced - components: - - pos: -27.5,-3.5 - parent: 127 - type: Transform -- uid: 46 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-0.5 - parent: 127 - type: Transform -- uid: 47 - type: AirlockMaintRnDLocked - components: - - pos: -18.5,7.5 - parent: 127 - type: Transform -- uid: 48 - type: SignAnomaly2 - components: - - pos: -18.5,-0.5 - parent: 127 - type: Transform -- uid: 49 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -28.5,1.5 - parent: 127 - type: Transform -- uid: 50 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-1.5 - parent: 127 - type: Transform -- uid: 51 - type: WallReinforced - components: - - pos: -5.5,-7.5 - parent: 127 - type: Transform -- uid: 52 - type: CableHV - components: - - pos: -16.5,12.5 - parent: 127 - type: Transform -- uid: 53 - type: CableMV - components: - - pos: -9.5,-2.5 - parent: 127 - type: Transform -- uid: 54 - type: WallSolid - components: - - pos: -18.5,-0.5 - parent: 127 - type: Transform -- uid: 55 - type: WallReinforced - components: - - pos: -5.5,-6.5 - parent: 127 - type: Transform -- uid: 56 - type: WallReinforced - components: - - pos: -5.5,-5.5 - parent: 127 - type: Transform -- uid: 57 - type: WallReinforced - components: - - pos: -5.5,-4.5 - parent: 127 - type: Transform -- uid: 58 - type: WallSolid - components: - - pos: -9.5,-0.5 - parent: 127 - type: Transform -- uid: 59 - type: CableMV - components: - - pos: -10.5,-2.5 - parent: 127 - type: Transform -- uid: 60 - type: CableMV - components: - - pos: -11.5,-2.5 - parent: 127 - type: Transform -- uid: 61 - type: WallSolid - components: - - pos: -9.5,-3.5 - parent: 127 - type: Transform -- uid: 62 - type: WallSolid - components: - - pos: -8.5,-3.5 - parent: 127 - type: Transform -- uid: 63 - type: WallSolid - components: - - pos: -10.5,-0.5 - parent: 127 - type: Transform -- uid: 64 - type: WallSolid - components: - - pos: -11.5,-0.5 - parent: 127 - type: Transform -- uid: 65 - type: WallSolid - components: - - pos: -12.5,-0.5 - parent: 127 - type: Transform -- uid: 66 - type: CableHV - components: - - pos: -16.5,7.5 - parent: 127 - type: Transform -- uid: 67 - type: CableHV - components: - - pos: -16.5,5.5 - parent: 127 - type: Transform -- uid: 68 - type: WallSolid - components: - - pos: -13.5,-0.5 - parent: 127 - type: Transform -- uid: 69 - type: WallSolid - components: - - pos: -13.5,2.5 - parent: 127 - type: Transform -- uid: 70 - type: WallReinforced - components: - - pos: -4.5,-4.5 - parent: 127 - type: Transform -- uid: 71 - type: WallSolid - components: - - pos: 8.5,-0.5 - parent: 127 - type: Transform -- uid: 72 - type: WallSolid - components: - - pos: 8.5,-1.5 - parent: 127 - type: Transform -- uid: 73 - type: WallSolid - components: - - pos: 8.5,-2.5 - parent: 127 - type: Transform -- uid: 74 - type: WallSolid - components: - - pos: 8.5,-3.5 - parent: 127 - type: Transform -- uid: 75 - type: WallSolid - components: - - pos: 8.5,-4.5 - parent: 127 - type: Transform -- uid: 76 - type: WallReinforced - components: - - pos: -3.5,-4.5 - parent: 127 - type: Transform -- uid: 77 - type: WallReinforced - components: - - pos: -2.5,-4.5 - parent: 127 - type: Transform -- uid: 78 - type: ReinforcedWindow - components: - - pos: -2.5,-5.5 - parent: 127 - type: Transform -- uid: 79 - type: WallReinforced - components: - - pos: -2.5,-7.5 - parent: 127 - type: Transform -- uid: 80 - type: WallSolid - components: - - pos: 2.5,-0.5 - parent: 127 - type: Transform -- uid: 81 - type: WallSolid - components: - - pos: 3.5,-0.5 - parent: 127 - type: Transform -- uid: 82 - type: WallSolid - components: - - pos: -5.5,8.5 - parent: 127 - type: Transform -- uid: 83 - type: WallSolid - components: - - pos: -0.5,-0.5 - parent: 127 - type: Transform -- uid: 84 - type: WallReinforced - components: - - pos: 8.5,-8.5 - parent: 127 - type: Transform -- uid: 85 - type: WallSolid - components: - - pos: -1.5,-0.5 - parent: 127 - type: Transform -- uid: 86 - type: WallSolid - components: - - pos: -2.5,-0.5 - parent: 127 - type: Transform -- uid: 87 - type: WallReinforced - components: - - pos: 4.5,-8.5 - parent: 127 - type: Transform -- uid: 88 - type: WallReinforced - components: - - pos: 5.5,-8.5 - parent: 127 - type: Transform -- uid: 89 - type: WallReinforced - components: - - pos: 6.5,-8.5 - parent: 127 - type: Transform -- uid: 90 - type: WallReinforced - components: - - pos: 8.5,-7.5 - parent: 127 - type: Transform -- uid: 91 - type: WallSolid - components: - - pos: -3.5,-0.5 - parent: 127 - type: Transform -- uid: 92 - type: WallSolid - components: - - pos: -4.5,-0.5 - parent: 127 - type: Transform -- uid: 93 - type: WallSolid - components: - - pos: -5.5,-0.5 - parent: 127 - type: Transform -- uid: 94 - type: SpawnPointServiceWorker - components: - - pos: 17.5,-6.5 - parent: 127 - type: Transform -- uid: 95 - type: TintedWindow - components: - - pos: -2.5,5.5 - parent: 127 - type: Transform -- uid: 96 - type: WallReinforced - components: - - pos: 8.5,-6.5 - parent: 127 - type: Transform -- uid: 97 - type: WallReinforced - components: - - pos: 7.5,-8.5 - parent: 127 - type: Transform -- uid: 98 - type: WallSolid - components: - - pos: -1.5,2.5 - parent: 127 - type: Transform -- uid: 99 - type: WallSolid - components: - - pos: -3.5,3.5 - parent: 127 - type: Transform -- uid: 100 - type: WallSolid - components: - - pos: -4.5,3.5 - parent: 127 - type: Transform -- uid: 101 - type: WallSolid - components: - - pos: -5.5,3.5 - parent: 127 - type: Transform -- uid: 102 - type: Grille - components: - - pos: 20.5,-0.5 - parent: 127 - type: Transform -- uid: 103 - type: WallSolid - components: - - pos: -1.5,1.5 - parent: 127 - type: Transform -- uid: 104 - type: WallSolid - components: - - pos: -1.5,0.5 - parent: 127 - type: Transform -- uid: 105 - type: WallSolid - components: - - pos: -2.5,3.5 - parent: 127 - type: Transform -- uid: 106 - type: WallSolid - components: - - pos: -1.5,3.5 - parent: 127 - type: Transform -- uid: 107 - type: WallSolid - components: - - pos: -0.5,3.5 - parent: 127 - type: Transform -- uid: 108 - type: WallSolid - components: - - pos: 2.5,3.5 - parent: 127 - type: Transform -- uid: 109 - type: WallReinforced - components: - - pos: 3.5,3.5 - parent: 127 - type: Transform -- uid: 110 - type: WallSolid - components: - - pos: -5.5,7.5 - parent: 127 - type: Transform -- uid: 111 - type: WallSolid - components: - - pos: -5.5,6.5 - parent: 127 - type: Transform -- uid: 112 - type: WallSolid - components: - - pos: -5.5,4.5 - parent: 127 - type: Transform -- uid: 113 - type: WallSolid - components: - - pos: -5.5,5.5 - parent: 127 - type: Transform -- uid: 114 - type: WallReinforced - components: - - pos: 8.5,3.5 - parent: 127 - type: Transform -- uid: 115 - type: WallSolid - components: - - pos: -5.5,9.5 - parent: 127 - type: Transform -- uid: 116 - type: WallSolid - components: - - pos: -5.5,10.5 - parent: 127 - type: Transform -- uid: 117 - type: WallSolid - components: - - pos: -5.5,11.5 - parent: 127 - type: Transform -- uid: 118 - type: WallSolid - components: - - pos: -5.5,12.5 - parent: 127 - type: Transform -- uid: 119 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 127 - type: Transform -- uid: 120 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,8.5 - parent: 127 - type: Transform -- uid: 121 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -9.5,7.5 - parent: 127 - type: Transform -- uid: 122 - components: - - type: MetaData - - type: Transform - - index: 7 - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree -- uid: 123 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 127 - type: Transform -- uid: 124 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -12.5,11.5 - parent: 127 - type: Transform -- uid: 125 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -11.5,11.5 - parent: 127 - type: Transform -- uid: 126 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -10.5,11.5 - parent: 127 - type: Transform -- uid: 127 - components: - - type: MetaData - - pos: -1.7478588,0.38306206 - parent: 122 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAFsAAANeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABOAAAAXgAAAFsAAAFbAAADXgAAAFsAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABbAAAAWwAAAF4AAABbAAABAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAWwAAAlsAAABeAAAAWwAAAwAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAAXQAAAF0AAABdAAAAXQAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABdAAAAXQAAAF0AAABdAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAABYAAAEWAAAAXgAAAEQAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAxYAAABEAAADRAAAAk4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAFgAAAhYAAANeAAAARAAAAEQAAAJeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAABEAAAARAAAAUQAAAFEAAAARAAAAUQAAAFEAAADRAAAAEQAAABEAAADRAAAAkQAAAFEAAABRAAAAEQAAAJEAAABRAAAAUQAAABEAAACRAAAAEQAAABEAAAARAAAAUQAAAJEAAABRAAAAkQAAAJEAAACRAAAA0QAAAJEAAADRAAAAEQAAAFEAAAARAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 0,-1: - ind: 0,-1 - tiles: WwAAAV4AAABEAAADRAAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABeAAAAXgAAAFsAAABeAAAARAAAAEQAAAFEAAACXgAAAEQAAANEAAACXgAAAEQAAAJEAAADRwAAAEQAAAJbAAADXgAAABUAAAAVAAAAXgAAAEQAAANEAAACRAAAAkQAAABEAAADRAAAAkQAAANHAAAARwAAAEQAAAJHAAAAWwAAA14AAABEAAABRAAAA14AAABEAAAARAAAAkQAAAJeAAAARAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAANAAAADQAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACXgAAACUAAAAlAAAAXgAAAC8AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAASUAAAAlAAAAJQAAACUAAAAvAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABEAAADRAAAA0QAAABeAAAAJQAAACUAAABeAAAALwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAkQAAANEAAADXgAAABYAAAAWAAADFgAAAV4AAABEAAADRAAAAl4AAABbAAABWwAAAVsAAAFbAAAARAAAAEQAAAJEAAAARAAAA14AAAAWAAABFgAAAxYAAANeAAAARAAAAkQAAABeAAAAWwAAAFsAAAJbAAACWwAAAEQAAAJEAAADRAAAAUQAAAFeAAAAXgAAABYAAAJeAAAAXgAAAEQAAAFEAAADXgAAAFsAAAJbAAAAWwAAAlsAAANEAAAARAAAAkQAAANEAAADRAAAAkQAAANEAAADRAAAAl4AAABEAAADRAAAAgwAAAEMAAACDAAAAAwAAAMMAAABRAAAAkQAAANEAAACRAAAAkQAAABEAAADRAAAAkQAAABeAAAARAAAAUQAAAEMAAABDAAAAwwAAAEMAAADWwAAA0QAAANEAAADRAAAAEQAAABEAAACRAAAAUQAAAFEAAACXgAAAEQAAANEAAAADAAAAQwAAAMMAAAADAAAAVsAAAJEAAACRAAAAkQAAABEAAABRAAAAEQAAANEAAABRAAAA14AAABEAAACRAAAAV4AAABbAAABWwAAAgwAAABbAAABRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAARAAAA14AAABeAAAARAAAAkQAAAJeAAAAXgAAAFsAAAAMAAABDAAAAw== - 0,0: - ind: 0,0 - tiles: RAAAAEQAAAJEAAABRAAAAEQAAABEAAABRAAAAkQAAABEAAADRAAAAkQAAANEAAABXgAAAF4AAAAMAAADDAAAAEQAAAAmAAAARAAAAUQAAAJEAAAARAAAAUQAAAImAAAARAAAA0QAAABEAAAARAAAAUQAAAFeAAAAXgAAAAwAAABEAAAARAAAAkQAAANEAAAARAAAAEQAAAFEAAAARAAAAEQAAABEAAADJgAAAEQAAAJEAAADRAAAA0QAAABEAAADUQAAA1EAAAJeAAAAXgAAAF4AAABeAAAAVQAAAl4AAABeAAAARAAAAEQAAAFEAAABRAAAAkQAAANEAAACRAAAAFEAAANRAAAAUQAAAl4AAABVAAACVQAAAFUAAANVAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAAEQAAAFRAAAAUQAAA1EAAABeAAAAVQAAAVUAAAJVAAAAVQAAAV4AAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAABEAAAAUQAAAlEAAAFRAAABVQAAA1UAAAJVAAABVQAAAlUAAAJeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAADRAAAAVEAAANRAAABUQAAAF4AAABVAAAAVQAAAFUAAAJVAAADXgAAAE4AAABOAAAAXgAAAEQAAABEAAABRAAAAkQAAANRAAAAUQAAA1EAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAACRAAAAEQAAAJEAAACUQAAAlEAAANRAAACUQAAA1EAAAFeAAAAHwAAAx8AAAFeAAAATgAAAF4AAABeAAAARAAAAEQAAABEAAADRAAAAlEAAANRAAACUQAAAFEAAAJRAAACHwAAAR8AAAAfAAADXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADRAAAAEQAAANRAAAAUQAAAVEAAABRAAADUQAAAl4AAAAfAAABHwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABUQAAAlEAAAFRAAACUQAAAVEAAAJeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAABEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAARAAAA0QAAAJeAAAAFwAAAxcAAAAXAAAAFwAAAV4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAAFwAAAxcAAAEXAAADFwAAABcAAANeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAg== - 1,0: - ind: 1,0 - tiles: DAAAAQwAAABeAAAAXgAAAEQAAAJEAAAARAAAAUQAAAJEAAADRAAAA0QAAANEAAABXgAAAF4AAABeAAAAXgAAAAwAAANeAAAAXgAAAEQAAAJEAAAARAAAAkQAAANEAAACJgAAAEQAAAFEAAAARAAAAkQAAAFEAAAARAAAAV4AAABEAAADRAAAA0QAAAFEAAABRAAAASYAAABEAAACRAAAAUQAAABEAAADRAAAAUQAAANEAAAARAAAAkQAAAJeAAAARAAAAEQAAAFEAAABRAAAAUQAAAJEAAADRAAAAl4AAABeAAAARAAAAl4AAABeAAAAXgAAAEQAAAFEAAABXgAAAEQAAANEAAADRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAADRAAAAEQAAAJEAAACRAAAAV4AAABEAAABXgAAAEQAAANeAAAAXgAAAF4AAABOAAAAXgAAAEQAAANEAAADRAAAAUQAAAFEAAACRAAAA0QAAANEAAACRAAAA0QAAABEAAABRAAAA14AAABOAAAAXgAAAF4AAABEAAADRAAAA0QAAANEAAACRAAAAkQAAABEAAAARAAAA0QAAAFEAAAARAAAAUQAAAFeAAAATgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAkQAAANEAAABRAAAA0QAAANEAAADRAAAAkQAAAFEAAACXgAAAF4AAABOAAAAXgAAAEQAAANEAAAARAAAA0QAAABEAAABRAAAAUQAAAJEAAADRAAAAkQAAABEAAABRAAAAV4AAABOAAAATgAAAF4AAABEAAABRAAAAkQAAANEAAABRAAAAkQAAABEAAAARAAAAUQAAAFEAAAARAAAAkQAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAEQAAABEAAADRAAAA0QAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAACRAAAAEQAAAJEAAADRAAAA14AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAANEAAACRAAAAUQAAABeAAAAXgAAAE4AAABOAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAAARAAAAkQAAANEAAACXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAUQAAAFEAAACRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABEAAAARAAAAkQAAABEAAABRAAAAA== - 1,-1: - ind: 1,-1 - tiles: XgAAAC4AAABeAAAAXgAAAF4AAABEAAACRAAAAV4AAABeAAAAXgAAAEQAAAFEAAABRAAAA14AAABEAAACRAAAAEcAAABEAAAARAAAAkcAAABeAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAEcAAABHAAAARAAAAEQAAANEAAAARAAAAF4AAABOAAAATgAAAE4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAA0QAAAFOAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAATgAAAC8AAAAvAAAALwAAAC8AAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAvAAAALwAAAC8AAAAvAAAALwAAAEQAAABEAAACRAAAAV4AAABbAAACWwAAAFsAAAJeAAAATgAAAF4AAABeAAAALwAAAC8AAAAvAAAALwAAAF4AAABEAAADRAAAAEQAAAJeAAAAWwAAAFsAAANbAAACXgAAAF4AAABeAAAAXgAAAF4AAAAvAAAALwAAAF4AAABeAAAARAAAA0QAAAFeAAAAXgAAAF4AAABbAAACXgAAAF4AAABeAAAAXgAAAF4AAABbAAADWwAAA1sAAANbAAACXgAAAEQAAABEAAABRAAAA14AAABbAAACWwAAA1sAAAJOAAAAXgAAAE4AAABOAAAAWwAAA1sAAAJbAAAAWwAAAl4AAABEAAACRAAAA0QAAABeAAAAWwAAAVsAAANbAAAAXgAAAF4AAABeAAAATgAAAFsAAABbAAABWwAAAFsAAANeAAAARAAAAkQAAAJEAAABWwAAAFsAAAJbAAAAWwAAAF4AAABEAAABRAAAAEQAAAMMAAAADAAAAAwAAAMMAAAADAAAAUQAAAJEAAAARAAAAV4AAABbAAABWwAAAFsAAAJeAAAARAAAAEQAAABEAAADWwAAAQwAAAIMAAABDAAAAAwAAAJEAAADRAAAAF4AAABeAAAAWwAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAAVsAAAAMAAACDAAAAQwAAAAMAAAARAAAA0QAAABeAAAARAAAAEQAAAFEAAAARAAAAkQAAABEAAABRAAAAl4AAABbAAABDAAAAVsAAABbAAABXgAAAEQAAABEAAAAXgAAAEQAAAFEAAACRAAAAkQAAANEAAACRAAAAkQAAANeAAAADAAAAAwAAABbAAAAXgAAAF4AAABEAAAARAAAA14AAABEAAACRAAAAV4AAABeAAAAXgAAAEQAAANEAAADXgAAAA== - 2,0: - ind: 2,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAFEAAABRAAAAV4AAABdAAAAXQAAAF0AAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAXQAAAF0AAABEAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAARAAAAEQAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAACRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAkQAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAAl4AAABEAAADRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAACRAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAADRAAAA0QAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAA== - 2,-1: - ind: 2,-1 - tiles: XgAAAEQAAAJEAAAARAAAA14AAABOAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAATgAAAF4AAABeAAAATgAAAE4AAABeAAAARAAAA0QAAABEAAADXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAADRAAAAl4AAABdAAAAAAAAAF0AAABdAAAATgAAAF4AAABeAAAAFgAAABYAAAEWAAADXgAAAEQAAABEAAACRAAAA0QAAANeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAABYAAAA5AAAAFgAAAF4AAABEAAADRAAAAUQAAAFEAAACRAAAAF4AAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAAAWAAABFgAAAhYAAANeAAAARAAAAUQAAAJEAAADRAAAAUQAAAJeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAEQAAABEAAADRAAAAkQAAAJeAAAAXgAAAF0AAAAAAAAAXQAAAEQAAABEAAADRAAAAEQAAAFEAAADRAAAA0QAAANEAAADRAAAAUQAAAJEAAAAXgAAAF0AAABdAAAAAAAAAF0AAABEAAACRAAAA0QAAANEAAADRAAAAEQAAABEAAADRAAAAkQAAABEAAACXgAAAF4AAABdAAAAAAAAAF0AAABdAAAARAAAA0QAAABEAAAARAAAAV4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABdAAAAAAAAAF0AAABdAAAAAAAAAF4AAABeAAAAWwAAAl4AAABeAAAARAAAAUQAAABEAAABRAAAA0QAAAFeAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABbAAADWwAAAVsAAAJbAAAAXgAAAEQAAABEAAAARAAAAkQAAAFEAAACXgAAAF0AAABdAAAAAAAAAF0AAAAAAAAAWwAAAVsAAANbAAABWwAAAF4AAABEAAABRAAAAUQAAAFEAAADRAAAA14AAABdAAAAAAAAAF0AAABdAAAAXQAAAA== - 3,0: - ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,-1: - ind: 3,-1 - tiles: TgAAAE4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAFgAAA0QAAAJEAAACRAAAAUQAAAEWAAADRAAAAEQAAAFEAAAAXgAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAAJEAAADXgAAAEQAAAFEAAAARAAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAABEAAAARAAAAkQAAAJeAAAAXQAAAF0AAABdAAAAAAAAAF4AAABeAAAARAAAAkQAAAJEAAABRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAF0AAABeAAAARAAAAUQAAAJEAAACRAAAAkQAAABEAAACRAAAA14AAAAbAAACGwAAAxsAAABdAAAAAAAAAF0AAAAAAAAAXgAAAEQAAAFEAAAAXgAAAF4AAABeAAAARAAAAUQAAAJeAAAAFgAAABYAAAMWAAADXQAAAF0AAABdAAAAXQAAAF4AAABEAAACRAAAA0QAAAJEAAABRAAAAEQAAAFEAAAAFgAAAhYAAAAWAAABGwAAA10AAABdAAAAAAAAAAAAAABeAAAARAAAAkQAAABeAAAAXgAAAF4AAABEAAACRAAAA14AAAAWAAADFgAAAxYAAAJdAAAAAAAAAF0AAAAAAAAAXgAAAEQAAAJEAAACRAAAAkQAAAFEAAAARAAAA0QAAANeAAAAGwAAARsAAAIbAAACXQAAAF0AAABdAAAAXQAAAF4AAABeAAAARAAAA0QAAANEAAAARAAAAUQAAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 4,-1: - ind: 4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-2: - ind: 1,-2 - tiles: RAAAAV4AAABbAAACWwAAA1sAAAFbAAAAWwAAA14AAABEAAAARAAAAEQAAAFEAAACRAAAA0QAAAJeAAAATgAAAEQAAAJbAAABWwAAAFsAAANbAAAAXgAAAFsAAAJeAAAARAAAAkQAAAFEAAACRAAAAUQAAANEAAABXgAAAF4AAABEAAADWwAAAFsAAAJbAAAAWwAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAAEQAAANEAAACRAAAAV4AAABeAAAARAAAA14AAABbAAABWwAAAFsAAAJeAAAAXgAAAF4AAABEAAAARAAAAEQAAAFEAAACRAAAAUQAAAJeAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAE4AAABEAAACXgAAAE4AAABOAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABOAAAAXgAAAE4AAABOAAAARAAAAE4AAABOAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAAFEAAACRAAAAUQAAAFEAAACXgAAAEQAAABEAAACXgAAAEQAAAFEAAADXgAAAEQAAAJEAAAARAAAAkQAAAFEAAAARAAAAUQAAANEAAACRAAAAF4AAABEAAACRAAAAUQAAABEAAACRAAAAEQAAABEAAAARAAAA0QAAABEAAAARAAAA0QAAABEAAADRAAAAUQAAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAC4AAABeAAAAXgAAAEQAAANEAAAARAAAAkQAAANEAAAARAAAAEQAAAJEAAAARAAAAUQAAANEAAADLgAAAC4AAAAuAAAALgAAAF4AAABEAAABRAAAAEQAAABEAAAARAAAAEQAAAJEAAAARAAAAUQAAAFEAAABRAAAAS4AAAAuAAAALgAAAC4AAABeAAAARAAAA0QAAAFeAAAARAAAAkQAAAJeAAAARAAAAkQAAAJEAAACRAAAA0QAAAEuAAAALgAAAC4AAAAuAAAALgAAAEQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABLgAAAC4AAAAuAAAALgAAAF4AAABEAAABRAAAA14AAABeAAAAXgAAAEQAAANEAAADRAAAAkQAAAJEAAADRAAAAQ== - 0,-2: - ind: 0,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAMQAAADEAAAAxAAAAMQAAAF4AAABEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAADEAAAAxAAAAMQAAADEAAAAxAAAARAAAAyYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAAAxAAAAMQAAAEQAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAMQAAADEAAAAxAAAAMQAAAF4AAABEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAXgAAAF4AAABeAAAARAAAA0QAAANOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAAAxAAAAXgAAAEQAAAImAAAATgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAMQAAAF4AAABEAAAARAAAAl4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAATgAAAE4AAABEAAABRAAAAEQAAAJEAAACRAAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAABRAAAA0QAAAJEAAADRAAAAzwAAAA8AAAAXgAAADAAAAAwAAAAMAAAADAAAABeAAAARAAAA0QAAABEAAADRAAAAEQAAAJEAAADRAAAAkQAAAA8AAAAPAAAAF4AAAAwAAAAMAAAADAAAAAwAAAAXgAAAEQAAABEAAABRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAPAAAADwAAABeAAAAMAAAADAAAAAwAAAAMAAAAF4AAABEAAACRAAAAUQAAAFeAAAALgAAAC4AAAAuAAAALgAAACUAAABeAAAAXgAAAF4AAAAwAAAAMAAAAF4AAABeAAAAXgAAAEQAAAJEAAABXgAAAC4AAAAuAAAALgAAAC4AAABEAAABRAAAA0QAAANEAAADRAAAAUQAAABEAAADRAAAAEQAAAJEAAACRAAAAS4AAAAuAAAALgAAAC4AAAAuAAAARAAAAUQAAAJEAAACRAAAAkQAAABEAAABRAAAAkQAAABEAAABRAAAAEQAAAJeAAAALgAAAC4AAAAuAAAALgAAAA== - -1,-2: - ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAE4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAACRAAAAkQAAANEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABOAAAARAAAAkQAAAJEAAAARAAAAQ== - 0,-3: - ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABEAAABRAAAAkQAAANeAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAARAAAAEQAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAAl4AAABEAAAARAAAA0QAAABEAAABRAAAAkQAAANEAAABRAAAA0QAAABEAAAARAAAA14AAABEAAAARAAAAkQAAAJEAAACRAAAASYAAABEAAAARAAAAyYAAABEAAACRAAAACYAAABEAAAARAAAAyYAAABeAAAARAAAAEQAAAJEAAACXgAAAEQAAABEAAACRAAAA0QAAAJEAAADRAAAA0QAAANEAAADRAAAAEQAAANEAAADXgAAAEQAAANEAAADRAAAAV4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAA== - 1,-3: - ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAACRAAAAUQAAAJEAAABRAAAA0QAAAJEAAACRAAAAUQAAANEAAACRAAAA0QAAAFEAAAARAAAAEQAAAJEAAAAJgAAAEQAAAJEAAABJgAAAEQAAABEAAACRAAAAEQAAABEAAABRAAAAUQAAAJEAAAARAAAAkQAAANEAAACRAAAAkQAAABEAAADRAAAA0QAAANEAAAARAAAAEQAAANEAAADRAAAAUQAAAFEAAACRAAAAEQAAANeAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAEQAAABEAAACRAAAAUQAAAFeAAAAXgAAAA== - -1,-3: - ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAA== - 2,-2: - ind: 2,-2 - tiles: TgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAJEAAAARAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAADRAAAA14AAABeAAAARAAAAEQAAAJEAAAAXgAAAEQAAANEAAACXgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAABeAAAAXgAAAEQAAANEAAADRAAAAl4AAABEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAADRAAAAkQAAAFEAAADRAAAA0QAAAFEAAACRAAAAUQAAANEAAACRAAAAkQAAANEAAABXgAAAEQAAANEAAADRAAAA0QAAAFEAAAARAAAAEQAAAFEAAABRAAAA0QAAAJEAAABRAAAAkQAAAFEAAACRAAAAl4AAABEAAADRAAAA0QAAAJEAAADRAAAA0QAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAADRAAAAUQAAAJEAAACRAAAA0QAAAFEAAACRAAAAF4AAABEAAADRAAAAUQAAABEAAABXgAAAF4AAABeAAAARAAAA0QAAANEAAADRAAAAUQAAABEAAAARAAAAEQAAABEAAACRAAAAkQAAABEAAABRAAAAl4AAABEAAACRAAAAEQAAABEAAABRAAAAEQAAAFEAAADRAAAAEQAAANEAAADXgAAAEQAAANEAAADRAAAA0QAAAFeAAAARAAAAUQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAAARAAAAV4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAATgAAAA== - 2,-3: - ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABeAAAAWwAAAF0AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAAFEAAABXgAAABYAAABeAAAAFgAAAxYAAAFbAAADWwAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAABRAAAAF4AAAAWAAADXgAAABYAAABeAAAAWwAAAF4AAABbAAABRAAAA0QAAABEAAABRAAAAkQAAAJEAAAARAAAA0QAAAFeAAAAFgAAAxYAAAFeAAAAFgAAA14AAABbAAABWwAAAEQAAAJEAAACRAAAAkQAAAJEAAADRAAAAEQAAAFEAAAAXgAAAF4AAABeAAAAFgAAAhYAAAFbAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAF4AAABbAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABOAAAAXgAAAFsAAABbAAACXgAAAA== - -2,0: - ind: -2,0 - tiles: AAAAAF0AAAAAAAAAXgAAAB0AAAIdAAACHQAAAx0AAAEdAAABXgAAAEQAAAJEAAADRAAAAl4AAABeAAAAXgAAAAAAAABdAAAAXQAAAF4AAAAdAAABPwAAAA8AAAA/AAAAHQAAAF4AAABEAAADRAAAAEQAAAFeAAAATgAAAF4AAAAAAAAAXQAAAAAAAABeAAAAHQAAAw8AAAA/AAAADwAAAB0AAANeAAAARAAAAUQAAAJEAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAXgAAAB0AAAI/AAAADwAAAD8AAAAdAAACXgAAAEQAAANEAAABRAAAAF4AAABOAAAAXgAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAAE4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABEAAADRAAAASkAAAMpAAAAKQAAAF4AAAApAAAAXgAAAF4AAABOAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABeAAAAKQAAA14AAAApAAACXgAAAEQAAAJeAAAARAAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAF0AAABdAAAAXgAAAF4AAAApAAACRAAAAkQAAABeAAAAKQAAA0QAAAFeAAAATgAAAF4AAABdAAAAXQAAAF0AAABdAAAAAAAAAF4AAABeAAAARAAAAV4AAABeAAAAXgAAACkAAAJeAAAAXgAAAE4AAABeAAAAXgAAAF0AAAAAAAAAXQAAAAAAAABeAAAARAAAACkAAANeAAAARAAAAV4AAAApAAACKQAAAl4AAABeAAAAXgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAXgAAAEQAAAJeAAAAKQAAASkAAAFEAAABXgAAACkAAANeAAAATgAAAE4AAABeAAAAXQAAAF0AAABdAAAAAAAAAF4AAABeAAAAKQAAA14AAABEAAADKQAAAikAAAJEAAABXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABeAAAARAAAASkAAAJEAAADXgAAAEQAAAEpAAAAXgAAAF4AAABOAAAATgAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAA== - 3,-2: - ind: 3,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAARwAAACkAAANeAAAAXQAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF0AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAE4AAABeAAAARAAAAEcAAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAACkAAAEpAAABRAAAAkcAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAARAAAAikAAAFEAAABXgAAAF4AAABEAAACRAAAAkQAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAEcAAABeAAAAXgAAAEQAAABEAAABRAAAAF4AAABdAAAAXgAAAF4AAABOAAAATgAAAEQAAAFHAAAARAAAAikAAAJeAAAAXgAAAF4AAABEAAADRAAAAkQAAANeAAAAXQAAAF4AAABOAAAATgAAAF4AAABeAAAARAAAAl4AAAApAAADXgAAAAAAAABEAAACRAAAAkQAAAJEAAABXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAARAAAAkQAAAFEAAABRAAAAl4AAAAAAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAF4AAABEAAADRAAAA0QAAAFeAAAAAAAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAARAAAA0QAAAFEAAACXgAAAF0AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAAAAAABdAAAAXgAAAEQAAAFEAAABRAAAAF4AAABdAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAATgAAAF4AAAAAAAAAXQAAAEQAAAFEAAABRAAAAEQAAAFeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAA== - 3,-3: - ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAABeAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAXgAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAWwAAAl4AAABHAAAARwAAAEQAAAFHAAAARwAAAF4AAABeAAAATgAAAE4AAABeAAAARAAAAikAAAJeAAAAAAAAAFsAAABbAAADRAAAAV4AAABEAAADXgAAAEQAAABOAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABbAAAAXgAAAF4AAABEAAAAXgAAAEcAAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABEAAAARAAAAUcAAABeAAAAXgAAAF4AAAAQAAACEAAAARAAAAMQAAACXgAAAF4AAABeAAAATgAAAF4AAABeAAAAKQAAAUcAAABeAAAAXgAAAFsAAAFeAAAAEAAAAhAAAANeAAAAEAAAAl4AAABeAAAAXgAAAE4AAABeAAAAKQAAASkAAAJeAAAARAAAAl4AAABbAAACXgAAAF4AAAAQAAAAEAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACkAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAQAAABXgAAAF4AAAAQAAABXgAAAE4AAABOAAAAXgAAAF4AAABHAAAARAAAAikAAANeAAAAXQAAAA== - 4,-3: - ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,-2: - ind: 4,-2 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,0: - ind: -1,0 - tiles: TgAAAE4AAABeAAAARQAAAkUAAABFAAAARQAAAkUAAANFAAAARQAAAEUAAAFFAAABRQAAAkUAAANeAAAARAAAAU4AAABeAAAAXgAAAEUAAAFFAAACRQAAAEUAAABFAAADRQAAAkUAAANFAAABRQAAAEUAAANFAAADXgAAAEQAAAJeAAAAXgAAAF4AAABFAAADRQAAAkUAAAJFAAADRQAAA0UAAAJFAAABRQAAA0UAAAJFAAAARQAAA14AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEgAAABIAAABSAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAADoAAAA6AAAAOgAAAEUAAANIAAAASAAAAkgAAAJeAAAAUgAAAlIAAANSAAAAUQAAAVEAAANeAAAAAAAAADoAAAA6AAAAOgAAADoAAABIAAADSAAAA0gAAAFIAAABXgAAAFIAAAFSAAADXgAAAFEAAABRAAADXgAAAF0AAABeAAAAOgAAADoAAAA6AAAARQAAAkgAAAJIAAAASAAAAF4AAABeAAAAXgAAAF4AAABRAAADUQAAAl4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABIAAABSAAAAkgAAABeAAAAUgAAAFIAAAJSAAAAUQAAAlEAAANeAAAAXQAAAF4AAAA6AAAAOgAAADoAAABFAAADSAAAAEgAAANIAAABXgAAAFIAAABSAAABXgAAAFEAAABRAAADXgAAAF0AAAA6AAAAOgAAADoAAAA6AAAASAAAAUgAAAJIAAABSAAAA14AAABeAAAAXgAAAF4AAABRAAACUQAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAAEUAAAJIAAADSAAAAEgAAABeAAAAUgAAAVIAAABSAAABUQAAA1EAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAASAAAA0gAAANIAAADXgAAAFIAAABSAAAAXgAAAFEAAAJRAAACXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAACUQAAAF4AAABeAAAATgAAAE4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABUAAADVAAAAVQAAAFeAAAAUQAAAlEAAAJeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAVAAAAFQAAAFUAAAAVAAAA1EAAAFRAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFQAAABUAAADVAAAAF4AAABRAAABUQAAAA== - -2,-1: - ind: -2,-1 - tiles: WwAAAFsAAANbAAAAWwAAAVsAAAFbAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAE4AAABOAAAATgAAAFsAAANbAAABWwAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAFwAAABcAAAAXAAAAFwAAA14AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABcAAAAXAAABFwAAAxcAAABeAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXQAAAF4AAABEAAAARAAAAUQAAAFEAAABRAAAAkQAAAJEAAABRAAAAkQAAANEAAAARAAAA0QAAAMAAAAAXQAAAAAAAABeAAAARAAAA0QAAAJEAAAARAAAAkQAAANEAAADRAAAAEQAAANEAAACRAAAAUQAAANEAAABAAAAAF0AAAAAAAAAXgAAAEQAAAFEAAABRAAAAkQAAABEAAADXgAAAEQAAABEAAACRAAAA14AAABFAAAAXgAAAA== - -1,1: - ind: -1,1 - tiles: XQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAFQAAABUAAAAVAAAAV4AAABRAAAAUQAAAwAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAlEAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAATgAAAF4AAABOAAAAXgAAAFEAAABRAAABUQAAA1EAAAFRAAACAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABRAAADUQAAAVEAAANRAAABUQAAAwAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAUQAAAVEAAABRAAACUQAAAVEAAAJdAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAFEAAABRAAABUQAAAFEAAAJRAAADAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABYAAABWAAAAlgAAABYAAADWAAAAgAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAWAAAAlgAAABYAAABWAAAAVgAAAFdAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFgAAANYAAACWAAAAFgAAANYAAACAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAATgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAAACAAAAAgAAAF4AAAACAAAAXgAAACMAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAACAAAAXgAAACMAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAACAAAAXgAAAF4AAAACAAAAXgAAAA== - 0,1: - ind: 0,1 - tiles: XgAAABcAAAAXAAAAFwAAABcAAAJeAAAATgAAAF4AAABeAAAARAAAAUQAAABEAAACRAAAAF4AAABEAAABRAAAAF4AAAAXAAACFwAAARcAAAMXAAACXgAAAE4AAABOAAAAXgAAAEQAAAJEAAAARAAAAkQAAAJeAAAARAAAAkQAAAFeAAAAFwAAAxcAAAMXAAADFwAAAl4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAAFEAAAARAAAAUQAAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAABRAAAAkQAAAFEAAADRAAAAFEAAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAEQAAAJEAAAARAAAA0QAAAJeAAAARAAAAUQAAAFRAAABXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAADRAAAAkQAAABEAAABXgAAAEQAAANEAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABOAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAjAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,1: - ind: 1,1 - tiles: RAAAAEQAAAJEAAACXgAAAEQAAAJEAAAARAAAA14AAABeAAAATgAAAF4AAABEAAABRAAAAUQAAANEAAACRAAAA0QAAAFEAAABRAAAAUQAAAJEAAAARAAAAUQAAANeAAAATgAAAE4AAABeAAAARAAAAkQAAABEAAAARAAAAEQAAAJEAAACRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAUQAAAJEAAABRAAAAkQAAABEAAAARAAAA0QAAAFEAAAARAAAA14AAABeAAAATgAAAF4AAABeAAAARAAAAkQAAANEAAACXgAAAEQAAAFEAAACRAAAA0QAAANEAAABRAAAAkQAAAJeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAEQAAAJEAAAARAAAAkQAAAJEAAADXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,1: - ind: 2,1 - tiles: XgAAAEQAAAJEAAABRAAAAUQAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAANEAAACRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,1: - ind: 3,1 - tiles: XgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,1: - ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,2: - ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,2: - ind: 0,2 - tiles: XgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-2: - ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABbAAABWwAAAFsAAABbAAADWwAAA1sAAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAWwAAAVsAAAJbAAADWwAAAlsAAABbAAADXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAFsAAABbAAABJgAAACYAAABbAAAAWwAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABbAAADWwAAAyYAAAAmAAAAWwAAA1sAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAWwAAAVsAAAMmAAAAJgAAAFsAAANbAAADXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAA== - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,-2: - ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXgAAAA== - 4,0: - ind: 4,0 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - 0,-1: - 0: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - coordinates: 9,-14 - 1: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - coordinates: 9,-15 - 2: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - coordinates: 9,-13 - 3: - color: '#9FED5896' - id: FullTileOverlayGreyscale - coordinates: 8,-14 - 4: - color: '#9FED5896' - id: HalfTileOverlayGreyscale180 - coordinates: 6,-15 - 5: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - coordinates: 5,-14 - 6: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - coordinates: 7,-14 - 7: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 7,-13 - 8: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - coordinates: 6,-13 - 9: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 7,-15 - 10: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 5,-15 - 11: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 5,-13 - 12: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - coordinates: 22,-24 - 13: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - coordinates: 22,-23 - 14: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - coordinates: 22,-22 - 15: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - coordinates: 22,-21 - 16: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - coordinates: 22,-20 - 17: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - coordinates: 22,-19 - 18: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - coordinates: 22,-18 - 19: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - coordinates: 22,-17 - 20: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 26,-2 - 21: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 24,-2 - 22: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 26,-3 - 23: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 24,-3 - 24: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - coordinates: 25,-3 - 25: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - coordinates: 25,-2 - 26: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - coordinates: 27,-2 - 27: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - coordinates: 27,-3 - 28: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 28,-2 - 29: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 28,-3 - 30: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - coordinates: 29,-3 - 31: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - coordinates: 29,-2 - 32: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 29,-1 - 33: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 30,-1 - 34: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - coordinates: 30,-2 - 35: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - coordinates: 30,-3 - 51: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - coordinates: 31,-4 - 52: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - coordinates: 29,-4 - 53: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - coordinates: 29,-5 - 60: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - coordinates: 30,-6 - 61: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - coordinates: 31,-6 - 77: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - coordinates: 30,-4 - 78: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 29,-6 - 89: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - coordinates: 23,-5 - 90: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - coordinates: 23,-6 - 91: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - coordinates: 23,-7 - 92: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - coordinates: 23,-8 - 93: - color: '#79150096' - id: QuarterTileOverlayGreyscale - coordinates: 21,-12 - 94: - color: '#79150096' - id: QuarterTileOverlayGreyscale - coordinates: 21,-11 - 95: - color: '#79150096' - id: QuarterTileOverlayGreyscale - coordinates: 21,-10 - 96: - color: '#79150096' - id: QuarterTileOverlayGreyscale - coordinates: 21,-9 - 97: - color: '#79150096' - id: QuarterTileOverlayGreyscale - coordinates: 21,-8 - 98: - color: '#79150096' - id: QuarterTileOverlayGreyscale - coordinates: 21,-7 - 99: - color: '#79150096' - id: QuarterTileOverlayGreyscale - coordinates: 21,-6 - 100: - color: '#79150096' - id: QuarterTileOverlayGreyscale - coordinates: 21,-4 - 101: - color: '#79150096' - id: QuarterTileOverlayGreyscale - coordinates: 21,-3 - 102: - color: '#79150096' - id: QuarterTileOverlayGreyscale - coordinates: 21,-2 - 103: - color: '#79150096' - id: QuarterTileOverlayGreyscale - coordinates: 21,-1 - 114: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - coordinates: 10,-1 - 115: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - coordinates: 10,-2 - 116: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - coordinates: 10,-3 - 117: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - coordinates: 10,-4 - 118: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - coordinates: 10,-5 - 119: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - coordinates: 10,-6 - 120: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - coordinates: 10,-7 - 121: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - coordinates: 10,-8 - 122: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - coordinates: 10,-9 - 123: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - coordinates: 10,-10 - 124: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - coordinates: 10,-11 - 125: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - coordinates: 10,-12 - 126: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - coordinates: 10,-16 - 127: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - coordinates: 10,-17 - 128: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - coordinates: 10,-18 - 129: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - coordinates: 10,-19 - 130: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - coordinates: 10,-20 - 131: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - coordinates: 10,-21 - 132: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - coordinates: 11,-22 - 133: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - coordinates: 12,-22 - 134: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - coordinates: 13,-22 - 135: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - coordinates: 14,-22 - 136: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - coordinates: 15,-22 - 137: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - coordinates: 16,-22 - 138: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - coordinates: 17,-22 - 139: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - coordinates: 19,-22 - 140: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - coordinates: 20,-22 - 141: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - coordinates: 21,-21 - 142: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - coordinates: 21,-20 - 143: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - coordinates: 21,-19 - 144: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - coordinates: 21,-18 - 145: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - coordinates: 21,-17 - 146: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - coordinates: 21,-16 - 147: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - coordinates: 18,-22 - 166: - color: '#FFFFFFFF' - id: SpaceStationSign1 - coordinates: 12,-23 - 167: - color: '#FFFFFFFF' - id: SpaceStationSign2 - coordinates: 13,-23 - 168: - color: '#FFFFFFFF' - id: SpaceStationSign3 - coordinates: 14,-23 - 169: - color: '#FFFFFFFF' - id: SpaceStationSign4 - coordinates: 15,-23 - 170: - color: '#FFFFFFFF' - id: SpaceStationSign5 - coordinates: 16,-23 - 171: - color: '#FFFFFFFF' - id: SpaceStationSign6 - coordinates: 17,-23 - 172: - color: '#FFFFFFFF' - id: SpaceStationSign7 - coordinates: 18,-23 - 175: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 25,-21 - 176: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 28,-24 - 177: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 27,-24 - 178: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 24,-21 - 179: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 26,-17 - 182: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 28,-17 - 188: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 26,-16 - 189: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 25,-19 - 190: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 24,-19 - 191: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 27,-19 - 197: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 30,-16 - 198: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 31,-16 - 227: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 29,-19 - 228: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 28,-19 - 229: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - coordinates: 30,-19 - 230: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - coordinates: 31,-19 - 231: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - coordinates: 31,-18 - 232: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - coordinates: 31,-17 - 233: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - coordinates: 30,-18 - 234: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - coordinates: 30,-17 - 235: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 27,-16 - 237: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 27,-17 - 239: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 28,-16 - 241: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - coordinates: 27,-20 - 242: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - coordinates: 27,-21 - 243: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - coordinates: 27,-22 - 244: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - coordinates: 27,-23 - 245: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - coordinates: 26,-23 - 246: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - coordinates: 29,-23 - 247: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - coordinates: 28,-23 - 248: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - coordinates: 28,-22 - 249: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - coordinates: 28,-21 - 250: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 29,-21 - 251: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 30,-21 - 252: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 31,-21 - 268: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - coordinates: 26,-21 - 269: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - coordinates: 24,-20 - 270: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - coordinates: 25,-20 - 287: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 25,-23 - 288: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 24,-23 - 289: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 25,-24 - 290: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 24,-24 - 291: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 30,-24 - 292: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 31,-24 - 293: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 31,-23 - 294: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 30,-23 - 322: - color: '#EA4F2596' - id: QuarterTileOverlayGreyscale90 - coordinates: 28,-29 - 323: - color: '#EA4F2596' - id: QuarterTileOverlayGreyscale90 - coordinates: 28,-30 - 324: - color: '#EA4F2596' - id: QuarterTileOverlayGreyscale90 - coordinates: 29,-30 - 326: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - coordinates: 27,-32 - 327: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - coordinates: 27,-31 - 328: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - coordinates: 28,-31 - 329: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - coordinates: 29,-31 - 331: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - coordinates: 26,-32 - 332: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - coordinates: 26,-31 - 333: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - coordinates: 25,-31 - 334: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - coordinates: 24,-31 - 358: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - coordinates: 29,-17 - 361: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - coordinates: 26,-20 - 366: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - coordinates: 16,-30 - 367: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - coordinates: 16,-31 - 368: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - coordinates: 16,-32 - 369: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - coordinates: 16,-29 - 370: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - coordinates: 12,-3 - 371: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - coordinates: 13,-3 - 372: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - coordinates: 18,-3 - 373: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - coordinates: 19,-3 - 374: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - coordinates: 15,-5 - 375: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - coordinates: 16,-5 - 376: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 15,-1 - 377: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 16,-1 - 378: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 12,-5 - 379: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 13,-5 - 380: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 14,-5 - 381: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 15,-5 - 382: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 16,-5 - 383: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 17,-5 - 384: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 18,-5 - 385: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 19,-5 - 386: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - coordinates: 17,-1 - 387: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - coordinates: 20,-3 - 388: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - coordinates: 14,-3 - 389: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - coordinates: 17,-5 - 390: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - coordinates: 11,-5 - 392: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - coordinates: 17,-3 - 393: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - coordinates: 11,-3 - 394: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - coordinates: 14,-5 - 396: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - coordinates: 20,-5 - 397: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - coordinates: 14,-1 - 398: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - coordinates: 14,-2 - 399: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - coordinates: 14,-1 - 400: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - coordinates: 17,-2 - 401: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - coordinates: 17,-1 - 402: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - coordinates: 14,-2 - 403: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - coordinates: 14,-3 - 404: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - coordinates: 14,-4 - 405: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - coordinates: 17,-4 - 406: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - coordinates: 17,-3 - 407: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - coordinates: 17,-2 - 408: - color: '#79150096' - id: QuarterTileOverlayGreyscale - coordinates: 21,-5 - 415: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - coordinates: 19,-19 - 416: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - coordinates: 17,-20 - 417: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - coordinates: 16,-20 - 418: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - coordinates: 15,-20 - 419: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - coordinates: 14,-20 - 420: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - coordinates: 13,-20 - 421: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - coordinates: 12,-19 - 422: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - coordinates: 13,-17 - 423: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - coordinates: 14,-17 - 424: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - coordinates: 15,-17 - 425: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - coordinates: 16,-17 - 426: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - coordinates: 18,-17 - 427: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNe - coordinates: 19,-17 - 428: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSe - coordinates: 19,-20 - 429: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNw - coordinates: 12,-17 - 430: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSw - coordinates: 12,-20 - 431: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - coordinates: 15,-10 - 432: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - coordinates: 19,-10 - 433: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSw - coordinates: 15,-12 - 434: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSe - coordinates: 19,-12 - 435: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - coordinates: 16,-12 - 436: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - coordinates: 16,-10 - 437: - color: '#FFFFFFFF' - id: BrickTileWhiteBox - coordinates: 11,-11 - 438: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - coordinates: 13,-10 - 439: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSe - coordinates: 13,-12 - 440: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - coordinates: 12,-10 - 441: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSw - coordinates: 12,-12 - 443: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - coordinates: 27,-5 - 444: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - coordinates: 27,-8 - 445: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - coordinates: 25,-8 - 446: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - coordinates: 25,-10 - 447: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - coordinates: 25,-11 - 448: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - coordinates: 27,-10 - 449: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - coordinates: 27,-11 - 450: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 26,-11 - 451: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - coordinates: 25,-7 - 452: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - coordinates: 25,-6 - 453: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - coordinates: 27,-6 - 454: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - coordinates: 27,-7 - 477: - color: '#FFFFFFFF' - id: MiniTileSteelInnerNw - coordinates: 14,-32 - 478: - color: '#FFFFFFFF' - id: MiniTileSteelInnerSw - coordinates: 14,-29 - 479: - color: '#FFFFFFFF' - id: MiniTileSteelLineW - coordinates: 14,-31 - 480: - color: '#FFFFFFFF' - id: MiniTileSteelLineW - coordinates: 14,-30 - 481: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - coordinates: 5,-19 - 482: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - coordinates: 6,-20 - 483: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - coordinates: 4,-19 - 484: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - coordinates: 3,-20 - 485: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSw - coordinates: 3,-22 - 486: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSe - coordinates: 6,-22 - 487: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - coordinates: 4,-22 - 488: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - coordinates: 5,-22 - 489: - color: '#FFFFFFFF' - id: BrickTileWhiteLineW - coordinates: 3,-21 - 490: - color: '#FFFFFFFF' - id: BrickTileWhiteLineE - coordinates: 6,-21 - 491: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerNe - coordinates: 5,-20 - 492: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerNw - coordinates: 4,-20 - 493: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - coordinates: 26,-9 - 494: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - coordinates: 26,-9 - 495: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - coordinates: 26,-8 - 496: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - coordinates: 26,-8 - 497: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - coordinates: 26,-10 - 498: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - coordinates: 26,-10 - 502: - color: '#FFFFFFFF' - id: WoodTrimThinEndN - coordinates: 25,-4 - 503: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - coordinates: 25,-5 - 504: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - coordinates: 26,-5 - 505: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - coordinates: 25,-5 - 506: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - coordinates: 18,-12 - 507: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerNe - coordinates: 18,-10 - 508: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerNw - coordinates: 17,-10 - 509: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - coordinates: 18,-9 - 510: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - coordinates: 17,-9 - 511: - color: '#FFFFFFFF' - id: BrickTileWhiteEndW - coordinates: 11,-11 - 512: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerNw - coordinates: 12,-11 - 513: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerSw - coordinates: 12,-11 - 514: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - coordinates: 10,-15 - 515: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - coordinates: 10,-13 - 516: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - coordinates: 0,-13 - 518: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - coordinates: 0,-15 - 525: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - coordinates: 0,-14 - 529: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - coordinates: 0,-17 - 530: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - coordinates: 1,-17 - 535: - color: '#FFFFFFFF' - id: WoodTrimThinBox - coordinates: 0,-16 - 536: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - coordinates: 17,-12 - 537: - color: '#FFFFFFFF' - id: BrickTileWhiteLineW - coordinates: 15,-11 - 538: - color: '#FFFFFFFF' - id: BrickTileWhiteLineE - coordinates: 13,-11 - 539: - color: '#FFFFFFFF' - id: BrickTileWhiteLineE - coordinates: 19,-11 - 540: - color: '#FFFFFFFF' - id: BrickTileWhiteBox - coordinates: 14,-11 - 541: - color: '#FFFFFFFF' - id: BrickTileWhiteBox - coordinates: 20,-11 - 542: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - coordinates: 12,-6 - 543: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - coordinates: 12,-8 - 544: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 14,-8 - 545: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 13,-8 - 546: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - coordinates: 19,-7 - 547: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - coordinates: 12,-7 - 548: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - coordinates: 13,-6 - 549: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - coordinates: 14,-6 - 550: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - coordinates: 15,-6 - 551: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - coordinates: 16,-6 - 552: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - coordinates: 17,-6 - 553: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - coordinates: 18,-6 - 554: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - coordinates: 19,-6 - 555: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 16,-8 - 556: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 17,-8 - 557: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 18,-8 - 558: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - coordinates: 19,-8 - 559: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 15,-8 - 560: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - coordinates: 4,-18 - 561: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - coordinates: 5,-18 - 562: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerSe - coordinates: 3,-18 - 563: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerSw - coordinates: 6,-18 - 583: - color: '#FFFFFFFF' - id: MiniTileSteelBox - coordinates: 15,-31 - 584: - color: '#FFFFFFFF' - id: MiniTileSteelBox - coordinates: 15,-27 - 803: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: 7,-2 - 804: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: 6,-2 - 805: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: 5,-2 - 806: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: 4,-2 - 807: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: 3,-2 - 808: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: 3,-2 - 809: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: 2,-2 - 810: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: 1,-2 - 811: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: 1,-2 - 812: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: 0,-2 - 840: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: 0,-8 - 841: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: 1,-8 - 842: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: 2,-8 - 843: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: 3,-8 - 844: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: 3,-8 - 845: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: 3,-7 - 846: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: 3,-6 - 847: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: 4,-5 - 848: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: 5,-5 - 849: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: 6,-5 - 850: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: 7,-5 - 851: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: 7,-5 - 852: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: 7,-4 - 853: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: 7,-3 - 964: - color: '#D381C996' - id: FullTileOverlayGreyscale - coordinates: 0,-1 - 965: - color: '#D381C996' - id: FullTileOverlayGreyscale - coordinates: 1,-1 - 970: - color: '#D381C996' - id: FullTileOverlayGreyscale - coordinates: 6,-1 - 1050: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - coordinates: 12,-18 - 1051: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - coordinates: 18,-20 - 1052: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - coordinates: 19,-18 - 1053: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - coordinates: 17,-17 - 1054: - color: '#FFFFFFFF' - id: BrickTileSteelBox - coordinates: 11,-18 - 1055: - color: '#FFFFFFFF' - id: BrickTileSteelBox - coordinates: 17,-16 - 1056: - color: '#FFFFFFFF' - id: BrickTileSteelBox - coordinates: 20,-18 - 1057: - color: '#FFFFFFFF' - id: BrickTileSteelBox - coordinates: 18,-21 - 1,-1: - 36: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - coordinates: 42,-7 - 37: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - coordinates: 42,-8 - 38: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - coordinates: 42,-9 - 39: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - coordinates: 42,-10 - 40: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - coordinates: 41,-2 - 44: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - coordinates: 40,-5 - 45: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - coordinates: 39,-5 - 46: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - coordinates: 38,-5 - 47: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - coordinates: 37,-5 - 48: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - coordinates: 34,-4 - 49: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - coordinates: 33,-4 - 50: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - coordinates: 32,-4 - 54: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - coordinates: 37,-2 - 55: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - coordinates: 37,-1 - 56: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - coordinates: 39,-7 - 57: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - coordinates: 39,-8 - 58: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - coordinates: 39,-9 - 59: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - coordinates: 39,-10 - 62: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - coordinates: 33,-6 - 63: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - coordinates: 32,-6 - 64: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - coordinates: 34,-6 - 65: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - coordinates: 36,-6 - 66: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - coordinates: 35,-6 - 67: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - coordinates: 37,-6 - 68: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - coordinates: 38,-6 - 69: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - coordinates: 40,-11 - 70: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - coordinates: 41,-11 - 71: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - coordinates: 40,-3 - 72: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - coordinates: 39,-3 - 73: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - coordinates: 38,-3 - 74: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - coordinates: 36,-5 - 75: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - coordinates: 35,-5 - 76: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - coordinates: 41,-6 - 79: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 39,-11 - 80: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 37,-3 - 81: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - coordinates: 39,-6 - 82: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 35,-4 - 84: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 41,-5 - 85: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 42,-6 - 87: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 41,-3 - 88: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 42,-11 - 173: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - coordinates: 43,-8 - 174: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - coordinates: 43,-9 - 180: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 33,-17 - 181: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 35,-17 - 183: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 44,-27 - 184: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 42,-27 - 185: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 41,-21 - 186: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 44,-21 - 187: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 35,-16 - 192: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 39,-19 - 193: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 44,-19 - 194: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 44,-26 - 195: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 42,-26 - 196: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 41,-19 - 199: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 33,-24 - 200: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 44,-23 - 201: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 44,-24 - 202: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 34,-24 - 203: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 35,-24 - 204: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 43,-24 - 205: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 42,-24 - 206: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 41,-24 - 207: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 40,-24 - 208: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 39,-24 - 209: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 38,-24 - 210: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 36,-24 - 211: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 37,-24 - 212: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 43,-23 - 213: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 42,-23 - 214: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 41,-23 - 215: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 40,-23 - 216: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - coordinates: 39,-23 - 217: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - coordinates: 39,-22 - 218: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - coordinates: 39,-21 - 219: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - coordinates: 39,-20 - 220: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 38,-19 - 221: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 37,-19 - 222: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 36,-19 - 223: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 35,-19 - 224: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 34,-19 - 225: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 33,-19 - 226: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 32,-19 - 236: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 34,-16 - 238: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 34,-17 - 240: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 33,-16 - 253: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 32,-21 - 254: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - coordinates: 33,-21 - 255: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - coordinates: 33,-22 - 256: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - coordinates: 33,-23 - 257: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - coordinates: 41,-20 - 258: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 42,-19 - 259: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 43,-19 - 260: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - coordinates: 44,-20 - 261: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 42,-21 - 262: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 43,-21 - 263: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 43,-27 - 264: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 43,-26 - 265: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - coordinates: 45,-24 - 266: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - coordinates: 48,-23 - 267: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - coordinates: 48,-24 - 271: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - coordinates: 47,-23 - 272: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - coordinates: 46,-23 - 273: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 47,-22 - 274: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 46,-22 - 275: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 47,-24 - 276: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 46,-24 - 277: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 36,-29 - 278: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 39,-29 - 279: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 39,-27 - 280: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 36,-27 - 281: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - coordinates: 36,-28 - 282: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 37,-29 - 283: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 38,-29 - 284: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - coordinates: 39,-28 - 285: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 37,-27 - 286: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 38,-27 - 295: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 49,-19 - 296: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 51,-19 - 297: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 51,-27 - 298: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 49,-27 - 299: - color: '#EA4F2596' - id: HalfTileOverlayGreyscale180 - coordinates: 50,-27 - 300: - color: '#EA4F2596' - id: HalfTileOverlayGreyscale - coordinates: 50,-19 - 301: - color: '#EA4F2596' - id: HalfTileOverlayGreyscale270 - coordinates: 49,-26 - 302: - color: '#EA4F2596' - id: HalfTileOverlayGreyscale270 - coordinates: 49,-25 - 303: - color: '#EA4F2596' - id: HalfTileOverlayGreyscale270 - coordinates: 49,-24 - 304: - color: '#EA4F2596' - id: HalfTileOverlayGreyscale270 - coordinates: 49,-23 - 305: - color: '#EA4F2596' - id: HalfTileOverlayGreyscale270 - coordinates: 49,-22 - 306: - color: '#EA4F2596' - id: HalfTileOverlayGreyscale270 - coordinates: 49,-21 - 307: - color: '#EA4F2596' - id: HalfTileOverlayGreyscale270 - coordinates: 49,-20 - 308: - color: '#EA4F2596' - id: HalfTileOverlayGreyscale90 - coordinates: 51,-20 - 309: - color: '#EA4F2596' - id: HalfTileOverlayGreyscale90 - coordinates: 51,-21 - 310: - color: '#EA4F2596' - id: HalfTileOverlayGreyscale90 - coordinates: 51,-22 - 311: - color: '#EA4F2596' - id: HalfTileOverlayGreyscale90 - coordinates: 51,-23 - 312: - color: '#EA4F2596' - id: HalfTileOverlayGreyscale90 - coordinates: 51,-24 - 313: - color: '#EA4F2596' - id: HalfTileOverlayGreyscale90 - coordinates: 51,-25 - 314: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 47,-20 - 315: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 47,-27 - 316: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 46,-27 - 317: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 46,-20 - 318: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 47,-19 - 319: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 47,-26 - 320: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 46,-19 - 321: - color: '#EA4F2596' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 46,-26 - 339: - color: '#EF694196' - id: FullTileOverlayGreyscale - coordinates: 48,-27 - 340: - color: '#EF694196' - id: FullTileOverlayGreyscale - coordinates: 48,-19 - 341: - color: '#FFFFFFFF' - id: Bushc2 - coordinates: 61,-32 - 346: - color: '#FFFFFFFF' - id: Rock05 - coordinates: 59,-29 - 347: - color: '#FFFFFFFF' - id: Flowerspv1 - coordinates: 58,-29 - 348: - color: '#FFFFFFFF' - id: Bushi3 - coordinates: 61,-26 - 349: - color: '#FFFFFFFF' - id: Bushe1 - coordinates: 61,-25 - 350: - color: '#FFFFFFFF' - id: Busha1 - coordinates: 60,-28 - 353: - color: '#FFFFFFFF' - id: Rock06 - coordinates: 61,-30 - 354: - color: '#FFFFFFFF' - id: Bushc3 - coordinates: 59,-26 - 356: - color: '#FFFFFFFF' - id: Bushb3 - coordinates: 59,-31 - 357: - color: '#FFFFFFFF' - id: Bushc1 - coordinates: 61,-29 - 359: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - coordinates: 32,-17 - 360: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - coordinates: 45,-23 - 362: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - coordinates: 43,-25 - 363: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - coordinates: 40,-20 - 364: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - coordinates: 38,-26 - 365: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - coordinates: 38,-25 - 442: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - coordinates: 41,-1 - 455: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - coordinates: 35,-2 - 456: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - coordinates: 35,-1 - 457: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - coordinates: 32,-1 - 458: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - coordinates: 32,-2 - 459: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - coordinates: 33,-1 - 460: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - coordinates: 34,-1 - 461: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 33,-2 - 462: - color: '#FFFFFFFF' - id: MiniTileDarkLineN - coordinates: 36,-8 - 463: - color: '#FFFFFFFF' - id: MiniTileDarkCornerNe - coordinates: 37,-8 - 464: - color: '#FFFFFFFF' - id: MiniTileDarkCornerNw - coordinates: 35,-8 - 465: - color: '#FFFFFFFF' - id: MiniTileDarkCornerSe - coordinates: 37,-10 - 466: - color: '#FFFFFFFF' - id: MiniTileDarkCornerSw - coordinates: 35,-10 - 467: - color: '#FFFFFFFF' - id: MiniTileDarkLineS - coordinates: 36,-10 - 468: - color: '#FFFFFFFF' - id: MiniTileDarkLineE - coordinates: 37,-9 - 469: - color: '#FFFFFFFF' - id: MiniTileDarkLineW - coordinates: 35,-9 - 470: - color: '#FFFFFFFF' - id: BrickTileDarkBox - coordinates: 36,-9 - 471: - color: '#334E6DFF' - id: BrickTileWhiteCornerNe - coordinates: 42,-13 - 472: - color: '#334E6DFF' - id: BrickTileWhiteCornerNw - coordinates: 41,-13 - 473: - color: '#334E6DFF' - id: BrickTileWhiteCornerSw - coordinates: 41,-14 - 474: - color: '#334E6DFF' - id: BrickTileWhiteCornerSe - coordinates: 42,-14 - 475: - color: '#334E6DFF' - id: BrickTileWhiteBox - coordinates: 41,-12 - 476: - color: '#334E6DFF' - id: BrickTileWhiteBox - coordinates: 43,-13 - 499: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - coordinates: 34,-2 - 500: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - coordinates: 34,-2 - 501: - color: '#FFFFFFFF' - id: WoodTrimThinEndS - coordinates: 34,-3 - 1188: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - coordinates: 55,-9 - 1189: - color: '#FFFFFFFF' - id: BrickTileDarkBox - coordinates: 60,-4 - 1190: - color: '#FFFFFFFF' - id: BrickTileDarkBox - coordinates: 56,-4 - 1191: - color: '#FFFFFFFF' - id: Delivery - coordinates: 55,-4 - 1192: - color: '#FFFFFFFF' - id: Delivery - coordinates: 57,-4 - 1193: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: 58,-4 - 1194: - color: '#FFFFFFFF' - id: WarnLineE - coordinates: 54,-4 - 1195: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - coordinates: 58,-3 - 1196: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - coordinates: 54,-3 - 1197: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - coordinates: 58,-5 - 1198: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - coordinates: 54,-5 - 1199: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: 56,-9 - 1200: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: 57,-9 - 1201: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: 55,-1 - 1202: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: 56,-1 - 1203: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: 57,-1 - 1204: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - coordinates: 54,-1 - 1205: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - coordinates: 53,-2 - 1206: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - coordinates: 58,-7 - 1207: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - coordinates: 59,-6 - 1208: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - coordinates: 62,-10 - 1209: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - coordinates: 58,-11 - 1210: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - coordinates: 58,-1 - 1211: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - coordinates: 59,-2 - 1212: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - coordinates: 62,-8 - 1213: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - coordinates: 58,-9 - 1214: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - coordinates: 54,-7 - 1215: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - coordinates: 53,-6 - 1216: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - coordinates: 55,-11 - 1217: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - coordinates: 60,-10 - 1218: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - coordinates: 60,-8 - 1219: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: 56,-11 - 1220: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: 57,-11 - 1221: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: 61,-10 - 1222: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: 55,-7 - 1223: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: 56,-7 - 1224: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: 57,-7 - 1225: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: 61,-8 - 1226: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - coordinates: 59,-5 - 1227: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - coordinates: 59,-4 - 1228: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - coordinates: 59,-3 - 1229: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - coordinates: 62,-9 - 1230: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - coordinates: 58,-10 - 1231: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: 55,-10 - 1232: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: 53,-5 - 1233: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: 53,-4 - 1234: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: 53,-3 - 1235: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: 60,-9 - 1236: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - coordinates: 54,-2 - 1237: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNe - coordinates: 58,-2 - 1238: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSe - coordinates: 58,-6 - 1239: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - coordinates: 54,-6 - 1240: - color: '#334E6DC8' - id: BrickTileWhiteLineE - coordinates: 62,-4 - 1241: - color: '#334E6DC8' - id: BrickTileWhiteLineN - coordinates: 63,-5 - 1242: - color: '#334E6DC8' - id: BrickTileWhiteLineS - coordinates: 63,-3 - 1243: - color: '#334E6DC8' - id: BrickTileWhiteInnerSe - coordinates: 62,-3 - 1244: - color: '#334E6DC8' - id: BrickTileWhiteInnerNe - coordinates: 62,-5 - 1245: - color: '#DE3A3A96' - id: BotGreyscale - coordinates: 63,-2 - 1246: - color: '#EFB34196' - id: BotGreyscale - coordinates: 63,-6 - 1247: - color: '#52B4E996' - id: BotGreyscale - coordinates: 62,-6 - 1248: - color: '#D381C996' - id: BotGreyscale - coordinates: 62,-2 - 1249: - color: '#A4610696' - id: BotGreyscale - coordinates: 61,-6 - 1250: - color: '#9FED5896' - id: BotGreyscale - coordinates: 61,-2 - 1251: - color: '#9FED5896' - id: BrickTileWhiteLineN - coordinates: 61,-3 - 1252: - color: '#D381C996' - id: BrickTileWhiteLineN - coordinates: 62,-3 - 1253: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - coordinates: 63,-3 - 1254: - color: '#A4610696' - id: BrickTileWhiteLineS - coordinates: 61,-5 - 1255: - color: '#52B4E996' - id: BrickTileWhiteLineS - coordinates: 62,-5 - 1256: - color: '#EFB34196' - id: BrickTileWhiteLineS - coordinates: 63,-5 - 1257: - color: '#334E6DFF' - id: BotGreyscale - coordinates: 63,-4 - 1,0: - 41: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - coordinates: 38,0 - 42: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - coordinates: 39,0 - 43: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - coordinates: 40,0 - 83: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 41,0 - 86: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 37,0 - 625: - color: '#EFB341FF' - id: BoxGreyscale - coordinates: 34,17 - 626: - color: '#EFB341FF' - id: BoxGreyscale - coordinates: 35,17 - 627: - color: '#EFB341FF' - id: BoxGreyscale - coordinates: 36,17 - 628: - color: '#EFB341FF' - id: BoxGreyscale - coordinates: 36,16 - 629: - color: '#EFB341FF' - id: BoxGreyscale - coordinates: 35,16 - 630: - color: '#EFB341FF' - id: BoxGreyscale - coordinates: 34,16 - 631: - color: '#EFB341FF' - id: BoxGreyscale - coordinates: 34,15 - 632: - color: '#EFB341FF' - id: BoxGreyscale - coordinates: 35,15 - 633: - color: '#EFB341FF' - id: BoxGreyscale - coordinates: 36,15 - 634: - color: '#EFB341FF' - id: BoxGreyscale - coordinates: 36,14 - 635: - color: '#EFB341FF' - id: BoxGreyscale - coordinates: 35,14 - 636: - color: '#EFB341FF' - id: BoxGreyscale - coordinates: 34,14 - 1006: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 32,6 - 1007: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 33,6 - 1008: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 34,6 - 1009: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - coordinates: 34,5 - 1010: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - coordinates: 33,5 - 1011: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - coordinates: 32,5 - 1048: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 35,6 - 1049: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 35,5 - 0,0: - 104: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - coordinates: 20,0 - 105: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - coordinates: 19,1 - 106: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - coordinates: 18,2 - 107: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - coordinates: 17,2 - 108: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - coordinates: 16,2 - 109: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - coordinates: 15,2 - 110: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - coordinates: 14,2 - 111: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - coordinates: 13,2 - 112: - color: '#79150096' - id: QuarterTileOverlayGreyscale180 - coordinates: 12,1 - 113: - color: '#79150096' - id: QuarterTileOverlayGreyscale180 - coordinates: 11,0 - 391: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - coordinates: 17,0 - 395: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - coordinates: 14,0 - 591: - color: '#FFFFFFFF' - id: MiniTileSteelBox - coordinates: 10,2 - 592: - color: '#FFFFFFFF' - id: MiniTileSteelBox - coordinates: 21,2 - 637: - color: '#A46106FF' - id: LoadingArea - coordinates: 16,20 - 638: - angle: 3.141592653589793 rad - color: '#A46106FF' - id: LoadingArea - coordinates: 20,20 - 639: - color: '#A46106FF' - id: BotGreyscale - coordinates: 22,20 - 640: - color: '#A46106FF' - id: BotGreyscale - coordinates: 22,19 - 641: - color: '#A46106FF' - id: BotGreyscale - coordinates: 21,20 - 642: - color: '#A46106FF' - id: BotGreyscale - coordinates: 21,19 - 643: - color: '#D4D4D40C' - id: MiniTileSteelCornerSe - coordinates: 0,10 - 644: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - coordinates: 1,18 - 645: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - coordinates: 4,18 - 646: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - coordinates: 4,14 - 647: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - coordinates: 1,14 - 648: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: 2,14 - 649: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - coordinates: 3,14 - 650: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: 2,18 - 651: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: 3,18 - 652: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - coordinates: 4,15 - 653: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - coordinates: 4,16 - 654: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - coordinates: 4,17 - 655: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: 1,17 - 656: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: 1,16 - 657: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: 1,15 - 658: - color: '#FFFFFFFF' - id: BrickTileDarkBox - coordinates: 0,15 - 710: - color: '#52B4E9FF' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 0,21 - 711: - color: '#52B4E9FF' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 0,20 - 736: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: 0,12 - 737: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: 1,12 - 738: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: 2,12 - 739: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: 2,12 - 740: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: 3,12 - 746: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: 4,12 - 747: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale180 - coordinates: 4,12 - 748: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale180 - coordinates: 4,11 - 749: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale180 - coordinates: 4,10 - 750: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale180 - coordinates: 4,9 - 751: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale180 - coordinates: 3,9 - 752: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale180 - coordinates: 2,9 - 753: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale180 - coordinates: 2,8 - 754: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale180 - coordinates: 2,7 - 755: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale180 - coordinates: 2,6 - 756: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale180 - coordinates: 2,5 - 757: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale180 - coordinates: 2,4 - 759: - color: '#52B4E9FF' - id: HalfTileOverlayGreyscale180 - coordinates: 0,4 - 760: - color: '#52B4E9FF' - id: HalfTileOverlayGreyscale180 - coordinates: 1,4 - 779: - color: '#D68F3BFF' - id: MiniTileWhiteLineW - coordinates: 4,5 - 780: - color: '#D68F3BFF' - id: MiniTileWhiteLineW - coordinates: 4,6 - 781: - color: '#D68F3BFF' - id: MiniTileWhiteLineS - coordinates: 5,4 - 782: - color: '#D68F3BFF' - id: MiniTileWhiteLineS - coordinates: 6,4 - 783: - color: '#D68F3BFF' - id: MiniTileWhiteLineE - coordinates: 7,5 - 784: - color: '#D68F3BFF' - id: MiniTileWhiteLineE - coordinates: 7,6 - 785: - color: '#D68F3BFF' - id: MiniTileWhiteLineN - coordinates: 5,7 - 786: - color: '#D68F3BFF' - id: MiniTileWhiteLineN - coordinates: 6,7 - 787: - color: '#D68F3BFF' - id: MiniTileWhiteCornerNw - coordinates: 4,7 - 788: - color: '#D68F3BFF' - id: MiniTileWhiteCornerSe - coordinates: 7,4 - 789: - color: '#D68F3BFF' - id: MiniTileWhiteCornerSw - coordinates: 4,4 - 790: - color: '#D68F3BFF' - id: MiniTileWhiteCornerNe - coordinates: 7,7 - 792: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: 0,2 - 793: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: 1,2 - 794: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: 3,2 - 795: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: 4,2 - 796: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: 5,2 - 797: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: 6,2 - 798: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: 2,2 - 799: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: 7,2 - 800: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: 8,2 - 854: - color: '#FFFFFFFF' - id: MiniTileSteelBox - coordinates: 1,1 - 855: - color: '#FFFFFFFF' - id: MiniTileSteelBox - coordinates: 24,1 - 856: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - coordinates: 26,0 - 857: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - coordinates: 25,0 - 858: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - coordinates: 24,0 - 859: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - coordinates: 23,0 - 860: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - coordinates: 27,0 - 862: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - 863: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: 2,0 - 864: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: 1,0 - 865: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: 3,0 - 866: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: 4,0 - 867: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: 5,0 - 868: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: 6,0 - 869: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: 7,0 - 870: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: 8,0 - 871: - color: '#FFFFFFFF' - id: MiniTileSteelBox - coordinates: 7,1 - 872: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - coordinates: 19,4 - 873: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - coordinates: 18,4 - 874: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - coordinates: 17,4 - 875: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - coordinates: 12,4 - 876: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - coordinates: 13,4 - 877: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - coordinates: 14,4 - 878: - color: '#A4610696' - id: HalfTileOverlayGreyscale - coordinates: 15,4 - 879: - color: '#A4610696' - id: HalfTileOverlayGreyscale - coordinates: 16,4 - 880: - color: '#A46106FF' - id: BrickTileWhiteLineE - coordinates: 16,13 - 881: - color: '#A46106FF' - id: BrickTileWhiteLineS - coordinates: 15,12 - 882: - color: '#A46106FF' - id: BrickTileWhiteLineW - coordinates: 14,13 - 883: - color: '#A46106FF' - id: BrickTileWhiteLineN - coordinates: 15,14 - 884: - color: '#A46106FF' - id: BrickTileWhiteCornerSw - coordinates: 14,12 - 885: - color: '#A46106FF' - id: BrickTileWhiteCornerNw - coordinates: 14,14 - 886: - color: '#A46106FF' - id: BrickTileWhiteCornerSe - coordinates: 16,12 - 887: - color: '#A46106FF' - id: BrickTileWhiteCornerNe - coordinates: 16,14 - 888: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - coordinates: 19,6 - 889: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - coordinates: 12,6 - 890: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - coordinates: 19,10 - 891: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - coordinates: 12,10 - 892: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - coordinates: 13,6 - 893: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - coordinates: 14,6 - 894: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - coordinates: 15,6 - 895: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - coordinates: 16,6 - 896: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - coordinates: 17,6 - 897: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - coordinates: 18,6 - 898: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - coordinates: 19,7 - 899: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - coordinates: 19,8 - 900: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - coordinates: 19,9 - 901: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - coordinates: 12,9 - 902: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - coordinates: 12,8 - 903: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - coordinates: 12,7 - 904: - color: '#A4610696' - id: HalfTileOverlayGreyscale - coordinates: 13,10 - 905: - color: '#A4610696' - id: HalfTileOverlayGreyscale - coordinates: 14,10 - 906: - color: '#A4610696' - id: HalfTileOverlayGreyscale - coordinates: 15,10 - 907: - color: '#A4610696' - id: HalfTileOverlayGreyscale - coordinates: 16,10 - 908: - color: '#A4610696' - id: HalfTileOverlayGreyscale - coordinates: 17,10 - 909: - color: '#A4610696' - id: HalfTileOverlayGreyscale - coordinates: 18,10 - 910: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - coordinates: 18,16 - 911: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - coordinates: 17,16 - 912: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - coordinates: 16,16 - 913: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - coordinates: 15,16 - 914: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - coordinates: 14,16 - 915: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - coordinates: 14,16 - 916: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - coordinates: 14,17 - 917: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - coordinates: 14,18 - 918: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - coordinates: 14,19 - 919: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - coordinates: 14,20 - 920: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - coordinates: 14,21 - 921: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - coordinates: 15,21 - 922: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - coordinates: 16,21 - 923: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - coordinates: 17,21 - 924: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - coordinates: 18,21 - 925: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - coordinates: 19,21 - 926: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - coordinates: 20,21 - 927: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - coordinates: 20,21 - 928: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - coordinates: 20,20 - 929: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - coordinates: 20,19 - 930: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - coordinates: 19,19 - 931: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - coordinates: 18,19 - 932: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - coordinates: 18,18 - 933: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - coordinates: 18,17 - 934: - color: '#A46106FF' - id: BotGreyscale - coordinates: 21,21 - 935: - color: '#A46106FF' - id: BotGreyscale - coordinates: 22,21 - 936: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - coordinates: 9,20 - 937: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - coordinates: 9,19 - 938: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - coordinates: 9,18 - 939: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - coordinates: 9,17 - 940: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - coordinates: 12,17 - 941: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - coordinates: 12,18 - 942: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - coordinates: 12,19 - 943: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - coordinates: 12,20 - 944: - color: '#A4610696' - id: HalfTileOverlayGreyscale - coordinates: 10,21 - 945: - color: '#A4610696' - id: HalfTileOverlayGreyscale - coordinates: 11,21 - 946: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - coordinates: 10,16 - 947: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - coordinates: 11,16 - 948: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 9,21 - 949: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 12,21 - 950: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 12,16 - 951: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 9,16 - 952: - color: '#A4610696' - id: FullTileOverlayGreyscale - coordinates: 13,18 - 953: - color: '#A4610696' - id: FullTileOverlayGreyscale - coordinates: 13,19 - 954: - color: '#A4610696' - id: FullTileOverlayGreyscale - coordinates: 15,15 - 955: - color: '#A4610696' - id: FullTileOverlayGreyscale - coordinates: 16,15 - 956: - color: '#A4610696' - id: FullTileOverlayGreyscale - coordinates: 15,11 - 957: - color: '#A4610696' - id: FullTileOverlayGreyscale - coordinates: 16,11 - 961: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - coordinates: 0,15 - 962: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - coordinates: 5,10 - 971: - color: '#EF9F4196' - id: FullTileOverlayGreyscale - coordinates: 6,3 - 972: - color: '#EF9F41FF' - id: FullTileOverlayGreyscale - coordinates: 6,3 - 973: - color: '#EF9F41FF' - id: FullTileOverlayGreyscale - coordinates: 6,3 - 974: - color: '#52B4E9FF' - id: FullTileOverlayGreyscale - coordinates: 0,3 - 975: - color: '#52B4E9FF' - id: FullTileOverlayGreyscale - coordinates: 1,3 - 976: - color: '#A4610696' - id: FullTileOverlayGreyscale - coordinates: 18,5 - 977: - color: '#A4610696' - id: FullTileOverlayGreyscale - coordinates: 19,17 - 978: - color: '#A46106FF' - id: BrickTileWhiteCornerNe - coordinates: 22,17 - 979: - color: '#A46106FF' - id: BrickTileWhiteCornerSe - coordinates: 22,16 - 980: - color: '#A46106FF' - id: BrickTileWhiteCornerNw - coordinates: 20,17 - 981: - color: '#A46106FF' - id: BrickTileWhiteCornerSw - coordinates: 20,16 - 982: - color: '#A46106FF' - id: BrickTileWhiteLineN - coordinates: 21,17 - 983: - color: '#A46106FF' - id: BrickTileWhiteLineS - coordinates: 21,16 - 984: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - coordinates: 28,1 - 985: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 23,2 - 986: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 24,2 - 987: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 25,2 - 988: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 26,2 - 989: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 27,2 - 990: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 30,18 - 991: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 31,18 - 992: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 31,17 - 993: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 31,16 - 994: - color: '#EFB34196' - id: HalfTileOverlayGreyscale - coordinates: 29,19 - 995: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 30,19 - 996: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 31,15 - 997: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 31,14 - 998: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 31,13 - 999: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 31,12 - 1000: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 31,11 - 1001: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 31,10 - 1002: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 31,9 - 1003: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 31,8 - 1004: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 31,7 - 1005: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 31,6 - 1012: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - coordinates: 31,5 - 1013: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - coordinates: 30,5 - 1014: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - coordinates: 30,4 - 1015: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - coordinates: 30,3 - 1016: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - coordinates: 30,2 - 1017: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - coordinates: 30,1 - 1018: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - coordinates: 29,1 - 1019: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - coordinates: 28,1 - 1020: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 28,19 - 1021: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 28,18 - 1022: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 27,18 - 1023: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 27,17 - 1024: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 27,16 - 1025: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 27,15 - 1026: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 27,14 - 1027: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 27,13 - 1028: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 27,12 - 1029: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 27,11 - 1030: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 26,11 - 1031: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 26,10 - 1032: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 26,9 - 1033: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 25,9 - 1034: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 24,9 - 1035: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 24,8 - 1036: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 24,7 - 1037: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 24,6 - 1038: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 24,5 - 1039: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - coordinates: 24,4 - 1040: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - coordinates: 25,4 - 1041: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - coordinates: 26,4 - 1042: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - coordinates: 27,4 - 1043: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - coordinates: 28,4 - 1044: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - coordinates: 29,4 - 1045: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - coordinates: 29,3 - 1046: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - coordinates: 29,2 - 1047: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - coordinates: 28,2 - 0,-2: - 148: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - coordinates: 5,-36 - 149: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - coordinates: 5,-35 - 150: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - coordinates: 5,-34 - 151: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - coordinates: 4,-35 - 152: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 3,-38 - 153: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 1,-38 - 154: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 3,-33 - 155: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 1,-33 - 156: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - coordinates: 3,-34 - 157: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - coordinates: 3,-35 - 158: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - coordinates: 3,-36 - 159: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - coordinates: 3,-37 - 160: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - coordinates: 1,-37 - 161: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - coordinates: 1,-36 - 162: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - coordinates: 1,-35 - 163: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - coordinates: 1,-34 - 164: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - coordinates: 2,-33 - 165: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - coordinates: 2,-38 - 325: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - coordinates: 27,-33 - 330: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - coordinates: 26,-33 - 335: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - coordinates: 25,-33 - 336: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - coordinates: 24,-33 - 337: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - coordinates: 28,-33 - 338: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - coordinates: 29,-33 - 564: - color: '#FFFFFFFF' - id: MiniTileSteelLineN - coordinates: 24,-34 - 565: - color: '#FFFFFFFF' - id: MiniTileSteelLineN - coordinates: 25,-34 - 566: - color: '#FFFFFFFF' - id: MiniTileSteelLineN - coordinates: 26,-34 - 567: - color: '#FFFFFFFF' - id: MiniTileSteelLineN - coordinates: 27,-34 - 568: - color: '#FFFFFFFF' - id: MiniTileSteelLineN - coordinates: 28,-34 - 569: - color: '#FFFFFFFF' - id: MiniTileSteelLineN - coordinates: 29,-34 - 570: - color: '#FFFFFFFF' - id: MiniTileSteelLineN - coordinates: 30,-34 - 585: - color: '#FFFFFFFF' - id: MiniTileSteelBox - coordinates: 15,-35 - 586: - color: '#FFFFFFFF' - id: MiniTileSteelBox - coordinates: 12,-35 - 587: - color: '#FFFFFFFF' - id: MiniTileSteelBox - coordinates: 9,-35 - 588: - color: '#FFFFFFFF' - id: MiniTileSteelBox - coordinates: 6,-35 - 589: - color: '#FFFFFFFF' - id: MiniTileSteelBox - coordinates: 18,-35 - 590: - color: '#FFFFFFFF' - id: MiniTileSteelBox - coordinates: 21,-35 - 1,-2: - 342: - color: '#FFFFFFFF' - id: Bushb3 - coordinates: 61,-33 - 343: - color: '#FFFFFFFF' - id: Rock05 - coordinates: 60,-36 - 344: - color: '#FFFFFFFF' - id: Rock02 - coordinates: 60,-35 - 345: - color: '#FFFFFFFF' - id: Rock01 - coordinates: 59,-35 - 351: - color: '#FFFFFFFF' - id: Bushf1 - coordinates: 61,-39 - 352: - color: '#FFFFFFFF' - id: Rock07 - coordinates: 61,-37 - 355: - color: '#FFFFFFFF' - id: Bushb2 - coordinates: 61,-36 - 409: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: 45,-38 - 410: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: 45,-37 - 411: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: 45,-36 - 412: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - coordinates: 45,-35 - 413: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - coordinates: 45,-34 - 414: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - coordinates: 45,-39 - 571: - color: '#FFFFFFFF' - id: MiniTileSteelLineN - coordinates: 51,-33 - 572: - color: '#FFFFFFFF' - id: MiniTileSteelLineN - coordinates: 52,-33 - 573: - color: '#FFFFFFFF' - id: MiniTileSteelLineE - coordinates: 53,-34 - 574: - color: '#FFFFFFFF' - id: MiniTileSteelLineE - coordinates: 53,-35 - 575: - color: '#FFFFFFFF' - id: MiniTileSteelLineS - coordinates: 51,-36 - 576: - color: '#FFFFFFFF' - id: MiniTileSteelLineS - coordinates: 52,-36 - 577: - color: '#FFFFFFFF' - id: MiniTileSteelLineW - coordinates: 50,-35 - 578: - color: '#FFFFFFFF' - id: MiniTileSteelLineW - coordinates: 50,-34 - 579: - color: '#FFFFFFFF' - id: MiniTileSteelCornerNw - coordinates: 50,-33 - 580: - color: '#FFFFFFFF' - id: MiniTileSteelCornerNe - coordinates: 53,-33 - 581: - color: '#FFFFFFFF' - id: MiniTileSteelCornerSw - coordinates: 50,-36 - 582: - color: '#FFFFFFFF' - id: MiniTileSteelCornerSe - coordinates: 53,-36 - -1,-1: - 517: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - coordinates: -3,-13 - 519: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - coordinates: -3,-15 - 520: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - coordinates: -4,-13 - 521: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - coordinates: -1,-13 - 522: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - coordinates: -4,-15 - 523: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - coordinates: -1,-15 - 524: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - coordinates: -3,-14 - 526: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - coordinates: -1,-14 - 527: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - coordinates: -4,-14 - 528: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - coordinates: -3,-17 - 531: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - coordinates: -2,-17 - 532: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - coordinates: -4,-17 - 533: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - coordinates: -1,-17 - 534: - color: '#FFFFFFFF' - id: WoodTrimThinBox - coordinates: -3,-16 - 813: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -1,-2 - 814: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -2,-2 - 815: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -2,-2 - 816: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -3,-2 - 817: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -4,-2 - 818: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -4,-2 - 819: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -5,-2 - 820: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -5,-2 - 821: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -6,-2 - 822: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -7,-2 - 823: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -7,-2 - 824: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -8,-2 - 825: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -8,-3 - 826: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -7,-3 - 827: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -6,-3 - 828: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -5,-3 - 829: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -5,-4 - 830: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -4,-4 - 831: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -3,-4 - 832: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,-4 - 833: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,-5 - 834: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,-6 - 835: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,-6 - 836: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,-7 - 837: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,-8 - 838: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,-8 - 839: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -1,-8 - 963: - color: '#D381C996' - id: FullTileOverlayGreyscale - coordinates: -3,-7 - 966: - color: '#D381C996' - id: FullTileOverlayGreyscale - coordinates: -6,-2 - 967: - color: '#D381C996' - id: FullTileOverlayGreyscale - coordinates: -6,-3 - 968: - color: '#D381C996' - id: FullTileOverlayGreyscale - coordinates: -8,-1 - 969: - color: '#D381C996' - id: FullTileOverlayGreyscale - coordinates: -9,-1 - 1063: - color: '#FFFFFFFF' - id: WarnLineW - coordinates: -27,-1 - 1064: - color: '#FFFFFFFF' - id: WarnLineW - coordinates: -26,-1 - 1065: - color: '#FFFFFFFF' - id: WarnLineW - coordinates: -25,-1 - 1074: - color: '#FFFFFFFF' - id: StandClear - coordinates: -27,-1 - 1075: - color: '#FFFFFFFF' - id: StandClear - coordinates: -25,-1 - 1079: - color: '#D381C9FF' - id: MiniTileWhiteLineW - coordinates: -28,-1 - 1080: - color: '#D381C9FF' - id: MiniTileWhiteLineW - coordinates: -28,-2 - 1081: - color: '#D381C9FF' - id: MiniTileWhiteLineS - coordinates: -27,-3 - 1082: - color: '#D381C9FF' - id: MiniTileWhiteLineS - coordinates: -26,-3 - 1083: - color: '#D381C9FF' - id: MiniTileWhiteLineS - coordinates: -25,-3 - 1084: - color: '#D381C9FF' - id: MiniTileWhiteLineS - coordinates: -24,-3 - 1085: - color: '#D381C9FF' - id: MiniTileWhiteLineS - coordinates: -22,-3 - 1086: - color: '#D381C9FF' - id: MiniTileWhiteLineS - coordinates: -21,-3 - 1087: - color: '#D381C9FF' - id: MiniTileWhiteLineW - coordinates: -22,-1 - 1091: - color: '#D381C9FF' - id: MiniTileWhiteLineE - coordinates: -20,-1 - 1092: - color: '#D381C9FF' - id: MiniTileWhiteLineE - coordinates: -20,-2 - 1097: - color: '#D381C9FF' - id: MiniTileWhiteCornerSe - coordinates: -20,-3 - 1099: - color: '#D381C9FF' - id: MiniTileWhiteInnerNw - coordinates: -22,-2 - 1100: - color: '#D381C9FF' - id: MiniTileWhiteInnerNe - coordinates: -24,-2 - 1101: - color: '#D381C9FF' - id: MiniTileWhiteLineS - coordinates: -23,-3 - 1102: - color: '#D381C9FF' - id: MiniTileWhiteLineN - coordinates: -23,-2 - 1103: - color: '#D381C9FF' - id: MiniTileWhiteLineE - coordinates: -24,-1 - 1104: - color: '#D381C9FF' - id: MiniTileWhiteCornerSw - coordinates: -28,-3 - 1106: - color: '#FFFFFFFF' - id: WarnLineW - coordinates: -28,-1 - 1107: - color: '#FFFFFFFF' - id: WarnLineW - coordinates: -24,-1 - 1108: - color: '#FFFFFFFF' - id: WarnBox - coordinates: -18,-1 - 1109: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -9,-2 - 1110: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -10,-2 - 1111: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -11,-2 - 1112: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -12,-2 - 1113: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -13,-2 - 1114: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale - coordinates: -13,-3 - 1115: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -12,-3 - 1116: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -11,-3 - 1117: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -10,-3 - 1118: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -9,-3 - 1119: - color: '#D381C9FF' - id: FullTileOverlayGreyscale - coordinates: -17,-2 - 1120: - color: '#D381C9FF' - id: FullTileOverlayGreyscale - coordinates: -17,-3 - 1121: - color: '#D381C9FF' - id: FullTileOverlayGreyscale - coordinates: -19,-2 - 1122: - color: '#D381C9FF' - id: FullTileOverlayGreyscale - coordinates: -19,-3 - 1123: - color: '#D381C9FF' - id: FullTileOverlayGreyscale - coordinates: -14,-2 - 1124: - color: '#D381C9FF' - id: FullTileOverlayGreyscale - coordinates: -14,-3 - 1125: - color: '#D381C9FF' - id: MiniTileWhiteLineS - coordinates: -16,-3 - 1126: - color: '#D381C9FF' - id: MiniTileWhiteLineS - coordinates: -15,-3 - 1127: - color: '#D381C9FF' - id: MiniTileWhiteLineS - coordinates: -18,-3 - 1128: - color: '#D381C9FF' - id: MiniTileWhiteLineN - coordinates: -18,-2 - 1129: - color: '#D381C9FF' - id: MiniTileWhiteLineN - coordinates: -16,-2 - 1130: - color: '#D381C9FF' - id: MiniTileWhiteLineN - coordinates: -15,-2 - 1131: - color: '#D381C9FF' - id: MiniTileSteelLineW - coordinates: -19,-5 - 1132: - color: '#D381C9FF' - id: MiniTileSteelLineW - coordinates: -19,-6 - 1133: - color: '#D381C9FF' - id: MiniTileSteelLineE - coordinates: -20,-5 - 1134: - color: '#D381C9FF' - id: MiniTileSteelLineS - coordinates: -20,-5 - 1135: - color: '#D381C9FF' - id: MiniTileSteelLineS - coordinates: -21,-5 - 1136: - color: '#D381C9FF' - id: MiniTileSteelLineN - coordinates: -21,-6 - 1137: - color: '#D381C9FF' - id: MiniTileSteelLineN - coordinates: -20,-6 - 1138: - color: '#D381C9FF' - id: MiniTileSteelLineE - coordinates: -20,-6 - 1139: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - coordinates: -30,-18 - 1140: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - coordinates: -29,-18 - 1141: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSe - coordinates: -29,-19 - 1142: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSw - coordinates: -30,-19 - 1143: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNw - coordinates: -30,-17 - 1144: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNe - coordinates: -29,-17 - 1145: - color: '#FFFFFFFF' - id: WarnCornerSE - coordinates: -30,-15 - 1146: - color: '#FFFFFFFF' - id: WarnLineN - coordinates: -31,-15 - 1147: - color: '#FFFFFFFF' - id: WarnLineN - coordinates: -32,-15 - -1,0: - 593: - color: '#FFFFFFFF' - id: BrickTileDarkBox - coordinates: -10,4 - 594: - color: '#FFFFFFFF' - id: BrickTileDarkBox - coordinates: -10,6 - 595: - color: '#FFFFFFFF' - id: BrickTileDarkBox - coordinates: -10,8 - 596: - color: '#FFFFFFFF' - id: BrickTileDarkBox - coordinates: -10,10 - 597: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -10,4 - 598: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -10,5 - 599: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -10,6 - 600: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -10,8 - 601: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -10,10 - 602: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -10,9 - 603: - color: '#FFFFFFFF' - id: WarnLineN - coordinates: -8,3 - 604: - color: '#FFFFFFFF' - id: WarnLineN - coordinates: -9,3 - 605: - color: '#D381C9FF' - id: BrickTileWhiteLineS - coordinates: -12,0 - 606: - color: '#D381C9FF' - id: BrickTileWhiteLineS - coordinates: -11,0 - 607: - color: '#D381C9FF' - id: BrickTileWhiteLineS - coordinates: -10,0 - 608: - color: '#D381C9FF' - id: BrickTileWhiteLineS - coordinates: -8,0 - 609: - color: '#D381C9FF' - id: BrickTileWhiteLineS - coordinates: -9,0 - 610: - color: '#D381C9FF' - id: BrickTileWhiteLineS - coordinates: -7,0 - 611: - color: '#D381C9FF' - id: BrickTileWhiteLineS - coordinates: -6,0 - 612: - color: '#D381C9FF' - id: BrickTileWhiteLineS - coordinates: -5,0 - 613: - color: '#D381C9FF' - id: BrickTileWhiteLineS - coordinates: -4,0 - 614: - color: '#D381C9FF' - id: BrickTileWhiteCornerSw - coordinates: -13,0 - 615: - color: '#D381C9FF' - id: BrickTileWhiteCornerSe - coordinates: -3,0 - 616: - color: '#D381C9FF' - id: BrickTileWhiteLineE - coordinates: -3,1 - 617: - color: '#D381C9FF' - id: BrickTileWhiteLineW - coordinates: -13,1 - 618: - color: '#FFFFFFFF' - id: WarnLineW - coordinates: -9,2 - 619: - color: '#FFFFFFFF' - id: WarnLineW - coordinates: -8,2 - 620: - color: '#FFFFFFFF' - id: WarnLineW - coordinates: -7,2 - 621: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - coordinates: -10,2 - 622: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - coordinates: -6,2 - 623: - color: '#D381C9FF' - id: BrickTileWhiteLineW - coordinates: -13,2 - 624: - color: '#D381C9FF' - id: BrickTileWhiteLineE - coordinates: -3,2 - 659: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -7,11 - 660: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -7,10 - 661: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -7,9 - 662: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -7,8 - 663: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -7,7 - 664: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -7,6 - 665: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -7,5 - 666: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -7,4 - 667: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -7,4 - 668: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -7,3 - 669: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -7,11 - 670: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale - coordinates: -9,10 - 671: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale - coordinates: -9,9 - 672: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale - coordinates: -9,8 - 673: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale - coordinates: -9,7 - 674: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale - coordinates: -9,6 - 675: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale - coordinates: -9,5 - 676: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale - coordinates: -9,5 - 677: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale - coordinates: -9,4 - 678: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale - coordinates: -9,3 - 679: - color: '#FFFFFFFF' - id: WarnLineN - coordinates: -7,3 - 680: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale - coordinates: -9,11 - 681: - color: '#D381C9FF' - id: HalfTileOverlayGreyscale - coordinates: -8,11 - 682: - color: '#FFFFFFFF' - id: Delivery - coordinates: -12,9 - 683: - color: '#FFFFFFFF' - id: Delivery - coordinates: -12,5 - 684: - color: '#52B4E9FF' - id: MiniTileWhiteLineS - coordinates: -5,13 - 685: - color: '#52B4E9FF' - id: MiniTileWhiteLineW - coordinates: -6,14 - 686: - color: '#52B4E9FF' - id: MiniTileWhiteLineW - coordinates: -6,15 - 687: - color: '#52B4E9FF' - id: MiniTileWhiteLineE - coordinates: -4,15 - 688: - color: '#52B4E9FF' - id: MiniTileWhiteLineE - coordinates: -4,14 - 689: - color: '#52B4E9FF' - id: MiniTileWhiteCornerNw - coordinates: -6,16 - 690: - color: '#52B4E9FF' - id: MiniTileWhiteCornerSe - coordinates: -4,13 - 691: - color: '#52B4E9FF' - id: MiniTileWhiteCornerNe - coordinates: -4,16 - 692: - color: '#52B4E9FF' - id: MiniTileWhiteCornerSw - coordinates: -6,13 - 693: - color: '#52B4E9FF' - id: MiniTileWhiteLineN - coordinates: -5,16 - 694: - color: '#9FED58FF' - id: MiniTileWhiteLineN - coordinates: -4,24 - 695: - color: '#9FED58FF' - id: MiniTileWhiteLineN - coordinates: -3,24 - 696: - color: '#9FED58FF' - id: MiniTileWhiteLineN - coordinates: -2,24 - 697: - color: '#9FED58FF' - id: MiniTileWhiteLineS - coordinates: -4,22 - 698: - color: '#9FED58FF' - id: MiniTileWhiteLineS - coordinates: -3,22 - 699: - color: '#9FED58FF' - id: MiniTileWhiteLineS - coordinates: -2,22 - 700: - color: '#9FED58FF' - id: MiniTileWhiteLineW - coordinates: -5,23 - 701: - color: '#9FED58FF' - id: MiniTileWhiteLineE - coordinates: -1,23 - 702: - color: '#9FED58FF' - id: MiniTileWhiteCornerNw - coordinates: -5,24 - 703: - color: '#9FED58FF' - id: MiniTileWhiteCornerSe - coordinates: -1,22 - 704: - color: '#9FED58FF' - id: MiniTileWhiteCornerSw - coordinates: -5,22 - 705: - color: '#9FED58FF' - id: MiniTileWhiteCornerNe - coordinates: -1,24 - 706: - color: '#52B4E9FF' - id: HalfTileOverlayGreyscale180 - coordinates: -4,18 - 707: - color: '#52B4E9FF' - id: HalfTileOverlayGreyscale180 - coordinates: -3,18 - 708: - color: '#52B4E9FF' - id: HalfTileOverlayGreyscale180 - coordinates: -2,18 - 709: - color: '#52B4E9FF' - id: ThreeQuarterTileOverlayGreyscale - coordinates: -5,21 - 712: - color: '#52B4E9FF' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: -5,18 - 713: - color: '#52B4E9FF' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: -1,18 - 714: - color: '#52B4E9FF' - id: HalfTileOverlayGreyscale - coordinates: -1,21 - 715: - color: '#52B4E9FF' - id: HalfTileOverlayGreyscale - coordinates: -2,21 - 716: - color: '#52B4E9FF' - id: HalfTileOverlayGreyscale - coordinates: -3,21 - 717: - color: '#52B4E9FF' - id: HalfTileOverlayGreyscale - coordinates: -4,21 - 718: - color: '#52B4E9FF' - id: HalfTileOverlayGreyscale90 - coordinates: -1,19 - 719: - color: '#52B4E9FF' - id: HalfTileOverlayGreyscale270 - coordinates: -5,19 - 720: - color: '#52B4E9FF' - id: HalfTileOverlayGreyscale270 - coordinates: -5,20 - 721: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale180 - coordinates: -1,20 - 722: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,4 - 723: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,5 - 724: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,6 - 725: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,7 - 726: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,8 - 727: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,9 - 728: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,10 - 729: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,11 - 730: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,12 - 731: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,13 - 732: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,14 - 733: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale180 - coordinates: -1,15 - 734: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale180 - coordinates: -1,14 - 735: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale180 - coordinates: -1,13 - 741: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,15 - 742: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -2,16 - 743: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale180 - coordinates: -1,16 - 744: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: -1,16 - 745: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale90 - coordinates: -2,16 - 758: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -1,4 - 761: - color: '#52B4E9FF' - id: BrickTileWhiteEndE - coordinates: -3,7 - 762: - color: '#52B4E9FF' - id: BrickTileWhiteEndE - coordinates: -3,10 - 763: - color: '#52B4E9FF' - id: BrickTileWhiteEndE - coordinates: -3,4 - 764: - color: '#52B4E9FF' - id: BrickTileWhiteInnerNe - coordinates: -4,10 - 765: - color: '#52B4E9FF' - id: BrickTileWhiteInnerNe - coordinates: -4,7 - 766: - color: '#52B4E9FF' - id: BrickTileWhiteInnerNe - coordinates: -4,4 - 767: - color: '#52B4E9FF' - id: BrickTileWhiteCornerNw - coordinates: -5,5 - 768: - color: '#52B4E9FF' - id: BrickTileWhiteCornerNw - coordinates: -5,8 - 769: - color: '#52B4E9FF' - id: BrickTileWhiteCornerNw - coordinates: -5,11 - 770: - color: '#52B4E9FF' - id: BrickTileWhiteCornerSw - coordinates: -5,4 - 771: - color: '#52B4E9FF' - id: BrickTileWhiteCornerSw - coordinates: -5,7 - 772: - color: '#52B4E9FF' - id: BrickTileWhiteCornerSw - coordinates: -5,10 - 773: - color: '#52B4E9FF' - id: BrickTileWhiteCornerNe - coordinates: -4,11 - 774: - color: '#52B4E9FF' - id: BrickTileWhiteCornerNe - coordinates: -4,8 - 775: - color: '#52B4E9FF' - id: BrickTileWhiteCornerNe - coordinates: -4,5 - 776: - color: '#52B4E9FF' - id: BrickTileWhiteLineS - coordinates: -4,4 - 777: - color: '#52B4E9FF' - id: BrickTileWhiteLineS - coordinates: -4,7 - 778: - color: '#52B4E9FF' - id: BrickTileWhiteLineS - coordinates: -4,10 - 791: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: -1,2 - 801: - color: '#52B4E9FF' - id: QuarterTileOverlayGreyscale - coordinates: -1,1 - 802: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -1,1 - 861: - color: '#D381C9FF' - id: QuarterTileOverlayGreyscale270 - coordinates: -1,0 - 958: - color: '#52B4E9FF' - id: FullTileOverlayGreyscale - coordinates: -2,17 - 959: - color: '#52B4E9FF' - id: FullTileOverlayGreyscale - coordinates: -1,17 - 960: - color: '#52B4E9FF' - id: FullTileOverlayGreyscale - coordinates: -3,14 - 1058: - color: '#FFFFFFFF' - id: WarnLineN - coordinates: -28,0 - 1059: - color: '#FFFFFFFF' - id: WarnLineN - coordinates: -27,0 - 1060: - color: '#FFFFFFFF' - id: WarnLineN - coordinates: -26,0 - 1061: - color: '#FFFFFFFF' - id: WarnLineN - coordinates: -25,0 - 1062: - color: '#FFFFFFFF' - id: WarnLineN - coordinates: -24,0 - 1066: - color: '#FFFFFFFF' - id: WarnLineW - coordinates: -27,0 - 1067: - color: '#FFFFFFFF' - id: WarnLineW - coordinates: -26,0 - 1068: - color: '#FFFFFFFF' - id: WarnLineW - coordinates: -25,0 - 1069: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -24,1 - 1070: - color: '#FFFFFFFF' - id: WarnLineE - coordinates: -28,1 - 1071: - color: '#FFFFFFFF' - id: WarnLineE - coordinates: -28,2 - 1072: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - coordinates: -24,0 - 1073: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - coordinates: -28,0 - 1076: - color: '#FFFFFFFF' - id: WarnLineE - coordinates: -28,3 - 1077: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -24,3 - 1078: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -24,2 - 1088: - color: '#D381C9FF' - id: MiniTileWhiteLineW - coordinates: -22,0 - 1089: - color: '#D381C9FF' - id: MiniTileWhiteLineW - coordinates: -22,1 - 1090: - color: '#D381C9FF' - id: MiniTileWhiteLineW - coordinates: -22,2 - 1093: - color: '#D381C9FF' - id: MiniTileWhiteLineE - coordinates: -20,0 - 1094: - color: '#D381C9FF' - id: MiniTileWhiteLineE - coordinates: -20,1 - 1095: - color: '#D381C9FF' - id: MiniTileWhiteLineE - coordinates: -20,2 - 1096: - color: '#D381C9FF' - id: MiniTileWhiteCornerNw - coordinates: -22,3 - 1098: - color: '#D381C9FF' - id: MiniTileWhiteCornerNe - coordinates: -20,3 - 1105: - color: '#D381C9FF' - id: MiniTileWhiteLineN - coordinates: -21,3 - 1148: - color: '#FFFFFFFF' - id: Basalt5 - coordinates: -21,6 - 1149: - color: '#FFFFFFFF' - id: Basalt8 - coordinates: -22,6 - 1150: - color: '#FFFFFFFF' - id: Basalt1 - coordinates: -25,10 - 1151: - color: '#FFFFFFFF' - id: Rock06 - coordinates: -23,12 - 1152: - color: '#FFFFFFFF' - id: Rock05 - coordinates: -22,8 - 1153: - color: '#FFFFFFFF' - id: Rock02 - coordinates: -24,8 - 1154: - color: '#FFFFFFFF' - id: Rock01 - coordinates: -22,9 - 1155: - color: '#FFFFFFFF' - id: Rock06 - coordinates: -25,6 - 1156: - color: '#FFFFFFFF' - id: Rock07 - coordinates: -20,8 - 1157: - color: '#FFFFFFFF' - id: Rock03 - coordinates: -23,6 - 1158: - color: '#FFFFFFFF' - id: Rock02 - coordinates: -22,7 - 1159: - color: '#FFFFFFFF' - id: Grassa5 - coordinates: -19.978031,9.047207 - 1160: - color: '#FFFFFFFF' - id: Grassb5 - coordinates: -21.024906,8.609707 - 1161: - color: '#FFFFFFFF' - id: Grassc1 - coordinates: -21.009281,7.500332 - 1162: - color: '#FFFFFFFF' - id: Flowersy2 - coordinates: -23.018742,9.890957 - 1163: - color: '#FFFFFFFF' - id: Flowersy3 - coordinates: -24.987492,10.937832 - 1164: - color: '#FFFFFFFF' - id: Flowerspv1 - coordinates: -25.049992,11.953457 - 1165: - color: '#FFFFFFFF' - id: Flowerspv3 - coordinates: -23.987492,9.969082 - 1166: - color: '#FFFFFFFF' - id: Flowerspv2 - coordinates: -20.940617,10.984707 - 1167: - color: '#FFFFFFFF' - id: Flowersbr1 - coordinates: -20.987492,11.984707 - 1168: - color: '#FFFFFFFF' - id: Flowerspv1 - coordinates: -20.049992,11.062832 - 1169: - color: '#FFFFFFFF' - id: Flowersy1 - coordinates: -21.971867,10.953457 - 1170: - color: '#FFFFFFFF' - id: Flowersy3 - coordinates: -24.987492,6.937832 - 1171: - color: '#FFFFFFFF' - id: Flowersy4 - coordinates: -26.034367,5.953457 - 1172: - color: '#FFFFFFFF' - id: Flowerspv2 - coordinates: -24.018742,5.937832 - 1173: - color: '#FFFFFFFF' - id: Grassa3 - coordinates: -23.846867,4.953457 - 1174: - color: '#FFFFFFFF' - id: Grassa4 - coordinates: -22.659367,5.047207 - 1175: - color: '#FFFFFFFF' - id: Grassb4 - coordinates: -19.909367,4.890957 - 1176: - color: '#FFFFFFFF' - id: Grassb4 - coordinates: -23.940617,7.000332 - 1177: - color: '#FFFFFFFF' - id: Grassa4 - coordinates: -25.034367,7.969082 - 1178: - color: '#FFFFFFFF' - id: Grassc1 - coordinates: -20.003117,6.922207 - 1179: - color: '#FFFFFFFF' - id: Grasse3 - coordinates: -22.018742,10.015957 - 1180: - color: '#FFFFFFFF' - id: Flowersbr3 - coordinates: -23.049992,11.015957 - 1181: - color: '#FFFFFFFF' - id: Grasse3 - coordinates: -25.956242,5.047207 - 1182: - color: '#FFFFFFFF' - id: Grassc4 - coordinates: -24.971867,5.031582 - 1183: - color: '#FFFFFFFF' - id: Grassc4 - coordinates: -21.565617,5.000332 - 1184: - color: '#FFFFFFFF' - id: Grasse3 - coordinates: -26.049992,11.515957 - 1185: - color: '#FFFFFFFF' - id: Flowersy2 - coordinates: -26.018742,9.437832 - 1186: - color: '#FFFFFFFF' - id: Grassb2 - coordinates: -23.940617,11.969082 - 1187: - color: '#FFFFFFFF' - id: Grasse3 - coordinates: -23.143742,8.406582 - type: DecalGrid - - tiles: - -2,-4: 0 - -2,-3: 0 - -2,-2: 0 - -2,-1: 0 - -1,-5: 0 - -1,-4: 0 - -1,-3: 0 - -1,-2: 0 - -1,-1: 0 - -5,-1: 0 - -4,-5: 0 - -4,-4: 0 - -4,-3: 0 - -4,-2: 0 - -4,-1: 0 - -3,-5: 0 - -3,-4: 0 - -3,-3: 0 - -3,-2: 0 - -3,-1: 0 - -2,-5: 0 - 0,-5: 0 - 0,-4: 0 - 0,-3: 0 - 0,-2: 0 - 0,-1: 0 - 1,-5: 0 - 1,-4: 0 - 1,-3: 0 - 1,-2: 0 - 1,-1: 0 - 2,-5: 0 - 2,-4: 0 - 2,-3: 0 - 2,-2: 0 - 2,-1: 0 - 3,-6: 0 - 3,-5: 0 - 3,-4: 0 - 3,-3: 0 - 3,-2: 0 - 3,-1: 0 - 4,-9: 0 - 4,-8: 0 - 4,-7: 0 - 4,-6: 0 - 4,-5: 0 - 4,-4: 0 - 4,-3: 0 - 4,-2: 0 - 4,-1: 0 - 5,-9: 0 - 5,-8: 0 - 5,-7: 0 - 5,-6: 0 - 5,-5: 0 - 5,-4: 0 - 5,-3: 0 - 5,-2: 0 - 5,-1: 0 - 6,-9: 0 - 6,-8: 0 - 6,-7: 0 - 6,-6: 0 - 6,-5: 0 - 6,-4: 0 - 6,-3: 0 - 6,-2: 0 - 6,-1: 0 - 7,-9: 0 - 7,-8: 0 - 7,-7: 0 - 7,-6: 0 - 7,-5: 0 - 7,-4: 0 - 7,-3: 0 - 7,-2: 0 - 7,-1: 0 - 8,-9: 0 - 8,-8: 0 - 8,-7: 0 - 8,-6: 0 - 8,-5: 0 - 8,-4: 0 - 8,-3: 0 - 8,-2: 0 - 8,-1: 0 - 9,-1: 0 - 0,0: 0 - 0,1: 0 - 0,2: 0 - 0,3: 0 - 0,4: 0 - 0,5: 0 - 0,6: 0 - 0,7: 0 - 1,0: 0 - 1,1: 0 - 1,2: 0 - 1,3: 0 - 1,4: 0 - 1,5: 0 - 1,6: 0 - 1,7: 0 - 2,0: 0 - 2,1: 0 - 2,2: 0 - 2,3: 0 - 2,4: 0 - 2,5: 0 - 2,6: 0 - 2,7: 0 - 3,0: 0 - 3,1: 0 - 3,2: 0 - 3,3: 0 - 3,4: 0 - 3,5: 0 - 3,6: 0 - 3,7: 0 - 4,0: 0 - 4,1: 0 - 4,2: 0 - 4,3: 0 - 4,4: 0 - 4,5: 0 - 4,6: 0 - 4,7: 0 - 5,0: 0 - 5,1: 0 - 5,2: 0 - 5,3: 0 - 5,4: 0 - 5,5: 0 - 5,6: 0 - 5,7: 0 - 6,0: 0 - 6,1: 0 - 6,2: 0 - 6,3: 0 - 6,4: 0 - 6,5: 0 - 6,6: 0 - 6,7: 0 - 7,0: 0 - 7,1: 0 - 7,2: 0 - 7,3: 0 - 7,4: 0 - 7,5: 0 - 7,6: 0 - 7,7: 0 - 8,0: 0 - 8,1: 0 - 8,2: 0 - 8,3: 0 - 8,4: 0 - 8,5: 0 - 8,6: 0 - 8,7: 0 - 9,0: 0 - 9,1: 0 - 9,2: 0 - 9,3: 0 - -5,0: 0 - -5,1: 0 - -5,2: 0 - -5,3: 0 - -5,4: 0 - -5,5: 0 - -5,6: 0 - -5,7: 0 - -4,0: 0 - -4,1: 0 - -4,2: 0 - -4,3: 0 - -4,4: 0 - -4,5: 0 - -4,6: 0 - -4,7: 0 - -3,0: 0 - -3,1: 0 - -3,2: 0 - -3,3: 0 - -3,4: 0 - -3,5: 0 - -3,6: 0 - -3,7: 0 - -2,0: 0 - -2,1: 0 - -2,2: 0 - -2,3: 0 - -2,4: 0 - -2,5: 0 - -2,6: 0 - -2,7: 0 - -1,0: 0 - -1,1: 0 - -1,2: 0 - -1,3: 0 - -1,4: 0 - -1,5: 0 - -1,6: 0 - -1,7: 0 - -4,-9: 0 - -4,-8: 0 - -4,-7: 0 - -4,-6: 0 - -3,-9: 0 - -3,-8: 0 - -3,-7: 0 - -3,-6: 0 - -2,-9: 0 - -2,-8: 0 - -2,-7: 0 - -2,-6: 0 - -1,-9: 0 - -1,-8: 0 - -1,-7: 0 - -1,-6: 0 - 0,-9: 0 - 0,-8: 0 - 0,-7: 0 - 0,-6: 0 - 1,-9: 0 - 1,-8: 0 - 1,-7: 0 - 1,-6: 0 - 2,-9: 0 - 2,-8: 0 - 2,-7: 0 - 2,-6: 0 - 3,-9: 0 - 3,-8: 0 - 3,-7: 0 - 0,8: 0 - 0,9: 0 - 0,10: 0 - 1,8: 0 - 1,9: 0 - 1,10: 0 - 2,8: 0 - 2,9: 0 - 2,10: 0 - -4,8: 0 - -4,9: 0 - -4,10: 0 - -3,8: 0 - -3,9: 0 - -3,10: 0 - -2,8: 0 - -2,9: 0 - -2,10: 0 - -1,8: 0 - -1,9: 0 - -1,10: 0 - -13,-1: 0 - -12,-1: 0 - -11,-1: 0 - -10,-1: 0 - -9,-11: 0 - -9,-10: 0 - -9,-9: 0 - -9,-8: 0 - -9,-7: 0 - -9,-3: 0 - -9,-2: 0 - -9,-1: 0 - -8,-11: 0 - -8,-10: 0 - -8,-9: 0 - -8,-8: 0 - -8,-7: 0 - -8,-6: 0 - -8,-5: 0 - -8,-4: 0 - -8,-3: 0 - -8,-2: 0 - -8,-1: 0 - -7,-11: 0 - -7,-10: 0 - -7,-9: 0 - -7,-8: 0 - -7,-7: 0 - -7,-6: 0 - -7,-5: 0 - -7,-4: 0 - -7,-3: 0 - -7,-2: 0 - -7,-1: 0 - -6,-12: 0 - -6,-11: 0 - -6,-10: 0 - -6,-9: 0 - -6,-8: 0 - -6,-7: 0 - -6,-6: 0 - -6,-5: 0 - -6,-4: 0 - -6,-3: 0 - -6,-2: 0 - -6,-1: 0 - -5,-12: 0 - -5,-11: 0 - -5,-10: 0 - -5,-9: 0 - -5,-5: 0 - -5,-4: 0 - -5,-3: 0 - -5,-2: 0 - -4,-12: 0 - -4,-11: 0 - -4,-10: 0 - -3,-12: 0 - -3,-11: 0 - -3,-10: 0 - -2,-12: 0 - -2,-11: 0 - -2,-10: 0 - -1,-12: 0 - -1,-11: 0 - -1,-10: 0 - 0,-12: 0 - 0,-11: 0 - 0,-10: 0 - 1,-11: 0 - 1,-10: 0 - 2,-11: 0 - 2,-10: 0 - 3,-11: 0 - 3,-10: 0 - 4,-12: 0 - 4,-11: 0 - 4,-10: 0 - 5,-12: 0 - 5,-11: 0 - 5,-10: 0 - 6,-12: 0 - 6,-11: 0 - 6,-10: 0 - 7,-12: 0 - 7,-11: 0 - 7,-10: 0 - 8,-12: 0 - 8,-11: 0 - 8,-10: 0 - 10,-1: 0 - 11,-1: 0 - 0,11: 0 - 0,12: 0 - 0,13: 0 - 1,11: 0 - 1,12: 0 - 1,13: 0 - 2,11: 0 - 2,12: 0 - 2,13: 0 - 3,8: 0 - 3,9: 0 - 3,10: 0 - 3,11: 0 - 3,12: 0 - 3,13: 0 - 9,4: 0 - 9,5: 0 - 9,6: 0 - 9,7: 0 - 10,0: 0 - 10,1: 0 - 10,2: 0 - 10,3: 0 - 10,4: 0 - 10,5: 0 - 10,6: 0 - 10,7: 0 - 11,0: 0 - 11,1: 0 - 11,2: 0 - 11,3: 0 - 11,4: 0 - 11,5: 0 - 11,6: 0 - 11,7: 0 - -14,1: 0 - -14,2: 0 - -14,3: 0 - -14,4: 0 - -14,5: 0 - -14,6: 0 - -14,7: 0 - -14,8: 0 - -13,0: 0 - -13,1: 0 - -13,2: 0 - -13,3: 0 - -13,4: 0 - -13,5: 0 - -13,6: 0 - -13,7: 0 - -13,8: 0 - -13,9: 0 - -12,0: 0 - -12,1: 0 - -12,2: 0 - -12,3: 0 - -12,4: 0 - -12,5: 0 - -12,6: 0 - -12,7: 0 - -12,8: 0 - -12,9: 0 - -11,0: 0 - -11,1: 0 - -11,2: 0 - -11,3: 0 - -11,4: 0 - -11,5: 0 - -11,6: 0 - -11,7: 0 - -11,8: 0 - -11,9: 0 - -11,10: 0 - -10,0: 0 - -10,1: 0 - -10,2: 0 - -10,3: 0 - -10,4: 0 - -10,5: 0 - -10,6: 0 - -10,7: 0 - -10,8: 0 - -10,9: 0 - -10,10: 0 - -9,0: 0 - -9,1: 0 - -9,2: 0 - -9,3: 0 - -9,4: 0 - -9,5: 0 - -9,6: 0 - -9,7: 0 - -9,8: 0 - -9,9: 0 - -9,10: 0 - -8,0: 0 - -8,1: 0 - -8,2: 0 - -8,3: 0 - -8,4: 0 - -8,5: 0 - -8,6: 0 - -8,7: 0 - -8,8: 0 - -8,9: 0 - -8,10: 0 - -8,11: 0 - -8,12: 0 - -8,13: 0 - -7,0: 0 - -7,1: 0 - -7,2: 0 - -7,3: 0 - -7,4: 0 - -7,5: 0 - -7,6: 0 - -7,7: 0 - -7,8: 0 - -7,9: 0 - -7,10: 0 - -7,11: 0 - -7,12: 0 - -7,13: 0 - -6,0: 0 - -6,1: 0 - -6,2: 0 - -6,3: 0 - -6,4: 0 - -6,5: 0 - -6,6: 0 - -6,7: 0 - -6,8: 0 - -6,9: 0 - -6,10: 0 - -6,11: 0 - -6,12: 0 - -6,13: 0 - -5,8: 0 - -5,9: 0 - -5,10: 0 - -5,11: 0 - -5,12: 0 - -5,13: 0 - -4,11: 0 - -4,12: 0 - -4,13: 0 - -3,11: 0 - -3,12: 0 - -3,13: 0 - -2,11: 0 - -2,12: 0 - -2,13: 0 - -1,11: 0 - -1,12: 0 - -1,13: 0 - 9,-4: 0 - 9,-3: 0 - 9,-2: 0 - 10,-4: 0 - 10,-3: 0 - 10,-2: 0 - 11,-4: 0 - 11,-3: 0 - 11,-2: 0 - 12,-4: 0 - 12,-3: 0 - 12,-2: 0 - 12,-1: 0 - 13,-4: 0 - 13,-3: 0 - 13,-2: 0 - 13,-1: 0 - 14,-4: 0 - 14,-3: 0 - 14,-2: 0 - 14,-1: 0 - 15,-4: 0 - 15,-3: 0 - 15,-2: 0 - 15,-1: 0 - 0,14: 0 - 1,14: 0 - 2,14: 0 - 2,15: 0 - 3,14: 0 - 3,15: 0 - 4,8: 0 - 4,9: 0 - 4,10: 0 - 4,11: 0 - 4,12: 0 - 4,13: 0 - 4,14: 0 - 4,15: 0 - 5,8: 0 - 5,9: 0 - 5,10: 0 - 5,11: 0 - 5,12: 0 - 5,13: 0 - 5,14: 0 - 5,15: 0 - 6,8: 0 - 6,9: 0 - 6,10: 0 - 6,11: 0 - 6,12: 0 - 6,13: 0 - 6,14: 0 - 6,15: 0 - 7,8: 0 - 7,9: 0 - 7,10: 0 - 7,11: 0 - 7,12: 0 - 7,13: 0 - 7,14: 0 - 7,15: 0 - 8,8: 0 - 8,9: 0 - 8,10: 0 - 8,11: 0 - 8,12: 0 - 8,13: 0 - 8,14: 0 - 8,15: 0 - 9,8: 0 - 9,9: 0 - 9,10: 0 - 9,11: 0 - 9,12: 0 - 9,13: 0 - 9,14: 0 - 9,15: 0 - 10,8: 0 - 10,9: 0 - 10,10: 0 - 10,11: 0 - 10,12: 0 - 10,13: 0 - 11,8: 0 - 11,9: 0 - 11,10: 0 - 11,11: 0 - 11,12: 0 - 11,13: 0 - 12,0: 0 - 12,1: 0 - 12,2: 0 - 12,3: 0 - 12,4: 0 - 12,5: 0 - 12,6: 0 - 12,7: 0 - 12,8: 0 - 12,9: 0 - 12,10: 0 - 12,11: 0 - 12,12: 0 - 12,13: 0 - 12,14: 0 - 12,15: 0 - 13,0: 0 - 13,1: 0 - 13,2: 0 - 13,3: 0 - 13,4: 0 - 13,5: 0 - 13,6: 0 - 13,7: 0 - 13,8: 0 - 13,9: 0 - 13,10: 0 - 13,11: 0 - 13,12: 0 - 13,13: 0 - 13,14: 0 - 13,15: 0 - 14,0: 0 - 14,1: 0 - 14,2: 0 - 14,3: 0 - 14,4: 0 - 14,5: 0 - 14,6: 0 - 14,7: 0 - 14,8: 0 - 14,9: 0 - 14,10: 0 - 14,11: 0 - 14,12: 0 - 14,13: 0 - 14,14: 0 - 14,15: 0 - 15,0: 0 - 15,1: 0 - 15,2: 0 - 15,3: 0 - 15,4: 0 - 15,5: 0 - 15,6: 0 - 15,7: 0 - 15,8: 0 - 15,9: 0 - 15,10: 0 - 15,11: 0 - 15,12: 0 - 15,13: 0 - 15,14: 0 - 15,15: 0 - -5,14: 0 - -4,14: 0 - -3,14: 0 - -2,14: 0 - -1,14: 0 - 16,0: 0 - 16,1: 0 - 16,2: 0 - 16,3: 0 - 16,4: 0 - 16,5: 0 - 16,6: 0 - 16,7: 0 - 16,8: 0 - 16,9: 0 - 16,10: 0 - 16,11: 0 - 16,12: 0 - 16,13: 0 - 16,14: 0 - 16,15: 0 - 17,0: 0 - 17,1: 0 - 17,2: 0 - 17,3: 0 - 17,4: 0 - 17,5: 0 - 17,6: 0 - 17,7: 0 - 17,8: 0 - 17,9: 0 - 17,10: 0 - 17,11: 0 - 17,12: 0 - 17,13: 0 - 17,14: 0 - 17,15: 0 - 18,0: 0 - 18,1: 0 - 18,2: 0 - 18,3: 0 - 18,4: 0 - 18,5: 0 - 18,6: 0 - 18,7: 0 - 18,8: 0 - 18,9: 0 - 18,10: 0 - 18,11: 0 - 18,12: 0 - 18,13: 0 - 18,14: 0 - 18,15: 0 - 19,0: 0 - 19,1: 0 - 19,2: 0 - 19,3: 0 - 19,4: 0 - 19,5: 0 - 19,6: 0 - 19,7: 0 - 19,8: 0 - 19,9: 0 - 19,10: 0 - 19,11: 0 - 19,12: 0 - 19,13: 0 - 20,0: 0 - 20,1: 0 - 20,2: 0 - 20,3: 0 - 20,4: 0 - 20,5: 0 - 20,6: 0 - 20,7: 0 - 20,8: 0 - 20,9: 0 - 20,10: 0 - 20,11: 0 - 20,12: 0 - 20,13: 0 - 21,8: 0 - 21,9: 0 - 21,10: 0 - 21,11: 0 - 21,12: 0 - 21,13: 0 - 22,8: 0 - 22,9: 0 - 22,10: 0 - 22,11: 0 - 22,12: 0 - 22,13: 0 - 23,8: 0 - 23,9: 0 - 23,10: 0 - 23,11: 0 - 23,12: 0 - 23,13: 0 - 2,16: 0 - 3,16: 0 - 4,16: 0 - 5,16: 0 - 6,16: 0 - 7,16: 0 - 8,16: 0 - 9,16: 0 - 12,16: 0 - 13,16: 0 - 14,16: 0 - 15,16: 0 - 16,16: 0 - 17,16: 0 - 18,16: 0 - 16,-4: 0 - 16,-3: 0 - 16,-2: 0 - 16,-1: 0 - 17,-4: 0 - 17,-3: 0 - 17,-2: 0 - 17,-1: 0 - 18,-4: 0 - 18,-3: 0 - 18,-2: 0 - 18,-1: 0 - 19,-4: 0 - 19,-3: 0 - 19,-2: 0 - 19,-1: 0 - 20,-4: 0 - 20,-3: 0 - 20,-2: 0 - 20,-1: 0 - 10,14: 0 - 11,14: 0 - 19,14: 0 - 20,14: 0 - 21,14: 0 - 22,14: 0 - 23,14: 0 - 2,17: 0 - 3,17: 0 - 4,17: 0 - 5,17: 0 - 6,17: 0 - 7,17: 0 - 8,17: 0 - 9,17: 0 - 12,17: 0 - 13,17: 0 - 14,17: 0 - 15,17: 0 - 16,17: 0 - 17,17: 0 - 18,17: 0 - 10,15: 0 - 11,15: 0 - 19,15: 0 - 20,15: 0 - 21,0: 0 - 21,1: 0 - 21,2: 0 - 21,3: 0 - 21,4: 0 - 21,5: 0 - 21,6: 0 - 21,7: 0 - 21,15: 0 - 22,0: 0 - 22,1: 0 - 22,2: 0 - 22,3: 0 - 22,4: 0 - 22,5: 0 - 22,6: 0 - 22,7: 0 - 22,15: 0 - 23,0: 0 - 23,1: 0 - 23,2: 0 - 23,3: 0 - 23,4: 0 - 23,5: 0 - 23,6: 0 - 23,7: 0 - 23,15: 0 - 24,0: 0 - 24,1: 0 - 24,2: 0 - 24,3: 0 - 24,4: 0 - 24,5: 0 - 24,6: 0 - 24,7: 0 - 24,8: 0 - 24,9: 0 - 24,10: 0 - 24,11: 0 - 24,12: 0 - 24,13: 0 - 24,14: 0 - 24,15: 0 - 25,0: 0 - 25,1: 0 - 25,2: 0 - 25,3: 0 - 25,4: 0 - 25,5: 0 - 25,6: 0 - 25,7: 0 - 25,8: 0 - 25,9: 0 - 25,10: 0 - 25,11: 0 - 25,12: 0 - 25,13: 0 - 25,14: 0 - 25,15: 0 - 26,0: 0 - 26,1: 0 - 26,2: 0 - 26,3: 0 - 26,4: 0 - 26,5: 0 - 26,6: 0 - 26,7: 0 - 26,8: 0 - 26,9: 0 - 26,10: 0 - 26,11: 0 - 26,12: 0 - 26,13: 0 - 26,14: 0 - 26,15: 0 - 27,0: 0 - 27,1: 0 - 27,2: 0 - 27,3: 0 - 27,4: 0 - 27,5: 0 - 27,6: 0 - 27,7: 0 - 27,8: 0 - 27,9: 0 - 27,10: 0 - 27,11: 0 - 27,12: 0 - 27,13: 0 - 27,14: 0 - 27,15: 0 - 28,0: 0 - 28,1: 0 - 28,2: 0 - 28,3: 0 - 28,4: 0 - 28,5: 0 - 28,6: 0 - 28,7: 0 - 28,8: 0 - 28,9: 0 - 28,10: 0 - 28,11: 0 - 28,12: 0 - 28,13: 0 - 28,14: 0 - 29,0: 0 - 29,1: 0 - 29,2: 0 - 29,3: 0 - 29,4: 0 - 29,5: 0 - 29,6: 0 - 29,7: 0 - 29,8: 0 - 29,9: 0 - 29,10: 0 - 29,11: 0 - 29,12: 0 - 29,13: 0 - 29,14: 0 - 30,0: 0 - 30,1: 0 - 30,2: 0 - 30,3: 0 - 30,4: 0 - 30,5: 0 - 30,6: 0 - 30,7: 0 - 30,8: 0 - 30,9: 0 - 30,10: 0 - 30,11: 0 - 30,12: 0 - 30,13: 0 - 30,14: 0 - 31,0: 0 - 31,1: 0 - 31,2: 0 - 31,3: 0 - 31,4: 0 - 31,5: 0 - 31,6: 0 - 31,7: 0 - 31,8: 0 - 31,9: 0 - 31,10: 0 - 31,11: 0 - 31,12: 0 - 31,13: 0 - 31,14: 0 - 21,-11: 0 - 21,-10: 0 - 21,-9: 0 - 21,-8: 0 - 21,-7: 0 - 21,-6: 0 - 21,-5: 0 - 21,-4: 0 - 21,-3: 0 - 21,-2: 0 - 21,-1: 0 - 22,-11: 0 - 22,-10: 0 - 22,-9: 0 - 22,-8: 0 - 22,-7: 0 - 22,-6: 0 - 22,-5: 0 - 22,-4: 0 - 22,-3: 0 - 22,-2: 0 - 22,-1: 0 - 23,-13: 0 - 23,-12: 0 - 23,-11: 0 - 23,-10: 0 - 23,-9: 0 - 23,-8: 0 - 23,-7: 0 - 23,-6: 0 - 23,-5: 0 - 23,-4: 0 - 23,-3: 0 - 23,-2: 0 - 23,-1: 0 - 24,-13: 0 - 24,-12: 0 - 24,-11: 0 - 24,-10: 0 - 24,-9: 0 - 24,-8: 0 - 24,-7: 0 - 24,-6: 0 - 24,-5: 0 - 24,-4: 0 - 24,-3: 0 - 24,-2: 0 - 24,-1: 0 - 25,-13: 0 - 25,-12: 0 - 25,-11: 0 - 25,-10: 0 - 25,-9: 0 - 25,-8: 0 - 25,-7: 0 - 25,-6: 0 - 25,-5: 0 - 25,-4: 0 - 25,-3: 0 - 25,-2: 0 - 25,-1: 0 - 26,-13: 0 - 26,-12: 0 - 26,-11: 0 - 26,-10: 0 - 26,-9: 0 - 26,-8: 0 - 26,-7: 0 - 26,-6: 0 - 26,-5: 0 - 26,-4: 0 - 26,-3: 0 - 26,-2: 0 - 26,-1: 0 - 27,-13: 0 - 27,-12: 0 - 27,-11: 0 - 27,-10: 0 - 27,-9: 0 - 27,-8: 0 - 27,-7: 0 - 27,-6: 0 - 27,-5: 0 - 27,-4: 0 - 27,-3: 0 - 27,-2: 0 - 27,-1: 0 - 28,-13: 0 - 28,-12: 0 - 28,-11: 0 - 28,-10: 0 - 28,-9: 0 - 28,-8: 0 - 28,-7: 0 - 28,-6: 0 - 28,-5: 0 - 28,-4: 0 - 28,-3: 0 - 28,-2: 0 - 28,-1: 0 - 29,-13: 0 - 29,-12: 0 - 29,-11: 0 - 29,-10: 0 - 29,-9: 0 - 29,-8: 0 - 29,-7: 0 - 29,-6: 0 - 29,-5: 0 - 29,-4: 0 - 29,-3: 0 - 29,-2: 0 - 29,-1: 0 - 30,-13: 0 - 30,-12: 0 - 30,-11: 0 - 30,-10: 0 - 30,-9: 0 - 30,-8: 0 - 30,-7: 0 - 30,-6: 0 - 30,-5: 0 - 30,-4: 0 - 30,-3: 0 - 30,-2: 0 - 30,-1: 0 - 31,-13: 0 - 31,-12: 0 - 31,-11: 0 - 31,-10: 0 - 31,-9: 0 - 31,-8: 0 - 31,-7: 0 - 31,-6: 0 - 31,-5: 0 - 31,-4: 0 - 31,-3: 0 - 31,-2: 0 - 31,-1: 0 - 32,0: 0 - 32,1: 0 - 32,2: 0 - 32,3: 0 - 32,4: 0 - 32,5: 0 - 32,6: 0 - 32,7: 0 - 32,8: 0 - 32,9: 0 - 32,10: 0 - 32,11: 0 - 32,12: 0 - 32,13: 0 - 32,14: 0 - 32,15: 0 - 33,0: 0 - 33,1: 0 - 33,2: 0 - 33,3: 0 - 33,4: 0 - 33,5: 0 - 33,6: 0 - 33,7: 0 - 33,8: 0 - 33,9: 0 - 33,10: 0 - 33,11: 0 - 33,12: 0 - 33,13: 0 - 33,14: 0 - 33,15: 0 - 34,0: 0 - 34,1: 0 - 34,2: 0 - 34,3: 0 - 34,4: 0 - 34,5: 0 - 34,6: 0 - 34,7: 0 - 34,8: 0 - 34,9: 0 - 34,10: 0 - 34,11: 0 - 34,12: 0 - 34,13: 0 - 34,14: 0 - 34,15: 0 - 35,0: 0 - 35,1: 0 - 35,2: 0 - 35,3: 0 - 35,4: 0 - 35,5: 0 - 35,6: 0 - 35,7: 0 - 35,8: 0 - 35,9: 0 - 35,10: 0 - 35,11: 0 - 35,12: 0 - 35,13: 0 - 35,14: 0 - 35,15: 0 - 36,0: 0 - 36,1: 0 - 36,2: 0 - 36,3: 0 - 36,4: 0 - 36,5: 0 - 36,6: 0 - 36,7: 0 - 36,8: 0 - 36,9: 0 - 36,10: 0 - 36,11: 0 - 36,12: 0 - 36,13: 0 - 36,14: 0 - 36,15: 0 - 37,0: 0 - 37,1: 0 - 37,2: 0 - 37,3: 0 - 37,4: 0 - 37,5: 0 - 37,6: 0 - 37,7: 0 - 37,8: 0 - 37,9: 0 - 37,10: 0 - 37,11: 0 - 37,12: 0 - 37,13: 0 - 37,14: 0 - 37,15: 0 - 38,0: 0 - 38,1: 0 - 38,2: 0 - 38,3: 0 - 38,4: 0 - 38,5: 0 - 38,6: 0 - 38,7: 0 - 38,8: 0 - 38,9: 0 - 38,10: 0 - 38,11: 0 - 38,12: 0 - 38,13: 0 - 38,14: 0 - 38,15: 0 - 39,0: 0 - 39,1: 0 - 39,2: 0 - 39,3: 0 - 39,4: 0 - 39,5: 0 - 39,6: 0 - 39,7: 0 - 39,8: 0 - 39,9: 0 - 39,10: 0 - 39,11: 0 - 39,12: 0 - 39,13: 0 - 39,14: 0 - 39,15: 0 - 40,0: 0 - 40,1: 0 - 40,2: 0 - 40,3: 0 - 40,4: 0 - 40,5: 0 - 40,6: 0 - 40,7: 0 - 40,8: 0 - 40,9: 0 - 40,10: 0 - 40,11: 0 - 40,12: 0 - 40,13: 0 - 40,14: 0 - 40,15: 0 - 41,0: 0 - 41,1: 0 - 41,2: 0 - 41,3: 0 - 41,4: 0 - 41,5: 0 - 41,6: 0 - 41,7: 0 - 41,8: 0 - 41,9: 0 - 41,10: 0 - 41,11: 0 - 41,12: 0 - 41,13: 0 - 41,14: 0 - 41,15: 0 - 42,0: 0 - 42,1: 0 - 42,2: 0 - 42,3: 0 - 42,4: 0 - 42,5: 0 - 42,6: 0 - 42,7: 0 - 42,8: 0 - 42,9: 0 - 42,10: 0 - 42,11: 0 - 42,12: 0 - 42,13: 0 - 42,14: 0 - 42,15: 0 - 43,0: 0 - 43,1: 0 - 43,2: 0 - 43,3: 0 - 43,4: 0 - 43,5: 0 - 43,6: 0 - 43,7: 0 - 43,8: 0 - 43,9: 0 - 43,10: 0 - 43,11: 0 - 43,12: 0 - 43,13: 0 - 43,14: 0 - 43,15: 0 - 32,-13: 0 - 32,-12: 0 - 32,-11: 0 - 32,-10: 0 - 32,-9: 0 - 32,-8: 0 - 32,-7: 0 - 32,-6: 0 - 32,-5: 0 - 32,-4: 0 - 32,-3: 0 - 32,-2: 0 - 32,-1: 0 - 33,-12: 0 - 33,-11: 0 - 33,-10: 0 - 33,-9: 0 - 33,-8: 0 - 33,-7: 0 - 33,-6: 0 - 33,-5: 0 - 33,-4: 0 - 33,-3: 0 - 33,-2: 0 - 33,-1: 0 - 34,-12: 0 - 34,-11: 0 - 34,-10: 0 - 34,-9: 0 - 34,-8: 0 - 34,-7: 0 - 34,-6: 0 - 34,-5: 0 - 34,-4: 0 - 34,-3: 0 - 34,-2: 0 - 34,-1: 0 - 35,-12: 0 - 35,-11: 0 - 35,-10: 0 - 35,-9: 0 - 35,-8: 0 - 35,-7: 0 - 35,-6: 0 - 35,-5: 0 - 35,-4: 0 - 35,-3: 0 - 35,-2: 0 - 35,-1: 0 - 36,-12: 0 - 36,-11: 0 - 36,-10: 0 - 36,-9: 0 - 36,-8: 0 - 36,-7: 0 - 36,-6: 0 - 36,-5: 0 - 36,-4: 0 - 36,-3: 0 - 36,-2: 0 - 36,-1: 0 - 37,-12: 0 - 37,-11: 0 - 37,-10: 0 - 37,-9: 0 - 37,-8: 0 - 37,-7: 0 - 37,-6: 0 - 37,-5: 0 - 37,-4: 0 - 37,-3: 0 - 37,-2: 0 - 37,-1: 0 - 38,-12: 0 - 38,-11: 0 - 38,-10: 0 - 38,-9: 0 - 38,-8: 0 - 38,-7: 0 - 38,-6: 0 - 38,-5: 0 - 38,-4: 0 - 38,-3: 0 - 38,-2: 0 - 38,-1: 0 - 39,-12: 0 - 39,-11: 0 - 39,-10: 0 - 39,-9: 0 - 39,-8: 0 - 39,-7: 0 - 39,-6: 0 - 39,-5: 0 - 39,-4: 0 - 39,-3: 0 - 39,-2: 0 - 39,-1: 0 - 40,-12: 0 - 40,-11: 0 - 40,-10: 0 - 40,-9: 0 - 40,-8: 0 - 40,-7: 0 - 40,-6: 0 - 40,-5: 0 - 40,-4: 0 - 40,-3: 0 - 40,-2: 0 - 40,-1: 0 - 41,-12: 0 - 41,-11: 0 - 41,-10: 0 - 41,-9: 0 - 41,-8: 0 - 41,-7: 0 - 41,-6: 0 - 41,-5: 0 - 41,-4: 0 - 41,-3: 0 - 41,-2: 0 - 41,-1: 0 - 42,-12: 0 - 42,-11: 0 - 42,-10: 0 - 42,-9: 0 - 42,-8: 0 - 42,-7: 0 - 42,-6: 0 - 42,-5: 0 - 42,-4: 0 - 42,-3: 0 - 42,-2: 0 - 42,-1: 0 - 43,-12: 0 - 43,-11: 0 - 43,-10: 0 - 43,-9: 0 - 43,-8: 0 - 43,-7: 0 - 43,-6: 0 - 43,-5: 0 - 43,-4: 0 - 43,-3: 0 - 43,-2: 0 - 43,-1: 0 - 28,15: 0 - 29,15: 0 - 30,15: 0 - 31,15: 0 - 26,16: 0 - 26,17: 0 - 26,18: 0 - 27,17: 0 - 27,20: 0 - 28,16: 0 - 28,17: 0 - 28,18: 0 - 28,20: 0 - 29,16: 0 - 29,17: 0 - 29,18: 0 - 29,20: 0 - 30,16: 0 - 30,17: 0 - 30,18: 0 - 30,20: 0 - 31,16: 0 - 31,17: 0 - 31,18: 0 - 31,19: 0 - 31,20: 0 - 44,0: 0 - 44,1: 0 - 44,2: 0 - 44,3: 0 - 44,4: 0 - 44,5: 0 - 44,6: 0 - 44,7: 0 - 44,8: 0 - 44,9: 0 - 44,10: 0 - 44,11: 0 - 44,12: 0 - 44,13: 0 - 44,14: 0 - 44,15: 0 - 45,0: 0 - 45,3: 0 - 45,4: 0 - 45,5: 0 - 45,6: 0 - 45,7: 0 - 45,8: 0 - 45,9: 0 - 45,10: 0 - 45,11: 0 - 45,12: 0 - 45,13: 0 - 45,14: 0 - 45,15: 0 - 46,0: 0 - 46,1: 0 - 46,3: 0 - 46,4: 1 - 46,5: 0 - 46,6: 2 - 46,7: 0 - 46,8: 3 - 46,9: 0 - 46,10: 4 - 46,11: 0 - 46,12: 3 - 46,13: 0 - 46,14: 3 - 46,15: 0 - 47,1: 0 - 47,2: 0 - 47,3: 0 - 47,4: 1 - 47,5: 0 - 47,6: 2 - 47,7: 0 - 47,8: 3 - 47,9: 0 - 47,10: 4 - 47,11: 0 - 47,12: 3 - 47,13: 0 - 47,14: 3 - 47,15: 0 - 40,-15: 0 - 40,-14: 0 - 40,-13: 0 - 41,-15: 0 - 41,-14: 0 - 41,-13: 0 - 42,-15: 0 - 42,-14: 0 - 42,-13: 0 - 43,-15: 0 - 43,-14: 0 - 43,-13: 0 - 44,-14: 0 - 44,-13: 0 - 44,-12: 0 - 44,-9: 0 - 44,-6: 0 - 44,-5: 0 - 44,-3: 0 - 44,-2: 0 - 45,-14: 0 - 45,-13: 0 - 45,-12: 0 - 45,-11: 0 - 45,-10: 0 - 45,-9: 0 - 45,-8: 0 - 45,-7: 0 - 45,-6: 0 - 45,-4: 0 - 45,-1: 0 - 46,-14: 0 - 46,-13: 0 - 46,-12: 0 - 46,-10: 0 - 46,-8: 0 - 46,-5: 0 - 46,-4: 0 - 46,-3: 0 - 46,-2: 0 - 46,-1: 0 - 47,-14: 0 - 47,-13: 0 - 47,-12: 0 - 47,-11: 0 - 47,-10: 0 - 47,-9: 0 - 47,-8: 0 - 47,-7: 0 - 47,-6: 0 - 47,-5: 0 - 47,-1: 0 - 32,16: 0 - 32,17: 0 - 32,18: 0 - 32,20: 0 - 33,16: 0 - 33,18: 0 - 33,20: 0 - 34,16: 0 - 34,18: 0 - 34,20: 0 - 35,16: 0 - 35,18: 0 - 36,16: 0 - 36,17: 0 - 36,18: 0 - 36,19: 0 - 36,20: 0 - 36,21: 0 - 36,22: 0 - 36,23: 0 - 37,16: 0 - 37,19: 0 - 38,16: 0 - 38,17: 0 - 38,18: 0 - 38,19: 0 - 38,20: 0 - 38,21: 0 - 38,23: 0 - 39,16: 0 - 39,17: 0 - 39,18: 0 - 39,19: 0 - 39,20: 0 - 39,21: 0 - 39,22: 0 - 39,23: 0 - 40,16: 0 - 40,17: 0 - 40,18: 0 - 40,19: 0 - 40,20: 0 - 40,21: 0 - 40,23: 0 - 41,16: 0 - 41,17: 0 - 41,18: 0 - 41,19: 0 - 41,20: 0 - 41,21: 0 - 41,23: 0 - 42,16: 0 - 42,17: 0 - 42,18: 0 - 42,19: 0 - 42,20: 0 - 42,21: 0 - 42,23: 0 - 43,16: 0 - 43,17: 0 - 43,18: 0 - 43,19: 0 - 43,20: 0 - 43,21: 0 - 44,16: 0 - 44,17: 0 - 44,18: 0 - 44,19: 0 - 44,20: 0 - 44,21: 0 - 44,22: 0 - 44,23: 0 - 45,20: 0 - 45,23: 0 - 46,17: 0 - 46,18: 3 - 46,19: 0 - 46,20: 0 - 46,21: 0 - 46,23: 0 - 48,1: 0 - 48,3: 0 - 48,4: 1 - 48,5: 0 - 48,6: 2 - 48,7: 0 - 48,8: 3 - 48,9: 0 - 48,10: 4 - 48,11: 0 - 48,12: 3 - 48,13: 0 - 48,14: 3 - 48,15: 0 - 49,1: 0 - 49,3: 0 - 49,4: 0 - 49,5: 0 - 49,6: 0 - 49,7: 0 - 49,8: 0 - 49,9: 0 - 49,10: 0 - 49,11: 0 - 49,12: 0 - 49,13: 0 - 49,14: 0 - 49,15: 0 - 50,1: 0 - 50,3: 0 - 50,5: 0 - 50,9: 0 - 50,14: 0 - 51,1: 0 - 51,2: 0 - 51,3: 0 - 51,5: 0 - 51,6: 0 - 51,7: 0 - 51,8: 0 - 51,9: 0 - 51,10: 0 - 51,11: 0 - 51,13: 0 - 51,14: 0 - 51,15: 0 - 53,0: 0 - 53,2: 0 - 54,0: 0 - 54,1: 0 - 54,2: 0 - 55,0: 0 - 55,2: 0 - 56,0: 0 - 56,2: 0 - 57,0: 0 - 57,1: 0 - 57,2: 0 - 58,0: 0 - 58,2: 0 - 59,0: 0 - 59,2: 0 - 62,0: 0 - 62,1: 0 - 48,16: 3 - 48,17: 0 - 49,17: 0 - 50,17: 0 - 51,16: 0 - 51,17: 0 - 48,-13: 0 - 48,-10: 0 - 48,-7: 0 - 48,-5: 0 - 48,-4: 0 - 48,-3: 0 - 48,-2: 0 - 48,-1: 0 - 49,-13: 0 - 49,-12: 0 - 49,-10: 0 - 49,-9: 0 - 49,-7: 0 - 49,-4: 0 - 49,-3: 0 - 49,-1: 0 - 50,-12: 0 - 50,-11: 0 - 50,-10: 0 - 50,-9: 0 - 50,-8: 0 - 50,-7: 0 - 50,-6: 0 - 50,-5: 0 - 50,-4: 0 - 50,-2: 0 - 50,-1: 0 - 51,-14: 0 - 51,-11: 0 - 51,-10: 0 - 51,-9: 0 - 51,-8: 0 - 51,-6: 0 - 51,-4: 0 - 51,-1: 0 - 52,-14: 0 - 52,-13: 0 - 52,-12: 0 - 52,-11: 0 - 52,-10: 0 - 52,-9: 0 - 52,-8: 0 - 52,-7: 0 - 52,-6: 0 - 52,-5: 0 - 52,-4: 0 - 52,-3: 0 - 52,-2: 0 - 52,-1: 0 - 53,-14: 0 - 53,-11: 0 - 53,-10: 0 - 53,-9: 0 - 53,-8: 0 - 53,-7: 0 - 53,-6: 0 - 53,-5: 0 - 53,-4: 0 - 53,-3: 0 - 53,-2: 0 - 53,-1: 0 - 54,-14: 0 - 54,-12: 0 - 54,-11: 0 - 54,-10: 0 - 54,-9: 0 - 54,-8: 0 - 54,-7: 0 - 54,-6: 0 - 54,-5: 0 - 54,-4: 0 - 54,-3: 0 - 54,-2: 0 - 54,-1: 0 - 55,-12: 0 - 55,-11: 0 - 55,-10: 0 - 55,-9: 0 - 55,-8: 0 - 55,-7: 0 - 55,-6: 0 - 55,-5: 0 - 55,-4: 0 - 55,-3: 0 - 55,-2: 0 - 55,-1: 0 - 56,-14: 0 - 56,-12: 0 - 56,-11: 0 - 56,-10: 0 - 56,-9: 0 - 56,-8: 0 - 56,-7: 0 - 56,-6: 0 - 56,-5: 0 - 56,-4: 0 - 56,-3: 0 - 56,-2: 0 - 56,-1: 0 - 57,-14: 0 - 57,-12: 0 - 57,-11: 0 - 57,-10: 0 - 57,-9: 0 - 57,-8: 0 - 57,-7: 0 - 57,-6: 0 - 57,-5: 0 - 57,-4: 0 - 57,-3: 0 - 57,-2: 0 - 57,-1: 0 - 58,-14: 0 - 58,-13: 0 - 58,-12: 0 - 58,-11: 0 - 58,-10: 0 - 58,-9: 0 - 58,-8: 0 - 58,-7: 0 - 58,-6: 0 - 58,-5: 0 - 58,-4: 0 - 58,-3: 0 - 58,-2: 0 - 58,-1: 0 - 59,-14: 0 - 59,-12: 0 - 59,-11: 0 - 59,-10: 0 - 59,-9: 0 - 59,-8: 0 - 59,-7: 0 - 59,-6: 0 - 59,-5: 0 - 59,-4: 0 - 59,-3: 0 - 59,-2: 0 - 59,-1: 0 - 60,-14: 0 - 60,-11: 0 - 60,-10: 0 - 60,-9: 0 - 60,-8: 0 - 60,-7: 0 - 60,-6: 0 - 60,-5: 0 - 60,-4: 0 - 60,-3: 0 - 60,-2: 0 - 60,-1: 0 - 61,-14: 0 - 61,-11: 0 - 61,-10: 0 - 61,-9: 0 - 61,-8: 0 - 61,-7: 0 - 61,-5: 0 - 61,-2: 0 - 62,-14: 0 - 62,-13: 0 - 62,-12: 0 - 62,-11: 0 - 62,-10: 0 - 62,-9: 0 - 62,-8: 0 - 62,-7: 0 - 62,-5: 0 - 62,-4: 0 - 62,-3: 0 - 62,-2: 0 - 62,-1: 0 - 63,-14: 0 - 63,-11: 0 - 63,-10: 0 - 63,-9: 0 - 63,-8: 0 - 63,-7: 0 - 63,-5: 0 - 64,-14: 0 - 64,-8: 0 - 65,-14: 0 - 65,-12: 0 - 65,-11: 0 - 65,-10: 0 - 65,-9: 0 - 65,-8: 0 - 65,-7: 0 - 65,-6: 0 - 45,2: 0 - 46,2: 0 - 45,16: 0 - 46,16: 3 - 0,-16: 0 - 0,-15: 0 - 0,-14: 0 - 0,-13: 0 - 1,-16: 0 - 1,-15: 0 - 1,-14: 0 - 1,-13: 0 - 1,-12: 0 - 2,-16: 0 - 2,-15: 0 - 2,-14: 0 - 2,-13: 0 - 2,-12: 0 - 3,-16: 0 - 3,-15: 0 - 3,-14: 0 - 3,-13: 0 - 3,-12: 0 - 4,-16: 0 - 4,-15: 0 - 4,-14: 0 - 4,-13: 0 - 5,-16: 0 - 5,-15: 0 - 5,-14: 0 - 5,-13: 0 - 6,-16: 0 - 6,-15: 0 - 6,-14: 0 - 6,-13: 0 - 7,-16: 0 - 7,-15: 0 - 7,-14: 0 - 7,-13: 0 - -10,11: 0 - -10,12: 0 - -9,11: 0 - -9,12: 0 - -9,13: 0 - 44,-11: 0 - 46,-11: 0 - 0,-17: 0 - 1,-17: 0 - 2,-17: 0 - 3,-17: 0 - 4,-17: 0 - 5,-17: 0 - 6,-17: 0 - 7,-17: 0 - -13,-7: 0 - -13,-6: 0 - -13,-5: 0 - -13,-4: 0 - -13,-3: 0 - -13,-2: 0 - -12,-7: 0 - -12,-6: 0 - -12,-5: 0 - -12,-4: 0 - -12,-3: 0 - -12,-2: 0 - -11,-7: 0 - -11,-6: 0 - -11,-5: 0 - -11,-4: 0 - -11,-3: 0 - -11,-2: 0 - -10,-7: 0 - -10,-6: 0 - -10,-5: 0 - -10,-4: 0 - -10,-3: 0 - -10,-2: 0 - -9,-6: 0 - -9,-5: 0 - -9,-4: 0 - 8,-13: 0 - 9,-13: 0 - 9,-12: 0 - 9,-11: 0 - 9,-10: 0 - 9,-9: 0 - 9,-8: 0 - 9,-7: 0 - 9,-6: 0 - 9,-5: 0 - 10,-13: 0 - 10,-12: 0 - 10,-11: 0 - 10,-10: 0 - 10,-9: 0 - 10,-8: 0 - 10,-7: 0 - 10,-6: 0 - 10,-5: 0 - 11,-13: 0 - 11,-12: 0 - 11,-11: 0 - 11,-10: 0 - 11,-9: 0 - 11,-8: 0 - 11,-7: 0 - 11,-6: 0 - 11,-5: 0 - 12,-13: 0 - 12,-12: 0 - 12,-11: 0 - 12,-10: 0 - 12,-9: 0 - 12,-8: 0 - 12,-7: 0 - 12,-6: 0 - 12,-5: 0 - 13,-13: 0 - 13,-12: 0 - 13,-11: 0 - 13,-10: 0 - 13,-9: 0 - 13,-8: 0 - 13,-7: 0 - 13,-6: 0 - 13,-5: 0 - 14,-13: 0 - 14,-12: 0 - 14,-11: 0 - 14,-10: 0 - 14,-9: 0 - 14,-8: 0 - 14,-7: 0 - 14,-6: 0 - 14,-5: 0 - 15,-13: 0 - 15,-12: 0 - 15,-11: 0 - 15,-10: 0 - 15,-9: 0 - 15,-8: 0 - 15,-7: 0 - 15,-6: 0 - 15,-5: 0 - 16,-13: 0 - 16,-12: 0 - 16,-11: 0 - 16,-10: 0 - 16,-9: 0 - 16,-8: 0 - 16,-7: 0 - 16,-6: 0 - 16,-5: 0 - 17,-13: 0 - 17,-12: 0 - 17,-11: 0 - 17,-10: 0 - 17,-9: 0 - 17,-8: 0 - 17,-7: 0 - 17,-6: 0 - 17,-5: 0 - 18,-13: 0 - 18,-12: 0 - 18,-11: 0 - 18,-10: 0 - 18,-9: 0 - 18,-8: 0 - 18,-7: 0 - 18,-6: 0 - 18,-5: 0 - 19,-13: 0 - 19,-12: 0 - 19,-11: 0 - 19,-10: 0 - 19,-9: 0 - 19,-8: 0 - 19,-7: 0 - 19,-6: 0 - 19,-5: 0 - 20,-13: 0 - 20,-12: 0 - 20,-11: 0 - 20,-10: 0 - 20,-9: 0 - 20,-8: 0 - 20,-7: 0 - 20,-6: 0 - 20,-5: 0 - 21,-15: 0 - 21,-14: 0 - 21,-13: 0 - 21,-12: 0 - 22,-15: 0 - 22,-14: 0 - 22,-13: 0 - 22,-12: 0 - 23,-15: 0 - 23,-14: 0 - 24,-15: 0 - 24,-14: 0 - 25,-15: 0 - 25,-14: 0 - 26,-15: 0 - 26,-14: 0 - 27,-15: 0 - 27,-14: 0 - 28,-15: 0 - 28,-14: 0 - 29,-15: 0 - 29,-14: 0 - 30,-15: 0 - 30,-14: 0 - 31,-15: 0 - 31,-14: 0 - 32,-15: 0 - 32,-14: 0 - -9,-16: 0 - -9,-15: 0 - -9,-12: 0 - -8,-16: 0 - -8,-15: 0 - -8,-14: 0 - -8,-13: 0 - -8,-12: 0 - -7,-16: 0 - -7,-15: 0 - -7,-14: 0 - -7,-13: 0 - -7,-12: 0 - -6,-16: 0 - -6,-15: 0 - -6,-14: 0 - -6,-13: 0 - -5,-16: 0 - -5,-15: 0 - -5,-14: 0 - -5,-13: 0 - -4,-16: 0 - -4,-15: 0 - -4,-14: 0 - -4,-13: 0 - -3,-16: 0 - -3,-15: 0 - -3,-14: 0 - -3,-13: 0 - -2,-16: 0 - -2,-15: 0 - -2,-14: 0 - -2,-13: 0 - -1,-16: 0 - -1,-15: 0 - -1,-14: 0 - -1,-13: 0 - 8,-16: 0 - 8,-15: 0 - 8,-14: 0 - 9,-16: 0 - 9,-15: 0 - 9,-14: 0 - 10,-16: 0 - 10,-15: 0 - 10,-14: 0 - 11,-16: 0 - 11,-15: 0 - 11,-14: 0 - 12,-16: 0 - 12,-15: 0 - 12,-14: 0 - 13,-16: 0 - 13,-15: 0 - 13,-14: 0 - 14,-16: 0 - 14,-15: 0 - 14,-14: 0 - 15,-16: 0 - 15,-15: 0 - 15,-14: 0 - 16,-16: 0 - 16,-15: 0 - 16,-14: 0 - 17,-16: 0 - 17,-15: 0 - 17,-14: 0 - 18,-16: 0 - 18,-15: 0 - 18,-14: 0 - 19,-16: 0 - 19,-15: 0 - 19,-14: 0 - 20,-16: 0 - 20,-15: 0 - 20,-14: 0 - 21,-16: 0 - 22,-16: 0 - 23,-16: 0 - 24,-16: 0 - 25,-16: 0 - 16,-23: 0 - 16,-22: 0 - 16,-21: 0 - 16,-20: 0 - 16,-19: 0 - 16,-18: 0 - 16,-17: 0 - 17,-23: 0 - 17,-22: 0 - 17,-21: 0 - 17,-20: 0 - 17,-19: 0 - 17,-18: 0 - 17,-17: 0 - 18,-23: 0 - 18,-22: 0 - 18,-21: 0 - 18,-20: 0 - 18,-19: 0 - 18,-18: 0 - 18,-17: 0 - 19,-23: 0 - 19,-22: 0 - 19,-21: 0 - 19,-20: 0 - 19,-19: 0 - 19,-18: 0 - 19,-17: 0 - 20,-23: 0 - 20,-22: 0 - 20,-21: 0 - 20,-20: 0 - 20,-19: 0 - 20,-18: 0 - 20,-17: 0 - 21,-23: 0 - 21,-22: 0 - 21,-21: 0 - 21,-20: 0 - 21,-19: 0 - 21,-18: 0 - 21,-17: 0 - 22,-23: 0 - 22,-22: 0 - 22,-21: 0 - 22,-20: 0 - 22,-19: 0 - 22,-18: 0 - 22,-17: 0 - 23,-17: 0 - 24,-17: 0 - 25,-17: 0 - 0,-28: 0 - 0,-27: 0 - 0,-26: 0 - 0,-25: 0 - 0,-24: 0 - 0,-23: 0 - 0,-22: 0 - 0,-21: 0 - 0,-20: 0 - 0,-19: 0 - 0,-18: 0 - 1,-28: 0 - 1,-27: 0 - 1,-26: 0 - 1,-25: 0 - 1,-24: 0 - 1,-23: 0 - 1,-22: 0 - 1,-21: 0 - 1,-20: 0 - 1,-19: 0 - 1,-18: 0 - 2,-28: 0 - 2,-27: 0 - 2,-26: 0 - 2,-25: 0 - 2,-24: 0 - 2,-23: 0 - 2,-22: 0 - 2,-21: 0 - 2,-20: 0 - 2,-19: 0 - 2,-18: 0 - 3,-28: 0 - 3,-27: 0 - 3,-26: 0 - 3,-25: 0 - 3,-24: 0 - 3,-23: 0 - 3,-22: 0 - 3,-21: 0 - 3,-20: 0 - 3,-19: 0 - 3,-18: 0 - 4,-28: 0 - 4,-27: 0 - 4,-26: 0 - 4,-25: 0 - 4,-24: 0 - 4,-23: 0 - 4,-22: 0 - 4,-21: 0 - 4,-20: 0 - 4,-19: 0 - 4,-18: 0 - 5,-28: 0 - 5,-27: 0 - 5,-26: 0 - 5,-25: 0 - 5,-24: 0 - 5,-23: 0 - 5,-22: 0 - 5,-21: 0 - 5,-20: 0 - 5,-19: 0 - 5,-18: 0 - 6,-28: 0 - 6,-27: 0 - 6,-26: 0 - 6,-25: 0 - 6,-24: 0 - 6,-23: 0 - 6,-22: 0 - 6,-21: 0 - 6,-20: 0 - 6,-19: 0 - 6,-18: 0 - 7,-28: 0 - 7,-27: 0 - 7,-26: 0 - 7,-25: 0 - 7,-24: 0 - 7,-23: 0 - 7,-22: 0 - 7,-21: 0 - 7,-20: 0 - 7,-19: 0 - 7,-18: 0 - 8,-28: 0 - 8,-27: 0 - 8,-26: 0 - 8,-25: 0 - 8,-24: 0 - 8,-23: 0 - 8,-22: 0 - 8,-21: 0 - 8,-20: 0 - 8,-19: 0 - 8,-18: 0 - 8,-17: 0 - 9,-23: 0 - 9,-22: 0 - 9,-21: 0 - 9,-20: 0 - 9,-19: 0 - 9,-18: 0 - 9,-17: 0 - 10,-23: 0 - 10,-22: 0 - 10,-21: 0 - 10,-20: 0 - 10,-19: 0 - 10,-18: 0 - 10,-17: 0 - 11,-23: 0 - 11,-22: 0 - 11,-21: 0 - 11,-20: 0 - 11,-19: 0 - 11,-18: 0 - 11,-17: 0 - 12,-23: 0 - 12,-22: 0 - 12,-21: 0 - 12,-20: 0 - 12,-19: 0 - 12,-18: 0 - 12,-17: 0 - 13,-23: 0 - 13,-22: 0 - 13,-21: 0 - 13,-20: 0 - 13,-19: 0 - 13,-18: 0 - 13,-17: 0 - 14,-23: 0 - 14,-22: 0 - 14,-21: 0 - 14,-20: 0 - 14,-19: 0 - 14,-18: 0 - 14,-17: 0 - 15,-23: 0 - 15,-22: 0 - 15,-21: 0 - 15,-20: 0 - 15,-19: 0 - 15,-18: 0 - 15,-17: 0 - -9,-19: 0 - -9,-18: 0 - -9,-17: 0 - -8,-28: 0 - -8,-27: 0 - -8,-26: 0 - -8,-25: 0 - -8,-24: 0 - -8,-23: 0 - -8,-22: 0 - -8,-21: 0 - -8,-20: 0 - -8,-19: 0 - -8,-18: 0 - -8,-17: 0 - -7,-28: 0 - -7,-27: 0 - -7,-26: 0 - -7,-25: 0 - -7,-24: 0 - -7,-23: 0 - -7,-22: 0 - -7,-21: 0 - -7,-20: 0 - -7,-19: 0 - -7,-18: 0 - -7,-17: 0 - -6,-28: 0 - -6,-27: 0 - -6,-26: 0 - -6,-25: 0 - -6,-24: 0 - -6,-23: 0 - -6,-22: 0 - -6,-21: 0 - -6,-20: 0 - -6,-19: 0 - -6,-18: 0 - -6,-17: 0 - -5,-28: 0 - -5,-27: 0 - -5,-26: 0 - -5,-25: 0 - -5,-24: 0 - -5,-23: 0 - -5,-22: 0 - -5,-21: 0 - -5,-20: 0 - -5,-19: 0 - -5,-18: 0 - -5,-17: 0 - -4,-28: 0 - -4,-27: 0 - -4,-26: 0 - -4,-25: 0 - -4,-24: 0 - -4,-23: 0 - -4,-22: 0 - -4,-21: 0 - -4,-20: 0 - -4,-19: 0 - -4,-18: 0 - -4,-17: 0 - -3,-28: 0 - -3,-27: 0 - -3,-26: 0 - -3,-25: 0 - -3,-24: 0 - -3,-23: 0 - -3,-22: 0 - -3,-21: 0 - -3,-20: 0 - -3,-19: 0 - -3,-18: 0 - -3,-17: 0 - -2,-28: 0 - -2,-27: 0 - -2,-26: 0 - -2,-25: 0 - -2,-24: 0 - -2,-23: 0 - -2,-22: 0 - -2,-21: 0 - -2,-20: 0 - -2,-19: 0 - -2,-18: 0 - -2,-17: 0 - -1,-28: 0 - -1,-27: 0 - -1,-26: 0 - -1,-25: 0 - -1,-24: 0 - -1,-23: 0 - -1,-22: 0 - -1,-21: 0 - -1,-20: 0 - -1,-19: 0 - -1,-18: 0 - -1,-17: 0 - 26,-16: 0 - 27,-16: 0 - 28,-16: 0 - 29,-16: 0 - 30,-16: 0 - 31,-16: 0 - 32,-16: 0 - 33,-16: 0 - 33,-15: 0 - 33,-14: 0 - 33,-13: 0 - 34,-16: 0 - 34,-15: 0 - 34,-14: 0 - 34,-13: 0 - 35,-16: 0 - 35,-15: 0 - 35,-14: 0 - 35,-13: 0 - 36,-16: 0 - 36,-15: 0 - 36,-14: 0 - 36,-13: 0 - 37,-16: 0 - 37,-15: 0 - 37,-14: 0 - 37,-13: 0 - 38,-16: 0 - 38,-15: 0 - 38,-14: 0 - 38,-13: 0 - 39,-16: 0 - 39,-15: 0 - 39,-14: 0 - 39,-13: 0 - 40,-16: 0 - 41,-16: 0 - 42,-16: 0 - 16,-25: 0 - 16,-24: 0 - 17,-25: 0 - 17,-24: 0 - 18,-25: 0 - 18,-24: 0 - 19,-25: 0 - 19,-24: 0 - 20,-25: 0 - 20,-24: 0 - 21,-25: 0 - 21,-24: 0 - 22,-25: 0 - 22,-24: 0 - 23,-25: 0 - 23,-24: 0 - 23,-23: 0 - 23,-22: 0 - 23,-21: 0 - 23,-20: 0 - 23,-19: 0 - 23,-18: 0 - 24,-25: 0 - 24,-24: 0 - 24,-23: 0 - 24,-22: 0 - 24,-21: 0 - 24,-20: 0 - 24,-19: 0 - 24,-18: 0 - 25,-25: 0 - 25,-24: 0 - 25,-23: 0 - 25,-22: 0 - 25,-21: 0 - 25,-20: 0 - 25,-19: 0 - 25,-18: 0 - 26,-25: 0 - 26,-24: 0 - 26,-23: 0 - 26,-22: 0 - 26,-21: 0 - 26,-20: 0 - 26,-19: 0 - 26,-18: 0 - 26,-17: 0 - 27,-25: 0 - 27,-24: 0 - 27,-23: 0 - 27,-22: 0 - 27,-21: 0 - 27,-20: 0 - 27,-19: 0 - 27,-18: 0 - 27,-17: 0 - 28,-25: 0 - 28,-24: 0 - 28,-23: 0 - 28,-22: 0 - 28,-21: 0 - 28,-20: 0 - 28,-19: 0 - 28,-18: 0 - 28,-17: 0 - 29,-25: 0 - 29,-24: 0 - 29,-23: 0 - 29,-22: 0 - 29,-21: 0 - 29,-20: 0 - 29,-19: 0 - 29,-18: 0 - 29,-17: 0 - 30,-25: 0 - 30,-24: 0 - 30,-23: 0 - 30,-22: 0 - 30,-21: 0 - 30,-20: 0 - 30,-19: 0 - 30,-18: 0 - 30,-17: 0 - 31,-25: 0 - 31,-24: 0 - 31,-23: 0 - 31,-22: 0 - 31,-21: 0 - 31,-20: 0 - 31,-19: 0 - 31,-18: 0 - 31,-17: 0 - 9,-25: 0 - 9,-24: 0 - 10,-25: 0 - 10,-24: 0 - 11,-25: 0 - 11,-24: 0 - 12,-25: 0 - 12,-24: 0 - 13,-25: 0 - 13,-24: 0 - 14,-25: 0 - 14,-24: 0 - 15,-25: 0 - 15,-24: 0 - -9,-28: 0 - -9,-27: 0 - -9,-26: 0 - -9,-25: 0 - -9,-24: 0 - -9,-23: 0 - -9,-22: 0 - -9,-21: 0 - -9,-20: 0 - 32,-25: 0 - 32,-24: 0 - 32,-23: 0 - 32,-22: 0 - 32,-21: 0 - 32,-20: 0 - 32,-19: 0 - 32,-18: 0 - 32,-17: 0 - 33,-25: 0 - 33,-24: 0 - 33,-23: 0 - 33,-22: 0 - 33,-21: 0 - 33,-20: 0 - 33,-19: 0 - 33,-18: 0 - 33,-17: 0 - 34,-25: 0 - 34,-24: 0 - 34,-23: 0 - 34,-22: 0 - 34,-21: 0 - 34,-20: 0 - 34,-19: 0 - 34,-18: 0 - 34,-17: 0 - 35,-25: 0 - 35,-24: 0 - 35,-23: 0 - 35,-22: 0 - 35,-21: 0 - 35,-20: 0 - 35,-19: 0 - 35,-18: 0 - 35,-17: 0 - 36,-25: 0 - 36,-24: 0 - 36,-23: 0 - 36,-22: 0 - 36,-21: 0 - 36,-20: 0 - 36,-19: 0 - 36,-18: 0 - 36,-17: 0 - 37,-25: 0 - 37,-24: 0 - 37,-23: 0 - 37,-22: 0 - 37,-21: 0 - 37,-20: 0 - 37,-19: 0 - 37,-18: 0 - 37,-17: 0 - 38,-23: 0 - 38,-22: 0 - 38,-21: 0 - 38,-20: 0 - 38,-19: 0 - 38,-18: 0 - 38,-17: 0 - 39,-23: 0 - 39,-22: 0 - 39,-21: 0 - 39,-20: 0 - 39,-19: 0 - 39,-18: 0 - 39,-17: 0 - 40,-23: 0 - 40,-22: 0 - 40,-21: 0 - 40,-20: 0 - 40,-19: 0 - 40,-18: 0 - 40,-17: 0 - 41,-22: 0 - 41,-21: 0 - 41,-20: 0 - 41,-19: 0 - 41,-18: 0 - 41,-17: 0 - 42,-22: 0 - 42,-21: 0 - 42,-20: 0 - 42,-19: 0 - 42,-18: 0 - 42,-17: 0 - 43,-16: 0 - 44,-16: 0 - 44,-15: 0 - 45,-16: 0 - 45,-15: 0 - 46,-16: 0 - 46,-15: 0 - 47,-16: 0 - 47,-15: 0 - 48,-15: 0 - 49,-16: 0 - 49,-15: 0 - 49,-14: 0 - 16,-32: 0 - 16,-31: 0 - 16,-30: 0 - 16,-29: 0 - 16,-28: 0 - 16,-27: 0 - 16,-26: 0 - 17,-32: 0 - 17,-31: 0 - 17,-30: 0 - 17,-29: 0 - 17,-28: 0 - 17,-27: 0 - 17,-26: 0 - 18,-32: 0 - 18,-31: 0 - 18,-30: 0 - 18,-29: 0 - 18,-28: 0 - 18,-27: 0 - 18,-26: 0 - 19,-32: 0 - 19,-31: 0 - 19,-30: 0 - 19,-29: 0 - 19,-28: 0 - 19,-27: 0 - 19,-26: 0 - 20,-32: 0 - 20,-31: 0 - 20,-30: 0 - 20,-29: 0 - 20,-28: 0 - 20,-27: 0 - 20,-26: 0 - 21,-32: 0 - 21,-31: 0 - 21,-30: 0 - 21,-29: 0 - 21,-28: 0 - 21,-27: 0 - 21,-26: 0 - 22,-32: 0 - 22,-31: 0 - 22,-30: 0 - 22,-29: 0 - 22,-28: 0 - 22,-27: 0 - 22,-26: 0 - 23,-32: 0 - 23,-31: 0 - 23,-30: 0 - 23,-29: 0 - 23,-28: 0 - 23,-27: 0 - 23,-26: 0 - 24,-32: 0 - 24,-31: 0 - 24,-30: 0 - 24,-29: 0 - 24,-28: 0 - 24,-27: 0 - 24,-26: 0 - 25,-32: 0 - 25,-31: 0 - 25,-30: 0 - 25,-29: 0 - 25,-28: 0 - 25,-27: 0 - 25,-26: 0 - 26,-32: 0 - 26,-31: 0 - 26,-30: 0 - 26,-29: 0 - 26,-28: 0 - 26,-27: 0 - 26,-26: 0 - 27,-32: 0 - 27,-31: 0 - 27,-30: 0 - 27,-29: 0 - 27,-28: 0 - 27,-27: 0 - 27,-26: 0 - 28,-32: 0 - 28,-31: 0 - 28,-30: 0 - 28,-29: 0 - 28,-28: 0 - 28,-27: 0 - 28,-26: 0 - 29,-32: 0 - 29,-31: 0 - 29,-30: 0 - 29,-29: 0 - 29,-28: 0 - 29,-27: 0 - 29,-26: 0 - 30,-32: 0 - 30,-31: 0 - 30,-30: 0 - 30,-29: 0 - 30,-28: 0 - 30,-27: 0 - 30,-26: 0 - 31,-32: 0 - 31,-31: 0 - 31,-30: 0 - 31,-29: 0 - 31,-28: 0 - 31,-27: 0 - 31,-26: 0 - 0,-32: 0 - 0,-31: 0 - 0,-30: 0 - 0,-29: 0 - 1,-32: 0 - 1,-31: 0 - 1,-30: 0 - 1,-29: 0 - 2,-32: 0 - 2,-31: 0 - 2,-30: 0 - 2,-29: 0 - 3,-32: 0 - 3,-31: 0 - 3,-30: 0 - 3,-29: 0 - 4,-32: 0 - 4,-31: 0 - 4,-30: 0 - 4,-29: 0 - 5,-32: 0 - 5,-31: 0 - 5,-30: 0 - 5,-29: 0 - 6,-32: 0 - 6,-31: 0 - 6,-30: 0 - 6,-29: 0 - 7,-32: 0 - 7,-31: 0 - 7,-30: 0 - 7,-29: 0 - 8,-32: 0 - 8,-31: 0 - 8,-30: 0 - 8,-29: 0 - 9,-32: 0 - 9,-31: 0 - 9,-30: 0 - 9,-29: 0 - 9,-28: 0 - 9,-27: 0 - 9,-26: 0 - 10,-32: 0 - 10,-31: 0 - 10,-30: 0 - 10,-29: 0 - 10,-28: 0 - 10,-27: 0 - 10,-26: 0 - 11,-32: 0 - 11,-31: 0 - 11,-30: 0 - 11,-29: 0 - 11,-28: 0 - 11,-27: 0 - 11,-26: 0 - 12,-32: 0 - 12,-31: 0 - 12,-30: 0 - 12,-29: 0 - 12,-28: 0 - 12,-27: 0 - 12,-26: 0 - 13,-32: 0 - 13,-31: 0 - 13,-30: 0 - 13,-29: 0 - 13,-28: 0 - 13,-27: 0 - 13,-26: 0 - 14,-32: 0 - 14,-31: 0 - 14,-30: 0 - 14,-29: 0 - 14,-28: 0 - 14,-27: 0 - 14,-26: 0 - 15,-32: 0 - 15,-31: 0 - 15,-30: 0 - 15,-29: 0 - 15,-28: 0 - 15,-27: 0 - 15,-26: 0 - -13,-32: 0 - -12,-32: 0 - -12,-31: 0 - -11,-31: 0 - -11,-30: 0 - -11,-29: 0 - -11,-28: 0 - -11,-27: 0 - -11,-26: 0 - -11,-25: 0 - -11,-24: 0 - -11,-23: 0 - -11,-22: 0 - -10,-31: 0 - -10,-30: 0 - -10,-26: 0 - -10,-23: 0 - -9,-31: 0 - -9,-30: 0 - -9,-29: 0 - -8,-30: 0 - -7,-32: 0 - -7,-31: 0 - -7,-30: 0 - -6,-32: 0 - -6,-31: 0 - -6,-30: 0 - -6,-29: 0 - -5,-32: 0 - -5,-31: 0 - -5,-30: 0 - -4,-30: 0 - -3,-31: 0 - -3,-30: 0 - -3,-29: 0 - -2,-31: 0 - -2,-30: 0 - -2,-29: 0 - -1,-31: 0 - -1,-30: 0 - -1,-29: 0 - 32,-32: 0 - 32,-31: 0 - 32,-30: 0 - 32,-29: 0 - 32,-28: 0 - 32,-27: 0 - 32,-26: 0 - 33,-32: 0 - 33,-31: 0 - 33,-30: 0 - 33,-29: 0 - 33,-28: 0 - 33,-27: 0 - 33,-26: 0 - 34,-32: 0 - 34,-31: 0 - 34,-30: 0 - 34,-29: 0 - 34,-28: 0 - 34,-27: 0 - 34,-26: 0 - 35,-32: 0 - 35,-31: 0 - 35,-30: 0 - 35,-29: 0 - 35,-28: 0 - 35,-27: 0 - 35,-26: 0 - 36,-32: 0 - 36,-31: 0 - 36,-30: 0 - 36,-29: 0 - 36,-28: 0 - 36,-27: 0 - 36,-26: 0 - 37,-32: 0 - 37,-31: 0 - 37,-30: 0 - 37,-29: 0 - 37,-28: 0 - 37,-27: 0 - 37,-26: 0 - 38,-32: 0 - 38,-31: 0 - 38,-30: 0 - 38,-29: 0 - 38,-28: 0 - 38,-27: 0 - 38,-26: 0 - 38,-25: 0 - 38,-24: 0 - 39,-32: 0 - 39,-31: 0 - 39,-30: 0 - 39,-29: 0 - 39,-28: 0 - 39,-27: 0 - 39,-26: 0 - 39,-25: 0 - 39,-24: 0 - 40,-32: 0 - 40,-31: 0 - 40,-30: 0 - 40,-29: 0 - 40,-28: 0 - 40,-27: 0 - 40,-26: 0 - 40,-25: 0 - 40,-24: 0 - 41,-31: 0 - 41,-30: 0 - 41,-29: 0 - 41,-28: 0 - 41,-27: 0 - 41,-26: 0 - 41,-25: 0 - 41,-24: 0 - 41,-23: 0 - 42,-31: 0 - 42,-30: 0 - 42,-29: 0 - 42,-28: 0 - 42,-27: 0 - 42,-26: 0 - 42,-25: 0 - 42,-24: 0 - 42,-23: 0 - 43,-29: 0 - 43,-28: 0 - 43,-27: 0 - 43,-26: 0 - 43,-25: 0 - 43,-24: 0 - 43,-23: 0 - 43,-22: 0 - 43,-21: 0 - 43,-17: 0 - 44,-29: 0 - 44,-27: 0 - 44,-25: 0 - 44,-24: 0 - 44,-23: 0 - 44,-22: 0 - 44,-21: 0 - 44,-20: 0 - 44,-19: 0 - 44,-18: 0 - 44,-17: 0 - 45,-32: 0 - 45,-31: 0 - 45,-30: 0 - 45,-29: 0 - 45,-27: 0 - 45,-26: 0 - 45,-25: 0 - 45,-24: 0 - 45,-23: 0 - 45,-22: 0 - 45,-21: 0 - 45,-20: 0 - 45,-19: 0 - 45,-18: 0 - 45,-17: 0 - 46,-27: 0 - 46,-25: 0 - 46,-24: 0 - 46,-23: 0 - 46,-22: 0 - 46,-21: 0 - 46,-20: 0 - 46,-19: 0 - 46,-18: 0 - 46,-17: 0 - 47,-27: 0 - 47,-25: 0 - 47,-22: 0 - 47,-21: 0 - 47,-20: 0 - 47,-19: 0 - 47,-18: 0 - 47,-17: 0 - 0,-37: 0 - 0,-35: 0 - 1,-37: 0 - 2,-39: 0 - 2,-37: 0 - 2,-36: 0 - 2,-35: 0 - 2,-34: 0 - 2,-33: 0 - 3,-39: 0 - 3,-35: 0 - 4,-39: 0 - 4,-37: 0 - 4,-36: 0 - 4,-35: 0 - 4,-34: 0 - 4,-33: 0 - 5,-39: 0 - 5,-38: 0 - 5,-37: 0 - 5,-36: 0 - 5,-35: 0 - 5,-34: 0 - 5,-33: 0 - 6,-39: 0 - 6,-37: 0 - 6,-36: 0 - 6,-35: 0 - 6,-34: 0 - 6,-33: 0 - 7,-39: 0 - 7,-38: 0 - 7,-37: 0 - 7,-36: 0 - 7,-35: 0 - 7,-34: 0 - 7,-33: 0 - 8,-41: 0 - 8,-40: 0 - 8,-39: 0 - 8,-38: 0 - 8,-37: 0 - 8,-36: 0 - 8,-35: 0 - 8,-34: 0 - 8,-33: 0 - 9,-41: 0 - 9,-40: 0 - 9,-39: 0 - 9,-38: 0 - 9,-37: 0 - 9,-36: 0 - 9,-35: 0 - 9,-34: 0 - 9,-33: 0 - 10,-41: 0 - 10,-40: 0 - 10,-39: 0 - 10,-38: 0 - 10,-37: 0 - 10,-36: 0 - 10,-35: 0 - 10,-34: 0 - 10,-33: 0 - 11,-41: 0 - 11,-40: 0 - 11,-39: 0 - 11,-38: 0 - 11,-37: 0 - 11,-36: 0 - 11,-35: 0 - 11,-34: 0 - 11,-33: 0 - 12,-41: 0 - 12,-40: 0 - 12,-39: 0 - 12,-38: 0 - 12,-37: 0 - 12,-36: 0 - 12,-35: 0 - 12,-34: 0 - 12,-33: 0 - 13,-39: 0 - 13,-38: 0 - 13,-37: 0 - 13,-36: 0 - 13,-35: 0 - 13,-34: 0 - 13,-33: 0 - 14,-39: 0 - 14,-38: 0 - 14,-37: 0 - 14,-36: 0 - 14,-35: 0 - 14,-34: 0 - 14,-33: 0 - 15,-39: 0 - 15,-38: 0 - 15,-37: 0 - 15,-36: 0 - 15,-35: 0 - 15,-34: 0 - 15,-33: 0 - 16,-41: 0 - 16,-40: 0 - 16,-39: 0 - 16,-38: 0 - 16,-37: 0 - 16,-36: 0 - 16,-35: 0 - 16,-34: 0 - 16,-33: 0 - 17,-41: 0 - 17,-40: 0 - 17,-39: 0 - 17,-38: 0 - 17,-37: 0 - 17,-36: 0 - 17,-35: 0 - 17,-34: 0 - 17,-33: 0 - 18,-41: 0 - 18,-40: 0 - 18,-39: 0 - 18,-38: 0 - 18,-37: 0 - 18,-36: 0 - 18,-35: 0 - 18,-34: 0 - 18,-33: 0 - 19,-41: 0 - 19,-40: 0 - 19,-39: 0 - 19,-38: 0 - 19,-37: 0 - 19,-36: 0 - 19,-35: 0 - 19,-34: 0 - 19,-33: 0 - 20,-41: 0 - 20,-40: 0 - 20,-39: 0 - 20,-38: 0 - 20,-37: 0 - 20,-36: 0 - 20,-35: 0 - 20,-34: 0 - 20,-33: 0 - 21,-38: 0 - 21,-37: 0 - 21,-36: 0 - 21,-35: 0 - 21,-34: 0 - 21,-33: 0 - 22,-39: 0 - 22,-38: 0 - 22,-37: 0 - 22,-36: 0 - 22,-35: 0 - 22,-34: 0 - 22,-33: 0 - 23,-39: 0 - 23,-37: 0 - 23,-36: 0 - 23,-35: 0 - 23,-34: 0 - 23,-33: 0 - 24,-39: 0 - 24,-37: 0 - 24,-36: 0 - 24,-35: 0 - 24,-34: 0 - 24,-33: 0 - 25,-39: 0 - 25,-37: 0 - 25,-36: 0 - 25,-35: 0 - 25,-34: 0 - 25,-33: 0 - 26,-39: 0 - 26,-37: 0 - 26,-36: 0 - 26,-35: 0 - 26,-34: 0 - 26,-33: 0 - 27,-39: 0 - 27,-38: 0 - 27,-37: 0 - 27,-36: 0 - 27,-35: 0 - 27,-34: 0 - 27,-33: 0 - 28,-39: 0 - 28,-37: 0 - 28,-36: 0 - 28,-35: 0 - 28,-34: 0 - 28,-33: 0 - 29,-39: 0 - 29,-37: 0 - 29,-36: 0 - 29,-35: 0 - 29,-34: 0 - 29,-33: 0 - 30,-39: 0 - 30,-38: 0 - 30,-37: 0 - 30,-36: 0 - 30,-35: 0 - 30,-34: 0 - 30,-33: 0 - 31,-39: 0 - 31,-36: 0 - 31,-35: 0 - 31,-34: 0 - 31,-33: 0 - -14,-37: 0 - -14,-36: 0 - -14,-35: 0 - -14,-34: 0 - -14,-33: 0 - -13,-37: 0 - -13,-33: 0 - -12,-37: 0 - -12,-35: 0 - -11,-37: 0 - -11,-35: 0 - -11,-34: 0 - -10,-37: 0 - -10,-35: 0 - -10,-34: 0 - -10,-33: 0 - -9,-39: 0 - -9,-38: 0 - -9,-37: 0 - -9,-36: 0 - -9,-35: 0 - -9,-34: 0 - -9,-33: 0 - -8,-39: 0 - -8,-35: 0 - -8,-34: 0 - -8,-33: 0 - -7,-39: 0 - -7,-37: 0 - -7,-36: 0 - -7,-35: 0 - -7,-34: 0 - -7,-33: 0 - -6,-39: 0 - -6,-37: 0 - -6,-36: 0 - -6,-35: 0 - -6,-34: 0 - -6,-33: 0 - -5,-39: 0 - -5,-37: 0 - -5,-36: 0 - -5,-35: 0 - -5,-34: 0 - -5,-33: 0 - -4,-39: 0 - -4,-35: 0 - -4,-34: 0 - -4,-33: 0 - -3,-39: 0 - -3,-38: 0 - -3,-37: 0 - -3,-36: 0 - -3,-35: 0 - -3,-34: 0 - -3,-33: 0 - -2,-35: 0 - -2,-34: 0 - -2,-33: 0 - -1,-37: 0 - -1,-36: 0 - -1,-35: 0 - -1,-34: 0 - 32,-39: 0 - 32,-36: 0 - 32,-35: 0 - 32,-34: 0 - 32,-33: 0 - 33,-36: 0 - 33,-35: 0 - 33,-34: 0 - 33,-33: 0 - 34,-38: 0 - 34,-37: 0 - 34,-36: 0 - 34,-35: 0 - 34,-34: 0 - 34,-33: 0 - 35,-38: 0 - 35,-36: 0 - 35,-34: 0 - 35,-33: 0 - 36,-38: 0 - 36,-37: 0 - 36,-36: 0 - 36,-34: 0 - 36,-33: 0 - 37,-36: 0 - 37,-34: 0 - 37,-33: 0 - 38,-36: 0 - 38,-35: 0 - 38,-34: 0 - 38,-33: 0 - 39,-36: 0 - 39,-34: 0 - 39,-33: 0 - 40,-36: 0 - 40,-33: 0 - 41,-36: 0 - 41,-33: 0 - 42,-36: 0 - 42,-34: 0 - 42,-33: 0 - 43,-33: 0 - 44,-33: 0 - 45,-33: 0 - 48,-27: 0 - 48,-26: 0 - 48,-25: 0 - 48,-22: 0 - 48,-18: 0 - 49,-23: 0 - 49,-22: 0 - 49,-21: 0 - 49,-20: 0 - 49,-19: 0 - 49,-18: 0 - 0,-41: 0 - 0,-39: 0 - 0,-38: 0 - 0,-36: 0 - 0,-34: 0 - 0,-33: 0 - 1,-41: 0 - 1,-40: 0 - 1,-39: 0 - 1,-38: 0 - 1,-36: 0 - 1,-35: 0 - 1,-34: 0 - 1,-33: 0 - 2,-41: 0 - 2,-38: 0 - 3,-41: 0 - 3,-38: 0 - 3,-37: 0 - 3,-36: 0 - 3,-34: 0 - 3,-33: 0 - 4,-41: 0 - 4,-40: 0 - 4,-38: 0 - 5,-41: 0 - 6,-41: 0 - 6,-40: 0 - -2,-41: 0 - -2,-40: 0 - -2,-39: 0 - -1,-41: 0 - -15,-9: 0 - -15,-8: 0 - -15,-7: 0 - -15,-6: 0 - -15,-5: 0 - -15,-4: 0 - -15,-3: 0 - -15,-2: 0 - -14,-7: 0 - -14,-3: 0 - -13,-9: 0 - -13,-8: 0 - -12,-9: 0 - -11,-16: 0 - -11,-15: 0 - -11,-14: 0 - -11,-12: 0 - -11,-11: 0 - -11,-10: 0 - -11,-9: 0 - -10,-15: 0 - -10,-10: 0 - -16,1: 0 - -16,2: 0 - -16,3: 0 - -16,4: 0 - -16,5: 0 - -16,6: 0 - -16,7: 0 - -16,9: 0 - -16,10: 0 - -15,2: 0 - -15,6: 0 - -15,9: 0 - -15,10: 0 - -15,11: 0 - -14,9: 0 - -14,11: 0 - -13,11: 0 - -13,12: 0 - -13,13: 0 - -13,14: 0 - -13,15: 0 - -12,12: 0 - -12,15: 0 - -11,12: 0 - -11,14: 0 - -11,15: 0 - -10,14: 0 - -10,15: 0 - -9,14: 0 - -9,15: 0 - -8,14: 0 - -8,15: 0 - -7,14: 0 - -7,15: 0 - -6,14: 0 - -6,15: 0 - -5,15: 0 - -1,15: 0 - 0,16: 0 - -11,-20: 0 - -11,-19: 0 - -11,-18: 0 - -11,-17: 0 - -10,-18: 0 - 29,-41: 0 - 29,-40: 0 - 30,-41: 0 - 31,-41: 0 - 31,-38: 0 - 31,-37: 0 - 32,-41: 0 - 32,-38: 0 - 32,-37: 0 - 33,-41: 0 - 33,-40: 0 - 33,-39: 0 - 33,-38: 0 - 33,-37: 0 - 34,-41: 0 - 34,-39: 0 - 35,-39: 0 - 35,-37: 0 - 35,-35: 0 - 36,-41: 0 - 36,-39: 0 - 36,-35: 0 - 37,-41: 0 - 37,-40: 0 - 37,-39: 0 - 37,-38: 0 - 37,-37: 0 - 37,-35: 0 - 38,-41: 0 - 38,-39: 0 - 38,-38: 0 - 38,-37: 0 - 39,-41: 0 - 39,-39: 0 - 39,-38: 0 - 39,-37: 0 - 39,-35: 0 - 40,-41: 0 - 40,-38: 0 - 41,-41: 0 - 41,-40: 0 - 41,-39: 0 - 41,-38: 0 - 41,-37: 0 - -13,16: 0 - -13,17: 0 - -13,18: 0 - -13,19: 0 - -13,20: 0 - -13,21: 0 - -13,22: 0 - -13,23: 0 - -13,24: 0 - -12,18: 0 - -12,20: 0 - -12,24: 0 - -11,16: 0 - -11,18: 0 - -11,20: 0 - -11,21: 0 - -11,22: 0 - -11,24: 0 - -10,16: 0 - -10,17: 0 - -10,18: 0 - -10,19: 0 - -10,20: 0 - -10,21: 0 - -10,22: 0 - -10,23: 0 - -10,24: 0 - -10,25: 0 - -10,26: 0 - -9,16: 0 - -9,18: 0 - -9,20: 0 - -9,21: 0 - -9,22: 0 - -9,26: 0 - -8,16: 0 - -8,18: 0 - -8,20: 0 - -8,21: 0 - -8,22: 0 - -8,23: 0 - -8,24: 0 - -8,26: 0 - -7,16: 0 - -7,17: 0 - -7,18: 0 - -7,19: 0 - -7,20: 0 - -7,21: 0 - -7,22: 0 - -7,23: 0 - -7,24: 0 - -7,26: 0 - -6,16: 0 - -6,18: 0 - -6,20: 0 - -6,21: 0 - -6,22: 0 - -6,23: 0 - -6,24: 0 - -6,26: 0 - -5,16: 0 - -5,18: 0 - -5,20: 0 - -5,21: 0 - -5,22: 0 - -5,26: 0 - -4,16: 0 - -4,18: 0 - -4,20: 0 - -4,21: 0 - -4,22: 0 - -4,23: 0 - -4,24: 0 - -4,25: 0 - -4,26: 0 - -3,16: 0 - -3,17: 0 - -3,18: 0 - -3,20: 0 - -3,21: 0 - -3,22: 0 - -3,24: 0 - -2,16: 0 - -2,18: 0 - -2,24: 0 - -1,16: 0 - -1,17: 0 - -1,18: 0 - -1,19: 0 - -1,20: 0 - -1,21: 0 - -1,22: 0 - -1,23: 0 - -1,24: 0 - -11,17: 0 - -9,17: 0 - -16,11: 0 - -16,12: 0 - -16,13: 0 - -16,14: 0 - -15,12: 0 - -15,13: 0 - -15,14: 0 - -14,10: 0 - -14,12: 0 - -14,13: 0 - -14,14: 0 - -13,10: 0 - -12,10: 0 - -12,11: 0 - -12,13: 0 - -12,14: 0 - -11,11: 0 - -11,13: 0 - -10,13: 0 - 44,-32: 0 - 44,-31: 0 - 44,-30: 0 - 44,-28: 0 - 44,-26: 0 - 45,-28: 0 - 46,-31: 0 - 46,-29: 0 - 46,-28: 0 - 46,-26: 0 - 47,-31: 0 - 47,-29: 0 - 47,-28: 0 - 47,-26: 0 - 47,-24: 0 - 47,-23: 0 - 48,-31: 0 - 48,-29: 0 - 48,-28: 0 - 48,-24: 0 - 48,-23: 0 - 49,-31: 0 - 49,-30: 0 - 49,-29: 0 - 49,-28: 0 - 49,-27: 0 - 49,-26: 0 - 49,-25: 0 - 49,-24: 0 - 50,-31: 0 - 50,-29: 0 - 50,-28: 0 - 50,-27: 0 - 50,-26: 0 - 50,-25: 0 - 50,-24: 0 - 50,-23: 0 - 50,-22: 0 - 50,-20: 0 - 51,-28: 0 - 51,-25: 0 - 51,-22: 0 - 51,-20: 0 - 52,-31: 0 - 52,-30: 0 - 52,-29: 0 - 52,-28: 0 - 52,-27: 0 - 52,-26: 0 - 52,-25: 0 - 52,-24: 0 - 52,-23: 0 - 52,-22: 0 - -17,9: 0 - -17,10: 0 - -17,11: 0 - -17,12: 0 - -17,13: 0 - -17,14: 0 - -14,15: 0 - -16,16: 0 - -15,16: 0 - -14,16: 0 - -19,7: 0 - -19,8: 0 - -19,9: 0 - -19,10: 0 - -19,11: 0 - -19,12: 0 - -19,13: 0 - -19,14: 0 - -19,15: 0 - -18,10: 0 - -18,14: 0 - -17,7: 0 - -17,8: 0 - -17,15: 0 - -17,16: 0 - -16,-12: 0 - -16,-11: 0 - -16,-10: 0 - -16,-8: 0 - -15,-12: 0 - -15,-10: 0 - -14,-13: 0 - -14,-12: 0 - -14,-10: 0 - -14,-8: 0 - -13,-13: 0 - -13,-10: 0 - -12,-13: 0 - -12,-11: 0 - -12,-10: 0 - -12,-8: 0 - -11,-13: 0 - -11,-8: 0 - -10,-13: 0 - -10,-12: 0 - -10,-11: 0 - -10,-9: 0 - -10,-8: 0 - -9,-13: 0 - 50,-16: 0 - 50,-18: 0 - 50,-17: 0 - 52,-21: 0 - 52,-20: 0 - -27,9: 0 - -27,10: 0 - -27,11: 0 - -27,12: 0 - -27,13: 0 - -26,7: 0 - -26,10: 0 - -26,11: 0 - -26,15: 0 - -25,7: 0 - -25,10: 0 - -25,11: 0 - -25,12: 0 - -25,15: 0 - -24,7: 0 - -24,8: 0 - -24,9: 0 - -24,10: 0 - -24,11: 0 - -24,12: 0 - -24,13: 0 - -24,14: 0 - -24,15: 0 - -23,7: 0 - -23,9: 0 - -23,10: 0 - -23,11: 0 - -23,12: 0 - -23,13: 0 - -23,15: 0 - -22,7: 0 - -22,9: 0 - -22,10: 0 - -22,11: 0 - -22,12: 0 - -22,13: 0 - -22,15: 0 - -21,7: 0 - -21,8: 0 - -21,9: 0 - -21,10: 0 - -21,11: 0 - -21,12: 0 - -21,15: 0 - -20,7: 0 - -20,10: 0 - -20,12: 0 - -20,15: 0 - -18,12: 0 - -32,-15: 0 - -32,-14: 0 - -32,-13: 0 - -32,-12: 0 - -32,-11: 0 - -32,-10: 0 - -32,-9: 0 - -32,-8: 0 - -32,-7: 0 - -32,-6: 0 - -32,-5: 0 - -32,-4: 0 - -32,-3: 0 - -31,-15: 0 - -31,-13: 0 - -31,-12: 0 - -31,-11: 0 - -31,-10: 0 - -31,-9: 0 - -31,-8: 0 - -31,-7: 0 - -31,-6: 0 - -31,-5: 0 - -31,-3: 0 - -30,-15: 0 - -30,-13: 0 - -30,-12: 0 - -30,-11: 0 - -30,-10: 0 - -30,-9: 0 - -30,-8: 0 - -30,-7: 0 - -30,-6: 0 - -30,-5: 0 - -30,-3: 0 - -29,-15: 0 - -29,-14: 0 - -29,-13: 0 - -29,-12: 0 - -29,-11: 0 - -29,-10: 0 - -29,-9: 0 - -29,-8: 0 - -29,-7: 0 - -29,-6: 0 - -29,-5: 0 - -29,-4: 0 - -29,-3: 0 - -28,-15: 0 - -28,-12: 0 - -28,-10: 0 - -28,-8: 0 - -28,-7: 0 - -28,-6: 0 - -28,-5: 0 - -28,-3: 0 - -27,-15: 0 - -27,-13: 0 - -27,-12: 0 - -27,-11: 0 - -27,-10: 0 - -27,-9: 0 - -27,-8: 0 - -27,-6: 0 - -26,-10: 0 - -26,-8: 0 - -26,-7: 0 - -26,-6: 0 - -26,-5: 0 - -26,-4: 0 - -25,-12: 0 - -25,-10: 0 - -25,-8: 0 - -25,-6: 0 - -24,-12: 0 - -24,-11: 0 - -24,-10: 0 - -24,-8: 0 - -23,-12: 0 - -23,-10: 0 - -23,-9: 0 - -23,-8: 0 - -23,-6: 0 - -22,-12: 0 - -22,-10: 0 - -22,-8: 0 - -22,-6: 0 - -21,-12: 0 - -21,-11: 0 - -21,-10: 0 - -21,-8: 0 - -21,-7: 0 - -21,-6: 0 - -20,-12: 0 - -20,-10: 0 - -20,-8: 0 - -20,-6: 0 - -19,-12: 0 - -19,-10: 0 - -19,-9: 0 - -19,-8: 0 - -19,-6: 0 - -18,-10: 0 - -18,-8: 0 - -18,-7: 0 - -18,-6: 0 - -17,-12: 0 - -17,-10: 0 - -17,-8: 0 - -17,-6: 0 - -44,-11: 0 - -44,-10: 0 - -44,-9: 0 - -44,-8: 0 - -44,-7: 0 - -43,-11: 0 - -43,-10: 0 - -43,-8: 0 - -43,-7: 0 - -42,-13: 0 - -42,-12: 0 - -42,-11: 0 - -42,-10: 0 - -42,-9: 0 - -42,-8: 0 - -42,-7: 0 - -42,-6: 0 - -42,-5: 0 - -41,-13: 0 - -41,-10: 0 - -41,-9: 0 - -41,-8: 0 - -41,-5: 0 - -40,-13: 0 - -40,-12: 0 - -40,-11: 0 - -40,-10: 0 - -40,-9: 0 - -40,-8: 0 - -40,-7: 0 - -40,-6: 0 - -40,-5: 0 - -39,-13: 0 - -39,-11: 0 - -39,-10: 0 - -39,-9: 0 - -39,-8: 0 - -39,-7: 0 - -39,-5: 0 - -38,-13: 0 - -38,-12: 0 - -38,-11: 0 - -38,-10: 0 - -38,-9: 0 - -38,-8: 0 - -38,-7: 0 - -38,-6: 0 - -38,-5: 0 - -37,-15: 0 - -37,-13: 0 - -37,-10: 0 - -37,-9: 0 - -37,-8: 0 - -37,-5: 0 - -37,-3: 0 - -36,-15: 0 - -36,-14: 0 - -36,-13: 0 - -36,-12: 0 - -36,-11: 0 - -36,-10: 0 - -36,-9: 0 - -36,-8: 0 - -36,-7: 0 - -36,-6: 0 - -36,-5: 0 - -36,-3: 0 - -35,-15: 0 - -35,-13: 0 - -35,-12: 0 - -35,-11: 0 - -35,-10: 0 - -35,-9: 0 - -35,-8: 0 - -35,-7: 0 - -35,-6: 0 - -35,-5: 0 - -35,-4: 0 - -35,-3: 0 - -34,-15: 0 - -34,-13: 0 - -34,-12: 0 - -34,-11: 0 - -34,-10: 0 - -34,-9: 0 - -34,-8: 0 - -34,-7: 0 - -34,-6: 0 - -34,-5: 0 - -34,-3: 0 - -33,-15: 0 - -33,-13: 0 - -33,-12: 0 - -33,-11: 0 - -33,-10: 0 - -33,-9: 0 - -33,-8: 0 - -33,-7: 0 - -33,-6: 0 - -33,-5: 0 - -33,-3: 0 - 44,-10: 0 - 44,-8: 0 - 44,-7: 0 - 41,-32: 0 - 42,-32: 0 - 43,-31: 0 - 39,-40: 0 - 40,-37: 0 - 40,-35: 0 - 40,-34: 0 - 41,-35: 0 - 41,-34: 0 - 42,-40: 0 - 42,-38: 0 - 42,-37: 0 - 42,-35: 0 - 43,-40: 0 - 43,-38: 0 - 43,-37: 0 - 43,-36: 0 - 43,-35: 0 - 43,-34: 0 - 44,-40: 0 - 44,-38: 0 - 44,-37: 0 - 44,-36: 0 - 44,-35: 0 - 44,-34: 0 - 45,-40: 0 - 45,-38: 0 - 45,-37: 0 - 45,-36: 0 - 45,-35: 0 - 45,-34: 0 - 46,-40: 0 - 46,-39: 0 - 46,-38: 0 - 46,-37: 0 - 46,-36: 0 - 46,-35: 0 - 46,-34: 0 - 46,-33: 0 - 47,-40: 0 - 47,-38: 0 - 47,-37: 0 - 47,-36: 0 - 47,-35: 0 - 47,-34: 0 - 47,-33: 0 - 49,-32: 0 - 48,-40: 0 - 48,-37: 0 - 48,-33: 0 - 49,-38: 0 - 49,-37: 0 - 49,-36: 0 - 49,-35: 0 - 49,-34: 0 - 49,-33: 0 - 43,-32: 0 - 43,-30: 0 - 43,-20: 0 - 43,-19: 0 - 43,-18: 0 - 40,-39: 0 - 48,-16: 0 - 48,-14: 0 - 50,-15: 0 - 50,-13: 0 - 51,-16: 0 - 51,-15: 0 - 51,-13: 0 - 52,-16: 0 - 52,-15: 0 - 53,-16: 0 - 53,-15: 0 - 53,-13: 0 - 54,-16: 0 - 54,-15: 0 - 54,-13: 0 - 55,-16: 0 - 55,-15: 0 - 55,-13: 0 - 56,-16: 0 - 56,-15: 0 - 56,-13: 0 - 57,-16: 0 - 57,-15: 0 - 58,-16: 0 - 59,-13: 0 - 60,-16: 0 - 28,-38: 0 - 46,-32: 0 - 46,-30: 0 - 47,-32: 0 - 47,-30: 0 - 35,-41: 0 - 36,-40: 0 - 40,-40: 0 - 42,-39: 0 - 43,-42: 0 - 43,-39: 0 - 44,-42: 0 - 44,-39: 0 - 45,-42: 0 - 45,-41: 0 - 45,-39: 0 - 46,-42: 0 - 47,-42: 0 - 47,-39: 0 - 48,-32: 0 - 48,-30: 0 - 48,-21: 0 - 48,-20: 0 - 48,-19: 0 - 48,-17: 0 - 49,-17: 0 - 50,-32: 0 - 50,-30: 0 - 50,-21: 0 - 50,-19: 0 - 51,-32: 0 - 51,-31: 0 - 51,-30: 0 - 51,-29: 0 - 51,-27: 0 - 51,-26: 0 - 51,-24: 0 - 51,-23: 0 - 51,-21: 0 - 51,-19: 0 - 51,-18: 0 - 51,-17: 0 - 52,-32: 0 - 52,-19: 0 - 52,-18: 0 - 52,-17: 0 - 53,-32: 0 - 53,-31: 0 - 53,-30: 0 - 53,-29: 0 - 53,-28: 0 - 53,-27: 0 - 53,-26: 0 - 53,-25: 0 - 53,-21: 0 - 53,-20: 0 - 53,-19: 0 - 53,-18: 0 - 53,-17: 0 - 54,-32: 0 - 54,-31: 0 - 54,-30: 0 - 54,-29: 0 - 54,-28: 0 - 54,-27: 0 - 54,-26: 0 - 54,-25: 0 - 54,-24: 0 - 54,-23: 0 - 54,-22: 0 - 54,-21: 0 - 54,-20: 0 - 54,-19: 0 - 54,-18: 0 - 54,-17: 0 - 55,-32: 0 - 55,-31: 0 - 55,-30: 0 - 55,-29: 0 - 55,-28: 0 - 55,-27: 0 - 55,-26: 0 - 55,-25: 0 - 55,-24: 0 - 55,-23: 0 - 55,-22: 0 - 55,-21: 0 - 55,-20: 0 - 55,-19: 0 - 55,-18: 0 - 55,-17: 0 - 56,-32: 0 - 56,-31: 0 - 56,-30: 0 - 56,-29: 0 - 56,-28: 0 - 56,-27: 0 - 56,-26: 0 - 56,-25: 0 - 56,-24: 0 - 56,-23: 0 - 56,-22: 0 - 56,-21: 0 - 56,-20: 0 - 56,-19: 0 - 56,-18: 0 - 56,-17: 0 - 57,-32: 0 - 57,-31: 0 - 57,-30: 0 - 57,-29: 0 - 57,-28: 0 - 57,-27: 0 - 57,-26: 0 - 57,-25: 0 - 57,-24: 0 - 57,-23: 0 - 57,-22: 0 - 57,-21: 0 - 57,-20: 0 - 57,-19: 0 - 57,-18: 0 - 57,-17: 0 - 58,-32: 0 - 58,-31: 0 - 58,-30: 0 - 58,-29: 0 - 58,-28: 0 - 58,-27: 0 - 58,-26: 0 - 58,-25: 0 - 58,-24: 0 - 58,-23: 0 - 58,-22: 0 - 58,-21: 0 - 58,-20: 0 - 58,-19: 0 - 58,-18: 0 - 58,-17: 0 - 59,-32: 0 - 59,-31: 0 - 59,-30: 0 - 59,-29: 0 - 59,-28: 0 - 59,-27: 0 - 59,-26: 0 - 59,-25: 0 - 59,-24: 0 - 59,-23: 0 - 59,-22: 0 - 59,-17: 0 - 60,-32: 0 - 60,-31: 0 - 60,-30: 0 - 60,-29: 0 - 60,-28: 0 - 60,-27: 0 - 60,-26: 0 - 60,-25: 0 - 60,-24: 0 - 60,-20: 0 - 60,-19: 0 - 60,-18: 0 - 60,-17: 0 - 61,-32: 0 - 61,-31: 0 - 61,-30: 0 - 61,-29: 0 - 61,-28: 0 - 61,-27: 0 - 61,-26: 0 - 61,-25: 0 - 61,-24: 0 - 61,-22: 0 - 61,-21: 0 - 61,-20: 0 - 62,-32: 0 - 62,-31: 0 - 62,-30: 0 - 62,-29: 0 - 62,-28: 0 - 62,-27: 0 - 62,-26: 0 - 62,-25: 0 - 62,-24: 0 - 62,-23: 0 - 62,-22: 0 - 63,-32: 0 - 63,-31: 0 - 63,-30: 0 - 63,-29: 0 - 63,-28: 0 - 63,-27: 0 - 63,-26: 0 - 63,-22: 0 - 48,-42: 0 - 48,-39: 0 - 48,-38: 0 - 48,-36: 0 - 48,-35: 0 - 48,-34: 0 - 49,-42: 0 - 49,-40: 0 - 49,-39: 0 - 50,-42: 0 - 50,-41: 0 - 50,-40: 0 - 50,-39: 0 - 50,-38: 0 - 50,-37: 0 - 50,-36: 0 - 50,-35: 0 - 50,-34: 0 - 50,-33: 0 - 51,-42: 0 - 51,-40: 0 - 51,-39: 0 - 51,-38: 0 - 51,-37: 0 - 51,-36: 0 - 51,-35: 0 - 51,-34: 0 - 51,-33: 0 - 52,-40: 0 - 52,-39: 0 - 52,-38: 0 - 52,-37: 0 - 52,-36: 0 - 52,-35: 0 - 52,-34: 0 - 52,-33: 0 - 53,-40: 0 - 53,-39: 0 - 53,-38: 0 - 53,-37: 0 - 53,-36: 0 - 53,-35: 0 - 53,-34: 0 - 53,-33: 0 - 54,-42: 0 - 54,-40: 0 - 54,-39: 0 - 54,-38: 0 - 54,-37: 0 - 54,-36: 0 - 54,-35: 0 - 54,-34: 0 - 54,-33: 0 - 55,-42: 0 - 55,-41: 0 - 55,-40: 0 - 55,-39: 0 - 55,-38: 0 - 55,-37: 0 - 55,-36: 0 - 55,-35: 0 - 55,-34: 0 - 55,-33: 0 - 56,-42: 0 - 56,-40: 0 - 56,-39: 0 - 56,-38: 0 - 56,-37: 0 - 56,-36: 0 - 56,-35: 0 - 56,-34: 0 - 56,-33: 0 - 57,-42: 0 - 57,-41: 0 - 57,-40: 0 - 57,-39: 0 - 57,-38: 0 - 57,-37: 0 - 57,-36: 0 - 57,-35: 0 - 57,-34: 0 - 57,-33: 0 - 58,-42: 0 - 58,-40: 0 - 58,-39: 0 - 58,-38: 0 - 58,-37: 0 - 58,-36: 0 - 58,-35: 0 - 58,-34: 0 - 58,-33: 0 - 59,-42: 0 - 59,-40: 0 - 59,-39: 0 - 59,-38: 0 - 59,-37: 0 - 59,-36: 0 - 59,-35: 0 - 59,-34: 0 - 59,-33: 0 - 60,-42: 0 - 60,-41: 0 - 60,-40: 0 - 60,-39: 0 - 60,-38: 0 - 60,-37: 0 - 60,-36: 0 - 60,-35: 0 - 60,-34: 0 - 60,-33: 0 - 61,-42: 0 - 61,-40: 0 - 61,-39: 0 - 61,-38: 0 - 61,-37: 0 - 61,-36: 0 - 61,-35: 0 - 61,-34: 0 - 61,-33: 0 - 62,-42: 0 - 62,-40: 0 - 62,-39: 0 - 62,-38: 0 - 62,-37: 0 - 62,-36: 0 - 62,-35: 0 - 62,-34: 0 - 62,-33: 0 - 63,-40: 0 - 63,-38: 0 - 63,-37: 0 - 63,-36: 0 - 63,-35: 0 - 63,-34: 0 - 63,-33: 0 - 64,-42: 0 - 64,-41: 0 - 64,-40: 0 - 64,-39: 0 - 64,-38: 0 - 64,-37: 0 - 64,-36: 0 - 64,-35: 0 - 64,-34: 0 - 64,-33: 0 - 65,-38: 0 - 65,-37: 0 - 65,-36: 0 - 65,-35: 0 - 65,-34: 0 - 64,-32: 0 - 64,-31: 0 - 64,-30: 0 - 64,-29: 0 - 64,-28: 0 - 64,-27: 0 - 64,-26: 0 - 64,-25: 0 - 64,-24: 0 - 64,-23: 0 - 64,-22: 0 - 65,-30: 0 - 65,-29: 0 - 65,-28: 0 - 65,-27: 0 - 65,-26: 0 - 59,-16: 0 - 61,-16: 0 - 62,-16: 0 - 62,-15: 0 - 63,-16: 0 - -10,-25: 0 - 59,-21: 0 - 59,-20: 0 - 59,-19: 0 - 59,-18: 0 - 60,-22: 0 - 60,-21: 0 - 61,-19: 0 - 61,-18: 0 - 62,-19: 0 - 63,-21: 0 - 63,-20: 0 - 63,-19: 0 - 63,-18: 0 - 63,-17: 0 - 52,-42: 0 - 52,-41: 0 - 53,-43: 0 - 53,-42: 0 - 54,-45: 0 - 55,-45: 0 - 55,-44: 0 - 55,-43: 0 - 56,-45: 0 - 56,-43: 0 - 56,-41: 0 - 57,-45: 0 - 57,-43: 0 - 58,-45: 0 - 58,-44: 0 - 58,-43: 0 - 58,-41: 0 - 59,-45: 0 - 59,-43: 0 - 59,-41: 0 - 60,-45: 0 - 61,-45: 0 - 61,-44: 0 - 61,-43: 0 - 61,-41: 0 - -16,-4: 0 - -16,-3: 0 - -16,-2: 0 - -16,-1: 0 - -15,-1: 0 - -14,-4: 0 - -14,-2: 0 - -14,-1: 0 - -5,-8: 0 - -5,-7: 0 - -5,-6: 0 - 0,15: 0 - 1,15: 0 - -19,-3: 0 - -19,-2: 0 - -19,-1: 0 - -18,-3: 0 - -18,-2: 0 - -18,-1: 0 - -17,-4: 0 - -17,-3: 0 - -17,-2: 0 - -17,-1: 0 - -16,0: 0 - -16,8: 0 - -15,0: 0 - -15,1: 0 - -15,7: 0 - -15,8: 0 - -14,0: 0 - -4,15: 0 - -3,15: 0 - -2,15: 0 - -19,0: 0 - -19,1: 0 - -19,2: 0 - -19,3: 0 - -19,4: 0 - -19,5: 0 - -19,6: 0 - -18,0: 0 - -18,1: 0 - -18,2: 0 - -18,3: 0 - -18,4: 0 - -18,5: 0 - -18,6: 0 - -18,7: 0 - -18,8: 0 - -18,9: 0 - -18,11: 0 - -18,13: 0 - -17,0: 0 - -17,1: 0 - -17,2: 0 - -17,3: 0 - -17,4: 0 - -17,5: 0 - -17,6: 0 - -14,18: 0 - -14,19: 0 - -14,20: 0 - -14,21: 0 - -14,22: 0 - -14,23: 0 - -14,24: 0 - -14,25: 0 - -13,25: 0 - -13,26: 0 - -12,16: 0 - -12,17: 0 - -12,19: 0 - -12,21: 0 - -12,22: 0 - -12,23: 0 - -12,25: 0 - -12,26: 0 - -11,19: 0 - -11,23: 0 - -11,25: 0 - -11,26: 0 - -9,19: 0 - -9,23: 0 - -9,24: 0 - -9,25: 0 - -9,27: 0 - -9,28: 0 - -8,17: 0 - -8,19: 0 - -8,25: 0 - -8,27: 0 - -8,28: 0 - -7,25: 0 - -7,27: 0 - -7,28: 0 - -6,17: 0 - -6,19: 0 - -6,25: 0 - -6,27: 0 - -6,28: 0 - -5,17: 0 - -5,19: 0 - -5,23: 0 - -5,24: 0 - -5,25: 0 - -5,27: 0 - -5,28: 0 - -4,17: 0 - -4,19: 0 - -4,27: 0 - -4,28: 0 - -3,19: 0 - -3,23: 0 - -3,25: 0 - -3,26: 0 - -3,27: 0 - -3,28: 0 - -2,17: 0 - -2,19: 0 - -2,20: 0 - -2,21: 0 - -2,22: 0 - -2,23: 0 - -2,25: 0 - -2,26: 0 - -2,27: 0 - -2,28: 0 - -1,25: 0 - -1,26: 0 - -1,27: 0 - -1,28: 0 - 0,17: 0 - 0,18: 0 - 0,19: 0 - 0,20: 0 - 0,21: 0 - 0,22: 0 - 0,23: 0 - 0,24: 0 - 0,25: 0 - 0,26: 0 - 0,27: 0 - 0,28: 0 - 1,16: 0 - 1,17: 0 - 1,18: 0 - 1,19: 0 - 1,20: 0 - 1,21: 0 - 1,22: 0 - 1,23: 0 - 1,24: 0 - 1,25: 0 - 1,26: 0 - 1,27: 0 - 1,28: 0 - 2,18: 0 - 2,19: 0 - 2,20: 0 - 2,21: 0 - 2,22: 0 - 2,23: 0 - 2,24: 0 - 2,25: 0 - 2,26: 0 - 2,27: 0 - 2,28: 0 - 3,18: 0 - 3,19: 0 - 3,20: 0 - 3,21: 0 - 3,22: 0 - 3,23: 0 - 3,24: 0 - 3,25: 0 - 3,26: 0 - 3,27: 0 - 3,28: 0 - 4,18: 0 - 4,19: 0 - 4,20: 0 - 4,21: 0 - 4,22: 0 - 4,23: 0 - 4,24: 0 - 4,25: 0 - 5,18: 0 - 5,19: 0 - 5,20: 0 - 5,21: 0 - 5,22: 0 - 5,23: 0 - 5,24: 0 - 5,25: 0 - 6,18: 0 - 6,19: 0 - 6,20: 0 - 6,21: 0 - 6,22: 0 - 6,23: 0 - 6,24: 0 - 6,25: 0 - 7,18: 0 - 7,19: 0 - 7,20: 0 - 7,21: 0 - 7,22: 0 - 7,23: 0 - 7,24: 0 - 7,25: 0 - 8,18: 0 - 8,19: 0 - 8,20: 0 - 8,21: 0 - 8,22: 0 - 8,23: 0 - 8,24: 0 - 8,25: 0 - 9,18: 0 - 9,19: 0 - 9,20: 0 - 9,21: 0 - 9,22: 0 - 9,23: 0 - 9,24: 0 - 9,25: 0 - 10,16: 0 - 10,17: 0 - 10,18: 0 - 10,19: 0 - 10,20: 0 - 10,21: 0 - 10,22: 0 - 10,23: 0 - 10,24: 0 - 10,25: 0 - 11,16: 0 - 11,17: 0 - 11,18: 0 - 11,19: 0 - 11,20: 0 - 11,21: 0 - 11,22: 0 - 11,23: 0 - 11,24: 0 - 11,25: 0 - 12,18: 0 - 12,19: 0 - 12,20: 0 - 12,21: 0 - 12,22: 0 - 12,23: 0 - 12,24: 0 - 12,25: 0 - 13,18: 0 - 13,19: 0 - 13,20: 0 - 13,21: 0 - 13,22: 0 - 13,23: 0 - 14,18: 0 - 14,19: 0 - 14,20: 0 - 14,21: 0 - 14,22: 0 - 14,23: 0 - 15,18: 0 - 15,19: 0 - 15,20: 0 - 15,21: 0 - 15,22: 0 - 15,23: 0 - 15,24: 0 - 15,25: 0 - 16,18: 0 - 16,19: 0 - 16,20: 0 - 16,21: 0 - 16,22: 0 - 16,23: 0 - 16,24: 0 - 16,25: 0 - 17,18: 0 - 17,19: 0 - 17,20: 0 - 17,21: 0 - 17,22: 0 - 17,23: 0 - 17,24: 0 - 17,25: 0 - 18,18: 0 - 18,19: 0 - 18,20: 0 - 18,21: 0 - 18,22: 0 - 18,23: 0 - 18,24: 0 - 18,25: 0 - 19,16: 0 - 19,17: 0 - 19,18: 0 - 19,19: 0 - 19,20: 0 - 19,21: 0 - 19,22: 0 - 19,23: 0 - 19,24: 0 - 19,25: 0 - 20,16: 0 - 20,17: 0 - 20,18: 0 - 20,19: 0 - 20,20: 0 - 20,21: 0 - 20,22: 0 - 20,23: 0 - 20,24: 0 - 20,25: 0 - 21,16: 0 - 21,17: 0 - 21,18: 0 - 21,19: 0 - 21,20: 0 - 21,21: 0 - 21,22: 0 - 21,23: 0 - 21,24: 0 - 21,25: 0 - 22,16: 0 - 22,17: 0 - 22,18: 0 - 22,19: 0 - 22,20: 0 - 22,21: 0 - 22,22: 0 - 22,23: 0 - 23,16: 0 - 23,17: 0 - 23,18: 0 - 23,19: 0 - 23,20: 0 - 23,21: 0 - 23,22: 0 - 23,23: 0 - 24,16: 0 - 24,17: 0 - 24,18: 0 - 24,19: 0 - 24,20: 0 - 24,21: 0 - 24,22: 0 - 24,23: 0 - 25,16: 0 - 25,17: 0 - 25,18: 0 - 25,19: 0 - 25,20: 0 - 25,21: 0 - 25,22: 0 - 25,23: 0 - 26,19: 0 - 26,20: 0 - 26,21: 0 - 26,22: 0 - 26,23: 0 - 27,16: 0 - 27,18: 0 - 27,19: 0 - 27,21: 0 - 27,22: 0 - 27,23: 0 - 28,19: 0 - 28,21: 0 - 28,22: 0 - 28,23: 0 - 29,19: 0 - 29,21: 0 - 29,22: 0 - 29,23: 0 - 30,19: 0 - 30,21: 0 - 30,22: 0 - 30,23: 0 - 31,21: 0 - 31,22: 0 - 31,23: 0 - 32,19: 0 - 32,21: 0 - 32,22: 0 - 32,23: 0 - 33,17: 0 - 33,19: 0 - 33,21: 0 - 33,22: 0 - 33,23: 0 - 34,17: 0 - 34,19: 0 - 34,21: 0 - 34,22: 0 - 34,23: 0 - 35,17: 0 - 35,19: 0 - 35,20: 0 - 35,21: 0 - 35,22: 0 - 35,23: 0 - 37,17: 0 - 37,18: 0 - 37,20: 0 - 37,21: 0 - 37,22: 0 - 37,23: 0 - 38,22: 0 - 38,24: 0 - 38,25: 0 - 38,26: 0 - 38,27: 0 - 39,24: 0 - 39,25: 0 - 39,26: 0 - 39,27: 0 - 40,22: 0 - 40,24: 3 - 40,25: 3 - 40,26: 0 - 40,27: 0 - 41,22: 0 - 41,24: 3 - 41,25: 3 - 41,26: 0 - 41,27: 0 - 42,22: 0 - 42,24: 3 - 42,25: 3 - 42,26: 0 - 42,27: 0 - 43,22: 0 - 43,23: 0 - 43,24: 0 - 43,25: 0 - 43,26: 0 - 43,27: 0 - 44,24: 0 - 44,25: 0 - 44,26: 0 - 44,27: 0 - 45,17: 0 - 45,18: 0 - 45,19: 0 - 45,21: 0 - 47,16: 3 - 47,17: 0 - 47,18: 3 - 47,19: 0 - 47,20: 0 - 47,21: 0 - 48,18: 3 - 48,19: 0 - 48,20: 0 - 48,21: 0 - 49,16: 0 - 49,18: 0 - 49,19: 0 - 49,20: 0 - 49,21: 0 - 59,-15: 0 - -21,-4: 0 - -21,-3: 0 - -21,-2: 0 - -21,-1: 0 - -20,-2: 0 - 51,-44: 0 - 51,-43: 0 - 52,-44: 0 - 53,-45: 0 - 53,-44: 0 - 53,-41: 0 - 54,-41: 0 - -15,15: 0 - -32,2: 0 - -32,5: 0 - -32,6: 0 - -32,7: 0 - -32,10: 0 - -31,2: 0 - -31,4: 0 - -31,5: 0 - -31,6: 0 - -31,7: 0 - -31,8: 0 - -31,9: 0 - -31,10: 0 - -30,2: 0 - -30,3: 0 - -30,4: 0 - -30,5: 0 - -30,6: 0 - -30,7: 0 - -30,8: 0 - -30,10: 0 - -29,2: 0 - -29,4: 0 - -29,5: 0 - -29,6: 0 - -29,7: 0 - -29,8: 0 - -29,9: 0 - -29,10: 0 - -28,2: 0 - -28,3: 0 - -28,4: 0 - -28,5: 0 - -28,6: 0 - -28,7: 0 - -28,10: 0 - -27,5: 0 - -27,7: 0 - -26,2: 0 - -26,3: 0 - -26,4: 0 - -26,5: 0 - -26,6: 0 - -26,8: 0 - -26,9: 0 - -25,0: 0 - -25,3: 0 - -25,5: 0 - -24,0: 0 - -24,2: 0 - -24,3: 0 - -24,4: 0 - -24,5: 0 - -24,6: 0 - -23,0: 0 - -23,1: 0 - -23,2: 0 - -23,3: 0 - -23,4: 0 - -23,5: 0 - -23,6: 0 - -23,8: 0 - -23,14: 0 - -22,0: 0 - -22,2: 0 - -22,3: 0 - -22,4: 0 - -22,5: 0 - -22,6: 0 - -22,8: 0 - -22,14: 0 - -21,0: 0 - -21,1: 0 - -21,2: 0 - -21,3: 0 - -21,4: 0 - -21,5: 0 - -21,6: 0 - -21,14: 0 - -20,2: 0 - -20,3: 0 - -20,4: 0 - -20,5: 0 - -20,6: 0 - -20,8: 0 - -20,9: 0 - -20,11: 0 - -20,14: 0 - -16,21: 0 - -16,24: 0 - -16,27: 0 - -15,17: 0 - -15,18: 0 - -15,19: 0 - -15,20: 0 - -15,21: 0 - -15,22: 0 - -15,23: 0 - -15,24: 0 - -15,25: 0 - -15,27: 0 - -14,27: 0 - -13,27: 0 - -13,28: 0 - -13,29: 0 - -13,30: 0 - -12,28: 0 - -12,30: 0 - -11,27: 0 - -11,28: 0 - -11,29: 0 - -11,30: 0 - -10,28: 0 - -10,30: 0 - -9,29: 0 - -9,30: 0 - -8,29: 0 - -8,30: 0 - -7,29: 0 - -7,30: 0 - -6,29: 0 - -6,30: 0 - -6,31: 0 - -5,29: 0 - -5,30: 0 - -5,31: 0 - -4,29: 0 - -4,30: 0 - -4,31: 0 - -3,29: 0 - -3,30: 0 - -3,31: 0 - -2,29: 0 - -2,30: 0 - -2,31: 0 - -1,29: 0 - -1,30: 0 - -1,31: 0 - 0,29: 0 - 0,30: 0 - 0,31: 0 - 1,29: 0 - 1,30: 0 - 1,31: 0 - 2,29: 0 - 2,30: 0 - 2,31: 0 - -23,18: 0 - -23,19: 0 - -23,20: 0 - -23,21: 0 - -23,22: 0 - -23,23: 0 - -23,24: 0 - -22,18: 0 - -22,24: 0 - -21,16: 0 - -21,17: 0 - -21,18: 0 - -21,20: 0 - -21,21: 0 - -21,22: 0 - -21,24: 0 - -21,25: 0 - -21,26: 0 - -21,27: 0 - -20,18: 0 - -20,20: 0 - -20,21: 0 - -20,22: 0 - -20,24: 0 - -20,27: 0 - -19,16: 0 - -19,17: 0 - -19,18: 0 - -19,19: 0 - -19,20: 0 - -19,21: 0 - -19,22: 0 - -19,23: 0 - -19,24: 0 - -19,25: 0 - -19,27: 0 - -18,17: 0 - -18,18: 0 - -18,19: 0 - -18,20: 0 - -18,21: 0 - -18,22: 0 - -18,23: 0 - -18,24: 0 - -18,25: 0 - -18,27: 0 - -17,17: 0 - -17,18: 0 - -17,19: 0 - -17,20: 0 - -17,21: 0 - -17,22: 0 - -17,23: 0 - -17,24: 0 - -17,25: 0 - -17,27: 0 - -6,32: 0 - -5,32: 0 - -4,32: 0 - -3,32: 0 - -2,32: 0 - -2,33: 0 - -1,32: 0 - -1,33: 0 - 0,32: 0 - 0,33: 0 - 1,32: 0 - 1,33: 0 - -34,3: 0 - -34,4: 0 - -34,5: 0 - -34,6: 0 - -34,7: 0 - -34,8: 0 - -33,5: 0 - -33,6: 0 - -33,10: 0 - -11,31: 0 - -11,32: 0 - -10,32: 0 - -9,32: 0 - -8,32: 0 - -8,33: 0 - -8,34: 0 - -7,32: 0 - -7,34: 0 - -6,34: 0 - -5,34: 0 - -4,33: 0 - -4,34: 0 - -4,35: 0 - -3,35: 0 - -2,35: 0 - -1,34: 0 - -1,35: 0 - 0,35: 0 - 1,35: 0 - -16,-7: 0 - -16,-6: 0 - -16,-5: 0 - -14,-6: 0 - -14,-5: 0 - -32,8: 0 - -32,9: 0 - -32,11: 0 - -32,12: 0 - -32,14: 0 - -31,0: 0 - -31,1: 0 - -31,3: 0 - -31,11: 0 - -31,12: 0 - -31,13: 0 - -31,14: 0 - -30,1: 0 - -30,11: 0 - -30,14: 0 - -29,0: 0 - -29,1: 0 - -29,3: 0 - -29,11: 0 - -29,12: 0 - -29,13: 0 - -29,14: 0 - -29,15: 0 - -28,0: 0 - -28,1: 0 - -28,12: 0 - -28,15: 0 - -27,0: 0 - -27,1: 0 - -27,2: 0 - -27,3: 0 - -27,4: 0 - -27,6: 0 - -27,8: 0 - -27,14: 0 - -27,15: 0 - -26,0: 0 - -26,1: 0 - -26,12: 0 - -26,13: 0 - -25,1: 0 - -25,2: 0 - -25,4: 0 - -25,6: 0 - -25,8: 0 - -25,9: 0 - -25,13: 0 - -24,1: 0 - -22,1: 0 - -21,13: 0 - -20,0: 0 - -20,1: 0 - -20,13: 0 - -15,3: 0 - -31,-4: 0 - -31,-2: 0 - -31,-1: 0 - -29,-2: 0 - -29,-1: 0 - -28,-4: 0 - -28,-2: 0 - -28,-1: 0 - -27,-4: 0 - -27,-3: 0 - -27,-2: 0 - -27,-1: 0 - -26,-3: 0 - -26,-2: 0 - -26,-1: 0 - -25,-4: 0 - -25,-3: 0 - -25,-2: 0 - -25,-1: 0 - -24,-6: 0 - -24,-4: 0 - -24,-3: 0 - -24,-2: 0 - -24,-1: 0 - -23,-4: 0 - -23,-3: 0 - -23,-2: 0 - -23,-1: 0 - -22,-7: 0 - -22,-5: 0 - -22,-4: 0 - -22,-3: 0 - -22,-2: 0 - -22,-1: 0 - -21,-5: 0 - -20,-7: 0 - -20,-5: 0 - -20,-4: 0 - -20,-3: 0 - -20,-1: 0 - -19,-7: 0 - -19,-5: 0 - -19,-4: 0 - -18,-5: 0 - -18,-4: 0 - -17,-7: 0 - -17,-5: 0 - -20,16: 0 - -18,16: 0 - -38,8: 0 - -38,9: 0 - -38,10: 0 - -38,11: 0 - -38,12: 0 - -38,13: 0 - -37,6: 0 - -37,9: 0 - -37,11: 0 - -36,6: 0 - -36,9: 0 - -36,10: 0 - -36,11: 0 - -36,14: 0 - -35,6: 0 - -35,7: 0 - -35,8: 0 - -35,9: 0 - -35,10: 0 - -35,11: 0 - -35,12: 0 - -35,13: 0 - -35,14: 0 - -34,9: 0 - -34,10: 4 - -34,11: 0 - -34,12: 0 - -34,14: 0 - -33,7: 0 - -33,8: 0 - -33,9: 0 - -33,11: 0 - -33,12: 0 - -33,13: 0 - -33,14: 0 - -32,-16: 0 - -31,-16: 0 - -31,-14: 0 - -30,-16: 0 - -30,-14: 0 - -29,-16: 0 - -28,-16: 0 - -28,-14: 0 - -27,-16: 0 - -27,-14: 0 - -26,-16: 0 - -26,-15: 0 - -26,-14: 0 - -26,-12: 0 - -25,-16: 0 - -25,-15: 0 - -25,-14: 0 - -24,-16: 0 - -24,-15: 0 - -24,-14: 0 - -24,-9: 0 - -24,-7: 0 - -23,-16: 0 - -23,-15: 0 - -23,-14: 0 - -23,-11: 0 - -22,-16: 0 - -22,-15: 0 - -22,-14: 0 - -22,-11: 0 - -22,-9: 0 - -21,-16: 0 - -21,-15: 0 - -21,-14: 0 - -21,-13: 0 - -21,-9: 0 - -20,-14: 0 - -19,-16: 0 - -19,-15: 0 - -19,-14: 0 - -19,-13: 0 - -19,-11: 0 - -32,-24: 0 - -32,-23: 0 - -32,-22: 0 - -32,-21: 0 - -32,-20: 0 - -32,-19: 0 - -32,-18: 0 - -32,-17: 0 - -31,-24: 0 - -31,-22: 0 - -31,-21: 0 - -31,-20: 0 - -31,-19: 0 - -31,-18: 0 - -31,-17: 0 - -30,-24: 0 - -30,-22: 0 - -30,-21: 0 - -30,-20: 0 - -30,-19: 0 - -30,-18: 0 - -30,-17: 0 - -29,-24: 0 - -29,-22: 0 - -29,-21: 0 - -29,-20: 0 - -29,-19: 0 - -29,-18: 0 - -29,-17: 0 - -28,-24: 0 - -28,-23: 0 - -28,-22: 0 - -28,-21: 0 - -28,-20: 0 - -28,-19: 0 - -28,-18: 0 - -28,-17: 0 - -27,-24: 0 - -27,-22: 0 - -27,-21: 0 - -27,-20: 0 - -27,-19: 0 - -27,-18: 0 - -27,-17: 0 - -26,-24: 0 - -26,-22: 0 - -26,-21: 0 - -26,-20: 0 - -26,-19: 0 - -26,-18: 0 - -26,-17: 0 - -25,-24: 0 - -25,-20: 0 - -25,-19: 0 - -25,-18: 0 - -25,-17: 0 - -24,-22: 0 - -24,-20: 0 - -24,-18: 0 - -24,-17: 0 - -23,-22: 0 - -23,-21: 0 - -23,-20: 0 - -23,-18: 0 - -23,-17: 0 - -22,-22: 0 - -22,-20: 0 - -22,-18: 0 - -22,-17: 0 - -21,-22: 0 - -21,-20: 0 - -21,-19: 0 - -21,-18: 0 - -21,-17: 0 - -20,-22: 0 - -20,-21: 0 - -20,-20: 0 - -20,-18: 0 - -19,-22: 0 - -19,-20: 0 - -19,-19: 0 - -19,-18: 0 - -19,-17: 0 - -18,-22: 0 - -42,-16: 0 - -41,-16: 0 - -40,-16: 0 - -40,-15: 0 - -40,-14: 0 - -39,-15: 0 - -39,-14: 0 - -38,-16: 0 - -38,-15: 0 - -38,-14: 0 - -37,-16: 0 - -37,-14: 0 - -36,-16: 0 - -35,-16: 0 - -35,-14: 0 - -34,-16: 0 - -34,-14: 0 - -33,-16: 0 - -33,-14: 0 - -42,-20: 0 - -42,-19: 0 - -42,-18: 0 - -42,-17: 0 - -41,-20: 0 - -41,-18: 0 - -40,-22: 0 - -40,-21: 0 - -40,-20: 0 - -40,-19: 0 - -40,-18: 0 - -40,-17: 0 - -39,-22: 0 - -39,-21: 0 - -39,-19: 0 - -39,-18: 0 - -39,-17: 0 - -38,-22: 0 - -38,-21: 0 - -38,-20: 0 - -38,-19: 0 - -38,-18: 0 - -38,-17: 0 - -37,-22: 0 - -37,-20: 0 - -37,-19: 0 - -37,-18: 0 - -37,-17: 0 - -36,-22: 0 - -36,-21: 0 - -36,-20: 0 - -36,-19: 0 - -36,-18: 0 - -36,-17: 0 - -35,-22: 0 - -35,-20: 0 - -35,-18: 0 - -34,-24: 0 - -34,-22: 0 - -34,-21: 0 - -34,-20: 0 - -34,-19: 0 - -34,-18: 0 - -34,-17: 0 - -33,-24: 0 - -33,-22: 0 - -33,-21: 0 - -33,-20: 0 - -33,-19: 0 - -33,-18: 0 - -33,-17: 0 - 61,1: 0 - 63,1: 0 - 61,-6: 0 - 61,-4: 0 - 61,-3: 0 - 61,-1: 0 - 62,-6: 0 - 63,-6: 0 - 63,-4: 0 - 63,-3: 0 - 63,-2: 0 - 63,-1: 0 - 64,-11: 0 - 64,-9: 0 - 64,-7: 0 - 64,-6: 0 - 64,-5: 0 - 64,-4: 0 - 64,-3: 0 - 64,-2: 0 - 64,-1: 0 - 65,-4: 0 - 65,-2: 0 - 66,-9: 0 - 66,-8: 0 - 66,-7: 0 - 66,-6: 0 - 66,-5: 0 - 66,-4: 0 - 66,-3: 0 - 66,-2: 0 - 66,-1: 0 - 64,0: 0 - 64,1: 0 - 65,1: 0 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: GridAtmosphere - - type: OccluderTree - - type: Shuttle - - nextUpdate: 10328.7641136 - type: GridPathfinding - - type: RadiationGridResistance - - id: Cluster - type: BecomesStation - - nextShake: 0 - shakeTimes: 10 - type: GravityShake - - type: GasTileOverlay -- uid: 128 - type: WallSolid - components: - - pos: -13.5,0.5 - parent: 127 - type: Transform -- uid: 129 - type: CableHV - components: - - pos: -16.5,6.5 - parent: 127 - type: Transform -- uid: 130 - type: CableHV - components: - - pos: -16.5,8.5 - parent: 127 - type: Transform -- uid: 131 - type: WallReinforced - components: - - pos: -2.5,-8.5 - parent: 127 - type: Transform -- uid: 132 - type: CableHV - components: - - pos: -16.5,9.5 - parent: 127 - type: Transform -- uid: 133 - type: Grille - components: - - pos: -15.5,4.5 - parent: 127 - type: Transform -- uid: 134 - type: WallSolid - components: - - pos: -6.5,-3.5 - parent: 127 - type: Transform -- uid: 135 - type: WallSolid - components: - - pos: -2.5,6.5 - parent: 127 - type: Transform -- uid: 136 - type: WallReinforced - components: - - pos: -3.5,-8.5 - parent: 127 - type: Transform -- uid: 137 - type: WallSolid - components: - - pos: -3.5,6.5 - parent: 127 - type: Transform -- uid: 138 - type: WallSolid - components: - - pos: -4.5,6.5 - parent: 127 - type: Transform -- uid: 139 - type: WallSolid - components: - - pos: -2.5,9.5 - parent: 127 - type: Transform -- uid: 140 - type: WallSolid - components: - - pos: -3.5,9.5 - parent: 127 - type: Transform -- uid: 141 - type: WallSolid - components: - - pos: -4.5,9.5 - parent: 127 - type: Transform -- uid: 142 - type: WallSolid - components: - - pos: -2.5,12.5 - parent: 127 - type: Transform -- uid: 143 - type: WallSolid - components: - - pos: -3.5,12.5 - parent: 127 - type: Transform -- uid: 144 - type: WallSolid - components: - - pos: -4.5,12.5 - parent: 127 - type: Transform -- uid: 145 - type: WallReinforced - components: - - pos: 8.5,8.5 - parent: 127 - type: Transform -- uid: 146 - type: WallReinforced - components: - - pos: 8.5,7.5 - parent: 127 - type: Transform -- uid: 147 - type: WallReinforced - components: - - pos: 8.5,6.5 - parent: 127 - type: Transform -- uid: 148 - type: WallReinforced - components: - - pos: 8.5,5.5 - parent: 127 - type: Transform -- uid: 149 - type: WallReinforced - components: - - pos: 8.5,4.5 - parent: 127 - type: Transform -- uid: 150 - type: WallReinforced - components: - - pos: 3.5,8.5 - parent: 127 - type: Transform -- uid: 151 - type: WallReinforced - components: - - pos: 4.5,8.5 - parent: 127 - type: Transform -- uid: 152 - type: WallReinforced - components: - - pos: 5.5,8.5 - parent: 127 - type: Transform -- uid: 153 - type: WallReinforced - components: - - pos: 6.5,8.5 - parent: 127 - type: Transform -- uid: 154 - type: WallReinforced - components: - - pos: 7.5,8.5 - parent: 127 - type: Transform -- uid: 155 - type: WallReinforced - components: - - pos: 3.5,4.5 - parent: 127 - type: Transform -- uid: 156 - type: WallReinforced - components: - - pos: 3.5,5.5 - parent: 127 - type: Transform -- uid: 157 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-7.5 - parent: 127 - type: Transform -- uid: 158 - type: WallReinforced - components: - - pos: 3.5,7.5 - parent: 127 - type: Transform -- uid: 159 - type: ReinforcedWindow - components: - - pos: 4.5,-0.5 - parent: 127 - type: Transform -- uid: 160 - type: ReinforcedWindow - components: - - pos: 5.5,-0.5 - parent: 127 - type: Transform -- uid: 161 - type: ReinforcedWindow - components: - - pos: 7.5,-0.5 - parent: 127 - type: Transform -- uid: 162 - type: AirlockMaintHOPLocked - components: - - pos: 28.5,-7.5 - parent: 127 - type: Transform -- uid: 163 - type: ReinforcedWindow - components: - - pos: 7.5,3.5 - parent: 127 - type: Transform -- uid: 164 - type: ReinforcedWindow - components: - - pos: 5.5,3.5 - parent: 127 - type: Transform -- uid: 165 - type: ReinforcedWindow - components: - - pos: 4.5,3.5 - parent: 127 - type: Transform -- uid: 166 - type: Grille - components: - - pos: 4.5,3.5 - parent: 127 - type: Transform -- uid: 167 - type: Grille - components: - - pos: 5.5,3.5 - parent: 127 - type: Transform -- uid: 168 - type: Grille - components: - - pos: 7.5,3.5 - parent: 127 - type: Transform -- uid: 169 - type: Grille - components: - - pos: 7.5,-0.5 - parent: 127 - type: Transform -- uid: 170 - type: Grille - components: - - pos: 5.5,-0.5 - parent: 127 - type: Transform -- uid: 171 - type: Grille - components: - - pos: 4.5,-0.5 - parent: 127 - type: Transform -- uid: 172 - type: TintedWindow - components: - - pos: -2.5,8.5 - parent: 127 - type: Transform -- uid: 173 - type: TintedWindow - components: - - pos: -2.5,11.5 - parent: 127 - type: Transform -- uid: 174 - type: Grille - components: - - pos: -2.5,11.5 - parent: 127 - type: Transform -- uid: 175 - type: Grille - components: - - pos: -2.5,8.5 - parent: 127 - type: Transform -- uid: 176 - type: Grille - components: - - pos: -2.5,5.5 - parent: 127 - type: Transform -- uid: 177 - type: HospitalCurtainsOpen - components: - - pos: -2.5,4.5 - parent: 127 - type: Transform -- uid: 178 - type: HospitalCurtainsOpen - components: - - pos: -2.5,7.5 - parent: 127 - type: Transform -- uid: 179 - type: HospitalCurtainsOpen - components: - - pos: -2.5,10.5 - parent: 127 - type: Transform -- uid: 180 - type: WallReinforced - components: - - pos: 8.5,9.5 - parent: 127 - type: Transform -- uid: 181 - type: WallReinforced - components: - - pos: 8.5,10.5 - parent: 127 - type: Transform -- uid: 182 - type: WallReinforced - components: - - pos: 8.5,11.5 - parent: 127 - type: Transform -- uid: 183 - type: WallReinforced - components: - - pos: 8.5,12.5 - parent: 127 - type: Transform -- uid: 184 - type: WallReinforced - components: - - pos: 7.5,12.5 - parent: 127 - type: Transform -- uid: 185 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 127 - type: Transform -- uid: 186 - type: WallReinforced - components: - - pos: 6.5,12.5 - parent: 127 - type: Transform -- uid: 187 - type: WallReinforced - components: - - pos: 5.5,12.5 - parent: 127 - type: Transform -- uid: 188 - type: WallReinforced - components: - - pos: 5.5,9.5 - parent: 127 - type: Transform -- uid: 189 - type: ReinforcedWindow - components: - - pos: 5.5,11.5 - parent: 127 - type: Transform -- uid: 190 - type: Grille - components: - - pos: 5.5,11.5 - parent: 127 - type: Transform -- uid: 191 - type: TableWood - components: - - pos: 2.5,7.5 - parent: 127 - type: Transform -- uid: 192 - type: TableWood - components: - - pos: 1.5,7.5 - parent: 127 - type: Transform -- uid: 193 - type: TableWood - components: - - pos: 0.5,7.5 - parent: 127 - type: Transform -- uid: 194 - type: TableWood - components: - - pos: 0.5,8.5 - parent: 127 - type: Transform -- uid: 195 - type: TableWood - components: - - pos: 0.5,9.5 - parent: 127 - type: Transform -- uid: 196 - type: TableWood - components: - - pos: 0.5,10.5 - parent: 127 - type: Transform -- uid: 197 - type: ComputerMedicalRecords - components: - - pos: 6.5,11.5 - parent: 127 - type: Transform -- uid: 198 - type: Bed - components: - - pos: 6.5,9.5 - parent: 127 - type: Transform -- uid: 199 - type: BedsheetCMO - components: - - pos: 6.5,9.5 - parent: 127 - type: Transform -- uid: 200 - type: WallSolid - components: - - pos: 1.5,-8.5 - parent: 127 - type: Transform -- uid: 201 - type: LockerResearchDirectorFilled - components: - - pos: -4.5,-5.5 - parent: 127 - type: Transform - - containers: - entity_storage: !type:Container - ents: - - 27 - type: ContainerContainer -- uid: 202 - type: Table - components: - - pos: 3.5,-5.5 - parent: 127 - type: Transform -- uid: 203 - type: Table - components: - - pos: 2.5,-7.5 - parent: 127 - type: Transform -- uid: 204 - type: Table - components: - - pos: 3.5,-6.5 - parent: 127 - type: Transform -- uid: 205 - type: ToolboxElectricalFilled - components: - - pos: 2.504503,-7.29704 - parent: 127 - type: Transform -- uid: 206 - type: VendingMachineSciDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,-7.5 - parent: 127 - type: Transform -- uid: 207 - type: Table - components: - - pos: 3.5,-7.5 - parent: 127 - type: Transform -- uid: 208 - type: ReinforcedWindow - components: - - pos: -6.5,-0.5 - parent: 127 - type: Transform -- uid: 209 - type: Grille - components: - - pos: -6.5,-0.5 - parent: 127 - type: Transform -- uid: 210 - type: CableHV - components: - - pos: -16.5,11.5 - parent: 127 - type: Transform -- uid: 211 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 14.5,2.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 212 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-7.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 213 - type: WallSolid - components: - - pos: -7.5,-3.5 - parent: 127 - type: Transform -- uid: 214 - type: WallReinforced - components: - - pos: -13.5,3.5 - parent: 127 - type: Transform -- uid: 215 - type: WallReinforced - components: - - pos: -13.5,4.5 - parent: 127 - type: Transform -- uid: 216 - type: CableHV - components: - - pos: -16.5,10.5 - parent: 127 - type: Transform -- uid: 217 - type: WallReinforced - components: - - pos: -13.5,6.5 - parent: 127 - type: Transform -- uid: 218 - type: WallReinforced - components: - - pos: -13.5,7.5 - parent: 127 - type: Transform -- uid: 219 - type: WallReinforced - components: - - pos: -13.5,8.5 - parent: 127 - type: Transform -- uid: 220 - type: WallReinforced - components: - - pos: -15.5,3.5 - parent: 127 - type: Transform -- uid: 221 - type: WallReinforced - components: - - pos: -13.5,10.5 - parent: 127 - type: Transform -- uid: 222 - type: WallReinforced - components: - - pos: -13.5,11.5 - parent: 127 - type: Transform -- uid: 223 - type: WallReinforced - components: - - pos: -14.5,3.5 - parent: 127 - type: Transform -- uid: 224 - type: Grille - components: - - pos: -15.5,5.5 - parent: 127 - type: Transform -- uid: 225 - type: WallReinforced - components: - - pos: -15.5,6.5 - parent: 127 - type: Transform -- uid: 226 - type: WallReinforced - components: - - pos: -15.5,7.5 - parent: 127 - type: Transform -- uid: 227 - type: WallReinforced - components: - - pos: -15.5,8.5 - parent: 127 - type: Transform -- uid: 228 - type: WallReinforced - components: - - pos: -15.5,9.5 - parent: 127 - type: Transform -- uid: 229 - type: WallReinforced - components: - - pos: -15.5,10.5 - parent: 127 - type: Transform -- uid: 230 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -15.5,11.5 - parent: 127 - type: Transform -- uid: 231 - type: WallSolid - components: - - pos: -13.5,1.5 - parent: 127 - type: Transform -- uid: 232 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -6.5,6.5 - parent: 127 - type: Transform -- uid: 233 - type: FirelockGlass - components: - - pos: -5.5,-9.5 - parent: 127 - type: Transform -- uid: 234 - type: ReinforcedWindow - components: - - pos: -12.5,3.5 - parent: 127 - type: Transform -- uid: 235 - type: WallSolid - components: - - pos: 20.5,-1.5 - parent: 127 - type: Transform -- uid: 236 - type: ReinforcedWindow - components: - - pos: -11.5,3.5 - parent: 127 - type: Transform -- uid: 237 - type: ReinforcedWindow - components: - - pos: -10.5,3.5 - parent: 127 - type: Transform -- uid: 238 - type: ReinforcedWindow - components: - - pos: -12.5,7.5 - parent: 127 - type: Transform -- uid: 239 - type: ReinforcedWindow - components: - - pos: -11.5,7.5 - parent: 127 - type: Transform -- uid: 240 - type: ReinforcedWindow - components: - - pos: -10.5,7.5 - parent: 127 - type: Transform -- uid: 241 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,4.5 - parent: 127 - type: Transform -- uid: 242 - type: CableHV - components: - - pos: -16.5,3.5 - parent: 127 - type: Transform -- uid: 243 - type: WallSolid - components: - - pos: -16.5,-3.5 - parent: 127 - type: Transform -- uid: 244 - type: WallSolid - components: - - pos: -17.5,-3.5 - parent: 127 - type: Transform -- uid: 245 - type: WallSolid - components: - - pos: -16.5,-4.5 - parent: 127 - type: Transform -- uid: 246 - type: WallSolid - components: - - pos: -18.5,-3.5 - parent: 127 - type: Transform -- uid: 247 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 2.5,8.5 - parent: 127 - type: Transform - - id: Lobby - type: SurveillanceCamera -- uid: 248 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: -9.5,2.5 - parent: 127 - type: Transform - - id: Xenoarch Lab 1 - type: SurveillanceCamera -- uid: 249 - type: SurveillanceCameraScience - components: - - pos: 4.5,-4.5 - parent: 127 - type: Transform - - id: R&D - type: SurveillanceCamera -- uid: 250 - type: SurveillanceCameraScience - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-5.5 - parent: 127 - type: Transform - - id: RD's Bedroom - type: SurveillanceCamera -- uid: 251 - type: RandomPainting - components: - - pos: 6.5,12.5 - parent: 127 - type: Transform -- uid: 252 - type: GasVentScrubber - components: - - pos: -20.5,-0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 253 - type: SpawnPointStationEngineer - components: - - pos: 29.5,16.5 - parent: 127 - type: Transform -- uid: 254 - type: RandomSpawner - components: - - pos: 19.5,12.5 - parent: 127 - type: Transform -- uid: 255 - type: RandomSpawner - components: - - pos: 9.5,6.5 - parent: 127 - type: Transform -- uid: 256 - type: RandomSpawner - components: - - pos: 11.5,13.5 - parent: 127 - type: Transform -- uid: 257 - type: RandomSpawner - components: - - pos: 6.5,17.5 - parent: 127 - type: Transform -- uid: 258 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,12.5 - parent: 127 - type: Transform -- uid: 259 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -7.5,12.5 - parent: 127 - type: Transform -- uid: 260 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -9.5,11.5 - parent: 127 - type: Transform -- uid: 261 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -9.5,12.5 - parent: 127 - type: Transform -- uid: 262 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -14.5,11.5 - parent: 127 - type: Transform -- uid: 263 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 0.5,19.5 - parent: 127 - type: Transform -- uid: 264 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 3.5,19.5 - parent: 127 - type: Transform -- uid: 265 - type: WallReinforced - components: - - pos: 23.5,15.5 - parent: 127 - type: Transform -- uid: 266 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 0.5,16.5 - parent: 127 - type: Transform -- uid: 267 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 0.5,17.5 - parent: 127 - type: Transform -- uid: 268 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 0.5,18.5 - parent: 127 - type: Transform -- uid: 269 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 1.5,19.5 - parent: 127 - type: Transform -- uid: 270 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 2.5,19.5 - parent: 127 - type: Transform -- uid: 271 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -2.5,16.5 - parent: 127 - type: Transform -- uid: 272 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 5.5,16.5 - parent: 127 - type: Transform -- uid: 273 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 5.5,13.5 - parent: 127 - type: Transform -- uid: 274 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 0.5,14.5 - parent: 127 - type: Transform -- uid: 275 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -2.5,13.5 - parent: 127 - type: Transform -- uid: 276 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 4.5,19.5 - parent: 127 - type: Transform -- uid: 277 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 5.5,17.5 - parent: 127 - type: Transform -- uid: 278 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -2.5,17.5 - parent: 127 - type: Transform -- uid: 279 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-9.5 - parent: 127 - type: Transform -- uid: 280 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 0.5,13.5 - parent: 127 - type: Transform -- uid: 281 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 3.5,13.5 - parent: 127 - type: Transform -- uid: 282 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 4.5,13.5 - parent: 127 - type: Transform -- uid: 283 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 2.5,13.5 - parent: 127 - type: Transform -- uid: 284 - type: Catwalk - components: - - pos: 6.5,-30.5 - parent: 127 - type: Transform -- uid: 285 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 1.5,13.5 - parent: 127 - type: Transform -- uid: 286 - type: WallReinforced - components: - - pos: -8.5,-12.5 - parent: 127 - type: Transform -- uid: 287 - type: WallReinforced - components: - - pos: -9.5,-12.5 - parent: 127 - type: Transform -- uid: 288 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -3.5,17.5 - parent: 127 - type: Transform -- uid: 289 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 5.5,14.5 - parent: 127 - type: Transform -- uid: 290 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -2.5,15.5 - parent: 127 - type: Transform -- uid: 291 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -4.5,17.5 - parent: 127 - type: Transform -- uid: 292 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -5.5,17.5 - parent: 127 - type: Transform -- uid: 293 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,17.5 - parent: 127 - type: Transform -- uid: 294 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,16.5 - parent: 127 - type: Transform -- uid: 295 - type: ReinforcedWindow - components: - - pos: 44.5,-7.5 - parent: 127 - type: Transform -- uid: 296 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,15.5 - parent: 127 - type: Transform -- uid: 297 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,14.5 - parent: 127 - type: Transform -- uid: 298 - type: Poweredlight - components: - - pos: 29.5,-0.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 299 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,13.5 - parent: 127 - type: Transform -- uid: 300 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 5.5,19.5 - parent: 127 - type: Transform -- uid: 301 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 5.5,18.5 - parent: 127 - type: Transform -- uid: 302 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -5.5,18.5 - parent: 127 - type: Transform -- uid: 303 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -5.5,20.5 - parent: 127 - type: Transform -- uid: 304 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -5.5,21.5 - parent: 127 - type: Transform -- uid: 305 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -5.5,22.5 - parent: 127 - type: Transform -- uid: 306 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -5.5,25.5 - parent: 127 - type: Transform -- uid: 307 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -4.5,25.5 - parent: 127 - type: Transform -- uid: 308 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -3.5,25.5 - parent: 127 - type: Transform -- uid: 309 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 0.5,22.5 - parent: 127 - type: Transform -- uid: 310 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -5.5,23.5 - parent: 127 - type: Transform -- uid: 311 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -5.5,24.5 - parent: 127 - type: Transform -- uid: 312 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 1.5,20.5 - parent: 127 - type: Transform -- uid: 313 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 1.5,21.5 - parent: 127 - type: Transform -- uid: 314 - type: VehicleKeyJanicart - components: - - pos: 7.4941626,-12.513269 - parent: 127 - type: Transform -- uid: 315 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 1.5,22.5 - parent: 127 - type: Transform -- uid: 316 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -2.5,25.5 - parent: 127 - type: Transform -- uid: 317 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -1.5,25.5 - parent: 127 - type: Transform -- uid: 318 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -0.5,25.5 - parent: 127 - type: Transform -- uid: 319 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 0.5,25.5 - parent: 127 - type: Transform -- uid: 320 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 0.5,24.5 - parent: 127 - type: Transform -- uid: 321 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 0.5,23.5 - parent: 127 - type: Transform -- uid: 322 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -2.5,16.5 - parent: 127 - type: Transform -- uid: 323 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -2.5,15.5 - parent: 127 - type: Transform -- uid: 324 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -2.5,13.5 - parent: 127 - type: Transform -- uid: 325 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 11.5,4.5 - parent: 127 - type: Transform -- uid: 326 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 11.5,5.5 - parent: 127 - type: Transform -- uid: 327 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 11.5,6.5 - parent: 127 - type: Transform -- uid: 328 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 11.5,7.5 - parent: 127 - type: Transform -- uid: 329 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 11.5,8.5 - parent: 127 - type: Transform -- uid: 330 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 11.5,9.5 - parent: 127 - type: Transform -- uid: 331 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 11.5,10.5 - parent: 127 - type: Transform -- uid: 332 - type: CableApcExtension - components: - - pos: -10.5,-1.5 - parent: 127 - type: Transform -- uid: 333 - type: RandomSpawner - components: - - pos: 2.5,22.5 - parent: 127 - type: Transform -- uid: 334 - type: WallSolid - components: - - pos: 13.5,11.5 - parent: 127 - type: Transform -- uid: 335 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 12.5,15.5 - parent: 127 - type: Transform -- uid: 336 - type: WallSolid - components: - - pos: 11.5,15.5 - parent: 127 - type: Transform -- uid: 337 - type: WallSolid - components: - - pos: 8.5,19.5 - parent: 127 - type: Transform -- uid: 338 - type: WallReinforced - components: - - pos: -4.5,-8.5 - parent: 127 - type: Transform -- uid: 339 - type: WallReinforced - components: - - pos: -5.5,-8.5 - parent: 127 - type: Transform -- uid: 340 - type: WallSolid - components: - - pos: 8.5,18.5 - parent: 127 - type: Transform -- uid: 341 - type: AirlockCargoGlassLocked - components: - - pos: 16.5,15.5 - parent: 127 - type: Transform -- uid: 342 - type: AirlockCargoGlassLocked - components: - - pos: 18.5,5.5 - parent: 127 - type: Transform -- uid: 343 - type: VendingMachineChefDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,-11.5 - parent: 127 - type: Transform -- uid: 344 - type: AirlockCargoGlassLocked - components: - - pos: 16.5,11.5 - parent: 127 - type: Transform -- uid: 345 - type: AirlockCargoGlassLocked - components: - - pos: 15.5,15.5 - parent: 127 - type: Transform -- uid: 346 - type: SpawnPointCargoTechnician - components: - - pos: 16.5,8.5 - parent: 127 - type: Transform -- uid: 347 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 20.5,4.5 - parent: 127 - type: Transform -- uid: 348 - type: Grille - components: - - pos: 24.5,3.5 - parent: 127 - type: Transform -- uid: 349 - type: Grille - components: - - pos: 26.5,3.5 - parent: 127 - type: Transform -- uid: 350 - type: WallReinforced - components: - - pos: 28.5,3.5 - parent: 127 - type: Transform -- uid: 351 - type: ReinforcedWindow - components: - - pos: 26.5,3.5 - parent: 127 - type: Transform -- uid: 352 - type: WallReinforced - components: - - pos: 38.5,20.5 - parent: 127 - type: Transform -- uid: 353 - type: ReinforcedWindow - components: - - pos: 35.5,20.5 - parent: 127 - type: Transform -- uid: 354 - type: GasPipeTJunction - components: - - pos: 40.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 355 - type: Grille - components: - - pos: 35.5,20.5 - parent: 127 - type: Transform -- uid: 356 - type: ReinforcedWindow - components: - - pos: 27.5,3.5 - parent: 127 - type: Transform -- uid: 357 - type: Grille - components: - - pos: 27.5,3.5 - parent: 127 - type: Transform -- uid: 358 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 359 - type: ReinforcedWindow - components: - - pos: 24.5,3.5 - parent: 127 - type: Transform -- uid: 360 - type: WallReinforced - components: - - pos: -11.5,-6.5 - parent: 127 - type: Transform -- uid: 361 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 20.5,5.5 - parent: 127 - type: Transform -- uid: 362 - type: ReinforcedWindow - components: - - pos: -6.5,-23.5 - parent: 127 - type: Transform -- uid: 363 - type: WallSolid - components: - - pos: 0.5,-22.5 - parent: 127 - type: Transform -- uid: 364 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 20.5,6.5 - parent: 127 - type: Transform -- uid: 365 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-14.5 - parent: 127 - type: Transform -- uid: 366 - type: WallSolid - components: - - pos: -0.5,-22.5 - parent: 127 - type: Transform -- uid: 367 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 20.5,7.5 - parent: 127 - type: Transform -- uid: 368 - type: WallSolid - components: - - pos: -1.5,-22.5 - parent: 127 - type: Transform -- uid: 369 - type: WallSolid - components: - - pos: -2.5,-22.5 - parent: 127 - type: Transform -- uid: 370 - type: Poweredlight - components: - - pos: 15.5,-16.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 371 - type: WallSolid - components: - - pos: -2.5,-21.5 - parent: 127 - type: Transform -- uid: 372 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 20.5,8.5 - parent: 127 - type: Transform -- uid: 373 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 20.5,9.5 - parent: 127 - type: Transform -- uid: 374 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 20.5,10.5 - parent: 127 - type: Transform -- uid: 375 - type: WallReinforced - components: - - pos: -7.5,-25.5 - parent: 127 - type: Transform -- uid: 376 - type: ReinforcedWindow - components: - - pos: -7.5,-21.5 - parent: 127 - type: Transform -- uid: 377 - type: CableMV - components: - - pos: -12.5,-2.5 - parent: 127 - type: Transform -- uid: 378 - type: CableMV - components: - - pos: -13.5,-2.5 - parent: 127 - type: Transform -- uid: 379 - type: CableHV - components: - - pos: -15.5,2.5 - parent: 127 - type: Transform -- uid: 380 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -15.5,14.5 - parent: 127 - type: Transform -- uid: 381 - type: WallReinforced - components: - - pos: -7.5,-23.5 - parent: 127 - type: Transform -- uid: 382 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -14.5,14.5 - parent: 127 - type: Transform -- uid: 383 - type: ReinforcedWindow - components: - - pos: -5.5,-25.5 - parent: 127 - type: Transform -- uid: 384 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -13.5,14.5 - parent: 127 - type: Transform -- uid: 385 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -12.5,14.5 - parent: 127 - type: Transform -- uid: 386 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -12.5,15.5 - parent: 127 - type: Transform -- uid: 387 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -11.5,15.5 - parent: 127 - type: Transform -- uid: 388 - type: WallReinforced - components: - - pos: -11.5,16.5 - parent: 127 - type: Transform -- uid: 389 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -9.5,15.5 - parent: 127 - type: Transform -- uid: 390 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -9.5,17.5 - parent: 127 - type: Transform -- uid: 391 - type: ReinforcedWindow - components: - - pos: -6.5,-25.5 - parent: 127 - type: Transform -- uid: 392 - type: ReinforcedWindow - components: - - pos: -5.5,-23.5 - parent: 127 - type: Transform -- uid: 393 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -9.5,18.5 - parent: 127 - type: Transform -- uid: 394 - type: WallReinforced - components: - - pos: -9.5,-11.5 - parent: 127 - type: Transform -- uid: 395 - type: WallSolid - components: - - pos: -2.5,-11.5 - parent: 127 - type: Transform -- uid: 396 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -9.5,16.5 - parent: 127 - type: Transform -- uid: 397 - type: WallSolid - components: - - pos: -4.5,-15.5 - parent: 127 - type: Transform -- uid: 398 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -9.5,19.5 - parent: 127 - type: Transform -- uid: 399 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -9.5,20.5 - parent: 127 - type: Transform -- uid: 400 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -9.5,23.5 - parent: 127 - type: Transform -- uid: 401 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -8.5,-9.5 - parent: 127 - type: Transform -- uid: 402 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -9.5,22.5 - parent: 127 - type: Transform -- uid: 403 - type: WallReinforced - components: - - pos: -10.5,19.5 - parent: 127 - type: Transform -- uid: 404 - type: WallReinforced - components: - - pos: -12.5,-6.5 - parent: 127 - type: Transform -- uid: 405 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -8.5,23.5 - parent: 127 - type: Transform -- uid: 406 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -8.5,24.5 - parent: 127 - type: Transform -- uid: 407 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -8.5,25.5 - parent: 127 - type: Transform -- uid: 408 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -8.5,26.5 - parent: 127 - type: Transform -- uid: 409 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -8.5,27.5 - parent: 127 - type: Transform -- uid: 410 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -8.5,28.5 - parent: 127 - type: Transform -- uid: 411 - type: RandomSpawner - components: - - pos: 0.5,31.5 - parent: 127 - type: Transform -- uid: 412 - type: BoxFolderBlue - components: - - pos: 25.35184,-10.352999 - parent: 127 - type: Transform -- uid: 413 - type: RandomSpawner - components: - - pos: -2.5,29.5 - parent: 127 - type: Transform -- uid: 414 - type: ReinforcedWindow - components: - - pos: 42.5,-21.5 - parent: 127 - type: Transform -- uid: 415 - type: RandomSpawner - components: - - pos: -4.5,26.5 - parent: 127 - type: Transform -- uid: 416 - type: RandomSpawner - components: - - pos: -8.5,21.5 - parent: 127 - type: Transform -- uid: 417 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-14.5 - parent: 127 - type: Transform -- uid: 418 - type: RandomSpawner - components: - - pos: -6.5,19.5 - parent: 127 - type: Transform -- uid: 419 - type: RandomSpawner - components: - - pos: -8.5,14.5 - parent: 127 - type: Transform -- uid: 420 - type: RandomSpawner - components: - - pos: -14.5,12.5 - parent: 127 - type: Transform -- uid: 421 - type: WallSolid - components: - - pos: -18.5,3.5 - parent: 127 - type: Transform -- uid: 422 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -9.5,-6.5 - parent: 127 - type: Transform -- uid: 423 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,9.5 - parent: 127 - type: Transform -- uid: 424 - type: AirlockScienceLocked - components: - - pos: -22.5,-2.5 - parent: 127 - type: Transform -- uid: 425 - type: WallSolid - components: - - pos: -4.5,-12.5 - parent: 127 - type: Transform -- uid: 426 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 2.5,28.5 - parent: 127 - type: Transform -- uid: 427 - type: WallReinforced - components: - - pos: -8.5,-10.5 - parent: 127 - type: Transform -- uid: 428 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 3.5,28.5 - parent: 127 - type: Transform -- uid: 429 - type: WallSolid - components: - - pos: -5.5,-11.5 - parent: 127 - type: Transform -- uid: 430 - type: WallSolid - components: - - pos: -5.5,-10.5 - parent: 127 - type: Transform -- uid: 431 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-7.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 432 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 3.5,27.5 - parent: 127 - type: Transform -- uid: 433 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 3.5,26.5 - parent: 127 - type: Transform -- uid: 434 - type: WallSolid - components: - - pos: 0.5,-11.5 - parent: 127 - type: Transform -- uid: 435 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-38.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 436 - type: ClothingHeadHatWitch1 - components: - - pos: 2.5,-23.5 - parent: 127 - type: Transform -- uid: 437 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 3.5,25.5 - parent: 127 - type: Transform -- uid: 438 - type: BedsheetCult - components: - - pos: 9.5,-25.5 - parent: 127 - type: Transform -- uid: 439 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-38.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 440 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 4.5,25.5 - parent: 127 - type: Transform -- uid: 441 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 4.5,24.5 - parent: 127 - type: Transform -- uid: 442 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 4.5,23.5 - parent: 127 - type: Transform -- uid: 443 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 4.5,22.5 - parent: 127 - type: Transform -- uid: 444 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 5.5,22.5 - parent: 127 - type: Transform -- uid: 445 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 6.5,22.5 - parent: 127 - type: Transform -- uid: 446 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 7.5,22.5 - parent: 127 - type: Transform -- uid: 447 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 8.5,21.5 - parent: 127 - type: Transform -- uid: 448 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 8.5,22.5 - parent: 127 - type: Transform -- uid: 449 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 8.5,20.5 - parent: 127 - type: Transform -- uid: 450 - type: WallReinforced - components: - - pos: 38.5,15.5 - parent: 127 - type: Transform -- uid: 451 - type: WallReinforced - components: - - pos: 36.5,11.5 - parent: 127 - type: Transform -- uid: 452 - type: ReinforcedWindow - components: - - pos: 34.5,11.5 - parent: 127 - type: Transform -- uid: 453 - type: ReinforcedWindow - components: - - pos: 33.5,11.5 - parent: 127 - type: Transform -- uid: 454 - type: WallReinforced - components: - - pos: 35.5,11.5 - parent: 127 - type: Transform -- uid: 455 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 23.5,3.5 - parent: 127 - type: Transform -- uid: 456 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 23.5,4.5 - parent: 127 - type: Transform -- uid: 457 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 23.5,5.5 - parent: 127 - type: Transform -- uid: 458 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 23.5,6.5 - parent: 127 - type: Transform -- uid: 459 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 23.5,7.5 - parent: 127 - type: Transform -- uid: 460 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 23.5,8.5 - parent: 127 - type: Transform -- uid: 461 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 23.5,9.5 - parent: 127 - type: Transform -- uid: 462 - type: WallReinforced - components: - - pos: 23.5,10.5 - parent: 127 - type: Transform -- uid: 463 - type: WallReinforced - components: - - pos: 23.5,12.5 - parent: 127 - type: Transform -- uid: 464 - type: WallReinforced - components: - - pos: 38.5,13.5 - parent: 127 - type: Transform -- uid: 465 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 21.5,4.5 - parent: 127 - type: Transform -- uid: 466 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 10.5,4.5 - parent: 127 - type: Transform -- uid: 467 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 11.5,11.5 - parent: 127 - type: Transform -- uid: 468 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 12.5,11.5 - parent: 127 - type: Transform -- uid: 469 - type: WallSolid - components: - - pos: 13.5,15.5 - parent: 127 - type: Transform -- uid: 470 - type: WallSolid - components: - - pos: 13.5,12.5 - parent: 127 - type: Transform -- uid: 471 - type: Table - components: - - pos: 12.5,16.5 - parent: 127 - type: Transform -- uid: 472 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 17.5,15.5 - parent: 127 - type: Transform -- uid: 473 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 17.5,11.5 - parent: 127 - type: Transform -- uid: 474 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 18.5,11.5 - parent: 127 - type: Transform -- uid: 475 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 19.5,11.5 - parent: 127 - type: Transform -- uid: 476 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 20.5,11.5 - parent: 127 - type: Transform -- uid: 477 - type: WallSolid - components: - - pos: 17.5,1.5 - parent: 127 - type: Transform -- uid: 478 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 17.5,12.5 - parent: 127 - type: Transform -- uid: 479 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 17.5,14.5 - parent: 127 - type: Transform -- uid: 480 - type: WallSolid - components: - - pos: 13.5,14.5 - parent: 127 - type: Transform -- uid: 481 - type: Table - components: - - pos: 12.5,21.5 - parent: 127 - type: Transform -- uid: 482 - type: ReinforcedWindow - components: - - pos: 13.5,1.5 - parent: 127 - type: Transform -- uid: 483 - type: ReinforcedWindow - components: - - pos: 13.5,0.5 - parent: 127 - type: Transform -- uid: 484 - type: ReinforcedWindow - components: - - pos: 12.5,-0.5 - parent: 127 - type: Transform -- uid: 485 - type: ReinforcedWindow - components: - - pos: 12.5,0.5 - parent: 127 - type: Transform -- uid: 486 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 18.5,15.5 - parent: 127 - type: Transform -- uid: 487 - type: WallSolid - components: - - pos: 14.5,1.5 - parent: 127 - type: Transform -- uid: 488 - type: ReinforcedWindow - components: - - pos: 11.5,-0.5 - parent: 127 - type: Transform -- uid: 489 - type: WallReinforced - components: - - pos: 23.5,18.5 - parent: 127 - type: Transform -- uid: 490 - type: Grille - components: - - pos: 11.5,-0.5 - parent: 127 - type: Transform -- uid: 491 - type: Grille - components: - - pos: 12.5,-0.5 - parent: 127 - type: Transform -- uid: 492 - type: Grille - components: - - pos: 12.5,0.5 - parent: 127 - type: Transform -- uid: 493 - type: Grille - components: - - pos: 13.5,0.5 - parent: 127 - type: Transform -- uid: 494 - type: Grille - components: - - pos: 13.5,1.5 - parent: 127 - type: Transform -- uid: 495 - type: WallSolid - components: - - pos: 11.5,-1.5 - parent: 127 - type: Transform -- uid: 496 - type: WallReinforced - components: - - pos: 38.5,14.5 - parent: 127 - type: Transform -- uid: 497 - type: WallReinforced - components: - - pos: 38.5,11.5 - parent: 127 - type: Transform -- uid: 498 - type: WallReinforced - components: - - pos: 37.5,11.5 - parent: 127 - type: Transform -- uid: 499 - type: ReinforcedWindow - components: - - pos: 12.5,25.5 - parent: 127 - type: Transform -- uid: 500 - type: ReinforcedWindow - components: - - pos: 12.5,24.5 - parent: 127 - type: Transform -- uid: 501 - type: ReinforcedWindow - components: - - pos: 12.5,23.5 - parent: 127 - type: Transform -- uid: 502 - type: ReinforcedWindow - components: - - pos: 9.5,25.5 - parent: 127 - type: Transform -- uid: 503 - type: ReinforcedWindow - components: - - pos: 10.5,25.5 - parent: 127 - type: Transform -- uid: 504 - type: ReinforcedWindow - components: - - pos: 11.5,25.5 - parent: 127 - type: Transform -- uid: 505 - type: ReinforcedWindow - components: - - pos: 12.5,22.5 - parent: 127 - type: Transform -- uid: 506 - type: WallReinforced - components: - - pos: 38.5,12.5 - parent: 127 - type: Transform -- uid: 507 - type: ReinforcedWindow - components: - - pos: 32.5,11.5 - parent: 127 - type: Transform -- uid: 508 - type: ReinforcedWindow - components: - - pos: 32.5,14.5 - parent: 127 - type: Transform -- uid: 509 - type: ReinforcedWindow - components: - - pos: 32.5,16.5 - parent: 127 - type: Transform -- uid: 510 - type: ReinforcedWindow - components: - - pos: 32.5,15.5 - parent: 127 - type: Transform -- uid: 511 - type: ReinforcedWindow - components: - - pos: 32.5,17.5 - parent: 127 - type: Transform -- uid: 512 - type: ReinforcedWindow - components: - - pos: 32.5,12.5 - parent: 127 - type: Transform -- uid: 513 - type: PottedPlantRandom - components: - - pos: -2.5,2.5 - parent: 127 - type: Transform -- uid: 514 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,6.5 - parent: 127 - type: Transform -- uid: 515 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,4.5 - parent: 127 - type: Transform -- uid: 516 - type: Grille - components: - - pos: -10.5,3.5 - parent: 127 - type: Transform -- uid: 517 - type: CrateArtifactContainer - components: - - pos: -5.5,2.5 - parent: 127 - type: Transform -- uid: 518 - type: CrateArtifactContainer - components: - - pos: -4.5,2.5 - parent: 127 - type: Transform -- uid: 519 - type: Grille - components: - - pos: -12.5,3.5 - parent: 127 - type: Transform -- uid: 520 - type: RandomArtifactSpawner - components: - - pos: -11.5,5.5 - parent: 127 - type: Transform -- uid: 521 - type: TableReinforced - components: - - pos: -10.5,2.5 - parent: 127 - type: Transform -- uid: 522 - type: TableReinforced - components: - - pos: -12.5,2.5 - parent: 127 - type: Transform -- uid: 523 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -6.5,4.5 - parent: 127 - type: Transform -- uid: 524 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -6.5,8.5 - parent: 127 - type: Transform -- uid: 525 - type: PottedPlantRandom - components: - - pos: -6.5,11.5 - parent: 127 - type: Transform -- uid: 526 - type: Multitool - components: - - pos: -10.293982,2.594134 - parent: 127 - type: Transform -- uid: 527 - type: MonkeyCubeBox - components: - - pos: -12.5021105,2.5944932 - parent: 127 - type: Transform -- uid: 528 - type: WallSolid - components: - - pos: -5.5,-3.5 - parent: 127 - type: Transform -- uid: 529 - type: BlastDoor - components: - - pos: -13.5,5.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 678 - type: SignalReceiver -- uid: 530 - type: BlastDoor - components: - - pos: -13.5,9.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 679 - type: SignalReceiver -- uid: 531 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,10.5 - parent: 127 - type: Transform -- uid: 532 - type: Grille - components: - - pos: -11.5,3.5 - parent: 127 - type: Transform -- uid: 533 - type: AirlockScienceGlassLocked - components: - - pos: -8.5,-0.5 - parent: 127 - type: Transform -- uid: 534 - type: AirlockScienceGlassLocked - components: - - pos: -7.5,-0.5 - parent: 127 - type: Transform -- uid: 535 - type: AirlockResearchDirectorLocked - components: - - pos: -2.5,-6.5 - parent: 127 - type: Transform -- uid: 536 - type: AirlockScienceGlassLocked - components: - - pos: -5.5,-1.5 - parent: 127 - type: Transform -- uid: 537 - type: AirlockScienceGlassLocked - components: - - pos: -5.5,-2.5 - parent: 127 - type: Transform -- uid: 538 - type: AirlockScienceGlassLocked - components: - - pos: 0.5,-0.5 - parent: 127 - type: Transform -- uid: 539 - type: AirlockScienceGlassLocked - components: - - pos: 1.5,-0.5 - parent: 127 - type: Transform -- uid: 540 - type: AirlockResearchDirectorLocked - components: - - pos: 6.5,-5.5 - parent: 127 - type: Transform -- uid: 541 - type: WindoorScienceLocked - components: - - pos: 6.5,-0.5 - parent: 127 - type: Transform -- uid: 542 - type: Table - components: - - pos: 6.5,-0.5 - parent: 127 - type: Transform -- uid: 543 - type: Table - components: - - pos: 6.5,3.5 - parent: 127 - type: Transform -- uid: 544 - type: BannerScience - components: - - pos: -0.5,0.5 - parent: 127 - type: Transform -- uid: 545 - type: AirlockMaintRnDLocked - components: - - pos: -0.5,-8.5 - parent: 127 - type: Transform -- uid: 546 - type: AirlockMaintRnDLocked - components: - - pos: -8.5,12.5 - parent: 127 - type: Transform -- uid: 547 - type: LockerScienceFilled - components: - - pos: -4.5,-3.5 - parent: 127 - type: Transform -- uid: 548 - type: LockerScienceFilled - components: - - pos: -3.5,-3.5 - parent: 127 - type: Transform -- uid: 549 - type: LockerScienceFilled - components: - - pos: -2.5,-3.5 - parent: 127 - type: Transform -- uid: 550 - type: ComputerResearchAndDevelopment - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 127 - type: Transform -- uid: 551 - type: ResearchAndDevelopmentServer - components: - - pos: 7.5,-6.5 - parent: 127 - type: Transform -- uid: 552 - type: Table - components: - - pos: 5.5,-6.5 - parent: 127 - type: Transform -- uid: 553 - type: Table - components: - - pos: 5.5,-7.5 - parent: 127 - type: Transform -- uid: 554 - type: SurveillanceCameraRouterScience - components: - - pos: 7.5,-7.5 - parent: 127 - type: Transform -- uid: 555 - type: Protolathe - components: - - pos: 7.5,-2.5 - parent: 127 - type: Transform -- uid: 556 - type: Autolathe - components: - - pos: 7.5,-4.5 - parent: 127 - type: Transform -- uid: 557 - type: CircuitImprinter - components: - - pos: 7.5,-3.5 - parent: 127 - type: Transform -- uid: 558 - type: Table - components: - - pos: 3.5,-1.5 - parent: 127 - type: Transform -- uid: 559 - type: Table - components: - - pos: 4.5,-1.5 - parent: 127 - type: Transform -- uid: 560 - type: Table - components: - - pos: 1.5,-5.5 - parent: 127 - type: Transform -- uid: 561 - type: Table - components: - - pos: 1.5,-4.5 - parent: 127 - type: Transform -- uid: 562 - type: Table - components: - - pos: 1.5,-3.5 - parent: 127 - type: Transform -- uid: 563 - type: Table - components: - - pos: 0.5,-5.5 - parent: 127 - type: Transform -- uid: 564 - type: Table - components: - - pos: 0.5,-4.5 - parent: 127 - type: Transform -- uid: 565 - type: Table - components: - - pos: 0.5,-3.5 - parent: 127 - type: Transform -- uid: 566 - type: PosterContrabandLamarr - components: - - pos: -5.5,-6.5 - parent: 127 - type: Transform -- uid: 567 - type: ClothingBeltUtilityFilled - components: - - pos: 3.160753,-7.437665 - parent: 127 - type: Transform -- uid: 568 - type: SpawnPointScientist - components: - - pos: 3.5,-3.5 - parent: 127 - type: Transform -- uid: 569 - type: SpawnPointScientist - components: - - pos: 4.5,-3.5 - parent: 127 - type: Transform -- uid: 570 - type: ComputerResearchAndDevelopment - components: - - pos: -3.5,-5.5 - parent: 127 - type: Transform -- uid: 571 - type: SpawnPointResearchDirector - components: - - pos: -4.5,-6.5 - parent: 127 - type: Transform -- uid: 572 - type: Bed - components: - - pos: -4.5,-7.5 - parent: 127 - type: Transform -- uid: 573 - type: BedsheetRD - components: - - pos: -4.5,-7.5 - parent: 127 - type: Transform -- uid: 574 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -3.5,-7.5 - parent: 127 - type: Transform -- uid: 575 - type: SheetSteel - components: - - pos: 3.5294542,-5.573808 - parent: 127 - type: Transform -- uid: 576 - type: SheetSteel - components: - - pos: 3.5294542,-5.573808 - parent: 127 - type: Transform -- uid: 577 - type: SheetPlastic - components: - - pos: 3.5138292,-6.355058 - parent: 127 - type: Transform -- uid: 578 - type: SheetPlastic - components: - - pos: 3.5138292,-6.355058 - parent: 127 - type: Transform -- uid: 579 - type: SheetGlass - components: - - pos: 3.5138292,-7.089433 - parent: 127 - type: Transform -- uid: 580 - type: SheetGlass - components: - - pos: 3.5138292,-7.089433 - parent: 127 - type: Transform -- uid: 581 - type: KitchenReagentGrinder - components: - - pos: 4.5,-1.5 - parent: 127 - type: Transform -- uid: 582 - type: PowerCellRecharger - components: - - pos: 1.5,-3.5 - parent: 127 - type: Transform -- uid: 583 - type: BoxBeaker - components: - - pos: 1.5232158,-4.230058 - parent: 127 - type: Transform -- uid: 584 - type: BoxSyringe - components: - - pos: 1.5232158,-4.886308 - parent: 127 - type: Transform -- uid: 585 - type: MedkitFilled - components: - - pos: 0.7419658,-5.355058 - parent: 127 - type: Transform -- uid: 586 - type: MedkitFilled - components: - - pos: 0.5232158,-5.214433 - parent: 127 - type: Transform -- uid: 587 - type: BoxLatexGloves - components: - - pos: 0.44509077,-4.464433 - parent: 127 - type: Transform -- uid: 588 - type: BoxSterileMask - components: - - pos: 0.7107158,-4.198808 - parent: 127 - type: Transform -- uid: 589 - type: FaxMachineBase - components: - - pos: 0.5,-3.5 - parent: 127 - type: Transform - - name: Science - type: FaxMachine -- uid: 590 - type: FaxMachineBase - components: - - pos: 19.5,9.5 - parent: 127 - type: Transform - - name: Cargo - type: FaxMachine -- uid: 591 - type: PottedPlantRandom - components: - - pos: -1.5,-7.5 - parent: 127 - type: Transform -- uid: 592 - type: DisposalUnit - components: - - pos: 2.5,-1.5 - parent: 127 - type: Transform -- uid: 593 - type: PottedPlantRandom - components: - - pos: -0.5,-1.5 - parent: 127 - type: Transform -- uid: 594 - type: PottedPlantRandom - components: - - pos: 4.5,-4.5 - parent: 127 - type: Transform -- uid: 595 - type: TablePlasmaGlass - components: - - pos: -21.5,1.5 - parent: 127 - type: Transform -- uid: 596 - type: MachineArtifactAnalyzer - components: - - pos: -11.5,5.5 - parent: 127 - type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 597 - type: SignalReceiver -- uid: 597 - type: ComputerAnalysisConsole - components: - - pos: -11.5,2.5 - parent: 127 - type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 596 - type: SignalTransmitter -- uid: 598 - type: ReinforcedWindow - components: - - pos: 18.5,1.5 - parent: 127 - type: Transform -- uid: 599 - type: ClosetL3VirologyFilled - components: - - pos: 0.5,20.5 - parent: 127 - type: Transform -- uid: 600 - type: ClosetL3VirologyFilled - components: - - pos: 0.5,21.5 - parent: 127 - type: Transform -- uid: 601 - type: LockerMedicalFilled - components: - - pos: 4.5,12.5 - parent: 127 - type: Transform -- uid: 602 - type: LockerMedicalFilled - components: - - pos: 3.5,12.5 - parent: 127 - type: Transform -- uid: 603 - type: LockerMedicineFilled - components: - - pos: 2.5,12.5 - parent: 127 - type: Transform -- uid: 604 - type: VendingMachineChemDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 4.5,7.5 - parent: 127 - type: Transform -- uid: 605 - type: chem_master - components: - - pos: 5.5,7.5 - parent: 127 - type: Transform -- uid: 606 - type: chem_master - components: - - pos: 7.5,6.5 - parent: 127 - type: Transform -- uid: 607 - type: chem_dispenser - components: - - pos: 7.5,5.5 - parent: 127 - type: Transform -- uid: 608 - type: chem_dispenser - components: - - pos: 6.5,7.5 - parent: 127 - type: Transform -- uid: 609 - type: ExosuitFabricator - components: - - pos: 1.5,-7.5 - parent: 127 - type: Transform -- uid: 610 - type: ToolboxMechanicalFilled - components: - - pos: 2.613878,-7.437665 - parent: 127 - type: Transform -- uid: 611 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,4.5 - parent: 127 - type: Transform -- uid: 612 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -9.5,6.5 - parent: 127 - type: Transform -- uid: 613 - type: StorageCanister - components: - - pos: -3.5,2.5 - parent: 127 - type: Transform -- uid: 614 - type: PottedPlantRandom - components: - - pos: -0.5,1.5 - parent: 127 - type: Transform -- uid: 615 - type: OxygenCanister - components: - - pos: -2.5,0.5 - parent: 127 - type: Transform -- uid: 616 - type: NitrogenCanister - components: - - pos: -3.5,0.5 - parent: 127 - type: Transform -- uid: 617 - type: CarbonDioxideCanister - components: - - pos: -4.5,0.5 - parent: 127 - type: Transform -- uid: 618 - type: PlasmaCanister - components: - - pos: -5.5,0.5 - parent: 127 - type: Transform -- uid: 619 - type: Grille - components: - - pos: -12.5,7.5 - parent: 127 - type: Transform -- uid: 620 - type: Grille - components: - - pos: -11.5,7.5 - parent: 127 - type: Transform -- uid: 621 - type: Grille - components: - - pos: -10.5,7.5 - parent: 127 - type: Transform -- uid: 622 - type: ClosetFireFilled - components: - - pos: -12.5,0.5 - parent: 127 - type: Transform -- uid: 623 - type: ClosetEmergencyFilledRandom - components: - - pos: -11.5,0.5 - parent: 127 - type: Transform -- uid: 624 - type: ClosetRadiationSuitFilled - components: - - pos: -10.5,0.5 - parent: 127 - type: Transform -- uid: 625 - type: DisposalUnit - components: - - pos: -9.5,0.5 - parent: 127 - type: Transform -- uid: 626 - type: FireExtinguisher - components: - - pos: -10.6271105,2.6569932 - parent: 127 - type: Transform -- uid: 627 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,4.5 - parent: 127 - type: Transform -- uid: 628 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,6.5 - parent: 127 - type: Transform -- uid: 629 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,6.5 - parent: 127 - type: Transform -- uid: 630 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,6.5 - parent: 127 - type: Transform -- uid: 631 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -9.5,10.5 - parent: 127 - type: Transform -- uid: 632 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,8.5 - parent: 127 - type: Transform -- uid: 633 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,8.5 - parent: 127 - type: Transform -- uid: 634 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -9.5,8.5 - parent: 127 - type: Transform -- uid: 635 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,8.5 - parent: 127 - type: Transform -- uid: 636 - type: Grille - components: - - pos: 19.5,-0.5 - parent: 127 - type: Transform -- uid: 637 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,10.5 - parent: 127 - type: Transform -- uid: 638 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,10.5 - parent: 127 - type: Transform -- uid: 639 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -9.5,4.5 - parent: 127 - type: Transform -- uid: 640 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,10.5 - parent: 127 - type: Transform -- uid: 641 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: -11.5,4.5 - parent: 127 - type: Transform -- uid: 642 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: -11.5,6.5 - parent: 127 - type: Transform -- uid: 643 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: -11.5,8.5 - parent: 127 - type: Transform -- uid: 644 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: -11.5,10.5 - parent: 127 - type: Transform -- uid: 645 - type: RandomArtifactSpawner - components: - - pos: -11.5,9.5 - parent: 127 - type: Transform -- uid: 646 - type: ExtinguisherCabinetFilled - components: - - pos: 8.5,-11.5 - parent: 127 - type: Transform -- uid: 647 - type: DisposalTrunk - components: - - pos: 12.5,-21.5 - parent: 127 - type: Transform -- uid: 648 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -9.5,5.5 - parent: 127 - type: Transform -- uid: 649 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -9.5,9.5 - parent: 127 - type: Transform -- uid: 650 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: -12.5,5.5 - parent: 127 - type: Transform -- uid: 651 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: -12.5,9.5 - parent: 127 - type: Transform -- uid: 652 - type: CableHV - components: - - pos: 20.5,2.5 - parent: 127 - type: Transform -- uid: 653 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -8.5,11.5 - parent: 127 - type: Transform -- uid: 654 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -5.5,9.5 - parent: 127 - type: Transform - - devices: - - 649 - - 651 - type: DeviceList -- uid: 655 - type: AirAlarm - components: - - pos: -1.5,-0.5 - parent: 127 - type: Transform - - devices: - - 671 - - 673 - - 5650 - - 5653 - - 5652 - - 5651 - - 5707 - - 5708 - - 5702 - - 5701 - - 6503 - - 5706 - type: DeviceList -- uid: 656 - type: FireAlarm - components: - - pos: -0.5,-0.5 - parent: 127 - type: Transform - - devices: - - 671 - - 673 - - 5650 - - 5653 - - 5652 - - 5651 - type: DeviceList -- uid: 657 - type: WindoorScienceLocked - components: - - rot: 1.5707963267948966 rad - pos: -10.5,5.5 - parent: 127 - type: Transform -- uid: 658 - type: WindoorScienceLocked - components: - - rot: 1.5707963267948966 rad - pos: -10.5,9.5 - parent: 127 - type: Transform -- uid: 659 - type: Firelock - components: - - pos: -6.5,3.5 - parent: 127 - type: Transform -- uid: 660 - type: Firelock - components: - - pos: -7.5,3.5 - parent: 127 - type: Transform -- uid: 661 - type: Firelock - components: - - pos: -8.5,3.5 - parent: 127 - type: Transform -- uid: 662 - type: FirelockGlass - components: - - pos: -8.5,7.5 - parent: 127 - type: Transform -- uid: 663 - type: FirelockGlass - components: - - pos: -7.5,7.5 - parent: 127 - type: Transform -- uid: 664 - type: FirelockGlass - components: - - pos: -6.5,7.5 - parent: 127 - type: Transform -- uid: 665 - type: PottedPlantRandom - components: - - pos: 10.5,3.5 - parent: 127 - type: Transform -- uid: 666 - type: PoweredSmallLight - components: - - pos: 56.5,-15.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 667 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,1.5 - parent: 127 - type: Transform -- uid: 668 - type: Grille - components: - - pos: 18.5,1.5 - parent: 127 - type: Transform -- uid: 669 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -7.5,-1.5 - parent: 127 - type: Transform -- uid: 670 - type: Grille - components: - - pos: 19.5,0.5 - parent: 127 - type: Transform -- uid: 671 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 127 - type: Transform -- uid: 672 - type: PowerCellRecharger - components: - - pos: 17.5,-21.5 - parent: 127 - type: Transform -- uid: 673 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 127 - type: Transform -- uid: 674 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -8.5,-1.5 - parent: 127 - type: Transform -- uid: 675 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: -7.5,5.5 - parent: 127 - type: Transform -- uid: 676 - type: LampGold - components: - - pos: -3.4351218,-7.0399003 - parent: 127 - type: Transform -- uid: 677 - type: Lamp - components: - - pos: 3.5705032,-1.1707816 - parent: 127 - type: Transform -- uid: 678 - type: SignalButton - components: - - pos: -9.5,3.5 - parent: 127 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 529 - type: SignalTransmitter -- uid: 679 - type: SignalButton - components: - - pos: -9.5,7.5 - parent: 127 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 530 - type: SignalTransmitter -- uid: 680 - type: PottedPlantRandom - components: - - pos: -9.5,2.5 - parent: 127 - type: Transform -- uid: 681 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 682 - type: GasVentPump - components: - - pos: -8.5,9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 683 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 684 - type: GasVentScrubber - components: - - pos: -7.5,9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 685 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,4.5 - parent: 127 - type: Transform -- uid: 686 - type: VendingMachineWallMedical - components: - - flags: SessionSpecific - type: MetaData - - rot: -1.5707963267948966 rad - pos: 8.5,10.5 - parent: 127 - type: Transform -- uid: 687 - type: WallSolid - components: - - pos: -11.5,-3.5 - parent: 127 - type: Transform -- uid: 688 - type: WallSolid - components: - - pos: -10.5,-3.5 - parent: 127 - type: Transform -- uid: 689 - type: SignScience - components: - - pos: 2.5,-0.5 - parent: 127 - type: Transform -- uid: 690 - type: SignMedical - components: - - pos: 2.5,3.5 - parent: 127 - type: Transform -- uid: 691 - type: BannerMedical - components: - - pos: -0.5,2.5 - parent: 127 - type: Transform -- uid: 692 - type: MedicalBed - components: - - pos: -4.5,5.5 - parent: 127 - type: Transform -- uid: 693 - type: MedicalBed - components: - - pos: -4.5,8.5 - parent: 127 - type: Transform -- uid: 694 - type: SignChem - components: - - pos: 8.5,3.5 - parent: 127 - type: Transform -- uid: 695 - type: StasisBed - components: - - pos: -4.5,11.5 - parent: 127 - type: Transform -- uid: 696 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -1.5,11.5 - parent: 127 - type: Transform -- uid: 697 - type: AirlockMedicalGlassLocked - components: - - pos: 0.5,3.5 - parent: 127 - type: Transform -- uid: 698 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -1.5,8.5 - parent: 127 - type: Transform -- uid: 699 - type: PottedPlantRandom - components: - - pos: 8.5,0.5 - parent: 127 - type: Transform -- uid: 700 - type: WindoorChemistryLocked - components: - - rot: 3.141592653589793 rad - pos: 6.5,3.5 - parent: 127 - type: Transform -- uid: 701 - type: WindoorSecure - components: - - pos: 6.5,3.5 - parent: 127 - type: Transform -- uid: 702 - type: WindoorSecure - components: - - rot: 3.141592653589793 rad - pos: 6.5,-0.5 - parent: 127 - type: Transform -- uid: 703 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 127 - type: Transform -- uid: 704 - type: Table - components: - - pos: -3.5,11.5 - parent: 127 - type: Transform -- uid: 705 - type: Table - components: - - pos: -3.5,8.5 - parent: 127 - type: Transform -- uid: 706 - type: Table - components: - - pos: -3.5,5.5 - parent: 127 - type: Transform -- uid: 707 - type: Chair - components: - - pos: 5.5,2.5 - parent: 127 - type: Transform -- uid: 708 - type: Chair - components: - - pos: 4.5,2.5 - parent: 127 - type: Transform -- uid: 709 - type: CarpetGreen - components: - - pos: 18.5,-1.5 - parent: 127 - type: Transform -- uid: 710 - type: ReinforcedWindow - components: - - pos: 20.5,-0.5 - parent: 127 - type: Transform -- uid: 711 - type: ReinforcedWindow - components: - - pos: 18.5,0.5 - parent: 127 - type: Transform -- uid: 712 - type: ReinforcedWindow - components: - - pos: 19.5,0.5 - parent: 127 - type: Transform -- uid: 713 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,1.5 - parent: 127 - type: Transform -- uid: 714 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,0.5 - parent: 127 - type: Transform -- uid: 715 - type: Chair - components: - - pos: 3.5,2.5 - parent: 127 - type: Transform -- uid: 716 - type: Table - components: - - pos: 2.5,2.5 - parent: 127 - type: Transform -- uid: 717 - type: AirlockMedicalGlassLocked - components: - - pos: 1.5,3.5 - parent: 127 - type: Transform -- uid: 718 - type: AirlockChiefMedicalOfficerLocked - components: - - pos: 5.5,10.5 - parent: 127 - type: Transform -- uid: 719 - type: TableGlass - components: - - pos: 4.5,5.5 - parent: 127 - type: Transform -- uid: 720 - type: LockerChemistryFilled - components: - - pos: 7.5,4.5 - parent: 127 - type: Transform -- uid: 721 - type: TableGlass - components: - - pos: 4.5,4.5 - parent: 127 - type: Transform -- uid: 722 - type: TableGlass - components: - - pos: 7.5,7.5 - parent: 127 - type: Transform -- uid: 723 - type: KitchenReagentGrinder - components: - - pos: 7.5,7.5 - parent: 127 - type: Transform -- uid: 724 - type: ClothingMaskBreathMedical - components: - - pos: 4.3829513,4.9045124 - parent: 127 - type: Transform -- uid: 725 - type: SheetPlasma1 - components: - - pos: 4.5860763,4.8888874 - parent: 127 - type: Transform -- uid: 726 - type: SheetPlasma1 - components: - - pos: 4.5860763,4.8888874 - parent: 127 - type: Transform -- uid: 727 - type: HandLabeler - components: - - pos: 4.500264,4.5123115 - parent: 127 - type: Transform -- uid: 728 - type: ChemistryHotplate - components: - - pos: 4.5,5.5 - parent: 127 - type: Transform -- uid: 729 - type: BoxSyringe - components: - - pos: 4.4767013,4.6232624 - parent: 127 - type: Transform -- uid: 730 - type: FloorDrain - components: - - pos: 5.5,5.5 - parent: 127 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 731 - type: WallReinforced - components: - - pos: 27.5,-8.5 - parent: 127 - type: Transform -- uid: 732 - type: BoxBeaker - components: - - pos: 4.4767013,4.7013874 - parent: 127 - type: Transform -- uid: 733 - type: AirlockChemistryLocked - components: - - pos: 3.5,6.5 - parent: 127 - type: Transform -- uid: 734 - type: ComputerCrewMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 2.5,8.5 - parent: 127 - type: Transform -- uid: 735 - type: ChairOfficeDark - components: - - pos: 1.5,8.5 - parent: 127 - type: Transform -- uid: 736 - type: ChairOfficeDark - components: - - pos: 6.5,4.5 - parent: 127 - type: Transform -- uid: 737 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 6.5,-1.5 - parent: 127 - type: Transform -- uid: 738 - type: EmergencyRollerBed - components: - - pos: 4.5,9.5 - parent: 127 - type: Transform -- uid: 739 - type: EmergencyRollerBed - components: - - pos: 3.5,9.5 - parent: 127 - type: Transform -- uid: 740 - type: WallReinforced - components: - - pos: 23.5,-3.5 - parent: 127 - type: Transform -- uid: 741 - type: Grille - components: - - pos: 23.5,-1.5 - parent: 127 - type: Transform -- uid: 742 - type: Grille - components: - - pos: 23.5,-2.5 - parent: 127 - type: Transform -- uid: 743 - type: Poweredlight - components: - - pos: 23.5,-4.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 744 - type: PottedPlantRandom - components: - - pos: 2.5,5.5 - parent: 127 - type: Transform -- uid: 745 - type: WallReinforced - components: - - pos: 28.5,0.5 - parent: 127 - type: Transform -- uid: 746 - type: WallReinforced - components: - - pos: 26.5,-0.5 - parent: 127 - type: Transform -- uid: 747 - type: WallReinforced - components: - - pos: 27.5,-0.5 - parent: 127 - type: Transform -- uid: 748 - type: WallReinforced - components: - - pos: 28.5,-0.5 - parent: 127 - type: Transform -- uid: 749 - type: PottedPlantRandom - components: - - pos: -1.5,12.5 - parent: 127 - type: Transform -- uid: 750 - type: WallReinforced - components: - - pos: 29.5,0.5 - parent: 127 - type: Transform -- uid: 751 - type: WallReinforced - components: - - pos: 31.5,0.5 - parent: 127 - type: Transform -- uid: 752 - type: PottedPlantRandom - components: - - pos: -1.5,6.5 - parent: 127 - type: Transform -- uid: 753 - type: SpawnPointChiefMedicalOfficer - components: - - pos: 7.5,10.5 - parent: 127 - type: Transform -- uid: 754 - type: SpawnPointMedicalIntern - components: - - pos: 2.5,10.5 - parent: 127 - type: Transform -- uid: 755 - type: SpawnPointMedicalDoctor - components: - - pos: 3.5,10.5 - parent: 127 - type: Transform -- uid: 756 - type: SpawnPointChemist - components: - - pos: 6.5,6.5 - parent: 127 - type: Transform -- uid: 757 - type: SignVirology - components: - - pos: -2.5,17.5 - parent: 127 - type: Transform -- uid: 758 - type: AirlockVirologyLocked - components: - - pos: -1.5,17.5 - parent: 127 - type: Transform -- uid: 759 - type: AirlockVirologyLocked - components: - - pos: -0.5,17.5 - parent: 127 - type: Transform -- uid: 760 - type: VendingMachineViroDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,18.5 - parent: 127 - type: Transform -- uid: 761 - type: ClothingMaskGasCentcom - components: - - pos: -14.5,10.5 - parent: 127 - type: Transform -- uid: 762 - type: Table - components: - - pos: -3.5,21.5 - parent: 127 - type: Transform -- uid: 763 - type: Table - components: - - pos: -4.5,21.5 - parent: 127 - type: Transform -- uid: 764 - type: DiseaseDiagnoser - components: - - pos: -3.5,18.5 - parent: 127 - type: Transform -- uid: 765 - type: Vaccinator - components: - - pos: -2.5,18.5 - parent: 127 - type: Transform -- uid: 766 - type: ToolboxGoldFilled - components: - - pos: 35.491257,-7.274255 - parent: 127 - type: Transform -- uid: 767 - type: BoxMouthSwab - components: - - pos: -4.6720505,21.580416 - parent: 127 - type: Transform -- uid: 768 - type: BoxLatexGloves - components: - - pos: -4.2345505,21.580416 - parent: 127 - type: Transform -- uid: 769 - type: WallReinforced - components: - - pos: 31.5,-2.5 - parent: 127 - type: Transform -- uid: 770 - type: WallReinforced - components: - - pos: 31.5,-1.5 - parent: 127 - type: Transform -- uid: 771 - type: BoxSterileMask - components: - - pos: -4.4689255,21.580416 - parent: 127 - type: Transform -- uid: 772 - type: WallReinforced - components: - - pos: 31.5,-0.5 - parent: 127 - type: Transform -- uid: 773 - type: ReinforcedWindow - components: - - pos: 23.5,-2.5 - parent: 127 - type: Transform -- uid: 774 - type: ReinforcedWindow - components: - - pos: 23.5,-1.5 - parent: 127 - type: Transform -- uid: 775 - type: WindowReinforcedDirectional - components: - - pos: -4.5,22.5 - parent: 127 - type: Transform -- uid: 776 - type: WindowReinforcedDirectional - components: - - pos: -3.5,22.5 - parent: 127 - type: Transform -- uid: 777 - type: WindowReinforcedDirectional - components: - - pos: -2.5,22.5 - parent: 127 - type: Transform -- uid: 778 - type: WindowReinforcedDirectional - components: - - pos: -0.5,22.5 - parent: 127 - type: Transform -- uid: 779 - type: AirlockMaintMedLocked - components: - - pos: -5.5,19.5 - parent: 127 - type: Transform -- uid: 780 - type: AirlockMaintMedLocked - components: - - pos: 5.5,15.5 - parent: 127 - type: Transform -- uid: 781 - type: WindoorMedicalLocked - components: - - pos: -1.5,22.5 - parent: 127 - type: Transform -- uid: 782 - type: MedkitAdvancedFilled - components: - - pos: 0.5286894,10.653169 - parent: 127 - type: Transform -- uid: 783 - type: MedkitBruteFilled - components: - - pos: 0.5286894,10.512544 - parent: 127 - type: Transform -- uid: 784 - type: MedkitBurnFilled - components: - - pos: 0.5286894,10.371919 - parent: 127 - type: Transform -- uid: 785 - type: MedkitOxygenFilled - components: - - pos: 0.5286894,10.184419 - parent: 127 - type: Transform -- uid: 786 - type: MedkitRadiationFilled - components: - - pos: 0.5443144,10.043794 - parent: 127 - type: Transform -- uid: 787 - type: MedkitToxinFilled - components: - - pos: 0.5443144,9.887544 - parent: 127 - type: Transform -- uid: 788 - type: MedkitFilled - components: - - pos: 0.5443144,9.731294 - parent: 127 - type: Transform -- uid: 789 - type: MedkitFilled - components: - - pos: 0.5443144,9.559419 - parent: 127 - type: Transform -- uid: 790 - type: MedicalBed - components: - - pos: -4.5,24.5 - parent: 127 - type: Transform -- uid: 791 - type: BedsheetGreen - components: - - pos: -4.5,24.5 - parent: 127 - type: Transform -- uid: 792 - type: WallReinforced - components: - - pos: 32.5,-2.5 - parent: 127 - type: Transform -- uid: 793 - type: WallReinforced - components: - - pos: 36.5,-1.5 - parent: 127 - type: Transform -- uid: 794 - type: MedicalBed - components: - - pos: -2.5,24.5 - parent: 127 - type: Transform -- uid: 795 - type: MedicalBed - components: - - pos: -0.5,24.5 - parent: 127 - type: Transform -- uid: 796 - type: BedsheetGreen - components: - - pos: -2.5,24.5 - parent: 127 - type: Transform -- uid: 797 - type: BedsheetGreen - components: - - pos: -0.5,24.5 - parent: 127 - type: Transform -- uid: 798 - type: SyringeSpaceacillin - components: - - pos: -3.3751752,21.611666 - parent: 127 - type: Transform -- uid: 799 - type: BedsheetMedical - components: - - pos: -4.5,8.5 - parent: 127 - type: Transform -- uid: 800 - type: MedicalScanner - components: - - pos: -3.5,16.5 - parent: 127 - type: Transform -- uid: 801 - type: BedsheetMedical - components: - - pos: -4.5,5.5 - parent: 127 - type: Transform -- uid: 802 - type: MedicalTechFab - components: - - pos: -3.5,13.5 - parent: 127 - type: Transform -- uid: 803 - type: ComputerCloningConsole - components: - - pos: -4.5,16.5 - parent: 127 - type: Transform -- uid: 804 - type: CloningPod - components: - - pos: -5.5,16.5 - parent: 127 - type: Transform -- uid: 805 - type: Rack - components: - - pos: -5.5,13.5 - parent: 127 - type: Transform -- uid: 806 - type: AirlockMedicalGlassLocked - components: - - pos: -2.5,14.5 - parent: 127 - type: Transform -- uid: 807 - type: AirlockMedicalLocked - components: - - pos: 0.5,15.5 - parent: 127 - type: Transform -- uid: 808 - type: SignCloning - components: - - pos: -2.5,13.5 - parent: 127 - type: Transform -- uid: 809 - type: WallReinforced - components: - - pos: 28.5,-4.5 - parent: 127 - type: Transform -- uid: 810 - type: SignMorgue - components: - - pos: 0.5,14.5 - parent: 127 - type: Transform -- uid: 811 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 1.5,16.5 - parent: 127 - type: Transform -- uid: 812 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 1.5,17.5 - parent: 127 - type: Transform -- uid: 813 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 1.5,18.5 - parent: 127 - type: Transform -- uid: 814 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 4.5,18.5 - parent: 127 - type: Transform -- uid: 815 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 4.5,17.5 - parent: 127 - type: Transform -- uid: 816 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 4.5,16.5 - parent: 127 - type: Transform -- uid: 817 - type: SurveillanceCameraRouterMedical - components: - - pos: 4.5,14.5 - parent: 127 - type: Transform -- uid: 818 - type: Table - components: - - pos: 1.5,14.5 - parent: 127 - type: Transform -- uid: 819 - type: BiomassReclaimer - components: - - pos: 2.5,14.5 - parent: 127 - type: Transform -- uid: 820 - type: Table - components: - - pos: 3.5,14.5 - parent: 127 - type: Transform -- uid: 821 - type: FloorDrain - components: - - pos: 2.5,15.5 - parent: 127 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 822 - type: RandomSpawner - components: - - pos: -8.5,10.5 - parent: 127 - type: Transform -- uid: 823 - type: RandomSpawner - components: - - pos: -6.5,5.5 - parent: 127 - type: Transform -- uid: 824 - type: RandomSpawner - components: - - pos: -8.5,1.5 - parent: 127 - type: Transform -- uid: 825 - type: WallReinforced - components: - - pos: 25.5,-8.5 - parent: 127 - type: Transform -- uid: 826 - type: LockerHeadOfPersonnelFilled - components: - - pos: 25.5,-9.5 - parent: 127 - type: Transform - - containers: - entity_storage: !type:Container - ents: - - 7734 - type: ContainerContainer -- uid: 827 - type: Grille - components: - - pos: 24.5,-7.5 - parent: 127 - type: Transform -- uid: 828 - type: WallReinforced - components: - - pos: 24.5,-8.5 - parent: 127 - type: Transform -- uid: 829 - type: CableHV - components: - - pos: 21.5,2.5 - parent: 127 - type: Transform -- uid: 830 - type: WallReinforced - components: - - pos: 28.5,-3.5 - parent: 127 - type: Transform -- uid: 831 - type: FirelockGlass - components: - - pos: 24.5,-5.5 - parent: 127 - type: Transform -- uid: 832 - type: RandomSpawner - components: - - pos: -2.5,-1.5 - parent: 127 - type: Transform -- uid: 833 - type: RandomSpawner - components: - - pos: -0.5,-5.5 - parent: 127 - type: Transform -- uid: 834 - type: WallReinforced - components: - - pos: 30.5,0.5 - parent: 127 - type: Transform -- uid: 835 - type: RandomSpawner - components: - - pos: 5.5,-2.5 - parent: 127 - type: Transform -- uid: 836 - type: RandomSpawner - components: - - pos: 2.5,0.5 - parent: 127 - type: Transform -- uid: 837 - type: RandomSpawner - components: - - pos: 7.5,2.5 - parent: 127 - type: Transform -- uid: 838 - type: RandomSpawner - components: - - pos: 6.5,5.5 - parent: 127 - type: Transform -- uid: 839 - type: RandomSpawner - components: - - pos: 1.5,6.5 - parent: 127 - type: Transform -- uid: 840 - type: DisposalUnit - components: - - pos: -1.5,9.5 - parent: 127 - type: Transform -- uid: 841 - type: RandomSpawner - components: - - pos: 2.5,11.5 - parent: 127 - type: Transform -- uid: 842 - type: WallReinforced - components: - - pos: 40.5,-12.5 - parent: 127 - type: Transform -- uid: 843 - type: RandomSpawner - components: - - pos: -1.5,15.5 - parent: 127 - type: Transform -- uid: 844 - type: ClosetEmergencyFilledRandom - components: - - pos: 39.5,-9.5 - parent: 127 - type: Transform -- uid: 845 - type: ClosetFireFilled - components: - - pos: 39.5,-10.5 - parent: 127 - type: Transform -- uid: 846 - type: RandomSpawner - components: - - pos: 2.5,17.5 - parent: 127 - type: Transform -- uid: 847 - type: RandomSpawner - components: - - pos: -3.5,19.5 - parent: 127 - type: Transform -- uid: 848 - type: RandomSpawner - components: - - pos: -0.5,21.5 - parent: 127 - type: Transform -- uid: 849 - type: CrowbarRed - components: - - pos: -5.5,13.5 - parent: 127 - type: Transform -- uid: 850 - type: SpawnPointObserver - components: - - pos: 14.5,3.5 - parent: 127 - type: Transform -- uid: 851 - type: Wrench - components: - - pos: -5.5,13.5 - parent: 127 - type: Transform -- uid: 852 - type: WallReinforced - components: - - pos: 28.5,-8.5 - parent: 127 - type: Transform -- uid: 853 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 26.5,0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 854 - type: WallReinforced - components: - - pos: 28.5,-5.5 - parent: 127 - type: Transform -- uid: 855 - type: WallReinforced - components: - - pos: 28.5,-6.5 - parent: 127 - type: Transform -- uid: 856 - type: WallReinforced - components: - - pos: 23.5,-8.5 - parent: 127 - type: Transform -- uid: 857 - type: SheetGlass - components: - - pos: -5.5,13.5 - parent: 127 - type: Transform -- uid: 858 - type: PoweredSmallLight - components: - - pos: 52.5,-32.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 859 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-33.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 860 - type: Multitool - components: - - pos: -5.5,13.5 - parent: 127 - type: Transform -- uid: 861 - type: SyringeSpaceacillin - components: - - pos: -3.5314252,21.611666 - parent: 127 - type: Transform -- uid: 862 - type: BoxPillCanister - components: - - pos: 4.4767013,4.5451374 - parent: 127 - type: Transform -- uid: 863 - type: WallReinforced - components: - - pos: 23.5,16.5 - parent: 127 - type: Transform -- uid: 864 - type: WallReinforced - components: - - pos: 23.5,17.5 - parent: 127 - type: Transform -- uid: 865 - type: WallReinforced - components: - - pos: 19.5,18.5 - parent: 127 - type: Transform -- uid: 866 - type: WallReinforced - components: - - pos: 20.5,18.5 - parent: 127 - type: Transform -- uid: 867 - type: WallReinforced - components: - - pos: 21.5,18.5 - parent: 127 - type: Transform -- uid: 868 - type: WallReinforced - components: - - pos: 22.5,18.5 - parent: 127 - type: Transform -- uid: 869 - type: WallSolid - components: - - pos: 23.5,19.5 - parent: 127 - type: Transform -- uid: 870 - type: Poweredlight - components: - - pos: 14.5,0.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 871 - type: WallSolid - components: - - pos: 23.5,20.5 - parent: 127 - type: Transform -- uid: 872 - type: WallSolid - components: - - pos: 23.5,21.5 - parent: 127 - type: Transform -- uid: 873 - type: WallReinforced - components: - - pos: 24.5,22.5 - parent: 127 - type: Transform -- uid: 874 - type: ReinforcedWindow - components: - - pos: 10.5,22.5 - parent: 127 - type: Transform -- uid: 875 - type: ReinforcedWindow - components: - - pos: 9.5,22.5 - parent: 127 - type: Transform -- uid: 876 - type: ReinforcedWindow - components: - - pos: 9.5,23.5 - parent: 127 - type: Transform -- uid: 877 - type: Grille - components: - - pos: 9.5,23.5 - parent: 127 - type: Transform -- uid: 878 - type: Grille - components: - - pos: 9.5,22.5 - parent: 127 - type: Transform -- uid: 879 - type: Grille - components: - - pos: 10.5,22.5 - parent: 127 - type: Transform -- uid: 880 - type: Grille - components: - - pos: 12.5,22.5 - parent: 127 - type: Transform -- uid: 881 - type: Grille - components: - - pos: 12.5,23.5 - parent: 127 - type: Transform -- uid: 882 - type: Grille - components: - - pos: 12.5,24.5 - parent: 127 - type: Transform -- uid: 883 - type: Grille - components: - - pos: 12.5,25.5 - parent: 127 - type: Transform -- uid: 884 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,0.5 - parent: 127 - type: Transform -- uid: 885 - type: Grille - components: - - pos: 11.5,25.5 - parent: 127 - type: Transform -- uid: 886 - type: Grille - components: - - pos: 10.5,25.5 - parent: 127 - type: Transform -- uid: 887 - type: Grille - components: - - pos: 9.5,25.5 - parent: 127 - type: Transform -- uid: 888 - type: WallReinforced - components: - - pos: 38.5,1.5 - parent: 127 - type: Transform -- uid: 889 - type: WallReinforced - components: - - pos: 42.5,1.5 - parent: 127 - type: Transform -- uid: 890 - type: ReinforcedWindow - components: - - pos: 15.5,22.5 - parent: 127 - type: Transform -- uid: 891 - type: ReinforcedWindow - components: - - pos: 18.5,22.5 - parent: 127 - type: Transform -- uid: 892 - type: ReinforcedWindow - components: - - pos: 21.5,22.5 - parent: 127 - type: Transform -- uid: 893 - type: ReinforcedWindow - components: - - pos: 22.5,22.5 - parent: 127 - type: Transform -- uid: 894 - type: WallReinforced - components: - - pos: 24.5,-3.5 - parent: 127 - type: Transform -- uid: 895 - type: ReinforcedWindow - components: - - pos: 24.5,-7.5 - parent: 127 - type: Transform -- uid: 896 - type: Grille - components: - - pos: 22.5,22.5 - parent: 127 - type: Transform -- uid: 897 - type: Grille - components: - - pos: 21.5,22.5 - parent: 127 - type: Transform -- uid: 898 - type: Grille - components: - - pos: 18.5,22.5 - parent: 127 - type: Transform -- uid: 899 - type: Grille - components: - - pos: 15.5,22.5 - parent: 127 - type: Transform -- uid: 900 - type: WallReinforced - components: - - pos: 13.5,22.5 - parent: 127 - type: Transform -- uid: 901 - type: WallReinforced - components: - - pos: 39.5,1.5 - parent: 127 - type: Transform -- uid: 902 - type: WallReinforced - components: - - pos: 41.5,1.5 - parent: 127 - type: Transform -- uid: 903 - type: WallReinforced - components: - - pos: 14.5,22.5 - parent: 127 - type: Transform -- uid: 904 - type: ReinforcedWindow - components: - - pos: 15.5,23.5 - parent: 127 - type: Transform -- uid: 905 - type: ReinforcedWindow - components: - - pos: 15.5,24.5 - parent: 127 - type: Transform -- uid: 906 - type: ReinforcedWindow - components: - - pos: 15.5,25.5 - parent: 127 - type: Transform -- uid: 907 - type: ReinforcedWindow - components: - - pos: 18.5,23.5 - parent: 127 - type: Transform -- uid: 908 - type: ReinforcedWindow - components: - - pos: 24.5,-4.5 - parent: 127 - type: Transform -- uid: 909 - type: WallReinforced - components: - - pos: 26.5,-3.5 - parent: 127 - type: Transform -- uid: 910 - type: ReinforcedWindow - components: - - pos: 18.5,24.5 - parent: 127 - type: Transform -- uid: 911 - type: ReinforcedWindow - components: - - pos: 18.5,25.5 - parent: 127 - type: Transform -- uid: 912 - type: ReinforcedWindow - components: - - pos: 21.5,23.5 - parent: 127 - type: Transform -- uid: 913 - type: ReinforcedWindow - components: - - pos: 21.5,24.5 - parent: 127 - type: Transform -- uid: 914 - type: ReinforcedWindow - components: - - pos: 21.5,25.5 - parent: 127 - type: Transform -- uid: 915 - type: Grille - components: - - pos: 21.5,25.5 - parent: 127 - type: Transform -- uid: 916 - type: Grille - components: - - pos: 21.5,24.5 - parent: 127 - type: Transform -- uid: 917 - type: Grille - components: - - pos: 21.5,23.5 - parent: 127 - type: Transform -- uid: 918 - type: Grille - components: - - pos: 18.5,23.5 - parent: 127 - type: Transform -- uid: 919 - type: Grille - components: - - pos: 18.5,24.5 - parent: 127 - type: Transform -- uid: 920 - type: Grille - components: - - pos: 18.5,25.5 - parent: 127 - type: Transform -- uid: 921 - type: Grille - components: - - pos: 15.5,25.5 - parent: 127 - type: Transform -- uid: 922 - type: Grille - components: - - pos: 15.5,24.5 - parent: 127 - type: Transform -- uid: 923 - type: Grille - components: - - pos: 15.5,23.5 - parent: 127 - type: Transform -- uid: 924 - type: WallReinforced - components: - - pos: 25.5,11.5 - parent: 127 - type: Transform -- uid: 925 - type: WallReinforced - components: - - pos: 24.5,12.5 - parent: 127 - type: Transform -- uid: 926 - type: WallReinforced - components: - - pos: 25.5,12.5 - parent: 127 - type: Transform -- uid: 927 - type: WallSolid - components: - - pos: 26.5,12.5 - parent: 127 - type: Transform -- uid: 928 - type: WallSolid - components: - - pos: 26.5,13.5 - parent: 127 - type: Transform -- uid: 929 - type: WallSolid - components: - - pos: 26.5,13.5 - parent: 127 - type: Transform -- uid: 930 - type: WallSolid - components: - - pos: 26.5,14.5 - parent: 127 - type: Transform -- uid: 931 - type: WallSolid - components: - - pos: 26.5,15.5 - parent: 127 - type: Transform -- uid: 932 - type: WallSolid - components: - - pos: 26.5,16.5 - parent: 127 - type: Transform -- uid: 933 - type: WallSolid - components: - - pos: 26.5,17.5 - parent: 127 - type: Transform -- uid: 934 - type: WallSolid - components: - - pos: 26.5,18.5 - parent: 127 - type: Transform -- uid: 935 - type: WallSolid - components: - - pos: 26.5,19.5 - parent: 127 - type: Transform -- uid: 936 - type: WallSolid - components: - - pos: 27.5,20.5 - parent: 127 - type: Transform -- uid: 937 - type: WallSolid - components: - - pos: 28.5,20.5 - parent: 127 - type: Transform -- uid: 938 - type: WallReinforced - components: - - pos: 35.5,1.5 - parent: 127 - type: Transform -- uid: 939 - type: WallSolid - components: - - pos: 27.5,19.5 - parent: 127 - type: Transform -- uid: 940 - type: ReinforcedWindow - components: - - pos: 39.5,21.5 - parent: 127 - type: Transform -- uid: 941 - type: WallSolid - components: - - pos: 30.5,20.5 - parent: 127 - type: Transform -- uid: 942 - type: WallReinforced - components: - - pos: 25.5,22.5 - parent: 127 - type: Transform -- uid: 943 - type: WallReinforced - components: - - pos: 30.5,23.5 - parent: 127 - type: Transform -- uid: 944 - type: WallReinforced - components: - - pos: 31.5,23.5 - parent: 127 - type: Transform -- uid: 945 - type: WallReinforced - components: - - pos: 32.5,23.5 - parent: 127 - type: Transform -- uid: 946 - type: WallReinforced - components: - - pos: 25.5,23.5 - parent: 127 - type: Transform -- uid: 947 - type: WallReinforced - components: - - pos: 26.5,23.5 - parent: 127 - type: Transform -- uid: 948 - type: WallReinforced - components: - - pos: 28.5,23.5 - parent: 127 - type: Transform -- uid: 949 - type: WallReinforced - components: - - pos: 29.5,23.5 - parent: 127 - type: Transform -- uid: 950 - type: ReinforcedWindow - components: - - pos: 32.5,4.5 - parent: 127 - type: Transform -- uid: 951 - type: WallReinforced - components: - - pos: 31.5,4.5 - parent: 127 - type: Transform -- uid: 952 - type: WallReinforced - components: - - pos: 31.5,3.5 - parent: 127 - type: Transform -- uid: 953 - type: WallReinforced - components: - - pos: 35.5,4.5 - parent: 127 - type: Transform -- uid: 954 - type: WallReinforced - components: - - pos: 34.5,4.5 - parent: 127 - type: Transform -- uid: 955 - type: WallReinforced - components: - - pos: 35.5,2.5 - parent: 127 - type: Transform -- uid: 956 - type: WallReinforced - components: - - pos: 35.5,3.5 - parent: 127 - type: Transform -- uid: 957 - type: WallReinforced - components: - - pos: 31.5,2.5 - parent: 127 - type: Transform -- uid: 958 - type: Grille - components: - - pos: -12.5,22.5 - parent: 127 - type: Transform -- uid: 959 - type: WallReinforced - components: - - pos: -10.5,23.5 - parent: 127 - type: Transform -- uid: 960 - type: WallSolid - components: - - pos: 35.5,7.5 - parent: 127 - type: Transform -- uid: 961 - type: ReinforcedWindow - components: - - pos: -12.5,20.5 - parent: 127 - type: Transform -- uid: 962 - type: WallSolid - components: - - pos: 35.5,8.5 - parent: 127 - type: Transform -- uid: 963 - type: WallSolid - components: - - pos: 35.5,9.5 - parent: 127 - type: Transform -- uid: 964 - type: WallSolid - components: - - pos: 35.5,10.5 - parent: 127 - type: Transform -- uid: 965 - type: WallReinforced - components: - - pos: 33.5,18.5 - parent: 127 - type: Transform -- uid: 966 - type: WallReinforced - components: - - pos: 38.5,16.5 - parent: 127 - type: Transform -- uid: 967 - type: WallReinforced - components: - - pos: 38.5,17.5 - parent: 127 - type: Transform -- uid: 968 - type: WallReinforced - components: - - pos: 34.5,18.5 - parent: 127 - type: Transform -- uid: 969 - type: CableHV - components: - - pos: 22.5,-19.5 - parent: 127 - type: Transform -- uid: 970 - type: WallReinforced - components: - - pos: 36.5,18.5 - parent: 127 - type: Transform -- uid: 971 - type: WallReinforced - components: - - pos: 38.5,18.5 - parent: 127 - type: Transform -- uid: 972 - type: WallReinforced - components: - - pos: 37.5,18.5 - parent: 127 - type: Transform -- uid: 973 - type: WallReinforced - components: - - pos: 35.5,18.5 - parent: 127 - type: Transform -- uid: 974 - type: Grille - components: - - pos: 32.5,17.5 - parent: 127 - type: Transform -- uid: 975 - type: Grille - components: - - pos: 32.5,16.5 - parent: 127 - type: Transform -- uid: 976 - type: Grille - components: - - pos: 32.5,15.5 - parent: 127 - type: Transform -- uid: 977 - type: Grille - components: - - pos: 32.5,14.5 - parent: 127 - type: Transform -- uid: 978 - type: Grille - components: - - pos: 32.5,12.5 - parent: 127 - type: Transform -- uid: 979 - type: Grille - components: - - pos: 32.5,11.5 - parent: 127 - type: Transform -- uid: 980 - type: Grille - components: - - pos: 33.5,11.5 - parent: 127 - type: Transform -- uid: 981 - type: WallReinforced - components: - - pos: 34.5,1.5 - parent: 127 - type: Transform -- uid: 982 - type: Grille - components: - - pos: 34.5,11.5 - parent: 127 - type: Transform -- uid: 983 - type: WallReinforced - components: - - pos: 32.5,18.5 - parent: 127 - type: Transform -- uid: 984 - type: WallSolid - components: - - pos: 31.5,20.5 - parent: 127 - type: Transform -- uid: 985 - type: WallSolid - components: - - pos: 32.5,19.5 - parent: 127 - type: Transform -- uid: 986 - type: WallSolid - components: - - pos: 31.5,19.5 - parent: 127 - type: Transform -- uid: 987 - type: WallReinforced - components: - - pos: -12.5,23.5 - parent: 127 - type: Transform -- uid: 988 - type: Grille - components: - - pos: -12.5,20.5 - parent: 127 - type: Transform -- uid: 989 - type: ReinforcedWindow - components: - - pos: -12.5,22.5 - parent: 127 - type: Transform -- uid: 990 - type: WallReinforced - components: - - pos: 27.5,23.5 - parent: 127 - type: Transform -- uid: 991 - type: WallReinforced - components: - - pos: 35.5,21.5 - parent: 127 - type: Transform -- uid: 992 - type: WallReinforced - components: - - pos: 23.5,22.5 - parent: 127 - type: Transform -- uid: 993 - type: PowerCellRecharger - components: - - pos: 39.5,-7.5 - parent: 127 - type: Transform -- uid: 994 - type: WallReinforced - components: - - pos: 35.5,22.5 - parent: 127 - type: Transform -- uid: 995 - type: WallReinforced - components: - - pos: 35.5,23.5 - parent: 127 - type: Transform -- uid: 996 - type: WallWeaponCapacitorRecharger - components: - - pos: 38.5,-6.5 - parent: 127 - type: Transform -- uid: 997 - type: WallReinforced - components: - - pos: 37.5,20.5 - parent: 127 - type: Transform -- uid: 998 - type: ReinforcedWindow - components: - - pos: 38.5,21.5 - parent: 127 - type: Transform -- uid: 999 - type: WallReinforced - components: - - pos: 37.5,21.5 - parent: 127 - type: Transform -- uid: 1000 - type: WallReinforced - components: - - pos: 33.5,23.5 - parent: 127 - type: Transform -- uid: 1001 - type: WallReinforced - components: - - pos: 34.5,23.5 - parent: 127 - type: Transform -- uid: 1002 - type: WallReinforced - components: - - pos: -11.5,17.5 - parent: 127 - type: Transform -- uid: 1003 - type: Grille - components: - - pos: 24.5,-4.5 - parent: 127 - type: Transform -- uid: 1004 - type: WallReinforced - components: - - pos: 27.5,-3.5 - parent: 127 - type: Transform -- uid: 1005 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-6.5 - parent: 127 - type: Transform -- uid: 1006 - type: WallReinforced - components: - - pos: -10.5,17.5 - parent: 127 - type: Transform -- uid: 1007 - type: WallReinforced - components: - - pos: -11.5,19.5 - parent: 127 - type: Transform -- uid: 1008 - type: WallReinforced - components: - - pos: -12.5,19.5 - parent: 127 - type: Transform -- uid: 1009 - type: WallReinforced - components: - - pos: 37.5,1.5 - parent: 127 - type: Transform -- uid: 1010 - type: WallReinforced - components: - - pos: 32.5,1.5 - parent: 127 - type: Transform -- uid: 1011 - type: ReinforcedWindow - components: - - pos: -10.5,26.5 - parent: 127 - type: Transform -- uid: 1012 - type: ReinforcedWindow - components: - - pos: -12.5,21.5 - parent: 127 - type: Transform -- uid: 1013 - type: Grille - components: - - pos: -12.5,21.5 - parent: 127 - type: Transform -- uid: 1014 - type: ReinforcedWindow - components: - - pos: -11.5,26.5 - parent: 127 - type: Transform -- uid: 1015 - type: WallReinforced - components: - - pos: -12.5,26.5 - parent: 127 - type: Transform -- uid: 1016 - type: WallReinforced - components: - - pos: -9.5,26.5 - parent: 127 - type: Transform -- uid: 1017 - type: ReinforcedWindow - components: - - pos: 12.5,5.5 - parent: 127 - type: Transform -- uid: 1018 - type: PlasticFlapsAirtightClear - components: - - pos: 14.5,11.5 - parent: 127 - type: Transform -- uid: 1019 - type: WallReinforced - components: - - pos: 33.5,1.5 - parent: 127 - type: Transform -- uid: 1020 - type: WallReinforced - components: - - pos: 36.5,1.5 - parent: 127 - type: Transform -- uid: 1021 - type: WallReinforced - components: - - pos: 36.5,-0.5 - parent: 127 - type: Transform -- uid: 1022 - type: WallReinforced - components: - - pos: 36.5,0.5 - parent: 127 - type: Transform -- uid: 1023 - type: WallReinforced - components: - - pos: 36.5,-2.5 - parent: 127 - type: Transform -- uid: 1024 - type: WallReinforced - components: - - pos: 35.5,0.5 - parent: 127 - type: Transform -- uid: 1025 - type: WallReinforced - components: - - pos: 34.5,0.5 - parent: 127 - type: Transform -- uid: 1026 - type: WallReinforced - components: - - pos: 35.5,-2.5 - parent: 127 - type: Transform -- uid: 1027 - type: WallReinforced - components: - - pos: 33.5,0.5 - parent: 127 - type: Transform -- uid: 1028 - type: WallReinforced - components: - - pos: 32.5,0.5 - parent: 127 - type: Transform -- uid: 1029 - type: WallReinforced - components: - - pos: 34.5,-10.5 - parent: 127 - type: Transform -- uid: 1030 - type: WallReinforced - components: - - pos: 42.5,-3.5 - parent: 127 - type: Transform -- uid: 1031 - type: Grille - components: - - pos: 42.5,0.5 - parent: 127 - type: Transform -- uid: 1032 - type: Grille - components: - - pos: 42.5,-0.5 - parent: 127 - type: Transform -- uid: 1033 - type: Grille - components: - - pos: 42.5,-1.5 - parent: 127 - type: Transform -- uid: 1034 - type: Grille - components: - - pos: 41.5,-3.5 - parent: 127 - type: Transform -- uid: 1035 - type: Grille - components: - - pos: 42.5,-2.5 - parent: 127 - type: Transform -- uid: 1036 - type: ReinforcedWindow - components: - - pos: 42.5,-2.5 - parent: 127 - type: Transform -- uid: 1037 - type: Grille - components: - - pos: 44.5,-8.5 - parent: 127 - type: Transform -- uid: 1038 - type: Grille - components: - - pos: 44.5,-9.5 - parent: 127 - type: Transform -- uid: 1039 - type: WallReinforced - components: - - pos: 29.5,-6.5 - parent: 127 - type: Transform -- uid: 1040 - type: WallReinforced - components: - - pos: 30.5,-6.5 - parent: 127 - type: Transform -- uid: 1041 - type: AirlockMaintCommandLocked - components: - - pos: 31.5,-6.5 - parent: 127 - type: Transform -- uid: 1042 - type: Grille - components: - - pos: 43.5,-6.5 - parent: 127 - type: Transform -- uid: 1043 - type: WallReinforced - components: - - pos: 33.5,-6.5 - parent: 127 - type: Transform -- uid: 1044 - type: WallReinforced - components: - - pos: 34.5,-6.5 - parent: 127 - type: Transform -- uid: 1045 - type: WallReinforced - components: - - pos: 34.5,-8.5 - parent: 127 - type: Transform -- uid: 1046 - type: WallReinforced - components: - - pos: 34.5,-9.5 - parent: 127 - type: Transform -- uid: 1047 - type: WallReinforced - components: - - pos: 38.5,-6.5 - parent: 127 - type: Transform -- uid: 1048 - type: WallReinforced - components: - - pos: 37.5,-6.5 - parent: 127 - type: Transform -- uid: 1049 - type: WallReinforced - components: - - pos: 36.5,-3.5 - parent: 127 - type: Transform -- uid: 1050 - type: Grille - components: - - pos: 37.5,-3.5 - parent: 127 - type: Transform -- uid: 1051 - type: Grille - components: - - pos: 38.5,-3.5 - parent: 127 - type: Transform -- uid: 1052 - type: Grille - components: - - pos: 40.5,-3.5 - parent: 127 - type: Transform -- uid: 1053 - type: ReinforcedWindow - components: - - pos: 38.5,-3.5 - parent: 127 - type: Transform -- uid: 1054 - type: ReinforcedWindow - components: - - pos: 37.5,-3.5 - parent: 127 - type: Transform -- uid: 1055 - type: ReinforcedWindow - components: - - pos: 40.5,-3.5 - parent: 127 - type: Transform -- uid: 1056 - type: WallReinforced - components: - - pos: 43.5,-4.5 - parent: 127 - type: Transform -- uid: 1057 - type: ReinforcedWindow - components: - - pos: 41.5,-3.5 - parent: 127 - type: Transform -- uid: 1058 - type: ReinforcedWindow - components: - - pos: 42.5,-1.5 - parent: 127 - type: Transform -- uid: 1059 - type: CableMV - components: - - pos: 37.5,-3.5 - parent: 127 - type: Transform -- uid: 1060 - type: CableMV - components: - - pos: 39.5,-3.5 - parent: 127 - type: Transform -- uid: 1061 - type: ReinforcedWindow - components: - - pos: 43.5,-9.5 - parent: 127 - type: Transform -- uid: 1062 - type: ReinforcedWindow - components: - - pos: 43.5,-5.5 - parent: 127 - type: Transform -- uid: 1063 - type: ComputerRadar - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-10.5 - parent: 127 - type: Transform -- uid: 1064 - type: CableHV - components: - - pos: 42.5,-5.5 - parent: 127 - type: Transform -- uid: 1065 - type: ComputerComms - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-8.5 - parent: 127 - type: Transform -- uid: 1066 - type: ComputerId - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-7.5 - parent: 127 - type: Transform -- uid: 1067 - type: Grille - components: - - pos: 43.5,-9.5 - parent: 127 - type: Transform -- uid: 1068 - type: WallReinforced - components: - - pos: 42.5,-4.5 - parent: 127 - type: Transform -- uid: 1069 - type: AirlockCommandGlassLocked - components: - - pos: 39.5,-3.5 - parent: 127 - type: Transform -- uid: 1070 - type: WallReinforced - components: - - pos: 42.5,-11.5 - parent: 127 - type: Transform -- uid: 1071 - type: WallReinforced - components: - - pos: 43.5,-11.5 - parent: 127 - type: Transform -- uid: 1072 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-3.5 - parent: 127 - type: Transform -- uid: 1073 - type: WallReinforced - components: - - pos: 40.5,-11.5 - parent: 127 - type: Transform -- uid: 1074 - type: WallReinforced - components: - - pos: 39.5,-11.5 - parent: 127 - type: Transform -- uid: 1075 - type: WallReinforced - components: - - pos: 38.5,-11.5 - parent: 127 - type: Transform -- uid: 1076 - type: WallReinforced - components: - - pos: 38.5,-8.5 - parent: 127 - type: Transform -- uid: 1077 - type: WallReinforced - components: - - pos: 38.5,-10.5 - parent: 127 - type: Transform -- uid: 1078 - type: WallReinforced - components: - - pos: 38.5,-9.5 - parent: 127 - type: Transform -- uid: 1079 - type: WallReinforced - components: - - pos: 38.5,-7.5 - parent: 127 - type: Transform -- uid: 1080 - type: WallReinforced - components: - - pos: 34.5,-7.5 - parent: 127 - type: Transform -- uid: 1081 - type: WallReinforced - components: - - pos: 35.5,-6.5 - parent: 127 - type: Transform -- uid: 1082 - type: WallReinforced - components: - - pos: 32.5,-6.5 - parent: 127 - type: Transform -- uid: 1083 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-11.5 - parent: 127 - type: Transform -- uid: 1084 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-8.5 - parent: 127 - type: Transform -- uid: 1085 - type: AirlockCommandGlassLocked - components: - - pos: 24.5,-0.5 - parent: 127 - type: Transform -- uid: 1086 - type: CableHV - components: - - pos: 22.5,-20.5 - parent: 127 - type: Transform -- uid: 1087 - type: WallReinforced - components: - - pos: 27.5,-11.5 - parent: 127 - type: Transform -- uid: 1088 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-11.5 - parent: 127 - type: Transform -- uid: 1089 - type: ReinforcedWindow - components: - - pos: 14.5,5.5 - parent: 127 - type: Transform -- uid: 1090 - type: WallReinforced - components: - - pos: 24.5,-9.5 - parent: 127 - type: Transform -- uid: 1091 - type: WallReinforced - components: - - pos: 25.5,-11.5 - parent: 127 - type: Transform -- uid: 1092 - type: TableWood - components: - - pos: 25.5,-10.5 - parent: 127 - type: Transform -- uid: 1093 - type: WallReinforced - components: - - pos: 28.5,-11.5 - parent: 127 - type: Transform -- uid: 1094 - type: WallReinforced - components: - - pos: 24.5,-11.5 - parent: 127 - type: Transform -- uid: 1095 - type: AirlockCommandGlassLocked - components: - - pos: 25.5,-0.5 - parent: 127 - type: Transform -- uid: 1096 - type: AirlockCommandGlassLocked - components: - - pos: 27.5,-1.5 - parent: 127 - type: Transform -- uid: 1097 - type: AirlockCommandGlassLocked - components: - - pos: 27.5,-2.5 - parent: 127 - type: Transform -- uid: 1098 - type: HighSecCommandLocked - components: - - pos: 36.5,-6.5 - parent: 127 - type: Transform -- uid: 1099 - type: ReinforcedWindow - components: - - pos: 42.5,-0.5 - parent: 127 - type: Transform -- uid: 1100 - type: ReinforcedWindow - components: - - pos: 42.5,0.5 - parent: 127 - type: Transform -- uid: 1101 - type: WallReinforced - components: - - pos: 37.5,-11.5 - parent: 127 - type: Transform -- uid: 1102 - type: WallReinforced - components: - - pos: 36.5,-11.5 - parent: 127 - type: Transform -- uid: 1103 - type: WallReinforced - components: - - pos: 35.5,-11.5 - parent: 127 - type: Transform -- uid: 1104 - type: WallReinforced - components: - - pos: 34.5,-11.5 - parent: 127 - type: Transform -- uid: 1105 - type: WallReinforced - components: - - pos: 33.5,-11.5 - parent: 127 - type: Transform -- uid: 1106 - type: WallReinforced - components: - - pos: 33.5,-10.5 - parent: 127 - type: Transform -- uid: 1107 - type: WallReinforced - components: - - pos: 33.5,-9.5 - parent: 127 - type: Transform -- uid: 1108 - type: WallReinforced - components: - - pos: 33.5,-8.5 - parent: 127 - type: Transform -- uid: 1109 - type: Grille - components: - - pos: 43.5,-10.5 - parent: 127 - type: Transform -- uid: 1110 - type: CaptainIDCard - components: - - pos: 32.503216,-0.40828627 - parent: 127 - type: Transform -- uid: 1111 - type: LockerCaptainFilled - components: - - pos: 35.5,-1.5 - parent: 127 - type: Transform - - containers: - entity_storage: !type:Container - ents: - - 7729 - type: ContainerContainer -- uid: 1112 - type: WallReinforced - components: - - pos: 37.5,-10.5 - parent: 127 - type: Transform -- uid: 1113 - type: WallReinforced - components: - - pos: 36.5,-10.5 - parent: 127 - type: Transform -- uid: 1114 - type: ReinforcedWindow - components: - - pos: 17.5,5.5 - parent: 127 - type: Transform -- uid: 1115 - type: WallReinforced - components: - - pos: 33.5,-2.5 - parent: 127 - type: Transform -- uid: 1116 - type: WallReinforced - components: - - pos: 35.5,-10.5 - parent: 127 - type: Transform -- uid: 1117 - type: WallReinforced - components: - - pos: 24.5,-10.5 - parent: 127 - type: Transform -- uid: 1118 - type: SpawnPointCaptain - components: - - pos: 33.5,-1.5 - parent: 127 - type: Transform -- uid: 1119 - type: TableWood - components: - - pos: 32.5,-0.5 - parent: 127 - type: Transform -- uid: 1120 - type: TableWood - components: - - pos: 35.5,-0.5 - parent: 127 - type: Transform -- uid: 1121 - type: SpawnMobFoxRenault - components: - - pos: 34.5,-0.5 - parent: 127 - type: Transform -- uid: 1122 - type: DogBed - components: - - pos: 34.5,-0.5 - parent: 127 - type: Transform -- uid: 1123 - type: ComputerComms - components: - - pos: 33.5,-0.5 - parent: 127 - type: Transform -- uid: 1124 - type: ComputerCrewMonitoring - components: - - pos: 42.5,-6.5 - parent: 127 - type: Transform -- uid: 1125 - type: BedsheetCaptain - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-1.5 - parent: 127 - type: Transform -- uid: 1126 - type: Bed - components: - - pos: 32.5,-1.5 - parent: 127 - type: Transform -- uid: 1127 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-10.5 - parent: 127 - type: Transform -- uid: 1128 - type: TableWood - components: - - pos: 25.5,-7.5 - parent: 127 - type: Transform -- uid: 1129 - type: CableMV - components: - - pos: 41.5,-3.5 - parent: 127 - type: Transform -- uid: 1130 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-10.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1131 - type: CableMV - components: - - pos: 40.5,-3.5 - parent: 127 - type: Transform -- uid: 1132 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-4.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1133 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-3.5 - parent: 127 - type: Transform -- uid: 1134 - type: TableGlass - components: - - pos: 32.5,-3.5 - parent: 127 - type: Transform -- uid: 1135 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-8.5 - parent: 127 - type: Transform -- uid: 1136 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-7.5 - parent: 127 - type: Transform -- uid: 1137 - type: FireAxeCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-4.5 - parent: 127 - type: Transform -- uid: 1138 - type: Grille - components: - - pos: 17.5,5.5 - parent: 127 - type: Transform -- uid: 1139 - type: Grille - components: - - pos: 64.5,-29.5 - parent: 127 - type: Transform -- uid: 1140 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-17.5 - parent: 127 - type: Transform -- uid: 1141 - type: TableWood - components: - - pos: 38.5,-0.5 - parent: 127 - type: Transform -- uid: 1142 - type: TableWood - components: - - pos: 39.5,-0.5 - parent: 127 - type: Transform -- uid: 1143 - type: TableWood - components: - - pos: 40.5,-0.5 - parent: 127 - type: Transform -- uid: 1144 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-0.5 - parent: 127 - type: Transform -- uid: 1145 - type: ChairOfficeDark - components: - - pos: 38.5,0.5 - parent: 127 - type: Transform -- uid: 1146 - type: ChairOfficeDark - components: - - pos: 39.5,0.5 - parent: 127 - type: Transform -- uid: 1147 - type: ChairOfficeDark - components: - - pos: 40.5,0.5 - parent: 127 - type: Transform -- uid: 1148 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 39.5,-1.5 - parent: 127 - type: Transform -- uid: 1149 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 40.5,-1.5 - parent: 127 - type: Transform -- uid: 1150 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 38.5,-1.5 - parent: 127 - type: Transform -- uid: 1151 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 37.5,0.5 - parent: 127 - type: Transform -- uid: 1152 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,-0.5 - parent: 127 - type: Transform -- uid: 1153 - type: SurveillanceCameraRouterCommand - components: - - pos: 37.5,-9.5 - parent: 127 - type: Transform -- uid: 1154 - type: Table - components: - - pos: 35.5,-7.5 - parent: 127 - type: Transform -- uid: 1155 - type: Table - components: - - pos: 35.5,-8.5 - parent: 127 - type: Transform -- uid: 1156 - type: Table - components: - - pos: 35.5,-9.5 - parent: 127 - type: Transform -- uid: 1157 - type: CableHV - components: - - pos: 43.5,-6.5 - parent: 127 - type: Transform -- uid: 1158 - type: Table - components: - - pos: 37.5,-7.5 - parent: 127 - type: Transform -- uid: 1159 - type: NuclearBomb - components: - - pos: 36.5,-9.5 - parent: 127 - type: Transform -- uid: 1160 - type: SignNanotrasen1 - components: - - pos: 37.5,1.5 - parent: 127 - type: Transform -- uid: 1161 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 30.5,-0.5 - parent: 127 - type: Transform -- uid: 1162 - type: PottedPlantRandom - components: - - pos: 35.5,-3.5 - parent: 127 - type: Transform -- uid: 1163 - type: PottedPlantRandom - components: - - pos: 39.5,-6.5 - parent: 127 - type: Transform -- uid: 1164 - type: ReinforcedWindow - components: - - pos: 19.5,5.5 - parent: 127 - type: Transform -- uid: 1165 - type: IngotGold - components: - - pos: 35.50688,-7.82113 - parent: 127 - type: Transform -- uid: 1166 - type: IngotGold - components: - - pos: 35.50688,-8.03988 - parent: 127 - type: Transform -- uid: 1167 - type: SpaceCash1000 - components: - - pos: 35.56938,-8.571131 - parent: 127 - type: Transform -- uid: 1168 - type: SpaceCash1000 - components: - - pos: 35.585007,-8.868006 - parent: 127 - type: Transform -- uid: 1169 - type: IngotSilver - components: - - pos: 35.50688,-9.368006 - parent: 127 - type: Transform -- uid: 1170 - type: ClothingNeckBling - components: - - pos: 37.50688,-7.336755 - parent: 127 - type: Transform -- uid: 1171 - type: Grille - components: - - pos: 14.5,5.5 - parent: 127 - type: Transform -- uid: 1172 - type: ChessBoard - components: - - rot: -1.5707963267948966 rad - pos: 32.50406,-3.400381 - parent: 127 - type: Transform -- uid: 1173 - type: WallReinforced - components: - - pos: 28.5,-10.5 - parent: 127 - type: Transform -- uid: 1174 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 27.5,-2.5 - parent: 127 - type: Transform -- uid: 1175 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 27.5,-1.5 - parent: 127 - type: Transform -- uid: 1176 - type: PlasticFlapsAirtightClear - components: - - pos: 13.5,5.5 - parent: 127 - type: Transform -- uid: 1177 - type: Grille - components: - - pos: 12.5,5.5 - parent: 127 - type: Transform -- uid: 1178 - type: Table - components: - - pos: 16.5,5.5 - parent: 127 - type: Transform -- uid: 1179 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-6.5 - parent: 127 - type: Transform -- uid: 1180 - type: Table - components: - - pos: 15.5,5.5 - parent: 127 - type: Transform -- uid: 1181 - type: Grille - components: - - pos: 19.5,5.5 - parent: 127 - type: Transform -- uid: 1182 - type: PlasticFlapsAirtightClear - components: - - pos: 14.5,15.5 - parent: 127 - type: Transform -- uid: 1183 - type: PlasticFlapsAirtightClear - components: - - pos: 16.5,22.5 - parent: 127 - type: Transform -- uid: 1184 - type: PlasticFlapsAirtightClear - components: - - pos: 16.5,25.5 - parent: 127 - type: Transform -- uid: 1185 - type: PlasticFlapsAirtightClear - components: - - pos: 20.5,25.5 - parent: 127 - type: Transform -- uid: 1186 - type: PlasticFlapsAirtightClear - components: - - pos: 20.5,22.5 - parent: 127 - type: Transform -- uid: 1187 - type: BlastDoor - components: - - pos: 16.5,22.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1196 - type: SignalReceiver -- uid: 1188 - type: BlastDoor - components: - - pos: 16.5,25.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1196 - type: SignalReceiver -- uid: 1189 - type: BlastDoor - components: - - pos: 20.5,25.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1196 - type: SignalReceiver -- uid: 1190 - type: BlastDoor - components: - - pos: 20.5,22.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1196 - type: SignalReceiver -- uid: 1191 - type: AirlockExternalGlassLocked - components: - - pos: 17.5,22.5 - parent: 127 - type: Transform -- uid: 1192 - type: SignCargoDock - components: - - rot: 3.141592653589793 rad - pos: 18.5,25.5 - parent: 127 - type: Transform -- uid: 1193 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 3.141592653589793 rad - pos: 19.5,25.5 - parent: 127 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 1194 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 3.141592653589793 rad - pos: 17.5,25.5 - parent: 127 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 1195 - type: AirlockExternalGlassLocked - components: - - pos: 19.5,22.5 - parent: 127 - type: Transform -- uid: 1196 - type: SignalButton - components: - - pos: 18.5,22.5 - parent: 127 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1187 - - port: Toggle - uid: 1190 - - port: Toggle - uid: 1189 - - port: Toggle - uid: 1188 - type: SignalTransmitter -- uid: 1197 - type: AirlockMaintSalvageLocked - components: - - pos: 8.5,17.5 - parent: 127 - type: Transform -- uid: 1198 - type: AirlockMaintLocked - components: - - pos: 13.5,13.5 - parent: 127 - type: Transform -- uid: 1199 - type: AirlockMaintLocked - components: - - pos: 17.5,13.5 - parent: 127 - type: Transform -- uid: 1200 - type: AirlockMaintLocked - components: - - pos: 9.5,4.5 - parent: 127 - type: Transform -- uid: 1201 - type: AirlockMaintLocked - components: - - pos: 22.5,4.5 - parent: 127 - type: Transform -- uid: 1202 - type: AirlockExternalGlassLocked - components: - - pos: 11.5,22.5 - parent: 127 - type: Transform -- uid: 1203 - type: AirlockExternalGlassLocked - components: - - pos: 9.5,24.5 - parent: 127 - type: Transform -- uid: 1204 - type: Rack - components: - - pos: 9.5,21.5 - parent: 127 - type: Transform -- uid: 1205 - type: LockerSalvageSpecialistFilled - components: - - pos: 9.5,20.5 - parent: 127 - type: Transform -- uid: 1206 - type: LockerSalvageSpecialistFilled - components: - - pos: 9.5,19.5 - parent: 127 - type: Transform -- uid: 1207 - type: SalvageMagnet - components: - - rot: 3.141592653589793 rad - pos: 6.5,23.5 - parent: 127 - type: Transform -- uid: 1208 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 5.5,23.5 - parent: 127 - type: Transform -- uid: 1209 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 5.5,24.5 - parent: 127 - type: Transform -- uid: 1210 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,23.5 - parent: 127 - type: Transform -- uid: 1211 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,24.5 - parent: 127 - type: Transform -- uid: 1212 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 7.5,23.5 - parent: 127 - type: Transform -- uid: 1213 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 7.5,24.5 - parent: 127 - type: Transform -- uid: 1214 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 8.5,23.5 - parent: 127 - type: Transform -- uid: 1215 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 8.5,24.5 - parent: 127 - type: Transform -- uid: 1216 - type: Grille - components: - - pos: -11.5,26.5 - parent: 127 - type: Transform -- uid: 1217 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -28.5,0.5 - parent: 127 - type: Transform -- uid: 1218 - type: NitrogenTankFilled - components: - - pos: -6.4009476,21.554256 - parent: 127 - type: Transform -- uid: 1219 - type: MaintenanceFluffSpawner - components: - - pos: 34.5,21.5 - parent: 127 - type: Transform -- uid: 1220 - type: ToySpawner - components: - - pos: 10.5,8.5 - parent: 127 - type: Transform -- uid: 1221 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,8.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1222 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,1.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1223 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1224 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-2.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1225 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,10.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1226 - type: Poweredlight - components: - - pos: -0.5,-1.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1227 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1228 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1229 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-6.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1230 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-7.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1231 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1232 - type: Poweredlight - components: - - pos: 10.5,3.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1233 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1234 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1235 - type: Poweredlight - components: - - pos: -3.5,8.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1236 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 3.5,9.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1237 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,10.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1238 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,12.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1239 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,15.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1240 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,16.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1241 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,19.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1242 - type: Poweredlight - components: - - pos: -3.5,24.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1243 - type: OreProcessor - components: - - pos: 9.5,18.5 - parent: 127 - type: Transform -- uid: 1244 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,16.5 - parent: 127 - type: Transform -- uid: 1245 - type: VendingMachineSalvage - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,16.5 - parent: 127 - type: Transform -- uid: 1246 - type: ComputerRadar - components: - - pos: 10.5,21.5 - parent: 127 - type: Transform -- uid: 1247 - type: WallReinforced - components: - - pos: 21.5,15.5 - parent: 127 - type: Transform -- uid: 1248 - type: WallReinforced - components: - - pos: 19.5,15.5 - parent: 127 - type: Transform -- uid: 1249 - type: WallReinforced - components: - - pos: 20.5,15.5 - parent: 127 - type: Transform -- uid: 1250 - type: ReinforcedWindow - components: - - pos: 13.5,20.5 - parent: 127 - type: Transform -- uid: 1251 - type: WallReinforced - components: - - pos: 22.5,15.5 - parent: 127 - type: Transform -- uid: 1252 - type: ReinforcedWindow - components: - - pos: 13.5,21.5 - parent: 127 - type: Transform -- uid: 1253 - type: SpawnPointSalvageSpecialist - components: - - pos: 11.5,19.5 - parent: 127 - type: Transform -- uid: 1254 - type: SpawnPointSalvageSpecialist - components: - - pos: 11.5,18.5 - parent: 127 - type: Transform -- uid: 1255 - type: Table - components: - - pos: 11.5,16.5 - parent: 127 - type: Transform -- uid: 1256 - type: PottedPlantRandomPlastic - components: - - pos: -3.5,24.5 - parent: 127 - type: Transform -- uid: 1257 - type: DisposalUnit - components: - - pos: -2.5,21.5 - parent: 127 - type: Transform -- uid: 1258 - type: CarpetOrange - components: - - pos: 34.5,2.5 - parent: 127 - type: Transform -- uid: 1259 - type: PottedPlantRandomPlastic - components: - - pos: -1.5,24.5 - parent: 127 - type: Transform -- uid: 1260 - type: Grille - components: - - pos: 19.5,16.5 - parent: 127 - type: Transform -- uid: 1261 - type: Catwalk - components: - - pos: 32.5,10.5 - parent: 127 - type: Transform -- uid: 1262 - type: Catwalk - components: - - pos: 32.5,9.5 - parent: 127 - type: Transform -- uid: 1263 - type: Catwalk - components: - - pos: 32.5,8.5 - parent: 127 - type: Transform -- uid: 1264 - type: Catwalk - components: - - pos: 32.5,7.5 - parent: 127 - type: Transform -- uid: 1265 - type: Catwalk - components: - - pos: 33.5,7.5 - parent: 127 - type: Transform -- uid: 1266 - type: Catwalk - components: - - pos: 34.5,7.5 - parent: 127 - type: Transform -- uid: 1267 - type: Catwalk - components: - - pos: 34.5,8.5 - parent: 127 - type: Transform -- uid: 1268 - type: Catwalk - components: - - pos: 34.5,9.5 - parent: 127 - type: Transform -- uid: 1269 - type: Catwalk - components: - - pos: 34.5,10.5 - parent: 127 - type: Transform -- uid: 1270 - type: Catwalk - components: - - pos: 33.5,10.5 - parent: 127 - type: Transform -- uid: 1271 - type: SMESBasic - components: - - pos: 33.5,8.5 - parent: 127 - type: Transform -- uid: 1272 - type: SMESBasic - components: - - pos: 33.5,9.5 - parent: 127 - type: Transform -- uid: 1273 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 34.5,9.5 - parent: 127 - type: Transform -- uid: 1274 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 34.5,8.5 - parent: 127 - type: Transform -- uid: 1275 - type: CableHV - components: - - pos: 34.5,8.5 - parent: 127 - type: Transform -- uid: 1276 - type: CableHV - components: - - pos: 34.5,9.5 - parent: 127 - type: Transform -- uid: 1277 - type: CableHV - components: - - pos: 34.5,10.5 - parent: 127 - type: Transform -- uid: 1278 - type: CableHV - components: - - pos: 34.5,11.5 - parent: 127 - type: Transform -- uid: 1279 - type: CableHV - components: - - pos: 34.5,12.5 - parent: 127 - type: Transform -- uid: 1280 - type: CableHV - components: - - pos: 35.5,13.5 - parent: 127 - type: Transform -- uid: 1281 - type: CableHV - components: - - pos: 35.5,14.5 - parent: 127 - type: Transform -- uid: 1282 - type: CableHV - components: - - pos: 35.5,15.5 - parent: 127 - type: Transform -- uid: 1283 - type: CableHV - components: - - pos: 35.5,16.5 - parent: 127 - type: Transform -- uid: 1284 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 35.5,13.5 - parent: 127 - type: Transform -- uid: 1285 - type: CrateEngineeringAMEJar - components: - - pos: 37.5,13.5 - parent: 127 - type: Transform -- uid: 1286 - type: CrateEngineeringAMEShielding - components: - - pos: 37.5,14.5 - parent: 127 - type: Transform - - containers: - entity_storage: !type:Container - ents: - - 1289 - - 1288 - - 1287 - paper_label: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1287 - type: AMEPart - components: - - flags: InContainer - type: MetaData - - parent: 1286 - type: Transform - - canCollide: False - type: Physics -- uid: 1288 - type: AMEPart - components: - - flags: InContainer - type: MetaData - - parent: 1286 - type: Transform - - canCollide: False - type: Physics -- uid: 1289 - type: AMEPart - components: - - flags: InContainer - type: MetaData - - parent: 1286 - type: Transform - - canCollide: False - type: Physics -- uid: 1290 - type: AMEController - components: - - pos: 37.5,12.5 - parent: 127 - type: Transform -- uid: 1291 - type: ReinforcedWindow - components: - - pos: 40.5,21.5 - parent: 127 - type: Transform -- uid: 1292 - type: ReinforcedWindow - components: - - pos: 41.5,21.5 - parent: 127 - type: Transform -- uid: 1293 - type: ReinforcedWindow - components: - - pos: 42.5,21.5 - parent: 127 - type: Transform -- uid: 1294 - type: ReinforcedWindow - components: - - pos: 43.5,21.5 - parent: 127 - type: Transform -- uid: 1295 - type: Grille - components: - - pos: 38.5,21.5 - parent: 127 - type: Transform -- uid: 1296 - type: Grille - components: - - pos: 39.5,21.5 - parent: 127 - type: Transform -- uid: 1297 - type: Grille - components: - - pos: 40.5,21.5 - parent: 127 - type: Transform -- uid: 1298 - type: Grille - components: - - pos: 41.5,21.5 - parent: 127 - type: Transform -- uid: 1299 - type: Grille - components: - - pos: 42.5,21.5 - parent: 127 - type: Transform -- uid: 1300 - type: Grille - components: - - pos: 43.5,21.5 - parent: 127 - type: Transform -- uid: 1301 - type: ReinforcedWindow - components: - - pos: 43.5,20.5 - parent: 127 - type: Transform -- uid: 1302 - type: ReinforcedWindow - components: - - pos: 43.5,19.5 - parent: 127 - type: Transform -- uid: 1303 - type: ReinforcedWindow - components: - - pos: 43.5,18.5 - parent: 127 - type: Transform -- uid: 1304 - type: ReinforcedWindow - components: - - pos: 43.5,17.5 - parent: 127 - type: Transform -- uid: 1305 - type: ReinforcedWindow - components: - - pos: 43.5,16.5 - parent: 127 - type: Transform -- uid: 1306 - type: ReinforcedWindow - components: - - pos: 43.5,15.5 - parent: 127 - type: Transform -- uid: 1307 - type: ReinforcedWindow - components: - - pos: 43.5,14.5 - parent: 127 - type: Transform -- uid: 1308 - type: ReinforcedWindow - components: - - pos: 43.5,13.5 - parent: 127 - type: Transform -- uid: 1309 - type: ReinforcedWindow - components: - - pos: 43.5,12.5 - parent: 127 - type: Transform -- uid: 1310 - type: ReinforcedWindow - components: - - pos: 43.5,11.5 - parent: 127 - type: Transform -- uid: 1311 - type: ReinforcedWindow - components: - - pos: 43.5,10.5 - parent: 127 - type: Transform -- uid: 1312 - type: ReinforcedWindow - components: - - pos: 43.5,9.5 - parent: 127 - type: Transform -- uid: 1313 - type: ReinforcedWindow - components: - - pos: 43.5,8.5 - parent: 127 - type: Transform -- uid: 1314 - type: ReinforcedWindow - components: - - pos: 43.5,7.5 - parent: 127 - type: Transform -- uid: 1315 - type: ReinforcedWindow - components: - - pos: 43.5,6.5 - parent: 127 - type: Transform -- uid: 1316 - type: ReinforcedWindow - components: - - pos: 43.5,5.5 - parent: 127 - type: Transform -- uid: 1317 - type: ReinforcedWindow - components: - - pos: 43.5,4.5 - parent: 127 - type: Transform -- uid: 1318 - type: ReinforcedWindow - components: - - pos: 43.5,3.5 - parent: 127 - type: Transform -- uid: 1319 - type: ReinforcedWindow - components: - - pos: 43.5,2.5 - parent: 127 - type: Transform -- uid: 1320 - type: Grille - components: - - pos: 43.5,2.5 - parent: 127 - type: Transform -- uid: 1321 - type: Grille - components: - - pos: 43.5,3.5 - parent: 127 - type: Transform -- uid: 1322 - type: Grille - components: - - pos: 43.5,4.5 - parent: 127 - type: Transform -- uid: 1323 - type: Grille - components: - - pos: 43.5,5.5 - parent: 127 - type: Transform -- uid: 1324 - type: Grille - components: - - pos: 43.5,6.5 - parent: 127 - type: Transform -- uid: 1325 - type: Grille - components: - - pos: 43.5,7.5 - parent: 127 - type: Transform -- uid: 1326 - type: Grille - components: - - pos: 43.5,8.5 - parent: 127 - type: Transform -- uid: 1327 - type: Grille - components: - - pos: 43.5,9.5 - parent: 127 - type: Transform -- uid: 1328 - type: Grille - components: - - pos: 43.5,10.5 - parent: 127 - type: Transform -- uid: 1329 - type: Grille - components: - - pos: 43.5,11.5 - parent: 127 - type: Transform -- uid: 1330 - type: Grille - components: - - pos: 43.5,12.5 - parent: 127 - type: Transform -- uid: 1331 - type: Grille - components: - - pos: 43.5,13.5 - parent: 127 - type: Transform -- uid: 1332 - type: Grille - components: - - pos: 43.5,14.5 - parent: 127 - type: Transform -- uid: 1333 - type: Grille - components: - - pos: 43.5,15.5 - parent: 127 - type: Transform -- uid: 1334 - type: Grille - components: - - pos: 43.5,16.5 - parent: 127 - type: Transform -- uid: 1335 - type: Grille - components: - - pos: 43.5,17.5 - parent: 127 - type: Transform -- uid: 1336 - type: Grille - components: - - pos: 43.5,18.5 - parent: 127 - type: Transform -- uid: 1337 - type: Table - components: - - pos: 24.5,-5.5 - parent: 127 - type: Transform -- uid: 1338 - type: WallReinforced - components: - - pos: 40.5,-13.5 - parent: 127 - type: Transform -- uid: 1339 - type: WallReinforced - components: - - pos: 40.5,-14.5 - parent: 127 - type: Transform -- uid: 1340 - type: WallReinforced - components: - - pos: 41.5,-14.5 - parent: 127 - type: Transform -- uid: 1341 - type: WallReinforced - components: - - pos: 42.5,-14.5 - parent: 127 - type: Transform -- uid: 1342 - type: GasPipeStraight - components: - - pos: 21.5,-17.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 1343 - type: WallReinforced - components: - - pos: 6.5,-36.5 - parent: 127 - type: Transform -- uid: 1344 - type: ReinforcedWindow - components: - - pos: 45.5,-11.5 - parent: 127 - type: Transform -- uid: 1345 - type: WallReinforced - components: - - pos: 5.5,-36.5 - parent: 127 - type: Transform -- uid: 1346 - type: WallReinforced - components: - - pos: 4.5,-36.5 - parent: 127 - type: Transform -- uid: 1347 - type: WallReinforced - components: - - pos: 46.5,-11.5 - parent: 127 - type: Transform -- uid: 1348 - type: WallReinforced - components: - - pos: 44.5,-11.5 - parent: 127 - type: Transform -- uid: 1349 - type: GravityGenerator - components: - - pos: 2.5,-36.5 - parent: 127 - type: Transform - - charge: 100 - type: GravityGenerator - - radius: 175.75 - type: PointLight -- uid: 1350 - type: ReinforcedWindow - components: - - pos: 52.5,-10.5 - parent: 127 - type: Transform -- uid: 1351 - type: Grille - components: - - pos: 52.5,-8.5 - parent: 127 - type: Transform -- uid: 1352 - type: WallReinforced - components: - - pos: 51.5,-8.5 - parent: 127 - type: Transform -- uid: 1353 - type: WallReinforced - components: - - pos: 51.5,-10.5 - parent: 127 - type: Transform -- uid: 1354 - type: WallReinforced - components: - - pos: 53.5,-10.5 - parent: 127 - type: Transform -- uid: 1355 - type: WallReinforced - components: - - pos: 53.5,-8.5 - parent: 127 - type: Transform -- uid: 1356 - type: WallReinforced - components: - - pos: 54.5,-8.5 - parent: 127 - type: Transform -- uid: 1357 - type: WallReinforced - components: - - pos: 54.5,-10.5 - parent: 127 - type: Transform -- uid: 1358 - type: Grille - components: - - pos: 52.5,-10.5 - parent: 127 - type: Transform -- uid: 1359 - type: Grille - components: - - pos: 56.5,-11.5 - parent: 127 - type: Transform -- uid: 1360 - type: WallReinforced - components: - - pos: 58.5,-11.5 - parent: 127 - type: Transform -- uid: 1361 - type: WallReinforced - components: - - pos: 53.5,-6.5 - parent: 127 - type: Transform -- uid: 1362 - type: WallReinforced - components: - - pos: 53.5,-0.5 - parent: 127 - type: Transform -- uid: 1363 - type: WallReinforced - components: - - pos: 53.5,-0.5 - parent: 127 - type: Transform -- uid: 1364 - type: WallReinforced - components: - - pos: 52.5,-1.5 - parent: 127 - type: Transform -- uid: 1365 - type: WallReinforced - components: - - pos: 52.5,-4.5 - parent: 127 - type: Transform -- uid: 1366 - type: WallReinforced - components: - - pos: 60.5,-0.5 - parent: 127 - type: Transform -- uid: 1367 - type: WallReinforced - components: - - pos: 52.5,-5.5 - parent: 127 - type: Transform -- uid: 1368 - type: WallReinforced - components: - - pos: 55.5,-11.5 - parent: 127 - type: Transform -- uid: 1369 - type: WallReinforced - components: - - pos: 54.5,-11.5 - parent: 127 - type: Transform -- uid: 1370 - type: ReinforcedWindow - components: - - pos: 56.5,-11.5 - parent: 127 - type: Transform -- uid: 1371 - type: WallReinforced - components: - - pos: 59.5,-11.5 - parent: 127 - type: Transform -- uid: 1372 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 1373 - type: WallReinforced - components: - - pos: 58.5,-7.5 - parent: 127 - type: Transform -- uid: 1374 - type: WallReinforced - components: - - pos: 59.5,-8.5 - parent: 127 - type: Transform -- uid: 1375 - type: WallReinforced - components: - - pos: 52.5,-6.5 - parent: 127 - type: Transform -- uid: 1376 - type: WallReinforced - components: - - pos: 54.5,-7.5 - parent: 127 - type: Transform -- uid: 1377 - type: WallReinforced - components: - - pos: 55.5,-7.5 - parent: 127 - type: Transform -- uid: 1378 - type: WallReinforced - components: - - pos: 57.5,-11.5 - parent: 127 - type: Transform -- uid: 1379 - type: WallReinforced - components: - - pos: 57.5,-7.5 - parent: 127 - type: Transform -- uid: 1380 - type: WallReinforced - components: - - pos: 52.5,-2.5 - parent: 127 - type: Transform -- uid: 1381 - type: WallReinforced - components: - - pos: 52.5,-3.5 - parent: 127 - type: Transform -- uid: 1382 - type: WallReinforced - components: - - pos: 59.5,-10.5 - parent: 127 - type: Transform -- uid: 1383 - type: WallReinforced - components: - - pos: 60.5,-10.5 - parent: 127 - type: Transform -- uid: 1384 - type: WallReinforced - components: - - pos: 61.5,-10.5 - parent: 127 - type: Transform -- uid: 1385 - type: WallReinforced - components: - - pos: 62.5,-10.5 - parent: 127 - type: Transform -- uid: 1386 - type: WallReinforced - components: - - pos: 63.5,-10.5 - parent: 127 - type: Transform -- uid: 1387 - type: WallReinforced - components: - - pos: 63.5,-9.5 - parent: 127 - type: Transform -- uid: 1388 - type: WallReinforced - components: - - pos: 63.5,-8.5 - parent: 127 - type: Transform -- uid: 1389 - type: WallReinforced - components: - - pos: 63.5,-7.5 - parent: 127 - type: Transform -- uid: 1390 - type: WallReinforced - components: - - pos: 59.5,-7.5 - parent: 127 - type: Transform -- uid: 1391 - type: WallReinforced - components: - - pos: 59.5,-6.5 - parent: 127 - type: Transform -- uid: 1392 - type: WallReinforced - components: - - pos: 60.5,-6.5 - parent: 127 - type: Transform -- uid: 1393 - type: WallReinforced - components: - - pos: 61.5,-6.5 - parent: 127 - type: Transform -- uid: 1394 - type: WallReinforced - components: - - pos: 62.5,-6.5 - parent: 127 - type: Transform -- uid: 1395 - type: WallReinforced - components: - - pos: 63.5,-6.5 - parent: 127 - type: Transform -- uid: 1396 - type: WallReinforced - components: - - pos: 56.5,0.5 - parent: 127 - type: Transform -- uid: 1397 - type: WallReinforced - components: - - pos: 57.5,0.5 - parent: 127 - type: Transform -- uid: 1398 - type: WallReinforced - components: - - pos: 53.5,0.5 - parent: 127 - type: Transform -- uid: 1399 - type: WallReinforced - components: - - pos: 55.5,0.5 - parent: 127 - type: Transform -- uid: 1400 - type: WallReinforced - components: - - pos: 54.5,0.5 - parent: 127 - type: Transform -- uid: 1401 - type: WallReinforced - components: - - pos: 59.5,-0.5 - parent: 127 - type: Transform -- uid: 1402 - type: WallReinforced - components: - - pos: 52.5,-0.5 - parent: 127 - type: Transform -- uid: 1403 - type: WallReinforced - components: - - pos: 60.5,-1.5 - parent: 127 - type: Transform -- uid: 1404 - type: WallReinforced - components: - - pos: 60.5,-2.5 - parent: 127 - type: Transform -- uid: 1405 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-5.5 - parent: 127 - type: Transform -- uid: 1406 - type: WallReinforced - components: - - pos: 60.5,-4.5 - parent: 127 - type: Transform -- uid: 1407 - type: WallReinforced - components: - - pos: 60.5,-5.5 - parent: 127 - type: Transform -- uid: 1408 - type: WallReinforced - components: - - pos: 55.5,-4.5 - parent: 127 - type: Transform -- uid: 1409 - type: WallReinforced - components: - - pos: 55.5,-2.5 - parent: 127 - type: Transform -- uid: 1410 - type: WallReinforced - components: - - pos: 57.5,-2.5 - parent: 127 - type: Transform -- uid: 1411 - type: WallReinforced - components: - - pos: 57.5,-4.5 - parent: 127 - type: Transform -- uid: 1412 - type: ReinforcedWindow - components: - - pos: 56.5,-4.5 - parent: 127 - type: Transform -- uid: 1413 - type: ReinforcedWindow - components: - - pos: 56.5,-2.5 - parent: 127 - type: Transform -- uid: 1414 - type: Grille - components: - - pos: 56.5,-4.5 - parent: 127 - type: Transform -- uid: 1415 - type: Grille - components: - - pos: 56.5,-2.5 - parent: 127 - type: Transform -- uid: 1416 - type: WallReinforced - components: - - pos: 58.5,0.5 - parent: 127 - type: Transform -- uid: 1417 - type: WallReinforced - components: - - pos: 59.5,0.5 - parent: 127 - type: Transform -- uid: 1418 - type: WallReinforced - components: - - pos: 53.5,-7.5 - parent: 127 - type: Transform -- uid: 1419 - type: AirlockExternalGlass - components: - - pos: 62.5,-36.5 - parent: 127 - type: Transform -- uid: 1420 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-25.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1421 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-31.5 - parent: 127 - type: Transform -- uid: 1422 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-29.5 - parent: 127 - type: Transform -- uid: 1423 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-30.5 - parent: 127 - type: Transform -- uid: 1424 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-31.5 - parent: 127 - type: Transform -- uid: 1425 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-32.5 - parent: 127 - type: Transform -- uid: 1426 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-33.5 - parent: 127 - type: Transform -- uid: 1427 - type: Grille - components: - - pos: 61.5,-13.5 - parent: 127 - type: Transform -- uid: 1428 - type: Grille - components: - - pos: 62.5,-13.5 - parent: 127 - type: Transform -- uid: 1429 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-13.5 - parent: 127 - type: Transform -- uid: 1430 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-13.5 - parent: 127 - type: Transform -- uid: 1431 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-13.5 - parent: 127 - type: Transform -- uid: 1432 - type: Grille - components: - - pos: 65.5,-11.5 - parent: 127 - type: Transform -- uid: 1433 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 65.5,-10.5 - parent: 127 - type: Transform -- uid: 1434 - type: Grille - components: - - pos: 65.5,-9.5 - parent: 127 - type: Transform -- uid: 1435 - type: Grille - components: - - pos: 65.5,-8.5 - parent: 127 - type: Transform -- uid: 1436 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-4.5 - parent: 127 - type: Transform -- uid: 1437 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-3.5 - parent: 127 - type: Transform -- uid: 1438 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-8.5 - parent: 127 - type: Transform -- uid: 1439 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-7.5 - parent: 127 - type: Transform -- uid: 1440 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-0.5 - parent: 127 - type: Transform -- uid: 1441 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-0.5 - parent: 127 - type: Transform -- uid: 1442 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-0.5 - parent: 127 - type: Transform -- uid: 1443 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-0.5 - parent: 127 - type: Transform -- uid: 1444 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-1.5 - parent: 127 - type: Transform -- uid: 1445 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-2.5 - parent: 127 - type: Transform -- uid: 1446 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-2.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1447 - type: Grille - components: - - pos: 59.5,2.5 - parent: 127 - type: Transform -- uid: 1448 - type: Grille - components: - - pos: 58.5,2.5 - parent: 127 - type: Transform -- uid: 1449 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 57.5,2.5 - parent: 127 - type: Transform -- uid: 1450 - type: Grille - components: - - pos: 56.5,2.5 - parent: 127 - type: Transform -- uid: 1451 - type: Grille - components: - - pos: 55.5,2.5 - parent: 127 - type: Transform -- uid: 1452 - type: Grille - components: - - pos: 54.5,2.5 - parent: 127 - type: Transform -- uid: 1453 - type: Grille - components: - - pos: 43.5,19.5 - parent: 127 - type: Transform -- uid: 1454 - type: ToyAi - components: - - pos: 56.490807,-3.3542798 - parent: 127 - type: Transform -- uid: 1455 - type: Catwalk - components: - - pos: 44.5,1.5 - parent: 127 - type: Transform -- uid: 1456 - type: Catwalk - components: - - pos: 44.5,0.5 - parent: 127 - type: Transform -- uid: 1457 - type: Catwalk - components: - - pos: 45.5,0.5 - parent: 127 - type: Transform -- uid: 1458 - type: Catwalk - components: - - pos: 45.5,-0.5 - parent: 127 - type: Transform -- uid: 1459 - type: Catwalk - components: - - pos: 46.5,-0.5 - parent: 127 - type: Transform -- uid: 1460 - type: AirlockCommandGlassLocked - components: - - pos: 41.5,-11.5 - parent: 127 - type: Transform -- uid: 1461 - type: HighSecCommandLocked - components: - - pos: 56.5,-7.5 - parent: 127 - type: Transform -- uid: 1462 - type: AirlockCommandGlassLocked - components: - - pos: 54.5,-9.5 - parent: 127 - type: Transform -- uid: 1463 - type: ReinforcedWindow - components: - - pos: 2.5,-38.5 - parent: 127 - type: Transform -- uid: 1464 - type: AirlockExternalGlassLocked - components: - - pos: 51.5,-9.5 - parent: 127 - type: Transform -- uid: 1465 - type: AirlockExternalGlassLocked - components: - - pos: 53.5,-9.5 - parent: 127 - type: Transform -- uid: 1466 - type: Catwalk - components: - - pos: 47.5,-4.5 - parent: 127 - type: Transform -- uid: 1467 - type: Catwalk - components: - - pos: 47.5,-5.5 - parent: 127 - type: Transform -- uid: 1468 - type: Catwalk - components: - - pos: 47.5,-6.5 - parent: 127 - type: Transform -- uid: 1469 - type: AirlockMaint - components: - - pos: -8.5,-8.5 - parent: 127 - type: Transform -- uid: 1470 - type: Catwalk - components: - - pos: 47.5,-8.5 - parent: 127 - type: Transform -- uid: 1471 - type: Catwalk - components: - - pos: 47.5,-9.5 - parent: 127 - type: Transform -- uid: 1472 - type: Catwalk - components: - - pos: 47.5,-10.5 - parent: 127 - type: Transform -- uid: 1473 - type: Catwalk - components: - - pos: 47.5,-11.5 - parent: 127 - type: Transform -- uid: 1474 - type: Catwalk - components: - - pos: 47.5,-12.5 - parent: 127 - type: Transform -- uid: 1475 - type: Catwalk - components: - - pos: 46.5,-2.5 - parent: 127 - type: Transform -- uid: 1476 - type: Catwalk - components: - - pos: 46.5,-2.5 - parent: 127 - type: Transform -- uid: 1477 - type: Catwalk - components: - - pos: 46.5,-3.5 - parent: 127 - type: Transform -- uid: 1478 - type: Catwalk - components: - - pos: 46.5,-4.5 - parent: 127 - type: Transform -- uid: 1479 - type: WallReinforced - components: - - pos: 0.5,-35.5 - parent: 127 - type: Transform -- uid: 1480 - type: WallReinforced - components: - - pos: 4.5,-32.5 - parent: 127 - type: Transform -- uid: 1481 - type: Catwalk - components: - - pos: 50.5,-9.5 - parent: 127 - type: Transform -- uid: 1482 - type: Catwalk - components: - - pos: 49.5,-9.5 - parent: 127 - type: Transform -- uid: 1483 - type: Catwalk - components: - - pos: 48.5,-9.5 - parent: 127 - type: Transform -- uid: 1484 - type: Catwalk - components: - - pos: 46.5,-1.5 - parent: 127 - type: Transform -- uid: 1485 - type: AirlockCommandLocked - components: - - pos: 59.5,-9.5 - parent: 127 - type: Transform -- uid: 1486 - type: SubstationBasic - components: - - pos: 41.5,-13.5 - parent: 127 - type: Transform -- uid: 1487 - type: LockerElectricalSuppliesFilled - components: - - pos: 42.5,-13.5 - parent: 127 - type: Transform -- uid: 1488 - type: LockerElectricalSuppliesFilled - components: - - pos: 62.5,-9.5 - parent: 127 - type: Transform -- uid: 1489 - type: LockerWeldingSuppliesFilled - components: - - pos: 62.5,-8.5 - parent: 127 - type: Transform -- uid: 1490 - type: SubstationBasic - components: - - pos: 60.5,-8.5 - parent: 127 - type: Transform -- uid: 1491 - type: GeneratorUranium - components: - - pos: 62.5,-7.5 - parent: 127 - type: Transform -- uid: 1492 - type: MachineFrame - components: - - pos: 61.5,-7.5 - parent: 127 - type: Transform -- uid: 1493 - type: CableHV - components: - - pos: 62.5,-7.5 - parent: 127 - type: Transform -- uid: 1494 - type: CableHV - components: - - pos: 61.5,-7.5 - parent: 127 - type: Transform -- uid: 1495 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-7.5 - parent: 127 - type: Transform -- uid: 1496 - type: CableHV - components: - - pos: 60.5,-8.5 - parent: 127 - type: Transform -- uid: 1497 - type: CableHV - components: - - pos: 60.5,-7.5 - parent: 127 - type: Transform -- uid: 1498 - type: SMESBasic - components: - - pos: 60.5,-7.5 - parent: 127 - type: Transform -- uid: 1499 - type: WeaponTurretSyndicateBroken - components: - - pos: 53.5,-5.5 - parent: 127 - type: Transform -- uid: 1500 - type: WeaponTurretSyndicateBroken - components: - - pos: 53.5,-1.5 - parent: 127 - type: Transform -- uid: 1501 - type: WeaponTurretSyndicateBroken - components: - - pos: 59.5,-1.5 - parent: 127 - type: Transform -- uid: 1502 - type: WeaponTurretSyndicateBroken - components: - - pos: 59.5,-5.5 - parent: 127 - type: Transform -- uid: 1503 - type: Table - components: - - pos: 53.5,-4.5 - parent: 127 - type: Transform -- uid: 1504 - type: Table - components: - - pos: 53.5,-3.5 - parent: 127 - type: Transform -- uid: 1505 - type: Table - components: - - pos: 53.5,-2.5 - parent: 127 - type: Transform -- uid: 1506 - type: Table - components: - - pos: 59.5,-4.5 - parent: 127 - type: Transform -- uid: 1507 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-5.5 - parent: 127 - type: Transform -- uid: 1508 - type: Table - components: - - pos: 59.5,-2.5 - parent: 127 - type: Transform -- uid: 1509 - type: Table - components: - - pos: 57.5,-0.5 - parent: 127 - type: Transform -- uid: 1510 - type: Table - components: - - pos: 56.5,-0.5 - parent: 127 - type: Transform -- uid: 1511 - type: Table - components: - - pos: 55.5,-0.5 - parent: 127 - type: Transform -- uid: 1512 - type: PottedPlantRandom - components: - - pos: 54.5,-6.5 - parent: 127 - type: Transform -- uid: 1513 - type: PottedPlantRandom - components: - - pos: 54.5,-0.5 - parent: 127 - type: Transform -- uid: 1514 - type: PottedPlantRandom - components: - - pos: 58.5,-0.5 - parent: 127 - type: Transform -- uid: 1515 - type: PottedPlantRandom - components: - - pos: 58.5,-6.5 - parent: 127 - type: Transform -- uid: 1516 - type: WindoorCommandLocked - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-3.5 - parent: 127 - type: Transform -- uid: 1517 - type: WindoorCommandLocked - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-3.5 - parent: 127 - type: Transform -- uid: 1518 - type: ReinforcedWindow - components: - - pos: 52.5,-8.5 - parent: 127 - type: Transform -- uid: 1519 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-8.5 - parent: 127 - type: Transform -- uid: 1520 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-8.5 - parent: 127 - type: Transform -- uid: 1521 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-10.5 - parent: 127 - type: Transform -- uid: 1522 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-10.5 - parent: 127 - type: Transform -- uid: 1523 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-10.5 - parent: 127 - type: Transform -- uid: 1524 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-10.5 - parent: 127 - type: Transform -- uid: 1525 - type: PottedPlantRandom - components: - - pos: 55.5,-8.5 - parent: 127 - type: Transform -- uid: 1526 - type: SheetSteel - components: - - pos: 58.568306,-8.456435 - parent: 127 - type: Transform -- uid: 1527 - type: SheetGlass - components: - - pos: 58.17768,-8.456435 - parent: 127 - type: Transform -- uid: 1528 - type: SheetPlasteel - components: - - pos: 57.912056,-8.47206 - parent: 127 - type: Transform -- uid: 1529 - type: PartRodMetal - components: - - pos: 57.568306,-8.393935 - parent: 127 - type: Transform -- uid: 1530 - type: CableApcStack - components: - - pos: 58.552887,-10.486544 - parent: 127 - type: Transform -- uid: 1531 - type: CableMVStack - components: - - pos: 58.302887,-10.361544 - parent: 127 - type: Transform -- uid: 1532 - type: CableHVStack - components: - - pos: 57.943512,-10.267794 - parent: 127 - type: Transform -- uid: 1533 - type: MaintenanceFluffSpawner - components: - - pos: 56.5,-10.5 - parent: 127 - type: Transform -- uid: 1534 - type: BoxFolderBlue - components: - - pos: 53.537262,-4.2956657 - parent: 127 - type: Transform -- uid: 1535 - type: BoxFolderRed - components: - - pos: 59.404793,-4.440946 - parent: 127 - type: Transform -- uid: 1536 - type: BoxFolderYellow - components: - - pos: 55.490387,-0.42315573 - parent: 127 - type: Transform -- uid: 1537 - type: Pen - components: - - pos: 53.615387,-3.9544058 - parent: 127 - type: Transform -- uid: 1538 - type: Pen - components: - - pos: 59.701668,-4.456571 - parent: 127 - type: Transform -- uid: 1539 - type: Pen - components: - - pos: 55.724762,-0.26690573 - parent: 127 - type: Transform -- uid: 1540 - type: Paper - components: - - pos: 53.396637,-3.5325308 - parent: 127 - type: Transform -- uid: 1541 - type: Paper - components: - - pos: 53.474762,-3.5325308 - parent: 127 - type: Transform -- uid: 1542 - type: Paper - components: - - pos: 53.568512,-3.5325308 - parent: 127 - type: Transform -- uid: 1543 - type: Paper - components: - - pos: 59.381012,-2.5012808 - parent: 127 - type: Transform -- uid: 1544 - type: Paper - components: - - pos: 59.506012,-2.5012808 - parent: 127 - type: Transform -- uid: 1545 - type: Paper - components: - - pos: 59.677887,-2.5012808 - parent: 127 - type: Transform -- uid: 1546 - type: Paper - components: - - pos: 56.209137,-0.43878073 - parent: 127 - type: Transform -- uid: 1547 - type: Paper - components: - - pos: 56.412262,-0.43878073 - parent: 127 - type: Transform -- uid: 1548 - type: Paper - components: - - pos: 56.568512,-0.45440573 - parent: 127 - type: Transform -- uid: 1549 - type: Lamp - components: - - pos: 53.459137,-2.5637808 - parent: 127 - type: Transform -- uid: 1550 - type: Lamp - components: - - rot: -1.5707963267948966 rad - pos: 57.396637,-0.14190573 - parent: 127 - type: Transform -- uid: 1551 - type: Lamp - components: - - rot: 3.141592653589793 rad - pos: 59.506012,-3.9075308 - parent: 127 - type: Transform -- uid: 1552 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-3.5 - parent: 127 - type: Transform -- uid: 1553 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 56.5,-1.5 - parent: 127 - type: Transform -- uid: 1554 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-6.5 - parent: 127 - type: Transform -- uid: 1555 - type: APCBasic - components: - - pos: 55.5,-7.5 - parent: 127 - type: Transform -- uid: 1556 - type: CableMV - components: - - pos: 60.5,-8.5 - parent: 127 - type: Transform -- uid: 1557 - type: CableMV - components: - - pos: 60.5,-9.5 - parent: 127 - type: Transform -- uid: 1558 - type: CableMV - components: - - pos: 59.5,-9.5 - parent: 127 - type: Transform -- uid: 1559 - type: CableMV - components: - - pos: 58.5,-9.5 - parent: 127 - type: Transform -- uid: 1560 - type: CableMV - components: - - pos: 56.5,-9.5 - parent: 127 - type: Transform -- uid: 1561 - type: CableMV - components: - - pos: 55.5,-9.5 - parent: 127 - type: Transform -- uid: 1562 - type: CableMV - components: - - pos: 55.5,-8.5 - parent: 127 - type: Transform -- uid: 1563 - type: CableMV - components: - - pos: 55.5,-7.5 - parent: 127 - type: Transform -- uid: 1564 - type: CableMV - components: - - pos: 57.5,-9.5 - parent: 127 - type: Transform -- uid: 1565 - type: CableApcExtension - components: - - pos: 55.5,-7.5 - parent: 127 - type: Transform -- uid: 1566 - type: CableApcExtension - components: - - pos: 55.5,-6.5 - parent: 127 - type: Transform -- uid: 1567 - type: CableApcExtension - components: - - pos: 55.5,-5.5 - parent: 127 - type: Transform -- uid: 1568 - type: CableApcExtension - components: - - pos: 54.5,-5.5 - parent: 127 - type: Transform -- uid: 1569 - type: CableApcExtension - components: - - pos: 54.5,-4.5 - parent: 127 - type: Transform -- uid: 1570 - type: CableApcExtension - components: - - pos: 54.5,-3.5 - parent: 127 - type: Transform -- uid: 1571 - type: CableApcExtension - components: - - pos: 54.5,-2.5 - parent: 127 - type: Transform -- uid: 1572 - type: CableApcExtension - components: - - pos: 54.5,-1.5 - parent: 127 - type: Transform -- uid: 1573 - type: CableApcExtension - components: - - pos: 55.5,-1.5 - parent: 127 - type: Transform -- uid: 1574 - type: CableApcExtension - components: - - pos: 55.5,-1.5 - parent: 127 - type: Transform -- uid: 1575 - type: CableApcExtension - components: - - pos: 57.5,-1.5 - parent: 127 - type: Transform -- uid: 1576 - type: CableApcExtension - components: - - pos: 58.5,-1.5 - parent: 127 - type: Transform -- uid: 1577 - type: CableApcExtension - components: - - pos: 56.5,-1.5 - parent: 127 - type: Transform -- uid: 1578 - type: CableApcExtension - components: - - pos: 58.5,-2.5 - parent: 127 - type: Transform -- uid: 1579 - type: CableApcExtension - components: - - pos: 58.5,-3.5 - parent: 127 - type: Transform -- uid: 1580 - type: CableApcExtension - components: - - pos: 58.5,-4.5 - parent: 127 - type: Transform -- uid: 1581 - type: CableApcExtension - components: - - pos: 58.5,-5.5 - parent: 127 - type: Transform -- uid: 1582 - type: CableApcExtension - components: - - pos: 58.5,-5.5 - parent: 127 - type: Transform -- uid: 1583 - type: CableApcExtension - components: - - pos: 56.5,-5.5 - parent: 127 - type: Transform -- uid: 1584 - type: CableApcExtension - components: - - pos: 56.5,-5.5 - parent: 127 - type: Transform -- uid: 1585 - type: CableApcExtension - components: - - pos: 57.5,-5.5 - parent: 127 - type: Transform -- uid: 1586 - type: CableApcExtension - components: - - pos: 55.5,-8.5 - parent: 127 - type: Transform -- uid: 1587 - type: CableApcExtension - components: - - pos: 55.5,-9.5 - parent: 127 - type: Transform -- uid: 1588 - type: CableApcExtension - components: - - pos: 54.5,-9.5 - parent: 127 - type: Transform -- uid: 1589 - type: CableApcExtension - components: - - pos: 53.5,-9.5 - parent: 127 - type: Transform -- uid: 1590 - type: CableApcExtension - components: - - pos: 52.5,-9.5 - parent: 127 - type: Transform -- uid: 1591 - type: CableApcExtension - components: - - pos: 55.5,-9.5 - parent: 127 - type: Transform -- uid: 1592 - type: CableApcExtension - components: - - pos: 56.5,-9.5 - parent: 127 - type: Transform -- uid: 1593 - type: CableApcExtension - components: - - pos: 57.5,-9.5 - parent: 127 - type: Transform -- uid: 1594 - type: CableApcExtension - components: - - pos: 58.5,-9.5 - parent: 127 - type: Transform -- uid: 1595 - type: CableApcExtension - components: - - pos: 59.5,-9.5 - parent: 127 - type: Transform -- uid: 1596 - type: CableApcExtension - components: - - pos: 59.5,-9.5 - parent: 127 - type: Transform -- uid: 1597 - type: CableApcExtension - components: - - pos: 60.5,-9.5 - parent: 127 - type: Transform -- uid: 1598 - type: CableApcExtension - components: - - pos: 61.5,-9.5 - parent: 127 - type: Transform -- uid: 1599 - type: CableApcExtension - components: - - pos: 61.5,-8.5 - parent: 127 - type: Transform -- uid: 1600 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-3.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1601 - type: Poweredlight - components: - - pos: 56.5,-0.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1602 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-6.5 - parent: 127 - type: Transform -- uid: 1603 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 57.5,-6.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1604 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 55.5,-6.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1605 - type: Poweredlight - components: - - pos: 57.5,-8.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1606 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-8.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1607 - type: Poweredlight - components: - - pos: 10.5,-33.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1608 - type: Grille - components: - - pos: 43.5,20.5 - parent: 127 - type: Transform -- uid: 1609 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-17.5 - parent: 127 - type: Transform -- uid: 1610 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-11.5 - parent: 127 - type: Transform -- uid: 1611 - type: WallReinforced - components: - - pos: 23.5,-0.5 - parent: 127 - type: Transform -- uid: 1612 - type: WallReinforced - components: - - pos: 45.5,3.5 - parent: 127 - type: Transform -- uid: 1613 - type: WallReinforced - components: - - pos: 46.5,3.5 - parent: 127 - type: Transform -- uid: 1614 - type: WallReinforced - components: - - pos: 47.5,3.5 - parent: 127 - type: Transform -- uid: 1615 - type: WallReinforced - components: - - pos: 48.5,3.5 - parent: 127 - type: Transform -- uid: 1616 - type: WallReinforced - components: - - pos: 49.5,3.5 - parent: 127 - type: Transform -- uid: 1617 - type: WallReinforced - components: - - pos: 49.5,4.5 - parent: 127 - type: Transform -- uid: 1618 - type: WallReinforced - components: - - pos: 49.5,5.5 - parent: 127 - type: Transform -- uid: 1619 - type: WallReinforced - components: - - pos: 49.5,6.5 - parent: 127 - type: Transform -- uid: 1620 - type: CableHV - components: - - pos: 31.5,-5.5 - parent: 127 - type: Transform -- uid: 1621 - type: CableHV - components: - - pos: 34.5,-5.5 - parent: 127 - type: Transform -- uid: 1622 - type: CableHV - components: - - pos: 33.5,-5.5 - parent: 127 - type: Transform -- uid: 1623 - type: WallReinforced - components: - - pos: 0.5,-34.5 - parent: 127 - type: Transform -- uid: 1624 - type: CableHV - components: - - pos: 32.5,-5.5 - parent: 127 - type: Transform -- uid: 1625 - type: CableHV - components: - - pos: 36.5,-5.5 - parent: 127 - type: Transform -- uid: 1626 - type: CableHV - components: - - pos: 39.5,-5.5 - parent: 127 - type: Transform -- uid: 1627 - type: CableHV - components: - - pos: 41.5,-6.5 - parent: 127 - type: Transform -- uid: 1628 - type: CableHV - components: - - pos: 41.5,-8.5 - parent: 127 - type: Transform -- uid: 1629 - type: CableHV - components: - - pos: 37.5,-5.5 - parent: 127 - type: Transform -- uid: 1630 - type: CableHV - components: - - pos: 40.5,-5.5 - parent: 127 - type: Transform -- uid: 1631 - type: CableHV - components: - - pos: 38.5,-5.5 - parent: 127 - type: Transform -- uid: 1632 - type: CableHV - components: - - pos: 41.5,-5.5 - parent: 127 - type: Transform -- uid: 1633 - type: CableHV - components: - - pos: 41.5,-9.5 - parent: 127 - type: Transform -- uid: 1634 - type: CableHV - components: - - pos: 41.5,-7.5 - parent: 127 - type: Transform -- uid: 1635 - type: CableHV - components: - - pos: 41.5,-10.5 - parent: 127 - type: Transform -- uid: 1636 - type: CableHV - components: - - pos: 41.5,-11.5 - parent: 127 - type: Transform -- uid: 1637 - type: CableHV - components: - - pos: 41.5,-12.5 - parent: 127 - type: Transform -- uid: 1638 - type: CableHV - components: - - pos: 41.5,-13.5 - parent: 127 - type: Transform -- uid: 1639 - type: CableHV - components: - - pos: 31.5,-6.5 - parent: 127 - type: Transform -- uid: 1640 - type: CableHV - components: - - pos: 31.5,-7.5 - parent: 127 - type: Transform -- uid: 1641 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 127 - type: Transform -- uid: 1642 - type: CableMV - components: - - pos: 24.5,-15.5 - parent: 127 - type: Transform -- uid: 1643 - type: WallReinforced - components: - - pos: 49.5,7.5 - parent: 127 - type: Transform -- uid: 1644 - type: CableHV - components: - - pos: 22.5,1.5 - parent: 127 - type: Transform -- uid: 1645 - type: CableHV - components: - - pos: 22.5,0.5 - parent: 127 - type: Transform -- uid: 1646 - type: CableHV - components: - - pos: 22.5,-0.5 - parent: 127 - type: Transform -- uid: 1647 - type: CableHV - components: - - pos: 22.5,-1.5 - parent: 127 - type: Transform -- uid: 1648 - type: CableHV - components: - - pos: 22.5,-2.5 - parent: 127 - type: Transform -- uid: 1649 - type: CableHV - components: - - pos: 22.5,-3.5 - parent: 127 - type: Transform -- uid: 1650 - type: CableHV - components: - - pos: 22.5,-4.5 - parent: 127 - type: Transform -- uid: 1651 - type: CableHV - components: - - pos: 22.5,-5.5 - parent: 127 - type: Transform -- uid: 1652 - type: CableHV - components: - - pos: 22.5,-6.5 - parent: 127 - type: Transform -- uid: 1653 - type: CableHV - components: - - pos: 22.5,-7.5 - parent: 127 - type: Transform -- uid: 1654 - type: CableHV - components: - - pos: 22.5,-8.5 - parent: 127 - type: Transform -- uid: 1655 - type: CableHV - components: - - pos: 22.5,-9.5 - parent: 127 - type: Transform -- uid: 1656 - type: WallReinforced - components: - - pos: 28.5,-9.5 - parent: 127 - type: Transform -- uid: 1657 - type: WallReinforced - components: - - pos: 26.5,-11.5 - parent: 127 - type: Transform -- uid: 1658 - type: WallSolid - components: - - pos: 24.5,-13.5 - parent: 127 - type: Transform -- uid: 1659 - type: WallSolid - components: - - pos: -3.5,-11.5 - parent: 127 - type: Transform -- uid: 1660 - type: WallSolid - components: - - pos: -4.5,-11.5 - parent: 127 - type: Transform -- uid: 1661 - type: SubstationBasic - components: - - pos: 24.5,-15.5 - parent: 127 - type: Transform -- uid: 1662 - type: CableHV - components: - - pos: 29.5,-9.5 - parent: 127 - type: Transform -- uid: 1663 - type: CableHV - components: - - pos: 29.5,-8.5 - parent: 127 - type: Transform -- uid: 1664 - type: CableHV - components: - - pos: 29.5,-7.5 - parent: 127 - type: Transform -- uid: 1665 - type: CableHV - components: - - pos: 30.5,-7.5 - parent: 127 - type: Transform -- uid: 1666 - type: WallReinforced - components: - - pos: 49.5,8.5 - parent: 127 - type: Transform -- uid: 1667 - type: WallReinforced - components: - - pos: 49.5,9.5 - parent: 127 - type: Transform -- uid: 1668 - type: WallReinforced - components: - - pos: 49.5,10.5 - parent: 127 - type: Transform -- uid: 1669 - type: WallReinforced - components: - - pos: 49.5,11.5 - parent: 127 - type: Transform -- uid: 1670 - type: WallReinforced - components: - - pos: 49.5,12.5 - parent: 127 - type: Transform -- uid: 1671 - type: WallReinforced - components: - - pos: 49.5,13.5 - parent: 127 - type: Transform -- uid: 1672 - type: WallReinforced - components: - - pos: 49.5,14.5 - parent: 127 - type: Transform -- uid: 1673 - type: WallReinforced - components: - - pos: 49.5,15.5 - parent: 127 - type: Transform -- uid: 1674 - type: WallReinforced - components: - - pos: 49.5,16.5 - parent: 127 - type: Transform -- uid: 1675 - type: WallReinforced - components: - - pos: 49.5,17.5 - parent: 127 - type: Transform -- uid: 1676 - type: WallReinforced - components: - - pos: 47.5,19.5 - parent: 127 - type: Transform -- uid: 1677 - type: WallReinforced - components: - - pos: 46.5,19.5 - parent: 127 - type: Transform -- uid: 1678 - type: APCBasic - components: - - pos: 36.5,-3.5 - parent: 127 - type: Transform -- uid: 1679 - type: APCBasic - components: - - pos: 26.5,-3.5 - parent: 127 - type: Transform -- uid: 1680 - type: CableMV - components: - - pos: 41.5,-13.5 - parent: 127 - type: Transform -- uid: 1681 - type: CableMV - components: - - pos: 41.5,-12.5 - parent: 127 - type: Transform -- uid: 1682 - type: CableMV - components: - - pos: 41.5,-11.5 - parent: 127 - type: Transform -- uid: 1683 - type: CableMV - components: - - pos: 41.5,-10.5 - parent: 127 - type: Transform -- uid: 1684 - type: CableMV - components: - - pos: 41.5,-9.5 - parent: 127 - type: Transform -- uid: 1685 - type: CableMV - components: - - pos: 41.5,-8.5 - parent: 127 - type: Transform -- uid: 1686 - type: CableMV - components: - - pos: 41.5,-7.5 - parent: 127 - type: Transform -- uid: 1687 - type: CableMV - components: - - pos: 41.5,-6.5 - parent: 127 - type: Transform -- uid: 1688 - type: CableMV - components: - - pos: 41.5,-5.5 - parent: 127 - type: Transform -- uid: 1689 - type: CableMV - components: - - pos: 41.5,-4.5 - parent: 127 - type: Transform -- uid: 1690 - type: ComputerPowerMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-5.5 - parent: 127 - type: Transform -- uid: 1691 - type: ReinforcedWindow - components: - - pos: 44.5,-9.5 - parent: 127 - type: Transform -- uid: 1692 - type: Grille - components: - - pos: 43.5,-5.5 - parent: 127 - type: Transform -- uid: 1693 - type: ReinforcedWindow - components: - - pos: 44.5,-8.5 - parent: 127 - type: Transform -- uid: 1694 - type: CableMV - components: - - pos: 36.5,-4.5 - parent: 127 - type: Transform -- uid: 1695 - type: CableMV - components: - - pos: 35.5,-4.5 - parent: 127 - type: Transform -- uid: 1696 - type: CableMV - components: - - pos: 36.5,-3.5 - parent: 127 - type: Transform -- uid: 1697 - type: CableMV - components: - - pos: 34.5,-4.5 - parent: 127 - type: Transform -- uid: 1698 - type: CableMV - components: - - pos: 33.5,-4.5 - parent: 127 - type: Transform -- uid: 1699 - type: CableMV - components: - - pos: 32.5,-4.5 - parent: 127 - type: Transform -- uid: 1700 - type: CableMV - components: - - pos: 31.5,-4.5 - parent: 127 - type: Transform -- uid: 1701 - type: CableMV - components: - - pos: 30.5,-4.5 - parent: 127 - type: Transform -- uid: 1702 - type: CableMV - components: - - pos: 29.5,-4.5 - parent: 127 - type: Transform -- uid: 1703 - type: CableMV - components: - - pos: 29.5,-3.5 - parent: 127 - type: Transform -- uid: 1704 - type: CableMV - components: - - pos: 29.5,-2.5 - parent: 127 - type: Transform -- uid: 1705 - type: CableMV - components: - - pos: 28.5,-2.5 - parent: 127 - type: Transform -- uid: 1706 - type: CableMV - components: - - pos: 27.5,-2.5 - parent: 127 - type: Transform -- uid: 1707 - type: CableMV - components: - - pos: 26.5,-2.5 - parent: 127 - type: Transform -- uid: 1708 - type: CableApcExtension - components: - - pos: 26.5,-3.5 - parent: 127 - type: Transform -- uid: 1709 - type: ReinforcedGirder - components: - - pos: 47.5,21.5 - parent: 127 - type: Transform -- uid: 1710 - type: ReinforcedPlasmaWindow - components: - - pos: 45.5,18.5 - parent: 127 - type: Transform -- uid: 1711 - type: WallReinforced - components: - - pos: 25.5,10.5 - parent: 127 - type: Transform -- uid: 1712 - type: WallReinforced - components: - - pos: 48.5,5.5 - parent: 127 - type: Transform -- uid: 1713 - type: WallReinforced - components: - - pos: 47.5,5.5 - parent: 127 - type: Transform -- uid: 1714 - type: WallReinforced - components: - - pos: 46.5,5.5 - parent: 127 - type: Transform -- uid: 1715 - type: WallReinforced - components: - - pos: 45.5,5.5 - parent: 127 - type: Transform -- uid: 1716 - type: WallReinforced - components: - - pos: 48.5,7.5 - parent: 127 - type: Transform -- uid: 1717 - type: WallReinforced - components: - - pos: 47.5,7.5 - parent: 127 - type: Transform -- uid: 1718 - type: WallReinforced - components: - - pos: 46.5,7.5 - parent: 127 - type: Transform -- uid: 1719 - type: WallReinforced - components: - - pos: 45.5,7.5 - parent: 127 - type: Transform -- uid: 1720 - type: WallReinforced - components: - - pos: 48.5,9.5 - parent: 127 - type: Transform -- uid: 1721 - type: WallReinforced - components: - - pos: 47.5,9.5 - parent: 127 - type: Transform -- uid: 1722 - type: WallReinforced - components: - - pos: 46.5,9.5 - parent: 127 - type: Transform -- uid: 1723 - type: WallReinforced - components: - - pos: 45.5,9.5 - parent: 127 - type: Transform -- uid: 1724 - type: WallReinforced - components: - - pos: 48.5,11.5 - parent: 127 - type: Transform -- uid: 1725 - type: WallReinforced - components: - - pos: 47.5,11.5 - parent: 127 - type: Transform -- uid: 1726 - type: WallReinforced - components: - - pos: 46.5,11.5 - parent: 127 - type: Transform -- uid: 1727 - type: WallReinforced - components: - - pos: 45.5,11.5 - parent: 127 - type: Transform -- uid: 1728 - type: WallReinforced - components: - - pos: 48.5,13.5 - parent: 127 - type: Transform -- uid: 1729 - type: WallReinforced - components: - - pos: 47.5,13.5 - parent: 127 - type: Transform -- uid: 1730 - type: WallReinforced - components: - - pos: 46.5,13.5 - parent: 127 - type: Transform -- uid: 1731 - type: WallReinforced - components: - - pos: 45.5,13.5 - parent: 127 - type: Transform -- uid: 1732 - type: WallReinforced - components: - - pos: 48.5,15.5 - parent: 127 - type: Transform -- uid: 1733 - type: WallReinforced - components: - - pos: 47.5,15.5 - parent: 127 - type: Transform -- uid: 1734 - type: WallReinforced - components: - - pos: 46.5,15.5 - parent: 127 - type: Transform -- uid: 1735 - type: WallReinforced - components: - - pos: 45.5,15.5 - parent: 127 - type: Transform -- uid: 1736 - type: WallReinforced - components: - - pos: 48.5,17.5 - parent: 127 - type: Transform -- uid: 1737 - type: WallReinforced - components: - - pos: 47.5,17.5 - parent: 127 - type: Transform -- uid: 1738 - type: WallReinforced - components: - - pos: 46.5,17.5 - parent: 127 - type: Transform -- uid: 1739 - type: WallReinforced - components: - - pos: 45.5,17.5 - parent: 127 - type: Transform -- uid: 1740 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 1741 - type: WallReinforced - components: - - pos: 48.5,19.5 - parent: 127 - type: Transform -- uid: 1742 - type: ReinforcedGirder - components: - - pos: 46.5,21.5 - parent: 127 - type: Transform -- uid: 1743 - type: WallReinforced - components: - - pos: 45.5,19.5 - parent: 127 - type: Transform -- uid: 1744 - type: Girder - components: - - pos: 49.5,20.5 - parent: 127 - type: Transform -- uid: 1745 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 1746 - type: MaintenanceWeaponSpawner - components: - - pos: 31.5,22.5 - parent: 127 - type: Transform -- uid: 1747 - type: WallReinforced - components: - - pos: 45.5,21.5 - parent: 127 - type: Transform -- uid: 1748 - type: WallReinforced - components: - - pos: 24.5,10.5 - parent: 127 - type: Transform -- uid: 1749 - type: WallReinforced - components: - - pos: 39.5,26.5 - parent: 127 - type: Transform -- uid: 1750 - type: WallReinforced - components: - - pos: 40.5,26.5 - parent: 127 - type: Transform -- uid: 1751 - type: ReinforcedPlasmaWindow - components: - - pos: 45.5,4.5 - parent: 127 - type: Transform -- uid: 1752 - type: WallReinforced - components: - - pos: 42.5,26.5 - parent: 127 - type: Transform -- uid: 1753 - type: WallReinforced - components: - - pos: 43.5,26.5 - parent: 127 - type: Transform -- uid: 1754 - type: WallReinforced - components: - - pos: 39.5,23.5 - parent: 127 - type: Transform -- uid: 1755 - type: WallReinforced - components: - - pos: 43.5,23.5 - parent: 127 - type: Transform -- uid: 1756 - type: ReinforcedWindow - components: - - pos: 40.5,23.5 - parent: 127 - type: Transform -- uid: 1757 - type: ReinforcedWindow - components: - - pos: 41.5,23.5 - parent: 127 - type: Transform -- uid: 1758 - type: ReinforcedWindow - components: - - pos: 42.5,23.5 - parent: 127 - type: Transform -- uid: 1759 - type: ReinforcedWindow - components: - - pos: 43.5,24.5 - parent: 127 - type: Transform -- uid: 1760 - type: ReinforcedWindow - components: - - pos: 43.5,25.5 - parent: 127 - type: Transform -- uid: 1761 - type: ReinforcedWindow - components: - - pos: 39.5,25.5 - parent: 127 - type: Transform -- uid: 1762 - type: ReinforcedWindow - components: - - pos: 39.5,24.5 - parent: 127 - type: Transform -- uid: 1763 - type: Grille - components: - - pos: 39.5,25.5 - parent: 127 - type: Transform -- uid: 1764 - type: Grille - components: - - pos: 39.5,24.5 - parent: 127 - type: Transform -- uid: 1765 - type: Grille - components: - - pos: 40.5,23.5 - parent: 127 - type: Transform -- uid: 1766 - type: Grille - components: - - pos: 41.5,23.5 - parent: 127 - type: Transform -- uid: 1767 - type: Grille - components: - - pos: 42.5,23.5 - parent: 127 - type: Transform -- uid: 1768 - type: Grille - components: - - pos: 43.5,24.5 - parent: 127 - type: Transform -- uid: 1769 - type: Grille - components: - - pos: 43.5,25.5 - parent: 127 - type: Transform -- uid: 1770 - type: Grille - components: - - pos: 45.5,4.5 - parent: 127 - type: Transform -- uid: 1771 - type: ReinforcedPlasmaWindow - components: - - pos: 45.5,6.5 - parent: 127 - type: Transform -- uid: 1772 - type: ReinforcedPlasmaWindow - components: - - pos: 45.5,8.5 - parent: 127 - type: Transform -- uid: 1773 - type: ReinforcedPlasmaWindow - components: - - pos: 45.5,10.5 - parent: 127 - type: Transform -- uid: 1774 - type: ReinforcedPlasmaWindow - components: - - pos: 45.5,12.5 - parent: 127 - type: Transform -- uid: 1775 - type: Grille - components: - - pos: 45.5,6.5 - parent: 127 - type: Transform -- uid: 1776 - type: ReinforcedPlasmaWindow - components: - - pos: 45.5,14.5 - parent: 127 - type: Transform -- uid: 1777 - type: ReinforcedPlasmaWindow - components: - - pos: 45.5,16.5 - parent: 127 - type: Transform -- uid: 1778 - type: SheetPlastic - components: - - pos: -5.5,13.5 - parent: 127 - type: Transform -- uid: 1779 - type: ReinforcedPlasmaWindow - components: - - pos: 45.5,20.5 - parent: 127 - type: Transform -- uid: 1780 - type: Grille - components: - - pos: 45.5,8.5 - parent: 127 - type: Transform -- uid: 1781 - type: Grille - components: - - pos: 45.5,10.5 - parent: 127 - type: Transform -- uid: 1782 - type: Grille - components: - - pos: 45.5,12.5 - parent: 127 - type: Transform -- uid: 1783 - type: Grille - components: - - pos: 45.5,14.5 - parent: 127 - type: Transform -- uid: 1784 - type: Grille - components: - - pos: 45.5,16.5 - parent: 127 - type: Transform -- uid: 1785 - type: Grille - components: - - pos: 45.5,18.5 - parent: 127 - type: Transform -- uid: 1786 - type: Grille - components: - - pos: 45.5,20.5 - parent: 127 - type: Transform -- uid: 1787 - type: AirlockExternalGlassLocked - components: - - pos: 37.5,19.5 - parent: 127 - type: Transform -- uid: 1788 - type: AirlockExternalGlassLocked - components: - - pos: 35.5,19.5 - parent: 127 - type: Transform -- uid: 1789 - type: AirlockExternalGlassLocked - components: - - pos: 36.5,21.5 - parent: 127 - type: Transform -- uid: 1790 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 38.5,19.5 - parent: 127 - type: Transform -- uid: 1791 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 35.5,6.5 - parent: 127 - type: Transform -- uid: 1792 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 35.5,5.5 - parent: 127 - type: Transform -- uid: 1793 - type: Grille - components: - - pos: 32.5,4.5 - parent: 127 - type: Transform -- uid: 1794 - type: AirlockChiefEngineerLocked - components: - - pos: 33.5,4.5 - parent: 127 - type: Transform -- uid: 1795 - type: AirlockEngineeringGlassLocked - components: - - pos: 32.5,13.5 - parent: 127 - type: Transform -- uid: 1796 - type: AirlockEngineeringGlassLocked - components: - - pos: 28.5,2.5 - parent: 127 - type: Transform -- uid: 1797 - type: AirlockEngineeringGlassLocked - components: - - pos: 28.5,1.5 - parent: 127 - type: Transform -- uid: 1798 - type: AirlockMaintEngiLocked - components: - - pos: 29.5,20.5 - parent: 127 - type: Transform -- uid: 1799 - type: AirlockEngineeringLocked - components: - - pos: 23.5,11.5 - parent: 127 - type: Transform -- uid: 1800 - type: AirlockEngineeringLocked - components: - - pos: -9.5,21.5 - parent: 127 - type: Transform -- uid: 1801 - type: AirlockEngineeringLocked - components: - - pos: -10.5,15.5 - parent: 127 - type: Transform -- uid: 1802 - type: CableHV - components: - - pos: 35.5,12.5 - parent: 127 - type: Transform -- uid: 1803 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 26.5,12.5 - parent: 127 - type: Transform -- uid: 1804 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 38.5,11.5 - parent: 127 - type: Transform -- uid: 1805 - type: PottedPlantRandom - components: - - pos: 18.5,16.5 - parent: 127 - type: Transform -- uid: 1806 - type: FireAxeCabinetFilled - components: - - rot: 1.5707963267948966 rad - pos: 38.5,12.5 - parent: 127 - type: Transform -- uid: 1807 - type: Table - components: - - pos: 18.5,10.5 - parent: 127 - type: Transform -- uid: 1808 - type: Table - components: - - pos: 19.5,10.5 - parent: 127 - type: Transform -- uid: 1809 - type: SheetPlastic - components: - - pos: 18.980227,10.568 - parent: 127 - type: Transform -- uid: 1810 - type: Table - components: - - pos: 19.5,8.5 - parent: 127 - type: Transform -- uid: 1811 - type: Table - components: - - pos: 19.5,7.5 - parent: 127 - type: Transform -- uid: 1812 - type: Table - components: - - pos: 19.5,6.5 - parent: 127 - type: Transform -- uid: 1813 - type: VendingMachineCargoDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,10.5 - parent: 127 - type: Transform -- uid: 1814 - type: Table - components: - - pos: 12.5,9.5 - parent: 127 - type: Transform -- uid: 1815 - type: ClosetEmergencyFilledRandom - components: - - pos: 12.5,8.5 - parent: 127 - type: Transform -- uid: 1816 - type: CableMV - components: - - pos: 26.5,-3.5 - parent: 127 - type: Transform -- uid: 1817 - type: CableApcExtension - components: - - pos: 26.5,-4.5 - parent: 127 - type: Transform -- uid: 1818 - type: CableHV - components: - - pos: 24.5,-15.5 - parent: 127 - type: Transform -- uid: 1819 - type: CableApcExtension - components: - - pos: 26.5,-6.5 - parent: 127 - type: Transform -- uid: 1820 - type: CableApcExtension - components: - - pos: 26.5,-7.5 - parent: 127 - type: Transform -- uid: 1821 - type: CableApcExtension - components: - - pos: 26.5,-2.5 - parent: 127 - type: Transform -- uid: 1822 - type: CableApcExtension - components: - - pos: 25.5,-2.5 - parent: 127 - type: Transform -- uid: 1823 - type: CableApcExtension - components: - - pos: 24.5,-2.5 - parent: 127 - type: Transform -- uid: 1824 - type: CableApcExtension - components: - - pos: 25.5,-7.5 - parent: 127 - type: Transform -- uid: 1825 - type: CableApcExtension - components: - - pos: 24.5,-7.5 - parent: 127 - type: Transform -- uid: 1826 - type: CableApcExtension - components: - - pos: 24.5,-6.5 - parent: 127 - type: Transform -- uid: 1827 - type: CableApcExtension - components: - - pos: 24.5,-5.5 - parent: 127 - type: Transform -- uid: 1828 - type: CableApcExtension - components: - - pos: 24.5,-4.5 - parent: 127 - type: Transform -- uid: 1829 - type: CableApcExtension - components: - - pos: 23.5,-2.5 - parent: 127 - type: Transform -- uid: 1830 - type: CableApcExtension - components: - - pos: 23.5,-1.5 - parent: 127 - type: Transform -- uid: 1831 - type: CableApcExtension - components: - - pos: 27.5,-2.5 - parent: 127 - type: Transform -- uid: 1832 - type: CableApcExtension - components: - - pos: 28.5,-2.5 - parent: 127 - type: Transform -- uid: 1833 - type: CableApcExtension - components: - - pos: 29.5,-2.5 - parent: 127 - type: Transform -- uid: 1834 - type: CableApcExtension - components: - - pos: 30.5,-2.5 - parent: 127 - type: Transform -- uid: 1835 - type: CableApcExtension - components: - - pos: 30.5,-1.5 - parent: 127 - type: Transform -- uid: 1836 - type: CableApcExtension - components: - - pos: 30.5,-3.5 - parent: 127 - type: Transform -- uid: 1837 - type: CableApcExtension - components: - - pos: 30.5,-4.5 - parent: 127 - type: Transform -- uid: 1838 - type: CableApcExtension - components: - - pos: 36.5,-4.5 - parent: 127 - type: Transform -- uid: 1839 - type: CableApcExtension - components: - - pos: 36.5,-5.5 - parent: 127 - type: Transform -- uid: 1840 - type: CableApcExtension - components: - - pos: 35.5,-5.5 - parent: 127 - type: Transform -- uid: 1841 - type: CableApcExtension - components: - - pos: 34.5,-5.5 - parent: 127 - type: Transform -- uid: 1842 - type: CableApcExtension - components: - - pos: 33.5,-5.5 - parent: 127 - type: Transform -- uid: 1843 - type: CableApcExtension - components: - - pos: 32.5,-5.5 - parent: 127 - type: Transform -- uid: 1844 - type: CableApcExtension - components: - - pos: 36.5,-6.5 - parent: 127 - type: Transform -- uid: 1845 - type: CableApcExtension - components: - - pos: 36.5,-7.5 - parent: 127 - type: Transform -- uid: 1846 - type: CableApcExtension - components: - - pos: 36.5,-8.5 - parent: 127 - type: Transform -- uid: 1847 - type: CableApcExtension - components: - - pos: 37.5,-5.5 - parent: 127 - type: Transform -- uid: 1848 - type: CableApcExtension - components: - - pos: 38.5,-5.5 - parent: 127 - type: Transform -- uid: 1849 - type: CableApcExtension - components: - - pos: 39.5,-5.5 - parent: 127 - type: Transform -- uid: 1850 - type: CableApcExtension - components: - - pos: 40.5,-5.5 - parent: 127 - type: Transform -- uid: 1851 - type: CableApcExtension - components: - - pos: 41.5,-5.5 - parent: 127 - type: Transform -- uid: 1852 - type: CableApcExtension - components: - - pos: 41.5,-6.5 - parent: 127 - type: Transform -- uid: 1853 - type: CableApcExtension - components: - - pos: 41.5,-7.5 - parent: 127 - type: Transform -- uid: 1854 - type: CableApcExtension - components: - - pos: 41.5,-8.5 - parent: 127 - type: Transform -- uid: 1855 - type: CableApcExtension - components: - - pos: 41.5,-9.5 - parent: 127 - type: Transform -- uid: 1856 - type: CableApcExtension - components: - - pos: 41.5,-10.5 - parent: 127 - type: Transform -- uid: 1857 - type: CableApcExtension - components: - - pos: 41.5,-11.5 - parent: 127 - type: Transform -- uid: 1858 - type: CableApcExtension - components: - - pos: 41.5,-12.5 - parent: 127 - type: Transform -- uid: 1859 - type: CableApcExtension - components: - - pos: 42.5,-12.5 - parent: 127 - type: Transform -- uid: 1860 - type: CableApcExtension - components: - - pos: 43.5,-12.5 - parent: 127 - type: Transform -- uid: 1861 - type: CableApcExtension - components: - - pos: 44.5,-12.5 - parent: 127 - type: Transform -- uid: 1862 - type: CableApcExtension - components: - - pos: 45.5,-12.5 - parent: 127 - type: Transform -- uid: 1863 - type: MedkitOxygenFilled - components: - - pos: 12.60667,9.469594 - parent: 127 - type: Transform -- uid: 1864 - type: Autolathe - components: - - pos: 12.5,6.5 - parent: 127 - type: Transform -- uid: 1865 - type: PottedPlantRandom - components: - - pos: 13.5,10.5 - parent: 127 - type: Transform -- uid: 1866 - type: DisposalUnit - components: - - pos: 17.5,10.5 - parent: 127 - type: Transform -- uid: 1867 - type: PottedPlantRandom - components: - - pos: 17.5,4.5 - parent: 127 - type: Transform -- uid: 1868 - type: ComputerCargoShuttle - components: - - rot: -1.5707963267948966 rad - pos: 18.5,18.5 - parent: 127 - type: Transform -- uid: 1869 - type: BannerCargo - components: - - pos: 19.5,4.5 - parent: 127 - type: Transform -- uid: 1870 - type: ComputerCargoOrders - components: - - rot: -1.5707963267948966 rad - pos: 17.5,6.5 - parent: 127 - type: Transform -- uid: 1871 - type: ChairOfficeDark - components: - - pos: 16.5,6.5 - parent: 127 - type: Transform -- uid: 1872 - type: ComputerShuttleCargo - components: - - pos: 18.5,21.5 - parent: 127 - type: Transform -- uid: 1873 - type: SignCargo - components: - - pos: 17.5,5.5 - parent: 127 - type: Transform -- uid: 1874 - type: Chair - components: - - pos: 12.5,4.5 - parent: 127 - type: Transform -- uid: 1875 - type: Chair - components: - - pos: 14.5,4.5 - parent: 127 - type: Transform -- uid: 1876 - type: LockerQuarterMasterFilled - components: - - pos: 20.5,16.5 - parent: 127 - type: Transform - - containers: - entity_storage: !type:Container - ents: - - 1879 - type: ContainerContainer -- uid: 1877 - type: SpawnMobRaccoonMorticia - components: - - pos: 20.5,17.5 - parent: 127 - type: Transform -- uid: 1878 - type: SpawnPointQuartermaster - components: - - pos: 21.5,17.5 - parent: 127 - type: Transform -- uid: 1879 - type: ClothingOuterWinterQM - components: - - flags: InContainer - type: MetaData - - parent: 1876 - type: Transform - - canCollide: False - type: Physics -- uid: 1880 - type: ReinforcedWindow - components: - - pos: 43.5,-10.5 - parent: 127 - type: Transform -- uid: 1881 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-7.5 - parent: 127 - type: Transform -- uid: 1882 - type: ReinforcedWindow - components: - - pos: 43.5,-6.5 - parent: 127 - type: Transform -- uid: 1883 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 3.141592653589793 rad - pos: 42.5,-9.5 - parent: 127 - type: Transform -- uid: 1884 - type: Grille - components: - - pos: 44.5,-6.5 - parent: 127 - type: Transform -- uid: 1885 - type: ReinforcedWindow - components: - - pos: 44.5,-6.5 - parent: 127 - type: Transform -- uid: 1886 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-8.5 - parent: 127 - type: Transform -- uid: 1887 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-10.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1888 - type: CableHV - components: - - pos: 42.5,-4.5 - parent: 127 - type: Transform -- uid: 1889 - type: CableHV - components: - - pos: 42.5,-3.5 - parent: 127 - type: Transform -- uid: 1890 - type: CableHV - components: - - pos: 42.5,-2.5 - parent: 127 - type: Transform -- uid: 1891 - type: CableHV - components: - - pos: 42.5,-1.5 - parent: 127 - type: Transform -- uid: 1892 - type: CableHV - components: - - pos: 42.5,-0.5 - parent: 127 - type: Transform -- uid: 1893 - type: CableHV - components: - - pos: 42.5,0.5 - parent: 127 - type: Transform -- uid: 1894 - type: Grille - components: - - pos: 45.5,-11.5 - parent: 127 - type: Transform -- uid: 1895 - type: WallReinforced - components: - - pos: 4.5,-31.5 - parent: 127 - type: Transform -- uid: 1896 - type: BedsheetQM - components: - - pos: 21.5,16.5 - parent: 127 - type: Transform -- uid: 1897 - type: AirlockQuartermasterLocked - components: - - pos: 19.5,17.5 - parent: 127 - type: Transform -- uid: 1898 - type: ClothingOuterWinterCMO - components: - - flags: InContainer - type: MetaData - - parent: 5588 - type: Transform - - canCollide: False - type: Physics -- uid: 1899 - type: Table - components: - - pos: 22.5,16.5 - parent: 127 - type: Transform -- uid: 1900 - type: Bed - components: - - pos: 21.5,16.5 - parent: 127 - type: Transform -- uid: 1901 - type: ComputerCargoOrders - components: - - rot: -1.5707963267948966 rad - pos: 22.5,17.5 - parent: 127 - type: Transform -- uid: 1902 - type: ExtinguisherCabinetFilled - components: - - pos: -7.5,12.5 - parent: 127 - type: Transform -- uid: 1903 - type: ExtinguisherCabinetFilled - components: - - pos: -1.5,1.5 - parent: 127 - type: Transform -- uid: 1904 - type: ExtinguisherCabinetFilled - components: - - pos: -2.5,-4.5 - parent: 127 - type: Transform -- uid: 1905 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -5.5,4.5 - parent: 127 - type: Transform -- uid: 1906 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 4.5,-5.5 - parent: 127 - type: Transform -- uid: 1907 - type: APCBasic - components: - - pos: 0.5,13.5 - parent: 127 - type: Transform -- uid: 1908 - type: APCBasic - components: - - pos: 17.5,11.5 - parent: 127 - type: Transform -- uid: 1909 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 19.5,18.5 - parent: 127 - type: Transform -- uid: 1910 - type: SubstationBasic - components: - - pos: -10.5,16.5 - parent: 127 - type: Transform -- uid: 1911 - type: SubstationBasic - components: - - pos: -10.5,20.5 - parent: 127 - type: Transform -- uid: 1912 - type: CableHV - components: - - pos: -11.5,23.5 - parent: 127 - type: Transform -- uid: 1913 - type: Grille - components: - - pos: -10.5,26.5 - parent: 127 - type: Transform -- uid: 1914 - type: CableHV - components: - - pos: -11.5,22.5 - parent: 127 - type: Transform -- uid: 1915 - type: CableHV - components: - - pos: -10.5,22.5 - parent: 127 - type: Transform -- uid: 1916 - type: CableHV - components: - - pos: -10.5,21.5 - parent: 127 - type: Transform -- uid: 1917 - type: CableHV - components: - - pos: -10.5,20.5 - parent: 127 - type: Transform -- uid: 1918 - type: AirlockExternalGlassLocked - components: - - pos: -11.5,23.5 - parent: 127 - type: Transform -- uid: 1919 - type: AirlockExternalGlassLocked - components: - - pos: -12.5,25.5 - parent: 127 - type: Transform -- uid: 1920 - type: Grille - components: - - pos: -12.5,24.5 - parent: 127 - type: Transform -- uid: 1921 - type: ReinforcedWindow - components: - - pos: -12.5,24.5 - parent: 127 - type: Transform -- uid: 1922 - type: CableHV - components: - - pos: -11.5,24.5 - parent: 127 - type: Transform -- uid: 1923 - type: SheetSteel - components: - - pos: 18.553534,10.570482 - parent: 127 - type: Transform -- uid: 1924 - type: Table - components: - - pos: 19.5,9.5 - parent: 127 - type: Transform -- uid: 1925 - type: SheetGlass - components: - - pos: 19.339602,10.568 - parent: 127 - type: Transform -- uid: 1926 - type: ClothingBeltUtilityFilled - components: - - pos: 19.522284,8.851732 - parent: 127 - type: Transform -- uid: 1927 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-9.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1928 - type: ToolboxMechanicalFilled - components: - - pos: 19.522284,8.320482 - parent: 127 - type: Transform -- uid: 1929 - type: CableHV - components: - - pos: 43.5,-5.5 - parent: 127 - type: Transform -- uid: 1930 - type: CrewMonitoringServer - components: - - pos: 37.5,-8.5 - parent: 127 - type: Transform -- uid: 1931 - type: PowerCellRecharger - components: - - pos: 19.5,6.5 - parent: 127 - type: Transform -- uid: 1932 - type: AppraisalTool - components: - - pos: 19.366034,7.7736077 - parent: 127 - type: Transform -- uid: 1933 - type: AppraisalTool - components: - - pos: 19.647284,7.6486077 - parent: 127 - type: Transform -- uid: 1934 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -8.5,-7.5 - parent: 127 - type: Transform -- uid: 1935 - type: MedkitFilled - components: - - pos: 2.5316663,2.5464108 - parent: 127 - type: Transform -- uid: 1936 - type: BriefcaseBrownFilled - components: - - pos: 58.46476,-41.268314 - parent: 127 - type: Transform -- uid: 1937 - type: CableHV - components: - - pos: 44.5,-6.5 - parent: 127 - type: Transform -- uid: 1938 - type: ClosetFireFilled - components: - - pos: 12.5,7.5 - parent: 127 - type: Transform -- uid: 1939 - type: DisposalUnit - components: - - pos: 14.5,21.5 - parent: 127 - type: Transform -- uid: 1940 - type: PottedPlantRandom - components: - - pos: 12.5,17.5 - parent: 127 - type: Transform -- uid: 1941 - type: CableHV - components: - - pos: 19.5,2.5 - parent: 127 - type: Transform -- uid: 1942 - type: CableHV - components: - - pos: 18.5,2.5 - parent: 127 - type: Transform -- uid: 1943 - type: CableHV - components: - - pos: 17.5,2.5 - parent: 127 - type: Transform -- uid: 1944 - type: CableHV - components: - - pos: 16.5,2.5 - parent: 127 - type: Transform -- uid: 1945 - type: PottedPlantRandom - components: - - pos: 12.5,20.5 - parent: 127 - type: Transform -- uid: 1946 - type: ReinforcedWindow - components: - - pos: 13.5,17.5 - parent: 127 - type: Transform -- uid: 1947 - type: ReinforcedWindow - components: - - pos: 13.5,16.5 - parent: 127 - type: Transform -- uid: 1948 - type: Grille - components: - - pos: 13.5,16.5 - parent: 127 - type: Transform -- uid: 1949 - type: Grille - components: - - pos: 13.5,17.5 - parent: 127 - type: Transform -- uid: 1950 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-17.5 - parent: 127 - type: Transform -- uid: 1951 - type: Grille - components: - - pos: 13.5,20.5 - parent: 127 - type: Transform -- uid: 1952 - type: Grille - components: - - pos: 13.5,21.5 - parent: 127 - type: Transform -- uid: 1953 - type: CableHV - components: - - pos: 44.5,-7.5 - parent: 127 - type: Transform -- uid: 1954 - type: TwoWayLever - components: - - pos: 14.5,6.5 - parent: 127 - type: Transform - - outputs: - Left: - - port: Forward - uid: 1994 - - port: Forward - uid: 1995 - - port: Forward - uid: 1996 - Right: - - port: Reverse - uid: 1994 - - port: Reverse - uid: 1995 - - port: Reverse - uid: 1996 - Middle: - - port: Off - uid: 1994 - - port: Off - uid: 1995 - - port: Off - uid: 1996 - type: SignalTransmitter -- uid: 1955 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,-31.5 - parent: 127 - type: Transform -- uid: 1956 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -13.5,2.5 - parent: 127 - type: Transform - - devices: - - 659 - - 660 - - 661 - - 648 - - 662 - - 663 - - 664 - - 649 - - 669 - - 674 - - 653 - - 8831 - - 8832 - type: DeviceList -- uid: 1957 - type: AirlockSalvageGlassLocked - components: - - pos: 13.5,18.5 - parent: 127 - type: Transform -- uid: 1958 - type: CableHV - components: - - pos: 44.5,-8.5 - parent: 127 - type: Transform -- uid: 1959 - type: Poweredlight - components: - - pos: -1.5,-16.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1960 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-21.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1961 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1962 - type: CableHV - components: - - pos: 44.5,-9.5 - parent: 127 - type: Transform -- uid: 1963 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-2.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1964 - type: Grille - components: - - pos: 44.5,-7.5 - parent: 127 - type: Transform -- uid: 1965 - type: CrateFilledSpawner - components: - - pos: 22.5,20.5 - parent: 127 - type: Transform -- uid: 1966 - type: CableHV - components: - - pos: 15.5,2.5 - parent: 127 - type: Transform -- uid: 1967 - type: CableHV - components: - - pos: 14.5,2.5 - parent: 127 - type: Transform -- uid: 1968 - type: CableHV - components: - - pos: 13.5,2.5 - parent: 127 - type: Transform -- uid: 1969 - type: CableHV - components: - - pos: 12.5,2.5 - parent: 127 - type: Transform -- uid: 1970 - type: CableHV - components: - - pos: 11.5,2.5 - parent: 127 - type: Transform -- uid: 1971 - type: CableHV - components: - - pos: 10.5,2.5 - parent: 127 - type: Transform -- uid: 1972 - type: CableHV - components: - - pos: 9.5,2.5 - parent: 127 - type: Transform -- uid: 1973 - type: CableHV - components: - - pos: 9.5,1.5 - parent: 127 - type: Transform -- uid: 1974 - type: CrateEmergencyInternals - components: - - pos: 21.5,21.5 - parent: 127 - type: Transform -- uid: 1975 - type: CableMV - components: - - pos: 38.5,-3.5 - parent: 127 - type: Transform -- uid: 1976 - type: CrateSalvageEquipment - components: - - pos: 22.5,21.5 - parent: 127 - type: Transform -- uid: 1977 - type: ConveyorBelt - components: - - pos: 16.5,21.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1999 - Forward: - - port: Left - uid: 1999 - Off: - - port: Middle - uid: 1999 - type: SignalReceiver -- uid: 1978 - type: ConveyorBelt - components: - - pos: 16.5,22.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1999 - Forward: - - port: Left - uid: 1999 - Off: - - port: Middle - uid: 1999 - type: SignalReceiver -- uid: 1979 - type: ConveyorBelt - components: - - pos: 16.5,23.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1999 - Forward: - - port: Left - uid: 1999 - Off: - - port: Middle - uid: 1999 - type: SignalReceiver -- uid: 1980 - type: ConveyorBelt - components: - - pos: 16.5,24.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1999 - Forward: - - port: Left - uid: 1999 - Off: - - port: Middle - uid: 1999 - type: SignalReceiver -- uid: 1981 - type: ConveyorBelt - components: - - pos: 16.5,25.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1999 - Forward: - - port: Left - uid: 1999 - Off: - - port: Middle - uid: 1999 - type: SignalReceiver -- uid: 1982 - type: ConveyorBelt - components: - - pos: 20.5,21.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 2000 - Forward: - - port: Left - uid: 2000 - Off: - - port: Middle - uid: 2000 - type: SignalReceiver -- uid: 1983 - type: ConveyorBelt - components: - - pos: 20.5,22.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 2000 - Forward: - - port: Left - uid: 2000 - Off: - - port: Middle - uid: 2000 - type: SignalReceiver -- uid: 1984 - type: ConveyorBelt - components: - - pos: 20.5,23.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 2000 - Forward: - - port: Left - uid: 2000 - Off: - - port: Middle - uid: 2000 - type: SignalReceiver -- uid: 1985 - type: ConveyorBelt - components: - - pos: 20.5,24.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 2000 - Forward: - - port: Left - uid: 2000 - Off: - - port: Middle - uid: 2000 - type: SignalReceiver -- uid: 1986 - type: ConveyorBelt - components: - - pos: 20.5,25.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 2000 - Forward: - - port: Left - uid: 2000 - Off: - - port: Middle - uid: 2000 - type: SignalReceiver -- uid: 1987 - type: ConveyorBelt - components: - - pos: 14.5,16.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1998 - - port: Right - uid: 1997 - Forward: - - port: Left - uid: 1998 - - port: Left - uid: 1997 - Off: - - port: Middle - uid: 1998 - - port: Middle - uid: 1997 - type: SignalReceiver -- uid: 1988 - type: ConveyorBelt - components: - - pos: 14.5,15.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1998 - - port: Right - uid: 1997 - Forward: - - port: Left - uid: 1998 - - port: Left - uid: 1997 - Off: - - port: Middle - uid: 1998 - - port: Middle - uid: 1997 - type: SignalReceiver -- uid: 1989 - type: ConveyorBelt - components: - - pos: 14.5,14.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1998 - - port: Right - uid: 1997 - Forward: - - port: Left - uid: 1998 - - port: Left - uid: 1997 - Off: - - port: Middle - uid: 1998 - - port: Middle - uid: 1997 - type: SignalReceiver -- uid: 1990 - type: ConveyorBelt - components: - - pos: 14.5,13.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1998 - - port: Right - uid: 1997 - Forward: - - port: Left - uid: 1998 - - port: Left - uid: 1997 - Off: - - port: Middle - uid: 1998 - - port: Middle - uid: 1997 - type: SignalReceiver -- uid: 1991 - type: ConveyorBelt - components: - - pos: 14.5,12.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1998 - - port: Right - uid: 1997 - Forward: - - port: Left - uid: 1998 - - port: Left - uid: 1997 - Off: - - port: Middle - uid: 1998 - - port: Middle - uid: 1997 - type: SignalReceiver -- uid: 1992 - type: ConveyorBelt - components: - - pos: 14.5,11.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1998 - - port: Right - uid: 1997 - Forward: - - port: Left - uid: 1998 - - port: Left - uid: 1997 - Off: - - port: Middle - uid: 1998 - - port: Middle - uid: 1997 - type: SignalReceiver -- uid: 1993 - type: ConveyorBelt - components: - - pos: 14.5,10.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1998 - - port: Right - uid: 1997 - Forward: - - port: Left - uid: 1998 - - port: Left - uid: 1997 - Off: - - port: Middle - uid: 1998 - - port: Middle - uid: 1997 - type: SignalReceiver -- uid: 1994 - type: ConveyorBelt - components: - - pos: 13.5,6.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1954 - Forward: - - port: Left - uid: 1954 - Off: - - port: Middle - uid: 1954 - type: SignalReceiver -- uid: 1995 - type: ConveyorBelt - components: - - pos: 13.5,5.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1954 - Forward: - - port: Left - uid: 1954 - Off: - - port: Middle - uid: 1954 - type: SignalReceiver -- uid: 1996 - type: ConveyorBelt - components: - - pos: 13.5,4.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 1954 - Forward: - - port: Left - uid: 1954 - Off: - - port: Middle - uid: 1954 - type: SignalReceiver -- uid: 1997 - type: TwoWayLever - components: - - pos: 15.5,9.5 - parent: 127 - type: Transform - - outputs: - Left: - - port: Forward - uid: 1993 - - port: Forward - uid: 1992 - - port: Forward - uid: 1991 - - port: Forward - uid: 1990 - - port: Forward - uid: 1989 - - port: Forward - uid: 1988 - - port: Forward - uid: 1987 - Right: - - port: Reverse - uid: 1993 - - port: Reverse - uid: 1992 - - port: Reverse - uid: 1991 - - port: Reverse - uid: 1990 - - port: Reverse - uid: 1989 - - port: Reverse - uid: 1988 - - port: Reverse - uid: 1987 - Middle: - - port: Off - uid: 1993 - - port: Off - uid: 1992 - - port: Off - uid: 1991 - - port: Off - uid: 1990 - - port: Off - uid: 1989 - - port: Off - uid: 1988 - - port: Off - uid: 1987 - type: SignalTransmitter -- uid: 1998 - type: TwoWayLever - components: - - pos: 15.5,17.5 - parent: 127 - type: Transform - - outputs: - Left: - - port: Forward - uid: 1987 - - port: Forward - uid: 1988 - - port: Forward - uid: 1989 - - port: Forward - uid: 1990 - - port: Forward - uid: 1991 - - port: Forward - uid: 1992 - - port: Forward - uid: 1993 - Right: - - port: Reverse - uid: 1987 - - port: Reverse - uid: 1988 - - port: Reverse - uid: 1989 - - port: Reverse - uid: 1990 - - port: Reverse - uid: 1991 - - port: Reverse - uid: 1992 - - port: Reverse - uid: 1993 - Middle: - - port: Off - uid: 1987 - - port: Off - uid: 1988 - - port: Off - uid: 1989 - - port: Off - uid: 1990 - - port: Off - uid: 1991 - - port: Off - uid: 1992 - - port: Off - uid: 1993 - type: SignalTransmitter -- uid: 1999 - type: TwoWayLever - components: - - pos: 15.5,21.5 - parent: 127 - type: Transform - - outputs: - Left: - - port: Forward - uid: 1977 - - port: Forward - uid: 1978 - - port: Forward - uid: 1979 - - port: Forward - uid: 1980 - - port: Forward - uid: 1981 - Right: - - port: Reverse - uid: 1977 - - port: Reverse - uid: 1978 - - port: Reverse - uid: 1979 - - port: Reverse - uid: 1980 - - port: Reverse - uid: 1981 - Middle: - - port: Off - uid: 1977 - - port: Off - uid: 1978 - - port: Off - uid: 1979 - - port: Off - uid: 1980 - - port: Off - uid: 1981 - type: SignalTransmitter -- uid: 2000 - type: TwoWayLever - components: - - pos: 20.5,19.5 - parent: 127 - type: Transform - - outputs: - Left: - - port: Forward - uid: 1982 - - port: Forward - uid: 1983 - - port: Forward - uid: 1984 - - port: Forward - uid: 1985 - - port: Forward - uid: 1986 - Right: - - port: Reverse - uid: 1982 - - port: Reverse - uid: 1983 - - port: Reverse - uid: 1984 - - port: Reverse - uid: 1985 - - port: Reverse - uid: 1986 - Middle: - - port: Off - uid: 1982 - - port: Off - uid: 1983 - - port: Off - uid: 1984 - - port: Off - uid: 1985 - - port: Off - uid: 1986 - type: SignalTransmitter -- uid: 2001 - type: OxygenCanister - components: - - pos: 10.5,23.5 - parent: 127 - type: Transform -- uid: 2002 - type: AtmosDeviceFanTiny - components: - - pos: 17.5,25.5 - parent: 127 - type: Transform -- uid: 2003 - type: AtmosDeviceFanTiny - components: - - pos: 19.5,25.5 - parent: 127 - type: Transform -- uid: 2004 - type: RandomSpawner - components: - - pos: 10.5,20.5 - parent: 127 - type: Transform -- uid: 2005 - type: RandomSpawner - components: - - pos: 15.5,18.5 - parent: 127 - type: Transform -- uid: 2006 - type: RandomSpawner - components: - - pos: 19.5,20.5 - parent: 127 - type: Transform -- uid: 2007 - type: RandomSpawner - components: - - pos: 16.5,13.5 - parent: 127 - type: Transform -- uid: 2008 - type: RandomSpawner - components: - - pos: 14.5,9.5 - parent: 127 - type: Transform -- uid: 2009 - type: RandomSpawner - components: - - pos: 17.5,7.5 - parent: 127 - type: Transform -- uid: 2010 - type: RandomSpawner - components: - - pos: 16.5,4.5 - parent: 127 - type: Transform -- uid: 2011 - type: RandomSpawner - components: - - pos: 21.5,1.5 - parent: 127 - type: Transform -- uid: 2012 - type: RandomSpawner - components: - - pos: 24.5,2.5 - parent: 127 - type: Transform -- uid: 2013 - type: RandomSpawner - components: - - pos: 27.5,1.5 - parent: 127 - type: Transform -- uid: 2014 - type: AirlockEngineeringGlassLocked - components: - - pos: 29.5,3.5 - parent: 127 - type: Transform -- uid: 2015 - type: AirlockEngineeringGlassLocked - components: - - pos: 30.5,3.5 - parent: 127 - type: Transform -- uid: 2016 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 3.5,5.5 - parent: 127 - type: Transform - - devices: - - 5646 - - 5649 - - 5648 - - 5647 - - 5645 - - 5644 - - 6223 - - 6220 - - 6221 - - 6222 - - 6219 - - 5926 - - 5935 - - 5951 - - 5950 - - 6669 - - 6668 - - 5735 - - 5734 - - 6594 - - 6596 - type: DeviceList -- uid: 2017 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -5.5,20.5 - parent: 127 - type: Transform - - devices: - - 6218 - - 6220 - - 6221 - - 6217 - - 5728 - - 5727 - - 6600 - - 5729 - type: DeviceList -- uid: 2018 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 3.5,7.5 - parent: 127 - type: Transform - - devices: - - 5646 - - 5649 - - 5648 - - 5647 - - 5645 - - 5644 - - 6223 - - 6220 - - 6221 - - 6222 - - 6219 - type: DeviceList -- uid: 2019 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -5.5,21.5 - parent: 127 - type: Transform - - devices: - - 6218 - - 6220 - - 6221 - - 6217 - type: DeviceList -- uid: 2020 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 17.5,12.5 - parent: 127 - type: Transform - - devices: - - 6215 - - 6214 - - 6143 - - 6210 - - 6211 - - 6208 - - 6207 - - 6206 - - 6205 - - 6209 - - 6238 - - 5660 - - 5654 - - 5670 - - 6225 - - 5661 - - 5659 - type: DeviceList -- uid: 2021 - type: Pickaxe - components: - - rot: 1.5707963267948966 rad - pos: 9.41856,21.503643 - parent: 127 - type: Transform -- uid: 2022 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 17.5,14.5 - parent: 127 - type: Transform - - devices: - - 6215 - - 6214 - - 6143 - - 6210 - - 6211 - - 6208 - - 6207 - - 6206 - - 6205 - - 6209 - type: DeviceList -- uid: 2023 - type: Pickaxe - components: - - rot: 1.5707963267948966 rad - pos: 9.57481,21.613018 - parent: 127 - type: Transform -- uid: 2024 - type: MedkitFilled - components: - - pos: 12.51292,9.578969 - parent: 127 - type: Transform -- uid: 2025 - type: MedkitFilled - components: - - pos: 12.45042,9.672719 - parent: 127 - type: Transform -- uid: 2026 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,7.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 2027 - type: EmergencyLight - components: - - pos: 2.5,-1.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 2028 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,-28.5 - parent: 127 - type: Transform -- uid: 2029 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,7.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 2030 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,16.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 2031 - type: EmergencyLight - components: - - pos: -2.5,24.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 2032 - type: EmergencyLight - components: - - pos: 17.5,10.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 2033 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,18.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 2034 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,19.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2035 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 20.5,19.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2036 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,14.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2037 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 21.5,16.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2038 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,23.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2039 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,23.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2040 - type: PoweredlightSodium - components: - - rot: 3.141592653589793 rad - pos: 7.5,23.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2041 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,9.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2042 - type: SurvivalKnife - components: - - pos: 11.433111,16.641094 - parent: 127 - type: Transform -- uid: 2043 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,6.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2044 - type: SurvivalKnife - components: - - pos: 11.636236,16.609844 - parent: 127 - type: Transform -- uid: 2045 - type: PowerCellRecharger - components: - - pos: 12.5,16.5 - parent: 127 - type: Transform -- uid: 2046 - type: PowerCellMedium - components: - - pos: 12.401861,21.703594 - parent: 127 - type: Transform -- uid: 2047 - type: PowerCellMedium - components: - - pos: 12.604986,21.53172 - parent: 127 - type: Transform -- uid: 2048 - type: Multitool - components: - - pos: 19.305506,7.255504 - parent: 127 - type: Transform -- uid: 2049 - type: CableHV - components: - - pos: -6.5,-7.5 - parent: 127 - type: Transform -- uid: 2050 - type: CableHV - components: - - pos: -6.5,-6.5 - parent: 127 - type: Transform -- uid: 2051 - type: CableHV - components: - - pos: -6.5,-5.5 - parent: 127 - type: Transform -- uid: 2052 - type: CableHV - components: - - pos: -6.5,-4.5 - parent: 127 - type: Transform -- uid: 2053 - type: CableHV - components: - - pos: -7.5,-4.5 - parent: 127 - type: Transform -- uid: 2054 - type: CableHV - components: - - pos: -8.5,-4.5 - parent: 127 - type: Transform -- uid: 2055 - type: CableHV - components: - - pos: -9.5,-4.5 - parent: 127 - type: Transform -- uid: 2056 - type: CableHV - components: - - pos: -10.5,-4.5 - parent: 127 - type: Transform -- uid: 2057 - type: CableHV - components: - - pos: -11.5,-4.5 - parent: 127 - type: Transform -- uid: 2058 - type: WallReinforced - components: - - pos: -28.5,-2.5 - parent: 127 - type: Transform -- uid: 2059 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -28.5,2.5 - parent: 127 - type: Transform -- uid: 2060 - type: WallSolid - components: - - pos: -23.5,4.5 - parent: 127 - type: Transform -- uid: 2061 - type: AirlockScienceLocked - components: - - pos: -20.5,4.5 - parent: 127 - type: Transform -- uid: 2062 - type: WallSolid - components: - - pos: -25.5,4.5 - parent: 127 - type: Transform -- uid: 2063 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-3.5 - parent: 127 - type: Transform -- uid: 2064 - type: WallReinforced - components: - - pos: -28.5,-3.5 - parent: 127 - type: Transform -- uid: 2065 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-3.5 - parent: 127 - type: Transform -- uid: 2066 - type: WallSolid - components: - - pos: -16.5,-0.5 - parent: 127 - type: Transform -- uid: 2067 - type: CableHV - components: - - pos: -14.5,-3.5 - parent: 127 - type: Transform -- uid: 2068 - type: CableHV - components: - - pos: -14.5,-4.5 - parent: 127 - type: Transform -- uid: 2069 - type: CableHV - components: - - pos: -13.5,-4.5 - parent: 127 - type: Transform -- uid: 2070 - type: CableHV - components: - - pos: -12.5,-4.5 - parent: 127 - type: Transform -- uid: 2071 - type: CableHV - components: - - pos: -14.5,0.5 - parent: 127 - type: Transform -- uid: 2072 - type: CableHV - components: - - pos: -14.5,-0.5 - parent: 127 - type: Transform -- uid: 2073 - type: CableHV - components: - - pos: -14.5,-1.5 - parent: 127 - type: Transform -- uid: 2074 - type: CableHV - components: - - pos: -14.5,-2.5 - parent: 127 - type: Transform -- uid: 2075 - type: WallSolid - components: - - pos: -12.5,-3.5 - parent: 127 - type: Transform -- uid: 2076 - type: CableHV - components: - - pos: -14.5,2.5 - parent: 127 - type: Transform -- uid: 2077 - type: CableHV - components: - - pos: -14.5,1.5 - parent: 127 - type: Transform -- uid: 2078 - type: WallSolid - components: - - pos: -13.5,-3.5 - parent: 127 - type: Transform -- uid: 2079 - type: SignAnomaly - components: - - pos: -9.5,-0.5 - parent: 127 - type: Transform -- uid: 2080 - type: CableHV - components: - - pos: -16.5,2.5 - parent: 127 - type: Transform -- uid: 2081 - type: CableHV - components: - - pos: -15.5,13.5 - parent: 127 - type: Transform -- uid: 2082 - type: CableHV - components: - - pos: -14.5,13.5 - parent: 127 - type: Transform -- uid: 2083 - type: CableHV - components: - - pos: -13.5,13.5 - parent: 127 - type: Transform -- uid: 2084 - type: CableHV - components: - - pos: -12.5,13.5 - parent: 127 - type: Transform -- uid: 2085 - type: CableHV - components: - - pos: -11.5,13.5 - parent: 127 - type: Transform -- uid: 2086 - type: CableHV - components: - - pos: -10.5,13.5 - parent: 127 - type: Transform -- uid: 2087 - type: CableHV - components: - - pos: -5.5,26.5 - parent: 127 - type: Transform -- uid: 2088 - type: CableHV - components: - - pos: -6.5,26.5 - parent: 127 - type: Transform -- uid: 2089 - type: CableHV - components: - - pos: -10.5,14.5 - parent: 127 - type: Transform -- uid: 2090 - type: CableHV - components: - - pos: -10.5,15.5 - parent: 127 - type: Transform -- uid: 2091 - type: CableHV - components: - - pos: -10.5,16.5 - parent: 127 - type: Transform -- uid: 2092 - type: CableHV - components: - - pos: -9.5,14.5 - parent: 127 - type: Transform -- uid: 2093 - type: CableHV - components: - - pos: -8.5,14.5 - parent: 127 - type: Transform -- uid: 2094 - type: CableHV - components: - - pos: -8.5,15.5 - parent: 127 - type: Transform -- uid: 2095 - type: CableHV - components: - - pos: -8.5,16.5 - parent: 127 - type: Transform -- uid: 2096 - type: CableHV - components: - - pos: -8.5,17.5 - parent: 127 - type: Transform -- uid: 2097 - type: CableHV - components: - - pos: -8.5,18.5 - parent: 127 - type: Transform -- uid: 2098 - type: CableHV - components: - - pos: -8.5,19.5 - parent: 127 - type: Transform -- uid: 2099 - type: CableHV - components: - - pos: -8.5,20.5 - parent: 127 - type: Transform -- uid: 2100 - type: CableHV - components: - - pos: -8.5,21.5 - parent: 127 - type: Transform -- uid: 2101 - type: CableHV - components: - - pos: -9.5,21.5 - parent: 127 - type: Transform -- uid: 2102 - type: CableHV - components: - - pos: -11.5,25.5 - parent: 127 - type: Transform -- uid: 2103 - type: ComputerSolarControl - components: - - rot: 3.141592653589793 rad - pos: -11.5,20.5 - parent: 127 - type: Transform -- uid: 2104 - type: SMESBasic - components: - - pos: -10.5,22.5 - parent: 127 - type: Transform -- uid: 2105 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: -11.5,22.5 - parent: 127 - type: Transform -- uid: 2106 - type: CableHV - components: - - pos: -7.5,21.5 - parent: 127 - type: Transform -- uid: 2107 - type: CableHV - components: - - pos: -7.5,22.5 - parent: 127 - type: Transform -- uid: 2108 - type: CableHV - components: - - pos: -7.5,23.5 - parent: 127 - type: Transform -- uid: 2109 - type: CableHV - components: - - pos: -7.5,24.5 - parent: 127 - type: Transform -- uid: 2110 - type: CableHV - components: - - pos: -7.5,25.5 - parent: 127 - type: Transform -- uid: 2111 - type: CableHV - components: - - pos: -7.5,26.5 - parent: 127 - type: Transform -- uid: 2112 - type: CableHV - components: - - pos: 2.5,23.5 - parent: 127 - type: Transform -- uid: 2113 - type: CableHV - components: - - pos: 2.5,24.5 - parent: 127 - type: Transform -- uid: 2114 - type: CableHV - components: - - pos: 2.5,25.5 - parent: 127 - type: Transform -- uid: 2115 - type: CableHV - components: - - pos: 2.5,26.5 - parent: 127 - type: Transform -- uid: 2116 - type: CableHV - components: - - pos: 1.5,26.5 - parent: 127 - type: Transform -- uid: 2117 - type: CableHV - components: - - pos: 0.5,26.5 - parent: 127 - type: Transform -- uid: 2118 - type: CableHV - components: - - pos: -0.5,26.5 - parent: 127 - type: Transform -- uid: 2119 - type: CableHV - components: - - pos: -1.5,26.5 - parent: 127 - type: Transform -- uid: 2120 - type: CableHV - components: - - pos: -2.5,26.5 - parent: 127 - type: Transform -- uid: 2121 - type: CableHV - components: - - pos: -3.5,26.5 - parent: 127 - type: Transform -- uid: 2122 - type: CableHV - components: - - pos: -4.5,26.5 - parent: 127 - type: Transform -- uid: 2123 - type: CableHV - components: - - pos: 2.5,22.5 - parent: 127 - type: Transform -- uid: 2124 - type: CableHV - components: - - pos: 2.5,21.5 - parent: 127 - type: Transform -- uid: 2125 - type: CableHV - components: - - pos: 2.5,20.5 - parent: 127 - type: Transform -- uid: 2126 - type: CableHV - components: - - pos: 3.5,20.5 - parent: 127 - type: Transform -- uid: 2127 - type: CableHV - components: - - pos: 4.5,20.5 - parent: 127 - type: Transform -- uid: 2128 - type: CableHV - components: - - pos: 5.5,20.5 - parent: 127 - type: Transform -- uid: 2129 - type: CableHV - components: - - pos: 6.5,20.5 - parent: 127 - type: Transform -- uid: 2130 - type: CableHV - components: - - pos: 7.5,20.5 - parent: 127 - type: Transform -- uid: 2131 - type: CableHV - components: - - pos: 7.5,19.5 - parent: 127 - type: Transform -- uid: 2132 - type: CableHV - components: - - pos: 7.5,18.5 - parent: 127 - type: Transform -- uid: 2133 - type: CableHV - components: - - pos: 7.5,17.5 - parent: 127 - type: Transform -- uid: 2134 - type: CableHV - components: - - pos: 7.5,16.5 - parent: 127 - type: Transform -- uid: 2135 - type: CableHV - components: - - pos: 7.5,15.5 - parent: 127 - type: Transform -- uid: 2136 - type: CableHV - components: - - pos: 7.5,14.5 - parent: 127 - type: Transform -- uid: 2137 - type: CableHV - components: - - pos: 7.5,13.5 - parent: 127 - type: Transform -- uid: 2138 - type: CableHV - components: - - pos: 8.5,13.5 - parent: 127 - type: Transform -- uid: 2139 - type: CableHV - components: - - pos: 9.5,13.5 - parent: 127 - type: Transform -- uid: 2140 - type: CableHV - components: - - pos: 10.5,13.5 - parent: 127 - type: Transform -- uid: 2141 - type: CableHV - components: - - pos: 11.5,13.5 - parent: 127 - type: Transform -- uid: 2142 - type: CableHV - components: - - pos: 12.5,13.5 - parent: 127 - type: Transform -- uid: 2143 - type: CableHV - components: - - pos: 13.5,13.5 - parent: 127 - type: Transform -- uid: 2144 - type: CableHV - components: - - pos: 14.5,13.5 - parent: 127 - type: Transform -- uid: 2145 - type: CableHV - components: - - pos: 15.5,13.5 - parent: 127 - type: Transform -- uid: 2146 - type: CableHV - components: - - pos: 16.5,13.5 - parent: 127 - type: Transform -- uid: 2147 - type: CableHV - components: - - pos: 17.5,13.5 - parent: 127 - type: Transform -- uid: 2148 - type: CableHV - components: - - pos: 18.5,13.5 - parent: 127 - type: Transform -- uid: 2149 - type: CableHV - components: - - pos: 19.5,13.5 - parent: 127 - type: Transform -- uid: 2150 - type: CableHV - components: - - pos: 20.5,13.5 - parent: 127 - type: Transform -- uid: 2151 - type: CableHV - components: - - pos: 21.5,13.5 - parent: 127 - type: Transform -- uid: 2152 - type: CableHV - components: - - pos: 22.5,13.5 - parent: 127 - type: Transform -- uid: 2153 - type: CableHV - components: - - pos: 22.5,12.5 - parent: 127 - type: Transform -- uid: 2154 - type: CableHV - components: - - pos: 22.5,11.5 - parent: 127 - type: Transform -- uid: 2155 - type: CableHV - components: - - pos: 23.5,11.5 - parent: 127 - type: Transform -- uid: 2156 - type: CableHV - components: - - pos: 24.5,11.5 - parent: 127 - type: Transform -- uid: 2157 - type: CableHV - components: - - pos: 9.5,12.5 - parent: 127 - type: Transform -- uid: 2158 - type: CableHV - components: - - pos: 9.5,11.5 - parent: 127 - type: Transform -- uid: 2159 - type: CableHV - components: - - pos: 9.5,10.5 - parent: 127 - type: Transform -- uid: 2160 - type: CableHV - components: - - pos: 9.5,9.5 - parent: 127 - type: Transform -- uid: 2161 - type: CableHV - components: - - pos: 9.5,8.5 - parent: 127 - type: Transform -- uid: 2162 - type: CableHV - components: - - pos: 9.5,7.5 - parent: 127 - type: Transform -- uid: 2163 - type: CableHV - components: - - pos: 9.5,6.5 - parent: 127 - type: Transform -- uid: 2164 - type: CableHV - components: - - pos: 9.5,5.5 - parent: 127 - type: Transform -- uid: 2165 - type: CableHV - components: - - pos: 9.5,4.5 - parent: 127 - type: Transform -- uid: 2166 - type: CableHV - components: - - pos: 22.5,9.5 - parent: 127 - type: Transform -- uid: 2167 - type: CableHV - components: - - pos: 22.5,8.5 - parent: 127 - type: Transform -- uid: 2168 - type: CableHV - components: - - pos: 22.5,7.5 - parent: 127 - type: Transform -- uid: 2169 - type: CableHV - components: - - pos: 22.5,6.5 - parent: 127 - type: Transform -- uid: 2170 - type: CableHV - components: - - pos: 22.5,5.5 - parent: 127 - type: Transform -- uid: 2171 - type: CableHV - components: - - pos: 22.5,4.5 - parent: 127 - type: Transform -- uid: 2172 - type: CableHV - components: - - pos: 22.5,3.5 - parent: 127 - type: Transform -- uid: 2173 - type: CableHV - components: - - pos: 22.5,2.5 - parent: 127 - type: Transform -- uid: 2174 - type: CableHV - components: - - pos: 23.5,2.5 - parent: 127 - type: Transform -- uid: 2175 - type: CableHV - components: - - pos: 24.5,2.5 - parent: 127 - type: Transform -- uid: 2176 - type: CableHV - components: - - pos: 25.5,2.5 - parent: 127 - type: Transform -- uid: 2177 - type: CableHV - components: - - pos: 26.5,2.5 - parent: 127 - type: Transform -- uid: 2178 - type: CableHV - components: - - pos: 27.5,2.5 - parent: 127 - type: Transform -- uid: 2179 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 33.5,-1.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2180 - type: CableHV - components: - - pos: 28.5,2.5 - parent: 127 - type: Transform -- uid: 2181 - type: CableHV - components: - - pos: 29.5,2.5 - parent: 127 - type: Transform -- uid: 2182 - type: CableHV - components: - - pos: 30.5,2.5 - parent: 127 - type: Transform -- uid: 2183 - type: CableHV - components: - - pos: 30.5,3.5 - parent: 127 - type: Transform -- uid: 2184 - type: CableHV - components: - - pos: 30.5,4.5 - parent: 127 - type: Transform -- uid: 2185 - type: CableHV - components: - - pos: 30.5,5.5 - parent: 127 - type: Transform -- uid: 2186 - type: CableHV - components: - - pos: 30.5,6.5 - parent: 127 - type: Transform -- uid: 2187 - type: CableHV - components: - - pos: 30.5,7.5 - parent: 127 - type: Transform -- uid: 2188 - type: CableHV - components: - - pos: 30.5,8.5 - parent: 127 - type: Transform -- uid: 2189 - type: CableHV - components: - - pos: 31.5,8.5 - parent: 127 - type: Transform -- uid: 2190 - type: CableHV - components: - - pos: 32.5,8.5 - parent: 127 - type: Transform -- uid: 2191 - type: CableHV - components: - - pos: 33.5,8.5 - parent: 127 - type: Transform -- uid: 2192 - type: CableHV - components: - - pos: 33.5,9.5 - parent: 127 - type: Transform -- uid: 2193 - type: SubstationBasic - components: - - pos: 24.5,11.5 - parent: 127 - type: Transform -- uid: 2194 - type: SubstationBasic - components: - - pos: 26.5,11.5 - parent: 127 - type: Transform -- uid: 2195 - type: CableHV - components: - - pos: 29.5,8.5 - parent: 127 - type: Transform -- uid: 2196 - type: CableHV - components: - - pos: 28.5,8.5 - parent: 127 - type: Transform -- uid: 2197 - type: CableHV - components: - - pos: 27.5,8.5 - parent: 127 - type: Transform -- uid: 2198 - type: CableHV - components: - - pos: 26.5,8.5 - parent: 127 - type: Transform -- uid: 2199 - type: CableHV - components: - - pos: 26.5,9.5 - parent: 127 - type: Transform -- uid: 2200 - type: CableHV - components: - - pos: 26.5,10.5 - parent: 127 - type: Transform -- uid: 2201 - type: CableHV - components: - - pos: 26.5,11.5 - parent: 127 - type: Transform -- uid: 2202 - type: CableMV - components: - - pos: -10.5,16.5 - parent: 127 - type: Transform -- uid: 2203 - type: CableMV - components: - - pos: -10.5,15.5 - parent: 127 - type: Transform -- uid: 2204 - type: CableMV - components: - - pos: -10.5,14.5 - parent: 127 - type: Transform -- uid: 2205 - type: CableMV - components: - - pos: -10.5,13.5 - parent: 127 - type: Transform -- uid: 2206 - type: CableMV - components: - - pos: -9.5,13.5 - parent: 127 - type: Transform -- uid: 2207 - type: CableMV - components: - - pos: -8.5,13.5 - parent: 127 - type: Transform -- uid: 2208 - type: CableMV - components: - - pos: -8.5,12.5 - parent: 127 - type: Transform -- uid: 2209 - type: CableMV - components: - - pos: -8.5,11.5 - parent: 127 - type: Transform -- uid: 2210 - type: CableMV - components: - - pos: -8.5,10.5 - parent: 127 - type: Transform -- uid: 2211 - type: CableMV - components: - - pos: -8.5,9.5 - parent: 127 - type: Transform -- uid: 2212 - type: CableMV - components: - - pos: -8.5,8.5 - parent: 127 - type: Transform -- uid: 2213 - type: CableMV - components: - - pos: -8.5,7.5 - parent: 127 - type: Transform -- uid: 2214 - type: CableMV - components: - - pos: -8.5,6.5 - parent: 127 - type: Transform -- uid: 2215 - type: CableMV - components: - - pos: -8.5,5.5 - parent: 127 - type: Transform -- uid: 2216 - type: CableMV - components: - - pos: -8.5,4.5 - parent: 127 - type: Transform -- uid: 2217 - type: CableMV - components: - - pos: -8.5,3.5 - parent: 127 - type: Transform -- uid: 2218 - type: CableMV - components: - - pos: -8.5,2.5 - parent: 127 - type: Transform -- uid: 2219 - type: CableMV - components: - - pos: -8.5,1.5 - parent: 127 - type: Transform -- uid: 2220 - type: CableMV - components: - - pos: -8.5,0.5 - parent: 127 - type: Transform -- uid: 2221 - type: CableMV - components: - - pos: -8.5,-0.5 - parent: 127 - type: Transform -- uid: 2222 - type: CableMV - components: - - pos: -8.5,-1.5 - parent: 127 - type: Transform -- uid: 2223 - type: CableMV - components: - - pos: -8.5,-2.5 - parent: 127 - type: Transform -- uid: 2224 - type: CableMV - components: - - pos: -7.5,4.5 - parent: 127 - type: Transform -- uid: 2225 - type: CableMV - components: - - pos: -6.5,4.5 - parent: 127 - type: Transform -- uid: 2226 - type: CableMV - components: - - pos: -5.5,4.5 - parent: 127 - type: Transform -- uid: 2227 - type: CableMV - components: - - pos: -7.5,-2.5 - parent: 127 - type: Transform -- uid: 2228 - type: CableMV - components: - - pos: -6.5,-2.5 - parent: 127 - type: Transform -- uid: 2229 - type: CableMV - components: - - pos: -5.5,-2.5 - parent: 127 - type: Transform -- uid: 2230 - type: CableMV - components: - - pos: -4.5,-2.5 - parent: 127 - type: Transform -- uid: 2231 - type: CableMV - components: - - pos: -3.5,-2.5 - parent: 127 - type: Transform -- uid: 2232 - type: CableMV - components: - - pos: -2.5,-2.5 - parent: 127 - type: Transform -- uid: 2233 - type: CableMV - components: - - pos: -1.5,-2.5 - parent: 127 - type: Transform -- uid: 2234 - type: CableMV - components: - - pos: -0.5,-2.5 - parent: 127 - type: Transform -- uid: 2235 - type: CableMV - components: - - pos: 0.5,-2.5 - parent: 127 - type: Transform -- uid: 2236 - type: CableMV - components: - - pos: 1.5,-2.5 - parent: 127 - type: Transform -- uid: 2237 - type: CableMV - components: - - pos: 2.5,-2.5 - parent: 127 - type: Transform -- uid: 2238 - type: CableMV - components: - - pos: 3.5,-2.5 - parent: 127 - type: Transform -- uid: 2239 - type: CableMV - components: - - pos: 4.5,-2.5 - parent: 127 - type: Transform -- uid: 2240 - type: CableMV - components: - - pos: 4.5,-3.5 - parent: 127 - type: Transform -- uid: 2241 - type: CableMV - components: - - pos: 4.5,-4.5 - parent: 127 - type: Transform -- uid: 2242 - type: CableMV - components: - - pos: 4.5,-5.5 - parent: 127 - type: Transform -- uid: 2243 - type: CableMV - components: - - pos: -10.5,20.5 - parent: 127 - type: Transform -- uid: 2244 - type: CableMV - components: - - pos: -10.5,21.5 - parent: 127 - type: Transform -- uid: 2245 - type: CableMV - components: - - pos: -9.5,21.5 - parent: 127 - type: Transform -- uid: 2246 - type: CableMV - components: - - pos: -8.5,21.5 - parent: 127 - type: Transform -- uid: 2247 - type: CableMV - components: - - pos: -7.5,21.5 - parent: 127 - type: Transform -- uid: 2248 - type: CableMV - components: - - pos: -6.5,21.5 - parent: 127 - type: Transform -- uid: 2249 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2250 - type: CableMV - components: - - pos: -6.5,20.5 - parent: 127 - type: Transform -- uid: 2251 - type: CableMV - components: - - pos: -6.5,19.5 - parent: 127 - type: Transform -- uid: 2252 - type: CableMV - components: - - pos: -5.5,19.5 - parent: 127 - type: Transform -- uid: 2253 - type: CableMV - components: - - pos: -4.5,19.5 - parent: 127 - type: Transform -- uid: 2254 - type: CableMV - components: - - pos: -3.5,19.5 - parent: 127 - type: Transform -- uid: 2255 - type: CableMV - components: - - pos: -2.5,19.5 - parent: 127 - type: Transform -- uid: 2256 - type: CableMV - components: - - pos: -1.5,19.5 - parent: 127 - type: Transform -- uid: 2257 - type: CableMV - components: - - pos: -0.5,19.5 - parent: 127 - type: Transform -- uid: 2258 - type: CableMV - components: - - pos: -0.5,18.5 - parent: 127 - type: Transform -- uid: 2259 - type: CableMV - components: - - pos: -0.5,17.5 - parent: 127 - type: Transform -- uid: 2260 - type: CableMV - components: - - pos: -0.5,16.5 - parent: 127 - type: Transform -- uid: 2261 - type: CableMV - components: - - pos: -0.5,15.5 - parent: 127 - type: Transform -- uid: 2262 - type: CableMV - components: - - pos: -0.5,14.5 - parent: 127 - type: Transform -- uid: 2263 - type: CableMV - components: - - pos: -0.5,13.5 - parent: 127 - type: Transform -- uid: 2264 - type: CableMV - components: - - pos: 0.5,13.5 - parent: 127 - type: Transform -- uid: 2265 - type: CableMV - components: - - pos: 24.5,11.5 - parent: 127 - type: Transform -- uid: 2266 - type: CableMV - components: - - pos: 23.5,11.5 - parent: 127 - type: Transform -- uid: 2267 - type: CableMV - components: - - pos: 22.5,11.5 - parent: 127 - type: Transform -- uid: 2268 - type: CableMV - components: - - pos: 22.5,12.5 - parent: 127 - type: Transform -- uid: 2269 - type: CableMV - components: - - pos: 22.5,13.5 - parent: 127 - type: Transform -- uid: 2270 - type: CableMV - components: - - pos: 21.5,13.5 - parent: 127 - type: Transform -- uid: 2271 - type: CableMV - components: - - pos: 20.5,13.5 - parent: 127 - type: Transform -- uid: 2272 - type: CableMV - components: - - pos: 19.5,13.5 - parent: 127 - type: Transform -- uid: 2273 - type: CableMV - components: - - pos: 18.5,13.5 - parent: 127 - type: Transform -- uid: 2274 - type: CableMV - components: - - pos: 17.5,13.5 - parent: 127 - type: Transform -- uid: 2275 - type: CableMV - components: - - pos: 16.5,13.5 - parent: 127 - type: Transform -- uid: 2276 - type: CableMV - components: - - pos: 16.5,12.5 - parent: 127 - type: Transform -- uid: 2277 - type: CableHV - components: - - pos: 43.5,-9.5 - parent: 127 - type: Transform -- uid: 2278 - type: CableHV - components: - - pos: 43.5,-10.5 - parent: 127 - type: Transform -- uid: 2279 - type: CableMV - components: - - pos: 16.5,11.5 - parent: 127 - type: Transform -- uid: 2280 - type: CableMV - components: - - pos: 17.5,11.5 - parent: 127 - type: Transform -- uid: 2281 - type: CableMV - components: - - pos: 16.5,14.5 - parent: 127 - type: Transform -- uid: 2282 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-36.5 - parent: 127 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 2283 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-3.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2284 - type: Poweredlight - components: - - pos: 32.5,-3.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2285 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-5.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2286 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 25.5,-35.5 - parent: 127 - type: Transform -- uid: 2287 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 29.5,-33.5 - parent: 127 - type: Transform -- uid: 2288 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-17.5 - parent: 127 - type: Transform -- uid: 2289 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 23.5,-17.5 - parent: 127 - type: Transform -- uid: 2290 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 24.5,-33.5 - parent: 127 - type: Transform -- uid: 2291 - type: Poweredlight - components: - - pos: 43.5,0.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2292 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-24.5 - parent: 127 - type: Transform -- uid: 2293 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-24.5 - parent: 127 - type: Transform -- uid: 2294 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-24.5 - parent: 127 - type: Transform -- uid: 2295 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-15.5 - parent: 127 - type: Transform -- uid: 2296 - type: CableApcExtension - components: - - pos: 36.5,-3.5 - parent: 127 - type: Transform -- uid: 2297 - type: CableApcExtension - components: - - pos: 41.5,-4.5 - parent: 127 - type: Transform -- uid: 2298 - type: CableApcExtension - components: - - pos: 42.5,-4.5 - parent: 127 - type: Transform -- uid: 2299 - type: CableApcExtension - components: - - pos: 43.5,-4.5 - parent: 127 - type: Transform -- uid: 2300 - type: CableApcExtension - components: - - pos: 34.5,-4.5 - parent: 127 - type: Transform -- uid: 2301 - type: CableApcExtension - components: - - pos: 34.5,-3.5 - parent: 127 - type: Transform -- uid: 2302 - type: CableApcExtension - components: - - pos: 34.5,-2.5 - parent: 127 - type: Transform -- uid: 2303 - type: CableApcExtension - components: - - pos: 34.5,-1.5 - parent: 127 - type: Transform -- uid: 2304 - type: CableApcExtension - components: - - pos: 39.5,-4.5 - parent: 127 - type: Transform -- uid: 2305 - type: CableApcExtension - components: - - pos: 39.5,-3.5 - parent: 127 - type: Transform -- uid: 2306 - type: CableApcExtension - components: - - pos: 39.5,-2.5 - parent: 127 - type: Transform -- uid: 2307 - type: CableApcExtension - components: - - pos: 39.5,-1.5 - parent: 127 - type: Transform -- uid: 2308 - type: CableApcExtension - components: - - pos: 39.5,-0.5 - parent: 127 - type: Transform -- uid: 2309 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 29.5,-27.5 - parent: 127 - type: Transform -- uid: 2310 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,0.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2311 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-34.5 - parent: 127 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 2312 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 40.5,-36.5 - parent: 127 - type: Transform -- uid: 2313 - type: PottedPlantRandom - components: - - pos: 41.5,0.5 - parent: 127 - type: Transform -- uid: 2314 - type: BannerNanotrasen - components: - - pos: 29.5,-5.5 - parent: 127 - type: Transform -- uid: 2315 - type: PottedPlantRandom - components: - - pos: 37.5,-2.5 - parent: 127 - type: Transform -- uid: 2316 - type: DisposalUnit - components: - - pos: 34.5,-5.5 - parent: 127 - type: Transform -- uid: 2317 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-26.5 - parent: 127 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 2318 - type: CableMV - components: - - pos: 16.5,15.5 - parent: 127 - type: Transform -- uid: 2319 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 39.5,-33.5 - parent: 127 - type: Transform -- uid: 2320 - type: CableMV - components: - - pos: 16.5,16.5 - parent: 127 - type: Transform -- uid: 2321 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 35.5,-37.5 - parent: 127 - type: Transform -- uid: 2322 - type: CableMV - components: - - pos: 16.5,17.5 - parent: 127 - type: Transform -- uid: 2323 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-38.5 - parent: 127 - type: Transform -- uid: 2324 - type: CableMV - components: - - pos: 16.5,18.5 - parent: 127 - type: Transform -- uid: 2325 - type: CableMV - components: - - pos: 17.5,18.5 - parent: 127 - type: Transform -- uid: 2326 - type: CableMV - components: - - pos: 18.5,18.5 - parent: 127 - type: Transform -- uid: 2327 - type: CableMV - components: - - pos: 19.5,18.5 - parent: 127 - type: Transform -- uid: 2328 - type: CableMV - components: - - pos: 26.5,11.5 - parent: 127 - type: Transform -- uid: 2329 - type: CableMV - components: - - pos: 26.5,12.5 - parent: 127 - type: Transform -- uid: 2330 - type: CableHV - components: - - pos: 9.5,3.5 - parent: 127 - type: Transform -- uid: 2331 - type: CableMV - components: - - pos: 26.5,10.5 - parent: 127 - type: Transform -- uid: 2332 - type: CableMV - components: - - pos: 26.5,9.5 - parent: 127 - type: Transform -- uid: 2333 - type: CableMV - components: - - pos: 26.5,8.5 - parent: 127 - type: Transform -- uid: 2334 - type: CableMV - components: - - pos: 26.5,7.5 - parent: 127 - type: Transform -- uid: 2335 - type: CableMV - components: - - pos: 26.5,6.5 - parent: 127 - type: Transform -- uid: 2336 - type: CableMV - components: - - pos: 27.5,6.5 - parent: 127 - type: Transform -- uid: 2337 - type: CableMV - components: - - pos: 28.5,6.5 - parent: 127 - type: Transform -- uid: 2338 - type: CableMV - components: - - pos: 29.5,6.5 - parent: 127 - type: Transform -- uid: 2339 - type: CableMV - components: - - pos: 30.5,6.5 - parent: 127 - type: Transform -- uid: 2340 - type: CableMV - components: - - pos: 31.5,6.5 - parent: 127 - type: Transform -- uid: 2341 - type: CableMV - components: - - pos: 32.5,6.5 - parent: 127 - type: Transform -- uid: 2342 - type: CableMV - components: - - pos: 33.5,6.5 - parent: 127 - type: Transform -- uid: 2343 - type: CableMV - components: - - pos: 34.5,6.5 - parent: 127 - type: Transform -- uid: 2344 - type: CableMV - components: - - pos: 35.5,6.5 - parent: 127 - type: Transform -- uid: 2345 - type: CableMV - components: - - pos: 36.5,6.5 - parent: 127 - type: Transform -- uid: 2346 - type: CableMV - components: - - pos: 37.5,6.5 - parent: 127 - type: Transform -- uid: 2347 - type: CableMV - components: - - pos: 38.5,6.5 - parent: 127 - type: Transform -- uid: 2348 - type: CableMV - components: - - pos: 38.5,7.5 - parent: 127 - type: Transform -- uid: 2349 - type: CableMV - components: - - pos: 38.5,8.5 - parent: 127 - type: Transform -- uid: 2350 - type: CableMV - components: - - pos: 38.5,9.5 - parent: 127 - type: Transform -- uid: 2351 - type: CableMV - components: - - pos: 38.5,10.5 - parent: 127 - type: Transform -- uid: 2352 - type: CableMV - components: - - pos: 38.5,11.5 - parent: 127 - type: Transform -- uid: 2353 - type: CableApcExtension - components: - - pos: 19.5,18.5 - parent: 127 - type: Transform -- uid: 2354 - type: CableApcExtension - components: - - pos: 18.5,18.5 - parent: 127 - type: Transform -- uid: 2355 - type: CableApcExtension - components: - - pos: 17.5,18.5 - parent: 127 - type: Transform -- uid: 2356 - type: CableApcExtension - components: - - pos: 16.5,18.5 - parent: 127 - type: Transform -- uid: 2357 - type: CableApcExtension - components: - - pos: 15.5,18.5 - parent: 127 - type: Transform -- uid: 2358 - type: WallReinforced - components: - - pos: 41.5,-25.5 - parent: 127 - type: Transform -- uid: 2359 - type: WallReinforced - components: - - pos: 28.5,-17.5 - parent: 127 - type: Transform -- uid: 2360 - type: CableApcExtension - components: - - pos: 14.5,18.5 - parent: 127 - type: Transform -- uid: 2361 - type: CableApcExtension - components: - - pos: 13.5,18.5 - parent: 127 - type: Transform -- uid: 2362 - type: CableApcExtension - components: - - pos: 12.5,18.5 - parent: 127 - type: Transform -- uid: 2363 - type: CableApcExtension - components: - - pos: 11.5,18.5 - parent: 127 - type: Transform -- uid: 2364 - type: CableApcExtension - components: - - pos: 10.5,18.5 - parent: 127 - type: Transform -- uid: 2365 - type: CableApcExtension - components: - - pos: 11.5,19.5 - parent: 127 - type: Transform -- uid: 2366 - type: CableApcExtension - components: - - pos: 11.5,20.5 - parent: 127 - type: Transform -- uid: 2367 - type: CableApcExtension - components: - - pos: 11.5,21.5 - parent: 127 - type: Transform -- uid: 2368 - type: CableApcExtension - components: - - pos: 11.5,22.5 - parent: 127 - type: Transform -- uid: 2369 - type: CableApcExtension - components: - - pos: 11.5,23.5 - parent: 127 - type: Transform -- uid: 2370 - type: CableApcExtension - components: - - pos: 11.5,24.5 - parent: 127 - type: Transform -- uid: 2371 - type: CableApcExtension - components: - - pos: 10.5,24.5 - parent: 127 - type: Transform -- uid: 2372 - type: CableApcExtension - components: - - pos: 9.5,24.5 - parent: 127 - type: Transform -- uid: 2373 - type: CableApcExtension - components: - - pos: 8.5,24.5 - parent: 127 - type: Transform -- uid: 2374 - type: CableApcExtension - components: - - pos: 17.5,19.5 - parent: 127 - type: Transform -- uid: 2375 - type: CableApcExtension - components: - - pos: 17.5,20.5 - parent: 127 - type: Transform -- uid: 2376 - type: CableApcExtension - components: - - pos: 17.5,21.5 - parent: 127 - type: Transform -- uid: 2377 - type: CableApcExtension - components: - - pos: 17.5,22.5 - parent: 127 - type: Transform -- uid: 2378 - type: CableApcExtension - components: - - pos: 17.5,23.5 - parent: 127 - type: Transform -- uid: 2379 - type: CableApcExtension - components: - - pos: 19.5,19.5 - parent: 127 - type: Transform -- uid: 2380 - type: CableApcExtension - components: - - pos: 19.5,20.5 - parent: 127 - type: Transform -- uid: 2381 - type: CableApcExtension - components: - - pos: 19.5,21.5 - parent: 127 - type: Transform -- uid: 2382 - type: CableApcExtension - components: - - pos: 19.5,22.5 - parent: 127 - type: Transform -- uid: 2383 - type: CableApcExtension - components: - - pos: 19.5,23.5 - parent: 127 - type: Transform -- uid: 2384 - type: CableApcExtension - components: - - pos: 19.5,17.5 - parent: 127 - type: Transform -- uid: 2385 - type: CableApcExtension - components: - - pos: 20.5,17.5 - parent: 127 - type: Transform -- uid: 2386 - type: CableApcExtension - components: - - pos: 16.5,17.5 - parent: 127 - type: Transform -- uid: 2387 - type: CableApcExtension - components: - - pos: 16.5,16.5 - parent: 127 - type: Transform -- uid: 2388 - type: CableApcExtension - components: - - pos: 16.5,15.5 - parent: 127 - type: Transform -- uid: 2389 - type: CableApcExtension - components: - - pos: 17.5,11.5 - parent: 127 - type: Transform -- uid: 2390 - type: CableApcExtension - components: - - pos: 16.5,11.5 - parent: 127 - type: Transform -- uid: 2391 - type: CableApcExtension - components: - - pos: 16.5,12.5 - parent: 127 - type: Transform -- uid: 2392 - type: CableApcExtension - components: - - pos: 16.5,10.5 - parent: 127 - type: Transform -- uid: 2393 - type: CableApcExtension - components: - - pos: 16.5,9.5 - parent: 127 - type: Transform -- uid: 2394 - type: CableApcExtension - components: - - pos: 16.5,8.5 - parent: 127 - type: Transform -- uid: 2395 - type: CableApcExtension - components: - - pos: 16.5,7.5 - parent: 127 - type: Transform -- uid: 2396 - type: CableApcExtension - components: - - pos: 16.5,6.5 - parent: 127 - type: Transform -- uid: 2397 - type: CableApcExtension - components: - - pos: 15.5,6.5 - parent: 127 - type: Transform -- uid: 2398 - type: CableApcExtension - components: - - pos: 14.5,6.5 - parent: 127 - type: Transform -- uid: 2399 - type: CableApcExtension - components: - - pos: 15.5,9.5 - parent: 127 - type: Transform -- uid: 2400 - type: CableApcExtension - components: - - pos: 14.5,9.5 - parent: 127 - type: Transform -- uid: 2401 - type: CableApcExtension - components: - - pos: 17.5,9.5 - parent: 127 - type: Transform -- uid: 2402 - type: CableApcExtension - components: - - pos: 17.5,6.5 - parent: 127 - type: Transform -- uid: 2403 - type: CableApcExtension - components: - - pos: -5.5,4.5 - parent: 127 - type: Transform -- uid: 2404 - type: CableApcExtension - components: - - pos: -6.5,4.5 - parent: 127 - type: Transform -- uid: 2405 - type: CableApcExtension - components: - - pos: -7.5,4.5 - parent: 127 - type: Transform -- uid: 2406 - type: CableApcExtension - components: - - pos: -8.5,4.5 - parent: 127 - type: Transform -- uid: 2407 - type: CableApcExtension - components: - - pos: -9.5,4.5 - parent: 127 - type: Transform -- uid: 2408 - type: CableApcExtension - components: - - pos: -10.5,4.5 - parent: 127 - type: Transform -- uid: 2409 - type: CableApcExtension - components: - - pos: -11.5,4.5 - parent: 127 - type: Transform -- uid: 2410 - type: CableApcExtension - components: - - pos: -7.5,5.5 - parent: 127 - type: Transform -- uid: 2411 - type: CableApcExtension - components: - - pos: -7.5,6.5 - parent: 127 - type: Transform -- uid: 2412 - type: CableApcExtension - components: - - pos: -7.5,7.5 - parent: 127 - type: Transform -- uid: 2413 - type: CableApcExtension - components: - - pos: -7.5,8.5 - parent: 127 - type: Transform -- uid: 2414 - type: CableApcExtension - components: - - pos: -7.5,9.5 - parent: 127 - type: Transform -- uid: 2415 - type: CableApcExtension - components: - - pos: -7.5,10.5 - parent: 127 - type: Transform -- uid: 2416 - type: CableApcExtension - components: - - pos: -8.5,8.5 - parent: 127 - type: Transform -- uid: 2417 - type: CableApcExtension - components: - - pos: -9.5,8.5 - parent: 127 - type: Transform -- uid: 2418 - type: CableApcExtension - components: - - pos: -10.5,8.5 - parent: 127 - type: Transform -- uid: 2419 - type: CableApcExtension - components: - - pos: -11.5,8.5 - parent: 127 - type: Transform -- uid: 2420 - type: CableApcExtension - components: - - pos: -7.5,3.5 - parent: 127 - type: Transform -- uid: 2421 - type: CableApcExtension - components: - - pos: -7.5,2.5 - parent: 127 - type: Transform -- uid: 2422 - type: CableApcExtension - components: - - pos: -7.5,1.5 - parent: 127 - type: Transform -- uid: 2423 - type: CableApcExtension - components: - - pos: -8.5,1.5 - parent: 127 - type: Transform -- uid: 2424 - type: CableApcExtension - components: - - pos: -9.5,1.5 - parent: 127 - type: Transform -- uid: 2425 - type: CableApcExtension - components: - - pos: -10.5,1.5 - parent: 127 - type: Transform -- uid: 2426 - type: CableApcExtension - components: - - pos: -11.5,1.5 - parent: 127 - type: Transform -- uid: 2427 - type: CableApcExtension - components: - - pos: -6.5,1.5 - parent: 127 - type: Transform -- uid: 2428 - type: CableApcExtension - components: - - pos: -5.5,1.5 - parent: 127 - type: Transform -- uid: 2429 - type: CableApcExtension - components: - - pos: -4.5,1.5 - parent: 127 - type: Transform -- uid: 2430 - type: CableApcExtension - components: - - pos: -7.5,0.5 - parent: 127 - type: Transform -- uid: 2431 - type: CableApcExtension - components: - - pos: -7.5,-0.5 - parent: 127 - type: Transform -- uid: 2432 - type: CableApcExtension - components: - - pos: -7.5,-1.5 - parent: 127 - type: Transform -- uid: 2433 - type: CableApcExtension - components: - - pos: 4.5,-5.5 - parent: 127 - type: Transform -- uid: 2434 - type: CableApcExtension - components: - - pos: 4.5,-4.5 - parent: 127 - type: Transform -- uid: 2435 - type: CableApcExtension - components: - - pos: 4.5,-3.5 - parent: 127 - type: Transform -- uid: 2436 - type: CableApcExtension - components: - - pos: 4.5,-2.5 - parent: 127 - type: Transform -- uid: 2437 - type: CableApcExtension - components: - - pos: 3.5,-2.5 - parent: 127 - type: Transform -- uid: 2438 - type: CableApcExtension - components: - - pos: 2.5,-2.5 - parent: 127 - type: Transform -- uid: 2439 - type: CableApcExtension - components: - - pos: 1.5,-2.5 - parent: 127 - type: Transform -- uid: 2440 - type: CableApcExtension - components: - - pos: 0.5,-2.5 - parent: 127 - type: Transform -- uid: 2441 - type: CableApcExtension - components: - - pos: -0.5,-2.5 - parent: 127 - type: Transform -- uid: 2442 - type: CableApcExtension - components: - - pos: -1.5,-2.5 - parent: 127 - type: Transform -- uid: 2443 - type: CableApcExtension - components: - - pos: -2.5,-2.5 - parent: 127 - type: Transform -- uid: 2444 - type: CableApcExtension - components: - - pos: -3.5,-2.5 - parent: 127 - type: Transform -- uid: 2445 - type: CableApcExtension - components: - - pos: -4.5,-2.5 - parent: 127 - type: Transform -- uid: 2446 - type: CableApcExtension - components: - - pos: 3.5,-5.5 - parent: 127 - type: Transform -- uid: 2447 - type: CableApcExtension - components: - - pos: 2.5,-5.5 - parent: 127 - type: Transform -- uid: 2448 - type: CableApcExtension - components: - - pos: 1.5,-5.5 - parent: 127 - type: Transform -- uid: 2449 - type: CableApcExtension - components: - - pos: 0.5,-5.5 - parent: 127 - type: Transform -- uid: 2450 - type: CableApcExtension - components: - - pos: -0.5,-5.5 - parent: 127 - type: Transform -- uid: 2451 - type: CableApcExtension - components: - - pos: -1.5,-5.5 - parent: 127 - type: Transform -- uid: 2452 - type: CableApcExtension - components: - - pos: -1.5,-6.5 - parent: 127 - type: Transform -- uid: 2453 - type: CableApcExtension - components: - - pos: -2.5,-6.5 - parent: 127 - type: Transform -- uid: 2454 - type: CableApcExtension - components: - - pos: -3.5,-6.5 - parent: 127 - type: Transform -- uid: 2455 - type: CableApcExtension - components: - - pos: 5.5,-4.5 - parent: 127 - type: Transform -- uid: 2456 - type: CableApcExtension - components: - - pos: 6.5,-4.5 - parent: 127 - type: Transform -- uid: 2457 - type: CableApcExtension - components: - - pos: 6.5,-5.5 - parent: 127 - type: Transform -- uid: 2458 - type: CableApcExtension - components: - - pos: 6.5,-6.5 - parent: 127 - type: Transform -- uid: 2459 - type: CableApcExtension - components: - - pos: 5.5,-2.5 - parent: 127 - type: Transform -- uid: 2460 - type: CableApcExtension - components: - - pos: 1.5,-1.5 - parent: 127 - type: Transform -- uid: 2461 - type: CableApcExtension - components: - - pos: 0.5,13.5 - parent: 127 - type: Transform -- uid: 2462 - type: CableApcExtension - components: - - pos: 0.5,12.5 - parent: 127 - type: Transform -- uid: 2463 - type: CableApcExtension - components: - - pos: 0.5,11.5 - parent: 127 - type: Transform -- uid: 2464 - type: CableApcExtension - components: - - pos: 0.5,10.5 - parent: 127 - type: Transform -- uid: 2465 - type: CableApcExtension - components: - - pos: 0.5,9.5 - parent: 127 - type: Transform -- uid: 2466 - type: CableApcExtension - components: - - pos: 0.5,8.5 - parent: 127 - type: Transform -- uid: 2467 - type: CableApcExtension - components: - - pos: 0.5,7.5 - parent: 127 - type: Transform -- uid: 2468 - type: CableApcExtension - components: - - pos: 0.5,6.5 - parent: 127 - type: Transform -- uid: 2469 - type: CableApcExtension - components: - - pos: 0.5,5.5 - parent: 127 - type: Transform -- uid: 2470 - type: CableApcExtension - components: - - pos: 0.5,4.5 - parent: 127 - type: Transform -- uid: 2471 - type: CableApcExtension - components: - - pos: 1.5,6.5 - parent: 127 - type: Transform -- uid: 2472 - type: CableApcExtension - components: - - pos: 2.5,6.5 - parent: 127 - type: Transform -- uid: 2473 - type: CableApcExtension - components: - - pos: 3.5,6.5 - parent: 127 - type: Transform -- uid: 2474 - type: CableApcExtension - components: - - pos: 4.5,6.5 - parent: 127 - type: Transform -- uid: 2475 - type: CableApcExtension - components: - - pos: 5.5,6.5 - parent: 127 - type: Transform -- uid: 2476 - type: CableApcExtension - components: - - pos: 6.5,6.5 - parent: 127 - type: Transform -- uid: 2477 - type: CableApcExtension - components: - - pos: 6.5,5.5 - parent: 127 - type: Transform -- uid: 2478 - type: CableApcExtension - components: - - pos: -0.5,7.5 - parent: 127 - type: Transform -- uid: 2479 - type: CableApcExtension - components: - - pos: -1.5,7.5 - parent: 127 - type: Transform -- uid: 2480 - type: CableApcExtension - components: - - pos: -2.5,7.5 - parent: 127 - type: Transform -- uid: 2481 - type: CableApcExtension - components: - - pos: -1.5,14.5 - parent: 127 - type: Transform -- uid: 2482 - type: CableApcExtension - components: - - pos: -2.5,14.5 - parent: 127 - type: Transform -- uid: 2483 - type: CableApcExtension - components: - - pos: -3.5,14.5 - parent: 127 - type: Transform -- uid: 2484 - type: CableApcExtension - components: - - pos: -4.5,14.5 - parent: 127 - type: Transform -- uid: 2485 - type: CableApcExtension - components: - - pos: -0.5,14.5 - parent: 127 - type: Transform -- uid: 2486 - type: CableApcExtension - components: - - pos: -0.5,13.5 - parent: 127 - type: Transform -- uid: 2487 - type: CableApcExtension - components: - - pos: -0.5,15.5 - parent: 127 - type: Transform -- uid: 2488 - type: CableApcExtension - components: - - pos: -0.5,16.5 - parent: 127 - type: Transform -- uid: 2489 - type: CableApcExtension - components: - - pos: -0.5,17.5 - parent: 127 - type: Transform -- uid: 2490 - type: CableApcExtension - components: - - pos: -0.5,18.5 - parent: 127 - type: Transform -- uid: 2491 - type: CableApcExtension - components: - - pos: -0.5,19.5 - parent: 127 - type: Transform -- uid: 2492 - type: CableApcExtension - components: - - pos: -0.5,20.5 - parent: 127 - type: Transform -- uid: 2493 - type: CableApcExtension - components: - - pos: -0.5,21.5 - parent: 127 - type: Transform -- uid: 2494 - type: CableApcExtension - components: - - pos: -1.5,21.5 - parent: 127 - type: Transform -- uid: 2495 - type: CableApcExtension - components: - - pos: -1.5,22.5 - parent: 127 - type: Transform -- uid: 2496 - type: WallReinforced - components: - - pos: -7.5,-11.5 - parent: 127 - type: Transform -- uid: 2497 - type: WallSolid - components: - - pos: -1.5,-11.5 - parent: 127 - type: Transform -- uid: 2498 - type: CableApcExtension - components: - - pos: -1.5,19.5 - parent: 127 - type: Transform -- uid: 2499 - type: CableApcExtension - components: - - pos: -2.5,19.5 - parent: 127 - type: Transform -- uid: 2500 - type: CableApcExtension - components: - - pos: -3.5,19.5 - parent: 127 - type: Transform -- uid: 2501 - type: CableApcExtension - components: - - pos: 0.5,15.5 - parent: 127 - type: Transform -- uid: 2502 - type: CableApcExtension - components: - - pos: 1.5,15.5 - parent: 127 - type: Transform -- uid: 2503 - type: CableApcExtension - components: - - pos: 2.5,15.5 - parent: 127 - type: Transform -- uid: 2504 - type: CableApcExtension - components: - - pos: 3.5,15.5 - parent: 127 - type: Transform -- uid: 2505 - type: CableApcExtension - components: - - pos: -4.5,19.5 - parent: 127 - type: Transform -- uid: 2506 - type: CableApcExtension - components: - - pos: -5.5,19.5 - parent: 127 - type: Transform -- uid: 2507 - type: CableApcExtension - components: - - pos: -6.5,19.5 - parent: 127 - type: Transform -- uid: 2508 - type: CableApcExtension - components: - - pos: -7.5,19.5 - parent: 127 - type: Transform -- uid: 2509 - type: CableApcExtension - components: - - pos: -7.5,11.5 - parent: 127 - type: Transform -- uid: 2510 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -8.5,-6.5 - parent: 127 - type: Transform -- uid: 2511 - type: WallSolid - components: - - pos: -0.5,-11.5 - parent: 127 - type: Transform -- uid: 2512 - type: WallSolid - components: - - pos: 1.5,-10.5 - parent: 127 - type: Transform -- uid: 2513 - type: WallSolid - components: - - pos: -4.5,-17.5 - parent: 127 - type: Transform -- uid: 2514 - type: CableApcExtension - components: - - pos: -8.5,11.5 - parent: 127 - type: Transform -- uid: 2515 - type: CableApcExtension - components: - - pos: -8.5,12.5 - parent: 127 - type: Transform -- uid: 2516 - type: CableApcExtension - components: - - pos: -8.5,13.5 - parent: 127 - type: Transform -- uid: 2517 - type: CableApcExtension - components: - - pos: -9.5,13.5 - parent: 127 - type: Transform -- uid: 2518 - type: CableApcExtension - components: - - pos: -10.5,13.5 - parent: 127 - type: Transform -- uid: 2519 - type: CableApcExtension - components: - - pos: -7.5,20.5 - parent: 127 - type: Transform -- uid: 2520 - type: CableApcExtension - components: - - pos: -7.5,21.5 - parent: 127 - type: Transform -- uid: 2521 - type: CableApcExtension - components: - - pos: -8.5,21.5 - parent: 127 - type: Transform -- uid: 2522 - type: CableApcExtension - components: - - pos: -9.5,21.5 - parent: 127 - type: Transform -- uid: 2523 - type: CableApcExtension - components: - - pos: -10.5,21.5 - parent: 127 - type: Transform -- uid: 2524 - type: CableApcExtension - components: - - pos: 26.5,12.5 - parent: 127 - type: Transform -- uid: 2525 - type: WallReinforced - components: - - pos: 29.5,-17.5 - parent: 127 - type: Transform -- uid: 2526 - type: CableApcExtension - components: - - pos: 27.5,12.5 - parent: 127 - type: Transform -- uid: 2527 - type: CableApcExtension - components: - - pos: 28.5,12.5 - parent: 127 - type: Transform -- uid: 2528 - type: CableApcExtension - components: - - pos: 29.5,12.5 - parent: 127 - type: Transform -- uid: 2529 - type: CableApcExtension - components: - - pos: 30.5,12.5 - parent: 127 - type: Transform -- uid: 2530 - type: CableApcExtension - components: - - pos: 31.5,12.5 - parent: 127 - type: Transform -- uid: 2531 - type: CableApcExtension - components: - - pos: 29.5,13.5 - parent: 127 - type: Transform -- uid: 2532 - type: CableApcExtension - components: - - pos: 29.5,14.5 - parent: 127 - type: Transform -- uid: 2533 - type: CableApcExtension - components: - - pos: 29.5,15.5 - parent: 127 - type: Transform -- uid: 2534 - type: CableApcExtension - components: - - pos: 29.5,16.5 - parent: 127 - type: Transform -- uid: 2535 - type: CableApcExtension - components: - - pos: 29.5,17.5 - parent: 127 - type: Transform -- uid: 2536 - type: CableApcExtension - components: - - pos: 29.5,18.5 - parent: 127 - type: Transform -- uid: 2537 - type: CableApcExtension - components: - - pos: 29.5,19.5 - parent: 127 - type: Transform -- uid: 2538 - type: CableApcExtension - components: - - pos: 31.5,13.5 - parent: 127 - type: Transform -- uid: 2539 - type: CableApcExtension - components: - - pos: 32.5,13.5 - parent: 127 - type: Transform -- uid: 2540 - type: CableApcExtension - components: - - pos: 33.5,13.5 - parent: 127 - type: Transform -- uid: 2541 - type: CableApcExtension - components: - - pos: 34.5,13.5 - parent: 127 - type: Transform -- uid: 2542 - type: CableApcExtension - components: - - pos: 34.5,14.5 - parent: 127 - type: Transform -- uid: 2543 - type: CableApcExtension - components: - - pos: 34.5,15.5 - parent: 127 - type: Transform -- uid: 2544 - type: CableApcExtension - components: - - pos: 34.5,16.5 - parent: 127 - type: Transform -- uid: 2545 - type: CableApcExtension - components: - - pos: 35.5,16.5 - parent: 127 - type: Transform -- uid: 2546 - type: CableApcExtension - components: - - pos: 36.5,16.5 - parent: 127 - type: Transform -- uid: 2547 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -7.5,-6.5 - parent: 127 - type: Transform -- uid: 2548 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -10.5,-6.5 - parent: 127 - type: Transform -- uid: 2549 - type: CableApcExtension - components: - - pos: 34.5,12.5 - parent: 127 - type: Transform -- uid: 2550 - type: CableApcExtension - components: - - pos: 35.5,12.5 - parent: 127 - type: Transform -- uid: 2551 - type: CableApcExtension - components: - - pos: 36.5,12.5 - parent: 127 - type: Transform -- uid: 2552 - type: CableApcExtension - components: - - pos: 29.5,11.5 - parent: 127 - type: Transform -- uid: 2553 - type: CableApcExtension - components: - - pos: 29.5,10.5 - parent: 127 - type: Transform -- uid: 2554 - type: CableApcExtension - components: - - pos: 29.5,9.5 - parent: 127 - type: Transform -- uid: 2555 - type: CableApcExtension - components: - - pos: 29.5,8.5 - parent: 127 - type: Transform -- uid: 2556 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-24.5 - parent: 127 - type: Transform -- uid: 2557 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-24.5 - parent: 127 - type: Transform -- uid: 2558 - type: BedsheetHOP - components: - - pos: 27.5,-9.5 - parent: 127 - type: Transform -- uid: 2559 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-14.5 - parent: 127 - type: Transform -- uid: 2560 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-14.5 - parent: 127 - type: Transform -- uid: 2561 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-14.5 - parent: 127 - type: Transform -- uid: 2562 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-14.5 - parent: 127 - type: Transform -- uid: 2563 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-14.5 - parent: 127 - type: Transform -- uid: 2564 - type: DogBed - components: - - pos: 26.5,-4.5 - parent: 127 - type: Transform -- uid: 2565 - type: TableWood - components: - - pos: 27.5,-4.5 - parent: 127 - type: Transform -- uid: 2566 - type: UniformPrinter - components: - - pos: 27.5,-5.5 - parent: 127 - type: Transform -- uid: 2567 - type: SpawnMobCorgi - components: - - pos: 26.5,-4.5 - parent: 127 - type: Transform -- uid: 2568 - type: FaxMachineBase - components: - - pos: 25.5,-7.5 - parent: 127 - type: Transform - - name: HoP Office - type: FaxMachine -- uid: 2569 - type: CableApcExtension - components: - - pos: 26.5,-5.5 - parent: 127 - type: Transform -- uid: 2570 - type: VendingMachineCart - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,-6.5 - parent: 127 - type: Transform -- uid: 2571 - type: Bed - components: - - pos: 27.5,-9.5 - parent: 127 - type: Transform -- uid: 2572 - type: ComputerCrewMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-10.5 - parent: 127 - type: Transform -- uid: 2573 - type: HandLabeler - components: - - pos: 25.534033,-10.377988 - parent: 127 - type: Transform -- uid: 2574 - type: SpawnPointHeadOfPersonnel - components: - - pos: 26.5,-10.5 - parent: 127 - type: Transform -- uid: 2575 - type: CableApcExtension - components: - - pos: 26.5,-8.5 - parent: 127 - type: Transform -- uid: 2576 - type: CableApcExtension - components: - - pos: 26.5,-9.5 - parent: 127 - type: Transform -- uid: 2577 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 35.5,-25.5 - parent: 127 - type: Transform -- uid: 2578 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-6.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2579 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 25.5,-36.5 - parent: 127 - type: Transform -- uid: 2580 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-10.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2581 - type: MaterialCloth - components: - - pos: 27.455908,-4.3779874 - parent: 127 - type: Transform -- uid: 2582 - type: MaterialDurathread - components: - - pos: 27.483091,-4.4092374 - parent: 127 - type: Transform -- uid: 2583 - type: CableHV - components: - - pos: 29.5,-10.5 - parent: 127 - type: Transform -- uid: 2584 - type: CableHV - components: - - pos: 29.5,-11.5 - parent: 127 - type: Transform -- uid: 2585 - type: CableHV - components: - - pos: 29.5,-12.5 - parent: 127 - type: Transform -- uid: 2586 - type: CableHV - components: - - pos: 28.5,-12.5 - parent: 127 - type: Transform -- uid: 2587 - type: CableHV - components: - - pos: 27.5,-12.5 - parent: 127 - type: Transform -- uid: 2588 - type: CableHV - components: - - pos: 26.5,-12.5 - parent: 127 - type: Transform -- uid: 2589 - type: CableHV - components: - - pos: 25.5,-12.5 - parent: 127 - type: Transform -- uid: 2590 - type: CableHV - components: - - pos: 24.5,-12.5 - parent: 127 - type: Transform -- uid: 2591 - type: CableHV - components: - - pos: 23.5,-12.5 - parent: 127 - type: Transform -- uid: 2592 - type: CableHV - components: - - pos: 22.5,-12.5 - parent: 127 - type: Transform -- uid: 2593 - type: CableHV - components: - - pos: 22.5,-11.5 - parent: 127 - type: Transform -- uid: 2594 - type: CableHV - components: - - pos: 22.5,-10.5 - parent: 127 - type: Transform -- uid: 2595 - type: WallReinforced - components: - - pos: 23.5,-11.5 - parent: 127 - type: Transform -- uid: 2596 - type: WallSolid - components: - - pos: 2.5,-10.5 - parent: 127 - type: Transform -- uid: 2597 - type: ChairWood - components: - - pos: 13.5,-0.5 - parent: 127 - type: Transform -- uid: 2598 - type: WallSolid - components: - - pos: 8.5,-11.5 - parent: 127 - type: Transform -- uid: 2599 - type: TableWood - components: - - pos: 13.5,-1.5 - parent: 127 - type: Transform -- uid: 2600 - type: TableWood - components: - - pos: 18.5,-5.5 - parent: 127 - type: Transform -- uid: 2601 - type: TableWood - components: - - pos: 17.5,-5.5 - parent: 127 - type: Transform -- uid: 2602 - type: Grille - components: - - pos: 20.5,-7.5 - parent: 127 - type: Transform -- uid: 2603 - type: WindoorBarKitchenLocked - components: - - rot: 3.141592653589793 rad - pos: 19.5,-5.5 - parent: 127 - type: Transform -- uid: 2604 - type: ReinforcedWindow - components: - - pos: 11.5,-7.5 - parent: 127 - type: Transform -- uid: 2605 - type: WallSolid - components: - - pos: -4.5,-13.5 - parent: 127 - type: Transform -- uid: 2606 - type: TableWood - components: - - pos: 14.5,-7.5 - parent: 127 - type: Transform -- uid: 2607 - type: Grille - components: - - pos: 20.5,-6.5 - parent: 127 - type: Transform -- uid: 2608 - type: WallSolid - components: - - pos: -4.5,-14.5 - parent: 127 - type: Transform -- uid: 2609 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 127 - type: Transform -- uid: 2610 - type: CableApcExtension - components: - - pos: 29.5,7.5 - parent: 127 - type: Transform -- uid: 2611 - type: ReinforcedWindow - components: - - pos: 20.5,-7.5 - parent: 127 - type: Transform -- uid: 2612 - type: Grille - components: - - pos: 11.5,-6.5 - parent: 127 - type: Transform -- uid: 2613 - type: Grille - components: - - pos: 11.5,-7.5 - parent: 127 - type: Transform -- uid: 2614 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 20.5,-5.5 - parent: 127 - type: Transform -- uid: 2615 - type: TableWood - components: - - pos: 14.5,-5.5 - parent: 127 - type: Transform -- uid: 2616 - type: ChairWood - components: - - pos: 16.5,-1.5 - parent: 127 - type: Transform -- uid: 2617 - type: SoapOmega - components: - - pos: -10.553613,-19.495047 - parent: 127 - type: Transform -- uid: 2618 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 15.5,-3.5 - parent: 127 - type: Transform -- uid: 2619 - type: ReinforcedWindow - components: - - pos: 11.5,-6.5 - parent: 127 - type: Transform -- uid: 2620 - type: BoozeDispenser - components: - - rot: 3.141592653589793 rad - pos: 13.5,-7.5 - parent: 127 - type: Transform -- uid: 2621 - type: TableWood - components: - - pos: 13.5,-5.5 - parent: 127 - type: Transform -- uid: 2622 - type: WallSolid - components: - - pos: 20.5,-8.5 - parent: 127 - type: Transform -- uid: 2623 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 14.5,-11.5 - parent: 127 - type: Transform -- uid: 2624 - type: WallSolid - components: - - pos: 7.5,-11.5 - parent: 127 - type: Transform -- uid: 2625 - type: WallReinforced - components: - - pos: 24.5,-14.5 - parent: 127 - type: Transform -- uid: 2626 - type: ReinforcedWindow - components: - - pos: 20.5,-6.5 - parent: 127 - type: Transform -- uid: 2627 - type: WallReinforced - components: - - pos: 23.5,-14.5 - parent: 127 - type: Transform -- uid: 2628 - type: ChairWood - components: - - pos: 15.5,-1.5 - parent: 127 - type: Transform -- uid: 2629 - type: WallSolid - components: - - pos: 1.5,-11.5 - parent: 127 - type: Transform -- uid: 2630 - type: soda_dispenser - components: - - rot: 3.141592653589793 rad - pos: 14.5,-7.5 - parent: 127 - type: Transform -- uid: 2631 - type: FirelockGlass - components: - - pos: 8.5,-17.5 - parent: 127 - type: Transform -- uid: 2632 - type: WallSolid - components: - - pos: 6.5,-11.5 - parent: 127 - type: Transform -- uid: 2633 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 14.5,-8.5 - parent: 127 - type: Transform -- uid: 2634 - type: WallSolid - components: - - pos: 5.5,-11.5 - parent: 127 - type: Transform -- uid: 2635 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 14.5,-9.5 - parent: 127 - type: Transform -- uid: 2636 - type: WallSolid - components: - - pos: 11.5,-8.5 - parent: 127 - type: Transform -- uid: 2637 - type: WallSolid - components: - - pos: 13.5,-8.5 - parent: 127 - type: Transform -- uid: 2638 - type: FoodMeat - components: - - pos: 12.446189,-10.635295 - parent: 127 - type: Transform -- uid: 2639 - type: AtmosDeviceFanTiny - components: - - pos: 11.5,-10.5 - parent: 127 - type: Transform -- uid: 2640 - type: WallSolid - components: - - pos: 4.5,-10.5 - parent: 127 - type: Transform -- uid: 2641 - type: KitchenSpike - components: - - pos: 13.5,-9.5 - parent: 127 - type: Transform -- uid: 2642 - type: Grille - components: - - pos: 16.5,-8.5 - parent: 127 - type: Transform -- uid: 2643 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 19.5,-12.5 - parent: 127 - type: Transform -- uid: 2644 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 18.5,-1.5 - parent: 127 - type: Transform -- uid: 2645 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 16.5,-12.5 - parent: 127 - type: Transform -- uid: 2646 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 18.5,-12.5 - parent: 127 - type: Transform -- uid: 2647 - type: AirlockServiceLocked - components: - - rot: 3.141592653589793 rad - pos: 17.5,-12.5 - parent: 127 - type: Transform -- uid: 2648 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 11.5,-16.5 - parent: 127 - type: Transform -- uid: 2649 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 12.5,-8.5 - parent: 127 - type: Transform -- uid: 2650 - type: WindoorBarKitchenLocked - components: - - pos: 17.5,-8.5 - parent: 127 - type: Transform -- uid: 2651 - type: VendingMachineDinnerware - components: - - flags: SessionSpecific - type: MetaData - - pos: 15.5,-11.5 - parent: 127 - type: Transform -- uid: 2652 - type: BannerNanotrasen - components: - - pos: 41.5,-2.5 - parent: 127 - type: Transform -- uid: 2653 - type: PottedPlantRandom - components: - - pos: 10.5,-1.5 - parent: 127 - type: Transform -- uid: 2654 - type: TableWood - components: - - pos: 13.5,-7.5 - parent: 127 - type: Transform -- uid: 2655 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 11.5,-9.5 - parent: 127 - type: Transform -- uid: 2656 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 12.5,-12.5 - parent: 127 - type: Transform -- uid: 2657 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 13.5,-12.5 - parent: 127 - type: Transform -- uid: 2658 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 14.5,-12.5 - parent: 127 - type: Transform -- uid: 2659 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 20.5,-9.5 - parent: 127 - type: Transform -- uid: 2660 - type: StoolBar - components: - - pos: 16.5,-4.5 - parent: 127 - type: Transform -- uid: 2661 - type: StoolBar - components: - - pos: 17.5,-4.5 - parent: 127 - type: Transform -- uid: 2662 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 20.5,-12.5 - parent: 127 - type: Transform -- uid: 2663 - type: AtmosDeviceFanTiny - components: - - pos: 14.5,-10.5 - parent: 127 - type: Transform -- uid: 2664 - type: LockerBoozeFilled - components: - - pos: 16.5,-7.5 - parent: 127 - type: Transform -- uid: 2665 - type: FoodMeat - components: - - pos: 13.557394,-10.349092 - parent: 127 - type: Transform -- uid: 2666 - type: TableWood - components: - - pos: 16.5,-2.5 - parent: 127 - type: Transform -- uid: 2667 - type: TableWood - components: - - pos: 16.5,-5.5 - parent: 127 - type: Transform -- uid: 2668 - type: TableWood - components: - - pos: 15.5,-2.5 - parent: 127 - type: Transform -- uid: 2669 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 16.5,-3.5 - parent: 127 - type: Transform -- uid: 2670 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 11.5,-5.5 - parent: 127 - type: Transform -- uid: 2671 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 20.5,-9.5 - parent: 127 - type: Transform -- uid: 2672 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 11.5,-12.5 - parent: 127 - type: Transform -- uid: 2673 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 11.5,-11.5 - parent: 127 - type: Transform -- uid: 2674 - type: AirlockServiceGlassLocked - components: - - rot: 3.141592653589793 rad - pos: 20.5,-10.5 - parent: 127 - type: Transform -- uid: 2675 - type: StoolBar - components: - - pos: 14.5,-4.5 - parent: 127 - type: Transform -- uid: 2676 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 15.5,-12.5 - parent: 127 - type: Transform -- uid: 2677 - type: StoolBar - components: - - pos: 15.5,-4.5 - parent: 127 - type: Transform -- uid: 2678 - type: PianoInstrument - components: - - rot: 3.141592653589793 rad - pos: 18.5,-0.5 - parent: 127 - type: Transform -- uid: 2679 - type: ReinforcedWindow - components: - - pos: 19.5,-0.5 - parent: 127 - type: Transform -- uid: 2680 - type: FoodMeat - components: - - pos: 12.778719,-10.18792 - parent: 127 - type: Transform -- uid: 2681 - type: Table - components: - - pos: 17.5,-8.5 - parent: 127 - type: Transform -- uid: 2682 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 15.5,-7.5 - parent: 127 - type: Transform -- uid: 2683 - type: WindoorBarKitchenLocked - components: - - rot: 3.141592653589793 rad - pos: 12.5,-5.5 - parent: 127 - type: Transform -- uid: 2684 - type: WallSolid - components: - - pos: 4.5,-28.5 - parent: 127 - type: Transform -- uid: 2685 - type: Grille - components: - - pos: 19.5,-8.5 - parent: 127 - type: Transform -- uid: 2686 - type: ReinforcedWindow - components: - - pos: 15.5,-8.5 - parent: 127 - type: Transform -- uid: 2687 - type: Grille - components: - - pos: 15.5,-8.5 - parent: 127 - type: Transform -- uid: 2688 - type: ReinforcedWindow - components: - - pos: 16.5,-8.5 - parent: 127 - type: Transform -- uid: 2689 - type: AirlockFreezerLocked - components: - - pos: 14.5,-10.5 - parent: 127 - type: Transform -- uid: 2690 - type: AirlockFreezerLocked - components: - - pos: 11.5,-10.5 - parent: 127 - type: Transform -- uid: 2691 - type: WallReinforced - components: - - pos: 25.5,-14.5 - parent: 127 - type: Transform -- uid: 2692 - type: CableApcExtension - components: - - pos: 29.5,6.5 - parent: 127 - type: Transform -- uid: 2693 - type: ReinforcedWindow - components: - - pos: 20.5,-11.5 - parent: 127 - type: Transform -- uid: 2694 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: 17.5,-8.5 - parent: 127 - type: Transform -- uid: 2695 - type: Grille - components: - - pos: 20.5,-11.5 - parent: 127 - type: Transform -- uid: 2696 - type: Paper - components: - - pos: 2.5,-11.5 - parent: 127 - type: Transform -- uid: 2697 - type: SpawnPointChef - components: - - pos: 17.5,-10.5 - parent: 127 - type: Transform -- uid: 2698 - type: ClosetChefFilled - components: - - pos: 16.5,-11.5 - parent: 127 - type: Transform -- uid: 2699 - type: SinkWide - components: - - rot: 3.141592653589793 rad - pos: 18.5,-11.5 - parent: 127 - type: Transform -- uid: 2700 - type: Table - components: - - pos: 19.5,-11.5 - parent: 127 - type: Transform -- uid: 2701 - type: ReinforcedWindow - components: - - pos: 19.5,-8.5 - parent: 127 - type: Transform -- uid: 2702 - type: Table - components: - - pos: 19.5,-9.5 - parent: 127 - type: Transform -- uid: 2703 - type: JanitorialTrolley - components: - - rot: 3.141592653589793 rad - pos: 6.5,-14.5 - parent: 127 - type: Transform -- uid: 2704 - type: KitchenReagentGrinder - components: - - pos: 19.5,-9.5 - parent: 127 - type: Transform -- uid: 2705 - type: KitchenMicrowave - components: - - pos: 19.5,-11.5 - parent: 127 - type: Transform -- uid: 2706 - type: SinkWide - components: - - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 127 - type: Transform -- uid: 2707 - type: SpawnPointBartender - components: - - pos: 15.5,-6.5 - parent: 127 - type: Transform -- uid: 2708 - type: VendingBarDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,-7.5 - parent: 127 - type: Transform -- uid: 2709 - type: StoolBar - components: - - pos: 13.5,-4.5 - parent: 127 - type: Transform -- uid: 2710 - type: StoolBar - components: - - pos: 18.5,-4.5 - parent: 127 - type: Transform -- uid: 2711 - type: MonkeyCubeWrapped - components: - - pos: 12.2206135,-9.648156 - parent: 127 - type: Transform -- uid: 2712 - type: MonkeyCubeWrapped - components: - - pos: 12.7049885,-9.773156 - parent: 127 - type: Transform -- uid: 2713 - type: MonkeyCubeWrapped - components: - - pos: 12.6112385,-9.351281 - parent: 127 - type: Transform -- uid: 2714 - type: MonkeyCubeWrapped - components: - - pos: 12.9862385,-9.523156 - parent: 127 - type: Transform -- uid: 2715 - type: ExtinguisherCabinetFilled - components: - - pos: 8.5,-2.5 - parent: 127 - type: Transform -- uid: 2716 - type: ExtinguisherCabinetFilled - components: - - pos: 20.5,-5.5 - parent: 127 - type: Transform -- uid: 2717 - type: ExtinguisherCabinetFilled - components: - - pos: 26.5,-0.5 - parent: 127 - type: Transform -- uid: 2718 - type: CableApcExtension - components: - - pos: 29.5,5.5 - parent: 127 - type: Transform -- uid: 2719 - type: CableApcExtension - components: - - pos: 29.5,4.5 - parent: 127 - type: Transform -- uid: 2720 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 2721 - type: CableApcExtension - components: - - pos: 29.5,3.5 - parent: 127 - type: Transform -- uid: 2722 - type: ExtinguisherCabinetFilled - components: - - pos: 33.5,-2.5 - parent: 127 - type: Transform -- uid: 2723 - type: ExtinguisherCabinetFilled - components: - - pos: 27.5,-8.5 - parent: 127 - type: Transform -- uid: 2724 - type: ExtinguisherCabinetFilled - components: - - pos: 38.5,-9.5 - parent: 127 - type: Transform -- uid: 2725 - type: ExtinguisherCabinetFilled - components: - - pos: 14.5,-11.5 - parent: 127 - type: Transform -- uid: 2726 - type: ExtinguisherCabinetFilled - components: - - pos: 55.5,0.5 - parent: 127 - type: Transform -- uid: 2727 - type: ExtinguisherCabinetFilled - components: - - pos: 59.5,-8.5 - parent: 127 - type: Transform -- uid: 2728 - type: AcousticGuitarInstrument - components: - - pos: 13.549404,-5.3679852 - parent: 127 - type: Transform -- uid: 2729 - type: RandomDrinkGlass - components: - - pos: 14.5,-5.5 - parent: 127 - type: Transform -- uid: 2730 - type: RandomDrinkGlass - components: - - pos: 17.5,-5.5 - parent: 127 - type: Transform -- uid: 2731 - type: RandomDrinkGlass - components: - - pos: 13.5,-1.5 - parent: 127 - type: Transform -- uid: 2732 - type: DrinkGlass - components: - - pos: 15.54088,-5.371007 - parent: 127 - type: Transform -- uid: 2733 - type: DrinkGlass - components: - - pos: 15.806505,-5.277257 - parent: 127 - type: Transform -- uid: 2734 - type: DrinkShaker - components: - - pos: 15.212755,-5.386632 - parent: 127 - type: Transform -- uid: 2735 - type: DrinkGlass - components: - - pos: 15.91588,-5.449132 - parent: 127 - type: Transform -- uid: 2736 - type: RandomSpawner - components: - - pos: 18.5,-3.5 - parent: 127 - type: Transform -- uid: 2737 - type: RandomSpawner - components: - - pos: 15.5,-0.5 - parent: 127 - type: Transform -- uid: 2738 - type: RandomSpawner - components: - - pos: 10.5,-3.5 - parent: 127 - type: Transform -- uid: 2739 - type: RandomSpawner - components: - - pos: 9.5,-8.5 - parent: 127 - type: Transform -- uid: 2740 - type: CableApcExtension - components: - - pos: 29.5,2.5 - parent: 127 - type: Transform -- uid: 2741 - type: CableApcExtension - components: - - pos: 28.5,6.5 - parent: 127 - type: Transform -- uid: 2742 - type: CableApcExtension - components: - - pos: 27.5,6.5 - parent: 127 - type: Transform -- uid: 2743 - type: CableApcExtension - components: - - pos: 26.5,6.5 - parent: 127 - type: Transform -- uid: 2744 - type: RandomSpawner - components: - - pos: 11.5,3.5 - parent: 127 - type: Transform -- uid: 2745 - type: RandomSpawner - components: - - pos: 18.5,2.5 - parent: 127 - type: Transform -- uid: 2746 - type: CableApcExtension - components: - - pos: 25.5,6.5 - parent: 127 - type: Transform -- uid: 2747 - type: CableApcExtension - components: - - pos: 28.5,9.5 - parent: 127 - type: Transform -- uid: 2748 - type: CableApcExtension - components: - - pos: 27.5,9.5 - parent: 127 - type: Transform -- uid: 2749 - type: CableApcExtension - components: - - pos: 26.5,9.5 - parent: 127 - type: Transform -- uid: 2750 - type: CableApcExtension - components: - - pos: 30.5,9.5 - parent: 127 - type: Transform -- uid: 2751 - type: CableApcExtension - components: - - pos: 38.5,11.5 - parent: 127 - type: Transform -- uid: 2752 - type: CableApcExtension - components: - - pos: 30.5,6.5 - parent: 127 - type: Transform -- uid: 2753 - type: CableApcExtension - components: - - pos: 31.5,6.5 - parent: 127 - type: Transform -- uid: 2754 - type: CableApcExtension - components: - - pos: 32.5,6.5 - parent: 127 - type: Transform -- uid: 2755 - type: CableApcExtension - components: - - pos: 33.5,6.5 - parent: 127 - type: Transform -- uid: 2756 - type: CableApcExtension - components: - - pos: 33.5,5.5 - parent: 127 - type: Transform -- uid: 2757 - type: CableApcExtension - components: - - pos: 33.5,3.5 - parent: 127 - type: Transform -- uid: 2758 - type: CableApcExtension - components: - - pos: 33.5,4.5 - parent: 127 - type: Transform -- uid: 2759 - type: WallReinforced - components: - - pos: 40.5,1.5 - parent: 127 - type: Transform -- uid: 2760 - type: DisposalUnit - components: - - pos: 15.5,-9.5 - parent: 127 - type: Transform -- uid: 2761 - type: CableApcExtension - components: - - pos: 33.5,7.5 - parent: 127 - type: Transform -- uid: 2762 - type: RandomSpawner - components: - - pos: -6.5,-8.5 - parent: 127 - type: Transform -- uid: 2763 - type: CableApcExtension - components: - - pos: 33.5,8.5 - parent: 127 - type: Transform -- uid: 2764 - type: RandomSpawner - components: - - pos: 17.5,-7.5 - parent: 127 - type: Transform -- uid: 2765 - type: RandomSpawner - components: - - pos: 22.5,-5.5 - parent: 127 - type: Transform -- uid: 2766 - type: RandomSpawner - components: - - pos: 21.5,-12.5 - parent: 127 - type: Transform -- uid: 2767 - type: WallSolid - components: - - pos: 11.5,-14.5 - parent: 127 - type: Transform -- uid: 2768 - type: WallSolid - components: - - pos: 11.5,-15.5 - parent: 127 - type: Transform -- uid: 2769 - type: WallSolid - components: - - pos: 12.5,-15.5 - parent: 127 - type: Transform -- uid: 2770 - type: WallSolid - components: - - pos: 13.5,-15.5 - parent: 127 - type: Transform -- uid: 2771 - type: WallSolid - components: - - pos: 14.5,-15.5 - parent: 127 - type: Transform -- uid: 2772 - type: WallSolid - components: - - pos: 15.5,-15.5 - parent: 127 - type: Transform -- uid: 2773 - type: WallSolid - components: - - pos: 16.5,-15.5 - parent: 127 - type: Transform -- uid: 2774 - type: AirlockGlass - components: - - pos: 20.5,-13.5 - parent: 127 - type: Transform -- uid: 2775 - type: WallSolid - components: - - pos: 18.5,-15.5 - parent: 127 - type: Transform -- uid: 2776 - type: WallSolid - components: - - pos: 19.5,-15.5 - parent: 127 - type: Transform -- uid: 2777 - type: WallSolid - components: - - pos: 20.5,-15.5 - parent: 127 - type: Transform -- uid: 2778 - type: WallSolid - components: - - pos: 20.5,-14.5 - parent: 127 - type: Transform -- uid: 2779 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 38.5,-29.5 - parent: 127 - type: Transform -- uid: 2780 - type: Fireplace - components: - - pos: 17.5,0.5 - parent: 127 - type: Transform -- uid: 2781 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 12.5,-20.5 - parent: 127 - type: Transform -- uid: 2782 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 11.5,-19.5 - parent: 127 - type: Transform -- uid: 2783 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 11.5,-19.5 - parent: 127 - type: Transform -- uid: 2784 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 12.5,-20.5 - parent: 127 - type: Transform -- uid: 2785 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 13.5,-20.5 - parent: 127 - type: Transform -- uid: 2786 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 14.5,-20.5 - parent: 127 - type: Transform -- uid: 2787 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 15.5,-20.5 - parent: 127 - type: Transform -- uid: 2788 - type: Grille - components: - - pos: 20.5,-18.5 - parent: 127 - type: Transform -- uid: 2789 - type: AirlockGlass - components: - - pos: 11.5,-13.5 - parent: 127 - type: Transform -- uid: 2790 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 14.5,-20.5 - parent: 127 - type: Transform -- uid: 2791 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 19.5,-20.5 - parent: 127 - type: Transform -- uid: 2792 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 20.5,-19.5 - parent: 127 - type: Transform -- uid: 2793 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 11.5,-16.5 - parent: 127 - type: Transform -- uid: 2794 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 13.5,-20.5 - parent: 127 - type: Transform -- uid: 2795 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 20.5,-16.5 - parent: 127 - type: Transform -- uid: 2796 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 11.5,-20.5 - parent: 127 - type: Transform -- uid: 2797 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 20.5,-20.5 - parent: 127 - type: Transform -- uid: 2798 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 15.5,-20.5 - parent: 127 - type: Transform -- uid: 2799 - type: hydroponicsTray - components: - - pos: 12.5,-18.5 - parent: 127 - type: Transform -- uid: 2800 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 19.5,-20.5 - parent: 127 - type: Transform -- uid: 2801 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 20.5,-19.5 - parent: 127 - type: Transform -- uid: 2802 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 20.5,-16.5 - parent: 127 - type: Transform -- uid: 2803 - type: AirlockServiceLocked - components: - - pos: 17.5,-15.5 - parent: 127 - type: Transform -- uid: 2804 - type: AirlockServiceGlassLocked - components: - - pos: 11.5,-17.5 - parent: 127 - type: Transform -- uid: 2805 - type: AirlockServiceGlassLocked - components: - - pos: 20.5,-17.5 - parent: 127 - type: Transform -- uid: 2806 - type: AirlockServiceGlassLocked - components: - - pos: 18.5,-20.5 - parent: 127 - type: Transform -- uid: 2807 - type: ReinforcedWindow - components: - - pos: 16.5,-20.5 - parent: 127 - type: Transform -- uid: 2808 - type: ReinforcedWindow - components: - - pos: 17.5,-20.5 - parent: 127 - type: Transform -- uid: 2809 - type: Grille - components: - - pos: 16.5,-20.5 - parent: 127 - type: Transform -- uid: 2810 - type: hydroponicsTray - components: - - pos: 12.5,-19.5 - parent: 127 - type: Transform -- uid: 2811 - type: Grille - components: - - pos: 17.5,-20.5 - parent: 127 - type: Transform -- uid: 2812 - type: ReinforcedWindow - components: - - pos: 11.5,-18.5 - parent: 127 - type: Transform -- uid: 2813 - type: hydroponicsTray - components: - - pos: 16.5,-18.5 - parent: 127 - type: Transform -- uid: 2814 - type: hydroponicsTray - components: - - pos: 14.5,-19.5 - parent: 127 - type: Transform -- uid: 2815 - type: ReinforcedWindow - components: - - pos: 20.5,-18.5 - parent: 127 - type: Transform -- uid: 2816 - type: Grille - components: - - pos: 11.5,-18.5 - parent: 127 - type: Transform -- uid: 2817 - type: hydroponicsTray - components: - - pos: 14.5,-18.5 - parent: 127 - type: Transform -- uid: 2818 - type: WaterTankHighCapacity - components: - - pos: 19.5,-16.5 - parent: 127 - type: Transform -- uid: 2819 - type: hydroponicsTray - components: - - pos: 12.5,-16.5 - parent: 127 - type: Transform -- uid: 2820 - type: hydroponicsTray - components: - - pos: 16.5,-19.5 - parent: 127 - type: Transform -- uid: 2821 - type: Table - components: - - pos: 19.5,-18.5 - parent: 127 - type: Transform -- uid: 2822 - type: hydroponicsTray - components: - - pos: 14.5,-16.5 - parent: 127 - type: Transform -- uid: 2823 - type: SeedExtractor - components: - - pos: 19.5,-19.5 - parent: 127 - type: Transform -- uid: 2824 - type: hydroponicsTray - components: - - pos: 16.5,-16.5 - parent: 127 - type: Transform -- uid: 2825 - type: VendingMachineNutri - components: - - flags: SessionSpecific - type: MetaData - - pos: 15.5,-19.5 - parent: 127 - type: Transform -- uid: 2826 - type: SpawnPointBotanist - components: - - pos: 13.5,-17.5 - parent: 127 - type: Transform -- uid: 2827 - type: VendingMachineSeeds - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,-19.5 - parent: 127 - type: Transform -- uid: 2828 - type: SpawnPointBotanist - components: - - pos: 15.5,-17.5 - parent: 127 - type: Transform -- uid: 2829 - type: CrateHydroponicsSeedsExotic - components: - - pos: 18.5,-16.5 - parent: 127 - type: Transform -- uid: 2830 - type: Bucket - components: - - pos: 18.721151,-17.253819 - parent: 127 - type: Transform -- uid: 2831 - type: Bucket - components: - - pos: 19.096151,-17.410069 - parent: 127 - type: Transform -- uid: 2832 - type: LockerBotanistFilled - components: - - pos: 15.5,-16.5 - parent: 127 - type: Transform -- uid: 2833 - type: LockerBotanistFilled - components: - - pos: 13.5,-16.5 - parent: 127 - type: Transform -- uid: 2834 - type: VendingMachineHydrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 17.5,-19.5 - parent: 127 - type: Transform -- uid: 2835 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-22.5 - parent: 127 - type: Transform -- uid: 2836 - type: CableApcExtension - components: - - pos: 33.5,9.5 - parent: 127 - type: Transform -- uid: 2837 - type: CableApcExtension - components: - - pos: 38.5,10.5 - parent: 127 - type: Transform -- uid: 2838 - type: VendingMachineCondiments - components: - - flags: SessionSpecific - type: MetaData - - pos: 15.5,-13.5 - parent: 127 - type: Transform -- uid: 2839 - type: VendingMachineHappyHonk - components: - - flags: SessionSpecific - type: MetaData - - pos: 16.5,-13.5 - parent: 127 - type: Transform -- uid: 2840 - type: ClosetEmergencyFilledRandom - components: - - pos: 12.5,-14.5 - parent: 127 - type: Transform -- uid: 2841 - type: ClosetFireFilled - components: - - pos: 13.5,-14.5 - parent: 127 - type: Transform -- uid: 2842 - type: PhoneInstrument - components: - - pos: 38.47402,-0.32999843 - parent: 127 - type: Transform -- uid: 2843 - type: WaterTankFull - components: - - pos: 18.5,-14.5 - parent: 127 - type: Transform -- uid: 2844 - type: WeldingFuelTankFull - components: - - pos: 19.5,-14.5 - parent: 127 - type: Transform -- uid: 2845 - type: BananaPhoneInstrument - components: - - pos: 2.4616506,-13.590036 - parent: 127 - type: Transform -- uid: 2846 - type: Table - components: - - pos: 15.5,-13.5 - parent: 127 - type: Transform -- uid: 2847 - type: PlushieLamp - components: - - pos: 19.491514,-1.2254088 - parent: 127 - type: Transform -- uid: 2848 - type: RandomSpawner - components: - - pos: 14.5,-13.5 - parent: 127 - type: Transform -- uid: 2849 - type: WallSolid - components: - - pos: -3.5,-15.5 - parent: 127 - type: Transform -- uid: 2850 - type: WallSolid - components: - - pos: 2.5,-14.5 - parent: 127 - type: Transform -- uid: 2851 - type: WallSolid - components: - - pos: -1.5,-15.5 - parent: 127 - type: Transform -- uid: 2852 - type: WallSolid - components: - - pos: -0.5,-15.5 - parent: 127 - type: Transform -- uid: 2853 - type: WallSolid - components: - - pos: 4.5,-14.5 - parent: 127 - type: Transform -- uid: 2854 - type: WallSolid - components: - - pos: 1.5,-15.5 - parent: 127 - type: Transform -- uid: 2855 - type: WallSolid - components: - - pos: 1.5,-14.5 - parent: 127 - type: Transform -- uid: 2856 - type: WallSolid - components: - - pos: 1.5,-13.5 - parent: 127 - type: Transform -- uid: 2857 - type: WallSolid - components: - - pos: 1.5,-12.5 - parent: 127 - type: Transform -- uid: 2858 - type: WallSolid - components: - - pos: -1.5,-14.5 - parent: 127 - type: Transform -- uid: 2859 - type: WallSolid - components: - - pos: -1.5,-13.5 - parent: 127 - type: Transform -- uid: 2860 - type: WallSolid - components: - - pos: -1.5,-12.5 - parent: 127 - type: Transform -- uid: 2861 - type: WallReinforced - components: - - pos: -7.5,-14.5 - parent: 127 - type: Transform -- uid: 2862 - type: WallReinforced - components: - - pos: -8.5,-14.5 - parent: 127 - type: Transform -- uid: 2863 - type: WallReinforced - components: - - pos: -7.5,-13.5 - parent: 127 - type: Transform -- uid: 2864 - type: WallReinforced - components: - - pos: -7.5,-12.5 - parent: 127 - type: Transform -- uid: 2865 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 37.5,-29.5 - parent: 127 - type: Transform -- uid: 2866 - type: CableHV - components: - - pos: 22.5,-18.5 - parent: 127 - type: Transform -- uid: 2867 - type: ClosetMaintenanceFilledRandom - components: - - pos: -2.5,-10.5 - parent: 127 - type: Transform -- uid: 2868 - type: WallSolid - components: - - pos: 8.5,-12.5 - parent: 127 - type: Transform -- uid: 2869 - type: WallSolid - components: - - pos: 4.5,-12.5 - parent: 127 - type: Transform -- uid: 2870 - type: WallSolid - components: - - pos: 4.5,-13.5 - parent: 127 - type: Transform -- uid: 2871 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 4.5,-15.5 - parent: 127 - type: Transform -- uid: 2872 - type: WallSolid - components: - - pos: 5.5,-15.5 - parent: 127 - type: Transform -- uid: 2873 - type: WallSolid - components: - - pos: 6.5,-15.5 - parent: 127 - type: Transform -- uid: 2874 - type: WallSolid - components: - - pos: 7.5,-15.5 - parent: 127 - type: Transform -- uid: 2875 - type: WallSolid - components: - - pos: 8.5,-15.5 - parent: 127 - type: Transform -- uid: 2876 - type: WallSolid - components: - - pos: 8.5,-14.5 - parent: 127 - type: Transform -- uid: 2877 - type: WallSolid - components: - - pos: -4.5,-18.5 - parent: 127 - type: Transform -- uid: 2878 - type: WallSolid - components: - - pos: 3.5,-23.5 - parent: 127 - type: Transform -- uid: 2879 - type: WallSolid - components: - - pos: 4.5,-29.5 - parent: 127 - type: Transform -- uid: 2880 - type: WallSolid - components: - - pos: 4.5,-30.5 - parent: 127 - type: Transform -- uid: 2881 - type: WallSolid - components: - - pos: 2.5,-24.5 - parent: 127 - type: Transform -- uid: 2882 - type: Barricade - components: - - pos: 1.5,-24.5 - parent: 127 - type: Transform -- uid: 2883 - type: CableApcExtension - components: - - pos: 38.5,9.5 - parent: 127 - type: Transform -- uid: 2884 - type: AirlockMaintGlass - components: - - pos: -5.5,-20.5 - parent: 127 - type: Transform -- uid: 2885 - type: ReinforcedWindow - components: - - pos: -6.5,-20.5 - parent: 127 - type: Transform -- uid: 2886 - type: AirlockMaintLocked - components: - - pos: -4.5,-16.5 - parent: 127 - type: Transform -- uid: 2887 - type: Grille - components: - - pos: -6.5,-20.5 - parent: 127 - type: Transform -- uid: 2888 - type: WallSolid - components: - - pos: 2.5,-21.5 - parent: 127 - type: Transform -- uid: 2889 - type: WallSolid - components: - - pos: 2.5,-20.5 - parent: 127 - type: Transform -- uid: 2890 - type: WallSolid - components: - - pos: 2.5,-19.5 - parent: 127 - type: Transform -- uid: 2891 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,-15.5 - parent: 127 - type: Transform -- uid: 2892 - type: AirlockTheatreLocked - components: - - pos: 3.5,-14.5 - parent: 127 - type: Transform -- uid: 2893 - type: CrateServiceJanitorialSupplies - components: - - pos: 5.5,-12.5 - parent: 127 - type: Transform -- uid: 2894 - type: AirlockJanitorLocked - components: - - pos: 8.5,-13.5 - parent: 127 - type: Transform -- uid: 2895 - type: WallSolid - components: - - pos: 2.5,-18.5 - parent: 127 - type: Transform -- uid: 2896 - type: FloorDrain - components: - - pos: 6.5,-13.5 - parent: 127 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 2897 - type: MopItem - components: - - pos: 5.4930906,-13.489855 - parent: 127 - type: Transform -- uid: 2898 - type: WallSolid - components: - - pos: 7.5,-22.5 - parent: 127 - type: Transform -- uid: 2899 - type: WallSolid - components: - - pos: 7.5,-21.5 - parent: 127 - type: Transform -- uid: 2900 - type: WallSolid - components: - - pos: 7.5,-20.5 - parent: 127 - type: Transform -- uid: 2901 - type: WallSolid - components: - - pos: 7.5,-19.5 - parent: 127 - type: Transform -- uid: 2902 - type: WallSolid - components: - - pos: 6.5,-22.5 - parent: 127 - type: Transform -- uid: 2903 - type: WallSolid - components: - - pos: 5.5,-22.5 - parent: 127 - type: Transform -- uid: 2904 - type: WallSolid - components: - - pos: 5.5,-22.5 - parent: 127 - type: Transform -- uid: 2905 - type: WallSolid - components: - - pos: 4.5,-22.5 - parent: 127 - type: Transform -- uid: 2906 - type: WallSolid - components: - - pos: 3.5,-22.5 - parent: 127 - type: Transform -- uid: 2907 - type: WallSolid - components: - - pos: 2.5,-22.5 - parent: 127 - type: Transform -- uid: 2908 - type: WallSolid - components: - - pos: 7.5,-18.5 - parent: 127 - type: Transform -- uid: 2909 - type: WallSolid - components: - - pos: 8.5,-18.5 - parent: 127 - type: Transform -- uid: 2910 - type: CableApcExtension - components: - - pos: 38.5,8.5 - parent: 127 - type: Transform -- uid: 2911 - type: ReinforcedWindow - components: - - pos: -7.5,-22.5 - parent: 127 - type: Transform -- uid: 2912 - type: WallReinforced - components: - - pos: -7.5,-20.5 - parent: 127 - type: Transform -- uid: 2913 - type: WallReinforced - components: - - pos: -7.5,-19.5 - parent: 127 - type: Transform -- uid: 2914 - type: WallReinforced - components: - - pos: -7.5,-18.5 - parent: 127 - type: Transform -- uid: 2915 - type: ReinforcedWindow - components: - - pos: -8.5,-15.5 - parent: 127 - type: Transform -- uid: 2916 - type: ReinforcedWindow - components: - - pos: -8.5,-16.5 - parent: 127 - type: Transform -- uid: 2917 - type: ToiletDirtyWater - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 127 - type: Transform -- uid: 2918 - type: FloorDrain - components: - - pos: 13.5,-10.5 - parent: 127 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 2919 - type: VendingMachineJaniDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,-12.5 - parent: 127 - type: Transform -- uid: 2920 - type: SpawnVehicleJanicart - components: - - pos: 7.5,-12.5 - parent: 127 - type: Transform -- uid: 2921 - type: ClosetL3JanitorFilled - components: - - pos: 7.5,-14.5 - parent: 127 - type: Transform -- uid: 2922 - type: AirlockMaintTheatreLocked - components: - - pos: 3.5,-10.5 - parent: 127 - type: Transform -- uid: 2923 - type: ReinforcedWindow - components: - - pos: 3.5,-18.5 - parent: 127 - type: Transform -- uid: 2924 - type: SpawnPointJanitor - components: - - pos: 6.5,-13.5 - parent: 127 - type: Transform -- uid: 2925 - type: WallSolid - components: - - pos: 4.5,-11.5 - parent: 127 - type: Transform -- uid: 2926 - type: MopBucket - components: - - pos: 5.5087156,-13.521105 - parent: 127 - type: Transform -- uid: 2927 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 5.5,-14.5 - parent: 127 - type: Transform -- uid: 2928 - type: Soap - components: - - pos: 5.4919796,-14.399195 - parent: 127 - type: Transform -- uid: 2929 - type: BoxTrashbag - components: - - pos: 5.5232296,-14.399195 - parent: 127 - type: Transform -- uid: 2930 - type: SprayBottleSpaceCleaner - components: - - pos: 5.3513546,-14.399195 - parent: 127 - type: Transform -- uid: 2931 - type: SprayBottleSpaceCleaner - components: - - pos: 5.6638546,-14.47732 - parent: 127 - type: Transform -- uid: 2932 - type: ReinforcedWindow - components: - - pos: 6.5,-18.5 - parent: 127 - type: Transform -- uid: 2933 - type: Grille - components: - - pos: 3.5,-18.5 - parent: 127 - type: Transform -- uid: 2934 - type: FirelockGlass - components: - - pos: 8.5,-16.5 - parent: 127 - type: Transform -- uid: 2935 - type: Grille - components: - - pos: 6.5,-18.5 - parent: 127 - type: Transform -- uid: 2936 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,-19.5 - parent: 127 - type: Transform -- uid: 2937 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,-20.5 - parent: 127 - type: Transform -- uid: 2938 - type: Table - components: - - pos: 3.5,-21.5 - parent: 127 - type: Transform -- uid: 2939 - type: SpawnPointAssistant - components: - - pos: 4.5,-20.5 - parent: 127 - type: Transform -- uid: 2940 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,-19.5 - parent: 127 - type: Transform -- uid: 2941 - type: SpawnPointAssistant - components: - - pos: 5.5,-20.5 - parent: 127 - type: Transform -- uid: 2942 - type: Table - components: - - pos: 4.5,-21.5 - parent: 127 - type: Transform -- uid: 2943 - type: Table - components: - - pos: 5.5,-21.5 - parent: 127 - type: Transform -- uid: 2944 - type: Table - components: - - pos: 6.5,-21.5 - parent: 127 - type: Transform -- uid: 2945 - type: WallReinforced - components: - - pos: 44.5,-14.5 - parent: 127 - type: Transform -- uid: 2946 - type: ToySpawner - components: - - pos: -0.5,-14.5 - parent: 127 - type: Transform -- uid: 2947 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 40.5,-29.5 - parent: 127 - type: Transform -- uid: 2948 - type: PosterContrabandMissingGloves - components: - - pos: 7.5,-18.5 - parent: 127 - type: Transform -- uid: 2949 - type: ToolboxElectricalFilled - components: - - pos: 6.488826,-21.25072 - parent: 127 - type: Transform -- uid: 2950 - type: ToolboxMechanicalFilled - components: - - pos: 6.488826,-21.46947 - parent: 127 - type: Transform -- uid: 2951 - type: ToolboxEmergencyFilled - components: - - pos: 5.598201,-21.21947 - parent: 127 - type: Transform -- uid: 2952 - type: ToolboxArtistic - components: - - pos: 5.598201,-21.485094 - parent: 127 - type: Transform -- uid: 2953 - type: CableApcStack - components: - - pos: 5.051326,-21.516344 - parent: 127 - type: Transform -- uid: 2954 - type: CableMVStack - components: - - pos: 5.066951,-21.37572 - parent: 127 - type: Transform -- uid: 2955 - type: CableHVStack - components: - - pos: 5.066951,-21.235094 - parent: 127 - type: Transform -- uid: 2956 - type: FirelockGlass - components: - - pos: 9.5,-15.5 - parent: 127 - type: Transform -- uid: 2957 - type: FirelockGlass - components: - - pos: 10.5,-15.5 - parent: 127 - type: Transform -- uid: 2958 - type: FirelockGlass - components: - - pos: 9.5,-5.5 - parent: 127 - type: Transform -- uid: 2959 - type: FirelockGlass - components: - - pos: 10.5,-5.5 - parent: 127 - type: Transform -- uid: 2960 - type: FirelockGlass - components: - - pos: 21.5,-8.5 - parent: 127 - type: Transform -- uid: 2961 - type: FirelockGlass - components: - - pos: 22.5,-8.5 - parent: 127 - type: Transform -- uid: 2962 - type: FirelockGlass - components: - - pos: 11.5,-2.5 - parent: 127 - type: Transform -- uid: 2963 - type: FirelockGlass - components: - - pos: 11.5,-3.5 - parent: 127 - type: Transform -- uid: 2964 - type: FirelockGlass - components: - - pos: 11.5,-4.5 - parent: 127 - type: Transform -- uid: 2965 - type: FirelockGlass - components: - - pos: 20.5,-4.5 - parent: 127 - type: Transform -- uid: 2966 - type: FirelockGlass - components: - - pos: 20.5,-3.5 - parent: 127 - type: Transform -- uid: 2967 - type: FirelockGlass - components: - - pos: 20.5,-2.5 - parent: 127 - type: Transform -- uid: 2968 - type: FirelockGlass - components: - - pos: 15.5,1.5 - parent: 127 - type: Transform -- uid: 2969 - type: FirelockGlass - components: - - pos: 16.5,1.5 - parent: 127 - type: Transform -- uid: 2970 - type: FirelockGlass - components: - - pos: 17.5,-8.5 - parent: 127 - type: Transform -- uid: 2971 - type: FirelockGlass - components: - - pos: 24.5,-0.5 - parent: 127 - type: Transform -- uid: 2972 - type: FirelockGlass - components: - - pos: 25.5,-0.5 - parent: 127 - type: Transform -- uid: 2973 - type: FirelockGlass - components: - - pos: 21.5,-14.5 - parent: 127 - type: Transform -- uid: 2974 - type: FirelockGlass - components: - - pos: 22.5,-14.5 - parent: 127 - type: Transform -- uid: 2975 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-9.5 - parent: 127 - type: Transform -- uid: 2976 - type: WallSolid - components: - - pos: -1.5,-24.5 - parent: 127 - type: Transform -- uid: 2977 - type: Airlock - components: - - pos: -2.5,-15.5 - parent: 127 - type: Transform -- uid: 2978 - type: Airlock - components: - - pos: 0.5,-15.5 - parent: 127 - type: Transform -- uid: 2979 - type: TableWood - components: - - pos: -3.5,-12.5 - parent: 127 - type: Transform -- uid: 2980 - type: TableWood - components: - - pos: -0.5,-12.5 - parent: 127 - type: Transform -- uid: 2981 - type: Bed - components: - - pos: -2.5,-12.5 - parent: 127 - type: Transform -- uid: 2982 - type: Bed - components: - - pos: 0.5,-12.5 - parent: 127 - type: Transform -- uid: 2983 - type: BedsheetSpawner - components: - - pos: -2.5,-12.5 - parent: 127 - type: Transform -- uid: 2984 - type: BedsheetSpawner - components: - - pos: 0.5,-12.5 - parent: 127 - type: Transform -- uid: 2985 - type: ReinforcedWindow - components: - - pos: -8.5,-17.5 - parent: 127 - type: Transform -- uid: 2986 - type: PlushieLamp - components: - - pos: -0.50091386,-12.270897 - parent: 127 - type: Transform -- uid: 2987 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -3.5,-13.5 - parent: 127 - type: Transform -- uid: 2988 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -0.5,-13.5 - parent: 127 - type: Transform -- uid: 2989 - type: Rack - components: - - pos: -3.5,-14.5 - parent: 127 - type: Transform -- uid: 2990 - type: Rack - components: - - pos: -0.5,-14.5 - parent: 127 - type: Transform -- uid: 2991 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 24.5,-31.5 - parent: 127 - type: Transform -- uid: 2992 - type: WallReinforced - components: - - pos: 46.5,-13.5 - parent: 127 - type: Transform -- uid: 2993 - type: Table - components: - - pos: 2.5,-13.5 - parent: 127 - type: Transform -- uid: 2994 - type: SpawnPointClown - components: - - pos: 3.5,-13.5 - parent: 127 - type: Transform -- uid: 2995 - type: Table - components: - - pos: 2.5,-12.5 - parent: 127 - type: Transform -- uid: 2996 - type: Table - components: - - pos: 2.5,-11.5 - parent: 127 - type: Transform -- uid: 2997 - type: SpawnPointMusician - components: - - pos: 3.5,-12.5 - parent: 127 - type: Transform -- uid: 2998 - type: SpawnPointMime - components: - - pos: 3.5,-11.5 - parent: 127 - type: Transform -- uid: 2999 - type: FoodBanana - components: - - pos: 2.3354387,-13.404804 - parent: 127 - type: Transform -- uid: 3000 - type: FoodBanana - components: - - pos: 2.5073137,-13.451679 - parent: 127 - type: Transform -- uid: 3001 - type: FoodPieBananaCream - components: - - pos: 2.4916887,-13.451679 - parent: 127 - type: Transform -- uid: 3002 - type: FoodPieBananaCream - components: - - pos: 2.4916887,-13.451679 - parent: 127 - type: Transform -- uid: 3003 - type: FoodPieBananaCream - components: - - pos: 2.4916887,-13.451679 - parent: 127 - type: Transform -- uid: 3004 - type: FoodPieBananaCream - components: - - pos: 2.4916887,-13.451679 - parent: 127 - type: Transform -- uid: 3005 - type: FoodPieBananaCream - components: - - pos: 2.4916887,-13.451679 - parent: 127 - type: Transform -- uid: 3006 - type: LampBanana - components: - - pos: 2.6791887,-13.076679 - parent: 127 - type: Transform -- uid: 3007 - type: ClothingBackpackClown - components: - - pos: 2.5385637,-13.342304 - parent: 127 - type: Transform -- uid: 3008 - type: RandomInstruments - components: - - pos: 2.5,-12.5 - parent: 127 - type: Transform -- uid: 3009 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 35.5,-33.5 - parent: 127 - type: Transform -- uid: 3010 - type: FoodBurgerMime - components: - - pos: 2.3103766,-11.346928 - parent: 127 - type: Transform -- uid: 3011 - type: ClothingHeadHatMimesoft - components: - - pos: 2.7322516,-11.237553 - parent: 127 - type: Transform -- uid: 3012 - type: CrayonMime - components: - - pos: 2.2010016,-11.690678 - parent: 127 - type: Transform -- uid: 3013 - type: CrayonBox - components: - - pos: 2.5578604,-11.659428 - parent: 127 - type: Transform -- uid: 3014 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3015 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 40.5,-28.5 - parent: 127 - type: Transform -- uid: 3016 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 40.5,-26.5 - parent: 127 - type: Transform -- uid: 3017 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 40.5,-27.5 - parent: 127 - type: Transform -- uid: 3018 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 39.5,-38.5 - parent: 127 - type: Transform -- uid: 3019 - type: Poweredlight - components: - - pos: 4.5,-16.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3020 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-17.5 - parent: 127 - type: Transform -- uid: 3021 - type: Chair - components: - - pos: 24.5,-28.5 - parent: 127 - type: Transform -- uid: 3022 - type: Poweredlight - components: - - pos: 8.5,-16.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3023 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-14.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3024 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-9.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3025 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 35.5,-38.5 - parent: 127 - type: Transform -- uid: 3026 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 35.5,-36.5 - parent: 127 - type: Transform -- uid: 3027 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-4.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3028 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 40.5,-25.5 - parent: 127 - type: Transform -- uid: 3029 - type: ReinforcedWindow - components: - - pos: 32.5,-22.5 - parent: 127 - type: Transform -- uid: 3030 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-7.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3031 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-11.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3032 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,-27.5 - parent: 127 - type: Transform -- uid: 3033 - type: WallReinforced - components: - - pos: 41.5,-24.5 - parent: 127 - type: Transform -- uid: 3034 - type: Poweredlight - components: - - pos: 13.5,-9.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3035 - type: CableApcExtension - components: - - pos: 38.5,7.5 - parent: 127 - type: Transform -- uid: 3036 - type: Table - components: - - pos: -10.5,-7.5 - parent: 127 - type: Transform -- uid: 3037 - type: Poweredlight - components: - - pos: 19.5,-16.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3038 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-19.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3039 - type: CableApcExtension - components: - - pos: 38.5,6.5 - parent: 127 - type: Transform -- uid: 3040 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-19.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3041 - type: WallReinforced - components: - - pos: 43.5,-13.5 - parent: 127 - type: Transform -- uid: 3042 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,-30.5 - parent: 127 - type: Transform -- uid: 3043 - type: WallSolid - components: - - pos: 0.5,-24.5 - parent: 127 - type: Transform -- uid: 3044 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-14.5 - parent: 127 - type: Transform -- uid: 3045 - type: WallSolid - components: - - pos: 3.5,-24.5 - parent: 127 - type: Transform -- uid: 3046 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 2.5,-18.5 - parent: 127 - type: Transform -- uid: 3047 - type: AirlockCommandGlassLocked - components: - - pos: 43.5,-12.5 - parent: 127 - type: Transform -- uid: 3048 - type: WallSolid - components: - - pos: -0.5,-24.5 - parent: 127 - type: Transform -- uid: 3049 - type: WallReinforced - components: - - pos: 44.5,-13.5 - parent: 127 - type: Transform -- uid: 3050 - type: CableApcExtension - components: - - pos: 38.5,5.5 - parent: 127 - type: Transform -- uid: 3051 - type: WallSolid - components: - - pos: 3.5,-27.5 - parent: 127 - type: Transform -- uid: 3052 - type: WallReinforced - components: - - pos: -3.5,-27.5 - parent: 127 - type: Transform -- uid: 3053 - type: WallReinforced - components: - - pos: -6.5,-27.5 - parent: 127 - type: Transform -- uid: 3054 - type: WallReinforced - components: - - pos: -7.5,-27.5 - parent: 127 - type: Transform -- uid: 3055 - type: WallReinforced - components: - - pos: 35.5,-27.5 - parent: 127 - type: Transform -- uid: 3056 - type: WallSolid - components: - - pos: -1.5,-23.5 - parent: 127 - type: Transform -- uid: 3057 - type: WallSolid - components: - - pos: -1.5,-25.5 - parent: 127 - type: Transform -- uid: 3058 - type: Grille - components: - - pos: -4.5,-19.5 - parent: 127 - type: Transform -- uid: 3059 - type: Grille - components: - - pos: -4.5,-20.5 - parent: 127 - type: Transform -- uid: 3060 - type: ReinforcedWindow - components: - - pos: -4.5,-20.5 - parent: 127 - type: Transform -- uid: 3061 - type: ReinforcedWindow - components: - - pos: -4.5,-19.5 - parent: 127 - type: Transform -- uid: 3062 - type: WallSolid - components: - - pos: 1.5,-22.5 - parent: 127 - type: Transform -- uid: 3063 - type: WallReinforced - components: - - pos: -8.5,-18.5 - parent: 127 - type: Transform -- uid: 3064 - type: CableMV - components: - - pos: 2.5,-17.5 - parent: 127 - type: Transform -- uid: 3065 - type: CableMV - components: - - pos: 2.5,-18.5 - parent: 127 - type: Transform -- uid: 3066 - type: CableApcExtension - components: - - pos: 2.5,-18.5 - parent: 127 - type: Transform -- uid: 3067 - type: CableApcExtension - components: - - pos: 2.5,-17.5 - parent: 127 - type: Transform -- uid: 3068 - type: CableApcExtension - components: - - pos: 2.5,-16.5 - parent: 127 - type: Transform -- uid: 3069 - type: CableApcExtension - components: - - pos: 3.5,-16.5 - parent: 127 - type: Transform -- uid: 3070 - type: CableApcExtension - components: - - pos: 4.5,-16.5 - parent: 127 - type: Transform -- uid: 3071 - type: CableApcExtension - components: - - pos: 5.5,-16.5 - parent: 127 - type: Transform -- uid: 3072 - type: CableApcExtension - components: - - pos: 6.5,-16.5 - parent: 127 - type: Transform -- uid: 3073 - type: CableApcExtension - components: - - pos: 7.5,-16.5 - parent: 127 - type: Transform -- uid: 3074 - type: CableApcExtension - components: - - pos: 8.5,-16.5 - parent: 127 - type: Transform -- uid: 3075 - type: CableApcExtension - components: - - pos: 5.5,-17.5 - parent: 127 - type: Transform -- uid: 3076 - type: CableApcExtension - components: - - pos: 5.5,-18.5 - parent: 127 - type: Transform -- uid: 3077 - type: CableApcExtension - components: - - pos: 5.5,-19.5 - parent: 127 - type: Transform -- uid: 3078 - type: CableApcExtension - components: - - pos: 5.5,-20.5 - parent: 127 - type: Transform -- uid: 3079 - type: CableApcExtension - components: - - pos: 4.5,-20.5 - parent: 127 - type: Transform -- uid: 3080 - type: CableApcExtension - components: - - pos: 3.5,-15.5 - parent: 127 - type: Transform -- uid: 3081 - type: CableApcExtension - components: - - pos: 3.5,-14.5 - parent: 127 - type: Transform -- uid: 3082 - type: CableApcExtension - components: - - pos: 3.5,-13.5 - parent: 127 - type: Transform -- uid: 3083 - type: CableApcExtension - components: - - pos: 3.5,-12.5 - parent: 127 - type: Transform -- uid: 3084 - type: CableApcExtension - components: - - pos: 9.5,-16.5 - parent: 127 - type: Transform -- uid: 3085 - type: CableApcExtension - components: - - pos: 9.5,-15.5 - parent: 127 - type: Transform -- uid: 3086 - type: CableApcExtension - components: - - pos: 9.5,-14.5 - parent: 127 - type: Transform -- uid: 3087 - type: CableApcExtension - components: - - pos: 9.5,-13.5 - parent: 127 - type: Transform -- uid: 3088 - type: CableApcExtension - components: - - pos: 8.5,-13.5 - parent: 127 - type: Transform -- uid: 3089 - type: CableApcExtension - components: - - pos: 7.5,-13.5 - parent: 127 - type: Transform -- uid: 3090 - type: CableApcExtension - components: - - pos: 6.5,-13.5 - parent: 127 - type: Transform -- uid: 3091 - type: CableApcExtension - components: - - pos: 1.5,-16.5 - parent: 127 - type: Transform -- uid: 3092 - type: CableApcExtension - components: - - pos: 0.5,-16.5 - parent: 127 - type: Transform -- uid: 3093 - type: CableApcExtension - components: - - pos: -0.5,-16.5 - parent: 127 - type: Transform -- uid: 3094 - type: CableApcExtension - components: - - pos: -1.5,-16.5 - parent: 127 - type: Transform -- uid: 3095 - type: CableApcExtension - components: - - pos: -2.5,-16.5 - parent: 127 - type: Transform -- uid: 3096 - type: CableApcExtension - components: - - pos: -2.5,-15.5 - parent: 127 - type: Transform -- uid: 3097 - type: CableApcExtension - components: - - pos: -2.5,-14.5 - parent: 127 - type: Transform -- uid: 3098 - type: CableApcExtension - components: - - pos: -2.5,-13.5 - parent: 127 - type: Transform -- uid: 3099 - type: CableApcExtension - components: - - pos: 0.5,-15.5 - parent: 127 - type: Transform -- uid: 3100 - type: CableApcExtension - components: - - pos: 0.5,-15.5 - parent: 127 - type: Transform -- uid: 3101 - type: CableApcExtension - components: - - pos: 0.5,-14.5 - parent: 127 - type: Transform -- uid: 3102 - type: CableApcExtension - components: - - pos: 0.5,-13.5 - parent: 127 - type: Transform -- uid: 3103 - type: CableApcExtension - components: - - pos: -3.5,-16.5 - parent: 127 - type: Transform -- uid: 3104 - type: CableApcExtension - components: - - pos: -4.5,-16.5 - parent: 127 - type: Transform -- uid: 3105 - type: CableApcExtension - components: - - pos: -5.5,-16.5 - parent: 127 - type: Transform -- uid: 3106 - type: CableApcExtension - components: - - pos: -5.5,-17.5 - parent: 127 - type: Transform -- uid: 3107 - type: CableApcExtension - components: - - pos: -5.5,-18.5 - parent: 127 - type: Transform -- uid: 3108 - type: CableApcExtension - components: - - pos: -5.5,-15.5 - parent: 127 - type: Transform -- uid: 3109 - type: CableApcExtension - components: - - pos: -5.5,-14.5 - parent: 127 - type: Transform -- uid: 3110 - type: CableApcExtension - components: - - pos: -5.5,-13.5 - parent: 127 - type: Transform -- uid: 3111 - type: CableApcExtension - components: - - pos: -6.5,-13.5 - parent: 127 - type: Transform -- uid: 3112 - type: CableApcExtension - components: - - pos: -6.5,-12.5 - parent: 127 - type: Transform -- uid: 3113 - type: CableApcExtension - components: - - pos: -0.5,-17.5 - parent: 127 - type: Transform -- uid: 3114 - type: PlushieLamp - components: - - pos: -3.5531838,-12.30638 - parent: 127 - type: Transform -- uid: 3115 - type: CableMV - components: - - pos: 9.5,-23.5 - parent: 127 - type: Transform -- uid: 3116 - type: CableMV - components: - - pos: 5.5,-24.5 - parent: 127 - type: Transform -- uid: 3117 - type: WallSolid - components: - - pos: -3.5,-18.5 - parent: 127 - type: Transform -- uid: 3118 - type: CableMV - components: - - pos: 9.5,-21.5 - parent: 127 - type: Transform -- uid: 3119 - type: CableMV - components: - - pos: 5.5,-23.5 - parent: 127 - type: Transform -- uid: 3120 - type: SignBar - components: - - pos: 11.5,-5.5 - parent: 127 - type: Transform -- uid: 3121 - type: WallSolid - components: - - pos: 1.5,-18.5 - parent: 127 - type: Transform -- uid: 3122 - type: DisposalUnit - components: - - pos: 6.5,-20.5 - parent: 127 - type: Transform -- uid: 3123 - type: WallSolid - components: - - pos: 6.5,-27.5 - parent: 127 - type: Transform -- uid: 3124 - type: WallSolid - components: - - pos: 6.5,-26.5 - parent: 127 - type: Transform -- uid: 3125 - type: WallSolid - components: - - pos: 6.5,-25.5 - parent: 127 - type: Transform -- uid: 3126 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-26.5 - parent: 127 - type: Transform -- uid: 3127 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 127 - type: Transform -- uid: 3128 - type: WallSolid - components: - - pos: 7.5,-24.5 - parent: 127 - type: Transform -- uid: 3129 - type: WallReinforced - components: - - pos: 35.5,-26.5 - parent: 127 - type: Transform -- uid: 3130 - type: WallReinforced - components: - - pos: 23.5,-16.5 - parent: 127 - type: Transform -- uid: 3131 - type: WallReinforced - components: - - pos: 41.5,-28.5 - parent: 127 - type: Transform -- uid: 3132 - type: AirlockEngineeringLocked - components: - - pos: 23.5,-15.5 - parent: 127 - type: Transform -- uid: 3133 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,-36.5 - parent: 127 - type: Transform -- uid: 3134 - type: CableHV - components: - - pos: 22.5,-13.5 - parent: 127 - type: Transform -- uid: 3135 - type: CableHV - components: - - pos: 22.5,-14.5 - parent: 127 - type: Transform -- uid: 3136 - type: CableHV - components: - - pos: 22.5,-15.5 - parent: 127 - type: Transform -- uid: 3137 - type: CableHV - components: - - pos: 23.5,-15.5 - parent: 127 - type: Transform -- uid: 3138 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 28.5,-36.5 - parent: 127 - type: Transform -- uid: 3139 - type: CableMV - components: - - pos: 6.5,-23.5 - parent: 127 - type: Transform -- uid: 3140 - type: CableMV - components: - - pos: 7.5,-23.5 - parent: 127 - type: Transform -- uid: 3141 - type: CableMV - components: - - pos: 8.5,-23.5 - parent: 127 - type: Transform -- uid: 3142 - type: CableMV - components: - - pos: 9.5,-20.5 - parent: 127 - type: Transform -- uid: 3143 - type: CableApcExtension - components: - - pos: 38.5,4.5 - parent: 127 - type: Transform -- uid: 3144 - type: CableApcExtension - components: - - pos: 38.5,3.5 - parent: 127 - type: Transform -- uid: 3145 - type: CableApcExtension - components: - - pos: 39.5,11.5 - parent: 127 - type: Transform -- uid: 3146 - type: CableApcExtension - components: - - pos: 40.5,11.5 - parent: 127 - type: Transform -- uid: 3147 - type: CableApcExtension - components: - - pos: 41.5,11.5 - parent: 127 - type: Transform -- uid: 3148 - type: CableApcExtension - components: - - pos: 41.5,10.5 - parent: 127 - type: Transform -- uid: 3149 - type: CableHV - components: - - pos: -6.5,-8.5 - parent: 127 - type: Transform -- uid: 3150 - type: CableHV - components: - - pos: -6.5,-9.5 - parent: 127 - type: Transform -- uid: 3151 - type: CableHV - components: - - pos: -6.5,-10.5 - parent: 127 - type: Transform -- uid: 3152 - type: CableHV - components: - - pos: -6.5,-11.5 - parent: 127 - type: Transform -- uid: 3153 - type: CableHV - components: - - pos: -6.5,-12.5 - parent: 127 - type: Transform -- uid: 3154 - type: CableHV - components: - - pos: -6.5,-13.5 - parent: 127 - type: Transform -- uid: 3155 - type: CableHV - components: - - pos: -6.5,-14.5 - parent: 127 - type: Transform -- uid: 3156 - type: CableHV - components: - - pos: -6.5,-15.5 - parent: 127 - type: Transform -- uid: 3157 - type: CableHV - components: - - pos: -6.5,-16.5 - parent: 127 - type: Transform -- uid: 3158 - type: CableHV - components: - - pos: -5.5,-16.5 - parent: 127 - type: Transform -- uid: 3159 - type: CableHV - components: - - pos: -4.5,-16.5 - parent: 127 - type: Transform -- uid: 3160 - type: CableHV - components: - - pos: -3.5,-16.5 - parent: 127 - type: Transform -- uid: 3161 - type: CableHV - components: - - pos: -2.5,-16.5 - parent: 127 - type: Transform -- uid: 3162 - type: CableHV - components: - - pos: -1.5,-16.5 - parent: 127 - type: Transform -- uid: 3163 - type: CableMV - components: - - pos: 9.5,-22.5 - parent: 127 - type: Transform -- uid: 3164 - type: CableMV - components: - - pos: 7.5,-17.5 - parent: 127 - type: Transform -- uid: 3165 - type: CableMV - components: - - pos: 9.5,-18.5 - parent: 127 - type: Transform -- uid: 3166 - type: CableMV - components: - - pos: 9.5,-17.5 - parent: 127 - type: Transform -- uid: 3167 - type: CableMV - components: - - pos: 3.5,-17.5 - parent: 127 - type: Transform -- uid: 3168 - type: CableMV - components: - - pos: 4.5,-17.5 - parent: 127 - type: Transform -- uid: 3169 - type: CableMV - components: - - pos: 5.5,-17.5 - parent: 127 - type: Transform -- uid: 3170 - type: CableMV - components: - - pos: 6.5,-17.5 - parent: 127 - type: Transform -- uid: 3171 - type: CableMV - components: - - pos: 8.5,-17.5 - parent: 127 - type: Transform -- uid: 3172 - type: CableHV - components: - - pos: -0.5,-16.5 - parent: 127 - type: Transform -- uid: 3173 - type: CableHV - components: - - pos: 0.5,-16.5 - parent: 127 - type: Transform -- uid: 3174 - type: CableHV - components: - - pos: 1.5,-16.5 - parent: 127 - type: Transform -- uid: 3175 - type: CableHV - components: - - pos: 2.5,-16.5 - parent: 127 - type: Transform -- uid: 3176 - type: CableHV - components: - - pos: 3.5,-16.5 - parent: 127 - type: Transform -- uid: 3177 - type: CableHV - components: - - pos: 4.5,-16.5 - parent: 127 - type: Transform -- uid: 3178 - type: CableHV - components: - - pos: 5.5,-16.5 - parent: 127 - type: Transform -- uid: 3179 - type: CableHV - components: - - pos: 6.5,-16.5 - parent: 127 - type: Transform -- uid: 3180 - type: CableHV - components: - - pos: 7.5,-16.5 - parent: 127 - type: Transform -- uid: 3181 - type: CableHV - components: - - pos: 8.5,-16.5 - parent: 127 - type: Transform -- uid: 3182 - type: CableHV - components: - - pos: 9.5,-16.5 - parent: 127 - type: Transform -- uid: 3183 - type: CableHV - components: - - pos: 9.5,-15.5 - parent: 127 - type: Transform -- uid: 3184 - type: CableHV - components: - - pos: 9.5,-14.5 - parent: 127 - type: Transform -- uid: 3185 - type: CableHV - components: - - pos: 9.5,-13.5 - parent: 127 - type: Transform -- uid: 3186 - type: CableHV - components: - - pos: 9.5,-12.5 - parent: 127 - type: Transform -- uid: 3187 - type: CableHV - components: - - pos: 9.5,-11.5 - parent: 127 - type: Transform -- uid: 3188 - type: CableHV - components: - - pos: 9.5,-10.5 - parent: 127 - type: Transform -- uid: 3189 - type: CableHV - components: - - pos: 9.5,-9.5 - parent: 127 - type: Transform -- uid: 3190 - type: CableHV - components: - - pos: 9.5,-8.5 - parent: 127 - type: Transform -- uid: 3191 - type: CableHV - components: - - pos: 9.5,-7.5 - parent: 127 - type: Transform -- uid: 3192 - type: CableHV - components: - - pos: 9.5,-6.5 - parent: 127 - type: Transform -- uid: 3193 - type: CableHV - components: - - pos: 9.5,-5.5 - parent: 127 - type: Transform -- uid: 3194 - type: CableHV - components: - - pos: 9.5,-4.5 - parent: 127 - type: Transform -- uid: 3195 - type: CableHV - components: - - pos: 9.5,-3.5 - parent: 127 - type: Transform -- uid: 3196 - type: CableHV - components: - - pos: 9.5,-2.5 - parent: 127 - type: Transform -- uid: 3197 - type: CableHV - components: - - pos: 9.5,-1.5 - parent: 127 - type: Transform -- uid: 3198 - type: CableHV - components: - - pos: 9.5,-0.5 - parent: 127 - type: Transform -- uid: 3199 - type: CableHV - components: - - pos: 9.5,0.5 - parent: 127 - type: Transform -- uid: 3200 - type: CableHV - components: - - pos: 9.5,-17.5 - parent: 127 - type: Transform -- uid: 3201 - type: CableHV - components: - - pos: 9.5,-18.5 - parent: 127 - type: Transform -- uid: 3202 - type: CableHV - components: - - pos: 9.5,-19.5 - parent: 127 - type: Transform -- uid: 3203 - type: CableHV - components: - - pos: 9.5,-20.5 - parent: 127 - type: Transform -- uid: 3204 - type: CableHV - components: - - pos: 9.5,-21.5 - parent: 127 - type: Transform -- uid: 3205 - type: CableHV - components: - - pos: 10.5,-21.5 - parent: 127 - type: Transform -- uid: 3206 - type: CableHV - components: - - pos: 11.5,-21.5 - parent: 127 - type: Transform -- uid: 3207 - type: CableHV - components: - - pos: 12.5,-21.5 - parent: 127 - type: Transform -- uid: 3208 - type: CableHV - components: - - pos: 13.5,-21.5 - parent: 127 - type: Transform -- uid: 3209 - type: CableHV - components: - - pos: 14.5,-21.5 - parent: 127 - type: Transform -- uid: 3210 - type: CableHV - components: - - pos: 15.5,-21.5 - parent: 127 - type: Transform -- uid: 3211 - type: CableHV - components: - - pos: 16.5,-21.5 - parent: 127 - type: Transform -- uid: 3212 - type: CableHV - components: - - pos: 17.5,-21.5 - parent: 127 - type: Transform -- uid: 3213 - type: CableHV - components: - - pos: 18.5,-21.5 - parent: 127 - type: Transform -- uid: 3214 - type: CableHV - components: - - pos: 19.5,-21.5 - parent: 127 - type: Transform -- uid: 3215 - type: CableHV - components: - - pos: 20.5,-21.5 - parent: 127 - type: Transform -- uid: 3216 - type: CableHV - components: - - pos: 21.5,-21.5 - parent: 127 - type: Transform -- uid: 3217 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 36.5,-29.5 - parent: 127 - type: Transform -- uid: 3218 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 26.5,-36.5 - parent: 127 - type: Transform -- uid: 3219 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 39.5,-29.5 - parent: 127 - type: Transform -- uid: 3220 - type: WindowReinforcedDirectional - components: - - pos: 28.5,-32.5 - parent: 127 - type: Transform -- uid: 3221 - type: CableHV - components: - - pos: 22.5,-17.5 - parent: 127 - type: Transform -- uid: 3222 - type: CableHV - components: - - pos: 22.5,-16.5 - parent: 127 - type: Transform -- uid: 3223 - type: APCBasic - components: - - pos: 16.5,-15.5 - parent: 127 - type: Transform -- uid: 3224 - type: APCBasic - components: - - pos: 18.5,-12.5 - parent: 127 - type: Transform -- uid: 3225 - type: APCBasic - components: - - pos: 11.5,-1.5 - parent: 127 - type: Transform -- uid: 3226 - type: CableHV - components: - - pos: 22.5,-21.5 - parent: 127 - type: Transform -- uid: 3227 - type: CableMV - components: - - pos: 23.5,-15.5 - parent: 127 - type: Transform -- uid: 3228 - type: CableMV - components: - - pos: 22.5,-15.5 - parent: 127 - type: Transform -- uid: 3229 - type: CableMV - components: - - pos: 22.5,-16.5 - parent: 127 - type: Transform -- uid: 3230 - type: CableMV - components: - - pos: 22.5,-17.5 - parent: 127 - type: Transform -- uid: 3231 - type: CableMV - components: - - pos: 21.5,-17.5 - parent: 127 - type: Transform -- uid: 3232 - type: CableMV - components: - - pos: 20.5,-17.5 - parent: 127 - type: Transform -- uid: 3233 - type: CableMV - components: - - pos: 19.5,-17.5 - parent: 127 - type: Transform -- uid: 3234 - type: CableMV - components: - - pos: 18.5,-17.5 - parent: 127 - type: Transform -- uid: 3235 - type: CableMV - components: - - pos: 17.5,-17.5 - parent: 127 - type: Transform -- uid: 3236 - type: CableMV - components: - - pos: 16.5,-17.5 - parent: 127 - type: Transform -- uid: 3237 - type: CableMV - components: - - pos: 16.5,-16.5 - parent: 127 - type: Transform -- uid: 3238 - type: CableMV - components: - - pos: 16.5,-15.5 - parent: 127 - type: Transform -- uid: 3239 - type: CableMV - components: - - pos: 22.5,-14.5 - parent: 127 - type: Transform -- uid: 3240 - type: CableMV - components: - - pos: 22.5,-13.5 - parent: 127 - type: Transform -- uid: 3241 - type: CableMV - components: - - pos: 21.5,-13.5 - parent: 127 - type: Transform -- uid: 3242 - type: CableMV - components: - - pos: 20.5,-13.5 - parent: 127 - type: Transform -- uid: 3243 - type: CableMV - components: - - pos: 19.5,-13.5 - parent: 127 - type: Transform -- uid: 3244 - type: CableMV - components: - - pos: 18.5,-13.5 - parent: 127 - type: Transform -- uid: 3245 - type: CableMV - components: - - pos: 18.5,-12.5 - parent: 127 - type: Transform -- uid: 3246 - type: CableMV - components: - - pos: 18.5,-11.5 - parent: 127 - type: Transform -- uid: 3247 - type: CableMV - components: - - pos: 18.5,-10.5 - parent: 127 - type: Transform -- uid: 3248 - type: CableMV - components: - - pos: 18.5,-9.5 - parent: 127 - type: Transform -- uid: 3249 - type: CableMV - components: - - pos: 18.5,-8.5 - parent: 127 - type: Transform -- uid: 3250 - type: CableMV - components: - - pos: 18.5,-7.5 - parent: 127 - type: Transform -- uid: 3251 - type: CableMV - components: - - pos: 18.5,-6.5 - parent: 127 - type: Transform -- uid: 3252 - type: CableMV - components: - - pos: 18.5,-5.5 - parent: 127 - type: Transform -- uid: 3253 - type: CableMV - components: - - pos: 18.5,-4.5 - parent: 127 - type: Transform -- uid: 3254 - type: CableMV - components: - - pos: 18.5,-3.5 - parent: 127 - type: Transform -- uid: 3255 - type: CableMV - components: - - pos: 17.5,-3.5 - parent: 127 - type: Transform -- uid: 3256 - type: CableMV - components: - - pos: 16.5,-3.5 - parent: 127 - type: Transform -- uid: 3257 - type: CableMV - components: - - pos: 15.5,-3.5 - parent: 127 - type: Transform -- uid: 3258 - type: CableMV - components: - - pos: 14.5,-3.5 - parent: 127 - type: Transform -- uid: 3259 - type: CableMV - components: - - pos: 13.5,-3.5 - parent: 127 - type: Transform -- uid: 3260 - type: CableMV - components: - - pos: 12.5,-3.5 - parent: 127 - type: Transform -- uid: 3261 - type: CableMV - components: - - pos: 11.5,-3.5 - parent: 127 - type: Transform -- uid: 3262 - type: CableMV - components: - - pos: 11.5,-2.5 - parent: 127 - type: Transform -- uid: 3263 - type: CableMV - components: - - pos: 11.5,-1.5 - parent: 127 - type: Transform -- uid: 3264 - type: CableApcExtension - components: - - pos: 16.5,-15.5 - parent: 127 - type: Transform -- uid: 3265 - type: CableApcExtension - components: - - pos: 16.5,-16.5 - parent: 127 - type: Transform -- uid: 3266 - type: CableApcExtension - components: - - pos: 16.5,-17.5 - parent: 127 - type: Transform -- uid: 3267 - type: CableApcExtension - components: - - pos: 16.5,-18.5 - parent: 127 - type: Transform -- uid: 3268 - type: CableApcExtension - components: - - pos: 16.5,-19.5 - parent: 127 - type: Transform -- uid: 3269 - type: CableApcExtension - components: - - pos: 15.5,-18.5 - parent: 127 - type: Transform -- uid: 3270 - type: CableApcExtension - components: - - pos: 14.5,-18.5 - parent: 127 - type: Transform -- uid: 3271 - type: CableApcExtension - components: - - pos: 13.5,-18.5 - parent: 127 - type: Transform -- uid: 3272 - type: CableApcExtension - components: - - pos: 12.5,-18.5 - parent: 127 - type: Transform -- uid: 3273 - type: CableApcExtension - components: - - pos: 17.5,-18.5 - parent: 127 - type: Transform -- uid: 3274 - type: CableApcExtension - components: - - pos: 18.5,-18.5 - parent: 127 - type: Transform -- uid: 3275 - type: CableApcExtension - components: - - pos: 19.5,-18.5 - parent: 127 - type: Transform -- uid: 3276 - type: CableApcExtension - components: - - pos: 18.5,-19.5 - parent: 127 - type: Transform -- uid: 3277 - type: CableApcExtension - components: - - pos: 18.5,-20.5 - parent: 127 - type: Transform -- uid: 3278 - type: CableApcExtension - components: - - pos: 18.5,-21.5 - parent: 127 - type: Transform -- uid: 3279 - type: CableApcExtension - components: - - pos: 17.5,-21.5 - parent: 127 - type: Transform -- uid: 3280 - type: CableApcExtension - components: - - pos: 16.5,-21.5 - parent: 127 - type: Transform -- uid: 3281 - type: CableApcExtension - components: - - pos: 12.5,-17.5 - parent: 127 - type: Transform -- uid: 3282 - type: CableApcExtension - components: - - pos: 11.5,-17.5 - parent: 127 - type: Transform -- uid: 3283 - type: CableApcExtension - components: - - pos: 10.5,-17.5 - parent: 127 - type: Transform -- uid: 3284 - type: CableApcExtension - components: - - pos: 10.5,-18.5 - parent: 127 - type: Transform -- uid: 3285 - type: CableApcExtension - components: - - pos: 10.5,-19.5 - parent: 127 - type: Transform -- uid: 3286 - type: CableApcExtension - components: - - pos: 10.5,-20.5 - parent: 127 - type: Transform -- uid: 3287 - type: CableApcExtension - components: - - pos: 10.5,-21.5 - parent: 127 - type: Transform -- uid: 3288 - type: CableApcExtension - components: - - pos: 11.5,-21.5 - parent: 127 - type: Transform -- uid: 3289 - type: CableApcExtension - components: - - pos: 12.5,-21.5 - parent: 127 - type: Transform -- uid: 3290 - type: CableApcExtension - components: - - pos: 19.5,-17.5 - parent: 127 - type: Transform -- uid: 3291 - type: CableApcExtension - components: - - pos: 20.5,-17.5 - parent: 127 - type: Transform -- uid: 3292 - type: CableApcExtension - components: - - pos: 21.5,-17.5 - parent: 127 - type: Transform -- uid: 3293 - type: CableApcExtension - components: - - pos: 21.5,-16.5 - parent: 127 - type: Transform -- uid: 3294 - type: CableApcExtension - components: - - pos: 21.5,-15.5 - parent: 127 - type: Transform -- uid: 3295 - type: CableApcExtension - components: - - pos: 21.5,-18.5 - parent: 127 - type: Transform -- uid: 3296 - type: CableApcExtension - components: - - pos: 21.5,-19.5 - parent: 127 - type: Transform -- uid: 3297 - type: CableApcExtension - components: - - pos: 18.5,-13.5 - parent: 127 - type: Transform -- uid: 3298 - type: CableApcExtension - components: - - pos: 19.5,-13.5 - parent: 127 - type: Transform -- uid: 3299 - type: CableApcExtension - components: - - pos: 20.5,-13.5 - parent: 127 - type: Transform -- uid: 3300 - type: CableApcExtension - components: - - pos: 21.5,-13.5 - parent: 127 - type: Transform -- uid: 3301 - type: CableApcExtension - components: - - pos: 18.5,-12.5 - parent: 127 - type: Transform -- uid: 3302 - type: CableApcExtension - components: - - pos: 17.5,-13.5 - parent: 127 - type: Transform -- uid: 3303 - type: CableApcExtension - components: - - pos: 16.5,-13.5 - parent: 127 - type: Transform -- uid: 3304 - type: CableApcExtension - components: - - pos: 15.5,-13.5 - parent: 127 - type: Transform -- uid: 3305 - type: CableApcExtension - components: - - pos: 14.5,-13.5 - parent: 127 - type: Transform -- uid: 3306 - type: CableApcExtension - components: - - pos: 13.5,-13.5 - parent: 127 - type: Transform -- uid: 3307 - type: CableApcExtension - components: - - pos: 18.5,-11.5 - parent: 127 - type: Transform -- uid: 3308 - type: CableApcExtension - components: - - pos: 18.5,-10.5 - parent: 127 - type: Transform -- uid: 3309 - type: CableApcExtension - components: - - pos: 17.5,-10.5 - parent: 127 - type: Transform -- uid: 3310 - type: CableApcExtension - components: - - pos: 16.5,-10.5 - parent: 127 - type: Transform -- uid: 3311 - type: CableApcExtension - components: - - pos: 15.5,-10.5 - parent: 127 - type: Transform -- uid: 3312 - type: CableApcExtension - components: - - pos: 14.5,-10.5 - parent: 127 - type: Transform -- uid: 3313 - type: CableApcExtension - components: - - pos: 13.5,-10.5 - parent: 127 - type: Transform -- uid: 3314 - type: CableApcExtension - components: - - pos: 12.5,-10.5 - parent: 127 - type: Transform -- uid: 3315 - type: CableApcExtension - components: - - pos: 11.5,-10.5 - parent: 127 - type: Transform -- uid: 3316 - type: CableApcExtension - components: - - pos: 10.5,-10.5 - parent: 127 - type: Transform -- uid: 3317 - type: CableApcExtension - components: - - pos: 18.5,-9.5 - parent: 127 - type: Transform -- uid: 3318 - type: CableApcExtension - components: - - pos: 18.5,-8.5 - parent: 127 - type: Transform -- uid: 3319 - type: CableApcExtension - components: - - pos: 18.5,-7.5 - parent: 127 - type: Transform -- uid: 3320 - type: CableApcExtension - components: - - pos: 18.5,-6.5 - parent: 127 - type: Transform -- uid: 3321 - type: CableApcExtension - components: - - pos: 17.5,-6.5 - parent: 127 - type: Transform -- uid: 3322 - type: CableApcExtension - components: - - pos: 16.5,-6.5 - parent: 127 - type: Transform -- uid: 3323 - type: CableApcExtension - components: - - pos: 15.5,-6.5 - parent: 127 - type: Transform -- uid: 3324 - type: CableApcExtension - components: - - pos: 14.5,-6.5 - parent: 127 - type: Transform -- uid: 3325 - type: CableApcExtension - components: - - pos: 13.5,-6.5 - parent: 127 - type: Transform -- uid: 3326 - type: CableApcExtension - components: - - pos: 19.5,-10.5 - parent: 127 - type: Transform -- uid: 3327 - type: CableApcExtension - components: - - pos: 20.5,-10.5 - parent: 127 - type: Transform -- uid: 3328 - type: CableApcExtension - components: - - pos: 21.5,-10.5 - parent: 127 - type: Transform -- uid: 3329 - type: CableApcExtension - components: - - pos: 21.5,-9.5 - parent: 127 - type: Transform -- uid: 3330 - type: CableApcExtension - components: - - pos: 21.5,-8.5 - parent: 127 - type: Transform -- uid: 3331 - type: CableApcExtension - components: - - pos: 21.5,-7.5 - parent: 127 - type: Transform -- uid: 3332 - type: CableApcExtension - components: - - pos: 21.5,-6.5 - parent: 127 - type: Transform -- uid: 3333 - type: CableApcExtension - components: - - pos: 21.5,-5.5 - parent: 127 - type: Transform -- uid: 3334 - type: CableApcExtension - components: - - pos: 11.5,-1.5 - parent: 127 - type: Transform -- uid: 3335 - type: CableApcExtension - components: - - pos: 11.5,-2.5 - parent: 127 - type: Transform -- uid: 3336 - type: CableApcExtension - components: - - pos: 11.5,-3.5 - parent: 127 - type: Transform -- uid: 3337 - type: CableApcExtension - components: - - pos: 12.5,-3.5 - parent: 127 - type: Transform -- uid: 3338 - type: CableApcExtension - components: - - pos: 13.5,-3.5 - parent: 127 - type: Transform -- uid: 3339 - type: CableApcExtension - components: - - pos: 14.5,-3.5 - parent: 127 - type: Transform -- uid: 3340 - type: CableApcExtension - components: - - pos: 15.5,-3.5 - parent: 127 - type: Transform -- uid: 3341 - type: CableApcExtension - components: - - pos: 16.5,-3.5 - parent: 127 - type: Transform -- uid: 3342 - type: CableApcExtension - components: - - pos: 17.5,-3.5 - parent: 127 - type: Transform -- uid: 3343 - type: CableApcExtension - components: - - pos: 18.5,-3.5 - parent: 127 - type: Transform -- uid: 3344 - type: CableApcExtension - components: - - pos: 19.5,-3.5 - parent: 127 - type: Transform -- uid: 3345 - type: CableApcExtension - components: - - pos: 20.5,-3.5 - parent: 127 - type: Transform -- uid: 3346 - type: CableApcExtension - components: - - pos: 10.5,-1.5 - parent: 127 - type: Transform -- uid: 3347 - type: CableApcExtension - components: - - pos: 10.5,-0.5 - parent: 127 - type: Transform -- uid: 3348 - type: CableApcExtension - components: - - pos: 10.5,0.5 - parent: 127 - type: Transform -- uid: 3349 - type: CableApcExtension - components: - - pos: 10.5,1.5 - parent: 127 - type: Transform -- uid: 3350 - type: CableApcExtension - components: - - pos: 9.5,1.5 - parent: 127 - type: Transform -- uid: 3351 - type: CableApcExtension - components: - - pos: 41.5,9.5 - parent: 127 - type: Transform -- uid: 3352 - type: CableApcExtension - components: - - pos: 12.5,-1.5 - parent: 127 - type: Transform -- uid: 3353 - type: CableApcExtension - components: - - pos: 13.5,-1.5 - parent: 127 - type: Transform -- uid: 3354 - type: CableApcExtension - components: - - pos: 14.5,-1.5 - parent: 127 - type: Transform -- uid: 3355 - type: CableApcExtension - components: - - pos: 15.5,-1.5 - parent: 127 - type: Transform -- uid: 3356 - type: CableApcExtension - components: - - pos: 15.5,0.5 - parent: 127 - type: Transform -- uid: 3357 - type: CableApcExtension - components: - - pos: 15.5,-0.5 - parent: 127 - type: Transform -- uid: 3358 - type: CableApcExtension - components: - - pos: 15.5,1.5 - parent: 127 - type: Transform -- uid: 3359 - type: CableApcExtension - components: - - pos: 15.5,2.5 - parent: 127 - type: Transform -- uid: 3360 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-21.5 - parent: 127 - type: Transform -- uid: 3361 - type: CableMV - components: - - pos: 9.5,-19.5 - parent: 127 - type: Transform -- uid: 3362 - type: ClothingNeckScarfStripedBlue - components: - - pos: -7.5097704,-9.500023 - parent: 127 - type: Transform -- uid: 3363 - type: CableApcExtension - components: - - pos: 21.5,-3.5 - parent: 127 - type: Transform -- uid: 3364 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-23.5 - parent: 127 - type: Transform -- uid: 3365 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-23.5 - parent: 127 - type: Transform -- uid: 3366 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-22.5 - parent: 127 - type: Transform -- uid: 3367 - type: CableApcExtension - components: - - pos: 16.5,-0.5 - parent: 127 - type: Transform -- uid: 3368 - type: CableApcExtension - components: - - pos: 17.5,-0.5 - parent: 127 - type: Transform -- uid: 3369 - type: CableApcExtension - components: - - pos: 18.5,-0.5 - parent: 127 - type: Transform -- uid: 3370 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-25.5 - parent: 127 - type: Transform -- uid: 3371 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 127 - type: Transform -- uid: 3372 - type: WindowReinforcedDirectional - components: - - pos: 29.5,-32.5 - parent: 127 - type: Transform -- uid: 3373 - type: Catwalk - components: - - pos: 56.5,-18.5 - parent: 127 - type: Transform -- uid: 3374 - type: WallReinforced - components: - - pos: 46.5,-28.5 - parent: 127 - type: Transform -- uid: 3375 - type: Poweredlight - components: - - pos: 14.5,-13.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3376 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-14.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3377 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 33.5,-36.5 - parent: 127 - type: Transform -- uid: 3378 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-24.5 - parent: 127 - type: Transform -- uid: 3379 - type: CableApcExtension - components: - - pos: 41.5,8.5 - parent: 127 - type: Transform -- uid: 3380 - type: CableApcExtension - components: - - pos: 41.5,7.5 - parent: 127 - type: Transform -- uid: 3381 - type: CableApcExtension - components: - - pos: 41.5,6.5 - parent: 127 - type: Transform -- uid: 3382 - type: CableApcExtension - components: - - pos: 41.5,5.5 - parent: 127 - type: Transform -- uid: 3383 - type: CableApcExtension - components: - - pos: 41.5,4.5 - parent: 127 - type: Transform -- uid: 3384 - type: WarpPoint - components: - - pos: 40.5,-7.5 - parent: 127 - type: Transform - - location: bridge - type: WarpPoint -- uid: 3385 - type: WarpPoint - components: - - pos: 15.5,-3.5 - parent: 127 - type: Transform - - location: bar - type: WarpPoint -- uid: 3386 - type: WarpPoint - components: - - pos: 16.5,-17.5 - parent: 127 - type: Transform - - location: botany - type: WarpPoint -- uid: 3387 - type: WarpPoint - components: - - pos: 3.5,-16.5 - parent: 127 - type: Transform - - location: dorms - type: WarpPoint -- uid: 3388 - type: WarpPoint - components: - - pos: -3.5,-24.5 - parent: 127 - type: Transform - - location: disposals - type: WarpPoint -- uid: 3389 - type: WarpPoint - components: - - pos: 26.5,-5.5 - parent: 127 - type: Transform - - location: hop - type: WarpPoint -- uid: 3390 - type: ComputerId - components: - - rot: 3.141592653589793 rad - pos: 25.5,-6.5 - parent: 127 - type: Transform -- uid: 3391 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-5.5 - parent: 127 - type: Transform -- uid: 3392 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3393 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-14.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3394 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 25.5,-36.5 - parent: 127 - type: Transform -- uid: 3395 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-13.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3396 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-13.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3397 - type: CableApcExtension - components: - - pos: -5.5,-19.5 - parent: 127 - type: Transform -- uid: 3398 - type: CableApcExtension - components: - - pos: -5.5,-20.5 - parent: 127 - type: Transform -- uid: 3399 - type: CableApcExtension - components: - - pos: -5.5,-21.5 - parent: 127 - type: Transform -- uid: 3400 - type: CableApcExtension - components: - - pos: -5.5,-22.5 - parent: 127 - type: Transform -- uid: 3401 - type: CableApcExtension - components: - - pos: -4.5,-21.5 - parent: 127 - type: Transform -- uid: 3402 - type: CableApcExtension - components: - - pos: -3.5,-21.5 - parent: 127 - type: Transform -- uid: 3403 - type: CableApcExtension - components: - - pos: -3.5,-22.5 - parent: 127 - type: Transform -- uid: 3404 - type: CableApcExtension - components: - - pos: -3.5,-23.5 - parent: 127 - type: Transform -- uid: 3405 - type: CableApcExtension - components: - - pos: -3.5,-24.5 - parent: 127 - type: Transform -- uid: 3406 - type: CableApcExtension - components: - - pos: -3.5,-25.5 - parent: 127 - type: Transform -- uid: 3407 - type: CableApcExtension - components: - - pos: -3.5,-26.5 - parent: 127 - type: Transform -- uid: 3408 - type: CableApcExtension - components: - - pos: -6.5,-22.5 - parent: 127 - type: Transform -- uid: 3409 - type: CableApcExtension - components: - - pos: -4.5,-26.5 - parent: 127 - type: Transform -- uid: 3410 - type: CableApcExtension - components: - - pos: -5.5,-26.5 - parent: 127 - type: Transform -- uid: 3411 - type: CableApcExtension - components: - - pos: -6.5,-26.5 - parent: 127 - type: Transform -- uid: 3412 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-26.5 - parent: 127 - type: Transform -- uid: 3413 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-14.5 - parent: 127 - type: Transform -- uid: 3414 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-17.5 - parent: 127 - type: Transform -- uid: 3415 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,-26.5 - parent: 127 - type: Transform -- uid: 3416 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 127 - type: Transform -- uid: 3417 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-22.5 - parent: 127 - type: Transform -- uid: 3418 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 127 - type: Transform -- uid: 3419 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-24.5 - parent: 127 - type: Transform -- uid: 3420 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-24.5 - parent: 127 - type: Transform -- uid: 3421 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-24.5 - parent: 127 - type: Transform -- uid: 3422 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-24.5 - parent: 127 - type: Transform -- uid: 3423 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-24.5 - parent: 127 - type: Transform -- uid: 3424 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-24.5 - parent: 127 - type: Transform -- uid: 3425 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-24.5 - parent: 127 - type: Transform -- uid: 3426 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-24.5 - parent: 127 - type: Transform -- uid: 3427 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-24.5 - parent: 127 - type: Transform -- uid: 3428 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 127 - type: Transform -- uid: 3429 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 127 - type: Transform -- uid: 3430 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 36.5,-24.5 - parent: 127 - type: Transform -- uid: 3431 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-24.5 - parent: 127 - type: Transform -- uid: 3432 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 28.5,-32.5 - parent: 127 - type: Transform -- uid: 3433 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,-36.5 - parent: 127 - type: Transform -- uid: 3434 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 23.5,-22.5 - parent: 127 - type: Transform -- uid: 3435 - type: WallReinforced - components: - - pos: 37.5,-17.5 - parent: 127 - type: Transform -- uid: 3436 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,-25.5 - parent: 127 - type: Transform -- uid: 3437 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 25.5,-32.5 - parent: 127 - type: Transform -- uid: 3438 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 28.5,-31.5 - parent: 127 - type: Transform -- uid: 3439 - type: ReinforcedWindow - components: - - pos: 32.5,-23.5 - parent: 127 - type: Transform -- uid: 3440 - type: GasPipeStraight - components: - - pos: 22.5,-19.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 3441 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 27.5,-29.5 - parent: 127 - type: Transform -- uid: 3442 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 27.5,-36.5 - parent: 127 - type: Transform -- uid: 3443 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 35.5,-29.5 - parent: 127 - type: Transform -- uid: 3444 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 26.5,-36.5 - parent: 127 - type: Transform -- uid: 3445 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 32.5,-36.5 - parent: 127 - type: Transform -- uid: 3446 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 39.5,-24.5 - parent: 127 - type: Transform -- uid: 3447 - type: WallReinforced - components: - - pos: 32.5,-21.5 - parent: 127 - type: Transform -- uid: 3448 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 38.5,-33.5 - parent: 127 - type: Transform -- uid: 3449 - type: ReinforcedWindow - components: - - pos: 37.5,-38.5 - parent: 127 - type: Transform -- uid: 3450 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 35.5,-30.5 - parent: 127 - type: Transform -- uid: 3451 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 37.5,-30.5 - parent: 127 - type: Transform -- uid: 3452 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 31.5,-36.5 - parent: 127 - type: Transform -- uid: 3453 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-8.5 - parent: 127 - type: Transform -- uid: 3454 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-8.5 - parent: 127 - type: Transform -- uid: 3455 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-17.5 - parent: 127 - type: Transform -- uid: 3456 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,-27.5 - parent: 127 - type: Transform -- uid: 3457 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-26.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3458 - type: WallReinforced - components: - - pos: 37.5,-24.5 - parent: 127 - type: Transform -- uid: 3459 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 28.5,-27.5 - parent: 127 - type: Transform -- uid: 3460 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 26.5,-27.5 - parent: 127 - type: Transform -- uid: 3461 - type: ComfyChair - components: - - pos: 26.5,-28.5 - parent: 127 - type: Transform -- uid: 3462 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 25.5,-27.5 - parent: 127 - type: Transform -- uid: 3463 - type: WallReinforced - components: - - pos: 41.5,-29.5 - parent: 127 - type: Transform -- uid: 3464 - type: WallReinforced - components: - - pos: 23.5,-21.5 - parent: 127 - type: Transform -- uid: 3465 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 23.5,-23.5 - parent: 127 - type: Transform -- uid: 3466 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-18.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 3467 - type: PoweredSmallLight - components: - - pos: -7.5,-7.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3468 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-16.5 - parent: 127 - type: Transform -- uid: 3469 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 40.5,-33.5 - parent: 127 - type: Transform -- uid: 3470 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 40.5,-24.5 - parent: 127 - type: Transform -- uid: 3471 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 28.5,-33.5 - parent: 127 - type: Transform -- uid: 3472 - type: WallReinforced - components: - - pos: 27.5,-17.5 - parent: 127 - type: Transform -- uid: 3473 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 3474 - type: GasPipeStraight - components: - - pos: 22.5,-21.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 3475 - type: WallReinforced - components: - - pos: 43.5,-27.5 - parent: 127 - type: Transform -- uid: 3476 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 25.5,-31.5 - parent: 127 - type: Transform -- uid: 3477 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 39.5,-30.5 - parent: 127 - type: Transform -- uid: 3478 - type: FaxMachineBase - components: - - pos: 16.5,-2.5 - parent: 127 - type: Transform - - name: Bar - type: FaxMachine -- uid: 3479 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 26.5,-29.5 - parent: 127 - type: Transform -- uid: 3480 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 27.5,-33.5 - parent: 127 - type: Transform -- uid: 3481 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,-27.5 - parent: 127 - type: Transform -- uid: 3482 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 26.5,-35.5 - parent: 127 - type: Transform -- uid: 3483 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 27.5,-35.5 - parent: 127 - type: Transform -- uid: 3484 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 40.5,-30.5 - parent: 127 - type: Transform -- uid: 3485 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 28.5,-36.5 - parent: 127 - type: Transform -- uid: 3486 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,-29.5 - parent: 127 - type: Transform -- uid: 3487 - type: WallReinforced - components: - - pos: 42.5,-27.5 - parent: 127 - type: Transform -- uid: 3488 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 39.5,-25.5 - parent: 127 - type: Transform -- uid: 3489 - type: CableApcExtension - components: - - pos: 41.5,3.5 - parent: 127 - type: Transform -- uid: 3490 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 40.5,-34.5 - parent: 127 - type: Transform -- uid: 3491 - type: RandomPosterLegit - components: - - pos: -0.5,-15.5 - parent: 127 - type: Transform -- uid: 3492 - type: ElectricGuitarInstrument - components: - - pos: 2.3682916,-12.340635 - parent: 127 - type: Transform -- uid: 3493 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 36.5,-25.5 - parent: 127 - type: Transform -- uid: 3494 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 40.5,-38.5 - parent: 127 - type: Transform -- uid: 3495 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 27.5,-36.5 - parent: 127 - type: Transform -- uid: 3496 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 40.5,-37.5 - parent: 127 - type: Transform -- uid: 3497 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-36.5 - parent: 127 - type: Transform -- uid: 3498 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 35.5,-24.5 - parent: 127 - type: Transform -- uid: 3499 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 36.5,-30.5 - parent: 127 - type: Transform -- uid: 3500 - type: ReinforcedWindow - components: - - pos: 38.5,-38.5 - parent: 127 - type: Transform -- uid: 3501 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,-28.5 - parent: 127 - type: Transform -- uid: 3502 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,-30.5 - parent: 127 - type: Transform -- uid: 3503 - type: WindowReinforcedDirectional - components: - - pos: 24.5,-32.5 - parent: 127 - type: Transform -- uid: 3504 - type: WallReinforced - components: - - pos: 37.5,-25.5 - parent: 127 - type: Transform -- uid: 3505 - type: CableApcExtension - components: - - pos: 41.5,12.5 - parent: 127 - type: Transform -- uid: 3506 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-24.5 - parent: 127 - type: Transform -- uid: 3507 - type: WindowReinforcedDirectional - components: - - pos: 29.5,-28.5 - parent: 127 - type: Transform -- uid: 3508 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-14.5 - parent: 127 - type: Transform -- uid: 3509 - type: WindowReinforcedDirectional - components: - - pos: 27.5,-32.5 - parent: 127 - type: Transform -- uid: 3510 - type: ChairWood - components: - - pos: 29.5,-28.5 - parent: 127 - type: Transform -- uid: 3511 - type: WallReinforced - components: - - pos: -4.5,-27.5 - parent: 127 - type: Transform -- uid: 3512 - type: WallSolid - components: - - pos: 4.5,-27.5 - parent: 127 - type: Transform -- uid: 3513 - type: WallReinforced - components: - - pos: -5.5,-27.5 - parent: 127 - type: Transform -- uid: 3514 - type: WallReinforced - components: - - pos: -2.5,-27.5 - parent: 127 - type: Transform -- uid: 3515 - type: WallReinforced - components: - - pos: 0.5,-28.5 - parent: 127 - type: Transform -- uid: 3516 - type: WallSolid - components: - - pos: 1.5,-27.5 - parent: 127 - type: Transform -- uid: 3517 - type: WallReinforced - components: - - pos: -1.5,-27.5 - parent: 127 - type: Transform -- uid: 3518 - type: WallReinforced - components: - - pos: -0.5,-27.5 - parent: 127 - type: Transform -- uid: 3519 - type: WallReinforced - components: - - pos: 0.5,-27.5 - parent: 127 - type: Transform -- uid: 3520 - type: Airlock - components: - - pos: 0.5,-18.5 - parent: 127 - type: Transform -- uid: 3521 - type: GasPipeTJunction - components: - - pos: 35.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 3522 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,-24.5 - parent: 127 - type: Transform -- uid: 3523 - type: WallSolid - components: - - pos: 31.5,-32.5 - parent: 127 - type: Transform -- uid: 3524 - type: WallSolid - components: - - pos: 17.5,-26.5 - parent: 127 - type: Transform -- uid: 3525 - type: FirelockGlass - components: - - pos: 20.5,-21.5 - parent: 127 - type: Transform -- uid: 3526 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 32.5,-24.5 - parent: 127 - type: Transform -- uid: 3527 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 38.5,-30.5 - parent: 127 - type: Transform -- uid: 3528 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 23.5,-23.5 - parent: 127 - type: Transform -- uid: 3529 - type: FirelockGlass - components: - - pos: 20.5,-23.5 - parent: 127 - type: Transform -- uid: 3530 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 23.5,-22.5 - parent: 127 - type: Transform -- uid: 3531 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,-17.5 - parent: 127 - type: Transform -- uid: 3532 - type: WindowReinforcedDirectional - components: - - pos: 25.5,-32.5 - parent: 127 - type: Transform -- uid: 3533 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,-32.5 - parent: 127 - type: Transform -- uid: 3534 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,-29.5 - parent: 127 - type: Transform -- uid: 3535 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 24.5,-35.5 - parent: 127 - type: Transform -- uid: 3536 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 28.5,-35.5 - parent: 127 - type: Transform -- uid: 3537 - type: FirelockGlass - components: - - pos: 20.5,-22.5 - parent: 127 - type: Transform -- uid: 3538 - type: FirelockGlass - components: - - pos: 11.5,-21.5 - parent: 127 - type: Transform -- uid: 3539 - type: FirelockGlass - components: - - pos: 11.5,-22.5 - parent: 127 - type: Transform -- uid: 3540 - type: FirelockGlass - components: - - pos: 11.5,-23.5 - parent: 127 - type: Transform -- uid: 3541 - type: AirlockGlass - components: - - pos: 5.5,-18.5 - parent: 127 - type: Transform -- uid: 3542 - type: AirlockGlass - components: - - pos: 4.5,-18.5 - parent: 127 - type: Transform -- uid: 3543 - type: AirlockGlass - components: - - pos: 8.5,-16.5 - parent: 127 - type: Transform -- uid: 3544 - type: AirlockGlass - components: - - pos: 8.5,-17.5 - parent: 127 - type: Transform -- uid: 3545 - type: AirlockGlass - components: - - pos: 14.5,-24.5 - parent: 127 - type: Transform -- uid: 3546 - type: AirlockGlass - components: - - pos: 15.5,-24.5 - parent: 127 - type: Transform -- uid: 3547 - type: AirlockGlass - components: - - pos: 16.5,-24.5 - parent: 127 - type: Transform -- uid: 3548 - type: CableApcExtension - components: - - pos: 41.5,13.5 - parent: 127 - type: Transform -- uid: 3549 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 25.5,-33.5 - parent: 127 - type: Transform -- uid: 3550 - type: WallSolid - components: - - pos: 31.5,-33.5 - parent: 127 - type: Transform -- uid: 3551 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 33.5,-24.5 - parent: 127 - type: Transform -- uid: 3552 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 29.5,-31.5 - parent: 127 - type: Transform -- uid: 3553 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 40.5,-35.5 - parent: 127 - type: Transform -- uid: 3554 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-14.5 - parent: 127 - type: Transform -- uid: 3555 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 29.5,-35.5 - parent: 127 - type: Transform -- uid: 3556 - type: WallSolid - components: - - pos: 32.5,-33.5 - parent: 127 - type: Transform -- uid: 3557 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 36.5,-38.5 - parent: 127 - type: Transform -- uid: 3558 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 36.5,-33.5 - parent: 127 - type: Transform -- uid: 3559 - type: MaintenanceWeaponSpawner - components: - - pos: 24.5,18.5 - parent: 127 - type: Transform -- uid: 3560 - type: WallReinforced - components: - - pos: 35.5,-28.5 - parent: 127 - type: Transform -- uid: 3561 - type: WallReinforced - components: - - pos: 41.5,-27.5 - parent: 127 - type: Transform -- uid: 3562 - type: AirlockExternalGlass - components: - - pos: 62.5,-28.5 - parent: 127 - type: Transform -- uid: 3563 - type: WallReinforced - components: - - pos: 47.5,-13.5 - parent: 127 - type: Transform -- uid: 3564 - type: Grille - components: - - pos: 62.5,-29.5 - parent: 127 - type: Transform -- uid: 3565 - type: WallReinforced - components: - - pos: 49.5,-14.5 - parent: 127 - type: Transform -- uid: 3566 - type: WallReinforced - components: - - pos: 49.5,-13.5 - parent: 127 - type: Transform -- uid: 3567 - type: WallSolid - components: - - pos: 58.5,-24.5 - parent: 127 - type: Transform -- uid: 3568 - type: CableApcExtension - components: - - pos: 41.5,14.5 - parent: 127 - type: Transform -- uid: 3569 - type: SignBar - components: - - pos: 20.5,-1.5 - parent: 127 - type: Transform -- uid: 3570 - type: WallSolid - components: - - pos: 58.5,-26.5 - parent: 127 - type: Transform -- uid: 3571 - type: WallReinforced - components: - - pos: 52.5,-14.5 - parent: 127 - type: Transform -- uid: 3572 - type: WallReinforced - components: - - pos: 53.5,-14.5 - parent: 127 - type: Transform -- uid: 3573 - type: WallReinforced - components: - - pos: 54.5,-14.5 - parent: 127 - type: Transform -- uid: 3574 - type: ReinforcedWindow - components: - - pos: 7.5,-36.5 - parent: 127 - type: Transform -- uid: 3575 - type: ReinforcedWindow - components: - - pos: 40.5,-20.5 - parent: 127 - type: Transform -- uid: 3576 - type: FirelockGlass - components: - - pos: 29.5,-10.5 - parent: 127 - type: Transform -- uid: 3577 - type: WallReinforced - components: - - pos: 26.5,-17.5 - parent: 127 - type: Transform -- uid: 3578 - type: WallSolid - components: - - pos: 34.5,-33.5 - parent: 127 - type: Transform -- uid: 3579 - type: CableApcExtension - components: - - pos: 39.5,-32.5 - parent: 127 - type: Transform -- uid: 3580 - type: Table - components: - - pos: 48.5,-29.5 - parent: 127 - type: Transform -- uid: 3581 - type: Table - components: - - pos: 52.5,-29.5 - parent: 127 - type: Transform -- uid: 3582 - type: Table - components: - - pos: 53.5,-29.5 - parent: 127 - type: Transform -- uid: 3583 - type: Table - components: - - pos: 41.5,-32.5 - parent: 127 - type: Transform -- uid: 3584 - type: ReinforcedWindow - components: - - pos: 29.5,-15.5 - parent: 127 - type: Transform -- uid: 3585 - type: CableApcExtension - components: - - pos: 41.5,15.5 - parent: 127 - type: Transform -- uid: 3586 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-28.5 - parent: 127 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 3587 - type: AirlockExternalGlass - components: - - pos: 62.5,-34.5 - parent: 127 - type: Transform -- uid: 3588 - type: WallReinforced - components: - - pos: 41.5,-26.5 - parent: 127 - type: Transform -- uid: 3589 - type: Barricade - components: - - pos: 48.5,-37.5 - parent: 127 - type: Transform -- uid: 3590 - type: ReinforcedWindow - components: - - pos: 47.5,-39.5 - parent: 127 - type: Transform -- uid: 3591 - type: Grille - components: - - pos: 64.5,-40.5 - parent: 127 - type: Transform -- uid: 3592 - type: WallSolid - components: - - pos: 54.5,-32.5 - parent: 127 - type: Transform -- uid: 3593 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-34.5 - parent: 127 - type: Transform -- uid: 3594 - type: CableApcExtension - components: - - pos: 27.5,-30.5 - parent: 127 - type: Transform -- uid: 3595 - type: ReinforcedWindow - components: - - pos: 62.5,-37.5 - parent: 127 - type: Transform -- uid: 3596 - type: Grille - components: - - pos: 63.5,-37.5 - parent: 127 - type: Transform -- uid: 3597 - type: Grille - components: - - pos: 63.5,-29.5 - parent: 127 - type: Transform -- uid: 3598 - type: Grille - components: - - pos: 62.5,-33.5 - parent: 127 - type: Transform -- uid: 3599 - type: HeadSkeleton - components: - - flags: SessionSpecific - desc: jim :) - name: jim :) - type: MetaData - - pos: 53.51031,-27.49528 - parent: 127 - type: Transform -- uid: 3600 - type: RandomSpawner - components: - - pos: 46.5,-34.5 - parent: 127 - type: Transform -- uid: 3601 - type: WallReinforced - components: - - pos: 58.5,-21.5 - parent: 127 - type: Transform -- uid: 3602 - type: WallReinforced - components: - - pos: 48.5,-25.5 - parent: 127 - type: Transform -- uid: 3603 - type: Grille - components: - - pos: 65.5,-33.5 - parent: 127 - type: Transform -- uid: 3604 - type: WallReinforced - components: - - pos: 50.5,-27.5 - parent: 127 - type: Transform -- uid: 3605 - type: WallSolid - components: - - pos: 51.5,-31.5 - parent: 127 - type: Transform -- uid: 3606 - type: ClosetMaintenanceFilledRandom - components: - - pos: 31.5,-28.5 - parent: 127 - type: Transform -- uid: 3607 - type: Barricade - components: - - pos: 48.5,-32.5 - parent: 127 - type: Transform -- uid: 3608 - type: WallSolid - components: - - pos: 50.5,-31.5 - parent: 127 - type: Transform -- uid: 3609 - type: ClosetMaintenanceFilledRandom - components: - - pos: 33.5,-25.5 - parent: 127 - type: Transform -- uid: 3610 - type: WallReinforced - components: - - pos: 48.5,-17.5 - parent: 127 - type: Transform -- uid: 3611 - type: Grille - components: - - pos: 40.5,-18.5 - parent: 127 - type: Transform -- uid: 3612 - type: WallReinforced - components: - - pos: 46.5,-27.5 - parent: 127 - type: Transform -- uid: 3613 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-38.5 - parent: 127 - type: Transform -- uid: 3614 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,-34.5 - parent: 127 - type: Transform -- uid: 3615 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 51.5,-36.5 - parent: 127 - type: Transform -- uid: 3616 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 52.5,-38.5 - parent: 127 - type: Transform -- uid: 3617 - type: Railing - components: - - pos: 50.5,-35.5 - parent: 127 - type: Transform -- uid: 3618 - type: UprightPianoInstrument - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-38.5 - parent: 127 - type: Transform -- uid: 3619 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 50.5,-36.5 - parent: 127 - type: Transform -- uid: 3620 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 51.5,-38.5 - parent: 127 - type: Transform -- uid: 3621 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,-35.5 - parent: 127 - type: Transform -- uid: 3622 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,-33.5 - parent: 127 - type: Transform -- uid: 3623 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 53.5,-38.5 - parent: 127 - type: Transform -- uid: 3624 - type: Grille - components: - - pos: 54.5,-22.5 - parent: 127 - type: Transform -- uid: 3625 - type: Grille - components: - - pos: 54.5,-20.5 - parent: 127 - type: Transform -- uid: 3626 - type: NitrogenTankFilled - components: - - pos: 24.370384,17.575916 - parent: 127 - type: Transform -- uid: 3627 - type: WallSolid - components: - - pos: 55.5,-35.5 - parent: 127 - type: Transform -- uid: 3628 - type: ReinforcedWindow - components: - - pos: 54.5,-21.5 - parent: 127 - type: Transform -- uid: 3629 - type: WallReinforced - components: - - pos: 51.5,-39.5 - parent: 127 - type: Transform -- uid: 3630 - type: Grille - components: - - pos: 54.5,-23.5 - parent: 127 - type: Transform -- uid: 3631 - type: WallReinforced - components: - - pos: 54.5,-19.5 - parent: 127 - type: Transform -- uid: 3632 - type: WallSolid - components: - - pos: 49.5,-31.5 - parent: 127 - type: Transform -- uid: 3633 - type: WallReinforced - components: - - pos: 57.5,-14.5 - parent: 127 - type: Transform -- uid: 3634 - type: Grille - components: - - pos: 62.5,-32.5 - parent: 127 - type: Transform -- uid: 3635 - type: Grille - components: - - pos: 64.5,-33.5 - parent: 127 - type: Transform -- uid: 3636 - type: Grille - components: - - pos: 62.5,-15.5 - parent: 127 - type: Transform -- uid: 3637 - type: WallSolid - components: - - pos: 54.5,-27.5 - parent: 127 - type: Transform -- uid: 3638 - type: Grille - components: - - pos: 62.5,-31.5 - parent: 127 - type: Transform -- uid: 3639 - type: Grille - components: - - pos: 63.5,-33.5 - parent: 127 - type: Transform -- uid: 3640 - type: ReinforcedWindow - components: - - pos: 65.5,-35.5 - parent: 127 - type: Transform -- uid: 3641 - type: WallSolid - components: - - pos: 53.5,-28.5 - parent: 127 - type: Transform -- uid: 3642 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-31.5 - parent: 127 - type: Transform -- uid: 3643 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-38.5 - parent: 127 - type: Transform -- uid: 3644 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-31.5 - parent: 127 - type: Transform -- uid: 3645 - type: Barricade - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-35.5 - parent: 127 - type: Transform -- uid: 3646 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-31.5 - parent: 127 - type: Transform -- uid: 3647 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-36.5 - parent: 127 - type: Transform -- uid: 3648 - type: Grille - components: - - pos: 65.5,-25.5 - parent: 127 - type: Transform -- uid: 3649 - type: Grille - components: - - pos: 64.5,-25.5 - parent: 127 - type: Transform -- uid: 3650 - type: ReinforcedWindow - components: - - pos: 62.5,-33.5 - parent: 127 - type: Transform -- uid: 3651 - type: ReinforcedWindow - components: - - pos: 62.5,-31.5 - parent: 127 - type: Transform -- uid: 3652 - type: Grille - components: - - pos: 63.5,-25.5 - parent: 127 - type: Transform -- uid: 3653 - type: UniformShortsRedWithTop - components: - - pos: 54.351753,-38.336185 - parent: 127 - type: Transform -- uid: 3654 - type: WallSolid - components: - - pos: 42.5,-33.5 - parent: 127 - type: Transform -- uid: 3655 - type: WallSolid - components: - - pos: 41.5,-33.5 - parent: 127 - type: Transform -- uid: 3656 - type: WallReinforced - components: - - pos: 41.5,-38.5 - parent: 127 - type: Transform -- uid: 3657 - type: WallReinforced - components: - - pos: 61.5,-23.5 - parent: 127 - type: Transform -- uid: 3658 - type: Table - components: - - pos: 40.5,-32.5 - parent: 127 - type: Transform -- uid: 3659 - type: ClothingOuterHardsuitEVA - components: - - pos: 39.493927,-34.33916 - parent: 127 - type: Transform -- uid: 3660 - type: Grille - components: - - pos: 38.5,-40.5 - parent: 127 - type: Transform -- uid: 3661 - type: ToySpawner - components: - - pos: 21.5,10.5 - parent: 127 - type: Transform -- uid: 3662 - type: WallReinforced - components: - - pos: 42.5,-38.5 - parent: 127 - type: Transform -- uid: 3663 - type: WallReinforced - components: - - pos: 59.5,-23.5 - parent: 127 - type: Transform -- uid: 3664 - type: Table - components: - - pos: 31.5,-27.5 - parent: 127 - type: Transform -- uid: 3665 - type: Rack - components: - - pos: 36.5,-36.5 - parent: 127 - type: Transform -- uid: 3666 - type: Grille - components: - - pos: 39.5,-40.5 - parent: 127 - type: Transform -- uid: 3667 - type: ClosetEmergencyFilledRandom - components: - - pos: 60.5,-24.5 - parent: 127 - type: Transform -- uid: 3668 - type: UniformShortsRed - components: - - pos: 54.70936,-36.492435 - parent: 127 - type: Transform -- uid: 3669 - type: UniformShortsRedWithTop - components: - - pos: 54.695503,-38.35181 - parent: 127 - type: Transform -- uid: 3670 - type: UniformShortsRed - components: - - pos: 54.36561,-36.336185 - parent: 127 - type: Transform -- uid: 3671 - type: ReinforcedWindow - components: - - pos: 62.5,-25.5 - parent: 127 - type: Transform -- uid: 3672 - type: WallReinforced - components: - - pos: 62.5,-23.5 - parent: 127 - type: Transform -- uid: 3673 - type: CableApcExtension - components: - - pos: 41.5,16.5 - parent: 127 - type: Transform -- uid: 3674 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,-19.5 - parent: 127 - type: Transform -- uid: 3675 - type: MaintenanceToolSpawner - components: - - pos: 21.5,9.5 - parent: 127 - type: Transform -- uid: 3676 - type: MaintenanceToolSpawner - components: - - pos: 18.5,14.5 - parent: 127 - type: Transform -- uid: 3677 - type: WallSolid - components: - - pos: 59.5,-36.5 - parent: 127 - type: Transform -- uid: 3678 - type: ReinforcedWindow - components: - - pos: 62.5,-29.5 - parent: 127 - type: Transform -- uid: 3679 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,-20.5 - parent: 127 - type: Transform -- uid: 3680 - type: PinpointerNuclear - components: - - pos: 37.510883,-7.464068 - parent: 127 - type: Transform -- uid: 3681 - type: WallReinforced - components: - - pos: 50.5,-39.5 - parent: 127 - type: Transform -- uid: 3682 - type: WallSolid - components: - - pos: 54.5,-33.5 - parent: 127 - type: Transform -- uid: 3683 - type: WallSolid - components: - - pos: 54.5,-34.5 - parent: 127 - type: Transform -- uid: 3684 - type: WallSolid - components: - - pos: 54.5,-35.5 - parent: 127 - type: Transform -- uid: 3685 - type: ClosetFireFilled - components: - - pos: 55.5,-33.5 - parent: 127 - type: Transform -- uid: 3686 - type: ClosetFireFilled - components: - - pos: 47.5,-14.5 - parent: 127 - type: Transform -- uid: 3687 - type: ClosetMaintenanceFilledRandom - components: - - pos: 48.5,-14.5 - parent: 127 - type: Transform -- uid: 3688 - type: ClosetEmergencyFilledRandom - components: - - pos: 31.5,-13.5 - parent: 127 - type: Transform -- uid: 3689 - type: CableHV - components: - - pos: 39.5,-12.5 - parent: 127 - type: Transform -- uid: 3690 - type: WallSolid - components: - - pos: 17.5,-27.5 - parent: 127 - type: Transform -- uid: 3691 - type: WallSolid - components: - - pos: 18.5,-27.5 - parent: 127 - type: Transform -- uid: 3692 - type: WallSolid - components: - - pos: 19.5,-27.5 - parent: 127 - type: Transform -- uid: 3693 - type: WallSolid - components: - - pos: 20.5,-27.5 - parent: 127 - type: Transform -- uid: 3694 - type: WallReinforced - components: - - pos: 23.5,-29.5 - parent: 127 - type: Transform -- uid: 3695 - type: AirlockEngineeringLocked - components: - - pos: 22.5,-27.5 - parent: 127 - type: Transform -- uid: 3696 - type: WallReinforced - components: - - pos: 22.5,-29.5 - parent: 127 - type: Transform -- uid: 3697 - type: ClosetMaintenanceFilledRandom - components: - - pos: 58.5,-29.5 - parent: 127 - type: Transform -- uid: 3698 - type: ClosetEmergencyFilledRandom - components: - - pos: 32.5,-32.5 - parent: 127 - type: Transform -- uid: 3699 - type: WallReinforced - components: - - pos: 23.5,-27.5 - parent: 127 - type: Transform -- uid: 3700 - type: WallReinforced - components: - - pos: 23.5,-28.5 - parent: 127 - type: Transform -- uid: 3701 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-32.5 - parent: 127 - type: Transform -- uid: 3702 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-30.5 - parent: 127 - type: Transform -- uid: 3703 - type: CrateEmergencyInternals - components: - - pos: -9.5,-9.5 - parent: 127 - type: Transform -- uid: 3704 - type: ClosetFireFilled - components: - - pos: 30.5,-13.5 - parent: 127 - type: Transform -- uid: 3705 - type: ClosetEmergencyFilledRandom - components: - - pos: 55.5,-34.5 - parent: 127 - type: Transform -- uid: 3706 - type: ClosetFireFilled - components: - - pos: 59.5,-24.5 - parent: 127 - type: Transform -- uid: 3707 - type: ClosetFireFilled - components: - - pos: 31.5,-31.5 - parent: 127 - type: Transform -- uid: 3708 - type: CableMV - components: - - pos: 38.5,-12.5 - parent: 127 - type: Transform -- uid: 3709 - type: ClosetEmergencyFilledRandom - components: - - pos: 46.5,-14.5 - parent: 127 - type: Transform -- uid: 3710 - type: WallSolid - components: - - pos: 58.5,-33.5 - parent: 127 - type: Transform -- uid: 3711 - type: Table - components: - - pos: 54.5,-38.5 - parent: 127 - type: Transform -- uid: 3712 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 50.5,-38.5 - parent: 127 - type: Transform -- uid: 3713 - type: WallReinforced - components: - - pos: 59.5,-42.5 - parent: 127 - type: Transform -- uid: 3714 - type: ClosetMaintenanceFilledRandom - components: - - pos: 58.5,-28.5 - parent: 127 - type: Transform -- uid: 3715 - type: PottedPlantRandom - components: - - pos: 61.5,-24.5 - parent: 127 - type: Transform -- uid: 3716 - type: AirlockEngineeringLocked - components: - - pos: 38.5,-12.5 - parent: 127 - type: Transform -- uid: 3717 - type: WallReinforced - components: - - pos: 46.5,-20.5 - parent: 127 - type: Transform -- uid: 3718 - type: WallReinforced - components: - - pos: 45.5,-26.5 - parent: 127 - type: Transform -- uid: 3719 - type: WallReinforced - components: - - pos: 47.5,-17.5 - parent: 127 - type: Transform -- uid: 3720 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: 61.5,-38.5 - parent: 127 - type: Transform -- uid: 3721 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 59.5,-32.5 - parent: 127 - type: Transform -- uid: 3722 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: 59.5,-33.5 - parent: 127 - type: Transform -- uid: 3723 - type: Barricade - components: - - pos: 46.5,-32.5 - parent: 127 - type: Transform -- uid: 3724 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: 60.5,-38.5 - parent: 127 - type: Transform -- uid: 3725 - type: CableMV - components: - - pos: 39.5,-12.5 - parent: 127 - type: Transform -- uid: 3726 - type: WaterTankFull - components: - - pos: 56.5,-15.5 - parent: 127 - type: Transform -- uid: 3727 - type: WeldingFuelTankFull - components: - - pos: 57.5,-16.5 - parent: 127 - type: Transform -- uid: 3728 - type: WallReinforced - components: - - pos: 38.5,-13.5 - parent: 127 - type: Transform -- uid: 3729 - type: WaterTankFull - components: - - pos: 31.5,-30.5 - parent: 127 - type: Transform -- uid: 3730 - type: WeldingFuelTankFull - components: - - pos: 58.5,-36.5 - parent: 127 - type: Transform -- uid: 3731 - type: WallReinforced - components: - - pos: 53.5,-17.5 - parent: 127 - type: Transform -- uid: 3732 - type: ClothingHandsGlovesBoxingGreen - components: - - pos: 50.480835,-32.507507 - parent: 127 - type: Transform -- uid: 3733 - type: DrinkShaker - components: - - pos: 41.668148,-36.30592 - parent: 127 - type: Transform -- uid: 3734 - type: Rack - components: - - pos: 25.5,-26.5 - parent: 127 - type: Transform -- uid: 3735 - type: Grille - components: - - pos: 63.5,-18.5 - parent: 127 - type: Transform -- uid: 3736 - type: WallSolid - components: - - pos: 55.5,-38.5 - parent: 127 - type: Transform -- uid: 3737 - type: WallReinforced - components: - - pos: 58.5,-15.5 - parent: 127 - type: Transform -- uid: 3738 - type: WallReinforced - components: - - pos: 54.5,-17.5 - parent: 127 - type: Transform -- uid: 3739 - type: ChairWood - components: - - pos: 48.5,-33.5 - parent: 127 - type: Transform -- uid: 3740 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-35.5 - parent: 127 - type: Transform -- uid: 3741 - type: Grille - components: - - pos: 62.5,-35.5 - parent: 127 - type: Transform -- uid: 3742 - type: Grille - components: - - pos: 63.5,-35.5 - parent: 127 - type: Transform -- uid: 3743 - type: CrateNPCCow - components: - - pos: 16.5,-9.5 - parent: 127 - type: Transform -- uid: 3744 - type: WaterTankFull - components: - - pos: 58.5,-38.5 - parent: 127 - type: Transform -- uid: 3745 - type: Grille - components: - - pos: 46.5,-39.5 - parent: 127 - type: Transform -- uid: 3746 - type: FloorTileItemBoxing - components: - - pos: 52.5,-34.5 - parent: 127 - type: Transform -- uid: 3747 - type: WallSolid - components: - - pos: 52.5,-31.5 - parent: 127 - type: Transform -- uid: 3748 - type: CableHV - components: - - pos: 58.5,-22.5 - parent: 127 - type: Transform -- uid: 3749 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-38.5 - parent: 127 - type: Transform -- uid: 3750 - type: WallSolid - components: - - pos: 58.5,-32.5 - parent: 127 - type: Transform -- uid: 3751 - type: CableApcExtension - components: - - pos: 41.5,17.5 - parent: 127 - type: Transform -- uid: 3752 - type: CableApcExtension - components: - - pos: 41.5,18.5 - parent: 127 - type: Transform -- uid: 3753 - type: Barricade - components: - - pos: 45.5,-37.5 - parent: 127 - type: Transform -- uid: 3754 - type: DisposalBend - components: - - pos: 46.5,-30.5 - parent: 127 - type: Transform -- uid: 3755 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,-32.5 - parent: 127 - type: Transform -- uid: 3756 - type: AirlockMaint - components: - - pos: 46.5,-31.5 - parent: 127 - type: Transform -- uid: 3757 - type: PaintingMonkey - components: - - pos: 17.5,1.5 - parent: 127 - type: Transform -- uid: 3758 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,-31.5 - parent: 127 - type: Transform -- uid: 3759 - type: WallSolid - components: - - pos: 56.5,-39.5 - parent: 127 - type: Transform -- uid: 3760 - type: CableApcExtension - components: - - pos: 28.5,-27.5 - parent: 127 - type: Transform -- uid: 3761 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-28.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3762 - type: CableApcExtension - components: - - pos: 32.5,-29.5 - parent: 127 - type: Transform -- uid: 3763 - type: MaintenanceToolSpawner - components: - - pos: 6.5,14.5 - parent: 127 - type: Transform -- uid: 3764 - type: CableApcExtension - components: - - pos: 26.5,-30.5 - parent: 127 - type: Transform -- uid: 3765 - type: ReinforcedWindow - components: - - pos: 56.5,-42.5 - parent: 127 - type: Transform -- uid: 3766 - type: CableApcExtension - components: - - pos: 34.5,-32.5 - parent: 127 - type: Transform -- uid: 3767 - type: CableApcExtension - components: - - pos: 29.5,-34.5 - parent: 127 - type: Transform -- uid: 3768 - type: CableApcExtension - components: - - pos: 26.5,-34.5 - parent: 127 - type: Transform -- uid: 3769 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-40.5 - parent: 127 - type: Transform -- uid: 3770 - type: WallReinforced - components: - - pos: 61.5,-18.5 - parent: 127 - type: Transform -- uid: 3771 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-36.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3772 - type: CableApcExtension - components: - - pos: 28.5,-32.5 - parent: 127 - type: Transform -- uid: 3773 - type: CableApcExtension - components: - - pos: 33.5,-34.5 - parent: 127 - type: Transform -- uid: 3774 - type: MaintenanceWeaponSpawner - components: - - pos: 1.5,27.5 - parent: 127 - type: Transform -- uid: 3775 - type: WallReinforced - components: - - pos: 23.5,-18.5 - parent: 127 - type: Transform -- uid: 3776 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 52.5,-38.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3777 - type: ClothingOuterWinterHoS - components: - - flags: InContainer - type: MetaData - - parent: 5194 - type: Transform - - canCollide: False - type: Physics -- uid: 3778 - type: WallReinforced - components: - - pos: 52.5,-18.5 - parent: 127 - type: Transform -- uid: 3779 - type: ReinforcedWindow - components: - - pos: 52.5,-22.5 - parent: 127 - type: Transform -- uid: 3780 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-32.5 - parent: 127 - type: Transform -- uid: 3781 - type: Grille - components: - - pos: 64.5,-22.5 - parent: 127 - type: Transform -- uid: 3782 - type: CableApcExtension - components: - - pos: 34.5,-34.5 - parent: 127 - type: Transform -- uid: 3783 - type: CableApcExtension - components: - - pos: 28.5,-28.5 - parent: 127 - type: Transform -- uid: 3784 - type: CableApcExtension - components: - - pos: 28.5,-30.5 - parent: 127 - type: Transform -- uid: 3785 - type: GrilleBroken - components: - - pos: 64.5,-39.5 - parent: 127 - type: Transform -- uid: 3786 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-41.5 - parent: 127 - type: Transform -- uid: 3787 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-35.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3788 - type: CableApcExtension - components: - - pos: 28.5,-31.5 - parent: 127 - type: Transform -- uid: 3789 - type: WeldingFuelTankFull - components: - - pos: 31.5,-29.5 - parent: 127 - type: Transform -- uid: 3790 - type: WallReinforced - components: - - pos: 40.5,-21.5 - parent: 127 - type: Transform -- uid: 3791 - type: WallReinforced - components: - - pos: 26.5,-18.5 - parent: 127 - type: Transform -- uid: 3792 - type: ReinforcedWindow - components: - - pos: 64.5,-25.5 - parent: 127 - type: Transform -- uid: 3793 - type: ReinforcedWindow - components: - - pos: 24.5,-21.5 - parent: 127 - type: Transform -- uid: 3794 - type: WallReinforced - components: - - pos: 26.5,-21.5 - parent: 127 - type: Transform -- uid: 3795 - type: MaintenanceFluffSpawner - components: - - pos: -6.5,20.5 - parent: 127 - type: Transform -- uid: 3796 - type: AirlockExternalGlass - components: - - pos: 62.5,-26.5 - parent: 127 - type: Transform -- uid: 3797 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-35.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3798 - type: CableApcExtension - components: - - pos: 35.5,-34.5 - parent: 127 - type: Transform -- uid: 3799 - type: WallReinforced - components: - - pos: 52.5,-19.5 - parent: 127 - type: Transform -- uid: 3800 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-30.5 - parent: 127 - type: Transform -- uid: 3801 - type: CableApcExtension - components: - - pos: 32.5,-27.5 - parent: 127 - type: Transform -- uid: 3802 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-32.5 - parent: 127 - type: Transform -- uid: 3803 - type: CableApcExtension - components: - - pos: 36.5,-34.5 - parent: 127 - type: Transform -- uid: 3804 - type: CableApcExtension - components: - - pos: 37.5,-34.5 - parent: 127 - type: Transform -- uid: 3805 - type: WallReinforced - components: - - pos: 21.5,-27.5 - parent: 127 - type: Transform -- uid: 3806 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-32.5 - parent: 127 - type: Transform -- uid: 3807 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-31.5 - parent: 127 - type: Transform -- uid: 3808 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-30.5 - parent: 127 - type: Transform -- uid: 3809 - type: WallReinforced - components: - - pos: 21.5,-28.5 - parent: 127 - type: Transform -- uid: 3810 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-32.5 - parent: 127 - type: Transform -- uid: 3811 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-32.5 - parent: 127 - type: Transform -- uid: 3812 - type: WallReinforced - components: - - pos: 21.5,-29.5 - parent: 127 - type: Transform -- uid: 3813 - type: CableApcExtension - components: - - pos: 36.5,-32.5 - parent: 127 - type: Transform -- uid: 3814 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-28.5 - parent: 127 - type: Transform -- uid: 3815 - type: SignLibrary - components: - - pos: 17.5,-28.5 - parent: 127 - type: Transform -- uid: 3816 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-31.5 - parent: 127 - type: Transform -- uid: 3817 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-32.5 - parent: 127 - type: Transform -- uid: 3818 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-28.5 - parent: 127 - type: Transform -- uid: 3819 - type: SpawnPointLibrarian - components: - - pos: 22.5,-31.5 - parent: 127 - type: Transform -- uid: 3820 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-31.5 - parent: 127 - type: Transform -- uid: 3821 - type: Bookshelf - components: - - pos: 18.5,-28.5 - parent: 127 - type: Transform -- uid: 3822 - type: Bookshelf - components: - - pos: 19.5,-28.5 - parent: 127 - type: Transform -- uid: 3823 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,-28.5 - parent: 127 - type: Transform -- uid: 3824 - type: TableWood - components: - - pos: 19.5,-30.5 - parent: 127 - type: Transform -- uid: 3825 - type: TableWood - components: - - pos: 19.5,-31.5 - parent: 127 - type: Transform -- uid: 3826 - type: AirlockServiceLocked - components: - - pos: 21.5,-31.5 - parent: 127 - type: Transform -- uid: 3827 - type: AirlockGlass - components: - - pos: 17.5,-29.5 - parent: 127 - type: Transform -- uid: 3828 - type: AirlockGlass - components: - - pos: 17.5,-30.5 - parent: 127 - type: Transform -- uid: 3829 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 19.5,-30.5 - parent: 127 - type: Transform -- uid: 3830 - type: CableApcExtension - components: - - pos: 37.5,-35.5 - parent: 127 - type: Transform -- uid: 3831 - type: CableApcExtension - components: - - pos: 24.5,-26.5 - parent: 127 - type: Transform -- uid: 3832 - type: CableApcExtension - components: - - pos: 26.5,-26.5 - parent: 127 - type: Transform -- uid: 3833 - type: CableApcExtension - components: - - pos: 30.5,-26.5 - parent: 127 - type: Transform -- uid: 3834 - type: CableApcExtension - components: - - pos: 27.5,-26.5 - parent: 127 - type: Transform -- uid: 3835 - type: WallReinforced - components: - - pos: 36.5,-15.5 - parent: 127 - type: Transform -- uid: 3836 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-31.5 - parent: 127 - type: Transform -- uid: 3837 - type: ReinforcedWindow - components: - - pos: 64.5,-27.5 - parent: 127 - type: Transform -- uid: 3838 - type: Table - components: - - pos: 57.5,-26.5 - parent: 127 - type: Transform -- uid: 3839 - type: Rack - components: - - pos: 57.5,-20.5 - parent: 127 - type: Transform -- uid: 3840 - type: Grille - components: - - pos: 52.5,-24.5 - parent: 127 - type: Transform -- uid: 3841 - type: Grille - components: - - pos: 63.5,-27.5 - parent: 127 - type: Transform -- uid: 3842 - type: Rack - components: - - pos: 43.5,-32.5 - parent: 127 - type: Transform -- uid: 3843 - type: Grille - components: - - pos: 62.5,-24.5 - parent: 127 - type: Transform -- uid: 3844 - type: ReinforcedWindow - components: - - pos: 52.5,-23.5 - parent: 127 - type: Transform -- uid: 3845 - type: WallReinforced - components: - - pos: 42.5,-24.5 - parent: 127 - type: Transform -- uid: 3846 - type: ReinforcedWindow - components: - - pos: 40.5,-18.5 - parent: 127 - type: Transform -- uid: 3847 - type: WallReinforced - components: - - pos: 45.5,-27.5 - parent: 127 - type: Transform -- uid: 3848 - type: TableWood - components: - - pos: 48.5,-35.5 - parent: 127 - type: Transform -- uid: 3849 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-31.5 - parent: 127 - type: Transform -- uid: 3850 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-34.5 - parent: 127 - type: Transform -- uid: 3851 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-38.5 - parent: 127 - type: Transform -- uid: 3852 - type: Railing - components: - - pos: 51.5,-35.5 - parent: 127 - type: Transform -- uid: 3853 - type: Grille - components: - - pos: 64.5,-27.5 - parent: 127 - type: Transform -- uid: 3854 - type: WallReinforced - components: - - pos: 48.5,-13.5 - parent: 127 - type: Transform -- uid: 3855 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-34.5 - parent: 127 - type: Transform -- uid: 3856 - type: DisposalUnit - components: - - pos: 48.5,-38.5 - parent: 127 - type: Transform -- uid: 3857 - type: WallSolid - components: - - pos: 58.5,-27.5 - parent: 127 - type: Transform -- uid: 3858 - type: WallSolid - components: - - pos: 57.5,-28.5 - parent: 127 - type: Transform -- uid: 3859 - type: WallSolid - components: - - pos: 57.5,-30.5 - parent: 127 - type: Transform -- uid: 3860 - type: WallSolid - components: - - pos: 58.5,-31.5 - parent: 127 - type: Transform -- uid: 3861 - type: WallSolid - components: - - pos: 58.5,-35.5 - parent: 127 - type: Transform -- uid: 3862 - type: WallSolid - components: - - pos: 59.5,-38.5 - parent: 127 - type: Transform -- uid: 3863 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 23.5,-33.5 - parent: 127 - type: Transform -- uid: 3864 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 23.5,-35.5 - parent: 127 - type: Transform -- uid: 3865 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 23.5,-35.5 - parent: 127 - type: Transform -- uid: 3866 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 23.5,-33.5 - parent: 127 - type: Transform -- uid: 3867 - type: AirlockGlass - components: - - pos: 23.5,-34.5 - parent: 127 - type: Transform -- uid: 3868 - type: FloorTileItemBoxing - components: - - pos: 52.5,-32.5 - parent: 127 - type: Transform -- uid: 3869 - type: TableWood - components: - - pos: 41.5,-35.5 - parent: 127 - type: Transform -- uid: 3870 - type: ReinforcedWindow - components: - - pos: 63.5,-35.5 - parent: 127 - type: Transform -- uid: 3871 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,-36.5 - parent: 127 - type: Transform -- uid: 3872 - type: Table - components: - - pos: 54.5,-36.5 - parent: 127 - type: Transform -- uid: 3873 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 53.5,-36.5 - parent: 127 - type: Transform -- uid: 3874 - type: WallReinforced - components: - - pos: 54.5,-18.5 - parent: 127 - type: Transform -- uid: 3875 - type: WallReinforced - components: - - pos: 48.5,-19.5 - parent: 127 - type: Transform -- uid: 3876 - type: WallReinforced - components: - - pos: 48.5,-27.5 - parent: 127 - type: Transform -- uid: 3877 - type: BarSign - components: - - pos: 13.5,-8.5 - parent: 127 - type: Transform -- uid: 3878 - type: WallReinforced - components: - - pos: 49.5,-17.5 - parent: 127 - type: Transform -- uid: 3879 - type: WallReinforced - components: - - pos: 54.5,-24.5 - parent: 127 - type: Transform -- uid: 3880 - type: WallReinforced - components: - - pos: 48.5,-24.5 - parent: 127 - type: Transform -- uid: 3881 - type: WallReinforced - components: - - pos: 23.5,-36.5 - parent: 127 - type: Transform -- uid: 3882 - type: ReinforcedWindow - components: - - pos: 21.5,-36.5 - parent: 127 - type: Transform -- uid: 3883 - type: ReinforcedWindow - components: - - pos: 14.5,-36.5 - parent: 127 - type: Transform -- uid: 3884 - type: ReinforcedWindow - components: - - pos: 20.5,-36.5 - parent: 127 - type: Transform -- uid: 3885 - type: ReinforcedWindow - components: - - pos: 13.5,-36.5 - parent: 127 - type: Transform -- uid: 3886 - type: ReinforcedWindow - components: - - pos: 18.5,-36.5 - parent: 127 - type: Transform -- uid: 3887 - type: WallReinforced - components: - - pos: 22.5,-36.5 - parent: 127 - type: Transform -- uid: 3888 - type: Grille - components: - - pos: 21.5,-36.5 - parent: 127 - type: Transform -- uid: 3889 - type: Grille - components: - - pos: 20.5,-36.5 - parent: 127 - type: Transform -- uid: 3890 - type: ReinforcedWindow - components: - - pos: 12.5,-36.5 - parent: 127 - type: Transform -- uid: 3891 - type: Grille - components: - - pos: 18.5,-36.5 - parent: 127 - type: Transform -- uid: 3892 - type: TintedWindow - components: - - pos: 13.5,-25.5 - parent: 127 - type: Transform -- uid: 3893 - type: TintedWindow - components: - - pos: 13.5,-26.5 - parent: 127 - type: Transform -- uid: 3894 - type: WallSolid - components: - - pos: 13.5,-27.5 - parent: 127 - type: Transform -- uid: 3895 - type: WallSolid - components: - - pos: 12.5,-27.5 - parent: 127 - type: Transform -- uid: 3896 - type: WallSolid - components: - - pos: 11.5,-27.5 - parent: 127 - type: Transform -- uid: 3897 - type: WallSolid - components: - - pos: 8.5,-27.5 - parent: 127 - type: Transform -- uid: 3898 - type: WallSolid - components: - - pos: 7.5,-27.5 - parent: 127 - type: Transform -- uid: 3899 - type: WallSolid - components: - - pos: 9.5,-27.5 - parent: 127 - type: Transform -- uid: 3900 - type: WallSolid - components: - - pos: 8.5,-28.5 - parent: 127 - type: Transform -- uid: 3901 - type: WallSolid - components: - - pos: 8.5,-29.5 - parent: 127 - type: Transform -- uid: 3902 - type: WallSolid - components: - - pos: 8.5,-30.5 - parent: 127 - type: Transform -- uid: 3903 - type: WallSolid - components: - - pos: 8.5,-31.5 - parent: 127 - type: Transform -- uid: 3904 - type: WallSolid - components: - - pos: 8.5,-32.5 - parent: 127 - type: Transform -- uid: 3905 - type: WallSolid - components: - - pos: 9.5,-32.5 - parent: 127 - type: Transform -- uid: 3906 - type: WallSolid - components: - - pos: 10.5,-32.5 - parent: 127 - type: Transform -- uid: 3907 - type: WallSolid - components: - - pos: 11.5,-32.5 - parent: 127 - type: Transform -- uid: 3908 - type: WallSolid - components: - - pos: 12.5,-32.5 - parent: 127 - type: Transform -- uid: 3909 - type: WallSolid - components: - - pos: 13.5,-32.5 - parent: 127 - type: Transform -- uid: 3910 - type: Grille - components: - - pos: 13.5,-28.5 - parent: 127 - type: Transform -- uid: 3911 - type: ReinforcedWindow - components: - - pos: 13.5,-28.5 - parent: 127 - type: Transform -- uid: 3912 - type: ReinforcedWindow - components: - - pos: 13.5,-31.5 - parent: 127 - type: Transform -- uid: 3913 - type: Grille - components: - - pos: 13.5,-31.5 - parent: 127 - type: Transform -- uid: 3914 - type: AltarSpawner - components: - - pos: 10.5,-29.5 - parent: 127 - type: Transform -- uid: 3915 - type: ChurchOrganInstrument - components: - - pos: 9.5,-31.5 - parent: 127 - type: Transform -- uid: 3916 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-31.5 - parent: 127 - type: Transform -- uid: 3917 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-31.5 - parent: 127 - type: Transform -- uid: 3918 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-31.5 - parent: 127 - type: Transform -- uid: 3919 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-28.5 - parent: 127 - type: Transform -- uid: 3920 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-28.5 - parent: 127 - type: Transform -- uid: 3921 - type: ChairFolding - components: - - pos: 9.5,-30.5 - parent: 127 - type: Transform -- uid: 3922 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-29.5 - parent: 127 - type: Transform -- uid: 3923 - type: CableApcExtension - components: - - pos: 41.5,19.5 - parent: 127 - type: Transform -- uid: 3924 - type: CableApcExtension - components: - - pos: 41.5,20.5 - parent: 127 - type: Transform -- uid: 3925 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-34.5 - parent: 127 - type: Transform -- uid: 3926 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-34.5 - parent: 127 - type: Transform -- uid: 3927 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-31.5 - parent: 127 - type: Transform -- uid: 3928 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-30.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3929 - type: PoweredSmallLight - components: - - pos: 60.5,-24.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3930 - type: PoweredSmallLight - components: - - pos: 42.5,-29.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3931 - type: APCBasic - components: - - pos: 28.5,-27.5 - parent: 127 - type: Transform -- uid: 3932 - type: ReinforcedWindow - components: - - pos: 15.5,-36.5 - parent: 127 - type: Transform -- uid: 3933 - type: ReinforcedWindow - components: - - pos: 16.5,-36.5 - parent: 127 - type: Transform -- uid: 3934 - type: ReinforcedWindow - components: - - pos: 16.5,-37.5 - parent: 127 - type: Transform -- uid: 3935 - type: ReinforcedWindow - components: - - pos: 16.5,-38.5 - parent: 127 - type: Transform -- uid: 3936 - type: ReinforcedWindow - components: - - pos: 16.5,-39.5 - parent: 127 - type: Transform -- uid: 3937 - type: ReinforcedWindow - components: - - pos: 16.5,-40.5 - parent: 127 - type: Transform -- uid: 3938 - type: ReinforcedWindow - components: - - pos: 18.5,-40.5 - parent: 127 - type: Transform -- uid: 3939 - type: ReinforcedWindow - components: - - pos: 18.5,-39.5 - parent: 127 - type: Transform -- uid: 3940 - type: ReinforcedWindow - components: - - pos: 18.5,-38.5 - parent: 127 - type: Transform -- uid: 3941 - type: ReinforcedWindow - components: - - pos: 18.5,-37.5 - parent: 127 - type: Transform -- uid: 3942 - type: ReinforcedWindow - components: - - pos: 20.5,-37.5 - parent: 127 - type: Transform -- uid: 3943 - type: ReinforcedWindow - components: - - pos: 20.5,-38.5 - parent: 127 - type: Transform -- uid: 3944 - type: ReinforcedWindow - components: - - pos: 20.5,-39.5 - parent: 127 - type: Transform -- uid: 3945 - type: ReinforcedWindow - components: - - pos: 20.5,-40.5 - parent: 127 - type: Transform -- uid: 3946 - type: ReinforcedWindow - components: - - pos: 12.5,-37.5 - parent: 127 - type: Transform -- uid: 3947 - type: ReinforcedWindow - components: - - pos: 12.5,-38.5 - parent: 127 - type: Transform -- uid: 3948 - type: ReinforcedWindow - components: - - pos: 12.5,-39.5 - parent: 127 - type: Transform -- uid: 3949 - type: ReinforcedWindow - components: - - pos: 12.5,-40.5 - parent: 127 - type: Transform -- uid: 3950 - type: ReinforcedWindow - components: - - pos: 10.5,-37.5 - parent: 127 - type: Transform -- uid: 3951 - type: ReinforcedWindow - components: - - pos: 10.5,-38.5 - parent: 127 - type: Transform -- uid: 3952 - type: ReinforcedWindow - components: - - pos: 10.5,-39.5 - parent: 127 - type: Transform -- uid: 3953 - type: ReinforcedWindow - components: - - pos: 10.5,-40.5 - parent: 127 - type: Transform -- uid: 3954 - type: ReinforcedWindow - components: - - pos: 10.5,-36.5 - parent: 127 - type: Transform -- uid: 3955 - type: ReinforcedWindow - components: - - pos: 8.5,-36.5 - parent: 127 - type: Transform -- uid: 3956 - type: ReinforcedWindow - components: - - pos: 8.5,-37.5 - parent: 127 - type: Transform -- uid: 3957 - type: ReinforcedWindow - components: - - pos: 8.5,-38.5 - parent: 127 - type: Transform -- uid: 3958 - type: ReinforcedWindow - components: - - pos: 8.5,-39.5 - parent: 127 - type: Transform -- uid: 3959 - type: ReinforcedWindow - components: - - pos: 8.5,-40.5 - parent: 127 - type: Transform -- uid: 3960 - type: Grille - components: - - pos: 8.5,-36.5 - parent: 127 - type: Transform -- uid: 3961 - type: Grille - components: - - pos: 8.5,-37.5 - parent: 127 - type: Transform -- uid: 3962 - type: Grille - components: - - pos: 8.5,-38.5 - parent: 127 - type: Transform -- uid: 3963 - type: Grille - components: - - pos: 8.5,-39.5 - parent: 127 - type: Transform -- uid: 3964 - type: Grille - components: - - pos: 8.5,-40.5 - parent: 127 - type: Transform -- uid: 3965 - type: Grille - components: - - pos: 10.5,-40.5 - parent: 127 - type: Transform -- uid: 3966 - type: Grille - components: - - pos: 10.5,-39.5 - parent: 127 - type: Transform -- uid: 3967 - type: Grille - components: - - pos: 10.5,-38.5 - parent: 127 - type: Transform -- uid: 3968 - type: Grille - components: - - pos: 10.5,-37.5 - parent: 127 - type: Transform -- uid: 3969 - type: Grille - components: - - pos: 10.5,-36.5 - parent: 127 - type: Transform -- uid: 3970 - type: Grille - components: - - pos: 12.5,-40.5 - parent: 127 - type: Transform -- uid: 3971 - type: Grille - components: - - pos: 12.5,-39.5 - parent: 127 - type: Transform -- uid: 3972 - type: Grille - components: - - pos: 12.5,-38.5 - parent: 127 - type: Transform -- uid: 3973 - type: Grille - components: - - pos: 12.5,-37.5 - parent: 127 - type: Transform -- uid: 3974 - type: Grille - components: - - pos: 12.5,-36.5 - parent: 127 - type: Transform -- uid: 3975 - type: Grille - components: - - pos: 13.5,-36.5 - parent: 127 - type: Transform -- uid: 3976 - type: Grille - components: - - pos: 14.5,-36.5 - parent: 127 - type: Transform -- uid: 3977 - type: Grille - components: - - pos: 15.5,-36.5 - parent: 127 - type: Transform -- uid: 3978 - type: Grille - components: - - pos: 16.5,-36.5 - parent: 127 - type: Transform -- uid: 3979 - type: Grille - components: - - pos: 16.5,-37.5 - parent: 127 - type: Transform -- uid: 3980 - type: Grille - components: - - pos: 16.5,-38.5 - parent: 127 - type: Transform -- uid: 3981 - type: Grille - components: - - pos: 16.5,-39.5 - parent: 127 - type: Transform -- uid: 3982 - type: Grille - components: - - pos: 16.5,-40.5 - parent: 127 - type: Transform -- uid: 3983 - type: Grille - components: - - pos: 18.5,-40.5 - parent: 127 - type: Transform -- uid: 3984 - type: Grille - components: - - pos: 18.5,-39.5 - parent: 127 - type: Transform -- uid: 3985 - type: Grille - components: - - pos: 18.5,-38.5 - parent: 127 - type: Transform -- uid: 3986 - type: Grille - components: - - pos: 18.5,-37.5 - parent: 127 - type: Transform -- uid: 3987 - type: Grille - components: - - pos: 20.5,-37.5 - parent: 127 - type: Transform -- uid: 3988 - type: Grille - components: - - pos: 20.5,-38.5 - parent: 127 - type: Transform -- uid: 3989 - type: Grille - components: - - pos: 20.5,-39.5 - parent: 127 - type: Transform -- uid: 3990 - type: Grille - components: - - pos: 20.5,-40.5 - parent: 127 - type: Transform -- uid: 3991 - type: WallSolid - components: - - pos: 5.5,-32.5 - parent: 127 - type: Transform -- uid: 3992 - type: WallSolid - components: - - pos: 7.5,-32.5 - parent: 127 - type: Transform -- uid: 3993 - type: WallReinforced - components: - - pos: 0.5,-30.5 - parent: 127 - type: Transform -- uid: 3994 - type: WallReinforced - components: - - pos: 0.5,-31.5 - parent: 127 - type: Transform -- uid: 3995 - type: WallReinforced - components: - - pos: 1.5,-31.5 - parent: 127 - type: Transform -- uid: 3996 - type: Grille - components: - - pos: 2.5,-31.5 - parent: 127 - type: Transform -- uid: 3997 - type: WallReinforced - components: - - pos: 3.5,-31.5 - parent: 127 - type: Transform -- uid: 3998 - type: WallReinforced - components: - - pos: 4.5,-35.5 - parent: 127 - type: Transform -- uid: 3999 - type: WallReinforced - components: - - pos: 0.5,-37.5 - parent: 127 - type: Transform -- uid: 4000 - type: ReinforcedWindow - components: - - pos: -0.5,-30.5 - parent: 127 - type: Transform -- uid: 4001 - type: ReinforcedWindow - components: - - pos: -1.5,-30.5 - parent: 127 - type: Transform -- uid: 4002 - type: ReinforcedWindow - components: - - pos: -2.5,-30.5 - parent: 127 - type: Transform -- uid: 4003 - type: ReinforcedWindow - components: - - pos: -2.5,-28.5 - parent: 127 - type: Transform -- uid: 4004 - type: Grille - components: - - pos: -2.5,-28.5 - parent: 127 - type: Transform -- uid: 4005 - type: Grille - components: - - pos: -2.5,-28.5 - parent: 127 - type: Transform -- uid: 4006 - type: Grille - components: - - pos: -2.5,-30.5 - parent: 127 - type: Transform -- uid: 4007 - type: Grille - components: - - pos: -1.5,-30.5 - parent: 127 - type: Transform -- uid: 4008 - type: Grille - components: - - pos: -0.5,-30.5 - parent: 127 - type: Transform -- uid: 4009 - type: ReinforcedWindow - components: - - pos: 2.5,-31.5 - parent: 127 - type: Transform -- uid: 4010 - type: Catwalk - components: - - pos: -3.5,-29.5 - parent: 127 - type: Transform -- uid: 4011 - type: Catwalk - components: - - pos: -4.5,-29.5 - parent: 127 - type: Transform -- uid: 4012 - type: Catwalk - components: - - pos: -5.5,-29.5 - parent: 127 - type: Transform -- uid: 4013 - type: Catwalk - components: - - pos: -5.5,-30.5 - parent: 127 - type: Transform -- uid: 4014 - type: Catwalk - components: - - pos: -5.5,-31.5 - parent: 127 - type: Transform -- uid: 4015 - type: Catwalk - components: - - pos: -5.5,-32.5 - parent: 127 - type: Transform -- uid: 4016 - type: Catwalk - components: - - pos: -5.5,-33.5 - parent: 127 - type: Transform -- uid: 4017 - type: Catwalk - components: - - pos: -5.5,-34.5 - parent: 127 - type: Transform -- uid: 4018 - type: Catwalk - components: - - pos: -6.5,-33.5 - parent: 127 - type: Transform -- uid: 4019 - type: Catwalk - components: - - pos: -7.5,-33.5 - parent: 127 - type: Transform -- uid: 4020 - type: Catwalk - components: - - pos: -8.5,-33.5 - parent: 127 - type: Transform -- uid: 4021 - type: Catwalk - components: - - pos: -9.5,-33.5 - parent: 127 - type: Transform -- uid: 4022 - type: Catwalk - components: - - pos: -4.5,-33.5 - parent: 127 - type: Transform -- uid: 4023 - type: Catwalk - components: - - pos: -3.5,-33.5 - parent: 127 - type: Transform -- uid: 4024 - type: Catwalk - components: - - pos: -2.5,-33.5 - parent: 127 - type: Transform -- uid: 4025 - type: Catwalk - components: - - pos: -1.5,-33.5 - parent: 127 - type: Transform -- uid: 4026 - type: Grille - components: - - pos: -10.5,-28.5 - parent: 127 - type: Transform -- uid: 4027 - type: Grille - components: - - pos: -10.5,-27.5 - parent: 127 - type: Transform -- uid: 4028 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -10.5,-25.5 - parent: 127 - type: Transform -- uid: 4029 - type: Grille - components: - - pos: -10.5,-24.5 - parent: 127 - type: Transform -- uid: 4030 - type: Grille - components: - - pos: -10.5,-23.5 - parent: 127 - type: Transform -- uid: 4031 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-22.5 - parent: 127 - type: Transform -- uid: 4032 - type: Grille - components: - - pos: -10.5,-21.5 - parent: 127 - type: Transform -- uid: 4033 - type: Grille - components: - - pos: -12.5,-31.5 - parent: 127 - type: Transform -- uid: 4034 - type: Grille - components: - - pos: -11.5,-31.5 - parent: 127 - type: Transform -- uid: 4035 - type: Grille - components: - - pos: -11.5,-30.5 - parent: 127 - type: Transform -- uid: 4036 - type: Grille - components: - - pos: -13.5,-32.5 - parent: 127 - type: Transform -- uid: 4037 - type: WallReinforced - components: - - pos: 55.5,-42.5 - parent: 127 - type: Transform -- uid: 4038 - type: Grille - components: - - pos: -13.5,-34.5 - parent: 127 - type: Transform -- uid: 4039 - type: Grille - components: - - pos: -13.5,-35.5 - parent: 127 - type: Transform -- uid: 4040 - type: Grille - components: - - pos: -11.5,-36.5 - parent: 127 - type: Transform -- uid: 4041 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -13.5,-33.5 - parent: 127 - type: Transform -- uid: 4042 - type: Grille - components: - - pos: -9.5,-36.5 - parent: 127 - type: Transform -- uid: 4043 - type: Grille - components: - - pos: -8.5,-36.5 - parent: 127 - type: Transform -- uid: 4044 - type: Grille - components: - - pos: -8.5,-36.5 - parent: 127 - type: Transform -- uid: 4045 - type: Grille - components: - - pos: -12.5,-32.5 - parent: 127 - type: Transform -- uid: 4046 - type: Grille - components: - - pos: -8.5,-38.5 - parent: 127 - type: Transform -- uid: 4047 - type: Grille - components: - - pos: -6.5,-38.5 - parent: 127 - type: Transform -- uid: 4048 - type: Grille - components: - - pos: -5.5,-38.5 - parent: 127 - type: Transform -- uid: 4049 - type: Grille - components: - - pos: -4.5,-38.5 - parent: 127 - type: Transform -- uid: 4050 - type: Grille - components: - - pos: -3.5,-38.5 - parent: 127 - type: Transform -- uid: 4051 - type: Grille - components: - - pos: -2.5,-36.5 - parent: 127 - type: Transform -- uid: 4052 - type: ComputerSolarControl - components: - - rot: 3.141592653589793 rad - pos: 1.5,-30.5 - parent: 127 - type: Transform -- uid: 4053 - type: WallReinforced - components: - - pos: 4.5,-33.5 - parent: 127 - type: Transform -- uid: 4054 - type: Grille - components: - - pos: 2.5,-38.5 - parent: 127 - type: Transform -- uid: 4055 - type: WallReinforced - components: - - pos: 0.5,-38.5 - parent: 127 - type: Transform -- uid: 4056 - type: WallReinforced - components: - - pos: 1.5,-38.5 - parent: 127 - type: Transform -- uid: 4057 - type: WallReinforced - components: - - pos: 0.5,-36.5 - parent: 127 - type: Transform -- uid: 4058 - type: ReinforcedWindow - components: - - pos: 0.5,-33.5 - parent: 127 - type: Transform -- uid: 4059 - type: WallReinforced - components: - - pos: 0.5,-32.5 - parent: 127 - type: Transform -- uid: 4060 - type: WallReinforced - components: - - pos: 3.5,-38.5 - parent: 127 - type: Transform -- uid: 4061 - type: WallReinforced - components: - - pos: 4.5,-38.5 - parent: 127 - type: Transform -- uid: 4062 - type: Grille - components: - - pos: 6.5,-38.5 - parent: 127 - type: Transform -- uid: 4063 - type: CableApcExtension - components: - - pos: 25.5,-34.5 - parent: 127 - type: Transform -- uid: 4064 - type: CableApcExtension - components: - - pos: 28.5,-33.5 - parent: 127 - type: Transform -- uid: 4065 - type: Grille - components: - - pos: 41.5,-21.5 - parent: 127 - type: Transform -- uid: 4066 - type: AirlockExternalGlassLocked - components: - - pos: 46.5,-12.5 - parent: 127 - type: Transform -- uid: 4067 - type: AirlockExternalGlassLocked - components: - - pos: 45.5,-13.5 - parent: 127 - type: Transform -- uid: 4068 - type: AirlockExternalGlassLocked - components: - - pos: 44.5,-12.5 - parent: 127 - type: Transform -- uid: 4069 - type: NitrogenTankFilled - components: - - pos: 10.331419,14.539954 - parent: 127 - type: Transform -- uid: 4070 - type: CableApcExtension - components: - - pos: 32.5,-34.5 - parent: 127 - type: Transform -- uid: 4071 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-16.5 - parent: 127 - type: Transform -- uid: 4072 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 46.5,-38.5 - parent: 127 - type: Transform -- uid: 4073 - type: Grille - components: - - pos: 29.5,-15.5 - parent: 127 - type: Transform -- uid: 4074 - type: ReinforcedWindow - components: - - pos: 58.5,-42.5 - parent: 127 - type: Transform -- uid: 4075 - type: Rack - components: - - pos: 57.5,-31.5 - parent: 127 - type: Transform -- uid: 4076 - type: WallReinforced - components: - - pos: 47.5,-27.5 - parent: 127 - type: Transform -- uid: 4077 - type: Grille - components: - - pos: 7.5,-36.5 - parent: 127 - type: Transform -- uid: 4078 - type: WallReinforced - components: - - pos: 45.5,-28.5 - parent: 127 - type: Transform -- uid: 4079 - type: WallSolid - components: - - pos: 47.5,-31.5 - parent: 127 - type: Transform -- uid: 4080 - type: WallReinforced - components: - - pos: 52.5,-27.5 - parent: 127 - type: Transform -- uid: 4081 - type: Rack - components: - - pos: 24.5,-26.5 - parent: 127 - type: Transform -- uid: 4082 - type: Table - components: - - pos: 57.5,-33.5 - parent: 127 - type: Transform -- uid: 4083 - type: WallReinforced - components: - - pos: 46.5,-24.5 - parent: 127 - type: Transform -- uid: 4084 - type: Rack - components: - - pos: 57.5,-24.5 - parent: 127 - type: Transform -- uid: 4085 - type: Grille - components: - - pos: 52.5,-23.5 - parent: 127 - type: Transform -- uid: 4086 - type: Grille - components: - - pos: 63.5,-19.5 - parent: 127 - type: Transform -- uid: 4087 - type: Grille - components: - - pos: 54.5,-21.5 - parent: 127 - type: Transform -- uid: 4088 - type: MaintenanceFluffSpawner - components: - - pos: -13.5,13.5 - parent: 127 - type: Transform -- uid: 4089 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 36.5,-40.5 - parent: 127 - type: Transform -- uid: 4090 - type: Catwalk - components: - - pos: 55.5,-26.5 - parent: 127 - type: Transform -- uid: 4091 - type: Grille - components: - - pos: 64.5,-41.5 - parent: 127 - type: Transform -- uid: 4092 - type: Grille - components: - - pos: 23.5,-38.5 - parent: 127 - type: Transform -- uid: 4093 - type: WallSolid - components: - - pos: 54.5,-31.5 - parent: 127 - type: Transform -- uid: 4094 - type: Grille - components: - - pos: 47.5,-41.5 - parent: 127 - type: Transform -- uid: 4095 - type: Grille - components: - - pos: 38.5,-38.5 - parent: 127 - type: Transform -- uid: 4096 - type: ClothingHeadHelmetEVA - components: - - pos: 39.322052,-34.21416 - parent: 127 - type: Transform -- uid: 4097 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 37.5,-37.5 - parent: 127 - type: Transform -- uid: 4098 - type: Rack - components: - - pos: 39.5,-37.5 - parent: 127 - type: Transform -- uid: 4099 - type: Rack - components: - - pos: 39.5,-35.5 - parent: 127 - type: Transform -- uid: 4100 - type: ReinforcedWindow - components: - - pos: 63.5,-29.5 - parent: 127 - type: Transform -- uid: 4101 - type: WallSolid - components: - - pos: 43.5,-33.5 - parent: 127 - type: Transform -- uid: 4102 - type: Airlock - components: - - pos: -0.5,-21.5 - parent: 127 - type: Transform -- uid: 4103 - type: PlushieSlime - components: - - pos: -3.5151608,-14.402539 - parent: 127 - type: Transform -- uid: 4104 - type: Mirror - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-20.5 - parent: 127 - type: Transform -- uid: 4105 - type: SinkStemlessWater - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 127 - type: Transform -- uid: 4106 - type: WallReinforced - components: - - pos: 42.5,-28.5 - parent: 127 - type: Transform -- uid: 4107 - type: WallSolid - components: - - pos: 44.5,-31.5 - parent: 127 - type: Transform -- uid: 4108 - type: WallReinforced - components: - - pos: 52.5,-28.5 - parent: 127 - type: Transform -- uid: 4109 - type: WallReinforced - components: - - pos: 51.5,-27.5 - parent: 127 - type: Transform -- uid: 4110 - type: WallReinforced - components: - - pos: 52.5,-26.5 - parent: 127 - type: Transform -- uid: 4111 - type: WallReinforced - components: - - pos: 51.5,-17.5 - parent: 127 - type: Transform -- uid: 4112 - type: WallReinforced - components: - - pos: 51.5,-28.5 - parent: 127 - type: Transform -- uid: 4113 - type: WallSolid - components: - - pos: 44.5,-32.5 - parent: 127 - type: Transform -- uid: 4114 - type: WallReinforced - components: - - pos: 49.5,-39.5 - parent: 127 - type: Transform -- uid: 4115 - type: SinkStemlessWater - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 127 - type: Transform -- uid: 4116 - type: WallSolid - components: - - pos: 49.5,-36.5 - parent: 127 - type: Transform -- uid: 4117 - type: ReinforcedWindow - components: - - pos: 65.5,-27.5 - parent: 127 - type: Transform -- uid: 4118 - type: Mirror - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-21.5 - parent: 127 - type: Transform -- uid: 4119 - type: Table - components: - - pos: 1.5,-19.5 - parent: 127 - type: Transform -- uid: 4120 - type: RandomInstruments - components: - - pos: 1.5,-19.5 - parent: 127 - type: Transform -- uid: 4121 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4122 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4123 - type: Paper - components: - - pos: 25.5,-10.5 - parent: 127 - type: Transform -- uid: 4124 - type: Rack - components: - - pos: 39.5,-34.5 - parent: 127 - type: Transform -- uid: 4125 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-26.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4126 - type: BlastDoor - components: - - pos: -7.5,-24.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4135 - type: SignalReceiver -- uid: 4127 - type: BlastDoor - components: - - pos: -5.5,-24.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4136 - type: SignalReceiver -- uid: 4128 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-24.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4134 - Forward: - - port: Left - uid: 4134 - Off: - - port: Middle - uid: 4134 - type: SignalReceiver -- uid: 4129 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-24.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4134 - Forward: - - port: Left - uid: 4134 - Off: - - port: Middle - uid: 4134 - type: SignalReceiver -- uid: 4130 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-24.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4134 - Forward: - - port: Left - uid: 4134 - Off: - - port: Middle - uid: 4134 - type: SignalReceiver -- uid: 4131 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-24.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4134 - Forward: - - port: Left - uid: 4134 - Off: - - port: Middle - uid: 4134 - type: SignalReceiver -- uid: 4132 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4134 - Forward: - - port: Left - uid: 4134 - Off: - - port: Middle - uid: 4134 - type: SignalReceiver -- uid: 4133 - type: Recycler - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 6874 - Forward: - - port: Left - uid: 6874 - Off: - - port: Middle - uid: 6874 - type: SignalReceiver -- uid: 4134 - type: TwoWayLever - components: - - pos: -4.5,-25.5 - parent: 127 - type: Transform - - outputs: - Left: - - port: Forward - uid: 4131 - - port: Forward - uid: 4132 - - port: Forward - uid: 4130 - - port: Forward - uid: 4129 - - port: Forward - uid: 4128 - - port: Forward - uid: 7841 - Right: - - port: Reverse - uid: 4131 - - port: Reverse - uid: 4132 - - port: Reverse - uid: 4130 - - port: Reverse - uid: 4129 - - port: Reverse - uid: 4128 - - port: Reverse - uid: 7841 - Middle: - - port: Off - uid: 4131 - - port: Off - uid: 4132 - - port: Off - uid: 4130 - - port: Off - uid: 4129 - - port: Off - uid: 4128 - - port: Off - uid: 7841 - type: SignalTransmitter -- uid: 4135 - type: SignalButton - components: - - pos: -6.4161186,-25.751783 - parent: 127 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4126 - type: SignalTransmitter -- uid: 4136 - type: SignalButton - components: - - pos: -6.1817436,-25.751783 - parent: 127 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4127 - type: SignalTransmitter -- uid: 4137 - type: WindoorSecure - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 127 - type: Transform -- uid: 4138 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -6.5,-21.5 - parent: 127 - type: Transform -- uid: 4139 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -5.5,-21.5 - parent: 127 - type: Transform -- uid: 4140 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -4.5,-21.5 - parent: 127 - type: Transform -- uid: 4141 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 127 - type: Transform -- uid: 4142 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-26.5 - parent: 127 - type: Transform -- uid: 4143 - type: AirlockMaintGlass - components: - - pos: -1.5,-26.5 - parent: 127 - type: Transform -- uid: 4144 - type: AirlockMaintLocked - components: - - pos: 8.5,-23.5 - parent: 127 - type: Transform -- uid: 4145 - type: AirlockMaintLocked - components: - - pos: 6.5,-32.5 - parent: 127 - type: Transform -- uid: 4146 - type: AirlockMaintLocked - components: - - pos: 17.5,-25.5 - parent: 127 - type: Transform -- uid: 4147 - type: ClothingShoesBootsMag - components: - - pos: 36.33941,-36.292286 - parent: 127 - type: Transform -- uid: 4148 - type: Grille - components: - - pos: 37.5,-40.5 - parent: 127 - type: Transform -- uid: 4149 - type: AirlockEngineeringLocked - components: - - pos: 2.5,-27.5 - parent: 127 - type: Transform -- uid: 4150 - type: WallSolid - components: - - pos: 8.5,-25.5 - parent: 127 - type: Transform -- uid: 4151 - type: WallSolid - components: - - pos: 8.5,-26.5 - parent: 127 - type: Transform -- uid: 4152 - type: Grille - components: - - pos: 13.5,-26.5 - parent: 127 - type: Transform -- uid: 4153 - type: Grille - components: - - pos: 13.5,-25.5 - parent: 127 - type: Transform -- uid: 4154 - type: Chair - components: - - pos: 8.5,-33.5 - parent: 127 - type: Transform -- uid: 4155 - type: Chair - components: - - pos: 9.5,-33.5 - parent: 127 - type: Transform -- uid: 4156 - type: Chair - components: - - pos: 10.5,-33.5 - parent: 127 - type: Transform -- uid: 4157 - type: Chair - components: - - pos: 11.5,-33.5 - parent: 127 - type: Transform -- uid: 4158 - type: Chair - components: - - pos: 12.5,-33.5 - parent: 127 - type: Transform -- uid: 4159 - type: Chair - components: - - pos: 21.5,-33.5 - parent: 127 - type: Transform -- uid: 4160 - type: Chair - components: - - pos: 20.5,-33.5 - parent: 127 - type: Transform -- uid: 4161 - type: Chair - components: - - pos: 19.5,-33.5 - parent: 127 - type: Transform -- uid: 4162 - type: Chair - components: - - pos: 18.5,-33.5 - parent: 127 - type: Transform -- uid: 4163 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,-33.5 - parent: 127 - type: Transform -- uid: 4164 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-31.5 - parent: 127 - type: Transform -- uid: 4165 - type: SpawnPointChaplain - components: - - pos: 10.5,-26.5 - parent: 127 - type: Transform -- uid: 4166 - type: Bed - components: - - pos: 22.5,-30.5 - parent: 127 - type: Transform -- uid: 4167 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-25.5 - parent: 127 - type: Transform -- uid: 4168 - type: WallReinforced - components: - - pos: 4.5,-37.5 - parent: 127 - type: Transform -- uid: 4169 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-30.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4170 - type: AirlockChapelLocked - components: - - pos: 10.5,-27.5 - parent: 127 - type: Transform -- uid: 4171 - type: GasPipeStraight - components: - - pos: 9.5,-28.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4172 - type: Bed - components: - - pos: 9.5,-25.5 - parent: 127 - type: Transform -- uid: 4173 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 9.5,-31.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4174 - type: GasPipeStraight - components: - - pos: 9.5,-29.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4175 - type: WindoorSecureChapelLocked - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-26.5 - parent: 127 - type: Transform -- uid: 4176 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-29.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4177 - type: lantern - components: - - pos: 10.482953,-29.18341 - parent: 127 - type: Transform -- uid: 4178 - type: GasPipeStraight - components: - - pos: 10.5,-28.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4179 - type: Paper - components: - - pos: 25.5,-10.5 - parent: 127 - type: Transform -- uid: 4180 - type: BedsheetSpawner - components: - - pos: 22.5,-30.5 - parent: 127 - type: Transform -- uid: 4181 - type: SignChapel - components: - - pos: 13.5,-31.5 - parent: 127 - type: Transform -- uid: 4182 - type: Morgue - components: - - pos: 11.5,-25.5 - parent: 127 - type: Transform -- uid: 4183 - type: WallSolid - components: - - pos: 49.5,-34.5 - parent: 127 - type: Transform -- uid: 4184 - type: VendingMachineChapel - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-26.5 - parent: 127 - type: Transform -- uid: 4185 - type: Crematorium - components: - - pos: 12.5,-25.5 - parent: 127 - type: Transform -- uid: 4186 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-30.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4187 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -9.5,-10.5 - parent: 127 - type: Transform -- uid: 4188 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-23.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4189 - type: Grille - components: - - pos: 37.5,-38.5 - parent: 127 - type: Transform -- uid: 4190 - type: Grille - components: - - pos: 46.5,-41.5 - parent: 127 - type: Transform -- uid: 4191 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-23.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4192 - type: WallSolid - components: - - pos: 53.5,-31.5 - parent: 127 - type: Transform -- uid: 4193 - type: CableApcExtension - components: - - pos: 41.5,21.5 - parent: 127 - type: Transform -- uid: 4194 - type: WallReinforced - components: - - pos: 52.5,-20.5 - parent: 127 - type: Transform -- uid: 4195 - type: ReinforcedWindow - components: - - pos: 64.5,-37.5 - parent: 127 - type: Transform -- uid: 4196 - type: Rack - components: - - pos: 42.5,-32.5 - parent: 127 - type: Transform -- uid: 4197 - type: WallReinforced - components: - - pos: 41.5,-30.5 - parent: 127 - type: Transform -- uid: 4198 - type: Grille - components: - - pos: 29.5,-23.5 - parent: 127 - type: Transform -- uid: 4199 - type: ReinforcedWindow - components: - - pos: 26.5,-23.5 - parent: 127 - type: Transform -- uid: 4200 - type: ReinforcedWindow - components: - - pos: 29.5,-23.5 - parent: 127 - type: Transform -- uid: 4201 - type: ReinforcedWindow - components: - - pos: 31.5,-21.5 - parent: 127 - type: Transform -- uid: 4202 - type: ReinforcedWindow - components: - - pos: 30.5,-21.5 - parent: 127 - type: Transform -- uid: 4203 - type: ClothingOuterHardsuitEVA - components: - - pos: 39.509552,-35.354786 - parent: 127 - type: Transform -- uid: 4204 - type: Rack - components: - - pos: 49.5,-29.5 - parent: 127 - type: Transform -- uid: 4205 - type: ReinforcedWindow - components: - - pos: 54.5,-20.5 - parent: 127 - type: Transform -- uid: 4206 - type: Rack - components: - - pos: 41.5,-15.5 - parent: 127 - type: Transform -- uid: 4207 - type: Grille - components: - - pos: 40.5,-20.5 - parent: 127 - type: Transform -- uid: 4208 - type: ReinforcedWindow - components: - - pos: 43.5,-21.5 - parent: 127 - type: Transform -- uid: 4209 - type: WallReinforced - components: - - pos: 45.5,-21.5 - parent: 127 - type: Transform -- uid: 4210 - type: ReinforcedWindow - components: - - pos: 62.5,-27.5 - parent: 127 - type: Transform -- uid: 4211 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 64.5,-24.5 - parent: 127 - type: Transform -- uid: 4212 - type: CableApcExtension - components: - - pos: 28.5,-29.5 - parent: 127 - type: Transform -- uid: 4213 - type: CableApcExtension - components: - - pos: 32.5,-19.5 - parent: 127 - type: Transform -- uid: 4214 - type: Grille - components: - - pos: 64.5,-37.5 - parent: 127 - type: Transform -- uid: 4215 - type: WallReinforced - components: - - pos: 48.5,-20.5 - parent: 127 - type: Transform -- uid: 4216 - type: WallReinforced - components: - - pos: 48.5,-28.5 - parent: 127 - type: Transform -- uid: 4217 - type: WallReinforced - components: - - pos: 47.5,-28.5 - parent: 127 - type: Transform -- uid: 4218 - type: ReinforcedWindow - components: - - pos: 52.5,-24.5 - parent: 127 - type: Transform -- uid: 4219 - type: WallReinforced - components: - - pos: 54.5,-25.5 - parent: 127 - type: Transform -- uid: 4220 - type: WallReinforced - components: - - pos: 49.5,-28.5 - parent: 127 - type: Transform -- uid: 4221 - type: Grille - components: - - pos: 32.5,-23.5 - parent: 127 - type: Transform -- uid: 4222 - type: ReinforcedWindow - components: - - pos: 62.5,-24.5 - parent: 127 - type: Transform -- uid: 4223 - type: Grille - components: - - pos: 32.5,-22.5 - parent: 127 - type: Transform -- uid: 4224 - type: WallReinforced - components: - - pos: 47.5,-24.5 - parent: 127 - type: Transform -- uid: 4225 - type: Grille - components: - - pos: 52.5,-22.5 - parent: 127 - type: Transform -- uid: 4226 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-31.5 - parent: 127 - type: Transform -- uid: 4227 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-31.5 - parent: 127 - type: Transform -- uid: 4228 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-31.5 - parent: 127 - type: Transform -- uid: 4229 - type: DisposalPipe - components: - - pos: 33.5,-32.5 - parent: 127 - type: Transform -- uid: 4230 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-34.5 - parent: 127 - type: Transform -- uid: 4231 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-34.5 - parent: 127 - type: Transform -- uid: 4232 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-34.5 - parent: 127 - type: Transform -- uid: 4233 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-34.5 - parent: 127 - type: Transform -- uid: 4234 - type: PottedPlantRandom - components: - - pos: 45.5,-32.5 - parent: 127 - type: Transform -- uid: 4235 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,-37.5 - parent: 127 - type: Transform -- uid: 4236 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-34.5 - parent: 127 - type: Transform -- uid: 4237 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-34.5 - parent: 127 - type: Transform -- uid: 4238 - type: TableWood - components: - - pos: 41.5,-37.5 - parent: 127 - type: Transform -- uid: 4239 - type: Grille - components: - - pos: 47.5,-39.5 - parent: 127 - type: Transform -- uid: 4240 - type: FloorTileItemBoxing - components: - - pos: 50.5,-33.5 - parent: 127 - type: Transform -- uid: 4241 - type: FloorTileItemBoxing - components: - - pos: 53.5,-33.5 - parent: 127 - type: Transform -- uid: 4242 - type: Grille - components: - - pos: 62.5,-30.5 - parent: 127 - type: Transform -- uid: 4243 - type: WallReinforced - components: - - pos: 44.5,-38.5 - parent: 127 - type: Transform -- uid: 4244 - type: WallSolid - components: - - pos: 55.5,-36.5 - parent: 127 - type: Transform -- uid: 4245 - type: ReinforcedWindow - components: - - pos: 54.5,-22.5 - parent: 127 - type: Transform -- uid: 4246 - type: DisposalPipe - components: - - pos: 33.5,-33.5 - parent: 127 - type: Transform -- uid: 4247 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 48.5,-36.5 - parent: 127 - type: Transform -- uid: 4248 - type: Railing - components: - - pos: 53.5,-35.5 - parent: 127 - type: Transform -- uid: 4249 - type: Grille - components: - - pos: 65.5,-27.5 - parent: 127 - type: Transform -- uid: 4250 - type: WallReinforced - components: - - pos: 59.5,-39.5 - parent: 127 - type: Transform -- uid: 4251 - type: WallReinforced - components: - - pos: 52.5,-39.5 - parent: 127 - type: Transform -- uid: 4252 - type: WallReinforced - components: - - pos: 57.5,-42.5 - parent: 127 - type: Transform -- uid: 4253 - type: WallReinforced - components: - - pos: 62.5,-39.5 - parent: 127 - type: Transform -- uid: 4254 - type: ReinforcedWindow - components: - - pos: 65.5,-25.5 - parent: 127 - type: Transform -- uid: 4255 - type: ReinforcedWindow - components: - - pos: 63.5,-25.5 - parent: 127 - type: Transform -- uid: 4256 - type: WallReinforced - components: - - pos: 46.5,-17.5 - parent: 127 - type: Transform -- uid: 4257 - type: WallReinforced - components: - - pos: 56.5,-14.5 - parent: 127 - type: Transform -- uid: 4258 - type: FlashlightLantern - components: - - pos: -14.710372,13.731806 - parent: 127 - type: Transform -- uid: 4259 - type: WallReinforced - components: - - pos: 50.5,-14.5 - parent: 127 - type: Transform -- uid: 4260 - type: WallReinforced - components: - - pos: 51.5,-14.5 - parent: 127 - type: Transform -- uid: 4261 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-37.5 - parent: 127 - type: Transform -- uid: 4262 - type: ReinforcedWindow - components: - - pos: 65.5,-37.5 - parent: 127 - type: Transform -- uid: 4263 - type: ReinforcedWindow - components: - - pos: 64.5,-35.5 - parent: 127 - type: Transform -- uid: 4264 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-34.5 - parent: 127 - type: Transform -- uid: 4265 - type: TableWood - components: - - pos: 44.5,-36.5 - parent: 127 - type: Transform -- uid: 4266 - type: TableWood - components: - - pos: 44.5,-34.5 - parent: 127 - type: Transform -- uid: 4267 - type: Grille - components: - - pos: 65.5,-37.5 - parent: 127 - type: Transform -- uid: 4268 - type: ClothingHandsGlovesBoxingBlue - components: - - pos: 53.46521,-32.491882 - parent: 127 - type: Transform -- uid: 4269 - type: ClothingHandsGlovesBoxingRed - components: - - pos: 50.480835,-35.460632 - parent: 127 - type: Transform -- uid: 4270 - type: WallReinforced - components: - - pos: 61.5,-21.5 - parent: 127 - type: Transform -- uid: 4271 - type: WallReinforced - components: - - pos: 61.5,-39.5 - parent: 127 - type: Transform -- uid: 4272 - type: ReinforcedWindow - components: - - pos: 62.5,-35.5 - parent: 127 - type: Transform -- uid: 4273 - type: ReinforcedWindow - components: - - pos: 62.5,-32.5 - parent: 127 - type: Transform -- uid: 4274 - type: WallSolid - components: - - pos: 57.5,-27.5 - parent: 127 - type: Transform -- uid: 4275 - type: WallSolid - components: - - pos: 57.5,-29.5 - parent: 127 - type: Transform -- uid: 4276 - type: WallSolid - components: - - pos: 58.5,-30.5 - parent: 127 - type: Transform -- uid: 4277 - type: WallSolid - components: - - pos: 58.5,-34.5 - parent: 127 - type: Transform -- uid: 4278 - type: ReinforcedWindow - components: - - pos: 62.5,-30.5 - parent: 127 - type: Transform -- uid: 4279 - type: WallSolid - components: - - pos: 59.5,-35.5 - parent: 127 - type: Transform -- uid: 4280 - type: WallReinforced - components: - - pos: 57.5,-23.5 - parent: 127 - type: Transform -- uid: 4281 - type: WallReinforced - components: - - pos: 44.5,-24.5 - parent: 127 - type: Transform -- uid: 4282 - type: WallReinforced - components: - - pos: 50.5,-17.5 - parent: 127 - type: Transform -- uid: 4283 - type: WallReinforced - components: - - pos: 48.5,-21.5 - parent: 127 - type: Transform -- uid: 4284 - type: WallReinforced - components: - - pos: 52.5,-21.5 - parent: 127 - type: Transform -- uid: 4285 - type: WallReinforced - components: - - pos: 44.5,-27.5 - parent: 127 - type: Transform -- uid: 4286 - type: CableApcExtension - components: - - pos: 31.5,-34.5 - parent: 127 - type: Transform -- uid: 4287 - type: CableApcExtension - components: - - pos: 28.5,-34.5 - parent: 127 - type: Transform -- uid: 4288 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-13.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4289 - type: WallReinforced - components: - - pos: 43.5,-14.5 - parent: 127 - type: Transform -- uid: 4290 - type: AirlockMaintLocked - components: - - pos: 24.5,-12.5 - parent: 127 - type: Transform -- uid: 4291 - type: CableApcExtension - components: - - pos: 25.5,-30.5 - parent: 127 - type: Transform -- uid: 4292 - type: CableApcExtension - components: - - pos: 24.5,-34.5 - parent: 127 - type: Transform -- uid: 4293 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-7.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4294 - type: Paper - components: - - pos: 25.5,-10.5 - parent: 127 - type: Transform -- uid: 4295 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: 35.360527,-15.409814 - parent: 127 - type: Transform -- uid: 4296 - type: LampGold - components: - - pos: 35.532402,-15.550439 - parent: 127 - type: Transform -- uid: 4297 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-40.5 - parent: 127 - type: Transform -- uid: 4298 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 51.5,-41.5 - parent: 127 - type: Transform -- uid: 4299 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-15.5 - parent: 127 - type: Transform -- uid: 4300 - type: WeaponSubMachineGunWt550 - components: - - pos: 35.485527,-15.300439 - parent: 127 - type: Transform -- uid: 4301 - type: WallSolid - components: - - pos: 58.5,-39.5 - parent: 127 - type: Transform -- uid: 4302 - type: ReinforcedWindow - components: - - pos: 62.5,-38.5 - parent: 127 - type: Transform -- uid: 4303 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-31.5 - parent: 127 - type: Transform -- uid: 4304 - type: WallReinforced - components: - - pos: 60.5,-39.5 - parent: 127 - type: Transform -- uid: 4305 - type: WallReinforced - components: - - pos: 45.5,-25.5 - parent: 127 - type: Transform -- uid: 4306 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-41.5 - parent: 127 - type: Transform -- uid: 4307 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-27.5 - parent: 127 - type: Transform -- uid: 4308 - type: APCBasic - components: - - pos: 7.5,-32.5 - parent: 127 - type: Transform -- uid: 4309 - type: APCBasic - components: - - pos: 1.5,-27.5 - parent: 127 - type: Transform -- uid: 4310 - type: SubstationBasic - components: - - pos: 3.5,-28.5 - parent: 127 - type: Transform -- uid: 4311 - type: SMESBasic - components: - - pos: 3.5,-29.5 - parent: 127 - type: Transform -- uid: 4312 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 3.5,-30.5 - parent: 127 - type: Transform -- uid: 4313 - type: CableHV - components: - - pos: 3.5,-30.5 - parent: 127 - type: Transform -- uid: 4314 - type: CableHV - components: - - pos: 2.5,-30.5 - parent: 127 - type: Transform -- uid: 4315 - type: CableHV - components: - - pos: 1.5,-30.5 - parent: 127 - type: Transform -- uid: 4316 - type: CableHV - components: - - pos: 1.5,-29.5 - parent: 127 - type: Transform -- uid: 4317 - type: CableHV - components: - - pos: 0.5,-29.5 - parent: 127 - type: Transform -- uid: 4318 - type: CableHV - components: - - pos: -0.5,-29.5 - parent: 127 - type: Transform -- uid: 4319 - type: CableHV - components: - - pos: -1.5,-29.5 - parent: 127 - type: Transform -- uid: 4320 - type: CableHV - components: - - pos: -2.5,-29.5 - parent: 127 - type: Transform -- uid: 4321 - type: CableHV - components: - - pos: 3.5,-29.5 - parent: 127 - type: Transform -- uid: 4322 - type: CableHV - components: - - pos: 3.5,-28.5 - parent: 127 - type: Transform -- uid: 4323 - type: CableHV - components: - - pos: 2.5,-28.5 - parent: 127 - type: Transform -- uid: 4324 - type: CableHV - components: - - pos: 2.5,-27.5 - parent: 127 - type: Transform -- uid: 4325 - type: CableHV - components: - - pos: 2.5,-26.5 - parent: 127 - type: Transform -- uid: 4326 - type: CableHV - components: - - pos: 1.5,-26.5 - parent: 127 - type: Transform -- uid: 4327 - type: CableHV - components: - - pos: 0.5,-26.5 - parent: 127 - type: Transform -- uid: 4328 - type: CableHV - components: - - pos: -0.5,-26.5 - parent: 127 - type: Transform -- uid: 4329 - type: CableHV - components: - - pos: -1.5,-26.5 - parent: 127 - type: Transform -- uid: 4330 - type: CableHV - components: - - pos: -2.5,-26.5 - parent: 127 - type: Transform -- uid: 4331 - type: CableHV - components: - - pos: -2.5,-25.5 - parent: 127 - type: Transform -- uid: 4332 - type: CableHV - components: - - pos: -2.5,-24.5 - parent: 127 - type: Transform -- uid: 4333 - type: CableHV - components: - - pos: -2.5,-23.5 - parent: 127 - type: Transform -- uid: 4334 - type: CableHV - components: - - pos: -3.5,-23.5 - parent: 127 - type: Transform -- uid: 4335 - type: CableHV - components: - - pos: -3.5,-22.5 - parent: 127 - type: Transform -- uid: 4336 - type: CableHV - components: - - pos: -3.5,-21.5 - parent: 127 - type: Transform -- uid: 4337 - type: CableHV - components: - - pos: -4.5,-21.5 - parent: 127 - type: Transform -- uid: 4338 - type: CableHV - components: - - pos: -5.5,-21.5 - parent: 127 - type: Transform -- uid: 4339 - type: CableHV - components: - - pos: -5.5,-20.5 - parent: 127 - type: Transform -- uid: 4340 - type: CableHV - components: - - pos: -5.5,-19.5 - parent: 127 - type: Transform -- uid: 4341 - type: CableHV - components: - - pos: -5.5,-18.5 - parent: 127 - type: Transform -- uid: 4342 - type: CableHV - components: - - pos: -5.5,-17.5 - parent: 127 - type: Transform -- uid: 4343 - type: CableHV - components: - - pos: 3.5,-26.5 - parent: 127 - type: Transform -- uid: 4344 - type: CableHV - components: - - pos: 4.5,-26.5 - parent: 127 - type: Transform -- uid: 4345 - type: CableHV - components: - - pos: 5.5,-26.5 - parent: 127 - type: Transform -- uid: 4346 - type: CableHV - components: - - pos: 5.5,-25.5 - parent: 127 - type: Transform -- uid: 4347 - type: CableHV - components: - - pos: 5.5,-24.5 - parent: 127 - type: Transform -- uid: 4348 - type: CableHV - components: - - pos: 5.5,-23.5 - parent: 127 - type: Transform -- uid: 4349 - type: CableHV - components: - - pos: 6.5,-23.5 - parent: 127 - type: Transform -- uid: 4350 - type: CableHV - components: - - pos: 7.5,-23.5 - parent: 127 - type: Transform -- uid: 4351 - type: CableHV - components: - - pos: 8.5,-23.5 - parent: 127 - type: Transform -- uid: 4352 - type: CableHV - components: - - pos: 9.5,-23.5 - parent: 127 - type: Transform -- uid: 4353 - type: CableHV - components: - - pos: 9.5,-22.5 - parent: 127 - type: Transform -- uid: 4354 - type: CableHV - components: - - pos: 5.5,-27.5 - parent: 127 - type: Transform -- uid: 4355 - type: CableHV - components: - - pos: 5.5,-28.5 - parent: 127 - type: Transform -- uid: 4356 - type: CableHV - components: - - pos: 5.5,-29.5 - parent: 127 - type: Transform -- uid: 4357 - type: CableHV - components: - - pos: 5.5,-30.5 - parent: 127 - type: Transform -- uid: 4358 - type: CableHV - components: - - pos: 5.5,-31.5 - parent: 127 - type: Transform -- uid: 4359 - type: CableHV - components: - - pos: 6.5,-31.5 - parent: 127 - type: Transform -- uid: 4360 - type: CableHV - components: - - pos: 6.5,-32.5 - parent: 127 - type: Transform -- uid: 4361 - type: CableHV - components: - - pos: 6.5,-33.5 - parent: 127 - type: Transform -- uid: 4362 - type: CableHV - components: - - pos: 7.5,-33.5 - parent: 127 - type: Transform -- uid: 4363 - type: CableHV - components: - - pos: 8.5,-33.5 - parent: 127 - type: Transform -- uid: 4364 - type: CableHV - components: - - pos: 9.5,-33.5 - parent: 127 - type: Transform -- uid: 4365 - type: CableHV - components: - - pos: 10.5,-33.5 - parent: 127 - type: Transform -- uid: 4366 - type: CableHV - components: - - pos: 11.5,-33.5 - parent: 127 - type: Transform -- uid: 4367 - type: CableHV - components: - - pos: 12.5,-33.5 - parent: 127 - type: Transform -- uid: 4368 - type: CableHV - components: - - pos: 13.5,-33.5 - parent: 127 - type: Transform -- uid: 4369 - type: CableHV - components: - - pos: 14.5,-33.5 - parent: 127 - type: Transform -- uid: 4370 - type: CableHV - components: - - pos: 15.5,-33.5 - parent: 127 - type: Transform -- uid: 4371 - type: CableHV - components: - - pos: 15.5,-32.5 - parent: 127 - type: Transform -- uid: 4372 - type: CableHV - components: - - pos: 15.5,-31.5 - parent: 127 - type: Transform -- uid: 4373 - type: CableHV - components: - - pos: 15.5,-30.5 - parent: 127 - type: Transform -- uid: 4374 - type: CableHV - components: - - pos: 15.5,-29.5 - parent: 127 - type: Transform -- uid: 4375 - type: CableHV - components: - - pos: 15.5,-28.5 - parent: 127 - type: Transform -- uid: 4376 - type: CableHV - components: - - pos: 15.5,-27.5 - parent: 127 - type: Transform -- uid: 4377 - type: CableHV - components: - - pos: 15.5,-26.5 - parent: 127 - type: Transform -- uid: 4378 - type: CableHV - components: - - pos: 15.5,-25.5 - parent: 127 - type: Transform -- uid: 4379 - type: CableHV - components: - - pos: 15.5,-24.5 - parent: 127 - type: Transform -- uid: 4380 - type: CableHV - components: - - pos: 15.5,-23.5 - parent: 127 - type: Transform -- uid: 4381 - type: CableHV - components: - - pos: 15.5,-22.5 - parent: 127 - type: Transform -- uid: 4382 - type: CableHV - components: - - pos: 16.5,-25.5 - parent: 127 - type: Transform -- uid: 4383 - type: CableHV - components: - - pos: 17.5,-25.5 - parent: 127 - type: Transform -- uid: 4384 - type: CableHV - components: - - pos: 18.5,-25.5 - parent: 127 - type: Transform -- uid: 4385 - type: CableHV - components: - - pos: 19.5,-25.5 - parent: 127 - type: Transform -- uid: 4386 - type: CableHV - components: - - pos: 20.5,-25.5 - parent: 127 - type: Transform -- uid: 4387 - type: CableHV - components: - - pos: 21.5,-25.5 - parent: 127 - type: Transform -- uid: 4388 - type: CableHV - components: - - pos: 22.5,-25.5 - parent: 127 - type: Transform -- uid: 4389 - type: CableHV - components: - - pos: 22.5,-26.5 - parent: 127 - type: Transform -- uid: 4390 - type: CableHV - components: - - pos: 22.5,-27.5 - parent: 127 - type: Transform -- uid: 4391 - type: CableHV - components: - - pos: 22.5,-28.5 - parent: 127 - type: Transform -- uid: 4392 - type: SubstationBasic - components: - - pos: 22.5,-28.5 - parent: 127 - type: Transform -- uid: 4393 - type: CableMV - components: - - pos: 3.5,-28.5 - parent: 127 - type: Transform -- uid: 4394 - type: CableMV - components: - - pos: 2.5,-28.5 - parent: 127 - type: Transform -- uid: 4395 - type: CableMV - components: - - pos: 3.5,-26.5 - parent: 127 - type: Transform -- uid: 4396 - type: CableMV - components: - - pos: 1.5,-27.5 - parent: 127 - type: Transform -- uid: 4397 - type: CableMV - components: - - pos: 2.5,-27.5 - parent: 127 - type: Transform -- uid: 4398 - type: CableMV - components: - - pos: 2.5,-26.5 - parent: 127 - type: Transform -- uid: 4399 - type: CableMV - components: - - pos: 4.5,-26.5 - parent: 127 - type: Transform -- uid: 4400 - type: CableMV - components: - - pos: 5.5,-26.5 - parent: 127 - type: Transform -- uid: 4401 - type: CableMV - components: - - pos: 5.5,-27.5 - parent: 127 - type: Transform -- uid: 4402 - type: CableMV - components: - - pos: 5.5,-28.5 - parent: 127 - type: Transform -- uid: 4403 - type: CableMV - components: - - pos: 5.5,-29.5 - parent: 127 - type: Transform -- uid: 4404 - type: CableMV - components: - - pos: 5.5,-30.5 - parent: 127 - type: Transform -- uid: 4405 - type: CableMV - components: - - pos: 5.5,-31.5 - parent: 127 - type: Transform -- uid: 4406 - type: CableMV - components: - - pos: 6.5,-31.5 - parent: 127 - type: Transform -- uid: 4407 - type: CableMV - components: - - pos: 6.5,-32.5 - parent: 127 - type: Transform -- uid: 4408 - type: CableMV - components: - - pos: 7.5,-32.5 - parent: 127 - type: Transform -- uid: 4409 - type: CableMV - components: - - pos: 22.5,-28.5 - parent: 127 - type: Transform -- uid: 4410 - type: CableMV - components: - - pos: 22.5,-27.5 - parent: 127 - type: Transform -- uid: 4411 - type: CableMV - components: - - pos: 22.5,-26.5 - parent: 127 - type: Transform -- uid: 4412 - type: CableMV - components: - - pos: 22.5,-25.5 - parent: 127 - type: Transform -- uid: 4413 - type: CableMV - components: - - pos: 21.5,-25.5 - parent: 127 - type: Transform -- uid: 4414 - type: CableMV - components: - - pos: 20.5,-25.5 - parent: 127 - type: Transform -- uid: 4415 - type: CableMV - components: - - pos: 19.5,-25.5 - parent: 127 - type: Transform -- uid: 4416 - type: CableMV - components: - - pos: 18.5,-25.5 - parent: 127 - type: Transform -- uid: 4417 - type: CableMV - components: - - pos: 17.5,-25.5 - parent: 127 - type: Transform -- uid: 4418 - type: CableMV - components: - - pos: 16.5,-25.5 - parent: 127 - type: Transform -- uid: 4419 - type: CableMV - components: - - pos: 15.5,-25.5 - parent: 127 - type: Transform -- uid: 4420 - type: CableMV - components: - - pos: 14.5,-25.5 - parent: 127 - type: Transform -- uid: 4421 - type: CableMV - components: - - pos: 14.5,-26.5 - parent: 127 - type: Transform -- uid: 4422 - type: CableMV - components: - - pos: 14.5,-27.5 - parent: 127 - type: Transform -- uid: 4423 - type: CableMV - components: - - pos: 13.5,-27.5 - parent: 127 - type: Transform -- uid: 4424 - type: WallReinforced - components: - - pos: 50.5,-28.5 - parent: 127 - type: Transform -- uid: 4425 - type: CableMV - components: - - pos: 23.5,-26.5 - parent: 127 - type: Transform -- uid: 4426 - type: Table - components: - - pos: 29.5,-26.5 - parent: 127 - type: Transform -- uid: 4427 - type: CableApcExtension - components: - - pos: 25.5,-26.5 - parent: 127 - type: Transform -- uid: 4428 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4429 - type: AirlockMaint - components: - - pos: 49.5,-37.5 - parent: 127 - type: Transform -- uid: 4430 - type: Grille - components: - - pos: 41.5,-40.5 - parent: 127 - type: Transform -- uid: 4431 - type: CableApcExtension - components: - - pos: 23.5,-26.5 - parent: 127 - type: Transform -- uid: 4432 - type: CableApcExtension - components: - - pos: 22.5,-26.5 - parent: 127 - type: Transform -- uid: 4433 - type: CableApcExtension - components: - - pos: 21.5,-26.5 - parent: 127 - type: Transform -- uid: 4434 - type: CableApcExtension - components: - - pos: 20.5,-26.5 - parent: 127 - type: Transform -- uid: 4435 - type: CableApcExtension - components: - - pos: 19.5,-26.5 - parent: 127 - type: Transform -- uid: 4436 - type: AirlockMaint - components: - - pos: 55.5,-37.5 - parent: 127 - type: Transform -- uid: 4437 - type: JetpackMini - components: - - pos: 36.386284,-37.21416 - parent: 127 - type: Transform -- uid: 4438 - type: Grille - components: - - pos: 31.5,-21.5 - parent: 127 - type: Transform -- uid: 4439 - type: AirlockMaint - components: - - pos: 59.5,-37.5 - parent: 127 - type: Transform -- uid: 4440 - type: WallReinforced - components: - - pos: 49.5,-27.5 - parent: 127 - type: Transform -- uid: 4441 - type: WallReinforced - components: - - pos: 44.5,-28.5 - parent: 127 - type: Transform -- uid: 4442 - type: CableApcExtension - components: - - pos: 35.5,-32.5 - parent: 127 - type: Transform -- uid: 4443 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-30.5 - parent: 127 - type: Transform -- uid: 4444 - type: WallReinforced - components: - - pos: 36.5,-16.5 - parent: 127 - type: Transform -- uid: 4445 - type: WallReinforced - components: - - pos: 61.5,-20.5 - parent: 127 - type: Transform -- uid: 4446 - type: ReinforcedWindow - components: - - pos: 63.5,-27.5 - parent: 127 - type: Transform -- uid: 4447 - type: Grille - components: - - pos: 50.5,-41.5 - parent: 127 - type: Transform -- uid: 4448 - type: ReinforcedWindow - components: - - pos: 64.5,-29.5 - parent: 127 - type: Transform -- uid: 4449 - type: WallReinforced - components: - - pos: 48.5,-39.5 - parent: 127 - type: Transform -- uid: 4450 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-30.5 - parent: 127 - type: Transform -- uid: 4451 - type: ClothingHandsGlovesBoxingYellow - components: - - pos: 53.512085,-35.460632 - parent: 127 - type: Transform -- uid: 4452 - type: Grille - components: - - pos: 64.5,-35.5 - parent: 127 - type: Transform -- uid: 4453 - type: WallSolid - components: - - pos: 49.5,-35.5 - parent: 127 - type: Transform -- uid: 4454 - type: CableApcExtension - components: - - pos: 23.5,-34.5 - parent: 127 - type: Transform -- uid: 4455 - type: CableApcExtension - components: - - pos: 22.5,-34.5 - parent: 127 - type: Transform -- uid: 4456 - type: CableApcExtension - components: - - pos: 21.5,-34.5 - parent: 127 - type: Transform -- uid: 4457 - type: CableApcExtension - components: - - pos: 20.5,-34.5 - parent: 127 - type: Transform -- uid: 4458 - type: CableApcExtension - components: - - pos: 19.5,-34.5 - parent: 127 - type: Transform -- uid: 4459 - type: CableApcExtension - components: - - pos: 13.5,-27.5 - parent: 127 - type: Transform -- uid: 4460 - type: CableApcExtension - components: - - pos: 14.5,-27.5 - parent: 127 - type: Transform -- uid: 4461 - type: CableApcExtension - components: - - pos: 14.5,-28.5 - parent: 127 - type: Transform -- uid: 4462 - type: CableApcExtension - components: - - pos: 14.5,-29.5 - parent: 127 - type: Transform -- uid: 4463 - type: CableApcExtension - components: - - pos: 13.5,-29.5 - parent: 127 - type: Transform -- uid: 4464 - type: CableApcExtension - components: - - pos: 11.5,-29.5 - parent: 127 - type: Transform -- uid: 4465 - type: CableApcExtension - components: - - pos: 10.5,-29.5 - parent: 127 - type: Transform -- uid: 4466 - type: CableApcExtension - components: - - pos: 12.5,-29.5 - parent: 127 - type: Transform -- uid: 4467 - type: CableApcExtension - components: - - pos: 10.5,-28.5 - parent: 127 - type: Transform -- uid: 4468 - type: CableApcExtension - components: - - pos: 10.5,-27.5 - parent: 127 - type: Transform -- uid: 4469 - type: CableApcExtension - components: - - pos: 10.5,-26.5 - parent: 127 - type: Transform -- uid: 4470 - type: CableApcExtension - components: - - pos: 15.5,-29.5 - parent: 127 - type: Transform -- uid: 4471 - type: CableApcExtension - components: - - pos: 16.5,-29.5 - parent: 127 - type: Transform -- uid: 4472 - type: CableApcExtension - components: - - pos: 17.5,-29.5 - parent: 127 - type: Transform -- uid: 4473 - type: CableApcExtension - components: - - pos: 18.5,-29.5 - parent: 127 - type: Transform -- uid: 4474 - type: CableApcExtension - components: - - pos: 19.5,-29.5 - parent: 127 - type: Transform -- uid: 4475 - type: CableApcExtension - components: - - pos: 20.5,-29.5 - parent: 127 - type: Transform -- uid: 4476 - type: CableApcExtension - components: - - pos: 20.5,-30.5 - parent: 127 - type: Transform -- uid: 4477 - type: CableApcExtension - components: - - pos: 20.5,-31.5 - parent: 127 - type: Transform -- uid: 4478 - type: CableApcExtension - components: - - pos: 15.5,-30.5 - parent: 127 - type: Transform -- uid: 4479 - type: CableApcExtension - components: - - pos: 15.5,-31.5 - parent: 127 - type: Transform -- uid: 4480 - type: CableApcExtension - components: - - pos: 15.5,-32.5 - parent: 127 - type: Transform -- uid: 4481 - type: CableApcExtension - components: - - pos: 15.5,-33.5 - parent: 127 - type: Transform -- uid: 4482 - type: CableApcExtension - components: - - pos: 15.5,-34.5 - parent: 127 - type: Transform -- uid: 4483 - type: CableApcExtension - components: - - pos: 7.5,-33.5 - parent: 127 - type: Transform -- uid: 4484 - type: CableApcExtension - components: - - pos: 7.5,-34.5 - parent: 127 - type: Transform -- uid: 4485 - type: CableApcExtension - components: - - pos: 8.5,-34.5 - parent: 127 - type: Transform -- uid: 4486 - type: CableApcExtension - components: - - pos: 9.5,-34.5 - parent: 127 - type: Transform -- uid: 4487 - type: CableApcExtension - components: - - pos: 10.5,-34.5 - parent: 127 - type: Transform -- uid: 4488 - type: CableApcExtension - components: - - pos: 11.5,-34.5 - parent: 127 - type: Transform -- uid: 4489 - type: CableApcExtension - components: - - pos: 12.5,-34.5 - parent: 127 - type: Transform -- uid: 4490 - type: CableApcExtension - components: - - pos: 13.5,-34.5 - parent: 127 - type: Transform -- uid: 4491 - type: CableApcExtension - components: - - pos: 6.5,-34.5 - parent: 127 - type: Transform -- uid: 4492 - type: CableApcExtension - components: - - pos: 7.5,-32.5 - parent: 127 - type: Transform -- uid: 4493 - type: CableApcExtension - components: - - pos: 7.5,-31.5 - parent: 127 - type: Transform -- uid: 4494 - type: CableApcExtension - components: - - pos: 7.5,-30.5 - parent: 127 - type: Transform -- uid: 4495 - type: CableApcExtension - components: - - pos: 7.5,-29.5 - parent: 127 - type: Transform -- uid: 4496 - type: CableApcExtension - components: - - pos: 6.5,-29.5 - parent: 127 - type: Transform -- uid: 4497 - type: CableApcExtension - components: - - pos: 5.5,-29.5 - parent: 127 - type: Transform -- uid: 4498 - type: CableApcExtension - components: - - pos: 5.5,-28.5 - parent: 127 - type: Transform -- uid: 4499 - type: CableApcExtension - components: - - pos: 5.5,-27.5 - parent: 127 - type: Transform -- uid: 4500 - type: CableApcExtension - components: - - pos: 5.5,-26.5 - parent: 127 - type: Transform -- uid: 4501 - type: CableApcExtension - components: - - pos: 5.5,-25.5 - parent: 127 - type: Transform -- uid: 4502 - type: CableApcExtension - components: - - pos: 1.5,-27.5 - parent: 127 - type: Transform -- uid: 4503 - type: CableApcExtension - components: - - pos: 1.5,-28.5 - parent: 127 - type: Transform -- uid: 4504 - type: CableApcExtension - components: - - pos: 1.5,-29.5 - parent: 127 - type: Transform -- uid: 4505 - type: CableApcExtension - components: - - pos: 0.5,-29.5 - parent: 127 - type: Transform -- uid: 4506 - type: CableApcExtension - components: - - pos: -0.5,-29.5 - parent: 127 - type: Transform -- uid: 4507 - type: CableApcExtension - components: - - pos: -1.5,-29.5 - parent: 127 - type: Transform -- uid: 4508 - type: CableApcExtension - components: - - pos: 2.5,-29.5 - parent: 127 - type: Transform -- uid: 4509 - type: CableApcExtension - components: - - pos: -2.5,-29.5 - parent: 127 - type: Transform -- uid: 4510 - type: CableApcExtension - components: - - pos: -3.5,-29.5 - parent: 127 - type: Transform -- uid: 4511 - type: CableApcExtension - components: - - pos: -4.5,-29.5 - parent: 127 - type: Transform -- uid: 4512 - type: CableApcExtension - components: - - pos: -5.5,-29.5 - parent: 127 - type: Transform -- uid: 4513 - type: CableApcExtension - components: - - pos: 1.5,-26.5 - parent: 127 - type: Transform -- uid: 4514 - type: CableApcExtension - components: - - pos: 1.5,-25.5 - parent: 127 - type: Transform -- uid: 4515 - type: CableApcExtension - components: - - pos: 5.5,-24.5 - parent: 127 - type: Transform -- uid: 4516 - type: CableApcExtension - components: - - pos: 5.5,-23.5 - parent: 127 - type: Transform -- uid: 4517 - type: CableApcExtension - components: - - pos: 6.5,-23.5 - parent: 127 - type: Transform -- uid: 4518 - type: CableApcExtension - components: - - pos: 2.5,-25.5 - parent: 127 - type: Transform -- uid: 4519 - type: CableApcExtension - components: - - pos: 0.5,-25.5 - parent: 127 - type: Transform -- uid: 4520 - type: CableApcExtension - components: - - pos: 10.5,-35.5 - parent: 127 - type: Transform -- uid: 4521 - type: CableApcExtension - components: - - pos: 10.5,-36.5 - parent: 127 - type: Transform -- uid: 4522 - type: CableApcExtension - components: - - pos: 10.5,-37.5 - parent: 127 - type: Transform -- uid: 4523 - type: CableApcExtension - components: - - pos: 10.5,-38.5 - parent: 127 - type: Transform -- uid: 4524 - type: CableApcExtension - components: - - pos: 10.5,-39.5 - parent: 127 - type: Transform -- uid: 4525 - type: CableApcExtension - components: - - pos: 18.5,-34.5 - parent: 127 - type: Transform -- uid: 4526 - type: CableApcExtension - components: - - pos: 18.5,-35.5 - parent: 127 - type: Transform -- uid: 4527 - type: CableApcExtension - components: - - pos: 18.5,-36.5 - parent: 127 - type: Transform -- uid: 4528 - type: CableApcExtension - components: - - pos: 18.5,-37.5 - parent: 127 - type: Transform -- uid: 4529 - type: CableApcExtension - components: - - pos: 18.5,-38.5 - parent: 127 - type: Transform -- uid: 4530 - type: CableApcExtension - components: - - pos: 18.5,-39.5 - parent: 127 - type: Transform -- uid: 4531 - type: CableApcExtension - components: - - pos: 13.5,-35.5 - parent: 127 - type: Transform -- uid: 4532 - type: CableApcExtension - components: - - pos: 15.5,-35.5 - parent: 127 - type: Transform -- uid: 4533 - type: CableApcExtension - components: - - pos: 17.5,-34.5 - parent: 127 - type: Transform -- uid: 4534 - type: AirlockExternalGlassLocked - components: - - pos: 0.5,-29.5 - parent: 127 - type: Transform -- uid: 4535 - type: AirlockExternalGlassLocked - components: - - pos: -2.5,-29.5 - parent: 127 - type: Transform -- uid: 4536 - type: AirlockExternalGlass - components: - - pos: 9.5,-36.5 - parent: 127 - type: Transform -- uid: 4537 - type: AirlockExternalGlass - components: - - pos: 11.5,-36.5 - parent: 127 - type: Transform -- uid: 4538 - type: AirlockExternalGlass - components: - - pos: 17.5,-36.5 - parent: 127 - type: Transform -- uid: 4539 - type: AirlockExternalGlass - components: - - pos: 19.5,-36.5 - parent: 127 - type: Transform -- uid: 4540 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - pos: 9.5,-40.5 - parent: 127 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 4541 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - pos: 11.5,-40.5 - parent: 127 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 4542 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - pos: 17.5,-40.5 - parent: 127 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 4543 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - pos: 19.5,-40.5 - parent: 127 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 4544 - type: AtmosDeviceFanTiny - components: - - pos: 9.5,-40.5 - parent: 127 - type: Transform -- uid: 4545 - type: AtmosDeviceFanTiny - components: - - pos: 11.5,-40.5 - parent: 127 - type: Transform -- uid: 4546 - type: AtmosDeviceFanTiny - components: - - pos: 17.5,-40.5 - parent: 127 - type: Transform -- uid: 4547 - type: AtmosDeviceFanTiny - components: - - pos: 19.5,-40.5 - parent: 127 - type: Transform -- uid: 4548 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 2.5,-28.5 - parent: 127 - type: Transform -- uid: 4549 - type: FirelockGlass - components: - - pos: 14.5,-32.5 - parent: 127 - type: Transform -- uid: 4550 - type: FirelockGlass - components: - - pos: 15.5,-32.5 - parent: 127 - type: Transform -- uid: 4551 - type: FirelockGlass - components: - - pos: 16.5,-32.5 - parent: 127 - type: Transform -- uid: 4552 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-34.5 - parent: 127 - type: Transform -- uid: 4553 - type: ReinforcedWindow - components: - - pos: 52.5,-25.5 - parent: 127 - type: Transform -- uid: 4554 - type: Grille - components: - - pos: 52.5,-25.5 - parent: 127 - type: Transform -- uid: 4555 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-30.5 - parent: 127 - type: Transform -- uid: 4556 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-29.5 - parent: 127 - type: Transform -- uid: 4557 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-30.5 - parent: 127 - type: Transform -- uid: 4558 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-29.5 - parent: 127 - type: Transform -- uid: 4559 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -6.5,-11.5 - parent: 127 - type: Transform -- uid: 4560 - type: FirelockGlass - components: - - pos: -0.5,-16.5 - parent: 127 - type: Transform -- uid: 4561 - type: FirelockGlass - components: - - pos: -0.5,-17.5 - parent: 127 - type: Transform -- uid: 4562 - type: WallReinforced - components: - - pos: 29.5,-21.5 - parent: 127 - type: Transform -- uid: 4563 - type: WallReinforced - components: - - pos: 45.5,-24.5 - parent: 127 - type: Transform -- uid: 4564 - type: ClothingOuterHardsuitEVA - components: - - pos: 39.493927,-36.33916 - parent: 127 - type: Transform -- uid: 4565 - type: WallSolid - components: - - pos: 49.5,-33.5 - parent: 127 - type: Transform -- uid: 4566 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-38.5 - parent: 127 - type: Transform -- uid: 4567 - type: Grille - components: - - pos: 25.5,-21.5 - parent: 127 - type: Transform -- uid: 4568 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 24.5,-38.5 - parent: 127 - type: Transform -- uid: 4569 - type: Grille - components: - - pos: 31.5,-38.5 - parent: 127 - type: Transform -- uid: 4570 - type: ClothingHeadHelmetEVA - components: - - pos: 39.290802,-37.229786 - parent: 127 - type: Transform -- uid: 4571 - type: ReinforcedWindow - components: - - pos: 64.5,-33.5 - parent: 127 - type: Transform -- uid: 4572 - type: WallReinforced - components: - - pos: 44.5,-39.5 - parent: 127 - type: Transform -- uid: 4573 - type: WallReinforced - components: - - pos: 45.5,-39.5 - parent: 127 - type: Transform -- uid: 4574 - type: ReinforcedWindow - components: - - pos: 65.5,-29.5 - parent: 127 - type: Transform -- uid: 4575 - type: ReinforcedWindow - components: - - pos: 46.5,-39.5 - parent: 127 - type: Transform -- uid: 4576 - type: WallSolid - components: - - pos: 54.5,-28.5 - parent: 127 - type: Transform -- uid: 4577 - type: WallReinforced - components: - - pos: 61.5,-19.5 - parent: 127 - type: Transform -- uid: 4578 - type: Table - components: - - pos: 47.5,-29.5 - parent: 127 - type: Transform -- uid: 4579 - type: ClosetMaintenanceFilledRandom - components: - - pos: 42.5,-29.5 - parent: 127 - type: Transform -- uid: 4580 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4581 - type: Table - components: - - pos: 43.5,-15.5 - parent: 127 - type: Transform -- uid: 4582 - type: ClosetMaintenanceFilledRandom - components: - - pos: 56.5,-38.5 - parent: 127 - type: Transform -- uid: 4583 - type: GasPipeStraight - components: - - pos: 21.5,-18.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4584 - type: ClosetMaintenanceFilledRandom - components: - - pos: 57.5,-17.5 - parent: 127 - type: Transform -- uid: 4585 - type: ClosetMaintenanceFilledRandom - components: - - pos: 57.5,-18.5 - parent: 127 - type: Transform -- uid: 4586 - type: WallSolid - components: - - pos: 49.5,-32.5 - parent: 127 - type: Transform -- uid: 4587 - type: WallReinforced - components: - - pos: 54.5,-26.5 - parent: 127 - type: Transform -- uid: 4588 - type: Table - components: - - pos: 55.5,-15.5 - parent: 127 - type: Transform -- uid: 4589 - type: WallReinforced - components: - - pos: 53.5,-26.5 - parent: 127 - type: Transform -- uid: 4590 - type: Table - components: - - pos: 54.5,-15.5 - parent: 127 - type: Transform -- uid: 4591 - type: Table - components: - - pos: 57.5,-32.5 - parent: 127 - type: Transform -- uid: 4592 - type: PoweredSmallLight - components: - - pos: 38.5,-14.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4593 - type: WallReinforced - components: - - pos: 39.5,-13.5 - parent: 127 - type: Transform -- uid: 4594 - type: OxygenCanister - components: - - pos: 38.5,-37.5 - parent: 127 - type: Transform -- uid: 4595 - type: CableApcExtension - components: - - pos: 29.5,-26.5 - parent: 127 - type: Transform -- uid: 4596 - type: Grille - components: - - pos: 34.5,-40.5 - parent: 127 - type: Transform -- uid: 4597 - type: TableWood - components: - - pos: 58.5,-40.5 - parent: 127 - type: Transform -- uid: 4598 - type: Grille - components: - - pos: 64.5,-23.5 - parent: 127 - type: Transform -- uid: 4599 - type: Grille - components: - - pos: 30.5,-38.5 - parent: 127 - type: Transform -- uid: 4600 - type: WallSolid - components: - - pos: 49.5,-38.5 - parent: 127 - type: Transform -- uid: 4601 - type: ReinforcedWindow - components: - - pos: 63.5,-37.5 - parent: 127 - type: Transform -- uid: 4602 - type: ReinforcedWindow - components: - - pos: 41.5,-21.5 - parent: 127 - type: Transform -- uid: 4603 - type: Grille - components: - - pos: 30.5,-21.5 - parent: 127 - type: Transform -- uid: 4604 - type: WallReinforced - components: - - pos: 52.5,-17.5 - parent: 127 - type: Transform -- uid: 4605 - type: WallReinforced - components: - - pos: 43.5,-28.5 - parent: 127 - type: Transform -- uid: 4606 - type: JetpackMini - components: - - pos: 36.573784,-37.479786 - parent: 127 - type: Transform -- uid: 4607 - type: ClothingHeadHelmetEVA - components: - - pos: 39.275177,-35.261036 - parent: 127 - type: Transform -- uid: 4608 - type: ReinforcedWindow - components: - - pos: 63.5,-33.5 - parent: 127 - type: Transform -- uid: 4609 - type: WallReinforced - components: - - pos: 59.5,-41.5 - parent: 127 - type: Transform -- uid: 4610 - type: AirlockCommandGlassLocked - components: - - pos: 35.5,-35.5 - parent: 127 - type: Transform -- uid: 4611 - type: Grille - components: - - pos: 26.5,-38.5 - parent: 127 - type: Transform -- uid: 4612 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,12.5 - parent: 127 - type: Transform -- uid: 4613 - type: Grille - components: - - pos: 29.5,-38.5 - parent: 127 - type: Transform -- uid: 4614 - type: ClothingOuterHardsuitEVA - components: - - pos: 39.478302,-37.37041 - parent: 127 - type: Transform -- uid: 4615 - type: ReinforcedWindow - components: - - pos: 65.5,-33.5 - parent: 127 - type: Transform -- uid: 4616 - type: ClothingHeadHelmetEVA - components: - - pos: 39.290802,-36.292286 - parent: 127 - type: Transform -- uid: 4617 - type: Grille - components: - - pos: 61.5,-41.5 - parent: 127 - type: Transform -- uid: 4618 - type: Grille - components: - - pos: 49.5,-41.5 - parent: 127 - type: Transform -- uid: 4619 - type: WallReinforced - components: - - pos: 61.5,-17.5 - parent: 127 - type: Transform -- uid: 4620 - type: WallReinforced - components: - - pos: 36.5,-17.5 - parent: 127 - type: Transform -- uid: 4621 - type: WallReinforced - components: - - pos: 57.5,-21.5 - parent: 127 - type: Transform -- uid: 4622 - type: ReinforcedWindow - components: - - pos: 54.5,-23.5 - parent: 127 - type: Transform -- uid: 4623 - type: WallReinforced - components: - - pos: 55.5,-14.5 - parent: 127 - type: Transform -- uid: 4624 - type: ReinforcedWindow - components: - - pos: 44.5,-21.5 - parent: 127 - type: Transform -- uid: 4625 - type: Grille - components: - - pos: 24.5,-21.5 - parent: 127 - type: Transform -- uid: 4626 - type: WallReinforced - components: - - pos: 34.5,-17.5 - parent: 127 - type: Transform -- uid: 4627 - type: WallReinforced - components: - - pos: 45.5,-18.5 - parent: 127 - type: Transform -- uid: 4628 - type: WallSolid - components: - - pos: 48.5,-31.5 - parent: 127 - type: Transform -- uid: 4629 - type: ReinforcedWindow - components: - - pos: 32.5,-15.5 - parent: 127 - type: Transform -- uid: 4630 - type: WallReinforced - components: - - pos: 45.5,-20.5 - parent: 127 - type: Transform -- uid: 4631 - type: WallReinforced - components: - - pos: 45.5,-19.5 - parent: 127 - type: Transform -- uid: 4632 - type: AirlockMaintLocked - components: - - pos: 33.5,-33.5 - parent: 127 - type: Transform -- uid: 4633 - type: AirlockMaintSecLocked - components: - - pos: 28.5,-24.5 - parent: 127 - type: Transform -- uid: 4634 - type: DrinkGlass - components: - - pos: 41.386898,-36.196545 - parent: 127 - type: Transform -- uid: 4635 - type: soda_dispenser - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-37.5 - parent: 127 - type: Transform -- uid: 4636 - type: WallReinforced - components: - - pos: 33.5,-17.5 - parent: 127 - type: Transform -- uid: 4637 - type: Grille - components: - - pos: 32.5,-15.5 - parent: 127 - type: Transform -- uid: 4638 - type: AirlockMaintSecLocked - components: - - pos: 38.5,-17.5 - parent: 127 - type: Transform -- uid: 4639 - type: WallReinforced - components: - - pos: 57.5,-15.5 - parent: 127 - type: Transform -- uid: 4640 - type: WallReinforced - components: - - pos: 35.5,-17.5 - parent: 127 - type: Transform -- uid: 4641 - type: DisposalUnit - components: - - pos: 33.5,-22.5 - parent: 127 - type: Transform -- uid: 4642 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 41.5,-34.5 - parent: 127 - type: Transform -- uid: 4643 - type: WallSolid - components: - - pos: 44.5,-33.5 - parent: 127 - type: Transform -- uid: 4644 - type: Grille - components: - - pos: 28.5,-38.5 - parent: 127 - type: Transform -- uid: 4645 - type: Grille - components: - - pos: 25.5,-38.5 - parent: 127 - type: Transform -- uid: 4646 - type: Grille - components: - - pos: 44.5,-41.5 - parent: 127 - type: Transform -- uid: 4647 - type: WallSolid - components: - - pos: -16.5,0.5 - parent: 127 - type: Transform -- uid: 4648 - type: LockerWeldingSuppliesFilled - components: - - pos: 26.5,22.5 - parent: 127 - type: Transform -- uid: 4649 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 45.5,-41.5 - parent: 127 - type: Transform -- uid: 4650 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: 35.673027,-15.503564 - parent: 127 - type: Transform -- uid: 4651 - type: CableApcExtension - components: - - pos: 27.5,-34.5 - parent: 127 - type: Transform -- uid: 4652 - type: CableApcExtension - components: - - pos: 30.5,-34.5 - parent: 127 - type: Transform -- uid: 4653 - type: Grille - components: - - pos: 65.5,-35.5 - parent: 127 - type: Transform -- uid: 4654 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-31.5 - parent: 127 - type: Transform -- uid: 4655 - type: TableWood - components: - - pos: 48.5,-34.5 - parent: 127 - type: Transform -- uid: 4656 - type: FloorTileItemBoxing - components: - - pos: 51.5,-32.5 - parent: 127 - type: Transform -- uid: 4657 - type: TableWood - components: - - pos: 44.5,-35.5 - parent: 127 - type: Transform -- uid: 4658 - type: Grille - components: - - pos: 62.5,-37.5 - parent: 127 - type: Transform -- uid: 4659 - type: TableWood - components: - - pos: 41.5,-36.5 - parent: 127 - type: Transform -- uid: 4660 - type: ClosetToolFilled - components: - - pos: -17.5,13.5 - parent: 127 - type: Transform -- uid: 4661 - type: ReinforcedWindow - components: - - pos: 25.5,-21.5 - parent: 127 - type: Transform -- uid: 4662 - type: WallReinforced - components: - - pos: 43.5,-38.5 - parent: 127 - type: Transform -- uid: 4663 - type: CableApcExtension - components: - - pos: 40.5,21.5 - parent: 127 - type: Transform -- uid: 4664 - type: Grille - components: - - pos: 65.5,-29.5 - parent: 127 - type: Transform -- uid: 4665 - type: Grille - components: - - pos: 26.5,-23.5 - parent: 127 - type: Transform -- uid: 4666 - type: CableApcExtension - components: - - pos: 37.5,-32.5 - parent: 127 - type: Transform -- uid: 4667 - type: CableApcExtension - components: - - pos: 32.5,-30.5 - parent: 127 - type: Transform -- uid: 4668 - type: CableApcExtension - components: - - pos: 38.5,-32.5 - parent: 127 - type: Transform -- uid: 4669 - type: CableApcExtension - components: - - pos: 28.5,-26.5 - parent: 127 - type: Transform -- uid: 4670 - type: CableApcExtension - components: - - pos: 32.5,-28.5 - parent: 127 - type: Transform -- uid: 4671 - type: CableApcExtension - components: - - pos: 31.5,-26.5 - parent: 127 - type: Transform -- uid: 4672 - type: CableApcExtension - components: - - pos: 32.5,-26.5 - parent: 127 - type: Transform -- uid: 4673 - type: Grille - components: - - pos: 62.5,-27.5 - parent: 127 - type: Transform -- uid: 4674 - type: WallReinforced - components: - - pos: 58.5,-23.5 - parent: 127 - type: Transform -- uid: 4675 - type: Table - components: - - pos: 42.5,-15.5 - parent: 127 - type: Transform -- uid: 4676 - type: Windoor - components: - - pos: 52.5,-35.5 - parent: 127 - type: Transform -- uid: 4677 - type: WallReinforced - components: - - pos: 47.5,-20.5 - parent: 127 - type: Transform -- uid: 4678 - type: Grille - components: - - pos: 62.5,-25.5 - parent: 127 - type: Transform -- uid: 4679 - type: AirlockMaint - components: - - pos: 58.5,-25.5 - parent: 127 - type: Transform -- uid: 4680 - type: Rack - components: - - pos: 39.5,-36.5 - parent: 127 - type: Transform -- uid: 4681 - type: DrinkGlass - components: - - pos: 41.621273,-36.540295 - parent: 127 - type: Transform -- uid: 4682 - type: Rack - components: - - pos: 36.5,-37.5 - parent: 127 - type: Transform -- uid: 4683 - type: ClothingShoesBootsMag - components: - - pos: 36.58941,-36.52666 - parent: 127 - type: Transform -- uid: 4684 - type: CableApcExtension - components: - - pos: 33.5,-33.5 - parent: 127 - type: Transform -- uid: 4685 - type: CableApcExtension - components: - - pos: 33.5,-32.5 - parent: 127 - type: Transform -- uid: 4686 - type: BoozeDispenser - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-35.5 - parent: 127 - type: Transform -- uid: 4687 - type: AirlockCommandGlassLocked - components: - - pos: 35.5,-34.5 - parent: 127 - type: Transform -- uid: 4688 - type: Table - components: - - pos: 28.5,-26.5 - parent: 127 - type: Transform -- uid: 4689 - type: WallSolid - components: - - pos: 45.5,-31.5 - parent: 127 - type: Transform -- uid: 4690 - type: CableHV - components: - - pos: 23.5,-25.5 - parent: 127 - type: Transform -- uid: 4691 - type: CableHV - components: - - pos: 24.5,-25.5 - parent: 127 - type: Transform -- uid: 4692 - type: CableHV - components: - - pos: 25.5,-25.5 - parent: 127 - type: Transform -- uid: 4693 - type: CableHV - components: - - pos: 26.5,-25.5 - parent: 127 - type: Transform -- uid: 4694 - type: CableHV - components: - - pos: 27.5,-25.5 - parent: 127 - type: Transform -- uid: 4695 - type: CableHV - components: - - pos: 28.5,-25.5 - parent: 127 - type: Transform -- uid: 4696 - type: CableHV - components: - - pos: 29.5,-25.5 - parent: 127 - type: Transform -- uid: 4697 - type: CableHV - components: - - pos: 30.5,-25.5 - parent: 127 - type: Transform -- uid: 4698 - type: CableHV - components: - - pos: 31.5,-25.5 - parent: 127 - type: Transform -- uid: 4699 - type: CableHV - components: - - pos: 32.5,-25.5 - parent: 127 - type: Transform -- uid: 4700 - type: CableHV - components: - - pos: 33.5,-25.5 - parent: 127 - type: Transform -- uid: 4701 - type: CableHV - components: - - pos: 33.5,-26.5 - parent: 127 - type: Transform -- uid: 4702 - type: CableHV - components: - - pos: 33.5,-27.5 - parent: 127 - type: Transform -- uid: 4703 - type: CableHV - components: - - pos: 33.5,-28.5 - parent: 127 - type: Transform -- uid: 4704 - type: CableHV - components: - - pos: 33.5,-29.5 - parent: 127 - type: Transform -- uid: 4705 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-38.5 - parent: 127 - type: Transform -- uid: 4706 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-27.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4707 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-38.5 - parent: 127 - type: Transform -- uid: 4708 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -2.5,-37.5 - parent: 127 - type: Transform -- uid: 4709 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-37.5 - parent: 127 - type: Transform -- uid: 4710 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-38.5 - parent: 127 - type: Transform -- uid: 4711 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-36.5 - parent: 127 - type: Transform -- uid: 4712 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -10.5,-36.5 - parent: 127 - type: Transform -- uid: 4713 - type: CableHV - components: - - pos: -3.5,-29.5 - parent: 127 - type: Transform -- uid: 4714 - type: CableHV - components: - - pos: -5.5,-29.5 - parent: 127 - type: Transform -- uid: 4715 - type: CableHV - components: - - pos: -5.5,-30.5 - parent: 127 - type: Transform -- uid: 4716 - type: CableHV - components: - - pos: -4.5,-32.5 - parent: 127 - type: Transform -- uid: 4717 - type: CableHV - components: - - pos: -3.5,-32.5 - parent: 127 - type: Transform -- uid: 4718 - type: CableHV - components: - - pos: -2.5,-32.5 - parent: 127 - type: Transform -- uid: 4719 - type: CableHV - components: - - pos: -1.5,-32.5 - parent: 127 - type: Transform -- uid: 4720 - type: CableHV - components: - - pos: -1.5,-34.5 - parent: 127 - type: Transform -- uid: 4721 - type: CableHV - components: - - pos: -2.5,-34.5 - parent: 127 - type: Transform -- uid: 4722 - type: CableHV - components: - - pos: -3.5,-34.5 - parent: 127 - type: Transform -- uid: 4723 - type: CableHV - components: - - pos: -4.5,-34.5 - parent: 127 - type: Transform -- uid: 4724 - type: CableHV - components: - - pos: -6.5,-34.5 - parent: 127 - type: Transform -- uid: 4725 - type: CableHV - components: - - pos: -7.5,-34.5 - parent: 127 - type: Transform -- uid: 4726 - type: CableHV - components: - - pos: -8.5,-34.5 - parent: 127 - type: Transform -- uid: 4727 - type: CableHV - components: - - pos: -9.5,-34.5 - parent: 127 - type: Transform -- uid: 4728 - type: CableHV - components: - - pos: -9.5,-32.5 - parent: 127 - type: Transform -- uid: 4729 - type: CableHV - components: - - pos: -8.5,-32.5 - parent: 127 - type: Transform -- uid: 4730 - type: CableHV - components: - - pos: -7.5,-32.5 - parent: 127 - type: Transform -- uid: 4731 - type: CableHV - components: - - pos: -6.5,-32.5 - parent: 127 - type: Transform -- uid: 4732 - type: CableHV - components: - - pos: -5.5,-34.5 - parent: 127 - type: Transform -- uid: 4733 - type: CableHV - components: - - pos: -5.5,-33.5 - parent: 127 - type: Transform -- uid: 4734 - type: CableHV - components: - - pos: -5.5,-32.5 - parent: 127 - type: Transform -- uid: 4735 - type: SolarTracker - components: - - pos: -5.5,-35.5 - parent: 127 - type: Transform -- uid: 4736 - type: SolarPanel - components: - - rot: 3.141592653589793 rad - pos: -8.5,-34.5 - parent: 127 - type: Transform -- uid: 4737 - type: SolarPanel - components: - - rot: 3.141592653589793 rad - pos: -9.5,-34.5 - parent: 127 - type: Transform -- uid: 4738 - type: SolarPanel - components: - - rot: 3.141592653589793 rad - pos: -7.5,-34.5 - parent: 127 - type: Transform -- uid: 4739 - type: SolarPanel - components: - - rot: 3.141592653589793 rad - pos: -6.5,-34.5 - parent: 127 - type: Transform -- uid: 4740 - type: SolarPanel - components: - - rot: 3.141592653589793 rad - pos: -4.5,-34.5 - parent: 127 - type: Transform -- uid: 4741 - type: SolarPanel - components: - - rot: 3.141592653589793 rad - pos: -3.5,-34.5 - parent: 127 - type: Transform -- uid: 4742 - type: SolarPanel - components: - - rot: 3.141592653589793 rad - pos: -2.5,-34.5 - parent: 127 - type: Transform -- uid: 4743 - type: SolarPanel - components: - - rot: 3.141592653589793 rad - pos: -1.5,-34.5 - parent: 127 - type: Transform -- uid: 4744 - type: SolarPanel - components: - - rot: 3.141592653589793 rad - pos: -1.5,-32.5 - parent: 127 - type: Transform -- uid: 4745 - type: SolarPanel - components: - - rot: 3.141592653589793 rad - pos: -2.5,-32.5 - parent: 127 - type: Transform -- uid: 4746 - type: SolarPanel - components: - - rot: 3.141592653589793 rad - pos: -3.5,-32.5 - parent: 127 - type: Transform -- uid: 4747 - type: SolarPanel - components: - - rot: 3.141592653589793 rad - pos: -4.5,-32.5 - parent: 127 - type: Transform -- uid: 4748 - type: SolarPanel - components: - - rot: 3.141592653589793 rad - pos: -6.5,-32.5 - parent: 127 - type: Transform -- uid: 4749 - type: SolarPanel - components: - - rot: 3.141592653589793 rad - pos: -7.5,-32.5 - parent: 127 - type: Transform -- uid: 4750 - type: SolarPanel - components: - - rot: 3.141592653589793 rad - pos: -8.5,-32.5 - parent: 127 - type: Transform -- uid: 4751 - type: SolarPanel - components: - - rot: 3.141592653589793 rad - pos: -9.5,-32.5 - parent: 127 - type: Transform -- uid: 4752 - type: CrateEngineeringCableBulk - components: - - pos: 3.5,-30.5 - parent: 127 - type: Transform -- uid: 4753 - type: OxygenCanister - components: - - pos: -1.5,-28.5 - parent: 127 - type: Transform -- uid: 4754 - type: DisposalUnit - components: - - pos: 13.5,-33.5 - parent: 127 - type: Transform -- uid: 4755 - type: DisposalUnit - components: - - pos: 22.5,-33.5 - parent: 127 - type: Transform -- uid: 4756 - type: DisposalUnit - components: - - pos: 12.5,-21.5 - parent: 127 - type: Transform -- uid: 4757 - type: DisposalUnit - components: - - pos: 23.5,-13.5 - parent: 127 - type: Transform -- uid: 4758 - type: DisposalUnit - components: - - pos: 14.5,0.5 - parent: 127 - type: Transform -- uid: 4759 - type: CableApcExtension - components: - - pos: 39.5,21.5 - parent: 127 - type: Transform -- uid: 4760 - type: DisposalUnit - components: - - pos: -3.5,-17.5 - parent: 127 - type: Transform -- uid: 4761 - type: CableHV - components: - - pos: 33.5,-30.5 - parent: 127 - type: Transform -- uid: 4762 - type: CableHV - components: - - pos: 33.5,-31.5 - parent: 127 - type: Transform -- uid: 4763 - type: CableHV - components: - - pos: 34.5,-31.5 - parent: 127 - type: Transform -- uid: 4764 - type: CableHV - components: - - pos: 35.5,-31.5 - parent: 127 - type: Transform -- uid: 4765 - type: Paper - components: - - pos: 25.5,-10.5 - parent: 127 - type: Transform -- uid: 4766 - type: CableHV - components: - - pos: 36.5,-31.5 - parent: 127 - type: Transform -- uid: 4767 - type: Paper - components: - - pos: 25.5,-10.5 - parent: 127 - type: Transform -- uid: 4768 - type: CableHV - components: - - pos: 37.5,-31.5 - parent: 127 - type: Transform -- uid: 4769 - type: CableHV - components: - - pos: 38.5,-31.5 - parent: 127 - type: Transform -- uid: 4770 - type: Paper - components: - - pos: 25.5,-10.5 - parent: 127 - type: Transform -- uid: 4771 - type: CableHV - components: - - pos: 39.5,-31.5 - parent: 127 - type: Transform -- uid: 4772 - type: Paper - components: - - pos: 25.5,-10.5 - parent: 127 - type: Transform -- uid: 4773 - type: CableHV - components: - - pos: 40.5,-31.5 - parent: 127 - type: Transform -- uid: 4774 - type: Paper - components: - - pos: 25.5,-10.5 - parent: 127 - type: Transform -- uid: 4775 - type: CableHV - components: - - pos: 41.5,-31.5 - parent: 127 - type: Transform -- uid: 4776 - type: CableHV - components: - - pos: 42.5,-31.5 - parent: 127 - type: Transform -- uid: 4777 - type: Paper - components: - - pos: 25.5,-10.5 - parent: 127 - type: Transform -- uid: 4778 - type: CableHV - components: - - pos: 43.5,-31.5 - parent: 127 - type: Transform -- uid: 4779 - type: CableHV - components: - - pos: 43.5,-30.5 - parent: 127 - type: Transform -- uid: 4780 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-29.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4781 - type: PoweredSmallLight - components: - - pos: -0.5,-28.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4782 - type: CableHV - components: - - pos: 44.5,-30.5 - parent: 127 - type: Transform -- uid: 4783 - type: WarpPoint - components: - - pos: 15.5,-34.5 - parent: 127 - type: Transform - - location: evac - type: WarpPoint -- uid: 4784 - type: CableHV - components: - - pos: 45.5,-30.5 - parent: 127 - type: Transform -- uid: 4785 - type: CableHV - components: - - pos: 46.5,-30.5 - parent: 127 - type: Transform -- uid: 4786 - type: CableHV - components: - - pos: 47.5,-30.5 - parent: 127 - type: Transform -- uid: 4787 - type: CableHV - components: - - pos: 48.5,-30.5 - parent: 127 - type: Transform -- uid: 4788 - type: CableHV - components: - - pos: 49.5,-30.5 - parent: 127 - type: Transform -- uid: 4789 - type: WarpPoint - components: - - pos: 2.5,-33.5 - parent: 127 - type: Transform -- uid: 4790 - type: CableHV - components: - - pos: 50.5,-30.5 - parent: 127 - type: Transform -- uid: 4791 - type: CableHV - components: - - pos: 51.5,-30.5 - parent: 127 - type: Transform -- uid: 4792 - type: CableApcExtension - components: - - pos: 38.5,21.5 - parent: 127 - type: Transform -- uid: 4793 - type: CableApcExtension - components: - - pos: 42.5,21.5 - parent: 127 - type: Transform -- uid: 4794 - type: CableHV - components: - - pos: 52.5,-30.5 - parent: 127 - type: Transform -- uid: 4795 - type: CableApcExtension - components: - - pos: 43.5,21.5 - parent: 127 - type: Transform -- uid: 4796 - type: CableApcExtension - components: - - pos: 43.5,20.5 - parent: 127 - type: Transform -- uid: 4797 - type: CableApcExtension - components: - - pos: 43.5,19.5 - parent: 127 - type: Transform -- uid: 4798 - type: CableApcExtension - components: - - pos: 43.5,18.5 - parent: 127 - type: Transform -- uid: 4799 - type: CableHV - components: - - pos: 53.5,-30.5 - parent: 127 - type: Transform -- uid: 4800 - type: CableHV - components: - - pos: 54.5,-30.5 - parent: 127 - type: Transform -- uid: 4801 - type: CableHV - components: - - pos: 55.5,-30.5 - parent: 127 - type: Transform -- uid: 4802 - type: Poweredlight - components: - - pos: 20.5,-33.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4803 - type: CableHV - components: - - pos: 56.5,-30.5 - parent: 127 - type: Transform -- uid: 4804 - type: CableHV - components: - - pos: 56.5,-29.5 - parent: 127 - type: Transform -- uid: 4805 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-35.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4806 - type: CableHV - components: - - pos: 56.5,-28.5 - parent: 127 - type: Transform -- uid: 4807 - type: CableHV - components: - - pos: 56.5,-27.5 - parent: 127 - type: Transform -- uid: 4808 - type: CableHV - components: - - pos: 56.5,-26.5 - parent: 127 - type: Transform -- uid: 4809 - type: CableHV - components: - - pos: 56.5,-25.5 - parent: 127 - type: Transform -- uid: 4810 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-35.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4811 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-31.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4812 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-28.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4813 - type: CableHV - components: - - pos: 56.5,-24.5 - parent: 127 - type: Transform -- uid: 4814 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-30.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4815 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-30.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4816 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-26.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4817 - type: Grille - components: - - pos: 0.5,-33.5 - parent: 127 - type: Transform -- uid: 4818 - type: SMESBasic - components: - - pos: 3.5,-32.5 - parent: 127 - type: Transform -- uid: 4819 - type: SubstationBasic - components: - - pos: 1.5,-32.5 - parent: 127 - type: Transform -- uid: 4820 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-34.5 - parent: 127 - type: Transform -- uid: 4821 - type: CableHV - components: - - pos: 6.5,-34.5 - parent: 127 - type: Transform -- uid: 4822 - type: CableHV - components: - - pos: 5.5,-34.5 - parent: 127 - type: Transform -- uid: 4823 - type: CableHV - components: - - pos: 4.5,-34.5 - parent: 127 - type: Transform -- uid: 4824 - type: CableHV - components: - - pos: 3.5,-34.5 - parent: 127 - type: Transform -- uid: 4825 - type: CableHV - components: - - pos: 3.5,-33.5 - parent: 127 - type: Transform -- uid: 4826 - type: CableHV - components: - - pos: 3.5,-32.5 - parent: 127 - type: Transform -- uid: 4827 - type: CableHV - components: - - pos: 2.5,-32.5 - parent: 127 - type: Transform -- uid: 4828 - type: CableHV - components: - - pos: 1.5,-32.5 - parent: 127 - type: Transform -- uid: 4829 - type: CableMV - components: - - pos: 1.5,-32.5 - parent: 127 - type: Transform -- uid: 4830 - type: CableMV - components: - - pos: 1.5,-33.5 - parent: 127 - type: Transform -- uid: 4831 - type: CableMV - components: - - pos: 1.5,-34.5 - parent: 127 - type: Transform -- uid: 4832 - type: CableMV - components: - - pos: 0.5,-34.5 - parent: 127 - type: Transform -- uid: 4833 - type: CableApcExtension - components: - - pos: 0.5,-34.5 - parent: 127 - type: Transform -- uid: 4834 - type: CableApcExtension - components: - - pos: 1.5,-34.5 - parent: 127 - type: Transform -- uid: 4835 - type: CableApcExtension - components: - - pos: 2.5,-34.5 - parent: 127 - type: Transform -- uid: 4836 - type: CableApcExtension - components: - - pos: 2.5,-35.5 - parent: 127 - type: Transform -- uid: 4837 - type: CableApcExtension - components: - - pos: 2.5,-36.5 - parent: 127 - type: Transform -- uid: 4838 - type: CableApcExtension - components: - - pos: 2.5,-33.5 - parent: 127 - type: Transform -- uid: 4839 - type: CableApcExtension - components: - - pos: 2.5,-32.5 - parent: 127 - type: Transform -- uid: 4840 - type: CableMV - components: - - pos: 2.5,-32.5 - parent: 127 - type: Transform -- uid: 4841 - type: CableMV - components: - - pos: 0.5,-33.5 - parent: 127 - type: Transform -- uid: 4842 - type: CableMV - components: - - pos: 2.5,-31.5 - parent: 127 - type: Transform -- uid: 4843 - type: CableMV - components: - - pos: 2.5,-34.5 - parent: 127 - type: Transform -- uid: 4844 - type: CableMV - components: - - pos: 2.5,-35.5 - parent: 127 - type: Transform -- uid: 4845 - type: CableMV - components: - - pos: 2.5,-36.5 - parent: 127 - type: Transform -- uid: 4846 - type: CableMV - components: - - pos: 2.5,-37.5 - parent: 127 - type: Transform -- uid: 4847 - type: CableMV - components: - - pos: 2.5,-38.5 - parent: 127 - type: Transform -- uid: 4848 - type: HighSecCommandLocked - components: - - pos: 4.5,-34.5 - parent: 127 - type: Transform -- uid: 4849 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-37.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4850 - type: CableHV - components: - - pos: 56.5,-23.5 - parent: 127 - type: Transform -- uid: 4851 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-32.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4852 - type: CableApcExtension - components: - - pos: 43.5,17.5 - parent: 127 - type: Transform -- uid: 4853 - type: CableApcExtension - components: - - pos: 43.5,16.5 - parent: 127 - type: Transform -- uid: 4854 - type: CableApcExtension - components: - - pos: 43.5,15.5 - parent: 127 - type: Transform -- uid: 4855 - type: CableApcExtension - components: - - pos: 43.5,14.5 - parent: 127 - type: Transform -- uid: 4856 - type: CableApcExtension - components: - - pos: 43.5,13.5 - parent: 127 - type: Transform -- uid: 4857 - type: CableApcExtension - components: - - pos: 43.5,12.5 - parent: 127 - type: Transform -- uid: 4858 - type: CableApcExtension - components: - - pos: 43.5,11.5 - parent: 127 - type: Transform -- uid: 4859 - type: CableApcExtension - components: - - pos: 43.5,10.5 - parent: 127 - type: Transform -- uid: 4860 - type: CableApcExtension - components: - - pos: 43.5,9.5 - parent: 127 - type: Transform -- uid: 4861 - type: CableApcExtension - components: - - pos: 43.5,8.5 - parent: 127 - type: Transform -- uid: 4862 - type: CableApcExtension - components: - - pos: 43.5,7.5 - parent: 127 - type: Transform -- uid: 4863 - type: CableApcExtension - components: - - pos: 43.5,6.5 - parent: 127 - type: Transform -- uid: 4864 - type: CableApcExtension - components: - - pos: 43.5,5.5 - parent: 127 - type: Transform -- uid: 4865 - type: CableApcExtension - components: - - pos: 43.5,4.5 - parent: 127 - type: Transform -- uid: 4866 - type: CableApcExtension - components: - - pos: 43.5,3.5 - parent: 127 - type: Transform -- uid: 4867 - type: CableApcExtension - components: - - pos: 43.5,2.5 - parent: 127 - type: Transform -- uid: 4868 - type: CableApcExtension - components: - - pos: 41.5,22.5 - parent: 127 - type: Transform -- uid: 4869 - type: CableApcExtension - components: - - pos: 41.5,23.5 - parent: 127 - type: Transform -- uid: 4870 - type: CableApcExtension - components: - - pos: 40.5,23.5 - parent: 127 - type: Transform -- uid: 4871 - type: CableApcExtension - components: - - pos: 39.5,23.5 - parent: 127 - type: Transform -- uid: 4872 - type: CableApcExtension - components: - - pos: 39.5,24.5 - parent: 127 - type: Transform -- uid: 4873 - type: CableApcExtension - components: - - pos: 39.5,25.5 - parent: 127 - type: Transform -- uid: 4874 - type: CableApcExtension - components: - - pos: 42.5,23.5 - parent: 127 - type: Transform -- uid: 4875 - type: CableApcExtension - components: - - pos: 43.5,23.5 - parent: 127 - type: Transform -- uid: 4876 - type: CableApcExtension - components: - - pos: 43.5,24.5 - parent: 127 - type: Transform -- uid: 4877 - type: CableApcExtension - components: - - pos: 43.5,25.5 - parent: 127 - type: Transform -- uid: 4878 - type: CableApcExtension - components: - - pos: 44.5,3.5 - parent: 127 - type: Transform -- uid: 4879 - type: CableApcExtension - components: - - pos: 45.5,3.5 - parent: 127 - type: Transform -- uid: 4880 - type: CableApcExtension - components: - - pos: 46.5,3.5 - parent: 127 - type: Transform -- uid: 4881 - type: CableApcExtension - components: - - pos: 47.5,3.5 - parent: 127 - type: Transform -- uid: 4882 - type: CableApcExtension - components: - - pos: 48.5,3.5 - parent: 127 - type: Transform -- uid: 4883 - type: CableApcExtension - components: - - pos: 49.5,3.5 - parent: 127 - type: Transform -- uid: 4884 - type: CableApcExtension - components: - - pos: 49.5,4.5 - parent: 127 - type: Transform -- uid: 4885 - type: CableApcExtension - components: - - pos: 49.5,5.5 - parent: 127 - type: Transform -- uid: 4886 - type: CableApcExtension - components: - - pos: 49.5,6.5 - parent: 127 - type: Transform -- uid: 4887 - type: CableApcExtension - components: - - pos: 49.5,7.5 - parent: 127 - type: Transform -- uid: 4888 - type: CableApcExtension - components: - - pos: 49.5,8.5 - parent: 127 - type: Transform -- uid: 4889 - type: CableApcExtension - components: - - pos: 49.5,9.5 - parent: 127 - type: Transform -- uid: 4890 - type: CableApcExtension - components: - - pos: 49.5,10.5 - parent: 127 - type: Transform -- uid: 4891 - type: CableApcExtension - components: - - pos: 49.5,11.5 - parent: 127 - type: Transform -- uid: 4892 - type: CableApcExtension - components: - - pos: 49.5,12.5 - parent: 127 - type: Transform -- uid: 4893 - type: CableApcExtension - components: - - pos: 49.5,13.5 - parent: 127 - type: Transform -- uid: 4894 - type: CableApcExtension - components: - - pos: 49.5,14.5 - parent: 127 - type: Transform -- uid: 4895 - type: CableApcExtension - components: - - pos: 49.5,15.5 - parent: 127 - type: Transform -- uid: 4896 - type: CableApcExtension - components: - - pos: 49.5,16.5 - parent: 127 - type: Transform -- uid: 4897 - type: CableApcExtension - components: - - pos: 49.5,17.5 - parent: 127 - type: Transform -- uid: 4898 - type: CableApcExtension - components: - - pos: 49.5,18.5 - parent: 127 - type: Transform -- uid: 4899 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -10.5,-29.5 - parent: 127 - type: Transform -- uid: 4900 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4901 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4902 - type: WallReinforced - components: - - pos: 49.5,18.5 - parent: 127 - type: Transform -- uid: 4903 - type: CableApcExtension - components: - - pos: 45.5,21.5 - parent: 127 - type: Transform -- uid: 4904 - type: CableApcExtension - components: - - pos: 45.5,20.5 - parent: 127 - type: Transform -- uid: 4905 - type: CableApcExtension - components: - - pos: 45.5,19.5 - parent: 127 - type: Transform -- uid: 4906 - type: CableApcExtension - components: - - pos: 45.5,18.5 - parent: 127 - type: Transform -- uid: 4907 - type: CableApcExtension - components: - - pos: 45.5,17.5 - parent: 127 - type: Transform -- uid: 4908 - type: CableApcExtension - components: - - pos: 45.5,16.5 - parent: 127 - type: Transform -- uid: 4909 - type: CableApcExtension - components: - - pos: 45.5,15.5 - parent: 127 - type: Transform -- uid: 4910 - type: CableApcExtension - components: - - pos: 45.5,14.5 - parent: 127 - type: Transform -- uid: 4911 - type: CableApcExtension - components: - - pos: 45.5,13.5 - parent: 127 - type: Transform -- uid: 4912 - type: CableApcExtension - components: - - pos: 45.5,12.5 - parent: 127 - type: Transform -- uid: 4913 - type: CableApcExtension - components: - - pos: 45.5,11.5 - parent: 127 - type: Transform -- uid: 4914 - type: CableApcExtension - components: - - pos: 45.5,10.5 - parent: 127 - type: Transform -- uid: 4915 - type: CableApcExtension - components: - - pos: 45.5,9.5 - parent: 127 - type: Transform -- uid: 4916 - type: GasPipeStraight - components: - - pos: 24.5,-0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4917 - type: GasPipeStraight - components: - - pos: 24.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4918 - type: GasPipeStraight - components: - - pos: 25.5,-0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4919 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4920 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4921 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4922 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4923 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4924 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 25.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4925 - type: GasPipeStraight - components: - - pos: 25.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4926 - type: GasPipeStraight - components: - - pos: 25.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4927 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4928 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 24.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4929 - type: GasPipeTJunction - components: - - pos: 22.5,1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4930 - type: GasPipeTJunction - components: - - pos: 21.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4931 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4932 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4933 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4934 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4935 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4936 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4937 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4938 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4939 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4940 - type: GasPipeStraight - components: - - pos: 21.5,-6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4941 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4942 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4943 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4944 - type: GasPipeTJunction - components: - - pos: 23.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4945 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4946 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4947 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4948 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4949 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4950 - type: GasPipeStraight - components: - - pos: 30.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4951 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4952 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4953 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4954 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4955 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4956 - type: GasPipeBend - components: - - pos: 30.5,-1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4957 - type: GasPipeBend - components: - - pos: 29.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4958 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 29.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4959 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 30.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4960 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4961 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4962 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4963 - type: GasPipeStraight - components: - - pos: 33.5,-3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4964 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4965 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4966 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4967 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4968 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4969 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 39.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4970 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4971 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-7.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4972 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4973 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -11.5,-7.5 - parent: 127 - type: Transform -- uid: 4974 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4975 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 40.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4976 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4977 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4978 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4979 - type: GasPipeTJunction - components: - - pos: 36.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4980 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4981 - type: GasPipeStraight - components: - - pos: 33.5,-4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4982 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4983 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 41.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4984 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 40.5,-8.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4985 - type: GasPipeBend - components: - - pos: 41.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4986 - type: ClosetJanitorFilled - components: - - pos: -8.5,-11.5 - parent: 127 - type: Transform - - containers: - entity_storage: !type:Container - ents: - - 7157 - type: ContainerContainer -- uid: 4987 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4988 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4989 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4990 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4991 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4992 - type: GasVentPump - components: - - pos: 40.5,-1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4993 - type: GasVentScrubber - components: - - pos: 39.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4994 - type: GasVentScrubber - components: - - pos: 33.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4995 - type: GasVentPump - components: - - pos: 34.5,-1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4996 - type: GasPipeStraight - components: - - pos: 33.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 4997 - type: GasPipeStraight - components: - - pos: 34.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4998 - type: GasPipeStraight - components: - - pos: 34.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 4999 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 34.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5000 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 33.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5001 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-12.5 - parent: 127 - type: Transform -- uid: 5002 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5003 - type: GasPipeStraight - components: - - pos: 22.5,0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5004 - type: GasPipeStraight - components: - - pos: 22.5,-0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5005 - type: GasPipeStraight - components: - - pos: 22.5,-1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5006 - type: GasPipeStraight - components: - - pos: 22.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5007 - type: GasPipeStraight - components: - - pos: 22.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5008 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5009 - type: GasPipeStraight - components: - - pos: 22.5,-5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5010 - type: GasPipeStraight - components: - - pos: 22.5,-6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5011 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5012 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5013 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5014 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5015 - type: GasPipeTJunction - components: - - pos: 19.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5016 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5017 - type: GasPipeFourway - components: - - pos: 22.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5018 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-10.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5019 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-7.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5020 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-8.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5021 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5022 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-10.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5023 - type: GasPipeStraight - components: - - pos: 22.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5024 - type: GasPipeStraight - components: - - pos: 22.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5025 - type: GasPipeStraight - components: - - pos: 22.5,-9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5026 - type: GasPipeStraight - components: - - pos: 22.5,-10.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5027 - type: GasPipeStraight - components: - - pos: 19.5,-5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5028 - type: GasPipeStraight - components: - - pos: 19.5,-6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5029 - type: GasPipeStraight - components: - - pos: 18.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5030 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 18.5,-9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5031 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-10.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5032 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5033 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5034 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-10.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5035 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-12.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5036 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-13.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5037 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-13.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5038 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-12.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5039 - type: GasPipeStraight - components: - - pos: 21.5,-12.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5040 - type: GasPipeStraight - components: - - pos: 21.5,-11.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5041 - type: GasPipeStraight - components: - - pos: 22.5,-11.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5042 - type: GasPipeStraight - components: - - pos: 22.5,-13.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5043 - type: GasPipeStraight - components: - - pos: 35.5,-6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5044 - type: GasPipeStraight - components: - - pos: 36.5,-5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5045 - type: GasPipeStraight - components: - - pos: 36.5,-6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5046 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 36.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5047 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 35.5,-7.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5048 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-7.5 - parent: 127 - type: Transform -- uid: 5049 - type: RandomFoodMeal - components: - - pos: 16.5,-5.5 - parent: 127 - type: Transform -- uid: 5050 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 127 - type: Transform -- uid: 5051 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5052 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5053 - type: CableApcExtension - components: - - pos: 14.5,-26.5 - parent: 127 - type: Transform -- uid: 5054 - type: CableApcExtension - components: - - pos: 14.5,-25.5 - parent: 127 - type: Transform -- uid: 5055 - type: CableApcExtension - components: - - pos: 15.5,-25.5 - parent: 127 - type: Transform -- uid: 5056 - type: CableApcExtension - components: - - pos: 15.5,-21.5 - parent: 127 - type: Transform -- uid: 5057 - type: CableApcExtension - components: - - pos: 15.5,-22.5 - parent: 127 - type: Transform -- uid: 5058 - type: CableApcExtension - components: - - pos: 10.5,-22.5 - parent: 127 - type: Transform -- uid: 5059 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-15.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5060 - type: CableHV - components: - - pos: 56.5,-22.5 - parent: 127 - type: Transform -- uid: 5061 - type: CableHV - components: - - pos: 57.5,-22.5 - parent: 127 - type: Transform -- uid: 5062 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5063 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-14.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5064 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-15.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5065 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-16.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5066 - type: CableHV - components: - - pos: 30.5,-12.5 - parent: 127 - type: Transform -- uid: 5067 - type: CableHV - components: - - pos: 31.5,-12.5 - parent: 127 - type: Transform -- uid: 5068 - type: CableHV - components: - - pos: 32.5,-12.5 - parent: 127 - type: Transform -- uid: 5069 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5070 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-18.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5071 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5072 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5073 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-18.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5074 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-18.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5075 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5076 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-18.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5077 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5078 - type: CableHV - components: - - pos: 33.5,-12.5 - parent: 127 - type: Transform -- uid: 5079 - type: CableHV - components: - - pos: 34.5,-12.5 - parent: 127 - type: Transform -- uid: 5080 - type: CableHV - components: - - pos: 35.5,-12.5 - parent: 127 - type: Transform -- uid: 5081 - type: CableHV - components: - - pos: 36.5,-12.5 - parent: 127 - type: Transform -- uid: 5082 - type: CableHV - components: - - pos: 37.5,-12.5 - parent: 127 - type: Transform -- uid: 5083 - type: CableHV - components: - - pos: 38.5,-12.5 - parent: 127 - type: Transform -- uid: 5084 - type: CableMV - components: - - pos: 37.5,-12.5 - parent: 127 - type: Transform -- uid: 5085 - type: CableMV - components: - - pos: 37.5,-13.5 - parent: 127 - type: Transform -- uid: 5086 - type: CableMV - components: - - pos: 37.5,-14.5 - parent: 127 - type: Transform -- uid: 5087 - type: CableMV - components: - - pos: 37.5,-15.5 - parent: 127 - type: Transform -- uid: 5088 - type: CableMV - components: - - pos: 37.5,-16.5 - parent: 127 - type: Transform -- uid: 5089 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5090 - type: CableMV - components: - - pos: 37.5,-17.5 - parent: 127 - type: Transform -- uid: 5091 - type: CableMV - components: - - pos: 37.5,-18.5 - parent: 127 - type: Transform -- uid: 5092 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-20.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5093 - type: CableMV - components: - - pos: 37.5,-19.5 - parent: 127 - type: Transform -- uid: 5094 - type: WallReinforced - components: - - pos: 59.5,-21.5 - parent: 127 - type: Transform -- uid: 5095 - type: WallReinforced - components: - - pos: 59.5,-22.5 - parent: 127 - type: Transform -- uid: 5096 - type: AirlockEngineeringLocked - components: - - pos: 57.5,-22.5 - parent: 127 - type: Transform -- uid: 5097 - type: CableMV - components: - - pos: 58.5,-22.5 - parent: 127 - type: Transform -- uid: 5098 - type: CableMV - components: - - pos: 57.5,-22.5 - parent: 127 - type: Transform -- uid: 5099 - type: CableMV - components: - - pos: 56.5,-22.5 - parent: 127 - type: Transform -- uid: 5100 - type: CableMV - components: - - pos: 56.5,-23.5 - parent: 127 - type: Transform -- uid: 5101 - type: CableMV - components: - - pos: 56.5,-24.5 - parent: 127 - type: Transform -- uid: 5102 - type: CableMV - components: - - pos: 56.5,-25.5 - parent: 127 - type: Transform -- uid: 5103 - type: CableMV - components: - - pos: 56.5,-26.5 - parent: 127 - type: Transform -- uid: 5104 - type: CableMV - components: - - pos: 56.5,-27.5 - parent: 127 - type: Transform -- uid: 5105 - type: CableMV - components: - - pos: 56.5,-28.5 - parent: 127 - type: Transform -- uid: 5106 - type: CableMV - components: - - pos: 56.5,-29.5 - parent: 127 - type: Transform -- uid: 5107 - type: CableMV - components: - - pos: 56.5,-30.5 - parent: 127 - type: Transform -- uid: 5108 - type: CableMV - components: - - pos: 55.5,-30.5 - parent: 127 - type: Transform -- uid: 5109 - type: CableMV - components: - - pos: 54.5,-30.5 - parent: 127 - type: Transform -- uid: 5110 - type: CableMV - components: - - pos: 53.5,-30.5 - parent: 127 - type: Transform -- uid: 5111 - type: CableMV - components: - - pos: 52.5,-30.5 - parent: 127 - type: Transform -- uid: 5112 - type: CableMV - components: - - pos: 51.5,-30.5 - parent: 127 - type: Transform -- uid: 5113 - type: CableMV - components: - - pos: 50.5,-30.5 - parent: 127 - type: Transform -- uid: 5114 - type: CableMV - components: - - pos: 50.5,-29.5 - parent: 127 - type: Transform -- uid: 5115 - type: CableMV - components: - - pos: 50.5,-28.5 - parent: 127 - type: Transform -- uid: 5116 - type: APCBasic - components: - - pos: 50.5,-28.5 - parent: 127 - type: Transform -- uid: 5117 - type: CableApcExtension - components: - - pos: 50.5,-28.5 - parent: 127 - type: Transform -- uid: 5118 - type: CableApcExtension - components: - - pos: 50.5,-29.5 - parent: 127 - type: Transform -- uid: 5119 - type: CableApcExtension - components: - - pos: 49.5,-29.5 - parent: 127 - type: Transform -- uid: 5120 - type: CableApcExtension - components: - - pos: 48.5,-29.5 - parent: 127 - type: Transform -- uid: 5121 - type: CableApcExtension - components: - - pos: 47.5,-29.5 - parent: 127 - type: Transform -- uid: 5122 - type: CableApcExtension - components: - - pos: 46.5,-29.5 - parent: 127 - type: Transform -- uid: 5123 - type: CableApcExtension - components: - - pos: 45.5,-29.5 - parent: 127 - type: Transform -- uid: 5124 - type: CableApcExtension - components: - - pos: 44.5,-29.5 - parent: 127 - type: Transform -- uid: 5125 - type: CableApcExtension - components: - - pos: 43.5,-29.5 - parent: 127 - type: Transform -- uid: 5126 - type: CableApcExtension - components: - - pos: 42.5,-29.5 - parent: 127 - type: Transform -- uid: 5127 - type: CableApcExtension - components: - - pos: 46.5,-30.5 - parent: 127 - type: Transform -- uid: 5128 - type: CableApcExtension - components: - - pos: 46.5,-31.5 - parent: 127 - type: Transform -- uid: 5129 - type: CableApcExtension - components: - - pos: 46.5,-32.5 - parent: 127 - type: Transform -- uid: 5130 - type: CableApcExtension - components: - - pos: 46.5,-33.5 - parent: 127 - type: Transform -- uid: 5131 - type: CableApcExtension - components: - - pos: 46.5,-34.5 - parent: 127 - type: Transform -- uid: 5132 - type: CableApcExtension - components: - - pos: 46.5,-35.5 - parent: 127 - type: Transform -- uid: 5133 - type: CableApcExtension - components: - - pos: 46.5,-36.5 - parent: 127 - type: Transform -- uid: 5134 - type: CableApcExtension - components: - - pos: 46.5,-37.5 - parent: 127 - type: Transform -- uid: 5135 - type: CableApcExtension - components: - - pos: 47.5,-35.5 - parent: 127 - type: Transform -- uid: 5136 - type: CableApcExtension - components: - - pos: 45.5,-35.5 - parent: 127 - type: Transform -- uid: 5137 - type: CableApcExtension - components: - - pos: 44.5,-35.5 - parent: 127 - type: Transform -- uid: 5138 - type: CableApcExtension - components: - - pos: 43.5,-35.5 - parent: 127 - type: Transform -- uid: 5139 - type: CableApcExtension - components: - - pos: 42.5,-35.5 - parent: 127 - type: Transform -- uid: 5140 - type: CableApcExtension - components: - - pos: 47.5,-37.5 - parent: 127 - type: Transform -- uid: 5141 - type: CableApcExtension - components: - - pos: 48.5,-37.5 - parent: 127 - type: Transform -- uid: 5142 - type: CableApcExtension - components: - - pos: 49.5,-37.5 - parent: 127 - type: Transform -- uid: 5143 - type: CableApcExtension - components: - - pos: 50.5,-37.5 - parent: 127 - type: Transform -- uid: 5144 - type: CableApcExtension - components: - - pos: 51.5,-37.5 - parent: 127 - type: Transform -- uid: 5145 - type: CableApcExtension - components: - - pos: 52.5,-37.5 - parent: 127 - type: Transform -- uid: 5146 - type: CableApcExtension - components: - - pos: 52.5,-36.5 - parent: 127 - type: Transform -- uid: 5147 - type: CableApcExtension - components: - - pos: 52.5,-35.5 - parent: 127 - type: Transform -- uid: 5148 - type: CableApcExtension - components: - - pos: 52.5,-34.5 - parent: 127 - type: Transform -- uid: 5149 - type: CableApcExtension - components: - - pos: 52.5,-33.5 - parent: 127 - type: Transform -- uid: 5150 - type: CableApcExtension - components: - - pos: 53.5,-37.5 - parent: 127 - type: Transform -- uid: 5151 - type: CableApcExtension - components: - - pos: 54.5,-37.5 - parent: 127 - type: Transform -- uid: 5152 - type: CableApcExtension - components: - - pos: 55.5,-37.5 - parent: 127 - type: Transform -- uid: 5153 - type: CableApcExtension - components: - - pos: 56.5,-37.5 - parent: 127 - type: Transform -- uid: 5154 - type: CableApcExtension - components: - - pos: 57.5,-37.5 - parent: 127 - type: Transform -- uid: 5155 - type: CableApcExtension - components: - - pos: 51.5,-29.5 - parent: 127 - type: Transform -- uid: 5156 - type: CableApcExtension - components: - - pos: 52.5,-29.5 - parent: 127 - type: Transform -- uid: 5157 - type: CableApcExtension - components: - - pos: 53.5,-29.5 - parent: 127 - type: Transform -- uid: 5158 - type: CableApcExtension - components: - - pos: 54.5,-29.5 - parent: 127 - type: Transform -- uid: 5159 - type: CableApcExtension - components: - - pos: 55.5,-29.5 - parent: 127 - type: Transform -- uid: 5160 - type: CableApcExtension - components: - - pos: 55.5,-30.5 - parent: 127 - type: Transform -- uid: 5161 - type: CableApcExtension - components: - - pos: 55.5,-31.5 - parent: 127 - type: Transform -- uid: 5162 - type: CableApcExtension - components: - - pos: 55.5,-32.5 - parent: 127 - type: Transform -- uid: 5163 - type: CableApcExtension - components: - - pos: 55.5,-33.5 - parent: 127 - type: Transform -- uid: 5164 - type: CableApcExtension - components: - - pos: 55.5,-28.5 - parent: 127 - type: Transform -- uid: 5165 - type: CableApcExtension - components: - - pos: 55.5,-27.5 - parent: 127 - type: Transform -- uid: 5166 - type: CableApcExtension - components: - - pos: 55.5,-26.5 - parent: 127 - type: Transform -- uid: 5167 - type: CableApcExtension - components: - - pos: 55.5,-25.5 - parent: 127 - type: Transform -- uid: 5168 - type: CableApcExtension - components: - - pos: 56.5,-25.5 - parent: 127 - type: Transform -- uid: 5169 - type: CableApcExtension - components: - - pos: 55.5,-24.5 - parent: 127 - type: Transform -- uid: 5170 - type: CableApcExtension - components: - - pos: 55.5,-23.5 - parent: 127 - type: Transform -- uid: 5171 - type: CableApcExtension - components: - - pos: 55.5,-22.5 - parent: 127 - type: Transform -- uid: 5172 - type: CableApcExtension - components: - - pos: 55.5,-21.5 - parent: 127 - type: Transform -- uid: 5173 - type: CableApcExtension - components: - - pos: 55.5,-20.5 - parent: 127 - type: Transform -- uid: 5174 - type: CableApcExtension - components: - - pos: 55.5,-19.5 - parent: 127 - type: Transform -- uid: 5175 - type: CableApcExtension - components: - - pos: 55.5,-18.5 - parent: 127 - type: Transform -- uid: 5176 - type: CableApcExtension - components: - - pos: 55.5,-17.5 - parent: 127 - type: Transform -- uid: 5177 - type: CableApcExtension - components: - - pos: 55.5,-16.5 - parent: 127 - type: Transform -- uid: 5178 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-30.5 - parent: 127 - type: Transform -- uid: 5179 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-27.5 - parent: 127 - type: Transform -- uid: 5180 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-26.5 - parent: 127 - type: Transform -- uid: 5181 - type: PottedPlantRandom - components: - - pos: 59.5,-34.5 - parent: 127 - type: Transform -- uid: 5182 - type: SubstationBasic - components: - - pos: 58.5,-22.5 - parent: 127 - type: Transform -- uid: 5183 - type: SubstationBasic - components: - - pos: 39.5,-12.5 - parent: 127 - type: Transform -- uid: 5184 - type: AirlockHeadOfSecurityLocked - components: - - pos: 32.5,-16.5 - parent: 127 - type: Transform -- uid: 5185 - type: HighSecArmoryLocked - components: - - pos: 38.5,-25.5 - parent: 127 - type: Transform -- uid: 5186 - type: Grille - components: - - pos: 42.5,-21.5 - parent: 127 - type: Transform -- uid: 5187 - type: Grille - components: - - pos: 43.5,-21.5 - parent: 127 - type: Transform -- uid: 5188 - type: Grille - components: - - pos: 44.5,-21.5 - parent: 127 - type: Transform -- uid: 5189 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-22.5 - parent: 127 - type: Transform -- uid: 5190 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-22.5 - parent: 127 - type: Transform -- uid: 5191 - type: Table - components: - - pos: 33.5,-21.5 - parent: 127 - type: Transform -- uid: 5192 - type: Table - components: - - pos: 35.5,-22.5 - parent: 127 - type: Transform -- uid: 5193 - type: Table - components: - - pos: 35.5,-21.5 - parent: 127 - type: Transform -- uid: 5194 - type: LockerHeadOfSecurityFilled - components: - - pos: 33.5,-15.5 - parent: 127 - type: Transform - - containers: - entity_storage: !type:Container - ents: - - 3777 - type: ContainerContainer -- uid: 5195 - type: AirlockBrigGlassLocked - components: - - pos: 23.5,-20.5 - parent: 127 - type: Transform -- uid: 5196 - type: AirlockBrigGlassLocked - components: - - pos: 23.5,-19.5 - parent: 127 - type: Transform -- uid: 5197 - type: AirlockBrigGlassLocked - components: - - pos: 26.5,-19.5 - parent: 127 - type: Transform -- uid: 5198 - type: AirlockBrigGlassLocked - components: - - pos: 26.5,-20.5 - parent: 127 - type: Transform -- uid: 5199 - type: LockerEvidence - components: - - pos: 27.5,-18.5 - parent: 127 - type: Transform -- uid: 5200 - type: LockerEvidence - components: - - pos: 28.5,-18.5 - parent: 127 - type: Transform -- uid: 5201 - type: Table - components: - - pos: 29.5,-18.5 - parent: 127 - type: Transform -- uid: 5202 - type: LockerSecurityFilled - components: - - pos: 33.5,-18.5 - parent: 127 - type: Transform -- uid: 5203 - type: LockerSecurityFilled - components: - - pos: 34.5,-18.5 - parent: 127 - type: Transform -- uid: 5204 - type: LockerSecurityFilled - components: - - pos: 35.5,-18.5 - parent: 127 - type: Transform -- uid: 5205 - type: DeployableBarrier - components: - - pos: 41.5,-18.5 - parent: 127 - type: Transform -- uid: 5206 - type: DeployableBarrier - components: - - pos: 42.5,-18.5 - parent: 127 - type: Transform -- uid: 5207 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5208 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5209 - type: AnomalyScanner - components: - - pos: -25.62664,-2.4296055 - parent: 127 - type: Transform -- uid: 5210 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5211 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5212 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5213 - type: CableApcExtension - components: - - pos: -20.5,0.5 - parent: 127 - type: Transform -- uid: 5214 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5215 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 20.5,1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5216 - type: GasPipeBend - components: - - pos: 20.5,3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5217 - type: Table - components: - - pos: 44.5,-18.5 - parent: 127 - type: Transform -- uid: 5218 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5219 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5220 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5221 - type: GasPipeTJunction - components: - - pos: 18.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5222 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5223 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5224 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5225 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-21.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5226 - type: GasPipeTJunction - components: - - pos: 17.5,-21.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5227 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-21.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5228 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-21.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5229 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5230 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5231 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5232 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-24.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5233 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-25.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5234 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-26.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5235 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-27.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5236 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-28.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5237 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5238 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-23.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5239 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-24.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5240 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-25.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5241 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-26.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5242 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-27.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5243 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-28.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5244 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-29.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5245 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-30.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5246 - type: GasPipeTJunction - components: - - pos: 16.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5247 - type: GasPipeTJunction - components: - - pos: 15.5,-21.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5248 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-21.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5249 - type: Table - components: - - pos: 44.5,-19.5 - parent: 127 - type: Transform -- uid: 5250 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 18.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5251 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5252 - type: GasPipeFourway - components: - - pos: 16.5,-29.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5253 - type: GasPipeFourway - components: - - pos: 15.5,-30.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5254 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-29.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5255 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-29.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5256 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-29.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5257 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-29.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5258 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-29.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5259 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-30.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5260 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-30.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5261 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-30.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5262 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-30.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5263 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 10.5,-29.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5264 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-27.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5265 - type: GasVentPump - components: - - pos: 10.5,-26.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5266 - type: GasVentScrubber - components: - - pos: 9.5,-26.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5267 - type: CarpetChapel - components: - - pos: 9.5,-30.5 - parent: 127 - type: Transform -- uid: 5268 - type: CarpetChapel - components: - - pos: 11.5,-30.5 - parent: 127 - type: Transform -- uid: 5269 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-29.5 - parent: 127 - type: Transform -- uid: 5270 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-29.5 - parent: 127 - type: Transform -- uid: 5271 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 12.5,-29.5 - parent: 127 - type: Transform -- uid: 5272 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 10.5,-29.5 - parent: 127 - type: Transform -- uid: 5273 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-30.5 - parent: 127 - type: Transform -- uid: 5274 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-30.5 - parent: 127 - type: Transform -- uid: 5275 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-29.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5276 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-30.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5277 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-30.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5278 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-29.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5279 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-30.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5280 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-27.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5281 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-28.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5282 - type: GasPipeStraight - components: - - pos: 16.5,-31.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5283 - type: GasPipeStraight - components: - - pos: 16.5,-32.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5284 - type: GasPipeStraight - components: - - pos: 16.5,-33.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5285 - type: GasPipeStraight - components: - - pos: 15.5,-31.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5286 - type: GasPipeStraight - components: - - pos: 15.5,-32.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5287 - type: GasPipeFourway - components: - - pos: 15.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5288 - type: GasPipeFourway - components: - - pos: 16.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5289 - type: GasPipeStraight - components: - - pos: 15.5,-34.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5290 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 16.5,-35.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5291 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 15.5,-35.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5292 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5293 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5294 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5295 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5296 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5297 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5298 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5299 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5300 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5301 - type: GasPipeTJunction - components: - - pos: 17.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5302 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5303 - type: GasPipeTJunction - components: - - pos: 11.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5304 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5305 - type: GasPipeTJunction - components: - - pos: 9.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5306 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5307 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5308 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5309 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5310 - type: Table - components: - - pos: 44.5,-20.5 - parent: 127 - type: Transform -- uid: 5311 - type: SpawnVehicleSecway - components: - - pos: 36.5,-18.5 - parent: 127 - type: Transform -- uid: 5312 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5313 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5314 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5315 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5316 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5317 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5318 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5319 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5320 - type: CrateSecurityArmor - components: - - pos: 41.5,-20.5 - parent: 127 - type: Transform -- uid: 5321 - type: LockerSyndicatePersonal - components: - - pos: 38.5,-28.5 - parent: 127 - type: Transform - - containers: - entity_storage: !type:Container - ents: - - 6268 - - 6267 - - 6266 - type: ContainerContainer -- uid: 5322 - type: SignArmory - components: - - pos: 37.5,-24.5 - parent: 127 - type: Transform -- uid: 5323 - type: SignArmory - components: - - pos: 40.5,-20.5 - parent: 127 - type: Transform -- uid: 5324 - type: SignSecureMed - components: - - pos: 39.5,-24.5 - parent: 127 - type: Transform -- uid: 5325 - type: ClosetBombFilled - components: - - pos: 42.5,-20.5 - parent: 127 - type: Transform -- uid: 5326 - type: SpawnVehicleSecway - components: - - pos: 37.5,-18.5 - parent: 127 - type: Transform -- uid: 5327 - type: VehicleKeySecway - components: - - pos: 44.22184,-20.156595 - parent: 127 - type: Transform -- uid: 5328 - type: Table - components: - - pos: 39.5,-20.5 - parent: 127 - type: Transform -- uid: 5329 - type: Table - components: - - pos: 39.5,-21.5 - parent: 127 - type: Transform -- uid: 5330 - type: VehicleKeySecway - components: - - pos: 44.081215,-20.26597 - parent: 127 - type: Transform -- uid: 5331 - type: GasPipeTJunction - components: - - pos: 19.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5332 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5333 - type: VendingMachineSec - components: - - flags: SessionSpecific - type: MetaData - - pos: 39.5,-18.5 - parent: 127 - type: Transform -- uid: 5334 - type: Table - components: - - pos: 24.5,-18.5 - parent: 127 - type: Transform -- uid: 5335 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-35.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5336 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-36.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5337 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-37.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5338 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-35.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5339 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-36.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5340 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-37.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5341 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-35.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5342 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-36.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5343 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-37.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5344 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-35.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5345 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-36.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5346 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-37.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5347 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 11.5,-38.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5348 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 9.5,-38.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5349 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 17.5,-38.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5350 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 19.5,-38.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5351 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5352 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5353 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5354 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5355 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5356 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5357 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5358 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5359 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5360 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5361 - type: GasPipeTJunction - components: - - pos: 7.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5362 - type: GasPipeTJunction - components: - - pos: 6.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5363 - type: GasPipeStraight - components: - - pos: 6.5,-34.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5364 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 6.5,-35.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5365 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5366 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 7.5,-35.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5367 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5368 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-38.5 - parent: 127 - type: Transform -- uid: 5369 - type: GrilleBroken - components: - - pos: -1.5,-39.5 - parent: 127 - type: Transform -- uid: 5370 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-40.5 - parent: 127 - type: Transform -- uid: 5371 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-40.5 - parent: 127 - type: Transform -- uid: 5372 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-40.5 - parent: 127 - type: Transform -- uid: 5373 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-40.5 - parent: 127 - type: Transform -- uid: 5374 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-40.5 - parent: 127 - type: Transform -- uid: 5375 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-40.5 - parent: 127 - type: Transform -- uid: 5376 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-40.5 - parent: 127 - type: Transform -- uid: 5377 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-40.5 - parent: 127 - type: Transform -- uid: 5378 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-40.5 - parent: 127 - type: Transform -- uid: 5379 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -0.5,-40.5 - parent: 127 - type: Transform -- uid: 5380 - type: Table - components: - - pos: 25.5,-18.5 - parent: 127 - type: Transform -- uid: 5381 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-20.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5382 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5383 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 9.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5384 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 10.5,-21.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5385 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5386 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5387 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5388 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5389 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-21.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5390 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5391 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-21.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5392 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-20.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5393 - type: GasPipeStraight - components: - - pos: 9.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5394 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-19.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5395 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-18.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5396 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5397 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-18.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5398 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5399 - type: GasPipeStraight - components: - - pos: 10.5,-17.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5400 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5401 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5402 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-15.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5403 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-15.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5404 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-16.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5405 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5406 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5407 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-20.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5408 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-21.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5409 - type: GasPipeTJunction - components: - - pos: 5.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5410 - type: GasPipeTJunction - components: - - pos: 4.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5411 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5412 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5413 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5414 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5415 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5416 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-17.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5417 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-18.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5418 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-18.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5419 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5420 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5421 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 2.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5422 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5423 - type: GasPipeStraight - components: - - pos: 3.5,-16.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5424 - type: GasPipeStraight - components: - - pos: 3.5,-15.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5425 - type: GasPipeStraight - components: - - pos: 2.5,-15.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5426 - type: GasPipeStraight - components: - - pos: 2.5,-14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5427 - type: GasPipeStraight - components: - - pos: 3.5,-14.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5428 - type: GasPipeStraight - components: - - pos: 2.5,-13.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5429 - type: GasPipeStraight - components: - - pos: 3.5,-13.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5430 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5431 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 4.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5432 - type: GasVentScrubber - components: - - pos: 2.5,-12.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5433 - type: GasVentPump - components: - - pos: 3.5,-12.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5434 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 5.5,-19.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5435 - type: GasPipeFourway - components: - - pos: 0.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5436 - type: GasPipeTJunction - components: - - pos: 1.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5437 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5438 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-17.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5439 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-18.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5440 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-18.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5441 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-19.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5442 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5443 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -0.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5444 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5445 - type: GasPipeStraight - components: - - pos: 0.5,-16.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5446 - type: GasPipeStraight - components: - - pos: 0.5,-15.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5447 - type: GasPipeStraight - components: - - pos: -0.5,-15.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5448 - type: GasPipeStraight - components: - - pos: -0.5,-14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5449 - type: GasPipeStraight - components: - - pos: 0.5,-14.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5450 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 0.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5451 - type: GasVentPump - components: - - pos: 0.5,-13.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5452 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 1.5,-20.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5453 - type: GasVentScrubber - components: - - pos: -0.5,-13.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5454 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5455 - type: GasVentScrubber - components: - - pos: -2.5,-13.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5456 - type: GasVentPump - components: - - pos: -3.5,-13.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5457 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5458 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5459 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5460 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -2.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5461 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -2.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5462 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -3.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5463 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-16.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5464 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-15.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5465 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-14.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5466 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-15.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5467 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -10.5,-10.5 - parent: 127 - type: Transform -- uid: 5468 - type: GasVentPump - components: - - pos: -2.5,-16.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5469 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5470 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5471 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-12.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5472 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5473 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-14.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5474 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-13.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5475 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-12.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5476 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-11.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5477 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-13.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5478 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5479 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5480 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5481 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-13.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5482 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5483 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-12.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5484 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-10.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5485 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5486 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-10.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5487 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-10.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5488 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5489 - type: GasPipeStraight - components: - - pos: 9.5,-9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5490 - type: GasPipeStraight - components: - - pos: 10.5,-10.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5491 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-10.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5492 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5493 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5494 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5495 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5496 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5497 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-8.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5498 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-7.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5499 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5500 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5501 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5502 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5503 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5504 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5505 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5506 - type: GasPipeStraight - components: - - pos: 10.5,-3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5507 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5508 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5509 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5510 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5511 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5512 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5513 - type: GasPipeTJunction - components: - - pos: 13.5,-4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5514 - type: GasPipeTJunction - components: - - pos: 14.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5515 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5516 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5517 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5518 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5519 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 14.5,-6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5520 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 15.5,-5.5 - parent: 127 - type: Transform -- uid: 5521 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 13.5,-6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5522 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5523 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5524 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5525 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5526 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5527 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5528 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5529 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5530 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5531 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5532 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5533 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5534 - type: GasPipeFourway - components: - - pos: 16.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5535 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -13.5,1.5 - parent: 127 - type: Transform - - devices: - - 659 - - 660 - - 661 - - 648 - - 662 - - 663 - - 664 - - 649 - - 669 - - 674 - - 653 - - 681 - - 683 - - 684 - - 682 - - 675 - - 7134 - - 7135 - - 8831 - - 8832 - type: DeviceList -- uid: 5536 - type: GasPipeStraight - components: - - pos: 16.5,1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5537 - type: GasPipeStraight - components: - - pos: 15.5,1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5538 - type: GasPipeStraight - components: - - pos: 15.5,2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5539 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5540 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5541 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5542 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5543 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5544 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5545 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5546 - type: WarpPoint - components: - - pos: 40.5,11.5 - parent: 127 - type: Transform - - location: atmos - type: WarpPoint -- uid: 5547 - type: CableApcExtension - components: - - pos: 45.5,8.5 - parent: 127 - type: Transform -- uid: 5548 - type: CableApcExtension - components: - - pos: 45.5,7.5 - parent: 127 - type: Transform -- uid: 5549 - type: CableApcExtension - components: - - pos: 45.5,6.5 - parent: 127 - type: Transform -- uid: 5550 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5551 - type: CableApcExtension - components: - - pos: 45.5,5.5 - parent: 127 - type: Transform -- uid: 5552 - type: CableApcExtension - components: - - pos: 45.5,4.5 - parent: 127 - type: Transform -- uid: 5553 - type: Lamp - components: - - pos: 7.565503,9.778235 - parent: 127 - type: Transform - - toggleAction: - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 5554 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -11.5,1.5 - parent: 127 - type: Transform -- uid: 5555 - type: LampGold - components: - - pos: 2.5038743,7.881737 - parent: 127 - type: Transform -- uid: 5556 - type: ToySpawner - components: - - pos: 0.5,7.5 - parent: 127 - type: Transform -- uid: 5557 - type: PlushieSlime - components: - - pos: 5.483307,-7.3770437 - parent: 127 - type: Transform -- uid: 5558 - type: PottedPlantRandomPlastic - components: - - pos: 26.5,10.5 - parent: 127 - type: Transform -- uid: 5559 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: 31.5,18.5 - parent: 127 - type: Transform -- uid: 5560 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: 31.5,17.5 - parent: 127 - type: Transform -- uid: 5561 - type: ComputerPowerMonitoring - components: - - rot: 1.5707963267948966 rad - pos: 24.5,4.5 - parent: 127 - type: Transform -- uid: 5562 - type: ClothingOuterWinterCE - components: - - flags: InContainer - type: MetaData - - parent: 5580 - type: Transform - - canCollide: False - type: Physics -- uid: 5563 - type: SpawnPointChiefEngineer - components: - - pos: 33.5,2.5 - parent: 127 - type: Transform -- uid: 5564 - type: LockerEngineerFilled - components: - - pos: 31.5,16.5 - parent: 127 - type: Transform -- uid: 5565 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5566 - type: LockerEngineerFilled - components: - - pos: 31.5,15.5 - parent: 127 - type: Transform -- uid: 5567 - type: LockerEngineerFilled - components: - - pos: 31.5,14.5 - parent: 127 - type: Transform -- uid: 5568 - type: SignEngineering - components: - - pos: 23.5,3.5 - parent: 127 - type: Transform -- uid: 5569 - type: CableHV - components: - - pos: 24.5,6.5 - parent: 127 - type: Transform -- uid: 5570 - type: CableHV - components: - - pos: 32.5,3.5 - parent: 127 - type: Transform -- uid: 5571 - type: SignDirectionalGravity - components: - - pos: 20.507769,4.534585 - parent: 127 - type: Transform -- uid: 5572 - type: CableHV - components: - - pos: 24.5,8.5 - parent: 127 - type: Transform -- uid: 5573 - type: SignDirectionalEvac - components: - - pos: 20.507769,4.33146 - parent: 127 - type: Transform -- uid: 5574 - type: SignDirectionalMed - components: - - rot: -1.5707963267948966 rad - pos: 20.507769,4.73771 - parent: 127 - type: Transform -- uid: 5575 - type: CableHV - components: - - pos: 34.5,7.5 - parent: 127 - type: Transform -- uid: 5576 - type: CableHV - components: - - pos: 34.5,6.5 - parent: 127 - type: Transform -- uid: 5577 - type: CableHV - components: - - pos: 34.5,5.5 - parent: 127 - type: Transform -- uid: 5578 - type: CableHV - components: - - pos: 33.5,5.5 - parent: 127 - type: Transform -- uid: 5579 - type: CableHV - components: - - pos: 24.5,7.5 - parent: 127 - type: Transform -- uid: 5580 - type: LockerChiefEngineerFilled - components: - - pos: 32.5,2.5 - parent: 127 - type: Transform - - containers: - entity_storage: !type:Container - ents: - - 5562 - type: ContainerContainer -- uid: 5581 - type: CableHV - components: - - pos: 32.5,4.5 - parent: 127 - type: Transform -- uid: 5582 - type: ComputerPowerMonitoring - components: - - rot: 1.5707963267948966 rad - pos: 32.5,3.5 - parent: 127 - type: Transform -- uid: 5583 - type: CableHV - components: - - pos: 32.5,5.5 - parent: 127 - type: Transform -- uid: 5584 - type: CableHV - components: - - pos: 24.5,5.5 - parent: 127 - type: Transform -- uid: 5585 - type: CableHV - components: - - pos: 24.5,4.5 - parent: 127 - type: Transform -- uid: 5586 - type: CableHV - components: - - pos: 25.5,8.5 - parent: 127 - type: Transform -- uid: 5587 - type: Table - components: - - pos: 25.5,3.5 - parent: 127 - type: Transform -- uid: 5588 - type: LockerChiefMedicalOfficerFilled - components: - - pos: 7.5,11.5 - parent: 127 - type: Transform - - containers: - entity_storage: !type:Container - ents: - - 1898 - type: ContainerContainer -- uid: 5589 - type: CarpetSBlue - components: - - pos: 7.5,9.5 - parent: 127 - type: Transform -- uid: 5590 - type: CarpetPurple - components: - - pos: -4.5,-7.5 - parent: 127 - type: Transform -- uid: 5591 - type: CarpetPurple - components: - - pos: -3.5,-7.5 - parent: 127 - type: Transform -- uid: 5592 - type: TableWood - components: - - pos: 7.5,9.5 - parent: 127 - type: Transform -- uid: 5593 - type: CarpetSBlue - components: - - pos: 6.5,9.5 - parent: 127 - type: Transform -- uid: 5594 - type: ReinforcedWindow - components: - - pos: 19.5,16.5 - parent: 127 - type: Transform -- uid: 5595 - type: CarpetOrange - components: - - pos: 34.5,3.5 - parent: 127 - type: Transform -- uid: 5596 - type: WarpPoint - components: - - pos: 29.5,12.5 - parent: 127 - type: Transform - - location: eng - type: WarpPoint -- uid: 5597 - type: WarpPoint - components: - - pos: 15.5,13.5 - parent: 127 - type: Transform - - location: cargo - type: WarpPoint -- uid: 5598 - type: RCD - components: - - pos: 34.504986,3.7120197 - parent: 127 - type: Transform -- uid: 5599 - type: Bed - components: - - pos: 34.5,2.5 - parent: 127 - type: Transform -- uid: 5600 - type: LampGold - components: - - pos: 29.495537,10.613046 - parent: 127 - type: Transform -- uid: 5601 - type: BoxFolderYellow - components: - - pos: 29.464287,9.534921 - parent: 127 - type: Transform -- uid: 5602 - type: Paper - components: - - pos: 29.620537,9.613046 - parent: 127 - type: Transform -- uid: 5603 - type: Paper - components: - - pos: 29.495537,9.675546 - parent: 127 - type: Transform -- uid: 5604 - type: Paper - components: - - pos: 29.386162,9.738046 - parent: 127 - type: Transform -- uid: 5605 - type: ChairOfficeDark - components: - - pos: 28.5,8.5 - parent: 127 - type: Transform -- uid: 5606 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 28.5,9.5 - parent: 127 - type: Transform -- uid: 5607 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 9.5,0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5608 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5609 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5610 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 9.5,3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5611 - type: GasPipeStraight - components: - - pos: 9.5,1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5612 - type: GasPipeStraight - components: - - pos: 9.5,2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5613 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5614 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5615 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5616 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5617 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5618 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5619 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5620 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5621 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5622 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5623 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5624 - type: Table - components: - - pos: 29.5,10.5 - parent: 127 - type: Transform -- uid: 5625 - type: ChairOfficeDark - components: - - pos: 25.5,4.5 - parent: 127 - type: Transform -- uid: 5626 - type: Table - components: - - pos: 29.5,9.5 - parent: 127 - type: Transform -- uid: 5627 - type: Table - components: - - pos: 29.5,7.5 - parent: 127 - type: Transform -- uid: 5628 - type: WeldingFuelTankFull - components: - - pos: 27.5,7.5 - parent: 127 - type: Transform -- uid: 5629 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,8.5 - parent: 127 - type: Transform -- uid: 5630 - type: Table - components: - - pos: 28.5,7.5 - parent: 127 - type: Transform -- uid: 5631 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 30.5,10.5 - parent: 127 - type: Transform -- uid: 5632 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 29.5,6.5 - parent: 127 - type: Transform -- uid: 5633 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 28.5,6.5 - parent: 127 - type: Transform -- uid: 5634 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,10.5 - parent: 127 - type: Transform -- uid: 5635 - type: PottedPlantRandomPlastic - components: - - pos: 30.5,19.5 - parent: 127 - type: Transform -- uid: 5636 - type: PottedPlantRandomPlastic - components: - - pos: 31.5,11.5 - parent: 127 - type: Transform -- uid: 5637 - type: PottedPlantRandomPlastic - components: - - pos: 31.5,5.5 - parent: 127 - type: Transform -- uid: 5638 - type: PottedPlantRandomPlastic - components: - - pos: 28.5,4.5 - parent: 127 - type: Transform -- uid: 5639 - type: PowerCellRecharger - components: - - pos: 24.5,6.5 - parent: 127 - type: Transform -- uid: 5640 - type: PowerCellRecharger - components: - - pos: 27.5,13.5 - parent: 127 - type: Transform -- uid: 5641 - type: Table - components: - - pos: 24.5,6.5 - parent: 127 - type: Transform -- uid: 5642 - type: ToolboxElectricalFilled - components: - - pos: 27.491495,14.658597 - parent: 127 - type: Transform -- uid: 5643 - type: ToolboxMechanicalFilled - components: - - pos: 27.491495,14.252347 - parent: 127 - type: Transform -- uid: 5644 - type: FirelockGlass - components: - - pos: -2.5,10.5 - parent: 127 - type: Transform -- uid: 5645 - type: FirelockGlass - components: - - pos: -2.5,7.5 - parent: 127 - type: Transform -- uid: 5646 - type: FirelockGlass - components: - - pos: -2.5,4.5 - parent: 127 - type: Transform -- uid: 5647 - type: FirelockGlass - components: - - pos: 6.5,3.5 - parent: 127 - type: Transform -- uid: 5648 - type: FirelockGlass - components: - - pos: 1.5,3.5 - parent: 127 - type: Transform -- uid: 5649 - type: FirelockGlass - components: - - pos: 0.5,3.5 - parent: 127 - type: Transform -- uid: 5650 - type: FirelockEdge - components: - - pos: -0.5,-7.5 - parent: 127 - type: Transform -- uid: 5651 - type: FirelockGlass - components: - - pos: 6.5,-0.5 - parent: 127 - type: Transform -- uid: 5652 - type: FirelockGlass - components: - - pos: 1.5,-0.5 - parent: 127 - type: Transform -- uid: 5653 - type: FirelockGlass - components: - - pos: 0.5,-0.5 - parent: 127 - type: Transform -- uid: 5654 - type: GasVentScrubber - components: - - pos: 16.5,20.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5655 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5656 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,18.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5657 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,18.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5658 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,18.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5659 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 20.5,16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5660 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 14.5,8.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5661 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 20.5,17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5662 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5663 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5664 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -11.5,-10.5 - parent: 127 - type: Transform -- uid: 5665 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5666 - type: GasPipeStraight - components: - - pos: 16.5,17.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5667 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5668 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 16.5,16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5669 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,15.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5670 - type: GasVentPump - components: - - pos: 15.5,20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5671 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5672 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,10.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5673 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5674 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 15.5,17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5675 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,16.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5676 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,14.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5677 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,12.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5678 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,10.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5679 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,7.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5680 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5681 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 16.5,8.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5682 - type: PottedPlantRandom - components: - - pos: 21.5,-1.5 - parent: 127 - type: Transform -- uid: 5683 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5684 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5685 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5686 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5687 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5688 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -7.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5689 - type: GasPipeStraight - components: - - pos: -7.5,7.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5690 - type: GasPipeStraight - components: - - pos: -7.5,5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5691 - type: GasPipeStraight - components: - - pos: -7.5,4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5692 - type: GasPipeStraight - components: - - pos: -8.5,8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5693 - type: GasPipeStraight - components: - - pos: -8.5,7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5694 - type: GasPipeStraight - components: - - pos: -8.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5695 - type: GasPipeStraight - components: - - pos: -8.5,3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5696 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5697 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5698 - type: GasPipeStraight - components: - - pos: -7.5,1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5699 - type: GasPipeStraight - components: - - pos: -7.5,-0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5700 - type: GasPipeStraight - components: - - pos: -8.5,-0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5701 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5702 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5703 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5704 - type: ShuttersNormal - components: - - pos: -20.5,-3.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8362 - type: SignalReceiver -- uid: 5705 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5706 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5707 - type: GasVentScrubber - components: - - pos: -1.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5708 - type: GasVentPump - components: - - pos: -0.5,-1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5709 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5710 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5711 - type: GasPipeStraight - components: - - pos: -0.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5712 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5713 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5714 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5715 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5716 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5717 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5718 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5719 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 1.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5720 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5721 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5722 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5723 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5724 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,15.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5725 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5726 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5727 - type: GasVentScrubber - components: - - pos: -0.5,23.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5728 - type: GasVentPump - components: - - pos: -1.5,23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5729 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -2.5,19.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5730 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,19.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5731 - type: GasPipeStraight - components: - - pos: -0.5,19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5732 - type: GasPipeStraight - components: - - pos: -1.5,16.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5733 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,15.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5734 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -4.5,13.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5735 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -4.5,14.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5736 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,14.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5737 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -0.5,13.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5738 - type: GasPipeStraight - components: - - pos: -0.5,14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5739 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,14.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5740 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5741 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,13.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5742 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,14.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5743 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,12.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5744 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,12.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5745 - type: RandomSpawner - components: - - pos: 30.5,-2.5 - parent: 127 - type: Transform -- uid: 5746 - type: RandomSpawner - components: - - pos: 37.5,-5.5 - parent: 127 - type: Transform -- uid: 5747 - type: RandomSpawner - components: - - pos: 40.5,-10.5 - parent: 127 - type: Transform -- uid: 5748 - type: VendingMachineLawDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 30.5,-15.5 - parent: 127 - type: Transform -- uid: 5749 - type: VendingMachineSecDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 31.5,-15.5 - parent: 127 - type: Transform -- uid: 5750 - type: ComputerCriminalRecords - components: - - pos: 28.5,-15.5 - parent: 127 - type: Transform -- uid: 5751 - type: TableWood - components: - - pos: 26.5,-15.5 - parent: 127 - type: Transform -- uid: 5752 - type: Bed - components: - - pos: 27.5,-15.5 - parent: 127 - type: Transform -- uid: 5753 - type: BedsheetHOS - components: - - pos: 34.5,-15.5 - parent: 127 - type: Transform -- uid: 5754 - type: Bed - components: - - pos: 34.5,-15.5 - parent: 127 - type: Transform -- uid: 5755 - type: LockerWardenFilled - components: - - pos: 26.5,-16.5 - parent: 127 - type: Transform - - containers: - entity_storage: !type:Container - ents: - - 7692 - type: ContainerContainer -- uid: 5756 - type: PottedPlantRandom - components: - - pos: 20.5,-35.5 - parent: 127 - type: Transform -- uid: 5757 - type: RandomSpawner - components: - - pos: 17.5,-33.5 - parent: 127 - type: Transform -- uid: 5758 - type: RandomSpawner - components: - - pos: 10.5,-35.5 - parent: 127 - type: Transform -- uid: 5759 - type: RandomSpawner - components: - - pos: 3.5,-33.5 - parent: 127 - type: Transform -- uid: 5760 - type: Table - components: - - pos: 7.5,-28.5 - parent: 127 - type: Transform -- uid: 5761 - type: RandomSpawner - components: - - pos: 0.5,-26.5 - parent: 127 - type: Transform -- uid: 5762 - type: RandomSpawner - components: - - pos: 5.5,-23.5 - parent: 127 - type: Transform -- uid: 5763 - type: RandomSpawner - components: - - pos: -3.5,-22.5 - parent: 127 - type: Transform -- uid: 5764 - type: RandomSpawner - components: - - pos: -6.5,-17.5 - parent: 127 - type: Transform -- uid: 5765 - type: RandomSpawner - components: - - pos: 17.5,-9.5 - parent: 127 - type: Transform -- uid: 5766 - type: RandomSpawner - components: - - pos: 17.5,-18.5 - parent: 127 - type: Transform -- uid: 5767 - type: RandomSpawner - components: - - pos: 12.5,-17.5 - parent: 127 - type: Transform -- uid: 5768 - type: RandomSpawner - components: - - pos: 21.5,-25.5 - parent: 127 - type: Transform -- uid: 5769 - type: Bed - components: - - pos: 43.5,-26.5 - parent: 127 - type: Transform -- uid: 5770 - type: BedsheetRed - components: - - pos: 27.5,-15.5 - parent: 127 - type: Transform -- uid: 5771 - type: BedsheetRed - components: - - pos: 43.5,-26.5 - parent: 127 - type: Transform -- uid: 5772 - type: BedsheetSyndie - components: - - pos: 46.5,-18.5 - parent: 127 - type: Transform -- uid: 5773 - type: BedsheetSyndie - components: - - pos: 46.5,-26.5 - parent: 127 - type: Transform -- uid: 5774 - type: RandomSpawner - components: - - pos: 11.5,-30.5 - parent: 127 - type: Transform -- uid: 5775 - type: RandomSpawner - components: - - pos: 19.5,-29.5 - parent: 127 - type: Transform -- uid: 5776 - type: RandomSpawner - components: - - pos: 12.5,-23.5 - parent: 127 - type: Transform -- uid: 5777 - type: RandomSpawner - components: - - pos: 10.5,-18.5 - parent: 127 - type: Transform -- uid: 5778 - type: RandomSpawner - components: - - pos: 10.5,-12.5 - parent: 127 - type: Transform -- uid: 5779 - type: RandomSpawner - components: - - pos: 21.5,-19.5 - parent: 127 - type: Transform -- uid: 5780 - type: RandomSpawner - components: - - pos: 19.5,-21.5 - parent: 127 - type: Transform -- uid: 5781 - type: Bed - components: - - pos: 46.5,-26.5 - parent: 127 - type: Transform -- uid: 5782 - type: MouseTimedSpawner - components: - - pos: 3.5,-25.5 - parent: 127 - type: Transform -- uid: 5783 - type: Bed - components: - - pos: 46.5,-18.5 - parent: 127 - type: Transform -- uid: 5784 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,17.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5785 - type: Table - components: - - pos: 46.5,-19.5 - parent: 127 - type: Transform -- uid: 5786 - type: Rack - components: - - pos: 32.5,-9.5 - parent: 127 - type: Transform -- uid: 5787 - type: Table - components: - - pos: 46.5,-25.5 - parent: 127 - type: Transform -- uid: 5788 - type: Grille - components: - - pos: 63.5,-17.5 - parent: 127 - type: Transform -- uid: 5789 - type: WardrobePrisonFilled - components: - - pos: 46.5,-21.5 - parent: 127 - type: Transform - - containers: - entity_storage: !type:Container - ents: - - 5803 - type: ContainerContainer -- uid: 5790 - type: WardrobePrisonFilled - components: - - pos: 47.5,-21.5 - parent: 127 - type: Transform - - containers: - entity_storage: !type:Container - ents: - - 5804 - type: ContainerContainer -- uid: 5791 - type: WardrobePrisonFilled - components: - - pos: 47.5,-25.5 - parent: 127 - type: Transform -- uid: 5792 - type: ClosetEmergencyFilledRandom - components: - - pos: 23.5,-9.5 - parent: 127 - type: Transform -- uid: 5793 - type: ClosetFireFilled - components: - - pos: 23.5,-10.5 - parent: 127 - type: Transform -- uid: 5794 - type: ClosetMaintenanceFilledRandom - components: - - pos: 25.5,-13.5 - parent: 127 - type: Transform -- uid: 5795 - type: ClosetMaintenanceFilledRandom - components: - - pos: 26.5,-13.5 - parent: 127 - type: Transform -- uid: 5796 - type: WeldingFuelTankFull - components: - - pos: 29.5,-13.5 - parent: 127 - type: Transform -- uid: 5797 - type: WaterTankFull - components: - - pos: 28.5,-13.5 - parent: 127 - type: Transform -- uid: 5798 - type: Table - components: - - pos: 27.5,-13.5 - parent: 127 - type: Transform -- uid: 5799 - type: MaintenanceToolSpawner - components: - - pos: 27.5,-13.5 - parent: 127 - type: Transform -- uid: 5800 - type: ClosetFireFilled - components: - - pos: 19.5,-26.5 - parent: 127 - type: Transform -- uid: 5801 - type: ClosetEmergencyFilledRandom - components: - - pos: 18.5,-26.5 - parent: 127 - type: Transform -- uid: 5802 - type: WardrobePrisonFilled - components: - - pos: 47.5,-19.5 - parent: 127 - type: Transform -- uid: 5803 - type: ClothingOuterHardsuitEVAPrisoner - components: - - flags: InContainer - type: MetaData - - parent: 5789 - type: Transform - - canCollide: False - type: Physics -- uid: 5804 - type: ClothingOuterHardsuitEVAPrisoner - components: - - flags: InContainer - type: MetaData - - parent: 5790 - type: Transform - - canCollide: False - type: Physics -- uid: 5805 - type: Table - components: - - pos: 20.5,-26.5 - parent: 127 - type: Transform -- uid: 5806 - type: Table - components: - - pos: 21.5,-26.5 - parent: 127 - type: Transform -- uid: 5807 - type: Table - components: - - pos: 23.5,-26.5 - parent: 127 - type: Transform -- uid: 5808 - type: AirlockSecurityGlassLocked - components: - - pos: 45.5,-23.5 - parent: 127 - type: Transform -- uid: 5809 - type: MaintenanceFluffSpawner - components: - - pos: 20.5,-26.5 - parent: 127 - type: Transform -- uid: 5810 - type: MaintenanceWeaponSpawner - components: - - pos: 23.5,-26.5 - parent: 127 - type: Transform -- uid: 5811 - type: AirlockSecurityGlassLocked - components: - - pos: 45.5,-22.5 - parent: 127 - type: Transform -- uid: 5812 - type: ClosetEmergencyFilledRandom - components: - - pos: 7.5,-31.5 - parent: 127 - type: Transform -- uid: 5813 - type: ClosetFireFilled - components: - - pos: 7.5,-30.5 - parent: 127 - type: Transform -- uid: 5814 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,-35.5 - parent: 127 - type: Transform -- uid: 5815 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,-21.5 - parent: 127 - type: Transform -- uid: 5816 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,-21.5 - parent: 127 - type: Transform -- uid: 5817 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: 15.5,-21.5 - parent: 127 - type: Transform -- uid: 5818 - type: Table - components: - - pos: 16.5,-21.5 - parent: 127 - type: Transform -- uid: 5819 - type: PowerCellRecharger - components: - - pos: 3.5,-21.5 - parent: 127 - type: Transform -- uid: 5820 - type: ClothingBeltUtilityFilled - components: - - pos: 4.345193,-21.540907 - parent: 127 - type: Transform -- uid: 5821 - type: ClothingHandsGlovesColorYellow - components: - - pos: 4.282693,-21.197157 - parent: 127 - type: Transform -- uid: 5822 - type: PottedPlantRandom - components: - - pos: 30.5,-5.5 - parent: 127 - type: Transform -- uid: 5823 - type: AirlockSecurityGlassLocked - components: - - pos: 48.5,-22.5 - parent: 127 - type: Transform -- uid: 5824 - type: AirlockSecurityGlassLocked - components: - - pos: 48.5,-23.5 - parent: 127 - type: Transform -- uid: 5825 - type: Bed - components: - - pos: 31.5,-22.5 - parent: 127 - type: Transform -- uid: 5826 - type: WardrobePrisonFilled - components: - - pos: 24.5,-23.5 - parent: 127 - type: Transform -- uid: 5827 - type: WardrobePrisonFilled - components: - - pos: 31.5,-23.5 - parent: 127 - type: Transform -- uid: 5828 - type: Bed - components: - - pos: 24.5,-22.5 - parent: 127 - type: Transform -- uid: 5829 - type: BedsheetOrange - components: - - pos: 24.5,-22.5 - parent: 127 - type: Transform -- uid: 5830 - type: BedsheetOrange - components: - - pos: 31.5,-22.5 - parent: 127 - type: Transform -- uid: 5831 - type: WeaponCapacitorRecharger - components: - - pos: 39.5,-21.5 - parent: 127 - type: Transform -- uid: 5832 - type: WeaponCapacitorRecharger - components: - - pos: 24.5,-18.5 - parent: 127 - type: Transform -- uid: 5833 - type: WeaponCapacitorRecharger - components: - - pos: 29.5,-18.5 - parent: 127 - type: Transform -- uid: 5834 - type: PowerCellRecharger - components: - - pos: 25.5,-18.5 - parent: 127 - type: Transform -- uid: 5835 - type: PowerCellRecharger - components: - - pos: 33.5,-21.5 - parent: 127 - type: Transform -- uid: 5836 - type: SurveillanceCameraRouterSecurity - components: - - pos: 39.5,-28.5 - parent: 127 - type: Transform -- uid: 5837 - type: ComputerSurveillanceCameraMonitor - components: - - pos: 34.5,-21.5 - parent: 127 - type: Transform -- uid: 5838 - type: SurveillanceCameraSecurity - components: - - pos: 27.5,-23.5 - parent: 127 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - id: Brig - type: SurveillanceCamera -- uid: 5839 - type: WeldingFuelTankFull - components: - - pos: 5.5,-31.5 - parent: 127 - type: Transform -- uid: 5840 - type: WaterTankFull - components: - - pos: 5.5,-30.5 - parent: 127 - type: Transform -- uid: 5841 - type: ToySpawner - components: - - pos: 7.5,-28.5 - parent: 127 - type: Transform -- uid: 5842 - type: Table - components: - - pos: 7.5,-29.5 - parent: 127 - type: Transform -- uid: 5843 - type: RandomSpawner - components: - - pos: 6.5,-28.5 - parent: 127 - type: Transform -- uid: 5844 - type: MaintenanceToolSpawner - components: - - pos: 7.5,-29.5 - parent: 127 - type: Transform -- uid: 5845 - type: ClosetFireFilled - components: - - pos: 4.5,-23.5 - parent: 127 - type: Transform -- uid: 5846 - type: ClosetEmergencyFilledRandom - components: - - pos: 4.5,-24.5 - parent: 127 - type: Transform -- uid: 5847 - type: SurveillanceCameraSecurity - components: - - pos: 37.5,-23.5 - parent: 127 - type: Transform - - id: Sec Lobby - type: SurveillanceCamera -- uid: 5848 - type: ClosetMaintenanceFilledRandom - components: - - pos: -0.5,-25.5 - parent: 127 - type: Transform -- uid: 5849 - type: ClosetMaintenanceFilledRandom - components: - - pos: 0.5,-25.5 - parent: 127 - type: Transform -- uid: 5850 - type: ClosetMaintenanceFilledRandom - components: - - pos: -3.5,-19.5 - parent: 127 - type: Transform -- uid: 5851 - type: ClosetMaintenanceFilledRandom - components: - - pos: -7.5,-17.5 - parent: 127 - type: Transform -- uid: 5852 - type: ClosetEmergencyFilledRandom - components: - - pos: -7.5,-16.5 - parent: 127 - type: Transform -- uid: 5853 - type: ClosetFireFilled - components: - - pos: -7.5,-15.5 - parent: 127 - type: Transform -- uid: 5854 - type: WaterTankFull - components: - - pos: -6.5,-21.5 - parent: 127 - type: Transform -- uid: 5855 - type: WeldingFuelTankFull - components: - - pos: -6.5,-22.5 - parent: 127 - type: Transform -- uid: 5856 - type: ClosetMaintenanceFilledRandom - components: - - pos: -5.5,-13.5 - parent: 127 - type: Transform -- uid: 5857 - type: ClosetMaintenanceFilledRandom - components: - - pos: -5.5,-12.5 - parent: 127 - type: Transform -- uid: 5858 - type: Table - components: - - pos: -5.5,-14.5 - parent: 127 - type: Transform -- uid: 5859 - type: Table - components: - - pos: -5.5,-15.5 - parent: 127 - type: Transform -- uid: 5860 - type: MaintenanceFluffSpawner - components: - - pos: -5.5,-15.5 - parent: 127 - type: Transform -- uid: 5861 - type: MaintenanceFluffSpawner - components: - - pos: -5.5,-14.5 - parent: 127 - type: Transform -- uid: 5862 - type: ClosetEmergencyFilledRandom - components: - - pos: 6.5,-10.5 - parent: 127 - type: Transform -- uid: 5863 - type: ClosetFireFilled - components: - - pos: 5.5,-10.5 - parent: 127 - type: Transform -- uid: 5864 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 8.5,-10.5 - parent: 127 - type: Transform -- uid: 5865 - type: WaterTankFull - components: - - pos: -4.5,-10.5 - parent: 127 - type: Transform -- uid: 5866 - type: WeldingFuelTankFull - components: - - pos: -3.5,-10.5 - parent: 127 - type: Transform -- uid: 5867 - type: Table - components: - - pos: -0.5,-10.5 - parent: 127 - type: Transform -- uid: 5868 - type: Table - components: - - pos: 0.5,-10.5 - parent: 127 - type: Transform -- uid: 5869 - type: Rack - components: - - pos: -1.5,-10.5 - parent: 127 - type: Transform -- uid: 5870 - type: PlushieLamp - components: - - pos: -0.64777327,-23.470713 - parent: 127 - type: Transform -- uid: 5871 - type: SignToolStorage - components: - - pos: 6.5,-18.5 - parent: 127 - type: Transform -- uid: 5872 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 2.5,11.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5873 - type: PosterContrabandEAT - components: - - pos: 11.5,-8.5 - parent: 127 - type: Transform -- uid: 5874 - type: SignDirectionalDorms - components: - - rot: -1.5707963267948966 rad - pos: 8.495204,-15.699287 - parent: 127 - type: Transform -- uid: 5875 - type: GasVentPump - components: - - pos: 3.5,12.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5876 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,10.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5877 - type: PosterLegitLoveIan - components: - - pos: 23.5,-3.5 - parent: 127 - type: Transform -- uid: 5878 - type: FireAlarm - components: - - pos: 14.5,1.5 - parent: 127 - type: Transform - - devices: - - 2964 - - 2963 - - 2962 - - 2968 - - 2969 - - 2967 - - 2966 - - 2965 - - 6636 - - 6642 - - 6641 - - 6640 - - 6639 - - 6638 - - 6637 - - 6635 - type: DeviceList -- uid: 5879 - type: RandomPosterLegit - components: - - pos: 20.5,-15.5 - parent: 127 - type: Transform -- uid: 5880 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-11.5 - parent: 127 - type: Transform - - devices: - - 2974 - - 2973 - - 2961 - - 2960 - type: DeviceList -- uid: 5881 - type: RandomPosterLegit - components: - - pos: 19.5,-24.5 - parent: 127 - type: Transform -- uid: 5882 - type: RandomPosterLegit - components: - - pos: 10.5,-24.5 - parent: 127 - type: Transform -- uid: 5883 - type: RandomPosterLegit - components: - - pos: 17.5,-32.5 - parent: 127 - type: Transform -- uid: 5884 - type: SurveillanceCameraSecurity - components: - - pos: 37.5,-28.5 - parent: 127 - type: Transform - - id: Heavy Armory - type: SurveillanceCamera -- uid: 5885 - type: SurveillanceCameraSecurity - components: - - pos: 34.5,-16.5 - parent: 127 - type: Transform - - id: HoS' Bedroom - type: SurveillanceCamera -- uid: 5886 - type: SurveillanceCameraSecurity - components: - - pos: 27.5,-16.5 - parent: 127 - type: Transform - - id: Warden's Bedroom - type: SurveillanceCamera -- uid: 5887 - type: SurveillanceCameraSecurity - components: - - pos: 43.5,-26.5 - parent: 127 - type: Transform - - id: Detective's Bedroom - type: SurveillanceCamera -- uid: 5888 - type: RandomPosterLegit - components: - - pos: -2.5,-11.5 - parent: 127 - type: Transform -- uid: 5889 - type: RandomPosterLegit - components: - - pos: 0.5,-11.5 - parent: 127 - type: Transform -- uid: 5890 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,10.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5891 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-19.5 - parent: 127 - type: Transform - - id: Light Armory - type: SurveillanceCamera -- uid: 5892 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5893 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,11.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5894 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,10.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5895 - type: GasPipeStraight - components: - - pos: -1.5,11.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5896 - type: RandomPosterAny - components: - - pos: -7.5,-12.5 - parent: 127 - type: Transform -- uid: 5897 - type: RandomPosterContraband - components: - - pos: -2.5,-22.5 - parent: 127 - type: Transform -- uid: 5898 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,10.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5899 - type: PosterContrabandClown - components: - - pos: 4.5,-12.5 - parent: 127 - type: Transform -- uid: 5900 - type: PosterContrabandAmbrosiaVulgaris - components: - - pos: 14.5,-15.5 - parent: 127 - type: Transform -- uid: 5901 - type: PosterLegitCleanliness - components: - - pos: 6.5,-15.5 - parent: 127 - type: Transform -- uid: 5902 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-21.5 - parent: 127 - type: Transform - - id: Permabrig - type: SurveillanceCamera -- uid: 5903 - type: PosterLegitIan - components: - - pos: 25.5,-8.5 - parent: 127 - type: Transform -- uid: 5904 - type: PosterLegitNanotrasenLogo - components: - - pos: 35.5,-6.5 - parent: 127 - type: Transform -- uid: 5905 - type: PosterContrabandNuclearDeviceInformational - components: - - pos: 36.5,-10.5 - parent: 127 - type: Transform -- uid: 5906 - type: RandomPosterAny - components: - - pos: 6.5,-26.5 - parent: 127 - type: Transform -- uid: 5907 - type: APCBasic - components: - - pos: 32.5,-17.5 - parent: 127 - type: Transform -- uid: 5908 - type: GasPipeStraight - components: - - pos: -0.5,10.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5909 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 44.5,-24.5 - parent: 127 - type: Transform -- uid: 5910 - type: PosterLegitSafetyInternals - components: - - pos: 10.5,-32.5 - parent: 127 - type: Transform -- uid: 5911 - type: PosterLegitStateLaws - components: - - pos: 57.5,-7.5 - parent: 127 - type: Transform -- uid: 5912 - type: CableMV - components: - - pos: 36.5,-19.5 - parent: 127 - type: Transform -- uid: 5913 - type: GasPipeStraight - components: - - pos: -0.5,9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5914 - type: GasPipeStraight - components: - - pos: -0.5,8.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5915 - type: CableMV - components: - - pos: 35.5,-19.5 - parent: 127 - type: Transform -- uid: 5916 - type: CableMV - components: - - pos: 34.5,-19.5 - parent: 127 - type: Transform -- uid: 5917 - type: ClosetMaintenanceFilledRandom - components: - - pos: -7.5,-7.5 - parent: 127 - type: Transform -- uid: 5918 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -11.5,-9.5 - parent: 127 - type: Transform -- uid: 5919 - type: Rack - components: - - pos: -10.5,-9.5 - parent: 127 - type: Transform -- uid: 5920 - type: MaintenanceToolSpawner - components: - - pos: -0.5,-10.5 - parent: 127 - type: Transform -- uid: 5921 - type: MaintenanceFluffSpawner - components: - - pos: 0.5,-10.5 - parent: 127 - type: Transform -- uid: 5922 - type: GasPipeStraight - components: - - pos: -1.5,9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5923 - type: GasPipeStraight - components: - - pos: -1.5,8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5924 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5925 - type: MouseTimedSpawner - components: - - pos: 42.5,-30.5 - parent: 127 - type: Transform -- uid: 5926 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5927 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5928 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5929 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,7.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5930 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5931 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5932 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5933 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5934 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5935 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -1.5,4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5936 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 1.5,6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5937 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5938 - type: GasPipeBend - components: - - pos: 0.5,6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5939 - type: GasPipeStraight - components: - - pos: 0.5,4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5940 - type: GasPipeStraight - components: - - pos: 0.5,3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5941 - type: GasPipeStraight - components: - - pos: 0.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5942 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5943 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5944 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5945 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5946 - type: GasPipeStraight - components: - - pos: 1.5,4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5947 - type: GasPipeStraight - components: - - pos: 1.5,3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5948 - type: Paper - components: - - pos: 25.5,-10.5 - parent: 127 - type: Transform -- uid: 5949 - type: GasPipeStraight - components: - - pos: 1.5,2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5950 - type: GasVentScrubber - components: - - pos: 6.5,5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5951 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 6.5,6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5952 - type: GasPipeStraight - components: - - pos: 0.5,0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5953 - type: GasPipeStraight - components: - - pos: 1.5,1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5954 - type: GasPipeStraight - components: - - pos: 6.5,4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5955 - type: GasPipeStraight - components: - - pos: 6.5,3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5956 - type: GasPipeStraight - components: - - pos: 6.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5957 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5958 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5959 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5960 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5961 - type: CableApcExtension - components: - - pos: -20.5,-0.5 - parent: 127 - type: Transform -- uid: 5962 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5963 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5964 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 1.5,0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5965 - type: DisposalJunctionFlipped - components: - - pos: 16.5,10.5 - parent: 127 - type: Transform -- uid: 5966 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 17.5,10.5 - parent: 127 - type: Transform -- uid: 5967 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 14.5,21.5 - parent: 127 - type: Transform -- uid: 5968 - type: DisposalBend - components: - - pos: 16.5,21.5 - parent: 127 - type: Transform -- uid: 5969 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,21.5 - parent: 127 - type: Transform -- uid: 5970 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,20.5 - parent: 127 - type: Transform -- uid: 5971 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,19.5 - parent: 127 - type: Transform -- uid: 5972 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,18.5 - parent: 127 - type: Transform -- uid: 5973 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,11.5 - parent: 127 - type: Transform -- uid: 5974 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,9.5 - parent: 127 - type: Transform -- uid: 5975 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,8.5 - parent: 127 - type: Transform -- uid: 5976 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,7.5 - parent: 127 - type: Transform -- uid: 5977 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,6.5 - parent: 127 - type: Transform -- uid: 5978 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,5.5 - parent: 127 - type: Transform -- uid: 5979 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,4.5 - parent: 127 - type: Transform -- uid: 5980 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,2.5 - parent: 127 - type: Transform -- uid: 5981 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,2.5 - parent: 127 - type: Transform -- uid: 5982 - type: Catwalk - components: - - pos: 20.5,-25.5 - parent: 127 - type: Transform -- uid: 5983 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5984 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,2.5 - parent: 127 - type: Transform -- uid: 5985 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5986 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5987 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5988 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 5989 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -10.5,-14.5 - parent: 127 - type: Transform -- uid: 5990 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -10.5,-15.5 - parent: 127 - type: Transform -- uid: 5991 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -10.5,-17.5 - parent: 127 - type: Transform -- uid: 5992 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -10.5,-18.5 - parent: 127 - type: Transform -- uid: 5993 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-19.5 - parent: 127 - type: Transform -- uid: 5994 - type: GrilleBroken - components: - - pos: -10.5,-16.5 - parent: 127 - type: Transform -- uid: 5995 - type: SheetSteel - components: - - pos: -10.543124,-7.4545054 - parent: 127 - type: Transform -- uid: 5996 - type: ClothingShoesBootsJack - components: - - pos: 7.404502,-26.41531 - parent: 127 - type: Transform -- uid: 5997 - type: MaintenanceFluffSpawner - components: - - pos: -10.5,-9.5 - parent: 127 - type: Transform -- uid: 5998 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 5999 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6000 - type: DisposalBend - components: - - pos: -0.5,21.5 - parent: 127 - type: Transform -- uid: 6001 - type: DisposalBend - components: - - pos: 1.5,9.5 - parent: 127 - type: Transform -- uid: 6002 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -0.5,9.5 - parent: 127 - type: Transform -- uid: 6003 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 127 - type: Transform -- uid: 6004 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -9.5,0.5 - parent: 127 - type: Transform -- uid: 6005 - type: DisposalBend - components: - - pos: -8.5,0.5 - parent: 127 - type: Transform -- uid: 6006 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -8.5,-1.5 - parent: 127 - type: Transform -- uid: 6007 - type: DisposalYJunction - components: - - rot: 3.141592653589793 rad - pos: 1.5,-1.5 - parent: 127 - type: Transform -- uid: 6008 - type: CableMV - components: - - pos: 33.5,-19.5 - parent: 127 - type: Transform -- uid: 6009 - type: CableMV - components: - - pos: 32.5,-19.5 - parent: 127 - type: Transform -- uid: 6010 - type: CableMV - components: - - pos: 32.5,-18.5 - parent: 127 - type: Transform -- uid: 6011 - type: CableMV - components: - - pos: 32.5,-17.5 - parent: 127 - type: Transform -- uid: 6012 - type: CableMV - components: - - pos: 30.5,-21.5 - parent: 127 - type: Transform -- uid: 6013 - type: CableMV - components: - - pos: 38.5,-19.5 - parent: 127 - type: Transform -- uid: 6014 - type: CableMV - components: - - pos: 39.5,-19.5 - parent: 127 - type: Transform -- uid: 6015 - type: PlushieRGBee - components: - - pos: 0.08440256,-23.447218 - parent: 127 - type: Transform -- uid: 6016 - type: Table - components: - - pos: 2.5,-23.5 - parent: 127 - type: Transform -- uid: 6017 - type: CableMV - components: - - pos: 31.5,-21.5 - parent: 127 - type: Transform -- uid: 6018 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -8.5,-0.5 - parent: 127 - type: Transform -- uid: 6019 - type: CableMV - components: - - pos: 32.5,-21.5 - parent: 127 - type: Transform -- uid: 6020 - type: ToolboxElectricalFilled - components: - - pos: -9.581958,-7.371786 - parent: 127 - type: Transform -- uid: 6021 - type: SheetPlastic - components: - - pos: -10.433749,-7.4545054 - parent: 127 - type: Transform -- uid: 6022 - type: Catwalk - components: - - pos: 22.5,12.5 - parent: 127 - type: Transform -- uid: 6023 - type: Table - components: - - pos: -9.5,-7.5 - parent: 127 - type: Transform -- uid: 6024 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 127 - type: Transform -- uid: 6025 - type: Lamp - components: - - pos: 35.477364,-0.16161868 - parent: 127 - type: Transform -- uid: 6026 - type: BookRandom - components: - - pos: 19.35158,-31.192076 - parent: 127 - type: Transform -- uid: 6027 - type: CableMV - components: - - pos: 32.5,-22.5 - parent: 127 - type: Transform -- uid: 6028 - type: CableMV - components: - - pos: 32.5,-23.5 - parent: 127 - type: Transform -- uid: 6029 - type: CableMV - components: - - pos: 29.5,-21.5 - parent: 127 - type: Transform -- uid: 6030 - type: CableMV - components: - - pos: 29.5,-22.5 - parent: 127 - type: Transform -- uid: 6031 - type: CableMV - components: - - pos: 29.5,-23.5 - parent: 127 - type: Transform -- uid: 6032 - type: CableMV - components: - - pos: 28.5,-21.5 - parent: 127 - type: Transform -- uid: 6033 - type: CableMV - components: - - pos: 27.5,-21.5 - parent: 127 - type: Transform -- uid: 6034 - type: CableMV - components: - - pos: 26.5,-21.5 - parent: 127 - type: Transform -- uid: 6035 - type: CableMV - components: - - pos: 26.5,-22.5 - parent: 127 - type: Transform -- uid: 6036 - type: CableMV - components: - - pos: 26.5,-23.5 - parent: 127 - type: Transform -- uid: 6037 - type: CableMV - components: - - pos: 25.5,-21.5 - parent: 127 - type: Transform -- uid: 6038 - type: CableMV - components: - - pos: 24.5,-21.5 - parent: 127 - type: Transform -- uid: 6039 - type: CableMV - components: - - pos: 23.5,-21.5 - parent: 127 - type: Transform -- uid: 6040 - type: CableMV - components: - - pos: 23.5,-22.5 - parent: 127 - type: Transform -- uid: 6041 - type: CableMV - components: - - pos: 23.5,-23.5 - parent: 127 - type: Transform -- uid: 6042 - type: CableMV - components: - - pos: 32.5,-20.5 - parent: 127 - type: Transform -- uid: 6043 - type: CableMV - components: - - pos: 40.5,-19.5 - parent: 127 - type: Transform -- uid: 6044 - type: CableMV - components: - - pos: 40.5,-18.5 - parent: 127 - type: Transform -- uid: 6045 - type: CableMV - components: - - pos: 40.5,-20.5 - parent: 127 - type: Transform -- uid: 6046 - type: CableMV - components: - - pos: 40.5,-21.5 - parent: 127 - type: Transform -- uid: 6047 - type: CableMV - components: - - pos: 41.5,-21.5 - parent: 127 - type: Transform -- uid: 6048 - type: CableMV - components: - - pos: 42.5,-21.5 - parent: 127 - type: Transform -- uid: 6049 - type: CableMV - components: - - pos: 43.5,-21.5 - parent: 127 - type: Transform -- uid: 6050 - type: CableMV - components: - - pos: 44.5,-21.5 - parent: 127 - type: Transform -- uid: 6051 - type: CableMV - components: - - pos: 44.5,-22.5 - parent: 127 - type: Transform -- uid: 6052 - type: CableMV - components: - - pos: 44.5,-23.5 - parent: 127 - type: Transform -- uid: 6053 - type: CableMV - components: - - pos: 44.5,-24.5 - parent: 127 - type: Transform -- uid: 6054 - type: CableMV - components: - - pos: 45.5,-23.5 - parent: 127 - type: Transform -- uid: 6055 - type: CableMV - components: - - pos: 46.5,-23.5 - parent: 127 - type: Transform -- uid: 6056 - type: CableMV - components: - - pos: 47.5,-23.5 - parent: 127 - type: Transform -- uid: 6057 - type: CableMV - components: - - pos: 48.5,-23.5 - parent: 127 - type: Transform -- uid: 6058 - type: CableMV - components: - - pos: 49.5,-23.5 - parent: 127 - type: Transform -- uid: 6059 - type: CableMV - components: - - pos: 50.5,-23.5 - parent: 127 - type: Transform -- uid: 6060 - type: CableMV - components: - - pos: 51.5,-23.5 - parent: 127 - type: Transform -- uid: 6061 - type: CableMV - components: - - pos: 52.5,-23.5 - parent: 127 - type: Transform -- uid: 6062 - type: CableMV - components: - - pos: 52.5,-22.5 - parent: 127 - type: Transform -- uid: 6063 - type: CableMV - components: - - pos: 52.5,-24.5 - parent: 127 - type: Transform -- uid: 6064 - type: CableMV - components: - - pos: 52.5,-25.5 - parent: 127 - type: Transform -- uid: 6065 - type: CableMV - components: - - pos: 32.5,-16.5 - parent: 127 - type: Transform -- uid: 6066 - type: CableMV - components: - - pos: 32.5,-15.5 - parent: 127 - type: Transform -- uid: 6067 - type: VendingMachineDetDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 44.5,-26.5 - parent: 127 - type: Transform -- uid: 6068 - type: LockerDetectiveFilled - components: - - pos: 42.5,-26.5 - parent: 127 - type: Transform -- uid: 6069 - type: TableWood - components: - - pos: 44.5,-25.5 - parent: 127 - type: Transform -- uid: 6070 - type: MedkitFilled - components: - - pos: 35.46122,-21.367414 - parent: 127 - type: Transform -- uid: 6071 - type: MedkitFilled - components: - - pos: 35.570595,-21.50804 - parent: 127 - type: Transform -- uid: 6072 - type: BoxFolderRed - components: - - pos: 35.383095,-22.07054 - parent: 127 - type: Transform -- uid: 6073 - type: Paper - components: - - pos: 35.445595,-22.117414 - parent: 127 - type: Transform -- uid: 6074 - type: Paper - components: - - pos: 35.601845,-22.117414 - parent: 127 - type: Transform -- uid: 6075 - type: Lamp - components: - - pos: 35.52372,-21.679914 - parent: 127 - type: Transform -- uid: 6076 - type: BriefcaseBrownFilled - components: - - pos: 35.46122,-22.336164 - parent: 127 - type: Transform -- uid: 6077 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 34.5,-22.5 - parent: 127 - type: Transform -- uid: 6078 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-20.5 - parent: 127 - type: Transform -- uid: 6079 - type: AirlockArmoryLocked - components: - - pos: 29.5,-16.5 - parent: 127 - type: Transform -- uid: 6080 - type: AirlockSecurityLocked - components: - - pos: 43.5,-24.5 - parent: 127 - type: Transform -- uid: 6081 - type: AirlockSecurityGlassLocked - components: - - pos: 40.5,-19.5 - parent: 127 - type: Transform -- uid: 6082 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6083 - type: PottedPlantRandom - components: - - pos: -2.5,-17.5 - parent: 127 - type: Transform -- uid: 6084 - type: PottedPlantRandom - components: - - pos: 9.5,-22.5 - parent: 127 - type: Transform -- uid: 6085 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-18.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6086 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6087 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-22.5 - parent: 127 - type: Transform -- uid: 6088 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-21.5 - parent: 127 - type: Transform -- uid: 6089 - type: Table - components: - - pos: 7.5,-33.5 - parent: 127 - type: Transform -- uid: 6090 - type: PottedPlantRandom - components: - - pos: 12.5,-35.5 - parent: 127 - type: Transform -- uid: 6091 - type: PottedPlantRandom - components: - - pos: 16.5,-35.5 - parent: 127 - type: Transform -- uid: 6092 - type: RandomSpawner - components: - - pos: 20.5,-34.5 - parent: 127 - type: Transform -- uid: 6093 - type: PottedPlantRandom - components: - - pos: 2.5,-32.5 - parent: 127 - type: Transform -- uid: 6094 - type: PottedPlantRandom - components: - - pos: 14.5,-27.5 - parent: 127 - type: Transform -- uid: 6095 - type: PottedPlantRandom - components: - - pos: 16.5,-28.5 - parent: 127 - type: Transform -- uid: 6096 - type: PottedPlantRandom - components: - - pos: 17.5,-23.5 - parent: 127 - type: Transform -- uid: 6097 - type: PottedPlantRandom - components: - - pos: 3.5,-17.5 - parent: 127 - type: Transform -- uid: 6098 - type: PottedPlantRandom - components: - - pos: 9.5,-11.5 - parent: 127 - type: Transform -- uid: 6099 - type: PottedPlantRandom - components: - - pos: 22.5,-11.5 - parent: 127 - type: Transform -- uid: 6100 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-19.5 - parent: 127 - type: Transform -- uid: 6101 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-18.5 - parent: 127 - type: Transform -- uid: 6102 - type: DisposalJunctionFlipped - components: - - pos: 22.5,-20.5 - parent: 127 - type: Transform -- uid: 6103 - type: SignAi - components: - - pos: 51.5,-8.5 - parent: 127 - type: Transform -- uid: 6104 - type: BrbSign - components: - - pos: 27.533472,-4.546945 - parent: 127 - type: Transform -- uid: 6105 - type: SignBridge - components: - - pos: 23.5,-0.5 - parent: 127 - type: Transform -- uid: 6106 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-1.5 - parent: 127 - type: Transform -- uid: 6107 - type: SignConference - components: - - pos: 38.5,-3.5 - parent: 127 - type: Transform -- uid: 6108 - type: SignDisposalSpace - components: - - pos: -1.5,-25.5 - parent: 127 - type: Transform -- uid: 6109 - type: SignDisposalSpace - components: - - pos: -6.5,-20.5 - parent: 127 - type: Transform -- uid: 6110 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: 8.51474,-0.62452966 - parent: 127 - type: Transform -- uid: 6111 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 127 - type: Transform -- uid: 6112 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 127 - type: Transform -- uid: 6113 - type: SignGravity - components: - - pos: 4.5,-35.5 - parent: 127 - type: Transform -- uid: 6114 - type: SignGravity - components: - - pos: 4.5,-33.5 - parent: 127 - type: Transform -- uid: 6115 - type: SignHydro3 - components: - - pos: 20.5,-20.5 - parent: 127 - type: Transform -- uid: 6116 - type: ExtinguisherCabinetFilled - components: - - pos: 36.5,-1.5 - parent: 127 - type: Transform -- uid: 6117 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 127 - type: Transform -- uid: 6118 - type: SignNanotrasen2 - components: - - pos: 38.5,1.5 - parent: 127 - type: Transform -- uid: 6119 - type: SignNanotrasen3 - components: - - pos: 39.5,1.5 - parent: 127 - type: Transform -- uid: 6120 - type: SignNanotrasen4 - components: - - pos: 40.5,1.5 - parent: 127 - type: Transform -- uid: 6121 - type: SignNanotrasen5 - components: - - pos: 41.5,1.5 - parent: 127 - type: Transform -- uid: 6122 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 127 - type: Transform -- uid: 6123 - type: SignSecurity - components: - - pos: 23.5,-16.5 - parent: 127 - type: Transform -- uid: 6124 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 127 - type: Transform -- uid: 6125 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 127 - type: Transform -- uid: 6126 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 127 - type: Transform -- uid: 6127 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 127 - type: Transform -- uid: 6128 - type: DisposalPipe - components: - - pos: 1.5,-0.5 - parent: 127 - type: Transform -- uid: 6129 - type: DisposalPipe - components: - - pos: 1.5,0.5 - parent: 127 - type: Transform -- uid: 6130 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,1.5 - parent: 127 - type: Transform -- uid: 6131 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,1.5 - parent: 127 - type: Transform -- uid: 6132 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,1.5 - parent: 127 - type: Transform -- uid: 6133 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,1.5 - parent: 127 - type: Transform -- uid: 6134 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,1.5 - parent: 127 - type: Transform -- uid: 6135 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,1.5 - parent: 127 - type: Transform -- uid: 6136 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,1.5 - parent: 127 - type: Transform -- uid: 6137 - type: CableApcExtension - components: - - pos: 6.5,-2.5 - parent: 127 - type: Transform -- uid: 6138 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-7.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6139 - type: Poweredlight - components: - - pos: -3.5,5.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6140 - type: Poweredlight - components: - - pos: -3.5,11.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6141 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6142 - type: GasPipeFourway - components: - - pos: 15.5,3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6143 - type: FirelockGlass - components: - - pos: 13.5,19.5 - parent: 127 - type: Transform -- uid: 6144 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -5.5,5.5 - parent: 127 - type: Transform - - devices: - - 650 - - 648 - type: DeviceList -- uid: 6145 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -1.5,9.5 - parent: 127 - type: Transform -- uid: 6146 - type: LockerWeldingSuppliesFilled - components: - - pos: 24.5,7.5 - parent: 127 - type: Transform -- uid: 6147 - type: WarpPoint - components: - - pos: -1.5,20.5 - parent: 127 - type: Transform - - location: viro - type: WarpPoint -- uid: 6148 - type: WarpPoint - components: - - pos: 1.5,9.5 - parent: 127 - type: Transform - - location: med - type: WarpPoint -- uid: 6149 - type: WarpPoint - components: - - pos: -7.5,5.5 - parent: 127 - type: Transform - - location: xenolab - type: WarpPoint -- uid: 6150 - type: WarpPoint - components: - - pos: 2.5,-3.5 - parent: 127 - type: Transform - - location: sci - type: WarpPoint -- uid: 6151 - type: RCDAmmo - components: - - pos: 34.504986,3.5557697 - parent: 127 - type: Transform -- uid: 6152 - type: RCDAmmo - components: - - pos: 34.33311,3.5557697 - parent: 127 - type: Transform -- uid: 6153 - type: TableWood - components: - - pos: 34.5,3.5 - parent: 127 - type: Transform -- uid: 6154 - type: BedsheetCE - components: - - pos: 34.5,2.5 - parent: 127 - type: Transform -- uid: 6155 - type: FaxMachineBase - components: - - pos: 19.5,-30.5 - parent: 127 - type: Transform - - name: Library - type: FaxMachine -- uid: 6156 - type: FaxMachineBase - components: - - pos: 28.5,7.5 - parent: 127 - type: Transform - - name: Engineering - type: FaxMachine -- uid: 6157 - type: WindoorSecure - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 127 - type: Transform -- uid: 6158 - type: FaxMachineBase - components: - - pos: 39.5,-20.5 - parent: 127 - type: Transform - - name: Security - type: FaxMachine -- uid: 6159 - type: LampGold - components: - - pos: 29.495537,7.847421 - parent: 127 - type: Transform -- uid: 6160 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 27.5,6.5 - parent: 127 - type: Transform -- uid: 6161 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 30.5,7.5 - parent: 127 - type: Transform -- uid: 6162 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 30.5,8.5 - parent: 127 - type: Transform -- uid: 6163 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 30.5,9.5 - parent: 127 - type: Transform -- uid: 6164 - type: SurveillanceCameraRouterEngineering - components: - - pos: 24.5,9.5 - parent: 127 - type: Transform -- uid: 6165 - type: SurveillanceCameraRouterSupply - components: - - pos: 22.5,19.5 - parent: 127 - type: Transform -- uid: 6166 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 31.5,12.5 - parent: 127 - type: Transform -- uid: 6167 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 29.5,12.5 - parent: 127 - type: Transform -- uid: 6168 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 29.5,2.5 - parent: 127 - type: Transform -- uid: 6169 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,12.5 - parent: 127 - type: Transform -- uid: 6170 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,11.5 - parent: 127 - type: Transform -- uid: 6171 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,9.5 - parent: 127 - type: Transform -- uid: 6172 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,8.5 - parent: 127 - type: Transform -- uid: 6173 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,7.5 - parent: 127 - type: Transform -- uid: 6174 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,6.5 - parent: 127 - type: Transform -- uid: 6175 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,5.5 - parent: 127 - type: Transform -- uid: 6176 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,4.5 - parent: 127 - type: Transform -- uid: 6177 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,3.5 - parent: 127 - type: Transform -- uid: 6178 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,2.5 - parent: 127 - type: Transform -- uid: 6179 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,2.5 - parent: 127 - type: Transform -- uid: 6180 - type: DisposalUnit - components: - - pos: 31.5,12.5 - parent: 127 - type: Transform -- uid: 6181 - type: PottedPlantRandomPlastic - components: - - pos: 28.5,19.5 - parent: 127 - type: Transform -- uid: 6182 - type: LockerElectricalSuppliesFilled - components: - - pos: 24.5,8.5 - parent: 127 - type: Transform -- uid: 6183 - type: VendingMachineEngiDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 25.5,9.5 - parent: 127 - type: Transform -- uid: 6184 - type: ComputerSolarControl - components: - - rot: 1.5707963267948966 rad - pos: 24.5,5.5 - parent: 127 - type: Transform -- uid: 6185 - type: PartRodMetal - components: - - rot: -1.5707963267948966 rad - pos: 27.525068,17.703976 - parent: 127 - type: Transform -- uid: 6186 - type: WindoorSecureCargoLocked - components: - - rot: 3.141592653589793 rad - pos: 15.5,5.5 - parent: 127 - type: Transform -- uid: 6187 - type: SheetGlass - components: - - pos: 27.525068,18.1571 - parent: 127 - type: Transform -- uid: 6188 - type: PartRodMetal - components: - - rot: -1.5707963267948966 rad - pos: 27.525068,17.703976 - parent: 127 - type: Transform -- uid: 6189 - type: SheetGlass - components: - - pos: 27.525068,18.1571 - parent: 127 - type: Transform -- uid: 6190 - type: SheetPlasteel - components: - - pos: 27.525068,18.56335 - parent: 127 - type: Transform -- uid: 6191 - type: SheetSteel - components: - - pos: 27.540693,18.3446 - parent: 127 - type: Transform -- uid: 6192 - type: SheetSteel - components: - - pos: 27.540693,18.3446 - parent: 127 - type: Transform -- uid: 6193 - type: Table - components: - - pos: 27.5,13.5 - parent: 127 - type: Transform -- uid: 6194 - type: SheetPlasteel - components: - - pos: 27.525068,18.56335 - parent: 127 - type: Transform -- uid: 6195 - type: CrateEngineeringCableBulk - components: - - pos: 27.5,12.5 - parent: 127 - type: Transform -- uid: 6196 - type: Table - components: - - pos: 27.5,18.5 - parent: 127 - type: Transform -- uid: 6197 - type: Table - components: - - pos: 27.5,14.5 - parent: 127 - type: Transform -- uid: 6198 - type: Table - components: - - pos: 27.5,17.5 - parent: 127 - type: Transform -- uid: 6199 - type: WindoorSecure - components: - - pos: 25.5,3.5 - parent: 127 - type: Transform -- uid: 6200 - type: Autolathe - components: - - pos: 27.5,15.5 - parent: 127 - type: Transform -- uid: 6201 - type: Protolathe - components: - - pos: 27.5,16.5 - parent: 127 - type: Transform -- uid: 6202 - type: WindoorSecureCargoLocked - components: - - rot: 3.141592653589793 rad - pos: 16.5,5.5 - parent: 127 - type: Transform -- uid: 6203 - type: WindoorSecure - components: - - pos: 15.5,5.5 - parent: 127 - type: Transform -- uid: 6204 - type: WindoorSecure - components: - - pos: 16.5,5.5 - parent: 127 - type: Transform -- uid: 6205 - type: FirelockGlass - components: - - pos: 15.5,11.5 - parent: 127 - type: Transform -- uid: 6206 - type: FirelockGlass - components: - - pos: 18.5,5.5 - parent: 127 - type: Transform -- uid: 6207 - type: FirelockGlass - components: - - pos: 16.5,5.5 - parent: 127 - type: Transform -- uid: 6208 - type: FirelockGlass - components: - - pos: 15.5,5.5 - parent: 127 - type: Transform -- uid: 6209 - type: FirelockGlass - components: - - pos: 16.5,11.5 - parent: 127 - type: Transform -- uid: 6210 - type: FirelockGlass - components: - - pos: 16.5,15.5 - parent: 127 - type: Transform -- uid: 6211 - type: FirelockGlass - components: - - pos: 15.5,15.5 - parent: 127 - type: Transform -- uid: 6212 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 4.5,15.5 - parent: 127 - type: Transform -- uid: 6213 - type: AirlockSalvageGlassLocked - components: - - pos: 13.5,19.5 - parent: 127 - type: Transform -- uid: 6214 - type: FirelockGlass - components: - - pos: 13.5,18.5 - parent: 127 - type: Transform -- uid: 6215 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 9.5,17.5 - parent: 127 - type: Transform -- uid: 6216 - type: WindoorEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: 25.5,3.5 - parent: 127 - type: Transform -- uid: 6217 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -1.5,21.5 - parent: 127 - type: Transform -- uid: 6218 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -4.5,19.5 - parent: 127 - type: Transform -- uid: 6219 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 4.5,10.5 - parent: 127 - type: Transform -- uid: 6220 - type: FirelockGlass - components: - - pos: -1.5,17.5 - parent: 127 - type: Transform -- uid: 6221 - type: FirelockGlass - components: - - pos: -0.5,17.5 - parent: 127 - type: Transform -- uid: 6222 - type: FirelockGlass - components: - - pos: 0.5,15.5 - parent: 127 - type: Transform -- uid: 6223 - type: FirelockGlass - components: - - pos: -2.5,14.5 - parent: 127 - type: Transform -- uid: 6224 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 11.5,18.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6225 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 11.5,19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6226 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,18.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6227 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 16.5,19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6228 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,18.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6229 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,19.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6230 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6231 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6232 - type: WaterCooler - components: - - pos: 27.5,-23.5 - parent: 127 - type: Transform -- uid: 6233 - type: WaterCooler - components: - - pos: 30.5,-33.5 - parent: 127 - type: Transform -- uid: 6234 - type: PottedPlantRandom - components: - - pos: 30.5,-35.5 - parent: 127 - type: Transform -- uid: 6235 - type: PottedPlantRandom - components: - - pos: 32.5,-18.5 - parent: 127 - type: Transform -- uid: 6236 - type: PottedPlantRandom - components: - - pos: 33.5,-23.5 - parent: 127 - type: Transform -- uid: 6237 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6238 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 14.5,7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6239 - type: SpawnMobSlothPaperwork - components: - - pos: 13.5,-3.5 - parent: 127 - type: Transform -- uid: 6240 - type: SpawnPointLatejoin - components: - - pos: 15.5,-34.5 - parent: 127 - type: Transform -- uid: 6241 - type: PottedPlantRandom - components: - - pos: 40.5,-23.5 - parent: 127 - type: Transform -- uid: 6242 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6243 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6244 - type: SpawnPointReporter - components: - - pos: 18.5,-2.5 - parent: 127 - type: Transform -- uid: 6245 - type: PottedPlantRandom - components: - - pos: 51.5,-18.5 - parent: 127 - type: Transform -- uid: 6246 - type: PottedPlantRandom - components: - - pos: 51.5,-26.5 - parent: 127 - type: Transform -- uid: 6247 - type: Poweredlight - components: - - pos: 25.5,-18.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6248 - type: AirlockGlass - components: - - pos: 48.5,-18.5 - parent: 127 - type: Transform -- uid: 6249 - type: hydroponicsTray - components: - - pos: 51.5,-24.5 - parent: 127 - type: Transform -- uid: 6250 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6251 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,13.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6252 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,12.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6253 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,11.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6254 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,15.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6255 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,13.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6256 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,11.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6257 - type: hydroponicsTray - components: - - pos: 51.5,-23.5 - parent: 127 - type: Transform -- uid: 6258 - type: hydroponicsTray - components: - - pos: 51.5,-22.5 - parent: 127 - type: Transform -- uid: 6259 - type: hydroponicsTray - components: - - pos: 51.5,-21.5 - parent: 127 - type: Transform -- uid: 6260 - type: VendingMachineSeedsUnlocked - components: - - flags: SessionSpecific - type: MetaData - - pos: 51.5,-20.5 - parent: 127 - type: Transform -- uid: 6261 - type: SeedExtractor - components: - - pos: 51.5,-19.5 - parent: 127 - type: Transform -- uid: 6262 - type: SecurityTechFab - components: - - pos: 39.5,-26.5 - parent: 127 - type: Transform -- uid: 6263 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6264 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,8.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6265 - type: SignalButton - components: - - name: Armory Blast Door - type: MetaData - - pos: 26.5,-15.5 - parent: 127 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6554 - type: SignalTransmitter -- uid: 6266 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 5321 - type: Transform - - canCollide: False - type: Physics -- uid: 6267 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 5321 - type: Transform - - canCollide: False - type: Physics -- uid: 6268 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 5321 - type: Transform - - canCollide: False - type: Physics -- uid: 6269 - type: PottedPlantRandom - components: - - pos: 29.5,-20.5 - parent: 127 - type: Transform -- uid: 6270 - type: CableApcExtension - components: - - pos: 32.5,-17.5 - parent: 127 - type: Transform -- uid: 6271 - type: CableApcExtension - components: - - pos: 32.5,-16.5 - parent: 127 - type: Transform -- uid: 6272 - type: CableApcExtension - components: - - pos: 33.5,-16.5 - parent: 127 - type: Transform -- uid: 6273 - type: CableApcExtension - components: - - pos: 31.5,-16.5 - parent: 127 - type: Transform -- uid: 6274 - type: CableApcExtension - components: - - pos: 30.5,-16.5 - parent: 127 - type: Transform -- uid: 6275 - type: CableApcExtension - components: - - pos: 29.5,-16.5 - parent: 127 - type: Transform -- uid: 6276 - type: CableApcExtension - components: - - pos: 28.5,-16.5 - parent: 127 - type: Transform -- uid: 6277 - type: WallReinforced - components: - - pos: 32.5,-17.5 - parent: 127 - type: Transform -- uid: 6278 - type: SignalButton - components: - - name: Armory Blast Door - type: MetaData - - pos: 35.5,-16.5 - parent: 127 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6554 - type: SignalTransmitter -- uid: 6279 - type: CableApcExtension - components: - - pos: 32.5,-20.5 - parent: 127 - type: Transform -- uid: 6280 - type: CableApcExtension - components: - - pos: 31.5,-20.5 - parent: 127 - type: Transform -- uid: 6281 - type: CableApcExtension - components: - - pos: 30.5,-20.5 - parent: 127 - type: Transform -- uid: 6282 - type: CableApcExtension - components: - - pos: 29.5,-20.5 - parent: 127 - type: Transform -- uid: 6283 - type: CableApcExtension - components: - - pos: 28.5,-20.5 - parent: 127 - type: Transform -- uid: 6284 - type: CableApcExtension - components: - - pos: 27.5,-20.5 - parent: 127 - type: Transform -- uid: 6285 - type: CableApcExtension - components: - - pos: 26.5,-20.5 - parent: 127 - type: Transform -- uid: 6286 - type: CableApcExtension - components: - - pos: 25.5,-20.5 - parent: 127 - type: Transform -- uid: 6287 - type: CableApcExtension - components: - - pos: 27.5,-21.5 - parent: 127 - type: Transform -- uid: 6288 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,-21.5 - parent: 127 - type: Transform -- uid: 6289 - type: CableApcExtension - components: - - pos: 27.5,-22.5 - parent: 127 - type: Transform -- uid: 6290 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 28.5,-23.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6291 - type: CableApcExtension - components: - - pos: 28.5,-22.5 - parent: 127 - type: Transform -- uid: 6292 - type: CableApcExtension - components: - - pos: 29.5,-22.5 - parent: 127 - type: Transform -- uid: 6293 - type: CableApcExtension - components: - - pos: 30.5,-22.5 - parent: 127 - type: Transform -- uid: 6294 - type: CableApcExtension - components: - - pos: 33.5,-20.5 - parent: 127 - type: Transform -- uid: 6295 - type: CableApcExtension - components: - - pos: 34.5,-20.5 - parent: 127 - type: Transform -- uid: 6296 - type: CableApcExtension - components: - - pos: 35.5,-20.5 - parent: 127 - type: Transform -- uid: 6297 - type: CableApcExtension - components: - - pos: 36.5,-20.5 - parent: 127 - type: Transform -- uid: 6298 - type: CableApcExtension - components: - - pos: 37.5,-20.5 - parent: 127 - type: Transform -- uid: 6299 - type: CableApcExtension - components: - - pos: 38.5,-20.5 - parent: 127 - type: Transform -- uid: 6300 - type: CableApcExtension - components: - - pos: 38.5,-19.5 - parent: 127 - type: Transform -- uid: 6301 - type: CableApcExtension - components: - - pos: 39.5,-19.5 - parent: 127 - type: Transform -- uid: 6302 - type: CableApcExtension - components: - - pos: 40.5,-19.5 - parent: 127 - type: Transform -- uid: 6303 - type: CableApcExtension - components: - - pos: 41.5,-19.5 - parent: 127 - type: Transform -- uid: 6304 - type: CableApcExtension - components: - - pos: 42.5,-19.5 - parent: 127 - type: Transform -- uid: 6305 - type: CableApcExtension - components: - - pos: 43.5,-19.5 - parent: 127 - type: Transform -- uid: 6306 - type: CableApcExtension - components: - - pos: 38.5,-21.5 - parent: 127 - type: Transform -- uid: 6307 - type: CableApcExtension - components: - - pos: 38.5,-22.5 - parent: 127 - type: Transform -- uid: 6308 - type: CableApcExtension - components: - - pos: 38.5,-23.5 - parent: 127 - type: Transform -- uid: 6309 - type: CableApcExtension - components: - - pos: 38.5,-24.5 - parent: 127 - type: Transform -- uid: 6310 - type: CableApcExtension - components: - - pos: 38.5,-25.5 - parent: 127 - type: Transform -- uid: 6311 - type: CableApcExtension - components: - - pos: 38.5,-26.5 - parent: 127 - type: Transform -- uid: 6312 - type: CableApcExtension - components: - - pos: 38.5,-27.5 - parent: 127 - type: Transform -- uid: 6313 - type: CableApcExtension - components: - - pos: 37.5,-27.5 - parent: 127 - type: Transform -- uid: 6314 - type: CableApcExtension - components: - - pos: 35.5,-21.5 - parent: 127 - type: Transform -- uid: 6315 - type: CableApcExtension - components: - - pos: 35.5,-22.5 - parent: 127 - type: Transform -- uid: 6316 - type: CableApcExtension - components: - - pos: 44.5,-24.5 - parent: 127 - type: Transform -- uid: 6317 - type: CableApcExtension - components: - - pos: 44.5,-23.5 - parent: 127 - type: Transform -- uid: 6318 - type: CableApcExtension - components: - - pos: 44.5,-22.5 - parent: 127 - type: Transform -- uid: 6319 - type: CableApcExtension - components: - - pos: 43.5,-22.5 - parent: 127 - type: Transform -- uid: 6320 - type: CableApcExtension - components: - - pos: 42.5,-22.5 - parent: 127 - type: Transform -- uid: 6321 - type: CableApcExtension - components: - - pos: 41.5,-22.5 - parent: 127 - type: Transform -- uid: 6322 - type: CableApcExtension - components: - - pos: 40.5,-22.5 - parent: 127 - type: Transform -- uid: 6323 - type: CableApcExtension - components: - - pos: 44.5,-25.5 - parent: 127 - type: Transform -- uid: 6324 - type: CableApcExtension - components: - - pos: 43.5,-25.5 - parent: 127 - type: Transform -- uid: 6325 - type: CableApcExtension - components: - - pos: 45.5,-23.5 - parent: 127 - type: Transform -- uid: 6326 - type: CableApcExtension - components: - - pos: 46.5,-23.5 - parent: 127 - type: Transform -- uid: 6327 - type: CableApcExtension - components: - - pos: 47.5,-23.5 - parent: 127 - type: Transform -- uid: 6328 - type: CableApcExtension - components: - - pos: 48.5,-23.5 - parent: 127 - type: Transform -- uid: 6329 - type: CableApcExtension - components: - - pos: 49.5,-23.5 - parent: 127 - type: Transform -- uid: 6330 - type: CableApcExtension - components: - - pos: 50.5,-23.5 - parent: 127 - type: Transform -- uid: 6331 - type: CableApcExtension - components: - - pos: 50.5,-24.5 - parent: 127 - type: Transform -- uid: 6332 - type: CableApcExtension - components: - - pos: 50.5,-25.5 - parent: 127 - type: Transform -- uid: 6333 - type: CableApcExtension - components: - - pos: 50.5,-26.5 - parent: 127 - type: Transform -- uid: 6334 - type: CableApcExtension - components: - - pos: 49.5,-26.5 - parent: 127 - type: Transform -- uid: 6335 - type: CableApcExtension - components: - - pos: 47.5,-26.5 - parent: 127 - type: Transform -- uid: 6336 - type: CableApcExtension - components: - - pos: 50.5,-22.5 - parent: 127 - type: Transform -- uid: 6337 - type: CableApcExtension - components: - - pos: 50.5,-21.5 - parent: 127 - type: Transform -- uid: 6338 - type: CableApcExtension - components: - - pos: 50.5,-20.5 - parent: 127 - type: Transform -- uid: 6339 - type: CableApcExtension - components: - - pos: 50.5,-19.5 - parent: 127 - type: Transform -- uid: 6340 - type: CableApcExtension - components: - - pos: 50.5,-18.5 - parent: 127 - type: Transform -- uid: 6341 - type: CableApcExtension - components: - - pos: 49.5,-18.5 - parent: 127 - type: Transform -- uid: 6342 - type: CableApcExtension - components: - - pos: 48.5,-18.5 - parent: 127 - type: Transform -- uid: 6343 - type: CableApcExtension - components: - - pos: 48.5,-26.5 - parent: 127 - type: Transform -- uid: 6344 - type: CableApcExtension - components: - - pos: 47.5,-18.5 - parent: 127 - type: Transform -- uid: 6345 - type: Table - components: - - pos: 36.5,-26.5 - parent: 127 - type: Transform -- uid: 6346 - type: Table - components: - - pos: 36.5,-27.5 - parent: 127 - type: Transform -- uid: 6347 - type: Table - components: - - pos: 36.5,-28.5 - parent: 127 - type: Transform -- uid: 6348 - type: Table - components: - - pos: 37.5,-28.5 - parent: 127 - type: Transform -- uid: 6349 - type: Table - components: - - pos: 39.5,-27.5 - parent: 127 - type: Transform -- uid: 6350 - type: WeaponSubMachineGunVector - components: - - pos: 36.50038,-26.309816 - parent: 127 - type: Transform -- uid: 6351 - type: SheetPlastic - components: - - pos: 39.607174,-27.476545 - parent: 127 - type: Transform -- uid: 6352 - type: SheetSteel - components: - - pos: 39.357174,-27.445295 - parent: 127 - type: Transform -- uid: 6353 - type: SheetSteel - components: - - pos: -1.5772364,-10.473707 - parent: 127 - type: Transform -- uid: 6354 - type: SheetGlass - components: - - pos: -1.3897364,-10.458082 - parent: 127 - type: Transform -- uid: 6355 - type: CableMV - components: - - pos: 5.5,-25.5 - parent: 127 - type: Transform -- uid: 6356 - type: WallSolid - components: - - pos: -2.5,-20.5 - parent: 127 - type: Transform -- uid: 6357 - type: WallSolid - components: - - pos: -2.5,-19.5 - parent: 127 - type: Transform -- uid: 6358 - type: WallSolid - components: - - pos: -2.5,-18.5 - parent: 127 - type: Transform -- uid: 6359 - type: WallSolid - components: - - pos: -1.5,-18.5 - parent: 127 - type: Transform -- uid: 6360 - type: WallSolid - components: - - pos: -0.5,-18.5 - parent: 127 - type: Transform -- uid: 6361 - type: WallSolid - components: - - pos: -1.5,-20.5 - parent: 127 - type: Transform -- uid: 6362 - type: WallSolid - components: - - pos: -0.5,-20.5 - parent: 127 - type: Transform -- uid: 6363 - type: Airlock - components: - - pos: -0.5,-19.5 - parent: 127 - type: Transform -- uid: 6364 - type: ToiletDirtyWater - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-19.5 - parent: 127 - type: Transform -- uid: 6365 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-19.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6366 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6367 - type: Grille - components: - - pos: -8.5,-17.5 - parent: 127 - type: Transform -- uid: 6368 - type: Grille - components: - - pos: -8.5,-16.5 - parent: 127 - type: Transform -- uid: 6369 - type: Grille - components: - - pos: -8.5,-15.5 - parent: 127 - type: Transform -- uid: 6370 - type: BoxMagazineMagnumSubMachineGun - components: - - pos: 36.513424,-26.46092 - parent: 127 - type: Transform -- uid: 6371 - type: WeaponSubMachineGunVectorRubber - components: - - pos: 44.442276,-18.28808 - parent: 127 - type: Transform -- uid: 6372 - type: MagazineMagnumSubMachineGunRubber - components: - - pos: 44.36415,-18.459955 - parent: 127 - type: Transform -- uid: 6373 - type: MagazineMagnumSubMachineGunRubber - components: - - pos: 44.67665,-18.44433 - parent: 127 - type: Transform -- uid: 6374 - type: WeaponShotgunKammerer - components: - - pos: 37.439682,-28.27342 - parent: 127 - type: Transform -- uid: 6375 - type: WeaponShotgunKammerer - components: - - pos: 37.439682,-28.445295 - parent: 127 - type: Transform -- uid: 6376 - type: BoxBeanbag - components: - - pos: 37.455307,-28.414045 - parent: 127 - type: Transform -- uid: 6377 - type: BoxShotgunIncendiary - components: - - pos: 37.455307,-28.42967 - parent: 127 - type: Transform -- uid: 6378 - type: BoxLethalshot - components: - - pos: 37.455307,-28.414045 - parent: 127 - type: Transform -- uid: 6379 - type: BoxLethalshot - components: - - pos: 37.455307,-28.414045 - parent: 127 - type: Transform -- uid: 6380 - type: WeaponLaserCarbine - components: - - pos: 36.502182,-27.11717 - parent: 127 - type: Transform -- uid: 6381 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-34.5 - parent: 127 - type: Transform -- uid: 6382 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-34.5 - parent: 127 - type: Transform -- uid: 6383 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-34.5 - parent: 127 - type: Transform -- uid: 6384 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-34.5 - parent: 127 - type: Transform -- uid: 6385 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-34.5 - parent: 127 - type: Transform -- uid: 6386 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-34.5 - parent: 127 - type: Transform -- uid: 6387 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-34.5 - parent: 127 - type: Transform -- uid: 6388 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-34.5 - parent: 127 - type: Transform -- uid: 6389 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-34.5 - parent: 127 - type: Transform -- uid: 6390 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-34.5 - parent: 127 - type: Transform -- uid: 6391 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-34.5 - parent: 127 - type: Transform -- uid: 6392 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-34.5 - parent: 127 - type: Transform -- uid: 6393 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-34.5 - parent: 127 - type: Transform -- uid: 6394 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-34.5 - parent: 127 - type: Transform -- uid: 6395 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-34.5 - parent: 127 - type: Transform -- uid: 6396 - type: DisposalPipe - components: - - pos: 6.5,-33.5 - parent: 127 - type: Transform -- uid: 6397 - type: DisposalPipe - components: - - pos: 6.5,-32.5 - parent: 127 - type: Transform -- uid: 6398 - type: DisposalPipe - components: - - pos: 6.5,-31.5 - parent: 127 - type: Transform -- uid: 6399 - type: DisposalPipe - components: - - pos: 6.5,-30.5 - parent: 127 - type: Transform -- uid: 6400 - type: DisposalPipe - components: - - pos: 6.5,-29.5 - parent: 127 - type: Transform -- uid: 6401 - type: DisposalPipe - components: - - pos: 5.5,-27.5 - parent: 127 - type: Transform -- uid: 6402 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 127 - type: Transform -- uid: 6403 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-26.5 - parent: 127 - type: Transform -- uid: 6404 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 127 - type: Transform -- uid: 6405 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-26.5 - parent: 127 - type: Transform -- uid: 6406 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-26.5 - parent: 127 - type: Transform -- uid: 6407 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-26.5 - parent: 127 - type: Transform -- uid: 6408 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-26.5 - parent: 127 - type: Transform -- uid: 6409 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-26.5 - parent: 127 - type: Transform -- uid: 6410 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 127 - type: Transform -- uid: 6411 - type: DisposalPipe - components: - - pos: -4.5,-25.5 - parent: 127 - type: Transform -- uid: 6412 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-34.5 - parent: 127 - type: Transform -- uid: 6413 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-34.5 - parent: 127 - type: Transform -- uid: 6414 - type: DisposalYJunction - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-26.5 - parent: 127 - type: Transform -- uid: 6415 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -4.5,-26.5 - parent: 127 - type: Transform -- uid: 6416 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 5.5,-28.5 - parent: 127 - type: Transform -- uid: 6417 - type: DisposalBend - components: - - pos: 6.5,-28.5 - parent: 127 - type: Transform -- uid: 6418 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 6.5,-34.5 - parent: 127 - type: Transform -- uid: 6419 - type: DisposalTrunk - components: - - pos: 13.5,-33.5 - parent: 127 - type: Transform -- uid: 6420 - type: DisposalTrunk - components: - - pos: 22.5,-33.5 - parent: 127 - type: Transform -- uid: 6421 - type: WeaponLaserCarbine - components: - - pos: 36.502182,-27.320295 - parent: 127 - type: Transform -- uid: 6422 - type: DisposalPipe - components: - - pos: 5.5,-25.5 - parent: 127 - type: Transform -- uid: 6423 - type: DisposalPipe - components: - - pos: 5.5,-24.5 - parent: 127 - type: Transform -- uid: 6424 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-23.5 - parent: 127 - type: Transform -- uid: 6425 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-23.5 - parent: 127 - type: Transform -- uid: 6426 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-23.5 - parent: 127 - type: Transform -- uid: 6427 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-23.5 - parent: 127 - type: Transform -- uid: 6428 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-23.5 - parent: 127 - type: Transform -- uid: 6429 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-22.5 - parent: 127 - type: Transform -- uid: 6430 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-21.5 - parent: 127 - type: Transform -- uid: 6431 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-20.5 - parent: 127 - type: Transform -- uid: 6432 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-19.5 - parent: 127 - type: Transform -- uid: 6433 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-18.5 - parent: 127 - type: Transform -- uid: 6434 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-16.5 - parent: 127 - type: Transform -- uid: 6435 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-15.5 - parent: 127 - type: Transform -- uid: 6436 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-14.5 - parent: 127 - type: Transform -- uid: 6437 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-13.5 - parent: 127 - type: Transform -- uid: 6438 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-12.5 - parent: 127 - type: Transform -- uid: 6439 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-11.5 - parent: 127 - type: Transform -- uid: 6440 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-10.5 - parent: 127 - type: Transform -- uid: 6441 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-10.5 - parent: 127 - type: Transform -- uid: 6442 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-10.5 - parent: 127 - type: Transform -- uid: 6443 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-10.5 - parent: 127 - type: Transform -- uid: 6444 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-10.5 - parent: 127 - type: Transform -- uid: 6445 - type: AirlockMaintLocked - components: - - pos: 7.5,-9.5 - parent: 127 - type: Transform -- uid: 6446 - type: DisposalPipe - components: - - pos: 9.5,-8.5 - parent: 127 - type: Transform -- uid: 6447 - type: DisposalPipe - components: - - pos: 9.5,-7.5 - parent: 127 - type: Transform -- uid: 6448 - type: DisposalPipe - components: - - pos: 9.5,-6.5 - parent: 127 - type: Transform -- uid: 6449 - type: DisposalPipe - components: - - pos: 9.5,-5.5 - parent: 127 - type: Transform -- uid: 6450 - type: DisposalPipe - components: - - pos: 9.5,-4.5 - parent: 127 - type: Transform -- uid: 6451 - type: DisposalPipe - components: - - pos: 9.5,-2.5 - parent: 127 - type: Transform -- uid: 6452 - type: DisposalPipe - components: - - pos: 9.5,-1.5 - parent: 127 - type: Transform -- uid: 6453 - type: DisposalPipe - components: - - pos: 9.5,-0.5 - parent: 127 - type: Transform -- uid: 6454 - type: DisposalJunction - components: - - pos: 9.5,-17.5 - parent: 127 - type: Transform -- uid: 6455 - type: DisposalJunctionFlipped - components: - - pos: 9.5,-10.5 - parent: 127 - type: Transform -- uid: 6456 - type: DisposalJunctionFlipped - components: - - pos: 9.5,-3.5 - parent: 127 - type: Transform -- uid: 6457 - type: DisposalJunction - components: - - pos: 9.5,1.5 - parent: 127 - type: Transform -- uid: 6458 - type: DisposalPipe - components: - - pos: 9.5,0.5 - parent: 127 - type: Transform -- uid: 6459 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 127 - type: Transform -- uid: 6460 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 127 - type: Transform -- uid: 6461 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 127 - type: Transform -- uid: 6462 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 127 - type: Transform -- uid: 6463 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 14.5,-2.5 - parent: 127 - type: Transform -- uid: 6464 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 14.5,-1.5 - parent: 127 - type: Transform -- uid: 6465 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 14.5,-0.5 - parent: 127 - type: Transform -- uid: 6466 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-17.5 - parent: 127 - type: Transform -- uid: 6467 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 127 - type: Transform -- uid: 6468 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-17.5 - parent: 127 - type: Transform -- uid: 6469 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-17.5 - parent: 127 - type: Transform -- uid: 6470 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-17.5 - parent: 127 - type: Transform -- uid: 6471 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-17.5 - parent: 127 - type: Transform -- uid: 6472 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-17.5 - parent: 127 - type: Transform -- uid: 6473 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-17.5 - parent: 127 - type: Transform -- uid: 6474 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-17.5 - parent: 127 - type: Transform -- uid: 6475 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-17.5 - parent: 127 - type: Transform -- uid: 6476 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-17.5 - parent: 127 - type: Transform -- uid: 6477 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-17.5 - parent: 127 - type: Transform -- uid: 6478 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-17.5 - parent: 127 - type: Transform -- uid: 6479 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 127 - type: Transform -- uid: 6480 - type: DisposalTrunk - components: - - pos: 15.5,-9.5 - parent: 127 - type: Transform -- uid: 6481 - type: DisposalTrunk - components: - - pos: 14.5,0.5 - parent: 127 - type: Transform -- uid: 6482 - type: DisposalPipe - components: - - pos: 5.5,-18.5 - parent: 127 - type: Transform -- uid: 6483 - type: DisposalPipe - components: - - pos: 5.5,-19.5 - parent: 127 - type: Transform -- uid: 6484 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 5.5,-20.5 - parent: 127 - type: Transform -- uid: 6485 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-10.5 - parent: 127 - type: Transform -- uid: 6486 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-3.5 - parent: 127 - type: Transform -- uid: 6487 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 9.5,2.5 - parent: 127 - type: Transform -- uid: 6488 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6489 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -8.5,1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6490 - type: GasPipeStraight - components: - - pos: -7.5,8.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6491 - type: GasPipeStraight - components: - - pos: -7.5,6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6492 - type: GasPipeStraight - components: - - pos: -7.5,3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6493 - type: GasPipeStraight - components: - - pos: -8.5,6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6494 - type: GasPipeStraight - components: - - pos: -8.5,4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6495 - type: GasPipeStraight - components: - - pos: -7.5,0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6496 - type: GasPipeStraight - components: - - pos: -8.5,0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6497 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6498 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6499 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6500 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6501 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6502 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6503 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6504 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6505 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-23.5 - parent: 127 - type: Transform -- uid: 6506 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-23.5 - parent: 127 - type: Transform -- uid: 6507 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-23.5 - parent: 127 - type: Transform -- uid: 6508 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-23.5 - parent: 127 - type: Transform -- uid: 6509 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-23.5 - parent: 127 - type: Transform -- uid: 6510 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-23.5 - parent: 127 - type: Transform -- uid: 6511 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-23.5 - parent: 127 - type: Transform -- uid: 6512 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-23.5 - parent: 127 - type: Transform -- uid: 6513 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-23.5 - parent: 127 - type: Transform -- uid: 6514 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-23.5 - parent: 127 - type: Transform -- uid: 6515 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-23.5 - parent: 127 - type: Transform -- uid: 6516 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-23.5 - parent: 127 - type: Transform -- uid: 6517 - type: WeaponPistolMk58 - components: - - pos: 36.424057,-27.86717 - parent: 127 - type: Transform -- uid: 6518 - type: WeaponPistolMk58 - components: - - pos: 36.549057,-27.89842 - parent: 127 - type: Transform -- uid: 6519 - type: WeaponPistolMk58 - components: - - pos: 36.658432,-27.96092 - parent: 127 - type: Transform -- uid: 6520 - type: BoxMagazinePistol - components: - - pos: 36.314682,-28.27342 - parent: 127 - type: Transform -- uid: 6521 - type: BoxMagazinePistol - components: - - pos: 36.517807,-28.33592 - parent: 127 - type: Transform -- uid: 6522 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-17.5 - parent: 127 - type: Transform -- uid: 6523 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-16.5 - parent: 127 - type: Transform -- uid: 6524 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-15.5 - parent: 127 - type: Transform -- uid: 6525 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-14.5 - parent: 127 - type: Transform -- uid: 6526 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-12.5 - parent: 127 - type: Transform -- uid: 6527 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-11.5 - parent: 127 - type: Transform -- uid: 6528 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-10.5 - parent: 127 - type: Transform -- uid: 6529 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-9.5 - parent: 127 - type: Transform -- uid: 6530 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-8.5 - parent: 127 - type: Transform -- uid: 6531 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-7.5 - parent: 127 - type: Transform -- uid: 6532 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-6.5 - parent: 127 - type: Transform -- uid: 6533 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-5.5 - parent: 127 - type: Transform -- uid: 6534 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-4.5 - parent: 127 - type: Transform -- uid: 6535 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-3.5 - parent: 127 - type: Transform -- uid: 6536 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-2.5 - parent: 127 - type: Transform -- uid: 6537 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-1.5 - parent: 127 - type: Transform -- uid: 6538 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,-0.5 - parent: 127 - type: Transform -- uid: 6539 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,0.5 - parent: 127 - type: Transform -- uid: 6540 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 22.5,2.5 - parent: 127 - type: Transform -- uid: 6541 - type: DisposalJunctionFlipped - components: - - pos: 22.5,1.5 - parent: 127 - type: Transform -- uid: 6542 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6543 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-13.5 - parent: 127 - type: Transform -- uid: 6544 - type: Table - components: - - pos: 43.5,-20.5 - parent: 127 - type: Transform -- uid: 6545 - type: WeaponDisabler - components: - - pos: 43.377003,-20.27517 - parent: 127 - type: Transform -- uid: 6546 - type: WeaponDisabler - components: - - pos: 43.455128,-20.384544 - parent: 127 - type: Transform -- uid: 6547 - type: WeaponDisabler - components: - - pos: 43.595753,-20.509544 - parent: 127 - type: Transform -- uid: 6548 - type: Stunbaton - components: - - pos: 44.267628,-20.30642 - parent: 127 - type: Transform -- uid: 6549 - type: Stunbaton - components: - - pos: 44.408253,-20.353294 - parent: 127 - type: Transform -- uid: 6550 - type: Stunbaton - components: - - pos: 44.580128,-20.415794 - parent: 127 - type: Transform -- uid: 6551 - type: BoxHandcuff - components: - - pos: 44.502003,-19.11892 - parent: 127 - type: Transform -- uid: 6552 - type: BoxZiptie - components: - - pos: 44.502003,-19.36892 - parent: 127 - type: Transform -- uid: 6553 - type: BoxFlashbang - components: - - pos: 44.502003,-19.65017 - parent: 127 - type: Transform -- uid: 6554 - type: BlastDoor - components: - - pos: 38.5,-24.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6278 - - port: Pressed - uid: 6265 - type: SignalReceiver -- uid: 6555 - type: WaterTankFull - components: - - pos: 51.5,-25.5 - parent: 127 - type: Transform -- uid: 6556 - type: Bucket - components: - - pos: 50.73387,-25.328007 - parent: 127 - type: Transform -- uid: 6557 - type: DisposalJunctionFlipped - components: - - pos: 22.5,-13.5 - parent: 127 - type: Transform -- uid: 6558 - type: BlockGameArcade - components: - - pos: 49.5,-20.5 - parent: 127 - type: Transform -- uid: 6559 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6560 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 24.5,-2.5 - parent: 127 - type: Transform -- uid: 6561 - type: DisposalBend - components: - - pos: 29.5,-2.5 - parent: 127 - type: Transform -- uid: 6562 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 29.5,-5.5 - parent: 127 - type: Transform -- uid: 6563 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-5.5 - parent: 127 - type: Transform -- uid: 6564 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 127 - type: Transform -- uid: 6565 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-5.5 - parent: 127 - type: Transform -- uid: 6566 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-5.5 - parent: 127 - type: Transform -- uid: 6567 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-5.5 - parent: 127 - type: Transform -- uid: 6568 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,-4.5 - parent: 127 - type: Transform -- uid: 6569 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,-3.5 - parent: 127 - type: Transform -- uid: 6570 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-2.5 - parent: 127 - type: Transform -- uid: 6571 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 127 - type: Transform -- uid: 6572 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-2.5 - parent: 127 - type: Transform -- uid: 6573 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-2.5 - parent: 127 - type: Transform -- uid: 6574 - type: DisposalPipe - components: - - pos: 24.5,-1.5 - parent: 127 - type: Transform -- uid: 6575 - type: DisposalPipe - components: - - pos: 24.5,-0.5 - parent: 127 - type: Transform -- uid: 6576 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6577 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6578 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -7.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6579 - type: GasPipeBend - components: - - pos: -3.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6580 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6581 - type: GasPipeBend - components: - - pos: -4.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6582 - type: GasPipeFourway - components: - - pos: -1.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6583 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -3.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6584 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -4.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6585 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6586 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6587 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6588 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6589 - type: GasPipeFourway - components: - - pos: -0.5,-3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6590 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6591 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6592 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6593 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6594 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 3.5,15.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6595 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,15.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6596 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 3.5,16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6597 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,15.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6598 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,15.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6599 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6600 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -2.5,20.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6601 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6602 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -0.5,20.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6603 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,21.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6604 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,3.5 - parent: 127 - type: Transform -- uid: 6605 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,2.5 - parent: 127 - type: Transform -- uid: 6606 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,2.5 - parent: 127 - type: Transform -- uid: 6607 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,2.5 - parent: 127 - type: Transform -- uid: 6608 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,2.5 - parent: 127 - type: Transform -- uid: 6609 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,2.5 - parent: 127 - type: Transform -- uid: 6610 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 127 - type: Transform -- uid: 6611 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 16.5,2.5 - parent: 127 - type: Transform -- uid: 6612 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6613 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,21.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6614 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6615 - type: ShuttersNormal - components: - - pos: 24.5,-5.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -89450.18 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6634 - type: SignalReceiver -- uid: 6616 - type: ShuttersNormal - components: - - pos: 24.5,-4.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -89450.18 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6634 - type: SignalReceiver -- uid: 6617 - type: ShuttersNormal - components: - - pos: 24.5,-7.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -89450.18 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6634 - type: SignalReceiver -- uid: 6618 - type: ShuttersWindow - components: - - pos: 24.5,-6.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -89450.18 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6634 - type: SignalReceiver -- uid: 6619 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: 12.132873,-8.18521 - parent: 127 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6629 - - port: Toggle - uid: 6628 - - port: Toggle - uid: 6626 - - port: Toggle - uid: 6620 - - port: Toggle - uid: 6621 - - port: Toggle - uid: 6622 - - port: Toggle - uid: 6623 - - port: Toggle - uid: 6624 - - port: Toggle - uid: 6625 - - port: Toggle - uid: 6627 - - port: Toggle - uid: 6631 - - port: Toggle - uid: 6630 - type: SignalTransmitter -- uid: 6620 - type: ShuttersNormal - components: - - pos: 13.5,-5.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -90501.055 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6619 - type: SignalReceiver -- uid: 6621 - type: ShuttersNormal - components: - - pos: 14.5,-5.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -90501.055 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6619 - type: SignalReceiver -- uid: 6622 - type: ShuttersNormal - components: - - pos: 15.5,-5.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -90501.055 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6619 - type: SignalReceiver -- uid: 6623 - type: ShuttersNormal - components: - - pos: 16.5,-5.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -90501.055 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6619 - type: SignalReceiver -- uid: 6624 - type: ShuttersNormal - components: - - pos: 17.5,-5.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -90501.055 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6619 - type: SignalReceiver -- uid: 6625 - type: ShuttersNormal - components: - - pos: 18.5,-5.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -90501.055 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6619 - type: SignalReceiver -- uid: 6626 - type: ShuttersWindow - components: - - pos: 12.5,-5.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -90501.055 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6619 - type: SignalReceiver -- uid: 6627 - type: ShuttersWindow - components: - - pos: 19.5,-5.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -90501.055 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6619 - type: SignalReceiver -- uid: 6628 - type: ShuttersNormal - components: - - pos: 11.5,-6.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -90501.055 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6619 - type: SignalReceiver -- uid: 6629 - type: ShuttersNormal - components: - - pos: 11.5,-7.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -90501.055 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6619 - type: SignalReceiver -- uid: 6630 - type: ShuttersNormal - components: - - pos: 20.5,-6.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -90501.055 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6619 - type: SignalReceiver -- uid: 6631 - type: ShuttersNormal - components: - - pos: 20.5,-7.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -90501.055 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6619 - type: SignalReceiver -- uid: 6632 - type: ShuttersNormal - components: - - pos: 20.5,-9.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -90416.45 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6644 - type: SignalReceiver -- uid: 6633 - type: ShuttersNormal - components: - - pos: 20.5,-11.5 - parent: 127 - type: Transform - - SecondsUntilStateChange: -90416.45 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6644 - type: SignalReceiver -- uid: 6634 - type: SignalButton - components: - - rot: -1.5707963267948966 rad - pos: 28.224934,-6.5914598 - parent: 127 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 6617 - - port: Toggle - uid: 6618 - - port: Toggle - uid: 6615 - - port: Toggle - uid: 6616 - type: SignalTransmitter -- uid: 6635 - type: FirelockGlass - components: - - pos: 12.5,-5.5 - parent: 127 - type: Transform -- uid: 6636 - type: FirelockGlass - components: - - pos: 19.5,-5.5 - parent: 127 - type: Transform -- uid: 6637 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 13.5,-5.5 - parent: 127 - type: Transform -- uid: 6638 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 14.5,-5.5 - parent: 127 - type: Transform -- uid: 6639 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 15.5,-5.5 - parent: 127 - type: Transform -- uid: 6640 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 16.5,-5.5 - parent: 127 - type: Transform -- uid: 6641 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 17.5,-5.5 - parent: 127 - type: Transform -- uid: 6642 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 18.5,-5.5 - parent: 127 - type: Transform -- uid: 6643 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 49.5,-21.5 - parent: 127 - type: Transform -- uid: 6644 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: 18.944899,-12.169585 - parent: 127 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 6633 - - port: Toggle - uid: 6632 - type: SignalTransmitter -- uid: 6645 - type: Table - components: - - pos: 49.5,-19.5 - parent: 127 - type: Transform -- uid: 6646 - type: Table - components: - - pos: 49.5,-24.5 - parent: 127 - type: Transform -- uid: 6647 - type: Table - components: - - pos: 49.5,-25.5 - parent: 127 - type: Transform -- uid: 6648 - type: KitchenMicrowave - components: - - pos: 49.5,-24.5 - parent: 127 - type: Transform -- uid: 6649 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,20.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6650 - type: HydroponicsToolMiniHoe - components: - - pos: 49.515717,-25.377628 - parent: 127 - type: Transform -- uid: 6651 - type: GasPipeStraight - components: - - pos: -0.5,17.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6652 - type: GasPipeStraight - components: - - pos: -0.5,18.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6653 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6654 - type: GasPipeStraight - components: - - pos: -0.5,15.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6655 - type: GasPipeStraight - components: - - pos: -0.5,14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6656 - type: GasPipeStraight - components: - - pos: -1.5,18.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6657 - type: GasPipeStraight - components: - - pos: -1.5,17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6658 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,13.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6659 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,13.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6660 - type: CableApcExtension - components: - - pos: 6.5,10.5 - parent: 127 - type: Transform -- uid: 6661 - type: CableApcExtension - components: - - pos: 5.5,10.5 - parent: 127 - type: Transform -- uid: 6662 - type: CableApcExtension - components: - - pos: 4.5,10.5 - parent: 127 - type: Transform -- uid: 6663 - type: CableApcExtension - components: - - pos: 3.5,10.5 - parent: 127 - type: Transform -- uid: 6664 - type: CableApcExtension - components: - - pos: 2.5,10.5 - parent: 127 - type: Transform -- uid: 6665 - type: CableApcExtension - components: - - pos: 1.5,10.5 - parent: 127 - type: Transform -- uid: 6666 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,10.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6667 - type: GasVentScrubber - components: - - pos: 2.5,12.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6668 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 6.5,11.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6669 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 6.5,10.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6670 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,11.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6671 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,10.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6672 - type: SpawnPointHeadOfSecurity - components: - - pos: 34.5,-16.5 - parent: 127 - type: Transform -- uid: 6673 - type: SheetPaper - components: - - pos: 21.311708,-26.44335 - parent: 127 - type: Transform -- uid: 6674 - type: SheetPaper - components: - - pos: 21.577333,-26.4746 - parent: 127 - type: Transform -- uid: 6675 - type: SpawnPointSecurityCadet - components: - - pos: 37.5,-22.5 - parent: 127 - type: Transform -- uid: 6676 - type: SignDirectionalGravity - components: - - rot: -1.5707963267948966 rad - pos: 13.515624,-32.784317 - parent: 127 - type: Transform -- uid: 6677 - type: SpawnPointSecurityOfficer - components: - - pos: 33.5,-19.5 - parent: 127 - type: Transform -- uid: 6678 - type: SpawnPointSecurityOfficer - components: - - pos: 34.5,-19.5 - parent: 127 - type: Transform -- uid: 6679 - type: SpawnPointLawyer - components: - - pos: 37.5,-20.5 - parent: 127 - type: Transform -- uid: 6680 - type: SpawnPointDetective - components: - - pos: 43.5,-25.5 - parent: 127 - type: Transform -- uid: 6681 - type: SpawnPointWarden - components: - - pos: 27.5,-16.5 - parent: 127 - type: Transform -- uid: 6682 - type: RandomSpawner - components: - - pos: 28.5,-19.5 - parent: 127 - type: Transform -- uid: 6683 - type: RandomSpawner - components: - - pos: 31.5,-17.5 - parent: 127 - type: Transform -- uid: 6684 - type: RandomSpawner - components: - - pos: 27.5,-22.5 - parent: 127 - type: Transform -- uid: 6685 - type: RandomSpawner - components: - - pos: 36.5,-23.5 - parent: 127 - type: Transform -- uid: 6686 - type: RandomSpawner - components: - - pos: 41.5,-19.5 - parent: 127 - type: Transform -- uid: 6687 - type: RandomSpawner - components: - - pos: 44.5,-23.5 - parent: 127 - type: Transform -- uid: 6688 - type: SurveillanceCameraRouterGeneral - components: - - pos: 1.5,-33.5 - parent: 127 - type: Transform -- uid: 6689 - type: FireAlarm - components: - - pos: 4.5,-15.5 - parent: 127 - type: Transform - - devices: - - 4560 - - 4561 - - 2934 - - 2631 - type: DeviceList -- uid: 6690 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-7.5 - parent: 127 - type: Transform - - devices: - - 2956 - - 2957 - - 2958 - - 2959 - - 2962 - - 2963 - - 2964 - type: DeviceList -- uid: 6691 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,10.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6692 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,11.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6693 - type: RandomSpawner - components: - - pos: 50.5,-19.5 - parent: 127 - type: Transform -- uid: 6694 - type: FireAlarm - components: - - pos: 31.5,-2.5 - parent: 127 - type: Transform - - devices: - - 1174 - - 1175 - - 2971 - - 2972 - type: DeviceList -- uid: 6695 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,11.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6696 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,11.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6697 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,11.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6698 - type: RandomPosterLegit - components: - - pos: 24.5,-13.5 - parent: 127 - type: Transform -- uid: 6699 - type: FireAlarm - components: - - pos: 20.5,-32.5 - parent: 127 - type: Transform - - devices: - - 4549 - - 4550 - - 4551 - - 4552 - type: DeviceList -- uid: 6700 - type: RandomSpawner - components: - - pos: 49.5,-26.5 - parent: 127 - type: Transform -- uid: 6701 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-27.5 - parent: 127 - type: Transform - - devices: - - 4556 - - 4555 - - 4558 - - 4557 - - 4549 - - 4550 - - 4551 - type: DeviceList -- uid: 6702 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 127 - type: Transform - - devices: - - 3540 - - 3539 - - 3538 - - 2957 - - 2956 - type: DeviceList -- uid: 6703 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,11.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6704 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,17.5 - parent: 127 - type: Transform -- uid: 6705 - type: AcousticGuitarInstrument - components: - - pos: -5.5379877,-36.458385 - parent: 127 - type: Transform -- uid: 6706 - type: RandomPainting - components: - - pos: 19.5,-32.5 - parent: 127 - type: Transform -- uid: 6707 - type: RandomPainting - components: - - pos: 9.5,-32.5 - parent: 127 - type: Transform -- uid: 6708 - type: RandomPainting - components: - - pos: 28.5,-4.5 - parent: 127 - type: Transform -- uid: 6709 - type: RandomPainting - components: - - pos: 38.5,-7.5 - parent: 127 - type: Transform -- uid: 6710 - type: WarpPoint - components: - - pos: 32.5,-19.5 - parent: 127 - type: Transform - - location: sec - type: WarpPoint -- uid: 6711 - type: RandomPainting - components: - - pos: 34.5,0.5 - parent: 127 - type: Transform -- uid: 6712 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,16.5 - parent: 127 - type: Transform -- uid: 6713 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,15.5 - parent: 127 - type: Transform -- uid: 6714 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,14.5 - parent: 127 - type: Transform -- uid: 6715 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,13.5 - parent: 127 - type: Transform -- uid: 6716 - type: RandomPainting - components: - - pos: 2.5,-14.5 - parent: 127 - type: Transform -- uid: 6717 - type: RandomPainting - components: - - pos: -1.5,-13.5 - parent: 127 - type: Transform -- uid: 6718 - type: RandomPainting - components: - - pos: 1.5,-18.5 - parent: 127 - type: Transform -- uid: 6719 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,12.5 - parent: 127 - type: Transform -- uid: 6720 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,2.5 - parent: 127 - type: Transform -- uid: 6721 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,1.5 - parent: 127 - type: Transform -- uid: 6722 - type: DisposalPipe - components: - - pos: 24.5,0.5 - parent: 127 - type: Transform -- uid: 6723 - type: Catwalk - components: - - pos: -8.5,-5.5 - parent: 127 - type: Transform -- uid: 6724 - type: Catwalk - components: - - pos: 33.5,20.5 - parent: 127 - type: Transform -- uid: 6725 - type: Catwalk - components: - - pos: 36.5,19.5 - parent: 127 - type: Transform -- uid: 6726 - type: DisposalBend - components: - - pos: 24.5,1.5 - parent: 127 - type: Transform -- uid: 6727 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6728 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6729 - type: CableMV - components: - - pos: -19.5,-2.5 - parent: 127 - type: Transform -- uid: 6730 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,21.5 - parent: 127 - type: Transform -- uid: 6731 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -2.5,21.5 - parent: 127 - type: Transform -- uid: 6732 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,20.5 - parent: 127 - type: Transform -- uid: 6733 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,19.5 - parent: 127 - type: Transform -- uid: 6734 - type: Catwalk - components: - - pos: 22.5,10.5 - parent: 127 - type: Transform -- uid: 6735 - type: WarpPoint - components: - - pos: 50.5,-22.5 - parent: 127 - type: Transform - - location: perma - type: WarpPoint -- uid: 6736 - type: CannabisSeeds - components: - - pos: 50.69559,-21.333729 - parent: 127 - type: Transform -- uid: 6737 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,18.5 - parent: 127 - type: Transform -- uid: 6738 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,17.5 - parent: 127 - type: Transform -- uid: 6739 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,16.5 - parent: 127 - type: Transform -- uid: 6740 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,10.5 - parent: 127 - type: Transform -- uid: 6741 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,15.5 - parent: 127 - type: Transform -- uid: 6742 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,14.5 - parent: 127 - type: Transform -- uid: 6743 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,13.5 - parent: 127 - type: Transform -- uid: 6744 - type: Catwalk - components: - - pos: -4.5,-21.5 - parent: 127 - type: Transform -- uid: 6745 - type: FoodFrozenSandwichStrawberry - components: - - pos: 65.41908,-5.4665427 - parent: 127 - type: Transform -- uid: 6746 - type: ClothingNeckCloakTrans - components: - - pos: 8.47924,-33.38573 - parent: 127 - type: Transform -- uid: 6747 - type: AppleSeeds - components: - - pos: 50.054966,-21.864979 - parent: 127 - type: Transform -- uid: 6748 - type: ClothingShoesSpaceNinja - components: - - pos: 59.46289,-12.439133 - parent: 127 - type: Transform -- uid: 6749 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 3.5,-33.5 - parent: 127 - type: Transform -- uid: 6750 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-20.5 - parent: 127 - type: Transform - - devices: - - 5407 - - 5408 - - invalid - - 5250 - - 5077 - - 5076 - - 3540 - - 3539 - - 3538 - - 2957 - - 2956 - - 6916 - type: DeviceList -- uid: 6751 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-34.5 - parent: 127 - type: Transform - - id: Grav Gen - type: SurveillanceCamera -- uid: 6752 - type: AirAlarm - components: - - pos: 1.5,-15.5 - parent: 127 - type: Transform - - devices: - - 4560 - - 4561 - - 2934 - - 2631 - - 5455 - - 5456 - - 5453 - - 5451 - - 5468 - - 5454 - - 5450 - - 5452 - - 5431 - - 5434 - - 5433 - - 5432 - - 5481 - - 5480 - type: DeviceList -- uid: 6753 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 127 - type: Transform - - devices: - - 5521 - - 5519 - - 5482 - - 5483 - - 5544 - - 5542 - - 2964 - - 2963 - - 2962 - - 2968 - - 2969 - - 2967 - - 2966 - - 2965 - - 6636 - - 6642 - - 6641 - - 6640 - - 6639 - - 6638 - - 6637 - - 6635 - - 2958 - - 2959 - - 2956 - - 2957 - type: DeviceList -- uid: 6754 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-8.5 - parent: 127 - type: Transform - - devices: - - 5031 - - 5030 - - invalid - - 5052 - - 2970 - - 2961 - - 2960 - - 2965 - - 2966 - - 2967 - - 7843 - - 7842 - type: DeviceList -- uid: 6755 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-14.5 - parent: 127 - type: Transform - - devices: - - invalid - - 5036 - - 5035 - - 2974 - - 2973 - - 2961 - - 2960 - - 6086 - - 6085 - - 3525 - - 3537 - - 3529 - - 5250 - - 6916 - type: DeviceList -- uid: 6756 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,12.5 - parent: 127 - type: Transform -- uid: 6757 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,11.5 - parent: 127 - type: Transform -- uid: 6758 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,9.5 - parent: 127 - type: Transform -- uid: 6759 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,8.5 - parent: 127 - type: Transform -- uid: 6760 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,7.5 - parent: 127 - type: Transform -- uid: 6761 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,6.5 - parent: 127 - type: Transform -- uid: 6762 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,5.5 - parent: 127 - type: Transform -- uid: 6763 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 33.5,-6.5 - parent: 127 - type: Transform - - devices: - - 4924 - - invalid - - 4961 - - 4960 - - 4995 - - 4994 - - 5046 - - 5047 - - 4993 - - 4992 - - 4984 - - 4983 - - 1175 - - 1174 - - 2972 - - 2971 - type: DeviceList -- uid: 6764 - type: AppleSeeds - components: - - pos: 50.556458,-22.362696 - parent: 127 - type: Transform -- uid: 6765 - type: BananaSeeds - components: - - pos: 50.60184,-23.052479 - parent: 127 - type: Transform -- uid: 6766 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-26.5 - parent: 127 - type: Transform - - devices: - - 5279 - - 5278 - - 4176 - - 4173 - - 5265 - - 5266 - - 4556 - - 4555 - - 4558 - - 4557 - - 4549 - - 4550 - - 4551 - type: DeviceList -- uid: 6767 - type: AirAlarm - components: - - pos: 11.5,-32.5 - parent: 127 - type: Transform - - devices: - - 5364 - - 5366 - - 5367 - - 5365 - - 5291 - - 5290 - - 4549 - - 4550 - - 4551 - - 4552 - type: DeviceList -- uid: 6768 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-7.5 - parent: 127 - type: Transform - - id: Bridge - type: SurveillanceCamera -- uid: 6769 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 39.5,0.5 - parent: 127 - type: Transform - - id: Meeting Room - type: SurveillanceCamera -- uid: 6770 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 34.5,-0.5 - parent: 127 - type: Transform - - id: Captain's Bedroom - type: SurveillanceCamera -- uid: 6771 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-4.5 - parent: 127 - type: Transform - - id: Bridge Hallway - type: SurveillanceCamera -- uid: 6772 - type: SurveillanceCameraCommand - components: - - pos: 24.5,-2.5 - parent: 127 - type: Transform - - id: Bridge Entrance - type: SurveillanceCamera -- uid: 6773 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-6.5 - parent: 127 - type: Transform - - id: HoP's Office - type: SurveillanceCamera -- uid: 6774 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-9.5 - parent: 127 - type: Transform - - id: HoP's Bedroom - type: SurveillanceCamera -- uid: 6775 - type: SurveillanceCameraCommand - components: - - pos: 36.5,-9.5 - parent: 127 - type: Transform - - id: Vault - type: SurveillanceCamera -- uid: 6776 - type: SurveillanceCameraCommand - components: - - pos: 57.5,-10.5 - parent: 127 - type: Transform - - id: AI Entrance - type: SurveillanceCamera -- uid: 6777 - type: SurveillanceCameraCommand - components: - - pos: 61.5,-9.5 - parent: 127 - type: Transform - - id: AI Power Room - type: SurveillanceCamera -- uid: 6778 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 56.5,-0.5 - parent: 127 - type: Transform - - id: AI Room - type: SurveillanceCamera -- uid: 6779 - type: SurveillanceCameraRouterService - components: - - pos: 1.5,-34.5 - parent: 127 - type: Transform -- uid: 6780 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,4.5 - parent: 127 - type: Transform -- uid: 6781 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 127 - type: Transform -- uid: 6782 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 127 - type: Transform -- uid: 6783 - type: DisposalYJunction - components: - - rot: 1.5707963267948966 rad - pos: 1.5,1.5 - parent: 127 - type: Transform -- uid: 6784 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 12.5,16.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6785 - type: GasMinerNitrogen - components: - - rot: -1.5707963267948966 rad - pos: 47.5,6.5 - parent: 127 - type: Transform -- uid: 6786 - type: GasMinerPlasma - components: - - rot: -1.5707963267948966 rad - pos: 47.5,10.5 - parent: 127 - type: Transform -- uid: 6787 - type: WarningO2 - components: - - pos: 45.5,3.5 - parent: 127 - type: Transform -- uid: 6788 - type: WarningCO2 - components: - - pos: 45.5,7.5 - parent: 127 - type: Transform -- uid: 6789 - type: WarningPlasma - components: - - pos: 45.5,9.5 - parent: 127 - type: Transform -- uid: 6790 - type: WarningWaste - components: - - pos: 45.5,11.5 - parent: 127 - type: Transform -- uid: 6791 - type: WarningN2O - components: - - pos: 45.5,15.5 - parent: 127 - type: Transform -- uid: 6792 - type: GasMinerCarbonDioxide - components: - - rot: -1.5707963267948966 rad - pos: 47.5,8.5 - parent: 127 - type: Transform -- uid: 6793 - type: GasMinerWaterVapor - components: - - rot: -1.5707963267948966 rad - pos: 47.5,12.5 - parent: 127 - type: Transform -- uid: 6794 - type: WarningN2 - components: - - pos: 45.5,5.5 - parent: 127 - type: Transform -- uid: 6795 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6796 - type: WarningTritium - components: - - pos: 45.5,13.5 - parent: 127 - type: Transform -- uid: 6797 - type: GasMinerOxygen - components: - - rot: -1.5707963267948966 rad - pos: 47.5,4.5 - parent: 127 - type: Transform -- uid: 6798 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6799 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6800 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6801 - type: CableMV - components: - - pos: -19.5,-1.5 - parent: 127 - type: Transform -- uid: 6802 - type: BananaSeeds - components: - - pos: 50.07059,-23.208729 - parent: 127 - type: Transform -- uid: 6803 - type: PoppySeeds - components: - - pos: 50.586216,-23.755604 - parent: 127 - type: Transform -- uid: 6804 - type: HydroponicsToolClippers - components: - - pos: 49.46884,-25.408878 - parent: 127 - type: Transform -- uid: 6805 - type: HydroponicsToolSpade - components: - - pos: 49.546967,-25.346378 - parent: 127 - type: Transform -- uid: 6806 - type: PortableFlasher - components: - - pos: 37.5,-26.5 - parent: 127 - type: Transform -- uid: 6807 - type: CableApcExtension - components: - - pos: 57.5,-25.5 - parent: 127 - type: Transform -- uid: 6808 - type: CableApcExtension - components: - - pos: 58.5,-25.5 - parent: 127 - type: Transform -- uid: 6809 - type: CableApcExtension - components: - - pos: 59.5,-25.5 - parent: 127 - type: Transform -- uid: 6810 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6811 - type: CableApcExtension - components: - - pos: -19.5,0.5 - parent: 127 - type: Transform -- uid: 6812 - type: CableApcExtension - components: - - pos: -19.5,-1.5 - parent: 127 - type: Transform -- uid: 6813 - type: CableApcExtension - components: - - pos: -21.5,-1.5 - parent: 127 - type: Transform -- uid: 6814 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 30.5,1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6815 - type: CableApcExtension - components: - - pos: 60.5,-25.5 - parent: 127 - type: Transform -- uid: 6816 - type: PowerCellRecharger - components: - - pos: 18.5,-5.5 - parent: 127 - type: Transform -- uid: 6817 - type: CableApcExtension - components: - - pos: 61.5,-25.5 - parent: 127 - type: Transform -- uid: 6818 - type: SurveillanceCameraGeneral - components: - - pos: 13.5,-23.5 - parent: 127 - type: Transform - - id: South Hall 1 - type: SurveillanceCamera -- uid: 6819 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-14.5 - parent: 127 - type: Transform - - id: Southwest Hall - type: SurveillanceCamera -- uid: 6820 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 127 - type: Transform - - id: Northwest Hall - type: SurveillanceCamera -- uid: 6821 - type: PottedPlantRandom - components: - - pos: 8.5,-35.5 - parent: 127 - type: Transform -- uid: 6822 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 127 - type: Transform - - id: Northeast Hall - type: SurveillanceCamera -- uid: 6823 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-16.5 - parent: 127 - type: Transform - - id: Southeast Hall - type: SurveillanceCamera -- uid: 6824 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 4.5,-16.5 - parent: 127 - type: Transform - - id: Tool Room and Dorms - type: SurveillanceCamera -- uid: 6825 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-27.5 - parent: 127 - type: Transform - - id: South Hall 2 - type: SurveillanceCamera -- uid: 6826 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 9.5,-33.5 - parent: 127 - type: Transform - - id: Evac 2 - type: SurveillanceCamera -- uid: 6827 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 20.5,-33.5 - parent: 127 - type: Transform - - id: Evac 1 - type: SurveillanceCamera -- uid: 6828 - type: CableApcExtension - components: - - pos: 61.5,-26.5 - parent: 127 - type: Transform -- uid: 6829 - type: CableApcExtension - components: - - pos: 61.5,-27.5 - parent: 127 - type: Transform -- uid: 6830 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: 19.5,-28.5 - parent: 127 - type: Transform - - id: Library - type: SurveillanceCamera -- uid: 6831 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: 11.5,-28.5 - parent: 127 - type: Transform - - id: Chapel - type: SurveillanceCamera -- uid: 6832 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: 10.5,-25.5 - parent: 127 - type: Transform - - id: Chaplain's Room - type: SurveillanceCamera -- uid: 6833 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: 16.5,-16.5 - parent: 127 - type: Transform - - id: Botany - type: SurveillanceCamera -- uid: 6834 - type: SurveillanceCameraService - components: - - pos: 16.5,-11.5 - parent: 127 - type: Transform - - id: Kitchen - type: SurveillanceCamera -- uid: 6835 - type: SurveillanceCameraService - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-13.5 - parent: 127 - type: Transform - - id: Janitorial - type: SurveillanceCamera -- uid: 6836 - type: SurveillanceCameraService - components: - - pos: 14.5,-7.5 - parent: 127 - type: Transform - - id: Bar 1 - type: SurveillanceCamera -- uid: 6837 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: 14.5,0.5 - parent: 127 - type: Transform - - id: Bar 2 - type: SurveillanceCamera -- uid: 6838 - type: MaintenanceFluffSpawner - components: - - pos: 16.5,-21.5 - parent: 127 - type: Transform -- uid: 6839 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-30.5 - parent: 127 - type: Transform -- uid: 6840 - type: SignDirectionalEvac - components: - - pos: 11.427321,-15.74377 - parent: 127 - type: Transform -- uid: 6841 - type: SignDirectionalChapel - components: - - pos: 11.427321,-15.52502 - parent: 127 - type: Transform -- uid: 6842 - type: SignDirectionalBar - components: - - rot: 3.141592653589793 rad - pos: 11.427321,-15.321895 - parent: 127 - type: Transform -- uid: 6843 - type: SignDirectionalMed - components: - - rot: 3.141592653589793 rad - pos: 11.431894,-15.113614 - parent: 127 - type: Transform -- uid: 6844 - type: SignDirectionalSci - components: - - rot: 3.141592653589793 rad - pos: 11.431894,-14.894864 - parent: 127 - type: Transform -- uid: 6845 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: 11.431894,-14.676114 - parent: 127 - type: Transform -- uid: 6846 - type: PosterLegit50thAnniversaryVintageReprint - components: - - pos: 8.5,-1.5 - parent: 127 - type: Transform -- uid: 6847 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: 8.513467,-0.18703002 - parent: 127 - type: Transform -- uid: 6848 - type: SignDirectionalEvac - components: - - pos: 8.51474,-0.82765466 - parent: 127 - type: Transform -- uid: 6849 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: 8.513467,-0.40578002 - parent: 127 - type: Transform -- uid: 6850 - type: SignShipDock - components: - - pos: 12.5,-32.5 - parent: 127 - type: Transform -- uid: 6851 - type: SignDirectionalDorms - components: - - rot: -1.5707963267948966 rad - pos: 13.536816,-24.393354 - parent: 127 - type: Transform -- uid: 6852 - type: SignDirectionalEng - components: - - rot: 3.141592653589793 rad - pos: 17.461124,-24.19023 - parent: 127 - type: Transform -- uid: 6853 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: 17.462975,-24.388641 - parent: 127 - type: Transform -- uid: 6854 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: 17.467644,-24.591766 - parent: 127 - type: Transform -- uid: 6855 - type: SignDirectionalEvac - components: - - pos: 13.539011,-24.59648 - parent: 127 - type: Transform -- uid: 6856 - type: SignDirectionalMed - components: - - rot: 3.141592653589793 rad - pos: 13.539011,-24.205854 - parent: 127 - type: Transform -- uid: 6857 - type: SignDirectionalMed - components: - - rot: 3.141592653589793 rad - pos: 13.515624,-32.565567 - parent: 127 - type: Transform -- uid: 6858 - type: SignDirectionalBar - components: - - rot: 3.141592653589793 rad - pos: 13.515624,-32.362442 - parent: 127 - type: Transform -- uid: 6859 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: 20.564379,-14.170687 - parent: 127 - type: Transform -- uid: 6860 - type: SignDirectionalEng - components: - - rot: 3.141592653589793 rad - pos: 20.564379,-14.373812 - parent: 127 - type: Transform -- uid: 6861 - type: SignDirectionalEvac - components: - - pos: 20.567501,-14.563494 - parent: 127 - type: Transform -- uid: 6862 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6863 - type: GasPipeTJunction - components: - - pos: 27.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6864 - type: CableMV - components: - - pos: -19.5,0.5 - parent: 127 - type: Transform -- uid: 6865 - type: SignDirectionalSec - components: - - pos: 20.5,-8.5 - parent: 127 - type: Transform -- uid: 6866 - type: RandomPosterLegit - components: - - pos: 8.5,-14.5 - parent: 127 - type: Transform -- uid: 6867 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 26.5,1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6868 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6869 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6870 - type: GasPipeStraight - components: - - pos: 29.5,3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6871 - type: GasPipeStraight - components: - - pos: 29.5,4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6872 - type: GasPipeStraight - components: - - pos: 29.5,5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6873 - type: CableHV - components: - - pos: 35.5,-5.5 - parent: 127 - type: Transform -- uid: 6874 - type: TwoWayLever - components: - - pos: -4.5,-23.5 - parent: 127 - type: Transform - - outputs: - Left: - - port: Forward - uid: 4133 - Right: - - port: Reverse - uid: 4133 - Middle: - - port: Off - uid: 4133 - type: SignalTransmitter -- uid: 6875 - type: DisposalJunction - components: - - pos: 9.5,-9.5 - parent: 127 - type: Transform -- uid: 6876 - type: WallSolid - components: - - pos: 7.5,-10.5 - parent: 127 - type: Transform -- uid: 6877 - type: DisposalUnit - components: - - pos: 8.5,-10.5 - parent: 127 - type: Transform -- uid: 6878 - type: CableApcExtension - components: - - pos: 58.5,-37.5 - parent: 127 - type: Transform -- uid: 6879 - type: BoxLightMixed - components: - - pos: 6.077507,-21.411606 - parent: 127 - type: Transform -- uid: 6880 - type: CableApcExtension - components: - - pos: 59.5,-37.5 - parent: 127 - type: Transform -- uid: 6881 - type: BoxLightMixed - components: - - pos: 5.5185957,-14.410045 - parent: 127 - type: Transform -- uid: 6882 - type: CableMV - components: - - pos: -18.5,0.5 - parent: 127 - type: Transform -- uid: 6883 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6884 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,0.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6885 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6886 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6887 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6888 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 29.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6889 - type: Poweredlight - components: - - pos: -25.5,3.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6890 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -18.5,0.5 - parent: 127 - type: Transform -- uid: 6891 - type: GasPressurePump - components: - - name: distro pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 36.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6892 - type: GasPressurePump - components: - - name: waste pump - type: MetaData - - rot: 1.5707963267948966 rad - pos: 36.5,6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6893 - type: GasFilter - components: - - name: n20 filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 42.5,16.5 - parent: 127 - type: Transform -- uid: 6894 - type: GasFilter - components: - - name: tritium filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 42.5,14.5 - parent: 127 - type: Transform -- uid: 6895 - type: GasFilter - components: - - name: water vapor filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 42.5,12.5 - parent: 127 - type: Transform -- uid: 6896 - type: GasFilter - components: - - name: o2 filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 42.5,4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6897 - type: GasFilter - components: - - name: plasma filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 42.5,10.5 - parent: 127 - type: Transform -- uid: 6898 - type: GasFilter - components: - - name: co2 filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 42.5,8.5 - parent: 127 - type: Transform -- uid: 6899 - type: GasFilter - components: - - name: n2 pump - type: MetaData - - rot: 3.141592653589793 rad - pos: 42.5,6.5 - parent: 127 - type: Transform -- uid: 6900 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 46.5,4.5 - parent: 127 - type: Transform -- uid: 6901 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 46.5,6.5 - parent: 127 - type: Transform -- uid: 6902 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 46.5,8.5 - parent: 127 - type: Transform -- uid: 6903 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 46.5,10.5 - parent: 127 - type: Transform -- uid: 6904 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 46.5,12.5 - parent: 127 - type: Transform -- uid: 6905 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 46.5,14.5 - parent: 127 - type: Transform -- uid: 6906 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 46.5,16.5 - parent: 127 - type: Transform -- uid: 6907 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 46.5,18.5 - parent: 127 - type: Transform -- uid: 6908 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 46.5,20.5 - parent: 127 - type: Transform -- uid: 6909 - type: GasPassiveVent - components: - - pos: 48.5,4.5 - parent: 127 - type: Transform -- uid: 6910 - type: GasPassiveVent - components: - - pos: 48.5,6.5 - parent: 127 - type: Transform -- uid: 6911 - type: GasPassiveVent - components: - - pos: 48.5,8.5 - parent: 127 - type: Transform -- uid: 6912 - type: GasPassiveVent - components: - - pos: 48.5,10.5 - parent: 127 - type: Transform -- uid: 6913 - type: RandomSoap - components: - - pos: -1.5,-19.5 - parent: 127 - type: Transform -- uid: 6914 - type: RandomSoap - components: - - pos: -1.5,-21.5 - parent: 127 - type: Transform -- uid: 6915 - type: CableApcExtension - components: - - pos: 60.5,-37.5 - parent: 127 - type: Transform -- uid: 6916 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 17.5,-23.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6917 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 17.5,-21.5 - parent: 127 - type: Transform -- uid: 6918 - type: TableCarpet - components: - - pos: 19.5,-1.5 - parent: 127 - type: Transform -- uid: 6919 - type: CarpetGreen - components: - - pos: 18.5,-0.5 - parent: 127 - type: Transform -- uid: 6920 - type: CarpetGreen - components: - - pos: 19.5,-1.5 - parent: 127 - type: Transform -- uid: 6921 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 2.5,-12.5 - parent: 127 - type: Transform -- uid: 6922 - type: CarpetPurple - components: - - rot: 3.141592653589793 rad - pos: 3.5,-12.5 - parent: 127 - type: Transform -- uid: 6923 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -0.5,-12.5 - parent: 127 - type: Transform -- uid: 6924 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 0.5,-12.5 - parent: 127 - type: Transform -- uid: 6925 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -2.5,-12.5 - parent: 127 - type: Transform -- uid: 6926 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -3.5,-12.5 - parent: 127 - type: Transform -- uid: 6927 - type: CarpetBlue - components: - - rot: 3.141592653589793 rad - pos: 32.5,-1.5 - parent: 127 - type: Transform -- uid: 6928 - type: CarpetBlue - components: - - rot: 3.141592653589793 rad - pos: 32.5,-0.5 - parent: 127 - type: Transform -- uid: 6929 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 27.5,-9.5 - parent: 127 - type: Transform -- uid: 6930 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 27.5,-10.5 - parent: 127 - type: Transform -- uid: 6931 - type: GasPassiveVent - components: - - pos: 48.5,12.5 - parent: 127 - type: Transform -- uid: 6932 - type: GasPassiveVent - components: - - pos: 48.5,14.5 - parent: 127 - type: Transform -- uid: 6933 - type: GasPassiveVent - components: - - pos: 48.5,16.5 - parent: 127 - type: Transform -- uid: 6934 - type: GasPassiveVent - components: - - pos: 48.5,18.5 - parent: 127 - type: Transform -- uid: 6935 - type: GasPassiveVent - components: - - pos: 48.5,20.5 - parent: 127 - type: Transform -- uid: 6936 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 48.5,19.5 - parent: 127 - type: Transform -- uid: 6937 - type: CarpetBlack - components: - - rot: 3.141592653589793 rad - pos: 9.5,-25.5 - parent: 127 - type: Transform -- uid: 6938 - type: CarpetBlack - components: - - rot: 3.141592653589793 rad - pos: 9.5,-26.5 - parent: 127 - type: Transform -- uid: 6939 - type: CableApcExtension - components: - - pos: 60.5,-36.5 - parent: 127 - type: Transform -- uid: 6940 - type: CableApcExtension - components: - - pos: 60.5,-35.5 - parent: 127 - type: Transform -- uid: 6941 - type: CableApcExtension - components: - - pos: 61.5,-35.5 - parent: 127 - type: Transform -- uid: 6942 - type: CableApcExtension - components: - - pos: 22.5,-13.5 - parent: 127 - type: Transform -- uid: 6943 - type: CableApcExtension - components: - - pos: 62.5,-27.5 - parent: 127 - type: Transform -- uid: 6944 - type: CableApcExtension - components: - - pos: 63.5,-27.5 - parent: 127 - type: Transform -- uid: 6945 - type: Catwalk - components: - - pos: -2.5,-26.5 - parent: 127 - type: Transform -- uid: 6946 - type: Catwalk - components: - - pos: 9.5,5.5 - parent: 127 - type: Transform -- uid: 6947 - type: Catwalk - components: - - pos: -6.5,-6.5 - parent: 127 - type: Transform -- uid: 6948 - type: Catwalk - components: - - pos: -6.5,-7.5 - parent: 127 - type: Transform -- uid: 6949 - type: Catwalk - components: - - pos: 18.5,13.5 - parent: 127 - type: Transform -- uid: 6950 - type: Catwalk - components: - - pos: -6.5,-13.5 - parent: 127 - type: Transform -- uid: 6951 - type: Catwalk - components: - - pos: 5.5,-23.5 - parent: 127 - type: Transform -- uid: 6952 - type: Catwalk - components: - - pos: -6.5,-14.5 - parent: 127 - type: Transform -- uid: 6953 - type: Catwalk - components: - - pos: 4.5,21.5 - parent: 127 - type: Transform -- uid: 6954 - type: ToolboxMechanicalFilled - components: - - pos: -21.574106,8.718621 - parent: 127 - type: Transform - - nextAttack: 8411.1043649 - type: MeleeWeapon -- uid: 6955 - type: Catwalk - components: - - pos: 22.5,6.5 - parent: 127 - type: Transform -- uid: 6956 - type: Catwalk - components: - - pos: 21.5,12.5 - parent: 127 - type: Transform -- uid: 6957 - type: Catwalk - components: - - pos: -0.5,26.5 - parent: 127 - type: Transform -- uid: 6958 - type: Catwalk - components: - - pos: 1.5,23.5 - parent: 127 - type: Transform -- uid: 6959 - type: Catwalk - components: - - pos: 7.5,16.5 - parent: 127 - type: Transform -- uid: 6960 - type: Catwalk - components: - - pos: 6.5,13.5 - parent: 127 - type: Transform -- uid: 6961 - type: Catwalk - components: - - pos: 2.5,25.5 - parent: 127 - type: Transform -- uid: 6962 - type: Catwalk - components: - - pos: 6.5,18.5 - parent: 127 - type: Transform -- uid: 6963 - type: Catwalk - components: - - pos: 30.5,-13.5 - parent: 127 - type: Transform -- uid: 6964 - type: Catwalk - components: - - pos: 24.5,14.5 - parent: 127 - type: Transform -- uid: 6965 - type: Catwalk - components: - - pos: 2.5,20.5 - parent: 127 - type: Transform -- uid: 6966 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6967 - type: Catwalk - components: - - pos: -11.5,12.5 - parent: 127 - type: Transform -- uid: 6968 - type: Catwalk - components: - - pos: -16.5,9.5 - parent: 127 - type: Transform -- uid: 6969 - type: Catwalk - components: - - pos: -8.5,15.5 - parent: 127 - type: Transform -- uid: 6970 - type: Catwalk - components: - - pos: -16.5,11.5 - parent: 127 - type: Transform -- uid: 6971 - type: Catwalk - components: - - pos: -8.5,19.5 - parent: 127 - type: Transform -- uid: 6972 - type: Catwalk - components: - - pos: 40.5,-16.5 - parent: 127 - type: Transform -- uid: 6973 - type: Catwalk - components: - - pos: -7.5,16.5 - parent: 127 - type: Transform -- uid: 6974 - type: Catwalk - components: - - pos: 10.5,5.5 - parent: 127 - type: Transform -- uid: 6975 - type: Catwalk - components: - - pos: -5.5,-13.5 - parent: 127 - type: Transform -- uid: 6976 - type: Catwalk - components: - - pos: -6.5,24.5 - parent: 127 - type: Transform -- uid: 6977 - type: Catwalk - components: - - pos: -10.5,25.5 - parent: 127 - type: Transform -- uid: 6978 - type: Catwalk - components: - - pos: 25.5,18.5 - parent: 127 - type: Transform -- uid: 6979 - type: Catwalk - components: - - pos: 30.5,-12.5 - parent: 127 - type: Transform -- uid: 6980 - type: Catwalk - components: - - pos: 43.5,-16.5 - parent: 127 - type: Transform -- uid: 6981 - type: Catwalk - components: - - pos: 7.5,13.5 - parent: 127 - type: Transform -- uid: 6982 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -19.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6983 - type: Catwalk - components: - - pos: 10.5,14.5 - parent: 127 - type: Transform -- uid: 6984 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 6985 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6986 - type: MachineAPE - components: - - rot: 3.141592653589793 rad - pos: -17.5,-5.5 - parent: 127 - type: Transform -- uid: 6987 - type: MedkitFilled - components: - - pos: -21.462072,0.6159614 - parent: 127 - type: Transform -- uid: 6988 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 6989 - type: Catwalk - components: - - pos: 24.5,21.5 - parent: 127 - type: Transform -- uid: 6990 - type: Catwalk - components: - - pos: 28.5,22.5 - parent: 127 - type: Transform -- uid: 6991 - type: Catwalk - components: - - pos: 30.5,21.5 - parent: 127 - type: Transform -- uid: 6992 - type: Catwalk - components: - - pos: 29.5,21.5 - parent: 127 - type: Transform -- uid: 6993 - type: Catwalk - components: - - pos: 32.5,21.5 - parent: 127 - type: Transform -- uid: 6994 - type: Catwalk - components: - - pos: 6.5,19.5 - parent: 127 - type: Transform -- uid: 6995 - type: Catwalk - components: - - pos: 11.5,13.5 - parent: 127 - type: Transform -- uid: 6996 - type: Catwalk - components: - - pos: 9.5,11.5 - parent: 127 - type: Transform -- uid: 6997 - type: Catwalk - components: - - pos: 33.5,19.5 - parent: 127 - type: Transform -- uid: 6998 - type: Catwalk - components: - - pos: -11.5,21.5 - parent: 127 - type: Transform -- uid: 6999 - type: Catwalk - components: - - pos: -10.5,21.5 - parent: 127 - type: Transform -- uid: 7000 - type: Catwalk - components: - - pos: -7.5,22.5 - parent: 127 - type: Transform -- uid: 7001 - type: Catwalk - components: - - pos: -6.5,25.5 - parent: 127 - type: Transform -- uid: 7002 - type: Catwalk - components: - - pos: 5.5,-9.5 - parent: 127 - type: Transform -- uid: 7003 - type: Catwalk - components: - - pos: 5.5,-10.5 - parent: 127 - type: Transform -- uid: 7004 - type: Catwalk - components: - - pos: 5.5,-29.5 - parent: 127 - type: Transform -- uid: 7005 - type: Catwalk - components: - - pos: 9.5,10.5 - parent: 127 - type: Transform -- uid: 7006 - type: Catwalk - components: - - pos: 10.5,9.5 - parent: 127 - type: Transform -- uid: 7007 - type: Catwalk - components: - - pos: 21.5,13.5 - parent: 127 - type: Transform -- uid: 7008 - type: Catwalk - components: - - pos: 36.5,-13.5 - parent: 127 - type: Transform -- uid: 7009 - type: Catwalk - components: - - pos: 37.5,-13.5 - parent: 127 - type: Transform -- uid: 7010 - type: Catwalk - components: - - pos: 38.5,-15.5 - parent: 127 - type: Transform -- uid: 7011 - type: Catwalk - components: - - pos: 9.5,6.5 - parent: 127 - type: Transform -- uid: 7012 - type: Catwalk - components: - - pos: 3.5,20.5 - parent: 127 - type: Transform -- uid: 7013 - type: Catwalk - components: - - pos: 12.5,13.5 - parent: 127 - type: Transform -- uid: 7014 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-8.5 - parent: 127 - type: Transform -- uid: 7015 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-8.5 - parent: 127 - type: Transform -- uid: 7016 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-9.5 - parent: 127 - type: Transform -- uid: 7017 - type: Catwalk - components: - - pos: 44.5,-29.5 - parent: 127 - type: Transform -- uid: 7018 - type: Catwalk - components: - - pos: 60.5,-29.5 - parent: 127 - type: Transform -- uid: 7019 - type: Catwalk - components: - - pos: 60.5,-33.5 - parent: 127 - type: Transform -- uid: 7020 - type: Catwalk - components: - - pos: 56.5,-31.5 - parent: 127 - type: Transform -- uid: 7021 - type: Catwalk - components: - - pos: 56.5,-33.5 - parent: 127 - type: Transform -- uid: 7022 - type: Catwalk - components: - - pos: 56.5,-35.5 - parent: 127 - type: Transform -- uid: 7023 - type: Catwalk - components: - - pos: 56.5,-37.5 - parent: 127 - type: Transform -- uid: 7024 - type: Catwalk - components: - - pos: 42.5,-31.5 - parent: 127 - type: Transform -- uid: 7025 - type: Catwalk - components: - - pos: 41.5,-31.5 - parent: 127 - type: Transform -- uid: 7026 - type: Catwalk - components: - - pos: 38.5,-32.5 - parent: 127 - type: Transform -- uid: 7027 - type: Catwalk - components: - - pos: 33.5,-30.5 - parent: 127 - type: Transform -- uid: 7028 - type: Table - components: - - pos: -22.5,9.5 - parent: 127 - type: Transform -- uid: 7029 - type: Table - components: - - pos: -22.5,8.5 - parent: 127 - type: Transform -- uid: 7030 - type: Table - components: - - pos: -23.5,9.5 - parent: 127 - type: Transform -- uid: 7031 - type: Table - components: - - pos: -23.5,8.5 - parent: 127 - type: Transform -- uid: 7032 - type: Barricade - components: - - pos: -24.5,9.5 - parent: 127 - type: Transform -- uid: 7033 - type: Table - components: - - pos: -23.5,12.5 - parent: 127 - type: Transform -- uid: 7034 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-8.5 - parent: 127 - type: Transform -- uid: 7035 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-9.5 - parent: 127 - type: Transform -- uid: 7036 - type: Table - components: - - pos: -19.5,11.5 - parent: 127 - type: Transform -- uid: 7037 - type: MachineAPE - components: - - rot: 3.141592653589793 rad - pos: -18.5,-4.5 - parent: 127 - type: Transform -- uid: 7038 - type: MachineAPE - components: - - rot: 3.141592653589793 rad - pos: -18.5,-5.5 - parent: 127 - type: Transform -- uid: 7039 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -21.5,-0.5 - parent: 127 - type: Transform -- uid: 7040 - type: Wrench - components: - - pos: -21.454285,1.381098 - parent: 127 - type: Transform -- uid: 7041 - type: Wrench - components: - - pos: -21.391785,1.709223 - parent: 127 - type: Transform -- uid: 7042 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7043 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7044 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7045 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -11.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7046 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7047 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7048 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -20.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7049 - type: Barricade - components: - - pos: -20.5,5.5 - parent: 127 - type: Transform -- uid: 7050 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7051 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7052 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7053 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7054 - type: CableApcExtension - components: - - pos: -20.5,3.5 - parent: 127 - type: Transform -- uid: 7055 - type: ChairOfficeDark - components: - - pos: -26.5,-1.5 - parent: 127 - type: Transform -- uid: 7056 - type: CableApcExtension - components: - - pos: 64.5,-27.5 - parent: 127 - type: Transform -- uid: 7057 - type: Catwalk - components: - - pos: 25.5,21.5 - parent: 127 - type: Transform -- uid: 7058 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7059 - type: Catwalk - components: - - pos: -1.5,-9.5 - parent: 127 - type: Transform -- uid: 7060 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7061 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -21.5,5.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7062 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -20.5,0.5 - parent: 127 - type: Transform -- uid: 7063 - type: Catwalk - components: - - pos: -5.5,-21.5 - parent: 127 - type: Transform -- uid: 7064 - type: Catwalk - components: - - pos: -3.5,-26.5 - parent: 127 - type: Transform -- uid: 7065 - type: SheetGlass - components: - - pos: -21.487488,2.6351538 - parent: 127 - type: Transform -- uid: 7066 - type: PartRodMetal - components: - - pos: -21.503113,3.5570288 - parent: 127 - type: Transform -- uid: 7067 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7068 - type: GasVentPump - components: - - pos: -19.5,-0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7069 - type: ClosetEmergencyFilledRandom - components: - - pos: -17.5,-0.5 - parent: 127 - type: Transform -- uid: 7070 - type: WardrobeRobotics - components: - - pos: -25.5,5.5 - parent: 127 - type: Transform -- uid: 7071 - type: Barricade - components: - - pos: -19.5,7.5 - parent: 127 - type: Transform -- uid: 7072 - type: MaintenanceFluffSpawner - components: - - pos: 5.5,-6.5 - parent: 127 - type: Transform -- uid: 7073 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7074 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7075 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7076 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7077 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7078 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -20.5,2.5 - parent: 127 - type: Transform -- uid: 7079 - type: GasPipeTJunction - components: - - pos: -10.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7080 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7081 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7082 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7083 - type: Catwalk - components: - - pos: -14.5,1.5 - parent: 127 - type: Transform -- uid: 7084 - type: Catwalk - components: - - pos: -16.5,2.5 - parent: 127 - type: Transform -- uid: 7085 - type: Catwalk - components: - - pos: -3.5,27.5 - parent: 127 - type: Transform -- uid: 7086 - type: Catwalk - components: - - pos: 6.5,-10.5 - parent: 127 - type: Transform -- uid: 7087 - type: Catwalk - components: - - pos: -11.5,24.5 - parent: 127 - type: Transform -- uid: 7088 - type: Catwalk - components: - - pos: -3.5,-23.5 - parent: 127 - type: Transform -- uid: 7089 - type: Catwalk - components: - - pos: -4.5,-25.5 - parent: 127 - type: Transform -- uid: 7090 - type: Catwalk - components: - - pos: -2.5,-9.5 - parent: 127 - type: Transform -- uid: 7091 - type: Catwalk - components: - - pos: 0.5,-9.5 - parent: 127 - type: Transform -- uid: 7092 - type: Catwalk - components: - - pos: 21.5,5.5 - parent: 127 - type: Transform -- uid: 7093 - type: Catwalk - components: - - pos: 29.5,-8.5 - parent: 127 - type: Transform -- uid: 7094 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -11.5,-12.5 - parent: 127 - type: Transform -- uid: 7095 - type: Catwalk - components: - - pos: 29.5,-9.5 - parent: 127 - type: Transform -- uid: 7096 - type: Catwalk - components: - - pos: 26.5,-12.5 - parent: 127 - type: Transform -- uid: 7097 - type: Catwalk - components: - - pos: 28.5,-13.5 - parent: 127 - type: Transform -- uid: 7098 - type: Catwalk - components: - - pos: 47.5,-30.5 - parent: 127 - type: Transform -- uid: 7099 - type: Catwalk - components: - - pos: 45.5,-29.5 - parent: 127 - type: Transform -- uid: 7100 - type: Catwalk - components: - - pos: 53.5,-16.5 - parent: 127 - type: Transform -- uid: 7101 - type: Catwalk - components: - - pos: 54.5,-16.5 - parent: 127 - type: Transform -- uid: 7102 - type: Catwalk - components: - - pos: 39.5,-32.5 - parent: 127 - type: Transform -- uid: 7103 - type: Catwalk - components: - - pos: -15.5,2.5 - parent: 127 - type: Transform -- uid: 7104 - type: Catwalk - components: - - pos: -17.5,5.5 - parent: 127 - type: Transform -- uid: 7105 - type: Catwalk - components: - - pos: -14.5,-4.5 - parent: 127 - type: Transform -- uid: 7106 - type: Catwalk - components: - - pos: -10.5,-5.5 - parent: 127 - type: Transform -- uid: 7107 - type: Catwalk - components: - - pos: -11.5,-4.5 - parent: 127 - type: Transform -- uid: 7108 - type: Catwalk - components: - - pos: -16.5,6.5 - parent: 127 - type: Transform -- uid: 7109 - type: Catwalk - components: - - pos: -5.5,-17.5 - parent: 127 - type: Transform -- uid: 7110 - type: Catwalk - components: - - pos: -5.5,-16.5 - parent: 127 - type: Transform -- uid: 7111 - type: Catwalk - components: - - pos: -16.5,8.5 - parent: 127 - type: Transform -- uid: 7112 - type: Catwalk - components: - - pos: -7.5,-17.5 - parent: 127 - type: Transform -- uid: 7113 - type: Catwalk - components: - - pos: 1.5,-25.5 - parent: 127 - type: Transform -- uid: 7114 - type: Catwalk - components: - - pos: 2.5,-26.5 - parent: 127 - type: Transform -- uid: 7115 - type: Catwalk - components: - - pos: 3.5,-26.5 - parent: 127 - type: Transform -- uid: 7116 - type: Catwalk - components: - - pos: 55.5,-22.5 - parent: 127 - type: Transform -- uid: 7117 - type: Catwalk - components: - - pos: 32.5,-26.5 - parent: 127 - type: Transform -- uid: 7118 - type: Catwalk - components: - - pos: 33.5,-26.5 - parent: 127 - type: Transform -- uid: 7119 - type: Catwalk - components: - - pos: 38.5,-31.5 - parent: 127 - type: Transform -- uid: 7120 - type: Catwalk - components: - - pos: 31.5,-25.5 - parent: 127 - type: Transform -- uid: 7121 - type: Catwalk - components: - - pos: -9.5,-8.5 - parent: 127 - type: Transform -- uid: 7122 - type: Catwalk - components: - - pos: -9.5,-7.5 - parent: 127 - type: Transform -- uid: 7123 - type: Catwalk - components: - - pos: 61.5,-30.5 - parent: 127 - type: Transform -- uid: 7124 - type: Catwalk - components: - - pos: 26.5,-26.5 - parent: 127 - type: Transform -- uid: 7125 - type: Catwalk - components: - - pos: 28.5,-25.5 - parent: 127 - type: Transform -- uid: 7126 - type: Barricade - components: - - pos: -20.5,10.5 - parent: 127 - type: Transform -- uid: 7127 - type: Catwalk - components: - - pos: 27.5,-25.5 - parent: 127 - type: Transform -- uid: 7128 - type: Catwalk - components: - - pos: 24.5,-25.5 - parent: 127 - type: Transform -- uid: 7129 - type: Catwalk - components: - - pos: 22.5,-26.5 - parent: 127 - type: Transform -- uid: 7130 - type: Barricade - components: - - pos: -23.5,11.5 - parent: 127 - type: Transform -- uid: 7131 - type: Table - components: - - pos: -21.5,8.5 - parent: 127 - type: Transform -- uid: 7132 - type: Catwalk - components: - - pos: 5.5,-25.5 - parent: 127 - type: Transform -- uid: 7133 - type: Barricade - components: - - pos: -24.5,6.5 - parent: 127 - type: Transform -- uid: 7134 - type: GasVentPump - components: - - pos: -11.5,-1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7135 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -10.5,-2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7136 - type: Grille - components: - - pos: -13.5,-11.5 - parent: 127 - type: Transform -- uid: 7137 - type: Grille - components: - - pos: -13.5,-12.5 - parent: 127 - type: Transform -- uid: 7138 - type: Grille - components: - - pos: -12.5,-12.5 - parent: 127 - type: Transform -- uid: 7139 - type: Barricade - components: - - pos: -22.5,7.5 - parent: 127 - type: Transform -- uid: 7140 - type: Paper - components: - - pos: 25.5,-10.5 - parent: 127 - type: Transform -- uid: 7141 - type: Paper - components: - - pos: 25.5,-10.5 - parent: 127 - type: Transform -- uid: 7142 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7143 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7144 - type: CableApcExtension - components: - - pos: 62.5,-35.5 - parent: 127 - type: Transform -- uid: 7145 - type: VendingMachineRoboDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,12.5 - parent: 127 - type: Transform -- uid: 7146 - type: Catwalk - components: - - pos: -1.5,26.5 - parent: 127 - type: Transform -- uid: 7147 - type: Catwalk - components: - - pos: 0.5,26.5 - parent: 127 - type: Transform -- uid: 7148 - type: WardrobeRobotics - components: - - pos: -24.5,5.5 - parent: 127 - type: Transform -- uid: 7149 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7150 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7151 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7152 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7153 - type: ClothingBeltMilitaryWebbing - components: - - pos: 7.4325953,-26.388496 - parent: 127 - type: Transform -- uid: 7154 - type: Paper - components: - - pos: 25.5,-10.5 - parent: 127 - type: Transform -- uid: 7155 - type: Rack - components: - - pos: -7.5,-9.5 - parent: 127 - type: Transform -- uid: 7156 - type: WallReinforced - components: - - pos: -7.5,-10.5 - parent: 127 - type: Transform -- uid: 7157 - type: ClothingUniformJumpskirtJanimaid - components: - - flags: InContainer - type: MetaData - - parent: 4986 - type: Transform - - canCollide: False - type: Physics -- uid: 7158 - type: ClothingUniformJumpsuitOperative - components: - - pos: 7.5107203,-25.497871 - parent: 127 - type: Transform -- uid: 7159 - type: ClothingUniformJumpskirtOperative - components: - - pos: 7.4950953,-25.513496 - parent: 127 - type: Transform -- uid: 7160 - type: Catwalk - components: - - pos: 56.5,-17.5 - parent: 127 - type: Transform -- uid: 7161 - type: Catwalk - components: - - pos: 55.5,-18.5 - parent: 127 - type: Transform -- uid: 7162 - type: Catwalk - components: - - pos: 47.5,-14.5 - parent: 127 - type: Transform -- uid: 7163 - type: Catwalk - components: - - pos: 49.5,-16.5 - parent: 127 - type: Transform -- uid: 7164 - type: Catwalk - components: - - pos: 32.5,-13.5 - parent: 127 - type: Transform -- uid: 7165 - type: Catwalk - components: - - pos: 34.5,-12.5 - parent: 127 - type: Transform -- uid: 7166 - type: Catwalk - components: - - pos: 59.5,-19.5 - parent: 127 - type: Transform -- uid: 7167 - type: Catwalk - components: - - pos: 38.5,-16.5 - parent: 127 - type: Transform -- uid: 7168 - type: Catwalk - components: - - pos: 37.5,-16.5 - parent: 127 - type: Transform -- uid: 7169 - type: Paper - components: - - pos: 25.5,-10.5 - parent: 127 - type: Transform -- uid: 7170 - type: Catwalk - components: - - pos: 48.5,-16.5 - parent: 127 - type: Transform -- uid: 7171 - type: Catwalk - components: - - pos: 45.5,-16.5 - parent: 127 - type: Transform -- uid: 7172 - type: Catwalk - components: - - pos: 46.5,-15.5 - parent: 127 - type: Transform -- uid: 7173 - type: Catwalk - components: - - pos: 56.5,-20.5 - parent: 127 - type: Transform -- uid: 7174 - type: Catwalk - components: - - pos: 57.5,-18.5 - parent: 127 - type: Transform -- uid: 7175 - type: Catwalk - components: - - pos: 55.5,-19.5 - parent: 127 - type: Transform -- uid: 7176 - type: Catwalk - components: - - pos: 46.5,-16.5 - parent: 127 - type: Transform -- uid: 7177 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7178 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 48.5,17.5 - parent: 127 - type: Transform -- uid: 7179 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7180 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7181 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 50.5,-8.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7182 - type: GasPipeBend - components: - - pos: 50.5,-6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7183 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7184 - type: Catwalk - components: - - pos: 47.5,-7.5 - parent: 127 - type: Transform -- uid: 7185 - type: GasPipeBend - components: - - pos: 45.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7186 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 45.5,-9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7187 - type: GasPipeBend - components: - - pos: 45.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7188 - type: GasPipeBend - components: - - pos: 43.5,-6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7189 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 43.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7190 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7191 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7192 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7193 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7194 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7195 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7196 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7197 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7198 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7199 - type: WarpPoint - components: - - pos: 56.5,-3.5 - parent: 127 - type: Transform - - location: ai chamber - type: WarpPoint -- uid: 7200 - type: SignSecureMed - components: - - pos: -11.5,-7.5 - parent: 127 - type: Transform -- uid: 7201 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7202 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7203 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7204 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7205 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7206 - type: GasPipeStraight - components: - - pos: 45.5,-6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7207 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-7.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7208 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 45.5,-7.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7209 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7210 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7211 - type: GasPipeStraight - components: - - pos: 50.5,-7.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7212 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-8.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7213 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-8.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7214 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-8.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7215 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-8.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7216 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-8.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7217 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7218 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-8.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7219 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 56.5,-9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7220 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 55.5,-8.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7221 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,-7.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7222 - type: GasPipeStraight - components: - - pos: 56.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7223 - type: GasPipeStraight - components: - - pos: 56.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7224 - type: GasPipeStraight - components: - - pos: 55.5,-7.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7225 - type: GasVentPump - components: - - pos: 56.5,-6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7226 - type: GasVentScrubber - components: - - pos: 55.5,-6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7227 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7228 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7229 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7230 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-13.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7231 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 48.5,15.5 - parent: 127 - type: Transform -- uid: 7232 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-11.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7233 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-10.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7234 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7235 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7236 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7237 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7238 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7239 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7240 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7241 - type: Catwalk - components: - - pos: 52.5,-30.5 - parent: 127 - type: Transform -- uid: 7242 - type: Catwalk - components: - - pos: 44.5,-30.5 - parent: 127 - type: Transform -- uid: 7243 - type: Catwalk - components: - - pos: 51.5,-29.5 - parent: 127 - type: Transform -- uid: 7244 - type: Catwalk - components: - - pos: 50.5,-29.5 - parent: 127 - type: Transform -- uid: 7245 - type: Catwalk - components: - - pos: 55.5,-34.5 - parent: 127 - type: Transform -- uid: 7246 - type: Catwalk - components: - - pos: 57.5,-37.5 - parent: 127 - type: Transform -- uid: 7247 - type: Catwalk - components: - - pos: 58.5,-36.5 - parent: 127 - type: Transform -- uid: 7248 - type: Catwalk - components: - - pos: 32.5,-30.5 - parent: 127 - type: Transform -- uid: 7249 - type: Catwalk - components: - - pos: 32.5,-28.5 - parent: 127 - type: Transform -- uid: 7250 - type: Catwalk - components: - - pos: 31.5,-28.5 - parent: 127 - type: Transform -- uid: 7251 - type: Catwalk - components: - - pos: 59.5,-26.5 - parent: 127 - type: Transform -- uid: 7252 - type: Table - components: - - pos: -25.5,10.5 - parent: 127 - type: Transform -- uid: 7253 - type: Table - components: - - pos: -21.5,9.5 - parent: 127 - type: Transform -- uid: 7254 - type: RandomArtifactSpawner20 - components: - - pos: -23.5,10.5 - parent: 127 - type: Transform -- uid: 7255 - type: Table - components: - - pos: -19.5,12.5 - parent: 127 - type: Transform -- uid: 7256 - type: GasPipeBend - components: - - pos: -6.5,-9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7257 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -6.5,-14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7258 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 48.5,13.5 - parent: 127 - type: Transform -- uid: 7259 - type: Table - components: - - pos: -25.5,7.5 - parent: 127 - type: Transform -- uid: 7260 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 48.5,11.5 - parent: 127 - type: Transform -- uid: 7261 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 48.5,9.5 - parent: 127 - type: Transform -- uid: 7262 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 48.5,7.5 - parent: 127 - type: Transform -- uid: 7263 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 48.5,5.5 - parent: 127 - type: Transform -- uid: 7264 - type: GasPipeBend - components: - - pos: -5.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7265 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 48.5,3.5 - parent: 127 - type: Transform -- uid: 7266 - type: GasPipeBend - components: - - pos: -11.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7267 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,3.5 - parent: 127 - type: Transform -- uid: 7268 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,3.5 - parent: 127 - type: Transform -- uid: 7269 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7270 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,3.5 - parent: 127 - type: Transform -- uid: 7271 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,3.5 - parent: 127 - type: Transform -- uid: 7272 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,3.5 - parent: 127 - type: Transform -- uid: 7273 - type: GasPipeStraight - components: - - pos: -6.5,-12.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7274 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,5.5 - parent: 127 - type: Transform -- uid: 7275 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,5.5 - parent: 127 - type: Transform -- uid: 7276 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,5.5 - parent: 127 - type: Transform -- uid: 7277 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,5.5 - parent: 127 - type: Transform -- uid: 7278 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,5.5 - parent: 127 - type: Transform -- uid: 7279 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,7.5 - parent: 127 - type: Transform -- uid: 7280 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,7.5 - parent: 127 - type: Transform -- uid: 7281 - type: Grille - components: - - pos: 62.5,-38.5 - parent: 127 - type: Transform -- uid: 7282 - type: Catwalk - components: - - pos: 61.5,-37.5 - parent: 127 - type: Transform -- uid: 7283 - type: Catwalk - components: - - pos: 56.5,-26.5 - parent: 127 - type: Transform -- uid: 7284 - type: Catwalk - components: - - pos: 55.5,-29.5 - parent: 127 - type: Transform -- uid: 7285 - type: Catwalk - components: - - pos: 55.5,-30.5 - parent: 127 - type: Transform -- uid: 7286 - type: Catwalk - components: - - pos: 36.5,-32.5 - parent: 127 - type: Transform -- uid: 7287 - type: Catwalk - components: - - pos: 34.5,-31.5 - parent: 127 - type: Transform -- uid: 7288 - type: Catwalk - components: - - pos: 33.5,-32.5 - parent: 127 - type: Transform -- uid: 7289 - type: Catwalk - components: - - pos: 55.5,-23.5 - parent: 127 - type: Transform -- uid: 7290 - type: Table - components: - - pos: -25.5,9.5 - parent: 127 - type: Transform -- uid: 7291 - type: Table - components: - - pos: -25.5,8.5 - parent: 127 - type: Transform -- uid: 7292 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -21.5,12.5 - parent: 127 - type: Transform -- uid: 7293 - type: MedkitFilled - components: - - pos: -23.307306,8.637131 - parent: 127 - type: Transform -- uid: 7294 - type: computerBodyScanner - components: - - rot: 1.5707963267948966 rad - pos: -21.5,11.5 - parent: 127 - type: Transform -- uid: 7295 - type: WindowReinforcedDirectional - components: - - pos: -21.5,11.5 - parent: 127 - type: Transform -- uid: 7296 - type: WindowReinforcedDirectional - components: - - pos: -19.5,11.5 - parent: 127 - type: Transform -- uid: 7297 - type: Table - components: - - pos: -21.5,12.5 - parent: 127 - type: Transform -- uid: 7298 - type: OperatingTable - components: - - pos: -20.5,12.5 - parent: 127 - type: Transform -- uid: 7299 - type: Barricade - components: - - pos: -19.5,8.5 - parent: 127 - type: Transform -- uid: 7300 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -21.5,11.5 - parent: 127 - type: Transform -- uid: 7301 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,7.5 - parent: 127 - type: Transform -- uid: 7302 - type: GasPipeBend - components: - - pos: -12.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7303 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7304 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,7.5 - parent: 127 - type: Transform -- uid: 7305 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,7.5 - parent: 127 - type: Transform -- uid: 7306 - type: Table - components: - - pos: -24.5,12.5 - parent: 127 - type: Transform -- uid: 7307 - type: Paper - components: - - pos: 25.5,-10.5 - parent: 127 - type: Transform -- uid: 7308 - type: BoxFolderYellow - components: - - pos: 25.50809,-10.352999 - parent: 127 - type: Transform -- uid: 7309 - type: BoxFolderRed - components: - - pos: 25.69559,-10.368624 - parent: 127 - type: Transform -- uid: 7310 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,9.5 - parent: 127 - type: Transform -- uid: 7311 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,9.5 - parent: 127 - type: Transform -- uid: 7312 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,9.5 - parent: 127 - type: Transform -- uid: 7313 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,9.5 - parent: 127 - type: Transform -- uid: 7314 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,9.5 - parent: 127 - type: Transform -- uid: 7315 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,11.5 - parent: 127 - type: Transform -- uid: 7316 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,11.5 - parent: 127 - type: Transform -- uid: 7317 - type: CableApcExtension - components: - - pos: 63.5,-35.5 - parent: 127 - type: Transform -- uid: 7318 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,11.5 - parent: 127 - type: Transform -- uid: 7319 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,11.5 - parent: 127 - type: Transform -- uid: 7320 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,11.5 - parent: 127 - type: Transform -- uid: 7321 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,13.5 - parent: 127 - type: Transform -- uid: 7322 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,13.5 - parent: 127 - type: Transform -- uid: 7323 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,13.5 - parent: 127 - type: Transform -- uid: 7324 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,13.5 - parent: 127 - type: Transform -- uid: 7325 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,13.5 - parent: 127 - type: Transform -- uid: 7326 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,15.5 - parent: 127 - type: Transform -- uid: 7327 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,15.5 - parent: 127 - type: Transform -- uid: 7328 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,15.5 - parent: 127 - type: Transform -- uid: 7329 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,15.5 - parent: 127 - type: Transform -- uid: 7330 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,15.5 - parent: 127 - type: Transform -- uid: 7331 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,17.5 - parent: 127 - type: Transform -- uid: 7332 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,17.5 - parent: 127 - type: Transform -- uid: 7333 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,17.5 - parent: 127 - type: Transform -- uid: 7334 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,17.5 - parent: 127 - type: Transform -- uid: 7335 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,17.5 - parent: 127 - type: Transform -- uid: 7336 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,19.5 - parent: 127 - type: Transform -- uid: 7337 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,19.5 - parent: 127 - type: Transform -- uid: 7338 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,19.5 - parent: 127 - type: Transform -- uid: 7339 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,19.5 - parent: 127 - type: Transform -- uid: 7340 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,19.5 - parent: 127 - type: Transform -- uid: 7341 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,4.5 - parent: 127 - type: Transform -- uid: 7342 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,4.5 - parent: 127 - type: Transform -- uid: 7343 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,4.5 - parent: 127 - type: Transform -- uid: 7344 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,6.5 - parent: 127 - type: Transform -- uid: 7345 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,6.5 - parent: 127 - type: Transform -- uid: 7346 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,6.5 - parent: 127 - type: Transform -- uid: 7347 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,8.5 - parent: 127 - type: Transform -- uid: 7348 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,8.5 - parent: 127 - type: Transform -- uid: 7349 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,8.5 - parent: 127 - type: Transform -- uid: 7350 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,10.5 - parent: 127 - type: Transform -- uid: 7351 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,10.5 - parent: 127 - type: Transform -- uid: 7352 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,10.5 - parent: 127 - type: Transform -- uid: 7353 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,12.5 - parent: 127 - type: Transform -- uid: 7354 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,12.5 - parent: 127 - type: Transform -- uid: 7355 - type: CableApcExtension - components: - - pos: -0.5,10.5 - parent: 127 - type: Transform -- uid: 7356 - type: CableApcExtension - components: - - pos: 64.5,-35.5 - parent: 127 - type: Transform -- uid: 7357 - type: ClothingHandsGlovesIhscombat - components: - - name: IMC combat gloves - type: MetaData - - pos: -10.5,-12.5 - parent: 127 - type: Transform -- uid: 7358 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,12.5 - parent: 127 - type: Transform -- uid: 7359 - type: SignSecureMed - components: - - pos: -11.5,-9.5 - parent: 127 - type: Transform -- uid: 7360 - type: RubberStampApproved - components: - - pos: 25.28934,-10.571749 - parent: 127 - type: Transform -- uid: 7361 - type: RubberStampDenied - components: - - pos: 25.69559,-10.556124 - parent: 127 - type: Transform -- uid: 7362 - type: ClothingOuterWinterCentcom - components: - - pos: 48.562996,-34.951805 - parent: 127 - type: Transform -- uid: 7363 - type: ClothingNeckScarfStripedGreen - components: - - pos: 44.51612,-34.59243 - parent: 127 - type: Transform -- uid: 7364 - type: MaterialWoodPlank - components: - - pos: 44.531746,-35.545555 - parent: 127 - type: Transform -- uid: 7365 - type: ClothingNeckScarfStripedZebra - components: - - pos: 2.5568132,-11.493403 - parent: 127 - type: Transform -- uid: 7366 - type: SheetSteel - components: - - pos: 43.497837,-32.44895 - parent: 127 - type: Transform -- uid: 7367 - type: SheetGlass - components: - - pos: 42.466587,-32.44895 - parent: 127 - type: Transform -- uid: 7368 - type: BoxLightMixed - components: - - pos: 49.500603,-29.417704 - parent: 127 - type: Transform -- uid: 7369 - type: MaintenanceToolSpawner - components: - - pos: 40.5,-32.5 - parent: 127 - type: Transform -- uid: 7370 - type: MaintenanceFluffSpawner - components: - - pos: 41.5,-32.5 - parent: 127 - type: Transform -- uid: 7371 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,14.5 - parent: 127 - type: Transform -- uid: 7372 - type: MaintenanceToolSpawner - components: - - pos: 53.5,-29.5 - parent: 127 - type: Transform -- uid: 7373 - type: MaintenanceFluffSpawner - components: - - pos: 52.5,-29.5 - parent: 127 - type: Transform -- uid: 7374 - type: MaintenanceWeaponSpawner - components: - - pos: 57.5,-33.5 - parent: 127 - type: Transform -- uid: 7375 - type: NitrogenTankFilled - components: - - pos: 41.360756,-15.4648285 - parent: 127 - type: Transform -- uid: 7376 - type: FlashlightLantern - components: - - pos: 57.363194,-32.23997 - parent: 127 - type: Transform -- uid: 7377 - type: MaintenanceFluffSpawner - components: - - pos: 47.5,-29.5 - parent: 127 - type: Transform -- uid: 7378 - type: TableWood - components: - - pos: 58.5,-41.5 - parent: 127 - type: Transform -- uid: 7379 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-20.5 - parent: 127 - type: Transform -- uid: 7380 - type: MaintenanceFluffSpawner - components: - - pos: 54.5,-15.5 - parent: 127 - type: Transform -- uid: 7381 - type: MaintenanceFluffSpawner - components: - - pos: 42.5,-15.5 - parent: 127 - type: Transform -- uid: 7382 - type: ClothingHeadHatAnimalHeadslime - components: - - pos: 32.495476,-9.454265 - parent: 127 - type: Transform -- uid: 7383 - type: MaintenanceToolSpawner - components: - - pos: 43.5,-15.5 - parent: 127 - type: Transform -- uid: 7384 - type: MaintenanceToolSpawner - components: - - pos: 57.5,-26.5 - parent: 127 - type: Transform -- uid: 7385 - type: MaintenanceWeaponSpawner - components: - - pos: 55.5,-15.5 - parent: 127 - type: Transform -- uid: 7386 - type: RandomSpawner - components: - - pos: 29.5,-8.5 - parent: 127 - type: Transform -- uid: 7387 - type: RandomSpawner - components: - - pos: 33.5,-13.5 - parent: 127 - type: Transform -- uid: 7388 - type: RandomSpawner - components: - - pos: 39.5,-14.5 - parent: 127 - type: Transform -- uid: 7389 - type: RandomSpawner - components: - - pos: 42.5,-16.5 - parent: 127 - type: Transform -- uid: 7390 - type: RandomSpawner - components: - - pos: 52.5,-15.5 - parent: 127 - type: Transform -- uid: 7391 - type: RandomSpawner - components: - - pos: 55.5,-19.5 - parent: 127 - type: Transform -- uid: 7392 - type: RandomSpawner - components: - - pos: 57.5,-25.5 - parent: 127 - type: Transform -- uid: 7393 - type: RandomSpawner - components: - - pos: 61.5,-27.5 - parent: 127 - type: Transform -- uid: 7394 - type: RandomSpawner - components: - - pos: 59.5,-29.5 - parent: 127 - type: Transform -- uid: 7395 - type: RandomSpawner - components: - - pos: 56.5,-36.5 - parent: 127 - type: Transform -- uid: 7396 - type: RandomSpawner - components: - - pos: 56.5,-30.5 - parent: 127 - type: Transform -- uid: 7397 - type: RandomSpawner - components: - - pos: 50.5,-29.5 - parent: 127 - type: Transform -- uid: 7398 - type: RandomSpawner - components: - - pos: 45.5,-30.5 - parent: 127 - type: Transform -- uid: 7399 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-35.5 - parent: 127 - type: Transform -- uid: 7400 - type: RandomSpawner - components: - - pos: 43.5,-37.5 - parent: 127 - type: Transform -- uid: 7401 - type: RandomSpawner - components: - - pos: 51.5,-34.5 - parent: 127 - type: Transform -- uid: 7402 - type: RandomSpawner - components: - - pos: 39.5,-31.5 - parent: 127 - type: Transform -- uid: 7403 - type: RandomSpawner - components: - - pos: 32.5,-31.5 - parent: 127 - type: Transform -- uid: 7404 - type: RandomSpawner - components: - - pos: 31.5,-25.5 - parent: 127 - type: Transform -- uid: 7405 - type: RandomSpawner - components: - - pos: 26.5,-26.5 - parent: 127 - type: Transform -- uid: 7406 - type: AirlockMaintSecLocked - components: - - pos: 27.5,-27.5 - parent: 127 - type: Transform -- uid: 7407 - type: WindoorBrigLocked - components: - - pos: 26.5,-32.5 - parent: 127 - type: Transform -- uid: 7408 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-28.5 - parent: 127 - type: Transform -- uid: 7409 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-29.5 - parent: 127 - type: Transform -- uid: 7410 - type: WallReinforced - components: - - pos: 59.5,-40.5 - parent: 127 - type: Transform -- uid: 7411 - type: DrinkVacuumFlask - components: - - pos: 45.5,-40.5 - parent: 127 - type: Transform -- uid: 7412 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-41.5 - parent: 127 - type: Transform -- uid: 7413 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7414 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7415 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7416 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7417 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-23.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7418 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7419 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7420 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7421 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7422 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7423 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-20.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7424 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7425 - type: GasVentPump - components: - - pos: 27.5,-18.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7426 - type: GasVentScrubber - components: - - pos: 28.5,-18.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7427 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 27.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7428 - type: GasPipeStraight - components: - - pos: 27.5,-21.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7429 - type: CableApcExtension - components: - - pos: 26.5,-22.5 - parent: 127 - type: Transform -- uid: 7430 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-21.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7431 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7432 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7433 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7434 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-23.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7435 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-23.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7436 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-23.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7437 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7438 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7439 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7440 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-23.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7441 - type: GasPipeFourway - components: - - pos: 27.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7442 - type: GasPipeFourway - components: - - pos: 28.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7443 - type: GasPipeStraight - components: - - pos: 27.5,-19.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7444 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7445 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7446 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7447 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7448 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7449 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7450 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7451 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-19.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7452 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7453 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7454 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7455 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7456 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 31.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7457 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 30.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7458 - type: GasPipeTJunction - components: - - pos: 31.5,-16.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7459 - type: GasPipeTJunction - components: - - pos: 30.5,-15.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7460 - type: GasPipeStraight - components: - - pos: 31.5,-18.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7461 - type: GasPipeStraight - components: - - pos: 31.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7462 - type: GasPipeStraight - components: - - pos: 30.5,-18.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7463 - type: GasPipeStraight - components: - - pos: 30.5,-17.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7464 - type: GasPipeStraight - components: - - pos: 30.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7465 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-16.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7466 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-15.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7467 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-16.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7468 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-15.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7469 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-15.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7470 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-16.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7471 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-15.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7472 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-15.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7473 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-16.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7474 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-16.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7475 - type: GasPipeTJunction - components: - - pos: 35.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7476 - type: GasPipeTJunction - components: - - pos: 36.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7477 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 35.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7478 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 36.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7479 - type: GasPipeStraight - components: - - pos: 36.5,-20.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7480 - type: GasPipeStraight - components: - - pos: 36.5,-21.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7481 - type: GasPipeStraight - components: - - pos: 35.5,-21.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7482 - type: GasPipeStraight - components: - - pos: 35.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7483 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7484 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7485 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7486 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7487 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7488 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7489 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7490 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7491 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7492 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7493 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7494 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7495 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7496 - type: GasPipeTJunction - components: - - pos: 37.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7497 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7498 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7499 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7500 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7501 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7502 - type: GasPipeTJunction - components: - - pos: 42.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7503 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7504 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7505 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7506 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7507 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7508 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7509 - type: GasPipeTJunction - components: - - pos: 38.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7510 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7511 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7512 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7513 - type: GasPipeTJunction - components: - - pos: 43.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7514 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7515 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7516 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7517 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7518 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7519 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7520 - type: GasPipeStraight - components: - - pos: 43.5,-23.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7521 - type: GasPipeStraight - components: - - pos: 43.5,-24.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7522 - type: GasPipeStraight - components: - - pos: 42.5,-24.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7523 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 42.5,-25.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7524 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 43.5,-25.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7525 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7526 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7527 - type: GasPipeFourway - components: - - pos: 49.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7528 - type: GasPipeFourway - components: - - pos: 50.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7529 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7530 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7531 - type: GasPipeStraight - components: - - pos: 49.5,-22.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7532 - type: GasPipeStraight - components: - - pos: 50.5,-23.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7533 - type: GasPipeStraight - components: - - pos: 50.5,-24.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7534 - type: GasPipeStraight - components: - - pos: 49.5,-24.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7535 - type: GasPipeStraight - components: - - pos: 49.5,-25.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7536 - type: GasPipeStraight - components: - - pos: 49.5,-21.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7537 - type: GasPipeStraight - components: - - pos: 49.5,-20.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7538 - type: GasPipeStraight - components: - - pos: 49.5,-19.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7539 - type: GasPipeStraight - components: - - pos: 50.5,-21.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7540 - type: GasPipeStraight - components: - - pos: 50.5,-20.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7541 - type: GasPipeBend - components: - - pos: 50.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7542 - type: GasPipeBend - components: - - pos: 49.5,-18.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7543 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-25.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7544 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-26.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7545 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-25.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7546 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-25.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7547 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-26.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7548 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7549 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-18.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7550 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7551 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-26.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7552 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-18.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7553 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7554 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-25.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7555 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-22.5 - parent: 127 - type: Transform -- uid: 7556 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-22.5 - parent: 127 - type: Transform -- uid: 7557 - type: FirelockEdge - components: - - pos: 30.5,-17.5 - parent: 127 - type: Transform -- uid: 7558 - type: FirelockEdge - components: - - pos: 31.5,-17.5 - parent: 127 - type: Transform -- uid: 7559 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-22.5 - parent: 127 - type: Transform -- uid: 7560 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-23.5 - parent: 127 - type: Transform -- uid: 7561 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-22.5 - parent: 127 - type: Transform -- uid: 7562 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-23.5 - parent: 127 - type: Transform -- uid: 7563 - type: FirelockGlass - components: - - pos: 23.5,-20.5 - parent: 127 - type: Transform -- uid: 7564 - type: FirelockGlass - components: - - pos: 23.5,-19.5 - parent: 127 - type: Transform -- uid: 7565 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 32.5,-21.5 - parent: 127 - type: Transform - - devices: - - 7556 - - 7555 - - 7563 - - 7564 - - 7557 - - 7558 - - 7559 - - 7560 - type: DeviceList -- uid: 7566 - type: AirAlarm - components: - - pos: 29.5,-17.5 - parent: 127 - type: Transform - - devices: - - 7440 - - 7439 - - 7417 - - 7438 - - 7563 - - 7564 - - 7557 - - 7558 - - 7473 - - 7471 - - 7472 - - 7474 - - 7486 - - 7485 - - 7555 - - 7556 - type: DeviceList -- uid: 7567 - type: AirAlarm - components: - - pos: 40.5,-21.5 - parent: 127 - type: Transform - - devices: - - 7525 - - 7526 - - 7486 - - 7485 - - 7573 - - 7574 - - 7523 - - 7524 - - 7559 - - 7560 - - 7561 - - 7562 - type: DeviceList -- uid: 7568 - type: GasPipeStraight - components: - - pos: 38.5,-24.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7569 - type: GasPipeStraight - components: - - pos: 38.5,-25.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7570 - type: GasPipeStraight - components: - - pos: 37.5,-23.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7571 - type: GasPipeStraight - components: - - pos: 37.5,-24.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7572 - type: GasPipeStraight - components: - - pos: 37.5,-25.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7573 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 38.5,-26.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7574 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 37.5,-26.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7575 - type: FirelockGlass - components: - - pos: 34.5,-32.5 - parent: 127 - type: Transform -- uid: 7576 - type: FirelockGlass - components: - - pos: 34.5,-31.5 - parent: 127 - type: Transform -- uid: 7577 - type: FirelockGlass - components: - - pos: 54.5,-29.5 - parent: 127 - type: Transform -- uid: 7578 - type: FirelockGlass - components: - - pos: 54.5,-30.5 - parent: 127 - type: Transform -- uid: 7579 - type: Saw - components: - - pos: -19.515162,11.56426 - parent: 127 - type: Transform -- uid: 7580 - type: Cautery - components: - - pos: -19.405787,11.93926 - parent: 127 - type: Transform -- uid: 7581 - type: FirelockGlass - components: - - pos: 32.5,-12.5 - parent: 127 - type: Transform -- uid: 7582 - type: FirelockGlass - components: - - pos: 32.5,-13.5 - parent: 127 - type: Transform -- uid: 7583 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-22.5 - parent: 127 - type: Transform -- uid: 7584 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-23.5 - parent: 127 - type: Transform -- uid: 7585 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-24.5 - parent: 127 - type: Transform -- uid: 7586 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-25.5 - parent: 127 - type: Transform -- uid: 7587 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 42.5,-24.5 - parent: 127 - type: Transform - - devices: - - 7559 - - 7560 - - 7561 - - 7562 - type: DeviceList -- uid: 7588 - type: CableApcExtension - components: - - pos: 38.5,-18.5 - parent: 127 - type: Transform -- uid: 7589 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-26.5 - parent: 127 - type: Transform - - devices: - - 7586 - - 7585 - - 7584 - - 7583 - type: DeviceList -- uid: 7590 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-21.5 - parent: 127 - type: Transform - - devices: - - 7552 - - 7553 - - 7551 - - 7554 - - 7592 - - 7591 - type: DeviceList -- uid: 7591 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-22.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7592 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-23.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7593 - type: CableApcExtension - components: - - pos: 38.5,-17.5 - parent: 127 - type: Transform -- uid: 7594 - type: CableApcExtension - components: - - pos: 38.5,-16.5 - parent: 127 - type: Transform -- uid: 7595 - type: CableApcExtension - components: - - pos: 38.5,-15.5 - parent: 127 - type: Transform -- uid: 7596 - type: CableMV - components: - - pos: 24.5,-26.5 - parent: 127 - type: Transform -- uid: 7597 - type: CableMV - components: - - pos: 25.5,-26.5 - parent: 127 - type: Transform -- uid: 7598 - type: CableMV - components: - - pos: 26.5,-26.5 - parent: 127 - type: Transform -- uid: 7599 - type: CableMV - components: - - pos: 27.5,-26.5 - parent: 127 - type: Transform -- uid: 7600 - type: CableMV - components: - - pos: 28.5,-26.5 - parent: 127 - type: Transform -- uid: 7601 - type: CableMV - components: - - pos: 28.5,-27.5 - parent: 127 - type: Transform -- uid: 7602 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-23.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7603 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-23.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7604 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-23.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7605 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-23.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7606 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-19.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7607 - type: Poweredlight - components: - - pos: 47.5,-21.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7608 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-26.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7609 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-18.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7610 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-25.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7611 - type: Poweredlight - components: - - pos: 41.5,-18.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7612 - type: Poweredlight - components: - - pos: 35.5,-18.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7613 - type: Poweredlight - components: - - pos: 27.5,-18.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7614 - type: Poweredlight - components: - - pos: 27.5,-15.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7615 - type: Poweredlight - components: - - pos: 34.5,-15.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7616 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-26.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7617 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-28.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7618 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-29.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7619 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-31.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7620 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-35.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7621 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 33.5,-35.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7622 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-35.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7623 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7624 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7625 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7626 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7627 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7628 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-34.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7629 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-33.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7630 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-32.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7631 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-32.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7632 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7633 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7634 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7635 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7636 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-35.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7637 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-34.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7638 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-35.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7639 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-35.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7640 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-35.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7641 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-35.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7642 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-35.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7643 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-34.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7644 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-34.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7645 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-34.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7646 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-34.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7647 - type: GasPipeFourway - components: - - pos: 26.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7648 - type: GasPipeFourway - components: - - pos: 27.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7649 - type: GasPipeBend - components: - - pos: 29.5,-34.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7650 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 29.5,-35.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7651 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 30.5,-34.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7652 - type: GasPipeBend - components: - - pos: 30.5,-33.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7653 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 26.5,-35.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7654 - type: GasVentPump - components: - - pos: 26.5,-31.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7655 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-35.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7656 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 27.5,-35.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7657 - type: GasVentScrubber - components: - - pos: 27.5,-31.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7658 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-34.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7659 - type: MaintenanceToolSpawner - components: - - pos: 31.5,-27.5 - parent: 127 - type: Transform -- uid: 7660 - type: MaintenanceFluffSpawner - components: - - pos: 29.5,-26.5 - parent: 127 - type: Transform -- uid: 7661 - type: MaintenanceToolSpawner - components: - - pos: 25.5,-26.5 - parent: 127 - type: Transform -- uid: 7662 - type: Paper - components: - - pos: 28.67578,-31.42155 - parent: 127 - type: Transform -- uid: 7663 - type: Paper - components: - - pos: 28.76953,-31.42155 - parent: 127 - type: Transform -- uid: 7664 - type: Paper - components: - - pos: 28.878904,-31.42155 - parent: 127 - type: Transform -- uid: 7665 - type: Paper - components: - - pos: 25.222654,-31.42155 - parent: 127 - type: Transform -- uid: 7666 - type: Paper - components: - - pos: 25.11328,-31.42155 - parent: 127 - type: Transform -- uid: 7667 - type: Paper - components: - - pos: 24.98828,-31.42155 - parent: 127 - type: Transform -- uid: 7668 - type: Paper - components: - - pos: 26.89453,-29.405926 - parent: 127 - type: Transform -- uid: 7669 - type: Paper - components: - - pos: 27.01953,-29.405926 - parent: 127 - type: Transform -- uid: 7670 - type: Paper - components: - - pos: 27.17578,-29.405926 - parent: 127 - type: Transform -- uid: 7671 - type: BoxFolderBlue - components: - - pos: 25.64453,-31.437176 - parent: 127 - type: Transform -- uid: 7672 - type: BoxFolderRed - components: - - pos: 28.39453,-31.42155 - parent: 127 - type: Transform -- uid: 7673 - type: BoxFolderYellow - components: - - pos: 26.472654,-29.42155 - parent: 127 - type: Transform -- uid: 7674 - type: LampGold - components: - - pos: 24.45703,-31.0153 - parent: 127 - type: Transform -- uid: 7675 - type: LampGold - components: - - pos: 29.535154,-31.030926 - parent: 127 - type: Transform -- uid: 7676 - type: LampGold - components: - - pos: 27.64453,-29.062176 - parent: 127 - type: Transform -- uid: 7677 - type: LampGold - components: - - pos: 24.55078,-29.030926 - parent: 127 - type: Transform -- uid: 7678 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-26.5 - parent: 127 - type: Transform -- uid: 7679 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-28.5 - parent: 127 - type: Transform -- uid: 7680 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-36.5 - parent: 127 - type: Transform -- uid: 7681 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-34.5 - parent: 127 - type: Transform -- uid: 7682 - type: RandomSpawner - components: - - pos: 60.5,-36.5 - parent: 127 - type: Transform -- uid: 7683 - type: AirlockGlass - components: - - pos: 48.5,-26.5 - parent: 127 - type: Transform -- uid: 7684 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-17.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7685 - type: ClosetMaintenanceFilledRandom - components: - - pos: 39.5,-32.5 - parent: 127 - type: Transform -- uid: 7686 - type: ClosetMaintenanceFilledRandom - components: - - pos: 38.5,-32.5 - parent: 127 - type: Transform -- uid: 7687 - type: ClosetEmergencyFilledRandom - components: - - pos: 37.5,-16.5 - parent: 127 - type: Transform -- uid: 7688 - type: ClosetFireFilled - components: - - pos: 37.5,-15.5 - parent: 127 - type: Transform -- uid: 7689 - type: PoweredSmallLightEmpty - components: - - pos: 45.5,-32.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7690 - type: PoweredSmallLightEmpty - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-38.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7691 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 33.5,-22.5 - parent: 127 - type: Transform -- uid: 7692 - type: AcousticGuitarInstrument - components: - - flags: InContainer - type: MetaData - - parent: 5755 - type: Transform - - canCollide: False - type: Physics -- uid: 7693 - type: NitrogenTankFilled - components: - - pos: 48.69042,-29.51778 - parent: 127 - type: Transform -- uid: 7694 - type: MouseTimedSpawner - components: - - pos: 34.5,-13.5 - parent: 127 - type: Transform -- uid: 7695 - type: Table - components: - - pos: 32.5,-10.5 - parent: 127 - type: Transform -- uid: 7696 - type: LockerWeldingSuppliesFilled - components: - - pos: 31.5,-10.5 - parent: 127 - type: Transform -- uid: 7697 - type: LockerElectricalSuppliesFilled - components: - - pos: 40.5,-15.5 - parent: 127 - type: Transform -- uid: 7698 - type: ClosetToolFilled - components: - - pos: 53.5,-15.5 - parent: 127 - type: Transform -- uid: 7699 - type: ClosetToolFilled - components: - - pos: 43.5,-29.5 - parent: 127 - type: Transform -- uid: 7700 - type: LockerWeldingSuppliesFilled - components: - - pos: 30.5,-26.5 - parent: 127 - type: Transform -- uid: 7701 - type: LockerElectricalSuppliesFilled - components: - - pos: 33.5,-26.5 - parent: 127 - type: Transform -- uid: 7702 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,14.5 - parent: 127 - type: Transform -- uid: 7703 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,14.5 - parent: 127 - type: Transform -- uid: 7704 - type: NitrogenTankFilled - components: - - pos: 41.65763,-15.5273285 - parent: 127 - type: Transform -- uid: 7705 - type: MaintenanceFluffSpawner - components: - - pos: 57.5,-20.5 - parent: 127 - type: Transform -- uid: 7706 - type: Fork - components: - - pos: 15.333111,-2.3773243 - parent: 127 - type: Transform -- uid: 7707 - type: MaintenanceFluffSpawner - components: - - pos: 28.5,-26.5 - parent: 127 - type: Transform -- uid: 7708 - type: BarSign - components: - - pos: 43.5,-33.5 - parent: 127 - type: Transform -- uid: 7709 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 127 - type: Transform -- uid: 7710 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-20.5 - parent: 127 - type: Transform -- uid: 7711 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-20.5 - parent: 127 - type: Transform -- uid: 7712 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-20.5 - parent: 127 - type: Transform -- uid: 7713 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-20.5 - parent: 127 - type: Transform -- uid: 7714 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-20.5 - parent: 127 - type: Transform -- uid: 7715 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-20.5 - parent: 127 - type: Transform -- uid: 7716 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-20.5 - parent: 127 - type: Transform -- uid: 7717 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-20.5 - parent: 127 - type: Transform -- uid: 7718 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-20.5 - parent: 127 - type: Transform -- uid: 7719 - type: DisposalPipe - components: - - pos: 33.5,-21.5 - parent: 127 - type: Transform -- uid: 7720 - type: DisposalBend - components: - - pos: 33.5,-20.5 - parent: 127 - type: Transform -- uid: 7721 - type: KitchenReagentGrinder - components: - - pos: 49.5,-19.5 - parent: 127 - type: Transform -- uid: 7722 - type: RandomInstruments - components: - - pos: 46.5,-19.5 - parent: 127 - type: Transform -- uid: 7723 - type: RandomInstruments - components: - - pos: 46.5,-25.5 - parent: 127 - type: Transform -- uid: 7724 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,16.5 - parent: 127 - type: Transform -- uid: 7725 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,16.5 - parent: 127 - type: Transform -- uid: 7726 - type: CableApcExtension - components: - - pos: 32.5,-18.5 - parent: 127 - type: Transform -- uid: 7727 - type: Paper - components: - - pos: 2.5,-11.5 - parent: 127 - type: Transform -- uid: 7728 - type: Paper - components: - - pos: 2.5,-11.5 - parent: 127 - type: Transform -- uid: 7729 - type: ClothingOuterWinterCap - components: - - flags: InContainer - type: MetaData - - parent: 1111 - type: Transform - - canCollide: False - type: Physics -- uid: 7730 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,16.5 - parent: 127 - type: Transform -- uid: 7731 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,18.5 - parent: 127 - type: Transform -- uid: 7732 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,18.5 - parent: 127 - type: Transform -- uid: 7733 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,18.5 - parent: 127 - type: Transform -- uid: 7734 - type: ClothingOuterWinterHoP - components: - - flags: InContainer - type: MetaData - - parent: 826 - type: Transform - - canCollide: False - type: Physics -- uid: 7735 - type: Paper - components: - - pos: 2.5,-11.5 - parent: 127 - type: Transform -- uid: 7736 - type: Paper - components: - - pos: 2.5,-11.5 - parent: 127 - type: Transform -- uid: 7737 - type: Paper - components: - - pos: 2.5,-11.5 - parent: 127 - type: Transform -- uid: 7738 - type: Paper - components: - - pos: 2.5,-11.5 - parent: 127 - type: Transform -- uid: 7739 - type: Paper - components: - - pos: 2.5,-11.5 - parent: 127 - type: Transform -- uid: 7740 - type: Paper - components: - - pos: 2.5,-11.5 - parent: 127 - type: Transform -- uid: 7741 - type: Paper - components: - - pos: 2.5,-11.5 - parent: 127 - type: Transform -- uid: 7742 - type: Paper - components: - - pos: 2.5,-11.5 - parent: 127 - type: Transform -- uid: 7743 - type: Paper - components: - - pos: 2.5,-11.5 - parent: 127 - type: Transform -- uid: 7744 - type: Paper - components: - - pos: 2.5,-11.5 - parent: 127 - type: Transform -- uid: 7745 - type: Paper - components: - - pos: 2.5,-11.5 - parent: 127 - type: Transform -- uid: 7746 - type: Paper - components: - - pos: 2.5,-11.5 - parent: 127 - type: Transform -- uid: 7747 - type: Spoon - components: - - pos: 15.692486,-2.3773243 - parent: 127 - type: Transform -- uid: 7748 - type: Sink - components: - - pos: 42.5,-34.5 - parent: 127 - type: Transform -- uid: 7749 - type: MedkitBruteFilled - components: - - pos: 54.52386,-36.460934 - parent: 127 - type: Transform -- uid: 7750 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-30.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 7751 - type: EmergencyLight - components: - - pos: 17.5,-33.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 7752 - type: NitrogenTankFilled - components: - - pos: 48.34667,-29.45528 - parent: 127 - type: Transform -- uid: 7753 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-23.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 7754 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,20.5 - parent: 127 - type: Transform -- uid: 7755 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-14.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 7756 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 7757 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-0.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 7758 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,20.5 - parent: 127 - type: Transform -- uid: 7759 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,20.5 - parent: 127 - type: Transform -- uid: 7760 - type: OxygenCanister - components: - - pos: 46.5,4.5 - parent: 127 - type: Transform -- uid: 7761 - type: PlasmaCanister - components: - - pos: 46.5,10.5 - parent: 127 - type: Transform -- uid: 7762 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 17.5,2.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 7763 - type: NitrogenCanister - components: - - pos: 46.5,6.5 - parent: 127 - type: Transform -- uid: 7764 - type: CarbonDioxideCanister - components: - - pos: 46.5,8.5 - parent: 127 - type: Transform -- uid: 7765 - type: WaterVaporCanister - components: - - pos: 46.5,12.5 - parent: 127 - type: Transform -- uid: 7766 - type: StorageCanister - components: - - pos: 46.5,14.5 - parent: 127 - type: Transform -- uid: 7767 - type: EmergencyLight - components: - - pos: 1.5,-16.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 7768 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-4.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 7769 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-8.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 7770 - type: EmergencyLight - components: - - pos: 32.5,-18.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 7771 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 42.5,-23.5 - parent: 127 - type: Transform - - type: ActiveEmergencyLight -- uid: 7772 - type: NitrogenTankFilled - components: - - pos: 24.340113,-26.449673 - parent: 127 - type: Transform -- uid: 7773 - type: NitrogenTankFilled - components: - - pos: 24.652613,-26.496548 - parent: 127 - type: Transform -- uid: 7774 - type: StorageCanister - components: - - pos: 46.5,16.5 - parent: 127 - type: Transform -- uid: 7775 - type: StorageCanister - components: - - pos: 46.5,18.5 - parent: 127 - type: Transform -- uid: 7776 - type: GasCanisterBrokenBase - components: - - pos: 46.5,20.5 - parent: 127 - type: Transform -- uid: 7777 - type: ClothingHeadHatWeldingMaskFlameBlue - components: - - pos: 32.378952,-10.286734 - parent: 127 - type: Transform -- uid: 7778 - type: ClothingHeadHatWeldingMaskFlame - components: - - pos: 32.660202,-10.489859 - parent: 127 - type: Transform -- uid: 7779 - type: ClothingHeadHatWelding - components: - - pos: 57.527424,-24.40512 - parent: 127 - type: Transform -- uid: 7780 - type: ClothingHeadHatWeldingMaskPainted - components: - - pos: 57.53268,-31.399372 - parent: 127 - type: Transform -- uid: 7781 - type: GasPipeStraight - components: - - pos: 42.5,3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7782 - type: FlashlightLantern - components: - - pos: 57.53507,-32.568096 - parent: 127 - type: Transform -- uid: 7783 - type: ShuttersNormalOpen - components: - - pos: 24.5,-21.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7791 - type: SignalReceiver -- uid: 7784 - type: ShuttersNormalOpen - components: - - pos: 25.5,-21.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7791 - type: SignalReceiver -- uid: 7785 - type: ShuttersNormalOpen - components: - - pos: 23.5,-22.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7791 - type: SignalReceiver -- uid: 7786 - type: ShuttersNormalOpen - components: - - pos: 23.5,-23.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7791 - type: SignalReceiver -- uid: 7787 - type: ShuttersNormalOpen - components: - - pos: 30.5,-21.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7792 - type: SignalReceiver -- uid: 7788 - type: ShuttersNormalOpen - components: - - pos: 31.5,-21.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7792 - type: SignalReceiver -- uid: 7789 - type: ShuttersNormalOpen - components: - - pos: 32.5,-22.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7792 - type: SignalReceiver -- uid: 7790 - type: ShuttersNormalOpen - components: - - pos: 32.5,-23.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7792 - type: SignalReceiver -- uid: 7791 - type: SignalButton - components: - - pos: 26.5,-21.5 - parent: 127 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7784 - - port: Toggle - uid: 7783 - - port: Toggle - uid: 7785 - - port: Toggle - uid: 7786 - type: SignalTransmitter -- uid: 7792 - type: SignalButton - components: - - pos: 29.5,-21.5 - parent: 127 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7787 - - port: Toggle - uid: 7788 - - port: Toggle - uid: 7789 - - port: Toggle - uid: 7790 - type: SignalTransmitter -- uid: 7793 - type: GrilleBroken - components: - - pos: 63.5,-16.5 - parent: 127 - type: Transform -- uid: 7794 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-15.5 - parent: 127 - type: Transform -- uid: 7795 - type: GrilleBroken - components: - - pos: 60.5,-13.5 - parent: 127 - type: Transform -- uid: 7796 - type: WallSolid - components: - - pos: 58.5,-20.5 - parent: 127 - type: Transform -- uid: 7797 - type: WallSolid - components: - - pos: 58.5,-18.5 - parent: 127 - type: Transform -- uid: 7798 - type: AirlockMaint - components: - - pos: 58.5,-19.5 - parent: 127 - type: Transform -- uid: 7799 - type: CableApcExtension - components: - - pos: 56.5,-19.5 - parent: 127 - type: Transform -- uid: 7800 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-19.5 - parent: 127 - type: Transform -- uid: 7801 - type: Table - components: - - pos: 59.5,-18.5 - parent: 127 - type: Transform -- uid: 7802 - type: Table - components: - - pos: 60.5,-18.5 - parent: 127 - type: Transform -- uid: 7803 - type: Rack - components: - - pos: 59.5,-20.5 - parent: 127 - type: Transform -- uid: 7804 - type: CrateEmptySpawner - components: - - pos: 44.5,-15.5 - parent: 127 - type: Transform -- uid: 7805 - type: CrateEmptySpawner - components: - - pos: 60.5,-20.5 - parent: 127 - type: Transform -- uid: 7806 - type: CrateEmptySpawner - components: - - pos: 33.5,-27.5 - parent: 127 - type: Transform -- uid: 7807 - type: CrateEmptySpawner - components: - - pos: -6.5,-19.5 - parent: 127 - type: Transform -- uid: 7808 - type: GasPressurePump - components: - - name: o2 pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 42.5,3.5 - parent: 127 - type: Transform -- uid: 7809 - type: ClothingEyesEyepatch - components: - - pos: 59.47585,-18.355053 - parent: 127 - type: Transform -- uid: 7810 - type: ClothingEyesEyepatch - components: - - pos: 59.616474,-18.511303 - parent: 127 - type: Transform -- uid: 7811 - type: ClothingOuterCoatPirate - components: - - pos: 60.241474,-18.370678 - parent: 127 - type: Transform -- uid: 7812 - type: ClothingOuterCoatPirate - components: - - pos: 60.460224,-18.370678 - parent: 127 - type: Transform -- uid: 7813 - type: ClothingHeadHatPirate - components: - - pos: 59.35085,-20.339428 - parent: 127 - type: Transform -- uid: 7814 - type: ClothingHeadHatPirate - components: - - pos: 59.585224,-20.511303 - parent: 127 - type: Transform -- uid: 7815 - type: ClosetBase - components: - - pos: 56.5,-41.5 - parent: 127 - type: Transform - - containers: - entity_storage: !type:Container - ents: - - 7830 - type: ContainerContainer -- uid: 7816 - type: Grille - components: - - pos: 61.5,-43.5 - parent: 127 - type: Transform -- uid: 7817 - type: Grille - components: - - pos: 61.5,-44.5 - parent: 127 - type: Transform -- uid: 7818 - type: Grille - components: - - pos: 59.5,-44.5 - parent: 127 - type: Transform -- uid: 7819 - type: Grille - components: - - pos: 57.5,-44.5 - parent: 127 - type: Transform -- uid: 7820 - type: Grille - components: - - pos: 56.5,-44.5 - parent: 127 - type: Transform -- uid: 7821 - type: Grille - components: - - pos: 55.5,-44.5 - parent: 127 - type: Transform -- uid: 7822 - type: GrilleBroken - components: - - pos: 61.5,-42.5 - parent: 127 - type: Transform -- uid: 7823 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-44.5 - parent: 127 - type: Transform -- uid: 7824 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 58.5,-44.5 - parent: 127 - type: Transform -- uid: 7825 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-44.5 - parent: 127 - type: Transform -- uid: 7826 - type: CableMV - components: - - pos: -19.5,-0.5 - parent: 127 - type: Transform -- uid: 7827 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-5.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7828 - type: ClothingOuterCoatInspector - components: - - pos: 58.520424,-41.25641 - parent: 127 - type: Transform -- uid: 7829 - type: Lamp - components: - - pos: 58.516495,-40.273945 - parent: 127 - type: Transform -- uid: 7830 - type: SheetPlasma - components: - - flags: InContainer - type: MetaData - - parent: 7815 - type: Transform - - canCollide: False - type: Physics -- uid: 7831 - type: AirlockMaint - components: - - pos: 57.5,-39.5 - parent: 127 - type: Transform -- uid: 7832 - type: CableApcExtension - components: - - pos: 57.5,-38.5 - parent: 127 - type: Transform -- uid: 7833 - type: CableApcExtension - components: - - pos: 57.5,-39.5 - parent: 127 - type: Transform -- uid: 7834 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 57.5,-41.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7835 - type: RandomSpawner - components: - - pos: 56.5,-40.5 - parent: 127 - type: Transform -- uid: 7836 - type: Grille - components: - - pos: 58.5,-42.5 - parent: 127 - type: Transform -- uid: 7837 - type: Grille - components: - - pos: 56.5,-42.5 - parent: 127 - type: Transform -- uid: 7838 - type: DrinkChangelingStingCan - components: - - pos: 61.35956,-40.319157 - parent: 127 - type: Transform -- uid: 7839 - type: FoamBlade - components: - - pos: 61.500183,-40.600407 - parent: 127 - type: Transform -- uid: 7840 - type: ClothingShoeSlippersDuck - components: - - pos: 57.48456,-40.694157 - parent: 127 - type: Transform -- uid: 7841 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-24.5 - parent: 127 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4134 - Forward: - - port: Left - uid: 4134 - Off: - - port: Middle - uid: 4134 - type: SignalReceiver -- uid: 7842 - type: FirelockGlass - components: - - pos: 21.5,-0.5 - parent: 127 - type: Transform -- uid: 7843 - type: FirelockGlass - components: - - pos: 22.5,-0.5 - parent: 127 - type: Transform -- uid: 7844 - type: FirelockGlass - components: - - pos: 10.5,-0.5 - parent: 127 - type: Transform -- uid: 7845 - type: FirelockGlass - components: - - pos: 9.5,-0.5 - parent: 127 - type: Transform -- uid: 7846 - type: ExtinguisherCabinetFilled - components: - - pos: 15.5,-15.5 - parent: 127 - type: Transform -- uid: 7847 - type: ExtinguisherCabinetFilled - components: - - pos: 23.5,-21.5 - parent: 127 - type: Transform -- uid: 7848 - type: ExtinguisherCabinetFilled - components: - - pos: 18.5,-24.5 - parent: 127 - type: Transform -- uid: 7849 - type: ExtinguisherCabinetFilled - components: - - pos: 8.5,-22.5 - parent: 127 - type: Transform -- uid: 7850 - type: ExtinguisherCabinetFilled - components: - - pos: -1.5,-18.5 - parent: 127 - type: Transform -- uid: 7851 - type: ExtinguisherCabinetFilled - components: - - pos: 5.5,-15.5 - parent: 127 - type: Transform -- uid: 7852 - type: ExtinguisherCabinetFilled - components: - - pos: 18.5,-32.5 - parent: 127 - type: Transform -- uid: 7853 - type: ExtinguisherCabinetFilled - components: - - pos: 8.5,-32.5 - parent: 127 - type: Transform -- uid: 7854 - type: ExtinguisherCabinetFilled - components: - - pos: 30.5,-30.5 - parent: 127 - type: Transform -- uid: 7855 - type: ExtinguisherCabinetFilled - components: - - pos: 37.5,-33.5 - parent: 127 - type: Transform -- uid: 7856 - type: ExtinguisherCabinetFilled - components: - - pos: 52.5,-20.5 - parent: 127 - type: Transform -- uid: 7857 - type: ExtinguisherCabinetFilled - components: - - pos: 35.5,-24.5 - parent: 127 - type: Transform -- uid: 7858 - type: ExtinguisherCabinetFilled - components: - - pos: 27.5,-24.5 - parent: 127 - type: Transform -- uid: 7859 - type: GasFilter - components: - - name: miasma filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 42.5,18.5 - parent: 127 - type: Transform -- uid: 7860 - type: GasFilter - components: - - rot: 3.141592653589793 rad - pos: 42.5,20.5 - parent: 127 - type: Transform -- uid: 7861 - type: ClothingHeadHatFedoraBrown - components: - - pos: 58.489063,-40.9801 - parent: 127 - type: Transform -- uid: 7862 - type: ClothingNeckTieRed - components: - - pos: 58.44219,-41.308224 - parent: 127 - type: Transform -- uid: 7863 - type: CarpetBlue - components: - - pos: 12.5,-1.5 - parent: 127 - type: Transform -- uid: 7864 - type: CarpetBlue - components: - - pos: 13.5,-1.5 - parent: 127 - type: Transform -- uid: 7865 - type: CarpetBlue - components: - - pos: 13.5,-0.5 - parent: 127 - type: Transform -- uid: 7866 - type: Carpet - components: - - pos: 15.5,-3.5 - parent: 127 - type: Transform -- uid: 7867 - type: Carpet - components: - - pos: 15.5,-2.5 - parent: 127 - type: Transform -- uid: 7868 - type: Carpet - components: - - pos: 15.5,-1.5 - parent: 127 - type: Transform -- uid: 7869 - type: Carpet - components: - - pos: 16.5,-1.5 - parent: 127 - type: Transform -- uid: 7870 - type: Carpet - components: - - pos: 16.5,-2.5 - parent: 127 - type: Transform -- uid: 7871 - type: Carpet - components: - - pos: 16.5,-3.5 - parent: 127 - type: Transform -- uid: 7872 - type: SpawnMobMcGriff - components: - - pos: 34.5,-23.5 - parent: 127 - type: Transform -- uid: 7873 - type: SpawnMobPossumMorty - components: - - pos: 1.5,-16.5 - parent: 127 - type: Transform -- uid: 7874 - type: LockerBooze - components: - - pos: 43.5,-34.5 - parent: 127 - type: Transform -- uid: 7875 - type: MedkitFilled - components: - - pos: 39.533707,-8.109301 - parent: 127 - type: Transform -- uid: 7876 - type: MedkitAdvancedFilled - components: - - pos: 39.533707,-8.249926 - parent: 127 - type: Transform -- uid: 7877 - type: MedkitCombatFilled - components: - - pos: 39.533707,-8.359301 - parent: 127 - type: Transform -- uid: 7878 - type: MedkitO2 - components: - - pos: 39.533707,-8.484301 - parent: 127 - type: Transform -- uid: 7879 - type: ToyIan - components: - - pos: 26.866974,-4.766476 - parent: 127 - type: Transform -- uid: 7880 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,5.5 - parent: 127 - type: Transform -- uid: 7881 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,7.5 - parent: 127 - type: Transform -- uid: 7882 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,9.5 - parent: 127 - type: Transform -- uid: 7883 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,11.5 - parent: 127 - type: Transform -- uid: 7884 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,13.5 - parent: 127 - type: Transform -- uid: 7885 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,15.5 - parent: 127 - type: Transform -- uid: 7886 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,17.5 - parent: 127 - type: Transform -- uid: 7887 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,19.5 - parent: 127 - type: Transform -- uid: 7888 - type: GasPressurePump - components: - - name: n2 pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 42.5,5.5 - parent: 127 - type: Transform -- uid: 7889 - type: GasPressurePump - components: - - name: co2 pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 42.5,7.5 - parent: 127 - type: Transform -- uid: 7890 - type: GasPressurePump - components: - - name: plasma pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 42.5,9.5 - parent: 127 - type: Transform -- uid: 7891 - type: GasPressurePump - components: - - name: water vapor pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 42.5,11.5 - parent: 127 - type: Transform -- uid: 7892 - type: GasPressurePump - components: - - name: tritium pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 42.5,13.5 - parent: 127 - type: Transform -- uid: 7893 - type: GasPressurePump - components: - - name: n20 pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 42.5,15.5 - parent: 127 - type: Transform -- uid: 7894 - type: GasPressurePump - components: - - name: miasma pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 42.5,17.5 - parent: 127 - type: Transform -- uid: 7895 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 42.5,19.5 - parent: 127 - type: Transform -- uid: 7896 - type: GasMixerFlipped - components: - - name: distro mixer - type: MetaData - - rot: 1.5707963267948966 rad - pos: 39.5,5.5 - parent: 127 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7897 - type: GasPipeStraight - components: - - pos: 39.5,4.5 - parent: 127 - type: Transform -- uid: 7898 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,5.5 - parent: 127 - type: Transform -- uid: 7899 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,4.5 - parent: 127 - type: Transform -- uid: 7900 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,5.5 - parent: 127 - type: Transform -- uid: 7901 - type: GasMixer - components: - - name: o2 + n2 to mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 40.5,6.5 - parent: 127 - type: Transform -- uid: 7902 - type: GasMixer - components: - - name: co2 to mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 40.5,7.5 - parent: 127 - type: Transform -- uid: 7903 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 40.5,3.5 - parent: 127 - type: Transform -- uid: 7904 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 41.5,5.5 - parent: 127 - type: Transform -- uid: 7905 - type: GasPipeBend - components: - - pos: 41.5,6.5 - parent: 127 - type: Transform -- uid: 7906 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 39.5,3.5 - parent: 127 - type: Transform -- uid: 7907 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,3.5 - parent: 127 - type: Transform -- uid: 7908 - type: GasPipeStraight - components: - - pos: 40.5,8.5 - parent: 127 - type: Transform -- uid: 7909 - type: GasPipeStraight - components: - - pos: 40.5,10.5 - parent: 127 - type: Transform -- uid: 7910 - type: GasPipeStraight - components: - - pos: 40.5,12.5 - parent: 127 - type: Transform -- uid: 7911 - type: GasPipeStraight - components: - - pos: 40.5,14.5 - parent: 127 - type: Transform -- uid: 7912 - type: GasPipeStraight - components: - - pos: 40.5,16.5 - parent: 127 - type: Transform -- uid: 7913 - type: GasPipeStraight - components: - - pos: 40.5,18.5 - parent: 127 - type: Transform -- uid: 7914 - type: GasMixer - components: - - name: plasma to mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 40.5,9.5 - parent: 127 - type: Transform -- uid: 7915 - type: GasMixer - components: - - name: water vapor to mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 40.5,11.5 - parent: 127 - type: Transform -- uid: 7916 - type: GasMixer - components: - - name: tritium to mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 40.5,13.5 - parent: 127 - type: Transform -- uid: 7917 - type: GasMixer - components: - - name: n20 to mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 40.5,15.5 - parent: 127 - type: Transform -- uid: 7918 - type: GasMixer - components: - - name: miasma to mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 40.5,17.5 - parent: 127 - type: Transform -- uid: 7919 - type: GasMixer - components: - - rot: 3.141592653589793 rad - pos: 40.5,19.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7920 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,19.5 - parent: 127 - type: Transform -- uid: 7921 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,17.5 - parent: 127 - type: Transform -- uid: 7922 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,15.5 - parent: 127 - type: Transform -- uid: 7923 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,13.5 - parent: 127 - type: Transform -- uid: 7924 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,11.5 - parent: 127 - type: Transform -- uid: 7925 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,9.5 - parent: 127 - type: Transform -- uid: 7926 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,7.5 - parent: 127 - type: Transform -- uid: 7927 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7928 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 7929 - type: TablePlasmaGlass - components: - - pos: -27.5,-1.5 - parent: 127 - type: Transform -- uid: 7930 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7931 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7932 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7933 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 37.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7934 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 38.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7935 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7936 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7937 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7938 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 42.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7939 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7940 - type: GasValve - components: - - rot: -1.5707963267948966 rad - pos: 44.5,2.5 - parent: 127 - type: Transform - - open: False - type: GasValve - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7941 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 45.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7942 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 42.5,21.5 - parent: 127 - type: Transform -- uid: 7943 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,3.5 - parent: 127 - type: Transform -- uid: 7944 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,4.5 - parent: 127 - type: Transform -- uid: 7945 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,5.5 - parent: 127 - type: Transform -- uid: 7946 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,6.5 - parent: 127 - type: Transform -- uid: 7947 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,7.5 - parent: 127 - type: Transform -- uid: 7948 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,8.5 - parent: 127 - type: Transform -- uid: 7949 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,9.5 - parent: 127 - type: Transform -- uid: 7950 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,10.5 - parent: 127 - type: Transform -- uid: 7951 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,11.5 - parent: 127 - type: Transform -- uid: 7952 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,12.5 - parent: 127 - type: Transform -- uid: 7953 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,13.5 - parent: 127 - type: Transform -- uid: 7954 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,14.5 - parent: 127 - type: Transform -- uid: 7955 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,15.5 - parent: 127 - type: Transform -- uid: 7956 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,16.5 - parent: 127 - type: Transform -- uid: 7957 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,17.5 - parent: 127 - type: Transform -- uid: 7958 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,18.5 - parent: 127 - type: Transform -- uid: 7959 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,19.5 - parent: 127 - type: Transform -- uid: 7960 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,20.5 - parent: 127 - type: Transform -- uid: 7961 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,21.5 - parent: 127 - type: Transform -- uid: 7962 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,22.5 - parent: 127 - type: Transform -- uid: 7963 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 43.5,22.5 - parent: 127 - type: Transform -- uid: 7964 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 42.5,22.5 - parent: 127 - type: Transform -- uid: 7965 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 41.5,22.5 - parent: 127 - type: Transform -- uid: 7966 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 40.5,22.5 - parent: 127 - type: Transform -- uid: 7967 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 39.5,22.5 - parent: 127 - type: Transform -- uid: 7968 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 38.5,22.5 - parent: 127 - type: Transform -- uid: 7969 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 37.5,22.5 - parent: 127 - type: Transform -- uid: 7970 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 36.5,22.5 - parent: 127 - type: Transform -- uid: 7971 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 44.5,21.5 - parent: 127 - type: Transform -- uid: 7972 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,21.5 - parent: 127 - type: Transform -- uid: 7973 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 40.5,20.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7974 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 41.5,20.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7975 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 41.5,22.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7976 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 42.5,22.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7977 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 40.5,21.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7978 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 39.5,21.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7979 - type: GasPipeStraight - components: - - pos: 40.5,22.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7980 - type: GasPipeStraight - components: - - pos: 40.5,23.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7981 - type: GasPipeStraight - components: - - pos: 42.5,23.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7982 - type: GasPipeStraight - components: - - pos: 41.5,21.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7983 - type: GasValve - components: - - pos: 44.5,22.5 - parent: 127 - type: Transform -- uid: 7984 - type: GasPassiveVent - components: - - pos: 44.5,23.5 - parent: 127 - type: Transform -- uid: 7985 - type: GasPassiveVent - components: - - pos: 40.5,24.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7986 - type: GasOutletInjector - components: - - pos: 42.5,24.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7987 - type: GasPressurePump - components: - - pos: 39.5,20.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7988 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,19.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7989 - type: GasPipeStraight - components: - - pos: 39.5,18.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7990 - type: GasPipeStraight - components: - - pos: 39.5,17.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7991 - type: GasPipeStraight - components: - - pos: 39.5,16.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7992 - type: GasPipeStraight - components: - - pos: 39.5,15.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7993 - type: GasPipeStraight - components: - - pos: 39.5,14.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7994 - type: GasPipeStraight - components: - - pos: 39.5,13.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7995 - type: GasPipeStraight - components: - - pos: 39.5,12.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7996 - type: GasPipeStraight - components: - - pos: 39.5,11.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7997 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 39.5,10.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 7998 - type: GasValve - components: - - pos: 38.5,3.5 - parent: 127 - type: Transform - - open: False - type: GasValve - - color: '#990000FF' - type: AtmosPipeColor -- uid: 7999 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,4.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 8000 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,5.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 8001 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,6.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 8002 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 38.5,10.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 8003 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 39.5,9.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 8004 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 39.5,8.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 8005 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 39.5,7.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 8006 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 38.5,7.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 8007 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 38.5,8.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 8008 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 38.5,9.5 - parent: 127 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 8009 - type: Table - components: - - pos: 36.5,10.5 - parent: 127 - type: Transform -- uid: 8010 - type: Table - components: - - pos: 37.5,10.5 - parent: 127 - type: Transform -- uid: 8011 - type: VendingMachineAtmosDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 38.5,10.5 - parent: 127 - type: Transform -- uid: 8012 - type: LockerAtmosphericsFilled - components: - - pos: 36.5,9.5 - parent: 127 - type: Transform -- uid: 8013 - type: LockerAtmosphericsFilled - components: - - pos: 36.5,8.5 - parent: 127 - type: Transform -- uid: 8014 - type: Rack - components: - - pos: 36.5,7.5 - parent: 127 - type: Transform -- uid: 8015 - type: GasThermoMachineFreezer - components: - - pos: 36.5,2.5 - parent: 127 - type: Transform -- uid: 8016 - type: GasThermoMachineFreezer - components: - - pos: 36.5,3.5 - parent: 127 - type: Transform -- uid: 8017 - type: GasThermoMachineHeater - components: - - pos: 36.5,4.5 - parent: 127 - type: Transform -- uid: 8018 - type: StorageCanister - components: - - pos: 39.5,13.5 - parent: 127 - type: Transform -- uid: 8019 - type: StorageCanister - components: - - pos: 39.5,14.5 - parent: 127 - type: Transform -- uid: 8020 - type: StorageCanister - components: - - pos: 39.5,15.5 - parent: 127 - type: Transform -- uid: 8021 - type: OxygenCanister - components: - - pos: 39.5,16.5 - parent: 127 - type: Transform -- uid: 8022 - type: NitrogenCanister - components: - - pos: 39.5,17.5 - parent: 127 - type: Transform -- uid: 8023 - type: NitrousOxideCanister - components: - - pos: 39.5,18.5 - parent: 127 - type: Transform -- uid: 8024 - type: Catwalk - components: - - pos: 44.5,2.5 - parent: 127 - type: Transform -- uid: 8025 - type: SpawnPointAtmos - components: - - pos: 37.5,8.5 - parent: 127 - type: Transform -- uid: 8026 - type: SpawnPointAtmos - components: - - pos: 37.5,9.5 - parent: 127 - type: Transform -- uid: 8027 - type: PartRodMetal - components: - - rot: -1.5707963267948966 rad - pos: 36.703403,10.565624 - parent: 127 - type: Transform -- uid: 8028 - type: RCD - components: - - pos: 36.530113,7.6178565 - parent: 127 - type: Transform -- uid: 8029 - type: SheetSteel - components: - - pos: 36.508495,10.523003 - parent: 127 - type: Transform -- uid: 8030 - type: ClothingShoesBootsMag - components: - - pos: 36.405113,7.4616065 - parent: 127 - type: Transform -- uid: 8031 - type: WelderIndustrialAdvanced - components: - - pos: 37.561363,10.508481 - parent: 127 - type: Transform -- uid: 8032 - type: ReinforcedGirder - components: - - pos: 49.5,19.5 - parent: 127 - type: Transform -- uid: 8033 - type: Girder - components: - - pos: 48.5,21.5 - parent: 127 - type: Transform -- uid: 8034 - type: WarningWaste - components: - - pos: 45.5,17.5 - parent: 127 - type: Transform -- uid: 8035 - type: AtmosFixOxygenMarker - components: - - pos: 46.5,4.5 - parent: 127 - type: Transform -- uid: 8036 - type: AtmosFixOxygenMarker - components: - - pos: 47.5,4.5 - parent: 127 - type: Transform -- uid: 8037 - type: AtmosFixOxygenMarker - components: - - pos: 48.5,4.5 - parent: 127 - type: Transform -- uid: 8038 - type: AtmosFixNitrogenMarker - components: - - pos: 46.5,6.5 - parent: 127 - type: Transform -- uid: 8039 - type: AtmosFixNitrogenMarker - components: - - pos: 47.5,6.5 - parent: 127 - type: Transform -- uid: 8040 - type: AtmosFixNitrogenMarker - components: - - pos: 48.5,6.5 - parent: 127 - type: Transform -- uid: 8041 - type: AtmosFixBlockerMarker - components: - - pos: 47.5,8.5 - parent: 127 - type: Transform -- uid: 8042 - type: AtmosFixBlockerMarker - components: - - pos: 46.5,8.5 - parent: 127 - type: Transform -- uid: 8043 - type: AtmosFixBlockerMarker - components: - - pos: 48.5,8.5 - parent: 127 - type: Transform -- uid: 8044 - type: AtmosFixBlockerMarker - components: - - pos: 46.5,12.5 - parent: 127 - type: Transform -- uid: 8045 - type: AtmosFixBlockerMarker - components: - - pos: 47.5,12.5 - parent: 127 - type: Transform -- uid: 8046 - type: AtmosFixBlockerMarker - components: - - pos: 48.5,12.5 - parent: 127 - type: Transform -- uid: 8047 - type: AtmosFixBlockerMarker - components: - - pos: 46.5,14.5 - parent: 127 - type: Transform -- uid: 8048 - type: AtmosFixBlockerMarker - components: - - pos: 47.5,14.5 - parent: 127 - type: Transform -- uid: 8049 - type: AtmosFixBlockerMarker - components: - - pos: 48.5,14.5 - parent: 127 - type: Transform -- uid: 8050 - type: AtmosFixBlockerMarker - components: - - pos: 46.5,16.5 - parent: 127 - type: Transform -- uid: 8051 - type: AtmosFixBlockerMarker - components: - - pos: 47.5,16.5 - parent: 127 - type: Transform -- uid: 8052 - type: AtmosFixBlockerMarker - components: - - pos: 48.5,16.5 - parent: 127 - type: Transform -- uid: 8053 - type: AtmosFixBlockerMarker - components: - - pos: 46.5,18.5 - parent: 127 - type: Transform -- uid: 8054 - type: AtmosFixBlockerMarker - components: - - pos: 47.5,18.5 - parent: 127 - type: Transform -- uid: 8055 - type: AtmosFixBlockerMarker - components: - - pos: 48.5,18.5 - parent: 127 - type: Transform -- uid: 8056 - type: AtmosFixBlockerMarker - components: - - pos: 40.5,24.5 - parent: 127 - type: Transform -- uid: 8057 - type: AtmosFixBlockerMarker - components: - - pos: 41.5,24.5 - parent: 127 - type: Transform -- uid: 8058 - type: AtmosFixBlockerMarker - components: - - pos: 42.5,24.5 - parent: 127 - type: Transform -- uid: 8059 - type: AtmosFixBlockerMarker - components: - - pos: 42.5,25.5 - parent: 127 - type: Transform -- uid: 8060 - type: AtmosFixBlockerMarker - components: - - pos: 41.5,25.5 - parent: 127 - type: Transform -- uid: 8061 - type: AtmosFixBlockerMarker - components: - - pos: 40.5,25.5 - parent: 127 - type: Transform -- uid: 8062 - type: AtmosFixPlasmaMarker - components: - - pos: 46.5,10.5 - parent: 127 - type: Transform -- uid: 8063 - type: AtmosFixPlasmaMarker - components: - - pos: 47.5,10.5 - parent: 127 - type: Transform -- uid: 8064 - type: AtmosFixPlasmaMarker - components: - - pos: 48.5,10.5 - parent: 127 - type: Transform -- uid: 8065 - type: BlastDoor - components: - - pos: 41.5,26.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8101 - type: SignalReceiver -- uid: 8066 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,17.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8067 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,11.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8068 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,6.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8069 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 31.5,5.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8070 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,9.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8071 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 35.5,12.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8072 - type: CableApcExtension - components: - - pos: -20.5,1.5 - parent: 127 - type: Transform -- uid: 8073 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,11.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8074 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 41.5,2.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8075 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,4.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8076 - type: Poweredlight - components: - - pos: 38.5,10.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8077 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,14.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8078 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,20.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8079 - type: Poweredlight - components: - - pos: 42.5,25.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8080 - type: Poweredlight - components: - - pos: 40.5,25.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8081 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,18.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8082 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,16.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8083 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,14.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8084 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,12.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8085 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,10.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8086 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,8.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8087 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,6.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8088 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,4.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8089 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,3.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8090 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,9.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8091 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,15.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8092 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,21.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8093 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 33.5,2.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8094 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,1.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8095 - type: Poweredlight - components: - - pos: 23.5,2.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8096 - type: CableApcExtension - components: - - pos: 25.5,5.5 - parent: 127 - type: Transform -- uid: 8097 - type: CableApcExtension - components: - - pos: 25.5,4.5 - parent: 127 - type: Transform -- uid: 8098 - type: Barricade - components: - - pos: 23.5,14.5 - parent: 127 - type: Transform -- uid: 8099 - type: Barricade - components: - - pos: 25.5,13.5 - parent: 127 - type: Transform -- uid: 8100 - type: Barricade - components: - - pos: 24.5,16.5 - parent: 127 - type: Transform -- uid: 8101 - type: SignalButton - components: - - pos: 42.5,21.5 - parent: 127 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 8065 - type: SignalTransmitter -- uid: 8102 - type: CableApcExtension - components: - - pos: -20.5,2.5 - parent: 127 - type: Transform -- uid: 8103 - type: TablePlasmaGlass - components: - - pos: -27.5,-2.5 - parent: 127 - type: Transform -- uid: 8104 - type: CableApcExtension - components: - - pos: -20.5,-2.5 - parent: 127 - type: Transform -- uid: 8105 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -28.5,0.5 - parent: 127 - type: Transform -- uid: 8106 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -28.5,2.5 - parent: 127 - type: Transform -- uid: 8107 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -28.5,1.5 - parent: 127 - type: Transform -- uid: 8108 - type: ClosetEmergencyFilledRandom - components: - - pos: -11.5,12.5 - parent: 127 - type: Transform -- uid: 8109 - type: ClosetRadiationSuitFilled - components: - - pos: -16.5,13.5 - parent: 127 - type: Transform -- uid: 8110 - type: IHSVoidsuit - components: - - desc: A special pilot's suit that protects against hazardous, low pressure environments. - name: IMC pilotsuit - type: MetaData - - pos: -22.457449,-5.3641505 - parent: 127 - type: Transform -- uid: 8111 - type: ShuttersNormal - components: - - pos: -19.5,-3.5 - parent: 127 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8362 - type: SignalReceiver -- uid: 8112 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,12.5 - parent: 127 - type: Transform -- uid: 8113 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,11.5 - parent: 127 - type: Transform -- uid: 8114 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,6.5 - parent: 127 - type: Transform -- uid: 8115 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,5.5 - parent: 127 - type: Transform -- uid: 8116 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,8.5 - parent: 127 - type: Transform -- uid: 8117 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,7.5 - parent: 127 - type: Transform -- uid: 8118 - type: AirlockMaintLocked - components: - - pos: -15.5,-3.5 - parent: 127 - type: Transform -- uid: 8119 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,6.5 - parent: 127 - type: Transform -- uid: 8120 - type: WallSolid - components: - - pos: -19.5,4.5 - parent: 127 - type: Transform -- uid: 8121 - type: WallReinforced - components: - - pos: -19.5,-6.5 - parent: 127 - type: Transform -- uid: 8122 - type: WallSolid - components: - - pos: -16.5,-5.5 - parent: 127 - type: Transform -- uid: 8123 - type: WallReinforced - components: - - pos: -16.5,-6.5 - parent: 127 - type: Transform -- uid: 8124 - type: CableMV - components: - - pos: -16.5,-2.5 - parent: 127 - type: Transform -- uid: 8125 - type: AirlockMaintLocked - components: - - pos: -15.5,-0.5 - parent: 127 - type: Transform -- uid: 8126 - type: WallReinforced - components: - - pos: -15.5,-6.5 - parent: 127 - type: Transform -- uid: 8127 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,5.5 - parent: 127 - type: Transform -- uid: 8128 - type: WallReinforced - components: - - pos: -22.5,-3.5 - parent: 127 - type: Transform -- uid: 8129 - type: WallReinforced - components: - - pos: -17.5,-6.5 - parent: 127 - type: Transform -- uid: 8130 - type: AirlockScienceLocked - components: - - pos: -18.5,-2.5 - parent: 127 - type: Transform -- uid: 8131 - type: ClosetFireFilled - components: - - pos: -15.5,-5.5 - parent: 127 - type: Transform -- uid: 8132 - type: ReinforcedPlasmaWindow - components: - - pos: -22.5,0.5 - parent: 127 - type: Transform -- uid: 8133 - type: ReinforcedPlasmaWindow - components: - - pos: -22.5,3.5 - parent: 127 - type: Transform -- uid: 8134 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,8.5 - parent: 127 - type: Transform -- uid: 8135 - type: Grille - components: - - pos: -22.5,0.5 - parent: 127 - type: Transform -- uid: 8136 - type: AirlockMaintLocked - components: - - pos: -14.5,-3.5 - parent: 127 - type: Transform -- uid: 8137 - type: AirlockMaintLocked - components: - - pos: -14.5,-0.5 - parent: 127 - type: Transform -- uid: 8138 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-2.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8139 - type: WallReinforced - components: - - pos: -18.5,13.5 - parent: 127 - type: Transform -- uid: 8140 - type: CableHV - components: - - pos: -16.5,4.5 - parent: 127 - type: Transform -- uid: 8141 - type: CableApcExtension - components: - - pos: -16.5,2.5 - parent: 127 - type: Transform -- uid: 8142 - type: CableApcExtension - components: - - pos: -16.5,3.5 - parent: 127 - type: Transform -- uid: 8143 - type: CableApcExtension - components: - - pos: -15.5,2.5 - parent: 127 - type: Transform -- uid: 8144 - type: CableApcExtension - components: - - pos: -12.5,1.5 - parent: 127 - type: Transform -- uid: 8145 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8146 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8147 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8148 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8149 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8150 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8151 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8152 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8153 - type: FirelockGlass - components: - - pos: 25.5,15.5 - parent: 127 - type: Transform -- uid: 8154 - type: FirelockGlass - components: - - pos: 24.5,15.5 - parent: 127 - type: Transform -- uid: 8155 - type: FirelockGlass - components: - - pos: 7.5,18.5 - parent: 127 - type: Transform -- uid: 8156 - type: FirelockGlass - components: - - pos: 6.5,18.5 - parent: 127 - type: Transform -- uid: 8157 - type: FirelockGlass - components: - - pos: -5.5,27.5 - parent: 127 - type: Transform -- uid: 8158 - type: FirelockGlass - components: - - pos: -5.5,26.5 - parent: 127 - type: Transform -- uid: 8159 - type: FirelockGlass - components: - - pos: -9.5,13.5 - parent: 127 - type: Transform -- uid: 8160 - type: FirelockGlass - components: - - pos: -9.5,14.5 - parent: 127 - type: Transform -- uid: 8161 - type: WallReinforced - components: - - pos: -18.5,14.5 - parent: 127 - type: Transform -- uid: 8162 - type: WallReinforced - components: - - pos: -17.5,14.5 - parent: 127 - type: Transform -- uid: 8163 - type: Table - components: - - pos: 10.5,10.5 - parent: 127 - type: Transform -- uid: 8164 - type: Table - components: - - pos: 10.5,7.5 - parent: 127 - type: Transform -- uid: 8165 - type: Table - components: - - pos: 10.5,8.5 - parent: 127 - type: Transform -- uid: 8166 - type: Rack - components: - - pos: 10.5,9.5 - parent: 127 - type: Transform -- uid: 8167 - type: Rack - components: - - pos: 21.5,10.5 - parent: 127 - type: Transform -- uid: 8168 - type: Rack - components: - - pos: 21.5,9.5 - parent: 127 - type: Transform -- uid: 8169 - type: Rack - components: - - pos: 31.5,22.5 - parent: 127 - type: Transform -- uid: 8170 - type: Rack - components: - - pos: 32.5,22.5 - parent: 127 - type: Transform -- uid: 8171 - type: Rack - components: - - pos: 24.5,17.5 - parent: 127 - type: Transform -- uid: 8172 - type: Rack - components: - - pos: 20.5,14.5 - parent: 127 - type: Transform -- uid: 8173 - type: Rack - components: - - pos: 19.5,14.5 - parent: 127 - type: Transform -- uid: 8174 - type: Rack - components: - - pos: 10.5,14.5 - parent: 127 - type: Transform -- uid: 8175 - type: Rack - components: - - pos: -4.5,27.5 - parent: 127 - type: Transform -- uid: 8176 - type: Rack - components: - - pos: 0.5,27.5 - parent: 127 - type: Transform -- uid: 8177 - type: Rack - components: - - pos: 3.5,22.5 - parent: 127 - type: Transform -- uid: 8178 - type: Rack - components: - - pos: 3.5,23.5 - parent: 127 - type: Transform -- uid: 8179 - type: Rack - components: - - pos: -7.5,23.5 - parent: 127 - type: Transform -- uid: 8180 - type: Rack - components: - - pos: -6.5,21.5 - parent: 127 - type: Transform -- uid: 8181 - type: Rack - components: - - pos: -13.5,13.5 - parent: 127 - type: Transform -- uid: 8182 - type: CableApcExtension - components: - - pos: -14.5,0.5 - parent: 127 - type: Transform -- uid: 8183 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,6.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8184 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,9.5 - parent: 127 - type: Transform -- uid: 8185 - type: ClosetEmergencyFilledRandom - components: - - pos: -14.5,-5.5 - parent: 127 - type: Transform -- uid: 8186 - type: Rack - components: - - pos: -8.5,-4.5 - parent: 127 - type: Transform -- uid: 8187 - type: Table - components: - - pos: -7.5,-4.5 - parent: 127 - type: Transform -- uid: 8188 - type: Table - components: - - pos: -6.5,-4.5 - parent: 127 - type: Transform -- uid: 8189 - type: MachineAnomalyGenerator - components: - - pos: -25.5,2.5 - parent: 127 - type: Transform - - enabled: False - type: AmbientSound -- uid: 8190 - type: CableApcExtension - components: - - pos: -16.5,-1.5 - parent: 127 - type: Transform -- uid: 8191 - type: CableApcExtension - components: - - pos: -17.5,-1.5 - parent: 127 - type: Transform -- uid: 8192 - type: CableApcExtension - components: - - pos: -15.5,-1.5 - parent: 127 - type: Transform -- uid: 8193 - type: Table - components: - - pos: -14.5,13.5 - parent: 127 - type: Transform -- uid: 8194 - type: Table - components: - - pos: -15.5,13.5 - parent: 127 - type: Transform -- uid: 8195 - type: Table - components: - - pos: -6.5,20.5 - parent: 127 - type: Transform -- uid: 8196 - type: Table - components: - - pos: -7.5,24.5 - parent: 127 - type: Transform -- uid: 8197 - type: Table - components: - - pos: -7.5,25.5 - parent: 127 - type: Transform -- uid: 8198 - type: Table - components: - - pos: 1.5,27.5 - parent: 127 - type: Transform -- uid: 8199 - type: Table - components: - - pos: 2.5,27.5 - parent: 127 - type: Transform -- uid: 8200 - type: Table - components: - - pos: 3.5,24.5 - parent: 127 - type: Transform -- uid: 8201 - type: Table - components: - - pos: 7.5,19.5 - parent: 127 - type: Transform -- uid: 8202 - type: Table - components: - - pos: 7.5,20.5 - parent: 127 - type: Transform -- uid: 8203 - type: Table - components: - - pos: 6.5,14.5 - parent: 127 - type: Transform -- uid: 8204 - type: Table - components: - - pos: 6.5,13.5 - parent: 127 - type: Transform -- uid: 8205 - type: Table - components: - - pos: 11.5,14.5 - parent: 127 - type: Transform -- uid: 8206 - type: Table - components: - - pos: 24.5,18.5 - parent: 127 - type: Transform -- uid: 8207 - type: Table - components: - - pos: 25.5,14.5 - parent: 127 - type: Transform -- uid: 8208 - type: Table - components: - - pos: 18.5,14.5 - parent: 127 - type: Transform -- uid: 8209 - type: Table - components: - - pos: 21.5,14.5 - parent: 127 - type: Transform -- uid: 8210 - type: Table - components: - - pos: 22.5,14.5 - parent: 127 - type: Transform -- uid: 8211 - type: Table - components: - - pos: 34.5,21.5 - parent: 127 - type: Transform -- uid: 8212 - type: MaintenanceToolSpawner - components: - - pos: -7.5,-4.5 - parent: 127 - type: Transform -- uid: 8213 - type: WeldingFuelTankFull - components: - - pos: 24.5,19.5 - parent: 127 - type: Transform -- uid: 8214 - type: WaterTankFull - components: - - pos: 11.5,12.5 - parent: 127 - type: Transform -- uid: 8215 - type: WeldingFuelTankFull - components: - - pos: 12.5,12.5 - parent: 127 - type: Transform -- uid: 8216 - type: WeldingFuelTankFull - components: - - pos: -7.5,13.5 - parent: 127 - type: Transform -- uid: 8217 - type: WaterTankFull - components: - - pos: -11.5,14.5 - parent: 127 - type: Transform -- uid: 8218 - type: WallSolid - components: - - pos: -21.5,4.5 - parent: 127 - type: Transform -- uid: 8219 - type: WallReinforced - components: - - pos: -28.5,3.5 - parent: 127 - type: Transform -- uid: 8220 - type: ClosetFireFilled - components: - - pos: -6.5,18.5 - parent: 127 - type: Transform -- uid: 8221 - type: ClosetEmergencyFilledRandom - components: - - pos: -8.5,22.5 - parent: 127 - type: Transform -- uid: 8222 - type: ClosetEmergencyFilledRandom - components: - - pos: 10.5,6.5 - parent: 127 - type: Transform -- uid: 8223 - type: ClosetFireFilled - components: - - pos: 10.5,5.5 - parent: 127 - type: Transform -- uid: 8224 - type: ClosetFireFilled - components: - - pos: 33.5,19.5 - parent: 127 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.25,-0.48 - - 0.25,0.48 - - -0.25,0.48 - - -0.25,-0.48 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 145 - type: Fixtures - - open: True - removedMasks: 20 - type: EntityStorage -- uid: 8225 - type: ClosetEmergencyFilledRandom - components: - - pos: 32.5,20.5 - parent: 127 - type: Transform -- uid: 8226 - type: ClosetFireFilled - components: - - pos: 21.5,6.5 - parent: 127 - type: Transform -- uid: 8227 - type: ClosetEmergencyFilledRandom - components: - - pos: 21.5,5.5 - parent: 127 - type: Transform -- uid: 8228 - type: ClosetMaintenanceFilledRandom - components: - - pos: 21.5,7.5 - parent: 127 - type: Transform -- uid: 8229 - type: ClosetToolFilled - components: - - pos: 34.5,22.5 - parent: 127 - type: Transform -- uid: 8230 - type: ClosetMaintenanceFilledRandom - components: - - pos: 24.5,21.5 - parent: 127 - type: Transform -- uid: 8231 - type: ClosetMaintenanceFilledRandom - components: - - pos: 18.5,12.5 - parent: 127 - type: Transform -- uid: 8232 - type: ClosetMaintenanceFilledRandom - components: - - pos: 12.5,14.5 - parent: 127 - type: Transform -- uid: 8233 - type: ClosetMaintenanceFilledRandom - components: - - pos: 7.5,21.5 - parent: 127 - type: Transform -- uid: 8234 - type: ClosetMaintenanceFilledRandom - components: - - pos: -7.5,27.5 - parent: 127 - type: Transform -- uid: 8235 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,9.5 - parent: 127 - type: Transform -- uid: 8236 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,10.5 - parent: 127 - type: Transform -- uid: 8237 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,13.5 - parent: 127 - type: Transform -- uid: 8238 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: 28.5,1.5 - parent: 127 - type: Transform -- uid: 8239 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: 28.5,2.5 - parent: 127 - type: Transform -- uid: 8240 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -25.5,13.5 - parent: 127 - type: Transform -- uid: 8241 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 26.5,14.5 - parent: 127 - type: Transform - - devices: - - 8247 - - 8249 - - 8248 - - 8246 - - 8243 - - 8245 - - 8244 - - 8239 - - 8238 - type: DeviceList -- uid: 8242 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 26.5,13.5 - parent: 127 - type: Transform - - devices: - - 8247 - - 8249 - - 8248 - - 8246 - - 8243 - - 8245 - - 8244 - - 8239 - - 8238 - - 8302 - - 8303 - - 8269 - - 8270 - - 8277 - - 8276 - - 8278 - - 8275 - - 8301 - - 8304 - type: DeviceList -- uid: 8243 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 29.5,19.5 - parent: 127 - type: Transform -- uid: 8244 - type: FirelockGlass - components: - - pos: 35.5,5.5 - parent: 127 - type: Transform -- uid: 8245 - type: FirelockGlass - components: - - pos: 35.5,6.5 - parent: 127 - type: Transform -- uid: 8246 - type: FirelockGlass - components: - - pos: 32.5,13.5 - parent: 127 - type: Transform -- uid: 8247 - type: FirelockGlass - components: - - pos: 25.5,3.5 - parent: 127 - type: Transform -- uid: 8248 - type: FirelockGlass - components: - - pos: 30.5,3.5 - parent: 127 - type: Transform -- uid: 8249 - type: FirelockGlass - components: - - pos: 29.5,3.5 - parent: 127 - type: Transform -- uid: 8250 - type: RandomSpawner - components: - - pos: 33.5,16.5 - parent: 127 - type: Transform -- uid: 8251 - type: RandomSpawner - components: - - pos: 30.5,17.5 - parent: 127 - type: Transform -- uid: 8252 - type: RandomSpawner - components: - - pos: 28.5,13.5 - parent: 127 - type: Transform -- uid: 8253 - type: RandomSpawner - components: - - pos: 31.5,7.5 - parent: 127 - type: Transform -- uid: 8254 - type: RandomSpawner - components: - - pos: 26.5,5.5 - parent: 127 - type: Transform -- uid: 8255 - type: GasPipeTJunction - components: - - pos: 26.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8256 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 19.5,2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8257 - type: GasVentPump - components: - - pos: 4.5,1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8258 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 5.5,0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8259 - type: GasVentScrubber - components: - - pos: 18.5,3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8260 - type: GasPipeStraight - components: - - pos: 24.5,1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8261 - type: FireAlarm - components: - - pos: 11.5,4.5 - parent: 127 - type: Transform - - devices: - - 8263 - - 8264 - - 8265 - - 7843 - - 7842 - - 2969 - - 2968 - - 7844 - - 7845 - - 8267 - - 8266 - - 8268 - type: DeviceList -- uid: 8262 - type: AirAlarm - components: - - pos: 10.5,4.5 - parent: 127 - type: Transform - - devices: - - 8263 - - 8264 - - 8265 - - 7843 - - 7842 - - 2969 - - 2968 - - 7844 - - 7845 - - 8267 - - 8266 - - 8268 - - 8257 - - 8258 - - 8259 - - 8256 - - invalid - type: DeviceList -- uid: 8263 - type: FirelockGlass - components: - - pos: 23.5,2.5 - parent: 127 - type: Transform -- uid: 8264 - type: FirelockGlass - components: - - pos: 23.5,1.5 - parent: 127 - type: Transform -- uid: 8265 - type: FirelockGlass - components: - - pos: 23.5,0.5 - parent: 127 - type: Transform -- uid: 8266 - type: FirelockGlass - components: - - pos: 8.5,2.5 - parent: 127 - type: Transform -- uid: 8267 - type: FirelockGlass - components: - - pos: 8.5,1.5 - parent: 127 - type: Transform -- uid: 8268 - type: FirelockGlass - components: - - pos: 8.5,0.5 - parent: 127 - type: Transform -- uid: 8269 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 36.5,7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8270 - type: GasVentScrubber - components: - - pos: 37.5,7.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8271 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 35.5,7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8272 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 35.5,6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8273 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 31.5,13.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8274 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 30.5,14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8275 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 33.5,14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8276 - type: GasVentPump - components: - - pos: 31.5,15.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8277 - type: GasVentScrubber - components: - - pos: 30.5,15.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8278 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 33.5,13.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8279 - type: GasPipeStraight - components: - - pos: 31.5,14.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8280 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,13.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8281 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8282 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8283 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,13.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8284 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,12.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8285 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,11.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8286 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,10.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8287 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8288 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,12.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8289 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,10.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8290 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8291 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8292 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,8.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8293 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8294 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,7.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8295 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8296 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8297 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8298 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8299 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8300 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8301 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 32.5,3.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8302 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 26.5,6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8303 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 26.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8304 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 33.5,3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8305 - type: GasPipeStraight - components: - - pos: 32.5,4.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8306 - type: GasPipeStraight - components: - - pos: 32.5,5.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8307 - type: GasPipeStraight - components: - - pos: 33.5,4.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8308 - type: OxygenTankFilled - components: - - pos: -9.419571,24.465149 - parent: 127 - type: Transform -- uid: 8309 - type: Rack - components: - - pos: -9.5,24.5 - parent: 127 - type: Transform -- uid: 8310 - type: WallSolid - components: - - pos: -18.5,1.5 - parent: 127 - type: Transform -- uid: 8311 - type: AirlockMaint - components: - - pos: -3.5,28.5 - parent: 127 - type: Transform -- uid: 8312 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,31.5 - parent: 127 - type: Transform -- uid: 8313 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,30.5 - parent: 127 - type: Transform -- uid: 8314 - type: BoxLightMixed - components: - - pos: -1.5135429,29.490654 - parent: 127 - type: Transform -- uid: 8315 - type: MinimoogInstrument - components: - - rot: 3.141592653589793 rad - pos: -2.5,31.5 - parent: 127 - type: Transform -- uid: 8316 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: -2.5,30.5 - parent: 127 - type: Transform -- uid: 8317 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -4.5,29.5 - parent: 127 - type: Transform -- uid: 8318 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: -3.5,30.5 - parent: 127 - type: Transform -- uid: 8319 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: -4.5,30.5 - parent: 127 - type: Transform -- uid: 8320 - type: RandomArcade - components: - - pos: -3.5,31.5 - parent: 127 - type: Transform -- uid: 8321 - type: BlockGameArcade - components: - - rot: 1.5707963267948966 rad - pos: -5.5,29.5 - parent: 127 - type: Transform -- uid: 8322 - type: SpaceVillainArcade - components: - - pos: -4.5,31.5 - parent: 127 - type: Transform -- uid: 8323 - type: ChairRitual - components: - - pos: -0.5,31.5 - parent: 127 - type: Transform -- uid: 8324 - type: ChairRitual - components: - - rot: 1.5707963267948966 rad - pos: -1.5,30.5 - parent: 127 - type: Transform -- uid: 8325 - type: ChairRitual - components: - - rot: 3.141592653589793 rad - pos: -0.5,29.5 - parent: 127 - type: Transform -- uid: 8326 - type: ChairCursed - components: - - rot: -1.5707963267948966 rad - pos: 1.5,29.5 - parent: 127 - type: Transform -- uid: 8327 - type: ChairCursed - components: - - rot: -1.5707963267948966 rad - pos: 1.5,30.5 - parent: 127 - type: Transform -- uid: 8328 - type: Paper - components: - - desc: It seems to be corrupted... - name: transcribed audio log - type: MetaData - - pos: 0.48424447,32.421375 - parent: 127 - type: Transform - - content: > - Audio log corrupted... - type: Paper -- uid: 8329 - type: Rack - components: - - pos: -0.5,32.5 - parent: 127 - type: Transform -- uid: 8330 - type: ClothingHeadHatHoodCulthood - components: - - pos: -0.5278635,32.733875 - parent: 127 - type: Transform -- uid: 8331 - type: ClothingHeadHatHoodCulthood - components: - - pos: -0.7309885,32.7495 - parent: 127 - type: Transform -- uid: 8332 - type: ClothingOuterRobesCult - components: - - pos: -0.4653635,32.515125 - parent: 127 - type: Transform -- uid: 8333 - type: ClothingOuterRobesCult - components: - - pos: -0.6684885,32.515125 - parent: 127 - type: Transform -- uid: 8334 - type: CultAltarSpawner - components: - - pos: -0.5,30.5 - parent: 127 - type: Transform -- uid: 8335 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,4.5 - parent: 127 - type: Transform -- uid: 8336 - type: RandomArtifactSpawner20 - components: - - pos: 34.5,-37.5 - parent: 127 - type: Transform -- uid: 8337 - type: Grille - components: - - pos: 33.5,-40.5 - parent: 127 - type: Transform -- uid: 8338 - type: RandomArtifactSpawner20 - components: - - pos: -7.5,29.5 - parent: 127 - type: Transform -- uid: 8339 - type: WallSolid - components: - - pos: -6.5,29.5 - parent: 127 - type: Transform -- uid: 8340 - type: WallSolid - components: - - pos: -6.5,28.5 - parent: 127 - type: Transform -- uid: 8341 - type: WallSolid - components: - - pos: -7.5,28.5 - parent: 127 - type: Transform -- uid: 8342 - type: WallReinforced - components: - - pos: 33.5,-38.5 - parent: 127 - type: Transform -- uid: 8343 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 53.5,-44.5 - parent: 127 - type: Transform -- uid: 8344 - type: WallReinforced - components: - - pos: 60.5,-21.5 - parent: 127 - type: Transform -- uid: 8345 - type: Grille - components: - - pos: 53.5,-43.5 - parent: 127 - type: Transform -- uid: 8346 - type: Grille - components: - - pos: 52.5,-43.5 - parent: 127 - type: Transform -- uid: 8347 - type: RandomArtifactSpawner20 - components: - - pos: 54.5,-40.5 - parent: 127 - type: Transform -- uid: 8348 - type: RandomArtifactSpawner20 - components: - - pos: 59.5,-16.5 - parent: 127 - type: Transform -- uid: 8349 - type: Girder - components: - - pos: 59.5,-17.5 - parent: 127 - type: Transform -- uid: 8350 - type: WallReinforced - components: - - pos: 59.5,-15.5 - parent: 127 - type: Transform -- uid: 8351 - type: WallSolid - components: - - pos: -18.5,4.5 - parent: 127 - type: Transform -- uid: 8352 - type: AirlockScienceGlassLocked - components: - - pos: -16.5,-2.5 - parent: 127 - type: Transform -- uid: 8353 - type: WallReinforced - components: - - pos: -14.5,-6.5 - parent: 127 - type: Transform -- uid: 8354 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,22.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8355 - type: CableApcExtension - components: - - pos: -1.5,24.5 - parent: 127 - type: Transform -- uid: 8356 - type: CableApcExtension - components: - - pos: -1.5,23.5 - parent: 127 - type: Transform -- uid: 8357 - type: CableApcExtension - components: - - pos: 22.5,17.5 - parent: 127 - type: Transform -- uid: 8358 - type: CableApcExtension - components: - - pos: 21.5,17.5 - parent: 127 - type: Transform -- uid: 8359 - type: ExtinguisherCabinetFilled - components: - - pos: 23.5,8.5 - parent: 127 - type: Transform -- uid: 8360 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,17.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8361 - type: CableHV - components: - - pos: -16.5,13.5 - parent: 127 - type: Transform -- uid: 8362 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: -21.5,-3.5 - parent: 127 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5704 - - port: Toggle - uid: 8111 - type: SignalTransmitter -- uid: 8363 - type: MachineAnomalyVessel - components: - - rot: 3.141592653589793 rad - pos: -20.5,-5.5 - parent: 127 - type: Transform -- uid: 8364 - type: CableApcExtension - components: - - pos: -14.5,2.5 - parent: 127 - type: Transform -- uid: 8365 - type: CableApcExtension - components: - - pos: -16.5,4.5 - parent: 127 - type: Transform -- uid: 8366 - type: WallSolid - components: - - pos: -5.5,28.5 - parent: 127 - type: Transform -- uid: 8367 - type: WallReinforced - components: - - pos: -6.5,30.5 - parent: 127 - type: Transform -- uid: 8368 - type: WallReinforced - components: - - pos: -8.5,29.5 - parent: 127 - type: Transform -- uid: 8369 - type: WallReinforced - components: - - pos: 2.5,29.5 - parent: 127 - type: Transform -- uid: 8370 - type: WallReinforced - components: - - pos: -0.5,33.5 - parent: 127 - type: Transform -- uid: 8371 - type: WallReinforced - components: - - pos: 0.5,33.5 - parent: 127 - type: Transform -- uid: 8372 - type: WallReinforced - components: - - pos: -5.5,30.5 - parent: 127 - type: Transform -- uid: 8373 - type: WallReinforced - components: - - pos: -5.5,31.5 - parent: 127 - type: Transform -- uid: 8374 - type: WallReinforced - components: - - pos: -5.5,32.5 - parent: 127 - type: Transform -- uid: 8375 - type: WallReinforced - components: - - pos: -4.5,32.5 - parent: 127 - type: Transform -- uid: 8376 - type: WallReinforced - components: - - pos: -3.5,32.5 - parent: 127 - type: Transform -- uid: 8377 - type: WallReinforced - components: - - pos: -2.5,32.5 - parent: 127 - type: Transform -- uid: 8378 - type: WallReinforced - components: - - pos: -1.5,32.5 - parent: 127 - type: Transform -- uid: 8379 - type: WallReinforced - components: - - pos: -1.5,33.5 - parent: 127 - type: Transform -- uid: 8380 - type: CableApcExtension - components: - - pos: -18.5,-1.5 - parent: 127 - type: Transform -- uid: 8381 - type: Beaker - components: - - pos: -27.704765,-2.1327305 - parent: 127 - type: Transform -- uid: 8382 - type: TablePlasmaGlass - components: - - pos: -26.5,-2.5 - parent: 127 - type: Transform -- uid: 8383 - type: CableApcExtension - components: - - pos: -14.5,-0.5 - parent: 127 - type: Transform -- uid: 8384 - type: CableApcExtension - components: - - pos: -14.5,1.5 - parent: 127 - type: Transform -- uid: 8385 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -22.5,13.5 - parent: 127 - type: Transform -- uid: 8386 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -23.5,13.5 - parent: 127 - type: Transform -- uid: 8387 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -24.5,13.5 - parent: 127 - type: Transform -- uid: 8388 - type: CableApcExtension - components: - - pos: -14.5,-1.5 - parent: 127 - type: Transform -- uid: 8389 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-3.5 - parent: 127 - type: Transform -- uid: 8390 - type: CableMV - components: - - pos: -17.5,-2.5 - parent: 127 - type: Transform -- uid: 8391 - type: CableMV - components: - - pos: -18.5,-2.5 - parent: 127 - type: Transform -- uid: 8392 - type: WallReinforced - components: - - pos: -13.5,-6.5 - parent: 127 - type: Transform -- uid: 8393 - type: AirlockScienceGlassLocked - components: - - pos: -16.5,-1.5 - parent: 127 - type: Transform -- uid: 8394 - type: ReinforcedPlasmaWindow - components: - - pos: -22.5,-0.5 - parent: 127 - type: Transform -- uid: 8395 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-3.5 - parent: 127 - type: Transform -- uid: 8396 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8397 - type: ReinforcedPlasmaWindow - components: - - pos: -22.5,2.5 - parent: 127 - type: Transform -- uid: 8398 - type: TablePlasmaGlass - components: - - pos: -21.5,2.5 - parent: 127 - type: Transform -- uid: 8399 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -33.5,9.5 - parent: 127 - type: Transform -- uid: 8400 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-1.5 - parent: 127 - type: Transform -- uid: 8401 - type: CableApcExtension - components: - - pos: -25.5,-0.5 - parent: 127 - type: Transform -- uid: 8402 - type: SignRobo - components: - - pos: -19.5,4.5 - parent: 127 - type: Transform -- uid: 8403 - type: CableApcExtension - components: - - pos: -25.5,1.5 - parent: 127 - type: Transform -- uid: 8404 - type: WallReinforced - components: - - pos: -21.5,-5.5 - parent: 127 - type: Transform -- uid: 8405 - type: ClosetMaintenanceFilledRandom - components: - - pos: -13.5,-5.5 - parent: 127 - type: Transform -- uid: 8406 - type: WallReinforced - components: - - pos: -21.5,-4.5 - parent: 127 - type: Transform -- uid: 8407 - type: WallReinforced - components: - - pos: -20.5,-6.5 - parent: 127 - type: Transform -- uid: 8408 - type: WallReinforced - components: - - pos: -18.5,-6.5 - parent: 127 - type: Transform -- uid: 8409 - type: Grille - components: - - pos: -22.5,-0.5 - parent: 127 - type: Transform -- uid: 8410 - type: CableApcExtension - components: - - pos: -14.5,-2.5 - parent: 127 - type: Transform -- uid: 8411 - type: WallReinforced - components: - - pos: -21.5,-6.5 - parent: 127 - type: Transform -- uid: 8412 - type: WallReinforced - components: - - pos: -28.5,4.5 - parent: 127 - type: Transform -- uid: 8413 - type: WallReinforced - components: - - pos: -27.5,4.5 - parent: 127 - type: Transform -- uid: 8414 - type: WallReinforced - components: - - pos: -21.5,-3.5 - parent: 127 - type: Transform -- uid: 8415 - type: WallReinforced - components: - - pos: -23.5,-3.5 - parent: 127 - type: Transform -- uid: 8416 - type: LargeBeaker - components: - - pos: -27.40789,-1.8046055 - parent: 127 - type: Transform -- uid: 8417 - type: CableApcExtension - components: - - pos: -25.5,2.5 - parent: 127 - type: Transform -- uid: 8418 - type: CableMV - components: - - pos: -14.5,-2.5 - parent: 127 - type: Transform -- uid: 8419 - type: GrilleBroken - components: - - pos: -14.5,19.5 - parent: 127 - type: Transform -- uid: 8420 - type: CableHVStack - components: - - pos: -14.5,24.5 - parent: 127 - type: Transform -- uid: 8421 - type: CableHV - components: - - pos: -12.5,25.5 - parent: 127 - type: Transform -- uid: 8422 - type: CableHV - components: - - pos: -13.5,25.5 - parent: 127 - type: Transform -- uid: 8423 - type: CableHV - components: - - pos: -14.5,25.5 - parent: 127 - type: Transform -- uid: 8424 - type: CableHV - components: - - pos: -14.5,22.5 - parent: 127 - type: Transform -- uid: 8425 - type: CableHV - components: - - pos: -14.5,21.5 - parent: 127 - type: Transform -- uid: 8426 - type: CableHV - components: - - pos: -17.5,21.5 - parent: 127 - type: Transform -- uid: 8427 - type: CableHV - components: - - pos: -18.5,25.5 - parent: 127 - type: Transform -- uid: 8428 - type: CableHV - components: - - pos: -18.5,24.5 - parent: 127 - type: Transform -- uid: 8429 - type: CableHV - components: - - pos: -18.5,23.5 - parent: 127 - type: Transform -- uid: 8430 - type: CableHV - components: - - pos: -18.5,22.5 - parent: 127 - type: Transform -- uid: 8431 - type: CableHV - components: - - pos: -18.5,21.5 - parent: 127 - type: Transform -- uid: 8432 - type: CableHV - components: - - pos: -18.5,20.5 - parent: 127 - type: Transform -- uid: 8433 - type: CableHV - components: - - pos: -18.5,19.5 - parent: 127 - type: Transform -- uid: 8434 - type: CableHV - components: - - pos: -18.5,18.5 - parent: 127 - type: Transform -- uid: 8435 - type: CableHV - components: - - pos: -18.5,17.5 - parent: 127 - type: Transform -- uid: 8436 - type: CableHV - components: - - pos: -16.5,17.5 - parent: 127 - type: Transform -- uid: 8437 - type: CableHV - components: - - pos: -16.5,18.5 - parent: 127 - type: Transform -- uid: 8438 - type: CableHV - components: - - pos: -16.5,19.5 - parent: 127 - type: Transform -- uid: 8439 - type: CableHV - components: - - pos: -16.5,20.5 - parent: 127 - type: Transform -- uid: 8440 - type: CableHV - components: - - pos: -16.5,25.5 - parent: 127 - type: Transform -- uid: 8441 - type: CableHV - components: - - pos: -16.5,24.5 - parent: 127 - type: Transform -- uid: 8442 - type: CableHV - components: - - pos: -16.5,23.5 - parent: 127 - type: Transform -- uid: 8443 - type: CableHV - components: - - pos: -16.5,22.5 - parent: 127 - type: Transform -- uid: 8444 - type: CableHV - components: - - pos: -16.5,21.5 - parent: 127 - type: Transform -- uid: 8445 - type: SolarTracker - components: - - pos: -19.5,21.5 - parent: 127 - type: Transform -- uid: 8446 - type: SolarPanel - components: - - pos: -16.5,17.5 - parent: 127 - type: Transform -- uid: 8447 - type: SolarPanel - components: - - pos: -16.5,18.5 - parent: 127 - type: Transform -- uid: 8448 - type: SolarPanel - components: - - pos: -16.5,19.5 - parent: 127 - type: Transform -- uid: 8449 - type: SolarPanel - components: - - pos: -16.5,20.5 - parent: 127 - type: Transform -- uid: 8450 - type: SolarPanel - components: - - pos: -16.5,25.5 - parent: 127 - type: Transform -- uid: 8451 - type: SolarPanel - components: - - pos: -16.5,24.5 - parent: 127 - type: Transform -- uid: 8452 - type: SolarPanel - components: - - pos: -16.5,23.5 - parent: 127 - type: Transform -- uid: 8453 - type: SolarPanel - components: - - pos: -16.5,22.5 - parent: 127 - type: Transform -- uid: 8454 - type: SolarPanel - components: - - pos: -18.5,25.5 - parent: 127 - type: Transform -- uid: 8455 - type: SolarPanel - components: - - pos: -18.5,24.5 - parent: 127 - type: Transform -- uid: 8456 - type: SolarPanel - components: - - pos: -18.5,23.5 - parent: 127 - type: Transform -- uid: 8457 - type: SolarPanel - components: - - pos: -18.5,22.5 - parent: 127 - type: Transform -- uid: 8458 - type: SolarPanel - components: - - pos: -18.5,20.5 - parent: 127 - type: Transform -- uid: 8459 - type: SolarPanel - components: - - pos: -18.5,19.5 - parent: 127 - type: Transform -- uid: 8460 - type: SolarPanel - components: - - pos: -18.5,18.5 - parent: 127 - type: Transform -- uid: 8461 - type: SolarPanel - components: - - pos: -18.5,17.5 - parent: 127 - type: Transform -- uid: 8462 - type: Catwalk - components: - - pos: -17.5,17.5 - parent: 127 - type: Transform -- uid: 8463 - type: Catwalk - components: - - pos: -17.5,18.5 - parent: 127 - type: Transform -- uid: 8464 - type: Catwalk - components: - - pos: -17.5,19.5 - parent: 127 - type: Transform -- uid: 8465 - type: Catwalk - components: - - pos: -17.5,20.5 - parent: 127 - type: Transform -- uid: 8466 - type: Catwalk - components: - - pos: -17.5,25.5 - parent: 127 - type: Transform -- uid: 8467 - type: Catwalk - components: - - pos: -17.5,24.5 - parent: 127 - type: Transform -- uid: 8468 - type: Catwalk - components: - - pos: -17.5,23.5 - parent: 127 - type: Transform -- uid: 8469 - type: Catwalk - components: - - pos: -17.5,22.5 - parent: 127 - type: Transform -- uid: 8470 - type: Catwalk - components: - - pos: -18.5,21.5 - parent: 127 - type: Transform -- uid: 8471 - type: Catwalk - components: - - pos: -17.5,21.5 - parent: 127 - type: Transform -- uid: 8472 - type: Catwalk - components: - - pos: -16.5,21.5 - parent: 127 - type: Transform -- uid: 8473 - type: Catwalk - components: - - pos: -15.5,21.5 - parent: 127 - type: Transform -- uid: 8474 - type: Catwalk - components: - - pos: -14.5,21.5 - parent: 127 - type: Transform -- uid: 8475 - type: Catwalk - components: - - pos: -14.5,22.5 - parent: 127 - type: Transform -- uid: 8476 - type: Catwalk - components: - - pos: -14.5,23.5 - parent: 127 - type: Transform -- uid: 8477 - type: Catwalk - components: - - pos: -14.5,24.5 - parent: 127 - type: Transform -- uid: 8478 - type: Catwalk - components: - - pos: -14.5,25.5 - parent: 127 - type: Transform -- uid: 8479 - type: Catwalk - components: - - pos: -13.5,25.5 - parent: 127 - type: Transform -- uid: 8480 - type: WallReinforced - components: - - pos: 1.5,32.5 - parent: 127 - type: Transform -- uid: 8481 - type: WallReinforced - components: - - pos: 1.5,31.5 - parent: 127 - type: Transform -- uid: 8482 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -20.5,16.5 - parent: 127 - type: Transform -- uid: 8483 - type: GrilleBroken - components: - - pos: -20.5,18.5 - parent: 127 - type: Transform -- uid: 8484 - type: Grille - components: - - pos: -11.5,30.5 - parent: 127 - type: Transform -- uid: 8485 - type: Grille - components: - - pos: -12.5,30.5 - parent: 127 - type: Transform -- uid: 8486 - type: Grille - components: - - pos: -12.5,29.5 - parent: 127 - type: Transform -- uid: 8487 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -22.5,18.5 - parent: 127 - type: Transform -- uid: 8488 - type: Grille - components: - - pos: -14.5,27.5 - parent: 127 - type: Transform -- uid: 8489 - type: Grille - components: - - pos: -15.5,27.5 - parent: 127 - type: Transform -- uid: 8490 - type: GrilleBroken - components: - - pos: -22.5,20.5 - parent: 127 - type: Transform -- uid: 8491 - type: Grille - components: - - pos: -17.5,27.5 - parent: 127 - type: Transform -- uid: 8492 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -20.5,24.5 - parent: 127 - type: Transform -- uid: 8493 - type: GrilleBroken - components: - - pos: -22.5,24.5 - parent: 127 - type: Transform -- uid: 8494 - type: Grille - components: - - pos: -20.5,27.5 - parent: 127 - type: Transform -- uid: 8495 - type: Grille - components: - - pos: -20.5,26.5 - parent: 127 - type: Transform -- uid: 8496 - type: Grille - components: - - pos: -20.5,25.5 - parent: 127 - type: Transform -- uid: 8497 - type: GrilleBroken - components: - - pos: -16.5,27.5 - parent: 127 - type: Transform -- uid: 8498 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -18.5,27.5 - parent: 127 - type: Transform -- uid: 8499 - type: GrilleBroken - components: - - pos: -19.5,27.5 - parent: 127 - type: Transform -- uid: 8500 - type: Grille - components: - - pos: -22.5,23.5 - parent: 127 - type: Transform -- uid: 8501 - type: Grille - components: - - pos: -22.5,22.5 - parent: 127 - type: Transform -- uid: 8502 - type: Grille - components: - - pos: -22.5,21.5 - parent: 127 - type: Transform -- uid: 8503 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -13.5,27.5 - parent: 127 - type: Transform -- uid: 8504 - type: Grille - components: - - pos: -22.5,19.5 - parent: 127 - type: Transform -- uid: 8505 - type: WallReinforced - components: - - pos: 2.5,30.5 - parent: 127 - type: Transform -- uid: 8506 - type: WallReinforced - components: - - pos: 2.5,31.5 - parent: 127 - type: Transform -- uid: 8507 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -10.5,30.5 - parent: 127 - type: Transform -- uid: 8508 - type: Poweredlight - components: - - pos: 35.5,17.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8509 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 37.5,6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8510 - type: WallReinforced - components: - - pos: 53.5,-41.5 - parent: 127 - type: Transform -- uid: 8511 - type: WallReinforced - components: - - pos: 54.5,-41.5 - parent: 127 - type: Transform -- uid: 8512 - type: GasPipeTJunction - components: - - pos: 30.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8513 - type: GasPipeTJunction - components: - - pos: 29.5,6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8514 - type: GasPipeTJunction - components: - - pos: 33.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8515 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 31.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8516 - type: GasPipeTJunction - components: - - pos: 19.5,3.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8517 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 35.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8518 - type: GasPipeTJunction - components: - - pos: 32.5,6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8519 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,5.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8520 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 30.5,6.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8521 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8522 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 25.5,0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8523 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8524 - type: GasPipeTJunction - components: - - pos: 5.5,1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8525 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8526 - type: WallReinforced - components: - - pos: 60.5,-16.5 - parent: 127 - type: Transform -- uid: 8527 - type: WallSolid - components: - - pos: 55.5,-40.5 - parent: 127 - type: Transform -- uid: 8528 - type: WallReinforced - components: - - pos: 60.5,-17.5 - parent: 127 - type: Transform -- uid: 8529 - type: WallReinforced - components: - - pos: 33.5,-37.5 - parent: 127 - type: Transform -- uid: 8530 - type: WallSolid - components: - - pos: 55.5,-41.5 - parent: 127 - type: Transform -- uid: 8531 - type: WallSolid - components: - - pos: 58.5,-16.5 - parent: 127 - type: Transform -- uid: 8532 - type: WallSolid - components: - - pos: 58.5,-17.5 - parent: 127 - type: Transform -- uid: 8533 - type: WallReinforced - components: - - pos: 34.5,-38.5 - parent: 127 - type: Transform -- uid: 8534 - type: WallSolid - components: - - pos: 55.5,-39.5 - parent: 127 - type: Transform -- uid: 8535 - type: WallReinforced - components: - - pos: 53.5,-40.5 - parent: 127 - type: Transform -- uid: 8536 - type: WallSolid - components: - - pos: 53.5,-39.5 - parent: 127 - type: Transform -- uid: 8537 - type: WallSolid - components: - - pos: 54.5,-39.5 - parent: 127 - type: Transform -- uid: 8538 - type: WallReinforced - components: - - pos: 60.5,-23.5 - parent: 127 - type: Transform -- uid: 8539 - type: WallReinforced - components: - - pos: 60.5,-15.5 - parent: 127 - type: Transform -- uid: 8540 - type: WallSolid - components: - - pos: 34.5,-36.5 - parent: 127 - type: Transform -- uid: 8541 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 18.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8542 - type: MachineAnomalyVessel - components: - - rot: 3.141592653589793 rad - pos: -19.5,-5.5 - parent: 127 - type: Transform -- uid: 8543 - type: Grille - components: - - pos: -14.5,18.5 - parent: 127 - type: Transform -- uid: 8544 - type: Grille - components: - - pos: -14.5,17.5 - parent: 127 - type: Transform -- uid: 8545 - type: Grille - components: - - pos: -14.5,16.5 - parent: 127 - type: Transform -- uid: 8546 - type: WallSolid - components: - - pos: -2.5,28.5 - parent: 127 - type: Transform -- uid: 8547 - type: WallSolid - components: - - pos: -1.5,28.5 - parent: 127 - type: Transform -- uid: 8548 - type: WallSolid - components: - - pos: -0.5,28.5 - parent: 127 - type: Transform -- uid: 8549 - type: WallSolid - components: - - pos: 0.5,28.5 - parent: 127 - type: Transform -- uid: 8550 - type: WallSolid - components: - - pos: 1.5,28.5 - parent: 127 - type: Transform -- uid: 8551 - type: WallReinforced - components: - - pos: 1.5,33.5 - parent: 127 - type: Transform -- uid: 8552 - type: WallSolid - components: - - pos: -4.5,28.5 - parent: 127 - type: Transform -- uid: 8553 - type: WallSolid - components: - - pos: -4.5,28.5 - parent: 127 - type: Transform -- uid: 8554 - type: WallReinforced - components: - - pos: -8.5,30.5 - parent: 127 - type: Transform -- uid: 8555 - type: WallReinforced - components: - - pos: -7.5,30.5 - parent: 127 - type: Transform -- uid: 8556 - type: AirlockScienceGlassLocked - components: - - pos: -13.5,-1.5 - parent: 127 - type: Transform -- uid: 8557 - type: CableMV - components: - - pos: -15.5,-2.5 - parent: 127 - type: Transform -- uid: 8558 - type: Grille - components: - - pos: -22.5,1.5 - parent: 127 - type: Transform -- uid: 8559 - type: CableApcExtension - components: - - pos: -8.5,-1.5 - parent: 127 - type: Transform -- uid: 8560 - type: CableApcExtension - components: - - pos: -9.5,-1.5 - parent: 127 - type: Transform -- uid: 8561 - type: Grille - components: - - pos: -22.5,3.5 - parent: 127 - type: Transform -- uid: 8562 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -20.5,13.5 - parent: 127 - type: Transform -- uid: 8563 - type: ReinforcedPlasmaWindow - components: - - pos: -22.5,1.5 - parent: 127 - type: Transform -- uid: 8564 - type: Grille - components: - - pos: -22.5,2.5 - parent: 127 - type: Transform -- uid: 8565 - type: AirlockScienceGlassLocked - components: - - pos: -13.5,-2.5 - parent: 127 - type: Transform -- uid: 8566 - type: AirlockScienceLocked - components: - - pos: -18.5,-1.5 - parent: 127 - type: Transform -- uid: 8567 - type: MachineAPE - components: - - rot: 3.141592653589793 rad - pos: -17.5,-4.5 - parent: 127 - type: Transform -- uid: 8568 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -12.5,28.5 - parent: 127 - type: Transform -- uid: 8569 - type: CableApcExtension - components: - - pos: -22.5,-1.5 - parent: 127 - type: Transform -- uid: 8570 - type: CableApcExtension - components: - - pos: -24.5,-1.5 - parent: 127 - type: Transform -- uid: 8571 - type: Beaker - components: - - pos: -27.454765,-2.3358555 - parent: 127 - type: Transform -- uid: 8572 - type: CableApcExtension - components: - - pos: -23.5,-1.5 - parent: 127 - type: Transform -- uid: 8573 - type: CableApcExtension - components: - - pos: -25.5,-1.5 - parent: 127 - type: Transform -- uid: 8574 - type: Grille - components: - - pos: -20.5,17.5 - parent: 127 - type: Transform -- uid: 8575 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-43.5 - parent: 127 - type: Transform -- uid: 8576 - type: ChairRitual - components: - - rot: -1.5707963267948966 rad - pos: 0.5,30.5 - parent: 127 - type: Transform -- uid: 8577 - type: OxygenCanister - components: - - pos: -9.5,25.5 - parent: 127 - type: Transform -- uid: 8578 - type: OxygenTankFilled - components: - - pos: -9.638321,24.527649 - parent: 127 - type: Transform -- uid: 8579 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,11.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8580 - type: ClosetMaintenanceFilledRandom - components: - - pos: -7.5,26.5 - parent: 127 - type: Transform -- uid: 8581 - type: WaterTankFull - components: - - pos: 24.5,20.5 - parent: 127 - type: Transform -- uid: 8582 - type: MaintenanceWeaponSpawner - components: - - pos: -6.5,-4.5 - parent: 127 - type: Transform -- uid: 8583 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -21.5,13.5 - parent: 127 - type: Transform -- uid: 8584 - type: CableApcExtension - components: - - pos: -18.5,0.5 - parent: 127 - type: Transform -- uid: 8585 - type: CableApcExtension - components: - - pos: -20.5,-1.5 - parent: 127 - type: Transform -- uid: 8586 - type: CableApcExtension - components: - - pos: -25.5,0.5 - parent: 127 - type: Transform -- uid: 8587 - type: Dropper - components: - - pos: -26.923515,-2.3046055 - parent: 127 - type: Transform -- uid: 8588 - type: CableApcExtension - components: - - pos: -19.5,-4.5 - parent: 127 - type: Transform -- uid: 8589 - type: CableApcExtension - components: - - pos: -20.5,-4.5 - parent: 127 - type: Transform -- uid: 8590 - type: CableApcExtension - components: - - pos: -20.5,-3.5 - parent: 127 - type: Transform -- uid: 8591 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-0.5 - parent: 127 - type: Transform -- uid: 8592 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-3.5 - parent: 127 - type: Transform -- uid: 8593 - type: LockerElectricalSuppliesFilled - components: - - pos: 27.5,22.5 - parent: 127 - type: Transform -- uid: 8594 - type: LockerWeldingSuppliesFilled - components: - - pos: -1.5,27.5 - parent: 127 - type: Transform -- uid: 8595 - type: LockerElectricalSuppliesFilled - components: - - pos: -0.5,27.5 - parent: 127 - type: Transform -- uid: 8596 - type: ClosetFireFilled - components: - - pos: -10.5,12.5 - parent: 127 - type: Transform -- uid: 8597 - type: WallSolid - components: - - pos: -17.5,0.5 - parent: 127 - type: Transform -- uid: 8598 - type: WallSolid - components: - - pos: -24.5,4.5 - parent: 127 - type: Transform -- uid: 8599 - type: NitrogenTankFilled - components: - - pos: 10.643919,14.446204 - parent: 127 - type: Transform -- uid: 8600 - type: MaintenanceFluffSpawner - components: - - pos: -8.5,-4.5 - parent: 127 - type: Transform -- uid: 8601 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,11.5 - parent: 127 - type: Transform -- uid: 8602 - type: WallSolid - components: - - pos: -18.5,2.5 - parent: 127 - type: Transform -- uid: 8603 - type: NitrogenTankFilled - components: - - pos: -6.7290726,21.601131 - parent: 127 - type: Transform -- uid: 8604 - type: WallSolid - components: - - pos: -18.5,0.5 - parent: 127 - type: Transform -- uid: 8605 - type: MaintenanceToolSpawner - components: - - pos: -15.5,13.5 - parent: 127 - type: Transform -- uid: 8606 - type: ToySpawner - components: - - pos: 2.5,27.5 - parent: 127 - type: Transform -- uid: 8607 - type: MaintenanceToolSpawner - components: - - pos: -4.5,27.5 - parent: 127 - type: Transform -- uid: 8608 - type: MaintenanceToolSpawner - components: - - pos: -7.5,23.5 - parent: 127 - type: Transform -- uid: 8609 - type: ToySpawner - components: - - pos: -7.5,24.5 - parent: 127 - type: Transform -- uid: 8610 - type: MaintenanceFluffSpawner - components: - - pos: -7.5,25.5 - parent: 127 - type: Transform -- uid: 8611 - type: MaintenanceFluffSpawner - components: - - pos: 6.5,13.5 - parent: 127 - type: Transform -- uid: 8612 - type: MaintenanceToolSpawner - components: - - pos: 7.5,19.5 - parent: 127 - type: Transform -- uid: 8613 - type: MaintenanceToolSpawner - components: - - pos: 7.5,20.5 - parent: 127 - type: Transform -- uid: 8614 - type: MaintenanceToolSpawner - components: - - pos: 3.5,22.5 - parent: 127 - type: Transform -- uid: 8615 - type: FlashlightLantern - components: - - pos: 3.4901805,23.552938 - parent: 127 - type: Transform -- uid: 8616 - type: MaintenanceFluffSpawner - components: - - pos: 3.5,24.5 - parent: 127 - type: Transform -- uid: 8617 - type: MaintenanceFluffSpawner - components: - - pos: 0.5,27.5 - parent: 127 - type: Transform -- uid: 8618 - type: MaintenanceToolSpawner - components: - - pos: 10.5,7.5 - parent: 127 - type: Transform -- uid: 8619 - type: MaintenanceWeaponSpawner - components: - - pos: 10.5,9.5 - parent: 127 - type: Transform -- uid: 8620 - type: ToySpawner - components: - - pos: 32.5,22.5 - parent: 127 - type: Transform -- uid: 8621 - type: MaintenanceFluffSpawner - components: - - pos: 10.5,10.5 - parent: 127 - type: Transform -- uid: 8622 - type: NitrogenTankFilled - components: - - pos: 24.63601,17.419666 - parent: 127 - type: Transform -- uid: 8623 - type: MaintenanceWeaponSpawner - components: - - pos: 11.5,14.5 - parent: 127 - type: Transform -- uid: 8624 - type: MaintenanceWeaponSpawner - components: - - pos: 25.5,14.5 - parent: 127 - type: Transform -- uid: 8625 - type: MaintenanceWeaponSpawner - components: - - pos: 22.5,14.5 - parent: 127 - type: Transform -- uid: 8626 - type: MaintenanceFluffSpawner - components: - - pos: 21.5,14.5 - parent: 127 - type: Transform -- uid: 8627 - type: ClothingHeadHatWelding - components: - - pos: 20.4936,14.638958 - parent: 127 - type: Transform -- uid: 8628 - type: MaintenanceFluffSpawner - components: - - pos: 19.5,14.5 - parent: 127 - type: Transform -- uid: 8629 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,10.5 - parent: 127 - type: Transform -- uid: 8630 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-3.5 - parent: 127 - type: Transform -- uid: 8631 - type: RandomSpawner - components: - - pos: -11.5,-5.5 - parent: 127 - type: Transform -- uid: 8632 - type: RandomSpawner - components: - - pos: 2.5,-9.5 - parent: 127 - type: Transform -- uid: 8633 - type: FlashlightLantern - components: - - pos: -14.507247,13.559931 - parent: 127 - type: Transform -- uid: 8634 - type: WallSolid - components: - - pos: -22.5,4.5 - parent: 127 - type: Transform -- uid: 8635 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -19.5,13.5 - parent: 127 - type: Transform -- uid: 8636 - type: RandomPainting - components: - - pos: 21.5,15.5 - parent: 127 - type: Transform -- uid: 8637 - type: RandomPainting - components: - - pos: 33.5,1.5 - parent: 127 - type: Transform -- uid: 8638 - type: RandomSpawner - components: - - pos: 22.5,7.5 - parent: 127 - type: Transform -- uid: 8639 - type: RandomSpawner - components: - - pos: 34.5,20.5 - parent: 127 - type: Transform -- uid: 8640 - type: RandomSpawner - components: - - pos: 26.5,21.5 - parent: 127 - type: Transform -- uid: 8641 - type: RandomSpawner - components: - - pos: 25.5,15.5 - parent: 127 - type: Transform -- uid: 8642 - type: SpawnPointTechnicalAssistant - components: - - pos: 29.5,14.5 - parent: 127 - type: Transform -- uid: 8643 - type: SpawnPointStationEngineer - components: - - pos: 29.5,15.5 - parent: 127 - type: Transform -- uid: 8644 - type: RandomPainting - components: - - pos: -4.5,-8.5 - parent: 127 - type: Transform -- uid: 8645 - type: LampGold - components: - - pos: 22.534979,16.891201 - parent: 127 - type: Transform -- uid: 8646 - type: SurveillanceCameraScience - components: - - pos: 2.5,0.5 - parent: 127 - type: Transform - - id: Entrance - type: SurveillanceCamera -- uid: 8647 - type: SurveillanceCameraScience - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 127 - type: Transform - - id: Server Room - type: SurveillanceCamera -- uid: 8648 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: 2.5,2.5 - parent: 127 - type: Transform - - id: Entrance - type: SurveillanceCamera -- uid: 8649 - type: SurveillanceCameraScience - components: - - rot: 1.5707963267948966 rad - pos: -6.5,7.5 - parent: 127 - type: Transform - - id: Xenoarch Lab 2 - type: SurveillanceCamera -- uid: 8650 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: -4.5,20.5 - parent: 127 - type: Transform - - id: Virology - type: SurveillanceCamera -- uid: 8651 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 7.5,10.5 - parent: 127 - type: Transform - - id: CMO's Bedroom - type: SurveillanceCamera -- uid: 8652 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: -5.5,15.5 - parent: 127 - type: Transform - - id: Cloning - type: SurveillanceCamera -- uid: 8653 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: 1.5,16.5 - parent: 127 - type: Transform - - id: Morgue - type: SurveillanceCamera -- uid: 8654 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 7.5,6.5 - parent: 127 - type: Transform - - id: Chemistry - type: SurveillanceCamera -- uid: 8655 - type: SurveillanceCameraEngineering - components: - - pos: 28.5,4.5 - parent: 127 - type: Transform - - id: Engineering Bay 1 - type: SurveillanceCamera -- uid: 8656 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 32.5,2.5 - parent: 127 - type: Transform - - id: CE's Bedroom - type: SurveillanceCamera -- uid: 8657 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 36.5,7.5 - parent: 127 - type: Transform - - id: Atmospherics 1 - type: SurveillanceCamera -- uid: 8658 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 39.5,16.5 - parent: 127 - type: Transform - - id: Atmospherics 2 - type: SurveillanceCamera -- uid: 8659 - type: SurveillanceCameraEngineering - components: - - pos: 35.5,12.5 - parent: 127 - type: Transform - - id: AME Room - type: SurveillanceCamera -- uid: 8660 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 27.5,15.5 - parent: 127 - type: Transform - - id: Engineering Bay 2 - type: SurveillanceCamera -- uid: 8661 - type: SurveillanceCameraSupply - components: - - rot: -1.5707963267948966 rad - pos: 12.5,8.5 - parent: 127 - type: Transform - - id: Reception Area - type: SurveillanceCamera -- uid: 8662 - type: SurveillanceCameraSupply - components: - - pos: 19.5,19.5 - parent: 127 - type: Transform - - id: Cargo Bay - type: SurveillanceCamera -- uid: 8663 - type: SurveillanceCameraSupply - components: - - rot: 3.141592653589793 rad - pos: 21.5,17.5 - parent: 127 - type: Transform - - id: QM's Bedroom - type: SurveillanceCamera -- uid: 8664 - type: SurveillanceCameraSupply - components: - - rot: -1.5707963267948966 rad - pos: 9.5,20.5 - parent: 127 - type: Transform - - id: Salvage Bay - type: SurveillanceCamera -- uid: 8665 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 1.5,6.5 - parent: 127 - type: Transform -- uid: 8666 - type: ExtinguisherCabinetFilled - components: - - pos: 35.5,9.5 - parent: 127 - type: Transform -- uid: 8667 - type: ExtinguisherCabinetFilled - components: - - pos: 38.5,16.5 - parent: 127 - type: Transform -- uid: 8668 - type: ExtinguisherCabinetFilled - components: - - pos: 26.5,18.5 - parent: 127 - type: Transform -- uid: 8669 - type: ExtinguisherCabinetFilled - components: - - pos: 8.5,20.5 - parent: 127 - type: Transform -- uid: 8670 - type: ExtinguisherCabinetFilled - components: - - pos: 17.5,15.5 - parent: 127 - type: Transform -- uid: 8671 - type: ExtinguisherCabinetFilled - components: - - pos: 11.5,8.5 - parent: 127 - type: Transform -- uid: 8672 - type: ExtinguisherCabinetFilled - components: - - pos: 8.5,6.5 - parent: 127 - type: Transform -- uid: 8673 - type: ExtinguisherCabinetFilled - components: - - pos: -2.5,6.5 - parent: 127 - type: Transform -- uid: 8674 - type: ExtinguisherCabinetFilled - components: - - pos: 0.5,19.5 - parent: 127 - type: Transform -- uid: 8675 - type: CableApcExtension - components: - - pos: -2.5,1.5 - parent: 127 - type: Transform -- uid: 8676 - type: ExtinguisherCabinetFilled - components: - - pos: 1.5,13.5 - parent: 127 - type: Transform -- uid: 8677 - type: CableApcExtension - components: - - pos: -3.5,1.5 - parent: 127 - type: Transform -- uid: 8678 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8679 - type: CableApcExtension - components: - - pos: 3.5,18.5 - parent: 127 - type: Transform -- uid: 8680 - type: CableApcExtension - components: - - pos: 3.5,17.5 - parent: 127 - type: Transform -- uid: 8681 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 4.5,20.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8682 - type: CableApcExtension - components: - - pos: 3.5,16.5 - parent: 127 - type: Transform -- uid: 8683 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,14.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8684 - type: GasPipeFourway - components: - - pos: 25.5,1.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8685 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 27.5,1.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8686 - type: GasVentPump - components: - - pos: 25.5,2.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8687 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 24.5,0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8688 - type: CableApcExtension - components: - - pos: 16.5,2.5 - parent: 127 - type: Transform -- uid: 8689 - type: CableApcExtension - components: - - pos: 17.5,2.5 - parent: 127 - type: Transform -- uid: 8690 - type: CableApcExtension - components: - - pos: 24.5,4.5 - parent: 127 - type: Transform -- uid: 8691 - type: CableApcExtension - components: - - pos: 9.5,-10.5 - parent: 127 - type: Transform -- uid: 8692 - type: CableApcExtension - components: - - pos: 9.5,2.5 - parent: 127 - type: Transform -- uid: 8693 - type: GasPipeTJunction - components: - - pos: 24.5,2.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8694 - type: PortableScrubber - components: - - pos: 26.5,0.5 - parent: 127 - type: Transform -- uid: 8695 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 27.5,0.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8696 - type: PortableScrubber - components: - - pos: 27.5,0.5 - parent: 127 - type: Transform -- uid: 8697 - type: BoxBodyBag - components: - - pos: 1.4925553,14.655643 - parent: 127 - type: Transform -- uid: 8698 - type: BoxFolderBlack - components: - - pos: 3.6539683,14.603813 - parent: 127 - type: Transform -- uid: 8699 - type: BoxFolderBlue - components: - - pos: 1.6588756,-5.4630365 - parent: 127 - type: Transform -- uid: 8700 - type: BoxFolderWhite - components: - - pos: -3.3254993,5.6008472 - parent: 127 - type: Transform -- uid: 8701 - type: BoxFolderWhite - components: - - pos: -3.3098743,8.586103 - parent: 127 - type: Transform -- uid: 8702 - type: BoxFolderWhite - components: - - pos: -3.3411243,11.5989 - parent: 127 - type: Transform -- uid: 8703 - type: BoxFolderWhite - components: - - pos: 1.9323192,7.6159186 - parent: 127 - type: Transform -- uid: 8704 - type: Paper - components: - - pos: 1.6979442,7.6159186 - parent: 127 - type: Transform -- uid: 8705 - type: Paper - components: - - pos: 1.5885692,7.6159186 - parent: 127 - type: Transform -- uid: 8706 - type: Paper - components: - - pos: 1.4635692,7.6159186 - parent: 127 - type: Transform -- uid: 8707 - type: Paper - components: - - pos: -3.4720547,8.584668 - parent: 127 - type: Transform -- uid: 8708 - type: Paper - components: - - pos: -3.4876797,11.607829 - parent: 127 - type: Transform -- uid: 8709 - type: Paper - components: - - pos: -3.5033047,5.609607 - parent: 127 - type: Transform -- uid: 8710 - type: Paper - components: - - pos: 1.5691693,-5.4552197 - parent: 127 - type: Transform -- uid: 8711 - type: Paper - components: - - pos: 1.3816693,-5.4708447 - parent: 127 - type: Transform -- uid: 8712 - type: Paper - components: - - pos: 1.2722943,-5.4708447 - parent: 127 - type: Transform -- uid: 8713 - type: Pen - components: - - pos: 1.2879193,-5.3927197 - parent: 127 - type: Transform -- uid: 8714 - type: Pen - components: - - pos: -3.7117822,8.609095 - parent: 127 - type: Transform -- uid: 8715 - type: Pen - components: - - pos: -3.6805322,5.62472 - parent: 127 - type: Transform -- uid: 8716 - type: Pen - components: - - pos: -3.6805322,11.62472 - parent: 127 - type: Transform -- uid: 8717 - type: Pen - components: - - pos: 1.2413428,7.577845 - parent: 127 - type: Transform -- uid: 8718 - type: Lamp - components: - - pos: 1.0291226,-4.466736 - parent: 127 - type: Transform -- uid: 8719 - type: FaxMachineBase - components: - - pos: 0.5,8.5 - parent: 127 - type: Transform - - name: Medical - type: FaxMachine -- uid: 8720 - type: FaxMachineCaptain - components: - - pos: 39.5,-0.5 - parent: 127 - type: Transform - - name: Bridge Meeting Room - type: FaxMachine -- uid: 8721 - type: CableHV - components: - - pos: -19.5,21.5 - parent: 127 - type: Transform -- uid: 8722 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 127 - type: Transform -- uid: 8723 - type: BooksBag - components: - - pos: 19.429705,-31.5202 - parent: 127 - type: Transform -- uid: 8724 - type: WindoorCommandLocked - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 127 - type: Transform -- uid: 8725 - type: Paper - components: - - pos: 3.57955,14.599159 - parent: 127 - type: Transform -- uid: 8726 - type: Paper - components: - - pos: 3.4858,14.599159 - parent: 127 - type: Transform -- uid: 8727 - type: Paper - components: - - pos: 3.376425,14.614784 - parent: 127 - type: Transform -- uid: 8728 - type: Pen - components: - - pos: 3.2983,14.521034 - parent: 127 - type: Transform -- uid: 8729 - type: CableApcExtension - components: - - pos: -5.5,-6.5 - parent: 127 - type: Transform -- uid: 8730 - type: CableApcExtension - components: - - pos: -4.5,-6.5 - parent: 127 - type: Transform -- uid: 8731 - type: TablePlasmaGlass - components: - - pos: -21.5,3.5 - parent: 127 - type: Transform -- uid: 8732 - type: ReinforcedWindow - components: - - pos: -15.5,5.5 - parent: 127 - type: Transform -- uid: 8733 - type: Dropper - components: - - pos: -26.829765,-2.4921055 - parent: 127 - type: Transform -- uid: 8734 - type: ClothingEyesGlasses - components: - - pos: -3.592097,8.474771 - parent: 127 - type: Transform -- uid: 8735 - type: TablePlasmaGlass - components: - - pos: -25.5,-2.5 - parent: 127 - type: Transform -- uid: 8736 - type: AnomalyScanner - components: - - pos: -26.09539,-2.3046055 - parent: 127 - type: Transform -- uid: 8737 - type: TablePlasmaGlass - components: - - pos: -21.5,0.5 - parent: 127 - type: Transform -- uid: 8738 - type: TablePlasmaGlass - components: - - pos: -27.5,-0.5 - parent: 127 - type: Transform -- uid: 8739 - type: ClothingEyesGlasses - components: - - pos: 0.9922203,-3.7741046 - parent: 127 - type: Transform -- uid: 8740 - type: CableApcExtension - components: - - pos: -18.5,-4.5 - parent: 127 - type: Transform -- uid: 8741 - type: SheetPlasma - components: - - pos: -27.510117,-0.5440056 - parent: 127 - type: Transform -- uid: 8742 - type: SheetPlasma - components: - - pos: -27.50164,-1.1483555 - parent: 127 - type: Transform -- uid: 8743 - type: MaintenanceToolSpawner - components: - - pos: -22.5,8.5 - parent: 127 - type: Transform -- uid: 8744 - type: ReinforcedWindow - components: - - pos: -15.5,4.5 - parent: 127 - type: Transform -- uid: 8745 - type: ToolboxEmergencyFilled - components: - - pos: 7.4918756,-33.365536 - parent: 127 - type: Transform -- uid: 8746 - type: ClosetFireFilled - components: - - pos: 6.5,-35.5 - parent: 127 - type: Transform -- uid: 8747 - type: ClosetFireFilled - components: - - pos: 21.5,-35.5 - parent: 127 - type: Transform -- uid: 8748 - type: ClosetEmergencyFilledRandom - components: - - pos: 7.5,-35.5 - parent: 127 - type: Transform -- uid: 8749 - type: ClosetEmergencyFilledRandom - components: - - pos: 22.5,-35.5 - parent: 127 - type: Transform -- uid: 8750 - type: CableApcExtension - components: - - pos: 15.5,12.5 - parent: 127 - type: Transform -- uid: 8751 - type: CableApcExtension - components: - - pos: 14.5,19.5 - parent: 127 - type: Transform -- uid: 8752 - type: CableApcExtension - components: - - pos: 14.5,20.5 - parent: 127 - type: Transform -- uid: 8753 - type: VendingMachineMediDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,12.5 - parent: 127 - type: Transform -- uid: 8754 - type: SurveillanceCameraGeneral - components: - - pos: 17.5,2.5 - parent: 127 - type: Transform - - id: North Hall - type: SurveillanceCamera -- uid: 8755 - type: VendingMachineChefvend - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,-11.5 - parent: 127 - type: Transform -- uid: 8756 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: 5.5,-14.5 - parent: 127 - type: Transform -- uid: 8757 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: 5.5,-14.5 - parent: 127 - type: Transform -- uid: 8758 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: 5.5,-14.5 - parent: 127 - type: Transform -- uid: 8759 - type: SheetPlasma1 - components: - - pos: 4.5860763,4.8888874 - parent: 127 - type: Transform -- uid: 8760 - type: ComputerTechnologyDiskTerminal - components: - - pos: 5.5,-1.5 - parent: 127 - type: Transform -- uid: 8761 - type: Grille - components: - - pos: -10.5,32.5 - parent: 127 - type: Transform -- uid: 8762 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -7.5,34.5 - parent: 127 - type: Transform -- uid: 8763 - type: Grille - components: - - pos: -8.5,32.5 - parent: 127 - type: Transform -- uid: 8764 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -9.5,32.5 - parent: 127 - type: Transform -- uid: 8765 - type: Grille - components: - - pos: -6.5,34.5 - parent: 127 - type: Transform -- uid: 8766 - type: Grille - components: - - pos: -5.5,34.5 - parent: 127 - type: Transform -- uid: 8767 - type: Grille - components: - - pos: -3.5,35.5 - parent: 127 - type: Transform -- uid: 8768 - type: GrilleBroken - components: - - pos: -2.5,35.5 - parent: 127 - type: Transform -- uid: 8769 - type: Grille - components: - - pos: -1.5,35.5 - parent: 127 - type: Transform -- uid: 8770 - type: Grille - components: - - pos: -0.5,35.5 - parent: 127 - type: Transform -- uid: 8771 - type: Grille - components: - - pos: 1.5,35.5 - parent: 127 - type: Transform -- uid: 8772 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 0.5,35.5 - parent: 127 - type: Transform -- uid: 8773 - type: BookRandom - components: - - pos: 19.66408,-31.2702 - parent: 127 - type: Transform -- uid: 8774 - type: BookRandom - components: - - pos: 19.50783,-31.2077 - parent: 127 - type: Transform -- uid: 8775 - type: CableHV - components: - - pos: -5.5,-35.5 - parent: 127 - type: Transform -- uid: 8776 - type: IntercomScience - components: - - pos: -5.5,3.5 - parent: 127 - type: Transform -- uid: 8777 - type: IntercomScience - components: - - pos: -2.5,-0.5 - parent: 127 - type: Transform -- uid: 8778 - type: IntercomScience - components: - - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 127 - type: Transform -- uid: 8779 - type: IntercomMedical - components: - - pos: 3.5,3.5 - parent: 127 - type: Transform -- uid: 8780 - type: IntercomMedical - components: - - pos: 2.5,13.5 - parent: 127 - type: Transform -- uid: 8781 - type: IntercomMedical - components: - - rot: -1.5707963267948966 rad - pos: 0.5,18.5 - parent: 127 - type: Transform -- uid: 8782 - type: IntercomSupply - components: - - pos: 13.5,11.5 - parent: 127 - type: Transform -- uid: 8783 - type: IntercomSupply - components: - - rot: 3.141592653589793 rad - pos: 20.5,18.5 - parent: 127 - type: Transform -- uid: 8784 - type: IntercomSupply - components: - - pos: 14.5,5.5 - parent: 127 - type: Transform -- uid: 8785 - type: IntercomEngineering - components: - - rot: -1.5707963267948966 rad - pos: 28.5,0.5 - parent: 127 - type: Transform -- uid: 8786 - type: IntercomEngineering - components: - - rot: 1.5707963267948966 rad - pos: 26.5,15.5 - parent: 127 - type: Transform -- uid: 8787 - type: IntercomEngineering - components: - - rot: 1.5707963267948966 rad - pos: 38.5,13.5 - parent: 127 - type: Transform -- uid: 8788 - type: IntercomAll - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 127 - type: Transform -- uid: 8789 - type: IntercomAll - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-1.5 - parent: 127 - type: Transform -- uid: 8790 - type: IntercomCommand - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-8.5 - parent: 127 - type: Transform -- uid: 8791 - type: IntercomService - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 127 - type: Transform -- uid: 8792 - type: IntercomService - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-12.5 - parent: 127 - type: Transform -- uid: 8793 - type: IntercomService - components: - - pos: 18.5,-15.5 - parent: 127 - type: Transform -- uid: 8794 - type: IntercomService - components: - - pos: 19.5,-20.5 - parent: 127 - type: Transform -- uid: 8795 - type: IntercomSecurity - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-18.5 - parent: 127 - type: Transform -- uid: 8796 - type: IntercomSecurity - components: - - rot: 3.141592653589793 rad - pos: 34.5,-24.5 - parent: 127 - type: Transform -- uid: 8797 - type: IntercomSecurity - components: - - pos: 37.5,-25.5 - parent: 127 - type: Transform -- uid: 8798 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-24.5 - parent: 127 - type: Transform -- uid: 8799 - type: Intercom - components: - - pos: 7.5,-15.5 - parent: 127 - type: Transform -- uid: 8800 - type: Intercom - components: - - pos: 21.5,-32.5 - parent: 127 - type: Transform -- uid: 8801 - type: Intercom - components: - - pos: 32.5,-33.5 - parent: 127 - type: Transform -- uid: 8802 - type: Intercom - components: - - pos: 38.5,-33.5 - parent: 127 - type: Transform -- uid: 8803 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 127 - type: Transform -- uid: 8804 - type: Intercom - components: - - rot: 3.141592653589793 rad - pos: 12.5,-24.5 - parent: 127 - type: Transform -- uid: 8805 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-3.5 - parent: 127 - type: Transform -- uid: 8806 - type: Intercom - components: - - pos: 21.5,4.5 - parent: 127 - type: Transform -- uid: 8807 - type: IntercomMedical - components: - - rot: 1.5707963267948966 rad - pos: -6.5,14.5 - parent: 127 - type: Transform -- uid: 8808 - type: CableApcExtension - components: - - pos: -1.5,10.5 - parent: 127 - type: Transform -- uid: 8809 - type: CableApcExtension - components: - - pos: -2.5,10.5 - parent: 127 - type: Transform -- uid: 8810 - type: CableApcExtension - components: - - pos: -0.5,4.5 - parent: 127 - type: Transform -- uid: 8811 - type: CableApcExtension - components: - - pos: -1.5,4.5 - parent: 127 - type: Transform -- uid: 8812 - type: CableApcExtension - components: - - pos: -2.5,4.5 - parent: 127 - type: Transform -- uid: 8813 - type: CableApcExtension - components: - - pos: 1.5,4.5 - parent: 127 - type: Transform -- uid: 8814 - type: CableApcExtension - components: - - pos: 28.5,15.5 - parent: 127 - type: Transform -- uid: 8815 - type: IntercomSecurity - components: - - pos: 43.5,-17.5 - parent: 127 - type: Transform -- uid: 8816 - type: CableApcExtension - components: - - pos: 12.5,-22.5 - parent: 127 - type: Transform -- uid: 8817 - type: CableApcExtension - components: - - pos: 6.5,-1.5 - parent: 127 - type: Transform -- uid: 8818 - type: CableApcExtension - components: - - pos: 6.5,-0.5 - parent: 127 - type: Transform -- uid: 8819 - type: CableApcExtension - components: - - pos: 25.5,9.5 - parent: 127 - type: Transform -- uid: 8820 - type: CableApcExtension - components: - - pos: 24.5,9.5 - parent: 127 - type: Transform -- uid: 8821 - type: GasPipeStraight - components: - - pos: 25.5,0.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 8822 - type: CableApcExtension - components: - - pos: 35.5,17.5 - parent: 127 - type: Transform -- uid: 8823 - type: CableApcExtension - components: - - pos: -11.5,21.5 - parent: 127 - type: Transform -- uid: 8824 - type: CableApcExtension - components: - - pos: -11.5,22.5 - parent: 127 - type: Transform -- uid: 8825 - type: CableApcExtension - components: - - pos: -11.5,23.5 - parent: 127 - type: Transform -- uid: 8826 - type: CableApcExtension - components: - - pos: -11.5,24.5 - parent: 127 - type: Transform -- uid: 8827 - type: CableApcExtension - components: - - pos: -11.5,25.5 - parent: 127 - type: Transform -- uid: 8828 - type: AirlockScienceLocked - components: - - pos: -22.5,-1.5 - parent: 127 - type: Transform -- uid: 8829 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 127 - type: Transform -- uid: 8830 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-2.5 - parent: 127 - type: Transform -- uid: 8831 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-1.5 - parent: 127 - type: Transform -- uid: 8832 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 127 - type: Transform -- uid: 8833 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -18.5,1.5 - parent: 127 - type: Transform - - devices: - - 8836 - - 8835 - - 8829 - - 8830 - - 252 - - 7068 - - 7060 - - 7067 - type: DeviceList -- uid: 8834 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -18.5,2.5 - parent: 127 - type: Transform - - devices: - - 8836 - - 8835 - - 8829 - - 8830 - type: DeviceList -- uid: 8835 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-1.5 - parent: 127 - type: Transform -- uid: 8836 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-2.5 - parent: 127 - type: Transform -- uid: 8837 - type: CableApcExtension - components: - - pos: -25.5,-2.5 - parent: 127 - type: Transform -- uid: 8838 - type: CableApcExtension - components: - - pos: -25.5,-3.5 - parent: 127 - type: Transform -- uid: 8839 - type: CableApcExtension - components: - - pos: -26.5,-3.5 - parent: 127 - type: Transform -- uid: 8840 - type: CableApcExtension - components: - - pos: -24.5,-3.5 - parent: 127 - type: Transform -- uid: 8841 - type: CableApcExtension - components: - - pos: -22.5,-0.5 - parent: 127 - type: Transform -- uid: 8842 - type: CableApcExtension - components: - - pos: -22.5,0.5 - parent: 127 - type: Transform -- uid: 8843 - type: CableApcExtension - components: - - pos: -22.5,1.5 - parent: 127 - type: Transform -- uid: 8844 - type: CableApcExtension - components: - - pos: -22.5,2.5 - parent: 127 - type: Transform -- uid: 8845 - type: CableApcExtension - components: - - pos: -22.5,3.5 - parent: 127 - type: Transform -- uid: 8846 - type: CableApcExtension - components: - - pos: -26.5,-1.5 - parent: 127 - type: Transform -- uid: 8847 - type: CableApcExtension - components: - - pos: -28.5,-1.5 - parent: 127 - type: Transform -- uid: 8848 - type: CableApcExtension - components: - - pos: -27.5,-1.5 - parent: 127 - type: Transform -- uid: 8849 - type: CableApcExtension - components: - - pos: -28.5,-0.5 - parent: 127 - type: Transform -- uid: 8850 - type: CableApcExtension - components: - - pos: -28.5,0.5 - parent: 127 - type: Transform -- uid: 8851 - type: CableApcExtension - components: - - pos: -28.5,1.5 - parent: 127 - type: Transform -- uid: 8852 - type: CableApcExtension - components: - - pos: -28.5,2.5 - parent: 127 - type: Transform -- uid: 8853 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,11.5 - parent: 127 - type: Transform -- uid: 8854 - type: GrilleBroken - components: - - pos: -24.5,15.5 - parent: 127 - type: Transform -- uid: 8855 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -23.5,15.5 - parent: 127 - type: Transform -- uid: 8856 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -22.5,15.5 - parent: 127 - type: Transform -- uid: 8857 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -25.5,15.5 - parent: 127 - type: Transform -- uid: 8858 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -26.5,15.5 - parent: 127 - type: Transform -- uid: 8859 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -27.5,15.5 - parent: 127 - type: Transform -- uid: 8860 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -28.5,15.5 - parent: 127 - type: Transform -- uid: 8861 - type: GrilleBroken - components: - - pos: -28.5,13.5 - parent: 127 - type: Transform -- uid: 8862 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -28.5,12.5 - parent: 127 - type: Transform -- uid: 8863 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -28.5,11.5 - parent: 127 - type: Transform -- uid: 8864 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -28.5,10.5 - parent: 127 - type: Transform -- uid: 8865 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -28.5,9.5 - parent: 127 - type: Transform -- uid: 8866 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -28.5,8.5 - parent: 127 - type: Transform -- uid: 8867 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -28.5,7.5 - parent: 127 - type: Transform -- uid: 8868 - type: GrilleBroken - components: - - pos: -30.5,5.5 - parent: 127 - type: Transform -- uid: 8869 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,4.5 - parent: 127 - type: Transform -- uid: 8870 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -30.5,3.5 - parent: 127 - type: Transform -- uid: 8871 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,2.5 - parent: 127 - type: Transform -- uid: 8872 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,1.5 - parent: 127 - type: Transform -- uid: 8873 - type: GrilleBroken - components: - - pos: -30.5,0.5 - parent: 127 - type: Transform -- uid: 8874 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 127 - type: Transform -- uid: 8875 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -30.5,-1.5 - parent: 127 - type: Transform -- uid: 8876 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-2.5 - parent: 127 - type: Transform -- uid: 8877 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-3.5 - parent: 127 - type: Transform -- uid: 8878 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -30.5,-4.5 - parent: 127 - type: Transform -- uid: 8879 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-5.5 - parent: 127 - type: Transform -- uid: 8880 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-5.5 - parent: 127 - type: Transform -- uid: 8881 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-5.5 - parent: 127 - type: Transform -- uid: 8882 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-5.5 - parent: 127 - type: Transform -- uid: 8883 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-5.5 - parent: 127 - type: Transform -- uid: 8884 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-5.5 - parent: 127 - type: Transform -- uid: 8885 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-5.5 - parent: 127 - type: Transform -- uid: 8886 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -37.5,13.5 - parent: 127 - type: Transform -- uid: 8887 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -37.5,8.5 - parent: 127 - type: Transform -- uid: 8888 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -37.5,11.5 - parent: 127 - type: Transform -- uid: 8889 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -37.5,10.5 - parent: 127 - type: Transform -- uid: 8890 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -37.5,9.5 - parent: 127 - type: Transform -- uid: 8891 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -37.5,12.5 - parent: 127 - type: Transform -- uid: 8892 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -32.5,6.5 - parent: 127 - type: Transform -- uid: 8893 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -34.5,14.5 - parent: 127 - type: Transform -- uid: 8894 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -33.5,14.5 - parent: 127 - type: Transform -- uid: 8895 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -32.5,14.5 - parent: 127 - type: Transform -- uid: 8896 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -35.5,6.5 - parent: 127 - type: Transform -- uid: 8897 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,14.5 - parent: 127 - type: Transform -- uid: 8898 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -36.5,6.5 - parent: 127 - type: Transform -- uid: 8899 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -29.5,14.5 - parent: 127 - type: Transform -- uid: 8900 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -34.5,6.5 - parent: 127 - type: Transform -- uid: 8901 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -33.5,6.5 - parent: 127 - type: Transform -- uid: 8902 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -35.5,14.5 - parent: 127 - type: Transform -- uid: 8903 - type: GrilleBroken - components: - - pos: -31.5,14.5 - parent: 127 - type: Transform -- uid: 8904 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -34.5,8.5 - parent: 127 - type: Transform -- uid: 8905 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -33.5,8.5 - parent: 127 - type: Transform -- uid: 8906 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -32.5,8.5 - parent: 127 - type: Transform -- uid: 8907 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -35.5,9.5 - parent: 127 - type: Transform -- uid: 8908 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -35.5,10.5 - parent: 127 - type: Transform -- uid: 8909 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -35.5,11.5 - parent: 127 - type: Transform -- uid: 8910 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -34.5,12.5 - parent: 127 - type: Transform -- uid: 8911 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -33.5,12.5 - parent: 127 - type: Transform -- uid: 8912 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -32.5,12.5 - parent: 127 - type: Transform -- uid: 8913 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -31.5,11.5 - parent: 127 - type: Transform -- uid: 8914 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -31.5,10.5 - parent: 127 - type: Transform -- uid: 8915 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -31.5,9.5 - parent: 127 - type: Transform -- uid: 8916 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -32.5,9.5 - parent: 127 - type: Transform -- uid: 8917 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -32.5,11.5 - parent: 127 - type: Transform -- uid: 8918 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -34.5,11.5 - parent: 127 - type: Transform -- uid: 8919 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -34.5,9.5 - parent: 127 - type: Transform -- uid: 8920 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -34.5,10.5 - parent: 127 - type: Transform -- uid: 8921 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -33.5,11.5 - parent: 127 - type: Transform -- uid: 8922 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -32.5,10.5 - parent: 127 - type: Transform -- uid: 8923 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -33.5,9.5 - parent: 127 - type: Transform -- uid: 8924 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -34.5,10.5 - parent: 127 - type: Transform -- uid: 8925 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -33.5,11.5 - parent: 127 - type: Transform -- uid: 8926 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -32.5,10.5 - parent: 127 - type: Transform -- uid: 8927 - type: AtmosFixPlasmaMarker - components: - - pos: -33.5,10.5 - parent: 127 - type: Transform -- uid: 8928 - type: PonderingOrb - components: - - desc: It shines a brilliant irradiating blue. - name: demon core - type: MetaData - - pos: -33.5,10.5 - parent: 127 - type: Transform - - size: 40 - type: Item - - slope: 0.32 - intensity: 2 - type: RadiationSource -- uid: 8929 - type: ClosetFireFilled - components: - - pos: -19.5,3.5 - parent: 127 - type: Transform -- uid: 8930 - type: ClosetToolFilled - components: - - pos: -19.5,5.5 - parent: 127 - type: Transform -- uid: 8931 - type: ClosetRadiationSuitFilled - components: - - pos: -19.5,2.5 - parent: 127 - type: Transform -- uid: 8932 - type: MaintenanceToolSpawner - components: - - pos: -23.5,9.5 - parent: 127 - type: Transform -- uid: 8933 - type: MaintenanceToolSpawner - components: - - pos: -24.5,12.5 - parent: 127 - type: Transform -- uid: 8934 - type: MaintenanceToolSpawner - components: - - pos: -25.5,7.5 - parent: 127 - type: Transform -- uid: 8935 - type: MaintenanceToolSpawner - components: - - pos: -25.5,8.5 - parent: 127 - type: Transform -- uid: 8936 - type: MaintenanceWeaponSpawner - components: - - pos: -25.5,10.5 - parent: 127 - type: Transform -- uid: 8937 - type: ClothingHandsGlovesRobohands - components: - - pos: -25.502268,9.555809 - parent: 127 - type: Transform -- uid: 8938 - type: MaintenanceFluffSpawner - components: - - pos: -21.5,9.5 - parent: 127 - type: Transform -- uid: 8939 - type: MaintenanceWeaponSpawner - components: - - pos: -23.5,12.5 - parent: 127 - type: Transform -- uid: 8940 - type: FirelockGlass - components: - - pos: -17.5,3.5 - parent: 127 - type: Transform -- uid: 8941 - type: FirelockGlass - components: - - pos: -16.5,3.5 - parent: 127 - type: Transform -- uid: 8942 - type: SheetPaper1 - components: - - pos: 21.711668,-26.521177 - parent: 127 - type: Transform - - count: 20 - type: Stack -- uid: 8943 - type: FirelockGlass - components: - - pos: 50.5,-16.5 - parent: 127 - type: Transform -- uid: 8944 - type: FirelockGlass - components: - - pos: 50.5,-15.5 - parent: 127 - type: Transform -- uid: 8945 - type: Drill - components: - - pos: -19.437037,12.298635 - parent: 127 - type: Transform -- uid: 8946 - type: Scalpel - components: - - pos: -19.468287,12.611135 - parent: 127 - type: Transform -- uid: 8947 - type: ScalpelAdvanced - components: - - pos: -21.468287,12.736135 - parent: 127 - type: Transform -- uid: 8948 - type: Hemostat - components: - - pos: -21.483912,12.454885 - parent: 127 - type: Transform -- uid: 8949 - type: FoodBurgerRobot - components: - - pos: -22.486643,9.430809 - parent: 127 - type: Transform -- uid: 8950 - type: ShowcaseRobotAntique - components: - - pos: -23.5,5.5 - parent: 127 - type: Transform -- uid: 8951 - type: ShowcaseRobot - components: - - pos: -22.5,5.5 - parent: 127 - type: Transform -- uid: 8952 - type: Barricade - components: - - pos: -25.5,11.5 - parent: 127 - type: Transform -- uid: 8953 - type: ClosetMaintenanceFilledRandom - components: - - pos: -14.5,2.5 - parent: 127 - type: Transform -- uid: 8954 - type: ClosetMaintenanceFilledRandom - components: - - pos: -17.5,1.5 - parent: 127 - type: Transform -- uid: 8955 - type: Rack - components: - - pos: -17.5,8.5 - parent: 127 - type: Transform -- uid: 8956 - type: Table - components: - - pos: -17.5,6.5 - parent: 127 - type: Transform -- uid: 8957 - type: Table - components: - - pos: -17.5,5.5 - parent: 127 - type: Transform -- uid: 8958 - type: MaintenanceToolSpawner - components: - - pos: -17.5,6.5 - parent: 127 - type: Transform -- uid: 8959 - type: MaintenanceFluffSpawner - components: - - pos: -17.5,5.5 - parent: 127 - type: Transform -- uid: 8960 - type: ClothingHeadHatWelding - components: - - pos: -17.490019,8.631117 - parent: 127 - type: Transform -- uid: 8961 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-9.5 - parent: 127 - type: Transform -- uid: 8962 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 127 - type: Transform -- uid: 8963 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 127 - type: Transform -- uid: 8964 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-9.5 - parent: 127 - type: Transform -- uid: 8965 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-9.5 - parent: 127 - type: Transform -- uid: 8966 - type: DisposalPipe - components: - - pos: -18.5,-10.5 - parent: 127 - type: Transform -- uid: 8967 - type: DisposalPipe - components: - - pos: -18.5,-11.5 - parent: 127 - type: Transform -- uid: 8968 - type: DisposalPipe - components: - - pos: -18.5,-12.5 - parent: 127 - type: Transform -- uid: 8969 - type: DisposalPipe - components: - - pos: -18.5,-13.5 - parent: 127 - type: Transform -- uid: 8970 - type: DisposalPipe - components: - - pos: -18.5,-14.5 - parent: 127 - type: Transform -- uid: 8971 - type: DisposalPipe - components: - - pos: -18.5,-15.5 - parent: 127 - type: Transform -- uid: 8972 - type: DisposalPipe - components: - - pos: -18.5,-16.5 - parent: 127 - type: Transform -- uid: 8973 - type: DisposalPipe - components: - - pos: -18.5,-17.5 - parent: 127 - type: Transform -- uid: 8974 - type: DisposalPipe - components: - - pos: -18.5,-18.5 - parent: 127 - type: Transform -- uid: 8975 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-19.5 - parent: 127 - type: Transform -- uid: 8976 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-19.5 - parent: 127 - type: Transform -- uid: 8977 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-19.5 - parent: 127 - type: Transform -- uid: 8978 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-19.5 - parent: 127 - type: Transform -- uid: 8979 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-19.5 - parent: 127 - type: Transform -- uid: 8980 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-19.5 - parent: 127 - type: Transform -- uid: 8981 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-19.5 - parent: 127 - type: Transform -- uid: 8982 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8983 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8984 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8985 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8986 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-10.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8987 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-11.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8988 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-12.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8989 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-13.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8990 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-14.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8991 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-15.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8992 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-16.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8993 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-17.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8994 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-18.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8995 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8996 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8997 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8998 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 8999 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 9000 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 9001 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9002 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9003 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9004 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9005 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9006 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9007 - type: GasPipeStraight - components: - - pos: -20.5,-8.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9008 - type: GasPipeStraight - components: - - pos: -20.5,-9.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9009 - type: GasPipeStraight - components: - - pos: -20.5,-10.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9010 - type: GasPipeStraight - components: - - pos: -20.5,-11.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9011 - type: GasPipeStraight - components: - - pos: -20.5,-12.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9012 - type: GasPipeStraight - components: - - pos: -20.5,-13.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9013 - type: GasPipeStraight - components: - - pos: -20.5,-14.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9014 - type: GasPipeStraight - components: - - pos: -20.5,-15.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9015 - type: GasPipeStraight - components: - - pos: -20.5,-16.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9016 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9017 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9018 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9019 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9020 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-9.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 9021 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-7.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9022 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 9023 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9024 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-21.5 - parent: 127 - type: Transform -- uid: 9025 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-18.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 9026 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-17.5 - parent: 127 - type: Transform -- uid: 9027 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-19.5 - parent: 127 - type: Transform -- uid: 9028 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-16.5 - parent: 127 - type: Transform -- uid: 9029 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-13.5 - parent: 127 - type: Transform -- uid: 9030 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-18.5 - parent: 127 - type: Transform -- uid: 9031 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9032 - type: GasPipeBend - components: - - pos: -25.5,-18.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 9033 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-19.5 - parent: 127 - type: Transform -- uid: 9034 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -25.5,-19.5 - parent: 127 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 9035 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-17.5 - parent: 127 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor -- uid: 9036 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-21.5 - parent: 127 - type: Transform -- uid: 9037 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-21.5 - parent: 127 - type: Transform -- uid: 9038 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-21.5 - parent: 127 - type: Transform -- uid: 9039 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-21.5 - parent: 127 - type: Transform -- uid: 9040 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-15.5 - parent: 127 - type: Transform -- uid: 9041 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-15.5 - parent: 127 - type: Transform -- uid: 9042 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-15.5 - parent: 127 - type: Transform -- uid: 9043 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-21.5 - parent: 127 - type: Transform -- uid: 9044 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 127 - type: Transform -- uid: 9045 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-13.5 - parent: 127 - type: Transform -- uid: 9046 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-21.5 - parent: 127 - type: Transform -- uid: 9047 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-21.5 - parent: 127 - type: Transform -- uid: 9048 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-13.5 - parent: 127 - type: Transform -- uid: 9049 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-13.5 - parent: 127 - type: Transform -- uid: 9050 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-20.5 - parent: 127 - type: Transform -- uid: 9051 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-15.5 - parent: 127 - type: Transform -- uid: 9052 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-19.5 - parent: 127 - type: Transform -- uid: 9053 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-18.5 - parent: 127 - type: Transform -- uid: 9054 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-16.5 - parent: 127 - type: Transform -- uid: 9055 - type: DisposalUnit - components: - - pos: -26.5,-19.5 - parent: 127 - type: Transform -- uid: 9056 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-19.5 - parent: 127 - type: Transform -- uid: 9057 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-20.5 - parent: 127 - type: Transform -- uid: 9058 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-17.5 - parent: 127 - type: Transform -- uid: 9059 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-14.5 - parent: 127 - type: Transform -- uid: 9060 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-13.5 - parent: 127 - type: Transform -- uid: 9061 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-13.5 - parent: 127 - type: Transform -- uid: 9062 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-13.5 - parent: 127 - type: Transform -- uid: 9063 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-13.5 - parent: 127 - type: Transform -- uid: 9064 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-13.5 - parent: 127 - type: Transform -- uid: 9065 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-19.5 - parent: 127 - type: Transform -- uid: 9066 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-18.5 - parent: 127 - type: Transform -- uid: 9067 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-17.5 - parent: 127 - type: Transform -- uid: 9068 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-16.5 - parent: 127 - type: Transform -- uid: 9069 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-15.5 - parent: 127 - type: Transform -- uid: 9070 - type: AirlockExternalGlass - components: - - pos: -25.5,-14.5 - parent: 127 - type: Transform -- uid: 9071 - type: AirlockExternalGlass - components: - - pos: -23.5,-14.5 - parent: 127 - type: Transform -- uid: 9072 - type: TableWood - components: - - pos: -26.5,-18.5 - parent: 127 - type: Transform -- uid: 9073 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-17.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9074 - type: PoweredSmallLight - components: - - pos: -29.5,-14.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9075 - type: GeneratorPlasma - components: - - pos: -31.5,-14.5 - parent: 127 - type: Transform -- uid: 9076 - type: SMESBasic - components: - - pos: -30.5,-14.5 - parent: 127 - type: Transform -- uid: 9077 - type: SubstationBasic - components: - - pos: -29.5,-14.5 - parent: 127 - type: Transform -- uid: 9078 - type: APCBasic - components: - - pos: -27.5,-13.5 - parent: 127 - type: Transform -- uid: 9079 - type: CableHV - components: - - pos: -31.5,-14.5 - parent: 127 - type: Transform -- uid: 9080 - type: CableHV - components: - - pos: -30.5,-14.5 - parent: 127 - type: Transform -- uid: 9081 - type: CableHV - components: - - pos: -29.5,-14.5 - parent: 127 - type: Transform -- uid: 9082 - type: CableMV - components: - - pos: -29.5,-14.5 - parent: 127 - type: Transform -- uid: 9083 - type: CableMV - components: - - pos: -28.5,-14.5 - parent: 127 - type: Transform -- uid: 9084 - type: CableMV - components: - - pos: -27.5,-14.5 - parent: 127 - type: Transform -- uid: 9085 - type: CableMV - components: - - pos: -27.5,-13.5 - parent: 127 - type: Transform -- uid: 9086 - type: CableApcExtension - components: - - pos: -27.5,-13.5 - parent: 127 - type: Transform -- uid: 9087 - type: CableApcExtension - components: - - pos: -27.5,-14.5 - parent: 127 - type: Transform -- uid: 9088 - type: CableApcExtension - components: - - pos: -26.5,-14.5 - parent: 127 - type: Transform -- uid: 9089 - type: CableApcExtension - components: - - pos: -25.5,-14.5 - parent: 127 - type: Transform -- uid: 9090 - type: CableApcExtension - components: - - pos: -24.5,-14.5 - parent: 127 - type: Transform -- uid: 9091 - type: CableApcExtension - components: - - pos: -27.5,-15.5 - parent: 127 - type: Transform -- uid: 9092 - type: CableApcExtension - components: - - pos: -27.5,-16.5 - parent: 127 - type: Transform -- uid: 9093 - type: CableApcExtension - components: - - pos: -27.5,-17.5 - parent: 127 - type: Transform -- uid: 9094 - type: CableApcExtension - components: - - pos: -27.5,-18.5 - parent: 127 - type: Transform -- uid: 9095 - type: CableApcExtension - components: - - pos: -27.5,-19.5 - parent: 127 - type: Transform -- uid: 9096 - type: CableApcExtension - components: - - pos: -28.5,-19.5 - parent: 127 - type: Transform -- uid: 9097 - type: CableApcExtension - components: - - pos: -29.5,-19.5 - parent: 127 - type: Transform -- uid: 9098 - type: CableApcExtension - components: - - pos: -30.5,-19.5 - parent: 127 - type: Transform -- uid: 9099 - type: CableApcExtension - components: - - pos: -28.5,-16.5 - parent: 127 - type: Transform -- uid: 9100 - type: CableApcExtension - components: - - pos: -29.5,-16.5 - parent: 127 - type: Transform -- uid: 9101 - type: CableApcExtension - components: - - pos: -30.5,-16.5 - parent: 127 - type: Transform -- uid: 9102 - type: CableHV - components: - - pos: -32.5,-14.5 - parent: 127 - type: Transform -- uid: 9103 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-14.5 - parent: 127 - type: Transform -- uid: 9104 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-13.5 - parent: 127 - type: Transform -- uid: 9105 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-13.5 - parent: 127 - type: Transform -- uid: 9106 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-13.5 - parent: 127 - type: Transform -- uid: 9107 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-13.5 - parent: 127 - type: Transform -- uid: 9108 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-13.5 - parent: 127 - type: Transform -- uid: 9109 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-13.5 - parent: 127 - type: Transform -- uid: 9110 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-13.5 - parent: 127 - type: Transform -- uid: 9111 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-14.5 - parent: 127 - type: Transform -- uid: 9112 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-15.5 - parent: 127 - type: Transform -- uid: 9113 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-15.5 - parent: 127 - type: Transform -- uid: 9114 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-15.5 - parent: 127 - type: Transform -- uid: 9115 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-16.5 - parent: 127 - type: Transform -- uid: 9116 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-17.5 - parent: 127 - type: Transform -- uid: 9117 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-18.5 - parent: 127 - type: Transform -- uid: 9118 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-19.5 - parent: 127 - type: Transform -- uid: 9119 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-19.5 - parent: 127 - type: Transform -- uid: 9120 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-19.5 - parent: 127 - type: Transform -- uid: 9121 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-20.5 - parent: 127 - type: Transform -- uid: 9122 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-21.5 - parent: 127 - type: Transform -- uid: 9123 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-21.5 - parent: 127 - type: Transform -- uid: 9124 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-21.5 - parent: 127 - type: Transform -- uid: 9125 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-21.5 - parent: 127 - type: Transform -- uid: 9126 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-21.5 - parent: 127 - type: Transform -- uid: 9127 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-21.5 - parent: 127 - type: Transform -- uid: 9128 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-21.5 - parent: 127 - type: Transform -- uid: 9129 - type: CableHV - components: - - pos: -33.5,-14.5 - parent: 127 - type: Transform -- uid: 9130 - type: CableHV - components: - - pos: -33.5,-15.5 - parent: 127 - type: Transform -- uid: 9131 - type: CableHV - components: - - pos: -33.5,-16.5 - parent: 127 - type: Transform -- uid: 9132 - type: CableHV - components: - - pos: -33.5,-17.5 - parent: 127 - type: Transform -- uid: 9133 - type: CableHV - components: - - pos: -34.5,-17.5 - parent: 127 - type: Transform -- uid: 9134 - type: CableHV - components: - - pos: -35.5,-17.5 - parent: 127 - type: Transform -- uid: 9135 - type: CableHV - components: - - pos: -36.5,-17.5 - parent: 127 - type: Transform -- uid: 9136 - type: CableHV - components: - - pos: -37.5,-17.5 - parent: 127 - type: Transform -- uid: 9137 - type: CableHV - components: - - pos: -38.5,-17.5 - parent: 127 - type: Transform -- uid: 9138 - type: CableHV - components: - - pos: -39.5,-17.5 - parent: 127 - type: Transform -- uid: 9139 - type: SolarTracker - components: - - pos: -39.5,-17.5 - parent: 127 - type: Transform -- uid: 9140 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-16.5 - parent: 127 - type: Transform -- uid: 9141 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-15.5 - parent: 127 - type: Transform -- uid: 9142 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-15.5 - parent: 127 - type: Transform -- uid: 9143 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-16.5 - parent: 127 - type: Transform -- uid: 9144 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-18.5 - parent: 127 - type: Transform -- uid: 9145 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-19.5 - parent: 127 - type: Transform -- uid: 9146 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-19.5 - parent: 127 - type: Transform -- uid: 9147 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-18.5 - parent: 127 - type: Transform -- uid: 9148 - type: CableHV - components: - - pos: -37.5,-18.5 - parent: 127 - type: Transform -- uid: 9149 - type: CableHV - components: - - pos: -37.5,-19.5 - parent: 127 - type: Transform -- uid: 9150 - type: CableHV - components: - - pos: -37.5,-16.5 - parent: 127 - type: Transform -- uid: 9151 - type: CableHV - components: - - pos: -37.5,-15.5 - parent: 127 - type: Transform -- uid: 9152 - type: CableHV - components: - - pos: -35.5,-15.5 - parent: 127 - type: Transform -- uid: 9153 - type: CableHV - components: - - pos: -35.5,-16.5 - parent: 127 - type: Transform -- uid: 9154 - type: CableHV - components: - - pos: -35.5,-18.5 - parent: 127 - type: Transform -- uid: 9155 - type: CableHV - components: - - pos: -35.5,-19.5 - parent: 127 - type: Transform -- uid: 9156 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-15.5 - parent: 127 - type: Transform -- uid: 9157 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-16.5 - parent: 127 - type: Transform -- uid: 9158 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-17.5 - parent: 127 - type: Transform -- uid: 9159 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-18.5 - parent: 127 - type: Transform -- uid: 9160 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-19.5 - parent: 127 - type: Transform -- uid: 9161 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-17.5 - parent: 127 - type: Transform -- uid: 9162 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-17.5 - parent: 127 - type: Transform -- uid: 9163 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-17.5 - parent: 127 - type: Transform -- uid: 9164 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-17.5 - parent: 127 - type: Transform -- uid: 9165 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-14.5 - parent: 127 - type: Transform -- uid: 9166 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-15.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9167 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-21.5 - parent: 127 - type: Transform -- uid: 9168 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-23.5 - parent: 127 - type: Transform -- uid: 9169 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-21.5 - parent: 127 - type: Transform -- uid: 9170 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-21.5 - parent: 127 - type: Transform -- uid: 9171 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-21.5 - parent: 127 - type: Transform -- uid: 9172 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-23.5 - parent: 127 - type: Transform -- uid: 9173 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -22.5,-11.5 - parent: 127 - type: Transform -- uid: 9174 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-23.5 - parent: 127 - type: Transform -- uid: 9175 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-23.5 - parent: 127 - type: Transform -- uid: 9176 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-23.5 - parent: 127 - type: Transform -- uid: 9177 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-21.5 - parent: 127 - type: Transform -- uid: 9178 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-21.5 - parent: 127 - type: Transform -- uid: 9179 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-23.5 - parent: 127 - type: Transform -- uid: 9180 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-23.5 - parent: 127 - type: Transform -- uid: 9181 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-23.5 - parent: 127 - type: Transform -- uid: 9182 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-23.5 - parent: 127 - type: Transform -- uid: 9183 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -17.5,-21.5 - parent: 127 - type: Transform -- uid: 9184 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-11.5 - parent: 127 - type: Transform -- uid: 9185 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-11.5 - parent: 127 - type: Transform -- uid: 9186 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-11.5 - parent: 127 - type: Transform -- uid: 9187 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-11.5 - parent: 127 - type: Transform -- uid: 9188 - type: GrilleBroken - components: - - pos: -29.5,-11.5 - parent: 127 - type: Transform -- uid: 9189 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-11.5 - parent: 127 - type: Transform -- uid: 9190 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-11.5 - parent: 127 - type: Transform -- uid: 9191 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-11.5 - parent: 127 - type: Transform -- uid: 9192 - type: GrilleBroken - components: - - pos: -22.5,-8.5 - parent: 127 - type: Transform -- uid: 9193 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-11.5 - parent: 127 - type: Transform -- uid: 9194 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-10.5 - parent: 127 - type: Transform -- uid: 9195 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-9.5 - parent: 127 - type: Transform -- uid: 9196 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -23.5,-8.5 - parent: 127 - type: Transform -- uid: 9197 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-11.5 - parent: 127 - type: Transform -- uid: 9198 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-7.5 - parent: 127 - type: Transform -- uid: 9199 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -28.5,-23.5 - parent: 127 - type: Transform -- uid: 9200 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-21.5 - parent: 127 - type: Transform -- uid: 9201 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-21.5 - parent: 127 - type: Transform -- uid: 9202 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-21.5 - parent: 127 - type: Transform -- uid: 9203 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-21.5 - parent: 127 - type: Transform -- uid: 9204 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-20.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9205 - type: TableWood - components: - - pos: -26.5,-17.5 - parent: 127 - type: Transform -- uid: 9206 - type: TableWood - components: - - pos: -26.5,-16.5 - parent: 127 - type: Transform -- uid: 9207 - type: Bed - components: - - pos: -31.5,-20.5 - parent: 127 - type: Transform -- uid: 9208 - type: BedsheetCosmos - components: - - pos: -31.5,-20.5 - parent: 127 - type: Transform -- uid: 9209 - type: TableWood - components: - - pos: -30.5,-20.5 - parent: 127 - type: Transform -- uid: 9210 - type: Rack - components: - - pos: -28.5,-20.5 - parent: 127 - type: Transform -- uid: 9211 - type: Bookshelf - components: - - pos: -27.5,-20.5 - parent: 127 - type: Transform -- uid: 9212 - type: Bookshelf - components: - - pos: -26.5,-20.5 - parent: 127 - type: Transform -- uid: 9213 - type: ComputerSolarControl - components: - - rot: 3.141592653589793 rad - pos: -29.5,-20.5 - parent: 127 - type: Transform -- uid: 9214 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-18.5 - parent: 127 - type: Transform -- uid: 9215 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-16.5 - parent: 127 - type: Transform -- uid: 9216 - type: TableGlass - components: - - pos: -31.5,-17.5 - parent: 127 - type: Transform -- uid: 9217 - type: DrinkGlass - components: - - pos: -31.436678,-17.181803 - parent: 127 - type: Transform -- uid: 9218 - type: DrinkGlass - components: - - pos: -31.702303,-17.353678 - parent: 127 - type: Transform -- uid: 9219 - type: DrinkGlass - components: - - pos: -26.296053,-16.150553 - parent: 127 - type: Transform -- uid: 9220 - type: DrinkGlass - components: - - pos: -26.608553,-16.291178 - parent: 127 - type: Transform -- uid: 9221 - type: DrinkShaker - components: - - pos: -26.374178,-16.556803 - parent: 127 - type: Transform -- uid: 9222 - type: BoozeDispenser - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-18.5 - parent: 127 - type: Transform -- uid: 9223 - type: soda_dispenser - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-17.5 - parent: 127 - type: Transform -- uid: 9224 - type: SpaceVillainArcadeFilled - components: - - pos: -28.5,-14.5 - parent: 127 - type: Transform -- uid: 9225 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -28.5,-15.5 - parent: 127 - type: Transform -- uid: 9226 - type: ClothingShoesBootsCombat - components: - - name: pilot's boots - type: MetaData - - pos: -28.522133,-20.443548 - parent: 127 - type: Transform -- uid: 9227 - type: SurvivalKnife - components: - - desc: A certified pilot's last resort. - name: dataknife - type: MetaData - - pos: -28.490883,-20.506048 - parent: 127 - type: Transform -- uid: 9228 - type: PlushieLamp - components: - - pos: -30.490881,-20.240423 - parent: 127 - type: Transform -- uid: 9229 - type: FoodDonutJellySpaceman - components: - - pos: -30.476904,6.4825244 - parent: 127 - type: Transform -- uid: 9230 - type: PlushieSpaceLizard - components: - - pos: -40.478786,-17.469109 - parent: 127 - type: Transform -- uid: 9231 - type: IntercomScience - components: - - pos: -21.5,4.5 - parent: 127 - type: Transform -- uid: 9232 - type: IntercomScience - components: - - rot: 3.141592653589793 rad - pos: -23.5,-3.5 - parent: 127 - type: Transform -- uid: 9233 - type: ExtinguisherCabinetFilled - components: - - rot: 3.141592653589793 rad - pos: -23.5,4.5 - parent: 127 - type: Transform -- uid: 9234 - type: ExtinguisherCabinetFilled - components: - - rot: 3.141592653589793 rad - pos: -21.5,-4.5 - parent: 127 - type: Transform -- uid: 9235 - type: ExtinguisherCabinetFilled - components: - - rot: 3.141592653589793 rad - pos: -22.5,13.5 - parent: 127 - type: Transform -- uid: 9236 - type: IntercomScience - components: - - rot: 1.5707963267948966 rad - pos: -26.5,11.5 - parent: 127 - type: Transform -- uid: 9237 - type: Paper - components: - - pos: 40.65831,-0.41919965 - parent: 127 - type: Transform -- uid: 9238 - type: Paper - components: - - pos: 40.56456,-0.41919965 - parent: 127 - type: Transform -- uid: 9239 - type: Paper - components: - - pos: 40.548935,-0.41919965 - parent: 127 - type: Transform -- uid: 9240 - type: Paper - components: - - pos: 40.43956,-0.41919965 - parent: 127 - type: Transform -- uid: 9241 - type: BoxFolderBlue - components: - - pos: 40.28816,-0.42427582 - parent: 127 - type: Transform -- uid: 9242 - type: SpawnPointResearchAssistant - components: - - pos: 3.5,-2.5 - parent: 127 - type: Transform -- uid: 9243 - type: WarpPoint - components: - - pos: -25.5,-0.5 - parent: 127 - type: Transform - - location: anomaly Lab - type: WarpPoint -- uid: 9244 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: -21.5,3.5 - parent: 127 - type: Transform - - id: Anomaly Lab - type: SurveillanceCamera -- uid: 9245 - type: SignDirectionalSci - components: - - rot: 3.141592653589793 rad - pos: 13.543732,-24.80487 - parent: 127 - type: Transform -- uid: 9246 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: 17.465607,-24.77362 - parent: 127 - type: Transform -- uid: 9247 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-4.5 - parent: 127 - type: Transform -- uid: 9248 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-3.5 - parent: 127 - type: Transform -- uid: 9249 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-2.5 - parent: 127 - type: Transform -- uid: 9250 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-1.5 - parent: 127 - type: Transform -- uid: 9251 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-0.5 - parent: 127 - type: Transform -- uid: 9252 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 65.5,1.5 - parent: 127 - type: Transform -- uid: 9253 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 64.5,1.5 - parent: 127 - type: Transform -- uid: 9254 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 63.5,1.5 - parent: 127 - type: Transform -- uid: 9255 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 62.5,1.5 - parent: 127 - type: Transform -- uid: 9256 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 61.5,1.5 - parent: 127 - type: Transform -- uid: 9257 - type: TelecomServer - components: - - pos: 63.5,-3.5 - parent: 127 - type: Transform - - containers: - key_slots: !type:Container - ents: - - 9258 - - 9259 - machine_board: !type:Container - ents: [] - machine_parts: !type:Container - ents: [] - type: ContainerContainer -- uid: 9258 - type: EncryptionKeyCommand - components: - - flags: InContainer - type: MetaData - - parent: 9257 - type: Transform - - canCollide: False - type: Physics -- uid: 9259 - type: EncryptionKeyCommon - components: - - flags: InContainer - type: MetaData - - parent: 9257 - type: Transform - - canCollide: False - type: Physics -- uid: 9260 - type: TelecomServer - components: - - pos: 63.5,-1.5 - parent: 127 - type: Transform - - containers: - key_slots: !type:Container - ents: - - 9261 - - 9262 - machine_board: !type:Container - ents: [] - machine_parts: !type:Container - ents: [] - type: ContainerContainer -- uid: 9261 - type: EncryptionKeySecurity - components: - - flags: InContainer - type: MetaData - - parent: 9260 - type: Transform - - canCollide: False - type: Physics -- uid: 9262 - type: EncryptionKeyCommon - components: - - flags: InContainer - type: MetaData - - parent: 9260 - type: Transform - - canCollide: False - type: Physics -- uid: 9263 - type: TelecomServer - components: - - pos: 62.5,-1.5 - parent: 127 - type: Transform - - containers: - key_slots: !type:Container - ents: - - 9264 - - 9265 - - 9266 - machine_board: !type:Container - ents: [] - machine_parts: !type:Container - ents: [] - type: ContainerContainer -- uid: 9264 - type: EncryptionKeyMedicalScience - components: - - flags: InContainer - type: MetaData - - parent: 9263 - type: Transform - - canCollide: False - type: Physics -- uid: 9265 - type: EncryptionKeyScience - components: - - flags: InContainer - type: MetaData - - parent: 9263 - type: Transform - - canCollide: False - type: Physics -- uid: 9266 - type: EncryptionKeyCommon - components: - - flags: InContainer - type: MetaData - - parent: 9263 - type: Transform - - canCollide: False - type: Physics -- uid: 9267 - type: TelecomServer - components: - - pos: 61.5,-1.5 - parent: 127 - type: Transform - - containers: - key_slots: !type:Container - ents: - - 9268 - - 9269 - machine_board: !type:Container - ents: [] - machine_parts: !type:Container - ents: [] - type: ContainerContainer -- uid: 9268 - type: EncryptionKeyCommon - components: - - flags: InContainer - type: MetaData - - parent: 9267 - type: Transform - - canCollide: False - type: Physics -- uid: 9269 - type: EncryptionKeyService - components: - - flags: InContainer - type: MetaData - - parent: 9267 - type: Transform - - canCollide: False - type: Physics -- uid: 9270 - type: TelecomServer - components: - - pos: 61.5,-5.5 - parent: 127 - type: Transform - - containers: - key_slots: !type:Container - ents: - - 9271 - - 9272 - machine_board: !type:Container - ents: [] - machine_parts: !type:Container - ents: [] - type: ContainerContainer -- uid: 9271 - type: EncryptionKeyCargo - components: - - flags: InContainer - type: MetaData - - parent: 9270 - type: Transform - - canCollide: False - type: Physics -- uid: 9272 - type: EncryptionKeyCommon - components: - - flags: InContainer - type: MetaData - - parent: 9270 - type: Transform - - canCollide: False - type: Physics -- uid: 9273 - type: TelecomServer - components: - - pos: 62.5,-5.5 - parent: 127 - type: Transform - - containers: - key_slots: !type:Container - ents: - - 9274 - - 9275 - - 9276 - machine_board: !type:Container - ents: [] - machine_parts: !type:Container - ents: [] - type: ContainerContainer -- uid: 9274 - type: EncryptionKeyMedicalScience - components: - - flags: InContainer - type: MetaData - - parent: 9273 - type: Transform - - canCollide: False - type: Physics -- uid: 9275 - type: EncryptionKeyMedical - components: - - flags: InContainer - type: MetaData - - parent: 9273 - type: Transform - - canCollide: False - type: Physics -- uid: 9276 - type: EncryptionKeyCommon - components: - - flags: InContainer - type: MetaData - - parent: 9273 - type: Transform - - canCollide: False - type: Physics -- uid: 9277 - type: TelecomServer - components: - - pos: 63.5,-5.5 - parent: 127 - type: Transform - - containers: - key_slots: !type:Container - ents: - - 9278 - - 9279 - machine_board: !type:Container - ents: [] - machine_parts: !type:Container - ents: [] - type: ContainerContainer -- uid: 9278 - type: EncryptionKeyEngineering - components: - - flags: InContainer - type: MetaData - - parent: 9277 - type: Transform - - canCollide: False - type: Physics -- uid: 9279 - type: EncryptionKeyCommon - components: - - flags: InContainer - type: MetaData - - parent: 9277 - type: Transform - - canCollide: False - type: Physics -- uid: 9280 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-3.5 - parent: 127 - type: Transform - - id: Telecomms - type: SurveillanceCamera -- uid: 9281 - type: HighSecCommandLocked - components: - - pos: 60.5,-3.5 - parent: 127 - type: Transform -- uid: 9282 - type: CableApcExtension - components: - - pos: 59.5,-3.5 - parent: 127 - type: Transform -- uid: 9283 - type: CableApcExtension - components: - - pos: 60.5,-3.5 - parent: 127 - type: Transform -- uid: 9284 - type: CableApcExtension - components: - - pos: 61.5,-3.5 - parent: 127 - type: Transform -- uid: 9285 - type: CableApcExtension - components: - - pos: 62.5,-3.5 - parent: 127 - type: Transform -- uid: 9286 - type: CableApcExtension - components: - - pos: 63.5,-3.5 - parent: 127 - type: Transform -- uid: 9287 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-9.5 - parent: 127 - type: Transform -- uid: 9288 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-7.5 - parent: 127 - type: Transform -- uid: 9289 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-9.5 - parent: 127 - type: Transform -- uid: 9290 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-3.5 - parent: 127 - type: Transform -- uid: 9291 - type: SignTelecomms - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-4.5 - parent: 127 - type: Transform -- uid: 9292 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-3.5 - parent: 127 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -... diff --git a/Resources/Maps/cm_flatgrass.yml b/Resources/Maps/cm_flatgrass.yml new file mode 100644 index 0000000000..89ce4210fa --- /dev/null +++ b/Resources/Maps/cm_flatgrass.yml @@ -0,0 +1,57270 @@ +meta: + format: 3 + name: DemoStation + author: Space-Wizards + postmapinit: false +tilemap: + 0: Space + 1: AlmayerAI + 2: AlmayerOuterHull + 3: AlmayerPlate + 4: AlmayerPlating + 5: AlmayerSteel + 6: AlmayerSteelDark + 7: AlmayerSteelSterile + 8: AlmayerSteelSterileGreen + 9: AlmayerSteelSterileWhite + 10: AlmayerWood + 11: FloorArcadeBlue + 12: FloorArcadeBlue2 + 13: FloorArcadeRed + 14: FloorAsteroidCoarseSand0 + 15: FloorAsteroidCoarseSandDug + 16: FloorAsteroidIronsand1 + 17: FloorAsteroidIronsand2 + 18: FloorAsteroidIronsand3 + 19: FloorAsteroidIronsand4 + 20: FloorAsteroidSand + 21: FloorAsteroidTile + 22: FloorBar + 23: FloorBasalt + 24: FloorBlue + 25: FloorBlueCircuit + 26: FloorBoxing + 27: FloorCarpetClown + 28: FloorCarpetOffice + 29: FloorCave + 30: FloorCaveDrought + 31: FloorClown + 32: FloorDark + 33: FloorDarkDiagonal + 34: FloorDarkDiagonalMini + 35: FloorDarkHerringbone + 36: FloorDarkMini + 37: FloorDarkMono + 38: FloorDarkOffset + 39: FloorDarkPavement + 40: FloorDarkPavementVertical + 41: FloorDarkPlastic + 42: FloorDesert + 43: FloorDirt + 44: FloorEighties + 45: FloorElevatorShaft + 46: FloorFlesh + 47: FloorFreezer + 48: FloorGlass + 49: FloorGold + 50: FloorGrass + 51: FloorGrassDark + 52: FloorGrassJungle + 53: FloorGrassLight + 54: FloorGreenCircuit + 55: FloorGym + 56: FloorHydro + 57: FloorKitchen + 58: FloorLaundry + 59: FloorLino + 60: FloorLowDesert + 61: FloorMetalDiamond + 62: FloorMime + 63: FloorMono + 64: FloorPlanetDirt + 65: FloorPlanetGrass + 66: FloorPlastic + 67: FloorRGlass + 68: FloorReinforced + 69: FloorRockVault + 70: FloorShowroom + 71: FloorShuttleBlue + 72: FloorShuttleOrange + 73: FloorShuttlePurple + 74: FloorShuttleRed + 75: FloorShuttleWhite + 76: FloorSilver + 77: FloorSnow + 78: FloorSteel + 79: FloorSteelDiagonal + 80: FloorSteelDiagonalMini + 81: FloorSteelDirty + 82: FloorSteelHerringbone + 83: FloorSteelMini + 84: FloorSteelMono + 85: FloorSteelOffset + 86: FloorSteelPavement + 87: FloorSteelPavementVertical + 88: FloorTechMaint + 89: FloorTechMaint2 + 90: FloorTechMaint3 + 91: FloorWhite + 92: FloorWhiteDiagonal + 93: FloorWhiteDiagonalMini + 94: FloorWhiteHerringbone + 95: FloorWhiteMini + 96: FloorWhiteMono + 97: FloorWhiteOffset + 98: FloorWhitePavement + 99: FloorWhitePavementVertical + 100: FloorWhitePlastic + 101: FloorWood + 102: FloorWoodTile + 103: Lattice + 104: Plating +entities: +- uid: 0 + components: + - type: MetaData + - type: Transform + - index: 10 + type: Map + - type: PhysicsMap + - type: Broadphase + - type: OccluderTree + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - ambientLightColor: '#03050AFF' + type: MapLight + - space: False + mixture: + volume: 2500 + temperature: 293.15 + moles: + - 21.82478 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: MapAtmosphere + - chunks: + -1,-1: + ind: -1,-1 + tiles: PQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAQQAAAEEAAABBAAACQQAAA0EAAAJAAAAAQAAAAEEAAAFBAAADQQAAAUEAAAM9AAAAQQAAAUEAAABBAAAAQQAAAEEAAABBAAADQQAAAEEAAANBAAACQAAAAEAAAABBAAADQQAAAUEAAANBAAADPQAAAEEAAAJBAAADQQAAAEEAAAJBAAACQQAAA0EAAAFBAAADQQAAAkAAAABAAAAAQQAAAUEAAABBAAACQQAAAT0AAABBAAACQQAAA0EAAAJBAAADQQAAAEEAAANBAAACQQAAAUEAAAFAAAAAQAAAAEEAAAJBAAAAQQAAAkEAAAA9AAAAQQAAA0EAAANBAAADQQAAAEEAAABBAAACQQAAA0EAAANBAAADQAAAAEAAAABBAAACQQAAAkEAAANBAAABPQAAAEEAAAJBAAABQQAAAEEAAAJBAAACQQAAA0EAAAJBAAAAQQAAAkAAAABAAAAAQQAAA0EAAANBAAAAQQAAAD0AAABBAAABQQAAAUEAAANBAAABQQAAA0EAAANBAAAAQQAAAUEAAABAAAAAQAAAAEEAAABBAAACQQAAAkEAAAA9AAAAQQAAAUEAAABBAAADQQAAA0EAAANBAAAAQQAAAUEAAANBAAABQAAAAEAAAABBAAADQQAAAUEAAAFBAAABPQAAAEEAAAJBAAADQQAAAkEAAABBAAAAQQAAAkEAAABBAAADQQAAA0AAAABAAAAAQQAAAkEAAAFBAAAAQQAAAz0AAABBAAADQQAAAEEAAAJBAAADQQAAAUEAAAFBAAACQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAA9AAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAPQAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABBAAABQQAAAUEAAAJBAAABQQAAAj0AAABBAAADQQAAAEEAAANBAAABQQAAAEEAAANBAAADQAAAAEAAAABAAAAAQQAAA0EAAAJBAAAAQQAAAUEAAAA9AAAAQQAAAUEAAAFBAAAAQQAAA0EAAABBAAABQQAAAEAAAABAAAAAQAAAAEEAAAFBAAAAQQAAA0EAAABBAAAAPQAAAEEAAAFBAAABQQAAAkEAAAJBAAACQQAAA0EAAANBAAABQAAAAEAAAABBAAABQQAAAUEAAABBAAADQQAAAz0AAABBAAACQQAAAEEAAAJBAAACQQAAA0EAAAJBAAAAQQAAAQ== + -1,0: + ind: -1,0 + tiles: QAAAAEAAAABBAAABQQAAAEEAAABBAAAAQQAAAD0AAABBAAADQQAAAkEAAABBAAABQQAAAUEAAABBAAACQQAAAkAAAABAAAAAQQAAAkEAAABBAAAAQQAAAEEAAAI9AAAAQQAAAEEAAABBAAADQQAAA0EAAAFBAAAAQQAAAkEAAAJAAAAAQAAAAEEAAABBAAABQQAAAkEAAABBAAABPQAAAEEAAAJBAAADQQAAAUEAAABBAAADQQAAAEEAAAJBAAAAQAAAAEEAAAFBAAACQQAAA0EAAABBAAAAQQAAAz0AAABBAAAAQQAAAUEAAANBAAABQQAAAEEAAAJBAAABQQAAAT0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAQQAAAkEAAABBAAAAQQAAAkEAAAFBAAADQQAAA0EAAAJAAAAAQQAAAj0AAABBAAADQQAAAUEAAANBAAAAQQAAAUEAAABBAAADQQAAAUEAAAJBAAADQQAAAEEAAABBAAAAQAAAAEEAAAE9AAAAQQAAAEEAAAJBAAAAQQAAAEEAAABBAAAAQQAAA0EAAAJBAAABQQAAAUEAAAJBAAADQQAAA0AAAABBAAACPQAAAEEAAABBAAACQQAAAkEAAAJBAAADQQAAA0EAAAFBAAADQQAAAkEAAANBAAAAQQAAAUEAAAFAAAAAQQAAAD0AAABBAAADQQAAAEEAAAFBAAAAQQAAAEEAAAJBAAADQQAAAEEAAAJBAAACQQAAAEEAAABBAAABQAAAAEEAAAA9AAAAQQAAA0EAAABBAAADQQAAAUEAAANBAAABQQAAAUEAAAJBAAAAQQAAAkEAAAFBAAAAQQAAAUAAAABBAAACPQAAAEEAAAJBAAACQQAAAEEAAANBAAABQQAAA0EAAAFBAAADQQAAAkEAAABBAAAAQQAAA0EAAABAAAAAQQAAAD0AAABBAAACQQAAAkEAAANBAAABQQAAAkEAAAJBAAACQQAAAUEAAABBAAABQQAAA0EAAANBAAABQAAAAEEAAAE9AAAAQQAAAUEAAABBAAACQQAAAkEAAANBAAABQQAAAkEAAANBAAADQQAAA0EAAAFBAAABQQAAAD0AAAA9AAAAPQAAAEEAAANBAAADQQAAAkEAAABBAAABQQAAAUEAAANBAAADQQAAA0EAAAFBAAADQQAAAUEAAANAAAAAQQAAA0EAAAFBAAACQQAAAkEAAAJBAAABQQAAAEEAAABBAAAAQQAAA0EAAANBAAACQQAAAEEAAABBAAADQAAAAEEAAAFBAAAAQQAAAkEAAAFBAAABQQAAAUEAAABBAAAAQQAAA0EAAABBAAAAQQAAAEEAAABBAAABQQAAAA== + -1,1: + ind: -1,1 + tiles: QAAAAEEAAAJBAAABQQAAAkEAAABBAAACQQAAAUEAAABBAAAAQQAAA0EAAAJBAAABQQAAAEEAAAJBAAADQQAAAkAAAABAAAAAQAAAAEEAAANBAAABQQAAAEEAAABBAAACQQAAA0EAAAFBAAAAQQAAAUEAAAFBAAABQQAAAkEAAANAAAAAQAAAAEAAAABAAAAAQQAAA0EAAABBAAADQQAAAEEAAABBAAACQQAAA0EAAAFBAAAAQQAAA0EAAAJBAAAAQAAAAEEAAANAAAAAQAAAAEAAAABAAAAAQAAAAEEAAAFBAAACQQAAAkEAAABBAAACQQAAA0EAAAFBAAACQQAAAEAAAABBAAABQQAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEEAAAJBAAABQQAAAEEAAAFBAAACQQAAAkEAAANAAAAAQQAAAEEAAABBAAACQQAAAUEAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABBAAACQQAAAkEAAAJBAAACQAAAAEEAAANBAAACQQAAA0EAAAFBAAAAQQAAAUEAAANBAAAAQAAAAEAAAABAAAAAQAAAAEAAAABBAAACQQAAAEAAAABBAAABQQAAAEEAAAFBAAABQQAAAUEAAAJBAAAAQQAAAEEAAAJBAAADQAAAAEEAAAJBAAAAQQAAAkAAAABAAAAAQQAAAEEAAANBAAABQQAAA0EAAAJBAAAAQQAAA0EAAAJBAAADQQAAAUEAAAFBAAABQQAAA0EAAABBAAACQQAAAEEAAAFBAAACQQAAA0EAAAFBAAACQQAAA0EAAABBAAAAQQAAAkEAAABBAAADQQAAAUEAAAFBAAABQQAAAkEAAAJBAAABQQAAAEEAAAFBAAADQQAAAEEAAAFBAAADQQAAAEEAAAJBAAABQQAAA0EAAABBAAACQQAAA0EAAAFBAAAAQQAAAUEAAANBAAABQQAAAkEAAAFBAAAAQQAAAUEAAABBAAAAQQAAA0EAAAJBAAACQQAAA0EAAAJBAAABQQAAAUEAAABBAAABQQAAA0EAAABBAAADQQAAAEEAAAFBAAAAQQAAAkEAAANBAAAAQQAAAEEAAAFBAAACQQAAAUEAAANBAAABQQAAA0EAAANBAAAAQQAAA0EAAABBAAACQQAAAUEAAANBAAACQQAAAEEAAANBAAADQQAAAUEAAAJBAAACQQAAA0EAAAJBAAAAQQAAA0EAAANBAAABQQAAAkEAAANBAAACQQAAAkEAAAFBAAACQQAAAUEAAAFBAAAAQQAAAEEAAABBAAABQQAAA0EAAANBAAABQQAAA0EAAABBAAADQQAAA0EAAANBAAAAQQAAAkEAAAFBAAAAQQAAAQ== + -1,2: + ind: -1,2 + tiles: QQAAA0EAAABBAAACQQAAA0EAAANBAAACQQAAAkEAAANBAAABQQAAA0EAAABBAAACQQAAAEEAAAJBAAADQQAAA0EAAANBAAADQQAAAkEAAAJBAAADQQAAAUEAAANBAAABQQAAAkEAAAJBAAAAQQAAAEEAAANBAAACQQAAAkEAAAFBAAABQQAAAkEAAABBAAAAQQAAAkEAAANBAAADQQAAA0EAAAJBAAAAQQAAAUEAAAFBAAABQQAAAUEAAAJBAAACQQAAAUEAAABBAAACQQAAAkEAAAJBAAAAQQAAAkEAAAJBAAAAQQAAAkEAAAJBAAABQQAAAkEAAABBAAADQQAAAEEAAABBAAAAQQAAAkEAAANBAAACQQAAAEEAAAFBAAADQQAAAEEAAAJBAAADQQAAA0EAAANBAAACQQAAAUEAAAFBAAADQQAAAEEAAAFBAAADQQAAAkEAAANBAAABQQAAA0EAAAJBAAAAQQAAAkEAAANBAAABQQAAAkEAAABBAAACQQAAA0EAAABBAAACQQAAAEEAAABBAAABQQAAAkEAAAJBAAABQQAAAEEAAANBAAADQQAAAUEAAABBAAAAQQAAAEEAAANBAAAAQQAAAkEAAAJBAAABQQAAAEEAAAJBAAABQQAAAkEAAABBAAACQQAAAUEAAANBAAADQQAAAkEAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 0,-1: + ind: 0,-1 + tiles: QQAAAEEAAAFBAAAAQQAAAkEAAABBAAADQQAAAkEAAANBAAAAQQAAAkEAAANBAAACQQAAAUEAAANBAAAAQQAAA0EAAANBAAACQQAAAkEAAABBAAAAQQAAAUEAAABBAAADQQAAAEEAAANBAAADQQAAA0EAAANBAAADQQAAAUEAAAJBAAAAQQAAA0EAAANBAAAAQQAAAkEAAAFBAAABQQAAAUEAAABBAAAAQQAAAEEAAANBAAABQQAAA0EAAAFBAAAAQQAAAUEAAAJBAAABQQAAAEEAAAJBAAAAQQAAAUEAAANBAAABQQAAAUEAAANBAAABQQAAA0EAAAJBAAABQQAAAEEAAAJBAAABQQAAA0EAAABBAAABQQAAAEEAAABBAAADQQAAAEEAAABBAAACQQAAAkEAAANBAAABQQAAAUEAAABBAAABQQAAAkEAAABBAAABQQAAA0EAAABBAAADQQAAAUEAAANBAAAAQQAAA0EAAANBAAABQQAAAEEAAAFBAAABQQAAAkEAAABBAAADQQAAAkEAAAFBAAACQQAAAUEAAAFBAAABQQAAAUEAAAFBAAAAQQAAAEEAAANBAAADQQAAA0EAAABAAAAAQAAAAEAAAABAAAAAQAAAAEEAAAFBAAABQQAAAEEAAAFBAAAAQQAAA0EAAABBAAACQQAAA0EAAAFAAAAAQAAAACsAAAMrAAAAKwAAAkAAAABAAAAAQQAAAkEAAAJBAAACQQAAAkEAAABBAAABQQAAA0EAAABBAAACQAAAACsAAAMrAAAAKwAAASsAAAIrAAACQAAAAEAAAABBAAAAQQAAA0EAAABBAAADQQAAAUEAAABBAAADQQAAACsAAAErAAAAKwAAAysAAAArAAABKwAAACsAAAJAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAArAAACKwAAASsAAAMrAAABKwAAASsAAAErAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAKwAAAisAAAErAAAAKwAAASsAAAMrAAADKwAAAkAAAABBAAABQQAAA0EAAAFBAAAAQQAAA0EAAABBAAADQQAAAEAAAAArAAADKwAAASsAAAErAAADKwAAAUAAAABAAAAAQQAAAUEAAANBAAABQQAAA0EAAABBAAABQQAAAEEAAANAAAAAQAAAACsAAAIrAAAAKwAAAkAAAABAAAAAQQAAAUEAAAFBAAACQQAAA0EAAAFBAAABQQAAAUEAAANBAAADQQAAAkAAAABAAAAAQAAAAEAAAABAAAAAQQAAA0EAAANBAAABQQAAAkEAAABBAAADQQAAAEEAAAJBAAABQQAAAQ== + 0,0: + ind: 0,0 + tiles: QQAAAkEAAAFBAAAAQQAAAkEAAABBAAACQQAAAUEAAAFBAAADQQAAAEEAAABBAAADQQAAAUEAAAFBAAAAQQAAAUEAAANBAAADQQAAA0EAAANBAAADQQAAAkEAAAJBAAACQQAAAUEAAAFBAAACQQAAA0EAAANBAAAAQQAAA0EAAABBAAABQQAAAEEAAABBAAADQQAAAkEAAAJBAAACQQAAAkEAAAJBAAAAQQAAAEEAAAFBAAAAQQAAAEEAAABBAAABQQAAAkEAAAFBAAACQQAAAUEAAANBAAAAQQAAAkEAAABBAAADQQAAAUEAAAJBAAABQQAAAkEAAAJBAAABQQAAAEEAAAFBAAADQQAAA0EAAAFBAAAAQQAAAEEAAANBAAAAQQAAA0EAAANBAAABQQAAAkEAAABBAAADQQAAAkEAAAJBAAABQQAAAkEAAAJBAAACQQAAAkEAAAFBAAADQQAAA0EAAABBAAABQQAAAkEAAABBAAADQQAAAEEAAAJBAAAAQQAAAUEAAAJBAAACQQAAAEEAAABBAAADQQAAAEEAAABBAAAAQQAAAEEAAAFBAAAAQQAAAEEAAABBAAABQQAAAkEAAAJBAAAAQQAAAkEAAAJBAAADQQAAAkEAAAFBAAACQQAAAEEAAANBAAACQQAAA0EAAANBAAABQQAAA0EAAAFBAAABQQAAAkEAAABBAAABQQAAAEEAAAJBAAABQQAAA0EAAANBAAADQQAAAkEAAABBAAABQQAAAEEAAANBAAABQQAAAUEAAANBAAADQQAAAkEAAABBAAABQQAAAEEAAAJBAAAAQQAAAUEAAANBAAABQQAAAEEAAABBAAABQQAAAEEAAABBAAAAQQAAA0EAAAFBAAABQQAAAEEAAABBAAADQQAAAkEAAAFBAAAAQQAAAUEAAABBAAACQQAAAEEAAAFBAAABQQAAA0EAAANBAAADQQAAAkEAAAJBAAAAQQAAA0EAAAFBAAACQQAAA0EAAANBAAADQQAAA0EAAANBAAADQQAAAEEAAANBAAADQQAAAkEAAANBAAABQQAAAUEAAABBAAABQQAAAkEAAAFBAAACQQAAAkEAAABBAAACQQAAAUEAAAFBAAACQQAAAEEAAAFBAAAAQQAAA0EAAAJBAAABQQAAAUEAAABBAAADQQAAAEEAAAFBAAACQQAAAUEAAAJBAAAAQQAAA0EAAANBAAACQQAAAkEAAANBAAADQQAAA0EAAAJBAAAAQQAAAkEAAANBAAACQQAAAEEAAANBAAADQQAAA0EAAAFBAAACQQAAAEEAAAFBAAABQQAAAEEAAAFBAAACQQAAAEEAAABBAAABQQAAA0EAAANBAAABQQAAAg== + 0,1: + ind: 0,1 + tiles: QQAAAUEAAANBAAAAQQAAAUEAAAJBAAABQQAAAUEAAABBAAAAQQAAA0EAAAFBAAADQQAAA0EAAAFBAAABQQAAA0EAAAFBAAABQQAAA0EAAABBAAADQQAAAEEAAAJBAAADQQAAAkEAAABBAAACQQAAAEEAAAFBAAACQQAAAEEAAABBAAABQQAAAUEAAABBAAAAQQAAAEEAAABBAAAAQQAAAEEAAABBAAACQQAAAUEAAANBAAAAQQAAAEEAAABBAAABQQAAAEEAAANBAAABQQAAA0EAAAJBAAADQQAAAEEAAABBAAACQQAAAEEAAANBAAACQQAAAUEAAABBAAAAQQAAAkEAAANBAAADQQAAAkEAAANBAAAAQQAAA0EAAAFBAAABQQAAAEEAAANBAAADQQAAAUEAAAFBAAADQQAAAUEAAAJBAAABQQAAAUEAAAFBAAACQQAAAUEAAANBAAACQQAAAUEAAAJBAAACQQAAAUEAAANBAAABQQAAA0EAAAFBAAABQAAAAEEAAAFAAAAAQQAAA0AAAABBAAADQAAAAEEAAAJBAAAAQAAAAEEAAAFAAAAAQQAAAkEAAABAAAAAQQAAAEEAAAFBAAABQAAAAEEAAANBAAADQAAAAEEAAANBAAADQQAAA0AAAABBAAADQQAAAUAAAABBAAACQQAAAEEAAAFBAAABQQAAAkEAAAJBAAABQQAAAEEAAABBAAACQQAAAEEAAABBAAABQQAAAkEAAABBAAAAQQAAAUEAAANBAAABQQAAA0EAAANBAAACQQAAAUEAAANBAAACQQAAAUEAAAJBAAACQQAAA0EAAABBAAADQQAAAkEAAAFBAAABQQAAA0EAAANBAAABQQAAAUEAAAFBAAABQQAAAUEAAANBAAAAQQAAAUEAAAJBAAACQQAAAEEAAANBAAACQQAAAkEAAABBAAAAQQAAA0EAAAJBAAABQQAAAEEAAAJBAAACQQAAA0EAAAFBAAAAQQAAA0EAAAFBAAABQQAAA0EAAABBAAAAQQAAAkEAAABBAAACQQAAAEEAAAFBAAAAQQAAA0EAAAJBAAADQQAAAkEAAANBAAACQQAAAUEAAAFBAAACQQAAA0EAAABBAAABQQAAAkEAAANBAAAAQQAAAUEAAAJBAAACQQAAAkEAAAFBAAAAQQAAAUEAAABBAAACQQAAAkEAAAJBAAAAQQAAAkEAAAFBAAABQQAAAEEAAABBAAADQQAAAUEAAAFBAAABQQAAAUEAAAJBAAABQQAAA0EAAABBAAABQQAAAUEAAAJBAAADQQAAAkEAAABBAAACQQAAAEEAAAFBAAAAQQAAAUEAAABBAAABQQAAA0EAAANBAAACQQAAAQ== + 0,2: + ind: 0,2 + tiles: QQAAA0EAAAFBAAABQQAAAkEAAAFBAAACQQAAAkEAAAFBAAABQQAAAkEAAAJBAAAAQQAAAEEAAANBAAACQQAAAkEAAAJBAAACQQAAAkEAAAJBAAACQQAAAkEAAABBAAAAQQAAAUEAAAFBAAAAQQAAAkEAAAJBAAADQQAAAkEAAABBAAABQQAAA0EAAAFBAAACQQAAAUEAAAFBAAABQQAAA0EAAANBAAACQQAAA0EAAAJBAAAAQQAAAEEAAABBAAAAQQAAAkEAAABBAAABQQAAAkEAAANBAAAAQQAAAkEAAAFBAAADQQAAAkEAAANBAAAAQQAAAEEAAAFBAAACQQAAAEEAAAJBAAACQQAAA0EAAANBAAABQQAAAUEAAAFBAAABQQAAAUEAAANBAAAAQQAAAEEAAABBAAABQQAAAUEAAANBAAACQQAAA0EAAAFBAAACQQAAA0EAAAJBAAAAQQAAA0EAAAJBAAADQQAAA0EAAAJBAAACQQAAAkEAAANBAAADQQAAA0EAAANBAAACQQAAA0EAAAFBAAABQQAAAkEAAAFBAAADQQAAAUEAAABBAAACQQAAAkEAAABBAAAAQQAAAUEAAAJBAAAAQQAAA0EAAAFBAAADQQAAAEEAAANBAAABQQAAAEEAAANBAAACQQAAAEEAAAFBAAACQQAAA0EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 1,-1: + ind: 1,-1 + tiles: QQAAAUEAAAFBAAAAQQAAA0EAAAFBAAABQQAAA0EAAAE1AAABNQAAADUAAAI1AAADNQAAATUAAAI1AAAANQAAAkEAAABBAAAAQQAAAUEAAAJBAAADQQAAAUEAAABBAAADQQAAAkEAAAJBAAAANQAAATUAAAI1AAADNQAAAzUAAABBAAADQQAAAUEAAAFBAAADQQAAA0EAAAFBAAABQQAAA0EAAAJBAAACNQAAAzUAAAA1AAACNQAAADUAAAE1AAAAQQAAAEEAAAJBAAAAQQAAAkEAAANBAAACQQAAAEEAAAJBAAACQQAAATUAAAI1AAABNQAAAzUAAAA1AAADNQAAAEEAAAJBAAAAQQAAAkEAAANBAAADQQAAAkEAAABBAAADQQAAAjUAAAM1AAAANQAAATUAAAM1AAADNQAAATUAAANBAAACQQAAAEEAAABBAAAAQQAAA0EAAABBAAADQQAAAEEAAABBAAADQQAAAUEAAAE1AAABNQAAATUAAAE1AAACQQAAAkEAAAFBAAACQQAAAkEAAABBAAAAQQAAAkEAAAJBAAAAQQAAAUEAAABBAAACNQAAADUAAAE1AAABNQAAA0EAAAFBAAAAQQAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAEEAAABBAAACNQAAADUAAAE1AAADNQAAAzUAAAFBAAACQQAAAUEAAAEEAAAABAAAAAQAAAAEAAAABAAAAAQAAABBAAABNQAAAzUAAAI1AAABNQAAAjUAAAA1AAABQQAAAEEAAABBAAADBAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAQQAAAEEAAAE1AAACNQAAAzUAAAA1AAABNQAAA0AAAABAAAAAQAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAEEAAANBAAAANQAAADUAAAM1AAACNQAAAjUAAANAAAAAQAAAAEAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAABBAAADQQAAAzUAAAM1AAADNQAAAzUAAAA1AAAAQQAAAEEAAABBAAABBAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAQQAAAkEAAAM1AAACNQAAAzUAAAA1AAABNQAAAUEAAAFBAAABQQAAAgQAAAAEAAAABAAAAAQAAAAEAAAABAAAAEEAAAFBAAADNQAAAjUAAAE1AAAANQAAAzUAAAJBAAAAQQAAAkEAAAMEAAAABAAAAAQAAAAEAAAABAAAAAQAAABBAAAANQAAATUAAAA1AAABNQAAAjUAAAI1AAAAQQAAAEEAAAFBAAABBAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAQQAAADUAAAM1AAAANQAAATUAAAE1AAADNQAAAQ== + 1,0: + ind: 1,0 + tiles: QQAAAEEAAAJBAAACBAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAQQAAADUAAAA1AAABNQAAADUAAAI1AAADNQAAAEEAAABBAAAAQQAAAgQAAAAEAAAABAAAAAQAAAAEAAAABAAAAEEAAANBAAACNQAAADUAAAI1AAACNQAAATUAAAJBAAAAQQAAAUEAAAIEAAAABAAAAAQAAAAEAAAABAAAAAQAAABBAAADQQAAAjUAAAA1AAAANQAAATUAAAE1AAADQQAAAkEAAAFBAAABQQAAA0EAAABBAAAAQQAAAEEAAABBAAAAQQAAAEEAAAE1AAADNQAAATUAAAM1AAABNQAAA0EAAAFBAAACQQAAAEEAAABBAAABQQAAAUEAAAJBAAAAQQAAAkEAAAM1AAACNQAAATUAAAE1AAACNQAAAzUAAAFBAAABQQAAAEEAAABBAAAAQQAAAkEAAAFBAAABQQAAA0EAAAFBAAABNQAAAjUAAAM1AAACNQAAATUAAAA1AAACQQAAAEEAAAFBAAAAQQAAAkEAAAFBAAABNQAAAzUAAAM1AAABNQAAAzUAAAA1AAACNQAAADUAAAM1AAAANQAAAkEAAAFBAAABQQAAAUEAAANBAAACQQAAA0EAAAM1AAABNQAAADUAAAA1AAACNQAAATUAAAI1AAAANQAAATUAAAFBAAACQQAAA0EAAAFBAAADQQAAAkEAAABBAAADQQAAAEEAAAE1AAACNQAAADUAAAM1AAABNQAAATUAAAM1AAABQQAAAEEAAAJBAAABQQAAA0EAAAFBAAACQQAAAUEAAAI1AAACNQAAATUAAAA1AAACNQAAAjUAAAA1AAAANQAAAUEAAABBAAACQQAAAUEAAANBAAACQQAAAEEAAAE1AAADNQAAAjUAAAA1AAADNQAAAjUAAAE1AAACNQAAADUAAABBAAAAQQAAAUEAAAFBAAADQQAAAkEAAAJBAAADNQAAAjUAAAA1AAAANQAAADUAAAI1AAAANQAAAzUAAAE1AAABQQAAAEEAAAFBAAAAQQAAAUEAAAM1AAAANQAAADUAAAI1AAACNQAAATUAAAI1AAADNQAAATUAAAI1AAADNQAAAkEAAAFBAAABQQAAAkEAAANBAAACQQAAADUAAAM1AAACNQAAAzUAAAM1AAAANQAAAjUAAAI1AAADNQAAAzUAAAFBAAABQQAAA0EAAABBAAADQQAAAjUAAAI1AAAANQAAATUAAAA1AAADNQAAAjUAAAM1AAADNQAAATUAAAI1AAADQQAAAEEAAAJBAAAAQQAAAkEAAAJBAAADNQAAADUAAAE1AAACNQAAAzUAAAI1AAABNQAAATUAAAE1AAADNQAAAg== + 1,1: + ind: 1,1 + tiles: QQAAAkEAAANBAAADQQAAAUEAAABBAAACNQAAAjUAAAI1AAADNQAAADUAAAM1AAACNQAAADUAAAE1AAACNQAAAUEAAAFBAAACQQAAA0EAAAJBAAAAQQAAAjUAAAA1AAADNQAAAjUAAAI1AAADNQAAAzUAAAI1AAADNQAAADUAAABBAAAAQQAAAEEAAAA1AAADNQAAAjUAAAE1AAABNQAAAjUAAAE1AAACNQAAATUAAAA1AAADNQAAATUAAAA1AAADQQAAAEEAAAFBAAACNQAAAjUAAAI1AAAANQAAAzUAAAI1AAABNQAAATUAAAM1AAACNQAAADUAAAE1AAAANQAAAUEAAANBAAAAQQAAAkEAAAE1AAAANQAAAzUAAAMEAAAABAAAAAQAAAAEAAAABAAAAAQAAAA1AAADNQAAAjUAAAFBAAACQQAAAjUAAAM1AAAANQAAAjUAAAM1AAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAANQAAADUAAAI1AAADQQAAAkEAAABAAAAANQAAAEAAAAA1AAADNQAAAQQAAAAEAAAABAAAAAQAAAAEAAAABAAAADUAAAI1AAACNQAAA0EAAANBAAABQQAAATUAAANAAAAANQAAAjUAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAA1AAABNQAAATUAAAFBAAABQQAAAkEAAAFBAAABNQAAADUAAAM1AAABBAAAAAQAAAAEAAAABAAAAAQAAAAEAAAANQAAAjUAAAI1AAACQQAAAEEAAANBAAACQQAAAzUAAAA1AAABNQAAAwQAAAAEAAAABAAAAAQAAAAEAAAABAAAADUAAAI1AAADNQAAAUEAAABBAAABQQAAATUAAAI1AAACNQAAAjUAAAM1AAACNQAAATUAAAE1AAACNQAAAjUAAAI1AAADNQAAAzUAAABBAAAAQQAAAzUAAAI1AAAANQAAATUAAAE1AAAANQAAATUAAAA1AAADNQAAATUAAAI1AAABNQAAATUAAAI1AAACQQAAAEEAAAJBAAACQQAAA0EAAAA1AAAANQAAADUAAAI1AAADNQAAAzUAAAI1AAABNQAAADUAAAA1AAAANQAAAUEAAANBAAAAQQAAAkEAAAJBAAABNQAAAjUAAAA1AAACNQAAADUAAAE1AAACNQAAATUAAAE1AAADNQAAAjUAAABBAAABQQAAAEEAAABBAAACQQAAA0EAAAM1AAACNQAAATUAAAE1AAAANQAAADUAAAI1AAABNQAAADUAAAM1AAABQQAAA0EAAANBAAACQQAAAkEAAAA1AAAANQAAADUAAAA1AAAANQAAAzUAAAA1AAADNQAAAzUAAAE1AAACNQAAAA== + 1,2: + ind: 1,2 + tiles: QQAAAEEAAAFBAAABQQAAA0EAAAM1AAABNQAAAzUAAAA1AAABNQAAATUAAAA1AAABNQAAAjUAAAA1AAAANQAAAEEAAAJBAAADQQAAAkEAAAFBAAACQQAAAEEAAAFBAAABNQAAAjUAAAM1AAACNQAAADUAAAA1AAACNQAAADUAAAFBAAACQQAAAUEAAAJBAAABQQAAA0EAAANBAAABQQAAAUEAAANBAAAANQAAATUAAAA1AAACNQAAATUAAAA1AAACQQAAAEEAAAFBAAAAQQAAAkEAAAJBAAAAQQAAA0EAAANBAAADNQAAAzUAAAA1AAABNQAAADUAAAM1AAADNQAAAkEAAAJBAAACQQAAAEEAAAFBAAAAQQAAA0EAAABBAAAANQAAAzUAAAI1AAADNQAAAzUAAAA1AAACNQAAAzUAAAJBAAACQQAAAkEAAABBAAAAQQAAAUEAAABBAAAAQQAAATUAAAA1AAAANQAAATUAAAI1AAACNQAAAzUAAAA1AAABQQAAAEEAAAJBAAABQQAAA0EAAANBAAABQQAAA0EAAAJBAAADNQAAATUAAAE1AAACNQAAAjUAAAE1AAADNQAAAUEAAABBAAACQQAAA0EAAAFBAAABQQAAAkEAAAFBAAABNQAAADUAAAM1AAAANQAAAzUAAAI1AAACNQAAAzUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 2,-1: + ind: 2,-1 + tiles: NQAAATUAAAM1AAADNQAAADUAAAE1AAABNQAAAzUAAAI1AAADNQAAAjUAAAA1AAAANQAAADUAAAE1AAACNQAAAzUAAAM1AAAANQAAADUAAAA1AAADNQAAAzUAAAM1AAABNQAAAjUAAAM1AAABNQAAAzUAAAM1AAADNQAAAzUAAAA1AAACNQAAADUAAAI1AAADNQAAATUAAAI1AAADNQAAAzUAAAI1AAACNQAAAjUAAAM1AAAANQAAADUAAAA1AAABNQAAATUAAAA1AAACNQAAATUAAAM1AAAANQAAADUAAAE1AAAANQAAADUAAAM1AAABNQAAADUAAAE1AAADNQAAAzUAAAM1AAABNQAAAjUAAAM1AAABNQAAAjUAAAM1AAABNQAAAzUAAAE1AAABNQAAATUAAAM1AAACNQAAADUAAAE1AAAANQAAAzUAAAI1AAADNQAAADUAAAE1AAADNQAAAjUAAAI1AAABNQAAAjUAAAI1AAADNQAAATUAAAM1AAADNQAAAjUAAAA1AAADNQAAATUAAAE1AAADNQAAATUAAAI1AAABNQAAADUAAAA1AAABNQAAAzUAAAA1AAACNQAAAzUAAAA1AAADNQAAAzUAAAA1AAABNQAAAjUAAAI1AAACNQAAAzUAAAE1AAABNQAAADUAAAA1AAADNQAAAzUAAAI1AAAANQAAATUAAAA1AAACNQAAADUAAAM1AAACNQAAAzUAAAA1AAADNQAAATUAAAI1AAACNQAAATUAAAA1AAADNQAAATUAAAM1AAACNQAAAzUAAAE1AAABNQAAADUAAAA1AAABNQAAAzUAAAM1AAACNQAAADUAAAE1AAAANQAAAjUAAAE1AAACNQAAAjUAAAM1AAAANQAAADUAAAA1AAACNQAAAjUAAAI1AAACNQAAADUAAAE1AAAANQAAADUAAAE1AAACNQAAATUAAAE1AAAANQAAAjUAAAI1AAABNQAAAzUAAAA1AAAANQAAATUAAAE1AAADNQAAAjUAAAA1AAADNQAAADUAAAA1AAABNQAAADUAAAE1AAADNQAAADUAAAI1AAADNQAAADUAAAM1AAADNQAAADUAAAE1AAABNQAAAjUAAAI1AAAANQAAATUAAAM1AAAANQAAAjUAAAA1AAACNQAAAjUAAAM1AAAANQAAAjUAAAE1AAAANQAAAjUAAAE1AAACNQAAADUAAAM1AAADNQAAAzUAAAM1AAAANQAAAzUAAAI1AAADNQAAADUAAAI1AAADNQAAAzUAAAE1AAAANQAAATUAAAM1AAADNQAAAjUAAAA1AAADNQAAADUAAAI1AAABNQAAAzUAAAI1AAAANQAAAzUAAAI1AAAANQAAAg== + 2,0: + ind: 2,0 + tiles: NQAAATUAAAA1AAAANQAAADUAAAM1AAADNQAAADUAAAE1AAACNQAAAjUAAAM1AAADNQAAAjUAAAM1AAAANQAAAjUAAAM1AAACNQAAATUAAAE1AAADNQAAATUAAAA1AAAANQAAAzUAAAA1AAACNQAAAjUAAAM1AAACNQAAAjUAAAE1AAACNQAAAzUAAAI1AAACNQAAATUAAAA1AAAANQAAADUAAAE1AAABNQAAAzUAAAE1AAAANQAAAzUAAAI1AAACNQAAATUAAAM1AAADNQAAATUAAAI1AAABNQAAATUAAAI1AAADNQAAADUAAAM1AAADNQAAAzUAAAI1AAAANQAAAzUAAAM1AAAANQAAAjUAAAA1AAACNQAAAjUAAAE1AAAANQAAAjUAAAE1AAAANQAAAzUAAAE1AAADNQAAATUAAAM1AAABNQAAAjUAAAI1AAABNQAAAzUAAAE1AAACNQAAATUAAAI1AAABNQAAATUAAAI1AAADNQAAADUAAAM1AAACNQAAAzUAAAM1AAADNQAAATUAAAE1AAACNQAAADUAAAM1AAABNQAAADUAAAM1AAABNQAAAzUAAAA1AAAANQAAADUAAAM1AAAANQAAADUAAAI1AAABNQAAAzUAAAE1AAAANQAAAjUAAAE1AAABNQAAADUAAAA1AAADNQAAADUAAAE1AAACNQAAADUAAAM1AAABNQAAAjUAAAE1AAAANQAAATUAAAM1AAACNQAAAzUAAAA1AAAANQAAAzUAAAI1AAAANQAAAjUAAAE1AAADNQAAATUAAAA1AAAANQAAADUAAAM1AAAANQAAATUAAAE1AAACNQAAATUAAAI1AAADNQAAAzUAAAA1AAAANQAAATUAAAM1AAACNQAAAjUAAAA1AAABNQAAAzUAAAI1AAACNQAAADUAAAA1AAAANQAAATUAAAM1AAADNQAAATUAAAA1AAADNQAAADUAAAI1AAADNQAAAzUAAAI1AAABNQAAAjUAAAA1AAABNQAAATUAAAE1AAABNQAAATUAAAA1AAAANQAAAzUAAAE1AAAANQAAAjUAAAI1AAABNQAAADUAAAE1AAADNQAAAzUAAAA1AAADNQAAAzUAAAM1AAAANQAAADUAAAA1AAACNQAAADUAAAI1AAADNQAAAzUAAAM1AAACNQAAADUAAAA1AAAANQAAATUAAAI1AAABNQAAATUAAAE1AAAANQAAATUAAAA1AAACNQAAAzUAAAM1AAACNQAAADUAAAE1AAABNQAAADUAAAI1AAACNQAAAjUAAAA1AAACNQAAATUAAAM1AAADNQAAAjUAAAM1AAACNQAAADUAAAE1AAADNQAAATUAAAM1AAABNQAAAg== + 2,1: + ind: 2,1 + tiles: NQAAATUAAAA1AAACNQAAAzUAAAA1AAADNQAAADUAAAM1AAAANQAAAzUAAAM1AAACNQAAADUAAAE1AAADNQAAAjUAAAA1AAACNQAAATUAAAA1AAABNQAAAjUAAAA1AAAANQAAAjUAAAA1AAACNQAAAjUAAAA1AAABNQAAATUAAAI1AAABNQAAADUAAAM1AAADNQAAAjUAAAM1AAACNQAAAjUAAAE1AAAANQAAAjUAAAI1AAABNQAAATUAAAM1AAACNQAAATUAAAI1AAACNQAAAjUAAAE1AAACNQAAADUAAAM1AAABNQAAATUAAAM1AAADNQAAADUAAAA1AAAANQAAAzUAAAE1AAACNQAAAjUAAAM1AAADNQAAATUAAAI1AAABNQAAADUAAAA1AAAANQAAADUAAAE1AAACNQAAATUAAAA1AAABNQAAADUAAAA1AAADNQAAAjUAAAI1AAACNQAAAjUAAAI1AAACNQAAAjUAAAI1AAAANQAAAzUAAAM1AAACNQAAATUAAAI1AAADNQAAAzUAAAM1AAADNQAAADUAAAI1AAAANQAAAzUAAAM1AAACNQAAADUAAAM1AAABNQAAAjUAAAE1AAABNQAAAzUAAAA1AAABNQAAADUAAAA1AAAANQAAADUAAAI1AAABNQAAATUAAAM1AAADNQAAAjUAAAI1AAADNQAAAjUAAAA1AAAANQAAAzUAAAA1AAAANQAAATUAAAE1AAAANQAAAzUAAAM1AAAANQAAAzUAAAI1AAADNQAAAjUAAAE1AAACNQAAAzUAAAM1AAADNQAAAjUAAAI1AAABNQAAATUAAAI1AAADNQAAAzUAAAI1AAADNQAAAjUAAAA1AAADNQAAATUAAAM1AAABNQAAATUAAAA1AAACNQAAADUAAAM1AAABNQAAAzUAAAE1AAABNQAAAzUAAAM1AAABNQAAAjUAAAE1AAADNQAAADUAAAI1AAABNQAAAzUAAAI1AAADNQAAAzUAAAM1AAACNQAAAzUAAAA1AAAANQAAAjUAAAM1AAADNQAAATUAAAE1AAADNQAAADUAAAM1AAADNQAAATUAAAM1AAAANQAAATUAAAM1AAAANQAAATUAAAE1AAADNQAAAzUAAAA1AAABNQAAAjUAAAM1AAABNQAAAjUAAAE1AAABNQAAAjUAAAA1AAACNQAAAzUAAAI1AAADNQAAAzUAAAA1AAABNQAAATUAAAA1AAACNQAAAjUAAAM1AAADNQAAAzUAAAA1AAACNQAAAzUAAAA1AAAANQAAADUAAAE1AAAANQAAADUAAAE1AAAANQAAATUAAAI1AAABNQAAATUAAAI1AAABNQAAAzUAAAA1AAACNQAAAw== + 2,2: + ind: 2,2 + tiles: NQAAAjUAAAA1AAAANQAAAzUAAAA1AAAANQAAAjUAAAM1AAADNQAAAjUAAAM1AAACNQAAAzUAAAI1AAADNQAAATUAAAA1AAABNQAAAjUAAAE1AAACNQAAAjUAAAA1AAABNQAAADUAAAE1AAABNQAAADUAAAE1AAACNQAAAjUAAAA1AAABNQAAAzUAAAA1AAAANQAAATUAAAI1AAAANQAAATUAAAE1AAACNQAAADUAAAE1AAABNQAAAjUAAAE1AAAANQAAAzUAAAA1AAACNQAAATUAAAE1AAABNQAAAzUAAAA1AAABNQAAAjUAAAM1AAADNQAAATUAAAA1AAADNQAAAzUAAAI1AAADNQAAATUAAAM1AAADNQAAATUAAAM1AAADNQAAAzUAAAI1AAADNQAAAjUAAAA1AAABNQAAAzUAAAI1AAABNQAAAzUAAAM1AAAANQAAAjUAAAM1AAABNQAAATUAAAE1AAACNQAAADUAAAA1AAABNQAAAjUAAAA1AAABNQAAAjUAAAA1AAAANQAAADUAAAM1AAACNQAAATUAAAM1AAADNQAAAjUAAAI1AAACNQAAAzUAAAE1AAACNQAAAzUAAAI1AAAANQAAAzUAAAM1AAABNQAAADUAAAM1AAADNQAAAjUAAAI1AAABNQAAAjUAAAM1AAACNQAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 3,-1: + ind: 3,-1 + tiles: NQAAATUAAAI1AAAANQAAAzUAAAM1AAACNQAAAzUAAAI1AAACNQAAAzUAAAM1AAABNQAAATUAAAM1AAACNQAAAjUAAAM1AAAANQAAAjUAAAA1AAABNQAAAzUAAAE1AAABNQAAAzUAAAA1AAADNQAAAjUAAAE1AAACNQAAADUAAAM1AAACNQAAAjUAAAA1AAACNQAAADUAAAA1AAAANQAAAzUAAAI1AAADNQAAATUAAAI1AAAANQAAADUAAAM1AAADNQAAADUAAAM1AAADNQAAAzUAAAM1AAADNQAAAjUAAAE1AAADNQAAATUAAAA1AAACNQAAAjUAAAA1AAACNQAAAjUAAAI1AAACNQAAADUAAAE1AAACNQAAATUAAAM1AAABNQAAATUAAAM1AAACNQAAADUAAAM1AAADNQAAAjUAAAM1AAACNQAAADUAAAM1AAADNQAAAjUAAAE1AAAANQAAAzUAAAM1AAACNQAAAjUAAAE1AAACNQAAAjUAAAI1AAABNQAAATUAAAA1AAACNQAAAzUAAAM1AAADNQAAATUAAAE1AAACNQAAAjUAAAE1AAAANQAAATUAAAI1AAABNQAAATUAAAA1AAAANQAAATUAAAI1AAADNQAAAzUAAAM1AAABNQAAAjUAAAM1AAACNQAAAjUAAAA1AAADNQAAAzUAAAA1AAACNQAAATUAAAA1AAABNQAAADUAAAM1AAACNQAAAjUAAAI1AAAANQAAAjUAAAA1AAADNQAAAjUAAAM1AAAANQAAADUAAAI1AAACNQAAAzUAAAE1AAACNQAAAjUAAAM1AAAANQAAATUAAAE1AAABNQAAAzUAAAA1AAAANQAAADUAAAM1AAABNQAAATUAAAM1AAABNQAAAzUAAAE1AAADNQAAATUAAAE1AAAANQAAATUAAAE1AAABNQAAAjUAAAE1AAADNQAAATUAAAM1AAABNQAAATUAAAI1AAABNQAAAzUAAAI1AAACNQAAAjUAAAE1AAAANQAAAjUAAAI1AAAANQAAATUAAAE1AAACNQAAAjUAAAI1AAACNQAAADUAAAA1AAADNQAAATUAAAM1AAACNQAAAjUAAAM1AAAANQAAAjUAAAM1AAACNQAAAzUAAAE1AAABNQAAAzUAAAI1AAADNQAAADUAAAM1AAACNQAAAjUAAAE1AAADNQAAADUAAAM1AAABNQAAAjUAAAA1AAAANQAAAjUAAAA1AAADNQAAAjUAAAM1AAAANQAAATUAAAI1AAABNQAAAzUAAAA1AAAANQAAADUAAAI1AAADNQAAADUAAAE1AAAANQAAAzUAAAE1AAACNQAAAzUAAAE1AAAANQAAADUAAAA1AAACNQAAAw== + 3,0: + ind: 3,0 + tiles: NQAAADUAAAM1AAAANQAAADUAAAA1AAAANQAAADUAAAE1AAAANQAAATUAAAM1AAABNQAAAzUAAAI1AAAANQAAATUAAAM1AAABNQAAATUAAAA1AAABNQAAAzUAAAI1AAACNQAAAjUAAAA1AAABNQAAAjUAAAM1AAACNQAAAzUAAAM1AAABNQAAAjUAAAA1AAACNQAAAjUAAAE1AAADNQAAATUAAAM1AAACNQAAATUAAAE1AAADNQAAATUAAAE1AAACNQAAATUAAAM1AAACNQAAAzUAAAM1AAAANQAAATUAAAI1AAAANQAAAzUAAAE1AAACNQAAAzUAAAA1AAABNQAAAzUAAAE1AAABNQAAATUAAAI1AAADNQAAATUAAAI1AAACNQAAADUAAAA1AAADNQAAATUAAAI1AAAANQAAAzUAAAA1AAADNQAAAjUAAAA1AAADNQAAATUAAAA1AAADNQAAAjUAAAM1AAAANQAAATUAAAA1AAADNQAAADUAAAE1AAADNQAAATUAAAM1AAAANQAAADUAAAM1AAABNQAAADUAAAE1AAACNQAAAjUAAAI1AAAANQAAATUAAAI1AAABNQAAADUAAAI1AAAANQAAADUAAAI1AAADNQAAADUAAAA1AAADNQAAAzUAAAM1AAADNQAAADUAAAE1AAADNQAAAjUAAAE1AAABNQAAAjUAAAI1AAABNQAAAzUAAAE1AAADNQAAADUAAAM1AAAANQAAATUAAAE1AAADNQAAADUAAAE1AAABNQAAAjUAAAE1AAAANQAAADUAAAM1AAABNQAAAjUAAAM1AAADNQAAAjUAAAM1AAACNQAAAjUAAAI1AAADNQAAAzUAAAM1AAADNQAAATUAAAA1AAAANQAAATUAAAE1AAAANQAAAjUAAAI1AAAANQAAAzUAAAA1AAABNQAAAjUAAAA1AAABNQAAAjUAAAA1AAACNQAAAzUAAAA1AAACNQAAAjUAAAM1AAADNQAAADUAAAM1AAAANQAAATUAAAA1AAACNQAAAzUAAAM1AAACNQAAAzUAAAA1AAACNQAAATUAAAE1AAABNQAAATUAAAA1AAACNQAAADUAAAA1AAADNQAAAjUAAAA1AAACNQAAADUAAAA1AAADNQAAAzUAAAI1AAACNQAAADUAAAE1AAABNQAAATUAAAI1AAAANQAAADUAAAA1AAAANQAAATUAAAI1AAACNQAAAjUAAAE1AAABNQAAADUAAAI1AAACNQAAADUAAAE1AAABNQAAAzUAAAE1AAAANQAAAjUAAAA1AAADNQAAADUAAAI1AAABNQAAADUAAAE1AAABNQAAADUAAAA1AAADNQAAADUAAAM1AAACNQAAAg== + 3,1: + ind: 3,1 + tiles: NQAAAjUAAAM1AAADNQAAAzUAAAE1AAAANQAAAzUAAAE1AAAANQAAATUAAAI1AAACNQAAAjUAAAA1AAACNQAAATUAAAI1AAABNQAAADUAAAM1AAAANQAAAjUAAAE1AAACNQAAADUAAAE1AAADNQAAATUAAAA1AAAANQAAAjUAAAM1AAACNQAAAjUAAAA1AAADNQAAAjUAAAI1AAABNQAAATUAAAA1AAABNQAAADUAAAI1AAABNQAAADUAAAE1AAAANQAAADUAAAA1AAADNQAAAjUAAAI1AAADNQAAAjUAAAE1AAACNQAAADUAAAM1AAAANQAAADUAAAM1AAABNQAAAzUAAAM1AAAANQAAAjUAAAE1AAABNQAAAjUAAAE1AAADNQAAAjUAAAI1AAABNQAAAzUAAAA1AAADNQAAAjUAAAE1AAAANQAAAzUAAAI1AAAANQAAAzUAAAI1AAAANQAAADUAAAE1AAADNQAAADUAAAI1AAAANQAAADUAAAA1AAACNQAAATUAAAE1AAAANQAAATUAAAM1AAAANQAAAjUAAAA1AAACNQAAAzUAAAM1AAADNQAAADUAAAE1AAADNQAAAjUAAAA1AAAANQAAADUAAAM1AAACNQAAATUAAAI1AAABNQAAADUAAAA1AAACNQAAAjUAAAI1AAABNQAAAjUAAAE1AAABNQAAADUAAAM1AAADNQAAAzUAAAI1AAACNQAAADUAAAI1AAACNQAAAjUAAAA1AAADNQAAADUAAAA1AAACNQAAADUAAAE1AAAANQAAAzUAAAI1AAAANQAAAjUAAAI1AAAANQAAAzUAAAE1AAADNQAAADUAAAE1AAACNQAAATUAAAM1AAAANQAAADUAAAM1AAABNQAAADUAAAI1AAABNQAAADUAAAI1AAAANQAAAjUAAAA1AAACNQAAADUAAAA1AAADNQAAAjUAAAM1AAADNQAAAjUAAAI1AAACNQAAAjUAAAA1AAAANQAAAjUAAAE1AAACNQAAADUAAAM1AAABNQAAAjUAAAA1AAACNQAAAjUAAAI1AAABNQAAAjUAAAI1AAAANQAAATUAAAE1AAADNQAAATUAAAE1AAACNQAAAjUAAAI1AAACNQAAAzUAAAM1AAAANQAAAzUAAAI1AAACNQAAATUAAAA1AAACNQAAATUAAAE1AAABNQAAAzUAAAA1AAABNQAAATUAAAA1AAABNQAAAjUAAAA1AAADNQAAATUAAAI1AAADNQAAADUAAAM1AAAANQAAAjUAAAA1AAABNQAAATUAAAM1AAADNQAAAjUAAAM1AAAANQAAADUAAAE1AAABNQAAAjUAAAA1AAAANQAAAzUAAAI1AAABNQAAAg== + 3,2: + ind: 3,2 + tiles: NQAAAzUAAAI1AAADNQAAATUAAAI1AAAANQAAAzUAAAA1AAAANQAAATUAAAI1AAADNQAAAzUAAAE1AAACNQAAAzUAAAM1AAAANQAAAzUAAAI1AAADNQAAAzUAAAI1AAADNQAAADUAAAI1AAAANQAAATUAAAE1AAADNQAAAjUAAAM1AAABNQAAAzUAAAI1AAADNQAAATUAAAI1AAACNQAAAzUAAAI1AAADNQAAATUAAAE1AAAANQAAADUAAAE1AAABNQAAAzUAAAE1AAADNQAAATUAAAI1AAACNQAAAjUAAAE1AAADNQAAAjUAAAA1AAAANQAAAjUAAAI1AAACNQAAADUAAAI1AAACNQAAADUAAAE1AAADNQAAAzUAAAE1AAABNQAAADUAAAA1AAACNQAAAjUAAAM1AAADNQAAATUAAAE1AAAANQAAATUAAAA1AAAANQAAAjUAAAM1AAACNQAAAzUAAAI1AAACNQAAATUAAAE1AAAANQAAATUAAAI1AAADNQAAATUAAAI1AAACNQAAAzUAAAI1AAACNQAAAjUAAAA1AAADNQAAAzUAAAE1AAADNQAAAjUAAAM1AAADNQAAATUAAAE1AAADNQAAAzUAAAI1AAADNQAAATUAAAI1AAABNQAAADUAAAM1AAAANQAAADUAAAA1AAACNQAAATUAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -2,-1: + ind: -2,-1 + tiles: QQAAAkAAAABAAAAAQQAAAgQAAAAEAAAABAAAAGgAAAAEAAAABAAAAAQAAABBAAADQQAAAj0AAAA9AAAAPQAAAEEAAANAAAAAQAAAAEEAAAEEAAAABAAAAAQAAABoAAAABAAAAAQAAAAEAAAAQQAAA0EAAABBAAADQQAAAUEAAAFBAAAAQAAAAEAAAABBAAADBAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAEEAAAFBAAADQQAAA0EAAABBAAAAQQAAA0AAAABAAAAAQQAAAEEAAAJBAAAAQQAAAkEAAANBAAADQQAAAkEAAANBAAACQQAAAUEAAAFBAAAAQQAAAkEAAAFAAAAAQAAAAEEAAABBAAABQQAAAkEAAABBAAAAQQAAAEEAAANBAAACQQAAAEEAAANBAAADQQAAAUEAAABBAAADQAAAAEAAAABBAAAAQQAAAUEAAAJBAAAAQQAAAkEAAABBAAAAQQAAAEEAAANBAAACQQAAAUEAAAJBAAADQQAAA0AAAABAAAAAQQAAAkEAAABBAAAAQQAAAUEAAANBAAADQQAAA0EAAABBAAADQQAAAkEAAANBAAAAQQAAA0EAAAJAAAAAQAAAAEEAAANBAAABQQAAA0EAAAJBAAAAQQAAAkEAAABBAAACQQAAAUEAAAJBAAAAQQAAA0EAAAFAAAAAQAAAAEAAAABAAAAAQQAAAkEAAABBAAABQQAAAUEAAANBAAADQQAAAEEAAABBAAABQQAAA0EAAANBAAABQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEEAAANBAAAAQQAAAEEAAAFBAAAAQQAAA0EAAAJBAAADQQAAAkAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQQAAA0AAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQQAAAEAAAABAAAAAQAAAAEEAAAFBAAACQQAAA0EAAABBAAACQQAAAkEAAAFBAAAAQQAAAEEAAANBAAAAQQAAA0EAAAFAAAAAQAAAAEAAAABBAAAAQQAAAUEAAANBAAADQQAAA0EAAABBAAABQQAAA0EAAABBAAADQQAAAkEAAAMFAAAAAgAAAAIAAAACAAAABQAAAAUAAAAFAAAAQQAAAUEAAABBAAAAQQAAAUEAAAJBAAABQQAAA0EAAANBAAADBQAAAAUAAAADAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAACQQAAAkEAAABBAAABQQAAA0EAAANBAAAAQQAAAw== + -2,0: + ind: -2,0 + tiles: BQAAAAUAAAADAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEEAAAFBAAAAQQAAAwUAAAAFAAAAAwAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAADkAAAA5AAAAOQAAAAUAAABBAAADQQAAAUAAAAAFAAAABQAAAAMAAAAFAAAABQAAAAUAAAAFAAAABQAAADkAAAA5AAAAOQAAADkAAAAFAAAAQQAAAUEAAABAAAAABQAAAAUAAAADAAAABQAAAAUAAAAFAAAABQAAAAUAAAA5AAAAOQAAADkAAAA5AAAABQAAAEEAAABBAAADQAAAAAUAAAAFAAAAAwAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAADkAAAA5AAAAOQAAAAUAAAA9AAAAPQAAAD0AAAAFAAAABQAAAAMAAAAFAAAABQAAAAUAAAAFAAAABQAAAAIAAAA5AAAAOQAAADkAAAAFAAAAQQAAA0EAAAJAAAAABQAAAAUAAAADAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAOQAAADkAAAA5AAAABQAAAEEAAANBAAAAQAAAAAUAAAAFAAAAAwAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAADQQAAAEAAAAAFAAAABQAAAAMAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAABQQAAA0EAAAJBAAACQQAAA0EAAAFAAAAABQAAAAUAAAADAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAAAQQAAAkEAAAFBAAADQQAAA0EAAANBAAABQAAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAAAQQAAAkEAAAFBAAACQQAAAUEAAABBAAAAQQAAA0AAAABBAAAAQQAAAkEAAABBAAABQQAAA0EAAAFBAAAAQQAAAEEAAANBAAACQQAAAkEAAAJBAAAAQQAAAEEAAABAAAAAQQAAAAEAAAABAAAAAQAAAAEAAABBAAADQQAAAEEAAAFBAAADQQAAAUEAAABBAAADQQAAAUEAAANBAAABQAAAAD0AAABoAAAAaAAAAGgAAABoAAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAABBAAABAQAAAGgAAABoAAAAAQAAAEEAAABBAAABQQAAAUEAAAJBAAABQQAAAUEAAANBAAADQQAAAUEAAABAAAAAQQAAAwEAAAABAAAAAQAAAAEAAABBAAACQQAAA0EAAABBAAACQQAAAEEAAAFBAAADQQAAAUEAAAJBAAABQAAAAA== + -2,1: + ind: -2,1 + tiles: QQAAA0EAAANBAAABQQAAAkEAAANBAAACQQAAAkEAAABBAAABQQAAAUEAAAJBAAABQQAAAEEAAAFBAAACQAAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEEAAAFBAAAAQQAAAUAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAUAAAAFAAAAQQAAA0EAAANAAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAYAAAAGAAAABQAAAEEAAAFBAAADQAAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABgAAAAUAAABBAAABQQAAAUAAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAYAAAAFAAAAQQAAAEEAAANAAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGAAAABQAAAEAAAABAAAAAQAAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABgAAAAUAAABAAAAAQAAAAEAAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAYAAAAFAAAAQAAAAEAAAABAAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGAAAABQAAAEEAAAFBAAAAQQAAAQUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABgAAAAUAAABBAAACQQAAA0EAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABgAAAAYAAAAFAAAAQQAAAkEAAAJBAAABBgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAFAAAABQAAAEEAAANBAAADQQAAAwUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEEAAABBAAAAQQAAA0EAAABBAAAAQQAAAEEAAABBAAADQQAAAEEAAABBAAADQQAAAUEAAAFBAAABQQAAAEEAAANBAAAAQQAAAEEAAAFBAAADQQAAAUEAAABBAAAAQQAAAUEAAAJBAAABQQAAA0EAAAJBAAACQQAAAkEAAABBAAACQQAAAUEAAABBAAAAQQAAAg== + -2,2: + ind: -2,2 + tiles: QQAAA0EAAANBAAADQQAAAkEAAAFBAAADQQAAAkEAAABBAAACQQAAA0EAAANBAAAAQQAAAEEAAAJBAAADQQAAAEEAAANBAAADQQAAA0EAAABBAAACQQAAA0EAAAFBAAACQQAAAkEAAANBAAAAQQAAAEEAAANBAAACQQAAAkEAAAJBAAACQQAAAkEAAAJBAAAAQQAAAkEAAANBAAACQQAAAEEAAAFBAAABQQAAAUEAAAFBAAACQQAAA0EAAAJBAAABQQAAAkEAAANBAAABQQAAAEEAAANBAAACQQAAAUEAAAFBAAADQQAAAkEAAANBAAAAQQAAAEEAAABBAAABQQAAAUEAAANBAAADQQAAA0EAAAFBAAAAQQAAAUEAAANBAAACQQAAA0EAAABBAAABQQAAAUEAAANBAAAAQQAAAEEAAABBAAAAQQAAAkEAAABBAAABQQAAAUEAAAJBAAAAQQAAAkEAAAJBAAADQQAAA0EAAABBAAAAQQAAAEEAAABBAAADQQAAAkEAAAFBAAACQQAAAUEAAABBAAABQQAAAEEAAAJBAAABQQAAA0EAAAFBAAADQQAAAkEAAABBAAABQQAAA0EAAAJBAAAAQQAAAEEAAAFBAAACQQAAAkEAAAFBAAACQQAAAkEAAAJBAAABQQAAAkEAAANBAAACQQAAA0EAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -4,2: + ind: -4,2 + tiles: QQAAA0EAAANBAAABQQAAAUEAAABBAAAAQQAAAEEAAAJBAAACQQAAA0EAAAFBAAAAQQAAAkEAAABBAAADQQAAAEEAAAFBAAABQQAAAUEAAABBAAADQQAAAUEAAABBAAAAQQAAAUEAAAFBAAACQQAAAUEAAANBAAACQQAAAUEAAAJBAAADQQAAAUEAAAFBAAACQQAAA0EAAAJBAAACQQAAAUEAAABBAAADQQAAAEEAAABBAAABQQAAAkEAAAFBAAAAQQAAAkEAAAJBAAACQQAAA0EAAANBAAAAQQAAAkEAAAJBAAADQQAAAUEAAAJBAAADQQAAAEEAAABBAAADQQAAA0EAAAJBAAACQQAAAEEAAAFBAAAAQQAAAEEAAABBAAACQQAAAEEAAABBAAADQQAAAEEAAAFBAAADQQAAAUEAAABBAAABQQAAAUEAAAJBAAABQQAAAkEAAANBAAADQQAAAkEAAAFBAAACQQAAAkEAAANBAAADQQAAA0EAAAFBAAADQQAAA0EAAANBAAACQQAAAUEAAANBAAABQQAAAUEAAAFBAAAAQQAAA0EAAAJBAAAAQQAAAkEAAAFBAAACQQAAAEEAAABBAAADQQAAAkEAAABBAAABQQAAAEEAAABBAAACQQAAA0EAAAFBAAACQQAAAUEAAABBAAACQQAAAEEAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -4,1: + ind: -4,1 + tiles: QQAAA0EAAANBAAAAQQAAAkEAAABBAAABBQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEEAAAFBAAAAQQAAAEEAAABBAAAAQQAAAgUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAACQQAAAEEAAAJBAAAAQQAAAkEAAAIFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAAEEAAANBAAABQQAAAEEAAANBAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEEAAANBAAADQQAAAkEAAANBAAACQQAAAwUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAABQQAAAEEAAAFBAAABQQAAA0EAAAMFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAA0EAAANBAAADQQAAAUEAAANBAAABBQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEEAAANBAAADQQAAAkEAAAFBAAADQQAAAQUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAABQQAAA0EAAAJBAAAAQQAAAkEAAAEFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAAkEAAANBAAABQQAAA0EAAAFBAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEEAAAJBAAAAQQAAAUEAAAFBAAABQQAAAgUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAADQQAAA0EAAABBAAABQQAAAEEAAAEFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAAkEAAAFBAAADQQAAAEEAAABBAAACQQAAAkEAAAJBAAAAQQAAA0EAAAFBAAACQQAAAEEAAANBAAACQQAAAUEAAANBAAADQQAAA0EAAAJBAAACQQAAAkEAAAFBAAAAQQAAAEEAAAFBAAAAQQAAAkEAAABBAAACQQAAAEEAAAJBAAACQQAAAkEAAABBAAADQQAAAkEAAAFBAAADQQAAAUEAAABBAAABQQAAAUEAAABBAAADQQAAAkEAAAFBAAABQQAAAUEAAAJBAAABQQAAAUEAAAFBAAABQQAAAUEAAANBAAADQQAAA0EAAAFBAAABQQAAAEEAAANBAAADQQAAAQ== + -4,0: + ind: -4,0 + tiles: QQAAA0EAAANBAAACQQAAAEEAAAFBAAABQQAAAkEAAAIFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEEAAANBAAABQQAAAEEAAAJBAAAAQQAAAEEAAAJBAAABBQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAAAQQAAAEEAAABBAAACQQAAAkEAAAJBAAADQQAAAQUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAAUEAAAJBAAAAQQAAAkEAAANBAAAAQQAAAUEAAAIFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEEAAAJBAAABQQAAAUEAAANBAAAAQQAAAUEAAAJBAAABBQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAABQQAAA0EAAANBAAABQQAAAUEAAABBAAAAQQAAAUEAAAFBAAAAQQAAAUEAAAJBAAAAQQAAA0EAAANBAAACQQAAAUEAAANBAAABQQAAAkEAAAFBAAABQQAAA0EAAAJBAAAAQQAAAEEAAAFBAAACQQAAAkEAAANBAAAAQQAAAUEAAANBAAADQQAAAEEAAANBAAACQQAAAEEAAAJBAAABQQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAACQQAAAkEAAABBAAAAQQAAA0EAAANBAAADQQAAA0EAAAIFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAAUEAAABBAAABQQAAAkEAAABBAAACQQAAAUEAAAFBAAADBQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEEAAANBAAADQQAAAEEAAAJBAAABQQAAAEEAAAJBAAACQQAAAgUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAAAQQAAAUEAAABBAAADQQAAAUEAAAJBAAABQQAAAEEAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAAkEAAAJBAAAAQQAAAUEAAANBAAABQQAAAEEAAABBAAABBQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEEAAANBAAACQQAAAkEAAABBAAABQQAAA0EAAAFBAAAAQQAAAwUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAACQQAAAUEAAAFBAAAAQQAAAkEAAAJBAAABQQAAAUEAAAJBAAADQQAAAkEAAAFBAAADQQAAA0EAAANBAAADQQAAAkEAAAFBAAACQQAAAEEAAAJBAAACQQAAAkEAAAFBAAACQQAAAUEAAAFBAAADQQAAA0EAAANBAAADQQAAAA== + -4,-1: + ind: -4,-1 + tiles: QQAAA0EAAANBAAACQQAAA0EAAABBAAACQQAAAUEAAABBAAADBQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEEAAANBAAAAQQAAAkEAAAJBAAADQQAAA0EAAAJBAAADQQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAAAQQAAA0EAAANBAAADQQAAAkEAAAJBAAACQQAAA0EAAANBAAACQQAAAkEAAANBAAACQQAAA0EAAAIGAAAAQQAAA0EAAABBAAAAQQAAAEEAAABBAAABQQAAAkEAAAJBAAAAQQAAA0EAAAFBAAADQQAAA0EAAANBAAACBgAAAEEAAAJBAAACQQAAAkEAAABBAAADQQAAA0EAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAADQQAAAUEAAAJBAAAAQQAAAUEAAAJBAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAAEEAAANBAAADQQAAAUEAAABBAAACQQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEEAAABBAAADQQAAAEEAAAFBAAACQQAAAkEAAAEFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAABQQAAAkEAAAJBAAADQQAAAEEAAABBAAADBQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAAUEAAAJBAAAAQQAAA0EAAAFBAAACQQAAAQUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEEAAAFBAAABQQAAAkEAAAJBAAADQQAAA0EAAAIFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAADQQAAAEEAAANBAAACQQAAAUEAAABBAAACQQAAAEEAAABBAAADQQAAAEEAAAJBAAAAQQAAA0EAAAMGAAAAQQAAAkEAAANBAAAAQQAAAkEAAANBAAAAQQAAAEEAAAFBAAAAQQAAAkEAAABBAAACQQAAAUEAAAFBAAABBgAAAEEAAAFBAAABQQAAAkEAAAFBAAACQQAAA0EAAABBAAADQQAAAkEAAAJBAAABQQAAA0EAAAJBAAADQQAAAQYAAABBAAAAQQAAA0EAAAJBAAACQQAAAkEAAAFBAAADQQAAAQUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAA0EAAAFBAAADQQAAAEEAAABBAAADQQAAAEEAAAIFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAA== + -4,-2: + ind: -4,-2 + tiles: QQAAAkEAAABBAAACQQAAAEEAAANBAAABQQAAAkEAAAFBAAADQQAAAAQAAAAEAAAABAAAAAEAAAABAAAABAAAAEEAAAJBAAADQQAAAkEAAAFBAAACQQAAAkEAAAFBAAABQQAAAkEAAAJBAAABBAAAAAQAAAAEAAAABAAAAAQAAABBAAADQQAAA0EAAAFBAAACQQAAAUEAAAFBAAADQQAAAUEAAANBAAADQQAAAUEAAAIEAAAABAAAAAQAAAAEAAAAQQAAAUEAAAFBAAAAQQAAA0EAAAFBAAABQQAAAUEAAABBAAAAQQAAAkEAAAJBAAACQQAAAEEAAAE9AAAAQQAAA0EAAANBAAADQQAAA0EAAAJBAAACQQAAAkEAAANBAAADQQAAAEEAAABBAAADQQAAAUEAAABBAAACPQAAAEEAAAJBAAAAQQAAAUEAAAFBAAADQQAAAEEAAAJBAAABQQAAAEEAAAJBAAABQQAAA0EAAABBAAAAQQAAAz0AAABBAAACQQAAAkEAAABBAAACQQAAAUEAAAJBAAACQQAAAkEAAANBAAAAQQAAA0EAAANBAAACQQAAAkEAAAE9AAAAQQAAAUEAAANBAAADQQAAAEEAAAJBAAADQQAAAEEAAAJBAAAAQQAAAUEAAABBAAADQQAAAkEAAANBAAABPQAAAD0AAABBAAABQQAAAUEAAANBAAABQQAAAEEAAANBAAABQQAAA0EAAAJBAAAAQQAAAEEAAAFBAAABQQAAAUEAAAFBAAAAQQAAAEEAAANBAAADQQAAAkEAAANBAAABQQAAAkEAAANBAAACQQAAA0EAAAFBAAACQQAAAUEAAAJBAAABQQAAAUEAAABBAAAAQQAAAkEAAANBAAACQQAAA0EAAANBAAADQQAAAkEAAAJBAAACQQAAA0EAAANBAAABQQAAAUEAAANBAAABQQAAA0EAAAJBAAACQQAAAUEAAABBAAAAQQAAAEEAAAEFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAAkEAAABBAAABQQAAAEEAAAFBAAADQQAAAEEAAAJBAAACBQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEEAAAFBAAACQQAAAUEAAABBAAABQQAAAUEAAAFBAAAAQQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAABQQAAAUEAAANBAAACQQAAA0EAAABBAAAAQQAAAUEAAAMFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAAkEAAABBAAAAQQAAAEEAAABBAAABQQAAA0EAAABBAAADBQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAA== + -3,2: + ind: -3,2 + tiles: QQAAA0EAAAJBAAADQQAAAEEAAAFBAAADQQAAAUEAAAJBAAABQQAAAEEAAAJBAAACQQAAA0EAAAFBAAAAQQAAAEEAAAFBAAABQQAAAUEAAANBAAADQQAAA0EAAANBAAADQQAAAkEAAANBAAAAQQAAAUEAAANBAAADQQAAAkEAAAJBAAACQQAAAkEAAABBAAABQQAAA0EAAANBAAAAQQAAA0EAAANBAAADQQAAA0EAAABBAAAAQQAAAEEAAAFBAAADQQAAAUEAAAFBAAACQQAAAkEAAABBAAAAQQAAAkEAAAJBAAABQQAAAkEAAAFBAAADQQAAA0EAAABBAAACQQAAAEEAAANBAAABQQAAAEEAAAFBAAADQQAAAUEAAAFBAAACQQAAAUEAAANBAAACQQAAAkEAAANBAAACQQAAAEEAAAJBAAADQQAAAUEAAABBAAAAQQAAAkEAAAJBAAAAQQAAAEEAAAJBAAACQQAAAEEAAABBAAACQQAAAkEAAAFBAAABQQAAA0EAAANBAAADQQAAAUEAAAJBAAADQQAAAUEAAAJBAAADQQAAAEEAAABBAAADQQAAA0EAAAFBAAABQQAAAkEAAABBAAABQQAAAEEAAABBAAAAQQAAAkEAAANBAAABQQAAA0EAAANBAAAAQQAAAkEAAANBAAADQQAAAkEAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -3,1: + ind: -3,1 + tiles: BQAAAAUAAAAFAAAABQAAAEEAAAJAAAAAQAAAAEEAAANBAAABQQAAA0EAAABBAAAAQQAAA0EAAABBAAACPQAAAAUAAAAFAAAABQAAAAUAAABBAAAAQAAAAEAAAABBAAAAQQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAAkAAAABAAAAAQQAAAQUAAAAFAAAABgAAAAYAAAAFAAAABgAAAAYAAAAGAAAABQAAAAUAAAAFAAAABQAAAEEAAANAAAAAQAAAAEEAAAEFAAAABgAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAACQAAAAEAAAABBAAAABQAAAAYAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQAAAAEAAAABAAAAAQQAAAQUAAAAGAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEAAAABAAAAAQAAAAEEAAAAFAAAABgAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAADQAAAAEAAAABAAAAABQAAAAYAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAAUAAAABAAAAAQAAAAAUAAAAGAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEEAAANBAAABQQAAAEEAAAEFAAAABgAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAAAQQAAAEEAAANBAAABBQAAAAYAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAA0EAAAFBAAABQQAAAgUAAAAGAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAAkEAAABBAAAAQQAAAEEAAAFBAAAAQQAAAUEAAAIFAAAABQAAAAYAAAAGAAAABQAAAAYAAAAGAAAABgAAAEEAAANBAAADQQAAAkEAAAJBAAACQQAAA0EAAAJBAAAAQQAAAwUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABBAAACQQAAAkEAAANBAAADQQAAAkEAAAJBAAABQQAAAkEAAAFBAAACQQAAAEEAAAFBAAAAQQAAAkEAAAJBAAABQQAAAkEAAAJBAAACQQAAA0EAAAJBAAAAQQAAAkEAAAJBAAADQQAAAUEAAABBAAACQQAAA0EAAABBAAACQQAAAg== + -3,0: + ind: -3,0 + tiles: BQAAAAUAAAAFAAAAQAAAAEAAAABAAAAAQAAAAEAAAABBAAADQQAAAkEAAAFBAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAAgAAAEAAAABAAAAAQAAAAEAAAABAAAAAQQAAAkEAAABBAAACQQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAABAAAAAQAAAAEAAAABAAAAAQAAAAEEAAANBAAADQQAAAkEAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAAEEAAAJBAAABQAAAAEAAAABBAAADQQAAAUEAAABBAAABBQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEEAAAJBAAADQQAAAEAAAABAAAAAQQAAAkEAAANBAAADQQAAAAUAAAAFAAAABQAAAAUAAABBAAACBgAAAEEAAANBAAACQQAAA0EAAABAAAAAQAAAAEEAAAJBAAADQQAAAkEAAAIFAAAABQAAAAUAAAAFAAAAQQAAAQYAAABBAAAAQQAAAEEAAAJBAAABQAAAAEAAAABBAAACQQAAAUEAAANBAAABBQAAAAUAAAAFAAAABQAAAAUAAAAGAAAABQAAAAUAAABBAAADQQAAAkAAAABAAAAAQQAAA0EAAAFBAAAAQQAAAQUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQQAAAkEAAANAAAAAQAAAAEEAAABBAAACQQAAAUEAAAEFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAEAAAABAAAAAQAAAAEAAAABBAAAAQQAAAkEAAAFBAAADQQAAAgUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAIAAABAAAAAQAAAAEAAAABAAAAAQQAAAUEAAAJBAAACQQAAAUEAAAJBAAABBQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAQAAAAEAAAABAAAAAQAAAAEEAAABBAAABQQAAAkEAAABBAAAAQQAAA0EAAAFBAAADBQAAAAUAAAAFAAAABQAAAEEAAAFAAAAAQAAAAEEAAANBAAADQQAAAEEAAAJBAAADQQAAAkEAAANBAAAAQQAAAAUAAAAFAAAABQAAAAUAAABBAAADQAAAAEAAAABBAAABQQAAAkEAAAJBAAADQQAAAEEAAANBAAAAQQAAAT0AAABBAAAAQQAAAEEAAAJBAAABQQAAAUAAAABAAAAAQQAAAEEAAAFBAAADQQAAAUEAAAJBAAADQQAAAUEAAAI9AAAAQQAAAz0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAA== + -3,-1: + ind: -3,-1 + tiles: BQAAAAUAAAAFAAAABQAAAEEAAAFBAAABQAAAAEAAAABBAAADQQAAAkEAAAJBAAACQQAAAEEAAANBAAABQQAAAQUAAAAFAAAABQAAAAUAAABBAAACQQAAAEAAAABAAAAAQQAAAEEAAAJBAAAAQQAAAEEAAANBAAAAQQAAAEEAAAFBAAABQQAAA0EAAAJBAAAAQQAAA0EAAABAAAAAQAAAAEEAAABBAAABQQAAAUEAAANBAAACQQAAAEEAAAJBAAACQQAAAkEAAAJBAAADQQAAAEEAAANBAAABQAAAAEAAAABAAAAAQQAAA0EAAANBAAAAQQAAAEEAAAFBAAADQQAAAwUAAAAFAAAAQQAAAEEAAANBAAAAQQAAA0AAAABAAAAAQAAAAEEAAAFBAAAAQQAAAkEAAABBAAABQQAAA0EAAAIFAAAABQAAAEEAAAFBAAACQQAAAUEAAANBAAADQAAAAEAAAABBAAADQQAAAUEAAABBAAADQQAAAEEAAABBAAAABQAAAAUAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQQAAAUEAAAFBAAAAQQAAAkEAAANBAAAAQQAAAAUAAAACAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEEAAABBAAABQQAAAEEAAAJBAAABQQAAAkEAAAMFAAAABQAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABBAAADQQAAA0EAAANBAAADQQAAA0EAAAJBAAADBQAAAAUAAABBAAABQQAAAEEAAABBAAACQQAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAUAAAAFAAAAQQAAAEEAAAFBAAAAQQAAA0EAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABBAAACQQAAAkEAAABBAAADQQAAAEEAAANBAAACQAAAAEAAAABBAAADQQAAAEEAAABBAAAAQQAAAUEAAAJBAAABQQAAAkEAAAFBAAAAQQAAAUEAAABBAAADQAAAAEAAAABAAAAAQQAAAkEAAAFBAAACQQAAAUEAAAFBAAAAQQAAAEEAAAJBAAAAQQAAAkEAAAJBAAABQQAAAUAAAABAAAAAQAAAAEEAAABBAAACQQAAAEEAAABBAAABQQAAAkEAAAAFAAAABQAAAAUAAABBAAADQQAAA0EAAAJAAAAAQAAAAEEAAAFBAAADQQAAA0EAAANBAAAAQQAAAwUAAAAFAAAABQAAAAUAAAAFAAAAQQAAAUEAAANBAAAAQAAAAEAAAABBAAACQQAAAkEAAAFBAAABQQAAAgUAAAAFAAAABQAAAA== + -3,-2: + ind: -3,-2 + tiles: BAAAAAQAAABBAAAAQQAAAEEAAAJBAAADQQAAAUEAAABBAAABQQAAAUEAAAJBAAABQQAAAEEAAANBAAAAQQAAAQQAAABBAAAAQQAAA0EAAANBAAACQQAAAUEAAAJBAAADQQAAAUEAAAFBAAAAQQAAAEEAAAJBAAACQQAAA0EAAAJBAAADQQAAA0EAAAJBAAACQQAAAkEAAAJBAAAAQQAAAEEAAAFBAAADQQAAAUEAAAFBAAAAQQAAA0EAAABBAAACQQAAAUEAAAFBAAABQQAAAEEAAANBAAADQQAAAUEAAAJBAAAAQQAAAkEAAAFBAAAAQQAAA0EAAAJBAAAAQQAAAEEAAAFBAAADQQAAA0EAAANBAAABQQAAAj0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAABBAAADQQAAAUEAAANBAAABQQAAAEEAAAI9AAAAQQAAAkEAAABBAAAAQQAAAUEAAAJBAAADQQAAAUEAAANBAAACQQAAAUEAAAFBAAAAQQAAAEEAAAEBAAAAaAAAAAEAAAABAAAAQQAAAkEAAAJBAAACQQAAAUEAAAFBAAADQQAAAj0AAAA9AAAAPQAAAD0AAAA9AAAAaAAAAGgAAABoAAAAAQAAAEEAAAFAAAAAQQAAA0EAAANBAAAAQQAAAkEAAAI9AAAAQQAAAEEAAAJBAAABQQAAAQEAAABoAAAAaAAAAAEAAABBAAABQAAAAEEAAAFBAAABQQAAAkEAAAEEAAAAPQAAAEEAAABBAAADQQAAA0EAAAMBAAAAAQAAAAEAAAABAAAAQQAAAEAAAABBAAABQQAAA0EAAAFBAAABBAAAAD0AAABBAAABQQAAAkEAAAJBAAABQQAAAUEAAAJBAAADQQAAAkEAAAFAAAAAQQAAA0EAAANBAAACQQAAAQQAAAAFAAAABQAAAAUAAAAFAAAAQQAAAEEAAABBAAAAQQAAAUEAAANBAAABQAAAAEEAAAJBAAABQQAAAEEAAAAEAAAABQAAAAUAAAAFAAAABQAAAEEAAAJBAAAAQQAAAkEAAANBAAACQQAAA0AAAABBAAADQQAAAkEAAAJBAAACBAAAAAUAAAAFAAAABQAAAAUAAABAAAAAQAAAAEAAAABAAAAAQQAAAUEAAAJAAAAAQQAAAUEAAAJBAAAAQQAAAAQAAAAFAAAABQAAAAUAAAACAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEEAAANBAAADQQAAA0EAAAIEAAAABQAAAAUAAAAFAAAABQAAAEAAAABAAAAAQAAAAEAAAABBAAABQQAAA0EAAANBAAABQQAAAUEAAABBAAACBAAAAA== + -2,-2: + ind: -2,-2 + tiles: QQAAAkEAAAFBAAAAQQAAAUEAAAFBAAABQQAAAEEAAABBAAABQQAAAUEAAANBAAADQQAAAUEAAABBAAACQQAAAkEAAANBAAABQQAAAUEAAANBAAAAQQAAA0EAAANBAAAAQQAAAEEAAAFBAAACQQAAAEEAAAFBAAADQQAAAUEAAAJBAAAAQQAAAkEAAAFBAAACQQAAAUEAAAFBAAABQQAAAUEAAAJBAAABQQAAAUEAAAFBAAADQQAAAUEAAAFBAAADQQAAAEEAAAJBAAAAQQAAAUEAAANBAAABQQAAAUEAAAFBAAABQQAAAUEAAANBAAABQQAAA0EAAABBAAADQQAAAj0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAEEAAAFBAAADQQAAAkEAAABBAAABQQAAAkEAAAFBAAADPQAAAEEAAABBAAAAQQAAAEEAAAFBAAAAQQAAAz0AAABBAAABQQAAAUEAAABBAAACQQAAA0EAAAFBAAAAQQAAAj0AAABBAAABQQAAAUEAAANBAAAAQQAAAEEAAAM9AAAAPQAAAEEAAABBAAADQQAAA0EAAANBAAACQQAAAEEAAAI9AAAAQQAAAkEAAANBAAADQQAAAEEAAAJBAAAAQQAAAkEAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAEEAAANBAAAAQQAAAUEAAAFBAAACBAAAAAYAAAAGAAAABAAAAAQAAAAEAAAAaAAAAGgAAABoAAAABAAAAAQAAABBAAACQQAAA0EAAAJBAAABQQAAAgQAAAAGAAAABgAAAAQAAAAEAAAABAAAAGgAAAAEAAAAaAAAAAQAAAAEAAAAPQAAAD0AAAA9AAAAQQAAAkEAAAMEAAAABgAAAAYAAAAEAAAABAAAAAQAAABoAAAABAAAAGgAAAAEAAAABAAAAEEAAANBAAADPQAAAEEAAABBAAAABAAAAAIAAAACAAAABAAAAAQAAAAEAAAAaAAAAGgAAABoAAAABAAAAAQAAABBAAAAQQAAAz0AAABBAAAAQQAAAQQAAAAGAAAABgAAAAQAAAAEAAAABAAAAAQAAABoAAAABAAAAAQAAAAEAAAAQQAAAkEAAAM9AAAAQQAAAUEAAAIEAAAABgAAAAYAAAAEAAAABAAAAAQAAAAEAAAAaAAAAAQAAAAEAAAABAAAAEEAAAFBAAAAPQAAAEEAAAJBAAABBAAAAAIAAAACAAAABAAAAAQAAAAEAAAABAAAAGgAAAAEAAAABAAAAAQAAABBAAADQQAAAz0AAABBAAADQQAAAg== + -1,-2: + ind: -1,-2 + tiles: QQAAAUAAAABAAAAAQQAAA0EAAABBAAAAQQAAAUEAAANBAAAAQQAAAkEAAAFBAAADQQAAAUEAAANBAAADQQAAAUEAAAJAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABBAAADQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQQAAAkAAAABAAAAAQQAAA0EAAANBAAADQQAAAEEAAAJBAAADQQAAAkEAAAJBAAADQQAAA0EAAABBAAABQQAAAkEAAAJAAAAAQAAAAEEAAANBAAADQQAAAEEAAANBAAACQQAAA0EAAAJBAAADQQAAAkEAAAJBAAADQQAAAUEAAAJBAAABQAAAAEAAAABBAAABQQAAAUEAAAJBAAACQQAAA0EAAANBAAAAQQAAAkEAAAJBAAABQQAAA0EAAAFBAAACPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAQQAAAUEAAAFBAAADQQAAAUEAAAJAAAAAQAAAAEEAAAFBAAABQQAAAUEAAABBAAABQQAAAkEAAABBAAAAPQAAAEEAAANBAAADQQAAA0EAAANBAAADQAAAAEAAAABBAAACQQAAA0EAAANBAAACQQAAAEEAAAJBAAADQQAAAj0AAABBAAAAQQAAAkEAAAFBAAABQQAAAkAAAABAAAAAQQAAA0EAAANBAAACQQAAAUEAAANBAAAAQQAAAUEAAAA9AAAAQQAAA0EAAAJBAAADQQAAAkEAAAFAAAAAQAAAAEEAAAJBAAACQQAAAkEAAANBAAADQQAAAUEAAAEBAAAAaAAAAAEAAAABAAAAQQAAAUEAAAFBAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQQAAA0EAAANBAAADAQAAAGgAAABoAAAAAQAAAEEAAANBAAADQQAAAEAAAABAAAAAQQAAA0EAAAJBAAABQAAAAEAAAABAAAAAQAAAAAEAAABoAAAAaAAAAAEAAABBAAACQQAAAkEAAABAAAAAQAAAAEEAAAFBAAACQQAAAEEAAAFBAAAAQQAAAkEAAAIBAAAAaAAAAAEAAAABAAAAQQAAAEEAAABBAAAAQAAAAEAAAABBAAACQQAAAkEAAANBAAABQQAAAkEAAAFBAAAAQQAAAD0AAABBAAACQQAAAkEAAABBAAABQQAAAEAAAABAAAAAQQAAAUEAAAFBAAAAQQAAA0EAAANBAAABQQAAAEEAAAE9AAAAQQAAAUEAAAJBAAACQQAAAg== + 0,-2: + ind: 0,-2 + tiles: QAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAABAAAAAQAAAAEAAAABAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAQAAAAEAAAABAAAAAQAAABAAAAAQAAAAEEAAAJBAAAAQQAAAkEAAANBAAAAQQAAAEEAAAFBAAABQQAAA0EAAAMEAAAABAAAAAQAAAAEAAAAQQAAAEEAAAFBAAABQQAAAUEAAABBAAADQQAAA0EAAAFBAAACQQAAAUEAAANBAAACBAAAAAQAAAAEAAAABAAAAEEAAAJBAAACQQAAAEEAAAFBAAAAQQAAA0EAAANBAAAAQQAAAEEAAABBAAADQQAAAgQAAAAEAAAABAAAAAQAAABBAAACQQAAA0EAAAFBAAADQQAAAkEAAAJBAAACQQAAA0EAAABBAAABQQAAAEEAAABBAAAAQQAAA0EAAAJBAAACQQAAA0EAAANBAAABQQAAAUEAAABBAAACQQAAAkEAAAJBAAADQQAAAkEAAAJBAAABQQAAAEEAAAFBAAACQQAAAUEAAAFBAAACQQAAA0EAAANBAAADQQAAA0EAAAJBAAADQQAAAUEAAAFBAAADQQAAAUEAAANBAAACQQAAAUEAAAFBAAABQQAAAUEAAAJBAAAAQQAAAkEAAAJBAAABQQAAAUEAAANBAAAAQQAAAkEAAANBAAACQQAAAkEAAABBAAADQQAAAEEAAANBAAAAQQAAAUEAAAFBAAAAQQAAAkEAAANBAAAAQQAAA0EAAAJBAAACQQAAAUEAAABBAAAAQQAAAkEAAAJBAAACQQAAAUEAAAJBAAADQQAAA0EAAAFBAAAAQQAAAUEAAANBAAAAQQAAA0EAAAFBAAAAQQAAAkEAAAFBAAACQQAAAkEAAAJBAAABQQAAAkEAAAJBAAAAQQAAAUEAAAFBAAACQQAAAUEAAAFBAAADQQAAA0EAAABBAAACQQAAAEEAAABBAAABQQAAAEEAAAFBAAADQQAAAEEAAABBAAADQQAAAUEAAAJBAAADQQAAAUEAAAJBAAADQQAAAUEAAAFBAAADQQAAAUEAAABBAAACQQAAA0EAAABBAAACQQAAAkEAAABBAAABQQAAAEEAAABBAAADQQAAAkEAAANBAAACQQAAAUEAAANBAAACQQAAAkEAAAFBAAAAQQAAAkEAAAFBAAADQQAAAEEAAAJBAAABQQAAAUEAAABBAAADQQAAAUEAAAFBAAACQQAAAUEAAABBAAADQQAAAEEAAANBAAACQQAAAkEAAAJBAAACQQAAAEEAAAJBAAAAQQAAAA== + 1,-2: + ind: 1,-2 + tiles: BAAAAAQAAABBAAADQQAAAEEAAAJBAAACQQAAA0EAAAFBAAADQQAAAEEAAAI1AAABNQAAADUAAAI1AAACNQAAAgQAAAAEAAAAQQAAA0EAAAFBAAAAQQAAAEEAAAJBAAADQQAAAUEAAAM1AAABNQAAAjUAAAM1AAACNQAAAzUAAAIEAAAABAAAAEEAAABBAAAAQQAAAEEAAABBAAADQQAAA0EAAABBAAAANQAAATUAAAE1AAABNQAAADUAAAI1AAAABAAAAAQAAABBAAABQQAAA0EAAABBAAADQQAAAEEAAABBAAABQQAAA0EAAAM1AAAANQAAAjUAAAI1AAABNQAAAAQAAAAEAAAAQQAAAUEAAABBAAAAQQAAAEEAAAJBAAACQQAAADUAAAE1AAADNQAAATUAAAI1AAABNQAAAjUAAAFBAAAAQQAAAEEAAABBAAADQQAAAEEAAAJBAAABQQAAADUAAAM1AAACNQAAAjUAAAA1AAADNQAAATUAAAA1AAADQQAAAUEAAABBAAAAQQAAAkEAAABBAAADQQAAAUEAAAJBAAADNQAAATUAAAE1AAACNQAAAjUAAAE1AAADNQAAAUEAAAJBAAADQQAAAUEAAAJBAAADQQAAAkEAAABBAAACQQAAAUEAAAJBAAADNQAAATUAAAI1AAACNQAAAjUAAAFBAAAAQQAAAEEAAABBAAADQQAAAUEAAAFBAAACQQAAAEEAAABBAAAAQQAAATUAAAA1AAADNQAAAzUAAAE1AAABQQAAAkEAAAFBAAABQQAAAUEAAAJBAAAAQQAAAEEAAAFBAAABQQAAAzUAAAM1AAAANQAAADUAAAE1AAADNQAAAkEAAAJBAAAAQQAAA0EAAAFBAAACQQAAA0EAAABBAAADQQAAA0EAAAE1AAACNQAAADUAAAE1AAAANQAAAjUAAABBAAAAQQAAAUEAAABBAAACQQAAAUEAAAJBAAACNQAAATUAAAE1AAAANQAAATUAAAA1AAAANQAAATUAAAM1AAACQQAAAEEAAABBAAAAQQAAAUEAAAJBAAACQQAAAEEAAAJBAAABNQAAAzUAAAA1AAAANQAAADUAAAA1AAABNQAAAUEAAANBAAACQQAAAEEAAANBAAABQQAAAEEAAAJBAAAAQQAAAkEAAAM1AAABNQAAATUAAAI1AAACNQAAADUAAANBAAADQQAAA0EAAABBAAABQQAAAkEAAANBAAACQQAAAEEAAAI1AAADNQAAAzUAAAA1AAACNQAAATUAAAA1AAAAQQAAAkEAAAJBAAABQQAAAEEAAABBAAAAQQAAA0EAAAFBAAACNQAAATUAAAM1AAACNQAAADUAAAI1AAAANQAAAw== + 2,-2: + ind: 2,-2 + tiles: NQAAADUAAAI1AAABNQAAADUAAAA1AAAANQAAADUAAAI1AAACNQAAAjUAAAE1AAACNQAAAjUAAAA1AAACNQAAAjUAAAI1AAAANQAAATUAAAI1AAADNQAAAzUAAAE1AAABNQAAAjUAAAI1AAADNQAAAjUAAAI1AAAANQAAADUAAAI1AAACNQAAAzUAAAA1AAAANQAAAzUAAAA1AAAANQAAATUAAAA1AAABNQAAADUAAAI1AAADNQAAATUAAAE1AAADNQAAAjUAAAE1AAADNQAAADUAAAE1AAADNQAAAzUAAAM1AAAANQAAADUAAAM1AAAANQAAADUAAAE1AAABNQAAATUAAAA1AAAANQAAATUAAAA1AAACNQAAAjUAAAE1AAAANQAAAjUAAAI1AAAANQAAATUAAAM1AAABNQAAADUAAAM1AAACNQAAAzUAAAI1AAADNQAAAjUAAAA1AAABNQAAAjUAAAA1AAAANQAAADUAAAE1AAAANQAAAzUAAAE1AAAANQAAAzUAAAE1AAACNQAAAjUAAAA1AAAANQAAAjUAAAI1AAADNQAAAzUAAAA1AAACNQAAAzUAAAE1AAACNQAAAjUAAAA1AAADNQAAAzUAAAM1AAABNQAAADUAAAE1AAADNQAAADUAAAA1AAABNQAAADUAAAA1AAACNQAAATUAAAE1AAACNQAAAjUAAAE1AAADNQAAAzUAAAA1AAABNQAAATUAAAI1AAACNQAAAjUAAAI1AAACNQAAADUAAAM1AAABNQAAAzUAAAA1AAABNQAAAjUAAAA1AAADNQAAATUAAAA1AAAANQAAAjUAAAI1AAAANQAAAjUAAAA1AAAANQAAADUAAAA1AAAANQAAAzUAAAA1AAAANQAAADUAAAM1AAABNQAAADUAAAI1AAAANQAAAzUAAAM1AAAANQAAADUAAAM1AAADNQAAAzUAAAA1AAAANQAAADUAAAI1AAACNQAAAzUAAAI1AAABNQAAADUAAAE1AAAANQAAATUAAAM1AAADNQAAAjUAAAE1AAADNQAAAzUAAAI1AAACNQAAADUAAAA1AAABNQAAAjUAAAM1AAACNQAAAjUAAAE1AAABNQAAAjUAAAE1AAADNQAAATUAAAI1AAACNQAAAjUAAAM1AAADNQAAATUAAAI1AAABNQAAADUAAAE1AAABNQAAAzUAAAA1AAAANQAAADUAAAA1AAABNQAAATUAAAI1AAACNQAAAjUAAAA1AAABNQAAADUAAAA1AAABNQAAADUAAAM1AAAANQAAAzUAAAM1AAADNQAAAzUAAAE1AAADNQAAAzUAAAE1AAAANQAAATUAAAA1AAACNQAAADUAAAM1AAACNQAAAw== + 3,-2: + ind: 3,-2 + tiles: NQAAADUAAAA1AAABNQAAADUAAAA1AAACNQAAADUAAAA1AAABNQAAADUAAAM1AAACNQAAAjUAAAE1AAADNQAAADUAAAM1AAABNQAAATUAAAI1AAACNQAAATUAAAI1AAADNQAAADUAAAE1AAAANQAAADUAAAE1AAACNQAAAzUAAAM1AAACNQAAATUAAAA1AAAANQAAADUAAAE1AAAANQAAATUAAAM1AAADNQAAAjUAAAI1AAAANQAAATUAAAM1AAACNQAAAzUAAAI1AAABNQAAAjUAAAE1AAADNQAAAjUAAAA1AAACNQAAADUAAAI1AAADNQAAAjUAAAA1AAAANQAAADUAAAE1AAACNQAAATUAAAE1AAADNQAAADUAAAA1AAABNQAAATUAAAA1AAABNQAAATUAAAA1AAABNQAAAjUAAAI1AAABNQAAATUAAAE1AAACNQAAAjUAAAA1AAABNQAAADUAAAM1AAACNQAAAzUAAAM1AAABNQAAAjUAAAA1AAADNQAAATUAAAI1AAAANQAAADUAAAE1AAACNQAAAzUAAAM1AAABNQAAADUAAAI1AAADNQAAAzUAAAI1AAABNQAAAjUAAAI1AAACNQAAAjUAAAA1AAACNQAAAjUAAAE1AAADNQAAAzUAAAM1AAACNQAAADUAAAM1AAADNQAAAzUAAAA1AAABNQAAAjUAAAA1AAACNQAAATUAAAE1AAABNQAAAzUAAAE1AAACNQAAADUAAAI1AAADNQAAAzUAAAM1AAADNQAAAzUAAAI1AAACNQAAADUAAAA1AAACNQAAATUAAAA1AAAANQAAATUAAAE1AAADNQAAADUAAAE1AAACNQAAADUAAAM1AAAANQAAAjUAAAI1AAAANQAAATUAAAI1AAADNQAAADUAAAE1AAAANQAAAjUAAAI1AAACNQAAATUAAAM1AAABNQAAAjUAAAM1AAACNQAAADUAAAE1AAADNQAAATUAAAM1AAABNQAAADUAAAA1AAADNQAAATUAAAM1AAAANQAAAjUAAAI1AAAANQAAAjUAAAI1AAADNQAAADUAAAI1AAACNQAAAjUAAAM1AAADNQAAAjUAAAM1AAABNQAAAjUAAAM1AAADNQAAADUAAAM1AAACNQAAATUAAAI1AAADNQAAADUAAAE1AAADNQAAADUAAAE1AAADNQAAAjUAAAI1AAABNQAAADUAAAE1AAAANQAAADUAAAE1AAACNQAAAzUAAAA1AAABNQAAADUAAAE1AAABNQAAADUAAAM1AAACNQAAATUAAAI1AAACNQAAAjUAAAE1AAADNQAAAzUAAAE1AAADNQAAAzUAAAI1AAACNQAAADUAAAA1AAACNQAAAA== + 0,-3: + ind: 0,-3 + tiles: QQAAA0EAAANBAAAAQQAAAUEAAABBAAACQQAAAkEAAAJBAAAAQQAAAkEAAANBAAABQQAAAUEAAAJBAAACQQAAAUEAAAJBAAABQQAAA0EAAABBAAABQQAAAEEAAABBAAADQQAAAEEAAANBAAABQQAAAUEAAAFBAAADQQAAAkEAAABBAAABQQAAAkEAAANBAAACQQAAAkEAAANBAAADQQAAAEEAAABBAAADQQAAAEEAAABBAAAAQQAAAkEAAABBAAACQQAAAUEAAANBAAACQQAAA0EAAAJBAAADQQAAAUEAAANBAAAAQQAAAkEAAAJBAAABQQAAAUEAAAJBAAABQQAAAUEAAANBAAADQQAAA0EAAAFBAAABQQAAAEEAAAFBAAABQQAAAUEAAAFBAAABQQAAAkEAAABBAAAAQQAAAEEAAABBAAACQQAAA0EAAANBAAADQQAAAkEAAABBAAAAQQAAA0EAAABBAAADQQAAA0EAAAJBAAABQQAAAEEAAAJBAAADQQAAAUEAAAFBAAACQQAAA0EAAAFBAAABQQAAAUEAAAJBAAAAQQAAAkEAAABBAAADQQAAA0EAAABBAAABQQAAAUEAAABBAAACQQAAAEEAAAJBAAACQQAAAEEAAAJBAAAAQQAAA0EAAAFBAAACQQAAAEEAAAJBAAADQQAAAkEAAAFBAAADQQAAAEEAAABBAAAAQQAAAEEAAABBAAAAQQAAAkEAAAFBAAADQQAAAkEAAABBAAACQQAAA0EAAAJBAAADQQAAAkEAAAJBAAABQQAAA0EAAABBAAACQQAAAEEAAANBAAABQQAAAEEAAANBAAADBAAAAAQAAAAEAAAABAAAAEEAAAFBAAACQQAAAUEAAANBAAAAQQAAAUEAAABBAAADQQAAAUEAAABBAAAAQQAAAgQAAAAEAAAABAAAAAQAAABBAAAAQQAAAUEAAANBAAADQQAAAEEAAANBAAABQQAAAEEAAAFBAAADQQAAA0EAAAIEAAAABAAAAAQAAAAEAAAAQQAAAEEAAABBAAACQQAAAkEAAAFBAAABQQAAA0EAAABBAAABQQAAAEEAAAJBAAABBAAAAAQAAAAEAAAABAAAAEEAAANBAAACQQAAAkEAAANBAAACQQAAA0EAAAFBAAADQQAAAEEAAAJBAAAAQQAAAQQAAAAEAAAABAAAAAQAAABBAAABQQAAAkEAAAFBAAABQQAAA0EAAAFBAAAAQQAAAEEAAABBAAACQQAAAEEAAAIEAAAABAAAAAQAAAAEAAAAQQAAAkEAAANBAAACQQAAA0EAAAFBAAAAQQAAAUEAAABBAAACQQAAAEEAAANBAAAABAAAAAQAAAAEAAAABAAAAA== + -1,-3: + ind: -1,-3 + tiles: QQAAAUEAAAJBAAABQQAAA0EAAABBAAACQQAAA0EAAAJBAAABQQAAAkEAAAJBAAABQQAAAEEAAABBAAADQQAAA0EAAAJBAAABQQAAAkEAAANBAAACQQAAA0EAAAFBAAAAQQAAA0EAAAFBAAAAQQAAAkEAAAFBAAADQQAAAEEAAANBAAACQQAAAEEAAAJBAAAAQQAAA0EAAAJBAAADQQAAAUEAAANBAAACQQAAA0EAAABBAAAAQQAAA0EAAANBAAABQQAAAUEAAABBAAACQQAAAkEAAAFBAAAAQQAAAkEAAANBAAADQQAAAkEAAABBAAADQQAAAUEAAAJBAAACQQAAAkEAAAJBAAADQQAAA0EAAAJBAAAAQQAAAEEAAAJBAAAAQQAAAUEAAANBAAACQQAAAUEAAABBAAACQQAAA0EAAAJBAAACQQAAA0EAAAJBAAAAQQAAAEEAAAFBAAABQQAAAkEAAABBAAADQQAAA0EAAANBAAACQQAAAUEAAAJBAAABQQAAAkEAAAFBAAACQQAAAUEAAAFBAAACQQAAAkEAAAJBAAACQQAAA0EAAAFBAAACQQAAAkEAAAFBAAAAQQAAAUEAAAJBAAADQQAAAEEAAAJBAAADQQAAAUEAAAJBAAADQQAAA0EAAABBAAAAQQAAAEEAAAFBAAAAQQAAA0EAAAFBAAABQQAAA0EAAANBAAAAQQAAAkEAAAJBAAADQQAAA0EAAABBAAAAQQAAAkEAAAJBAAABQQAAAUEAAAFBAAABQQAAAkEAAABBAAADQQAAA0EAAAFBAAACQQAAA0EAAAFBAAADQQAAAEEAAABBAAADQQAAAUEAAAFBAAACQQAAAUEAAABBAAADQQAAA0EAAAFBAAACQQAAAkEAAANBAAAAQQAAA0EAAAFBAAABQQAAAUEAAAJBAAAAQQAAAEEAAABBAAAAQQAAAEEAAAJBAAAAQQAAAUEAAABBAAAAQQAAAkEAAAFBAAABQQAAAkEAAABBAAACQQAAAEEAAAJBAAAAQQAAAkEAAABBAAABQQAAAEEAAABBAAAAQQAAAUEAAABBAAABQQAAAEEAAABBAAACQQAAA0EAAABBAAACQQAAAEAAAABAAAAAQAAAAEEAAABBAAAAQQAAAUEAAABBAAACQQAAAUEAAAJBAAADQQAAAEEAAABBAAAAQQAAAkEAAANAAAAAQAAAAEAAAABBAAACQQAAAUEAAAFBAAABQQAAAkEAAANBAAABQQAAAkEAAANBAAACQQAAAkEAAANBAAAAQQAAA0AAAABAAAAAQQAAA0EAAANBAAADQQAAAkEAAAFBAAADQQAAAEEAAABBAAADQQAAAEEAAAJBAAABQQAAAg== + -2,-3: + ind: -2,-3 + tiles: QQAAAUEAAAJBAAADQQAAAEEAAANBAAADQQAAAUEAAAFBAAAAQQAAAkEAAANBAAAAQQAAAUEAAAFBAAACQQAAAkEAAABBAAADQQAAAUEAAAJBAAADQQAAAEEAAAFBAAABQQAAAEEAAABBAAAAQQAAA0EAAAFBAAAAQQAAAEEAAABBAAACQQAAAkEAAABBAAAAQQAAAUEAAAJBAAADQQAAAkEAAABBAAADQQAAAUEAAANBAAACQQAAAUEAAAJBAAAAQQAAA0EAAABBAAACQQAAAUEAAAJBAAADQQAAAEEAAAJBAAAAQQAAA0EAAAJBAAABQQAAA0EAAABBAAACQQAAAkEAAAFBAAABQQAAAkEAAABBAAAAQQAAAkEAAABBAAABQQAAAkEAAANBAAACQQAAA0EAAAFBAAAAQQAAAUEAAANBAAABQQAAA0EAAABBAAABQQAAAUEAAAJBAAADQQAAAUEAAAJBAAABQQAAAUEAAAFBAAABQQAAA0EAAABBAAADQQAAAkEAAAFBAAAAQQAAA0EAAAJBAAADQQAAAkEAAAJBAAAAQQAAAEEAAANBAAADQQAAAEEAAAJBAAABQQAAA0EAAAJBAAAAQQAAAUEAAAJBAAACQQAAAkEAAAJBAAADQQAAA0EAAANBAAAAQQAAAUEAAAFBAAACQQAAAEEAAAJBAAAAQQAAAkEAAAFBAAADQQAAAUEAAANBAAACQQAAAkEAAANBAAADQQAAAkEAAABBAAABQQAAAEEAAAJBAAACQQAAA0EAAAJBAAACQQAAAkEAAABBAAACQQAAA0EAAABBAAAAQQAAA0EAAAJBAAAAQQAAAUEAAAFBAAADQQAAA0EAAAFBAAABQQAAA0EAAANBAAAAQQAAAkEAAABBAAACQQAAA0EAAABBAAADQQAAAkEAAANBAAAAQQAAAkEAAANBAAACQQAAAkEAAABBAAAAQQAAAUEAAANBAAACQQAAAkEAAAFBAAAAQQAAAkEAAABBAAADQQAAA0EAAABBAAAAQQAAAEEAAABBAAABQQAAAEEAAANBAAACQQAAAEEAAAJBAAABQQAAAUEAAABBAAABQQAAAUEAAAJBAAADQQAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQQAAAUEAAANBAAABQQAAAkEAAANBAAADQQAAAkEAAAJBAAADQQAAA0EAAANBAAADQQAAA0EAAANBAAACQQAAAg== + -3,-3: + ind: -3,-3 + tiles: QQAAAEEAAANBAAABQQAAAkEAAAFBAAADQQAAA0EAAANBAAAAQQAAA0EAAAFBAAADQQAAA0EAAANBAAADQQAAAEEAAANBAAADQQAAAkEAAANBAAACQQAAAUEAAABBAAAAQQAAAUEAAAJBAAADQQAAAEEAAAJBAAABQQAAAEEAAAJBAAACQQAAA0EAAAJBAAADQQAAA0EAAAJBAAABQQAAAUEAAANBAAACQQAAAkEAAAFBAAAAQQAAAkEAAAFBAAADQQAAA0EAAAJBAAACQQAAAkEAAABBAAACQQAAA0EAAAFBAAADQQAAA0EAAAFBAAACQQAAAUEAAAFBAAADQQAAAkEAAAJBAAABQQAAA0EAAAJBAAADQQAAA0EAAAJBAAABQQAAAUEAAABBAAAAQQAAA0EAAABBAAACQQAAAkEAAANBAAACQQAAAUEAAANBAAAAQQAAAkEAAABBAAADQQAAAEEAAABBAAACQQAAAEEAAAJBAAABQQAAAUEAAABBAAACQQAAAUEAAANBAAABQQAAAUEAAABBAAABQQAAAkEAAAFBAAADQQAAA0EAAAFBAAACQQAAA0EAAANBAAACQQAAAkEAAAFBAAACQQAAAUEAAANBAAADQQAAA0EAAANBAAACQQAAAEEAAAJBAAADQQAAAEEAAAJBAAADQQAAAkEAAAJBAAADQQAAAkEAAAJBAAACQQAAAkEAAABBAAACQQAAAEEAAAJBAAABQQAAAUEAAAFBAAACQQAAAUEAAANBAAAAQQAAAUEAAAJBAAABQQAAA0EAAANBAAABQQAAA0EAAAFBAAABQQAAAUEAAANBAAABQQAAA0EAAAFBAAACQQAAAwQAAABBAAAAQQAAAEEAAANBAAACQQAAAUEAAANBAAABQQAAAUEAAABBAAABQQAAAEEAAAJBAAABQQAAAEEAAAAEAAAABAAAAEEAAABBAAAAQQAAAkEAAAJBAAACQQAAAUEAAANBAAABQQAAAkEAAAJBAAABQQAAAEEAAANBAAACBAAAAAQAAAAEAAAAQQAAAkEAAABBAAABQQAAAUEAAANBAAAAQQAAA0EAAANBAAADQQAAA0EAAAJBAAADQQAAAAEAAAAEAAAABAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAABAAAABAAAAAQAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAABAAAAAQAAAAEAAAAQQAAAUEAAAJBAAAAQQAAA0EAAAJBAAADQQAAAUEAAAFBAAADQQAAA0EAAANBAAADQQAAAQ== + -4,-3: + ind: -4,-3 + tiles: QQAAAEEAAANBAAAAQQAAA0EAAAFBAAABQQAAAkEAAANBAAADQQAAA0EAAANBAAADQQAAA0EAAABBAAACQQAAAEEAAAJBAAABQQAAA0EAAABBAAACQQAAAEEAAAFBAAACQQAAAEEAAANBAAACQQAAAkEAAABBAAABQQAAAEEAAAFBAAAAQQAAAkEAAANBAAAAQQAAAEEAAABBAAABQQAAAkEAAABBAAADQQAAAkEAAAJBAAABQQAAAEEAAANBAAAAQQAAA0EAAABBAAABQQAAAEEAAAJBAAAAQQAAAEEAAABBAAABQQAAAkEAAAFBAAACQQAAA0EAAAJBAAADQQAAAEEAAANBAAABQQAAAEEAAANBAAABQQAAAEEAAAFBAAADQQAAAkEAAABBAAACQQAAAUEAAAFBAAADQQAAA0EAAAFBAAACQQAAA0EAAAJBAAACQQAAAUEAAAFBAAADQQAAAEEAAANBAAAAQQAAAUEAAAJBAAADQQAAA0EAAANBAAACQQAAAUEAAANBAAABQQAAAUEAAANBAAAAQQAAAUEAAAJBAAAAQQAAAEEAAAFBAAAAQQAAAEEAAAFBAAAAQQAAAUEAAAJBAAADQQAAAUEAAANBAAABQQAAAkEAAAJBAAADQQAAAkEAAANBAAADQQAAA0EAAAFBAAACQQAAAkEAAANBAAADQQAAA0EAAABBAAACQQAAAUEAAANBAAACQQAAAkEAAAJBAAACQQAAAkEAAANBAAABQQAAA0EAAANBAAABQQAAAUEAAAJBAAAAQQAAAUEAAANBAAABQQAAAEEAAANBAAACQQAAAEEAAANBAAABBAAAAAQAAAAEAAAABAAAAEEAAAFBAAAAQQAAAEEAAANBAAACQQAAAkEAAANBAAADQQAAAEEAAANBAAABBAAAAAQAAAAEAAAABAAAAAQAAABBAAABQQAAAEEAAAJBAAACQQAAA0EAAAJBAAABQQAAAUEAAAFBAAADBAAAAAQAAAAEAAAAAQAAAAEAAAAEAAAAQQAAA0EAAABBAAAAQQAAAkEAAAFBAAADQQAAAkEAAAFBAAACBAAAAAQAAAAEAAAAAQAAAAEAAAABAAAAAQAAAEEAAAJBAAABQQAAAEEAAABBAAADQQAAAEEAAANBAAAAQQAAAAQAAAAEAAAAAQAAAAEAAABoAAAAaAAAAAEAAABBAAAAQQAAAEEAAAFBAAADQQAAAEEAAAFBAAACQQAAAUEAAAMEAAAABAAAAAEAAAABAAAAaAAAAGgAAAABAAAAQQAAAUEAAABBAAAAQQAAA0EAAANBAAADQQAAAUEAAAFBAAACBAAAAAQAAAAEAAAAAQAAAAEAAAABAAAAAQAAAA== + 1,-3: + ind: 1,-3 + tiles: QQAAAkEAAABBAAABQQAAAkEAAANBAAACQQAAA0EAAABBAAABNQAAAzUAAAI1AAACNQAAAzUAAAI1AAABNQAAAkEAAAJBAAACQQAAAEEAAANBAAAAQQAAA0EAAANBAAABQQAAAUEAAAA1AAACNQAAAzUAAAM1AAACNQAAAzUAAABBAAABQQAAA0EAAAFBAAACQQAAAEEAAAFBAAAAQQAAAjUAAAM1AAADNQAAADUAAAI1AAADNQAAAjUAAAI1AAAAQQAAA0EAAABBAAACQQAAAEEAAABBAAAAQQAAAkEAAAFBAAACNQAAATUAAAM1AAAANQAAAjUAAAI1AAACNQAAA0EAAANBAAABQQAAA0EAAANBAAACQQAAAUEAAAJBAAAAQQAAATUAAAI1AAADNQAAADUAAAA1AAAANQAAAjUAAAFBAAAAQQAAA0EAAABBAAABQQAAAEEAAAFBAAABQQAAADUAAAE1AAACNQAAAzUAAAE1AAABNQAAADUAAAM1AAADQQAAAEEAAAFBAAAAQQAAAUEAAAFBAAABQQAAAEEAAAA1AAABNQAAADUAAAI1AAABNQAAAjUAAAI1AAAANQAAAEEAAABBAAABQQAAAUEAAAFBAAACQQAAA0EAAANBAAADNQAAATUAAAA1AAABNQAAATUAAAM1AAABNQAAAjUAAABBAAAAQQAAA0EAAAJBAAACQQAAA0EAAAJBAAABQQAAA0EAAAE1AAADNQAAAzUAAAI1AAACNQAAAjUAAAE1AAACBAAAAAQAAABBAAABQQAAAUEAAAJBAAADQQAAAUEAAANBAAACQQAAADUAAAI1AAAANQAAAjUAAAA1AAABNQAAAwQAAAAEAAAAQQAAAUEAAAJBAAACQQAAAUEAAAFBAAACQQAAAjUAAAE1AAAANQAAADUAAAA1AAACNQAAAzUAAAEEAAAABAAAAEEAAABBAAABQQAAAEEAAANBAAABQQAAAzUAAAM1AAADNQAAAjUAAAE1AAACNQAAATUAAAA1AAACBAAAAAQAAABBAAAAQQAAA0EAAABBAAAAQQAAA0EAAANBAAADNQAAATUAAAM1AAAANQAAAzUAAAM1AAABNQAAAAQAAAAEAAAAQQAAAkEAAAFBAAADQQAAA0EAAAJBAAABQQAAAUEAAAJBAAAANQAAATUAAAI1AAADNQAAAzUAAAMEAAAABAAAAEEAAANBAAACQQAAAkEAAANBAAAAQQAAAEEAAAE1AAABNQAAAzUAAAI1AAACNQAAADUAAAE1AAACBAAAAAQAAABBAAACQQAAAkEAAABBAAABQQAAA0EAAABBAAADQQAAATUAAAI1AAAANQAAATUAAAM1AAADNQAAAQ== + 2,-3: + ind: 2,-3 + tiles: NQAAADUAAAE1AAACNQAAAzUAAAA1AAAANQAAAjUAAAE1AAADNQAAATUAAAA1AAACNQAAATUAAAI1AAACNQAAAjUAAAI1AAAANQAAAjUAAAE1AAABNQAAADUAAAM1AAABNQAAAjUAAAI1AAADNQAAATUAAAA1AAAANQAAAjUAAAI1AAAANQAAAjUAAAI1AAADNQAAAzUAAAI1AAACNQAAADUAAAM1AAAANQAAAzUAAAI1AAABNQAAADUAAAE1AAADNQAAADUAAAE1AAADNQAAADUAAAA1AAACNQAAAjUAAAM1AAACNQAAAzUAAAA1AAAANQAAAzUAAAE1AAABNQAAATUAAAA1AAACNQAAAjUAAAA1AAADNQAAAzUAAAA1AAABNQAAAzUAAAM1AAABNQAAAzUAAAI1AAADNQAAAjUAAAE1AAABNQAAAjUAAAI1AAAANQAAAzUAAAM1AAADNQAAAjUAAAI1AAAANQAAAjUAAAA1AAACNQAAAzUAAAI1AAACNQAAAjUAAAI1AAACNQAAATUAAAI1AAACNQAAAjUAAAM1AAAANQAAADUAAAM1AAABNQAAATUAAAM1AAACNQAAATUAAAE1AAADNQAAADUAAAE1AAAANQAAAzUAAAA1AAAANQAAADUAAAE1AAADNQAAATUAAAM1AAACNQAAAzUAAAM1AAACNQAAATUAAAE1AAABNQAAAzUAAAE1AAABNQAAAjUAAAA1AAAANQAAAjUAAAM1AAADNQAAATUAAAM1AAABNQAAAjUAAAE1AAACNQAAAjUAAAM1AAACNQAAAjUAAAA1AAAANQAAAjUAAAM1AAADNQAAADUAAAI1AAABNQAAAzUAAAI1AAADNQAAAjUAAAM1AAACNQAAAjUAAAM1AAAANQAAAzUAAAI1AAABNQAAATUAAAA1AAABNQAAAzUAAAI1AAACNQAAADUAAAI1AAAANQAAAjUAAAM1AAABNQAAAzUAAAI1AAADNQAAAzUAAAM1AAAANQAAADUAAAA1AAADNQAAADUAAAM1AAADNQAAADUAAAM1AAADNQAAAzUAAAE1AAADNQAAAzUAAAM1AAAANQAAATUAAAM1AAAANQAAATUAAAI1AAABNQAAADUAAAM1AAADNQAAATUAAAI1AAACNQAAAjUAAAM1AAABNQAAATUAAAM1AAABNQAAATUAAAA1AAABNQAAAjUAAAE1AAADNQAAATUAAAA1AAACNQAAADUAAAE1AAADNQAAAjUAAAI1AAAANQAAAjUAAAA1AAADNQAAADUAAAA1AAADNQAAATUAAAA1AAAANQAAADUAAAA1AAADNQAAADUAAAA1AAABNQAAADUAAAM1AAACNQAAAA== + 3,-3: + ind: 3,-3 + tiles: NQAAAjUAAAI1AAABNQAAAzUAAAE1AAABNQAAADUAAAM1AAACNQAAATUAAAA1AAAANQAAAzUAAAM1AAACNQAAATUAAAE1AAAANQAAAzUAAAI1AAADNQAAATUAAAM1AAAANQAAADUAAAE1AAADNQAAADUAAAE1AAAANQAAAjUAAAI1AAADNQAAAjUAAAA1AAADNQAAATUAAAE1AAAANQAAATUAAAE1AAABNQAAADUAAAI1AAADNQAAADUAAAA1AAABNQAAADUAAAA1AAACNQAAADUAAAA1AAABNQAAATUAAAI1AAAANQAAAjUAAAM1AAABNQAAAzUAAAA1AAAANQAAAjUAAAI1AAADNQAAAjUAAAA1AAADNQAAAzUAAAE1AAABNQAAATUAAAE1AAAANQAAAjUAAAA1AAACNQAAAzUAAAI1AAADNQAAATUAAAI1AAABNQAAATUAAAE1AAAANQAAATUAAAI1AAAANQAAAzUAAAI1AAABNQAAATUAAAE1AAACNQAAADUAAAM1AAADNQAAAzUAAAM1AAACNQAAAjUAAAM1AAADNQAAATUAAAI1AAABNQAAAjUAAAE1AAADNQAAATUAAAM1AAADNQAAAjUAAAA1AAABNQAAAjUAAAA1AAACNQAAAzUAAAI1AAADNQAAAjUAAAM1AAABNQAAAjUAAAE1AAABNQAAATUAAAM1AAABNQAAADUAAAM1AAAANQAAAzUAAAA1AAAANQAAADUAAAI1AAAANQAAADUAAAA1AAABNQAAATUAAAM1AAADNQAAATUAAAI1AAABNQAAADUAAAI1AAADNQAAAjUAAAI1AAABNQAAADUAAAA1AAAANQAAAjUAAAE1AAACNQAAAjUAAAM1AAAANQAAADUAAAE1AAADNQAAATUAAAA1AAACNQAAAzUAAAM1AAAANQAAAjUAAAE1AAABNQAAATUAAAA1AAAANQAAATUAAAA1AAAANQAAATUAAAE1AAAANQAAATUAAAA1AAADNQAAAjUAAAM1AAABNQAAAjUAAAM1AAACNQAAADUAAAM1AAADNQAAAzUAAAA1AAAANQAAADUAAAM1AAACNQAAADUAAAI1AAAANQAAATUAAAA1AAAANQAAATUAAAI1AAACNQAAATUAAAM1AAABNQAAATUAAAA1AAADNQAAATUAAAE1AAACNQAAAjUAAAI1AAADNQAAADUAAAM1AAAANQAAAzUAAAE1AAAANQAAATUAAAA1AAACNQAAADUAAAM1AAACNQAAADUAAAI1AAABNQAAADUAAAM1AAAANQAAADUAAAI1AAAANQAAAjUAAAE1AAAANQAAAzUAAAM1AAABNQAAAjUAAAM1AAABNQAAAg== + 4,-3: + ind: 4,-3 + tiles: NQAAADUAAAM1AAAANQAAATUAAAI1AAADNQAAATUAAAE1AAACNQAAADUAAAI1AAABNQAAAjUAAAI1AAADQAAAADUAAAI1AAACNQAAAzUAAAI1AAAANQAAAjUAAAM1AAACNQAAATUAAAI1AAADNQAAAzUAAAM1AAAANQAAADUAAAE1AAAANQAAAjUAAAM1AAACNQAAAzUAAAA1AAAANQAAAzUAAAA1AAACNQAAADUAAAM1AAAANQAAAjUAAANAAAAANQAAADUAAAI1AAADNQAAAzUAAAM1AAADNQAAADUAAAI1AAADNQAAATUAAAM1AAAANQAAADUAAAM1AAABNQAAAzUAAAA1AAABNQAAATUAAAI1AAACNQAAADUAAAM1AAABNQAAADUAAAM1AAAANQAAATUAAAI1AAAAQAAAAEAAAAA1AAAANQAAATUAAAI1AAADNQAAATUAAAI1AAACNQAAAzUAAAI1AAABNQAAAzUAAAM1AAACNQAAAUAAAABAAAAANQAAAjUAAAE1AAAANQAAAzUAAAE1AAABNQAAADUAAAA1AAAANQAAADUAAAI1AAACNQAAAjUAAAE1AAABNQAAAjUAAAM1AAAANQAAAzUAAAA1AAADNQAAATUAAAI1AAADNQAAATUAAAA1AAADNQAAADUAAANAAAAANQAAAUAAAAA1AAABNQAAADUAAAE1AAABNQAAAjUAAAI1AAACNQAAAjUAAAM1AAADNQAAAjUAAAI1AAACQAAAAEAAAAA1AAAANQAAAzUAAAE1AAADNQAAADUAAAI1AAACNQAAADUAAAE1AAABNQAAAjUAAAM1AAADNQAAATUAAAM1AAAAQAAAADUAAAI1AAABNQAAAjUAAAA1AAADNQAAATUAAAI1AAABNQAAAzUAAAA1AAADNQAAADUAAAI1AAABNQAAAjUAAAA1AAABNQAAAjUAAAM1AAACNQAAATUAAAE1AAADNQAAAzUAAAM1AAABNQAAAjUAAAI1AAACNQAAAjUAAANAAAAANQAAADUAAAE1AAAANQAAAzUAAAM1AAACNQAAAjUAAAI1AAABNQAAAjUAAAE1AAADNQAAADUAAAE1AAAANQAAADUAAAM1AAADNQAAAjUAAAM1AAABNQAAAzUAAAI1AAADNQAAATUAAAA1AAACNQAAATUAAAE1AAADQAAAADUAAAA1AAADNQAAAjUAAAA1AAABNQAAATUAAAM1AAAANQAAADUAAAE1AAADNQAAADUAAAI1AAADNQAAA0AAAABAAAAANQAAATUAAAE1AAAANQAAAzUAAAI1AAACNQAAAjUAAAA1AAAANQAAAjUAAAA1AAAANQAAAzUAAAI1AAABQAAAAA== + 4,-2: + ind: 4,-2 + tiles: NQAAADUAAAI1AAAANQAAADUAAAE1AAAANQAAAjUAAAI1AAADNQAAAjUAAAA1AAACNQAAATUAAAM1AAAANQAAADUAAAM1AAAANQAAATUAAAM1AAACNQAAAzUAAAA1AAABNQAAADUAAAE1AAAANQAAAjUAAAM1AAAAQAAAADUAAAA1AAACNQAAAjUAAAE1AAABNQAAADUAAAE1AAABNQAAAjUAAAI1AAADNQAAADUAAAA1AAADNQAAATUAAAI1AAACNQAAATUAAAM1AAADNQAAATUAAAI1AAAANQAAADUAAAA1AAABNQAAAzUAAAA1AAAANQAAATUAAAI1AAAAQAAAADUAAAA1AAABNQAAATUAAAM1AAAANQAAATUAAAE1AAADNQAAAzUAAAE1AAACNQAAAjUAAAFAAAAANQAAAjUAAAA1AAABNQAAAzUAAAI1AAACNQAAATUAAAA1AAABNQAAADUAAAA1AAADNQAAAjUAAAM1AAACNQAAAUAAAAA1AAABNQAAAjUAAAE1AAABNQAAADUAAAA1AAABNQAAAzUAAAA1AAABNQAAADUAAAE1AAADNQAAADUAAAE1AAACQAAAADUAAAM1AAAANQAAAjUAAAI1AAABNQAAATUAAAA1AAAANQAAAzUAAAM1AAADNQAAATUAAAFAAAAANQAAAUAAAAA1AAAANQAAATUAAAM1AAADNQAAADUAAAA1AAAANQAAATUAAAA1AAABNQAAADUAAAI1AAACNQAAAUAAAAA1AAABNQAAADUAAAE1AAAANQAAATUAAAI1AAACNQAAAjUAAAI1AAACNQAAAzUAAAE1AAACNQAAADUAAABAAAAAQAAAADUAAAI1AAACNQAAAjUAAAE1AAAANQAAADUAAAI1AAABNQAAAjUAAAA1AAAANQAAAzUAAAE1AAABQAAAAEAAAAA1AAABNQAAATUAAAA1AAABNQAAAzUAAAI1AAADNQAAATUAAAE1AAAANQAAAzUAAAA1AAAANQAAAjUAAABAAAAANQAAAzUAAAA1AAABNQAAADUAAAM1AAAANQAAADUAAAM1AAABNQAAATUAAAE1AAAANQAAATUAAAJAAAAAQAAAADUAAAE1AAABNQAAAjUAAAA1AAAANQAAAzUAAAA1AAABNQAAADUAAAM1AAABNQAAATUAAAI1AAAAQAAAAEAAAAA1AAABNQAAATUAAAA1AAABNQAAAjUAAAI1AAAANQAAADUAAAM1AAAANQAAATUAAAE1AAADNQAAA0AAAABAAAAANQAAADUAAAM1AAABNQAAAjUAAAA1AAACNQAAAzUAAAI1AAADNQAAATUAAAE1AAACNQAAADUAAAI1AAADNQAAAw== + 4,-1: + ind: 4,-1 + tiles: NQAAATUAAAI1AAADNQAAADUAAAA1AAACNQAAADUAAAA1AAAANQAAAzUAAAM1AAABNQAAADUAAAM1AAACNQAAADUAAAM1AAABNQAAAjUAAAE1AAAANQAAAzUAAAI1AAADNQAAADUAAAI1AAABNQAAADUAAAFAAAAAQAAAAEAAAAA1AAADNQAAADUAAAE1AAADNQAAADUAAAA1AAACNQAAADUAAAI1AAABNQAAAzUAAAE1AAAANQAAA0AAAABAAAAANQAAATUAAAM1AAACNQAAADUAAAI1AAAANQAAAzUAAAI1AAAANQAAAzUAAAA1AAABNQAAATUAAANAAAAAQAAAADUAAAM1AAACNQAAAzUAAAI1AAABNQAAAzUAAAM1AAADNQAAAzUAAAI1AAACNQAAAzUAAAI1AAACQAAAAEAAAAA1AAADNQAAAjUAAAA1AAACNQAAAjUAAAE1AAABNQAAAzUAAAI1AAAANQAAADUAAAM1AAABNQAAATUAAAE1AAAANQAAAzUAAAI1AAADNQAAAjUAAAA1AAAANQAAAzUAAAM1AAABNQAAATUAAAI1AAAANQAAAjUAAAI1AAABNQAAAzUAAAI1AAAANQAAAzUAAAE1AAADNQAAAzUAAAI1AAACNQAAAzUAAAE1AAAANQAAATUAAAI1AAAAQAAAAEAAAAA1AAADNQAAAzUAAAM1AAABNQAAADUAAAE1AAADNQAAADUAAAI1AAADNQAAAjUAAAE1AAAANQAAADUAAAJAAAAANQAAATUAAAA1AAABNQAAAzUAAAM1AAAANQAAAzUAAAA1AAAANQAAAjUAAAA1AAAANQAAATUAAANAAAAAQAAAADUAAAA1AAABNQAAAjUAAAI1AAACNQAAAjUAAAI1AAACNQAAADUAAAM1AAABNQAAAzUAAAA1AAAANQAAAkAAAAA1AAACNQAAATUAAAI1AAABNQAAADUAAAI1AAACNQAAATUAAAA1AAABNQAAAjUAAAA1AAADNQAAAzUAAABAAAAANQAAATUAAAI1AAABNQAAAzUAAAM1AAACNQAAAjUAAAA1AAAANQAAAjUAAAE1AAACNQAAAjUAAAJAAAAAQAAAADUAAAA1AAACNQAAADUAAAE1AAADNQAAADUAAAI1AAACNQAAAjUAAAA1AAABNQAAAjUAAAM1AAACQAAAAEAAAAA1AAABNQAAAzUAAAA1AAABNQAAATUAAAA1AAAANQAAADUAAAI1AAAANQAAATUAAAA1AAACNQAAAEAAAABAAAAANQAAAjUAAAE1AAAANQAAADUAAAI1AAACNQAAATUAAAM1AAAANQAAATUAAAE1AAACNQAAATUAAANAAAAANQAAAQ== + 4,0: + ind: 4,0 + tiles: NQAAAjUAAAE1AAAANQAAAjUAAAA1AAACNQAAAjUAAAM1AAABNQAAATUAAAI1AAACNQAAAzUAAAFAAAAAQAAAADUAAAA1AAACNQAAATUAAAA1AAAANQAAAzUAAAE1AAAANQAAATUAAAM1AAADNQAAAjUAAAA1AAACQAAAADUAAAI1AAAANQAAAzUAAAI1AAABNQAAATUAAAM1AAABNQAAAzUAAAA1AAAANQAAADUAAAA1AAACNQAAAkAAAABAAAAANQAAAjUAAAE1AAAANQAAAzUAAAA1AAAANQAAAzUAAAE1AAACNQAAATUAAAM1AAAANQAAATUAAAM1AAACQAAAADUAAAM1AAAANQAAADUAAAI1AAACNQAAADUAAAA1AAACNQAAADUAAAM1AAAANQAAAjUAAABAAAAAQAAAAEAAAAA1AAABNQAAATUAAAI1AAACNQAAAzUAAAE1AAAANQAAAzUAAAM1AAABNQAAAjUAAAE1AAACNQAAAjUAAAI1AAAANQAAADUAAAM1AAACNQAAADUAAAI1AAAANQAAAzUAAAM1AAAANQAAAjUAAAM1AAAANQAAAzUAAAI1AAABNQAAATUAAAA1AAACNQAAATUAAAA1AAACNQAAATUAAAA1AAAANQAAAjUAAAM1AAADNQAAATUAAAM1AAACQAAAAEAAAAA1AAAANQAAADUAAAE1AAABNQAAADUAAAA1AAAANQAAADUAAAM1AAADNQAAAjUAAAA1AAABQAAAADUAAAJAAAAANQAAATUAAAE1AAADNQAAATUAAAM1AAACNQAAAjUAAAE1AAAANQAAADUAAAE1AAACNQAAAzUAAAM1AAABNQAAAzUAAAA1AAACNQAAATUAAAI1AAABNQAAATUAAAE1AAAANQAAADUAAAI1AAAANQAAADUAAAM1AAABQAAAAEAAAAA1AAAANQAAAjUAAAE1AAABNQAAADUAAAE1AAACNQAAAzUAAAE1AAACNQAAADUAAAI1AAABNQAAAjUAAAI1AAADNQAAAjUAAAM1AAADNQAAATUAAAI1AAADNQAAAzUAAAE1AAACNQAAAjUAAAE1AAACNQAAAjUAAANAAAAAQAAAADUAAAM1AAAANQAAAjUAAAA1AAADNQAAADUAAAI1AAABNQAAAjUAAAE1AAADNQAAAzUAAAI1AAABNQAAAEAAAAA1AAACNQAAAjUAAAI1AAACNQAAAzUAAAE1AAABNQAAAzUAAAE1AAADNQAAAjUAAAI1AAAAQAAAAEAAAAA1AAADNQAAAzUAAAI1AAABNQAAAzUAAAI1AAADNQAAAjUAAAM1AAACNQAAAzUAAAA1AAABNQAAAEAAAABAAAAAQAAAAA== + 4,1: + ind: 4,1 + tiles: NQAAATUAAAI1AAACNQAAADUAAAM1AAAANQAAAzUAAAM1AAAANQAAAzUAAAE1AAABNQAAADUAAAJAAAAANQAAAjUAAAE1AAAANQAAADUAAAA1AAAANQAAATUAAAM1AAAANQAAATUAAAM1AAADNQAAAjUAAANAAAAAQAAAADUAAAM1AAACNQAAAzUAAAA1AAAANQAAAzUAAAI1AAABNQAAATUAAAE1AAADNQAAATUAAAE1AAAANQAAA0AAAABAAAAANQAAAjUAAAI1AAAANQAAADUAAAE1AAADNQAAAjUAAAA1AAAANQAAAjUAAAA1AAADNQAAADUAAAFAAAAAQAAAADUAAAI1AAAANQAAAjUAAAE1AAACNQAAADUAAAM1AAAANQAAAzUAAAE1AAABNQAAADUAAAE1AAABQAAAAEAAAAA1AAAANQAAATUAAAI1AAADNQAAADUAAAA1AAABNQAAADUAAAM1AAACNQAAADUAAAE1AAADNQAAAEAAAABAAAAANQAAATUAAAE1AAACNQAAADUAAAM1AAACNQAAADUAAAI1AAABNQAAAzUAAAI1AAADNQAAAzUAAAM1AAACQAAAADUAAAI1AAABNQAAADUAAAA1AAADNQAAAzUAAAM1AAADNQAAAzUAAAI1AAACNQAAAzUAAAA1AAADNQAAAUAAAAA1AAABNQAAAjUAAAI1AAACNQAAAjUAAAI1AAABNQAAATUAAAE1AAAANQAAATUAAAM1AAAANQAAAzUAAAFAAAAANQAAADUAAAE1AAAANQAAAzUAAAM1AAACNQAAADUAAAA1AAAANQAAAjUAAAA1AAACNQAAADUAAAI1AAADQAAAADUAAAI1AAABNQAAAjUAAAA1AAACNQAAATUAAAA1AAAANQAAAjUAAAA1AAABNQAAAjUAAAM1AAABNQAAAEAAAAA1AAAANQAAAjUAAAE1AAABNQAAAjUAAAI1AAACNQAAATUAAAA1AAADNQAAADUAAAE1AAABNQAAAEAAAABAAAAANQAAADUAAAM1AAACNQAAATUAAAM1AAABNQAAAzUAAAI1AAADNQAAATUAAAA1AAADNQAAATUAAANAAAAAQAAAADUAAAM1AAAANQAAAjUAAAA1AAADNQAAATUAAAI1AAABNQAAAjUAAAE1AAABNQAAADUAAAI1AAADNQAAAkAAAAA1AAACNQAAATUAAAE1AAADNQAAATUAAAE1AAABNQAAATUAAAA1AAACNQAAADUAAAE1AAACNQAAA0AAAABAAAAANQAAAjUAAAA1AAADNQAAADUAAAA1AAADNQAAAzUAAAM1AAACNQAAAzUAAAI1AAAANQAAAzUAAAA1AAADQAAAAA== + 4,2: + ind: 4,2 + tiles: NQAAATUAAAM1AAABNQAAADUAAAI1AAADNQAAAzUAAAI1AAAANQAAAjUAAAI1AAABNQAAAUAAAABAAAAAQAAAADUAAAI1AAABNQAAAjUAAAE1AAAANQAAAjUAAAA1AAABNQAAAjUAAAA1AAACNQAAAjUAAABAAAAAQAAAADUAAAA1AAABNQAAAzUAAAI1AAABNQAAADUAAAI1AAACNQAAADUAAAI1AAAANQAAADUAAAI1AAAANQAAAUAAAABAAAAANQAAAjUAAAM1AAACNQAAAjUAAAM1AAADNQAAADUAAAE1AAABNQAAAzUAAAE1AAACNQAAATUAAAE1AAAAQAAAADUAAAA1AAADNQAAATUAAAM1AAADNQAAAjUAAAA1AAADNQAAATUAAAM1AAADNQAAAjUAAANAAAAAQAAAAEAAAAA1AAACNQAAADUAAAE1AAACNQAAAzUAAAA1AAACNQAAATUAAAI1AAACNQAAATUAAAM1AAACNQAAA0AAAABAAAAANQAAAjUAAAM1AAACNQAAATUAAAA1AAADNQAAATUAAAE1AAACNQAAATUAAAA1AAADNQAAADUAAAFAAAAAQAAAADUAAAM1AAADNQAAADUAAAE1AAAANQAAADUAAAA1AAADNQAAAzUAAAA1AAABNQAAADUAAAA1AAACQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 5,-3: + ind: 5,-3 + tiles: QAAAAEAAAABAAAAAHgAAAh4AAAceAAAFHgAABB4AAAAeAAADHgAAAB4AAAYeAAAGHgAAAR4AAAQeAAAHHgAABEAAAABAAAAAQAAAAB4AAAQeAAABHgAAAB4AAAAeAAAAHgAABB4AAAIeAAAGHgAABx4AAAIeAAACHgAABR4AAABAAAAAQAAAAEAAAAAeAAADHgAAAR4AAAUeAAACHgAABB4AAAAeAAAHHgAAAB4AAAMeAAAGHgAAAB4AAAYeAAAFQAAAAEAAAABAAAAAHgAABx4AAAQeAAADHgAABx4AAAUeAAADHgAAAB4AAAMeAAAFHgAABR4AAAYeAAAHHgAAB0AAAABAAAAAQAAAAEAAAAAeAAAFHgAAAx4AAAUeAAAFHgAAAR4AAAQeAAACHgAABh4AAAYeAAAGHgAABB4AAAVAAAAAQAAAAEAAAAAeAAAFHgAABh4AAAMeAAACHgAAAx4AAAAeAAADHgAAAR4AAAEeAAAGHgAAAR4AAAIeAAAEQAAAAEAAAABAAAAAHgAAAB4AAAAeAAAGHgAABB4AAAceAAADHgAAAB4AAAQeAAAEHgAAAB4AAAIeAAAEHgAAA0AAAABAAAAAQAAAAB4AAAQeAAAGHgAABB4AAAUeAAAAHgAAAR4AAAQeAAADHgAABB4AAAQeAAAGHgAAAB4AAAJAAAAAQAAAAEAAAABAAAAAHgAAAh4AAAEeAAAGHgAABB4AAAMeAAAGHgAABR4AAAUeAAAGHgAABB4AAAYeAAAEQAAAAEAAAABAAAAAQAAAAB4AAAQeAAABHgAAAh4AAAEeAAAEHgAAAx4AAAUeAAAEHgAABR4AAAUeAAAFHgAAAEAAAABAAAAAQAAAAB4AAAceAAABHgAABh4AAAAeAAADHgAABh4AAAceAAAGHgAAAR4AAAQeAAAFHgAABx4AAARAAAAAQAAAAB4AAAYeAAAAHgAABR4AAAIeAAADHgAABh4AAAUeAAAAHgAAAR4AAAceAAAEHgAAAB4AAAUeAAAGQAAAAEAAAAAeAAAAHgAABR4AAAUeAAAEHgAABB4AAAUeAAAHHgAAAR4AAAEeAAAAHgAAAB4AAAIeAAAFHgAABUAAAABAAAAAQAAAAB4AAAEeAAADHgAABx4AAAIeAAADHgAABh4AAAMeAAAFHgAABB4AAAIeAAADHgAAAh4AAAFAAAAAQAAAAEAAAABAAAAAHgAAAB4AAAMeAAADHgAAAB4AAAEeAAADHgAAAx4AAAAeAAAFHgAABh4AAAEeAAADQAAAAEAAAABAAAAAQAAAAB4AAAIeAAAHHgAAAh4AAAEeAAAHHgAABB4AAAEeAAACHgAABx4AAAIeAAAEHgAABA== + 5,-2: + ind: 5,-2 + tiles: QAAAAEAAAABAAAAAHgAAAB4AAAIeAAACHgAAAB4AAAEeAAADHgAABx4AAAYeAAAFHgAABh4AAAIeAAAFHgAAAEAAAABAAAAAHgAABR4AAAAeAAAEHgAAAB4AAAIeAAADHgAABR4AAAceAAAEHgAABB4AAAAeAAADHgAAAh4AAAJAAAAAQAAAAEAAAAAeAAAHHgAABR4AAAIeAAABHgAAAB4AAAMeAAAAHgAABB4AAAMeAAACHgAAAB4AAAAeAAACQAAAAEAAAABAAAAAQAAAAB4AAAEeAAAEHgAAAh4AAAMeAAACHgAAAB4AAAIeAAAAHgAABh4AAAEeAAAAHgAABkAAAABAAAAAQAAAAEAAAAAeAAABHgAABx4AAAQeAAADHgAABR4AAAAeAAADHgAAAh4AAAEeAAAHHgAAAB4AAAZAAAAAQAAAAEAAAAAeAAAFHgAABh4AAAIeAAAGHgAABR4AAAceAAABHgAAAh4AAAQeAAAHHgAAAR4AAAYeAAAFQAAAAEAAAAAeAAAEHgAAAB4AAAceAAAGHgAABh4AAAMeAAAFHgAABR4AAAIeAAAEHgAABR4AAAEeAAABHgAABUAAAABAAAAAHgAABh4AAAEeAAABHgAAAx4AAAYeAAAHHgAAAB4AAAYeAAAEHgAABx4AAAQeAAAGHgAAAh4AAAFAAAAAQAAAAEAAAAAeAAACHgAAAB4AAAceAAAHHgAABh4AAAQeAAAEHgAAAB4AAAEeAAAGHgAABx4AAAQeAAAEQAAAAEAAAABAAAAAQAAAAB4AAAUeAAAEHgAAAB4AAAEeAAABHgAABh4AAAMeAAACHgAAAh4AAAEeAAAAHgAAAkAAAABAAAAAQAAAAEAAAAAeAAAFHgAABh4AAAEeAAAFHgAABB4AAAMeAAAGHgAAAh4AAAUeAAAEHgAABB4AAAZAAAAAQAAAAEAAAABAAAAAHgAAAB4AAAIeAAAHHgAAAR4AAAMeAAAFHgAABh4AAAUeAAAEHgAAAh4AAAMeAAAEQAAAAEAAAABAAAAAQAAAAB4AAAQeAAAEHgAAAR4AAAAeAAAGHgAAAB4AAAMeAAACHgAAAR4AAAYeAAAGHgAAAkAAAABAAAAAHgAABh4AAAIeAAAAHgAAAR4AAAMeAAADHgAAAx4AAAQeAAAHHgAABR4AAAQeAAAGHgAAAB4AAABAAAAAQAAAAB4AAAUeAAADHgAABx4AAAYeAAACHgAABB4AAAAeAAABHgAAAx4AAAAeAAAHHgAAAh4AAAAeAAAGQAAAAEAAAABAAAAAQAAAAB4AAAIeAAAHHgAAAh4AAAMeAAAEHgAAAh4AAAQeAAAGHgAABh4AAAceAAABHgAAAw== + 5,-1: + ind: 5,-1 + tiles: QAAAAEAAAABAAAAAHgAABB4AAAUeAAAAHgAAAR4AAAQeAAAGHgAAAR4AAAIeAAACHgAAAB4AAAIeAAAFHgAABUAAAABAAAAAQAAAAB4AAAIeAAAFHgAABh4AAAAeAAAAHgAAAR4AAAYeAAAAHgAABR4AAAMeAAADHgAABh4AAARAAAAAQAAAAEAAAAAeAAAAHgAABB4AAAIeAAABHgAAAh4AAAEeAAACHgAABR4AAAIeAAABHgAABh4AAAYeAAADQAAAAEAAAABAAAAAQAAAAB4AAAQeAAAGHgAAAB4AAAQeAAABHgAAAB4AAAMeAAAHHgAABh4AAAMeAAAFHgAAAUAAAABAAAAAHgAAAh4AAAUeAAAEHgAABR4AAAEeAAACHgAAAR4AAAMeAAADHgAABh4AAAQeAAABHgAABh4AAAdAAAAAQAAAAB4AAAMeAAAHHgAAAx4AAAAeAAAAHgAABh4AAAYeAAADHgAAAh4AAAUeAAABHgAABh4AAAUeAAAGQAAAAEAAAABAAAAAQAAAAB4AAAYeAAAAHgAABB4AAAYeAAAGHgAABh4AAAUeAAABHgAAAB4AAAIeAAAGHgAAA0AAAABAAAAAQAAAAEAAAAAeAAAHHgAAAB4AAAAeAAAFHgAAAB4AAAIeAAACHgAABx4AAAMeAAAFHgAABB4AAAVAAAAAQAAAAB4AAAIeAAAGHgAAAh4AAAAeAAAFHgAABh4AAAIeAAACHgAABh4AAAMeAAAFHgAABh4AAAQeAAACQAAAAEAAAAAeAAAEHgAAAR4AAAUeAAADHgAAAR4AAAEeAAACHgAABB4AAAMeAAAFHgAABB4AAAYeAAAAHgAAAUAAAABAAAAAQAAAAEAAAAAeAAAFHgAAAR4AAAAeAAABHgAABx4AAAYeAAAAHgAAAx4AAAAeAAACHgAAAR4AAARAAAAAQAAAAEAAAABAAAAAHgAABR4AAAYeAAADHgAAAB4AAAQeAAADHgAABh4AAAIeAAAFHgAABh4AAAUeAAAHQAAAAEAAAAAeAAAHHgAAAh4AAAEeAAACHgAABR4AAAceAAAEHgAAAB4AAAceAAABHgAABh4AAAIeAAAGHgAABUAAAAAeAAAGHgAAAR4AAAUeAAADHgAABx4AAAIeAAADHgAAAR4AAAQeAAAGHgAAAx4AAAQeAAAEHgAABx4AAAFAAAAAQAAAAEAAAABAAAAAHgAABh4AAAYeAAAEHgAAAx4AAAIeAAACHgAAAR4AAAEeAAAGHgAABh4AAAUeAAABQAAAAEAAAABAAAAAQAAAAB4AAAEeAAACHgAABR4AAAEeAAAHHgAAAB4AAAYeAAACHgAABx4AAAEeAAADHgAABQ== + 5,0: + ind: 5,0 + tiles: QAAAAEAAAABAAAAAQAAAAB4AAAAeAAAEHgAABh4AAAYeAAACHgAABB4AAAQeAAAGHgAAAB4AAAIeAAAGHgAABkAAAABAAAAAQAAAAB4AAAEeAAAHHgAAAx4AAAQeAAABHgAAAh4AAAYeAAAAHgAAAh4AAAUeAAAHHgAABh4AAARAAAAAQAAAAEAAAABAAAAAHgAABR4AAAceAAAAHgAAAB4AAAUeAAAGHgAAAh4AAAUeAAAHHgAAAh4AAAMeAAADQAAAAEAAAABAAAAAQAAAAB4AAAAeAAAFHgAAAB4AAAIeAAAAHgAAAx4AAAAeAAABHgAABh4AAAYeAAAAHgAABEAAAABAAAAAQAAAAB4AAAUeAAAEHgAABB4AAAceAAAGHgAABh4AAAYeAAABHgAABB4AAAQeAAAEHgAABh4AAABAAAAAQAAAAEAAAAAeAAAEHgAAAR4AAAMeAAAHHgAABh4AAAMeAAADHgAAAx4AAAQeAAAFHgAAAB4AAAUeAAAHQAAAAEAAAABAAAAAQAAAAB4AAAceAAAAHgAABx4AAAQeAAABHgAABB4AAAIeAAAEHgAAAR4AAAMeAAADHgAAAUAAAABAAAAAQAAAAB4AAAEeAAAHHgAABh4AAAAeAAAEHgAABx4AAAceAAAAHgAAAh4AAAUeAAAFHgAAAh4AAABAAAAAHgAABx4AAAAeAAAHHgAABh4AAAEeAAAAHgAABx4AAAEeAAABHgAAAh4AAAQeAAAEHgAAAh4AAAceAAABQAAAAEAAAAAeAAACHgAABh4AAAQeAAAHHgAABR4AAAMeAAACHgAAAR4AAAIeAAAAHgAAAB4AAAAeAAAAHgAAAkAAAABAAAAAQAAAAEAAAAAeAAACHgAABR4AAAEeAAACHgAAAx4AAAQeAAAEHgAAAh4AAAAeAAACHgAABB4AAAJAAAAAQAAAAEAAAABAAAAAHgAAAx4AAAEeAAAAHgAABh4AAAceAAACHgAAAh4AAAMeAAAEHgAABR4AAAIeAAAGQAAAAB4AAAQeAAACHgAABx4AAAAeAAABHgAAAx4AAAYeAAAEHgAABB4AAAIeAAAEHgAAAh4AAAceAAAAHgAAAUAAAABAAAAAHgAABB4AAAceAAAFHgAABx4AAAYeAAAGHgAAAB4AAAAeAAAEHgAABR4AAAEeAAABHgAABB4AAANAAAAAQAAAAEAAAAAeAAAAHgAAAh4AAAMeAAAHHgAABx4AAAceAAAFHgAAAR4AAAIeAAAHHgAAAh4AAAEeAAAHQAAAAEAAAABAAAAAHgAAAR4AAAMeAAAHHgAABB4AAAAeAAAEHgAABR4AAAQeAAAFHgAAAR4AAAAeAAADHgAABA== + 5,1: + ind: 5,1 + tiles: QAAAAEAAAAAeAAAAHgAABh4AAAIeAAAHHgAABB4AAAQeAAACHgAABx4AAAceAAABHgAABx4AAAYeAAAHHgAAAEAAAABAAAAAHgAABB4AAAQeAAADHgAAAx4AAAAeAAAAHgAABx4AAAceAAAFHgAAAR4AAAMeAAAAHgAAAx4AAABAAAAAQAAAAEAAAABAAAAAHgAAAx4AAAUeAAACHgAABx4AAAMeAAAGHgAAAR4AAAQeAAAHHgAAAB4AAAAeAAAEQAAAAEAAAAAeAAABHgAAAh4AAAYeAAACHgAAAR4AAAIeAAAHHgAAAR4AAAMeAAABHgAABx4AAAEeAAACHgAABUAAAABAAAAAHgAABB4AAAceAAAGHgAABB4AAAYeAAADHgAABR4AAAYeAAACHgAAAx4AAAceAAACHgAABB4AAAZAAAAAQAAAAEAAAAAeAAAFHgAAAh4AAAYeAAAGHgAABx4AAAYeAAAGHgAABx4AAAQeAAABHgAABh4AAAYeAAACQAAAAEAAAABAAAAAHgAABB4AAAceAAAFHgAAAR4AAAAeAAACHgAABR4AAAEeAAAEHgAAAh4AAAQeAAABHgAAAUAAAABAAAAAHgAAAh4AAAQeAAADHgAABB4AAAMeAAAAHgAAAR4AAAUeAAAGHgAABR4AAAAeAAAFHgAAAx4AAARAAAAAQAAAAB4AAAYeAAABHgAABh4AAAMeAAAHHgAABx4AAAIeAAAGHgAABR4AAAceAAAAHgAABx4AAAUeAAAAQAAAAEAAAABAAAAAQAAAAB4AAAEeAAAGHgAAAB4AAAceAAAGHgAABx4AAAEeAAADHgAABh4AAAIeAAAFHgAAA0AAAABAAAAAQAAAAB4AAAMeAAAGHgAABh4AAAYeAAAFHgAABh4AAAIeAAAEHgAAAR4AAAEeAAACHgAAAB4AAAdAAAAAQAAAAB4AAAMeAAAGHgAAAx4AAAQeAAAGHgAAAB4AAAceAAAFHgAABB4AAAUeAAADHgAAAh4AAAAeAAAEQAAAAEAAAABAAAAAHgAABR4AAAEeAAAAHgAABB4AAAIeAAABHgAAAx4AAAIeAAACHgAABx4AAAYeAAADHgAABUAAAABAAAAAQAAAAEAAAAAeAAAGHgAAAh4AAAEeAAAFHgAAAB4AAAYeAAAGHgAAAx4AAAEeAAABHgAAAh4AAAdAAAAAQAAAAEAAAAAeAAADHgAABx4AAAIeAAADHgAAAh4AAAQeAAAFHgAABh4AAAUeAAAGHgAABR4AAAEeAAAHQAAAAEAAAAAeAAAEHgAAAR4AAAAeAAAHHgAAAR4AAAceAAAHHgAABB4AAAEeAAAAHgAABR4AAAUeAAAGHgAABw== + 5,2: + ind: 5,2 + tiles: QAAAAEAAAABAAAAAHgAABR4AAAAeAAAEHgAAAx4AAAAeAAAFHgAABh4AAAQeAAAEHgAAAB4AAAceAAABHgAAAkAAAABAAAAAQAAAAB4AAAAeAAABHgAAAh4AAAQeAAAHHgAABR4AAAQeAAAAHgAAAR4AAAMeAAAAHgAABR4AAAJAAAAAQAAAAB4AAAJAAAAAHgAAAB4AAAEeAAADHgAAAR4AAAUeAAAFHgAAAh4AAAQeAAABHgAAAB4AAAAeAAADQAAAAEAAAAAeAAAFHgAABx4AAAUeAAAAHgAABR4AAAMeAAAAHgAABh4AAAUeAAAEHgAABx4AAAEeAAAAHgAAB0AAAABAAAAAHgAAAh4AAAIeAAAEHgAAAR4AAAMeAAAHHgAAAB4AAAAeAAAAHgAAAR4AAAUeAAAGHgAABx4AAANAAAAAQAAAAB4AAAEeAAAHHgAAAh4AAAAeAAAGHgAAAh4AAAMeAAAEHgAABR4AAAAeAAAGHgAAAx4AAAEeAAAGQAAAAEAAAAAeAAAGHgAABR4AAAceAAAGHgAAAx4AAAAeAAAGHgAAAx4AAAQeAAABHgAAAR4AAAceAAAAHgAAA0AAAABAAAAAQAAAAB4AAAAeAAABHgAABh4AAAMeAAAFHgAAAx4AAAYeAAAGHgAABx4AAAMeAAABHgAABh4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 6,-3: + ind: 6,-3 + tiles: HgAAAh4AAAEeAAAAHgAABR4AAAAeAAAEHgAABh4AAAceAAABHgAAAB0AAAAeAAACHQAAAB0AAAMdAAAFHQAAAh4AAAYeAAABHgAAAB4AAAMeAAAAHgAABh4AAAMeAAAHHgAAAh4AAAQdAAAGHgAAAx0AAAYdAAAAHQAABR0AAAEeAAAGHgAAAB4AAAEeAAAFHgAABx4AAAIeAAACHgAAAx4AAAIdAAAAHQAAAB0AAAUdAAACHQAAAR0AAAQdAAAGHgAAAR4AAAEeAAABHgAAAR4AAAUeAAAFHgAAAx4AAAEeAAAEHgAAAx0AAAQdAAAEHQAAAB0AAAYdAAACHQAABh4AAAEeAAAGHgAAAB4AAAQeAAAEHgAAAB4AAAAeAAAGHgAAAB4AAAIeAAABHgAABh0AAAUdAAADHQAAAR0AAAAeAAABHgAABh4AAAMeAAAEHgAAAB4AAAMeAAAGHgAAAB0AAAEdAAACHQAAAR0AAAEdAAAGHQAABR0AAAUdAAAEHgAAAh4AAAIeAAADHgAAAx4AAAYeAAABHgAAAx4AAAAeAAAHHQAAAx0AAAQdAAAGHQAAAB0AAAEdAAADHQAABh4AAAUeAAAGHgAAAh4AAAYeAAADHgAABh4AAAUeAAAEHgAAAx4AAAQeAAAEHQAAAx0AAAEdAAACHQAABB0AAAIeAAADHgAABR4AAAceAAAAHgAABh4AAAEeAAAFHgAABh4AAAEeAAAEHQAAAh0AAAUdAAAAHQAAAx0AAAEdAAABHgAABR4AAAMeAAAHHgAAAR4AAAEeAAAEHgAABh4AAAAeAAAHHgAAAx4AAAIdAAAGHQAAAh0AAAQdAAAAHQAAAB4AAAMeAAAEHgAAAR4AAAQeAAAEHgAABh4AAAceAAAFHQAABB0AAAEeAAAEHgAABR4AAAAdAAAGHQAAAh0AAAEeAAABHgAAAx4AAAAeAAAAHgAABx4AAAMeAAAFHgAABR4AAAQeAAAHHQAAAR0AAAYdAAAFHQAAAx0AAAIdAAAAHgAABB4AAAMeAAADHgAABR4AAAYeAAABHgAAAB4AAAUdAAAAHQAAAB0AAAUdAAAAHQAAAx0AAAAdAAAEHQAAAB4AAAEeAAADHgAAAR4AAAEeAAACHgAAAB4AAAQeAAACHgAABx4AAAYeAAAEHgAAAh0AAAUdAAABHQAABB0AAAMeAAAHHgAAAR4AAAceAAAHHgAAAx4AAAMeAAACHgAAAB0AAAEdAAAFHgAABR4AAAcdAAABHQAABB0AAAMdAAAEHgAABx4AAAUeAAAGHgAAAh4AAAIeAAABHgAABR4AAAAeAAADHgAABB4AAAcdAAAEHQAABh0AAAIdAAADHQAABg== + 6,-2: + ind: 6,-2 + tiles: HgAAAB4AAAIeAAABHgAAAh4AAAAeAAAFHgAABh4AAAAeAAABHgAABx4AAAEeAAAFHQAABB0AAAQdAAABHQAABh4AAAUeAAAGHgAABR4AAAMeAAAFHgAABh4AAAIeAAADHgAAAB4AAAEeAAAEHgAAAB4AAAQeAAAEHQAAAx0AAAQeAAABHgAAAh4AAAMeAAADHgAABx4AAAAeAAAAHgAABB4AAAMeAAACHQAABh0AAAUdAAAEHQAAAB0AAAMdAAABHgAAAh4AAAYeAAAAHgAAAB4AAAQeAAADHgAABR4AAAQeAAAHHQAAAB4AAAMdAAAGHQAAAh0AAAAdAAACHQAAAB4AAAAeAAAFHgAABx4AAAAeAAACHgAABh4AAAcdAAADHgAABR4AAAIeAAAFHgAABB4AAAcdAAAAHQAABB0AAAEeAAACHgAABh4AAAAeAAAGHgAABR4AAAMeAAAGHgAAAB0AAAEdAAADHQAAAh0AAAYdAAADHQAABB0AAAIdAAAEHgAAAR4AAAQeAAAEHgAABB4AAAAeAAAEHgAAAB4AAAAeAAADHgAAAx0AAAAdAAACHQAAAh0AAAUdAAAEHQAAAB4AAAUeAAABHgAABR4AAAEeAAADHgAAAx4AAAMeAAAEHgAABB4AAAIdAAAGHQAABh4AAAQeAAAHHgAABB4AAAUeAAAGHgAABB4AAAMeAAAAHgAABB4AAAEeAAAFHgAABx0AAAAdAAAGHgAAAR4AAAMdAAADHQAABB4AAAAeAAAHHgAABR4AAAIeAAAFHgAABB4AAAAeAAACHgAAAh0AAAIeAAAEHgAABB4AAAYdAAABHQAAAR0AAAIdAAABHQAABh4AAAceAAAFHgAABx4AAAYeAAADHgAABx4AAAEeAAACHgAABh0AAAQeAAAHHgAABh4AAAceAAAEHQAAAx0AAAIeAAAHHgAAAR4AAAMeAAAAHgAABR4AAAceAAABHgAAAB4AAAUeAAAFHgAAAx0AAAIdAAAGHgAAAB0AAAEdAAAAHgAAAx4AAAEeAAAFHgAAAx4AAAQeAAAGHgAABh4AAAIeAAAFHgAAAR0AAAYdAAAEHQAABh0AAAYdAAAAHQAAAx4AAAYeAAAGHgAAAh4AAAUeAAAHHgAAAR4AAAQeAAAFHgAABB4AAAAdAAAEHQAABB0AAAUdAAADHQAABR0AAAQeAAAAHgAAAh4AAAQeAAACHgAABR4AAAUeAAAAHgAABx4AAAMeAAAGHgAAAh4AAAQdAAAAHQAAAx0AAAQdAAAGHgAAAR4AAAYeAAABHgAAAB4AAAQeAAACHgAAAh4AAAIeAAADHgAAAx4AAAYdAAADHQAAAR0AAAEdAAABHQAAAw== + 6,-1: + ind: 6,-1 + tiles: HgAABB4AAAAeAAAFHgAAAB4AAAEeAAAEHgAAAR4AAAceAAAAHQAABB0AAAIdAAADHQAAAR0AAAEdAAAEHQAAAB4AAAQeAAAHHgAAAx4AAAIeAAAGHgAABx4AAAYeAAAFHgAAAx4AAAMeAAABHQAABh0AAAMdAAACHQAABB0AAAIeAAABHgAAAR4AAAIeAAACHgAABR4AAAMeAAABHgAAAx4AAAEeAAACHQAABh4AAAYeAAAFHQAAAx0AAAUdAAACHgAABx4AAAceAAAAHgAABR4AAAMeAAACHgAAAx4AAAYeAAABHgAABR4AAAIeAAAGHQAAAB0AAAYdAAADHQAAAB4AAAUeAAAHHgAABx4AAAAeAAAFHgAAAB4AAAQeAAADHQAABB0AAAUdAAAFHQAAAx0AAAIdAAADHQAABh0AAAIeAAAGHgAABh4AAAAeAAAEHgAAAx4AAAQeAAAEHQAAAh4AAAEdAAAGHgAAAB4AAAYeAAAGHgAABx0AAAAdAAAFHgAABx4AAAEeAAACHgAAAx4AAAYeAAAEHgAAAR4AAAAeAAAGHQAABh0AAAQdAAAAHQAABR4AAAIdAAADHQAABB4AAAUeAAAHHgAAAB4AAAYeAAACHgAAAR4AAAAeAAAAHQAAAR0AAAUeAAAAHgAABR0AAAYdAAACHQAAAR0AAAUeAAAGHgAAAR4AAAYeAAAGHgAAAx4AAAceAAAFHgAABh4AAAIdAAACHQAABR0AAAMdAAAEHQAABR0AAAYdAAAEHgAAAx4AAAMeAAAGHgAAAx4AAAceAAACHgAAAx4AAAYeAAAEHgAABh4AAAAdAAADHQAABB4AAAQeAAAAHQAABR4AAAIeAAAGHgAAAB4AAAQeAAAAHgAAAR4AAAMeAAACHgAAAx0AAAAeAAAAHgAAAx4AAAEeAAAHHQAABh0AAAIeAAAHHgAAAx4AAAMeAAADHgAAAB4AAAceAAABHgAAAR0AAAQdAAACHQAAAx0AAAQdAAAFHQAAAx0AAAQdAAAEHgAAAB4AAAceAAADHgAABh4AAAceAAAAHgAABx4AAAEdAAAAHQAAAh0AAAEdAAAGHQAAAh0AAAUdAAAFHQAABh4AAAIeAAACHgAAAx4AAAIeAAAFHgAABB4AAAMeAAAEHgAABh4AAAUeAAAEHQAABB0AAAIdAAAAHQAAAR0AAAUeAAAGHgAABh4AAAMeAAADHgAABh4AAAEeAAAGHgAAAB4AAAceAAAEHgAABB0AAAYdAAAGHQAABR0AAAIdAAAFHgAABB4AAAceAAAHHgAAAx4AAAMeAAACHgAAAB4AAAYeAAAAHQAAAB0AAAAdAAACHQAABR0AAAEdAAADHQAABg== + 6,0: + ind: 6,0 + tiles: HgAABR4AAAYeAAAEHgAABR4AAAYeAAAGHgAAAh4AAAQeAAAHHQAAAB0AAAEdAAACHQAAAh0AAAEdAAAFHQAABR4AAAIeAAACHgAAAR4AAAUeAAADHgAAAh4AAAUdAAAGHgAABx0AAAEeAAAEHgAABx4AAAAdAAAGHQAAAB0AAAUeAAABHgAABB4AAAAeAAADHgAABB4AAAEeAAABHgAAAh0AAAIeAAABHgAAAB0AAAYeAAACHQAABR0AAAEdAAABHgAAAx4AAAAeAAAEHgAABR4AAAEeAAABHgAABx4AAAIeAAACHgAABB0AAAQeAAACHgAAAh4AAAIdAAAEHQAAAx4AAAYeAAAEHgAABx4AAAMeAAADHgAABB4AAAAdAAAGHgAAAB0AAAEeAAADHgAAAB4AAAYdAAAAHQAAAR0AAAAeAAAEHgAAAR4AAAAeAAAHHgAABB4AAAMeAAACHgAABR4AAAAdAAAAHQAABB4AAAAdAAAEHQAABB0AAAQdAAAFHgAAAR4AAAMeAAADHgAABR4AAAceAAAEHgAABB0AAAMdAAABHgAAAR4AAAIdAAAEHQAABB0AAAMdAAACHQAABh4AAAceAAAHHgAAAR4AAAEeAAAGHgAAAx4AAAMeAAADHgAABh0AAAAeAAADHQAAAB0AAAIdAAACHQAABh0AAAQeAAAEHgAABx4AAAUeAAABHgAAAh4AAAceAAAGHgAABh0AAAYeAAAAHgAAAR0AAAEdAAABHQAABR0AAAMdAAABHgAABx4AAAceAAAEHgAAAR4AAAAeAAACHgAAAR4AAAIeAAAGHgAABh4AAAMdAAAEHQAABh0AAAQdAAADHQAAAx4AAAMeAAABHgAAAh4AAAEeAAAEHgAABh4AAAUeAAAEHgAAAR4AAAQeAAAFHgAABR0AAAUdAAAAHQAAAR0AAAIeAAACHgAAAB4AAAIeAAADHgAABx4AAAIeAAABHgAAAh4AAAEeAAAEHgAAAh4AAAUdAAACHQAAAh0AAAUdAAACHgAAAh4AAAMeAAAAHgAAAh4AAAAeAAACHgAAAR0AAAEeAAADHQAAAh0AAAIdAAAEHQAAAR0AAAUdAAABHQAAAR4AAAceAAADHgAAAB4AAAMeAAACHgAAAB4AAAEdAAADHgAABB0AAAAdAAACHQAABh0AAAYdAAAAHQAAAR0AAAMeAAABHgAAAx4AAAEeAAAFHgAABh4AAAEeAAAEHgAAAB4AAAQeAAAEHgAABh4AAAQdAAAAHQAAAR0AAAUdAAAAHgAABR4AAAQeAAACHgAAAR4AAAAeAAADHgAABx0AAAQdAAAGHgAAAh4AAAEeAAAHHQAAAh0AAAAdAAACHQAAAA== + 6,1: + ind: 6,1 + tiles: HgAAAh4AAAQeAAABHgAAAR4AAAIeAAACHgAABB4AAAUeAAAGHgAABB0AAAIdAAAFHQAAAx0AAAMdAAADHQAAAx4AAAAeAAAGHgAAAx4AAAQeAAAHHgAAAB4AAAUeAAAGHQAAAB4AAAQeAAAGHgAABR0AAAIdAAAEHQAABB0AAAYeAAADHgAAAx4AAAYeAAACHgAABx4AAAQeAAAFHQAABB0AAAIdAAACHQAABh0AAAAdAAACHQAABR0AAAQdAAABHgAAAx4AAAQeAAAFHgAAAx4AAAMeAAACHgAABh4AAAUdAAABHQAABh0AAAQdAAAFHgAABx4AAAYeAAAFHQAAAB4AAAUeAAADHgAABx4AAAUeAAAEHgAABh4AAAEeAAAAHgAAAB4AAAAdAAADHQAAAx0AAAQdAAABHQAAAR0AAAUeAAAEHgAAAx4AAAMeAAAAHgAAAR4AAAYeAAAHHgAAAR4AAAAdAAAEHQAAAR0AAAUeAAAAHgAABR4AAAceAAABHgAABR4AAAUeAAACHgAAAB4AAAYeAAADHgAAAB4AAAcdAAAEHQAABh4AAAEeAAAAHQAABh0AAAMdAAADHgAAAB4AAAUeAAAFHgAABB4AAAYeAAACHgAABh4AAAQeAAACHgAAAB4AAAceAAAHHQAAAR0AAAQdAAAFHQAAAx0AAAUeAAAFHgAAAh4AAAAeAAABHgAAAx4AAAAeAAABHgAAAh4AAAAdAAACHQAAAh0AAAIdAAACHQAAAh0AAAYdAAADHgAAAR4AAAAeAAAAHgAABR4AAAMeAAAEHgAABB4AAAMeAAAEHQAABB0AAAAdAAAAHQAAAx0AAAMdAAAGHQAABB4AAAMeAAAAHgAAAx4AAAAeAAAEHgAAAh4AAAAdAAADHgAABh0AAAAeAAAAHQAAAB0AAAEdAAACHQAABh0AAAQeAAAGHgAAAR4AAAAeAAAFHgAABB4AAAAeAAAHHQAAAR4AAAceAAAGHgAAAx4AAAcdAAAAHQAAAR0AAAYdAAAGHgAABB4AAAYeAAACHgAABh4AAAIeAAACHgAAAh4AAAEeAAAFHgAAAx4AAAQdAAADHQAABh0AAAMdAAABHQAAAx4AAAMeAAABHgAAAx4AAAQeAAAHHgAAAB4AAAceAAAFHgAAAx0AAAUdAAABHQAAAx0AAAUdAAAEHQAAAB0AAAUeAAABHgAAAh4AAAMeAAABHgAABh4AAAMeAAAHHgAAAh4AAAAeAAAAHQAAAx4AAAUeAAADHQAAAB0AAAYdAAABHgAAAx4AAAIeAAABHgAAAh4AAAYeAAABHgAABx4AAAUeAAAHHgAAAx4AAAUeAAAGHgAABB4AAAQeAAAEHQAABQ== + 6,2: + ind: 6,2 + tiles: HgAABx4AAAAeAAAEHgAAAB4AAAUeAAAHHgAABR4AAAEeAAACHQAABh0AAAUdAAAEHQAABR0AAAYdAAAGHQAAAx4AAAYeAAADHgAABB4AAAEeAAABHgAAAB4AAAAeAAAGHgAABR4AAAUeAAABHgAABB0AAAIeAAAHHgAABh0AAAYeAAADHgAABR4AAAceAAADHgAAAh4AAAQeAAAGHgAABh4AAAceAAAHHgAAAh4AAAUdAAADHQAAAR0AAAAdAAAFHgAAAh4AAAEeAAAFHgAAAh4AAAceAAAAHgAAAB4AAAMeAAAHHgAAAh0AAAIdAAABHQAAAh0AAAYdAAABHQAAAR4AAAYeAAACHgAABh4AAAceAAACHgAAAR4AAAIeAAAFHgAABB4AAAYeAAABHgAABB0AAAMdAAAAHQAABh0AAAYeAAABHgAAAR4AAAUeAAAGHgAAAh4AAAIeAAAEHgAABB4AAAMeAAAEHgAABR4AAAMeAAAGHgAAAh4AAAUeAAAHHgAAAB4AAAQeAAAFHgAABx4AAAIeAAAAHgAABx4AAAIeAAAEHgAABx4AAAQeAAACHgAABR0AAAEdAAADHQAABh4AAAAeAAAAHgAABR4AAAAeAAABHgAABR4AAAEeAAADHgAAAx4AAAUeAAAGHgAAAh4AAAEdAAADHQAABh0AAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 7,-3: + ind: 7,-3 + tiles: HQAAAB0AAAIdAAAFHQAAAB0AAAYdAAADHQAAAB0AAAAdAAACHQAABh0AAAYdAAADHQAAAR0AAAIdAAADHQAAAR0AAAQdAAAGHQAABh0AAAQdAAAAHQAAAB0AAAAdAAACHQAAAx0AAAEdAAAEHQAABR0AAAAdAAAEHQAAAR0AAAIdAAAEHQAABB0AAAAdAAACHQAAAh0AAAYdAAABHQAAAh0AAAAdAAAGHQAAAx0AAAUdAAAEHQAAAB0AAAIdAAADHQAABB0AAAYdAAAFHQAAAx0AAAYdAAAFHQAABR0AAAEdAAADHQAABB0AAAAdAAACHQAABR0AAAQdAAAAHQAABB0AAAEdAAABHQAAAB0AAAUdAAADHQAABR0AAAMdAAAGHQAAAh0AAAEdAAAGHQAABh0AAAQdAAAFHQAAAB0AAAQdAAABHQAABR0AAAEdAAACHQAABR0AAAMdAAACHQAABR0AAAYdAAAEHQAABB0AAAAdAAAGHQAABh0AAAIdAAACHQAAAB0AAAIdAAAAHQAAAR0AAAIdAAAFHQAABh0AAAQdAAAAHQAAAR0AAAYdAAAFHQAAAB0AAAMdAAAGHQAABB0AAAYdAAACHQAABB0AAAQdAAAFHQAABR0AAAIdAAAGHQAAAx0AAAUdAAAFHQAAAh0AAAEdAAAAHQAAAx0AAAUdAAAGHQAAAB0AAAAdAAABHQAAAR0AAAEdAAAEHQAABh0AAAAdAAAAHQAABh0AAAAdAAADHQAABB0AAAUdAAABHQAAAx0AAAMdAAAGHQAAAh0AAAEdAAADHQAABh0AAAUdAAACHQAAAB0AAAEdAAAGHQAAAx0AAAEdAAAAHQAAAh0AAAQdAAAAHQAAAh0AAAYdAAAFHQAABh0AAAIdAAACHQAAAB0AAAEdAAABHQAAAx0AAAQdAAAGHQAAAh0AAAYdAAAFHQAAAR0AAAQdAAADHQAAAB0AAAQdAAACHQAAAB0AAAMdAAACHQAAAh0AAAUdAAAAHQAAAx0AAAQdAAAEHQAAAh0AAAUdAAAEHQAABB0AAAQdAAAFHQAAAB0AAAIdAAABHQAAAB0AAAMdAAADHQAABR0AAAMdAAAEHQAABR0AAAYdAAABHQAABB0AAAQdAAAGHQAAAh0AAAUdAAAEHQAABB0AAAMdAAAFHQAABB0AAAQdAAAAHQAAAB0AAAAdAAAGHQAABh0AAAIdAAACHQAAAx0AAAUdAAAGHQAABR0AAAAdAAAEHQAABB0AAAAdAAAAHQAABh0AAAQdAAADHQAABh0AAAUdAAAAHQAAAh0AAAEdAAACHQAABh0AAAAdAAAGHQAABR0AAAIdAAADHQAABB0AAAIdAAAGHQAAAQ== + 7,-2: + ind: 7,-2 + tiles: HQAABh0AAAUdAAAEHQAAAh0AAAEdAAAFHQAAAx0AAAQdAAAAHQAABh0AAAQdAAAAHQAABB0AAAAdAAAAHQAAAh0AAAIdAAACHQAAAh0AAAMdAAADHQAABB0AAAAdAAAEHQAABh0AAAAdAAAFHQAAAh0AAAIdAAAGHQAAAR0AAAYdAAACHQAABh0AAAIdAAABHQAABB0AAAIdAAAFHQAABR0AAAMdAAAGHQAAAh0AAAAdAAAEHQAAAR0AAAUdAAACHQAABR0AAAIdAAABHQAAAB0AAAAdAAAGHQAAAx0AAAIdAAADHQAAAh0AAAMdAAACHQAAAh0AAAEdAAABHQAAAx0AAAUdAAADHQAAAx0AAAEdAAADHQAAAx0AAAYdAAACHQAABB0AAAUdAAACHQAAAR0AAAMdAAADHQAABR0AAAIdAAACHQAABR0AAAYdAAACHQAAAh0AAAAdAAACHQAABR0AAAQdAAAAHQAAAB0AAAEdAAABHQAAAB0AAAAdAAABHQAAAx0AAAUdAAABHQAAAh0AAAUdAAADHQAABR0AAAYdAAAGHQAABB0AAAMdAAAAHQAAAB0AAAIdAAAGHQAABB0AAAMdAAAEHQAAAB0AAAUdAAAGHQAAAx0AAAQdAAAAHQAAAR0AAAYdAAAGHQAABB0AAAUdAAAGHQAABR0AAAIdAAAAHQAAAB0AAAIdAAAGHQAAAB0AAAUdAAADHQAAAR0AAAQdAAAAHQAAAh0AAAUdAAAAHQAABh0AAAMdAAADHQAAAB0AAAQdAAAFHQAAAR0AAAIdAAACHQAAAB0AAAMdAAAFHQAABB0AAAIdAAAGHQAAAx0AAAUdAAABHQAAAh0AAAAdAAACHQAAAx0AAAYdAAAAHQAABR0AAAYdAAAEHQAAAB0AAAMdAAAAHQAAAR0AAAQdAAAGHQAAAh0AAAUdAAACHQAAAR0AAAAdAAAEHQAAAR0AAAMdAAAFHQAAAR0AAAQdAAADHQAABR0AAAYdAAABHQAABh0AAAUdAAAEHQAABR0AAAMdAAAAHQAABB0AAAEdAAAEHQAAAR0AAAUdAAADHQAABh0AAAEdAAAEHQAAAR0AAAEdAAACHQAAAB0AAAQdAAAEHQAABh0AAAQdAAAFHQAABR0AAAMdAAABHQAABh0AAAEdAAABHQAAAx0AAAYdAAAEHQAAAh0AAAMdAAAAHQAABB0AAAYdAAADHQAABh0AAAYdAAAEHQAABh0AAAUdAAABHQAABh0AAAAdAAAAHQAAAh0AAAEdAAADHQAABR0AAAEdAAACHQAAAh0AAAEdAAABHQAAAB0AAAUdAAAFHQAABh0AAAQdAAAEHQAAAB0AAAMdAAADHQAABQ== + 7,-1: + ind: 7,-1 + tiles: HQAAAR0AAAYdAAACHQAAAR0AAAAdAAADHQAAAR0AAAUdAAABHQAAAh0AAAEdAAAEHQAAAR0AAAUdAAAGHQAAAx0AAAUdAAAAHQAAAx0AAAEdAAAFHQAAAR0AAAAdAAAFHQAAAB0AAAIdAAAEHQAABh0AAAQdAAACHQAABh0AAAIdAAAFHQAABR0AAAMdAAAFHQAAAh0AAAQdAAAFHQAABh0AAAIdAAAAHQAABR0AAAMdAAAEHQAAAR0AAAQdAAACHQAAAR0AAAMdAAADHQAABB0AAAMdAAADHQAABB0AAAUdAAADHQAABR0AAAIdAAAAHQAAAx0AAAIdAAAGHQAABR0AAAYdAAAFHQAABR0AAAAdAAAGHQAAAx0AAAAdAAAAHQAABh0AAAMdAAADHQAABR0AAAUdAAADHQAAAh0AAAIdAAADHQAABR0AAAAdAAACHQAAAR0AAAEdAAAEHQAABR0AAAUdAAADHQAABR0AAAYdAAADHQAABR0AAAYdAAAEHQAAAR0AAAUdAAAAHQAABR0AAAQdAAABHQAABB0AAAUdAAACHQAAAR0AAAMdAAAEHQAABh0AAAYdAAAEHQAAAB0AAAYdAAAEHQAAAR0AAAAdAAAAHQAABh0AAAAdAAAEHQAABh0AAAQdAAAFHQAAAx0AAAEdAAAEHQAAAx0AAAIdAAABHQAABB0AAAUdAAAGHQAAAB0AAAMdAAAGHQAAAh0AAAUdAAAAHQAABh0AAAUdAAAAHQAAAB0AAAMdAAABHQAABR0AAAUdAAADHQAABR0AAAEdAAAEHQAABR0AAAIdAAAFHQAABB0AAAQdAAAFHQAAAR0AAAUdAAABHQAABR0AAAMdAAADHQAAAB0AAAAdAAACHQAAAR0AAAUdAAACHQAAAB0AAAAdAAAFHQAABh0AAAQdAAACHQAABR0AAAMdAAAFHQAAAB0AAAQdAAAGHQAABB0AAAYdAAADHQAAAx0AAAAdAAABHQAAAx0AAAAdAAADHQAABR0AAAUdAAAEHQAAAx0AAAMdAAADHQAABR0AAAUdAAADHQAAAx0AAAAdAAAGHQAAAx0AAAUdAAAGHQAABR0AAAQdAAAAHQAAAB0AAAUdAAADHQAABh0AAAAdAAAAHQAABh0AAAYdAAAGHQAABB0AAAUdAAAEHQAAAx0AAAYdAAAAHQAABh0AAAIdAAACHQAAAh0AAAMdAAACHQAAAR0AAAEdAAAEHQAAAh0AAAAdAAAEHQAAAh0AAAQdAAAAHQAABR0AAAYdAAAEHQAAAx0AAAUdAAAEHQAABR0AAAYdAAAAHQAAAx0AAAAdAAAFHQAABR0AAAQdAAABHQAAAh0AAAQdAAAGHQAABg== + 7,0: + ind: 7,0 + tiles: HQAABR0AAAMdAAABHQAAAB0AAAEdAAACHQAABB0AAAUdAAAAHQAAAR0AAAEdAAACHQAAAB0AAAIdAAACHQAABh0AAAQdAAABHQAABB0AAAYdAAADHQAAAx0AAAYdAAACHQAAAx0AAAYdAAAGHQAAAR0AAAAdAAAAHQAAAh0AAAEdAAAEHQAABB0AAAUdAAABHQAABB0AAAIdAAAGHQAAAR0AAAMdAAAFHQAAAx0AAAAdAAABHQAABB0AAAIdAAAFHQAAAR0AAAQdAAAGHQAAAh0AAAEdAAADHQAABh0AAAEdAAACHQAAAR0AAAIdAAAGHQAAAx0AAAMdAAAGHQAABR0AAAIdAAAAHQAAAx0AAAEdAAAEHQAAAB0AAAQdAAAGHQAABh0AAAUdAAAFHQAAAx0AAAQdAAAFHQAABR0AAAQdAAADHQAAAB0AAAYdAAAAHQAABB0AAAAdAAACHQAAAB0AAAUdAAAGHQAABR0AAAAdAAAEHQAABB0AAAEdAAAEHQAABB0AAAIdAAABHQAABh0AAAIdAAAGHQAABR0AAAYdAAAAHQAABR0AAAAdAAAEHQAABh0AAAMdAAACHQAABR0AAAIdAAABHQAAAh0AAAMdAAABHQAAAB0AAAQdAAAAHQAABB0AAAQdAAAEHQAAAR0AAAUdAAABHQAAAx0AAAIdAAAEHQAABB0AAAUdAAADHQAAAx0AAAQdAAACHQAAAB0AAAQdAAABHQAABB0AAAAdAAAAHQAAAR0AAAMdAAACHQAAAx0AAAAdAAAGHQAABh0AAAYdAAADHQAABB0AAAMdAAAGHQAAAx0AAAMdAAAAHQAABB0AAAAdAAAGHQAABh0AAAAdAAAFHQAABh0AAAEdAAAEHQAABh0AAAMdAAAAHQAAAB0AAAYdAAAEHQAABh0AAAUdAAADHQAAAB0AAAAdAAABHQAAAh0AAAUdAAAFHQAAAx0AAAAdAAAFHQAAAB0AAAAdAAACHQAAAR0AAAAdAAAEHQAAAR0AAAYdAAAAHQAAAh0AAAUdAAAEHQAAAB0AAAEdAAAFHQAAAx0AAAAdAAADHQAABh0AAAMdAAABHQAAAx0AAAMdAAAFHQAAAx0AAAQdAAADHQAABR0AAAMdAAAGHQAAAR0AAAQdAAABHQAABh0AAAQdAAAAHQAAAh0AAAQdAAAFHQAAAR0AAAEdAAAFHQAABB0AAAIdAAABHQAABh0AAAIdAAAFHQAAAx0AAAYdAAAEHQAABR0AAAAdAAAEHQAABh0AAAQdAAAAHQAAAB0AAAAdAAACHQAAAB0AAAIdAAABHQAAAx0AAAQdAAAFHQAABB0AAAMdAAABHQAABR0AAAAdAAAFHQAABQ== + 7,1: + ind: 7,1 + tiles: HQAAAh0AAAIdAAADHQAAAB0AAAQdAAAFHQAABh0AAAAdAAACHQAAAB0AAAEdAAAGHQAABB0AAAMdAAAEHQAABh0AAAMdAAACHQAAAR0AAAQdAAABHQAABR0AAAIdAAADHQAABh0AAAEdAAAFHQAABB0AAAIdAAAFHQAABh0AAAQdAAAGHQAABB0AAAYdAAADHQAAAR0AAAEdAAAFHQAABh0AAAAdAAACHQAAAh0AAAMdAAAGHQAAAB0AAAAdAAABHQAAAh0AAAAdAAAGHQAABB0AAAUdAAAFHQAABB0AAAEdAAACHQAABB0AAAEdAAAGHQAAAR0AAAEdAAAGHQAABR0AAAUdAAAEHQAABR0AAAYdAAAEHQAAAR0AAAUdAAADHQAABh0AAAMdAAAFHQAABB0AAAEdAAAGHQAABR0AAAAdAAADHQAAAx0AAAMdAAABHQAABR0AAAQdAAAGHQAAAh0AAAUdAAAGHQAABR0AAAYdAAACHQAABB0AAAAdAAABHQAABB0AAAAdAAAAHQAABR0AAAQdAAAAHQAABh0AAAAdAAADHQAAAB0AAAMdAAABHQAAAx0AAAMdAAACHQAAAB0AAAEdAAAGHQAABh0AAAUdAAAFHQAABh0AAAMdAAAAHQAAAx0AAAIdAAADHQAABB0AAAMdAAAFHQAAAh0AAAIdAAADHQAABB0AAAMdAAAFHQAABR0AAAMdAAACHQAAAR0AAAYdAAAAHQAABh0AAAUdAAADHQAABh0AAAQdAAAFHQAABR0AAAQdAAACHQAABR0AAAUdAAAEHQAABh0AAAIdAAADHQAABh0AAAAdAAAGHQAABh0AAAYdAAAEHQAAAB0AAAEdAAAGHQAAAx0AAAEdAAAFHQAABB0AAAUdAAADHQAAAB0AAAMdAAAGHQAAAB0AAAEdAAABHQAABh0AAAIdAAADHQAABB0AAAIdAAADHQAABR0AAAUdAAADHQAABB0AAAUdAAABHQAAAx0AAAMdAAAEHQAAAx0AAAUdAAAAHQAAAR0AAAMdAAADHQAAAR0AAAIdAAAFHQAABh0AAAYdAAABHQAAAB0AAAIdAAABHQAAAx0AAAQdAAAFHQAAAh0AAAEdAAAGHQAAAR0AAAAdAAADHQAABh0AAAUdAAADHQAAAB0AAAEdAAAEHQAAAx0AAAUdAAAEHQAAAR0AAAYdAAABHQAAAR0AAAIdAAAAHQAABR0AAAAdAAAGHQAABB0AAAAdAAAFHQAAAR0AAAAdAAADHQAABB0AAAEdAAAGHQAABB0AAAQdAAACHQAAAR0AAAUdAAAGHQAABh0AAAEdAAACHQAAAh0AAAQdAAABHQAAAR0AAAQdAAAEHQAABA== + 7,2: + ind: 7,2 + tiles: HQAAAR0AAAMdAAAGHQAAAh0AAAAdAAADHQAABR0AAAYdAAAEHQAAAB0AAAUdAAAFHQAAAB0AAAYdAAAEHQAABB0AAAUdAAAEHQAAAR0AAAQdAAAGHQAAAB0AAAMdAAAEHQAAAB0AAAQdAAACHQAAAx0AAAIdAAACHQAABB0AAAIdAAACHQAAAh0AAAEdAAAGHQAAAx0AAAMdAAACHQAABR0AAAQdAAAEHQAABh0AAAYdAAAAHQAABh0AAAQdAAAFHQAABB0AAAYdAAAFHQAABh0AAAQdAAAEHQAABh0AAAMdAAAAHQAAAh0AAAUdAAADHQAABh0AAAIdAAADHQAAAB0AAAEdAAAFHQAAAx0AAAIdAAAAHQAABh0AAAQdAAADHQAAAh0AAAAdAAAGHQAABR0AAAQdAAACHQAAAR0AAAMdAAAEHQAAAR0AAAAdAAACHQAAAR0AAAIdAAAGHQAAAx0AAAQdAAABHQAAAB0AAAAdAAADHQAAAR0AAAMdAAABHQAAAB0AAAIdAAAAHQAABh0AAAIdAAABHQAAAh0AAAUdAAADHQAABB0AAAUdAAABHQAABR0AAAYdAAAEHQAAAx0AAAAdAAABHQAABB0AAAAdAAACHQAAAx0AAAYdAAACHQAAAB0AAAUdAAAGHQAAAx0AAAIdAAAGHQAAAh0AAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 8,-3: + ind: 8,-3 + tiles: HQAAAB0AAAMdAAADHQAAAB0AAAAdAAAAHQAAAB0AAAIdAAAGHQAAAh0AAAEdAAAAHQAAAR0AAAQdAAAFHQAABB0AAAYdAAAFHQAAAx0AAAUdAAAEHQAAAx0AAAEdAAAAHQAABR0AAAQdAAAEHQAABh0AAAQdAAAFHQAABh0AAAEdAAADHQAAAB0AAAYdAAABHQAABh0AAAUdAAABHQAABh0AAAEdAAACHQAABR0AAAYdAAACHQAABR0AAAUdAAAFHQAABR0AAAQdAAABHQAAAx0AAAUdAAAEHQAAAB0AAAQdAAAGHQAAAR0AAAIdAAACHQAAAx0AAAYdAAABHQAAAx0AAAQdAAAFHQAABh0AAAQdAAAGHQAABh0AAAYdAAADHQAAAh0AAAYdAAAEHQAABB0AAAIdAAAFHQAAAB0AAAYdAAAFHQAABh0AAAQdAAABHQAAAR0AAAMdAAACHQAABB0AAAUdAAAGHQAAAx0AAAQdAAAEHQAABh0AAAIdAAABHQAABh0AAAMdAAADHQAAAh0AAAAdAAAEHQAAAB0AAAAdAAABHQAABh0AAAMdAAAGHQAABh0AAAIdAAAFHQAAAx0AAAMdAAABHQAABR0AAAMdAAAGHQAAAh0AAAYdAAAEHQAAAx0AAAUdAAAFHQAAAx0AAAYdAAAAHQAABR0AAAYdAAAEHQAAAh0AAAUdAAACHQAAAh0AAAMdAAABHQAABh0AAAIdAAADHQAAAx0AAAMdAAABHQAAAB0AAAUdAAABHQAABB0AAAYdAAACHQAABR0AAAYdAAACHQAAAh0AAAAdAAAGHQAABR0AAAIdAAAGHQAAAR0AAAMdAAAFHQAAAR0AAAUdAAAGHQAABB0AAAEdAAADHQAAAR0AAAYdAAAGHQAAAx0AAAYdAAAGHQAAAx0AAAMdAAAAHQAAAh0AAAMdAAAGHQAAAB0AAAQdAAABHQAAAx0AAAEdAAAFHQAABh0AAAQdAAAEHQAAAB0AAAEdAAACHQAABB0AAAAdAAADHQAAAx0AAAAdAAACHQAAAR0AAAEdAAADHQAAAB0AAAQdAAACHQAABR0AAAEdAAAEHQAAAR0AAAYdAAAFHQAABh0AAAAdAAABHQAAAh0AAAUdAAAGHQAAAB0AAAQdAAACHQAABh0AAAUdAAACHQAAAx0AAAMdAAACHQAABh0AAAQdAAADHQAAAh0AAAIdAAAFHQAABR0AAAEdAAAAHQAABR0AAAUdAAAEHQAABB0AAAUdAAAAHQAABR0AAAUdAAABHQAABh0AAAAdAAAAHQAABh0AAAEdAAAFHQAABB0AAAIdAAACHQAABh0AAAYdAAACHQAAAx0AAAMdAAABHQAAAg== + 8,-2: + ind: 8,-2 + tiles: HQAABR0AAAMdAAACHQAAAR0AAAAdAAAEHQAAAx0AAAEdAAAAHQAAAB0AAAQdAAAEHQAAAB0AAAQdAAAAHQAAAR0AAAAdAAABHQAABh0AAAIdAAAGHQAABh0AAAQdAAADHQAABh0AAAEdAAABHQAAAB0AAAMdAAAFHQAAAh0AAAEdAAADHQAABR0AAAIdAAADHQAAAB0AAAAdAAAGHQAABB0AAAQdAAAGHQAABh0AAAAdAAABHQAAAh0AAAUdAAAAHQAABh0AAAMdAAAAHQAAAx0AAAQdAAACHQAAAh0AAAIdAAAEHQAAAR0AAAQdAAAGHQAABh0AAAMdAAADHQAABB0AAAUdAAACHQAAAh0AAAQdAAAAHQAAAR0AAAUdAAAFHQAABh0AAAEdAAAGHQAABB0AAAYdAAABHQAAAB0AAAYdAAACHQAAAh0AAAMdAAAAHQAAAB0AAAUdAAAGHQAAAB0AAAIdAAACHQAAAB0AAAMdAAAAHQAABB0AAAAdAAAEHQAABR0AAAQdAAACHQAAAx0AAAEdAAAGHQAABB0AAAMdAAAGHQAAAx0AAAEdAAAAHQAAAh0AAAYdAAAAHQAABR0AAAUdAAAAHQAAAR0AAAYdAAAGHQAAAB0AAAYdAAAEHQAAAx0AAAQdAAACHQAABR0AAAAdAAAAHQAABB0AAAAdAAAFHQAABh0AAAYdAAAGHQAABB0AAAEdAAACHQAABR0AAAAdAAAGHQAAAB0AAAQdAAAEHQAAAR0AAAQdAAAGHQAABB0AAAQdAAADHQAABB0AAAAdAAADHQAAAx0AAAUdAAADHQAAAB0AAAIdAAACHQAAAh0AAAAdAAAAHQAAAB0AAAIdAAAAHQAAAh0AAAEdAAACHQAAAR0AAAAdAAAFHQAABB0AAAEdAAAGHQAABh0AAAYdAAABHQAAAh0AAAEdAAAFHQAABB0AAAAdAAADHQAABR0AAAIdAAAGHQAAAx0AAAMdAAAFHQAABh0AAAIdAAADHQAABR0AAAAdAAACHQAAAR0AAAEdAAAFHQAAAh0AAAYdAAACHQAAAh0AAAEdAAADHQAAAh0AAAUdAAABHQAABB0AAAIdAAAFHQAAAh0AAAYdAAADHQAABh0AAAAdAAADHQAAAB0AAAUdAAACHQAABR0AAAMdAAAEHQAAAB0AAAMdAAAGHQAABR0AAAMdAAAFHQAABh0AAAAdAAACHQAABB0AAAMdAAACHQAABR0AAAYdAAAEHQAABR0AAAEdAAACHQAAAR0AAAEdAAAEHQAAAR0AAAUdAAAAHQAAAB0AAAUdAAAGHQAABh0AAAIdAAAAHQAABR0AAAYdAAAEHQAABR0AAAEdAAADHQAABA== + 8,-1: + ind: 8,-1 + tiles: HQAAAh0AAAUdAAABHQAABh0AAAMdAAAFHQAAAx0AAAMdAAABHQAABR0AAAYdAAAAHQAABB0AAAIdAAADHQAAAx0AAAYdAAABHQAAAR0AAAQdAAACHQAAAh0AAAAdAAAFHQAAAR0AAAAdAAADHQAABh0AAAAdAAAGHQAABR0AAAUdAAADHQAAAR0AAAAdAAADHQAABh0AAAUdAAADHQAABR0AAAMdAAAGHQAABB0AAAMdAAAEHQAABh0AAAQdAAAFHQAAAh0AAAQdAAAEHQAAAB0AAAUdAAAAHQAAAB0AAAUdAAADHQAAAh0AAAYdAAACHQAAAx0AAAIdAAADHQAAAR0AAAYdAAADHQAAAh0AAAUdAAAEHQAABB0AAAAdAAACHQAAAR0AAAAdAAABHQAABB0AAAEdAAAGHQAAAB0AAAMdAAAAHQAAAB0AAAMdAAAFHQAABh0AAAUdAAAEHQAAAB0AAAEdAAAGHQAAAR0AAAYdAAAFHQAAAx0AAAMdAAAAHQAABh0AAAEdAAAAHQAABR0AAAAdAAADHQAAAh0AAAAdAAAEHQAAAB0AAAMdAAACHQAABR0AAAIdAAAFHQAAAx0AAAIdAAAEHQAAAB0AAAMdAAAFHQAAAR0AAAEdAAADHQAABh0AAAUdAAAGHQAAAx0AAAUdAAAAHQAABh0AAAUdAAAEHQAAAh0AAAIdAAAEHQAABR0AAAIdAAAEHQAABB0AAAYdAAACHQAAAR0AAAIdAAAFHQAABh0AAAEdAAAEHQAAAR0AAAUdAAAGHQAAAh0AAAMdAAAAHQAAAh0AAAYdAAADHQAABh0AAAUdAAABHQAABB0AAAAdAAAGHQAAAR0AAAAdAAAEHQAAAh0AAAEdAAAEHQAABh0AAAEdAAAGHQAAAB0AAAQdAAAGHQAABh0AAAQdAAAEHQAAAB0AAAMdAAAGHQAABh0AAAQdAAAGHQAABB0AAAIdAAAEHQAABR0AAAAdAAAFHQAAAx0AAAUdAAAGHQAABB0AAAEdAAAEHQAAAB0AAAYdAAACHQAAAR0AAAEdAAACHQAAAB0AAAEdAAAEHQAAAh0AAAQdAAABHQAAAh0AAAAdAAACHQAABh0AAAQdAAAFHQAABB0AAAQdAAAEHQAAAB0AAAAdAAAGHQAABh0AAAIdAAAGHQAABB0AAAAdAAAGHQAABR0AAAMdAAABHQAABh0AAAMdAAAGHQAABB0AAAQdAAABHQAAAR0AAAIdAAADHQAABR0AAAIdAAAGHQAAAB0AAAMdAAABHQAABh0AAAMdAAAAHQAABh0AAAMdAAACHQAAAB0AAAQdAAACHQAAAR0AAAEdAAAGHQAABh0AAAQdAAAGHQAAAQ== + 8,0: + ind: 8,0 + tiles: HQAABh0AAAIdAAAEHQAAAh0AAAIdAAADHQAABR0AAAIdAAACHQAAAx0AAAUdAAAFHQAAAR0AAAYdAAADHQAAAB0AAAIdAAABHQAAAh0AAAAdAAAGHQAAAx0AAAMdAAAEHQAAAR0AAAQdAAACHQAAAB0AAAYdAAAFHQAAAR0AAAEdAAAAHQAABh0AAAYdAAACHQAAAh0AAAMdAAADHQAAAR0AAAMdAAACHQAABR0AAAIdAAADHQAAAB0AAAEdAAAGHQAABB0AAAIdAAACHQAAAx0AAAQdAAAGHQAAAh0AAAAdAAAAHQAABB0AAAAdAAABHQAAAh0AAAQdAAADHQAAAB0AAAYdAAAGHQAAAR0AAAUdAAABHQAABB0AAAMdAAAAHQAAAh0AAAIdAAADHQAAAR0AAAQdAAACHQAAAR0AAAMdAAAEHQAABB0AAAIdAAABHQAAAB0AAAQdAAAFHQAAAR0AAAYdAAAEHQAABR0AAAIdAAAEHQAABB0AAAEdAAADHQAABB0AAAQdAAADHQAAAR0AAAEdAAAEHQAAAB0AAAUdAAADHQAABh0AAAIdAAACHQAABh0AAAYdAAABHQAAAh0AAAYdAAAEHQAABR0AAAIdAAABHQAAAR0AAAEdAAAEHQAAAB0AAAAdAAAAHQAAAh0AAAIdAAADHQAAAB0AAAQdAAAGHQAAAx0AAAAdAAADHQAABB0AAAAdAAAGHQAABh0AAAIdAAAAHQAABR0AAAQdAAAAHQAABR0AAAIdAAAEHQAAAx0AAAUdAAACHQAAAB0AAAIdAAABHQAABR0AAAUdAAAEHQAAAx0AAAQdAAAEHQAAAR0AAAAdAAAGHQAAAR0AAAAdAAABHQAAAx0AAAEdAAACHQAAAB0AAAMdAAAAHQAAAB0AAAMdAAADHQAABB0AAAAdAAADHQAABh0AAAYdAAAEHQAABB0AAAYdAAACHQAAAh0AAAUdAAAAHQAAAx0AAAQdAAACHQAAAR0AAAUdAAAGHQAABh0AAAYdAAAGHQAAAh0AAAMdAAAEHQAABB0AAAQdAAAFHQAABh0AAAAdAAAEHQAABB0AAAIdAAADHQAAAh0AAAEdAAAGHQAABB0AAAQdAAAGHQAABR0AAAMdAAABHQAAAR0AAAYdAAABHQAAAB0AAAUdAAAEHQAABR0AAAMdAAABHQAABB0AAAEdAAAAHQAAAB0AAAIdAAAAHQAABh0AAAQdAAACHQAAAx0AAAQdAAABHQAAAB0AAAEdAAACHQAABh0AAAMdAAACHQAAAR0AAAEdAAAEHQAABR0AAAMdAAAGHQAAAx0AAAIdAAACHQAAAh0AAAQdAAACHQAAAx0AAAMdAAADHQAAAw== + 8,1: + ind: 8,1 + tiles: HQAABR0AAAUdAAAEHQAAAh0AAAAdAAADHQAAAh0AAAUdAAAGHQAAAx0AAAMdAAAAHQAABR0AAAIdAAAAHQAAAB0AAAMdAAABHQAABh0AAAAdAAACHQAAAx0AAAEdAAAFHQAAAR0AAAIdAAAEHQAAAB0AAAIdAAACHQAABR0AAAYdAAAAHQAAAh0AAAEdAAAFHQAAAB0AAAQdAAACHQAABR0AAAUdAAADHQAAAR0AAAUdAAAGHQAABh0AAAAdAAAAHQAABB0AAAUdAAABHQAAAB0AAAMdAAAEHQAAAR0AAAMdAAAEHQAABR0AAAQdAAAFHQAAAh0AAAYdAAAEHQAABh0AAAIdAAAAHQAABR0AAAYdAAADHQAABh0AAAYdAAABHQAABh0AAAYdAAAFHQAABR0AAAUdAAAGHQAAAB0AAAUdAAAAHQAAAx0AAAQdAAAGHQAAAB0AAAQdAAAFHQAAAB0AAAEdAAAGHQAAAh0AAAMdAAAAHQAAAR0AAAAdAAAGHQAAAx0AAAQdAAAFHQAAAR0AAAUdAAAEHQAABR0AAAYdAAAEHQAAAx0AAAIdAAADHQAAAh0AAAMdAAAFHQAAAx0AAAUdAAABHQAABB0AAAIdAAAGHQAABB0AAAAdAAADHQAABR0AAAMdAAABHQAAAx0AAAIdAAABHQAABB0AAAMdAAACHQAABB0AAAIdAAAGHQAABB0AAAYdAAAAHQAAAh0AAAAdAAAAHQAABR0AAAEdAAAFHQAAAB0AAAQdAAAEHQAABh0AAAEdAAACHQAAAx0AAAQdAAAEHQAABR0AAAQdAAAAHQAAAR0AAAYdAAAAHQAABh0AAAMdAAABHQAAAB0AAAUdAAACHQAABh0AAAAdAAAEHQAAAR0AAAQdAAACHQAABR0AAAAdAAAGHQAAAx0AAAIdAAAEHQAAAB0AAAQdAAAAHQAABR0AAAUdAAAAHQAAAR0AAAAdAAAGHQAAAh0AAAEdAAADHQAABR0AAAAdAAAGHQAABB0AAAYdAAAEHQAAAh0AAAUdAAAFHQAAAB0AAAAdAAACHQAAAB0AAAEdAAADHQAAAx0AAAUdAAACHQAABR0AAAEdAAABHQAABB0AAAQdAAACHQAAAh0AAAAdAAADHQAAAh0AAAYdAAACHQAABh0AAAYdAAAEHQAABh0AAAEdAAAGHQAAAR0AAAIdAAAFHQAAAx0AAAQdAAAGHQAABh0AAAEdAAAAHQAABR0AAAYdAAACHQAAAR0AAAYdAAAAHQAABB0AAAAdAAAAHQAAAx0AAAYdAAAFHQAAAR0AAAQdAAADHQAAAx0AAAMdAAAAHQAAAh0AAAUdAAAEHQAAAB0AAAQdAAABHQAABA== + 8,2: + ind: 8,2 + tiles: HQAAAx0AAAEdAAAEHQAABB0AAAYdAAAAHQAABB0AAAEdAAACHQAAAx0AAAIdAAACHQAAAR0AAAMdAAABHQAABB0AAAUdAAABHQAAAR0AAAUdAAAFHQAABR0AAAIdAAAEHQAAAB0AAAMdAAACHQAABB0AAAQdAAABHQAAAB0AAAYdAAAEHQAABh0AAAIdAAAAHQAABB0AAAUdAAAAHQAABh0AAAMdAAAGHQAAAR0AAAMdAAAAHQAABR0AAAUdAAAFHQAAAB0AAAIdAAAGHQAABh0AAAMdAAADHQAABB0AAAAdAAADHQAAAh0AAAYdAAACHQAABB0AAAIdAAAEHQAABR0AAAQdAAACHQAAAh0AAAUdAAAAHQAAAB0AAAUdAAAFHQAABR0AAAYdAAADHQAABB0AAAAdAAAFHQAAAh0AAAMdAAAEHQAABh0AAAMdAAAEHQAAAB0AAAIdAAADHQAABB0AAAIdAAAFHQAAAx0AAAMdAAAFHQAABR0AAAUdAAABHQAAAh0AAAMdAAAFHQAAAB0AAAIdAAABHQAABR0AAAIdAAAAHQAAAx0AAAIdAAAFHQAABB0AAAUdAAAEHQAABR0AAAMdAAAFHQAABh0AAAMdAAABHQAAAB0AAAAdAAADHQAAAx0AAAQdAAACHQAAAh0AAAQdAAADHQAABh0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -5,-3: + ind: -5,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAkEAAABBAAACQQAAA0EAAAJBAAACQQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAANBAAACQQAAAkEAAANBAAABQQAAA0EAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAADQQAAAUEAAAFBAAAAQQAAAUEAAAJBAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAA0EAAAFBAAABQQAAA0EAAABBAAAAQQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAABQQAAA0EAAAJBAAABQQAAAEEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAABQQAAAUEAAABBAAABQQAAA0EAAAFBAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAUEAAAFBAAADQQAAAUEAAABBAAABQQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAAJBAAADQQAAAUEAAANBAAADQQAAAEEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAADQQAAA0EAAAFBAAADQQAAA0EAAANBAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAUEAAAFBAAABQQAAAkEAAAJBAAABQQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAABQQAAAkEAAAFBAAACQQAAA0EAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAACQQAAA0EAAAJBAAABQQAAA0EAAAFBAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAkEAAABBAAABQQAAAEEAAABBAAABQQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAABQQAAAEEAAANBAAACQQAAAkEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAQQAAAkEAAAJBAAADQQAAAEEAAANBAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAUEAAAFBAAACQQAAAkEAAAJBAAACQQAAAg== + -5,-2: + ind: -5,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAUEAAABBAAACQQAAA0EAAANBAAADQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAAAQQAAAUEAAAJBAAACQQAAAUEAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAACQQAAAkEAAAFBAAACQQAAAUEAAAJBAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAkEAAABBAAAAQQAAAkEAAABBAAABQQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAAFBAAADQQAAAkEAAAJBAAACQQAAAkEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAADQQAAAUEAAAJBAAABQQAAAkEAAABBAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAEEAAANBAAAAQQAAAkEAAAJBAAADQQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAANBAAABQQAAAkEAAAJBAAAAQQAAAkEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAABQQAAA0EAAANBAAABQQAAAEEAAAFBAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAA0EAAAJBAAADQQAAAEEAAANBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAANBAAACQQAAA0EAAANBAAAAQQAAAkEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAABQQAAAkEAAABBAAABQQAAAUEAAAFBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAEEAAAFBAAABQQAAAkEAAABBAAABQQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAANBAAAAQQAAAkEAAAFBAAAAQQAAAkEAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAACQQAAA0EAAAFBAAABQQAAAUEAAAJBAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAEEAAANBAAAAQQAAAEEAAABBAAADQQAAAA== + -5,-1: + ind: -5,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAA0EAAAJBAAACQQAAAkEAAAJBAAADQQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAABQQAAAEEAAANBAAADQQAAAkEAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAQQAAAUEAAAJBAAAAQQAAAUEAAANBAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAkEAAABBAAABQQAAA0EAAANBAAAAQQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAANBAAADQQAAAEEAAANBAAACQQAAA0EAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAQQAAA0EAAABBAAABQQAAAkEAAANBAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAUEAAAJBAAABQQAAAkEAAAJBAAAAQQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAAAQQAAA0EAAAFBAAACQQAAAEEAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAQQAAAUEAAANBAAACQQAAAUEAAABBAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAkEAAABBAAACQQAAA0EAAAJBAAACQQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAACQQAAAUEAAABBAAABQQAAAkEAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAACQQAAA0EAAABBAAABQQAAAUEAAAJBAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAUEAAANBAAADQQAAA0EAAABBAAADQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAAFBAAADQQAAAUEAAABBAAACQQAAAEEAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAABQQAAAkEAAANBAAACQQAAAEEAAABBAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAEEAAAJBAAABQQAAAEEAAABBAAABQQAAAw== + -5,0: + ind: -5,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAUEAAABBAAAAQQAAA0EAAABBAAACQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAANBAAACQQAAAUEAAANBAAAAQQAAA0EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAADQQAAAUEAAAJBAAACQQAAAEEAAABBAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAUEAAAFBAAAAQQAAAUEAAAJBAAABQQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAABQQAAAkEAAANBAAACQQAAAkEAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAQQAAA0EAAANBAAADQQAAAEEAAAFBAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAUEAAAFBAAACQQAAAkEAAAJBAAABQQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAAAQQAAAUEAAANBAAABQQAAAUEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAQQAAA0EAAANBAAACQQAAA0EAAANBAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAkEAAABBAAADQQAAA0EAAABBAAABQQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAAFBAAABQQAAAUEAAAFBAAADQQAAAkEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAQQAAA0EAAABBAAABQQAAAEEAAAFBAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAA0EAAAJBAAAAQQAAAUEAAABBAAACQQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAANBAAACQQAAAEEAAAJBAAAAQQAAAkEAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAABQQAAAEEAAABBAAACQQAAA0EAAAJBAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAEEAAAJBAAADQQAAAUEAAAJBAAAAQQAAAw== + -5,1: + ind: -5,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAEEAAANBAAADQQAAAUEAAAJBAAABQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAAJBAAABQQAAAUEAAANBAAAAQQAAA0EAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAQQAAAEEAAANBAAACQQAAAEEAAABBAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAUEAAANBAAABQQAAAUEAAAJBAAABQQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAANBAAADQQAAAUEAAAJBAAABQQAAAkEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAQQAAAUEAAABBAAABQQAAAkEAAABBAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAkEAAAFBAAABQQAAAkEAAAJBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAACQQAAAkEAAAFBAAAAQQAAAkEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAABQQAAA0EAAAFBAAACQQAAAEEAAABBAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAA0EAAANBAAACQQAAAUEAAABBAAADQQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAABQQAAA0EAAAJBAAADQQAAAUEAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAQQAAA0EAAAJBAAACQQAAAEEAAAJBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAkEAAANBAAAAQQAAA0EAAABBAAAAQQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAAJBAAAAQQAAAkEAAAJBAAADQQAAA0EAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAABQQAAA0EAAABBAAABQQAAAUEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAEEAAAJBAAADQQAAAUEAAAJBAAAAQQAAAA== + -5,2: + ind: -5,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAkEAAANBAAAAQQAAAEEAAANBAAADQQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAANBAAADQQAAAEEAAANBAAADQQAAAkEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAQQAAAEEAAABBAAABQQAAAEEAAAFBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAEEAAAJBAAAAQQAAA0EAAAJBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAADQQAAAkEAAABBAAAAQQAAAkEAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAACQQAAAkEAAABBAAADQQAAA0EAAABBAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAEEAAABBAAABQQAAAkEAAAFBAAACQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAABQQAAAUEAAANBAAABQQAAA0EAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 6,-4: + ind: 6,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAeAAADHgAABR4AAAceAAAEHgAAAB4AAAMeAAADHgAAAh4AAAEeAAAAHgAABR0AAAIdAAAAHQAABR0AAAQeAAAFHgAABx4AAAQeAAAEHgAABh4AAAQeAAAGHgAABh4AAAUeAAADHgAABR0AAAIdAAACHQAABh0AAAEdAAAAHgAABB4AAAQeAAACHgAAAR4AAAceAAADHgAAAB4AAAAeAAAGHgAAAh4AAAUdAAADHQAAAh0AAAQdAAADHQAAAx4AAAYeAAAAHgAAAh4AAAAeAAACHgAAAh4AAAYeAAAGHgAAAR4AAAYdAAACHQAAAx0AAAIdAAAAHQAABh0AAAUeAAAGHgAABx4AAAMeAAADHgAABR4AAAEeAAAGHgAABR4AAAAeAAAHHgAAAR0AAAUdAAACHQAABR0AAAIdAAAGHgAAAB4AAAMeAAACHgAAAR4AAAUeAAAEHgAABB4AAAQeAAAAHgAABh4AAAYdAAADHQAAAh0AAAYdAAAEHQAABR4AAAEeAAAFHgAAAx4AAAYeAAAEHgAAAx4AAAAeAAACHgAABB4AAAYeAAAGHQAABB0AAAYdAAAAHQAABR0AAAUeAAABHgAABx4AAAMeAAADHgAABB4AAAIeAAACHgAAAB4AAAYeAAAEHQAAAh0AAAIdAAAAHQAABR0AAAEdAAAGHgAABx4AAAAeAAAHHgAAAB4AAAUeAAACHgAAAR4AAAUeAAAGHgAABh0AAAUdAAAEHQAABh0AAAEdAAAFHQAAAw== + 7,-4: + ind: 7,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAYdAAAAHQAABR0AAAAdAAAFHQAAAh0AAAAdAAAFHQAABh0AAAYdAAAAHQAABB0AAAMdAAAAHQAABB0AAAAdAAACHQAAAx0AAAYdAAAGHQAAAx0AAAQdAAAEHQAAAB0AAAEdAAAFHQAAAB0AAAAdAAABHQAAAh0AAAEdAAACHQAAAB0AAAIdAAAEHQAAAh0AAAAdAAAEHQAABR0AAAEdAAAFHQAABR0AAAMdAAABHQAABR0AAAUdAAABHQAABR0AAAEdAAAEHQAAAh0AAAAdAAADHQAAAh0AAAAdAAAGHQAAAB0AAAAdAAAFHQAAAx0AAAMdAAAGHQAABh0AAAYdAAAEHQAAAB0AAAAdAAAEHQAAAR0AAAUdAAAEHQAABR0AAAMdAAACHQAAAB0AAAIdAAAGHQAABh0AAAMdAAAFHQAABh0AAAUdAAAFHQAABB0AAAYdAAAFHQAABh0AAAQdAAACHQAAAh0AAAQdAAAGHQAAAx0AAAQdAAADHQAABR0AAAYdAAAFHQAABB0AAAEdAAAFHQAABR0AAAYdAAAEHQAAAB0AAAUdAAAEHQAABh0AAAYdAAAFHQAAAR0AAAUdAAADHQAABB0AAAEdAAAFHQAAAx0AAAYdAAAEHQAAAR0AAAEdAAADHQAABh0AAAEdAAADHQAABB0AAAMdAAACHQAAAR0AAAYdAAABHQAABR0AAAIdAAAGHQAAAh0AAAAdAAAEHQAAAB0AAAYdAAAFHQAABR0AAAYdAAAAHQAAAg== + 9,2: + ind: 9,2 + tiles: HQAAAx0AAAIdAAAEHQAAAh0AAAMdAAAGHQAABR0AAAQdAAADHQAAAh0AAAIdAAAFHQAAAh0AAAQdAAACHQAAAR0AAAEdAAAGHQAABh0AAAQdAAADHQAAAx0AAAIdAAABHQAABB0AAAUdAAABHQAABh0AAAYdAAAAHQAAAR0AAAIdAAACHQAAAB0AAAYdAAAFHQAAAB0AAAMdAAAFHQAABB0AAAUdAAAGHQAABh0AAAMdAAABHQAABR0AAAEdAAAEHQAABR0AAAIdAAABHQAABB0AAAIdAAABHQAAAx0AAAIdAAAGHQAAAR0AAAEdAAABHQAAAh0AAAIdAAAGHQAABB0AAAYdAAABHQAAAB0AAAEdAAAEHQAABB0AAAUdAAADHQAABh0AAAIdAAAEHQAABR0AAAYdAAAFHQAAAR0AAAQdAAADHQAABh0AAAEdAAAEHQAAAR0AAAUdAAAEHQAAAx0AAAQdAAADHQAABh0AAAUdAAACHQAABB0AAAAdAAAAHQAAAR0AAAUdAAAGHQAAAB0AAAEdAAACHQAABB0AAAAdAAAFHQAAAR0AAAQdAAAFHQAABh0AAAIdAAAFHQAABh0AAAEdAAAAHQAABB0AAAQdAAAAHQAAAB0AAAAdAAAEHQAAAx0AAAYdAAAEHQAABh0AAAQdAAAAHQAABB0AAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 9,1: + ind: 9,1 + tiles: HQAABR0AAAYdAAACHQAAAB0AAAQdAAACHQAAAB0AAAQdAAAGHQAABR0AAAQdAAABHQAAAR0AAAIdAAADHQAABh0AAAAdAAAGHQAAAx0AAAIdAAAFHQAAAx0AAAQdAAAAHQAABh0AAAMdAAAAHQAABR0AAAUdAAABHQAABB0AAAMdAAAGHQAAAR0AAAMdAAAAHQAAAR0AAAQdAAADHQAAAB0AAAAdAAAGHQAAAB0AAAAdAAAAHQAABR0AAAEdAAAEHQAABB0AAAUdAAAEHQAAAx0AAAEdAAABHQAAAx0AAAEdAAAFHQAAAR0AAAMdAAAGHQAABR0AAAYdAAADHQAAAB0AAAUdAAADHQAAAx0AAAAdAAAGHQAABh0AAAEdAAABHQAAAB0AAAEdAAAAHQAABh0AAAIdAAAFHQAABh0AAAMdAAABHQAABR0AAAMdAAACHQAABh0AAAUdAAABHQAAAB0AAAMdAAAAHQAAAR0AAAUdAAADHQAAAR0AAAMdAAADHQAABh0AAAUdAAAAHQAABh0AAAEdAAAGHQAABB0AAAUdAAABHQAAAx0AAAQdAAADHQAAAR0AAAQdAAAFHQAAAB0AAAAdAAAFHQAAAB0AAAEdAAACHQAAAh0AAAQdAAAAHQAAAh0AAAUdAAACHQAABR0AAAEdAAACHQAAAR0AAAAdAAADHQAAAR0AAAEdAAABHQAAAR0AAAQdAAACHQAABh0AAAIdAAADHQAABh0AAAEdAAADHQAABR0AAAQdAAABHQAAAB0AAAUdAAAGHQAABB0AAAUdAAABHQAABB0AAAAdAAADHQAABB0AAAAdAAACHQAAAx0AAAQdAAAEHQAABh0AAAEdAAAEHQAAAB0AAAIdAAADHQAAAx0AAAIdAAAGHQAAAx0AAAQdAAAAHQAAAh0AAAEdAAAFHQAAAB0AAAUdAAAAHQAABh0AAAUdAAAFHQAABh0AAAMdAAAGHQAABh0AAAEdAAACHQAABR0AAAAdAAABHQAAAR0AAAQdAAADHQAAAx0AAAIdAAAAHQAABR0AAAMdAAAGHQAABR0AAAYdAAAFHQAAAB0AAAEdAAADHQAAAB0AAAIdAAAEHQAABB0AAAAdAAADHQAAAh0AAAIdAAACHQAABB0AAAEdAAABHQAAAB0AAAEdAAABHQAABR0AAAQdAAAAHQAAAR0AAAYdAAAGHQAABR0AAAUdAAACHQAABR0AAAAdAAACHQAABh0AAAEdAAACHQAABR0AAAMdAAADHQAABR0AAAAdAAAFHQAABh0AAAQdAAAGHQAABh0AAAAdAAADHQAAAB0AAAEdAAAGHQAABR0AAAMdAAACHQAABB0AAAEdAAADHQAAAA== + 9,0: + ind: 9,0 + tiles: HQAAAB0AAAEdAAAGHQAABB0AAAAdAAAAHQAAAh0AAAMdAAAGHQAAAh0AAAAdAAAEHQAABB0AAAMdAAABHQAABR0AAAEdAAABHQAABB0AAAMdAAAFHQAABB0AAAYdAAADHQAABh0AAAYdAAADHQAAAx0AAAMdAAACHQAAAB0AAAQdAAABHQAABR0AAAMdAAAGHQAAAx0AAAMdAAAFHQAAAB0AAAEdAAAFHQAAAB0AAAYdAAAEHQAAAB0AAAMdAAABHQAAAh0AAAAdAAABHQAAAh0AAAEdAAAEHQAABB0AAAYdAAABHQAAAh0AAAEdAAABHQAAAx0AAAQdAAAFHQAAAR0AAAMdAAAFHQAABh0AAAYdAAAGHQAABB0AAAAdAAAFHQAAAR0AAAIdAAAGHQAAAR0AAAEdAAACHQAABB0AAAIdAAACHQAAAx0AAAUdAAAAHQAAAh0AAAIdAAACHQAAAR0AAAEdAAAEHQAAAh0AAAEdAAAFHQAAAB0AAAEdAAADHQAABh0AAAEdAAADHQAABh0AAAIdAAAEHQAABh0AAAMdAAABHQAABB0AAAYdAAAEHQAABh0AAAYdAAAGHQAAAx0AAAYdAAABHQAABh0AAAIdAAAGHQAAAB0AAAYdAAADHQAAAR0AAAMdAAAGHQAAAB0AAAYdAAAFHQAAAR0AAAQdAAADHQAAAh0AAAYdAAAEHQAABB0AAAQdAAAAHQAAAx0AAAUdAAAAHQAAAh0AAAUdAAACHQAABh0AAAAdAAADHQAAAB0AAAEdAAACHQAAAB0AAAAdAAAAHQAABh0AAAQdAAAGHQAAAx0AAAQdAAADHQAAAB0AAAMdAAACHQAABR0AAAYdAAAAHQAAAh0AAAMdAAAAHQAABh0AAAEdAAACHQAAAx0AAAEdAAADHQAABR0AAAQdAAAGHQAABh0AAAEdAAADHQAAAx0AAAYdAAABHQAAAB0AAAAdAAAEHQAAAR0AAAAdAAAEHQAABR0AAAMdAAAAHQAAAx0AAAQdAAACHQAABh0AAAMdAAADHQAABR0AAAQdAAAGHQAAAh0AAAEdAAABHQAAAB0AAAAdAAABHQAAAB0AAAYdAAABHQAABh0AAAEdAAAGHQAAAB0AAAAdAAAAHQAAAh0AAAMdAAADHQAABB0AAAQdAAAGHQAABB0AAAEdAAADHQAAAB0AAAYdAAAFHQAABh0AAAQdAAAEHQAAAR0AAAIdAAABHQAAAR0AAAQdAAABHQAABB0AAAIdAAADHQAABR0AAAUdAAAFHQAAAB0AAAEdAAACHQAAAB0AAAYdAAACHQAABB0AAAUdAAACHQAAAR0AAAIdAAAGHQAAAh0AAAIdAAAFHQAAAw== + 9,-1: + ind: 9,-1 + tiles: HQAAAh0AAAMdAAABHQAAAh0AAAQdAAAFHQAAAh0AAAEdAAACHQAAAB0AAAUdAAAAHQAAAh0AAAUdAAAFHQAAAB0AAAEdAAACHQAAAB0AAAYdAAAFHQAAAx0AAAUdAAAFHQAABB0AAAYdAAACHQAAAh0AAAAdAAAFHQAABR0AAAEdAAAFHQAAAx0AAAQdAAAEHQAAAB0AAAEdAAADHQAAAx0AAAAdAAAFHQAAAh0AAAUdAAAEHQAABB0AAAYdAAAEHQAAAx0AAAIdAAAFHQAABB0AAAYdAAAFHQAAAx0AAAIdAAAFHQAAAB0AAAQdAAAEHQAAAx0AAAYdAAAGHQAABh0AAAAdAAAAHQAAAx0AAAIdAAACHQAABR0AAAQdAAABHQAAAx0AAAUdAAABHQAABR0AAAIdAAAEHQAAAR0AAAMdAAAEHQAAAx0AAAMdAAAGHQAAAB0AAAYdAAAGHQAAAx0AAAYdAAADHQAAAx0AAAYdAAADHQAABR0AAAQdAAACHQAAAB0AAAQdAAACHQAAAx0AAAIdAAADHQAABB0AAAUdAAACHQAAAB0AAAYdAAACHQAABR0AAAEdAAAGHQAABR0AAAUdAAAEHQAABB0AAAIdAAABHQAAAx0AAAMdAAADHQAAAx0AAAYdAAAEHQAAAR0AAAAdAAADHQAABh0AAAAdAAAFHQAABR0AAAUdAAAGHQAAAR0AAAIdAAAAHQAABB0AAAUdAAAGHQAABB0AAAEdAAAFHQAAAR0AAAEdAAAFHQAAAB0AAAEdAAAEHQAAAx0AAAUdAAACHQAAAh0AAAIdAAAAHQAABB0AAAAdAAAEHQAABB0AAAYdAAAAHQAAAR0AAAAdAAACHQAABB0AAAMdAAAEHQAABR0AAAIdAAAAHQAABR0AAAAdAAACHQAAAh0AAAEdAAAEHQAABh0AAAYdAAAFHQAAAB0AAAIdAAADHQAAAx0AAAMdAAAFHQAAAx0AAAEdAAADHQAAAR0AAAMdAAAEHQAAAx0AAAQdAAAFHQAABR0AAAMdAAACHQAABR0AAAYdAAADHQAAAx0AAAUdAAADHQAAAh0AAAAdAAACHQAABh0AAAAdAAACHQAAAh0AAAIdAAACHQAAAB0AAAQdAAABHQAABB0AAAIdAAAEHQAAAh0AAAMdAAAAHQAABR0AAAIdAAAEHQAABB0AAAUdAAAGHQAABR0AAAIdAAAGHQAAAx0AAAMdAAAAHQAAAh0AAAEdAAAFHQAABR0AAAMdAAADHQAABB0AAAUdAAACHQAAAx0AAAUdAAAAHQAABR0AAAUdAAABHQAAAR0AAAQdAAABHQAABh0AAAMdAAAAHQAAAR0AAAAdAAAAHQAABQ== + 9,-2: + ind: 9,-2 + tiles: HQAABB0AAAQdAAAAHQAABR0AAAEdAAACHQAAAx0AAAMdAAADHQAABB0AAAIdAAAEHQAAAR0AAAIdAAACHQAAAx0AAAEdAAAAHQAAAx0AAAEdAAACHQAAAh0AAAQdAAAGHQAABh0AAAQdAAADHQAABB0AAAUdAAABHQAABB0AAAQdAAAAHQAABB0AAAAdAAAAHQAAAB0AAAIdAAAGHQAAAx0AAAYdAAAFHQAABR0AAAEdAAABHQAABR0AAAUdAAABHQAAAx0AAAEdAAAEHQAABB0AAAQdAAABHQAABh0AAAYdAAAFHQAABB0AAAAdAAAGHQAAAh0AAAYdAAAAHQAAAh0AAAEdAAAGHQAABB0AAAAdAAAEHQAABR0AAAYdAAACHQAABB0AAAYdAAAGHQAABB0AAAUdAAAGHQAAAB0AAAEdAAADHQAABB0AAAUdAAAFHQAAAx0AAAMdAAAGHQAAAh0AAAUdAAAAHQAAAh0AAAQdAAAEHQAAAh0AAAMdAAAFHQAAAB0AAAEdAAAAHQAABR0AAAEdAAAEHQAABR0AAAQdAAACHQAAAx0AAAUdAAADHQAAAR0AAAAdAAADHQAABh0AAAIdAAAEHQAABR0AAAMdAAADHQAAAB0AAAYdAAADHQAAAR0AAAUdAAAFHQAAAR0AAAMdAAAGHQAABR0AAAMdAAAEHQAABR0AAAIdAAAFHQAAAh0AAAMdAAABHQAABR0AAAUdAAAEHQAAAB0AAAMdAAAEHQAAAx0AAAIdAAAEHQAAAB0AAAAdAAACHQAAAR0AAAAdAAAEHQAABR0AAAYdAAAGHQAABh0AAAMdAAACHQAABR0AAAUdAAADHQAABh0AAAIdAAAAHQAAAx0AAAAdAAADHQAAAx0AAAUdAAAFHQAABR0AAAQdAAADHQAABR0AAAEdAAAGHQAAAx0AAAAdAAABHQAABh0AAAUdAAAEHQAAAB0AAAAdAAABHQAABh0AAAQdAAAAHQAAAh0AAAMdAAAFHQAAAB0AAAIdAAAFHQAABB0AAAIdAAABHQAABh0AAAEdAAAGHQAABR0AAAIdAAADHQAAAR0AAAEdAAABHQAAAR0AAAQdAAAAHQAAAB0AAAQdAAAGHQAAAx0AAAIdAAAAHQAAAh0AAAIdAAAAHQAABB0AAAQdAAAEHQAAAx0AAAMdAAACHQAABB0AAAQdAAAAHQAAAB0AAAMdAAADHQAAAx0AAAYdAAACHQAABB0AAAUdAAAGHQAABR0AAAAdAAACHQAAAB0AAAIdAAAEHQAABR0AAAIdAAAGHQAABB0AAAIdAAACHQAABB0AAAUdAAACHQAAAR0AAAQdAAACHQAABB0AAAUdAAAAHQAABA== + 9,-3: + ind: 9,-3 + tiles: HQAABB0AAAYdAAADHQAAAx0AAAIdAAAEHQAAAR0AAAQdAAADHQAABR0AAAAdAAAGHQAAAx0AAAQdAAABHQAAAR0AAAYdAAAEHQAAAR0AAAYdAAAAHQAAAh0AAAIdAAACHQAABR0AAAUdAAAGHQAABh0AAAYdAAAAHQAABh0AAAIdAAAGHQAABR0AAAAdAAAGHQAABR0AAAUdAAAEHQAABh0AAAUdAAAEHQAAAh0AAAUdAAACHQAAAh0AAAUdAAACHQAABB0AAAIdAAAGHQAABR0AAAUdAAAEHQAAAh0AAAUdAAAAHQAAAB0AAAAdAAAFHQAAAx0AAAEdAAAAHQAAAh0AAAQdAAABHQAABh0AAAEdAAAGHQAAAB0AAAMdAAACHQAAAx0AAAUdAAAGHQAAAB0AAAIdAAAEHQAABR0AAAEdAAABHQAAAR0AAAIdAAABHQAAAh0AAAIdAAABHQAAAh0AAAYdAAABHQAAAh0AAAAdAAABHQAAAx0AAAMdAAADHQAAAx0AAAUdAAACHQAABB0AAAUdAAABHQAAAh0AAAAdAAABHQAAAx0AAAYdAAABHQAABh0AAAUdAAAFHQAAAB0AAAUdAAAFHQAABR0AAAUdAAADHQAABh0AAAQdAAACHQAAAR0AAAYdAAAAHQAABB0AAAMdAAADHQAABB0AAAEdAAAAHQAABR0AAAYdAAAAHQAAAR0AAAEdAAAAHQAAAR0AAAEdAAAGHQAABR0AAAQdAAADHQAABR0AAAEdAAADHQAAAB0AAAEdAAACHQAAAx0AAAAdAAAAHQAAAx0AAAYdAAAGHQAAAR0AAAUdAAAAHQAABB0AAAUdAAABHQAABh0AAAMdAAAEHQAABB0AAAQdAAAGHQAAAx0AAAUdAAAEHQAAAR0AAAIdAAAEHQAABB0AAAUdAAAGHQAABR0AAAYdAAABHQAABB0AAAIdAAACHQAAAB0AAAYdAAABHQAABB0AAAAdAAABHQAAAx0AAAYdAAAFHQAABR0AAAAdAAAEHQAABB0AAAEdAAAAHQAABB0AAAAdAAAGHQAAAx0AAAEdAAABHQAAAB0AAAEdAAAGHQAABR0AAAAdAAACHQAAAx0AAAUdAAAGHQAAAx0AAAYdAAABHQAABh0AAAEdAAACHQAABR0AAAUdAAAAHQAAAx0AAAQdAAADHQAAAR0AAAEdAAAAHQAAAR0AAAQdAAAGHQAAAB0AAAAdAAAAHQAAAh0AAAUdAAAGHQAABR0AAAYdAAAAHQAABR0AAAQdAAABHQAABR0AAAMdAAAEHQAAAB0AAAEdAAAEHQAAAx0AAAAdAAAEHQAABh0AAAEdAAAEHQAAAR0AAAEdAAAEHQAAAw== + 10,2: + ind: 10,2 + tiles: HQAABR0AAAYdAAADHQAABh0AAAMdAAAEHQAAAR0AAAEdAAAGHQAAAR0AAAAdAAAFHQAAAB0AAAYdAAAFHQAABh0AAAEdAAADHQAABR0AAAQdAAACHQAAAx0AAAYdAAAGHQAABB0AAAUdAAAGHQAAAB0AAAQdAAAFHQAAAB0AAAMdAAACHQAAAR0AAAUdAAAAHQAABR0AAAIdAAADHQAABB0AAAAdAAAFHQAAAB0AAAMdAAAAHQAAAR0AAAQdAAAAHQAAAh0AAAQdAAAGHQAABR0AAAEdAAACHQAAAR0AAAUdAAACHQAAAh0AAAUdAAAEHQAABB0AAAAdAAAFHQAAAh0AAAQdAAAGHQAAAx0AAAIdAAAGHQAABR0AAAMdAAAEHQAABB0AAAMdAAAGHQAAAh0AAAEdAAAGHQAABh0AAAEdAAAFHQAABB0AAAAdAAAGHQAABh0AAAAdAAAGHQAAAB0AAAAdAAAEHQAABB0AAAEdAAAEHQAABR0AAAAdAAAEHQAAAB0AAAEdAAABHQAAAx0AAAQdAAABHQAABB0AAAEdAAAGHQAAAB0AAAEdAAAFHQAAAh0AAAMdAAADHQAABB0AAAAdAAABHQAAAh0AAAQdAAAEHQAABB0AAAMdAAADHQAAAx0AAAQdAAAEHQAABB0AAAIdAAABHQAAAh0AAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 10,1: + ind: 10,1 + tiles: HQAABB0AAAYdAAACHQAAAh0AAAMdAAAFHQAABB0AAAIdAAAEHQAABh0AAAEdAAAFHQAABR0AAAQdAAADHQAABh0AAAMdAAAEHQAAAB0AAAEdAAADHQAAAB0AAAUdAAABHQAAAB0AAAAdAAAFHQAABR0AAAMdAAAAHQAABR0AAAIdAAAAHQAAAx0AAAQdAAAGHQAABh0AAAQdAAACHQAABh0AAAIdAAAAHQAAAh0AAAMdAAACHQAABR0AAAMdAAACHQAAAx0AAAEdAAADHQAAAx0AAAUdAAAGHQAABR0AAAUdAAADHQAAAB0AAAQdAAAAHQAAAx0AAAQdAAAFHQAAAB0AAAUdAAACHQAABh0AAAMdAAAGHQAABh0AAAEdAAACHQAABh0AAAAdAAABHQAAAx0AAAIdAAAFHQAABB0AAAIdAAAGHQAABB0AAAUdAAAAHQAABR0AAAQdAAABHQAAAB0AAAIdAAACHQAABh0AAAQdAAADHQAAAB0AAAYdAAAGHQAAAx0AAAYdAAACHQAAAR0AAAYdAAAEHQAAAR0AAAMdAAADHQAABh0AAAYdAAAAHQAABB0AAAMdAAADHQAABh0AAAIdAAAFHQAABh0AAAAdAAAAHQAAAh0AAAIdAAAEHQAAAh0AAAAdAAAGHQAAAh0AAAUdAAAFHQAAAh0AAAIdAAAGHQAAAh0AAAMdAAACHQAAAB0AAAQdAAADHQAAAR0AAAMdAAADHQAABh0AAAEdAAAGHQAABB0AAAMdAAAAHQAABR0AAAEdAAAAHQAAAB0AAAIdAAAEHQAAAx0AAAYdAAAAHQAAAR0AAAAdAAAEHQAAAh0AAAEdAAADHQAAAR0AAAYdAAABHQAABB0AAAQdAAABHQAAAR0AAAEdAAABHQAAAx0AAAMdAAAFHQAAAh0AAAUdAAABHQAABB0AAAUdAAAEHQAABB0AAAIdAAAEHQAABh0AAAUdAAADHQAABB0AAAAdAAADHQAAAB0AAAQdAAAGHQAAAB0AAAYdAAAGHQAABh0AAAAdAAADHQAABh0AAAEdAAADHQAABh0AAAAdAAAGHQAABB0AAAAdAAADHQAAAR0AAAIdAAAAHQAABR0AAAAdAAAEHQAABh0AAAQdAAAGHQAAAR0AAAEdAAABHQAAAh0AAAMdAAACHQAABB0AAAUdAAABHQAABB0AAAIdAAAAHQAAAB0AAAIdAAABHQAABh0AAAIdAAAAHQAAAR0AAAYdAAACHQAAAh0AAAEdAAAGHQAAAB0AAAAdAAABHQAABh0AAAUdAAAFHQAABB0AAAAdAAAAHQAAAx0AAAMdAAACHQAABR0AAAUdAAADHQAAAR0AAAQdAAAGHQAABg== + 10,0: + ind: 10,0 + tiles: HQAAAx0AAAEdAAADHQAABB0AAAEdAAAFHQAAAB0AAAQdAAADHQAAAR0AAAEdAAAFHQAABh0AAAUdAAAAHQAAAx0AAAQdAAAEHQAABB0AAAAdAAAAHQAAAx0AAAQdAAAGHQAABh0AAAYdAAACHQAABB0AAAUdAAACHQAAAx0AAAAdAAAAHQAAAh0AAAMdAAADHQAABR0AAAEdAAAAHQAAAB0AAAUdAAACHQAABh0AAAMdAAAEHQAABR0AAAMdAAAGHQAAAh0AAAUdAAADHQAAAR0AAAAdAAACHQAABR0AAAIdAAADHQAABh0AAAMdAAABHQAAAh0AAAEdAAABHQAABh0AAAYdAAADHQAAAB0AAAMdAAABHQAAAB0AAAEdAAACHQAAAx0AAAYdAAAGHQAAAR0AAAUdAAAEHQAAAR0AAAEdAAAAHQAAAx0AAAMdAAADHQAABh0AAAQdAAABHQAABh0AAAUdAAAGHQAABB0AAAYdAAADHQAAAB0AAAIdAAACHQAABR0AAAIdAAAGHQAAAB0AAAQdAAADHQAAAB0AAAQdAAAGHQAAAR0AAAEdAAAFHQAABh0AAAYdAAAFHQAABB0AAAEdAAAGHQAAAR0AAAUdAAAAHQAABh0AAAQdAAAGHQAABR0AAAYdAAADHQAABh0AAAAdAAAFHQAAAB0AAAUdAAACHQAABR0AAAUdAAADHQAAAh0AAAYdAAADHQAAAx0AAAYdAAACHQAAAB0AAAMdAAAEHQAABh0AAAQdAAADHQAAAx0AAAUdAAABHQAABR0AAAUdAAABHQAABh0AAAIdAAAGHQAABh0AAAAdAAADHQAABB0AAAAdAAAGHQAAAh0AAAQdAAAEHQAABR0AAAUdAAAFHQAAAx0AAAIdAAACHQAAAR0AAAMdAAABHQAABB0AAAEdAAADHQAAAR0AAAYdAAACHQAABh0AAAQdAAABHQAAAx0AAAYdAAAGHQAAAB0AAAQdAAADHQAABh0AAAQdAAAAHQAAAR0AAAEdAAADHQAAAh0AAAYdAAADHQAABB0AAAQdAAAGHQAAAh0AAAQdAAAGHQAABh0AAAAdAAAEHQAABh0AAAMdAAABHQAABh0AAAAdAAAFHQAABB0AAAIdAAAAHQAABR0AAAEdAAAEHQAAAB0AAAQdAAAFHQAABh0AAAEdAAACHQAABh0AAAEdAAAEHQAABB0AAAEdAAACHQAAAB0AAAEdAAAFHQAABB0AAAAdAAACHQAABh0AAAQdAAAFHQAAAx0AAAEdAAADHQAAAh0AAAAdAAABHQAAAB0AAAUdAAADHQAAAx0AAAAdAAAAHQAABB0AAAUdAAADHQAABR0AAAYdAAABHQAAAw== + 10,-1: + ind: 10,-1 + tiles: HQAAAh0AAAEdAAAAHQAABB0AAAIdAAADHQAAAh0AAAIdAAABHQAAAR0AAAUdAAAGHQAAAR0AAAQdAAAFHQAABh0AAAEdAAAFHQAAAx0AAAIdAAACHQAAAR0AAAQdAAAFHQAABR0AAAQdAAAEHQAABB0AAAIdAAAGHQAABh0AAAUdAAAAHQAABh0AAAAdAAACHQAAAR0AAAMdAAAEHQAABB0AAAQdAAACHQAABR0AAAAdAAAEHQAABR0AAAUdAAADHQAABR0AAAAdAAADHQAAAh0AAAQdAAADHQAAAh0AAAQdAAAAHQAABR0AAAMdAAABHQAAAR0AAAMdAAACHQAAAh0AAAYdAAAFHQAAAB0AAAIdAAAAHQAAAR0AAAIdAAABHQAABh0AAAYdAAAAHQAABh0AAAUdAAAGHQAAAR0AAAEdAAADHQAAAB0AAAMdAAAGHQAABB0AAAQdAAAGHQAABh0AAAMdAAACHQAAAx0AAAIdAAADHQAAAR0AAAEdAAAFHQAABh0AAAIdAAAFHQAAAR0AAAMdAAAGHQAABR0AAAQdAAADHQAAAx0AAAEdAAACHQAABR0AAAYdAAAFHQAABh0AAAIdAAAEHQAAAR0AAAAdAAAEHQAAAR0AAAUdAAAAHQAABR0AAAEdAAACHQAAAh0AAAYdAAAFHQAAAh0AAAQdAAAFHQAAAR0AAAUdAAABHQAAAh0AAAMdAAADHQAABB0AAAEdAAABHQAAAx0AAAYdAAABHQAAAR0AAAYdAAABHQAAAR0AAAUdAAAAHQAABh0AAAUdAAACHQAABB0AAAUdAAACHQAAAR0AAAQdAAAFHQAABR0AAAEdAAAFHQAAAx0AAAYdAAADHQAAAR0AAAYdAAAFHQAABh0AAAAdAAADHQAABB0AAAMdAAAAHQAAAR0AAAEdAAABHQAAAB0AAAYdAAAEHQAABh0AAAAdAAAAHQAABR0AAAIdAAADHQAABh0AAAEdAAADHQAAAx0AAAIdAAAGHQAAAR0AAAMdAAAFHQAABR0AAAIdAAABHQAABR0AAAAdAAAEHQAAAB0AAAAdAAADHQAAAB0AAAUdAAAEHQAAAB0AAAIdAAACHQAAAx0AAAQdAAACHQAABR0AAAEdAAACHQAAAx0AAAUdAAAFHQAAAx0AAAQdAAAGHQAABB0AAAYdAAAAHQAAAB0AAAIdAAADHQAAAB0AAAUdAAAAHQAABh0AAAAdAAAAHQAAAB0AAAUdAAABHQAABB0AAAMdAAABHQAAAB0AAAEdAAAFHQAAAB0AAAAdAAAEHQAABh0AAAYdAAACHQAABh0AAAIdAAAEHQAAAx0AAAYdAAADHQAAAR0AAAUdAAAAHQAABA== + 10,-2: + ind: 10,-2 + tiles: HQAAAh0AAAUdAAAFHQAAAB0AAAUdAAADHQAAAR0AAAAdAAADHQAABh0AAAUdAAAEHQAAAh0AAAQdAAADHQAABh0AAAMdAAACHQAAAB0AAAMdAAABHQAABB0AAAMdAAABHQAABR0AAAEdAAACHQAAAx0AAAEdAAABHQAAAB0AAAAdAAAEHQAABh0AAAAdAAACHQAABR0AAAQdAAACHQAABB0AAAYdAAAAHQAABB0AAAIdAAAGHQAABh0AAAEdAAACHQAAAB0AAAYdAAAAHQAABR0AAAQdAAAEHQAAAh0AAAYdAAAFHQAAAR0AAAAdAAAAHQAABR0AAAMdAAACHQAAAx0AAAQdAAAGHQAAAB0AAAMdAAABHQAABR0AAAMdAAACHQAAAR0AAAMdAAABHQAAAx0AAAMdAAADHQAAAx0AAAMdAAAAHQAAAB0AAAAdAAACHQAAAB0AAAUdAAAFHQAABR0AAAYdAAACHQAAAx0AAAMdAAAEHQAAAx0AAAUdAAADHQAAAh0AAAUdAAAEHQAAAx0AAAYdAAACHQAAAB0AAAMdAAAFHQAABB0AAAQdAAABHQAAAh0AAAQdAAAFHQAAAh0AAAYdAAAGHQAABR0AAAQdAAAFHQAABh0AAAAdAAABHQAABR0AAAUdAAABHQAAAB0AAAIdAAABHQAABR0AAAUdAAAGHQAAAB0AAAAdAAAGHQAAAB0AAAMdAAADHQAAAB0AAAQdAAAAHQAAAh0AAAUdAAAEHQAABR0AAAYdAAAAHQAABR0AAAIdAAACHQAAAB0AAAUdAAAGHQAABB0AAAMdAAAFHQAAAR0AAAMdAAAEHQAAAx0AAAUdAAAAHQAAAx0AAAEdAAACHQAABh0AAAAdAAABHQAAAh0AAAUdAAABHQAAAB0AAAMdAAACHQAABh0AAAAdAAAEHQAAAB0AAAAdAAAFHQAAAh0AAAUdAAAEHQAAAh0AAAMdAAAEHQAAAx0AAAAdAAABHQAABR0AAAIdAAABHQAABR0AAAIdAAABHQAAAB0AAAUdAAAAHQAAAB0AAAUdAAAGHQAABR0AAAYdAAAGHQAABB0AAAUdAAAEHQAAAR0AAAQdAAACHQAAAR0AAAQdAAACHQAAAB0AAAUdAAAFHQAABB0AAAYdAAADHQAABh0AAAYdAAAFHQAABh0AAAMdAAABHQAAAh0AAAYdAAAEHQAABB0AAAYdAAAGHQAAAh0AAAAdAAAEHQAAAx0AAAQdAAAAHQAAAh0AAAIdAAAAHQAABh0AAAIdAAAGHQAAAx0AAAAdAAABHQAABh0AAAMdAAAFHQAABR0AAAMdAAAFHQAAAx0AAAUdAAACHQAABh0AAAUdAAAEHQAABg== + 10,-3: + ind: 10,-3 + tiles: HQAABR0AAAAdAAAAHQAABh0AAAUdAAADHQAAAh0AAAQdAAABHQAABR0AAAQdAAAAHQAAAR0AAAAdAAACHQAABR0AAAMdAAAFHQAAAB0AAAMdAAABHQAABB0AAAMdAAAAHQAAAh0AAAUdAAAFHQAABR0AAAMdAAABHQAABB0AAAMdAAAAHQAAAB0AAAMdAAAGHQAABh0AAAIdAAABHQAAAB0AAAEdAAADHQAABh0AAAAdAAABHQAAAR0AAAEdAAABHQAABR0AAAEdAAAAHQAABR0AAAUdAAADHQAABR0AAAEdAAACHQAAAh0AAAEdAAAGHQAAAB0AAAAdAAADHQAABB0AAAMdAAACHQAAAR0AAAMdAAACHQAABR0AAAMdAAAFHQAAAh0AAAAdAAAEHQAABR0AAAUdAAADHQAABh0AAAMdAAAFHQAAAx0AAAEdAAAFHQAAAB0AAAUdAAADHQAAAx0AAAAdAAAAHQAAAh0AAAEdAAADHQAAAR0AAAEdAAAGHQAABB0AAAMdAAABHQAAAB0AAAQdAAAFHQAABR0AAAYdAAAFHQAAAR0AAAIdAAAFHQAAAx0AAAYdAAAEHQAAAR0AAAIdAAAAHQAAAh0AAAQdAAADHQAAAR0AAAEdAAAAHQAAAx0AAAMdAAACHQAAAR0AAAYdAAAGHQAAAB0AAAUdAAAFHQAAAR0AAAUdAAAAHQAAAx0AAAEdAAAGHQAABh0AAAIdAAADHQAABB0AAAUdAAAFHQAABR0AAAIdAAACHQAAAB0AAAQdAAACHQAAAx0AAAAdAAAGHQAAAR0AAAIdAAACHQAAAh0AAAAdAAAEHQAAAh0AAAAdAAAFHQAAAh0AAAEdAAACHQAAAx0AAAEdAAAAHQAAAx0AAAMdAAAFHQAABh0AAAEdAAADHQAAAx0AAAIdAAAAHQAABR0AAAQdAAAAHQAABh0AAAUdAAABHQAAAx0AAAMdAAAAHQAAAh0AAAUdAAADHQAABB0AAAAdAAABHQAABR0AAAIdAAADHQAABB0AAAEdAAAEHQAAAx0AAAYdAAAFHQAAAh0AAAQdAAAAHQAAAB0AAAUdAAACHQAAAh0AAAYdAAABHQAAAh0AAAMdAAACHQAABB0AAAUdAAACHQAAAB0AAAQdAAADHQAABh0AAAMdAAAFHQAAAB0AAAQdAAAAHQAABR0AAAMdAAABHQAABh0AAAUdAAAFHQAABh0AAAMdAAAAHQAAAh0AAAIdAAACHQAAAR0AAAQdAAAAHQAAAB0AAAQdAAABHQAAAB0AAAMdAAAGHQAAAh0AAAIdAAAFHQAAAB0AAAAdAAADHQAABh0AAAIdAAAEHQAAAR0AAAYdAAAGHQAABg== + 11,2: + ind: 11,2 + tiles: HQAAAR0AAAYdAAACHQAAAx0AAAQdAAAFHQAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAUdAAAAHQAAAx0AAAYdAAADHQAAAh0AAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAADHQAAAx0AAAEdAAABHQAABh0AAAMdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAABB0AAAIdAAADHQAABB0AAAAdAAABHQAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAIdAAAFHQAABB0AAAYdAAABHQAAAh0AAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAEHQAAAB0AAAAdAAABHQAABR0AAAIdAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAR0AAAUdAAAEHQAABB0AAAQdAAAGHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAEdAAAEHQAABh0AAAQdAAACHQAAAR0AAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 11,1: + ind: 11,1 + tiles: HQAAAR0AAAYdAAADHQAABR0AAAQdAAAGHQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAYdAAAEHQAAAB0AAAQdAAADHQAABh0AAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAGHQAABB0AAAQdAAABHQAABR0AAAMdAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAR0AAAMdAAAFHQAAAB0AAAAdAAAGHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAUdAAABHQAAAR0AAAAdAAAFHQAAAB0AAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAABHQAABh0AAAYdAAAEHQAAAB0AAAEdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAABh0AAAIdAAACHQAAAR0AAAQdAAAFHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAQdAAABHQAAAx0AAAUdAAAFHQAAAR0AAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAEHQAAAB0AAAIdAAAEHQAABh0AAAUdAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAh0AAAUdAAADHQAAAB0AAAIdAAAFHQAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAQdAAABHQAABh0AAAIdAAADHQAABB0AAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAGHQAAAx0AAAIdAAABHQAAAx0AAAQdAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAR0AAAQdAAABHQAABR0AAAQdAAAFHQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAMdAAAFHQAAAB0AAAMdAAAAHQAAAB0AAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAACHQAAAx0AAAIdAAACHQAAAB0AAAYdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAR0AAAQdAAABHQAAAB0AAAYdAAAAHQAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 11,0: + ind: 11,0 + tiles: HQAABB0AAAEdAAABHQAABB0AAAQdAAAFHQAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAUdAAADHQAABh0AAAYdAAAGHQAABR0AAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAACHQAAAR0AAAUdAAAAHQAAAB0AAAEdAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAABh0AAAUdAAAFHQAABB0AAAMdAAABHQAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAQdAAADHQAAAx0AAAQdAAAGHQAABR0AAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAEHQAAAB0AAAIdAAAEHQAAAx0AAAMdAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAh0AAAAdAAAEHQAABR0AAAMdAAACHQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAUdAAACHQAAAR0AAAMdAAACHQAABR0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAABHQAAAB0AAAAdAAADHQAABB0AAAIdAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAABR0AAAYdAAABHQAAAR0AAAAdAAAGHQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAIdAAADHQAABR0AAAAdAAAFHQAAAh0AAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAHQAABR0AAAEdAAACHQAABR0AAAIdAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAABh0AAAQdAAABHQAABB0AAAYdAAABHQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAQdAAAEHQAABR0AAAUdAAADHQAAAh0AAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAFHQAAAR0AAAIdAAABHQAAAB0AAAUdAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAR0AAAQdAAAAHQAABR0AAAQdAAAEHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 11,-1: + ind: 11,-1 + tiles: HQAAAR0AAAEdAAAGHQAAAR0AAAYdAAABHQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAdAAAEHQAABh0AAAIdAAAFHQAAAx0AAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAHQAABR0AAAYdAAAGHQAABB0AAAYdAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAR0AAAUdAAACHQAABB0AAAEdAAAGHQAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAMdAAADHQAABB0AAAQdAAADHQAABB0AAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAADHQAABR0AAAMdAAAEHQAABR0AAAUdAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAABh0AAAQdAAAAHQAAAx0AAAEdAAACHQAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAdAAACHQAABR0AAAUdAAAFHQAAAh0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAEHQAAAx0AAAYdAAADHQAAAB0AAAQdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAx0AAAQdAAACHQAAAR0AAAIdAAABHQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAEdAAAFHQAAAR0AAAIdAAAFHQAAAB0AAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAGHQAAAR0AAAYdAAADHQAABB0AAAMdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAx0AAAYdAAAEHQAAAB0AAAUdAAAGHQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAdAAAAHQAABR0AAAMdAAAFHQAABR0AAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAACHQAAAB0AAAMdAAABHQAABB0AAAEdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAB0AAAYdAAAEHQAAAh0AAAUdAAAEHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 11,-2: + ind: 11,-2 + tiles: HQAAAR0AAAYdAAAEHQAAAB0AAAAdAAAGHQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAQdAAACHQAABh0AAAAdAAAEHQAABh0AAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAEHQAAAx0AAAAdAAABHQAABh0AAAUdAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAh0AAAYdAAAEHQAABh0AAAEdAAAFHQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAEdAAAEHQAAAh0AAAUdAAAAHQAAAR0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAACHQAAAh0AAAAdAAAEHQAABh0AAAEdAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAABR0AAAYdAAAFHQAAAx0AAAQdAAABHQAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAIdAAAGHQAAAx0AAAAdAAACHQAABB0AAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAHQAABR0AAAIdAAAEHQAABB0AAAQdAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAABh0AAAIdAAACHQAABB0AAAEdAAAGHQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAUdAAAGHQAAAB0AAAQdAAADHQAAAh0AAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAFHQAABB0AAAYdAAAEHQAAAh0AAAEdAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAABR0AAAIdAAAGHQAAAx0AAAUdAAACHQAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAIdAAAFHQAAAR0AAAIdAAAGHQAAAB0AAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAEHQAABB0AAAAdAAAAHQAAAR0AAAMdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAB0AAAMdAAAAHQAAAx0AAAUdAAAEHQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + 11,-3: + ind: 11,-3 + tiles: HQAABR0AAAIdAAAEHQAABh0AAAAdAAADHQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAQdAAADHQAAAh0AAAMdAAAGHQAAAh0AAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAFHQAABB0AAAMdAAADHQAABh0AAAEdAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAABB0AAAUdAAACHQAABh0AAAMdAAADHQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAUdAAADHQAABB0AAAEdAAADHQAABR0AAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAABHQAABB0AAAUdAAAGHQAABh0AAAAdAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAABh0AAAYdAAADHQAABB0AAAUdAAAEHQAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAYdAAAGHQAABh0AAAQdAAAGHQAABR0AAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAGHQAAAx0AAAUdAAAAHQAAAx0AAAAdAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAh0AAAMdAAAEHQAABR0AAAYdAAAGHQAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAEdAAAEHQAAAB0AAAAdAAAAHQAABB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAEHQAAAB0AAAAdAAADHQAAAB0AAAQdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAABh0AAAUdAAAEHQAABR0AAAEdAAAEHQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAdAAAEHQAAAx0AAAEdAAADHQAAAh0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAEHQAABh0AAAEdAAAEHQAABh0AAAQdAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAB0AAAUdAAADHQAAAR0AAAYdAAAFHQAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + -5,-4: + ind: -5,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAANBAAACQQAAAkEAAABBAAADQQAAAUEAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAABQQAAAUEAAAJBAAABQQAAAkEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAUEAAAJBAAAAQQAAA0EAAAJBAAACQQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAACQQAAAkEAAABBAAAAQQAAAkEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAADQQAAAEEAAAJBAAABQQAAA0EAAAJBAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAUEAAAJBAAAAQQAAAEEAAANBAAABQQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAANBAAABQQAAAUEAAAFBAAABQQAAAkEAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAQQAAAEEAAAJBAAABQQAAAkEAAABBAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAkEAAABBAAADQQAAAkEAAABBAAABQQAAAg== + -4,-4: + ind: -4,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAACQQAAAUEAAANBAAADQQAAAkEAAAFBAAADQQAAAkEAAAFBAAACQQAAAUEAAANBAAAAQQAAA0EAAAFBAAABQQAAAEEAAAJBAAACQQAAAkEAAAJBAAACQQAAAkEAAAJBAAAAQQAAA0EAAANBAAAAQQAAA0EAAAJBAAADQQAAAkEAAAFBAAACQQAAA0EAAAJBAAACQQAAAkEAAAJBAAADQQAAA0EAAANBAAAAQQAAAEEAAAJBAAABQQAAAUEAAAJBAAADQQAAAEEAAANBAAABQQAAAEEAAANBAAACQQAAAkEAAAFBAAACQQAAAUEAAAFBAAACQQAAA0EAAANBAAADQQAAAEEAAABBAAADQQAAAkEAAAFBAAAAQQAAA0EAAABBAAABQQAAAUEAAAJBAAADQQAAA0EAAANBAAABQQAAA0EAAANBAAAAQQAAA0EAAAJBAAACQQAAA0EAAABBAAADQQAAAUEAAAFBAAAAQQAAAkEAAANBAAABQQAAAEEAAANBAAADQQAAAEEAAAJBAAABQQAAAUEAAAJBAAAAQQAAAUEAAANBAAAAQQAAAUEAAAFBAAAAQQAAA0EAAANBAAABQQAAA0EAAANBAAABQQAAAEEAAAJBAAAAQQAAAUEAAABBAAABQQAAA0EAAAJBAAACQQAAA0EAAABBAAAAQQAAAUEAAANBAAAAQQAAA0EAAANBAAACQQAAA0EAAAJBAAABQQAAAUEAAABBAAACQQAAA0EAAABBAAACQQAAAA== + -3,-4: + ind: -3,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAAAQQAAA0EAAAFBAAABQQAAAkEAAAJBAAACQQAAAkEAAAJBAAABQQAAAUEAAAJBAAADQQAAAEEAAABBAAADQQAAA0EAAAFBAAACQQAAAEEAAAFBAAACQQAAAEEAAABBAAAAQQAAAkEAAABBAAADQQAAAEEAAABBAAACQQAAAkEAAAFBAAABQQAAA0EAAAJBAAAAQQAAAUEAAABBAAAAQQAAA0EAAAJBAAACQQAAA0EAAAFBAAABQQAAAUEAAABBAAACQQAAAUEAAABBAAAAQQAAA0EAAANBAAACQQAAA0EAAAFBAAABQQAAAkEAAAJBAAADQQAAA0EAAAFBAAABQQAAA0EAAAJBAAAAQQAAAkEAAANBAAADQQAAAEEAAAFBAAABQQAAA0EAAAJBAAAAQQAAAEEAAABBAAAAQQAAAUEAAABBAAACQQAAAUEAAAFBAAAAQQAAAkEAAAFBAAADQQAAA0EAAABBAAABQQAAAkEAAABBAAADQQAAA0EAAABBAAAAQQAAAEEAAAJBAAABQQAAAUEAAABBAAAAQQAAAEEAAANBAAACQQAAAkEAAANBAAAAQQAAA0EAAAFBAAADQQAAAkEAAANBAAABQQAAAUEAAAJBAAAAQQAAAUEAAAFBAAADQQAAA0EAAABBAAABQQAAAUEAAANBAAACQQAAAEEAAABBAAAAQQAAAUEAAAJBAAADQQAAAUEAAAJBAAAAQQAAAkEAAANBAAAAQQAAAkEAAANBAAABQQAAAA== + -2,-4: + ind: -2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAAJBAAABQQAAAEEAAABBAAACQQAAAkEAAAFBAAABQQAAA0EAAAFBAAABQQAAA0EAAABBAAADQQAAAEEAAAJBAAABQQAAA0EAAAJBAAAAQQAAAEEAAABBAAACQQAAAUEAAAJBAAADQQAAA0EAAAFBAAACQQAAAkEAAANBAAACQQAAAUEAAAJBAAACQQAAAUEAAABBAAADQQAAAUEAAABBAAAAQQAAAUEAAAFBAAACQQAAA0EAAAJBAAADQQAAAUEAAABBAAAAQQAAAUEAAAJBAAAAQQAAAUEAAAFBAAABQQAAAUEAAAJBAAACQQAAAUEAAAJBAAADQQAAAEEAAABBAAACQQAAAUEAAABBAAADQQAAAUEAAANBAAABQQAAAEEAAABBAAACQQAAAUEAAAJBAAABQQAAA0EAAAJBAAADQQAAAkEAAABBAAAAQQAAAEEAAABBAAAAQQAAAUEAAAFBAAAAQQAAA0EAAABBAAABQQAAAEEAAAFBAAADQQAAAUEAAAFBAAABQQAAAEEAAANBAAAAQQAAA0EAAAFBAAACQQAAAEEAAAFBAAAAQQAAAEEAAAFBAAADQQAAAUEAAAFBAAACQQAAAUEAAAJBAAACQQAAAUEAAAFBAAAAQQAAAEEAAABBAAADQQAAAUEAAABBAAADQQAAAkEAAABBAAACQQAAAUEAAABBAAABQQAAAkEAAABBAAACQQAAAEEAAABBAAAAQQAAA0EAAAJBAAABQQAAA0EAAAFBAAAAQQAAAQ== + -1,-4: + ind: -1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAADQQAAAUEAAANBAAABQQAAAkEAAAFBAAABQQAAA0EAAAFBAAAAQQAAA0EAAAJBAAACQQAAA0EAAABBAAABQQAAAEEAAAJBAAAAQQAAA0EAAAFBAAACQQAAA0EAAAJBAAADQQAAAUEAAANBAAACQQAAA0EAAABBAAAAQQAAAEEAAAJBAAACQQAAAEEAAABBAAABQQAAA0EAAAJBAAAAQQAAAkEAAAFBAAABQQAAAEEAAAJBAAACQQAAA0EAAAJBAAAAQQAAAEEAAAJBAAAAQQAAA0EAAAJBAAACQQAAAkEAAAJBAAACQQAAA0EAAANBAAACQQAAA0EAAABBAAABQQAAA0EAAAJBAAADQQAAAkEAAABBAAACQQAAA0EAAAJBAAADQQAAAkEAAANBAAACQQAAAkEAAAFBAAACQQAAAEEAAAFBAAACQQAAAUEAAABBAAADQQAAAUEAAABBAAABQQAAA0EAAABBAAABQQAAAkEAAAJBAAAAQQAAAkEAAABBAAAAQQAAA0EAAAJBAAACQQAAA0EAAABBAAACQQAAAkEAAAFBAAACQQAAAEEAAAFBAAABQQAAA0EAAAJBAAADQQAAAUEAAANBAAADQQAAAUEAAAJBAAACQQAAAUEAAABBAAAAQQAAA0EAAABBAAABQQAAA0EAAABBAAADQQAAA0EAAABBAAAAQQAAAUEAAABBAAADQQAAAkEAAAFBAAADQQAAA0EAAANBAAAAQQAAAkEAAAFBAAADQQAAAw== + 0,-4: + ind: 0,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAAFBAAAAQQAAAkEAAANBAAADQQAAAUEAAANBAAACQQAAAEEAAAFBAAAAQQAAAUEAAABBAAAAQQAAAUEAAANBAAADQQAAAEEAAAJBAAABQQAAA0EAAABBAAACQQAAAEEAAABBAAACQQAAAUEAAABBAAADQQAAA0EAAAFBAAACQQAAAkEAAANBAAADQQAAA0EAAAJBAAADQQAAAUEAAAFBAAABQQAAA0EAAANBAAADQQAAAkEAAAFBAAABQQAAAkEAAAFBAAACQQAAAkEAAAFBAAADQQAAA0EAAABBAAACQQAAAkEAAAFBAAADQQAAA0EAAANBAAABQQAAA0EAAAJBAAADQQAAAUEAAAFBAAACQQAAAkEAAAFBAAADQQAAAUEAAABBAAADQQAAA0EAAABBAAADQQAAAkEAAABBAAACQQAAA0EAAABBAAACQQAAAUEAAAJBAAADQQAAA0EAAANBAAAAQQAAAkEAAAFBAAAAQQAAAEEAAABBAAABQQAAA0EAAAJBAAADQQAAA0EAAAFBAAABQQAAAkEAAABBAAADQQAAAkEAAABBAAABQQAAAEEAAABBAAADQQAAAUEAAANBAAAAQQAAAkEAAABBAAAAQQAAA0EAAABBAAADQQAAAUEAAANBAAABQQAAAEEAAABBAAACQQAAAkEAAAJBAAACQQAAAEEAAANBAAABQQAAAEEAAABBAAACQQAAAkEAAANBAAABQQAAAUEAAANBAAADQQAAAUEAAAJBAAACQQAAAw== + 1,-4: + ind: 1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEEAAABBAAACQQAAAkEAAAJBAAACQQAAAEEAAANBAAABQQAAAUEAAAM1AAADNQAAATUAAAA1AAAANQAAADUAAABBAAACQQAAAEEAAAJBAAABQQAAAUEAAANBAAADQQAAAkEAAABBAAACNQAAAzUAAAE1AAAANQAAAzUAAAI1AAAAQQAAAkEAAAFBAAADQQAAAkEAAAJBAAABQQAAAkEAAAJBAAACQQAAADUAAAA1AAABNQAAAzUAAAI1AAACNQAAAkEAAAJBAAACQQAAAUEAAAJBAAACQQAAA0EAAAFBAAABQQAAATUAAAM1AAABNQAAAjUAAAE1AAAANQAAAzUAAAJBAAACQQAAA0EAAABBAAADQQAAAEEAAAFBAAABQQAAAEEAAABBAAACNQAAATUAAAM1AAACNQAAAjUAAAM1AAABQQAAAkEAAAJBAAABQQAAAkEAAAJBAAACQQAAAEEAAANBAAAAQQAAATUAAAA1AAAANQAAAjUAAAI1AAADNQAAAEEAAAJBAAADQQAAAEEAAABBAAADQQAAAEEAAABBAAADQQAAATUAAAI1AAADNQAAAjUAAAA1AAABNQAAAzUAAANBAAACQQAAA0EAAAFBAAAAQQAAA0EAAAJBAAAAQQAAAUEAAAA1AAADNQAAATUAAAI1AAAANQAAAjUAAAA1AAADQQAAAkEAAANBAAABQQAAAUEAAAFBAAADQQAAAUEAAABBAAACNQAAATUAAAE1AAADNQAAAjUAAAA1AAABNQAAAw== + 2,-4: + ind: 2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUAAAE1AAACNQAAATUAAAI1AAADNQAAAjUAAAI1AAADNQAAAzUAAAM1AAABNQAAADUAAAI1AAABNQAAAjUAAAI1AAACNQAAAzUAAAM1AAACNQAAATUAAAA1AAABNQAAATUAAAA1AAAANQAAAzUAAAE1AAACNQAAADUAAAA1AAACNQAAAzUAAAE1AAAANQAAAzUAAAI1AAAANQAAAjUAAAM1AAABNQAAAzUAAAE1AAAANQAAAzUAAAM1AAACNQAAADUAAAE1AAACNQAAADUAAAA1AAABNQAAAzUAAAA1AAABNQAAATUAAAM1AAACNQAAAjUAAAI1AAACNQAAATUAAAA1AAACNQAAATUAAAI1AAADNQAAATUAAAM1AAADNQAAATUAAAE1AAADNQAAAjUAAAM1AAAANQAAATUAAAE1AAACNQAAATUAAAI1AAACNQAAAzUAAAI1AAADNQAAAzUAAAI1AAADNQAAAjUAAAM1AAABNQAAAzUAAAI1AAADNQAAATUAAAM1AAABNQAAATUAAAE1AAABNQAAATUAAAA1AAADNQAAAzUAAAI1AAACNQAAADUAAAM1AAABNQAAAjUAAAI1AAADNQAAAjUAAAA1AAABNQAAATUAAAE1AAADNQAAAzUAAAA1AAACNQAAAzUAAAE1AAABNQAAADUAAAI1AAAANQAAAzUAAAI1AAACNQAAATUAAAM1AAAANQAAATUAAAM1AAACNQAAAjUAAAE1AAABNQAAADUAAAE1AAABNQAAAA== + 3,-4: + ind: 3,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUAAAE1AAACNQAAAjUAAAI1AAACNQAAAjUAAAM1AAADNQAAAjUAAAE1AAAANQAAADUAAAI1AAABNQAAAjUAAAI1AAAANQAAADUAAAE1AAADNQAAADUAAAI1AAABNQAAATUAAAA1AAAANQAAAzUAAAM1AAADNQAAATUAAAA1AAAANQAAADUAAAM1AAABNQAAATUAAAE1AAABNQAAAzUAAAA1AAABNQAAATUAAAI1AAABNQAAATUAAAM1AAABNQAAAjUAAAI1AAADNQAAATUAAAA1AAACNQAAAzUAAAA1AAADNQAAAjUAAAI1AAACNQAAATUAAAM1AAACNQAAAjUAAAM1AAAANQAAATUAAAE1AAAANQAAAzUAAAA1AAADNQAAATUAAAM1AAACNQAAAjUAAAM1AAADNQAAADUAAAE1AAAANQAAADUAAAA1AAADNQAAAzUAAAE1AAABNQAAATUAAAE1AAACNQAAAzUAAAE1AAABNQAAADUAAAM1AAAANQAAADUAAAM1AAADNQAAADUAAAM1AAACNQAAATUAAAM1AAAANQAAAjUAAAA1AAAANQAAATUAAAA1AAADNQAAAzUAAAM1AAABNQAAAjUAAAI1AAADNQAAAjUAAAI1AAADNQAAATUAAAM1AAAANQAAATUAAAI1AAABNQAAAzUAAAM1AAADNQAAAjUAAAE1AAACNQAAADUAAAA1AAACNQAAAjUAAAI1AAADNQAAAjUAAAA1AAAANQAAATUAAAM1AAACNQAAAA== + 4,-4: + ind: 4,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADUAAAA1AAACNQAAAjUAAAE1AAADNQAAAzUAAAA1AAAANQAAAjUAAAA1AAACNQAAADUAAAA1AAABQAAAAEAAAAA1AAABNQAAATUAAAA1AAADNQAAATUAAAE1AAAANQAAATUAAAE1AAABNQAAAzUAAAA1AAAANQAAAjUAAAI1AAABNQAAAjUAAAI1AAACNQAAADUAAAI1AAADNQAAADUAAAE1AAABNQAAATUAAAE1AAAANQAAADUAAAM1AAACNQAAAjUAAAA1AAABNQAAAzUAAAM1AAACNQAAATUAAAE1AAACNQAAADUAAAM1AAADNQAAAjUAAAI1AAACNQAAAUAAAAA1AAABNQAAAzUAAAM1AAABNQAAADUAAAI1AAABNQAAAzUAAAM1AAABNQAAATUAAAA1AAADNQAAAjUAAAM1AAADNQAAAjUAAAA1AAAANQAAADUAAAA1AAADNQAAATUAAAI1AAAANQAAAjUAAAE1AAADNQAAAjUAAAI1AAACQAAAADUAAAE1AAABNQAAAjUAAAM1AAAANQAAADUAAAM1AAACNQAAAzUAAAI1AAABNQAAAzUAAAE1AAACNQAAATUAAAE1AAACNQAAAjUAAAI1AAACNQAAATUAAAA1AAACNQAAADUAAAE1AAAANQAAADUAAAI1AAADNQAAAjUAAAE1AAACNQAAAzUAAAE1AAADNQAAADUAAAE1AAAANQAAAzUAAAA1AAABNQAAAjUAAAA1AAAANQAAAjUAAAI1AAADQAAAAA== + 5,-4: + ind: 5,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAeAAAEHgAABx4AAAMeAAABHgAABR4AAAEeAAADHgAAAh4AAAEeAAAFHgAABx4AAAIeAAAFHgAABh4AAAFAAAAAHgAABh4AAAUeAAAGHgAABx4AAAIeAAAGHgAAAx4AAAEeAAACHgAABx4AAAMeAAABHgAAAB4AAAQeAAAAHgAABR4AAAceAAACHgAAAh4AAAYeAAAFHgAAAx4AAAAeAAAEHgAAAx4AAAMeAAABHgAABx4AAAUeAAAGHgAAAkAAAABAAAAAHgAABx4AAAQeAAAHHgAAAR4AAAUeAAABHgAABh4AAAYeAAAGHgAABR4AAAYeAAAFHgAABR4AAAJAAAAAQAAAAB4AAAUeAAAEHgAABB4AAAIeAAABHgAAAB4AAAAeAAAGHgAAAh4AAAUeAAAEHgAAAh4AAAYeAAAGQAAAAEAAAABAAAAAHgAAAB4AAAYeAAAGHgAAAx4AAAMeAAAEHgAABB4AAAceAAABHgAAAB4AAAEeAAAFHgAABkAAAABAAAAAHgAABx4AAAEeAAAEHgAABh4AAAIeAAAAHgAAAh4AAAYeAAAEHgAAAB4AAAEeAAACHgAAAB4AAAI1AAACQAAAAB4AAAQeAAAFHgAABR4AAAEeAAAAHgAAAx4AAAMeAAABHgAABx4AAAQeAAAEHgAABR4AAAMeAAAFQAAAAEAAAABAAAAAHgAABx4AAAQeAAAEHgAABR4AAAMeAAAHHgAAAR4AAAceAAADHgAAAR4AAAEeAAAGHgAAAg== + 8,-4: + ind: 8,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAIdAAAFHQAAAR0AAAUdAAACHQAABB0AAAAdAAACHQAAAR0AAAYdAAAFHQAAAB0AAAMdAAAAHQAAAB0AAAEdAAADHQAAAx0AAAEdAAABHQAABR0AAAQdAAABHQAAAB0AAAAdAAABHQAABR0AAAUdAAAGHQAAAR0AAAIdAAACHQAABh0AAAMdAAAGHQAABh0AAAIdAAAAHQAAAB0AAAEdAAAGHQAABB0AAAMdAAAGHQAAAB0AAAQdAAACHQAABR0AAAEdAAADHQAAAR0AAAAdAAAGHQAAAB0AAAMdAAADHQAABR0AAAAdAAAGHQAABR0AAAIdAAACHQAABh0AAAYdAAACHQAABR0AAAMdAAAEHQAAAh0AAAUdAAACHQAABR0AAAAdAAAFHQAAAx0AAAYdAAAAHQAAAB0AAAYdAAAEHQAAAR0AAAQdAAADHQAABh0AAAIdAAAGHQAABh0AAAYdAAADHQAABB0AAAAdAAAGHQAAAR0AAAQdAAAEHQAAAh0AAAQdAAAFHQAAAx0AAAEdAAABHQAAAh0AAAAdAAAAHQAAAR0AAAIdAAAFHQAABR0AAAMdAAAEHQAAAh0AAAQdAAAAHQAABR0AAAMdAAABHQAAAh0AAAUdAAAAHQAAAh0AAAEdAAAGHQAAAx0AAAYdAAABHQAAAR0AAAEdAAACHQAAAR0AAAEdAAAAHQAABh0AAAQdAAABHQAABB0AAAYdAAACHQAAAx0AAAQdAAAGHQAAAB0AAAUdAAAAHQAABg== + 9,-4: + ind: 9,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAQdAAACHQAAAB0AAAAdAAADHQAAAB0AAAQdAAAFHQAAAh0AAAYdAAABHQAABh0AAAYdAAAAHQAABB0AAAQdAAABHQAABR0AAAQdAAADHQAABh0AAAUdAAAGHQAAAR0AAAYdAAAGHQAABR0AAAQdAAAAHQAAAB0AAAAdAAACHQAABR0AAAIdAAADHQAAAR0AAAEdAAABHQAABB0AAAEdAAAGHQAABh0AAAYdAAAGHQAAAh0AAAEdAAACHQAABB0AAAIdAAACHQAAAx0AAAYdAAAFHQAABB0AAAYdAAAFHQAABh0AAAEdAAABHQAABh0AAAEdAAABHQAAAB0AAAYdAAABHQAABh0AAAYdAAAFHQAABB0AAAYdAAACHQAABh0AAAMdAAAAHQAABR0AAAQdAAAAHQAABB0AAAYdAAADHQAAAh0AAAQdAAAGHQAABR0AAAAdAAAAHQAAAh0AAAEdAAABHQAAAR0AAAQdAAACHQAABh0AAAIdAAAEHQAAAR0AAAAdAAAGHQAAAh0AAAMdAAABHQAAAx0AAAEdAAABHQAABR0AAAIdAAAAHQAAAR0AAAIdAAAAHQAAAh0AAAQdAAADHQAABh0AAAUdAAAGHQAABR0AAAAdAAAAHQAAAB0AAAQdAAAFHQAABh0AAAIdAAACHQAAAR0AAAMdAAAAHQAAAB0AAAMdAAACHQAAAR0AAAMdAAACHQAAAR0AAAIdAAABHQAAAx0AAAQdAAAFHQAABB0AAAUdAAAFHQAAAA== + 10,-4: + ind: 10,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAYdAAAEHQAABR0AAAYdAAABHQAABh0AAAQdAAADHQAAAB0AAAMdAAAFHQAAAR0AAAYdAAAAHQAABh0AAAAdAAACHQAAAR0AAAUdAAABHQAAAR0AAAUdAAAFHQAAAR0AAAUdAAAGHQAAAh0AAAMdAAAGHQAAAh0AAAQdAAAGHQAABh0AAAEdAAAEHQAAAh0AAAMdAAACHQAABh0AAAMdAAAEHQAAAB0AAAUdAAAAHQAABh0AAAQdAAAEHQAABR0AAAUdAAABHQAAAR0AAAYdAAAFHQAAAx0AAAMdAAAAHQAAAx0AAAQdAAAAHQAAAB0AAAQdAAADHQAAAR0AAAIdAAACHQAABh0AAAMdAAABHQAABh0AAAAdAAACHQAABR0AAAEdAAADHQAAAB0AAAYdAAAFHQAAAx0AAAAdAAABHQAAAB0AAAMdAAAEHQAAAR0AAAYdAAAFHQAABR0AAAAdAAABHQAAAx0AAAYdAAACHQAABR0AAAUdAAAGHQAAAh0AAAEdAAACHQAAAx0AAAEdAAACHQAAAR0AAAYdAAACHQAAAB0AAAQdAAACHQAAAx0AAAUdAAAEHQAABh0AAAEdAAAGHQAABh0AAAIdAAAGHQAAAB0AAAQdAAACHQAAAx0AAAIdAAACHQAAAB0AAAIdAAABHQAAAR0AAAAdAAAAHQAAAB0AAAEdAAAEHQAAAR0AAAEdAAAFHQAABR0AAAYdAAAFHQAAAh0AAAAdAAACHQAAAR0AAAMdAAADHQAABg== + 11,-4: + ind: 11,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAQdAAAGHQAAAx0AAAMdAAAAHQAAAB0AAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAHQAAAB0AAAYdAAAEHQAAAh0AAAQdAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAh0AAAIdAAAAHQAAAR0AAAIdAAAAHQAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAIdAAAFHQAAAh0AAAUdAAAAHQAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAEHQAABh0AAAAdAAAGHQAABR0AAAUdAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAABB0AAAAdAAABHQAAAh0AAAMdAAACHQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAYdAAABHQAAAx0AAAIdAAABHQAABh0AAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAABHQAAAR0AAAAdAAABHQAAAx0AAAEdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAx0AAAAdAAACHQAABR0AAAEdAAAGHQAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + type: MapGrid + - nextUpdate: 8642.3698829 + type: GridPathfinding + - chunkCollection: + version: 2 + nodes: [] + type: DecalGrid + - type: RadiationGridResistance + - nextShake: 0 + shakeTimes: 10 + type: GravityShake + - id: CM_Flatgrass + type: BecomesStation +- uid: 1 + type: WallAlmayer + components: + - pos: -56.5,-11.5 + parent: 0 + type: Transform +- uid: 2 + type: WallAlmayer + components: + - pos: -56.5,-10.5 + parent: 0 + type: Transform +- uid: 3 + type: WallAlmayer + components: + - pos: -55.5,-11.5 + parent: 0 + type: Transform +- uid: 4 + type: WallAlmayer + components: + - pos: -54.5,-11.5 + parent: 0 + type: Transform +- uid: 5 + type: WallAlmayer + components: + - pos: -49.5,-11.5 + parent: 0 + type: Transform +- uid: 6 + type: WallAlmayer + components: + - pos: -48.5,-11.5 + parent: 0 + type: Transform +- uid: 7 + type: WallAlmayer + components: + - pos: -47.5,-11.5 + parent: 0 + type: Transform +- uid: 8 + type: WallAlmayer + components: + - pos: -46.5,-11.5 + parent: 0 + type: Transform +- uid: 9 + type: WallAlmayer + components: + - pos: -46.5,-10.5 + parent: 0 + type: Transform +- uid: 10 + type: WallAlmayer + components: + - pos: -46.5,-9.5 + parent: 0 + type: Transform +- uid: 11 + type: WallAlmayer + components: + - pos: -46.5,-7.5 + parent: 0 + type: Transform +- uid: 12 + type: WallAlmayer + components: + - pos: -46.5,-6.5 + parent: 0 + type: Transform +- uid: 13 + type: WallAlmayer + components: + - pos: -46.5,-5.5 + parent: 0 + type: Transform +- uid: 14 + type: WallAlmayer + components: + - pos: -47.5,-5.5 + parent: 0 + type: Transform +- uid: 15 + type: WallAlmayer + components: + - pos: -48.5,-5.5 + parent: 0 + type: Transform +- uid: 16 + type: WallAlmayer + components: + - pos: -49.5,-5.5 + parent: 0 + type: Transform +- uid: 17 + type: WallAlmayer + components: + - pos: -54.5,-5.5 + parent: 0 + type: Transform +- uid: 18 + type: WallAlmayer + components: + - pos: -55.5,-5.5 + parent: 0 + type: Transform +- uid: 19 + type: WallAlmayer + components: + - pos: -56.5,-5.5 + parent: 0 + type: Transform +- uid: 20 + type: WallAlmayer + components: + - pos: -56.5,-6.5 + parent: 0 + type: Transform +- uid: 21 + type: WallAlmayer + components: + - pos: -54.5,-14.5 + parent: 0 + type: Transform +- uid: 22 + type: WallAlmayer + components: + - pos: -53.5,-14.5 + parent: 0 + type: Transform +- uid: 23 + type: WallAlmayer + components: + - pos: -54.5,-15.5 + parent: 0 + type: Transform +- uid: 24 + type: WallAlmayer + components: + - pos: -52.5,-14.5 + parent: 0 + type: Transform +- uid: 25 + type: WallAlmayer + components: + - pos: -54.5,-19.5 + parent: 0 + type: Transform +- uid: 26 + type: WallAlmayer + components: + - pos: -54.5,-20.5 + parent: 0 + type: Transform +- uid: 27 + type: WallAlmayer + components: + - pos: -53.5,-20.5 + parent: 0 + type: Transform +- uid: 28 + type: WallAlmayer + components: + - pos: -52.5,-20.5 + parent: 0 + type: Transform +- uid: 29 + type: WallAlmayer + components: + - pos: -47.5,-20.5 + parent: 0 + type: Transform +- uid: 30 + type: WallAlmayer + components: + - pos: -46.5,-20.5 + parent: 0 + type: Transform +- uid: 31 + type: WallAlmayer + components: + - pos: -45.5,-20.5 + parent: 0 + type: Transform +- uid: 32 + type: WallAlmayer + components: + - pos: -44.5,-20.5 + parent: 0 + type: Transform +- uid: 33 + type: WallAlmayer + components: + - pos: -44.5,-19.5 + parent: 0 + type: Transform +- uid: 34 + type: WallAlmayer + components: + - pos: -44.5,-18.5 + parent: 0 + type: Transform +- uid: 35 + type: WallAlmayer + components: + - pos: -44.5,-16.5 + parent: 0 + type: Transform +- uid: 36 + type: WallAlmayer + components: + - pos: -44.5,-15.5 + parent: 0 + type: Transform +- uid: 37 + type: WallAlmayer + components: + - pos: -44.5,-14.5 + parent: 0 + type: Transform +- uid: 38 + type: WallAlmayer + components: + - pos: -45.5,-14.5 + parent: 0 + type: Transform +- uid: 39 + type: WallAlmayer + components: + - pos: -46.5,-14.5 + parent: 0 + type: Transform +- uid: 40 + type: WallAlmayer + components: + - pos: -47.5,-14.5 + parent: 0 + type: Transform +- uid: 41 + type: WallAlmayer + components: + - pos: -45.5,-1.5 + parent: 0 + type: Transform +- uid: 42 + type: WallAlmayer + components: + - pos: -46.5,-1.5 + parent: 0 + type: Transform +- uid: 43 + type: WallAlmayer + components: + - pos: -45.5,-0.5 + parent: 0 + type: Transform +- uid: 44 + type: WallAlmayer + components: + - pos: -45.5,0.5 + parent: 0 + type: Transform +- uid: 45 + type: WallAlmayer + components: + - pos: -45.5,2.5 + parent: 0 + type: Transform +- uid: 46 + type: WallAlmayer + components: + - pos: -45.5,3.5 + parent: 0 + type: Transform +- uid: 47 + type: WallAlmayer + components: + - pos: -45.5,4.5 + parent: 0 + type: Transform +- uid: 48 + type: WallAlmayer + components: + - pos: -46.5,4.5 + parent: 0 + type: Transform +- uid: 49 + type: WallAlmayer + components: + - pos: -47.5,4.5 + parent: 0 + type: Transform +- uid: 50 + type: WallAlmayer + components: + - pos: -48.5,4.5 + parent: 0 + type: Transform +- uid: 51 + type: WallAlmayer + components: + - pos: -47.5,-1.5 + parent: 0 + type: Transform +- uid: 52 + type: WallAlmayer + components: + - pos: -48.5,-1.5 + parent: 0 + type: Transform +- uid: 53 + type: WallAlmayer + components: + - pos: -53.5,-1.5 + parent: 0 + type: Transform +- uid: 54 + type: WallAlmayer + components: + - pos: -54.5,-1.5 + parent: 0 + type: Transform +- uid: 55 + type: WallAlmayer + components: + - pos: -55.5,-1.5 + parent: 0 + type: Transform +- uid: 56 + type: WallAlmayer + components: + - pos: -55.5,-0.5 + parent: 0 + type: Transform +- uid: 57 + type: WallAlmayer + components: + - pos: -55.5,4.5 + parent: 0 + type: Transform +- uid: 58 + type: WallAlmayer + components: + - pos: -54.5,4.5 + parent: 0 + type: Transform +- uid: 59 + type: WallAlmayer + components: + - pos: -53.5,4.5 + parent: 0 + type: Transform +- uid: 60 + type: WallAlmayer + components: + - pos: -55.5,3.5 + parent: 0 + type: Transform +- uid: 61 + type: WallAlmayer + components: + - pos: -44.5,7.5 + parent: 0 + type: Transform +- uid: 62 + type: WallAlmayer + components: + - pos: -45.5,7.5 + parent: 0 + type: Transform +- uid: 63 + type: WallAlmayer + components: + - pos: -46.5,7.5 + parent: 0 + type: Transform +- uid: 64 + type: WallAlmayer + components: + - pos: -47.5,7.5 + parent: 0 + type: Transform +- uid: 65 + type: WallAlmayer + components: + - pos: -44.5,8.5 + parent: 0 + type: Transform +- uid: 66 + type: WallAlmayer + components: + - pos: -44.5,9.5 + parent: 0 + type: Transform +- uid: 67 + type: WallAlmayer + components: + - pos: -44.5,11.5 + parent: 0 + type: Transform +- uid: 68 + type: WallAlmayer + components: + - pos: -44.5,12.5 + parent: 0 + type: Transform +- uid: 69 + type: WallAlmayer + components: + - pos: -44.5,13.5 + parent: 0 + type: Transform +- uid: 70 + type: WallAlmayer + components: + - pos: -45.5,13.5 + parent: 0 + type: Transform +- uid: 71 + type: WallAlmayer + components: + - pos: -46.5,13.5 + parent: 0 + type: Transform +- uid: 72 + type: WallAlmayer + components: + - pos: -47.5,13.5 + parent: 0 + type: Transform +- uid: 73 + type: WallAlmayer + components: + - pos: -52.5,13.5 + parent: 0 + type: Transform +- uid: 74 + type: WallAlmayer + components: + - pos: -53.5,13.5 + parent: 0 + type: Transform +- uid: 75 + type: WallAlmayer + components: + - pos: -54.5,13.5 + parent: 0 + type: Transform +- uid: 76 + type: WallAlmayer + components: + - pos: -54.5,12.5 + parent: 0 + type: Transform +- uid: 77 + type: WallAlmayer + components: + - pos: -54.5,7.5 + parent: 0 + type: Transform +- uid: 78 + type: WallAlmayer + components: + - pos: -53.5,7.5 + parent: 0 + type: Transform +- uid: 79 + type: WallAlmayer + components: + - pos: -52.5,7.5 + parent: 0 + type: Transform +- uid: 80 + type: WallAlmayer + components: + - pos: -54.5,8.5 + parent: 0 + type: Transform +- uid: 81 + type: WindowAlmayer + components: + - pos: -52.5,4.5 + parent: 0 + type: Transform +- uid: 82 + type: WindowAlmayer + components: + - pos: -51.5,4.5 + parent: 0 + type: Transform +- uid: 83 + type: WindowAlmayer + components: + - pos: -50.5,4.5 + parent: 0 + type: Transform +- uid: 84 + type: WindowAlmayer + components: + - pos: -49.5,4.5 + parent: 0 + type: Transform +- uid: 85 + type: WindowAlmayer + components: + - pos: -55.5,0.5 + parent: 0 + type: Transform +- uid: 86 + type: WindowAlmayer + components: + - pos: -55.5,1.5 + parent: 0 + type: Transform +- uid: 87 + type: WindowAlmayer + components: + - pos: -55.5,2.5 + parent: 0 + type: Transform +- uid: 88 + type: WindowAlmayer + components: + - pos: -52.5,-1.5 + parent: 0 + type: Transform +- uid: 89 + type: WindowAlmayer + components: + - pos: -51.5,-1.5 + parent: 0 + type: Transform +- uid: 90 + type: WindowAlmayer + components: + - pos: -50.5,-1.5 + parent: 0 + type: Transform +- uid: 91 + type: WindowAlmayer + components: + - pos: -49.5,-1.5 + parent: 0 + type: Transform +- uid: 92 + type: WallAlmayer + components: + - pos: -50.5,-5.5 + parent: 0 + type: Transform +- uid: 93 + type: WallAlmayer + components: + - pos: -51.5,-5.5 + parent: 0 + type: Transform +- uid: 94 + type: WindowAlmayer + components: + - pos: -52.5,-5.5 + parent: 0 + type: Transform +- uid: 95 + type: WindowAlmayer + components: + - pos: -53.5,-5.5 + parent: 0 + type: Transform +- uid: 96 + type: WindowAlmayer + components: + - pos: -56.5,-7.5 + parent: 0 + type: Transform +- uid: 97 + type: WindowAlmayer + components: + - pos: -56.5,-8.5 + parent: 0 + type: Transform +- uid: 98 + type: WindowAlmayer + components: + - pos: -56.5,-9.5 + parent: 0 + type: Transform +- uid: 99 + type: WindowAlmayer + components: + - pos: -53.5,-11.5 + parent: 0 + type: Transform +- uid: 100 + type: WindowAlmayer + components: + - pos: -52.5,-11.5 + parent: 0 + type: Transform +- uid: 101 + type: WallAlmayer + components: + - pos: -51.5,-11.5 + parent: 0 + type: Transform +- uid: 102 + type: FenceBase + components: + - pos: -26.5,12.5 + parent: 0 + type: Transform +- uid: 103 + type: WindowAlmayer + components: + - pos: -51.5,-14.5 + parent: 0 + type: Transform +- uid: 104 + type: WindowAlmayer + components: + - pos: -50.5,-14.5 + parent: 0 + type: Transform +- uid: 105 + type: WindowAlmayer + components: + - pos: -49.5,-14.5 + parent: 0 + type: Transform +- uid: 106 + type: WindowAlmayer + components: + - pos: -48.5,-14.5 + parent: 0 + type: Transform +- uid: 107 + type: WindowAlmayer + components: + - pos: -54.5,-16.5 + parent: 0 + type: Transform +- uid: 108 + type: WindowAlmayer + components: + - pos: -54.5,-18.5 + parent: 0 + type: Transform +- uid: 109 + type: WindowAlmayer + components: + - pos: -54.5,-17.5 + parent: 0 + type: Transform +- uid: 110 + type: WindowAlmayer + components: + - pos: -51.5,-20.5 + parent: 0 + type: Transform +- uid: 111 + type: WindowAlmayer + components: + - pos: -50.5,-20.5 + parent: 0 + type: Transform +- uid: 112 + type: WindowAlmayer + components: + - pos: -49.5,-20.5 + parent: 0 + type: Transform +- uid: 113 + type: WindowAlmayer + components: + - pos: -48.5,-20.5 + parent: 0 + type: Transform +- uid: 114 + type: AirlockGlassAlpha + components: + - rot: -1.5707963267948966 rad + pos: -44.5,10.5 + parent: 0 + type: Transform +- uid: 115 + type: AirlockGlassBravo + components: + - rot: -1.5707963267948966 rad + pos: -45.5,1.5 + parent: 0 + type: Transform +- uid: 116 + type: AirlockGlassCharlie + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-8.5 + parent: 0 + type: Transform +- uid: 117 + type: AirlockGlassDelta + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-17.5 + parent: 0 + type: Transform +- uid: 118 + type: WindowAlmayer + components: + - pos: -49.5,7.5 + parent: 0 + type: Transform +- uid: 119 + type: WindowAlmayer + components: + - pos: -48.5,7.5 + parent: 0 + type: Transform +- uid: 120 + type: WindowAlmayer + components: + - pos: -50.5,7.5 + parent: 0 + type: Transform +- uid: 121 + type: WindowAlmayer + components: + - pos: -51.5,7.5 + parent: 0 + type: Transform +- uid: 122 + type: WindowAlmayer + components: + - pos: -54.5,9.5 + parent: 0 + type: Transform +- uid: 123 + type: WindowAlmayer + components: + - pos: -54.5,10.5 + parent: 0 + type: Transform +- uid: 124 + type: WindowAlmayer + components: + - pos: -54.5,11.5 + parent: 0 + type: Transform +- uid: 125 + type: WindowAlmayer + components: + - pos: -48.5,13.5 + parent: 0 + type: Transform +- uid: 126 + type: FoodTinBeansOpen + components: + - pos: -50.580036,-0.12645896 + parent: 0 + type: Transform +- uid: 127 + type: Paper + components: + - rot: 3.141592653589793 rad + pos: -50.121475,-0.28055167 + parent: 0 + type: Transform +- uid: 128 + type: Pen + components: + - pos: -50.017254,-0.5098772 + parent: 0 + type: Transform +- uid: 129 + type: Rack + components: + - pos: -46.5,8.5 + parent: 0 + type: Transform +- uid: 130 + type: Rack + components: + - pos: -45.5,8.5 + parent: 0 + type: Transform +- uid: 131 + type: Rack + components: + - pos: -45.5,12.5 + parent: 0 + type: Transform +- uid: 132 + type: Rack + components: + - pos: -45.5,11.5 + parent: 0 + type: Transform +- uid: 133 + type: Rack + components: + - pos: -47.5,3.5 + parent: 0 + type: Transform +- uid: 134 + type: Rack + components: + - pos: -46.5,3.5 + parent: 0 + type: Transform +- uid: 135 + type: Rack + components: + - pos: -45.5,-15.5 + parent: 0 + type: Transform +- uid: 136 + type: Rack + components: + - pos: -47.5,-0.5 + parent: 0 + type: Transform +- uid: 137 + type: Rack + components: + - pos: -46.5,-0.5 + parent: 0 + type: Transform +- uid: 138 + type: Rack + components: + - pos: -45.5,-19.5 + parent: 0 + type: Transform +- uid: 139 + type: Rack + components: + - pos: -47.5,-10.5 + parent: 0 + type: Transform +- uid: 140 + type: Rack + components: + - pos: -47.5,-9.5 + parent: 0 + type: Transform +- uid: 141 + type: Rack + components: + - pos: -47.5,-7.5 + parent: 0 + type: Transform +- uid: 142 + type: Rack + components: + - pos: -47.5,-6.5 + parent: 0 + type: Transform +- uid: 143 + type: Rack + components: + - pos: -48.5,-6.5 + parent: 0 + type: Transform +- uid: 144 + type: Bed + components: + - pos: -53.5,8.5 + parent: 0 + type: Transform +- uid: 145 + type: Bed + components: + - pos: -52.5,8.5 + parent: 0 + type: Transform +- uid: 146 + type: Bed + components: + - pos: -53.5,12.5 + parent: 0 + type: Transform +- uid: 147 + type: Bed + components: + - pos: -52.5,12.5 + parent: 0 + type: Transform +- uid: 148 + type: Bed + components: + - pos: -53.5,10.5 + parent: 0 + type: Transform +- uid: 149 + type: Bed + components: + - pos: -52.5,10.5 + parent: 0 + type: Transform +- uid: 150 + type: Bed + components: + - pos: -54.5,3.5 + parent: 0 + type: Transform +- uid: 151 + type: Bed + components: + - pos: -53.5,3.5 + parent: 0 + type: Transform +- uid: 152 + type: Bed + components: + - pos: -54.5,1.5 + parent: 0 + type: Transform +- uid: 153 + type: Bed + components: + - pos: -53.5,1.5 + parent: 0 + type: Transform +- uid: 154 + type: Bed + components: + - pos: -54.5,-0.5 + parent: 0 + type: Transform +- uid: 155 + type: Bed + components: + - pos: -53.5,-0.5 + parent: 0 + type: Transform +- uid: 156 + type: Bed + components: + - pos: -55.5,-6.5 + parent: 0 + type: Transform +- uid: 157 + type: Bed + components: + - pos: -54.5,-6.5 + parent: 0 + type: Transform +- uid: 158 + type: Bed + components: + - pos: -54.5,-8.5 + parent: 0 + type: Transform +- uid: 159 + type: Bed + components: + - pos: -55.5,-8.5 + parent: 0 + type: Transform +- uid: 160 + type: Bed + components: + - pos: -55.5,-10.5 + parent: 0 + type: Transform +- uid: 161 + type: Bed + components: + - pos: -54.5,-10.5 + parent: 0 + type: Transform +- uid: 162 + type: Bed + components: + - pos: -53.5,-15.5 + parent: 0 + type: Transform +- uid: 163 + type: Bed + components: + - pos: -52.5,-15.5 + parent: 0 + type: Transform +- uid: 164 + type: Bed + components: + - pos: -53.5,-17.5 + parent: 0 + type: Transform +- uid: 165 + type: Bed + components: + - pos: -52.5,-17.5 + parent: 0 + type: Transform +- uid: 166 + type: Bed + components: + - pos: -53.5,-19.5 + parent: 0 + type: Transform +- uid: 167 + type: Bed + components: + - pos: -52.5,-19.5 + parent: 0 + type: Transform +- uid: 168 + type: BedsheetBlue + components: + - pos: -53.5,-19.5 + parent: 0 + type: Transform +- uid: 169 + type: BedsheetBlue + components: + - pos: -52.5,-19.5 + parent: 0 + type: Transform +- uid: 170 + type: BedsheetBlue + components: + - pos: -53.5,-17.5 + parent: 0 + type: Transform +- uid: 171 + type: BedsheetBlue + components: + - pos: -52.5,-17.5 + parent: 0 + type: Transform +- uid: 172 + type: BedsheetBlue + components: + - pos: -53.5,-15.5 + parent: 0 + type: Transform +- uid: 173 + type: BedsheetBlue + components: + - pos: -52.5,-15.5 + parent: 0 + type: Transform +- uid: 174 + type: BedsheetYellow + components: + - pos: -55.5,-6.5 + parent: 0 + type: Transform +- uid: 175 + type: BedsheetYellow + components: + - pos: -54.5,-6.5 + parent: 0 + type: Transform +- uid: 176 + type: BedsheetYellow + components: + - pos: -54.5,-8.5 + parent: 0 + type: Transform +- uid: 177 + type: BedsheetYellow + components: + - pos: -55.5,-8.5 + parent: 0 + type: Transform +- uid: 178 + type: BedsheetYellow + components: + - pos: -55.5,-10.5 + parent: 0 + type: Transform +- uid: 179 + type: BedsheetYellow + components: + - pos: -54.5,-10.5 + parent: 0 + type: Transform +- uid: 180 + type: BedsheetPurple + components: + - pos: -54.5,-0.5 + parent: 0 + type: Transform +- uid: 181 + type: BedsheetPurple + components: + - pos: -53.5,-0.5 + parent: 0 + type: Transform +- uid: 182 + type: BedsheetPurple + components: + - pos: -53.5,1.5 + parent: 0 + type: Transform +- uid: 183 + type: BedsheetPurple + components: + - pos: -54.5,1.5 + parent: 0 + type: Transform +- uid: 184 + type: BedsheetPurple + components: + - pos: -54.5,3.5 + parent: 0 + type: Transform +- uid: 185 + type: BedsheetPurple + components: + - pos: -53.5,3.5 + parent: 0 + type: Transform +- uid: 186 + type: BedsheetRed + components: + - pos: -52.5,8.5 + parent: 0 + type: Transform +- uid: 187 + type: BedsheetRed + components: + - pos: -53.5,8.5 + parent: 0 + type: Transform +- uid: 188 + type: BedsheetRed + components: + - pos: -53.5,10.5 + parent: 0 + type: Transform +- uid: 189 + type: BedsheetRed + components: + - pos: -52.5,10.5 + parent: 0 + type: Transform +- uid: 190 + type: BedsheetRed + components: + - pos: -52.5,12.5 + parent: 0 + type: Transform +- uid: 191 + type: BedsheetRed + components: + - pos: -53.5,12.5 + parent: 0 + type: Transform +- uid: 192 + type: HospitalCurtainsOpen + components: + - pos: -55.5,-6.5 + parent: 0 + type: Transform +- uid: 193 + type: HospitalCurtainsOpen + components: + - pos: -54.5,-6.5 + parent: 0 + type: Transform +- uid: 194 + type: HospitalCurtainsOpen + components: + - pos: -55.5,-8.5 + parent: 0 + type: Transform +- uid: 195 + type: HospitalCurtainsOpen + components: + - pos: -54.5,-8.5 + parent: 0 + type: Transform +- uid: 196 + type: HospitalCurtainsOpen + components: + - pos: -55.5,-10.5 + parent: 0 + type: Transform +- uid: 197 + type: HospitalCurtainsOpen + components: + - pos: -54.5,-10.5 + parent: 0 + type: Transform +- uid: 198 + type: HospitalCurtainsOpen + components: + - pos: -53.5,-0.5 + parent: 0 + type: Transform +- uid: 199 + type: HospitalCurtainsOpen + components: + - pos: -54.5,-0.5 + parent: 0 + type: Transform +- uid: 200 + type: HospitalCurtainsOpen + components: + - pos: -54.5,1.5 + parent: 0 + type: Transform +- uid: 201 + type: HospitalCurtainsOpen + components: + - pos: -53.5,1.5 + parent: 0 + type: Transform +- uid: 202 + type: HospitalCurtainsOpen + components: + - pos: -53.5,3.5 + parent: 0 + type: Transform +- uid: 203 + type: HospitalCurtainsOpen + components: + - pos: -54.5,3.5 + parent: 0 + type: Transform +- uid: 204 + type: HospitalCurtainsOpen + components: + - pos: -53.5,-17.5 + parent: 0 + type: Transform +- uid: 205 + type: HospitalCurtainsOpen + components: + - pos: -52.5,-17.5 + parent: 0 + type: Transform +- uid: 206 + type: HospitalCurtainsOpen + components: + - pos: -52.5,-19.5 + parent: 0 + type: Transform +- uid: 207 + type: HospitalCurtainsOpen + components: + - pos: -53.5,-19.5 + parent: 0 + type: Transform +- uid: 208 + type: HospitalCurtainsOpen + components: + - pos: -52.5,-15.5 + parent: 0 + type: Transform +- uid: 209 + type: HospitalCurtainsOpen + components: + - pos: -53.5,-15.5 + parent: 0 + type: Transform +- uid: 210 + type: HospitalCurtainsOpen + components: + - pos: -52.5,8.5 + parent: 0 + type: Transform +- uid: 211 + type: HospitalCurtainsOpen + components: + - pos: -53.5,8.5 + parent: 0 + type: Transform +- uid: 212 + type: HospitalCurtainsOpen + components: + - pos: -53.5,10.5 + parent: 0 + type: Transform +- uid: 213 + type: HospitalCurtainsOpen + components: + - pos: -52.5,10.5 + parent: 0 + type: Transform +- uid: 214 + type: HospitalCurtainsOpen + components: + - pos: -52.5,12.5 + parent: 0 + type: Transform +- uid: 215 + type: HospitalCurtains + components: + - pos: -53.5,12.5 + parent: 0 + type: Transform +- uid: 216 + type: PersonalAI + components: + - flags: SessionSpecific + type: MetaData + - rot: -1.5707963267948966 rad + pos: -53.4538,12.443017 + parent: 0 + type: Transform +- uid: 217 + type: TableWood + components: + - rot: -1.5707963267948966 rad + pos: -49.5,12.5 + parent: 0 + type: Transform +- uid: 218 + type: TableWood + components: + - rot: -1.5707963267948966 rad + pos: -48.5,12.5 + parent: 0 + type: Transform +- uid: 219 + type: TableWood + components: + - rot: -1.5707963267948966 rad + pos: -49.5,8.5 + parent: 0 + type: Transform +- uid: 220 + type: TableWood + components: + - rot: -1.5707963267948966 rad + pos: -50.5,3.5 + parent: 0 + type: Transform +- uid: 221 + type: TableWood + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-0.5 + parent: 0 + type: Transform +- uid: 222 + type: TableWood + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-0.5 + parent: 0 + type: Transform +- uid: 223 + type: TableWood + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-6.5 + parent: 0 + type: Transform +- uid: 224 + type: TableWood + components: + - rot: -1.5707963267948966 rad + pos: -52.5,-6.5 + parent: 0 + type: Transform +- uid: 225 + type: TableWood + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-10.5 + parent: 0 + type: Transform +- uid: 226 + type: TableWood + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-15.5 + parent: 0 + type: Transform +- uid: 227 + type: TableWood + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-19.5 + parent: 0 + type: Transform +- uid: 228 + type: ChairWood + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-15.5 + parent: 0 + type: Transform +- uid: 229 + type: ChairWood + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-10.5 + parent: 0 + type: Transform +- uid: 230 + type: ChairWood + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-6.5 + parent: 0 + type: Transform +- uid: 231 + type: ChairWood + components: + - rot: -1.5707963267948966 rad + pos: -49.5,3.5 + parent: 0 + type: Transform +- uid: 232 + type: ChairWood + components: + - rot: -1.5707963267948966 rad + pos: -48.5,8.5 + parent: 0 + type: Transform +- uid: 233 + type: ChairWood + components: + - rot: 1.5707963267948966 rad + pos: -50.5,8.5 + parent: 0 + type: Transform +- uid: 234 + type: ChairWood + components: + - rot: 1.5707963267948966 rad + pos: -51.5,3.5 + parent: 0 + type: Transform +- uid: 235 + type: ChairWood + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-10.5 + parent: 0 + type: Transform +- uid: 236 + type: ChairWood + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-15.5 + parent: 0 + type: Transform +- uid: 237 + type: ChairWood + components: + - pos: -51.5,-9.5 + parent: 0 + type: Transform +- uid: 238 + type: ChairWood + components: + - pos: -49.5,9.5 + parent: 0 + type: Transform +- uid: 239 + type: ChairWood + components: + - rot: 3.141592653589793 rad + pos: -50.5,2.5 + parent: 0 + type: Transform +- uid: 240 + type: d6Dice + components: + - pos: -50.79094,3.7353628 + parent: 0 + type: Transform +- uid: 241 + type: d6Dice + components: + - pos: -50.592922,3.4747648 + parent: 0 + type: Transform +- uid: 242 + type: DiceBag + components: + - pos: -50.269848,3.7770581 + parent: 0 + type: Transform +- uid: 243 + type: DrinkMugRed + components: + - pos: -49.290165,8.5332575 + parent: 0 + type: Transform + - solutions: + drink: + canMix: True + maxVol: 20 + reagents: + - Quantity: 20 + ReagentId: Coffee + type: SolutionContainerManager +- uid: 244 + type: DrinkMugRed + components: + - pos: -49.696617,8.814703 + parent: 0 + type: Transform + - solutions: + drink: + canMix: True + maxVol: 20 + reagents: + - Quantity: 20 + ReagentId: Coffee + type: SolutionContainerManager +- uid: 245 + type: Paper + components: + - pos: -48.752842,12.504084 + parent: 0 + type: Transform +- uid: 246 + type: Paper + components: + - pos: -48.98212,12.754257 + parent: 0 + type: Transform +- uid: 247 + type: CigPackRed + components: + - pos: -48.273438,12.848072 + parent: 0 + type: Transform +- uid: 248 + type: CigPackBlack + components: + - pos: -49.326042,-0.3150965 + parent: 0 + type: Transform +- uid: 249 + type: CigPackGreen + components: + - pos: -51.330517,-6.213152 + parent: 0 + type: Transform +- uid: 250 + type: TableWood + components: + - pos: -48.5,-19.5 + parent: 0 + type: Transform +- uid: 251 + type: CigPackBlue + components: + - pos: -48.35752,-19.249735 + parent: 0 + type: Transform +- uid: 252 + type: CrayonBox + components: + - pos: -49.356148,12.521481 + parent: 0 + type: Transform +- uid: 253 + type: WindowAlmayer + components: + - pos: -51.5,13.5 + parent: 0 + type: Transform +- uid: 254 + type: WindowAlmayer + components: + - pos: -49.5,13.5 + parent: 0 + type: Transform +- uid: 255 + type: WindowAlmayer + components: + - pos: -50.5,13.5 + parent: 0 + type: Transform +- uid: 256 + type: Paper + components: + - rot: 3.141592653589793 rad + pos: -49.850506,-0.4577577 + parent: 0 + type: Transform +- uid: 257 + type: FoodSnackMREBrownieOpen + components: + - pos: -52.69808,-6.4175653 + parent: 0 + type: Transform +- uid: 258 + type: FoodSnackMREBrownie + components: + - pos: -52.34374,-6.3758693 + parent: 0 + type: Transform +- uid: 259 + type: FoodSnackMREBrownie + components: + - pos: -52.4688,-6.209087 + parent: 0 + type: Transform +- uid: 260 + type: Paper + components: + - pos: -51.926006,-6.293098 + parent: 0 + type: Transform +- uid: 261 + type: Paper + components: + - pos: -51.748837,-6.3452177 + parent: 0 + type: Transform +- uid: 262 + type: Paper + components: + - pos: -51.89474,-6.418266 + parent: 0 + type: Transform +- uid: 263 + type: Pen + components: + - rot: -1.5707963267948966 rad + pos: -51.634197,-6.5200973 + parent: 0 + type: Transform +- uid: 264 + type: DrinkCognacBottleFull + components: + - pos: -51.28345,-10.194941 + parent: 0 + type: Transform +- uid: 265 + type: DrinkShotGlass + components: + - pos: -51.72117,-10.392995 + parent: 0 + type: Transform +- uid: 266 + type: DrinkShotGlass + components: + - pos: -51.596107,-10.215789 + parent: 0 + type: Transform +- uid: 267 + type: Paper + components: + - pos: -49.114624,-19.279959 + parent: 0 + type: Transform +- uid: 268 + type: Paper + components: + - pos: -48.895767,-19.436317 + parent: 0 + type: Transform +- uid: 269 + type: Pen + components: + - pos: -49.244076,-19.515884 + parent: 0 + type: Transform +- uid: 270 + type: CigarSpent + components: + - pos: -49.632355,-19.401222 + parent: 0 + type: Transform +- uid: 271 + type: CableApcStack1 + components: + - pos: -49.29088,-15.277408 + parent: 0 + type: Transform +- uid: 272 + type: DrinkBottleAlcoClear + components: + - pos: -49.769108,-15.116961 + parent: 0 + type: Transform + - solutions: + drink: + maxVol: 50 + reagents: + - Quantity: 50 + ReagentId: Ethanol + type: SolutionContainerManager +- uid: 273 + type: ModularGrenade + components: + - rot: -1.5707963267948966 rad + pos: -49.478474,-15.53728 + parent: 0 + type: Transform +- uid: 274 + type: ChemicalPayload + components: + - pos: -49.45763,-15.245411 + parent: 0 + type: Transform +- uid: 275 + type: WallAlmayer + components: + - pos: -32.5,-20.5 + parent: 0 + type: Transform +- uid: 276 + type: WallAlmayer + components: + - pos: -32.5,-21.5 + parent: 0 + type: Transform +- uid: 277 + type: WallAlmayer + components: + - pos: -32.5,-22.5 + parent: 0 + type: Transform +- uid: 278 + type: WallAlmayer + components: + - pos: -32.5,-23.5 + parent: 0 + type: Transform +- uid: 279 + type: WallAlmayer + components: + - pos: -31.5,-23.5 + parent: 0 + type: Transform +- uid: 280 + type: WallAlmayer + components: + - pos: -30.5,-23.5 + parent: 0 + type: Transform +- uid: 281 + type: WallAlmayer + components: + - pos: -29.5,-23.5 + parent: 0 + type: Transform +- uid: 282 + type: WallAlmayer + components: + - pos: -28.5,-23.5 + parent: 0 + type: Transform +- uid: 283 + type: WallAlmayer + components: + - pos: -27.5,-23.5 + parent: 0 + type: Transform +- uid: 284 + type: WallAlmayer + components: + - pos: -26.5,-23.5 + parent: 0 + type: Transform +- uid: 285 + type: WallAlmayer + components: + - pos: -25.5,-23.5 + parent: 0 + type: Transform +- uid: 286 + type: WallAlmayer + components: + - pos: -24.5,-23.5 + parent: 0 + type: Transform +- uid: 287 + type: WallAlmayer + components: + - pos: -23.5,-23.5 + parent: 0 + type: Transform +- uid: 288 + type: WallAlmayer + components: + - pos: -22.5,-23.5 + parent: 0 + type: Transform +- uid: 289 + type: WallAlmayer + components: + - pos: -21.5,-23.5 + parent: 0 + type: Transform +- uid: 290 + type: WallAlmayer + components: + - pos: -21.5,-22.5 + parent: 0 + type: Transform +- uid: 291 + type: WallAlmayer + components: + - pos: -21.5,-21.5 + parent: 0 + type: Transform +- uid: 292 + type: WallAlmayer + components: + - pos: -21.5,-20.5 + parent: 0 + type: Transform +- uid: 293 + type: WallAlmayer + components: + - pos: -21.5,-19.5 + parent: 0 + type: Transform +- uid: 294 + type: WallAlmayer + components: + - pos: -21.5,-18.5 + parent: 0 + type: Transform +- uid: 295 + type: WallAlmayer + components: + - pos: -21.5,-17.5 + parent: 0 + type: Transform +- uid: 296 + type: WallAlmayer + components: + - pos: -21.5,-16.5 + parent: 0 + type: Transform +- uid: 297 + type: WallAlmayer + components: + - pos: -21.5,-15.5 + parent: 0 + type: Transform +- uid: 298 + type: WallAlmayer + components: + - pos: -21.5,-14.5 + parent: 0 + type: Transform +- uid: 299 + type: WallAlmayer + components: + - pos: -21.5,-13.5 + parent: 0 + type: Transform +- uid: 300 + type: WallAlmayer + components: + - pos: -22.5,-13.5 + parent: 0 + type: Transform +- uid: 301 + type: WallAlmayer + components: + - pos: -23.5,-13.5 + parent: 0 + type: Transform +- uid: 302 + type: WallAlmayer + components: + - pos: -24.5,-13.5 + parent: 0 + type: Transform +- uid: 303 + type: WallAlmayer + components: + - pos: -25.5,-13.5 + parent: 0 + type: Transform +- uid: 304 + type: WallAlmayer + components: + - pos: -26.5,-13.5 + parent: 0 + type: Transform +- uid: 305 + type: WallAlmayer + components: + - pos: -27.5,-13.5 + parent: 0 + type: Transform +- uid: 306 + type: WallAlmayer + components: + - pos: -27.5,-14.5 + parent: 0 + type: Transform +- uid: 307 + type: WallAlmayer + components: + - pos: -27.5,-15.5 + parent: 0 + type: Transform +- uid: 308 + type: WallAlmayer + components: + - pos: -27.5,-16.5 + parent: 0 + type: Transform +- uid: 309 + type: WallAlmayer + components: + - pos: -28.5,-16.5 + parent: 0 + type: Transform +- uid: 310 + type: CableHV + components: + - pos: -25.5,-15.5 + parent: 0 + type: Transform +- uid: 311 + type: CableHV + components: + - pos: -25.5,-14.5 + parent: 0 + type: Transform +- uid: 312 + type: WallAlmayer + components: + - pos: -31.5,-16.5 + parent: 0 + type: Transform +- uid: 313 + type: WallAlmayer + components: + - pos: -32.5,-16.5 + parent: 0 + type: Transform +- uid: 314 + type: PlushieRouny + components: + - desc: ' A weird red dog plushie.' + name: red dog + type: MetaData + - pos: -49.694405,12.952435 + parent: 0 + type: Transform + - nextAttack: 776.2827207 + type: MeleeWeapon +- uid: 315 + type: WallAlmayer + components: + - pos: -32.5,-17.5 + parent: 0 + type: Transform +- uid: 316 + type: WallAlmayer + components: + - pos: -32.5,-18.5 + parent: 0 + type: Transform +- uid: 317 + type: WallAlmayer + components: + - pos: -32.5,-19.5 + parent: 0 + type: Transform +- uid: 318 + type: CableHV + components: + - pos: -26.5,-15.5 + parent: 0 + type: Transform +- uid: 319 + type: CableHV + components: + - pos: -26.5,-14.5 + parent: 0 + type: Transform +- uid: 320 + type: GeneratorRTGDamaged + components: + - pos: -23.5,-14.5 + parent: 0 + type: Transform +- uid: 321 + type: GeneratorRTGDamaged + components: + - pos: -25.5,-14.5 + parent: 0 + type: Transform +- uid: 322 + type: RadiationCollector + components: + - pos: -22.5,-14.5 + parent: 0 + type: Transform +- uid: 323 + type: GeneratorRTGDamaged + components: + - pos: -23.5,-15.5 + parent: 0 + type: Transform +- uid: 324 + type: GeneratorRTGDamaged + components: + - pos: -25.5,-16.5 + parent: 0 + type: Transform +- uid: 325 + type: RadiationCollector + components: + - pos: -26.5,-14.5 + parent: 0 + type: Transform +- uid: 326 + type: CableTerminal + components: + - pos: -25.5,-19.5 + parent: 0 + type: Transform +- uid: 327 + type: GeneratorRTGDamaged + components: + - pos: -25.5,-15.5 + parent: 0 + type: Transform +- uid: 328 + type: RadiationCollector + components: + - pos: -26.5,-15.5 + parent: 0 + type: Transform +- uid: 329 + type: RadiationCollector + components: + - pos: -22.5,-15.5 + parent: 0 + type: Transform +- uid: 330 + type: CableHV + components: + - pos: -23.5,-20.5 + parent: 0 + type: Transform +- uid: 331 + type: GeneratorRTGDamaged + components: + - pos: -23.5,-16.5 + parent: 0 + type: Transform +- uid: 332 + type: RadiationCollector + components: + - pos: -22.5,-18.5 + parent: 0 + type: Transform +- uid: 333 + type: Catwalk + components: + - pos: -24.5,-14.5 + parent: 0 + type: Transform +- uid: 334 + type: RadiationCollector + components: + - pos: -26.5,-17.5 + parent: 0 + type: Transform +- uid: 335 + type: RadiationCollector + components: + - pos: -22.5,-17.5 + parent: 0 + type: Transform +- uid: 336 + type: CableHV + components: + - pos: -23.5,-21.5 + parent: 0 + type: Transform +- uid: 337 + type: CableHV + components: + - pos: -22.5,-16.5 + parent: 0 + type: Transform +- uid: 338 + type: CableHV + components: + - pos: -24.5,-14.5 + parent: 0 + type: Transform +- uid: 339 + type: CableHV + components: + - pos: -24.5,-15.5 + parent: 0 + type: Transform +- uid: 340 + type: CableHV + components: + - pos: -23.5,-14.5 + parent: 0 + type: Transform +- uid: 341 + type: CableHV + components: + - pos: -23.5,-15.5 + parent: 0 + type: Transform +- uid: 342 + type: CableHV + components: + - pos: -22.5,-14.5 + parent: 0 + type: Transform +- uid: 343 + type: CableHV + components: + - pos: -22.5,-15.5 + parent: 0 + type: Transform +- uid: 344 + type: GeneratorRTGDamaged + components: + - pos: -23.5,-17.5 + parent: 0 + type: Transform +- uid: 345 + type: CableHV + components: + - pos: -24.5,-22.5 + parent: 0 + type: Transform +- uid: 346 + type: RadiationCollector + components: + - pos: -22.5,-16.5 + parent: 0 + type: Transform +- uid: 347 + type: GeneratorRTGDamaged + components: + - pos: -25.5,-17.5 + parent: 0 + type: Transform +- uid: 348 + type: RadiationCollector + components: + - pos: -26.5,-16.5 + parent: 0 + type: Transform +- uid: 349 + type: GeneratorRTGDamaged + components: + - pos: -23.5,-18.5 + parent: 0 + type: Transform +- uid: 350 + type: GeneratorRTGDamaged + components: + - pos: -25.5,-18.5 + parent: 0 + type: Transform +- uid: 351 + type: RadiationCollector + components: + - pos: -26.5,-18.5 + parent: 0 + type: Transform +- uid: 352 + type: AirlockEngineering + components: + - pos: -29.5,-16.5 + parent: 0 + type: Transform +- uid: 353 + type: AirlockEngineering + components: + - pos: -30.5,-16.5 + parent: 0 + type: Transform +- uid: 354 + type: AirlockGlassEngineering + components: + - pos: -30.5,-19.5 + parent: 0 + type: Transform +- uid: 355 + type: WallAlmayer + components: + - pos: -27.5,-19.5 + parent: 0 + type: Transform +- uid: 356 + type: WallAlmayer + components: + - pos: -28.5,-19.5 + parent: 0 + type: Transform +- uid: 357 + type: Grille + components: + - pos: -27.5,-17.5 + parent: 0 + type: Transform +- uid: 358 + type: Grille + components: + - pos: -27.5,-18.5 + parent: 0 + type: Transform +- uid: 359 + type: WallAlmayer + components: + - pos: -31.5,-19.5 + parent: 0 + type: Transform +- uid: 360 + type: WindowAlmayer + components: + - pos: -27.5,-17.5 + parent: 0 + type: Transform +- uid: 361 + type: WindowAlmayer + components: + - pos: -27.5,-18.5 + parent: 0 + type: Transform +- uid: 362 + type: ShuttersRadiationOpen + components: + - pos: -27.5,-18.5 + parent: 0 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 363 + type: SignalReceiver +- uid: 363 + type: SignalButton + components: + - pos: -28.5,-16.5 + parent: 0 + type: Transform + - outputs: + Pressed: + - port: Toggle + uid: 364 + - port: Toggle + uid: 362 + type: SignalTransmitter +- uid: 364 + type: ShuttersRadiationOpen + components: + - pos: -27.5,-17.5 + parent: 0 + type: Transform + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 363 + type: SignalReceiver +- uid: 365 + type: ClosetRadiationSuitFilled + components: + - pos: -31.5,-17.5 + parent: 0 + type: Transform +- uid: 366 + type: ClosetRadiationSuitFilled + components: + - pos: -31.5,-18.5 + parent: 0 + type: Transform +- uid: 367 + type: TableReinforced + components: + - pos: -28.5,-18.5 + parent: 0 + type: Transform +- uid: 368 + type: TableReinforced + components: + - pos: -28.5,-17.5 + parent: 0 + type: Transform +- uid: 369 + type: MedkitRadiationFilled + components: + - pos: -28.465025,-17.498852 + parent: 0 + type: Transform +- uid: 370 + type: MedkitRadiationFilled + components: + - pos: -28.472052,-17.313417 + parent: 0 + type: Transform +- uid: 371 + type: SignRadiation + components: + - pos: -27.5,-14.5 + parent: 0 + type: Transform +- uid: 372 + type: SignRadiationMed + components: + - pos: -28.5,-19.5 + parent: 0 + type: Transform +- uid: 373 + type: SignRadiationMed + components: + - pos: -31.5,-19.5 + parent: 0 + type: Transform +- uid: 374 + type: AirlockGlassEngineering + components: + - pos: -29.5,-19.5 + parent: 0 + type: Transform +- uid: 375 + type: GeigerCounter + components: + - rot: -1.5707963267948966 rad + pos: -28.581152,-18.556122 + parent: 0 + type: Transform +- uid: 376 + type: GeigerCounter + components: + - rot: -1.5707963267948966 rad + pos: -28.45609,-18.337221 + parent: 0 + type: Transform +- uid: 377 + type: Catwalk + components: + - pos: -24.5,-18.5 + parent: 0 + type: Transform +- uid: 378 + type: Catwalk + components: + - pos: -25.5,-21.5 + parent: 0 + type: Transform +- uid: 379 + type: Catwalk + components: + - pos: -24.5,-17.5 + parent: 0 + type: Transform +- uid: 380 + type: Catwalk + components: + - pos: -24.5,-16.5 + parent: 0 + type: Transform +- uid: 381 + type: CableHV + components: + - pos: -22.5,-17.5 + parent: 0 + type: Transform +- uid: 382 + type: CableHV + components: + - pos: -22.5,-18.5 + parent: 0 + type: Transform +- uid: 383 + type: CableHV + components: + - pos: -23.5,-16.5 + parent: 0 + type: Transform +- uid: 384 + type: CableHV + components: + - pos: -23.5,-17.5 + parent: 0 + type: Transform +- uid: 385 + type: CableHV + components: + - pos: -23.5,-18.5 + parent: 0 + type: Transform +- uid: 386 + type: CableHV + components: + - pos: -24.5,-16.5 + parent: 0 + type: Transform +- uid: 387 + type: CableHV + components: + - pos: -24.5,-17.5 + parent: 0 + type: Transform +- uid: 388 + type: CableHV + components: + - pos: -24.5,-18.5 + parent: 0 + type: Transform +- uid: 389 + type: CableHV + components: + - pos: -25.5,-16.5 + parent: 0 + type: Transform +- uid: 390 + type: CableHV + components: + - pos: -25.5,-17.5 + parent: 0 + type: Transform +- uid: 391 + type: CableHV + components: + - pos: -25.5,-18.5 + parent: 0 + type: Transform +- uid: 392 + type: CableHV + components: + - pos: -26.5,-16.5 + parent: 0 + type: Transform +- uid: 393 + type: CableHV + components: + - pos: -26.5,-17.5 + parent: 0 + type: Transform +- uid: 394 + type: CableHV + components: + - pos: -26.5,-18.5 + parent: 0 + type: Transform +- uid: 395 + type: CableHV + components: + - pos: -23.5,-19.5 + parent: 0 + type: Transform +- uid: 396 + type: CableHV + components: + - pos: -25.5,-19.5 + parent: 0 + type: Transform +- uid: 397 + type: CableHV + components: + - pos: -25.5,-20.5 + parent: 0 + type: Transform +- uid: 398 + type: CableTerminal + components: + - pos: -23.5,-19.5 + parent: 0 + type: Transform +- uid: 399 + type: CableHV + components: + - pos: -25.5,-21.5 + parent: 0 + type: Transform +- uid: 400 + type: Catwalk + components: + - pos: -24.5,-15.5 + parent: 0 + type: Transform +- uid: 401 + type: SMESBasic + components: + - pos: -23.5,-20.5 + parent: 0 + type: Transform +- uid: 402 + type: SMESBasic + components: + - pos: -25.5,-20.5 + parent: 0 + type: Transform +- uid: 403 + type: Catwalk + components: + - pos: -25.5,-19.5 + parent: 0 + type: Transform +- uid: 404 + type: Catwalk + components: + - pos: -24.5,-19.5 + parent: 0 + type: Transform +- uid: 405 + type: Catwalk + components: + - pos: -23.5,-19.5 + parent: 0 + type: Transform +- uid: 406 + type: Catwalk + components: + - pos: -23.5,-21.5 + parent: 0 + type: Transform +- uid: 407 + type: CableHV + components: + - pos: -23.5,-22.5 + parent: 0 + type: Transform +- uid: 408 + type: CableHV + components: + - pos: -25.5,-22.5 + parent: 0 + type: Transform +- uid: 409 + type: Catwalk + components: + - pos: -23.5,-22.5 + parent: 0 + type: Transform +- uid: 410 + type: Catwalk + components: + - pos: -24.5,-22.5 + parent: 0 + type: Transform +- uid: 411 + type: Catwalk + components: + - pos: -25.5,-22.5 + parent: 0 + type: Transform +- uid: 412 + type: CableHV + components: + - pos: -30.5,-27.5 + parent: 0 + type: Transform +- uid: 413 + type: CableHV + components: + - pos: -29.5,-27.5 + parent: 0 + type: Transform +- uid: 414 + type: CableHV + components: + - pos: -28.5,-27.5 + parent: 0 + type: Transform +- uid: 415 + type: CableHV + components: + - pos: -27.5,-27.5 + parent: 0 + type: Transform +- uid: 416 + type: CableHV + components: + - pos: -26.5,-27.5 + parent: 0 + type: Transform +- uid: 417 + type: CableHV + components: + - pos: -25.5,-27.5 + parent: 0 + type: Transform +- uid: 418 + type: Catwalk + components: + - pos: -41.5,-25.5 + parent: 0 + type: Transform +- uid: 419 + type: CableHV + components: + - pos: -24.5,-24.5 + parent: 0 + type: Transform +- uid: 420 + type: CableHV + components: + - pos: -24.5,-23.5 + parent: 0 + type: Transform +- uid: 421 + type: CableHV + components: + - pos: -24.5,-25.5 + parent: 0 + type: Transform +- uid: 422 + type: CableHV + components: + - pos: -24.5,-26.5 + parent: 0 + type: Transform +- uid: 423 + type: CableHV + components: + - pos: -24.5,-27.5 + parent: 0 + type: Transform +- uid: 424 + type: VendingMachineYouTool + components: + - flags: SessionSpecific + type: MetaData + - pos: -31.5,-20.5 + parent: 0 + type: Transform +- uid: 425 + type: VendingMachineEngivend + components: + - flags: SessionSpecific + type: MetaData + - pos: -28.5,-20.5 + parent: 0 + type: Transform +- uid: 426 + type: WallAlmayer + components: + - pos: -51.5,-29.5 + parent: 0 + type: Transform +- uid: 427 + type: WallAlmayer + components: + - pos: -51.5,-30.5 + parent: 0 + type: Transform +- uid: 428 + type: WallAlmayer + components: + - pos: -52.5,-30.5 + parent: 0 + type: Transform +- uid: 429 + type: WallAlmayer + components: + - pos: -52.5,-31.5 + parent: 0 + type: Transform +- uid: 430 + type: WallAlmayer + components: + - pos: -53.5,-31.5 + parent: 0 + type: Transform +- uid: 431 + type: WallAlmayer + components: + - pos: -53.5,-32.5 + parent: 0 + type: Transform +- uid: 432 + type: WallAlmayer + components: + - pos: -54.5,-32.5 + parent: 0 + type: Transform +- uid: 433 + type: WindowAlmayer + components: + - pos: -54.5,-34.5 + parent: 0 + type: Transform +- uid: 434 + type: WindowAlmayer + components: + - pos: -54.5,-33.5 + parent: 0 + type: Transform +- uid: 435 + type: WallAlmayer + components: + - pos: -54.5,-35.5 + parent: 0 + type: Transform +- uid: 436 + type: WallAlmayer + components: + - pos: -53.5,-35.5 + parent: 0 + type: Transform +- uid: 437 + type: WallAlmayer + components: + - pos: -53.5,-36.5 + parent: 0 + type: Transform +- uid: 438 + type: WallAlmayer + components: + - pos: -52.5,-36.5 + parent: 0 + type: Transform +- uid: 439 + type: WallAlmayer + components: + - pos: -52.5,-37.5 + parent: 0 + type: Transform +- uid: 440 + type: WallAlmayer + components: + - pos: -51.5,-37.5 + parent: 0 + type: Transform +- uid: 441 + type: WallAlmayer + components: + - pos: -51.5,-38.5 + parent: 0 + type: Transform +- uid: 442 + type: WindowAlmayer + components: + - pos: -49.5,-38.5 + parent: 0 + type: Transform +- uid: 443 + type: WindowAlmayer + components: + - pos: -50.5,-38.5 + parent: 0 + type: Transform +- uid: 444 + type: WallAlmayer + components: + - pos: -48.5,-38.5 + parent: 0 + type: Transform +- uid: 445 + type: WallAlmayer + components: + - pos: -48.5,-37.5 + parent: 0 + type: Transform +- uid: 446 + type: WallAlmayer + components: + - pos: -47.5,-37.5 + parent: 0 + type: Transform +- uid: 447 + type: WallAlmayer + components: + - pos: -47.5,-36.5 + parent: 0 + type: Transform +- uid: 448 + type: WallAlmayer + components: + - pos: -46.5,-36.5 + parent: 0 + type: Transform +- uid: 449 + type: WallAlmayer + components: + - pos: -46.5,-35.5 + parent: 0 + type: Transform +- uid: 450 + type: WallAlmayer + components: + - pos: -45.5,-35.5 + parent: 0 + type: Transform +- uid: 451 + type: WallAlmayer + components: + - pos: -45.5,-32.5 + parent: 0 + type: Transform +- uid: 452 + type: WallAlmayer + components: + - pos: -46.5,-32.5 + parent: 0 + type: Transform +- uid: 453 + type: WallAlmayer + components: + - pos: -46.5,-31.5 + parent: 0 + type: Transform +- uid: 454 + type: WallAlmayer + components: + - pos: -47.5,-31.5 + parent: 0 + type: Transform +- uid: 455 + type: WallAlmayer + components: + - pos: -47.5,-30.5 + parent: 0 + type: Transform +- uid: 456 + type: WallAlmayer + components: + - pos: -48.5,-30.5 + parent: 0 + type: Transform +- uid: 457 + type: WallAlmayer + components: + - pos: -48.5,-29.5 + parent: 0 + type: Transform +- uid: 458 + type: WindowAlmayer + components: + - pos: -50.5,-29.5 + parent: 0 + type: Transform +- uid: 459 + type: WindowAlmayer + components: + - pos: -49.5,-29.5 + parent: 0 + type: Transform +- uid: 460 + type: FloraTree02 + components: + - pos: -43.22819,4.4757104 + parent: 0 + type: Transform +- uid: 461 + type: AirlockCommand + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-33.5 + parent: 0 + type: Transform +- uid: 462 + type: BaseComputer + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-34.5 + parent: 0 + type: Transform +- uid: 463 + type: BaseComputer + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-33.5 + parent: 0 + type: Transform +- uid: 464 + type: LightPostSmall + components: + - rot: 3.141592653589793 rad + pos: -50.5,-32.5 + parent: 0 + type: Transform +- uid: 465 + type: SignTelecomms + components: + - pos: -45.5,-32.5 + parent: 0 + type: Transform +- uid: 466 + type: ComputerComms + components: + - rot: 3.141592653589793 rad + pos: -50.5,-37.5 + parent: 0 + type: Transform +- uid: 467 + type: TelecomServerFilled + components: + - pos: -49.5,-37.5 + parent: 0 + type: Transform +- uid: 468 + type: StatueVenusRed + components: + - pos: -49.5,-33.5 + parent: 0 + type: Transform +- uid: 469 + type: StatueVenusRed + components: + - pos: -50.5,-34.5 + parent: 0 + type: Transform +- uid: 470 + type: StatueVenusBlue + components: + - pos: -50.5,-33.5 + parent: 0 + type: Transform +- uid: 471 + type: StatueVenusBlue + components: + - pos: -49.5,-34.5 + parent: 0 + type: Transform +- uid: 472 + type: WallAlmayer + components: + - pos: -20.5,29.5 + parent: 0 + type: Transform +- uid: 473 + type: WallAlmayer + components: + - pos: -21.5,29.5 + parent: 0 + type: Transform +- uid: 474 + type: WallAlmayer + components: + - pos: -22.5,29.5 + parent: 0 + type: Transform +- uid: 475 + type: WallAlmayer + components: + - pos: -23.5,29.5 + parent: 0 + type: Transform +- uid: 476 + type: WallAlmayer + components: + - pos: -24.5,29.5 + parent: 0 + type: Transform +- uid: 477 + type: WallAlmayer + components: + - pos: -25.5,29.5 + parent: 0 + type: Transform +- uid: 478 + type: WallAlmayer + components: + - pos: -26.5,29.5 + parent: 0 + type: Transform +- uid: 479 + type: WallAlmayer + components: + - pos: -27.5,29.5 + parent: 0 + type: Transform +- uid: 480 + type: WallAlmayer + components: + - pos: -28.5,29.5 + parent: 0 + type: Transform +- uid: 481 + type: WallAlmayer + components: + - pos: -29.5,29.5 + parent: 0 + type: Transform +- uid: 482 + type: WallAlmayer + components: + - pos: -30.5,29.5 + parent: 0 + type: Transform +- uid: 483 + type: WallAlmayer + components: + - pos: -31.5,29.5 + parent: 0 + type: Transform +- uid: 484 + type: WallAlmayer + components: + - pos: -32.5,29.5 + parent: 0 + type: Transform +- uid: 485 + type: WallAlmayer + components: + - pos: -33.5,29.5 + parent: 0 + type: Transform +- uid: 486 + type: WallAlmayer + components: + - pos: -34.5,29.5 + parent: 0 + type: Transform +- uid: 487 + type: WallAlmayer + components: + - pos: -35.5,29.5 + parent: 0 + type: Transform +- uid: 488 + type: WallAlmayer + components: + - pos: -36.5,29.5 + parent: 0 + type: Transform +- uid: 489 + type: WallAlmayer + components: + - pos: -37.5,29.5 + parent: 0 + type: Transform +- uid: 490 + type: WallAlmayer + components: + - pos: -38.5,29.5 + parent: 0 + type: Transform +- uid: 491 + type: WallAlmayer + components: + - pos: -39.5,28.5 + parent: 0 + type: Transform +- uid: 492 + type: WallAlmayer + components: + - pos: -39.5,27.5 + parent: 0 + type: Transform +- uid: 493 + type: WallAlmayer + components: + - pos: -39.5,26.5 + parent: 0 + type: Transform +- uid: 494 + type: WallAlmayer + components: + - pos: -39.5,25.5 + parent: 0 + type: Transform +- uid: 495 + type: AirlockCommand + components: + - rot: -1.5707963267948966 rad + pos: -39.5,24.5 + parent: 0 + type: Transform +- uid: 496 + type: AirlockCommand + components: + - rot: -1.5707963267948966 rad + pos: -35.5,27.5 + parent: 0 + type: Transform +- uid: 497 + type: WallAlmayer + components: + - pos: -39.5,22.5 + parent: 0 + type: Transform +- uid: 498 + type: WallAlmayer + components: + - pos: -39.5,21.5 + parent: 0 + type: Transform +- uid: 499 + type: WallAlmayer + components: + - pos: -39.5,20.5 + parent: 0 + type: Transform +- uid: 500 + type: WallAlmayer + components: + - pos: -39.5,19.5 + parent: 0 + type: Transform +- uid: 501 + type: WallAlmayer + components: + - pos: -39.5,18.5 + parent: 0 + type: Transform +- uid: 502 + type: WallAlmayer + components: + - pos: -38.5,28.5 + parent: 0 + type: Transform +- uid: 503 + type: WallAlmayer + components: + - pos: -38.5,18.5 + parent: 0 + type: Transform +- uid: 504 + type: WallAlmayer + components: + - pos: -38.5,17.5 + parent: 0 + type: Transform +- uid: 505 + type: WallAlmayer + components: + - pos: -19.5,18.5 + parent: 0 + type: Transform +- uid: 506 + type: WallAlmayer + components: + - pos: -37.5,17.5 + parent: 0 + type: Transform +- uid: 507 + type: WallAlmayer + components: + - pos: -36.5,17.5 + parent: 0 + type: Transform +- uid: 508 + type: WallAlmayer + components: + - pos: -35.5,17.5 + parent: 0 + type: Transform +- uid: 509 + type: WallAlmayer + components: + - pos: -34.5,17.5 + parent: 0 + type: Transform +- uid: 510 + type: WallAlmayer + components: + - pos: -33.5,17.5 + parent: 0 + type: Transform +- uid: 511 + type: WallAlmayer + components: + - pos: -32.5,17.5 + parent: 0 + type: Transform +- uid: 512 + type: WallAlmayer + components: + - pos: -31.5,17.5 + parent: 0 + type: Transform +- uid: 513 + type: WallAlmayer + components: + - pos: -30.5,17.5 + parent: 0 + type: Transform +- uid: 514 + type: WallAlmayer + components: + - pos: -29.5,17.5 + parent: 0 + type: Transform +- uid: 515 + type: WallAlmayer + components: + - pos: -28.5,17.5 + parent: 0 + type: Transform +- uid: 516 + type: WallAlmayer + components: + - pos: -27.5,17.5 + parent: 0 + type: Transform +- uid: 517 + type: WallAlmayer + components: + - pos: -26.5,17.5 + parent: 0 + type: Transform +- uid: 518 + type: WallAlmayer + components: + - pos: -25.5,17.5 + parent: 0 + type: Transform +- uid: 519 + type: WallAlmayer + components: + - pos: -24.5,17.5 + parent: 0 + type: Transform +- uid: 520 + type: WallAlmayer + components: + - pos: -23.5,17.5 + parent: 0 + type: Transform +- uid: 521 + type: WallAlmayer + components: + - pos: -22.5,17.5 + parent: 0 + type: Transform +- uid: 522 + type: WallAlmayer + components: + - pos: -21.5,17.5 + parent: 0 + type: Transform +- uid: 523 + type: WallAlmayer + components: + - pos: -20.5,17.5 + parent: 0 + type: Transform +- uid: 524 + type: WallAlmayer + components: + - pos: -20.5,18.5 + parent: 0 + type: Transform +- uid: 525 + type: WallAlmayer + components: + - pos: -19.5,28.5 + parent: 0 + type: Transform +- uid: 526 + type: WallAlmayer + components: + - pos: -20.5,28.5 + parent: 0 + type: Transform +- uid: 527 + type: WallAlmayer + components: + - pos: -19.5,27.5 + parent: 0 + type: Transform +- uid: 528 + type: WallAlmayer + components: + - pos: -19.5,26.5 + parent: 0 + type: Transform +- uid: 529 + type: WallAlmayer + components: + - pos: -19.5,25.5 + parent: 0 + type: Transform +- uid: 530 + type: AirlockGlassPersonal + components: + - rot: -1.5707963267948966 rad + pos: -19.5,24.5 + parent: 0 + type: Transform +- uid: 531 + type: WallAlmayer + components: + - pos: -19.5,21.5 + parent: 0 + type: Transform +- uid: 532 + type: WallAlmayer + components: + - pos: -19.5,20.5 + parent: 0 + type: Transform +- uid: 533 + type: WallAlmayer + components: + - pos: -19.5,19.5 + parent: 0 + type: Transform +- uid: 534 + type: AirlockGlassPersonal + components: + - rot: -1.5707963267948966 rad + pos: -19.5,22.5 + parent: 0 + type: Transform +- uid: 535 + type: AirlockGlassPersonal + components: + - rot: -1.5707963267948966 rad + pos: -19.5,23.5 + parent: 0 + type: Transform +- uid: 536 + type: AirlockGlassPersonal + components: + - rot: 3.141592653589793 rad + pos: -29.5,-1.5 + parent: 0 + type: Transform +- uid: 537 + type: AirlockGlassPersonal + components: + - rot: 3.141592653589793 rad + pos: -28.5,-1.5 + parent: 0 + type: Transform +- uid: 538 + type: AirlockGlassPersonal + components: + - rot: 3.141592653589793 rad + pos: -30.5,-1.5 + parent: 0 + type: Transform +- uid: 539 + type: FoodPlateSmallPlastic + components: + - pos: -26.548613,9.829034 + parent: 0 + type: Transform +- uid: 540 + type: FoodPlateSmallPlastic + components: + - pos: -26.62365,9.76649 + parent: 0 + type: Transform +- uid: 541 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -22.5,26.5 + parent: 0 + type: Transform +- uid: 542 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -22.5,27.5 + parent: 0 + type: Transform +- uid: 543 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -22.5,25.5 + parent: 0 + type: Transform +- uid: 544 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -23.5,25.5 + parent: 0 + type: Transform +- uid: 545 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -23.5,26.5 + parent: 0 + type: Transform +- uid: 546 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -23.5,27.5 + parent: 0 + type: Transform +- uid: 547 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -24.5,27.5 + parent: 0 + type: Transform +- uid: 548 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -24.5,26.5 + parent: 0 + type: Transform +- uid: 549 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -24.5,25.5 + parent: 0 + type: Transform +- uid: 550 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -25.5,26.5 + parent: 0 + type: Transform +- uid: 551 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -22.5,19.5 + parent: 0 + type: Transform +- uid: 552 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -22.5,20.5 + parent: 0 + type: Transform +- uid: 553 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -22.5,21.5 + parent: 0 + type: Transform +- uid: 554 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -23.5,21.5 + parent: 0 + type: Transform +- uid: 555 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -23.5,20.5 + parent: 0 + type: Transform +- uid: 556 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -23.5,19.5 + parent: 0 + type: Transform +- uid: 557 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -24.5,19.5 + parent: 0 + type: Transform +- uid: 558 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -24.5,20.5 + parent: 0 + type: Transform +- uid: 559 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -24.5,21.5 + parent: 0 + type: Transform +- uid: 560 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -25.5,20.5 + parent: 0 + type: Transform +- uid: 561 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -27.5,27.5 + parent: 0 + type: Transform +- uid: 562 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -27.5,26.5 + parent: 0 + type: Transform +- uid: 563 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -27.5,25.5 + parent: 0 + type: Transform +- uid: 564 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -28.5,25.5 + parent: 0 + type: Transform +- uid: 565 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -28.5,26.5 + parent: 0 + type: Transform +- uid: 566 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -28.5,27.5 + parent: 0 + type: Transform +- uid: 567 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -29.5,27.5 + parent: 0 + type: Transform +- uid: 568 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -29.5,26.5 + parent: 0 + type: Transform +- uid: 569 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -29.5,25.5 + parent: 0 + type: Transform +- uid: 570 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -30.5,26.5 + parent: 0 + type: Transform +- uid: 571 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -27.5,21.5 + parent: 0 + type: Transform +- uid: 572 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -27.5,20.5 + parent: 0 + type: Transform +- uid: 573 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -27.5,19.5 + parent: 0 + type: Transform +- uid: 574 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -28.5,19.5 + parent: 0 + type: Transform +- uid: 575 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -28.5,20.5 + parent: 0 + type: Transform +- uid: 576 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -28.5,21.5 + parent: 0 + type: Transform +- uid: 577 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -29.5,21.5 + parent: 0 + type: Transform +- uid: 578 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -29.5,20.5 + parent: 0 + type: Transform +- uid: 579 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -29.5,19.5 + parent: 0 + type: Transform +- uid: 580 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -30.5,20.5 + parent: 0 + type: Transform +- uid: 581 + type: TableGlass + components: + - rot: -1.5707963267948966 rad + pos: -32.5,25.5 + parent: 0 + type: Transform +- uid: 582 + type: TableGlass + components: + - rot: -1.5707963267948966 rad + pos: -32.5,24.5 + parent: 0 + type: Transform +- uid: 583 + type: TableGlass + components: + - rot: -1.5707963267948966 rad + pos: -32.5,23.5 + parent: 0 + type: Transform +- uid: 584 + type: TableGlass + components: + - rot: -1.5707963267948966 rad + pos: -32.5,22.5 + parent: 0 + type: Transform +- uid: 585 + type: TableGlass + components: + - rot: -1.5707963267948966 rad + pos: -32.5,21.5 + parent: 0 + type: Transform +- uid: 586 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -33.5,25.5 + parent: 0 + type: Transform +- uid: 587 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -33.5,23.5 + parent: 0 + type: Transform +- uid: 588 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -33.5,21.5 + parent: 0 + type: Transform +- uid: 589 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -33.5,24.5 + parent: 0 + type: Transform +- uid: 590 + type: ComfyChair + components: + - rot: 1.5707963267948966 rad + pos: -33.5,22.5 + parent: 0 + type: Transform +- uid: 591 + type: WallAlmayer + components: + - pos: -35.5,28.5 + parent: 0 + type: Transform +- uid: 592 + type: WallAlmayer + components: + - pos: -35.5,26.5 + parent: 0 + type: Transform +- uid: 593 + type: WallAlmayer + components: + - pos: -35.5,25.5 + parent: 0 + type: Transform +- uid: 594 + type: WallAlmayer + components: + - pos: -35.5,24.5 + parent: 0 + type: Transform +- uid: 595 + type: WallAlmayer + components: + - pos: -35.5,23.5 + parent: 0 + type: Transform +- uid: 596 + type: WallAlmayer + components: + - pos: -35.5,22.5 + parent: 0 + type: Transform +- uid: 597 + type: WallAlmayer + components: + - pos: -35.5,21.5 + parent: 0 + type: Transform +- uid: 598 + type: WallAlmayer + components: + - pos: -35.5,20.5 + parent: 0 + type: Transform +- uid: 599 + type: WallAlmayer + components: + - pos: -35.5,19.5 + parent: 0 + type: Transform +- uid: 600 + type: WallAlmayer + components: + - pos: -35.5,18.5 + parent: 0 + type: Transform +- uid: 601 + type: AirlockCommand + components: + - rot: -1.5707963267948966 rad + pos: -39.5,23.5 + parent: 0 + type: Transform +- uid: 602 + type: SignEngineering + components: + - pos: -31.5,-16.5 + parent: 0 + type: Transform +- uid: 603 + type: WallAlmayer + components: + - pos: -31.5,-1.5 + parent: 0 + type: Transform +- uid: 604 + type: WallAlmayer + components: + - pos: -32.5,-1.5 + parent: 0 + type: Transform +- uid: 605 + type: WallAlmayer + components: + - pos: -33.5,-1.5 + parent: 0 + type: Transform +- uid: 606 + type: WallAlmayer + components: + - pos: -33.5,-0.5 + parent: 0 + type: Transform +- uid: 607 + type: WallAlmayer + components: + - pos: -34.5,-0.5 + parent: 0 + type: Transform +- uid: 608 + type: WallAlmayer + components: + - pos: -34.5,0.5 + parent: 0 + type: Transform +- uid: 609 + type: WallAlmayer + components: + - pos: -35.5,0.5 + parent: 0 + type: Transform +- uid: 610 + type: WallAlmayer + components: + - pos: -35.5,1.5 + parent: 0 + type: Transform +- uid: 611 + type: FoodPlateSmallPlastic + components: + - pos: -26.598639,9.753982 + parent: 0 + type: Transform +- uid: 612 + type: FoodPlateSmallPlastic + components: + - pos: -26.611145,9.804016 + parent: 0 + type: Transform +- uid: 613 + type: VendingMachineCondiments + components: + - flags: SessionSpecific + type: MetaData + - rot: -1.5707963267948966 rad + pos: -30.5,9.5 + parent: 0 + type: Transform +- uid: 614 + type: WallAlmayer + components: + - pos: -35.5,7.5 + parent: 0 + type: Transform +- uid: 615 + type: WallAlmayer + components: + - pos: -35.5,8.5 + parent: 0 + type: Transform +- uid: 616 + type: WallAlmayer + components: + - pos: -34.5,8.5 + parent: 0 + type: Transform +- uid: 617 + type: WallAlmayer + components: + - pos: -34.5,9.5 + parent: 0 + type: Transform +- uid: 618 + type: WallAlmayer + components: + - pos: -33.5,9.5 + parent: 0 + type: Transform +- uid: 619 + type: WallAlmayer + components: + - pos: -33.5,10.5 + parent: 0 + type: Transform +- uid: 620 + type: WallAlmayer + components: + - pos: -32.5,10.5 + parent: 0 + type: Transform +- uid: 621 + type: WallAlmayer + components: + - pos: -31.5,10.5 + parent: 0 + type: Transform +- uid: 622 + type: WallAlmayer + components: + - pos: -30.5,10.5 + parent: 0 + type: Transform +- uid: 623 + type: WallAlmayer + components: + - pos: -29.5,10.5 + parent: 0 + type: Transform +- uid: 624 + type: WallAlmayer + components: + - pos: -28.5,10.5 + parent: 0 + type: Transform +- uid: 625 + type: WallAlmayer + components: + - pos: -27.5,10.5 + parent: 0 + type: Transform +- uid: 626 + type: WallAlmayer + components: + - pos: -26.5,10.5 + parent: 0 + type: Transform +- uid: 627 + type: WallAlmayer + components: + - pos: -25.5,10.5 + parent: 0 + type: Transform +- uid: 628 + type: WallAlmayer + components: + - pos: -25.5,9.5 + parent: 0 + type: Transform +- uid: 629 + type: WallAlmayer + components: + - pos: -24.5,9.5 + parent: 0 + type: Transform +- uid: 630 + type: WallAlmayer + components: + - pos: -24.5,8.5 + parent: 0 + type: Transform +- uid: 631 + type: WallAlmayer + components: + - pos: -23.5,8.5 + parent: 0 + type: Transform +- uid: 632 + type: WallAlmayer + components: + - pos: -23.5,7.5 + parent: 0 + type: Transform +- uid: 633 + type: WallAlmayer + components: + - pos: -23.5,6.5 + parent: 0 + type: Transform +- uid: 634 + type: ShuttersNormalOpen + components: + - rot: -1.5707963267948966 rad + pos: -23.5,2.5 + parent: 0 + type: Transform +- uid: 635 + type: WallAlmayer + components: + - pos: -23.5,4.5 + parent: 0 + type: Transform +- uid: 636 + type: TableReinforced + components: + - pos: -23.5,3.5 + parent: 0 + type: Transform +- uid: 637 + type: TableReinforced + components: + - pos: -23.5,2.5 + parent: 0 + type: Transform +- uid: 638 + type: WallAlmayer + components: + - pos: -23.5,1.5 + parent: 0 + type: Transform +- uid: 639 + type: WallAlmayer + components: + - pos: -23.5,0.5 + parent: 0 + type: Transform +- uid: 640 + type: WallAlmayer + components: + - pos: -24.5,0.5 + parent: 0 + type: Transform +- uid: 641 + type: WallAlmayer + components: + - pos: -24.5,-0.5 + parent: 0 + type: Transform +- uid: 642 + type: WallAlmayer + components: + - pos: -25.5,-0.5 + parent: 0 + type: Transform +- uid: 643 + type: WallAlmayer + components: + - pos: -25.5,-1.5 + parent: 0 + type: Transform +- uid: 644 + type: WallAlmayer + components: + - pos: -26.5,-1.5 + parent: 0 + type: Transform +- uid: 645 + type: WallAlmayer + components: + - pos: -27.5,-1.5 + parent: 0 + type: Transform +- uid: 646 + type: WallAlmayer + components: + - pos: -22.5,0.5 + parent: 0 + type: Transform +- uid: 647 + type: WallAlmayer + components: + - pos: -21.5,0.5 + parent: 0 + type: Transform +- uid: 648 + type: WallAlmayer + components: + - pos: -20.5,0.5 + parent: 0 + type: Transform +- uid: 649 + type: WallAlmayer + components: + - pos: -19.5,0.5 + parent: 0 + type: Transform +- uid: 650 + type: WallAlmayer + components: + - pos: -19.5,1.5 + parent: 0 + type: Transform +- uid: 651 + type: WallAlmayer + components: + - pos: -19.5,2.5 + parent: 0 + type: Transform +- uid: 652 + type: WallAlmayer + components: + - pos: -19.5,3.5 + parent: 0 + type: Transform +- uid: 653 + type: WallAlmayer + components: + - pos: -19.5,4.5 + parent: 0 + type: Transform +- uid: 654 + type: WallAlmayer + components: + - pos: -19.5,5.5 + parent: 0 + type: Transform +- uid: 655 + type: WallAlmayer + components: + - pos: -19.5,6.5 + parent: 0 + type: Transform +- uid: 656 + type: WallAlmayer + components: + - pos: -19.5,7.5 + parent: 0 + type: Transform +- uid: 657 + type: WallAlmayer + components: + - pos: -20.5,7.5 + parent: 0 + type: Transform +- uid: 658 + type: WallAlmayer + components: + - pos: -21.5,7.5 + parent: 0 + type: Transform +- uid: 659 + type: WallAlmayer + components: + - pos: -22.5,7.5 + parent: 0 + type: Transform +- uid: 660 + type: ShuttersNormalOpen + components: + - rot: -1.5707963267948966 rad + pos: -23.5,3.5 + parent: 0 + type: Transform +- uid: 661 + type: TableCounterMetal + components: + - pos: -22.5,1.5 + parent: 0 + type: Transform +- uid: 662 + type: TableCounterMetal + components: + - pos: -20.5,1.5 + parent: 0 + type: Transform +- uid: 663 + type: KitchenMicrowave + components: + - pos: -20.5,4.5 + parent: 0 + type: Transform +- uid: 664 + type: SinkWide + components: + - rot: -1.5707963267948966 rad + pos: -20.5,3.5 + parent: 0 + type: Transform +- uid: 665 + type: TableCounterMetal + components: + - pos: -20.5,4.5 + parent: 0 + type: Transform +- uid: 666 + type: TableCounterMetal + components: + - pos: -20.5,5.5 + parent: 0 + type: Transform +- uid: 667 + type: DisposalUnit + components: + - pos: -22.5,6.5 + parent: 0 + type: Transform +- uid: 668 + type: VendingMachineChefvend + components: + - flags: SessionSpecific + type: MetaData + - pos: -20.5,6.5 + parent: 0 + type: Transform +- uid: 669 + type: KitchenReagentGrinder + components: + - pos: -20.5,1.5 + parent: 0 + type: Transform +- uid: 670 + type: FoodCondimentBottleSmallHotsauce + components: + - pos: -22.687796,1.9406428 + parent: 0 + type: Transform +- uid: 671 + type: FoodCondimentBottleSmallHotsauce + components: + - pos: -22.487696,1.8530817 + parent: 0 + type: Transform +- uid: 672 + type: FoodCondimentBottleSmallVinegar + components: + - pos: -22.650276,1.6904688 + parent: 0 + type: Transform +- uid: 673 + type: AirlockPersonal + components: + - rot: -1.5707963267948966 rad + pos: -23.5,5.5 + parent: 0 + type: Transform +- uid: 674 + type: VendingMachineDinnerware + components: + - flags: SessionSpecific + type: MetaData + - pos: -21.5,1.5 + parent: 0 + type: Transform +- uid: 675 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -32.5,1.5 + parent: 0 + type: Transform +- uid: 676 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -32.5,2.5 + parent: 0 + type: Transform +- uid: 677 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -32.5,3.5 + parent: 0 + type: Transform +- uid: 678 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -31.5,1.5 + parent: 0 + type: Transform +- uid: 679 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -31.5,2.5 + parent: 0 + type: Transform +- uid: 680 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -31.5,3.5 + parent: 0 + type: Transform +- uid: 681 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -26.5,1.5 + parent: 0 + type: Transform +- uid: 682 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -26.5,2.5 + parent: 0 + type: Transform +- uid: 683 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -26.5,3.5 + parent: 0 + type: Transform +- uid: 684 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -27.5,1.5 + parent: 0 + type: Transform +- uid: 685 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -27.5,2.5 + parent: 0 + type: Transform +- uid: 686 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -27.5,3.5 + parent: 0 + type: Transform +- uid: 687 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -26.5,7.5 + parent: 0 + type: Transform +- uid: 688 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -26.5,6.5 + parent: 0 + type: Transform +- uid: 689 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -26.5,5.5 + parent: 0 + type: Transform +- uid: 690 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -27.5,7.5 + parent: 0 + type: Transform +- uid: 691 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -27.5,6.5 + parent: 0 + type: Transform +- uid: 692 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -27.5,5.5 + parent: 0 + type: Transform +- uid: 693 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -31.5,7.5 + parent: 0 + type: Transform +- uid: 694 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -31.5,6.5 + parent: 0 + type: Transform +- uid: 695 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -31.5,5.5 + parent: 0 + type: Transform +- uid: 696 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -32.5,7.5 + parent: 0 + type: Transform +- uid: 697 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -32.5,6.5 + parent: 0 + type: Transform +- uid: 698 + type: Table + components: + - rot: -1.5707963267948966 rad + pos: -32.5,5.5 + parent: 0 + type: Transform +- uid: 699 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -30.5,1.5 + parent: 0 + type: Transform +- uid: 700 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -30.5,2.5 + parent: 0 + type: Transform +- uid: 701 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -30.5,3.5 + parent: 0 + type: Transform +- uid: 702 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -33.5,1.5 + parent: 0 + type: Transform +- uid: 703 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -33.5,2.5 + parent: 0 + type: Transform +- uid: 704 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -33.5,3.5 + parent: 0 + type: Transform +- uid: 705 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -33.5,5.5 + parent: 0 + type: Transform +- uid: 706 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -33.5,6.5 + parent: 0 + type: Transform +- uid: 707 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -33.5,7.5 + parent: 0 + type: Transform +- uid: 708 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -28.5,7.5 + parent: 0 + type: Transform +- uid: 709 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -28.5,6.5 + parent: 0 + type: Transform +- uid: 710 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -28.5,5.5 + parent: 0 + type: Transform +- uid: 711 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -28.5,3.5 + parent: 0 + type: Transform +- uid: 712 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -28.5,2.5 + parent: 0 + type: Transform +- uid: 713 + type: Chair + components: + - rot: 1.5707963267948966 rad + pos: -28.5,1.5 + parent: 0 + type: Transform +- uid: 714 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -25.5,1.5 + parent: 0 + type: Transform +- uid: 715 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -25.5,2.5 + parent: 0 + type: Transform +- uid: 716 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -25.5,3.5 + parent: 0 + type: Transform +- uid: 717 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 0 + type: Transform +- uid: 718 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -25.5,6.5 + parent: 0 + type: Transform +- uid: 719 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -25.5,7.5 + parent: 0 + type: Transform +- uid: 720 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -30.5,5.5 + parent: 0 + type: Transform +- uid: 721 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -30.5,6.5 + parent: 0 + type: Transform +- uid: 722 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -30.5,7.5 + parent: 0 + type: Transform +- uid: 723 + type: TableReinforced + components: + - rot: -1.5707963267948966 rad + pos: -26.5,9.5 + parent: 0 + type: Transform +- uid: 724 + type: TableReinforced + components: + - rot: -1.5707963267948966 rad + pos: -27.5,9.5 + parent: 0 + type: Transform +- uid: 725 + type: TableReinforced + components: + - rot: -1.5707963267948966 rad + pos: -28.5,9.5 + parent: 0 + type: Transform +- uid: 726 + type: TableReinforced + components: + - rot: -1.5707963267948966 rad + pos: -31.5,9.5 + parent: 0 + type: Transform +- uid: 727 + type: TableReinforced + components: + - rot: -1.5707963267948966 rad + pos: -30.5,9.5 + parent: 0 + type: Transform +- uid: 728 + type: FoodPlateSmallPlastic + components: + - pos: -26.648663,9.829034 + parent: 0 + type: Transform +- uid: 729 + type: FoodPlatePlastic + components: + - pos: -27.506262,9.76649 + parent: 0 + type: Transform +- uid: 730 + type: FoodPlatePlastic + components: + - pos: -27.481249,9.778999 + parent: 0 + type: Transform +- uid: 731 + type: FoodPlatePlastic + components: + - pos: -27.543781,9.791508 + parent: 0 + type: Transform +- uid: 732 + type: FoodPlatePlastic + components: + - pos: -27.481249,9.76649 + parent: 0 + type: Transform +- uid: 733 + type: FoodPlatePlastic + components: + - pos: -27.543781,9.753982 + parent: 0 + type: Transform +- uid: 734 + type: FoodPlatePlastic + components: + - pos: -27.593805,9.76649 + parent: 0 + type: Transform +- uid: 735 + type: FoodPlatePlastic + components: + - pos: -27.518768,9.76649 + parent: 0 + type: Transform +- uid: 736 + type: FoodPlateSmallPlastic + components: + - pos: -26.627844,9.804016 + parent: 0 + type: Transform +- uid: 737 + type: FoodPlateSmallPlastic + components: + - pos: -26.615337,9.804016 + parent: 0 + type: Transform +- uid: 738 + type: FoodPlateSmallPlastic + components: + - pos: -26.627844,9.804016 + parent: 0 + type: Transform +- uid: 739 + type: Catwalk + components: + - pos: -49.5,-33.5 + parent: 0 + type: Transform +- uid: 740 + type: Fork + components: + - rot: 1.5707963267948966 rad + pos: -28.405378,9.436467 + parent: 0 + type: Transform +- uid: 741 + type: Fork + components: + - rot: 1.5707963267948966 rad + pos: -28.380365,9.499011 + parent: 0 + type: Transform +- uid: 742 + type: Fork + components: + - rot: 1.5707963267948966 rad + pos: -28.417883,9.499011 + parent: 0 + type: Transform +- uid: 743 + type: Fork + components: + - rot: 1.5707963267948966 rad + pos: -28.392872,9.436467 + parent: 0 + type: Transform +- uid: 744 + type: Spoon + components: + - rot: -1.5707963267948966 rad + pos: -28.467909,9.674132 + parent: 0 + type: Transform +- uid: 745 + type: Spoon + components: + - rot: -1.5707963267948966 rad + pos: -28.542946,9.674132 + parent: 0 + type: Transform +- uid: 746 + type: Spoon + components: + - rot: -1.5707963267948966 rad + pos: -28.467909,9.624097 + parent: 0 + type: Transform +- uid: 747 + type: Spoon + components: + - rot: -1.5707963267948966 rad + pos: -28.517935,9.7116585 + parent: 0 + type: Transform +- uid: 748 + type: Spoon + components: + - rot: -1.5707963267948966 rad + pos: -28.480415,9.7116585 + parent: 0 + type: Transform +- uid: 749 + type: CombatKnife + components: + - rot: -1.5707963267948966 rad + pos: -27.101273,9.624097 + parent: 0 + type: Transform +- uid: 750 + type: WallAlmayer + components: + - pos: -35.5,2.5 + parent: 0 + type: Transform +- uid: 751 + type: WallAlmayer + components: + - pos: -35.5,6.5 + parent: 0 + type: Transform +- uid: 752 + type: WindowAlmayer + components: + - pos: -35.5,3.5 + parent: 0 + type: Transform +- uid: 753 + type: WindowAlmayer + components: + - pos: -35.5,4.5 + parent: 0 + type: Transform +- uid: 754 + type: WindowAlmayer + components: + - pos: -35.5,5.5 + parent: 0 + type: Transform +- uid: 755 + type: Catwalk + components: + - pos: -50.5,-33.5 + parent: 0 + type: Transform +- uid: 756 + type: ComputerCrewMonitoring + components: + - pos: -49.5,-30.5 + parent: 0 + type: Transform +- uid: 757 + type: Catwalk + components: + - pos: -50.5,-34.5 + parent: 0 + type: Transform +- uid: 758 + type: CrewMonitoringServer + components: + - pos: -50.5,-30.5 + parent: 0 + type: Transform +- uid: 759 + type: Catwalk + components: + - pos: -49.5,-34.5 + parent: 0 + type: Transform +- uid: 760 + type: Catwalk + components: + - pos: -40.5,-24.5 + parent: 0 + type: Transform +- uid: 761 + type: Catwalk + components: + - pos: -40.5,-23.5 + parent: 0 + type: Transform +- uid: 762 + type: Catwalk + components: + - pos: -41.5,-24.5 + parent: 0 + type: Transform +- uid: 763 + type: Catwalk + components: + - pos: -41.5,-23.5 + parent: 0 + type: Transform +- uid: 764 + type: SubstationBasic + components: + - pos: -41.5,-24.5 + parent: 0 + type: Transform +- uid: 765 + type: ComputerPowerMonitoring + components: + - pos: -40.5,-24.5 + parent: 0 + type: Transform +- uid: 766 + type: MachineFrame + components: + - pos: -40.5,-23.5 + parent: 0 + type: Transform +- uid: 767 + type: MachineFrame + components: + - pos: -41.5,-23.5 + parent: 0 + type: Transform +- uid: 768 + type: CableHV + components: + - pos: -31.5,-27.5 + parent: 0 + type: Transform +- uid: 769 + type: CableHV + components: + - pos: -32.5,-27.5 + parent: 0 + type: Transform +- uid: 770 + type: CableHV + components: + - pos: -33.5,-27.5 + parent: 0 + type: Transform +- uid: 771 + type: CableHV + components: + - pos: -34.5,-27.5 + parent: 0 + type: Transform +- uid: 772 + type: CableHV + components: + - pos: -35.5,-27.5 + parent: 0 + type: Transform +- uid: 773 + type: CableHV + components: + - pos: -36.5,-27.5 + parent: 0 + type: Transform +- uid: 774 + type: CableHV + components: + - pos: -37.5,-27.5 + parent: 0 + type: Transform +- uid: 775 + type: CableHV + components: + - pos: -38.5,-27.5 + parent: 0 + type: Transform +- uid: 776 + type: CableHV + components: + - pos: -39.5,-27.5 + parent: 0 + type: Transform +- uid: 777 + type: CableHV + components: + - pos: -40.5,-27.5 + parent: 0 + type: Transform +- uid: 778 + type: CableHV + components: + - pos: -41.5,-27.5 + parent: 0 + type: Transform +- uid: 779 + type: CableHV + components: + - pos: -41.5,-26.5 + parent: 0 + type: Transform +- uid: 780 + type: CableHV + components: + - pos: -41.5,-25.5 + parent: 0 + type: Transform +- uid: 781 + type: CableHV + components: + - pos: -41.5,-24.5 + parent: 0 + type: Transform +- uid: 782 + type: Catwalk + components: + - pos: -42.5,-24.5 + parent: 0 + type: Transform +- uid: 783 + type: CableMV + components: + - pos: -41.5,-24.5 + parent: 0 + type: Transform +- uid: 784 + type: CableMV + components: + - pos: -42.5,-24.5 + parent: 0 + type: Transform +- uid: 785 + type: CableMV + components: + - pos: -43.5,-24.5 + parent: 0 + type: Transform +- uid: 786 + type: CableMV + components: + - pos: -44.5,-24.5 + parent: 0 + type: Transform +- uid: 787 + type: CableMV + components: + - pos: -45.5,-24.5 + parent: 0 + type: Transform +- uid: 788 + type: CableMV + components: + - pos: -46.5,-24.5 + parent: 0 + type: Transform +- uid: 789 + type: CableMV + components: + - pos: -47.5,-24.5 + parent: 0 + type: Transform +- uid: 790 + type: CableMV + components: + - pos: -48.5,-24.5 + parent: 0 + type: Transform +- uid: 791 + type: CableMV + components: + - pos: -49.5,-24.5 + parent: 0 + type: Transform +- uid: 792 + type: CableMV + components: + - pos: -49.5,-25.5 + parent: 0 + type: Transform +- uid: 793 + type: CableMV + components: + - pos: -49.5,-26.5 + parent: 0 + type: Transform +- uid: 794 + type: CableMV + components: + - pos: -49.5,-27.5 + parent: 0 + type: Transform +- uid: 795 + type: CableMV + components: + - pos: -49.5,-28.5 + parent: 0 + type: Transform +- uid: 796 + type: CableMV + components: + - pos: -49.5,-29.5 + parent: 0 + type: Transform +- uid: 797 + type: CableMV + components: + - pos: -49.5,-30.5 + parent: 0 + type: Transform +- uid: 798 + type: CableMV + components: + - pos: -48.5,-30.5 + parent: 0 + type: Transform +- uid: 799 + type: CableMV + components: + - pos: -47.5,-23.5 + parent: 0 + type: Transform +- uid: 800 + type: CableMV + components: + - pos: -47.5,-22.5 + parent: 0 + type: Transform +- uid: 801 + type: CableMV + components: + - pos: -47.5,-21.5 + parent: 0 + type: Transform +- uid: 802 + type: CableMV + components: + - pos: -47.5,-20.5 + parent: 0 + type: Transform +- uid: 803 + type: CableMV + components: + - pos: -47.5,-19.5 + parent: 0 + type: Transform +- uid: 804 + type: CableMV + components: + - pos: -47.5,-18.5 + parent: 0 + type: Transform +- uid: 805 + type: CableMV + components: + - pos: -46.5,-20.5 + parent: 0 + type: Transform +- uid: 806 + type: APCSuperCapacity + components: + - pos: -48.5,-30.5 + parent: 0 + type: Transform +- uid: 807 + type: APCBasic + components: + - rot: 3.141592653589793 rad + pos: -46.5,-20.5 + parent: 0 + type: Transform +- uid: 808 + type: APCBasic + components: + - rot: 3.141592653589793 rad + pos: -49.5,-11.5 + parent: 0 + type: Transform +- uid: 809 + type: APCBasic + components: + - pos: -48.5,4.5 + parent: 0 + type: Transform +- uid: 810 + type: APCBasic + components: + - pos: -47.5,13.5 + parent: 0 + type: Transform +- uid: 811 + type: CableMV + components: + - pos: -47.5,-17.5 + parent: 0 + type: Transform +- uid: 812 + type: CableMV + components: + - pos: -48.5,-17.5 + parent: 0 + type: Transform +- uid: 813 + type: CableMV + components: + - pos: -48.5,-16.5 + parent: 0 + type: Transform +- uid: 814 + type: CableMV + components: + - pos: -48.5,-15.5 + parent: 0 + type: Transform +- uid: 815 + type: CableMV + components: + - pos: -48.5,-14.5 + parent: 0 + type: Transform +- uid: 816 + type: CableMV + components: + - pos: -48.5,-13.5 + parent: 0 + type: Transform +- uid: 817 + type: CableMV + components: + - pos: -48.5,-12.5 + parent: 0 + type: Transform +- uid: 818 + type: CableMV + components: + - pos: -48.5,-11.5 + parent: 0 + type: Transform +- uid: 819 + type: CableMV + components: + - pos: -48.5,-10.5 + parent: 0 + type: Transform +- uid: 820 + type: CableMV + components: + - pos: -48.5,-9.5 + parent: 0 + type: Transform +- uid: 821 + type: CableMV + components: + - pos: -48.5,-8.5 + parent: 0 + type: Transform +- uid: 822 + type: CableMV + components: + - pos: -49.5,-11.5 + parent: 0 + type: Transform +- uid: 823 + type: CableMV + components: + - pos: -48.5,-7.5 + parent: 0 + type: Transform +- uid: 824 + type: CableMV + components: + - pos: -48.5,-6.5 + parent: 0 + type: Transform +- uid: 825 + type: CableMV + components: + - pos: -48.5,-5.5 + parent: 0 + type: Transform +- uid: 826 + type: CableMV + components: + - pos: -48.5,-4.5 + parent: 0 + type: Transform +- uid: 827 + type: CableMV + components: + - pos: -48.5,-3.5 + parent: 0 + type: Transform +- uid: 828 + type: CableMV + components: + - pos: -48.5,-2.5 + parent: 0 + type: Transform +- uid: 829 + type: CableMV + components: + - pos: -48.5,-1.5 + parent: 0 + type: Transform +- uid: 830 + type: CableMV + components: + - pos: -48.5,-0.5 + parent: 0 + type: Transform +- uid: 831 + type: CableMV + components: + - pos: -48.5,0.5 + parent: 0 + type: Transform +- uid: 832 + type: CableMV + components: + - pos: -48.5,1.5 + parent: 0 + type: Transform +- uid: 833 + type: CableMV + components: + - pos: -48.5,2.5 + parent: 0 + type: Transform +- uid: 834 + type: CableMV + components: + - pos: -48.5,3.5 + parent: 0 + type: Transform +- uid: 835 + type: CableMV + components: + - pos: -48.5,4.5 + parent: 0 + type: Transform +- uid: 836 + type: CableMV + components: + - pos: -47.5,3.5 + parent: 0 + type: Transform +- uid: 837 + type: CableMV + components: + - pos: -46.5,3.5 + parent: 0 + type: Transform +- uid: 838 + type: CableMV + components: + - pos: -46.5,4.5 + parent: 0 + type: Transform +- uid: 839 + type: CableMV + components: + - pos: -46.5,5.5 + parent: 0 + type: Transform +- uid: 840 + type: CableMV + components: + - pos: -46.5,6.5 + parent: 0 + type: Transform +- uid: 841 + type: CableMV + components: + - pos: -46.5,7.5 + parent: 0 + type: Transform +- uid: 842 + type: CableMV + components: + - pos: -46.5,8.5 + parent: 0 + type: Transform +- uid: 843 + type: CableMV + components: + - pos: -46.5,9.5 + parent: 0 + type: Transform +- uid: 844 + type: CableMV + components: + - pos: -46.5,10.5 + parent: 0 + type: Transform +- uid: 845 + type: CableMV + components: + - pos: -46.5,11.5 + parent: 0 + type: Transform +- uid: 846 + type: CableMV + components: + - pos: -46.5,12.5 + parent: 0 + type: Transform +- uid: 847 + type: CableMV + components: + - pos: -46.5,13.5 + parent: 0 + type: Transform +- uid: 848 + type: CableMV + components: + - pos: -47.5,13.5 + parent: 0 + type: Transform +- uid: 849 + type: Catwalk + components: + - pos: -4.5,-19.5 + parent: 0 + type: Transform +- uid: 850 + type: Catwalk + components: + - pos: -4.5,-20.5 + parent: 0 + type: Transform +- uid: 851 + type: CableHV + components: + - pos: -40.5,-24.5 + parent: 0 + type: Transform +- uid: 852 + type: Catwalk + components: + - pos: -3.5,-20.5 + parent: 0 + type: Transform +- uid: 853 + type: Catwalk + components: + - pos: -3.5,-19.5 + parent: 0 + type: Transform +- uid: 854 + type: ComputerPowerMonitoring + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-19.5 + parent: 0 + type: Transform +- uid: 855 + type: SubstationBasic + components: + - pos: -4.5,-20.5 + parent: 0 + type: Transform +- uid: 856 + type: MachineFrame + components: + - pos: -3.5,-19.5 + parent: 0 + type: Transform +- uid: 857 + type: MachineFrame + components: + - pos: -3.5,-20.5 + parent: 0 + type: Transform +- uid: 858 + type: CableHV + components: + - pos: -23.5,-27.5 + parent: 0 + type: Transform +- uid: 859 + type: CableHV + components: + - pos: -22.5,-27.5 + parent: 0 + type: Transform +- uid: 860 + type: CableHV + components: + - pos: -21.5,-27.5 + parent: 0 + type: Transform +- uid: 861 + type: CableHV + components: + - pos: -20.5,-27.5 + parent: 0 + type: Transform +- uid: 862 + type: CableHV + components: + - pos: -19.5,-27.5 + parent: 0 + type: Transform +- uid: 863 + type: CableHV + components: + - pos: -18.5,-27.5 + parent: 0 + type: Transform +- uid: 864 + type: CableHV + components: + - pos: -17.5,-27.5 + parent: 0 + type: Transform +- uid: 865 + type: CableHV + components: + - pos: -17.5,-26.5 + parent: 0 + type: Transform +- uid: 866 + type: CableHV + components: + - pos: -17.5,-25.5 + parent: 0 + type: Transform +- uid: 867 + type: CableHV + components: + - pos: -16.5,-25.5 + parent: 0 + type: Transform +- uid: 868 + type: CableHV + components: + - pos: -15.5,-25.5 + parent: 0 + type: Transform +- uid: 869 + type: CableHV + components: + - pos: -14.5,-25.5 + parent: 0 + type: Transform +- uid: 870 + type: CableHV + components: + - pos: -13.5,-25.5 + parent: 0 + type: Transform +- uid: 871 + type: CableHV + components: + - pos: -12.5,-25.5 + parent: 0 + type: Transform +- uid: 872 + type: CableHV + components: + - pos: -11.5,-25.5 + parent: 0 + type: Transform +- uid: 873 + type: CableHV + components: + - pos: -10.5,-25.5 + parent: 0 + type: Transform +- uid: 874 + type: CableHV + components: + - pos: -9.5,-25.5 + parent: 0 + type: Transform +- uid: 875 + type: CableHV + components: + - pos: -8.5,-25.5 + parent: 0 + type: Transform +- uid: 876 + type: CableHV + components: + - pos: -7.5,-25.5 + parent: 0 + type: Transform +- uid: 877 + type: CableHV + components: + - pos: -6.5,-25.5 + parent: 0 + type: Transform +- uid: 878 + type: CableHV + components: + - pos: -5.5,-25.5 + parent: 0 + type: Transform +- uid: 879 + type: CableHV + components: + - pos: -4.5,-25.5 + parent: 0 + type: Transform +- uid: 880 + type: CableHV + components: + - pos: -4.5,-24.5 + parent: 0 + type: Transform +- uid: 881 + type: CableHV + components: + - pos: -4.5,-23.5 + parent: 0 + type: Transform +- uid: 882 + type: CableHV + components: + - pos: -4.5,-22.5 + parent: 0 + type: Transform +- uid: 883 + type: CableHV + components: + - pos: -4.5,-21.5 + parent: 0 + type: Transform +- uid: 884 + type: CableHV + components: + - pos: -4.5,-20.5 + parent: 0 + type: Transform +- uid: 885 + type: CableHV + components: + - pos: -4.5,-19.5 + parent: 0 + type: Transform +- uid: 886 + type: CableMV + components: + - pos: -4.5,-20.5 + parent: 0 + type: Transform +- uid: 887 + type: CableMV + components: + - pos: -4.5,-19.5 + parent: 0 + type: Transform +- uid: 888 + type: CableMV + components: + - pos: -4.5,-18.5 + parent: 0 + type: Transform +- uid: 889 + type: CableMV + components: + - pos: -4.5,-17.5 + parent: 0 + type: Transform +- uid: 890 + type: CableMV + components: + - pos: -4.5,-16.5 + parent: 0 + type: Transform +- uid: 891 + type: CableMV + components: + - pos: -4.5,-15.5 + parent: 0 + type: Transform +- uid: 892 + type: CableMV + components: + - pos: -5.5,-15.5 + parent: 0 + type: Transform +- uid: 893 + type: CableMV + components: + - pos: -6.5,-15.5 + parent: 0 + type: Transform +- uid: 894 + type: CableMV + components: + - pos: -7.5,-15.5 + parent: 0 + type: Transform +- uid: 895 + type: CableMV + components: + - pos: -8.5,-15.5 + parent: 0 + type: Transform +- uid: 896 + type: CableMV + components: + - pos: -9.5,-15.5 + parent: 0 + type: Transform +- uid: 897 + type: CableMV + components: + - pos: -10.5,-15.5 + parent: 0 + type: Transform +- uid: 898 + type: CableMV + components: + - pos: -11.5,-15.5 + parent: 0 + type: Transform +- uid: 899 + type: CableMV + components: + - pos: -12.5,-15.5 + parent: 0 + type: Transform +- uid: 900 + type: CableMV + components: + - pos: -13.5,-15.5 + parent: 0 + type: Transform +- uid: 901 + type: CableMV + components: + - pos: -14.5,-15.5 + parent: 0 + type: Transform +- uid: 902 + type: CableMV + components: + - pos: -15.5,-15.5 + parent: 0 + type: Transform +- uid: 903 + type: CableMV + components: + - pos: -16.5,-15.5 + parent: 0 + type: Transform +- uid: 904 + type: CableMV + components: + - pos: -17.5,-15.5 + parent: 0 + type: Transform +- uid: 905 + type: CableMV + components: + - pos: -18.5,-15.5 + parent: 0 + type: Transform +- uid: 906 + type: CableMV + components: + - pos: -18.5,-17.5 + parent: 0 + type: Transform +- uid: 907 + type: CableMV + components: + - pos: -18.5,-16.5 + parent: 0 + type: Transform +- uid: 908 + type: CableMV + components: + - pos: -18.5,-20.5 + parent: 0 + type: Transform +- uid: 909 + type: CableMV + components: + - pos: -18.5,-19.5 + parent: 0 + type: Transform +- uid: 910 + type: CableMV + components: + - pos: -18.5,-18.5 + parent: 0 + type: Transform +- uid: 911 + type: CableMV + components: + - pos: -18.5,-21.5 + parent: 0 + type: Transform +- uid: 912 + type: CableMV + components: + - pos: -19.5,-21.5 + parent: 0 + type: Transform +- uid: 913 + type: CableMV + components: + - pos: -20.5,-21.5 + parent: 0 + type: Transform +- uid: 914 + type: CableMV + components: + - pos: -21.5,-21.5 + parent: 0 + type: Transform +- uid: 915 + type: APCHighCapacity + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-21.5 + parent: 0 + type: Transform +- uid: 916 + type: CableApcExtension + components: + - pos: -21.5,-21.5 + parent: 0 + type: Transform +- uid: 917 + type: CableApcExtension + components: + - pos: -22.5,-21.5 + parent: 0 + type: Transform +- uid: 918 + type: CableApcExtension + components: + - pos: -22.5,-20.5 + parent: 0 + type: Transform +- uid: 919 + type: CableApcExtension + components: + - pos: -22.5,-19.5 + parent: 0 + type: Transform +- uid: 920 + type: CableApcExtension + components: + - pos: -23.5,-21.5 + parent: 0 + type: Transform +- uid: 921 + type: CableApcExtension + components: + - pos: -24.5,-21.5 + parent: 0 + type: Transform +- uid: 922 + type: CableApcExtension + components: + - pos: -25.5,-21.5 + parent: 0 + type: Transform +- uid: 923 + type: CableApcExtension + components: + - pos: -26.5,-21.5 + parent: 0 + type: Transform +- uid: 924 + type: CableApcExtension + components: + - pos: -27.5,-21.5 + parent: 0 + type: Transform +- uid: 925 + type: SpawnPointStationEngineer + components: + - pos: -29.5,-17.5 + parent: 0 + type: Transform +- uid: 926 + type: CableApcExtension + components: + - pos: -29.5,-21.5 + parent: 0 + type: Transform +- uid: 927 + type: CableApcExtension + components: + - pos: -30.5,-21.5 + parent: 0 + type: Transform +- uid: 928 + type: CableApcExtension + components: + - pos: -29.5,-20.5 + parent: 0 + type: Transform +- uid: 929 + type: CableApcExtension + components: + - pos: -29.5,-19.5 + parent: 0 + type: Transform +- uid: 930 + type: CableApcExtension + components: + - pos: -29.5,-18.5 + parent: 0 + type: Transform +- uid: 931 + type: CableApcExtension + components: + - pos: -29.5,-17.5 + parent: 0 + type: Transform +- uid: 932 + type: CableApcExtension + components: + - pos: -22.5,-18.5 + parent: 0 + type: Transform +- uid: 933 + type: CableApcExtension + components: + - pos: -22.5,-17.5 + parent: 0 + type: Transform +- uid: 934 + type: CableApcExtension + components: + - pos: -22.5,-16.5 + parent: 0 + type: Transform +- uid: 935 + type: CableApcExtension + components: + - pos: -22.5,-15.5 + parent: 0 + type: Transform +- uid: 936 + type: CableApcExtension + components: + - pos: -23.5,-16.5 + parent: 0 + type: Transform +- uid: 937 + type: CableApcExtension + components: + - pos: -26.5,-20.5 + parent: 0 + type: Transform +- uid: 938 + type: CableApcExtension + components: + - pos: -26.5,-19.5 + parent: 0 + type: Transform +- uid: 939 + type: CableApcExtension + components: + - pos: -26.5,-18.5 + parent: 0 + type: Transform +- uid: 940 + type: CableApcExtension + components: + - pos: -26.5,-17.5 + parent: 0 + type: Transform +- uid: 941 + type: CableApcExtension + components: + - pos: -26.5,-16.5 + parent: 0 + type: Transform +- uid: 942 + type: CableApcExtension + components: + - pos: -26.5,-15.5 + parent: 0 + type: Transform +- uid: 943 + type: CableApcExtension + components: + - pos: -25.5,-16.5 + parent: 0 + type: Transform +- uid: 944 + type: CableApcExtension + components: + - pos: -30.5,-17.5 + parent: 0 + type: Transform +- uid: 945 + type: Catwalk + components: + - pos: -4.5,-21.5 + parent: 0 + type: Transform +- uid: 946 + type: Catwalk + components: + - pos: -4.5,-18.5 + parent: 0 + type: Transform +- uid: 947 + type: CableMV + components: + - pos: -8.5,-11.5 + parent: 0 + type: Transform +- uid: 948 + type: CableMV + components: + - pos: -8.5,-12.5 + parent: 0 + type: Transform +- uid: 949 + type: CableMV + components: + - pos: -8.5,-13.5 + parent: 0 + type: Transform +- uid: 950 + type: CableMV + components: + - pos: -8.5,-14.5 + parent: 0 + type: Transform +- uid: 951 + type: CableMV + components: + - pos: -8.5,-9.5 + parent: 0 + type: Transform +- uid: 952 + type: CableMV + components: + - pos: -8.5,-5.5 + parent: 0 + type: Transform +- uid: 953 + type: CableMV + components: + - pos: -8.5,-8.5 + parent: 0 + type: Transform +- uid: 954 + type: CableMV + components: + - pos: -8.5,-6.5 + parent: 0 + type: Transform +- uid: 955 + type: CableMV + components: + - pos: -8.5,-7.5 + parent: 0 + type: Transform +- uid: 956 + type: CableMV + components: + - pos: -8.5,-10.5 + parent: 0 + type: Transform +- uid: 957 + type: CableMV + components: + - pos: -8.5,-4.5 + parent: 0 + type: Transform +- uid: 958 + type: CableMV + components: + - pos: -8.5,-3.5 + parent: 0 + type: Transform +- uid: 959 + type: CableMV + components: + - pos: -8.5,-2.5 + parent: 0 + type: Transform +- uid: 960 + type: CableMV + components: + - pos: -8.5,-1.5 + parent: 0 + type: Transform +- uid: 961 + type: CableMV + components: + - pos: -8.5,-0.5 + parent: 0 + type: Transform +- uid: 962 + type: CableMV + components: + - pos: -8.5,0.5 + parent: 0 + type: Transform +- uid: 963 + type: CableMV + components: + - pos: -8.5,1.5 + parent: 0 + type: Transform +- uid: 964 + type: CableMV + components: + - pos: -8.5,2.5 + parent: 0 + type: Transform +- uid: 965 + type: CableMV + components: + - pos: -8.5,3.5 + parent: 0 + type: Transform +- uid: 966 + type: CableMV + components: + - pos: -8.5,4.5 + parent: 0 + type: Transform +- uid: 967 + type: CableMV + components: + - pos: -9.5,4.5 + parent: 0 + type: Transform +- uid: 968 + type: CableMV + components: + - pos: -10.5,4.5 + parent: 0 + type: Transform +- uid: 969 + type: CableMV + components: + - pos: -11.5,4.5 + parent: 0 + type: Transform +- uid: 970 + type: CableMV + components: + - pos: -12.5,4.5 + parent: 0 + type: Transform +- uid: 971 + type: CableMV + components: + - pos: -13.5,4.5 + parent: 0 + type: Transform +- uid: 972 + type: CableMV + components: + - pos: -14.5,4.5 + parent: 0 + type: Transform +- uid: 973 + type: CableMV + components: + - pos: -15.5,4.5 + parent: 0 + type: Transform +- uid: 974 + type: CableMV + components: + - pos: -16.5,4.5 + parent: 0 + type: Transform +- uid: 975 + type: CableMV + components: + - pos: -17.5,4.5 + parent: 0 + type: Transform +- uid: 976 + type: CableMV + components: + - pos: -18.5,4.5 + parent: 0 + type: Transform +- uid: 977 + type: CableMV + components: + - pos: -19.5,4.5 + parent: 0 + type: Transform +- uid: 978 + type: CableMV + components: + - pos: -20.5,4.5 + parent: 0 + type: Transform +- uid: 979 + type: CableMV + components: + - pos: -21.5,4.5 + parent: 0 + type: Transform +- uid: 980 + type: CableMV + components: + - pos: -22.5,4.5 + parent: 0 + type: Transform +- uid: 981 + type: CableMV + components: + - pos: -23.5,4.5 + parent: 0 + type: Transform +- uid: 982 + type: APCBasic + components: + - rot: -1.5707963267948966 rad + pos: -23.5,4.5 + parent: 0 + type: Transform +- uid: 983 + type: CableApcExtension + components: + - pos: -23.5,4.5 + parent: 0 + type: Transform +- uid: 984 + type: CableApcExtension + components: + - pos: -22.5,4.5 + parent: 0 + type: Transform +- uid: 985 + type: CableApcExtension + components: + - pos: -21.5,4.5 + parent: 0 + type: Transform +- uid: 986 + type: CableApcExtension + components: + - pos: -20.5,4.5 + parent: 0 + type: Transform +- uid: 987 + type: CableApcExtension + components: + - pos: -21.5,5.5 + parent: 0 + type: Transform +- uid: 988 + type: CableApcExtension + components: + - pos: -21.5,3.5 + parent: 0 + type: Transform +- uid: 989 + type: CableApcExtension + components: + - pos: -21.5,2.5 + parent: 0 + type: Transform +- uid: 990 + type: CableApcExtension + components: + - pos: -24.5,4.5 + parent: 0 + type: Transform +- uid: 991 + type: CableApcExtension + components: + - pos: -25.5,4.5 + parent: 0 + type: Transform +- uid: 992 + type: CableApcExtension + components: + - pos: -26.5,4.5 + parent: 0 + type: Transform +- uid: 993 + type: CableApcExtension + components: + - pos: -27.5,4.5 + parent: 0 + type: Transform +- uid: 994 + type: CableApcExtension + components: + - pos: -28.5,4.5 + parent: 0 + type: Transform +- uid: 995 + type: CableApcExtension + components: + - pos: -29.5,4.5 + parent: 0 + type: Transform +- uid: 996 + type: CableApcExtension + components: + - pos: -30.5,4.5 + parent: 0 + type: Transform +- uid: 997 + type: CableApcExtension + components: + - pos: -31.5,4.5 + parent: 0 + type: Transform +- uid: 998 + type: CableApcExtension + components: + - pos: -32.5,4.5 + parent: 0 + type: Transform +- uid: 999 + type: CableApcExtension + components: + - pos: -33.5,4.5 + parent: 0 + type: Transform +- uid: 1000 + type: CableApcExtension + components: + - pos: -34.5,4.5 + parent: 0 + type: Transform +- uid: 1001 + type: CableApcExtension + components: + - pos: -29.5,5.5 + parent: 0 + type: Transform +- uid: 1002 + type: CableApcExtension + components: + - pos: -29.5,6.5 + parent: 0 + type: Transform +- uid: 1003 + type: CableApcExtension + components: + - pos: -29.5,7.5 + parent: 0 + type: Transform +- uid: 1004 + type: CableApcExtension + components: + - pos: -29.5,8.5 + parent: 0 + type: Transform +- uid: 1005 + type: CableApcExtension + components: + - pos: -29.5,3.5 + parent: 0 + type: Transform +- uid: 1006 + type: CableApcExtension + components: + - pos: -29.5,2.5 + parent: 0 + type: Transform +- uid: 1007 + type: CableApcExtension + components: + - pos: -29.5,1.5 + parent: 0 + type: Transform +- uid: 1008 + type: CableApcExtension + components: + - pos: -29.5,0.5 + parent: 0 + type: Transform +- uid: 1009 + type: CableApcExtension + components: + - pos: -25.5,3.5 + parent: 0 + type: Transform +- uid: 1010 + type: CableApcExtension + components: + - pos: -25.5,2.5 + parent: 0 + type: Transform +- uid: 1011 + type: CableApcExtension + components: + - pos: -26.5,2.5 + parent: 0 + type: Transform +- uid: 1012 + type: CableApcExtension + components: + - pos: -30.5,2.5 + parent: 0 + type: Transform +- uid: 1013 + type: CableApcExtension + components: + - pos: -31.5,2.5 + parent: 0 + type: Transform +- uid: 1014 + type: CableApcExtension + components: + - pos: -32.5,2.5 + parent: 0 + type: Transform +- uid: 1015 + type: CableApcExtension + components: + - pos: -33.5,2.5 + parent: 0 + type: Transform +- uid: 1016 + type: CableApcExtension + components: + - pos: -32.5,5.5 + parent: 0 + type: Transform +- uid: 1017 + type: CableApcExtension + components: + - pos: -32.5,7.5 + parent: 0 + type: Transform +- uid: 1018 + type: CableApcExtension + components: + - pos: -32.5,6.5 + parent: 0 + type: Transform +- uid: 1019 + type: CableApcExtension + components: + - pos: -32.5,8.5 + parent: 0 + type: Transform +- uid: 1020 + type: CableApcExtension + components: + - pos: -31.5,8.5 + parent: 0 + type: Transform +- uid: 1021 + type: CableApcExtension + components: + - pos: -28.5,8.5 + parent: 0 + type: Transform +- uid: 1022 + type: CableApcExtension + components: + - pos: -27.5,8.5 + parent: 0 + type: Transform +- uid: 1023 + type: CableApcExtension + components: + - pos: -26.5,8.5 + parent: 0 + type: Transform +- uid: 1024 + type: CableApcExtension + components: + - pos: -26.5,7.5 + parent: 0 + type: Transform +- uid: 1025 + type: CableApcExtension + components: + - pos: -27.5,0.5 + parent: 0 + type: Transform +- uid: 1026 + type: CableApcExtension + components: + - pos: -28.5,0.5 + parent: 0 + type: Transform +- uid: 1027 + type: CableApcExtension + components: + - pos: -30.5,0.5 + parent: 0 + type: Transform +- uid: 1028 + type: CableApcExtension + components: + - pos: -31.5,0.5 + parent: 0 + type: Transform +- uid: 1029 + type: CableApcExtension + components: + - pos: -29.5,-0.5 + parent: 0 + type: Transform +- uid: 1030 + type: Catwalk + components: + - pos: -29.5,13.5 + parent: 0 + type: Transform +- uid: 1031 + type: Catwalk + components: + - pos: -29.5,14.5 + parent: 0 + type: Transform +- uid: 1032 + type: Catwalk + components: + - pos: -28.5,14.5 + parent: 0 + type: Transform +- uid: 1033 + type: Catwalk + components: + - pos: -28.5,13.5 + parent: 0 + type: Transform +- uid: 1034 + type: Catwalk + components: + - pos: -27.5,13.5 + parent: 0 + type: Transform +- uid: 1035 + type: Catwalk + components: + - pos: -30.5,13.5 + parent: 0 + type: Transform +- uid: 1036 + type: CableHV + components: + - pos: -4.5,-18.5 + parent: 0 + type: Transform +- uid: 1037 + type: CableHV + components: + - pos: -4.5,-18.5 + parent: 0 + type: Transform +- uid: 1038 + type: CableHV + components: + - pos: -4.5,-17.5 + parent: 0 + type: Transform +- uid: 1039 + type: CableHV + components: + - pos: -4.5,-16.5 + parent: 0 + type: Transform +- uid: 1040 + type: CableHV + components: + - pos: -4.5,-15.5 + parent: 0 + type: Transform +- uid: 1041 + type: CableHV + components: + - pos: -13.5,5.5 + parent: 0 + type: Transform +- uid: 1042 + type: CableHV + components: + - pos: -5.5,-15.5 + parent: 0 + type: Transform +- uid: 1043 + type: CableHV + components: + - pos: -6.5,-15.5 + parent: 0 + type: Transform +- uid: 1044 + type: CableHV + components: + - pos: -7.5,-15.5 + parent: 0 + type: Transform +- uid: 1045 + type: CableHV + components: + - pos: -8.5,-15.5 + parent: 0 + type: Transform +- uid: 1046 + type: CableHV + components: + - pos: -13.5,6.5 + parent: 0 + type: Transform +- uid: 1047 + type: CableHV + components: + - pos: -8.5,-14.5 + parent: 0 + type: Transform +- uid: 1048 + type: CableHV + components: + - pos: -8.5,-13.5 + parent: 0 + type: Transform +- uid: 1049 + type: CableHV + components: + - pos: -8.5,-12.5 + parent: 0 + type: Transform +- uid: 1050 + type: CableHV + components: + - pos: -8.5,-11.5 + parent: 0 + type: Transform +- uid: 1051 + type: CableHV + components: + - pos: -8.5,-10.5 + parent: 0 + type: Transform +- uid: 1052 + type: CableHV + components: + - pos: -8.5,-9.5 + parent: 0 + type: Transform +- uid: 1053 + type: CableHV + components: + - pos: -8.5,-8.5 + parent: 0 + type: Transform +- uid: 1054 + type: CableHV + components: + - pos: -8.5,-7.5 + parent: 0 + type: Transform +- uid: 1055 + type: CableHV + components: + - pos: -8.5,-6.5 + parent: 0 + type: Transform +- uid: 1056 + type: CableHV + components: + - pos: -8.5,-5.5 + parent: 0 + type: Transform +- uid: 1057 + type: CableHV + components: + - pos: -8.5,-4.5 + parent: 0 + type: Transform +- uid: 1058 + type: CableHV + components: + - pos: -8.5,-3.5 + parent: 0 + type: Transform +- uid: 1059 + type: CableHV + components: + - pos: -8.5,-2.5 + parent: 0 + type: Transform +- uid: 1060 + type: CableHV + components: + - pos: -8.5,-1.5 + parent: 0 + type: Transform +- uid: 1061 + type: CableHV + components: + - pos: -8.5,-0.5 + parent: 0 + type: Transform +- uid: 1062 + type: CableHV + components: + - pos: -8.5,0.5 + parent: 0 + type: Transform +- uid: 1063 + type: CableHV + components: + - pos: -8.5,1.5 + parent: 0 + type: Transform +- uid: 1064 + type: CableHV + components: + - pos: -8.5,2.5 + parent: 0 + type: Transform +- uid: 1065 + type: CableHV + components: + - pos: -8.5,3.5 + parent: 0 + type: Transform +- uid: 1066 + type: CableHV + components: + - pos: -8.5,4.5 + parent: 0 + type: Transform +- uid: 1067 + type: CableHV + components: + - pos: -9.5,4.5 + parent: 0 + type: Transform +- uid: 1068 + type: CableHV + components: + - pos: -10.5,4.5 + parent: 0 + type: Transform +- uid: 1069 + type: CableHV + components: + - pos: -11.5,4.5 + parent: 0 + type: Transform +- uid: 1070 + type: CableHV + components: + - pos: -12.5,4.5 + parent: 0 + type: Transform +- uid: 1071 + type: CableHV + components: + - pos: -13.5,4.5 + parent: 0 + type: Transform +- uid: 1072 + type: CableHV + components: + - pos: -13.5,7.5 + parent: 0 + type: Transform +- uid: 1073 + type: CableHV + components: + - pos: -13.5,8.5 + parent: 0 + type: Transform +- uid: 1074 + type: CableHV + components: + - pos: -13.5,9.5 + parent: 0 + type: Transform +- uid: 1075 + type: CableHV + components: + - pos: -13.5,10.5 + parent: 0 + type: Transform +- uid: 1076 + type: CableHV + components: + - pos: -13.5,11.5 + parent: 0 + type: Transform +- uid: 1077 + type: CableHV + components: + - pos: -13.5,12.5 + parent: 0 + type: Transform +- uid: 1078 + type: CableHV + components: + - pos: -13.5,13.5 + parent: 0 + type: Transform +- uid: 1079 + type: CableHV + components: + - pos: -14.5,13.5 + parent: 0 + type: Transform +- uid: 1080 + type: CableHV + components: + - pos: -15.5,13.5 + parent: 0 + type: Transform +- uid: 1081 + type: CableHV + components: + - pos: -16.5,13.5 + parent: 0 + type: Transform +- uid: 1082 + type: CableHV + components: + - pos: -17.5,13.5 + parent: 0 + type: Transform +- uid: 1083 + type: CableHV + components: + - pos: -18.5,13.5 + parent: 0 + type: Transform +- uid: 1084 + type: CableHV + components: + - pos: -19.5,13.5 + parent: 0 + type: Transform +- uid: 1085 + type: CableHV + components: + - pos: -20.5,13.5 + parent: 0 + type: Transform +- uid: 1086 + type: CableHV + components: + - pos: -21.5,13.5 + parent: 0 + type: Transform +- uid: 1087 + type: CableHV + components: + - pos: -22.5,13.5 + parent: 0 + type: Transform +- uid: 1088 + type: CableHV + components: + - pos: -23.5,13.5 + parent: 0 + type: Transform +- uid: 1089 + type: CableHV + components: + - pos: -24.5,13.5 + parent: 0 + type: Transform +- uid: 1090 + type: CableHV + components: + - pos: -25.5,13.5 + parent: 0 + type: Transform +- uid: 1091 + type: CableHV + components: + - pos: -26.5,13.5 + parent: 0 + type: Transform +- uid: 1092 + type: CableHV + components: + - pos: -27.5,13.5 + parent: 0 + type: Transform +- uid: 1093 + type: CableHV + components: + - pos: -28.5,13.5 + parent: 0 + type: Transform +- uid: 1094 + type: CableMV + components: + - pos: -28.5,13.5 + parent: 0 + type: Transform +- uid: 1095 + type: CableMV + components: + - pos: -29.5,13.5 + parent: 0 + type: Transform +- uid: 1096 + type: CableMV + components: + - pos: -30.5,13.5 + parent: 0 + type: Transform +- uid: 1097 + type: SubstationBasic + components: + - pos: -28.5,13.5 + parent: 0 + type: Transform +- uid: 1098 + type: ComputerPowerMonitoring + components: + - pos: -29.5,13.5 + parent: 0 + type: Transform +- uid: 1099 + type: MachineFrame + components: + - pos: -28.5,14.5 + parent: 0 + type: Transform +- uid: 1100 + type: MachineFrame + components: + - pos: -29.5,14.5 + parent: 0 + type: Transform +- uid: 1101 + type: AirlockSecurity + components: + - rot: -1.5707963267948966 rad + pos: -44.5,22.5 + parent: 0 + type: Transform +- uid: 1102 + type: AirlockSecurity + components: + - rot: -1.5707963267948966 rad + pos: -44.5,21.5 + parent: 0 + type: Transform +- uid: 1103 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -44.5,23.5 + parent: 0 + type: Transform +- uid: 1104 + type: WindowAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -44.5,25.5 + parent: 0 + type: Transform +- uid: 1105 + type: WindowAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -44.5,24.5 + parent: 0 + type: Transform +- uid: 1106 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -44.5,26.5 + parent: 0 + type: Transform +- uid: 1107 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -44.5,27.5 + parent: 0 + type: Transform +- uid: 1108 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -45.5,27.5 + parent: 0 + type: Transform +- uid: 1109 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -46.5,27.5 + parent: 0 + type: Transform +- uid: 1110 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -47.5,27.5 + parent: 0 + type: Transform +- uid: 1111 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -48.5,27.5 + parent: 0 + type: Transform +- uid: 1112 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -49.5,27.5 + parent: 0 + type: Transform +- uid: 1113 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -50.5,27.5 + parent: 0 + type: Transform +- uid: 1114 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -51.5,27.5 + parent: 0 + type: Transform +- uid: 1115 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -52.5,27.5 + parent: 0 + type: Transform +- uid: 1116 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -53.5,27.5 + parent: 0 + type: Transform +- uid: 1117 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -54.5,27.5 + parent: 0 + type: Transform +- uid: 1118 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -55.5,27.5 + parent: 0 + type: Transform +- uid: 1119 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -56.5,27.5 + parent: 0 + type: Transform +- uid: 1120 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -57.5,27.5 + parent: 0 + type: Transform +- uid: 1121 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -57.5,26.5 + parent: 0 + type: Transform +- uid: 1122 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -57.5,25.5 + parent: 0 + type: Transform +- uid: 1123 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -57.5,24.5 + parent: 0 + type: Transform +- uid: 1124 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -57.5,23.5 + parent: 0 + type: Transform +- uid: 1125 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -57.5,22.5 + parent: 0 + type: Transform +- uid: 1126 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -57.5,21.5 + parent: 0 + type: Transform +- uid: 1127 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -57.5,20.5 + parent: 0 + type: Transform +- uid: 1128 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -57.5,19.5 + parent: 0 + type: Transform +- uid: 1129 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -57.5,18.5 + parent: 0 + type: Transform +- uid: 1130 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -57.5,17.5 + parent: 0 + type: Transform +- uid: 1131 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -57.5,16.5 + parent: 0 + type: Transform +- uid: 1132 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -56.5,16.5 + parent: 0 + type: Transform +- uid: 1133 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -55.5,16.5 + parent: 0 + type: Transform +- uid: 1134 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -54.5,16.5 + parent: 0 + type: Transform +- uid: 1135 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -53.5,16.5 + parent: 0 + type: Transform +- uid: 1136 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -52.5,16.5 + parent: 0 + type: Transform +- uid: 1137 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -51.5,16.5 + parent: 0 + type: Transform +- uid: 1138 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -50.5,16.5 + parent: 0 + type: Transform +- uid: 1139 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -49.5,16.5 + parent: 0 + type: Transform +- uid: 1140 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -46.5,16.5 + parent: 0 + type: Transform +- uid: 1141 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -48.5,16.5 + parent: 0 + type: Transform +- uid: 1142 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -47.5,16.5 + parent: 0 + type: Transform +- uid: 1143 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -44.5,17.5 + parent: 0 + type: Transform +- uid: 1144 + type: WindowAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -44.5,19.5 + parent: 0 + type: Transform +- uid: 1145 + type: WindowAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -44.5,18.5 + parent: 0 + type: Transform +- uid: 1146 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -44.5,20.5 + parent: 0 + type: Transform +- uid: 1147 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -45.5,16.5 + parent: 0 + type: Transform +- uid: 1148 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -44.5,16.5 + parent: 0 + type: Transform +- uid: 1149 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: -44.5,25.5 + parent: 0 + type: Transform +- uid: 1150 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: -44.5,24.5 + parent: 0 + type: Transform +- uid: 1151 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: -44.5,19.5 + parent: 0 + type: Transform +- uid: 1152 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: -44.5,18.5 + parent: 0 + type: Transform +- uid: 1153 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -46.5,25.5 + parent: 0 + type: Transform +- uid: 1154 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -47.5,25.5 + parent: 0 + type: Transform +- uid: 1155 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -48.5,25.5 + parent: 0 + type: Transform +- uid: 1156 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -49.5,25.5 + parent: 0 + type: Transform +- uid: 1157 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -49.5,23.5 + parent: 0 + type: Transform +- uid: 1158 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -48.5,23.5 + parent: 0 + type: Transform +- uid: 1159 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -47.5,23.5 + parent: 0 + type: Transform +- uid: 1160 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -46.5,23.5 + parent: 0 + type: Transform +- uid: 1161 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -46.5,20.5 + parent: 0 + type: Transform +- uid: 1162 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -47.5,20.5 + parent: 0 + type: Transform +- uid: 1163 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -48.5,20.5 + parent: 0 + type: Transform +- uid: 1164 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -49.5,20.5 + parent: 0 + type: Transform +- uid: 1165 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -49.5,18.5 + parent: 0 + type: Transform +- uid: 1166 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -48.5,18.5 + parent: 0 + type: Transform +- uid: 1167 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -47.5,18.5 + parent: 0 + type: Transform +- uid: 1168 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -46.5,18.5 + parent: 0 + type: Transform +- uid: 1169 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -50.5,20.5 + parent: 0 + type: Transform +- uid: 1170 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -50.5,18.5 + parent: 0 + type: Transform +- uid: 1171 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -50.5,23.5 + parent: 0 + type: Transform +- uid: 1172 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -50.5,25.5 + parent: 0 + type: Transform +- uid: 1173 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -52.5,26.5 + parent: 0 + type: Transform +- uid: 1174 + type: WindowAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -52.5,18.5 + parent: 0 + type: Transform +- uid: 1175 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -52.5,24.5 + parent: 0 + type: Transform +- uid: 1176 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -52.5,23.5 + parent: 0 + type: Transform +- uid: 1177 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -52.5,17.5 + parent: 0 + type: Transform +- uid: 1178 + type: WindowAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -52.5,25.5 + parent: 0 + type: Transform +- uid: 1179 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -52.5,19.5 + parent: 0 + type: Transform +- uid: 1180 + type: WallAlmayer + components: + - rot: -1.5707963267948966 rad + pos: -52.5,20.5 + parent: 0 + type: Transform +- uid: 1181 + type: AirlockSecurity + components: + - rot: -1.5707963267948966 rad + pos: -52.5,22.5 + parent: 0 + type: Transform +- uid: 1182 + type: AirlockSecurity + components: + - rot: -1.5707963267948966 rad + pos: -52.5,21.5 + parent: 0 + type: Transform +- uid: 1183 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: -52.5,18.5 + parent: 0 + type: Transform +- uid: 1184 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: -52.5,25.5 + parent: 0 + type: Transform +- uid: 1185 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -53.5,20.5 + parent: 0 + type: Transform +- uid: 1186 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -53.5,19.5 + parent: 0 + type: Transform +- uid: 1187 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -53.5,18.5 + parent: 0 + type: Transform +- uid: 1188 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -53.5,17.5 + parent: 0 + type: Transform +- uid: 1189 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -56.5,20.5 + parent: 0 + type: Transform +- uid: 1190 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -56.5,19.5 + parent: 0 + type: Transform +- uid: 1191 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -56.5,18.5 + parent: 0 + type: Transform +- uid: 1192 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -56.5,17.5 + parent: 0 + type: Transform +- uid: 1193 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -53.5,23.5 + parent: 0 + type: Transform +- uid: 1194 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -53.5,24.5 + parent: 0 + type: Transform +- uid: 1195 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -53.5,25.5 + parent: 0 + type: Transform +- uid: 1196 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -53.5,26.5 + parent: 0 + type: Transform +- uid: 1197 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -56.5,26.5 + parent: 0 + type: Transform +- uid: 1198 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -56.5,25.5 + parent: 0 + type: Transform +- uid: 1199 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -56.5,24.5 + parent: 0 + type: Transform +- uid: 1200 + type: Rack + components: + - rot: -1.5707963267948966 rad + pos: -56.5,23.5 + parent: 0 + type: Transform +- uid: 1201 + type: APCBasic + components: + - pos: -32.5,17.5 + parent: 0 + type: Transform +- uid: 1202 + type: APCBasic + components: + - pos: -46.5,16.5 + parent: 0 + type: Transform +- uid: 1203 + type: CableMV + components: + - pos: -31.5,13.5 + parent: 0 + type: Transform +- uid: 1204 + type: CableMV + components: + - pos: -32.5,13.5 + parent: 0 + type: Transform +- uid: 1205 + type: CableMV + components: + - pos: -32.5,14.5 + parent: 0 + type: Transform +- uid: 1206 + type: CableMV + components: + - pos: -32.5,15.5 + parent: 0 + type: Transform +- uid: 1207 + type: CableMV + components: + - pos: -32.5,16.5 + parent: 0 + type: Transform +- uid: 1208 + type: CableMV + components: + - pos: -32.5,17.5 + parent: 0 + type: Transform +- uid: 1209 + type: CableMV + components: + - pos: -33.5,15.5 + parent: 0 + type: Transform +- uid: 1210 + type: CableMV + components: + - pos: -34.5,15.5 + parent: 0 + type: Transform +- uid: 1211 + type: CableMV + components: + - pos: -35.5,15.5 + parent: 0 + type: Transform +- uid: 1212 + type: CableMV + components: + - pos: -36.5,15.5 + parent: 0 + type: Transform +- uid: 1213 + type: CableMV + components: + - pos: -37.5,15.5 + parent: 0 + type: Transform +- uid: 1214 + type: CableMV + components: + - pos: -38.5,15.5 + parent: 0 + type: Transform +- uid: 1215 + type: CableMV + components: + - pos: -39.5,15.5 + parent: 0 + type: Transform +- uid: 1216 + type: CableMV + components: + - pos: -40.5,15.5 + parent: 0 + type: Transform +- uid: 1217 + type: CableMV + components: + - pos: -41.5,15.5 + parent: 0 + type: Transform +- uid: 1218 + type: CableMV + components: + - pos: -42.5,15.5 + parent: 0 + type: Transform +- uid: 1219 + type: CableMV + components: + - pos: -43.5,15.5 + parent: 0 + type: Transform +- uid: 1220 + type: CableMV + components: + - pos: -44.5,15.5 + parent: 0 + type: Transform +- uid: 1221 + type: CableMV + components: + - pos: -45.5,15.5 + parent: 0 + type: Transform +- uid: 1222 + type: CableMV + components: + - pos: -46.5,15.5 + parent: 0 + type: Transform +- uid: 1223 + type: CableMV + components: + - pos: -46.5,16.5 + parent: 0 + type: Transform +- uid: 1224 + type: CableHV + components: + - pos: -29.5,13.5 + parent: 0 + type: Transform +- uid: 1225 + type: Memorial + components: + - pos: 3.5,-3.5 + parent: 0 + type: Transform +- uid: 1226 + type: WallAlmayer + components: + - pos: 23.5,24.5 + parent: 0 + type: Transform +- uid: 1227 + type: WallAlmayer + components: + - pos: 23.5,25.5 + parent: 0 + type: Transform +- uid: 1228 + type: WallAlmayer + components: + - pos: 24.5,25.5 + parent: 0 + type: Transform +- uid: 1229 + type: WallAlmayer + components: + - pos: 25.5,25.5 + parent: 0 + type: Transform +- uid: 1230 + type: WallAlmayer + components: + - pos: 26.5,25.5 + parent: 0 + type: Transform +- uid: 1231 + type: WallAlmayer + components: + - pos: 27.5,25.5 + parent: 0 + type: Transform +- uid: 1232 + type: WallAlmayer + components: + - pos: 28.5,25.5 + parent: 0 + type: Transform +- uid: 1233 + type: WallAlmayer + components: + - pos: 28.5,24.5 + parent: 0 + type: Transform +- uid: 1234 + type: WallAlmayer + components: + - pos: 19.5,-2.5 + parent: 0 + type: Transform +- uid: 1235 + type: WallAlmayer + components: + - pos: 19.5,-3.5 + parent: 0 + type: Transform +- uid: 1236 + type: WallAlmayer + components: + - pos: 28.5,21.5 + parent: 0 + type: Transform +- uid: 1237 + type: WallAlmayer + components: + - pos: 28.5,20.5 + parent: 0 + type: Transform +- uid: 1238 + type: WallAlmayer + components: + - pos: 27.5,20.5 + parent: 0 + type: Transform +- uid: 1239 + type: WallAlmayer + components: + - pos: 26.5,20.5 + parent: 0 + type: Transform +- uid: 1240 + type: WallAlmayer + components: + - pos: 25.5,20.5 + parent: 0 + type: Transform +- uid: 1241 + type: WallAlmayer + components: + - pos: 24.5,20.5 + parent: 0 + type: Transform +- uid: 1242 + type: WallAlmayer + components: + - pos: 23.5,20.5 + parent: 0 + type: Transform +- uid: 1243 + type: WallAlmayer + components: + - pos: 23.5,21.5 + parent: 0 + type: Transform +- uid: 1244 + type: WallAlmayer + components: + - pos: 19.5,-1.5 + parent: 0 + type: Transform +- uid: 1245 + type: WallAlmayer + components: + - pos: 19.5,-0.5 + parent: 0 + type: Transform +- uid: 1246 + type: WallAlmayer + components: + - pos: 19.5,0.5 + parent: 0 + type: Transform +- uid: 1247 + type: WallAlmayer + components: + - pos: 19.5,1.5 + parent: 0 + type: Transform +- uid: 1248 + type: WallAlmayer + components: + - pos: 19.5,2.5 + parent: 0 + type: Transform +- uid: 1249 + type: WallAlmayer + components: + - pos: 20.5,2.5 + parent: 0 + type: Transform +- uid: 1250 + type: WallAlmayer + components: + - pos: 21.5,2.5 + parent: 0 + type: Transform +- uid: 1251 + type: WallAlmayer + components: + - pos: 22.5,2.5 + parent: 0 + type: Transform +- uid: 1252 + type: WallAlmayer + components: + - pos: 23.5,2.5 + parent: 0 + type: Transform +- uid: 1253 + type: WallAlmayer + components: + - pos: 24.5,2.5 + parent: 0 + type: Transform +- uid: 1254 + type: WindowAlmayer + components: + - pos: 24.5,-2.5 + parent: 0 + type: Transform +- uid: 1255 + type: WindowAlmayer + components: + - pos: 24.5,-3.5 + parent: 0 + type: Transform +- uid: 1256 + type: WindowAlmayer + components: + - pos: 24.5,-4.5 + parent: 0 + type: Transform +- uid: 1257 + type: WallAlmayer + components: + - pos: 24.5,-6.5 + parent: 0 + type: Transform +- uid: 1258 + type: WallAlmayer + components: + - pos: 24.5,-8.5 + parent: 0 + type: Transform +- uid: 1259 + type: WallAlmayer + components: + - pos: 23.5,-8.5 + parent: 0 + type: Transform +- uid: 1260 + type: WallAlmayer + components: + - pos: 22.5,-8.5 + parent: 0 + type: Transform +- uid: 1261 + type: WallAlmayer + components: + - pos: 21.5,-8.5 + parent: 0 + type: Transform +- uid: 1262 + type: WallAlmayer + components: + - pos: 20.5,-8.5 + parent: 0 + type: Transform +- uid: 1263 + type: WallAlmayer + components: + - pos: 19.5,-8.5 + parent: 0 + type: Transform +- uid: 1264 + type: WallAlmayer + components: + - pos: 19.5,-7.5 + parent: 0 + type: Transform +- uid: 1265 + type: WallAlmayer + components: + - pos: 19.5,-6.5 + parent: 0 + type: Transform +- uid: 1266 + type: WallAlmayer + components: + - pos: 12.5,-29.5 + parent: 0 + type: Transform +- uid: 1267 + type: WallAlmayer + components: + - pos: 12.5,-28.5 + parent: 0 + type: Transform +- uid: 1268 + type: WallAlmayer + components: + - pos: 12.5,-27.5 + parent: 0 + type: Transform +- uid: 1269 + type: WallAlmayer + components: + - pos: 13.5,-27.5 + parent: 0 + type: Transform +- uid: 1270 + type: WallAlmayer + components: + - pos: 14.5,-27.5 + parent: 0 + type: Transform +- uid: 1271 + type: WallAlmayer + components: + - pos: 15.5,-27.5 + parent: 0 + type: Transform +- uid: 1272 + type: WallAlmayer + components: + - pos: 16.5,-27.5 + parent: 0 + type: Transform +- uid: 1273 + type: WallAlmayer + components: + - pos: 17.5,-27.5 + parent: 0 + type: Transform +- uid: 1274 + type: WallAlmayer + components: + - pos: 12.5,-32.5 + parent: 0 + type: Transform +- uid: 1275 + type: WallAlmayer + components: + - pos: 12.5,-33.5 + parent: 0 + type: Transform +- uid: 1276 + type: WallAlmayer + components: + - pos: 12.5,-34.5 + parent: 0 + type: Transform +- uid: 1277 + type: WallAlmayer + components: + - pos: 12.5,-35.5 + parent: 0 + type: Transform +- uid: 1278 + type: WallAlmayer + components: + - pos: 12.5,-36.5 + parent: 0 + type: Transform +- uid: 1279 + type: WallAlmayer + components: + - pos: 12.5,-37.5 + parent: 0 + type: Transform +- uid: 1280 + type: WallAlmayer + components: + - pos: 12.5,-38.5 + parent: 0 + type: Transform +- uid: 1281 + type: WallAlmayer + components: + - pos: 13.5,-38.5 + parent: 0 + type: Transform +- uid: 1282 + type: WallAlmayer + components: + - pos: 14.5,-38.5 + parent: 0 + type: Transform +- uid: 1283 + type: WallAlmayer + components: + - pos: 15.5,-38.5 + parent: 0 + type: Transform +- uid: 1284 + type: WallAlmayer + components: + - pos: 16.5,-38.5 + parent: 0 + type: Transform +- uid: 1285 + type: WallAlmayer + components: + - pos: 17.5,-38.5 + parent: 0 + type: Transform +- uid: 1286 + type: WallAlmayer + components: + - pos: 17.5,-37.5 + parent: 0 + type: Transform +- uid: 1287 + type: WallAlmayer + components: + - pos: 17.5,-36.5 + parent: 0 + type: Transform +- uid: 1288 + type: WallAlmayer + components: + - pos: 17.5,-28.5 + parent: 0 + type: Transform +- uid: 1289 + type: WallAlmayer + components: + - pos: 17.5,-29.5 + parent: 0 + type: Transform +- uid: 1290 + type: WindowAlmayer + components: + - pos: 17.5,-35.5 + parent: 0 + type: Transform +- uid: 1291 + type: WindowAlmayer + components: + - pos: 17.5,-34.5 + parent: 0 + type: Transform +- uid: 1292 + type: WindowAlmayer + components: + - pos: 17.5,-33.5 + parent: 0 + type: Transform +- uid: 1293 + type: WindowAlmayer + components: + - pos: 17.5,-32.5 + parent: 0 + type: Transform +- uid: 1294 + type: WindowAlmayer + components: + - pos: 17.5,-31.5 + parent: 0 + type: Transform +- uid: 1295 + type: WindowAlmayer + components: + - pos: 17.5,-30.5 + parent: 0 + type: Transform +- uid: 1296 + type: WallAlmayer + components: + - pos: 24.5,-8.5 + parent: 0 + type: Transform +- uid: 1297 + type: WindowAlmayer + components: + - pos: 24.5,-5.5 + parent: 0 + type: Transform +- uid: 1298 + type: WindowAlmayer + components: + - pos: 24.5,-1.5 + parent: 0 + type: Transform +- uid: 1299 + type: WindowAlmayer + components: + - pos: 24.5,-0.5 + parent: 0 + type: Transform +- uid: 1300 + type: WindowAlmayer + components: + - pos: 24.5,0.5 + parent: 0 + type: Transform +- uid: 1301 + type: WallAlmayer + components: + - pos: 24.5,1.5 + parent: 0 + type: Transform +- uid: 1302 + type: WindowAlmayer + components: + - pos: 28.5,22.5 + parent: 0 + type: Transform +- uid: 1303 + type: WindowAlmayer + components: + - pos: 28.5,23.5 + parent: 0 + type: Transform +- uid: 1304 + type: WallAlmayer + components: + - pos: 24.5,-7.5 + parent: 0 + type: Transform +- uid: 1305 + type: AirlockPersonal + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-5.5 + parent: 0 + type: Transform +- uid: 1306 + type: AirlockPersonal + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-4.5 + parent: 0 + type: Transform +- uid: 1307 + type: AirlockPersonal + components: + - rot: -1.5707963267948966 rad + pos: 23.5,22.5 + parent: 0 + type: Transform +- uid: 1308 + type: AirlockPersonal + components: + - rot: -1.5707963267948966 rad + pos: 23.5,23.5 + parent: 0 + type: Transform +- uid: 1309 + type: AirlockPersonal + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 0 + type: Transform +- uid: 1310 + type: AirlockPersonal + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-30.5 + parent: 0 + type: Transform +- uid: 1311 + type: FloraTree04 + components: + - pos: -37.783813,-14.427317 + parent: 0 + type: Transform +- uid: 1312 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-16.5 + parent: 0 + type: Transform +- uid: 1313 + type: FloraTree03 + components: + - pos: -35.565063,-22.958567 + parent: 0 + type: Transform +- uid: 1314 + type: FloraTree06 + components: + - pos: -37.627563,-29.010597 + parent: 0 + type: Transform +- uid: 1315 + type: FloraTree03 + components: + - pos: -28.065063,-26.416847 + parent: 0 + type: Transform +- uid: 1316 + type: FloraTree02 + components: + - pos: -25.158813,-30.354347 + parent: 0 + type: Transform +- uid: 1317 + type: FloraTree06 + components: + - pos: -44.766403,-30.536297 + parent: 0 + type: Transform +- uid: 1318 + type: FloraTree06 + components: + - pos: -44.302326,-22.776981 + parent: 0 + type: Transform +- uid: 1319 + type: FloraTree01 + components: + - pos: -50.708576,-23.433231 + parent: 0 + type: Transform +- uid: 1320 + type: FloraTree02 + components: + - pos: -53.02049,-27.058231 + parent: 0 + type: Transform +- uid: 1321 + type: FloraTree02 + components: + - pos: -58.012962,-23.861837 + parent: 0 + type: Transform +- uid: 1322 + type: FloraTree01 + components: + - pos: -58.524918,-15.997814 + parent: 0 + type: Transform +- uid: 1323 + type: FloraTree03 + components: + - pos: -58.227898,-5.7749767 + parent: 0 + type: Transform +- uid: 1324 + type: FloraTree06 + components: + - pos: -51.56413,-4.1916656 + parent: 0 + type: Transform +- uid: 1325 + type: FloraTree02 + components: + - pos: -57.430744,5.9412704 + parent: 0 + type: Transform +- uid: 1326 + type: FloraTree01 + components: + - pos: -50.183037,6.1705537 + parent: 0 + type: Transform +- uid: 1327 + type: FloraTree06 + components: + - pos: -59.004826,11.677067 + parent: 0 + type: Transform +- uid: 1328 + type: FloraTree05 + components: + - pos: -58.98842,16.026546 + parent: 0 + type: Transform +- uid: 1329 + type: FloraTree06 + components: + - pos: -58.80092,22.339046 + parent: 0 + type: Transform +- uid: 1330 + type: FloraTree02 + components: + - pos: -59.05092,28.457922 + parent: 0 + type: Transform +- uid: 1331 + type: FloraTree01 + components: + - pos: -56.30092,29.739172 + parent: 0 + type: Transform +- uid: 1332 + type: FloraTree06 + components: + - pos: -50.64467,32.082924 + parent: 0 + type: Transform +- uid: 1333 + type: FloraTree03 + components: + - pos: -45.83217,28.832922 + parent: 0 + type: Transform +- uid: 1334 + type: FloraTree02 + components: + - pos: -41.72581,26.770422 + parent: 0 + type: Transform +- uid: 1335 + type: FloraTree01 + components: + - pos: -42.198044,31.427114 + parent: 0 + type: Transform +- uid: 1336 + type: FloraTree01 + components: + - pos: -29.798897,32.97261 + parent: 0 + type: Transform +- uid: 1337 + type: FloraTree06 + components: + - pos: -35.279335,13.435535 + parent: 0 + type: Transform +- uid: 1338 + type: FloraTree01 + components: + - pos: -24.373085,15.529285 + parent: 0 + type: Transform +- uid: 1339 + type: FloraTree05 + components: + - pos: -18.927124,9.5781975 + parent: 0 + type: Transform +- uid: 1340 + type: FloraTree06 + components: + - pos: -38.239723,4.168833 + parent: 0 + type: Transform +- uid: 1341 + type: FloraTree03 + components: + - pos: -44.147415,-5.663461 + parent: 0 + type: Transform +- uid: 1342 + type: FloraTree02 + components: + - pos: -37.289356,-3.434576 + parent: 0 + type: Transform +- uid: 1343 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,20.5 + parent: 0 + type: Transform +- uid: 1344 + type: FloraTree01 + components: + - pos: -44.466377,-12.328175 + parent: 0 + type: Transform +- uid: 1345 + type: FloraTree01 + components: + - pos: -38.176933,-44.01227 + parent: 0 + type: Transform +- uid: 1346 + type: FloraTree02 + components: + - pos: -35.270683,-37.88727 + parent: 0 + type: Transform +- uid: 1347 + type: FloraTree02 + components: + - pos: -48.943146,-43.014633 + parent: 0 + type: Transform +- uid: 1348 + type: FloraTree05 + components: + - pos: -58.894222,-45.60602 + parent: 0 + type: Transform +- uid: 1349 + type: FloraTree05 + components: + - pos: -19.732977,-38.649517 + parent: 0 + type: Transform +- uid: 1350 + type: FloraTree03 + components: + - pos: -18.397285,-30.619 + parent: 0 + type: Transform +- uid: 1351 + type: FloraTree02 + components: + - pos: -19.772285,-25.149683 + parent: 0 + type: Transform +- uid: 1352 + type: FloraTree05 + components: + - pos: -16.274591,-19.27615 + parent: 0 + type: Transform +- uid: 1353 + type: FloraTree01 + components: + - pos: -15.712091,-15.534186 + parent: 0 + type: Transform +- uid: 1354 + type: FloraTree06 + components: + - pos: -26.150373,-11.84379 + parent: 0 + type: Transform +- uid: 1355 + type: FloraTree06 + components: + - pos: -20.556337,-2.4933429 + parent: 0 + type: Transform +- uid: 1356 + type: FenceBase + components: + - pos: -42.5,-26.5 + parent: 0 + type: Transform +- uid: 1357 + type: FloraTree01 + components: + - pos: -16.598059,26.222412 + parent: 0 + type: Transform +- uid: 1358 + type: FloraTree03 + components: + - pos: -22.052467,32.58708 + parent: 0 + type: Transform +- uid: 1359 + type: FloraTree06 + components: + - pos: -9.180921,15.836578 + parent: 0 + type: Transform +- uid: 1360 + type: FloraTree05 + components: + - pos: -0.19205713,19.524078 + parent: 0 + type: Transform +- uid: 1361 + type: FloraTree06 + components: + - pos: -3.0358071,28.069668 + parent: 0 + type: Transform +- uid: 1362 + type: FloraTree04 + components: + - pos: 6.4168296,32.500282 + parent: 0 + type: Transform +- uid: 1363 + type: FloraTree02 + components: + - pos: 8.847105,19.814548 + parent: 0 + type: Transform +- uid: 1364 + type: FloraTree04 + components: + - pos: 13.798052,28.114353 + parent: 0 + type: Transform +- uid: 1365 + type: FloraTree05 + components: + - pos: 15.213211,13.605906 + parent: 0 + type: Transform +- uid: 1366 + type: FloraTree06 + components: + - pos: 6.873122,10.867191 + parent: 0 + type: Transform +- uid: 1367 + type: FloraTree02 + components: + - pos: -2.413734,9.585737 + parent: 0 + type: Transform +- uid: 1368 + type: FloraTree06 + components: + - pos: 17.699242,5.148354 + parent: 0 + type: Transform +- uid: 1369 + type: FloraTree02 + components: + - pos: 8.917993,1.0858539 + parent: 0 + type: Transform +- uid: 1370 + type: FloraTree04 + components: + - pos: -1.3197918,1.5233539 + parent: 0 + type: Transform +- uid: 1371 + type: FloraTree06 + components: + - pos: 16.885977,-10.308064 + parent: 0 + type: Transform +- uid: 1372 + type: FloraTree01 + components: + - pos: 12.560936,-13.9782505 + parent: 0 + type: Transform +- uid: 1373 + type: FloraTree03 + components: + - pos: -0.050678253,-15.635952 + parent: 0 + type: Transform +- uid: 1374 + type: FloraTree01 + components: + - pos: 4.8707294,-24.346497 + parent: 0 + type: Transform +- uid: 1375 + type: FloraTree04 + components: + - pos: 13.214479,-22.783997 + parent: 0 + type: Transform +- uid: 1376 + type: FloraTree05 + components: + - pos: 21.467495,-17.408997 + parent: 0 + type: Transform +- uid: 1377 + type: FloraTree05 + components: + - pos: -10.479434,-8.104145 + parent: 0 + type: Transform +- uid: 1378 + type: FloraTree05 + components: + - pos: -11.69645,-0.3053553 + parent: 0 + type: Transform +- uid: 1379 + type: FloraTree06 + components: + - pos: -1.3877752,-27.083727 + parent: 0 + type: Transform +- uid: 1380 + type: FloraTree02 + components: + - pos: -9.430181,-34.409367 + parent: 0 + type: Transform +- uid: 1381 + type: FloraTree01 + components: + - pos: -1.0551807,-37.284367 + parent: 0 + type: Transform +- uid: 1382 + type: FloraTree02 + components: + - pos: 10.369114,-43.865906 + parent: 0 + type: Transform +- uid: 1383 + type: FloraTree06 + components: + - pos: -9.037136,-45.334656 + parent: 0 + type: Transform +- uid: 1384 + type: FloraTree06 + components: + - pos: 21.80869,-39.459656 + parent: 0 + type: Transform +- uid: 1385 + type: FloraTree05 + components: + - pos: 21.82697,-27.428251 + parent: 0 + type: Transform +- uid: 1386 + type: FloraTreeStump + components: + - pos: 22.17072,-32.27303 + parent: 0 + type: Transform +- uid: 1387 + type: FloraTreeStumpConifer + components: + - pos: 26.263506,-4.3130245 + parent: 0 + type: Transform +- uid: 1388 + type: FloraTreeStumpConifer + components: + - pos: 28.013506,-1.1392162 + parent: 0 + type: Transform +- uid: 1389 + type: FenceBase + components: + - pos: -41.5,-26.5 + parent: 0 + type: Transform +- uid: 1390 + type: FenceBase + components: + - pos: -40.5,-26.5 + parent: 0 + type: Transform +- uid: 1391 + type: FenceBase + components: + - pos: -39.5,-26.5 + parent: 0 + type: Transform +- uid: 1392 + type: FenceBase + components: + - pos: -38.5,-26.5 + parent: 0 + type: Transform +- uid: 1393 + type: FenceBase + components: + - pos: -38.5,-25.5 + parent: 0 + type: Transform +- uid: 1394 + type: FenceBase + components: + - pos: -43.5,-26.5 + parent: 0 + type: Transform +- uid: 1395 + type: FenceBase + components: + - pos: -43.5,-25.5 + parent: 0 + type: Transform +- uid: 1396 + type: FenceBase + components: + - pos: -43.5,-24.5 + parent: 0 + type: Transform +- uid: 1397 + type: FenceBase + components: + - pos: -43.5,-23.5 + parent: 0 + type: Transform +- uid: 1398 + type: FenceBase + components: + - pos: -43.5,-22.5 + parent: 0 + type: Transform +- uid: 1399 + type: FenceBase + components: + - pos: -43.5,-21.5 + parent: 0 + type: Transform +- uid: 1400 + type: FenceBase + components: + - pos: -42.5,-21.5 + parent: 0 + type: Transform +- uid: 1401 + type: FenceBase + components: + - pos: -41.5,-21.5 + parent: 0 + type: Transform +- uid: 1402 + type: FenceBase + components: + - pos: -40.5,-21.5 + parent: 0 + type: Transform +- uid: 1403 + type: FenceBase + components: + - pos: -39.5,-21.5 + parent: 0 + type: Transform +- uid: 1404 + type: FenceBase + components: + - pos: -38.5,-21.5 + parent: 0 + type: Transform +- uid: 1405 + type: FenceBase + components: + - pos: -38.5,-22.5 + parent: 0 + type: Transform +- uid: 1406 + type: FenceBase + components: + - pos: -38.5,-23.5 + parent: 0 + type: Transform +- uid: 1407 + type: FenceBase + components: + - pos: -43.5,-19.5 + parent: 0 + type: Transform +- uid: 1408 + type: FenceBase + components: + - pos: -42.5,-19.5 + parent: 0 + type: Transform +- uid: 1409 + type: FenceBase + components: + - pos: -41.5,-19.5 + parent: 0 + type: Transform +- uid: 1410 + type: FenceBase + components: + - pos: -40.5,-19.5 + parent: 0 + type: Transform +- uid: 1411 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-20.5 + parent: 0 + type: Transform +- uid: 1412 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-19.5 + parent: 0 + type: Transform +- uid: 1413 + type: FenceBase + components: + - pos: -39.5,-16.5 + parent: 0 + type: Transform +- uid: 1414 + type: FenceBase + components: + - pos: -39.5,-15.5 + parent: 0 + type: Transform +- uid: 1415 + type: FenceBase + components: + - pos: -39.5,-14.5 + parent: 0 + type: Transform +- uid: 1416 + type: FenceBase + components: + - pos: -39.5,-13.5 + parent: 0 + type: Transform +- uid: 1417 + type: FenceBase + components: + - pos: -38.5,-13.5 + parent: 0 + type: Transform +- uid: 1418 + type: FenceBase + components: + - pos: -38.5,-12.5 + parent: 0 + type: Transform +- uid: 1419 + type: FenceBase + components: + - pos: -38.5,-11.5 + parent: 0 + type: Transform +- uid: 1420 + type: FenceBase + components: + - pos: -38.5,-10.5 + parent: 0 + type: Transform +- uid: 1421 + type: FenceBase + components: + - pos: -38.5,-9.5 + parent: 0 + type: Transform +- uid: 1422 + type: FenceBase + components: + - pos: -38.5,-8.5 + parent: 0 + type: Transform +- uid: 1423 + type: FenceBase + components: + - pos: -38.5,-7.5 + parent: 0 + type: Transform +- uid: 1424 + type: FenceBase + components: + - pos: -6.5,-20.5 + parent: 0 + type: Transform +- uid: 1425 + type: FenceBase + components: + - pos: -6.5,-21.5 + parent: 0 + type: Transform +- uid: 1426 + type: FenceBase + components: + - pos: -6.5,-22.5 + parent: 0 + type: Transform +- uid: 1427 + type: FenceBase + components: + - pos: -5.5,-22.5 + parent: 0 + type: Transform +- uid: 1428 + type: FenceBase + components: + - pos: -4.5,-22.5 + parent: 0 + type: Transform +- uid: 1429 + type: FenceBase + components: + - pos: -3.5,-22.5 + parent: 0 + type: Transform +- uid: 1430 + type: FenceBase + components: + - pos: -2.5,-22.5 + parent: 0 + type: Transform +- uid: 1431 + type: FenceBase + components: + - pos: -1.5,-22.5 + parent: 0 + type: Transform +- uid: 1432 + type: FenceBase + components: + - pos: -1.5,-21.5 + parent: 0 + type: Transform +- uid: 1433 + type: FenceBase + components: + - pos: -1.5,-20.5 + parent: 0 + type: Transform +- uid: 1434 + type: FenceBase + components: + - pos: -1.5,-19.5 + parent: 0 + type: Transform +- uid: 1435 + type: FenceBase + components: + - pos: -1.5,-18.5 + parent: 0 + type: Transform +- uid: 1436 + type: FenceBase + components: + - pos: -1.5,-17.5 + parent: 0 + type: Transform +- uid: 1437 + type: FenceBase + components: + - pos: -2.5,-17.5 + parent: 0 + type: Transform +- uid: 1438 + type: FenceBase + components: + - pos: -3.5,-17.5 + parent: 0 + type: Transform +- uid: 1439 + type: FenceBase + components: + - pos: -4.5,-17.5 + parent: 0 + type: Transform +- uid: 1440 + type: FenceBase + components: + - pos: -5.5,-17.5 + parent: 0 + type: Transform +- uid: 1441 + type: FenceBase + components: + - pos: -6.5,-17.5 + parent: 0 + type: Transform +- uid: 1442 + type: FenceBase + components: + - pos: -6.5,-18.5 + parent: 0 + type: Transform +- uid: 1443 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-15.5 + parent: 0 + type: Transform +- uid: 1444 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-15.5 + parent: 0 + type: Transform +- uid: 1445 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-14.5 + parent: 0 + type: Transform +- uid: 1446 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-13.5 + parent: 0 + type: Transform +- uid: 1447 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-12.5 + parent: 0 + type: Transform +- uid: 1448 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-11.5 + parent: 0 + type: Transform +- uid: 1449 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-10.5 + parent: 0 + type: Transform +- uid: 1450 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-10.5 + parent: 0 + type: Transform +- uid: 1451 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-10.5 + parent: 0 + type: Transform +- uid: 1452 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-10.5 + parent: 0 + type: Transform +- uid: 1453 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -45.5,-6.5 + parent: 0 + type: Transform +- uid: 1454 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-6.5 + parent: 0 + type: Transform +- uid: 1455 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-6.5 + parent: 0 + type: Transform +- uid: 1456 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-6.5 + parent: 0 + type: Transform +- uid: 1457 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-5.5 + parent: 0 + type: Transform +- uid: 1458 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-4.5 + parent: 0 + type: Transform +- uid: 1459 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-3.5 + parent: 0 + type: Transform +- uid: 1460 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-2.5 + parent: 0 + type: Transform +- uid: 1461 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-1.5 + parent: 0 + type: Transform +- uid: 1462 + type: SmallLight + components: + - rot: -1.5707963267948966 rad + pos: -25.5,8.5 + parent: 0 + type: Transform +- uid: 1463 + type: SmallLight + components: + - rot: -1.5707963267948966 rad + pos: -25.5,0.5 + parent: 0 + type: Transform +- uid: 1464 + type: AlwaysPoweredLightSodium + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 0 + type: Transform +- uid: 1465 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,11.5 + parent: 0 + type: Transform +- uid: 1466 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,10.5 + parent: 0 + type: Transform +- uid: 1467 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,9.5 + parent: 0 + type: Transform +- uid: 1468 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,8.5 + parent: 0 + type: Transform +- uid: 1469 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,7.5 + parent: 0 + type: Transform +- uid: 1470 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,6.5 + parent: 0 + type: Transform +- uid: 1471 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,5.5 + parent: 0 + type: Transform +- uid: 1472 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,4.5 + parent: 0 + type: Transform +- uid: 1473 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,3.5 + parent: 0 + type: Transform +- uid: 1474 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,2.5 + parent: 0 + type: Transform +- uid: 1475 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,1.5 + parent: 0 + type: Transform +- uid: 1476 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,0.5 + parent: 0 + type: Transform +- uid: 1477 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-0.5 + parent: 0 + type: Transform +- uid: 1478 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-1.5 + parent: 0 + type: Transform +- uid: 1479 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -44.5,3.5 + parent: 0 + type: Transform +- uid: 1480 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -43.5,3.5 + parent: 0 + type: Transform +- uid: 1481 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,3.5 + parent: 0 + type: Transform +- uid: 1482 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,4.5 + parent: 0 + type: Transform +- uid: 1483 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,5.5 + parent: 0 + type: Transform +- uid: 1484 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,6.5 + parent: 0 + type: Transform +- uid: 1485 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,7.5 + parent: 0 + type: Transform +- uid: 1486 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,8.5 + parent: 0 + type: Transform +- uid: 1487 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -43.5,8.5 + parent: 0 + type: Transform +- uid: 1488 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,12.5 + parent: 0 + type: Transform +- uid: 1489 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -40.5,12.5 + parent: 0 + type: Transform +- uid: 1490 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -40.5,13.5 + parent: 0 + type: Transform +- uid: 1491 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -40.5,14.5 + parent: 0 + type: Transform +- uid: 1492 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -40.5,15.5 + parent: 0 + type: Transform +- uid: 1493 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -40.5,16.5 + parent: 0 + type: Transform +- uid: 1494 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -40.5,17.5 + parent: 0 + type: Transform +- uid: 1495 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -40.5,18.5 + parent: 0 + type: Transform +- uid: 1496 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -43.5,14.5 + parent: 0 + type: Transform +- uid: 1497 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -43.5,13.5 + parent: 0 + type: Transform +- uid: 1498 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -43.5,16.5 + parent: 0 + type: Transform +- uid: 1499 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -43.5,15.5 + parent: 0 + type: Transform +- uid: 1500 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -43.5,27.5 + parent: 0 + type: Transform +- uid: 1501 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -41.5,27.5 + parent: 0 + type: Transform +- uid: 1502 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -40.5,27.5 + parent: 0 + type: Transform +- uid: 1503 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,27.5 + parent: 0 + type: Transform +- uid: 1504 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-1.5 + parent: 0 + type: Transform +- uid: 1505 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-2.5 + parent: 0 + type: Transform +- uid: 1506 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-3.5 + parent: 0 + type: Transform +- uid: 1507 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-4.5 + parent: 0 + type: Transform +- uid: 1508 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 0 + type: Transform +- uid: 1509 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-4.5 + parent: 0 + type: Transform +- uid: 1510 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-4.5 + parent: 0 + type: Transform +- uid: 1511 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-4.5 + parent: 0 + type: Transform +- uid: 1512 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-4.5 + parent: 0 + type: Transform +- uid: 1513 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-4.5 + parent: 0 + type: Transform +- uid: 1514 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-3.5 + parent: 0 + type: Transform +- uid: 1515 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 0 + type: Transform +- uid: 1516 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-2.5 + parent: 0 + type: Transform +- uid: 1517 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-7.5 + parent: 0 + type: Transform +- uid: 1518 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-7.5 + parent: 0 + type: Transform +- uid: 1519 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-7.5 + parent: 0 + type: Transform +- uid: 1520 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-7.5 + parent: 0 + type: Transform +- uid: 1521 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-7.5 + parent: 0 + type: Transform +- uid: 1522 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-7.5 + parent: 0 + type: Transform +- uid: 1523 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-16.5 + parent: 0 + type: Transform +- uid: 1524 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-15.5 + parent: 0 + type: Transform +- uid: 1525 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-10.5 + parent: 0 + type: Transform +- uid: 1526 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-11.5 + parent: 0 + type: Transform +- uid: 1527 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 0 + type: Transform +- uid: 1528 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-13.5 + parent: 0 + type: Transform +- uid: 1529 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 0 + type: Transform +- uid: 1530 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-9.5 + parent: 0 + type: Transform +- uid: 1531 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-14.5 + parent: 0 + type: Transform +- uid: 1532 + type: SignElectricalMed + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-26.5 + parent: 0 + type: Transform +- uid: 1533 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-7.5 + parent: 0 + type: Transform +- uid: 1534 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 0 + type: Transform +- uid: 1535 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-9.5 + parent: 0 + type: Transform +- uid: 1536 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-10.5 + parent: 0 + type: Transform +- uid: 1537 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-11.5 + parent: 0 + type: Transform +- uid: 1538 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-7.5 + parent: 0 + type: Transform +- uid: 1539 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-7.5 + parent: 0 + type: Transform +- uid: 1540 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 0 + type: Transform +- uid: 1541 + type: SignElectricalMed + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 0 + type: Transform +- uid: 1542 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-32.5 + parent: 0 + type: Transform +- uid: 1543 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-32.5 + parent: 0 + type: Transform +- uid: 1544 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-32.5 + parent: 0 + type: Transform +- uid: 1545 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-32.5 + parent: 0 + type: Transform +- uid: 1546 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-32.5 + parent: 0 + type: Transform +- uid: 1547 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-32.5 + parent: 0 + type: Transform +- uid: 1548 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-32.5 + parent: 0 + type: Transform +- uid: 1549 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-32.5 + parent: 0 + type: Transform +- uid: 1550 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-32.5 + parent: 0 + type: Transform +- uid: 1551 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-32.5 + parent: 0 + type: Transform +- uid: 1552 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-32.5 + parent: 0 + type: Transform +- uid: 1553 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-32.5 + parent: 0 + type: Transform +- uid: 1554 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-32.5 + parent: 0 + type: Transform +- uid: 1555 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-32.5 + parent: 0 + type: Transform +- uid: 1556 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-32.5 + parent: 0 + type: Transform +- uid: 1557 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-32.5 + parent: 0 + type: Transform +- uid: 1558 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-32.5 + parent: 0 + type: Transform +- uid: 1559 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-32.5 + parent: 0 + type: Transform +- uid: 1560 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-32.5 + parent: 0 + type: Transform +- uid: 1561 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-32.5 + parent: 0 + type: Transform +- uid: 1562 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-32.5 + parent: 0 + type: Transform +- uid: 1563 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-32.5 + parent: 0 + type: Transform +- uid: 1564 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-32.5 + parent: 0 + type: Transform +- uid: 1565 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-32.5 + parent: 0 + type: Transform +- uid: 1566 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-32.5 + parent: 0 + type: Transform +- uid: 1567 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-32.5 + parent: 0 + type: Transform +- uid: 1568 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 0 + type: Transform +- uid: 1569 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-32.5 + parent: 0 + type: Transform +- uid: 1570 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-32.5 + parent: 0 + type: Transform +- uid: 1571 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-32.5 + parent: 0 + type: Transform +- uid: 1572 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-35.5 + parent: 0 + type: Transform +- uid: 1573 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-35.5 + parent: 0 + type: Transform +- uid: 1574 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-35.5 + parent: 0 + type: Transform +- uid: 1575 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-35.5 + parent: 0 + type: Transform +- uid: 1576 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-35.5 + parent: 0 + type: Transform +- uid: 1577 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-35.5 + parent: 0 + type: Transform +- uid: 1578 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-35.5 + parent: 0 + type: Transform +- uid: 1579 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-35.5 + parent: 0 + type: Transform +- uid: 1580 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-35.5 + parent: 0 + type: Transform +- uid: 1581 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-35.5 + parent: 0 + type: Transform +- uid: 1582 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-35.5 + parent: 0 + type: Transform +- uid: 1583 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-35.5 + parent: 0 + type: Transform +- uid: 1584 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-35.5 + parent: 0 + type: Transform +- uid: 1585 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-35.5 + parent: 0 + type: Transform +- uid: 1586 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-35.5 + parent: 0 + type: Transform +- uid: 1587 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-35.5 + parent: 0 + type: Transform +- uid: 1588 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-35.5 + parent: 0 + type: Transform +- uid: 1589 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-35.5 + parent: 0 + type: Transform +- uid: 1590 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-35.5 + parent: 0 + type: Transform +- uid: 1591 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-35.5 + parent: 0 + type: Transform +- uid: 1592 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-35.5 + parent: 0 + type: Transform +- uid: 1593 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-35.5 + parent: 0 + type: Transform +- uid: 1594 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-35.5 + parent: 0 + type: Transform +- uid: 1595 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-35.5 + parent: 0 + type: Transform +- uid: 1596 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-35.5 + parent: 0 + type: Transform +- uid: 1597 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-35.5 + parent: 0 + type: Transform +- uid: 1598 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-35.5 + parent: 0 + type: Transform +- uid: 1599 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-35.5 + parent: 0 + type: Transform +- uid: 1600 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-35.5 + parent: 0 + type: Transform +- uid: 1601 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-35.5 + parent: 0 + type: Transform +- uid: 1602 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-35.5 + parent: 0 + type: Transform +- uid: 1603 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-35.5 + parent: 0 + type: Transform +- uid: 1604 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -44.5,-35.5 + parent: 0 + type: Transform +- uid: 1605 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-34.5 + parent: 0 + type: Transform +- uid: 1606 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-33.5 + parent: 0 + type: Transform +- uid: 1607 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-32.5 + parent: 0 + type: Transform +- uid: 1608 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-31.5 + parent: 0 + type: Transform +- uid: 1609 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-31.5 + parent: 0 + type: Transform +- uid: 1610 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 0 + type: Transform +- uid: 1611 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-29.5 + parent: 0 + type: Transform +- uid: 1612 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-28.5 + parent: 0 + type: Transform +- uid: 1613 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-27.5 + parent: 0 + type: Transform +- uid: 1614 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-26.5 + parent: 0 + type: Transform +- uid: 1615 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-25.5 + parent: 0 + type: Transform +- uid: 1616 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-24.5 + parent: 0 + type: Transform +- uid: 1617 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-23.5 + parent: 0 + type: Transform +- uid: 1618 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-22.5 + parent: 0 + type: Transform +- uid: 1619 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 0 + type: Transform +- uid: 1620 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-20.5 + parent: 0 + type: Transform +- uid: 1621 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-19.5 + parent: 0 + type: Transform +- uid: 1622 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-18.5 + parent: 0 + type: Transform +- uid: 1623 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-17.5 + parent: 0 + type: Transform +- uid: 1624 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 0 + type: Transform +- uid: 1625 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-15.5 + parent: 0 + type: Transform +- uid: 1626 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-14.5 + parent: 0 + type: Transform +- uid: 1627 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 0 + type: Transform +- uid: 1628 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-12.5 + parent: 0 + type: Transform +- uid: 1629 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 0 + type: Transform +- uid: 1630 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 0 + type: Transform +- uid: 1631 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-9.5 + parent: 0 + type: Transform +- uid: 1632 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-8.5 + parent: 0 + type: Transform +- uid: 1633 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-7.5 + parent: 0 + type: Transform +- uid: 1634 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-6.5 + parent: 0 + type: Transform +- uid: 1635 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-28.5 + parent: 0 + type: Transform +- uid: 1636 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-27.5 + parent: 0 + type: Transform +- uid: 1637 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 0 + type: Transform +- uid: 1638 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-25.5 + parent: 0 + type: Transform +- uid: 1639 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-24.5 + parent: 0 + type: Transform +- uid: 1640 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-23.5 + parent: 0 + type: Transform +- uid: 1641 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-22.5 + parent: 0 + type: Transform +- uid: 1642 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-21.5 + parent: 0 + type: Transform +- uid: 1643 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-21.5 + parent: 0 + type: Transform +- uid: 1644 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-21.5 + parent: 0 + type: Transform +- uid: 1645 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 0 + type: Transform +- uid: 1646 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 0 + type: Transform +- uid: 1647 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-20.5 + parent: 0 + type: Transform +- uid: 1648 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-20.5 + parent: 0 + type: Transform +- uid: 1649 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-18.5 + parent: 0 + type: Transform +- uid: 1650 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 0 + type: Transform +- uid: 1651 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 0 + type: Transform +- uid: 1652 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-18.5 + parent: 0 + type: Transform +- uid: 1653 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-19.5 + parent: 0 + type: Transform +- uid: 1654 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-19.5 + parent: 0 + type: Transform +- uid: 1655 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-19.5 + parent: 0 + type: Transform +- uid: 1656 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-18.5 + parent: 0 + type: Transform +- uid: 1657 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-17.5 + parent: 0 + type: Transform +- uid: 1658 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-16.5 + parent: 0 + type: Transform +- uid: 1659 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-15.5 + parent: 0 + type: Transform +- uid: 1660 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-14.5 + parent: 0 + type: Transform +- uid: 1661 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 0 + type: Transform +- uid: 1662 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 0 + type: Transform +- uid: 1663 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-11.5 + parent: 0 + type: Transform +- uid: 1664 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-10.5 + parent: 0 + type: Transform +- uid: 1665 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 0 + type: Transform +- uid: 1666 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-8.5 + parent: 0 + type: Transform +- uid: 1667 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-7.5 + parent: 0 + type: Transform +- uid: 1668 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-6.5 + parent: 0 + type: Transform +- uid: 1669 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-31.5 + parent: 0 + type: Transform +- uid: 1670 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-31.5 + parent: 0 + type: Transform +- uid: 1671 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-28.5 + parent: 0 + type: Transform +- uid: 1672 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-28.5 + parent: 0 + type: Transform +- uid: 1673 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 0 + type: Transform +- uid: 1674 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 0 + type: Transform +- uid: 1675 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-6.5 + parent: 0 + type: Transform +- uid: 1676 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 0 + type: Transform +- uid: 1677 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 0 + type: Transform +- uid: 1678 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 0 + type: Transform +- uid: 1679 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 0 + type: Transform +- uid: 1680 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 0 + type: Transform +- uid: 1681 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 0 + type: Transform +- uid: 1682 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-7.5 + parent: 0 + type: Transform +- uid: 1683 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-16.5 + parent: 0 + type: Transform +- uid: 1684 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-17.5 + parent: 0 + type: Transform +- uid: 1685 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-3.5 + parent: 0 + type: Transform +- uid: 1686 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-3.5 + parent: 0 + type: Transform +- uid: 1687 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-3.5 + parent: 0 + type: Transform +- uid: 1688 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-3.5 + parent: 0 + type: Transform +- uid: 1689 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-3.5 + parent: 0 + type: Transform +- uid: 1690 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-3.5 + parent: 0 + type: Transform +- uid: 1691 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 0 + type: Transform +- uid: 1692 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-3.5 + parent: 0 + type: Transform +- uid: 1693 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 0 + type: Transform +- uid: 1694 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-3.5 + parent: 0 + type: Transform +- uid: 1695 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-3.5 + parent: 0 + type: Transform +- uid: 1696 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 0 + type: Transform +- uid: 1697 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 0 + type: Transform +- uid: 1698 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 0 + type: Transform +- uid: 1699 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -16.5,0.5 + parent: 0 + type: Transform +- uid: 1700 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,0.5 + parent: 0 + type: Transform +- uid: 1701 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,1.5 + parent: 0 + type: Transform +- uid: 1702 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,2.5 + parent: 0 + type: Transform +- uid: 1703 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,3.5 + parent: 0 + type: Transform +- uid: 1704 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,4.5 + parent: 0 + type: Transform +- uid: 1705 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,5.5 + parent: 0 + type: Transform +- uid: 1706 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,6.5 + parent: 0 + type: Transform +- uid: 1707 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,7.5 + parent: 0 + type: Transform +- uid: 1708 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,8.5 + parent: 0 + type: Transform +- uid: 1709 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,9.5 + parent: 0 + type: Transform +- uid: 1710 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 0 + type: Transform +- uid: 1711 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 0 + type: Transform +- uid: 1712 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,12.5 + parent: 0 + type: Transform +- uid: 1713 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-3.5 + parent: 0 + type: Transform +- uid: 1714 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 0 + type: Transform +- uid: 1715 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 0 + type: Transform +- uid: 1716 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 0 + type: Transform +- uid: 1717 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 0 + type: Transform +- uid: 1718 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 0 + type: Transform +- uid: 1719 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 0 + type: Transform +- uid: 1720 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 0 + type: Transform +- uid: 1721 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 0 + type: Transform +- uid: 1722 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -13.5,0.5 + parent: 0 + type: Transform +- uid: 1723 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -13.5,1.5 + parent: 0 + type: Transform +- uid: 1724 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -13.5,2.5 + parent: 0 + type: Transform +- uid: 1725 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -13.5,3.5 + parent: 0 + type: Transform +- uid: 1726 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,3.5 + parent: 0 + type: Transform +- uid: 1727 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,4.5 + parent: 0 + type: Transform +- uid: 1728 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,5.5 + parent: 0 + type: Transform +- uid: 1729 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,6.5 + parent: 0 + type: Transform +- uid: 1730 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,7.5 + parent: 0 + type: Transform +- uid: 1731 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,8.5 + parent: 0 + type: Transform +- uid: 1732 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,9.5 + parent: 0 + type: Transform +- uid: 1733 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,10.5 + parent: 0 + type: Transform +- uid: 1734 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,11.5 + parent: 0 + type: Transform +- uid: 1735 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,12.5 + parent: 0 + type: Transform +- uid: 1736 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,13.5 + parent: 0 + type: Transform +- uid: 1737 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,14.5 + parent: 0 + type: Transform +- uid: 1738 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,15.5 + parent: 0 + type: Transform +- uid: 1739 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,16.5 + parent: 0 + type: Transform +- uid: 1740 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,13.5 + parent: 0 + type: Transform +- uid: 1741 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,14.5 + parent: 0 + type: Transform +- uid: 1742 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,15.5 + parent: 0 + type: Transform +- uid: 1743 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,16.5 + parent: 0 + type: Transform +- uid: 1744 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,17.5 + parent: 0 + type: Transform +- uid: 1745 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,18.5 + parent: 0 + type: Transform +- uid: 1746 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,19.5 + parent: 0 + type: Transform +- uid: 1747 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,21.5 + parent: 0 + type: Transform +- uid: 1748 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -18.5,21.5 + parent: 0 + type: Transform +- uid: 1749 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,19.5 + parent: 0 + type: Transform +- uid: 1750 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,20.5 + parent: 0 + type: Transform +- uid: 1751 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,21.5 + parent: 0 + type: Transform +- uid: 1752 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,22.5 + parent: 0 + type: Transform +- uid: 1753 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,23.5 + parent: 0 + type: Transform +- uid: 1754 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,24.5 + parent: 0 + type: Transform +- uid: 1755 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -14.5,25.5 + parent: 0 + type: Transform +- uid: 1756 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -15.5,25.5 + parent: 0 + type: Transform +- uid: 1757 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -16.5,25.5 + parent: 0 + type: Transform +- uid: 1758 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -17.5,25.5 + parent: 0 + type: Transform +- uid: 1759 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -18.5,25.5 + parent: 0 + type: Transform +- uid: 1760 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-18.5 + parent: 0 + type: Transform +- uid: 1761 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-19.5 + parent: 0 + type: Transform +- uid: 1762 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 0 + type: Transform +- uid: 1763 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-21.5 + parent: 0 + type: Transform +- uid: 1764 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-22.5 + parent: 0 + type: Transform +- uid: 1765 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-23.5 + parent: 0 + type: Transform +- uid: 1766 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-24.5 + parent: 0 + type: Transform +- uid: 1767 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-25.5 + parent: 0 + type: Transform +- uid: 1768 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-25.5 + parent: 0 + type: Transform +- uid: 1769 + type: FenceBase + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-19.5 + parent: 0 + type: Transform +- uid: 1770 + type: AirlockCommand + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-34.5 + parent: 0 + type: Transform +- uid: 1771 + type: FenceBase + components: + - pos: -26.5,11.5 + parent: 0 + type: Transform +- uid: 1772 + type: WallAlmayer + components: + - pos: -50.5,-11.5 + parent: 0 + type: Transform +- uid: 1773 + type: SmallLight + components: + - pos: -27.5,-20.5 + parent: 0 + type: Transform +- uid: 1774 + type: PoweredlightSodium + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-18.5 + parent: 0 + type: Transform +- uid: 1775 + type: AlwaysPoweredLightSodium + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-13.5 + parent: 0 + type: Transform +- uid: 1776 + type: SmallLight + components: + - pos: -24.5,-14.5 + parent: 0 + type: Transform +- uid: 1777 + type: SmallLight + components: + - rot: 1.5707963267948966 rad + pos: -33.5,0.5 + parent: 0 + type: Transform +- uid: 1778 + type: AlwaysPoweredLightSodium + components: + - rot: 1.5707963267948966 rad + pos: -43.5,12.5 + parent: 0 + type: Transform +- uid: 1779 + type: FenceBase + components: + - pos: -44.5,-1.5 + parent: 0 + type: Transform +- uid: 1780 + type: FenceBase + components: + - pos: -43.5,-1.5 + parent: 0 + type: Transform +- uid: 1781 + type: SmallLight + components: + - rot: 1.5707963267948966 rad + pos: -33.5,8.5 + parent: 0 + type: Transform +- uid: 1782 + type: SmallLight + components: + - pos: -21.5,6.5 + parent: 0 + type: Transform +- uid: 1783 + type: SmallLight + components: + - pos: -50.5,-6.5 + parent: 0 + type: Transform +- uid: 1784 + type: FenceBase + components: + - pos: -26.5,13.5 + parent: 0 + type: Transform +- uid: 1785 + type: FenceBase + components: + - pos: -26.5,14.5 + parent: 0 + type: Transform +- uid: 1786 + type: FenceBase + components: + - pos: -26.5,15.5 + parent: 0 + type: Transform +- uid: 1787 + type: FenceBase + components: + - pos: -26.5,16.5 + parent: 0 + type: Transform +- uid: 1788 + type: FenceBase + components: + - pos: -31.5,16.5 + parent: 0 + type: Transform +- uid: 1789 + type: FenceBase + components: + - pos: -31.5,15.5 + parent: 0 + type: Transform +- uid: 1790 + type: FenceBase + components: + - pos: -31.5,14.5 + parent: 0 + type: Transform +- uid: 1791 + type: FenceBase + components: + - pos: -31.5,13.5 + parent: 0 + type: Transform +- uid: 1792 + type: FenceBase + components: + - pos: -31.5,12.5 + parent: 0 + type: Transform +- uid: 1793 + type: FenceBase + components: + - pos: -31.5,11.5 + parent: 0 + type: Transform +- uid: 1794 + type: MountainRock + components: + - pos: 107.5,-36.5 + parent: 0 + type: Transform +- uid: 1795 + type: MountainRock + components: + - pos: 106.5,-36.5 + parent: 0 + type: Transform +- uid: 1796 + type: MountainRock + components: + - pos: 105.5,-37.5 + parent: 0 + type: Transform +- uid: 1797 + type: MountainRock + components: + - pos: 104.5,-37.5 + parent: 0 + type: Transform +- uid: 1798 + type: MountainRock + components: + - pos: 104.5,-35.5 + parent: 0 + type: Transform +- uid: 1799 + type: MountainRock + components: + - pos: 105.5,-35.5 + parent: 0 + type: Transform +- uid: 1800 + type: MountainRock + components: + - pos: 106.5,-35.5 + parent: 0 + type: Transform +- uid: 1801 + type: MountainRock + components: + - pos: 107.5,-35.5 + parent: 0 + type: Transform +- uid: 1802 + type: MountainRock + components: + - pos: 108.5,-35.5 + parent: 0 + type: Transform +- uid: 1803 + type: MountainRock + components: + - pos: 108.5,-34.5 + parent: 0 + type: Transform +- uid: 1804 + type: MountainRock + components: + - pos: 108.5,-33.5 + parent: 0 + type: Transform +- uid: 1805 + type: MountainRock + components: + - pos: 108.5,-32.5 + parent: 0 + type: Transform +- uid: 1806 + type: MountainRock + components: + - pos: 107.5,-32.5 + parent: 0 + type: Transform +- uid: 1807 + type: MountainRock + components: + - pos: 108.5,-31.5 + parent: 0 + type: Transform +- uid: 1808 + type: MountainRock + components: + - pos: 109.5,-31.5 + parent: 0 + type: Transform +- uid: 1809 + type: MountainRock + components: + - pos: 110.5,-31.5 + parent: 0 + type: Transform +- uid: 1810 + type: MountainRock + components: + - pos: 110.5,-30.5 + parent: 0 + type: Transform +- uid: 1811 + type: MountainRock + components: + - pos: 110.5,-29.5 + parent: 0 + type: Transform +- uid: 1812 + type: MountainRock + components: + - pos: 109.5,-29.5 + parent: 0 + type: Transform +- uid: 1813 + type: MountainRock + components: + - pos: 108.5,-29.5 + parent: 0 + type: Transform +- uid: 1814 + type: MountainRock + components: + - pos: 108.5,-28.5 + parent: 0 + type: Transform +- uid: 1815 + type: MountainRock + components: + - pos: 110.5,-28.5 + parent: 0 + type: Transform +- uid: 1816 + type: MountainRock + components: + - pos: 110.5,-27.5 + parent: 0 + type: Transform +- uid: 1817 + type: MountainRock + components: + - pos: 109.5,-27.5 + parent: 0 + type: Transform +- uid: 1818 + type: MountainRock + components: + - pos: 109.5,-28.5 + parent: 0 + type: Transform +- uid: 1819 + type: MountainRock + components: + - pos: 109.5,-26.5 + parent: 0 + type: Transform +- uid: 1820 + type: MountainRock + components: + - pos: 108.5,-26.5 + parent: 0 + type: Transform +- uid: 1821 + type: MountainRock + components: + - pos: 107.5,-26.5 + parent: 0 + type: Transform +- uid: 1822 + type: MountainRock + components: + - pos: 107.5,-25.5 + parent: 0 + type: Transform +- uid: 1823 + type: MountainRock + components: + - pos: 107.5,-24.5 + parent: 0 + type: Transform +- uid: 1824 + type: MountainRock + components: + - pos: 106.5,-24.5 + parent: 0 + type: Transform +- uid: 1825 + type: MountainRock + components: + - pos: 108.5,-25.5 + parent: 0 + type: Transform +- uid: 1826 + type: MountainRock + components: + - pos: 109.5,-25.5 + parent: 0 + type: Transform +- uid: 1827 + type: MountainRock + components: + - pos: 110.5,-25.5 + parent: 0 + type: Transform +- uid: 1828 + type: MountainRock + components: + - pos: 111.5,-25.5 + parent: 0 + type: Transform +- uid: 1829 + type: MountainRock + components: + - pos: 112.5,-25.5 + parent: 0 + type: Transform +- uid: 1830 + type: MountainRock + components: + - pos: 112.5,-24.5 + parent: 0 + type: Transform +- uid: 1831 + type: MountainRock + components: + - pos: 112.5,-23.5 + parent: 0 + type: Transform +- uid: 1832 + type: MountainRock + components: + - pos: 112.5,-22.5 + parent: 0 + type: Transform +- uid: 1833 + type: MountainRock + components: + - pos: 111.5,-22.5 + parent: 0 + type: Transform +- uid: 1834 + type: MountainRock + components: + - pos: 110.5,-22.5 + parent: 0 + type: Transform +- uid: 1835 + type: MountainRock + components: + - pos: 109.5,-22.5 + parent: 0 + type: Transform +- uid: 1836 + type: MountainRock + components: + - pos: 109.5,-23.5 + parent: 0 + type: Transform +- uid: 1837 + type: MountainRock + components: + - pos: 108.5,-22.5 + parent: 0 + type: Transform +- uid: 1838 + type: MountainRock + components: + - pos: 110.5,-21.5 + parent: 0 + type: Transform +- uid: 1839 + type: MountainRock + components: + - pos: 110.5,-20.5 + parent: 0 + type: Transform +- uid: 1840 + type: MountainRock + components: + - pos: 110.5,-19.5 + parent: 0 + type: Transform +- uid: 1841 + type: MountainRock + components: + - pos: 109.5,-19.5 + parent: 0 + type: Transform +- uid: 1842 + type: MountainRock + components: + - pos: 108.5,-20.5 + parent: 0 + type: Transform +- uid: 1843 + type: MountainRock + components: + - pos: 108.5,-19.5 + parent: 0 + type: Transform +- uid: 1844 + type: MountainRock + components: + - pos: 107.5,-20.5 + parent: 0 + type: Transform +- uid: 1845 + type: MountainRock + components: + - pos: 107.5,-19.5 + parent: 0 + type: Transform +- uid: 1846 + type: MountainRock + components: + - pos: 108.5,-18.5 + parent: 0 + type: Transform +- uid: 1847 + type: MountainRock + components: + - pos: 108.5,-17.5 + parent: 0 + type: Transform +- uid: 1848 + type: MountainRock + components: + - pos: 108.5,-16.5 + parent: 0 + type: Transform +- uid: 1849 + type: MountainRock + components: + - pos: 107.5,-16.5 + parent: 0 + type: Transform +- uid: 1850 + type: MountainRock + components: + - pos: 107.5,-15.5 + parent: 0 + type: Transform +- uid: 1851 + type: MountainRock + components: + - pos: 106.5,-15.5 + parent: 0 + type: Transform +- uid: 1852 + type: MountainRock + components: + - pos: 107.5,-14.5 + parent: 0 + type: Transform +- uid: 1853 + type: MountainRock + components: + - pos: 108.5,-14.5 + parent: 0 + type: Transform +- uid: 1854 + type: MountainRock + components: + - pos: 109.5,-14.5 + parent: 0 + type: Transform +- uid: 1855 + type: MountainRock + components: + - pos: 109.5,-13.5 + parent: 0 + type: Transform +- uid: 1856 + type: MountainRock + components: + - pos: 109.5,-12.5 + parent: 0 + type: Transform +- uid: 1857 + type: MountainRock + components: + - pos: 108.5,-12.5 + parent: 0 + type: Transform +- uid: 1858 + type: MountainRock + components: + - pos: 108.5,-11.5 + parent: 0 + type: Transform +- uid: 1859 + type: MountainRock + components: + - pos: 107.5,-11.5 + parent: 0 + type: Transform +- uid: 1860 + type: MountainRock + components: + - pos: 109.5,-11.5 + parent: 0 + type: Transform +- uid: 1861 + type: MountainRock + components: + - pos: 106.5,-44.5 + parent: 0 + type: Transform +- uid: 1862 + type: MountainRock + components: + - pos: 108.5,-44.5 + parent: 0 + type: Transform +- uid: 1863 + type: MountainRock + components: + - pos: 108.5,-43.5 + parent: 0 + type: Transform +- uid: 1864 + type: MountainRock + components: + - pos: 108.5,-42.5 + parent: 0 + type: Transform +- uid: 1865 + type: MountainRock + components: + - pos: 104.5,-42.5 + parent: 0 + type: Transform +- uid: 1866 + type: MountainRock + components: + - pos: 105.5,-42.5 + parent: 0 + type: Transform +- uid: 1867 + type: MountainRock + components: + - pos: 108.5,-46.5 + parent: 0 + type: Transform +- uid: 1868 + type: MountainRock + components: + - pos: 108.5,-45.5 + parent: 0 + type: Transform +- uid: 1869 + type: MountainRock + components: + - pos: 107.5,-45.5 + parent: 0 + type: Transform +- uid: 1870 + type: MountainRock + components: + - pos: 107.5,-44.5 + parent: 0 + type: Transform +- uid: 1871 + type: MountainRock + components: + - pos: 106.5,-42.5 + parent: 0 + type: Transform +- uid: 1872 + type: MountainRock + components: + - pos: 107.5,-42.5 + parent: 0 + type: Transform +- uid: 1873 + type: MountainRock + components: + - pos: 105.5,-41.5 + parent: 0 + type: Transform +- uid: 1874 + type: MountainRock + components: + - pos: 106.5,-41.5 + parent: 0 + type: Transform +- uid: 1875 + type: MountainRock + components: + - pos: 107.5,-41.5 + parent: 0 + type: Transform +- uid: 1876 + type: MountainRock + components: + - pos: 108.5,-41.5 + parent: 0 + type: Transform +- uid: 1877 + type: MountainRock + components: + - pos: 106.5,-39.5 + parent: 0 + type: Transform +- uid: 1878 + type: MountainRock + components: + - pos: 107.5,-40.5 + parent: 0 + type: Transform +- uid: 1879 + type: MountainRock + components: + - pos: 107.5,-39.5 + parent: 0 + type: Transform +- uid: 1880 + type: MountainRock + components: + - pos: 107.5,-38.5 + parent: 0 + type: Transform +- uid: 1881 + type: MountainRock + components: + - pos: 108.5,-37.5 + parent: 0 + type: Transform +- uid: 1882 + type: MountainRock + components: + - pos: 108.5,-38.5 + parent: 0 + type: Transform +- uid: 1883 + type: MountainRock + components: + - pos: 108.5,-36.5 + parent: 0 + type: Transform +- uid: 1884 + type: MountainRock + components: + - pos: 110.5,-10.5 + parent: 0 + type: Transform +- uid: 1885 + type: MountainRock + components: + - pos: 110.5,-11.5 + parent: 0 + type: Transform +- uid: 1886 + type: MountainRock + components: + - pos: 110.5,-9.5 + parent: 0 + type: Transform +- uid: 1887 + type: MountainRock + components: + - pos: 110.5,-8.5 + parent: 0 + type: Transform +- uid: 1888 + type: MountainRock + components: + - pos: 110.5,-7.5 + parent: 0 + type: Transform +- uid: 1889 + type: MountainRock + components: + - pos: 109.5,-8.5 + parent: 0 + type: Transform +- uid: 1890 + type: MountainRock + components: + - pos: 109.5,-7.5 + parent: 0 + type: Transform +- uid: 1891 + type: MountainRock + components: + - pos: 111.5,-7.5 + parent: 0 + type: Transform +- uid: 1892 + type: MountainRock + components: + - pos: 111.5,-6.5 + parent: 0 + type: Transform +- uid: 1893 + type: MountainRock + components: + - pos: 111.5,-5.5 + parent: 0 + type: Transform +- uid: 1894 + type: MountainRock + components: + - pos: 110.5,-5.5 + parent: 0 + type: Transform +- uid: 1895 + type: MountainRock + components: + - pos: 110.5,-4.5 + parent: 0 + type: Transform +- uid: 1896 + type: MountainRock + components: + - pos: 109.5,-4.5 + parent: 0 + type: Transform +- uid: 1897 + type: MountainRock + components: + - pos: 108.5,-4.5 + parent: 0 + type: Transform +- uid: 1898 + type: MountainRock + components: + - pos: 108.5,-3.5 + parent: 0 + type: Transform +- uid: 1899 + type: MountainRock + components: + - pos: 107.5,-2.5 + parent: 0 + type: Transform +- uid: 1900 + type: MountainRock + components: + - pos: 108.5,-2.5 + parent: 0 + type: Transform +- uid: 1901 + type: MountainRock + components: + - pos: 107.5,-1.5 + parent: 0 + type: Transform +- uid: 1902 + type: MountainRock + components: + - pos: 107.5,-0.5 + parent: 0 + type: Transform +- uid: 1903 + type: MountainRock + components: + - pos: 106.5,-0.5 + parent: 0 + type: Transform +- uid: 1904 + type: MountainRock + components: + - pos: 106.5,0.5 + parent: 0 + type: Transform +- uid: 1905 + type: MountainRock + components: + - pos: 107.5,0.5 + parent: 0 + type: Transform +- uid: 1906 + type: MountainRock + components: + - pos: 108.5,0.5 + parent: 0 + type: Transform +- uid: 1907 + type: MountainRock + components: + - pos: 109.5,0.5 + parent: 0 + type: Transform +- uid: 1908 + type: MountainRock + components: + - pos: 109.5,1.5 + parent: 0 + type: Transform +- uid: 1909 + type: MountainRock + components: + - pos: 109.5,2.5 + parent: 0 + type: Transform +- uid: 1910 + type: MountainRock + components: + - pos: 110.5,2.5 + parent: 0 + type: Transform +- uid: 1911 + type: MountainRock + components: + - pos: 110.5,3.5 + parent: 0 + type: Transform +- uid: 1912 + type: MountainRock + components: + - pos: 110.5,4.5 + parent: 0 + type: Transform +- uid: 1913 + type: MountainRock + components: + - pos: 109.5,4.5 + parent: 0 + type: Transform +- uid: 1914 + type: MountainRock + components: + - pos: 109.5,5.5 + parent: 0 + type: Transform +- uid: 1915 + type: MountainRock + components: + - pos: 108.5,5.5 + parent: 0 + type: Transform +- uid: 1916 + type: MountainRock + components: + - pos: 108.5,6.5 + parent: 0 + type: Transform +- uid: 1917 + type: MountainRock + components: + - pos: 107.5,6.5 + parent: 0 + type: Transform +- uid: 1918 + type: MountainRock + components: + - pos: 107.5,7.5 + parent: 0 + type: Transform +- uid: 1919 + type: MountainRock + components: + - pos: 107.5,9.5 + parent: 0 + type: Transform +- uid: 1920 + type: MountainRock + components: + - pos: 107.5,8.5 + parent: 0 + type: Transform +- uid: 1921 + type: MountainRock + components: + - pos: 108.5,9.5 + parent: 0 + type: Transform +- uid: 1922 + type: MountainRock + components: + - pos: 108.5,10.5 + parent: 0 + type: Transform +- uid: 1923 + type: MountainRock + components: + - pos: 108.5,11.5 + parent: 0 + type: Transform +- uid: 1924 + type: MountainRock + components: + - pos: 108.5,12.5 + parent: 0 + type: Transform +- uid: 1925 + type: MountainRock + components: + - pos: 107.5,12.5 + parent: 0 + type: Transform +- uid: 1926 + type: MountainRock + components: + - pos: 107.5,13.5 + parent: 0 + type: Transform +- uid: 1927 + type: MountainRock + components: + - pos: 108.5,13.5 + parent: 0 + type: Transform +- uid: 1928 + type: MountainRock + components: + - pos: 108.5,14.5 + parent: 0 + type: Transform +- uid: 1929 + type: MountainRock + components: + - pos: 108.5,15.5 + parent: 0 + type: Transform +- uid: 1930 + type: MountainRock + components: + - pos: 108.5,16.5 + parent: 0 + type: Transform +- uid: 1931 + type: MountainRock + components: + - pos: 108.5,17.5 + parent: 0 + type: Transform +- uid: 1932 + type: MountainRock + components: + - pos: 109.5,16.5 + parent: 0 + type: Transform +- uid: 1933 + type: MountainRock + components: + - pos: 109.5,17.5 + parent: 0 + type: Transform +- uid: 1934 + type: MountainRock + components: + - pos: 112.5,20.5 + parent: 0 + type: Transform +- uid: 1935 + type: MountainRock + components: + - pos: 111.5,18.5 + parent: 0 + type: Transform +- uid: 1936 + type: MountainRock + components: + - pos: 111.5,20.5 + parent: 0 + type: Transform +- uid: 1937 + type: MountainRock + components: + - pos: 109.5,18.5 + parent: 0 + type: Transform +- uid: 1938 + type: MountainRock + components: + - pos: 111.5,19.5 + parent: 0 + type: Transform +- uid: 1939 + type: MountainRock + components: + - pos: 110.5,18.5 + parent: 0 + type: Transform +- uid: 1940 + type: MountainRock + components: + - pos: 112.5,26.5 + parent: 0 + type: Transform +- uid: 1941 + type: MountainRock + components: + - pos: 112.5,25.5 + parent: 0 + type: Transform +- uid: 1942 + type: MountainRock + components: + - pos: 112.5,24.5 + parent: 0 + type: Transform +- uid: 1943 + type: MountainRock + components: + - pos: 111.5,23.5 + parent: 0 + type: Transform +- uid: 1944 + type: MountainRock + components: + - pos: 110.5,23.5 + parent: 0 + type: Transform +- uid: 1945 + type: MountainRock + components: + - pos: 110.5,22.5 + parent: 0 + type: Transform +- uid: 1946 + type: MountainRock + components: + - pos: 110.5,24.5 + parent: 0 + type: Transform +- uid: 1947 + type: MountainRock + components: + - pos: 109.5,24.5 + parent: 0 + type: Transform +- uid: 1948 + type: MountainRock + components: + - pos: 109.5,25.5 + parent: 0 + type: Transform +- uid: 1949 + type: MountainRock + components: + - pos: 109.5,26.5 + parent: 0 + type: Transform +- uid: 1950 + type: MountainRock + components: + - pos: 109.5,27.5 + parent: 0 + type: Transform +- uid: 1951 + type: MountainRock + components: + - pos: 110.5,27.5 + parent: 0 + type: Transform +- uid: 1952 + type: MountainRock + components: + - pos: 110.5,28.5 + parent: 0 + type: Transform +- uid: 1953 + type: MountainRock + components: + - pos: 110.5,30.5 + parent: 0 + type: Transform +- uid: 1954 + type: MountainRock + components: + - pos: 110.5,29.5 + parent: 0 + type: Transform +- uid: 1955 + type: MountainRock + components: + - pos: 111.5,30.5 + parent: 0 + type: Transform +- uid: 1956 + type: MountainRock + components: + - pos: 111.5,31.5 + parent: 0 + type: Transform +- uid: 1957 + type: MountainRock + components: + - pos: 111.5,32.5 + parent: 0 + type: Transform +- uid: 1958 + type: MountainRock + components: + - pos: 110.5,32.5 + parent: 0 + type: Transform +- uid: 1959 + type: MountainRock + components: + - pos: 111.5,33.5 + parent: 0 + type: Transform +- uid: 1960 + type: MountainRock + components: + - pos: 111.5,34.5 + parent: 0 + type: Transform +- uid: 1961 + type: MountainRock + components: + - pos: 110.5,34.5 + parent: 0 + type: Transform +- uid: 1962 + type: MountainRock + components: + - pos: 111.5,35.5 + parent: 0 + type: Transform +- uid: 1963 + type: MountainRock + components: + - pos: 111.5,36.5 + parent: 0 + type: Transform +- uid: 1964 + type: MountainRock + components: + - pos: 112.5,36.5 + parent: 0 + type: Transform +- uid: 1965 + type: MountainRock + components: + - pos: 112.5,37.5 + parent: 0 + type: Transform +- uid: 1966 + type: MountainRock + components: + - pos: 112.5,38.5 + parent: 0 + type: Transform +- uid: 1967 + type: MountainRock + components: + - pos: 111.5,38.5 + parent: 0 + type: Transform +- uid: 1968 + type: MountainRock + components: + - pos: 111.5,39.5 + parent: 0 + type: Transform +- uid: 1969 + type: MountainRock + components: + - pos: 112.5,39.5 + parent: 0 + type: Transform +- uid: 1970 + type: MountainRock + components: + - pos: 113.5,39.5 + parent: 0 + type: Transform +- uid: 1971 + type: MountainRock + components: + - pos: 113.5,38.5 + parent: 0 + type: Transform +- uid: 1972 + type: MountainRock + components: + - pos: 113.5,37.5 + parent: 0 + type: Transform +- uid: 1973 + type: MountainRock + components: + - pos: 113.5,36.5 + parent: 0 + type: Transform +- uid: 1974 + type: MountainRock + components: + - pos: 113.5,35.5 + parent: 0 + type: Transform +- uid: 1975 + type: MountainRock + components: + - pos: 113.5,34.5 + parent: 0 + type: Transform +- uid: 1976 + type: MountainRock + components: + - pos: 113.5,33.5 + parent: 0 + type: Transform +- uid: 1977 + type: MountainRock + components: + - pos: 113.5,32.5 + parent: 0 + type: Transform +- uid: 1978 + type: MountainRock + components: + - pos: 113.5,31.5 + parent: 0 + type: Transform +- uid: 1979 + type: MountainRock + components: + - pos: 113.5,30.5 + parent: 0 + type: Transform +- uid: 1980 + type: MountainRock + components: + - pos: 113.5,29.5 + parent: 0 + type: Transform +- uid: 1981 + type: MountainRock + components: + - pos: 114.5,37.5 + parent: 0 + type: Transform +- uid: 1982 + type: MountainRock + components: + - pos: 114.5,36.5 + parent: 0 + type: Transform +- uid: 1983 + type: MountainRock + components: + - pos: 114.5,35.5 + parent: 0 + type: Transform +- uid: 1984 + type: MountainRock + components: + - pos: 114.5,34.5 + parent: 0 + type: Transform +- uid: 1985 + type: MountainRock + components: + - pos: 114.5,33.5 + parent: 0 + type: Transform +- uid: 1986 + type: MountainRock + components: + - pos: 114.5,32.5 + parent: 0 + type: Transform +- uid: 1987 + type: MountainRock + components: + - pos: 114.5,31.5 + parent: 0 + type: Transform +- uid: 1988 + type: MountainRock + components: + - pos: 114.5,30.5 + parent: 0 + type: Transform +- uid: 1989 + type: MountainRock + components: + - pos: 114.5,29.5 + parent: 0 + type: Transform +- uid: 1990 + type: MountainRock + components: + - pos: 115.5,37.5 + parent: 0 + type: Transform +- uid: 1991 + type: MountainRock + components: + - pos: 115.5,36.5 + parent: 0 + type: Transform +- uid: 1992 + type: MountainRock + components: + - pos: 115.5,35.5 + parent: 0 + type: Transform +- uid: 1993 + type: MountainRock + components: + - pos: 115.5,34.5 + parent: 0 + type: Transform +- uid: 1994 + type: MountainRock + components: + - pos: 115.5,33.5 + parent: 0 + type: Transform +- uid: 1995 + type: MountainRock + components: + - pos: 115.5,32.5 + parent: 0 + type: Transform +- uid: 1996 + type: MountainRock + components: + - pos: 115.5,31.5 + parent: 0 + type: Transform +- uid: 1997 + type: MountainRock + components: + - pos: 115.5,30.5 + parent: 0 + type: Transform +- uid: 1998 + type: MountainRock + components: + - pos: 115.5,29.5 + parent: 0 + type: Transform +- uid: 1999 + type: MountainRock + components: + - pos: 116.5,37.5 + parent: 0 + type: Transform +- uid: 2000 + type: MountainRock + components: + - pos: 116.5,36.5 + parent: 0 + type: Transform +- uid: 2001 + type: MountainRock + components: + - pos: 116.5,35.5 + parent: 0 + type: Transform +- uid: 2002 + type: MountainRock + components: + - pos: 116.5,34.5 + parent: 0 + type: Transform +- uid: 2003 + type: MountainRock + components: + - pos: 116.5,33.5 + parent: 0 + type: Transform +- uid: 2004 + type: MountainRock + components: + - pos: 116.5,32.5 + parent: 0 + type: Transform +- uid: 2005 + type: MountainRock + components: + - pos: 116.5,31.5 + parent: 0 + type: Transform +- uid: 2006 + type: MountainRock + components: + - pos: 116.5,30.5 + parent: 0 + type: Transform +- uid: 2007 + type: MountainRock + components: + - pos: 116.5,29.5 + parent: 0 + type: Transform +- uid: 2008 + type: MountainRock + components: + - pos: 117.5,37.5 + parent: 0 + type: Transform +- uid: 2009 + type: MountainRock + components: + - pos: 117.5,36.5 + parent: 0 + type: Transform +- uid: 2010 + type: MountainRock + components: + - pos: 117.5,35.5 + parent: 0 + type: Transform +- uid: 2011 + type: MountainRock + components: + - pos: 117.5,34.5 + parent: 0 + type: Transform +- uid: 2012 + type: MountainRock + components: + - pos: 117.5,33.5 + parent: 0 + type: Transform +- uid: 2013 + type: MountainRock + components: + - pos: 117.5,32.5 + parent: 0 + type: Transform +- uid: 2014 + type: MountainRock + components: + - pos: 117.5,31.5 + parent: 0 + type: Transform +- uid: 2015 + type: MountainRock + components: + - pos: 117.5,30.5 + parent: 0 + type: Transform +- uid: 2016 + type: MountainRock + components: + - pos: 117.5,29.5 + parent: 0 + type: Transform +- uid: 2017 + type: MountainRock + components: + - pos: 118.5,37.5 + parent: 0 + type: Transform +- uid: 2018 + type: MountainRock + components: + - pos: 118.5,36.5 + parent: 0 + type: Transform +- uid: 2019 + type: MountainRock + components: + - pos: 118.5,35.5 + parent: 0 + type: Transform +- uid: 2020 + type: MountainRock + components: + - pos: 118.5,34.5 + parent: 0 + type: Transform +- uid: 2021 + type: MountainRock + components: + - pos: 118.5,33.5 + parent: 0 + type: Transform +- uid: 2022 + type: MountainRock + components: + - pos: 118.5,32.5 + parent: 0 + type: Transform +- uid: 2023 + type: MountainRock + components: + - pos: 118.5,31.5 + parent: 0 + type: Transform +- uid: 2024 + type: MountainRock + components: + - pos: 118.5,30.5 + parent: 0 + type: Transform +- uid: 2025 + type: MountainRock + components: + - pos: 118.5,29.5 + parent: 0 + type: Transform +- uid: 2026 + type: MountainRock + components: + - pos: 119.5,37.5 + parent: 0 + type: Transform +- uid: 2027 + type: MountainRock + components: + - pos: 119.5,36.5 + parent: 0 + type: Transform +- uid: 2028 + type: MountainRock + components: + - pos: 119.5,35.5 + parent: 0 + type: Transform +- uid: 2029 + type: MountainRock + components: + - pos: 119.5,34.5 + parent: 0 + type: Transform +- uid: 2030 + type: MountainRock + components: + - pos: 119.5,33.5 + parent: 0 + type: Transform +- uid: 2031 + type: MountainRock + components: + - pos: 119.5,32.5 + parent: 0 + type: Transform +- uid: 2032 + type: MountainRock + components: + - pos: 119.5,31.5 + parent: 0 + type: Transform +- uid: 2033 + type: MountainRock + components: + - pos: 119.5,30.5 + parent: 0 + type: Transform +- uid: 2034 + type: MountainRock + components: + - pos: 119.5,29.5 + parent: 0 + type: Transform +- uid: 2035 + type: MountainRock + components: + - pos: 120.5,37.5 + parent: 0 + type: Transform +- uid: 2036 + type: MountainRock + components: + - pos: 120.5,36.5 + parent: 0 + type: Transform +- uid: 2037 + type: MountainRock + components: + - pos: 120.5,35.5 + parent: 0 + type: Transform +- uid: 2038 + type: MountainRock + components: + - pos: 120.5,34.5 + parent: 0 + type: Transform +- uid: 2039 + type: MountainRock + components: + - pos: 120.5,33.5 + parent: 0 + type: Transform +- uid: 2040 + type: MountainRock + components: + - pos: 120.5,32.5 + parent: 0 + type: Transform +- uid: 2041 + type: MountainRock + components: + - pos: 120.5,31.5 + parent: 0 + type: Transform +- uid: 2042 + type: MountainRock + components: + - pos: 120.5,30.5 + parent: 0 + type: Transform +- uid: 2043 + type: MountainRock + components: + - pos: 120.5,29.5 + parent: 0 + type: Transform +- uid: 2044 + type: MountainRock + components: + - pos: 121.5,37.5 + parent: 0 + type: Transform +- uid: 2045 + type: MountainRock + components: + - pos: 121.5,36.5 + parent: 0 + type: Transform +- uid: 2046 + type: MountainRock + components: + - pos: 121.5,35.5 + parent: 0 + type: Transform +- uid: 2047 + type: MountainRock + components: + - pos: 121.5,34.5 + parent: 0 + type: Transform +- uid: 2048 + type: MountainRock + components: + - pos: 121.5,33.5 + parent: 0 + type: Transform +- uid: 2049 + type: MountainRock + components: + - pos: 121.5,32.5 + parent: 0 + type: Transform +- uid: 2050 + type: MountainRock + components: + - pos: 121.5,31.5 + parent: 0 + type: Transform +- uid: 2051 + type: MountainRock + components: + - pos: 121.5,30.5 + parent: 0 + type: Transform +- uid: 2052 + type: MountainRock + components: + - pos: 121.5,29.5 + parent: 0 + type: Transform +- uid: 2053 + type: MountainRock + components: + - pos: 122.5,37.5 + parent: 0 + type: Transform +- uid: 2054 + type: MountainRock + components: + - pos: 122.5,36.5 + parent: 0 + type: Transform +- uid: 2055 + type: MountainRock + components: + - pos: 122.5,35.5 + parent: 0 + type: Transform +- uid: 2056 + type: MountainRock + components: + - pos: 122.5,34.5 + parent: 0 + type: Transform +- uid: 2057 + type: MountainRock + components: + - pos: 122.5,33.5 + parent: 0 + type: Transform +- uid: 2058 + type: MountainRock + components: + - pos: 122.5,32.5 + parent: 0 + type: Transform +- uid: 2059 + type: MountainRock + components: + - pos: 122.5,31.5 + parent: 0 + type: Transform +- uid: 2060 + type: MountainRock + components: + - pos: 122.5,30.5 + parent: 0 + type: Transform +- uid: 2061 + type: MountainRock + components: + - pos: 122.5,29.5 + parent: 0 + type: Transform +- uid: 2062 + type: MountainRock + components: + - pos: 123.5,37.5 + parent: 0 + type: Transform +- uid: 2063 + type: MountainRock + components: + - pos: 123.5,36.5 + parent: 0 + type: Transform +- uid: 2064 + type: MountainRock + components: + - pos: 123.5,35.5 + parent: 0 + type: Transform +- uid: 2065 + type: MountainRock + components: + - pos: 123.5,34.5 + parent: 0 + type: Transform +- uid: 2066 + type: MountainRock + components: + - pos: 123.5,33.5 + parent: 0 + type: Transform +- uid: 2067 + type: MountainRock + components: + - pos: 123.5,32.5 + parent: 0 + type: Transform +- uid: 2068 + type: MountainRock + components: + - pos: 123.5,31.5 + parent: 0 + type: Transform +- uid: 2069 + type: MountainRock + components: + - pos: 123.5,30.5 + parent: 0 + type: Transform +- uid: 2070 + type: MountainRock + components: + - pos: 123.5,29.5 + parent: 0 + type: Transform +- uid: 2071 + type: MountainRock + components: + - pos: 124.5,37.5 + parent: 0 + type: Transform +- uid: 2072 + type: MountainRock + components: + - pos: 124.5,36.5 + parent: 0 + type: Transform +- uid: 2073 + type: MountainRock + components: + - pos: 124.5,35.5 + parent: 0 + type: Transform +- uid: 2074 + type: MountainRock + components: + - pos: 124.5,34.5 + parent: 0 + type: Transform +- uid: 2075 + type: MountainRock + components: + - pos: 124.5,33.5 + parent: 0 + type: Transform +- uid: 2076 + type: MountainRock + components: + - pos: 124.5,32.5 + parent: 0 + type: Transform +- uid: 2077 + type: MountainRock + components: + - pos: 124.5,31.5 + parent: 0 + type: Transform +- uid: 2078 + type: MountainRock + components: + - pos: 124.5,30.5 + parent: 0 + type: Transform +- uid: 2079 + type: MountainRock + components: + - pos: 124.5,29.5 + parent: 0 + type: Transform +- uid: 2080 + type: MountainRock + components: + - pos: 125.5,37.5 + parent: 0 + type: Transform +- uid: 2081 + type: MountainRock + components: + - pos: 125.5,36.5 + parent: 0 + type: Transform +- uid: 2082 + type: MountainRock + components: + - pos: 125.5,35.5 + parent: 0 + type: Transform +- uid: 2083 + type: MountainRock + components: + - pos: 125.5,34.5 + parent: 0 + type: Transform +- uid: 2084 + type: MountainRock + components: + - pos: 125.5,33.5 + parent: 0 + type: Transform +- uid: 2085 + type: MountainRock + components: + - pos: 125.5,32.5 + parent: 0 + type: Transform +- uid: 2086 + type: MountainRock + components: + - pos: 125.5,31.5 + parent: 0 + type: Transform +- uid: 2087 + type: MountainRock + components: + - pos: 125.5,30.5 + parent: 0 + type: Transform +- uid: 2088 + type: MountainRock + components: + - pos: 125.5,29.5 + parent: 0 + type: Transform +- uid: 2089 + type: MountainRock + components: + - pos: 126.5,37.5 + parent: 0 + type: Transform +- uid: 2090 + type: MountainRock + components: + - pos: 126.5,36.5 + parent: 0 + type: Transform +- uid: 2091 + type: MountainRock + components: + - pos: 126.5,35.5 + parent: 0 + type: Transform +- uid: 2092 + type: MountainRock + components: + - pos: 126.5,34.5 + parent: 0 + type: Transform +- uid: 2093 + type: MountainRock + components: + - pos: 126.5,33.5 + parent: 0 + type: Transform +- uid: 2094 + type: MountainRock + components: + - pos: 126.5,32.5 + parent: 0 + type: Transform +- uid: 2095 + type: MountainRock + components: + - pos: 126.5,31.5 + parent: 0 + type: Transform +- uid: 2096 + type: MountainRock + components: + - pos: 126.5,30.5 + parent: 0 + type: Transform +- uid: 2097 + type: MountainRock + components: + - pos: 126.5,29.5 + parent: 0 + type: Transform +- uid: 2098 + type: MountainRock + components: + - pos: 127.5,37.5 + parent: 0 + type: Transform +- uid: 2099 + type: MountainRock + components: + - pos: 127.5,36.5 + parent: 0 + type: Transform +- uid: 2100 + type: MountainRock + components: + - pos: 127.5,35.5 + parent: 0 + type: Transform +- uid: 2101 + type: MountainRock + components: + - pos: 127.5,34.5 + parent: 0 + type: Transform +- uid: 2102 + type: MountainRock + components: + - pos: 127.5,33.5 + parent: 0 + type: Transform +- uid: 2103 + type: MountainRock + components: + - pos: 127.5,32.5 + parent: 0 + type: Transform +- uid: 2104 + type: MountainRock + components: + - pos: 127.5,31.5 + parent: 0 + type: Transform +- uid: 2105 + type: MountainRock + components: + - pos: 127.5,30.5 + parent: 0 + type: Transform +- uid: 2106 + type: MountainRock + components: + - pos: 127.5,29.5 + parent: 0 + type: Transform +- uid: 2107 + type: MountainRock + components: + - pos: 128.5,37.5 + parent: 0 + type: Transform +- uid: 2108 + type: MountainRock + components: + - pos: 128.5,36.5 + parent: 0 + type: Transform +- uid: 2109 + type: MountainRock + components: + - pos: 128.5,35.5 + parent: 0 + type: Transform +- uid: 2110 + type: MountainRock + components: + - pos: 128.5,34.5 + parent: 0 + type: Transform +- uid: 2111 + type: MountainRock + components: + - pos: 128.5,33.5 + parent: 0 + type: Transform +- uid: 2112 + type: MountainRock + components: + - pos: 128.5,32.5 + parent: 0 + type: Transform +- uid: 2113 + type: MountainRock + components: + - pos: 128.5,31.5 + parent: 0 + type: Transform +- uid: 2114 + type: MountainRock + components: + - pos: 128.5,30.5 + parent: 0 + type: Transform +- uid: 2115 + type: MountainRock + components: + - pos: 128.5,29.5 + parent: 0 + type: Transform +- uid: 2116 + type: MountainRock + components: + - pos: 129.5,37.5 + parent: 0 + type: Transform +- uid: 2117 + type: MountainRock + components: + - pos: 129.5,36.5 + parent: 0 + type: Transform +- uid: 2118 + type: MountainRock + components: + - pos: 129.5,35.5 + parent: 0 + type: Transform +- uid: 2119 + type: MountainRock + components: + - pos: 129.5,34.5 + parent: 0 + type: Transform +- uid: 2120 + type: MountainRock + components: + - pos: 129.5,33.5 + parent: 0 + type: Transform +- uid: 2121 + type: MountainRock + components: + - pos: 129.5,32.5 + parent: 0 + type: Transform +- uid: 2122 + type: MountainRock + components: + - pos: 129.5,31.5 + parent: 0 + type: Transform +- uid: 2123 + type: MountainRock + components: + - pos: 129.5,30.5 + parent: 0 + type: Transform +- uid: 2124 + type: MountainRock + components: + - pos: 129.5,29.5 + parent: 0 + type: Transform +- uid: 2125 + type: MountainRock + components: + - pos: 130.5,37.5 + parent: 0 + type: Transform +- uid: 2126 + type: MountainRock + components: + - pos: 130.5,36.5 + parent: 0 + type: Transform +- uid: 2127 + type: MountainRock + components: + - pos: 130.5,35.5 + parent: 0 + type: Transform +- uid: 2128 + type: MountainRock + components: + - pos: 130.5,34.5 + parent: 0 + type: Transform +- uid: 2129 + type: MountainRock + components: + - pos: 130.5,33.5 + parent: 0 + type: Transform +- uid: 2130 + type: MountainRock + components: + - pos: 130.5,32.5 + parent: 0 + type: Transform +- uid: 2131 + type: MountainRock + components: + - pos: 130.5,31.5 + parent: 0 + type: Transform +- uid: 2132 + type: MountainRock + components: + - pos: 130.5,30.5 + parent: 0 + type: Transform +- uid: 2133 + type: MountainRock + components: + - pos: 130.5,29.5 + parent: 0 + type: Transform +- uid: 2134 + type: MountainRock + components: + - pos: 131.5,37.5 + parent: 0 + type: Transform +- uid: 2135 + type: MountainRock + components: + - pos: 131.5,36.5 + parent: 0 + type: Transform +- uid: 2136 + type: MountainRock + components: + - pos: 131.5,35.5 + parent: 0 + type: Transform +- uid: 2137 + type: MountainRock + components: + - pos: 131.5,34.5 + parent: 0 + type: Transform +- uid: 2138 + type: MountainRock + components: + - pos: 131.5,33.5 + parent: 0 + type: Transform +- uid: 2139 + type: MountainRock + components: + - pos: 131.5,32.5 + parent: 0 + type: Transform +- uid: 2140 + type: MountainRock + components: + - pos: 131.5,31.5 + parent: 0 + type: Transform +- uid: 2141 + type: MountainRock + components: + - pos: 131.5,30.5 + parent: 0 + type: Transform +- uid: 2142 + type: MountainRock + components: + - pos: 131.5,29.5 + parent: 0 + type: Transform +- uid: 2143 + type: MountainRock + components: + - pos: 132.5,37.5 + parent: 0 + type: Transform +- uid: 2144 + type: MountainRock + components: + - pos: 132.5,36.5 + parent: 0 + type: Transform +- uid: 2145 + type: MountainRock + components: + - pos: 132.5,35.5 + parent: 0 + type: Transform +- uid: 2146 + type: MountainRock + components: + - pos: 132.5,34.5 + parent: 0 + type: Transform +- uid: 2147 + type: MountainRock + components: + - pos: 132.5,33.5 + parent: 0 + type: Transform +- uid: 2148 + type: MountainRock + components: + - pos: 132.5,32.5 + parent: 0 + type: Transform +- uid: 2149 + type: MountainRock + components: + - pos: 132.5,31.5 + parent: 0 + type: Transform +- uid: 2150 + type: MountainRock + components: + - pos: 132.5,30.5 + parent: 0 + type: Transform +- uid: 2151 + type: MountainRock + components: + - pos: 132.5,29.5 + parent: 0 + type: Transform +- uid: 2152 + type: MountainRock + components: + - pos: 133.5,37.5 + parent: 0 + type: Transform +- uid: 2153 + type: MountainRock + components: + - pos: 133.5,36.5 + parent: 0 + type: Transform +- uid: 2154 + type: MountainRock + components: + - pos: 133.5,35.5 + parent: 0 + type: Transform +- uid: 2155 + type: MountainRock + components: + - pos: 133.5,34.5 + parent: 0 + type: Transform +- uid: 2156 + type: MountainRock + components: + - pos: 133.5,33.5 + parent: 0 + type: Transform +- uid: 2157 + type: MountainRock + components: + - pos: 133.5,32.5 + parent: 0 + type: Transform +- uid: 2158 + type: MountainRock + components: + - pos: 133.5,31.5 + parent: 0 + type: Transform +- uid: 2159 + type: MountainRock + components: + - pos: 133.5,30.5 + parent: 0 + type: Transform +- uid: 2160 + type: MountainRock + components: + - pos: 133.5,29.5 + parent: 0 + type: Transform +- uid: 2161 + type: MountainRock + components: + - pos: 134.5,37.5 + parent: 0 + type: Transform +- uid: 2162 + type: MountainRock + components: + - pos: 134.5,36.5 + parent: 0 + type: Transform +- uid: 2163 + type: MountainRock + components: + - pos: 134.5,35.5 + parent: 0 + type: Transform +- uid: 2164 + type: MountainRock + components: + - pos: 134.5,34.5 + parent: 0 + type: Transform +- uid: 2165 + type: MountainRock + components: + - pos: 134.5,33.5 + parent: 0 + type: Transform +- uid: 2166 + type: MountainRock + components: + - pos: 134.5,32.5 + parent: 0 + type: Transform +- uid: 2167 + type: MountainRock + components: + - pos: 134.5,31.5 + parent: 0 + type: Transform +- uid: 2168 + type: MountainRock + components: + - pos: 134.5,30.5 + parent: 0 + type: Transform +- uid: 2169 + type: MountainRock + components: + - pos: 134.5,29.5 + parent: 0 + type: Transform +- uid: 2170 + type: MountainRock + components: + - pos: 135.5,37.5 + parent: 0 + type: Transform +- uid: 2171 + type: MountainRock + components: + - pos: 135.5,36.5 + parent: 0 + type: Transform +- uid: 2172 + type: MountainRock + components: + - pos: 135.5,35.5 + parent: 0 + type: Transform +- uid: 2173 + type: MountainRock + components: + - pos: 135.5,34.5 + parent: 0 + type: Transform +- uid: 2174 + type: MountainRock + components: + - pos: 135.5,33.5 + parent: 0 + type: Transform +- uid: 2175 + type: MountainRock + components: + - pos: 135.5,32.5 + parent: 0 + type: Transform +- uid: 2176 + type: MountainRock + components: + - pos: 135.5,31.5 + parent: 0 + type: Transform +- uid: 2177 + type: MountainRock + components: + - pos: 135.5,30.5 + parent: 0 + type: Transform +- uid: 2178 + type: MountainRock + components: + - pos: 135.5,29.5 + parent: 0 + type: Transform +- uid: 2179 + type: MountainRock + components: + - pos: 136.5,37.5 + parent: 0 + type: Transform +- uid: 2180 + type: MountainRock + components: + - pos: 136.5,36.5 + parent: 0 + type: Transform +- uid: 2181 + type: MountainRock + components: + - pos: 136.5,35.5 + parent: 0 + type: Transform +- uid: 2182 + type: MountainRock + components: + - pos: 136.5,34.5 + parent: 0 + type: Transform +- uid: 2183 + type: MountainRock + components: + - pos: 136.5,33.5 + parent: 0 + type: Transform +- uid: 2184 + type: MountainRock + components: + - pos: 136.5,32.5 + parent: 0 + type: Transform +- uid: 2185 + type: MountainRock + components: + - pos: 136.5,31.5 + parent: 0 + type: Transform +- uid: 2186 + type: MountainRock + components: + - pos: 136.5,30.5 + parent: 0 + type: Transform +- uid: 2187 + type: MountainRock + components: + - pos: 136.5,29.5 + parent: 0 + type: Transform +- uid: 2188 + type: MountainRock + components: + - pos: 137.5,37.5 + parent: 0 + type: Transform +- uid: 2189 + type: MountainRock + components: + - pos: 137.5,36.5 + parent: 0 + type: Transform +- uid: 2190 + type: MountainRock + components: + - pos: 137.5,35.5 + parent: 0 + type: Transform +- uid: 2191 + type: MountainRock + components: + - pos: 137.5,34.5 + parent: 0 + type: Transform +- uid: 2192 + type: MountainRock + components: + - pos: 137.5,33.5 + parent: 0 + type: Transform +- uid: 2193 + type: MountainRock + components: + - pos: 137.5,32.5 + parent: 0 + type: Transform +- uid: 2194 + type: MountainRock + components: + - pos: 137.5,31.5 + parent: 0 + type: Transform +- uid: 2195 + type: MountainRock + components: + - pos: 137.5,30.5 + parent: 0 + type: Transform +- uid: 2196 + type: MountainRock + components: + - pos: 137.5,29.5 + parent: 0 + type: Transform +- uid: 2197 + type: MountainRock + components: + - pos: 138.5,37.5 + parent: 0 + type: Transform +- uid: 2198 + type: MountainRock + components: + - pos: 138.5,36.5 + parent: 0 + type: Transform +- uid: 2199 + type: MountainRock + components: + - pos: 138.5,35.5 + parent: 0 + type: Transform +- uid: 2200 + type: MountainRock + components: + - pos: 138.5,34.5 + parent: 0 + type: Transform +- uid: 2201 + type: MountainRock + components: + - pos: 138.5,33.5 + parent: 0 + type: Transform +- uid: 2202 + type: MountainRock + components: + - pos: 138.5,32.5 + parent: 0 + type: Transform +- uid: 2203 + type: MountainRock + components: + - pos: 138.5,31.5 + parent: 0 + type: Transform +- uid: 2204 + type: MountainRock + components: + - pos: 138.5,30.5 + parent: 0 + type: Transform +- uid: 2205 + type: MountainRock + components: + - pos: 138.5,29.5 + parent: 0 + type: Transform +- uid: 2206 + type: MountainRock + components: + - pos: 139.5,37.5 + parent: 0 + type: Transform +- uid: 2207 + type: MountainRock + components: + - pos: 139.5,36.5 + parent: 0 + type: Transform +- uid: 2208 + type: MountainRock + components: + - pos: 139.5,35.5 + parent: 0 + type: Transform +- uid: 2209 + type: MountainRock + components: + - pos: 139.5,34.5 + parent: 0 + type: Transform +- uid: 2210 + type: MountainRock + components: + - pos: 139.5,33.5 + parent: 0 + type: Transform +- uid: 2211 + type: MountainRock + components: + - pos: 139.5,32.5 + parent: 0 + type: Transform +- uid: 2212 + type: MountainRock + components: + - pos: 139.5,31.5 + parent: 0 + type: Transform +- uid: 2213 + type: MountainRock + components: + - pos: 139.5,30.5 + parent: 0 + type: Transform +- uid: 2214 + type: MountainRock + components: + - pos: 139.5,29.5 + parent: 0 + type: Transform +- uid: 2215 + type: MountainRock + components: + - pos: 140.5,37.5 + parent: 0 + type: Transform +- uid: 2216 + type: MountainRock + components: + - pos: 140.5,36.5 + parent: 0 + type: Transform +- uid: 2217 + type: MountainRock + components: + - pos: 140.5,35.5 + parent: 0 + type: Transform +- uid: 2218 + type: MountainRock + components: + - pos: 140.5,34.5 + parent: 0 + type: Transform +- uid: 2219 + type: MountainRock + components: + - pos: 140.5,33.5 + parent: 0 + type: Transform +- uid: 2220 + type: MountainRock + components: + - pos: 140.5,32.5 + parent: 0 + type: Transform +- uid: 2221 + type: MountainRock + components: + - pos: 140.5,31.5 + parent: 0 + type: Transform +- uid: 2222 + type: MountainRock + components: + - pos: 140.5,30.5 + parent: 0 + type: Transform +- uid: 2223 + type: MountainRock + components: + - pos: 140.5,29.5 + parent: 0 + type: Transform +- uid: 2224 + type: MountainRock + components: + - pos: 141.5,37.5 + parent: 0 + type: Transform +- uid: 2225 + type: MountainRock + components: + - pos: 141.5,36.5 + parent: 0 + type: Transform +- uid: 2226 + type: MountainRock + components: + - pos: 141.5,35.5 + parent: 0 + type: Transform +- uid: 2227 + type: MountainRock + components: + - pos: 141.5,34.5 + parent: 0 + type: Transform +- uid: 2228 + type: MountainRock + components: + - pos: 141.5,33.5 + parent: 0 + type: Transform +- uid: 2229 + type: MountainRock + components: + - pos: 141.5,32.5 + parent: 0 + type: Transform +- uid: 2230 + type: MountainRock + components: + - pos: 141.5,31.5 + parent: 0 + type: Transform +- uid: 2231 + type: MountainRock + components: + - pos: 141.5,30.5 + parent: 0 + type: Transform +- uid: 2232 + type: MountainRock + components: + - pos: 141.5,29.5 + parent: 0 + type: Transform +- uid: 2233 + type: MountainRock + components: + - pos: 142.5,37.5 + parent: 0 + type: Transform +- uid: 2234 + type: MountainRock + components: + - pos: 142.5,36.5 + parent: 0 + type: Transform +- uid: 2235 + type: MountainRock + components: + - pos: 142.5,35.5 + parent: 0 + type: Transform +- uid: 2236 + type: MountainRock + components: + - pos: 142.5,34.5 + parent: 0 + type: Transform +- uid: 2237 + type: MountainRock + components: + - pos: 142.5,33.5 + parent: 0 + type: Transform +- uid: 2238 + type: MountainRock + components: + - pos: 142.5,32.5 + parent: 0 + type: Transform +- uid: 2239 + type: MountainRock + components: + - pos: 142.5,31.5 + parent: 0 + type: Transform +- uid: 2240 + type: MountainRock + components: + - pos: 142.5,30.5 + parent: 0 + type: Transform +- uid: 2241 + type: MountainRock + components: + - pos: 142.5,29.5 + parent: 0 + type: Transform +- uid: 2242 + type: MountainRock + components: + - pos: 143.5,37.5 + parent: 0 + type: Transform +- uid: 2243 + type: MountainRock + components: + - pos: 143.5,36.5 + parent: 0 + type: Transform +- uid: 2244 + type: MountainRock + components: + - pos: 143.5,35.5 + parent: 0 + type: Transform +- uid: 2245 + type: MountainRock + components: + - pos: 143.5,34.5 + parent: 0 + type: Transform +- uid: 2246 + type: MountainRock + components: + - pos: 143.5,33.5 + parent: 0 + type: Transform +- uid: 2247 + type: MountainRock + components: + - pos: 143.5,32.5 + parent: 0 + type: Transform +- uid: 2248 + type: MountainRock + components: + - pos: 143.5,31.5 + parent: 0 + type: Transform +- uid: 2249 + type: MountainRock + components: + - pos: 143.5,30.5 + parent: 0 + type: Transform +- uid: 2250 + type: MountainRock + components: + - pos: 143.5,29.5 + parent: 0 + type: Transform +- uid: 2251 + type: MountainRock + components: + - pos: 144.5,37.5 + parent: 0 + type: Transform +- uid: 2252 + type: MountainRock + components: + - pos: 144.5,36.5 + parent: 0 + type: Transform +- uid: 2253 + type: MountainRock + components: + - pos: 144.5,35.5 + parent: 0 + type: Transform +- uid: 2254 + type: MountainRock + components: + - pos: 144.5,34.5 + parent: 0 + type: Transform +- uid: 2255 + type: MountainRock + components: + - pos: 144.5,33.5 + parent: 0 + type: Transform +- uid: 2256 + type: MountainRock + components: + - pos: 144.5,32.5 + parent: 0 + type: Transform +- uid: 2257 + type: MountainRock + components: + - pos: 144.5,31.5 + parent: 0 + type: Transform +- uid: 2258 + type: MountainRock + components: + - pos: 144.5,30.5 + parent: 0 + type: Transform +- uid: 2259 + type: MountainRock + components: + - pos: 144.5,29.5 + parent: 0 + type: Transform +- uid: 2260 + type: MountainRock + components: + - pos: 145.5,37.5 + parent: 0 + type: Transform +- uid: 2261 + type: MountainRock + components: + - pos: 145.5,36.5 + parent: 0 + type: Transform +- uid: 2262 + type: MountainRock + components: + - pos: 145.5,35.5 + parent: 0 + type: Transform +- uid: 2263 + type: MountainRock + components: + - pos: 145.5,34.5 + parent: 0 + type: Transform +- uid: 2264 + type: MountainRock + components: + - pos: 145.5,33.5 + parent: 0 + type: Transform +- uid: 2265 + type: MountainRock + components: + - pos: 145.5,32.5 + parent: 0 + type: Transform +- uid: 2266 + type: MountainRock + components: + - pos: 145.5,31.5 + parent: 0 + type: Transform +- uid: 2267 + type: MountainRock + components: + - pos: 145.5,30.5 + parent: 0 + type: Transform +- uid: 2268 + type: MountainRock + components: + - pos: 145.5,29.5 + parent: 0 + type: Transform +- uid: 2269 + type: MountainRock + components: + - pos: 146.5,37.5 + parent: 0 + type: Transform +- uid: 2270 + type: MountainRock + components: + - pos: 146.5,36.5 + parent: 0 + type: Transform +- uid: 2271 + type: MountainRock + components: + - pos: 146.5,35.5 + parent: 0 + type: Transform +- uid: 2272 + type: MountainRock + components: + - pos: 146.5,34.5 + parent: 0 + type: Transform +- uid: 2273 + type: MountainRock + components: + - pos: 146.5,33.5 + parent: 0 + type: Transform +- uid: 2274 + type: MountainRock + components: + - pos: 146.5,32.5 + parent: 0 + type: Transform +- uid: 2275 + type: MountainRock + components: + - pos: 146.5,31.5 + parent: 0 + type: Transform +- uid: 2276 + type: MountainRock + components: + - pos: 146.5,30.5 + parent: 0 + type: Transform +- uid: 2277 + type: MountainRock + components: + - pos: 146.5,29.5 + parent: 0 + type: Transform +- uid: 2278 + type: MountainRock + components: + - pos: 147.5,37.5 + parent: 0 + type: Transform +- uid: 2279 + type: MountainRock + components: + - pos: 147.5,36.5 + parent: 0 + type: Transform +- uid: 2280 + type: MountainRock + components: + - pos: 147.5,35.5 + parent: 0 + type: Transform +- uid: 2281 + type: MountainRock + components: + - pos: 147.5,34.5 + parent: 0 + type: Transform +- uid: 2282 + type: MountainRock + components: + - pos: 147.5,33.5 + parent: 0 + type: Transform +- uid: 2283 + type: MountainRock + components: + - pos: 147.5,32.5 + parent: 0 + type: Transform +- uid: 2284 + type: MountainRock + components: + - pos: 147.5,31.5 + parent: 0 + type: Transform +- uid: 2285 + type: MountainRock + components: + - pos: 147.5,30.5 + parent: 0 + type: Transform +- uid: 2286 + type: MountainRock + components: + - pos: 147.5,29.5 + parent: 0 + type: Transform +- uid: 2287 + type: MountainRock + components: + - pos: 148.5,37.5 + parent: 0 + type: Transform +- uid: 2288 + type: MountainRock + components: + - pos: 148.5,36.5 + parent: 0 + type: Transform +- uid: 2289 + type: MountainRock + components: + - pos: 148.5,35.5 + parent: 0 + type: Transform +- uid: 2290 + type: MountainRock + components: + - pos: 148.5,34.5 + parent: 0 + type: Transform +- uid: 2291 + type: MountainRock + components: + - pos: 148.5,33.5 + parent: 0 + type: Transform +- uid: 2292 + type: MountainRock + components: + - pos: 148.5,32.5 + parent: 0 + type: Transform +- uid: 2293 + type: MountainRock + components: + - pos: 148.5,31.5 + parent: 0 + type: Transform +- uid: 2294 + type: MountainRock + components: + - pos: 148.5,30.5 + parent: 0 + type: Transform +- uid: 2295 + type: MountainRock + components: + - pos: 148.5,29.5 + parent: 0 + type: Transform +- uid: 2296 + type: MountainRock + components: + - pos: 149.5,37.5 + parent: 0 + type: Transform +- uid: 2297 + type: MountainRock + components: + - pos: 149.5,36.5 + parent: 0 + type: Transform +- uid: 2298 + type: MountainRock + components: + - pos: 149.5,35.5 + parent: 0 + type: Transform +- uid: 2299 + type: MountainRock + components: + - pos: 149.5,34.5 + parent: 0 + type: Transform +- uid: 2300 + type: MountainRock + components: + - pos: 149.5,33.5 + parent: 0 + type: Transform +- uid: 2301 + type: MountainRock + components: + - pos: 149.5,32.5 + parent: 0 + type: Transform +- uid: 2302 + type: MountainRock + components: + - pos: 149.5,31.5 + parent: 0 + type: Transform +- uid: 2303 + type: MountainRock + components: + - pos: 149.5,30.5 + parent: 0 + type: Transform +- uid: 2304 + type: MountainRock + components: + - pos: 149.5,29.5 + parent: 0 + type: Transform +- uid: 2305 + type: MountainRock + components: + - pos: 150.5,37.5 + parent: 0 + type: Transform +- uid: 2306 + type: MountainRock + components: + - pos: 150.5,36.5 + parent: 0 + type: Transform +- uid: 2307 + type: MountainRock + components: + - pos: 150.5,35.5 + parent: 0 + type: Transform +- uid: 2308 + type: MountainRock + components: + - pos: 150.5,34.5 + parent: 0 + type: Transform +- uid: 2309 + type: MountainRock + components: + - pos: 150.5,33.5 + parent: 0 + type: Transform +- uid: 2310 + type: MountainRock + components: + - pos: 150.5,32.5 + parent: 0 + type: Transform +- uid: 2311 + type: MountainRock + components: + - pos: 150.5,31.5 + parent: 0 + type: Transform +- uid: 2312 + type: MountainRock + components: + - pos: 150.5,30.5 + parent: 0 + type: Transform +- uid: 2313 + type: MountainRock + components: + - pos: 150.5,29.5 + parent: 0 + type: Transform +- uid: 2314 + type: MountainRock + components: + - pos: 151.5,37.5 + parent: 0 + type: Transform +- uid: 2315 + type: MountainRock + components: + - pos: 151.5,36.5 + parent: 0 + type: Transform +- uid: 2316 + type: MountainRock + components: + - pos: 151.5,35.5 + parent: 0 + type: Transform +- uid: 2317 + type: MountainRock + components: + - pos: 151.5,34.5 + parent: 0 + type: Transform +- uid: 2318 + type: MountainRock + components: + - pos: 151.5,33.5 + parent: 0 + type: Transform +- uid: 2319 + type: MountainRock + components: + - pos: 151.5,32.5 + parent: 0 + type: Transform +- uid: 2320 + type: MountainRock + components: + - pos: 151.5,31.5 + parent: 0 + type: Transform +- uid: 2321 + type: MountainRock + components: + - pos: 151.5,30.5 + parent: 0 + type: Transform +- uid: 2322 + type: MountainRock + components: + - pos: 151.5,29.5 + parent: 0 + type: Transform +- uid: 2323 + type: MountainRock + components: + - pos: 152.5,37.5 + parent: 0 + type: Transform +- uid: 2324 + type: MountainRock + components: + - pos: 152.5,36.5 + parent: 0 + type: Transform +- uid: 2325 + type: MountainRock + components: + - pos: 152.5,35.5 + parent: 0 + type: Transform +- uid: 2326 + type: MountainRock + components: + - pos: 152.5,34.5 + parent: 0 + type: Transform +- uid: 2327 + type: MountainRock + components: + - pos: 152.5,33.5 + parent: 0 + type: Transform +- uid: 2328 + type: MountainRock + components: + - pos: 152.5,32.5 + parent: 0 + type: Transform +- uid: 2329 + type: MountainRock + components: + - pos: 152.5,31.5 + parent: 0 + type: Transform +- uid: 2330 + type: MountainRock + components: + - pos: 152.5,30.5 + parent: 0 + type: Transform +- uid: 2331 + type: MountainRock + components: + - pos: 152.5,29.5 + parent: 0 + type: Transform +- uid: 2332 + type: MountainRock + components: + - pos: 153.5,37.5 + parent: 0 + type: Transform +- uid: 2333 + type: MountainRock + components: + - pos: 153.5,36.5 + parent: 0 + type: Transform +- uid: 2334 + type: MountainRock + components: + - pos: 153.5,35.5 + parent: 0 + type: Transform +- uid: 2335 + type: MountainRock + components: + - pos: 153.5,34.5 + parent: 0 + type: Transform +- uid: 2336 + type: MountainRock + components: + - pos: 153.5,33.5 + parent: 0 + type: Transform +- uid: 2337 + type: MountainRock + components: + - pos: 153.5,32.5 + parent: 0 + type: Transform +- uid: 2338 + type: MountainRock + components: + - pos: 153.5,31.5 + parent: 0 + type: Transform +- uid: 2339 + type: MountainRock + components: + - pos: 153.5,30.5 + parent: 0 + type: Transform +- uid: 2340 + type: MountainRock + components: + - pos: 153.5,29.5 + parent: 0 + type: Transform +- uid: 2341 + type: MountainRock + components: + - pos: 154.5,37.5 + parent: 0 + type: Transform +- uid: 2342 + type: MountainRock + components: + - pos: 154.5,36.5 + parent: 0 + type: Transform +- uid: 2343 + type: MountainRock + components: + - pos: 154.5,35.5 + parent: 0 + type: Transform +- uid: 2344 + type: MountainRock + components: + - pos: 154.5,34.5 + parent: 0 + type: Transform +- uid: 2345 + type: MountainRock + components: + - pos: 154.5,33.5 + parent: 0 + type: Transform +- uid: 2346 + type: MountainRock + components: + - pos: 154.5,32.5 + parent: 0 + type: Transform +- uid: 2347 + type: MountainRock + components: + - pos: 154.5,31.5 + parent: 0 + type: Transform +- uid: 2348 + type: MountainRock + components: + - pos: 154.5,30.5 + parent: 0 + type: Transform +- uid: 2349 + type: MountainRock + components: + - pos: 154.5,29.5 + parent: 0 + type: Transform +- uid: 2350 + type: MountainRock + components: + - pos: 155.5,37.5 + parent: 0 + type: Transform +- uid: 2351 + type: MountainRock + components: + - pos: 155.5,36.5 + parent: 0 + type: Transform +- uid: 2352 + type: MountainRock + components: + - pos: 155.5,35.5 + parent: 0 + type: Transform +- uid: 2353 + type: MountainRock + components: + - pos: 155.5,34.5 + parent: 0 + type: Transform +- uid: 2354 + type: MountainRock + components: + - pos: 155.5,33.5 + parent: 0 + type: Transform +- uid: 2355 + type: MountainRock + components: + - pos: 155.5,32.5 + parent: 0 + type: Transform +- uid: 2356 + type: MountainRock + components: + - pos: 155.5,31.5 + parent: 0 + type: Transform +- uid: 2357 + type: MountainRock + components: + - pos: 155.5,30.5 + parent: 0 + type: Transform +- uid: 2358 + type: MountainRock + components: + - pos: 155.5,29.5 + parent: 0 + type: Transform +- uid: 2359 + type: MountainRock + components: + - pos: 156.5,37.5 + parent: 0 + type: Transform +- uid: 2360 + type: MountainRock + components: + - pos: 156.5,36.5 + parent: 0 + type: Transform +- uid: 2361 + type: MountainRock + components: + - pos: 156.5,35.5 + parent: 0 + type: Transform +- uid: 2362 + type: MountainRock + components: + - pos: 156.5,34.5 + parent: 0 + type: Transform +- uid: 2363 + type: MountainRock + components: + - pos: 156.5,33.5 + parent: 0 + type: Transform +- uid: 2364 + type: MountainRock + components: + - pos: 156.5,32.5 + parent: 0 + type: Transform +- uid: 2365 + type: MountainRock + components: + - pos: 156.5,31.5 + parent: 0 + type: Transform +- uid: 2366 + type: MountainRock + components: + - pos: 156.5,30.5 + parent: 0 + type: Transform +- uid: 2367 + type: MountainRock + components: + - pos: 156.5,29.5 + parent: 0 + type: Transform +- uid: 2368 + type: MountainRock + components: + - pos: 157.5,37.5 + parent: 0 + type: Transform +- uid: 2369 + type: MountainRock + components: + - pos: 157.5,36.5 + parent: 0 + type: Transform +- uid: 2370 + type: MountainRock + components: + - pos: 157.5,35.5 + parent: 0 + type: Transform +- uid: 2371 + type: MountainRock + components: + - pos: 157.5,34.5 + parent: 0 + type: Transform +- uid: 2372 + type: MountainRock + components: + - pos: 157.5,33.5 + parent: 0 + type: Transform +- uid: 2373 + type: MountainRock + components: + - pos: 157.5,32.5 + parent: 0 + type: Transform +- uid: 2374 + type: MountainRock + components: + - pos: 157.5,31.5 + parent: 0 + type: Transform +- uid: 2375 + type: MountainRock + components: + - pos: 157.5,30.5 + parent: 0 + type: Transform +- uid: 2376 + type: MountainRock + components: + - pos: 157.5,29.5 + parent: 0 + type: Transform +- uid: 2377 + type: MountainRock + components: + - pos: 158.5,37.5 + parent: 0 + type: Transform +- uid: 2378 + type: MountainRock + components: + - pos: 158.5,36.5 + parent: 0 + type: Transform +- uid: 2379 + type: MountainRock + components: + - pos: 158.5,35.5 + parent: 0 + type: Transform +- uid: 2380 + type: MountainRock + components: + - pos: 158.5,34.5 + parent: 0 + type: Transform +- uid: 2381 + type: MountainRock + components: + - pos: 158.5,33.5 + parent: 0 + type: Transform +- uid: 2382 + type: MountainRock + components: + - pos: 158.5,32.5 + parent: 0 + type: Transform +- uid: 2383 + type: MountainRock + components: + - pos: 158.5,31.5 + parent: 0 + type: Transform +- uid: 2384 + type: MountainRock + components: + - pos: 158.5,30.5 + parent: 0 + type: Transform +- uid: 2385 + type: MountainRock + components: + - pos: 158.5,29.5 + parent: 0 + type: Transform +- uid: 2386 + type: MountainRock + components: + - pos: 159.5,37.5 + parent: 0 + type: Transform +- uid: 2387 + type: MountainRock + components: + - pos: 159.5,36.5 + parent: 0 + type: Transform +- uid: 2388 + type: MountainRock + components: + - pos: 159.5,35.5 + parent: 0 + type: Transform +- uid: 2389 + type: MountainRock + components: + - pos: 159.5,34.5 + parent: 0 + type: Transform +- uid: 2390 + type: MountainRock + components: + - pos: 159.5,33.5 + parent: 0 + type: Transform +- uid: 2391 + type: MountainRock + components: + - pos: 159.5,32.5 + parent: 0 + type: Transform +- uid: 2392 + type: MountainRock + components: + - pos: 159.5,31.5 + parent: 0 + type: Transform +- uid: 2393 + type: MountainRock + components: + - pos: 159.5,30.5 + parent: 0 + type: Transform +- uid: 2394 + type: MountainRock + components: + - pos: 159.5,29.5 + parent: 0 + type: Transform +- uid: 2395 + type: MountainRock + components: + - pos: 160.5,37.5 + parent: 0 + type: Transform +- uid: 2396 + type: MountainRock + components: + - pos: 160.5,36.5 + parent: 0 + type: Transform +- uid: 2397 + type: MountainRock + components: + - pos: 160.5,35.5 + parent: 0 + type: Transform +- uid: 2398 + type: MountainRock + components: + - pos: 160.5,34.5 + parent: 0 + type: Transform +- uid: 2399 + type: MountainRock + components: + - pos: 160.5,33.5 + parent: 0 + type: Transform +- uid: 2400 + type: MountainRock + components: + - pos: 160.5,32.5 + parent: 0 + type: Transform +- uid: 2401 + type: MountainRock + components: + - pos: 160.5,31.5 + parent: 0 + type: Transform +- uid: 2402 + type: MountainRock + components: + - pos: 160.5,30.5 + parent: 0 + type: Transform +- uid: 2403 + type: MountainRock + components: + - pos: 160.5,29.5 + parent: 0 + type: Transform +- uid: 2404 + type: MountainRock + components: + - pos: 161.5,37.5 + parent: 0 + type: Transform +- uid: 2405 + type: MountainRock + components: + - pos: 161.5,36.5 + parent: 0 + type: Transform +- uid: 2406 + type: MountainRock + components: + - pos: 161.5,35.5 + parent: 0 + type: Transform +- uid: 2407 + type: MountainRock + components: + - pos: 161.5,34.5 + parent: 0 + type: Transform +- uid: 2408 + type: MountainRock + components: + - pos: 161.5,33.5 + parent: 0 + type: Transform +- uid: 2409 + type: MountainRock + components: + - pos: 161.5,32.5 + parent: 0 + type: Transform +- uid: 2410 + type: MountainRock + components: + - pos: 161.5,31.5 + parent: 0 + type: Transform +- uid: 2411 + type: MountainRock + components: + - pos: 161.5,30.5 + parent: 0 + type: Transform +- uid: 2412 + type: MountainRock + components: + - pos: 161.5,29.5 + parent: 0 + type: Transform +- uid: 2413 + type: MountainRock + components: + - pos: 162.5,37.5 + parent: 0 + type: Transform +- uid: 2414 + type: MountainRock + components: + - pos: 162.5,36.5 + parent: 0 + type: Transform +- uid: 2415 + type: MountainRock + components: + - pos: 162.5,35.5 + parent: 0 + type: Transform +- uid: 2416 + type: MountainRock + components: + - pos: 162.5,34.5 + parent: 0 + type: Transform +- uid: 2417 + type: MountainRock + components: + - pos: 162.5,33.5 + parent: 0 + type: Transform +- uid: 2418 + type: MountainRock + components: + - pos: 162.5,32.5 + parent: 0 + type: Transform +- uid: 2419 + type: MountainRock + components: + - pos: 162.5,31.5 + parent: 0 + type: Transform +- uid: 2420 + type: MountainRock + components: + - pos: 162.5,30.5 + parent: 0 + type: Transform +- uid: 2421 + type: MountainRock + components: + - pos: 162.5,29.5 + parent: 0 + type: Transform +- uid: 2422 + type: MountainRock + components: + - pos: 163.5,37.5 + parent: 0 + type: Transform +- uid: 2423 + type: MountainRock + components: + - pos: 163.5,36.5 + parent: 0 + type: Transform +- uid: 2424 + type: MountainRock + components: + - pos: 163.5,35.5 + parent: 0 + type: Transform +- uid: 2425 + type: MountainRock + components: + - pos: 163.5,34.5 + parent: 0 + type: Transform +- uid: 2426 + type: MountainRock + components: + - pos: 163.5,33.5 + parent: 0 + type: Transform +- uid: 2427 + type: MountainRock + components: + - pos: 163.5,32.5 + parent: 0 + type: Transform +- uid: 2428 + type: MountainRock + components: + - pos: 163.5,31.5 + parent: 0 + type: Transform +- uid: 2429 + type: MountainRock + components: + - pos: 163.5,30.5 + parent: 0 + type: Transform +- uid: 2430 + type: MountainRock + components: + - pos: 163.5,29.5 + parent: 0 + type: Transform +- uid: 2431 + type: MountainRock + components: + - pos: 164.5,37.5 + parent: 0 + type: Transform +- uid: 2432 + type: MountainRock + components: + - pos: 164.5,36.5 + parent: 0 + type: Transform +- uid: 2433 + type: MountainRock + components: + - pos: 164.5,35.5 + parent: 0 + type: Transform +- uid: 2434 + type: MountainRock + components: + - pos: 164.5,34.5 + parent: 0 + type: Transform +- uid: 2435 + type: MountainRock + components: + - pos: 164.5,33.5 + parent: 0 + type: Transform +- uid: 2436 + type: MountainRock + components: + - pos: 164.5,32.5 + parent: 0 + type: Transform +- uid: 2437 + type: MountainRock + components: + - pos: 164.5,31.5 + parent: 0 + type: Transform +- uid: 2438 + type: MountainRock + components: + - pos: 164.5,30.5 + parent: 0 + type: Transform +- uid: 2439 + type: MountainRock + components: + - pos: 164.5,29.5 + parent: 0 + type: Transform +- uid: 2440 + type: MountainRock + components: + - pos: 165.5,37.5 + parent: 0 + type: Transform +- uid: 2441 + type: MountainRock + components: + - pos: 165.5,36.5 + parent: 0 + type: Transform +- uid: 2442 + type: MountainRock + components: + - pos: 165.5,35.5 + parent: 0 + type: Transform +- uid: 2443 + type: MountainRock + components: + - pos: 165.5,34.5 + parent: 0 + type: Transform +- uid: 2444 + type: MountainRock + components: + - pos: 165.5,33.5 + parent: 0 + type: Transform +- uid: 2445 + type: MountainRock + components: + - pos: 165.5,32.5 + parent: 0 + type: Transform +- uid: 2446 + type: MountainRock + components: + - pos: 165.5,31.5 + parent: 0 + type: Transform +- uid: 2447 + type: MountainRock + components: + - pos: 165.5,30.5 + parent: 0 + type: Transform +- uid: 2448 + type: MountainRock + components: + - pos: 165.5,29.5 + parent: 0 + type: Transform +- uid: 2449 + type: MountainRock + components: + - pos: 166.5,37.5 + parent: 0 + type: Transform +- uid: 2450 + type: MountainRock + components: + - pos: 166.5,36.5 + parent: 0 + type: Transform +- uid: 2451 + type: MountainRock + components: + - pos: 166.5,35.5 + parent: 0 + type: Transform +- uid: 2452 + type: MountainRock + components: + - pos: 166.5,34.5 + parent: 0 + type: Transform +- uid: 2453 + type: MountainRock + components: + - pos: 166.5,33.5 + parent: 0 + type: Transform +- uid: 2454 + type: MountainRock + components: + - pos: 166.5,32.5 + parent: 0 + type: Transform +- uid: 2455 + type: MountainRock + components: + - pos: 166.5,31.5 + parent: 0 + type: Transform +- uid: 2456 + type: MountainRock + components: + - pos: 166.5,30.5 + parent: 0 + type: Transform +- uid: 2457 + type: MountainRock + components: + - pos: 166.5,29.5 + parent: 0 + type: Transform +- uid: 2458 + type: MountainRock + components: + - pos: 167.5,37.5 + parent: 0 + type: Transform +- uid: 2459 + type: MountainRock + components: + - pos: 167.5,36.5 + parent: 0 + type: Transform +- uid: 2460 + type: MountainRock + components: + - pos: 167.5,35.5 + parent: 0 + type: Transform +- uid: 2461 + type: MountainRock + components: + - pos: 167.5,34.5 + parent: 0 + type: Transform +- uid: 2462 + type: MountainRock + components: + - pos: 167.5,33.5 + parent: 0 + type: Transform +- uid: 2463 + type: MountainRock + components: + - pos: 167.5,32.5 + parent: 0 + type: Transform +- uid: 2464 + type: MountainRock + components: + - pos: 167.5,31.5 + parent: 0 + type: Transform +- uid: 2465 + type: MountainRock + components: + - pos: 167.5,30.5 + parent: 0 + type: Transform +- uid: 2466 + type: MountainRock + components: + - pos: 167.5,29.5 + parent: 0 + type: Transform +- uid: 2467 + type: MountainRock + components: + - pos: 168.5,37.5 + parent: 0 + type: Transform +- uid: 2468 + type: MountainRock + components: + - pos: 168.5,36.5 + parent: 0 + type: Transform +- uid: 2469 + type: MountainRock + components: + - pos: 168.5,35.5 + parent: 0 + type: Transform +- uid: 2470 + type: MountainRock + components: + - pos: 168.5,34.5 + parent: 0 + type: Transform +- uid: 2471 + type: MountainRock + components: + - pos: 168.5,33.5 + parent: 0 + type: Transform +- uid: 2472 + type: MountainRock + components: + - pos: 168.5,32.5 + parent: 0 + type: Transform +- uid: 2473 + type: MountainRock + components: + - pos: 168.5,31.5 + parent: 0 + type: Transform +- uid: 2474 + type: MountainRock + components: + - pos: 168.5,30.5 + parent: 0 + type: Transform +- uid: 2475 + type: MountainRock + components: + - pos: 168.5,29.5 + parent: 0 + type: Transform +- uid: 2476 + type: MountainRock + components: + - pos: 169.5,37.5 + parent: 0 + type: Transform +- uid: 2477 + type: MountainRock + components: + - pos: 169.5,36.5 + parent: 0 + type: Transform +- uid: 2478 + type: MountainRock + components: + - pos: 169.5,35.5 + parent: 0 + type: Transform +- uid: 2479 + type: MountainRock + components: + - pos: 169.5,34.5 + parent: 0 + type: Transform +- uid: 2480 + type: MountainRock + components: + - pos: 169.5,33.5 + parent: 0 + type: Transform +- uid: 2481 + type: MountainRock + components: + - pos: 169.5,32.5 + parent: 0 + type: Transform +- uid: 2482 + type: MountainRock + components: + - pos: 169.5,31.5 + parent: 0 + type: Transform +- uid: 2483 + type: MountainRock + components: + - pos: 169.5,30.5 + parent: 0 + type: Transform +- uid: 2484 + type: MountainRock + components: + - pos: 169.5,29.5 + parent: 0 + type: Transform +- uid: 2485 + type: MountainRock + components: + - pos: 170.5,37.5 + parent: 0 + type: Transform +- uid: 2486 + type: MountainRock + components: + - pos: 170.5,36.5 + parent: 0 + type: Transform +- uid: 2487 + type: MountainRock + components: + - pos: 170.5,35.5 + parent: 0 + type: Transform +- uid: 2488 + type: MountainRock + components: + - pos: 170.5,34.5 + parent: 0 + type: Transform +- uid: 2489 + type: MountainRock + components: + - pos: 170.5,33.5 + parent: 0 + type: Transform +- uid: 2490 + type: MountainRock + components: + - pos: 170.5,32.5 + parent: 0 + type: Transform +- uid: 2491 + type: MountainRock + components: + - pos: 170.5,31.5 + parent: 0 + type: Transform +- uid: 2492 + type: MountainRock + components: + - pos: 170.5,30.5 + parent: 0 + type: Transform +- uid: 2493 + type: MountainRock + components: + - pos: 170.5,29.5 + parent: 0 + type: Transform +- uid: 2494 + type: MountainRock + components: + - pos: 171.5,37.5 + parent: 0 + type: Transform +- uid: 2495 + type: MountainRock + components: + - pos: 171.5,36.5 + parent: 0 + type: Transform +- uid: 2496 + type: MountainRock + components: + - pos: 171.5,35.5 + parent: 0 + type: Transform +- uid: 2497 + type: MountainRock + components: + - pos: 171.5,34.5 + parent: 0 + type: Transform +- uid: 2498 + type: MountainRock + components: + - pos: 171.5,33.5 + parent: 0 + type: Transform +- uid: 2499 + type: MountainRock + components: + - pos: 171.5,32.5 + parent: 0 + type: Transform +- uid: 2500 + type: MountainRock + components: + - pos: 171.5,31.5 + parent: 0 + type: Transform +- uid: 2501 + type: MountainRock + components: + - pos: 171.5,30.5 + parent: 0 + type: Transform +- uid: 2502 + type: MountainRock + components: + - pos: 171.5,29.5 + parent: 0 + type: Transform +- uid: 2503 + type: MountainRock + components: + - pos: 172.5,37.5 + parent: 0 + type: Transform +- uid: 2504 + type: MountainRock + components: + - pos: 172.5,36.5 + parent: 0 + type: Transform +- uid: 2505 + type: MountainRock + components: + - pos: 172.5,35.5 + parent: 0 + type: Transform +- uid: 2506 + type: MountainRock + components: + - pos: 172.5,34.5 + parent: 0 + type: Transform +- uid: 2507 + type: MountainRock + components: + - pos: 172.5,33.5 + parent: 0 + type: Transform +- uid: 2508 + type: MountainRock + components: + - pos: 172.5,32.5 + parent: 0 + type: Transform +- uid: 2509 + type: MountainRock + components: + - pos: 172.5,31.5 + parent: 0 + type: Transform +- uid: 2510 + type: MountainRock + components: + - pos: 172.5,30.5 + parent: 0 + type: Transform +- uid: 2511 + type: MountainRock + components: + - pos: 172.5,29.5 + parent: 0 + type: Transform +- uid: 2512 + type: MountainRock + components: + - pos: 173.5,37.5 + parent: 0 + type: Transform +- uid: 2513 + type: MountainRock + components: + - pos: 173.5,36.5 + parent: 0 + type: Transform +- uid: 2514 + type: MountainRock + components: + - pos: 173.5,35.5 + parent: 0 + type: Transform +- uid: 2515 + type: MountainRock + components: + - pos: 173.5,34.5 + parent: 0 + type: Transform +- uid: 2516 + type: MountainRock + components: + - pos: 173.5,33.5 + parent: 0 + type: Transform +- uid: 2517 + type: MountainRock + components: + - pos: 173.5,32.5 + parent: 0 + type: Transform +- uid: 2518 + type: MountainRock + components: + - pos: 173.5,31.5 + parent: 0 + type: Transform +- uid: 2519 + type: MountainRock + components: + - pos: 173.5,30.5 + parent: 0 + type: Transform +- uid: 2520 + type: MountainRock + components: + - pos: 173.5,29.5 + parent: 0 + type: Transform +- uid: 2521 + type: MountainRock + components: + - pos: 174.5,37.5 + parent: 0 + type: Transform +- uid: 2522 + type: MountainRock + components: + - pos: 174.5,36.5 + parent: 0 + type: Transform +- uid: 2523 + type: MountainRock + components: + - pos: 174.5,35.5 + parent: 0 + type: Transform +- uid: 2524 + type: MountainRock + components: + - pos: 174.5,34.5 + parent: 0 + type: Transform +- uid: 2525 + type: MountainRock + components: + - pos: 174.5,33.5 + parent: 0 + type: Transform +- uid: 2526 + type: MountainRock + components: + - pos: 174.5,32.5 + parent: 0 + type: Transform +- uid: 2527 + type: MountainRock + components: + - pos: 174.5,31.5 + parent: 0 + type: Transform +- uid: 2528 + type: MountainRock + components: + - pos: 174.5,30.5 + parent: 0 + type: Transform +- uid: 2529 + type: MountainRock + components: + - pos: 174.5,29.5 + parent: 0 + type: Transform +- uid: 2530 + type: MountainRock + components: + - pos: 175.5,37.5 + parent: 0 + type: Transform +- uid: 2531 + type: MountainRock + components: + - pos: 175.5,36.5 + parent: 0 + type: Transform +- uid: 2532 + type: MountainRock + components: + - pos: 175.5,35.5 + parent: 0 + type: Transform +- uid: 2533 + type: MountainRock + components: + - pos: 175.5,34.5 + parent: 0 + type: Transform +- uid: 2534 + type: MountainRock + components: + - pos: 175.5,33.5 + parent: 0 + type: Transform +- uid: 2535 + type: MountainRock + components: + - pos: 175.5,32.5 + parent: 0 + type: Transform +- uid: 2536 + type: MountainRock + components: + - pos: 175.5,31.5 + parent: 0 + type: Transform +- uid: 2537 + type: MountainRock + components: + - pos: 175.5,30.5 + parent: 0 + type: Transform +- uid: 2538 + type: MountainRock + components: + - pos: 175.5,29.5 + parent: 0 + type: Transform +- uid: 2539 + type: MountainRock + components: + - pos: 176.5,37.5 + parent: 0 + type: Transform +- uid: 2540 + type: MountainRock + components: + - pos: 176.5,36.5 + parent: 0 + type: Transform +- uid: 2541 + type: MountainRock + components: + - pos: 176.5,35.5 + parent: 0 + type: Transform +- uid: 2542 + type: MountainRock + components: + - pos: 176.5,34.5 + parent: 0 + type: Transform +- uid: 2543 + type: MountainRock + components: + - pos: 176.5,33.5 + parent: 0 + type: Transform +- uid: 2544 + type: MountainRock + components: + - pos: 176.5,32.5 + parent: 0 + type: Transform +- uid: 2545 + type: MountainRock + components: + - pos: 176.5,31.5 + parent: 0 + type: Transform +- uid: 2546 + type: MountainRock + components: + - pos: 176.5,30.5 + parent: 0 + type: Transform +- uid: 2547 + type: MountainRock + components: + - pos: 176.5,29.5 + parent: 0 + type: Transform +- uid: 2548 + type: MountainRock + components: + - pos: 177.5,37.5 + parent: 0 + type: Transform +- uid: 2549 + type: MountainRock + components: + - pos: 177.5,36.5 + parent: 0 + type: Transform +- uid: 2550 + type: MountainRock + components: + - pos: 177.5,35.5 + parent: 0 + type: Transform +- uid: 2551 + type: MountainRock + components: + - pos: 177.5,34.5 + parent: 0 + type: Transform +- uid: 2552 + type: MountainRock + components: + - pos: 177.5,33.5 + parent: 0 + type: Transform +- uid: 2553 + type: MountainRock + components: + - pos: 177.5,32.5 + parent: 0 + type: Transform +- uid: 2554 + type: MountainRock + components: + - pos: 177.5,31.5 + parent: 0 + type: Transform +- uid: 2555 + type: MountainRock + components: + - pos: 177.5,30.5 + parent: 0 + type: Transform +- uid: 2556 + type: MountainRock + components: + - pos: 177.5,29.5 + parent: 0 + type: Transform +- uid: 2557 + type: MountainRock + components: + - pos: 178.5,37.5 + parent: 0 + type: Transform +- uid: 2558 + type: MountainRock + components: + - pos: 178.5,36.5 + parent: 0 + type: Transform +- uid: 2559 + type: MountainRock + components: + - pos: 178.5,35.5 + parent: 0 + type: Transform +- uid: 2560 + type: MountainRock + components: + - pos: 178.5,34.5 + parent: 0 + type: Transform +- uid: 2561 + type: MountainRock + components: + - pos: 178.5,33.5 + parent: 0 + type: Transform +- uid: 2562 + type: MountainRock + components: + - pos: 178.5,32.5 + parent: 0 + type: Transform +- uid: 2563 + type: MountainRock + components: + - pos: 178.5,31.5 + parent: 0 + type: Transform +- uid: 2564 + type: MountainRock + components: + - pos: 178.5,30.5 + parent: 0 + type: Transform +- uid: 2565 + type: MountainRock + components: + - pos: 178.5,29.5 + parent: 0 + type: Transform +- uid: 2566 + type: MountainRock + components: + - pos: 179.5,37.5 + parent: 0 + type: Transform +- uid: 2567 + type: MountainRock + components: + - pos: 179.5,36.5 + parent: 0 + type: Transform +- uid: 2568 + type: MountainRock + components: + - pos: 179.5,35.5 + parent: 0 + type: Transform +- uid: 2569 + type: MountainRock + components: + - pos: 179.5,34.5 + parent: 0 + type: Transform +- uid: 2570 + type: MountainRock + components: + - pos: 179.5,33.5 + parent: 0 + type: Transform +- uid: 2571 + type: MountainRock + components: + - pos: 179.5,32.5 + parent: 0 + type: Transform +- uid: 2572 + type: MountainRock + components: + - pos: 179.5,31.5 + parent: 0 + type: Transform +- uid: 2573 + type: MountainRock + components: + - pos: 179.5,30.5 + parent: 0 + type: Transform +- uid: 2574 + type: MountainRock + components: + - pos: 179.5,29.5 + parent: 0 + type: Transform +- uid: 2575 + type: MountainRock + components: + - pos: 180.5,37.5 + parent: 0 + type: Transform +- uid: 2576 + type: MountainRock + components: + - pos: 180.5,36.5 + parent: 0 + type: Transform +- uid: 2577 + type: MountainRock + components: + - pos: 180.5,35.5 + parent: 0 + type: Transform +- uid: 2578 + type: MountainRock + components: + - pos: 180.5,34.5 + parent: 0 + type: Transform +- uid: 2579 + type: MountainRock + components: + - pos: 180.5,33.5 + parent: 0 + type: Transform +- uid: 2580 + type: MountainRock + components: + - pos: 180.5,32.5 + parent: 0 + type: Transform +- uid: 2581 + type: MountainRock + components: + - pos: 180.5,31.5 + parent: 0 + type: Transform +- uid: 2582 + type: MountainRock + components: + - pos: 180.5,30.5 + parent: 0 + type: Transform +- uid: 2583 + type: MountainRock + components: + - pos: 180.5,29.5 + parent: 0 + type: Transform +- uid: 2584 + type: MountainRock + components: + - pos: 181.5,37.5 + parent: 0 + type: Transform +- uid: 2585 + type: MountainRock + components: + - pos: 181.5,36.5 + parent: 0 + type: Transform +- uid: 2586 + type: MountainRock + components: + - pos: 181.5,35.5 + parent: 0 + type: Transform +- uid: 2587 + type: MountainRock + components: + - pos: 181.5,34.5 + parent: 0 + type: Transform +- uid: 2588 + type: MountainRock + components: + - pos: 181.5,33.5 + parent: 0 + type: Transform +- uid: 2589 + type: MountainRock + components: + - pos: 181.5,32.5 + parent: 0 + type: Transform +- uid: 2590 + type: MountainRock + components: + - pos: 181.5,31.5 + parent: 0 + type: Transform +- uid: 2591 + type: MountainRock + components: + - pos: 181.5,30.5 + parent: 0 + type: Transform +- uid: 2592 + type: MountainRock + components: + - pos: 181.5,29.5 + parent: 0 + type: Transform +- uid: 2593 + type: MountainRock + components: + - pos: 182.5,37.5 + parent: 0 + type: Transform +- uid: 2594 + type: MountainRock + components: + - pos: 182.5,36.5 + parent: 0 + type: Transform +- uid: 2595 + type: MountainRock + components: + - pos: 182.5,35.5 + parent: 0 + type: Transform +- uid: 2596 + type: MountainRock + components: + - pos: 182.5,34.5 + parent: 0 + type: Transform +- uid: 2597 + type: MountainRock + components: + - pos: 182.5,33.5 + parent: 0 + type: Transform +- uid: 2598 + type: MountainRock + components: + - pos: 182.5,32.5 + parent: 0 + type: Transform +- uid: 2599 + type: MountainRock + components: + - pos: 182.5,31.5 + parent: 0 + type: Transform +- uid: 2600 + type: MountainRock + components: + - pos: 182.5,30.5 + parent: 0 + type: Transform +- uid: 2601 + type: MountainRock + components: + - pos: 182.5,29.5 + parent: 0 + type: Transform +- uid: 2602 + type: MountainRock + components: + - pos: 182.5,39.5 + parent: 0 + type: Transform +- uid: 2603 + type: MountainRock + components: + - pos: 182.5,38.5 + parent: 0 + type: Transform +- uid: 2604 + type: MountainRock + components: + - pos: 181.5,39.5 + parent: 0 + type: Transform +- uid: 2605 + type: MountainRock + components: + - pos: 181.5,38.5 + parent: 0 + type: Transform +- uid: 2606 + type: MountainRock + components: + - pos: 180.5,39.5 + parent: 0 + type: Transform +- uid: 2607 + type: MountainRock + components: + - pos: 180.5,38.5 + parent: 0 + type: Transform +- uid: 2608 + type: MountainRock + components: + - pos: 179.5,39.5 + parent: 0 + type: Transform +- uid: 2609 + type: MountainRock + components: + - pos: 179.5,38.5 + parent: 0 + type: Transform +- uid: 2610 + type: MountainRock + components: + - pos: 178.5,39.5 + parent: 0 + type: Transform +- uid: 2611 + type: MountainRock + components: + - pos: 178.5,38.5 + parent: 0 + type: Transform +- uid: 2612 + type: MountainRock + components: + - pos: 177.5,39.5 + parent: 0 + type: Transform +- uid: 2613 + type: MountainRock + components: + - pos: 177.5,38.5 + parent: 0 + type: Transform +- uid: 2614 + type: MountainRock + components: + - pos: 176.5,39.5 + parent: 0 + type: Transform +- uid: 2615 + type: MountainRock + components: + - pos: 176.5,38.5 + parent: 0 + type: Transform +- uid: 2616 + type: MountainRock + components: + - pos: 175.5,39.5 + parent: 0 + type: Transform +- uid: 2617 + type: MountainRock + components: + - pos: 175.5,38.5 + parent: 0 + type: Transform +- uid: 2618 + type: MountainRock + components: + - pos: 174.5,39.5 + parent: 0 + type: Transform +- uid: 2619 + type: MountainRock + components: + - pos: 174.5,38.5 + parent: 0 + type: Transform +- uid: 2620 + type: MountainRock + components: + - pos: 173.5,39.5 + parent: 0 + type: Transform +- uid: 2621 + type: MountainRock + components: + - pos: 173.5,38.5 + parent: 0 + type: Transform +- uid: 2622 + type: MountainRock + components: + - pos: 172.5,39.5 + parent: 0 + type: Transform +- uid: 2623 + type: MountainRock + components: + - pos: 172.5,38.5 + parent: 0 + type: Transform +- uid: 2624 + type: MountainRock + components: + - pos: 171.5,39.5 + parent: 0 + type: Transform +- uid: 2625 + type: MountainRock + components: + - pos: 171.5,38.5 + parent: 0 + type: Transform +- uid: 2626 + type: MountainRock + components: + - pos: 170.5,39.5 + parent: 0 + type: Transform +- uid: 2627 + type: MountainRock + components: + - pos: 170.5,38.5 + parent: 0 + type: Transform +- uid: 2628 + type: MountainRock + components: + - pos: 169.5,39.5 + parent: 0 + type: Transform +- uid: 2629 + type: MountainRock + components: + - pos: 169.5,38.5 + parent: 0 + type: Transform +- uid: 2630 + type: MountainRock + components: + - pos: 168.5,39.5 + parent: 0 + type: Transform +- uid: 2631 + type: MountainRock + components: + - pos: 168.5,38.5 + parent: 0 + type: Transform +- uid: 2632 + type: MountainRock + components: + - pos: 167.5,39.5 + parent: 0 + type: Transform +- uid: 2633 + type: MountainRock + components: + - pos: 167.5,38.5 + parent: 0 + type: Transform +- uid: 2634 + type: MountainRock + components: + - pos: 166.5,39.5 + parent: 0 + type: Transform +- uid: 2635 + type: MountainRock + components: + - pos: 166.5,38.5 + parent: 0 + type: Transform +- uid: 2636 + type: MountainRock + components: + - pos: 165.5,39.5 + parent: 0 + type: Transform +- uid: 2637 + type: MountainRock + components: + - pos: 165.5,38.5 + parent: 0 + type: Transform +- uid: 2638 + type: MountainRock + components: + - pos: 164.5,39.5 + parent: 0 + type: Transform +- uid: 2639 + type: MountainRock + components: + - pos: 164.5,38.5 + parent: 0 + type: Transform +- uid: 2640 + type: MountainRock + components: + - pos: 163.5,39.5 + parent: 0 + type: Transform +- uid: 2641 + type: MountainRock + components: + - pos: 163.5,38.5 + parent: 0 + type: Transform +- uid: 2642 + type: MountainRock + components: + - pos: 162.5,39.5 + parent: 0 + type: Transform +- uid: 2643 + type: MountainRock + components: + - pos: 162.5,38.5 + parent: 0 + type: Transform +- uid: 2644 + type: MountainRock + components: + - pos: 161.5,39.5 + parent: 0 + type: Transform +- uid: 2645 + type: MountainRock + components: + - pos: 161.5,38.5 + parent: 0 + type: Transform +- uid: 2646 + type: MountainRock + components: + - pos: 160.5,39.5 + parent: 0 + type: Transform +- uid: 2647 + type: MountainRock + components: + - pos: 160.5,38.5 + parent: 0 + type: Transform +- uid: 2648 + type: MountainRock + components: + - pos: 159.5,39.5 + parent: 0 + type: Transform +- uid: 2649 + type: MountainRock + components: + - pos: 159.5,38.5 + parent: 0 + type: Transform +- uid: 2650 + type: MountainRock + components: + - pos: 158.5,39.5 + parent: 0 + type: Transform +- uid: 2651 + type: MountainRock + components: + - pos: 158.5,38.5 + parent: 0 + type: Transform +- uid: 2652 + type: MountainRock + components: + - pos: 157.5,39.5 + parent: 0 + type: Transform +- uid: 2653 + type: MountainRock + components: + - pos: 157.5,38.5 + parent: 0 + type: Transform +- uid: 2654 + type: MountainRock + components: + - pos: 156.5,39.5 + parent: 0 + type: Transform +- uid: 2655 + type: MountainRock + components: + - pos: 156.5,38.5 + parent: 0 + type: Transform +- uid: 2656 + type: MountainRock + components: + - pos: 155.5,39.5 + parent: 0 + type: Transform +- uid: 2657 + type: MountainRock + components: + - pos: 155.5,38.5 + parent: 0 + type: Transform +- uid: 2658 + type: MountainRock + components: + - pos: 154.5,39.5 + parent: 0 + type: Transform +- uid: 2659 + type: MountainRock + components: + - pos: 154.5,38.5 + parent: 0 + type: Transform +- uid: 2660 + type: MountainRock + components: + - pos: 153.5,39.5 + parent: 0 + type: Transform +- uid: 2661 + type: MountainRock + components: + - pos: 153.5,38.5 + parent: 0 + type: Transform +- uid: 2662 + type: MountainRock + components: + - pos: 152.5,39.5 + parent: 0 + type: Transform +- uid: 2663 + type: MountainRock + components: + - pos: 152.5,38.5 + parent: 0 + type: Transform +- uid: 2664 + type: MountainRock + components: + - pos: 151.5,39.5 + parent: 0 + type: Transform +- uid: 2665 + type: MountainRock + components: + - pos: 151.5,38.5 + parent: 0 + type: Transform +- uid: 2666 + type: MountainRock + components: + - pos: 150.5,39.5 + parent: 0 + type: Transform +- uid: 2667 + type: MountainRock + components: + - pos: 150.5,38.5 + parent: 0 + type: Transform +- uid: 2668 + type: MountainRock + components: + - pos: 149.5,39.5 + parent: 0 + type: Transform +- uid: 2669 + type: MountainRock + components: + - pos: 149.5,38.5 + parent: 0 + type: Transform +- uid: 2670 + type: MountainRock + components: + - pos: 148.5,39.5 + parent: 0 + type: Transform +- uid: 2671 + type: MountainRock + components: + - pos: 148.5,38.5 + parent: 0 + type: Transform +- uid: 2672 + type: MountainRock + components: + - pos: 147.5,39.5 + parent: 0 + type: Transform +- uid: 2673 + type: MountainRock + components: + - pos: 147.5,38.5 + parent: 0 + type: Transform +- uid: 2674 + type: MountainRock + components: + - pos: 146.5,39.5 + parent: 0 + type: Transform +- uid: 2675 + type: MountainRock + components: + - pos: 146.5,38.5 + parent: 0 + type: Transform +- uid: 2676 + type: MountainRock + components: + - pos: 145.5,39.5 + parent: 0 + type: Transform +- uid: 2677 + type: MountainRock + components: + - pos: 145.5,38.5 + parent: 0 + type: Transform +- uid: 2678 + type: MountainRock + components: + - pos: 144.5,39.5 + parent: 0 + type: Transform +- uid: 2679 + type: MountainRock + components: + - pos: 144.5,38.5 + parent: 0 + type: Transform +- uid: 2680 + type: MountainRock + components: + - pos: 143.5,39.5 + parent: 0 + type: Transform +- uid: 2681 + type: MountainRock + components: + - pos: 143.5,38.5 + parent: 0 + type: Transform +- uid: 2682 + type: MountainRock + components: + - pos: 142.5,39.5 + parent: 0 + type: Transform +- uid: 2683 + type: MountainRock + components: + - pos: 142.5,38.5 + parent: 0 + type: Transform +- uid: 2684 + type: MountainRock + components: + - pos: 141.5,39.5 + parent: 0 + type: Transform +- uid: 2685 + type: MountainRock + components: + - pos: 141.5,38.5 + parent: 0 + type: Transform +- uid: 2686 + type: MountainRock + components: + - pos: 140.5,39.5 + parent: 0 + type: Transform +- uid: 2687 + type: MountainRock + components: + - pos: 140.5,38.5 + parent: 0 + type: Transform +- uid: 2688 + type: MountainRock + components: + - pos: 139.5,39.5 + parent: 0 + type: Transform +- uid: 2689 + type: MountainRock + components: + - pos: 139.5,38.5 + parent: 0 + type: Transform +- uid: 2690 + type: MountainRock + components: + - pos: 138.5,39.5 + parent: 0 + type: Transform +- uid: 2691 + type: MountainRock + components: + - pos: 138.5,38.5 + parent: 0 + type: Transform +- uid: 2692 + type: MountainRock + components: + - pos: 137.5,39.5 + parent: 0 + type: Transform +- uid: 2693 + type: MountainRock + components: + - pos: 137.5,38.5 + parent: 0 + type: Transform +- uid: 2694 + type: MountainRock + components: + - pos: 136.5,39.5 + parent: 0 + type: Transform +- uid: 2695 + type: MountainRock + components: + - pos: 136.5,38.5 + parent: 0 + type: Transform +- uid: 2696 + type: MountainRock + components: + - pos: 135.5,39.5 + parent: 0 + type: Transform +- uid: 2697 + type: MountainRock + components: + - pos: 135.5,38.5 + parent: 0 + type: Transform +- uid: 2698 + type: MountainRock + components: + - pos: 134.5,39.5 + parent: 0 + type: Transform +- uid: 2699 + type: MountainRock + components: + - pos: 134.5,38.5 + parent: 0 + type: Transform +- uid: 2700 + type: MountainRock + components: + - pos: 133.5,39.5 + parent: 0 + type: Transform +- uid: 2701 + type: MountainRock + components: + - pos: 133.5,38.5 + parent: 0 + type: Transform +- uid: 2702 + type: MountainRock + components: + - pos: 132.5,39.5 + parent: 0 + type: Transform +- uid: 2703 + type: MountainRock + components: + - pos: 132.5,38.5 + parent: 0 + type: Transform +- uid: 2704 + type: MountainRock + components: + - pos: 131.5,39.5 + parent: 0 + type: Transform +- uid: 2705 + type: MountainRock + components: + - pos: 131.5,38.5 + parent: 0 + type: Transform +- uid: 2706 + type: MountainRock + components: + - pos: 130.5,39.5 + parent: 0 + type: Transform +- uid: 2707 + type: MountainRock + components: + - pos: 130.5,38.5 + parent: 0 + type: Transform +- uid: 2708 + type: MountainRock + components: + - pos: 129.5,39.5 + parent: 0 + type: Transform +- uid: 2709 + type: MountainRock + components: + - pos: 129.5,38.5 + parent: 0 + type: Transform +- uid: 2710 + type: MountainRock + components: + - pos: 128.5,39.5 + parent: 0 + type: Transform +- uid: 2711 + type: MountainRock + components: + - pos: 128.5,38.5 + parent: 0 + type: Transform +- uid: 2712 + type: MountainRock + components: + - pos: 127.5,39.5 + parent: 0 + type: Transform +- uid: 2713 + type: MountainRock + components: + - pos: 127.5,38.5 + parent: 0 + type: Transform +- uid: 2714 + type: MountainRock + components: + - pos: 126.5,39.5 + parent: 0 + type: Transform +- uid: 2715 + type: MountainRock + components: + - pos: 126.5,38.5 + parent: 0 + type: Transform +- uid: 2716 + type: MountainRock + components: + - pos: 125.5,39.5 + parent: 0 + type: Transform +- uid: 2717 + type: MountainRock + components: + - pos: 125.5,38.5 + parent: 0 + type: Transform +- uid: 2718 + type: MountainRock + components: + - pos: 124.5,39.5 + parent: 0 + type: Transform +- uid: 2719 + type: MountainRock + components: + - pos: 124.5,38.5 + parent: 0 + type: Transform +- uid: 2720 + type: MountainRock + components: + - pos: 123.5,39.5 + parent: 0 + type: Transform +- uid: 2721 + type: MountainRock + components: + - pos: 123.5,38.5 + parent: 0 + type: Transform +- uid: 2722 + type: MountainRock + components: + - pos: 122.5,39.5 + parent: 0 + type: Transform +- uid: 2723 + type: MountainRock + components: + - pos: 122.5,38.5 + parent: 0 + type: Transform +- uid: 2724 + type: MountainRock + components: + - pos: 121.5,39.5 + parent: 0 + type: Transform +- uid: 2725 + type: MountainRock + components: + - pos: 121.5,38.5 + parent: 0 + type: Transform +- uid: 2726 + type: MountainRock + components: + - pos: 120.5,39.5 + parent: 0 + type: Transform +- uid: 2727 + type: MountainRock + components: + - pos: 120.5,38.5 + parent: 0 + type: Transform +- uid: 2728 + type: MountainRock + components: + - pos: 119.5,39.5 + parent: 0 + type: Transform +- uid: 2729 + type: MountainRock + components: + - pos: 119.5,38.5 + parent: 0 + type: Transform +- uid: 2730 + type: MountainRock + components: + - pos: 118.5,39.5 + parent: 0 + type: Transform +- uid: 2731 + type: MountainRock + components: + - pos: 118.5,38.5 + parent: 0 + type: Transform +- uid: 2732 + type: MountainRock + components: + - pos: 117.5,39.5 + parent: 0 + type: Transform +- uid: 2733 + type: MountainRock + components: + - pos: 117.5,38.5 + parent: 0 + type: Transform +- uid: 2734 + type: MountainRock + components: + - pos: 116.5,39.5 + parent: 0 + type: Transform +- uid: 2735 + type: MountainRock + components: + - pos: 116.5,38.5 + parent: 0 + type: Transform +- uid: 2736 + type: MountainRock + components: + - pos: 115.5,39.5 + parent: 0 + type: Transform +- uid: 2737 + type: MountainRock + components: + - pos: 115.5,38.5 + parent: 0 + type: Transform +- uid: 2738 + type: MountainRock + components: + - pos: 114.5,39.5 + parent: 0 + type: Transform +- uid: 2739 + type: MountainRock + components: + - pos: 114.5,38.5 + parent: 0 + type: Transform +- uid: 2740 + type: MountainRock + components: + - pos: 112.5,35.5 + parent: 0 + type: Transform +- uid: 2741 + type: MountainRock + components: + - pos: 112.5,34.5 + parent: 0 + type: Transform +- uid: 2742 + type: MountainRock + components: + - pos: 112.5,33.5 + parent: 0 + type: Transform +- uid: 2743 + type: MountainRock + components: + - pos: 112.5,32.5 + parent: 0 + type: Transform +- uid: 2744 + type: MountainRock + components: + - pos: 112.5,31.5 + parent: 0 + type: Transform +- uid: 2745 + type: MountainRock + components: + - pos: 112.5,30.5 + parent: 0 + type: Transform +- uid: 2746 + type: MountainRock + components: + - pos: 112.5,29.5 + parent: 0 + type: Transform +- uid: 2747 + type: MountainRock + components: + - pos: 112.5,28.5 + parent: 0 + type: Transform +- uid: 2748 + type: MountainRock + components: + - pos: 112.5,27.5 + parent: 0 + type: Transform +- uid: 2749 + type: MountainRock + components: + - pos: 113.5,27.5 + parent: 0 + type: Transform +- uid: 2750 + type: MountainRock + components: + - pos: 112.5,23.5 + parent: 0 + type: Transform +- uid: 2751 + type: MountainRock + components: + - pos: 112.5,22.5 + parent: 0 + type: Transform +- uid: 2752 + type: MountainRock + components: + - pos: 111.5,29.5 + parent: 0 + type: Transform +- uid: 2753 + type: MountainRock + components: + - pos: 111.5,28.5 + parent: 0 + type: Transform +- uid: 2754 + type: MountainRock + components: + - pos: 111.5,27.5 + parent: 0 + type: Transform +- uid: 2755 + type: MountainRock + components: + - pos: 111.5,26.5 + parent: 0 + type: Transform +- uid: 2756 + type: MountainRock + components: + - pos: 111.5,25.5 + parent: 0 + type: Transform +- uid: 2757 + type: MountainRock + components: + - pos: 111.5,24.5 + parent: 0 + type: Transform +- uid: 2758 + type: MountainRock + components: + - pos: 112.5,29.5 + parent: 0 + type: Transform +- uid: 2759 + type: MountainRock + components: + - pos: 110.5,26.5 + parent: 0 + type: Transform +- uid: 2760 + type: MountainRock + components: + - pos: 113.5,28.5 + parent: 0 + type: Transform +- uid: 2761 + type: MountainRock + components: + - pos: 113.5,26.5 + parent: 0 + type: Transform +- uid: 2762 + type: MountainRock + components: + - pos: 112.5,21.5 + parent: 0 + type: Transform +- uid: 2763 + type: MountainRock + components: + - pos: 110.5,25.5 + parent: 0 + type: Transform +- uid: 2764 + type: MountainRock + components: + - pos: 113.5,25.5 + parent: 0 + type: Transform +- uid: 2765 + type: MountainRock + components: + - pos: 113.5,24.5 + parent: 0 + type: Transform +- uid: 2766 + type: MountainRock + components: + - pos: 113.5,23.5 + parent: 0 + type: Transform +- uid: 2767 + type: MountainRock + components: + - pos: 113.5,22.5 + parent: 0 + type: Transform +- uid: 2768 + type: MountainRock + components: + - pos: 113.5,21.5 + parent: 0 + type: Transform +- uid: 2769 + type: MountainRock + components: + - pos: 113.5,20.5 + parent: 0 + type: Transform +- uid: 2770 + type: MountainRock + components: + - pos: 113.5,19.5 + parent: 0 + type: Transform +- uid: 2771 + type: MountainRock + components: + - pos: 113.5,18.5 + parent: 0 + type: Transform +- uid: 2772 + type: MountainRock + components: + - pos: 113.5,17.5 + parent: 0 + type: Transform +- uid: 2773 + type: MountainRock + components: + - pos: 113.5,16.5 + parent: 0 + type: Transform +- uid: 2774 + type: MountainRock + components: + - pos: 113.5,15.5 + parent: 0 + type: Transform +- uid: 2775 + type: MountainRock + components: + - pos: 113.5,14.5 + parent: 0 + type: Transform +- uid: 2776 + type: MountainRock + components: + - pos: 113.5,13.5 + parent: 0 + type: Transform +- uid: 2777 + type: MountainRock + components: + - pos: 113.5,12.5 + parent: 0 + type: Transform +- uid: 2778 + type: MountainRock + components: + - pos: 113.5,11.5 + parent: 0 + type: Transform +- uid: 2779 + type: MountainRock + components: + - pos: 113.5,10.5 + parent: 0 + type: Transform +- uid: 2780 + type: MountainRock + components: + - pos: 113.5,9.5 + parent: 0 + type: Transform +- uid: 2781 + type: MountainRock + components: + - pos: 113.5,8.5 + parent: 0 + type: Transform +- uid: 2782 + type: MountainRock + components: + - pos: 113.5,7.5 + parent: 0 + type: Transform +- uid: 2783 + type: MountainRock + components: + - pos: 113.5,6.5 + parent: 0 + type: Transform +- uid: 2784 + type: MountainRock + components: + - pos: 113.5,5.5 + parent: 0 + type: Transform +- uid: 2785 + type: MountainRock + components: + - pos: 113.5,4.5 + parent: 0 + type: Transform +- uid: 2786 + type: MountainRock + components: + - pos: 113.5,3.5 + parent: 0 + type: Transform +- uid: 2787 + type: MountainRock + components: + - pos: 113.5,2.5 + parent: 0 + type: Transform +- uid: 2788 + type: MountainRock + components: + - pos: 113.5,1.5 + parent: 0 + type: Transform +- uid: 2789 + type: MountainRock + components: + - pos: 113.5,0.5 + parent: 0 + type: Transform +- uid: 2790 + type: MountainRock + components: + - pos: 113.5,-0.5 + parent: 0 + type: Transform +- uid: 2791 + type: MountainRock + components: + - pos: 113.5,-1.5 + parent: 0 + type: Transform +- uid: 2792 + type: MountainRock + components: + - pos: 113.5,-2.5 + parent: 0 + type: Transform +- uid: 2793 + type: MountainRock + components: + - pos: 113.5,-3.5 + parent: 0 + type: Transform +- uid: 2794 + type: MountainRock + components: + - pos: 113.5,-4.5 + parent: 0 + type: Transform +- uid: 2795 + type: MountainRock + components: + - pos: 113.5,-5.5 + parent: 0 + type: Transform +- uid: 2796 + type: MountainRock + components: + - pos: 113.5,-6.5 + parent: 0 + type: Transform +- uid: 2797 + type: MountainRock + components: + - pos: 113.5,-7.5 + parent: 0 + type: Transform +- uid: 2798 + type: MountainRock + components: + - pos: 113.5,-8.5 + parent: 0 + type: Transform +- uid: 2799 + type: MountainRock + components: + - pos: 113.5,-9.5 + parent: 0 + type: Transform +- uid: 2800 + type: MountainRock + components: + - pos: 113.5,-10.5 + parent: 0 + type: Transform +- uid: 2801 + type: MountainRock + components: + - pos: 113.5,-11.5 + parent: 0 + type: Transform +- uid: 2802 + type: MountainRock + components: + - pos: 113.5,-12.5 + parent: 0 + type: Transform +- uid: 2803 + type: MountainRock + components: + - pos: 113.5,-13.5 + parent: 0 + type: Transform +- uid: 2804 + type: MountainRock + components: + - pos: 113.5,-14.5 + parent: 0 + type: Transform +- uid: 2805 + type: MountainRock + components: + - pos: 113.5,-15.5 + parent: 0 + type: Transform +- uid: 2806 + type: MountainRock + components: + - pos: 113.5,-16.5 + parent: 0 + type: Transform +- uid: 2807 + type: MountainRock + components: + - pos: 113.5,-17.5 + parent: 0 + type: Transform +- uid: 2808 + type: MountainRock + components: + - pos: 113.5,-18.5 + parent: 0 + type: Transform +- uid: 2809 + type: MountainRock + components: + - pos: 113.5,-19.5 + parent: 0 + type: Transform +- uid: 2810 + type: MountainRock + components: + - pos: 113.5,-20.5 + parent: 0 + type: Transform +- uid: 2811 + type: MountainRock + components: + - pos: 113.5,-21.5 + parent: 0 + type: Transform +- uid: 2812 + type: MountainRock + components: + - pos: 113.5,-22.5 + parent: 0 + type: Transform +- uid: 2813 + type: MountainRock + components: + - pos: 113.5,-23.5 + parent: 0 + type: Transform +- uid: 2814 + type: MountainRock + components: + - pos: 113.5,-24.5 + parent: 0 + type: Transform +- uid: 2815 + type: MountainRock + components: + - pos: 113.5,-25.5 + parent: 0 + type: Transform +- uid: 2816 + type: MountainRock + components: + - pos: 113.5,-26.5 + parent: 0 + type: Transform +- uid: 2817 + type: MountainRock + components: + - pos: 113.5,-27.5 + parent: 0 + type: Transform +- uid: 2818 + type: MountainRock + components: + - pos: 113.5,-28.5 + parent: 0 + type: Transform +- uid: 2819 + type: MountainRock + components: + - pos: 113.5,-29.5 + parent: 0 + type: Transform +- uid: 2820 + type: MountainRock + components: + - pos: 113.5,-30.5 + parent: 0 + type: Transform +- uid: 2821 + type: MountainRock + components: + - pos: 113.5,-31.5 + parent: 0 + type: Transform +- uid: 2822 + type: MountainRock + components: + - pos: 113.5,-32.5 + parent: 0 + type: Transform +- uid: 2823 + type: MountainRock + components: + - pos: 113.5,-33.5 + parent: 0 + type: Transform +- uid: 2824 + type: MountainRock + components: + - pos: 113.5,-34.5 + parent: 0 + type: Transform +- uid: 2825 + type: MountainRock + components: + - pos: 113.5,-35.5 + parent: 0 + type: Transform +- uid: 2826 + type: MountainRock + components: + - pos: 113.5,-36.5 + parent: 0 + type: Transform +- uid: 2827 + type: MountainRock + components: + - pos: 113.5,-37.5 + parent: 0 + type: Transform +- uid: 2828 + type: MountainRock + components: + - pos: 113.5,-38.5 + parent: 0 + type: Transform +- uid: 2829 + type: MountainRock + components: + - pos: 113.5,-39.5 + parent: 0 + type: Transform +- uid: 2830 + type: MountainRock + components: + - pos: 113.5,-40.5 + parent: 0 + type: Transform +- uid: 2831 + type: MountainRock + components: + - pos: 113.5,-41.5 + parent: 0 + type: Transform +- uid: 2832 + type: MountainRock + components: + - pos: 113.5,-42.5 + parent: 0 + type: Transform +- uid: 2833 + type: MountainRock + components: + - pos: 113.5,-43.5 + parent: 0 + type: Transform +- uid: 2834 + type: MountainRock + components: + - pos: 113.5,-44.5 + parent: 0 + type: Transform +- uid: 2835 + type: MountainRock + components: + - pos: 113.5,-45.5 + parent: 0 + type: Transform +- uid: 2836 + type: MountainRock + components: + - pos: 113.5,-46.5 + parent: 0 + type: Transform +- uid: 2837 + type: MountainRock + components: + - pos: 114.5,28.5 + parent: 0 + type: Transform +- uid: 2838 + type: MountainRock + components: + - pos: 114.5,27.5 + parent: 0 + type: Transform +- uid: 2839 + type: MountainRock + components: + - pos: 114.5,26.5 + parent: 0 + type: Transform +- uid: 2840 + type: MountainRock + components: + - pos: 114.5,25.5 + parent: 0 + type: Transform +- uid: 2841 + type: MountainRock + components: + - pos: 114.5,24.5 + parent: 0 + type: Transform +- uid: 2842 + type: MountainRock + components: + - pos: 114.5,23.5 + parent: 0 + type: Transform +- uid: 2843 + type: MountainRock + components: + - pos: 114.5,22.5 + parent: 0 + type: Transform +- uid: 2844 + type: MountainRock + components: + - pos: 114.5,21.5 + parent: 0 + type: Transform +- uid: 2845 + type: MountainRock + components: + - pos: 114.5,20.5 + parent: 0 + type: Transform +- uid: 2846 + type: MountainRock + components: + - pos: 114.5,19.5 + parent: 0 + type: Transform +- uid: 2847 + type: MountainRock + components: + - pos: 114.5,18.5 + parent: 0 + type: Transform +- uid: 2848 + type: MountainRock + components: + - pos: 114.5,17.5 + parent: 0 + type: Transform +- uid: 2849 + type: MountainRock + components: + - pos: 114.5,16.5 + parent: 0 + type: Transform +- uid: 2850 + type: MountainRock + components: + - pos: 114.5,15.5 + parent: 0 + type: Transform +- uid: 2851 + type: MountainRock + components: + - pos: 114.5,14.5 + parent: 0 + type: Transform +- uid: 2852 + type: MountainRock + components: + - pos: 114.5,13.5 + parent: 0 + type: Transform +- uid: 2853 + type: MountainRock + components: + - pos: 114.5,12.5 + parent: 0 + type: Transform +- uid: 2854 + type: MountainRock + components: + - pos: 114.5,11.5 + parent: 0 + type: Transform +- uid: 2855 + type: MountainRock + components: + - pos: 114.5,10.5 + parent: 0 + type: Transform +- uid: 2856 + type: MountainRock + components: + - pos: 114.5,9.5 + parent: 0 + type: Transform +- uid: 2857 + type: MountainRock + components: + - pos: 114.5,8.5 + parent: 0 + type: Transform +- uid: 2858 + type: MountainRock + components: + - pos: 114.5,7.5 + parent: 0 + type: Transform +- uid: 2859 + type: MountainRock + components: + - pos: 114.5,6.5 + parent: 0 + type: Transform +- uid: 2860 + type: MountainRock + components: + - pos: 114.5,5.5 + parent: 0 + type: Transform +- uid: 2861 + type: MountainRock + components: + - pos: 114.5,4.5 + parent: 0 + type: Transform +- uid: 2862 + type: MountainRock + components: + - pos: 114.5,3.5 + parent: 0 + type: Transform +- uid: 2863 + type: MountainRock + components: + - pos: 114.5,2.5 + parent: 0 + type: Transform +- uid: 2864 + type: MountainRock + components: + - pos: 114.5,1.5 + parent: 0 + type: Transform +- uid: 2865 + type: MountainRock + components: + - pos: 114.5,0.5 + parent: 0 + type: Transform +- uid: 2866 + type: MountainRock + components: + - pos: 114.5,-0.5 + parent: 0 + type: Transform +- uid: 2867 + type: MountainRock + components: + - pos: 114.5,-1.5 + parent: 0 + type: Transform +- uid: 2868 + type: MountainRock + components: + - pos: 114.5,-2.5 + parent: 0 + type: Transform +- uid: 2869 + type: MountainRock + components: + - pos: 114.5,-3.5 + parent: 0 + type: Transform +- uid: 2870 + type: MountainRock + components: + - pos: 114.5,-4.5 + parent: 0 + type: Transform +- uid: 2871 + type: MountainRock + components: + - pos: 114.5,-5.5 + parent: 0 + type: Transform +- uid: 2872 + type: MountainRock + components: + - pos: 114.5,-6.5 + parent: 0 + type: Transform +- uid: 2873 + type: MountainRock + components: + - pos: 114.5,-7.5 + parent: 0 + type: Transform +- uid: 2874 + type: MountainRock + components: + - pos: 114.5,-8.5 + parent: 0 + type: Transform +- uid: 2875 + type: MountainRock + components: + - pos: 114.5,-9.5 + parent: 0 + type: Transform +- uid: 2876 + type: MountainRock + components: + - pos: 114.5,-10.5 + parent: 0 + type: Transform +- uid: 2877 + type: MountainRock + components: + - pos: 114.5,-11.5 + parent: 0 + type: Transform +- uid: 2878 + type: MountainRock + components: + - pos: 114.5,-12.5 + parent: 0 + type: Transform +- uid: 2879 + type: MountainRock + components: + - pos: 114.5,-13.5 + parent: 0 + type: Transform +- uid: 2880 + type: MountainRock + components: + - pos: 114.5,-14.5 + parent: 0 + type: Transform +- uid: 2881 + type: MountainRock + components: + - pos: 114.5,-15.5 + parent: 0 + type: Transform +- uid: 2882 + type: MountainRock + components: + - pos: 114.5,-16.5 + parent: 0 + type: Transform +- uid: 2883 + type: MountainRock + components: + - pos: 114.5,-17.5 + parent: 0 + type: Transform +- uid: 2884 + type: MountainRock + components: + - pos: 114.5,-18.5 + parent: 0 + type: Transform +- uid: 2885 + type: MountainRock + components: + - pos: 114.5,-19.5 + parent: 0 + type: Transform +- uid: 2886 + type: MountainRock + components: + - pos: 114.5,-20.5 + parent: 0 + type: Transform +- uid: 2887 + type: MountainRock + components: + - pos: 114.5,-21.5 + parent: 0 + type: Transform +- uid: 2888 + type: MountainRock + components: + - pos: 114.5,-22.5 + parent: 0 + type: Transform +- uid: 2889 + type: MountainRock + components: + - pos: 114.5,-23.5 + parent: 0 + type: Transform +- uid: 2890 + type: MountainRock + components: + - pos: 114.5,-24.5 + parent: 0 + type: Transform +- uid: 2891 + type: MountainRock + components: + - pos: 114.5,-25.5 + parent: 0 + type: Transform +- uid: 2892 + type: MountainRock + components: + - pos: 114.5,-26.5 + parent: 0 + type: Transform +- uid: 2893 + type: MountainRock + components: + - pos: 114.5,-27.5 + parent: 0 + type: Transform +- uid: 2894 + type: MountainRock + components: + - pos: 114.5,-28.5 + parent: 0 + type: Transform +- uid: 2895 + type: MountainRock + components: + - pos: 114.5,-29.5 + parent: 0 + type: Transform +- uid: 2896 + type: MountainRock + components: + - pos: 114.5,-30.5 + parent: 0 + type: Transform +- uid: 2897 + type: MountainRock + components: + - pos: 114.5,-31.5 + parent: 0 + type: Transform +- uid: 2898 + type: MountainRock + components: + - pos: 114.5,-32.5 + parent: 0 + type: Transform +- uid: 2899 + type: MountainRock + components: + - pos: 114.5,-33.5 + parent: 0 + type: Transform +- uid: 2900 + type: MountainRock + components: + - pos: 114.5,-34.5 + parent: 0 + type: Transform +- uid: 2901 + type: MountainRock + components: + - pos: 114.5,-35.5 + parent: 0 + type: Transform +- uid: 2902 + type: MountainRock + components: + - pos: 114.5,-36.5 + parent: 0 + type: Transform +- uid: 2903 + type: MountainRock + components: + - pos: 114.5,-37.5 + parent: 0 + type: Transform +- uid: 2904 + type: MountainRock + components: + - pos: 114.5,-38.5 + parent: 0 + type: Transform +- uid: 2905 + type: MountainRock + components: + - pos: 114.5,-39.5 + parent: 0 + type: Transform +- uid: 2906 + type: MountainRock + components: + - pos: 114.5,-40.5 + parent: 0 + type: Transform +- uid: 2907 + type: MountainRock + components: + - pos: 114.5,-41.5 + parent: 0 + type: Transform +- uid: 2908 + type: MountainRock + components: + - pos: 114.5,-42.5 + parent: 0 + type: Transform +- uid: 2909 + type: MountainRock + components: + - pos: 114.5,-43.5 + parent: 0 + type: Transform +- uid: 2910 + type: MountainRock + components: + - pos: 114.5,-44.5 + parent: 0 + type: Transform +- uid: 2911 + type: MountainRock + components: + - pos: 114.5,-45.5 + parent: 0 + type: Transform +- uid: 2912 + type: MountainRock + components: + - pos: 114.5,-46.5 + parent: 0 + type: Transform +- uid: 2913 + type: MountainRock + components: + - pos: 115.5,28.5 + parent: 0 + type: Transform +- uid: 2914 + type: MountainRock + components: + - pos: 115.5,27.5 + parent: 0 + type: Transform +- uid: 2915 + type: MountainRock + components: + - pos: 115.5,26.5 + parent: 0 + type: Transform +- uid: 2916 + type: MountainRock + components: + - pos: 115.5,25.5 + parent: 0 + type: Transform +- uid: 2917 + type: MountainRock + components: + - pos: 115.5,24.5 + parent: 0 + type: Transform +- uid: 2918 + type: MountainRock + components: + - pos: 115.5,23.5 + parent: 0 + type: Transform +- uid: 2919 + type: MountainRock + components: + - pos: 115.5,22.5 + parent: 0 + type: Transform +- uid: 2920 + type: MountainRock + components: + - pos: 115.5,21.5 + parent: 0 + type: Transform +- uid: 2921 + type: MountainRock + components: + - pos: 115.5,20.5 + parent: 0 + type: Transform +- uid: 2922 + type: MountainRock + components: + - pos: 115.5,19.5 + parent: 0 + type: Transform +- uid: 2923 + type: MountainRock + components: + - pos: 115.5,18.5 + parent: 0 + type: Transform +- uid: 2924 + type: MountainRock + components: + - pos: 115.5,17.5 + parent: 0 + type: Transform +- uid: 2925 + type: MountainRock + components: + - pos: 115.5,16.5 + parent: 0 + type: Transform +- uid: 2926 + type: MountainRock + components: + - pos: 115.5,15.5 + parent: 0 + type: Transform +- uid: 2927 + type: MountainRock + components: + - pos: 115.5,14.5 + parent: 0 + type: Transform +- uid: 2928 + type: MountainRock + components: + - pos: 115.5,13.5 + parent: 0 + type: Transform +- uid: 2929 + type: MountainRock + components: + - pos: 115.5,12.5 + parent: 0 + type: Transform +- uid: 2930 + type: MountainRock + components: + - pos: 115.5,11.5 + parent: 0 + type: Transform +- uid: 2931 + type: MountainRock + components: + - pos: 115.5,10.5 + parent: 0 + type: Transform +- uid: 2932 + type: MountainRock + components: + - pos: 115.5,9.5 + parent: 0 + type: Transform +- uid: 2933 + type: MountainRock + components: + - pos: 115.5,8.5 + parent: 0 + type: Transform +- uid: 2934 + type: MountainRock + components: + - pos: 115.5,7.5 + parent: 0 + type: Transform +- uid: 2935 + type: MountainRock + components: + - pos: 115.5,6.5 + parent: 0 + type: Transform +- uid: 2936 + type: MountainRock + components: + - pos: 115.5,5.5 + parent: 0 + type: Transform +- uid: 2937 + type: MountainRock + components: + - pos: 115.5,4.5 + parent: 0 + type: Transform +- uid: 2938 + type: MountainRock + components: + - pos: 115.5,3.5 + parent: 0 + type: Transform +- uid: 2939 + type: MountainRock + components: + - pos: 115.5,2.5 + parent: 0 + type: Transform +- uid: 2940 + type: MountainRock + components: + - pos: 115.5,1.5 + parent: 0 + type: Transform +- uid: 2941 + type: MountainRock + components: + - pos: 115.5,0.5 + parent: 0 + type: Transform +- uid: 2942 + type: MountainRock + components: + - pos: 115.5,-0.5 + parent: 0 + type: Transform +- uid: 2943 + type: MountainRock + components: + - pos: 115.5,-1.5 + parent: 0 + type: Transform +- uid: 2944 + type: MountainRock + components: + - pos: 115.5,-2.5 + parent: 0 + type: Transform +- uid: 2945 + type: MountainRock + components: + - pos: 115.5,-3.5 + parent: 0 + type: Transform +- uid: 2946 + type: MountainRock + components: + - pos: 115.5,-4.5 + parent: 0 + type: Transform +- uid: 2947 + type: MountainRock + components: + - pos: 115.5,-5.5 + parent: 0 + type: Transform +- uid: 2948 + type: MountainRock + components: + - pos: 115.5,-6.5 + parent: 0 + type: Transform +- uid: 2949 + type: MountainRock + components: + - pos: 115.5,-7.5 + parent: 0 + type: Transform +- uid: 2950 + type: MountainRock + components: + - pos: 115.5,-8.5 + parent: 0 + type: Transform +- uid: 2951 + type: MountainRock + components: + - pos: 115.5,-9.5 + parent: 0 + type: Transform +- uid: 2952 + type: MountainRock + components: + - pos: 115.5,-10.5 + parent: 0 + type: Transform +- uid: 2953 + type: MountainRock + components: + - pos: 115.5,-11.5 + parent: 0 + type: Transform +- uid: 2954 + type: MountainRock + components: + - pos: 115.5,-12.5 + parent: 0 + type: Transform +- uid: 2955 + type: MountainRock + components: + - pos: 115.5,-13.5 + parent: 0 + type: Transform +- uid: 2956 + type: MountainRock + components: + - pos: 115.5,-14.5 + parent: 0 + type: Transform +- uid: 2957 + type: MountainRock + components: + - pos: 115.5,-15.5 + parent: 0 + type: Transform +- uid: 2958 + type: MountainRock + components: + - pos: 115.5,-16.5 + parent: 0 + type: Transform +- uid: 2959 + type: MountainRock + components: + - pos: 115.5,-17.5 + parent: 0 + type: Transform +- uid: 2960 + type: MountainRock + components: + - pos: 115.5,-18.5 + parent: 0 + type: Transform +- uid: 2961 + type: MountainRock + components: + - pos: 115.5,-19.5 + parent: 0 + type: Transform +- uid: 2962 + type: MountainRock + components: + - pos: 115.5,-20.5 + parent: 0 + type: Transform +- uid: 2963 + type: MountainRock + components: + - pos: 115.5,-21.5 + parent: 0 + type: Transform +- uid: 2964 + type: MountainRock + components: + - pos: 115.5,-22.5 + parent: 0 + type: Transform +- uid: 2965 + type: MountainRock + components: + - pos: 115.5,-23.5 + parent: 0 + type: Transform +- uid: 2966 + type: MountainRock + components: + - pos: 115.5,-24.5 + parent: 0 + type: Transform +- uid: 2967 + type: MountainRock + components: + - pos: 115.5,-25.5 + parent: 0 + type: Transform +- uid: 2968 + type: MountainRock + components: + - pos: 115.5,-26.5 + parent: 0 + type: Transform +- uid: 2969 + type: MountainRock + components: + - pos: 115.5,-27.5 + parent: 0 + type: Transform +- uid: 2970 + type: MountainRock + components: + - pos: 115.5,-28.5 + parent: 0 + type: Transform +- uid: 2971 + type: MountainRock + components: + - pos: 115.5,-29.5 + parent: 0 + type: Transform +- uid: 2972 + type: MountainRock + components: + - pos: 115.5,-30.5 + parent: 0 + type: Transform +- uid: 2973 + type: MountainRock + components: + - pos: 115.5,-31.5 + parent: 0 + type: Transform +- uid: 2974 + type: MountainRock + components: + - pos: 115.5,-32.5 + parent: 0 + type: Transform +- uid: 2975 + type: MountainRock + components: + - pos: 115.5,-33.5 + parent: 0 + type: Transform +- uid: 2976 + type: MountainRock + components: + - pos: 115.5,-34.5 + parent: 0 + type: Transform +- uid: 2977 + type: MountainRock + components: + - pos: 115.5,-35.5 + parent: 0 + type: Transform +- uid: 2978 + type: MountainRock + components: + - pos: 115.5,-36.5 + parent: 0 + type: Transform +- uid: 2979 + type: MountainRock + components: + - pos: 115.5,-37.5 + parent: 0 + type: Transform +- uid: 2980 + type: MountainRock + components: + - pos: 115.5,-38.5 + parent: 0 + type: Transform +- uid: 2981 + type: MountainRock + components: + - pos: 115.5,-39.5 + parent: 0 + type: Transform +- uid: 2982 + type: MountainRock + components: + - pos: 115.5,-40.5 + parent: 0 + type: Transform +- uid: 2983 + type: MountainRock + components: + - pos: 115.5,-41.5 + parent: 0 + type: Transform +- uid: 2984 + type: MountainRock + components: + - pos: 115.5,-42.5 + parent: 0 + type: Transform +- uid: 2985 + type: MountainRock + components: + - pos: 115.5,-43.5 + parent: 0 + type: Transform +- uid: 2986 + type: MountainRock + components: + - pos: 115.5,-44.5 + parent: 0 + type: Transform +- uid: 2987 + type: MountainRock + components: + - pos: 115.5,-45.5 + parent: 0 + type: Transform +- uid: 2988 + type: MountainRock + components: + - pos: 115.5,-46.5 + parent: 0 + type: Transform +- uid: 2989 + type: MountainRock + components: + - pos: 116.5,28.5 + parent: 0 + type: Transform +- uid: 2990 + type: MountainRock + components: + - pos: 116.5,27.5 + parent: 0 + type: Transform +- uid: 2991 + type: MountainRock + components: + - pos: 116.5,26.5 + parent: 0 + type: Transform +- uid: 2992 + type: MountainRock + components: + - pos: 116.5,25.5 + parent: 0 + type: Transform +- uid: 2993 + type: MountainRock + components: + - pos: 116.5,24.5 + parent: 0 + type: Transform +- uid: 2994 + type: MountainRock + components: + - pos: 116.5,23.5 + parent: 0 + type: Transform +- uid: 2995 + type: MountainRock + components: + - pos: 116.5,22.5 + parent: 0 + type: Transform +- uid: 2996 + type: MountainRock + components: + - pos: 116.5,21.5 + parent: 0 + type: Transform +- uid: 2997 + type: MountainRock + components: + - pos: 116.5,20.5 + parent: 0 + type: Transform +- uid: 2998 + type: MountainRock + components: + - pos: 116.5,19.5 + parent: 0 + type: Transform +- uid: 2999 + type: MountainRock + components: + - pos: 116.5,18.5 + parent: 0 + type: Transform +- uid: 3000 + type: MountainRock + components: + - pos: 116.5,17.5 + parent: 0 + type: Transform +- uid: 3001 + type: MountainRock + components: + - pos: 116.5,16.5 + parent: 0 + type: Transform +- uid: 3002 + type: MountainRock + components: + - pos: 116.5,15.5 + parent: 0 + type: Transform +- uid: 3003 + type: MountainRock + components: + - pos: 116.5,14.5 + parent: 0 + type: Transform +- uid: 3004 + type: MountainRock + components: + - pos: 116.5,13.5 + parent: 0 + type: Transform +- uid: 3005 + type: MountainRock + components: + - pos: 116.5,12.5 + parent: 0 + type: Transform +- uid: 3006 + type: MountainRock + components: + - pos: 116.5,11.5 + parent: 0 + type: Transform +- uid: 3007 + type: MountainRock + components: + - pos: 116.5,10.5 + parent: 0 + type: Transform +- uid: 3008 + type: MountainRock + components: + - pos: 116.5,9.5 + parent: 0 + type: Transform +- uid: 3009 + type: MountainRock + components: + - pos: 116.5,8.5 + parent: 0 + type: Transform +- uid: 3010 + type: MountainRock + components: + - pos: 116.5,7.5 + parent: 0 + type: Transform +- uid: 3011 + type: MountainRock + components: + - pos: 116.5,6.5 + parent: 0 + type: Transform +- uid: 3012 + type: MountainRock + components: + - pos: 116.5,5.5 + parent: 0 + type: Transform +- uid: 3013 + type: MountainRock + components: + - pos: 116.5,4.5 + parent: 0 + type: Transform +- uid: 3014 + type: MountainRock + components: + - pos: 116.5,3.5 + parent: 0 + type: Transform +- uid: 3015 + type: MountainRock + components: + - pos: 116.5,2.5 + parent: 0 + type: Transform +- uid: 3016 + type: MountainRock + components: + - pos: 116.5,1.5 + parent: 0 + type: Transform +- uid: 3017 + type: MountainRock + components: + - pos: 116.5,0.5 + parent: 0 + type: Transform +- uid: 3018 + type: MountainRock + components: + - pos: 116.5,-0.5 + parent: 0 + type: Transform +- uid: 3019 + type: MountainRock + components: + - pos: 116.5,-1.5 + parent: 0 + type: Transform +- uid: 3020 + type: MountainRock + components: + - pos: 116.5,-2.5 + parent: 0 + type: Transform +- uid: 3021 + type: MountainRock + components: + - pos: 116.5,-3.5 + parent: 0 + type: Transform +- uid: 3022 + type: MountainRock + components: + - pos: 116.5,-4.5 + parent: 0 + type: Transform +- uid: 3023 + type: MountainRock + components: + - pos: 116.5,-5.5 + parent: 0 + type: Transform +- uid: 3024 + type: MountainRock + components: + - pos: 116.5,-6.5 + parent: 0 + type: Transform +- uid: 3025 + type: MountainRock + components: + - pos: 116.5,-7.5 + parent: 0 + type: Transform +- uid: 3026 + type: MountainRock + components: + - pos: 116.5,-8.5 + parent: 0 + type: Transform +- uid: 3027 + type: MountainRock + components: + - pos: 116.5,-9.5 + parent: 0 + type: Transform +- uid: 3028 + type: MountainRock + components: + - pos: 116.5,-10.5 + parent: 0 + type: Transform +- uid: 3029 + type: MountainRock + components: + - pos: 116.5,-11.5 + parent: 0 + type: Transform +- uid: 3030 + type: MountainRock + components: + - pos: 116.5,-12.5 + parent: 0 + type: Transform +- uid: 3031 + type: MountainRock + components: + - pos: 116.5,-13.5 + parent: 0 + type: Transform +- uid: 3032 + type: MountainRock + components: + - pos: 116.5,-14.5 + parent: 0 + type: Transform +- uid: 3033 + type: MountainRock + components: + - pos: 116.5,-15.5 + parent: 0 + type: Transform +- uid: 3034 + type: MountainRock + components: + - pos: 116.5,-16.5 + parent: 0 + type: Transform +- uid: 3035 + type: MountainRock + components: + - pos: 116.5,-17.5 + parent: 0 + type: Transform +- uid: 3036 + type: MountainRock + components: + - pos: 116.5,-18.5 + parent: 0 + type: Transform +- uid: 3037 + type: MountainRock + components: + - pos: 116.5,-19.5 + parent: 0 + type: Transform +- uid: 3038 + type: MountainRock + components: + - pos: 116.5,-20.5 + parent: 0 + type: Transform +- uid: 3039 + type: MountainRock + components: + - pos: 116.5,-21.5 + parent: 0 + type: Transform +- uid: 3040 + type: MountainRock + components: + - pos: 116.5,-22.5 + parent: 0 + type: Transform +- uid: 3041 + type: MountainRock + components: + - pos: 116.5,-23.5 + parent: 0 + type: Transform +- uid: 3042 + type: MountainRock + components: + - pos: 116.5,-24.5 + parent: 0 + type: Transform +- uid: 3043 + type: MountainRock + components: + - pos: 116.5,-25.5 + parent: 0 + type: Transform +- uid: 3044 + type: MountainRock + components: + - pos: 116.5,-26.5 + parent: 0 + type: Transform +- uid: 3045 + type: MountainRock + components: + - pos: 116.5,-27.5 + parent: 0 + type: Transform +- uid: 3046 + type: MountainRock + components: + - pos: 116.5,-28.5 + parent: 0 + type: Transform +- uid: 3047 + type: MountainRock + components: + - pos: 116.5,-29.5 + parent: 0 + type: Transform +- uid: 3048 + type: MountainRock + components: + - pos: 116.5,-30.5 + parent: 0 + type: Transform +- uid: 3049 + type: MountainRock + components: + - pos: 116.5,-31.5 + parent: 0 + type: Transform +- uid: 3050 + type: MountainRock + components: + - pos: 116.5,-32.5 + parent: 0 + type: Transform +- uid: 3051 + type: MountainRock + components: + - pos: 116.5,-33.5 + parent: 0 + type: Transform +- uid: 3052 + type: MountainRock + components: + - pos: 116.5,-34.5 + parent: 0 + type: Transform +- uid: 3053 + type: MountainRock + components: + - pos: 116.5,-35.5 + parent: 0 + type: Transform +- uid: 3054 + type: MountainRock + components: + - pos: 116.5,-36.5 + parent: 0 + type: Transform +- uid: 3055 + type: MountainRock + components: + - pos: 116.5,-37.5 + parent: 0 + type: Transform +- uid: 3056 + type: MountainRock + components: + - pos: 116.5,-38.5 + parent: 0 + type: Transform +- uid: 3057 + type: MountainRock + components: + - pos: 116.5,-39.5 + parent: 0 + type: Transform +- uid: 3058 + type: MountainRock + components: + - pos: 116.5,-40.5 + parent: 0 + type: Transform +- uid: 3059 + type: MountainRock + components: + - pos: 116.5,-41.5 + parent: 0 + type: Transform +- uid: 3060 + type: MountainRock + components: + - pos: 116.5,-42.5 + parent: 0 + type: Transform +- uid: 3061 + type: MountainRock + components: + - pos: 116.5,-43.5 + parent: 0 + type: Transform +- uid: 3062 + type: MountainRock + components: + - pos: 116.5,-44.5 + parent: 0 + type: Transform +- uid: 3063 + type: MountainRock + components: + - pos: 116.5,-45.5 + parent: 0 + type: Transform +- uid: 3064 + type: MountainRock + components: + - pos: 116.5,-46.5 + parent: 0 + type: Transform +- uid: 3065 + type: MountainRock + components: + - pos: 117.5,28.5 + parent: 0 + type: Transform +- uid: 3066 + type: MountainRock + components: + - pos: 117.5,27.5 + parent: 0 + type: Transform +- uid: 3067 + type: MountainRock + components: + - pos: 117.5,26.5 + parent: 0 + type: Transform +- uid: 3068 + type: MountainRock + components: + - pos: 117.5,25.5 + parent: 0 + type: Transform +- uid: 3069 + type: MountainRock + components: + - pos: 117.5,24.5 + parent: 0 + type: Transform +- uid: 3070 + type: MountainRock + components: + - pos: 117.5,23.5 + parent: 0 + type: Transform +- uid: 3071 + type: MountainRock + components: + - pos: 117.5,22.5 + parent: 0 + type: Transform +- uid: 3072 + type: MountainRock + components: + - pos: 117.5,21.5 + parent: 0 + type: Transform +- uid: 3073 + type: MountainRock + components: + - pos: 117.5,20.5 + parent: 0 + type: Transform +- uid: 3074 + type: MountainRock + components: + - pos: 117.5,19.5 + parent: 0 + type: Transform +- uid: 3075 + type: MountainRock + components: + - pos: 117.5,18.5 + parent: 0 + type: Transform +- uid: 3076 + type: MountainRock + components: + - pos: 117.5,17.5 + parent: 0 + type: Transform +- uid: 3077 + type: MountainRock + components: + - pos: 117.5,16.5 + parent: 0 + type: Transform +- uid: 3078 + type: MountainRock + components: + - pos: 117.5,15.5 + parent: 0 + type: Transform +- uid: 3079 + type: MountainRock + components: + - pos: 117.5,14.5 + parent: 0 + type: Transform +- uid: 3080 + type: MountainRock + components: + - pos: 117.5,13.5 + parent: 0 + type: Transform +- uid: 3081 + type: MountainRock + components: + - pos: 117.5,12.5 + parent: 0 + type: Transform +- uid: 3082 + type: MountainRock + components: + - pos: 117.5,11.5 + parent: 0 + type: Transform +- uid: 3083 + type: MountainRock + components: + - pos: 117.5,10.5 + parent: 0 + type: Transform +- uid: 3084 + type: MountainRock + components: + - pos: 117.5,9.5 + parent: 0 + type: Transform +- uid: 3085 + type: MountainRock + components: + - pos: 117.5,8.5 + parent: 0 + type: Transform +- uid: 3086 + type: MountainRock + components: + - pos: 117.5,7.5 + parent: 0 + type: Transform +- uid: 3087 + type: MountainRock + components: + - pos: 117.5,6.5 + parent: 0 + type: Transform +- uid: 3088 + type: MountainRock + components: + - pos: 117.5,5.5 + parent: 0 + type: Transform +- uid: 3089 + type: MountainRock + components: + - pos: 117.5,4.5 + parent: 0 + type: Transform +- uid: 3090 + type: MountainRock + components: + - pos: 117.5,3.5 + parent: 0 + type: Transform +- uid: 3091 + type: MountainRock + components: + - pos: 117.5,2.5 + parent: 0 + type: Transform +- uid: 3092 + type: MountainRock + components: + - pos: 117.5,1.5 + parent: 0 + type: Transform +- uid: 3093 + type: MountainRock + components: + - pos: 117.5,0.5 + parent: 0 + type: Transform +- uid: 3094 + type: MountainRock + components: + - pos: 117.5,-0.5 + parent: 0 + type: Transform +- uid: 3095 + type: MountainRock + components: + - pos: 117.5,-1.5 + parent: 0 + type: Transform +- uid: 3096 + type: MountainRock + components: + - pos: 117.5,-2.5 + parent: 0 + type: Transform +- uid: 3097 + type: MountainRock + components: + - pos: 117.5,-3.5 + parent: 0 + type: Transform +- uid: 3098 + type: MountainRock + components: + - pos: 117.5,-4.5 + parent: 0 + type: Transform +- uid: 3099 + type: MountainRock + components: + - pos: 117.5,-5.5 + parent: 0 + type: Transform +- uid: 3100 + type: MountainRock + components: + - pos: 117.5,-6.5 + parent: 0 + type: Transform +- uid: 3101 + type: MountainRock + components: + - pos: 117.5,-7.5 + parent: 0 + type: Transform +- uid: 3102 + type: MountainRock + components: + - pos: 117.5,-8.5 + parent: 0 + type: Transform +- uid: 3103 + type: MountainRock + components: + - pos: 117.5,-9.5 + parent: 0 + type: Transform +- uid: 3104 + type: MountainRock + components: + - pos: 117.5,-10.5 + parent: 0 + type: Transform +- uid: 3105 + type: MountainRock + components: + - pos: 117.5,-11.5 + parent: 0 + type: Transform +- uid: 3106 + type: MountainRock + components: + - pos: 117.5,-12.5 + parent: 0 + type: Transform +- uid: 3107 + type: MountainRock + components: + - pos: 117.5,-13.5 + parent: 0 + type: Transform +- uid: 3108 + type: MountainRock + components: + - pos: 117.5,-14.5 + parent: 0 + type: Transform +- uid: 3109 + type: MountainRock + components: + - pos: 117.5,-15.5 + parent: 0 + type: Transform +- uid: 3110 + type: MountainRock + components: + - pos: 117.5,-16.5 + parent: 0 + type: Transform +- uid: 3111 + type: MountainRock + components: + - pos: 117.5,-17.5 + parent: 0 + type: Transform +- uid: 3112 + type: MountainRock + components: + - pos: 117.5,-18.5 + parent: 0 + type: Transform +- uid: 3113 + type: MountainRock + components: + - pos: 117.5,-19.5 + parent: 0 + type: Transform +- uid: 3114 + type: MountainRock + components: + - pos: 117.5,-20.5 + parent: 0 + type: Transform +- uid: 3115 + type: MountainRock + components: + - pos: 117.5,-21.5 + parent: 0 + type: Transform +- uid: 3116 + type: MountainRock + components: + - pos: 117.5,-22.5 + parent: 0 + type: Transform +- uid: 3117 + type: MountainRock + components: + - pos: 117.5,-23.5 + parent: 0 + type: Transform +- uid: 3118 + type: MountainRock + components: + - pos: 117.5,-24.5 + parent: 0 + type: Transform +- uid: 3119 + type: MountainRock + components: + - pos: 117.5,-25.5 + parent: 0 + type: Transform +- uid: 3120 + type: MountainRock + components: + - pos: 117.5,-26.5 + parent: 0 + type: Transform +- uid: 3121 + type: MountainRock + components: + - pos: 117.5,-27.5 + parent: 0 + type: Transform +- uid: 3122 + type: MountainRock + components: + - pos: 117.5,-28.5 + parent: 0 + type: Transform +- uid: 3123 + type: MountainRock + components: + - pos: 117.5,-29.5 + parent: 0 + type: Transform +- uid: 3124 + type: MountainRock + components: + - pos: 117.5,-30.5 + parent: 0 + type: Transform +- uid: 3125 + type: MountainRock + components: + - pos: 117.5,-31.5 + parent: 0 + type: Transform +- uid: 3126 + type: MountainRock + components: + - pos: 117.5,-32.5 + parent: 0 + type: Transform +- uid: 3127 + type: MountainRock + components: + - pos: 117.5,-33.5 + parent: 0 + type: Transform +- uid: 3128 + type: MountainRock + components: + - pos: 117.5,-34.5 + parent: 0 + type: Transform +- uid: 3129 + type: MountainRock + components: + - pos: 117.5,-35.5 + parent: 0 + type: Transform +- uid: 3130 + type: MountainRock + components: + - pos: 117.5,-36.5 + parent: 0 + type: Transform +- uid: 3131 + type: MountainRock + components: + - pos: 117.5,-37.5 + parent: 0 + type: Transform +- uid: 3132 + type: MountainRock + components: + - pos: 117.5,-38.5 + parent: 0 + type: Transform +- uid: 3133 + type: MountainRock + components: + - pos: 117.5,-39.5 + parent: 0 + type: Transform +- uid: 3134 + type: MountainRock + components: + - pos: 117.5,-40.5 + parent: 0 + type: Transform +- uid: 3135 + type: MountainRock + components: + - pos: 117.5,-41.5 + parent: 0 + type: Transform +- uid: 3136 + type: MountainRock + components: + - pos: 117.5,-42.5 + parent: 0 + type: Transform +- uid: 3137 + type: MountainRock + components: + - pos: 117.5,-43.5 + parent: 0 + type: Transform +- uid: 3138 + type: MountainRock + components: + - pos: 117.5,-44.5 + parent: 0 + type: Transform +- uid: 3139 + type: MountainRock + components: + - pos: 117.5,-45.5 + parent: 0 + type: Transform +- uid: 3140 + type: MountainRock + components: + - pos: 117.5,-46.5 + parent: 0 + type: Transform +- uid: 3141 + type: MountainRock + components: + - pos: 118.5,28.5 + parent: 0 + type: Transform +- uid: 3142 + type: MountainRock + components: + - pos: 118.5,27.5 + parent: 0 + type: Transform +- uid: 3143 + type: MountainRock + components: + - pos: 118.5,26.5 + parent: 0 + type: Transform +- uid: 3144 + type: MountainRock + components: + - pos: 118.5,25.5 + parent: 0 + type: Transform +- uid: 3145 + type: MountainRock + components: + - pos: 118.5,24.5 + parent: 0 + type: Transform +- uid: 3146 + type: MountainRock + components: + - pos: 118.5,23.5 + parent: 0 + type: Transform +- uid: 3147 + type: MountainRock + components: + - pos: 118.5,22.5 + parent: 0 + type: Transform +- uid: 3148 + type: MountainRock + components: + - pos: 118.5,21.5 + parent: 0 + type: Transform +- uid: 3149 + type: MountainRock + components: + - pos: 118.5,20.5 + parent: 0 + type: Transform +- uid: 3150 + type: MountainRock + components: + - pos: 118.5,19.5 + parent: 0 + type: Transform +- uid: 3151 + type: MountainRock + components: + - pos: 118.5,18.5 + parent: 0 + type: Transform +- uid: 3152 + type: MountainRock + components: + - pos: 118.5,17.5 + parent: 0 + type: Transform +- uid: 3153 + type: MountainRock + components: + - pos: 118.5,16.5 + parent: 0 + type: Transform +- uid: 3154 + type: MountainRock + components: + - pos: 118.5,15.5 + parent: 0 + type: Transform +- uid: 3155 + type: MountainRock + components: + - pos: 118.5,14.5 + parent: 0 + type: Transform +- uid: 3156 + type: MountainRock + components: + - pos: 118.5,13.5 + parent: 0 + type: Transform +- uid: 3157 + type: MountainRock + components: + - pos: 118.5,12.5 + parent: 0 + type: Transform +- uid: 3158 + type: MountainRock + components: + - pos: 118.5,11.5 + parent: 0 + type: Transform +- uid: 3159 + type: MountainRock + components: + - pos: 118.5,10.5 + parent: 0 + type: Transform +- uid: 3160 + type: MountainRock + components: + - pos: 118.5,9.5 + parent: 0 + type: Transform +- uid: 3161 + type: MountainRock + components: + - pos: 118.5,8.5 + parent: 0 + type: Transform +- uid: 3162 + type: MountainRock + components: + - pos: 118.5,7.5 + parent: 0 + type: Transform +- uid: 3163 + type: MountainRock + components: + - pos: 118.5,6.5 + parent: 0 + type: Transform +- uid: 3164 + type: MountainRock + components: + - pos: 118.5,5.5 + parent: 0 + type: Transform +- uid: 3165 + type: MountainRock + components: + - pos: 118.5,4.5 + parent: 0 + type: Transform +- uid: 3166 + type: MountainRock + components: + - pos: 118.5,3.5 + parent: 0 + type: Transform +- uid: 3167 + type: MountainRock + components: + - pos: 118.5,2.5 + parent: 0 + type: Transform +- uid: 3168 + type: MountainRock + components: + - pos: 118.5,1.5 + parent: 0 + type: Transform +- uid: 3169 + type: MountainRock + components: + - pos: 118.5,0.5 + parent: 0 + type: Transform +- uid: 3170 + type: MountainRock + components: + - pos: 118.5,-0.5 + parent: 0 + type: Transform +- uid: 3171 + type: MountainRock + components: + - pos: 118.5,-1.5 + parent: 0 + type: Transform +- uid: 3172 + type: MountainRock + components: + - pos: 118.5,-2.5 + parent: 0 + type: Transform +- uid: 3173 + type: MountainRock + components: + - pos: 118.5,-3.5 + parent: 0 + type: Transform +- uid: 3174 + type: MountainRock + components: + - pos: 118.5,-4.5 + parent: 0 + type: Transform +- uid: 3175 + type: MountainRock + components: + - pos: 118.5,-5.5 + parent: 0 + type: Transform +- uid: 3176 + type: MountainRock + components: + - pos: 118.5,-6.5 + parent: 0 + type: Transform +- uid: 3177 + type: MountainRock + components: + - pos: 118.5,-7.5 + parent: 0 + type: Transform +- uid: 3178 + type: MountainRock + components: + - pos: 118.5,-8.5 + parent: 0 + type: Transform +- uid: 3179 + type: MountainRock + components: + - pos: 118.5,-9.5 + parent: 0 + type: Transform +- uid: 3180 + type: MountainRock + components: + - pos: 118.5,-10.5 + parent: 0 + type: Transform +- uid: 3181 + type: MountainRock + components: + - pos: 118.5,-11.5 + parent: 0 + type: Transform +- uid: 3182 + type: MountainRock + components: + - pos: 118.5,-12.5 + parent: 0 + type: Transform +- uid: 3183 + type: MountainRock + components: + - pos: 118.5,-13.5 + parent: 0 + type: Transform +- uid: 3184 + type: MountainRock + components: + - pos: 118.5,-14.5 + parent: 0 + type: Transform +- uid: 3185 + type: MountainRock + components: + - pos: 118.5,-15.5 + parent: 0 + type: Transform +- uid: 3186 + type: MountainRock + components: + - pos: 118.5,-16.5 + parent: 0 + type: Transform +- uid: 3187 + type: MountainRock + components: + - pos: 118.5,-17.5 + parent: 0 + type: Transform +- uid: 3188 + type: MountainRock + components: + - pos: 118.5,-18.5 + parent: 0 + type: Transform +- uid: 3189 + type: MountainRock + components: + - pos: 118.5,-19.5 + parent: 0 + type: Transform +- uid: 3190 + type: MountainRock + components: + - pos: 118.5,-20.5 + parent: 0 + type: Transform +- uid: 3191 + type: MountainRock + components: + - pos: 118.5,-21.5 + parent: 0 + type: Transform +- uid: 3192 + type: MountainRock + components: + - pos: 118.5,-22.5 + parent: 0 + type: Transform +- uid: 3193 + type: MountainRock + components: + - pos: 118.5,-23.5 + parent: 0 + type: Transform +- uid: 3194 + type: MountainRock + components: + - pos: 118.5,-24.5 + parent: 0 + type: Transform +- uid: 3195 + type: MountainRock + components: + - pos: 118.5,-25.5 + parent: 0 + type: Transform +- uid: 3196 + type: MountainRock + components: + - pos: 118.5,-26.5 + parent: 0 + type: Transform +- uid: 3197 + type: MountainRock + components: + - pos: 118.5,-27.5 + parent: 0 + type: Transform +- uid: 3198 + type: MountainRock + components: + - pos: 118.5,-28.5 + parent: 0 + type: Transform +- uid: 3199 + type: MountainRock + components: + - pos: 118.5,-29.5 + parent: 0 + type: Transform +- uid: 3200 + type: MountainRock + components: + - pos: 118.5,-30.5 + parent: 0 + type: Transform +- uid: 3201 + type: MountainRock + components: + - pos: 118.5,-31.5 + parent: 0 + type: Transform +- uid: 3202 + type: MountainRock + components: + - pos: 118.5,-32.5 + parent: 0 + type: Transform +- uid: 3203 + type: MountainRock + components: + - pos: 118.5,-33.5 + parent: 0 + type: Transform +- uid: 3204 + type: MountainRock + components: + - pos: 118.5,-34.5 + parent: 0 + type: Transform +- uid: 3205 + type: MountainRock + components: + - pos: 118.5,-35.5 + parent: 0 + type: Transform +- uid: 3206 + type: MountainRock + components: + - pos: 118.5,-36.5 + parent: 0 + type: Transform +- uid: 3207 + type: MountainRock + components: + - pos: 118.5,-37.5 + parent: 0 + type: Transform +- uid: 3208 + type: MountainRock + components: + - pos: 118.5,-38.5 + parent: 0 + type: Transform +- uid: 3209 + type: MountainRock + components: + - pos: 118.5,-39.5 + parent: 0 + type: Transform +- uid: 3210 + type: MountainRock + components: + - pos: 118.5,-40.5 + parent: 0 + type: Transform +- uid: 3211 + type: MountainRock + components: + - pos: 118.5,-41.5 + parent: 0 + type: Transform +- uid: 3212 + type: MountainRock + components: + - pos: 118.5,-42.5 + parent: 0 + type: Transform +- uid: 3213 + type: MountainRock + components: + - pos: 118.5,-43.5 + parent: 0 + type: Transform +- uid: 3214 + type: MountainRock + components: + - pos: 118.5,-44.5 + parent: 0 + type: Transform +- uid: 3215 + type: MountainRock + components: + - pos: 118.5,-45.5 + parent: 0 + type: Transform +- uid: 3216 + type: MountainRock + components: + - pos: 118.5,-46.5 + parent: 0 + type: Transform +- uid: 3217 + type: MountainRock + components: + - pos: 119.5,28.5 + parent: 0 + type: Transform +- uid: 3218 + type: MountainRock + components: + - pos: 119.5,27.5 + parent: 0 + type: Transform +- uid: 3219 + type: MountainRock + components: + - pos: 119.5,26.5 + parent: 0 + type: Transform +- uid: 3220 + type: MountainRock + components: + - pos: 119.5,25.5 + parent: 0 + type: Transform +- uid: 3221 + type: MountainRock + components: + - pos: 119.5,24.5 + parent: 0 + type: Transform +- uid: 3222 + type: MountainRock + components: + - pos: 119.5,23.5 + parent: 0 + type: Transform +- uid: 3223 + type: MountainRock + components: + - pos: 119.5,22.5 + parent: 0 + type: Transform +- uid: 3224 + type: MountainRock + components: + - pos: 119.5,21.5 + parent: 0 + type: Transform +- uid: 3225 + type: MountainRock + components: + - pos: 119.5,20.5 + parent: 0 + type: Transform +- uid: 3226 + type: MountainRock + components: + - pos: 119.5,19.5 + parent: 0 + type: Transform +- uid: 3227 + type: MountainRock + components: + - pos: 119.5,18.5 + parent: 0 + type: Transform +- uid: 3228 + type: MountainRock + components: + - pos: 119.5,17.5 + parent: 0 + type: Transform +- uid: 3229 + type: MountainRock + components: + - pos: 119.5,16.5 + parent: 0 + type: Transform +- uid: 3230 + type: MountainRock + components: + - pos: 119.5,15.5 + parent: 0 + type: Transform +- uid: 3231 + type: MountainRock + components: + - pos: 119.5,14.5 + parent: 0 + type: Transform +- uid: 3232 + type: MountainRock + components: + - pos: 119.5,13.5 + parent: 0 + type: Transform +- uid: 3233 + type: MountainRock + components: + - pos: 119.5,12.5 + parent: 0 + type: Transform +- uid: 3234 + type: MountainRock + components: + - pos: 119.5,11.5 + parent: 0 + type: Transform +- uid: 3235 + type: MountainRock + components: + - pos: 119.5,10.5 + parent: 0 + type: Transform +- uid: 3236 + type: MountainRock + components: + - pos: 119.5,9.5 + parent: 0 + type: Transform +- uid: 3237 + type: MountainRock + components: + - pos: 119.5,8.5 + parent: 0 + type: Transform +- uid: 3238 + type: MountainRock + components: + - pos: 119.5,7.5 + parent: 0 + type: Transform +- uid: 3239 + type: MountainRock + components: + - pos: 119.5,6.5 + parent: 0 + type: Transform +- uid: 3240 + type: MountainRock + components: + - pos: 119.5,5.5 + parent: 0 + type: Transform +- uid: 3241 + type: MountainRock + components: + - pos: 119.5,4.5 + parent: 0 + type: Transform +- uid: 3242 + type: MountainRock + components: + - pos: 119.5,3.5 + parent: 0 + type: Transform +- uid: 3243 + type: MountainRock + components: + - pos: 119.5,2.5 + parent: 0 + type: Transform +- uid: 3244 + type: MountainRock + components: + - pos: 119.5,1.5 + parent: 0 + type: Transform +- uid: 3245 + type: MountainRock + components: + - pos: 119.5,0.5 + parent: 0 + type: Transform +- uid: 3246 + type: MountainRock + components: + - pos: 119.5,-0.5 + parent: 0 + type: Transform +- uid: 3247 + type: MountainRock + components: + - pos: 119.5,-1.5 + parent: 0 + type: Transform +- uid: 3248 + type: MountainRock + components: + - pos: 119.5,-2.5 + parent: 0 + type: Transform +- uid: 3249 + type: MountainRock + components: + - pos: 119.5,-3.5 + parent: 0 + type: Transform +- uid: 3250 + type: MountainRock + components: + - pos: 119.5,-4.5 + parent: 0 + type: Transform +- uid: 3251 + type: MountainRock + components: + - pos: 119.5,-5.5 + parent: 0 + type: Transform +- uid: 3252 + type: MountainRock + components: + - pos: 119.5,-6.5 + parent: 0 + type: Transform +- uid: 3253 + type: MountainRock + components: + - pos: 119.5,-7.5 + parent: 0 + type: Transform +- uid: 3254 + type: MountainRock + components: + - pos: 119.5,-8.5 + parent: 0 + type: Transform +- uid: 3255 + type: MountainRock + components: + - pos: 119.5,-9.5 + parent: 0 + type: Transform +- uid: 3256 + type: MountainRock + components: + - pos: 119.5,-10.5 + parent: 0 + type: Transform +- uid: 3257 + type: MountainRock + components: + - pos: 119.5,-11.5 + parent: 0 + type: Transform +- uid: 3258 + type: MountainRock + components: + - pos: 119.5,-12.5 + parent: 0 + type: Transform +- uid: 3259 + type: MountainRock + components: + - pos: 119.5,-13.5 + parent: 0 + type: Transform +- uid: 3260 + type: MountainRock + components: + - pos: 119.5,-14.5 + parent: 0 + type: Transform +- uid: 3261 + type: MountainRock + components: + - pos: 119.5,-15.5 + parent: 0 + type: Transform +- uid: 3262 + type: MountainRock + components: + - pos: 119.5,-16.5 + parent: 0 + type: Transform +- uid: 3263 + type: MountainRock + components: + - pos: 119.5,-17.5 + parent: 0 + type: Transform +- uid: 3264 + type: MountainRock + components: + - pos: 119.5,-18.5 + parent: 0 + type: Transform +- uid: 3265 + type: MountainRock + components: + - pos: 119.5,-19.5 + parent: 0 + type: Transform +- uid: 3266 + type: MountainRock + components: + - pos: 119.5,-20.5 + parent: 0 + type: Transform +- uid: 3267 + type: MountainRock + components: + - pos: 119.5,-21.5 + parent: 0 + type: Transform +- uid: 3268 + type: MountainRock + components: + - pos: 119.5,-22.5 + parent: 0 + type: Transform +- uid: 3269 + type: MountainRock + components: + - pos: 119.5,-23.5 + parent: 0 + type: Transform +- uid: 3270 + type: MountainRock + components: + - pos: 119.5,-24.5 + parent: 0 + type: Transform +- uid: 3271 + type: MountainRock + components: + - pos: 119.5,-25.5 + parent: 0 + type: Transform +- uid: 3272 + type: MountainRock + components: + - pos: 119.5,-26.5 + parent: 0 + type: Transform +- uid: 3273 + type: MountainRock + components: + - pos: 119.5,-27.5 + parent: 0 + type: Transform +- uid: 3274 + type: MountainRock + components: + - pos: 119.5,-28.5 + parent: 0 + type: Transform +- uid: 3275 + type: MountainRock + components: + - pos: 119.5,-29.5 + parent: 0 + type: Transform +- uid: 3276 + type: MountainRock + components: + - pos: 119.5,-30.5 + parent: 0 + type: Transform +- uid: 3277 + type: MountainRock + components: + - pos: 119.5,-31.5 + parent: 0 + type: Transform +- uid: 3278 + type: MountainRock + components: + - pos: 119.5,-32.5 + parent: 0 + type: Transform +- uid: 3279 + type: MountainRock + components: + - pos: 119.5,-33.5 + parent: 0 + type: Transform +- uid: 3280 + type: MountainRock + components: + - pos: 119.5,-34.5 + parent: 0 + type: Transform +- uid: 3281 + type: MountainRock + components: + - pos: 119.5,-35.5 + parent: 0 + type: Transform +- uid: 3282 + type: MountainRock + components: + - pos: 119.5,-36.5 + parent: 0 + type: Transform +- uid: 3283 + type: MountainRock + components: + - pos: 119.5,-37.5 + parent: 0 + type: Transform +- uid: 3284 + type: MountainRock + components: + - pos: 119.5,-38.5 + parent: 0 + type: Transform +- uid: 3285 + type: MountainRock + components: + - pos: 119.5,-39.5 + parent: 0 + type: Transform +- uid: 3286 + type: MountainRock + components: + - pos: 119.5,-40.5 + parent: 0 + type: Transform +- uid: 3287 + type: MountainRock + components: + - pos: 119.5,-41.5 + parent: 0 + type: Transform +- uid: 3288 + type: MountainRock + components: + - pos: 119.5,-42.5 + parent: 0 + type: Transform +- uid: 3289 + type: MountainRock + components: + - pos: 119.5,-43.5 + parent: 0 + type: Transform +- uid: 3290 + type: MountainRock + components: + - pos: 119.5,-44.5 + parent: 0 + type: Transform +- uid: 3291 + type: MountainRock + components: + - pos: 119.5,-45.5 + parent: 0 + type: Transform +- uid: 3292 + type: MountainRock + components: + - pos: 119.5,-46.5 + parent: 0 + type: Transform +- uid: 3293 + type: MountainRock + components: + - pos: 120.5,28.5 + parent: 0 + type: Transform +- uid: 3294 + type: MountainRock + components: + - pos: 120.5,27.5 + parent: 0 + type: Transform +- uid: 3295 + type: MountainRock + components: + - pos: 120.5,26.5 + parent: 0 + type: Transform +- uid: 3296 + type: MountainRock + components: + - pos: 120.5,25.5 + parent: 0 + type: Transform +- uid: 3297 + type: MountainRock + components: + - pos: 120.5,24.5 + parent: 0 + type: Transform +- uid: 3298 + type: MountainRock + components: + - pos: 120.5,23.5 + parent: 0 + type: Transform +- uid: 3299 + type: MountainRock + components: + - pos: 120.5,22.5 + parent: 0 + type: Transform +- uid: 3300 + type: MountainRock + components: + - pos: 120.5,21.5 + parent: 0 + type: Transform +- uid: 3301 + type: MountainRock + components: + - pos: 120.5,20.5 + parent: 0 + type: Transform +- uid: 3302 + type: MountainRock + components: + - pos: 120.5,19.5 + parent: 0 + type: Transform +- uid: 3303 + type: MountainRock + components: + - pos: 120.5,18.5 + parent: 0 + type: Transform +- uid: 3304 + type: MountainRock + components: + - pos: 120.5,17.5 + parent: 0 + type: Transform +- uid: 3305 + type: MountainRock + components: + - pos: 120.5,16.5 + parent: 0 + type: Transform +- uid: 3306 + type: MountainRock + components: + - pos: 120.5,15.5 + parent: 0 + type: Transform +- uid: 3307 + type: MountainRock + components: + - pos: 120.5,14.5 + parent: 0 + type: Transform +- uid: 3308 + type: MountainRock + components: + - pos: 120.5,13.5 + parent: 0 + type: Transform +- uid: 3309 + type: MountainRock + components: + - pos: 120.5,12.5 + parent: 0 + type: Transform +- uid: 3310 + type: MountainRock + components: + - pos: 120.5,11.5 + parent: 0 + type: Transform +- uid: 3311 + type: MountainRock + components: + - pos: 120.5,10.5 + parent: 0 + type: Transform +- uid: 3312 + type: MountainRock + components: + - pos: 120.5,9.5 + parent: 0 + type: Transform +- uid: 3313 + type: MountainRock + components: + - pos: 120.5,8.5 + parent: 0 + type: Transform +- uid: 3314 + type: MountainRock + components: + - pos: 120.5,7.5 + parent: 0 + type: Transform +- uid: 3315 + type: MountainRock + components: + - pos: 120.5,6.5 + parent: 0 + type: Transform +- uid: 3316 + type: MountainRock + components: + - pos: 120.5,5.5 + parent: 0 + type: Transform +- uid: 3317 + type: MountainRock + components: + - pos: 120.5,4.5 + parent: 0 + type: Transform +- uid: 3318 + type: MountainRock + components: + - pos: 120.5,3.5 + parent: 0 + type: Transform +- uid: 3319 + type: MountainRock + components: + - pos: 120.5,2.5 + parent: 0 + type: Transform +- uid: 3320 + type: MountainRock + components: + - pos: 120.5,1.5 + parent: 0 + type: Transform +- uid: 3321 + type: MountainRock + components: + - pos: 120.5,0.5 + parent: 0 + type: Transform +- uid: 3322 + type: MountainRock + components: + - pos: 120.5,-0.5 + parent: 0 + type: Transform +- uid: 3323 + type: MountainRock + components: + - pos: 120.5,-1.5 + parent: 0 + type: Transform +- uid: 3324 + type: MountainRock + components: + - pos: 120.5,-2.5 + parent: 0 + type: Transform +- uid: 3325 + type: MountainRock + components: + - pos: 120.5,-3.5 + parent: 0 + type: Transform +- uid: 3326 + type: MountainRock + components: + - pos: 120.5,-4.5 + parent: 0 + type: Transform +- uid: 3327 + type: MountainRock + components: + - pos: 120.5,-5.5 + parent: 0 + type: Transform +- uid: 3328 + type: MountainRock + components: + - pos: 120.5,-6.5 + parent: 0 + type: Transform +- uid: 3329 + type: MountainRock + components: + - pos: 120.5,-7.5 + parent: 0 + type: Transform +- uid: 3330 + type: MountainRock + components: + - pos: 120.5,-8.5 + parent: 0 + type: Transform +- uid: 3331 + type: MountainRock + components: + - pos: 120.5,-9.5 + parent: 0 + type: Transform +- uid: 3332 + type: MountainRock + components: + - pos: 120.5,-10.5 + parent: 0 + type: Transform +- uid: 3333 + type: MountainRock + components: + - pos: 120.5,-11.5 + parent: 0 + type: Transform +- uid: 3334 + type: MountainRock + components: + - pos: 120.5,-12.5 + parent: 0 + type: Transform +- uid: 3335 + type: MountainRock + components: + - pos: 120.5,-13.5 + parent: 0 + type: Transform +- uid: 3336 + type: MountainRock + components: + - pos: 120.5,-14.5 + parent: 0 + type: Transform +- uid: 3337 + type: MountainRock + components: + - pos: 120.5,-15.5 + parent: 0 + type: Transform +- uid: 3338 + type: MountainRock + components: + - pos: 120.5,-16.5 + parent: 0 + type: Transform +- uid: 3339 + type: MountainRock + components: + - pos: 120.5,-17.5 + parent: 0 + type: Transform +- uid: 3340 + type: MountainRock + components: + - pos: 120.5,-18.5 + parent: 0 + type: Transform +- uid: 3341 + type: MountainRock + components: + - pos: 120.5,-19.5 + parent: 0 + type: Transform +- uid: 3342 + type: MountainRock + components: + - pos: 120.5,-20.5 + parent: 0 + type: Transform +- uid: 3343 + type: MountainRock + components: + - pos: 120.5,-21.5 + parent: 0 + type: Transform +- uid: 3344 + type: MountainRock + components: + - pos: 120.5,-22.5 + parent: 0 + type: Transform +- uid: 3345 + type: MountainRock + components: + - pos: 120.5,-23.5 + parent: 0 + type: Transform +- uid: 3346 + type: MountainRock + components: + - pos: 120.5,-24.5 + parent: 0 + type: Transform +- uid: 3347 + type: MountainRock + components: + - pos: 120.5,-25.5 + parent: 0 + type: Transform +- uid: 3348 + type: MountainRock + components: + - pos: 120.5,-26.5 + parent: 0 + type: Transform +- uid: 3349 + type: MountainRock + components: + - pos: 120.5,-27.5 + parent: 0 + type: Transform +- uid: 3350 + type: MountainRock + components: + - pos: 120.5,-28.5 + parent: 0 + type: Transform +- uid: 3351 + type: MountainRock + components: + - pos: 120.5,-29.5 + parent: 0 + type: Transform +- uid: 3352 + type: MountainRock + components: + - pos: 120.5,-30.5 + parent: 0 + type: Transform +- uid: 3353 + type: MountainRock + components: + - pos: 120.5,-31.5 + parent: 0 + type: Transform +- uid: 3354 + type: MountainRock + components: + - pos: 120.5,-32.5 + parent: 0 + type: Transform +- uid: 3355 + type: MountainRock + components: + - pos: 120.5,-33.5 + parent: 0 + type: Transform +- uid: 3356 + type: MountainRock + components: + - pos: 120.5,-34.5 + parent: 0 + type: Transform +- uid: 3357 + type: MountainRock + components: + - pos: 120.5,-35.5 + parent: 0 + type: Transform +- uid: 3358 + type: MountainRock + components: + - pos: 120.5,-36.5 + parent: 0 + type: Transform +- uid: 3359 + type: MountainRock + components: + - pos: 120.5,-37.5 + parent: 0 + type: Transform +- uid: 3360 + type: MountainRock + components: + - pos: 120.5,-38.5 + parent: 0 + type: Transform +- uid: 3361 + type: MountainRock + components: + - pos: 120.5,-39.5 + parent: 0 + type: Transform +- uid: 3362 + type: MountainRock + components: + - pos: 120.5,-40.5 + parent: 0 + type: Transform +- uid: 3363 + type: MountainRock + components: + - pos: 120.5,-41.5 + parent: 0 + type: Transform +- uid: 3364 + type: MountainRock + components: + - pos: 120.5,-42.5 + parent: 0 + type: Transform +- uid: 3365 + type: MountainRock + components: + - pos: 120.5,-43.5 + parent: 0 + type: Transform +- uid: 3366 + type: MountainRock + components: + - pos: 120.5,-44.5 + parent: 0 + type: Transform +- uid: 3367 + type: MountainRock + components: + - pos: 120.5,-45.5 + parent: 0 + type: Transform +- uid: 3368 + type: MountainRock + components: + - pos: 120.5,-46.5 + parent: 0 + type: Transform +- uid: 3369 + type: MountainRock + components: + - pos: 121.5,28.5 + parent: 0 + type: Transform +- uid: 3370 + type: MountainRock + components: + - pos: 121.5,27.5 + parent: 0 + type: Transform +- uid: 3371 + type: MountainRock + components: + - pos: 121.5,26.5 + parent: 0 + type: Transform +- uid: 3372 + type: MountainRock + components: + - pos: 121.5,25.5 + parent: 0 + type: Transform +- uid: 3373 + type: MountainRock + components: + - pos: 121.5,24.5 + parent: 0 + type: Transform +- uid: 3374 + type: MountainRock + components: + - pos: 121.5,23.5 + parent: 0 + type: Transform +- uid: 3375 + type: MountainRock + components: + - pos: 121.5,22.5 + parent: 0 + type: Transform +- uid: 3376 + type: MountainRock + components: + - pos: 121.5,21.5 + parent: 0 + type: Transform +- uid: 3377 + type: MountainRock + components: + - pos: 121.5,20.5 + parent: 0 + type: Transform +- uid: 3378 + type: MountainRock + components: + - pos: 121.5,19.5 + parent: 0 + type: Transform +- uid: 3379 + type: MountainRock + components: + - pos: 121.5,18.5 + parent: 0 + type: Transform +- uid: 3380 + type: MountainRock + components: + - pos: 121.5,17.5 + parent: 0 + type: Transform +- uid: 3381 + type: MountainRock + components: + - pos: 121.5,16.5 + parent: 0 + type: Transform +- uid: 3382 + type: MountainRock + components: + - pos: 121.5,15.5 + parent: 0 + type: Transform +- uid: 3383 + type: MountainRock + components: + - pos: 121.5,14.5 + parent: 0 + type: Transform +- uid: 3384 + type: MountainRock + components: + - pos: 121.5,13.5 + parent: 0 + type: Transform +- uid: 3385 + type: MountainRock + components: + - pos: 121.5,12.5 + parent: 0 + type: Transform +- uid: 3386 + type: MountainRock + components: + - pos: 121.5,11.5 + parent: 0 + type: Transform +- uid: 3387 + type: MountainRock + components: + - pos: 121.5,10.5 + parent: 0 + type: Transform +- uid: 3388 + type: MountainRock + components: + - pos: 121.5,9.5 + parent: 0 + type: Transform +- uid: 3389 + type: MountainRock + components: + - pos: 121.5,8.5 + parent: 0 + type: Transform +- uid: 3390 + type: MountainRock + components: + - pos: 121.5,7.5 + parent: 0 + type: Transform +- uid: 3391 + type: MountainRock + components: + - pos: 121.5,6.5 + parent: 0 + type: Transform +- uid: 3392 + type: MountainRock + components: + - pos: 121.5,5.5 + parent: 0 + type: Transform +- uid: 3393 + type: MountainRock + components: + - pos: 121.5,4.5 + parent: 0 + type: Transform +- uid: 3394 + type: MountainRock + components: + - pos: 121.5,3.5 + parent: 0 + type: Transform +- uid: 3395 + type: MountainRock + components: + - pos: 121.5,2.5 + parent: 0 + type: Transform +- uid: 3396 + type: MountainRock + components: + - pos: 121.5,1.5 + parent: 0 + type: Transform +- uid: 3397 + type: MountainRock + components: + - pos: 121.5,0.5 + parent: 0 + type: Transform +- uid: 3398 + type: MountainRock + components: + - pos: 121.5,-0.5 + parent: 0 + type: Transform +- uid: 3399 + type: MountainRock + components: + - pos: 121.5,-1.5 + parent: 0 + type: Transform +- uid: 3400 + type: MountainRock + components: + - pos: 121.5,-2.5 + parent: 0 + type: Transform +- uid: 3401 + type: MountainRock + components: + - pos: 121.5,-3.5 + parent: 0 + type: Transform +- uid: 3402 + type: MountainRock + components: + - pos: 121.5,-4.5 + parent: 0 + type: Transform +- uid: 3403 + type: MountainRock + components: + - pos: 121.5,-5.5 + parent: 0 + type: Transform +- uid: 3404 + type: MountainRock + components: + - pos: 121.5,-6.5 + parent: 0 + type: Transform +- uid: 3405 + type: MountainRock + components: + - pos: 121.5,-7.5 + parent: 0 + type: Transform +- uid: 3406 + type: MountainRock + components: + - pos: 121.5,-8.5 + parent: 0 + type: Transform +- uid: 3407 + type: MountainRock + components: + - pos: 121.5,-9.5 + parent: 0 + type: Transform +- uid: 3408 + type: MountainRock + components: + - pos: 121.5,-10.5 + parent: 0 + type: Transform +- uid: 3409 + type: MountainRock + components: + - pos: 121.5,-11.5 + parent: 0 + type: Transform +- uid: 3410 + type: MountainRock + components: + - pos: 121.5,-12.5 + parent: 0 + type: Transform +- uid: 3411 + type: MountainRock + components: + - pos: 121.5,-13.5 + parent: 0 + type: Transform +- uid: 3412 + type: MountainRock + components: + - pos: 121.5,-14.5 + parent: 0 + type: Transform +- uid: 3413 + type: MountainRock + components: + - pos: 121.5,-15.5 + parent: 0 + type: Transform +- uid: 3414 + type: MountainRock + components: + - pos: 121.5,-16.5 + parent: 0 + type: Transform +- uid: 3415 + type: MountainRock + components: + - pos: 121.5,-17.5 + parent: 0 + type: Transform +- uid: 3416 + type: MountainRock + components: + - pos: 121.5,-18.5 + parent: 0 + type: Transform +- uid: 3417 + type: MountainRock + components: + - pos: 121.5,-19.5 + parent: 0 + type: Transform +- uid: 3418 + type: MountainRock + components: + - pos: 121.5,-20.5 + parent: 0 + type: Transform +- uid: 3419 + type: MountainRock + components: + - pos: 121.5,-21.5 + parent: 0 + type: Transform +- uid: 3420 + type: MountainRock + components: + - pos: 121.5,-22.5 + parent: 0 + type: Transform +- uid: 3421 + type: MountainRock + components: + - pos: 121.5,-23.5 + parent: 0 + type: Transform +- uid: 3422 + type: MountainRock + components: + - pos: 121.5,-24.5 + parent: 0 + type: Transform +- uid: 3423 + type: MountainRock + components: + - pos: 121.5,-25.5 + parent: 0 + type: Transform +- uid: 3424 + type: MountainRock + components: + - pos: 121.5,-26.5 + parent: 0 + type: Transform +- uid: 3425 + type: MountainRock + components: + - pos: 121.5,-27.5 + parent: 0 + type: Transform +- uid: 3426 + type: MountainRock + components: + - pos: 121.5,-28.5 + parent: 0 + type: Transform +- uid: 3427 + type: MountainRock + components: + - pos: 121.5,-29.5 + parent: 0 + type: Transform +- uid: 3428 + type: MountainRock + components: + - pos: 121.5,-30.5 + parent: 0 + type: Transform +- uid: 3429 + type: MountainRock + components: + - pos: 121.5,-31.5 + parent: 0 + type: Transform +- uid: 3430 + type: MountainRock + components: + - pos: 121.5,-32.5 + parent: 0 + type: Transform +- uid: 3431 + type: MountainRock + components: + - pos: 121.5,-33.5 + parent: 0 + type: Transform +- uid: 3432 + type: MountainRock + components: + - pos: 121.5,-34.5 + parent: 0 + type: Transform +- uid: 3433 + type: MountainRock + components: + - pos: 121.5,-35.5 + parent: 0 + type: Transform +- uid: 3434 + type: MountainRock + components: + - pos: 121.5,-36.5 + parent: 0 + type: Transform +- uid: 3435 + type: MountainRock + components: + - pos: 121.5,-37.5 + parent: 0 + type: Transform +- uid: 3436 + type: MountainRock + components: + - pos: 121.5,-38.5 + parent: 0 + type: Transform +- uid: 3437 + type: MountainRock + components: + - pos: 121.5,-39.5 + parent: 0 + type: Transform +- uid: 3438 + type: MountainRock + components: + - pos: 121.5,-40.5 + parent: 0 + type: Transform +- uid: 3439 + type: MountainRock + components: + - pos: 121.5,-41.5 + parent: 0 + type: Transform +- uid: 3440 + type: MountainRock + components: + - pos: 121.5,-42.5 + parent: 0 + type: Transform +- uid: 3441 + type: MountainRock + components: + - pos: 121.5,-43.5 + parent: 0 + type: Transform +- uid: 3442 + type: MountainRock + components: + - pos: 121.5,-44.5 + parent: 0 + type: Transform +- uid: 3443 + type: MountainRock + components: + - pos: 121.5,-45.5 + parent: 0 + type: Transform +- uid: 3444 + type: MountainRock + components: + - pos: 121.5,-46.5 + parent: 0 + type: Transform +- uid: 3445 + type: MountainRock + components: + - pos: 122.5,28.5 + parent: 0 + type: Transform +- uid: 3446 + type: MountainRock + components: + - pos: 122.5,27.5 + parent: 0 + type: Transform +- uid: 3447 + type: MountainRock + components: + - pos: 122.5,26.5 + parent: 0 + type: Transform +- uid: 3448 + type: MountainRock + components: + - pos: 122.5,25.5 + parent: 0 + type: Transform +- uid: 3449 + type: MountainRock + components: + - pos: 122.5,24.5 + parent: 0 + type: Transform +- uid: 3450 + type: MountainRock + components: + - pos: 122.5,23.5 + parent: 0 + type: Transform +- uid: 3451 + type: MountainRock + components: + - pos: 122.5,22.5 + parent: 0 + type: Transform +- uid: 3452 + type: MountainRock + components: + - pos: 122.5,21.5 + parent: 0 + type: Transform +- uid: 3453 + type: MountainRock + components: + - pos: 122.5,20.5 + parent: 0 + type: Transform +- uid: 3454 + type: MountainRock + components: + - pos: 122.5,19.5 + parent: 0 + type: Transform +- uid: 3455 + type: MountainRock + components: + - pos: 122.5,18.5 + parent: 0 + type: Transform +- uid: 3456 + type: MountainRock + components: + - pos: 122.5,17.5 + parent: 0 + type: Transform +- uid: 3457 + type: MountainRock + components: + - pos: 122.5,16.5 + parent: 0 + type: Transform +- uid: 3458 + type: MountainRock + components: + - pos: 122.5,15.5 + parent: 0 + type: Transform +- uid: 3459 + type: MountainRock + components: + - pos: 122.5,14.5 + parent: 0 + type: Transform +- uid: 3460 + type: MountainRock + components: + - pos: 122.5,13.5 + parent: 0 + type: Transform +- uid: 3461 + type: MountainRock + components: + - pos: 122.5,12.5 + parent: 0 + type: Transform +- uid: 3462 + type: MountainRock + components: + - pos: 122.5,11.5 + parent: 0 + type: Transform +- uid: 3463 + type: MountainRock + components: + - pos: 122.5,10.5 + parent: 0 + type: Transform +- uid: 3464 + type: MountainRock + components: + - pos: 122.5,9.5 + parent: 0 + type: Transform +- uid: 3465 + type: MountainRock + components: + - pos: 122.5,8.5 + parent: 0 + type: Transform +- uid: 3466 + type: MountainRock + components: + - pos: 122.5,7.5 + parent: 0 + type: Transform +- uid: 3467 + type: MountainRock + components: + - pos: 122.5,6.5 + parent: 0 + type: Transform +- uid: 3468 + type: MountainRock + components: + - pos: 122.5,5.5 + parent: 0 + type: Transform +- uid: 3469 + type: MountainRock + components: + - pos: 122.5,4.5 + parent: 0 + type: Transform +- uid: 3470 + type: MountainRock + components: + - pos: 122.5,3.5 + parent: 0 + type: Transform +- uid: 3471 + type: MountainRock + components: + - pos: 122.5,2.5 + parent: 0 + type: Transform +- uid: 3472 + type: MountainRock + components: + - pos: 122.5,1.5 + parent: 0 + type: Transform +- uid: 3473 + type: MountainRock + components: + - pos: 122.5,0.5 + parent: 0 + type: Transform +- uid: 3474 + type: MountainRock + components: + - pos: 122.5,-0.5 + parent: 0 + type: Transform +- uid: 3475 + type: MountainRock + components: + - pos: 122.5,-1.5 + parent: 0 + type: Transform +- uid: 3476 + type: MountainRock + components: + - pos: 122.5,-2.5 + parent: 0 + type: Transform +- uid: 3477 + type: MountainRock + components: + - pos: 122.5,-3.5 + parent: 0 + type: Transform +- uid: 3478 + type: MountainRock + components: + - pos: 122.5,-4.5 + parent: 0 + type: Transform +- uid: 3479 + type: MountainRock + components: + - pos: 122.5,-5.5 + parent: 0 + type: Transform +- uid: 3480 + type: MountainRock + components: + - pos: 122.5,-6.5 + parent: 0 + type: Transform +- uid: 3481 + type: MountainRock + components: + - pos: 122.5,-7.5 + parent: 0 + type: Transform +- uid: 3482 + type: MountainRock + components: + - pos: 122.5,-8.5 + parent: 0 + type: Transform +- uid: 3483 + type: MountainRock + components: + - pos: 122.5,-9.5 + parent: 0 + type: Transform +- uid: 3484 + type: MountainRock + components: + - pos: 122.5,-10.5 + parent: 0 + type: Transform +- uid: 3485 + type: MountainRock + components: + - pos: 122.5,-11.5 + parent: 0 + type: Transform +- uid: 3486 + type: MountainRock + components: + - pos: 122.5,-12.5 + parent: 0 + type: Transform +- uid: 3487 + type: MountainRock + components: + - pos: 122.5,-13.5 + parent: 0 + type: Transform +- uid: 3488 + type: MountainRock + components: + - pos: 122.5,-14.5 + parent: 0 + type: Transform +- uid: 3489 + type: MountainRock + components: + - pos: 122.5,-15.5 + parent: 0 + type: Transform +- uid: 3490 + type: MountainRock + components: + - pos: 122.5,-16.5 + parent: 0 + type: Transform +- uid: 3491 + type: MountainRock + components: + - pos: 122.5,-17.5 + parent: 0 + type: Transform +- uid: 3492 + type: MountainRock + components: + - pos: 122.5,-18.5 + parent: 0 + type: Transform +- uid: 3493 + type: MountainRock + components: + - pos: 122.5,-19.5 + parent: 0 + type: Transform +- uid: 3494 + type: MountainRock + components: + - pos: 122.5,-20.5 + parent: 0 + type: Transform +- uid: 3495 + type: MountainRock + components: + - pos: 122.5,-21.5 + parent: 0 + type: Transform +- uid: 3496 + type: MountainRock + components: + - pos: 122.5,-22.5 + parent: 0 + type: Transform +- uid: 3497 + type: MountainRock + components: + - pos: 122.5,-23.5 + parent: 0 + type: Transform +- uid: 3498 + type: MountainRock + components: + - pos: 122.5,-24.5 + parent: 0 + type: Transform +- uid: 3499 + type: MountainRock + components: + - pos: 122.5,-25.5 + parent: 0 + type: Transform +- uid: 3500 + type: MountainRock + components: + - pos: 122.5,-26.5 + parent: 0 + type: Transform +- uid: 3501 + type: MountainRock + components: + - pos: 122.5,-27.5 + parent: 0 + type: Transform +- uid: 3502 + type: MountainRock + components: + - pos: 122.5,-28.5 + parent: 0 + type: Transform +- uid: 3503 + type: MountainRock + components: + - pos: 122.5,-29.5 + parent: 0 + type: Transform +- uid: 3504 + type: MountainRock + components: + - pos: 122.5,-30.5 + parent: 0 + type: Transform +- uid: 3505 + type: MountainRock + components: + - pos: 122.5,-31.5 + parent: 0 + type: Transform +- uid: 3506 + type: MountainRock + components: + - pos: 122.5,-32.5 + parent: 0 + type: Transform +- uid: 3507 + type: MountainRock + components: + - pos: 122.5,-33.5 + parent: 0 + type: Transform +- uid: 3508 + type: MountainRock + components: + - pos: 122.5,-34.5 + parent: 0 + type: Transform +- uid: 3509 + type: MountainRock + components: + - pos: 122.5,-35.5 + parent: 0 + type: Transform +- uid: 3510 + type: MountainRock + components: + - pos: 122.5,-36.5 + parent: 0 + type: Transform +- uid: 3511 + type: MountainRock + components: + - pos: 122.5,-37.5 + parent: 0 + type: Transform +- uid: 3512 + type: MountainRock + components: + - pos: 122.5,-38.5 + parent: 0 + type: Transform +- uid: 3513 + type: MountainRock + components: + - pos: 122.5,-39.5 + parent: 0 + type: Transform +- uid: 3514 + type: MountainRock + components: + - pos: 122.5,-40.5 + parent: 0 + type: Transform +- uid: 3515 + type: MountainRock + components: + - pos: 122.5,-41.5 + parent: 0 + type: Transform +- uid: 3516 + type: MountainRock + components: + - pos: 122.5,-42.5 + parent: 0 + type: Transform +- uid: 3517 + type: MountainRock + components: + - pos: 122.5,-43.5 + parent: 0 + type: Transform +- uid: 3518 + type: MountainRock + components: + - pos: 122.5,-44.5 + parent: 0 + type: Transform +- uid: 3519 + type: MountainRock + components: + - pos: 122.5,-45.5 + parent: 0 + type: Transform +- uid: 3520 + type: MountainRock + components: + - pos: 122.5,-46.5 + parent: 0 + type: Transform +- uid: 3521 + type: MountainRock + components: + - pos: 123.5,28.5 + parent: 0 + type: Transform +- uid: 3522 + type: MountainRock + components: + - pos: 123.5,27.5 + parent: 0 + type: Transform +- uid: 3523 + type: MountainRock + components: + - pos: 123.5,26.5 + parent: 0 + type: Transform +- uid: 3524 + type: MountainRock + components: + - pos: 123.5,25.5 + parent: 0 + type: Transform +- uid: 3525 + type: MountainRock + components: + - pos: 123.5,24.5 + parent: 0 + type: Transform +- uid: 3526 + type: MountainRock + components: + - pos: 123.5,23.5 + parent: 0 + type: Transform +- uid: 3527 + type: MountainRock + components: + - pos: 123.5,22.5 + parent: 0 + type: Transform +- uid: 3528 + type: MountainRock + components: + - pos: 123.5,21.5 + parent: 0 + type: Transform +- uid: 3529 + type: MountainRock + components: + - pos: 123.5,20.5 + parent: 0 + type: Transform +- uid: 3530 + type: MountainRock + components: + - pos: 123.5,19.5 + parent: 0 + type: Transform +- uid: 3531 + type: MountainRock + components: + - pos: 123.5,18.5 + parent: 0 + type: Transform +- uid: 3532 + type: MountainRock + components: + - pos: 123.5,17.5 + parent: 0 + type: Transform +- uid: 3533 + type: MountainRock + components: + - pos: 123.5,16.5 + parent: 0 + type: Transform +- uid: 3534 + type: MountainRock + components: + - pos: 123.5,15.5 + parent: 0 + type: Transform +- uid: 3535 + type: MountainRock + components: + - pos: 123.5,14.5 + parent: 0 + type: Transform +- uid: 3536 + type: MountainRock + components: + - pos: 123.5,13.5 + parent: 0 + type: Transform +- uid: 3537 + type: MountainRock + components: + - pos: 123.5,12.5 + parent: 0 + type: Transform +- uid: 3538 + type: MountainRock + components: + - pos: 123.5,11.5 + parent: 0 + type: Transform +- uid: 3539 + type: MountainRock + components: + - pos: 123.5,10.5 + parent: 0 + type: Transform +- uid: 3540 + type: MountainRock + components: + - pos: 123.5,9.5 + parent: 0 + type: Transform +- uid: 3541 + type: MountainRock + components: + - pos: 123.5,8.5 + parent: 0 + type: Transform +- uid: 3542 + type: MountainRock + components: + - pos: 123.5,7.5 + parent: 0 + type: Transform +- uid: 3543 + type: MountainRock + components: + - pos: 123.5,6.5 + parent: 0 + type: Transform +- uid: 3544 + type: MountainRock + components: + - pos: 123.5,5.5 + parent: 0 + type: Transform +- uid: 3545 + type: MountainRock + components: + - pos: 123.5,4.5 + parent: 0 + type: Transform +- uid: 3546 + type: MountainRock + components: + - pos: 123.5,3.5 + parent: 0 + type: Transform +- uid: 3547 + type: MountainRock + components: + - pos: 123.5,2.5 + parent: 0 + type: Transform +- uid: 3548 + type: MountainRock + components: + - pos: 123.5,1.5 + parent: 0 + type: Transform +- uid: 3549 + type: MountainRock + components: + - pos: 123.5,0.5 + parent: 0 + type: Transform +- uid: 3550 + type: MountainRock + components: + - pos: 123.5,-0.5 + parent: 0 + type: Transform +- uid: 3551 + type: MountainRock + components: + - pos: 123.5,-1.5 + parent: 0 + type: Transform +- uid: 3552 + type: MountainRock + components: + - pos: 123.5,-2.5 + parent: 0 + type: Transform +- uid: 3553 + type: MountainRock + components: + - pos: 123.5,-3.5 + parent: 0 + type: Transform +- uid: 3554 + type: MountainRock + components: + - pos: 123.5,-4.5 + parent: 0 + type: Transform +- uid: 3555 + type: MountainRock + components: + - pos: 123.5,-5.5 + parent: 0 + type: Transform +- uid: 3556 + type: MountainRock + components: + - pos: 123.5,-6.5 + parent: 0 + type: Transform +- uid: 3557 + type: MountainRock + components: + - pos: 123.5,-7.5 + parent: 0 + type: Transform +- uid: 3558 + type: MountainRock + components: + - pos: 123.5,-8.5 + parent: 0 + type: Transform +- uid: 3559 + type: MountainRock + components: + - pos: 123.5,-9.5 + parent: 0 + type: Transform +- uid: 3560 + type: MountainRock + components: + - pos: 123.5,-10.5 + parent: 0 + type: Transform +- uid: 3561 + type: MountainRock + components: + - pos: 123.5,-11.5 + parent: 0 + type: Transform +- uid: 3562 + type: MountainRock + components: + - pos: 123.5,-12.5 + parent: 0 + type: Transform +- uid: 3563 + type: MountainRock + components: + - pos: 123.5,-13.5 + parent: 0 + type: Transform +- uid: 3564 + type: MountainRock + components: + - pos: 123.5,-14.5 + parent: 0 + type: Transform +- uid: 3565 + type: MountainRock + components: + - pos: 123.5,-15.5 + parent: 0 + type: Transform +- uid: 3566 + type: MountainRock + components: + - pos: 123.5,-16.5 + parent: 0 + type: Transform +- uid: 3567 + type: MountainRock + components: + - pos: 123.5,-17.5 + parent: 0 + type: Transform +- uid: 3568 + type: MountainRock + components: + - pos: 123.5,-18.5 + parent: 0 + type: Transform +- uid: 3569 + type: MountainRock + components: + - pos: 123.5,-19.5 + parent: 0 + type: Transform +- uid: 3570 + type: MountainRock + components: + - pos: 123.5,-20.5 + parent: 0 + type: Transform +- uid: 3571 + type: MountainRock + components: + - pos: 123.5,-21.5 + parent: 0 + type: Transform +- uid: 3572 + type: MountainRock + components: + - pos: 123.5,-22.5 + parent: 0 + type: Transform +- uid: 3573 + type: MountainRock + components: + - pos: 123.5,-23.5 + parent: 0 + type: Transform +- uid: 3574 + type: MountainRock + components: + - pos: 123.5,-24.5 + parent: 0 + type: Transform +- uid: 3575 + type: MountainRock + components: + - pos: 123.5,-25.5 + parent: 0 + type: Transform +- uid: 3576 + type: MountainRock + components: + - pos: 123.5,-26.5 + parent: 0 + type: Transform +- uid: 3577 + type: MountainRock + components: + - pos: 123.5,-27.5 + parent: 0 + type: Transform +- uid: 3578 + type: MountainRock + components: + - pos: 123.5,-28.5 + parent: 0 + type: Transform +- uid: 3579 + type: MountainRock + components: + - pos: 123.5,-29.5 + parent: 0 + type: Transform +- uid: 3580 + type: MountainRock + components: + - pos: 123.5,-30.5 + parent: 0 + type: Transform +- uid: 3581 + type: MountainRock + components: + - pos: 123.5,-31.5 + parent: 0 + type: Transform +- uid: 3582 + type: MountainRock + components: + - pos: 123.5,-32.5 + parent: 0 + type: Transform +- uid: 3583 + type: MountainRock + components: + - pos: 123.5,-33.5 + parent: 0 + type: Transform +- uid: 3584 + type: MountainRock + components: + - pos: 123.5,-34.5 + parent: 0 + type: Transform +- uid: 3585 + type: MountainRock + components: + - pos: 123.5,-35.5 + parent: 0 + type: Transform +- uid: 3586 + type: MountainRock + components: + - pos: 123.5,-36.5 + parent: 0 + type: Transform +- uid: 3587 + type: MountainRock + components: + - pos: 123.5,-37.5 + parent: 0 + type: Transform +- uid: 3588 + type: MountainRock + components: + - pos: 123.5,-38.5 + parent: 0 + type: Transform +- uid: 3589 + type: MountainRock + components: + - pos: 123.5,-39.5 + parent: 0 + type: Transform +- uid: 3590 + type: MountainRock + components: + - pos: 123.5,-40.5 + parent: 0 + type: Transform +- uid: 3591 + type: MountainRock + components: + - pos: 123.5,-41.5 + parent: 0 + type: Transform +- uid: 3592 + type: MountainRock + components: + - pos: 123.5,-42.5 + parent: 0 + type: Transform +- uid: 3593 + type: MountainRock + components: + - pos: 123.5,-43.5 + parent: 0 + type: Transform +- uid: 3594 + type: MountainRock + components: + - pos: 123.5,-44.5 + parent: 0 + type: Transform +- uid: 3595 + type: MountainRock + components: + - pos: 123.5,-45.5 + parent: 0 + type: Transform +- uid: 3596 + type: MountainRock + components: + - pos: 123.5,-46.5 + parent: 0 + type: Transform +- uid: 3597 + type: MountainRock + components: + - pos: 124.5,28.5 + parent: 0 + type: Transform +- uid: 3598 + type: MountainRock + components: + - pos: 124.5,27.5 + parent: 0 + type: Transform +- uid: 3599 + type: MountainRock + components: + - pos: 124.5,26.5 + parent: 0 + type: Transform +- uid: 3600 + type: MountainRock + components: + - pos: 124.5,25.5 + parent: 0 + type: Transform +- uid: 3601 + type: MountainRock + components: + - pos: 124.5,24.5 + parent: 0 + type: Transform +- uid: 3602 + type: MountainRock + components: + - pos: 124.5,23.5 + parent: 0 + type: Transform +- uid: 3603 + type: MountainRock + components: + - pos: 124.5,22.5 + parent: 0 + type: Transform +- uid: 3604 + type: MountainRock + components: + - pos: 124.5,21.5 + parent: 0 + type: Transform +- uid: 3605 + type: MountainRock + components: + - pos: 124.5,20.5 + parent: 0 + type: Transform +- uid: 3606 + type: MountainRock + components: + - pos: 124.5,19.5 + parent: 0 + type: Transform +- uid: 3607 + type: MountainRock + components: + - pos: 124.5,18.5 + parent: 0 + type: Transform +- uid: 3608 + type: MountainRock + components: + - pos: 124.5,17.5 + parent: 0 + type: Transform +- uid: 3609 + type: MountainRock + components: + - pos: 124.5,16.5 + parent: 0 + type: Transform +- uid: 3610 + type: MountainRock + components: + - pos: 124.5,15.5 + parent: 0 + type: Transform +- uid: 3611 + type: MountainRock + components: + - pos: 124.5,14.5 + parent: 0 + type: Transform +- uid: 3612 + type: MountainRock + components: + - pos: 124.5,13.5 + parent: 0 + type: Transform +- uid: 3613 + type: MountainRock + components: + - pos: 124.5,12.5 + parent: 0 + type: Transform +- uid: 3614 + type: MountainRock + components: + - pos: 124.5,11.5 + parent: 0 + type: Transform +- uid: 3615 + type: MountainRock + components: + - pos: 124.5,10.5 + parent: 0 + type: Transform +- uid: 3616 + type: MountainRock + components: + - pos: 124.5,9.5 + parent: 0 + type: Transform +- uid: 3617 + type: MountainRock + components: + - pos: 124.5,8.5 + parent: 0 + type: Transform +- uid: 3618 + type: MountainRock + components: + - pos: 124.5,7.5 + parent: 0 + type: Transform +- uid: 3619 + type: MountainRock + components: + - pos: 124.5,6.5 + parent: 0 + type: Transform +- uid: 3620 + type: MountainRock + components: + - pos: 124.5,5.5 + parent: 0 + type: Transform +- uid: 3621 + type: MountainRock + components: + - pos: 124.5,4.5 + parent: 0 + type: Transform +- uid: 3622 + type: MountainRock + components: + - pos: 124.5,3.5 + parent: 0 + type: Transform +- uid: 3623 + type: MountainRock + components: + - pos: 124.5,2.5 + parent: 0 + type: Transform +- uid: 3624 + type: MountainRock + components: + - pos: 124.5,1.5 + parent: 0 + type: Transform +- uid: 3625 + type: MountainRock + components: + - pos: 124.5,0.5 + parent: 0 + type: Transform +- uid: 3626 + type: MountainRock + components: + - pos: 124.5,-0.5 + parent: 0 + type: Transform +- uid: 3627 + type: MountainRock + components: + - pos: 124.5,-1.5 + parent: 0 + type: Transform +- uid: 3628 + type: MountainRock + components: + - pos: 124.5,-2.5 + parent: 0 + type: Transform +- uid: 3629 + type: MountainRock + components: + - pos: 124.5,-3.5 + parent: 0 + type: Transform +- uid: 3630 + type: MountainRock + components: + - pos: 124.5,-4.5 + parent: 0 + type: Transform +- uid: 3631 + type: MountainRock + components: + - pos: 124.5,-5.5 + parent: 0 + type: Transform +- uid: 3632 + type: MountainRock + components: + - pos: 124.5,-6.5 + parent: 0 + type: Transform +- uid: 3633 + type: MountainRock + components: + - pos: 124.5,-7.5 + parent: 0 + type: Transform +- uid: 3634 + type: MountainRock + components: + - pos: 124.5,-8.5 + parent: 0 + type: Transform +- uid: 3635 + type: MountainRock + components: + - pos: 124.5,-9.5 + parent: 0 + type: Transform +- uid: 3636 + type: MountainRock + components: + - pos: 124.5,-10.5 + parent: 0 + type: Transform +- uid: 3637 + type: MountainRock + components: + - pos: 124.5,-11.5 + parent: 0 + type: Transform +- uid: 3638 + type: MountainRock + components: + - pos: 124.5,-12.5 + parent: 0 + type: Transform +- uid: 3639 + type: MountainRock + components: + - pos: 124.5,-13.5 + parent: 0 + type: Transform +- uid: 3640 + type: MountainRock + components: + - pos: 124.5,-14.5 + parent: 0 + type: Transform +- uid: 3641 + type: MountainRock + components: + - pos: 124.5,-15.5 + parent: 0 + type: Transform +- uid: 3642 + type: MountainRock + components: + - pos: 124.5,-16.5 + parent: 0 + type: Transform +- uid: 3643 + type: MountainRock + components: + - pos: 124.5,-17.5 + parent: 0 + type: Transform +- uid: 3644 + type: MountainRock + components: + - pos: 124.5,-18.5 + parent: 0 + type: Transform +- uid: 3645 + type: MountainRock + components: + - pos: 124.5,-19.5 + parent: 0 + type: Transform +- uid: 3646 + type: MountainRock + components: + - pos: 124.5,-20.5 + parent: 0 + type: Transform +- uid: 3647 + type: MountainRock + components: + - pos: 124.5,-21.5 + parent: 0 + type: Transform +- uid: 3648 + type: MountainRock + components: + - pos: 124.5,-22.5 + parent: 0 + type: Transform +- uid: 3649 + type: MountainRock + components: + - pos: 124.5,-23.5 + parent: 0 + type: Transform +- uid: 3650 + type: MountainRock + components: + - pos: 124.5,-24.5 + parent: 0 + type: Transform +- uid: 3651 + type: MountainRock + components: + - pos: 124.5,-25.5 + parent: 0 + type: Transform +- uid: 3652 + type: MountainRock + components: + - pos: 124.5,-26.5 + parent: 0 + type: Transform +- uid: 3653 + type: MountainRock + components: + - pos: 124.5,-27.5 + parent: 0 + type: Transform +- uid: 3654 + type: MountainRock + components: + - pos: 124.5,-28.5 + parent: 0 + type: Transform +- uid: 3655 + type: MountainRock + components: + - pos: 124.5,-29.5 + parent: 0 + type: Transform +- uid: 3656 + type: MountainRock + components: + - pos: 124.5,-30.5 + parent: 0 + type: Transform +- uid: 3657 + type: MountainRock + components: + - pos: 124.5,-31.5 + parent: 0 + type: Transform +- uid: 3658 + type: MountainRock + components: + - pos: 124.5,-32.5 + parent: 0 + type: Transform +- uid: 3659 + type: MountainRock + components: + - pos: 124.5,-33.5 + parent: 0 + type: Transform +- uid: 3660 + type: MountainRock + components: + - pos: 124.5,-34.5 + parent: 0 + type: Transform +- uid: 3661 + type: MountainRock + components: + - pos: 124.5,-35.5 + parent: 0 + type: Transform +- uid: 3662 + type: MountainRock + components: + - pos: 124.5,-36.5 + parent: 0 + type: Transform +- uid: 3663 + type: MountainRock + components: + - pos: 124.5,-37.5 + parent: 0 + type: Transform +- uid: 3664 + type: MountainRock + components: + - pos: 124.5,-38.5 + parent: 0 + type: Transform +- uid: 3665 + type: MountainRock + components: + - pos: 124.5,-39.5 + parent: 0 + type: Transform +- uid: 3666 + type: MountainRock + components: + - pos: 124.5,-40.5 + parent: 0 + type: Transform +- uid: 3667 + type: MountainRock + components: + - pos: 124.5,-41.5 + parent: 0 + type: Transform +- uid: 3668 + type: MountainRock + components: + - pos: 124.5,-42.5 + parent: 0 + type: Transform +- uid: 3669 + type: MountainRock + components: + - pos: 124.5,-43.5 + parent: 0 + type: Transform +- uid: 3670 + type: MountainRock + components: + - pos: 124.5,-44.5 + parent: 0 + type: Transform +- uid: 3671 + type: MountainRock + components: + - pos: 124.5,-45.5 + parent: 0 + type: Transform +- uid: 3672 + type: MountainRock + components: + - pos: 124.5,-46.5 + parent: 0 + type: Transform +- uid: 3673 + type: MountainRock + components: + - pos: 125.5,28.5 + parent: 0 + type: Transform +- uid: 3674 + type: MountainRock + components: + - pos: 125.5,27.5 + parent: 0 + type: Transform +- uid: 3675 + type: MountainRock + components: + - pos: 125.5,26.5 + parent: 0 + type: Transform +- uid: 3676 + type: MountainRock + components: + - pos: 125.5,25.5 + parent: 0 + type: Transform +- uid: 3677 + type: MountainRock + components: + - pos: 125.5,24.5 + parent: 0 + type: Transform +- uid: 3678 + type: MountainRock + components: + - pos: 125.5,23.5 + parent: 0 + type: Transform +- uid: 3679 + type: MountainRock + components: + - pos: 125.5,22.5 + parent: 0 + type: Transform +- uid: 3680 + type: MountainRock + components: + - pos: 125.5,21.5 + parent: 0 + type: Transform +- uid: 3681 + type: MountainRock + components: + - pos: 125.5,20.5 + parent: 0 + type: Transform +- uid: 3682 + type: MountainRock + components: + - pos: 125.5,19.5 + parent: 0 + type: Transform +- uid: 3683 + type: MountainRock + components: + - pos: 125.5,18.5 + parent: 0 + type: Transform +- uid: 3684 + type: MountainRock + components: + - pos: 125.5,17.5 + parent: 0 + type: Transform +- uid: 3685 + type: MountainRock + components: + - pos: 125.5,16.5 + parent: 0 + type: Transform +- uid: 3686 + type: MountainRock + components: + - pos: 125.5,15.5 + parent: 0 + type: Transform +- uid: 3687 + type: MountainRock + components: + - pos: 125.5,14.5 + parent: 0 + type: Transform +- uid: 3688 + type: MountainRock + components: + - pos: 125.5,13.5 + parent: 0 + type: Transform +- uid: 3689 + type: MountainRock + components: + - pos: 125.5,12.5 + parent: 0 + type: Transform +- uid: 3690 + type: MountainRock + components: + - pos: 125.5,11.5 + parent: 0 + type: Transform +- uid: 3691 + type: MountainRock + components: + - pos: 125.5,10.5 + parent: 0 + type: Transform +- uid: 3692 + type: MountainRock + components: + - pos: 125.5,9.5 + parent: 0 + type: Transform +- uid: 3693 + type: MountainRock + components: + - pos: 125.5,8.5 + parent: 0 + type: Transform +- uid: 3694 + type: MountainRock + components: + - pos: 125.5,7.5 + parent: 0 + type: Transform +- uid: 3695 + type: MountainRock + components: + - pos: 125.5,6.5 + parent: 0 + type: Transform +- uid: 3696 + type: MountainRock + components: + - pos: 125.5,5.5 + parent: 0 + type: Transform +- uid: 3697 + type: MountainRock + components: + - pos: 125.5,4.5 + parent: 0 + type: Transform +- uid: 3698 + type: MountainRock + components: + - pos: 125.5,3.5 + parent: 0 + type: Transform +- uid: 3699 + type: MountainRock + components: + - pos: 125.5,2.5 + parent: 0 + type: Transform +- uid: 3700 + type: MountainRock + components: + - pos: 125.5,1.5 + parent: 0 + type: Transform +- uid: 3701 + type: MountainRock + components: + - pos: 125.5,0.5 + parent: 0 + type: Transform +- uid: 3702 + type: MountainRock + components: + - pos: 125.5,-0.5 + parent: 0 + type: Transform +- uid: 3703 + type: MountainRock + components: + - pos: 125.5,-1.5 + parent: 0 + type: Transform +- uid: 3704 + type: MountainRock + components: + - pos: 125.5,-2.5 + parent: 0 + type: Transform +- uid: 3705 + type: MountainRock + components: + - pos: 125.5,-3.5 + parent: 0 + type: Transform +- uid: 3706 + type: MountainRock + components: + - pos: 125.5,-4.5 + parent: 0 + type: Transform +- uid: 3707 + type: MountainRock + components: + - pos: 125.5,-5.5 + parent: 0 + type: Transform +- uid: 3708 + type: MountainRock + components: + - pos: 125.5,-6.5 + parent: 0 + type: Transform +- uid: 3709 + type: MountainRock + components: + - pos: 125.5,-7.5 + parent: 0 + type: Transform +- uid: 3710 + type: MountainRock + components: + - pos: 125.5,-8.5 + parent: 0 + type: Transform +- uid: 3711 + type: MountainRock + components: + - pos: 125.5,-9.5 + parent: 0 + type: Transform +- uid: 3712 + type: MountainRock + components: + - pos: 125.5,-10.5 + parent: 0 + type: Transform +- uid: 3713 + type: MountainRock + components: + - pos: 125.5,-11.5 + parent: 0 + type: Transform +- uid: 3714 + type: MountainRock + components: + - pos: 125.5,-12.5 + parent: 0 + type: Transform +- uid: 3715 + type: MountainRock + components: + - pos: 125.5,-13.5 + parent: 0 + type: Transform +- uid: 3716 + type: MountainRock + components: + - pos: 125.5,-14.5 + parent: 0 + type: Transform +- uid: 3717 + type: MountainRock + components: + - pos: 125.5,-15.5 + parent: 0 + type: Transform +- uid: 3718 + type: MountainRock + components: + - pos: 125.5,-16.5 + parent: 0 + type: Transform +- uid: 3719 + type: MountainRock + components: + - pos: 125.5,-17.5 + parent: 0 + type: Transform +- uid: 3720 + type: MountainRock + components: + - pos: 125.5,-18.5 + parent: 0 + type: Transform +- uid: 3721 + type: MountainRock + components: + - pos: 125.5,-19.5 + parent: 0 + type: Transform +- uid: 3722 + type: MountainRock + components: + - pos: 125.5,-20.5 + parent: 0 + type: Transform +- uid: 3723 + type: MountainRock + components: + - pos: 125.5,-21.5 + parent: 0 + type: Transform +- uid: 3724 + type: MountainRock + components: + - pos: 125.5,-22.5 + parent: 0 + type: Transform +- uid: 3725 + type: MountainRock + components: + - pos: 125.5,-23.5 + parent: 0 + type: Transform +- uid: 3726 + type: MountainRock + components: + - pos: 125.5,-24.5 + parent: 0 + type: Transform +- uid: 3727 + type: MountainRock + components: + - pos: 125.5,-25.5 + parent: 0 + type: Transform +- uid: 3728 + type: MountainRock + components: + - pos: 125.5,-26.5 + parent: 0 + type: Transform +- uid: 3729 + type: MountainRock + components: + - pos: 125.5,-27.5 + parent: 0 + type: Transform +- uid: 3730 + type: MountainRock + components: + - pos: 125.5,-28.5 + parent: 0 + type: Transform +- uid: 3731 + type: MountainRock + components: + - pos: 125.5,-29.5 + parent: 0 + type: Transform +- uid: 3732 + type: MountainRock + components: + - pos: 125.5,-30.5 + parent: 0 + type: Transform +- uid: 3733 + type: MountainRock + components: + - pos: 125.5,-31.5 + parent: 0 + type: Transform +- uid: 3734 + type: MountainRock + components: + - pos: 125.5,-32.5 + parent: 0 + type: Transform +- uid: 3735 + type: MountainRock + components: + - pos: 125.5,-33.5 + parent: 0 + type: Transform +- uid: 3736 + type: MountainRock + components: + - pos: 125.5,-34.5 + parent: 0 + type: Transform +- uid: 3737 + type: MountainRock + components: + - pos: 125.5,-35.5 + parent: 0 + type: Transform +- uid: 3738 + type: MountainRock + components: + - pos: 125.5,-36.5 + parent: 0 + type: Transform +- uid: 3739 + type: MountainRock + components: + - pos: 125.5,-37.5 + parent: 0 + type: Transform +- uid: 3740 + type: MountainRock + components: + - pos: 125.5,-38.5 + parent: 0 + type: Transform +- uid: 3741 + type: MountainRock + components: + - pos: 125.5,-39.5 + parent: 0 + type: Transform +- uid: 3742 + type: MountainRock + components: + - pos: 125.5,-40.5 + parent: 0 + type: Transform +- uid: 3743 + type: MountainRock + components: + - pos: 125.5,-41.5 + parent: 0 + type: Transform +- uid: 3744 + type: MountainRock + components: + - pos: 125.5,-42.5 + parent: 0 + type: Transform +- uid: 3745 + type: MountainRock + components: + - pos: 125.5,-43.5 + parent: 0 + type: Transform +- uid: 3746 + type: MountainRock + components: + - pos: 125.5,-44.5 + parent: 0 + type: Transform +- uid: 3747 + type: MountainRock + components: + - pos: 125.5,-45.5 + parent: 0 + type: Transform +- uid: 3748 + type: MountainRock + components: + - pos: 125.5,-46.5 + parent: 0 + type: Transform +- uid: 3749 + type: MountainRock + components: + - pos: 126.5,28.5 + parent: 0 + type: Transform +- uid: 3750 + type: MountainRock + components: + - pos: 126.5,27.5 + parent: 0 + type: Transform +- uid: 3751 + type: MountainRock + components: + - pos: 126.5,26.5 + parent: 0 + type: Transform +- uid: 3752 + type: MountainRock + components: + - pos: 126.5,25.5 + parent: 0 + type: Transform +- uid: 3753 + type: MountainRock + components: + - pos: 126.5,24.5 + parent: 0 + type: Transform +- uid: 3754 + type: MountainRock + components: + - pos: 126.5,23.5 + parent: 0 + type: Transform +- uid: 3755 + type: MountainRock + components: + - pos: 126.5,22.5 + parent: 0 + type: Transform +- uid: 3756 + type: MountainRock + components: + - pos: 126.5,21.5 + parent: 0 + type: Transform +- uid: 3757 + type: MountainRock + components: + - pos: 126.5,20.5 + parent: 0 + type: Transform +- uid: 3758 + type: MountainRock + components: + - pos: 126.5,19.5 + parent: 0 + type: Transform +- uid: 3759 + type: MountainRock + components: + - pos: 126.5,18.5 + parent: 0 + type: Transform +- uid: 3760 + type: MountainRock + components: + - pos: 126.5,17.5 + parent: 0 + type: Transform +- uid: 3761 + type: MountainRock + components: + - pos: 126.5,16.5 + parent: 0 + type: Transform +- uid: 3762 + type: MountainRock + components: + - pos: 126.5,15.5 + parent: 0 + type: Transform +- uid: 3763 + type: MountainRock + components: + - pos: 126.5,14.5 + parent: 0 + type: Transform +- uid: 3764 + type: MountainRock + components: + - pos: 126.5,13.5 + parent: 0 + type: Transform +- uid: 3765 + type: MountainRock + components: + - pos: 126.5,12.5 + parent: 0 + type: Transform +- uid: 3766 + type: MountainRock + components: + - pos: 126.5,11.5 + parent: 0 + type: Transform +- uid: 3767 + type: MountainRock + components: + - pos: 126.5,10.5 + parent: 0 + type: Transform +- uid: 3768 + type: MountainRock + components: + - pos: 126.5,9.5 + parent: 0 + type: Transform +- uid: 3769 + type: MountainRock + components: + - pos: 126.5,8.5 + parent: 0 + type: Transform +- uid: 3770 + type: MountainRock + components: + - pos: 126.5,7.5 + parent: 0 + type: Transform +- uid: 3771 + type: MountainRock + components: + - pos: 126.5,6.5 + parent: 0 + type: Transform +- uid: 3772 + type: MountainRock + components: + - pos: 126.5,5.5 + parent: 0 + type: Transform +- uid: 3773 + type: MountainRock + components: + - pos: 126.5,4.5 + parent: 0 + type: Transform +- uid: 3774 + type: MountainRock + components: + - pos: 126.5,3.5 + parent: 0 + type: Transform +- uid: 3775 + type: MountainRock + components: + - pos: 126.5,2.5 + parent: 0 + type: Transform +- uid: 3776 + type: MountainRock + components: + - pos: 126.5,1.5 + parent: 0 + type: Transform +- uid: 3777 + type: MountainRock + components: + - pos: 126.5,0.5 + parent: 0 + type: Transform +- uid: 3778 + type: MountainRock + components: + - pos: 126.5,-0.5 + parent: 0 + type: Transform +- uid: 3779 + type: MountainRock + components: + - pos: 126.5,-1.5 + parent: 0 + type: Transform +- uid: 3780 + type: MountainRock + components: + - pos: 126.5,-2.5 + parent: 0 + type: Transform +- uid: 3781 + type: MountainRock + components: + - pos: 126.5,-3.5 + parent: 0 + type: Transform +- uid: 3782 + type: MountainRock + components: + - pos: 126.5,-4.5 + parent: 0 + type: Transform +- uid: 3783 + type: MountainRock + components: + - pos: 126.5,-5.5 + parent: 0 + type: Transform +- uid: 3784 + type: MountainRock + components: + - pos: 126.5,-6.5 + parent: 0 + type: Transform +- uid: 3785 + type: MountainRock + components: + - pos: 126.5,-7.5 + parent: 0 + type: Transform +- uid: 3786 + type: MountainRock + components: + - pos: 126.5,-8.5 + parent: 0 + type: Transform +- uid: 3787 + type: MountainRock + components: + - pos: 126.5,-9.5 + parent: 0 + type: Transform +- uid: 3788 + type: MountainRock + components: + - pos: 126.5,-10.5 + parent: 0 + type: Transform +- uid: 3789 + type: MountainRock + components: + - pos: 126.5,-11.5 + parent: 0 + type: Transform +- uid: 3790 + type: MountainRock + components: + - pos: 126.5,-12.5 + parent: 0 + type: Transform +- uid: 3791 + type: MountainRock + components: + - pos: 126.5,-13.5 + parent: 0 + type: Transform +- uid: 3792 + type: MountainRock + components: + - pos: 126.5,-14.5 + parent: 0 + type: Transform +- uid: 3793 + type: MountainRock + components: + - pos: 126.5,-15.5 + parent: 0 + type: Transform +- uid: 3794 + type: MountainRock + components: + - pos: 126.5,-16.5 + parent: 0 + type: Transform +- uid: 3795 + type: MountainRock + components: + - pos: 126.5,-17.5 + parent: 0 + type: Transform +- uid: 3796 + type: MountainRock + components: + - pos: 126.5,-18.5 + parent: 0 + type: Transform +- uid: 3797 + type: MountainRock + components: + - pos: 126.5,-19.5 + parent: 0 + type: Transform +- uid: 3798 + type: MountainRock + components: + - pos: 126.5,-20.5 + parent: 0 + type: Transform +- uid: 3799 + type: MountainRock + components: + - pos: 126.5,-21.5 + parent: 0 + type: Transform +- uid: 3800 + type: MountainRock + components: + - pos: 126.5,-22.5 + parent: 0 + type: Transform +- uid: 3801 + type: MountainRock + components: + - pos: 126.5,-23.5 + parent: 0 + type: Transform +- uid: 3802 + type: MountainRock + components: + - pos: 126.5,-24.5 + parent: 0 + type: Transform +- uid: 3803 + type: MountainRock + components: + - pos: 126.5,-25.5 + parent: 0 + type: Transform +- uid: 3804 + type: MountainRock + components: + - pos: 126.5,-26.5 + parent: 0 + type: Transform +- uid: 3805 + type: MountainRock + components: + - pos: 126.5,-27.5 + parent: 0 + type: Transform +- uid: 3806 + type: MountainRock + components: + - pos: 126.5,-28.5 + parent: 0 + type: Transform +- uid: 3807 + type: MountainRock + components: + - pos: 126.5,-29.5 + parent: 0 + type: Transform +- uid: 3808 + type: MountainRock + components: + - pos: 126.5,-30.5 + parent: 0 + type: Transform +- uid: 3809 + type: MountainRock + components: + - pos: 126.5,-31.5 + parent: 0 + type: Transform +- uid: 3810 + type: MountainRock + components: + - pos: 126.5,-32.5 + parent: 0 + type: Transform +- uid: 3811 + type: MountainRock + components: + - pos: 126.5,-33.5 + parent: 0 + type: Transform +- uid: 3812 + type: MountainRock + components: + - pos: 126.5,-34.5 + parent: 0 + type: Transform +- uid: 3813 + type: MountainRock + components: + - pos: 126.5,-35.5 + parent: 0 + type: Transform +- uid: 3814 + type: MountainRock + components: + - pos: 126.5,-36.5 + parent: 0 + type: Transform +- uid: 3815 + type: MountainRock + components: + - pos: 126.5,-37.5 + parent: 0 + type: Transform +- uid: 3816 + type: MountainRock + components: + - pos: 126.5,-38.5 + parent: 0 + type: Transform +- uid: 3817 + type: MountainRock + components: + - pos: 126.5,-39.5 + parent: 0 + type: Transform +- uid: 3818 + type: MountainRock + components: + - pos: 126.5,-40.5 + parent: 0 + type: Transform +- uid: 3819 + type: MountainRock + components: + - pos: 126.5,-41.5 + parent: 0 + type: Transform +- uid: 3820 + type: MountainRock + components: + - pos: 126.5,-42.5 + parent: 0 + type: Transform +- uid: 3821 + type: MountainRock + components: + - pos: 126.5,-43.5 + parent: 0 + type: Transform +- uid: 3822 + type: MountainRock + components: + - pos: 126.5,-44.5 + parent: 0 + type: Transform +- uid: 3823 + type: MountainRock + components: + - pos: 126.5,-45.5 + parent: 0 + type: Transform +- uid: 3824 + type: MountainRock + components: + - pos: 126.5,-46.5 + parent: 0 + type: Transform +- uid: 3825 + type: MountainRock + components: + - pos: 127.5,28.5 + parent: 0 + type: Transform +- uid: 3826 + type: MountainRock + components: + - pos: 127.5,27.5 + parent: 0 + type: Transform +- uid: 3827 + type: MountainRock + components: + - pos: 127.5,26.5 + parent: 0 + type: Transform +- uid: 3828 + type: MountainRock + components: + - pos: 127.5,25.5 + parent: 0 + type: Transform +- uid: 3829 + type: MountainRock + components: + - pos: 127.5,24.5 + parent: 0 + type: Transform +- uid: 3830 + type: MountainRock + components: + - pos: 127.5,23.5 + parent: 0 + type: Transform +- uid: 3831 + type: MountainRock + components: + - pos: 127.5,22.5 + parent: 0 + type: Transform +- uid: 3832 + type: MountainRock + components: + - pos: 127.5,21.5 + parent: 0 + type: Transform +- uid: 3833 + type: MountainRock + components: + - pos: 127.5,20.5 + parent: 0 + type: Transform +- uid: 3834 + type: MountainRock + components: + - pos: 127.5,19.5 + parent: 0 + type: Transform +- uid: 3835 + type: MountainRock + components: + - pos: 127.5,18.5 + parent: 0 + type: Transform +- uid: 3836 + type: MountainRock + components: + - pos: 127.5,17.5 + parent: 0 + type: Transform +- uid: 3837 + type: MountainRock + components: + - pos: 127.5,16.5 + parent: 0 + type: Transform +- uid: 3838 + type: MountainRock + components: + - pos: 127.5,15.5 + parent: 0 + type: Transform +- uid: 3839 + type: MountainRock + components: + - pos: 127.5,14.5 + parent: 0 + type: Transform +- uid: 3840 + type: MountainRock + components: + - pos: 127.5,13.5 + parent: 0 + type: Transform +- uid: 3841 + type: MountainRock + components: + - pos: 127.5,12.5 + parent: 0 + type: Transform +- uid: 3842 + type: MountainRock + components: + - pos: 127.5,11.5 + parent: 0 + type: Transform +- uid: 3843 + type: MountainRock + components: + - pos: 127.5,10.5 + parent: 0 + type: Transform +- uid: 3844 + type: MountainRock + components: + - pos: 127.5,9.5 + parent: 0 + type: Transform +- uid: 3845 + type: MountainRock + components: + - pos: 127.5,8.5 + parent: 0 + type: Transform +- uid: 3846 + type: MountainRock + components: + - pos: 127.5,7.5 + parent: 0 + type: Transform +- uid: 3847 + type: MountainRock + components: + - pos: 127.5,6.5 + parent: 0 + type: Transform +- uid: 3848 + type: MountainRock + components: + - pos: 127.5,5.5 + parent: 0 + type: Transform +- uid: 3849 + type: MountainRock + components: + - pos: 127.5,4.5 + parent: 0 + type: Transform +- uid: 3850 + type: MountainRock + components: + - pos: 127.5,3.5 + parent: 0 + type: Transform +- uid: 3851 + type: MountainRock + components: + - pos: 127.5,2.5 + parent: 0 + type: Transform +- uid: 3852 + type: MountainRock + components: + - pos: 127.5,1.5 + parent: 0 + type: Transform +- uid: 3853 + type: MountainRock + components: + - pos: 127.5,0.5 + parent: 0 + type: Transform +- uid: 3854 + type: MountainRock + components: + - pos: 127.5,-0.5 + parent: 0 + type: Transform +- uid: 3855 + type: MountainRock + components: + - pos: 127.5,-1.5 + parent: 0 + type: Transform +- uid: 3856 + type: MountainRock + components: + - pos: 127.5,-2.5 + parent: 0 + type: Transform +- uid: 3857 + type: MountainRock + components: + - pos: 127.5,-3.5 + parent: 0 + type: Transform +- uid: 3858 + type: MountainRock + components: + - pos: 127.5,-4.5 + parent: 0 + type: Transform +- uid: 3859 + type: MountainRock + components: + - pos: 127.5,-5.5 + parent: 0 + type: Transform +- uid: 3860 + type: MountainRock + components: + - pos: 127.5,-6.5 + parent: 0 + type: Transform +- uid: 3861 + type: MountainRock + components: + - pos: 127.5,-7.5 + parent: 0 + type: Transform +- uid: 3862 + type: MountainRock + components: + - pos: 127.5,-8.5 + parent: 0 + type: Transform +- uid: 3863 + type: MountainRock + components: + - pos: 127.5,-9.5 + parent: 0 + type: Transform +- uid: 3864 + type: MountainRock + components: + - pos: 127.5,-10.5 + parent: 0 + type: Transform +- uid: 3865 + type: MountainRock + components: + - pos: 127.5,-11.5 + parent: 0 + type: Transform +- uid: 3866 + type: MountainRock + components: + - pos: 127.5,-12.5 + parent: 0 + type: Transform +- uid: 3867 + type: MountainRock + components: + - pos: 127.5,-13.5 + parent: 0 + type: Transform +- uid: 3868 + type: MountainRock + components: + - pos: 127.5,-14.5 + parent: 0 + type: Transform +- uid: 3869 + type: MountainRock + components: + - pos: 127.5,-15.5 + parent: 0 + type: Transform +- uid: 3870 + type: MountainRock + components: + - pos: 127.5,-16.5 + parent: 0 + type: Transform +- uid: 3871 + type: MountainRock + components: + - pos: 127.5,-17.5 + parent: 0 + type: Transform +- uid: 3872 + type: MountainRock + components: + - pos: 127.5,-18.5 + parent: 0 + type: Transform +- uid: 3873 + type: MountainRock + components: + - pos: 127.5,-19.5 + parent: 0 + type: Transform +- uid: 3874 + type: MountainRock + components: + - pos: 127.5,-20.5 + parent: 0 + type: Transform +- uid: 3875 + type: MountainRock + components: + - pos: 127.5,-21.5 + parent: 0 + type: Transform +- uid: 3876 + type: MountainRock + components: + - pos: 127.5,-22.5 + parent: 0 + type: Transform +- uid: 3877 + type: MountainRock + components: + - pos: 127.5,-23.5 + parent: 0 + type: Transform +- uid: 3878 + type: MountainRock + components: + - pos: 127.5,-24.5 + parent: 0 + type: Transform +- uid: 3879 + type: MountainRock + components: + - pos: 127.5,-25.5 + parent: 0 + type: Transform +- uid: 3880 + type: MountainRock + components: + - pos: 127.5,-26.5 + parent: 0 + type: Transform +- uid: 3881 + type: MountainRock + components: + - pos: 127.5,-27.5 + parent: 0 + type: Transform +- uid: 3882 + type: MountainRock + components: + - pos: 127.5,-28.5 + parent: 0 + type: Transform +- uid: 3883 + type: MountainRock + components: + - pos: 127.5,-29.5 + parent: 0 + type: Transform +- uid: 3884 + type: MountainRock + components: + - pos: 127.5,-30.5 + parent: 0 + type: Transform +- uid: 3885 + type: MountainRock + components: + - pos: 127.5,-31.5 + parent: 0 + type: Transform +- uid: 3886 + type: MountainRock + components: + - pos: 127.5,-32.5 + parent: 0 + type: Transform +- uid: 3887 + type: MountainRock + components: + - pos: 127.5,-33.5 + parent: 0 + type: Transform +- uid: 3888 + type: MountainRock + components: + - pos: 127.5,-34.5 + parent: 0 + type: Transform +- uid: 3889 + type: MountainRock + components: + - pos: 127.5,-35.5 + parent: 0 + type: Transform +- uid: 3890 + type: MountainRock + components: + - pos: 127.5,-36.5 + parent: 0 + type: Transform +- uid: 3891 + type: MountainRock + components: + - pos: 127.5,-37.5 + parent: 0 + type: Transform +- uid: 3892 + type: MountainRock + components: + - pos: 127.5,-38.5 + parent: 0 + type: Transform +- uid: 3893 + type: MountainRock + components: + - pos: 127.5,-39.5 + parent: 0 + type: Transform +- uid: 3894 + type: MountainRock + components: + - pos: 127.5,-40.5 + parent: 0 + type: Transform +- uid: 3895 + type: MountainRock + components: + - pos: 127.5,-41.5 + parent: 0 + type: Transform +- uid: 3896 + type: MountainRock + components: + - pos: 127.5,-42.5 + parent: 0 + type: Transform +- uid: 3897 + type: MountainRock + components: + - pos: 127.5,-43.5 + parent: 0 + type: Transform +- uid: 3898 + type: MountainRock + components: + - pos: 127.5,-44.5 + parent: 0 + type: Transform +- uid: 3899 + type: MountainRock + components: + - pos: 127.5,-45.5 + parent: 0 + type: Transform +- uid: 3900 + type: MountainRock + components: + - pos: 127.5,-46.5 + parent: 0 + type: Transform +- uid: 3901 + type: MountainRock + components: + - pos: 128.5,28.5 + parent: 0 + type: Transform +- uid: 3902 + type: MountainRock + components: + - pos: 128.5,27.5 + parent: 0 + type: Transform +- uid: 3903 + type: MountainRock + components: + - pos: 128.5,26.5 + parent: 0 + type: Transform +- uid: 3904 + type: MountainRock + components: + - pos: 128.5,25.5 + parent: 0 + type: Transform +- uid: 3905 + type: MountainRock + components: + - pos: 128.5,24.5 + parent: 0 + type: Transform +- uid: 3906 + type: MountainRock + components: + - pos: 128.5,23.5 + parent: 0 + type: Transform +- uid: 3907 + type: MountainRock + components: + - pos: 128.5,22.5 + parent: 0 + type: Transform +- uid: 3908 + type: MountainRock + components: + - pos: 128.5,21.5 + parent: 0 + type: Transform +- uid: 3909 + type: MountainRock + components: + - pos: 128.5,20.5 + parent: 0 + type: Transform +- uid: 3910 + type: MountainRock + components: + - pos: 128.5,19.5 + parent: 0 + type: Transform +- uid: 3911 + type: MountainRock + components: + - pos: 128.5,18.5 + parent: 0 + type: Transform +- uid: 3912 + type: MountainRock + components: + - pos: 128.5,17.5 + parent: 0 + type: Transform +- uid: 3913 + type: MountainRock + components: + - pos: 128.5,16.5 + parent: 0 + type: Transform +- uid: 3914 + type: MountainRock + components: + - pos: 128.5,15.5 + parent: 0 + type: Transform +- uid: 3915 + type: MountainRock + components: + - pos: 128.5,14.5 + parent: 0 + type: Transform +- uid: 3916 + type: MountainRock + components: + - pos: 128.5,13.5 + parent: 0 + type: Transform +- uid: 3917 + type: MountainRock + components: + - pos: 128.5,12.5 + parent: 0 + type: Transform +- uid: 3918 + type: MountainRock + components: + - pos: 128.5,11.5 + parent: 0 + type: Transform +- uid: 3919 + type: MountainRock + components: + - pos: 128.5,10.5 + parent: 0 + type: Transform +- uid: 3920 + type: MountainRock + components: + - pos: 128.5,9.5 + parent: 0 + type: Transform +- uid: 3921 + type: MountainRock + components: + - pos: 128.5,8.5 + parent: 0 + type: Transform +- uid: 3922 + type: MountainRock + components: + - pos: 128.5,7.5 + parent: 0 + type: Transform +- uid: 3923 + type: MountainRock + components: + - pos: 128.5,6.5 + parent: 0 + type: Transform +- uid: 3924 + type: MountainRock + components: + - pos: 128.5,5.5 + parent: 0 + type: Transform +- uid: 3925 + type: MountainRock + components: + - pos: 128.5,4.5 + parent: 0 + type: Transform +- uid: 3926 + type: MountainRock + components: + - pos: 128.5,3.5 + parent: 0 + type: Transform +- uid: 3927 + type: MountainRock + components: + - pos: 128.5,2.5 + parent: 0 + type: Transform +- uid: 3928 + type: MountainRock + components: + - pos: 128.5,1.5 + parent: 0 + type: Transform +- uid: 3929 + type: MountainRock + components: + - pos: 128.5,0.5 + parent: 0 + type: Transform +- uid: 3930 + type: MountainRock + components: + - pos: 128.5,-0.5 + parent: 0 + type: Transform +- uid: 3931 + type: MountainRock + components: + - pos: 128.5,-1.5 + parent: 0 + type: Transform +- uid: 3932 + type: MountainRock + components: + - pos: 128.5,-2.5 + parent: 0 + type: Transform +- uid: 3933 + type: MountainRock + components: + - pos: 128.5,-3.5 + parent: 0 + type: Transform +- uid: 3934 + type: MountainRock + components: + - pos: 128.5,-4.5 + parent: 0 + type: Transform +- uid: 3935 + type: MountainRock + components: + - pos: 128.5,-5.5 + parent: 0 + type: Transform +- uid: 3936 + type: MountainRock + components: + - pos: 128.5,-6.5 + parent: 0 + type: Transform +- uid: 3937 + type: MountainRock + components: + - pos: 128.5,-7.5 + parent: 0 + type: Transform +- uid: 3938 + type: MountainRock + components: + - pos: 128.5,-8.5 + parent: 0 + type: Transform +- uid: 3939 + type: MountainRock + components: + - pos: 128.5,-9.5 + parent: 0 + type: Transform +- uid: 3940 + type: MountainRock + components: + - pos: 128.5,-10.5 + parent: 0 + type: Transform +- uid: 3941 + type: MountainRock + components: + - pos: 128.5,-11.5 + parent: 0 + type: Transform +- uid: 3942 + type: MountainRock + components: + - pos: 128.5,-12.5 + parent: 0 + type: Transform +- uid: 3943 + type: MountainRock + components: + - pos: 128.5,-13.5 + parent: 0 + type: Transform +- uid: 3944 + type: MountainRock + components: + - pos: 128.5,-14.5 + parent: 0 + type: Transform +- uid: 3945 + type: MountainRock + components: + - pos: 128.5,-15.5 + parent: 0 + type: Transform +- uid: 3946 + type: MountainRock + components: + - pos: 128.5,-16.5 + parent: 0 + type: Transform +- uid: 3947 + type: MountainRock + components: + - pos: 128.5,-17.5 + parent: 0 + type: Transform +- uid: 3948 + type: MountainRock + components: + - pos: 128.5,-18.5 + parent: 0 + type: Transform +- uid: 3949 + type: MountainRock + components: + - pos: 128.5,-19.5 + parent: 0 + type: Transform +- uid: 3950 + type: MountainRock + components: + - pos: 128.5,-20.5 + parent: 0 + type: Transform +- uid: 3951 + type: MountainRock + components: + - pos: 128.5,-21.5 + parent: 0 + type: Transform +- uid: 3952 + type: MountainRock + components: + - pos: 128.5,-22.5 + parent: 0 + type: Transform +- uid: 3953 + type: MountainRock + components: + - pos: 128.5,-23.5 + parent: 0 + type: Transform +- uid: 3954 + type: MountainRock + components: + - pos: 128.5,-24.5 + parent: 0 + type: Transform +- uid: 3955 + type: MountainRock + components: + - pos: 128.5,-25.5 + parent: 0 + type: Transform +- uid: 3956 + type: MountainRock + components: + - pos: 128.5,-26.5 + parent: 0 + type: Transform +- uid: 3957 + type: MountainRock + components: + - pos: 128.5,-27.5 + parent: 0 + type: Transform +- uid: 3958 + type: MountainRock + components: + - pos: 128.5,-28.5 + parent: 0 + type: Transform +- uid: 3959 + type: MountainRock + components: + - pos: 128.5,-29.5 + parent: 0 + type: Transform +- uid: 3960 + type: MountainRock + components: + - pos: 128.5,-30.5 + parent: 0 + type: Transform +- uid: 3961 + type: MountainRock + components: + - pos: 128.5,-31.5 + parent: 0 + type: Transform +- uid: 3962 + type: MountainRock + components: + - pos: 128.5,-32.5 + parent: 0 + type: Transform +- uid: 3963 + type: MountainRock + components: + - pos: 128.5,-33.5 + parent: 0 + type: Transform +- uid: 3964 + type: MountainRock + components: + - pos: 128.5,-34.5 + parent: 0 + type: Transform +- uid: 3965 + type: MountainRock + components: + - pos: 128.5,-35.5 + parent: 0 + type: Transform +- uid: 3966 + type: MountainRock + components: + - pos: 128.5,-36.5 + parent: 0 + type: Transform +- uid: 3967 + type: MountainRock + components: + - pos: 128.5,-37.5 + parent: 0 + type: Transform +- uid: 3968 + type: MountainRock + components: + - pos: 128.5,-38.5 + parent: 0 + type: Transform +- uid: 3969 + type: MountainRock + components: + - pos: 128.5,-39.5 + parent: 0 + type: Transform +- uid: 3970 + type: MountainRock + components: + - pos: 128.5,-40.5 + parent: 0 + type: Transform +- uid: 3971 + type: MountainRock + components: + - pos: 128.5,-41.5 + parent: 0 + type: Transform +- uid: 3972 + type: MountainRock + components: + - pos: 128.5,-42.5 + parent: 0 + type: Transform +- uid: 3973 + type: MountainRock + components: + - pos: 128.5,-43.5 + parent: 0 + type: Transform +- uid: 3974 + type: MountainRock + components: + - pos: 128.5,-44.5 + parent: 0 + type: Transform +- uid: 3975 + type: MountainRock + components: + - pos: 128.5,-45.5 + parent: 0 + type: Transform +- uid: 3976 + type: MountainRock + components: + - pos: 128.5,-46.5 + parent: 0 + type: Transform +- uid: 3977 + type: MountainRock + components: + - pos: 129.5,28.5 + parent: 0 + type: Transform +- uid: 3978 + type: MountainRock + components: + - pos: 129.5,27.5 + parent: 0 + type: Transform +- uid: 3979 + type: MountainRock + components: + - pos: 129.5,26.5 + parent: 0 + type: Transform +- uid: 3980 + type: MountainRock + components: + - pos: 129.5,25.5 + parent: 0 + type: Transform +- uid: 3981 + type: MountainRock + components: + - pos: 129.5,24.5 + parent: 0 + type: Transform +- uid: 3982 + type: MountainRock + components: + - pos: 129.5,23.5 + parent: 0 + type: Transform +- uid: 3983 + type: MountainRock + components: + - pos: 129.5,22.5 + parent: 0 + type: Transform +- uid: 3984 + type: MountainRock + components: + - pos: 129.5,21.5 + parent: 0 + type: Transform +- uid: 3985 + type: MountainRock + components: + - pos: 129.5,20.5 + parent: 0 + type: Transform +- uid: 3986 + type: MountainRock + components: + - pos: 129.5,19.5 + parent: 0 + type: Transform +- uid: 3987 + type: MountainRock + components: + - pos: 129.5,18.5 + parent: 0 + type: Transform +- uid: 3988 + type: MountainRock + components: + - pos: 129.5,17.5 + parent: 0 + type: Transform +- uid: 3989 + type: MountainRock + components: + - pos: 129.5,16.5 + parent: 0 + type: Transform +- uid: 3990 + type: MountainRock + components: + - pos: 129.5,15.5 + parent: 0 + type: Transform +- uid: 3991 + type: MountainRock + components: + - pos: 129.5,14.5 + parent: 0 + type: Transform +- uid: 3992 + type: MountainRock + components: + - pos: 129.5,13.5 + parent: 0 + type: Transform +- uid: 3993 + type: MountainRock + components: + - pos: 129.5,12.5 + parent: 0 + type: Transform +- uid: 3994 + type: MountainRock + components: + - pos: 129.5,11.5 + parent: 0 + type: Transform +- uid: 3995 + type: MountainRock + components: + - pos: 129.5,10.5 + parent: 0 + type: Transform +- uid: 3996 + type: MountainRock + components: + - pos: 129.5,9.5 + parent: 0 + type: Transform +- uid: 3997 + type: MountainRock + components: + - pos: 129.5,8.5 + parent: 0 + type: Transform +- uid: 3998 + type: MountainRock + components: + - pos: 129.5,7.5 + parent: 0 + type: Transform +- uid: 3999 + type: MountainRock + components: + - pos: 129.5,6.5 + parent: 0 + type: Transform +- uid: 4000 + type: MountainRock + components: + - pos: 129.5,5.5 + parent: 0 + type: Transform +- uid: 4001 + type: MountainRock + components: + - pos: 129.5,4.5 + parent: 0 + type: Transform +- uid: 4002 + type: MountainRock + components: + - pos: 129.5,3.5 + parent: 0 + type: Transform +- uid: 4003 + type: MountainRock + components: + - pos: 129.5,2.5 + parent: 0 + type: Transform +- uid: 4004 + type: MountainRock + components: + - pos: 129.5,1.5 + parent: 0 + type: Transform +- uid: 4005 + type: MountainRock + components: + - pos: 129.5,0.5 + parent: 0 + type: Transform +- uid: 4006 + type: MountainRock + components: + - pos: 129.5,-0.5 + parent: 0 + type: Transform +- uid: 4007 + type: MountainRock + components: + - pos: 129.5,-1.5 + parent: 0 + type: Transform +- uid: 4008 + type: MountainRock + components: + - pos: 129.5,-2.5 + parent: 0 + type: Transform +- uid: 4009 + type: MountainRock + components: + - pos: 129.5,-3.5 + parent: 0 + type: Transform +- uid: 4010 + type: MountainRock + components: + - pos: 129.5,-4.5 + parent: 0 + type: Transform +- uid: 4011 + type: MountainRock + components: + - pos: 129.5,-5.5 + parent: 0 + type: Transform +- uid: 4012 + type: MountainRock + components: + - pos: 129.5,-6.5 + parent: 0 + type: Transform +- uid: 4013 + type: MountainRock + components: + - pos: 129.5,-7.5 + parent: 0 + type: Transform +- uid: 4014 + type: MountainRock + components: + - pos: 129.5,-8.5 + parent: 0 + type: Transform +- uid: 4015 + type: MountainRock + components: + - pos: 129.5,-9.5 + parent: 0 + type: Transform +- uid: 4016 + type: MountainRock + components: + - pos: 129.5,-10.5 + parent: 0 + type: Transform +- uid: 4017 + type: MountainRock + components: + - pos: 129.5,-11.5 + parent: 0 + type: Transform +- uid: 4018 + type: MountainRock + components: + - pos: 129.5,-12.5 + parent: 0 + type: Transform +- uid: 4019 + type: MountainRock + components: + - pos: 129.5,-13.5 + parent: 0 + type: Transform +- uid: 4020 + type: MountainRock + components: + - pos: 129.5,-14.5 + parent: 0 + type: Transform +- uid: 4021 + type: MountainRock + components: + - pos: 129.5,-15.5 + parent: 0 + type: Transform +- uid: 4022 + type: MountainRock + components: + - pos: 129.5,-16.5 + parent: 0 + type: Transform +- uid: 4023 + type: MountainRock + components: + - pos: 129.5,-17.5 + parent: 0 + type: Transform +- uid: 4024 + type: MountainRock + components: + - pos: 129.5,-18.5 + parent: 0 + type: Transform +- uid: 4025 + type: MountainRock + components: + - pos: 129.5,-19.5 + parent: 0 + type: Transform +- uid: 4026 + type: MountainRock + components: + - pos: 129.5,-20.5 + parent: 0 + type: Transform +- uid: 4027 + type: MountainRock + components: + - pos: 129.5,-21.5 + parent: 0 + type: Transform +- uid: 4028 + type: MountainRock + components: + - pos: 129.5,-22.5 + parent: 0 + type: Transform +- uid: 4029 + type: MountainRock + components: + - pos: 129.5,-23.5 + parent: 0 + type: Transform +- uid: 4030 + type: MountainRock + components: + - pos: 129.5,-24.5 + parent: 0 + type: Transform +- uid: 4031 + type: MountainRock + components: + - pos: 129.5,-25.5 + parent: 0 + type: Transform +- uid: 4032 + type: MountainRock + components: + - pos: 129.5,-26.5 + parent: 0 + type: Transform +- uid: 4033 + type: MountainRock + components: + - pos: 129.5,-27.5 + parent: 0 + type: Transform +- uid: 4034 + type: MountainRock + components: + - pos: 129.5,-28.5 + parent: 0 + type: Transform +- uid: 4035 + type: MountainRock + components: + - pos: 129.5,-29.5 + parent: 0 + type: Transform +- uid: 4036 + type: MountainRock + components: + - pos: 129.5,-30.5 + parent: 0 + type: Transform +- uid: 4037 + type: MountainRock + components: + - pos: 129.5,-31.5 + parent: 0 + type: Transform +- uid: 4038 + type: MountainRock + components: + - pos: 129.5,-32.5 + parent: 0 + type: Transform +- uid: 4039 + type: MountainRock + components: + - pos: 129.5,-33.5 + parent: 0 + type: Transform +- uid: 4040 + type: MountainRock + components: + - pos: 129.5,-34.5 + parent: 0 + type: Transform +- uid: 4041 + type: MountainRock + components: + - pos: 129.5,-35.5 + parent: 0 + type: Transform +- uid: 4042 + type: MountainRock + components: + - pos: 129.5,-36.5 + parent: 0 + type: Transform +- uid: 4043 + type: MountainRock + components: + - pos: 129.5,-37.5 + parent: 0 + type: Transform +- uid: 4044 + type: MountainRock + components: + - pos: 129.5,-38.5 + parent: 0 + type: Transform +- uid: 4045 + type: MountainRock + components: + - pos: 129.5,-39.5 + parent: 0 + type: Transform +- uid: 4046 + type: MountainRock + components: + - pos: 129.5,-40.5 + parent: 0 + type: Transform +- uid: 4047 + type: MountainRock + components: + - pos: 129.5,-41.5 + parent: 0 + type: Transform +- uid: 4048 + type: MountainRock + components: + - pos: 129.5,-42.5 + parent: 0 + type: Transform +- uid: 4049 + type: MountainRock + components: + - pos: 129.5,-43.5 + parent: 0 + type: Transform +- uid: 4050 + type: MountainRock + components: + - pos: 129.5,-44.5 + parent: 0 + type: Transform +- uid: 4051 + type: MountainRock + components: + - pos: 129.5,-45.5 + parent: 0 + type: Transform +- uid: 4052 + type: MountainRock + components: + - pos: 129.5,-46.5 + parent: 0 + type: Transform +- uid: 4053 + type: MountainRock + components: + - pos: 130.5,28.5 + parent: 0 + type: Transform +- uid: 4054 + type: MountainRock + components: + - pos: 130.5,27.5 + parent: 0 + type: Transform +- uid: 4055 + type: MountainRock + components: + - pos: 130.5,26.5 + parent: 0 + type: Transform +- uid: 4056 + type: MountainRock + components: + - pos: 130.5,25.5 + parent: 0 + type: Transform +- uid: 4057 + type: MountainRock + components: + - pos: 130.5,24.5 + parent: 0 + type: Transform +- uid: 4058 + type: MountainRock + components: + - pos: 130.5,23.5 + parent: 0 + type: Transform +- uid: 4059 + type: MountainRock + components: + - pos: 130.5,22.5 + parent: 0 + type: Transform +- uid: 4060 + type: MountainRock + components: + - pos: 130.5,21.5 + parent: 0 + type: Transform +- uid: 4061 + type: MountainRock + components: + - pos: 130.5,20.5 + parent: 0 + type: Transform +- uid: 4062 + type: MountainRock + components: + - pos: 130.5,19.5 + parent: 0 + type: Transform +- uid: 4063 + type: MountainRock + components: + - pos: 130.5,18.5 + parent: 0 + type: Transform +- uid: 4064 + type: MountainRock + components: + - pos: 130.5,17.5 + parent: 0 + type: Transform +- uid: 4065 + type: MountainRock + components: + - pos: 130.5,16.5 + parent: 0 + type: Transform +- uid: 4066 + type: MountainRock + components: + - pos: 130.5,15.5 + parent: 0 + type: Transform +- uid: 4067 + type: MountainRock + components: + - pos: 130.5,14.5 + parent: 0 + type: Transform +- uid: 4068 + type: MountainRock + components: + - pos: 130.5,13.5 + parent: 0 + type: Transform +- uid: 4069 + type: MountainRock + components: + - pos: 130.5,12.5 + parent: 0 + type: Transform +- uid: 4070 + type: MountainRock + components: + - pos: 130.5,11.5 + parent: 0 + type: Transform +- uid: 4071 + type: MountainRock + components: + - pos: 130.5,10.5 + parent: 0 + type: Transform +- uid: 4072 + type: MountainRock + components: + - pos: 130.5,9.5 + parent: 0 + type: Transform +- uid: 4073 + type: MountainRock + components: + - pos: 130.5,8.5 + parent: 0 + type: Transform +- uid: 4074 + type: MountainRock + components: + - pos: 130.5,7.5 + parent: 0 + type: Transform +- uid: 4075 + type: MountainRock + components: + - pos: 130.5,6.5 + parent: 0 + type: Transform +- uid: 4076 + type: MountainRock + components: + - pos: 130.5,5.5 + parent: 0 + type: Transform +- uid: 4077 + type: MountainRock + components: + - pos: 130.5,4.5 + parent: 0 + type: Transform +- uid: 4078 + type: MountainRock + components: + - pos: 130.5,3.5 + parent: 0 + type: Transform +- uid: 4079 + type: MountainRock + components: + - pos: 130.5,2.5 + parent: 0 + type: Transform +- uid: 4080 + type: MountainRock + components: + - pos: 130.5,1.5 + parent: 0 + type: Transform +- uid: 4081 + type: MountainRock + components: + - pos: 130.5,0.5 + parent: 0 + type: Transform +- uid: 4082 + type: MountainRock + components: + - pos: 130.5,-0.5 + parent: 0 + type: Transform +- uid: 4083 + type: MountainRock + components: + - pos: 130.5,-1.5 + parent: 0 + type: Transform +- uid: 4084 + type: MountainRock + components: + - pos: 130.5,-2.5 + parent: 0 + type: Transform +- uid: 4085 + type: MountainRock + components: + - pos: 130.5,-3.5 + parent: 0 + type: Transform +- uid: 4086 + type: MountainRock + components: + - pos: 130.5,-4.5 + parent: 0 + type: Transform +- uid: 4087 + type: MountainRock + components: + - pos: 130.5,-5.5 + parent: 0 + type: Transform +- uid: 4088 + type: MountainRock + components: + - pos: 130.5,-6.5 + parent: 0 + type: Transform +- uid: 4089 + type: MountainRock + components: + - pos: 130.5,-7.5 + parent: 0 + type: Transform +- uid: 4090 + type: MountainRock + components: + - pos: 130.5,-8.5 + parent: 0 + type: Transform +- uid: 4091 + type: MountainRock + components: + - pos: 130.5,-9.5 + parent: 0 + type: Transform +- uid: 4092 + type: MountainRock + components: + - pos: 130.5,-10.5 + parent: 0 + type: Transform +- uid: 4093 + type: MountainRock + components: + - pos: 130.5,-11.5 + parent: 0 + type: Transform +- uid: 4094 + type: MountainRock + components: + - pos: 130.5,-12.5 + parent: 0 + type: Transform +- uid: 4095 + type: MountainRock + components: + - pos: 130.5,-13.5 + parent: 0 + type: Transform +- uid: 4096 + type: MountainRock + components: + - pos: 130.5,-14.5 + parent: 0 + type: Transform +- uid: 4097 + type: MountainRock + components: + - pos: 130.5,-15.5 + parent: 0 + type: Transform +- uid: 4098 + type: MountainRock + components: + - pos: 130.5,-16.5 + parent: 0 + type: Transform +- uid: 4099 + type: MountainRock + components: + - pos: 130.5,-17.5 + parent: 0 + type: Transform +- uid: 4100 + type: MountainRock + components: + - pos: 130.5,-18.5 + parent: 0 + type: Transform +- uid: 4101 + type: MountainRock + components: + - pos: 130.5,-19.5 + parent: 0 + type: Transform +- uid: 4102 + type: MountainRock + components: + - pos: 130.5,-20.5 + parent: 0 + type: Transform +- uid: 4103 + type: MountainRock + components: + - pos: 130.5,-21.5 + parent: 0 + type: Transform +- uid: 4104 + type: MountainRock + components: + - pos: 130.5,-22.5 + parent: 0 + type: Transform +- uid: 4105 + type: MountainRock + components: + - pos: 130.5,-23.5 + parent: 0 + type: Transform +- uid: 4106 + type: MountainRock + components: + - pos: 130.5,-24.5 + parent: 0 + type: Transform +- uid: 4107 + type: MountainRock + components: + - pos: 130.5,-25.5 + parent: 0 + type: Transform +- uid: 4108 + type: MountainRock + components: + - pos: 130.5,-26.5 + parent: 0 + type: Transform +- uid: 4109 + type: MountainRock + components: + - pos: 130.5,-27.5 + parent: 0 + type: Transform +- uid: 4110 + type: MountainRock + components: + - pos: 130.5,-28.5 + parent: 0 + type: Transform +- uid: 4111 + type: MountainRock + components: + - pos: 130.5,-29.5 + parent: 0 + type: Transform +- uid: 4112 + type: MountainRock + components: + - pos: 130.5,-30.5 + parent: 0 + type: Transform +- uid: 4113 + type: MountainRock + components: + - pos: 130.5,-31.5 + parent: 0 + type: Transform +- uid: 4114 + type: MountainRock + components: + - pos: 130.5,-32.5 + parent: 0 + type: Transform +- uid: 4115 + type: MountainRock + components: + - pos: 130.5,-33.5 + parent: 0 + type: Transform +- uid: 4116 + type: MountainRock + components: + - pos: 130.5,-34.5 + parent: 0 + type: Transform +- uid: 4117 + type: MountainRock + components: + - pos: 130.5,-35.5 + parent: 0 + type: Transform +- uid: 4118 + type: MountainRock + components: + - pos: 130.5,-36.5 + parent: 0 + type: Transform +- uid: 4119 + type: MountainRock + components: + - pos: 130.5,-37.5 + parent: 0 + type: Transform +- uid: 4120 + type: MountainRock + components: + - pos: 130.5,-38.5 + parent: 0 + type: Transform +- uid: 4121 + type: MountainRock + components: + - pos: 130.5,-39.5 + parent: 0 + type: Transform +- uid: 4122 + type: MountainRock + components: + - pos: 130.5,-40.5 + parent: 0 + type: Transform +- uid: 4123 + type: MountainRock + components: + - pos: 130.5,-41.5 + parent: 0 + type: Transform +- uid: 4124 + type: MountainRock + components: + - pos: 130.5,-42.5 + parent: 0 + type: Transform +- uid: 4125 + type: MountainRock + components: + - pos: 130.5,-43.5 + parent: 0 + type: Transform +- uid: 4126 + type: MountainRock + components: + - pos: 130.5,-44.5 + parent: 0 + type: Transform +- uid: 4127 + type: MountainRock + components: + - pos: 130.5,-45.5 + parent: 0 + type: Transform +- uid: 4128 + type: MountainRock + components: + - pos: 130.5,-46.5 + parent: 0 + type: Transform +- uid: 4129 + type: MountainRock + components: + - pos: 131.5,28.5 + parent: 0 + type: Transform +- uid: 4130 + type: MountainRock + components: + - pos: 131.5,27.5 + parent: 0 + type: Transform +- uid: 4131 + type: MountainRock + components: + - pos: 131.5,26.5 + parent: 0 + type: Transform +- uid: 4132 + type: MountainRock + components: + - pos: 131.5,25.5 + parent: 0 + type: Transform +- uid: 4133 + type: MountainRock + components: + - pos: 131.5,24.5 + parent: 0 + type: Transform +- uid: 4134 + type: MountainRock + components: + - pos: 131.5,23.5 + parent: 0 + type: Transform +- uid: 4135 + type: MountainRock + components: + - pos: 131.5,22.5 + parent: 0 + type: Transform +- uid: 4136 + type: MountainRock + components: + - pos: 131.5,21.5 + parent: 0 + type: Transform +- uid: 4137 + type: MountainRock + components: + - pos: 131.5,20.5 + parent: 0 + type: Transform +- uid: 4138 + type: MountainRock + components: + - pos: 131.5,19.5 + parent: 0 + type: Transform +- uid: 4139 + type: MountainRock + components: + - pos: 131.5,18.5 + parent: 0 + type: Transform +- uid: 4140 + type: MountainRock + components: + - pos: 131.5,17.5 + parent: 0 + type: Transform +- uid: 4141 + type: MountainRock + components: + - pos: 131.5,16.5 + parent: 0 + type: Transform +- uid: 4142 + type: MountainRock + components: + - pos: 131.5,15.5 + parent: 0 + type: Transform +- uid: 4143 + type: MountainRock + components: + - pos: 131.5,14.5 + parent: 0 + type: Transform +- uid: 4144 + type: MountainRock + components: + - pos: 131.5,13.5 + parent: 0 + type: Transform +- uid: 4145 + type: MountainRock + components: + - pos: 131.5,12.5 + parent: 0 + type: Transform +- uid: 4146 + type: MountainRock + components: + - pos: 131.5,11.5 + parent: 0 + type: Transform +- uid: 4147 + type: MountainRock + components: + - pos: 131.5,10.5 + parent: 0 + type: Transform +- uid: 4148 + type: MountainRock + components: + - pos: 131.5,9.5 + parent: 0 + type: Transform +- uid: 4149 + type: MountainRock + components: + - pos: 131.5,8.5 + parent: 0 + type: Transform +- uid: 4150 + type: MountainRock + components: + - pos: 131.5,7.5 + parent: 0 + type: Transform +- uid: 4151 + type: MountainRock + components: + - pos: 131.5,6.5 + parent: 0 + type: Transform +- uid: 4152 + type: MountainRock + components: + - pos: 131.5,5.5 + parent: 0 + type: Transform +- uid: 4153 + type: MountainRock + components: + - pos: 131.5,4.5 + parent: 0 + type: Transform +- uid: 4154 + type: MountainRock + components: + - pos: 131.5,3.5 + parent: 0 + type: Transform +- uid: 4155 + type: MountainRock + components: + - pos: 131.5,2.5 + parent: 0 + type: Transform +- uid: 4156 + type: MountainRock + components: + - pos: 131.5,1.5 + parent: 0 + type: Transform +- uid: 4157 + type: MountainRock + components: + - pos: 131.5,0.5 + parent: 0 + type: Transform +- uid: 4158 + type: MountainRock + components: + - pos: 131.5,-0.5 + parent: 0 + type: Transform +- uid: 4159 + type: MountainRock + components: + - pos: 131.5,-1.5 + parent: 0 + type: Transform +- uid: 4160 + type: MountainRock + components: + - pos: 131.5,-2.5 + parent: 0 + type: Transform +- uid: 4161 + type: MountainRock + components: + - pos: 131.5,-3.5 + parent: 0 + type: Transform +- uid: 4162 + type: MountainRock + components: + - pos: 131.5,-4.5 + parent: 0 + type: Transform +- uid: 4163 + type: MountainRock + components: + - pos: 131.5,-5.5 + parent: 0 + type: Transform +- uid: 4164 + type: MountainRock + components: + - pos: 131.5,-6.5 + parent: 0 + type: Transform +- uid: 4165 + type: MountainRock + components: + - pos: 131.5,-7.5 + parent: 0 + type: Transform +- uid: 4166 + type: MountainRock + components: + - pos: 131.5,-8.5 + parent: 0 + type: Transform +- uid: 4167 + type: MountainRock + components: + - pos: 131.5,-9.5 + parent: 0 + type: Transform +- uid: 4168 + type: MountainRock + components: + - pos: 131.5,-10.5 + parent: 0 + type: Transform +- uid: 4169 + type: MountainRock + components: + - pos: 131.5,-11.5 + parent: 0 + type: Transform +- uid: 4170 + type: MountainRock + components: + - pos: 131.5,-12.5 + parent: 0 + type: Transform +- uid: 4171 + type: MountainRock + components: + - pos: 131.5,-13.5 + parent: 0 + type: Transform +- uid: 4172 + type: MountainRock + components: + - pos: 131.5,-14.5 + parent: 0 + type: Transform +- uid: 4173 + type: MountainRock + components: + - pos: 131.5,-15.5 + parent: 0 + type: Transform +- uid: 4174 + type: MountainRock + components: + - pos: 131.5,-16.5 + parent: 0 + type: Transform +- uid: 4175 + type: MountainRock + components: + - pos: 131.5,-17.5 + parent: 0 + type: Transform +- uid: 4176 + type: MountainRock + components: + - pos: 131.5,-18.5 + parent: 0 + type: Transform +- uid: 4177 + type: MountainRock + components: + - pos: 131.5,-19.5 + parent: 0 + type: Transform +- uid: 4178 + type: MountainRock + components: + - pos: 131.5,-20.5 + parent: 0 + type: Transform +- uid: 4179 + type: MountainRock + components: + - pos: 131.5,-21.5 + parent: 0 + type: Transform +- uid: 4180 + type: MountainRock + components: + - pos: 131.5,-22.5 + parent: 0 + type: Transform +- uid: 4181 + type: MountainRock + components: + - pos: 131.5,-23.5 + parent: 0 + type: Transform +- uid: 4182 + type: MountainRock + components: + - pos: 131.5,-24.5 + parent: 0 + type: Transform +- uid: 4183 + type: MountainRock + components: + - pos: 131.5,-25.5 + parent: 0 + type: Transform +- uid: 4184 + type: MountainRock + components: + - pos: 131.5,-26.5 + parent: 0 + type: Transform +- uid: 4185 + type: MountainRock + components: + - pos: 131.5,-27.5 + parent: 0 + type: Transform +- uid: 4186 + type: MountainRock + components: + - pos: 131.5,-28.5 + parent: 0 + type: Transform +- uid: 4187 + type: MountainRock + components: + - pos: 131.5,-29.5 + parent: 0 + type: Transform +- uid: 4188 + type: MountainRock + components: + - pos: 131.5,-30.5 + parent: 0 + type: Transform +- uid: 4189 + type: MountainRock + components: + - pos: 131.5,-31.5 + parent: 0 + type: Transform +- uid: 4190 + type: MountainRock + components: + - pos: 131.5,-32.5 + parent: 0 + type: Transform +- uid: 4191 + type: MountainRock + components: + - pos: 131.5,-33.5 + parent: 0 + type: Transform +- uid: 4192 + type: MountainRock + components: + - pos: 131.5,-34.5 + parent: 0 + type: Transform +- uid: 4193 + type: MountainRock + components: + - pos: 131.5,-35.5 + parent: 0 + type: Transform +- uid: 4194 + type: MountainRock + components: + - pos: 131.5,-36.5 + parent: 0 + type: Transform +- uid: 4195 + type: MountainRock + components: + - pos: 131.5,-37.5 + parent: 0 + type: Transform +- uid: 4196 + type: MountainRock + components: + - pos: 131.5,-38.5 + parent: 0 + type: Transform +- uid: 4197 + type: MountainRock + components: + - pos: 131.5,-39.5 + parent: 0 + type: Transform +- uid: 4198 + type: MountainRock + components: + - pos: 131.5,-40.5 + parent: 0 + type: Transform +- uid: 4199 + type: MountainRock + components: + - pos: 131.5,-41.5 + parent: 0 + type: Transform +- uid: 4200 + type: MountainRock + components: + - pos: 131.5,-42.5 + parent: 0 + type: Transform +- uid: 4201 + type: MountainRock + components: + - pos: 131.5,-43.5 + parent: 0 + type: Transform +- uid: 4202 + type: MountainRock + components: + - pos: 131.5,-44.5 + parent: 0 + type: Transform +- uid: 4203 + type: MountainRock + components: + - pos: 131.5,-45.5 + parent: 0 + type: Transform +- uid: 4204 + type: MountainRock + components: + - pos: 131.5,-46.5 + parent: 0 + type: Transform +- uid: 4205 + type: MountainRock + components: + - pos: 132.5,28.5 + parent: 0 + type: Transform +- uid: 4206 + type: MountainRock + components: + - pos: 132.5,27.5 + parent: 0 + type: Transform +- uid: 4207 + type: MountainRock + components: + - pos: 132.5,26.5 + parent: 0 + type: Transform +- uid: 4208 + type: MountainRock + components: + - pos: 132.5,25.5 + parent: 0 + type: Transform +- uid: 4209 + type: MountainRock + components: + - pos: 132.5,24.5 + parent: 0 + type: Transform +- uid: 4210 + type: MountainRock + components: + - pos: 132.5,23.5 + parent: 0 + type: Transform +- uid: 4211 + type: MountainRock + components: + - pos: 132.5,22.5 + parent: 0 + type: Transform +- uid: 4212 + type: MountainRock + components: + - pos: 132.5,21.5 + parent: 0 + type: Transform +- uid: 4213 + type: MountainRock + components: + - pos: 132.5,20.5 + parent: 0 + type: Transform +- uid: 4214 + type: MountainRock + components: + - pos: 132.5,19.5 + parent: 0 + type: Transform +- uid: 4215 + type: MountainRock + components: + - pos: 132.5,18.5 + parent: 0 + type: Transform +- uid: 4216 + type: MountainRock + components: + - pos: 132.5,17.5 + parent: 0 + type: Transform +- uid: 4217 + type: MountainRock + components: + - pos: 132.5,16.5 + parent: 0 + type: Transform +- uid: 4218 + type: MountainRock + components: + - pos: 132.5,15.5 + parent: 0 + type: Transform +- uid: 4219 + type: MountainRock + components: + - pos: 132.5,14.5 + parent: 0 + type: Transform +- uid: 4220 + type: MountainRock + components: + - pos: 132.5,13.5 + parent: 0 + type: Transform +- uid: 4221 + type: MountainRock + components: + - pos: 132.5,12.5 + parent: 0 + type: Transform +- uid: 4222 + type: MountainRock + components: + - pos: 132.5,11.5 + parent: 0 + type: Transform +- uid: 4223 + type: MountainRock + components: + - pos: 132.5,10.5 + parent: 0 + type: Transform +- uid: 4224 + type: MountainRock + components: + - pos: 132.5,9.5 + parent: 0 + type: Transform +- uid: 4225 + type: MountainRock + components: + - pos: 132.5,8.5 + parent: 0 + type: Transform +- uid: 4226 + type: MountainRock + components: + - pos: 132.5,7.5 + parent: 0 + type: Transform +- uid: 4227 + type: MountainRock + components: + - pos: 132.5,6.5 + parent: 0 + type: Transform +- uid: 4228 + type: MountainRock + components: + - pos: 132.5,5.5 + parent: 0 + type: Transform +- uid: 4229 + type: MountainRock + components: + - pos: 132.5,4.5 + parent: 0 + type: Transform +- uid: 4230 + type: MountainRock + components: + - pos: 132.5,3.5 + parent: 0 + type: Transform +- uid: 4231 + type: MountainRock + components: + - pos: 132.5,2.5 + parent: 0 + type: Transform +- uid: 4232 + type: MountainRock + components: + - pos: 132.5,1.5 + parent: 0 + type: Transform +- uid: 4233 + type: MountainRock + components: + - pos: 132.5,0.5 + parent: 0 + type: Transform +- uid: 4234 + type: MountainRock + components: + - pos: 132.5,-0.5 + parent: 0 + type: Transform +- uid: 4235 + type: MountainRock + components: + - pos: 132.5,-1.5 + parent: 0 + type: Transform +- uid: 4236 + type: MountainRock + components: + - pos: 132.5,-2.5 + parent: 0 + type: Transform +- uid: 4237 + type: MountainRock + components: + - pos: 132.5,-3.5 + parent: 0 + type: Transform +- uid: 4238 + type: MountainRock + components: + - pos: 132.5,-4.5 + parent: 0 + type: Transform +- uid: 4239 + type: MountainRock + components: + - pos: 132.5,-5.5 + parent: 0 + type: Transform +- uid: 4240 + type: MountainRock + components: + - pos: 132.5,-6.5 + parent: 0 + type: Transform +- uid: 4241 + type: MountainRock + components: + - pos: 132.5,-7.5 + parent: 0 + type: Transform +- uid: 4242 + type: MountainRock + components: + - pos: 132.5,-8.5 + parent: 0 + type: Transform +- uid: 4243 + type: MountainRock + components: + - pos: 132.5,-9.5 + parent: 0 + type: Transform +- uid: 4244 + type: MountainRock + components: + - pos: 132.5,-10.5 + parent: 0 + type: Transform +- uid: 4245 + type: MountainRock + components: + - pos: 132.5,-11.5 + parent: 0 + type: Transform +- uid: 4246 + type: MountainRock + components: + - pos: 132.5,-12.5 + parent: 0 + type: Transform +- uid: 4247 + type: MountainRock + components: + - pos: 132.5,-13.5 + parent: 0 + type: Transform +- uid: 4248 + type: MountainRock + components: + - pos: 132.5,-14.5 + parent: 0 + type: Transform +- uid: 4249 + type: MountainRock + components: + - pos: 132.5,-15.5 + parent: 0 + type: Transform +- uid: 4250 + type: MountainRock + components: + - pos: 132.5,-16.5 + parent: 0 + type: Transform +- uid: 4251 + type: MountainRock + components: + - pos: 132.5,-17.5 + parent: 0 + type: Transform +- uid: 4252 + type: MountainRock + components: + - pos: 132.5,-18.5 + parent: 0 + type: Transform +- uid: 4253 + type: MountainRock + components: + - pos: 132.5,-19.5 + parent: 0 + type: Transform +- uid: 4254 + type: MountainRock + components: + - pos: 132.5,-20.5 + parent: 0 + type: Transform +- uid: 4255 + type: MountainRock + components: + - pos: 132.5,-21.5 + parent: 0 + type: Transform +- uid: 4256 + type: MountainRock + components: + - pos: 132.5,-22.5 + parent: 0 + type: Transform +- uid: 4257 + type: MountainRock + components: + - pos: 132.5,-23.5 + parent: 0 + type: Transform +- uid: 4258 + type: MountainRock + components: + - pos: 132.5,-24.5 + parent: 0 + type: Transform +- uid: 4259 + type: MountainRock + components: + - pos: 132.5,-25.5 + parent: 0 + type: Transform +- uid: 4260 + type: MountainRock + components: + - pos: 132.5,-26.5 + parent: 0 + type: Transform +- uid: 4261 + type: MountainRock + components: + - pos: 132.5,-27.5 + parent: 0 + type: Transform +- uid: 4262 + type: MountainRock + components: + - pos: 132.5,-28.5 + parent: 0 + type: Transform +- uid: 4263 + type: MountainRock + components: + - pos: 132.5,-29.5 + parent: 0 + type: Transform +- uid: 4264 + type: MountainRock + components: + - pos: 132.5,-30.5 + parent: 0 + type: Transform +- uid: 4265 + type: MountainRock + components: + - pos: 132.5,-31.5 + parent: 0 + type: Transform +- uid: 4266 + type: MountainRock + components: + - pos: 132.5,-32.5 + parent: 0 + type: Transform +- uid: 4267 + type: MountainRock + components: + - pos: 132.5,-33.5 + parent: 0 + type: Transform +- uid: 4268 + type: MountainRock + components: + - pos: 132.5,-34.5 + parent: 0 + type: Transform +- uid: 4269 + type: MountainRock + components: + - pos: 132.5,-35.5 + parent: 0 + type: Transform +- uid: 4270 + type: MountainRock + components: + - pos: 132.5,-36.5 + parent: 0 + type: Transform +- uid: 4271 + type: MountainRock + components: + - pos: 132.5,-37.5 + parent: 0 + type: Transform +- uid: 4272 + type: MountainRock + components: + - pos: 132.5,-38.5 + parent: 0 + type: Transform +- uid: 4273 + type: MountainRock + components: + - pos: 132.5,-39.5 + parent: 0 + type: Transform +- uid: 4274 + type: MountainRock + components: + - pos: 132.5,-40.5 + parent: 0 + type: Transform +- uid: 4275 + type: MountainRock + components: + - pos: 132.5,-41.5 + parent: 0 + type: Transform +- uid: 4276 + type: MountainRock + components: + - pos: 132.5,-42.5 + parent: 0 + type: Transform +- uid: 4277 + type: MountainRock + components: + - pos: 132.5,-43.5 + parent: 0 + type: Transform +- uid: 4278 + type: MountainRock + components: + - pos: 132.5,-44.5 + parent: 0 + type: Transform +- uid: 4279 + type: MountainRock + components: + - pos: 132.5,-45.5 + parent: 0 + type: Transform +- uid: 4280 + type: MountainRock + components: + - pos: 132.5,-46.5 + parent: 0 + type: Transform +- uid: 4281 + type: MountainRock + components: + - pos: 133.5,28.5 + parent: 0 + type: Transform +- uid: 4282 + type: MountainRock + components: + - pos: 133.5,27.5 + parent: 0 + type: Transform +- uid: 4283 + type: MountainRock + components: + - pos: 133.5,26.5 + parent: 0 + type: Transform +- uid: 4284 + type: MountainRock + components: + - pos: 133.5,25.5 + parent: 0 + type: Transform +- uid: 4285 + type: MountainRock + components: + - pos: 133.5,24.5 + parent: 0 + type: Transform +- uid: 4286 + type: MountainRock + components: + - pos: 133.5,23.5 + parent: 0 + type: Transform +- uid: 4287 + type: MountainRock + components: + - pos: 133.5,22.5 + parent: 0 + type: Transform +- uid: 4288 + type: MountainRock + components: + - pos: 133.5,21.5 + parent: 0 + type: Transform +- uid: 4289 + type: MountainRock + components: + - pos: 133.5,20.5 + parent: 0 + type: Transform +- uid: 4290 + type: MountainRock + components: + - pos: 133.5,19.5 + parent: 0 + type: Transform +- uid: 4291 + type: MountainRock + components: + - pos: 133.5,18.5 + parent: 0 + type: Transform +- uid: 4292 + type: MountainRock + components: + - pos: 133.5,17.5 + parent: 0 + type: Transform +- uid: 4293 + type: MountainRock + components: + - pos: 133.5,16.5 + parent: 0 + type: Transform +- uid: 4294 + type: MountainRock + components: + - pos: 133.5,15.5 + parent: 0 + type: Transform +- uid: 4295 + type: MountainRock + components: + - pos: 133.5,14.5 + parent: 0 + type: Transform +- uid: 4296 + type: MountainRock + components: + - pos: 133.5,13.5 + parent: 0 + type: Transform +- uid: 4297 + type: MountainRock + components: + - pos: 133.5,12.5 + parent: 0 + type: Transform +- uid: 4298 + type: MountainRock + components: + - pos: 133.5,11.5 + parent: 0 + type: Transform +- uid: 4299 + type: MountainRock + components: + - pos: 133.5,10.5 + parent: 0 + type: Transform +- uid: 4300 + type: MountainRock + components: + - pos: 133.5,9.5 + parent: 0 + type: Transform +- uid: 4301 + type: MountainRock + components: + - pos: 133.5,8.5 + parent: 0 + type: Transform +- uid: 4302 + type: MountainRock + components: + - pos: 133.5,7.5 + parent: 0 + type: Transform +- uid: 4303 + type: MountainRock + components: + - pos: 133.5,6.5 + parent: 0 + type: Transform +- uid: 4304 + type: MountainRock + components: + - pos: 133.5,5.5 + parent: 0 + type: Transform +- uid: 4305 + type: MountainRock + components: + - pos: 133.5,4.5 + parent: 0 + type: Transform +- uid: 4306 + type: MountainRock + components: + - pos: 133.5,3.5 + parent: 0 + type: Transform +- uid: 4307 + type: MountainRock + components: + - pos: 133.5,2.5 + parent: 0 + type: Transform +- uid: 4308 + type: MountainRock + components: + - pos: 133.5,1.5 + parent: 0 + type: Transform +- uid: 4309 + type: MountainRock + components: + - pos: 133.5,0.5 + parent: 0 + type: Transform +- uid: 4310 + type: MountainRock + components: + - pos: 133.5,-0.5 + parent: 0 + type: Transform +- uid: 4311 + type: MountainRock + components: + - pos: 133.5,-1.5 + parent: 0 + type: Transform +- uid: 4312 + type: MountainRock + components: + - pos: 133.5,-2.5 + parent: 0 + type: Transform +- uid: 4313 + type: MountainRock + components: + - pos: 133.5,-3.5 + parent: 0 + type: Transform +- uid: 4314 + type: MountainRock + components: + - pos: 133.5,-4.5 + parent: 0 + type: Transform +- uid: 4315 + type: MountainRock + components: + - pos: 133.5,-5.5 + parent: 0 + type: Transform +- uid: 4316 + type: MountainRock + components: + - pos: 133.5,-6.5 + parent: 0 + type: Transform +- uid: 4317 + type: MountainRock + components: + - pos: 133.5,-7.5 + parent: 0 + type: Transform +- uid: 4318 + type: MountainRock + components: + - pos: 133.5,-8.5 + parent: 0 + type: Transform +- uid: 4319 + type: MountainRock + components: + - pos: 133.5,-9.5 + parent: 0 + type: Transform +- uid: 4320 + type: MountainRock + components: + - pos: 133.5,-10.5 + parent: 0 + type: Transform +- uid: 4321 + type: MountainRock + components: + - pos: 133.5,-11.5 + parent: 0 + type: Transform +- uid: 4322 + type: MountainRock + components: + - pos: 133.5,-12.5 + parent: 0 + type: Transform +- uid: 4323 + type: MountainRock + components: + - pos: 133.5,-13.5 + parent: 0 + type: Transform +- uid: 4324 + type: MountainRock + components: + - pos: 133.5,-14.5 + parent: 0 + type: Transform +- uid: 4325 + type: MountainRock + components: + - pos: 133.5,-15.5 + parent: 0 + type: Transform +- uid: 4326 + type: MountainRock + components: + - pos: 133.5,-16.5 + parent: 0 + type: Transform +- uid: 4327 + type: MountainRock + components: + - pos: 133.5,-17.5 + parent: 0 + type: Transform +- uid: 4328 + type: MountainRock + components: + - pos: 133.5,-18.5 + parent: 0 + type: Transform +- uid: 4329 + type: MountainRock + components: + - pos: 133.5,-19.5 + parent: 0 + type: Transform +- uid: 4330 + type: MountainRock + components: + - pos: 133.5,-20.5 + parent: 0 + type: Transform +- uid: 4331 + type: MountainRock + components: + - pos: 133.5,-21.5 + parent: 0 + type: Transform +- uid: 4332 + type: MountainRock + components: + - pos: 133.5,-22.5 + parent: 0 + type: Transform +- uid: 4333 + type: MountainRock + components: + - pos: 133.5,-23.5 + parent: 0 + type: Transform +- uid: 4334 + type: MountainRock + components: + - pos: 133.5,-24.5 + parent: 0 + type: Transform +- uid: 4335 + type: MountainRock + components: + - pos: 133.5,-25.5 + parent: 0 + type: Transform +- uid: 4336 + type: MountainRock + components: + - pos: 133.5,-26.5 + parent: 0 + type: Transform +- uid: 4337 + type: MountainRock + components: + - pos: 133.5,-27.5 + parent: 0 + type: Transform +- uid: 4338 + type: MountainRock + components: + - pos: 133.5,-28.5 + parent: 0 + type: Transform +- uid: 4339 + type: MountainRock + components: + - pos: 133.5,-29.5 + parent: 0 + type: Transform +- uid: 4340 + type: MountainRock + components: + - pos: 133.5,-30.5 + parent: 0 + type: Transform +- uid: 4341 + type: MountainRock + components: + - pos: 133.5,-31.5 + parent: 0 + type: Transform +- uid: 4342 + type: MountainRock + components: + - pos: 133.5,-32.5 + parent: 0 + type: Transform +- uid: 4343 + type: MountainRock + components: + - pos: 133.5,-33.5 + parent: 0 + type: Transform +- uid: 4344 + type: MountainRock + components: + - pos: 133.5,-34.5 + parent: 0 + type: Transform +- uid: 4345 + type: MountainRock + components: + - pos: 133.5,-35.5 + parent: 0 + type: Transform +- uid: 4346 + type: MountainRock + components: + - pos: 133.5,-36.5 + parent: 0 + type: Transform +- uid: 4347 + type: MountainRock + components: + - pos: 133.5,-37.5 + parent: 0 + type: Transform +- uid: 4348 + type: MountainRock + components: + - pos: 133.5,-38.5 + parent: 0 + type: Transform +- uid: 4349 + type: MountainRock + components: + - pos: 133.5,-39.5 + parent: 0 + type: Transform +- uid: 4350 + type: MountainRock + components: + - pos: 133.5,-40.5 + parent: 0 + type: Transform +- uid: 4351 + type: MountainRock + components: + - pos: 133.5,-41.5 + parent: 0 + type: Transform +- uid: 4352 + type: MountainRock + components: + - pos: 133.5,-42.5 + parent: 0 + type: Transform +- uid: 4353 + type: MountainRock + components: + - pos: 133.5,-43.5 + parent: 0 + type: Transform +- uid: 4354 + type: MountainRock + components: + - pos: 133.5,-44.5 + parent: 0 + type: Transform +- uid: 4355 + type: MountainRock + components: + - pos: 133.5,-45.5 + parent: 0 + type: Transform +- uid: 4356 + type: MountainRock + components: + - pos: 133.5,-46.5 + parent: 0 + type: Transform +- uid: 4357 + type: MountainRock + components: + - pos: 134.5,28.5 + parent: 0 + type: Transform +- uid: 4358 + type: MountainRock + components: + - pos: 134.5,27.5 + parent: 0 + type: Transform +- uid: 4359 + type: MountainRock + components: + - pos: 134.5,26.5 + parent: 0 + type: Transform +- uid: 4360 + type: MountainRock + components: + - pos: 134.5,25.5 + parent: 0 + type: Transform +- uid: 4361 + type: MountainRock + components: + - pos: 134.5,24.5 + parent: 0 + type: Transform +- uid: 4362 + type: MountainRock + components: + - pos: 134.5,23.5 + parent: 0 + type: Transform +- uid: 4363 + type: MountainRock + components: + - pos: 134.5,22.5 + parent: 0 + type: Transform +- uid: 4364 + type: MountainRock + components: + - pos: 134.5,21.5 + parent: 0 + type: Transform +- uid: 4365 + type: MountainRock + components: + - pos: 134.5,20.5 + parent: 0 + type: Transform +- uid: 4366 + type: MountainRock + components: + - pos: 134.5,19.5 + parent: 0 + type: Transform +- uid: 4367 + type: MountainRock + components: + - pos: 134.5,18.5 + parent: 0 + type: Transform +- uid: 4368 + type: MountainRock + components: + - pos: 134.5,17.5 + parent: 0 + type: Transform +- uid: 4369 + type: MountainRock + components: + - pos: 134.5,16.5 + parent: 0 + type: Transform +- uid: 4370 + type: MountainRock + components: + - pos: 134.5,15.5 + parent: 0 + type: Transform +- uid: 4371 + type: MountainRock + components: + - pos: 134.5,14.5 + parent: 0 + type: Transform +- uid: 4372 + type: MountainRock + components: + - pos: 134.5,13.5 + parent: 0 + type: Transform +- uid: 4373 + type: MountainRock + components: + - pos: 134.5,12.5 + parent: 0 + type: Transform +- uid: 4374 + type: MountainRock + components: + - pos: 134.5,11.5 + parent: 0 + type: Transform +- uid: 4375 + type: MountainRock + components: + - pos: 134.5,10.5 + parent: 0 + type: Transform +- uid: 4376 + type: MountainRock + components: + - pos: 134.5,9.5 + parent: 0 + type: Transform +- uid: 4377 + type: MountainRock + components: + - pos: 134.5,8.5 + parent: 0 + type: Transform +- uid: 4378 + type: MountainRock + components: + - pos: 134.5,7.5 + parent: 0 + type: Transform +- uid: 4379 + type: MountainRock + components: + - pos: 134.5,6.5 + parent: 0 + type: Transform +- uid: 4380 + type: MountainRock + components: + - pos: 134.5,5.5 + parent: 0 + type: Transform +- uid: 4381 + type: MountainRock + components: + - pos: 134.5,4.5 + parent: 0 + type: Transform +- uid: 4382 + type: MountainRock + components: + - pos: 134.5,3.5 + parent: 0 + type: Transform +- uid: 4383 + type: MountainRock + components: + - pos: 134.5,2.5 + parent: 0 + type: Transform +- uid: 4384 + type: MountainRock + components: + - pos: 134.5,1.5 + parent: 0 + type: Transform +- uid: 4385 + type: MountainRock + components: + - pos: 134.5,0.5 + parent: 0 + type: Transform +- uid: 4386 + type: MountainRock + components: + - pos: 134.5,-0.5 + parent: 0 + type: Transform +- uid: 4387 + type: MountainRock + components: + - pos: 134.5,-1.5 + parent: 0 + type: Transform +- uid: 4388 + type: MountainRock + components: + - pos: 134.5,-2.5 + parent: 0 + type: Transform +- uid: 4389 + type: MountainRock + components: + - pos: 134.5,-3.5 + parent: 0 + type: Transform +- uid: 4390 + type: MountainRock + components: + - pos: 134.5,-4.5 + parent: 0 + type: Transform +- uid: 4391 + type: MountainRock + components: + - pos: 134.5,-5.5 + parent: 0 + type: Transform +- uid: 4392 + type: MountainRock + components: + - pos: 134.5,-6.5 + parent: 0 + type: Transform +- uid: 4393 + type: MountainRock + components: + - pos: 134.5,-7.5 + parent: 0 + type: Transform +- uid: 4394 + type: MountainRock + components: + - pos: 134.5,-8.5 + parent: 0 + type: Transform +- uid: 4395 + type: MountainRock + components: + - pos: 134.5,-9.5 + parent: 0 + type: Transform +- uid: 4396 + type: MountainRock + components: + - pos: 134.5,-10.5 + parent: 0 + type: Transform +- uid: 4397 + type: MountainRock + components: + - pos: 134.5,-11.5 + parent: 0 + type: Transform +- uid: 4398 + type: MountainRock + components: + - pos: 134.5,-12.5 + parent: 0 + type: Transform +- uid: 4399 + type: MountainRock + components: + - pos: 134.5,-13.5 + parent: 0 + type: Transform +- uid: 4400 + type: MountainRock + components: + - pos: 134.5,-14.5 + parent: 0 + type: Transform +- uid: 4401 + type: MountainRock + components: + - pos: 134.5,-15.5 + parent: 0 + type: Transform +- uid: 4402 + type: MountainRock + components: + - pos: 134.5,-16.5 + parent: 0 + type: Transform +- uid: 4403 + type: MountainRock + components: + - pos: 134.5,-17.5 + parent: 0 + type: Transform +- uid: 4404 + type: MountainRock + components: + - pos: 134.5,-18.5 + parent: 0 + type: Transform +- uid: 4405 + type: MountainRock + components: + - pos: 134.5,-19.5 + parent: 0 + type: Transform +- uid: 4406 + type: MountainRock + components: + - pos: 134.5,-20.5 + parent: 0 + type: Transform +- uid: 4407 + type: MountainRock + components: + - pos: 134.5,-21.5 + parent: 0 + type: Transform +- uid: 4408 + type: MountainRock + components: + - pos: 134.5,-22.5 + parent: 0 + type: Transform +- uid: 4409 + type: MountainRock + components: + - pos: 134.5,-23.5 + parent: 0 + type: Transform +- uid: 4410 + type: MountainRock + components: + - pos: 134.5,-24.5 + parent: 0 + type: Transform +- uid: 4411 + type: MountainRock + components: + - pos: 134.5,-25.5 + parent: 0 + type: Transform +- uid: 4412 + type: MountainRock + components: + - pos: 134.5,-26.5 + parent: 0 + type: Transform +- uid: 4413 + type: MountainRock + components: + - pos: 134.5,-27.5 + parent: 0 + type: Transform +- uid: 4414 + type: MountainRock + components: + - pos: 134.5,-28.5 + parent: 0 + type: Transform +- uid: 4415 + type: MountainRock + components: + - pos: 134.5,-29.5 + parent: 0 + type: Transform +- uid: 4416 + type: MountainRock + components: + - pos: 134.5,-30.5 + parent: 0 + type: Transform +- uid: 4417 + type: MountainRock + components: + - pos: 134.5,-31.5 + parent: 0 + type: Transform +- uid: 4418 + type: MountainRock + components: + - pos: 134.5,-32.5 + parent: 0 + type: Transform +- uid: 4419 + type: MountainRock + components: + - pos: 134.5,-33.5 + parent: 0 + type: Transform +- uid: 4420 + type: MountainRock + components: + - pos: 134.5,-34.5 + parent: 0 + type: Transform +- uid: 4421 + type: MountainRock + components: + - pos: 134.5,-35.5 + parent: 0 + type: Transform +- uid: 4422 + type: MountainRock + components: + - pos: 134.5,-36.5 + parent: 0 + type: Transform +- uid: 4423 + type: MountainRock + components: + - pos: 134.5,-37.5 + parent: 0 + type: Transform +- uid: 4424 + type: MountainRock + components: + - pos: 134.5,-38.5 + parent: 0 + type: Transform +- uid: 4425 + type: MountainRock + components: + - pos: 134.5,-39.5 + parent: 0 + type: Transform +- uid: 4426 + type: MountainRock + components: + - pos: 134.5,-40.5 + parent: 0 + type: Transform +- uid: 4427 + type: MountainRock + components: + - pos: 134.5,-41.5 + parent: 0 + type: Transform +- uid: 4428 + type: MountainRock + components: + - pos: 134.5,-42.5 + parent: 0 + type: Transform +- uid: 4429 + type: MountainRock + components: + - pos: 134.5,-43.5 + parent: 0 + type: Transform +- uid: 4430 + type: MountainRock + components: + - pos: 134.5,-44.5 + parent: 0 + type: Transform +- uid: 4431 + type: MountainRock + components: + - pos: 134.5,-45.5 + parent: 0 + type: Transform +- uid: 4432 + type: MountainRock + components: + - pos: 134.5,-46.5 + parent: 0 + type: Transform +- uid: 4433 + type: MountainRock + components: + - pos: 135.5,28.5 + parent: 0 + type: Transform +- uid: 4434 + type: MountainRock + components: + - pos: 135.5,27.5 + parent: 0 + type: Transform +- uid: 4435 + type: MountainRock + components: + - pos: 135.5,26.5 + parent: 0 + type: Transform +- uid: 4436 + type: MountainRock + components: + - pos: 135.5,25.5 + parent: 0 + type: Transform +- uid: 4437 + type: MountainRock + components: + - pos: 135.5,24.5 + parent: 0 + type: Transform +- uid: 4438 + type: MountainRock + components: + - pos: 135.5,23.5 + parent: 0 + type: Transform +- uid: 4439 + type: MountainRock + components: + - pos: 135.5,22.5 + parent: 0 + type: Transform +- uid: 4440 + type: MountainRock + components: + - pos: 135.5,21.5 + parent: 0 + type: Transform +- uid: 4441 + type: MountainRock + components: + - pos: 135.5,20.5 + parent: 0 + type: Transform +- uid: 4442 + type: MountainRock + components: + - pos: 135.5,19.5 + parent: 0 + type: Transform +- uid: 4443 + type: MountainRock + components: + - pos: 135.5,18.5 + parent: 0 + type: Transform +- uid: 4444 + type: MountainRock + components: + - pos: 135.5,17.5 + parent: 0 + type: Transform +- uid: 4445 + type: MountainRock + components: + - pos: 135.5,16.5 + parent: 0 + type: Transform +- uid: 4446 + type: MountainRock + components: + - pos: 135.5,15.5 + parent: 0 + type: Transform +- uid: 4447 + type: MountainRock + components: + - pos: 135.5,14.5 + parent: 0 + type: Transform +- uid: 4448 + type: MountainRock + components: + - pos: 135.5,13.5 + parent: 0 + type: Transform +- uid: 4449 + type: MountainRock + components: + - pos: 135.5,12.5 + parent: 0 + type: Transform +- uid: 4450 + type: MountainRock + components: + - pos: 135.5,11.5 + parent: 0 + type: Transform +- uid: 4451 + type: MountainRock + components: + - pos: 135.5,10.5 + parent: 0 + type: Transform +- uid: 4452 + type: MountainRock + components: + - pos: 135.5,9.5 + parent: 0 + type: Transform +- uid: 4453 + type: MountainRock + components: + - pos: 135.5,8.5 + parent: 0 + type: Transform +- uid: 4454 + type: MountainRock + components: + - pos: 135.5,7.5 + parent: 0 + type: Transform +- uid: 4455 + type: MountainRock + components: + - pos: 135.5,6.5 + parent: 0 + type: Transform +- uid: 4456 + type: MountainRock + components: + - pos: 135.5,5.5 + parent: 0 + type: Transform +- uid: 4457 + type: MountainRock + components: + - pos: 135.5,4.5 + parent: 0 + type: Transform +- uid: 4458 + type: MountainRock + components: + - pos: 135.5,3.5 + parent: 0 + type: Transform +- uid: 4459 + type: MountainRock + components: + - pos: 135.5,2.5 + parent: 0 + type: Transform +- uid: 4460 + type: MountainRock + components: + - pos: 135.5,1.5 + parent: 0 + type: Transform +- uid: 4461 + type: MountainRock + components: + - pos: 135.5,0.5 + parent: 0 + type: Transform +- uid: 4462 + type: MountainRock + components: + - pos: 135.5,-0.5 + parent: 0 + type: Transform +- uid: 4463 + type: MountainRock + components: + - pos: 135.5,-1.5 + parent: 0 + type: Transform +- uid: 4464 + type: MountainRock + components: + - pos: 135.5,-2.5 + parent: 0 + type: Transform +- uid: 4465 + type: MountainRock + components: + - pos: 135.5,-3.5 + parent: 0 + type: Transform +- uid: 4466 + type: MountainRock + components: + - pos: 135.5,-4.5 + parent: 0 + type: Transform +- uid: 4467 + type: MountainRock + components: + - pos: 135.5,-5.5 + parent: 0 + type: Transform +- uid: 4468 + type: MountainRock + components: + - pos: 135.5,-6.5 + parent: 0 + type: Transform +- uid: 4469 + type: MountainRock + components: + - pos: 135.5,-7.5 + parent: 0 + type: Transform +- uid: 4470 + type: MountainRock + components: + - pos: 135.5,-8.5 + parent: 0 + type: Transform +- uid: 4471 + type: MountainRock + components: + - pos: 135.5,-9.5 + parent: 0 + type: Transform +- uid: 4472 + type: MountainRock + components: + - pos: 135.5,-10.5 + parent: 0 + type: Transform +- uid: 4473 + type: MountainRock + components: + - pos: 135.5,-11.5 + parent: 0 + type: Transform +- uid: 4474 + type: MountainRock + components: + - pos: 135.5,-12.5 + parent: 0 + type: Transform +- uid: 4475 + type: MountainRock + components: + - pos: 135.5,-13.5 + parent: 0 + type: Transform +- uid: 4476 + type: MountainRock + components: + - pos: 135.5,-14.5 + parent: 0 + type: Transform +- uid: 4477 + type: MountainRock + components: + - pos: 135.5,-15.5 + parent: 0 + type: Transform +- uid: 4478 + type: MountainRock + components: + - pos: 135.5,-16.5 + parent: 0 + type: Transform +- uid: 4479 + type: MountainRock + components: + - pos: 135.5,-17.5 + parent: 0 + type: Transform +- uid: 4480 + type: MountainRock + components: + - pos: 135.5,-18.5 + parent: 0 + type: Transform +- uid: 4481 + type: MountainRock + components: + - pos: 135.5,-19.5 + parent: 0 + type: Transform +- uid: 4482 + type: MountainRock + components: + - pos: 135.5,-20.5 + parent: 0 + type: Transform +- uid: 4483 + type: MountainRock + components: + - pos: 135.5,-21.5 + parent: 0 + type: Transform +- uid: 4484 + type: MountainRock + components: + - pos: 135.5,-22.5 + parent: 0 + type: Transform +- uid: 4485 + type: MountainRock + components: + - pos: 135.5,-23.5 + parent: 0 + type: Transform +- uid: 4486 + type: MountainRock + components: + - pos: 135.5,-24.5 + parent: 0 + type: Transform +- uid: 4487 + type: MountainRock + components: + - pos: 135.5,-25.5 + parent: 0 + type: Transform +- uid: 4488 + type: MountainRock + components: + - pos: 135.5,-26.5 + parent: 0 + type: Transform +- uid: 4489 + type: MountainRock + components: + - pos: 135.5,-27.5 + parent: 0 + type: Transform +- uid: 4490 + type: MountainRock + components: + - pos: 135.5,-28.5 + parent: 0 + type: Transform +- uid: 4491 + type: MountainRock + components: + - pos: 135.5,-29.5 + parent: 0 + type: Transform +- uid: 4492 + type: MountainRock + components: + - pos: 135.5,-30.5 + parent: 0 + type: Transform +- uid: 4493 + type: MountainRock + components: + - pos: 135.5,-31.5 + parent: 0 + type: Transform +- uid: 4494 + type: MountainRock + components: + - pos: 135.5,-32.5 + parent: 0 + type: Transform +- uid: 4495 + type: MountainRock + components: + - pos: 135.5,-33.5 + parent: 0 + type: Transform +- uid: 4496 + type: MountainRock + components: + - pos: 135.5,-34.5 + parent: 0 + type: Transform +- uid: 4497 + type: MountainRock + components: + - pos: 135.5,-35.5 + parent: 0 + type: Transform +- uid: 4498 + type: MountainRock + components: + - pos: 135.5,-36.5 + parent: 0 + type: Transform +- uid: 4499 + type: MountainRock + components: + - pos: 135.5,-37.5 + parent: 0 + type: Transform +- uid: 4500 + type: MountainRock + components: + - pos: 135.5,-38.5 + parent: 0 + type: Transform +- uid: 4501 + type: MountainRock + components: + - pos: 135.5,-39.5 + parent: 0 + type: Transform +- uid: 4502 + type: MountainRock + components: + - pos: 135.5,-40.5 + parent: 0 + type: Transform +- uid: 4503 + type: MountainRock + components: + - pos: 135.5,-41.5 + parent: 0 + type: Transform +- uid: 4504 + type: MountainRock + components: + - pos: 135.5,-42.5 + parent: 0 + type: Transform +- uid: 4505 + type: MountainRock + components: + - pos: 135.5,-43.5 + parent: 0 + type: Transform +- uid: 4506 + type: MountainRock + components: + - pos: 135.5,-44.5 + parent: 0 + type: Transform +- uid: 4507 + type: MountainRock + components: + - pos: 135.5,-45.5 + parent: 0 + type: Transform +- uid: 4508 + type: MountainRock + components: + - pos: 135.5,-46.5 + parent: 0 + type: Transform +- uid: 4509 + type: MountainRock + components: + - pos: 136.5,28.5 + parent: 0 + type: Transform +- uid: 4510 + type: MountainRock + components: + - pos: 136.5,27.5 + parent: 0 + type: Transform +- uid: 4511 + type: MountainRock + components: + - pos: 136.5,26.5 + parent: 0 + type: Transform +- uid: 4512 + type: MountainRock + components: + - pos: 136.5,25.5 + parent: 0 + type: Transform +- uid: 4513 + type: MountainRock + components: + - pos: 136.5,24.5 + parent: 0 + type: Transform +- uid: 4514 + type: MountainRock + components: + - pos: 136.5,23.5 + parent: 0 + type: Transform +- uid: 4515 + type: MountainRock + components: + - pos: 136.5,22.5 + parent: 0 + type: Transform +- uid: 4516 + type: MountainRock + components: + - pos: 136.5,21.5 + parent: 0 + type: Transform +- uid: 4517 + type: MountainRock + components: + - pos: 136.5,20.5 + parent: 0 + type: Transform +- uid: 4518 + type: MountainRock + components: + - pos: 136.5,19.5 + parent: 0 + type: Transform +- uid: 4519 + type: MountainRock + components: + - pos: 136.5,18.5 + parent: 0 + type: Transform +- uid: 4520 + type: MountainRock + components: + - pos: 136.5,17.5 + parent: 0 + type: Transform +- uid: 4521 + type: MountainRock + components: + - pos: 136.5,16.5 + parent: 0 + type: Transform +- uid: 4522 + type: MountainRock + components: + - pos: 136.5,15.5 + parent: 0 + type: Transform +- uid: 4523 + type: MountainRock + components: + - pos: 136.5,14.5 + parent: 0 + type: Transform +- uid: 4524 + type: MountainRock + components: + - pos: 136.5,13.5 + parent: 0 + type: Transform +- uid: 4525 + type: MountainRock + components: + - pos: 136.5,12.5 + parent: 0 + type: Transform +- uid: 4526 + type: MountainRock + components: + - pos: 136.5,11.5 + parent: 0 + type: Transform +- uid: 4527 + type: MountainRock + components: + - pos: 136.5,10.5 + parent: 0 + type: Transform +- uid: 4528 + type: MountainRock + components: + - pos: 136.5,9.5 + parent: 0 + type: Transform +- uid: 4529 + type: MountainRock + components: + - pos: 136.5,8.5 + parent: 0 + type: Transform +- uid: 4530 + type: MountainRock + components: + - pos: 136.5,7.5 + parent: 0 + type: Transform +- uid: 4531 + type: MountainRock + components: + - pos: 136.5,6.5 + parent: 0 + type: Transform +- uid: 4532 + type: MountainRock + components: + - pos: 136.5,5.5 + parent: 0 + type: Transform +- uid: 4533 + type: MountainRock + components: + - pos: 136.5,4.5 + parent: 0 + type: Transform +- uid: 4534 + type: MountainRock + components: + - pos: 136.5,3.5 + parent: 0 + type: Transform +- uid: 4535 + type: MountainRock + components: + - pos: 136.5,2.5 + parent: 0 + type: Transform +- uid: 4536 + type: MountainRock + components: + - pos: 136.5,1.5 + parent: 0 + type: Transform +- uid: 4537 + type: MountainRock + components: + - pos: 136.5,0.5 + parent: 0 + type: Transform +- uid: 4538 + type: MountainRock + components: + - pos: 136.5,-0.5 + parent: 0 + type: Transform +- uid: 4539 + type: MountainRock + components: + - pos: 136.5,-1.5 + parent: 0 + type: Transform +- uid: 4540 + type: MountainRock + components: + - pos: 136.5,-2.5 + parent: 0 + type: Transform +- uid: 4541 + type: MountainRock + components: + - pos: 136.5,-3.5 + parent: 0 + type: Transform +- uid: 4542 + type: MountainRock + components: + - pos: 136.5,-4.5 + parent: 0 + type: Transform +- uid: 4543 + type: MountainRock + components: + - pos: 136.5,-5.5 + parent: 0 + type: Transform +- uid: 4544 + type: MountainRock + components: + - pos: 136.5,-6.5 + parent: 0 + type: Transform +- uid: 4545 + type: MountainRock + components: + - pos: 136.5,-7.5 + parent: 0 + type: Transform +- uid: 4546 + type: MountainRock + components: + - pos: 136.5,-8.5 + parent: 0 + type: Transform +- uid: 4547 + type: MountainRock + components: + - pos: 136.5,-9.5 + parent: 0 + type: Transform +- uid: 4548 + type: MountainRock + components: + - pos: 136.5,-10.5 + parent: 0 + type: Transform +- uid: 4549 + type: MountainRock + components: + - pos: 136.5,-11.5 + parent: 0 + type: Transform +- uid: 4550 + type: MountainRock + components: + - pos: 136.5,-12.5 + parent: 0 + type: Transform +- uid: 4551 + type: MountainRock + components: + - pos: 136.5,-13.5 + parent: 0 + type: Transform +- uid: 4552 + type: MountainRock + components: + - pos: 136.5,-14.5 + parent: 0 + type: Transform +- uid: 4553 + type: MountainRock + components: + - pos: 136.5,-15.5 + parent: 0 + type: Transform +- uid: 4554 + type: MountainRock + components: + - pos: 136.5,-16.5 + parent: 0 + type: Transform +- uid: 4555 + type: MountainRock + components: + - pos: 136.5,-17.5 + parent: 0 + type: Transform +- uid: 4556 + type: MountainRock + components: + - pos: 136.5,-18.5 + parent: 0 + type: Transform +- uid: 4557 + type: MountainRock + components: + - pos: 136.5,-19.5 + parent: 0 + type: Transform +- uid: 4558 + type: MountainRock + components: + - pos: 136.5,-20.5 + parent: 0 + type: Transform +- uid: 4559 + type: MountainRock + components: + - pos: 136.5,-21.5 + parent: 0 + type: Transform +- uid: 4560 + type: MountainRock + components: + - pos: 136.5,-22.5 + parent: 0 + type: Transform +- uid: 4561 + type: MountainRock + components: + - pos: 136.5,-23.5 + parent: 0 + type: Transform +- uid: 4562 + type: MountainRock + components: + - pos: 136.5,-24.5 + parent: 0 + type: Transform +- uid: 4563 + type: MountainRock + components: + - pos: 136.5,-25.5 + parent: 0 + type: Transform +- uid: 4564 + type: MountainRock + components: + - pos: 136.5,-26.5 + parent: 0 + type: Transform +- uid: 4565 + type: MountainRock + components: + - pos: 136.5,-27.5 + parent: 0 + type: Transform +- uid: 4566 + type: MountainRock + components: + - pos: 136.5,-28.5 + parent: 0 + type: Transform +- uid: 4567 + type: MountainRock + components: + - pos: 136.5,-29.5 + parent: 0 + type: Transform +- uid: 4568 + type: MountainRock + components: + - pos: 136.5,-30.5 + parent: 0 + type: Transform +- uid: 4569 + type: MountainRock + components: + - pos: 136.5,-31.5 + parent: 0 + type: Transform +- uid: 4570 + type: MountainRock + components: + - pos: 136.5,-32.5 + parent: 0 + type: Transform +- uid: 4571 + type: MountainRock + components: + - pos: 136.5,-33.5 + parent: 0 + type: Transform +- uid: 4572 + type: MountainRock + components: + - pos: 136.5,-34.5 + parent: 0 + type: Transform +- uid: 4573 + type: MountainRock + components: + - pos: 136.5,-35.5 + parent: 0 + type: Transform +- uid: 4574 + type: MountainRock + components: + - pos: 136.5,-36.5 + parent: 0 + type: Transform +- uid: 4575 + type: MountainRock + components: + - pos: 136.5,-37.5 + parent: 0 + type: Transform +- uid: 4576 + type: MountainRock + components: + - pos: 136.5,-38.5 + parent: 0 + type: Transform +- uid: 4577 + type: MountainRock + components: + - pos: 136.5,-39.5 + parent: 0 + type: Transform +- uid: 4578 + type: MountainRock + components: + - pos: 136.5,-40.5 + parent: 0 + type: Transform +- uid: 4579 + type: MountainRock + components: + - pos: 136.5,-41.5 + parent: 0 + type: Transform +- uid: 4580 + type: MountainRock + components: + - pos: 136.5,-42.5 + parent: 0 + type: Transform +- uid: 4581 + type: MountainRock + components: + - pos: 136.5,-43.5 + parent: 0 + type: Transform +- uid: 4582 + type: MountainRock + components: + - pos: 136.5,-44.5 + parent: 0 + type: Transform +- uid: 4583 + type: MountainRock + components: + - pos: 136.5,-45.5 + parent: 0 + type: Transform +- uid: 4584 + type: MountainRock + components: + - pos: 136.5,-46.5 + parent: 0 + type: Transform +- uid: 4585 + type: MountainRock + components: + - pos: 137.5,28.5 + parent: 0 + type: Transform +- uid: 4586 + type: MountainRock + components: + - pos: 137.5,27.5 + parent: 0 + type: Transform +- uid: 4587 + type: MountainRock + components: + - pos: 137.5,26.5 + parent: 0 + type: Transform +- uid: 4588 + type: MountainRock + components: + - pos: 137.5,25.5 + parent: 0 + type: Transform +- uid: 4589 + type: MountainRock + components: + - pos: 137.5,24.5 + parent: 0 + type: Transform +- uid: 4590 + type: MountainRock + components: + - pos: 137.5,23.5 + parent: 0 + type: Transform +- uid: 4591 + type: MountainRock + components: + - pos: 137.5,22.5 + parent: 0 + type: Transform +- uid: 4592 + type: MountainRock + components: + - pos: 137.5,21.5 + parent: 0 + type: Transform +- uid: 4593 + type: MountainRock + components: + - pos: 137.5,20.5 + parent: 0 + type: Transform +- uid: 4594 + type: MountainRock + components: + - pos: 137.5,19.5 + parent: 0 + type: Transform +- uid: 4595 + type: MountainRock + components: + - pos: 137.5,18.5 + parent: 0 + type: Transform +- uid: 4596 + type: MountainRock + components: + - pos: 137.5,17.5 + parent: 0 + type: Transform +- uid: 4597 + type: MountainRock + components: + - pos: 137.5,16.5 + parent: 0 + type: Transform +- uid: 4598 + type: MountainRock + components: + - pos: 137.5,15.5 + parent: 0 + type: Transform +- uid: 4599 + type: MountainRock + components: + - pos: 137.5,14.5 + parent: 0 + type: Transform +- uid: 4600 + type: MountainRock + components: + - pos: 137.5,13.5 + parent: 0 + type: Transform +- uid: 4601 + type: MountainRock + components: + - pos: 137.5,12.5 + parent: 0 + type: Transform +- uid: 4602 + type: MountainRock + components: + - pos: 137.5,11.5 + parent: 0 + type: Transform +- uid: 4603 + type: MountainRock + components: + - pos: 137.5,10.5 + parent: 0 + type: Transform +- uid: 4604 + type: MountainRock + components: + - pos: 137.5,9.5 + parent: 0 + type: Transform +- uid: 4605 + type: MountainRock + components: + - pos: 137.5,8.5 + parent: 0 + type: Transform +- uid: 4606 + type: MountainRock + components: + - pos: 137.5,7.5 + parent: 0 + type: Transform +- uid: 4607 + type: MountainRock + components: + - pos: 137.5,6.5 + parent: 0 + type: Transform +- uid: 4608 + type: MountainRock + components: + - pos: 137.5,5.5 + parent: 0 + type: Transform +- uid: 4609 + type: MountainRock + components: + - pos: 137.5,4.5 + parent: 0 + type: Transform +- uid: 4610 + type: MountainRock + components: + - pos: 137.5,3.5 + parent: 0 + type: Transform +- uid: 4611 + type: MountainRock + components: + - pos: 137.5,2.5 + parent: 0 + type: Transform +- uid: 4612 + type: MountainRock + components: + - pos: 137.5,1.5 + parent: 0 + type: Transform +- uid: 4613 + type: MountainRock + components: + - pos: 137.5,0.5 + parent: 0 + type: Transform +- uid: 4614 + type: MountainRock + components: + - pos: 137.5,-0.5 + parent: 0 + type: Transform +- uid: 4615 + type: MountainRock + components: + - pos: 137.5,-1.5 + parent: 0 + type: Transform +- uid: 4616 + type: MountainRock + components: + - pos: 137.5,-2.5 + parent: 0 + type: Transform +- uid: 4617 + type: MountainRock + components: + - pos: 137.5,-3.5 + parent: 0 + type: Transform +- uid: 4618 + type: MountainRock + components: + - pos: 137.5,-4.5 + parent: 0 + type: Transform +- uid: 4619 + type: MountainRock + components: + - pos: 137.5,-5.5 + parent: 0 + type: Transform +- uid: 4620 + type: MountainRock + components: + - pos: 137.5,-6.5 + parent: 0 + type: Transform +- uid: 4621 + type: MountainRock + components: + - pos: 137.5,-7.5 + parent: 0 + type: Transform +- uid: 4622 + type: MountainRock + components: + - pos: 137.5,-8.5 + parent: 0 + type: Transform +- uid: 4623 + type: MountainRock + components: + - pos: 137.5,-9.5 + parent: 0 + type: Transform +- uid: 4624 + type: MountainRock + components: + - pos: 137.5,-10.5 + parent: 0 + type: Transform +- uid: 4625 + type: MountainRock + components: + - pos: 137.5,-11.5 + parent: 0 + type: Transform +- uid: 4626 + type: MountainRock + components: + - pos: 137.5,-12.5 + parent: 0 + type: Transform +- uid: 4627 + type: MountainRock + components: + - pos: 137.5,-13.5 + parent: 0 + type: Transform +- uid: 4628 + type: MountainRock + components: + - pos: 137.5,-14.5 + parent: 0 + type: Transform +- uid: 4629 + type: MountainRock + components: + - pos: 137.5,-15.5 + parent: 0 + type: Transform +- uid: 4630 + type: MountainRock + components: + - pos: 137.5,-16.5 + parent: 0 + type: Transform +- uid: 4631 + type: MountainRock + components: + - pos: 137.5,-17.5 + parent: 0 + type: Transform +- uid: 4632 + type: MountainRock + components: + - pos: 137.5,-18.5 + parent: 0 + type: Transform +- uid: 4633 + type: MountainRock + components: + - pos: 137.5,-19.5 + parent: 0 + type: Transform +- uid: 4634 + type: MountainRock + components: + - pos: 137.5,-20.5 + parent: 0 + type: Transform +- uid: 4635 + type: MountainRock + components: + - pos: 137.5,-21.5 + parent: 0 + type: Transform +- uid: 4636 + type: MountainRock + components: + - pos: 137.5,-22.5 + parent: 0 + type: Transform +- uid: 4637 + type: MountainRock + components: + - pos: 137.5,-23.5 + parent: 0 + type: Transform +- uid: 4638 + type: MountainRock + components: + - pos: 137.5,-24.5 + parent: 0 + type: Transform +- uid: 4639 + type: MountainRock + components: + - pos: 137.5,-25.5 + parent: 0 + type: Transform +- uid: 4640 + type: MountainRock + components: + - pos: 137.5,-26.5 + parent: 0 + type: Transform +- uid: 4641 + type: MountainRock + components: + - pos: 137.5,-27.5 + parent: 0 + type: Transform +- uid: 4642 + type: MountainRock + components: + - pos: 137.5,-28.5 + parent: 0 + type: Transform +- uid: 4643 + type: MountainRock + components: + - pos: 137.5,-29.5 + parent: 0 + type: Transform +- uid: 4644 + type: MountainRock + components: + - pos: 137.5,-30.5 + parent: 0 + type: Transform +- uid: 4645 + type: MountainRock + components: + - pos: 137.5,-31.5 + parent: 0 + type: Transform +- uid: 4646 + type: MountainRock + components: + - pos: 137.5,-32.5 + parent: 0 + type: Transform +- uid: 4647 + type: MountainRock + components: + - pos: 137.5,-33.5 + parent: 0 + type: Transform +- uid: 4648 + type: MountainRock + components: + - pos: 137.5,-34.5 + parent: 0 + type: Transform +- uid: 4649 + type: MountainRock + components: + - pos: 137.5,-35.5 + parent: 0 + type: Transform +- uid: 4650 + type: MountainRock + components: + - pos: 137.5,-36.5 + parent: 0 + type: Transform +- uid: 4651 + type: MountainRock + components: + - pos: 137.5,-37.5 + parent: 0 + type: Transform +- uid: 4652 + type: MountainRock + components: + - pos: 137.5,-38.5 + parent: 0 + type: Transform +- uid: 4653 + type: MountainRock + components: + - pos: 137.5,-39.5 + parent: 0 + type: Transform +- uid: 4654 + type: MountainRock + components: + - pos: 137.5,-40.5 + parent: 0 + type: Transform +- uid: 4655 + type: MountainRock + components: + - pos: 137.5,-41.5 + parent: 0 + type: Transform +- uid: 4656 + type: MountainRock + components: + - pos: 137.5,-42.5 + parent: 0 + type: Transform +- uid: 4657 + type: MountainRock + components: + - pos: 137.5,-43.5 + parent: 0 + type: Transform +- uid: 4658 + type: MountainRock + components: + - pos: 137.5,-44.5 + parent: 0 + type: Transform +- uid: 4659 + type: MountainRock + components: + - pos: 137.5,-45.5 + parent: 0 + type: Transform +- uid: 4660 + type: MountainRock + components: + - pos: 137.5,-46.5 + parent: 0 + type: Transform +- uid: 4661 + type: MountainRock + components: + - pos: 138.5,28.5 + parent: 0 + type: Transform +- uid: 4662 + type: MountainRock + components: + - pos: 138.5,27.5 + parent: 0 + type: Transform +- uid: 4663 + type: MountainRock + components: + - pos: 138.5,26.5 + parent: 0 + type: Transform +- uid: 4664 + type: MountainRock + components: + - pos: 138.5,25.5 + parent: 0 + type: Transform +- uid: 4665 + type: MountainRock + components: + - pos: 138.5,24.5 + parent: 0 + type: Transform +- uid: 4666 + type: MountainRock + components: + - pos: 138.5,23.5 + parent: 0 + type: Transform +- uid: 4667 + type: MountainRock + components: + - pos: 138.5,22.5 + parent: 0 + type: Transform +- uid: 4668 + type: MountainRock + components: + - pos: 138.5,21.5 + parent: 0 + type: Transform +- uid: 4669 + type: MountainRock + components: + - pos: 138.5,20.5 + parent: 0 + type: Transform +- uid: 4670 + type: MountainRock + components: + - pos: 138.5,19.5 + parent: 0 + type: Transform +- uid: 4671 + type: MountainRock + components: + - pos: 138.5,18.5 + parent: 0 + type: Transform +- uid: 4672 + type: MountainRock + components: + - pos: 138.5,17.5 + parent: 0 + type: Transform +- uid: 4673 + type: MountainRock + components: + - pos: 138.5,16.5 + parent: 0 + type: Transform +- uid: 4674 + type: MountainRock + components: + - pos: 138.5,15.5 + parent: 0 + type: Transform +- uid: 4675 + type: MountainRock + components: + - pos: 138.5,14.5 + parent: 0 + type: Transform +- uid: 4676 + type: MountainRock + components: + - pos: 138.5,13.5 + parent: 0 + type: Transform +- uid: 4677 + type: MountainRock + components: + - pos: 138.5,12.5 + parent: 0 + type: Transform +- uid: 4678 + type: MountainRock + components: + - pos: 138.5,11.5 + parent: 0 + type: Transform +- uid: 4679 + type: MountainRock + components: + - pos: 138.5,10.5 + parent: 0 + type: Transform +- uid: 4680 + type: MountainRock + components: + - pos: 138.5,9.5 + parent: 0 + type: Transform +- uid: 4681 + type: MountainRock + components: + - pos: 138.5,8.5 + parent: 0 + type: Transform +- uid: 4682 + type: MountainRock + components: + - pos: 138.5,7.5 + parent: 0 + type: Transform +- uid: 4683 + type: MountainRock + components: + - pos: 138.5,6.5 + parent: 0 + type: Transform +- uid: 4684 + type: MountainRock + components: + - pos: 138.5,5.5 + parent: 0 + type: Transform +- uid: 4685 + type: MountainRock + components: + - pos: 138.5,4.5 + parent: 0 + type: Transform +- uid: 4686 + type: MountainRock + components: + - pos: 138.5,3.5 + parent: 0 + type: Transform +- uid: 4687 + type: MountainRock + components: + - pos: 138.5,2.5 + parent: 0 + type: Transform +- uid: 4688 + type: MountainRock + components: + - pos: 138.5,1.5 + parent: 0 + type: Transform +- uid: 4689 + type: MountainRock + components: + - pos: 138.5,0.5 + parent: 0 + type: Transform +- uid: 4690 + type: MountainRock + components: + - pos: 138.5,-0.5 + parent: 0 + type: Transform +- uid: 4691 + type: MountainRock + components: + - pos: 138.5,-1.5 + parent: 0 + type: Transform +- uid: 4692 + type: MountainRock + components: + - pos: 138.5,-2.5 + parent: 0 + type: Transform +- uid: 4693 + type: MountainRock + components: + - pos: 138.5,-3.5 + parent: 0 + type: Transform +- uid: 4694 + type: MountainRock + components: + - pos: 138.5,-4.5 + parent: 0 + type: Transform +- uid: 4695 + type: MountainRock + components: + - pos: 138.5,-5.5 + parent: 0 + type: Transform +- uid: 4696 + type: MountainRock + components: + - pos: 138.5,-6.5 + parent: 0 + type: Transform +- uid: 4697 + type: MountainRock + components: + - pos: 138.5,-7.5 + parent: 0 + type: Transform +- uid: 4698 + type: MountainRock + components: + - pos: 138.5,-8.5 + parent: 0 + type: Transform +- uid: 4699 + type: MountainRock + components: + - pos: 138.5,-9.5 + parent: 0 + type: Transform +- uid: 4700 + type: MountainRock + components: + - pos: 138.5,-10.5 + parent: 0 + type: Transform +- uid: 4701 + type: MountainRock + components: + - pos: 138.5,-11.5 + parent: 0 + type: Transform +- uid: 4702 + type: MountainRock + components: + - pos: 138.5,-12.5 + parent: 0 + type: Transform +- uid: 4703 + type: MountainRock + components: + - pos: 138.5,-13.5 + parent: 0 + type: Transform +- uid: 4704 + type: MountainRock + components: + - pos: 138.5,-14.5 + parent: 0 + type: Transform +- uid: 4705 + type: MountainRock + components: + - pos: 138.5,-15.5 + parent: 0 + type: Transform +- uid: 4706 + type: MountainRock + components: + - pos: 138.5,-16.5 + parent: 0 + type: Transform +- uid: 4707 + type: MountainRock + components: + - pos: 138.5,-17.5 + parent: 0 + type: Transform +- uid: 4708 + type: MountainRock + components: + - pos: 138.5,-18.5 + parent: 0 + type: Transform +- uid: 4709 + type: MountainRock + components: + - pos: 138.5,-19.5 + parent: 0 + type: Transform +- uid: 4710 + type: MountainRock + components: + - pos: 138.5,-20.5 + parent: 0 + type: Transform +- uid: 4711 + type: MountainRock + components: + - pos: 138.5,-21.5 + parent: 0 + type: Transform +- uid: 4712 + type: MountainRock + components: + - pos: 138.5,-22.5 + parent: 0 + type: Transform +- uid: 4713 + type: MountainRock + components: + - pos: 138.5,-23.5 + parent: 0 + type: Transform +- uid: 4714 + type: MountainRock + components: + - pos: 138.5,-24.5 + parent: 0 + type: Transform +- uid: 4715 + type: MountainRock + components: + - pos: 138.5,-25.5 + parent: 0 + type: Transform +- uid: 4716 + type: MountainRock + components: + - pos: 138.5,-26.5 + parent: 0 + type: Transform +- uid: 4717 + type: MountainRock + components: + - pos: 138.5,-27.5 + parent: 0 + type: Transform +- uid: 4718 + type: MountainRock + components: + - pos: 138.5,-28.5 + parent: 0 + type: Transform +- uid: 4719 + type: MountainRock + components: + - pos: 138.5,-29.5 + parent: 0 + type: Transform +- uid: 4720 + type: MountainRock + components: + - pos: 138.5,-30.5 + parent: 0 + type: Transform +- uid: 4721 + type: MountainRock + components: + - pos: 138.5,-31.5 + parent: 0 + type: Transform +- uid: 4722 + type: MountainRock + components: + - pos: 138.5,-32.5 + parent: 0 + type: Transform +- uid: 4723 + type: MountainRock + components: + - pos: 138.5,-33.5 + parent: 0 + type: Transform +- uid: 4724 + type: MountainRock + components: + - pos: 138.5,-34.5 + parent: 0 + type: Transform +- uid: 4725 + type: MountainRock + components: + - pos: 138.5,-35.5 + parent: 0 + type: Transform +- uid: 4726 + type: MountainRock + components: + - pos: 138.5,-36.5 + parent: 0 + type: Transform +- uid: 4727 + type: MountainRock + components: + - pos: 138.5,-37.5 + parent: 0 + type: Transform +- uid: 4728 + type: MountainRock + components: + - pos: 138.5,-38.5 + parent: 0 + type: Transform +- uid: 4729 + type: MountainRock + components: + - pos: 138.5,-39.5 + parent: 0 + type: Transform +- uid: 4730 + type: MountainRock + components: + - pos: 138.5,-40.5 + parent: 0 + type: Transform +- uid: 4731 + type: MountainRock + components: + - pos: 138.5,-41.5 + parent: 0 + type: Transform +- uid: 4732 + type: MountainRock + components: + - pos: 138.5,-42.5 + parent: 0 + type: Transform +- uid: 4733 + type: MountainRock + components: + - pos: 138.5,-43.5 + parent: 0 + type: Transform +- uid: 4734 + type: MountainRock + components: + - pos: 138.5,-44.5 + parent: 0 + type: Transform +- uid: 4735 + type: MountainRock + components: + - pos: 138.5,-45.5 + parent: 0 + type: Transform +- uid: 4736 + type: MountainRock + components: + - pos: 138.5,-46.5 + parent: 0 + type: Transform +- uid: 4737 + type: MountainRock + components: + - pos: 139.5,28.5 + parent: 0 + type: Transform +- uid: 4738 + type: MountainRock + components: + - pos: 139.5,27.5 + parent: 0 + type: Transform +- uid: 4739 + type: MountainRock + components: + - pos: 139.5,26.5 + parent: 0 + type: Transform +- uid: 4740 + type: MountainRock + components: + - pos: 139.5,25.5 + parent: 0 + type: Transform +- uid: 4741 + type: MountainRock + components: + - pos: 139.5,24.5 + parent: 0 + type: Transform +- uid: 4742 + type: MountainRock + components: + - pos: 139.5,23.5 + parent: 0 + type: Transform +- uid: 4743 + type: MountainRock + components: + - pos: 139.5,22.5 + parent: 0 + type: Transform +- uid: 4744 + type: MountainRock + components: + - pos: 139.5,21.5 + parent: 0 + type: Transform +- uid: 4745 + type: MountainRock + components: + - pos: 139.5,20.5 + parent: 0 + type: Transform +- uid: 4746 + type: MountainRock + components: + - pos: 139.5,19.5 + parent: 0 + type: Transform +- uid: 4747 + type: MountainRock + components: + - pos: 139.5,18.5 + parent: 0 + type: Transform +- uid: 4748 + type: MountainRock + components: + - pos: 139.5,17.5 + parent: 0 + type: Transform +- uid: 4749 + type: MountainRock + components: + - pos: 139.5,16.5 + parent: 0 + type: Transform +- uid: 4750 + type: MountainRock + components: + - pos: 139.5,15.5 + parent: 0 + type: Transform +- uid: 4751 + type: MountainRock + components: + - pos: 139.5,14.5 + parent: 0 + type: Transform +- uid: 4752 + type: MountainRock + components: + - pos: 139.5,13.5 + parent: 0 + type: Transform +- uid: 4753 + type: MountainRock + components: + - pos: 139.5,12.5 + parent: 0 + type: Transform +- uid: 4754 + type: MountainRock + components: + - pos: 139.5,11.5 + parent: 0 + type: Transform +- uid: 4755 + type: MountainRock + components: + - pos: 139.5,10.5 + parent: 0 + type: Transform +- uid: 4756 + type: MountainRock + components: + - pos: 139.5,9.5 + parent: 0 + type: Transform +- uid: 4757 + type: MountainRock + components: + - pos: 139.5,8.5 + parent: 0 + type: Transform +- uid: 4758 + type: MountainRock + components: + - pos: 139.5,7.5 + parent: 0 + type: Transform +- uid: 4759 + type: MountainRock + components: + - pos: 139.5,6.5 + parent: 0 + type: Transform +- uid: 4760 + type: MountainRock + components: + - pos: 139.5,5.5 + parent: 0 + type: Transform +- uid: 4761 + type: MountainRock + components: + - pos: 139.5,4.5 + parent: 0 + type: Transform +- uid: 4762 + type: MountainRock + components: + - pos: 139.5,3.5 + parent: 0 + type: Transform +- uid: 4763 + type: MountainRock + components: + - pos: 139.5,2.5 + parent: 0 + type: Transform +- uid: 4764 + type: MountainRock + components: + - pos: 139.5,1.5 + parent: 0 + type: Transform +- uid: 4765 + type: MountainRock + components: + - pos: 139.5,0.5 + parent: 0 + type: Transform +- uid: 4766 + type: MountainRock + components: + - pos: 139.5,-0.5 + parent: 0 + type: Transform +- uid: 4767 + type: MountainRock + components: + - pos: 139.5,-1.5 + parent: 0 + type: Transform +- uid: 4768 + type: MountainRock + components: + - pos: 139.5,-2.5 + parent: 0 + type: Transform +- uid: 4769 + type: MountainRock + components: + - pos: 139.5,-3.5 + parent: 0 + type: Transform +- uid: 4770 + type: MountainRock + components: + - pos: 139.5,-4.5 + parent: 0 + type: Transform +- uid: 4771 + type: MountainRock + components: + - pos: 139.5,-5.5 + parent: 0 + type: Transform +- uid: 4772 + type: MountainRock + components: + - pos: 139.5,-6.5 + parent: 0 + type: Transform +- uid: 4773 + type: MountainRock + components: + - pos: 139.5,-7.5 + parent: 0 + type: Transform +- uid: 4774 + type: MountainRock + components: + - pos: 139.5,-8.5 + parent: 0 + type: Transform +- uid: 4775 + type: MountainRock + components: + - pos: 139.5,-9.5 + parent: 0 + type: Transform +- uid: 4776 + type: MountainRock + components: + - pos: 139.5,-10.5 + parent: 0 + type: Transform +- uid: 4777 + type: MountainRock + components: + - pos: 139.5,-11.5 + parent: 0 + type: Transform +- uid: 4778 + type: MountainRock + components: + - pos: 139.5,-12.5 + parent: 0 + type: Transform +- uid: 4779 + type: MountainRock + components: + - pos: 139.5,-13.5 + parent: 0 + type: Transform +- uid: 4780 + type: MountainRock + components: + - pos: 139.5,-14.5 + parent: 0 + type: Transform +- uid: 4781 + type: MountainRock + components: + - pos: 139.5,-15.5 + parent: 0 + type: Transform +- uid: 4782 + type: MountainRock + components: + - pos: 139.5,-16.5 + parent: 0 + type: Transform +- uid: 4783 + type: MountainRock + components: + - pos: 139.5,-17.5 + parent: 0 + type: Transform +- uid: 4784 + type: MountainRock + components: + - pos: 139.5,-18.5 + parent: 0 + type: Transform +- uid: 4785 + type: MountainRock + components: + - pos: 139.5,-19.5 + parent: 0 + type: Transform +- uid: 4786 + type: MountainRock + components: + - pos: 139.5,-20.5 + parent: 0 + type: Transform +- uid: 4787 + type: MountainRock + components: + - pos: 139.5,-21.5 + parent: 0 + type: Transform +- uid: 4788 + type: MountainRock + components: + - pos: 139.5,-22.5 + parent: 0 + type: Transform +- uid: 4789 + type: MountainRock + components: + - pos: 139.5,-23.5 + parent: 0 + type: Transform +- uid: 4790 + type: MountainRock + components: + - pos: 139.5,-24.5 + parent: 0 + type: Transform +- uid: 4791 + type: MountainRock + components: + - pos: 139.5,-25.5 + parent: 0 + type: Transform +- uid: 4792 + type: MountainRock + components: + - pos: 139.5,-26.5 + parent: 0 + type: Transform +- uid: 4793 + type: MountainRock + components: + - pos: 139.5,-27.5 + parent: 0 + type: Transform +- uid: 4794 + type: MountainRock + components: + - pos: 139.5,-28.5 + parent: 0 + type: Transform +- uid: 4795 + type: MountainRock + components: + - pos: 139.5,-29.5 + parent: 0 + type: Transform +- uid: 4796 + type: MountainRock + components: + - pos: 139.5,-30.5 + parent: 0 + type: Transform +- uid: 4797 + type: MountainRock + components: + - pos: 139.5,-31.5 + parent: 0 + type: Transform +- uid: 4798 + type: MountainRock + components: + - pos: 139.5,-32.5 + parent: 0 + type: Transform +- uid: 4799 + type: MountainRock + components: + - pos: 139.5,-33.5 + parent: 0 + type: Transform +- uid: 4800 + type: MountainRock + components: + - pos: 139.5,-34.5 + parent: 0 + type: Transform +- uid: 4801 + type: MountainRock + components: + - pos: 139.5,-35.5 + parent: 0 + type: Transform +- uid: 4802 + type: MountainRock + components: + - pos: 139.5,-36.5 + parent: 0 + type: Transform +- uid: 4803 + type: MountainRock + components: + - pos: 139.5,-37.5 + parent: 0 + type: Transform +- uid: 4804 + type: MountainRock + components: + - pos: 139.5,-38.5 + parent: 0 + type: Transform +- uid: 4805 + type: MountainRock + components: + - pos: 139.5,-39.5 + parent: 0 + type: Transform +- uid: 4806 + type: MountainRock + components: + - pos: 139.5,-40.5 + parent: 0 + type: Transform +- uid: 4807 + type: MountainRock + components: + - pos: 139.5,-41.5 + parent: 0 + type: Transform +- uid: 4808 + type: MountainRock + components: + - pos: 139.5,-42.5 + parent: 0 + type: Transform +- uid: 4809 + type: MountainRock + components: + - pos: 139.5,-43.5 + parent: 0 + type: Transform +- uid: 4810 + type: MountainRock + components: + - pos: 139.5,-44.5 + parent: 0 + type: Transform +- uid: 4811 + type: MountainRock + components: + - pos: 139.5,-45.5 + parent: 0 + type: Transform +- uid: 4812 + type: MountainRock + components: + - pos: 139.5,-46.5 + parent: 0 + type: Transform +- uid: 4813 + type: MountainRock + components: + - pos: 140.5,28.5 + parent: 0 + type: Transform +- uid: 4814 + type: MountainRock + components: + - pos: 140.5,27.5 + parent: 0 + type: Transform +- uid: 4815 + type: MountainRock + components: + - pos: 140.5,26.5 + parent: 0 + type: Transform +- uid: 4816 + type: MountainRock + components: + - pos: 140.5,25.5 + parent: 0 + type: Transform +- uid: 4817 + type: MountainRock + components: + - pos: 140.5,24.5 + parent: 0 + type: Transform +- uid: 4818 + type: MountainRock + components: + - pos: 140.5,23.5 + parent: 0 + type: Transform +- uid: 4819 + type: MountainRock + components: + - pos: 140.5,22.5 + parent: 0 + type: Transform +- uid: 4820 + type: MountainRock + components: + - pos: 140.5,21.5 + parent: 0 + type: Transform +- uid: 4821 + type: MountainRock + components: + - pos: 140.5,20.5 + parent: 0 + type: Transform +- uid: 4822 + type: MountainRock + components: + - pos: 140.5,19.5 + parent: 0 + type: Transform +- uid: 4823 + type: MountainRock + components: + - pos: 140.5,18.5 + parent: 0 + type: Transform +- uid: 4824 + type: MountainRock + components: + - pos: 140.5,17.5 + parent: 0 + type: Transform +- uid: 4825 + type: MountainRock + components: + - pos: 140.5,16.5 + parent: 0 + type: Transform +- uid: 4826 + type: MountainRock + components: + - pos: 140.5,15.5 + parent: 0 + type: Transform +- uid: 4827 + type: MountainRock + components: + - pos: 140.5,14.5 + parent: 0 + type: Transform +- uid: 4828 + type: MountainRock + components: + - pos: 140.5,13.5 + parent: 0 + type: Transform +- uid: 4829 + type: MountainRock + components: + - pos: 140.5,12.5 + parent: 0 + type: Transform +- uid: 4830 + type: MountainRock + components: + - pos: 140.5,11.5 + parent: 0 + type: Transform +- uid: 4831 + type: MountainRock + components: + - pos: 140.5,10.5 + parent: 0 + type: Transform +- uid: 4832 + type: MountainRock + components: + - pos: 140.5,9.5 + parent: 0 + type: Transform +- uid: 4833 + type: MountainRock + components: + - pos: 140.5,8.5 + parent: 0 + type: Transform +- uid: 4834 + type: MountainRock + components: + - pos: 140.5,7.5 + parent: 0 + type: Transform +- uid: 4835 + type: MountainRock + components: + - pos: 140.5,6.5 + parent: 0 + type: Transform +- uid: 4836 + type: MountainRock + components: + - pos: 140.5,5.5 + parent: 0 + type: Transform +- uid: 4837 + type: MountainRock + components: + - pos: 140.5,4.5 + parent: 0 + type: Transform +- uid: 4838 + type: MountainRock + components: + - pos: 140.5,3.5 + parent: 0 + type: Transform +- uid: 4839 + type: MountainRock + components: + - pos: 140.5,2.5 + parent: 0 + type: Transform +- uid: 4840 + type: MountainRock + components: + - pos: 140.5,1.5 + parent: 0 + type: Transform +- uid: 4841 + type: MountainRock + components: + - pos: 140.5,0.5 + parent: 0 + type: Transform +- uid: 4842 + type: MountainRock + components: + - pos: 140.5,-0.5 + parent: 0 + type: Transform +- uid: 4843 + type: MountainRock + components: + - pos: 140.5,-1.5 + parent: 0 + type: Transform +- uid: 4844 + type: MountainRock + components: + - pos: 140.5,-2.5 + parent: 0 + type: Transform +- uid: 4845 + type: MountainRock + components: + - pos: 140.5,-3.5 + parent: 0 + type: Transform +- uid: 4846 + type: MountainRock + components: + - pos: 140.5,-4.5 + parent: 0 + type: Transform +- uid: 4847 + type: MountainRock + components: + - pos: 140.5,-5.5 + parent: 0 + type: Transform +- uid: 4848 + type: MountainRock + components: + - pos: 140.5,-6.5 + parent: 0 + type: Transform +- uid: 4849 + type: MountainRock + components: + - pos: 140.5,-7.5 + parent: 0 + type: Transform +- uid: 4850 + type: MountainRock + components: + - pos: 140.5,-8.5 + parent: 0 + type: Transform +- uid: 4851 + type: MountainRock + components: + - pos: 140.5,-9.5 + parent: 0 + type: Transform +- uid: 4852 + type: MountainRock + components: + - pos: 140.5,-10.5 + parent: 0 + type: Transform +- uid: 4853 + type: MountainRock + components: + - pos: 140.5,-11.5 + parent: 0 + type: Transform +- uid: 4854 + type: MountainRock + components: + - pos: 140.5,-12.5 + parent: 0 + type: Transform +- uid: 4855 + type: MountainRock + components: + - pos: 140.5,-13.5 + parent: 0 + type: Transform +- uid: 4856 + type: MountainRock + components: + - pos: 140.5,-14.5 + parent: 0 + type: Transform +- uid: 4857 + type: MountainRock + components: + - pos: 140.5,-15.5 + parent: 0 + type: Transform +- uid: 4858 + type: MountainRock + components: + - pos: 140.5,-16.5 + parent: 0 + type: Transform +- uid: 4859 + type: MountainRock + components: + - pos: 140.5,-17.5 + parent: 0 + type: Transform +- uid: 4860 + type: MountainRock + components: + - pos: 140.5,-18.5 + parent: 0 + type: Transform +- uid: 4861 + type: MountainRock + components: + - pos: 140.5,-19.5 + parent: 0 + type: Transform +- uid: 4862 + type: MountainRock + components: + - pos: 140.5,-20.5 + parent: 0 + type: Transform +- uid: 4863 + type: MountainRock + components: + - pos: 140.5,-21.5 + parent: 0 + type: Transform +- uid: 4864 + type: MountainRock + components: + - pos: 140.5,-22.5 + parent: 0 + type: Transform +- uid: 4865 + type: MountainRock + components: + - pos: 140.5,-23.5 + parent: 0 + type: Transform +- uid: 4866 + type: MountainRock + components: + - pos: 140.5,-24.5 + parent: 0 + type: Transform +- uid: 4867 + type: MountainRock + components: + - pos: 140.5,-25.5 + parent: 0 + type: Transform +- uid: 4868 + type: MountainRock + components: + - pos: 140.5,-26.5 + parent: 0 + type: Transform +- uid: 4869 + type: MountainRock + components: + - pos: 140.5,-27.5 + parent: 0 + type: Transform +- uid: 4870 + type: MountainRock + components: + - pos: 140.5,-28.5 + parent: 0 + type: Transform +- uid: 4871 + type: MountainRock + components: + - pos: 140.5,-29.5 + parent: 0 + type: Transform +- uid: 4872 + type: MountainRock + components: + - pos: 140.5,-30.5 + parent: 0 + type: Transform +- uid: 4873 + type: MountainRock + components: + - pos: 140.5,-31.5 + parent: 0 + type: Transform +- uid: 4874 + type: MountainRock + components: + - pos: 140.5,-32.5 + parent: 0 + type: Transform +- uid: 4875 + type: MountainRock + components: + - pos: 140.5,-33.5 + parent: 0 + type: Transform +- uid: 4876 + type: MountainRock + components: + - pos: 140.5,-34.5 + parent: 0 + type: Transform +- uid: 4877 + type: MountainRock + components: + - pos: 140.5,-35.5 + parent: 0 + type: Transform +- uid: 4878 + type: MountainRock + components: + - pos: 140.5,-36.5 + parent: 0 + type: Transform +- uid: 4879 + type: MountainRock + components: + - pos: 140.5,-37.5 + parent: 0 + type: Transform +- uid: 4880 + type: MountainRock + components: + - pos: 140.5,-38.5 + parent: 0 + type: Transform +- uid: 4881 + type: MountainRock + components: + - pos: 140.5,-39.5 + parent: 0 + type: Transform +- uid: 4882 + type: MountainRock + components: + - pos: 140.5,-40.5 + parent: 0 + type: Transform +- uid: 4883 + type: MountainRock + components: + - pos: 140.5,-41.5 + parent: 0 + type: Transform +- uid: 4884 + type: MountainRock + components: + - pos: 140.5,-42.5 + parent: 0 + type: Transform +- uid: 4885 + type: MountainRock + components: + - pos: 140.5,-43.5 + parent: 0 + type: Transform +- uid: 4886 + type: MountainRock + components: + - pos: 140.5,-44.5 + parent: 0 + type: Transform +- uid: 4887 + type: MountainRock + components: + - pos: 140.5,-45.5 + parent: 0 + type: Transform +- uid: 4888 + type: MountainRock + components: + - pos: 140.5,-46.5 + parent: 0 + type: Transform +- uid: 4889 + type: MountainRock + components: + - pos: 141.5,28.5 + parent: 0 + type: Transform +- uid: 4890 + type: MountainRock + components: + - pos: 141.5,27.5 + parent: 0 + type: Transform +- uid: 4891 + type: MountainRock + components: + - pos: 141.5,26.5 + parent: 0 + type: Transform +- uid: 4892 + type: MountainRock + components: + - pos: 141.5,25.5 + parent: 0 + type: Transform +- uid: 4893 + type: MountainRock + components: + - pos: 141.5,24.5 + parent: 0 + type: Transform +- uid: 4894 + type: MountainRock + components: + - pos: 141.5,23.5 + parent: 0 + type: Transform +- uid: 4895 + type: MountainRock + components: + - pos: 141.5,22.5 + parent: 0 + type: Transform +- uid: 4896 + type: MountainRock + components: + - pos: 141.5,21.5 + parent: 0 + type: Transform +- uid: 4897 + type: MountainRock + components: + - pos: 141.5,20.5 + parent: 0 + type: Transform +- uid: 4898 + type: MountainRock + components: + - pos: 141.5,19.5 + parent: 0 + type: Transform +- uid: 4899 + type: MountainRock + components: + - pos: 141.5,18.5 + parent: 0 + type: Transform +- uid: 4900 + type: MountainRock + components: + - pos: 141.5,17.5 + parent: 0 + type: Transform +- uid: 4901 + type: MountainRock + components: + - pos: 141.5,16.5 + parent: 0 + type: Transform +- uid: 4902 + type: MountainRock + components: + - pos: 141.5,15.5 + parent: 0 + type: Transform +- uid: 4903 + type: MountainRock + components: + - pos: 141.5,14.5 + parent: 0 + type: Transform +- uid: 4904 + type: MountainRock + components: + - pos: 141.5,13.5 + parent: 0 + type: Transform +- uid: 4905 + type: MountainRock + components: + - pos: 141.5,12.5 + parent: 0 + type: Transform +- uid: 4906 + type: MountainRock + components: + - pos: 141.5,11.5 + parent: 0 + type: Transform +- uid: 4907 + type: MountainRock + components: + - pos: 141.5,10.5 + parent: 0 + type: Transform +- uid: 4908 + type: MountainRock + components: + - pos: 141.5,9.5 + parent: 0 + type: Transform +- uid: 4909 + type: MountainRock + components: + - pos: 141.5,8.5 + parent: 0 + type: Transform +- uid: 4910 + type: MountainRock + components: + - pos: 141.5,7.5 + parent: 0 + type: Transform +- uid: 4911 + type: MountainRock + components: + - pos: 141.5,6.5 + parent: 0 + type: Transform +- uid: 4912 + type: MountainRock + components: + - pos: 141.5,5.5 + parent: 0 + type: Transform +- uid: 4913 + type: MountainRock + components: + - pos: 141.5,4.5 + parent: 0 + type: Transform +- uid: 4914 + type: MountainRock + components: + - pos: 141.5,3.5 + parent: 0 + type: Transform +- uid: 4915 + type: MountainRock + components: + - pos: 141.5,2.5 + parent: 0 + type: Transform +- uid: 4916 + type: MountainRock + components: + - pos: 141.5,1.5 + parent: 0 + type: Transform +- uid: 4917 + type: MountainRock + components: + - pos: 141.5,0.5 + parent: 0 + type: Transform +- uid: 4918 + type: MountainRock + components: + - pos: 141.5,-0.5 + parent: 0 + type: Transform +- uid: 4919 + type: MountainRock + components: + - pos: 141.5,-1.5 + parent: 0 + type: Transform +- uid: 4920 + type: MountainRock + components: + - pos: 141.5,-2.5 + parent: 0 + type: Transform +- uid: 4921 + type: MountainRock + components: + - pos: 141.5,-3.5 + parent: 0 + type: Transform +- uid: 4922 + type: MountainRock + components: + - pos: 141.5,-4.5 + parent: 0 + type: Transform +- uid: 4923 + type: MountainRock + components: + - pos: 141.5,-5.5 + parent: 0 + type: Transform +- uid: 4924 + type: MountainRock + components: + - pos: 141.5,-6.5 + parent: 0 + type: Transform +- uid: 4925 + type: MountainRock + components: + - pos: 141.5,-7.5 + parent: 0 + type: Transform +- uid: 4926 + type: MountainRock + components: + - pos: 141.5,-8.5 + parent: 0 + type: Transform +- uid: 4927 + type: MountainRock + components: + - pos: 141.5,-9.5 + parent: 0 + type: Transform +- uid: 4928 + type: MountainRock + components: + - pos: 141.5,-10.5 + parent: 0 + type: Transform +- uid: 4929 + type: MountainRock + components: + - pos: 141.5,-11.5 + parent: 0 + type: Transform +- uid: 4930 + type: MountainRock + components: + - pos: 141.5,-12.5 + parent: 0 + type: Transform +- uid: 4931 + type: MountainRock + components: + - pos: 141.5,-13.5 + parent: 0 + type: Transform +- uid: 4932 + type: MountainRock + components: + - pos: 141.5,-14.5 + parent: 0 + type: Transform +- uid: 4933 + type: MountainRock + components: + - pos: 141.5,-15.5 + parent: 0 + type: Transform +- uid: 4934 + type: MountainRock + components: + - pos: 141.5,-16.5 + parent: 0 + type: Transform +- uid: 4935 + type: MountainRock + components: + - pos: 141.5,-17.5 + parent: 0 + type: Transform +- uid: 4936 + type: MountainRock + components: + - pos: 141.5,-18.5 + parent: 0 + type: Transform +- uid: 4937 + type: MountainRock + components: + - pos: 141.5,-19.5 + parent: 0 + type: Transform +- uid: 4938 + type: MountainRock + components: + - pos: 141.5,-20.5 + parent: 0 + type: Transform +- uid: 4939 + type: MountainRock + components: + - pos: 141.5,-21.5 + parent: 0 + type: Transform +- uid: 4940 + type: MountainRock + components: + - pos: 141.5,-22.5 + parent: 0 + type: Transform +- uid: 4941 + type: MountainRock + components: + - pos: 141.5,-23.5 + parent: 0 + type: Transform +- uid: 4942 + type: MountainRock + components: + - pos: 141.5,-24.5 + parent: 0 + type: Transform +- uid: 4943 + type: MountainRock + components: + - pos: 141.5,-25.5 + parent: 0 + type: Transform +- uid: 4944 + type: MountainRock + components: + - pos: 141.5,-26.5 + parent: 0 + type: Transform +- uid: 4945 + type: MountainRock + components: + - pos: 141.5,-27.5 + parent: 0 + type: Transform +- uid: 4946 + type: MountainRock + components: + - pos: 141.5,-28.5 + parent: 0 + type: Transform +- uid: 4947 + type: MountainRock + components: + - pos: 141.5,-29.5 + parent: 0 + type: Transform +- uid: 4948 + type: MountainRock + components: + - pos: 141.5,-30.5 + parent: 0 + type: Transform +- uid: 4949 + type: MountainRock + components: + - pos: 141.5,-31.5 + parent: 0 + type: Transform +- uid: 4950 + type: MountainRock + components: + - pos: 141.5,-32.5 + parent: 0 + type: Transform +- uid: 4951 + type: MountainRock + components: + - pos: 141.5,-33.5 + parent: 0 + type: Transform +- uid: 4952 + type: MountainRock + components: + - pos: 141.5,-34.5 + parent: 0 + type: Transform +- uid: 4953 + type: MountainRock + components: + - pos: 141.5,-35.5 + parent: 0 + type: Transform +- uid: 4954 + type: MountainRock + components: + - pos: 141.5,-36.5 + parent: 0 + type: Transform +- uid: 4955 + type: MountainRock + components: + - pos: 141.5,-37.5 + parent: 0 + type: Transform +- uid: 4956 + type: MountainRock + components: + - pos: 141.5,-38.5 + parent: 0 + type: Transform +- uid: 4957 + type: MountainRock + components: + - pos: 141.5,-39.5 + parent: 0 + type: Transform +- uid: 4958 + type: MountainRock + components: + - pos: 141.5,-40.5 + parent: 0 + type: Transform +- uid: 4959 + type: MountainRock + components: + - pos: 141.5,-41.5 + parent: 0 + type: Transform +- uid: 4960 + type: MountainRock + components: + - pos: 141.5,-42.5 + parent: 0 + type: Transform +- uid: 4961 + type: MountainRock + components: + - pos: 141.5,-43.5 + parent: 0 + type: Transform +- uid: 4962 + type: MountainRock + components: + - pos: 141.5,-44.5 + parent: 0 + type: Transform +- uid: 4963 + type: MountainRock + components: + - pos: 141.5,-45.5 + parent: 0 + type: Transform +- uid: 4964 + type: MountainRock + components: + - pos: 141.5,-46.5 + parent: 0 + type: Transform +- uid: 4965 + type: MountainRock + components: + - pos: 142.5,28.5 + parent: 0 + type: Transform +- uid: 4966 + type: MountainRock + components: + - pos: 142.5,27.5 + parent: 0 + type: Transform +- uid: 4967 + type: MountainRock + components: + - pos: 142.5,26.5 + parent: 0 + type: Transform +- uid: 4968 + type: MountainRock + components: + - pos: 142.5,25.5 + parent: 0 + type: Transform +- uid: 4969 + type: MountainRock + components: + - pos: 142.5,24.5 + parent: 0 + type: Transform +- uid: 4970 + type: MountainRock + components: + - pos: 142.5,23.5 + parent: 0 + type: Transform +- uid: 4971 + type: MountainRock + components: + - pos: 142.5,22.5 + parent: 0 + type: Transform +- uid: 4972 + type: MountainRock + components: + - pos: 142.5,21.5 + parent: 0 + type: Transform +- uid: 4973 + type: MountainRock + components: + - pos: 142.5,20.5 + parent: 0 + type: Transform +- uid: 4974 + type: MountainRock + components: + - pos: 142.5,19.5 + parent: 0 + type: Transform +- uid: 4975 + type: MountainRock + components: + - pos: 142.5,18.5 + parent: 0 + type: Transform +- uid: 4976 + type: MountainRock + components: + - pos: 142.5,17.5 + parent: 0 + type: Transform +- uid: 4977 + type: MountainRock + components: + - pos: 142.5,16.5 + parent: 0 + type: Transform +- uid: 4978 + type: MountainRock + components: + - pos: 142.5,15.5 + parent: 0 + type: Transform +- uid: 4979 + type: MountainRock + components: + - pos: 142.5,14.5 + parent: 0 + type: Transform +- uid: 4980 + type: MountainRock + components: + - pos: 142.5,13.5 + parent: 0 + type: Transform +- uid: 4981 + type: MountainRock + components: + - pos: 142.5,12.5 + parent: 0 + type: Transform +- uid: 4982 + type: MountainRock + components: + - pos: 142.5,11.5 + parent: 0 + type: Transform +- uid: 4983 + type: MountainRock + components: + - pos: 142.5,10.5 + parent: 0 + type: Transform +- uid: 4984 + type: MountainRock + components: + - pos: 142.5,9.5 + parent: 0 + type: Transform +- uid: 4985 + type: MountainRock + components: + - pos: 142.5,8.5 + parent: 0 + type: Transform +- uid: 4986 + type: MountainRock + components: + - pos: 142.5,7.5 + parent: 0 + type: Transform +- uid: 4987 + type: MountainRock + components: + - pos: 142.5,6.5 + parent: 0 + type: Transform +- uid: 4988 + type: MountainRock + components: + - pos: 142.5,5.5 + parent: 0 + type: Transform +- uid: 4989 + type: MountainRock + components: + - pos: 142.5,4.5 + parent: 0 + type: Transform +- uid: 4990 + type: MountainRock + components: + - pos: 142.5,3.5 + parent: 0 + type: Transform +- uid: 4991 + type: MountainRock + components: + - pos: 142.5,2.5 + parent: 0 + type: Transform +- uid: 4992 + type: MountainRock + components: + - pos: 142.5,1.5 + parent: 0 + type: Transform +- uid: 4993 + type: MountainRock + components: + - pos: 142.5,0.5 + parent: 0 + type: Transform +- uid: 4994 + type: MountainRock + components: + - pos: 142.5,-0.5 + parent: 0 + type: Transform +- uid: 4995 + type: MountainRock + components: + - pos: 142.5,-1.5 + parent: 0 + type: Transform +- uid: 4996 + type: MountainRock + components: + - pos: 142.5,-2.5 + parent: 0 + type: Transform +- uid: 4997 + type: MountainRock + components: + - pos: 142.5,-3.5 + parent: 0 + type: Transform +- uid: 4998 + type: MountainRock + components: + - pos: 142.5,-4.5 + parent: 0 + type: Transform +- uid: 4999 + type: MountainRock + components: + - pos: 142.5,-5.5 + parent: 0 + type: Transform +- uid: 5000 + type: MountainRock + components: + - pos: 142.5,-6.5 + parent: 0 + type: Transform +- uid: 5001 + type: MountainRock + components: + - pos: 142.5,-7.5 + parent: 0 + type: Transform +- uid: 5002 + type: MountainRock + components: + - pos: 142.5,-8.5 + parent: 0 + type: Transform +- uid: 5003 + type: MountainRock + components: + - pos: 142.5,-9.5 + parent: 0 + type: Transform +- uid: 5004 + type: MountainRock + components: + - pos: 142.5,-10.5 + parent: 0 + type: Transform +- uid: 5005 + type: MountainRock + components: + - pos: 142.5,-11.5 + parent: 0 + type: Transform +- uid: 5006 + type: MountainRock + components: + - pos: 142.5,-12.5 + parent: 0 + type: Transform +- uid: 5007 + type: MountainRock + components: + - pos: 142.5,-13.5 + parent: 0 + type: Transform +- uid: 5008 + type: MountainRock + components: + - pos: 142.5,-14.5 + parent: 0 + type: Transform +- uid: 5009 + type: MountainRock + components: + - pos: 142.5,-15.5 + parent: 0 + type: Transform +- uid: 5010 + type: MountainRock + components: + - pos: 142.5,-16.5 + parent: 0 + type: Transform +- uid: 5011 + type: MountainRock + components: + - pos: 142.5,-17.5 + parent: 0 + type: Transform +- uid: 5012 + type: MountainRock + components: + - pos: 142.5,-18.5 + parent: 0 + type: Transform +- uid: 5013 + type: MountainRock + components: + - pos: 142.5,-19.5 + parent: 0 + type: Transform +- uid: 5014 + type: MountainRock + components: + - pos: 142.5,-20.5 + parent: 0 + type: Transform +- uid: 5015 + type: MountainRock + components: + - pos: 142.5,-21.5 + parent: 0 + type: Transform +- uid: 5016 + type: MountainRock + components: + - pos: 142.5,-22.5 + parent: 0 + type: Transform +- uid: 5017 + type: MountainRock + components: + - pos: 142.5,-23.5 + parent: 0 + type: Transform +- uid: 5018 + type: MountainRock + components: + - pos: 142.5,-24.5 + parent: 0 + type: Transform +- uid: 5019 + type: MountainRock + components: + - pos: 142.5,-25.5 + parent: 0 + type: Transform +- uid: 5020 + type: MountainRock + components: + - pos: 142.5,-26.5 + parent: 0 + type: Transform +- uid: 5021 + type: MountainRock + components: + - pos: 142.5,-27.5 + parent: 0 + type: Transform +- uid: 5022 + type: MountainRock + components: + - pos: 142.5,-28.5 + parent: 0 + type: Transform +- uid: 5023 + type: MountainRock + components: + - pos: 142.5,-29.5 + parent: 0 + type: Transform +- uid: 5024 + type: MountainRock + components: + - pos: 142.5,-30.5 + parent: 0 + type: Transform +- uid: 5025 + type: MountainRock + components: + - pos: 142.5,-31.5 + parent: 0 + type: Transform +- uid: 5026 + type: MountainRock + components: + - pos: 142.5,-32.5 + parent: 0 + type: Transform +- uid: 5027 + type: MountainRock + components: + - pos: 142.5,-33.5 + parent: 0 + type: Transform +- uid: 5028 + type: MountainRock + components: + - pos: 142.5,-34.5 + parent: 0 + type: Transform +- uid: 5029 + type: MountainRock + components: + - pos: 142.5,-35.5 + parent: 0 + type: Transform +- uid: 5030 + type: MountainRock + components: + - pos: 142.5,-36.5 + parent: 0 + type: Transform +- uid: 5031 + type: MountainRock + components: + - pos: 142.5,-37.5 + parent: 0 + type: Transform +- uid: 5032 + type: MountainRock + components: + - pos: 142.5,-38.5 + parent: 0 + type: Transform +- uid: 5033 + type: MountainRock + components: + - pos: 142.5,-39.5 + parent: 0 + type: Transform +- uid: 5034 + type: MountainRock + components: + - pos: 142.5,-40.5 + parent: 0 + type: Transform +- uid: 5035 + type: MountainRock + components: + - pos: 142.5,-41.5 + parent: 0 + type: Transform +- uid: 5036 + type: MountainRock + components: + - pos: 142.5,-42.5 + parent: 0 + type: Transform +- uid: 5037 + type: MountainRock + components: + - pos: 142.5,-43.5 + parent: 0 + type: Transform +- uid: 5038 + type: MountainRock + components: + - pos: 142.5,-44.5 + parent: 0 + type: Transform +- uid: 5039 + type: MountainRock + components: + - pos: 142.5,-45.5 + parent: 0 + type: Transform +- uid: 5040 + type: MountainRock + components: + - pos: 142.5,-46.5 + parent: 0 + type: Transform +- uid: 5041 + type: MountainRock + components: + - pos: 143.5,28.5 + parent: 0 + type: Transform +- uid: 5042 + type: MountainRock + components: + - pos: 143.5,27.5 + parent: 0 + type: Transform +- uid: 5043 + type: MountainRock + components: + - pos: 143.5,26.5 + parent: 0 + type: Transform +- uid: 5044 + type: MountainRock + components: + - pos: 143.5,25.5 + parent: 0 + type: Transform +- uid: 5045 + type: MountainRock + components: + - pos: 143.5,24.5 + parent: 0 + type: Transform +- uid: 5046 + type: MountainRock + components: + - pos: 143.5,23.5 + parent: 0 + type: Transform +- uid: 5047 + type: MountainRock + components: + - pos: 143.5,22.5 + parent: 0 + type: Transform +- uid: 5048 + type: MountainRock + components: + - pos: 143.5,21.5 + parent: 0 + type: Transform +- uid: 5049 + type: MountainRock + components: + - pos: 143.5,20.5 + parent: 0 + type: Transform +- uid: 5050 + type: MountainRock + components: + - pos: 143.5,19.5 + parent: 0 + type: Transform +- uid: 5051 + type: MountainRock + components: + - pos: 143.5,18.5 + parent: 0 + type: Transform +- uid: 5052 + type: MountainRock + components: + - pos: 143.5,17.5 + parent: 0 + type: Transform +- uid: 5053 + type: MountainRock + components: + - pos: 143.5,16.5 + parent: 0 + type: Transform +- uid: 5054 + type: MountainRock + components: + - pos: 143.5,15.5 + parent: 0 + type: Transform +- uid: 5055 + type: MountainRock + components: + - pos: 143.5,14.5 + parent: 0 + type: Transform +- uid: 5056 + type: MountainRock + components: + - pos: 143.5,13.5 + parent: 0 + type: Transform +- uid: 5057 + type: MountainRock + components: + - pos: 143.5,12.5 + parent: 0 + type: Transform +- uid: 5058 + type: MountainRock + components: + - pos: 143.5,11.5 + parent: 0 + type: Transform +- uid: 5059 + type: MountainRock + components: + - pos: 143.5,10.5 + parent: 0 + type: Transform +- uid: 5060 + type: MountainRock + components: + - pos: 143.5,9.5 + parent: 0 + type: Transform +- uid: 5061 + type: MountainRock + components: + - pos: 143.5,8.5 + parent: 0 + type: Transform +- uid: 5062 + type: MountainRock + components: + - pos: 143.5,7.5 + parent: 0 + type: Transform +- uid: 5063 + type: MountainRock + components: + - pos: 143.5,6.5 + parent: 0 + type: Transform +- uid: 5064 + type: MountainRock + components: + - pos: 143.5,5.5 + parent: 0 + type: Transform +- uid: 5065 + type: MountainRock + components: + - pos: 143.5,4.5 + parent: 0 + type: Transform +- uid: 5066 + type: MountainRock + components: + - pos: 143.5,3.5 + parent: 0 + type: Transform +- uid: 5067 + type: MountainRock + components: + - pos: 143.5,2.5 + parent: 0 + type: Transform +- uid: 5068 + type: MountainRock + components: + - pos: 143.5,1.5 + parent: 0 + type: Transform +- uid: 5069 + type: MountainRock + components: + - pos: 143.5,0.5 + parent: 0 + type: Transform +- uid: 5070 + type: MountainRock + components: + - pos: 143.5,-0.5 + parent: 0 + type: Transform +- uid: 5071 + type: MountainRock + components: + - pos: 143.5,-1.5 + parent: 0 + type: Transform +- uid: 5072 + type: MountainRock + components: + - pos: 143.5,-2.5 + parent: 0 + type: Transform +- uid: 5073 + type: MountainRock + components: + - pos: 143.5,-3.5 + parent: 0 + type: Transform +- uid: 5074 + type: MountainRock + components: + - pos: 143.5,-4.5 + parent: 0 + type: Transform +- uid: 5075 + type: MountainRock + components: + - pos: 143.5,-5.5 + parent: 0 + type: Transform +- uid: 5076 + type: MountainRock + components: + - pos: 143.5,-6.5 + parent: 0 + type: Transform +- uid: 5077 + type: MountainRock + components: + - pos: 143.5,-7.5 + parent: 0 + type: Transform +- uid: 5078 + type: MountainRock + components: + - pos: 143.5,-8.5 + parent: 0 + type: Transform +- uid: 5079 + type: MountainRock + components: + - pos: 143.5,-9.5 + parent: 0 + type: Transform +- uid: 5080 + type: MountainRock + components: + - pos: 143.5,-10.5 + parent: 0 + type: Transform +- uid: 5081 + type: MountainRock + components: + - pos: 143.5,-11.5 + parent: 0 + type: Transform +- uid: 5082 + type: MountainRock + components: + - pos: 143.5,-12.5 + parent: 0 + type: Transform +- uid: 5083 + type: MountainRock + components: + - pos: 143.5,-13.5 + parent: 0 + type: Transform +- uid: 5084 + type: MountainRock + components: + - pos: 143.5,-14.5 + parent: 0 + type: Transform +- uid: 5085 + type: MountainRock + components: + - pos: 143.5,-15.5 + parent: 0 + type: Transform +- uid: 5086 + type: MountainRock + components: + - pos: 143.5,-16.5 + parent: 0 + type: Transform +- uid: 5087 + type: MountainRock + components: + - pos: 143.5,-17.5 + parent: 0 + type: Transform +- uid: 5088 + type: MountainRock + components: + - pos: 143.5,-18.5 + parent: 0 + type: Transform +- uid: 5089 + type: MountainRock + components: + - pos: 143.5,-19.5 + parent: 0 + type: Transform +- uid: 5090 + type: MountainRock + components: + - pos: 143.5,-20.5 + parent: 0 + type: Transform +- uid: 5091 + type: MountainRock + components: + - pos: 143.5,-21.5 + parent: 0 + type: Transform +- uid: 5092 + type: MountainRock + components: + - pos: 143.5,-22.5 + parent: 0 + type: Transform +- uid: 5093 + type: MountainRock + components: + - pos: 143.5,-23.5 + parent: 0 + type: Transform +- uid: 5094 + type: MountainRock + components: + - pos: 143.5,-24.5 + parent: 0 + type: Transform +- uid: 5095 + type: MountainRock + components: + - pos: 143.5,-25.5 + parent: 0 + type: Transform +- uid: 5096 + type: MountainRock + components: + - pos: 143.5,-26.5 + parent: 0 + type: Transform +- uid: 5097 + type: MountainRock + components: + - pos: 143.5,-27.5 + parent: 0 + type: Transform +- uid: 5098 + type: MountainRock + components: + - pos: 143.5,-28.5 + parent: 0 + type: Transform +- uid: 5099 + type: MountainRock + components: + - pos: 143.5,-29.5 + parent: 0 + type: Transform +- uid: 5100 + type: MountainRock + components: + - pos: 143.5,-30.5 + parent: 0 + type: Transform +- uid: 5101 + type: MountainRock + components: + - pos: 143.5,-31.5 + parent: 0 + type: Transform +- uid: 5102 + type: MountainRock + components: + - pos: 143.5,-32.5 + parent: 0 + type: Transform +- uid: 5103 + type: MountainRock + components: + - pos: 143.5,-33.5 + parent: 0 + type: Transform +- uid: 5104 + type: MountainRock + components: + - pos: 143.5,-34.5 + parent: 0 + type: Transform +- uid: 5105 + type: MountainRock + components: + - pos: 143.5,-35.5 + parent: 0 + type: Transform +- uid: 5106 + type: MountainRock + components: + - pos: 143.5,-36.5 + parent: 0 + type: Transform +- uid: 5107 + type: MountainRock + components: + - pos: 143.5,-37.5 + parent: 0 + type: Transform +- uid: 5108 + type: MountainRock + components: + - pos: 143.5,-38.5 + parent: 0 + type: Transform +- uid: 5109 + type: MountainRock + components: + - pos: 143.5,-39.5 + parent: 0 + type: Transform +- uid: 5110 + type: MountainRock + components: + - pos: 143.5,-40.5 + parent: 0 + type: Transform +- uid: 5111 + type: MountainRock + components: + - pos: 143.5,-41.5 + parent: 0 + type: Transform +- uid: 5112 + type: MountainRock + components: + - pos: 143.5,-42.5 + parent: 0 + type: Transform +- uid: 5113 + type: MountainRock + components: + - pos: 143.5,-43.5 + parent: 0 + type: Transform +- uid: 5114 + type: MountainRock + components: + - pos: 143.5,-44.5 + parent: 0 + type: Transform +- uid: 5115 + type: MountainRock + components: + - pos: 143.5,-45.5 + parent: 0 + type: Transform +- uid: 5116 + type: MountainRock + components: + - pos: 143.5,-46.5 + parent: 0 + type: Transform +- uid: 5117 + type: MountainRock + components: + - pos: 144.5,28.5 + parent: 0 + type: Transform +- uid: 5118 + type: MountainRock + components: + - pos: 144.5,27.5 + parent: 0 + type: Transform +- uid: 5119 + type: MountainRock + components: + - pos: 144.5,26.5 + parent: 0 + type: Transform +- uid: 5120 + type: MountainRock + components: + - pos: 144.5,25.5 + parent: 0 + type: Transform +- uid: 5121 + type: MountainRock + components: + - pos: 144.5,24.5 + parent: 0 + type: Transform +- uid: 5122 + type: MountainRock + components: + - pos: 144.5,23.5 + parent: 0 + type: Transform +- uid: 5123 + type: MountainRock + components: + - pos: 144.5,22.5 + parent: 0 + type: Transform +- uid: 5124 + type: MountainRock + components: + - pos: 144.5,21.5 + parent: 0 + type: Transform +- uid: 5125 + type: MountainRock + components: + - pos: 144.5,20.5 + parent: 0 + type: Transform +- uid: 5126 + type: MountainRock + components: + - pos: 144.5,19.5 + parent: 0 + type: Transform +- uid: 5127 + type: MountainRock + components: + - pos: 144.5,18.5 + parent: 0 + type: Transform +- uid: 5128 + type: MountainRock + components: + - pos: 144.5,17.5 + parent: 0 + type: Transform +- uid: 5129 + type: MountainRock + components: + - pos: 144.5,16.5 + parent: 0 + type: Transform +- uid: 5130 + type: MountainRock + components: + - pos: 144.5,15.5 + parent: 0 + type: Transform +- uid: 5131 + type: MountainRock + components: + - pos: 144.5,14.5 + parent: 0 + type: Transform +- uid: 5132 + type: MountainRock + components: + - pos: 144.5,13.5 + parent: 0 + type: Transform +- uid: 5133 + type: MountainRock + components: + - pos: 144.5,12.5 + parent: 0 + type: Transform +- uid: 5134 + type: MountainRock + components: + - pos: 144.5,11.5 + parent: 0 + type: Transform +- uid: 5135 + type: MountainRock + components: + - pos: 144.5,10.5 + parent: 0 + type: Transform +- uid: 5136 + type: MountainRock + components: + - pos: 144.5,9.5 + parent: 0 + type: Transform +- uid: 5137 + type: MountainRock + components: + - pos: 144.5,8.5 + parent: 0 + type: Transform +- uid: 5138 + type: MountainRock + components: + - pos: 144.5,7.5 + parent: 0 + type: Transform +- uid: 5139 + type: MountainRock + components: + - pos: 144.5,6.5 + parent: 0 + type: Transform +- uid: 5140 + type: MountainRock + components: + - pos: 144.5,5.5 + parent: 0 + type: Transform +- uid: 5141 + type: MountainRock + components: + - pos: 144.5,4.5 + parent: 0 + type: Transform +- uid: 5142 + type: MountainRock + components: + - pos: 144.5,3.5 + parent: 0 + type: Transform +- uid: 5143 + type: MountainRock + components: + - pos: 144.5,2.5 + parent: 0 + type: Transform +- uid: 5144 + type: MountainRock + components: + - pos: 144.5,1.5 + parent: 0 + type: Transform +- uid: 5145 + type: MountainRock + components: + - pos: 144.5,0.5 + parent: 0 + type: Transform +- uid: 5146 + type: MountainRock + components: + - pos: 144.5,-0.5 + parent: 0 + type: Transform +- uid: 5147 + type: MountainRock + components: + - pos: 144.5,-1.5 + parent: 0 + type: Transform +- uid: 5148 + type: MountainRock + components: + - pos: 144.5,-2.5 + parent: 0 + type: Transform +- uid: 5149 + type: MountainRock + components: + - pos: 144.5,-3.5 + parent: 0 + type: Transform +- uid: 5150 + type: MountainRock + components: + - pos: 144.5,-4.5 + parent: 0 + type: Transform +- uid: 5151 + type: MountainRock + components: + - pos: 144.5,-5.5 + parent: 0 + type: Transform +- uid: 5152 + type: MountainRock + components: + - pos: 144.5,-6.5 + parent: 0 + type: Transform +- uid: 5153 + type: MountainRock + components: + - pos: 144.5,-7.5 + parent: 0 + type: Transform +- uid: 5154 + type: MountainRock + components: + - pos: 144.5,-8.5 + parent: 0 + type: Transform +- uid: 5155 + type: MountainRock + components: + - pos: 144.5,-9.5 + parent: 0 + type: Transform +- uid: 5156 + type: MountainRock + components: + - pos: 144.5,-10.5 + parent: 0 + type: Transform +- uid: 5157 + type: MountainRock + components: + - pos: 144.5,-11.5 + parent: 0 + type: Transform +- uid: 5158 + type: MountainRock + components: + - pos: 144.5,-12.5 + parent: 0 + type: Transform +- uid: 5159 + type: MountainRock + components: + - pos: 144.5,-13.5 + parent: 0 + type: Transform +- uid: 5160 + type: MountainRock + components: + - pos: 144.5,-14.5 + parent: 0 + type: Transform +- uid: 5161 + type: MountainRock + components: + - pos: 144.5,-15.5 + parent: 0 + type: Transform +- uid: 5162 + type: MountainRock + components: + - pos: 144.5,-16.5 + parent: 0 + type: Transform +- uid: 5163 + type: MountainRock + components: + - pos: 144.5,-17.5 + parent: 0 + type: Transform +- uid: 5164 + type: MountainRock + components: + - pos: 144.5,-18.5 + parent: 0 + type: Transform +- uid: 5165 + type: MountainRock + components: + - pos: 144.5,-19.5 + parent: 0 + type: Transform +- uid: 5166 + type: MountainRock + components: + - pos: 144.5,-20.5 + parent: 0 + type: Transform +- uid: 5167 + type: MountainRock + components: + - pos: 144.5,-21.5 + parent: 0 + type: Transform +- uid: 5168 + type: MountainRock + components: + - pos: 144.5,-22.5 + parent: 0 + type: Transform +- uid: 5169 + type: MountainRock + components: + - pos: 144.5,-23.5 + parent: 0 + type: Transform +- uid: 5170 + type: MountainRock + components: + - pos: 144.5,-24.5 + parent: 0 + type: Transform +- uid: 5171 + type: MountainRock + components: + - pos: 144.5,-25.5 + parent: 0 + type: Transform +- uid: 5172 + type: MountainRock + components: + - pos: 144.5,-26.5 + parent: 0 + type: Transform +- uid: 5173 + type: MountainRock + components: + - pos: 144.5,-27.5 + parent: 0 + type: Transform +- uid: 5174 + type: MountainRock + components: + - pos: 144.5,-28.5 + parent: 0 + type: Transform +- uid: 5175 + type: MountainRock + components: + - pos: 144.5,-29.5 + parent: 0 + type: Transform +- uid: 5176 + type: MountainRock + components: + - pos: 144.5,-30.5 + parent: 0 + type: Transform +- uid: 5177 + type: MountainRock + components: + - pos: 144.5,-31.5 + parent: 0 + type: Transform +- uid: 5178 + type: MountainRock + components: + - pos: 144.5,-32.5 + parent: 0 + type: Transform +- uid: 5179 + type: MountainRock + components: + - pos: 144.5,-33.5 + parent: 0 + type: Transform +- uid: 5180 + type: MountainRock + components: + - pos: 144.5,-34.5 + parent: 0 + type: Transform +- uid: 5181 + type: MountainRock + components: + - pos: 144.5,-35.5 + parent: 0 + type: Transform +- uid: 5182 + type: MountainRock + components: + - pos: 144.5,-36.5 + parent: 0 + type: Transform +- uid: 5183 + type: MountainRock + components: + - pos: 144.5,-37.5 + parent: 0 + type: Transform +- uid: 5184 + type: MountainRock + components: + - pos: 144.5,-38.5 + parent: 0 + type: Transform +- uid: 5185 + type: MountainRock + components: + - pos: 144.5,-39.5 + parent: 0 + type: Transform +- uid: 5186 + type: MountainRock + components: + - pos: 144.5,-40.5 + parent: 0 + type: Transform +- uid: 5187 + type: MountainRock + components: + - pos: 144.5,-41.5 + parent: 0 + type: Transform +- uid: 5188 + type: MountainRock + components: + - pos: 144.5,-42.5 + parent: 0 + type: Transform +- uid: 5189 + type: MountainRock + components: + - pos: 144.5,-43.5 + parent: 0 + type: Transform +- uid: 5190 + type: MountainRock + components: + - pos: 144.5,-44.5 + parent: 0 + type: Transform +- uid: 5191 + type: MountainRock + components: + - pos: 144.5,-45.5 + parent: 0 + type: Transform +- uid: 5192 + type: MountainRock + components: + - pos: 144.5,-46.5 + parent: 0 + type: Transform +- uid: 5193 + type: MountainRock + components: + - pos: 145.5,28.5 + parent: 0 + type: Transform +- uid: 5194 + type: MountainRock + components: + - pos: 145.5,27.5 + parent: 0 + type: Transform +- uid: 5195 + type: MountainRock + components: + - pos: 145.5,26.5 + parent: 0 + type: Transform +- uid: 5196 + type: MountainRock + components: + - pos: 145.5,25.5 + parent: 0 + type: Transform +- uid: 5197 + type: MountainRock + components: + - pos: 145.5,24.5 + parent: 0 + type: Transform +- uid: 5198 + type: MountainRock + components: + - pos: 145.5,23.5 + parent: 0 + type: Transform +- uid: 5199 + type: MountainRock + components: + - pos: 145.5,22.5 + parent: 0 + type: Transform +- uid: 5200 + type: MountainRock + components: + - pos: 145.5,21.5 + parent: 0 + type: Transform +- uid: 5201 + type: MountainRock + components: + - pos: 145.5,20.5 + parent: 0 + type: Transform +- uid: 5202 + type: MountainRock + components: + - pos: 145.5,19.5 + parent: 0 + type: Transform +- uid: 5203 + type: MountainRock + components: + - pos: 145.5,18.5 + parent: 0 + type: Transform +- uid: 5204 + type: MountainRock + components: + - pos: 145.5,17.5 + parent: 0 + type: Transform +- uid: 5205 + type: MountainRock + components: + - pos: 145.5,16.5 + parent: 0 + type: Transform +- uid: 5206 + type: MountainRock + components: + - pos: 145.5,15.5 + parent: 0 + type: Transform +- uid: 5207 + type: MountainRock + components: + - pos: 145.5,14.5 + parent: 0 + type: Transform +- uid: 5208 + type: MountainRock + components: + - pos: 145.5,13.5 + parent: 0 + type: Transform +- uid: 5209 + type: MountainRock + components: + - pos: 145.5,12.5 + parent: 0 + type: Transform +- uid: 5210 + type: MountainRock + components: + - pos: 145.5,11.5 + parent: 0 + type: Transform +- uid: 5211 + type: MountainRock + components: + - pos: 145.5,10.5 + parent: 0 + type: Transform +- uid: 5212 + type: MountainRock + components: + - pos: 145.5,9.5 + parent: 0 + type: Transform +- uid: 5213 + type: MountainRock + components: + - pos: 145.5,8.5 + parent: 0 + type: Transform +- uid: 5214 + type: MountainRock + components: + - pos: 145.5,7.5 + parent: 0 + type: Transform +- uid: 5215 + type: MountainRock + components: + - pos: 145.5,6.5 + parent: 0 + type: Transform +- uid: 5216 + type: MountainRock + components: + - pos: 145.5,5.5 + parent: 0 + type: Transform +- uid: 5217 + type: MountainRock + components: + - pos: 145.5,4.5 + parent: 0 + type: Transform +- uid: 5218 + type: MountainRock + components: + - pos: 145.5,3.5 + parent: 0 + type: Transform +- uid: 5219 + type: MountainRock + components: + - pos: 145.5,2.5 + parent: 0 + type: Transform +- uid: 5220 + type: MountainRock + components: + - pos: 145.5,1.5 + parent: 0 + type: Transform +- uid: 5221 + type: MountainRock + components: + - pos: 145.5,0.5 + parent: 0 + type: Transform +- uid: 5222 + type: MountainRock + components: + - pos: 145.5,-0.5 + parent: 0 + type: Transform +- uid: 5223 + type: MountainRock + components: + - pos: 145.5,-1.5 + parent: 0 + type: Transform +- uid: 5224 + type: MountainRock + components: + - pos: 145.5,-2.5 + parent: 0 + type: Transform +- uid: 5225 + type: MountainRock + components: + - pos: 145.5,-3.5 + parent: 0 + type: Transform +- uid: 5226 + type: MountainRock + components: + - pos: 145.5,-4.5 + parent: 0 + type: Transform +- uid: 5227 + type: MountainRock + components: + - pos: 145.5,-5.5 + parent: 0 + type: Transform +- uid: 5228 + type: MountainRock + components: + - pos: 145.5,-6.5 + parent: 0 + type: Transform +- uid: 5229 + type: MountainRock + components: + - pos: 145.5,-7.5 + parent: 0 + type: Transform +- uid: 5230 + type: MountainRock + components: + - pos: 145.5,-8.5 + parent: 0 + type: Transform +- uid: 5231 + type: MountainRock + components: + - pos: 145.5,-9.5 + parent: 0 + type: Transform +- uid: 5232 + type: MountainRock + components: + - pos: 145.5,-10.5 + parent: 0 + type: Transform +- uid: 5233 + type: MountainRock + components: + - pos: 145.5,-11.5 + parent: 0 + type: Transform +- uid: 5234 + type: MountainRock + components: + - pos: 145.5,-12.5 + parent: 0 + type: Transform +- uid: 5235 + type: MountainRock + components: + - pos: 145.5,-13.5 + parent: 0 + type: Transform +- uid: 5236 + type: MountainRock + components: + - pos: 145.5,-14.5 + parent: 0 + type: Transform +- uid: 5237 + type: MountainRock + components: + - pos: 145.5,-15.5 + parent: 0 + type: Transform +- uid: 5238 + type: MountainRock + components: + - pos: 145.5,-16.5 + parent: 0 + type: Transform +- uid: 5239 + type: MountainRock + components: + - pos: 145.5,-17.5 + parent: 0 + type: Transform +- uid: 5240 + type: MountainRock + components: + - pos: 145.5,-18.5 + parent: 0 + type: Transform +- uid: 5241 + type: MountainRock + components: + - pos: 145.5,-19.5 + parent: 0 + type: Transform +- uid: 5242 + type: MountainRock + components: + - pos: 145.5,-20.5 + parent: 0 + type: Transform +- uid: 5243 + type: MountainRock + components: + - pos: 145.5,-21.5 + parent: 0 + type: Transform +- uid: 5244 + type: MountainRock + components: + - pos: 145.5,-22.5 + parent: 0 + type: Transform +- uid: 5245 + type: MountainRock + components: + - pos: 145.5,-23.5 + parent: 0 + type: Transform +- uid: 5246 + type: MountainRock + components: + - pos: 145.5,-24.5 + parent: 0 + type: Transform +- uid: 5247 + type: MountainRock + components: + - pos: 145.5,-25.5 + parent: 0 + type: Transform +- uid: 5248 + type: MountainRock + components: + - pos: 145.5,-26.5 + parent: 0 + type: Transform +- uid: 5249 + type: MountainRock + components: + - pos: 145.5,-27.5 + parent: 0 + type: Transform +- uid: 5250 + type: MountainRock + components: + - pos: 145.5,-28.5 + parent: 0 + type: Transform +- uid: 5251 + type: MountainRock + components: + - pos: 145.5,-29.5 + parent: 0 + type: Transform +- uid: 5252 + type: MountainRock + components: + - pos: 145.5,-30.5 + parent: 0 + type: Transform +- uid: 5253 + type: MountainRock + components: + - pos: 145.5,-31.5 + parent: 0 + type: Transform +- uid: 5254 + type: MountainRock + components: + - pos: 145.5,-32.5 + parent: 0 + type: Transform +- uid: 5255 + type: MountainRock + components: + - pos: 145.5,-33.5 + parent: 0 + type: Transform +- uid: 5256 + type: MountainRock + components: + - pos: 145.5,-34.5 + parent: 0 + type: Transform +- uid: 5257 + type: MountainRock + components: + - pos: 145.5,-35.5 + parent: 0 + type: Transform +- uid: 5258 + type: MountainRock + components: + - pos: 145.5,-36.5 + parent: 0 + type: Transform +- uid: 5259 + type: MountainRock + components: + - pos: 145.5,-37.5 + parent: 0 + type: Transform +- uid: 5260 + type: MountainRock + components: + - pos: 145.5,-38.5 + parent: 0 + type: Transform +- uid: 5261 + type: MountainRock + components: + - pos: 145.5,-39.5 + parent: 0 + type: Transform +- uid: 5262 + type: MountainRock + components: + - pos: 145.5,-40.5 + parent: 0 + type: Transform +- uid: 5263 + type: MountainRock + components: + - pos: 145.5,-41.5 + parent: 0 + type: Transform +- uid: 5264 + type: MountainRock + components: + - pos: 145.5,-42.5 + parent: 0 + type: Transform +- uid: 5265 + type: MountainRock + components: + - pos: 145.5,-43.5 + parent: 0 + type: Transform +- uid: 5266 + type: MountainRock + components: + - pos: 145.5,-44.5 + parent: 0 + type: Transform +- uid: 5267 + type: MountainRock + components: + - pos: 145.5,-45.5 + parent: 0 + type: Transform +- uid: 5268 + type: MountainRock + components: + - pos: 145.5,-46.5 + parent: 0 + type: Transform +- uid: 5269 + type: MountainRock + components: + - pos: 146.5,28.5 + parent: 0 + type: Transform +- uid: 5270 + type: MountainRock + components: + - pos: 146.5,27.5 + parent: 0 + type: Transform +- uid: 5271 + type: MountainRock + components: + - pos: 146.5,26.5 + parent: 0 + type: Transform +- uid: 5272 + type: MountainRock + components: + - pos: 146.5,25.5 + parent: 0 + type: Transform +- uid: 5273 + type: MountainRock + components: + - pos: 146.5,24.5 + parent: 0 + type: Transform +- uid: 5274 + type: MountainRock + components: + - pos: 146.5,23.5 + parent: 0 + type: Transform +- uid: 5275 + type: MountainRock + components: + - pos: 146.5,22.5 + parent: 0 + type: Transform +- uid: 5276 + type: MountainRock + components: + - pos: 146.5,21.5 + parent: 0 + type: Transform +- uid: 5277 + type: MountainRock + components: + - pos: 146.5,20.5 + parent: 0 + type: Transform +- uid: 5278 + type: MountainRock + components: + - pos: 146.5,19.5 + parent: 0 + type: Transform +- uid: 5279 + type: MountainRock + components: + - pos: 146.5,18.5 + parent: 0 + type: Transform +- uid: 5280 + type: MountainRock + components: + - pos: 146.5,17.5 + parent: 0 + type: Transform +- uid: 5281 + type: MountainRock + components: + - pos: 146.5,16.5 + parent: 0 + type: Transform +- uid: 5282 + type: MountainRock + components: + - pos: 146.5,15.5 + parent: 0 + type: Transform +- uid: 5283 + type: MountainRock + components: + - pos: 146.5,14.5 + parent: 0 + type: Transform +- uid: 5284 + type: MountainRock + components: + - pos: 146.5,13.5 + parent: 0 + type: Transform +- uid: 5285 + type: MountainRock + components: + - pos: 146.5,12.5 + parent: 0 + type: Transform +- uid: 5286 + type: MountainRock + components: + - pos: 146.5,11.5 + parent: 0 + type: Transform +- uid: 5287 + type: MountainRock + components: + - pos: 146.5,10.5 + parent: 0 + type: Transform +- uid: 5288 + type: MountainRock + components: + - pos: 146.5,9.5 + parent: 0 + type: Transform +- uid: 5289 + type: MountainRock + components: + - pos: 146.5,8.5 + parent: 0 + type: Transform +- uid: 5290 + type: MountainRock + components: + - pos: 146.5,7.5 + parent: 0 + type: Transform +- uid: 5291 + type: MountainRock + components: + - pos: 146.5,6.5 + parent: 0 + type: Transform +- uid: 5292 + type: MountainRock + components: + - pos: 146.5,5.5 + parent: 0 + type: Transform +- uid: 5293 + type: MountainRock + components: + - pos: 146.5,4.5 + parent: 0 + type: Transform +- uid: 5294 + type: MountainRock + components: + - pos: 146.5,3.5 + parent: 0 + type: Transform +- uid: 5295 + type: MountainRock + components: + - pos: 146.5,2.5 + parent: 0 + type: Transform +- uid: 5296 + type: MountainRock + components: + - pos: 146.5,1.5 + parent: 0 + type: Transform +- uid: 5297 + type: MountainRock + components: + - pos: 146.5,0.5 + parent: 0 + type: Transform +- uid: 5298 + type: MountainRock + components: + - pos: 146.5,-0.5 + parent: 0 + type: Transform +- uid: 5299 + type: MountainRock + components: + - pos: 146.5,-1.5 + parent: 0 + type: Transform +- uid: 5300 + type: MountainRock + components: + - pos: 146.5,-2.5 + parent: 0 + type: Transform +- uid: 5301 + type: MountainRock + components: + - pos: 146.5,-3.5 + parent: 0 + type: Transform +- uid: 5302 + type: MountainRock + components: + - pos: 146.5,-4.5 + parent: 0 + type: Transform +- uid: 5303 + type: MountainRock + components: + - pos: 146.5,-5.5 + parent: 0 + type: Transform +- uid: 5304 + type: MountainRock + components: + - pos: 146.5,-6.5 + parent: 0 + type: Transform +- uid: 5305 + type: MountainRock + components: + - pos: 146.5,-7.5 + parent: 0 + type: Transform +- uid: 5306 + type: MountainRock + components: + - pos: 146.5,-8.5 + parent: 0 + type: Transform +- uid: 5307 + type: MountainRock + components: + - pos: 146.5,-9.5 + parent: 0 + type: Transform +- uid: 5308 + type: MountainRock + components: + - pos: 146.5,-10.5 + parent: 0 + type: Transform +- uid: 5309 + type: MountainRock + components: + - pos: 146.5,-11.5 + parent: 0 + type: Transform +- uid: 5310 + type: MountainRock + components: + - pos: 146.5,-12.5 + parent: 0 + type: Transform +- uid: 5311 + type: MountainRock + components: + - pos: 146.5,-13.5 + parent: 0 + type: Transform +- uid: 5312 + type: MountainRock + components: + - pos: 146.5,-14.5 + parent: 0 + type: Transform +- uid: 5313 + type: MountainRock + components: + - pos: 146.5,-15.5 + parent: 0 + type: Transform +- uid: 5314 + type: MountainRock + components: + - pos: 146.5,-16.5 + parent: 0 + type: Transform +- uid: 5315 + type: MountainRock + components: + - pos: 146.5,-17.5 + parent: 0 + type: Transform +- uid: 5316 + type: MountainRock + components: + - pos: 146.5,-18.5 + parent: 0 + type: Transform +- uid: 5317 + type: MountainRock + components: + - pos: 146.5,-19.5 + parent: 0 + type: Transform +- uid: 5318 + type: MountainRock + components: + - pos: 146.5,-20.5 + parent: 0 + type: Transform +- uid: 5319 + type: MountainRock + components: + - pos: 146.5,-21.5 + parent: 0 + type: Transform +- uid: 5320 + type: MountainRock + components: + - pos: 146.5,-22.5 + parent: 0 + type: Transform +- uid: 5321 + type: MountainRock + components: + - pos: 146.5,-23.5 + parent: 0 + type: Transform +- uid: 5322 + type: MountainRock + components: + - pos: 146.5,-24.5 + parent: 0 + type: Transform +- uid: 5323 + type: MountainRock + components: + - pos: 146.5,-25.5 + parent: 0 + type: Transform +- uid: 5324 + type: MountainRock + components: + - pos: 146.5,-26.5 + parent: 0 + type: Transform +- uid: 5325 + type: MountainRock + components: + - pos: 146.5,-27.5 + parent: 0 + type: Transform +- uid: 5326 + type: MountainRock + components: + - pos: 146.5,-28.5 + parent: 0 + type: Transform +- uid: 5327 + type: MountainRock + components: + - pos: 146.5,-29.5 + parent: 0 + type: Transform +- uid: 5328 + type: MountainRock + components: + - pos: 146.5,-30.5 + parent: 0 + type: Transform +- uid: 5329 + type: MountainRock + components: + - pos: 146.5,-31.5 + parent: 0 + type: Transform +- uid: 5330 + type: MountainRock + components: + - pos: 146.5,-32.5 + parent: 0 + type: Transform +- uid: 5331 + type: MountainRock + components: + - pos: 146.5,-33.5 + parent: 0 + type: Transform +- uid: 5332 + type: MountainRock + components: + - pos: 146.5,-34.5 + parent: 0 + type: Transform +- uid: 5333 + type: MountainRock + components: + - pos: 146.5,-35.5 + parent: 0 + type: Transform +- uid: 5334 + type: MountainRock + components: + - pos: 146.5,-36.5 + parent: 0 + type: Transform +- uid: 5335 + type: MountainRock + components: + - pos: 146.5,-37.5 + parent: 0 + type: Transform +- uid: 5336 + type: MountainRock + components: + - pos: 146.5,-38.5 + parent: 0 + type: Transform +- uid: 5337 + type: MountainRock + components: + - pos: 146.5,-39.5 + parent: 0 + type: Transform +- uid: 5338 + type: MountainRock + components: + - pos: 146.5,-40.5 + parent: 0 + type: Transform +- uid: 5339 + type: MountainRock + components: + - pos: 146.5,-41.5 + parent: 0 + type: Transform +- uid: 5340 + type: MountainRock + components: + - pos: 146.5,-42.5 + parent: 0 + type: Transform +- uid: 5341 + type: MountainRock + components: + - pos: 146.5,-43.5 + parent: 0 + type: Transform +- uid: 5342 + type: MountainRock + components: + - pos: 146.5,-44.5 + parent: 0 + type: Transform +- uid: 5343 + type: MountainRock + components: + - pos: 146.5,-45.5 + parent: 0 + type: Transform +- uid: 5344 + type: MountainRock + components: + - pos: 146.5,-46.5 + parent: 0 + type: Transform +- uid: 5345 + type: MountainRock + components: + - pos: 147.5,28.5 + parent: 0 + type: Transform +- uid: 5346 + type: MountainRock + components: + - pos: 147.5,27.5 + parent: 0 + type: Transform +- uid: 5347 + type: MountainRock + components: + - pos: 147.5,26.5 + parent: 0 + type: Transform +- uid: 5348 + type: MountainRock + components: + - pos: 147.5,25.5 + parent: 0 + type: Transform +- uid: 5349 + type: MountainRock + components: + - pos: 147.5,24.5 + parent: 0 + type: Transform +- uid: 5350 + type: MountainRock + components: + - pos: 147.5,23.5 + parent: 0 + type: Transform +- uid: 5351 + type: MountainRock + components: + - pos: 147.5,22.5 + parent: 0 + type: Transform +- uid: 5352 + type: MountainRock + components: + - pos: 147.5,21.5 + parent: 0 + type: Transform +- uid: 5353 + type: MountainRock + components: + - pos: 147.5,20.5 + parent: 0 + type: Transform +- uid: 5354 + type: MountainRock + components: + - pos: 147.5,19.5 + parent: 0 + type: Transform +- uid: 5355 + type: MountainRock + components: + - pos: 147.5,18.5 + parent: 0 + type: Transform +- uid: 5356 + type: MountainRock + components: + - pos: 147.5,17.5 + parent: 0 + type: Transform +- uid: 5357 + type: MountainRock + components: + - pos: 147.5,16.5 + parent: 0 + type: Transform +- uid: 5358 + type: MountainRock + components: + - pos: 147.5,15.5 + parent: 0 + type: Transform +- uid: 5359 + type: MountainRock + components: + - pos: 147.5,14.5 + parent: 0 + type: Transform +- uid: 5360 + type: MountainRock + components: + - pos: 147.5,13.5 + parent: 0 + type: Transform +- uid: 5361 + type: MountainRock + components: + - pos: 147.5,12.5 + parent: 0 + type: Transform +- uid: 5362 + type: MountainRock + components: + - pos: 147.5,11.5 + parent: 0 + type: Transform +- uid: 5363 + type: MountainRock + components: + - pos: 147.5,10.5 + parent: 0 + type: Transform +- uid: 5364 + type: MountainRock + components: + - pos: 147.5,9.5 + parent: 0 + type: Transform +- uid: 5365 + type: MountainRock + components: + - pos: 147.5,8.5 + parent: 0 + type: Transform +- uid: 5366 + type: MountainRock + components: + - pos: 147.5,7.5 + parent: 0 + type: Transform +- uid: 5367 + type: MountainRock + components: + - pos: 147.5,6.5 + parent: 0 + type: Transform +- uid: 5368 + type: MountainRock + components: + - pos: 147.5,5.5 + parent: 0 + type: Transform +- uid: 5369 + type: MountainRock + components: + - pos: 147.5,4.5 + parent: 0 + type: Transform +- uid: 5370 + type: MountainRock + components: + - pos: 147.5,3.5 + parent: 0 + type: Transform +- uid: 5371 + type: MountainRock + components: + - pos: 147.5,2.5 + parent: 0 + type: Transform +- uid: 5372 + type: MountainRock + components: + - pos: 147.5,1.5 + parent: 0 + type: Transform +- uid: 5373 + type: MountainRock + components: + - pos: 147.5,0.5 + parent: 0 + type: Transform +- uid: 5374 + type: MountainRock + components: + - pos: 147.5,-0.5 + parent: 0 + type: Transform +- uid: 5375 + type: MountainRock + components: + - pos: 147.5,-1.5 + parent: 0 + type: Transform +- uid: 5376 + type: MountainRock + components: + - pos: 147.5,-2.5 + parent: 0 + type: Transform +- uid: 5377 + type: MountainRock + components: + - pos: 147.5,-3.5 + parent: 0 + type: Transform +- uid: 5378 + type: MountainRock + components: + - pos: 147.5,-4.5 + parent: 0 + type: Transform +- uid: 5379 + type: MountainRock + components: + - pos: 147.5,-5.5 + parent: 0 + type: Transform +- uid: 5380 + type: MountainRock + components: + - pos: 147.5,-6.5 + parent: 0 + type: Transform +- uid: 5381 + type: MountainRock + components: + - pos: 147.5,-7.5 + parent: 0 + type: Transform +- uid: 5382 + type: MountainRock + components: + - pos: 147.5,-8.5 + parent: 0 + type: Transform +- uid: 5383 + type: MountainRock + components: + - pos: 147.5,-9.5 + parent: 0 + type: Transform +- uid: 5384 + type: MountainRock + components: + - pos: 147.5,-10.5 + parent: 0 + type: Transform +- uid: 5385 + type: MountainRock + components: + - pos: 147.5,-11.5 + parent: 0 + type: Transform +- uid: 5386 + type: MountainRock + components: + - pos: 147.5,-12.5 + parent: 0 + type: Transform +- uid: 5387 + type: MountainRock + components: + - pos: 147.5,-13.5 + parent: 0 + type: Transform +- uid: 5388 + type: MountainRock + components: + - pos: 147.5,-14.5 + parent: 0 + type: Transform +- uid: 5389 + type: MountainRock + components: + - pos: 147.5,-15.5 + parent: 0 + type: Transform +- uid: 5390 + type: MountainRock + components: + - pos: 147.5,-16.5 + parent: 0 + type: Transform +- uid: 5391 + type: MountainRock + components: + - pos: 147.5,-17.5 + parent: 0 + type: Transform +- uid: 5392 + type: MountainRock + components: + - pos: 147.5,-18.5 + parent: 0 + type: Transform +- uid: 5393 + type: MountainRock + components: + - pos: 147.5,-19.5 + parent: 0 + type: Transform +- uid: 5394 + type: MountainRock + components: + - pos: 147.5,-20.5 + parent: 0 + type: Transform +- uid: 5395 + type: MountainRock + components: + - pos: 147.5,-21.5 + parent: 0 + type: Transform +- uid: 5396 + type: MountainRock + components: + - pos: 147.5,-22.5 + parent: 0 + type: Transform +- uid: 5397 + type: MountainRock + components: + - pos: 147.5,-23.5 + parent: 0 + type: Transform +- uid: 5398 + type: MountainRock + components: + - pos: 147.5,-24.5 + parent: 0 + type: Transform +- uid: 5399 + type: MountainRock + components: + - pos: 147.5,-25.5 + parent: 0 + type: Transform +- uid: 5400 + type: MountainRock + components: + - pos: 147.5,-26.5 + parent: 0 + type: Transform +- uid: 5401 + type: MountainRock + components: + - pos: 147.5,-27.5 + parent: 0 + type: Transform +- uid: 5402 + type: MountainRock + components: + - pos: 147.5,-28.5 + parent: 0 + type: Transform +- uid: 5403 + type: MountainRock + components: + - pos: 147.5,-29.5 + parent: 0 + type: Transform +- uid: 5404 + type: MountainRock + components: + - pos: 147.5,-30.5 + parent: 0 + type: Transform +- uid: 5405 + type: MountainRock + components: + - pos: 147.5,-31.5 + parent: 0 + type: Transform +- uid: 5406 + type: MountainRock + components: + - pos: 147.5,-32.5 + parent: 0 + type: Transform +- uid: 5407 + type: MountainRock + components: + - pos: 147.5,-33.5 + parent: 0 + type: Transform +- uid: 5408 + type: MountainRock + components: + - pos: 147.5,-34.5 + parent: 0 + type: Transform +- uid: 5409 + type: MountainRock + components: + - pos: 147.5,-35.5 + parent: 0 + type: Transform +- uid: 5410 + type: MountainRock + components: + - pos: 147.5,-36.5 + parent: 0 + type: Transform +- uid: 5411 + type: MountainRock + components: + - pos: 147.5,-37.5 + parent: 0 + type: Transform +- uid: 5412 + type: MountainRock + components: + - pos: 147.5,-38.5 + parent: 0 + type: Transform +- uid: 5413 + type: MountainRock + components: + - pos: 147.5,-39.5 + parent: 0 + type: Transform +- uid: 5414 + type: MountainRock + components: + - pos: 147.5,-40.5 + parent: 0 + type: Transform +- uid: 5415 + type: MountainRock + components: + - pos: 147.5,-41.5 + parent: 0 + type: Transform +- uid: 5416 + type: MountainRock + components: + - pos: 147.5,-42.5 + parent: 0 + type: Transform +- uid: 5417 + type: MountainRock + components: + - pos: 147.5,-43.5 + parent: 0 + type: Transform +- uid: 5418 + type: MountainRock + components: + - pos: 147.5,-44.5 + parent: 0 + type: Transform +- uid: 5419 + type: MountainRock + components: + - pos: 147.5,-45.5 + parent: 0 + type: Transform +- uid: 5420 + type: MountainRock + components: + - pos: 147.5,-46.5 + parent: 0 + type: Transform +- uid: 5421 + type: MountainRock + components: + - pos: 148.5,28.5 + parent: 0 + type: Transform +- uid: 5422 + type: MountainRock + components: + - pos: 148.5,27.5 + parent: 0 + type: Transform +- uid: 5423 + type: MountainRock + components: + - pos: 148.5,26.5 + parent: 0 + type: Transform +- uid: 5424 + type: MountainRock + components: + - pos: 148.5,25.5 + parent: 0 + type: Transform +- uid: 5425 + type: MountainRock + components: + - pos: 148.5,24.5 + parent: 0 + type: Transform +- uid: 5426 + type: MountainRock + components: + - pos: 148.5,23.5 + parent: 0 + type: Transform +- uid: 5427 + type: MountainRock + components: + - pos: 148.5,22.5 + parent: 0 + type: Transform +- uid: 5428 + type: MountainRock + components: + - pos: 148.5,21.5 + parent: 0 + type: Transform +- uid: 5429 + type: MountainRock + components: + - pos: 148.5,20.5 + parent: 0 + type: Transform +- uid: 5430 + type: MountainRock + components: + - pos: 148.5,19.5 + parent: 0 + type: Transform +- uid: 5431 + type: MountainRock + components: + - pos: 148.5,18.5 + parent: 0 + type: Transform +- uid: 5432 + type: MountainRock + components: + - pos: 148.5,17.5 + parent: 0 + type: Transform +- uid: 5433 + type: MountainRock + components: + - pos: 148.5,16.5 + parent: 0 + type: Transform +- uid: 5434 + type: MountainRock + components: + - pos: 148.5,15.5 + parent: 0 + type: Transform +- uid: 5435 + type: MountainRock + components: + - pos: 148.5,14.5 + parent: 0 + type: Transform +- uid: 5436 + type: MountainRock + components: + - pos: 148.5,13.5 + parent: 0 + type: Transform +- uid: 5437 + type: MountainRock + components: + - pos: 148.5,12.5 + parent: 0 + type: Transform +- uid: 5438 + type: MountainRock + components: + - pos: 148.5,11.5 + parent: 0 + type: Transform +- uid: 5439 + type: MountainRock + components: + - pos: 148.5,10.5 + parent: 0 + type: Transform +- uid: 5440 + type: MountainRock + components: + - pos: 148.5,9.5 + parent: 0 + type: Transform +- uid: 5441 + type: MountainRock + components: + - pos: 148.5,8.5 + parent: 0 + type: Transform +- uid: 5442 + type: MountainRock + components: + - pos: 148.5,7.5 + parent: 0 + type: Transform +- uid: 5443 + type: MountainRock + components: + - pos: 148.5,6.5 + parent: 0 + type: Transform +- uid: 5444 + type: MountainRock + components: + - pos: 148.5,5.5 + parent: 0 + type: Transform +- uid: 5445 + type: MountainRock + components: + - pos: 148.5,4.5 + parent: 0 + type: Transform +- uid: 5446 + type: MountainRock + components: + - pos: 148.5,3.5 + parent: 0 + type: Transform +- uid: 5447 + type: MountainRock + components: + - pos: 148.5,2.5 + parent: 0 + type: Transform +- uid: 5448 + type: MountainRock + components: + - pos: 148.5,1.5 + parent: 0 + type: Transform +- uid: 5449 + type: MountainRock + components: + - pos: 148.5,0.5 + parent: 0 + type: Transform +- uid: 5450 + type: MountainRock + components: + - pos: 148.5,-0.5 + parent: 0 + type: Transform +- uid: 5451 + type: MountainRock + components: + - pos: 148.5,-1.5 + parent: 0 + type: Transform +- uid: 5452 + type: MountainRock + components: + - pos: 148.5,-2.5 + parent: 0 + type: Transform +- uid: 5453 + type: MountainRock + components: + - pos: 148.5,-3.5 + parent: 0 + type: Transform +- uid: 5454 + type: MountainRock + components: + - pos: 148.5,-4.5 + parent: 0 + type: Transform +- uid: 5455 + type: MountainRock + components: + - pos: 148.5,-5.5 + parent: 0 + type: Transform +- uid: 5456 + type: MountainRock + components: + - pos: 148.5,-6.5 + parent: 0 + type: Transform +- uid: 5457 + type: MountainRock + components: + - pos: 148.5,-7.5 + parent: 0 + type: Transform +- uid: 5458 + type: MountainRock + components: + - pos: 148.5,-8.5 + parent: 0 + type: Transform +- uid: 5459 + type: MountainRock + components: + - pos: 148.5,-9.5 + parent: 0 + type: Transform +- uid: 5460 + type: MountainRock + components: + - pos: 148.5,-10.5 + parent: 0 + type: Transform +- uid: 5461 + type: MountainRock + components: + - pos: 148.5,-11.5 + parent: 0 + type: Transform +- uid: 5462 + type: MountainRock + components: + - pos: 148.5,-12.5 + parent: 0 + type: Transform +- uid: 5463 + type: MountainRock + components: + - pos: 148.5,-13.5 + parent: 0 + type: Transform +- uid: 5464 + type: MountainRock + components: + - pos: 148.5,-14.5 + parent: 0 + type: Transform +- uid: 5465 + type: MountainRock + components: + - pos: 148.5,-15.5 + parent: 0 + type: Transform +- uid: 5466 + type: MountainRock + components: + - pos: 148.5,-16.5 + parent: 0 + type: Transform +- uid: 5467 + type: MountainRock + components: + - pos: 148.5,-17.5 + parent: 0 + type: Transform +- uid: 5468 + type: MountainRock + components: + - pos: 148.5,-18.5 + parent: 0 + type: Transform +- uid: 5469 + type: MountainRock + components: + - pos: 148.5,-19.5 + parent: 0 + type: Transform +- uid: 5470 + type: MountainRock + components: + - pos: 148.5,-20.5 + parent: 0 + type: Transform +- uid: 5471 + type: MountainRock + components: + - pos: 148.5,-21.5 + parent: 0 + type: Transform +- uid: 5472 + type: MountainRock + components: + - pos: 148.5,-22.5 + parent: 0 + type: Transform +- uid: 5473 + type: MountainRock + components: + - pos: 148.5,-23.5 + parent: 0 + type: Transform +- uid: 5474 + type: MountainRock + components: + - pos: 148.5,-24.5 + parent: 0 + type: Transform +- uid: 5475 + type: MountainRock + components: + - pos: 148.5,-25.5 + parent: 0 + type: Transform +- uid: 5476 + type: MountainRock + components: + - pos: 148.5,-26.5 + parent: 0 + type: Transform +- uid: 5477 + type: MountainRock + components: + - pos: 148.5,-27.5 + parent: 0 + type: Transform +- uid: 5478 + type: MountainRock + components: + - pos: 148.5,-28.5 + parent: 0 + type: Transform +- uid: 5479 + type: MountainRock + components: + - pos: 148.5,-29.5 + parent: 0 + type: Transform +- uid: 5480 + type: MountainRock + components: + - pos: 148.5,-30.5 + parent: 0 + type: Transform +- uid: 5481 + type: MountainRock + components: + - pos: 148.5,-31.5 + parent: 0 + type: Transform +- uid: 5482 + type: MountainRock + components: + - pos: 148.5,-32.5 + parent: 0 + type: Transform +- uid: 5483 + type: MountainRock + components: + - pos: 148.5,-33.5 + parent: 0 + type: Transform +- uid: 5484 + type: MountainRock + components: + - pos: 148.5,-34.5 + parent: 0 + type: Transform +- uid: 5485 + type: MountainRock + components: + - pos: 148.5,-35.5 + parent: 0 + type: Transform +- uid: 5486 + type: MountainRock + components: + - pos: 148.5,-36.5 + parent: 0 + type: Transform +- uid: 5487 + type: MountainRock + components: + - pos: 148.5,-37.5 + parent: 0 + type: Transform +- uid: 5488 + type: MountainRock + components: + - pos: 148.5,-38.5 + parent: 0 + type: Transform +- uid: 5489 + type: MountainRock + components: + - pos: 148.5,-39.5 + parent: 0 + type: Transform +- uid: 5490 + type: MountainRock + components: + - pos: 148.5,-40.5 + parent: 0 + type: Transform +- uid: 5491 + type: MountainRock + components: + - pos: 148.5,-41.5 + parent: 0 + type: Transform +- uid: 5492 + type: MountainRock + components: + - pos: 148.5,-42.5 + parent: 0 + type: Transform +- uid: 5493 + type: MountainRock + components: + - pos: 148.5,-43.5 + parent: 0 + type: Transform +- uid: 5494 + type: MountainRock + components: + - pos: 148.5,-44.5 + parent: 0 + type: Transform +- uid: 5495 + type: MountainRock + components: + - pos: 148.5,-45.5 + parent: 0 + type: Transform +- uid: 5496 + type: MountainRock + components: + - pos: 148.5,-46.5 + parent: 0 + type: Transform +- uid: 5497 + type: MountainRock + components: + - pos: 149.5,28.5 + parent: 0 + type: Transform +- uid: 5498 + type: MountainRock + components: + - pos: 149.5,27.5 + parent: 0 + type: Transform +- uid: 5499 + type: MountainRock + components: + - pos: 149.5,26.5 + parent: 0 + type: Transform +- uid: 5500 + type: MountainRock + components: + - pos: 149.5,25.5 + parent: 0 + type: Transform +- uid: 5501 + type: MountainRock + components: + - pos: 149.5,24.5 + parent: 0 + type: Transform +- uid: 5502 + type: MountainRock + components: + - pos: 149.5,23.5 + parent: 0 + type: Transform +- uid: 5503 + type: MountainRock + components: + - pos: 149.5,22.5 + parent: 0 + type: Transform +- uid: 5504 + type: MountainRock + components: + - pos: 149.5,21.5 + parent: 0 + type: Transform +- uid: 5505 + type: MountainRock + components: + - pos: 149.5,20.5 + parent: 0 + type: Transform +- uid: 5506 + type: MountainRock + components: + - pos: 149.5,19.5 + parent: 0 + type: Transform +- uid: 5507 + type: MountainRock + components: + - pos: 149.5,18.5 + parent: 0 + type: Transform +- uid: 5508 + type: MountainRock + components: + - pos: 149.5,17.5 + parent: 0 + type: Transform +- uid: 5509 + type: MountainRock + components: + - pos: 149.5,16.5 + parent: 0 + type: Transform +- uid: 5510 + type: MountainRock + components: + - pos: 149.5,15.5 + parent: 0 + type: Transform +- uid: 5511 + type: MountainRock + components: + - pos: 149.5,14.5 + parent: 0 + type: Transform +- uid: 5512 + type: MountainRock + components: + - pos: 149.5,13.5 + parent: 0 + type: Transform +- uid: 5513 + type: MountainRock + components: + - pos: 149.5,12.5 + parent: 0 + type: Transform +- uid: 5514 + type: MountainRock + components: + - pos: 149.5,11.5 + parent: 0 + type: Transform +- uid: 5515 + type: MountainRock + components: + - pos: 149.5,10.5 + parent: 0 + type: Transform +- uid: 5516 + type: MountainRock + components: + - pos: 149.5,9.5 + parent: 0 + type: Transform +- uid: 5517 + type: MountainRock + components: + - pos: 149.5,8.5 + parent: 0 + type: Transform +- uid: 5518 + type: MountainRock + components: + - pos: 149.5,7.5 + parent: 0 + type: Transform +- uid: 5519 + type: MountainRock + components: + - pos: 149.5,6.5 + parent: 0 + type: Transform +- uid: 5520 + type: MountainRock + components: + - pos: 149.5,5.5 + parent: 0 + type: Transform +- uid: 5521 + type: MountainRock + components: + - pos: 149.5,4.5 + parent: 0 + type: Transform +- uid: 5522 + type: MountainRock + components: + - pos: 149.5,3.5 + parent: 0 + type: Transform +- uid: 5523 + type: MountainRock + components: + - pos: 149.5,2.5 + parent: 0 + type: Transform +- uid: 5524 + type: MountainRock + components: + - pos: 149.5,1.5 + parent: 0 + type: Transform +- uid: 5525 + type: MountainRock + components: + - pos: 149.5,0.5 + parent: 0 + type: Transform +- uid: 5526 + type: MountainRock + components: + - pos: 149.5,-0.5 + parent: 0 + type: Transform +- uid: 5527 + type: MountainRock + components: + - pos: 149.5,-1.5 + parent: 0 + type: Transform +- uid: 5528 + type: MountainRock + components: + - pos: 149.5,-2.5 + parent: 0 + type: Transform +- uid: 5529 + type: MountainRock + components: + - pos: 149.5,-3.5 + parent: 0 + type: Transform +- uid: 5530 + type: MountainRock + components: + - pos: 149.5,-4.5 + parent: 0 + type: Transform +- uid: 5531 + type: MountainRock + components: + - pos: 149.5,-5.5 + parent: 0 + type: Transform +- uid: 5532 + type: MountainRock + components: + - pos: 149.5,-6.5 + parent: 0 + type: Transform +- uid: 5533 + type: MountainRock + components: + - pos: 149.5,-7.5 + parent: 0 + type: Transform +- uid: 5534 + type: MountainRock + components: + - pos: 149.5,-8.5 + parent: 0 + type: Transform +- uid: 5535 + type: MountainRock + components: + - pos: 149.5,-9.5 + parent: 0 + type: Transform +- uid: 5536 + type: MountainRock + components: + - pos: 149.5,-10.5 + parent: 0 + type: Transform +- uid: 5537 + type: MountainRock + components: + - pos: 149.5,-11.5 + parent: 0 + type: Transform +- uid: 5538 + type: MountainRock + components: + - pos: 149.5,-12.5 + parent: 0 + type: Transform +- uid: 5539 + type: MountainRock + components: + - pos: 149.5,-13.5 + parent: 0 + type: Transform +- uid: 5540 + type: MountainRock + components: + - pos: 149.5,-14.5 + parent: 0 + type: Transform +- uid: 5541 + type: MountainRock + components: + - pos: 149.5,-15.5 + parent: 0 + type: Transform +- uid: 5542 + type: MountainRock + components: + - pos: 149.5,-16.5 + parent: 0 + type: Transform +- uid: 5543 + type: MountainRock + components: + - pos: 149.5,-17.5 + parent: 0 + type: Transform +- uid: 5544 + type: MountainRock + components: + - pos: 149.5,-18.5 + parent: 0 + type: Transform +- uid: 5545 + type: MountainRock + components: + - pos: 149.5,-19.5 + parent: 0 + type: Transform +- uid: 5546 + type: MountainRock + components: + - pos: 149.5,-20.5 + parent: 0 + type: Transform +- uid: 5547 + type: MountainRock + components: + - pos: 149.5,-21.5 + parent: 0 + type: Transform +- uid: 5548 + type: MountainRock + components: + - pos: 149.5,-22.5 + parent: 0 + type: Transform +- uid: 5549 + type: MountainRock + components: + - pos: 149.5,-23.5 + parent: 0 + type: Transform +- uid: 5550 + type: MountainRock + components: + - pos: 149.5,-24.5 + parent: 0 + type: Transform +- uid: 5551 + type: MountainRock + components: + - pos: 149.5,-25.5 + parent: 0 + type: Transform +- uid: 5552 + type: MountainRock + components: + - pos: 149.5,-26.5 + parent: 0 + type: Transform +- uid: 5553 + type: MountainRock + components: + - pos: 149.5,-27.5 + parent: 0 + type: Transform +- uid: 5554 + type: MountainRock + components: + - pos: 149.5,-28.5 + parent: 0 + type: Transform +- uid: 5555 + type: MountainRock + components: + - pos: 149.5,-29.5 + parent: 0 + type: Transform +- uid: 5556 + type: MountainRock + components: + - pos: 149.5,-30.5 + parent: 0 + type: Transform +- uid: 5557 + type: MountainRock + components: + - pos: 149.5,-31.5 + parent: 0 + type: Transform +- uid: 5558 + type: MountainRock + components: + - pos: 149.5,-32.5 + parent: 0 + type: Transform +- uid: 5559 + type: MountainRock + components: + - pos: 149.5,-33.5 + parent: 0 + type: Transform +- uid: 5560 + type: MountainRock + components: + - pos: 149.5,-34.5 + parent: 0 + type: Transform +- uid: 5561 + type: MountainRock + components: + - pos: 149.5,-35.5 + parent: 0 + type: Transform +- uid: 5562 + type: MountainRock + components: + - pos: 149.5,-36.5 + parent: 0 + type: Transform +- uid: 5563 + type: MountainRock + components: + - pos: 149.5,-37.5 + parent: 0 + type: Transform +- uid: 5564 + type: MountainRock + components: + - pos: 149.5,-38.5 + parent: 0 + type: Transform +- uid: 5565 + type: MountainRock + components: + - pos: 149.5,-39.5 + parent: 0 + type: Transform +- uid: 5566 + type: MountainRock + components: + - pos: 149.5,-40.5 + parent: 0 + type: Transform +- uid: 5567 + type: MountainRock + components: + - pos: 149.5,-41.5 + parent: 0 + type: Transform +- uid: 5568 + type: MountainRock + components: + - pos: 149.5,-42.5 + parent: 0 + type: Transform +- uid: 5569 + type: MountainRock + components: + - pos: 149.5,-43.5 + parent: 0 + type: Transform +- uid: 5570 + type: MountainRock + components: + - pos: 149.5,-44.5 + parent: 0 + type: Transform +- uid: 5571 + type: MountainRock + components: + - pos: 149.5,-45.5 + parent: 0 + type: Transform +- uid: 5572 + type: MountainRock + components: + - pos: 149.5,-46.5 + parent: 0 + type: Transform +- uid: 5573 + type: MountainRock + components: + - pos: 150.5,28.5 + parent: 0 + type: Transform +- uid: 5574 + type: MountainRock + components: + - pos: 150.5,27.5 + parent: 0 + type: Transform +- uid: 5575 + type: MountainRock + components: + - pos: 150.5,26.5 + parent: 0 + type: Transform +- uid: 5576 + type: MountainRock + components: + - pos: 150.5,25.5 + parent: 0 + type: Transform +- uid: 5577 + type: MountainRock + components: + - pos: 150.5,24.5 + parent: 0 + type: Transform +- uid: 5578 + type: MountainRock + components: + - pos: 150.5,23.5 + parent: 0 + type: Transform +- uid: 5579 + type: MountainRock + components: + - pos: 150.5,22.5 + parent: 0 + type: Transform +- uid: 5580 + type: MountainRock + components: + - pos: 150.5,21.5 + parent: 0 + type: Transform +- uid: 5581 + type: MountainRock + components: + - pos: 150.5,20.5 + parent: 0 + type: Transform +- uid: 5582 + type: MountainRock + components: + - pos: 150.5,19.5 + parent: 0 + type: Transform +- uid: 5583 + type: MountainRock + components: + - pos: 150.5,18.5 + parent: 0 + type: Transform +- uid: 5584 + type: MountainRock + components: + - pos: 150.5,17.5 + parent: 0 + type: Transform +- uid: 5585 + type: MountainRock + components: + - pos: 150.5,16.5 + parent: 0 + type: Transform +- uid: 5586 + type: MountainRock + components: + - pos: 150.5,15.5 + parent: 0 + type: Transform +- uid: 5587 + type: MountainRock + components: + - pos: 150.5,14.5 + parent: 0 + type: Transform +- uid: 5588 + type: MountainRock + components: + - pos: 150.5,13.5 + parent: 0 + type: Transform +- uid: 5589 + type: MountainRock + components: + - pos: 150.5,12.5 + parent: 0 + type: Transform +- uid: 5590 + type: MountainRock + components: + - pos: 150.5,11.5 + parent: 0 + type: Transform +- uid: 5591 + type: MountainRock + components: + - pos: 150.5,10.5 + parent: 0 + type: Transform +- uid: 5592 + type: MountainRock + components: + - pos: 150.5,9.5 + parent: 0 + type: Transform +- uid: 5593 + type: MountainRock + components: + - pos: 150.5,8.5 + parent: 0 + type: Transform +- uid: 5594 + type: MountainRock + components: + - pos: 150.5,7.5 + parent: 0 + type: Transform +- uid: 5595 + type: MountainRock + components: + - pos: 150.5,6.5 + parent: 0 + type: Transform +- uid: 5596 + type: MountainRock + components: + - pos: 150.5,5.5 + parent: 0 + type: Transform +- uid: 5597 + type: MountainRock + components: + - pos: 150.5,4.5 + parent: 0 + type: Transform +- uid: 5598 + type: MountainRock + components: + - pos: 150.5,3.5 + parent: 0 + type: Transform +- uid: 5599 + type: MountainRock + components: + - pos: 150.5,2.5 + parent: 0 + type: Transform +- uid: 5600 + type: MountainRock + components: + - pos: 150.5,1.5 + parent: 0 + type: Transform +- uid: 5601 + type: MountainRock + components: + - pos: 150.5,0.5 + parent: 0 + type: Transform +- uid: 5602 + type: MountainRock + components: + - pos: 150.5,-0.5 + parent: 0 + type: Transform +- uid: 5603 + type: MountainRock + components: + - pos: 150.5,-1.5 + parent: 0 + type: Transform +- uid: 5604 + type: MountainRock + components: + - pos: 150.5,-2.5 + parent: 0 + type: Transform +- uid: 5605 + type: MountainRock + components: + - pos: 150.5,-3.5 + parent: 0 + type: Transform +- uid: 5606 + type: MountainRock + components: + - pos: 150.5,-4.5 + parent: 0 + type: Transform +- uid: 5607 + type: MountainRock + components: + - pos: 150.5,-5.5 + parent: 0 + type: Transform +- uid: 5608 + type: MountainRock + components: + - pos: 150.5,-6.5 + parent: 0 + type: Transform +- uid: 5609 + type: MountainRock + components: + - pos: 150.5,-7.5 + parent: 0 + type: Transform +- uid: 5610 + type: MountainRock + components: + - pos: 150.5,-8.5 + parent: 0 + type: Transform +- uid: 5611 + type: MountainRock + components: + - pos: 150.5,-9.5 + parent: 0 + type: Transform +- uid: 5612 + type: MountainRock + components: + - pos: 150.5,-10.5 + parent: 0 + type: Transform +- uid: 5613 + type: MountainRock + components: + - pos: 150.5,-11.5 + parent: 0 + type: Transform +- uid: 5614 + type: MountainRock + components: + - pos: 150.5,-12.5 + parent: 0 + type: Transform +- uid: 5615 + type: MountainRock + components: + - pos: 150.5,-13.5 + parent: 0 + type: Transform +- uid: 5616 + type: MountainRock + components: + - pos: 150.5,-14.5 + parent: 0 + type: Transform +- uid: 5617 + type: MountainRock + components: + - pos: 150.5,-15.5 + parent: 0 + type: Transform +- uid: 5618 + type: MountainRock + components: + - pos: 150.5,-16.5 + parent: 0 + type: Transform +- uid: 5619 + type: MountainRock + components: + - pos: 150.5,-17.5 + parent: 0 + type: Transform +- uid: 5620 + type: MountainRock + components: + - pos: 150.5,-18.5 + parent: 0 + type: Transform +- uid: 5621 + type: MountainRock + components: + - pos: 150.5,-19.5 + parent: 0 + type: Transform +- uid: 5622 + type: MountainRock + components: + - pos: 150.5,-20.5 + parent: 0 + type: Transform +- uid: 5623 + type: MountainRock + components: + - pos: 150.5,-21.5 + parent: 0 + type: Transform +- uid: 5624 + type: MountainRock + components: + - pos: 150.5,-22.5 + parent: 0 + type: Transform +- uid: 5625 + type: MountainRock + components: + - pos: 150.5,-23.5 + parent: 0 + type: Transform +- uid: 5626 + type: MountainRock + components: + - pos: 150.5,-24.5 + parent: 0 + type: Transform +- uid: 5627 + type: MountainRock + components: + - pos: 150.5,-25.5 + parent: 0 + type: Transform +- uid: 5628 + type: MountainRock + components: + - pos: 150.5,-26.5 + parent: 0 + type: Transform +- uid: 5629 + type: MountainRock + components: + - pos: 150.5,-27.5 + parent: 0 + type: Transform +- uid: 5630 + type: MountainRock + components: + - pos: 150.5,-28.5 + parent: 0 + type: Transform +- uid: 5631 + type: MountainRock + components: + - pos: 150.5,-29.5 + parent: 0 + type: Transform +- uid: 5632 + type: MountainRock + components: + - pos: 150.5,-30.5 + parent: 0 + type: Transform +- uid: 5633 + type: MountainRock + components: + - pos: 150.5,-31.5 + parent: 0 + type: Transform +- uid: 5634 + type: MountainRock + components: + - pos: 150.5,-32.5 + parent: 0 + type: Transform +- uid: 5635 + type: MountainRock + components: + - pos: 150.5,-33.5 + parent: 0 + type: Transform +- uid: 5636 + type: MountainRock + components: + - pos: 150.5,-34.5 + parent: 0 + type: Transform +- uid: 5637 + type: MountainRock + components: + - pos: 150.5,-35.5 + parent: 0 + type: Transform +- uid: 5638 + type: MountainRock + components: + - pos: 150.5,-36.5 + parent: 0 + type: Transform +- uid: 5639 + type: MountainRock + components: + - pos: 150.5,-37.5 + parent: 0 + type: Transform +- uid: 5640 + type: MountainRock + components: + - pos: 150.5,-38.5 + parent: 0 + type: Transform +- uid: 5641 + type: MountainRock + components: + - pos: 150.5,-39.5 + parent: 0 + type: Transform +- uid: 5642 + type: MountainRock + components: + - pos: 150.5,-40.5 + parent: 0 + type: Transform +- uid: 5643 + type: MountainRock + components: + - pos: 150.5,-41.5 + parent: 0 + type: Transform +- uid: 5644 + type: MountainRock + components: + - pos: 150.5,-42.5 + parent: 0 + type: Transform +- uid: 5645 + type: MountainRock + components: + - pos: 150.5,-43.5 + parent: 0 + type: Transform +- uid: 5646 + type: MountainRock + components: + - pos: 150.5,-44.5 + parent: 0 + type: Transform +- uid: 5647 + type: MountainRock + components: + - pos: 150.5,-45.5 + parent: 0 + type: Transform +- uid: 5648 + type: MountainRock + components: + - pos: 150.5,-46.5 + parent: 0 + type: Transform +- uid: 5649 + type: MountainRock + components: + - pos: 151.5,28.5 + parent: 0 + type: Transform +- uid: 5650 + type: MountainRock + components: + - pos: 151.5,27.5 + parent: 0 + type: Transform +- uid: 5651 + type: MountainRock + components: + - pos: 151.5,26.5 + parent: 0 + type: Transform +- uid: 5652 + type: MountainRock + components: + - pos: 151.5,25.5 + parent: 0 + type: Transform +- uid: 5653 + type: MountainRock + components: + - pos: 151.5,24.5 + parent: 0 + type: Transform +- uid: 5654 + type: MountainRock + components: + - pos: 151.5,23.5 + parent: 0 + type: Transform +- uid: 5655 + type: MountainRock + components: + - pos: 151.5,22.5 + parent: 0 + type: Transform +- uid: 5656 + type: MountainRock + components: + - pos: 151.5,21.5 + parent: 0 + type: Transform +- uid: 5657 + type: MountainRock + components: + - pos: 151.5,20.5 + parent: 0 + type: Transform +- uid: 5658 + type: MountainRock + components: + - pos: 151.5,19.5 + parent: 0 + type: Transform +- uid: 5659 + type: MountainRock + components: + - pos: 151.5,18.5 + parent: 0 + type: Transform +- uid: 5660 + type: MountainRock + components: + - pos: 151.5,17.5 + parent: 0 + type: Transform +- uid: 5661 + type: MountainRock + components: + - pos: 151.5,16.5 + parent: 0 + type: Transform +- uid: 5662 + type: MountainRock + components: + - pos: 151.5,15.5 + parent: 0 + type: Transform +- uid: 5663 + type: MountainRock + components: + - pos: 151.5,14.5 + parent: 0 + type: Transform +- uid: 5664 + type: MountainRock + components: + - pos: 151.5,13.5 + parent: 0 + type: Transform +- uid: 5665 + type: MountainRock + components: + - pos: 151.5,12.5 + parent: 0 + type: Transform +- uid: 5666 + type: MountainRock + components: + - pos: 151.5,11.5 + parent: 0 + type: Transform +- uid: 5667 + type: MountainRock + components: + - pos: 151.5,10.5 + parent: 0 + type: Transform +- uid: 5668 + type: MountainRock + components: + - pos: 151.5,9.5 + parent: 0 + type: Transform +- uid: 5669 + type: MountainRock + components: + - pos: 151.5,8.5 + parent: 0 + type: Transform +- uid: 5670 + type: MountainRock + components: + - pos: 151.5,7.5 + parent: 0 + type: Transform +- uid: 5671 + type: MountainRock + components: + - pos: 151.5,6.5 + parent: 0 + type: Transform +- uid: 5672 + type: MountainRock + components: + - pos: 151.5,5.5 + parent: 0 + type: Transform +- uid: 5673 + type: MountainRock + components: + - pos: 151.5,4.5 + parent: 0 + type: Transform +- uid: 5674 + type: MountainRock + components: + - pos: 151.5,3.5 + parent: 0 + type: Transform +- uid: 5675 + type: MountainRock + components: + - pos: 151.5,2.5 + parent: 0 + type: Transform +- uid: 5676 + type: MountainRock + components: + - pos: 151.5,1.5 + parent: 0 + type: Transform +- uid: 5677 + type: MountainRock + components: + - pos: 151.5,0.5 + parent: 0 + type: Transform +- uid: 5678 + type: MountainRock + components: + - pos: 151.5,-0.5 + parent: 0 + type: Transform +- uid: 5679 + type: MountainRock + components: + - pos: 151.5,-1.5 + parent: 0 + type: Transform +- uid: 5680 + type: MountainRock + components: + - pos: 151.5,-2.5 + parent: 0 + type: Transform +- uid: 5681 + type: MountainRock + components: + - pos: 151.5,-3.5 + parent: 0 + type: Transform +- uid: 5682 + type: MountainRock + components: + - pos: 151.5,-4.5 + parent: 0 + type: Transform +- uid: 5683 + type: MountainRock + components: + - pos: 151.5,-5.5 + parent: 0 + type: Transform +- uid: 5684 + type: MountainRock + components: + - pos: 151.5,-6.5 + parent: 0 + type: Transform +- uid: 5685 + type: MountainRock + components: + - pos: 151.5,-7.5 + parent: 0 + type: Transform +- uid: 5686 + type: MountainRock + components: + - pos: 151.5,-8.5 + parent: 0 + type: Transform +- uid: 5687 + type: MountainRock + components: + - pos: 151.5,-9.5 + parent: 0 + type: Transform +- uid: 5688 + type: MountainRock + components: + - pos: 151.5,-10.5 + parent: 0 + type: Transform +- uid: 5689 + type: MountainRock + components: + - pos: 151.5,-11.5 + parent: 0 + type: Transform +- uid: 5690 + type: MountainRock + components: + - pos: 151.5,-12.5 + parent: 0 + type: Transform +- uid: 5691 + type: MountainRock + components: + - pos: 151.5,-13.5 + parent: 0 + type: Transform +- uid: 5692 + type: MountainRock + components: + - pos: 151.5,-14.5 + parent: 0 + type: Transform +- uid: 5693 + type: MountainRock + components: + - pos: 151.5,-15.5 + parent: 0 + type: Transform +- uid: 5694 + type: MountainRock + components: + - pos: 151.5,-16.5 + parent: 0 + type: Transform +- uid: 5695 + type: MountainRock + components: + - pos: 151.5,-17.5 + parent: 0 + type: Transform +- uid: 5696 + type: MountainRock + components: + - pos: 151.5,-18.5 + parent: 0 + type: Transform +- uid: 5697 + type: MountainRock + components: + - pos: 151.5,-19.5 + parent: 0 + type: Transform +- uid: 5698 + type: MountainRock + components: + - pos: 151.5,-20.5 + parent: 0 + type: Transform +- uid: 5699 + type: MountainRock + components: + - pos: 151.5,-21.5 + parent: 0 + type: Transform +- uid: 5700 + type: MountainRock + components: + - pos: 151.5,-22.5 + parent: 0 + type: Transform +- uid: 5701 + type: MountainRock + components: + - pos: 151.5,-23.5 + parent: 0 + type: Transform +- uid: 5702 + type: MountainRock + components: + - pos: 151.5,-24.5 + parent: 0 + type: Transform +- uid: 5703 + type: MountainRock + components: + - pos: 151.5,-25.5 + parent: 0 + type: Transform +- uid: 5704 + type: MountainRock + components: + - pos: 151.5,-26.5 + parent: 0 + type: Transform +- uid: 5705 + type: MountainRock + components: + - pos: 151.5,-27.5 + parent: 0 + type: Transform +- uid: 5706 + type: MountainRock + components: + - pos: 151.5,-28.5 + parent: 0 + type: Transform +- uid: 5707 + type: MountainRock + components: + - pos: 151.5,-29.5 + parent: 0 + type: Transform +- uid: 5708 + type: MountainRock + components: + - pos: 151.5,-30.5 + parent: 0 + type: Transform +- uid: 5709 + type: MountainRock + components: + - pos: 151.5,-31.5 + parent: 0 + type: Transform +- uid: 5710 + type: MountainRock + components: + - pos: 151.5,-32.5 + parent: 0 + type: Transform +- uid: 5711 + type: MountainRock + components: + - pos: 151.5,-33.5 + parent: 0 + type: Transform +- uid: 5712 + type: MountainRock + components: + - pos: 151.5,-34.5 + parent: 0 + type: Transform +- uid: 5713 + type: MountainRock + components: + - pos: 151.5,-35.5 + parent: 0 + type: Transform +- uid: 5714 + type: MountainRock + components: + - pos: 151.5,-36.5 + parent: 0 + type: Transform +- uid: 5715 + type: MountainRock + components: + - pos: 151.5,-37.5 + parent: 0 + type: Transform +- uid: 5716 + type: MountainRock + components: + - pos: 151.5,-38.5 + parent: 0 + type: Transform +- uid: 5717 + type: MountainRock + components: + - pos: 151.5,-39.5 + parent: 0 + type: Transform +- uid: 5718 + type: MountainRock + components: + - pos: 151.5,-40.5 + parent: 0 + type: Transform +- uid: 5719 + type: MountainRock + components: + - pos: 151.5,-41.5 + parent: 0 + type: Transform +- uid: 5720 + type: MountainRock + components: + - pos: 151.5,-42.5 + parent: 0 + type: Transform +- uid: 5721 + type: MountainRock + components: + - pos: 151.5,-43.5 + parent: 0 + type: Transform +- uid: 5722 + type: MountainRock + components: + - pos: 151.5,-44.5 + parent: 0 + type: Transform +- uid: 5723 + type: MountainRock + components: + - pos: 151.5,-45.5 + parent: 0 + type: Transform +- uid: 5724 + type: MountainRock + components: + - pos: 151.5,-46.5 + parent: 0 + type: Transform +- uid: 5725 + type: MountainRock + components: + - pos: 152.5,28.5 + parent: 0 + type: Transform +- uid: 5726 + type: MountainRock + components: + - pos: 152.5,27.5 + parent: 0 + type: Transform +- uid: 5727 + type: MountainRock + components: + - pos: 152.5,26.5 + parent: 0 + type: Transform +- uid: 5728 + type: MountainRock + components: + - pos: 152.5,25.5 + parent: 0 + type: Transform +- uid: 5729 + type: MountainRock + components: + - pos: 152.5,24.5 + parent: 0 + type: Transform +- uid: 5730 + type: MountainRock + components: + - pos: 152.5,23.5 + parent: 0 + type: Transform +- uid: 5731 + type: MountainRock + components: + - pos: 152.5,22.5 + parent: 0 + type: Transform +- uid: 5732 + type: MountainRock + components: + - pos: 152.5,21.5 + parent: 0 + type: Transform +- uid: 5733 + type: MountainRock + components: + - pos: 152.5,20.5 + parent: 0 + type: Transform +- uid: 5734 + type: MountainRock + components: + - pos: 152.5,19.5 + parent: 0 + type: Transform +- uid: 5735 + type: MountainRock + components: + - pos: 152.5,18.5 + parent: 0 + type: Transform +- uid: 5736 + type: MountainRock + components: + - pos: 152.5,17.5 + parent: 0 + type: Transform +- uid: 5737 + type: MountainRock + components: + - pos: 152.5,16.5 + parent: 0 + type: Transform +- uid: 5738 + type: MountainRock + components: + - pos: 152.5,15.5 + parent: 0 + type: Transform +- uid: 5739 + type: MountainRock + components: + - pos: 152.5,14.5 + parent: 0 + type: Transform +- uid: 5740 + type: MountainRock + components: + - pos: 152.5,13.5 + parent: 0 + type: Transform +- uid: 5741 + type: MountainRock + components: + - pos: 152.5,12.5 + parent: 0 + type: Transform +- uid: 5742 + type: MountainRock + components: + - pos: 152.5,11.5 + parent: 0 + type: Transform +- uid: 5743 + type: MountainRock + components: + - pos: 152.5,10.5 + parent: 0 + type: Transform +- uid: 5744 + type: MountainRock + components: + - pos: 152.5,9.5 + parent: 0 + type: Transform +- uid: 5745 + type: MountainRock + components: + - pos: 152.5,8.5 + parent: 0 + type: Transform +- uid: 5746 + type: MountainRock + components: + - pos: 152.5,7.5 + parent: 0 + type: Transform +- uid: 5747 + type: MountainRock + components: + - pos: 152.5,6.5 + parent: 0 + type: Transform +- uid: 5748 + type: MountainRock + components: + - pos: 152.5,5.5 + parent: 0 + type: Transform +- uid: 5749 + type: MountainRock + components: + - pos: 152.5,4.5 + parent: 0 + type: Transform +- uid: 5750 + type: MountainRock + components: + - pos: 152.5,3.5 + parent: 0 + type: Transform +- uid: 5751 + type: MountainRock + components: + - pos: 152.5,2.5 + parent: 0 + type: Transform +- uid: 5752 + type: MountainRock + components: + - pos: 152.5,1.5 + parent: 0 + type: Transform +- uid: 5753 + type: MountainRock + components: + - pos: 152.5,0.5 + parent: 0 + type: Transform +- uid: 5754 + type: MountainRock + components: + - pos: 152.5,-0.5 + parent: 0 + type: Transform +- uid: 5755 + type: MountainRock + components: + - pos: 152.5,-1.5 + parent: 0 + type: Transform +- uid: 5756 + type: MountainRock + components: + - pos: 152.5,-2.5 + parent: 0 + type: Transform +- uid: 5757 + type: MountainRock + components: + - pos: 152.5,-3.5 + parent: 0 + type: Transform +- uid: 5758 + type: MountainRock + components: + - pos: 152.5,-4.5 + parent: 0 + type: Transform +- uid: 5759 + type: MountainRock + components: + - pos: 152.5,-5.5 + parent: 0 + type: Transform +- uid: 5760 + type: MountainRock + components: + - pos: 152.5,-6.5 + parent: 0 + type: Transform +- uid: 5761 + type: MountainRock + components: + - pos: 152.5,-7.5 + parent: 0 + type: Transform +- uid: 5762 + type: MountainRock + components: + - pos: 152.5,-8.5 + parent: 0 + type: Transform +- uid: 5763 + type: MountainRock + components: + - pos: 152.5,-9.5 + parent: 0 + type: Transform +- uid: 5764 + type: MountainRock + components: + - pos: 152.5,-10.5 + parent: 0 + type: Transform +- uid: 5765 + type: MountainRock + components: + - pos: 152.5,-11.5 + parent: 0 + type: Transform +- uid: 5766 + type: MountainRock + components: + - pos: 152.5,-12.5 + parent: 0 + type: Transform +- uid: 5767 + type: MountainRock + components: + - pos: 152.5,-13.5 + parent: 0 + type: Transform +- uid: 5768 + type: MountainRock + components: + - pos: 152.5,-14.5 + parent: 0 + type: Transform +- uid: 5769 + type: MountainRock + components: + - pos: 152.5,-15.5 + parent: 0 + type: Transform +- uid: 5770 + type: MountainRock + components: + - pos: 152.5,-16.5 + parent: 0 + type: Transform +- uid: 5771 + type: MountainRock + components: + - pos: 152.5,-17.5 + parent: 0 + type: Transform +- uid: 5772 + type: MountainRock + components: + - pos: 152.5,-18.5 + parent: 0 + type: Transform +- uid: 5773 + type: MountainRock + components: + - pos: 152.5,-19.5 + parent: 0 + type: Transform +- uid: 5774 + type: MountainRock + components: + - pos: 152.5,-20.5 + parent: 0 + type: Transform +- uid: 5775 + type: MountainRock + components: + - pos: 152.5,-21.5 + parent: 0 + type: Transform +- uid: 5776 + type: MountainRock + components: + - pos: 152.5,-22.5 + parent: 0 + type: Transform +- uid: 5777 + type: MountainRock + components: + - pos: 152.5,-23.5 + parent: 0 + type: Transform +- uid: 5778 + type: MountainRock + components: + - pos: 152.5,-24.5 + parent: 0 + type: Transform +- uid: 5779 + type: MountainRock + components: + - pos: 152.5,-25.5 + parent: 0 + type: Transform +- uid: 5780 + type: MountainRock + components: + - pos: 152.5,-26.5 + parent: 0 + type: Transform +- uid: 5781 + type: MountainRock + components: + - pos: 152.5,-27.5 + parent: 0 + type: Transform +- uid: 5782 + type: MountainRock + components: + - pos: 152.5,-28.5 + parent: 0 + type: Transform +- uid: 5783 + type: MountainRock + components: + - pos: 152.5,-29.5 + parent: 0 + type: Transform +- uid: 5784 + type: MountainRock + components: + - pos: 152.5,-30.5 + parent: 0 + type: Transform +- uid: 5785 + type: MountainRock + components: + - pos: 152.5,-31.5 + parent: 0 + type: Transform +- uid: 5786 + type: MountainRock + components: + - pos: 152.5,-32.5 + parent: 0 + type: Transform +- uid: 5787 + type: MountainRock + components: + - pos: 152.5,-33.5 + parent: 0 + type: Transform +- uid: 5788 + type: MountainRock + components: + - pos: 152.5,-34.5 + parent: 0 + type: Transform +- uid: 5789 + type: MountainRock + components: + - pos: 152.5,-35.5 + parent: 0 + type: Transform +- uid: 5790 + type: MountainRock + components: + - pos: 152.5,-36.5 + parent: 0 + type: Transform +- uid: 5791 + type: MountainRock + components: + - pos: 152.5,-37.5 + parent: 0 + type: Transform +- uid: 5792 + type: MountainRock + components: + - pos: 152.5,-38.5 + parent: 0 + type: Transform +- uid: 5793 + type: MountainRock + components: + - pos: 152.5,-39.5 + parent: 0 + type: Transform +- uid: 5794 + type: MountainRock + components: + - pos: 152.5,-40.5 + parent: 0 + type: Transform +- uid: 5795 + type: MountainRock + components: + - pos: 152.5,-41.5 + parent: 0 + type: Transform +- uid: 5796 + type: MountainRock + components: + - pos: 152.5,-42.5 + parent: 0 + type: Transform +- uid: 5797 + type: MountainRock + components: + - pos: 152.5,-43.5 + parent: 0 + type: Transform +- uid: 5798 + type: MountainRock + components: + - pos: 152.5,-44.5 + parent: 0 + type: Transform +- uid: 5799 + type: MountainRock + components: + - pos: 152.5,-45.5 + parent: 0 + type: Transform +- uid: 5800 + type: MountainRock + components: + - pos: 152.5,-46.5 + parent: 0 + type: Transform +- uid: 5801 + type: MountainRock + components: + - pos: 153.5,28.5 + parent: 0 + type: Transform +- uid: 5802 + type: MountainRock + components: + - pos: 153.5,27.5 + parent: 0 + type: Transform +- uid: 5803 + type: MountainRock + components: + - pos: 153.5,26.5 + parent: 0 + type: Transform +- uid: 5804 + type: MountainRock + components: + - pos: 153.5,25.5 + parent: 0 + type: Transform +- uid: 5805 + type: MountainRock + components: + - pos: 153.5,24.5 + parent: 0 + type: Transform +- uid: 5806 + type: MountainRock + components: + - pos: 153.5,23.5 + parent: 0 + type: Transform +- uid: 5807 + type: MountainRock + components: + - pos: 153.5,22.5 + parent: 0 + type: Transform +- uid: 5808 + type: MountainRock + components: + - pos: 153.5,21.5 + parent: 0 + type: Transform +- uid: 5809 + type: MountainRock + components: + - pos: 153.5,20.5 + parent: 0 + type: Transform +- uid: 5810 + type: MountainRock + components: + - pos: 153.5,19.5 + parent: 0 + type: Transform +- uid: 5811 + type: MountainRock + components: + - pos: 153.5,18.5 + parent: 0 + type: Transform +- uid: 5812 + type: MountainRock + components: + - pos: 153.5,17.5 + parent: 0 + type: Transform +- uid: 5813 + type: MountainRock + components: + - pos: 153.5,16.5 + parent: 0 + type: Transform +- uid: 5814 + type: MountainRock + components: + - pos: 153.5,15.5 + parent: 0 + type: Transform +- uid: 5815 + type: MountainRock + components: + - pos: 153.5,14.5 + parent: 0 + type: Transform +- uid: 5816 + type: MountainRock + components: + - pos: 153.5,13.5 + parent: 0 + type: Transform +- uid: 5817 + type: MountainRock + components: + - pos: 153.5,12.5 + parent: 0 + type: Transform +- uid: 5818 + type: MountainRock + components: + - pos: 153.5,11.5 + parent: 0 + type: Transform +- uid: 5819 + type: MountainRock + components: + - pos: 153.5,10.5 + parent: 0 + type: Transform +- uid: 5820 + type: MountainRock + components: + - pos: 153.5,9.5 + parent: 0 + type: Transform +- uid: 5821 + type: MountainRock + components: + - pos: 153.5,8.5 + parent: 0 + type: Transform +- uid: 5822 + type: MountainRock + components: + - pos: 153.5,7.5 + parent: 0 + type: Transform +- uid: 5823 + type: MountainRock + components: + - pos: 153.5,6.5 + parent: 0 + type: Transform +- uid: 5824 + type: MountainRock + components: + - pos: 153.5,5.5 + parent: 0 + type: Transform +- uid: 5825 + type: MountainRock + components: + - pos: 153.5,4.5 + parent: 0 + type: Transform +- uid: 5826 + type: MountainRock + components: + - pos: 153.5,3.5 + parent: 0 + type: Transform +- uid: 5827 + type: MountainRock + components: + - pos: 153.5,2.5 + parent: 0 + type: Transform +- uid: 5828 + type: MountainRock + components: + - pos: 153.5,1.5 + parent: 0 + type: Transform +- uid: 5829 + type: MountainRock + components: + - pos: 153.5,0.5 + parent: 0 + type: Transform +- uid: 5830 + type: MountainRock + components: + - pos: 153.5,-0.5 + parent: 0 + type: Transform +- uid: 5831 + type: MountainRock + components: + - pos: 153.5,-1.5 + parent: 0 + type: Transform +- uid: 5832 + type: MountainRock + components: + - pos: 153.5,-2.5 + parent: 0 + type: Transform +- uid: 5833 + type: MountainRock + components: + - pos: 153.5,-3.5 + parent: 0 + type: Transform +- uid: 5834 + type: MountainRock + components: + - pos: 153.5,-4.5 + parent: 0 + type: Transform +- uid: 5835 + type: MountainRock + components: + - pos: 153.5,-5.5 + parent: 0 + type: Transform +- uid: 5836 + type: MountainRock + components: + - pos: 153.5,-6.5 + parent: 0 + type: Transform +- uid: 5837 + type: MountainRock + components: + - pos: 153.5,-7.5 + parent: 0 + type: Transform +- uid: 5838 + type: MountainRock + components: + - pos: 153.5,-8.5 + parent: 0 + type: Transform +- uid: 5839 + type: MountainRock + components: + - pos: 153.5,-9.5 + parent: 0 + type: Transform +- uid: 5840 + type: MountainRock + components: + - pos: 153.5,-10.5 + parent: 0 + type: Transform +- uid: 5841 + type: MountainRock + components: + - pos: 153.5,-11.5 + parent: 0 + type: Transform +- uid: 5842 + type: MountainRock + components: + - pos: 153.5,-12.5 + parent: 0 + type: Transform +- uid: 5843 + type: MountainRock + components: + - pos: 153.5,-13.5 + parent: 0 + type: Transform +- uid: 5844 + type: MountainRock + components: + - pos: 153.5,-14.5 + parent: 0 + type: Transform +- uid: 5845 + type: MountainRock + components: + - pos: 153.5,-15.5 + parent: 0 + type: Transform +- uid: 5846 + type: MountainRock + components: + - pos: 153.5,-16.5 + parent: 0 + type: Transform +- uid: 5847 + type: MountainRock + components: + - pos: 153.5,-17.5 + parent: 0 + type: Transform +- uid: 5848 + type: MountainRock + components: + - pos: 153.5,-18.5 + parent: 0 + type: Transform +- uid: 5849 + type: MountainRock + components: + - pos: 153.5,-19.5 + parent: 0 + type: Transform +- uid: 5850 + type: MountainRock + components: + - pos: 153.5,-20.5 + parent: 0 + type: Transform +- uid: 5851 + type: MountainRock + components: + - pos: 153.5,-21.5 + parent: 0 + type: Transform +- uid: 5852 + type: MountainRock + components: + - pos: 153.5,-22.5 + parent: 0 + type: Transform +- uid: 5853 + type: MountainRock + components: + - pos: 153.5,-23.5 + parent: 0 + type: Transform +- uid: 5854 + type: MountainRock + components: + - pos: 153.5,-24.5 + parent: 0 + type: Transform +- uid: 5855 + type: MountainRock + components: + - pos: 153.5,-25.5 + parent: 0 + type: Transform +- uid: 5856 + type: MountainRock + components: + - pos: 153.5,-26.5 + parent: 0 + type: Transform +- uid: 5857 + type: MountainRock + components: + - pos: 153.5,-27.5 + parent: 0 + type: Transform +- uid: 5858 + type: MountainRock + components: + - pos: 153.5,-28.5 + parent: 0 + type: Transform +- uid: 5859 + type: MountainRock + components: + - pos: 153.5,-29.5 + parent: 0 + type: Transform +- uid: 5860 + type: MountainRock + components: + - pos: 153.5,-30.5 + parent: 0 + type: Transform +- uid: 5861 + type: MountainRock + components: + - pos: 153.5,-31.5 + parent: 0 + type: Transform +- uid: 5862 + type: MountainRock + components: + - pos: 153.5,-32.5 + parent: 0 + type: Transform +- uid: 5863 + type: MountainRock + components: + - pos: 153.5,-33.5 + parent: 0 + type: Transform +- uid: 5864 + type: MountainRock + components: + - pos: 153.5,-34.5 + parent: 0 + type: Transform +- uid: 5865 + type: MountainRock + components: + - pos: 153.5,-35.5 + parent: 0 + type: Transform +- uid: 5866 + type: MountainRock + components: + - pos: 153.5,-36.5 + parent: 0 + type: Transform +- uid: 5867 + type: MountainRock + components: + - pos: 153.5,-37.5 + parent: 0 + type: Transform +- uid: 5868 + type: MountainRock + components: + - pos: 153.5,-38.5 + parent: 0 + type: Transform +- uid: 5869 + type: MountainRock + components: + - pos: 153.5,-39.5 + parent: 0 + type: Transform +- uid: 5870 + type: MountainRock + components: + - pos: 153.5,-40.5 + parent: 0 + type: Transform +- uid: 5871 + type: MountainRock + components: + - pos: 153.5,-41.5 + parent: 0 + type: Transform +- uid: 5872 + type: MountainRock + components: + - pos: 153.5,-42.5 + parent: 0 + type: Transform +- uid: 5873 + type: MountainRock + components: + - pos: 153.5,-43.5 + parent: 0 + type: Transform +- uid: 5874 + type: MountainRock + components: + - pos: 153.5,-44.5 + parent: 0 + type: Transform +- uid: 5875 + type: MountainRock + components: + - pos: 153.5,-45.5 + parent: 0 + type: Transform +- uid: 5876 + type: MountainRock + components: + - pos: 153.5,-46.5 + parent: 0 + type: Transform +- uid: 5877 + type: MountainRock + components: + - pos: 154.5,28.5 + parent: 0 + type: Transform +- uid: 5878 + type: MountainRock + components: + - pos: 154.5,27.5 + parent: 0 + type: Transform +- uid: 5879 + type: MountainRock + components: + - pos: 154.5,26.5 + parent: 0 + type: Transform +- uid: 5880 + type: MountainRock + components: + - pos: 154.5,25.5 + parent: 0 + type: Transform +- uid: 5881 + type: MountainRock + components: + - pos: 154.5,24.5 + parent: 0 + type: Transform +- uid: 5882 + type: MountainRock + components: + - pos: 154.5,23.5 + parent: 0 + type: Transform +- uid: 5883 + type: MountainRock + components: + - pos: 154.5,22.5 + parent: 0 + type: Transform +- uid: 5884 + type: MountainRock + components: + - pos: 154.5,21.5 + parent: 0 + type: Transform +- uid: 5885 + type: MountainRock + components: + - pos: 154.5,20.5 + parent: 0 + type: Transform +- uid: 5886 + type: MountainRock + components: + - pos: 154.5,19.5 + parent: 0 + type: Transform +- uid: 5887 + type: MountainRock + components: + - pos: 154.5,18.5 + parent: 0 + type: Transform +- uid: 5888 + type: MountainRock + components: + - pos: 154.5,17.5 + parent: 0 + type: Transform +- uid: 5889 + type: MountainRock + components: + - pos: 154.5,16.5 + parent: 0 + type: Transform +- uid: 5890 + type: MountainRock + components: + - pos: 154.5,15.5 + parent: 0 + type: Transform +- uid: 5891 + type: MountainRock + components: + - pos: 154.5,14.5 + parent: 0 + type: Transform +- uid: 5892 + type: MountainRock + components: + - pos: 154.5,13.5 + parent: 0 + type: Transform +- uid: 5893 + type: MountainRock + components: + - pos: 154.5,12.5 + parent: 0 + type: Transform +- uid: 5894 + type: MountainRock + components: + - pos: 154.5,11.5 + parent: 0 + type: Transform +- uid: 5895 + type: MountainRock + components: + - pos: 154.5,10.5 + parent: 0 + type: Transform +- uid: 5896 + type: MountainRock + components: + - pos: 154.5,9.5 + parent: 0 + type: Transform +- uid: 5897 + type: MountainRock + components: + - pos: 154.5,8.5 + parent: 0 + type: Transform +- uid: 5898 + type: MountainRock + components: + - pos: 154.5,7.5 + parent: 0 + type: Transform +- uid: 5899 + type: MountainRock + components: + - pos: 154.5,6.5 + parent: 0 + type: Transform +- uid: 5900 + type: MountainRock + components: + - pos: 154.5,5.5 + parent: 0 + type: Transform +- uid: 5901 + type: MountainRock + components: + - pos: 154.5,4.5 + parent: 0 + type: Transform +- uid: 5902 + type: MountainRock + components: + - pos: 154.5,3.5 + parent: 0 + type: Transform +- uid: 5903 + type: MountainRock + components: + - pos: 154.5,2.5 + parent: 0 + type: Transform +- uid: 5904 + type: MountainRock + components: + - pos: 154.5,1.5 + parent: 0 + type: Transform +- uid: 5905 + type: MountainRock + components: + - pos: 154.5,0.5 + parent: 0 + type: Transform +- uid: 5906 + type: MountainRock + components: + - pos: 154.5,-0.5 + parent: 0 + type: Transform +- uid: 5907 + type: MountainRock + components: + - pos: 154.5,-1.5 + parent: 0 + type: Transform +- uid: 5908 + type: MountainRock + components: + - pos: 154.5,-2.5 + parent: 0 + type: Transform +- uid: 5909 + type: MountainRock + components: + - pos: 154.5,-3.5 + parent: 0 + type: Transform +- uid: 5910 + type: MountainRock + components: + - pos: 154.5,-4.5 + parent: 0 + type: Transform +- uid: 5911 + type: MountainRock + components: + - pos: 154.5,-5.5 + parent: 0 + type: Transform +- uid: 5912 + type: MountainRock + components: + - pos: 154.5,-6.5 + parent: 0 + type: Transform +- uid: 5913 + type: MountainRock + components: + - pos: 154.5,-7.5 + parent: 0 + type: Transform +- uid: 5914 + type: MountainRock + components: + - pos: 154.5,-8.5 + parent: 0 + type: Transform +- uid: 5915 + type: MountainRock + components: + - pos: 154.5,-9.5 + parent: 0 + type: Transform +- uid: 5916 + type: MountainRock + components: + - pos: 154.5,-10.5 + parent: 0 + type: Transform +- uid: 5917 + type: MountainRock + components: + - pos: 154.5,-11.5 + parent: 0 + type: Transform +- uid: 5918 + type: MountainRock + components: + - pos: 154.5,-12.5 + parent: 0 + type: Transform +- uid: 5919 + type: MountainRock + components: + - pos: 154.5,-13.5 + parent: 0 + type: Transform +- uid: 5920 + type: MountainRock + components: + - pos: 154.5,-14.5 + parent: 0 + type: Transform +- uid: 5921 + type: MountainRock + components: + - pos: 154.5,-15.5 + parent: 0 + type: Transform +- uid: 5922 + type: MountainRock + components: + - pos: 154.5,-16.5 + parent: 0 + type: Transform +- uid: 5923 + type: MountainRock + components: + - pos: 154.5,-17.5 + parent: 0 + type: Transform +- uid: 5924 + type: MountainRock + components: + - pos: 154.5,-18.5 + parent: 0 + type: Transform +- uid: 5925 + type: MountainRock + components: + - pos: 154.5,-19.5 + parent: 0 + type: Transform +- uid: 5926 + type: MountainRock + components: + - pos: 154.5,-20.5 + parent: 0 + type: Transform +- uid: 5927 + type: MountainRock + components: + - pos: 154.5,-21.5 + parent: 0 + type: Transform +- uid: 5928 + type: MountainRock + components: + - pos: 154.5,-22.5 + parent: 0 + type: Transform +- uid: 5929 + type: MountainRock + components: + - pos: 154.5,-23.5 + parent: 0 + type: Transform +- uid: 5930 + type: MountainRock + components: + - pos: 154.5,-24.5 + parent: 0 + type: Transform +- uid: 5931 + type: MountainRock + components: + - pos: 154.5,-25.5 + parent: 0 + type: Transform +- uid: 5932 + type: MountainRock + components: + - pos: 154.5,-26.5 + parent: 0 + type: Transform +- uid: 5933 + type: MountainRock + components: + - pos: 154.5,-27.5 + parent: 0 + type: Transform +- uid: 5934 + type: MountainRock + components: + - pos: 154.5,-28.5 + parent: 0 + type: Transform +- uid: 5935 + type: MountainRock + components: + - pos: 154.5,-29.5 + parent: 0 + type: Transform +- uid: 5936 + type: MountainRock + components: + - pos: 154.5,-30.5 + parent: 0 + type: Transform +- uid: 5937 + type: MountainRock + components: + - pos: 154.5,-31.5 + parent: 0 + type: Transform +- uid: 5938 + type: MountainRock + components: + - pos: 154.5,-32.5 + parent: 0 + type: Transform +- uid: 5939 + type: MountainRock + components: + - pos: 154.5,-33.5 + parent: 0 + type: Transform +- uid: 5940 + type: MountainRock + components: + - pos: 154.5,-34.5 + parent: 0 + type: Transform +- uid: 5941 + type: MountainRock + components: + - pos: 154.5,-35.5 + parent: 0 + type: Transform +- uid: 5942 + type: MountainRock + components: + - pos: 154.5,-36.5 + parent: 0 + type: Transform +- uid: 5943 + type: MountainRock + components: + - pos: 154.5,-37.5 + parent: 0 + type: Transform +- uid: 5944 + type: MountainRock + components: + - pos: 154.5,-38.5 + parent: 0 + type: Transform +- uid: 5945 + type: MountainRock + components: + - pos: 154.5,-39.5 + parent: 0 + type: Transform +- uid: 5946 + type: MountainRock + components: + - pos: 154.5,-40.5 + parent: 0 + type: Transform +- uid: 5947 + type: MountainRock + components: + - pos: 154.5,-41.5 + parent: 0 + type: Transform +- uid: 5948 + type: MountainRock + components: + - pos: 154.5,-42.5 + parent: 0 + type: Transform +- uid: 5949 + type: MountainRock + components: + - pos: 154.5,-43.5 + parent: 0 + type: Transform +- uid: 5950 + type: MountainRock + components: + - pos: 154.5,-44.5 + parent: 0 + type: Transform +- uid: 5951 + type: MountainRock + components: + - pos: 154.5,-45.5 + parent: 0 + type: Transform +- uid: 5952 + type: MountainRock + components: + - pos: 154.5,-46.5 + parent: 0 + type: Transform +- uid: 5953 + type: MountainRock + components: + - pos: 155.5,28.5 + parent: 0 + type: Transform +- uid: 5954 + type: MountainRock + components: + - pos: 155.5,27.5 + parent: 0 + type: Transform +- uid: 5955 + type: MountainRock + components: + - pos: 155.5,26.5 + parent: 0 + type: Transform +- uid: 5956 + type: MountainRock + components: + - pos: 155.5,25.5 + parent: 0 + type: Transform +- uid: 5957 + type: MountainRock + components: + - pos: 155.5,24.5 + parent: 0 + type: Transform +- uid: 5958 + type: MountainRock + components: + - pos: 155.5,23.5 + parent: 0 + type: Transform +- uid: 5959 + type: MountainRock + components: + - pos: 155.5,22.5 + parent: 0 + type: Transform +- uid: 5960 + type: MountainRock + components: + - pos: 155.5,21.5 + parent: 0 + type: Transform +- uid: 5961 + type: MountainRock + components: + - pos: 155.5,20.5 + parent: 0 + type: Transform +- uid: 5962 + type: MountainRock + components: + - pos: 155.5,19.5 + parent: 0 + type: Transform +- uid: 5963 + type: MountainRock + components: + - pos: 155.5,18.5 + parent: 0 + type: Transform +- uid: 5964 + type: MountainRock + components: + - pos: 155.5,17.5 + parent: 0 + type: Transform +- uid: 5965 + type: MountainRock + components: + - pos: 155.5,16.5 + parent: 0 + type: Transform +- uid: 5966 + type: MountainRock + components: + - pos: 155.5,15.5 + parent: 0 + type: Transform +- uid: 5967 + type: MountainRock + components: + - pos: 155.5,14.5 + parent: 0 + type: Transform +- uid: 5968 + type: MountainRock + components: + - pos: 155.5,13.5 + parent: 0 + type: Transform +- uid: 5969 + type: MountainRock + components: + - pos: 155.5,12.5 + parent: 0 + type: Transform +- uid: 5970 + type: MountainRock + components: + - pos: 155.5,11.5 + parent: 0 + type: Transform +- uid: 5971 + type: MountainRock + components: + - pos: 155.5,10.5 + parent: 0 + type: Transform +- uid: 5972 + type: MountainRock + components: + - pos: 155.5,9.5 + parent: 0 + type: Transform +- uid: 5973 + type: MountainRock + components: + - pos: 155.5,8.5 + parent: 0 + type: Transform +- uid: 5974 + type: MountainRock + components: + - pos: 155.5,7.5 + parent: 0 + type: Transform +- uid: 5975 + type: MountainRock + components: + - pos: 155.5,6.5 + parent: 0 + type: Transform +- uid: 5976 + type: MountainRock + components: + - pos: 155.5,5.5 + parent: 0 + type: Transform +- uid: 5977 + type: MountainRock + components: + - pos: 155.5,4.5 + parent: 0 + type: Transform +- uid: 5978 + type: MountainRock + components: + - pos: 155.5,3.5 + parent: 0 + type: Transform +- uid: 5979 + type: MountainRock + components: + - pos: 155.5,2.5 + parent: 0 + type: Transform +- uid: 5980 + type: MountainRock + components: + - pos: 155.5,1.5 + parent: 0 + type: Transform +- uid: 5981 + type: MountainRock + components: + - pos: 155.5,0.5 + parent: 0 + type: Transform +- uid: 5982 + type: MountainRock + components: + - pos: 155.5,-0.5 + parent: 0 + type: Transform +- uid: 5983 + type: MountainRock + components: + - pos: 155.5,-1.5 + parent: 0 + type: Transform +- uid: 5984 + type: MountainRock + components: + - pos: 155.5,-2.5 + parent: 0 + type: Transform +- uid: 5985 + type: MountainRock + components: + - pos: 155.5,-3.5 + parent: 0 + type: Transform +- uid: 5986 + type: MountainRock + components: + - pos: 155.5,-4.5 + parent: 0 + type: Transform +- uid: 5987 + type: MountainRock + components: + - pos: 155.5,-5.5 + parent: 0 + type: Transform +- uid: 5988 + type: MountainRock + components: + - pos: 155.5,-6.5 + parent: 0 + type: Transform +- uid: 5989 + type: MountainRock + components: + - pos: 155.5,-7.5 + parent: 0 + type: Transform +- uid: 5990 + type: MountainRock + components: + - pos: 155.5,-8.5 + parent: 0 + type: Transform +- uid: 5991 + type: MountainRock + components: + - pos: 155.5,-9.5 + parent: 0 + type: Transform +- uid: 5992 + type: MountainRock + components: + - pos: 155.5,-10.5 + parent: 0 + type: Transform +- uid: 5993 + type: MountainRock + components: + - pos: 155.5,-11.5 + parent: 0 + type: Transform +- uid: 5994 + type: MountainRock + components: + - pos: 155.5,-12.5 + parent: 0 + type: Transform +- uid: 5995 + type: MountainRock + components: + - pos: 155.5,-13.5 + parent: 0 + type: Transform +- uid: 5996 + type: MountainRock + components: + - pos: 155.5,-14.5 + parent: 0 + type: Transform +- uid: 5997 + type: MountainRock + components: + - pos: 155.5,-15.5 + parent: 0 + type: Transform +- uid: 5998 + type: MountainRock + components: + - pos: 155.5,-16.5 + parent: 0 + type: Transform +- uid: 5999 + type: MountainRock + components: + - pos: 155.5,-17.5 + parent: 0 + type: Transform +- uid: 6000 + type: MountainRock + components: + - pos: 155.5,-18.5 + parent: 0 + type: Transform +- uid: 6001 + type: MountainRock + components: + - pos: 155.5,-19.5 + parent: 0 + type: Transform +- uid: 6002 + type: MountainRock + components: + - pos: 155.5,-20.5 + parent: 0 + type: Transform +- uid: 6003 + type: MountainRock + components: + - pos: 155.5,-21.5 + parent: 0 + type: Transform +- uid: 6004 + type: MountainRock + components: + - pos: 155.5,-22.5 + parent: 0 + type: Transform +- uid: 6005 + type: MountainRock + components: + - pos: 155.5,-23.5 + parent: 0 + type: Transform +- uid: 6006 + type: MountainRock + components: + - pos: 155.5,-24.5 + parent: 0 + type: Transform +- uid: 6007 + type: MountainRock + components: + - pos: 155.5,-25.5 + parent: 0 + type: Transform +- uid: 6008 + type: MountainRock + components: + - pos: 155.5,-26.5 + parent: 0 + type: Transform +- uid: 6009 + type: MountainRock + components: + - pos: 155.5,-27.5 + parent: 0 + type: Transform +- uid: 6010 + type: MountainRock + components: + - pos: 155.5,-28.5 + parent: 0 + type: Transform +- uid: 6011 + type: MountainRock + components: + - pos: 155.5,-29.5 + parent: 0 + type: Transform +- uid: 6012 + type: MountainRock + components: + - pos: 155.5,-30.5 + parent: 0 + type: Transform +- uid: 6013 + type: MountainRock + components: + - pos: 155.5,-31.5 + parent: 0 + type: Transform +- uid: 6014 + type: MountainRock + components: + - pos: 155.5,-32.5 + parent: 0 + type: Transform +- uid: 6015 + type: MountainRock + components: + - pos: 155.5,-33.5 + parent: 0 + type: Transform +- uid: 6016 + type: MountainRock + components: + - pos: 155.5,-34.5 + parent: 0 + type: Transform +- uid: 6017 + type: MountainRock + components: + - pos: 155.5,-35.5 + parent: 0 + type: Transform +- uid: 6018 + type: MountainRock + components: + - pos: 155.5,-36.5 + parent: 0 + type: Transform +- uid: 6019 + type: MountainRock + components: + - pos: 155.5,-37.5 + parent: 0 + type: Transform +- uid: 6020 + type: MountainRock + components: + - pos: 155.5,-38.5 + parent: 0 + type: Transform +- uid: 6021 + type: MountainRock + components: + - pos: 155.5,-39.5 + parent: 0 + type: Transform +- uid: 6022 + type: MountainRock + components: + - pos: 155.5,-40.5 + parent: 0 + type: Transform +- uid: 6023 + type: MountainRock + components: + - pos: 155.5,-41.5 + parent: 0 + type: Transform +- uid: 6024 + type: MountainRock + components: + - pos: 155.5,-42.5 + parent: 0 + type: Transform +- uid: 6025 + type: MountainRock + components: + - pos: 155.5,-43.5 + parent: 0 + type: Transform +- uid: 6026 + type: MountainRock + components: + - pos: 155.5,-44.5 + parent: 0 + type: Transform +- uid: 6027 + type: MountainRock + components: + - pos: 155.5,-45.5 + parent: 0 + type: Transform +- uid: 6028 + type: MountainRock + components: + - pos: 155.5,-46.5 + parent: 0 + type: Transform +- uid: 6029 + type: MountainRock + components: + - pos: 156.5,28.5 + parent: 0 + type: Transform +- uid: 6030 + type: MountainRock + components: + - pos: 156.5,27.5 + parent: 0 + type: Transform +- uid: 6031 + type: MountainRock + components: + - pos: 156.5,26.5 + parent: 0 + type: Transform +- uid: 6032 + type: MountainRock + components: + - pos: 156.5,25.5 + parent: 0 + type: Transform +- uid: 6033 + type: MountainRock + components: + - pos: 156.5,24.5 + parent: 0 + type: Transform +- uid: 6034 + type: MountainRock + components: + - pos: 156.5,23.5 + parent: 0 + type: Transform +- uid: 6035 + type: MountainRock + components: + - pos: 156.5,22.5 + parent: 0 + type: Transform +- uid: 6036 + type: MountainRock + components: + - pos: 156.5,21.5 + parent: 0 + type: Transform +- uid: 6037 + type: MountainRock + components: + - pos: 156.5,20.5 + parent: 0 + type: Transform +- uid: 6038 + type: MountainRock + components: + - pos: 156.5,19.5 + parent: 0 + type: Transform +- uid: 6039 + type: MountainRock + components: + - pos: 156.5,18.5 + parent: 0 + type: Transform +- uid: 6040 + type: MountainRock + components: + - pos: 156.5,17.5 + parent: 0 + type: Transform +- uid: 6041 + type: MountainRock + components: + - pos: 156.5,16.5 + parent: 0 + type: Transform +- uid: 6042 + type: MountainRock + components: + - pos: 156.5,15.5 + parent: 0 + type: Transform +- uid: 6043 + type: MountainRock + components: + - pos: 156.5,14.5 + parent: 0 + type: Transform +- uid: 6044 + type: MountainRock + components: + - pos: 156.5,13.5 + parent: 0 + type: Transform +- uid: 6045 + type: MountainRock + components: + - pos: 156.5,12.5 + parent: 0 + type: Transform +- uid: 6046 + type: MountainRock + components: + - pos: 156.5,11.5 + parent: 0 + type: Transform +- uid: 6047 + type: MountainRock + components: + - pos: 156.5,10.5 + parent: 0 + type: Transform +- uid: 6048 + type: MountainRock + components: + - pos: 156.5,9.5 + parent: 0 + type: Transform +- uid: 6049 + type: MountainRock + components: + - pos: 156.5,8.5 + parent: 0 + type: Transform +- uid: 6050 + type: MountainRock + components: + - pos: 156.5,7.5 + parent: 0 + type: Transform +- uid: 6051 + type: MountainRock + components: + - pos: 156.5,6.5 + parent: 0 + type: Transform +- uid: 6052 + type: MountainRock + components: + - pos: 156.5,5.5 + parent: 0 + type: Transform +- uid: 6053 + type: MountainRock + components: + - pos: 156.5,4.5 + parent: 0 + type: Transform +- uid: 6054 + type: MountainRock + components: + - pos: 156.5,3.5 + parent: 0 + type: Transform +- uid: 6055 + type: MountainRock + components: + - pos: 156.5,2.5 + parent: 0 + type: Transform +- uid: 6056 + type: MountainRock + components: + - pos: 156.5,1.5 + parent: 0 + type: Transform +- uid: 6057 + type: MountainRock + components: + - pos: 156.5,0.5 + parent: 0 + type: Transform +- uid: 6058 + type: MountainRock + components: + - pos: 156.5,-0.5 + parent: 0 + type: Transform +- uid: 6059 + type: MountainRock + components: + - pos: 156.5,-1.5 + parent: 0 + type: Transform +- uid: 6060 + type: MountainRock + components: + - pos: 156.5,-2.5 + parent: 0 + type: Transform +- uid: 6061 + type: MountainRock + components: + - pos: 156.5,-3.5 + parent: 0 + type: Transform +- uid: 6062 + type: MountainRock + components: + - pos: 156.5,-4.5 + parent: 0 + type: Transform +- uid: 6063 + type: MountainRock + components: + - pos: 156.5,-5.5 + parent: 0 + type: Transform +- uid: 6064 + type: MountainRock + components: + - pos: 156.5,-6.5 + parent: 0 + type: Transform +- uid: 6065 + type: MountainRock + components: + - pos: 156.5,-7.5 + parent: 0 + type: Transform +- uid: 6066 + type: MountainRock + components: + - pos: 156.5,-8.5 + parent: 0 + type: Transform +- uid: 6067 + type: MountainRock + components: + - pos: 156.5,-9.5 + parent: 0 + type: Transform +- uid: 6068 + type: MountainRock + components: + - pos: 156.5,-10.5 + parent: 0 + type: Transform +- uid: 6069 + type: MountainRock + components: + - pos: 156.5,-11.5 + parent: 0 + type: Transform +- uid: 6070 + type: MountainRock + components: + - pos: 156.5,-12.5 + parent: 0 + type: Transform +- uid: 6071 + type: MountainRock + components: + - pos: 156.5,-13.5 + parent: 0 + type: Transform +- uid: 6072 + type: MountainRock + components: + - pos: 156.5,-14.5 + parent: 0 + type: Transform +- uid: 6073 + type: MountainRock + components: + - pos: 156.5,-15.5 + parent: 0 + type: Transform +- uid: 6074 + type: MountainRock + components: + - pos: 156.5,-16.5 + parent: 0 + type: Transform +- uid: 6075 + type: MountainRock + components: + - pos: 156.5,-17.5 + parent: 0 + type: Transform +- uid: 6076 + type: MountainRock + components: + - pos: 156.5,-18.5 + parent: 0 + type: Transform +- uid: 6077 + type: MountainRock + components: + - pos: 156.5,-19.5 + parent: 0 + type: Transform +- uid: 6078 + type: MountainRock + components: + - pos: 156.5,-20.5 + parent: 0 + type: Transform +- uid: 6079 + type: MountainRock + components: + - pos: 156.5,-21.5 + parent: 0 + type: Transform +- uid: 6080 + type: MountainRock + components: + - pos: 156.5,-22.5 + parent: 0 + type: Transform +- uid: 6081 + type: MountainRock + components: + - pos: 156.5,-23.5 + parent: 0 + type: Transform +- uid: 6082 + type: MountainRock + components: + - pos: 156.5,-24.5 + parent: 0 + type: Transform +- uid: 6083 + type: MountainRock + components: + - pos: 156.5,-25.5 + parent: 0 + type: Transform +- uid: 6084 + type: MountainRock + components: + - pos: 156.5,-26.5 + parent: 0 + type: Transform +- uid: 6085 + type: MountainRock + components: + - pos: 156.5,-27.5 + parent: 0 + type: Transform +- uid: 6086 + type: MountainRock + components: + - pos: 156.5,-28.5 + parent: 0 + type: Transform +- uid: 6087 + type: MountainRock + components: + - pos: 156.5,-29.5 + parent: 0 + type: Transform +- uid: 6088 + type: MountainRock + components: + - pos: 156.5,-30.5 + parent: 0 + type: Transform +- uid: 6089 + type: MountainRock + components: + - pos: 156.5,-31.5 + parent: 0 + type: Transform +- uid: 6090 + type: MountainRock + components: + - pos: 156.5,-32.5 + parent: 0 + type: Transform +- uid: 6091 + type: MountainRock + components: + - pos: 156.5,-33.5 + parent: 0 + type: Transform +- uid: 6092 + type: MountainRock + components: + - pos: 156.5,-34.5 + parent: 0 + type: Transform +- uid: 6093 + type: MountainRock + components: + - pos: 156.5,-35.5 + parent: 0 + type: Transform +- uid: 6094 + type: MountainRock + components: + - pos: 156.5,-36.5 + parent: 0 + type: Transform +- uid: 6095 + type: MountainRock + components: + - pos: 156.5,-37.5 + parent: 0 + type: Transform +- uid: 6096 + type: MountainRock + components: + - pos: 156.5,-38.5 + parent: 0 + type: Transform +- uid: 6097 + type: MountainRock + components: + - pos: 156.5,-39.5 + parent: 0 + type: Transform +- uid: 6098 + type: MountainRock + components: + - pos: 156.5,-40.5 + parent: 0 + type: Transform +- uid: 6099 + type: MountainRock + components: + - pos: 156.5,-41.5 + parent: 0 + type: Transform +- uid: 6100 + type: MountainRock + components: + - pos: 156.5,-42.5 + parent: 0 + type: Transform +- uid: 6101 + type: MountainRock + components: + - pos: 156.5,-43.5 + parent: 0 + type: Transform +- uid: 6102 + type: MountainRock + components: + - pos: 156.5,-44.5 + parent: 0 + type: Transform +- uid: 6103 + type: MountainRock + components: + - pos: 156.5,-45.5 + parent: 0 + type: Transform +- uid: 6104 + type: MountainRock + components: + - pos: 156.5,-46.5 + parent: 0 + type: Transform +- uid: 6105 + type: MountainRock + components: + - pos: 157.5,28.5 + parent: 0 + type: Transform +- uid: 6106 + type: MountainRock + components: + - pos: 157.5,27.5 + parent: 0 + type: Transform +- uid: 6107 + type: MountainRock + components: + - pos: 157.5,26.5 + parent: 0 + type: Transform +- uid: 6108 + type: MountainRock + components: + - pos: 157.5,25.5 + parent: 0 + type: Transform +- uid: 6109 + type: MountainRock + components: + - pos: 157.5,24.5 + parent: 0 + type: Transform +- uid: 6110 + type: MountainRock + components: + - pos: 157.5,23.5 + parent: 0 + type: Transform +- uid: 6111 + type: MountainRock + components: + - pos: 157.5,22.5 + parent: 0 + type: Transform +- uid: 6112 + type: MountainRock + components: + - pos: 157.5,21.5 + parent: 0 + type: Transform +- uid: 6113 + type: MountainRock + components: + - pos: 157.5,20.5 + parent: 0 + type: Transform +- uid: 6114 + type: MountainRock + components: + - pos: 157.5,19.5 + parent: 0 + type: Transform +- uid: 6115 + type: MountainRock + components: + - pos: 157.5,18.5 + parent: 0 + type: Transform +- uid: 6116 + type: MountainRock + components: + - pos: 157.5,17.5 + parent: 0 + type: Transform +- uid: 6117 + type: MountainRock + components: + - pos: 157.5,16.5 + parent: 0 + type: Transform +- uid: 6118 + type: MountainRock + components: + - pos: 157.5,15.5 + parent: 0 + type: Transform +- uid: 6119 + type: MountainRock + components: + - pos: 157.5,14.5 + parent: 0 + type: Transform +- uid: 6120 + type: MountainRock + components: + - pos: 157.5,13.5 + parent: 0 + type: Transform +- uid: 6121 + type: MountainRock + components: + - pos: 157.5,12.5 + parent: 0 + type: Transform +- uid: 6122 + type: MountainRock + components: + - pos: 157.5,11.5 + parent: 0 + type: Transform +- uid: 6123 + type: MountainRock + components: + - pos: 157.5,10.5 + parent: 0 + type: Transform +- uid: 6124 + type: MountainRock + components: + - pos: 157.5,9.5 + parent: 0 + type: Transform +- uid: 6125 + type: MountainRock + components: + - pos: 157.5,8.5 + parent: 0 + type: Transform +- uid: 6126 + type: MountainRock + components: + - pos: 157.5,7.5 + parent: 0 + type: Transform +- uid: 6127 + type: MountainRock + components: + - pos: 157.5,6.5 + parent: 0 + type: Transform +- uid: 6128 + type: MountainRock + components: + - pos: 157.5,5.5 + parent: 0 + type: Transform +- uid: 6129 + type: MountainRock + components: + - pos: 157.5,4.5 + parent: 0 + type: Transform +- uid: 6130 + type: MountainRock + components: + - pos: 157.5,3.5 + parent: 0 + type: Transform +- uid: 6131 + type: MountainRock + components: + - pos: 157.5,2.5 + parent: 0 + type: Transform +- uid: 6132 + type: MountainRock + components: + - pos: 157.5,1.5 + parent: 0 + type: Transform +- uid: 6133 + type: MountainRock + components: + - pos: 157.5,0.5 + parent: 0 + type: Transform +- uid: 6134 + type: MountainRock + components: + - pos: 157.5,-0.5 + parent: 0 + type: Transform +- uid: 6135 + type: MountainRock + components: + - pos: 157.5,-1.5 + parent: 0 + type: Transform +- uid: 6136 + type: MountainRock + components: + - pos: 157.5,-2.5 + parent: 0 + type: Transform +- uid: 6137 + type: MountainRock + components: + - pos: 157.5,-3.5 + parent: 0 + type: Transform +- uid: 6138 + type: MountainRock + components: + - pos: 157.5,-4.5 + parent: 0 + type: Transform +- uid: 6139 + type: MountainRock + components: + - pos: 157.5,-5.5 + parent: 0 + type: Transform +- uid: 6140 + type: MountainRock + components: + - pos: 157.5,-6.5 + parent: 0 + type: Transform +- uid: 6141 + type: MountainRock + components: + - pos: 157.5,-7.5 + parent: 0 + type: Transform +- uid: 6142 + type: MountainRock + components: + - pos: 157.5,-8.5 + parent: 0 + type: Transform +- uid: 6143 + type: MountainRock + components: + - pos: 157.5,-9.5 + parent: 0 + type: Transform +- uid: 6144 + type: MountainRock + components: + - pos: 157.5,-10.5 + parent: 0 + type: Transform +- uid: 6145 + type: MountainRock + components: + - pos: 157.5,-11.5 + parent: 0 + type: Transform +- uid: 6146 + type: MountainRock + components: + - pos: 157.5,-12.5 + parent: 0 + type: Transform +- uid: 6147 + type: MountainRock + components: + - pos: 157.5,-13.5 + parent: 0 + type: Transform +- uid: 6148 + type: MountainRock + components: + - pos: 157.5,-14.5 + parent: 0 + type: Transform +- uid: 6149 + type: MountainRock + components: + - pos: 157.5,-15.5 + parent: 0 + type: Transform +- uid: 6150 + type: MountainRock + components: + - pos: 157.5,-16.5 + parent: 0 + type: Transform +- uid: 6151 + type: MountainRock + components: + - pos: 157.5,-17.5 + parent: 0 + type: Transform +- uid: 6152 + type: MountainRock + components: + - pos: 157.5,-18.5 + parent: 0 + type: Transform +- uid: 6153 + type: MountainRock + components: + - pos: 157.5,-19.5 + parent: 0 + type: Transform +- uid: 6154 + type: MountainRock + components: + - pos: 157.5,-20.5 + parent: 0 + type: Transform +- uid: 6155 + type: MountainRock + components: + - pos: 157.5,-21.5 + parent: 0 + type: Transform +- uid: 6156 + type: MountainRock + components: + - pos: 157.5,-22.5 + parent: 0 + type: Transform +- uid: 6157 + type: MountainRock + components: + - pos: 157.5,-23.5 + parent: 0 + type: Transform +- uid: 6158 + type: MountainRock + components: + - pos: 157.5,-24.5 + parent: 0 + type: Transform +- uid: 6159 + type: MountainRock + components: + - pos: 157.5,-25.5 + parent: 0 + type: Transform +- uid: 6160 + type: MountainRock + components: + - pos: 157.5,-26.5 + parent: 0 + type: Transform +- uid: 6161 + type: MountainRock + components: + - pos: 157.5,-27.5 + parent: 0 + type: Transform +- uid: 6162 + type: MountainRock + components: + - pos: 157.5,-28.5 + parent: 0 + type: Transform +- uid: 6163 + type: MountainRock + components: + - pos: 157.5,-29.5 + parent: 0 + type: Transform +- uid: 6164 + type: MountainRock + components: + - pos: 157.5,-30.5 + parent: 0 + type: Transform +- uid: 6165 + type: MountainRock + components: + - pos: 157.5,-31.5 + parent: 0 + type: Transform +- uid: 6166 + type: MountainRock + components: + - pos: 157.5,-32.5 + parent: 0 + type: Transform +- uid: 6167 + type: MountainRock + components: + - pos: 157.5,-33.5 + parent: 0 + type: Transform +- uid: 6168 + type: MountainRock + components: + - pos: 157.5,-34.5 + parent: 0 + type: Transform +- uid: 6169 + type: MountainRock + components: + - pos: 157.5,-35.5 + parent: 0 + type: Transform +- uid: 6170 + type: MountainRock + components: + - pos: 157.5,-36.5 + parent: 0 + type: Transform +- uid: 6171 + type: MountainRock + components: + - pos: 157.5,-37.5 + parent: 0 + type: Transform +- uid: 6172 + type: MountainRock + components: + - pos: 157.5,-38.5 + parent: 0 + type: Transform +- uid: 6173 + type: MountainRock + components: + - pos: 157.5,-39.5 + parent: 0 + type: Transform +- uid: 6174 + type: MountainRock + components: + - pos: 157.5,-40.5 + parent: 0 + type: Transform +- uid: 6175 + type: MountainRock + components: + - pos: 157.5,-41.5 + parent: 0 + type: Transform +- uid: 6176 + type: MountainRock + components: + - pos: 157.5,-42.5 + parent: 0 + type: Transform +- uid: 6177 + type: MountainRock + components: + - pos: 157.5,-43.5 + parent: 0 + type: Transform +- uid: 6178 + type: MountainRock + components: + - pos: 157.5,-44.5 + parent: 0 + type: Transform +- uid: 6179 + type: MountainRock + components: + - pos: 157.5,-45.5 + parent: 0 + type: Transform +- uid: 6180 + type: MountainRock + components: + - pos: 157.5,-46.5 + parent: 0 + type: Transform +- uid: 6181 + type: MountainRock + components: + - pos: 158.5,28.5 + parent: 0 + type: Transform +- uid: 6182 + type: MountainRock + components: + - pos: 158.5,27.5 + parent: 0 + type: Transform +- uid: 6183 + type: MountainRock + components: + - pos: 158.5,26.5 + parent: 0 + type: Transform +- uid: 6184 + type: MountainRock + components: + - pos: 158.5,25.5 + parent: 0 + type: Transform +- uid: 6185 + type: MountainRock + components: + - pos: 158.5,24.5 + parent: 0 + type: Transform +- uid: 6186 + type: MountainRock + components: + - pos: 158.5,23.5 + parent: 0 + type: Transform +- uid: 6187 + type: MountainRock + components: + - pos: 158.5,22.5 + parent: 0 + type: Transform +- uid: 6188 + type: MountainRock + components: + - pos: 158.5,21.5 + parent: 0 + type: Transform +- uid: 6189 + type: MountainRock + components: + - pos: 158.5,20.5 + parent: 0 + type: Transform +- uid: 6190 + type: MountainRock + components: + - pos: 158.5,19.5 + parent: 0 + type: Transform +- uid: 6191 + type: MountainRock + components: + - pos: 158.5,18.5 + parent: 0 + type: Transform +- uid: 6192 + type: MountainRock + components: + - pos: 158.5,17.5 + parent: 0 + type: Transform +- uid: 6193 + type: MountainRock + components: + - pos: 158.5,16.5 + parent: 0 + type: Transform +- uid: 6194 + type: MountainRock + components: + - pos: 158.5,15.5 + parent: 0 + type: Transform +- uid: 6195 + type: MountainRock + components: + - pos: 158.5,14.5 + parent: 0 + type: Transform +- uid: 6196 + type: MountainRock + components: + - pos: 158.5,13.5 + parent: 0 + type: Transform +- uid: 6197 + type: MountainRock + components: + - pos: 158.5,12.5 + parent: 0 + type: Transform +- uid: 6198 + type: MountainRock + components: + - pos: 158.5,11.5 + parent: 0 + type: Transform +- uid: 6199 + type: MountainRock + components: + - pos: 158.5,10.5 + parent: 0 + type: Transform +- uid: 6200 + type: MountainRock + components: + - pos: 158.5,9.5 + parent: 0 + type: Transform +- uid: 6201 + type: MountainRock + components: + - pos: 158.5,8.5 + parent: 0 + type: Transform +- uid: 6202 + type: MountainRock + components: + - pos: 158.5,7.5 + parent: 0 + type: Transform +- uid: 6203 + type: MountainRock + components: + - pos: 158.5,6.5 + parent: 0 + type: Transform +- uid: 6204 + type: MountainRock + components: + - pos: 158.5,5.5 + parent: 0 + type: Transform +- uid: 6205 + type: MountainRock + components: + - pos: 158.5,4.5 + parent: 0 + type: Transform +- uid: 6206 + type: MountainRock + components: + - pos: 158.5,3.5 + parent: 0 + type: Transform +- uid: 6207 + type: MountainRock + components: + - pos: 158.5,2.5 + parent: 0 + type: Transform +- uid: 6208 + type: MountainRock + components: + - pos: 158.5,1.5 + parent: 0 + type: Transform +- uid: 6209 + type: MountainRock + components: + - pos: 158.5,0.5 + parent: 0 + type: Transform +- uid: 6210 + type: MountainRock + components: + - pos: 158.5,-0.5 + parent: 0 + type: Transform +- uid: 6211 + type: MountainRock + components: + - pos: 158.5,-1.5 + parent: 0 + type: Transform +- uid: 6212 + type: MountainRock + components: + - pos: 158.5,-2.5 + parent: 0 + type: Transform +- uid: 6213 + type: MountainRock + components: + - pos: 158.5,-3.5 + parent: 0 + type: Transform +- uid: 6214 + type: MountainRock + components: + - pos: 158.5,-4.5 + parent: 0 + type: Transform +- uid: 6215 + type: MountainRock + components: + - pos: 158.5,-5.5 + parent: 0 + type: Transform +- uid: 6216 + type: MountainRock + components: + - pos: 158.5,-6.5 + parent: 0 + type: Transform +- uid: 6217 + type: MountainRock + components: + - pos: 158.5,-7.5 + parent: 0 + type: Transform +- uid: 6218 + type: MountainRock + components: + - pos: 158.5,-8.5 + parent: 0 + type: Transform +- uid: 6219 + type: MountainRock + components: + - pos: 158.5,-9.5 + parent: 0 + type: Transform +- uid: 6220 + type: MountainRock + components: + - pos: 158.5,-10.5 + parent: 0 + type: Transform +- uid: 6221 + type: MountainRock + components: + - pos: 158.5,-11.5 + parent: 0 + type: Transform +- uid: 6222 + type: MountainRock + components: + - pos: 158.5,-12.5 + parent: 0 + type: Transform +- uid: 6223 + type: MountainRock + components: + - pos: 158.5,-13.5 + parent: 0 + type: Transform +- uid: 6224 + type: MountainRock + components: + - pos: 158.5,-14.5 + parent: 0 + type: Transform +- uid: 6225 + type: MountainRock + components: + - pos: 158.5,-15.5 + parent: 0 + type: Transform +- uid: 6226 + type: MountainRock + components: + - pos: 158.5,-16.5 + parent: 0 + type: Transform +- uid: 6227 + type: MountainRock + components: + - pos: 158.5,-17.5 + parent: 0 + type: Transform +- uid: 6228 + type: MountainRock + components: + - pos: 158.5,-18.5 + parent: 0 + type: Transform +- uid: 6229 + type: MountainRock + components: + - pos: 158.5,-19.5 + parent: 0 + type: Transform +- uid: 6230 + type: MountainRock + components: + - pos: 158.5,-20.5 + parent: 0 + type: Transform +- uid: 6231 + type: MountainRock + components: + - pos: 158.5,-21.5 + parent: 0 + type: Transform +- uid: 6232 + type: MountainRock + components: + - pos: 158.5,-22.5 + parent: 0 + type: Transform +- uid: 6233 + type: MountainRock + components: + - pos: 158.5,-23.5 + parent: 0 + type: Transform +- uid: 6234 + type: MountainRock + components: + - pos: 158.5,-24.5 + parent: 0 + type: Transform +- uid: 6235 + type: MountainRock + components: + - pos: 158.5,-25.5 + parent: 0 + type: Transform +- uid: 6236 + type: MountainRock + components: + - pos: 158.5,-26.5 + parent: 0 + type: Transform +- uid: 6237 + type: MountainRock + components: + - pos: 158.5,-27.5 + parent: 0 + type: Transform +- uid: 6238 + type: MountainRock + components: + - pos: 158.5,-28.5 + parent: 0 + type: Transform +- uid: 6239 + type: MountainRock + components: + - pos: 158.5,-29.5 + parent: 0 + type: Transform +- uid: 6240 + type: MountainRock + components: + - pos: 158.5,-30.5 + parent: 0 + type: Transform +- uid: 6241 + type: MountainRock + components: + - pos: 158.5,-31.5 + parent: 0 + type: Transform +- uid: 6242 + type: MountainRock + components: + - pos: 158.5,-32.5 + parent: 0 + type: Transform +- uid: 6243 + type: MountainRock + components: + - pos: 158.5,-33.5 + parent: 0 + type: Transform +- uid: 6244 + type: MountainRock + components: + - pos: 158.5,-34.5 + parent: 0 + type: Transform +- uid: 6245 + type: MountainRock + components: + - pos: 158.5,-35.5 + parent: 0 + type: Transform +- uid: 6246 + type: MountainRock + components: + - pos: 158.5,-36.5 + parent: 0 + type: Transform +- uid: 6247 + type: MountainRock + components: + - pos: 158.5,-37.5 + parent: 0 + type: Transform +- uid: 6248 + type: MountainRock + components: + - pos: 158.5,-38.5 + parent: 0 + type: Transform +- uid: 6249 + type: MountainRock + components: + - pos: 158.5,-39.5 + parent: 0 + type: Transform +- uid: 6250 + type: MountainRock + components: + - pos: 158.5,-40.5 + parent: 0 + type: Transform +- uid: 6251 + type: MountainRock + components: + - pos: 158.5,-41.5 + parent: 0 + type: Transform +- uid: 6252 + type: MountainRock + components: + - pos: 158.5,-42.5 + parent: 0 + type: Transform +- uid: 6253 + type: MountainRock + components: + - pos: 158.5,-43.5 + parent: 0 + type: Transform +- uid: 6254 + type: MountainRock + components: + - pos: 158.5,-44.5 + parent: 0 + type: Transform +- uid: 6255 + type: MountainRock + components: + - pos: 158.5,-45.5 + parent: 0 + type: Transform +- uid: 6256 + type: MountainRock + components: + - pos: 158.5,-46.5 + parent: 0 + type: Transform +- uid: 6257 + type: MountainRock + components: + - pos: 159.5,28.5 + parent: 0 + type: Transform +- uid: 6258 + type: MountainRock + components: + - pos: 159.5,27.5 + parent: 0 + type: Transform +- uid: 6259 + type: MountainRock + components: + - pos: 159.5,26.5 + parent: 0 + type: Transform +- uid: 6260 + type: MountainRock + components: + - pos: 159.5,25.5 + parent: 0 + type: Transform +- uid: 6261 + type: MountainRock + components: + - pos: 159.5,24.5 + parent: 0 + type: Transform +- uid: 6262 + type: MountainRock + components: + - pos: 159.5,23.5 + parent: 0 + type: Transform +- uid: 6263 + type: MountainRock + components: + - pos: 159.5,22.5 + parent: 0 + type: Transform +- uid: 6264 + type: MountainRock + components: + - pos: 159.5,21.5 + parent: 0 + type: Transform +- uid: 6265 + type: MountainRock + components: + - pos: 159.5,20.5 + parent: 0 + type: Transform +- uid: 6266 + type: MountainRock + components: + - pos: 159.5,19.5 + parent: 0 + type: Transform +- uid: 6267 + type: MountainRock + components: + - pos: 159.5,18.5 + parent: 0 + type: Transform +- uid: 6268 + type: MountainRock + components: + - pos: 159.5,17.5 + parent: 0 + type: Transform +- uid: 6269 + type: MountainRock + components: + - pos: 159.5,16.5 + parent: 0 + type: Transform +- uid: 6270 + type: MountainRock + components: + - pos: 159.5,15.5 + parent: 0 + type: Transform +- uid: 6271 + type: MountainRock + components: + - pos: 159.5,14.5 + parent: 0 + type: Transform +- uid: 6272 + type: MountainRock + components: + - pos: 159.5,13.5 + parent: 0 + type: Transform +- uid: 6273 + type: MountainRock + components: + - pos: 159.5,12.5 + parent: 0 + type: Transform +- uid: 6274 + type: MountainRock + components: + - pos: 159.5,11.5 + parent: 0 + type: Transform +- uid: 6275 + type: MountainRock + components: + - pos: 159.5,10.5 + parent: 0 + type: Transform +- uid: 6276 + type: MountainRock + components: + - pos: 159.5,9.5 + parent: 0 + type: Transform +- uid: 6277 + type: MountainRock + components: + - pos: 159.5,8.5 + parent: 0 + type: Transform +- uid: 6278 + type: MountainRock + components: + - pos: 159.5,7.5 + parent: 0 + type: Transform +- uid: 6279 + type: MountainRock + components: + - pos: 159.5,6.5 + parent: 0 + type: Transform +- uid: 6280 + type: MountainRock + components: + - pos: 159.5,5.5 + parent: 0 + type: Transform +- uid: 6281 + type: MountainRock + components: + - pos: 159.5,4.5 + parent: 0 + type: Transform +- uid: 6282 + type: MountainRock + components: + - pos: 159.5,3.5 + parent: 0 + type: Transform +- uid: 6283 + type: MountainRock + components: + - pos: 159.5,2.5 + parent: 0 + type: Transform +- uid: 6284 + type: MountainRock + components: + - pos: 159.5,1.5 + parent: 0 + type: Transform +- uid: 6285 + type: MountainRock + components: + - pos: 159.5,0.5 + parent: 0 + type: Transform +- uid: 6286 + type: MountainRock + components: + - pos: 159.5,-0.5 + parent: 0 + type: Transform +- uid: 6287 + type: MountainRock + components: + - pos: 159.5,-1.5 + parent: 0 + type: Transform +- uid: 6288 + type: MountainRock + components: + - pos: 159.5,-2.5 + parent: 0 + type: Transform +- uid: 6289 + type: MountainRock + components: + - pos: 159.5,-3.5 + parent: 0 + type: Transform +- uid: 6290 + type: MountainRock + components: + - pos: 159.5,-4.5 + parent: 0 + type: Transform +- uid: 6291 + type: MountainRock + components: + - pos: 159.5,-5.5 + parent: 0 + type: Transform +- uid: 6292 + type: MountainRock + components: + - pos: 159.5,-6.5 + parent: 0 + type: Transform +- uid: 6293 + type: MountainRock + components: + - pos: 159.5,-7.5 + parent: 0 + type: Transform +- uid: 6294 + type: MountainRock + components: + - pos: 159.5,-8.5 + parent: 0 + type: Transform +- uid: 6295 + type: MountainRock + components: + - pos: 159.5,-9.5 + parent: 0 + type: Transform +- uid: 6296 + type: MountainRock + components: + - pos: 159.5,-10.5 + parent: 0 + type: Transform +- uid: 6297 + type: MountainRock + components: + - pos: 159.5,-11.5 + parent: 0 + type: Transform +- uid: 6298 + type: MountainRock + components: + - pos: 159.5,-12.5 + parent: 0 + type: Transform +- uid: 6299 + type: MountainRock + components: + - pos: 159.5,-13.5 + parent: 0 + type: Transform +- uid: 6300 + type: MountainRock + components: + - pos: 159.5,-14.5 + parent: 0 + type: Transform +- uid: 6301 + type: MountainRock + components: + - pos: 159.5,-15.5 + parent: 0 + type: Transform +- uid: 6302 + type: MountainRock + components: + - pos: 159.5,-16.5 + parent: 0 + type: Transform +- uid: 6303 + type: MountainRock + components: + - pos: 159.5,-17.5 + parent: 0 + type: Transform +- uid: 6304 + type: MountainRock + components: + - pos: 159.5,-18.5 + parent: 0 + type: Transform +- uid: 6305 + type: MountainRock + components: + - pos: 159.5,-19.5 + parent: 0 + type: Transform +- uid: 6306 + type: MountainRock + components: + - pos: 159.5,-20.5 + parent: 0 + type: Transform +- uid: 6307 + type: MountainRock + components: + - pos: 159.5,-21.5 + parent: 0 + type: Transform +- uid: 6308 + type: MountainRock + components: + - pos: 159.5,-22.5 + parent: 0 + type: Transform +- uid: 6309 + type: MountainRock + components: + - pos: 159.5,-23.5 + parent: 0 + type: Transform +- uid: 6310 + type: MountainRock + components: + - pos: 159.5,-24.5 + parent: 0 + type: Transform +- uid: 6311 + type: MountainRock + components: + - pos: 159.5,-25.5 + parent: 0 + type: Transform +- uid: 6312 + type: MountainRock + components: + - pos: 159.5,-26.5 + parent: 0 + type: Transform +- uid: 6313 + type: MountainRock + components: + - pos: 159.5,-27.5 + parent: 0 + type: Transform +- uid: 6314 + type: MountainRock + components: + - pos: 159.5,-28.5 + parent: 0 + type: Transform +- uid: 6315 + type: MountainRock + components: + - pos: 159.5,-29.5 + parent: 0 + type: Transform +- uid: 6316 + type: MountainRock + components: + - pos: 159.5,-30.5 + parent: 0 + type: Transform +- uid: 6317 + type: MountainRock + components: + - pos: 159.5,-31.5 + parent: 0 + type: Transform +- uid: 6318 + type: MountainRock + components: + - pos: 159.5,-32.5 + parent: 0 + type: Transform +- uid: 6319 + type: MountainRock + components: + - pos: 159.5,-33.5 + parent: 0 + type: Transform +- uid: 6320 + type: MountainRock + components: + - pos: 159.5,-34.5 + parent: 0 + type: Transform +- uid: 6321 + type: MountainRock + components: + - pos: 159.5,-35.5 + parent: 0 + type: Transform +- uid: 6322 + type: MountainRock + components: + - pos: 159.5,-36.5 + parent: 0 + type: Transform +- uid: 6323 + type: MountainRock + components: + - pos: 159.5,-37.5 + parent: 0 + type: Transform +- uid: 6324 + type: MountainRock + components: + - pos: 159.5,-38.5 + parent: 0 + type: Transform +- uid: 6325 + type: MountainRock + components: + - pos: 159.5,-39.5 + parent: 0 + type: Transform +- uid: 6326 + type: MountainRock + components: + - pos: 159.5,-40.5 + parent: 0 + type: Transform +- uid: 6327 + type: MountainRock + components: + - pos: 159.5,-41.5 + parent: 0 + type: Transform +- uid: 6328 + type: MountainRock + components: + - pos: 159.5,-42.5 + parent: 0 + type: Transform +- uid: 6329 + type: MountainRock + components: + - pos: 159.5,-43.5 + parent: 0 + type: Transform +- uid: 6330 + type: MountainRock + components: + - pos: 159.5,-44.5 + parent: 0 + type: Transform +- uid: 6331 + type: MountainRock + components: + - pos: 159.5,-45.5 + parent: 0 + type: Transform +- uid: 6332 + type: MountainRock + components: + - pos: 159.5,-46.5 + parent: 0 + type: Transform +- uid: 6333 + type: MountainRock + components: + - pos: 160.5,28.5 + parent: 0 + type: Transform +- uid: 6334 + type: MountainRock + components: + - pos: 160.5,27.5 + parent: 0 + type: Transform +- uid: 6335 + type: MountainRock + components: + - pos: 160.5,26.5 + parent: 0 + type: Transform +- uid: 6336 + type: MountainRock + components: + - pos: 160.5,25.5 + parent: 0 + type: Transform +- uid: 6337 + type: MountainRock + components: + - pos: 160.5,24.5 + parent: 0 + type: Transform +- uid: 6338 + type: MountainRock + components: + - pos: 160.5,23.5 + parent: 0 + type: Transform +- uid: 6339 + type: MountainRock + components: + - pos: 160.5,22.5 + parent: 0 + type: Transform +- uid: 6340 + type: MountainRock + components: + - pos: 160.5,21.5 + parent: 0 + type: Transform +- uid: 6341 + type: MountainRock + components: + - pos: 160.5,20.5 + parent: 0 + type: Transform +- uid: 6342 + type: MountainRock + components: + - pos: 160.5,19.5 + parent: 0 + type: Transform +- uid: 6343 + type: MountainRock + components: + - pos: 160.5,18.5 + parent: 0 + type: Transform +- uid: 6344 + type: MountainRock + components: + - pos: 160.5,17.5 + parent: 0 + type: Transform +- uid: 6345 + type: MountainRock + components: + - pos: 160.5,16.5 + parent: 0 + type: Transform +- uid: 6346 + type: MountainRock + components: + - pos: 160.5,15.5 + parent: 0 + type: Transform +- uid: 6347 + type: MountainRock + components: + - pos: 160.5,14.5 + parent: 0 + type: Transform +- uid: 6348 + type: MountainRock + components: + - pos: 160.5,13.5 + parent: 0 + type: Transform +- uid: 6349 + type: MountainRock + components: + - pos: 160.5,12.5 + parent: 0 + type: Transform +- uid: 6350 + type: MountainRock + components: + - pos: 160.5,11.5 + parent: 0 + type: Transform +- uid: 6351 + type: MountainRock + components: + - pos: 160.5,10.5 + parent: 0 + type: Transform +- uid: 6352 + type: MountainRock + components: + - pos: 160.5,9.5 + parent: 0 + type: Transform +- uid: 6353 + type: MountainRock + components: + - pos: 160.5,8.5 + parent: 0 + type: Transform +- uid: 6354 + type: MountainRock + components: + - pos: 160.5,7.5 + parent: 0 + type: Transform +- uid: 6355 + type: MountainRock + components: + - pos: 160.5,6.5 + parent: 0 + type: Transform +- uid: 6356 + type: MountainRock + components: + - pos: 160.5,5.5 + parent: 0 + type: Transform +- uid: 6357 + type: MountainRock + components: + - pos: 160.5,4.5 + parent: 0 + type: Transform +- uid: 6358 + type: MountainRock + components: + - pos: 160.5,3.5 + parent: 0 + type: Transform +- uid: 6359 + type: MountainRock + components: + - pos: 160.5,2.5 + parent: 0 + type: Transform +- uid: 6360 + type: MountainRock + components: + - pos: 160.5,1.5 + parent: 0 + type: Transform +- uid: 6361 + type: MountainRock + components: + - pos: 160.5,0.5 + parent: 0 + type: Transform +- uid: 6362 + type: MountainRock + components: + - pos: 160.5,-0.5 + parent: 0 + type: Transform +- uid: 6363 + type: MountainRock + components: + - pos: 160.5,-1.5 + parent: 0 + type: Transform +- uid: 6364 + type: MountainRock + components: + - pos: 160.5,-2.5 + parent: 0 + type: Transform +- uid: 6365 + type: MountainRock + components: + - pos: 160.5,-3.5 + parent: 0 + type: Transform +- uid: 6366 + type: MountainRock + components: + - pos: 160.5,-4.5 + parent: 0 + type: Transform +- uid: 6367 + type: MountainRock + components: + - pos: 160.5,-5.5 + parent: 0 + type: Transform +- uid: 6368 + type: MountainRock + components: + - pos: 160.5,-6.5 + parent: 0 + type: Transform +- uid: 6369 + type: MountainRock + components: + - pos: 160.5,-7.5 + parent: 0 + type: Transform +- uid: 6370 + type: MountainRock + components: + - pos: 160.5,-8.5 + parent: 0 + type: Transform +- uid: 6371 + type: MountainRock + components: + - pos: 160.5,-9.5 + parent: 0 + type: Transform +- uid: 6372 + type: MountainRock + components: + - pos: 160.5,-10.5 + parent: 0 + type: Transform +- uid: 6373 + type: MountainRock + components: + - pos: 160.5,-11.5 + parent: 0 + type: Transform +- uid: 6374 + type: MountainRock + components: + - pos: 160.5,-12.5 + parent: 0 + type: Transform +- uid: 6375 + type: MountainRock + components: + - pos: 160.5,-13.5 + parent: 0 + type: Transform +- uid: 6376 + type: MountainRock + components: + - pos: 160.5,-14.5 + parent: 0 + type: Transform +- uid: 6377 + type: MountainRock + components: + - pos: 160.5,-15.5 + parent: 0 + type: Transform +- uid: 6378 + type: MountainRock + components: + - pos: 160.5,-16.5 + parent: 0 + type: Transform +- uid: 6379 + type: MountainRock + components: + - pos: 160.5,-17.5 + parent: 0 + type: Transform +- uid: 6380 + type: MountainRock + components: + - pos: 160.5,-18.5 + parent: 0 + type: Transform +- uid: 6381 + type: MountainRock + components: + - pos: 160.5,-19.5 + parent: 0 + type: Transform +- uid: 6382 + type: MountainRock + components: + - pos: 160.5,-20.5 + parent: 0 + type: Transform +- uid: 6383 + type: MountainRock + components: + - pos: 160.5,-21.5 + parent: 0 + type: Transform +- uid: 6384 + type: MountainRock + components: + - pos: 160.5,-22.5 + parent: 0 + type: Transform +- uid: 6385 + type: MountainRock + components: + - pos: 160.5,-23.5 + parent: 0 + type: Transform +- uid: 6386 + type: MountainRock + components: + - pos: 160.5,-24.5 + parent: 0 + type: Transform +- uid: 6387 + type: MountainRock + components: + - pos: 160.5,-25.5 + parent: 0 + type: Transform +- uid: 6388 + type: MountainRock + components: + - pos: 160.5,-26.5 + parent: 0 + type: Transform +- uid: 6389 + type: MountainRock + components: + - pos: 160.5,-27.5 + parent: 0 + type: Transform +- uid: 6390 + type: MountainRock + components: + - pos: 160.5,-28.5 + parent: 0 + type: Transform +- uid: 6391 + type: MountainRock + components: + - pos: 160.5,-29.5 + parent: 0 + type: Transform +- uid: 6392 + type: MountainRock + components: + - pos: 160.5,-30.5 + parent: 0 + type: Transform +- uid: 6393 + type: MountainRock + components: + - pos: 160.5,-31.5 + parent: 0 + type: Transform +- uid: 6394 + type: MountainRock + components: + - pos: 160.5,-32.5 + parent: 0 + type: Transform +- uid: 6395 + type: MountainRock + components: + - pos: 160.5,-33.5 + parent: 0 + type: Transform +- uid: 6396 + type: MountainRock + components: + - pos: 160.5,-34.5 + parent: 0 + type: Transform +- uid: 6397 + type: MountainRock + components: + - pos: 160.5,-35.5 + parent: 0 + type: Transform +- uid: 6398 + type: MountainRock + components: + - pos: 160.5,-36.5 + parent: 0 + type: Transform +- uid: 6399 + type: MountainRock + components: + - pos: 160.5,-37.5 + parent: 0 + type: Transform +- uid: 6400 + type: MountainRock + components: + - pos: 160.5,-38.5 + parent: 0 + type: Transform +- uid: 6401 + type: MountainRock + components: + - pos: 160.5,-39.5 + parent: 0 + type: Transform +- uid: 6402 + type: MountainRock + components: + - pos: 160.5,-40.5 + parent: 0 + type: Transform +- uid: 6403 + type: MountainRock + components: + - pos: 160.5,-41.5 + parent: 0 + type: Transform +- uid: 6404 + type: MountainRock + components: + - pos: 160.5,-42.5 + parent: 0 + type: Transform +- uid: 6405 + type: MountainRock + components: + - pos: 160.5,-43.5 + parent: 0 + type: Transform +- uid: 6406 + type: MountainRock + components: + - pos: 160.5,-44.5 + parent: 0 + type: Transform +- uid: 6407 + type: MountainRock + components: + - pos: 160.5,-45.5 + parent: 0 + type: Transform +- uid: 6408 + type: MountainRock + components: + - pos: 160.5,-46.5 + parent: 0 + type: Transform +- uid: 6409 + type: MountainRock + components: + - pos: 161.5,28.5 + parent: 0 + type: Transform +- uid: 6410 + type: MountainRock + components: + - pos: 161.5,27.5 + parent: 0 + type: Transform +- uid: 6411 + type: MountainRock + components: + - pos: 161.5,26.5 + parent: 0 + type: Transform +- uid: 6412 + type: MountainRock + components: + - pos: 161.5,25.5 + parent: 0 + type: Transform +- uid: 6413 + type: MountainRock + components: + - pos: 161.5,24.5 + parent: 0 + type: Transform +- uid: 6414 + type: MountainRock + components: + - pos: 161.5,23.5 + parent: 0 + type: Transform +- uid: 6415 + type: MountainRock + components: + - pos: 161.5,22.5 + parent: 0 + type: Transform +- uid: 6416 + type: MountainRock + components: + - pos: 161.5,21.5 + parent: 0 + type: Transform +- uid: 6417 + type: MountainRock + components: + - pos: 161.5,20.5 + parent: 0 + type: Transform +- uid: 6418 + type: MountainRock + components: + - pos: 161.5,19.5 + parent: 0 + type: Transform +- uid: 6419 + type: MountainRock + components: + - pos: 161.5,18.5 + parent: 0 + type: Transform +- uid: 6420 + type: MountainRock + components: + - pos: 161.5,17.5 + parent: 0 + type: Transform +- uid: 6421 + type: MountainRock + components: + - pos: 161.5,16.5 + parent: 0 + type: Transform +- uid: 6422 + type: MountainRock + components: + - pos: 161.5,15.5 + parent: 0 + type: Transform +- uid: 6423 + type: MountainRock + components: + - pos: 161.5,14.5 + parent: 0 + type: Transform +- uid: 6424 + type: MountainRock + components: + - pos: 161.5,13.5 + parent: 0 + type: Transform +- uid: 6425 + type: MountainRock + components: + - pos: 161.5,12.5 + parent: 0 + type: Transform +- uid: 6426 + type: MountainRock + components: + - pos: 161.5,11.5 + parent: 0 + type: Transform +- uid: 6427 + type: MountainRock + components: + - pos: 161.5,10.5 + parent: 0 + type: Transform +- uid: 6428 + type: MountainRock + components: + - pos: 161.5,9.5 + parent: 0 + type: Transform +- uid: 6429 + type: MountainRock + components: + - pos: 161.5,8.5 + parent: 0 + type: Transform +- uid: 6430 + type: MountainRock + components: + - pos: 161.5,7.5 + parent: 0 + type: Transform +- uid: 6431 + type: MountainRock + components: + - pos: 161.5,6.5 + parent: 0 + type: Transform +- uid: 6432 + type: MountainRock + components: + - pos: 161.5,5.5 + parent: 0 + type: Transform +- uid: 6433 + type: MountainRock + components: + - pos: 161.5,4.5 + parent: 0 + type: Transform +- uid: 6434 + type: MountainRock + components: + - pos: 161.5,3.5 + parent: 0 + type: Transform +- uid: 6435 + type: MountainRock + components: + - pos: 161.5,2.5 + parent: 0 + type: Transform +- uid: 6436 + type: MountainRock + components: + - pos: 161.5,1.5 + parent: 0 + type: Transform +- uid: 6437 + type: MountainRock + components: + - pos: 161.5,0.5 + parent: 0 + type: Transform +- uid: 6438 + type: MountainRock + components: + - pos: 161.5,-0.5 + parent: 0 + type: Transform +- uid: 6439 + type: MountainRock + components: + - pos: 161.5,-1.5 + parent: 0 + type: Transform +- uid: 6440 + type: MountainRock + components: + - pos: 161.5,-2.5 + parent: 0 + type: Transform +- uid: 6441 + type: MountainRock + components: + - pos: 161.5,-3.5 + parent: 0 + type: Transform +- uid: 6442 + type: MountainRock + components: + - pos: 161.5,-4.5 + parent: 0 + type: Transform +- uid: 6443 + type: MountainRock + components: + - pos: 161.5,-5.5 + parent: 0 + type: Transform +- uid: 6444 + type: MountainRock + components: + - pos: 161.5,-6.5 + parent: 0 + type: Transform +- uid: 6445 + type: MountainRock + components: + - pos: 161.5,-7.5 + parent: 0 + type: Transform +- uid: 6446 + type: MountainRock + components: + - pos: 161.5,-8.5 + parent: 0 + type: Transform +- uid: 6447 + type: MountainRock + components: + - pos: 161.5,-9.5 + parent: 0 + type: Transform +- uid: 6448 + type: MountainRock + components: + - pos: 161.5,-10.5 + parent: 0 + type: Transform +- uid: 6449 + type: MountainRock + components: + - pos: 161.5,-11.5 + parent: 0 + type: Transform +- uid: 6450 + type: MountainRock + components: + - pos: 161.5,-12.5 + parent: 0 + type: Transform +- uid: 6451 + type: MountainRock + components: + - pos: 161.5,-13.5 + parent: 0 + type: Transform +- uid: 6452 + type: MountainRock + components: + - pos: 161.5,-14.5 + parent: 0 + type: Transform +- uid: 6453 + type: MountainRock + components: + - pos: 161.5,-15.5 + parent: 0 + type: Transform +- uid: 6454 + type: MountainRock + components: + - pos: 161.5,-16.5 + parent: 0 + type: Transform +- uid: 6455 + type: MountainRock + components: + - pos: 161.5,-17.5 + parent: 0 + type: Transform +- uid: 6456 + type: MountainRock + components: + - pos: 161.5,-18.5 + parent: 0 + type: Transform +- uid: 6457 + type: MountainRock + components: + - pos: 161.5,-19.5 + parent: 0 + type: Transform +- uid: 6458 + type: MountainRock + components: + - pos: 161.5,-20.5 + parent: 0 + type: Transform +- uid: 6459 + type: MountainRock + components: + - pos: 161.5,-21.5 + parent: 0 + type: Transform +- uid: 6460 + type: MountainRock + components: + - pos: 161.5,-22.5 + parent: 0 + type: Transform +- uid: 6461 + type: MountainRock + components: + - pos: 161.5,-23.5 + parent: 0 + type: Transform +- uid: 6462 + type: MountainRock + components: + - pos: 161.5,-24.5 + parent: 0 + type: Transform +- uid: 6463 + type: MountainRock + components: + - pos: 161.5,-25.5 + parent: 0 + type: Transform +- uid: 6464 + type: MountainRock + components: + - pos: 161.5,-26.5 + parent: 0 + type: Transform +- uid: 6465 + type: MountainRock + components: + - pos: 161.5,-27.5 + parent: 0 + type: Transform +- uid: 6466 + type: MountainRock + components: + - pos: 161.5,-28.5 + parent: 0 + type: Transform +- uid: 6467 + type: MountainRock + components: + - pos: 161.5,-29.5 + parent: 0 + type: Transform +- uid: 6468 + type: MountainRock + components: + - pos: 161.5,-30.5 + parent: 0 + type: Transform +- uid: 6469 + type: MountainRock + components: + - pos: 161.5,-31.5 + parent: 0 + type: Transform +- uid: 6470 + type: MountainRock + components: + - pos: 161.5,-32.5 + parent: 0 + type: Transform +- uid: 6471 + type: MountainRock + components: + - pos: 161.5,-33.5 + parent: 0 + type: Transform +- uid: 6472 + type: MountainRock + components: + - pos: 161.5,-34.5 + parent: 0 + type: Transform +- uid: 6473 + type: MountainRock + components: + - pos: 161.5,-35.5 + parent: 0 + type: Transform +- uid: 6474 + type: MountainRock + components: + - pos: 161.5,-36.5 + parent: 0 + type: Transform +- uid: 6475 + type: MountainRock + components: + - pos: 161.5,-37.5 + parent: 0 + type: Transform +- uid: 6476 + type: MountainRock + components: + - pos: 161.5,-38.5 + parent: 0 + type: Transform +- uid: 6477 + type: MountainRock + components: + - pos: 161.5,-39.5 + parent: 0 + type: Transform +- uid: 6478 + type: MountainRock + components: + - pos: 161.5,-40.5 + parent: 0 + type: Transform +- uid: 6479 + type: MountainRock + components: + - pos: 161.5,-41.5 + parent: 0 + type: Transform +- uid: 6480 + type: MountainRock + components: + - pos: 161.5,-42.5 + parent: 0 + type: Transform +- uid: 6481 + type: MountainRock + components: + - pos: 161.5,-43.5 + parent: 0 + type: Transform +- uid: 6482 + type: MountainRock + components: + - pos: 161.5,-44.5 + parent: 0 + type: Transform +- uid: 6483 + type: MountainRock + components: + - pos: 161.5,-45.5 + parent: 0 + type: Transform +- uid: 6484 + type: MountainRock + components: + - pos: 161.5,-46.5 + parent: 0 + type: Transform +- uid: 6485 + type: MountainRock + components: + - pos: 162.5,28.5 + parent: 0 + type: Transform +- uid: 6486 + type: MountainRock + components: + - pos: 162.5,27.5 + parent: 0 + type: Transform +- uid: 6487 + type: MountainRock + components: + - pos: 162.5,26.5 + parent: 0 + type: Transform +- uid: 6488 + type: MountainRock + components: + - pos: 162.5,25.5 + parent: 0 + type: Transform +- uid: 6489 + type: MountainRock + components: + - pos: 162.5,24.5 + parent: 0 + type: Transform +- uid: 6490 + type: MountainRock + components: + - pos: 162.5,23.5 + parent: 0 + type: Transform +- uid: 6491 + type: MountainRock + components: + - pos: 162.5,22.5 + parent: 0 + type: Transform +- uid: 6492 + type: MountainRock + components: + - pos: 162.5,21.5 + parent: 0 + type: Transform +- uid: 6493 + type: MountainRock + components: + - pos: 162.5,20.5 + parent: 0 + type: Transform +- uid: 6494 + type: MountainRock + components: + - pos: 162.5,19.5 + parent: 0 + type: Transform +- uid: 6495 + type: MountainRock + components: + - pos: 162.5,18.5 + parent: 0 + type: Transform +- uid: 6496 + type: MountainRock + components: + - pos: 162.5,17.5 + parent: 0 + type: Transform +- uid: 6497 + type: MountainRock + components: + - pos: 162.5,16.5 + parent: 0 + type: Transform +- uid: 6498 + type: MountainRock + components: + - pos: 162.5,15.5 + parent: 0 + type: Transform +- uid: 6499 + type: MountainRock + components: + - pos: 162.5,14.5 + parent: 0 + type: Transform +- uid: 6500 + type: MountainRock + components: + - pos: 162.5,13.5 + parent: 0 + type: Transform +- uid: 6501 + type: MountainRock + components: + - pos: 162.5,12.5 + parent: 0 + type: Transform +- uid: 6502 + type: MountainRock + components: + - pos: 162.5,11.5 + parent: 0 + type: Transform +- uid: 6503 + type: MountainRock + components: + - pos: 162.5,10.5 + parent: 0 + type: Transform +- uid: 6504 + type: MountainRock + components: + - pos: 162.5,9.5 + parent: 0 + type: Transform +- uid: 6505 + type: MountainRock + components: + - pos: 162.5,8.5 + parent: 0 + type: Transform +- uid: 6506 + type: MountainRock + components: + - pos: 162.5,7.5 + parent: 0 + type: Transform +- uid: 6507 + type: MountainRock + components: + - pos: 162.5,6.5 + parent: 0 + type: Transform +- uid: 6508 + type: MountainRock + components: + - pos: 162.5,5.5 + parent: 0 + type: Transform +- uid: 6509 + type: MountainRock + components: + - pos: 162.5,4.5 + parent: 0 + type: Transform +- uid: 6510 + type: MountainRock + components: + - pos: 162.5,3.5 + parent: 0 + type: Transform +- uid: 6511 + type: MountainRock + components: + - pos: 162.5,2.5 + parent: 0 + type: Transform +- uid: 6512 + type: MountainRock + components: + - pos: 162.5,1.5 + parent: 0 + type: Transform +- uid: 6513 + type: MountainRock + components: + - pos: 162.5,0.5 + parent: 0 + type: Transform +- uid: 6514 + type: MountainRock + components: + - pos: 162.5,-0.5 + parent: 0 + type: Transform +- uid: 6515 + type: MountainRock + components: + - pos: 162.5,-1.5 + parent: 0 + type: Transform +- uid: 6516 + type: MountainRock + components: + - pos: 162.5,-2.5 + parent: 0 + type: Transform +- uid: 6517 + type: MountainRock + components: + - pos: 162.5,-3.5 + parent: 0 + type: Transform +- uid: 6518 + type: MountainRock + components: + - pos: 162.5,-4.5 + parent: 0 + type: Transform +- uid: 6519 + type: MountainRock + components: + - pos: 162.5,-5.5 + parent: 0 + type: Transform +- uid: 6520 + type: MountainRock + components: + - pos: 162.5,-6.5 + parent: 0 + type: Transform +- uid: 6521 + type: MountainRock + components: + - pos: 162.5,-7.5 + parent: 0 + type: Transform +- uid: 6522 + type: MountainRock + components: + - pos: 162.5,-8.5 + parent: 0 + type: Transform +- uid: 6523 + type: MountainRock + components: + - pos: 162.5,-9.5 + parent: 0 + type: Transform +- uid: 6524 + type: MountainRock + components: + - pos: 162.5,-10.5 + parent: 0 + type: Transform +- uid: 6525 + type: MountainRock + components: + - pos: 162.5,-11.5 + parent: 0 + type: Transform +- uid: 6526 + type: MountainRock + components: + - pos: 162.5,-12.5 + parent: 0 + type: Transform +- uid: 6527 + type: MountainRock + components: + - pos: 162.5,-13.5 + parent: 0 + type: Transform +- uid: 6528 + type: MountainRock + components: + - pos: 162.5,-14.5 + parent: 0 + type: Transform +- uid: 6529 + type: MountainRock + components: + - pos: 162.5,-15.5 + parent: 0 + type: Transform +- uid: 6530 + type: MountainRock + components: + - pos: 162.5,-16.5 + parent: 0 + type: Transform +- uid: 6531 + type: MountainRock + components: + - pos: 162.5,-17.5 + parent: 0 + type: Transform +- uid: 6532 + type: MountainRock + components: + - pos: 162.5,-18.5 + parent: 0 + type: Transform +- uid: 6533 + type: MountainRock + components: + - pos: 162.5,-19.5 + parent: 0 + type: Transform +- uid: 6534 + type: MountainRock + components: + - pos: 162.5,-20.5 + parent: 0 + type: Transform +- uid: 6535 + type: MountainRock + components: + - pos: 162.5,-21.5 + parent: 0 + type: Transform +- uid: 6536 + type: MountainRock + components: + - pos: 162.5,-22.5 + parent: 0 + type: Transform +- uid: 6537 + type: MountainRock + components: + - pos: 162.5,-23.5 + parent: 0 + type: Transform +- uid: 6538 + type: MountainRock + components: + - pos: 162.5,-24.5 + parent: 0 + type: Transform +- uid: 6539 + type: MountainRock + components: + - pos: 162.5,-25.5 + parent: 0 + type: Transform +- uid: 6540 + type: MountainRock + components: + - pos: 162.5,-26.5 + parent: 0 + type: Transform +- uid: 6541 + type: MountainRock + components: + - pos: 162.5,-27.5 + parent: 0 + type: Transform +- uid: 6542 + type: MountainRock + components: + - pos: 162.5,-28.5 + parent: 0 + type: Transform +- uid: 6543 + type: MountainRock + components: + - pos: 162.5,-29.5 + parent: 0 + type: Transform +- uid: 6544 + type: MountainRock + components: + - pos: 162.5,-30.5 + parent: 0 + type: Transform +- uid: 6545 + type: MountainRock + components: + - pos: 162.5,-31.5 + parent: 0 + type: Transform +- uid: 6546 + type: MountainRock + components: + - pos: 162.5,-32.5 + parent: 0 + type: Transform +- uid: 6547 + type: MountainRock + components: + - pos: 162.5,-33.5 + parent: 0 + type: Transform +- uid: 6548 + type: MountainRock + components: + - pos: 162.5,-34.5 + parent: 0 + type: Transform +- uid: 6549 + type: MountainRock + components: + - pos: 162.5,-35.5 + parent: 0 + type: Transform +- uid: 6550 + type: MountainRock + components: + - pos: 162.5,-36.5 + parent: 0 + type: Transform +- uid: 6551 + type: MountainRock + components: + - pos: 162.5,-37.5 + parent: 0 + type: Transform +- uid: 6552 + type: MountainRock + components: + - pos: 162.5,-38.5 + parent: 0 + type: Transform +- uid: 6553 + type: MountainRock + components: + - pos: 162.5,-39.5 + parent: 0 + type: Transform +- uid: 6554 + type: MountainRock + components: + - pos: 162.5,-40.5 + parent: 0 + type: Transform +- uid: 6555 + type: MountainRock + components: + - pos: 162.5,-41.5 + parent: 0 + type: Transform +- uid: 6556 + type: MountainRock + components: + - pos: 162.5,-42.5 + parent: 0 + type: Transform +- uid: 6557 + type: MountainRock + components: + - pos: 162.5,-43.5 + parent: 0 + type: Transform +- uid: 6558 + type: MountainRock + components: + - pos: 162.5,-44.5 + parent: 0 + type: Transform +- uid: 6559 + type: MountainRock + components: + - pos: 162.5,-45.5 + parent: 0 + type: Transform +- uid: 6560 + type: MountainRock + components: + - pos: 162.5,-46.5 + parent: 0 + type: Transform +- uid: 6561 + type: MountainRock + components: + - pos: 163.5,28.5 + parent: 0 + type: Transform +- uid: 6562 + type: MountainRock + components: + - pos: 163.5,27.5 + parent: 0 + type: Transform +- uid: 6563 + type: MountainRock + components: + - pos: 163.5,26.5 + parent: 0 + type: Transform +- uid: 6564 + type: MountainRock + components: + - pos: 163.5,25.5 + parent: 0 + type: Transform +- uid: 6565 + type: MountainRock + components: + - pos: 163.5,24.5 + parent: 0 + type: Transform +- uid: 6566 + type: MountainRock + components: + - pos: 163.5,23.5 + parent: 0 + type: Transform +- uid: 6567 + type: MountainRock + components: + - pos: 163.5,22.5 + parent: 0 + type: Transform +- uid: 6568 + type: MountainRock + components: + - pos: 163.5,21.5 + parent: 0 + type: Transform +- uid: 6569 + type: MountainRock + components: + - pos: 163.5,20.5 + parent: 0 + type: Transform +- uid: 6570 + type: MountainRock + components: + - pos: 163.5,19.5 + parent: 0 + type: Transform +- uid: 6571 + type: MountainRock + components: + - pos: 163.5,18.5 + parent: 0 + type: Transform +- uid: 6572 + type: MountainRock + components: + - pos: 163.5,17.5 + parent: 0 + type: Transform +- uid: 6573 + type: MountainRock + components: + - pos: 163.5,16.5 + parent: 0 + type: Transform +- uid: 6574 + type: MountainRock + components: + - pos: 163.5,15.5 + parent: 0 + type: Transform +- uid: 6575 + type: MountainRock + components: + - pos: 163.5,14.5 + parent: 0 + type: Transform +- uid: 6576 + type: MountainRock + components: + - pos: 163.5,13.5 + parent: 0 + type: Transform +- uid: 6577 + type: MountainRock + components: + - pos: 163.5,12.5 + parent: 0 + type: Transform +- uid: 6578 + type: MountainRock + components: + - pos: 163.5,11.5 + parent: 0 + type: Transform +- uid: 6579 + type: MountainRock + components: + - pos: 163.5,10.5 + parent: 0 + type: Transform +- uid: 6580 + type: MountainRock + components: + - pos: 163.5,9.5 + parent: 0 + type: Transform +- uid: 6581 + type: MountainRock + components: + - pos: 163.5,8.5 + parent: 0 + type: Transform +- uid: 6582 + type: MountainRock + components: + - pos: 163.5,7.5 + parent: 0 + type: Transform +- uid: 6583 + type: MountainRock + components: + - pos: 163.5,6.5 + parent: 0 + type: Transform +- uid: 6584 + type: MountainRock + components: + - pos: 163.5,5.5 + parent: 0 + type: Transform +- uid: 6585 + type: MountainRock + components: + - pos: 163.5,4.5 + parent: 0 + type: Transform +- uid: 6586 + type: MountainRock + components: + - pos: 163.5,3.5 + parent: 0 + type: Transform +- uid: 6587 + type: MountainRock + components: + - pos: 163.5,2.5 + parent: 0 + type: Transform +- uid: 6588 + type: MountainRock + components: + - pos: 163.5,1.5 + parent: 0 + type: Transform +- uid: 6589 + type: MountainRock + components: + - pos: 163.5,0.5 + parent: 0 + type: Transform +- uid: 6590 + type: MountainRock + components: + - pos: 163.5,-0.5 + parent: 0 + type: Transform +- uid: 6591 + type: MountainRock + components: + - pos: 163.5,-1.5 + parent: 0 + type: Transform +- uid: 6592 + type: MountainRock + components: + - pos: 163.5,-2.5 + parent: 0 + type: Transform +- uid: 6593 + type: MountainRock + components: + - pos: 163.5,-3.5 + parent: 0 + type: Transform +- uid: 6594 + type: MountainRock + components: + - pos: 163.5,-4.5 + parent: 0 + type: Transform +- uid: 6595 + type: MountainRock + components: + - pos: 163.5,-5.5 + parent: 0 + type: Transform +- uid: 6596 + type: MountainRock + components: + - pos: 163.5,-6.5 + parent: 0 + type: Transform +- uid: 6597 + type: MountainRock + components: + - pos: 163.5,-7.5 + parent: 0 + type: Transform +- uid: 6598 + type: MountainRock + components: + - pos: 163.5,-8.5 + parent: 0 + type: Transform +- uid: 6599 + type: MountainRock + components: + - pos: 163.5,-9.5 + parent: 0 + type: Transform +- uid: 6600 + type: MountainRock + components: + - pos: 163.5,-10.5 + parent: 0 + type: Transform +- uid: 6601 + type: MountainRock + components: + - pos: 163.5,-11.5 + parent: 0 + type: Transform +- uid: 6602 + type: MountainRock + components: + - pos: 163.5,-12.5 + parent: 0 + type: Transform +- uid: 6603 + type: MountainRock + components: + - pos: 163.5,-13.5 + parent: 0 + type: Transform +- uid: 6604 + type: MountainRock + components: + - pos: 163.5,-14.5 + parent: 0 + type: Transform +- uid: 6605 + type: MountainRock + components: + - pos: 163.5,-15.5 + parent: 0 + type: Transform +- uid: 6606 + type: MountainRock + components: + - pos: 163.5,-16.5 + parent: 0 + type: Transform +- uid: 6607 + type: MountainRock + components: + - pos: 163.5,-17.5 + parent: 0 + type: Transform +- uid: 6608 + type: MountainRock + components: + - pos: 163.5,-18.5 + parent: 0 + type: Transform +- uid: 6609 + type: MountainRock + components: + - pos: 163.5,-19.5 + parent: 0 + type: Transform +- uid: 6610 + type: MountainRock + components: + - pos: 163.5,-20.5 + parent: 0 + type: Transform +- uid: 6611 + type: MountainRock + components: + - pos: 163.5,-21.5 + parent: 0 + type: Transform +- uid: 6612 + type: MountainRock + components: + - pos: 163.5,-22.5 + parent: 0 + type: Transform +- uid: 6613 + type: MountainRock + components: + - pos: 163.5,-23.5 + parent: 0 + type: Transform +- uid: 6614 + type: MountainRock + components: + - pos: 163.5,-24.5 + parent: 0 + type: Transform +- uid: 6615 + type: MountainRock + components: + - pos: 163.5,-25.5 + parent: 0 + type: Transform +- uid: 6616 + type: MountainRock + components: + - pos: 163.5,-26.5 + parent: 0 + type: Transform +- uid: 6617 + type: MountainRock + components: + - pos: 163.5,-27.5 + parent: 0 + type: Transform +- uid: 6618 + type: MountainRock + components: + - pos: 163.5,-28.5 + parent: 0 + type: Transform +- uid: 6619 + type: MountainRock + components: + - pos: 163.5,-29.5 + parent: 0 + type: Transform +- uid: 6620 + type: MountainRock + components: + - pos: 163.5,-30.5 + parent: 0 + type: Transform +- uid: 6621 + type: MountainRock + components: + - pos: 163.5,-31.5 + parent: 0 + type: Transform +- uid: 6622 + type: MountainRock + components: + - pos: 163.5,-32.5 + parent: 0 + type: Transform +- uid: 6623 + type: MountainRock + components: + - pos: 163.5,-33.5 + parent: 0 + type: Transform +- uid: 6624 + type: MountainRock + components: + - pos: 163.5,-34.5 + parent: 0 + type: Transform +- uid: 6625 + type: MountainRock + components: + - pos: 163.5,-35.5 + parent: 0 + type: Transform +- uid: 6626 + type: MountainRock + components: + - pos: 163.5,-36.5 + parent: 0 + type: Transform +- uid: 6627 + type: MountainRock + components: + - pos: 163.5,-37.5 + parent: 0 + type: Transform +- uid: 6628 + type: MountainRock + components: + - pos: 163.5,-38.5 + parent: 0 + type: Transform +- uid: 6629 + type: MountainRock + components: + - pos: 163.5,-39.5 + parent: 0 + type: Transform +- uid: 6630 + type: MountainRock + components: + - pos: 163.5,-40.5 + parent: 0 + type: Transform +- uid: 6631 + type: MountainRock + components: + - pos: 163.5,-41.5 + parent: 0 + type: Transform +- uid: 6632 + type: MountainRock + components: + - pos: 163.5,-42.5 + parent: 0 + type: Transform +- uid: 6633 + type: MountainRock + components: + - pos: 163.5,-43.5 + parent: 0 + type: Transform +- uid: 6634 + type: MountainRock + components: + - pos: 163.5,-44.5 + parent: 0 + type: Transform +- uid: 6635 + type: MountainRock + components: + - pos: 163.5,-45.5 + parent: 0 + type: Transform +- uid: 6636 + type: MountainRock + components: + - pos: 163.5,-46.5 + parent: 0 + type: Transform +- uid: 6637 + type: MountainRock + components: + - pos: 164.5,28.5 + parent: 0 + type: Transform +- uid: 6638 + type: MountainRock + components: + - pos: 164.5,27.5 + parent: 0 + type: Transform +- uid: 6639 + type: MountainRock + components: + - pos: 164.5,26.5 + parent: 0 + type: Transform +- uid: 6640 + type: MountainRock + components: + - pos: 164.5,25.5 + parent: 0 + type: Transform +- uid: 6641 + type: MountainRock + components: + - pos: 164.5,24.5 + parent: 0 + type: Transform +- uid: 6642 + type: MountainRock + components: + - pos: 164.5,23.5 + parent: 0 + type: Transform +- uid: 6643 + type: MountainRock + components: + - pos: 164.5,22.5 + parent: 0 + type: Transform +- uid: 6644 + type: MountainRock + components: + - pos: 164.5,21.5 + parent: 0 + type: Transform +- uid: 6645 + type: MountainRock + components: + - pos: 164.5,20.5 + parent: 0 + type: Transform +- uid: 6646 + type: MountainRock + components: + - pos: 164.5,19.5 + parent: 0 + type: Transform +- uid: 6647 + type: MountainRock + components: + - pos: 164.5,18.5 + parent: 0 + type: Transform +- uid: 6648 + type: MountainRock + components: + - pos: 164.5,17.5 + parent: 0 + type: Transform +- uid: 6649 + type: MountainRock + components: + - pos: 164.5,16.5 + parent: 0 + type: Transform +- uid: 6650 + type: MountainRock + components: + - pos: 164.5,15.5 + parent: 0 + type: Transform +- uid: 6651 + type: MountainRock + components: + - pos: 164.5,14.5 + parent: 0 + type: Transform +- uid: 6652 + type: MountainRock + components: + - pos: 164.5,13.5 + parent: 0 + type: Transform +- uid: 6653 + type: MountainRock + components: + - pos: 164.5,12.5 + parent: 0 + type: Transform +- uid: 6654 + type: MountainRock + components: + - pos: 164.5,11.5 + parent: 0 + type: Transform +- uid: 6655 + type: MountainRock + components: + - pos: 164.5,10.5 + parent: 0 + type: Transform +- uid: 6656 + type: MountainRock + components: + - pos: 164.5,9.5 + parent: 0 + type: Transform +- uid: 6657 + type: MountainRock + components: + - pos: 164.5,8.5 + parent: 0 + type: Transform +- uid: 6658 + type: MountainRock + components: + - pos: 164.5,7.5 + parent: 0 + type: Transform +- uid: 6659 + type: MountainRock + components: + - pos: 164.5,6.5 + parent: 0 + type: Transform +- uid: 6660 + type: MountainRock + components: + - pos: 164.5,5.5 + parent: 0 + type: Transform +- uid: 6661 + type: MountainRock + components: + - pos: 164.5,4.5 + parent: 0 + type: Transform +- uid: 6662 + type: MountainRock + components: + - pos: 164.5,3.5 + parent: 0 + type: Transform +- uid: 6663 + type: MountainRock + components: + - pos: 164.5,2.5 + parent: 0 + type: Transform +- uid: 6664 + type: MountainRock + components: + - pos: 164.5,1.5 + parent: 0 + type: Transform +- uid: 6665 + type: MountainRock + components: + - pos: 164.5,0.5 + parent: 0 + type: Transform +- uid: 6666 + type: MountainRock + components: + - pos: 164.5,-0.5 + parent: 0 + type: Transform +- uid: 6667 + type: MountainRock + components: + - pos: 164.5,-1.5 + parent: 0 + type: Transform +- uid: 6668 + type: MountainRock + components: + - pos: 164.5,-2.5 + parent: 0 + type: Transform +- uid: 6669 + type: MountainRock + components: + - pos: 164.5,-3.5 + parent: 0 + type: Transform +- uid: 6670 + type: MountainRock + components: + - pos: 164.5,-4.5 + parent: 0 + type: Transform +- uid: 6671 + type: MountainRock + components: + - pos: 164.5,-5.5 + parent: 0 + type: Transform +- uid: 6672 + type: MountainRock + components: + - pos: 164.5,-6.5 + parent: 0 + type: Transform +- uid: 6673 + type: MountainRock + components: + - pos: 164.5,-7.5 + parent: 0 + type: Transform +- uid: 6674 + type: MountainRock + components: + - pos: 164.5,-8.5 + parent: 0 + type: Transform +- uid: 6675 + type: MountainRock + components: + - pos: 164.5,-9.5 + parent: 0 + type: Transform +- uid: 6676 + type: MountainRock + components: + - pos: 164.5,-10.5 + parent: 0 + type: Transform +- uid: 6677 + type: MountainRock + components: + - pos: 164.5,-11.5 + parent: 0 + type: Transform +- uid: 6678 + type: MountainRock + components: + - pos: 164.5,-12.5 + parent: 0 + type: Transform +- uid: 6679 + type: MountainRock + components: + - pos: 164.5,-13.5 + parent: 0 + type: Transform +- uid: 6680 + type: MountainRock + components: + - pos: 164.5,-14.5 + parent: 0 + type: Transform +- uid: 6681 + type: MountainRock + components: + - pos: 164.5,-15.5 + parent: 0 + type: Transform +- uid: 6682 + type: MountainRock + components: + - pos: 164.5,-16.5 + parent: 0 + type: Transform +- uid: 6683 + type: MountainRock + components: + - pos: 164.5,-17.5 + parent: 0 + type: Transform +- uid: 6684 + type: MountainRock + components: + - pos: 164.5,-18.5 + parent: 0 + type: Transform +- uid: 6685 + type: MountainRock + components: + - pos: 164.5,-19.5 + parent: 0 + type: Transform +- uid: 6686 + type: MountainRock + components: + - pos: 164.5,-20.5 + parent: 0 + type: Transform +- uid: 6687 + type: MountainRock + components: + - pos: 164.5,-21.5 + parent: 0 + type: Transform +- uid: 6688 + type: MountainRock + components: + - pos: 164.5,-22.5 + parent: 0 + type: Transform +- uid: 6689 + type: MountainRock + components: + - pos: 164.5,-23.5 + parent: 0 + type: Transform +- uid: 6690 + type: MountainRock + components: + - pos: 164.5,-24.5 + parent: 0 + type: Transform +- uid: 6691 + type: MountainRock + components: + - pos: 164.5,-25.5 + parent: 0 + type: Transform +- uid: 6692 + type: MountainRock + components: + - pos: 164.5,-26.5 + parent: 0 + type: Transform +- uid: 6693 + type: MountainRock + components: + - pos: 164.5,-27.5 + parent: 0 + type: Transform +- uid: 6694 + type: MountainRock + components: + - pos: 164.5,-28.5 + parent: 0 + type: Transform +- uid: 6695 + type: MountainRock + components: + - pos: 164.5,-29.5 + parent: 0 + type: Transform +- uid: 6696 + type: MountainRock + components: + - pos: 164.5,-30.5 + parent: 0 + type: Transform +- uid: 6697 + type: MountainRock + components: + - pos: 164.5,-31.5 + parent: 0 + type: Transform +- uid: 6698 + type: MountainRock + components: + - pos: 164.5,-32.5 + parent: 0 + type: Transform +- uid: 6699 + type: MountainRock + components: + - pos: 164.5,-33.5 + parent: 0 + type: Transform +- uid: 6700 + type: MountainRock + components: + - pos: 164.5,-34.5 + parent: 0 + type: Transform +- uid: 6701 + type: MountainRock + components: + - pos: 164.5,-35.5 + parent: 0 + type: Transform +- uid: 6702 + type: MountainRock + components: + - pos: 164.5,-36.5 + parent: 0 + type: Transform +- uid: 6703 + type: MountainRock + components: + - pos: 164.5,-37.5 + parent: 0 + type: Transform +- uid: 6704 + type: MountainRock + components: + - pos: 164.5,-38.5 + parent: 0 + type: Transform +- uid: 6705 + type: MountainRock + components: + - pos: 164.5,-39.5 + parent: 0 + type: Transform +- uid: 6706 + type: MountainRock + components: + - pos: 164.5,-40.5 + parent: 0 + type: Transform +- uid: 6707 + type: MountainRock + components: + - pos: 164.5,-41.5 + parent: 0 + type: Transform +- uid: 6708 + type: MountainRock + components: + - pos: 164.5,-42.5 + parent: 0 + type: Transform +- uid: 6709 + type: MountainRock + components: + - pos: 164.5,-43.5 + parent: 0 + type: Transform +- uid: 6710 + type: MountainRock + components: + - pos: 164.5,-44.5 + parent: 0 + type: Transform +- uid: 6711 + type: MountainRock + components: + - pos: 164.5,-45.5 + parent: 0 + type: Transform +- uid: 6712 + type: MountainRock + components: + - pos: 164.5,-46.5 + parent: 0 + type: Transform +- uid: 6713 + type: MountainRock + components: + - pos: 165.5,28.5 + parent: 0 + type: Transform +- uid: 6714 + type: MountainRock + components: + - pos: 165.5,27.5 + parent: 0 + type: Transform +- uid: 6715 + type: MountainRock + components: + - pos: 165.5,26.5 + parent: 0 + type: Transform +- uid: 6716 + type: MountainRock + components: + - pos: 165.5,25.5 + parent: 0 + type: Transform +- uid: 6717 + type: MountainRock + components: + - pos: 165.5,24.5 + parent: 0 + type: Transform +- uid: 6718 + type: MountainRock + components: + - pos: 165.5,23.5 + parent: 0 + type: Transform +- uid: 6719 + type: MountainRock + components: + - pos: 165.5,22.5 + parent: 0 + type: Transform +- uid: 6720 + type: MountainRock + components: + - pos: 165.5,21.5 + parent: 0 + type: Transform +- uid: 6721 + type: MountainRock + components: + - pos: 165.5,20.5 + parent: 0 + type: Transform +- uid: 6722 + type: MountainRock + components: + - pos: 165.5,19.5 + parent: 0 + type: Transform +- uid: 6723 + type: MountainRock + components: + - pos: 165.5,18.5 + parent: 0 + type: Transform +- uid: 6724 + type: MountainRock + components: + - pos: 165.5,17.5 + parent: 0 + type: Transform +- uid: 6725 + type: MountainRock + components: + - pos: 165.5,16.5 + parent: 0 + type: Transform +- uid: 6726 + type: MountainRock + components: + - pos: 165.5,15.5 + parent: 0 + type: Transform +- uid: 6727 + type: MountainRock + components: + - pos: 165.5,14.5 + parent: 0 + type: Transform +- uid: 6728 + type: MountainRock + components: + - pos: 165.5,13.5 + parent: 0 + type: Transform +- uid: 6729 + type: MountainRock + components: + - pos: 165.5,12.5 + parent: 0 + type: Transform +- uid: 6730 + type: MountainRock + components: + - pos: 165.5,11.5 + parent: 0 + type: Transform +- uid: 6731 + type: MountainRock + components: + - pos: 165.5,10.5 + parent: 0 + type: Transform +- uid: 6732 + type: MountainRock + components: + - pos: 165.5,9.5 + parent: 0 + type: Transform +- uid: 6733 + type: MountainRock + components: + - pos: 165.5,8.5 + parent: 0 + type: Transform +- uid: 6734 + type: MountainRock + components: + - pos: 165.5,7.5 + parent: 0 + type: Transform +- uid: 6735 + type: MountainRock + components: + - pos: 165.5,6.5 + parent: 0 + type: Transform +- uid: 6736 + type: MountainRock + components: + - pos: 165.5,5.5 + parent: 0 + type: Transform +- uid: 6737 + type: MountainRock + components: + - pos: 165.5,4.5 + parent: 0 + type: Transform +- uid: 6738 + type: MountainRock + components: + - pos: 165.5,3.5 + parent: 0 + type: Transform +- uid: 6739 + type: MountainRock + components: + - pos: 165.5,2.5 + parent: 0 + type: Transform +- uid: 6740 + type: MountainRock + components: + - pos: 165.5,1.5 + parent: 0 + type: Transform +- uid: 6741 + type: MountainRock + components: + - pos: 165.5,0.5 + parent: 0 + type: Transform +- uid: 6742 + type: MountainRock + components: + - pos: 165.5,-0.5 + parent: 0 + type: Transform +- uid: 6743 + type: MountainRock + components: + - pos: 165.5,-1.5 + parent: 0 + type: Transform +- uid: 6744 + type: MountainRock + components: + - pos: 165.5,-2.5 + parent: 0 + type: Transform +- uid: 6745 + type: MountainRock + components: + - pos: 165.5,-3.5 + parent: 0 + type: Transform +- uid: 6746 + type: MountainRock + components: + - pos: 165.5,-4.5 + parent: 0 + type: Transform +- uid: 6747 + type: MountainRock + components: + - pos: 165.5,-5.5 + parent: 0 + type: Transform +- uid: 6748 + type: MountainRock + components: + - pos: 165.5,-6.5 + parent: 0 + type: Transform +- uid: 6749 + type: MountainRock + components: + - pos: 165.5,-7.5 + parent: 0 + type: Transform +- uid: 6750 + type: MountainRock + components: + - pos: 165.5,-8.5 + parent: 0 + type: Transform +- uid: 6751 + type: MountainRock + components: + - pos: 165.5,-9.5 + parent: 0 + type: Transform +- uid: 6752 + type: MountainRock + components: + - pos: 165.5,-10.5 + parent: 0 + type: Transform +- uid: 6753 + type: MountainRock + components: + - pos: 165.5,-11.5 + parent: 0 + type: Transform +- uid: 6754 + type: MountainRock + components: + - pos: 165.5,-12.5 + parent: 0 + type: Transform +- uid: 6755 + type: MountainRock + components: + - pos: 165.5,-13.5 + parent: 0 + type: Transform +- uid: 6756 + type: MountainRock + components: + - pos: 165.5,-14.5 + parent: 0 + type: Transform +- uid: 6757 + type: MountainRock + components: + - pos: 165.5,-15.5 + parent: 0 + type: Transform +- uid: 6758 + type: MountainRock + components: + - pos: 165.5,-16.5 + parent: 0 + type: Transform +- uid: 6759 + type: MountainRock + components: + - pos: 165.5,-17.5 + parent: 0 + type: Transform +- uid: 6760 + type: MountainRock + components: + - pos: 165.5,-18.5 + parent: 0 + type: Transform +- uid: 6761 + type: MountainRock + components: + - pos: 165.5,-19.5 + parent: 0 + type: Transform +- uid: 6762 + type: MountainRock + components: + - pos: 165.5,-20.5 + parent: 0 + type: Transform +- uid: 6763 + type: MountainRock + components: + - pos: 165.5,-21.5 + parent: 0 + type: Transform +- uid: 6764 + type: MountainRock + components: + - pos: 165.5,-22.5 + parent: 0 + type: Transform +- uid: 6765 + type: MountainRock + components: + - pos: 165.5,-23.5 + parent: 0 + type: Transform +- uid: 6766 + type: MountainRock + components: + - pos: 165.5,-24.5 + parent: 0 + type: Transform +- uid: 6767 + type: MountainRock + components: + - pos: 165.5,-25.5 + parent: 0 + type: Transform +- uid: 6768 + type: MountainRock + components: + - pos: 165.5,-26.5 + parent: 0 + type: Transform +- uid: 6769 + type: MountainRock + components: + - pos: 165.5,-27.5 + parent: 0 + type: Transform +- uid: 6770 + type: MountainRock + components: + - pos: 165.5,-28.5 + parent: 0 + type: Transform +- uid: 6771 + type: MountainRock + components: + - pos: 165.5,-29.5 + parent: 0 + type: Transform +- uid: 6772 + type: MountainRock + components: + - pos: 165.5,-30.5 + parent: 0 + type: Transform +- uid: 6773 + type: MountainRock + components: + - pos: 165.5,-31.5 + parent: 0 + type: Transform +- uid: 6774 + type: MountainRock + components: + - pos: 165.5,-32.5 + parent: 0 + type: Transform +- uid: 6775 + type: MountainRock + components: + - pos: 165.5,-33.5 + parent: 0 + type: Transform +- uid: 6776 + type: MountainRock + components: + - pos: 165.5,-34.5 + parent: 0 + type: Transform +- uid: 6777 + type: MountainRock + components: + - pos: 165.5,-35.5 + parent: 0 + type: Transform +- uid: 6778 + type: MountainRock + components: + - pos: 165.5,-36.5 + parent: 0 + type: Transform +- uid: 6779 + type: MountainRock + components: + - pos: 165.5,-37.5 + parent: 0 + type: Transform +- uid: 6780 + type: MountainRock + components: + - pos: 165.5,-38.5 + parent: 0 + type: Transform +- uid: 6781 + type: MountainRock + components: + - pos: 165.5,-39.5 + parent: 0 + type: Transform +- uid: 6782 + type: MountainRock + components: + - pos: 165.5,-40.5 + parent: 0 + type: Transform +- uid: 6783 + type: MountainRock + components: + - pos: 165.5,-41.5 + parent: 0 + type: Transform +- uid: 6784 + type: MountainRock + components: + - pos: 165.5,-42.5 + parent: 0 + type: Transform +- uid: 6785 + type: MountainRock + components: + - pos: 165.5,-43.5 + parent: 0 + type: Transform +- uid: 6786 + type: MountainRock + components: + - pos: 165.5,-44.5 + parent: 0 + type: Transform +- uid: 6787 + type: MountainRock + components: + - pos: 165.5,-45.5 + parent: 0 + type: Transform +- uid: 6788 + type: MountainRock + components: + - pos: 165.5,-46.5 + parent: 0 + type: Transform +- uid: 6789 + type: MountainRock + components: + - pos: 166.5,28.5 + parent: 0 + type: Transform +- uid: 6790 + type: MountainRock + components: + - pos: 166.5,27.5 + parent: 0 + type: Transform +- uid: 6791 + type: MountainRock + components: + - pos: 166.5,26.5 + parent: 0 + type: Transform +- uid: 6792 + type: MountainRock + components: + - pos: 166.5,25.5 + parent: 0 + type: Transform +- uid: 6793 + type: MountainRock + components: + - pos: 166.5,24.5 + parent: 0 + type: Transform +- uid: 6794 + type: MountainRock + components: + - pos: 166.5,23.5 + parent: 0 + type: Transform +- uid: 6795 + type: MountainRock + components: + - pos: 166.5,22.5 + parent: 0 + type: Transform +- uid: 6796 + type: MountainRock + components: + - pos: 166.5,21.5 + parent: 0 + type: Transform +- uid: 6797 + type: MountainRock + components: + - pos: 166.5,20.5 + parent: 0 + type: Transform +- uid: 6798 + type: MountainRock + components: + - pos: 166.5,19.5 + parent: 0 + type: Transform +- uid: 6799 + type: MountainRock + components: + - pos: 166.5,18.5 + parent: 0 + type: Transform +- uid: 6800 + type: MountainRock + components: + - pos: 166.5,17.5 + parent: 0 + type: Transform +- uid: 6801 + type: MountainRock + components: + - pos: 166.5,16.5 + parent: 0 + type: Transform +- uid: 6802 + type: MountainRock + components: + - pos: 166.5,15.5 + parent: 0 + type: Transform +- uid: 6803 + type: MountainRock + components: + - pos: 166.5,14.5 + parent: 0 + type: Transform +- uid: 6804 + type: MountainRock + components: + - pos: 166.5,13.5 + parent: 0 + type: Transform +- uid: 6805 + type: MountainRock + components: + - pos: 166.5,12.5 + parent: 0 + type: Transform +- uid: 6806 + type: MountainRock + components: + - pos: 166.5,11.5 + parent: 0 + type: Transform +- uid: 6807 + type: MountainRock + components: + - pos: 166.5,10.5 + parent: 0 + type: Transform +- uid: 6808 + type: MountainRock + components: + - pos: 166.5,9.5 + parent: 0 + type: Transform +- uid: 6809 + type: MountainRock + components: + - pos: 166.5,8.5 + parent: 0 + type: Transform +- uid: 6810 + type: MountainRock + components: + - pos: 166.5,7.5 + parent: 0 + type: Transform +- uid: 6811 + type: MountainRock + components: + - pos: 166.5,6.5 + parent: 0 + type: Transform +- uid: 6812 + type: MountainRock + components: + - pos: 166.5,5.5 + parent: 0 + type: Transform +- uid: 6813 + type: MountainRock + components: + - pos: 166.5,4.5 + parent: 0 + type: Transform +- uid: 6814 + type: MountainRock + components: + - pos: 166.5,3.5 + parent: 0 + type: Transform +- uid: 6815 + type: MountainRock + components: + - pos: 166.5,2.5 + parent: 0 + type: Transform +- uid: 6816 + type: MountainRock + components: + - pos: 166.5,1.5 + parent: 0 + type: Transform +- uid: 6817 + type: MountainRock + components: + - pos: 166.5,0.5 + parent: 0 + type: Transform +- uid: 6818 + type: MountainRock + components: + - pos: 166.5,-0.5 + parent: 0 + type: Transform +- uid: 6819 + type: MountainRock + components: + - pos: 166.5,-1.5 + parent: 0 + type: Transform +- uid: 6820 + type: MountainRock + components: + - pos: 166.5,-2.5 + parent: 0 + type: Transform +- uid: 6821 + type: MountainRock + components: + - pos: 166.5,-3.5 + parent: 0 + type: Transform +- uid: 6822 + type: MountainRock + components: + - pos: 166.5,-4.5 + parent: 0 + type: Transform +- uid: 6823 + type: MountainRock + components: + - pos: 166.5,-5.5 + parent: 0 + type: Transform +- uid: 6824 + type: MountainRock + components: + - pos: 166.5,-6.5 + parent: 0 + type: Transform +- uid: 6825 + type: MountainRock + components: + - pos: 166.5,-7.5 + parent: 0 + type: Transform +- uid: 6826 + type: MountainRock + components: + - pos: 166.5,-8.5 + parent: 0 + type: Transform +- uid: 6827 + type: MountainRock + components: + - pos: 166.5,-9.5 + parent: 0 + type: Transform +- uid: 6828 + type: MountainRock + components: + - pos: 166.5,-10.5 + parent: 0 + type: Transform +- uid: 6829 + type: MountainRock + components: + - pos: 166.5,-11.5 + parent: 0 + type: Transform +- uid: 6830 + type: MountainRock + components: + - pos: 166.5,-12.5 + parent: 0 + type: Transform +- uid: 6831 + type: MountainRock + components: + - pos: 166.5,-13.5 + parent: 0 + type: Transform +- uid: 6832 + type: MountainRock + components: + - pos: 166.5,-14.5 + parent: 0 + type: Transform +- uid: 6833 + type: MountainRock + components: + - pos: 166.5,-15.5 + parent: 0 + type: Transform +- uid: 6834 + type: MountainRock + components: + - pos: 166.5,-16.5 + parent: 0 + type: Transform +- uid: 6835 + type: MountainRock + components: + - pos: 166.5,-17.5 + parent: 0 + type: Transform +- uid: 6836 + type: MountainRock + components: + - pos: 166.5,-18.5 + parent: 0 + type: Transform +- uid: 6837 + type: MountainRock + components: + - pos: 166.5,-19.5 + parent: 0 + type: Transform +- uid: 6838 + type: MountainRock + components: + - pos: 166.5,-20.5 + parent: 0 + type: Transform +- uid: 6839 + type: MountainRock + components: + - pos: 166.5,-21.5 + parent: 0 + type: Transform +- uid: 6840 + type: MountainRock + components: + - pos: 166.5,-22.5 + parent: 0 + type: Transform +- uid: 6841 + type: MountainRock + components: + - pos: 166.5,-23.5 + parent: 0 + type: Transform +- uid: 6842 + type: MountainRock + components: + - pos: 166.5,-24.5 + parent: 0 + type: Transform +- uid: 6843 + type: MountainRock + components: + - pos: 166.5,-25.5 + parent: 0 + type: Transform +- uid: 6844 + type: MountainRock + components: + - pos: 166.5,-26.5 + parent: 0 + type: Transform +- uid: 6845 + type: MountainRock + components: + - pos: 166.5,-27.5 + parent: 0 + type: Transform +- uid: 6846 + type: MountainRock + components: + - pos: 166.5,-28.5 + parent: 0 + type: Transform +- uid: 6847 + type: MountainRock + components: + - pos: 166.5,-29.5 + parent: 0 + type: Transform +- uid: 6848 + type: MountainRock + components: + - pos: 166.5,-30.5 + parent: 0 + type: Transform +- uid: 6849 + type: MountainRock + components: + - pos: 166.5,-31.5 + parent: 0 + type: Transform +- uid: 6850 + type: MountainRock + components: + - pos: 166.5,-32.5 + parent: 0 + type: Transform +- uid: 6851 + type: MountainRock + components: + - pos: 166.5,-33.5 + parent: 0 + type: Transform +- uid: 6852 + type: MountainRock + components: + - pos: 166.5,-34.5 + parent: 0 + type: Transform +- uid: 6853 + type: MountainRock + components: + - pos: 166.5,-35.5 + parent: 0 + type: Transform +- uid: 6854 + type: MountainRock + components: + - pos: 166.5,-36.5 + parent: 0 + type: Transform +- uid: 6855 + type: MountainRock + components: + - pos: 166.5,-37.5 + parent: 0 + type: Transform +- uid: 6856 + type: MountainRock + components: + - pos: 166.5,-38.5 + parent: 0 + type: Transform +- uid: 6857 + type: MountainRock + components: + - pos: 166.5,-39.5 + parent: 0 + type: Transform +- uid: 6858 + type: MountainRock + components: + - pos: 166.5,-40.5 + parent: 0 + type: Transform +- uid: 6859 + type: MountainRock + components: + - pos: 166.5,-41.5 + parent: 0 + type: Transform +- uid: 6860 + type: MountainRock + components: + - pos: 166.5,-42.5 + parent: 0 + type: Transform +- uid: 6861 + type: MountainRock + components: + - pos: 166.5,-43.5 + parent: 0 + type: Transform +- uid: 6862 + type: MountainRock + components: + - pos: 166.5,-44.5 + parent: 0 + type: Transform +- uid: 6863 + type: MountainRock + components: + - pos: 166.5,-45.5 + parent: 0 + type: Transform +- uid: 6864 + type: MountainRock + components: + - pos: 166.5,-46.5 + parent: 0 + type: Transform +- uid: 6865 + type: MountainRock + components: + - pos: 167.5,28.5 + parent: 0 + type: Transform +- uid: 6866 + type: MountainRock + components: + - pos: 167.5,27.5 + parent: 0 + type: Transform +- uid: 6867 + type: MountainRock + components: + - pos: 167.5,26.5 + parent: 0 + type: Transform +- uid: 6868 + type: MountainRock + components: + - pos: 167.5,25.5 + parent: 0 + type: Transform +- uid: 6869 + type: MountainRock + components: + - pos: 167.5,24.5 + parent: 0 + type: Transform +- uid: 6870 + type: MountainRock + components: + - pos: 167.5,23.5 + parent: 0 + type: Transform +- uid: 6871 + type: MountainRock + components: + - pos: 167.5,22.5 + parent: 0 + type: Transform +- uid: 6872 + type: MountainRock + components: + - pos: 167.5,21.5 + parent: 0 + type: Transform +- uid: 6873 + type: MountainRock + components: + - pos: 167.5,20.5 + parent: 0 + type: Transform +- uid: 6874 + type: MountainRock + components: + - pos: 167.5,19.5 + parent: 0 + type: Transform +- uid: 6875 + type: MountainRock + components: + - pos: 167.5,18.5 + parent: 0 + type: Transform +- uid: 6876 + type: MountainRock + components: + - pos: 167.5,17.5 + parent: 0 + type: Transform +- uid: 6877 + type: MountainRock + components: + - pos: 167.5,16.5 + parent: 0 + type: Transform +- uid: 6878 + type: MountainRock + components: + - pos: 167.5,15.5 + parent: 0 + type: Transform +- uid: 6879 + type: MountainRock + components: + - pos: 167.5,14.5 + parent: 0 + type: Transform +- uid: 6880 + type: MountainRock + components: + - pos: 167.5,13.5 + parent: 0 + type: Transform +- uid: 6881 + type: MountainRock + components: + - pos: 167.5,12.5 + parent: 0 + type: Transform +- uid: 6882 + type: MountainRock + components: + - pos: 167.5,11.5 + parent: 0 + type: Transform +- uid: 6883 + type: MountainRock + components: + - pos: 167.5,10.5 + parent: 0 + type: Transform +- uid: 6884 + type: MountainRock + components: + - pos: 167.5,9.5 + parent: 0 + type: Transform +- uid: 6885 + type: MountainRock + components: + - pos: 167.5,8.5 + parent: 0 + type: Transform +- uid: 6886 + type: MountainRock + components: + - pos: 167.5,7.5 + parent: 0 + type: Transform +- uid: 6887 + type: MountainRock + components: + - pos: 167.5,6.5 + parent: 0 + type: Transform +- uid: 6888 + type: MountainRock + components: + - pos: 167.5,5.5 + parent: 0 + type: Transform +- uid: 6889 + type: MountainRock + components: + - pos: 167.5,4.5 + parent: 0 + type: Transform +- uid: 6890 + type: MountainRock + components: + - pos: 167.5,3.5 + parent: 0 + type: Transform +- uid: 6891 + type: MountainRock + components: + - pos: 167.5,2.5 + parent: 0 + type: Transform +- uid: 6892 + type: MountainRock + components: + - pos: 167.5,1.5 + parent: 0 + type: Transform +- uid: 6893 + type: MountainRock + components: + - pos: 167.5,0.5 + parent: 0 + type: Transform +- uid: 6894 + type: MountainRock + components: + - pos: 167.5,-0.5 + parent: 0 + type: Transform +- uid: 6895 + type: MountainRock + components: + - pos: 167.5,-1.5 + parent: 0 + type: Transform +- uid: 6896 + type: MountainRock + components: + - pos: 167.5,-2.5 + parent: 0 + type: Transform +- uid: 6897 + type: MountainRock + components: + - pos: 167.5,-3.5 + parent: 0 + type: Transform +- uid: 6898 + type: MountainRock + components: + - pos: 167.5,-4.5 + parent: 0 + type: Transform +- uid: 6899 + type: MountainRock + components: + - pos: 167.5,-5.5 + parent: 0 + type: Transform +- uid: 6900 + type: MountainRock + components: + - pos: 167.5,-6.5 + parent: 0 + type: Transform +- uid: 6901 + type: MountainRock + components: + - pos: 167.5,-7.5 + parent: 0 + type: Transform +- uid: 6902 + type: MountainRock + components: + - pos: 167.5,-8.5 + parent: 0 + type: Transform +- uid: 6903 + type: MountainRock + components: + - pos: 167.5,-9.5 + parent: 0 + type: Transform +- uid: 6904 + type: MountainRock + components: + - pos: 167.5,-10.5 + parent: 0 + type: Transform +- uid: 6905 + type: MountainRock + components: + - pos: 167.5,-11.5 + parent: 0 + type: Transform +- uid: 6906 + type: MountainRock + components: + - pos: 167.5,-12.5 + parent: 0 + type: Transform +- uid: 6907 + type: MountainRock + components: + - pos: 167.5,-13.5 + parent: 0 + type: Transform +- uid: 6908 + type: MountainRock + components: + - pos: 167.5,-14.5 + parent: 0 + type: Transform +- uid: 6909 + type: MountainRock + components: + - pos: 167.5,-15.5 + parent: 0 + type: Transform +- uid: 6910 + type: MountainRock + components: + - pos: 167.5,-16.5 + parent: 0 + type: Transform +- uid: 6911 + type: MountainRock + components: + - pos: 167.5,-17.5 + parent: 0 + type: Transform +- uid: 6912 + type: MountainRock + components: + - pos: 167.5,-18.5 + parent: 0 + type: Transform +- uid: 6913 + type: MountainRock + components: + - pos: 167.5,-19.5 + parent: 0 + type: Transform +- uid: 6914 + type: MountainRock + components: + - pos: 167.5,-20.5 + parent: 0 + type: Transform +- uid: 6915 + type: MountainRock + components: + - pos: 167.5,-21.5 + parent: 0 + type: Transform +- uid: 6916 + type: MountainRock + components: + - pos: 167.5,-22.5 + parent: 0 + type: Transform +- uid: 6917 + type: MountainRock + components: + - pos: 167.5,-23.5 + parent: 0 + type: Transform +- uid: 6918 + type: MountainRock + components: + - pos: 167.5,-24.5 + parent: 0 + type: Transform +- uid: 6919 + type: MountainRock + components: + - pos: 167.5,-25.5 + parent: 0 + type: Transform +- uid: 6920 + type: MountainRock + components: + - pos: 167.5,-26.5 + parent: 0 + type: Transform +- uid: 6921 + type: MountainRock + components: + - pos: 167.5,-27.5 + parent: 0 + type: Transform +- uid: 6922 + type: MountainRock + components: + - pos: 167.5,-28.5 + parent: 0 + type: Transform +- uid: 6923 + type: MountainRock + components: + - pos: 167.5,-29.5 + parent: 0 + type: Transform +- uid: 6924 + type: MountainRock + components: + - pos: 167.5,-30.5 + parent: 0 + type: Transform +- uid: 6925 + type: MountainRock + components: + - pos: 167.5,-31.5 + parent: 0 + type: Transform +- uid: 6926 + type: MountainRock + components: + - pos: 167.5,-32.5 + parent: 0 + type: Transform +- uid: 6927 + type: MountainRock + components: + - pos: 167.5,-33.5 + parent: 0 + type: Transform +- uid: 6928 + type: MountainRock + components: + - pos: 167.5,-34.5 + parent: 0 + type: Transform +- uid: 6929 + type: MountainRock + components: + - pos: 167.5,-35.5 + parent: 0 + type: Transform +- uid: 6930 + type: MountainRock + components: + - pos: 167.5,-36.5 + parent: 0 + type: Transform +- uid: 6931 + type: MountainRock + components: + - pos: 167.5,-37.5 + parent: 0 + type: Transform +- uid: 6932 + type: MountainRock + components: + - pos: 167.5,-38.5 + parent: 0 + type: Transform +- uid: 6933 + type: MountainRock + components: + - pos: 167.5,-39.5 + parent: 0 + type: Transform +- uid: 6934 + type: MountainRock + components: + - pos: 167.5,-40.5 + parent: 0 + type: Transform +- uid: 6935 + type: MountainRock + components: + - pos: 167.5,-41.5 + parent: 0 + type: Transform +- uid: 6936 + type: MountainRock + components: + - pos: 167.5,-42.5 + parent: 0 + type: Transform +- uid: 6937 + type: MountainRock + components: + - pos: 167.5,-43.5 + parent: 0 + type: Transform +- uid: 6938 + type: MountainRock + components: + - pos: 167.5,-44.5 + parent: 0 + type: Transform +- uid: 6939 + type: MountainRock + components: + - pos: 167.5,-45.5 + parent: 0 + type: Transform +- uid: 6940 + type: MountainRock + components: + - pos: 167.5,-46.5 + parent: 0 + type: Transform +- uid: 6941 + type: MountainRock + components: + - pos: 168.5,28.5 + parent: 0 + type: Transform +- uid: 6942 + type: MountainRock + components: + - pos: 168.5,27.5 + parent: 0 + type: Transform +- uid: 6943 + type: MountainRock + components: + - pos: 168.5,26.5 + parent: 0 + type: Transform +- uid: 6944 + type: MountainRock + components: + - pos: 168.5,25.5 + parent: 0 + type: Transform +- uid: 6945 + type: MountainRock + components: + - pos: 168.5,24.5 + parent: 0 + type: Transform +- uid: 6946 + type: MountainRock + components: + - pos: 168.5,23.5 + parent: 0 + type: Transform +- uid: 6947 + type: MountainRock + components: + - pos: 168.5,22.5 + parent: 0 + type: Transform +- uid: 6948 + type: MountainRock + components: + - pos: 168.5,21.5 + parent: 0 + type: Transform +- uid: 6949 + type: MountainRock + components: + - pos: 168.5,20.5 + parent: 0 + type: Transform +- uid: 6950 + type: MountainRock + components: + - pos: 168.5,19.5 + parent: 0 + type: Transform +- uid: 6951 + type: MountainRock + components: + - pos: 168.5,18.5 + parent: 0 + type: Transform +- uid: 6952 + type: MountainRock + components: + - pos: 168.5,17.5 + parent: 0 + type: Transform +- uid: 6953 + type: MountainRock + components: + - pos: 168.5,16.5 + parent: 0 + type: Transform +- uid: 6954 + type: MountainRock + components: + - pos: 168.5,15.5 + parent: 0 + type: Transform +- uid: 6955 + type: MountainRock + components: + - pos: 168.5,14.5 + parent: 0 + type: Transform +- uid: 6956 + type: MountainRock + components: + - pos: 168.5,13.5 + parent: 0 + type: Transform +- uid: 6957 + type: MountainRock + components: + - pos: 168.5,12.5 + parent: 0 + type: Transform +- uid: 6958 + type: MountainRock + components: + - pos: 168.5,11.5 + parent: 0 + type: Transform +- uid: 6959 + type: MountainRock + components: + - pos: 168.5,10.5 + parent: 0 + type: Transform +- uid: 6960 + type: MountainRock + components: + - pos: 168.5,9.5 + parent: 0 + type: Transform +- uid: 6961 + type: MountainRock + components: + - pos: 168.5,8.5 + parent: 0 + type: Transform +- uid: 6962 + type: MountainRock + components: + - pos: 168.5,7.5 + parent: 0 + type: Transform +- uid: 6963 + type: MountainRock + components: + - pos: 168.5,6.5 + parent: 0 + type: Transform +- uid: 6964 + type: MountainRock + components: + - pos: 168.5,5.5 + parent: 0 + type: Transform +- uid: 6965 + type: MountainRock + components: + - pos: 168.5,4.5 + parent: 0 + type: Transform +- uid: 6966 + type: MountainRock + components: + - pos: 168.5,3.5 + parent: 0 + type: Transform +- uid: 6967 + type: MountainRock + components: + - pos: 168.5,2.5 + parent: 0 + type: Transform +- uid: 6968 + type: MountainRock + components: + - pos: 168.5,1.5 + parent: 0 + type: Transform +- uid: 6969 + type: MountainRock + components: + - pos: 168.5,0.5 + parent: 0 + type: Transform +- uid: 6970 + type: MountainRock + components: + - pos: 168.5,-0.5 + parent: 0 + type: Transform +- uid: 6971 + type: MountainRock + components: + - pos: 168.5,-1.5 + parent: 0 + type: Transform +- uid: 6972 + type: MountainRock + components: + - pos: 168.5,-2.5 + parent: 0 + type: Transform +- uid: 6973 + type: MountainRock + components: + - pos: 168.5,-3.5 + parent: 0 + type: Transform +- uid: 6974 + type: MountainRock + components: + - pos: 168.5,-4.5 + parent: 0 + type: Transform +- uid: 6975 + type: MountainRock + components: + - pos: 168.5,-5.5 + parent: 0 + type: Transform +- uid: 6976 + type: MountainRock + components: + - pos: 168.5,-6.5 + parent: 0 + type: Transform +- uid: 6977 + type: MountainRock + components: + - pos: 168.5,-7.5 + parent: 0 + type: Transform +- uid: 6978 + type: MountainRock + components: + - pos: 168.5,-8.5 + parent: 0 + type: Transform +- uid: 6979 + type: MountainRock + components: + - pos: 168.5,-9.5 + parent: 0 + type: Transform +- uid: 6980 + type: MountainRock + components: + - pos: 168.5,-10.5 + parent: 0 + type: Transform +- uid: 6981 + type: MountainRock + components: + - pos: 168.5,-11.5 + parent: 0 + type: Transform +- uid: 6982 + type: MountainRock + components: + - pos: 168.5,-12.5 + parent: 0 + type: Transform +- uid: 6983 + type: MountainRock + components: + - pos: 168.5,-13.5 + parent: 0 + type: Transform +- uid: 6984 + type: MountainRock + components: + - pos: 168.5,-14.5 + parent: 0 + type: Transform +- uid: 6985 + type: MountainRock + components: + - pos: 168.5,-15.5 + parent: 0 + type: Transform +- uid: 6986 + type: MountainRock + components: + - pos: 168.5,-16.5 + parent: 0 + type: Transform +- uid: 6987 + type: MountainRock + components: + - pos: 168.5,-17.5 + parent: 0 + type: Transform +- uid: 6988 + type: MountainRock + components: + - pos: 168.5,-18.5 + parent: 0 + type: Transform +- uid: 6989 + type: MountainRock + components: + - pos: 168.5,-19.5 + parent: 0 + type: Transform +- uid: 6990 + type: MountainRock + components: + - pos: 168.5,-20.5 + parent: 0 + type: Transform +- uid: 6991 + type: MountainRock + components: + - pos: 168.5,-21.5 + parent: 0 + type: Transform +- uid: 6992 + type: MountainRock + components: + - pos: 168.5,-22.5 + parent: 0 + type: Transform +- uid: 6993 + type: MountainRock + components: + - pos: 168.5,-23.5 + parent: 0 + type: Transform +- uid: 6994 + type: MountainRock + components: + - pos: 168.5,-24.5 + parent: 0 + type: Transform +- uid: 6995 + type: MountainRock + components: + - pos: 168.5,-25.5 + parent: 0 + type: Transform +- uid: 6996 + type: MountainRock + components: + - pos: 168.5,-26.5 + parent: 0 + type: Transform +- uid: 6997 + type: MountainRock + components: + - pos: 168.5,-27.5 + parent: 0 + type: Transform +- uid: 6998 + type: MountainRock + components: + - pos: 168.5,-28.5 + parent: 0 + type: Transform +- uid: 6999 + type: MountainRock + components: + - pos: 168.5,-29.5 + parent: 0 + type: Transform +- uid: 7000 + type: MountainRock + components: + - pos: 168.5,-30.5 + parent: 0 + type: Transform +- uid: 7001 + type: MountainRock + components: + - pos: 168.5,-31.5 + parent: 0 + type: Transform +- uid: 7002 + type: MountainRock + components: + - pos: 168.5,-32.5 + parent: 0 + type: Transform +- uid: 7003 + type: MountainRock + components: + - pos: 168.5,-33.5 + parent: 0 + type: Transform +- uid: 7004 + type: MountainRock + components: + - pos: 168.5,-34.5 + parent: 0 + type: Transform +- uid: 7005 + type: MountainRock + components: + - pos: 168.5,-35.5 + parent: 0 + type: Transform +- uid: 7006 + type: MountainRock + components: + - pos: 168.5,-36.5 + parent: 0 + type: Transform +- uid: 7007 + type: MountainRock + components: + - pos: 168.5,-37.5 + parent: 0 + type: Transform +- uid: 7008 + type: MountainRock + components: + - pos: 168.5,-38.5 + parent: 0 + type: Transform +- uid: 7009 + type: MountainRock + components: + - pos: 168.5,-39.5 + parent: 0 + type: Transform +- uid: 7010 + type: MountainRock + components: + - pos: 168.5,-40.5 + parent: 0 + type: Transform +- uid: 7011 + type: MountainRock + components: + - pos: 168.5,-41.5 + parent: 0 + type: Transform +- uid: 7012 + type: MountainRock + components: + - pos: 168.5,-42.5 + parent: 0 + type: Transform +- uid: 7013 + type: MountainRock + components: + - pos: 168.5,-43.5 + parent: 0 + type: Transform +- uid: 7014 + type: MountainRock + components: + - pos: 168.5,-44.5 + parent: 0 + type: Transform +- uid: 7015 + type: MountainRock + components: + - pos: 168.5,-45.5 + parent: 0 + type: Transform +- uid: 7016 + type: MountainRock + components: + - pos: 168.5,-46.5 + parent: 0 + type: Transform +- uid: 7017 + type: MountainRock + components: + - pos: 169.5,28.5 + parent: 0 + type: Transform +- uid: 7018 + type: MountainRock + components: + - pos: 169.5,27.5 + parent: 0 + type: Transform +- uid: 7019 + type: MountainRock + components: + - pos: 169.5,26.5 + parent: 0 + type: Transform +- uid: 7020 + type: MountainRock + components: + - pos: 169.5,25.5 + parent: 0 + type: Transform +- uid: 7021 + type: MountainRock + components: + - pos: 169.5,24.5 + parent: 0 + type: Transform +- uid: 7022 + type: MountainRock + components: + - pos: 169.5,23.5 + parent: 0 + type: Transform +- uid: 7023 + type: MountainRock + components: + - pos: 169.5,22.5 + parent: 0 + type: Transform +- uid: 7024 + type: MountainRock + components: + - pos: 169.5,21.5 + parent: 0 + type: Transform +- uid: 7025 + type: MountainRock + components: + - pos: 169.5,20.5 + parent: 0 + type: Transform +- uid: 7026 + type: MountainRock + components: + - pos: 169.5,19.5 + parent: 0 + type: Transform +- uid: 7027 + type: MountainRock + components: + - pos: 169.5,18.5 + parent: 0 + type: Transform +- uid: 7028 + type: MountainRock + components: + - pos: 169.5,17.5 + parent: 0 + type: Transform +- uid: 7029 + type: MountainRock + components: + - pos: 169.5,16.5 + parent: 0 + type: Transform +- uid: 7030 + type: MountainRock + components: + - pos: 169.5,15.5 + parent: 0 + type: Transform +- uid: 7031 + type: MountainRock + components: + - pos: 169.5,14.5 + parent: 0 + type: Transform +- uid: 7032 + type: MountainRock + components: + - pos: 169.5,13.5 + parent: 0 + type: Transform +- uid: 7033 + type: MountainRock + components: + - pos: 169.5,12.5 + parent: 0 + type: Transform +- uid: 7034 + type: MountainRock + components: + - pos: 169.5,11.5 + parent: 0 + type: Transform +- uid: 7035 + type: MountainRock + components: + - pos: 169.5,10.5 + parent: 0 + type: Transform +- uid: 7036 + type: MountainRock + components: + - pos: 169.5,9.5 + parent: 0 + type: Transform +- uid: 7037 + type: MountainRock + components: + - pos: 169.5,8.5 + parent: 0 + type: Transform +- uid: 7038 + type: MountainRock + components: + - pos: 169.5,7.5 + parent: 0 + type: Transform +- uid: 7039 + type: MountainRock + components: + - pos: 169.5,6.5 + parent: 0 + type: Transform +- uid: 7040 + type: MountainRock + components: + - pos: 169.5,5.5 + parent: 0 + type: Transform +- uid: 7041 + type: MountainRock + components: + - pos: 169.5,4.5 + parent: 0 + type: Transform +- uid: 7042 + type: MountainRock + components: + - pos: 169.5,3.5 + parent: 0 + type: Transform +- uid: 7043 + type: MountainRock + components: + - pos: 169.5,2.5 + parent: 0 + type: Transform +- uid: 7044 + type: MountainRock + components: + - pos: 169.5,1.5 + parent: 0 + type: Transform +- uid: 7045 + type: MountainRock + components: + - pos: 169.5,0.5 + parent: 0 + type: Transform +- uid: 7046 + type: MountainRock + components: + - pos: 169.5,-0.5 + parent: 0 + type: Transform +- uid: 7047 + type: MountainRock + components: + - pos: 169.5,-1.5 + parent: 0 + type: Transform +- uid: 7048 + type: MountainRock + components: + - pos: 169.5,-2.5 + parent: 0 + type: Transform +- uid: 7049 + type: MountainRock + components: + - pos: 169.5,-3.5 + parent: 0 + type: Transform +- uid: 7050 + type: MountainRock + components: + - pos: 169.5,-4.5 + parent: 0 + type: Transform +- uid: 7051 + type: MountainRock + components: + - pos: 169.5,-5.5 + parent: 0 + type: Transform +- uid: 7052 + type: MountainRock + components: + - pos: 169.5,-6.5 + parent: 0 + type: Transform +- uid: 7053 + type: MountainRock + components: + - pos: 169.5,-7.5 + parent: 0 + type: Transform +- uid: 7054 + type: MountainRock + components: + - pos: 169.5,-8.5 + parent: 0 + type: Transform +- uid: 7055 + type: MountainRock + components: + - pos: 169.5,-9.5 + parent: 0 + type: Transform +- uid: 7056 + type: MountainRock + components: + - pos: 169.5,-10.5 + parent: 0 + type: Transform +- uid: 7057 + type: MountainRock + components: + - pos: 169.5,-11.5 + parent: 0 + type: Transform +- uid: 7058 + type: MountainRock + components: + - pos: 169.5,-12.5 + parent: 0 + type: Transform +- uid: 7059 + type: MountainRock + components: + - pos: 169.5,-13.5 + parent: 0 + type: Transform +- uid: 7060 + type: MountainRock + components: + - pos: 169.5,-14.5 + parent: 0 + type: Transform +- uid: 7061 + type: MountainRock + components: + - pos: 169.5,-15.5 + parent: 0 + type: Transform +- uid: 7062 + type: MountainRock + components: + - pos: 169.5,-16.5 + parent: 0 + type: Transform +- uid: 7063 + type: MountainRock + components: + - pos: 169.5,-17.5 + parent: 0 + type: Transform +- uid: 7064 + type: MountainRock + components: + - pos: 169.5,-18.5 + parent: 0 + type: Transform +- uid: 7065 + type: MountainRock + components: + - pos: 169.5,-19.5 + parent: 0 + type: Transform +- uid: 7066 + type: MountainRock + components: + - pos: 169.5,-20.5 + parent: 0 + type: Transform +- uid: 7067 + type: MountainRock + components: + - pos: 169.5,-21.5 + parent: 0 + type: Transform +- uid: 7068 + type: MountainRock + components: + - pos: 169.5,-22.5 + parent: 0 + type: Transform +- uid: 7069 + type: MountainRock + components: + - pos: 169.5,-23.5 + parent: 0 + type: Transform +- uid: 7070 + type: MountainRock + components: + - pos: 169.5,-24.5 + parent: 0 + type: Transform +- uid: 7071 + type: MountainRock + components: + - pos: 169.5,-25.5 + parent: 0 + type: Transform +- uid: 7072 + type: MountainRock + components: + - pos: 169.5,-26.5 + parent: 0 + type: Transform +- uid: 7073 + type: MountainRock + components: + - pos: 169.5,-27.5 + parent: 0 + type: Transform +- uid: 7074 + type: MountainRock + components: + - pos: 169.5,-28.5 + parent: 0 + type: Transform +- uid: 7075 + type: MountainRock + components: + - pos: 169.5,-29.5 + parent: 0 + type: Transform +- uid: 7076 + type: MountainRock + components: + - pos: 169.5,-30.5 + parent: 0 + type: Transform +- uid: 7077 + type: MountainRock + components: + - pos: 169.5,-31.5 + parent: 0 + type: Transform +- uid: 7078 + type: MountainRock + components: + - pos: 169.5,-32.5 + parent: 0 + type: Transform +- uid: 7079 + type: MountainRock + components: + - pos: 169.5,-33.5 + parent: 0 + type: Transform +- uid: 7080 + type: MountainRock + components: + - pos: 169.5,-34.5 + parent: 0 + type: Transform +- uid: 7081 + type: MountainRock + components: + - pos: 169.5,-35.5 + parent: 0 + type: Transform +- uid: 7082 + type: MountainRock + components: + - pos: 169.5,-36.5 + parent: 0 + type: Transform +- uid: 7083 + type: MountainRock + components: + - pos: 169.5,-37.5 + parent: 0 + type: Transform +- uid: 7084 + type: MountainRock + components: + - pos: 169.5,-38.5 + parent: 0 + type: Transform +- uid: 7085 + type: MountainRock + components: + - pos: 169.5,-39.5 + parent: 0 + type: Transform +- uid: 7086 + type: MountainRock + components: + - pos: 169.5,-40.5 + parent: 0 + type: Transform +- uid: 7087 + type: MountainRock + components: + - pos: 169.5,-41.5 + parent: 0 + type: Transform +- uid: 7088 + type: MountainRock + components: + - pos: 169.5,-42.5 + parent: 0 + type: Transform +- uid: 7089 + type: MountainRock + components: + - pos: 169.5,-43.5 + parent: 0 + type: Transform +- uid: 7090 + type: MountainRock + components: + - pos: 169.5,-44.5 + parent: 0 + type: Transform +- uid: 7091 + type: MountainRock + components: + - pos: 169.5,-45.5 + parent: 0 + type: Transform +- uid: 7092 + type: MountainRock + components: + - pos: 169.5,-46.5 + parent: 0 + type: Transform +- uid: 7093 + type: MountainRock + components: + - pos: 170.5,28.5 + parent: 0 + type: Transform +- uid: 7094 + type: MountainRock + components: + - pos: 170.5,27.5 + parent: 0 + type: Transform +- uid: 7095 + type: MountainRock + components: + - pos: 170.5,26.5 + parent: 0 + type: Transform +- uid: 7096 + type: MountainRock + components: + - pos: 170.5,25.5 + parent: 0 + type: Transform +- uid: 7097 + type: MountainRock + components: + - pos: 170.5,24.5 + parent: 0 + type: Transform +- uid: 7098 + type: MountainRock + components: + - pos: 170.5,23.5 + parent: 0 + type: Transform +- uid: 7099 + type: MountainRock + components: + - pos: 170.5,22.5 + parent: 0 + type: Transform +- uid: 7100 + type: MountainRock + components: + - pos: 170.5,21.5 + parent: 0 + type: Transform +- uid: 7101 + type: MountainRock + components: + - pos: 170.5,20.5 + parent: 0 + type: Transform +- uid: 7102 + type: MountainRock + components: + - pos: 170.5,19.5 + parent: 0 + type: Transform +- uid: 7103 + type: MountainRock + components: + - pos: 170.5,18.5 + parent: 0 + type: Transform +- uid: 7104 + type: MountainRock + components: + - pos: 170.5,17.5 + parent: 0 + type: Transform +- uid: 7105 + type: MountainRock + components: + - pos: 170.5,16.5 + parent: 0 + type: Transform +- uid: 7106 + type: MountainRock + components: + - pos: 170.5,15.5 + parent: 0 + type: Transform +- uid: 7107 + type: MountainRock + components: + - pos: 170.5,14.5 + parent: 0 + type: Transform +- uid: 7108 + type: MountainRock + components: + - pos: 170.5,13.5 + parent: 0 + type: Transform +- uid: 7109 + type: MountainRock + components: + - pos: 170.5,12.5 + parent: 0 + type: Transform +- uid: 7110 + type: MountainRock + components: + - pos: 170.5,11.5 + parent: 0 + type: Transform +- uid: 7111 + type: MountainRock + components: + - pos: 170.5,10.5 + parent: 0 + type: Transform +- uid: 7112 + type: MountainRock + components: + - pos: 170.5,9.5 + parent: 0 + type: Transform +- uid: 7113 + type: MountainRock + components: + - pos: 170.5,8.5 + parent: 0 + type: Transform +- uid: 7114 + type: MountainRock + components: + - pos: 170.5,7.5 + parent: 0 + type: Transform +- uid: 7115 + type: MountainRock + components: + - pos: 170.5,6.5 + parent: 0 + type: Transform +- uid: 7116 + type: MountainRock + components: + - pos: 170.5,5.5 + parent: 0 + type: Transform +- uid: 7117 + type: MountainRock + components: + - pos: 170.5,4.5 + parent: 0 + type: Transform +- uid: 7118 + type: MountainRock + components: + - pos: 170.5,3.5 + parent: 0 + type: Transform +- uid: 7119 + type: MountainRock + components: + - pos: 170.5,2.5 + parent: 0 + type: Transform +- uid: 7120 + type: MountainRock + components: + - pos: 170.5,1.5 + parent: 0 + type: Transform +- uid: 7121 + type: MountainRock + components: + - pos: 170.5,0.5 + parent: 0 + type: Transform +- uid: 7122 + type: MountainRock + components: + - pos: 170.5,-0.5 + parent: 0 + type: Transform +- uid: 7123 + type: MountainRock + components: + - pos: 170.5,-1.5 + parent: 0 + type: Transform +- uid: 7124 + type: MountainRock + components: + - pos: 170.5,-2.5 + parent: 0 + type: Transform +- uid: 7125 + type: MountainRock + components: + - pos: 170.5,-3.5 + parent: 0 + type: Transform +- uid: 7126 + type: MountainRock + components: + - pos: 170.5,-4.5 + parent: 0 + type: Transform +- uid: 7127 + type: MountainRock + components: + - pos: 170.5,-5.5 + parent: 0 + type: Transform +- uid: 7128 + type: MountainRock + components: + - pos: 170.5,-6.5 + parent: 0 + type: Transform +- uid: 7129 + type: MountainRock + components: + - pos: 170.5,-7.5 + parent: 0 + type: Transform +- uid: 7130 + type: MountainRock + components: + - pos: 170.5,-8.5 + parent: 0 + type: Transform +- uid: 7131 + type: MountainRock + components: + - pos: 170.5,-9.5 + parent: 0 + type: Transform +- uid: 7132 + type: MountainRock + components: + - pos: 170.5,-10.5 + parent: 0 + type: Transform +- uid: 7133 + type: MountainRock + components: + - pos: 170.5,-11.5 + parent: 0 + type: Transform +- uid: 7134 + type: MountainRock + components: + - pos: 170.5,-12.5 + parent: 0 + type: Transform +- uid: 7135 + type: MountainRock + components: + - pos: 170.5,-13.5 + parent: 0 + type: Transform +- uid: 7136 + type: MountainRock + components: + - pos: 170.5,-14.5 + parent: 0 + type: Transform +- uid: 7137 + type: MountainRock + components: + - pos: 170.5,-15.5 + parent: 0 + type: Transform +- uid: 7138 + type: MountainRock + components: + - pos: 170.5,-16.5 + parent: 0 + type: Transform +- uid: 7139 + type: MountainRock + components: + - pos: 170.5,-17.5 + parent: 0 + type: Transform +- uid: 7140 + type: MountainRock + components: + - pos: 170.5,-18.5 + parent: 0 + type: Transform +- uid: 7141 + type: MountainRock + components: + - pos: 170.5,-19.5 + parent: 0 + type: Transform +- uid: 7142 + type: MountainRock + components: + - pos: 170.5,-20.5 + parent: 0 + type: Transform +- uid: 7143 + type: MountainRock + components: + - pos: 170.5,-21.5 + parent: 0 + type: Transform +- uid: 7144 + type: MountainRock + components: + - pos: 170.5,-22.5 + parent: 0 + type: Transform +- uid: 7145 + type: MountainRock + components: + - pos: 170.5,-23.5 + parent: 0 + type: Transform +- uid: 7146 + type: MountainRock + components: + - pos: 170.5,-24.5 + parent: 0 + type: Transform +- uid: 7147 + type: MountainRock + components: + - pos: 170.5,-25.5 + parent: 0 + type: Transform +- uid: 7148 + type: MountainRock + components: + - pos: 170.5,-26.5 + parent: 0 + type: Transform +- uid: 7149 + type: MountainRock + components: + - pos: 170.5,-27.5 + parent: 0 + type: Transform +- uid: 7150 + type: MountainRock + components: + - pos: 170.5,-28.5 + parent: 0 + type: Transform +- uid: 7151 + type: MountainRock + components: + - pos: 170.5,-29.5 + parent: 0 + type: Transform +- uid: 7152 + type: MountainRock + components: + - pos: 170.5,-30.5 + parent: 0 + type: Transform +- uid: 7153 + type: MountainRock + components: + - pos: 170.5,-31.5 + parent: 0 + type: Transform +- uid: 7154 + type: MountainRock + components: + - pos: 170.5,-32.5 + parent: 0 + type: Transform +- uid: 7155 + type: MountainRock + components: + - pos: 170.5,-33.5 + parent: 0 + type: Transform +- uid: 7156 + type: MountainRock + components: + - pos: 170.5,-34.5 + parent: 0 + type: Transform +- uid: 7157 + type: MountainRock + components: + - pos: 170.5,-35.5 + parent: 0 + type: Transform +- uid: 7158 + type: MountainRock + components: + - pos: 170.5,-36.5 + parent: 0 + type: Transform +- uid: 7159 + type: MountainRock + components: + - pos: 170.5,-37.5 + parent: 0 + type: Transform +- uid: 7160 + type: MountainRock + components: + - pos: 170.5,-38.5 + parent: 0 + type: Transform +- uid: 7161 + type: MountainRock + components: + - pos: 170.5,-39.5 + parent: 0 + type: Transform +- uid: 7162 + type: MountainRock + components: + - pos: 170.5,-40.5 + parent: 0 + type: Transform +- uid: 7163 + type: MountainRock + components: + - pos: 170.5,-41.5 + parent: 0 + type: Transform +- uid: 7164 + type: MountainRock + components: + - pos: 170.5,-42.5 + parent: 0 + type: Transform +- uid: 7165 + type: MountainRock + components: + - pos: 170.5,-43.5 + parent: 0 + type: Transform +- uid: 7166 + type: MountainRock + components: + - pos: 170.5,-44.5 + parent: 0 + type: Transform +- uid: 7167 + type: MountainRock + components: + - pos: 170.5,-45.5 + parent: 0 + type: Transform +- uid: 7168 + type: MountainRock + components: + - pos: 170.5,-46.5 + parent: 0 + type: Transform +- uid: 7169 + type: MountainRock + components: + - pos: 171.5,28.5 + parent: 0 + type: Transform +- uid: 7170 + type: MountainRock + components: + - pos: 171.5,27.5 + parent: 0 + type: Transform +- uid: 7171 + type: MountainRock + components: + - pos: 171.5,26.5 + parent: 0 + type: Transform +- uid: 7172 + type: MountainRock + components: + - pos: 171.5,25.5 + parent: 0 + type: Transform +- uid: 7173 + type: MountainRock + components: + - pos: 171.5,24.5 + parent: 0 + type: Transform +- uid: 7174 + type: MountainRock + components: + - pos: 171.5,23.5 + parent: 0 + type: Transform +- uid: 7175 + type: MountainRock + components: + - pos: 171.5,22.5 + parent: 0 + type: Transform +- uid: 7176 + type: MountainRock + components: + - pos: 171.5,21.5 + parent: 0 + type: Transform +- uid: 7177 + type: MountainRock + components: + - pos: 171.5,20.5 + parent: 0 + type: Transform +- uid: 7178 + type: MountainRock + components: + - pos: 171.5,19.5 + parent: 0 + type: Transform +- uid: 7179 + type: MountainRock + components: + - pos: 171.5,18.5 + parent: 0 + type: Transform +- uid: 7180 + type: MountainRock + components: + - pos: 171.5,17.5 + parent: 0 + type: Transform +- uid: 7181 + type: MountainRock + components: + - pos: 171.5,16.5 + parent: 0 + type: Transform +- uid: 7182 + type: MountainRock + components: + - pos: 171.5,15.5 + parent: 0 + type: Transform +- uid: 7183 + type: MountainRock + components: + - pos: 171.5,14.5 + parent: 0 + type: Transform +- uid: 7184 + type: MountainRock + components: + - pos: 171.5,13.5 + parent: 0 + type: Transform +- uid: 7185 + type: MountainRock + components: + - pos: 171.5,12.5 + parent: 0 + type: Transform +- uid: 7186 + type: MountainRock + components: + - pos: 171.5,11.5 + parent: 0 + type: Transform +- uid: 7187 + type: MountainRock + components: + - pos: 171.5,10.5 + parent: 0 + type: Transform +- uid: 7188 + type: MountainRock + components: + - pos: 171.5,9.5 + parent: 0 + type: Transform +- uid: 7189 + type: MountainRock + components: + - pos: 171.5,8.5 + parent: 0 + type: Transform +- uid: 7190 + type: MountainRock + components: + - pos: 171.5,7.5 + parent: 0 + type: Transform +- uid: 7191 + type: MountainRock + components: + - pos: 171.5,6.5 + parent: 0 + type: Transform +- uid: 7192 + type: MountainRock + components: + - pos: 171.5,5.5 + parent: 0 + type: Transform +- uid: 7193 + type: MountainRock + components: + - pos: 171.5,4.5 + parent: 0 + type: Transform +- uid: 7194 + type: MountainRock + components: + - pos: 171.5,3.5 + parent: 0 + type: Transform +- uid: 7195 + type: MountainRock + components: + - pos: 171.5,2.5 + parent: 0 + type: Transform +- uid: 7196 + type: MountainRock + components: + - pos: 171.5,1.5 + parent: 0 + type: Transform +- uid: 7197 + type: MountainRock + components: + - pos: 171.5,0.5 + parent: 0 + type: Transform +- uid: 7198 + type: MountainRock + components: + - pos: 171.5,-0.5 + parent: 0 + type: Transform +- uid: 7199 + type: MountainRock + components: + - pos: 171.5,-1.5 + parent: 0 + type: Transform +- uid: 7200 + type: MountainRock + components: + - pos: 171.5,-2.5 + parent: 0 + type: Transform +- uid: 7201 + type: MountainRock + components: + - pos: 171.5,-3.5 + parent: 0 + type: Transform +- uid: 7202 + type: MountainRock + components: + - pos: 171.5,-4.5 + parent: 0 + type: Transform +- uid: 7203 + type: MountainRock + components: + - pos: 171.5,-5.5 + parent: 0 + type: Transform +- uid: 7204 + type: MountainRock + components: + - pos: 171.5,-6.5 + parent: 0 + type: Transform +- uid: 7205 + type: MountainRock + components: + - pos: 171.5,-7.5 + parent: 0 + type: Transform +- uid: 7206 + type: MountainRock + components: + - pos: 171.5,-8.5 + parent: 0 + type: Transform +- uid: 7207 + type: MountainRock + components: + - pos: 171.5,-9.5 + parent: 0 + type: Transform +- uid: 7208 + type: MountainRock + components: + - pos: 171.5,-10.5 + parent: 0 + type: Transform +- uid: 7209 + type: MountainRock + components: + - pos: 171.5,-11.5 + parent: 0 + type: Transform +- uid: 7210 + type: MountainRock + components: + - pos: 171.5,-12.5 + parent: 0 + type: Transform +- uid: 7211 + type: MountainRock + components: + - pos: 171.5,-13.5 + parent: 0 + type: Transform +- uid: 7212 + type: MountainRock + components: + - pos: 171.5,-14.5 + parent: 0 + type: Transform +- uid: 7213 + type: MountainRock + components: + - pos: 171.5,-15.5 + parent: 0 + type: Transform +- uid: 7214 + type: MountainRock + components: + - pos: 171.5,-16.5 + parent: 0 + type: Transform +- uid: 7215 + type: MountainRock + components: + - pos: 171.5,-17.5 + parent: 0 + type: Transform +- uid: 7216 + type: MountainRock + components: + - pos: 171.5,-18.5 + parent: 0 + type: Transform +- uid: 7217 + type: MountainRock + components: + - pos: 171.5,-19.5 + parent: 0 + type: Transform +- uid: 7218 + type: MountainRock + components: + - pos: 171.5,-20.5 + parent: 0 + type: Transform +- uid: 7219 + type: MountainRock + components: + - pos: 171.5,-21.5 + parent: 0 + type: Transform +- uid: 7220 + type: MountainRock + components: + - pos: 171.5,-22.5 + parent: 0 + type: Transform +- uid: 7221 + type: MountainRock + components: + - pos: 171.5,-23.5 + parent: 0 + type: Transform +- uid: 7222 + type: MountainRock + components: + - pos: 171.5,-24.5 + parent: 0 + type: Transform +- uid: 7223 + type: MountainRock + components: + - pos: 171.5,-25.5 + parent: 0 + type: Transform +- uid: 7224 + type: MountainRock + components: + - pos: 171.5,-26.5 + parent: 0 + type: Transform +- uid: 7225 + type: MountainRock + components: + - pos: 171.5,-27.5 + parent: 0 + type: Transform +- uid: 7226 + type: MountainRock + components: + - pos: 171.5,-28.5 + parent: 0 + type: Transform +- uid: 7227 + type: MountainRock + components: + - pos: 171.5,-29.5 + parent: 0 + type: Transform +- uid: 7228 + type: MountainRock + components: + - pos: 171.5,-30.5 + parent: 0 + type: Transform +- uid: 7229 + type: MountainRock + components: + - pos: 171.5,-31.5 + parent: 0 + type: Transform +- uid: 7230 + type: MountainRock + components: + - pos: 171.5,-32.5 + parent: 0 + type: Transform +- uid: 7231 + type: MountainRock + components: + - pos: 171.5,-33.5 + parent: 0 + type: Transform +- uid: 7232 + type: MountainRock + components: + - pos: 171.5,-34.5 + parent: 0 + type: Transform +- uid: 7233 + type: MountainRock + components: + - pos: 171.5,-35.5 + parent: 0 + type: Transform +- uid: 7234 + type: MountainRock + components: + - pos: 171.5,-36.5 + parent: 0 + type: Transform +- uid: 7235 + type: MountainRock + components: + - pos: 171.5,-37.5 + parent: 0 + type: Transform +- uid: 7236 + type: MountainRock + components: + - pos: 171.5,-38.5 + parent: 0 + type: Transform +- uid: 7237 + type: MountainRock + components: + - pos: 171.5,-39.5 + parent: 0 + type: Transform +- uid: 7238 + type: MountainRock + components: + - pos: 171.5,-40.5 + parent: 0 + type: Transform +- uid: 7239 + type: MountainRock + components: + - pos: 171.5,-41.5 + parent: 0 + type: Transform +- uid: 7240 + type: MountainRock + components: + - pos: 171.5,-42.5 + parent: 0 + type: Transform +- uid: 7241 + type: MountainRock + components: + - pos: 171.5,-43.5 + parent: 0 + type: Transform +- uid: 7242 + type: MountainRock + components: + - pos: 171.5,-44.5 + parent: 0 + type: Transform +- uid: 7243 + type: MountainRock + components: + - pos: 171.5,-45.5 + parent: 0 + type: Transform +- uid: 7244 + type: MountainRock + components: + - pos: 171.5,-46.5 + parent: 0 + type: Transform +- uid: 7245 + type: MountainRock + components: + - pos: 172.5,28.5 + parent: 0 + type: Transform +- uid: 7246 + type: MountainRock + components: + - pos: 172.5,27.5 + parent: 0 + type: Transform +- uid: 7247 + type: MountainRock + components: + - pos: 172.5,26.5 + parent: 0 + type: Transform +- uid: 7248 + type: MountainRock + components: + - pos: 172.5,25.5 + parent: 0 + type: Transform +- uid: 7249 + type: MountainRock + components: + - pos: 172.5,24.5 + parent: 0 + type: Transform +- uid: 7250 + type: MountainRock + components: + - pos: 172.5,23.5 + parent: 0 + type: Transform +- uid: 7251 + type: MountainRock + components: + - pos: 172.5,22.5 + parent: 0 + type: Transform +- uid: 7252 + type: MountainRock + components: + - pos: 172.5,21.5 + parent: 0 + type: Transform +- uid: 7253 + type: MountainRock + components: + - pos: 172.5,20.5 + parent: 0 + type: Transform +- uid: 7254 + type: MountainRock + components: + - pos: 172.5,19.5 + parent: 0 + type: Transform +- uid: 7255 + type: MountainRock + components: + - pos: 172.5,18.5 + parent: 0 + type: Transform +- uid: 7256 + type: MountainRock + components: + - pos: 172.5,17.5 + parent: 0 + type: Transform +- uid: 7257 + type: MountainRock + components: + - pos: 172.5,16.5 + parent: 0 + type: Transform +- uid: 7258 + type: MountainRock + components: + - pos: 172.5,15.5 + parent: 0 + type: Transform +- uid: 7259 + type: MountainRock + components: + - pos: 172.5,14.5 + parent: 0 + type: Transform +- uid: 7260 + type: MountainRock + components: + - pos: 172.5,13.5 + parent: 0 + type: Transform +- uid: 7261 + type: MountainRock + components: + - pos: 172.5,12.5 + parent: 0 + type: Transform +- uid: 7262 + type: MountainRock + components: + - pos: 172.5,11.5 + parent: 0 + type: Transform +- uid: 7263 + type: MountainRock + components: + - pos: 172.5,10.5 + parent: 0 + type: Transform +- uid: 7264 + type: MountainRock + components: + - pos: 172.5,9.5 + parent: 0 + type: Transform +- uid: 7265 + type: MountainRock + components: + - pos: 172.5,8.5 + parent: 0 + type: Transform +- uid: 7266 + type: MountainRock + components: + - pos: 172.5,7.5 + parent: 0 + type: Transform +- uid: 7267 + type: MountainRock + components: + - pos: 172.5,6.5 + parent: 0 + type: Transform +- uid: 7268 + type: MountainRock + components: + - pos: 172.5,5.5 + parent: 0 + type: Transform +- uid: 7269 + type: MountainRock + components: + - pos: 172.5,4.5 + parent: 0 + type: Transform +- uid: 7270 + type: MountainRock + components: + - pos: 172.5,3.5 + parent: 0 + type: Transform +- uid: 7271 + type: MountainRock + components: + - pos: 172.5,2.5 + parent: 0 + type: Transform +- uid: 7272 + type: MountainRock + components: + - pos: 172.5,1.5 + parent: 0 + type: Transform +- uid: 7273 + type: MountainRock + components: + - pos: 172.5,0.5 + parent: 0 + type: Transform +- uid: 7274 + type: MountainRock + components: + - pos: 172.5,-0.5 + parent: 0 + type: Transform +- uid: 7275 + type: MountainRock + components: + - pos: 172.5,-1.5 + parent: 0 + type: Transform +- uid: 7276 + type: MountainRock + components: + - pos: 172.5,-2.5 + parent: 0 + type: Transform +- uid: 7277 + type: MountainRock + components: + - pos: 172.5,-3.5 + parent: 0 + type: Transform +- uid: 7278 + type: MountainRock + components: + - pos: 172.5,-4.5 + parent: 0 + type: Transform +- uid: 7279 + type: MountainRock + components: + - pos: 172.5,-5.5 + parent: 0 + type: Transform +- uid: 7280 + type: MountainRock + components: + - pos: 172.5,-6.5 + parent: 0 + type: Transform +- uid: 7281 + type: MountainRock + components: + - pos: 172.5,-7.5 + parent: 0 + type: Transform +- uid: 7282 + type: MountainRock + components: + - pos: 172.5,-8.5 + parent: 0 + type: Transform +- uid: 7283 + type: MountainRock + components: + - pos: 172.5,-9.5 + parent: 0 + type: Transform +- uid: 7284 + type: MountainRock + components: + - pos: 172.5,-10.5 + parent: 0 + type: Transform +- uid: 7285 + type: MountainRock + components: + - pos: 172.5,-11.5 + parent: 0 + type: Transform +- uid: 7286 + type: MountainRock + components: + - pos: 172.5,-12.5 + parent: 0 + type: Transform +- uid: 7287 + type: MountainRock + components: + - pos: 172.5,-13.5 + parent: 0 + type: Transform +- uid: 7288 + type: MountainRock + components: + - pos: 172.5,-14.5 + parent: 0 + type: Transform +- uid: 7289 + type: MountainRock + components: + - pos: 172.5,-15.5 + parent: 0 + type: Transform +- uid: 7290 + type: MountainRock + components: + - pos: 172.5,-16.5 + parent: 0 + type: Transform +- uid: 7291 + type: MountainRock + components: + - pos: 172.5,-17.5 + parent: 0 + type: Transform +- uid: 7292 + type: MountainRock + components: + - pos: 172.5,-18.5 + parent: 0 + type: Transform +- uid: 7293 + type: MountainRock + components: + - pos: 172.5,-19.5 + parent: 0 + type: Transform +- uid: 7294 + type: MountainRock + components: + - pos: 172.5,-20.5 + parent: 0 + type: Transform +- uid: 7295 + type: MountainRock + components: + - pos: 172.5,-21.5 + parent: 0 + type: Transform +- uid: 7296 + type: MountainRock + components: + - pos: 172.5,-22.5 + parent: 0 + type: Transform +- uid: 7297 + type: MountainRock + components: + - pos: 172.5,-23.5 + parent: 0 + type: Transform +- uid: 7298 + type: MountainRock + components: + - pos: 172.5,-24.5 + parent: 0 + type: Transform +- uid: 7299 + type: MountainRock + components: + - pos: 172.5,-25.5 + parent: 0 + type: Transform +- uid: 7300 + type: MountainRock + components: + - pos: 172.5,-26.5 + parent: 0 + type: Transform +- uid: 7301 + type: MountainRock + components: + - pos: 172.5,-27.5 + parent: 0 + type: Transform +- uid: 7302 + type: MountainRock + components: + - pos: 172.5,-28.5 + parent: 0 + type: Transform +- uid: 7303 + type: MountainRock + components: + - pos: 172.5,-29.5 + parent: 0 + type: Transform +- uid: 7304 + type: MountainRock + components: + - pos: 172.5,-30.5 + parent: 0 + type: Transform +- uid: 7305 + type: MountainRock + components: + - pos: 172.5,-31.5 + parent: 0 + type: Transform +- uid: 7306 + type: MountainRock + components: + - pos: 172.5,-32.5 + parent: 0 + type: Transform +- uid: 7307 + type: MountainRock + components: + - pos: 172.5,-33.5 + parent: 0 + type: Transform +- uid: 7308 + type: MountainRock + components: + - pos: 172.5,-34.5 + parent: 0 + type: Transform +- uid: 7309 + type: MountainRock + components: + - pos: 172.5,-35.5 + parent: 0 + type: Transform +- uid: 7310 + type: MountainRock + components: + - pos: 172.5,-36.5 + parent: 0 + type: Transform +- uid: 7311 + type: MountainRock + components: + - pos: 172.5,-37.5 + parent: 0 + type: Transform +- uid: 7312 + type: MountainRock + components: + - pos: 172.5,-38.5 + parent: 0 + type: Transform +- uid: 7313 + type: MountainRock + components: + - pos: 172.5,-39.5 + parent: 0 + type: Transform +- uid: 7314 + type: MountainRock + components: + - pos: 172.5,-40.5 + parent: 0 + type: Transform +- uid: 7315 + type: MountainRock + components: + - pos: 172.5,-41.5 + parent: 0 + type: Transform +- uid: 7316 + type: MountainRock + components: + - pos: 172.5,-42.5 + parent: 0 + type: Transform +- uid: 7317 + type: MountainRock + components: + - pos: 172.5,-43.5 + parent: 0 + type: Transform +- uid: 7318 + type: MountainRock + components: + - pos: 172.5,-44.5 + parent: 0 + type: Transform +- uid: 7319 + type: MountainRock + components: + - pos: 172.5,-45.5 + parent: 0 + type: Transform +- uid: 7320 + type: MountainRock + components: + - pos: 172.5,-46.5 + parent: 0 + type: Transform +- uid: 7321 + type: MountainRock + components: + - pos: 173.5,28.5 + parent: 0 + type: Transform +- uid: 7322 + type: MountainRock + components: + - pos: 173.5,27.5 + parent: 0 + type: Transform +- uid: 7323 + type: MountainRock + components: + - pos: 173.5,26.5 + parent: 0 + type: Transform +- uid: 7324 + type: MountainRock + components: + - pos: 173.5,25.5 + parent: 0 + type: Transform +- uid: 7325 + type: MountainRock + components: + - pos: 173.5,24.5 + parent: 0 + type: Transform +- uid: 7326 + type: MountainRock + components: + - pos: 173.5,23.5 + parent: 0 + type: Transform +- uid: 7327 + type: MountainRock + components: + - pos: 173.5,22.5 + parent: 0 + type: Transform +- uid: 7328 + type: MountainRock + components: + - pos: 173.5,21.5 + parent: 0 + type: Transform +- uid: 7329 + type: MountainRock + components: + - pos: 173.5,20.5 + parent: 0 + type: Transform +- uid: 7330 + type: MountainRock + components: + - pos: 173.5,19.5 + parent: 0 + type: Transform +- uid: 7331 + type: MountainRock + components: + - pos: 173.5,18.5 + parent: 0 + type: Transform +- uid: 7332 + type: MountainRock + components: + - pos: 173.5,17.5 + parent: 0 + type: Transform +- uid: 7333 + type: MountainRock + components: + - pos: 173.5,16.5 + parent: 0 + type: Transform +- uid: 7334 + type: MountainRock + components: + - pos: 173.5,15.5 + parent: 0 + type: Transform +- uid: 7335 + type: MountainRock + components: + - pos: 173.5,14.5 + parent: 0 + type: Transform +- uid: 7336 + type: MountainRock + components: + - pos: 173.5,13.5 + parent: 0 + type: Transform +- uid: 7337 + type: MountainRock + components: + - pos: 173.5,12.5 + parent: 0 + type: Transform +- uid: 7338 + type: MountainRock + components: + - pos: 173.5,11.5 + parent: 0 + type: Transform +- uid: 7339 + type: MountainRock + components: + - pos: 173.5,10.5 + parent: 0 + type: Transform +- uid: 7340 + type: MountainRock + components: + - pos: 173.5,9.5 + parent: 0 + type: Transform +- uid: 7341 + type: MountainRock + components: + - pos: 173.5,8.5 + parent: 0 + type: Transform +- uid: 7342 + type: MountainRock + components: + - pos: 173.5,7.5 + parent: 0 + type: Transform +- uid: 7343 + type: MountainRock + components: + - pos: 173.5,6.5 + parent: 0 + type: Transform +- uid: 7344 + type: MountainRock + components: + - pos: 173.5,5.5 + parent: 0 + type: Transform +- uid: 7345 + type: MountainRock + components: + - pos: 173.5,4.5 + parent: 0 + type: Transform +- uid: 7346 + type: MountainRock + components: + - pos: 173.5,3.5 + parent: 0 + type: Transform +- uid: 7347 + type: MountainRock + components: + - pos: 173.5,2.5 + parent: 0 + type: Transform +- uid: 7348 + type: MountainRock + components: + - pos: 173.5,1.5 + parent: 0 + type: Transform +- uid: 7349 + type: MountainRock + components: + - pos: 173.5,0.5 + parent: 0 + type: Transform +- uid: 7350 + type: MountainRock + components: + - pos: 173.5,-0.5 + parent: 0 + type: Transform +- uid: 7351 + type: MountainRock + components: + - pos: 173.5,-1.5 + parent: 0 + type: Transform +- uid: 7352 + type: MountainRock + components: + - pos: 173.5,-2.5 + parent: 0 + type: Transform +- uid: 7353 + type: MountainRock + components: + - pos: 173.5,-3.5 + parent: 0 + type: Transform +- uid: 7354 + type: MountainRock + components: + - pos: 173.5,-4.5 + parent: 0 + type: Transform +- uid: 7355 + type: MountainRock + components: + - pos: 173.5,-5.5 + parent: 0 + type: Transform +- uid: 7356 + type: MountainRock + components: + - pos: 173.5,-6.5 + parent: 0 + type: Transform +- uid: 7357 + type: MountainRock + components: + - pos: 173.5,-7.5 + parent: 0 + type: Transform +- uid: 7358 + type: MountainRock + components: + - pos: 173.5,-8.5 + parent: 0 + type: Transform +- uid: 7359 + type: MountainRock + components: + - pos: 173.5,-9.5 + parent: 0 + type: Transform +- uid: 7360 + type: MountainRock + components: + - pos: 173.5,-10.5 + parent: 0 + type: Transform +- uid: 7361 + type: MountainRock + components: + - pos: 173.5,-11.5 + parent: 0 + type: Transform +- uid: 7362 + type: MountainRock + components: + - pos: 173.5,-12.5 + parent: 0 + type: Transform +- uid: 7363 + type: MountainRock + components: + - pos: 173.5,-13.5 + parent: 0 + type: Transform +- uid: 7364 + type: MountainRock + components: + - pos: 173.5,-14.5 + parent: 0 + type: Transform +- uid: 7365 + type: MountainRock + components: + - pos: 173.5,-15.5 + parent: 0 + type: Transform +- uid: 7366 + type: MountainRock + components: + - pos: 173.5,-16.5 + parent: 0 + type: Transform +- uid: 7367 + type: MountainRock + components: + - pos: 173.5,-17.5 + parent: 0 + type: Transform +- uid: 7368 + type: MountainRock + components: + - pos: 173.5,-18.5 + parent: 0 + type: Transform +- uid: 7369 + type: MountainRock + components: + - pos: 173.5,-19.5 + parent: 0 + type: Transform +- uid: 7370 + type: MountainRock + components: + - pos: 173.5,-20.5 + parent: 0 + type: Transform +- uid: 7371 + type: MountainRock + components: + - pos: 173.5,-21.5 + parent: 0 + type: Transform +- uid: 7372 + type: MountainRock + components: + - pos: 173.5,-22.5 + parent: 0 + type: Transform +- uid: 7373 + type: MountainRock + components: + - pos: 173.5,-23.5 + parent: 0 + type: Transform +- uid: 7374 + type: MountainRock + components: + - pos: 173.5,-24.5 + parent: 0 + type: Transform +- uid: 7375 + type: MountainRock + components: + - pos: 173.5,-25.5 + parent: 0 + type: Transform +- uid: 7376 + type: MountainRock + components: + - pos: 173.5,-26.5 + parent: 0 + type: Transform +- uid: 7377 + type: MountainRock + components: + - pos: 173.5,-27.5 + parent: 0 + type: Transform +- uid: 7378 + type: MountainRock + components: + - pos: 173.5,-28.5 + parent: 0 + type: Transform +- uid: 7379 + type: MountainRock + components: + - pos: 173.5,-29.5 + parent: 0 + type: Transform +- uid: 7380 + type: MountainRock + components: + - pos: 173.5,-30.5 + parent: 0 + type: Transform +- uid: 7381 + type: MountainRock + components: + - pos: 173.5,-31.5 + parent: 0 + type: Transform +- uid: 7382 + type: MountainRock + components: + - pos: 173.5,-32.5 + parent: 0 + type: Transform +- uid: 7383 + type: MountainRock + components: + - pos: 173.5,-33.5 + parent: 0 + type: Transform +- uid: 7384 + type: MountainRock + components: + - pos: 173.5,-34.5 + parent: 0 + type: Transform +- uid: 7385 + type: MountainRock + components: + - pos: 173.5,-35.5 + parent: 0 + type: Transform +- uid: 7386 + type: MountainRock + components: + - pos: 173.5,-36.5 + parent: 0 + type: Transform +- uid: 7387 + type: MountainRock + components: + - pos: 173.5,-37.5 + parent: 0 + type: Transform +- uid: 7388 + type: MountainRock + components: + - pos: 173.5,-38.5 + parent: 0 + type: Transform +- uid: 7389 + type: MountainRock + components: + - pos: 173.5,-39.5 + parent: 0 + type: Transform +- uid: 7390 + type: MountainRock + components: + - pos: 173.5,-40.5 + parent: 0 + type: Transform +- uid: 7391 + type: MountainRock + components: + - pos: 173.5,-41.5 + parent: 0 + type: Transform +- uid: 7392 + type: MountainRock + components: + - pos: 173.5,-42.5 + parent: 0 + type: Transform +- uid: 7393 + type: MountainRock + components: + - pos: 173.5,-43.5 + parent: 0 + type: Transform +- uid: 7394 + type: MountainRock + components: + - pos: 173.5,-44.5 + parent: 0 + type: Transform +- uid: 7395 + type: MountainRock + components: + - pos: 173.5,-45.5 + parent: 0 + type: Transform +- uid: 7396 + type: MountainRock + components: + - pos: 173.5,-46.5 + parent: 0 + type: Transform +- uid: 7397 + type: MountainRock + components: + - pos: 174.5,28.5 + parent: 0 + type: Transform +- uid: 7398 + type: MountainRock + components: + - pos: 174.5,27.5 + parent: 0 + type: Transform +- uid: 7399 + type: MountainRock + components: + - pos: 174.5,26.5 + parent: 0 + type: Transform +- uid: 7400 + type: MountainRock + components: + - pos: 174.5,25.5 + parent: 0 + type: Transform +- uid: 7401 + type: MountainRock + components: + - pos: 174.5,24.5 + parent: 0 + type: Transform +- uid: 7402 + type: MountainRock + components: + - pos: 174.5,23.5 + parent: 0 + type: Transform +- uid: 7403 + type: MountainRock + components: + - pos: 174.5,22.5 + parent: 0 + type: Transform +- uid: 7404 + type: MountainRock + components: + - pos: 174.5,21.5 + parent: 0 + type: Transform +- uid: 7405 + type: MountainRock + components: + - pos: 174.5,20.5 + parent: 0 + type: Transform +- uid: 7406 + type: MountainRock + components: + - pos: 174.5,19.5 + parent: 0 + type: Transform +- uid: 7407 + type: MountainRock + components: + - pos: 174.5,18.5 + parent: 0 + type: Transform +- uid: 7408 + type: MountainRock + components: + - pos: 174.5,17.5 + parent: 0 + type: Transform +- uid: 7409 + type: MountainRock + components: + - pos: 174.5,16.5 + parent: 0 + type: Transform +- uid: 7410 + type: MountainRock + components: + - pos: 174.5,15.5 + parent: 0 + type: Transform +- uid: 7411 + type: MountainRock + components: + - pos: 174.5,14.5 + parent: 0 + type: Transform +- uid: 7412 + type: MountainRock + components: + - pos: 174.5,13.5 + parent: 0 + type: Transform +- uid: 7413 + type: MountainRock + components: + - pos: 174.5,12.5 + parent: 0 + type: Transform +- uid: 7414 + type: MountainRock + components: + - pos: 174.5,11.5 + parent: 0 + type: Transform +- uid: 7415 + type: MountainRock + components: + - pos: 174.5,10.5 + parent: 0 + type: Transform +- uid: 7416 + type: MountainRock + components: + - pos: 174.5,9.5 + parent: 0 + type: Transform +- uid: 7417 + type: MountainRock + components: + - pos: 174.5,8.5 + parent: 0 + type: Transform +- uid: 7418 + type: MountainRock + components: + - pos: 174.5,7.5 + parent: 0 + type: Transform +- uid: 7419 + type: MountainRock + components: + - pos: 174.5,6.5 + parent: 0 + type: Transform +- uid: 7420 + type: MountainRock + components: + - pos: 174.5,5.5 + parent: 0 + type: Transform +- uid: 7421 + type: MountainRock + components: + - pos: 174.5,4.5 + parent: 0 + type: Transform +- uid: 7422 + type: MountainRock + components: + - pos: 174.5,3.5 + parent: 0 + type: Transform +- uid: 7423 + type: MountainRock + components: + - pos: 174.5,2.5 + parent: 0 + type: Transform +- uid: 7424 + type: MountainRock + components: + - pos: 174.5,1.5 + parent: 0 + type: Transform +- uid: 7425 + type: MountainRock + components: + - pos: 174.5,0.5 + parent: 0 + type: Transform +- uid: 7426 + type: MountainRock + components: + - pos: 174.5,-0.5 + parent: 0 + type: Transform +- uid: 7427 + type: MountainRock + components: + - pos: 174.5,-1.5 + parent: 0 + type: Transform +- uid: 7428 + type: MountainRock + components: + - pos: 174.5,-2.5 + parent: 0 + type: Transform +- uid: 7429 + type: MountainRock + components: + - pos: 174.5,-3.5 + parent: 0 + type: Transform +- uid: 7430 + type: MountainRock + components: + - pos: 174.5,-4.5 + parent: 0 + type: Transform +- uid: 7431 + type: MountainRock + components: + - pos: 174.5,-5.5 + parent: 0 + type: Transform +- uid: 7432 + type: MountainRock + components: + - pos: 174.5,-6.5 + parent: 0 + type: Transform +- uid: 7433 + type: MountainRock + components: + - pos: 174.5,-7.5 + parent: 0 + type: Transform +- uid: 7434 + type: MountainRock + components: + - pos: 174.5,-8.5 + parent: 0 + type: Transform +- uid: 7435 + type: MountainRock + components: + - pos: 174.5,-9.5 + parent: 0 + type: Transform +- uid: 7436 + type: MountainRock + components: + - pos: 174.5,-10.5 + parent: 0 + type: Transform +- uid: 7437 + type: MountainRock + components: + - pos: 174.5,-11.5 + parent: 0 + type: Transform +- uid: 7438 + type: MountainRock + components: + - pos: 174.5,-12.5 + parent: 0 + type: Transform +- uid: 7439 + type: MountainRock + components: + - pos: 174.5,-13.5 + parent: 0 + type: Transform +- uid: 7440 + type: MountainRock + components: + - pos: 174.5,-14.5 + parent: 0 + type: Transform +- uid: 7441 + type: MountainRock + components: + - pos: 174.5,-15.5 + parent: 0 + type: Transform +- uid: 7442 + type: MountainRock + components: + - pos: 174.5,-16.5 + parent: 0 + type: Transform +- uid: 7443 + type: MountainRock + components: + - pos: 174.5,-17.5 + parent: 0 + type: Transform +- uid: 7444 + type: MountainRock + components: + - pos: 174.5,-18.5 + parent: 0 + type: Transform +- uid: 7445 + type: MountainRock + components: + - pos: 174.5,-19.5 + parent: 0 + type: Transform +- uid: 7446 + type: MountainRock + components: + - pos: 174.5,-20.5 + parent: 0 + type: Transform +- uid: 7447 + type: MountainRock + components: + - pos: 174.5,-21.5 + parent: 0 + type: Transform +- uid: 7448 + type: MountainRock + components: + - pos: 174.5,-22.5 + parent: 0 + type: Transform +- uid: 7449 + type: MountainRock + components: + - pos: 174.5,-23.5 + parent: 0 + type: Transform +- uid: 7450 + type: MountainRock + components: + - pos: 174.5,-24.5 + parent: 0 + type: Transform +- uid: 7451 + type: MountainRock + components: + - pos: 174.5,-25.5 + parent: 0 + type: Transform +- uid: 7452 + type: MountainRock + components: + - pos: 174.5,-26.5 + parent: 0 + type: Transform +- uid: 7453 + type: MountainRock + components: + - pos: 174.5,-27.5 + parent: 0 + type: Transform +- uid: 7454 + type: MountainRock + components: + - pos: 174.5,-28.5 + parent: 0 + type: Transform +- uid: 7455 + type: MountainRock + components: + - pos: 174.5,-29.5 + parent: 0 + type: Transform +- uid: 7456 + type: MountainRock + components: + - pos: 174.5,-30.5 + parent: 0 + type: Transform +- uid: 7457 + type: MountainRock + components: + - pos: 174.5,-31.5 + parent: 0 + type: Transform +- uid: 7458 + type: MountainRock + components: + - pos: 174.5,-32.5 + parent: 0 + type: Transform +- uid: 7459 + type: MountainRock + components: + - pos: 174.5,-33.5 + parent: 0 + type: Transform +- uid: 7460 + type: MountainRock + components: + - pos: 174.5,-34.5 + parent: 0 + type: Transform +- uid: 7461 + type: MountainRock + components: + - pos: 174.5,-35.5 + parent: 0 + type: Transform +- uid: 7462 + type: MountainRock + components: + - pos: 174.5,-36.5 + parent: 0 + type: Transform +- uid: 7463 + type: MountainRock + components: + - pos: 174.5,-37.5 + parent: 0 + type: Transform +- uid: 7464 + type: MountainRock + components: + - pos: 174.5,-38.5 + parent: 0 + type: Transform +- uid: 7465 + type: MountainRock + components: + - pos: 174.5,-39.5 + parent: 0 + type: Transform +- uid: 7466 + type: MountainRock + components: + - pos: 174.5,-40.5 + parent: 0 + type: Transform +- uid: 7467 + type: MountainRock + components: + - pos: 174.5,-41.5 + parent: 0 + type: Transform +- uid: 7468 + type: MountainRock + components: + - pos: 174.5,-42.5 + parent: 0 + type: Transform +- uid: 7469 + type: MountainRock + components: + - pos: 174.5,-43.5 + parent: 0 + type: Transform +- uid: 7470 + type: MountainRock + components: + - pos: 174.5,-44.5 + parent: 0 + type: Transform +- uid: 7471 + type: MountainRock + components: + - pos: 174.5,-45.5 + parent: 0 + type: Transform +- uid: 7472 + type: MountainRock + components: + - pos: 174.5,-46.5 + parent: 0 + type: Transform +- uid: 7473 + type: MountainRock + components: + - pos: 175.5,28.5 + parent: 0 + type: Transform +- uid: 7474 + type: MountainRock + components: + - pos: 175.5,27.5 + parent: 0 + type: Transform +- uid: 7475 + type: MountainRock + components: + - pos: 175.5,26.5 + parent: 0 + type: Transform +- uid: 7476 + type: MountainRock + components: + - pos: 175.5,25.5 + parent: 0 + type: Transform +- uid: 7477 + type: MountainRock + components: + - pos: 175.5,24.5 + parent: 0 + type: Transform +- uid: 7478 + type: MountainRock + components: + - pos: 175.5,23.5 + parent: 0 + type: Transform +- uid: 7479 + type: MountainRock + components: + - pos: 175.5,22.5 + parent: 0 + type: Transform +- uid: 7480 + type: MountainRock + components: + - pos: 175.5,21.5 + parent: 0 + type: Transform +- uid: 7481 + type: MountainRock + components: + - pos: 175.5,20.5 + parent: 0 + type: Transform +- uid: 7482 + type: MountainRock + components: + - pos: 175.5,19.5 + parent: 0 + type: Transform +- uid: 7483 + type: MountainRock + components: + - pos: 175.5,18.5 + parent: 0 + type: Transform +- uid: 7484 + type: MountainRock + components: + - pos: 175.5,17.5 + parent: 0 + type: Transform +- uid: 7485 + type: MountainRock + components: + - pos: 175.5,16.5 + parent: 0 + type: Transform +- uid: 7486 + type: MountainRock + components: + - pos: 175.5,15.5 + parent: 0 + type: Transform +- uid: 7487 + type: MountainRock + components: + - pos: 175.5,14.5 + parent: 0 + type: Transform +- uid: 7488 + type: MountainRock + components: + - pos: 175.5,13.5 + parent: 0 + type: Transform +- uid: 7489 + type: MountainRock + components: + - pos: 175.5,12.5 + parent: 0 + type: Transform +- uid: 7490 + type: MountainRock + components: + - pos: 175.5,11.5 + parent: 0 + type: Transform +- uid: 7491 + type: MountainRock + components: + - pos: 175.5,10.5 + parent: 0 + type: Transform +- uid: 7492 + type: MountainRock + components: + - pos: 175.5,9.5 + parent: 0 + type: Transform +- uid: 7493 + type: MountainRock + components: + - pos: 175.5,8.5 + parent: 0 + type: Transform +- uid: 7494 + type: MountainRock + components: + - pos: 175.5,7.5 + parent: 0 + type: Transform +- uid: 7495 + type: MountainRock + components: + - pos: 175.5,6.5 + parent: 0 + type: Transform +- uid: 7496 + type: MountainRock + components: + - pos: 175.5,5.5 + parent: 0 + type: Transform +- uid: 7497 + type: MountainRock + components: + - pos: 175.5,4.5 + parent: 0 + type: Transform +- uid: 7498 + type: MountainRock + components: + - pos: 175.5,3.5 + parent: 0 + type: Transform +- uid: 7499 + type: MountainRock + components: + - pos: 175.5,2.5 + parent: 0 + type: Transform +- uid: 7500 + type: MountainRock + components: + - pos: 175.5,1.5 + parent: 0 + type: Transform +- uid: 7501 + type: MountainRock + components: + - pos: 175.5,0.5 + parent: 0 + type: Transform +- uid: 7502 + type: MountainRock + components: + - pos: 175.5,-0.5 + parent: 0 + type: Transform +- uid: 7503 + type: MountainRock + components: + - pos: 175.5,-1.5 + parent: 0 + type: Transform +- uid: 7504 + type: MountainRock + components: + - pos: 175.5,-2.5 + parent: 0 + type: Transform +- uid: 7505 + type: MountainRock + components: + - pos: 175.5,-3.5 + parent: 0 + type: Transform +- uid: 7506 + type: MountainRock + components: + - pos: 175.5,-4.5 + parent: 0 + type: Transform +- uid: 7507 + type: MountainRock + components: + - pos: 175.5,-5.5 + parent: 0 + type: Transform +- uid: 7508 + type: MountainRock + components: + - pos: 175.5,-6.5 + parent: 0 + type: Transform +- uid: 7509 + type: MountainRock + components: + - pos: 175.5,-7.5 + parent: 0 + type: Transform +- uid: 7510 + type: MountainRock + components: + - pos: 175.5,-8.5 + parent: 0 + type: Transform +- uid: 7511 + type: MountainRock + components: + - pos: 175.5,-9.5 + parent: 0 + type: Transform +- uid: 7512 + type: MountainRock + components: + - pos: 175.5,-10.5 + parent: 0 + type: Transform +- uid: 7513 + type: MountainRock + components: + - pos: 175.5,-11.5 + parent: 0 + type: Transform +- uid: 7514 + type: MountainRock + components: + - pos: 175.5,-12.5 + parent: 0 + type: Transform +- uid: 7515 + type: MountainRock + components: + - pos: 175.5,-13.5 + parent: 0 + type: Transform +- uid: 7516 + type: MountainRock + components: + - pos: 175.5,-14.5 + parent: 0 + type: Transform +- uid: 7517 + type: MountainRock + components: + - pos: 175.5,-15.5 + parent: 0 + type: Transform +- uid: 7518 + type: MountainRock + components: + - pos: 175.5,-16.5 + parent: 0 + type: Transform +- uid: 7519 + type: MountainRock + components: + - pos: 175.5,-17.5 + parent: 0 + type: Transform +- uid: 7520 + type: MountainRock + components: + - pos: 175.5,-18.5 + parent: 0 + type: Transform +- uid: 7521 + type: MountainRock + components: + - pos: 175.5,-19.5 + parent: 0 + type: Transform +- uid: 7522 + type: MountainRock + components: + - pos: 175.5,-20.5 + parent: 0 + type: Transform +- uid: 7523 + type: MountainRock + components: + - pos: 175.5,-21.5 + parent: 0 + type: Transform +- uid: 7524 + type: MountainRock + components: + - pos: 175.5,-22.5 + parent: 0 + type: Transform +- uid: 7525 + type: MountainRock + components: + - pos: 175.5,-23.5 + parent: 0 + type: Transform +- uid: 7526 + type: MountainRock + components: + - pos: 175.5,-24.5 + parent: 0 + type: Transform +- uid: 7527 + type: MountainRock + components: + - pos: 175.5,-25.5 + parent: 0 + type: Transform +- uid: 7528 + type: MountainRock + components: + - pos: 175.5,-26.5 + parent: 0 + type: Transform +- uid: 7529 + type: MountainRock + components: + - pos: 175.5,-27.5 + parent: 0 + type: Transform +- uid: 7530 + type: MountainRock + components: + - pos: 175.5,-28.5 + parent: 0 + type: Transform +- uid: 7531 + type: MountainRock + components: + - pos: 175.5,-29.5 + parent: 0 + type: Transform +- uid: 7532 + type: MountainRock + components: + - pos: 175.5,-30.5 + parent: 0 + type: Transform +- uid: 7533 + type: MountainRock + components: + - pos: 175.5,-31.5 + parent: 0 + type: Transform +- uid: 7534 + type: MountainRock + components: + - pos: 175.5,-32.5 + parent: 0 + type: Transform +- uid: 7535 + type: MountainRock + components: + - pos: 175.5,-33.5 + parent: 0 + type: Transform +- uid: 7536 + type: MountainRock + components: + - pos: 175.5,-34.5 + parent: 0 + type: Transform +- uid: 7537 + type: MountainRock + components: + - pos: 175.5,-35.5 + parent: 0 + type: Transform +- uid: 7538 + type: MountainRock + components: + - pos: 175.5,-36.5 + parent: 0 + type: Transform +- uid: 7539 + type: MountainRock + components: + - pos: 175.5,-37.5 + parent: 0 + type: Transform +- uid: 7540 + type: MountainRock + components: + - pos: 175.5,-38.5 + parent: 0 + type: Transform +- uid: 7541 + type: MountainRock + components: + - pos: 175.5,-39.5 + parent: 0 + type: Transform +- uid: 7542 + type: MountainRock + components: + - pos: 175.5,-40.5 + parent: 0 + type: Transform +- uid: 7543 + type: MountainRock + components: + - pos: 175.5,-41.5 + parent: 0 + type: Transform +- uid: 7544 + type: MountainRock + components: + - pos: 175.5,-42.5 + parent: 0 + type: Transform +- uid: 7545 + type: MountainRock + components: + - pos: 175.5,-43.5 + parent: 0 + type: Transform +- uid: 7546 + type: MountainRock + components: + - pos: 175.5,-44.5 + parent: 0 + type: Transform +- uid: 7547 + type: MountainRock + components: + - pos: 175.5,-45.5 + parent: 0 + type: Transform +- uid: 7548 + type: MountainRock + components: + - pos: 175.5,-46.5 + parent: 0 + type: Transform +- uid: 7549 + type: MountainRock + components: + - pos: 176.5,28.5 + parent: 0 + type: Transform +- uid: 7550 + type: MountainRock + components: + - pos: 176.5,27.5 + parent: 0 + type: Transform +- uid: 7551 + type: MountainRock + components: + - pos: 176.5,26.5 + parent: 0 + type: Transform +- uid: 7552 + type: MountainRock + components: + - pos: 176.5,25.5 + parent: 0 + type: Transform +- uid: 7553 + type: MountainRock + components: + - pos: 176.5,24.5 + parent: 0 + type: Transform +- uid: 7554 + type: MountainRock + components: + - pos: 176.5,23.5 + parent: 0 + type: Transform +- uid: 7555 + type: MountainRock + components: + - pos: 176.5,22.5 + parent: 0 + type: Transform +- uid: 7556 + type: MountainRock + components: + - pos: 176.5,21.5 + parent: 0 + type: Transform +- uid: 7557 + type: MountainRock + components: + - pos: 176.5,20.5 + parent: 0 + type: Transform +- uid: 7558 + type: MountainRock + components: + - pos: 176.5,19.5 + parent: 0 + type: Transform +- uid: 7559 + type: MountainRock + components: + - pos: 176.5,18.5 + parent: 0 + type: Transform +- uid: 7560 + type: MountainRock + components: + - pos: 176.5,17.5 + parent: 0 + type: Transform +- uid: 7561 + type: MountainRock + components: + - pos: 176.5,16.5 + parent: 0 + type: Transform +- uid: 7562 + type: MountainRock + components: + - pos: 176.5,15.5 + parent: 0 + type: Transform +- uid: 7563 + type: MountainRock + components: + - pos: 176.5,14.5 + parent: 0 + type: Transform +- uid: 7564 + type: MountainRock + components: + - pos: 176.5,13.5 + parent: 0 + type: Transform +- uid: 7565 + type: MountainRock + components: + - pos: 176.5,12.5 + parent: 0 + type: Transform +- uid: 7566 + type: MountainRock + components: + - pos: 176.5,11.5 + parent: 0 + type: Transform +- uid: 7567 + type: MountainRock + components: + - pos: 176.5,10.5 + parent: 0 + type: Transform +- uid: 7568 + type: MountainRock + components: + - pos: 176.5,9.5 + parent: 0 + type: Transform +- uid: 7569 + type: MountainRock + components: + - pos: 176.5,8.5 + parent: 0 + type: Transform +- uid: 7570 + type: MountainRock + components: + - pos: 176.5,7.5 + parent: 0 + type: Transform +- uid: 7571 + type: MountainRock + components: + - pos: 176.5,6.5 + parent: 0 + type: Transform +- uid: 7572 + type: MountainRock + components: + - pos: 176.5,5.5 + parent: 0 + type: Transform +- uid: 7573 + type: MountainRock + components: + - pos: 176.5,4.5 + parent: 0 + type: Transform +- uid: 7574 + type: MountainRock + components: + - pos: 176.5,3.5 + parent: 0 + type: Transform +- uid: 7575 + type: MountainRock + components: + - pos: 176.5,2.5 + parent: 0 + type: Transform +- uid: 7576 + type: MountainRock + components: + - pos: 176.5,1.5 + parent: 0 + type: Transform +- uid: 7577 + type: MountainRock + components: + - pos: 176.5,0.5 + parent: 0 + type: Transform +- uid: 7578 + type: MountainRock + components: + - pos: 176.5,-0.5 + parent: 0 + type: Transform +- uid: 7579 + type: MountainRock + components: + - pos: 176.5,-1.5 + parent: 0 + type: Transform +- uid: 7580 + type: MountainRock + components: + - pos: 176.5,-2.5 + parent: 0 + type: Transform +- uid: 7581 + type: MountainRock + components: + - pos: 176.5,-3.5 + parent: 0 + type: Transform +- uid: 7582 + type: MountainRock + components: + - pos: 176.5,-4.5 + parent: 0 + type: Transform +- uid: 7583 + type: MountainRock + components: + - pos: 176.5,-5.5 + parent: 0 + type: Transform +- uid: 7584 + type: MountainRock + components: + - pos: 176.5,-6.5 + parent: 0 + type: Transform +- uid: 7585 + type: MountainRock + components: + - pos: 176.5,-7.5 + parent: 0 + type: Transform +- uid: 7586 + type: MountainRock + components: + - pos: 176.5,-8.5 + parent: 0 + type: Transform +- uid: 7587 + type: MountainRock + components: + - pos: 176.5,-9.5 + parent: 0 + type: Transform +- uid: 7588 + type: MountainRock + components: + - pos: 176.5,-10.5 + parent: 0 + type: Transform +- uid: 7589 + type: MountainRock + components: + - pos: 176.5,-11.5 + parent: 0 + type: Transform +- uid: 7590 + type: MountainRock + components: + - pos: 176.5,-12.5 + parent: 0 + type: Transform +- uid: 7591 + type: MountainRock + components: + - pos: 176.5,-13.5 + parent: 0 + type: Transform +- uid: 7592 + type: MountainRock + components: + - pos: 176.5,-14.5 + parent: 0 + type: Transform +- uid: 7593 + type: MountainRock + components: + - pos: 176.5,-15.5 + parent: 0 + type: Transform +- uid: 7594 + type: MountainRock + components: + - pos: 176.5,-16.5 + parent: 0 + type: Transform +- uid: 7595 + type: MountainRock + components: + - pos: 176.5,-17.5 + parent: 0 + type: Transform +- uid: 7596 + type: MountainRock + components: + - pos: 176.5,-18.5 + parent: 0 + type: Transform +- uid: 7597 + type: MountainRock + components: + - pos: 176.5,-19.5 + parent: 0 + type: Transform +- uid: 7598 + type: MountainRock + components: + - pos: 176.5,-20.5 + parent: 0 + type: Transform +- uid: 7599 + type: MountainRock + components: + - pos: 176.5,-21.5 + parent: 0 + type: Transform +- uid: 7600 + type: MountainRock + components: + - pos: 176.5,-22.5 + parent: 0 + type: Transform +- uid: 7601 + type: MountainRock + components: + - pos: 176.5,-23.5 + parent: 0 + type: Transform +- uid: 7602 + type: MountainRock + components: + - pos: 176.5,-24.5 + parent: 0 + type: Transform +- uid: 7603 + type: MountainRock + components: + - pos: 176.5,-25.5 + parent: 0 + type: Transform +- uid: 7604 + type: MountainRock + components: + - pos: 176.5,-26.5 + parent: 0 + type: Transform +- uid: 7605 + type: MountainRock + components: + - pos: 176.5,-27.5 + parent: 0 + type: Transform +- uid: 7606 + type: MountainRock + components: + - pos: 176.5,-28.5 + parent: 0 + type: Transform +- uid: 7607 + type: MountainRock + components: + - pos: 176.5,-29.5 + parent: 0 + type: Transform +- uid: 7608 + type: MountainRock + components: + - pos: 176.5,-30.5 + parent: 0 + type: Transform +- uid: 7609 + type: MountainRock + components: + - pos: 176.5,-31.5 + parent: 0 + type: Transform +- uid: 7610 + type: MountainRock + components: + - pos: 176.5,-32.5 + parent: 0 + type: Transform +- uid: 7611 + type: MountainRock + components: + - pos: 176.5,-33.5 + parent: 0 + type: Transform +- uid: 7612 + type: MountainRock + components: + - pos: 176.5,-34.5 + parent: 0 + type: Transform +- uid: 7613 + type: MountainRock + components: + - pos: 176.5,-35.5 + parent: 0 + type: Transform +- uid: 7614 + type: MountainRock + components: + - pos: 176.5,-36.5 + parent: 0 + type: Transform +- uid: 7615 + type: MountainRock + components: + - pos: 176.5,-37.5 + parent: 0 + type: Transform +- uid: 7616 + type: MountainRock + components: + - pos: 176.5,-38.5 + parent: 0 + type: Transform +- uid: 7617 + type: MountainRock + components: + - pos: 176.5,-39.5 + parent: 0 + type: Transform +- uid: 7618 + type: MountainRock + components: + - pos: 176.5,-40.5 + parent: 0 + type: Transform +- uid: 7619 + type: MountainRock + components: + - pos: 176.5,-41.5 + parent: 0 + type: Transform +- uid: 7620 + type: MountainRock + components: + - pos: 176.5,-42.5 + parent: 0 + type: Transform +- uid: 7621 + type: MountainRock + components: + - pos: 176.5,-43.5 + parent: 0 + type: Transform +- uid: 7622 + type: MountainRock + components: + - pos: 176.5,-44.5 + parent: 0 + type: Transform +- uid: 7623 + type: MountainRock + components: + - pos: 176.5,-45.5 + parent: 0 + type: Transform +- uid: 7624 + type: MountainRock + components: + - pos: 176.5,-46.5 + parent: 0 + type: Transform +- uid: 7625 + type: MountainRock + components: + - pos: 177.5,28.5 + parent: 0 + type: Transform +- uid: 7626 + type: MountainRock + components: + - pos: 177.5,27.5 + parent: 0 + type: Transform +- uid: 7627 + type: MountainRock + components: + - pos: 177.5,26.5 + parent: 0 + type: Transform +- uid: 7628 + type: MountainRock + components: + - pos: 177.5,25.5 + parent: 0 + type: Transform +- uid: 7629 + type: MountainRock + components: + - pos: 177.5,24.5 + parent: 0 + type: Transform +- uid: 7630 + type: MountainRock + components: + - pos: 177.5,23.5 + parent: 0 + type: Transform +- uid: 7631 + type: MountainRock + components: + - pos: 177.5,22.5 + parent: 0 + type: Transform +- uid: 7632 + type: MountainRock + components: + - pos: 177.5,21.5 + parent: 0 + type: Transform +- uid: 7633 + type: MountainRock + components: + - pos: 177.5,20.5 + parent: 0 + type: Transform +- uid: 7634 + type: MountainRock + components: + - pos: 177.5,19.5 + parent: 0 + type: Transform +- uid: 7635 + type: MountainRock + components: + - pos: 177.5,18.5 + parent: 0 + type: Transform +- uid: 7636 + type: MountainRock + components: + - pos: 177.5,17.5 + parent: 0 + type: Transform +- uid: 7637 + type: MountainRock + components: + - pos: 177.5,16.5 + parent: 0 + type: Transform +- uid: 7638 + type: MountainRock + components: + - pos: 177.5,15.5 + parent: 0 + type: Transform +- uid: 7639 + type: MountainRock + components: + - pos: 177.5,14.5 + parent: 0 + type: Transform +- uid: 7640 + type: MountainRock + components: + - pos: 177.5,13.5 + parent: 0 + type: Transform +- uid: 7641 + type: MountainRock + components: + - pos: 177.5,12.5 + parent: 0 + type: Transform +- uid: 7642 + type: MountainRock + components: + - pos: 177.5,11.5 + parent: 0 + type: Transform +- uid: 7643 + type: MountainRock + components: + - pos: 177.5,10.5 + parent: 0 + type: Transform +- uid: 7644 + type: MountainRock + components: + - pos: 177.5,9.5 + parent: 0 + type: Transform +- uid: 7645 + type: MountainRock + components: + - pos: 177.5,8.5 + parent: 0 + type: Transform +- uid: 7646 + type: MountainRock + components: + - pos: 177.5,7.5 + parent: 0 + type: Transform +- uid: 7647 + type: MountainRock + components: + - pos: 177.5,6.5 + parent: 0 + type: Transform +- uid: 7648 + type: MountainRock + components: + - pos: 177.5,5.5 + parent: 0 + type: Transform +- uid: 7649 + type: MountainRock + components: + - pos: 177.5,4.5 + parent: 0 + type: Transform +- uid: 7650 + type: MountainRock + components: + - pos: 177.5,3.5 + parent: 0 + type: Transform +- uid: 7651 + type: MountainRock + components: + - pos: 177.5,2.5 + parent: 0 + type: Transform +- uid: 7652 + type: MountainRock + components: + - pos: 177.5,1.5 + parent: 0 + type: Transform +- uid: 7653 + type: MountainRock + components: + - pos: 177.5,0.5 + parent: 0 + type: Transform +- uid: 7654 + type: MountainRock + components: + - pos: 177.5,-0.5 + parent: 0 + type: Transform +- uid: 7655 + type: MountainRock + components: + - pos: 177.5,-1.5 + parent: 0 + type: Transform +- uid: 7656 + type: MountainRock + components: + - pos: 177.5,-2.5 + parent: 0 + type: Transform +- uid: 7657 + type: MountainRock + components: + - pos: 177.5,-3.5 + parent: 0 + type: Transform +- uid: 7658 + type: MountainRock + components: + - pos: 177.5,-4.5 + parent: 0 + type: Transform +- uid: 7659 + type: MountainRock + components: + - pos: 177.5,-5.5 + parent: 0 + type: Transform +- uid: 7660 + type: MountainRock + components: + - pos: 177.5,-6.5 + parent: 0 + type: Transform +- uid: 7661 + type: MountainRock + components: + - pos: 177.5,-7.5 + parent: 0 + type: Transform +- uid: 7662 + type: MountainRock + components: + - pos: 177.5,-8.5 + parent: 0 + type: Transform +- uid: 7663 + type: MountainRock + components: + - pos: 177.5,-9.5 + parent: 0 + type: Transform +- uid: 7664 + type: MountainRock + components: + - pos: 177.5,-10.5 + parent: 0 + type: Transform +- uid: 7665 + type: MountainRock + components: + - pos: 177.5,-11.5 + parent: 0 + type: Transform +- uid: 7666 + type: MountainRock + components: + - pos: 177.5,-12.5 + parent: 0 + type: Transform +- uid: 7667 + type: MountainRock + components: + - pos: 177.5,-13.5 + parent: 0 + type: Transform +- uid: 7668 + type: MountainRock + components: + - pos: 177.5,-14.5 + parent: 0 + type: Transform +- uid: 7669 + type: MountainRock + components: + - pos: 177.5,-15.5 + parent: 0 + type: Transform +- uid: 7670 + type: MountainRock + components: + - pos: 177.5,-16.5 + parent: 0 + type: Transform +- uid: 7671 + type: MountainRock + components: + - pos: 177.5,-17.5 + parent: 0 + type: Transform +- uid: 7672 + type: MountainRock + components: + - pos: 177.5,-18.5 + parent: 0 + type: Transform +- uid: 7673 + type: MountainRock + components: + - pos: 177.5,-19.5 + parent: 0 + type: Transform +- uid: 7674 + type: MountainRock + components: + - pos: 177.5,-20.5 + parent: 0 + type: Transform +- uid: 7675 + type: MountainRock + components: + - pos: 177.5,-21.5 + parent: 0 + type: Transform +- uid: 7676 + type: MountainRock + components: + - pos: 177.5,-22.5 + parent: 0 + type: Transform +- uid: 7677 + type: MountainRock + components: + - pos: 177.5,-23.5 + parent: 0 + type: Transform +- uid: 7678 + type: MountainRock + components: + - pos: 177.5,-24.5 + parent: 0 + type: Transform +- uid: 7679 + type: MountainRock + components: + - pos: 177.5,-25.5 + parent: 0 + type: Transform +- uid: 7680 + type: MountainRock + components: + - pos: 177.5,-26.5 + parent: 0 + type: Transform +- uid: 7681 + type: MountainRock + components: + - pos: 177.5,-27.5 + parent: 0 + type: Transform +- uid: 7682 + type: MountainRock + components: + - pos: 177.5,-28.5 + parent: 0 + type: Transform +- uid: 7683 + type: MountainRock + components: + - pos: 177.5,-29.5 + parent: 0 + type: Transform +- uid: 7684 + type: MountainRock + components: + - pos: 177.5,-30.5 + parent: 0 + type: Transform +- uid: 7685 + type: MountainRock + components: + - pos: 177.5,-31.5 + parent: 0 + type: Transform +- uid: 7686 + type: MountainRock + components: + - pos: 177.5,-32.5 + parent: 0 + type: Transform +- uid: 7687 + type: MountainRock + components: + - pos: 177.5,-33.5 + parent: 0 + type: Transform +- uid: 7688 + type: MountainRock + components: + - pos: 177.5,-34.5 + parent: 0 + type: Transform +- uid: 7689 + type: MountainRock + components: + - pos: 177.5,-35.5 + parent: 0 + type: Transform +- uid: 7690 + type: MountainRock + components: + - pos: 177.5,-36.5 + parent: 0 + type: Transform +- uid: 7691 + type: MountainRock + components: + - pos: 177.5,-37.5 + parent: 0 + type: Transform +- uid: 7692 + type: MountainRock + components: + - pos: 177.5,-38.5 + parent: 0 + type: Transform +- uid: 7693 + type: MountainRock + components: + - pos: 177.5,-39.5 + parent: 0 + type: Transform +- uid: 7694 + type: MountainRock + components: + - pos: 177.5,-40.5 + parent: 0 + type: Transform +- uid: 7695 + type: MountainRock + components: + - pos: 177.5,-41.5 + parent: 0 + type: Transform +- uid: 7696 + type: MountainRock + components: + - pos: 177.5,-42.5 + parent: 0 + type: Transform +- uid: 7697 + type: MountainRock + components: + - pos: 177.5,-43.5 + parent: 0 + type: Transform +- uid: 7698 + type: MountainRock + components: + - pos: 177.5,-44.5 + parent: 0 + type: Transform +- uid: 7699 + type: MountainRock + components: + - pos: 177.5,-45.5 + parent: 0 + type: Transform +- uid: 7700 + type: MountainRock + components: + - pos: 177.5,-46.5 + parent: 0 + type: Transform +- uid: 7701 + type: MountainRock + components: + - pos: 178.5,28.5 + parent: 0 + type: Transform +- uid: 7702 + type: MountainRock + components: + - pos: 178.5,27.5 + parent: 0 + type: Transform +- uid: 7703 + type: MountainRock + components: + - pos: 178.5,26.5 + parent: 0 + type: Transform +- uid: 7704 + type: MountainRock + components: + - pos: 178.5,25.5 + parent: 0 + type: Transform +- uid: 7705 + type: MountainRock + components: + - pos: 178.5,24.5 + parent: 0 + type: Transform +- uid: 7706 + type: MountainRock + components: + - pos: 178.5,23.5 + parent: 0 + type: Transform +- uid: 7707 + type: MountainRock + components: + - pos: 178.5,22.5 + parent: 0 + type: Transform +- uid: 7708 + type: MountainRock + components: + - pos: 178.5,21.5 + parent: 0 + type: Transform +- uid: 7709 + type: MountainRock + components: + - pos: 178.5,20.5 + parent: 0 + type: Transform +- uid: 7710 + type: MountainRock + components: + - pos: 178.5,19.5 + parent: 0 + type: Transform +- uid: 7711 + type: MountainRock + components: + - pos: 178.5,18.5 + parent: 0 + type: Transform +- uid: 7712 + type: MountainRock + components: + - pos: 178.5,17.5 + parent: 0 + type: Transform +- uid: 7713 + type: MountainRock + components: + - pos: 178.5,16.5 + parent: 0 + type: Transform +- uid: 7714 + type: MountainRock + components: + - pos: 178.5,15.5 + parent: 0 + type: Transform +- uid: 7715 + type: MountainRock + components: + - pos: 178.5,14.5 + parent: 0 + type: Transform +- uid: 7716 + type: MountainRock + components: + - pos: 178.5,13.5 + parent: 0 + type: Transform +- uid: 7717 + type: MountainRock + components: + - pos: 178.5,12.5 + parent: 0 + type: Transform +- uid: 7718 + type: MountainRock + components: + - pos: 178.5,11.5 + parent: 0 + type: Transform +- uid: 7719 + type: MountainRock + components: + - pos: 178.5,10.5 + parent: 0 + type: Transform +- uid: 7720 + type: MountainRock + components: + - pos: 178.5,9.5 + parent: 0 + type: Transform +- uid: 7721 + type: MountainRock + components: + - pos: 178.5,8.5 + parent: 0 + type: Transform +- uid: 7722 + type: MountainRock + components: + - pos: 178.5,7.5 + parent: 0 + type: Transform +- uid: 7723 + type: MountainRock + components: + - pos: 178.5,6.5 + parent: 0 + type: Transform +- uid: 7724 + type: MountainRock + components: + - pos: 178.5,5.5 + parent: 0 + type: Transform +- uid: 7725 + type: MountainRock + components: + - pos: 178.5,4.5 + parent: 0 + type: Transform +- uid: 7726 + type: MountainRock + components: + - pos: 178.5,3.5 + parent: 0 + type: Transform +- uid: 7727 + type: MountainRock + components: + - pos: 178.5,2.5 + parent: 0 + type: Transform +- uid: 7728 + type: MountainRock + components: + - pos: 178.5,1.5 + parent: 0 + type: Transform +- uid: 7729 + type: MountainRock + components: + - pos: 178.5,0.5 + parent: 0 + type: Transform +- uid: 7730 + type: MountainRock + components: + - pos: 178.5,-0.5 + parent: 0 + type: Transform +- uid: 7731 + type: MountainRock + components: + - pos: 178.5,-1.5 + parent: 0 + type: Transform +- uid: 7732 + type: MountainRock + components: + - pos: 178.5,-2.5 + parent: 0 + type: Transform +- uid: 7733 + type: MountainRock + components: + - pos: 178.5,-3.5 + parent: 0 + type: Transform +- uid: 7734 + type: MountainRock + components: + - pos: 178.5,-4.5 + parent: 0 + type: Transform +- uid: 7735 + type: MountainRock + components: + - pos: 178.5,-5.5 + parent: 0 + type: Transform +- uid: 7736 + type: MountainRock + components: + - pos: 178.5,-6.5 + parent: 0 + type: Transform +- uid: 7737 + type: MountainRock + components: + - pos: 178.5,-7.5 + parent: 0 + type: Transform +- uid: 7738 + type: MountainRock + components: + - pos: 178.5,-8.5 + parent: 0 + type: Transform +- uid: 7739 + type: MountainRock + components: + - pos: 178.5,-9.5 + parent: 0 + type: Transform +- uid: 7740 + type: MountainRock + components: + - pos: 178.5,-10.5 + parent: 0 + type: Transform +- uid: 7741 + type: MountainRock + components: + - pos: 178.5,-11.5 + parent: 0 + type: Transform +- uid: 7742 + type: MountainRock + components: + - pos: 178.5,-12.5 + parent: 0 + type: Transform +- uid: 7743 + type: MountainRock + components: + - pos: 178.5,-13.5 + parent: 0 + type: Transform +- uid: 7744 + type: MountainRock + components: + - pos: 178.5,-14.5 + parent: 0 + type: Transform +- uid: 7745 + type: MountainRock + components: + - pos: 178.5,-15.5 + parent: 0 + type: Transform +- uid: 7746 + type: MountainRock + components: + - pos: 178.5,-16.5 + parent: 0 + type: Transform +- uid: 7747 + type: MountainRock + components: + - pos: 178.5,-17.5 + parent: 0 + type: Transform +- uid: 7748 + type: MountainRock + components: + - pos: 178.5,-18.5 + parent: 0 + type: Transform +- uid: 7749 + type: MountainRock + components: + - pos: 178.5,-19.5 + parent: 0 + type: Transform +- uid: 7750 + type: MountainRock + components: + - pos: 178.5,-20.5 + parent: 0 + type: Transform +- uid: 7751 + type: MountainRock + components: + - pos: 178.5,-21.5 + parent: 0 + type: Transform +- uid: 7752 + type: MountainRock + components: + - pos: 178.5,-22.5 + parent: 0 + type: Transform +- uid: 7753 + type: MountainRock + components: + - pos: 178.5,-23.5 + parent: 0 + type: Transform +- uid: 7754 + type: MountainRock + components: + - pos: 178.5,-24.5 + parent: 0 + type: Transform +- uid: 7755 + type: MountainRock + components: + - pos: 178.5,-25.5 + parent: 0 + type: Transform +- uid: 7756 + type: MountainRock + components: + - pos: 178.5,-26.5 + parent: 0 + type: Transform +- uid: 7757 + type: MountainRock + components: + - pos: 178.5,-27.5 + parent: 0 + type: Transform +- uid: 7758 + type: MountainRock + components: + - pos: 178.5,-28.5 + parent: 0 + type: Transform +- uid: 7759 + type: MountainRock + components: + - pos: 178.5,-29.5 + parent: 0 + type: Transform +- uid: 7760 + type: MountainRock + components: + - pos: 178.5,-30.5 + parent: 0 + type: Transform +- uid: 7761 + type: MountainRock + components: + - pos: 178.5,-31.5 + parent: 0 + type: Transform +- uid: 7762 + type: MountainRock + components: + - pos: 178.5,-32.5 + parent: 0 + type: Transform +- uid: 7763 + type: MountainRock + components: + - pos: 178.5,-33.5 + parent: 0 + type: Transform +- uid: 7764 + type: MountainRock + components: + - pos: 178.5,-34.5 + parent: 0 + type: Transform +- uid: 7765 + type: MountainRock + components: + - pos: 178.5,-35.5 + parent: 0 + type: Transform +- uid: 7766 + type: MountainRock + components: + - pos: 178.5,-36.5 + parent: 0 + type: Transform +- uid: 7767 + type: MountainRock + components: + - pos: 178.5,-37.5 + parent: 0 + type: Transform +- uid: 7768 + type: MountainRock + components: + - pos: 178.5,-38.5 + parent: 0 + type: Transform +- uid: 7769 + type: MountainRock + components: + - pos: 178.5,-39.5 + parent: 0 + type: Transform +- uid: 7770 + type: MountainRock + components: + - pos: 178.5,-40.5 + parent: 0 + type: Transform +- uid: 7771 + type: MountainRock + components: + - pos: 178.5,-41.5 + parent: 0 + type: Transform +- uid: 7772 + type: MountainRock + components: + - pos: 178.5,-42.5 + parent: 0 + type: Transform +- uid: 7773 + type: MountainRock + components: + - pos: 178.5,-43.5 + parent: 0 + type: Transform +- uid: 7774 + type: MountainRock + components: + - pos: 178.5,-44.5 + parent: 0 + type: Transform +- uid: 7775 + type: MountainRock + components: + - pos: 178.5,-45.5 + parent: 0 + type: Transform +- uid: 7776 + type: MountainRock + components: + - pos: 178.5,-46.5 + parent: 0 + type: Transform +- uid: 7777 + type: MountainRock + components: + - pos: 179.5,28.5 + parent: 0 + type: Transform +- uid: 7778 + type: MountainRock + components: + - pos: 179.5,27.5 + parent: 0 + type: Transform +- uid: 7779 + type: MountainRock + components: + - pos: 179.5,26.5 + parent: 0 + type: Transform +- uid: 7780 + type: MountainRock + components: + - pos: 179.5,25.5 + parent: 0 + type: Transform +- uid: 7781 + type: MountainRock + components: + - pos: 179.5,24.5 + parent: 0 + type: Transform +- uid: 7782 + type: MountainRock + components: + - pos: 179.5,23.5 + parent: 0 + type: Transform +- uid: 7783 + type: MountainRock + components: + - pos: 179.5,22.5 + parent: 0 + type: Transform +- uid: 7784 + type: MountainRock + components: + - pos: 179.5,21.5 + parent: 0 + type: Transform +- uid: 7785 + type: MountainRock + components: + - pos: 179.5,20.5 + parent: 0 + type: Transform +- uid: 7786 + type: MountainRock + components: + - pos: 179.5,19.5 + parent: 0 + type: Transform +- uid: 7787 + type: MountainRock + components: + - pos: 179.5,18.5 + parent: 0 + type: Transform +- uid: 7788 + type: MountainRock + components: + - pos: 179.5,17.5 + parent: 0 + type: Transform +- uid: 7789 + type: MountainRock + components: + - pos: 179.5,16.5 + parent: 0 + type: Transform +- uid: 7790 + type: MountainRock + components: + - pos: 179.5,15.5 + parent: 0 + type: Transform +- uid: 7791 + type: MountainRock + components: + - pos: 179.5,14.5 + parent: 0 + type: Transform +- uid: 7792 + type: MountainRock + components: + - pos: 179.5,13.5 + parent: 0 + type: Transform +- uid: 7793 + type: MountainRock + components: + - pos: 179.5,12.5 + parent: 0 + type: Transform +- uid: 7794 + type: MountainRock + components: + - pos: 179.5,11.5 + parent: 0 + type: Transform +- uid: 7795 + type: MountainRock + components: + - pos: 179.5,10.5 + parent: 0 + type: Transform +- uid: 7796 + type: MountainRock + components: + - pos: 179.5,9.5 + parent: 0 + type: Transform +- uid: 7797 + type: MountainRock + components: + - pos: 179.5,8.5 + parent: 0 + type: Transform +- uid: 7798 + type: MountainRock + components: + - pos: 179.5,7.5 + parent: 0 + type: Transform +- uid: 7799 + type: MountainRock + components: + - pos: 179.5,6.5 + parent: 0 + type: Transform +- uid: 7800 + type: MountainRock + components: + - pos: 179.5,5.5 + parent: 0 + type: Transform +- uid: 7801 + type: MountainRock + components: + - pos: 179.5,4.5 + parent: 0 + type: Transform +- uid: 7802 + type: MountainRock + components: + - pos: 179.5,3.5 + parent: 0 + type: Transform +- uid: 7803 + type: MountainRock + components: + - pos: 179.5,2.5 + parent: 0 + type: Transform +- uid: 7804 + type: MountainRock + components: + - pos: 179.5,1.5 + parent: 0 + type: Transform +- uid: 7805 + type: MountainRock + components: + - pos: 179.5,0.5 + parent: 0 + type: Transform +- uid: 7806 + type: MountainRock + components: + - pos: 179.5,-0.5 + parent: 0 + type: Transform +- uid: 7807 + type: MountainRock + components: + - pos: 179.5,-1.5 + parent: 0 + type: Transform +- uid: 7808 + type: MountainRock + components: + - pos: 179.5,-2.5 + parent: 0 + type: Transform +- uid: 7809 + type: MountainRock + components: + - pos: 179.5,-3.5 + parent: 0 + type: Transform +- uid: 7810 + type: MountainRock + components: + - pos: 179.5,-4.5 + parent: 0 + type: Transform +- uid: 7811 + type: MountainRock + components: + - pos: 179.5,-5.5 + parent: 0 + type: Transform +- uid: 7812 + type: MountainRock + components: + - pos: 179.5,-6.5 + parent: 0 + type: Transform +- uid: 7813 + type: MountainRock + components: + - pos: 179.5,-7.5 + parent: 0 + type: Transform +- uid: 7814 + type: MountainRock + components: + - pos: 179.5,-8.5 + parent: 0 + type: Transform +- uid: 7815 + type: MountainRock + components: + - pos: 179.5,-9.5 + parent: 0 + type: Transform +- uid: 7816 + type: MountainRock + components: + - pos: 179.5,-10.5 + parent: 0 + type: Transform +- uid: 7817 + type: MountainRock + components: + - pos: 179.5,-11.5 + parent: 0 + type: Transform +- uid: 7818 + type: MountainRock + components: + - pos: 179.5,-12.5 + parent: 0 + type: Transform +- uid: 7819 + type: MountainRock + components: + - pos: 179.5,-13.5 + parent: 0 + type: Transform +- uid: 7820 + type: MountainRock + components: + - pos: 179.5,-14.5 + parent: 0 + type: Transform +- uid: 7821 + type: MountainRock + components: + - pos: 179.5,-15.5 + parent: 0 + type: Transform +- uid: 7822 + type: MountainRock + components: + - pos: 179.5,-16.5 + parent: 0 + type: Transform +- uid: 7823 + type: MountainRock + components: + - pos: 179.5,-17.5 + parent: 0 + type: Transform +- uid: 7824 + type: MountainRock + components: + - pos: 179.5,-18.5 + parent: 0 + type: Transform +- uid: 7825 + type: MountainRock + components: + - pos: 179.5,-19.5 + parent: 0 + type: Transform +- uid: 7826 + type: MountainRock + components: + - pos: 179.5,-20.5 + parent: 0 + type: Transform +- uid: 7827 + type: MountainRock + components: + - pos: 179.5,-21.5 + parent: 0 + type: Transform +- uid: 7828 + type: MountainRock + components: + - pos: 179.5,-22.5 + parent: 0 + type: Transform +- uid: 7829 + type: MountainRock + components: + - pos: 179.5,-23.5 + parent: 0 + type: Transform +- uid: 7830 + type: MountainRock + components: + - pos: 179.5,-24.5 + parent: 0 + type: Transform +- uid: 7831 + type: MountainRock + components: + - pos: 179.5,-25.5 + parent: 0 + type: Transform +- uid: 7832 + type: MountainRock + components: + - pos: 179.5,-26.5 + parent: 0 + type: Transform +- uid: 7833 + type: MountainRock + components: + - pos: 179.5,-27.5 + parent: 0 + type: Transform +- uid: 7834 + type: MountainRock + components: + - pos: 179.5,-28.5 + parent: 0 + type: Transform +- uid: 7835 + type: MountainRock + components: + - pos: 179.5,-29.5 + parent: 0 + type: Transform +- uid: 7836 + type: MountainRock + components: + - pos: 179.5,-30.5 + parent: 0 + type: Transform +- uid: 7837 + type: MountainRock + components: + - pos: 179.5,-31.5 + parent: 0 + type: Transform +- uid: 7838 + type: MountainRock + components: + - pos: 179.5,-32.5 + parent: 0 + type: Transform +- uid: 7839 + type: MountainRock + components: + - pos: 179.5,-33.5 + parent: 0 + type: Transform +- uid: 7840 + type: MountainRock + components: + - pos: 179.5,-34.5 + parent: 0 + type: Transform +- uid: 7841 + type: MountainRock + components: + - pos: 179.5,-35.5 + parent: 0 + type: Transform +- uid: 7842 + type: MountainRock + components: + - pos: 179.5,-36.5 + parent: 0 + type: Transform +- uid: 7843 + type: MountainRock + components: + - pos: 179.5,-37.5 + parent: 0 + type: Transform +- uid: 7844 + type: MountainRock + components: + - pos: 179.5,-38.5 + parent: 0 + type: Transform +- uid: 7845 + type: MountainRock + components: + - pos: 179.5,-39.5 + parent: 0 + type: Transform +- uid: 7846 + type: MountainRock + components: + - pos: 179.5,-40.5 + parent: 0 + type: Transform +- uid: 7847 + type: MountainRock + components: + - pos: 179.5,-41.5 + parent: 0 + type: Transform +- uid: 7848 + type: MountainRock + components: + - pos: 179.5,-42.5 + parent: 0 + type: Transform +- uid: 7849 + type: MountainRock + components: + - pos: 179.5,-43.5 + parent: 0 + type: Transform +- uid: 7850 + type: MountainRock + components: + - pos: 179.5,-44.5 + parent: 0 + type: Transform +- uid: 7851 + type: MountainRock + components: + - pos: 179.5,-45.5 + parent: 0 + type: Transform +- uid: 7852 + type: MountainRock + components: + - pos: 179.5,-46.5 + parent: 0 + type: Transform +- uid: 7853 + type: MountainRock + components: + - pos: 180.5,28.5 + parent: 0 + type: Transform +- uid: 7854 + type: MountainRock + components: + - pos: 180.5,27.5 + parent: 0 + type: Transform +- uid: 7855 + type: MountainRock + components: + - pos: 180.5,26.5 + parent: 0 + type: Transform +- uid: 7856 + type: MountainRock + components: + - pos: 180.5,25.5 + parent: 0 + type: Transform +- uid: 7857 + type: MountainRock + components: + - pos: 180.5,24.5 + parent: 0 + type: Transform +- uid: 7858 + type: MountainRock + components: + - pos: 180.5,23.5 + parent: 0 + type: Transform +- uid: 7859 + type: MountainRock + components: + - pos: 180.5,22.5 + parent: 0 + type: Transform +- uid: 7860 + type: MountainRock + components: + - pos: 180.5,21.5 + parent: 0 + type: Transform +- uid: 7861 + type: MountainRock + components: + - pos: 180.5,20.5 + parent: 0 + type: Transform +- uid: 7862 + type: MountainRock + components: + - pos: 180.5,19.5 + parent: 0 + type: Transform +- uid: 7863 + type: MountainRock + components: + - pos: 180.5,18.5 + parent: 0 + type: Transform +- uid: 7864 + type: MountainRock + components: + - pos: 180.5,17.5 + parent: 0 + type: Transform +- uid: 7865 + type: MountainRock + components: + - pos: 180.5,16.5 + parent: 0 + type: Transform +- uid: 7866 + type: MountainRock + components: + - pos: 180.5,15.5 + parent: 0 + type: Transform +- uid: 7867 + type: MountainRock + components: + - pos: 180.5,14.5 + parent: 0 + type: Transform +- uid: 7868 + type: MountainRock + components: + - pos: 180.5,13.5 + parent: 0 + type: Transform +- uid: 7869 + type: MountainRock + components: + - pos: 180.5,12.5 + parent: 0 + type: Transform +- uid: 7870 + type: MountainRock + components: + - pos: 180.5,11.5 + parent: 0 + type: Transform +- uid: 7871 + type: MountainRock + components: + - pos: 180.5,10.5 + parent: 0 + type: Transform +- uid: 7872 + type: MountainRock + components: + - pos: 180.5,9.5 + parent: 0 + type: Transform +- uid: 7873 + type: MountainRock + components: + - pos: 180.5,8.5 + parent: 0 + type: Transform +- uid: 7874 + type: MountainRock + components: + - pos: 180.5,7.5 + parent: 0 + type: Transform +- uid: 7875 + type: MountainRock + components: + - pos: 180.5,6.5 + parent: 0 + type: Transform +- uid: 7876 + type: MountainRock + components: + - pos: 180.5,5.5 + parent: 0 + type: Transform +- uid: 7877 + type: MountainRock + components: + - pos: 180.5,4.5 + parent: 0 + type: Transform +- uid: 7878 + type: MountainRock + components: + - pos: 180.5,3.5 + parent: 0 + type: Transform +- uid: 7879 + type: MountainRock + components: + - pos: 180.5,2.5 + parent: 0 + type: Transform +- uid: 7880 + type: MountainRock + components: + - pos: 180.5,1.5 + parent: 0 + type: Transform +- uid: 7881 + type: MountainRock + components: + - pos: 180.5,0.5 + parent: 0 + type: Transform +- uid: 7882 + type: MountainRock + components: + - pos: 180.5,-0.5 + parent: 0 + type: Transform +- uid: 7883 + type: MountainRock + components: + - pos: 180.5,-1.5 + parent: 0 + type: Transform +- uid: 7884 + type: MountainRock + components: + - pos: 180.5,-2.5 + parent: 0 + type: Transform +- uid: 7885 + type: MountainRock + components: + - pos: 180.5,-3.5 + parent: 0 + type: Transform +- uid: 7886 + type: MountainRock + components: + - pos: 180.5,-4.5 + parent: 0 + type: Transform +- uid: 7887 + type: MountainRock + components: + - pos: 180.5,-5.5 + parent: 0 + type: Transform +- uid: 7888 + type: MountainRock + components: + - pos: 180.5,-6.5 + parent: 0 + type: Transform +- uid: 7889 + type: MountainRock + components: + - pos: 180.5,-7.5 + parent: 0 + type: Transform +- uid: 7890 + type: MountainRock + components: + - pos: 180.5,-8.5 + parent: 0 + type: Transform +- uid: 7891 + type: MountainRock + components: + - pos: 180.5,-9.5 + parent: 0 + type: Transform +- uid: 7892 + type: MountainRock + components: + - pos: 180.5,-10.5 + parent: 0 + type: Transform +- uid: 7893 + type: MountainRock + components: + - pos: 180.5,-11.5 + parent: 0 + type: Transform +- uid: 7894 + type: MountainRock + components: + - pos: 180.5,-12.5 + parent: 0 + type: Transform +- uid: 7895 + type: MountainRock + components: + - pos: 180.5,-13.5 + parent: 0 + type: Transform +- uid: 7896 + type: MountainRock + components: + - pos: 180.5,-14.5 + parent: 0 + type: Transform +- uid: 7897 + type: MountainRock + components: + - pos: 180.5,-15.5 + parent: 0 + type: Transform +- uid: 7898 + type: MountainRock + components: + - pos: 180.5,-16.5 + parent: 0 + type: Transform +- uid: 7899 + type: MountainRock + components: + - pos: 180.5,-17.5 + parent: 0 + type: Transform +- uid: 7900 + type: MountainRock + components: + - pos: 180.5,-18.5 + parent: 0 + type: Transform +- uid: 7901 + type: MountainRock + components: + - pos: 180.5,-19.5 + parent: 0 + type: Transform +- uid: 7902 + type: MountainRock + components: + - pos: 180.5,-20.5 + parent: 0 + type: Transform +- uid: 7903 + type: MountainRock + components: + - pos: 180.5,-21.5 + parent: 0 + type: Transform +- uid: 7904 + type: MountainRock + components: + - pos: 180.5,-22.5 + parent: 0 + type: Transform +- uid: 7905 + type: MountainRock + components: + - pos: 180.5,-23.5 + parent: 0 + type: Transform +- uid: 7906 + type: MountainRock + components: + - pos: 180.5,-24.5 + parent: 0 + type: Transform +- uid: 7907 + type: MountainRock + components: + - pos: 180.5,-25.5 + parent: 0 + type: Transform +- uid: 7908 + type: MountainRock + components: + - pos: 180.5,-26.5 + parent: 0 + type: Transform +- uid: 7909 + type: MountainRock + components: + - pos: 180.5,-27.5 + parent: 0 + type: Transform +- uid: 7910 + type: MountainRock + components: + - pos: 180.5,-28.5 + parent: 0 + type: Transform +- uid: 7911 + type: MountainRock + components: + - pos: 180.5,-29.5 + parent: 0 + type: Transform +- uid: 7912 + type: MountainRock + components: + - pos: 180.5,-30.5 + parent: 0 + type: Transform +- uid: 7913 + type: MountainRock + components: + - pos: 180.5,-31.5 + parent: 0 + type: Transform +- uid: 7914 + type: MountainRock + components: + - pos: 180.5,-32.5 + parent: 0 + type: Transform +- uid: 7915 + type: MountainRock + components: + - pos: 180.5,-33.5 + parent: 0 + type: Transform +- uid: 7916 + type: MountainRock + components: + - pos: 180.5,-34.5 + parent: 0 + type: Transform +- uid: 7917 + type: MountainRock + components: + - pos: 180.5,-35.5 + parent: 0 + type: Transform +- uid: 7918 + type: MountainRock + components: + - pos: 180.5,-36.5 + parent: 0 + type: Transform +- uid: 7919 + type: MountainRock + components: + - pos: 180.5,-37.5 + parent: 0 + type: Transform +- uid: 7920 + type: MountainRock + components: + - pos: 180.5,-38.5 + parent: 0 + type: Transform +- uid: 7921 + type: MountainRock + components: + - pos: 180.5,-39.5 + parent: 0 + type: Transform +- uid: 7922 + type: MountainRock + components: + - pos: 180.5,-40.5 + parent: 0 + type: Transform +- uid: 7923 + type: MountainRock + components: + - pos: 180.5,-41.5 + parent: 0 + type: Transform +- uid: 7924 + type: MountainRock + components: + - pos: 180.5,-42.5 + parent: 0 + type: Transform +- uid: 7925 + type: MountainRock + components: + - pos: 180.5,-43.5 + parent: 0 + type: Transform +- uid: 7926 + type: MountainRock + components: + - pos: 180.5,-44.5 + parent: 0 + type: Transform +- uid: 7927 + type: MountainRock + components: + - pos: 180.5,-45.5 + parent: 0 + type: Transform +- uid: 7928 + type: MountainRock + components: + - pos: 180.5,-46.5 + parent: 0 + type: Transform +- uid: 7929 + type: MountainRock + components: + - pos: 181.5,28.5 + parent: 0 + type: Transform +- uid: 7930 + type: MountainRock + components: + - pos: 181.5,27.5 + parent: 0 + type: Transform +- uid: 7931 + type: MountainRock + components: + - pos: 181.5,26.5 + parent: 0 + type: Transform +- uid: 7932 + type: MountainRock + components: + - pos: 181.5,25.5 + parent: 0 + type: Transform +- uid: 7933 + type: MountainRock + components: + - pos: 181.5,24.5 + parent: 0 + type: Transform +- uid: 7934 + type: MountainRock + components: + - pos: 181.5,23.5 + parent: 0 + type: Transform +- uid: 7935 + type: MountainRock + components: + - pos: 181.5,22.5 + parent: 0 + type: Transform +- uid: 7936 + type: MountainRock + components: + - pos: 181.5,21.5 + parent: 0 + type: Transform +- uid: 7937 + type: MountainRock + components: + - pos: 181.5,20.5 + parent: 0 + type: Transform +- uid: 7938 + type: MountainRock + components: + - pos: 181.5,19.5 + parent: 0 + type: Transform +- uid: 7939 + type: MountainRock + components: + - pos: 181.5,18.5 + parent: 0 + type: Transform +- uid: 7940 + type: MountainRock + components: + - pos: 181.5,17.5 + parent: 0 + type: Transform +- uid: 7941 + type: MountainRock + components: + - pos: 181.5,16.5 + parent: 0 + type: Transform +- uid: 7942 + type: MountainRock + components: + - pos: 181.5,15.5 + parent: 0 + type: Transform +- uid: 7943 + type: MountainRock + components: + - pos: 181.5,14.5 + parent: 0 + type: Transform +- uid: 7944 + type: MountainRock + components: + - pos: 181.5,13.5 + parent: 0 + type: Transform +- uid: 7945 + type: MountainRock + components: + - pos: 181.5,12.5 + parent: 0 + type: Transform +- uid: 7946 + type: MountainRock + components: + - pos: 181.5,11.5 + parent: 0 + type: Transform +- uid: 7947 + type: MountainRock + components: + - pos: 181.5,10.5 + parent: 0 + type: Transform +- uid: 7948 + type: MountainRock + components: + - pos: 181.5,9.5 + parent: 0 + type: Transform +- uid: 7949 + type: MountainRock + components: + - pos: 181.5,8.5 + parent: 0 + type: Transform +- uid: 7950 + type: MountainRock + components: + - pos: 181.5,7.5 + parent: 0 + type: Transform +- uid: 7951 + type: MountainRock + components: + - pos: 181.5,6.5 + parent: 0 + type: Transform +- uid: 7952 + type: MountainRock + components: + - pos: 181.5,5.5 + parent: 0 + type: Transform +- uid: 7953 + type: MountainRock + components: + - pos: 181.5,4.5 + parent: 0 + type: Transform +- uid: 7954 + type: MountainRock + components: + - pos: 181.5,3.5 + parent: 0 + type: Transform +- uid: 7955 + type: MountainRock + components: + - pos: 181.5,2.5 + parent: 0 + type: Transform +- uid: 7956 + type: MountainRock + components: + - pos: 181.5,1.5 + parent: 0 + type: Transform +- uid: 7957 + type: MountainRock + components: + - pos: 181.5,0.5 + parent: 0 + type: Transform +- uid: 7958 + type: MountainRock + components: + - pos: 181.5,-0.5 + parent: 0 + type: Transform +- uid: 7959 + type: MountainRock + components: + - pos: 181.5,-1.5 + parent: 0 + type: Transform +- uid: 7960 + type: MountainRock + components: + - pos: 181.5,-2.5 + parent: 0 + type: Transform +- uid: 7961 + type: MountainRock + components: + - pos: 181.5,-3.5 + parent: 0 + type: Transform +- uid: 7962 + type: MountainRock + components: + - pos: 181.5,-4.5 + parent: 0 + type: Transform +- uid: 7963 + type: MountainRock + components: + - pos: 181.5,-5.5 + parent: 0 + type: Transform +- uid: 7964 + type: MountainRock + components: + - pos: 181.5,-6.5 + parent: 0 + type: Transform +- uid: 7965 + type: MountainRock + components: + - pos: 181.5,-7.5 + parent: 0 + type: Transform +- uid: 7966 + type: MountainRock + components: + - pos: 181.5,-8.5 + parent: 0 + type: Transform +- uid: 7967 + type: MountainRock + components: + - pos: 181.5,-9.5 + parent: 0 + type: Transform +- uid: 7968 + type: MountainRock + components: + - pos: 181.5,-10.5 + parent: 0 + type: Transform +- uid: 7969 + type: MountainRock + components: + - pos: 181.5,-11.5 + parent: 0 + type: Transform +- uid: 7970 + type: MountainRock + components: + - pos: 181.5,-12.5 + parent: 0 + type: Transform +- uid: 7971 + type: MountainRock + components: + - pos: 181.5,-13.5 + parent: 0 + type: Transform +- uid: 7972 + type: MountainRock + components: + - pos: 181.5,-14.5 + parent: 0 + type: Transform +- uid: 7973 + type: MountainRock + components: + - pos: 181.5,-15.5 + parent: 0 + type: Transform +- uid: 7974 + type: MountainRock + components: + - pos: 181.5,-16.5 + parent: 0 + type: Transform +- uid: 7975 + type: MountainRock + components: + - pos: 181.5,-17.5 + parent: 0 + type: Transform +- uid: 7976 + type: MountainRock + components: + - pos: 181.5,-18.5 + parent: 0 + type: Transform +- uid: 7977 + type: MountainRock + components: + - pos: 181.5,-19.5 + parent: 0 + type: Transform +- uid: 7978 + type: MountainRock + components: + - pos: 181.5,-20.5 + parent: 0 + type: Transform +- uid: 7979 + type: MountainRock + components: + - pos: 181.5,-21.5 + parent: 0 + type: Transform +- uid: 7980 + type: MountainRock + components: + - pos: 181.5,-22.5 + parent: 0 + type: Transform +- uid: 7981 + type: MountainRock + components: + - pos: 181.5,-23.5 + parent: 0 + type: Transform +- uid: 7982 + type: MountainRock + components: + - pos: 181.5,-24.5 + parent: 0 + type: Transform +- uid: 7983 + type: MountainRock + components: + - pos: 181.5,-25.5 + parent: 0 + type: Transform +- uid: 7984 + type: MountainRock + components: + - pos: 181.5,-26.5 + parent: 0 + type: Transform +- uid: 7985 + type: MountainRock + components: + - pos: 181.5,-27.5 + parent: 0 + type: Transform +- uid: 7986 + type: MountainRock + components: + - pos: 181.5,-28.5 + parent: 0 + type: Transform +- uid: 7987 + type: MountainRock + components: + - pos: 181.5,-29.5 + parent: 0 + type: Transform +- uid: 7988 + type: MountainRock + components: + - pos: 181.5,-30.5 + parent: 0 + type: Transform +- uid: 7989 + type: MountainRock + components: + - pos: 181.5,-31.5 + parent: 0 + type: Transform +- uid: 7990 + type: MountainRock + components: + - pos: 181.5,-32.5 + parent: 0 + type: Transform +- uid: 7991 + type: MountainRock + components: + - pos: 181.5,-33.5 + parent: 0 + type: Transform +- uid: 7992 + type: MountainRock + components: + - pos: 181.5,-34.5 + parent: 0 + type: Transform +- uid: 7993 + type: MountainRock + components: + - pos: 181.5,-35.5 + parent: 0 + type: Transform +- uid: 7994 + type: MountainRock + components: + - pos: 181.5,-36.5 + parent: 0 + type: Transform +- uid: 7995 + type: MountainRock + components: + - pos: 181.5,-37.5 + parent: 0 + type: Transform +- uid: 7996 + type: MountainRock + components: + - pos: 181.5,-38.5 + parent: 0 + type: Transform +- uid: 7997 + type: MountainRock + components: + - pos: 181.5,-39.5 + parent: 0 + type: Transform +- uid: 7998 + type: MountainRock + components: + - pos: 181.5,-40.5 + parent: 0 + type: Transform +- uid: 7999 + type: MountainRock + components: + - pos: 181.5,-41.5 + parent: 0 + type: Transform +- uid: 8000 + type: MountainRock + components: + - pos: 181.5,-42.5 + parent: 0 + type: Transform +- uid: 8001 + type: MountainRock + components: + - pos: 181.5,-43.5 + parent: 0 + type: Transform +- uid: 8002 + type: MountainRock + components: + - pos: 181.5,-44.5 + parent: 0 + type: Transform +- uid: 8003 + type: MountainRock + components: + - pos: 181.5,-45.5 + parent: 0 + type: Transform +- uid: 8004 + type: MountainRock + components: + - pos: 181.5,-46.5 + parent: 0 + type: Transform +- uid: 8005 + type: MountainRock + components: + - pos: 182.5,28.5 + parent: 0 + type: Transform +- uid: 8006 + type: MountainRock + components: + - pos: 182.5,27.5 + parent: 0 + type: Transform +- uid: 8007 + type: MountainRock + components: + - pos: 182.5,26.5 + parent: 0 + type: Transform +- uid: 8008 + type: MountainRock + components: + - pos: 182.5,25.5 + parent: 0 + type: Transform +- uid: 8009 + type: MountainRock + components: + - pos: 182.5,24.5 + parent: 0 + type: Transform +- uid: 8010 + type: MountainRock + components: + - pos: 182.5,23.5 + parent: 0 + type: Transform +- uid: 8011 + type: MountainRock + components: + - pos: 182.5,22.5 + parent: 0 + type: Transform +- uid: 8012 + type: MountainRock + components: + - pos: 182.5,21.5 + parent: 0 + type: Transform +- uid: 8013 + type: MountainRock + components: + - pos: 182.5,20.5 + parent: 0 + type: Transform +- uid: 8014 + type: MountainRock + components: + - pos: 182.5,19.5 + parent: 0 + type: Transform +- uid: 8015 + type: MountainRock + components: + - pos: 182.5,18.5 + parent: 0 + type: Transform +- uid: 8016 + type: MountainRock + components: + - pos: 182.5,17.5 + parent: 0 + type: Transform +- uid: 8017 + type: MountainRock + components: + - pos: 182.5,16.5 + parent: 0 + type: Transform +- uid: 8018 + type: MountainRock + components: + - pos: 182.5,15.5 + parent: 0 + type: Transform +- uid: 8019 + type: MountainRock + components: + - pos: 182.5,14.5 + parent: 0 + type: Transform +- uid: 8020 + type: MountainRock + components: + - pos: 182.5,13.5 + parent: 0 + type: Transform +- uid: 8021 + type: MountainRock + components: + - pos: 182.5,12.5 + parent: 0 + type: Transform +- uid: 8022 + type: MountainRock + components: + - pos: 182.5,11.5 + parent: 0 + type: Transform +- uid: 8023 + type: MountainRock + components: + - pos: 182.5,10.5 + parent: 0 + type: Transform +- uid: 8024 + type: MountainRock + components: + - pos: 182.5,9.5 + parent: 0 + type: Transform +- uid: 8025 + type: MountainRock + components: + - pos: 182.5,8.5 + parent: 0 + type: Transform +- uid: 8026 + type: MountainRock + components: + - pos: 182.5,7.5 + parent: 0 + type: Transform +- uid: 8027 + type: MountainRock + components: + - pos: 182.5,6.5 + parent: 0 + type: Transform +- uid: 8028 + type: MountainRock + components: + - pos: 182.5,5.5 + parent: 0 + type: Transform +- uid: 8029 + type: MountainRock + components: + - pos: 182.5,4.5 + parent: 0 + type: Transform +- uid: 8030 + type: MountainRock + components: + - pos: 182.5,3.5 + parent: 0 + type: Transform +- uid: 8031 + type: MountainRock + components: + - pos: 182.5,2.5 + parent: 0 + type: Transform +- uid: 8032 + type: MountainRock + components: + - pos: 182.5,1.5 + parent: 0 + type: Transform +- uid: 8033 + type: MountainRock + components: + - pos: 182.5,0.5 + parent: 0 + type: Transform +- uid: 8034 + type: MountainRock + components: + - pos: 182.5,-0.5 + parent: 0 + type: Transform +- uid: 8035 + type: MountainRock + components: + - pos: 182.5,-1.5 + parent: 0 + type: Transform +- uid: 8036 + type: MountainRock + components: + - pos: 182.5,-2.5 + parent: 0 + type: Transform +- uid: 8037 + type: MountainRock + components: + - pos: 182.5,-3.5 + parent: 0 + type: Transform +- uid: 8038 + type: MountainRock + components: + - pos: 182.5,-4.5 + parent: 0 + type: Transform +- uid: 8039 + type: MountainRock + components: + - pos: 182.5,-5.5 + parent: 0 + type: Transform +- uid: 8040 + type: MountainRock + components: + - pos: 182.5,-6.5 + parent: 0 + type: Transform +- uid: 8041 + type: MountainRock + components: + - pos: 182.5,-7.5 + parent: 0 + type: Transform +- uid: 8042 + type: MountainRock + components: + - pos: 182.5,-8.5 + parent: 0 + type: Transform +- uid: 8043 + type: MountainRock + components: + - pos: 182.5,-9.5 + parent: 0 + type: Transform +- uid: 8044 + type: MountainRock + components: + - pos: 182.5,-10.5 + parent: 0 + type: Transform +- uid: 8045 + type: MountainRock + components: + - pos: 182.5,-11.5 + parent: 0 + type: Transform +- uid: 8046 + type: MountainRock + components: + - pos: 182.5,-12.5 + parent: 0 + type: Transform +- uid: 8047 + type: MountainRock + components: + - pos: 182.5,-13.5 + parent: 0 + type: Transform +- uid: 8048 + type: MountainRock + components: + - pos: 182.5,-14.5 + parent: 0 + type: Transform +- uid: 8049 + type: MountainRock + components: + - pos: 182.5,-15.5 + parent: 0 + type: Transform +- uid: 8050 + type: MountainRock + components: + - pos: 182.5,-16.5 + parent: 0 + type: Transform +- uid: 8051 + type: MountainRock + components: + - pos: 182.5,-17.5 + parent: 0 + type: Transform +- uid: 8052 + type: MountainRock + components: + - pos: 182.5,-18.5 + parent: 0 + type: Transform +- uid: 8053 + type: MountainRock + components: + - pos: 182.5,-19.5 + parent: 0 + type: Transform +- uid: 8054 + type: MountainRock + components: + - pos: 182.5,-20.5 + parent: 0 + type: Transform +- uid: 8055 + type: MountainRock + components: + - pos: 182.5,-21.5 + parent: 0 + type: Transform +- uid: 8056 + type: MountainRock + components: + - pos: 182.5,-22.5 + parent: 0 + type: Transform +- uid: 8057 + type: MountainRock + components: + - pos: 182.5,-23.5 + parent: 0 + type: Transform +- uid: 8058 + type: MountainRock + components: + - pos: 182.5,-24.5 + parent: 0 + type: Transform +- uid: 8059 + type: MountainRock + components: + - pos: 182.5,-25.5 + parent: 0 + type: Transform +- uid: 8060 + type: MountainRock + components: + - pos: 182.5,-26.5 + parent: 0 + type: Transform +- uid: 8061 + type: MountainRock + components: + - pos: 182.5,-27.5 + parent: 0 + type: Transform +- uid: 8062 + type: MountainRock + components: + - pos: 182.5,-28.5 + parent: 0 + type: Transform +- uid: 8063 + type: MountainRock + components: + - pos: 182.5,-29.5 + parent: 0 + type: Transform +- uid: 8064 + type: MountainRock + components: + - pos: 182.5,-30.5 + parent: 0 + type: Transform +- uid: 8065 + type: MountainRock + components: + - pos: 182.5,-31.5 + parent: 0 + type: Transform +- uid: 8066 + type: MountainRock + components: + - pos: 182.5,-32.5 + parent: 0 + type: Transform +- uid: 8067 + type: MountainRock + components: + - pos: 182.5,-33.5 + parent: 0 + type: Transform +- uid: 8068 + type: MountainRock + components: + - pos: 182.5,-34.5 + parent: 0 + type: Transform +- uid: 8069 + type: MountainRock + components: + - pos: 182.5,-35.5 + parent: 0 + type: Transform +- uid: 8070 + type: MountainRock + components: + - pos: 182.5,-36.5 + parent: 0 + type: Transform +- uid: 8071 + type: MountainRock + components: + - pos: 182.5,-37.5 + parent: 0 + type: Transform +- uid: 8072 + type: MountainRock + components: + - pos: 182.5,-38.5 + parent: 0 + type: Transform +- uid: 8073 + type: MountainRock + components: + - pos: 182.5,-39.5 + parent: 0 + type: Transform +- uid: 8074 + type: MountainRock + components: + - pos: 182.5,-40.5 + parent: 0 + type: Transform +- uid: 8075 + type: MountainRock + components: + - pos: 182.5,-41.5 + parent: 0 + type: Transform +- uid: 8076 + type: MountainRock + components: + - pos: 182.5,-42.5 + parent: 0 + type: Transform +- uid: 8077 + type: MountainRock + components: + - pos: 182.5,-43.5 + parent: 0 + type: Transform +- uid: 8078 + type: MountainRock + components: + - pos: 182.5,-44.5 + parent: 0 + type: Transform +- uid: 8079 + type: MountainRock + components: + - pos: 182.5,-45.5 + parent: 0 + type: Transform +- uid: 8080 + type: MountainRock + components: + - pos: 182.5,-46.5 + parent: 0 + type: Transform +- uid: 8081 + type: MountainRock + components: + - pos: 112.5,-46.5 + parent: 0 + type: Transform +- uid: 8082 + type: MountainRock + components: + - pos: 112.5,-45.5 + parent: 0 + type: Transform +- uid: 8083 + type: MountainRock + components: + - pos: 112.5,-44.5 + parent: 0 + type: Transform +- uid: 8084 + type: MountainRock + components: + - pos: 112.5,-43.5 + parent: 0 + type: Transform +- uid: 8085 + type: MountainRock + components: + - pos: 112.5,-42.5 + parent: 0 + type: Transform +- uid: 8086 + type: MountainRock + components: + - pos: 112.5,-41.5 + parent: 0 + type: Transform +- uid: 8087 + type: MountainRock + components: + - pos: 112.5,-40.5 + parent: 0 + type: Transform +- uid: 8088 + type: MountainRock + components: + - pos: 112.5,-39.5 + parent: 0 + type: Transform +- uid: 8089 + type: MountainRock + components: + - pos: 112.5,-38.5 + parent: 0 + type: Transform +- uid: 8090 + type: MountainRock + components: + - pos: 112.5,-37.5 + parent: 0 + type: Transform +- uid: 8091 + type: MountainRock + components: + - pos: 112.5,-36.5 + parent: 0 + type: Transform +- uid: 8092 + type: MountainRock + components: + - pos: 112.5,-35.5 + parent: 0 + type: Transform +- uid: 8093 + type: MountainRock + components: + - pos: 112.5,-34.5 + parent: 0 + type: Transform +- uid: 8094 + type: MountainRock + components: + - pos: 112.5,-33.5 + parent: 0 + type: Transform +- uid: 8095 + type: MountainRock + components: + - pos: 112.5,-32.5 + parent: 0 + type: Transform +- uid: 8096 + type: MountainRock + components: + - pos: 111.5,-46.5 + parent: 0 + type: Transform +- uid: 8097 + type: MountainRock + components: + - pos: 111.5,-45.5 + parent: 0 + type: Transform +- uid: 8098 + type: MountainRock + components: + - pos: 111.5,-44.5 + parent: 0 + type: Transform +- uid: 8099 + type: MountainRock + components: + - pos: 111.5,-43.5 + parent: 0 + type: Transform +- uid: 8100 + type: MountainRock + components: + - pos: 111.5,-42.5 + parent: 0 + type: Transform +- uid: 8101 + type: MountainRock + components: + - pos: 111.5,-41.5 + parent: 0 + type: Transform +- uid: 8102 + type: MountainRock + components: + - pos: 111.5,-40.5 + parent: 0 + type: Transform +- uid: 8103 + type: MountainRock + components: + - pos: 111.5,-39.5 + parent: 0 + type: Transform +- uid: 8104 + type: MountainRock + components: + - pos: 111.5,-38.5 + parent: 0 + type: Transform +- uid: 8105 + type: MountainRock + components: + - pos: 111.5,-37.5 + parent: 0 + type: Transform +- uid: 8106 + type: MountainRock + components: + - pos: 111.5,-36.5 + parent: 0 + type: Transform +- uid: 8107 + type: MountainRock + components: + - pos: 111.5,-35.5 + parent: 0 + type: Transform +- uid: 8108 + type: MountainRock + components: + - pos: 111.5,-34.5 + parent: 0 + type: Transform +- uid: 8109 + type: MountainRock + components: + - pos: 111.5,-33.5 + parent: 0 + type: Transform +- uid: 8110 + type: MountainRock + components: + - pos: 111.5,-32.5 + parent: 0 + type: Transform +- uid: 8111 + type: MountainRock + components: + - pos: 110.5,-46.5 + parent: 0 + type: Transform +- uid: 8112 + type: MountainRock + components: + - pos: 110.5,-45.5 + parent: 0 + type: Transform +- uid: 8113 + type: MountainRock + components: + - pos: 110.5,-44.5 + parent: 0 + type: Transform +- uid: 8114 + type: MountainRock + components: + - pos: 110.5,-43.5 + parent: 0 + type: Transform +- uid: 8115 + type: MountainRock + components: + - pos: 110.5,-42.5 + parent: 0 + type: Transform +- uid: 8116 + type: MountainRock + components: + - pos: 110.5,-41.5 + parent: 0 + type: Transform +- uid: 8117 + type: MountainRock + components: + - pos: 110.5,-40.5 + parent: 0 + type: Transform +- uid: 8118 + type: MountainRock + components: + - pos: 110.5,-39.5 + parent: 0 + type: Transform +- uid: 8119 + type: MountainRock + components: + - pos: 110.5,-38.5 + parent: 0 + type: Transform +- uid: 8120 + type: MountainRock + components: + - pos: 110.5,-37.5 + parent: 0 + type: Transform +- uid: 8121 + type: MountainRock + components: + - pos: 110.5,-36.5 + parent: 0 + type: Transform +- uid: 8122 + type: MountainRock + components: + - pos: 110.5,-35.5 + parent: 0 + type: Transform +- uid: 8123 + type: MountainRock + components: + - pos: 110.5,-34.5 + parent: 0 + type: Transform +- uid: 8124 + type: MountainRock + components: + - pos: 110.5,-33.5 + parent: 0 + type: Transform +- uid: 8125 + type: MountainRock + components: + - pos: 110.5,-32.5 + parent: 0 + type: Transform +- uid: 8126 + type: MountainRock + components: + - pos: 109.5,-46.5 + parent: 0 + type: Transform +- uid: 8127 + type: MountainRock + components: + - pos: 109.5,-45.5 + parent: 0 + type: Transform +- uid: 8128 + type: MountainRock + components: + - pos: 109.5,-44.5 + parent: 0 + type: Transform +- uid: 8129 + type: MountainRock + components: + - pos: 109.5,-43.5 + parent: 0 + type: Transform +- uid: 8130 + type: MountainRock + components: + - pos: 109.5,-42.5 + parent: 0 + type: Transform +- uid: 8131 + type: MountainRock + components: + - pos: 109.5,-41.5 + parent: 0 + type: Transform +- uid: 8132 + type: MountainRock + components: + - pos: 109.5,-40.5 + parent: 0 + type: Transform +- uid: 8133 + type: MountainRock + components: + - pos: 109.5,-39.5 + parent: 0 + type: Transform +- uid: 8134 + type: MountainRock + components: + - pos: 109.5,-38.5 + parent: 0 + type: Transform +- uid: 8135 + type: MountainRock + components: + - pos: 109.5,-37.5 + parent: 0 + type: Transform +- uid: 8136 + type: MountainRock + components: + - pos: 109.5,-36.5 + parent: 0 + type: Transform +- uid: 8137 + type: MountainRock + components: + - pos: 109.5,-35.5 + parent: 0 + type: Transform +- uid: 8138 + type: MountainRock + components: + - pos: 109.5,-34.5 + parent: 0 + type: Transform +- uid: 8139 + type: MountainRock + components: + - pos: 109.5,-33.5 + parent: 0 + type: Transform +- uid: 8140 + type: MountainRock + components: + - pos: 109.5,-32.5 + parent: 0 + type: Transform +- uid: 8141 + type: MountainRock + components: + - pos: 108.5,-40.5 + parent: 0 + type: Transform +- uid: 8142 + type: MountainRock + components: + - pos: 108.5,-39.5 + parent: 0 + type: Transform +- uid: 8143 + type: MountainRock + components: + - pos: 112.5,-31.5 + parent: 0 + type: Transform +- uid: 8144 + type: MountainRock + components: + - pos: 112.5,-30.5 + parent: 0 + type: Transform +- uid: 8145 + type: MountainRock + components: + - pos: 112.5,-29.5 + parent: 0 + type: Transform +- uid: 8146 + type: MountainRock + components: + - pos: 112.5,-28.5 + parent: 0 + type: Transform +- uid: 8147 + type: MountainRock + components: + - pos: 112.5,-27.5 + parent: 0 + type: Transform +- uid: 8148 + type: MountainRock + components: + - pos: 112.5,-26.5 + parent: 0 + type: Transform +- uid: 8149 + type: MountainRock + components: + - pos: 111.5,-31.5 + parent: 0 + type: Transform +- uid: 8150 + type: MountainRock + components: + - pos: 111.5,-30.5 + parent: 0 + type: Transform +- uid: 8151 + type: MountainRock + components: + - pos: 111.5,-29.5 + parent: 0 + type: Transform +- uid: 8152 + type: MountainRock + components: + - pos: 111.5,-28.5 + parent: 0 + type: Transform +- uid: 8153 + type: MountainRock + components: + - pos: 111.5,-27.5 + parent: 0 + type: Transform +- uid: 8154 + type: MountainRock + components: + - pos: 111.5,-26.5 + parent: 0 + type: Transform +- uid: 8155 + type: MountainRock + components: + - pos: 110.5,-26.5 + parent: 0 + type: Transform +- uid: 8156 + type: MountainRock + components: + - pos: 112.5,-21.5 + parent: 0 + type: Transform +- uid: 8157 + type: MountainRock + components: + - pos: 112.5,-20.5 + parent: 0 + type: Transform +- uid: 8158 + type: MountainRock + components: + - pos: 112.5,-19.5 + parent: 0 + type: Transform +- uid: 8159 + type: MountainRock + components: + - pos: 112.5,-18.5 + parent: 0 + type: Transform +- uid: 8160 + type: MountainRock + components: + - pos: 112.5,-17.5 + parent: 0 + type: Transform +- uid: 8161 + type: MountainRock + components: + - pos: 112.5,-16.5 + parent: 0 + type: Transform +- uid: 8162 + type: MountainRock + components: + - pos: 112.5,-15.5 + parent: 0 + type: Transform +- uid: 8163 + type: MountainRock + components: + - pos: 112.5,-14.5 + parent: 0 + type: Transform +- uid: 8164 + type: MountainRock + components: + - pos: 112.5,-13.5 + parent: 0 + type: Transform +- uid: 8165 + type: MountainRock + components: + - pos: 112.5,-12.5 + parent: 0 + type: Transform +- uid: 8166 + type: MountainRock + components: + - pos: 112.5,-11.5 + parent: 0 + type: Transform +- uid: 8167 + type: MountainRock + components: + - pos: 112.5,-10.5 + parent: 0 + type: Transform +- uid: 8168 + type: MountainRock + components: + - pos: 112.5,-9.5 + parent: 0 + type: Transform +- uid: 8169 + type: MountainRock + components: + - pos: 112.5,-8.5 + parent: 0 + type: Transform +- uid: 8170 + type: MountainRock + components: + - pos: 111.5,-21.5 + parent: 0 + type: Transform +- uid: 8171 + type: MountainRock + components: + - pos: 111.5,-20.5 + parent: 0 + type: Transform +- uid: 8172 + type: MountainRock + components: + - pos: 111.5,-19.5 + parent: 0 + type: Transform +- uid: 8173 + type: MountainRock + components: + - pos: 111.5,-18.5 + parent: 0 + type: Transform +- uid: 8174 + type: MountainRock + components: + - pos: 111.5,-17.5 + parent: 0 + type: Transform +- uid: 8175 + type: MountainRock + components: + - pos: 111.5,-16.5 + parent: 0 + type: Transform +- uid: 8176 + type: MountainRock + components: + - pos: 111.5,-15.5 + parent: 0 + type: Transform +- uid: 8177 + type: MountainRock + components: + - pos: 111.5,-14.5 + parent: 0 + type: Transform +- uid: 8178 + type: MountainRock + components: + - pos: 111.5,-13.5 + parent: 0 + type: Transform +- uid: 8179 + type: MountainRock + components: + - pos: 111.5,-12.5 + parent: 0 + type: Transform +- uid: 8180 + type: MountainRock + components: + - pos: 111.5,-11.5 + parent: 0 + type: Transform +- uid: 8181 + type: MountainRock + components: + - pos: 111.5,-10.5 + parent: 0 + type: Transform +- uid: 8182 + type: MountainRock + components: + - pos: 111.5,-9.5 + parent: 0 + type: Transform +- uid: 8183 + type: MountainRock + components: + - pos: 111.5,-8.5 + parent: 0 + type: Transform +- uid: 8184 + type: MountainRock + components: + - pos: 110.5,-18.5 + parent: 0 + type: Transform +- uid: 8185 + type: MountainRock + components: + - pos: 110.5,-17.5 + parent: 0 + type: Transform +- uid: 8186 + type: MountainRock + components: + - pos: 110.5,-16.5 + parent: 0 + type: Transform +- uid: 8187 + type: MountainRock + components: + - pos: 110.5,-15.5 + parent: 0 + type: Transform +- uid: 8188 + type: MountainRock + components: + - pos: 110.5,-14.5 + parent: 0 + type: Transform +- uid: 8189 + type: MountainRock + components: + - pos: 110.5,-13.5 + parent: 0 + type: Transform +- uid: 8190 + type: MountainRock + components: + - pos: 110.5,-12.5 + parent: 0 + type: Transform +- uid: 8191 + type: MountainRock + components: + - pos: 109.5,-17.5 + parent: 0 + type: Transform +- uid: 8192 + type: MountainRock + components: + - pos: 109.5,-15.5 + parent: 0 + type: Transform +- uid: 8193 + type: MountainRock + components: + - pos: 108.5,-15.5 + parent: 0 + type: Transform +- uid: 8194 + type: MountainRock + components: + - pos: 109.5,-16.5 + parent: 0 + type: Transform +- uid: 8195 + type: MountainRock + components: + - pos: 109.5,-18.5 + parent: 0 + type: Transform +- uid: 8196 + type: MountainRock + components: + - pos: 112.5,-7.5 + parent: 0 + type: Transform +- uid: 8197 + type: MountainRock + components: + - pos: 112.5,-6.5 + parent: 0 + type: Transform +- uid: 8198 + type: MountainRock + components: + - pos: 112.5,-5.5 + parent: 0 + type: Transform +- uid: 8199 + type: MountainRock + components: + - pos: 112.5,-4.5 + parent: 0 + type: Transform +- uid: 8200 + type: MountainRock + components: + - pos: 112.5,-3.5 + parent: 0 + type: Transform +- uid: 8201 + type: MountainRock + components: + - pos: 112.5,-2.5 + parent: 0 + type: Transform +- uid: 8202 + type: MountainRock + components: + - pos: 112.5,-1.5 + parent: 0 + type: Transform +- uid: 8203 + type: MountainRock + components: + - pos: 112.5,-0.5 + parent: 0 + type: Transform +- uid: 8204 + type: MountainRock + components: + - pos: 112.5,0.5 + parent: 0 + type: Transform +- uid: 8205 + type: MountainRock + components: + - pos: 112.5,1.5 + parent: 0 + type: Transform +- uid: 8206 + type: MountainRock + components: + - pos: 112.5,2.5 + parent: 0 + type: Transform +- uid: 8207 + type: MountainRock + components: + - pos: 112.5,3.5 + parent: 0 + type: Transform +- uid: 8208 + type: MountainRock + components: + - pos: 112.5,4.5 + parent: 0 + type: Transform +- uid: 8209 + type: MountainRock + components: + - pos: 112.5,5.5 + parent: 0 + type: Transform +- uid: 8210 + type: MountainRock + components: + - pos: 112.5,6.5 + parent: 0 + type: Transform +- uid: 8211 + type: MountainRock + components: + - pos: 112.5,7.5 + parent: 0 + type: Transform +- uid: 8212 + type: MountainRock + components: + - pos: 112.5,8.5 + parent: 0 + type: Transform +- uid: 8213 + type: MountainRock + components: + - pos: 112.5,9.5 + parent: 0 + type: Transform +- uid: 8214 + type: MountainRock + components: + - pos: 112.5,10.5 + parent: 0 + type: Transform +- uid: 8215 + type: MountainRock + components: + - pos: 112.5,11.5 + parent: 0 + type: Transform +- uid: 8216 + type: MountainRock + components: + - pos: 112.5,12.5 + parent: 0 + type: Transform +- uid: 8217 + type: MountainRock + components: + - pos: 112.5,13.5 + parent: 0 + type: Transform +- uid: 8218 + type: MountainRock + components: + - pos: 112.5,14.5 + parent: 0 + type: Transform +- uid: 8219 + type: MountainRock + components: + - pos: 112.5,15.5 + parent: 0 + type: Transform +- uid: 8220 + type: MountainRock + components: + - pos: 112.5,16.5 + parent: 0 + type: Transform +- uid: 8221 + type: MountainRock + components: + - pos: 112.5,17.5 + parent: 0 + type: Transform +- uid: 8222 + type: MountainRock + components: + - pos: 112.5,18.5 + parent: 0 + type: Transform +- uid: 8223 + type: MountainRock + components: + - pos: 112.5,19.5 + parent: 0 + type: Transform +- uid: 8224 + type: MountainRock + components: + - pos: 110.5,17.5 + parent: 0 + type: Transform +- uid: 8225 + type: MountainRock + components: + - pos: 110.5,16.5 + parent: 0 + type: Transform +- uid: 8226 + type: MountainRock + components: + - pos: 110.5,15.5 + parent: 0 + type: Transform +- uid: 8227 + type: MountainRock + components: + - pos: 110.5,14.5 + parent: 0 + type: Transform +- uid: 8228 + type: MountainRock + components: + - pos: 110.5,13.5 + parent: 0 + type: Transform +- uid: 8229 + type: MountainRock + components: + - pos: 110.5,12.5 + parent: 0 + type: Transform +- uid: 8230 + type: MountainRock + components: + - pos: 110.5,11.5 + parent: 0 + type: Transform +- uid: 8231 + type: MountainRock + components: + - pos: 110.5,10.5 + parent: 0 + type: Transform +- uid: 8232 + type: MountainRock + components: + - pos: 110.5,9.5 + parent: 0 + type: Transform +- uid: 8233 + type: MountainRock + components: + - pos: 110.5,8.5 + parent: 0 + type: Transform +- uid: 8234 + type: MountainRock + components: + - pos: 110.5,7.5 + parent: 0 + type: Transform +- uid: 8235 + type: MountainRock + components: + - pos: 110.5,6.5 + parent: 0 + type: Transform +- uid: 8236 + type: MountainRock + components: + - pos: 111.5,17.5 + parent: 0 + type: Transform +- uid: 8237 + type: MountainRock + components: + - pos: 111.5,16.5 + parent: 0 + type: Transform +- uid: 8238 + type: MountainRock + components: + - pos: 111.5,15.5 + parent: 0 + type: Transform +- uid: 8239 + type: MountainRock + components: + - pos: 111.5,14.5 + parent: 0 + type: Transform +- uid: 8240 + type: MountainRock + components: + - pos: 111.5,13.5 + parent: 0 + type: Transform +- uid: 8241 + type: MountainRock + components: + - pos: 111.5,12.5 + parent: 0 + type: Transform +- uid: 8242 + type: MountainRock + components: + - pos: 111.5,11.5 + parent: 0 + type: Transform +- uid: 8243 + type: MountainRock + components: + - pos: 111.5,10.5 + parent: 0 + type: Transform +- uid: 8244 + type: MountainRock + components: + - pos: 111.5,9.5 + parent: 0 + type: Transform +- uid: 8245 + type: MountainRock + components: + - pos: 111.5,8.5 + parent: 0 + type: Transform +- uid: 8246 + type: MountainRock + components: + - pos: 111.5,7.5 + parent: 0 + type: Transform +- uid: 8247 + type: MountainRock + components: + - pos: 111.5,6.5 + parent: 0 + type: Transform +- uid: 8248 + type: MountainRock + components: + - pos: 111.5,5.5 + parent: 0 + type: Transform +- uid: 8249 + type: MountainRock + components: + - pos: 110.5,5.5 + parent: 0 + type: Transform +- uid: 8250 + type: MountainRock + components: + - pos: 109.5,6.5 + parent: 0 + type: Transform +- uid: 8251 + type: MountainRock + components: + - pos: 109.5,7.5 + parent: 0 + type: Transform +- uid: 8252 + type: MountainRock + components: + - pos: 109.5,8.5 + parent: 0 + type: Transform +- uid: 8253 + type: MountainRock + components: + - pos: 109.5,9.5 + parent: 0 + type: Transform +- uid: 8254 + type: MountainRock + components: + - pos: 109.5,10.5 + parent: 0 + type: Transform +- uid: 8255 + type: MountainRock + components: + - pos: 109.5,11.5 + parent: 0 + type: Transform +- uid: 8256 + type: MountainRock + components: + - pos: 109.5,12.5 + parent: 0 + type: Transform +- uid: 8257 + type: MountainRock + components: + - pos: 109.5,13.5 + parent: 0 + type: Transform +- uid: 8258 + type: MountainRock + components: + - pos: 109.5,14.5 + parent: 0 + type: Transform +- uid: 8259 + type: MountainRock + components: + - pos: 109.5,15.5 + parent: 0 + type: Transform +- uid: 8260 + type: MountainRock + components: + - pos: 108.5,8.5 + parent: 0 + type: Transform +- uid: 8261 + type: MountainRock + components: + - pos: 108.5,7.5 + parent: 0 + type: Transform +- uid: 8262 + type: MountainRock + components: + - pos: 111.5,4.5 + parent: 0 + type: Transform +- uid: 8263 + type: MountainRock + components: + - pos: 111.5,3.5 + parent: 0 + type: Transform +- uid: 8264 + type: MountainRock + components: + - pos: 111.5,2.5 + parent: 0 + type: Transform +- uid: 8265 + type: MountainRock + components: + - pos: 111.5,1.5 + parent: 0 + type: Transform +- uid: 8266 + type: MountainRock + components: + - pos: 111.5,0.5 + parent: 0 + type: Transform +- uid: 8267 + type: MountainRock + components: + - pos: 111.5,-0.5 + parent: 0 + type: Transform +- uid: 8268 + type: MountainRock + components: + - pos: 111.5,-1.5 + parent: 0 + type: Transform +- uid: 8269 + type: MountainRock + components: + - pos: 111.5,-2.5 + parent: 0 + type: Transform +- uid: 8270 + type: MountainRock + components: + - pos: 111.5,-3.5 + parent: 0 + type: Transform +- uid: 8271 + type: MountainRock + components: + - pos: 111.5,-4.5 + parent: 0 + type: Transform +- uid: 8272 + type: MountainRock + components: + - pos: 110.5,-3.5 + parent: 0 + type: Transform +- uid: 8273 + type: MountainRock + components: + - pos: 110.5,-2.5 + parent: 0 + type: Transform +- uid: 8274 + type: MountainRock + components: + - pos: 110.5,-1.5 + parent: 0 + type: Transform +- uid: 8275 + type: MountainRock + components: + - pos: 110.5,-0.5 + parent: 0 + type: Transform +- uid: 8276 + type: MountainRock + components: + - pos: 109.5,-3.5 + parent: 0 + type: Transform +- uid: 8277 + type: MountainRock + components: + - pos: 109.5,-2.5 + parent: 0 + type: Transform +- uid: 8278 + type: MountainRock + components: + - pos: 109.5,-1.5 + parent: 0 + type: Transform +- uid: 8279 + type: MountainRock + components: + - pos: 109.5,-0.5 + parent: 0 + type: Transform +- uid: 8280 + type: MountainRock + components: + - pos: 108.5,-0.5 + parent: 0 + type: Transform +- uid: 8281 + type: MountainRock + components: + - pos: 108.5,-1.5 + parent: 0 + type: Transform +- uid: 8282 + type: MountainRock + components: + - pos: 110.5,0.5 + parent: 0 + type: Transform +- uid: 8283 + type: MountainRock + components: + - pos: 110.5,1.5 + parent: 0 + type: Transform +- uid: 8284 + type: MountainRock + components: + - pos: 108.5,-47.5 + parent: 0 + type: Transform +- uid: 8285 + type: MountainRock + components: + - pos: 108.5,-48.5 + parent: 0 + type: Transform +- uid: 8286 + type: MountainRock + components: + - pos: 107.5,-48.5 + parent: 0 + type: Transform +- uid: 8287 + type: MountainRock + components: + - pos: 107.5,-49.5 + parent: 0 + type: Transform +- uid: 8288 + type: MountainRock + components: + - pos: 107.5,-50.5 + parent: 0 + type: Transform +- uid: 8289 + type: MountainRock + components: + - pos: 107.5,-51.5 + parent: 0 + type: Transform +- uid: 8290 + type: MountainRock + components: + - pos: 107.5,-52.5 + parent: 0 + type: Transform +- uid: 8291 + type: MountainRock + components: + - pos: 107.5,-53.5 + parent: 0 + type: Transform +- uid: 8292 + type: MountainRock + components: + - pos: 107.5,-54.5 + parent: 0 + type: Transform +- uid: 8293 + type: MountainRock + components: + - pos: 107.5,-55.5 + parent: 0 + type: Transform +- uid: 8294 + type: MountainRock + components: + - pos: 108.5,-56.5 + parent: 0 + type: Transform +- uid: 8295 + type: MountainRock + components: + - pos: 108.5,-49.5 + parent: 0 + type: Transform +- uid: 8296 + type: MountainRock + components: + - pos: 108.5,-50.5 + parent: 0 + type: Transform +- uid: 8297 + type: MountainRock + components: + - pos: 108.5,-51.5 + parent: 0 + type: Transform +- uid: 8298 + type: MountainRock + components: + - pos: 108.5,-52.5 + parent: 0 + type: Transform +- uid: 8299 + type: MountainRock + components: + - pos: 108.5,-53.5 + parent: 0 + type: Transform +- uid: 8300 + type: MountainRock + components: + - pos: 108.5,-54.5 + parent: 0 + type: Transform +- uid: 8301 + type: MountainRock + components: + - pos: 108.5,-55.5 + parent: 0 + type: Transform +- uid: 8302 + type: MountainRock + components: + - pos: 109.5,-56.5 + parent: 0 + type: Transform +- uid: 8303 + type: MountainRock + components: + - pos: 109.5,-55.5 + parent: 0 + type: Transform +- uid: 8304 + type: MountainRock + components: + - pos: 109.5,-54.5 + parent: 0 + type: Transform +- uid: 8305 + type: MountainRock + components: + - pos: 109.5,-53.5 + parent: 0 + type: Transform +- uid: 8306 + type: MountainRock + components: + - pos: 109.5,-52.5 + parent: 0 + type: Transform +- uid: 8307 + type: MountainRock + components: + - pos: 109.5,-51.5 + parent: 0 + type: Transform +- uid: 8308 + type: MountainRock + components: + - pos: 109.5,-50.5 + parent: 0 + type: Transform +- uid: 8309 + type: MountainRock + components: + - pos: 109.5,-49.5 + parent: 0 + type: Transform +- uid: 8310 + type: MountainRock + components: + - pos: 109.5,-48.5 + parent: 0 + type: Transform +- uid: 8311 + type: MountainRock + components: + - pos: 109.5,-47.5 + parent: 0 + type: Transform +- uid: 8312 + type: MountainRock + components: + - pos: 110.5,-56.5 + parent: 0 + type: Transform +- uid: 8313 + type: MountainRock + components: + - pos: 110.5,-55.5 + parent: 0 + type: Transform +- uid: 8314 + type: MountainRock + components: + - pos: 110.5,-54.5 + parent: 0 + type: Transform +- uid: 8315 + type: MountainRock + components: + - pos: 110.5,-53.5 + parent: 0 + type: Transform +- uid: 8316 + type: MountainRock + components: + - pos: 110.5,-52.5 + parent: 0 + type: Transform +- uid: 8317 + type: MountainRock + components: + - pos: 110.5,-51.5 + parent: 0 + type: Transform +- uid: 8318 + type: MountainRock + components: + - pos: 110.5,-50.5 + parent: 0 + type: Transform +- uid: 8319 + type: MountainRock + components: + - pos: 110.5,-49.5 + parent: 0 + type: Transform +- uid: 8320 + type: MountainRock + components: + - pos: 110.5,-48.5 + parent: 0 + type: Transform +- uid: 8321 + type: MountainRock + components: + - pos: 110.5,-47.5 + parent: 0 + type: Transform +- uid: 8322 + type: MountainRock + components: + - pos: 111.5,-56.5 + parent: 0 + type: Transform +- uid: 8323 + type: MountainRock + components: + - pos: 111.5,-55.5 + parent: 0 + type: Transform +- uid: 8324 + type: MountainRock + components: + - pos: 111.5,-54.5 + parent: 0 + type: Transform +- uid: 8325 + type: MountainRock + components: + - pos: 111.5,-53.5 + parent: 0 + type: Transform +- uid: 8326 + type: MountainRock + components: + - pos: 111.5,-52.5 + parent: 0 + type: Transform +- uid: 8327 + type: MountainRock + components: + - pos: 111.5,-51.5 + parent: 0 + type: Transform +- uid: 8328 + type: MountainRock + components: + - pos: 111.5,-50.5 + parent: 0 + type: Transform +- uid: 8329 + type: MountainRock + components: + - pos: 111.5,-49.5 + parent: 0 + type: Transform +- uid: 8330 + type: MountainRock + components: + - pos: 111.5,-48.5 + parent: 0 + type: Transform +- uid: 8331 + type: MountainRock + components: + - pos: 111.5,-47.5 + parent: 0 + type: Transform +- uid: 8332 + type: MountainRock + components: + - pos: 112.5,-56.5 + parent: 0 + type: Transform +- uid: 8333 + type: MountainRock + components: + - pos: 112.5,-55.5 + parent: 0 + type: Transform +- uid: 8334 + type: MountainRock + components: + - pos: 112.5,-54.5 + parent: 0 + type: Transform +- uid: 8335 + type: MountainRock + components: + - pos: 112.5,-53.5 + parent: 0 + type: Transform +- uid: 8336 + type: MountainRock + components: + - pos: 112.5,-52.5 + parent: 0 + type: Transform +- uid: 8337 + type: MountainRock + components: + - pos: 112.5,-51.5 + parent: 0 + type: Transform +- uid: 8338 + type: MountainRock + components: + - pos: 112.5,-50.5 + parent: 0 + type: Transform +- uid: 8339 + type: MountainRock + components: + - pos: 112.5,-49.5 + parent: 0 + type: Transform +- uid: 8340 + type: MountainRock + components: + - pos: 112.5,-48.5 + parent: 0 + type: Transform +- uid: 8341 + type: MountainRock + components: + - pos: 112.5,-47.5 + parent: 0 + type: Transform +- uid: 8342 + type: MountainRock + components: + - pos: 113.5,-56.5 + parent: 0 + type: Transform +- uid: 8343 + type: MountainRock + components: + - pos: 113.5,-55.5 + parent: 0 + type: Transform +- uid: 8344 + type: MountainRock + components: + - pos: 113.5,-54.5 + parent: 0 + type: Transform +- uid: 8345 + type: MountainRock + components: + - pos: 113.5,-53.5 + parent: 0 + type: Transform +- uid: 8346 + type: MountainRock + components: + - pos: 113.5,-52.5 + parent: 0 + type: Transform +- uid: 8347 + type: MountainRock + components: + - pos: 113.5,-51.5 + parent: 0 + type: Transform +- uid: 8348 + type: MountainRock + components: + - pos: 113.5,-50.5 + parent: 0 + type: Transform +- uid: 8349 + type: MountainRock + components: + - pos: 113.5,-49.5 + parent: 0 + type: Transform +- uid: 8350 + type: MountainRock + components: + - pos: 113.5,-48.5 + parent: 0 + type: Transform +- uid: 8351 + type: MountainRock + components: + - pos: 113.5,-47.5 + parent: 0 + type: Transform +- uid: 8352 + type: MountainRock + components: + - pos: 114.5,-56.5 + parent: 0 + type: Transform +- uid: 8353 + type: MountainRock + components: + - pos: 114.5,-55.5 + parent: 0 + type: Transform +- uid: 8354 + type: MountainRock + components: + - pos: 114.5,-54.5 + parent: 0 + type: Transform +- uid: 8355 + type: MountainRock + components: + - pos: 114.5,-53.5 + parent: 0 + type: Transform +- uid: 8356 + type: MountainRock + components: + - pos: 114.5,-52.5 + parent: 0 + type: Transform +- uid: 8357 + type: MountainRock + components: + - pos: 114.5,-51.5 + parent: 0 + type: Transform +- uid: 8358 + type: MountainRock + components: + - pos: 114.5,-50.5 + parent: 0 + type: Transform +- uid: 8359 + type: MountainRock + components: + - pos: 114.5,-49.5 + parent: 0 + type: Transform +- uid: 8360 + type: MountainRock + components: + - pos: 114.5,-48.5 + parent: 0 + type: Transform +- uid: 8361 + type: MountainRock + components: + - pos: 114.5,-47.5 + parent: 0 + type: Transform +- uid: 8362 + type: MountainRock + components: + - pos: 115.5,-56.5 + parent: 0 + type: Transform +- uid: 8363 + type: MountainRock + components: + - pos: 115.5,-55.5 + parent: 0 + type: Transform +- uid: 8364 + type: MountainRock + components: + - pos: 115.5,-54.5 + parent: 0 + type: Transform +- uid: 8365 + type: MountainRock + components: + - pos: 115.5,-53.5 + parent: 0 + type: Transform +- uid: 8366 + type: MountainRock + components: + - pos: 115.5,-52.5 + parent: 0 + type: Transform +- uid: 8367 + type: MountainRock + components: + - pos: 115.5,-51.5 + parent: 0 + type: Transform +- uid: 8368 + type: MountainRock + components: + - pos: 115.5,-50.5 + parent: 0 + type: Transform +- uid: 8369 + type: MountainRock + components: + - pos: 115.5,-49.5 + parent: 0 + type: Transform +- uid: 8370 + type: MountainRock + components: + - pos: 115.5,-48.5 + parent: 0 + type: Transform +- uid: 8371 + type: MountainRock + components: + - pos: 115.5,-47.5 + parent: 0 + type: Transform +- uid: 8372 + type: MountainRock + components: + - pos: 116.5,-56.5 + parent: 0 + type: Transform +- uid: 8373 + type: MountainRock + components: + - pos: 116.5,-55.5 + parent: 0 + type: Transform +- uid: 8374 + type: MountainRock + components: + - pos: 116.5,-54.5 + parent: 0 + type: Transform +- uid: 8375 + type: MountainRock + components: + - pos: 116.5,-53.5 + parent: 0 + type: Transform +- uid: 8376 + type: MountainRock + components: + - pos: 116.5,-52.5 + parent: 0 + type: Transform +- uid: 8377 + type: MountainRock + components: + - pos: 116.5,-51.5 + parent: 0 + type: Transform +- uid: 8378 + type: MountainRock + components: + - pos: 116.5,-50.5 + parent: 0 + type: Transform +- uid: 8379 + type: MountainRock + components: + - pos: 116.5,-49.5 + parent: 0 + type: Transform +- uid: 8380 + type: MountainRock + components: + - pos: 116.5,-48.5 + parent: 0 + type: Transform +- uid: 8381 + type: MountainRock + components: + - pos: 116.5,-47.5 + parent: 0 + type: Transform +- uid: 8382 + type: MountainRock + components: + - pos: 117.5,-56.5 + parent: 0 + type: Transform +- uid: 8383 + type: MountainRock + components: + - pos: 117.5,-55.5 + parent: 0 + type: Transform +- uid: 8384 + type: MountainRock + components: + - pos: 117.5,-54.5 + parent: 0 + type: Transform +- uid: 8385 + type: MountainRock + components: + - pos: 117.5,-53.5 + parent: 0 + type: Transform +- uid: 8386 + type: MountainRock + components: + - pos: 117.5,-52.5 + parent: 0 + type: Transform +- uid: 8387 + type: MountainRock + components: + - pos: 117.5,-51.5 + parent: 0 + type: Transform +- uid: 8388 + type: MountainRock + components: + - pos: 117.5,-50.5 + parent: 0 + type: Transform +- uid: 8389 + type: MountainRock + components: + - pos: 117.5,-49.5 + parent: 0 + type: Transform +- uid: 8390 + type: MountainRock + components: + - pos: 117.5,-48.5 + parent: 0 + type: Transform +- uid: 8391 + type: MountainRock + components: + - pos: 117.5,-47.5 + parent: 0 + type: Transform +- uid: 8392 + type: MountainRock + components: + - pos: 118.5,-56.5 + parent: 0 + type: Transform +- uid: 8393 + type: MountainRock + components: + - pos: 118.5,-55.5 + parent: 0 + type: Transform +- uid: 8394 + type: MountainRock + components: + - pos: 118.5,-54.5 + parent: 0 + type: Transform +- uid: 8395 + type: MountainRock + components: + - pos: 118.5,-53.5 + parent: 0 + type: Transform +- uid: 8396 + type: MountainRock + components: + - pos: 118.5,-52.5 + parent: 0 + type: Transform +- uid: 8397 + type: MountainRock + components: + - pos: 118.5,-51.5 + parent: 0 + type: Transform +- uid: 8398 + type: MountainRock + components: + - pos: 118.5,-50.5 + parent: 0 + type: Transform +- uid: 8399 + type: MountainRock + components: + - pos: 118.5,-49.5 + parent: 0 + type: Transform +- uid: 8400 + type: MountainRock + components: + - pos: 118.5,-48.5 + parent: 0 + type: Transform +- uid: 8401 + type: MountainRock + components: + - pos: 118.5,-47.5 + parent: 0 + type: Transform +- uid: 8402 + type: MountainRock + components: + - pos: 119.5,-56.5 + parent: 0 + type: Transform +- uid: 8403 + type: MountainRock + components: + - pos: 119.5,-55.5 + parent: 0 + type: Transform +- uid: 8404 + type: MountainRock + components: + - pos: 119.5,-54.5 + parent: 0 + type: Transform +- uid: 8405 + type: MountainRock + components: + - pos: 119.5,-53.5 + parent: 0 + type: Transform +- uid: 8406 + type: MountainRock + components: + - pos: 119.5,-52.5 + parent: 0 + type: Transform +- uid: 8407 + type: MountainRock + components: + - pos: 119.5,-51.5 + parent: 0 + type: Transform +- uid: 8408 + type: MountainRock + components: + - pos: 119.5,-50.5 + parent: 0 + type: Transform +- uid: 8409 + type: MountainRock + components: + - pos: 119.5,-49.5 + parent: 0 + type: Transform +- uid: 8410 + type: MountainRock + components: + - pos: 119.5,-48.5 + parent: 0 + type: Transform +- uid: 8411 + type: MountainRock + components: + - pos: 119.5,-47.5 + parent: 0 + type: Transform +- uid: 8412 + type: MountainRock + components: + - pos: 120.5,-56.5 + parent: 0 + type: Transform +- uid: 8413 + type: MountainRock + components: + - pos: 120.5,-55.5 + parent: 0 + type: Transform +- uid: 8414 + type: MountainRock + components: + - pos: 120.5,-54.5 + parent: 0 + type: Transform +- uid: 8415 + type: MountainRock + components: + - pos: 120.5,-53.5 + parent: 0 + type: Transform +- uid: 8416 + type: MountainRock + components: + - pos: 120.5,-52.5 + parent: 0 + type: Transform +- uid: 8417 + type: MountainRock + components: + - pos: 120.5,-51.5 + parent: 0 + type: Transform +- uid: 8418 + type: MountainRock + components: + - pos: 120.5,-50.5 + parent: 0 + type: Transform +- uid: 8419 + type: MountainRock + components: + - pos: 120.5,-49.5 + parent: 0 + type: Transform +- uid: 8420 + type: MountainRock + components: + - pos: 120.5,-48.5 + parent: 0 + type: Transform +- uid: 8421 + type: MountainRock + components: + - pos: 120.5,-47.5 + parent: 0 + type: Transform +- uid: 8422 + type: MountainRock + components: + - pos: 121.5,-56.5 + parent: 0 + type: Transform +- uid: 8423 + type: MountainRock + components: + - pos: 121.5,-55.5 + parent: 0 + type: Transform +- uid: 8424 + type: MountainRock + components: + - pos: 121.5,-54.5 + parent: 0 + type: Transform +- uid: 8425 + type: MountainRock + components: + - pos: 121.5,-53.5 + parent: 0 + type: Transform +- uid: 8426 + type: MountainRock + components: + - pos: 121.5,-52.5 + parent: 0 + type: Transform +- uid: 8427 + type: MountainRock + components: + - pos: 121.5,-51.5 + parent: 0 + type: Transform +- uid: 8428 + type: MountainRock + components: + - pos: 121.5,-50.5 + parent: 0 + type: Transform +- uid: 8429 + type: MountainRock + components: + - pos: 121.5,-49.5 + parent: 0 + type: Transform +- uid: 8430 + type: MountainRock + components: + - pos: 121.5,-48.5 + parent: 0 + type: Transform +- uid: 8431 + type: MountainRock + components: + - pos: 121.5,-47.5 + parent: 0 + type: Transform +- uid: 8432 + type: MountainRock + components: + - pos: 122.5,-56.5 + parent: 0 + type: Transform +- uid: 8433 + type: MountainRock + components: + - pos: 122.5,-55.5 + parent: 0 + type: Transform +- uid: 8434 + type: MountainRock + components: + - pos: 122.5,-54.5 + parent: 0 + type: Transform +- uid: 8435 + type: MountainRock + components: + - pos: 122.5,-53.5 + parent: 0 + type: Transform +- uid: 8436 + type: MountainRock + components: + - pos: 122.5,-52.5 + parent: 0 + type: Transform +- uid: 8437 + type: MountainRock + components: + - pos: 122.5,-51.5 + parent: 0 + type: Transform +- uid: 8438 + type: MountainRock + components: + - pos: 122.5,-50.5 + parent: 0 + type: Transform +- uid: 8439 + type: MountainRock + components: + - pos: 122.5,-49.5 + parent: 0 + type: Transform +- uid: 8440 + type: MountainRock + components: + - pos: 122.5,-48.5 + parent: 0 + type: Transform +- uid: 8441 + type: MountainRock + components: + - pos: 122.5,-47.5 + parent: 0 + type: Transform +- uid: 8442 + type: MountainRock + components: + - pos: 123.5,-56.5 + parent: 0 + type: Transform +- uid: 8443 + type: MountainRock + components: + - pos: 123.5,-55.5 + parent: 0 + type: Transform +- uid: 8444 + type: MountainRock + components: + - pos: 123.5,-54.5 + parent: 0 + type: Transform +- uid: 8445 + type: MountainRock + components: + - pos: 123.5,-53.5 + parent: 0 + type: Transform +- uid: 8446 + type: MountainRock + components: + - pos: 123.5,-52.5 + parent: 0 + type: Transform +- uid: 8447 + type: MountainRock + components: + - pos: 123.5,-51.5 + parent: 0 + type: Transform +- uid: 8448 + type: MountainRock + components: + - pos: 123.5,-50.5 + parent: 0 + type: Transform +- uid: 8449 + type: MountainRock + components: + - pos: 123.5,-49.5 + parent: 0 + type: Transform +- uid: 8450 + type: MountainRock + components: + - pos: 123.5,-48.5 + parent: 0 + type: Transform +- uid: 8451 + type: MountainRock + components: + - pos: 123.5,-47.5 + parent: 0 + type: Transform +- uid: 8452 + type: MountainRock + components: + - pos: 124.5,-56.5 + parent: 0 + type: Transform +- uid: 8453 + type: MountainRock + components: + - pos: 124.5,-55.5 + parent: 0 + type: Transform +- uid: 8454 + type: MountainRock + components: + - pos: 124.5,-54.5 + parent: 0 + type: Transform +- uid: 8455 + type: MountainRock + components: + - pos: 124.5,-53.5 + parent: 0 + type: Transform +- uid: 8456 + type: MountainRock + components: + - pos: 124.5,-52.5 + parent: 0 + type: Transform +- uid: 8457 + type: MountainRock + components: + - pos: 124.5,-51.5 + parent: 0 + type: Transform +- uid: 8458 + type: MountainRock + components: + - pos: 124.5,-50.5 + parent: 0 + type: Transform +- uid: 8459 + type: MountainRock + components: + - pos: 124.5,-49.5 + parent: 0 + type: Transform +- uid: 8460 + type: MountainRock + components: + - pos: 124.5,-48.5 + parent: 0 + type: Transform +- uid: 8461 + type: MountainRock + components: + - pos: 124.5,-47.5 + parent: 0 + type: Transform +- uid: 8462 + type: MountainRock + components: + - pos: 125.5,-56.5 + parent: 0 + type: Transform +- uid: 8463 + type: MountainRock + components: + - pos: 125.5,-55.5 + parent: 0 + type: Transform +- uid: 8464 + type: MountainRock + components: + - pos: 125.5,-54.5 + parent: 0 + type: Transform +- uid: 8465 + type: MountainRock + components: + - pos: 125.5,-53.5 + parent: 0 + type: Transform +- uid: 8466 + type: MountainRock + components: + - pos: 125.5,-52.5 + parent: 0 + type: Transform +- uid: 8467 + type: MountainRock + components: + - pos: 125.5,-51.5 + parent: 0 + type: Transform +- uid: 8468 + type: MountainRock + components: + - pos: 125.5,-50.5 + parent: 0 + type: Transform +- uid: 8469 + type: MountainRock + components: + - pos: 125.5,-49.5 + parent: 0 + type: Transform +- uid: 8470 + type: MountainRock + components: + - pos: 125.5,-48.5 + parent: 0 + type: Transform +- uid: 8471 + type: MountainRock + components: + - pos: 125.5,-47.5 + parent: 0 + type: Transform +- uid: 8472 + type: MountainRock + components: + - pos: 126.5,-56.5 + parent: 0 + type: Transform +- uid: 8473 + type: MountainRock + components: + - pos: 126.5,-55.5 + parent: 0 + type: Transform +- uid: 8474 + type: MountainRock + components: + - pos: 126.5,-54.5 + parent: 0 + type: Transform +- uid: 8475 + type: MountainRock + components: + - pos: 126.5,-53.5 + parent: 0 + type: Transform +- uid: 8476 + type: MountainRock + components: + - pos: 126.5,-52.5 + parent: 0 + type: Transform +- uid: 8477 + type: MountainRock + components: + - pos: 126.5,-51.5 + parent: 0 + type: Transform +- uid: 8478 + type: MountainRock + components: + - pos: 126.5,-50.5 + parent: 0 + type: Transform +- uid: 8479 + type: MountainRock + components: + - pos: 126.5,-49.5 + parent: 0 + type: Transform +- uid: 8480 + type: MountainRock + components: + - pos: 126.5,-48.5 + parent: 0 + type: Transform +- uid: 8481 + type: MountainRock + components: + - pos: 126.5,-47.5 + parent: 0 + type: Transform +- uid: 8482 + type: MountainRock + components: + - pos: 127.5,-56.5 + parent: 0 + type: Transform +- uid: 8483 + type: MountainRock + components: + - pos: 127.5,-55.5 + parent: 0 + type: Transform +- uid: 8484 + type: MountainRock + components: + - pos: 127.5,-54.5 + parent: 0 + type: Transform +- uid: 8485 + type: MountainRock + components: + - pos: 127.5,-53.5 + parent: 0 + type: Transform +- uid: 8486 + type: MountainRock + components: + - pos: 127.5,-52.5 + parent: 0 + type: Transform +- uid: 8487 + type: MountainRock + components: + - pos: 127.5,-51.5 + parent: 0 + type: Transform +- uid: 8488 + type: MountainRock + components: + - pos: 127.5,-50.5 + parent: 0 + type: Transform +- uid: 8489 + type: MountainRock + components: + - pos: 127.5,-49.5 + parent: 0 + type: Transform +- uid: 8490 + type: MountainRock + components: + - pos: 127.5,-48.5 + parent: 0 + type: Transform +- uid: 8491 + type: MountainRock + components: + - pos: 127.5,-47.5 + parent: 0 + type: Transform +- uid: 8492 + type: MountainRock + components: + - pos: 128.5,-56.5 + parent: 0 + type: Transform +- uid: 8493 + type: MountainRock + components: + - pos: 128.5,-55.5 + parent: 0 + type: Transform +- uid: 8494 + type: MountainRock + components: + - pos: 128.5,-54.5 + parent: 0 + type: Transform +- uid: 8495 + type: MountainRock + components: + - pos: 128.5,-53.5 + parent: 0 + type: Transform +- uid: 8496 + type: MountainRock + components: + - pos: 128.5,-52.5 + parent: 0 + type: Transform +- uid: 8497 + type: MountainRock + components: + - pos: 128.5,-51.5 + parent: 0 + type: Transform +- uid: 8498 + type: MountainRock + components: + - pos: 128.5,-50.5 + parent: 0 + type: Transform +- uid: 8499 + type: MountainRock + components: + - pos: 128.5,-49.5 + parent: 0 + type: Transform +- uid: 8500 + type: MountainRock + components: + - pos: 128.5,-48.5 + parent: 0 + type: Transform +- uid: 8501 + type: MountainRock + components: + - pos: 128.5,-47.5 + parent: 0 + type: Transform +- uid: 8502 + type: MountainRock + components: + - pos: 129.5,-56.5 + parent: 0 + type: Transform +- uid: 8503 + type: MountainRock + components: + - pos: 129.5,-55.5 + parent: 0 + type: Transform +- uid: 8504 + type: MountainRock + components: + - pos: 129.5,-54.5 + parent: 0 + type: Transform +- uid: 8505 + type: MountainRock + components: + - pos: 129.5,-53.5 + parent: 0 + type: Transform +- uid: 8506 + type: MountainRock + components: + - pos: 129.5,-52.5 + parent: 0 + type: Transform +- uid: 8507 + type: MountainRock + components: + - pos: 129.5,-51.5 + parent: 0 + type: Transform +- uid: 8508 + type: MountainRock + components: + - pos: 129.5,-50.5 + parent: 0 + type: Transform +- uid: 8509 + type: MountainRock + components: + - pos: 129.5,-49.5 + parent: 0 + type: Transform +- uid: 8510 + type: MountainRock + components: + - pos: 129.5,-48.5 + parent: 0 + type: Transform +- uid: 8511 + type: MountainRock + components: + - pos: 129.5,-47.5 + parent: 0 + type: Transform +- uid: 8512 + type: MountainRock + components: + - pos: 130.5,-56.5 + parent: 0 + type: Transform +- uid: 8513 + type: MountainRock + components: + - pos: 130.5,-55.5 + parent: 0 + type: Transform +- uid: 8514 + type: MountainRock + components: + - pos: 130.5,-54.5 + parent: 0 + type: Transform +- uid: 8515 + type: MountainRock + components: + - pos: 130.5,-53.5 + parent: 0 + type: Transform +- uid: 8516 + type: MountainRock + components: + - pos: 130.5,-52.5 + parent: 0 + type: Transform +- uid: 8517 + type: MountainRock + components: + - pos: 130.5,-51.5 + parent: 0 + type: Transform +- uid: 8518 + type: MountainRock + components: + - pos: 130.5,-50.5 + parent: 0 + type: Transform +- uid: 8519 + type: MountainRock + components: + - pos: 130.5,-49.5 + parent: 0 + type: Transform +- uid: 8520 + type: MountainRock + components: + - pos: 130.5,-48.5 + parent: 0 + type: Transform +- uid: 8521 + type: MountainRock + components: + - pos: 130.5,-47.5 + parent: 0 + type: Transform +- uid: 8522 + type: MountainRock + components: + - pos: 131.5,-56.5 + parent: 0 + type: Transform +- uid: 8523 + type: MountainRock + components: + - pos: 131.5,-55.5 + parent: 0 + type: Transform +- uid: 8524 + type: MountainRock + components: + - pos: 131.5,-54.5 + parent: 0 + type: Transform +- uid: 8525 + type: MountainRock + components: + - pos: 131.5,-53.5 + parent: 0 + type: Transform +- uid: 8526 + type: MountainRock + components: + - pos: 131.5,-52.5 + parent: 0 + type: Transform +- uid: 8527 + type: MountainRock + components: + - pos: 131.5,-51.5 + parent: 0 + type: Transform +- uid: 8528 + type: MountainRock + components: + - pos: 131.5,-50.5 + parent: 0 + type: Transform +- uid: 8529 + type: MountainRock + components: + - pos: 131.5,-49.5 + parent: 0 + type: Transform +- uid: 8530 + type: MountainRock + components: + - pos: 131.5,-48.5 + parent: 0 + type: Transform +- uid: 8531 + type: MountainRock + components: + - pos: 131.5,-47.5 + parent: 0 + type: Transform +- uid: 8532 + type: MountainRock + components: + - pos: 132.5,-56.5 + parent: 0 + type: Transform +- uid: 8533 + type: MountainRock + components: + - pos: 132.5,-55.5 + parent: 0 + type: Transform +- uid: 8534 + type: MountainRock + components: + - pos: 132.5,-54.5 + parent: 0 + type: Transform +- uid: 8535 + type: MountainRock + components: + - pos: 132.5,-53.5 + parent: 0 + type: Transform +- uid: 8536 + type: MountainRock + components: + - pos: 132.5,-52.5 + parent: 0 + type: Transform +- uid: 8537 + type: MountainRock + components: + - pos: 132.5,-51.5 + parent: 0 + type: Transform +- uid: 8538 + type: MountainRock + components: + - pos: 132.5,-50.5 + parent: 0 + type: Transform +- uid: 8539 + type: MountainRock + components: + - pos: 132.5,-49.5 + parent: 0 + type: Transform +- uid: 8540 + type: MountainRock + components: + - pos: 132.5,-48.5 + parent: 0 + type: Transform +- uid: 8541 + type: MountainRock + components: + - pos: 132.5,-47.5 + parent: 0 + type: Transform +- uid: 8542 + type: MountainRock + components: + - pos: 133.5,-56.5 + parent: 0 + type: Transform +- uid: 8543 + type: MountainRock + components: + - pos: 133.5,-55.5 + parent: 0 + type: Transform +- uid: 8544 + type: MountainRock + components: + - pos: 133.5,-54.5 + parent: 0 + type: Transform +- uid: 8545 + type: MountainRock + components: + - pos: 133.5,-53.5 + parent: 0 + type: Transform +- uid: 8546 + type: MountainRock + components: + - pos: 133.5,-52.5 + parent: 0 + type: Transform +- uid: 8547 + type: MountainRock + components: + - pos: 133.5,-51.5 + parent: 0 + type: Transform +- uid: 8548 + type: MountainRock + components: + - pos: 133.5,-50.5 + parent: 0 + type: Transform +- uid: 8549 + type: MountainRock + components: + - pos: 133.5,-49.5 + parent: 0 + type: Transform +- uid: 8550 + type: MountainRock + components: + - pos: 133.5,-48.5 + parent: 0 + type: Transform +- uid: 8551 + type: MountainRock + components: + - pos: 133.5,-47.5 + parent: 0 + type: Transform +- uid: 8552 + type: MountainRock + components: + - pos: 134.5,-56.5 + parent: 0 + type: Transform +- uid: 8553 + type: MountainRock + components: + - pos: 134.5,-55.5 + parent: 0 + type: Transform +- uid: 8554 + type: MountainRock + components: + - pos: 134.5,-54.5 + parent: 0 + type: Transform +- uid: 8555 + type: MountainRock + components: + - pos: 134.5,-53.5 + parent: 0 + type: Transform +- uid: 8556 + type: MountainRock + components: + - pos: 134.5,-52.5 + parent: 0 + type: Transform +- uid: 8557 + type: MountainRock + components: + - pos: 134.5,-51.5 + parent: 0 + type: Transform +- uid: 8558 + type: MountainRock + components: + - pos: 134.5,-50.5 + parent: 0 + type: Transform +- uid: 8559 + type: MountainRock + components: + - pos: 134.5,-49.5 + parent: 0 + type: Transform +- uid: 8560 + type: MountainRock + components: + - pos: 134.5,-48.5 + parent: 0 + type: Transform +- uid: 8561 + type: MountainRock + components: + - pos: 134.5,-47.5 + parent: 0 + type: Transform +- uid: 8562 + type: MountainRock + components: + - pos: 135.5,-56.5 + parent: 0 + type: Transform +- uid: 8563 + type: MountainRock + components: + - pos: 135.5,-55.5 + parent: 0 + type: Transform +- uid: 8564 + type: MountainRock + components: + - pos: 135.5,-54.5 + parent: 0 + type: Transform +- uid: 8565 + type: MountainRock + components: + - pos: 135.5,-53.5 + parent: 0 + type: Transform +- uid: 8566 + type: MountainRock + components: + - pos: 135.5,-52.5 + parent: 0 + type: Transform +- uid: 8567 + type: MountainRock + components: + - pos: 135.5,-51.5 + parent: 0 + type: Transform +- uid: 8568 + type: MountainRock + components: + - pos: 135.5,-50.5 + parent: 0 + type: Transform +- uid: 8569 + type: MountainRock + components: + - pos: 135.5,-49.5 + parent: 0 + type: Transform +- uid: 8570 + type: MountainRock + components: + - pos: 135.5,-48.5 + parent: 0 + type: Transform +- uid: 8571 + type: MountainRock + components: + - pos: 135.5,-47.5 + parent: 0 + type: Transform +- uid: 8572 + type: MountainRock + components: + - pos: 136.5,-56.5 + parent: 0 + type: Transform +- uid: 8573 + type: MountainRock + components: + - pos: 136.5,-55.5 + parent: 0 + type: Transform +- uid: 8574 + type: MountainRock + components: + - pos: 136.5,-54.5 + parent: 0 + type: Transform +- uid: 8575 + type: MountainRock + components: + - pos: 136.5,-53.5 + parent: 0 + type: Transform +- uid: 8576 + type: MountainRock + components: + - pos: 136.5,-52.5 + parent: 0 + type: Transform +- uid: 8577 + type: MountainRock + components: + - pos: 136.5,-51.5 + parent: 0 + type: Transform +- uid: 8578 + type: MountainRock + components: + - pos: 136.5,-50.5 + parent: 0 + type: Transform +- uid: 8579 + type: MountainRock + components: + - pos: 136.5,-49.5 + parent: 0 + type: Transform +- uid: 8580 + type: MountainRock + components: + - pos: 136.5,-48.5 + parent: 0 + type: Transform +- uid: 8581 + type: MountainRock + components: + - pos: 136.5,-47.5 + parent: 0 + type: Transform +- uid: 8582 + type: MountainRock + components: + - pos: 137.5,-56.5 + parent: 0 + type: Transform +- uid: 8583 + type: MountainRock + components: + - pos: 137.5,-55.5 + parent: 0 + type: Transform +- uid: 8584 + type: MountainRock + components: + - pos: 137.5,-54.5 + parent: 0 + type: Transform +- uid: 8585 + type: MountainRock + components: + - pos: 137.5,-53.5 + parent: 0 + type: Transform +- uid: 8586 + type: MountainRock + components: + - pos: 137.5,-52.5 + parent: 0 + type: Transform +- uid: 8587 + type: MountainRock + components: + - pos: 137.5,-51.5 + parent: 0 + type: Transform +- uid: 8588 + type: MountainRock + components: + - pos: 137.5,-50.5 + parent: 0 + type: Transform +- uid: 8589 + type: MountainRock + components: + - pos: 137.5,-49.5 + parent: 0 + type: Transform +- uid: 8590 + type: MountainRock + components: + - pos: 137.5,-48.5 + parent: 0 + type: Transform +- uid: 8591 + type: MountainRock + components: + - pos: 137.5,-47.5 + parent: 0 + type: Transform +- uid: 8592 + type: MountainRock + components: + - pos: 138.5,-56.5 + parent: 0 + type: Transform +- uid: 8593 + type: MountainRock + components: + - pos: 138.5,-55.5 + parent: 0 + type: Transform +- uid: 8594 + type: MountainRock + components: + - pos: 138.5,-54.5 + parent: 0 + type: Transform +- uid: 8595 + type: MountainRock + components: + - pos: 138.5,-53.5 + parent: 0 + type: Transform +- uid: 8596 + type: MountainRock + components: + - pos: 138.5,-52.5 + parent: 0 + type: Transform +- uid: 8597 + type: MountainRock + components: + - pos: 138.5,-51.5 + parent: 0 + type: Transform +- uid: 8598 + type: MountainRock + components: + - pos: 138.5,-50.5 + parent: 0 + type: Transform +- uid: 8599 + type: MountainRock + components: + - pos: 138.5,-49.5 + parent: 0 + type: Transform +- uid: 8600 + type: MountainRock + components: + - pos: 138.5,-48.5 + parent: 0 + type: Transform +- uid: 8601 + type: MountainRock + components: + - pos: 138.5,-47.5 + parent: 0 + type: Transform +- uid: 8602 + type: MountainRock + components: + - pos: 139.5,-56.5 + parent: 0 + type: Transform +- uid: 8603 + type: MountainRock + components: + - pos: 139.5,-55.5 + parent: 0 + type: Transform +- uid: 8604 + type: MountainRock + components: + - pos: 139.5,-54.5 + parent: 0 + type: Transform +- uid: 8605 + type: MountainRock + components: + - pos: 139.5,-53.5 + parent: 0 + type: Transform +- uid: 8606 + type: MountainRock + components: + - pos: 139.5,-52.5 + parent: 0 + type: Transform +- uid: 8607 + type: MountainRock + components: + - pos: 139.5,-51.5 + parent: 0 + type: Transform +- uid: 8608 + type: MountainRock + components: + - pos: 139.5,-50.5 + parent: 0 + type: Transform +- uid: 8609 + type: MountainRock + components: + - pos: 139.5,-49.5 + parent: 0 + type: Transform +- uid: 8610 + type: MountainRock + components: + - pos: 139.5,-48.5 + parent: 0 + type: Transform +- uid: 8611 + type: MountainRock + components: + - pos: 139.5,-47.5 + parent: 0 + type: Transform +- uid: 8612 + type: MountainRock + components: + - pos: 140.5,-56.5 + parent: 0 + type: Transform +- uid: 8613 + type: MountainRock + components: + - pos: 140.5,-55.5 + parent: 0 + type: Transform +- uid: 8614 + type: MountainRock + components: + - pos: 140.5,-54.5 + parent: 0 + type: Transform +- uid: 8615 + type: MountainRock + components: + - pos: 140.5,-53.5 + parent: 0 + type: Transform +- uid: 8616 + type: MountainRock + components: + - pos: 140.5,-52.5 + parent: 0 + type: Transform +- uid: 8617 + type: MountainRock + components: + - pos: 140.5,-51.5 + parent: 0 + type: Transform +- uid: 8618 + type: MountainRock + components: + - pos: 140.5,-50.5 + parent: 0 + type: Transform +- uid: 8619 + type: MountainRock + components: + - pos: 140.5,-49.5 + parent: 0 + type: Transform +- uid: 8620 + type: MountainRock + components: + - pos: 140.5,-48.5 + parent: 0 + type: Transform +- uid: 8621 + type: MountainRock + components: + - pos: 140.5,-47.5 + parent: 0 + type: Transform +- uid: 8622 + type: MountainRock + components: + - pos: 141.5,-56.5 + parent: 0 + type: Transform +- uid: 8623 + type: MountainRock + components: + - pos: 141.5,-55.5 + parent: 0 + type: Transform +- uid: 8624 + type: MountainRock + components: + - pos: 141.5,-54.5 + parent: 0 + type: Transform +- uid: 8625 + type: MountainRock + components: + - pos: 141.5,-53.5 + parent: 0 + type: Transform +- uid: 8626 + type: MountainRock + components: + - pos: 141.5,-52.5 + parent: 0 + type: Transform +- uid: 8627 + type: MountainRock + components: + - pos: 141.5,-51.5 + parent: 0 + type: Transform +- uid: 8628 + type: MountainRock + components: + - pos: 141.5,-50.5 + parent: 0 + type: Transform +- uid: 8629 + type: MountainRock + components: + - pos: 141.5,-49.5 + parent: 0 + type: Transform +- uid: 8630 + type: MountainRock + components: + - pos: 141.5,-48.5 + parent: 0 + type: Transform +- uid: 8631 + type: MountainRock + components: + - pos: 141.5,-47.5 + parent: 0 + type: Transform +- uid: 8632 + type: MountainRock + components: + - pos: 142.5,-56.5 + parent: 0 + type: Transform +- uid: 8633 + type: MountainRock + components: + - pos: 142.5,-55.5 + parent: 0 + type: Transform +- uid: 8634 + type: MountainRock + components: + - pos: 142.5,-54.5 + parent: 0 + type: Transform +- uid: 8635 + type: MountainRock + components: + - pos: 142.5,-53.5 + parent: 0 + type: Transform +- uid: 8636 + type: MountainRock + components: + - pos: 142.5,-52.5 + parent: 0 + type: Transform +- uid: 8637 + type: MountainRock + components: + - pos: 142.5,-51.5 + parent: 0 + type: Transform +- uid: 8638 + type: MountainRock + components: + - pos: 142.5,-50.5 + parent: 0 + type: Transform +- uid: 8639 + type: MountainRock + components: + - pos: 142.5,-49.5 + parent: 0 + type: Transform +- uid: 8640 + type: MountainRock + components: + - pos: 142.5,-48.5 + parent: 0 + type: Transform +- uid: 8641 + type: MountainRock + components: + - pos: 142.5,-47.5 + parent: 0 + type: Transform +- uid: 8642 + type: MountainRock + components: + - pos: 143.5,-56.5 + parent: 0 + type: Transform +- uid: 8643 + type: MountainRock + components: + - pos: 143.5,-55.5 + parent: 0 + type: Transform +- uid: 8644 + type: MountainRock + components: + - pos: 143.5,-54.5 + parent: 0 + type: Transform +- uid: 8645 + type: MountainRock + components: + - pos: 143.5,-53.5 + parent: 0 + type: Transform +- uid: 8646 + type: MountainRock + components: + - pos: 143.5,-52.5 + parent: 0 + type: Transform +- uid: 8647 + type: MountainRock + components: + - pos: 143.5,-51.5 + parent: 0 + type: Transform +- uid: 8648 + type: MountainRock + components: + - pos: 143.5,-50.5 + parent: 0 + type: Transform +- uid: 8649 + type: MountainRock + components: + - pos: 143.5,-49.5 + parent: 0 + type: Transform +- uid: 8650 + type: MountainRock + components: + - pos: 143.5,-48.5 + parent: 0 + type: Transform +- uid: 8651 + type: MountainRock + components: + - pos: 143.5,-47.5 + parent: 0 + type: Transform +- uid: 8652 + type: MountainRock + components: + - pos: 144.5,-56.5 + parent: 0 + type: Transform +- uid: 8653 + type: MountainRock + components: + - pos: 144.5,-55.5 + parent: 0 + type: Transform +- uid: 8654 + type: MountainRock + components: + - pos: 144.5,-54.5 + parent: 0 + type: Transform +- uid: 8655 + type: MountainRock + components: + - pos: 144.5,-53.5 + parent: 0 + type: Transform +- uid: 8656 + type: MountainRock + components: + - pos: 144.5,-52.5 + parent: 0 + type: Transform +- uid: 8657 + type: MountainRock + components: + - pos: 144.5,-51.5 + parent: 0 + type: Transform +- uid: 8658 + type: MountainRock + components: + - pos: 144.5,-50.5 + parent: 0 + type: Transform +- uid: 8659 + type: MountainRock + components: + - pos: 144.5,-49.5 + parent: 0 + type: Transform +- uid: 8660 + type: MountainRock + components: + - pos: 144.5,-48.5 + parent: 0 + type: Transform +- uid: 8661 + type: MountainRock + components: + - pos: 144.5,-47.5 + parent: 0 + type: Transform +- uid: 8662 + type: MountainRock + components: + - pos: 145.5,-56.5 + parent: 0 + type: Transform +- uid: 8663 + type: MountainRock + components: + - pos: 145.5,-55.5 + parent: 0 + type: Transform +- uid: 8664 + type: MountainRock + components: + - pos: 145.5,-54.5 + parent: 0 + type: Transform +- uid: 8665 + type: MountainRock + components: + - pos: 145.5,-53.5 + parent: 0 + type: Transform +- uid: 8666 + type: MountainRock + components: + - pos: 145.5,-52.5 + parent: 0 + type: Transform +- uid: 8667 + type: MountainRock + components: + - pos: 145.5,-51.5 + parent: 0 + type: Transform +- uid: 8668 + type: MountainRock + components: + - pos: 145.5,-50.5 + parent: 0 + type: Transform +- uid: 8669 + type: MountainRock + components: + - pos: 145.5,-49.5 + parent: 0 + type: Transform +- uid: 8670 + type: MountainRock + components: + - pos: 145.5,-48.5 + parent: 0 + type: Transform +- uid: 8671 + type: MountainRock + components: + - pos: 145.5,-47.5 + parent: 0 + type: Transform +- uid: 8672 + type: MountainRock + components: + - pos: 146.5,-56.5 + parent: 0 + type: Transform +- uid: 8673 + type: MountainRock + components: + - pos: 146.5,-55.5 + parent: 0 + type: Transform +- uid: 8674 + type: MountainRock + components: + - pos: 146.5,-54.5 + parent: 0 + type: Transform +- uid: 8675 + type: MountainRock + components: + - pos: 146.5,-53.5 + parent: 0 + type: Transform +- uid: 8676 + type: MountainRock + components: + - pos: 146.5,-52.5 + parent: 0 + type: Transform +- uid: 8677 + type: MountainRock + components: + - pos: 146.5,-51.5 + parent: 0 + type: Transform +- uid: 8678 + type: MountainRock + components: + - pos: 146.5,-50.5 + parent: 0 + type: Transform +- uid: 8679 + type: MountainRock + components: + - pos: 146.5,-49.5 + parent: 0 + type: Transform +- uid: 8680 + type: MountainRock + components: + - pos: 146.5,-48.5 + parent: 0 + type: Transform +- uid: 8681 + type: MountainRock + components: + - pos: 146.5,-47.5 + parent: 0 + type: Transform +- uid: 8682 + type: MountainRock + components: + - pos: 147.5,-56.5 + parent: 0 + type: Transform +- uid: 8683 + type: MountainRock + components: + - pos: 147.5,-55.5 + parent: 0 + type: Transform +- uid: 8684 + type: MountainRock + components: + - pos: 147.5,-54.5 + parent: 0 + type: Transform +- uid: 8685 + type: MountainRock + components: + - pos: 147.5,-53.5 + parent: 0 + type: Transform +- uid: 8686 + type: MountainRock + components: + - pos: 147.5,-52.5 + parent: 0 + type: Transform +- uid: 8687 + type: MountainRock + components: + - pos: 147.5,-51.5 + parent: 0 + type: Transform +- uid: 8688 + type: MountainRock + components: + - pos: 147.5,-50.5 + parent: 0 + type: Transform +- uid: 8689 + type: MountainRock + components: + - pos: 147.5,-49.5 + parent: 0 + type: Transform +- uid: 8690 + type: MountainRock + components: + - pos: 147.5,-48.5 + parent: 0 + type: Transform +- uid: 8691 + type: MountainRock + components: + - pos: 147.5,-47.5 + parent: 0 + type: Transform +- uid: 8692 + type: MountainRock + components: + - pos: 148.5,-56.5 + parent: 0 + type: Transform +- uid: 8693 + type: MountainRock + components: + - pos: 148.5,-55.5 + parent: 0 + type: Transform +- uid: 8694 + type: MountainRock + components: + - pos: 148.5,-54.5 + parent: 0 + type: Transform +- uid: 8695 + type: MountainRock + components: + - pos: 148.5,-53.5 + parent: 0 + type: Transform +- uid: 8696 + type: MountainRock + components: + - pos: 148.5,-52.5 + parent: 0 + type: Transform +- uid: 8697 + type: MountainRock + components: + - pos: 148.5,-51.5 + parent: 0 + type: Transform +- uid: 8698 + type: MountainRock + components: + - pos: 148.5,-50.5 + parent: 0 + type: Transform +- uid: 8699 + type: MountainRock + components: + - pos: 148.5,-49.5 + parent: 0 + type: Transform +- uid: 8700 + type: MountainRock + components: + - pos: 148.5,-48.5 + parent: 0 + type: Transform +- uid: 8701 + type: MountainRock + components: + - pos: 148.5,-47.5 + parent: 0 + type: Transform +- uid: 8702 + type: MountainRock + components: + - pos: 149.5,-56.5 + parent: 0 + type: Transform +- uid: 8703 + type: MountainRock + components: + - pos: 149.5,-55.5 + parent: 0 + type: Transform +- uid: 8704 + type: MountainRock + components: + - pos: 149.5,-54.5 + parent: 0 + type: Transform +- uid: 8705 + type: MountainRock + components: + - pos: 149.5,-53.5 + parent: 0 + type: Transform +- uid: 8706 + type: MountainRock + components: + - pos: 149.5,-52.5 + parent: 0 + type: Transform +- uid: 8707 + type: MountainRock + components: + - pos: 149.5,-51.5 + parent: 0 + type: Transform +- uid: 8708 + type: MountainRock + components: + - pos: 149.5,-50.5 + parent: 0 + type: Transform +- uid: 8709 + type: MountainRock + components: + - pos: 149.5,-49.5 + parent: 0 + type: Transform +- uid: 8710 + type: MountainRock + components: + - pos: 149.5,-48.5 + parent: 0 + type: Transform +- uid: 8711 + type: MountainRock + components: + - pos: 149.5,-47.5 + parent: 0 + type: Transform +- uid: 8712 + type: MountainRock + components: + - pos: 150.5,-56.5 + parent: 0 + type: Transform +- uid: 8713 + type: MountainRock + components: + - pos: 150.5,-55.5 + parent: 0 + type: Transform +- uid: 8714 + type: MountainRock + components: + - pos: 150.5,-54.5 + parent: 0 + type: Transform +- uid: 8715 + type: MountainRock + components: + - pos: 150.5,-53.5 + parent: 0 + type: Transform +- uid: 8716 + type: MountainRock + components: + - pos: 150.5,-52.5 + parent: 0 + type: Transform +- uid: 8717 + type: MountainRock + components: + - pos: 150.5,-51.5 + parent: 0 + type: Transform +- uid: 8718 + type: MountainRock + components: + - pos: 150.5,-50.5 + parent: 0 + type: Transform +- uid: 8719 + type: MountainRock + components: + - pos: 150.5,-49.5 + parent: 0 + type: Transform +- uid: 8720 + type: MountainRock + components: + - pos: 150.5,-48.5 + parent: 0 + type: Transform +- uid: 8721 + type: MountainRock + components: + - pos: 150.5,-47.5 + parent: 0 + type: Transform +- uid: 8722 + type: MountainRock + components: + - pos: 151.5,-56.5 + parent: 0 + type: Transform +- uid: 8723 + type: MountainRock + components: + - pos: 151.5,-55.5 + parent: 0 + type: Transform +- uid: 8724 + type: MountainRock + components: + - pos: 151.5,-54.5 + parent: 0 + type: Transform +- uid: 8725 + type: MountainRock + components: + - pos: 151.5,-53.5 + parent: 0 + type: Transform +- uid: 8726 + type: MountainRock + components: + - pos: 151.5,-52.5 + parent: 0 + type: Transform +- uid: 8727 + type: MountainRock + components: + - pos: 151.5,-51.5 + parent: 0 + type: Transform +- uid: 8728 + type: MountainRock + components: + - pos: 151.5,-50.5 + parent: 0 + type: Transform +- uid: 8729 + type: MountainRock + components: + - pos: 151.5,-49.5 + parent: 0 + type: Transform +- uid: 8730 + type: MountainRock + components: + - pos: 151.5,-48.5 + parent: 0 + type: Transform +- uid: 8731 + type: MountainRock + components: + - pos: 151.5,-47.5 + parent: 0 + type: Transform +- uid: 8732 + type: MountainRock + components: + - pos: 152.5,-56.5 + parent: 0 + type: Transform +- uid: 8733 + type: MountainRock + components: + - pos: 152.5,-55.5 + parent: 0 + type: Transform +- uid: 8734 + type: MountainRock + components: + - pos: 152.5,-54.5 + parent: 0 + type: Transform +- uid: 8735 + type: MountainRock + components: + - pos: 152.5,-53.5 + parent: 0 + type: Transform +- uid: 8736 + type: MountainRock + components: + - pos: 152.5,-52.5 + parent: 0 + type: Transform +- uid: 8737 + type: MountainRock + components: + - pos: 152.5,-51.5 + parent: 0 + type: Transform +- uid: 8738 + type: MountainRock + components: + - pos: 152.5,-50.5 + parent: 0 + type: Transform +- uid: 8739 + type: MountainRock + components: + - pos: 152.5,-49.5 + parent: 0 + type: Transform +- uid: 8740 + type: MountainRock + components: + - pos: 152.5,-48.5 + parent: 0 + type: Transform +- uid: 8741 + type: MountainRock + components: + - pos: 152.5,-47.5 + parent: 0 + type: Transform +- uid: 8742 + type: MountainRock + components: + - pos: 153.5,-56.5 + parent: 0 + type: Transform +- uid: 8743 + type: MountainRock + components: + - pos: 153.5,-55.5 + parent: 0 + type: Transform +- uid: 8744 + type: MountainRock + components: + - pos: 153.5,-54.5 + parent: 0 + type: Transform +- uid: 8745 + type: MountainRock + components: + - pos: 153.5,-53.5 + parent: 0 + type: Transform +- uid: 8746 + type: MountainRock + components: + - pos: 153.5,-52.5 + parent: 0 + type: Transform +- uid: 8747 + type: MountainRock + components: + - pos: 153.5,-51.5 + parent: 0 + type: Transform +- uid: 8748 + type: MountainRock + components: + - pos: 153.5,-50.5 + parent: 0 + type: Transform +- uid: 8749 + type: MountainRock + components: + - pos: 153.5,-49.5 + parent: 0 + type: Transform +- uid: 8750 + type: MountainRock + components: + - pos: 153.5,-48.5 + parent: 0 + type: Transform +- uid: 8751 + type: MountainRock + components: + - pos: 153.5,-47.5 + parent: 0 + type: Transform +- uid: 8752 + type: MountainRock + components: + - pos: 154.5,-56.5 + parent: 0 + type: Transform +- uid: 8753 + type: MountainRock + components: + - pos: 154.5,-55.5 + parent: 0 + type: Transform +- uid: 8754 + type: MountainRock + components: + - pos: 154.5,-54.5 + parent: 0 + type: Transform +- uid: 8755 + type: MountainRock + components: + - pos: 154.5,-53.5 + parent: 0 + type: Transform +- uid: 8756 + type: MountainRock + components: + - pos: 154.5,-52.5 + parent: 0 + type: Transform +- uid: 8757 + type: MountainRock + components: + - pos: 154.5,-51.5 + parent: 0 + type: Transform +- uid: 8758 + type: MountainRock + components: + - pos: 154.5,-50.5 + parent: 0 + type: Transform +- uid: 8759 + type: MountainRock + components: + - pos: 154.5,-49.5 + parent: 0 + type: Transform +- uid: 8760 + type: MountainRock + components: + - pos: 154.5,-48.5 + parent: 0 + type: Transform +- uid: 8761 + type: MountainRock + components: + - pos: 154.5,-47.5 + parent: 0 + type: Transform +- uid: 8762 + type: MountainRock + components: + - pos: 155.5,-56.5 + parent: 0 + type: Transform +- uid: 8763 + type: MountainRock + components: + - pos: 155.5,-55.5 + parent: 0 + type: Transform +- uid: 8764 + type: MountainRock + components: + - pos: 155.5,-54.5 + parent: 0 + type: Transform +- uid: 8765 + type: MountainRock + components: + - pos: 155.5,-53.5 + parent: 0 + type: Transform +- uid: 8766 + type: MountainRock + components: + - pos: 155.5,-52.5 + parent: 0 + type: Transform +- uid: 8767 + type: MountainRock + components: + - pos: 155.5,-51.5 + parent: 0 + type: Transform +- uid: 8768 + type: MountainRock + components: + - pos: 155.5,-50.5 + parent: 0 + type: Transform +- uid: 8769 + type: MountainRock + components: + - pos: 155.5,-49.5 + parent: 0 + type: Transform +- uid: 8770 + type: MountainRock + components: + - pos: 155.5,-48.5 + parent: 0 + type: Transform +- uid: 8771 + type: MountainRock + components: + - pos: 155.5,-47.5 + parent: 0 + type: Transform +- uid: 8772 + type: MountainRock + components: + - pos: 156.5,-56.5 + parent: 0 + type: Transform +- uid: 8773 + type: MountainRock + components: + - pos: 156.5,-55.5 + parent: 0 + type: Transform +- uid: 8774 + type: MountainRock + components: + - pos: 156.5,-54.5 + parent: 0 + type: Transform +- uid: 8775 + type: MountainRock + components: + - pos: 156.5,-53.5 + parent: 0 + type: Transform +- uid: 8776 + type: MountainRock + components: + - pos: 156.5,-52.5 + parent: 0 + type: Transform +- uid: 8777 + type: MountainRock + components: + - pos: 156.5,-51.5 + parent: 0 + type: Transform +- uid: 8778 + type: MountainRock + components: + - pos: 156.5,-50.5 + parent: 0 + type: Transform +- uid: 8779 + type: MountainRock + components: + - pos: 156.5,-49.5 + parent: 0 + type: Transform +- uid: 8780 + type: MountainRock + components: + - pos: 156.5,-48.5 + parent: 0 + type: Transform +- uid: 8781 + type: MountainRock + components: + - pos: 156.5,-47.5 + parent: 0 + type: Transform +- uid: 8782 + type: MountainRock + components: + - pos: 157.5,-56.5 + parent: 0 + type: Transform +- uid: 8783 + type: MountainRock + components: + - pos: 157.5,-55.5 + parent: 0 + type: Transform +- uid: 8784 + type: MountainRock + components: + - pos: 157.5,-54.5 + parent: 0 + type: Transform +- uid: 8785 + type: MountainRock + components: + - pos: 157.5,-53.5 + parent: 0 + type: Transform +- uid: 8786 + type: MountainRock + components: + - pos: 157.5,-52.5 + parent: 0 + type: Transform +- uid: 8787 + type: MountainRock + components: + - pos: 157.5,-51.5 + parent: 0 + type: Transform +- uid: 8788 + type: MountainRock + components: + - pos: 157.5,-50.5 + parent: 0 + type: Transform +- uid: 8789 + type: MountainRock + components: + - pos: 157.5,-49.5 + parent: 0 + type: Transform +- uid: 8790 + type: MountainRock + components: + - pos: 157.5,-48.5 + parent: 0 + type: Transform +- uid: 8791 + type: MountainRock + components: + - pos: 157.5,-47.5 + parent: 0 + type: Transform +- uid: 8792 + type: MountainRock + components: + - pos: 158.5,-56.5 + parent: 0 + type: Transform +- uid: 8793 + type: MountainRock + components: + - pos: 158.5,-55.5 + parent: 0 + type: Transform +- uid: 8794 + type: MountainRock + components: + - pos: 158.5,-54.5 + parent: 0 + type: Transform +- uid: 8795 + type: MountainRock + components: + - pos: 158.5,-53.5 + parent: 0 + type: Transform +- uid: 8796 + type: MountainRock + components: + - pos: 158.5,-52.5 + parent: 0 + type: Transform +- uid: 8797 + type: MountainRock + components: + - pos: 158.5,-51.5 + parent: 0 + type: Transform +- uid: 8798 + type: MountainRock + components: + - pos: 158.5,-50.5 + parent: 0 + type: Transform +- uid: 8799 + type: MountainRock + components: + - pos: 158.5,-49.5 + parent: 0 + type: Transform +- uid: 8800 + type: MountainRock + components: + - pos: 158.5,-48.5 + parent: 0 + type: Transform +- uid: 8801 + type: MountainRock + components: + - pos: 158.5,-47.5 + parent: 0 + type: Transform +- uid: 8802 + type: MountainRock + components: + - pos: 159.5,-56.5 + parent: 0 + type: Transform +- uid: 8803 + type: MountainRock + components: + - pos: 159.5,-55.5 + parent: 0 + type: Transform +- uid: 8804 + type: MountainRock + components: + - pos: 159.5,-54.5 + parent: 0 + type: Transform +- uid: 8805 + type: MountainRock + components: + - pos: 159.5,-53.5 + parent: 0 + type: Transform +- uid: 8806 + type: MountainRock + components: + - pos: 159.5,-52.5 + parent: 0 + type: Transform +- uid: 8807 + type: MountainRock + components: + - pos: 159.5,-51.5 + parent: 0 + type: Transform +- uid: 8808 + type: MountainRock + components: + - pos: 159.5,-50.5 + parent: 0 + type: Transform +- uid: 8809 + type: MountainRock + components: + - pos: 159.5,-49.5 + parent: 0 + type: Transform +- uid: 8810 + type: MountainRock + components: + - pos: 159.5,-48.5 + parent: 0 + type: Transform +- uid: 8811 + type: MountainRock + components: + - pos: 159.5,-47.5 + parent: 0 + type: Transform +- uid: 8812 + type: MountainRock + components: + - pos: 160.5,-56.5 + parent: 0 + type: Transform +- uid: 8813 + type: MountainRock + components: + - pos: 160.5,-55.5 + parent: 0 + type: Transform +- uid: 8814 + type: MountainRock + components: + - pos: 160.5,-54.5 + parent: 0 + type: Transform +- uid: 8815 + type: MountainRock + components: + - pos: 160.5,-53.5 + parent: 0 + type: Transform +- uid: 8816 + type: MountainRock + components: + - pos: 160.5,-52.5 + parent: 0 + type: Transform +- uid: 8817 + type: MountainRock + components: + - pos: 160.5,-51.5 + parent: 0 + type: Transform +- uid: 8818 + type: MountainRock + components: + - pos: 160.5,-50.5 + parent: 0 + type: Transform +- uid: 8819 + type: MountainRock + components: + - pos: 160.5,-49.5 + parent: 0 + type: Transform +- uid: 8820 + type: MountainRock + components: + - pos: 160.5,-48.5 + parent: 0 + type: Transform +- uid: 8821 + type: MountainRock + components: + - pos: 160.5,-47.5 + parent: 0 + type: Transform +- uid: 8822 + type: MountainRock + components: + - pos: 161.5,-56.5 + parent: 0 + type: Transform +- uid: 8823 + type: MountainRock + components: + - pos: 161.5,-55.5 + parent: 0 + type: Transform +- uid: 8824 + type: MountainRock + components: + - pos: 161.5,-54.5 + parent: 0 + type: Transform +- uid: 8825 + type: MountainRock + components: + - pos: 161.5,-53.5 + parent: 0 + type: Transform +- uid: 8826 + type: MountainRock + components: + - pos: 161.5,-52.5 + parent: 0 + type: Transform +- uid: 8827 + type: MountainRock + components: + - pos: 161.5,-51.5 + parent: 0 + type: Transform +- uid: 8828 + type: MountainRock + components: + - pos: 161.5,-50.5 + parent: 0 + type: Transform +- uid: 8829 + type: MountainRock + components: + - pos: 161.5,-49.5 + parent: 0 + type: Transform +- uid: 8830 + type: MountainRock + components: + - pos: 161.5,-48.5 + parent: 0 + type: Transform +- uid: 8831 + type: MountainRock + components: + - pos: 161.5,-47.5 + parent: 0 + type: Transform +- uid: 8832 + type: MountainRock + components: + - pos: 162.5,-56.5 + parent: 0 + type: Transform +- uid: 8833 + type: MountainRock + components: + - pos: 162.5,-55.5 + parent: 0 + type: Transform +- uid: 8834 + type: MountainRock + components: + - pos: 162.5,-54.5 + parent: 0 + type: Transform +- uid: 8835 + type: MountainRock + components: + - pos: 162.5,-53.5 + parent: 0 + type: Transform +- uid: 8836 + type: MountainRock + components: + - pos: 162.5,-52.5 + parent: 0 + type: Transform +- uid: 8837 + type: MountainRock + components: + - pos: 162.5,-51.5 + parent: 0 + type: Transform +- uid: 8838 + type: MountainRock + components: + - pos: 162.5,-50.5 + parent: 0 + type: Transform +- uid: 8839 + type: MountainRock + components: + - pos: 162.5,-49.5 + parent: 0 + type: Transform +- uid: 8840 + type: MountainRock + components: + - pos: 162.5,-48.5 + parent: 0 + type: Transform +- uid: 8841 + type: MountainRock + components: + - pos: 162.5,-47.5 + parent: 0 + type: Transform +- uid: 8842 + type: MountainRock + components: + - pos: 163.5,-56.5 + parent: 0 + type: Transform +- uid: 8843 + type: MountainRock + components: + - pos: 163.5,-55.5 + parent: 0 + type: Transform +- uid: 8844 + type: MountainRock + components: + - pos: 163.5,-54.5 + parent: 0 + type: Transform +- uid: 8845 + type: MountainRock + components: + - pos: 163.5,-53.5 + parent: 0 + type: Transform +- uid: 8846 + type: MountainRock + components: + - pos: 163.5,-52.5 + parent: 0 + type: Transform +- uid: 8847 + type: MountainRock + components: + - pos: 163.5,-51.5 + parent: 0 + type: Transform +- uid: 8848 + type: MountainRock + components: + - pos: 163.5,-50.5 + parent: 0 + type: Transform +- uid: 8849 + type: MountainRock + components: + - pos: 163.5,-49.5 + parent: 0 + type: Transform +- uid: 8850 + type: MountainRock + components: + - pos: 163.5,-48.5 + parent: 0 + type: Transform +- uid: 8851 + type: MountainRock + components: + - pos: 163.5,-47.5 + parent: 0 + type: Transform +- uid: 8852 + type: MountainRock + components: + - pos: 164.5,-56.5 + parent: 0 + type: Transform +- uid: 8853 + type: MountainRock + components: + - pos: 164.5,-55.5 + parent: 0 + type: Transform +- uid: 8854 + type: MountainRock + components: + - pos: 164.5,-54.5 + parent: 0 + type: Transform +- uid: 8855 + type: MountainRock + components: + - pos: 164.5,-53.5 + parent: 0 + type: Transform +- uid: 8856 + type: MountainRock + components: + - pos: 164.5,-52.5 + parent: 0 + type: Transform +- uid: 8857 + type: MountainRock + components: + - pos: 164.5,-51.5 + parent: 0 + type: Transform +- uid: 8858 + type: MountainRock + components: + - pos: 164.5,-50.5 + parent: 0 + type: Transform +- uid: 8859 + type: MountainRock + components: + - pos: 164.5,-49.5 + parent: 0 + type: Transform +- uid: 8860 + type: MountainRock + components: + - pos: 164.5,-48.5 + parent: 0 + type: Transform +- uid: 8861 + type: MountainRock + components: + - pos: 164.5,-47.5 + parent: 0 + type: Transform +- uid: 8862 + type: MountainRock + components: + - pos: 165.5,-56.5 + parent: 0 + type: Transform +- uid: 8863 + type: MountainRock + components: + - pos: 165.5,-55.5 + parent: 0 + type: Transform +- uid: 8864 + type: MountainRock + components: + - pos: 165.5,-54.5 + parent: 0 + type: Transform +- uid: 8865 + type: MountainRock + components: + - pos: 165.5,-53.5 + parent: 0 + type: Transform +- uid: 8866 + type: MountainRock + components: + - pos: 165.5,-52.5 + parent: 0 + type: Transform +- uid: 8867 + type: MountainRock + components: + - pos: 165.5,-51.5 + parent: 0 + type: Transform +- uid: 8868 + type: MountainRock + components: + - pos: 165.5,-50.5 + parent: 0 + type: Transform +- uid: 8869 + type: MountainRock + components: + - pos: 165.5,-49.5 + parent: 0 + type: Transform +- uid: 8870 + type: MountainRock + components: + - pos: 165.5,-48.5 + parent: 0 + type: Transform +- uid: 8871 + type: MountainRock + components: + - pos: 165.5,-47.5 + parent: 0 + type: Transform +- uid: 8872 + type: MountainRock + components: + - pos: 166.5,-56.5 + parent: 0 + type: Transform +- uid: 8873 + type: MountainRock + components: + - pos: 166.5,-55.5 + parent: 0 + type: Transform +- uid: 8874 + type: MountainRock + components: + - pos: 166.5,-54.5 + parent: 0 + type: Transform +- uid: 8875 + type: MountainRock + components: + - pos: 166.5,-53.5 + parent: 0 + type: Transform +- uid: 8876 + type: MountainRock + components: + - pos: 166.5,-52.5 + parent: 0 + type: Transform +- uid: 8877 + type: MountainRock + components: + - pos: 166.5,-51.5 + parent: 0 + type: Transform +- uid: 8878 + type: MountainRock + components: + - pos: 166.5,-50.5 + parent: 0 + type: Transform +- uid: 8879 + type: MountainRock + components: + - pos: 166.5,-49.5 + parent: 0 + type: Transform +- uid: 8880 + type: MountainRock + components: + - pos: 166.5,-48.5 + parent: 0 + type: Transform +- uid: 8881 + type: MountainRock + components: + - pos: 166.5,-47.5 + parent: 0 + type: Transform +- uid: 8882 + type: MountainRock + components: + - pos: 167.5,-56.5 + parent: 0 + type: Transform +- uid: 8883 + type: MountainRock + components: + - pos: 167.5,-55.5 + parent: 0 + type: Transform +- uid: 8884 + type: MountainRock + components: + - pos: 167.5,-54.5 + parent: 0 + type: Transform +- uid: 8885 + type: MountainRock + components: + - pos: 167.5,-53.5 + parent: 0 + type: Transform +- uid: 8886 + type: MountainRock + components: + - pos: 167.5,-52.5 + parent: 0 + type: Transform +- uid: 8887 + type: MountainRock + components: + - pos: 167.5,-51.5 + parent: 0 + type: Transform +- uid: 8888 + type: MountainRock + components: + - pos: 167.5,-50.5 + parent: 0 + type: Transform +- uid: 8889 + type: MountainRock + components: + - pos: 167.5,-49.5 + parent: 0 + type: Transform +- uid: 8890 + type: MountainRock + components: + - pos: 167.5,-48.5 + parent: 0 + type: Transform +- uid: 8891 + type: MountainRock + components: + - pos: 167.5,-47.5 + parent: 0 + type: Transform +- uid: 8892 + type: MountainRock + components: + - pos: 168.5,-56.5 + parent: 0 + type: Transform +- uid: 8893 + type: MountainRock + components: + - pos: 168.5,-55.5 + parent: 0 + type: Transform +- uid: 8894 + type: MountainRock + components: + - pos: 168.5,-54.5 + parent: 0 + type: Transform +- uid: 8895 + type: MountainRock + components: + - pos: 168.5,-53.5 + parent: 0 + type: Transform +- uid: 8896 + type: MountainRock + components: + - pos: 168.5,-52.5 + parent: 0 + type: Transform +- uid: 8897 + type: MountainRock + components: + - pos: 168.5,-51.5 + parent: 0 + type: Transform +- uid: 8898 + type: MountainRock + components: + - pos: 168.5,-50.5 + parent: 0 + type: Transform +- uid: 8899 + type: MountainRock + components: + - pos: 168.5,-49.5 + parent: 0 + type: Transform +- uid: 8900 + type: MountainRock + components: + - pos: 168.5,-48.5 + parent: 0 + type: Transform +- uid: 8901 + type: MountainRock + components: + - pos: 168.5,-47.5 + parent: 0 + type: Transform +- uid: 8902 + type: MountainRock + components: + - pos: 169.5,-56.5 + parent: 0 + type: Transform +- uid: 8903 + type: MountainRock + components: + - pos: 169.5,-55.5 + parent: 0 + type: Transform +- uid: 8904 + type: MountainRock + components: + - pos: 169.5,-54.5 + parent: 0 + type: Transform +- uid: 8905 + type: MountainRock + components: + - pos: 169.5,-53.5 + parent: 0 + type: Transform +- uid: 8906 + type: MountainRock + components: + - pos: 169.5,-52.5 + parent: 0 + type: Transform +- uid: 8907 + type: MountainRock + components: + - pos: 169.5,-51.5 + parent: 0 + type: Transform +- uid: 8908 + type: MountainRock + components: + - pos: 169.5,-50.5 + parent: 0 + type: Transform +- uid: 8909 + type: MountainRock + components: + - pos: 169.5,-49.5 + parent: 0 + type: Transform +- uid: 8910 + type: MountainRock + components: + - pos: 169.5,-48.5 + parent: 0 + type: Transform +- uid: 8911 + type: MountainRock + components: + - pos: 169.5,-47.5 + parent: 0 + type: Transform +- uid: 8912 + type: MountainRock + components: + - pos: 170.5,-56.5 + parent: 0 + type: Transform +- uid: 8913 + type: MountainRock + components: + - pos: 170.5,-55.5 + parent: 0 + type: Transform +- uid: 8914 + type: MountainRock + components: + - pos: 170.5,-54.5 + parent: 0 + type: Transform +- uid: 8915 + type: MountainRock + components: + - pos: 170.5,-53.5 + parent: 0 + type: Transform +- uid: 8916 + type: MountainRock + components: + - pos: 170.5,-52.5 + parent: 0 + type: Transform +- uid: 8917 + type: MountainRock + components: + - pos: 170.5,-51.5 + parent: 0 + type: Transform +- uid: 8918 + type: MountainRock + components: + - pos: 170.5,-50.5 + parent: 0 + type: Transform +- uid: 8919 + type: MountainRock + components: + - pos: 170.5,-49.5 + parent: 0 + type: Transform +- uid: 8920 + type: MountainRock + components: + - pos: 170.5,-48.5 + parent: 0 + type: Transform +- uid: 8921 + type: MountainRock + components: + - pos: 170.5,-47.5 + parent: 0 + type: Transform +- uid: 8922 + type: MountainRock + components: + - pos: 171.5,-56.5 + parent: 0 + type: Transform +- uid: 8923 + type: MountainRock + components: + - pos: 171.5,-55.5 + parent: 0 + type: Transform +- uid: 8924 + type: MountainRock + components: + - pos: 171.5,-54.5 + parent: 0 + type: Transform +- uid: 8925 + type: MountainRock + components: + - pos: 171.5,-53.5 + parent: 0 + type: Transform +- uid: 8926 + type: MountainRock + components: + - pos: 171.5,-52.5 + parent: 0 + type: Transform +- uid: 8927 + type: MountainRock + components: + - pos: 171.5,-51.5 + parent: 0 + type: Transform +- uid: 8928 + type: MountainRock + components: + - pos: 171.5,-50.5 + parent: 0 + type: Transform +- uid: 8929 + type: MountainRock + components: + - pos: 171.5,-49.5 + parent: 0 + type: Transform +- uid: 8930 + type: MountainRock + components: + - pos: 171.5,-48.5 + parent: 0 + type: Transform +- uid: 8931 + type: MountainRock + components: + - pos: 171.5,-47.5 + parent: 0 + type: Transform +- uid: 8932 + type: MountainRock + components: + - pos: 172.5,-56.5 + parent: 0 + type: Transform +- uid: 8933 + type: MountainRock + components: + - pos: 172.5,-55.5 + parent: 0 + type: Transform +- uid: 8934 + type: MountainRock + components: + - pos: 172.5,-54.5 + parent: 0 + type: Transform +- uid: 8935 + type: MountainRock + components: + - pos: 172.5,-53.5 + parent: 0 + type: Transform +- uid: 8936 + type: MountainRock + components: + - pos: 172.5,-52.5 + parent: 0 + type: Transform +- uid: 8937 + type: MountainRock + components: + - pos: 172.5,-51.5 + parent: 0 + type: Transform +- uid: 8938 + type: MountainRock + components: + - pos: 172.5,-50.5 + parent: 0 + type: Transform +- uid: 8939 + type: MountainRock + components: + - pos: 172.5,-49.5 + parent: 0 + type: Transform +- uid: 8940 + type: MountainRock + components: + - pos: 172.5,-48.5 + parent: 0 + type: Transform +- uid: 8941 + type: MountainRock + components: + - pos: 172.5,-47.5 + parent: 0 + type: Transform +- uid: 8942 + type: MountainRock + components: + - pos: 173.5,-56.5 + parent: 0 + type: Transform +- uid: 8943 + type: MountainRock + components: + - pos: 173.5,-55.5 + parent: 0 + type: Transform +- uid: 8944 + type: MountainRock + components: + - pos: 173.5,-54.5 + parent: 0 + type: Transform +- uid: 8945 + type: MountainRock + components: + - pos: 173.5,-53.5 + parent: 0 + type: Transform +- uid: 8946 + type: MountainRock + components: + - pos: 173.5,-52.5 + parent: 0 + type: Transform +- uid: 8947 + type: MountainRock + components: + - pos: 173.5,-51.5 + parent: 0 + type: Transform +- uid: 8948 + type: MountainRock + components: + - pos: 173.5,-50.5 + parent: 0 + type: Transform +- uid: 8949 + type: MountainRock + components: + - pos: 173.5,-49.5 + parent: 0 + type: Transform +- uid: 8950 + type: MountainRock + components: + - pos: 173.5,-48.5 + parent: 0 + type: Transform +- uid: 8951 + type: MountainRock + components: + - pos: 173.5,-47.5 + parent: 0 + type: Transform +- uid: 8952 + type: MountainRock + components: + - pos: 174.5,-56.5 + parent: 0 + type: Transform +- uid: 8953 + type: MountainRock + components: + - pos: 174.5,-55.5 + parent: 0 + type: Transform +- uid: 8954 + type: MountainRock + components: + - pos: 174.5,-54.5 + parent: 0 + type: Transform +- uid: 8955 + type: MountainRock + components: + - pos: 174.5,-53.5 + parent: 0 + type: Transform +- uid: 8956 + type: MountainRock + components: + - pos: 174.5,-52.5 + parent: 0 + type: Transform +- uid: 8957 + type: MountainRock + components: + - pos: 174.5,-51.5 + parent: 0 + type: Transform +- uid: 8958 + type: MountainRock + components: + - pos: 174.5,-50.5 + parent: 0 + type: Transform +- uid: 8959 + type: MountainRock + components: + - pos: 174.5,-49.5 + parent: 0 + type: Transform +- uid: 8960 + type: MountainRock + components: + - pos: 174.5,-48.5 + parent: 0 + type: Transform +- uid: 8961 + type: MountainRock + components: + - pos: 174.5,-47.5 + parent: 0 + type: Transform +- uid: 8962 + type: MountainRock + components: + - pos: 175.5,-56.5 + parent: 0 + type: Transform +- uid: 8963 + type: MountainRock + components: + - pos: 175.5,-55.5 + parent: 0 + type: Transform +- uid: 8964 + type: MountainRock + components: + - pos: 175.5,-54.5 + parent: 0 + type: Transform +- uid: 8965 + type: MountainRock + components: + - pos: 175.5,-53.5 + parent: 0 + type: Transform +- uid: 8966 + type: MountainRock + components: + - pos: 175.5,-52.5 + parent: 0 + type: Transform +- uid: 8967 + type: MountainRock + components: + - pos: 175.5,-51.5 + parent: 0 + type: Transform +- uid: 8968 + type: MountainRock + components: + - pos: 175.5,-50.5 + parent: 0 + type: Transform +- uid: 8969 + type: MountainRock + components: + - pos: 175.5,-49.5 + parent: 0 + type: Transform +- uid: 8970 + type: MountainRock + components: + - pos: 175.5,-48.5 + parent: 0 + type: Transform +- uid: 8971 + type: MountainRock + components: + - pos: 175.5,-47.5 + parent: 0 + type: Transform +- uid: 8972 + type: MountainRock + components: + - pos: 176.5,-56.5 + parent: 0 + type: Transform +- uid: 8973 + type: MountainRock + components: + - pos: 176.5,-55.5 + parent: 0 + type: Transform +- uid: 8974 + type: MountainRock + components: + - pos: 176.5,-54.5 + parent: 0 + type: Transform +- uid: 8975 + type: MountainRock + components: + - pos: 176.5,-53.5 + parent: 0 + type: Transform +- uid: 8976 + type: MountainRock + components: + - pos: 176.5,-52.5 + parent: 0 + type: Transform +- uid: 8977 + type: MountainRock + components: + - pos: 176.5,-51.5 + parent: 0 + type: Transform +- uid: 8978 + type: MountainRock + components: + - pos: 176.5,-50.5 + parent: 0 + type: Transform +- uid: 8979 + type: MountainRock + components: + - pos: 176.5,-49.5 + parent: 0 + type: Transform +- uid: 8980 + type: MountainRock + components: + - pos: 176.5,-48.5 + parent: 0 + type: Transform +- uid: 8981 + type: MountainRock + components: + - pos: 176.5,-47.5 + parent: 0 + type: Transform +- uid: 8982 + type: MountainRock + components: + - pos: 177.5,-56.5 + parent: 0 + type: Transform +- uid: 8983 + type: MountainRock + components: + - pos: 177.5,-55.5 + parent: 0 + type: Transform +- uid: 8984 + type: MountainRock + components: + - pos: 177.5,-54.5 + parent: 0 + type: Transform +- uid: 8985 + type: MountainRock + components: + - pos: 177.5,-53.5 + parent: 0 + type: Transform +- uid: 8986 + type: MountainRock + components: + - pos: 177.5,-52.5 + parent: 0 + type: Transform +- uid: 8987 + type: MountainRock + components: + - pos: 177.5,-51.5 + parent: 0 + type: Transform +- uid: 8988 + type: MountainRock + components: + - pos: 177.5,-50.5 + parent: 0 + type: Transform +- uid: 8989 + type: MountainRock + components: + - pos: 177.5,-49.5 + parent: 0 + type: Transform +- uid: 8990 + type: MountainRock + components: + - pos: 177.5,-48.5 + parent: 0 + type: Transform +- uid: 8991 + type: MountainRock + components: + - pos: 177.5,-47.5 + parent: 0 + type: Transform +- uid: 8992 + type: MountainRock + components: + - pos: 178.5,-56.5 + parent: 0 + type: Transform +- uid: 8993 + type: MountainRock + components: + - pos: 178.5,-55.5 + parent: 0 + type: Transform +- uid: 8994 + type: MountainRock + components: + - pos: 178.5,-54.5 + parent: 0 + type: Transform +- uid: 8995 + type: MountainRock + components: + - pos: 178.5,-53.5 + parent: 0 + type: Transform +- uid: 8996 + type: MountainRock + components: + - pos: 178.5,-52.5 + parent: 0 + type: Transform +- uid: 8997 + type: MountainRock + components: + - pos: 178.5,-51.5 + parent: 0 + type: Transform +- uid: 8998 + type: MountainRock + components: + - pos: 178.5,-50.5 + parent: 0 + type: Transform +- uid: 8999 + type: MountainRock + components: + - pos: 178.5,-49.5 + parent: 0 + type: Transform +- uid: 9000 + type: MountainRock + components: + - pos: 178.5,-48.5 + parent: 0 + type: Transform +- uid: 9001 + type: MountainRock + components: + - pos: 178.5,-47.5 + parent: 0 + type: Transform +- uid: 9002 + type: MountainRock + components: + - pos: 179.5,-56.5 + parent: 0 + type: Transform +- uid: 9003 + type: MountainRock + components: + - pos: 179.5,-55.5 + parent: 0 + type: Transform +- uid: 9004 + type: MountainRock + components: + - pos: 179.5,-54.5 + parent: 0 + type: Transform +- uid: 9005 + type: MountainRock + components: + - pos: 179.5,-53.5 + parent: 0 + type: Transform +- uid: 9006 + type: MountainRock + components: + - pos: 179.5,-52.5 + parent: 0 + type: Transform +- uid: 9007 + type: MountainRock + components: + - pos: 179.5,-51.5 + parent: 0 + type: Transform +- uid: 9008 + type: MountainRock + components: + - pos: 179.5,-50.5 + parent: 0 + type: Transform +- uid: 9009 + type: MountainRock + components: + - pos: 179.5,-49.5 + parent: 0 + type: Transform +- uid: 9010 + type: MountainRock + components: + - pos: 179.5,-48.5 + parent: 0 + type: Transform +- uid: 9011 + type: MountainRock + components: + - pos: 179.5,-47.5 + parent: 0 + type: Transform +- uid: 9012 + type: MountainRock + components: + - pos: 180.5,-56.5 + parent: 0 + type: Transform +- uid: 9013 + type: MountainRock + components: + - pos: 180.5,-55.5 + parent: 0 + type: Transform +- uid: 9014 + type: MountainRock + components: + - pos: 180.5,-54.5 + parent: 0 + type: Transform +- uid: 9015 + type: MountainRock + components: + - pos: 180.5,-53.5 + parent: 0 + type: Transform +- uid: 9016 + type: MountainRock + components: + - pos: 180.5,-52.5 + parent: 0 + type: Transform +- uid: 9017 + type: MountainRock + components: + - pos: 180.5,-51.5 + parent: 0 + type: Transform +- uid: 9018 + type: MountainRock + components: + - pos: 180.5,-50.5 + parent: 0 + type: Transform +- uid: 9019 + type: MountainRock + components: + - pos: 180.5,-49.5 + parent: 0 + type: Transform +- uid: 9020 + type: MountainRock + components: + - pos: 180.5,-48.5 + parent: 0 + type: Transform +- uid: 9021 + type: MountainRock + components: + - pos: 180.5,-47.5 + parent: 0 + type: Transform +- uid: 9022 + type: MountainRock + components: + - pos: 181.5,-56.5 + parent: 0 + type: Transform +- uid: 9023 + type: MountainRock + components: + - pos: 181.5,-55.5 + parent: 0 + type: Transform +- uid: 9024 + type: MountainRock + components: + - pos: 181.5,-54.5 + parent: 0 + type: Transform +- uid: 9025 + type: MountainRock + components: + - pos: 181.5,-53.5 + parent: 0 + type: Transform +- uid: 9026 + type: MountainRock + components: + - pos: 181.5,-52.5 + parent: 0 + type: Transform +- uid: 9027 + type: MountainRock + components: + - pos: 181.5,-51.5 + parent: 0 + type: Transform +- uid: 9028 + type: MountainRock + components: + - pos: 181.5,-50.5 + parent: 0 + type: Transform +- uid: 9029 + type: MountainRock + components: + - pos: 181.5,-49.5 + parent: 0 + type: Transform +- uid: 9030 + type: MountainRock + components: + - pos: 181.5,-48.5 + parent: 0 + type: Transform +- uid: 9031 + type: MountainRock + components: + - pos: 181.5,-47.5 + parent: 0 + type: Transform +- uid: 9032 + type: MountainRock + components: + - pos: 182.5,-56.5 + parent: 0 + type: Transform +- uid: 9033 + type: MountainRock + components: + - pos: 182.5,-55.5 + parent: 0 + type: Transform +- uid: 9034 + type: MountainRock + components: + - pos: 182.5,-54.5 + parent: 0 + type: Transform +- uid: 9035 + type: MountainRock + components: + - pos: 182.5,-53.5 + parent: 0 + type: Transform +- uid: 9036 + type: MountainRock + components: + - pos: 182.5,-52.5 + parent: 0 + type: Transform +- uid: 9037 + type: MountainRock + components: + - pos: 182.5,-51.5 + parent: 0 + type: Transform +- uid: 9038 + type: MountainRock + components: + - pos: 182.5,-50.5 + parent: 0 + type: Transform +- uid: 9039 + type: MountainRock + components: + - pos: 182.5,-49.5 + parent: 0 + type: Transform +- uid: 9040 + type: MountainRock + components: + - pos: 182.5,-48.5 + parent: 0 + type: Transform +- uid: 9041 + type: MountainRock + components: + - pos: 182.5,-47.5 + parent: 0 + type: Transform +- uid: 9042 + type: SpawnPointObserver + components: + - pos: 3.5,-5.5 + parent: 0 + type: Transform +- uid: 9043 + type: SpawnPointObserver + components: + - pos: 2.5,-4.5 + parent: 0 + type: Transform +- uid: 9044 + type: SpawnPointObserver + components: + - pos: 3.5,-3.5 + parent: 0 + type: Transform +- uid: 9045 + type: SpawnPointObserver + components: + - pos: 4.5,-4.5 + parent: 0 + type: Transform +- uid: 9046 + type: SpawnPointChef + components: + - pos: -21.5,5.5 + parent: 0 + type: Transform +- uid: 9047 + type: SpawnPointSecurityOfficer + components: + - pos: -47.5,10.5 + parent: 0 + type: Transform +- uid: 9048 + type: SpawnPointSecurityOfficer + components: + - pos: -47.5,1.5 + parent: 0 + type: Transform +- uid: 9049 + type: SpawnPointSecurityOfficer + components: + - pos: -49.5,-8.5 + parent: 0 + type: Transform +- uid: 9050 + type: SpawnPointSecurityOfficer + components: + - pos: -46.5,-17.5 + parent: 0 + type: Transform +- uid: 9051 + type: SpawnPointSecurityCadet + components: + - pos: -52.5,-15.5 + parent: 0 + type: Transform +- uid: 9052 + type: SpawnPointSecurityCadet + components: + - pos: -53.5,-15.5 + parent: 0 + type: Transform +- uid: 9053 + type: SpawnPointSecurityCadet + components: + - pos: -52.5,-17.5 + parent: 0 + type: Transform +- uid: 9054 + type: SpawnPointSecurityCadet + components: + - pos: -53.5,-17.5 + parent: 0 + type: Transform +- uid: 9055 + type: SpawnPointSecurityCadet + components: + - pos: -52.5,-19.5 + parent: 0 + type: Transform +- uid: 9056 + type: SpawnPointSecurityCadet + components: + - pos: -53.5,-19.5 + parent: 0 + type: Transform +- uid: 9057 + type: SpawnPointSecurityCadet + components: + - pos: -54.5,-10.5 + parent: 0 + type: Transform +- uid: 9058 + type: SpawnPointSecurityCadet + components: + - pos: -55.5,-10.5 + parent: 0 + type: Transform +- uid: 9059 + type: SpawnPointSecurityCadet + components: + - pos: -54.5,-8.5 + parent: 0 + type: Transform +- uid: 9060 + type: SpawnPointSecurityCadet + components: + - pos: -55.5,-8.5 + parent: 0 + type: Transform +- uid: 9061 + type: SpawnPointSecurityCadet + components: + - pos: -54.5,-6.5 + parent: 0 + type: Transform +- uid: 9062 + type: SpawnPointSecurityCadet + components: + - pos: -55.5,-6.5 + parent: 0 + type: Transform +- uid: 9063 + type: SpawnPointSecurityCadet + components: + - pos: -53.5,-0.5 + parent: 0 + type: Transform +- uid: 9064 + type: SpawnPointSecurityCadet + components: + - pos: -54.5,-0.5 + parent: 0 + type: Transform +- uid: 9065 + type: SpawnPointSecurityCadet + components: + - pos: -54.5,1.5 + parent: 0 + type: Transform +- uid: 9066 + type: SpawnPointSecurityCadet + components: + - pos: -53.5,1.5 + parent: 0 + type: Transform +- uid: 9067 + type: SpawnPointSecurityCadet + components: + - pos: -53.5,3.5 + parent: 0 + type: Transform +- uid: 9068 + type: SpawnPointSecurityCadet + components: + - pos: -54.5,3.5 + parent: 0 + type: Transform +- uid: 9069 + type: SpawnPointSecurityCadet + components: + - pos: -53.5,8.5 + parent: 0 + type: Transform +- uid: 9070 + type: SpawnPointSecurityCadet + components: + - pos: -52.5,8.5 + parent: 0 + type: Transform +- uid: 9071 + type: SpawnPointCaptain + components: + - pos: -33.5,23.5 + parent: 0 + type: Transform +- uid: 9072 + type: SpawnPointSecurityCadet + components: + - pos: -52.5,10.5 + parent: 0 + type: Transform +- uid: 9073 + type: SpawnPointSecurityCadet + components: + - pos: -53.5,10.5 + parent: 0 + type: Transform +- uid: 9074 + type: SpawnPointSecurityCadet + components: + - pos: -53.5,12.5 + parent: 0 + type: Transform +- uid: 9075 + type: SpawnPointSecurityCadet + components: + - pos: -52.5,12.5 + parent: 0 + type: Transform +- uid: 9076 + type: SpawnPointChiefEngineer + components: + - pos: -33.5,21.5 + parent: 0 + type: Transform +- uid: 9077 + type: SpawnPointChiefMedicalOfficer + components: + - pos: -33.5,25.5 + parent: 0 + type: Transform +- uid: 9078 + type: SpawnPointResearchDirector + components: + - pos: -33.5,24.5 + parent: 0 + type: Transform +- uid: 9079 + type: SpawnPointHeadOfSecurity + components: + - pos: -33.5,22.5 + parent: 0 + type: Transform +- uid: 9080 + type: SpawnPointStationEngineer + components: + - pos: -30.5,-17.5 + parent: 0 + type: Transform +- uid: 9081 + type: CableApcExtension + components: + - pos: -28.5,-21.5 + parent: 0 + type: Transform +- uid: 9082 + type: SpawnPointStationEngineer + components: + - pos: -30.5,-18.5 + parent: 0 + type: Transform +- uid: 9083 + type: SpawnPointAssistant + components: + - pos: -42.5,1.5 + parent: 0 + type: Transform +- uid: 9084 + type: SpawnPointAssistant + components: + - pos: -43.5,0.5 + parent: 0 + type: Transform +- uid: 9085 + type: SpawnPointStationEngineer + components: + - pos: -29.5,-18.5 + parent: 0 + type: Transform +- uid: 9086 + type: SpawnPointAssistant + components: + - pos: -39.5,-7.5 + parent: 0 + type: Transform +- uid: 9087 + type: SpawnPointAssistant + components: + - pos: -41.5,-10.5 + parent: 0 + type: Transform +- uid: 9088 + type: SpawnPointAssistant + components: + - pos: -37.5,-24.5 + parent: 0 + type: Transform +- uid: 9089 + type: SpawnPointAssistant + components: + - pos: -41.5,-18.5 + parent: 0 + type: Transform +- uid: 9090 + type: SpawnPointAssistant + components: + - pos: -40.5,7.5 + parent: 0 + type: Transform +- uid: 9091 + type: SpawnPointAssistant + components: + - pos: -41.5,14.5 + parent: 0 + type: Transform +- uid: 9092 + type: SpawnPointAssistant + components: + - pos: -33.5,6.5 + parent: 0 + type: Transform +- uid: 9093 + type: SpawnPointAssistant + components: + - pos: -33.5,7.5 + parent: 0 + type: Transform +- uid: 9094 + type: SpawnPointAssistant + components: + - pos: -33.5,5.5 + parent: 0 + type: Transform +- uid: 9095 + type: SpawnPointAssistant + components: + - pos: -30.5,5.5 + parent: 0 + type: Transform +- uid: 9096 + type: SpawnPointAssistant + components: + - pos: -30.5,6.5 + parent: 0 + type: Transform +- uid: 9097 + type: SpawnPointAssistant + components: + - pos: -30.5,7.5 + parent: 0 + type: Transform +- uid: 9098 + type: SpawnPointAssistant + components: + - pos: -28.5,3.5 + parent: 0 + type: Transform +- uid: 9099 + type: SpawnPointAssistant + components: + - pos: -28.5,2.5 + parent: 0 + type: Transform +- uid: 9100 + type: SpawnPointAssistant + components: + - pos: -28.5,1.5 + parent: 0 + type: Transform +- uid: 9101 + type: SpawnPointAssistant + components: + - pos: -30.5,1.5 + parent: 0 + type: Transform +- uid: 9102 + type: SpawnPointAssistant + components: + - pos: -30.5,2.5 + parent: 0 + type: Transform +- uid: 9103 + type: SpawnPointAssistant + components: + - pos: -30.5,3.5 + parent: 0 + type: Transform +- uid: 9104 + type: SpawnPointAssistant + components: + - pos: -25.5,5.5 + parent: 0 + type: Transform +- uid: 9105 + type: SpawnPointAssistant + components: + - pos: -25.5,6.5 + parent: 0 + type: Transform +- uid: 9106 + type: SpawnPointAssistant + components: + - pos: -25.5,7.5 + parent: 0 + type: Transform +- uid: 9107 + type: SpawnPointAssistant + components: + - pos: -28.5,7.5 + parent: 0 + type: Transform +- uid: 9108 + type: SpawnPointAssistant + components: + - pos: -28.5,6.5 + parent: 0 + type: Transform +- uid: 9109 + type: SpawnPointAssistant + components: + - pos: -28.5,5.5 + parent: 0 + type: Transform +- uid: 9110 + type: XenoAITimedSpawner + components: + - pos: 107.5,-6.5 + parent: 0 + type: Transform +- uid: 9111 + type: XenoAITimedSpawner + components: + - pos: 104.5,-2.5 + parent: 0 + type: Transform +- uid: 9112 + type: XenoAITimedSpawner + components: + - pos: 105.5,4.5 + parent: 0 + type: Transform +- uid: 9113 + type: XenoAITimedSpawner + components: + - pos: 104.5,12.5 + parent: 0 + type: Transform +- uid: 9114 + type: XenoAITimedSpawner + components: + - pos: 106.5,22.5 + parent: 0 + type: Transform +- uid: 9115 + type: XenoAITimedSpawner + components: + - pos: 106.5,33.5 + parent: 0 + type: Transform +- uid: 9116 + type: XenoAITimedSpawner + components: + - pos: 104.5,-15.5 + parent: 0 + type: Transform +- uid: 9117 + type: XenoAITimedSpawner + components: + - pos: 104.5,-25.5 + parent: 0 + type: Transform +- uid: 9118 + type: XenoAITimedSpawner + components: + - pos: 105.5,-33.5 + parent: 0 + type: Transform +- uid: 9119 + type: XenoAITimedSpawner + components: + - pos: 103.5,-43.5 + parent: 0 + type: Transform +- uid: 9120 + type: XenoAITimedSpawner + components: + - pos: 105.5,-53.5 + parent: 0 + type: Transform +- uid: 9121 + type: AlwaysPoweredLightSodium + components: + - pos: -8.5,-24.5 + parent: 0 + type: Transform +- uid: 9122 + type: PoweredlightSodium + components: + - rot: 3.141592653589793 rad + pos: -21.5,-12.5 + parent: 0 + type: Transform +- uid: 9123 + type: SmallLight + components: + - rot: 3.141592653589793 rad + pos: -48.5,-36.5 + parent: 0 + type: Transform +- uid: 9124 + type: SmallLight + components: + - pos: -51.5,-31.5 + parent: 0 + type: Transform +- uid: 9125 + type: AlwaysPoweredLightSodium + components: + - pos: -24.5,-30.5 + parent: 0 + type: Transform +- uid: 9126 + type: AlwaysPoweredLightSodium + components: + - pos: -38.5,-30.5 + parent: 0 + type: Transform +- uid: 9127 + type: PoweredlightSodium + components: + - pos: -4.5,-0.5 + parent: 0 + type: Transform +- uid: 9128 + type: PoweredlightSodium + components: + - rot: 3.141592653589793 rad + pos: 7.5,-11.5 + parent: 0 + type: Transform +- uid: 9129 + type: PoweredlightSodium + components: + - rot: -1.5707963267948966 rad + pos: -40.5,26.5 + parent: 0 + type: Transform +- uid: 9130 + type: PoweredlightSodium + components: + - rot: 3.141592653589793 rad + pos: -19.5,8.5 + parent: 0 + type: Transform +- uid: 9131 + type: CableApcExtension + components: + - pos: -46.5,-20.5 + parent: 0 + type: Transform +- uid: 9132 + type: CableApcExtension + components: + - pos: -46.5,-19.5 + parent: 0 + type: Transform +- uid: 9133 + type: CableApcExtension + components: + - pos: -46.5,-18.5 + parent: 0 + type: Transform +- uid: 9134 + type: CableApcExtension + components: + - pos: -46.5,-17.5 + parent: 0 + type: Transform +- uid: 9135 + type: CableApcExtension + components: + - pos: -46.5,-16.5 + parent: 0 + type: Transform +- uid: 9136 + type: CableApcExtension + components: + - pos: -47.5,-17.5 + parent: 0 + type: Transform +- uid: 9137 + type: CableApcExtension + components: + - pos: -48.5,-17.5 + parent: 0 + type: Transform +- uid: 9138 + type: CableApcExtension + components: + - pos: -49.5,-17.5 + parent: 0 + type: Transform +- uid: 9139 + type: CableApcExtension + components: + - pos: -50.5,-17.5 + parent: 0 + type: Transform +- uid: 9140 + type: CableApcExtension + components: + - pos: -51.5,-17.5 + parent: 0 + type: Transform +- uid: 9141 + type: CableApcExtension + components: + - pos: -52.5,-17.5 + parent: 0 + type: Transform +- uid: 9142 + type: CableApcExtension + components: + - pos: -50.5,-18.5 + parent: 0 + type: Transform +- uid: 9143 + type: CableApcExtension + components: + - pos: -50.5,-16.5 + parent: 0 + type: Transform +- uid: 9144 + type: CableApcExtension + components: + - pos: -49.5,-11.5 + parent: 0 + type: Transform +- uid: 9145 + type: CableApcExtension + components: + - pos: -49.5,-10.5 + parent: 0 + type: Transform +- uid: 9146 + type: CableApcExtension + components: + - pos: -49.5,-9.5 + parent: 0 + type: Transform +- uid: 9147 + type: CableApcExtension + components: + - pos: -49.5,-8.5 + parent: 0 + type: Transform +- uid: 9148 + type: CableApcExtension + components: + - pos: -49.5,-7.5 + parent: 0 + type: Transform +- uid: 9149 + type: CableApcExtension + components: + - pos: -48.5,-8.5 + parent: 0 + type: Transform +- uid: 9150 + type: CableApcExtension + components: + - pos: -50.5,-8.5 + parent: 0 + type: Transform +- uid: 9151 + type: CableApcExtension + components: + - pos: -51.5,-8.5 + parent: 0 + type: Transform +- uid: 9152 + type: CableApcExtension + components: + - pos: -52.5,-8.5 + parent: 0 + type: Transform +- uid: 9153 + type: CableApcExtension + components: + - pos: -53.5,-8.5 + parent: 0 + type: Transform +- uid: 9154 + type: CableApcExtension + components: + - pos: -54.5,-8.5 + parent: 0 + type: Transform +- uid: 9155 + type: CableApcExtension + components: + - pos: -53.5,-9.5 + parent: 0 + type: Transform +- uid: 9156 + type: CableApcExtension + components: + - pos: -53.5,-7.5 + parent: 0 + type: Transform +- uid: 9157 + type: CableApcExtension + components: + - pos: -48.5,4.5 + parent: 0 + type: Transform +- uid: 9158 + type: CableApcExtension + components: + - pos: -48.5,3.5 + parent: 0 + type: Transform +- uid: 9159 + type: CableApcExtension + components: + - pos: -48.5,2.5 + parent: 0 + type: Transform +- uid: 9160 + type: CableApcExtension + components: + - pos: -48.5,1.5 + parent: 0 + type: Transform +- uid: 9161 + type: CableApcExtension + components: + - pos: -48.5,0.5 + parent: 0 + type: Transform +- uid: 9162 + type: CableApcExtension + components: + - pos: -47.5,1.5 + parent: 0 + type: Transform +- uid: 9163 + type: CableApcExtension + components: + - pos: -49.5,1.5 + parent: 0 + type: Transform +- uid: 9164 + type: CableApcExtension + components: + - pos: -50.5,1.5 + parent: 0 + type: Transform +- uid: 9165 + type: CableApcExtension + components: + - pos: -51.5,1.5 + parent: 0 + type: Transform +- uid: 9166 + type: CableApcExtension + components: + - pos: -52.5,1.5 + parent: 0 + type: Transform +- uid: 9167 + type: CableApcExtension + components: + - pos: -53.5,1.5 + parent: 0 + type: Transform +- uid: 9168 + type: CableApcExtension + components: + - pos: -52.5,2.5 + parent: 0 + type: Transform +- uid: 9169 + type: CableApcExtension + components: + - pos: -52.5,0.5 + parent: 0 + type: Transform +- uid: 9170 + type: CableApcExtension + components: + - pos: -47.5,13.5 + parent: 0 + type: Transform +- uid: 9171 + type: CableApcExtension + components: + - pos: -47.5,12.5 + parent: 0 + type: Transform +- uid: 9172 + type: CableApcExtension + components: + - pos: -47.5,11.5 + parent: 0 + type: Transform +- uid: 9173 + type: CableApcExtension + components: + - pos: -47.5,10.5 + parent: 0 + type: Transform +- uid: 9174 + type: CableApcExtension + components: + - pos: -47.5,9.5 + parent: 0 + type: Transform +- uid: 9175 + type: CableApcExtension + components: + - pos: -46.5,10.5 + parent: 0 + type: Transform +- uid: 9176 + type: CableApcExtension + components: + - pos: -48.5,10.5 + parent: 0 + type: Transform +- uid: 9177 + type: CableApcExtension + components: + - pos: -49.5,10.5 + parent: 0 + type: Transform +- uid: 9178 + type: CableApcExtension + components: + - pos: -50.5,10.5 + parent: 0 + type: Transform +- uid: 9179 + type: CableApcExtension + components: + - pos: -51.5,10.5 + parent: 0 + type: Transform +- uid: 9180 + type: CableApcExtension + components: + - pos: -52.5,10.5 + parent: 0 + type: Transform +- uid: 9181 + type: CableApcExtension + components: + - pos: -51.5,11.5 + parent: 0 + type: Transform +- uid: 9182 + type: CableApcExtension + components: + - pos: -51.5,9.5 + parent: 0 + type: Transform +- uid: 9183 + type: CableApcExtension + components: + - pos: -46.5,16.5 + parent: 0 + type: Transform +- uid: 9184 + type: CableApcExtension + components: + - pos: -46.5,17.5 + parent: 0 + type: Transform +- uid: 9185 + type: CableApcExtension + components: + - pos: -46.5,18.5 + parent: 0 + type: Transform +- uid: 9186 + type: CableApcExtension + components: + - pos: -46.5,19.5 + parent: 0 + type: Transform +- uid: 9187 + type: CableApcExtension + components: + - pos: -46.5,20.5 + parent: 0 + type: Transform +- uid: 9188 + type: CableApcExtension + components: + - pos: -46.5,21.5 + parent: 0 + type: Transform +- uid: 9189 + type: CableApcExtension + components: + - pos: -46.5,22.5 + parent: 0 + type: Transform +- uid: 9190 + type: CableApcExtension + components: + - pos: -46.5,23.5 + parent: 0 + type: Transform +- uid: 9191 + type: CableApcExtension + components: + - pos: -46.5,24.5 + parent: 0 + type: Transform +- uid: 9192 + type: CableApcExtension + components: + - pos: -46.5,25.5 + parent: 0 + type: Transform +- uid: 9193 + type: CableApcExtension + components: + - pos: -47.5,21.5 + parent: 0 + type: Transform +- uid: 9194 + type: CableApcExtension + components: + - pos: -48.5,21.5 + parent: 0 + type: Transform +- uid: 9195 + type: CableApcExtension + components: + - pos: -49.5,21.5 + parent: 0 + type: Transform +- uid: 9196 + type: CableApcExtension + components: + - pos: -50.5,21.5 + parent: 0 + type: Transform +- uid: 9197 + type: CableApcExtension + components: + - pos: -51.5,21.5 + parent: 0 + type: Transform +- uid: 9198 + type: CableApcExtension + components: + - pos: -52.5,21.5 + parent: 0 + type: Transform +- uid: 9199 + type: CableApcExtension + components: + - pos: -53.5,21.5 + parent: 0 + type: Transform +- uid: 9200 + type: CableApcExtension + components: + - pos: -54.5,21.5 + parent: 0 + type: Transform +- uid: 9201 + type: CableApcExtension + components: + - pos: -55.5,21.5 + parent: 0 + type: Transform +- uid: 9202 + type: CableApcExtension + components: + - pos: -54.5,22.5 + parent: 0 + type: Transform +- uid: 9203 + type: CableApcExtension + components: + - pos: -54.5,23.5 + parent: 0 + type: Transform +- uid: 9204 + type: CableApcExtension + components: + - pos: -54.5,24.5 + parent: 0 + type: Transform +- uid: 9205 + type: CableApcExtension + components: + - pos: -54.5,25.5 + parent: 0 + type: Transform +- uid: 9206 + type: CableApcExtension + components: + - pos: -54.5,20.5 + parent: 0 + type: Transform +- uid: 9207 + type: CableApcExtension + components: + - pos: -54.5,19.5 + parent: 0 + type: Transform +- uid: 9208 + type: CableApcExtension + components: + - pos: -54.5,18.5 + parent: 0 + type: Transform +- uid: 9209 + type: CableApcExtension + components: + - pos: -50.5,20.5 + parent: 0 + type: Transform +- uid: 9210 + type: CableApcExtension + components: + - pos: -50.5,19.5 + parent: 0 + type: Transform +- uid: 9211 + type: CableApcExtension + components: + - pos: -50.5,22.5 + parent: 0 + type: Transform +- uid: 9212 + type: CableApcExtension + components: + - pos: -50.5,23.5 + parent: 0 + type: Transform +- uid: 9213 + type: CableApcExtension + components: + - pos: -50.5,24.5 + parent: 0 + type: Transform +- uid: 9214 + type: CableApcExtension + components: + - pos: -50.5,25.5 + parent: 0 + type: Transform +- uid: 9215 + type: CableApcExtension + components: + - pos: -32.5,17.5 + parent: 0 + type: Transform +- uid: 9216 + type: CableApcExtension + components: + - pos: -32.5,18.5 + parent: 0 + type: Transform +- uid: 9217 + type: CableApcExtension + components: + - pos: -32.5,19.5 + parent: 0 + type: Transform +- uid: 9218 + type: CableApcExtension + components: + - pos: -32.5,20.5 + parent: 0 + type: Transform +- uid: 9219 + type: CableApcExtension + components: + - pos: -32.5,21.5 + parent: 0 + type: Transform +- uid: 9220 + type: CableApcExtension + components: + - pos: -32.5,22.5 + parent: 0 + type: Transform +- uid: 9221 + type: CableApcExtension + components: + - pos: -32.5,23.5 + parent: 0 + type: Transform +- uid: 9222 + type: CableApcExtension + components: + - pos: -32.5,24.5 + parent: 0 + type: Transform +- uid: 9223 + type: CableApcExtension + components: + - pos: -32.5,25.5 + parent: 0 + type: Transform +- uid: 9224 + type: CableApcExtension + components: + - pos: -32.5,26.5 + parent: 0 + type: Transform +- uid: 9225 + type: CableApcExtension + components: + - pos: -32.5,27.5 + parent: 0 + type: Transform +- uid: 9226 + type: CableApcExtension + components: + - pos: -32.5,28.5 + parent: 0 + type: Transform +- uid: 9227 + type: CableApcExtension + components: + - pos: -31.5,26.5 + parent: 0 + type: Transform +- uid: 9228 + type: CableApcExtension + components: + - pos: -30.5,26.5 + parent: 0 + type: Transform +- uid: 9229 + type: CableApcExtension + components: + - pos: -29.5,26.5 + parent: 0 + type: Transform +- uid: 9230 + type: CableApcExtension + components: + - pos: -28.5,26.5 + parent: 0 + type: Transform +- uid: 9231 + type: CableApcExtension + components: + - pos: -27.5,26.5 + parent: 0 + type: Transform +- uid: 9232 + type: CableApcExtension + components: + - pos: -26.5,26.5 + parent: 0 + type: Transform +- uid: 9233 + type: CableApcExtension + components: + - pos: -25.5,26.5 + parent: 0 + type: Transform +- uid: 9234 + type: CableApcExtension + components: + - pos: -24.5,26.5 + parent: 0 + type: Transform +- uid: 9235 + type: CableApcExtension + components: + - pos: -23.5,26.5 + parent: 0 + type: Transform +- uid: 9236 + type: CableApcExtension + components: + - pos: -22.5,26.5 + parent: 0 + type: Transform +- uid: 9237 + type: CableApcExtension + components: + - pos: -21.5,26.5 + parent: 0 + type: Transform +- uid: 9238 + type: CableApcExtension + components: + - pos: -24.5,27.5 + parent: 0 + type: Transform +- uid: 9239 + type: CableApcExtension + components: + - pos: -29.5,27.5 + parent: 0 + type: Transform +- uid: 9240 + type: CableApcExtension + components: + - pos: -29.5,25.5 + parent: 0 + type: Transform +- uid: 9241 + type: CableApcExtension + components: + - pos: -24.5,25.5 + parent: 0 + type: Transform +- uid: 9242 + type: CableApcExtension + components: + - pos: -31.5,20.5 + parent: 0 + type: Transform +- uid: 9243 + type: CableApcExtension + components: + - pos: -30.5,20.5 + parent: 0 + type: Transform +- uid: 9244 + type: CableApcExtension + components: + - pos: -29.5,20.5 + parent: 0 + type: Transform +- uid: 9245 + type: CableApcExtension + components: + - pos: -28.5,20.5 + parent: 0 + type: Transform +- uid: 9246 + type: CableApcExtension + components: + - pos: -27.5,20.5 + parent: 0 + type: Transform +- uid: 9247 + type: CableApcExtension + components: + - pos: -26.5,20.5 + parent: 0 + type: Transform +- uid: 9248 + type: CableApcExtension + components: + - pos: -25.5,20.5 + parent: 0 + type: Transform +- uid: 9249 + type: CableApcExtension + components: + - pos: -24.5,20.5 + parent: 0 + type: Transform +- uid: 9250 + type: CableApcExtension + components: + - pos: -23.5,20.5 + parent: 0 + type: Transform +- uid: 9251 + type: CableApcExtension + components: + - pos: -22.5,20.5 + parent: 0 + type: Transform +- uid: 9252 + type: CableApcExtension + components: + - pos: -21.5,20.5 + parent: 0 + type: Transform +- uid: 9253 + type: CableApcExtension + components: + - pos: -24.5,21.5 + parent: 0 + type: Transform +- uid: 9254 + type: CableApcExtension + components: + - pos: -24.5,22.5 + parent: 0 + type: Transform +- uid: 9255 + type: CableApcExtension + components: + - pos: -29.5,21.5 + parent: 0 + type: Transform +- uid: 9256 + type: CableApcExtension + components: + - pos: -29.5,22.5 + parent: 0 + type: Transform +- uid: 9257 + type: CableApcExtension + components: + - pos: -29.5,18.5 + parent: 0 + type: Transform +- uid: 9258 + type: CableApcExtension + components: + - pos: -29.5,19.5 + parent: 0 + type: Transform +- uid: 9259 + type: CableApcExtension + components: + - pos: -24.5,19.5 + parent: 0 + type: Transform +- uid: 9260 + type: CableApcExtension + components: + - pos: -20.5,20.5 + parent: 0 + type: Transform +- uid: 9261 + type: CableApcExtension + components: + - pos: -20.5,21.5 + parent: 0 + type: Transform +- uid: 9262 + type: CableApcExtension + components: + - pos: -20.5,22.5 + parent: 0 + type: Transform +- uid: 9263 + type: CableApcExtension + components: + - pos: -20.5,26.5 + parent: 0 + type: Transform +- uid: 9264 + type: CableApcExtension + components: + - pos: -20.5,25.5 + parent: 0 + type: Transform +- uid: 9265 + type: CableApcExtension + components: + - pos: -20.5,24.5 + parent: 0 + type: Transform +- uid: 9266 + type: CableApcExtension + components: + - pos: -33.5,27.5 + parent: 0 + type: Transform +- uid: 9267 + type: CableApcExtension + components: + - pos: -34.5,27.5 + parent: 0 + type: Transform +- uid: 9268 + type: CableApcExtension + components: + - pos: -35.5,27.5 + parent: 0 + type: Transform +- uid: 9269 + type: CableApcExtension + components: + - pos: -36.5,27.5 + parent: 0 + type: Transform +- uid: 9270 + type: CableApcExtension + components: + - pos: -37.5,27.5 + parent: 0 + type: Transform +- uid: 9271 + type: CableApcExtension + components: + - pos: -37.5,26.5 + parent: 0 + type: Transform +- uid: 9272 + type: CableApcExtension + components: + - pos: -37.5,25.5 + parent: 0 + type: Transform +- uid: 9273 + type: CableApcExtension + components: + - pos: -37.5,24.5 + parent: 0 + type: Transform +- uid: 9274 + type: CableApcExtension + components: + - pos: -37.5,23.5 + parent: 0 + type: Transform +- uid: 9275 + type: CableApcExtension + components: + - pos: -37.5,22.5 + parent: 0 + type: Transform +- uid: 9276 + type: CableApcExtension + components: + - pos: -37.5,21.5 + parent: 0 + type: Transform +- uid: 9277 + type: CableApcExtension + components: + - pos: -37.5,20.5 + parent: 0 + type: Transform +- uid: 9278 + type: CableApcExtension + components: + - pos: -38.5,23.5 + parent: 0 + type: Transform +- uid: 9279 + type: CableApcExtension + components: + - pos: -48.5,-30.5 + parent: 0 + type: Transform +- uid: 9280 + type: CableApcExtension + components: + - pos: -48.5,-31.5 + parent: 0 + type: Transform +- uid: 9281 + type: CableApcExtension + components: + - pos: -48.5,-32.5 + parent: 0 + type: Transform +- uid: 9282 + type: CableApcExtension + components: + - pos: -48.5,-33.5 + parent: 0 + type: Transform +- uid: 9283 + type: CableApcExtension + components: + - pos: -48.5,-34.5 + parent: 0 + type: Transform +- uid: 9284 + type: CableApcExtension + components: + - pos: -48.5,-35.5 + parent: 0 + type: Transform +- uid: 9285 + type: CableApcExtension + components: + - pos: -48.5,-36.5 + parent: 0 + type: Transform +- uid: 9286 + type: CableApcExtension + components: + - pos: -47.5,-34.5 + parent: 0 + type: Transform +- uid: 9287 + type: CableApcExtension + components: + - pos: -47.5,-33.5 + parent: 0 + type: Transform +- uid: 9288 + type: CableApcExtension + components: + - pos: -49.5,-34.5 + parent: 0 + type: Transform +- uid: 9289 + type: CableApcExtension + components: + - pos: -50.5,-34.5 + parent: 0 + type: Transform +- uid: 9290 + type: CableApcExtension + components: + - pos: -51.5,-34.5 + parent: 0 + type: Transform +- uid: 9291 + type: CableApcExtension + components: + - pos: -52.5,-34.5 + parent: 0 + type: Transform +- uid: 9292 + type: CableApcExtension + components: + - pos: -51.5,-33.5 + parent: 0 + type: Transform +- uid: 9293 + type: CableApcExtension + components: + - pos: -49.5,-36.5 + parent: 0 + type: Transform +- uid: 9294 + type: CableApcExtension + components: + - pos: -49.5,-31.5 + parent: 0 + type: Transform +- uid: 9295 + type: SpawnVehicleATV + components: + - pos: 8.5,-32.5 + parent: 0 + type: Transform +- uid: 9296 + type: SpawnVehicleATV + components: + - pos: 6.5,-32.5 + parent: 0 + type: Transform +- uid: 9297 + type: VehicleKeyATV + components: + - pos: 9.256456,-31.742626 + parent: 0 + type: Transform +- uid: 9298 + type: VehicleKeyATV + components: + - pos: 7.23462,-31.857288 + parent: 0 + type: Transform +- uid: 9299 + type: SpawnVehicleATV + components: + - pos: 16.5,-2.5 + parent: 0 + type: Transform +- uid: 9300 + type: SpawnVehicleATV + components: + - pos: 14.5,-2.5 + parent: 0 + type: Transform +- uid: 9301 + type: VehicleKeyATV + components: + - pos: 13.662062,-3.2188528 + parent: 0 + type: Transform +- uid: 9302 + type: VehicleKeyATV + components: + - pos: 15.9236,-3.208429 + parent: 0 + type: Transform +- uid: 9303 + type: SpawnVehicleATV + components: + - pos: 20.5,27.5 + parent: 0 + type: Transform +- uid: 9304 + type: SpawnVehicleATV + components: + - pos: 16.5,27.5 + parent: 0 + type: Transform +- uid: 9305 + type: VehicleKeyATV + components: + - pos: 19.51623,26.637224 + parent: 0 + type: Transform +- uid: 9306 + type: VehicleKeyATV + components: + - pos: 17.254692,27.064606 + parent: 0 + type: Transform +- uid: 9307 + type: LightPostSmall + components: + - pos: -3.5,25.5 + parent: 0 + type: Transform +- uid: 9308 + type: LightPostSmall + components: + - pos: 16.5,24.5 + parent: 0 + type: Transform +- uid: 9309 + type: LightPostSmall + components: + - pos: -4.5,-32.5 + parent: 0 + type: Transform +- uid: 9310 + type: LightPostSmall + components: + - pos: 10.5,-28.5 + parent: 0 + type: Transform +- uid: 9311 + type: FlashlightSeclite + components: + - pos: -46.381878,18.398386 + parent: 0 + type: Transform +- uid: 9312 + type: FlashlightSeclite + components: + - pos: -46.527786,18.669409 + parent: 0 + type: Transform +- uid: 9313 + type: FlashlightSeclite + components: + - pos: -47.319843,18.356691 + parent: 0 + type: Transform +- uid: 9314 + type: FlashlightSeclite + components: + - pos: -47.528282,18.627712 + parent: 0 + type: Transform +- uid: 9315 + type: FlashlightSeclite + components: + - pos: -48.341183,18.356691 + parent: 0 + type: Transform +- uid: 9316 + type: FlashlightSeclite + components: + - pos: -48.612152,18.606865 + parent: 0 + type: Transform +- uid: 9317 + type: FlashlightLantern + components: + - pos: -49.38337,18.48178 + parent: 0 + type: Transform +- uid: 9318 + type: FlashlightLantern + components: + - pos: -49.696026,18.73195 + parent: 0 + type: Transform +- uid: 9319 + type: FlashlightLantern + components: + - pos: -50.368233,18.445293 + parent: 0 + type: Transform +- uid: 9320 + type: FlashlightLantern + components: + - pos: -50.670464,18.70589 + parent: 0 + type: Transform +- uid: 9321 + type: PowerCellHigh + components: + - pos: -46.21818,20.511648 + parent: 0 + type: Transform +- uid: 9322 + type: PowerCellHigh + components: + - pos: -46.582947,20.720125 + parent: 0 + type: Transform +- uid: 9323 + type: PowerCellHigh + components: + - pos: -47.270786,20.501225 + parent: 0 + type: Transform +- uid: 9324 + type: PowerCellHigh + components: + - pos: -47.666817,20.657581 + parent: 0 + type: Transform +- uid: 9325 + type: PowerCellHigh + components: + - pos: -48.333813,20.469952 + parent: 0 + type: Transform +- uid: 9326 + type: PowerCellHigh + components: + - pos: -48.709,20.740974 + parent: 0 + type: Transform +- uid: 9327 + type: PowerCellHigh + components: + - pos: -49.323887,20.522072 + parent: 0 + type: Transform +- uid: 9328 + type: PowerCellHigh + components: + - pos: -49.688652,20.761822 + parent: 0 + type: Transform +- uid: 9329 + type: PowerCellHigh + components: + - pos: -50.334805,20.501225 + parent: 0 + type: Transform +- uid: 9330 + type: PowerCellHigh + components: + - pos: -50.689148,20.78267 + parent: 0 + type: Transform +- uid: 9331 + type: PowerCellAntiqueProto + components: + - pos: -46.311977,23.542118 + parent: 0 + type: Transform +- uid: 9332 + type: PowerCellAntiqueProto + components: + - pos: -47.614708,23.740173 + parent: 0 + type: Transform +- uid: 9333 + type: PowerCellPotato + components: + - pos: -49.44895,23.812464 + parent: 0 + type: Transform +- uid: 9334 + type: PowerCellMicroreactor + components: + - pos: -50.34123,23.51017 + parent: 0 + type: Transform +- uid: 9335 + type: PowerCellMicroreactor + components: + - pos: -50.69557,23.708225 + parent: 0 + type: Transform +- uid: 9336 + type: PowerCellRecharger + components: + - pos: -46.5,25.5 + parent: 0 + type: Transform +- uid: 9337 + type: PowerCellRecharger + components: + - pos: -47.5,25.5 + parent: 0 + type: Transform +- uid: 9338 + type: PowerCellRecharger + components: + - pos: -48.5,25.5 + parent: 0 + type: Transform +- uid: 9339 + type: PowerCellRecharger + components: + - pos: -49.5,25.5 + parent: 0 + type: Transform +- uid: 9340 + type: PowerCellRecharger + components: + - pos: -50.5,25.5 + parent: 0 + type: Transform +- uid: 9341 + type: Floodlight + components: + - pos: -45.351574,26.467226 + parent: 0 + type: Transform +- uid: 9342 + type: Floodlight + components: + - pos: -45.8414,26.7174 + parent: 0 + type: Transform +- uid: 9343 + type: Floodlight + components: + - pos: -46.80021,26.498497 + parent: 0 + type: Transform +- uid: 9344 + type: Floodlight + components: + - pos: -47.55058,26.884182 + parent: 0 + type: Transform +- uid: 9345 + type: Floodlight + components: + - pos: -48.90542,26.456802 + parent: 0 + type: Transform +- uid: 9346 + type: Floodlight + components: + - pos: -49.468197,26.811214 + parent: 0 + type: Transform +... diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml deleted file mode 100644 index 7e0792bd11..0000000000 --- a/Resources/Maps/fland.yml +++ /dev/null @@ -1,277991 +0,0 @@ -meta: - format: 3 - name: DemoStation - author: Space-Wizards - postmapinit: false -tilemap: - 0: Space - 1: FloorArcadeBlue - 2: FloorArcadeBlue2 - 4: FloorAsteroidCoarseSand0 - 10: FloorAsteroidSand - 11: FloorAsteroidTile - 12: FloorBar - 14: FloorBlue - 15: FloorBlueCircuit - 17: FloorCarpetClown - 21: FloorClown - 22: FloorDark - 26: FloorDarkMini - 27: FloorDarkMono - 30: FloorDarkPavementVertical - 31: FloorDarkPlastic - 34: FloorEighties - 37: FloorFreezer - 38: FloorGlass - 39: FloorGold - 40: FloorGrass - 41: FloorGrassDark - 43: FloorGrassLight - 44: FloorGreenCircuit - 46: FloorHydro - 47: FloorKitchen - 48: FloorLaundry - 49: FloorLino - 51: FloorMetalDiamond - 56: FloorPlastic - 58: FloorReinforced - 59: FloorRockVault - 62: FloorShuttleOrange - 66: FloorSilver - 68: FloorSteel - 71: FloorSteelDirty - 77: FloorSteelPavementVertical - 78: FloorTechMaint - 79: FloorTechMaint2 - 81: FloorWhite - 85: FloorWhiteMini - 90: FloorWhitePlastic - 91: FloorWood - 93: Lattice - 94: Plating -entities: -- uid: 0 - components: - - type: MetaData - - parent: 1 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: TgAAAF4AAABOAAAAXgAAAE4AAABeAAAAIgAAACIAAAAiAAAAXgAAAF4AAABeAAAAFgAAAkQAAAJEAAACRAAAA14AAABeAAAATgAAAF4AAABOAAAAXgAAACIAAAAiAAAAIgAAAF4AAABeAAAAXgAAABYAAANEAAACRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABRAAAAEQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAEQAAAFEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABEAAAARAAAAUQAAAEWAAABFgAAARYAAAJeAAAARAAAAkQAAAFEAAAARAAAAUQAAAJeAAAAXgAAAF4AAAAWAAADRAAAAEQAAAFEAAAAFgAAAhYAAAAWAAACTgAAAEQAAANEAAABRAAAAUQAAAFEAAACTwAAAF4AAABeAAAAFgAAAxYAAAAWAAADFgAAABYAAAMWAAABFgAAAl4AAABEAAACRAAAAUQAAAFEAAADRAAAA14AAABeAAAAXgAAABYAAAJeAAAAFgAAAxYAAANeAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAAAWAAABFgAAABYAAAMWAAAATgAAAEQAAANEAAACRAAAAEQAAAJEAAADRAAAAUQAAAJOAAAARAAAA0QAAANEAAADRAAAAUQAAABEAAADRAAAAE4AAABEAAADRAAAAUQAAANEAAACRAAAAkQAAAJEAAAATgAAAEQAAAJEAAABRAAAAUQAAAJEAAADRAAAAUQAAANOAAAARAAAAEQAAABEAAABRAAAA0QAAANEAAACRAAAAU4AAABEAAABRAAAAEQAAANEAAABRAAAAUQAAANEAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAACFgAAARYAAAJeAAAARAAAAUQAAAJEAAAARAAAA0QAAABEAAABRAAAATEAAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAl4AAABbAAAAWwAAAlsAAAExAAAAMQAAADEAAABeAAAAFgAAAxYAAAMWAAADFgAAAF4AAABEAAACRAAAAUQAAABbAAADWwAAAzEAAAAxAAAAMQAAADEAAAAxAAAAXgAAABYAAAMWAAABFgAAABYAAAJeAAAARAAAAEQAAAJEAAADWwAAAVsAAAIxAAAAMQAAAA== - 0,0: - ind: 0,0 - tiles: MQAAAFsAAAFbAAACRAAAAEQAAABEAAACFgAAA0QAAABEAAADRAAAAEQAAAFEAAACXgAAABYAAAIWAAACXgAAADEAAABbAAABXgAAAEQAAAFEAAADRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAF4AAABEAAABRAAAAUQAAAEWAAAARAAAA0QAAANEAAAARAAAAUQAAANeAAAAFgAAAhYAAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAADFgAAAEQAAABEAAACRAAAAUQAAANEAAACFgAAAxYAAAEWAAABTwAAAEQAAAJEAAACRAAAAEQAAAJEAAAARAAAAxYAAANEAAAARAAAAkQAAAJEAAACRAAAA14AAAAWAAABFgAAAF4AAABEAAAARAAAAUQAAAJEAAACRAAAA0QAAAIWAAACXgAAAEQAAAJEAAAARAAAAUQAAAFeAAAAFgAAAxYAAAJeAAAARAAAAkQAAAJEAAAARAAAAkQAAAFEAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAABYAAAFEAAABRwAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAAAWAAACRAAAAUQAAAIWAAAAXgAAAF4AAABeAAAAXgAAAEQAAABeAAAAXgAAAF4AAAA7AAAAFgAAAEQAAABeAAAAFgAAAkQAAAJEAAADFgAAAU8AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAOwAAABYAAABEAAABXgAAABYAAAFHAAAARAAAAxYAAANeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAADsAAAAWAAAARAAAAUQAAAEWAAADRAAAAUcAAAAWAAACFgAAAl4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAAAWAAAAFgAAAUQAAAJeAAAAFgAAAxYAAAEWAAAAFgAAAhYAAAJeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAFgAAABYAAANEAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAACRAAAARYAAANPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAFgAAAQ== - -1,0: - ind: -1,0 - tiles: MQAAADEAAAAxAAAAXgAAABYAAAAWAAAAFgAAAhYAAAFeAAAARAAAA0QAAABEAAABWwAAAFsAAAExAAAAMQAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAARYAAAIWAAACXgAAAEQAAAFEAAAARAAAAV4AAABbAAABMQAAADEAAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAEWAAADFgAAAF4AAABEAAAARAAAAkQAAAJeAAAAFgAAAxYAAAMWAAACXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAARAAAA0QAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAA0QAAABEAAABRAAAA0QAAABEAAAARAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAABYAAABEAAABRAAAAUQAAAFEAAAARAAAA0QAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABRAAAAkQAAANEAAACRAAAAUQAAAJEAAABRAAAAl4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAWwAAAhYAAAAWAAAAFgAAAhYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAAWwAAAlsAAANbAAAAWwAAAlsAAAMWAAACXgAAABYAAAAWAAABFgAAABYAAAAWAAADFgAAAV4AAABEAAACRAAAAl4AAAAWAAAAFgAAABYAAAIWAAACFgAAA14AAAAWAAACFgAAARYAAAIWAAAAFgAAARYAAAJeAAAARAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAIWAAACFgAAAhYAAAIWAAAAXgAAAEQAAAFEAAADXgAAABYAAAMWAAAAFgAAAxYAAAEWAAADXgAAAF4AAABeAAAAFgAAARYAAANeAAAAXgAAAF4AAABEAAACRAAAAl4AAABbAAADWwAAAVsAAAJbAAAAWwAAAhYAAAIWAAACFgAAAxYAAAIWAAACFgAAAhYAAAIWAAABRAAAAEQAAAJbAAADWwAAAlsAAAFbAAABWwAAA1sAAAEWAAAAFgAAAhYAAAIWAAAAFgAAABYAAAMWAAAAFgAAAkQAAABEAAACJgAAACYAAAAmAAAAJgAAACYAAABbAAADXgAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAF4AAABEAAADRAAAAQ== - 0,-1: - ind: 0,-1 - tiles: FgAAA14AAABeAAAAFgAAARYAAAMWAAADFgAAAxYAAAAWAAAAFgAAA14AAAAWAAAAFgAAABYAAABOAAAAFgAAAxYAAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAAAWAAACTgAAAF4AAABeAAAAFgAAABYAAAIWAAABXgAAABYAAAMWAAADFgAAAF4AAAAWAAABFgAAARYAAAAWAAACFgAAARYAAAEWAAAAXgAAAF4AAAAWAAACXgAAAF4AAABEAAAARAAAARYAAAFeAAAAFgAAAkQAAABEAAAARAAAAkQAAANEAAADFgAAAl4AAABEAAAARAAAAUQAAABeAAAARAAAAEQAAAAWAAADXgAAABYAAAFEAAABRAAAAkQAAAJEAAADRAAAARYAAAJeAAAARAAAA0QAAABEAAACXgAAAEQAAAFEAAABFgAAAF4AAAAWAAADRAAAAUQAAABEAAACRAAAAkQAAAIWAAAAXgAAAEQAAAJEAAACRAAAA14AAABEAAADFgAAAxYAAANeAAAAFgAAABYAAAEWAAAAFgAAAxYAAAEWAAAAFgAAA14AAABEAAABRAAAAkQAAANeAAAAFgAAABYAAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAABYAAAEWAAADXgAAABYAAAIWAAABFgAAASsAAAArAAABFgAAAhYAAAErAAABFgAAABYAAAArAAAAKwAAA14AAAAWAAACXgAAAF4AAABeAAAARAAAAEQAAABEAAADRAAAAkQAAABEAAACTgAAAEQAAABEAAAARAAAAUQAAAFEAAAARAAAA0QAAABEAAADRAAAAkQAAABEAAABRAAAAEQAAANEAAABRAAAA04AAABEAAABRAAAAkQAAABEAAABRAAAAEQAAAFEAAABRAAAAUQAAANEAAADRAAAAUQAAABEAAAARAAAAkQAAAJOAAAARAAAAUQAAAJEAAABRAAAAkQAAAFEAAADRAAAAkQAAAFEAAAARAAAAkQAAANEAAACRAAAA0QAAAFEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAAAXgAAAEQAAAFEAAACRAAAAxYAAAJeAAAARAAAA0QAAAJEAAABRAAAAl4AAAAWAAAAFgAAAl4AAAAxAAAAWwAAAVsAAANEAAABRAAAAEQAAAAWAAAARAAAA0QAAANEAAACRAAAAEQAAAJeAAAAFgAAABYAAAFeAAAAMQAAAFsAAAFbAAADRAAAAEQAAANEAAACFgAAAkQAAAJEAAABRAAAA0QAAAJEAAAAFgAAAxYAAAIWAAACTwAAAA== - -1,1: - ind: -1,1 - tiles: JgAAACYAAAAmAAAAJgAAACYAAABbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAASYAAAAmAAAAJgAAACYAAAAmAAAAWwAAA14AAAAMAAACDAAAAgwAAAEMAAACDAAAA14AAAAoAAAARAAAA0QAAAEmAAAAJgAAACYAAAAmAAAAJgAAAFsAAAFeAAAADAAAAAwAAAAMAAAADAAAAQwAAAJeAAAAFgAAAkQAAANEAAAAJgAAACYAAAAmAAAAJgAAACYAAABbAAABXgAAAAwAAAMMAAACDAAAAAwAAAMMAAAAXgAAABYAAAJEAAADRAAAACYAAAAmAAAAJgAAACYAAAAmAAAAWwAAAF4AAAAMAAAADAAAAQwAAAMMAAADDAAAAl4AAAAWAAABRAAAAEQAAAMmAAAAJgAAACYAAAAmAAAAJgAAAFsAAAJeAAAADAAAAgwAAAIMAAACDAAAAgwAAABeAAAAFgAAAkQAAANEAAAAWwAAA1sAAABbAAACWwAAA1sAAAFbAAACXgAAAAwAAAEMAAAADAAAAAwAAAIMAAACXgAAABYAAAFEAAACRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAMAAADDAAAAwwAAAMMAAADDAAAAl4AAABeAAAARAAAAkQAAAAWAAADFgAAAhYAAANeAAAADAAAAQwAAAMMAAACDAAAAAwAAAEMAAAADAAAAwwAAAAWAAADXgAAAEQAAAJEAAAAFgAAAxYAAAIWAAACFgAAAgwAAAAMAAABDAAAAgwAAABeAAAAFgAAAl4AAABeAAAAXgAAAF4AAABOAAAATgAAABYAAAMWAAADFgAAA14AAAAMAAABDAAAAgwAAAMMAAABXgAAACUAAAAlAAAAJQAAACUAAABeAAAARAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAA14AAAAlAAAAJQAAACUAAAAlAAAAXgAAAEQAAANEAAACWwAAA1sAAAFbAAABWwAAAF4AAAAWAAAAFgAAARYAAAMWAAABJQAAACUAAAAlAAAAJQAAAF4AAABEAAABRAAAAjEAAAAxAAAAMQAAAFsAAAMWAAADFgAAABYAAAIWAAABXgAAACUAAAAlAAAAJQAAACUAAABeAAAARAAAAEQAAAFbAAAAWwAAAlsAAAFbAAACXgAAABYAAAMWAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACFgAAAV4AAABeAAAAXgAAAF4AAAAWAAACFgAAABYAAAMWAAADFgAAARYAAAMWAAACFgAAA14AAABEAAAARAAAAw== - 0,1: - ind: 0,1 - tiles: RAAAAxYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAEWAAADFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADFgAAAhYAAANeAAAATgAAAF4AAABOAAAAXgAAAFsAAAJbAAACWwAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAxYAAAEWAAACXgAAAF4AAABeAAAATgAAAF4AAABeAAAAWwAAA1sAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAEQAAAFEAAADRAAAAUQAAAJEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABRAAAA04AAABEAAACRAAAAEQAAAFEAAABRAAAA08AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAkQAAAFOAAAARAAAAkQAAANEAAACRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABEAAAAXgAAAEQAAAJEAAADRAAAAUQAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAABRAAAAEQAAAFEAAAARAAAAxYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAARAAAAkQAAAFEAAAARAAAAEQAAAEWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAEQAAAFEAAADRAAAAUQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAARAAAAE4AAABEAAABRAAAAkQAAAFEAAABRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANOAAAARAAAAUQAAANEAAABRAAAAUQAAAJPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAEQAAABEAAABRAAAABYAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAFgAAABYAAAAWAAAAXgAAAA== - -2,1: - ind: -2,1 - tiles: XgAAAF4AAABeAAAAWwAAA1sAAAFeAAAAXgAAAEcAAABeAAAAFgAAAxYAAANbAAACJgAAACYAAAAmAAAAJgAAAF4AAABbAAACXgAAAFsAAANbAAACXgAAAF4AAABEAAAAXgAAABYAAAIWAAABWwAAAyYAAAAmAAAAJgAAACYAAABbAAADXgAAAF4AAABeAAAAWwAAAV4AAABeAAAARAAAAF4AAABeAAAAXgAAAFsAAAAmAAAAJgAAACYAAAAmAAAAWwAAAl4AAABeAAAAXgAAAF4AAABbAAABXgAAAEQAAABEAAAAXgAAABYAAAFbAAABJgAAACYAAAAmAAAAJgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAE8AAABbAAADWwAAASYAAAAmAAAAJgAAACYAAABeAAAATgAAAF4AAABeAAAATgAAAE4AAABeAAAARAAAAEcAAABeAAAAWwAAAVsAAAEmAAAAJgAAACYAAAAmAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAABEAAAAXgAAAFsAAAJbAAACWwAAAVsAAANbAAACWwAAAl4AAABOAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAABYAAAAWAAACTwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAIWAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAAAFgAAAxYAAAJeAAAAXgAAAF4AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAXgAAAF4AAABeAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADWwAAAV4AAABPAAAAXgAAABYAAAFeAAAAXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAjEAAABEAAABRAAAA0QAAABEAAACRAAAAUQAAAMWAAAADAAAAAwAAAIMAAABXgAAAF4AAABeAAAATwAAABYAAABbAAACRAAAAkQAAAJEAAABRAAAAUQAAAFEAAADFgAAAwwAAAMMAAACDAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -2,0: - ind: -2,0 - tiles: OAAAATgAAAE4AAACOAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADEAAAAxAAAAMQAAADgAAABEAAACRAAAADgAAABaAAACXgAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAATwAAAF4AAAA4AAABRAAAAEQAAAM4AAACWgAAAl4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAOAAAA0QAAANEAAACOAAAAloAAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAADgAAAIWAAABFgAAAzgAAANaAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAE4AAAAWgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOAAAAjgAAAE4AAABOAAAAV4AAABeAAAAXgAAAFEAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAFoAAAJaAAAAWgAAAVoAAAJeAAAAXgAAAFEAAABCAAAAUQAAAV4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAWgAAA14AAABeAAAAXgAAAF4AAABCAAAAJwAAAEIAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWgAAAl4AAABeAAAAXgAAAF4AAABeAAAAQgAAACcAAABCAAAAXgAAAF4AAABeAAAAWwAAA1sAAAJbAAADWwAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAABCAAAAUQAAAF4AAABeAAAAXgAAAFsAAAImAAAAJgAAAFsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAJgAAACYAAABbAAABRwAAAEQAAABEAAAAXgAAAF4AAABeAAAARwAAAEQAAABeAAAARAAAAF4AAABeAAAAWwAAAiYAAAAmAAAAWwAAAV4AAABEAAAARwAAAEQAAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAADWwAAAVsAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAAAWAAADFgAAA1sAAABbAAABWwAAAlsAAABbAAADXgAAAFsAAANeAAAAXgAAAF4AAABbAAACXgAAAF4AAABeAAAAFgAAARYAAABbAAADJgAAACYAAAAmAAAAJgAAAA== - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAABeAAAARAAAAUQAAAFEAAAAFgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAXgAAAEQAAAJEAAACRAAAABYAAAFeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAF4AAABEAAABRAAAAUQAAANeAAAAXgAAAE8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAABeAAAARAAAAEQAAANEAAADXgAAAEQAAABHAAAARAAAAl4AAABeAAAAXgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAXgAAAEQAAANEAAABRAAAAF4AAABEAAACRAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAEQAAANeAAAARwAAAEQAAAFHAAAAXgAAAF4AAABeAAAAXgAAACgAAAAoAAAAKAAAACgAAABeAAAARAAAAEQAAAJEAAABXgAAAEQAAAFEAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAA14AAABeAAAATgAAAF4AAABeAAAARAAAAUQAAAJEAAABRAAAAUQAAAJEAAACRAAAAk4AAABEAAAARAAAA0QAAANOAAAARAAAAEQAAAJEAAADRAAAAUQAAABEAAAARAAAAkQAAAJEAAADRAAAAUQAAAFOAAAARAAAA0QAAAFEAAABTgAAAEQAAAFEAAABRAAAAEQAAANEAAADRAAAAEQAAABEAAACRAAAAEQAAANEAAACTgAAAEQAAAJEAAAARAAAAU4AAABEAAAARAAAAUQAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAEQAAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAABYAAAExAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAATwAAAF4AAAAWAAACMQAAADEAAAAxAAAAWgAAAVoAAAJaAAABWgAAAloAAANeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAATEAAAAxAAAAMQAAAA== - -2,2: - ind: -2,2 - tiles: FgAAAxYAAAMWAAABRAAAAkQAAANEAAAAFgAAAgwAAAAMAAACDAAAA14AAABeAAAAXgAAAF4AAABPAAAALgAAACgAAAAoAAAAXgAAAEQAAAJEAAABRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAC4AAAAWAAABFgAAABYAAAFEAAADRAAAA0QAAAFeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAuAAAAFgAAAhYAAAEWAAADRAAAAEQAAABEAAABXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAALgAAABYAAAAWAAABFgAAA0QAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAoAAAAKAAAAF4AAABEAAACRAAAAl4AAABbAAAAWwAAAFsAAANbAAADWwAAAV4AAABeAAAATgAAAF4AAAAuAAAAFgAAABYAAAEWAAAARAAAAUQAAANeAAAAWwAAAlsAAABbAAACWwAAAlsAAAJPAAAAXgAAAF4AAABPAAAALgAAAEQAAABEAAACRAAAAEQAAAFEAAABXgAAAFsAAAFbAAACFgAAAhYAAAAWAAABXgAAAF4AAABeAAAAXgAAAC4AAABEAAAARAAAAUQAAANEAAAARAAAAV4AAABbAAABWwAAABYAAAMWAAACFgAAAF4AAABeAAAAXgAAAF4AAAAuAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAFsAAAIWAAACFgAAAxYAAANeAAAAXgAAAF4AAABeAAAALgAAAEQAAAJEAAACXgAAACgAAAAoAAAAXgAAAFsAAAFbAAADFgAAAhYAAAMWAAAAXgAAAE8AAABeAAAAXgAAAF4AAABEAAABRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAAxYAAABeAAAARAAAAUQAAAFOAAAARAAAAUQAAAFEAAADRAAAAEQAAAJEAAAARAAAAEQAAAJEAAADRAAAA0QAAAFEAAAATgAAAEQAAANEAAABTgAAAEQAAABEAAAARAAAAEQAAAFEAAABRAAAAUQAAAFEAAABRAAAA0QAAANEAAAARAAAAE4AAABEAAACRAAAAk4AAABEAAABRAAAA0QAAAFEAAACRAAAAEQAAAJEAAACRAAAAEQAAAJEAAADRAAAAEQAAABOAAAARAAAAkQAAAFeAAAAXgAAAFsAAAFbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -1,2: - ind: -1,2 - tiles: LgAAAC4AAAAuAAAALgAAAE4AAAAWAAACFgAAAhYAAAMWAAACFgAAARYAAAMWAAACFgAAAhYAAAFEAAAARAAAAS4AAAAuAAAALgAAAC4AAABeAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAIuAAAALgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAAkQAAANEAAADRAAAA0QAAAFEAAABXgAAAEQAAAFEAAAALgAAAC4AAABeAAAARAAAAEQAAAJEAAACRAAAA0QAAAJEAAADRAAAAUQAAAJEAAAARAAAAF4AAABEAAADRAAAA0QAAABeAAAAXgAAABYAAAMuAAAAFgAAAxYAAAAuAAAAFgAAAxYAAAJEAAACRAAAA0QAAAJeAAAARAAAA0QAAAEuAAAALgAAAF4AAAAWAAAALgAAABYAAAEWAAADLgAAAF4AAAAWAAADRAAAAUQAAAFEAAACXgAAAEQAAABEAAACLgAAAC4AAABeAAAAFgAAAy4AAAAWAAAAFgAAAi4AAAAWAAACFgAAA0QAAANEAAAARAAAAl4AAABEAAACRAAAAy4AAAAuAAAAFgAAA0QAAAJEAAADRAAAAEQAAAFEAAADRAAAAkQAAAFEAAABRAAAAUQAAANeAAAARAAAA0QAAAIuAAAALgAAAF4AAABEAAACRAAAAUQAAANEAAADRAAAAkQAAAJEAAACRAAAAkQAAAJEAAACXgAAAE4AAABOAAAALgAAAC4AAABeAAAAFgAAAC4AAAAWAAABFgAAAy4AAAAWAAACXgAAACgAAAAoAAAAKAAAAF4AAABEAAAARAAAAy4AAAAuAAAAXgAAABYAAAEuAAAAFgAAAxYAAAMuAAAAFgAAAl4AAAAoAAAAKAAAACgAAABeAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAAkQAAAJEAAAARAAAAkQAAAJEAAABRAAAAUQAAAJEAAAATgAAAEQAAANEAAACRAAAA0QAAAFEAAACRAAAA0QAAANEAAADRAAAAUQAAANEAAACRAAAAEQAAANEAAABRAAAA04AAABEAAABRAAAAEQAAAJEAAAARAAAA0QAAAFEAAACRAAAA0QAAAFEAAACRAAAAUQAAANEAAACRAAAAkQAAABOAAAARAAAA0QAAAFEAAAARAAAAUQAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAACgAAAAoAAABeAAAAXgAAAEQAAAJEAAAARAAAAV4AAABeAAAATgAAAA== - 0,2: - ind: 0,2 - tiles: RAAAA04AAABEAAACRAAAA0QAAAFEAAABRAAAAUQAAANEAAACRAAAAUQAAABEAAAARAAAAkQAAAFEAAADRAAAAEQAAAJOAAAARAAAAUQAAABEAAABRAAAA0QAAAFEAAAARAAAA0QAAANEAAABRAAAA0QAAANEAAACRAAAAkQAAANEAAABTgAAAEQAAAJEAAADRAAAAkQAAANEAAABRAAAA0QAAABEAAACRAAAAkQAAABEAAAARAAAAEQAAABEAAADRAAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACgAAAAoAAAATgAAAE4AAABOAAAAKAAAAEQAAAFeAAAAFgAAAE4AAABOAAAAFgAAAhYAAANOAAAAFgAAAF4AAABRAAABFgAAAlEAAANRAAABUQAAAlEAAAFEAAADXgAAABYAAAFOAAAATgAAABYAAAAWAAAATgAAABYAAANeAAAAUQAAA1EAAAJRAAADUQAAAFEAAANRAAADRAAAA14AAAAWAAADTgAAAE4AAAAWAAAAFgAAAU4AAAAWAAADXgAAAFEAAAJRAAADUQAAA1EAAANRAAAAUQAAAkQAAABeAAAAFgAAAk4AAABOAAAAFgAAARYAAAFOAAAATgAAAF4AAABRAAACUQAAA1EAAAFEAAADRAAAAkQAAANOAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAUQAAAlEAAAJRAAABRAAAAVEAAANRAAABRAAAAl4AAABOAAAATgAAAE4AAAAWAAABFgAAAxYAAAMWAAABXgAAAFEAAANRAAADUQAAA0QAAANRAAADUQAAA0QAAAFeAAAAXgAAADgAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAoAAAAWgAAAVoAAAFeAAAAWgAAACgAAABEAAAAXgAAAFEAAAFEAAACUQAAAVEAAANRAAADUQAAAF4AAABRAAACUQAAAlEAAABRAAACUQAAAVEAAANRAAABRAAAAV4AAABRAAADRAAAAUQAAABEAAABRAAAAEQAAABaAAABUQAAAVEAAANEAAACRAAAAEQAAAJEAAAARAAAA0QAAAFeAAAAUQAAAUQAAAJRAAACUQAAA1EAAAFRAAAAXgAAAFEAAAJRAAADUQAAA1EAAAFRAAAAUQAAAlEAAANEAAADXgAAAF4AAAA4AAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAAJEAAABRAAAAEQAAANeAAAAUQAAAVEAAANRAAACUQAAAVEAAABRAAAAFgAAAw== - -2,3: - ind: -2,3 - tiles: RAAAAkQAAAJeAAAAWwAAAFsAAABbAAABMQAAADEAAABeAAAAFgAAAlsAAABbAAAAFgAAAhYAAABbAAACWwAAAUQAAANEAAACXgAAAFsAAANbAAAAWwAAAzEAAAAxAAAAXgAAAFsAAAFbAAADWwAAAFsAAAJbAAABWwAAAVsAAAJEAAADXgAAAF4AAABbAAACWwAAAFsAAAIxAAAAMQAAAF4AAABbAAAAWwAAAVsAAAFbAAADWwAAAFsAAANbAAADRAAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAAJbAAABWwAAAlsAAANbAAADWwAAAkQAAABEAAABXgAAAFsAAABbAAADWwAAAVsAAANbAAADXgAAAFsAAANbAAADWwAAA1sAAANbAAAAWwAAAFsAAAFEAAACRAAAAF4AAABbAAADMQAAADEAAAAxAAAAWwAAAF4AAABbAAABWwAAAFsAAAFbAAABWwAAAFsAAAFbAAACRAAAAEQAAAFeAAAAWwAAAzEAAAAxAAAAMQAAAFsAAANOAAAAFgAAARYAAAEWAAAAFgAAARYAAAMWAAAAFgAAAUQAAANEAAADXgAAAFsAAAIxAAAAMQAAADEAAABbAAADTgAAABYAAAMWAAADFgAAARYAAAEWAAADFgAAARYAAANEAAABRAAAA14AAABbAAABMQAAADEAAAAxAAAAWwAAAl4AAAAWAAACFgAAARYAAAMWAAABXgAAABYAAAEWAAAARAAAAkQAAABeAAAAWwAAATEAAAAxAAAAMQAAAFsAAAFeAAAAFgAAAxYAAAIWAAABFgAAA14AAABeAAAAXgAAAEQAAAJEAAACXgAAABYAAAFbAAACWwAAAFsAAANbAAAAXgAAABYAAAMWAAAAFgAAARYAAABeAAAAFgAAARYAAANeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAABTgAAAF4AAABOAAAAXgAAAF4AAABeAAAAWwAAAFsAAAJbAAABWwAAA1sAAABeAAAAWwAAAFsAAAEWAAADFgAAA04AAABeAAAATgAAAF4AAABeAAAAXgAAAFsAAAFbAAADWwAAAlsAAANbAAACXgAAAF4AAABeAAAAFgAAARYAAAFOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABbAAADFgAAAxYAAAEWAAABWwAAAF4AAABbAAACWwAAABYAAAEWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAA== - -1,3: - ind: -1,3 - tiles: FgAAA14AAAAxAAAAMQAAAF4AAABbAAAAWwAAA1sAAANbAAADXgAAAEQAAAJEAAAARAAAAl4AAABRAAADUQAAA1sAAAExAAAAMQAAADEAAABeAAAAWwAAABYAAAMWAAABWwAAAl4AAABOAAAATgAAAE4AAABeAAAAUQAAAlEAAABbAAADXgAAAF4AAABeAAAAXgAAAFsAAAAWAAADFgAAAlsAAAFeAAAARAAAAkQAAABEAAADXgAAAFEAAAJRAAAAWwAAATEAAAAxAAAAMQAAAF4AAABbAAABWwAAAVsAAAJbAAAAXgAAAEQAAABEAAADRAAAAF4AAABeAAAATwAAAFsAAAFeAAAAMQAAADEAAABeAAAAWwAAAVsAAAJbAAACWwAAAl4AAABEAAACRAAAAkQAAAEWAAAAXgAAAF4AAABbAAACXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAARAAAAUQAAANEAAAAFgAAA14AAABeAAAAFgAAA04AAAAWAAACFgAAAxYAAAAWAAAAFgAAAhYAAAIWAAABTgAAAEQAAAJEAAACRAAAARYAAAJeAAAAXgAAABYAAABOAAAAFgAAAxYAAAAWAAAAFgAAAhYAAAEWAAAAFgAAAk4AAABEAAABRAAAAEQAAAMWAAACTwAAAF4AAAAWAAACXgAAABYAAAMWAAACFgAAABYAAAAWAAABFgAAAxYAAABeAAAARAAAAkQAAAJEAAACXgAAAF4AAABPAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAADRAAAAl4AAABRAAAAUQAAARYAAAMWAAADMQAAADEAAAAxAAAAFgAAABYAAAEWAAABFgAAA14AAABEAAABRAAAAEQAAAFeAAAAUQAAA1EAAAEWAAABFgAAAjEAAAAxAAAAMQAAABYAAAMWAAACFgAAARYAAABeAAAARAAAAkQAAAFEAAACXgAAAFEAAABeAAAAFgAAARYAAAAxAAAAMQAAADEAAAAWAAAAFgAAARYAAAMWAAABXgAAAEQAAANEAAABRAAAAl4AAABRAAABUQAAAxYAAAAWAAABMQAAABsAAAAxAAAAFgAAARYAAAEWAAABFgAAA14AAABEAAACRAAAAkQAAAJaAAADUQAAA1EAAAEWAAADFgAAAjEAAAAxAAAAMQAAABYAAAEWAAACFgAAABYAAANeAAAARAAAA0QAAAFEAAACWgAAA1EAAAFRAAADFgAAABYAAAExAAAAMQAAADEAAAAWAAABFgAAAhYAAAIWAAABXgAAAEQAAANEAAADRAAAA1oAAAFRAAADUQAAAA== - 1,-1: - ind: 1,-1 - tiles: FgAAARYAAAMWAAAAXgAAABYAAAAWAAADXgAAAEQAAANEAAADRAAAAU4AAABEAAADRAAAAEQAAABEAAABRAAAAhYAAAEWAAABFgAAABYAAAMWAAACFgAAA14AAABEAAABRAAAAUQAAANeAAAAXgAAAF4AAAAWAAACXgAAABYAAANEAAAARAAAAEQAAAJEAAADRAAAA0QAAAJeAAAARAAAAEQAAANEAAAAXgAAABYAAAAWAAAAFgAAA14AAABeAAAARAAAAUQAAAFEAAACRAAAA0QAAAJEAAADXgAAAEQAAAFEAAACRAAAAF4AAAAWAAAAFgAAABYAAABeAAAAXgAAAEQAAAJEAAAARAAAAkQAAAFEAAAARAAAAl4AAABEAAAARAAAA0QAAANeAAAAFgAAAhYAAAIWAAAAXgAAAF4AAABEAAADRAAAAkQAAABEAAADRAAAAUQAAANeAAAARAAAAUQAAAJEAAADXgAAABYAAAMWAAACFgAAAxYAAABeAAAAFgAAABYAAAMWAAACFgAAAxYAAAEWAAABXgAAAEQAAAJEAAABRAAAAl4AAAAWAAAAFgAAABYAAAAWAAABXgAAABYAAAMWAAAAFgAAAhYAAAMWAAABFgAAAhYAAAFEAAAARAAAA0QAAANeAAAAWwAAA1sAAAFbAAADFgAAAl4AAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAFsAAAFbAAADWwAAAhYAAABeAAAARAAAAkQAAANEAAADRAAAAUQAAAFEAAABRAAAA0QAAAJEAAAARAAAAV4AAABbAAADWwAAAVsAAAEWAAABXgAAAEQAAAJEAAADRAAAA0QAAABEAAABRAAAA0QAAABEAAADRAAAAkQAAAJeAAAAFgAAAhYAAAMWAAAAFgAAAF4AAABEAAADRAAAAUQAAAFEAAACRAAAA0QAAANEAAADRAAAAEQAAANEAAAAXgAAABYAAAAWAAACFgAAAxYAAAFeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAFgAAA14AAABeAAAAXgAAABYAAAAWAAAAFgAAARYAAAAWAAADFgAAAxYAAANEAAACRAAAA0QAAAFEAAABRAAAAUQAAAJEAAAARAAAAEQAAAAWAAACFgAAAxYAAAIWAAAAFgAAAhYAAAEWAAADRAAAAkQAAANEAAADRAAAAUQAAABEAAADRAAAAEQAAANEAAADFgAAAhYAAAMrAAAAFgAAARYAAAMWAAABFgAAAkQAAANEAAAARAAAAUQAAANEAAACRAAAAkQAAABEAAACRAAAAg== - -1,-2: - ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF0AAABeAAAAUQAAA14AAABeAAAAUQAAA14AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABRAAABUQAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAA14AAABeAAAAUQAAAF4AAABbAAACWwAAAlsAAABeAAAAFgAAAlsAAANEAAABRAAAAUQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAA1sAAANbAAACXgAAAFsAAANbAAAARAAAAUQAAAJEAAABTwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAJbAAABWwAAA1sAAAFbAAAAWwAAAkQAAANEAAABRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABWwAAAVsAAANeAAAAWwAAAlsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAlsAAABbAAADXgAAAFsAAABbAAACXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABEAAADRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAARAAAA0QAAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAACFgAAAV4AAABeAAAAXgAAAEQAAABeAAAAXgAAACIAAAAiAAAAIgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAARYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAiAAAAIgAAACIAAABeAAAAXgAAAF4AAABeAAAAFgAAAl4AAAAWAAABXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAIgAAACIAAAAiAAAAXgAAAF4AAABeAAAAFgAAARYAAAIWAAAAFgAAAg== - 0,-2: - ind: 0,-2 - tiles: AAAAAAAAAABdAAAAXQAAAF4AAAAWAAADFgAAAxYAAAMWAAABFgAAAhYAAAFeAAAAFgAAAxYAAAAWAAACFgAAAwAAAAAAAAAAXQAAAF0AAABeAAAAFgAAAhYAAAMWAAAAFgAAARYAAAAWAAAAXgAAABYAAAMWAAAAFgAAABYAAAMAAAAAAAAAAF0AAABdAAAAXgAAABYAAAIWAAABFgAAABYAAAAWAAABFgAAAF4AAAAWAAADFgAAAxYAAAIWAAACXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAJbAAABWwAAAlsAAANeAAAAFgAAABYAAAAWAAACFgAAARYAAAAWAAADFgAAARYAAAAWAAACFgAAAxYAAAJbAAAAWwAAA1sAAAJbAAABXgAAABYAAAMWAAABFgAAAxYAAAAWAAAAFgAAABYAAAMWAAABFgAAAhYAAAAWAAAAWwAAAlsAAAEWAAADWwAAAU4AAAAWAAACRAAAA0QAAAJEAAACRAAAAUQAAAFEAAACRAAAAEQAAABEAAACFgAAA1sAAAFbAAAAWwAAAlsAAANeAAAAFgAAAUQAAANEAAAARAAAAEQAAANEAAABRAAAAUQAAAFEAAADRAAAAxYAAABbAAABWwAAAFsAAANbAAACXgAAABYAAAJEAAACRAAAAUQAAANEAAAARAAAAUQAAABEAAAARAAAAkQAAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABRAAAAkQAAANEAAABRAAAAEQAAANEAAADRAAAAUQAAABEAAAAFgAAAEQAAAJEAAADRAAAAkQAAAJOAAAAFgAAAUQAAANEAAADRAAAA0QAAAJEAAABRAAAA0QAAAFEAAABRAAAAxYAAABEAAADRAAAA0QAAABEAAADTgAAABYAAAIWAAABFgAAAxYAAAIWAAADFgAAABYAAAMWAAABFgAAAhYAAAMWAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAAAWAAADFgAAAxYAAAAWAAADFgAAARYAAABeAAAAXgAAABYAAAAWAAAAFgAAAxYAAAAWAAACFgAAAhYAAAJeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAAhYAAAMWAAACFgAAABYAAAEWAAAAXgAAABYAAAMWAAAAFgAAAV4AAAAWAAABFgAAAF4AAABeAAAAFgAAARYAAAAWAAAAFgAAAxYAAAAWAAABFgAAAxYAAAAWAAADFgAAABYAAABeAAAAFgAAAg== - 1,-2: - ind: 1,-2 - tiles: FgAAAxYAAAAWAAAAFgAAAxYAAAMWAAAAXgAAAFsAAABbAAAAWwAAAF4AAABeAAAAWwAAAFsAAABeAAAATgAAABYAAAMWAAADFgAAARYAAAEWAAAAFgAAAl4AAABbAAAAWwAAAFsAAABeAAAAWwAAAV4AAABbAAACXgAAAE4AAAAWAAADFgAAABYAAAEWAAAAFgAAAxYAAANeAAAAXgAAAFsAAABeAAAAXgAAAF4AAABbAAADXgAAAF4AAABOAAAAXgAAAF4AAAAWAAABFgAAARYAAAJeAAAAXgAAAFsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAWAAACFgAAABYAAAEWAAACFgAAAl4AAABbAAAAXgAAAFsAAABeAAAAFgAAAhYAAAIWAAADXgAAAF4AAAAWAAAAFgAAAhYAAAIWAAAAFgAAARYAAABeAAAAXgAAAFsAAABbAAAAXgAAABYAAAEWAAABFgAAABYAAAFeAAAAXgAAAF4AAAAWAAAAFgAAAxYAAAAWAAAAXgAAAF4AAABeAAAAWwAAAE8AAAAWAAACFgAAARYAAAIWAAABXgAAABYAAAFeAAAAFgAAAxYAAAEWAAAAFgAAAV4AAABeAAAATwAAAF4AAABeAAAAFgAAARYAAAEWAAABFgAAAF4AAAAWAAADXgAAAF4AAABeAAAATwAAAF4AAABeAAAARAAAAkQAAAJEAAABXgAAAEQAAABOAAAARAAAAxYAAABeAAAAFgAAAV4AAABPAAAATwAAAF4AAABeAAAAFgAAAEQAAAJEAAACRAAAA14AAABEAAABTgAAAEQAAAAWAAAARAAAABYAAAFPAAAAXgAAAF4AAABeAAAATwAAAEQAAAJEAAACRAAAAkQAAAJeAAAARAAAAU4AAABEAAABFgAAA14AAAAWAAAAXgAAAE8AAABeAAAATwAAAF4AAABEAAADRAAAAEQAAAFEAAADTgAAAE4AAABOAAAATgAAABYAAAJeAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANEAAADRAAAAk4AAABOAAAATgAAAE4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAkQAAAFeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAxYAAAFeAAAALwAAAC8AAAAvAAAARAAAA0QAAAFEAAACTgAAAEQAAAJEAAACRAAAAEQAAABEAAABFgAAARYAAAMWAAAAXgAAAC8AAAAvAAAALwAAAEQAAAFEAAADRAAAAk4AAABEAAADRAAAAUQAAAFEAAADRAAAAA== - -2,-2: - ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAEQAAAFOAAAARAAAAEQAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAAFEAAADRAAAA0QAAAFEAAADTgAAAEQAAAFEAAADRAAAA0QAAABEAAADRAAAAUQAAANEAAABRAAAAkQAAANEAAADRAAAAUQAAABEAAADRAAAAk4AAABEAAAARAAAAUQAAAJEAAABRAAAAkQAAANEAAADRAAAAUQAAANEAAAARAAAA0QAAAFEAAACRAAAAkQAAABOAAAARAAAAEQAAAFEAAAARAAAAUQAAAFEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAKAAAACgAAAAoAAAAKAAAAF4AAABEAAADRAAAA0QAAABeAAAARAAAA0QAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANEAAADXgAAAEQAAANEAAADXgAAAEcAAABeAAAAXgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAXgAAAEQAAANEAAAARAAAA14AAABEAAADRAAAAUQAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAF4AAABEAAAARAAAAUQAAAJEAAADRAAAAl4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAABeAAAARAAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAXgAAAEQAAANEAAADRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAF4AAABEAAABRAAAA0QAAAJPAAAAXgAAAF4AAABOAAAAXgAAAA== - -3,1: - ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAABeAAAAMAAAAF4AAAAwAAAAMAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAXgAAAF4AAABeAAAAMAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAF4AAABeAAAAMAAAAF4AAAAwAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAQAAAEEAAAAXgAAACUAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAlAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAF4AAAAOAAAAXgAAAA4AAABeAAAAJQAAAFoAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABeAAAADgAAAF4AAAAOAAAAXgAAACUAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAXgAAACUAAAAlAAAAJQAAACUAAAAlAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAF4AAAAlAAAAJQAAACUAAAAlAAAAJQAAACUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABeAAAAJQAAACUAAAAlAAAAJQAAACUAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAXgAAACUAAAAlAAAAXgAAABYAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAABeAAAAFgAAAkQAAAJEAAAARAAAAUQAAAJEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAEQAAAJEAAAARAAAAA== - -3,-1: - ind: -3,-1 - tiles: XQAAAF4AAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAXQAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAUQAAAFdAAAAXgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAFEAAAAXQAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAARAAAA0QAAAJEAAACRAAAAkQAAAJEAAADRAAAAV0AAABeAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAEQAAANEAAABRAAAAUQAAABEAAADRAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAAARAAAAEQAAAJEAAAARAAAAUQAAABEAAABXgAAAE4AAABOAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -3,-2: - ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAABYAAAMWAAAAFgAAAV4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAAAWAAAAFgAAABYAAABeAAAAXQAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAFgAAABYAAAAWAAADXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAABYAAAAWAAABFgAAA14AAABdAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAAAWAAACRAAAAUQAAABEAAAARAAAAUQAAAFEAAADRAAAA0QAAANEAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAFgAAAUQAAAJEAAADRAAAAUQAAAFEAAADRAAAAEQAAAJEAAADRAAAAgAAAAAAAAAAAAAAAAAAAABdAAAAXgAAABYAAANEAAADRAAAAEQAAANEAAADRAAAAkQAAAFEAAAARAAAAkQAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA0QAAAFEAAABXQAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAF4AAABeAAAARAAAAUQAAANEAAAARAAAAl0AAABeAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAXQAAAF4AAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,0: - ind: -3,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAWgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABHAAAAXgAAAF4AAABEAAACRAAAAl4AAABeAAAAXgAAAF4AAABaAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAARAAAAl4AAABeAAAAWgAAAwAAAAAKAAAACgAAAAQAAAAEAAABBAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFoAAAIAAAAAAAAAAAoAAAAKAAAABAAAAgQAAAEEAAACBAAAAgQAAAIEAAABXgAAAF4AAABeAAAARwAAAF4AAABaAAADAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAABAAAAgQAAAEEAAACBAAAAV4AAABeAAAAXgAAAEQAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAEAAAABAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAEAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAABeAAAAXgAAAF4AAABeAAAARwAAAEQAAABeAAAAWgAAA10AAABdAAAAXQAAAF0AAABdAAAAXgAAAAoAAAAKAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAABeAAAARAAAAEcAAABeAAAARAAAAF4AAABeAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAXgAAAEcAAABEAAAARAAAAEQAAABHAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAADWwAAAQ== - -4,0: - ind: -4,0 - tiles: XQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,-2: - ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,-1: - ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - -5,0: - ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAACYAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,-1: - ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAA== - -3,2: - ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABOAAAATgAAAEQAAAJEAAAAFgAAAhYAAAIWAAAAFgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAA14AAAAoAAAAKAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAE4AAABOAAAARAAAAkQAAAIWAAADFgAAARYAAAAWAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAADFgAAAxYAAAAWAAABFgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABEAAAARAAAAxYAAAMWAAADFgAAAxYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAARAAAAEQAAAJeAAAAKAAAACgAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAEQAAAFEAAABFgAAAhYAAAIWAAAAFgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAAFEAAAARAAAAEQAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAE4AAABOAAAARAAAAkQAAAJEAAACRAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAATgAAAE4AAABEAAAARAAAAUQAAANeAAAARAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAAAXgAAAEQAAANEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAAl4AAABEAAADRAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAABRAAAAUQAAAFeAAAARAAAAEQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAEQAAANeAAAAXgAAAEQAAAFEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANEAAAARAAAAl4AAABEAAACRAAAAg== - -3,3: - ind: -3,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAJEAAABRAAAA0QAAAJEAAAARAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAAUQAAANeAAAARAAAA0QAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAABEAAABXgAAAF4AAABEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAARAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAABRAAAAUQAAAJEAAAARAAAA0QAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAASgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAMoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAigAAAAoAAAAKAAAACgAAAAoAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAEQAAAIoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADRAAAAUQAAAFEAAABRAAAAkQAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAhYAAAMWAAAAXgAAAE8AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAADgAAAFeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAOAAAAF4AAABeAAAAOAAAATgAAAFeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAKAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -1,4: - ind: -1,4 - tiles: FgAAAjEAAAAxAAAAMQAAADEAAAAxAAAAFgAAABYAAAIWAAADXgAAAEQAAAJEAAADRAAAAl4AAABRAAABUQAAABYAAAMxAAAAMQAAADEAAAAxAAAAMQAAABYAAAAWAAAAFgAAAF4AAABEAAABRAAAAEQAAAJeAAAATwAAAF4AAAAWAAAAMQAAADEAAAAxAAAAMQAAADEAAAAWAAAAFgAAARYAAAFeAAAARAAAAEQAAANEAAADXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAATgAAABYAAAJeAAAAFgAAAhYAAAIWAAADFgAAAxYAAAEWAAADFgAAAV4AAAAWAAADFgAAARYAAANeAAAAXgAAAF4AAAAWAAADXgAAABYAAAEWAAACFgAAARYAAAAWAAABFgAAAxYAAANeAAAAFgAAARYAAAEWAAAATwAAAF4AAABeAAAAFgAAAl4AAAAWAAABFgAAAxYAAAMWAAAAFgAAARYAAAMWAAADXgAAABYAAAAWAAACFgAAAl4AAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAAAWAAACFgAAAxYAAAAWAAABFgAAA14AAAAWAAADFgAAARYAAABeAAAAMAAAAF4AAAAWAAAAFgAAABYAAAEWAAAAFgAAARYAAAEWAAACFgAAARYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAwAAAAFgAAARYAAAIWAAABXgAAABYAAAIWAAABFgAAAhYAAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAAAwAAAAMAAAABYAAAEWAAACFgAAAl4AAAAWAAAAFgAAAxYAAAMWAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAMAAAAF4AAAAWAAADFgAAARYAAANeAAAAFgAAAxYAAAMWAAAAFgAAARYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAMWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAF4AAABeAAAAXgAAAF4AAAAKAAAACgAAAAoAAAAKAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAACgAAAAQAAAIKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAACgAAAA== - -2,4: - ind: -2,4 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAAXgAAABYAAAAWAAAAFgAAARYAAAMWAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAAAWAAACFgAAAxYAAAIWAAABFgAAARYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAFeAAAAXgAAABYAAAMWAAACMQAAAF4AAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAIWAAAAFgAAA14AAABeAAAAFgAAAjEAAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAABFgAAAxYAAAFeAAAAFgAAAhYAAAExAAAAMQAAADEAAAAxAAAAXgAAAF4AAABeAAAARwAAAF4AAAAWAAABFgAAAxYAAAAWAAAAXgAAABYAAAAWAAADMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAFgAAAxYAAAIWAAACFgAAAV4AAAAWAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAFgAAAV4AAABeAAAAFgAAAxYAAAA6AAAAXgAAADMAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAFgAAABYAAAAWAAACFgAAARYAAAIWAAADOgAAAF4AAAAzAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAABFgAAAhYAAAAWAAACFgAAAzoAAABeAAAAMwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAAAFgAAAxYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAA14AAAAWAAAAFgAAABYAAAEWAAAABAAAAQQAAAEEAAABBAAAAgQAAAIEAAACBAAAAQQAAAIEAAABXgAAABYAAAMWAAADFgAAAxYAAAAWAAABFgAAAwQAAAJeAAAACgAAAAoAAAAKAAAACgAAAAoAAAAEAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAQAAAAEAAACBAAAAQQAAAAKAAAACgAAAAoAAAAKAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAA== - -3,4: - ind: -3,4 - tiles: AAAAAAAAAABdAAAAAAAAAAAAAAAKAAAAXgAAADgAAAI4AAABXgAAAF4AAAA4AAACXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAACgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAoAAAAEAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAKAAAACgAAAAoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAAAAAAAAAAAAAXgAAAAAAAAAAAAAACgAAAAoAAAAKAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAKAAAACgAAAAoAAAAAAAAACgAAAAoAAAAKAAAACgAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAAAxAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAEAAAABAAAAAQAAAJeAAAARAAAA0cAAABeAAAAMQAAAAoAAAAKAAAABAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAKAAAACgAAAAQAAAIEAAACBAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAABAAAAl4AAAA6AAAACgAAAAoAAAAEAAAABAAAAQQAAAAEAAACBAAAAAQAAAAEAAACBAAAAgoAAAAKAAAACgAAAAoAAABeAAAAOgAAAAoAAAAKAAAABAAAAQQAAAEEAAACBAAAAgQAAAIEAAABBAAAAgQAAAIEAAABCgAAAAoAAAAKAAAAXgAAADoAAAAKAAAACgAAAAQAAAEEAAACBAAAAQQAAAEEAAAACgAAAAoAAAAEAAACBAAAAgQAAAAKAAAACgAAAF4AAABeAAAACgAAAAoAAAAEAAABBAAAAAQAAAAEAAABCgAAAAoAAAAKAAAACgAAAAQAAAAEAAAACgAAAAoAAAAKAAAABAAAAAoAAAAKAAAAXgAAAAQAAAAEAAACBAAAAgQAAAEKAAAACgAAAAoAAAAEAAABBAAAAQQAAAIKAAAACgAAAAoAAAAKAAAACgAAAAQAAAAEAAAABAAAAgQAAAEEAAACCgAAAAoAAAAKAAAACgAAAAQAAAEEAAABBAAAAV4AAAAKAAAACgAAAAoAAAAEAAACCgAAAAQAAAIEAAACBAAAAAoAAAAKAAAACgAAAAoAAAAEAAAABAAAAQQAAABeAAAAAAAAAA== - -2,5: - ind: -2,5 - tiles: AAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,5: - ind: -3,5 - tiles: AAAAAAoAAAAKAAAACgAAAAoAAAAEAAACBAAAAQQAAAEKAAAACgAAAAQAAAIEAAABBAAAAAQAAABeAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAABAAAAQQAAAIEAAABBAAAAQoAAAAKAAAABAAAAQQAAAIEAAACXgAAAAAAAAAAAAAACgAAAAoAAAAKAAAABAAAAgQAAAEEAAACBAAAAAQAAAIKAAAACgAAAAQAAAIEAAACBAAAAF4AAAAAAAAAAAAAAAAAAAAKAAAABAAAAgQAAAIEAAABBAAAAQQAAAAEAAABBAAAAAoAAAAEAAACBAAAAQQAAABeAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAABAAAAQQAAAIEAAABBAAAAAQAAAEEAAACBAAAAgQAAAIEAAAAXgAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAEAAAABAAAAgQAAAAEAAAABAAAAAQAAAEEAAAABAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAEAAAABAAAAAQAAAIKAAAABAAAAQQAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAABeAAAACgAAAAQAAAIEAAACXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,4: - ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,3: - ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,3: - ind: 0,3 - tiles: UQAAA14AAABRAAADUQAAAVEAAAJRAAAAUQAAAlEAAANaAAABUQAAAlEAAAJRAAADUQAAA1EAAAJRAAAAUQAAA1EAAABaAAADUQAAAVEAAANRAAADUQAAAlEAAAJRAAAAWgAAA1EAAAEWAAAAFgAAABYAAAAWAAAAFgAAAVEAAANRAAABXgAAAEQAAAJEAAAARAAAAkQAAAFEAAABRAAAAV4AAABRAAADFgAAAhYAAAIWAAAAFgAAARYAAANRAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAFEAAAFRAAACUQAAAFEAAAJRAAADUQAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAJRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAACUQAAAFEAAANRAAACUQAAAlEAAAJeAAAAUQAAAVEAAABRAAADXgAAAE8AAAAlAAAAJQAAACUAAABeAAAAUQAAAFEAAANRAAADUQAAAVEAAANRAAADXgAAAFEAAANRAAABUQAAAF4AAABeAAAAJQAAACUAAAAlAAAAWgAAAVEAAABRAAACUQAAAFEAAAJRAAADUQAAAF4AAABRAAABUQAAAFEAAANeAAAAXgAAACUAAAAlAAAAJQAAAF4AAABRAAACUQAAAlEAAANRAAACUQAAA1EAAANeAAAAXgAAAF4AAABeAAAAUQAAAV4AAAAlAAAAJQAAACUAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAABRAAABUQAAA1EAAAJeAAAAJQAAACUAAAAlAAAAXgAAABYAAAMWAAACFgAAAhYAAAIWAAABFgAAA14AAABRAAACUQAAA1EAAANeAAAAXgAAACUAAAAlAAAAJQAAAF4AAAAWAAABFgAAABYAAAEWAAACFgAAAhYAAANeAAAAUQAAAlEAAANRAAADUQAAA14AAABeAAAAWgAAAl4AAABeAAAAXgAAAF4AAABeAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAJaAAABUQAAAVEAAANRAAAAUQAAA1EAAAJRAAACUQAAAVEAAAFRAAABUQAAAFoAAAJRAAABUQAAAVEAAABRAAABXgAAAFEAAAFRAAAARAAAAkQAAABEAAACRAAAAEQAAAFEAAABRAAAAUQAAAE4AAAARAAAAUQAAANEAAACUQAAAFoAAAFRAAAAUQAAA1EAAABRAAACUQAAA1EAAAFRAAAAUQAAAVEAAAFRAAADWgAAAlEAAABRAAABUQAAAg== - 0,4: - ind: 0,4 - tiles: UQAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAFEAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAXgAAAF4AAABeAAAAXgAAAF4AAAArAAADUQAAAxYAAANRAAACUQAAA14AAABRAAACTgAAAEQAAAFEAAAARAAAAhYAAAJOAAAAXgAAAF4AAABeAAAAUQAAAVEAAABRAAACUQAAAFEAAANeAAAAUQAAA14AAAAVAAAAFQAAABUAAABEAAACXgAAAF4AAABeAAAAXgAAAFEAAABRAAACUQAAAFEAAANRAAABXgAAAFEAAANeAAAAFQAAABUAAAAVAAAARAAAAE4AAABeAAAAXgAAAF4AAABRAAABUQAAARYAAAJRAAABUQAAAl4AAABeAAAAXgAAAEQAAANEAAABRAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAACFgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADAAAABeAAAAXgAAAF4AAAAWAAACFgAAAhYAAAEWAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAIWAAAAFgAAAV4AAABeAAAAXgAAAAQAAAIEAAABBAAAAgQAAAIEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAQQAAAAEAAABBAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAAEAAABBAAAAAQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAABBAAAAgQAAAIEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAQQAAAEKAAAACgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAAKAAAACgAAAAoAAAAEAAABBAAAAQQAAAEEAAAABAAAAAQAAAAEAAACBAAAAgQAAAEEAAACBAAAAQQAAAIKAAAACgAAAAoAAAAKAAAABAAAAQQAAAAEAAABBAAAAgQAAAEEAAACBAAAAAQAAAAEAAACCgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAA== - 1,1: - ind: 1,1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAACFgAAAl4AAAAWAAABFgAAABYAAAMWAAAAFgAAA14AAAAWAAABFgAAARYAAAAWAAADFgAAAl4AAAAWAAABRAAAARYAAAJeAAAAFgAAARYAAAMWAAACFgAAAxYAAANeAAAAFgAAA0QAAAFEAAADRAAAABYAAAMWAAADFgAAA0QAAAMWAAADTgAAABYAAAEWAAAAFgAAARYAAAIWAAACXgAAABYAAAMWAAAAFgAAAhYAAAIWAAAAXgAAABYAAAFEAAACFgAAAV4AAAAWAAACFgAAAhYAAAEWAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAFgAAARYAAAEWAAADFgAAAxYAAAIWAAAAFgAAAhYAAABeAAAAMQAAADEAAABeAAAAFgAAAUQAAAAWAAACXgAAABYAAAMWAAABFgAAAhYAAAAWAAAAFgAAABYAAAAWAAAAXgAAADEAAAAxAAAAFgAAAhYAAABEAAADFgAAAF4AAAAWAAACFgAAAhYAAAEWAAADFgAAABYAAAEWAAAAFgAAAV4AAAAxAAAAMQAAAF4AAAAWAAACRAAAABYAAABeAAAAFgAAARYAAAAWAAAAFgAAAhYAAAJeAAAAXgAAABYAAAJeAAAAXgAAAF4AAABeAAAAFgAAAUQAAAIWAAACXgAAABYAAAMWAAABFgAAAxYAAAAWAAAAXgAAABYAAAMWAAADFgAAAhYAAAIWAAAATgAAABYAAABEAAABFgAAA04AAAAWAAADFgAAAxYAAAAWAAAAFgAAAF4AAAAWAAAAFgAAAhYAAAEWAAACFgAAAU4AAAAWAAAARAAAABYAAAJeAAAAFgAAAhYAAAAWAAACFgAAAxYAAAFeAAAAFgAAARYAAAFeAAAAXgAAAF4AAABeAAAAFgAAARYAAAAWAAABXgAAABYAAAFeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAAAWAAADFgAAA14AAAAvAAAALwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACXgAAABYAAAJOAAAAFgAAAxYAAAJeAAAALwAAAC8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAAAWAAABTgAAABYAAAMWAAACXgAAAC8AAAAvAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 1,0: - ind: 1,0 - tiles: FgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAADXgAAABYAAAMWAAAAFgAAAk4AAAAWAAAAXgAAABYAAABeAAAAFgAAARYAAABeAAAAFgAAAhYAAAEWAAAAFgAAAl4AAAAWAAADFgAAAxYAAANOAAAAFgAAA14AAAAWAAAAXgAAABYAAAMWAAADXgAAABYAAAIWAAAAFgAAARYAAANeAAAAFgAAAhYAAAMWAAAATgAAABYAAAFeAAAAFgAAA14AAAAWAAAAFgAAAl4AAAAWAAABFgAAAk8AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAANEAAABRAAAAkQAAAJEAAACRAAAAUQAAABEAAAARAAAAkQAAABEAAADXgAAAF4AAABPAAAARAAAA0QAAAFEAAAARAAAA0QAAANEAAACRAAAA0QAAAJEAAACRAAAAUQAAAJEAAACRAAAAV4AAABeAAAAXgAAAEQAAAJEAAABRAAAAxYAAABEAAACRAAAA0QAAAFEAAADRAAAAUQAAABEAAAARAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAFgAAAxYAAAEWAAACFgAAAxYAAAAWAAACXgAAAEQAAABEAAADRAAAAV4AAAAWAAAAFgAAAxYAAAEWAAADFgAAARYAAAAWAAAAFgAAABYAAAIWAAAAFgAAA04AAABEAAADRAAAAEQAAANeAAAAFgAAAhYAAAIWAAABFgAAAhYAAAEWAAACFgAAARYAAAAWAAAAFgAAARYAAANOAAAARAAAAkQAAAFEAAADXgAAABYAAAAWAAADFgAAABYAAAEWAAAAFgAAASgAAAAoAAAAFgAAAxYAAAEWAAAAXgAAAEQAAABEAAAARAAAAV4AAAAWAAAAFgAAAxYAAAAWAAAAFgAAAxYAAAAWAAABFgAAAhYAAAIWAAADFgAAAU4AAABEAAADRAAAAEQAAABeAAAAFgAAABYAAAIWAAACFgAAARYAAAMWAAAAFgAAARYAAAAWAAADFgAAABYAAAMWAAACRAAAAkQAAANEAAAAXgAAABYAAAEWAAAAFgAAAxYAAAMWAAADFgAAAhYAAAIWAAAAFgAAAxYAAAIWAAABXgAAAE4AAABeAAAATgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAA== - 2,1: - ind: 2,1 - tiles: FgAAAhYAAAJeAAAAFgAAABYAAAIWAAACFgAAAxYAAANeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAATgAAABYAAAIWAAADXgAAABYAAAEWAAACFgAAAhYAAAEWAAACXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAAAWAAAAFgAAAk4AAABbAAADWwAAAFsAAANbAAAAWwAAA14AAABOAAAATgAAAE4AAABOAAAAFgAAABYAAAEWAAACFgAAAxYAAANeAAAAFgAAAFsAAAJbAAACWwAAAFsAAAFeAAAAFgAAAhYAAAEWAAADTgAAABYAAAAWAAABFgAAAxYAAAMWAAABXgAAAFsAAAJbAAADWwAAAFsAAANbAAACXgAAABYAAAIWAAABFgAAAE4AAAAWAAADFgAAABYAAAIWAAABRAAAAF4AAABbAAABWwAAAVsAAANbAAADWwAAAl4AAAAWAAABFgAAAhYAAABOAAAAFgAAABYAAAAWAAADFgAAA0QAAAJeAAAAWwAAA1sAAAFbAAACWwAAAFsAAAJeAAAAFgAAAxYAAAAWAAADTgAAAE4AAAAWAAAATgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAJeAAAAXgAAABYAAAIWAAADFgAAAE4AAABOAAAAFgAAA04AAAAWAAAAXgAAABYAAAAWAAADXgAAAFsAAABbAAADFgAAA14AAAAWAAAAFgAAABYAAAFOAAAAFgAAARYAAAEWAAADFgAAAhYAAAAWAAABFgAAAF4AAABbAAAAWwAAAlsAAAJeAAAAFgAAARYAAAAWAAADTgAAAE4AAABOAAAATgAAABYAAAFeAAAAFgAAARYAAAJeAAAAFgAAAhYAAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 2,0: - ind: 2,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAV4AAAAWAAABFgAAAxYAAAAWAAADXgAAABYAAAJRAAADUQAAAVEAAABRAAADUQAAAU4AAABeAAAAFgAAAhYAAANeAAAAFgAAARYAAAAWAAABFgAAAF4AAABRAAABUQAAAFEAAANRAAAAUQAAA1EAAANOAAAAXgAAABYAAAEWAAAAXgAAABYAAAEWAAAAFgAAABYAAABeAAAAUQAAAlEAAABRAAAAUQAAAFEAAANRAAABTgAAAF4AAABeAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAACgAAAAWAAADKAAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAABEAAAARAAAAkQAAANEAAAARAAAAE4AAAAWAAAAFgAAARYAAANeAAAATgAAAE4AAABOAAAARAAAA0QAAAFEAAACRAAAAUQAAAJEAAADRAAAA0QAAAFeAAAAFgAAABYAAAMWAAABXgAAAE4AAABOAAAATgAAAEQAAANEAAADRAAAAEQAAAFEAAABRAAAA0QAAAJEAAACTgAAABYAAAEWAAABFgAAAl4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAABYAAAAWAAAAJQAAABYAAAFeAAAAFgAAABYAAAFeAAAAFgAAAhYAAAAWAAACFgAAAxYAAAEWAAADFgAAAl4AAAAlAAAAJQAAACUAAAAWAAABXgAAABYAAAEWAAAAXgAAABYAAAEWAAACFgAAARYAAAMWAAAAFgAAARYAAAFeAAAAFgAAAxYAAAMlAAAAFgAAAV4AAABeAAAAXgAAAF4AAAAWAAABFgAAABYAAAIWAAAAFgAAARYAAAAWAAAAXgAAABYAAAEWAAABJQAAABYAAAFeAAAAOgAAADoAAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAAAlAAAAJQAAACUAAAAWAAABTgAAABYAAAMWAAAAXgAAABYAAAIWAAACXgAAABYAAAEWAAAAXgAAABYAAANeAAAAFgAAARYAAAMlAAAAFgAAAF4AAAAWAAADFgAAA14AAAAWAAABFgAAAV4AAAAWAAADFgAAA14AAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAFeAAAAFgAAARYAAAJeAAAAFgAAAw== - 2,-1: - ind: 2,-1 - tiles: RAAAAUQAAANEAAAATgAAAFEAAAFRAAADUQAAAlEAAABRAAABUQAAAFEAAANRAAACUQAAA1EAAAFRAAACUQAAAhYAAAEWAAADFgAAAF4AAABRAAABUQAAA1EAAAFeAAAAUQAAAVEAAAJRAAABUQAAAlEAAAJRAAAAUQAAAlEAAAFPAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAFEAAAFRAAABUQAAAFEAAAFRAAADXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAFgAAA0QAAABEAAADRAAAA0QAAAFEAAABRAAAAEQAAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAJEAAABRAAAAUQAAANEAAAARAAAAUQAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAF4AAAAWAAADRAAAA0QAAABEAAAARAAAAEQAAANEAAACRAAAA04AAABeAAAAXgAAAF4AAABEAAAARAAAA14AAABeAAAAFgAAAEQAAANEAAABRAAAAF4AAABeAAAAXgAAABYAAABOAAAAXgAAAF4AAABEAAAARAAAAkQAAABEAAAAXgAAABYAAAFEAAABRAAAAEQAAANeAAAAWwAAA1sAAANbAAAAXgAAAF4AAABeAAAARAAAAl4AAABEAAAARAAAA14AAAAWAAAARAAAAEQAAABEAAACXgAAAFsAAAJbAAABWwAAAk4AAABeAAAAXgAAAEQAAANEAAADRAAAA0QAAANeAAAAFgAAAEQAAABEAAAARAAAAF4AAABbAAAAWwAAAlsAAANeAAAATwAAAF4AAABeAAAAXgAAAEQAAABeAAAAXgAAABYAAAJEAAABRAAAAEQAAABeAAAAWwAAAlsAAANbAAACFgAAARYAAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAACXgAAAF4AAABeAAAAFgAAAEQAAAJEAAACRAAAAUQAAANEAAADRAAAAkQAAAJEAAAATgAAAEQAAAJEAAABRAAAA0QAAABEAAAARAAAAUQAAAJEAAAARAAAAEQAAABEAAABRAAAAUQAAABEAAACRAAAAk4AAABEAAACRAAAA0QAAANEAAAARAAAA0QAAABEAAAARAAAA0QAAAJEAAADRAAAA0QAAAJEAAAARAAAAkQAAABOAAAARAAAA0QAAABEAAAARAAAAEQAAABEAAADRAAAAg== - 1,2: - ind: 1,2 - tiles: RAAAAEQAAANEAAADRAAAA0QAAANOAAAARAAAA0QAAABEAAADRAAAAUQAAAFEAAADRAAAAEQAAABEAAAARAAAAkQAAANEAAADRAAAAUQAAABEAAABTgAAAEQAAAFEAAAARAAAAUQAAAFEAAAARAAAAkQAAANEAAADRAAAAkQAAABEAAACRAAAAkQAAANEAAACRAAAAU4AAABEAAAARAAAAkQAAABEAAABRAAAAkQAAAFEAAACRAAAAkQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAABRAAABUQAAAlEAAAFRAAACFgAAA1EAAANeAAAARAAAA0QAAANEAAABRAAAA14AAABeAAAARAAAAEQAAAFEAAAAUQAAAlEAAANRAAAAUQAAAlEAAAFRAAABTwAAAEQAAAJEAAADRAAAAEQAAAFPAAAAXgAAAEQAAAJEAAACRAAAAlEAAAJRAAADUQAAAFEAAAJRAAAAUQAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAACUQAAAFEAAAFRAAACUQAAAFEAAANeAAAATgAAAE4AAABOAAAATgAAAF4AAABRAAACUQAAAVEAAABeAAAARAAAAEQAAANEAAADUQAAA1EAAANRAAABXgAAAE4AAABRAAAAUQAAA04AAABeAAAAUQAAAFEAAANRAAAAXgAAAEQAAANEAAAARAAAAFEAAANRAAADUQAAA14AAABOAAAAUQAAAFEAAANOAAAAXgAAACgAAAAoAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWgAAAF4AAABeAAAATgAAAFEAAABRAAADFgAAAV4AAABRAAAAUQAAAFEAAANRAAACUQAAAVEAAAFRAAACUQAAAVEAAANRAAADUQAAAVEAAAJRAAADUQAAAlEAAABRAAAARAAAAEQAAABEAAABRAAAAUQAAAFEAAADRAAAA0QAAAFRAAABUQAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAABRAAADRAAAAVEAAANRAAACUQAAA1EAAAFRAAACUQAAAFEAAANRAAADUQAAAFEAAAFRAAAAUQAAAFEAAAFeAAAAWgAAAjgAAABaAAACXgAAAF4AAABaAAADWgAAA1oAAABeAAAAXgAAAFEAAABRAAACUQAAA1EAAAFeAAAAXgAAAFEAAANEAAACUQAAAV4AAAAWAAACUQAAAFEAAAFRAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 1,3: - ind: 1,3 - tiles: WgAAAlEAAANEAAACUQAAAV4AAABEAAACUQAAAFEAAAJRAAACRAAAA14AAAA4AAABOAAAAjgAAAA4AAAAXgAAAFoAAABRAAACRAAAAFEAAABeAAAAFgAAAFEAAAFRAAACUQAAAEQAAAE4AAADWgAAAloAAABaAAACWgAAA14AAABeAAAAUQAAAUQAAANRAAAAXgAAAEQAAABRAAACUQAAA1EAAANEAAAAOAAAAjoAAAA6AAAAOgAAADoAAABeAAAAXgAAAFEAAABEAAACUQAAAF4AAAAWAAABRAAAAUQAAAJEAAADRAAAAl4AAAA6AAAAOgAAADoAAAA6AAAAXgAAAF4AAABRAAAARAAAA1EAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAA0QAAAFRAAACXgAAAEQAAABEAAABRAAAA0QAAAFeAAAAFgAAAxYAAABeAAAATgAAAE4AAABeAAAAUQAAAVEAAANEAAACUQAAAEQAAAJEAAADRAAAAkQAAAFEAAAATgAAABYAAAIWAAABXgAAAF4AAABeAAAAXgAAAF4AAABRAAABRAAAAFEAAABeAAAARAAAAEQAAABEAAAARAAAAV4AAAAWAAACFgAAAl4AAABOAAAATgAAAF4AAABeAAAAWgAAADgAAAJaAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAFEAAADUQAAAV4AAABEAAABRAAAA0QAAAMWAAACFgAAABYAAABeAAAAXgAAAA8AAAAPAAAAXgAAAFEAAAJRAAACRAAAAVEAAAJEAAACRAAAA0QAAANEAAADFgAAABYAAAAWAAAAXgAAAF4AAABeAAAADwAAAF4AAABeAAAAUQAAAUQAAABRAAADXgAAAEQAAANEAAADRAAAARYAAAMWAAAAFgAAAV4AAABeAAAADwAAAA8AAABeAAAAXgAAAFEAAANEAAADUQAAA14AAAAWAAADRAAAAUQAAAIWAAACFgAAAhYAAANeAAAAXgAAAF4AAABeAAAAXgAAAFEAAABRAAADRAAAAlEAAABeAAAAXgAAABYAAANeAAAAXgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAAJRAAACFgAAAxYAAAAWAAACFgAAAV4AAABbAAACWwAAAVsAAANeAAAAXgAAAF4AAABeAAAAUQAAAFEAAAFRAAABUQAAAV4AAAAWAAAAFgAAABYAAAJeAAAAWwAAAlsAAAFbAAABXgAAAF4AAABeAAAAXgAAAA== - 1,4: - ind: 1,4 - tiles: XgAAAFEAAAFRAAAAUQAAAl4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFEAAACRAAAA14AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAANeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAACBAAAAgQAAAEEAAACBAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAQQAAAAEAAACBAAAAgQAAAEEAAACBAAAAAQAAAEEAAACBAAAAQQAAAAEAAAABAAAAAQAAAEEAAAABAAAAQQAAAIEAAABBAAAAQQAAAEKAAAABAAAAgQAAAIEAAAABAAAAgQAAAEKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAQAAAEKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,2: - ind: 2,2 - tiles: RAAAAUQAAABEAAACRAAAA04AAABEAAAARAAAAkQAAAJEAAADRAAAAkQAAANEAAABRAAAAkQAAAJEAAADRAAAAkQAAABEAAACRAAAA0QAAABOAAAARAAAAUQAAANEAAADRAAAA0QAAANEAAAARAAAAEQAAAJEAAABRAAAAEQAAANEAAAARAAAAEQAAAJEAAABTgAAAEQAAANEAAADRAAAA0QAAAFEAAACRAAAAkQAAABEAAACRAAAA0QAAAJEAAAAFgAAAxYAAAMWAAADFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXgAAABYAAANeAAAATwAAABYAAAEWAAADXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF4AAAAWAAADXgAAAF4AAAAWAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABeAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABbAAACWwAAATEAAAAxAAAAMQAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAAFsAAAAxAAAAMQAAADEAAABeAAAAXgAAAFEAAAJRAAAAUQAAAVEAAABRAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFbAAACMQAAADEAAAAxAAAAXgAAAE4AAABRAAABUQAAA1EAAABRAAABUQAAAl4AAABeAAAATgAAAF4AAABbAAABWwAAA1sAAANbAAADWwAAAV4AAAAWAAAAUQAAA1EAAAFRAAABUQAAAlEAAAJeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFbAAADWwAAAF4AAABeAAAATgAAAFEAAABRAAAAUQAAAFEAAANRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAABUQAAAFEAAAFRAAACUQAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAJeAAAAUQAAAV4AAABeAAAAXgAAAEcAAABeAAAAXgAAAEcAAABeAAAARAAAAl4AAABeAAAAXgAAAA== - 3,-1: - ind: 3,-1 - tiles: UQAAA14AAAAWAAAAUQAAAFEAAAFRAAACUQAAA1EAAAIWAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAFgAAAlEAAAFeAAAAFgAAARYAAAIWAAABFgAAARYAAAMWAAACFgAAAl4AAABOAAAAXgAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAADFgAAARYAAAIWAAADXgAAABYAAAAWAAADFgAAABYAAABeAAAARAAAAEQAAABEAAABRAAAAEQAAAFEAAAARAAAAkQAAABEAAACRAAAAU4AAABEAAACRAAAAUQAAAFEAAACTgAAAEQAAAFEAAADRAAAAEQAAAFEAAACRAAAA0QAAAFEAAACRAAAAkQAAABOAAAARAAAAkQAAAFEAAABRAAAAU4AAABEAAABRAAAAkQAAABEAAABRAAAA0QAAABEAAACRAAAAEQAAAFEAAABTgAAAEQAAAFEAAABRAAAAUQAAAJOAAAARAAAA14AAABeAAAAFgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAA14AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAANbAAAAWwAAAVsAAAFbAAABWwAAAF4AAABEAAAARAAAAUQAAAJeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAFgAAARYAAABbAAAAWwAAA1sAAAJeAAAARAAAAUQAAABEAAACXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAABYAAAIWAAAAWwAAAVsAAABbAAADXgAAAEQAAABEAAABRAAAAl4AAAAWAAADFgAAARYAAAAWAAABFgAAAF4AAABbAAACWwAAAVsAAAJbAAADWwAAA14AAABEAAADRAAAAkQAAAJeAAAAFgAAABYAAAAWAAAAFgAAAxYAAANeAAAAXgAAAF4AAAAWAAACXgAAAF4AAABeAAAARAAAAEQAAABEAAAAXgAAABYAAAMWAAABFgAAAhYAAAEWAAABXgAAAEQAAABEAAADRAAAAUQAAABEAAABRAAAAkQAAAFEAAAARAAAAV4AAAAWAAACFgAAARYAAAAWAAABFgAAA14AAABEAAABRAAAAkQAAANEAAABRAAAAEQAAANEAAAARAAAA0QAAABeAAAAFgAAAxYAAAIWAAADFgAAAxYAAABeAAAARAAAAEQAAAFEAAAARAAAAUQAAAFEAAACRAAAAUQAAAJEAAADXgAAABYAAAAWAAAAFgAAAhYAAAEWAAADXgAAAA== - 3,0: - ind: 3,0 - tiles: XgAAAF4AAAAWAAABFgAAAV4AAABeAAAARAAAA0QAAAFEAAACXgAAAF4AAABeAAAAFgAAAl4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAFgAAARYAAAAWAAADXgAAAF4AAABOAAAAXgAAACgAAAAoAAAAXgAAAF4AAABEAAACRAAAA0QAAAFeAAAAXgAAABYAAAIWAAAAFgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAl4AAABeAAAATQAAAk0AAANNAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAABYAAAJeAAAAXgAAAE0AAAJNAAADTQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAAWAAAAFgAAAxYAAAFNAAACTQAAA00AAAIoAAAARAAAAkQAAANEAAABXgAAABYAAAIWAAADXgAAABYAAAIWAAAAFgAAAl4AAAAWAAACTQAAAE0AAABNAAACKAAAAEQAAAJEAAAARAAAAV4AAAAWAAAAFgAAAF4AAAAoAAAARAAAARYAAAFeAAAAFgAAAU0AAAFNAAADTQAAA14AAABeAAAARAAAAF4AAABeAAAAFgAAAEQAAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAAJeAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAADFgAAAhYAAAEWAAABFgAAAl4AAABeAAAATgAAAE4AAABOAAAAXgAAAEQAAABEAAABRAAAAEQAAAFEAAADRAAAAxYAAAEWAAADFgAAARYAAANeAAAAXgAAAEQAAANEAAADRAAAAU4AAABEAAAARAAAA0QAAAFEAAACRAAAA0QAAAAWAAADFgAAAxYAAAMWAAAAXgAAAF4AAABEAAACRAAAA0QAAAFeAAAARAAAAEQAAAFEAAACRAAAAUQAAANEAAACXgAAAF4AAABOAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAABTgAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAABYAAANeAAAAFgAAARYAAANeAAAAXgAAAEQAAAFEAAAARAAAA14AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAAAWAAAAXgAAABYAAAMWAAADXgAAAF4AAABEAAAARAAAA0QAAAFeAAAADgAAAA4AAAAlAAAAJQAAACUAAABeAAAAFgAAA14AAAAWAAADFgAAAF4AAABeAAAARAAAAUQAAAJEAAABXgAAAF4AAABeAAAAJQAAACUAAAAlAAAAXgAAAA== - 3,1: - ind: 3,1 - tiles: XgAAAF4AAABOAAAAXgAAAF4AAABeAAAARAAAAUQAAABEAAABXgAAAA4AAAAOAAAAJQAAACUAAAAlAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAEQAAAJEAAACRAAAA14AAABeAAAAXgAAACUAAAAlAAAAJQAAAF4AAAAWAAACTgAAAE4AAABOAAAAXgAAAF4AAABEAAACRAAAAUQAAANeAAAADgAAAA4AAAAlAAAAJQAAACUAAAAlAAAAFgAAAE4AAABOAAAATgAAAF4AAABeAAAARAAAA0QAAAFEAAADXgAAAF4AAABeAAAAXgAAACUAAAAlAAAAXgAAABYAAAFOAAAATgAAAE4AAABeAAAAFgAAAEQAAANEAAAARAAAAhYAAANeAAAARAAAAl4AAABPAAAAXgAAAF4AAAAWAAABTgAAAE4AAABOAAAAXgAAABYAAAFEAAACRAAAA0QAAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAEWAAADFgAAAl4AAAAWAAADRAAAAUQAAABEAAABXgAAAF4AAABEAAAAXgAAAF4AAABeAAAARAAAAxYAAAEWAAAAFgAAARYAAAFeAAAAFgAAA0QAAAFEAAADRAAAA14AAABHAAAAXgAAAEQAAABeAAAAXgAAAF4AAAAWAAABFgAAAxYAAAAWAAACXgAAABYAAANEAAAARAAAAkQAAAFPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAAF4AAAAWAAABOAAAARYAAANeAAAAWwAAAlsAAAMlAAAAJQAAACUAAAAlAAAAXgAAAF4AAABEAAAARAAAAUQAAAJeAAAAFgAAAzgAAAAWAAACXgAAAFsAAANbAAACTgAAAF4AAAAlAAAAJQAAAF4AAABeAAAARAAAA0QAAABEAAADTgAAADgAAAM4AAADFgAAAl4AAABbAAADWwAAASUAAABeAAAAWgAAAVoAAAFeAAAAXgAAAEQAAAJEAAADRAAAAV4AAAAWAAACOAAAAhYAAAFeAAAAFgAAARYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAEQAAAFeAAAAFgAAADgAAAE4AAACRAAAAxYAAAMWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAAAXgAAABYAAAE4AAABFgAAAV4AAAAWAAACFgAAAw== - 3,2: - ind: 3,2 - tiles: RAAAAkQAAABEAAACRAAAA0QAAANOAAAARAAAAkQAAANEAAADTgAAADgAAAA4AAACFgAAAF4AAABbAAADWwAAAEQAAANEAAAARAAAA0QAAAJEAAACTgAAAEQAAANEAAACRAAAAV4AAAAWAAADOAAAAxYAAAJeAAAAWwAAAFsAAAJEAAAARAAAA0QAAAJEAAADRAAAAk4AAABEAAACRAAAAEQAAANeAAAAFgAAAjgAAAEWAAADXgAAAFsAAAFbAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAAhYAAAIWAAACFgAAABYAAAAWAAACXgAAAEQAAAJEAAADRAAAAF4AAABEAAACRAAAAEQAAAJeAAAAFgAAAhYAAAFEAAACRAAAAEQAAANEAAAAFgAAAV4AAABEAAADRAAAA0QAAABeAAAARAAAA0QAAABEAAABXgAAAF4AAABeAAAARAAAAUQAAAFEAAAARAAAAhYAAABeAAAARAAAAEQAAAFEAAABRAAAAUQAAAJEAAADRAAAA0QAAAJEAAACRAAAAEQAAANEAAAARAAAA0QAAAMWAAADFgAAAkQAAABEAAAARAAAAUQAAANEAAABRAAAA0QAAABEAAAARAAAAUQAAAMWAAAAFgAAAxYAAAEWAAAAFgAAA14AAABEAAADRAAAAUQAAANEAAACRAAAAkQAAAFEAAACRAAAA0QAAANEAAABXgAAAF4AAAAWAAADXgAAAF4AAABeAAAAFgAAAxYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAFgAAAE4AAABOAAAAXgAAABYAAAMWAAACFgAAAhYAAAEWAAABFgAAAxYAAAMWAAABFgAAARYAAAIWAAADFgAAARYAAAIWAAACFgAAAV4AAAAWAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAAAWAAAATgAAAE4AAABeAAAAXgAAAE8AAABeAAAAWwAAA1sAAANbAAADWwAAAVsAAANbAAAAWwAAAV4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFbAAACJgAAACYAAAAmAAAAJgAAACYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABWwAAACYAAAAmAAAAJgAAACYAAAAmAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAA1sAAAImAAAAJgAAACYAAAAmAAAAJgAAAA== - 2,-2: - ind: 2,-2 - tiles: TgAAAF4AAAA7AAAAOwAAAF4AAABEAAABUQAAAUQAAANeAAAAXgAAADoAAAA6AAAAOgAAAF4AAABeAAAARAAAASwAAAAWAAAAOwAAADsAAAAWAAABRAAAAlEAAAFEAAADXgAAAF4AAAA6AAAAOgAAADoAAABeAAAAXgAAAEQAAAAsAAAAXgAAADsAAAA7AAAAXgAAAEQAAAFRAAABRAAAA14AAABeAAAAOgAAADoAAAA6AAAAXgAAAF4AAABEAAACTgAAAF4AAAA7AAAAOwAAAF4AAAA4AAAAWgAAAjgAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOAAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAFEAAANEAAAARAAAAEQAAANEAAACRAAAAEQAAAFEAAADRAAAAEQAAABaAAAAWgAAAFoAAAJaAAABXgAAAEQAAAFRAAABUQAAAFEAAABRAAACUQAAAlEAAABRAAADUQAAA1EAAAFRAAADWgAAAVoAAAFaAAACWgAAAF4AAABEAAAARAAAAUQAAAFEAAABRAAAAEQAAANEAAAARAAAAUQAAAFEAAADRAAAAl4AAABOAAAATgAAAE4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAARAAAAl4AAABEAAAAXgAAAEQAAABEAAACRAAAAUQAAAJEAAADRAAAAUQAAABEAAACFgAAAV4AAABEAAABRAAAAUQAAABeAAAAOAAAAzgAAAA4AAAARAAAAEQAAANEAAABRAAAA0QAAABEAAABRAAAAkQAAAFeAAAARAAAARYAAAJEAAAAXgAAADgAAAI4AAADOAAAA0QAAAJOAAAATgAAAE4AAABOAAAATgAAAEQAAANEAAAAXgAAAEQAAAIWAAAARAAAA14AAAA4AAADOAAAADgAAABEAAABRAAAA0QAAABEAAAARAAAAUQAAANEAAACRAAAAl4AAABEAAACRAAAAUQAAABeAAAARAAAAl4AAABEAAABRAAAA0QAAABEAAADRAAAAUQAAAFEAAADRAAAA0QAAAJeAAAAXgAAAEQAAAFeAAAAXgAAAEQAAABEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACgAAABEAAAAKAAAAF4AAABRAAAAUQAAAFEAAAJEAAABRAAAA0QAAANOAAAAUQAAA1EAAAFRAAAAUQAAAFEAAAJRAAACUQAAAVEAAAJRAAABUQAAAlEAAANRAAAARAAAA0QAAAFEAAACTgAAAFEAAABRAAADUQAAAlEAAABRAAAAUQAAAVEAAABRAAADUQAAAFEAAANRAAACUQAAAg== - 3,-2: - ind: 3,-2 - tiles: UQAAAkQAAAFeAAAATgAAAE4AAABOAAAARAAAAEQAAAFEAAADRAAAAxYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAFEAAABXgAAAE4AAABOAAAATgAAAEQAAABEAAABRAAAAEQAAABEAAABXgAAADoAAAA6AAAAOgAAAF4AAABRAAACRAAAAl4AAABOAAAATgAAAE4AAAAWAAABOgAAAEQAAAFEAAADRAAAAF4AAAA6AAAAOgAAADoAAABeAAAAWgAAATgAAABeAAAAXgAAABYAAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAANeAAAAXgAAADoAAABeAAAAXgAAAFEAAAJEAAADRAAAA0QAAABEAAABFgAAAl4AAABEAAACRAAAA0QAAAFEAAACXgAAADoAAAA6AAAAOgAAAF4AAABRAAADUQAAAVEAAABRAAABUQAAAkQAAABeAAAAOgAAADoAAABEAAABRAAAAk4AAAA6AAAAOgAAADoAAABeAAAARAAAAEQAAAFEAAAAKAAAAFEAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAygAAABRAAACRAAAAV4AAABOAAAATgAAAF4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABEAAACXgAAAEQAAAEoAAAAUQAAAkQAAAJOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABEAAADRAAAAEQAAABEAAACXgAAAE4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAFgAAAUQAAAFeAAAAXgAAABYAAAEWAAABFgAAARYAAAEWAAABFgAAAhYAAAJeAAAATgAAAF4AAABeAAAAXgAAABYAAAFEAAADXgAAAF4AAAAWAAADUQAAAVEAAANRAAACUQAAAlEAAAEWAAACXgAAAE4AAABeAAAAXgAAAF4AAAAWAAAARAAAAhYAAANeAAAAFgAAA1EAAAFRAAACUQAAAFEAAAJRAAAAFgAAAF4AAABOAAAAXgAAAF4AAABeAAAAFgAAAEQAAABRAAAAXgAAABYAAANRAAABRAAAAUQAAANEAAABUQAAAhYAAAFeAAAATgAAAF4AAABeAAAAXgAAABYAAAMWAAABUQAAA14AAAAWAAABUQAAAkQAAANEAAAARAAAAVEAAAIWAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAFgAAAQ== - 1,-3: - ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAXgAAABYAAANeAAAAFgAAAF4AAABEAAABRAAAAEQAAANEAAAARAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAF4AAAAWAAACXgAAABYAAAFeAAAARAAAAkQAAANEAAABRAAAAkQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABeAAAAFgAAAV4AAAAWAAACXgAAAF4AAABeAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAFgAAAgoAAAAKAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAABXgAAABYAAABeAAAAFgAAAxYAAAEWAAABXgAAABYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAANeAAAAFgAAABYAAAMWAAAAXgAAABYAAAEWAAACFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAFsAAABeAAAAXgAAAF4AAABeAAAAUQAAAU4AAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFsAAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAANeAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABRAAAAXgAAABYAAAFeAAAAXgAAAF4AAABdAAAAXQAAAAoAAABeAAAAWwAAAFsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAoAAAAKAAAAXgAAAFsAAABeAAAAWwAAAFsAAABeAAAAOgAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAAoAAAAKAAAACgAAAF4AAABeAAAAXgAAAFsAAABeAAAAXgAAADoAAAA6AAAAOgAAADoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAAAWwAAAF4AAAA6AAAAOgAAADoAAAA6AAAAFgAAAhYAAAEWAAACFgAAABYAAAEWAAABXgAAAF4AAABbAAAAWwAAAFsAAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 0,-3: - ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAxYAAAEWAAACFgAAARYAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAE4AAABOAAAAFgAAAxYAAAAWAAACFgAAAxYAAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAABFgAAABYAAAAWAAAAFgAAAl4AAABdAAAAXQAAAF0AAABeAAAAAAAAAF4AAABOAAAATgAAAE4AAAAWAAABFgAAARYAAAMWAAAAFgAAARYAAAFeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAMWAAABFgAAAhYAAAEWAAAAXgAAAAoAAAAKAAAACgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAACFgAAABYAAAIWAAACFgAAA14AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXQAAAF4AAAAWAAAAFgAAARYAAAAWAAADFgAAAhYAAAJeAAAAFgAAAxYAAAIWAAABFgAAAA== - 2,-3: - ind: 2,-3 - tiles: RAAAAl4AAABPAAAAUQAAA0QAAANEAAACRAAAAVEAAAFPAAAAXgAAAF4AAAAWAAAAFgAAAhYAAAFOAAAAFgAAAkQAAAFeAAAATwAAAFEAAAJRAAAAUQAAA1EAAAFRAAAATwAAAF4AAAAWAAAAXgAAAF4AAABeAAAATgAAAF4AAAAoAAAAXgAAAE8AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABeAAAAFgAAAl4AAAAWAAABXgAAAE4AAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAABYAAAJeAAAAFgAAAF4AAABeAAAAXgAAABYAAABOAAAAFgAAABYAAABeAAAAFgAAAl4AAAAWAAACFgAAAhYAAAEWAAAAXgAAABYAAAJeAAAAXgAAADsAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAAA7AAAAFgAAAU4AAAAWAAABFgAAAhYAAAMWAAABXgAAABYAAAEWAAAAFgAAAxYAAAFeAAAAXgAAAF4AAABeAAAAOwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADsAAAAWAAABFgAAABYAAAAWAAAAXgAAAEQAAABEAAABRAAAAV4AAABEAAACRAAAAUQAAAFEAAACFgAAAl4AAAA7AAAADAAAAgwAAAIMAAADDAAAABYAAAFEAAACUQAAAUQAAAJEAAADRAAAAkQAAANEAAACRAAAAxYAAANeAAAAOwAAABYAAAAWAAADFgAAABYAAABeAAAARAAAAFEAAANEAAABXgAAAEQAAAJEAAAARAAAAkQAAAIWAAADXgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJRAAADRAAAA14AAABeAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAOgAAADoAAABRAAACUQAAAV4AAABEAAAAUQAAAUQAAAJeAAAAFgAAAxYAAAAWAAAAFgAAAxYAAAJeAAAARAAAAzoAAAA6AAAAUQAAAVEAAABEAAAARAAAAlEAAABEAAABXgAAABYAAAMWAAACFgAAARYAAAEWAAAARAAAAkQAAAA6AAAAOgAAAFEAAANRAAADXgAAAEQAAABRAAABRAAAAV4AAAAWAAACFgAAAxYAAAAWAAABFgAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABEAAADUQAAA0QAAANeAAAAFgAAABYAAAMWAAADFgAAAxYAAANeAAAARAAAAA== - 3,-3: - ind: 3,-3 - tiles: FgAAABYAAANeAAAAXgAAAEcAAABeAAAAXgAAAEcAAAAWAAADXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAxYAAAMWAAADFgAAABYAAABeAAAAFgAAARYAAAIWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADsAAAA7AAAAOwAAADsAAAAWAAABFgAAAV4AAABPAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA7AAAAOwAAADsAAAA7AAAAFgAAAhYAAABeAAAAXgAAAE8AAABeAAAAXgAAADoAAAA6AAAAFgAAAhYAAAJeAAAAOwAAADsAAAA7AAAAOwAAABYAAAMWAAACXgAAAE4AAABEAAAARAAAAhYAAAEWAAABFgAAAxYAAAEWAAAAXgAAADsAAAA7AAAAOwAAAF4AAABeAAAAXgAAAF4AAABOAAAARAAAA04AAABeAAAAOgAAADoAAAA6AAAAFgAAA14AAAAWAAAAOwAAADsAAABeAAAAWwAAAlsAAAJeAAAATgAAAEQAAANOAAAAXgAAADoAAAA6AAAAOgAAABYAAAJeAAAAOwAAADsAAAA7AAAAFgAAAVsAAAFbAAAAXgAAAE4AAABEAAABTgAAAF4AAAA6AAAAOgAAADoAAAAWAAACXgAAADsAAAA7AAAAOwAAAF4AAABbAAAAWwAAAV4AAABOAAAARAAAAE4AAABeAAAAOgAAADoAAAA6AAAAFgAAAF4AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAXgAAADoAAAA6AAAAOgAAABYAAANPAAAARAAAA0QAAAFeAAAATgAAAE4AAABOAAAATgAAAE4AAABEAAADTgAAAF4AAAA6AAAAOgAAADoAAAAWAAACXgAAAFEAAANEAAACXgAAAE4AAABOAAAATgAAAE4AAABOAAAARAAAAk4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAABRAAAAEQAAAJEAAACRAAAAEQAAABEAAACRAAAAEQAAAJEAAABRAAAAl4AAABdAAAAXgAAAF0AAABeAAAAUQAAA0QAAABeAAAAFgAAAxYAAAEWAAABRAAAA0QAAANEAAAARAAAAkQAAAJeAAAAXQAAAF0AAABdAAAAXgAAAA== - 4,-1: - ind: 4,-1 - tiles: FgAAAhYAAABeAAAAOwAAADsAAAA7AAAATgAAAEQAAAJEAAACRAAAAEQAAANEAAABRAAAAEQAAAJEAAAARAAAAhYAAAAWAAADXgAAADsAAAA7AAAAOwAAAF4AAABEAAABRAAAAUQAAAFEAAADRAAAAkQAAAFEAAADRAAAAEQAAAJeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAARAAAAkQAAAJEAAABRAAAA0QAAABEAAABRAAAAEQAAABEAAADRAAAAUQAAAFEAAAARAAAAUQAAABEAAADXgAAAEQAAABEAAABRAAAAUQAAAJEAAACRAAAAUQAAANEAAABRAAAAEQAAAFEAAACRAAAAEQAAANEAAADRAAAAF4AAABeAAAARAAAA14AAABeAAAARAAAAUQAAABEAAACRAAAA0QAAAJEAAADRAAAA0QAAANEAAAARAAAAUQAAANeAAAARAAAAkQAAAFEAAAAXgAAAEQAAANEAAACRAAAAkQAAAFEAAACRAAAAUQAAANEAAABRAAAA0QAAABEAAABRAAAAkQAAAFEAAABRAAAAF4AAABEAAABRAAAAUQAAAFEAAAARAAAAkQAAANEAAADRAAAA0QAAAJEAAAARAAAAl4AAABEAAACRAAAAUQAAANeAAAARAAAAUQAAABEAAADRAAAA0QAAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAEQAAABEAAABRAAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABEAAABRAAAAkQAAANEAAAAXgAAAEQAAAFEAAAARAAAAkQAAAFeAAAAXgAAAEQAAABeAAAARAAAAF4AAABeAAAARAAAAkQAAANEAAAAXgAAAF4AAABEAAAARAAAAEQAAAJEAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAl4AAABeAAAARAAAAkQAAAJEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAAxYAAAJeAAAAXgAAAEQAAAJEAAABTgAAAE4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAFgAAABYAAAEWAAADXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAADFgAAABYAAABeAAAARAAAAkQAAAFOAAAATgAAAA== - -3,-3: - ind: -3,-3 - tiles: BAAAAQQAAAIKAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAADRAAAAUQAAAFEAAAARAAAA0QAAAFEAAAARAAAAAoAAAAKAAAACgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAAARAAAAUQAAAJEAAABXgAAAEQAAAEAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAABYAAANeAAAAFgAAAl4AAAAWAAADFgAAAhYAAAAWAAABFgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAAAWAAACFgAAARYAAANeAAAAFgAAAhYAAAIWAAADFgAAAxYAAAIAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAFgAAAxYAAAIWAAACXgAAABYAAAIWAAAAFgAAAxYAAANeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAABYAAAEWAAABFgAAA14AAAAWAAACFgAAABYAAAMWAAACXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAWAAACFgAAABYAAAEWAAADFgAAAhYAAAIWAAABFgAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAFgAAABYAAAMWAAACXgAAABYAAAIWAAAAFgAAABYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAABYAAAMWAAAAFgAAABYAAANeAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAAAWAAADFgAAARYAAAMWAAACXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAFgAAABYAAAMWAAAAFgAAAl4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAABYAAAAWAAADFgAAABYAAANeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAFgAAAhYAAAEWAAABXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAABYAAAMWAAACFgAAA14AAABdAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-3: - ind: -2,-3 - tiles: XgAAAF4AAABeAAAAXgAAAAQAAAIEAAABBAAAAQQAAAAEAAABBAAAAgoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAAQAAAAEAAACBAAAAgQAAAIEAAABBAAAAQQAAAEAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAIEAAABBAAAAAQAAAEEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAMWAAAAXgAAAAQAAAIEAAAABAAAAQoAAAAKAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAEWAAAAFgAAAl4AAAAEAAACBAAAAgoAAAAKAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAV4AAABeAAAABAAAAgoAAAAKAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAXgAAAAQAAAEKAAAACgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAAF4AAAAEAAAACgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAABeAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAAAAAABdAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAAAAAAAAXQAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAAAAAAF0AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAAAAAABdAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAAAAAAAAXQAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-4: - ind: -2,-4 - tiles: XgAAAF0AAABdAAAAXgAAAAoAAAAEAAAABAAAAgQAAAIEAAABBAAAAgoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXQAAAF4AAAAEAAAABAAAAAQAAAIEAAAABAAAAgoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAAEAAAABAAAAAQAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAACBAAAAgQAAAAEAAACBAAAAQoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAAQAAAIEAAABBAAAAgoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAACgAAAAoAAAAEAAACBAAAAAQAAAJeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAACCgAAAAoAAAAKAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,-4: - ind: -3,-4 - tiles: XgAAAAAAAABdAAAAAAAAAF4AAAAEAAABXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAl4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAADRAAAAkQAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABXgAAAEQAAAJEAAABRAAAAEQAAAFEAAADRAAAA0QAAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA0QAAANEAAACRAAAA0QAAAJEAAABRAAAAEQAAANeAAAARAAAAEQAAANEAAABRAAAAkQAAAFOAAAARAAAAkQAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAUQAAANEAAAATgAAAEQAAABEAAAARAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA0QAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAACwAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAkQAAABEAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAABeAAAAXgAAAF4AAABeAAAAFgAAAkQAAAJEAAABXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAXgAAAAQAAABeAAAAFgAAARYAAAAWAAACRAAAAEQAAAJEAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAACXgAAABYAAAAWAAABFgAAAUQAAABEAAABRAAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAF4AAAAWAAACFgAAAhYAAANEAAABRAAAAUQAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAFeAAAAFgAAAhYAAAEWAAADRAAAAEQAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -3,-5: - ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAFeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAABAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAAAF0AAAAAAAAACwAAAAQAAAJeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAABdAAAAAAAAAAsAAAAEAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -2,-5: - ind: -2,-5 - tiles: AAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAQAAAEKAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAABAAAAAQAAAIEAAABCgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAAAEAAAABAAAAgQAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAKAAAABAAAAQQAAAEEAAAABAAAAQoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAAAAAAAAAAAAAAAAACgAAAAQAAAEEAAAABAAAAAQAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAAAAAAAAAAAACgAAAAoAAAAEAAABBAAAAQQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAAAAAAAACgAAAAoAAAAEAAAABAAAAgQAAAIEAAABCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAAAAAAAoAAAAKAAAABAAAAAQAAAIEAAAABAAAAQoAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABdAAAAXgAAAAoAAAAKAAAABAAAAgQAAAEEAAAABAAAAgoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,-6: - ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-6: - ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,-5: - ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAA== - -4,-4: - ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAABAAAAAQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAQAAAEEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAQAAAAEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAACwAAAAsAAABeAAAABAAAAgQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAXgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAsAAAALAAAACwAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAABeAAAACgAAAAoAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAsAAAALAAAAXgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAKAAAACgAAAAQAAAIEAAABBAAAAQoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAACgAAAAoAAAAEAAABBAAAAgQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAKAAAABAAAAAQAAAEEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAKAAAACgAAAAQAAAAEAAACBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAACgAAAAQAAAEEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAoAAAAEAAACBAAAAQQAAAIEAAABBAAAAg== - -4,-3: - ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAQAAAIEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,-2: - ind: 4,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAANEAAAAXgAAABYAAAIWAAACFgAAAxYAAAIWAAACFgAAAF4AAABOAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAADXgAAAE4AAABeAAAARAAAA0QAAAJEAAADRAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAAEQAAAJeAAAAFgAAARYAAAIWAAADFgAAAEQAAAMWAAAAXgAAADgAAANeAAAATgAAAF4AAABEAAACRAAAAEQAAAFEAAABXgAAABYAAAEWAAAAFgAAAhYAAABEAAAAFgAAA14AAAA4AAABTwAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAARAAAAxYAAANeAAAAXgAAAEQAAAFEAAAARAAAAEQAAAJEAAADRAAAABYAAAIWAAABFgAAARYAAABeAAAAXgAAAE4AAABeAAAAXgAAABYAAAFOAAAATgAAAE4AAABOAAAATgAAAEQAAAMWAAACFgAAABYAAAEWAAABXgAAABYAAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABEAAACFgAAABYAAAIWAAACFgAAAV4AAAAWAAACTgAAAE4AAABOAAAATgAAAEQAAANEAAACFgAAAUQAAANEAAACRAAAARYAAAMWAAABFgAAABYAAANeAAAAFgAAA04AAAAWAAACFgAAABYAAAMWAAACFgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAFgAAARYAAAJeAAAAOwAAADsAAAA7AAAAXgAAABYAAABEAAACRAAAA14AAABEAAAARAAAA0QAAAJEAAADRAAAAQ== - 4,-3: - ind: 4,-3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABeAAAAWwAAAFsAAABbAAACMQAAADEAAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAWwAAA1sAAANbAAADWwAAAVsAAABbAAAAXgAAADEAAAAxAAAAMQAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAAA6AAAAOgAAADoAAABeAAAAOgAAADoAAAA6AAAAXgAAADoAAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAXgAAADoAAAA6AAAAOgAAAF4AAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADoAAAA6AAAAOgAAAF4AAAA6AAAAOgAAADoAAABeAAAAOgAAADoAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 4,0: - ind: 4,0 - tiles: XgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAABYAAAMWAAADFgAAAxYAAANOAAAARAAAAkQAAABEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAE8AAABPAAAATwAAABYAAAAWAAAAFgAAA14AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAARYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAAWAAAAFgAAABYAAAIWAAACFgAAAxYAAAAWAAABFgAAAhYAAABeAAAARAAAAUQAAABEAAAAXgAAAEQAAABEAAAAVQAAAFUAAABVAAAAVQAAAFUAAABVAAAAVQAAAFUAAAAaAAAAXgAAAF4AAABEAAACXgAAAEQAAAFEAAACRAAAAVUAAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAGgAAAF4AAABEAAADRAAAAF4AAABeAAAARAAAAkQAAAJVAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAABoAAABeAAAAXgAAAF4AAABEAAABXgAAAEQAAANEAAADVQAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAaAAAAXgAAAF4AAABEAAAARAAAAkQAAAFEAAAARAAAA1UAAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAGgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFVAAAAVQAAAFUAAABVAAAAVQAAAFUAAABVAAAAVQAAABoAAABeAAAAFgAAAVsAAABbAAAAWwAAAxYAAANEAAABRAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAWAAAATgAAAFsAAABbAAACWwAAAyYAAAAWAAADRAAAAUQAAANEAAABRAAAAEQAAANEAAADRAAAAUQAAANEAAAAFgAAAk4AAABbAAACWwAAAlsAAAAmAAAAFgAAA0QAAANEAAAARAAAAkQAAAFEAAABRAAAAUQAAANEAAAARAAAAhYAAAJOAAAAWwAAAFsAAANbAAADJgAAAA== - 4,1: - ind: 4,1 - tiles: FgAAAhYAAAMWAAADFgAAARYAAAEWAAACFgAAAxYAAAEWAAABFgAAAhYAAANeAAAAWwAAAVsAAAFbAAACWwAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAADAAAAAwAAAAMAAAAF4AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAlAAAAJQAAACUAAAAlAAAAJQAAAF4AAAAwAAAAMAAAADAAAABeAAAAXgAAAE4AAABeAAAAMQAAADEAAAAxAAAAWgAAAVUAAABaAAACVQAAAFoAAANeAAAAMAAAADAAAAAwAAAAXgAAAF4AAABOAAAAXgAAADEAAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAE4AAABeAAAAMQAAADEAAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAADEAAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAMQAAADEAAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAADEAAAAxAAAAMQAAABYAAAMWAAACFgAAA14AAAAWAAAAFgAAARYAAAJeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAAhYAAAJeAAAAFgAAARYAAAMWAAADXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAMWAAADFgAAAxYAAAMWAAAAFgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAABYAAAIxAAAAMQAAAF4AAAAWAAAAFgAAABYAAANeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAAAWAAACMQAAADEAAABeAAAAXgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAFgAAATEAAAAxAAAAXgAAABYAAAFbAAAAWwAAA1sAAABbAAADXgAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAA== - 2,-4: - ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAQAAAIKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAEAAACBAAAAAQAAAEEAAACCgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAAEAAACBAAAAgQAAAAEAAAABAAAAgQAAAIKAAAACgAAAF4AAAA4AAADOAAAAjgAAABeAAAAOAAAAgQAAAEEAAABBAAAAQQAAAIEAAAABAAAAQQAAAEEAAAABAAAAgQAAAFeAAAAOAAAAzgAAAM4AAABOAAAAjgAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADgAAAA4AAACKAAAAF4AAABPAAAATwAAAE8AAABPAAAATwAAAE8AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA4AAABOAAAA0QAAANeAAAATwAAAFEAAAFRAAABUQAAAVEAAANRAAADTwAAAE8AAABOAAAATgAAAE4AAABPAAAAOAAAAzgAAAJEAAACXgAAAE8AAABRAAACRAAAAUQAAAJEAAACUQAAAk8AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAAA4AAADRAAAAV4AAABPAAAAUQAAAUQAAAJPAAAARAAAAVEAAANPAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAA== - 1,-4: - ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABeAAAAXgAAAFEAAAFRAAACUQAAA1EAAABRAAAAUQAAAFEAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAXgAAAFEAAAJRAAAAUQAAA1EAAAJRAAAAUQAAAVEAAANRAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAF4AAABRAAABUQAAAlEAAAJRAAACUQAAA1EAAABRAAABUQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABeAAAAUQAAAVEAAAFRAAACUQAAA1EAAAJRAAAAUQAAAFEAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAFEAAAJRAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAF4AAAAWAAACXgAAABYAAANeAAAAXgAAAF4AAAAoAAAAKAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAABeAAAAFgAAAF4AAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAABYAAAJeAAAAFgAAA14AAABOAAAATgAAAE4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAWAAAAXgAAABYAAAJeAAAARAAAAUQAAAFEAAADRAAAA0QAAAMAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAFgAAAV4AAAAWAAACTgAAAEQAAAFEAAADRAAAAEQAAAJEAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAABYAAANeAAAAFgAAAF4AAABEAAAARAAAAUQAAANEAAAARAAAAw== - 3,-4: - ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAACBAAAAgQAAAIAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAEAAAAXgAAABEAAAARAAAAEQAAAF4AAAAEAAAABAAAAAQAAAAEAAACCgAAAAoAAAAKAAAACgAAAAoAAAAEAAAABAAAAF4AAAARAAAAEQAAABEAAABeAAAABAAAAAQAAAAEAAAABAAAAAoAAAAKAAAACgAAAAQAAAAEAAAABAAAAQQAAAJeAAAAEQAAABEAAAARAAAAXgAAAAQAAAEEAAABBAAAAQQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAABXgAAABUAAAAVAAAAFQAAAF4AAABeAAAAXgAAAF4AAABeAAAAOAAAAjgAAAE4AAABXgAAAF4AAAAEAAAABAAAAl4AAAAVAAAAFQAAABUAAABeAAAATgAAAF4AAAAlAAAAJQAAADgAAAA4AAACOAAAAzgAAANeAAAABAAAAQQAAABeAAAAFQAAABUAAAAVAAAATwAAAF4AAABeAAAAJQAAACUAAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAAAXgAAABUAAAAVAAAAFQAAAF4AAABeAAAAXgAAACUAAAAlAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAlAAAAJQAAADgAAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABHAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAJQAAAF4AAAA4AAABXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAFeAAAARwAAAF4AAABOAAAAXgAAAF4AAABRAAACXgAAAA== - 4,-4: - ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAQAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAEAAAABAAAAgQAAAIEAAAABAAAAQQAAAEKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAABAAAAgQAAAEEAAABBAAAAAQAAAEEAAACBAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAQAAAEEAAAABAAAAgQAAAIEAAABBAAAAAQAAAEKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAoAAAAKAAAACgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAFRAAADXgAAAFsAAAFeAAAAXgAAAF4AAAAKAAAACgAAAAoAAABeAAAAWwAAA1sAAAJbAAABXgAAAFEAAAJRAAAAUQAAAl4AAABeAAAAXgAAAFsAAABeAAAACgAAAAoAAAAKAAAAXgAAAFsAAAFbAAACXgAAAF4AAABRAAACUQAAAVEAAAJeAAAAWwAAAF4AAABeAAAAXgAAAF4AAAAKAAAACgAAAF4AAABbAAADXgAAAFsAAABeAAAAUQAAAFEAAAJRAAACXgAAAFsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAAoAAABeAAAAXgAAAFsAAABeAAAAXgAAAFEAAABeAAAAUQAAA14AAABbAAAAXgAAAF4AAABbAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAV4AAABeAAAAUQAAAl4AAABeAAAAWwAAAV4AAABeAAAAWwAAAVsAAANbAAACWwAAA1sAAABbAAAAWwAAAF4AAABeAAAAXgAAAF4AAABRAAACXgAAAF4AAABbAAADXgAAAFsAAAJeAAAAWwAAAF4AAABeAAAAWwAAAFsAAAFeAAAAWwAAAg== - 8,1: - ind: 8,1 - tiles: XgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAJgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,-5: - ind: 5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,-4: - ind: 5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABeAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAEAAACBAAAAQQAAAIEAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAQAAAEEAAAABAAAAAQAAAEEAAAABAAAAQQAAAIEAAACCgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAQAAAAEAAAABAAAAgQAAAEEAAAABAAAAgQAAAEEAAABBAAAAQQAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAEAAAABAAAAAQAAAIEAAABBAAAAQQAAAEEAAACBAAAAgQAAAIEAAACBAAAAQQAAAAKAAAACgAAAAoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAACgAAAAoAAAAKAAAAXgAAAF4AAABeAAAAXgAAAF4AAAApAAADKQAAACkAAAEpAAABKQAAASkAAAEpAAABKQAAAwoAAAAKAAAACgAAAF4AAABeAAAAXgAAAFsAAANeAAAAKQAAASkAAAIpAAAAKQAAASkAAAEpAAABKQAAASkAAAIKAAAACgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACkAAAIpAAABKQAAAykAAAIpAAACKQAAAikAAAEpAAACCgAAAF4AAABeAAAAWwAAAlsAAAFeAAAAWwAAA14AAAApAAACKQAAASkAAAEpAAACKQAAAikAAAIpAAADKQAAAF4AAABeAAAAWwAAAFsAAAFbAAAAXgAAAFsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAl4AAABbAAACXgAAAF4AAABbAAAAXgAAAF4AAABbAAAAWwAAAlsAAANbAAACWwAAAVsAAAFeAAAAWwAAAFsAAAJbAAADXgAAAFsAAAFeAAAAWwAAAl4AAABbAAABWwAAA1sAAAFbAAAAWwAAA14AAABeAAAAXgAAAA== - 5,-3: - ind: 5,-3 - tiles: WwAAAVsAAANbAAAAWwAAAFsAAABeAAAAXgAAAFsAAANbAAADWwAAAlsAAABeAAAAWwAAA1sAAABeAAAAXgAAAFsAAAFbAAADWwAAAVsAAABbAAABWwAAAF4AAABbAAACXgAAAF4AAABbAAACWwAAAVsAAANeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAXgAAAF4AAAA6AAAAXgAAAEQAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADoAAAA6AAAAOgAAAF4AAABeAAAAOgAAAF4AAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA6AAAAOgAAADoAAABeAAAAXgAAADoAAABeAAAARAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA6AAAAOgAAADoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA6AAAAOgAAADoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 5,-2: - ind: 5,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADgAAAM4AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA4AAAAOAAAAV4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAAXgAAAE4AAAAWAAAAXgAAABYAAANEAAABRAAAAkQAAAFEAAACRAAAAhYAAAFeAAAARAAAA0QAAAJHAAAARwAAAEQAAAFOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAEQAAANEAAAARAAAA0QAAAJEAAABTgAAAE4AAABeAAAAFgAAAEQAAANEAAABRAAAAUQAAANeAAAAFgAAAF4AAABEAAAARAAAAUQAAANEAAADRAAAABYAAAEWAAADXgAAABYAAAAWAAADFgAAAhYAAAEWAAACXgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAABYAAAIWAAADXgAAABYAAAAWAAABFgAAAF4AAABeAAAAOwAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAAA== - 5,-1: - ind: 5,-1 - tiles: XgAAABYAAAAWAAADXgAAABYAAAEWAAADFgAAAl4AAABeAAAAOwAAAF4AAAAWAAABOgAAADoAAAA6AAAAOgAAAF4AAAAWAAABFgAAAV4AAABeAAAAFgAAA14AAABeAAAAXgAAADsAAABeAAAAFgAAAU4AAABOAAAATgAAADoAAAAWAAADFgAAAhYAAAIWAAABFgAAABYAAAIWAAABXgAAAE4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAABYAAAEWAAAAFgAAARYAAAIWAAAAFgAAAF4AAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAF4AAAAWAAABFgAAABYAAAEWAAABFgAAAxYAAABeAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAABeAAAAFgAAARYAAAAWAAABFgAAABYAAAAWAAACXgAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOwAAADsAAAA7AAAAXgAAAF4AAABOAAAAXgAAAF4AAAAWAAAAFgAAAhYAAANeAAAAXgAAAF4AAABeAAAAXgAAADsAAAA7AAAAOwAAAF4AAAAWAAABFgAAABYAAABeAAAAFgAAARYAAAAWAAADXgAAABYAAAEWAAADFgAAAV4AAAA7AAAAOwAAADsAAABeAAAAFgAAAxYAAAMWAAACRAAAAkQAAAJEAAADRAAAAV4AAAAWAAABFgAAABYAAABOAAAAOwAAADsAAAA7AAAAXgAAABYAAAFeAAAAXgAAAEQAAAFEAAACRAAAAEQAAABOAAAAFgAAARYAAAIWAAABXgAAADsAAAA7AAAAOwAAAF4AAAAWAAADXgAAAF4AAABEAAABRAAAAEQAAANEAAADXgAAABYAAAAWAAADFgAAA04AAAA7AAAAOwAAADsAAABeAAAAFgAAAV4AAABeAAAARAAAA0QAAAFEAAABRAAAAl4AAAA+AAAAFgAAAz4AAABeAAAAOwAAADsAAAA7AAAAXgAAABYAAAEWAAADFgAAAE4AAABOAAAATgAAAEQAAABeAAAAXgAAAE4AAABeAAAAXgAAADsAAAA7AAAAOwAAAF4AAAAWAAADFgAAAhYAAAFeAAAAXgAAAF4AAABOAAAAXgAAABYAAAAWAAABFgAAAl4AAAA7AAAAOwAAADsAAABeAAAAXgAAAE4AAABeAAAATgAAAE4AAABOAAAARAAAA14AAAAWAAAAFgAAAF4AAABeAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAA== - 6,-4: - ind: 6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACwAAAF4AAAALAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAsAAABeAAAACwAAAAoAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAsAAAALAAAACwAAAAsAAAALAAAAXgAAAAsAAAAKAAAAAAAAAF0AAAAAAAAACgAAAAAAAAAAAAAACgAAAAoAAAALAAAAXgAAAF4AAABeAAAAXgAAAF4AAAALAAAACgAAAAAAAABdAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACwAAAF4AAAALAAAACwAAAAsAAAALAAAACwAAAAoAAAAAAAAAXQAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAsAAABeAAAACwAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAF0AAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAABeAAAAXgAAAF4AAAAKAAAABAAAAgQAAAAKAAAACgAAAAAAAABdAAAAAAAAAAQAAAEEAAABBAAAAQQAAAIEAAAAXgAAAF4AAABeAAAABAAAAgQAAAEEAAABCgAAAAoAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAoAAAAAAAAAAAAAAF0AAAAAAAAAFgAAARYAAAEWAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEKAAAAAAAAAAAAAABdAAAAAAAAABYAAAAWAAAAFgAAAl4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAAAKAAAACgAAAAAAAAAAAAAAXQAAAAAAAAAWAAABFgAAAxYAAAJeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAACgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAFgAAAhYAAAIWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAoAAAAAAAAAAAAAAAAAAABdAAAAAAAAABYAAAAWAAADFgAAA14AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAKAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAACgAAAAoAAAAKAAAAAAAAAF0AAAAAAAAAFgAAABYAAABeAAAAFgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAA== - 6,-5: - ind: 6,-5 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAF4AAAALAAAAAAAAAAAAAABdAAAAAAAAAA== - 6,-3: - ind: 6,-3 - tiles: FgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAABOAAAAXgAAAE4AAABOAAAATgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAAALAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAXQAAAAAAAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAACwAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAF0AAAAAAAAATgAAAF4AAABOAAAAXgAAAE4AAABOAAAAXgAAAAsAAAALAAAACwAAAAoAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAALAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAAALAAAACwAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAACwAAAAoAAAAKAAAAXgAAAAAAAABdAAAAAAAAAA== - 6,-2: - ind: 6,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAsAAAALAAAACwAAAAoAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAALAAAACgAAAAoAAAAKAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAACgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAoAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAKAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAACgAAAF4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0cAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAFgAAAUQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAANEAAADRAAAA0QAAAJEAAADRAAAA0QAAANEAAACRwAAAEQAAAFEAAADRAAAAUQAAABHAAAARAAAA0QAAAFEAAADXgAAAF4AAABEAAAARAAAAEQAAABHAAAARAAAAEQAAAJEAAAARAAAAEQAAAJEAAAARAAAA0QAAAFeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOAAAAjgAAAM4AAADOAAAAzgAAAJeAAAARwAAAEQAAAFeAAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAAXgAAADgAAAE4AAADOAAAAjgAAAM4AAABFgAAAkQAAAJEAAABTwAAAE4AAABOAAAATgAAAE4AAABOAAAATwAAAA== - 7,-2: - ind: 7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAEAAABBAAAAAQAAAEEAAAABAAAAgoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAEAAACBAAAAQQAAAIEAAACBAAAAQQAAAEEAAACCgAAAAQAAAIEAAAACgAAAAoAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAACgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAABeAAAABAAAAAoAAAAAAAAAXgAAABYAAAEWAAADFgAAABYAAABeAAAAOgAAABYAAAMWAAADFgAAADoAAABeAAAAXgAAAAQAAAAKAAAAAAAAAF4AAAAWAAADFgAAABYAAAMWAAADFgAAAzoAAAAWAAABFgAAAxYAAAM6AAAAXgAAAF4AAAAEAAACCgAAAAoAAABeAAAAFgAAAhYAAAIWAAABFgAAAF4AAAA6AAAAFgAAABYAAAMWAAADOgAAAF4AAABeAAAACgAAAAoAAAAKAAAAFgAAAxYAAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAAXgAAAAQAAAIKAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABEAAABXgAAAEcAAABEAAAARwAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAABEAAADRAAAAV4AAABeAAAAXgAAAE8AAABPAAAAXgAAAF4AAAAKAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAACgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAAAKAAAAAAAAAAAAAAAAAAAAAAAAAA== - 7,-3: - ind: 7,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAEAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAoAAAAKAAAABAAAAQQAAAIKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAACgAAAAQAAAAAAAAAAAAAAAAAAAAKAAAABAAAAAQAAAIEAAAABAAAAAQAAAIKAAAAXgAAAF0AAABdAAAAXQAAAF4AAAAEAAABAAAAAAAAAAAKAAAABAAAAQQAAAEEAAAABAAAAgQAAAIEAAAACgAAAAoAAAAAAAAAAAAAAAoAAAAEAAABBAAAAAAAAAAAAAAAAAAAAAoAAAAEAAABBAAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAKAAAABAAAAgQAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAABAAAAQ== - 8,-2: - ind: 8,-2 - tiles: CgAAAAoAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAACgAAAAQAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAEAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAEAAAABAAAAQQAAAIKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAABAAAAgQAAAEKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAABAAAAQQAAAIKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAACgAAAAQAAAEKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 8,-3: - ind: 8,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABCgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAgoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgoAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 7,-1: - ind: 7,-1 - tiles: XgAAAF4AAABeAAAAXgAAAE8AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAKAAAACgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAACgAAAAoAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABCgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAAAAAAF4AAABeAAAATwAAAF4AAABeAAAABAAAAgoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAF0AAABeAAAAXQAAAF0AAABeAAAAXgAAAE8AAABeAAAAXgAAAAQAAAAEAAABCgAAAAoAAAAKAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAAAEAAACBAAAAQQAAAIKAAAACgAAAAoAAAAKAAAAXQAAAF4AAABdAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAAAAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAAAAAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAAkQAAAJeAAAAXQAAAF4AAABdAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAATwAAAF4AAABHAAAARAAAAl4AAABEAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACXgAAAEcAAABEAAADRAAAAF4AAABdAAAAXgAAAF0AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAARAAAA0cAAABEAAAAXgAAAEQAAAJeAAAAXQAAAF4AAAAAAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAABEAAACXgAAAF0AAABeAAAAAAAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABEAAACXgAAAEQAAAFHAAAARAAAAF4AAABdAAAAXgAAAF0AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAACRAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAA== - 6,-1: - ind: 6,-1 - tiles: XgAAADgAAAE4AAAAOAAAADgAAAI4AAACXgAAAEQAAAJEAAAAXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAF4AAAA4AAAAOAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOAAAATgAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAB8AAAIfAAAAXgAAAF4AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAAAfAAABHwAAA14AAABeAAAAXQAAAF0AAABeAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABdAAAAAAAAAAAAAABOAAAAHwAAAB8AAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAABYAAAIWAAACFgAAAl4AAABeAAAAXgAAAAAAAABeAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAWAAAAFgAAAhYAAAJeAAAAXgAAAF4AAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAWAAADXgAAAF4AAABeAAAAXQAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAABYAAAFeAAAAXgAAAF4AAABdAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAFgAAABYAAAIWAAACXgAAAF4AAABeAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAABYAAAMWAAADFgAAAV4AAABeAAAAXgAAAAAAAABeAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 8,-1: - ind: 8,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 8,0: - ind: 8,0 - tiles: BAAAAAQAAAIKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAQoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAEKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 7,0: - ind: 7,0 - tiles: XQAAAF4AAABdAAAAXQAAAF4AAABeAAAATwAAAF4AAABeAAAARAAAAkQAAABeAAAARAAAAkQAAANEAAADXgAAAF4AAABeAAAAXQAAAAAAAABeAAAAXgAAAE8AAABeAAAATwAAAEQAAANeAAAARAAAAkcAAABEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABEAAAAXgAAAEQAAABEAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAARAAAAkcAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAATwAAAF4AAABPAAAATwAAAE8AAABeAAAAXgAAAEQAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAARAAAAF4AAABeAAAAXgAAAF4AAAAKAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAACwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABPAAAAXgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAAoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAKAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAEAAAAfAAABAgAAAAIAAAACAAAAAgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAABAAAAHwAAAQIAAAACAAAAAgAAAAIAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAQAAAB8AAAECAAAAAgAAAAIAAAACAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAACgAAAAsAAAAKAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAoAAAALAAAACgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - 6,0: - ind: 6,0 - tiles: FgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABdAAAAAAAAAAAAAABdAAAAXgAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAF4AAABeAAAARAAAAkQAAAFEAAAARAAAAkQAAABEAAABXgAAAEQAAAFEAAADRAAAA0QAAAFEAAAARAAAAkQAAABEAAACRAAAAkQAAABEAAACRAAAAkQAAANEAAADXgAAAEQAAAFEAAACRAAAA0QAAAFeAAAARAAAAEQAAABEAAADRAAAAUQAAAJEAAACXgAAAEQAAANEAAADRAAAAEQAAANEAAAARAAAAkQAAANEAAABXgAAABYAAAAWAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAAQAAAAEAAABPAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAAEAAAABAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAARAAAAEcAAABEAAADXgAAAE4AAABeAAAATgAAAF4AAAABAAAAAQAAAE8AAABPAAAAXgAAAF4AAABEAAAARwAAAEQAAABEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABEAAAARAAAAUQAAAJeAAAARAAAA0QAAANEAAADRAAAAUQAAANeAAAATwAAAF4AAABeAAAAXgAAAEcAAABEAAADXgAAAEQAAANHAAAAXgAAAEQAAAJEAAACRAAAA0QAAANEAAADRAAAAA== - 5,0: - ind: 5,0 - tiles: RAAAAEQAAANEAAADRAAAAE4AAAAWAAACFgAAA14AAABeAAAAOwAAAF4AAABeAAAAXgAAAF4AAABeAAAAOwAAAEQAAAJEAAABRAAAAUQAAAJeAAAAFgAAAxYAAAFeAAAAXgAAADsAAAAfAAADHwAAAx8AAAEfAAABHwAAAjsAAABeAAAAXgAAAF4AAABPAAAAXgAAABYAAAEWAAAAXgAAAF4AAAA7AAAAHwAAAB8AAAMfAAAAHwAAAx8AAAE7AAAATwAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAARYAAANeAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAAAWAAABFgAAAhYAAAEWAAACFgAAARYAAAMWAAABFgAAAxYAAANeAAAARAAAA0QAAAJEAAAAXgAAAF4AAABeAAAAFgAAABYAAAAWAAAAFgAAAhYAAAIWAAAAFgAAAhYAAAMWAAAAXgAAAEQAAANEAAAARAAAAl4AAABeAAAAXgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAA14AAABeAAAAFgAAABYAAABeAAAAXgAAAF4AAAAWAAACFgAAARYAAAMWAAAAFgAAAhYAAAIWAAADFgAAARYAAAJeAAAAFgAAABYAAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAA1sAAAJbAAACWwAAAVsAAANbAAABWwAAAVsAAABeAAAARAAAAUQAAAFEAAADRAAAA0QAAABEAAACXgAAACYAAAAmAAAAJgAAACYAAAAmAAAAJgAAAFsAAAJbAAADTgAAAEQAAABEAAACRAAAAEQAAABEAAADRAAAAV4AAAAmAAAAJgAAACYAAAAmAAAAJgAAACYAAABbAAABWwAAA04AAABEAAABRAAAAkQAAANEAAADRAAAAEQAAAFPAAAAJgAAACYAAAAmAAAAJgAAACYAAAAmAAAAWwAAAFsAAANOAAAARAAAA0QAAABEAAACRAAAA0QAAABEAAADXgAAAA== - 7,1: - ind: 7,1 - tiles: XgAAAF4AAABeAAAAXgAAAAoAAAALAAAACgAAAF0AAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABPAAAAXgAAAF4AAAAKAAAACwAAAAoAAABdAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAARAAAA0QAAABeAAAABAAAAAsAAAAKAAAAXQAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAARAAAAUQAAABEAAADXgAAAAQAAAILAAAACgAAAF0AAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAEAAABCwAAAAoAAABdAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAABAAAAAsAAAAKAAAAXQAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAWwAAA1sAAABeAAAABAAAAAQAAAELAAAACgAAAF0AAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAFsAAABbAAABXgAAAAQAAAIEAAACCwAAAAsAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAxAAAAWwAAAV4AAAAEAAAABAAAAAQAAAILAAAACwAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAMQAAAFsAAANeAAAABAAAAAQAAAEEAAABXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAADEAAABbAAADXgAAAAQAAAIEAAACBAAAAF4AAAALAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAEAAABBAAAAAQAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAABAAAAgQAAAIEAAABBAAAAQQAAAIEAAAAXgAAAF0AAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAA== - 6,1: - ind: 6,1 - tiles: TwAAAE8AAABPAAAAXgAAAF4AAABEAAABRAAAAV4AAABEAAABXgAAAEQAAAFEAAACRAAAAkQAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAlAAAAJQAAACUAAAAlAAAAJQAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAARAAAAEQAAABeAAAAJQAAACUAAAAlAAAAJQAAACUAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAACUAAAAlAAAAJQAAACUAAAAlAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAAAlAAAAJQAAACUAAAAlAAAAJQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAMQAAAF4AAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAMQAAADEAAABeAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACXgAAADEAAAAxAAAAWwAAAVsAAAMxAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAlsAAAMxAAAAMQAAAFsAAAJbAAAAMQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFbAAAAMQAAADEAAABbAAACWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAFsAAANeAAAAXgAAAF4AAABeAAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFbAAAAXgAAADoAAAA6AAAAOgAAADoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAsAAAALAAAACwAAAA6AAAAFgAAAV4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAALAAAACwAAAAsAAAAOgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAA== - 5,1: - ind: 5,1 - tiles: WwAAAFsAAAJbAAAAWwAAAFsAAANbAAADWwAAAVsAAABeAAAARAAAAUQAAAFEAAACRAAAAUQAAAFEAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAAAxAAAAWwAAAVsAAANbAAABMQAAADEAAAAxAAAAMQAAAF4AAABOAAAAMQAAADEAAAAxAAAAMQAAAE4AAABeAAAAXgAAAFsAAAJbAAABWwAAAF4AAAAxAAAAMQAAADEAAABeAAAATgAAADEAAAAxAAAAMQAAADEAAAAxAAAAJQAAAF4AAABbAAADWwAAAlsAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAAAxAAAAMQAAADEAAAAxAAAAMQAAACUAAAAxAAAAWwAAAVsAAABbAAAAWwAAA1sAAANbAAACWwAAAV4AAABOAAAAMQAAADEAAAAxAAAAMQAAAE4AAABeAAAAXgAAAFsAAABbAAAAWwAAAV4AAABbAAACWwAAAlsAAAFeAAAATgAAADEAAAAxAAAAMQAAADEAAABOAAAAXgAAAF4AAABbAAABWwAAA1sAAAFeAAAAXgAAAF4AAABeAAAAXgAAAE4AAAAxAAAAMQAAADEAAAAxAAAATgAAAF4AAAAxAAAAWwAAAFsAAAFbAAAAMQAAADEAAAAxAAAAMQAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANbAAADWwAAAl4AAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACRAAAAUQAAAJEAAADTwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAkQAAANEAAACRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABEAAABRAAAAkQAAABeAAAAFgAAABYAAAMWAAABFgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAARAAAA0QAAABEAAACXgAAABYAAAAWAAACFgAAAxYAAAFeAAAAOgAAADoAAAA6AAAALAAAACwAAAAsAAAAXgAAAEQAAAJEAAACRAAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAOgAAACwAAAAsAAAALAAAAA== - 7,2: - ind: 7,2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAACwAAAF0AAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAsAAABdAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABOAAAAXgAAAAQAAAIEAAACBAAAAQoAAAALAAAAXQAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF4AAAAEAAAABAAAAgQAAAAKAAAACwAAAF0AAABeAAAAXQAAAF4AAABdAAAAXgAAAF0AAABeAAAAXQAAAF4AAABeAAAABAAAAAQAAAEEAAABCgAAAAsAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAEAAACCgAAAAoAAAALAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAACgAAAAoAAAAKAAAACwAAAAoAAAAAAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAE4AAABeAAAAXgAAAAoAAAAKAAAACgAAAAsAAAALAAAACwAAAAsAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABeAAAAXgAAAF4AAAAKAAAACgAAAAQAAAIEAAAABAAAAQQAAAELAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAAXgAAAF4AAABeAAAACgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACwAAAAsAAAAFgAAAxYAAAIWAAABFgAAAhYAAAIWAAABLAAAACwAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAAxYAAAEWAAABFgAAARYAAAEWAAABFgAAAhYAAAEWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAEWAAABLAAAACwAAAAsAAAALAAAACwAAAAWAAACFgAAAg== - 6,2: - ind: 6,2 - tiles: OgAAADoAAAA6AAAAOgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA8AAAAPAAAADwAAADoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAE4AAABOAAAAFgAAAxYAAAEWAAACFgAAA04AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAARYAAANeAAAATgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAAWAAAAFgAAAhYAAAIWAAAAFgAAAxYAAABeAAAACgAAAAoAAAAKAAAACgAAAAoAAABeAAAAXgAAABYAAAIWAAACFgAAAxYAAAMWAAACFgAAAhYAAAIWAAACXgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXgAAAF4AAAAWAAACFgAAAxYAAAAWAAACFgAAARYAAAEWAAAAFgAAAV4AAAAKAAAACgAAAAoAAAAKAAAACgAAAF4AAABeAAAAFgAAARYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAADXgAAABYAAAMWAAACFgAAABYAAAMWAAAAFgAAABYAAAAWAAAAFgAAAxYAAAFeAAAAFgAAAxYAAAAWAAABFgAAAl4AAAAWAAAAFgAAAg8AAAAPAAAADwAAABYAAAEPAAAADwAAAA8AAAAWAAAAFgAAARYAAAEWAAABFgAAAxYAAANeAAAAFgAAARYAAAAWAAAAFgAAAxYAAAIWAAAAFgAAARYAAAEWAAAAFgAAA14AAAAWAAACFgAAAxYAAABeAAAAXgAAAF4AAABeAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAAF4AAAAWAAABFgAAABYAAAMWAAABXgAAABYAAAAWAAABFgAAAxYAAAAWAAABFgAAAxYAAABeAAAAFgAAABYAAAFeAAAAFgAAAQ8AAAAPAAAAFgAAA14AAAAWAAABFgAAABYAAAEPAAAADwAAAA8AAAAWAAAAXgAAAA== - 8,2: - ind: 8,2 - tiles: XgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAXQAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAACwAAAAsAAAAKAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAALAAAACwAAAAoAAAAKAAAABAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAsAAAALAAAACgAAAAQAAAEEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAACwAAAAoAAAAKAAAABAAAAQQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAsAAAAKAAAACgAAAAoAAAAEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAALAAAACgAAAAoAAAAKAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAXgAAAF4AAABeAAAACwAAAAoAAAAKAAAACgAAAAQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAsAAAAKAAAACgAAAAQAAAIEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 8,3: - ind: 8,3 - tiles: DwAAAF4AAABeAAAAXgAAAAsAAAAKAAAACgAAAAQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAABeAAAAXgAAAF4AAAALAAAACgAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAXgAAAF4AAABeAAAACwAAAAoAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAsAAAAKAAAABAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAABeAAAAXgAAAF4AAAALAAAACgAAAAQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAACwAAAAoAAAAEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAsAAAAEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAALAAAACgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAALAAAACwAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAALAAAACwAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAALAAAACwAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAABAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAQAAAAEAAACXgAAAAQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAEAAAABAAAAAQAAAEEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAEAAAABAAAAQQAAAEEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 7,3: - ind: 7,3 - tiles: FgAAARYAAAAWAAAAFgAAAxYAAAFeAAAAFgAAABYAAAAWAAADLAAAAF4AAAA6AAAAXgAAAF4AAAAWAAAAFgAAAxYAAAIPAAAADwAAAA8AAAAWAAABFgAAARYAAAIWAAACFgAAACwAAABeAAAAOgAAAA8AAABeAAAAFgAAAxYAAAIWAAADFgAAABYAAAEWAAABFgAAA14AAAAWAAABFgAAAxYAAAIsAAAAXgAAADoAAABeAAAAXgAAABYAAAEWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAIWAAAALAAAACwAAAAsAAAALAAAACwAAAAWAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAAAFgAAARYAAAEWAAADFgAAAhYAAAIWAAADFgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAsAAAALAAAABYAAAMWAAABFgAAARYAAAIWAAADFgAAASwAAAAsAAAABAAAAAQAAAAEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAABAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAgQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAAEAAABBAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAAABAAAAgQAAAIEAAABBAAAAAQAAAAKAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAAEAAACBAAAAQQAAAAEAAAABAAAAgoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAA== - 8,4: - ind: 8,4 - tiles: CgAAAAoAAAAEAAAABAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 7,4: - ind: 7,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 6,3: - ind: 6,3 - tiles: FgAAAhYAAANeAAAAFgAAAg8AAAAPAAAAFgAAAV4AAAAWAAABFgAAAxYAAAAPAAAADwAAAA8AAAAWAAADXgAAABYAAAEWAAABFgAAABYAAAMWAAAAFgAAABYAAAMWAAACFgAAAxYAAAIWAAACFgAAAxYAAAIWAAACFgAAABYAAAIWAAACFgAAAl4AAAAWAAADDwAAAA8AAAAWAAABXgAAABYAAAIWAAAAFgAAAg8AAAAPAAAADwAAABYAAAJeAAAAFgAAAxYAAANeAAAAFgAAAw8AAAAPAAAAFgAAAV4AAAAWAAAAFgAAAxYAAAEPAAAADwAAAA8AAAAWAAAAXgAAABYAAAAWAAAAXgAAABYAAAAWAAACFgAAAhYAAABeAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAABFgAAA14AAAAWAAAAFgAAAl4AAABeAAAAXgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAABeAAAAFgAAAhYAAAMWAAABFgAAAxYAAAIWAAACFgAAARYAAAAWAAAAFgAAABYAAANeAAAABAAAARYAAAAWAAAAXgAAABYAAAIWAAABDwAAAA8AAAAPAAAAFgAAAQ8AAAAPAAAADwAAABYAAAMWAAACXgAAAAQAAAAWAAACFgAAAF4AAAAWAAAAFgAAAhYAAAEWAAAAFgAAAxYAAAAWAAAAFgAAABYAAAIWAAADFgAAAV4AAAAEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAABAAAAAQAAAEEAAABBAAAAgQAAAAEAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAQAAAEEAAACBAAAAQQAAAEEAAABBAAAAQQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAEAAAABAAAAgQAAAIEAAAABAAAAgQAAAAEAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAABAAAAAQAAAAEAAABBAAAAgQAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAQAAAEEAAAABAAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAEAAAABAAAAQoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAA== - 6,4: - ind: 6,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAEAAACBAAAAgoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAABAAAAQoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAACgAAAAQAAAAEAAABBAAAAgQAAAEEAAABCgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAoAAAAKAAAABAAAAQQAAAEEAAABBAAAAQQAAAIKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAKAAAACgAAAAoAAAAKAAAABAAAAgQAAAAEAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,3: - ind: 5,3 - tiles: FgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAADoAAAAsAAAALAAAACwAAAA6AAAAXgAAAF4AAABeAAAAFgAAAFsAAAAWAAAAMQAAADEAAABeAAAAXgAAAF4AAAA6AAAALAAAADoAAAAsAAAAOgAAAF4AAABeAAAAXgAAABYAAANbAAADWwAAADEAAAAxAAAAXgAAAF4AAABeAAAAOgAAACwAAAAsAAAALAAAADoAAABeAAAAXgAAAF4AAAAWAAAAFgAAAhYAAAAxAAAAMQAAAF4AAABeAAAAXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAF4AAABeAAAAFgAAAl4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAANeAAAAWgAAAVoAAANaAAADXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAU4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAABYAAAMWAAACFgAAAxYAAAEWAAADFgAAAhYAAAMWAAACFgAAAxYAAAIWAAAAFgAAAk4AAAAWAAADFgAAAF4AAAAWAAAAFgAAABYAAAAWAAABFgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAAAWAAACTgAAABYAAAEWAAABXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAU4AAAAWAAAAFgAAA14AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAANOAAAAFgAAA14AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAWAAADTgAAABYAAANeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAE4AAAAWAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAFOAAAAFgAAA14AAAAAAAAAAAAAAA== - 5,4: - ind: 5,4 - tiles: AAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAABOAAAAFgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAWAAADTgAAABYAAANeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAFgAAAE4AAAAWAAACXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAJOAAAAFgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAABTgAAABYAAAEWAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAk4AAAAWAAADFgAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAFOAAAAFgAAARYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,2: - ind: 5,2 - tiles: XgAAAEQAAANEAAABRAAAAk4AAAAWAAABFgAAAxYAAAAWAAABFgAAABYAAANOAAAAOgAAADoAAAA6AAAAOgAAAF4AAABEAAADRAAAAEQAAAJeAAAAFgAAAhYAAAMWAAACFgAAAV4AAABeAAAAXgAAAA8AAAAPAAAADwAAAA8AAABeAAAARAAAAEQAAANEAAACXgAAAF4AAAAWAAABFgAAARYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAF4AAABeAAAAFgAAAhYAAAIWAAAAFgAAAxYAAAEWAAAAFgAAAhYAAABOAAAAFgAAAF4AAABEAAABRAAAA0QAAAJeAAAAXgAAABYAAAMWAAABFgAAA14AAAAWAAABFgAAARYAAAAWAAABXgAAABYAAANeAAAARAAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAEQAAANEAAACRAAAAk4AAAAWAAAAFgAAAxYAAAIWAAACFgAAARYAAAAWAAACFgAAAhYAAAIWAAADFgAAAU4AAABEAAADRAAAAUQAAAFOAAAAFgAAARYAAAMWAAABFgAAAhYAAAAWAAADFgAAAxYAAAIWAAAAFgAAARYAAAJOAAAARAAAAkQAAAJEAAABTgAAABYAAAAWAAADFgAAARYAAAMWAAADFgAAARYAAAEWAAAAFgAAABYAAAMWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAA1sAAABbAAABWwAAA1sAAABeAAAAKAAAACgAAAAoAAAAXgAAAE4AAABeAAAAKAAAACgAAAAoAAAAXgAAABYAAAFbAAAAWwAAAVsAAAJbAAABXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAWwAAAFsAAAJbAAADWwAAAV4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAA1sAAANbAAADWwAAA1sAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAAlsAAANbAAADXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAAXgAAAF4AAAAWAAABWwAAARYAAAAWAAACFgAAAl4AAABeAAAAXgAAADoAAAAsAAAAOgAAACwAAAA6AAAAXgAAAF4AAABeAAAAFgAAAA== - 4,3: - ind: 4,3 - tiles: WwAAA1sAAABeAAAAFgAAARYAAAIWAAACFgAAAxYAAAFOAAAATgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACgAAAAoAAAAKAAAACgAAAAoAAAATgAAAE4AAAAWAAACXgAAADEAAAAxAAAAMQAAAFsAAAAWAAAAFgAAAl4AAAAWAAADFgAAAhYAAAAWAAACFgAAAk4AAABOAAAAFgAAAF4AAAAxAAAAMQAAADEAAABbAAABFgAAABYAAAJeAAAAFgAAABYAAAIWAAACFgAAAhYAAAJOAAAATgAAABYAAABeAAAAMQAAADEAAAAxAAAAWwAAAl4AAABeAAAAXgAAACgAAAAoAAAAKAAAACgAAAAoAAAATgAAAE4AAAAWAAADXgAAAF4AAABeAAAAXgAAAE4AAAAWAAACFgAAAl4AAAAWAAAAFgAAABYAAAMWAAACFgAAAU4AAABOAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAWwAAAlsAAANeAAAAFgAAABYAAAEWAAACFgAAARYAAANOAAAATgAAABYAAAFeAAAAXgAAAF4AAABOAAAAXgAAACYAAABbAAABXgAAACgAAAAoAAAAKAAAACgAAAAoAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAAAmAAAAWwAAAU4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAAFgAAAl4AAAAWAAAAFgAAABYAAAAWAAAAJgAAAFsAAAJeAAAAFgAAAxYAAAIWAAABFgAAABYAAANOAAAATgAAABYAAAFeAAAAFgAAABYAAAEWAAACFgAAAyYAAABbAAADXgAAABYAAAFOAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAmAAAAWwAAAV4AAAAWAAACTgAAAE4AAABOAAAATgAAAE4AAAAWAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAFsAAAJeAAAAFgAAABYAAABOAAAATgAAAE4AAAAWAAABFgAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,2: - ind: 4,2 - tiles: FgAAARYAAAIWAAABXgAAAFsAAAFbAAACWwAAAlsAAABbAAADXgAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAABYAAAMWAAADFgAAABYAAANbAAABWwAAAlsAAABbAAACWwAAAF4AAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAWAAABFgAAARYAAANeAAAAWwAAAVsAAABbAAAAWwAAA1sAAAFeAAAAWwAAAlsAAAFbAAACWwAAAVsAAABbAAADFgAAAxYAAAMWAAACXgAAAFsAAANbAAACWwAAAFsAAAFbAAADXgAAAFsAAAAWAAADWwAAAFsAAAJbAAACWwAAAxYAAAAWAAABFgAAAF4AAABbAAADWwAAAVsAAAFbAAAAWwAAAl4AAABeAAAAXgAAAF4AAABbAAAAWwAAA1sAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAFgAAAxYAAANeAAAAFgAAAV4AAABeAAAARAAAAkQAAAJEAAACRAAAAEQAAAJEAAAARAAAAkQAAABEAAABRAAAAUQAAAJEAAABRAAAAUQAAABEAAABRAAAAUQAAAFEAAADRAAAA0QAAABEAAAARAAAA0QAAABEAAACRAAAAkQAAABEAAADRAAAAkQAAANEAAACRAAAAkQAAABEAAACRAAAAEQAAAFEAAABRAAAA0QAAABEAAAARAAAA0QAAANEAAACRAAAA0QAAAJEAAACRAAAA0QAAAJEAAACXgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAABXgAAACgAAAAoAAAAKAAAAF4AAAAWAAAATgAAAE4AAAAWAAAAXgAAAFsAAAJbAAAAWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAE4AAABOAAAAFgAAAl4AAABbAAADWwAAA1sAAAMWAAADWwAAAFsAAABeAAAAFgAAABYAAAAWAAACXgAAAF4AAABOAAAATgAAAF4AAABeAAAAFgAAABYAAAIWAAADRAAAAVsAAAFbAAABTgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAABYAAAIWAAABFgAAAEQAAAFbAAABWwAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAAFgAAAV4AAAAWAAABFgAAARYAAAJbAAABWwAAA1sAAANeAAAAFgAAABYAAAMWAAADFgAAAhYAAABOAAAATgAAABYAAANeAAAAFgAAAxYAAAMWAAADWwAAAA== - 3,3: - ind: 3,3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAFsAAAFbAAABWwAAAVsAAABbAAABWwAAAQQAAAIEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAAWAAABXgAAAF4AAAAKAAAABAAAAgQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAADFgAAABYAAAAWAAADCgAAAAoAAAAEAAABBAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAAhYAAAJeAAAAFgAAAgoAAAAKAAAACgAAAAQAAAFeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAAAKAAAACgAAAAoAAAAKAAAAXgAAAEcAAABeAAAARAAAAUQAAAFeAAAAFgAAAFsAAAJbAAACFgAAAxYAAAMWAAAACgAAAAoAAAAKAAAABAAAAF4AAABeAAAARwAAAEQAAABeAAAAXgAAABYAAABbAAAAWwAAA1sAAABbAAABWwAAAAoAAAAKAAAABAAAAAQAAAJeAAAAXgAAAEQAAAFeAAAAXgAAAF4AAAAWAAACWwAAASYAAAAmAAAAHgAAASYAAAAKAAAACgAAAAQAAAEEAAAAXgAAAEQAAANEAAADRAAAAV4AAABPAAAAFgAAAVsAAAEmAAAAJgAAAB4AAAEmAAAACgAAAAQAAAAEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABbAAABJgAAACYAAAAPAAAAJgAAAAoAAAAEAAABBAAAAl4AAABEAAACRAAAAV4AAABHAAAARAAAAF4AAAAWAAADWwAAACYAAAAmAAAAJgAAACYAAAAEAAAABAAAAQQAAAFeAAAAXgAAAF4AAABEAAACRAAAA14AAABeAAAAFgAAAVsAAAAmAAAAJgAAACYAAAAmAAAAXgAAAF4AAABeAAAAXgAAAEcAAABEAAAARAAAA14AAABEAAADXgAAABYAAANbAAACWwAAAVsAAAFbAAADWwAAAgwAAABeAAAAXgAAAF4AAABHAAAARwAAAEQAAAFEAAABRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAMAAABDAAAAF4AAABeAAAARAAAA14AAABEAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAgwAAAJPAAAARAAAAF4AAABEAAAAXgAAAEcAAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,3: - ind: 2,3 - tiles: UQAAAVEAAAJeAAAAUQAAAVEAAAFeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAABRAAADXgAAAFEAAABRAAABXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAAQAAAAKAAAACgAAAAoAAABRAAAAUQAAAl4AAABRAAACUQAAA14AAABeAAAARAAAAl4AAAAEAAAABAAAAQQAAAAKAAAACgAAAAoAAAAKAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABEAAACXgAAAAQAAAEEAAAACgAAAAoAAAAKAAAACgAAAAoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAKAAAACgAAAAoAAAAKAAAACgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAACgAAAAoAAAAKAAAACgAAAAoAAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAF4AAAAEAAAABAAAAQoAAAAKAAAACgAAAAoAAAAKAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAACgAAAAoAAAAKAAAACgAAAF4AAABOAAAAXgAAAEQAAAJEAAAARAAAAUQAAAJEAAAARAAAA14AAAAEAAAABAAAAgoAAAAKAAAACgAAAAoAAABeAAAATgAAAF4AAABEAAADRAAAAkQAAANEAAADRAAAAkQAAANeAAAABAAAAAQAAAEEAAABCgAAAAoAAAAKAAAAXgAAAE4AAABeAAAARAAAAkQAAANEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAACRAAAAV4AAABeAAAADAAAAF4AAABeAAAAXgAAAAwAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAAwAAAIMAAADDAAAAwwAAAAMAAADXgAAAF4AAABeAAAAXgAAAF4AAAAMAAABXgAAAF4AAABeAAAADAAAAwwAAAIMAAACXgAAAAwAAAEMAAABDAAAAQ== - 3,4: - ind: 3,4 - tiles: DAAAAl4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABEAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAABAAAAAQAAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAA== - 4,4: - ind: 4,4 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,4: - ind: 2,4 - tiles: XgAAAF4AAABeAAAAXgAAAE8AAABeAAAADAAAAgwAAAMMAAACDAAAAF4AAABeAAAAXgAAAAwAAABeAAAADAAAAF4AAABeAAAAXgAAAF4AAABeAAAADAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAABBAAAAAQAAAIEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAKAAAABAAAAQQAAAEEAAAACgAAAAoAAAAKAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAKAAAACgAAAF4AAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABBAAAAgQAAAIKAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 6,-6: - ind: 6,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAACYAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAA== - 7,-5: - ind: 7,-5 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,5: - ind: 3,5 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAJgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,5: - ind: 2,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,5: - ind: 4,5 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,5: - ind: 0,5 - tiles: AAAAAAoAAAAKAAAABAAAAQQAAAAEAAACBAAAAgQAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAABAAAAAQAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAoAAABeAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,5: - ind: 1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,5: - ind: -1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - id: Fland - type: BecomesStation - - type: OccluderTree - - type: Shuttle - - nextUpdate: 27256.4729399 - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 3045: -31,-42 - 3594: 56,-29 - 4570: 28,-51 - 5486: 86,-22 - 5487: 69,-27 - 6005: 87,32 - 8671: 69,7 - 8672: 68,7 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 1600: 38,13 - 3593: 58,-30 - 4108: 30,50 - 5819: 91,1 - 5822: 93,1 - 7747: 122,-6 - 8555: 92,32 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 2275: 7,-17 - 3852: 22,41 - 4165: 14,49 - 4166: 10,49 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 3595: 56,-31 - 3596: 58,-31 - 7748: 125,-4 - 7749: 125,-8 - 8556: 99,30 - 8557: 99,32 - - node: - color: '#FFFFFFFF' - id: Basalt1 - decals: - 792: -42,87 - 6307: 108.406746,39.976562 - 7319: 47.063145,58.374302 - 7607: 82.29597,-59.361774 - 7609: 80.7525,-55.28365 - - node: - color: '#FFFFFFFF' - id: Basalt2 - decals: - 791: -38,81 - - node: - color: '#FFFFFFFF' - id: Basalt3 - decals: - 787: -39,71 - 790: -45,82 - 794: -34,76 - 2844: -25,-68 - 7610: 81.49956,-55.84615 - - node: - color: '#FFFFFFFF' - id: Basalt5 - decals: - 786: -43,72 - 2845: -23,-62 - 7318: 43.219395,51.358677 - - node: - color: '#FFFFFFFF' - id: Basalt6 - decals: - 797: -41,68 - 798: -49,71 - 799: -48,78 - - node: - color: '#FFFFFFFF' - id: Basalt7 - decals: - 788: -47,76 - 789: -42,76 - 796: -43,64 - 6308: 105.60987,39.351562 - - node: - color: '#FFFFFFFF' - id: Basalt8 - decals: - 795: -30,77 - 7608: 72.434494,-58.080524 - - node: - color: '#FFFFFFFF' - id: Basalt9 - decals: - 793: -40,78 - - node: - color: '#DE3A3A96' - id: Bot - decals: - 5191: 111,-23 - - node: - color: '#EFB341C3' - id: Bot - decals: - 394: 5,9 - 395: 5,11 - 396: 4,13 - 397: 5,13 - 398: 6,13 - 399: 6,12 - 400: 2,13 - - node: - color: '#EFB341FF' - id: Bot - decals: - 1959: 43,3 - 1960: 46,3 - 4880: 110,-18 - 4881: 109,-18 - 4882: 108,-18 - 4883: 107,-18 - 4884: 110,-16 - 4885: 109,-16 - 4886: 108,-16 - 4887: 107,-16 - 4888: 106,-16 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 71: -20,24 - 72: -22,19 - 73: -4,24 - 74: -11,8 - 75: -18,28 - 76: -6,34 - 456: -17,39 - 457: -17,40 - 458: -17,41 - 459: -15,37 - 767: -26,27 - 768: -34,29 - 769: -33,29 - 770: -27,33 - 960: -31,51 - 1179: 2,22 - 1180: 2,23 - 1181: 2,28 - 1182: 2,29 - 1183: 4,21 - 1184: 7,25 - 1185: 7,26 - 1539: 33,3 - 1540: 30,3 - 1541: 27,3 - 1552: 36,2 - 1553: 36,3 - 1572: 30,14 - 1573: 31,10 - 1574: 31,11 - 1575: 27,13 - 1588: 29,10 - 1589: 27,10 - 1590: 34,9 - 1591: 33,9 - 1592: 33,11 - 1593: 34,11 - 1594: 34,14 - 1595: 33,14 - 1596: 34,12 - 1597: 33,12 - 1671: 14,9 - 1672: 14,10 - 1710: 33,21 - 1711: 33,22 - 1728: 12,-26 - 1729: 12,-25 - 1730: 13,-25 - 1731: 13,-26 - 1732: 8,-26 - 1733: 7,-26 - 1734: 7,-25 - 1735: 8,-25 - 1736: 8,-23 - 1737: 8,-22 - 1738: 7,-22 - 1739: 7,-23 - 1740: 12,-23 - 1741: 12,-22 - 1742: 13,-22 - 1743: 13,-23 - 1828: 51,18 - 1829: 51,19 - 1830: 51,20 - 1831: 49,18 - 1832: 49,19 - 1833: 49,20 - 1834: 51,21 - 1835: 49,21 - 1868: 41,10 - 1869: 41,11 - 1870: 51,10 - 1871: 51,11 - 1872: 46,11 - 1873: 41,9 - 1874: 51,9 - 1943: 48,1 - 1944: 48,2 - 2002: 18,9 - 2003: 17,9 - 2004: 16,9 - 2005: 15,9 - 2006: 15,15 - 2007: 16,15 - 2008: 16,11 - 2009: 17,11 - 2010: 18,11 - 2011: 19,11 - 2012: 19,12 - 2013: 19,13 - 2014: 18,13 - 2015: 17,13 - 2016: 16,13 - 2017: 16,12 - 2090: 6,-1 - 2091: 6,-2 - 2092: 6,0 - 2093: 6,2 - 2094: 6,3 - 2095: 6,4 - 2235: 6,-16 - 2236: 8,-16 - 2265: 5,-14 - 2266: 6,-14 - 2267: 4,-13 - 2268: 4,-12 - 2269: 4,-11 - 2270: 8,-13 - 2271: 8,-12 - 2272: 8,-11 - 2273: 7,-14 - 2343: 0,-20 - 2344: 0,-19 - 2345: 1,-13 - 2346: 1,-12 - 2347: 1,-11 - 2348: -1,-13 - 2349: -2,-13 - 2350: -2,-12 - 2351: -1,-12 - 2352: -1,-11 - 2353: -2,-11 - 2354: -4,-13 - 2355: -4,-12 - 2356: -4,-11 - 2460: 10,-31 - 2461: 5,-37 - 2567: 21,-33 - 2568: 21,-32 - 2569: 21,-31 - 2570: 21,-28 - 2571: 21,-30 - 2582: 12,-9 - 2718: 18,-9 - 2800: 20,-1 - 2801: 19,-1 - 3042: -34,-40 - 3043: -36,-45 - 3044: -30,-45 - 3283: -41,-7 - 3284: -41,-6 - 3285: -46,-7 - 3286: -46,-6 - 3373: 47,-24 - 3374: 45,-24 - 3375: 45,-22 - 3376: 47,-22 - 3517: 51,-30 - 3518: 51,-31 - 3519: 51,-32 - 3544: 51,-33 - 3545: 52,-33 - 3546: 53,-33 - 3599: 57,-41 - 3600: 57,-40 - 3601: 57,-39 - 3602: 57,-38 - 3603: 55,-40 - 3604: 55,-39 - 3605: 55,-38 - 3617: 59,-41 - 3618: 60,-41 - 3619: 61,-41 - 3620: 61,-40 - 3621: 60,-40 - 3622: 59,-40 - 3623: 59,-39 - 3624: 60,-39 - 3625: 61,-39 - 3685: 50,-38 - 3686: 49,-38 - 3697: 32,-32 - 3698: 31,-32 - 3699: 31,-31 - 3700: 31,-30 - 3701: 31,-29 - 3713: 54,-18 - 3714: 54,-17 - 3715: 52,-17 - 3716: 52,-18 - 3828: 22,36 - 3829: 23,36 - 3846: 18,38 - 3847: 18,36 - 3848: 17,36 - 3849: 20,40 - 3850: 20,41 - 3851: 21,41 - 4100: 30,48 - 4154: 10,50 - 4377: 7,70 - 4378: 7,72 - 4481: 30,40 - 4482: 30,41 - 4483: 27,40 - 4484: 27,41 - 4566: 30,-52 - 4567: 29,-52 - 4568: 28,-52 - 4569: 27,-52 - 4720: 45,-40 - 4721: 45,-39 - 4722: 45,-38 - 4778: 32,-27 - 4779: 37,-22 - 4780: 36,-22 - 4781: 34,-22 - 4782: 35,-22 - 4783: 33,-22 - 4784: 37,-20 - 4801: 29,-23 - 4802: 27,-23 - 4818: 55,-44 - 4945: 62,-21 - 4946: 62,-20 - 4947: 62,-19 - 4998: 73,-22 - 4999: 73,-21 - 5000: 73,-20 - 5001: 73,-19 - 5002: 72,-19 - 5003: 72,-20 - 5004: 72,-21 - 5005: 72,-22 - 5006: 71,-22 - 5007: 71,-21 - 5008: 71,-20 - 5009: 71,-19 - 5010: 70,-19 - 5011: 70,-20 - 5012: 70,-21 - 5013: 70,-22 - 5101: 76,-34 - 5102: 75,-34 - 5103: 74,-34 - 5104: 76,-32 - 5105: 77,-32 - 5106: 78,-32 - 5187: 74,-27 - 5188: 73,-27 - 5189: 72,-27 - 5190: 77,-23 - 5278: 86,-13 - 5279: 86,-12 - 5280: 86,-11 - 5281: 84,-16 - 5282: 81,-17 - 5337: 87,-8 - 5338: 86,-8 - 5339: 85,-8 - 5340: 82,-1 - 5341: 81,-1 - 5342: 79,-1 - 5343: 78,-1 - 5446: 82,-3 - 5447: 81,-3 - 5448: 79,-3 - 5449: 78,-3 - 5450: 77,-7 - 5459: 75,-21 - 5460: 75,-20 - 5461: 75,-19 - 5484: 85,-20 - 5485: 83,-20 - 5488: 64,-22 - 5816: 90,1 - 5820: 92,1 - 5821: 94,1 - 5833: 85,5 - 5834: 84,5 - 5835: 83,5 - 5858: 94,-23 - 5859: 93,-23 - 5860: 92,-23 - 5861: 91,-23 - 6000: 90,36 - 6003: 100,32 - 6004: 100,30 - 6010: 121,-16 - 6011: 120,-16 - 6200: 89,18 - 6201: 89,19 - 6202: 89,20 - 6203: 69,6 - 6204: 68,6 - 6205: 72,6 - 6206: 73,6 - 6721: 65,42 - 6722: 64,42 - 6723: 63,42 - 6724: 62,42 - 6725: 61,42 - 6726: 60,42 - 6727: 59,42 - 6728: 57,42 - 6730: 63,53 - 6731: 64,53 - 6732: 61,53 - 6890: 11,12 - 6891: 11,13 - 6918: -45,-4 - 6919: -45,-3 - 6920: -47,-4 - 7021: -31,1 - 7092: 37,-50 - 7093: 36,-49 - 7094: 38,-49 - 7095: 37,-48 - 7144: 29,-5 - 7145: 30,-5 - 7180: 38,-8 - 7181: 38,-6 - 7285: 105,28 - 7286: 105,29 - 7287: 105,31 - 7288: 105,32 - 7289: 107,32 - 7290: 107,31 - 7531: 35,38 - 7532: 34,38 - 7533: 30,36 - 7534: 29,36 - 7535: 28,36 - 7536: 27,36 - 7724: 70,26 - 7725: 70,27 - 7746: 121,-6 - 7750: 123,-8 - 8029: 101,-39 - 8030: 100,-39 - 8031: 99,-39 - 8032: 79,-27 - 8033: 80,-27 - 8034: 81,-27 - 8035: 82,-27 - 8043: 5,47 - 8046: 21,7 - 8053: 50,-19 - 8111: 95,42 - 8112: 95,43 - 8113: 95,44 - 8228: 76,-4 - - node: - color: '#EFB34196' - id: Bot - decals: - 1827: 42,22 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Bot - decals: - 6898: 21,30 - - node: - color: '#DE3A3A96' - id: BotGreyscale - decals: - 6287: 66,32 - - node: - color: '#FFFFFFFF' - id: BotGreyscale - decals: - 3757: 6,36 - 3758: 6,37 - 3759: 6,38 - 3760: 5,38 - 3761: 5,37 - 3762: 5,36 - 3763: 8,41 - 3764: 7,41 - 3765: 6,41 - 3766: 5,41 - 3767: 2,39 - 3768: 2,38 - 3769: 2,37 - 4018: 8,37 - 5238: 120,-26 - 5239: 119,-25 - 5240: 120,-24 - 5241: 121,-25 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 7088: 38,-48 - 7089: 36,-50 - - node: - color: '#FFFFFFFF' - id: BotLeftGreyscale - decals: - 4020: 6,39 - 5234: 121,-24 - 5235: 119,-26 - 6286: 64,31 - - node: - color: '#FFFFFFFF' - id: BotRight - decals: - 7090: 38,-50 - 7091: 36,-48 - 8549: 94,29 - 8550: 96,29 - 8551: 98,29 - 8552: 98,32 - 8553: 96,32 - 8554: 94,32 - - node: - color: '#FFFFFFFF' - id: BotRightGreyscale - decals: - 4019: 8,36 - 5236: 119,-24 - 5237: 121,-26 - 6285: 64,29 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 1186: 5,29 - 1187: 4,26 - 1188: 5,22 - 2234: 7,-18 - 3381: 46,-22 - 3382: 46,-24 - 3592: 56,-32 - 3693: 48,-40 - 3858: 24,38 - 3859: 21,38 - 4109: 28,49 - 4723: 44,-35 - 4724: 42,-35 - 4725: 44,-39 - 4726: 42,-39 - 5817: 90,2 - 5818: 93,2 - 5823: 93,-17 - 7251: 107,14 - 7252: 106,14 - 7253: 106,16 - 7254: 107,16 - - node: - color: '#FFFFFFFF' - id: BoxGreyscale - decals: - 5799: 20,18 - 5800: 18,18 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkBox - decals: - 1089: -13,61 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 762: -24,28 - 1074: -15,63 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 759: -29,28 - 1084: -11,63 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 760: -24,27 - 6492: 78,44 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 761: -29,27 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkEndN - decals: - 6729: 62,56 - - node: - color: '#334E6DC8' - id: BrickTileDarkInnerNe - decals: - 5769: 48,-7 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNe - decals: - 1075: -16,63 - 1121: -12,68 - - node: - color: '#334E6DC8' - id: BrickTileDarkInnerNw - decals: - 5768: 49,-7 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - decals: - 1085: -10,63 - 1120: -8,68 - - node: - color: '#334E6DC8' - id: BrickTileDarkInnerSe - decals: - 5767: 48,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSe - decals: - 554: -32,30 - 1118: -12,75 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - decals: - 553: -30,30 - 1119: -8,75 - 1811: 18,-3 - - node: - color: '#334E6DC8' - id: BrickTileDarkInnerSw - decals: - 5766: 49,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 549: -27,33 - 550: -27,34 - 551: -27,35 - 752: -27,30 - 753: -27,31 - 754: -27,32 - 1069: -15,58 - 1070: -15,59 - 1071: -15,60 - 1072: -15,61 - 1073: -15,62 - 1076: -16,64 - 1077: -16,65 - 1112: -12,69 - 1113: -12,70 - 1114: -12,71 - 1115: -12,72 - 1116: -12,73 - 1117: -12,74 - 1806: 22,-3 - 1807: 22,-2 - 1808: 22,-1 - 6489: 78,47 - 6490: 78,46 - 6491: 78,45 - 8584: 73,13 - 8585: 73,14 - 8607: 73,15 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 755: -25,28 - 756: -26,28 - 757: -27,28 - 758: -28,28 - 1131: -9,68 - 1132: -10,68 - 1133: -11,68 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 552: -31,30 - 555: -33,29 - 556: -34,29 - 557: -35,29 - 763: -25,27 - 764: -26,27 - 765: -27,27 - 766: -28,27 - 1128: -9,75 - 1129: -10,75 - 1130: -11,75 - 1809: 17,-3 - 1810: 16,-3 - 6493: 77,44 - 6494: 76,44 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 1079: -11,58 - 1080: -11,59 - 1081: -11,60 - 1082: -11,61 - 1083: -11,62 - 1086: -10,64 - 1087: -10,65 - 1088: -10,66 - 1122: -8,69 - 1123: -8,70 - 1124: -8,71 - 1125: -8,72 - 1126: -8,73 - 1127: -8,74 - - node: - color: '#EFB34196' - id: BrickTileSteelBox - decals: - 8054: 18,-18 - - node: - color: '#DE3A3A96' - id: BrickTileSteelBox - decals: - 8048: 16,-18 - - node: - color: '#D381C996' - id: BrickTileSteelBox - decals: - 8050: 17,-18 - - node: - color: '#52B4E996' - id: BrickTileSteelBox - decals: - 8049: 15,-18 - - node: - color: '#DE3A3A96' - id: BrickTileSteelCornerNe - decals: - 1507: 28,3 - 1508: 31,3 - 1509: 34,3 - 1510: 39,3 - 1554: 31,14 - 5784: 21,19 - - node: - color: '#D381C996' - id: BrickTileSteelCornerNe - decals: - 4694: 45,-33 - - node: - color: '#334E6DC8' - id: BrickTileSteelCornerNe - decals: - 5763: 48,-7 - - node: - color: '#9FED5896' - id: BrickTileSteelCornerNe - decals: - 385: 6,13 - 4054: 25,45 - - node: - color: '#D381C996' - id: BrickTileSteelCornerNw - decals: - 4698: 41,-33 - - node: - color: '#DE3A3A96' - id: BrickTileSteelCornerNw - decals: - 1511: 36,3 - 1512: 33,3 - 1513: 30,3 - 1514: 27,3 - 1555: 27,14 - 5785: 17,19 - - node: - color: '#9FED5896' - id: BrickTileSteelCornerNw - decals: - 382: 2,13 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNw - decals: - 8642: 66,12 - - node: - color: '#334E6DC8' - id: BrickTileSteelCornerNw - decals: - 5762: 49,-7 - - node: - color: '#334E6DC8' - id: BrickTileSteelCornerSe - decals: - 5765: 48,-6 - - node: - color: '#9FED5896' - id: BrickTileSteelCornerSe - decals: - 386: 6,12 - 4056: 25,43 - - node: - color: '#DE3A3A96' - id: BrickTileSteelCornerSe - decals: - 1515: 39,1 - 1516: 34,1 - 1517: 31,1 - 1518: 28,1 - 1557: 31,9 - 5786: 21,17 - - node: - color: '#D381C996' - id: BrickTileSteelCornerSe - decals: - 4809: 30,-27 - 4810: 29,-28 - - node: - color: '#D381C996' - id: BrickTileSteelCornerSw - decals: - 4701: 41,-36 - 4812: 27,-28 - - node: - color: '#DE3A3A96' - id: BrickTileSteelCornerSw - decals: - 1519: 27,1 - 1520: 30,1 - 1521: 33,1 - 1522: 36,1 - 1556: 27,9 - 5787: 17,17 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSw - decals: - 8637: 66,7 - - node: - color: '#334E6DC8' - id: BrickTileSteelCornerSw - decals: - 5764: 49,-6 - - node: - color: '#D381C996' - id: BrickTileSteelInnerNe - decals: - 3755: 50,-21 - 7087: 34,-52 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNe - decals: - 943: -38,52 - - node: - color: '#D381C996' - id: BrickTileSteelInnerNw - decals: - 3754: 56,-21 - 7086: 40,-52 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNw - decals: - 942: -32,52 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSe - decals: - 941: -38,58 - 7541: 57,38 - - node: - color: '#D381C996' - id: BrickTileSteelInnerSe - decals: - 3753: 50,-15 - 4811: 29,-27 - 7085: 34,-46 - - node: - color: '#9FED5896' - id: BrickTileSteelInnerSe - decals: - 387: 5,12 - - node: - color: '#D381C996' - id: BrickTileSteelInnerSw - decals: - 3752: 56,-15 - 7084: 40,-46 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSw - decals: - 940: -32,58 - 7540: 61,38 - - node: - color: '#9FED5896' - id: BrickTileSteelLineE - decals: - 378: 5,8 - 379: 5,9 - 380: 5,11 - 4055: 25,44 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 944: -38,53 - 945: -38,54 - 946: -38,55 - 947: -38,56 - 948: -38,57 - 3966: 19,57 - 3967: 19,59 - 3968: 19,60 - 4164: 3,44 - - node: - color: '#D381C996' - id: BrickTileSteelLineE - decals: - 3733: 50,-18 - 3734: 50,-17 - 3735: 50,-16 - 3736: 50,-20 - 4693: 45,-34 - 4803: 30,-20 - 4804: 30,-21 - 4805: 30,-22 - 4806: 30,-24 - 4807: 30,-25 - 4808: 30,-26 - 7047: 34,-51 - 7048: 34,-50 - 7049: 34,-49 - 7050: 34,-48 - 7051: 34,-47 - - node: - color: '#52B4E996' - id: BrickTileSteelLineE - decals: - 4162: 3,43 - 4163: 3,45 - - node: - color: '#DE3A3A96' - id: BrickTileSteelLineE - decals: - 1528: 31,2 - 1529: 28,2 - 1530: 34,2 - 1531: 39,2 - 1564: 31,10 - 1565: 31,11 - 1566: 31,12 - 1567: 31,13 - - node: - color: '#9FED5896' - id: BrickTileSteelLineN - decals: - 383: 4,13 - 384: 5,13 - - node: - color: '#0000004D' - id: BrickTileSteelLineN - decals: - 5167: 56,8 - 5168: 55,8 - 5169: 54,8 - - node: - color: '#DE3A3A96' - id: BrickTileSteelLineN - decals: - 1523: 38,3 - 1534: 37,3 - 1558: 30,14 - 5792: 20,19 - 5793: 19,19 - 5794: 18,19 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 935: -33,52 - 936: -34,52 - 937: -35,52 - 938: -36,52 - 939: -37,52 - 6015: 56,7 - 6016: 55,7 - 6017: 54,7 - 8643: 67,12 - 8644: 68,12 - 8645: 69,12 - 8646: 70,12 - 8647: 71,12 - 8648: 72,12 - 8649: 73,12 - - node: - color: '#D381C996' - id: BrickTileSteelLineN - decals: - 3737: 51,-21 - 3738: 52,-21 - 3739: 53,-21 - 3740: 54,-21 - 3741: 55,-21 - 4695: 44,-33 - 4696: 43,-33 - 4697: 42,-33 - 7074: 39,-52 - 7075: 38,-52 - 7076: 37,-52 - 7077: 36,-52 - 7078: 35,-52 - - node: - color: '#D381C996' - id: BrickTileSteelLineS - decals: - 3742: 55,-15 - 3743: 54,-15 - 3744: 53,-15 - 3745: 52,-15 - 3746: 51,-15 - 4702: 42,-36 - 4703: 44,-36 - 4813: 28,-28 - 7079: 39,-46 - 7080: 38,-46 - 7081: 37,-46 - 7082: 36,-46 - 7083: 35,-46 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - decals: - 949: -37,58 - 950: -36,58 - 951: -35,58 - 952: -34,58 - 953: -33,58 - 6012: 56,3 - 6013: 55,3 - 6014: 54,3 - 7537: 60,38 - 7538: 59,38 - 7539: 58,38 - 8630: 73,7 - 8631: 72,7 - 8632: 71,7 - 8633: 70,7 - 8634: 69,7 - 8635: 68,7 - 8636: 67,7 - - node: - color: '#DE3A3A96' - id: BrickTileSteelLineS - decals: - 1532: 38,1 - 1533: 37,1 - 1559: 29,9 - 1560: 28,9 - 5789: 20,17 - 5790: 19,17 - 5791: 18,17 - - node: - color: '#D381C996' - id: BrickTileSteelLineW - decals: - 3747: 56,-20 - 3748: 56,-19 - 3749: 56,-18 - 3750: 56,-17 - 3751: 56,-16 - 4699: 41,-34 - 4700: 41,-35 - 4814: 27,-27 - 4815: 27,-25 - 7052: 40,-51 - 7053: 40,-50 - 7054: 40,-49 - 7055: 40,-48 - 7056: 40,-47 - - node: - color: '#52B4E996' - id: BrickTileSteelLineW - decals: - 4159: 3,43 - 4160: 3,44 - 4161: 3,45 - - node: - color: '#9FED5896' - id: BrickTileSteelLineW - decals: - 375: 2,8 - 376: 2,9 - 377: 2,10 - 381: 2,11 - - node: - color: '#DE3A3A96' - id: BrickTileSteelLineW - decals: - 1524: 27,2 - 1525: 30,2 - 1526: 33,2 - 1527: 36,2 - 1561: 27,10 - 1562: 27,12 - 1563: 27,13 - 5788: 17,18 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 954: -32,57 - 955: -32,56 - 956: -32,55 - 957: -32,54 - 958: -32,53 - 8638: 66,8 - 8639: 66,9 - 8640: 66,10 - 8641: 66,11 - - node: - color: '#79150096' - id: BrickTileWhiteBox - decals: - 1680: 33,25 - - node: - color: '#EFD54196' - id: BrickTileWhiteCornerNe - decals: - 5683: 69,-9 - - node: - color: '#DE3A3A44' - id: BrickTileWhiteCornerNe - decals: - 1657: 39,10 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNe - decals: - 3342: 48,-15 - 3347: 44,-14 - 3388: 53,-23 - 3568: 58,-33 - 7033: 39,-47 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerNe - decals: - 3022: -34,-40 - 3023: -30,-44 - 7785: 104,-16 - - node: - color: '#FF669896' - id: BrickTileWhiteCornerNe - decals: - 3722: 55,-16 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNe - decals: - 496: -14,-9 - 572: -36,50 - 573: -36,45 - 1683: 32,26 - 1852: 51,11 - 1986: 21,15 - 2038: 28,30 - 2579: 13,-10 - 3506: 43,-21 - 4189: 24,55 - 4199: 27,55 - 5050: 73,-9 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNe - decals: - 3862: 15,38 - 4038: 7,45 - 4085: 24,50 - 4120: 15,51 - 4239: 0,64 - 4310: 19,64 - 4344: 8,68 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerNe - decals: - 2517: 21,-30 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerNe - decals: - 4501: 36,46 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNe - decals: - 362: -10,2 - - node: - color: '#DE3A3A44' - id: BrickTileWhiteCornerNw - decals: - 1656: 38,10 - - node: - color: '#EFD54196' - id: BrickTileWhiteCornerNw - decals: - 5681: 63,-9 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNw - decals: - 3865: 10,41 - 3931: 10,45 - 4084: 22,50 - 4121: 9,51 - 4207: 6,56 - 4238: -2,64 - 4295: 3,63 - 4309: 17,64 - 4345: 4,68 - 4346: 7,68 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerNw - decals: - 4500: 32,46 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNw - decals: - 363: -12,2 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerNw - decals: - 3021: -37,-40 - 7786: 103,-16 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNw - decals: - 3330: 36,-16 - 3346: 40,-14 - 3387: 50,-23 - 3646: 55,-28 - 7034: 35,-47 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerNw - decals: - 2516: 12,-30 - 2540: 18,-25 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNw - decals: - 493: -16,-9 - 578: -38,50 - 579: -38,45 - 1486: 19,7 - 1853: 41,11 - 1977: 14,14 - 1980: 15,15 - 2036: 27,30 - 2572: 11,-10 - 3505: 41,-21 - 4188: 21,55 - 4200: 26,55 - 5051: 71,-9 - - node: - color: '#FF669896' - id: BrickTileWhiteCornerNw - decals: - 3721: 51,-16 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerSe - decals: - 2515: 21,-33 - 2535: 21,-28 - - node: - color: '#DE3A3A44' - id: BrickTileWhiteCornerSe - decals: - 1655: 39,9 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerSe - decals: - 4503: 36,42 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSe - decals: - 3339: 48,-18 - 3552: 49,-36 - 3567: 58,-34 - 3569: 58,-31 - 3667: 39,-40 - 7032: 39,-51 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSe - decals: - 3863: 15,36 - 4039: 7,43 - 4119: 14,47 - 4218: 7,52 - 4241: 0,60 - 4347: 8,65 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSe - decals: - 495: -14,-11 - 574: -36,42 - 575: -36,47 - 1690: 33,16 - 1854: 51,9 - 1966: 21,9 - 2037: 28,28 - 2573: 13,-13 - 4190: 24,53 - 4203: 27,53 - 5052: 73,-11 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSe - decals: - 361: -10,-2 - 7157: 30,-11 - 8070: 98,-55 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSe - decals: - 3024: -30,-45 - 7787: 104,-19 - - node: - color: '#FF669896' - id: BrickTileWhiteCornerSe - decals: - 3723: 55,-20 - - node: - color: '#EFD54196' - id: BrickTileWhiteCornerSe - decals: - 5682: 69,-13 - - node: - color: '#FF669896' - id: BrickTileWhiteCornerSw - decals: - 3720: 51,-20 - - node: - color: '#DE3A3A44' - id: BrickTileWhiteCornerSw - decals: - 1658: 38,9 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSw - decals: - 494: -16,-11 - 576: -38,47 - 577: -38,42 - 1694: 27,16 - 1855: 41,9 - 1972: 15,9 - 1976: 14,12 - 2574: 11,-13 - 3507: 41,-24 - 4191: 21,53 - 4202: 26,53 - 5049: 71,-11 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerSw - decals: - 2518: 12,-33 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerSw - decals: - 4502: 32,42 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSw - decals: - 3331: 36,-18 - 3553: 47,-36 - 3584: 56,-42 - 3647: 55,-29 - 3668: 37,-40 - 7035: 35,-51 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSw - decals: - 3864: 10,36 - 3932: 10,43 - 4122: 9,47 - 4219: 6,52 - 4243: -2,60 - 4349: 4,66 - - node: - color: '#EFD54196' - id: BrickTileWhiteCornerSw - decals: - 5684: 63,-13 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSw - decals: - 3025: -37,-45 - 7788: 103,-19 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSw - decals: - 364: -12,-2 - 8071: 96,-55 - - node: - color: '#334E6DC8' - id: BrickTileWhiteEndS - decals: - 7163: 27,-13 - - node: - color: '#52B4E996' - id: BrickTileWhiteEndS - decals: - 4348: 5,65 - - node: - color: '#FF81C996' - id: BrickTileWhiteInnerNe - decals: - 7072: 35,-51 - - node: - color: '#9FED580F' - id: BrickTileWhiteInnerNe - decals: - 6239: 64,28 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerNe - decals: - 3348: 44,-15 - 3583: 56,-42 - 3656: 57,-33 - 4150: 9,48 - - node: - color: '#EFB34196' - id: BrickTileWhiteInnerNe - decals: - 3034: -34,-44 - - node: - color: '#52B4E996' - id: BrickTileWhiteInnerNe - decals: - 3866: 12,38 - 3953: 19,45 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerNw - decals: - 1979: 15,14 - - node: - color: '#A4610696' - id: BrickTileWhiteInnerNw - decals: - 2542: 18,-27 - - node: - color: '#52B4E996' - id: BrickTileWhiteInnerNw - decals: - 3954: 17,45 - 4308: 17,63 - 4356: 7,67 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNw - decals: - 6229: 64,31 - - node: - color: '#FF81C996' - id: BrickTileWhiteInnerNw - decals: - 7071: 39,-51 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerNw - decals: - 3350: 40,-16 - 3431: 50,-26 - 3644: 57,-28 - 3650: 56,-31 - 4151: 15,48 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSe - decals: - 3395: 49,-28 - 3404: 39,-28 - 3657: 57,-31 - 4153: 9,51 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSe - decals: - 7156: 29,-11 - 7164: 27,-12 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerSe - decals: - 8657: 66,12 - - node: - color: '#9FED580F' - id: BrickTileWhiteInnerSe - decals: - 6240: 64,32 - - node: - color: '#FF81C996' - id: BrickTileWhiteInnerSe - decals: - 7070: 35,-47 - - node: - color: '#52B4E996' - id: BrickTileWhiteInnerSe - decals: - 4217: 7,53 - 4355: 5,66 - - node: - color: '#79150096' - id: BrickTileWhiteInnerSw - decals: - 6224: 64,29 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSw - decals: - 3396: 47,-28 - 3648: 56,-29 - 4152: 15,51 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSw - decals: - 7161: 29,-12 - - node: - color: '#52B4E996' - id: BrickTileWhiteInnerSw - decals: - 4313: 17,61 - 4350: 5,66 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSw - decals: - 1975: 15,12 - - node: - color: '#FF81C996' - id: BrickTileWhiteInnerSw - decals: - 7069: 39,-47 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineE - decals: - 3035: -34,-43 - 3036: -34,-42 - 3037: -34,-41 - 7789: 104,-18 - - node: - color: '#0000004D' - id: BrickTileWhiteLineE - decals: - 5877: 102,-21 - 5878: 102,-20 - 5879: 95,-22 - 5880: 95,-21 - 5881: 95,-20 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 3340: 48,-17 - 3341: 48,-16 - 3378: 47,-23 - 3389: 53,-25 - 3390: 53,-26 - 3391: 53,-27 - 3407: 49,-29 - 3408: 39,-29 - 3547: 49,-30 - 3548: 49,-31 - 3549: 49,-32 - 3550: 49,-33 - 3551: 49,-35 - 3570: 58,-30 - 3571: 58,-29 - 3572: 58,-28 - 3574: 56,-36 - 3575: 56,-35 - 3576: 56,-37 - 3577: 56,-38 - 3578: 56,-39 - 3579: 56,-40 - 3580: 56,-41 - 3658: 39,-30 - 3659: 39,-31 - 3660: 39,-32 - 3661: 39,-33 - 3662: 39,-34 - 3663: 39,-35 - 3664: 39,-36 - 3665: 39,-37 - 3666: 39,-38 - 4142: 9,49 - 4143: 9,50 - 7042: 39,-50 - 7043: 39,-49 - 7044: 39,-48 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineE - decals: - 3869: 12,39 - 3870: 12,40 - 3972: 19,56 - 3973: 19,55 - 3974: 19,53 - 3975: 19,52 - 3976: 19,51 - 3977: 19,50 - 3978: 19,49 - 3979: 19,48 - 3980: 19,47 - 3981: 19,46 - 4076: 24,46 - 4081: 24,47 - 4082: 24,48 - 4083: 24,49 - 4158: 15,50 - 4240: 0,62 - 4311: 19,63 - 4312: 19,61 - 4352: 8,66 - 4353: 8,67 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineE - decals: - 358: -10,-1 - 359: -10,0 - 360: -10,1 - 3969: 19,57 - 3970: 19,59 - 3971: 19,60 - 7153: 29,-14 - 7154: 29,-13 - 7155: 29,-12 - 7158: 30,-10 - 8064: 98,-52 - 8065: 98,-53 - 8066: 98,-54 - 8123: 58,53 - 8124: 58,54 - 8125: 58,55 - 8126: 58,56 - 8127: 58,58 - 8128: 58,59 - 8129: 58,60 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineE - decals: - 8658: 66,11 - 8659: 66,10 - 8660: 66,9 - 8661: 66,8 - - node: - color: '#FF81C996' - id: BrickTileWhiteLineE - decals: - 7057: 35,-50 - 7058: 35,-49 - 7059: 35,-48 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineE - decals: - 4507: 36,43 - 4508: 36,44 - 4509: 36,45 - - node: - color: '#FF669896' - id: BrickTileWhiteLineE - decals: - 3727: 55,-19 - 3728: 55,-18 - 3729: 55,-17 - - node: - color: '#9FED580F' - id: BrickTileWhiteLineE - decals: - 6235: 64,29 - 6236: 64,31 - 6241: 64,30 - - node: - color: '#A4610696' - id: BrickTileWhiteLineE - decals: - 2533: 21,-32 - 2534: 21,-31 - 2536: 21,-27 - 2537: 21,-26 - 8052: 50,-19 - - node: - color: '#D4D4D453' - id: BrickTileWhiteLineE - decals: - 6483: 79,44 - 6484: 79,45 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 580: -36,43 - 581: -36,44 - 582: -36,48 - 583: -36,49 - 1460: 25,1 - 1461: 25,2 - 1462: 25,3 - 1506: 39,6 - 1665: 25,9 - 1666: 25,10 - 1667: 25,11 - 1668: 25,12 - 1669: 25,13 - 1670: 25,14 - 1684: 32,25 - 1685: 32,24 - 1686: 32,23 - 1687: 33,20 - 1688: 33,19 - 1689: 33,17 - 1775: 25,16 - 1776: 25,17 - 1777: 25,19 - 1778: 25,21 - 1779: 25,22 - 1780: 25,23 - 1781: 25,24 - 1782: 25,26 - 1783: 25,27 - 1856: 51,10 - 1965: 21,12 - 2039: 28,29 - 2052: 25,29 - 2053: 25,30 - 2577: 13,-12 - 2578: 13,-11 - 3511: 43,-23 - 3512: 43,-22 - 4196: 24,54 - 4201: 27,54 - 5053: 73,-10 - 6274: 56,26 - 6275: 56,27 - 6276: 56,29 - 6277: 56,30 - 6278: 56,31 - 6279: 56,33 - 6280: 56,34 - - node: - color: '#EFD54196' - id: BrickTileWhiteLineE - decals: - 5694: 69,-12 - 5695: 69,-11 - - node: - color: '#EFD54196' - id: BrickTileWhiteLineN - decals: - 5689: 64,-9 - 5690: 65,-9 - 5691: 66,-9 - 5692: 67,-9 - 5693: 68,-9 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineN - decals: - 4510: 34,46 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 2103: -12,-4 - 2104: -10,-4 - 2105: -9,-4 - 6227: 62,31 - 6228: 63,31 - - node: - color: '#A4610696' - id: BrickTileWhiteLineN - decals: - 2521: 13,-30 - 2522: 14,-30 - 2523: 15,-30 - 2524: 16,-30 - 2525: 17,-30 - 2539: 19,-25 - 8045: 21,7 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - decals: - 8662: 67,7 - 8663: 68,7 - 8664: 69,7 - 8665: 70,7 - 8666: 71,7 - 8667: 72,7 - 8668: 73,7 - - node: - color: '#00000076' - id: BrickTileWhiteLineN - decals: - 5471: 73,-4 - 5472: 72,-4 - 5473: 71,-4 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineN - decals: - 538: -18,-4 - 539: -19,-4 - 1921: 50,7 - 5152: 54,2 - 5153: 55,2 - 5154: 56,2 - - node: - color: '#FF669896' - id: BrickTileWhiteLineN - decals: - 3730: 54,-16 - 3731: 53,-16 - 3732: 52,-16 - - node: - color: '#D381C996' - id: BrickTileWhiteLineN - decals: - 3343: 47,-15 - 3344: 46,-15 - 3345: 45,-15 - 3351: 39,-16 - 3352: 38,-16 - 3353: 37,-16 - 3377: 46,-22 - 3386: 51,-23 - 3423: 39,-26 - 3424: 40,-26 - 3425: 41,-26 - 3426: 42,-26 - 3427: 44,-26 - 3428: 46,-26 - 3429: 48,-26 - 3430: 49,-26 - 3581: 57,-42 - 3645: 56,-28 - 3651: 55,-31 - 3652: 54,-31 - 4137: 14,48 - 4138: 13,48 - 4139: 12,48 - 4140: 11,48 - 4141: 10,48 - 7036: 37,-47 - 7037: 36,-47 - 7038: 38,-47 - - node: - color: '#9FED580F' - id: BrickTileWhiteLineN - decals: - 6233: 66,28 - 6234: 65,28 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 669: -38,40 - 670: -37,40 - 1476: 37,7 - 1477: 36,7 - 1478: 34,7 - 1479: 33,7 - 1480: 32,7 - 1481: 31,7 - 1482: 29,7 - 1483: 27,7 - 1484: 26,7 - 1485: 20,7 - 1681: 28,26 - 1682: 31,26 - 1858: 43,11 - 1859: 44,11 - 1860: 46,11 - 1861: 49,11 - 1862: 48,11 - 1981: 16,15 - 1982: 17,15 - 1983: 18,15 - 1984: 19,15 - 1985: 20,15 - 4194: 23,55 - 4195: 22,55 - 5054: 72,-9 - - node: - color: '#FF81C996' - id: BrickTileWhiteLineN - decals: - 7063: 38,-51 - 7064: 37,-51 - 7065: 36,-51 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 3867: 14,38 - 3868: 13,38 - 3944: 21,45 - 3945: 20,45 - 3946: 16,45 - 3947: 15,45 - 3948: 14,45 - 3949: 13,45 - 3950: 12,45 - 3951: 11,45 - 4043: 6,45 - 4044: 5,45 - 4045: 4,45 - 4086: 23,50 - 4128: 10,51 - 4129: 11,51 - 4130: 12,51 - 4131: 13,51 - 4132: 14,51 - 4208: 7,56 - 4209: 8,56 - 4210: 9,56 - 4211: 10,56 - 4212: 11,56 - 4229: 15,59 - 4230: 14,59 - 4231: 13,59 - 4232: 15,55 - 4233: 14,55 - 4234: 13,55 - 4244: -1,64 - 4296: 4,63 - 4297: 5,63 - 4298: 6,63 - 4299: 8,63 - 4300: 9,63 - 4301: 10,63 - 4302: 11,63 - 4303: 12,63 - 4304: 13,63 - 4305: 15,63 - 4306: 16,63 - 4307: 18,64 - 4357: 6,67 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineN - decals: - 3032: -32,-44 - 3033: -33,-44 - 3038: -35,-40 - 3039: -36,-40 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineS - decals: - 4504: 35,42 - 4505: 34,42 - 4506: 33,42 - 7736: 123,-8 - 7737: 124,-8 - 7738: 125,-8 - - node: - color: '#EFDF4141' - id: BrickTileWhiteLineS - decals: - 5824: 91,5 - 5825: 90,5 - 5826: 89,5 - 5827: 88,5 - 5828: 87,5 - 5829: 86,5 - 5830: 83,5 - 5831: 84,5 - 5832: 85,5 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 8650: 73,12 - 8651: 72,12 - 8652: 71,12 - 8653: 70,12 - 8654: 69,12 - 8655: 67,12 - 8656: 68,12 - - node: - color: '#A4610696' - id: BrickTileWhiteLineS - decals: - 2526: 13,-33 - 2527: 14,-33 - 2528: 15,-33 - 2529: 17,-33 - 2530: 18,-33 - 2531: 19,-33 - 2532: 20,-33 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 3026: -36,-45 - 3027: -35,-45 - 3028: -34,-45 - 3029: -33,-45 - 3030: -32,-45 - 3031: -31,-45 - 8055: 18,-17 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 3936: 13,43 - 3937: 15,43 - 3938: 16,43 - 3939: 19,43 - 3940: 20,43 - 3941: 21,43 - 3942: 22,43 - 3943: 23,43 - 4033: 18,43 - 4034: 17,43 - 4040: 6,43 - 4041: 5,43 - 4042: 4,43 - 4123: 13,47 - 4124: 12,47 - 4125: 11,47 - 4126: 10,47 - 4213: 11,53 - 4214: 10,53 - 4215: 9,53 - 4216: 8,53 - 4223: 15,53 - 4224: 14,53 - 4225: 13,53 - 4226: 13,57 - 4227: 14,57 - 4228: 15,57 - 4242: -1,60 - 4314: 16,61 - 4315: 15,61 - 4316: 14,61 - 4317: 13,61 - 4318: 12,61 - 4319: 11,61 - 4320: 10,61 - 4321: 8,61 - 4322: 7,61 - 4323: 6,61 - 4324: 5,61 - 4325: 4,61 - 4358: 6,66 - 8044: 15,-17 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 3332: 37,-18 - 3333: 38,-18 - 3334: 39,-18 - 3335: 40,-18 - 3336: 41,-18 - 3337: 43,-18 - 3338: 44,-18 - 3379: 46,-24 - 3392: 52,-28 - 3393: 51,-28 - 3394: 50,-28 - 3397: 46,-28 - 3398: 45,-28 - 3399: 44,-28 - 3400: 43,-28 - 3401: 42,-28 - 3402: 41,-28 - 3403: 40,-28 - 3573: 57,-34 - 3582: 57,-42 - 4145: 14,51 - 4146: 13,51 - 4147: 12,51 - 4148: 11,51 - 4149: 10,51 - 5057: 56,-13 - 5058: 55,-13 - 5059: 54,-13 - 5060: 52,-13 - 5061: 53,-13 - 7039: 38,-51 - 7040: 37,-51 - 7041: 36,-51 - 8051: 17,-17 - - node: - color: '#9FED580F' - id: BrickTileWhiteLineS - decals: - 6237: 65,32 - 6238: 66,32 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineS - decals: - 5164: 56,8 - 5165: 55,8 - 5166: 54,8 - 5468: 73,-4 - 5469: 72,-4 - 5470: 71,-4 - - node: - color: '#00000079' - id: BrickTileWhiteLineS - decals: - 5158: 56,2 - 5159: 55,2 - 5160: 54,2 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineS - decals: - 498: -15,-11 - 1466: 24,5 - 1467: 26,5 - 1468: 27,5 - 1469: 29,5 - 1470: 30,5 - 1471: 32,5 - 1472: 33,5 - 1473: 35,5 - 1474: 36,5 - 1475: 38,5 - 1487: 20,5 - 1488: 21,5 - 1489: 22,5 - 1691: 32,16 - 1692: 31,16 - 1693: 30,16 - 1863: 49,9 - 1864: 48,9 - 1865: 47,9 - 1866: 45,9 - 1867: 44,9 - 1967: 20,9 - 1968: 19,9 - 1969: 18,9 - 1970: 17,9 - 1971: 16,9 - 3508: 42,-24 - 4192: 22,53 - 4193: 23,53 - 8047: 16,-17 - - node: - color: '#221F226C' - id: BrickTileWhiteLineS - decals: - 1922: 50,7 - - node: - color: '#FF669896' - id: BrickTileWhiteLineS - decals: - 3724: 54,-20 - 3725: 53,-20 - 3726: 52,-20 - - node: - color: '#FF81C996' - id: BrickTileWhiteLineS - decals: - 7066: 36,-47 - 7067: 37,-47 - 7068: 38,-47 - - node: - color: '#6F6F73D0' - id: BrickTileWhiteLineS - decals: - 542: -18,-4 - 543: -19,-4 - - node: - color: '#EFD54196' - id: BrickTileWhiteLineS - decals: - 5677: 58,-13 - 5678: 59,-13 - 5679: 61,-13 - 5680: 60,-13 - 5685: 67,-13 - 5686: 66,-13 - 5687: 65,-13 - 5688: 64,-13 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineS - decals: - 365: -11,-2 - 7162: 28,-12 - 8072: 97,-55 - - node: - color: '#79150096' - id: BrickTileWhiteLineS - decals: - 6222: 62,29 - 6223: 63,29 - - node: - color: '#A4610696' - id: BrickTileWhiteLineW - decals: - 2519: 12,-32 - 2520: 12,-31 - 2541: 18,-26 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineW - decals: - 366: -12,-1 - 367: -12,1 - 6230: 64,32 - 6231: 64,33 - 6232: 64,34 - 7159: 29,-14 - 7160: 29,-13 - 7165: 27,-12 - 7166: 27,-11 - 7167: 27,-10 - 8067: 96,-54 - 8068: 96,-53 - 8069: 96,-52 - - node: - color: '#D381C996' - id: BrickTileWhiteLineW - decals: - 3329: 36,-17 - 3349: 40,-15 - 3380: 45,-23 - 3405: 47,-29 - 3406: 37,-29 - 3421: 37,-28 - 3422: 37,-27 - 3432: 50,-25 - 3433: 50,-24 - 3554: 47,-34 - 3555: 47,-33 - 3556: 47,-32 - 3557: 47,-31 - 3558: 47,-30 - 3585: 56,-41 - 3586: 56,-40 - 3587: 56,-39 - 3588: 56,-38 - 3589: 56,-37 - 3590: 56,-36 - 3591: 56,-35 - 3643: 57,-27 - 3649: 56,-30 - 3669: 37,-38 - 3670: 37,-37 - 3671: 37,-36 - 3672: 37,-34 - 3673: 37,-33 - 3674: 37,-32 - 3675: 37,-30 - 4144: 15,49 - 4157: 15,50 - 7045: 35,-49 - 7046: 35,-48 - 7073: 35,-50 - - node: - color: '#FF669896' - id: BrickTileWhiteLineW - decals: - 3717: 51,-19 - 3718: 51,-18 - 3719: 51,-17 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineW - decals: - 3019: -37,-44 - 3020: -37,-42 - 7790: 103,-18 - - node: - color: '#0000006F' - id: BrickTileWhiteLineW - decals: - 6487: 79,44 - 6488: 79,45 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineW - decals: - 5867: 95,-22 - 5868: 95,-21 - 5869: 95,-20 - 5870: 102,-21 - 5871: 102,-20 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineW - decals: - 3871: 10,37 - 3872: 10,38 - 3873: 10,39 - 3874: 10,40 - 3952: 10,44 - 3955: 17,46 - 3956: 17,47 - 3957: 17,50 - 3958: 17,51 - 3959: 17,52 - 3960: 17,53 - 3961: 17,55 - 3962: 17,56 - 3963: 17,57 - 3964: 17,59 - 3965: 17,60 - 4048: 9,43 - 4049: 9,45 - 4077: 22,46 - 4078: 22,47 - 4079: 22,48 - 4080: 22,49 - 4127: 9,50 - 4220: 6,53 - 4326: 3,62 - 4330: 2,62 - 4354: 4,67 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 4511: 32,44 - - node: - color: '#79150096' - id: BrickTileWhiteLineW - decals: - 6225: 64,28 - 6226: 64,26 - 6246: 64,27 - - node: - color: '#FF81C996' - id: BrickTileWhiteLineW - decals: - 7060: 39,-50 - 7061: 39,-49 - 7062: 39,-48 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 497: -16,-10 - 584: -38,48 - 585: -38,49 - 586: -38,43 - 587: -38,44 - 1463: 23,1 - 1464: 23,2 - 1465: 23,3 - 1659: 23,9 - 1660: 23,12 - 1695: 27,17 - 1696: 27,19 - 1697: 27,20 - 1698: 27,21 - 1699: 27,22 - 1700: 27,23 - 1701: 27,24 - 1768: 23,16 - 1769: 23,17 - 1770: 23,19 - 1771: 23,21 - 1772: 23,23 - 1773: 23,24 - 1774: 23,27 - 1857: 41,10 - 1973: 15,10 - 1974: 15,11 - 1978: 14,13 - 2040: 27,29 - 2054: 23,29 - 2055: 23,30 - 2575: 11,-12 - 2576: 11,-11 - 3509: 41,-23 - 3510: 41,-22 - - node: - color: '#FFFFFFFF' - id: Busha1 - decals: - 6551: 84.838936,41.97285 - - node: - color: '#FFFFFFFF' - id: Bushb1 - decals: - 4538: 29.053492,-53.972366 - - node: - color: '#FFFFFFFF' - id: Bushb2 - decals: - 3069: -28.924486,-23.036465 - 4343: 4,65 - - node: - color: '#FFFFFFFF' - id: Bushb3 - decals: - 1395: 18.050806,-1.001214 - 4536: 32.02224,-52.08174 - 6304: 106.39112,38.835938 - - node: - color: '#FFFFFFFF' - id: Bushc2 - decals: - 7688: 90.679,-52.116093 - - node: - color: '#FFFFFFFF' - id: Bushc3 - decals: - 4537: 31.475367,-45.941116 - - node: - color: '#FFFFFFFF' - id: Bushd3 - decals: - 909: -35.17835,56.899223 - - node: - color: '#FFFFFFFF' - id: Bushe1 - decals: - 4547: 29.506617,-53.878616 - 6612: 67.95875,55.00042 - - node: - color: '#FFFFFFFF' - id: Bushe2 - decals: - 6613: 68.72437,54.93792 - - node: - color: '#FFFFFFFF' - id: Bushe3 - decals: - 6563: 87.13581,41.97285 - 6614: 68.33375,54.96917 - - node: - color: '#FFFFFFFF' - id: Bushe4 - decals: - 736: -34.244915,33.017494 - - node: - color: '#FFFFFFFF' - id: Bushf3 - decals: - 3081: -26.049486,-8.963896 - 3924: 9.978245,41.988174 - - node: - color: '#FFFFFFFF' - id: Bushg1 - decals: - 902: -33.131474,56.992973 - 6618: 66.95875,54.90667 - - node: - color: '#FFFFFFFF' - id: Bushg2 - decals: - 284: -4.471508,41.21996 - 3532: 43.178425,-19.108522 - 6610: 70.97437,52.15418 - 6619: 69.24,55.016045 - - node: - color: '#FFFFFFFF' - id: Bushg3 - decals: - 6611: 68.115,52.06043 - - node: - color: '#FFFFFFFF' - id: Bushh1 - decals: - 897: -35.725224,54.66485 - 6596: 69.069954,42.01216 - - node: - color: '#FFFFFFFF' - id: Bushh2 - decals: - 898: -34.975224,54.274223 - - node: - color: '#FFFFFFFF' - id: Bushh3 - decals: - 899: -33.975224,55.03985 - 1935: 48.9472,7.053311 - 6562: 93.088936,42.0666 - 6595: 66.913704,41.94966 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 269: -8.549633,15.077425 - 723: -34.82304,36.93937 - 900: -33.162724,53.1961 - 908: -36.412724,53.22735 - 1934: 51.119076,1.8814359 - 3080: -27.971361,-8.963896 - 3922: 10.478245,35.019424 - 4545: 30.990992,-45.92549 - 4546: 30.006617,-53.89424 - 4549: 26.194336,-45.04562 - 6556: 90.838936,42.019726 - 6597: 67.89808,42.01216 - 6607: 69.59937,49.044804 - 7685: 92.882126,-52.881718 - - node: - color: '#FFFFFFFF' - id: Bushi2 - decals: - 270: -5.018383,15.046175 - 724: -35.04179,33.03312 - 906: -33.67835,56.8836 - 7686: 89.304,-54.866093 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 271: -6.534008,15.0618 - 730: -31.026165,36.90812 - 901: -34.693974,53.0711 - 3531: 51.020737,-24.440681 - 6557: 86.79206,41.925976 - 6608: 68.06812,48.99793 - 7687: 88.179,-53.100468 - - node: - color: '#FFFFFFFF' - id: Bushi4 - decals: - 729: -31.91679,37.09562 - 905: -36.537724,57.149223 - 907: -33.943974,52.97735 - 1393: -28.738531,41.86413 - 3530: 50.958237,-25.487556 - 4544: 29.490992,-45.92549 - 6558: 85.29206,41.832226 - 7684: 91.929,-54.787968 - - node: - color: '#FFFFFFFF' - id: Bushj1 - decals: - 735: -31.19804,36.97062 - 3923: 15.946995,42.09755 - 6311: 106.67237,38.054688 - - node: - color: '#FFFFFFFF' - id: Bushj2 - decals: - 774: -9.114742,47.055725 - 775: -8.915163,47.04446 - 6309: 108.062996,38.773438 - 6617: 67.16187,52.016045 - - node: - color: '#FFFFFFFF' - id: Bushj3 - decals: - 6310: 106.281746,40.070312 - 6616: 69.95875,52.03167 - - node: - color: '#FFFFFFFF' - id: Bushk1 - decals: - 904: -35.86585,56.9461 - - node: - color: '#FFFFFFFF' - id: Bushk2 - decals: - 903: -36.8971,54.35235 - 1933: 50.056576,1.9439359 - 6615: 70.83375,55.016045 - - node: - color: '#FFFFFFFF' - id: Bushk3 - decals: - 731: -34.85429,37.017494 - 732: -31.94804,37.111244 - 733: -34.88554,32.986244 - 734: -31.963665,33.06437 - - node: - color: '#FFFFFFFF' - id: Bushl1 - decals: - 1937: 43.09465,4.022061 - - node: - color: '#FFFFFFFF' - id: Bushl2 - decals: - 1936: 40.922775,4.006436 - - node: - color: '#FFFFFFFF' - id: Bushm2 - decals: - 2001: 17.487259,11.980481 - 5184: 56.978905,5.4696355 - 6561: 90.963936,41.97285 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Bushm2 - decals: - 739: -30.99804,32.97062 - - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 6559: 92.088936,42.050976 - 6560: 85.91706,42.019726 - 6609: 68.94312,49.02918 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Caution - decals: - 1139: -5,77 - - node: - color: '#FFFFFF3B' - id: CheckerNESW - decals: - 4379: 17,66 - 4380: 17,67 - 4381: 17,68 - 4382: 18,68 - 4383: 18,67 - 4384: 18,66 - 4385: 19,66 - 4386: 19,67 - 4387: 19,68 - - node: - color: '#D4D4D40F' - id: CheckerNESW - decals: - 4986: 65,-18 - 4987: 64,-18 - 4988: 63,-18 - 4989: 63,-17 - 4990: 64,-17 - 4991: 65,-17 - 4992: 65,-16 - 4993: 64,-16 - 4994: 63,-16 - 4995: 63,-15 - 4996: 64,-15 - 4997: 65,-15 - - node: - color: '#D381C996' - id: CheckerNESW - decals: - 4740: 35,-36 - 4741: 35,-35 - 4742: 35,-34 - 4743: 34,-34 - 4744: 34,-35 - 4745: 34,-36 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 1836: 48,27 - 1837: 49,27 - 1838: 50,27 - 1839: 50,28 - 1840: 50,29 - 1841: 51,29 - 1842: 51,28 - 1843: 51,27 - 3896: 14,40 - 3897: 14,41 - 3898: 15,41 - 3899: 15,40 - 3900: 16,40 - 3901: 16,41 - 3902: 17,41 - 3903: 18,41 - 3904: 18,40 - 3905: 17,40 - 3906: 11,42 - 3907: 12,42 - 3908: 14,42 - - node: - color: '#52B4E947' - id: CheckerNESW - decals: - 4418: 23,57 - 4419: 22,57 - 4420: 21,57 - 4421: 21,58 - 4422: 22,58 - 4423: 23,58 - 4424: 23,59 - 4425: 22,59 - 4426: 21,59 - 4427: 22,60 - 4428: 23,60 - - node: - color: '#334E6DC8' - id: CheckerNESW - decals: - 6102: 58,5 - 6103: 58,6 - 6104: 59,6 - 6105: 59,5 - 6106: 60,5 - 6107: 60,6 - 8114: 59,49 - 8115: 60,49 - 8116: 61,49 - 8117: 61,50 - 8118: 60,50 - 8119: 59,50 - 8120: 59,51 - 8121: 60,51 - 8122: 61,51 - - node: - color: '#52B4E94A' - id: CheckerNESW - decals: - 4363: 5,70 - 4364: 4,70 - 4365: 4,71 - 4366: 5,71 - 4367: 5,72 - 4368: 4,72 - 4369: 6,72 - 4370: 6,71 - 4371: 6,70 - 4372: 7,70 - 4373: 7,71 - 4374: 7,72 - 6114: 60,14 - 6115: 60,15 - 6116: 61,15 - 6117: 61,14 - 6118: 62,14 - 6119: 62,15 - 6120: 62,16 - 6121: 61,16 - 6122: 60,16 - 6123: 60,17 - 6124: 61,17 - 6125: 62,17 - 6126: 62,18 - 6127: 61,18 - 6128: 60,18 - 6129: 61,19 - 6130: 62,19 - 6131: 64,18 - 6132: 65,18 - 6133: 66,18 - 6134: 66,19 - 6135: 67,18 - 6136: 68,18 - 6137: 68,19 - 6138: -33,25 - 6139: -33,26 - 6140: -33,27 - 6141: -34,27 - 6142: -34,26 - 6143: -34,25 - 6144: -35,25 - 6145: -35,26 - 6146: -35,27 - 6147: -36,27 - 6148: -36,26 - 6149: -36,25 - 6150: -37,25 - 6151: -37,26 - 6152: -37,27 - 6153: -38,27 - 6154: -38,26 - 6155: -38,25 - 6156: -34,23 - 6157: -34,22 - 6158: -34,21 - 6159: -33,21 - 6160: -33,22 - 6161: -33,23 - 6162: -34,24 - - node: - color: '#FFCF7C57' - id: CheckerNESW - decals: - 2391: 5,-38 - 2392: 5,-37 - 2393: 5,-36 - 2394: 6,-36 - 2395: 6,-37 - 2396: 6,-38 - 2397: 7,-38 - 2398: 9,-38 - 2399: 8,-38 - 2400: 9,-37 - 2401: 8,-37 - 2402: 7,-37 - 2403: 7,-36 - 2404: 8,-36 - 2405: 9,-36 - 2406: 9,-35 - 2407: 8,-35 - 2408: 7,-35 - 2409: 6,-35 - 2410: 6,-34 - 2411: 7,-34 - 2412: 8,-34 - 2413: 9,-34 - 2414: 9,-33 - 2415: 10,-33 - 2416: 10,-32 - 2417: 9,-32 - 2418: 8,-32 - 2419: 8,-33 - 2420: 7,-33 - 2421: 7,-32 - 2422: 6,-32 - 2423: 6,-33 - 2424: 6,-31 - 2425: 5,-31 - 2426: 7,-31 - 2427: 8,-31 - 2428: 9,-31 - 2429: 10,-31 - 2430: 10,-30 - 2431: 8,-30 - 2432: 9,-30 - 2433: 7,-30 - 2434: 6,-30 - 2435: 5,-30 - - node: - color: '#FFFFFFBD' - id: CheckerNESW - decals: - 0: -9,17 - 1: -8,17 - 2: -7,17 - 3: -6,17 - 4: -5,17 - 5: -5,18 - 6: -6,18 - 7: -7,18 - 8: -8,18 - 9: -9,18 - 10: -9,19 - 11: -8,19 - 12: -7,19 - 13: -6,19 - 14: -5,19 - 15: -5,20 - 16: -6,20 - 17: -7,20 - 18: -8,20 - 19: -9,20 - 20: -9,21 - 21: -8,21 - 22: -7,21 - 23: -6,21 - 24: -5,21 - 25: -5,22 - 26: -5,23 - 27: -5,24 - 28: -6,24 - 29: -6,23 - 30: -6,22 - 31: -7,22 - 32: -8,22 - 33: -9,22 - 34: -9,23 - 35: -8,23 - 36: -7,23 - 37: -7,24 - 38: -8,24 - 39: -9,24 - 40: -10,24 - 41: -11,24 - 42: -12,24 - 43: -12,25 - 44: -12,26 - 45: -11,26 - 46: -11,25 - 47: -10,25 - 48: -10,26 - 49: -9,26 - 50: -9,25 - - node: - color: '#D4D4D412' - id: CheckerNESW - decals: - 2174: 4,-18 - 2175: 5,-18 - 2176: 6,-18 - 2177: 8,-18 - 2178: 8,-17 - 2179: 7,-17 - 2180: 6,-17 - 2181: 5,-17 - 2182: 4,-17 - - node: - color: '#D4D4D428' - id: CheckerNESW - decals: - 337: -10,29 - 338: -10,30 - 339: -10,31 - 422: -16,37 - 423: -17,37 - 424: -17,38 - 425: -15,38 - 426: -15,37 - 427: -15,37 - 428: -16,37 - 429: -17,37 - 430: -17,38 - 431: -15,38 - 432: -16,38 - 433: -16,38 - 434: -15,39 - 435: -15,39 - 436: -16,39 - 437: -16,39 - 438: -17,39 - 439: -17,39 - 440: -17,40 - 441: -17,40 - 442: -16,40 - 443: -16,40 - 444: -15,40 - 445: -15,40 - 446: -15,41 - 447: -15,41 - 448: -16,41 - 449: -16,41 - 450: -17,41 - 451: -17,41 - 452: -16,42 - 453: -16,42 - 454: -15,42 - 455: -15,42 - 5517: 76,-15 - 5518: 77,-15 - 5519: 78,-15 - 5520: 78,-14 - 5521: 77,-14 - 5522: 76,-14 - 5523: 75,-14 - 5524: 75,-15 - 5525: 74,-15 - 5526: 74,-14 - 5527: 73,-14 - 5528: 73,-15 - 5529: 72,-15 - 5530: 72,-14 - 5531: 78,-13 - 5532: 78,-12 - 5533: 78,-11 - 5534: 78,-10 - 5535: 77,-10 - 5536: 76,-10 - 5537: 76,-11 - 5538: 77,-11 - 5539: 77,-12 - 5540: 76,-12 - 5541: 76,-13 - 5542: 77,-13 - - node: - color: '#EFCF4179' - id: CheckerNESW - decals: - 6905: -9,-30 - 6906: -10,-29 - 6907: -11,-29 - 6908: -12,-30 - 6909: -11,-28 - 6910: -8,-28 - - node: - color: '#DE3A3A96' - id: CheckerNESW - decals: - 1601: 41,5 - 1602: 41,6 - 1603: 41,7 - 1604: 42,7 - 1605: 42,5 - 1606: 42,6 - 1607: 43,5 - 1608: 43,6 - 1609: 43,7 - 1610: 50,3 - 1611: 51,3 - 1612: 51,4 - 1613: 50,4 - 1614: 49,4 - 1615: 49,5 - 1616: 50,5 - 1617: 51,5 - 1618: 51,7 - 1619: 51,6 - 1620: 50,6 - 1621: 49,6 - 2027: 21,1 - 2028: 21,2 - 2029: 21,3 - 2030: 20,3 - 2031: 20,2 - 2032: 20,1 - 2033: 19,1 - 2034: 19,2 - 2035: 19,3 - 2712: 20,-12 - - node: - color: '#EFD54169' - id: CheckerNESW - decals: - 5242: 82,-13 - 5243: 83,-13 - 5244: 84,-13 - 5245: 85,-13 - 5246: 85,-12 - 5247: 84,-12 - 5248: 83,-12 - 5249: 82,-12 - 5250: 82,-11 - 5251: 83,-11 - 5252: 84,-11 - 5253: 85,-11 - - node: - color: '#9FED5896' - id: CheckerNESW - decals: - 3770: 20,36 - 3771: 20,37 - 3772: 20,38 - 3773: 20,39 - 3774: 21,39 - 3775: 21,38 - 3776: 21,37 - 3777: 21,36 - 3778: 22,36 - 3779: 22,37 - 3780: 22,38 - 3781: 22,39 - 3782: 23,39 - 3783: 23,40 - 3784: 23,41 - 3785: 25,41 - 3786: 24,41 - 3787: 25,40 - 3788: 24,40 - 3789: 24,39 - 3790: 25,39 - 3791: 25,38 - 3792: 24,38 - 3793: 23,38 - 3794: 23,37 - 3795: 23,36 - 3796: 24,37 - 3797: 25,37 - 3798: 25,36 - 4262: 0,57 - 4263: 0,58 - 4264: -1,58 - 4265: -1,57 - 4266: -2,57 - 4267: -2,58 - 4268: -2,59 - 4453: 30,45 - 4454: 30,46 - 4455: 29,46 - 4456: 29,45 - 4457: 28,45 - 4458: 28,46 - 4459: 27,46 - 4460: 27,45 - 4461: 28,40 - 4462: 28,41 - 4463: 28,42 - 4464: 29,42 - 4465: 29,41 - 4466: 29,40 - 4467: 30,43 - 4468: 29,43 - 4469: 28,43 - 4470: 27,43 - - node: - color: '#A4610696' - id: CheckerNESW - decals: - 2593: 3,-22 - 2594: 3,-21 - 2595: 2,-21 - 2596: 2,-22 - 2597: 1,-22 - 2598: 1,-21 - 2599: 0,-21 - 2600: 0,-22 - 2601: -1,-22 - 2602: -1,-21 - 2603: -2,-21 - 2604: -2,-22 - 2605: -3,-22 - 2606: -3,-21 - - node: - color: '#D4D4D42B' - id: CheckerNESW - decals: - 209: -11,34 - 210: -10,34 - 211: -9,34 - 212: -8,34 - 213: -7,34 - 214: -5,34 - 215: -4,34 - 216: -4,35 - 217: -5,35 - 218: -5,36 - 219: -4,36 - 220: -4,37 - 221: -5,37 - 222: -4,38 - 223: -5,38 - 224: -5,39 - 225: -4,39 - 226: -4,40 - 227: -5,40 - 228: -6,40 - 229: -7,40 - - node: - color: '#EFB34196' - id: CheckerNESW - decals: - 2807: -18,-23 - 2808: -19,-23 - 2809: -20,-23 - 2810: -20,-22 - 2811: -19,-22 - 2812: -18,-21 - 2813: -19,-21 - 2814: -20,-21 - 2815: -20,-20 - - node: - color: '#9FED584D' - id: CheckerNESW - decals: - 8500: 96,19 - 8501: 96,20 - 8502: 96,21 - 8503: 97,21 - 8504: 97,20 - 8505: 97,19 - 8506: 97,18 - 8507: 96,18 - 8508: 98,18 - 8509: 98,19 - 8510: 98,20 - 8511: 98,21 - 8512: 99,21 - 8513: 99,20 - 8514: 99,19 - 8515: 99,18 - 8516: 100,18 - 8517: 100,19 - 8518: 100,20 - 8519: 100,21 - 8520: 95,19 - 8521: 95,20 - - node: - color: '#EFD8416C' - id: CheckerNESW - decals: - 5852: 97,-13 - 5853: 98,-13 - 5854: 98,-12 - 5855: 97,-12 - 5856: 97,-11 - 5857: 98,-11 - - node: - color: '#79150096' - id: CheckerNESW - decals: - 51: -14,24 - 52: -14,25 - 53: -14,26 - 54: -15,26 - 55: -15,25 - 56: -15,24 - 57: -16,24 - 58: -16,25 - 59: -16,26 - 60: -19,24 - 61: -18,24 - 62: -17,24 - 63: -17,25 - 64: -18,25 - 65: -19,25 - 66: -20,25 - 67: -20,26 - 68: -19,26 - 69: -18,26 - 70: -17,26 - 5671: 61,1 - 5672: 59,2 - - node: - color: '#7915009E' - id: CheckerNESW - decals: - 285: -13,32 - 286: -13,32 - 287: -13,33 - 288: -13,33 - 289: -14,33 - 290: -14,33 - 291: -14,32 - 292: -14,32 - 293: -15,32 - 294: -15,32 - 295: -15,33 - 296: -15,33 - 297: -15,34 - 298: -15,34 - 299: -15,35 - 300: -15,35 - 301: -16,35 - 302: -16,35 - 303: -17,35 - 304: -17,35 - 305: -17,34 - 306: -17,34 - 307: -16,34 - 308: -16,34 - 309: -16,33 - 310: -16,33 - 311: -17,33 - 312: -17,33 - 313: -17,32 - 314: -17,32 - 315: -16,32 - 316: -16,32 - - node: - color: '#C3922553' - id: CheckerNESW - decals: - 5395: 78,-7 - 5396: 79,-7 - 5397: 80,-7 - 5398: 81,-7 - 5399: 82,-7 - 5400: 83,-7 - 5401: 83,-6 - 5402: 82,-6 - 5403: 81,-6 - 5404: 80,-6 - 5405: 79,-6 - 5406: 78,-6 - 5407: 77,-6 - 5408: 77,-7 - 5409: 76,-6 - 5410: 76,-5 - 5411: 76,-4 - 5412: 76,-3 - 5413: 77,-3 - 5414: 77,-4 - 5415: 77,-5 - 5416: 78,-5 - 5417: 78,-4 - 5418: 79,-4 - 5419: 79,-5 - 5420: 80,-5 - 5421: 80,-4 - 5422: 81,-4 - 5423: 81,-5 - 5424: 82,-5 - 5425: 82,-4 - 5426: 83,-5 - 5427: 83,-4 - 5428: 83,-3 - 5429: 83,-1 - 5430: 83,0 - 5431: 83,1 - 5432: 82,1 - 5433: 82,0 - 5434: 81,0 - 5435: 81,1 - 5436: 80,1 - 5437: 80,0 - 5438: 79,0 - 5439: 79,1 - 5440: 78,1 - 5441: 78,0 - 5442: 77,0 - 5443: 76,0 - 5444: 76,-1 - 5445: 77,-1 - - node: - color: '#52B4E996' - id: CheckerNWSE - decals: - 4445: 27,45 - 4446: 27,46 - 4447: 28,46 - 4448: 28,45 - 4449: 29,45 - 4450: 30,45 - 4451: 30,46 - 4452: 29,46 - 4471: 29,40 - 4472: 28,40 - 4473: 28,41 - 4474: 29,41 - 4475: 29,42 - 4476: 29,43 - 4477: 30,43 - 4478: 28,43 - 4479: 28,42 - 4480: 27,43 - 8558: 67,9 - 8559: 68,11 - 8560: 68,10 - 8561: 68,9 - 8562: 69,9 - 8563: 69,10 - 8564: 69,11 - 8565: 70,11 - 8566: 70,10 - 8567: 70,9 - 8568: 71,9 - 8569: 71,10 - 8570: 71,11 - 8571: 72,11 - 8572: 72,10 - 8573: 72,9 - 8574: 73,9 - 8575: 73,10 - 8576: 73,11 - 8577: 67,8 - 8578: 68,8 - 8579: 69,8 - 8580: 70,8 - 8581: 71,8 - 8582: 72,8 - 8583: 73,8 - 8586: 67,11 - 8587: 67,10 - - node: - color: '#9FED5837' - id: CheckerNWSE - decals: - 2072: 11,2 - 2073: 10,2 - 2074: 9,2 - 2075: 8,2 - 2076: 8,3 - 2077: 9,3 - 2078: 10,3 - 2079: 11,3 - 2080: 11,4 - 2081: 11,5 - 2082: 10,5 - 2083: 10,4 - 2084: 9,4 - 2085: 8,4 - 2086: 8,5 - 2087: 9,5 - - node: - color: '#A4610696' - id: CheckerNWSE - decals: - 2816: -18,-23 - 2817: -19,-23 - 2818: -20,-23 - 2819: -20,-22 - 2820: -19,-22 - 2821: -19,-21 - 2822: -18,-21 - 2823: -20,-21 - 2824: -20,-20 - 8227: 76,-4 - - node: - color: '#334E6DC8' - id: CheckerNWSE - decals: - 4407: 21,57 - 4408: 21,58 - 4409: 21,59 - 4410: 22,57 - 4411: 22,58 - 4412: 22,59 - 4413: 22,60 - 4414: 23,57 - 4415: 23,58 - 4416: 23,59 - 4417: 23,60 - - node: - color: '#FFEB41A1' - id: CheckerNWSE - decals: - 8522: 19,38 - - node: - color: '#FF669896' - id: CheckerNWSE - decals: - 3687: 52,-44 - 3688: 52,-43 - 3689: 52,-42 - 3690: 53,-42 - 3691: 53,-43 - 3692: 53,-44 - - node: - color: '#EFD84160' - id: CheckerNWSE - decals: - 7320: 27,36 - 7321: 27,37 - 7322: 28,37 - 7323: 28,36 - 7324: 29,36 - 7325: 29,37 - 7326: 30,37 - 7327: 30,36 - - node: - color: '#D381C996' - id: CheckerNWSE - decals: - 3308: 37,-17 - 3309: 38,-17 - 3310: 39,-17 - 3311: 40,-17 - 3312: 41,-17 - 3313: 42,-17 - 3314: 43,-17 - 3315: 41,-15 - 3316: 42,-15 - 3317: 43,-15 - 3318: 41,-16 - 3319: 42,-16 - 3320: 43,-16 - 3321: 44,-17 - 3322: 45,-17 - 3323: 46,-17 - 3324: 47,-17 - 3325: 47,-16 - 3326: 46,-16 - 3327: 45,-16 - 3328: 44,-16 - 3799: 25,36 - 3800: 23,36 - 3801: 22,36 - 3802: 21,36 - 3803: 20,36 - 3804: 20,37 - 3805: 20,38 - 3806: 20,39 - 3807: 21,39 - 3808: 21,38 - 3809: 21,37 - 3810: 22,37 - 3811: 22,38 - 3812: 22,39 - 3813: 23,39 - 3814: 23,38 - 3815: 23,37 - 3816: 24,37 - 3817: 25,37 - 3818: 25,38 - 3819: 24,38 - 3820: 24,39 - 3821: 24,40 - 3822: 25,40 - 3823: 25,39 - 3824: 23,40 - 3825: 23,41 - 3826: 24,41 - 3827: 25,41 - 4167: 0,48 - 4168: -1,48 - 4169: -2,48 - 4170: -2,49 - 4171: -1,49 - 4172: 0,49 - 4173: 0,50 - 4174: -1,50 - 4175: -2,50 - 4176: 2,48 - 4177: 3,48 - 4178: 4,48 - 4179: 5,48 - 4180: 6,48 - 4181: 7,48 - 4182: 7,49 - 4183: 6,49 - 4184: 5,49 - 4185: 4,49 - 4186: 3,49 - 4187: 2,49 - 4631: 30,-59 - 4632: 29,-59 - 4633: 28,-59 - 4634: 27,-59 - 4635: 26,-59 - 4636: 25,-59 - 4637: 24,-59 - 4638: 30,-55 - 4639: 29,-55 - 8011: 122,4 - 8012: 121,4 - 8013: 121,5 - 8014: 122,5 - 8015: 122,6 - 8016: 121,6 - 8017: 121,7 - - node: - color: '#E6D85396' - id: CheckerNWSE - decals: - 3830: 22,40 - 3831: 22,41 - 3832: 21,41 - 3833: 21,40 - 3834: 20,40 - 3835: 20,41 - 3836: 19,36 - 3837: 19,37 - 3838: 18,38 - 3839: 17,38 - 3840: 17,37 - 3841: 17,36 - 3842: 18,36 - 3843: 18,37 - - node: - color: '#9FED5896' - id: CheckerNWSE - decals: - 4486: 33,48 - 4487: 32,48 - 4488: 32,49 - 4489: 33,49 - 4490: 33,50 - 4491: 32,50 - 4492: 35,48 - 4493: 35,49 - 4494: 35,50 - 4495: 36,50 - 4496: 36,49 - 4497: 36,48 - 4498: 35,47 - 4499: 33,47 - - node: - color: '#EFC54144' - id: CheckerNWSE - decals: - 6108: 60,5 - 6109: 60,6 - 6110: 59,6 - 6111: 59,5 - 6112: 58,5 - 6113: 58,6 - - node: - color: '#A4610641' - id: CheckerNWSE - decals: - 2215: 8,-18 - 2216: 6,-18 - 2217: 5,-18 - 2218: 4,-18 - 2219: 4,-17 - 2220: 5,-17 - 2221: 6,-17 - 2222: 7,-17 - 2223: 8,-17 - - node: - color: '#DE3A3A96' - id: CheckerNWSE - decals: - 2713: 16,-12 - - node: - color: '#D4D4D428' - id: CheckerNWSE - decals: - 77: -9,14 - 78: -9,13 - 79: -8,13 - 80: -8,14 - 81: -7,14 - 82: -7,13 - 83: -6,13 - 84: -6,14 - 85: -5,14 - 86: -5,13 - 87: -4,13 - 88: -4,14 - - node: - color: '#79150096' - id: CheckerNWSE - decals: - 89: -9,9 - 90: -9,10 - 91: -9,11 - 92: -8,11 - 93: -7,11 - 94: -6,11 - 95: -5,11 - 96: -4,11 - 97: -5,10 - 98: -4,10 - 99: -5,9 - 100: -4,9 - 101: -6,9 - 102: -6,10 - 103: -7,10 - 104: -8,10 - 105: -8,9 - 106: -7,9 - 1675: 35,24 - 1676: 34,24 - 1677: 34,25 - 1678: 34,26 - 1679: 35,26 - 2056: 8,-3 - 2057: 8,-2 - 2058: 8,-1 - 2059: 8,0 - 2060: 9,0 - 2061: 9,-1 - 2062: 9,-2 - 2063: 9,-3 - 2064: 10,-3 - 2065: 10,-2 - 2066: 10,-1 - 2067: 10,0 - 2068: 11,0 - 2069: 11,-1 - 2070: 11,-2 - 2071: 11,-3 - 5254: 85,-13 - 5255: 84,-13 - 5256: 83,-13 - 5257: 82,-13 - 5258: 82,-12 - 5259: 83,-12 - 5260: 84,-12 - 5261: 85,-12 - 5262: 85,-11 - 5263: 84,-11 - 5264: 83,-11 - 5265: 82,-11 - 5673: 61,2 - 5674: 59,1 - - node: - color: '#D4D4D496' - id: CheckerNWSE - decals: - 342: -10,29 - 343: -10,30 - 344: -10,31 - - node: - color: '#D4D4D45A' - id: CheckerNWSE - decals: - 7550: 40,58 - 7551: 39,59 - 7552: 38,59 - 7553: 38,60 - 7554: 40,60 - 7555: 40,61 - 7556: 37,61 - 7557: 36,60 - 7558: 36,59 - 7559: 37,58 - 7560: 35,58 - 7561: 35,59 - 7562: 35,60 - 7563: 36,58 - 7564: 37,59 - 7565: 37,60 - 7566: 38,61 - 7567: 39,61 - 7568: 39,60 - 7569: 40,59 - 7570: 39,58 - 7571: 38,58 - - node: - color: '#EFCF414A' - id: CheckerNWSE - decals: - 5344: 78,-7 - 5345: 79,-7 - 5346: 80,-7 - 5347: 81,-7 - 5348: 82,-7 - 5349: 83,-7 - 5350: 83,-6 - 5351: 82,-6 - 5352: 81,-6 - 5353: 79,-6 - 5354: 80,-6 - 5355: 78,-6 - 5356: 77,-6 - 5357: 77,-7 - 5358: 76,-6 - 5359: 76,-5 - 5360: 76,-3 - 5361: 76,-4 - 5362: 77,-3 - 5363: 77,-4 - 5364: 77,-5 - 5365: 78,-5 - 5366: 79,-5 - 5367: 78,-4 - 5368: 79,-4 - 5369: 80,-4 - 5370: 80,-5 - 5371: 81,-5 - 5372: 81,-4 - 5373: 82,-5 - 5374: 82,-4 - 5375: 83,-5 - 5376: 83,-4 - 5377: 83,-3 - 5378: 77,-1 - 5379: 76,-1 - 5380: 76,0 - 5381: 77,0 - 5382: 78,0 - 5383: 78,1 - 5384: 79,1 - 5385: 79,0 - 5386: 80,0 - 5387: 80,1 - 5388: 81,1 - 5389: 81,0 - 5390: 82,0 - 5391: 82,1 - 5392: 83,1 - 5393: 83,0 - 5394: 83,-1 - - node: - color: '#EFB341C3' - id: Delivery - decals: - 393: 2,11 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 345: -18,30 - 524: -18,-9 - 544: -12,0 - 566: -24,39 - 667: -33,41 - 668: -32,41 - 743: -38,30 - 744: -27,34 - 745: -27,35 - 746: -18,43 - 747: -19,43 - 959: -34,51 - 993: -29,58 - 1017: -14,76 - 1078: -16,66 - 1176: 5,25 - 1177: 5,26 - 1178: 5,30 - 1535: 28,4 - 1536: 31,4 - 1537: 34,4 - 1538: 37,4 - 1571: 27,11 - 1654: 38,8 - 1673: 14,11 - 1709: 29,26 - 1712: 6,-26 - 1713: 6,-25 - 1714: 9,-26 - 1715: 9,-25 - 1716: 11,-26 - 1717: 11,-25 - 1718: 14,-26 - 1719: 14,-25 - 1720: 14,-23 - 1721: 14,-22 - 1722: 11,-23 - 1723: 11,-22 - 1724: 9,-23 - 1725: 9,-22 - 1726: 6,-23 - 1727: 6,-22 - 1938: 35,19 - 1939: 41,1 - 2088: 6,5 - 2089: 6,-3 - 2263: 4,-14 - 2264: 9,-10 - 2341: 14,-28 - 2342: 9,-19 - 2357: -1,-18 - 2458: 5,-30 - 2459: 10,-32 - 2470: 16,-25 - 2471: 16,-24 - 2472: 16,-23 - 2473: -2,-28 - 2538: 21,-25 - 2799: 21,-1 - 2928: -42,-55 - 3018: -37,-43 - 3271: -27,-28 - 3362: 47,-20 - 3363: 46,-20 - 3364: 45,-20 - 3371: 48,-24 - 3372: 48,-23 - 3442: 53,-28 - 3443: 39,-24 - 3444: 33,-40 - 3445: 47,-38 - 3446: 54,-30 - 3597: 55,-42 - 3598: 55,-41 - 3615: 59,-43 - 3616: 60,-43 - 3626: 61,-38 - 3627: 60,-38 - 3628: 59,-38 - 3629: 59,-37 - 3630: 60,-37 - 3631: 61,-37 - 3632: 61,-36 - 3633: 60,-36 - 3634: 59,-36 - 3706: 48,-19 - 3756: 53,-21 - 3857: 24,36 - 3892: 11,36 - 4106: 29,48 - 4107: 28,48 - 4118: 15,47 - 4362: 6,65 - 4388: 15,65 - 4444: 21,60 - 4485: 30,42 - 4626: 23,-48 - 4705: 45,-36 - 4785: 36,-20 - 4786: 35,-20 - 4787: 34,-20 - 4788: 32,-20 - 4853: -6,68 - 5145: 66,-19 - 5146: 71,-17 - 5147: 82,-17 - 5148: 76,-7 - 5185: 40,-5 - 5186: 75,-24 - 5668: 60,-6 - 5999: 85,33 - 6001: 93,36 - 6002: 97,36 - 6199: 76,12 - 6288: 68,31 - 6289: 75,35 - 6297: 103,40 - 6502: 81,47 - 6503: 81,49 - 6699: 57,48 - 6700: 58,57 - 6701: 74,57 - 6720: 58,42 - 6966: -33,2 - 6967: -33,3 - 6968: -33,4 - 6969: -31,8 - 6970: -32,9 - 6971: -28,4 - 7182: 38,-7 - 7183: 35,-7 - 7291: 107,28 - 7711: 54,43 - 7928: 100,-16 - 7929: 101,-16 - 7930: 88,-11 - 8006: 98,3 - 8007: 97,3 - 8009: 120,-4 - 8010: 120,-2 - 8037: 22,-23 - 8257: 22,7 - - node: - color: '#EFB341FF' - id: Delivery - decals: - 4889: 106,-18 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 8258: 45,47 - 8259: 43,47 - 8260: 39,48 - 8261: 39,51 - 8262: 52,47 - 8263: 53,48 - 8264: 53,49 - 8265: 56,54 - 8266: 56,55 - 8267: 54,58 - 8268: 51,64 - 8269: 56,62 - 8270: 55,64 - 8271: 49,65 - 8272: 44,63 - 8273: 38,63 - 8274: 38,66 - 8275: 37,66 - 8276: 35,63 - 8277: 34,62 - 8278: 35,65 - 8279: 34,65 - 8280: 33,67 - 8281: 30,63 - 8282: 26,67 - 8283: 27,67 - 8284: 29,67 - 8285: 31,62 - 8286: 29,63 - 8287: 23,67 - 8288: 23,68 - 8289: 24,69 - 8290: 10,69 - 8291: -2,68 - 8292: -2,67 - 8293: 1,75 - 8294: 2,75 - 8295: 6,75 - 8296: -5,75 - 8297: -4,73 - 8298: -26,64 - 8299: -27,66 - 8300: -25,68 - 8301: -32,65 - 8302: -35,62 - 8303: -35,61 - 8304: -35,69 - 8305: -36,68 - 8306: -27,71 - 8307: -24,73 - 8308: -41,63 - 8309: -39,61 - 8310: -25,22 - 8311: -24,23 - 8312: -29,11 - 8313: -29,10 - 8314: -28,12 - 8315: -24,12 - 8316: -30,13 - 8317: -29,13 - 8318: -33,12 - 8319: -37,12 - 8320: -36,15 - 8321: -35,15 - 8322: -32,17 - 8323: -30,15 - 8324: -27,16 - 8325: -29,19 - 8326: -36,7 - 8327: -36,6 - 8328: -35,4 - 8329: -35,1 - 8330: -38,3 - 8331: -39,3 - 8332: -35,-1 - 8333: -42,0 - 8334: -45,0 - 8335: -47,2 - 8336: -46,-2 - 8337: -46,-3 - 8338: -45,-4 - 8339: -26,-2 - 8340: -22,-3 - 8341: -22,-2 - 8342: -24,-1 - 8343: -26,4 - 8344: -21,6 - 8345: -20,7 - 8346: -16,6 - 8347: -15,3 - 8348: -18,3 - 8349: -17,3 - 8350: -19,4 - 8351: -12,4 - 8352: 8,9 - 8353: 8,8 - 8354: 10,10 - 8355: 8,13 - 8356: 13,16 - 8357: 13,19 - 8358: 13,21 - 8359: 13,22 - 8360: 8,23 - 8361: 10,27 - 8362: 9,28 - 8363: 12,26 - 8364: 15,26 - 8365: 16,30 - 8366: 21,29 - 8367: 36,28 - 8368: 35,28 - 8369: 35,30 - 8370: 33,30 - 8371: 60,21 - 8372: 59,23 - 8373: 65,22 - 8374: 66,23 - 8375: 68,22 - 8376: 73,25 - 8377: 73,26 - 8378: 73,27 - 8379: 75,25 - 8380: 74,23 - 8381: 74,27 - 8382: 73,29 - 8383: 77,29 - 8384: 90,25 - 8385: 93,25 - 8386: 94,25 - 8387: 96,24 - 8388: 100,23 - 8389: 101,25 - 8390: 101,27 - 8391: 103,29 - 8392: 103,31 - 8393: 103,32 - 8394: 106,29 - 8395: 105,30 - 8396: 105,31 - 8397: 107,31 - 8398: 109,30 - 8399: 110,30 - 8400: 110,32 - 8401: 110,34 - 8402: 107,34 - 8403: 106,34 - 8404: 104,36 - 8405: 110,36 - 8406: 113,30 - 8407: 112,30 - 8408: 108,20 - 8409: 109,20 - 8410: 113,20 - 8411: 112,18 - 8412: 112,15 - 8413: 113,7 - 8414: 118,3 - 8415: 117,5 - 8416: 117,7 - 8417: 118,7 - 8418: 120,-3 - 8419: 118,-5 - 8420: 118,-6 - 8421: 118,-13 - 8422: 125,-7 - 8423: 125,-5 - 8424: 123,-3 - 8425: 123,-4 - 8426: 124,-5 - 8427: 125,-2 - 8428: 121,0 - 8429: 125,3 - 8430: 126,2 - 8431: 126,1 - 8432: 126,0 - 8433: 125,1 - 8434: 122,3 - 8435: 122,2 - 8436: 127,-5 - 8437: 117,-18 - 8438: 117,-16 - 8439: 116,-17 - 8440: 120,-20 - 8441: 114,-18 - 8442: 113,-18 - 8443: 112,-16 - 8444: 99,4 - 8445: 98,5 - 8446: 97,5 - 8447: 96,6 - 8448: 94,6 - 8449: 94,7 - 8450: 93,7 - 8451: 102,5 - 8452: 103,6 - 8453: 106,6 - 8454: 104,4 - 8455: 109,4 - 8456: 109,4 - 8457: 109,5 - 8458: 111,6 - 8459: 110,4 - 8460: 108,4 - 8461: 108,5 - 8462: 107,5 - 8463: 111,4 - 8464: 107,4 - 8465: 106,4 - 8466: 107,6 - 8467: 104,5 - 8497: 67,-5 - 8498: 65,-5 - 8499: 68,-6 - - node: - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 6878: -38,62 - 6879: -37,64 - 7572: 55,53 - 7573: 55,53 - 7574: 55,53 - 7575: 55,54 - 7576: 54,55 - 7577: 54,60 - 7578: 54,60 - 7579: 54,60 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 355: 2,12 - 487: 4,11 - 488: 3,12 - 489: 3,9 - 490: 4,10 - 525: -19,-9 - 526: -20,-12 - 527: -19,-11 - 528: -19,-10 - 1135: -20,7 - 1189: 2,28 - 1190: 3,27 - 1191: 4,25 - 1192: 3,23 - 1193: 2,23 - 1194: 6,29 - 1195: 6,22 - 1883: 46,6 - 1884: 47,7 - 1885: 46,7 - 1886: 47,5 - 2295: 8,-16 - 2358: -1,-17 - 2359: -3,-16 - 2360: -2,-15 - 2361: -3,-13 - 2362: -4,-10 - 2363: 0,-11 - 2645: 8,-27 - 2650: 9,-21 - 2668: 17,-32 - 2669: 18,-31 - 2825: -19,-21 - 2826: -20,-21 - 2827: -20,-23 - 2828: -20,-23 - 2939: -39,-50 - 2940: -40,-50 - 2941: -39,-51 - 2942: -39,-48 - 2943: -39,-47 - 2944: -39,-59 - 2945: -39,-60 - 2946: -38,-60 - 3702: 56,-23 - 4571: 27,-50 - 4572: 28,-51 - 4573: 31,-49 - 4591: 29,-52 - 4594: 23,-42 - 4595: 23,-43 - 4596: 25,-44 - 4597: 29,-42 - 4598: 31,-44 - 4599: 32,-42 - 4600: 37,-42 - 4601: 39,-42 - 4602: 39,-44 - 4603: 34,-44 - 4604: 25,-47 - 4605: 23,-47 - 4606: 23,-51 - 4657: 27,-59 - 4658: 24,-56 - 4659: 25,-57 - 4746: 52,-46 - 4747: 51,-46 - 4748: 56,-46 - 4749: 57,-50 - 4760: 33,-43 - 5703: 67,-9 - 5704: 68,-13 - 5705: 66,-12 - 5732: 79,-17 - 5933: 96,-23 - 5934: 97,-22 - 5935: 99,-21 - 5936: 106,-20 - 5937: 111,-21 - 5969: 98,-22 - 6207: 63,22 - 6212: 93,-21 - 6883: -25,64 - 6884: -24,64 - 6885: -25,64 - 6886: -25,70 - 6892: 10,9 - 6893: 8,11 - 6894: 10,15 - 6895: 11,10 - 6899: 12,27 - 6900: 12,27 - 6901: 12,26 - 6911: -10,-29 - 6912: -8,-28 - 6921: -39,2 - 6922: -38,2 - 6923: -38,2 - 6924: -43,2 - 6972: -33,3 - 6973: -32,2 - 6974: -32,1 - 6975: -31,0 - 6976: -31,5 - 6977: -31,6 - 6978: -29,5 - 6979: -33,9 - 6980: -32,9 - 7022: -35,6 - 7023: -36,8 - 7116: 50,-55 - 7117: 48,-54 - 7118: 47,-53 - 7119: 47,-51 - 7184: 126,-2 - 7185: 124,0 - 7186: 124,0 - 7187: 123,1 - 7188: 121,1 - 7189: 121,1 - 7190: 121,3 - 7191: 121,4 - 7207: 77,7 - 7208: 78,9 - 7222: 100,12 - 7223: 100,12 - 7224: 100,12 - 7225: 101,13 - 7226: 101,15 - 7227: 101,15 - 7228: 101,15 - 7229: 103,15 - 7247: 100,14 - 7248: 100,16 - 7249: 100,16 - 7250: 100,16 - 7255: 110,15 - 7256: 110,15 - 7257: 109,14 - 7258: 109,15 - 7259: 108,15 - 7277: 113,18 - 7278: 112,19 - 7542: 50,47 - 7543: 44,47 - 7549: 39,52 - 7712: 75,3 - 7713: 74,4 - 7714: 68,4 - 7715: 67,-4 - 7716: 68,-5 - 7717: 68,-5 - 7731: 111,19 - 7732: 110,19 - 7751: 123,-8 - 7752: 121,-6 - 7753: 123,-4 - 7754: 124,-6 - 7755: 124,-3 - 7756: 125,-2 - 7757: 124,-2 - 7823: 109,-20 - 7824: 115,-20 - 7825: 114,-20 - 7846: 88,-13 - 7847: 89,-12 - 7848: 90,-3 - 7849: 91,-9 - 8073: -25,21 - 8074: -25,21 - 8075: -25,19 - 8076: -25,13 - 8077: -27,13 - 8078: -32,12 - 8079: -34,13 - 8080: -37,13 - 8230: 118,-13 - 8231: 118,-12 - 8232: 118,-9 - 8233: 118,-4 - 8234: 118,-2 - 8235: 118,1 - 8474: 103,5 - 8475: 110,5 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 6880: -39,61 - 6881: -41,62 - 6882: -41,64 - 7589: 53,53 - 7590: 56,53 - 7591: 53,56 - 7592: 53,58 - 7593: 54,61 - 7594: 55,61 - 7595: 56,60 - 7596: 55,59 - 7597: 56,58 - 7598: 55,58 - 7599: 54,57 - 7600: 53,61 - 7601: 53,61 - 7602: 52,62 - 7603: 53,64 - 7604: 55,63 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 356: 3,7 - 357: 4,7 - 471: 5,9 - 472: 5,10 - 473: 5,12 - 474: 5,11 - 475: 6,12 - 476: 3,13 - 477: 5,13 - 478: 2,8 - 479: 2,9 - 485: 3,9 - 486: 4,12 - 533: -19,-12 - 534: -18,-10 - 535: -20,-11 - 1136: -19,7 - 1137: -18,6 - 1138: -21,7 - 1200: 3,29 - 1201: 4,29 - 1202: 4,26 - 1203: 4,27 - 1204: 3,26 - 1205: 6,26 - 1206: 6,24 - 1207: 6,23 - 1208: 4,22 - 1209: 2,22 - 1210: 4,28 - 1211: 6,28 - 1212: 6,28 - 1213: 6,27 - 1889: 45,7 - 1890: 45,5 - 1891: 46,5 - 2276: 6,-18 - 2277: 7,-19 - 2278: 5,-18 - 2279: 5,-18 - 2280: 4,-16 - 2281: 8,-17 - 2282: 8,-17 - 2283: 9,-18 - 2284: 8,-19 - 2285: 9,-18 - 2286: 8,-18 - 2287: 8,-14 - 2288: 7,-13 - 2289: 8,-12 - 2290: 4,-11 - 2291: 4,-10 - 2292: 4,-11 - 2293: 3,-13 - 2294: 5,-14 - 2304: 7,-12 - 2305: 6,-11 - 2306: 5,-10 - 2307: 5,-9 - 2308: 4,-7 - 2309: 6,-20 - 2372: -2,-17 - 2373: 0,-16 - 2374: -1,-16 - 2375: -2,-16 - 2376: -3,-14 - 2377: -4,-14 - 2378: -4,-15 - 2379: -3,-10 - 2380: -2,-10 - 2381: -1,-10 - 2382: 1,-10 - 2383: 0,-14 - 2384: 1,-14 - 2385: 0,-15 - 2386: -2,-13 - 2387: -4,-13 - 2388: -4,-12 - 2389: -3,-19 - 2390: -4,-10 - 2484: -4,-8 - 2485: -4,-8 - 2486: -3,-8 - 2487: 5,-8 - 2488: -5,-7 - 2489: -6,-5 - 2490: -5,-3 - 2491: 2,-4 - 2492: 3,-3 - 2493: 3,-2 - 2494: 3,-2 - 2495: -5,5 - 2496: -9,-5 - 2497: -13,-7 - 2607: -2,-22 - 2608: -3,-21 - 2609: -2,-21 - 2610: -3,-20 - 2611: -3,-20 - 2612: 2,-22 - 2613: 0,-21 - 2615: -1,-22 - 2616: 3,-21 - 2617: 6,-24 - 2618: 5,-23 - 2619: 6,-21 - 2620: 6,-22 - 2621: 9,-23 - 2622: 10,-24 - 2623: 11,-25 - 2624: 10,-27 - 2625: 7,-27 - 2626: 7,-27 - 2627: 8,-30 - 2628: 7,-30 - 2629: 6,-31 - 2630: 7,-33 - 2631: 8,-35 - 2632: 8,-35 - 2633: 8,-33 - 2634: 9,-30 - 2635: 10,-27 - 2636: 12,-25 - 2637: 15,-26 - 2638: 14,-23 - 2639: 11,-23 - 2640: 10,-22 - 2641: 12,-21 - 2642: 13,-20 - 2643: 10,-26 - 2644: 11,-26 - 2646: 9,-27 - 2647: 7,-21 - 2648: 8,-21 - 2649: 8,-22 - 2652: 10,-23 - 2653: 14,-24 - 2654: 13,-24 - 2655: 15,-24 - 2656: 15,-23 - 2657: 15,-23 - 2658: 14,-21 - 2659: 16,-32 - 2660: 16,-32 - 2661: 18,-32 - 2662: 19,-31 - 2663: 18,-30 - 2664: 19,-30 - 2665: 19,-28 - 2666: 18,-27 - 2667: 17,-27 - 2719: 20,-17 - 2720: 21,-18 - 2721: 20,-16 - 2722: 20,-15 - 2723: 20,-14 - 2724: 19,-14 - 2725: 18,-10 - 2726: 18,-10 - 2727: 17,-11 - 2728: 16,-11 - 2729: 16,-9 - 2730: 16,-10 - 2732: 16,-15 - 2733: 16,-14 - 2734: 19,-10 - 2735: 20,-10 - 2736: 20,-13 - 2737: 19,-11 - 2738: 16,-9 - 2739: 15,-9 - 2740: 15,-11 - 2832: -19,-23 - 2833: -19,-22 - 2834: -20,-22 - 2957: -38,-47 - 2958: -37,-48 - 2959: -36,-47 - 2960: -35,-47 - 2961: -34,-48 - 2962: -33,-47 - 2963: -40,-46 - 2964: -40,-47 - 2965: -41,-48 - 2966: -41,-50 - 2967: -39,-52 - 2968: -40,-52 - 2969: -39,-53 - 2970: -40,-54 - 2971: -40,-55 - 2972: -41,-56 - 2973: -41,-58 - 2974: -40,-59 - 2975: -39,-58 - 2976: -40,-60 - 2977: -41,-61 - 2978: -38,-61 - 2979: -37,-61 - 2980: -36,-62 - 2981: -35,-60 - 2982: -34,-62 - 2983: -33,-61 - 2984: -43,-59 - 2985: -43,-58 - 2986: -45,-59 - 2987: -47,-58 - 2989: -44,-59 - 2990: -46,-58 - 3703: 56,-24 - 3704: 55,-24 - 3705: 55,-25 - 4582: 31,-48 - 4583: 32,-49 - 4584: 30,-48 - 4585: 30,-51 - 4586: 29,-50 - 4587: 28,-49 - 4588: 28,-48 - 4589: 27,-52 - 4590: 28,-52 - 4592: 27,-47 - 4593: 29,-47 - 4614: 34,-44 - 4615: 33,-44 - 4616: 37,-42 - 4617: 39,-44 - 4618: 40,-42 - 4619: 30,-42 - 4620: 29,-44 - 4621: 28,-44 - 4622: 25,-45 - 4623: 25,-46 - 4624: 25,-48 - 4625: 25,-52 - 4668: 29,-59 - 4669: 28,-58 - 4670: 27,-57 - 4671: 26,-58 - 4672: 25,-59 - 4673: 24,-58 - 4674: 23,-57 - 4675: 26,-56 - 4676: 29,-57 - 4677: 28,-56 - 4678: 30,-59 - 4679: 24,-55 - 4753: 52,-48 - 4754: 48,-48 - 4755: 48,-46 - 4756: 47,-46 - 4757: 46,-48 - 4758: 46,-47 - 4759: 46,-47 - 4761: 38,-40 - 4762: 37,-39 - 4763: 39,-37 - 4764: 39,-35 - 4765: 48,-36 - 4766: 43,-38 - 4767: 41,-39 - 4768: 39,-39 - 4769: 38,-39 - 5283: 81,-14 - 5284: 83,-12 - 5285: 83,-13 - 5290: 85,-11 - 5291: 84,-11 - 5292: 82,-11 - 5293: 83,-11 - 5294: 81,-14 - 5295: 81,-13 - 5296: 81,-16 - 5297: 80,-14 - 5713: 67,-10 - 5714: 68,-9 - 5715: 66,-9 - 5716: 66,-10 - 5717: 65,-11 - 5718: 64,-12 - 5719: 65,-13 - 5720: 69,-12 - 5721: 69,-11 - 5722: 64,-11 - 5723: 63,-10 - 5724: 71,-10 - 5725: 71,-11 - 5726: 69,-15 - 5727: 68,-17 - 5728: 71,-16 - 5729: 72,-15 - 5730: 76,-17 - 5731: 77,-17 - 5735: 78,-16 - 5736: 79,-15 - 5737: 79,-14 - 5738: 77,-15 - 5739: 79,-12 - 5740: 78,-13 - 5741: 78,-9 - 5742: 75,-13 - 5743: 75,-15 - 5744: 61,-10 - 5745: 60,-12 - 5746: 58,-11 - 5747: 51,-12 - 5748: 50,-12 - 5749: 45,-11 - 5750: 44,-12 - 5751: 56,0 - 5752: 53,-1 - 5753: 54,-1 - 5754: 54,0 - 5755: 52,-2 - 5756: 55,-3 - 5757: 47,-1 - 5780: 53,5 - 5781: 53,6 - 5782: 51,5 - 5783: 50,6 - 5802: -4,31 - 5803: -5,32 - 5804: -8,31 - 5805: -10,32 - 5806: -11,29 - 5807: -10,28 - 5808: -10,30 - 5951: 96,-21 - 5952: 97,-21 - 5953: 97,-24 - 5954: 96,-24 - 5955: 98,-23 - 5956: 98,-20 - 5957: 100,-20 - 5958: 101,-21 - 5959: 104,-20 - 5960: 105,-21 - 5961: 107,-21 - 5962: 108,-20 - 5963: 109,-20 - 5964: 111,-20 - 5965: 112,-20 - 5966: 114,-21 - 5967: 115,-21 - 5968: 114,-20 - 6208: 68,23 - 6209: 58,23 - 6215: 92,-21 - 6216: 93,-22 - 6217: 94,-21 - 6218: 94,-20 - 6219: 92,-20 - 6220: 91,-22 - 6221: 103,-20 - 6896: 10,9 - 6902: 13,27 - 6903: 9,28 - 6904: 18,30 - 6915: -9,-30 - 6916: -11,-28 - 6917: -10,-28 - 6925: -40,3 - 6926: -40,3 - 6981: -32,9 - 6982: -32,7 - 6983: -31,7 - 6984: -30,6 - 6985: -32,6 - 6986: -32,4 - 6994: -28,4 - 6995: -29,6 - 6996: -30,5 - 6997: -30,3 - 6998: -31,3 - 6999: -31,2 - 7000: -30,1 - 7001: -29,0 - 7002: -33,0 - 7003: -31,-1 - 7004: -32,-1 - 7005: -33,2 - 7006: -33,4 - 7007: -32,4 - 7008: -33,5 - 7009: -29,3 - 7010: -28,3 - 7011: -28,2 - 7012: -30,7 - 7013: -31,8 - 7014: -33,8 - 7027: -35,0 - 7028: -35,10 - 7029: -35,10 - 7030: -35,10 - 7031: -36,9 - 7128: 47,-55 - 7129: 46,-54 - 7130: 46,-53 - 7131: 46,-52 - 7132: 48,-51 - 7133: 48,-50 - 7134: 49,-54 - 7135: 51,-54 - 7136: 46,-54 - 7137: 45,-55 - 7138: 45,-55 - 7139: 44,-55 - 7201: 125,-4 - 7202: 125,-2 - 7203: 125,1 - 7204: 123,3 - 7205: 122,4 - 7206: 121,6 - 7211: 79,7 - 7212: 76,6 - 7213: 77,6 - 7214: 76,8 - 7215: 76,8 - 7216: 76,8 - 7217: 76,8 - 7218: 79,7 - 7219: 77,10 - 7220: 77,10 - 7221: 79,10 - 7233: 101,16 - 7234: 101,16 - 7235: 101,14 - 7236: 101,13 - 7237: 104,15 - 7238: 104,16 - 7239: 104,16 - 7240: 101,12 - 7241: 101,12 - 7242: 100,13 - 7243: 100,13 - 7244: 100,14 - 7245: 102,15 - 7246: 103,16 - 7265: 109,16 - 7266: 110,16 - 7267: 106,15 - 7268: 106,16 - 7269: 107,16 - 7270: 107,16 - 7271: 107,16 - 7272: 117,21 - 7281: 114,19 - 7282: 112,18 - 7283: 113,20 - 7284: 113,20 - 7544: 40,48 - 7545: 40,48 - 7546: 40,48 - 7733: 109,18 - 7734: 109,19 - 7735: 110,20 - 7767: 125,-8 - 7768: 126,-8 - 7769: 126,-6 - 7770: 125,-6 - 7771: 122,-5 - 7772: 124,-4 - 7773: 125,-4 - 7774: 126,-3 - 7775: 126,-2 - 7776: 122,-2 - 7777: 122,-3 - 7778: 126,-5 - 7779: 126,-5 - 7780: 125,-6 - 7781: 126,-6 - 7782: 126,-7 - 7783: 126,-8 - 7784: 126,-5 - 7815: 103,-19 - 7816: 103,-19 - 7817: 104,-20 - 7826: 113,-20 - 7827: 112,-20 - 7828: 115,-21 - 7829: 104,-21 - 7830: 99,-21 - 7831: 103,-21 - 7832: 103,-17 - 7833: 101,-17 - 7834: 101,-17 - 7835: 101,-18 - 7836: 100,-17 - 7837: 99,-17 - 7838: 97,-15 - 7839: 98,-16 - 7841: 97,-17 - 7842: 97,-18 - 7843: 98,-14 - 7844: 97,-13 - 7845: 97,-13 - 7855: 89,-13 - 7856: 90,-13 - 7857: 88,-12 - 7858: 90,-11 - 7859: 89,-10 - 7860: 88,-11 - 7861: 91,-12 - 7862: 91,-11 - 7863: 92,-11 - 7864: 93,-12 - 7865: 94,-12 - 7866: 93,-13 - 7867: 90,-10 - 7868: 91,-8 - 7869: 89,-8 - 7870: 89,-5 - 7871: 91,-6 - 7872: 89,-6 - 7873: 91,-5 - 7874: 91,-3 - 7875: 91,-2 - 7876: 90,-1 - 7877: 89,-2 - 7878: 89,-3 - 7879: 90,-2 - 7880: 98,-11 - 7881: 93,-9 - 7882: 93,-9 - 7883: 93,-7 - 7884: 93,-8 - 7885: 95,-9 - 7886: 94,-3 - 7887: 93,-3 - 7888: 93,-3 - 7889: 87,-7 - 7890: 86,-7 - 7892: 86,-5 - 7893: 85,-6 - 7894: 86,-4 - 7895: 85,-7 - 7896: 83,-7 - 7897: 83,-6 - 7898: 82,-7 - 7899: 78,-7 - 7900: 77,-6 - 7901: 76,-7 - 7902: 76,-6 - 7903: 76,-4 - 7904: 83,-3 - 7905: 82,-4 - 7906: 81,-4 - 7907: 80,-4 - 7908: 79,-5 - 7909: 77,-1 - 7910: 77,0 - 7911: 80,0 - 7912: 82,0 - 7913: 83,-1 - 7914: 86,-2 - 7915: 86,-1 - 7916: 85,-1 - 7917: 79,-9 - 7918: 78,-9 - 7919: 79,-10 - 7920: 78,-12 - 7921: 78,-12 - 7922: 74,-16 - 7923: 72,-14 - 7924: 91,5 - 7925: 90,5 - 7926: 89,5 - 7927: 88,6 - 8096: -24,22 - 8097: -25,20 - 8098: -25,16 - 8099: -23,12 - 8100: -25,14 - 8101: -26,12 - 8102: -28,13 - 8103: -30,13 - 8104: -30,12 - 8105: -31,12 - 8106: -33,12 - 8107: -33,13 - 8108: -36,13 - 8109: -38,12 - 8110: -39,12 - 8241: 118,-11 - 8242: 118,-10 - 8243: 118,-7 - 8244: 118,-5 - 8245: 118,-3 - 8246: 118,-1 - 8247: 118,0 - 8248: 118,2 - 8249: 117,4 - 8250: 116,4 - 8251: 115,4 - 8252: 113,4 - 8253: 113,6 - 8254: 117,-16 - 8255: 117,-16 - 8256: 119,-20 - 8476: 110,6 - 8477: 109,6 - 8478: 105,5 - 8479: 104,6 - 8480: 105,4 - 8481: 103,4 - 8482: 100,5 - 8483: 100,6 - 8484: 101,6 - 8485: 101,5 - 8486: 99,5 - 8487: 99,6 - 8488: 98,4 - 8489: 97,4 - 8490: 96,5 - 8491: 96,5 - 8492: 95,6 - 8493: 93,6 - 8494: 95,7 - 8495: 94,8 - 8496: 102,9 - - node: - color: '#FFFFFFFF' - id: DirtMedium - decals: - 7580: 53,60 - 7581: 53,60 - 7582: 54,61 - 7583: 54,59 - 7584: 55,59 - 7585: 55,56 - 7586: 54,56 - 7587: 54,54 - 7588: 56,53 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - decals: - 480: 4,9 - 481: 3,8 - 482: 4,8 - 483: 3,10 - 484: 3,12 - 529: -18,-12 - 530: -18,-11 - 531: -20,-10 - 532: -20,-9 - 1134: -19,6 - 1196: 5,23 - 1197: 3,22 - 1198: 3,24 - 1199: 3,28 - 1887: 47,6 - 1888: 45,6 - 2296: 8,-18 - 2297: 7,-17 - 2298: 6,-17 - 2299: 8,-14 - 2300: 8,-12 - 2301: 7,-10 - 2302: 8,-10 - 2303: 7,-11 - 2364: 0,-12 - 2365: -1,-14 - 2366: 0,-13 - 2367: -3,-12 - 2368: -3,-11 - 2369: -4,-10 - 2370: -3,-15 - 2371: -3,-17 - 2614: 0,-22 - 2651: 10,-21 - 2670: 19,-32 - 2671: 17,-31 - 2672: 18,-28 - 2673: 19,-28 - 2674: 19,-27 - 2675: 20,-32 - 2676: 15,-31 - 2677: 14,-30 - 2731: 15,-15 - 2829: -18,-23 - 2830: -18,-21 - 2831: -20,-20 - 2947: -37,-60 - 2948: -36,-61 - 2949: -40,-58 - 2950: -40,-57 - 2951: -40,-51 - 2952: -40,-53 - 2953: -40,-48 - 2954: -39,-46 - 2955: -38,-48 - 2956: -37,-47 - 2988: -44,-58 - 4574: 29,-51 - 4575: 27,-51 - 4576: 28,-50 - 4577: 27,-49 - 4578: 31,-50 - 4579: 30,-50 - 4580: 30,-49 - 4581: 32,-48 - 4607: 23,-52 - 4608: 23,-50 - 4609: 25,-48 - 4610: 23,-46 - 4611: 23,-44 - 4612: 32,-42 - 4613: 32,-44 - 4660: 25,-56 - 4661: 23,-56 - 4662: 24,-57 - 4663: 25,-58 - 4664: 26,-57 - 4665: 26,-59 - 4666: 27,-58 - 4667: 28,-59 - 4750: 56,-48 - 4751: 55,-49 - 4752: 53,-46 - 5286: 85,-12 - 5287: 85,-13 - 5288: 84,-14 - 5289: 82,-12 - 5702: 67,-8 - 5706: 67,-13 - 5707: 67,-12 - 5708: 66,-13 - 5709: 65,-12 - 5710: 66,-11 - 5711: 69,-13 - 5712: 68,-12 - 5733: 78,-17 - 5734: 79,-16 - 5801: -4,32 - 5938: 112,-21 - 5939: 111,-20 - 5940: 110,-21 - 5941: 109,-21 - 5942: 115,-20 - 5943: 106,-21 - 5944: 105,-20 - 5945: 107,-20 - 5946: 100,-21 - 5947: 99,-20 - 5948: 98,-21 - 5949: 97,-23 - 5950: 96,-22 - 6210: 59,20 - 6211: 91,-21 - 6213: 93,-20 - 6214: 92,-22 - 6887: -25,71 - 6888: -36,70 - 6889: -36,69 - 6897: 8,11 - 6913: -11,-29 - 6914: -12,-30 - 6987: -32,3 - 6988: -31,1 - 6989: -30,0 - 6990: -32,0 - 6991: -31,-1 - 6992: -29,4 - 6993: -28,5 - 7024: -35,9 - 7025: -36,3 - 7026: -36,3 - 7120: 47,-52 - 7121: 47,-54 - 7122: 48,-55 - 7123: 49,-55 - 7124: 49,-54 - 7125: 50,-54 - 7126: 46,-51 - 7127: 47,-50 - 7192: 122,5 - 7193: 121,2 - 7194: 121,0 - 7195: 122,0 - 7196: 124,2 - 7197: 123,2 - 7198: 125,0 - 7199: 126,-3 - 7200: 122,-5 - 7209: 77,8 - 7210: 78,10 - 7230: 101,14 - 7231: 100,15 - 7232: 102,16 - 7260: 107,15 - 7261: 108,16 - 7262: 108,14 - 7263: 110,14 - 7264: 111,15 - 7279: 114,18 - 7280: 113,19 - 7547: 39,50 - 7548: 39,50 - 7718: 68,-6 - 7719: 66,-5 - 7720: 68,-5 - 7721: 67,-4 - 7722: 74,4 - 7728: 110,18 - 7729: 110,18 - 7730: 111,19 - 7758: 124,-8 - 7759: 124,-7 - 7760: 125,-8 - 7761: 123,-7 - 7762: 122,-6 - 7763: 123,-5 - 7764: 124,-5 - 7765: 125,-3 - 7766: 123,-2 - 7818: 100,-20 - 7819: 93,-20 - 7820: 92,-21 - 7821: 107,-20 - 7822: 108,-20 - 7840: 98,-17 - 7850: 91,-10 - 7851: 90,-8 - 7852: 90,-6 - 7853: 89,-4 - 7854: 89,-11 - 7891: 85,-5 - 8081: -31,12 - 8082: -33,12 - 8083: -31,13 - 8084: -30,12 - 8085: -33,13 - 8086: -36,13 - 8087: -36,12 - 8088: -38,13 - 8089: -26,13 - 8090: -28,13 - 8091: -25,12 - 8092: -25,17 - 8093: -25,18 - 8094: -24,19 - 8095: -25,22 - 8236: 118,-1 - 8237: 118,2 - 8238: 118,4 - 8239: 113,4 - 8240: 118,-8 - 8468: 108,6 - 8469: 101,4 - 8470: 102,4 - 8471: 97,6 - 8472: 98,6 - 8473: 105,6 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Donk - decals: - 7723: 77.00151,6.9934244 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 268: -7.065258,15.077425 - 738: -31.02929,33.00187 - 888: -33.3346,55.60235 - 1932: 40.967525,3.9550443 - 2588: 6.0005627,-8.114843 - 2589: 2.0630627,-8.146093 - 2592: 9.969313,-8.192968 - 5183: 56.978905,5.0165105 - 6593: 67.319954,42.01216 - 6606: 67.06812,54.977844 - 7678: 92.725876,-53.725468 - 7679: 88.632126,-52.553593 - - node: - color: '#FFFFFFFF' - id: Flowersbr2 - decals: - 728: -31.10429,36.923744 - 886: -35.8346,53.961723 - 887: -33.3346,56.305473 - 2590: 2.8755627,-8.161718 - 3529: 51,-25 - 6604: 70.94312,54.96222 - 7680: 88.8665,-53.397343 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 884: -36.412724,53.60235 - 885: -36.1471,53.0711 - 1928: 50.00304,1.8612943 - 1931: 43.092525,3.9081693 - 2591: 9.109938,-8.114843 - 6553: 86.276436,42.050976 - 6554: 92.745186,41.97285 - 6592: 68.55433,41.902786 - 6605: 69.89625,54.915344 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 267: -5.752758,15.03055 - 718: -33.963665,32.954994 - 892: -33.49085,53.60235 - 1929: 50.893665,1.8300443 - 3525: 43,-19 - 4539: 30.053492,-54.01924 - 4543: 29.006617,-45.972366 - 5182: 57.02578,5.9383855 - 6602: 69.9275,51.96222 - 7681: 92.8665,-52.553593 - - node: - color: '#FFFFFFFF' - id: Flowerspv2 - decals: - 893: -36.8971,53.180473 - 3528: 51,-24 - 4542: 30.428492,-45.878616 - 6603: 67.08375,51.99347 - 7683: 88.507126,-54.662968 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 727: -31.72929,36.986244 - 894: -36.6471,55.774223 - 1999: 17.924759,11.949231 - 2000: 17.143509,11.996106 - 3526: 41,-19 - 3527: 51,-26 - 4540: 31.92849,-52.191116 - 4541: 31.99099,-45.95674 - 6552: 85.682686,42.03535 - 6601: 69.00562,51.915344 - 7682: 93.038376,-54.491093 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 282: -5.018383,41.923084 - 721: -34.94804,32.923744 - 773: -9.239742,46.9776 - 889: -33.506474,54.5711 - 891: -36.631474,56.35235 - 1930: 49.049915,6.9550443 - 3079: -27.065111,-9.073271 - 4342: 4,65 - 7677: 91.288376,-54.787968 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 262: -8.190258,15.046175 - 719: -31.901165,33.03312 - 720: -34.026165,36.97062 - 3071: -27.471361,-23.098965 - 3916: 16.540745,41.988174 - 3920: 10.93137,34.956924 - 4548: 26.89746,-45.123745 - 6600: 67.52125,48.977844 - 7674: 93.382126,-53.584843 - - node: - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 263: -3.971508,15.014925 - 283: -5.643383,41.110584 - 3917: 15.290745,41.925674 - 3921: 10.040745,34.956924 - 6303: 105.48487,38.054688 - 6555: 91.745186,42.019726 - 6598: 70.49,48.93097 - 7675: 91.569626,-52.912968 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 772: -10.114742,47.024475 - 890: -34.287724,53.930473 - 3070: -25.986986,-22.98959 - 3078: -29.002611,-9.026396 - 3918: 9.946995,41.956924 - 3919: 15.02512,34.988174 - 6302: 109.125496,38.898438 - 6594: 67.851204,41.94966 - 6599: 69.02125,48.96222 - 7676: 90.679,-54.631718 - - node: - color: '#79150028' - id: FullTileOverlayGreyscale - decals: - 6242: 66,27 - 6243: 65,27 - 6244: 65,26 - 6245: 66,26 - - node: - color: '#79150096' - id: FullTileOverlayGreyscale - decals: - 994: -17,68 - 995: -17,69 - 996: -17,70 - 997: -17,72 - 998: -17,73 - 1794: 21,25 - 1795: 21,26 - 1796: 20,26 - 1797: 20,25 - 1798: 19,25 - 1799: 19,26 - 1800: 18,26 - 1801: 18,25 - 1802: 17,25 - 1803: 17,26 - 1804: 17,27 - 1805: 18,27 - - node: - color: '#EFB34147' - id: FullTileOverlayGreyscale - decals: - 7931: 93,5 - 7932: 93,6 - 7933: 94,6 - 7934: 94,5 - 7935: 95,5 - 7936: 95,6 - 7937: 96,5 - 7938: 97,5 - 7939: 98,5 - 7940: 98,6 - 7941: 97,6 - 7942: 97,4 - 7943: 98,4 - 7944: 111,4 - 7945: 110,6 - 7946: 110,5 - 7947: 110,4 - 7948: 109,4 - 7949: 109,5 - 7950: 109,6 - 7951: 108,6 - 7952: 108,5 - 7953: 108,4 - 7954: 107,5 - 7955: 107,6 - 7956: 106,6 - 7957: 106,4 - 7958: 105,4 - 7959: 105,5 - 7960: 105,6 - 7961: 104,6 - 7962: 104,4 - 7963: 104,5 - 7964: 103,4 - 7965: 103,5 - 7966: 103,6 - 7967: 102,5 - 7968: 102,4 - 7969: 101,4 - 7970: 101,5 - 7971: 101,6 - 7972: 100,6 - 7973: 100,5 - 7974: 99,5 - 7975: 99,6 - 7992: 96,6 - - node: - color: '#D4D4D409' - id: FullTileOverlayGreyscale - decals: - 1025: -22,64 - 1026: -22,65 - 1027: -21,65 - 1028: -21,64 - 1029: -20,64 - 1030: -20,65 - 1031: -19,64 - 1032: -19,65 - 6312: 96,39 - 6313: 96,40 - 6314: 96,41 - 6315: 96,42 - 6316: 96,43 - 6317: 96,44 - 6318: 96,45 - 6319: 96,46 - 6320: 96,47 - 6321: 96,48 - 6322: 96,49 - 6323: 97,49 - 6324: 96,50 - 6325: 96,51 - 6326: 96,52 - 6327: 96,53 - 6328: 96,54 - 6329: 96,55 - 6330: 95,55 - 6331: 101,49 - 6332: 100,49 - 6333: 101,39 - 6334: 100,39 - 6335: 99,39 - 6336: 98,39 - 6337: 97,39 - 6338: 85,39 - 6339: 86,39 - 6340: 87,39 - 6341: 88,39 - 6342: 89,39 - 6343: 90,39 - 6344: 91,39 - 6345: 92,39 - 6346: 93,39 - 6347: 94,39 - 6348: 95,39 - 6349: 83,39 - 6350: 82,39 - 6351: 81,39 - 6352: 82,38 - 6353: 82,37 - 6354: 82,36 - 6355: 82,35 - 6356: 82,34 - 6357: 82,33 - 6358: 82,32 - 6359: 82,31 - 6360: 82,30 - 6361: 82,29 - 6362: 82,28 - 6363: 82,27 - - node: - color: '#52B4E95A' - id: FullTileOverlayGreyscale - decals: - 4235: -3,61 - 4236: -3,62 - 4237: -3,63 - - node: - color: '#D4D4D428' - id: FullTileOverlayGreyscale - decals: - 1892: 20,6 - 1893: 21,6 - 1894: 22,6 - 1895: 23,6 - 1896: 24,6 - 1897: 25,6 - 1898: 26,6 - 1899: 27,6 - 1900: 28,6 - 1901: 29,6 - 1902: 30,6 - 1903: 31,6 - 1904: 32,6 - 1905: 33,6 - 1906: 34,6 - 1907: 35,6 - 1908: 36,6 - 1909: 37,6 - 1910: 38,6 - 1911: 24,13 - 1912: 24,12 - 1913: 24,11 - 1914: 24,10 - 1915: 24,9 - 1916: 24,7 - - node: - color: '#52B4E944' - id: FullTileOverlayGreyscale - decals: - 3860: 12,35 - 3861: 13,35 - 3881: 14,35 - 4060: 30,48 - 4061: 29,48 - 4062: 28,48 - 4063: 27,48 - 4064: 26,49 - 4065: 26,50 - 4066: 25,47 - 4067: 25,48 - 4068: 25,49 - 4069: 25,50 - 4070: 25,51 - 4071: 24,51 - 4072: 23,51 - 4073: 22,51 - 4074: 21,50 - 4075: 21,48 - 4250: 1,61 - 4251: 1,63 - - node: - color: '#EFB34196' - id: FullTileOverlayGreyscale - decals: - 513: -18,-12 - 514: -18,-11 - 515: -18,-10 - 516: -19,-9 - 517: -19,-10 - 518: -19,-11 - 519: -19,-12 - 520: -20,-12 - 521: -20,-10 - 522: -20,-9 - 523: -20,-11 - 1143: 2,24 - 1144: 2,25 - 1145: 2,26 - 1146: 2,27 - 1147: 2,30 - 1148: 3,30 - 1149: 4,30 - 1150: 6,30 - 1151: 2,21 - 1152: 3,21 - 1153: 4,21 - 1154: 5,21 - 1155: 6,21 - - node: - color: '#334E6D31' - id: FullTileOverlayGreyscale - decals: - 6393: 104,46 - 6394: 104,47 - 6395: 104,48 - 6396: 104,49 - 6397: 104,50 - 6398: 104,51 - 6399: 104,52 - 6400: 105,52 - 6401: 105,51 - 6402: 105,50 - 6403: 105,49 - 6404: 105,48 - 6405: 105,47 - 6406: 105,46 - 6407: 106,46 - 6408: 106,47 - 6409: 106,48 - 6410: 106,49 - 6411: 106,50 - 6412: 106,51 - 6413: 106,52 - 6414: 110,46 - 6415: 110,47 - 6416: 110,48 - 6417: 109,49 - 6418: 108,49 - 6419: 107,49 - 6420: 103,49 - 6421: 110,50 - 6422: 110,51 - 6423: 110,52 - 6424: 110,49 - 6425: 111,49 - 6426: 112,49 - 6427: 112,50 - 6428: 113,50 - 6429: 114,50 - 6430: 115,50 - 6431: 116,50 - 6432: 116,49 - 6433: 116,48 - 6434: 115,48 - 6435: 114,48 - 6436: 113,48 - 6437: 112,48 - - node: - color: '#DE3A3A4A' - id: FullTileOverlayGreyscale - decals: - 1396: 23,0 - 1397: 25,0 - 1398: 25,4 - 1399: 23,4 - 1400: 30,8 - 1401: 29,15 - 1402: 23,28 - 1403: 23,31 - 1404: 25,31 - 1405: 25,28 - - node: - color: '#DE3A3A60' - id: FullTileOverlayGreyscale - decals: - 1406: 37,13 - 1407: 36,14 - 1408: 36,13 - 1409: 36,12 - 1410: 36,11 - 1411: 36,10 - 1412: 36,9 - 1413: 34,9 - 1414: 33,9 - 1415: 33,11 - 1416: 33,12 - 1417: 34,12 - 1418: 34,11 - 1419: 34,14 - 1420: 33,14 - 1421: 40,5 - 1422: 40,7 - 1423: 44,25 - 1424: 44,24 - 1425: 44,23 - 1426: 44,22 - 1427: 44,20 - 1428: 44,21 - 1429: 44,19 - 1430: 44,18 - 1431: 44,17 - 1432: 41,17 - 1433: 41,18 - 1434: 42,18 - 1435: 42,17 - 1436: 43,17 - 1437: 43,18 - 1438: 45,17 - 1439: 46,17 - 1440: 47,17 - 1441: 48,17 - 1442: 49,17 - 1443: 50,17 - 1444: 51,17 - 1445: 51,25 - 1446: 50,25 - 1447: 49,25 - 1448: 48,25 - 1449: 47,25 - 1450: 46,25 - 1451: 45,25 - 1452: 45,26 - 1453: 46,26 - 1454: 46,27 - 1455: 45,27 - 1456: 45,28 - 1457: 46,28 - 1458: 46,29 - 1459: 45,29 - - node: - color: '#D4D4D40C' - id: FullTileOverlayGreyscale - decals: - 6785: 73,42 - 6786: 72,42 - 6787: 72,43 - 6788: 73,43 - 6789: 74,45 - 6790: 73,45 - 6791: 72,45 - 6792: 71,45 - 6793: 70,45 - 6794: 69,45 - 6795: 68,45 - 6796: 67,45 - 6797: 67,46 - 6798: 68,46 - 6799: 69,46 - 6800: 70,46 - 6801: 71,46 - 6802: 72,46 - 6803: 73,46 - 6804: 73,47 - 6805: 72,47 - 6806: 72,48 - 6807: 73,48 - 6808: 73,49 - 6809: 72,49 - 6810: 73,50 - 6811: 72,50 - 6812: 72,51 - 6813: 73,51 - 6814: 73,52 - 6815: 72,52 - 6816: 72,53 - 6817: 73,53 - 6818: 73,54 - 6819: 72,54 - 6820: 72,55 - 6821: 73,55 - 6822: 74,55 - 6823: 73,56 - 6824: 72,56 - 6825: 71,56 - 6826: 70,56 - 6827: 69,56 - 6828: 68,56 - 6829: 67,56 - 6830: 72,57 - 6831: 73,57 - 6832: 73,58 - 6833: 72,58 - 6834: 72,59 - 6835: 71,59 - 6836: 70,59 - 6837: 69,59 - 6838: 68,59 - 6839: 68,58 - 6840: 69,58 - 6841: 70,58 - 6842: 71,58 - 6843: 71,60 - 6844: 70,60 - 6845: 69,60 - 6846: 76,55 - 6847: 77,55 - 6848: 78,55 - 6849: 79,55 - 6850: 80,55 - 6851: 81,55 - 6852: 82,55 - 6853: 83,55 - 6854: 84,55 - 6855: 86,55 - 6856: 85,55 - 6857: 87,55 - 6858: 88,55 - 6859: 89,55 - 6860: 90,55 - 6861: 91,55 - 6862: 91,56 - 6863: 92,55 - 6864: 93,55 - 6865: 91,58 - 6866: 91,59 - 6867: 91,60 - 6868: 91,61 - 6869: 91,62 - 6870: 91,63 - 6871: 91,64 - 6872: 91,65 - 6873: 91,66 - 6874: 91,67 - 6875: 91,68 - 6876: 91,69 - 6877: 91,70 - - node: - color: '#334E6D5D' - id: FullTileOverlayGreyscale - decals: - 6650: 69,44 - 6651: 68,44 - 6652: 67,44 - 6653: 71,42 - 6654: 71,43 - 6655: 74,42 - 6656: 74,43 - 6657: 74,46 - 6658: 74,47 - 6659: 74,48 - 6660: 74,49 - 6661: 74,50 - 6662: 74,51 - 6663: 74,52 - 6664: 74,53 - 6665: 74,54 - 6666: 74,56 - 6667: 71,57 - 6668: 70,57 - 6669: 69,57 - 6670: 68,57 - 6671: 67,57 - 6672: 67,58 - 6673: 67,59 - 6674: 67,60 - 6675: 68,60 - 6676: 72,60 - 6677: 73,60 - 6678: 73,59 - 6679: 76,56 - 6680: 77,56 - 6681: 78,56 - 6682: 79,56 - 6683: 80,56 - 6684: 82,56 - 6685: 81,56 - 6686: 93,56 - 6687: 90,56 - 6688: 89,56 - 6689: 88,56 - 6690: 87,56 - 6691: 86,56 - 6692: 85,56 - 6693: 84,56 - 6694: 83,56 - - node: - color: '#D381C996' - id: FullTileOverlayGreyscale - decals: - 3302: 36,-15 - 3303: 37,-15 - 3304: 38,-15 - 3305: 45,-19 - 3306: 47,-19 - 3307: 46,-19 - 3369: 48,-24 - 3370: 48,-23 - 4707: 43,-37 - - node: - color: '#EFB34137' - id: FullTileOverlayGreyscale - decals: - 2846: -41,-61 - 2847: -40,-61 - 2848: -39,-61 - 2849: -38,-61 - 2850: -38,-62 - 2851: -37,-62 - 2852: -33,-62 - 2853: -33,-61 - 2854: -33,-60 - 2855: -34,-60 - 2856: -35,-60 - 2857: -35,-61 - 2858: -35,-62 - 2859: -34,-62 - 2860: -36,-62 - 2861: -36,-61 - 2862: -37,-61 - 2863: -36,-60 - 2864: -37,-60 - 2865: -38,-60 - 2866: -39,-60 - 2867: -40,-60 - 2868: -41,-60 - 2869: -41,-59 - 2870: -41,-58 - 2871: -40,-59 - 2872: -40,-58 - 2873: -39,-59 - 2874: -39,-58 - 2875: -39,-57 - 2876: -39,-56 - 2877: -40,-56 - 2878: -40,-57 - 2879: -41,-57 - 2880: -41,-56 - 2881: -42,-56 - 2882: -41,-55 - 2883: -40,-55 - 2884: -41,-54 - 2885: -40,-54 - 2886: -39,-54 - 2887: -39,-53 - 2888: -40,-53 - 2889: -41,-53 - 2890: -39,-52 - 2891: -39,-51 - 2892: -39,-50 - 2893: -40,-50 - 2894: -40,-51 - 2895: -40,-52 - 2896: -41,-52 - 2897: -41,-51 - 2898: -41,-50 - 2899: -41,-46 - 2900: -40,-46 - 2901: -39,-46 - 2902: -39,-47 - 2903: -40,-47 - 2904: -41,-48 - 2905: -40,-48 - 2906: -39,-48 - 2907: -38,-48 - 2908: -38,-47 - 2909: -37,-47 - 2910: -37,-48 - 2911: -36,-48 - 2912: -36,-47 - 2913: -35,-47 - 2914: -35,-48 - 2915: -34,-48 - 2916: -33,-48 - 2917: -33,-47 - 2918: -43,-59 - 2919: -43,-58 - 2920: -44,-58 - 2921: -44,-59 - 2922: -45,-59 - 2923: -45,-58 - 2924: -46,-58 - 2925: -46,-59 - 2926: -47,-58 - 2927: -47,-59 - - node: - color: '#334E6D41' - id: FullTileOverlayGreyscale - decals: - 6712: 55,42 - 6713: 54,42 - 6714: 54,43 - 6715: 55,43 - - node: - color: '#D4D4D40B' - id: FullTileOverlayGreyscale - decals: - 6364: 79,39 - 6365: 78,39 - 6366: 76,39 - 6367: 77,39 - 6368: 75,39 - 6369: 74,39 - 6370: 73,39 - 6371: 72,39 - 6372: 71,39 - 6373: 70,39 - 6374: 69,39 - 6375: 68,39 - 6376: 67,39 - 6377: 66,39 - 6378: 65,39 - 6379: 64,39 - 6380: 63,39 - 6381: 62,39 - 6382: 61,39 - 6383: 60,39 - 6384: 59,39 - 6385: 58,39 - 6386: 57,39 - 6387: 56,39 - 6388: 55,39 - 6389: 55,38 - 6390: 55,37 - 6391: 55,36 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 4429: 24,57 - 4430: 24,58 - 4431: 24,59 - 4432: 24,60 - 4433: 25,60 - 4434: 25,59 - 4435: 25,57 - 4436: 26,57 - 4437: 26,58 - 4438: 26,59 - 4439: 26,60 - 4440: 25,58 - 7168: 28,-13 - 7169: 28,-14 - 7170: 27,-14 - - node: - color: '#D4D4D406' - id: FullTileOverlayGreyscale - decals: - 6259: 60,26 - 6260: 60,27 - 6261: 60,28 - 6262: 60,29 - 6263: 58,26 - 6264: 58,27 - 6265: 58,29 - 6266: 58,30 - 6267: 58,31 - 6268: 60,31 - 6269: 60,32 - 6270: 60,33 - 6271: 60,34 - 6272: 58,33 - 6273: 58,34 - - node: - color: '#0000005A' - id: FullTileOverlayGreyscale - decals: - 6247: 59,26 - 6248: 59,27 - 6249: 59,28 - 6250: 58,28 - 6251: 59,29 - 6252: 59,30 - 6253: 60,30 - 6254: 59,31 - 6255: 59,32 - 6256: 59,33 - 6257: 59,34 - 6258: 58,32 - - node: - color: '#EFCC4103' - id: FullTileOverlayGreyscale - decals: - 5882: 98,-24 - 5883: 97,-24 - 5884: 96,-24 - 5885: 96,-23 - 5886: 97,-23 - 5887: 98,-23 - 5888: 97,-22 - 5889: 96,-22 - 5890: 96,-21 - 5891: 97,-21 - 5892: 98,-21 - 5893: 98,-20 - 5894: 99,-20 - 5895: 99,-21 - 5896: 100,-21 - 5897: 100,-20 - 5898: 101,-20 - 5899: 101,-21 - 5900: 103,-21 - 5901: 103,-20 - 5902: 103,-19 - 5903: 103,-18 - 5904: 103,-17 - 5905: 103,-16 - 5906: 104,-16 - 5907: 104,-17 - 5908: 104,-18 - 5909: 104,-19 - 5910: 104,-20 - 5911: 104,-21 - 5912: 105,-21 - 5913: 105,-20 - 5914: 106,-20 - 5915: 106,-21 - 5916: 107,-21 - 5917: 107,-20 - 5918: 108,-20 - 5919: 108,-21 - 5920: 109,-21 - 5921: 109,-20 - 5922: 110,-21 - 5923: 111,-21 - 5924: 111,-20 - 5925: 112,-21 - 5926: 112,-20 - 5927: 113,-20 - 5928: 114,-21 - 5929: 114,-20 - 5930: 115,-20 - 5931: 115,-21 - 5932: 116,-21 - - node: - color: '#DE3A3A2E' - id: FullTileOverlayGreyscale - decals: - 5176: 53,5 - 5177: 53,6 - 5178: 53,7 - 5179: 52,5 - - node: - color: '#00000028' - id: FullTileOverlayGreyscale - decals: - 6949: -32,0 - 6950: -31,0 - 6951: -30,0 - 6952: -29,0 - 6953: -29,1 - 6954: -29,2 - 6955: -29,3 - 6956: -29,4 - 6957: -29,5 - 6958: -29,6 - 6959: -30,6 - 6960: -31,6 - 6961: -32,6 - 6962: -32,4 - 6963: -32,3 - 6964: -32,2 - 6965: -32,1 - - node: - color: '#EFC84196' - id: FullTileOverlayGreyscale - decals: - 5489: 72,-17 - 5490: 73,-17 - 5491: 79,-17 - 5492: 78,-17 - 5493: 77,-17 - 5494: 76,-17 - 5495: 75,-17 - - node: - color: '#9FED5896' - id: FullTileOverlayGreyscale - decals: - 176: -12,36 - 177: -12,37 - 178: -12,38 - 179: -9,36 - 180: -9,37 - 181: -9,38 - 182: -9,41 - 183: -9,42 - 184: -12,41 - 185: -12,42 - 4051: 25,43 - 4052: 25,44 - 4053: 25,45 - 4516: 34,44 - 4517: 34,45 - 4518: 35,44 - 4519: 33,44 - 4520: 34,43 - - node: - color: '#EFD54196' - id: FullTileOverlayGreyscale - decals: - 5700: 67,-8 - - node: - color: '#334E6D53' - id: FullTileOverlayGreyscale - decals: - 6534: 89,42 - 6535: 89,41 - 6536: 89,43 - 6537: 89,44 - 6538: 89,45 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 3925: 9,43 - 3926: 9,44 - 3927: 9,45 - 3928: 2,61 - 3929: 2,62 - 3930: 2,63 - 4035: 2,45 - 4036: 2,44 - 4037: 2,43 - 7611: 64,-53 - 7612: 65,-53 - - node: - color: '#EFD24150' - id: FullTileOverlayGreyscale - decals: - 7171: 37,-8 - - node: - color: '#DE3A3A44' - id: FullTileOverlayGreyscale - decals: - 1622: 45,16 - 1623: 42,16 - 1624: 42,12 - 1625: 45,12 - 1626: 47,12 - 1627: 47,16 - 1628: 50,16 - 1629: 50,12 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 491: -13,-10 - 492: -15,-8 - 3361: 42,-19 - 5047: 70,-10 - 5048: 72,-12 - - node: - color: '#00000053' - id: FullTileOverlayGreyscale - decals: - 6927: -28,-1 - 6928: -29,-1 - 6929: -30,-1 - 6930: -31,-1 - 6931: -32,-1 - 6932: -33,0 - 6933: -33,2 - 6934: -33,3 - 6935: -33,4 - 6936: -33,5 - 6937: -33,9 - 6938: -32,9 - 6939: -31,8 - 6940: -32,7 - 6941: -31,7 - 6942: -30,7 - 6943: -29,7 - 6944: -28,1 - 6945: -28,2 - 6946: -28,3 - 6947: -28,4 - 6948: -28,5 - - node: - color: '#FFFFFFFF' - id: Grassa1 - decals: - 3066: -26.080736,-23.02084 - 7670: 91.97723,-53.959843 - - node: - color: '#FFFFFFFF' - id: Grassa2 - decals: - 6587: 70.913704,51.96634 - - node: - color: '#FFFFFFFF' - id: Grassa3 - decals: - 3076: -28.471361,-9.010771 - 6548: 91.41956,41.97285 - 6588: 70.42933,55.02884 - - node: - color: '#FFFFFFFF' - id: Grassa4 - decals: - 6301: 108.531746,39.054688 - 7669: 91.13348,-53.819218 - - node: - color: '#FFFFFFFF' - id: Grassa5 - decals: - 6550: 87.04456,42.019726 - 6586: 67.038704,52.013214 - - node: - color: '#FFFFFFFF' - id: Grassb1 - decals: - 280: -4.002758,42.048084 - 6589: 69.319954,55.02884 - 6590: 69.413704,49.06009 - 6591: 68.89808,41.996536 - 7667: 92.7116,-54.897343 - 7671: 90.9616,-52.897343 - - node: - color: '#FFFFFFFF' - id: Grassb2 - decals: - 281: -6.002758,41.079334 - 6299: 104.969246,37.914062 - 6583: 67.21058,48.99759 - 6584: 67.507454,54.96634 - 7666: 93.75848,-54.912968 - - node: - color: '#FFFFFFFF' - id: Grassb3 - decals: - 279: -3.893383,41.141834 - 895: -36.61585,55.1961 - 1391: -27.879156,42.02038 - 3068: -27.846361,-23.005215 - 6582: 70.99183,49.013214 - 6585: 67.944954,51.99759 - 7665: 92.88348,-54.03338 - 7672: 92.2116,-52.928593 - - node: - color: '#FFFFFFFF' - id: Grassb4 - decals: - 4535: 29.944117,-45.92549 - 6298: 109.062996,37.992188 - 6300: 105.35987,39.976562 - 7673: 93.554,-52.787968 - - node: - color: '#FFFFFFFF' - id: Grassb5 - decals: - 278: -6.034008,42.110584 - 722: -34.97929,37.03312 - 1392: -29.019781,42.20788 - 3067: -26.955736,-22.92709 - 3077: -26.205736,-8.885771 - 6549: 92.88831,42.175976 - 7668: 92.1491,-52.225468 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 274: -3.924633,41.110584 - 277: -5.862133,41.15746 - 876: -33.850224,56.0086 - 879: -34.475224,56.867973 - 880: -33.74085,53.680473 - 4532: 30.819117,-45.941116 - 4533: 29.053492,-53.92549 - 6547: 92.91956,42.050976 - - node: - color: '#FFFFFFFF' - id: Grassd2 - decals: - 275: -3.940258,42.173084 - 276: -5.237133,41.59496 - 877: -33.30335,55.461723 - 882: -36.818974,56.60235 - 2587: 9.984938,-8.052343 - 6577: 66.944954,55.12259 - 6578: 68.49183,52.044464 - 6581: 68.944954,49.044464 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 272: -6.034008,42.079334 - 878: -33.850224,54.961723 - 883: -36.86585,55.8836 - 2586: 2.0474377,-8.067968 - 3065: -26.065111,-22.98959 - 3075: -25.908861,-8.963896 - 4531: 32.02224,-45.941116 - 6545: 85.35046,41.84785 - 6546: 85.05358,42.082226 - 6570: 70.851204,52.01326 - 6579: 70.89808,55.02884 - 6580: 70.944954,49.013214 - - node: - color: '#FFFFFFFF' - id: Grasse1 - decals: - 259: -5.612133,15.108675 - 260: -3.049633,16.889925 - 714: -34,37 - 715: -32,33 - 726: -31.026165,36.97062 - 874: -35.67835,53.3836 - 1390: -28.004156,41.95788 - 1924: 40.947773,4.0019193 - 1998: 17.924759,11.996106 - 2585: 2.9693127,-8.067968 - 3063: -27.986986,-22.973965 - 3074: -26.846361,-8.979521 - 3522: 51,-26 - 3912: 11,35 - 3913: 15,42 - 6566: 67.069954,42.172634 - 6567: 67.163704,48.988827 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 258: -7.643383,15.108675 - 265: -3.096508,16.952425 - 266: -6.580883,15.171175 - 273: -4.362133,41.65746 - 713: -35,37 - 716: -34,33 - 717: -35,33 - 725: -31.88554,37.017494 - 737: -31.09179,33.03312 - 873: -36.5221,53.53985 - 1389: -28.863531,42.004753 - 1394: 18.035181,-0.969964 - 1923: 48.958336,7.0644193 - 1926: 49.98634,1.9862943 - 1927: 50.83009,1.9550443 - 1997: 17.065384,12.027356 - 2584: 6.0161877,-8.036718 - 3064: -27.018236,-22.973965 - 3073: -27.736986,-9.026396 - 3520: 43,-19 - 3521: 41,-19 - 3523: 51,-25 - 3909: 15,35 - 3910: 16,42 - 3911: 10,42 - 4341: 4,65 - 4530: 29.194117,-45.909866 - 4534: 30.022242,-53.89424 - 5181: 57,6 - 6541: 91.05358,42.0666 - 6542: 92.24108,42.019726 - 6543: 87.08483,42.019726 - 6565: 67.96058,41.90701 - 6572: 69.64808,52.013214 - 6573: 67.351204,52.06009 - 6574: 68.02308,55.06009 - 6575: 68.757454,55.044464 - 7646: 94.5241,-54.674004 - 7647: 94.0241,-54.767754 - 7648: 94.28973,-53.62713 - 7649: 94.03973,-52.50213 - 7650: 92.75848,-53.15838 - 7651: 92.61785,-54.892754 - 7652: 92.2116,-54.955254 - 7653: 91.36785,-53.56463 - 7654: 90.97723,-52.12713 - 7655: 89.24285,-52.15838 - 7656: 88.32098,-52.455254 - 7657: 87.93035,-54.12713 - 7658: 88.41473,-54.78338 - 7659: 88.80535,-55.00213 - 7660: 90.57098,-55.12713 - 7661: 91.13348,-54.799004 - 7662: 92.00848,-53.111504 - 7663: 93.19598,-52.799004 - 7664: 93.44598,-52.40838 - 7689: 94.9915,-52.100468 - 7690: 94.96025,-52.866093 - 7691: 95.02275,-53.491093 - 7692: 94.944626,-54.381718 - 7693: 94.913376,-54.959843 - 7694: 94.14775,-51.944218 - 7695: 93.288376,-51.959843 - 7696: 92.257126,-52.022343 - 7697: 91.52275,-51.928593 - 7698: 89.913376,-51.897343 - 7699: 88.8665,-51.959843 - 7700: 88.100876,-51.959843 - 7701: 88.054,-53.178593 - 7702: 87.882126,-53.756718 - 7703: 87.929,-55.053593 - 7704: 89.632126,-55.006718 - 7705: 90.77275,-54.975468 - 7706: 91.444626,-55.037968 - 7707: 93.77275,-55.069218 - 7708: 93.163376,-55.131718 - 7709: 91.64775,-51.850468 - 7710: 92.8665,-51.741093 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 257: -8.987133,15.0618 - 261: -4.502758,15.0618 - 264: -3.065258,16.952425 - 771: -9.677242,47.00885 - 875: -36.2096,54.367973 - 881: -33.537724,54.024223 - 1925: 43.010273,4.0175443 - 2583: 9.156813,-8.021093 - 3062: -28.924486,-23.05209 - 3072: -28.893236,-8.979521 - 3524: 51,-24 - 3914: 17,42 - 3915: 10,35 - 4529: 32.006615,-52.11299 - 5180: 57,5 - 6544: 86.14733,41.894726 - 6564: 68.913704,42.078884 - 6568: 68.069954,49.00445 - 6569: 70.02308,48.9732 - 6571: 70.11683,51.950714 - 6576: 69.757454,55.075714 - 7622: 90.53973,-54.34588 - 7623: 88.78973,-53.767754 - 7624: 90.8991,-52.955254 - 7625: 90.88348,-53.549004 - 7626: 93.2741,-53.40838 - 7627: 92.68035,-52.68963 - 7628: 93.78973,-54.00213 - 7629: 92.80535,-54.330254 - 7630: 91.60223,-54.09588 - 7631: 91.5241,-53.50213 - 7632: 92.5866,-53.267754 - 7633: 93.22723,-53.392754 - 7634: 93.53973,-54.080254 - 7635: 91.0866,-54.549004 - 7636: 90.13348,-54.97088 - 7637: 89.07098,-54.455254 - 7638: 87.91473,-53.642754 - 7639: 88.16473,-52.34588 - 7640: 90.2116,-52.03338 - 7641: 92.00848,-52.25213 - 7642: 93.66473,-52.486504 - 7643: 94.03973,-52.25213 - 7644: 94.18035,-53.580254 - 7645: 93.2116,-54.392754 - - node: - color: '#EFD84147' - id: HalfTileOverlayGreyscale - decals: - 5844: 100,-16 - 5845: 99,-16 - - node: - color: '#A4610641' - id: HalfTileOverlayGreyscale - decals: - 2224: 8,-14 - 2225: 7,-14 - 2226: 6,-14 - 2227: 5,-14 - 2228: 4,-14 - 6697: 82,57 - 6698: 83,57 - - node: - color: '#D381C92E' - id: HalfTileOverlayGreyscale - decals: - 6695: 76,57 - 6696: 77,57 - - node: - color: '#EFD5411F' - id: HalfTileOverlayGreyscale - decals: - 6627: 70,48 - 6628: 69,48 - 6629: 68,48 - - node: - color: '#334E6D41' - id: HalfTileOverlayGreyscale - decals: - 6716: 55,41 - 6717: 54,41 - - node: - color: '#FFCF7C25' - id: HalfTileOverlayGreyscale - decals: - 2474: 8,-8 - 2475: 7,-8 - 2476: 5,-8 - 2477: 4,-8 - 2478: 1,-8 - 2479: 0,-8 - 2480: -1,-8 - 2481: -2,-8 - 2482: -3,-8 - 2483: -4,-8 - - node: - color: '#D4D4D409' - id: HalfTileOverlayGreyscale - decals: - 1106: -11,75 - 1107: -10,75 - 1108: -9,75 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale - decals: - 111: -14,8 - 112: -13,8 - 113: -12,8 - 326: -8,31 - 327: -7,31 - 328: -6,31 - 329: -5,31 - 336: -10,28 - 1760: -3,-17 - 1761: -2,-17 - 1762: -1,-17 - 1919: 50,7 - 2310: 6,-27 - 2311: 7,-27 - 2312: 8,-27 - 2313: 9,-27 - 2314: 10,-27 - 2315: 11,-27 - 2316: 12,-27 - 2317: 13,-27 - 2318: 14,-27 - 2685: 15,-15 - 2686: 16,-15 - 2687: 17,-15 - 2688: 18,-15 - 2689: 19,-15 - 2690: 20,-15 - 2691: 21,-15 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 507: -9,-9 - 508: -10,-9 - 509: -11,-9 - 1952: 45,3 - 1953: 44,3 - 1954: 43,3 - 1955: 42,3 - 1987: 18,11 - 1988: 17,11 - 2714: 17,-13 - 2715: 18,-13 - 2716: 19,-13 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - decals: - 2696: 20,-11 - 2697: 19,-11 - 2698: 18,-11 - 2699: 17,-11 - 2700: 16,-11 - 8220: 7,50 - 8221: 6,50 - 8222: 5,50 - 8223: 4,50 - 8224: 3,50 - 8225: 2,50 - - node: - color: '#D4D4D40F' - id: HalfTileOverlayGreyscale - decals: - 700: -30,36 - 701: -31,36 - 702: -32,36 - 703: -33,36 - 704: -34,36 - 705: -35,36 - 706: -36,36 - 707: -36,32 - 708: -35,32 - 709: -34,32 - 710: -33,32 - 711: -32,32 - 712: -30,32 - 740: -31,32 - 5993: 91,36 - 5994: 92,36 - 5995: 96,36 - 5996: 97,36 - 5997: 98,36 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - decals: - 186: -13,35 - 187: -11,35 - 188: -10,35 - 189: -8,35 - 190: -7,35 - 191: -10,40 - 192: -11,40 - 193: -13,40 - - node: - color: '#52B4E944' - id: HalfTileOverlayGreyscale - decals: - 6630: 70,51 - 6631: 69,51 - 6632: 68,51 - - node: - color: '#79150096' - id: HalfTileOverlayGreyscale - decals: - 5669: 60,2 - 6644: 68,54 - 6645: 69,54 - 6646: 70,54 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale - decals: - 1160: 3,29 - 1161: 5,29 - 1162: 4,29 - 7742: 125,-2 - 7743: 123,-2 - - node: - color: '#D4D4D45D' - id: HalfTileOverlayGreyscale - decals: - 5149: 56,2 - 5150: 55,2 - 5151: 54,2 - - node: - color: '#0000007C' - id: HalfTileOverlayGreyscale - decals: - 5462: 73,-4 - 5463: 72,-4 - 5464: 71,-4 - - node: - color: '#D381C94D' - id: HalfTileOverlayGreyscale - decals: - 7104: 50,-54 - 7105: 49,-54 - 7106: 45,-54 - 7107: 44,-54 - - node: - color: '#D4D4D45A' - id: HalfTileOverlayGreyscale - decals: - 536: -19,-4 - 537: -18,-4 - - node: - color: '#D4D4D415' - id: HalfTileOverlayGreyscale - decals: - 5266: 85,-14 - 5267: 84,-14 - 5268: 83,-14 - 5269: 82,-14 - 7302: 48,36 - 7303: 49,36 - 7304: 50,36 - 7305: 51,36 - - node: - color: '#4A4C4D92' - id: HalfTileOverlayGreyscale180 - decals: - 1920: 50,7 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale180 - decals: - 194: -7,39 - 195: -8,39 - 196: -10,39 - 197: -11,39 - 198: -13,39 - - node: - color: '#EFCF414A' - id: HalfTileOverlayGreyscale180 - decals: - 5334: 87,-8 - 5335: 86,-8 - 5336: 85,-8 - - node: - color: '#D4D4D43E' - id: HalfTileOverlayGreyscale180 - decals: - 5155: 56,2 - 5156: 55,2 - 5157: 54,2 - - node: - color: '#D4D4D447' - id: HalfTileOverlayGreyscale180 - decals: - 5161: 54,8 - 5162: 55,8 - 5163: 56,8 - - node: - color: '#D4D4D434' - id: HalfTileOverlayGreyscale180 - decals: - 5465: 73,-4 - 5466: 72,-4 - 5467: 71,-4 - - node: - color: '#79150096' - id: HalfTileOverlayGreyscale180 - decals: - 5670: 60,1 - 6647: 70,53 - 6648: 69,53 - 6649: 68,53 - - node: - color: '#52B4E944' - id: HalfTileOverlayGreyscale180 - decals: - 6633: 70,50 - 6634: 69,50 - 6635: 68,50 - - node: - color: '#EFD84147' - id: HalfTileOverlayGreyscale180 - decals: - 5841: 100,-18 - 5842: 99,-18 - 5843: 98,-18 - - node: - color: '#EFD5411F' - id: HalfTileOverlayGreyscale180 - decals: - 6624: 70,47 - 6625: 69,47 - 6626: 68,47 - - node: - color: '#A4610641' - id: HalfTileOverlayGreyscale180 - decals: - 2229: 4,-10 - 2230: 5,-10 - 2231: 6,-10 - 2232: 7,-10 - 2233: 8,-10 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 1165: 3,22 - 1166: 4,22 - 1167: 5,22 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale180 - decals: - 107: -15,10 - 108: -14,10 - 109: -13,10 - 110: -12,10 - 330: -5,32 - 331: -6,32 - 332: -7,32 - 333: -8,32 - 334: -9,32 - 335: -10,32 - 390: 4,13 - 391: 3,13 - 540: -18,-4 - 541: -19,-4 - 1756: 0,-10 - 1757: -1,-10 - 1758: -2,-10 - 1759: -3,-10 - 1918: 24,14 - 2319: 6,-21 - 2320: 7,-21 - 2321: 8,-21 - 2322: 9,-21 - 2323: 10,-21 - 2324: 11,-21 - 2325: 12,-21 - 2326: 13,-21 - 2327: 14,-21 - 2678: 21,-10 - 2679: 20,-10 - 2680: 19,-10 - 2681: 18,-10 - 2682: 17,-10 - 2683: 16,-10 - 2684: 15,-10 - 8039: 6,47 - 8040: 7,47 - 8041: 4,47 - 8042: 2,47 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 510: -9,-11 - 511: -10,-11 - 512: -11,-11 - 1949: 45,1 - 1950: 44,1 - 1951: 43,1 - 1989: 17,13 - 1990: 18,13 - - node: - color: '#9FED5860' - id: HalfTileOverlayGreyscale180 - decals: - 7274: 113,18 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 2701: 20,-14 - 2702: 19,-14 - 2703: 18,-14 - 2704: 17,-14 - 2705: 16,-14 - 8216: 6,47 - 8217: 7,47 - 8218: 4,47 - 8219: 2,47 - - node: - color: '#D381C94D' - id: HalfTileOverlayGreyscale180 - decals: - 7108: 50,-55 - 7109: 49,-55 - 7110: 48,-55 - 7111: 47,-55 - 7112: 45,-55 - 7113: 44,-55 - - node: - color: '#EFD24150' - id: HalfTileOverlayGreyscale180 - decals: - 7172: 37,-7 - 7173: 36,-9 - - node: - color: '#D4D4D40F' - id: HalfTileOverlayGreyscale180 - decals: - 686: -36,34 - 687: -35,34 - 688: -34,34 - 689: -33,34 - 690: -31,34 - 691: -32,34 - 692: -30,34 - 693: -30,38 - 694: -31,38 - 695: -32,38 - 696: -33,38 - 697: -34,38 - 698: -35,38 - 699: -36,38 - 5988: 96,35 - 5989: 97,35 - 5990: 98,35 - 5991: 92,35 - 5992: 91,35 - - node: - color: '#D4D4D409' - id: HalfTileOverlayGreyscale180 - decals: - 1109: -9,68 - 1110: -10,68 - 1111: -11,68 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 8038: 5,47 - - node: - color: '#D4D4D415' - id: HalfTileOverlayGreyscale180 - decals: - 7298: 51,40 - 7299: 50,40 - 7300: 49,40 - 7301: 48,40 - - node: - color: '#D4D4D40F' - id: HalfTileOverlayGreyscale270 - decals: - 5998: 85,32 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 2708: 15,-13 - 2709: 15,-12 - - node: - color: '#EFD84147' - id: HalfTileOverlayGreyscale270 - decals: - 5846: 97,-17 - 5847: 97,-16 - 5848: 97,-15 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale270 - decals: - 114: -11,9 - 320: -9,29 - 321: -9,30 - 353: 5,8 - 354: 5,12 - 388: 5,9 - 389: 5,11 - 401: 5,10 - 1020: -21,68 - 1021: -21,69 - 1750: 0,-16 - 1751: 0,-15 - 1753: 1,-13 - 1754: 1,-12 - 1755: 1,-11 - 2333: 15,-26 - 2334: 15,-25 - 2335: 15,-24 - 2336: 15,-23 - 8036: 15,-22 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 1156: 3,24 - 1157: 3,25 - 1158: 3,26 - 1159: 3,27 - 1174: 7,25 - 1175: 7,26 - 7744: 122,-3 - 7745: 122,-5 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 368: -9,-2 - 369: -9,-1 - 370: -9,0 - 371: -9,1 - 372: -9,2 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 1992: 19,12 - - node: - color: '#00000057' - id: HalfTileOverlayGreyscale270 - decals: - 6485: 79,44 - 6486: 79,45 - - node: - color: '#DE3A3A44' - id: HalfTileOverlayGreyscale270 - decals: - 1650: 50,14 - 1651: 47,14 - 1652: 44,14 - 1653: 41,14 - - node: - color: '#646464A1' - id: HalfTileOverlayGreyscale270 - decals: - 4772: 35,-26 - 4773: 35,-27 - - node: - color: '#D4D4D415' - id: HalfTileOverlayGreyscale270 - decals: - 5273: 86,-13 - 5274: 86,-12 - 5275: 86,-11 - 7295: 52,37 - 7296: 52,38 - 7297: 52,39 - - node: - color: '#D4D4D409' - id: HalfTileOverlayGreyscale270 - decals: - 1100: -12,69 - 1101: -12,70 - 1102: -12,71 - 1103: -12,72 - 1104: -12,73 - 1105: -12,74 - - node: - color: '#D4D4D40B' - id: HalfTileOverlayGreyscale270 - decals: - 6392: 102,39 - - node: - color: '#D4D4D45A' - id: HalfTileOverlayGreyscale270 - decals: - 5862: 95,-22 - 5863: 95,-21 - 5864: 95,-20 - 5865: 102,-21 - 5866: 102,-20 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - decals: - 205: -6,36 - 206: -6,37 - 207: -6,38 - - node: - color: '#9FED5860' - id: HalfTileOverlayGreyscale270 - decals: - 7273: 112,19 - - node: - color: '#D381C94D' - id: HalfTileOverlayGreyscale270 - decals: - 7101: 46,-53 - 7102: 46,-52 - 7103: 46,-51 - - node: - color: '#D4D4D415' - id: HalfTileOverlayGreyscale90 - decals: - 5270: 81,-13 - 5271: 81,-12 - 5272: 81,-11 - 7292: 47,37 - 7293: 47,38 - 7294: 47,39 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 7276: 114,19 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale90 - decals: - 317: -11,29 - 318: -11,30 - 319: -11,31 - 349: 2,8 - 350: 2,9 - 351: 2,10 - 352: 2,12 - 1018: -22,68 - 1019: -22,69 - 1744: -4,-16 - 1745: -4,-15 - 1746: -4,-14 - 1747: -4,-13 - 1748: -4,-12 - 1749: -4,-11 - 2328: 5,-26 - 2329: 5,-25 - 2330: 5,-24 - 2331: 5,-23 - 2332: 5,-22 - - node: - color: '#646464A1' - id: HalfTileOverlayGreyscale90 - decals: - 4774: 33,-26 - 4775: 33,-27 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 2706: 21,-13 - 2707: 21,-12 - - node: - color: '#0000004D' - id: HalfTileOverlayGreyscale90 - decals: - 5872: 95,-22 - 5873: 95,-21 - 5874: 95,-20 - 5875: 102,-21 - 5876: 102,-20 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 1168: 6,23 - 1169: 6,24 - 1170: 6,27 - 1171: 6,28 - 7741: 126,-3 - - node: - color: '#D4D4D453' - id: HalfTileOverlayGreyscale90 - decals: - 6481: 79,44 - 6482: 79,45 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 7726: 110,18 - 7727: 110,20 - - node: - color: '#D381C94D' - id: HalfTileOverlayGreyscale90 - decals: - 7100: 48,-51 - - node: - color: '#DE3A3A44' - id: HalfTileOverlayGreyscale90 - decals: - 1646: 51,14 - 1647: 48,14 - 1648: 45,14 - 1649: 42,14 - - node: - color: '#D4D4D409' - id: HalfTileOverlayGreyscale90 - decals: - 1094: -8,69 - 1095: -8,70 - 1096: -8,71 - 1097: -8,72 - 1098: -8,73 - 1099: -8,74 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 1956: 46,2 - 1991: 16,12 - - node: - color: '#EFD84147' - id: HalfTileOverlayGreyscale90 - decals: - 5849: 98,-15 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 2466: 13,-28 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 862: -41,32 - 863: -41,34 - 864: -41,40 - 865: -41,42 - 2467: 15,-25 - 2468: 15,-24 - 2469: 15,-23 - 5014: 69,-22 - 5015: 69,-21 - 5016: 69,-20 - 5017: 69,-19 - 6718: 56,42 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 2274: 7,-14 - 2457: 5,-31 - 6719: 65,41 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 2456: 10,-33 - 2717: 18,-10 - 3516: 52,-30 - - node: - color: '#52B4E93B' - id: MiniTileCheckerBOverlay - decals: - 8608: 65,19 - 8609: 67,19 - - node: - color: '#52B4E963' - id: MiniTileCheckerBOverlay - decals: - 8610: 73,12 - 8611: 72,12 - 8612: 71,12 - 8613: 70,12 - 8614: 69,12 - 8615: 68,12 - 8616: 67,12 - 8617: 66,12 - 8618: 66,11 - 8619: 66,10 - 8620: 66,9 - 8621: 66,8 - 8622: 66,7 - 8623: 67,7 - 8624: 68,7 - 8625: 69,7 - 8626: 70,7 - 8627: 71,7 - 8628: 72,7 - 8629: 73,7 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkLineE - decals: - 8669: 73,7 - 8670: 73,12 - - node: - color: '#D381C996' - id: MiniTileWhiteInnerSe - decals: - 4692: 56,-34 - - node: - color: '#FFFFFFFF' - id: North - decals: - 8131: 53.9764,59.069416 - - node: - color: '#000000A4' - id: QuarterTileOverlayGreyscale - decals: - 4967: 63,-22 - 4968: 63,-21 - 4969: 63,-20 - 4970: 63,-19 - 4971: 64,-19 - 4972: 65,-19 - 4973: 67,-19 - 4974: 68,-19 - 4975: 69,-19 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale - decals: - 659: -31,40 - 660: -32,40 - 661: -33,40 - 662: -34,40 - - node: - color: '#DE3A3A47' - id: QuarterTileOverlayGreyscale - decals: - 7420: 54,24 - 7421: 54,23 - 7422: 54,22 - 7423: 54,20 - 7424: 54,21 - 7425: 54,19 - - node: - color: '#334E6D76' - id: QuarterTileOverlayGreyscale - decals: - 7408: 66,40 - 7409: 67,40 - 7410: 68,40 - 7411: 69,40 - 7412: 70,40 - 7413: 71,40 - - node: - color: '#334E6D44' - id: QuarterTileOverlayGreyscale - decals: - 7515: 76,56 - 7516: 77,56 - 7517: 78,56 - 7518: 79,56 - 7519: 80,56 - 7520: 81,56 - 7521: 82,56 - 7522: 83,56 - 7523: 84,56 - 7524: 85,56 - 7525: 86,56 - 7526: 87,56 - 7527: 88,56 - 7528: 89,56 - 7529: 90,56 - - node: - color: '#D4D4D409' - id: QuarterTileOverlayGreyscale - decals: - 1060: -17,58 - 1061: -17,59 - 1062: -17,60 - 1063: -17,61 - 1064: -17,62 - 1065: -17,63 - 1066: -17,64 - 1067: -17,65 - 1068: -17,66 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 2741: 23,-9 - 2742: 23,-10 - 2743: 23,-11 - 2744: 23,-12 - 2745: 23,-13 - 2746: 23,-14 - 2747: 23,-15 - 2748: 23,-16 - 4521: 11,-15 - 4522: 11,-16 - 4523: 11,-17 - 4524: 11,-18 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 1995: 19,11 - - node: - color: '#D381C94D' - id: QuarterTileOverlayGreyscale - decals: - 7114: 46,-54 - - node: - color: '#EFD84144' - id: QuarterTileOverlayGreyscale - decals: - 7328: 22,34 - 7329: 23,34 - 7330: 24,34 - 7331: 25,34 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 1011: -15,72 - 1012: -15,73 - 1016: -15,74 - 7793: 91,-20 - 7794: 92,-20 - 7795: 93,-20 - 7796: 94,-20 - 7797: 98,-20 - 7798: 99,-20 - 7799: 100,-20 - 7800: 101,-20 - 7801: 105,-20 - 7802: 106,-20 - 7803: 107,-20 - 7804: 108,-20 - 7805: 109,-20 - 7806: 111,-20 - 7807: 112,-20 - 7808: 113,-20 - 7809: 114,-20 - 7810: 115,-20 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale - decals: - 622: -30,31 - 623: -29,31 - 624: -32,31 - 625: -33,31 - 626: -34,31 - 627: -35,31 - 628: -36,31 - 629: -29,32 - 630: -29,33 - 631: -29,34 - 632: -29,35 - 633: -29,36 - 634: -29,37 - 635: -29,38 - 741: -31,31 - 3126: -34,-23 - 3127: -32,-25 - 3128: -33,-23 - 3129: -31,-25 - 3130: -30,-25 - 3131: -29,-25 - 3132: -28,-25 - 3133: -27,-25 - 3134: -26,-25 - 3145: -24,-15 - 3146: -24,-14 - 3147: -24,-13 - 3148: -24,-12 - 3149: -24,-11 - 3150: -24,-10 - 3151: -24,-9 - 3152: -24,-8 - - node: - color: '#EFD5415D' - id: QuarterTileOverlayGreyscale - decals: - 5451: 67,-24 - 5452: 67,-25 - 5453: 67,-26 - 5454: 67,-27 - - node: - color: '#EFD24150' - id: QuarterTileOverlayGreyscale - decals: - 7175: 35,-7 - 7176: 35,-6 - - node: - color: '#D4D4D415' - id: QuarterTileOverlayGreyscale - decals: - 5276: 86,-14 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale - decals: - 322: -9,28 - 340: -4,31 - 671: -36,40 - 672: -35,40 - 682: -38,36 - 683: -38,35 - 919: -38,56 - 920: -38,57 - 921: -38,58 - 922: -37,58 - 923: -36,58 - 1214: -7,3 - 1215: -7,4 - 1216: -7,5 - 1217: -7,6 - 1218: -6,6 - 1219: -5,6 - 1220: -4,6 - 1221: -3,6 - 1222: -2,6 - 1223: -2,8 - 1224: -2,9 - 1225: -2,10 - 1226: -2,11 - 1227: -2,12 - 1228: -2,13 - 1229: -2,14 - 1230: -2,15 - 1231: -2,16 - 1232: -2,17 - 1233: -2,18 - 1234: -2,19 - 1235: -2,20 - 1236: -2,21 - 1237: -2,22 - 1238: -2,23 - 1239: -2,24 - 1240: -2,26 - 1241: -2,27 - 1242: -2,28 - 1243: -2,29 - 1244: -2,30 - 1245: -2,31 - 1246: -2,32 - 1247: -2,33 - 1248: -2,34 - 1249: -2,35 - 1250: -2,36 - 1251: -2,37 - 1252: -2,38 - 1253: -2,39 - 1254: -2,37 - 1335: -6,48 - 1336: -6,47 - 1337: -6,46 - 1338: -8,46 - 1339: -9,46 - 1340: -10,46 - 1341: -11,46 - 1342: -12,46 - 1343: -13,46 - 1344: -14,46 - 1345: -15,46 - 1346: -16,46 - 1347: -18,46 - 1348: -19,46 - 1349: -20,46 - 1350: -21,46 - 1351: -22,46 - 1352: -23,46 - 1353: -24,46 - 1354: -25,46 - 1355: -26,46 - 1356: -27,46 - 1357: -28,46 - 1358: -29,46 - 1384: 3,-2 - 1385: 3,-3 - 1386: 3,-4 - 1387: 2,-4 - 1388: 1,-4 - 1763: 0,-17 - 1767: 1,-14 - 2340: 15,-27 - 2749: 23,-17 - 2750: 23,-18 - 2751: 23,-19 - 2752: 23,-20 - 2753: 22,-20 - 2754: 22,-21 - 3249: -20,-5 - 3250: -24,-5 - 4403: 15,68 - 4404: 14,68 - 4405: 13,68 - 4406: 12,68 - 4819: -6,50 - 4820: -6,51 - 4821: -6,52 - 4822: -6,53 - 4823: -6,54 - 4824: -6,55 - 4825: -6,56 - 4826: -6,57 - 4827: -6,58 - 4828: -6,59 - 4829: -6,60 - 4830: -6,61 - 4831: -6,62 - 4832: -6,63 - 4833: -6,64 - 4834: -6,65 - 4835: -6,66 - 5622: 54,0 - 5623: 54,-1 - 5624: 53,-1 - 5625: 52,-1 - 5626: 51,-1 - 5627: 50,-1 - 5628: 49,-1 - 5629: 48,-1 - 5630: 47,-1 - 5631: 46,-1 - 5632: 45,-1 - 5633: 44,-1 - 5634: 43,-1 - 5635: 42,-1 - 5636: 41,-1 - 7332: 26,34 - 7333: 28,34 - 7334: 27,34 - 7335: 29,34 - 7336: 30,34 - 7337: 31,34 - 7338: 32,34 - 7339: 33,34 - 7340: 34,34 - 7341: 35,34 - 7392: 54,40 - 7393: 54,39 - 7394: 54,38 - 7395: 54,37 - 7396: 54,36 - 7397: 55,40 - 7398: 56,40 - 7399: 57,40 - 7400: 58,40 - 7401: 59,40 - 7402: 60,40 - 7403: 61,40 - 7404: 62,40 - 7405: 63,40 - 7406: 64,40 - 7407: 65,40 - 7426: 54,18 - 7427: 54,17 - 7428: 54,16 - 7429: 54,15 - 7430: 54,14 - 7431: 54,13 - 7432: 54,12 - 7433: 54,11 - 7434: 54,10 - 7471: 81,27 - 7472: 81,28 - 7473: 81,29 - 7474: 81,30 - 7475: 81,31 - 7476: 81,32 - 7477: 81,33 - 7478: 81,34 - 7479: 81,35 - 7480: 81,36 - 7481: 81,37 - 7499: 90,16 - 7500: 89,16 - 7501: 89,15 - 7502: 89,14 - 7503: 89,13 - 7504: 89,12 - 8588: 58,12 - 8589: 59,12 - 8590: 60,12 - 8591: 61,12 - 8592: 62,12 - 8593: 63,12 - 8594: 64,12 - 8595: 65,12 - 8596: 65,13 - 8597: 65,14 - 8598: 65,15 - 8599: 66,15 - 8600: 67,15 - 8601: 68,15 - 8602: 69,15 - 8603: 70,15 - 8604: 71,15 - 8605: 72,15 - 8606: 73,15 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 208: -8,40 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 3082: -41,-25 - 3083: -36,-23 - 3115: -24,-17 - 3116: -24,-18 - 3117: -24,-19 - 3118: -24,-20 - 3119: -24,-21 - 3120: -24,-22 - 3121: -24,-23 - 3122: -24,-24 - 3123: -24,-25 - 4389: 13,65 - 4390: 14,65 - 4391: 12,65 - 4392: 15,66 - 4393: 15,67 - 8673: -35,-23 - 8674: -36,-24 - 8675: -36,-25 - 8676: -37,-25 - 8677: -38,-25 - 8678: -39,-25 - 8679: -40,-25 - 8701: -36,-9 - 8702: -36,-8 - 8703: -39,-7 - 8704: -39,-6 - 8705: -39,-5 - - node: - color: '#52B4E941' - id: QuarterTileOverlayGreyscale - decals: - 5107: 11,34 - 5108: 10,34 - 5109: 9,34 - 5110: 8,34 - 5111: 7,34 - 5112: 6,34 - 5113: 5,34 - 5114: 4,34 - 5115: 3,34 - 5116: 2,34 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 3383: 52,-26 - 3384: 52,-25 - 3385: 52,-24 - 4552: 27,-49 - 4553: 27,-48 - 4554: 27,-47 - 4555: 28,-47 - 4556: 29,-47 - 4557: 30,-47 - 4558: 31,-47 - 4559: 32,-47 - 4647: 30,-56 - 4648: 29,-56 - 4649: 28,-56 - 4650: 27,-56 - 4651: 26,-56 - 4652: 25,-56 - 4653: 24,-56 - 4654: 23,-56 - 4655: 23,-57 - 4656: 23,-58 - - node: - color: '#A4610641' - id: QuarterTileOverlayGreyscale - decals: - 2207: 4,-19 - 2208: 5,-19 - 2209: 6,-19 - 2210: 7,-19 - 2211: 8,-19 - 2212: 9,-19 - 2213: 9,-18 - 2214: 9,-17 - - node: - color: '#EFCF414A' - id: QuarterTileOverlayGreyscale - decals: - 5331: 93,-3 - 5332: 93,-4 - 5333: 93,-5 - - node: - color: '#EFC84196' - id: QuarterTileOverlayGreyscale - decals: - 5474: 83,-22 - 5475: 83,-20 - 5476: 83,-19 - 5477: 84,-19 - 5478: 85,-19 - 5479: 86,-19 - 5480: 87,-19 - 5496: 71,-15 - 5497: 71,-14 - 5498: 71,-13 - 5499: 72,-13 - 5500: 73,-13 - 5501: 74,-13 - 5502: 75,-13 - 5503: 75,-12 - 5504: 75,-11 - 5505: 75,-10 - 5506: 75,-9 - 5507: 76,-9 - 5508: 77,-9 - 5516: 78,-9 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 2096: -7,-4 - 2097: -7,-3 - 2098: -7,-2 - 2099: -7,-1 - 2100: -7,0 - 2101: -7,1 - 2102: -7,2 - 2107: -7,-5 - 2108: -9,-5 - 2109: -10,-5 - 2110: -11,-5 - 2111: -12,-5 - 2112: -13,-5 - 2113: -14,-5 - 2114: -15,-5 - 5585: 53,-10 - 5586: 52,-10 - 5587: 51,-10 - 5599: 48,-10 - 7140: 27,-5 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 5594: 44,-3 - 5595: 45,-3 - 5596: 46,-3 - 5597: 49,-3 - 8063: 98,-51 - - node: - color: '#000000A4' - id: QuarterTileOverlayGreyscale180 - decals: - 4976: 69,-19 - 4977: 69,-20 - 4978: 69,-21 - 4979: 69,-22 - 4980: 68,-22 - 4981: 67,-22 - 4982: 66,-22 - 4983: 65,-22 - 4984: 64,-22 - 4985: 63,-22 - - node: - color: '#EFCF414A' - id: QuarterTileOverlayGreyscale180 - decals: - 5316: 95,-9 - 5317: 96,-9 - 5318: 97,-9 - 5319: 98,-9 - 5320: 98,-8 - 5321: 98,-7 - - node: - color: '#EFC84196' - id: QuarterTileOverlayGreyscale180 - decals: - 5509: 79,-16 - 5510: 79,-15 - - node: - color: '#EFB34147' - id: QuarterTileOverlayGreyscale180 - decals: - 7994: 97,4 - 7995: 98,4 - 7996: 101,4 - 7997: 102,4 - 7998: 103,4 - 7999: 104,4 - 8000: 105,4 - 8001: 106,4 - 8002: 108,4 - 8003: 109,4 - 8004: 110,4 - 8005: 111,4 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale180 - decals: - 655: -34,42 - 656: -33,42 - 657: -32,42 - 658: -31,42 - - node: - color: '#DE3A3A6F' - id: QuarterTileOverlayGreyscale180 - decals: - 7342: 22,32 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 1996: 16,13 - 2710: 15,-11 - 2755: 11,-7 - 2756: 12,-7 - 2757: 13,-7 - - node: - color: '#A4610641' - id: QuarterTileOverlayGreyscale180 - decals: - 2199: 8,-16 - 2200: 7,-16 - 2201: 6,-16 - 2202: 5,-16 - 2203: 4,-16 - 2204: 3,-16 - 2205: 3,-17 - 2206: 3,-18 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 1172: 6,25 - 3011: -33,-48 - 3012: -34,-48 - 3013: -35,-48 - 3014: -36,-48 - 3015: -37,-48 - 3016: -38,-48 - 3017: -39,-48 - 3046: -39,-44 - 3047: -39,-43 - 3048: -39,-42 - 3049: -39,-41 - 3050: -39,-40 - 3051: -39,-39 - 3052: -39,-38 - 3053: -39,-37 - 3054: -39,-36 - 3055: -39,-35 - 3056: -39,-34 - 3057: -39,-33 - 3058: -39,-32 - 3059: -39,-31 - 3060: -39,-30 - 3061: -39,-29 - 7813: 98,-24 - 7814: 98,-23 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 2759: 15,-7 - 2760: 16,-7 - 2761: 17,-7 - 2762: 18,-7 - 2763: 19,-7 - 2764: 20,-7 - 2765: 21,-7 - 2766: 22,-7 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 3471: 33,-18 - 3472: 34,-18 - 3473: 32,-18 - 3474: 31,-18 - 3475: 30,-18 - 3476: 29,-18 - 3477: 28,-18 - 3478: 27,-18 - 3499: 25,-21 - 3500: 25,-20 - 4640: 30,-58 - 4641: 29,-58 - 4642: 28,-58 - 4643: 27,-58 - 4644: 26,-58 - 4645: 25,-58 - 4646: 24,-58 - 4712: 41,-40 - 4713: 42,-40 - 4714: 43,-40 - 4715: 44,-40 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale180 - decals: - 324: -11,32 - 684: -29,30 - 685: -28,30 - 748: -30,30 - 749: -27,30 - 750: -27,31 - 751: -27,32 - 930: -31,54 - 931: -31,53 - 932: -31,52 - 933: -32,52 - 934: -32,51 - 1283: -31,44 - 1284: -31,43 - 1310: 0,26 - 1311: 0,27 - 1312: 0,28 - 1313: 0,29 - 1314: 0,30 - 1315: 0,31 - 1316: 0,32 - 1363: -2,4 - 1364: -3,4 - 1365: -4,4 - 1366: -5,4 - 1367: -5,3 - 1368: -5,2 - 1369: -5,1 - 1382: -5,0 - 1765: -4,-10 - 2337: 5,-21 - 2758: 14,-7 - 2802: 10,-7 - 2803: 9,-7 - 3181: -22,-15 - 3182: -22,-14 - 3183: -22,-13 - 3184: -22,-11 - 3185: -22,-12 - 3186: -22,-10 - 3187: -22,-9 - 3188: -22,-8 - 3189: -22,-7 - 3264: -21,-27 - 3265: -22,-27 - 3266: -20,-27 - 3267: -19,-27 - 3268: -15,-27 - 3269: -14,-27 - 3275: 0,-7 - 3276: 1,-7 - 3277: 2,-7 - 3278: 3,-7 - 3279: 4,-7 - 3280: 5,-7 - 3281: 8,-7 - 3282: 7,-7 - 3496: 25,-24 - 3497: 25,-23 - 3498: 25,-22 - 3501: 25,-19 - 3502: 25,-18 - 4397: 14,65 - 4398: 13,65 - 4399: 12,65 - 4400: 15,66 - 4401: 15,67 - 4402: 15,68 - 4854: -17,-7 - 4855: -18,-7 - 4856: -19,-7 - 4857: -20,-7 - 4858: -18,-12 - 4859: -18,-11 - 4860: -18,-10 - 5133: 20,32 - 5134: 19,32 - 5135: 18,32 - 5136: 17,32 - 5137: 16,32 - 5138: 15,32 - 5568: 26,-3 - 5569: 27,-3 - 5570: 28,-3 - 5571: 29,-3 - 5572: 30,-3 - 5573: 25,-3 - 5575: 25,-7 - 5576: 31,-3 - 5577: 32,-3 - 5578: 33,-3 - 5579: 34,-3 - 5580: 35,-3 - 5581: 36,-3 - 5582: 37,-3 - 5583: 38,-3 - 5584: 39,-3 - 5641: 61,-12 - 5642: 60,-12 - 5643: 59,-12 - 5644: 58,-12 - 5645: 56,-12 - 5646: 55,-12 - 5647: 54,-12 - 5648: 53,-12 - 5649: 52,-12 - 5650: 51,-12 - 5651: 50,-12 - 5652: 49,-12 - 5653: 44,-12 - 5654: 43,-12 - 5655: 45,-12 - 5656: 46,-12 - 5657: 48,-12 - 5658: 47,-12 - 7369: 37,32 - 7370: 38,32 - 7371: 40,32 - 7372: 39,32 - 7373: 41,32 - 7374: 42,32 - 7375: 43,32 - 7376: 44,32 - 7377: 45,32 - 7378: 46,32 - 7379: 47,32 - 7380: 48,32 - 7381: 49,32 - 7382: 50,32 - 7383: 51,32 - 7384: 52,32 - 7447: 56,36 - 7448: 56,37 - 7449: 56,38 - 7450: 57,38 - 7451: 58,38 - 7452: 59,38 - 7453: 60,38 - 7454: 61,38 - 7455: 62,38 - 7456: 63,38 - 7457: 64,38 - 7458: 65,38 - 7459: 66,38 - 7460: 67,38 - 7461: 68,38 - 7462: 69,38 - 7467: 78,38 - 7468: 79,38 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale180 - decals: - 636: -30,39 - 637: -31,39 - 638: -32,39 - 639: -33,39 - 640: -34,39 - 641: -35,39 - 642: -36,39 - 643: -37,39 - 644: -37,38 - 645: -37,37 - 646: -37,36 - 647: -37,35 - 648: -37,34 - 649: -37,33 - 650: -37,32 - 3135: -33,-24 - 3136: -33,-23 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 3095: -34,-9 - 3096: -33,-9 - 3097: -33,-8 - 3098: -33,-7 - 3099: -32,-7 - 3100: -31,-7 - 3101: -30,-7 - 3102: -29,-7 - 3103: -28,-7 - 3104: -27,-7 - 3105: -26,-7 - 4394: 14,68 - 4395: 13,68 - 4396: 12,68 - 7617: 66,-55 - 7618: 66,-54 - 7619: 66,-53 - 7620: 66,-52 - 7621: 66,-51 - 8696: -35,-9 - 8697: -36,-9 - 8698: -37,-7 - 8699: -38,-7 - 8700: -39,-7 - - node: - color: '#EFC54131' - id: QuarterTileOverlayGreyscale270 - decals: - 4890: 95,-13 - 4891: 94,-13 - 4892: 93,-13 - 4893: 92,-13 - 4894: 91,-13 - 4895: 90,-13 - 4896: 89,-13 - 4897: 88,-13 - 4898: 88,-12 - 4899: 88,-11 - 4901: 89,-10 - 4902: 89,-9 - 4903: 89,-8 - 4904: 89,-7 - 4905: 89,-6 - 4906: 89,-5 - 4907: 89,-4 - 4908: 89,-3 - 4909: 89,-2 - 4910: 89,-1 - 4911: 89,0 - 4912: 89,1 - 4913: 89,2 - 4914: 89,3 - - node: - color: '#EFCF414A' - id: QuarterTileOverlayGreyscale270 - decals: - 5328: 93,-9 - 5329: 93,-8 - 5330: 93,-7 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale270 - decals: - 651: -31,42 - 652: -32,42 - 653: -33,42 - 654: -34,42 - 3137: -24,-24 - 3138: -24,-23 - 3139: -24,-22 - 3140: -24,-21 - 3141: -24,-20 - 3142: -24,-19 - 3143: -24,-18 - 3144: -24,-17 - 3153: -26,-7 - 3154: -27,-7 - 3155: -28,-7 - 3156: -29,-7 - 3157: -30,-7 - 3158: -31,-7 - 3159: -32,-7 - 3160: -33,-9 - 3161: -34,-9 - 8685: -36,-24 - 8686: -36,-23 - 8687: -35,-9 - 8688: -36,-9 - 8689: -36,-8 - 8690: -36,-7 - 8691: -37,-7 - 8692: -38,-7 - 8693: -39,-7 - 8694: -39,-6 - 8695: -39,-5 - - node: - color: '#D4D4D412' - id: QuarterTileOverlayGreyscale270 - decals: - 2191: 4,-16 - 2192: 5,-16 - 2193: 6,-16 - 2194: 7,-16 - 2195: 8,-16 - 2196: 9,-16 - 2197: 9,-17 - 2198: 9,-18 - - node: - color: '#EFC54173' - id: QuarterTileOverlayGreyscale270 - decals: - 4948: 63,-22 - 4949: 63,-21 - 4950: 63,-20 - 4951: 63,-19 - 4952: 64,-22 - 4953: 65,-22 - 4954: 66,-22 - 4955: 67,-22 - 4956: 68,-22 - 4957: 69,-22 - - node: - color: '#EFD24150' - id: QuarterTileOverlayGreyscale270 - decals: - 7174: 37,-9 - - node: - color: '#DE3A3A6F' - id: QuarterTileOverlayGreyscale270 - decals: - 7343: 26,32 - 7344: 27,32 - 7345: 28,32 - 7346: 29,32 - 7347: 30,32 - 7348: 31,32 - 7349: 32,32 - 7350: 33,32 - 7351: 34,32 - 7352: 35,32 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale270 - decals: - 341: -4,32 - 392: 5,13 - 680: -38,38 - 681: -38,39 - 910: -33,51 - 911: -33,52 - 912: -34,52 - 913: -35,52 - 914: -36,52 - 915: -37,52 - 916: -38,52 - 917: -38,53 - 918: -38,54 - 961: -34,43 - 962: -34,44 - 963: -34,45 - 964: -34,46 - 965: -34,47 - 966: -34,48 - 967: -34,49 - 1255: -2,41 - 1256: -2,42 - 1257: -2,43 - 1258: -2,44 - 1259: -3,44 - 1260: -4,44 - 1261: -5,44 - 1262: -6,44 - 1263: -9,44 - 1264: -10,44 - 1265: -12,44 - 1266: -11,44 - 1267: -13,44 - 1268: -14,44 - 1269: -15,44 - 1270: -16,44 - 1271: -18,44 - 1272: -19,44 - 1273: -20,44 - 1274: -21,44 - 1275: -22,44 - 1276: -23,44 - 1277: -24,44 - 1278: -25,44 - 1279: -27,44 - 1280: -26,44 - 1281: -28,44 - 1282: -29,44 - 1370: 0,4 - 1371: 1,4 - 1372: 2,4 - 1373: 3,4 - 1374: 3,3 - 1375: 3,2 - 1376: 3,1 - 1383: 3,0 - 1766: 1,-10 - 2173: -8,44 - 2338: 15,-21 - 2804: -7,-7 - 2805: -6,-7 - 2806: -5,-7 - 3270: -26,-28 - 3272: -4,-7 - 3273: -3,-7 - 3274: -2,-7 - 4770: 23,-23 - 4771: 23,-24 - 4861: -20,-12 - 4862: -20,-11 - 4863: -20,-10 - 4864: -20,-9 - 5123: 2,32 - 5124: 3,32 - 5125: 4,32 - 5126: 5,32 - 5127: 6,32 - 5128: 7,32 - 5129: 8,32 - 5130: 9,32 - 5131: 10,32 - 5132: 11,32 - 5601: 41,-3 - 5602: 41,-4 - 5603: 41,-5 - 5604: 41,-6 - 5605: 41,-7 - 5606: 41,-8 - 5607: 41,-9 - 5608: 41,-11 - 5609: 41,-10 - 5610: 41,-12 - 7385: 54,26 - 7386: 54,27 - 7387: 54,28 - 7388: 54,29 - 7389: 54,30 - 7390: 54,31 - 7391: 54,32 - 7463: 71,38 - 7464: 72,38 - 7465: 73,38 - 7466: 74,38 - 7469: 76,38 - 7470: 75,38 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - decals: - 607: -36,39 - 608: -35,39 - 609: -34,39 - 610: -33,39 - 611: -32,39 - 612: -31,39 - 613: -30,39 - 614: -29,39 - 615: -29,38 - 616: -29,37 - 617: -29,36 - 618: -29,35 - 619: -29,34 - 620: -29,33 - 621: -29,32 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 4560: 27,-51 - 4561: 28,-51 - 4562: 29,-51 - 4563: 30,-51 - 4564: 31,-51 - 4565: 32,-51 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 5591: 51,-3 - 5592: 52,-3 - 5593: 53,-3 - 5598: 48,-3 - 8060: 96,-49 - 8061: 96,-48 - 8062: 96,-51 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 1958: 42,2 - 1993: 19,13 - 2115: -15,-7 - 2116: -14,-7 - 2117: -13,-7 - 2118: -12,-7 - 2119: -11,-7 - 2120: -10,-7 - 2121: -9,-7 - 2711: 21,-11 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 3106: -24,-15 - 3107: -24,-14 - 3108: -24,-13 - 3109: -24,-12 - 3110: -24,-11 - 3111: -24,-10 - 3112: -24,-9 - 3113: -24,-8 - 3114: -24,-7 - 3894: 12,38 - - node: - color: '#D4D4D42B' - id: QuarterTileOverlayGreyscale270 - decals: - 237: -12,40 - 238: -13,40 - 239: -11,40 - 240: -10,40 - 241: -9,40 - 242: -8,40 - 243: -13,35 - 244: -12,35 - 245: -11,35 - 246: -10,35 - 247: -9,35 - 248: -8,35 - 249: -7,35 - 250: -6,35 - 256: -6,39 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 7811: 96,-24 - 7812: 96,-23 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 5588: 46,-10 - 5589: 45,-10 - 5590: 44,-10 - 5600: 49,-10 - 7141: 29,-5 - 7142: 30,-5 - 7143: 30,-6 - - node: - color: '#D381C94D' - id: QuarterTileOverlayGreyscale90 - decals: - 7115: 48,-54 - - node: - color: '#52B4E941' - id: QuarterTileOverlayGreyscale90 - decals: - 5117: 15,34 - 5118: 16,34 - 5119: 17,34 - 5120: 18,34 - 5121: 19,34 - 5122: 20,34 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 4525: 13,-18 - 4526: 13,-17 - 4527: 13,-16 - 4528: 13,-15 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 4708: 41,-38 - 4709: 42,-38 - 4710: 43,-38 - 4711: 44,-38 - - node: - color: '#EFC54131' - id: QuarterTileOverlayGreyscale90 - decals: - 4900: 88,-11 - 4915: 89,3 - 4916: 90,3 - 4917: 91,3 - 4918: 92,3 - 4919: 93,3 - 4920: 95,3 - 4921: 94,3 - 4922: 95,2 - 4923: 95,1 - 4924: 95,0 - 4925: 95,-1 - 4926: 95,-13 - 4927: 95,-12 - 4928: 95,-11 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - decals: - 593: -30,31 - 594: -32,31 - 595: -33,31 - 596: -34,31 - 597: -35,31 - 598: -36,31 - 599: -37,31 - 600: -37,32 - 601: -37,33 - 602: -37,34 - 603: -37,35 - 604: -37,36 - 605: -37,37 - 606: -37,38 - 742: -31,31 - - node: - color: '#D4D4D409' - id: QuarterTileOverlayGreyscale90 - decals: - 1051: -9,58 - 1052: -9,59 - 1053: -9,60 - 1054: -9,61 - 1055: -9,62 - 1056: -9,63 - 1057: -9,64 - 1058: -9,65 - 1059: -9,66 - - node: - color: '#D4D4D42B' - id: QuarterTileOverlayGreyscale90 - decals: - 230: -7,39 - 231: -8,39 - 232: -9,39 - 233: -10,39 - 234: -11,39 - 235: -12,39 - 236: -13,39 - 251: -6,35 - 252: -6,36 - 253: -6,37 - 254: -6,38 - 255: -6,39 - - node: - color: '#334E6D76' - id: QuarterTileOverlayGreyscale90 - decals: - 7353: 52,34 - 7354: 51,34 - 7355: 50,34 - 7356: 49,34 - 7357: 48,34 - 7358: 47,34 - 7414: 74,40 - 7415: 75,40 - 7416: 76,40 - 7417: 77,40 - 7418: 78,40 - 7419: 79,40 - - node: - color: '#EFB34147' - id: QuarterTileOverlayGreyscale90 - decals: - 7976: 110,6 - 7977: 108,6 - 7978: 109,6 - 7979: 107,6 - 7980: 106,6 - 7981: 105,6 - 7982: 104,6 - 7983: 103,6 - 7984: 101,6 - 7985: 100,6 - 7986: 99,6 - 7987: 98,6 - 7988: 97,6 - 7989: 95,6 - 7990: 94,6 - 7991: 93,6 - 7993: 96,6 - - node: - color: '#EFD24150' - id: QuarterTileOverlayGreyscale90 - decals: - 7177: 38,-8 - 7178: 38,-7 - 7179: 38,-6 - - node: - color: '#D4D4D415' - id: QuarterTileOverlayGreyscale90 - decals: - 5277: 81,-14 - - node: - color: '#EFD84147' - id: QuarterTileOverlayGreyscale90 - decals: - 5850: 98,-16 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 3084: -34,-23 - 3085: -33,-23 - 3086: -33,-24 - 3087: -33,-25 - 3088: -32,-25 - 3089: -31,-25 - 3090: -30,-25 - 3091: -29,-25 - 3092: -28,-25 - 3093: -27,-25 - 3094: -26,-25 - 3895: 11,37 - - node: - color: '#EFC54173' - id: QuarterTileOverlayGreyscale90 - decals: - 4958: 69,-22 - 4959: 69,-21 - 4960: 69,-20 - 4961: 69,-19 - 4962: 68,-19 - 4963: 67,-19 - 4964: 65,-19 - 4965: 64,-19 - 4966: 63,-19 - - node: - color: '#334E6D44' - id: QuarterTileOverlayGreyscale90 - decals: - 7505: 74,46 - 7506: 74,47 - 7507: 74,48 - 7508: 74,49 - 7509: 74,50 - 7510: 74,51 - 7511: 74,52 - 7512: 74,53 - 7513: 74,54 - 7514: 74,56 - 7530: 93,56 - - node: - color: '#EFCC4157' - id: QuarterTileOverlayGreyscale90 - decals: - 5637: 58,-10 - 5638: 59,-10 - 5639: 60,-10 - 5640: 61,-10 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 1013: -19,72 - 1014: -19,73 - 1015: -19,74 - 1173: 6,26 - 2995: -39,-50 - 2996: -39,-51 - 2997: -39,-52 - 2998: -39,-53 - 2999: -39,-54 - 3000: -39,-56 - 3001: -39,-57 - 3002: -39,-58 - 3003: -39,-59 - 3004: -39,-60 - 3005: -38,-60 - 3006: -37,-60 - 3007: -36,-60 - 3008: -35,-60 - 3009: -34,-60 - 3010: -33,-60 - - node: - color: '#9FED5844' - id: QuarterTileOverlayGreyscale90 - decals: - 2122: 1,6 - 2123: 2,6 - 2124: 3,6 - 2125: 4,6 - 2126: 5,6 - 2127: 0,13 - 2128: 0,12 - 2129: 0,11 - - node: - color: '#EFC84196' - id: QuarterTileOverlayGreyscale90 - decals: - 5481: 89,-19 - 5482: 89,-20 - 5483: 89,-22 - 5511: 79,-13 - 5512: 79,-12 - 5513: 79,-11 - 5514: 79,-10 - 5515: 79,-9 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale90 - decals: - 323: -11,28 - 673: -30,40 - 674: -29,40 - 675: -28,40 - 676: -28,39 - 677: -28,38 - 678: -28,37 - 679: -28,36 - 924: -34,58 - 925: -33,58 - 926: -32,58 - 927: -31,58 - 928: -31,57 - 929: -31,56 - 1285: 5,-4 - 1286: 5,-3 - 1287: 5,-2 - 1288: 5,-1 - 1289: 5,0 - 1290: 5,1 - 1291: 5,2 - 1292: 5,3 - 1293: 5,4 - 1294: 5,5 - 1295: 0,6 - 1296: 0,8 - 1297: 0,9 - 1298: 0,10 - 1299: 0,14 - 1300: 0,15 - 1301: 0,16 - 1302: 0,17 - 1303: 0,18 - 1304: 0,19 - 1305: 0,20 - 1306: 0,21 - 1307: 0,22 - 1308: 0,23 - 1309: 0,24 - 1317: 0,34 - 1318: 0,35 - 1319: 0,36 - 1320: 0,37 - 1321: 0,38 - 1322: 0,39 - 1323: 0,41 - 1324: 0,42 - 1325: 0,43 - 1326: 0,44 - 1327: 0,45 - 1328: 0,46 - 1329: -1,46 - 1330: -2,46 - 1331: -3,46 - 1332: -4,46 - 1333: -4,47 - 1334: -4,48 - 1359: -31,46 - 1360: -31,47 - 1361: -31,48 - 1362: -31,49 - 1377: -5,-2 - 1378: -5,-3 - 1379: -5,-4 - 1380: -4,-4 - 1381: -3,-4 - 1764: -4,-17 - 2339: 5,-27 - 2767: 7,-5 - 2768: 8,-5 - 2769: 9,-5 - 2770: 10,-5 - 2771: 11,-5 - 2772: 12,-5 - 2773: 13,-5 - 2774: 14,-5 - 2775: 15,-5 - 2776: 16,-5 - 2777: 17,-5 - 2778: 18,-5 - 2779: 19,-5 - 2780: 20,-5 - 2781: 21,-5 - 2782: 22,-5 - 3164: -14,-25 - 3165: -15,-25 - 3166: -16,-25 - 3167: -17,-25 - 3168: -18,-25 - 3169: -19,-25 - 3170: -20,-25 - 3171: -21,-25 - 3172: -22,-25 - 3173: -22,-24 - 3174: -22,-23 - 3175: -22,-22 - 3176: -22,-21 - 3177: -22,-20 - 3178: -22,-19 - 3179: -22,-18 - 3180: -22,-17 - 3235: -38,-5 - 3236: -37,-5 - 3237: -36,-5 - 3238: -35,-5 - 3239: -34,-5 - 3240: -33,-5 - 3241: -32,-5 - 3242: -31,-5 - 3243: -30,-5 - 3244: -29,-5 - 3245: -28,-5 - 3246: -27,-5 - 3247: -26,-5 - 3248: -17,-5 - 3251: -22,-5 - 3479: 34,-16 - 3480: 33,-16 - 3481: 32,-16 - 3482: 31,-16 - 3483: 30,-16 - 3484: 29,-16 - 3485: 29,-16 - 3486: 28,-16 - 3487: 27,-16 - 3488: 25,-16 - 3489: 25,-15 - 3490: 25,-14 - 3491: 25,-12 - 3492: 25,-13 - 3493: 25,-11 - 3494: 25,-10 - 3495: 25,-9 - 4836: -4,66 - 4837: -4,65 - 4838: -4,64 - 4839: -4,63 - 4840: -4,62 - 4841: -4,61 - 4842: -4,60 - 4843: -4,59 - 4844: -4,58 - 4845: -4,57 - 4846: -4,56 - 4847: -4,55 - 4848: -4,54 - 4849: -4,53 - 4850: -4,52 - 4851: -4,51 - 4852: -4,50 - 5543: 72,-16 - 5544: 73,-16 - 5545: 74,-16 - 5546: 75,-16 - 5547: 76,-16 - 5548: 77,-16 - 5549: 78,-16 - 5550: 71,-16 - 5574: 25,-5 - 5611: 56,-9 - 5612: 56,-10 - 5613: 56,-8 - 5614: 56,-7 - 5615: 56,-6 - 5616: 56,-5 - 5617: 56,-4 - 5618: 56,-3 - 5619: 56,-2 - 5620: 56,-1 - 5621: 56,0 - 5659: 5,-5 - 7359: 46,34 - 7360: 45,34 - 7361: 44,34 - 7362: 43,34 - 7363: 42,34 - 7364: 41,34 - 7365: 39,34 - 7366: 40,34 - 7367: 38,34 - 7368: 37,34 - 7435: 56,13 - 7436: 56,14 - 7437: 56,15 - 7438: 56,16 - 7439: 56,17 - 7440: 56,18 - 7441: 56,19 - 7442: 56,20 - 7443: 56,21 - 7444: 56,22 - 7445: 56,23 - 7446: 56,24 - 7482: 83,37 - 7483: 83,36 - 7484: 83,35 - 7485: 83,34 - 7486: 83,33 - 7487: 83,32 - 7488: 83,31 - 7489: 83,30 - 7490: 83,29 - 7491: 83,28 - 7492: 83,27 - 7493: 93,16 - 7494: 94,16 - 7495: 94,15 - 7496: 94,14 - 7497: 94,13 - 7498: 94,12 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale90 - decals: - 663: -34,40 - 664: -33,40 - 665: -32,40 - 666: -31,40 - 3124: -41,-25 - 3125: -36,-23 - 3162: -33,-9 - 3163: -33,-8 - 8680: -40,-25 - 8681: -39,-25 - 8682: -38,-25 - 8683: -37,-25 - 8684: -35,-23 - - node: - color: '#EFCF414A' - id: QuarterTileOverlayGreyscale90 - decals: - 5322: 95,-3 - 5323: 96,-3 - 5324: 97,-3 - 5325: 98,-3 - 5326: 98,-4 - 5327: 98,-5 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 1994: 16,11 - 5554: 26,-1 - 5555: 27,-1 - 5556: 28,-1 - 5557: 29,-1 - 5558: 30,-1 - 5559: 31,-1 - 5560: 32,-1 - 5561: 33,-1 - 5562: 34,-1 - 5563: 35,-1 - 5564: 36,-1 - 5565: 37,-1 - 5566: 38,-1 - 5567: 39,-1 - - node: - color: '#EFD5415D' - id: QuarterTileOverlayGreyscale90 - decals: - 5455: 69,-24 - 5456: 70,-24 - 5457: 70,-25 - 5458: 70,-27 - - node: - color: '#D4D4D412' - id: QuarterTileOverlayGreyscale90 - decals: - 2183: 8,-19 - 2184: 7,-19 - 2185: 6,-19 - 2186: 5,-19 - 2187: 4,-19 - 2188: 3,-19 - 2189: 3,-18 - 2190: 3,-17 - - node: - color: '#FFFFFFFF' - id: Remains - decals: - 861: -40.524254,78.77933 - - node: - color: '#FFFFFFFF' - id: Rock05 - decals: - 896: -35.7721,55.53985 - - node: - color: '#FFFFFFFF' - id: Rock06 - decals: - 545: -41,8 - 546: -42,10 - 547: -41,13 - 548: -39,19 - 776: -45,71 - 777: -37,72 - 778: -35,73 - 779: -36,76 - 780: -47,74 - 781: -44,80 - 782: -41,87 - 783: -39,79 - 2835: -21,-48 - 2836: -27,-43 - 2838: -47,-54 - 2839: -52,-48 - 2840: -52,-62 - 2841: -22,-65 - 2842: -28,-64 - 2843: -20,-74 - 4550: 21.046192,-46.154995 - 4551: 21.05676,-58.794876 - 6305: 107.57862,38.070312 - 6306: 105.219246,39.335938 - 7316: 49.031895,55.718052 - 7317: 45.156895,49.624302 - 7605: 81.67046,-59.001415 - 7606: 73.65289,-53.955524 - - node: - color: '#FFFFFFFF' - id: Rock07 - decals: - 784: -45,79 - 785: -39,76 - 2837: -25,-45 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign1 - decals: - 411: -4,-6 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign2 - decals: - 410: -3,-6 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign3 - decals: - 409: -2,-6 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign4 - decals: - 408: -1,-6 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign5 - decals: - 407: 0,-6 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign6 - decals: - 406: 1,-6 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign7 - decals: - 405: 2,-6 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 2448: 6,-29 - 2449: 9,-29 - 2566: 19,-29 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 7739: 122,-2 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2692: 15,-11 - 7613: 65,-54 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 505: -12,-9 - 1957: 41,3 - - node: - color: '#EFD84147' - id: ThreeQuarterTileOverlayGreyscale - decals: - 5836: 97,-14 - - node: - color: '#52B4E944' - id: ThreeQuarterTileOverlayGreyscale - decals: - 6636: 67,51 - - node: - color: '#EFD5411F' - id: ThreeQuarterTileOverlayGreyscale - decals: - 6620: 67,48 - - node: - color: '#646464A1' - id: ThreeQuarterTileOverlayGreyscale - decals: - 4777: 32,-26 - - node: - color: '#79150096' - id: ThreeQuarterTileOverlayGreyscale - decals: - 6643: 67,54 - - node: - color: '#D4D4D409' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1093: -12,75 - - node: - color: '#D4D4D40F' - id: ThreeQuarterTileOverlayGreyscale - decals: - 5986: 90,36 - 5987: 95,36 - - node: - color: '#D381C94D' - id: ThreeQuarterTileOverlayGreyscale - decals: - 7096: 43,-54 - - node: - color: '#DE3A3A44' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1630: 50,15 - 1631: 47,15 - 1632: 44,15 - 1633: 41,15 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale - decals: - 5758: 49,-7 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale - decals: - 325: -9,31 - 1752: 0,-14 - - node: - color: '#9FED5860' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 7275: 114,18 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2693: 21,-14 - 3893: 11,38 - 7614: 64,-52 - - node: - color: '#79150096' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1005: -18,68 - 1006: -18,69 - 1007: -18,70 - 1008: -18,71 - 1009: -18,72 - 1010: -18,73 - 6641: 71,53 - - node: - color: '#52B4E944' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 6637: 71,50 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1164: 6,22 - - node: - color: '#D4D4D409' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1042: -8,58 - 1043: -8,59 - 1044: -8,60 - 1045: -8,61 - 1046: -8,62 - 1047: -8,63 - 1048: -8,64 - 1049: -8,65 - 1050: -8,66 - 1092: -8,68 - - node: - color: '#DE3A3A44' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1634: 51,13 - 1635: 48,13 - 1636: 45,13 - 1637: 42,13 - - node: - color: '#D4D4D40F' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 5984: 99,35 - 5985: 93,35 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 5759: 48,-6 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 504: -8,-11 - 1948: 46,1 - - node: - color: '#EFD84147' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 5840: 101,-18 - - node: - color: '#EFD5411F' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 6621: 71,47 - - node: - color: '#52B4E944' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 6638: 67,50 - - node: - color: '#DE3A3A44' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1638: 41,13 - 1639: 44,13 - 1640: 47,13 - 1641: 50,13 - - node: - color: '#EFD5411F' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 6623: 67,47 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 5760: 49,-6 - - node: - color: '#646464A1' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 4776: 32,-27 - - node: - color: '#79150096' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 999: -16,68 - 1000: -16,69 - 1001: -16,70 - 1002: -16,71 - 1003: -16,72 - 1004: -16,73 - 6642: 67,53 - - node: - color: '#D4D4D40F' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 5982: 95,35 - 5983: 90,35 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 506: -12,-11 - 1945: 42,1 - 1946: 41,2 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2694: 15,-14 - 7615: 65,-52 - - node: - color: '#D381C94D' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 7099: 43,-55 - - node: - color: '#EFD84147' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 5838: 97,-18 - - node: - color: '#D4D4D409' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1033: -18,58 - 1034: -18,59 - 1035: -18,60 - 1036: -18,61 - 1037: -18,62 - 1038: -18,63 - 1039: -18,64 - 1040: -18,65 - 1041: -18,66 - 1090: -12,68 - - node: - color: '#EFD84147' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 5837: 98,-14 - 5839: 101,-16 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 503: -8,-9 - 1947: 46,3 - - node: - color: '#EFD5411F' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 6622: 71,48 - - node: - color: '#DE3A3A44' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1642: 51,15 - 1643: 48,15 - 1644: 45,15 - 1645: 42,15 - - node: - color: '#D4D4D409' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1091: -8,75 - - node: - color: '#D4D4D40F' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 5980: 93,36 - 5981: 99,36 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 5761: 48,-7 - - node: - color: '#D381C94D' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 7097: 48,-50 - 7098: 51,-54 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2695: 21,-11 - 7616: 64,-54 - - node: - color: '#52B4E944' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 6639: 71,51 - - node: - color: '#79150096' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 6640: 71,54 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1163: 6,29 - 7740: 126,-2 - - node: - color: '#DE3A3A96' - id: Tunnel - decals: - 8132: 32.99294,56.744785 - - node: - color: '#DE3A3A96' - id: WarnBox - decals: - 5978: 90,29 - 5979: 100,31 - 6522: 89,49 - 6523: 89,49 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 4087: 21,47 - 4088: 21,49 - 4089: 21,51 - - node: - color: '#FFFFFFFF' - id: WarnBoxGreyscale - decals: - 6296: 112,39 - - node: - color: '#DE3A3A96' - id: WarnBoxGreyscale - decals: - 3534: 55,-30 - 4198: 20,54 - - node: - color: '#D381C996' - id: WarnCornerGreyscaleNE - decals: - 3368: 47,-22 - - node: - color: '#52B4E996' - id: WarnCornerGreyscaleNE - decals: - 3888: 12,41 - 3889: 12,41 - 4360: 5,68 - - node: - color: '#DE3A3A96' - id: WarnCornerGreyscaleNE - decals: - 1504: 39,7 - - node: - color: '#DE3A3A96' - id: WarnCornerGreyscaleNW - decals: - 1706: 27,26 - - node: - color: '#A4610696' - id: WarnCornerGreyscaleNW - decals: - 2550: 17,-27 - - node: - color: '#D381C996' - id: WarnCornerGreyscaleNW - decals: - 3365: 45,-22 - 3438: 37,-26 - - node: - color: '#DE3A3A96' - id: WarnCornerGreyscaleSE - decals: - 1505: 39,5 - 3503: 43,-24 - 3536: 56,-27 - - node: - color: '#D381C996' - id: WarnCornerGreyscaleSE - decals: - 3366: 47,-24 - - node: - color: '#A4610696' - id: WarnCornerGreyscaleSW - decals: - 2549: 17,-28 - - node: - color: '#DE3A3A96' - id: WarnCornerGreyscaleSW - decals: - 1503: 19,5 - 2041: 27,28 - - node: - color: '#52B4E996' - id: WarnCornerGreyscaleSW - decals: - 4327: 3,61 - 4351: 7,65 - - node: - color: '#D381C996' - id: WarnCornerGreyscaleSW - decals: - 3367: 45,-24 - - node: - color: '#EFC541FF' - id: WarnCornerNE - decals: - 5026: 69,-15 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 1824: 43,25 - 1878: 47,7 - 3542: 55,-35 - 5224: 122,-23 - 6009: 121,-17 - 8025: 107,-36 - - node: - color: '#EFC541FF' - id: WarnCornerNW - decals: - 5025: 67,-15 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 1823: 41,25 - 1877: 45,7 - 4737: 28,-34 - 5223: 118,-23 - 6008: 120,-17 - 8023: 105,-36 - - node: - color: '#EFC541FF' - id: WarnCornerSE - decals: - 5024: 69,-17 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 1815: 43,19 - 1876: 47,5 - 3637: 61,-41 - 3854: 22,40 - 4792: 29,-21 - 5064: 66,-8 - 5225: 122,-27 - 6007: 121,-18 - 8024: 107,-38 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 2502: 9,-38 - - node: - color: '#EFC541FF' - id: WarnCornerSW - decals: - 5027: 67,-17 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 1817: 41,19 - 1875: 45,5 - 3533: 48,-22 - 3606: 57,-41 - 4104: 27,50 - 4738: 28,-36 - 4791: 27,-21 - 5065: 68,-8 - 5218: 118,-27 - 6006: 120,-18 - 8022: 105,-38 - - node: - color: '#52B4E996' - id: WarnCornerSmallGreyscaleNE - decals: - 4361: 5,67 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleNE - decals: - 4017: 4,40 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleSE - decals: - 4014: 4,40 - - node: - color: '#52B4E996' - id: WarnCornerSmallGreyscaleSW - decals: - 4359: 7,66 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleSW - decals: - 4015: 7,40 - 4016: 3,40 - - node: - color: '#EFC541FF' - id: WarnCornerSmallNE - decals: - 5030: 68,-15 - 5031: 69,-16 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 3234: -32,-25 - 4871: 91,-16 - 5200: 113,-24 - 5233: 118,-27 - 5315: 93,-8 - 5553: 77,-9 - 5779: 93,-11 - 5814: 86,-2 - 6461: 120,46 - 6475: 125,52 - 8711: -39,-25 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 870: -38,31 - 871: -38,39 - 3227: -41,-34 - 3228: -41,-42 - 3233: -30,-25 - 3537: 54,-32 - 4630: 23,-52 - 4870: 95,-16 - 5222: 118,-25 - 5232: 122,-27 - 5314: 98,-8 - 5778: 95,-11 - 6460: 126,46 - 6474: 120,52 - 8548: 99,32 - 8710: -37,-25 - - node: - color: '#EFC541FF' - id: WarnCornerSmallNW - decals: - 5029: 68,-15 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 2512: 6,-36 - - node: - color: '#EFC541FF' - id: WarnCornerSmallSE - decals: - 5032: 69,-16 - 5033: 68,-17 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 2559: 14,-33 - 3232: -32,-7 - 3261: -35,-27 - 3262: -30,-27 - 3263: -18,-27 - 4793: 28,-21 - 5220: 118,-23 - 5313: 93,-4 - 5777: 93,-1 - 5815: 86,3 - 6459: 120,52 - 6476: 125,46 - 8713: -39,-7 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 2514: 9,-33 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 869: -38,35 - 2558: 19,-33 - 3225: -41,-32 - 3226: -41,-39 - 3231: -30,-7 - 3258: -16,-27 - 3259: -28,-27 - 3260: -33,-27 - 4629: 23,-49 - 4794: 28,-21 - 5219: 122,-23 - 5221: 118,-25 - 5312: 98,-4 - 5776: 95,-1 - 6458: 126,52 - 6477: 120,46 - 8712: -37,-7 - - node: - color: '#EFC541FF' - id: WarnCornerSmallSW - decals: - 5034: 68,-17 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 2513: 6,-31 - - node: - color: '#EFB341FF' - id: WarnEndE - decals: - 4872: 110,-17 - - node: - color: '#FFFFFFFF' - id: WarnEndE - decals: - 5676: 61,-8 - - node: - color: '#FFFFFFFF' - id: WarnEndGreyscaleN - decals: - 1812: 42,19 - - node: - color: '#FFFFFFFF' - id: WarnEndGreyscaleS - decals: - 1813: 42,25 - - node: - color: '#FFFFFFFF' - id: WarnEndGreyscaleW - decals: - 1022: -23,67 - 1023: -23,69 - 1024: -23,70 - 3566: 58,-32 - - node: - color: '#FFFFFFFF' - id: WarnEndW - decals: - 5675: 59,-8 - - node: - color: '#EFB341FF' - id: WarnEndW - decals: - 4873: 106,-17 - - node: - color: '#FFFFFFFF' - id: WarnFull - decals: - 4155: 12,49 - 4156: 14,50 - - node: - color: '#9FED5896' - id: WarnFullGreyscale - decals: - 3982: 26,43 - 3983: 26,45 - 3984: 31,43 - 3985: 31,45 - - node: - color: '#334E6DC8' - id: WarnFullGreyscale - decals: - 374: -11,3 - - node: - color: '#DE3A3A96' - id: WarnFullGreyscale - decals: - 588: -37,46 - 592: -37,41 - 3514: 43,-25 - 3515: 42,-20 - 5796: 20,18 - 5797: 19,18 - 5798: 18,18 - - node: - color: '#D381C996' - id: WarnFullGreyscale - decals: - 3434: 47,-25 - 3435: 45,-25 - 3562: 50,-34 - 3563: 48,-37 - 3564: 46,-35 - 3681: 36,-39 - 3682: 40,-39 - 3683: 38,-41 - 3684: 36,-35 - - node: - color: '#9FED5896' - id: WarnLineE - decals: - 402: 5,10 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 1792: 22,25 - 1793: 22,26 - 1814: 43,20 - 1826: 43,24 - 1880: 47,6 - 2136: -30,44 - 2137: -30,45 - 2138: -30,46 - 2139: -17,44 - 2140: -17,45 - 2141: -17,46 - 2142: -7,44 - 2143: -7,45 - 2144: -7,46 - 2154: 1,32 - 2155: 1,33 - 2156: 1,34 - 2260: 14,-16 - 2261: 4,-22 - 2262: 4,-21 - 2453: 10,-29 - 2454: 8,-29 - 2455: 5,-29 - 2929: -42,-59 - 2930: -42,-58 - 2991: -42,-53 - 2992: -42,-52 - 2993: -42,-51 - 2994: -42,-50 - 3206: -25,-28 - 3207: -25,-27 - 3208: -25,-26 - 3209: -25,-25 - 3210: -25,-7 - 3211: -25,-6 - 3212: -25,-5 - 3213: -21,-7 - 3214: -21,-6 - 3215: -21,-5 - 3456: 40,-3 - 3457: 40,-2 - 3458: 40,-1 - 3459: 35,-18 - 3460: 35,-17 - 3461: 35,-16 - 3462: 26,-18 - 3463: 26,-17 - 3464: 26,-16 - 3543: 55,-36 - 3610: 55,-42 - 3611: 55,-41 - 3612: 55,-40 - 3613: 55,-39 - 3614: 55,-38 - 3638: 61,-40 - 3639: 61,-39 - 3640: 61,-38 - 3641: 61,-37 - 3642: 61,-36 - 3694: 51,-44 - 3695: 51,-43 - 3696: 51,-42 - 3844: 19,36 - 3845: 19,37 - 3853: 22,41 - 4047: 8,44 - 4098: 26,49 - 4099: 26,50 - 4114: 16,48 - 4115: 16,49 - 4116: 8,48 - 4117: 8,49 - 4206: 25,54 - 4257: 1,61 - 4258: 1,63 - 4259: -3,61 - 4260: -3,62 - 4261: -3,63 - 4275: -24,54 - 4276: -24,55 - 4277: -15,54 - 4278: -15,55 - 4279: -7,54 - 4280: -7,55 - 4337: 12,61 - 4338: 12,62 - 4339: 12,63 - 4376: 5,69 - 4686: 46,-48 - 4687: 46,-47 - 4688: 46,-46 - 4689: 33,-44 - 4690: 33,-43 - 4691: 33,-42 - 4716: 44,-40 - 4717: 44,-39 - 4718: 44,-38 - 4790: 29,-20 - 4798: 28,-22 - 4799: 28,-23 - 4800: 28,-24 - 4866: 91,-15 - 4936: 94,-2 - 4937: 94,-10 - 4942: 96,-13 - 4943: 96,-12 - 4944: 96,-11 - 5020: 68,-14 - 5021: 68,-18 - 5023: 70,-16 - 5041: 62,-12 - 5042: 62,-11 - 5043: 62,-10 - 5044: 57,-12 - 5045: 57,-11 - 5046: 57,-10 - 5079: 76,-18 - 5080: 76,-22 - 5081: 71,-26 - 5082: 68,-23 - 5083: 82,-21 - 5093: 88,-7 - 5094: 88,-5 - 5095: 84,-6 - 5096: 86,-3 - 5097: 84,0 - 5098: 83,-2 - 5099: 77,-2 - 5100: 75,0 - 5199: 113,-23 - 5212: 118,-26 - 5213: 118,-25 - 5214: 118,-24 - 5215: 122,-26 - 5216: 122,-25 - 5217: 122,-24 - 5305: 93,-7 - 5306: 93,-6 - 5307: 93,-5 - 5810: 86,-1 - 5811: 86,0 - 5812: 86,1 - 5813: 86,2 - 5974: 84,32 - 5975: 91,32 - 5976: 94,35 - 5977: 100,35 - 6021: 90,-32 - 6022: 90,-31 - 6023: 90,-30 - 6030: 57,28 - 6031: 57,32 - 6032: 53,32 - 6033: 53,33 - 6034: 53,34 - 6052: 36,32 - 6053: 36,33 - 6054: 36,34 - 6055: 21,32 - 6056: 21,33 - 6057: 21,34 - 6058: 57,10 - 6059: 57,12 - 6065: 75,13 - 6066: 75,14 - 6067: 75,15 - 6068: 88,13 - 6069: 88,14 - 6070: 88,15 - 6093: 80,38 - 6094: 80,39 - 6095: 80,40 - 6096: 84,38 - 6097: 84,39 - 6098: 84,40 - 6448: 120,47 - 6449: 120,48 - 6450: 120,49 - 6451: 120,50 - 6452: 120,51 - 6464: 125,53 - 6465: 125,45 - 6478: 111,42 - 6479: 111,43 - 6480: 111,44 - 6711: 75,55 - 8008: 111,4 - 8523: 19,38 - 8546: 92,30 - 8547: 92,31 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WarnLineE - decals: - 2503: 9,-37 - 2504: 9,-36 - 2505: 9,-35 - 2506: 9,-34 - 7018: -32,1 - 7019: -32,2 - 7020: -32,3 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - decals: - 3654: 58,-27 - 3655: 57,-32 - 4002: 4,36 - 4003: 4,37 - 4004: 4,38 - 4005: 4,39 - 4013: 4,41 - 5851: 101,-17 - 7792: 104,-17 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleE - decals: - 3988: 19,58 - 3989: 19,54 - 4133: 15,48 - 4134: 15,49 - 4248: 0,61 - 4249: 0,63 - 4331: 19,62 - - node: - color: '#EFE841D6' - id: WarnLineGreyscaleE - decals: - 4059: 15,37 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleE - decals: - 500: -14,-10 - 502: -8,-10 - 1707: 33,18 - 1788: 25,25 - 1789: 25,18 - 1961: 21,10 - 1962: 21,11 - 1963: 21,13 - 1964: 21,14 - 2045: 23,1 - 2046: 23,2 - 2047: 23,3 - 2048: 23,29 - 2049: 23,30 - 5701: 69,-10 - 5795: 21,18 - 6281: 56,28 - 6282: 56,32 - - node: - color: '#D381C996' - id: WarnLineGreyscaleE - decals: - 3441: 53,-24 - 3559: 49,-34 - 3680: 39,-39 - 4704: 45,-35 - 4817: 30,-23 - - node: - color: '#EFB34196' - id: WarnLineGreyscaleN - decals: - 3040: -31,-44 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - decals: - 2436: 10,-30 - 2437: 9,-30 - 2438: 8,-30 - 2439: 7,-30 - 2440: 6,-30 - 2441: 5,-30 - 4009: 7,40 - 4010: 8,40 - 4011: 6,40 - 4012: 5,40 - 8056: 18,-17 - 8057: 17,-17 - 8058: 16,-17 - 8059: 15,-17 - - node: - color: '#D381C996' - id: WarnLineGreyscaleN - decals: - 3357: 42,-14 - 3358: 43,-14 - 3359: 41,-14 - 3436: 47,-26 - 3437: 45,-26 - 3439: 38,-26 - 3440: 52,-23 - 8532: 95,29 - 8533: 96,29 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleN - decals: - 3878: 14,34 - 3879: 13,34 - 3880: 12,34 - 3890: 11,41 - 3891: 11,41 - 3992: 23,45 - 3993: 22,45 - 4057: 24,45 - 4332: 14,63 - 4333: 7,63 - - node: - color: '#334E6DC8' - id: WarnLineGreyscaleN - decals: - 373: -11,2 - 2106: -11,-4 - - node: - color: '#A4610696' - id: WarnLineGreyscaleN - decals: - 2543: 20,-30 - 2544: 19,-30 - 2545: 18,-30 - 2551: 20,-25 - 8530: 93,29 - 8531: 94,29 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleN - decals: - 499: -15,-9 - 591: -37,45 - 1496: 38,7 - 1497: 35,7 - 1498: 30,7 - 1499: 28,7 - 1500: 25,7 - 1501: 23,7 - 1569: 29,14 - 1570: 28,14 - 1708: 30,26 - 1848: 50,11 - 1849: 47,11 - 1850: 45,11 - 1851: 42,11 - 1917: 24,7 - 2581: 12,-10 - 3504: 42,-21 - 3513: 43,-26 - 8534: 97,29 - 8535: 98,29 - - node: - color: '#D4D4D496' - id: WarnLineGreyscaleN - decals: - 8538: 94,32 - 8539: 95,32 - - node: - color: '#9FED5896' - id: WarnLineGreyscaleN - decals: - 4514: 35,46 - 4515: 33,46 - 8536: 92,32 - 8537: 93,32 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleS - decals: - 3875: 14,36 - 3876: 13,36 - 3877: 12,36 - 3933: 11,43 - 3934: 12,43 - 3935: 14,43 - 4340: 9,61 - 8226: 3,47 - 8526: 95,32 - 8527: 96,32 - - node: - color: '#EFE841D6' - id: WarnLineGreyscaleS - decals: - 4058: 24,43 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - decals: - 2442: 10,-28 - 2443: 9,-28 - 2444: 8,-28 - 2445: 7,-28 - 2446: 6,-28 - 2447: 5,-28 - 4006: 6,40 - 4007: 5,40 - 4008: 2,40 - - node: - color: '#334E6DC8' - id: WarnLineGreyscaleS - decals: - 8528: 97,32 - 8529: 98,32 - - node: - color: '#A4610696' - id: WarnLineGreyscaleS - decals: - 2546: 20,-28 - 2547: 19,-28 - 2548: 18,-28 - 2552: 17,-33 - 2553: 16,-33 - - node: - color: '#EFB34196' - id: WarnLineGreyscaleS - decals: - 8524: 93,32 - 8525: 94,32 - - node: - color: '#D381C996' - id: WarnLineGreyscaleS - decals: - 3354: 47,-18 - 3355: 46,-18 - 3356: 45,-18 - 3561: 48,-36 - 3676: 38,-40 - 4706: 43,-36 - - node: - color: '#EFD54196' - id: WarnLineGreyscaleS - decals: - 5699: 68,-13 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleS - decals: - 589: -37,47 - 590: -37,42 - 1490: 23,5 - 1491: 25,5 - 1492: 28,5 - 1493: 31,5 - 1494: 34,5 - 1495: 37,5 - 1568: 30,9 - 1704: 29,16 - 1705: 28,16 - 1844: 43,9 - 1845: 42,9 - 1846: 46,9 - 1847: 50,9 - 2580: 12,-13 - 3360: 42,-18 - 3535: 55,-27 - 5055: 72,-11 - - node: - color: '#EFD54196' - id: WarnLineGreyscaleW - decals: - 5696: 63,-12 - 5697: 63,-11 - 5698: 63,-10 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleW - decals: - 501: -12,-10 - 1502: 19,6 - 1661: 23,10 - 1662: 23,11 - 1663: 23,13 - 1664: 23,14 - 1702: 27,25 - 1703: 27,18 - 1784: 23,18 - 1785: 23,22 - 1786: 23,25 - 1787: 23,26 - 2042: 25,1 - 2043: 25,2 - 2044: 25,3 - 2050: 25,29 - 2051: 25,30 - 4197: 21,54 - 4204: 26,54 - 5056: 71,-10 - 6283: 58,32 - 6284: 58,28 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - decals: - 3994: 3,36 - 3995: 3,37 - 3996: 3,38 - 3997: 3,39 - 3998: 7,36 - 3999: 7,37 - 4000: 7,38 - 4001: 7,39 - 7791: 103,-17 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleW - decals: - 3986: 17,54 - 3987: 17,58 - 3990: 17,48 - 3991: 17,49 - 4050: 9,44 - 4135: 9,48 - 4136: 9,49 - 4221: 6,54 - 4222: 6,55 - 4245: -2,61 - 4246: -2,62 - 4247: -2,63 - 4328: 2,61 - 4329: 2,63 - - node: - color: '#D381C996' - id: WarnLineGreyscaleW - decals: - 3560: 47,-35 - 3565: 51,-34 - 3677: 37,-39 - 3678: 37,-35 - 3679: 37,-31 - 4816: 27,-26 - - node: - color: '#9FED5896' - id: WarnLineGreyscaleW - decals: - 4512: 32,43 - 4513: 32,45 - - node: - color: '#EFB34196' - id: WarnLineGreyscaleW - decals: - 3041: -37,-41 - - node: - color: '#EFB341FF' - id: WarnLineN - decals: - 4877: 108,-17 - 4878: 109,-17 - 4879: 107,-17 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 1542: 31,1 - 1543: 30,1 - 1544: 28,1 - 1545: 27,1 - 1546: 33,1 - 1547: 34,1 - 1548: 36,1 - 1549: 37,1 - 1550: 38,1 - 1551: 39,1 - 1579: 25,8 - 1580: 24,8 - 1581: 23,8 - 1582: 25,20 - 1583: 24,20 - 1584: 23,20 - 1816: 42,19 - 1881: 46,5 - 2151: 0,40 - 2152: -1,40 - 2153: -2,40 - 2163: 0,25 - 2164: -1,25 - 2165: -2,25 - 2166: 0,7 - 2167: -1,7 - 2168: -2,7 - 2169: 0,7 - 2237: 4,-9 - 2238: 5,-9 - 2239: 7,-9 - 2240: 8,-9 - 2241: 8,-15 - 2242: 8,-20 - 2243: 6,-20 - 2244: 11,-19 - 2245: 12,-19 - 2246: 13,-19 - 2464: 3,-36 - 2465: 2,-36 - 2554: 18,-33 - 2555: 17,-33 - 2556: 16,-33 - 2557: 15,-33 - 2560: 20,-29 - 2561: 19,-29 - 2562: 18,-29 - 2783: 23,-8 - 2784: 24,-8 - 2785: 25,-8 - 2786: 23,-4 - 2787: 24,-4 - 2788: 25,-4 - 2789: 16,-4 - 2790: 17,-4 - 2936: -39,-49 - 2937: -40,-49 - 2938: -41,-49 - 3190: -22,-16 - 3191: -23,-16 - 3192: -24,-16 - 3199: -39,-28 - 3200: -40,-28 - 3201: -41,-28 - 3230: -31,-7 - 3252: -22,-28 - 3253: -23,-28 - 3254: -24,-28 - 3255: -34,-27 - 3256: -29,-27 - 3257: -17,-27 - 3287: -41,-10 - 3288: -42,-10 - 3289: -43,-10 - 3290: -44,-10 - 3291: -45,-10 - 3292: -46,-10 - 3409: 49,-29 - 3410: 47,-29 - 3411: 48,-29 - 3412: 37,-29 - 3413: 38,-29 - 3414: 39,-29 - 3465: 43,-13 - 3466: 42,-13 - 3467: 41,-13 - 3635: 59,-41 - 3636: 60,-41 - 3707: 52,-16 - 3708: 53,-16 - 3709: 54,-16 - 3855: 21,40 - 3856: 20,40 - 3882: 14,35 - 3883: 13,35 - 3884: 12,35 - 4021: 19,46 - 4022: 18,46 - 4023: 17,46 - 4030: 19,56 - 4031: 18,56 - 4032: 17,56 - 4090: 24,46 - 4091: 23,46 - 4092: 22,46 - 4101: 30,50 - 4102: 29,50 - 4103: 28,50 - 4281: -9,53 - 4282: -10,53 - 4283: -12,57 - 4284: -14,57 - 4292: -4,49 - 4293: -5,49 - 4294: -6,49 - 4719: 43,-37 - 4727: 33,-36 - 4728: 32,-36 - 4729: 31,-36 - 4730: 30,-36 - 4731: 29,-36 - 4929: 95,4 - 4930: 94,4 - 4931: 93,4 - 5062: 64,-8 - 5063: 65,-8 - 5066: 63,-8 - 5067: 70,-28 - 5068: 69,-28 - 5069: 68,-28 - 5070: 67,-28 - 5139: 56,1 - 5140: 55,1 - 5141: 54,1 - 5170: 56,9 - 5171: 55,9 - 5172: 54,9 - 5192: 116,-26 - 5193: 115,-26 - 5194: 114,-26 - 5195: 113,-26 - 5201: 121,-27 - 5202: 120,-27 - 5203: 119,-27 - 5204: 119,-23 - 5205: 120,-23 - 5206: 121,-23 - 5308: 97,-4 - 5309: 96,-4 - 5310: 95,-4 - 5311: 94,-4 - 5775: 94,-1 - 6024: 56,25 - 6025: 55,25 - 6026: 54,25 - 6040: 56,35 - 6041: 55,35 - 6042: 54,35 - 6074: 92,17 - 6075: 91,17 - 6076: 81,17 - 6077: 82,17 - 6078: 83,17 - 6087: 83,26 - 6088: 82,26 - 6089: 81,26 - 6443: 125,52 - 6444: 124,52 - 6445: 123,52 - 6446: 122,52 - 6447: 121,52 - 6466: 127,46 - 6467: 126,46 - 6468: 119,46 - 6469: 118,46 - 6524: 91,46 - 6525: 90,46 - 6526: 89,46 - 6527: 88,46 - 6528: 87,46 - 6539: 89,41 - 6702: 73,41 - 6703: 72,41 - 6704: 72,44 - 6705: 73,44 - 7311: 51,44 - 7312: 52,44 - 7313: 49,44 - 7314: 48,44 - 7315: 47,44 - 8018: 109,-38 - 8019: 110,-38 - 8026: 106,-38 - 8706: -38,-7 - 8707: -40,-10 - - node: - color: '#9FED5896' - id: WarnLineN - decals: - 199: -9,39 - 200: -12,39 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WarnLineN - decals: - 2498: 5,-38 - 2499: 6,-38 - 2500: 7,-38 - 2501: 8,-38 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 866: -38,32 - 867: -38,33 - 868: -38,34 - 872: -38,40 - 971: -29,72 - 972: -29,73 - 973: -29,74 - 1790: 22,25 - 1791: 22,26 - 1818: 41,20 - 1819: 41,21 - 1820: 41,22 - 1821: 41,23 - 1822: 41,24 - 1879: 45,6 - 1940: 47,1 - 1941: 47,2 - 1942: 47,3 - 2130: -17,44 - 2131: -17,45 - 2132: -17,46 - 2133: -30,44 - 2134: -30,45 - 2135: -30,46 - 2145: -7,44 - 2146: -7,45 - 2147: -7,46 - 2157: 1,32 - 2158: 1,33 - 2159: 1,34 - 2257: 4,-22 - 2258: 4,-21 - 2259: 14,-16 - 2450: 5,-29 - 2451: 7,-29 - 2452: 10,-29 - 2931: -42,-59 - 2932: -42,-58 - 3202: -25,-28 - 3203: -25,-27 - 3204: -25,-26 - 3205: -25,-25 - 3216: -21,-7 - 3217: -21,-6 - 3218: -21,-5 - 3219: -25,-7 - 3220: -25,-6 - 3221: -25,-5 - 3222: -41,-41 - 3223: -41,-40 - 3224: -41,-33 - 3447: 35,-18 - 3448: 35,-17 - 3449: 35,-16 - 3450: 26,-18 - 3451: 26,-17 - 3452: 26,-16 - 3453: 40,-3 - 3454: 40,-2 - 3455: 40,-1 - 3607: 57,-40 - 3608: 57,-39 - 3609: 57,-38 - 3653: 54,-31 - 4046: 8,44 - 4096: 26,49 - 4097: 26,50 - 4105: 27,51 - 4110: 16,48 - 4111: 16,49 - 4112: 8,48 - 4113: 8,49 - 4205: 25,54 - 4252: 1,61 - 4253: 1,63 - 4254: -3,61 - 4255: -3,62 - 4256: -3,63 - 4269: -7,54 - 4270: -7,55 - 4271: -15,54 - 4272: -15,55 - 4273: -24,54 - 4274: -24,55 - 4334: 12,61 - 4335: 12,62 - 4336: 12,63 - 4375: 5,69 - 4627: 23,-51 - 4628: 23,-50 - 4680: 33,-44 - 4681: 33,-43 - 4682: 33,-42 - 4683: 46,-48 - 4684: 46,-47 - 4685: 46,-46 - 4739: 28,-35 - 4789: 27,-20 - 4795: 28,-22 - 4796: 28,-23 - 4797: 28,-24 - 4865: 95,-15 - 4935: 94,-2 - 4938: 94,-10 - 4939: 96,-13 - 4940: 96,-12 - 4941: 96,-11 - 5018: 68,-18 - 5019: 68,-14 - 5022: 70,-16 - 5035: 62,-12 - 5036: 62,-11 - 5037: 62,-10 - 5038: 57,-12 - 5039: 57,-11 - 5040: 57,-10 - 5075: 68,-23 - 5076: 71,-26 - 5077: 76,-22 - 5078: 76,-18 - 5084: 82,-21 - 5085: 84,-6 - 5086: 77,-2 - 5087: 75,0 - 5088: 83,-2 - 5089: 84,0 - 5090: 86,-3 - 5091: 88,-5 - 5092: 88,-7 - 5207: 122,-26 - 5208: 122,-25 - 5209: 122,-24 - 5210: 118,-26 - 5211: 118,-24 - 5298: 98,-7 - 5299: 98,-6 - 5300: 98,-5 - 5970: 100,35 - 5971: 94,35 - 5972: 91,32 - 5973: 84,32 - 6018: 90,-32 - 6019: 90,-31 - 6020: 90,-30 - 6035: 57,28 - 6036: 57,32 - 6037: 53,32 - 6038: 53,33 - 6039: 53,34 - 6046: 21,32 - 6047: 21,33 - 6048: 21,34 - 6049: 36,32 - 6050: 36,33 - 6051: 36,34 - 6060: 57,10 - 6061: 57,12 - 6062: 75,13 - 6063: 75,14 - 6064: 75,15 - 6071: 88,13 - 6072: 88,14 - 6073: 88,15 - 6090: 80,38 - 6091: 80,39 - 6092: 80,40 - 6099: 84,38 - 6100: 84,39 - 6101: 84,40 - 6438: 126,47 - 6439: 126,49 - 6440: 126,48 - 6441: 126,50 - 6442: 126,51 - 6462: 120,45 - 6463: 120,53 - 6710: 75,55 - 8028: 105,-37 - 8543: 99,30 - 8544: 99,31 - 8545: 99,33 - - node: - color: '#9FED5896' - id: WarnLineS - decals: - 404: 2,12 - - node: - color: '#EFC541FF' - id: WarnLineS - decals: - 5028: 67,-16 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WarnLineS - decals: - 2508: 6,-35 - 2509: 6,-34 - 2510: 6,-33 - 2511: 6,-32 - 7015: -29,1 - 7016: -29,2 - 7017: -29,3 - - node: - color: '#EFB341FF' - id: WarnLineW - decals: - 4874: 107,-17 - 4875: 108,-17 - 4876: 109,-17 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 1576: 25,8 - 1577: 24,8 - 1578: 23,8 - 1585: 23,20 - 1586: 24,20 - 1587: 25,20 - 1598: 39,12 - 1599: 38,12 - 1674: 14,11 - 1825: 42,25 - 1882: 46,7 - 2148: -2,40 - 2149: -1,40 - 2150: 0,40 - 2160: 0,25 - 2161: -1,25 - 2162: -2,25 - 2170: 0,7 - 2171: -1,7 - 2172: -2,7 - 2247: 13,-19 - 2248: 12,-19 - 2249: 11,-19 - 2250: 8,-20 - 2251: 6,-20 - 2252: 8,-15 - 2253: 8,-9 - 2254: 7,-9 - 2255: 5,-9 - 2256: 4,-9 - 2462: 3,-38 - 2463: 2,-38 - 2563: 18,-29 - 2564: 19,-29 - 2565: 20,-29 - 2791: 25,-8 - 2792: 24,-8 - 2793: 23,-8 - 2794: 23,-4 - 2795: 24,-4 - 2796: 25,-4 - 2797: 17,-4 - 2798: 16,-4 - 2933: -39,-49 - 2934: -40,-49 - 2935: -41,-49 - 3193: -22,-16 - 3194: -23,-16 - 3195: -24,-16 - 3196: -39,-28 - 3197: -40,-28 - 3198: -41,-28 - 3229: -31,-25 - 3293: -41,-22 - 3294: -42,-22 - 3295: -43,-22 - 3296: -44,-22 - 3297: -46,-22 - 3298: -45,-22 - 3299: 44,-30 - 3300: 43,-30 - 3301: 42,-30 - 3415: 37,-29 - 3416: 38,-29 - 3417: 39,-29 - 3418: 47,-29 - 3419: 48,-29 - 3420: 49,-29 - 3468: 43,-13 - 3469: 42,-13 - 3470: 41,-13 - 3538: 51,-35 - 3539: 52,-35 - 3540: 53,-35 - 3541: 54,-35 - 3710: 54,-19 - 3711: 53,-19 - 3712: 52,-19 - 3885: 14,35 - 3886: 13,35 - 3887: 12,35 - 4024: 19,46 - 4025: 18,46 - 4026: 17,46 - 4027: 17,56 - 4028: 18,56 - 4029: 19,56 - 4093: 24,46 - 4094: 23,46 - 4095: 22,46 - 4285: -10,53 - 4286: -9,53 - 4287: -12,57 - 4288: -14,57 - 4289: -6,49 - 4290: -5,49 - 4291: -4,49 - 4732: 33,-34 - 4733: 32,-34 - 4734: 31,-34 - 4735: 30,-34 - 4736: 29,-34 - 4867: 94,-16 - 4868: 93,-16 - 4869: 92,-16 - 4932: 95,4 - 4933: 94,4 - 4934: 93,4 - 5071: 70,-28 - 5072: 69,-28 - 5073: 68,-28 - 5074: 67,-28 - 5142: 56,1 - 5143: 55,1 - 5144: 54,1 - 5173: 56,9 - 5174: 55,9 - 5175: 54,9 - 5196: 116,-24 - 5197: 115,-24 - 5198: 114,-24 - 5226: 121,-27 - 5227: 120,-27 - 5228: 119,-27 - 5229: 119,-23 - 5230: 120,-23 - 5231: 121,-23 - 5301: 97,-8 - 5302: 96,-8 - 5303: 95,-8 - 5304: 94,-8 - 5551: 79,-9 - 5552: 78,-9 - 5774: 94,-11 - 5809: 87,-2 - 6027: 56,25 - 6028: 55,25 - 6029: 54,25 - 6043: 56,35 - 6044: 55,35 - 6045: 54,35 - 6079: 92,17 - 6080: 91,17 - 6081: 83,17 - 6082: 82,17 - 6083: 81,17 - 6084: 82,26 - 6085: 83,26 - 6086: 81,26 - 6453: 125,46 - 6454: 124,46 - 6455: 123,46 - 6456: 122,46 - 6457: 121,46 - 6470: 126,52 - 6471: 127,52 - 6472: 118,52 - 6473: 119,52 - 6529: 91,51 - 6530: 90,51 - 6531: 89,51 - 6532: 88,51 - 6533: 87,51 - 6540: 89,42 - 6706: 73,44 - 6707: 72,44 - 6708: 73,41 - 6709: 72,41 - 7306: 47,42 - 7307: 48,42 - 7308: 49,42 - 7309: 51,42 - 7310: 52,42 - 8020: 109,-36 - 8021: 110,-36 - 8027: 106,-36 - 8540: 96,32 - 8541: 97,32 - 8542: 98,32 - 8708: -40,-22 - 8709: -38,-25 - - node: - color: '#9FED5896' - id: WarnLineW - decals: - 201: -12,35 - 202: -12,40 - 203: -9,40 - 204: -9,35 - 403: 3,13 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WarnLineW - decals: - 1140: -4,75 - 1141: -5,75 - 1142: -6,75 - 2507: 5,-36 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - decals: - 416: 0,1 - 5771: 49,-6 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - decals: - 415: -2,1 - 2023: 39,24 - 5770: 48,-6 - 7146: 27,-7 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - decals: - 413: 0,-2 - 571: -27,47 - 970: -23,62 - 5772: 49,-7 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - decals: - 414: -2,-2 - 968: -25,62 - 5773: 48,-7 - 6499: 79,46 - 7147: 27,-9 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 158: -21,14 - 159: -20,9 - 561: -25,38 - 980: -29,52 - 6175: 78,12 - 6512: 80,46 - 6761: 59,54 - 6781: 58,44 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 157: -11,14 - 160: -17,9 - 169: -13,28 - 979: -25,52 - 6174: 86,12 - 6760: 65,54 - 6782: 64,44 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 161: -20,13 - 162: -21,22 - 6176: 78,16 - 6734: 60,54 - 6763: 60,60 - 6764: 59,60 - 6783: 58,48 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - decals: - 163: -17,13 - 164: -11,22 - 171: -13,30 - 981: -25,58 - 6173: 86,16 - 6501: 80,46 - 6762: 65,60 - 6784: 64,48 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 147: -20,10 - 148: -20,11 - 149: -20,12 - 150: -21,15 - 151: -21,16 - 152: -21,17 - 153: -21,18 - 154: -21,19 - 155: -21,20 - 156: -21,21 - 346: -18,30 - 347: -18,29 - 348: -18,28 - 417: 0,-1 - 418: 0,0 - 465: 2,-2 - 466: 2,-1 - 467: 2,0 - 562: -25,39 - 563: -25,40 - 564: -25,41 - 565: -25,42 - 568: -27,48 - 569: -27,49 - 570: -27,50 - 988: -29,53 - 989: -29,54 - 990: -29,55 - 991: -29,56 - 992: -29,57 - 6177: 78,13 - 6178: 78,14 - 6179: 78,15 - 6196: 87,13 - 6197: 87,14 - 6198: 87,15 - 6507: 81,50 - 6511: 80,47 - 6513: 83,46 - 6514: 83,45 - 6515: 83,44 - 6516: 83,43 - 6517: 83,42 - 6733: 60,53 - 6755: 59,55 - 6756: 59,56 - 6757: 59,57 - 6758: 59,58 - 6759: 59,59 - 6768: 58,45 - 6769: 58,47 - 6770: 58,46 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 115: -19,9 - 116: -18,9 - 117: -20,14 - 118: -19,14 - 119: -18,14 - 120: -17,14 - 121: -16,14 - 122: -14,14 - 123: -15,14 - 124: -13,14 - 125: -12,14 - 165: -17,28 - 166: -16,28 - 167: -15,28 - 168: -14,28 - 421: -1,1 - 558: -22,38 - 559: -23,38 - 560: -24,38 - 985: -26,52 - 986: -27,52 - 987: -28,52 - 5664: 47,-5 - 5665: 48,-5 - 5666: 49,-5 - 5667: 50,-5 - 6180: 79,12 - 6181: 80,12 - 6182: 81,12 - 6183: 82,12 - 6184: 83,12 - 6185: 85,12 - 6186: 84,12 - 6187: 81,25 - 6188: 82,25 - 6189: 83,25 - 6508: 83,46 - 6509: 82,46 - 6510: 81,46 - 6745: 64,54 - 6746: 63,54 - 6747: 62,54 - 6748: 61,54 - 6749: 60,54 - 6776: 63,44 - 6777: 62,44 - 6778: 61,44 - 6779: 60,44 - 6780: 59,44 - 7150: 29,-7 - 7151: 28,-7 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 136: -12,22 - 137: -13,22 - 138: -14,22 - 139: -15,22 - 140: -16,22 - 141: -17,22 - 142: -18,22 - 143: -19,22 - 144: -20,22 - 145: -18,13 - 146: -19,13 - 172: -14,30 - 173: -15,30 - 174: -16,30 - 175: -17,30 - 412: -1,-2 - 460: 0,-3 - 461: -1,-3 - 462: -2,-3 - 463: -3,-3 - 464: 1,-3 - 567: -28,47 - 969: -24,62 - 982: -26,58 - 983: -27,58 - 984: -28,58 - 2018: 35,18 - 2019: 36,18 - 2020: 37,18 - 2021: 38,18 - 2022: 39,18 - 2024: 39,26 - 2025: 38,26 - 2026: 37,26 - 4441: 27,64 - 4442: 26,64 - 4443: 25,64 - 5660: 47,-8 - 5661: 48,-8 - 5662: 49,-8 - 5663: 50,-8 - 6166: 85,16 - 6167: 84,16 - 6168: 82,16 - 6169: 83,16 - 6170: 81,16 - 6171: 80,16 - 6172: 79,16 - 6190: 83,18 - 6191: 82,18 - 6192: 81,18 - 6290: 79,34 - 6291: 78,34 - 6292: 77,34 - 6293: 76,34 - 6294: 75,34 - 6295: 74,34 - 6518: 82,42 - 6519: 81,42 - 6520: 80,42 - 6521: 83,42 - 6735: 61,54 - 6736: 62,54 - 6737: 63,54 - 6738: 64,54 - 6739: 65,54 - 6740: 64,60 - 6741: 63,60 - 6742: 62,60 - 6743: 61,60 - 6744: 60,60 - 6771: 59,48 - 6772: 60,48 - 6773: 61,48 - 6774: 62,48 - 6775: 63,48 - 7148: 28,-9 - 7149: 29,-9 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 126: -17,10 - 127: -17,11 - 128: -17,12 - 129: -11,15 - 130: -11,16 - 131: -11,17 - 132: -11,18 - 133: -11,19 - 134: -11,20 - 135: -11,21 - 170: -13,29 - 419: -2,-1 - 420: -2,0 - 468: -4,-2 - 469: -4,-1 - 470: -4,0 - 974: -25,53 - 975: -25,54 - 976: -25,55 - 977: -25,56 - 978: -25,57 - 6163: 86,13 - 6164: 86,14 - 6165: 86,15 - 6193: 76,13 - 6194: 76,14 - 6195: 76,15 - 6495: 80,42 - 6496: 80,43 - 6497: 80,44 - 6498: 80,45 - 6500: 79,47 - 6504: 79,49 - 6505: 79,50 - 6506: 79,51 - 6750: 65,55 - 6751: 65,56 - 6752: 65,57 - 6753: 65,58 - 6754: 65,59 - 6765: 64,45 - 6766: 64,46 - 6767: 64,47 - 7152: 27,-8 - - node: - cleanable: True - color: '#FFFFFFFF' - id: arrow - decals: - 8229: 118.01247,-7.299263 - - node: - color: '#FFFFFFFF' - id: food - decals: - 8130: 50.950474,63.02254 - - node: - color: '#79150015' - id: splatter - decals: - 837: -39.761135,76.2637 - 838: -40.073635,76.54495 - 839: -40.261135,77.09183 - 840: -40.104885,77.49808 - 841: -39.636135,77.52933 - 842: -39.21426,77.23245 - 843: -39.08926,76.79495 - 844: -39.292385,76.37308 - 845: -39.667385,76.10745 - 846: -41.104885,78.60745 - 847: -41.011135,78.10745 - 848: -40.49551,77.81058 - 849: -40.292385,77.73245 - 850: -39.96426,77.16995 - 851: -39.33926,76.48245 - 852: -39.18301,76.18558 - 853: -38.52676,77.49808 - 854: -38.479885,78.15433 - 855: -38.198635,78.7012 - 856: -37.886135,79.02933 - 857: -39.417385,76.18558 - 858: -39.40176,75.85745 - 859: -39.21426,75.60745 - 860: -41.573635,76.12308 - - node: - color: '#79150025' - id: splatter - decals: - 800: -39.87051,77.10745 - 801: -39.823635,77.10745 - 802: -39.65176,77.10745 - 803: -39.448635,76.96683 - 804: -39.448635,76.74808 - 805: -39.542385,76.56058 - 806: -39.80801,76.65433 - 807: -39.83926,76.7637 - 808: -39.80801,76.87308 - 809: -39.636135,76.87308 - 810: -40.073635,77.56058 - 811: -40.292385,77.93558 - 812: -40.58926,78.31058 - 813: -40.698635,78.43558 - 814: -40.761135,78.59183 - 815: -40.667385,78.7012 - 816: -40.573635,78.74808 - 817: -40.77676,78.99808 - 818: -40.417385,78.87308 - 819: -40.323635,79.06058 - 820: -40.386135,79.24808 - 821: -40.65176,78.8262 - 822: -40.46426,78.66995 - 823: -40.667385,78.62308 - 824: -37.80801,77.91995 - 825: -37.698635,77.84183 - 826: -37.854885,77.85745 - 827: -38.05801,77.85745 - 828: -38.05801,77.66995 - 829: -37.99551,77.59183 - 830: -37.729885,77.6387 - 831: -37.823635,78.06058 - 832: -37.667385,78.37308 - 833: -37.46426,78.3887 - 834: -37.386135,78.09183 - 835: -37.636135,77.81058 - 836: -38.104885,77.73245 - - node: - cleanable: True - color: '#DE3A3A0C' - id: splatter - decals: - 8186: 45.088184,53.376217 - 8187: 47.306934,55.42309 - 8188: 47.306934,55.42309 - 8189: 47.494434,55.001217 - - node: - cleanable: True - color: '#79150009' - id: splatter - decals: - 8190: 47.07256,55.29809 - 8191: 46.994434,55.626217 - 8192: 47.056934,55.251217 - 8193: 47.213184,55.01684 - 8194: 47.38506,54.907467 - 8195: 47.54131,54.844967 - 8196: 47.650684,53.188717 - 8197: 47.38506,53.251217 - 8198: 47.150684,53.54809 - 8199: 47.32256,53.76684 - 8200: 47.38506,53.782467 - 8201: 47.400684,53.782467 - 8202: 47.119434,53.64184 - 8203: 47.19756,53.407467 - 8204: 47.26006,53.344967 - 8205: 46.463184,53.719967 - 8206: 46.01006,54.094967 - 8207: 46.19756,53.688717 - 8208: 46.463184,53.61059 - 8209: 47.056934,52.844967 - 8210: 47.400684,52.501217 - 8211: 48.35381,52.438717 - 8212: 48.47881,52.23559 - 8213: 47.713184,52.07934 - 8214: 46.69756,52.313717 - 8215: 45.9139,54.080795 - - node: - cleanable: True - color: '#79150012' - id: splatter - decals: - 8133: 44.91631,53.157467 - 8134: 44.91631,53.157467 - 8135: 44.66631,53.70434 - 8136: 44.66631,53.70434 - 8137: 44.369434,53.501217 - 8138: 44.79131,53.157467 - 8139: 44.994434,53.157467 - 8140: 45.01006,53.26684 - 8141: 44.76006,52.657467 - 8142: 45.213184,53.594967 - 8143: 45.244434,53.57934 - 8144: 45.19756,53.39184 - 8145: 45.213184,53.17309 - 8146: 45.213184,53.07934 - 8147: 45.19756,52.907467 - 8148: 45.19756,52.844967 - 8149: 47.10381,55.79809 - 8150: 47.32256,55.51684 - 8151: 47.588184,55.313717 - 8152: 47.69756,55.251217 - 8153: 47.69756,55.14184 - 8154: 47.47881,54.969967 - 8155: 47.19756,55.126217 - 8156: 47.181934,55.219967 - 8157: 47.47881,55.407467 - 8158: 47.150684,55.563717 - 8159: 47.181934,55.39184 - 8160: 47.494434,53.813717 - 8161: 47.463184,54.01684 - 8162: 44.63506,55.48559 - 8163: 44.85381,54.79809 - 8164: 45.32256,53.719967 - 8165: 47.44756,52.813717 - 8166: 46.54131,53.251217 - 8167: 46.244434,53.188717 - 8168: 46.588184,55.70434 - 8169: 43.44756,53.657467 - 8170: 42.85381,53.782467 - 8171: 42.713184,53.95434 - 8172: 42.556934,54.251217 - 8173: 42.775684,53.67309 - 8174: 42.963184,53.407467 - 8175: 43.338184,52.73559 - 8176: 43.51006,52.54809 - 8177: 43.838184,52.32934 - 8178: 44.150684,52.282467 - 8179: 46.994434,55.79809 - 8180: 46.29131,55.344967 - 8181: 45.838184,55.04809 - 8182: 45.29131,54.29809 - 8183: 45.10381,53.61059 - 8184: 44.463184,51.907467 - 8185: 44.51006,51.876217 - type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 65535 - 0,0: - 0: 65535 - -1,0: - 0: 65535 - 0,-1: - 0: 65535 - -4,-1: - 0: 65535 - -4,-2: - 0: 65535 - -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-2: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - -4,0: - 0: 64511 - 1: 1024 - -4,1: - 0: 65535 - -4,2: - 0: 65535 - -4,3: - 0: 65535 - -3,0: - 0: 65279 - 1: 256 - -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,-2: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-2: - 0: 65535 - -4,4: - 0: 65535 - -4,5: - 0: 65535 - -4,6: - 0: 65535 - -4,7: - 0: 63483 - 1: 2052 - -3,4: - 0: 65535 - -3,5: - 0: 65535 - -3,6: - 0: 65533 - 1: 2 - -3,7: - 0: 65535 - -2,4: - 0: 65535 - -2,5: - 0: 49151 - 2: 16384 - -2,6: - 0: 65535 - -2,7: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 65535 - -1,6: - 0: 61183 - 1: 4352 - -1,7: - 1: 1 - 0: 65534 - 0,4: - 0: 65535 - 0,5: - 0: 65535 - 0,6: - 0: 65535 - 0,7: - 0: 65535 - -6,4: - 0: 65535 - -6,5: - 0: 65535 - -6,6: - 0: 65535 - -6,7: - 0: 65407 - 1: 128 - -5,4: - 0: 65535 - -5,5: - 0: 65535 - -5,6: - 0: 65535 - -5,7: - 0: 65535 - -6,3: - 0: 65535 - -6,0: - 0: 65375 - 1: 160 - -6,1: - 0: 65535 - -6,2: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 40959 - 1: 24576 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -6,-1: - 0: 49151 - 1: 16384 - -5,-1: - 0: 65535 - -6,8: - 0: 57343 - 1: 8192 - -6,9: - 0: 65535 - -5,8: - 0: 30719 - 1: 34816 - -5,9: - 0: 24575 - 1: 40960 - -4,8: - 0: 65535 - -4,9: - 0: 65503 - 1: 32 - -3,8: - 0: 65535 - -3,9: - 0: 65535 - -2,8: - 0: 65535 - -2,9: - 0: 65535 - -1,8: - 0: 65535 - -1,9: - 0: 65535 - 0,8: - 0: 65535 - 0,9: - 0: 30591 - 1: 34944 - 1,2: - 0: 65535 - 1,3: - 0: 65439 - 1: 96 - 2,2: - 0: 32767 - 1: 32768 - 2,3: - 0: 65535 - 1,4: - 0: 49139 - 1: 16396 - 1,5: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - 2,4: - 0: 65279 - 1: 256 - -7,4: - 0: 65535 - -7,5: - 0: 65535 - -7,6: - 0: 32767 - 1: 32768 - -7,7: - 0: 65535 - -7,2: - 0: 65535 - -7,3: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,-1: - 0: 65535 - -7,8: - 0: 24063 - 1: 41472 - -7,9: - 0: 65471 - 1: 64 - -7,10: - 0: 65535 - -6,10: - 0: 65535 - -6,11: - 0: 65535 - -5,10: - 0: 40821 - 1: 24714 - -5,11: - 0: 65535 - -4,10: - 0: 65535 - -4,11: - 0: 65535 - -3,10: - 0: 65535 - -3,11: - 0: 65535 - -2,10: - 0: 64511 - 2: 1024 - -2,11: - 0: 65535 - -1,10: - 0: 65535 - -1,11: - 0: 65535 - 0,10: - 0: 65535 - 0,11: - 0: 65535 - 1,8: - 0: 65535 - 1,9: - 1: 2457 - 0: 63078 - -6,12: - 0: 65535 - -5,12: - 0: 65535 - -4,12: - 0: 65535 - -3,12: - 0: 65535 - -2,12: - 0: 65535 - -1,12: - 0: 65535 - -4,-4: - 0: 65535 - -4,-3: - 0: 49151 - 1: 16384 - -3,-4: - 0: 65471 - 1: 64 - -3,-3: - 0: 65535 - -2,-4: - 0: 65535 - -2,-3: - 0: 61439 - 1: 4096 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 3,0: - 0: 65535 - 3,1: - 0: 65503 - 1: 32 - 3,2: - 0: 65407 - 1: 128 - 3,3: - 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 1,-4: - 0: 65535 - 1,-3: - 0: 65535 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 65535 - 3,-3: - 0: 65503 - 1: 32 - 3,-2: - 0: 65535 - 3,-1: - 0: 65503 - 1: 32 - 2,5: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 64511 - 1: 1024 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 65535 - -8,4: - 0: 65535 - -8,5: - 0: 65535 - -8,6: - 0: 32767 - 1: 32768 - -8,7: - 0: 65535 - -8,0: - 0: 65535 - -8,1: - 0: 65535 - -8,2: - 0: 65535 - -8,3: - 0: 65535 - -8,-4: - 0: 65535 - -8,-3: - 0: 65407 - 3: 128 - -8,-2: - 0: 65535 - -8,-1: - 0: 65535 - -7,-4: - 0: 48059 - 3: 17476 - -7,-3: - 0: 65419 - 3: 116 - -7,-2: - 0: 65535 - -6,-4: - 0: 65535 - -6,-3: - 0: 65535 - -6,-2: - 0: 65535 - -5,-4: - 0: 65535 - -5,-3: - 0: 61183 - 1: 4352 - -5,-2: - 0: 65535 - -8,8: - 0: 65535 - -8,9: - 0: 65535 - -8,10: - 0: 65535 - -8,11: - 0: 65535 - -7,11: - 0: 65535 - 1,10: - 0: 65521 - 1: 14 - 1,11: - 0: 65535 - 2,8: - 0: 65535 - 2,9: - 0: 65535 - 2,10: - 1: 1 - 0: 65534 - 2,11: - 0: 65535 - 3,8: - 0: 65535 - 3,9: - 0: 65535 - 3,10: - 0: 65535 - 3,11: - 0: 65535 - -8,12: - 0: 57343 - 1: 8192 - -8,13: - 0: 65535 - -8,14: - 0: 65535 - -8,15: - 0: 64511 - 1: 1024 - -7,12: - 0: 65535 - -7,13: - 0: 65535 - -7,14: - 0: 65535 - -7,15: - 0: 65535 - -6,13: - 0: 65535 - -6,14: - 0: 65535 - -6,15: - 0: 65535 - -5,13: - 0: 65535 - -5,14: - 0: 65535 - -5,15: - 0: 65535 - -4,13: - 0: 65535 - -4,14: - 0: 65535 - -4,15: - 0: 65535 - -3,13: - 0: 65535 - -3,14: - 0: 65535 - -3,15: - 0: 65535 - -2,13: - 0: 65535 - -2,14: - 0: 65535 - -2,15: - 0: 65535 - -1,13: - 0: 65535 - -1,14: - 0: 65535 - -1,15: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 0: 65535 - 5,-3: - 0: 65535 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-4: - 0: 65535 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 65535 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - -4,-8: - 0: 40848 - -4,-7: - 0: 65535 - -4,-6: - 0: 65023 - 1: 512 - -4,-5: - 0: 45055 - 1: 20480 - -3,-8: - 0: 65520 - -3,-7: - 0: 65535 - -3,-6: - 0: 65535 - -3,-5: - 0: 61439 - 1: 4096 - -2,-8: - 0: 62256 - -2,-7: - 0: 65535 - -2,-6: - 0: 65511 - 1: 24 - -2,-5: - 0: 65535 - -1,-8: - 0: 61440 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 - 0,-8: - 0: 64716 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 1: 1 - 0: 65534 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-8: - 0: 65535 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-6: - 0: 65535 - 5,-5: - 0: 65535 - -8,-8: - 0: 53184 - -8,-7: - 0: 65535 - -8,-6: - 0: 32767 - 3: 32768 - -8,-5: - 0: 65535 - -7,-8: - 0: 65500 - -7,-7: - 0: 65535 - -7,-6: - 0: 36863 - 3: 28672 - -7,-5: - 0: 48059 - 3: 17476 - -6,-8: - 0: 64511 - 1: 1024 - -6,-7: - 0: 65535 - -6,-6: - 0: 65535 - -6,-5: - 0: 65535 - -5,-8: - 0: 53184 - -5,-7: - 0: 65535 - -5,-6: - 0: 65535 - -5,-5: - 0: 49151 - 1: 16384 - -11,7: - 0: 51328 - -11,4: - 0: 136 - -10,4: - 0: 65535 - -10,5: - 0: 65535 - -10,6: - 0: 65535 - -10,7: - 0: 65535 - -9,4: - 0: 61439 - 1: 4096 - -9,5: - 0: 65535 - -9,6: - 0: 65535 - -9,7: - 0: 65535 - -12,-4: - 0: 48059 - 3: 17476 - -12,-3: - 0: 13115 - 3: 52420 - -12,-2: - 0: 62263 - 3: 3272 - -12,-1: - 0: 65399 - 1: 136 - -11,-4: - 0: 65535 - -11,-3: - 0: 15 - 3: 65520 - -11,-2: - 3: 4087 - 0: 61448 - -11,-1: - 0: 65535 - -10,-4: - 0: 65535 - -10,-3: - 0: 65407 - 3: 128 - -10,-2: - 0: 65535 - -10,-1: - 0: 61439 - 1: 4096 - -9,-4: - 0: 65535 - -9,-3: - 0: 32527 - 1: 32768 - 3: 240 - -9,-2: - 0: 65527 - 1: 8 - -9,-1: - 0: 65535 - -12,-6: - 0: 13118 - 3: 52416 - -12,-5: - 0: 48059 - 3: 17476 - -11,-6: - 0: 15 - 3: 65520 - -11,-5: - 0: 65535 - -11,-7: - 0: 48127 - 1: 17408 - -10,-7: - 0: 65535 - -10,-6: - 0: 32639 - 1: 128 - 3: 32768 - -10,-5: - 0: 65535 - -10,-8: - 0: 65535 - -9,-8: - 0: 61408 - -9,-7: - 0: 65535 - -9,-6: - 0: 3967 - 1: 128 - 3: 61440 - -9,-5: - 0: 65535 - -12,0: - 0: 65535 - -12,2: - 0: 3840 - -12,1: - 0: 2254 - -11,0: - 0: 65535 - -11,1: - 0: 61439 - -11,2: - 0: 53230 - -11,3: - 0: 34956 - -10,0: - 0: 61439 - 1: 4096 - -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 - -16,0: - 0: 56829 - -16,1: - 0: 56797 - -16,2: - 0: 56797 - -16,3: - 0: 248 - -15,0: - 0: 56829 - -15,1: - 0: 56797 - -15,2: - 0: 56797 - -15,3: - 0: 248 - -14,0: - 0: 54773 - -14,1: - 0: 21845 - -14,2: - 0: 23893 - -14,3: - 0: 116 - -13,0: - 0: 65278 - -13,2: - 0: 3840 - -13,-6: - 0: 192 - -16,-3: - 0: 55536 - -16,-2: - 0: 56797 - -16,-1: - 0: 56797 - -15,-3: - 0: 55536 - -15,-2: - 0: 56797 - -15,-1: - 0: 56797 - -14,-3: - 0: 21744 - -14,-2: - 0: 21845 - -14,-1: - 0: 54613 - -13,-3: - 0: 240 - -13,-1: - 0: 61440 - -19,0: - 0: 63993 - -19,1: - 0: 34952 - -19,2: - 0: 34952 - -19,3: - 0: 136 - -18,0: - 0: 52476 - -18,3: - 0: 248 - -18,1: - 0: 52428 - -18,2: - 0: 52428 - -17,0: - 0: 56829 - -17,1: - 0: 56797 - -17,2: - 0: 56797 - -17,3: - 0: 248 - -19,-1: - 0: 63624 - -19,-3: - 0: 34944 - -19,-2: - 0: 34952 - -18,-3: - 0: 51440 - -18,-2: - 0: 52428 - -18,-1: - 0: 52428 - -17,-3: - 0: 55536 - -17,-2: - 0: 56797 - -17,-1: - 0: 56797 - -11,8: - 0: 52428 - -11,9: - 0: 52300 - -11,10: - 0: 52428 - -11,11: - 0: 12 - -10,8: - 0: 65535 - -10,9: - 0: 65535 - -10,10: - 0: 61439 - 1: 4096 - -10,11: - 0: 61163 - 1: 4 - -9,8: - 0: 65535 - -9,9: - 0: 65535 - -9,10: - 0: 65535 - -9,11: - 0: 65535 - -12,14: - 0: 17648 - -12,15: - 0: 17476 - -11,14: - 0: 240 - -11,15: - 0: 60620 - -10,14: - 0: 61182 - -10,15: - 0: 65535 - -10,12: - 0: 60142 - 1: 1024 - -10,13: - 0: 61166 - -9,12: - 0: 65535 - -9,13: - 0: 65535 - -9,14: - 0: 65535 - -9,15: - 0: 65535 - -4,16: - 0: 65535 - -4,17: - 0: 63351 - 1: 2184 - -4,18: - 0: 65535 - -4,19: - 0: 4095 - -3,16: - 0: 65535 - -3,17: - 0: 65535 - -3,18: - 0: 65535 - -3,19: - 0: 255 - -2,16: - 0: 65535 - -2,17: - 0: 65535 - -2,18: - 0: 49151 - 1: 16384 - -2,19: - 0: 8191 - -1,16: - 0: 65535 - -1,17: - 0: 65535 - -1,18: - 0: 64511 - 1: 1024 - -1,19: - 0: 61439 - -8,16: - 0: 65535 - -8,17: - 0: 63487 - 1: 2048 - -8,18: - 0: 65535 - -8,19: - 0: 9215 - -7,16: - 0: 65535 - -7,17: - 0: 65023 - 1: 512 - -7,18: - 0: 65535 - -7,19: - 0: 36095 - -6,16: - 0: 49143 - 1: 16392 - -6,17: - 0: 64447 - 1: 1088 - -6,18: - 0: 65407 - 1: 128 - -6,19: - 0: 65535 - -5,16: - 1: 1 - 0: 65534 - -5,17: - 0: 65535 - -5,18: - 0: 65535 - -5,19: - 0: 65535 - -12,17: - 0: 65396 - -12,18: - 0: 65535 - -12,19: - 0: 65535 - -12,16: - 0: 17476 - -11,17: - 0: 65534 - -11,18: - 0: 65535 - -11,19: - 0: 65535 - -11,16: - 0: 61166 - -10,16: - 1: 1 - 0: 65534 - -10,17: - 0: 65533 - 1: 2 - -10,18: - 0: 65535 - -10,19: - 0: 65535 - -9,16: - 0: 65535 - -9,17: - 0: 65519 - 1: 16 - -9,18: - 0: 65535 - -9,19: - 0: 32767 - -8,21: - 0: 12834 - -8,20: - 0: 8738 - -8,22: - 0: 8738 - -8,23: - 0: 34 - -6,20: - 0: 15 - -5,20: - 0: 1 - -12,20: - 0: 52974 - -12,21: - 0: 204 - -11,20: - 0: 65535 - -11,21: - 0: 61183 - -10,20: - 0: 65535 - -10,21: - 0: 65535 - -10,22: - 0: 4 - -9,20: - 0: 30583 - -9,21: - 0: 63351 - -9,22: - 0: 2 - -13,17: - 0: 32768 - -13,18: - 0: 2184 - -13,19: - 0: 128 - -16,14: - 0: 224 - -15,14: - 0: 240 - -14,14: - 0: 240 - -13,14: - 0: 240 - 0,12: - 0: 65535 - 0,13: - 0: 61439 - 1: 4096 - 0,14: - 0: 65535 - 0,15: - 0: 65535 - 1,12: - 0: 65535 - 1,13: - 0: 65527 - 1: 8 - 1,14: - 0: 65523 - 1: 12 - 1,15: - 0: 65535 - 2,12: - 0: 65535 - 2,13: - 0: 65535 - 2,14: - 0: 65535 - 2,15: - 0: 65535 - 3,12: - 0: 65535 - 3,13: - 0: 65535 - 3,14: - 0: 65535 - 3,15: - 0: 65535 - 0,16: - 0: 65279 - 1: 256 - 0,17: - 0: 65535 - 0,18: - 0: 65535 - 0,19: - 0: 65535 - 1,16: - 0: 65535 - 1,17: - 0: 63479 - 1: 2056 - 1,18: - 1: 9 - 0: 65526 - 1,19: - 0: 65535 - 2,16: - 0: 61183 - 1: 4352 - 2,17: - 0: 65471 - 1: 64 - 2,18: - 0: 65535 - 2,19: - 0: 65535 - 3,16: - 0: 65535 - 3,17: - 0: 65535 - 3,18: - 0: 65535 - 3,19: - 0: 65535 - -1,20: - 0: 43758 - 4,4: - 0: 16191 - 1: 49344 - 4,5: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 65023 - 1: 512 - 5,4: - 0: 53199 - 1: 12336 - 5,5: - 0: 65535 - 5,6: - 0: 65535 - 5,7: - 0: 65021 - 1: 514 - 6,4: - 0: 65535 - 6,5: - 0: 32767 - 1: 32768 - 6,6: - 0: 65535 - 6,7: - 0: 65535 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 65535 - 7,7: - 0: 65535 - 4,0: - 0: 64991 - 1: 544 - 4,1: - 0: 32767 - 1: 32768 - 4,2: - 0: 65423 - 1: 112 - 4,3: - 0: 61439 - 1: 4096 - 5,0: - 0: 65519 - 1: 16 - 5,1: - 0: 61439 - 1: 4096 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,0: - 0: 32767 - 1: 32768 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 65407 - 1: 128 - 7,0: - 0: 49151 - 1: 16384 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - 8,4: - 0: 65503 - 1: 32 - 8,5: - 0: 65535 - 8,6: - 0: 65535 - 8,7: - 0: 65535 - 9,4: - 0: 65535 - 9,5: - 0: 65535 - 9,6: - 0: 65527 - 1: 8 - 9,7: - 0: 65535 - 8,0: - 0: 57343 - 1: 8192 - 8,1: - 0: 65535 - 8,2: - 0: 40863 - 1: 24672 - 8,3: - 0: 63999 - 1: 1536 - 9,0: - 0: 61183 - 1: 4352 - 9,1: - 0: 65535 - 9,2: - 0: 61439 - 1: 4096 - 9,3: - 1: 1 - 0: 65534 - 8,-4: - 0: 65439 - 1: 96 - 8,-3: - 0: 65535 - 8,-2: - 0: 65279 - 1: 256 - 8,-1: - 1: 5 - 0: 65530 - 9,-4: - 0: 65535 - 9,-3: - 1: 1 - 0: 65534 - 9,-2: - 0: 65535 - 9,-1: - 0: 65535 - 4,8: - 0: 65535 - 4,9: - 0: 65535 - 4,10: - 0: 65535 - 4,11: - 0: 65535 - 5,8: - 0: 65535 - 5,9: - 0: 65523 - 1: 12 - 5,10: - 0: 65535 - 5,11: - 0: 65535 - 6,8: - 0: 65535 - 7,8: - 0: 65535 - 4,12: - 0: 65535 - 4,13: - 0: 65535 - 4,14: - 0: 65535 - 4,15: - 0: 65535 - 5,12: - 0: 65535 - 5,13: - 0: 32767 - 1: 32768 - 5,14: - 0: 65535 - 5,15: - 0: 57343 - 1: 8192 - 6,12: - 0: 57343 - 1: 8192 - 6,13: - 0: 32767 - 1: 32768 - 6,14: - 0: 65535 - 6,15: - 0: 65535 - 7,12: - 0: 65535 - 7,13: - 0: 65503 - 1: 32 - 7,14: - 0: 65471 - 1: 64 - 7,15: - 0: 65535 - 4,16: - 0: 65521 - 1: 14 - 4,17: - 0: 65535 - 4,18: - 0: 65535 - 4,19: - 0: 65535 - 5,16: - 0: 65535 - 5,17: - 0: 65535 - 5,18: - 0: 65535 - 5,19: - 0: 65535 - 6,16: - 0: 65533 - 1: 2 - 6,17: - 0: 65263 - 1: 272 - 6,18: - 0: 65535 - 6,19: - 0: 65535 - 7,16: - 0: 65535 - 8,8: - 0: 65535 - 9,8: - 0: 65535 - 10,8: - 0: 65535 - 10,4: - 0: 65535 - 10,5: - 0: 65535 - 10,6: - 0: 65535 - 10,7: - 0: 65535 - 11,4: - 0: 65535 - 11,5: - 0: 65535 - 11,6: - 0: 65535 - 11,7: - 0: 65535 - 10,0: - 0: 32767 - 1: 32768 - 10,1: - 0: 65535 - 10,2: - 0: 24063 - 1: 41472 - 10,3: - 0: 65535 - 11,0: - 0: 63359 - 1: 2176 - 11,1: - 0: 65535 - 11,2: - 0: 61439 - 1: 4096 - 11,3: - 0: 65535 - 10,-4: - 0: 65535 - 10,-3: - 0: 65535 - 10,-2: - 0: 65535 - 10,-1: - 0: 65535 - 11,-4: - 0: 65535 - 11,-3: - 0: 65535 - 11,-2: - 0: 65535 - 11,-1: - 0: 65535 - 11,8: - 0: 65535 - 12,-4: - 0: 65535 - 12,-3: - 0: 65535 - 12,-2: - 0: 65535 - 12,-1: - 0: 65535 - 13,-4: - 0: 65535 - 13,-3: - 0: 65535 - 13,-2: - 0: 65535 - 13,-1: - 0: 65535 - 14,-4: - 0: 65535 - 14,-3: - 0: 65535 - 14,-2: - 0: 65535 - 14,-1: - 0: 65535 - 12,0: - 0: 65523 - 1: 12 - 12,1: - 0: 65535 - 12,2: - 0: 18431 - 1: 47104 - 12,3: - 0: 65535 - 13,0: - 0: 65535 - 13,1: - 0: 65535 - 13,2: - 0: 65535 - 13,3: - 0: 65535 - 14,0: - 0: 65535 - 14,1: - 0: 65535 - 14,2: - 0: 65467 - 1: 68 - 14,3: - 0: 65535 - 12,4: - 0: 65535 - 12,5: - 0: 65535 - 12,6: - 0: 65535 - 12,7: - 0: 65535 - 13,4: - 0: 65535 - 13,5: - 0: 65535 - 13,6: - 0: 65535 - 13,7: - 0: 65535 - 14,4: - 0: 65535 - 14,5: - 0: 63453 - 1: 2082 - 14,6: - 0: 65535 - 14,7: - 0: 65535 - 12,8: - 0: 65535 - 13,8: - 0: 65535 - 14,8: - 0: 65535 - 3,-8: - 0: 65519 - 1: 16 - 3,-7: - 0: 65535 - 4,-8: - 0: 65535 - 4,-7: - 0: 65535 - 5,-8: - 0: 64989 - 1: 546 - 5,-7: - 0: 65535 - 6,-8: - 0: 65535 - 6,-7: - 0: 65535 - 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-8: - 0: 65503 - 1: 32 - 7,-7: - 0: 65471 - 1: 64 - 7,-6: - 0: 65535 - 7,-5: - 0: 65535 - 15,-3: - 0: 65535 - 8,-8: - 0: 65535 - 8,-7: - 0: 65279 - 1: 256 - 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: 65535 - 10,-7: - 0: 65535 - 10,-6: - 0: 32767 - 1: 32768 - 10,-5: - 0: 65535 - 11,-8: - 0: 65535 - 11,-7: - 0: 65535 - 11,-6: - 0: 65535 - 11,-5: - 0: 65535 - 12,-8: - 0: 65535 - 12,-7: - 0: 65535 - 12,-6: - 1: 17 - 0: 65518 - 12,-5: - 0: 65535 - 13,-8: - 0: 65535 - 13,-7: - 0: 65535 - 13,-6: - 0: 65535 - 13,-5: - 0: 65535 - 14,-6: - 0: 65535 - 14,-5: - 0: 65279 - 1: 256 - 4,-10: - 0: 61440 - 4,-9: - 0: 65527 - 5,-10: - 0: 64716 - 5,-9: - 0: 57343 - 1: 8192 - 5,-12: - 0: 52974 - 5,-11: - 0: 52428 - 6,-12: - 0: 65535 - 6,-11: - 0: 65535 - 6,-10: - 0: 65527 - 1: 8 - 6,-9: - 0: 65535 - 7,-12: - 0: 65535 - 7,-11: - 0: 65535 - 7,-10: - 0: 65535 - 7,-9: - 0: 65535 - 0,-10: - 0: 61166 - 0,-9: - 0: 52974 - 1,-10: - 0: 65535 - 1,-9: - 0: 65535 - 2,-10: - 0: 65535 - 2,-9: - 0: 65535 - 3,-10: - 0: 61440 - 3,-9: - 0: 65528 - 8,-12: - 0: 65535 - 8,-11: - 0: 65535 - 8,-10: - 0: 65535 - 8,-9: - 0: 65535 - 9,-12: - 0: 65535 - 9,-11: - 0: 65535 - 9,-10: - 0: 65535 - 9,-9: - 0: 65535 - 10,-12: - 0: 65535 - 10,-11: - 0: 65535 - 10,-10: - 0: 63999 - 1: 1536 - 10,-9: - 0: 65535 - 11,-12: - 0: 65535 - 11,-11: - 0: 65535 - 11,-10: - 0: 65535 - 11,-9: - 0: 65535 - 12,-12: - 0: 65535 - 12,-11: - 0: 65535 - 12,-10: - 0: 65535 - 12,-9: - 0: 32767 - 1: 32768 - 13,-12: - 0: 65535 - 13,-11: - 0: 65535 - 13,-10: - 0: 65023 - 1: 512 - 13,-9: - 0: 53247 - 1: 12288 - 16,-3: - 0: 65535 - -11,-8: - 0: 56799 - -1,21: - 0: 64170 - 6,9: - 0: 65533 - 1: 2 - 6,10: - 0: 65399 - 1: 136 - 6,11: - 0: 63487 - 1: 2048 - 7,9: - 0: 65535 - 7,10: - 0: 65467 - 1: 68 - 7,11: - 0: 65535 - 7,17: - 0: 65535 - 7,18: - 0: 65535 - 7,19: - 0: 65535 - 8,9: - 0: 62463 - 1: 3072 - 8,10: - 0: 65535 - 8,11: - 0: 65535 - 9,9: - 0: 65535 - 9,10: - 0: 30719 - 1: 34816 - 9,11: - 0: 65527 - 1: 8 - 10,9: - 0: 65535 - 10,10: - 0: 65535 - 10,11: - 0: 65535 - 11,9: - 0: 65407 - 1: 128 - 11,10: - 0: 65535 - 11,11: - 0: 65535 - 15,-4: - 0: 65535 - 15,-2: - 0: 65535 - 15,-1: - 0: 65535 - 15,0: - 0: 65535 - 15,1: - 0: 65535 - 15,2: - 0: 65535 - 15,3: - 0: 65535 - 15,4: - 0: 65535 - 15,5: - 0: 65535 - 15,6: - 0: 65535 - 15,7: - 0: 65535 - 12,9: - 0: 65535 - 12,10: - 0: 65535 - 12,11: - 0: 65535 - 13,9: - 0: 65535 - 13,10: - 0: 65535 - 13,11: - 0: 65535 - 14,9: - 0: 65535 - 14,10: - 0: 65535 - 14,11: - 0: 65535 - 15,8: - 0: 65535 - 15,9: - 0: 65535 - 15,10: - 0: 65535 - 15,11: - 0: 65535 - 14,-8: - 0: 65535 - 14,-7: - 0: 32767 - 1: 32768 - 15,-8: - 0: 65535 - 15,-7: - 0: 65535 - 15,-6: - 0: 65535 - 15,-5: - 0: 65263 - 1: 272 - 14,-12: - 0: 65535 - 14,-11: - 0: 65535 - 14,-10: - 0: 65535 - 14,-9: - 0: 65535 - 15,-12: - 0: 65535 - 15,-11: - 0: 65535 - 15,-10: - 0: 65535 - 15,-9: - 0: 65535 - 16,-4: - 0: 65535 - 16,-2: - 0: 65535 - 16,-1: - 0: 65531 - 1: 4 - 17,-4: - 0: 65535 - 17,-3: - 0: 32767 - 1: 32768 - 17,-2: - 0: 65535 - 17,-1: - 0: 47871 - 1: 17664 - 18,-4: - 0: 65535 - 18,-3: - 0: 65535 - 18,-2: - 0: 64511 - 1: 1024 - 18,-1: - 0: 64511 - 1: 1024 - 19,-4: - 0: 65535 - 19,-3: - 0: 65535 - 19,-2: - 0: 65535 - 19,-1: - 0: 16191 - 1: 49344 - -12,-12: - 0: 2303 - -11,-12: - 0: 57343 - -11,-11: - 0: 65501 - -11,-10: - 0: 65535 - -11,-9: - 0: 65535 - -10,-12: - 0: 65535 - -10,-11: - 0: 65535 - -10,-10: - 0: 65535 - -10,-9: - 0: 65535 - -9,-12: - 0: 12287 - 1: 53248 - -9,-11: - 0: 65535 - -9,-10: - 0: 4091 - 1: 4 - -8,-12: - 0: 65471 - 1: 64 - -8,-11: - 0: 65535 - -8,-10: - 0: 4095 - -7,-12: - 0: 65535 - -7,-11: - 0: 14207 - -7,-10: - 0: 52993 - -7,-9: - 0: 52428 - -6,-12: - 0: 22527 - -6,-10: - 0: 44868 - -6,-9: - 0: 43690 - -6,-11: - 0: 17476 - -5,-12: - 0: 17 - -8,-16: - 0: 49151 - 1: 16384 - -8,-15: - 0: 255 - -8,-13: - 0: 61440 - -7,-16: - 0: 65535 - -7,-15: - 0: 255 - -7,-13: - 0: 61440 - -6,-16: - 0: 30591 - -6,-15: - 0: 119 - -6,-13: - 0: 28672 - -12,-16: - 0: 65525 - -12,-15: - 0: 65535 - -12,-14: - 3: 3 - 0: 65404 - 1: 128 - -12,-13: - 0: 65535 - -11,-16: - 0: 65535 - -11,-15: - 0: 65535 - -11,-14: - 0: 65535 - -11,-13: - 0: 64255 - 1: 1280 - -10,-16: - 0: 65535 - -10,-15: - 0: 30719 - -10,-14: - 0: 30583 - -10,-13: - 0: 63351 - -9,-16: - 0: 65535 - -9,-15: - 0: 255 - -9,-13: - 0: 61440 - -12,-17: - 0: 17648 - 3: 4352 - -11,-17: - 0: 61182 - 3: 4352 - -11,-18: - 0: 60616 - -11,-20: - 0: 34952 - -11,-19: - 0: 34952 - -10,-17: - 0: 61440 - -9,-17: - 0: 61440 - -8,-17: - 0: 64716 - -8,-20: - 0: 17476 - -8,-19: - 0: 17476 - -8,-18: - 0: 52420 - -7,-18: - 0: 35056 - -7,-17: - 0: 65260 - -6,-18: - 0: 65534 - -6,-17: - 0: 65535 - -6,-19: - 0: 32768 - -5,-19: - 0: 13056 - -5,-18: - 0: 4371 - -11,-21: - 0: 34816 - -8,-21: - 0: 17408 - -13,-17: - 0: 51200 - -15,-15: - 0: 128 - -15,-14: - 0: 128 - -14,-15: - 0: 52284 - 3: 192 - -14,-14: - 0: 56636 - 3: 192 - -14,-13: - 0: 56793 - -14,-16: - 0: 34944 - -13,-16: - 0: 65534 - -13,-15: - 0: 4095 - 3: 61440 - -13,-14: - 0: 65527 - 3: 8 - -13,-13: - 0: 65535 - -14,-12: - 0: 140 - -13,-12: - 0: 3327 - 16,-8: - 0: 65535 - 16,-7: - 0: 63487 - 1: 2048 - 16,-6: - 0: 65535 - 16,-5: - 0: 65535 - 17,-8: - 0: 65535 - 17,-7: - 0: 65535 - 17,-6: - 0: 65535 - 17,-5: - 0: 65535 - 18,-8: - 0: 65535 - 18,-7: - 0: 65423 - 1: 112 - 18,-6: - 0: 32767 - 1: 32768 - 18,-5: - 0: 65399 - 1: 136 - 19,-8: - 0: 65535 - 19,-7: - 0: 57343 - 1: 8192 - 19,-6: - 0: 65535 - 19,-5: - 0: 65535 - 16,-12: - 0: 65535 - 16,-11: - 0: 65535 - 16,-10: - 0: 65535 - 16,-9: - 0: 65535 - 17,-12: - 0: 65535 - 17,-11: - 0: 13119 - 4: 52416 - 17,-10: - 0: 65535 - 17,-9: - 0: 65535 - 18,-12: - 0: 65535 - 18,-11: - 0: 8751 - 4: 4368 - 5: 52416 - 18,-10: - 0: 65535 - 18,-9: - 0: 65023 - 1: 512 - 19,-12: - 0: 65535 - 19,-11: - 0: 61167 - 5: 4368 - 19,-10: - 0: 65535 - 19,-9: - 0: 64511 - 1: 1024 - 16,0: - 0: 65535 - 16,1: - 0: 65535 - 16,2: - 0: 65535 - 16,3: - 0: 61183 - 1: 4352 - 17,0: - 1: 5 - 0: 65530 - 17,1: - 0: 62463 - 1: 3072 - 17,2: - 0: 65535 - 17,3: - 0: 65535 - 18,0: - 0: 65503 - 1: 32 - 18,1: - 0: 65535 - 18,2: - 0: 65535 - 18,3: - 0: 65535 - 19,0: - 0: 65471 - 1: 64 - 19,1: - 0: 65279 - 1: 256 - 19,2: - 0: 65535 - 19,3: - 0: 65535 - 16,4: - 1: 1 - 0: 65534 - 16,5: - 0: 65535 - 16,6: - 0: 65535 - 16,7: - 0: 65535 - 17,4: - 0: 32767 - 1: 32768 - 17,5: - 0: 65407 - 1: 128 - 17,6: - 0: 65535 - 17,7: - 0: 65535 - 18,4: - 0: 26623 - 1: 38912 - 18,5: - 0: 65535 - 18,6: - 0: 65535 - 18,7: - 0: 65535 - 19,4: - 0: 32767 - 1: 32768 - 19,5: - 0: 63487 - 1: 2048 - 19,6: - 0: 65535 - 19,7: - 0: 65535 - 8,-16: - 0: 61440 - 8,-15: - 0: 65535 - 8,-14: - 0: 65535 - 8,-13: - 0: 65535 - 9,-16: - 0: 61440 - 9,-15: - 0: 65535 - 9,-14: - 0: 65535 - 9,-13: - 0: 65535 - 10,-16: - 0: 61440 - 10,-15: - 0: 65535 - 10,-14: - 0: 65535 - 10,-13: - 0: 65535 - 11,-16: - 0: 28672 - 11,-15: - 0: 65399 - 11,-14: - 0: 65535 - 11,-13: - 0: 65535 - 5,-13: - 0: 65535 - 5,-16: - 0: 59392 - 5,-15: - 0: 61166 - 5,-14: - 0: 61166 - 6,-16: - 0: 65280 - 6,-15: - 0: 65535 - 6,-14: - 0: 65535 - 6,-13: - 0: 65527 - 1: 8 - 7,-16: - 0: 63232 - 7,-15: - 0: 65535 - 7,-14: - 0: 65535 - 7,-13: - 1: 7 - 0: 65528 - 12,-15: - 0: 65516 - 12,-14: - 0: 65535 - 12,-13: - 0: 64507 - 1: 1028 - 13,-15: - 0: 65535 - 13,-14: - 0: 65535 - 13,-13: - 0: 65535 - 13,-16: - 0: 64716 - 14,-16: - 0: 65535 - 14,-15: - 0: 65535 - 14,-14: - 0: 65535 - 14,-13: - 0: 65535 - 15,-16: - 0: 65535 - 15,-15: - 0: 65535 - 15,-14: - 0: 65535 - 15,-13: - 0: 65471 - 1: 64 - 16,-16: - 0: 65535 - 16,-15: - 0: 65535 - 16,-14: - 0: 65535 - 16,-13: - 0: 65535 - 17,-16: - 0: 65535 - 17,-15: - 0: 65535 - 17,-14: - 0: 65535 - 17,-13: - 0: 65535 - 18,-16: - 0: 65535 - 18,-15: - 0: 65535 - 18,-14: - 0: 65535 - 18,-13: - 0: 65535 - 19,-16: - 0: 65535 - 19,-15: - 0: 65535 - 19,-14: - 0: 65535 - 19,-13: - 0: 65535 - 13,-17: - 0: 51328 - 14,-17: - 0: 63280 - 15,-17: - 0: 64512 - 16,-17: - 0: 65516 - 16,-18: - 0: 32768 - 17,-18: - 0: 4096 - 17,-17: - 0: 65331 - 18,-17: - 0: 65024 - 19,-17: - 0: 65534 - 19,-18: - 0: 32768 - 20,-18: - 0: 65280 - 20,-17: - 0: 65535 - 21,-18: - 0: 65280 - 21,-17: - 0: 65535 - 22,-18: - 0: 13090 - 22,-17: - 0: 63347 - 20,-16: - 0: 65535 - 20,-15: - 0: 65535 - 20,-14: - 0: 65535 - 20,-13: - 0: 65535 - 21,-16: - 0: 65535 - 21,-15: - 0: 65535 - 21,-14: - 0: 65519 - 1: 16 - 21,-13: - 0: 65535 - 22,-16: - 0: 65535 - 22,-15: - 0: 65535 - 22,-14: - 0: 65535 - 22,-13: - 0: 65535 - 23,-16: - 0: 65280 - 23,-15: - 0: 65535 - 23,-14: - 0: 65535 - 23,-13: - 0: 65535 - 20,-12: - 0: 65535 - 20,-11: - 0: 65535 - 20,-10: - 0: 65535 - 20,-9: - 0: 65535 - 21,-12: - 0: 65535 - 21,-11: - 0: 65535 - 21,-10: - 0: 65535 - 21,-9: - 0: 65535 - 22,-12: - 0: 65535 - 22,-11: - 0: 63351 - 3: 2184 - 22,-10: - 0: 63351 - 3: 2184 - 22,-9: - 0: 63351 - 6: 2184 - 23,-12: - 0: 65535 - 23,-11: - 3: 819 - 0: 64716 - 23,-10: - 3: 819 - 0: 64716 - 23,-9: - 6: 819 - 0: 64716 - 20,-8: - 0: 65535 - 20,-7: - 0: 65535 - 20,-6: - 0: 65535 - 20,-5: - 0: 57343 - 1: 8192 - 21,-8: - 0: 65535 - 21,-7: - 0: 65535 - 21,-6: - 0: 65535 - 21,-5: - 0: 65535 - 22,-8: - 0: 65535 - 22,-7: - 0: 63351 - 3: 2184 - 22,-6: - 0: 65407 - 1: 128 - 22,-5: - 0: 57343 - 1: 8192 - 23,-8: - 0: 65535 - 23,-7: - 3: 819 - 0: 64716 - 23,-6: - 0: 65423 - 1: 112 - 23,-5: - 0: 65535 - 20,-4: - 0: 65535 - 20,-3: - 0: 65535 - 20,-2: - 0: 65535 - 20,-1: - 0: 40863 - 1: 24672 - 21,-4: - 1: 1 - 0: 65534 - 21,-3: - 0: 65535 - 21,-2: - 0: 65521 - 1: 14 - 21,-1: - 0: 65535 - 22,-4: - 0: 65501 - 1: 34 - 22,-3: - 0: 65535 - 22,-2: - 0: 65535 - 22,-1: - 0: 65535 - 23,-4: - 0: 65535 - 23,-3: - 0: 65535 - 23,-2: - 0: 65535 - 23,-1: - 0: 65535 - 24,-16: - 0: 38912 - 24,-15: - 0: 65535 - 24,-14: - 0: 65535 - 24,-13: - 0: 65535 - 25,-16: - 0: 53752 - 3: 11776 - 25,-15: - 0: 65365 - 3: 170 - 25,-14: - 0: 65535 - 25,-13: - 0: 49151 - 1: 16384 - 26,-16: - 0: 29781 - 3: 35754 - 26,-15: - 3: 15 - 0: 65520 - 26,-14: - 0: 28671 - 1: 4096 - 26,-13: - 0: 65399 - 27,-16: - 0: 21844 - 27,-15: - 0: 21845 - 27,-13: - 0: 30020 - 26,-17: - 3: 40960 - 0: 20303 - 24,-12: - 0: 65535 - 24,-11: - 0: 65519 - 1: 16 - 24,-10: - 0: 65535 - 24,-9: - 0: 65535 - 25,-12: - 0: 65531 - 1: 4 - 25,-11: - 0: 63351 - 3: 2184 - 25,-10: - 0: 65535 - 25,-9: - 0: 65535 - 26,-12: - 0: 65535 - 26,-11: - 0: 5375 - 3: 8960 - 26,-10: - 0: 4605 - 3: 60930 - 26,-9: - 0: 55793 - 3: 9742 - 27,-12: - 0: 30583 - 27,-11: - 0: 17493 - 27,-10: - 0: 30583 - 27,-9: - 0: 22391 - 24,-8: - 0: 65535 - 24,-7: - 0: 65535 - 24,-6: - 0: 65535 - 24,-5: - 0: 65535 - 25,-8: - 0: 14199 - 3: 136 - 25,-7: - 0: 4369 - 25,-6: - 0: 65297 - 25,-5: - 0: 65535 - 26,-8: - 3: 3 - 0: 116 - 26,-6: - 0: 65408 - 26,-5: - 0: 65535 - 27,-7: - 0: 65501 - 27,-6: - 0: 65527 - 1: 8 - 27,-5: - 0: 65535 - 27,-8: - 0: 55125 - 28,-8: - 0: 65216 - 28,-7: - 0: 65535 - 28,-6: - 0: 65535 - 28,-5: - 0: 65535 - 29,-8: - 0: 65527 - 29,-7: - 0: 65535 - 29,-6: - 0: 65535 - 29,-5: - 0: 65535 - 30,-8: - 0: 65328 - 30,-7: - 0: 65535 - 30,-6: - 0: 61439 - 1: 4096 - 30,-5: - 0: 65535 - 31,-8: - 0: 12556 - 31,-7: - 0: 63351 - 31,-6: - 0: 3967 - 28,-9: - 0: 2188 - 28,-10: - 0: 34944 - 29,-10: - 0: 65535 - 29,-9: - 0: 14335 - 30,-10: - 0: 63344 - 30,-9: - 0: 55 - 31,-10: - 0: 64712 - 31,-9: - 0: 61166 - 31,-11: - 0: 32768 - 32,-8: - 0: 35003 - 32,-6: - 0: 61388 - 32,-5: - 0: 204 - 32,-7: - 0: 34952 - 33,-7: - 0: 65526 - 33,-6: - 0: 6143 - 33,-8: - 0: 8192 - 32,-10: - 0: 65521 - 32,-9: - 0: 65535 - 28,-4: - 0: 65535 - 28,-3: - 0: 65535 - 28,-2: - 0: 65535 - 28,-1: - 0: 65535 - 29,-4: - 0: 65535 - 29,-3: - 0: 65535 - 29,-2: - 0: 65535 - 29,-1: - 0: 65535 - 30,-4: - 0: 65535 - 30,-3: - 0: 61439 - 1: 4096 - 30,-2: - 0: 65535 - 30,-1: - 1: 257 - 0: 65278 - 31,-4: - 0: 28945 - 31,-3: - 0: 65535 - 31,-2: - 0: 65535 - 31,-1: - 0: 65535 - 24,-4: - 0: 65535 - 24,-3: - 0: 65535 - 24,-2: - 0: 65535 - 24,-1: - 0: 65535 - 25,-4: - 1: 3 - 0: 65532 - 25,-3: - 0: 65535 - 25,-2: - 0: 65535 - 25,-1: - 0: 65535 - 26,-4: - 0: 65535 - 26,-3: - 0: 65535 - 26,-2: - 0: 65535 - 26,-1: - 0: 65535 - 27,-4: - 0: 65535 - 27,-3: - 0: 65535 - 27,-2: - 0: 65535 - 27,-1: - 0: 65535 - 32,-3: - 0: 65328 - 32,-2: - 0: 65535 - 32,-1: - 0: 65535 - 33,-2: - 0: 29489 - 33,-1: - 0: 30583 - 32,0: - 0: 65535 - 32,1: - 0: 61183 - 3: 4352 - 32,2: - 0: 17487 - 33,0: - 0: 30583 - 33,1: - 0: 19 - 28,0: - 0: 65535 - 28,1: - 0: 65535 - 28,2: - 0: 65535 - 28,3: - 0: 65535 - 29,0: - 0: 65535 - 29,1: - 0: 65535 - 29,2: - 0: 65535 - 29,3: - 0: 54783 - 3: 8704 - 30,0: - 0: 65535 - 30,1: - 0: 65535 - 30,2: - 0: 65535 - 30,3: - 0: 62207 - 31,0: - 0: 65535 - 31,1: - 0: 55295 - 1: 8192 - 3: 2048 - 31,2: - 0: 4383 - 24,0: - 0: 40959 - 1: 24576 - 24,1: - 0: 65535 - 24,2: - 0: 65535 - 24,3: - 0: 65535 - 25,0: - 0: 65535 - 25,1: - 0: 65535 - 25,2: - 0: 65535 - 25,3: - 0: 65535 - 26,0: - 0: 65535 - 26,1: - 0: 65535 - 26,2: - 0: 65279 - 1: 256 - 26,3: - 0: 65531 - 1: 4 - 27,0: - 0: 65535 - 27,1: - 0: 65535 - 27,2: - 0: 65535 - 27,3: - 1: 1 - 0: 65534 - 20,0: - 0: 65535 - 20,1: - 0: 65407 - 1: 128 - 20,2: - 0: 65535 - 20,3: - 0: 65535 - 21,0: - 0: 57343 - 1: 8192 - 21,1: - 0: 65487 - 1: 48 - 21,2: - 0: 65535 - 21,3: - 0: 65535 - 22,0: - 0: 65535 - 22,1: - 0: 65535 - 22,2: - 0: 65535 - 22,3: - 0: 65535 - 23,0: - 0: 65535 - 23,1: - 0: 65535 - 23,2: - 0: 65535 - 23,3: - 0: 65535 - 28,4: - 0: 65531 - 1: 4 - 28,5: - 0: 65535 - 28,6: - 0: 65535 - 28,7: - 0: 65535 - 29,4: - 0: 56797 - 3: 8738 - 29,5: - 0: 40413 - 3: 25122 - 29,6: - 0: 63475 - 3: 2060 - 29,7: - 0: 65535 - 24,4: - 0: 64511 - 1: 1024 - 24,5: - 0: 65535 - 24,6: - 0: 65535 - 24,7: - 0: 65535 - 25,4: - 0: 65535 - 25,5: - 0: 65527 - 1: 8 - 25,6: - 0: 63359 - 1: 2176 - 25,7: - 0: 65535 - 26,4: - 0: 65535 - 26,5: - 0: 65535 - 26,6: - 0: 65535 - 26,7: - 0: 65535 - 27,4: - 0: 64251 - 1: 1284 - 27,5: - 0: 65535 - 27,6: - 0: 65535 - 27,7: - 0: 65535 - 20,4: - 0: 65535 - 20,5: - 0: 65535 - 20,6: - 0: 61439 - 1: 4096 - 20,7: - 1: 1 - 0: 65534 - 21,4: - 0: 57343 - 1: 8192 - 21,5: - 0: 65535 - 21,6: - 0: 65503 - 1: 32 - 21,7: - 0: 65535 - 22,4: - 0: 65535 - 22,5: - 0: 65535 - 22,6: - 0: 65503 - 1: 32 - 22,7: - 0: 65535 - 23,4: - 0: 65535 - 23,5: - 0: 65535 - 23,6: - 0: 65535 - 23,7: - 0: 65535 - 28,8: - 1: 1 - 0: 65534 - 28,9: - 0: 65535 - 28,10: - 0: 65535 - 28,11: - 0: 65535 - 29,8: - 0: 48059 - 3: 17476 - 29,9: - 0: 15155 - 3: 50244 - 29,10: - 0: 65535 - 29,11: - 0: 65535 - 30,9: - 3: 12288 - 0: 52962 - 30,10: - 0: 65521 - 3: 14 - 30,11: - 0: 65535 - 31,9: - 0: 61682 - 31,10: - 3: 15 - 0: 65520 - 31,11: - 0: 65535 - 24,8: - 0: 65535 - 24,9: - 0: 65535 - 24,10: - 0: 65535 - 24,11: - 0: 65535 - 25,8: - 0: 65535 - 25,9: - 0: 65535 - 25,10: - 0: 65535 - 25,11: - 0: 65535 - 26,8: - 0: 65535 - 26,9: - 0: 65535 - 26,10: - 0: 65535 - 26,11: - 0: 65535 - 27,8: - 0: 65535 - 27,9: - 0: 65535 - 27,10: - 0: 65535 - 27,11: - 0: 65535 - 32,9: - 0: 12530 - 32,10: - 3: 2247 - 0: 63288 - 32,11: - 0: 65535 - 33,10: - 0: 61176 - 3: 4352 - 33,11: - 3: 4369 - 0: 61166 - 34,10: - 0: 12560 - 34,11: - 0: 13107 - 32,12: - 0: 65535 - 32,13: - 0: 65535 - 32,14: - 0: 63543 - 3: 1992 - 32,15: - 0: 65535 - 33,12: - 3: 4369 - 0: 61166 - 33,13: - 3: 4369 - 0: 59118 - 33,14: - 3: 1 - 0: 65398 - 33,15: - 0: 32767 - 34,12: - 0: 1 - 28,12: - 0: 65535 - 28,13: - 0: 65535 - 28,14: - 0: 65535 - 28,15: - 0: 3839 - 29,12: - 0: 65535 - 29,13: - 0: 65535 - 29,14: - 0: 65535 - 29,15: - 0: 4095 - 30,12: - 0: 65535 - 30,13: - 0: 65535 - 30,14: - 0: 61695 - 3: 3840 - 30,15: - 0: 65535 - 31,12: - 0: 65535 - 31,13: - 0: 65535 - 31,14: - 0: 61695 - 3: 3840 - 31,15: - 0: 65535 - 32,16: - 0: 15 - 33,16: - 0: 1 - 28,17: - 0: 65520 - 28,18: - 0: 8 - 29,17: - 0: 12544 - 29,18: - 0: 1 - 30,16: - 0: 12 - 31,16: - 0: 15 - 24,12: - 0: 65535 - 24,13: - 0: 65535 - 24,14: - 0: 255 - 25,12: - 0: 65535 - 25,13: - 0: 65535 - 25,14: - 0: 35071 - 25,15: - 0: 34952 - 26,12: - 0: 65535 - 26,13: - 0: 65535 - 26,14: - 0: 65535 - 26,15: - 0: 65535 - 27,12: - 0: 65535 - 27,13: - 0: 65535 - 27,14: - 0: 65535 - 27,15: - 0: 30719 - 25,16: - 0: 34952 - 25,17: - 0: 34952 - 26,16: - 0: 65535 - 26,17: - 0: 36863 - 27,16: - 0: 28979 - 27,17: - 0: 65535 - 20,12: - 0: 61439 - 1: 4096 - 20,13: - 0: 65535 - 20,14: - 0: 12287 - 20,15: - 0: 8946 - 21,12: - 0: 65399 - 1: 136 - 21,13: - 0: 65535 - 21,14: - 0: 4095 - 21,15: - 0: 240 - 22,12: - 0: 65535 - 22,13: - 0: 65535 - 22,14: - 0: 61439 - 22,15: - 0: 61182 - 23,12: - 0: 65535 - 23,13: - 0: 65535 - 23,14: - 0: 30719 - 23,15: - 0: 16383 - 20,16: - 0: 4082 - 21,16: - 0: 4080 - 22,16: - 0: 61438 - 22,17: - 0: 61166 - 22,18: - 0: 12014 - 23,16: - 0: 65523 - 23,17: - 0: 63351 - 23,18: - 0: 8995 - 1: 16 - 20,8: - 0: 65535 - 20,9: - 0: 65535 - 20,10: - 0: 65535 - 20,11: - 0: 65535 - 21,8: - 0: 65535 - 21,9: - 0: 65535 - 21,10: - 0: 65535 - 21,11: - 0: 63487 - 1: 2048 - 22,8: - 0: 65535 - 22,9: - 0: 65535 - 22,10: - 0: 65535 - 22,11: - 0: 65535 - 23,8: - 0: 65535 - 23,9: - 0: 65535 - 23,10: - 0: 30719 - 1: 34816 - 23,11: - 0: 65527 - 1: 8 - 16,12: - 0: 65535 - 16,13: - 0: 65535 - 16,14: - 0: 65535 - 16,15: - 0: 4607 - 17,12: - 0: 65535 - 17,13: - 0: 65535 - 17,14: - 0: 65535 - 17,15: - 0: 255 - 18,12: - 0: 65535 - 18,13: - 0: 65535 - 18,14: - 0: 32767 - 18,15: - 0: 13303 - 19,12: - 0: 65535 - 19,13: - 0: 65535 - 19,14: - 0: 4095 - 19,15: - 0: 240 - 16,8: - 0: 65535 - 16,9: - 0: 65535 - 16,10: - 0: 65535 - 16,11: - 0: 65535 - 17,8: - 0: 65535 - 17,9: - 0: 65535 - 17,10: - 0: 65535 - 17,11: - 0: 65535 - 18,8: - 0: 65535 - 18,9: - 0: 65343 - 1: 192 - 18,10: - 0: 65535 - 18,11: - 0: 65535 - 19,8: - 0: 65535 - 19,9: - 0: 65535 - 19,10: - 0: 65535 - 19,11: - 0: 65535 - 12,12: - 0: 65535 - 12,13: - 0: 65535 - 12,14: - 0: 65535 - 12,15: - 0: 65535 - 13,12: - 0: 65535 - 13,13: - 0: 65535 - 13,14: - 0: 65535 - 13,15: - 0: 65535 - 14,12: - 0: 65535 - 14,13: - 0: 65535 - 14,14: - 0: 65535 - 14,15: - 0: 30719 - 15,12: - 0: 32767 - 1: 32768 - 15,13: - 0: 65535 - 15,14: - 0: 65535 - 15,15: - 0: 255 - 8,12: - 0: 65535 - 8,13: - 0: 65535 - 8,14: - 0: 65535 - 8,15: - 0: 64511 - 1: 1024 - 9,12: - 0: 65535 - 9,13: - 0: 65535 - 9,14: - 0: 63479 - 1: 2056 - 9,15: - 0: 65535 - 10,12: - 0: 65535 - 10,13: - 0: 65535 - 10,14: - 0: 65535 - 10,15: - 0: 65535 - 11,12: - 0: 65535 - 11,13: - 0: 65535 - 11,14: - 0: 65535 - 11,15: - 0: 65535 - 12,16: - 0: 65535 - 12,17: - 0: 65535 - 12,18: - 0: 65535 - 12,19: - 0: 65535 - 13,16: - 0: 65023 - 1: 512 - 13,17: - 0: 65527 - 1: 8 - 13,18: - 0: 65535 - 13,19: - 0: 65535 - 14,16: - 0: 32759 - 14,17: - 0: 16247 - 14,18: - 0: 62451 - 14,19: - 0: 63487 - 15,16: - 0: 4080 - 16,16: - 0: 8177 - 17,16: - 0: 4080 - 18,16: - 0: 4083 - 19,16: - 0: 4080 - 12,20: - 0: 63743 - 13,20: - 0: 62463 - 14,20: - 0: 61695 - 8,16: - 0: 65535 - 8,17: - 0: 65535 - 8,18: - 0: 65535 - 8,19: - 0: 65535 - 9,16: - 0: 65535 - 9,17: - 0: 65535 - 9,18: - 0: 65535 - 9,19: - 0: 65535 - 10,16: - 0: 65535 - 10,17: - 0: 65535 - 10,18: - 0: 65535 - 10,19: - 0: 65535 - 11,16: - 0: 65535 - 11,17: - 0: 65535 - 11,18: - 0: 65535 - 11,19: - 0: 65535 - 8,20: - 0: 65535 - 8,21: - 0: 65535 - 9,20: - 0: 4383 - 9,21: - 0: 61713 - 10,20: - 0: 53727 - 0,20: - 0: 65535 - 0,21: - 0: 65535 - 1,20: - 0: 65535 - 1,21: - 0: 65535 - 2,20: - 0: 65535 - 2,21: - 0: 65535 - 3,20: - 0: 65535 - 3,21: - 0: 65535 - 4,20: - 0: 65535 - 4,21: - 0: 65535 - 5,20: - 0: 65535 - 5,21: - 0: 65535 - 6,20: - 0: 65535 - 6,21: - 0: 65535 - 7,20: - 0: 65535 - 7,21: - 0: 65535 - 32,4: - 0: 30583 - 32,5: - 0: 63351 - 32,6: - 0: 65535 - 32,7: - 0: 30583 - 33,4: - 0: 30591 - 33,5: - 0: 63359 - 33,6: - 0: 63479 - 33,7: - 0: 32631 - 34,4: - 0: 4369 - 34,5: - 0: 61713 - 34,6: - 0: 63993 - 34,7: - 0: 4369 - 22,-20: - 0: 8750 - 22,-19: - 0: 8738 - 23,-20: - 0: 50255 - 23,-19: - 0: 50244 - 23,-18: - 0: 50244 - 23,-17: - 0: 3140 - 27,-14: - 0: 17476 - 24,-20: - 0: 65295 - 24,-19: - 0: 65295 - 24,-18: - 0: 65295 - 24,-17: - 0: 3855 - 25,-20: - 0: 65295 - 25,-19: - 0: 65295 - 25,-18: - 0: 65295 - 25,-17: - 0: 3855 - 26,-20: - 0: 65359 - 26,-19: - 0: 65359 - 26,-18: - 0: 65359 - 27,-20: - 0: 65295 - 27,-19: - 0: 65295 - 27,-18: - 0: 65295 - 27,-17: - 0: 20239 - 32,3: - 0: 62196 - 33,3: - 0: 29424 - 34,3: - 0: 4368 - 31,3: - 0: 62193 - 30,4: - 0: 30583 - 30,5: - 0: 63351 - 30,6: - 0: 65535 - 30,7: - 0: 30583 - 31,4: - 0: 30583 - 31,5: - 0: 63351 - 31,6: - 0: 65535 - 31,7: - 0: 30583 - 30,8: - 0: 63351 - 31,8: - 0: 63351 - 32,8: - 0: 63351 - 33,8: - 0: 32631 - 33,9: - 0: 35058 - 34,8: - 0: 4369 - 34,9: - 0: 17 - 26,-21: - 0: 22000 - 27,-21: - 0: 4368 - 28,-20: - 0: 65295 - 28,-19: - 0: 65295 - 28,-18: - 0: 65295 - 28,-17: - 0: 3855 - 29,-20: - 0: 30023 - 29,-19: - 0: 30021 - 29,-18: - 0: 30021 - 29,-17: - 0: 1861 - 15,17: - 0: 3840 - 15,18: - 0: 28912 - 15,19: - 0: 28799 - 16,17: - 0: 4369 - 16,18: - 0: 4369 - 16,19: - 0: 4369 - 12,21: - 0: 61695 - 12,22: - 0: 3140 - 13,21: - 0: 61951 - 13,22: - 0: 1861 - 14,21: - 0: 61695 - 15,20: - 0: 28799 - 15,21: - 0: 61567 - 10,21: - 0: 61919 - 11,20: - 0: 61695 - 11,21: - 0: 61695 - 16,20: - 0: 4369 - 16,21: - 0: 4369 - -2,20: - 0: 4369 - -2,21: - 0: 61713 - 33,-3: - 0: 4096 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 14.840918 - - 55.830124 - - 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 - - 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 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: GasTileOverlay - - type: RadiationGridResistance -- uid: 1 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree -- uid: 2 - type: WallSolid - components: - - pos: -2.5,7.5 - parent: 0 - type: Transform -- uid: 3 - type: WallSolid - components: - - pos: -2.5,8.5 - parent: 0 - type: Transform -- uid: 4 - type: WallSolid - components: - - pos: -3.5,8.5 - parent: 0 - type: Transform -- uid: 5 - type: WallSolid - components: - - pos: -4.5,8.5 - parent: 0 - type: Transform -- uid: 6 - type: WallSolid - components: - - pos: -5.5,8.5 - parent: 0 - type: Transform -- uid: 7 - type: WallSolid - components: - - pos: -6.5,8.5 - parent: 0 - type: Transform -- uid: 8 - type: WallSolid - components: - - pos: -8.5,8.5 - parent: 0 - type: Transform -- uid: 9 - type: WallSolid - components: - - pos: -7.5,8.5 - parent: 0 - type: Transform -- uid: 10 - type: WallSolid - components: - - pos: -8.5,7.5 - parent: 0 - type: Transform -- uid: 11 - type: WallSolid - components: - - pos: -8.5,6.5 - parent: 0 - type: Transform -- uid: 12 - type: WallSolid - components: - - pos: -8.5,4.5 - parent: 0 - type: Transform -- uid: 13 - type: WallSolid - components: - - pos: -9.5,7.5 - parent: 0 - type: Transform -- uid: 14 - type: WallSolid - components: - - pos: -10.5,7.5 - parent: 0 - type: Transform -- uid: 15 - type: WallSolid - components: - - pos: -11.5,7.5 - parent: 0 - type: Transform -- uid: 16 - type: WallSolid - components: - - pos: -12.5,7.5 - parent: 0 - type: Transform -- uid: 17 - type: WallSolid - components: - - pos: -13.5,7.5 - parent: 0 - type: Transform -- uid: 18 - type: WallSolid - components: - - pos: -13.5,6.5 - parent: 0 - type: Transform -- uid: 19 - type: WallSolid - components: - - pos: -15.5,7.5 - parent: 0 - type: Transform -- uid: 20 - type: WallSolid - components: - - pos: -15.5,8.5 - parent: 0 - type: Transform -- uid: 21 - type: WallSolid - components: - - pos: -9.5,8.5 - parent: 0 - type: Transform -- uid: 22 - type: WallSolid - components: - - pos: -9.5,9.5 - parent: 0 - type: Transform -- uid: 23 - type: WallSolid - components: - - pos: -9.5,10.5 - parent: 0 - type: Transform -- uid: 24 - type: WallSolid - components: - - pos: -9.5,11.5 - parent: 0 - type: Transform -- uid: 25 - type: WallSolid - components: - - pos: -9.5,12.5 - parent: 0 - type: Transform -- uid: 26 - type: WallSolid - components: - - pos: -8.5,12.5 - parent: 0 - type: Transform -- uid: 27 - type: WallSolid - components: - - pos: -2.5,9.5 - parent: 0 - type: Transform -- uid: 28 - type: WallSolid - components: - - pos: -2.5,10.5 - parent: 0 - type: Transform -- uid: 29 - type: WallSolid - components: - - pos: -2.5,11.5 - parent: 0 - type: Transform -- uid: 30 - type: WallSolid - components: - - pos: -3.5,12.5 - parent: 0 - type: Transform -- uid: 31 - type: WallSolid - components: - - pos: -9.5,15.5 - parent: 0 - type: Transform -- uid: 32 - type: WallSolid - components: - - pos: -9.5,16.5 - parent: 0 - type: Transform -- uid: 33 - type: WallSolid - components: - - pos: -9.5,17.5 - parent: 0 - type: Transform -- uid: 34 - type: Grille - components: - - pos: -8.5,16.5 - parent: 0 - type: Transform -- uid: 35 - type: WallSolid - components: - - pos: -2.5,16.5 - parent: 0 - type: Transform -- uid: 36 - type: WallSolid - components: - - pos: -3.5,16.5 - parent: 0 - type: Transform -- uid: 37 - type: WallSolid - components: - - pos: -3.5,17.5 - parent: 0 - type: Transform -- uid: 38 - type: WallSolid - components: - - pos: -3.5,-2.5 - parent: 0 - type: Transform -- uid: 39 - type: WallSolid - components: - - pos: 2.5,-2.5 - parent: 0 - type: Transform -- uid: 40 - type: WallSolid - components: - - pos: 2.5,1.5 - parent: 0 - type: Transform -- uid: 41 - type: WallSolid - components: - - pos: 2.5,2.5 - parent: 0 - type: Transform -- uid: 42 - type: WallSolid - components: - - pos: 2.5,3.5 - parent: 0 - type: Transform -- uid: 43 - type: WallSolid - components: - - pos: -3.5,1.5 - parent: 0 - type: Transform -- uid: 44 - type: WallSolid - components: - - pos: -3.5,2.5 - parent: 0 - type: Transform -- uid: 45 - type: WallSolid - components: - - pos: -3.5,3.5 - parent: 0 - type: Transform -- uid: 46 - type: WallSolid - components: - - pos: -0.5,3.5 - parent: 0 - type: Transform -- uid: 47 - type: WallReinforced - components: - - pos: -7.5,-3.5 - parent: 0 - type: Transform -- uid: 48 - type: WallReinforced - components: - - pos: -7.5,-2.5 - parent: 0 - type: Transform -- uid: 49 - type: WallReinforced - components: - - pos: -7.5,-1.5 - parent: 0 - type: Transform -- uid: 50 - type: WallReinforced - components: - - pos: -8.5,-2.5 - parent: 0 - type: Transform -- uid: 51 - type: WallReinforced - components: - - pos: -12.5,-3.5 - parent: 0 - type: Transform -- uid: 52 - type: WallReinforced - components: - - pos: -12.5,-2.5 - parent: 0 - type: Transform -- uid: 53 - type: WallReinforced - components: - - pos: -12.5,-1.5 - parent: 0 - type: Transform -- uid: 54 - type: WallReinforced - components: - - pos: -12.5,-0.5 - parent: 0 - type: Transform -- uid: 55 - type: WallReinforced - components: - - pos: -12.5,0.5 - parent: 0 - type: Transform -- uid: 56 - type: WallReinforced - components: - - pos: -12.5,1.5 - parent: 0 - type: Transform -- uid: 57 - type: WallReinforced - components: - - pos: -12.5,2.5 - parent: 0 - type: Transform -- uid: 58 - type: WallReinforced - components: - - pos: -12.5,3.5 - parent: 0 - type: Transform -- uid: 59 - type: WallReinforced - components: - - pos: -7.5,3.5 - parent: 0 - type: Transform -- uid: 60 - type: WallReinforced - components: - - pos: -8.5,3.5 - parent: 0 - type: Transform -- uid: 61 - type: WallReinforced - components: - - pos: -9.5,3.5 - parent: 0 - type: Transform -- uid: 62 - type: WallReinforced - components: - - pos: -11.5,3.5 - parent: 0 - type: Transform -- uid: 63 - type: WallReinforced - components: - - pos: -7.5,2.5 - parent: 0 - type: Transform -- uid: 64 - type: Grille - components: - - pos: -2.5,12.5 - parent: 0 - type: Transform -- uid: 65 - type: Grille - components: - - pos: -2.5,15.5 - parent: 0 - type: Transform -- uid: 66 - type: WallSolid - components: - - pos: -6.5,16.5 - parent: 0 - type: Transform -- uid: 67 - type: WallSolid - components: - - pos: -5.5,16.5 - parent: 0 - type: Transform -- uid: 68 - type: Grille - components: - - pos: -4.5,16.5 - parent: 0 - type: Transform -- uid: 69 - type: WallSolid - components: - - pos: -7.5,16.5 - parent: 0 - type: Transform -- uid: 70 - type: Grille - components: - - pos: -7.5,12.5 - parent: 0 - type: Transform -- uid: 71 - type: Grille - components: - - pos: -4.5,12.5 - parent: 0 - type: Transform -- uid: 72 - type: BarSignEngineChange - components: - - pos: -6.5,16.5 - parent: 0 - type: Transform -- uid: 73 - type: WallSolid - components: - - pos: -9.5,22.5 - parent: 0 - type: Transform -- uid: 74 - type: WallSolid - components: - - pos: -9.5,23.5 - parent: 0 - type: Transform -- uid: 75 - type: WallSolid - components: - - pos: -10.5,23.5 - parent: 0 - type: Transform -- uid: 76 - type: WallSolid - components: - - pos: -22.5,19.5 - parent: 0 - type: Transform -- uid: 77 - type: WallSolid - components: - - pos: -21.5,18.5 - parent: 0 - type: Transform -- uid: 78 - type: WallSolid - components: - - pos: -22.5,18.5 - parent: 0 - type: Transform -- uid: 79 - type: WallSolid - components: - - pos: -22.5,21.5 - parent: 0 - type: Transform -- uid: 80 - type: WallSolid - components: - - pos: -23.5,18.5 - parent: 0 - type: Transform -- uid: 81 - type: WallSolid - components: - - pos: -21.5,13.5 - parent: 0 - type: Transform -- uid: 82 - type: WallSolid - components: - - pos: -23.5,17.5 - parent: 0 - type: Transform -- uid: 83 - type: WallSolid - components: - - pos: -23.5,16.5 - parent: 0 - type: Transform -- uid: 84 - type: WallSolid - components: - - pos: -23.5,15.5 - parent: 0 - type: Transform -- uid: 85 - type: WallSolid - components: - - pos: -23.5,14.5 - parent: 0 - type: Transform -- uid: 86 - type: WallSolid - components: - - pos: -23.5,13.5 - parent: 0 - type: Transform -- uid: 87 - type: WallSolid - components: - - pos: -22.5,13.5 - parent: 0 - type: Transform -- uid: 88 - type: WallSolid - components: - - pos: -15.5,10.5 - parent: 0 - type: Transform -- uid: 89 - type: WallSolid - components: - - pos: -15.5,11.5 - parent: 0 - type: Transform -- uid: 90 - type: WallSolid - components: - - pos: -15.5,12.5 - parent: 0 - type: Transform -- uid: 91 - type: Grille - components: - - pos: -2.5,36.5 - parent: 0 - type: Transform -- uid: 92 - type: WallSolid - components: - - pos: -14.5,11.5 - parent: 0 - type: Transform -- uid: 93 - type: WallSolid - components: - - pos: -13.5,11.5 - parent: 0 - type: Transform -- uid: 94 - type: WallSolid - components: - - pos: -12.5,11.5 - parent: 0 - type: Transform -- uid: 95 - type: WallSolid - components: - - pos: -11.5,11.5 - parent: 0 - type: Transform -- uid: 96 - type: WallSolid - components: - - pos: -10.5,11.5 - parent: 0 - type: Transform -- uid: 97 - type: WallSolid - components: - - pos: -16.5,8.5 - parent: 0 - type: Transform -- uid: 98 - type: WallSolid - components: - - pos: -17.5,8.5 - parent: 0 - type: Transform -- uid: 99 - type: WallSolid - components: - - pos: -18.5,8.5 - parent: 0 - type: Transform -- uid: 100 - type: WallSolid - components: - - pos: -19.5,8.5 - parent: 0 - type: Transform -- uid: 101 - type: WallSolid - components: - - pos: -20.5,8.5 - parent: 0 - type: Transform -- uid: 102 - type: WallSolid - components: - - pos: -20.5,9.5 - parent: 0 - type: Transform -- uid: 103 - type: WallSolid - components: - - pos: -20.5,10.5 - parent: 0 - type: Transform -- uid: 104 - type: WallSolid - components: - - pos: -20.5,11.5 - parent: 0 - type: Transform -- uid: 105 - type: WallSolid - components: - - pos: -20.5,12.5 - parent: 0 - type: Transform -- uid: 106 - type: WallSolid - components: - - pos: -20.5,13.5 - parent: 0 - type: Transform -- uid: 107 - type: WallSolid - components: - - pos: -22.5,22.5 - parent: 0 - type: Transform -- uid: 108 - type: WallSolid - components: - - pos: -22.5,23.5 - parent: 0 - type: Transform -- uid: 109 - type: WallSolid - components: - - pos: -12.5,23.5 - parent: 0 - type: Transform -- uid: 110 - type: WallSolid - components: - - pos: -12.5,24.5 - parent: 0 - type: Transform -- uid: 111 - type: WallSolid - components: - - pos: -12.5,26.5 - parent: 0 - type: Transform -- uid: 112 - type: WallSolid - components: - - pos: -12.5,27.5 - parent: 0 - type: Transform -- uid: 113 - type: WallSolid - components: - - pos: -11.5,27.5 - parent: 0 - type: Transform -- uid: 114 - type: WallSolid - components: - - pos: -21.5,23.5 - parent: 0 - type: Transform -- uid: 115 - type: WallSolid - components: - - pos: -20.5,23.5 - parent: 0 - type: Transform -- uid: 116 - type: WallSolid - components: - - pos: -19.5,23.5 - parent: 0 - type: Transform -- uid: 117 - type: WallSolid - components: - - pos: -20.5,24.5 - parent: 0 - type: Transform -- uid: 118 - type: WallSolid - components: - - pos: -20.5,25.5 - parent: 0 - type: Transform -- uid: 119 - type: WallSolid - components: - - pos: -20.5,26.5 - parent: 0 - type: Transform -- uid: 120 - type: WallSolid - components: - - pos: -20.5,27.5 - parent: 0 - type: Transform -- uid: 121 - type: WallSolid - components: - - pos: -19.5,27.5 - parent: 0 - type: Transform -- uid: 122 - type: WallSolid - components: - - pos: -18.5,27.5 - parent: 0 - type: Transform -- uid: 123 - type: WallSolid - components: - - pos: -17.5,27.5 - parent: 0 - type: Transform -- uid: 124 - type: CableMV - components: - - pos: -14.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 125 - type: WallSolid - components: - - pos: -13.5,27.5 - parent: 0 - type: Transform -- uid: 126 - type: WallSolid - components: - - pos: -3.5,23.5 - parent: 0 - type: Transform -- uid: 127 - type: WallSolid - components: - - pos: -2.5,23.5 - parent: 0 - type: Transform -- uid: 128 - type: WallSolid - components: - - pos: -2.5,24.5 - parent: 0 - type: Transform -- uid: 129 - type: WallSolid - components: - - pos: -2.5,25.5 - parent: 0 - type: Transform -- uid: 130 - type: WallSolid - components: - - pos: -3.5,25.5 - parent: 0 - type: Transform -- uid: 131 - type: WallSolid - components: - - pos: -4.5,25.5 - parent: 0 - type: Transform -- uid: 132 - type: WallSolid - components: - - pos: -5.5,25.5 - parent: 0 - type: Transform -- uid: 133 - type: WallSolid - components: - - pos: -7.5,25.5 - parent: 0 - type: Transform -- uid: 134 - type: WallSolid - components: - - pos: -7.5,26.5 - parent: 0 - type: Transform -- uid: 135 - type: WallSolid - components: - - pos: -7.5,27.5 - parent: 0 - type: Transform -- uid: 136 - type: WallSolid - components: - - pos: -2.5,26.5 - parent: 0 - type: Transform -- uid: 137 - type: WallSolid - components: - - pos: -2.5,27.5 - parent: 0 - type: Transform -- uid: 138 - type: WallSolid - components: - - pos: -2.5,28.5 - parent: 0 - type: Transform -- uid: 139 - type: WallSolid - components: - - pos: -2.5,29.5 - parent: 0 - type: Transform -- uid: 140 - type: WallSolid - components: - - pos: -2.5,30.5 - parent: 0 - type: Transform -- uid: 141 - type: WallSolid - components: - - pos: -3.5,30.5 - parent: 0 - type: Transform -- uid: 142 - type: WallSolid - components: - - pos: -4.5,30.5 - parent: 0 - type: Transform -- uid: 143 - type: WallSolid - components: - - pos: -5.5,30.5 - parent: 0 - type: Transform -- uid: 144 - type: WallSolid - components: - - pos: -6.5,30.5 - parent: 0 - type: Transform -- uid: 145 - type: WallSolid - components: - - pos: -7.5,30.5 - parent: 0 - type: Transform -- uid: 146 - type: WallSolid - components: - - pos: -7.5,29.5 - parent: 0 - type: Transform -- uid: 147 - type: WallSolid - components: - - pos: -2.5,33.5 - parent: 0 - type: Transform -- uid: 148 - type: WallSolid - components: - - pos: -3.5,33.5 - parent: 0 - type: Transform -- uid: 149 - type: WallSolid - components: - - pos: -4.5,33.5 - parent: 0 - type: Transform -- uid: 150 - type: WallSolid - components: - - pos: -5.5,33.5 - parent: 0 - type: Transform -- uid: 151 - type: WallSolid - components: - - pos: -6.5,33.5 - parent: 0 - type: Transform -- uid: 152 - type: WallSolid - components: - - pos: -7.5,33.5 - parent: 0 - type: Transform -- uid: 153 - type: WallSolid - components: - - pos: -11.5,28.5 - parent: 0 - type: Transform -- uid: 154 - type: WallSolid - components: - - pos: -11.5,31.5 - parent: 0 - type: Transform -- uid: 155 - type: WallSolid - components: - - pos: -11.5,30.5 - parent: 0 - type: Transform -- uid: 156 - type: WallSolid - components: - - pos: -11.5,33.5 - parent: 0 - type: Transform -- uid: 157 - type: WallSolid - components: - - pos: -12.5,31.5 - parent: 0 - type: Transform -- uid: 158 - type: WallSolid - components: - - pos: -13.5,31.5 - parent: 0 - type: Transform -- uid: 159 - type: WallSolid - components: - - pos: -14.5,31.5 - parent: 0 - type: Transform -- uid: 160 - type: WallSolid - components: - - pos: -16.5,31.5 - parent: 0 - type: Transform -- uid: 161 - type: WallSolid - components: - - pos: -17.5,31.5 - parent: 0 - type: Transform -- uid: 162 - type: WallSolid - components: - - pos: -18.5,28.5 - parent: 0 - type: Transform -- uid: 163 - type: WallSolid - components: - - pos: -18.5,29.5 - parent: 0 - type: Transform -- uid: 164 - type: WallSolid - components: - - pos: -18.5,31.5 - parent: 0 - type: Transform -- uid: 165 - type: AirlockMaintBarLocked - components: - - pos: -18.5,30.5 - parent: 0 - type: Transform -- uid: 166 - type: WallSolid - components: - - pos: -11.5,34.5 - parent: 0 - type: Transform -- uid: 167 - type: ReinforcedWindow - components: - - pos: -12.5,34.5 - parent: 0 - type: Transform -- uid: 168 - type: WallSolid - components: - - pos: -13.5,34.5 - parent: 0 - type: Transform -- uid: 169 - type: WallSolid - components: - - pos: -13.5,35.5 - parent: 0 - type: Transform -- uid: 170 - type: WallSolid - components: - - pos: -13.5,36.5 - parent: 0 - type: Transform -- uid: 171 - type: WallSolid - components: - - pos: -17.5,33.5 - parent: 0 - type: Transform -- uid: 172 - type: WallSolid - components: - - pos: -17.5,34.5 - parent: 0 - type: Transform -- uid: 173 - type: WallSolid - components: - - pos: -17.5,35.5 - parent: 0 - type: Transform -- uid: 174 - type: WallSolid - components: - - pos: -17.5,36.5 - parent: 0 - type: Transform -- uid: 175 - type: WallSolid - components: - - pos: -16.5,36.5 - parent: 0 - type: Transform -- uid: 176 - type: WallSolid - components: - - pos: -14.5,36.5 - parent: 0 - type: Transform -- uid: 177 - type: TableReinforced - components: - - pos: -9.5,21.5 - parent: 0 - type: Transform -- uid: 178 - type: TableReinforced - components: - - pos: -9.5,20.5 - parent: 0 - type: Transform -- uid: 179 - type: TableReinforced - components: - - pos: -9.5,19.5 - parent: 0 - type: Transform -- uid: 180 - type: TableReinforced - components: - - pos: -9.5,18.5 - parent: 0 - type: Transform -- uid: 181 - type: TableReinforced - components: - - pos: -3.5,18.5 - parent: 0 - type: Transform -- uid: 182 - type: TableReinforced - components: - - pos: -3.5,19.5 - parent: 0 - type: Transform -- uid: 183 - type: TableReinforced - components: - - pos: -3.5,20.5 - parent: 0 - type: Transform -- uid: 184 - type: TableReinforced - components: - - pos: -3.5,21.5 - parent: 0 - type: Transform -- uid: 185 - type: TableReinforced - components: - - pos: -3.5,22.5 - parent: 0 - type: Transform -- uid: 186 - type: TableReinforced - components: - - pos: -13.5,23.5 - parent: 0 - type: Transform -- uid: 187 - type: TableReinforced - components: - - pos: -14.5,23.5 - parent: 0 - type: Transform -- uid: 188 - type: TableReinforced - components: - - pos: -15.5,23.5 - parent: 0 - type: Transform -- uid: 189 - type: TableReinforced - components: - - pos: -16.5,23.5 - parent: 0 - type: Transform -- uid: 190 - type: TableReinforced - components: - - pos: -17.5,23.5 - parent: 0 - type: Transform -- uid: 191 - type: TableReinforced - components: - - pos: -18.5,23.5 - parent: 0 - type: Transform -- uid: 192 - type: Grille - components: - - pos: -11.5,23.5 - parent: 0 - type: Transform -- uid: 193 - type: Grille - components: - - pos: -2.5,31.5 - parent: 0 - type: Transform -- uid: 194 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -18.5,22.5 - parent: 0 - type: Transform -- uid: 195 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -17.5,22.5 - parent: 0 - type: Transform -- uid: 196 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -16.5,22.5 - parent: 0 - type: Transform -- uid: 197 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -15.5,22.5 - parent: 0 - type: Transform -- uid: 198 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -14.5,22.5 - parent: 0 - type: Transform -- uid: 199 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -13.5,22.5 - parent: 0 - type: Transform -- uid: 200 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: -10.5,18.5 - parent: 0 - type: Transform -- uid: 201 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: -10.5,19.5 - parent: 0 - type: Transform -- uid: 202 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: -10.5,20.5 - parent: 0 - type: Transform -- uid: 203 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: -10.5,21.5 - parent: 0 - type: Transform -- uid: 204 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -2.5,18.5 - parent: 0 - type: Transform -- uid: 205 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -2.5,19.5 - parent: 0 - type: Transform -- uid: 206 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -2.5,20.5 - parent: 0 - type: Transform -- uid: 207 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -2.5,21.5 - parent: 0 - type: Transform -- uid: 208 - type: DeskBell - components: - - pos: -3.5,22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 209 - type: TableCarpet - components: - - pos: -18.5,20.5 - parent: 0 - type: Transform -- uid: 210 - type: TableCarpet - components: - - pos: -17.5,20.5 - parent: 0 - type: Transform -- uid: 211 - type: TableCarpet - components: - - pos: -17.5,19.5 - parent: 0 - type: Transform -- uid: 212 - type: TableCarpet - components: - - pos: -18.5,19.5 - parent: 0 - type: Transform -- uid: 213 - type: TableWood - components: - - pos: -13.5,20.5 - parent: 0 - type: Transform -- uid: 214 - type: TableWood - components: - - pos: -18.5,16.5 - parent: 0 - type: Transform -- uid: 215 - type: TableWood - components: - - pos: -13.5,19.5 - parent: 0 - type: Transform -- uid: 216 - type: TableWood - components: - - pos: -17.5,16.5 - parent: 0 - type: Transform -- uid: 217 - type: TableWood - components: - - pos: -16.5,16.5 - parent: 0 - type: Transform -- uid: 218 - type: TableWood - components: - - pos: -15.5,16.5 - parent: 0 - type: Transform -- uid: 219 - type: TableWood - components: - - pos: -14.5,16.5 - parent: 0 - type: Transform -- uid: 220 - type: Stool - components: - - pos: -18.5,17.5 - parent: 0 - type: Transform -- uid: 221 - type: Stool - components: - - pos: -17.5,17.5 - parent: 0 - type: Transform -- uid: 222 - type: Stool - components: - - pos: -16.5,17.5 - parent: 0 - type: Transform -- uid: 223 - type: Stool - components: - - pos: -15.5,17.5 - parent: 0 - type: Transform -- uid: 224 - type: Stool - components: - - pos: -14.5,17.5 - parent: 0 - type: Transform -- uid: 225 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -14.5,15.5 - parent: 0 - type: Transform -- uid: 226 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -15.5,15.5 - parent: 0 - type: Transform -- uid: 227 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -16.5,15.5 - parent: 0 - type: Transform -- uid: 228 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -17.5,15.5 - parent: 0 - type: Transform -- uid: 229 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -18.5,15.5 - parent: 0 - type: Transform -- uid: 230 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: -19.5,19.5 - parent: 0 - type: Transform -- uid: 231 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: -19.5,20.5 - parent: 0 - type: Transform -- uid: 232 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -16.5,20.5 - parent: 0 - type: Transform -- uid: 233 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -16.5,19.5 - parent: 0 - type: Transform -- uid: 234 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -12.5,19.5 - parent: 0 - type: Transform -- uid: 235 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -12.5,20.5 - parent: 0 - type: Transform -- uid: 236 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: -14.5,19.5 - parent: 0 - type: Transform -- uid: 237 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: -14.5,20.5 - parent: 0 - type: Transform -- uid: 238 - type: WallSolid - components: - - pos: 2.5,7.5 - parent: 0 - type: Transform -- uid: 239 - type: WallSolid - components: - - pos: 1.5,7.5 - parent: 0 - type: Transform -- uid: 240 - type: WallSolid - components: - - pos: 1.5,8.5 - parent: 0 - type: Transform -- uid: 241 - type: WallSolid - components: - - pos: 1.5,9.5 - parent: 0 - type: Transform -- uid: 242 - type: WallSolid - components: - - pos: 1.5,10.5 - parent: 0 - type: Transform -- uid: 243 - type: WallSolid - components: - - pos: 1.5,11.5 - parent: 0 - type: Transform -- uid: 244 - type: WallSolid - components: - - pos: 1.5,13.5 - parent: 0 - type: Transform -- uid: 245 - type: WallSolid - components: - - pos: 1.5,14.5 - parent: 0 - type: Transform -- uid: 246 - type: WallSolid - components: - - pos: 2.5,14.5 - parent: 0 - type: Transform -- uid: 247 - type: WallSolid - components: - - pos: 4.5,14.5 - parent: 0 - type: Transform -- uid: 248 - type: WallSolid - components: - - pos: 5.5,14.5 - parent: 0 - type: Transform -- uid: 249 - type: WallSolid - components: - - pos: 6.5,14.5 - parent: 0 - type: Transform -- uid: 250 - type: WallSolid - components: - - pos: 5.5,7.5 - parent: 0 - type: Transform -- uid: 251 - type: WallSolid - components: - - pos: 6.5,7.5 - parent: 0 - type: Transform -- uid: 252 - type: WallSolid - components: - - pos: 6.5,8.5 - parent: 0 - type: Transform -- uid: 253 - type: WallSolid - components: - - pos: 6.5,9.5 - parent: 0 - type: Transform -- uid: 254 - type: WallSolid - components: - - pos: 6.5,11.5 - parent: 0 - type: Transform -- uid: 255 - type: WallSolid - components: - - pos: 7.5,11.5 - parent: 0 - type: Transform -- uid: 256 - type: WallSolid - components: - - pos: 7.5,12.5 - parent: 0 - type: Transform -- uid: 257 - type: WallSolid - components: - - pos: 7.5,13.5 - parent: 0 - type: Transform -- uid: 258 - type: WallSolid - components: - - pos: 7.5,14.5 - parent: 0 - type: Transform -- uid: 259 - type: Grille - components: - - pos: -2.5,39.5 - parent: 0 - type: Transform -- uid: 260 - type: WallSolid - components: - - pos: -2.5,37.5 - parent: 0 - type: Transform -- uid: 261 - type: WallSolid - components: - - pos: -2.5,38.5 - parent: 0 - type: Transform -- uid: 262 - type: WallSolid - components: - - pos: -2.5,40.5 - parent: 0 - type: Transform -- uid: 263 - type: WallSolid - components: - - pos: -2.5,41.5 - parent: 0 - type: Transform -- uid: 264 - type: WallSolid - components: - - pos: -2.5,42.5 - parent: 0 - type: Transform -- uid: 265 - type: WallReinforced - components: - - pos: -2.5,43.5 - parent: 0 - type: Transform -- uid: 266 - type: WallSolid - components: - - pos: -3.5,43.5 - parent: 0 - type: Transform -- uid: 267 - type: WallSolid - components: - - pos: -4.5,43.5 - parent: 0 - type: Transform -- uid: 268 - type: WallSolid - components: - - pos: -5.5,43.5 - parent: 0 - type: Transform -- uid: 269 - type: WallSolid - components: - - pos: -6.5,41.5 - parent: 0 - type: Transform -- uid: 270 - type: WallSolid - components: - - pos: -6.5,42.5 - parent: 0 - type: Transform -- uid: 271 - type: WallSolid - components: - - pos: -6.5,43.5 - parent: 0 - type: Transform -- uid: 272 - type: WallSolid - components: - - pos: -7.5,43.5 - parent: 0 - type: Transform -- uid: 273 - type: WallSolid - components: - - pos: -9.5,43.5 - parent: 0 - type: Transform -- uid: 274 - type: WallSolid - components: - - pos: -10.5,43.5 - parent: 0 - type: Transform -- uid: 275 - type: WallSolid - components: - - pos: -12.5,43.5 - parent: 0 - type: Transform -- uid: 276 - type: WallSolid - components: - - pos: -13.5,43.5 - parent: 0 - type: Transform -- uid: 277 - type: WallSolid - components: - - pos: -13.5,37.5 - parent: 0 - type: Transform -- uid: 278 - type: WallSolid - components: - - pos: -13.5,38.5 - parent: 0 - type: Transform -- uid: 279 - type: WallSolid - components: - - pos: -13.5,40.5 - parent: 0 - type: Transform -- uid: 280 - type: WallSolid - components: - - pos: -13.5,41.5 - parent: 0 - type: Transform -- uid: 281 - type: WallSolid - components: - - pos: -13.5,42.5 - parent: 0 - type: Transform -- uid: 282 - type: WallSolid - components: - - pos: -17.5,37.5 - parent: 0 - type: Transform -- uid: 283 - type: AirlockMaintHydroLocked - components: - - pos: -15.5,36.5 - parent: 0 - type: Transform -- uid: 284 - type: WallSolid - components: - - pos: -17.5,39.5 - parent: 0 - type: Transform -- uid: 285 - type: WallSolid - components: - - pos: -17.5,40.5 - parent: 0 - type: Transform -- uid: 286 - type: WallSolid - components: - - pos: -17.5,41.5 - parent: 0 - type: Transform -- uid: 287 - type: WallSolid - components: - - pos: -14.5,43.5 - parent: 0 - type: Transform -- uid: 288 - type: WallSolid - components: - - pos: -15.5,43.5 - parent: 0 - type: Transform -- uid: 289 - type: WallSolid - components: - - pos: -16.5,42.5 - parent: 0 - type: Transform -- uid: 290 - type: WallSolid - components: - - pos: -16.5,43.5 - parent: 0 - type: Transform -- uid: 291 - type: WallSolid - components: - - pos: -17.5,42.5 - parent: 0 - type: Transform -- uid: 292 - type: WallSolid - components: - - pos: -18.5,42.5 - parent: 0 - type: Transform -- uid: 293 - type: Grille - components: - - pos: -11.5,43.5 - parent: 0 - type: Transform -- uid: 294 - type: Grille - components: - - pos: -8.5,43.5 - parent: 0 - type: Transform -- uid: 295 - type: Grille - components: - - pos: -1.5,3.5 - parent: 0 - type: Transform -- uid: 296 - type: Grille - components: - - pos: -2.5,3.5 - parent: 0 - type: Transform -- uid: 297 - type: Grille - components: - - pos: 1.5,3.5 - parent: 0 - type: Transform -- uid: 298 - type: Grille - components: - - pos: 0.5,3.5 - parent: 0 - type: Transform -- uid: 299 - type: Grille - components: - - pos: -11.5,-2.5 - parent: 0 - type: Transform -- uid: 300 - type: Grille - components: - - pos: -9.5,-2.5 - parent: 0 - type: Transform -- uid: 301 - type: Grille - components: - - pos: -7.5,-0.5 - parent: 0 - type: Transform -- uid: 302 - type: Grille - components: - - pos: -7.5,0.5 - parent: 0 - type: Transform -- uid: 303 - type: Grille - components: - - pos: -7.5,1.5 - parent: 0 - type: Transform -- uid: 304 - type: WindowReinforcedDirectional - components: - - pos: -8.5,15.5 - parent: 0 - type: Transform -- uid: 305 - type: WindowReinforcedDirectional - components: - - pos: -7.5,15.5 - parent: 0 - type: Transform -- uid: 306 - type: WindowReinforcedDirectional - components: - - pos: -3.5,15.5 - parent: 0 - type: Transform -- uid: 307 - type: WindowReinforcedDirectional - components: - - pos: -4.5,15.5 - parent: 0 - type: Transform -- uid: 308 - type: WindowReinforcedDirectional - components: - - pos: -5.5,15.5 - parent: 0 - type: Transform -- uid: 309 - type: Windoor - components: - - pos: -6.5,15.5 - parent: 0 - type: Transform -- uid: 310 - type: Window - components: - - pos: -7.5,12.5 - parent: 0 - type: Transform -- uid: 311 - type: Window - components: - - pos: -4.5,12.5 - parent: 0 - type: Transform -- uid: 312 - type: Window - components: - - pos: -2.5,12.5 - parent: 0 - type: Transform -- uid: 313 - type: Window - components: - - pos: -2.5,15.5 - parent: 0 - type: Transform -- uid: 314 - type: ReinforcedWindow - components: - - pos: -8.5,16.5 - parent: 0 - type: Transform -- uid: 315 - type: ReinforcedWindow - components: - - pos: -4.5,16.5 - parent: 0 - type: Transform -- uid: 316 - type: ReinforcedWindow - components: - - pos: -11.5,23.5 - parent: 0 - type: Transform -- uid: 317 - type: ReinforcedWindow - components: - - pos: -15.5,13.5 - parent: 0 - type: Transform -- uid: 318 - type: ReinforcedWindow - components: - - pos: -2.5,36.5 - parent: 0 - type: Transform -- uid: 319 - type: ReinforcedWindow - components: - - pos: -2.5,39.5 - parent: 0 - type: Transform -- uid: 320 - type: ReinforcedWindow - components: - - pos: -8.5,43.5 - parent: 0 - type: Transform -- uid: 321 - type: ReinforcedWindow - components: - - pos: -11.5,43.5 - parent: 0 - type: Transform -- uid: 322 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -0.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 323 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 324 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 325 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 326 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 327 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 328 - type: GasPipeTJunction - components: - - pos: -5.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 329 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 330 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 331 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 332 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 333 - type: GasPipeFourway - components: - - pos: -1.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 334 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 335 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 336 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 337 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 338 - type: GasPipeTJunction - components: - - pos: -6.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 339 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 340 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 341 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 342 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 343 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -10.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 344 - type: GasPipeStraight - components: - - pos: -5.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 345 - type: GasPipeStraight - components: - - pos: -5.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 346 - type: GasPipeStraight - components: - - pos: -6.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 347 - type: GasPipeStraight - components: - - pos: -6.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 348 - type: GasPipeStraight - components: - - pos: -6.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 349 - type: GasPipeStraight - components: - - pos: -1.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 350 - type: GasPipeStraight - components: - - pos: -1.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 351 - type: GasPipeStraight - components: - - pos: -1.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 352 - type: GasPipeStraight - components: - - pos: -1.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 353 - type: GasPipeStraight - components: - - pos: -1.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 354 - type: GasPipeStraight - components: - - pos: -1.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 355 - type: GasPipeStraight - components: - - pos: -1.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 356 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 0.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 357 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -3.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 358 - type: GasPipeBend - components: - - pos: -3.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 359 - type: GasPipeTJunction - components: - - pos: -4.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 360 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 361 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 362 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 363 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 364 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 365 - type: GasPipeTJunction - components: - - pos: -10.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 366 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 367 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 368 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 369 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -14.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 370 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 371 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 372 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -14.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 373 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -10.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 374 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 375 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 376 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 377 - type: GasVentScrubber - components: - - pos: -10.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 378 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -6.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 379 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -11.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 380 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -11.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 381 - type: GasPipeTJunction - components: - - pos: -12.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 382 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 383 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 384 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 385 - type: GasPipeStraight - components: - - pos: -16.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 386 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -16.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 387 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -16.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 388 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -12.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 389 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -20.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 390 - type: GasPipeTJunction - components: - - pos: -11.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 391 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 392 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 393 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 394 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 395 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 396 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 397 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 398 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 399 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 400 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 401 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 402 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 403 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 404 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 405 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 406 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -8.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 407 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 408 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 409 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 410 - type: GasPipeTJunction - components: - - pos: -8.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 411 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -6.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 412 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 413 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 414 - type: GasPipeStraight - components: - - pos: -6.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 415 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 416 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -10.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 417 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -11.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 418 - type: GasPipeBend - components: - - pos: -11.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 419 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 420 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -4.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 421 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -13.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 422 - type: GasVentScrubber - components: - - pos: -6.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 423 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -8.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 424 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -5.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 425 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 426 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 427 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 428 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 429 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 430 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 431 - type: GasPipeFourway - components: - - pos: -10.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 432 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 433 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 434 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 435 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 436 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 437 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 438 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 439 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 440 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 441 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 442 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -19.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 443 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -19.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 444 - type: GasPipeStraight - components: - - pos: -19.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 445 - type: GasPipeStraight - components: - - pos: -20.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 446 - type: GasPipeStraight - components: - - pos: -20.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 447 - type: GasPipeStraight - components: - - pos: -20.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 448 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -20.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 449 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -20.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 450 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 451 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -6.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 452 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -20.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 453 - type: GasVentPump - components: - - pos: -10.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 454 - type: GasPipeBend - components: - - pos: -18.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 455 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 456 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 457 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 458 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 459 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 460 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -18.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 461 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -18.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 462 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 463 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 464 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 465 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 466 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 467 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 468 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 469 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 470 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 471 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 472 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 473 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 474 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 475 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 476 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 477 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 478 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 479 - type: GasPipeTJunction - components: - - pos: 23.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 480 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 481 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 482 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 483 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 484 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 485 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 486 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 487 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 488 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 489 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -10.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 490 - type: GasPipeStraight - components: - - pos: -10.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 491 - type: GasPipeStraight - components: - - pos: -10.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 492 - type: GasPipeStraight - components: - - pos: -10.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 493 - type: GasPipeStraight - components: - - pos: -10.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 494 - type: GasPipeStraight - components: - - pos: -10.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 495 - type: GasPipeStraight - components: - - pos: -10.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 496 - type: GasPipeTJunction - components: - - pos: -9.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 497 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 498 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 499 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 500 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 501 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 502 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 503 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 504 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 505 - type: GasPipeTJunction - components: - - pos: -0.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 506 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 507 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 508 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 509 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 510 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 511 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 512 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 513 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 514 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 515 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 516 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 517 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 518 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 519 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 520 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 521 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 522 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 523 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 524 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 525 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 526 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 527 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 528 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 529 - type: GasPipeFourway - components: - - pos: 0.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 530 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -9.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 531 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -10.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 532 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -15.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 533 - type: GasPipeStraight - components: - - pos: -15.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 534 - type: GasPipeStraight - components: - - pos: -15.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 535 - type: GasPipeBend - components: - - pos: -15.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 536 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -16.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 537 - type: GasVentScrubber - components: - - pos: -16.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 538 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -15.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 539 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 540 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 541 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 542 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 543 - type: GasPipeStraight - components: - - pos: -8.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 544 - type: GasPipeStraight - components: - - pos: -8.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 545 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -8.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 546 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -8.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 547 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 548 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 549 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 550 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 551 - type: GasPipeBend - components: - - pos: -4.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 552 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -4.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 553 - type: GasPipeTJunction - components: - - pos: -9.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 554 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 555 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 556 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 557 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 558 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 559 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 560 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -16.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 561 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -16.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 562 - type: GasPipeStraight - components: - - pos: -16.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 563 - type: GasPipeStraight - components: - - pos: -16.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 564 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 565 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -15.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 566 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -16.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 567 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -18.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 568 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -9.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 569 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -14.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 570 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -15.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 571 - type: GasVentPump - components: - - pos: -11.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 572 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -4.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 573 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 574 - type: GasPipeBend - components: - - pos: -8.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 575 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -11.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 576 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 577 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 578 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 579 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 580 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 581 - type: GasPipeStraight - components: - - pos: -8.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 582 - type: GasPipeStraight - components: - - pos: -8.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 583 - type: GasPipeStraight - components: - - pos: -8.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 584 - type: GasPipeStraight - components: - - pos: -8.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 585 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 586 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 587 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -11.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 588 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -4.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 589 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -10.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 590 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -10.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 591 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 592 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 593 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 594 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 595 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 596 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 597 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 598 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 599 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 600 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 601 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -11.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 602 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -15.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 603 - type: GasPipeStraight - components: - - pos: -15.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 604 - type: GasPipeStraight - components: - - pos: -15.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 605 - type: GasPipeStraight - components: - - pos: -15.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 606 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 607 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 608 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 609 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -7.5,33.5 - parent: 0 - type: Transform - - devices: - - 631 - - 634 - - 633 - - 664 - - 632 - - 572 - - 588 - - 571 - - 587 - type: DeviceList -- uid: 610 - type: GasVentPump - components: - - pos: -15.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 611 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -5.5,30.5 - parent: 0 - type: Transform - - devices: - - 665 - - 629 - - invalid - - 653 - - 652 - - 530 - - 568 - type: DeviceList -- uid: 612 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -9.5,23.5 - parent: 0 - type: Transform - - devices: - - 645 - - 644 - - 643 - - 642 - - 646 - - 647 - - 648 - - 649 - - 650 - - 628 - - 651 - - 653 - - 652 - - 451 - - 423 - - 420 - type: DeviceList -- uid: 613 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -9.5,22.5 - parent: 0 - type: Transform - - devices: - - 654 - - 655 - - 627 - - 641 - - 640 - - 639 - - 638 - - 637 - - 636 - - 642 - - 643 - - 644 - - 645 - - 388 - - 452 - - 389 - - 453 - type: DeviceList -- uid: 614 - type: AirAlarm - components: - - pos: -17.5,27.5 - parent: 0 - type: Transform -- uid: 615 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -13.5,31.5 - parent: 0 - type: Transform - - devices: - - 569 - - 537 - type: DeviceList -- uid: 616 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -15.5,11.5 - parent: 0 - type: Transform -- uid: 617 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -12.5,7.5 - parent: 0 - type: Transform -- uid: 618 - type: GasPipeBend - components: - - pos: -17.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 619 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -17.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 620 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 621 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 622 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -13.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 623 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 624 - type: GasVentPump - components: - - pos: -13.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 625 - type: AirSensor - components: - - pos: -14.5,10.5 - parent: 0 - type: Transform -- uid: 626 - type: AirSensor - components: - - pos: -17.5,9.5 - parent: 0 - type: Transform -- uid: 627 - type: AirSensor - components: - - pos: -20.5,22.5 - parent: 0 - type: Transform -- uid: 628 - type: AirSensor - components: - - pos: -9.5,25.5 - parent: 0 - type: Transform -- uid: 629 - type: AirSensor - components: - - pos: -9.5,32.5 - parent: 0 - type: Transform -- uid: 630 - type: AirSensor - components: - - pos: -16.5,25.5 - parent: 0 - type: Transform -- uid: 631 - type: AirSensor - components: - - pos: -4.5,37.5 - parent: 0 - type: Transform -- uid: 632 - type: FirelockGlass - components: - - pos: -9.5,33.5 - parent: 0 - type: Transform -- uid: 633 - type: FirelockGlass - components: - - pos: -2.5,34.5 - parent: 0 - type: Transform -- uid: 634 - type: FirelockGlass - components: - - pos: -2.5,35.5 - parent: 0 - type: Transform -- uid: 635 - type: Grille - components: - - pos: -12.5,34.5 - parent: 0 - type: Transform -- uid: 636 - type: FirelockGlass - components: - - pos: -13.5,23.5 - parent: 0 - type: Transform -- uid: 637 - type: FirelockGlass - components: - - pos: -14.5,23.5 - parent: 0 - type: Transform -- uid: 638 - type: FirelockGlass - components: - - pos: -15.5,23.5 - parent: 0 - type: Transform -- uid: 639 - type: FirelockGlass - components: - - pos: -16.5,23.5 - parent: 0 - type: Transform -- uid: 640 - type: FirelockGlass - components: - - pos: -17.5,23.5 - parent: 0 - type: Transform -- uid: 641 - type: FirelockGlass - components: - - pos: -18.5,23.5 - parent: 0 - type: Transform -- uid: 642 - type: FirelockGlass - components: - - pos: -9.5,21.5 - parent: 0 - type: Transform -- uid: 643 - type: FirelockGlass - components: - - pos: -9.5,20.5 - parent: 0 - type: Transform -- uid: 644 - type: FirelockGlass - components: - - pos: -9.5,19.5 - parent: 0 - type: Transform -- uid: 645 - type: FirelockGlass - components: - - pos: -9.5,18.5 - parent: 0 - type: Transform -- uid: 646 - type: FirelockGlass - components: - - pos: -3.5,18.5 - parent: 0 - type: Transform -- uid: 647 - type: FirelockGlass - components: - - pos: -3.5,19.5 - parent: 0 - type: Transform -- uid: 648 - type: FirelockGlass - components: - - pos: -3.5,20.5 - parent: 0 - type: Transform -- uid: 649 - type: FirelockGlass - components: - - pos: -3.5,21.5 - parent: 0 - type: Transform -- uid: 650 - type: FirelockGlass - components: - - pos: -3.5,22.5 - parent: 0 - type: Transform -- uid: 651 - type: FirelockGlass - components: - - pos: -12.5,25.5 - parent: 0 - type: Transform -- uid: 652 - type: FirelockGlass - components: - - pos: -9.5,27.5 - parent: 0 - type: Transform -- uid: 653 - type: FirelockGlass - components: - - pos: -10.5,27.5 - parent: 0 - type: Transform -- uid: 654 - type: FirelockGlass - components: - - pos: -9.5,13.5 - parent: 0 - type: Transform -- uid: 655 - type: FirelockGlass - components: - - pos: -9.5,14.5 - parent: 0 - type: Transform -- uid: 656 - type: FirelockGlass - components: - - pos: -2.5,13.5 - parent: 0 - type: Transform -- uid: 657 - type: FirelockGlass - components: - - pos: -2.5,14.5 - parent: 0 - type: Transform -- uid: 658 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -9.5,16.5 - parent: 0 - type: Transform - - devices: - - 654 - - 655 - - 627 - - 641 - - 640 - - 639 - - 638 - - 637 - - 636 - - 642 - - 643 - - 644 - - 645 - type: DeviceList -- uid: 659 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -3.5,12.5 - parent: 0 - type: Transform - - devices: - - 654 - - 655 - - 656 - - 657 - - 378 - - 424 - type: DeviceList -- uid: 660 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -20.5,13.5 - parent: 0 - type: Transform -- uid: 661 - type: FireAlarm - components: - - pos: -3.5,25.5 - parent: 0 - type: Transform - - devices: - - 645 - - 644 - - 643 - - 642 - - 646 - - 647 - - 648 - - 649 - - 650 - - 628 - - 651 - - 653 - - 652 - type: DeviceList -- uid: 662 - type: FireAlarm - components: - - pos: -5.5,33.5 - parent: 0 - type: Transform - - devices: - - 665 - - 629 - - invalid - - 653 - - 652 - type: DeviceList -- uid: 663 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -13.5,35.5 - parent: 0 - type: Transform - - devices: - - 631 - - 634 - - 633 - - 664 - - 632 - - 1358 - type: DeviceList -- uid: 664 - type: FirelockGlass - components: - - pos: -8.5,33.5 - parent: 0 - type: Transform -- uid: 665 - type: FirelockGlass - components: - - pos: -2.5,32.5 - parent: 0 - type: Transform -- uid: 666 - type: Grille - components: - - pos: -15.5,13.5 - parent: 0 - type: Transform -- uid: 667 - type: APCBasic - components: - - pos: -11.5,11.5 - parent: 0 - type: Transform -- uid: 668 - type: APCBasic - components: - - pos: -20.5,23.5 - parent: 0 - type: Transform -- uid: 669 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -10.5,23.5 - parent: 0 - type: Transform -- uid: 670 - type: CableMV - components: - - pos: -14.5,26.5 - parent: 0 - type: Transform -- uid: 671 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -6.5,30.5 - parent: 0 - type: Transform -- uid: 672 - type: APCBasic - components: - - pos: -4.5,30.5 - parent: 0 - type: Transform -- uid: 673 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -4.5,33.5 - parent: 0 - type: Transform -- uid: 674 - type: CableApcExtension - components: - - pos: -20.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 675 - type: CableApcExtension - components: - - pos: -20.5,22.5 - parent: 0 - type: Transform -- uid: 676 - type: CableApcExtension - components: - - pos: -20.5,21.5 - parent: 0 - type: Transform -- uid: 677 - type: CableApcExtension - components: - - pos: -20.5,20.5 - parent: 0 - type: Transform -- uid: 678 - type: CableApcExtension - components: - - pos: -20.5,19.5 - parent: 0 - type: Transform -- uid: 679 - type: CableApcExtension - components: - - pos: -20.5,18.5 - parent: 0 - type: Transform -- uid: 680 - type: CableApcExtension - components: - - pos: -20.5,17.5 - parent: 0 - type: Transform -- uid: 681 - type: CableApcExtension - components: - - pos: -20.5,16.5 - parent: 0 - type: Transform -- uid: 682 - type: CableApcExtension - components: - - pos: -20.5,15.5 - parent: 0 - type: Transform -- uid: 683 - type: CableApcExtension - components: - - pos: -19.5,15.5 - parent: 0 - type: Transform -- uid: 684 - type: CableApcExtension - components: - - pos: -18.5,15.5 - parent: 0 - type: Transform -- uid: 685 - type: CableApcExtension - components: - - pos: -17.5,15.5 - parent: 0 - type: Transform -- uid: 686 - type: CableApcExtension - components: - - pos: -16.5,15.5 - parent: 0 - type: Transform -- uid: 687 - type: CableApcExtension - components: - - pos: -15.5,15.5 - parent: 0 - type: Transform -- uid: 688 - type: CableApcExtension - components: - - pos: -14.5,15.5 - parent: 0 - type: Transform -- uid: 689 - type: CableApcExtension - components: - - pos: -13.5,15.5 - parent: 0 - type: Transform -- uid: 690 - type: CableApcExtension - components: - - pos: -12.5,15.5 - parent: 0 - type: Transform -- uid: 691 - type: CableApcExtension - components: - - pos: -11.5,15.5 - parent: 0 - type: Transform -- uid: 692 - type: CableApcExtension - components: - - pos: -19.5,20.5 - parent: 0 - type: Transform -- uid: 693 - type: CableApcExtension - components: - - pos: -18.5,20.5 - parent: 0 - type: Transform -- uid: 694 - type: CableApcExtension - components: - - pos: -17.5,20.5 - parent: 0 - type: Transform -- uid: 695 - type: CableApcExtension - components: - - pos: -16.5,20.5 - parent: 0 - type: Transform -- uid: 696 - type: CableApcExtension - components: - - pos: -15.5,20.5 - parent: 0 - type: Transform -- uid: 697 - type: CableApcExtension - components: - - pos: -14.5,20.5 - parent: 0 - type: Transform -- uid: 698 - type: CableApcExtension - components: - - pos: -13.5,20.5 - parent: 0 - type: Transform -- uid: 699 - type: CableApcExtension - components: - - pos: -12.5,20.5 - parent: 0 - type: Transform -- uid: 700 - type: CableApcExtension - components: - - pos: -11.5,20.5 - parent: 0 - type: Transform -- uid: 701 - type: CableApcExtension - components: - - pos: -19.5,18.5 - parent: 0 - type: Transform -- uid: 702 - type: CableApcExtension - components: - - pos: -18.5,18.5 - parent: 0 - type: Transform -- uid: 703 - type: CableApcExtension - components: - - pos: -17.5,18.5 - parent: 0 - type: Transform -- uid: 704 - type: CableApcExtension - components: - - pos: -16.5,18.5 - parent: 0 - type: Transform -- uid: 705 - type: CableApcExtension - components: - - pos: -15.5,18.5 - parent: 0 - type: Transform -- uid: 706 - type: CableApcExtension - components: - - pos: -14.5,18.5 - parent: 0 - type: Transform -- uid: 707 - type: CableApcExtension - components: - - pos: -13.5,18.5 - parent: 0 - type: Transform -- uid: 708 - type: CableApcExtension - components: - - pos: -12.5,18.5 - parent: 0 - type: Transform -- uid: 709 - type: CableApcExtension - components: - - pos: -11.5,14.5 - parent: 0 - type: Transform -- uid: 710 - type: CableApcExtension - components: - - pos: -11.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 711 - type: CableApcExtension - components: - - pos: -11.5,10.5 - parent: 0 - type: Transform -- uid: 712 - type: CableApcExtension - components: - - pos: -11.5,9.5 - parent: 0 - type: Transform -- uid: 713 - type: CableApcExtension - components: - - pos: -12.5,9.5 - parent: 0 - type: Transform -- uid: 714 - type: CableApcExtension - components: - - pos: -13.5,9.5 - parent: 0 - type: Transform -- uid: 715 - type: CableApcExtension - components: - - pos: -14.5,9.5 - parent: 0 - type: Transform -- uid: 716 - type: CableApcExtension - components: - - pos: -15.5,9.5 - parent: 0 - type: Transform -- uid: 717 - type: CableApcExtension - components: - - pos: -16.5,9.5 - parent: 0 - type: Transform -- uid: 718 - type: CableApcExtension - components: - - pos: -17.5,9.5 - parent: 0 - type: Transform -- uid: 719 - type: CableApcExtension - components: - - pos: -18.5,9.5 - parent: 0 - type: Transform -- uid: 720 - type: CableApcExtension - components: - - pos: -18.5,10.5 - parent: 0 - type: Transform -- uid: 721 - type: CableApcExtension - components: - - pos: -18.5,11.5 - parent: 0 - type: Transform -- uid: 722 - type: CableApcExtension - components: - - pos: -18.5,12.5 - parent: 0 - type: Transform -- uid: 723 - type: CableApcExtension - components: - - pos: -10.5,14.5 - parent: 0 - type: Transform -- uid: 724 - type: CableApcExtension - components: - - pos: -9.5,14.5 - parent: 0 - type: Transform -- uid: 725 - type: CableApcExtension - components: - - pos: -8.5,14.5 - parent: 0 - type: Transform -- uid: 726 - type: CableApcExtension - components: - - pos: -7.5,14.5 - parent: 0 - type: Transform -- uid: 727 - type: CableApcExtension - components: - - pos: -6.5,14.5 - parent: 0 - type: Transform -- uid: 728 - type: CableApcExtension - components: - - pos: -5.5,14.5 - parent: 0 - type: Transform -- uid: 729 - type: CableApcExtension - components: - - pos: -4.5,14.5 - parent: 0 - type: Transform -- uid: 730 - type: CableApcExtension - components: - - pos: -3.5,14.5 - parent: 0 - type: Transform -- uid: 731 - type: CableApcExtension - components: - - pos: -6.5,13.5 - parent: 0 - type: Transform -- uid: 732 - type: CableApcExtension - components: - - pos: -6.5,12.5 - parent: 0 - type: Transform -- uid: 733 - type: CableApcExtension - components: - - pos: -6.5,11.5 - parent: 0 - type: Transform -- uid: 734 - type: CableApcExtension - components: - - pos: -6.5,10.5 - parent: 0 - type: Transform -- uid: 735 - type: CableApcExtension - components: - - pos: -10.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 736 - type: CableApcExtension - components: - - pos: -10.5,24.5 - parent: 0 - type: Transform -- uid: 737 - type: CableApcExtension - components: - - pos: -10.5,25.5 - parent: 0 - type: Transform -- uid: 738 - type: CableApcExtension - components: - - pos: -10.5,26.5 - parent: 0 - type: Transform -- uid: 739 - type: CableApcExtension - components: - - pos: -9.5,24.5 - parent: 0 - type: Transform -- uid: 740 - type: CableApcExtension - components: - - pos: -8.5,24.5 - parent: 0 - type: Transform -- uid: 741 - type: CableApcExtension - components: - - pos: -7.5,24.5 - parent: 0 - type: Transform -- uid: 742 - type: CableApcExtension - components: - - pos: -6.5,24.5 - parent: 0 - type: Transform -- uid: 743 - type: CableApcExtension - components: - - pos: -5.5,24.5 - parent: 0 - type: Transform -- uid: 744 - type: CableApcExtension - components: - - pos: -6.5,23.5 - parent: 0 - type: Transform -- uid: 745 - type: CableApcExtension - components: - - pos: -6.5,22.5 - parent: 0 - type: Transform -- uid: 746 - type: CableApcExtension - components: - - pos: -6.5,21.5 - parent: 0 - type: Transform -- uid: 747 - type: CableApcExtension - components: - - pos: -6.5,20.5 - parent: 0 - type: Transform -- uid: 748 - type: CableApcExtension - components: - - pos: -6.5,19.5 - parent: 0 - type: Transform -- uid: 749 - type: CableApcExtension - components: - - pos: -6.5,18.5 - parent: 0 - type: Transform -- uid: 750 - type: CableApcExtension - components: - - pos: -5.5,18.5 - parent: 0 - type: Transform -- uid: 751 - type: CableApcExtension - components: - - pos: -7.5,18.5 - parent: 0 - type: Transform -- uid: 752 - type: CableApcExtension - components: - - pos: -7.5,21.5 - parent: 0 - type: Transform -- uid: 753 - type: CableApcExtension - components: - - pos: -5.5,21.5 - parent: 0 - type: Transform -- uid: 754 - type: CableApcExtension - components: - - pos: -4.5,21.5 - parent: 0 - type: Transform -- uid: 755 - type: CableApcExtension - components: - - pos: -4.5,18.5 - parent: 0 - type: Transform -- uid: 756 - type: CableApcExtension - components: - - pos: -8.5,18.5 - parent: 0 - type: Transform -- uid: 757 - type: CableApcExtension - components: - - pos: -8.5,21.5 - parent: 0 - type: Transform -- uid: 758 - type: CableApcExtension - components: - - pos: -4.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 759 - type: CableApcExtension - components: - - pos: -4.5,29.5 - parent: 0 - type: Transform -- uid: 760 - type: CableApcExtension - components: - - pos: -4.5,28.5 - parent: 0 - type: Transform -- uid: 761 - type: CableApcExtension - components: - - pos: -4.5,27.5 - parent: 0 - type: Transform -- uid: 762 - type: CableApcExtension - components: - - pos: -4.5,26.5 - parent: 0 - type: Transform -- uid: 763 - type: CableApcExtension - components: - - pos: -5.5,27.5 - parent: 0 - type: Transform -- uid: 764 - type: CableApcExtension - components: - - pos: -6.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 765 - type: CableApcExtension - components: - - pos: -6.5,31.5 - parent: 0 - type: Transform -- uid: 766 - type: CableApcExtension - components: - - pos: -6.5,32.5 - parent: 0 - type: Transform -- uid: 767 - type: CableApcExtension - components: - - pos: -5.5,32.5 - parent: 0 - type: Transform -- uid: 768 - type: CableApcExtension - components: - - pos: -7.5,31.5 - parent: 0 - type: Transform -- uid: 769 - type: CableApcExtension - components: - - pos: -8.5,31.5 - parent: 0 - type: Transform -- uid: 770 - type: CableApcExtension - components: - - pos: -9.5,31.5 - parent: 0 - type: Transform -- uid: 771 - type: CableApcExtension - components: - - pos: -9.5,30.5 - parent: 0 - type: Transform -- uid: 772 - type: CableApcExtension - components: - - pos: -9.5,29.5 - parent: 0 - type: Transform -- uid: 773 - type: CableApcExtension - components: - - pos: -9.5,28.5 - parent: 0 - type: Transform -- uid: 774 - type: CableApcExtension - components: - - pos: -14.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 775 - type: CableApcExtension - components: - - pos: -14.5,26.5 - parent: 0 - type: Transform -- uid: 776 - type: CableApcExtension - components: - - pos: -15.5,25.5 - parent: 0 - type: Transform -- uid: 777 - type: CableApcExtension - components: - - pos: -15.5,24.5 - parent: 0 - type: Transform -- uid: 778 - type: CableApcExtension - components: - - pos: -16.5,25.5 - parent: 0 - type: Transform -- uid: 779 - type: CableApcExtension - components: - - pos: -17.5,25.5 - parent: 0 - type: Transform -- uid: 780 - type: CableApcExtension - components: - - pos: -18.5,25.5 - parent: 0 - type: Transform -- uid: 781 - type: CableApcExtension - components: - - pos: -14.5,25.5 - parent: 0 - type: Transform -- uid: 782 - type: CableApcExtension - components: - - pos: -15.5,28.5 - parent: 0 - type: Transform -- uid: 783 - type: CableApcExtension - components: - - pos: -15.5,29.5 - parent: 0 - type: Transform -- uid: 784 - type: CableApcExtension - components: - - pos: -14.5,29.5 - parent: 0 - type: Transform -- uid: 785 - type: CableApcExtension - components: - - pos: -13.5,29.5 - parent: 0 - type: Transform -- uid: 786 - type: CableApcExtension - components: - - pos: -12.5,29.5 - parent: 0 - type: Transform -- uid: 787 - type: CableApcExtension - components: - - pos: -16.5,29.5 - parent: 0 - type: Transform -- uid: 788 - type: CableApcExtension - components: - - pos: -4.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 789 - type: CableApcExtension - components: - - pos: -4.5,34.5 - parent: 0 - type: Transform -- uid: 790 - type: CableApcExtension - components: - - pos: -4.5,35.5 - parent: 0 - type: Transform -- uid: 791 - type: CableApcExtension - components: - - pos: -4.5,36.5 - parent: 0 - type: Transform -- uid: 792 - type: CableApcExtension - components: - - pos: -4.5,37.5 - parent: 0 - type: Transform -- uid: 793 - type: CableApcExtension - components: - - pos: -4.5,38.5 - parent: 0 - type: Transform -- uid: 794 - type: CableApcExtension - components: - - pos: -4.5,39.5 - parent: 0 - type: Transform -- uid: 795 - type: CableApcExtension - components: - - pos: -4.5,40.5 - parent: 0 - type: Transform -- uid: 796 - type: CableApcExtension - components: - - pos: -5.5,35.5 - parent: 0 - type: Transform -- uid: 797 - type: CableApcExtension - components: - - pos: -6.5,35.5 - parent: 0 - type: Transform -- uid: 798 - type: CableApcExtension - components: - - pos: -7.5,35.5 - parent: 0 - type: Transform -- uid: 799 - type: CableApcExtension - components: - - pos: -8.5,35.5 - parent: 0 - type: Transform -- uid: 800 - type: CableApcExtension - components: - - pos: -9.5,35.5 - parent: 0 - type: Transform -- uid: 801 - type: CableApcExtension - components: - - pos: -10.5,35.5 - parent: 0 - type: Transform -- uid: 802 - type: CableApcExtension - components: - - pos: -11.5,35.5 - parent: 0 - type: Transform -- uid: 803 - type: CableApcExtension - components: - - pos: -11.5,36.5 - parent: 0 - type: Transform -- uid: 804 - type: CableApcExtension - components: - - pos: -11.5,37.5 - parent: 0 - type: Transform -- uid: 805 - type: CableApcExtension - components: - - pos: -11.5,38.5 - parent: 0 - type: Transform -- uid: 806 - type: CableApcExtension - components: - - pos: -11.5,39.5 - parent: 0 - type: Transform -- uid: 807 - type: CableApcExtension - components: - - pos: -11.5,40.5 - parent: 0 - type: Transform -- uid: 808 - type: CableApcExtension - components: - - pos: -11.5,41.5 - parent: 0 - type: Transform -- uid: 809 - type: CableApcExtension - components: - - pos: -10.5,41.5 - parent: 0 - type: Transform -- uid: 810 - type: CableApcExtension - components: - - pos: -9.5,41.5 - parent: 0 - type: Transform -- uid: 811 - type: CableApcExtension - components: - - pos: -8.5,41.5 - parent: 0 - type: Transform -- uid: 812 - type: CableApcExtension - components: - - pos: -10.5,38.5 - parent: 0 - type: Transform -- uid: 813 - type: CableApcExtension - components: - - pos: -9.5,38.5 - parent: 0 - type: Transform -- uid: 814 - type: CableApcExtension - components: - - pos: -8.5,38.5 - parent: 0 - type: Transform -- uid: 815 - type: CableApcExtension - components: - - pos: -7.5,38.5 - parent: 0 - type: Transform -- uid: 816 - type: CableApcExtension - components: - - pos: -6.5,38.5 - parent: 0 - type: Transform -- uid: 817 - type: CableApcExtension - components: - - pos: -5.5,38.5 - parent: 0 - type: Transform -- uid: 818 - type: CableApcExtension - components: - - pos: -12.5,39.5 - parent: 0 - type: Transform -- uid: 819 - type: CableApcExtension - components: - - pos: -13.5,39.5 - parent: 0 - type: Transform -- uid: 820 - type: CableApcExtension - components: - - pos: -14.5,39.5 - parent: 0 - type: Transform -- uid: 821 - type: CableApcExtension - components: - - pos: -15.5,39.5 - parent: 0 - type: Transform -- uid: 822 - type: CableApcExtension - components: - - pos: -15.5,40.5 - parent: 0 - type: Transform -- uid: 823 - type: CableApcExtension - components: - - pos: -15.5,41.5 - parent: 0 - type: Transform -- uid: 824 - type: CableApcExtension - components: - - pos: -15.5,38.5 - parent: 0 - type: Transform -- uid: 825 - type: CableApcExtension - components: - - pos: -15.5,37.5 - parent: 0 - type: Transform -- uid: 826 - type: CableApcExtension - components: - - pos: -15.5,36.5 - parent: 0 - type: Transform -- uid: 827 - type: CableApcExtension - components: - - pos: -15.5,35.5 - parent: 0 - type: Transform -- uid: 828 - type: CableApcExtension - components: - - pos: -15.5,34.5 - parent: 0 - type: Transform -- uid: 829 - type: CableApcExtension - components: - - pos: -15.5,33.5 - parent: 0 - type: Transform -- uid: 830 - type: CableApcExtension - components: - - pos: -15.5,32.5 - parent: 0 - type: Transform -- uid: 831 - type: CableApcExtension - components: - - pos: -14.5,32.5 - parent: 0 - type: Transform -- uid: 832 - type: CableApcExtension - components: - - pos: -13.5,32.5 - parent: 0 - type: Transform -- uid: 833 - type: CableApcExtension - components: - - pos: -5.5,10.5 - parent: 0 - type: Transform -- uid: 834 - type: CableApcExtension - components: - - pos: -4.5,10.5 - parent: 0 - type: Transform -- uid: 835 - type: CableMV - components: - - pos: -20.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 836 - type: CableMV - components: - - pos: -20.5,22.5 - parent: 0 - type: Transform -- uid: 837 - type: CableMV - components: - - pos: -20.5,21.5 - parent: 0 - type: Transform -- uid: 838 - type: CableMV - components: - - pos: -20.5,20.5 - parent: 0 - type: Transform -- uid: 839 - type: CableMV - components: - - pos: -21.5,20.5 - parent: 0 - type: Transform -- uid: 840 - type: CableMV - components: - - pos: -22.5,20.5 - parent: 0 - type: Transform -- uid: 841 - type: CableMV - components: - - pos: -23.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 842 - type: CableMV - components: - - pos: -11.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 843 - type: CableMV - components: - - pos: -11.5,10.5 - parent: 0 - type: Transform -- uid: 844 - type: CableMV - components: - - pos: -11.5,9.5 - parent: 0 - type: Transform -- uid: 845 - type: CableMV - components: - - pos: -12.5,9.5 - parent: 0 - type: Transform -- uid: 846 - type: CableMV - components: - - pos: -13.5,9.5 - parent: 0 - type: Transform -- uid: 847 - type: CableMV - components: - - pos: -14.5,9.5 - parent: 0 - type: Transform -- uid: 848 - type: CableMV - components: - - pos: -14.5,8.5 - parent: 0 - type: Transform -- uid: 849 - type: CableMV - components: - - pos: -14.5,7.5 - parent: 0 - type: Transform -- uid: 850 - type: CableMV - components: - - pos: -14.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 851 - type: CableMV - components: - - pos: -10.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 852 - type: CableMV - components: - - pos: -10.5,24.5 - parent: 0 - type: Transform -- uid: 853 - type: CableMV - components: - - pos: -10.5,25.5 - parent: 0 - type: Transform -- uid: 854 - type: CableMV - components: - - pos: -11.5,25.5 - parent: 0 - type: Transform -- uid: 855 - type: CableMV - components: - - pos: -12.5,25.5 - parent: 0 - type: Transform -- uid: 856 - type: CableMV - components: - - pos: -13.5,25.5 - parent: 0 - type: Transform -- uid: 857 - type: CableMV - components: - - pos: -14.5,25.5 - parent: 0 - type: Transform -- uid: 858 - type: CableMV - components: - - pos: -15.5,25.5 - parent: 0 - type: Transform -- uid: 859 - type: CableApcExtension - components: - - pos: -14.5,28.5 - parent: 0 - type: Transform -- uid: 860 - type: WallSolid - components: - - pos: -14.5,27.5 - parent: 0 - type: Transform -- uid: 861 - type: CableMV - components: - - pos: -10.5,26.5 - parent: 0 - type: Transform -- uid: 862 - type: CableMV - components: - - pos: -9.5,26.5 - parent: 0 - type: Transform -- uid: 863 - type: CableMV - components: - - pos: -8.5,26.5 - parent: 0 - type: Transform -- uid: 864 - type: CableMV - components: - - pos: -8.5,27.5 - parent: 0 - type: Transform -- uid: 865 - type: CableMV - components: - - pos: -8.5,28.5 - parent: 0 - type: Transform -- uid: 866 - type: CableMV - components: - - pos: -8.5,29.5 - parent: 0 - type: Transform -- uid: 867 - type: CableMV - components: - - pos: -8.5,30.5 - parent: 0 - type: Transform -- uid: 868 - type: CableMV - components: - - pos: -8.5,31.5 - parent: 0 - type: Transform -- uid: 869 - type: CableMV - components: - - pos: -7.5,31.5 - parent: 0 - type: Transform -- uid: 870 - type: CableMV - components: - - pos: -6.5,31.5 - parent: 0 - type: Transform -- uid: 871 - type: CableMV - components: - - pos: -6.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 872 - type: CableMV - components: - - pos: -5.5,31.5 - parent: 0 - type: Transform -- uid: 873 - type: CableMV - components: - - pos: -4.5,31.5 - parent: 0 - type: Transform -- uid: 874 - type: CableMV - components: - - pos: -4.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 875 - type: CableMV - components: - - pos: -4.5,32.5 - parent: 0 - type: Transform -- uid: 876 - type: CableMV - components: - - pos: -4.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 877 - type: CableMV - components: - - pos: -8.5,32.5 - parent: 0 - type: Transform -- uid: 878 - type: CableMV - components: - - pos: -9.5,32.5 - parent: 0 - type: Transform -- uid: 879 - type: CableMV - components: - - pos: -10.5,32.5 - parent: 0 - type: Transform -- uid: 880 - type: CableMV - components: - - pos: -11.5,32.5 - parent: 0 - type: Transform -- uid: 881 - type: CableMV - components: - - pos: -12.5,32.5 - parent: 0 - type: Transform -- uid: 882 - type: CableMV - components: - - pos: -13.5,32.5 - parent: 0 - type: Transform -- uid: 883 - type: CableMV - components: - - pos: -14.5,32.5 - parent: 0 - type: Transform -- uid: 884 - type: CableMV - components: - - pos: -15.5,32.5 - parent: 0 - type: Transform -- uid: 885 - type: CableMV - components: - - pos: -16.5,32.5 - parent: 0 - type: Transform -- uid: 886 - type: CableMV - components: - - pos: -17.5,32.5 - parent: 0 - type: Transform -- uid: 887 - type: CableMV - components: - - pos: -18.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 888 - type: CableMV - components: - - pos: -19.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 889 - type: AirlockGlass - components: - - pos: -2.5,13.5 - parent: 0 - type: Transform -- uid: 890 - type: AirlockGlass - components: - - pos: -2.5,14.5 - parent: 0 - type: Transform -- uid: 891 - type: AirlockGlass - components: - - pos: -5.5,12.5 - parent: 0 - type: Transform -- uid: 892 - type: AirlockGlass - components: - - pos: -6.5,12.5 - parent: 0 - type: Transform -- uid: 893 - type: AirlockGlass - components: - - pos: -9.5,13.5 - parent: 0 - type: Transform -- uid: 894 - type: AirlockGlass - components: - - pos: -9.5,14.5 - parent: 0 - type: Transform -- uid: 895 - type: AirlockServiceGlassLocked - components: - - pos: -2.5,32.5 - parent: 0 - type: Transform -- uid: 896 - type: ReinforcedWindow - components: - - pos: -2.5,31.5 - parent: 0 - type: Transform -- uid: 897 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,27.5 - parent: 0 - type: Transform -- uid: 898 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,33.5 - parent: 0 - type: Transform -- uid: 899 - type: TableReinforced - components: - - pos: -9.5,27.5 - parent: 0 - type: Transform -- uid: 900 - type: TableReinforced - components: - - pos: -12.5,25.5 - parent: 0 - type: Transform -- uid: 901 - type: TableReinforced - components: - - pos: -2.5,34.5 - parent: 0 - type: Transform -- uid: 902 - type: TableReinforced - components: - - pos: -2.5,35.5 - parent: 0 - type: Transform -- uid: 903 - type: TableReinforced - components: - - pos: -9.5,33.5 - parent: 0 - type: Transform -- uid: 904 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -19.5,13.5 - parent: 0 - type: Transform -- uid: 905 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -18.5,13.5 - parent: 0 - type: Transform -- uid: 906 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -16.5,13.5 - parent: 0 - type: Transform -- uid: 907 - type: WindoorTheatreLocked - components: - - rot: 3.141592653589793 rad - pos: -17.5,13.5 - parent: 0 - type: Transform -- uid: 908 - type: AirlockTheatreLocked - components: - - pos: -15.5,9.5 - parent: 0 - type: Transform -- uid: 909 - type: AirlockMaintTheatreLocked - components: - - pos: -14.5,7.5 - parent: 0 - type: Transform -- uid: 910 - type: AirlockBarLocked - components: - - pos: -16.5,27.5 - parent: 0 - type: Transform -- uid: 911 - type: AirlockBarLocked - components: - - pos: -11.5,29.5 - parent: 0 - type: Transform -- uid: 912 - type: AirlockBarLocked - components: - - pos: -15.5,31.5 - parent: 0 - type: Transform -- uid: 913 - type: AirlockServiceLocked - components: - - pos: -17.5,32.5 - parent: 0 - type: Transform -- uid: 914 - type: AirlockMaintHydroLocked - components: - - pos: -17.5,38.5 - parent: 0 - type: Transform -- uid: 915 - type: AirlockHydroGlassLocked - components: - - pos: -10.5,33.5 - parent: 0 - type: Transform -- uid: 916 - type: AirlockHydroponicsLocked - components: - - pos: -13.5,39.5 - parent: 0 - type: Transform -- uid: 917 - type: AirlockFreezerKitchenHydroLocked - components: - - pos: -7.5,28.5 - parent: 0 - type: Transform -- uid: 918 - type: AirlockKitchenGlassLocked - components: - - pos: -8.5,27.5 - parent: 0 - type: Transform -- uid: 919 - type: AirlockFreezerKitchenHydroLocked - components: - - pos: -6.5,25.5 - parent: 0 - type: Transform -- uid: 920 - type: APCHyperCapacity - components: - - pos: -14.5,27.5 - parent: 0 - type: Transform -- uid: 921 - type: ShuttersNormalOpen - components: - - pos: -18.5,23.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 940 - type: SignalReceiver -- uid: 922 - type: ShuttersNormalOpen - components: - - pos: -17.5,23.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 940 - type: SignalReceiver -- uid: 923 - type: ShuttersNormalOpen - components: - - pos: -16.5,23.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 940 - type: SignalReceiver -- uid: 924 - type: ShuttersNormalOpen - components: - - pos: -15.5,23.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 940 - type: SignalReceiver -- uid: 925 - type: ShuttersNormalOpen - components: - - pos: -14.5,23.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 940 - type: SignalReceiver -- uid: 926 - type: ShuttersNormalOpen - components: - - pos: -13.5,23.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 940 - type: SignalReceiver -- uid: 927 - type: ShuttersNormalOpen - components: - - pos: -8.5,16.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1073 - type: SignalReceiver -- uid: 928 - type: ShuttersNormalOpen - components: - - pos: -4.5,16.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1073 - type: SignalReceiver -- uid: 929 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -3.5,18.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 939 - type: SignalReceiver -- uid: 930 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -3.5,19.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 939 - type: SignalReceiver -- uid: 931 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -3.5,20.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 939 - type: SignalReceiver -- uid: 932 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -3.5,21.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 939 - type: SignalReceiver -- uid: 933 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -3.5,22.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 939 - type: SignalReceiver -- uid: 934 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -9.5,18.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 938 - type: SignalReceiver -- uid: 935 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -9.5,19.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 938 - type: SignalReceiver -- uid: 936 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -9.5,20.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 938 - type: SignalReceiver -- uid: 937 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -9.5,21.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 938 - type: SignalReceiver -- uid: 938 - type: SignalButton - components: - - name: Bar Windows - type: MetaData - - pos: -7.5,25.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 934 - - port: Toggle - uid: 935 - - port: Toggle - uid: 936 - - port: Toggle - uid: 937 - type: SignalTransmitter -- uid: 939 - type: SignalButton - components: - - name: Hallway Windows - type: MetaData - - pos: -5.5,25.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 933 - - port: Toggle - uid: 932 - - port: Toggle - uid: 931 - - port: Toggle - uid: 930 - - port: Toggle - uid: 929 - type: SignalTransmitter -- uid: 940 - type: SignalButton - components: - - name: Shutters - type: MetaData - - pos: -18.5,27.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 921 - - port: Toggle - uid: 922 - - port: Toggle - uid: 923 - - port: Toggle - uid: 924 - - port: Toggle - uid: 925 - - port: Toggle - uid: 926 - type: SignalTransmitter -- uid: 941 - type: DisposalUnit - components: - - pos: -21.5,19.5 - parent: 0 - type: Transform -- uid: 942 - type: DisposalUnit - components: - - pos: -19.5,24.5 - parent: 0 - type: Transform -- uid: 943 - type: DisposalUnit - components: - - pos: -3.5,24.5 - parent: 0 - type: Transform -- uid: 944 - type: DisposalUnit - components: - - pos: -10.5,8.5 - parent: 0 - type: Transform -- uid: 945 - type: DisposalUnit - components: - - pos: -17.5,28.5 - parent: 0 - type: Transform -- uid: 946 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -2.5,17.5 - parent: 0 - type: Transform -- uid: 947 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -2.5,17.5 - parent: 0 - type: Transform -- uid: 948 - type: AirlockMaintLocked - components: - - pos: -22.5,20.5 - parent: 0 - type: Transform -- uid: 949 - type: DisposalPipe - components: - - pos: -17.5,10.5 - parent: 0 - type: Transform -- uid: 950 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -21.5,19.5 - parent: 0 - type: Transform -- uid: 951 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -19.5,24.5 - parent: 0 - type: Transform -- uid: 952 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -17.5,28.5 - parent: 0 - type: Transform -- uid: 953 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -3.5,24.5 - parent: 0 - type: Transform -- uid: 954 - type: DisposalUnit - components: - - pos: -5.5,34.5 - parent: 0 - type: Transform -- uid: 955 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -5.5,34.5 - parent: 0 - type: Transform -- uid: 956 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,34.5 - parent: 0 - type: Transform -- uid: 957 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,34.5 - parent: 0 - type: Transform -- uid: 958 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,34.5 - parent: 0 - type: Transform -- uid: 959 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,34.5 - parent: 0 - type: Transform -- uid: 960 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -10.5,34.5 - parent: 0 - type: Transform -- uid: 961 - type: DisposalPipe - components: - - pos: -10.5,33.5 - parent: 0 - type: Transform -- uid: 962 - type: DisposalPipe - components: - - pos: -10.5,32.5 - parent: 0 - type: Transform -- uid: 963 - type: DisposalPipe - components: - - pos: -10.5,31.5 - parent: 0 - type: Transform -- uid: 964 - type: DisposalPipe - components: - - pos: -10.5,30.5 - parent: 0 - type: Transform -- uid: 965 - type: DisposalJunction - components: - - pos: -10.5,29.5 - parent: 0 - type: Transform -- uid: 966 - type: DisposalPipe - components: - - pos: -10.5,28.5 - parent: 0 - type: Transform -- uid: 967 - type: DisposalPipe - components: - - pos: -10.5,27.5 - parent: 0 - type: Transform -- uid: 968 - type: DisposalPipe - components: - - pos: -10.5,26.5 - parent: 0 - type: Transform -- uid: 969 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -17.5,29.5 - parent: 0 - type: Transform -- uid: 970 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,29.5 - parent: 0 - type: Transform -- uid: 971 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,29.5 - parent: 0 - type: Transform -- uid: 972 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,29.5 - parent: 0 - type: Transform -- uid: 973 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,29.5 - parent: 0 - type: Transform -- uid: 974 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,29.5 - parent: 0 - type: Transform -- uid: 975 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,29.5 - parent: 0 - type: Transform -- uid: 976 - type: DisposalJunction - components: - - pos: -10.5,25.5 - parent: 0 - type: Transform -- uid: 977 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -10.5,24.5 - parent: 0 - type: Transform -- uid: 978 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -15.5,24.5 - parent: 0 - type: Transform -- uid: 979 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -15.5,25.5 - parent: 0 - type: Transform -- uid: 980 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,24.5 - parent: 0 - type: Transform -- uid: 981 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,24.5 - parent: 0 - type: Transform -- uid: 982 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,24.5 - parent: 0 - type: Transform -- uid: 983 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,25.5 - parent: 0 - type: Transform -- uid: 984 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,25.5 - parent: 0 - type: Transform -- uid: 985 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,25.5 - parent: 0 - type: Transform -- uid: 986 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,25.5 - parent: 0 - type: Transform -- uid: 987 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,24.5 - parent: 0 - type: Transform -- uid: 988 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,24.5 - parent: 0 - type: Transform -- uid: 989 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,24.5 - parent: 0 - type: Transform -- uid: 990 - type: DisposalBend - components: - - pos: -6.5,24.5 - parent: 0 - type: Transform -- uid: 991 - type: DisposalJunctionFlipped - components: - - pos: -6.5,23.5 - parent: 0 - type: Transform -- uid: 992 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -5.5,23.5 - parent: 0 - type: Transform -- uid: 993 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -5.5,24.5 - parent: 0 - type: Transform -- uid: 994 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,24.5 - parent: 0 - type: Transform -- uid: 995 - type: DisposalBend - components: - - pos: -20.5,19.5 - parent: 0 - type: Transform -- uid: 996 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -20.5,14.5 - parent: 0 - type: Transform -- uid: 997 - type: DisposalBend - components: - - pos: -17.5,14.5 - parent: 0 - type: Transform -- uid: 998 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -17.5,9.5 - parent: 0 - type: Transform -- uid: 999 - type: DisposalJunctionFlipped - components: - - pos: -14.5,8.5 - parent: 0 - type: Transform -- uid: 1000 - type: DisposalPipe - components: - - pos: -17.5,11.5 - parent: 0 - type: Transform -- uid: 1001 - type: DisposalPipe - components: - - pos: -17.5,12.5 - parent: 0 - type: Transform -- uid: 1002 - type: DisposalPipe - components: - - pos: -17.5,13.5 - parent: 0 - type: Transform -- uid: 1003 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,14.5 - parent: 0 - type: Transform -- uid: 1004 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,14.5 - parent: 0 - type: Transform -- uid: 1005 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,15.5 - parent: 0 - type: Transform -- uid: 1006 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,16.5 - parent: 0 - type: Transform -- uid: 1007 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,17.5 - parent: 0 - type: Transform -- uid: 1008 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,18.5 - parent: 0 - type: Transform -- uid: 1009 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,9.5 - parent: 0 - type: Transform -- uid: 1010 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,9.5 - parent: 0 - type: Transform -- uid: 1011 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,8.5 - parent: 0 - type: Transform -- uid: 1012 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,8.5 - parent: 0 - type: Transform -- uid: 1013 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,8.5 - parent: 0 - type: Transform -- uid: 1014 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -10.5,8.5 - parent: 0 - type: Transform -- uid: 1015 - type: DisposalBend - components: - - pos: -14.5,9.5 - parent: 0 - type: Transform -- uid: 1016 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -14.5,5.5 - parent: 0 - type: Transform -- uid: 1017 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -14.5,7.5 - parent: 0 - type: Transform -- uid: 1018 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -14.5,6.5 - parent: 0 - type: Transform -- uid: 1019 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,5.5 - parent: 0 - type: Transform -- uid: 1020 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,5.5 - parent: 0 - type: Transform -- uid: 1021 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,5.5 - parent: 0 - type: Transform -- uid: 1022 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,5.5 - parent: 0 - type: Transform -- uid: 1023 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -9.5,5.5 - parent: 0 - type: Transform -- uid: 1024 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,5.5 - parent: 0 - type: Transform -- uid: 1025 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 0 - type: Transform -- uid: 1026 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,5.5 - parent: 0 - type: Transform -- uid: 1027 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -5.5,5.5 - parent: 0 - type: Transform -- uid: 1028 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,5.5 - parent: 0 - type: Transform -- uid: 1029 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,5.5 - parent: 0 - type: Transform -- uid: 1030 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,5.5 - parent: 0 - type: Transform -- uid: 1031 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 0 - type: Transform -- uid: 1032 - type: DisposalPipe - components: - - pos: -0.5,6.5 - parent: 0 - type: Transform -- uid: 1033 - type: DisposalPipe - components: - - pos: -0.5,7.5 - parent: 0 - type: Transform -- uid: 1034 - type: DisposalPipe - components: - - pos: -0.5,8.5 - parent: 0 - type: Transform -- uid: 1035 - type: DisposalPipe - components: - - pos: -0.5,9.5 - parent: 0 - type: Transform -- uid: 1036 - type: DisposalPipe - components: - - pos: -0.5,10.5 - parent: 0 - type: Transform -- uid: 1037 - type: DisposalPipe - components: - - pos: -0.5,11.5 - parent: 0 - type: Transform -- uid: 1038 - type: DisposalJunctionFlipped - components: - - pos: -0.5,12.5 - parent: 0 - type: Transform -- uid: 1039 - type: DisposalPipe - components: - - pos: -0.5,13.5 - parent: 0 - type: Transform -- uid: 1040 - type: DisposalPipe - components: - - pos: -0.5,14.5 - parent: 0 - type: Transform -- uid: 1041 - type: DisposalPipe - components: - - pos: -0.5,15.5 - parent: 0 - type: Transform -- uid: 1042 - type: DisposalPipe - components: - - pos: -0.5,16.5 - parent: 0 - type: Transform -- uid: 1043 - type: DisposalPipe - components: - - pos: -0.5,17.5 - parent: 0 - type: Transform -- uid: 1044 - type: DisposalPipe - components: - - pos: -0.5,18.5 - parent: 0 - type: Transform -- uid: 1045 - type: DisposalPipe - components: - - pos: -0.5,19.5 - parent: 0 - type: Transform -- uid: 1046 - type: DisposalPipe - components: - - pos: -0.5,20.5 - parent: 0 - type: Transform -- uid: 1047 - type: DisposalPipe - components: - - pos: -0.5,21.5 - parent: 0 - type: Transform -- uid: 1048 - type: DisposalJunction - components: - - pos: -0.5,22.5 - parent: 0 - type: Transform -- uid: 1049 - type: DisposalPipe - components: - - pos: -0.5,23.5 - parent: 0 - type: Transform -- uid: 1050 - type: DisposalPipe - components: - - pos: -0.5,24.5 - parent: 0 - type: Transform -- uid: 1051 - type: DisposalPipe - components: - - pos: -0.5,25.5 - parent: 0 - type: Transform -- uid: 1052 - type: DisposalPipe - components: - - pos: -0.5,26.5 - parent: 0 - type: Transform -- uid: 1053 - type: DisposalPipe - components: - - pos: -0.5,27.5 - parent: 0 - type: Transform -- uid: 1054 - type: DisposalJunctionFlipped - components: - - pos: -0.5,28.5 - parent: 0 - type: Transform -- uid: 1055 - type: DisposalPipe - components: - - pos: -0.5,29.5 - parent: 0 - type: Transform -- uid: 1056 - type: DisposalPipe - components: - - pos: -0.5,30.5 - parent: 0 - type: Transform -- uid: 1057 - type: DisposalPipe - components: - - pos: -0.5,31.5 - parent: 0 - type: Transform -- uid: 1058 - type: DisposalPipe - components: - - pos: -0.5,32.5 - parent: 0 - type: Transform -- uid: 1059 - type: DisposalJunctionFlipped - components: - - pos: -0.5,33.5 - parent: 0 - type: Transform -- uid: 1060 - type: DisposalPipe - components: - - pos: -0.5,34.5 - parent: 0 - type: Transform -- uid: 1061 - type: DisposalPipe - components: - - pos: -0.5,35.5 - parent: 0 - type: Transform -- uid: 1062 - type: DisposalPipe - components: - - pos: -0.5,36.5 - parent: 0 - type: Transform -- uid: 1063 - type: DisposalPipe - components: - - pos: -0.5,37.5 - parent: 0 - type: Transform -- uid: 1064 - type: DisposalPipe - components: - - pos: -0.5,38.5 - parent: 0 - type: Transform -- uid: 1065 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -6.5,22.5 - parent: 0 - type: Transform -- uid: 1066 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,22.5 - parent: 0 - type: Transform -- uid: 1067 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,22.5 - parent: 0 - type: Transform -- uid: 1068 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,22.5 - parent: 0 - type: Transform -- uid: 1069 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,22.5 - parent: 0 - type: Transform -- uid: 1070 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,22.5 - parent: 0 - type: Transform -- uid: 1071 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -0.5,5.5 - parent: 0 - type: Transform -- uid: 1072 - type: ShuttersNormalOpen - components: - - pos: -11.5,23.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1073 - type: SignalReceiver -- uid: 1073 - type: SignalButton - components: - - name: Window shutters - type: MetaData - - pos: -11.5,27.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1072 - - port: Toggle - uid: 927 - - port: Toggle - uid: 928 - type: SignalTransmitter -- uid: 1074 - type: SpaceVillainArcadeFilled - components: - - rot: 1.5707963267948966 rad - pos: -8.5,11.5 - parent: 0 - type: Transform -- uid: 1075 - type: SpaceVillainArcadeFilled - components: - - rot: 1.5707963267948966 rad - pos: -8.5,9.5 - parent: 0 - type: Transform -- uid: 1076 - type: BlockGameArcade - components: - - rot: 1.5707963267948966 rad - pos: -8.5,10.5 - parent: 0 - type: Transform -- uid: 1077 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -7.5,9.5 - parent: 0 - type: Transform -- uid: 1078 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -7.5,10.5 - parent: 0 - type: Transform -- uid: 1079 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -7.5,11.5 - parent: 0 - type: Transform -- uid: 1080 - type: WallSolid - components: - - pos: 8.5,24.5 - parent: 0 - type: Transform -- uid: 1081 - type: WallSolid - components: - - pos: 7.5,24.5 - parent: 0 - type: Transform -- uid: 1082 - type: WallSolid - components: - - pos: 7.5,27.5 - parent: 0 - type: Transform -- uid: 1083 - type: Carpet - components: - - pos: -6.5,9.5 - parent: 0 - type: Transform -- uid: 1084 - type: Carpet - components: - - pos: -6.5,10.5 - parent: 0 - type: Transform -- uid: 1085 - type: Carpet - components: - - pos: -6.5,11.5 - parent: 0 - type: Transform -- uid: 1086 - type: Carpet - components: - - pos: -5.5,9.5 - parent: 0 - type: Transform -- uid: 1087 - type: Carpet - components: - - pos: -5.5,10.5 - parent: 0 - type: Transform -- uid: 1088 - type: Carpet - components: - - pos: -5.5,11.5 - parent: 0 - type: Transform -- uid: 1089 - type: Carpet - components: - - pos: -4.5,9.5 - parent: 0 - type: Transform -- uid: 1090 - type: Carpet - components: - - pos: -4.5,10.5 - parent: 0 - type: Transform -- uid: 1091 - type: Carpet - components: - - pos: -4.5,11.5 - parent: 0 - type: Transform -- uid: 1092 - type: Carpet - components: - - pos: -3.5,9.5 - parent: 0 - type: Transform -- uid: 1093 - type: Carpet - components: - - pos: -3.5,10.5 - parent: 0 - type: Transform -- uid: 1094 - type: Carpet - components: - - pos: -3.5,11.5 - parent: 0 - type: Transform -- uid: 1095 - type: ComfyChair - components: - - pos: -3.5,11.5 - parent: 0 - type: Transform -- uid: 1096 - type: ComfyChair - components: - - pos: -4.5,11.5 - parent: 0 - type: Transform -- uid: 1097 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -3.5,9.5 - parent: 0 - type: Transform -- uid: 1098 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -4.5,9.5 - parent: 0 - type: Transform -- uid: 1099 - type: TableCarpet - components: - - pos: -3.5,10.5 - parent: 0 - type: Transform -- uid: 1100 - type: TableCarpet - components: - - pos: -4.5,10.5 - parent: 0 - type: Transform -- uid: 1101 - type: ChessBoard - components: - - pos: -4.3961477,10.577835 - parent: 0 - type: Transform -- uid: 1102 - type: IntercomService - components: - - pos: -4.5,25.5 - parent: 0 - type: Transform -- uid: 1103 - type: PaintingMonkey - components: - - pos: -19.5,27.5 - parent: 0 - type: Transform -- uid: 1104 - type: IntercomService - components: - - rot: -1.5707963267948966 rad - pos: -7.5,30.5 - parent: 0 - type: Transform -- uid: 1105 - type: IntercomService - components: - - pos: -6.5,41.5 - parent: 0 - type: Transform -- uid: 1106 - type: Intercom - components: - - pos: -12.5,11.5 - parent: 0 - type: Transform -- uid: 1107 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -21.5,18.5 - parent: 0 - type: Transform -- uid: 1108 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,10.5 - parent: 0 - type: Transform -- uid: 1109 - type: Dresser - components: - - pos: -11.5,8.5 - parent: 0 - type: Transform -- uid: 1110 - type: TableWood - components: - - pos: -12.5,10.5 - parent: 0 - type: Transform -- uid: 1111 - type: TableWood - components: - - pos: -11.5,10.5 - parent: 0 - type: Transform -- uid: 1112 - type: TableWood - components: - - pos: -13.5,8.5 - parent: 0 - type: Transform -- uid: 1113 - type: TableWood - components: - - pos: -12.5,8.5 - parent: 0 - type: Transform -- uid: 1114 - type: Mirror - components: - - pos: -13.5,11.5 - parent: 0 - type: Transform -- uid: 1115 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -13.5,10.5 - parent: 0 - type: Transform -- uid: 1116 - type: TableWood - components: - - pos: -14.5,10.5 - parent: 0 - type: Transform -- uid: 1117 - type: LampBanana - components: - - pos: -11.291338,10.87907 - parent: 0 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 1118 - type: FoodBanana - components: - - pos: -11.650713,10.644695 - parent: 0 - type: Transform -- uid: 1119 - type: FoodBanana - components: - - pos: -11.791338,10.69157 - parent: 0 - type: Transform -- uid: 1120 - type: FoodPieBananaCream - components: - - pos: -12.588213,10.832195 - parent: 0 - type: Transform -- uid: 1121 - type: FoodPieBananaCream - components: - - pos: -12.275713,10.800945 - parent: 0 - type: Transform -- uid: 1122 - type: FoodPieBananaCream - components: - - pos: -12.494463,10.69157 - parent: 0 - type: Transform -- uid: 1123 - type: BananaPhoneInstrument - components: - - pos: -12.181963,10.47282 - parent: 0 - type: Transform -- uid: 1124 - type: BikeHornInstrument - components: - - pos: -12.619463,10.37907 - parent: 0 - type: Transform -- uid: 1125 - type: BikeHorn - components: - - pos: -11.838213,10.738445 - parent: 0 - type: Transform -- uid: 1126 - type: CrayonBox - components: - - pos: -13.525713,8.644695 - parent: 0 - type: Transform -- uid: 1127 - type: ToyRubberDuck - components: - - pos: -13.416338,8.47282 - parent: 0 - type: Transform -- uid: 1128 - type: ClothingNeckScarfStripedZebra - components: - - pos: -12.338213,8.394695 - parent: 0 - type: Transform -- uid: 1129 - type: MinimoogInstrument - components: - - rot: -1.5707963267948966 rad - pos: -19.5,13.5 - parent: 0 - type: Transform -- uid: 1130 - type: TableWood - components: - - pos: -19.5,9.5 - parent: 0 - type: Transform -- uid: 1131 - type: TableWood - components: - - pos: -19.5,10.5 - parent: 0 - type: Transform -- uid: 1132 - type: TableWood - components: - - pos: -19.5,11.5 - parent: 0 - type: Transform -- uid: 1133 - type: TableWood - components: - - pos: -19.5,12.5 - parent: 0 - type: Transform -- uid: 1134 - type: TableWood - components: - - pos: -22.5,15.5 - parent: 0 - type: Transform -- uid: 1135 - type: TableWood - components: - - pos: -22.5,16.5 - parent: 0 - type: Transform -- uid: 1136 - type: TableWood - components: - - pos: -21.5,15.5 - parent: 0 - type: Transform -- uid: 1137 - type: TableWood - components: - - pos: -21.5,16.5 - parent: 0 - type: Transform -- uid: 1138 - type: ComfyChair - components: - - pos: -22.5,17.5 - parent: 0 - type: Transform -- uid: 1139 - type: ComfyChair - components: - - pos: -21.5,17.5 - parent: 0 - type: Transform -- uid: 1140 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -21.5,14.5 - parent: 0 - type: Transform -- uid: 1141 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -22.5,14.5 - parent: 0 - type: Transform -- uid: 1142 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -18.5,13.5 - parent: 0 - type: Transform -- uid: 1143 - type: TableWood - components: - - pos: -12.5,12.5 - parent: 0 - type: Transform -- uid: 1144 - type: LampGold - components: - - pos: -12.5221615,12.930347 - parent: 0 - type: Transform -- uid: 1145 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,12.5 - parent: 0 - type: Transform -- uid: 1146 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -13.5,12.5 - parent: 0 - type: Transform -- uid: 1147 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,12.5 - parent: 0 - type: Transform -- uid: 1148 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,12.5 - parent: 0 - type: Transform -- uid: 1149 - type: VendingMachineHappyHonk - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,24.5 - parent: 0 - type: Transform -- uid: 1150 - type: VendingMachineDinnerware - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,26.5 - parent: 0 - type: Transform -- uid: 1151 - type: VendingMachineChefvend - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,17.5 - parent: 0 - type: Transform -- uid: 1152 - type: Table - components: - - pos: -7.5,17.5 - parent: 0 - type: Transform -- uid: 1153 - type: Table - components: - - pos: -6.5,17.5 - parent: 0 - type: Transform -- uid: 1154 - type: Table - components: - - pos: -5.5,17.5 - parent: 0 - type: Transform -- uid: 1155 - type: Table - components: - - pos: -4.5,17.5 - parent: 0 - type: Transform -- uid: 1156 - type: Table - components: - - pos: -7.5,19.5 - parent: 0 - type: Transform -- uid: 1157 - type: Table - components: - - pos: -7.5,20.5 - parent: 0 - type: Transform -- uid: 1158 - type: Table - components: - - pos: -5.5,19.5 - parent: 0 - type: Transform -- uid: 1159 - type: Table - components: - - pos: -5.5,20.5 - parent: 0 - type: Transform -- uid: 1160 - type: Table - components: - - pos: -5.5,22.5 - parent: 0 - type: Transform -- uid: 1161 - type: Table - components: - - pos: -7.5,22.5 - parent: 0 - type: Transform -- uid: 1162 - type: KitchenReagentGrinder - components: - - pos: -7.5,20.5 - parent: 0 - type: Transform -- uid: 1163 - type: KitchenReagentGrinder - components: - - pos: -5.5,20.5 - parent: 0 - type: Transform -- uid: 1164 - type: ClosetChefFilled - components: - - pos: -10.5,24.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1165 - type: SinkWide - components: - - pos: -5.5,24.5 - parent: 0 - type: Transform -- uid: 1166 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: -13.5,24.5 - parent: 0 - type: Transform -- uid: 1167 - type: TableWood - components: - - pos: -19.5,25.5 - parent: 0 - type: Transform -- uid: 1168 - type: TableWood - components: - - pos: -19.5,26.5 - parent: 0 - type: Transform -- uid: 1169 - type: TableWood - components: - - pos: -18.5,26.5 - parent: 0 - type: Transform -- uid: 1170 - type: TableWood - components: - - pos: -17.5,26.5 - parent: 0 - type: Transform -- uid: 1171 - type: TableWood - components: - - pos: -13.5,26.5 - parent: 0 - type: Transform -- uid: 1172 - type: TableWood - components: - - pos: -14.5,26.5 - parent: 0 - type: Transform -- uid: 1173 - type: DrinkAleBottleFull - components: - - pos: -17.514322,26.724321 - parent: 0 - type: Transform -- uid: 1174 - type: BoozeDispenser - components: - - pos: -14.5,26.5 - parent: 0 - type: Transform -- uid: 1175 - type: soda_dispenser - components: - - pos: -13.5,26.5 - parent: 0 - type: Transform -- uid: 1176 - type: DrinkAbsintheBottleFull - components: - - pos: -17.358072,26.880571 - parent: 0 - type: Transform -- uid: 1177 - type: DrinkWhiskeyBottleFull - components: - - pos: -17.342966,26.99 - parent: 0 - type: Transform -- uid: 1178 - type: DrinkVermouthBottleFull - components: - - pos: -17.662472,26.99 - parent: 0 - type: Transform -- uid: 1179 - type: DrinkBottleNTCahors - components: - - pos: -17.623697,26.864946 - parent: 0 - type: Transform -- uid: 1180 - type: PottedPlantRandom - components: - - pos: -15.5,26.5 - parent: 0 - type: Transform -- uid: 1181 - type: DrinkShaker - components: - - pos: -19.55754,26.664942 - parent: 0 - type: Transform -- uid: 1182 - type: DrinkGlass - components: - - pos: -19.388687,26.162008 - parent: 0 - type: Transform -- uid: 1183 - type: DrinkGlass - components: - - pos: -19.326187,26.365133 - parent: 0 - type: Transform -- uid: 1184 - type: DrinkGlass - components: - - pos: -19.576187,26.255758 - parent: 0 - type: Transform -- uid: 1185 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -16.51842,23.478382 - parent: 0 - type: Transform -- uid: 1186 - type: VendingBarDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,29.5 - parent: 0 - type: Transform -- uid: 1187 - type: PosterLegitCohibaRobustoAd - components: - - pos: -13.5,27.5 - parent: 0 - type: Transform -- uid: 1188 - type: SignBar - components: - - pos: -2.5,16.5 - parent: 0 - type: Transform -- uid: 1189 - type: SpawnPointBartender - components: - - pos: -16.5,29.5 - parent: 0 - type: Transform -- uid: 1190 - type: LockerBoozeFilled - components: - - pos: -13.5,28.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1191 - type: TableWood - components: - - pos: -12.5,28.5 - parent: 0 - type: Transform -- uid: 1192 - type: TableWood - components: - - pos: -13.5,30.5 - parent: 0 - type: Transform -- uid: 1193 - type: TableWood - components: - - pos: -14.5,30.5 - parent: 0 - type: Transform -- uid: 1194 - type: LockerBoozeFilled - components: - - pos: -12.5,30.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1195 - type: Sink - components: - - pos: -16.5,30.5 - parent: 0 - type: Transform -- uid: 1196 - type: KitchenMicrowave - components: - - pos: -4.5,17.5 - parent: 0 - type: Transform -- uid: 1197 - type: KitchenMicrowave - components: - - pos: -5.5,17.5 - parent: 0 - type: Transform -- uid: 1198 - type: FoodCondimentBottleEnzyme - components: - - pos: -5.6167603,22.921633 - parent: 0 - type: Transform -- uid: 1199 - type: FoodCondimentBottleEnzyme - components: - - pos: -5.4292603,22.781008 - parent: 0 - type: Transform -- uid: 1200 - type: ReagentContainerFlour - components: - - pos: -7.5230103,17.671633 - parent: 0 - type: Transform -- uid: 1201 - type: LargeBeaker - components: - - pos: -6.6480103,17.598469 - parent: 0 - type: Transform -- uid: 1202 - type: ClothingShoesChef - components: - - pos: -4.615346,26.258259 - parent: 0 - type: Transform -- uid: 1203 - type: AtmosDeviceFanTiny - components: - - pos: -6.5,25.5 - parent: 0 - type: Transform -- uid: 1204 - type: AtmosDeviceFanTiny - components: - - pos: -7.5,28.5 - parent: 0 - type: Transform -- uid: 1205 - type: GasThermoMachineFreezer - components: - - pos: -6.5,29.5 - parent: 0 - type: Transform -- uid: 1206 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -6.5,28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 1207 - type: KitchenSpike - components: - - pos: -5.5,26.5 - parent: 0 - type: Transform -- uid: 1208 - type: KitchenSpike - components: - - pos: -5.5,27.5 - parent: 0 - type: Transform -- uid: 1209 - type: LockerFreezer - components: - - pos: -3.5,26.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1210 - type: LockerFreezer - components: - - pos: -3.5,27.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1211 - type: CrateFreezer - components: - - pos: -3.5,28.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1212 - type: SpawnMobAlexander - components: - - pos: -7.5,23.5 - parent: 0 - type: Transform -- uid: 1213 - type: SpawnPointChef - components: - - pos: -10.5,25.5 - parent: 0 - type: Transform -- uid: 1214 - type: SpawnPointChef - components: - - pos: -9.5,25.5 - parent: 0 - type: Transform -- uid: 1215 - type: FirelockGlass - components: - - pos: 0.5,25.5 - parent: 0 - type: Transform -- uid: 1216 - type: SpawnPointBartender - components: - - pos: -15.5,29.5 - parent: 0 - type: Transform -- uid: 1217 - type: ButchCleaver - components: - - pos: -5.4753895,28.569885 - parent: 0 - type: Transform -- uid: 1218 - type: CrateNPCCow - components: - - pos: -5.5,23.5 - parent: 0 - type: Transform - - air: - volume: 800 - immutable: False - temperature: 293.14987 - moles: - - 12.392727 - - 46.620262 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1219 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -8.5,25.5 - parent: 0 - type: Transform -- uid: 1220 - type: WindoorBarKitchenLocked - components: - - rot: -1.5707963267948966 rad - pos: -12.5,25.5 - parent: 0 - type: Transform -- uid: 1221 - type: WindoorBarKitchenLocked - components: - - rot: 1.5707963267948966 rad - pos: -12.5,25.5 - parent: 0 - type: Transform -- uid: 1222 - type: WindoorKitchenHydroponicsLocked - components: - - pos: -9.5,27.5 - parent: 0 - type: Transform -- uid: 1223 - type: WindoorKitchenHydroponicsLocked - components: - - rot: 3.141592653589793 rad - pos: -9.5,27.5 - parent: 0 - type: Transform -- uid: 1224 - type: WindoorKitchenHydroponicsLocked - components: - - pos: -9.5,33.5 - parent: 0 - type: Transform -- uid: 1225 - type: WindoorKitchenHydroponicsLocked - components: - - rot: 3.141592653589793 rad - pos: -9.5,33.5 - parent: 0 - type: Transform -- uid: 1226 - type: WallSolid - components: - - pos: -7.5,37.5 - parent: 0 - type: Transform -- uid: 1227 - type: Table - components: - - pos: -6.5,37.5 - parent: 0 - type: Transform -- uid: 1228 - type: KitchenReagentGrinder - components: - - pos: -6.5,37.5 - parent: 0 - type: Transform -- uid: 1229 - type: Carpet - components: - - pos: -19.5,21.5 - parent: 0 - type: Transform -- uid: 1230 - type: Carpet - components: - - pos: -19.5,20.5 - parent: 0 - type: Transform -- uid: 1231 - type: Carpet - components: - - pos: -19.5,19.5 - parent: 0 - type: Transform -- uid: 1232 - type: Carpet - components: - - pos: -19.5,18.5 - parent: 0 - type: Transform -- uid: 1233 - type: Carpet - components: - - pos: -19.5,17.5 - parent: 0 - type: Transform -- uid: 1234 - type: Carpet - components: - - pos: -19.5,16.5 - parent: 0 - type: Transform -- uid: 1235 - type: Carpet - components: - - pos: -19.5,15.5 - parent: 0 - type: Transform -- uid: 1236 - type: Carpet - components: - - pos: -18.5,21.5 - parent: 0 - type: Transform -- uid: 1237 - type: Carpet - components: - - pos: -18.5,20.5 - parent: 0 - type: Transform -- uid: 1238 - type: Carpet - components: - - pos: -18.5,19.5 - parent: 0 - type: Transform -- uid: 1239 - type: Carpet - components: - - pos: -18.5,18.5 - parent: 0 - type: Transform -- uid: 1240 - type: Carpet - components: - - pos: -18.5,17.5 - parent: 0 - type: Transform -- uid: 1241 - type: Carpet - components: - - pos: -18.5,16.5 - parent: 0 - type: Transform -- uid: 1242 - type: Carpet - components: - - pos: -18.5,15.5 - parent: 0 - type: Transform -- uid: 1243 - type: Carpet - components: - - pos: -17.5,21.5 - parent: 0 - type: Transform -- uid: 1244 - type: Carpet - components: - - pos: -17.5,20.5 - parent: 0 - type: Transform -- uid: 1245 - type: Carpet - components: - - pos: -17.5,19.5 - parent: 0 - type: Transform -- uid: 1246 - type: Carpet - components: - - pos: -17.5,18.5 - parent: 0 - type: Transform -- uid: 1247 - type: Carpet - components: - - pos: -17.5,17.5 - parent: 0 - type: Transform -- uid: 1248 - type: Carpet - components: - - pos: -17.5,16.5 - parent: 0 - type: Transform -- uid: 1249 - type: Carpet - components: - - pos: -17.5,15.5 - parent: 0 - type: Transform -- uid: 1250 - type: Carpet - components: - - pos: -16.5,21.5 - parent: 0 - type: Transform -- uid: 1251 - type: Carpet - components: - - pos: -16.5,20.5 - parent: 0 - type: Transform -- uid: 1252 - type: Carpet - components: - - pos: -16.5,19.5 - parent: 0 - type: Transform -- uid: 1253 - type: Carpet - components: - - pos: -16.5,18.5 - parent: 0 - type: Transform -- uid: 1254 - type: Carpet - components: - - pos: -16.5,17.5 - parent: 0 - type: Transform -- uid: 1255 - type: Carpet - components: - - pos: -16.5,16.5 - parent: 0 - type: Transform -- uid: 1256 - type: Carpet - components: - - pos: -16.5,15.5 - parent: 0 - type: Transform -- uid: 1257 - type: Carpet - components: - - pos: -15.5,21.5 - parent: 0 - type: Transform -- uid: 1258 - type: Carpet - components: - - pos: -15.5,20.5 - parent: 0 - type: Transform -- uid: 1259 - type: Carpet - components: - - pos: -15.5,19.5 - parent: 0 - type: Transform -- uid: 1260 - type: Carpet - components: - - pos: -15.5,18.5 - parent: 0 - type: Transform -- uid: 1261 - type: Carpet - components: - - pos: -15.5,17.5 - parent: 0 - type: Transform -- uid: 1262 - type: Carpet - components: - - pos: -15.5,16.5 - parent: 0 - type: Transform -- uid: 1263 - type: Carpet - components: - - pos: -15.5,15.5 - parent: 0 - type: Transform -- uid: 1264 - type: Carpet - components: - - pos: -14.5,21.5 - parent: 0 - type: Transform -- uid: 1265 - type: Carpet - components: - - pos: -14.5,20.5 - parent: 0 - type: Transform -- uid: 1266 - type: Carpet - components: - - pos: -14.5,19.5 - parent: 0 - type: Transform -- uid: 1267 - type: Carpet - components: - - pos: -14.5,18.5 - parent: 0 - type: Transform -- uid: 1268 - type: Carpet - components: - - pos: -14.5,17.5 - parent: 0 - type: Transform -- uid: 1269 - type: Carpet - components: - - pos: -14.5,16.5 - parent: 0 - type: Transform -- uid: 1270 - type: Carpet - components: - - pos: -14.5,15.5 - parent: 0 - type: Transform -- uid: 1271 - type: Carpet - components: - - pos: -13.5,21.5 - parent: 0 - type: Transform -- uid: 1272 - type: Carpet - components: - - pos: -13.5,20.5 - parent: 0 - type: Transform -- uid: 1273 - type: Carpet - components: - - pos: -13.5,19.5 - parent: 0 - type: Transform -- uid: 1274 - type: Carpet - components: - - pos: -13.5,18.5 - parent: 0 - type: Transform -- uid: 1275 - type: Carpet - components: - - pos: -13.5,17.5 - parent: 0 - type: Transform -- uid: 1276 - type: Carpet - components: - - pos: -13.5,16.5 - parent: 0 - type: Transform -- uid: 1277 - type: Carpet - components: - - pos: -13.5,15.5 - parent: 0 - type: Transform -- uid: 1278 - type: Carpet - components: - - pos: -12.5,21.5 - parent: 0 - type: Transform -- uid: 1279 - type: Carpet - components: - - pos: -12.5,20.5 - parent: 0 - type: Transform -- uid: 1280 - type: Carpet - components: - - pos: -12.5,19.5 - parent: 0 - type: Transform -- uid: 1281 - type: Carpet - components: - - pos: -12.5,18.5 - parent: 0 - type: Transform -- uid: 1282 - type: Carpet - components: - - pos: -12.5,17.5 - parent: 0 - type: Transform -- uid: 1283 - type: Carpet - components: - - pos: -12.5,16.5 - parent: 0 - type: Transform -- uid: 1284 - type: Carpet - components: - - pos: -12.5,15.5 - parent: 0 - type: Transform -- uid: 1285 - type: Carpet - components: - - pos: -11.5,21.5 - parent: 0 - type: Transform -- uid: 1286 - type: Carpet - components: - - pos: -11.5,20.5 - parent: 0 - type: Transform -- uid: 1287 - type: Carpet - components: - - pos: -11.5,19.5 - parent: 0 - type: Transform -- uid: 1288 - type: Carpet - components: - - pos: -11.5,18.5 - parent: 0 - type: Transform -- uid: 1289 - type: Carpet - components: - - pos: -11.5,17.5 - parent: 0 - type: Transform -- uid: 1290 - type: Carpet - components: - - pos: -11.5,16.5 - parent: 0 - type: Transform -- uid: 1291 - type: Carpet - components: - - pos: -11.5,15.5 - parent: 0 - type: Transform -- uid: 1292 - type: BlockGameArcade - components: - - pos: -21.5,22.5 - parent: 0 - type: Transform -- uid: 1293 - type: PottedPlantRandom - components: - - pos: -19.5,22.5 - parent: 0 - type: Transform -- uid: 1294 - type: PottedPlantRandom - components: - - pos: -10.5,22.5 - parent: 0 - type: Transform -- uid: 1295 - type: Cigar - components: - - pos: -13.479265,20.553028 - parent: 0 - type: Transform -- uid: 1296 - type: ClothingHeadHatFedoraGrey - components: - - pos: -18.49489,20.615528 - parent: 0 - type: Transform -- uid: 1297 - type: DiceBag - components: - - pos: -17.510515,19.568653 - parent: 0 - type: Transform -- uid: 1298 - type: ClothingHeadHatCake - components: - - pos: -17.52614,16.568653 - parent: 0 - type: Transform -- uid: 1299 - type: SmokingPipeFilledTobacco - components: - - pos: -15.385515,16.599903 - parent: 0 - type: Transform -- uid: 1300 - type: MonkeyCubeWrapped - components: - - pos: -19.19959,26.755571 - parent: 0 - type: Transform -- uid: 1301 - type: ExtinguisherCabinetFilled - components: - - pos: -9.5,15.5 - parent: 0 - type: Transform -- uid: 1302 - type: ExtinguisherCabinetFilled - components: - - pos: -15.5,8.5 - parent: 0 - type: Transform -- uid: 1303 - type: ExtinguisherCabinetFilled - components: - - pos: -3.5,23.5 - parent: 0 - type: Transform -- uid: 1304 - type: ExtinguisherCabinetFilled - components: - - pos: -7.5,26.5 - parent: 0 - type: Transform -- uid: 1305 - type: ExtinguisherCabinetFilled - components: - - pos: -11.5,30.5 - parent: 0 - type: Transform -- uid: 1306 - type: ExtinguisherCabinetFilled - components: - - pos: -12.5,31.5 - parent: 0 - type: Transform -- uid: 1307 - type: ExtinguisherCabinetFilled - components: - - pos: -13.5,37.5 - parent: 0 - type: Transform -- uid: 1308 - type: ExtinguisherCabinetFilled - components: - - pos: -15.5,43.5 - parent: 0 - type: Transform -- uid: 1309 - type: WindoorHydroponicsLocked - components: - - rot: -1.5707963267948966 rad - pos: -2.5,34.5 - parent: 0 - type: Transform -- uid: 1310 - type: WindoorHydroponicsLocked - components: - - rot: -1.5707963267948966 rad - pos: -2.5,35.5 - parent: 0 - type: Transform -- uid: 1311 - type: ShuttersNormalOpen - components: - - pos: -2.5,34.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1317 - type: SignalReceiver -- uid: 1312 - type: ShuttersNormalOpen - components: - - pos: -2.5,35.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1317 - type: SignalReceiver -- uid: 1313 - type: ShuttersNormalOpen - components: - - pos: -2.5,36.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1317 - type: SignalReceiver -- uid: 1314 - type: ShuttersNormalOpen - components: - - pos: -2.5,39.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1317 - type: SignalReceiver -- uid: 1315 - type: ShuttersNormalOpen - components: - - pos: -8.5,43.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1317 - type: SignalReceiver -- uid: 1316 - type: ShuttersNormalOpen - components: - - pos: -11.5,43.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1317 - type: SignalReceiver -- uid: 1317 - type: SignalButton - components: - - name: Window Shutters - type: MetaData - - pos: -7.5,37.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1316 - - port: Toggle - uid: 1315 - - port: Toggle - uid: 1314 - - port: Toggle - uid: 1313 - - port: Toggle - uid: 1312 - - port: Toggle - uid: 1311 - type: SignalTransmitter -- uid: 1318 - type: hydroponicsTray - components: - - pos: -9.5,36.5 - parent: 0 - type: Transform -- uid: 1319 - type: hydroponicsTray - components: - - pos: -9.5,37.5 - parent: 0 - type: Transform -- uid: 1320 - type: hydroponicsTray - components: - - pos: -9.5,38.5 - parent: 0 - type: Transform -- uid: 1321 - type: hydroponicsTray - components: - - pos: -10.5,36.5 - parent: 0 - type: Transform -- uid: 1322 - type: hydroponicsTray - components: - - pos: -10.5,37.5 - parent: 0 - type: Transform -- uid: 1323 - type: hydroponicsTray - components: - - pos: -10.5,38.5 - parent: 0 - type: Transform -- uid: 1324 - type: hydroponicsTray - components: - - pos: -12.5,36.5 - parent: 0 - type: Transform -- uid: 1325 - type: hydroponicsTray - components: - - pos: -12.5,37.5 - parent: 0 - type: Transform -- uid: 1326 - type: hydroponicsTray - components: - - pos: -12.5,38.5 - parent: 0 - type: Transform -- uid: 1327 - type: hydroponicsTray - components: - - pos: -12.5,41.5 - parent: 0 - type: Transform -- uid: 1328 - type: hydroponicsTray - components: - - pos: -12.5,42.5 - parent: 0 - type: Transform -- uid: 1329 - type: hydroponicsTray - components: - - pos: -10.5,42.5 - parent: 0 - type: Transform -- uid: 1330 - type: hydroponicsTray - components: - - pos: -9.5,42.5 - parent: 0 - type: Transform -- uid: 1331 - type: hydroponicsTray - components: - - pos: -9.5,41.5 - parent: 0 - type: Transform -- uid: 1332 - type: hydroponicsTray - components: - - pos: -10.5,41.5 - parent: 0 - type: Transform -- uid: 1333 - type: hydroponicsTray - components: - - pos: -7.5,41.5 - parent: 0 - type: Transform -- uid: 1334 - type: hydroponicsTray - components: - - pos: -7.5,42.5 - parent: 0 - type: Transform -- uid: 1335 - type: MountainRock - components: - - pos: -6.5,7.5 - parent: 0 - type: Transform -- uid: 1336 - type: MountainRock - components: - - pos: -7.5,7.5 - parent: 0 - type: Transform -- uid: 1337 - type: VendingMachineSeeds - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,36.5 - parent: 0 - type: Transform -- uid: 1338 - type: LockerBotanistFilled - components: - - pos: -16.5,39.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1339 - type: LockerBotanistFilled - components: - - pos: -16.5,40.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1340 - type: LockerBotanistFilled - components: - - pos: -16.5,41.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1341 - type: VendingMachineHydrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,42.5 - parent: 0 - type: Transform -- uid: 1342 - type: Table - components: - - pos: -7.5,34.5 - parent: 0 - type: Transform -- uid: 1343 - type: Table - components: - - pos: -6.5,34.5 - parent: 0 - type: Transform -- uid: 1344 - type: Table - components: - - pos: -3.5,40.5 - parent: 0 - type: Transform -- uid: 1345 - type: Table - components: - - pos: -3.5,39.5 - parent: 0 - type: Transform -- uid: 1346 - type: ExtinguisherCabinetFilled - components: - - pos: -2.5,29.5 - parent: 0 - type: Transform -- uid: 1347 - type: ExtinguisherCabinetFilled - components: - - pos: -7.5,43.5 - parent: 0 - type: Transform -- uid: 1348 - type: WindowReinforcedDirectional - components: - - pos: -5.5,41.5 - parent: 0 - type: Transform -- uid: 1349 - type: WindowReinforcedDirectional - components: - - pos: -3.5,41.5 - parent: 0 - type: Transform -- uid: 1350 - type: WindoorHydroponicsLocked - components: - - pos: -4.5,41.5 - parent: 0 - type: Transform -- uid: 1351 - type: VendingMachineNutri - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,37.5 - parent: 0 - type: Transform -- uid: 1352 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: -3.5,38.5 - parent: 0 - type: Transform -- uid: 1353 - type: CrateHydroponicsTools - components: - - pos: -14.5,37.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1354 - type: Rack - components: - - pos: -16.5,37.5 - parent: 0 - type: Transform -- uid: 1355 - type: Table - components: - - pos: -14.5,40.5 - parent: 0 - type: Transform -- uid: 1356 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: -15.5,42.5 - parent: 0 - type: Transform -- uid: 1357 - type: FoamCrossbow - components: - - pos: -3.466642,10.609021 - parent: 0 - type: Transform -- uid: 1358 - type: FirelockGlass - components: - - pos: -11.5,32.5 - parent: 0 - type: Transform -- uid: 1359 - type: SeedExtractor - components: - - pos: -6.5,38.5 - parent: 0 - type: Transform -- uid: 1360 - type: SeedExtractor - components: - - pos: -6.5,36.5 - parent: 0 - type: Transform -- uid: 1361 - type: CarpetPurple - components: - - pos: -18.5,12.5 - parent: 0 - type: Transform -- uid: 1362 - type: CarpetPurple - components: - - pos: -18.5,11.5 - parent: 0 - type: Transform -- uid: 1363 - type: CarpetPurple - components: - - pos: -18.5,10.5 - parent: 0 - type: Transform -- uid: 1364 - type: CarpetPurple - components: - - pos: -17.5,12.5 - parent: 0 - type: Transform -- uid: 1365 - type: CarpetPurple - components: - - pos: -17.5,11.5 - parent: 0 - type: Transform -- uid: 1366 - type: CarpetPurple - components: - - pos: -17.5,10.5 - parent: 0 - type: Transform -- uid: 1367 - type: CrateNPCChicken - components: - - pos: -5.5,42.5 - parent: 0 - type: Transform - - air: - volume: 800 - immutable: False - temperature: 293.14987 - moles: - - 12.392727 - - 46.620262 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1368 - type: Rack - components: - - pos: -7.5,36.5 - parent: 0 - type: Transform -- uid: 1369 - type: Rack - components: - - pos: -7.5,38.5 - parent: 0 - type: Transform -- uid: 1370 - type: RandomSoap - components: - - pos: -19.5,12.5 - parent: 0 - type: Transform -- uid: 1371 - type: BagpipeInstrument - components: - - pos: -19.543776,11.515889 - parent: 0 - type: Transform -- uid: 1372 - type: ClarinetInstrument - components: - - pos: -19.46565,10.906514 - parent: 0 - type: Transform -- uid: 1373 - type: ContrabassInstrument - components: - - pos: -18.5,9.5 - parent: 0 - type: Transform -- uid: 1374 - type: RockGuitarInstrument - components: - - pos: -19.486994,10.281514 - parent: 0 - type: Transform -- uid: 1375 - type: ClothingHeadHatWitch - components: - - pos: -19.533869,9.547139 - parent: 0 - type: Transform -- uid: 1376 - type: MopItem - components: - - pos: -19.611994,9.531514 - parent: 0 - type: Transform -- uid: 1377 - type: RandomDrinkGlass - components: - - pos: -17.5,23.5 - parent: 0 - type: Transform -- uid: 1378 - type: RandomDrinkGlass - components: - - pos: -14.5,23.5 - parent: 0 - type: Transform -- uid: 1379 - type: RandomFoodSingle - components: - - pos: -9.5,20.5 - parent: 0 - type: Transform -- uid: 1380 - type: RandomFoodSingle - components: - - pos: -3.5,19.5 - parent: 0 - type: Transform -- uid: 1381 - type: Catwalk - components: - - pos: -47.5,10.5 - parent: 0 - type: Transform -- uid: 1382 - type: WallSolid - components: - - pos: 1.5,31.5 - parent: 0 - type: Transform -- uid: 1383 - type: WallSolid - components: - - pos: 3.5,31.5 - parent: 0 - type: Transform -- uid: 1384 - type: WallSolid - components: - - pos: 4.5,31.5 - parent: 0 - type: Transform -- uid: 1385 - type: WallSolid - components: - - pos: 6.5,31.5 - parent: 0 - type: Transform -- uid: 1386 - type: WallSolid - components: - - pos: 7.5,31.5 - parent: 0 - type: Transform -- uid: 1387 - type: WallSolid - components: - - pos: 7.5,30.5 - parent: 0 - type: Transform -- uid: 1388 - type: WallSolid - components: - - pos: 1.5,26.5 - parent: 0 - type: Transform -- uid: 1389 - type: WallSolid - components: - - pos: 1.5,25.5 - parent: 0 - type: Transform -- uid: 1390 - type: WallSolid - components: - - pos: 1.5,20.5 - parent: 0 - type: Transform -- uid: 1391 - type: WallSolid - components: - - pos: 2.5,20.5 - parent: 0 - type: Transform -- uid: 1392 - type: WallReinforced - components: - - pos: 3.5,18.5 - parent: 0 - type: Transform -- uid: 1393 - type: WallReinforced - components: - - pos: 6.5,17.5 - parent: 0 - type: Transform -- uid: 1394 - type: WallReinforced - components: - - pos: 4.5,20.5 - parent: 0 - type: Transform -- uid: 1395 - type: WallReinforced - components: - - pos: 6.5,20.5 - parent: 0 - type: Transform -- uid: 1396 - type: WallReinforced - components: - - pos: 5.5,20.5 - parent: 0 - type: Transform -- uid: 1397 - type: WallSolid - components: - - pos: 7.5,21.5 - parent: 0 - type: Transform -- uid: 1398 - type: WallSolid - components: - - pos: 8.5,25.5 - parent: 0 - type: Transform -- uid: 1399 - type: WallSolid - components: - - pos: 8.5,27.5 - parent: 0 - type: Transform -- uid: 1400 - type: WallSolid - components: - - pos: 8.5,26.5 - parent: 0 - type: Transform -- uid: 1401 - type: WallSolid - components: - - pos: 7.5,28.5 - parent: 0 - type: Transform -- uid: 1402 - type: WallSolid - components: - - pos: 7.5,23.5 - parent: 0 - type: Transform -- uid: 1403 - type: ReinforcedWindow - components: - - pos: 5.5,31.5 - parent: 0 - type: Transform -- uid: 1404 - type: ReinforcedWindow - components: - - pos: 2.5,31.5 - parent: 0 - type: Transform -- uid: 1405 - type: ReinforcedWindow - components: - - pos: 1.5,30.5 - parent: 0 - type: Transform -- uid: 1406 - type: ReinforcedWindow - components: - - pos: 1.5,27.5 - parent: 0 - type: Transform -- uid: 1407 - type: ReinforcedWindow - components: - - pos: 1.5,24.5 - parent: 0 - type: Transform -- uid: 1408 - type: ReinforcedWindow - components: - - pos: 1.5,21.5 - parent: 0 - type: Transform -- uid: 1409 - type: MountainRock - components: - - pos: -5.5,7.5 - parent: 0 - type: Transform -- uid: 1410 - type: MountainRock - components: - - pos: -4.5,7.5 - parent: 0 - type: Transform -- uid: 1411 - type: MountainRock - components: - - pos: -3.5,7.5 - parent: 0 - type: Transform -- uid: 1412 - type: MountainRock - components: - - pos: -12.5,6.5 - parent: 0 - type: Transform -- uid: 1413 - type: MountainRock - components: - - pos: -11.5,6.5 - parent: 0 - type: Transform -- uid: 1414 - type: MountainRock - components: - - pos: -10.5,6.5 - parent: 0 - type: Transform -- uid: 1415 - type: MountainRock - components: - - pos: -9.5,6.5 - parent: 0 - type: Transform -- uid: 1416 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -7.5,6.5 - parent: 0 - type: Transform -- uid: 1417 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -6.5,6.5 - parent: 0 - type: Transform -- uid: 1418 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 0 - type: Transform -- uid: 1419 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -4.5,6.5 - parent: 0 - type: Transform -- uid: 1420 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -3.5,6.5 - parent: 0 - type: Transform -- uid: 1421 - type: RailingCornerSmall - components: - - pos: -2.5,6.5 - parent: 0 - type: Transform -- uid: 1422 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -3.5,31.5 - parent: 0 - type: Transform -- uid: 1423 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -3.5,35.5 - parent: 0 - type: Transform -- uid: 1424 - type: BookBotanicalTextbook - components: - - pos: -7.4347258,34.70331 - parent: 0 - type: Transform -- uid: 1425 - type: HandLabeler - components: - - pos: -7.2316008,34.45331 - parent: 0 - type: Transform -- uid: 1426 - type: WeedSpray - components: - - pos: -6.6378508,34.593933 - parent: 0 - type: Transform -- uid: 1427 - type: PlantBGoneSpray - components: - - pos: -6.3097258,34.54706 - parent: 0 - type: Transform -- uid: 1428 - type: KitchenReagentGrinder - components: - - pos: -3.5,40.5 - parent: 0 - type: Transform -- uid: 1429 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: -15.5,27.5 - parent: 0 - type: Transform -- uid: 1430 - type: FirelockGlass - components: - - pos: -15.5,27.5 - parent: 0 - type: Transform -- uid: 1431 - type: SignalButton - components: - - name: Bar-Kitchen Button - type: MetaData - - pos: -12.5,26.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1432 - type: SignalTransmitter -- uid: 1432 - type: ShuttersNormalOpen - components: - - pos: -12.5,25.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1431 - type: SignalReceiver -- uid: 1433 - type: Bed - components: - - pos: -14.5,28.5 - parent: 0 - type: Transform -- uid: 1434 - type: BedsheetSpawner - components: - - pos: -14.5,28.5 - parent: 0 - type: Transform -- uid: 1435 - type: FirelockGlass - components: - - pos: 25.5,-7.5 - parent: 0 - type: Transform -- uid: 1436 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -13.5,33.5 - parent: 0 - type: Transform -- uid: 1437 - type: WaterTankHighCapacity - components: - - pos: -13.5,33.5 - parent: 0 - type: Transform -- uid: 1438 - type: WaterTankHighCapacity - components: - - pos: -12.5,33.5 - parent: 0 - type: Transform -- uid: 1439 - type: PottedPlant10 - components: - - pos: -14.495644,33.32644 - parent: 0 - type: Transform -- uid: 1440 - type: Table - components: - - pos: -14.5,34.5 - parent: 0 - type: Transform -- uid: 1441 - type: Table - components: - - pos: -14.5,35.5 - parent: 0 - type: Transform -- uid: 1442 - type: Bucket - components: - - pos: -14.542519,34.82644 - parent: 0 - type: Transform -- uid: 1443 - type: Bucket - components: - - pos: -14.370644,34.685814 - parent: 0 - type: Transform -- uid: 1444 - type: CrateHydroponicsTools - components: - - pos: -16.5,35.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1445 - type: CrateServiceJanitorialSupplies - components: - - pos: -16.5,34.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1446 - type: Poweredlight - components: - - pos: -3.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1447 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1448 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1449 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1450 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -11.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1451 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1452 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1453 - type: PianoInstrument - components: - - rot: 1.5707963267948966 rad - pos: -17.5,9.5 - parent: 0 - type: Transform -- uid: 1454 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1455 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1456 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1457 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -12.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1458 - type: PoweredSmallLight - components: - - pos: -17.5,30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1459 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1460 - type: Poweredlight - components: - - pos: -13.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1461 - type: Poweredlight - components: - - pos: -19.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1462 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1463 - type: Poweredlight - components: - - pos: -12.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1464 - type: Poweredlight - components: - - pos: -19.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1465 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -6.5,17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1466 - type: Poweredlight - components: - - pos: -7.5,24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1467 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1468 - type: Poweredlight - components: - - pos: -6.5,32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1469 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -12.5,32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1470 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1471 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -14.5,37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1472 - type: PoweredSmallLight - components: - - pos: -15.5,42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1473 - type: Poweredlight - components: - - pos: -4.5,42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1474 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1475 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1476 - type: Poweredlight - components: - - pos: -9.5,42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1477 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -6.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1478 - type: AirlockMaintJanitorLocked - components: - - name: Janitor Closet - type: MetaData - - pos: 6.5,10.5 - parent: 0 - type: Transform -- uid: 1479 - type: AirlockMaintJanitorLocked - components: - - name: Janitor Closet - type: MetaData - - pos: 3.5,14.5 - parent: 0 - type: Transform -- uid: 1480 - type: AirlockJanitorLocked - components: - - name: Janitor Closet - type: MetaData - - rot: 3.141592653589793 rad - pos: 1.5,12.5 - parent: 0 - type: Transform -- uid: 1481 - type: WallSolid - components: - - pos: 2.5,16.5 - parent: 0 - type: Transform -- uid: 1482 - type: WallSolid - components: - - pos: 3.5,16.5 - parent: 0 - type: Transform -- uid: 1483 - type: WallReinforced - components: - - pos: 3.5,17.5 - parent: 0 - type: Transform -- uid: 1484 - type: WallReinforced - components: - - pos: 3.5,20.5 - parent: 0 - type: Transform -- uid: 1485 - type: WallReinforced - components: - - pos: 3.5,19.5 - parent: 0 - type: Transform -- uid: 1486 - type: DisposalUnit - components: - - pos: 2.5,11.5 - parent: 0 - type: Transform -- uid: 1487 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 2.5,11.5 - parent: 0 - type: Transform -- uid: 1488 - type: DisposalBend - components: - - pos: 2.5,12.5 - parent: 0 - type: Transform -- uid: 1489 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,12.5 - parent: 0 - type: Transform -- uid: 1490 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,12.5 - parent: 0 - type: Transform -- uid: 1491 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: 6.5,12.5 - parent: 0 - type: Transform -- uid: 1492 - type: ShuttersNormal - components: - - pos: 3.5,7.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1494 - type: SignalReceiver -- uid: 1493 - type: ShuttersNormal - components: - - pos: 4.5,7.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1494 - type: SignalReceiver -- uid: 1494 - type: SignalButton - components: - - pos: 6.5,11.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1493 - - port: Toggle - uid: 1492 - type: SignalTransmitter -- uid: 1495 - type: TableReinforced - components: - - pos: 2.5,8.5 - parent: 0 - type: Transform -- uid: 1496 - type: TableReinforced - components: - - pos: 2.5,9.5 - parent: 0 - type: Transform -- uid: 1497 - type: TableReinforced - components: - - pos: 2.5,10.5 - parent: 0 - type: Transform -- uid: 1498 - type: VendingMachineJaniDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,13.5 - parent: 0 - type: Transform -- uid: 1499 - type: SpawnVehicleJanicart - components: - - pos: 4.5,10.5 - parent: 0 - type: Transform -- uid: 1500 - type: ClosetL3JanitorFilled - components: - - pos: 6.5,13.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1501 - type: ClosetJanitorFilled - components: - - pos: 5.5,13.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1502 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 5.5,11.5 - parent: 0 - type: Transform -- uid: 1503 - type: WaterTankFull - components: - - pos: 5.5,9.5 - parent: 0 - type: Transform -- uid: 1504 - type: FloorDrain - components: - - pos: 5.5,8.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 1505 - type: VehicleKeyJanicart - components: - - pos: 2.5370955,10.514563 - parent: 0 - type: Transform -- uid: 1506 - type: JanitorialTrolley - components: - - pos: 4.5,13.5 - parent: 0 - type: Transform -- uid: 1507 - type: APCBasic - components: - - pos: 4.5,14.5 - parent: 0 - type: Transform -- uid: 1508 - type: CableApcExtension - components: - - pos: 4.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1509 - type: CableApcExtension - components: - - pos: 4.5,13.5 - parent: 0 - type: Transform -- uid: 1510 - type: CableApcExtension - components: - - pos: 4.5,12.5 - parent: 0 - type: Transform -- uid: 1511 - type: CableApcExtension - components: - - pos: 4.5,11.5 - parent: 0 - type: Transform -- uid: 1512 - type: CableApcExtension - components: - - pos: 4.5,10.5 - parent: 0 - type: Transform -- uid: 1513 - type: CableApcExtension - components: - - pos: 4.5,9.5 - parent: 0 - type: Transform -- uid: 1514 - type: CableApcExtension - components: - - pos: 4.5,8.5 - parent: 0 - type: Transform -- uid: 1515 - type: GasPipeBend - components: - - pos: 3.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1516 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1517 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1518 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1519 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1520 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1521 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1522 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1523 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1524 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -6.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1525 - type: GasPipeTJunction - components: - - pos: 5.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1526 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1527 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 4.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1528 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1529 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1530 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1531 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1532 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1533 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1534 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1535 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1536 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1537 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1538 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1539 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1540 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1541 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 3.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1542 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1543 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1544 - type: GasVentScrubber - components: - - pos: 4.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1545 - type: PosterLegitCleanliness - components: - - pos: 1.5,8.5 - parent: 0 - type: Transform -- uid: 1546 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 1.5,9.5 - parent: 0 - type: Transform - - devices: - - 1544 - - 1541 - type: DeviceList -- uid: 1547 - type: FirelockGlass - components: - - pos: -1.5,7.5 - parent: 0 - type: Transform -- uid: 1548 - type: FirelockGlass - components: - - pos: -0.5,7.5 - parent: 0 - type: Transform -- uid: 1549 - type: FirelockGlass - components: - - pos: 0.5,7.5 - parent: 0 - type: Transform -- uid: 1550 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1551 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1552 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1553 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -2.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1554 - type: GasVentPump - components: - - pos: -0.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1555 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -0.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1556 - type: WallSolid - components: - - pos: 6.5,-3.5 - parent: 0 - type: Transform -- uid: 1557 - type: WallSolid - components: - - pos: 7.5,-3.5 - parent: 0 - type: Transform -- uid: 1558 - type: WallSolid - components: - - pos: 7.5,-2.5 - parent: 0 - type: Transform -- uid: 1559 - type: WallSolid - components: - - pos: 8.5,-3.5 - parent: 0 - type: Transform -- uid: 1560 - type: WallSolid - components: - - pos: 9.5,-3.5 - parent: 0 - type: Transform -- uid: 1561 - type: WallSolid - components: - - pos: 10.5,-3.5 - parent: 0 - type: Transform -- uid: 1562 - type: WallSolid - components: - - pos: 11.5,-3.5 - parent: 0 - type: Transform -- uid: 1563 - type: WallSolid - components: - - pos: 12.5,-3.5 - parent: 0 - type: Transform -- uid: 1564 - type: WallSolid - components: - - pos: 12.5,-2.5 - parent: 0 - type: Transform -- uid: 1565 - type: WallSolid - components: - - pos: 12.5,-1.5 - parent: 0 - type: Transform -- uid: 1566 - type: WallSolid - components: - - pos: 12.5,0.5 - parent: 0 - type: Transform -- uid: 1567 - type: WallSolid - components: - - pos: 12.5,1.5 - parent: 0 - type: Transform -- uid: 1568 - type: WallSolid - components: - - pos: 11.5,1.5 - parent: 0 - type: Transform -- uid: 1569 - type: WallSolid - components: - - pos: 10.5,1.5 - parent: 0 - type: Transform -- uid: 1570 - type: WallSolid - components: - - pos: 9.5,1.5 - parent: 0 - type: Transform -- uid: 1571 - type: WallSolid - components: - - pos: 8.5,1.5 - parent: 0 - type: Transform -- uid: 1572 - type: WallSolid - components: - - pos: 7.5,1.5 - parent: 0 - type: Transform -- uid: 1573 - type: WallSolid - components: - - pos: 6.5,1.5 - parent: 0 - type: Transform -- uid: 1574 - type: WallSolid - components: - - pos: 7.5,5.5 - parent: 0 - type: Transform -- uid: 1575 - type: WallSolid - components: - - pos: 7.5,6.5 - parent: 0 - type: Transform -- uid: 1576 - type: WallSolid - components: - - pos: 7.5,7.5 - parent: 0 - type: Transform -- uid: 1577 - type: WallSolid - components: - - pos: 12.5,2.5 - parent: 0 - type: Transform -- uid: 1578 - type: WallSolid - components: - - pos: 12.5,4.5 - parent: 0 - type: Transform -- uid: 1579 - type: WallSolid - components: - - pos: 12.5,5.5 - parent: 0 - type: Transform -- uid: 1580 - type: WallSolid - components: - - pos: 12.5,6.5 - parent: 0 - type: Transform -- uid: 1581 - type: WallSolid - components: - - pos: 11.5,6.5 - parent: 0 - type: Transform -- uid: 1582 - type: WallSolid - components: - - pos: 10.5,6.5 - parent: 0 - type: Transform -- uid: 1583 - type: WallSolid - components: - - pos: 9.5,6.5 - parent: 0 - type: Transform -- uid: 1584 - type: WallSolid - components: - - pos: 8.5,6.5 - parent: 0 - type: Transform -- uid: 1585 - type: WallSolid - components: - - pos: 13.5,1.5 - parent: 0 - type: Transform -- uid: 1586 - type: WallSolid - components: - - pos: 14.5,1.5 - parent: 0 - type: Transform -- uid: 1587 - type: WallSolid - components: - - pos: 15.5,1.5 - parent: 0 - type: Transform -- uid: 1588 - type: WallSolid - components: - - pos: 15.5,0.5 - parent: 0 - type: Transform -- uid: 1589 - type: WallSolid - components: - - pos: 15.5,-1.5 - parent: 0 - type: Transform -- uid: 1590 - type: WallSolid - components: - - pos: 15.5,-2.5 - parent: 0 - type: Transform -- uid: 1591 - type: WallSolid - components: - - pos: 15.5,-3.5 - parent: 0 - type: Transform -- uid: 1592 - type: WallSolid - components: - - pos: 14.5,-3.5 - parent: 0 - type: Transform -- uid: 1593 - type: WallSolid - components: - - pos: 13.5,-3.5 - parent: 0 - type: Transform -- uid: 1594 - type: WallSolid - components: - - pos: 15.5,2.5 - parent: 0 - type: Transform -- uid: 1595 - type: WallSolid - components: - - pos: 15.5,4.5 - parent: 0 - type: Transform -- uid: 1596 - type: WallSolid - components: - - pos: 15.5,5.5 - parent: 0 - type: Transform -- uid: 1597 - type: WallSolid - components: - - pos: 15.5,6.5 - parent: 0 - type: Transform -- uid: 1598 - type: WallSolid - components: - - pos: 14.5,6.5 - parent: 0 - type: Transform -- uid: 1599 - type: WallSolid - components: - - pos: 13.5,6.5 - parent: 0 - type: Transform -- uid: 1600 - type: GasPipeStraight - components: - - pos: -6.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1601 - type: GasPipeStraight - components: - - pos: -6.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1602 - type: GasPipeStraight - components: - - pos: -6.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1603 - type: GasPipeStraight - components: - - pos: -6.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1604 - type: GasPipeStraight - components: - - pos: -6.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1605 - type: GasPipeStraight - components: - - pos: -6.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1606 - type: GasPipeStraight - components: - - pos: -6.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1607 - type: GasPipeStraight - components: - - pos: -6.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1608 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -6.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1609 - type: GasPipeFourway - components: - - pos: -10.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1610 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1611 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1612 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1613 - type: GasPipeStraight - components: - - pos: -10.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1614 - type: GasPipeStraight - components: - - pos: -10.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1615 - type: GasPipeStraight - components: - - pos: -10.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1616 - type: GasVentPump - components: - - pos: -10.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1617 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -10.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1618 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -11.5,0.5 - parent: 0 - type: Transform -- uid: 1619 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -10.5,0.5 - parent: 0 - type: Transform -- uid: 1620 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -10.5,1.5 - parent: 0 - type: Transform -- uid: 1621 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -10.5,2.5 - parent: 0 - type: Transform -- uid: 1622 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -10.5,3.5 - parent: 0 - type: Transform -- uid: 1623 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -10.5,4.5 - parent: 0 - type: Transform -- uid: 1624 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -9.5,4.5 - parent: 0 - type: Transform -- uid: 1625 - type: AirlockCommandGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: -10.5,3.5 - parent: 0 - type: Transform -- uid: 1626 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 0 - type: Transform -- uid: 1627 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 0 - type: Transform -- uid: 1628 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 0 - type: Transform -- uid: 1629 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -7.5,0.5 - parent: 0 - type: Transform -- uid: 1630 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 0 - type: Transform -- uid: 1631 - type: Window - components: - - pos: -2.5,3.5 - parent: 0 - type: Transform -- uid: 1632 - type: Window - components: - - pos: -1.5,3.5 - parent: 0 - type: Transform -- uid: 1633 - type: Window - components: - - pos: 0.5,3.5 - parent: 0 - type: Transform -- uid: 1634 - type: Window - components: - - pos: 1.5,3.5 - parent: 0 - type: Transform -- uid: 1635 - type: PosterContrabandBeachStarYamamoto - components: - - pos: 5.5,14.5 - parent: 0 - type: Transform -- uid: 1636 - type: SignSmoking - components: - - pos: 6.5,9.5 - parent: 0 - type: Transform -- uid: 1637 - type: ExtinguisherCabinetFilled - components: - - pos: 6.5,8.5 - parent: 0 - type: Transform -- uid: 1638 - type: ClothingHandsGlovesColorOrange - components: - - pos: 2.540441,9.915674 - parent: 0 - type: Transform -- uid: 1639 - type: PosterLegitNanotrasenLogo - components: - - pos: 2.5,14.5 - parent: 0 - type: Transform -- uid: 1640 - type: Mirror - components: - - pos: 7.5,12.5 - parent: 0 - type: Transform -- uid: 1641 - type: PosterLegitWorkForAFuture - components: - - pos: 7.5,13.5 - parent: 0 - type: Transform -- uid: 1642 - type: PoweredSmallLight - components: - - pos: 4.5,13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1643 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 2.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1644 - type: BoxLightMixed - components: - - pos: 2.5242877,9.415674 - parent: 0 - type: Transform -- uid: 1645 - type: BoxMousetrap - components: - - pos: 2.3033366,9.267429 - parent: 0 - type: Transform -- uid: 1646 - type: LightReplacer - components: - - pos: 2.6627116,8.986179 - parent: 0 - type: Transform -- uid: 1647 - type: LightReplacer - components: - - pos: 2.4595866,8.876804 - parent: 0 - type: Transform -- uid: 1648 - type: MopItem - components: - - pos: 5.4127116,8.611179 - parent: 0 - type: Transform -- uid: 1649 - type: MopBucket - components: - - pos: 5.5689616,8.470554 - parent: 0 - type: Transform -- uid: 1650 - type: Bucket - components: - - pos: 6.4752116,12.454929 - parent: 0 - type: Transform -- uid: 1651 - type: SpawnPointJanitor - components: - - pos: 3.5,11.5 - parent: 0 - type: Transform -- uid: 1652 - type: SpawnPointJanitor - components: - - pos: 4.5,12.5 - parent: 0 - type: Transform -- uid: 1653 - type: SignDirectionalJanitor - components: - - rot: 3.141592653589793 rad - pos: 2.5,7.5 - parent: 0 - type: Transform -- uid: 1654 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: 1.5271955,7.8106413 - parent: 0 - type: Transform -- uid: 1655 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 1.5271955,7.601759 - parent: 0 - type: Transform -- uid: 1656 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: 1.5324486,7.399826 - parent: 0 - type: Transform -- uid: 1657 - type: SignDirectionalMed - components: - - rot: 3.141592653589793 rad - pos: 1.5324486,7.196701 - parent: 0 - type: Transform -- uid: 1658 - type: SignDirectionalMed - components: - - rot: 3.141592653589793 rad - pos: 1.5105324,14.766833 - parent: 0 - type: Transform -- uid: 1659 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 1.5105324,14.563708 - parent: 0 - type: Transform -- uid: 1660 - type: SpawnPointClown - components: - - pos: -13.5,9.5 - parent: 0 - type: Transform -- uid: 1661 - type: SpawnPointMime - components: - - pos: -11.5,9.5 - parent: 0 - type: Transform -- uid: 1662 - type: SpawnPointMusician - components: - - pos: -12.5,9.5 - parent: 0 - type: Transform -- uid: 1663 - type: SignDirectionalSupply - components: - - pos: 1.5164549,14.357265 - parent: 0 - type: Transform -- uid: 1664 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: 1.5008299,14.15414 - parent: 0 - type: Transform -- uid: 1665 - type: APCBasic - components: - - pos: -2.5,7.5 - parent: 0 - type: Transform -- uid: 1666 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1667 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1668 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1669 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1670 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1671 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1672 - type: GasPipeTJunction - components: - - pos: -14.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1673 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1674 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1675 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1676 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1677 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1678 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1679 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1680 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1681 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1682 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1683 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1684 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1685 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1686 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1687 - type: GasPipeTJunction - components: - - pos: 8.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1688 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1689 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1690 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1691 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1692 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1693 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1694 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 3.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1695 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1696 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1697 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1698 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1699 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1700 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1701 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1702 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1703 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1704 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1705 - type: GasPipeTJunction - components: - - pos: -5.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1706 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1707 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1708 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1709 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1710 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1711 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1712 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1713 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1714 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1715 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1716 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -4.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1717 - type: GasPipeFourway - components: - - pos: 5.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1718 - type: GasPipeTJunction - components: - - pos: -3.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1719 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1720 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1721 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1722 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1723 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1724 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1725 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1726 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1727 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1728 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1729 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1730 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1731 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1732 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1733 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1734 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1735 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1736 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1737 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1738 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1739 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1740 - type: DisposalUnit - components: - - pos: -11.5,0.5 - parent: 0 - type: Transform -- uid: 1741 - type: DisposalUnit - components: - - pos: -0.5,2.5 - parent: 0 - type: Transform -- uid: 1742 - type: DisposalBend - components: - - pos: 4.5,5.5 - parent: 0 - type: Transform -- uid: 1743 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 4.5,-5.5 - parent: 0 - type: Transform -- uid: 1744 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 0 - type: Transform -- uid: 1745 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 0 - type: Transform -- uid: 1746 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 4.5,-2.5 - parent: 0 - type: Transform -- uid: 1747 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 4.5,-1.5 - parent: 0 - type: Transform -- uid: 1748 - type: DisposalJunction - components: - - pos: 4.5,-0.5 - parent: 0 - type: Transform -- uid: 1749 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 0 - type: Transform -- uid: 1750 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 0 - type: Transform -- uid: 1751 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 0 - type: Transform -- uid: 1752 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 0 - type: Transform -- uid: 1753 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 4.5,4.5 - parent: 0 - type: Transform -- uid: 1754 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,5.5 - parent: 0 - type: Transform -- uid: 1755 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,5.5 - parent: 0 - type: Transform -- uid: 1756 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,5.5 - parent: 0 - type: Transform -- uid: 1757 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 0 - type: Transform -- uid: 1758 - type: FirelockGlass - components: - - pos: -7.5,-6.5 - parent: 0 - type: Transform -- uid: 1759 - type: FirelockGlass - components: - - pos: -7.5,-5.5 - parent: 0 - type: Transform -- uid: 1760 - type: FirelockGlass - components: - - pos: -7.5,-4.5 - parent: 0 - type: Transform -- uid: 1761 - type: WallSolid - components: - - pos: 3.5,-8.5 - parent: 0 - type: Transform -- uid: 1762 - type: WallSolid - components: - - pos: 2.5,-8.5 - parent: 0 - type: Transform -- uid: 1763 - type: WallSolid - components: - - pos: 1.5,-8.5 - parent: 0 - type: Transform -- uid: 1764 - type: DisposalTrunk - components: - - pos: -0.5,2.5 - parent: 0 - type: Transform -- uid: 1765 - type: DisposalPipe - components: - - pos: -0.5,1.5 - parent: 0 - type: Transform -- uid: 1766 - type: DisposalPipe - components: - - pos: -0.5,0.5 - parent: 0 - type: Transform -- uid: 1767 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 0 - type: Transform -- uid: 1768 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 0 - type: Transform -- uid: 1769 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 0 - type: Transform -- uid: 1770 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 0 - type: Transform -- uid: 1771 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 0 - type: Transform -- uid: 1772 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 0 - type: Transform -- uid: 1773 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-5.5 - parent: 0 - type: Transform -- uid: 1774 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 0 - type: Transform -- uid: 1775 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-5.5 - parent: 0 - type: Transform -- uid: 1776 - type: BoxMouthSwab - components: - - pos: -15.496434,42.629738 - parent: 0 - type: Transform -- uid: 1777 - type: ClothingOuterApron - components: - - pos: -14.449559,40.645363 - parent: 0 - type: Transform -- uid: 1778 - type: ClothingHeadHatPumpkin - components: - - pos: -16.486374,37.67271 - parent: 0 - type: Transform -- uid: 1779 - type: SpawnPointBotanist - components: - - pos: -15.5,38.5 - parent: 0 - type: Transform -- uid: 1780 - type: SpawnPointBotanist - components: - - pos: -15.5,39.5 - parent: 0 - type: Transform -- uid: 1781 - type: SpawnPointBotanist - components: - - pos: -15.5,40.5 - parent: 0 - type: Transform -- uid: 1782 - type: ClothingHandsGlovesLeather - components: - - pos: -16.487217,37.46712 - parent: 0 - type: Transform -- uid: 1783 - type: Beaker - components: - - pos: -3.3360825,39.810913 - parent: 0 - type: Transform -- uid: 1784 - type: TableGlass - components: - - pos: -6.5,40.5 - parent: 0 - type: Transform -- uid: 1785 - type: TableGlass - components: - - pos: -5.5,40.5 - parent: 0 - type: Transform -- uid: 1786 - type: WheatBushel - components: - - pos: -5.5563426,40.685913 - parent: 0 - type: Transform -- uid: 1787 - type: WheatBushel - components: - - pos: -5.4157176,40.639038 - parent: 0 - type: Transform -- uid: 1788 - type: GalaxythistleSeeds - components: - - pos: -6.0250926,40.639038 - parent: 0 - type: Transform -- uid: 1789 - type: OnionSeeds - components: - - pos: -6.2594676,40.529663 - parent: 0 - type: Transform -- uid: 1790 - type: PoppySeeds - components: - - pos: -6.4625926,40.623413 - parent: 0 - type: Transform -- uid: 1791 - type: TomatoSeeds - components: - - pos: -6.7750926,40.529663 - parent: 0 - type: Transform -- uid: 1792 - type: RandomPosterLegit - components: - - pos: -6.5,33.5 - parent: 0 - type: Transform -- uid: 1793 - type: RandomPosterLegit - components: - - pos: -13.5,36.5 - parent: 0 - type: Transform -- uid: 1794 - type: ExtinguisherCabinetFilled - components: - - pos: -11.5,34.5 - parent: 0 - type: Transform -- uid: 1795 - type: FoodMeat - components: - - pos: -5.103735,29.211063 - parent: 0 - type: Transform -- uid: 1796 - type: FoodMeat - components: - - pos: -4.759985,29.007938 - parent: 0 - type: Transform -- uid: 1797 - type: FoodMeat - components: - - pos: -5.134985,28.804813 - parent: 0 - type: Transform -- uid: 1798 - type: SpawnPointServiceWorker - components: - - pos: -9.5,29.5 - parent: 0 - type: Transform -- uid: 1799 - type: SpawnPointServiceWorker - components: - - pos: -9.5,31.5 - parent: 0 - type: Transform -- uid: 1800 - type: FirelockGlass - components: - - pos: -0.5,25.5 - parent: 0 - type: Transform -- uid: 1801 - type: FirelockGlass - components: - - pos: -1.5,25.5 - parent: 0 - type: Transform -- uid: 1802 - type: FirelockGlass - components: - - pos: 1.5,32.5 - parent: 0 - type: Transform -- uid: 1803 - type: FirelockGlass - components: - - pos: 1.5,33.5 - parent: 0 - type: Transform -- uid: 1804 - type: FirelockGlass - components: - - pos: 1.5,34.5 - parent: 0 - type: Transform -- uid: 1805 - type: FirelockGlass - components: - - pos: -1.5,40.5 - parent: 0 - type: Transform -- uid: 1806 - type: FirelockGlass - components: - - pos: -0.5,40.5 - parent: 0 - type: Transform -- uid: 1807 - type: FirelockGlass - components: - - pos: 0.5,40.5 - parent: 0 - type: Transform -- uid: 1808 - type: FirelockGlass - components: - - pos: -6.5,44.5 - parent: 0 - type: Transform -- uid: 1809 - type: FirelockGlass - components: - - pos: -6.5,45.5 - parent: 0 - type: Transform -- uid: 1810 - type: FirelockGlass - components: - - pos: -6.5,46.5 - parent: 0 - type: Transform -- uid: 1811 - type: FirelockGlass - components: - - pos: -16.5,44.5 - parent: 0 - type: Transform -- uid: 1812 - type: FirelockGlass - components: - - pos: -16.5,45.5 - parent: 0 - type: Transform -- uid: 1813 - type: FirelockGlass - components: - - pos: -16.5,46.5 - parent: 0 - type: Transform -- uid: 1814 - type: WallSolid - components: - - pos: -13.5,1.5 - parent: 0 - type: Transform -- uid: 1815 - type: WallSolid - components: - - pos: -14.5,-3.5 - parent: 0 - type: Transform -- uid: 1816 - type: WallSolid - components: - - pos: -15.5,-3.5 - parent: 0 - type: Transform -- uid: 1817 - type: WallSolid - components: - - pos: -14.5,1.5 - parent: 0 - type: Transform -- uid: 1818 - type: WallSolid - components: - - pos: -15.5,1.5 - parent: 0 - type: Transform -- uid: 1819 - type: WallSolid - components: - - pos: -16.5,1.5 - parent: 0 - type: Transform -- uid: 1820 - type: WallSolid - components: - - pos: -13.5,-3.5 - parent: 0 - type: Transform -- uid: 1821 - type: WallSolid - components: - - pos: -20.5,-2.5 - parent: 0 - type: Transform -- uid: 1822 - type: WallSolid - components: - - pos: -18.5,1.5 - parent: 0 - type: Transform -- uid: 1823 - type: WallReinforced - components: - - pos: -20.5,0.5 - parent: 0 - type: Transform -- uid: 1824 - type: WallReinforced - components: - - pos: -19.5,0.5 - parent: 0 - type: Transform -- uid: 1825 - type: WallReinforced - components: - - pos: -19.5,1.5 - parent: 0 - type: Transform -- uid: 1826 - type: WallSolid - components: - - pos: -20.5,-0.5 - parent: 0 - type: Transform -- uid: 1827 - type: WallSolid - components: - - pos: -20.5,-1.5 - parent: 0 - type: Transform -- uid: 1828 - type: WallSolid - components: - - pos: -20.5,-3.5 - parent: 0 - type: Transform -- uid: 1829 - type: Window - components: - - pos: -19.5,-3.5 - parent: 0 - type: Transform -- uid: 1830 - type: Window - components: - - pos: -16.5,-3.5 - parent: 0 - type: Transform -- uid: 1831 - type: Grille - components: - - pos: -19.5,-3.5 - parent: 0 - type: Transform -- uid: 1832 - type: Grille - components: - - pos: -16.5,-3.5 - parent: 0 - type: Transform -- uid: 1833 - type: DisposalUnit - components: - - pos: -18.5,0.5 - parent: 0 - type: Transform -- uid: 1834 - type: DisposalTrunk - components: - - pos: -18.5,0.5 - parent: 0 - type: Transform -- uid: 1835 - type: DisposalPipe - components: - - pos: -18.5,-0.5 - parent: 0 - type: Transform -- uid: 1836 - type: DisposalPipe - components: - - pos: -18.5,-1.5 - parent: 0 - type: Transform -- uid: 1837 - type: DisposalPipe - components: - - pos: -18.5,-2.5 - parent: 0 - type: Transform -- uid: 1838 - type: DisposalPipe - components: - - pos: -18.5,-3.5 - parent: 0 - type: Transform -- uid: 1839 - type: DisposalPipe - components: - - pos: -18.5,-4.5 - parent: 0 - type: Transform -- uid: 1840 - type: DisposalYJunction - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 0 - type: Transform -- uid: 1841 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-5.5 - parent: 0 - type: Transform -- uid: 1842 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-5.5 - parent: 0 - type: Transform -- uid: 1843 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-5.5 - parent: 0 - type: Transform -- uid: 1844 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-5.5 - parent: 0 - type: Transform -- uid: 1845 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-5.5 - parent: 0 - type: Transform -- uid: 1846 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-5.5 - parent: 0 - type: Transform -- uid: 1847 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 0 - type: Transform -- uid: 1848 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-5.5 - parent: 0 - type: Transform -- uid: 1849 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-5.5 - parent: 0 - type: Transform -- uid: 1850 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-5.5 - parent: 0 - type: Transform -- uid: 1851 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-5.5 - parent: 0 - type: Transform -- uid: 1852 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 0 - type: Transform -- uid: 1853 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 0 - type: Transform -- uid: 1854 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 0 - type: Transform -- uid: 1855 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,-3.5 - parent: 0 - type: Transform -- uid: 1856 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,-2.5 - parent: 0 - type: Transform -- uid: 1857 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,-1.5 - parent: 0 - type: Transform -- uid: 1858 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,-0.5 - parent: 0 - type: Transform -- uid: 1859 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,0.5 - parent: 0 - type: Transform -- uid: 1860 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,1.5 - parent: 0 - type: Transform -- uid: 1861 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,2.5 - parent: 0 - type: Transform -- uid: 1862 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,3.5 - parent: 0 - type: Transform -- uid: 1863 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,4.5 - parent: 0 - type: Transform -- uid: 1864 - type: Bookshelf - components: - - pos: -3.5,-1.5 - parent: 0 - type: Transform -- uid: 1865 - type: Bookshelf - components: - - pos: 2.5,-1.5 - parent: 0 - type: Transform -- uid: 1866 - type: PottedPlantRandom - components: - - pos: -3.5,0.5 - parent: 0 - type: Transform -- uid: 1867 - type: PottedPlantRandom - components: - - pos: 2.5,0.5 - parent: 0 - type: Transform -- uid: 1868 - type: PottedPlantRandom - components: - - pos: -2.5,-2.5 - parent: 0 - type: Transform -- uid: 1869 - type: PottedPlantRandom - components: - - pos: 1.5,-2.5 - parent: 0 - type: Transform -- uid: 1870 - type: WindowReinforcedDirectional - components: - - pos: -2.5,-2.5 - parent: 0 - type: Transform -- uid: 1871 - type: WindowReinforcedDirectional - components: - - pos: 1.5,-2.5 - parent: 0 - type: Transform -- uid: 1872 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 0 - type: Transform -- uid: 1873 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -3.5,0.5 - parent: 0 - type: Transform -- uid: 1874 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 0 - type: Transform -- uid: 1875 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 0 - type: Transform -- uid: 1876 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1877 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1878 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1879 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1880 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1881 - type: RandomVending - components: - - pos: 1.5,2.5 - parent: 0 - type: Transform -- uid: 1882 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -1.5,2.5 - parent: 0 - type: Transform -- uid: 1883 - type: RandomVendingDrinks - components: - - pos: 0.5,2.5 - parent: 0 - type: Transform -- uid: 1884 - type: RandomVendingSnacks - components: - - pos: -2.5,2.5 - parent: 0 - type: Transform -- uid: 1885 - type: PosterLegitNanotrasenLogo - components: - - pos: -0.5,3.5 - parent: 0 - type: Transform -- uid: 1886 - type: Intercom - components: - - rot: 3.141592653589793 rad - pos: -3.5,3.5 - parent: 0 - type: Transform -- uid: 1887 - type: ExtinguisherCabinetFilled - components: - - pos: 2.5,2.5 - parent: 0 - type: Transform -- uid: 1888 - type: Intercom - components: - - pos: 2.5,-2.5 - parent: 0 - type: Transform -- uid: 1889 - type: TableWood - components: - - pos: -1.5,-0.5 - parent: 0 - type: Transform -- uid: 1890 - type: TableWood - components: - - pos: -0.5,-0.5 - parent: 0 - type: Transform -- uid: 1891 - type: TableWood - components: - - pos: 0.5,-0.5 - parent: 0 - type: Transform -- uid: 1892 - type: ComfyChair - components: - - pos: -1.5,0.5 - parent: 0 - type: Transform -- uid: 1893 - type: ComfyChair - components: - - pos: -0.5,0.5 - parent: 0 - type: Transform -- uid: 1894 - type: ComfyChair - components: - - pos: 0.5,0.5 - parent: 0 - type: Transform -- uid: 1895 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 0.5,-1.5 - parent: 0 - type: Transform -- uid: 1896 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -0.5,-1.5 - parent: 0 - type: Transform -- uid: 1897 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -1.5,-1.5 - parent: 0 - type: Transform -- uid: 1898 - type: CableMV - components: - - pos: -14.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1899 - type: CableMV - components: - - pos: -13.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1900 - type: CableMV - components: - - pos: -12.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1901 - type: CableMV - components: - - pos: -11.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1902 - type: CableMV - components: - - pos: -10.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1903 - type: CableMV - components: - - pos: -9.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1904 - type: CableMV - components: - - pos: -8.5,5.5 - parent: 0 - type: Transform -- uid: 1905 - type: CableMV - components: - - pos: -7.5,5.5 - parent: 0 - type: Transform -- uid: 1906 - type: CableMV - components: - - pos: -6.5,5.5 - parent: 0 - type: Transform -- uid: 1907 - type: CableMV - components: - - pos: -5.5,5.5 - parent: 0 - type: Transform -- uid: 1908 - type: CableMV - components: - - pos: -4.5,5.5 - parent: 0 - type: Transform -- uid: 1909 - type: CableMV - components: - - pos: -3.5,5.5 - parent: 0 - type: Transform -- uid: 1910 - type: CableMV - components: - - pos: -2.5,5.5 - parent: 0 - type: Transform -- uid: 1911 - type: CableMV - components: - - pos: -2.5,6.5 - parent: 0 - type: Transform -- uid: 1912 - type: CableMV - components: - - pos: -2.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1913 - type: CableApcExtension - components: - - pos: -2.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1914 - type: CableApcExtension - components: - - pos: -2.5,6.5 - parent: 0 - type: Transform -- uid: 1915 - type: CableApcExtension - components: - - pos: -2.5,5.5 - parent: 0 - type: Transform -- uid: 1916 - type: CableApcExtension - components: - - pos: -3.5,5.5 - parent: 0 - type: Transform -- uid: 1917 - type: CableApcExtension - components: - - pos: -4.5,5.5 - parent: 0 - type: Transform -- uid: 1918 - type: CableApcExtension - components: - - pos: -5.5,5.5 - parent: 0 - type: Transform -- uid: 1919 - type: CableApcExtension - components: - - pos: -5.5,4.5 - parent: 0 - type: Transform -- uid: 1920 - type: CableApcExtension - components: - - pos: -5.5,3.5 - parent: 0 - type: Transform -- uid: 1921 - type: CableApcExtension - components: - - pos: -5.5,2.5 - parent: 0 - type: Transform -- uid: 1922 - type: CableApcExtension - components: - - pos: -5.5,1.5 - parent: 0 - type: Transform -- uid: 1923 - type: CableApcExtension - components: - - pos: -5.5,0.5 - parent: 0 - type: Transform -- uid: 1924 - type: CableApcExtension - components: - - pos: -5.5,-0.5 - parent: 0 - type: Transform -- uid: 1925 - type: CableApcExtension - components: - - pos: -5.5,-1.5 - parent: 0 - type: Transform -- uid: 1926 - type: CableApcExtension - components: - - pos: -5.5,-2.5 - parent: 0 - type: Transform -- uid: 1927 - type: CableApcExtension - components: - - pos: -5.5,-3.5 - parent: 0 - type: Transform -- uid: 1928 - type: CableApcExtension - components: - - pos: -5.5,-4.5 - parent: 0 - type: Transform -- uid: 1929 - type: CableApcExtension - components: - - pos: -5.5,-5.5 - parent: 0 - type: Transform -- uid: 1930 - type: CableApcExtension - components: - - pos: -4.5,-4.5 - parent: 0 - type: Transform -- uid: 1931 - type: CableApcExtension - components: - - pos: -3.5,-4.5 - parent: 0 - type: Transform -- uid: 1932 - type: CableApcExtension - components: - - pos: -2.5,-4.5 - parent: 0 - type: Transform -- uid: 1933 - type: CableApcExtension - components: - - pos: -1.5,-4.5 - parent: 0 - type: Transform -- uid: 1934 - type: CableApcExtension - components: - - pos: -0.5,-4.5 - parent: 0 - type: Transform -- uid: 1935 - type: CableApcExtension - components: - - pos: 0.5,-4.5 - parent: 0 - type: Transform -- uid: 1936 - type: CableApcExtension - components: - - pos: 1.5,-4.5 - parent: 0 - type: Transform -- uid: 1937 - type: CableApcExtension - components: - - pos: 2.5,-4.5 - parent: 0 - type: Transform -- uid: 1938 - type: CableApcExtension - components: - - pos: 3.5,-4.5 - parent: 0 - type: Transform -- uid: 1939 - type: CableApcExtension - components: - - pos: 4.5,-4.5 - parent: 0 - type: Transform -- uid: 1940 - type: CableApcExtension - components: - - pos: 4.5,-3.5 - parent: 0 - type: Transform -- uid: 1941 - type: CableApcExtension - components: - - pos: 4.5,-2.5 - parent: 0 - type: Transform -- uid: 1942 - type: CableApcExtension - components: - - pos: 4.5,-1.5 - parent: 0 - type: Transform -- uid: 1943 - type: CableApcExtension - components: - - pos: 4.5,-0.5 - parent: 0 - type: Transform -- uid: 1944 - type: CableApcExtension - components: - - pos: 4.5,0.5 - parent: 0 - type: Transform -- uid: 1945 - type: CableApcExtension - components: - - pos: 4.5,1.5 - parent: 0 - type: Transform -- uid: 1946 - type: CableApcExtension - components: - - pos: 4.5,2.5 - parent: 0 - type: Transform -- uid: 1947 - type: CableApcExtension - components: - - pos: 4.5,3.5 - parent: 0 - type: Transform -- uid: 1948 - type: CableApcExtension - components: - - pos: 4.5,4.5 - parent: 0 - type: Transform -- uid: 1949 - type: CableApcExtension - components: - - pos: 4.5,5.5 - parent: 0 - type: Transform -- uid: 1950 - type: CableApcExtension - components: - - pos: 3.5,5.5 - parent: 0 - type: Transform -- uid: 1951 - type: CableApcExtension - components: - - pos: 2.5,5.5 - parent: 0 - type: Transform -- uid: 1952 - type: CableApcExtension - components: - - pos: 1.5,5.5 - parent: 0 - type: Transform -- uid: 1953 - type: CableApcExtension - components: - - pos: 0.5,5.5 - parent: 0 - type: Transform -- uid: 1954 - type: CableApcExtension - components: - - pos: -0.5,5.5 - parent: 0 - type: Transform -- uid: 1955 - type: CableApcExtension - components: - - pos: -1.5,5.5 - parent: 0 - type: Transform -- uid: 1956 - type: CableApcExtension - components: - - pos: -4.5,-0.5 - parent: 0 - type: Transform -- uid: 1957 - type: CableApcExtension - components: - - pos: -3.5,-0.5 - parent: 0 - type: Transform -- uid: 1958 - type: CableApcExtension - components: - - pos: -2.5,-0.5 - parent: 0 - type: Transform -- uid: 1959 - type: CableApcExtension - components: - - pos: -1.5,-0.5 - parent: 0 - type: Transform -- uid: 1960 - type: CableApcExtension - components: - - pos: -0.5,-0.5 - parent: 0 - type: Transform -- uid: 1961 - type: CableApcExtension - components: - - pos: 0.5,-0.5 - parent: 0 - type: Transform -- uid: 1962 - type: CableApcExtension - components: - - pos: 1.5,-0.5 - parent: 0 - type: Transform -- uid: 1963 - type: CableApcExtension - components: - - pos: 2.5,-0.5 - parent: 0 - type: Transform -- uid: 1964 - type: CableApcExtension - components: - - pos: 3.5,-0.5 - parent: 0 - type: Transform -- uid: 1965 - type: CableApcExtension - components: - - pos: -0.5,-3.5 - parent: 0 - type: Transform -- uid: 1966 - type: CableApcExtension - components: - - pos: -0.5,-2.5 - parent: 0 - type: Transform -- uid: 1967 - type: CableApcExtension - components: - - pos: -0.5,-1.5 - parent: 0 - type: Transform -- uid: 1968 - type: CableApcExtension - components: - - pos: -0.5,0.5 - parent: 0 - type: Transform -- uid: 1969 - type: CableApcExtension - components: - - pos: -0.5,1.5 - parent: 0 - type: Transform -- uid: 1970 - type: CableApcExtension - components: - - pos: -0.5,2.5 - parent: 0 - type: Transform -- uid: 1971 - type: AirlockMaintLocked - components: - - pos: -8.5,5.5 - parent: 0 - type: Transform -- uid: 1972 - type: TableReinforced - components: - - pos: -10.5,-2.5 - parent: 0 - type: Transform -- uid: 1973 - type: FirelockGlass - components: - - pos: -10.5,-2.5 - parent: 0 - type: Transform -- uid: 1974 - type: WindoorCommandLocked - components: - - pos: -10.5,-2.5 - parent: 0 - type: Transform -- uid: 1975 - type: BlastDoorOpen - components: - - pos: -10.5,-2.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1976 - type: SignalReceiver -- uid: 1976 - type: SignalButton - components: - - pos: -8.5,3.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1975 - type: SignalTransmitter -- uid: 1977 - type: filingCabinetRandom - components: - - pos: -11.5,-0.5 - parent: 0 - type: Transform -- uid: 1978 - type: ClosetBase - components: - - pos: -11.5,2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1979 - type: PottedPlant12 - components: - - pos: -11.487109,1.2179638 - parent: 0 - type: Transform -- uid: 1980 - type: ComputerCrewMonitoring - components: - - rot: -1.5707963267948966 rad - pos: -8.5,1.5 - parent: 0 - type: Transform -- uid: 1981 - type: ComputerMedicalRecords - components: - - rot: -1.5707963267948966 rad - pos: -8.5,0.5 - parent: 0 - type: Transform -- uid: 1982 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-1.5 - parent: 0 - type: Transform -- uid: 1983 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 0 - type: Transform -- uid: 1984 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 0 - type: Transform -- uid: 1985 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -8.5,2.5 - parent: 0 - type: Transform -- uid: 1986 - type: ComputerComms - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-1.5 - parent: 0 - type: Transform -- uid: 1987 - type: ChairOfficeLight - components: - - pos: -10.5,-1.5 - parent: 0 - type: Transform -- uid: 1988 - type: FaxMachineBase - components: - - pos: -8.5,2.5 - parent: 0 - type: Transform - - name: Command Checkpoint - type: FaxMachine -- uid: 1989 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1990 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 0 - type: Transform -- uid: 1991 - type: APCBasic - components: - - pos: -15.5,1.5 - parent: 0 - type: Transform -- uid: 1992 - type: CableMV - components: - - pos: -15.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1993 - type: CableMV - components: - - pos: -15.5,0.5 - parent: 0 - type: Transform -- uid: 1994 - type: CableMV - components: - - pos: -16.5,0.5 - parent: 0 - type: Transform -- uid: 1995 - type: CableMV - components: - - pos: -17.5,0.5 - parent: 0 - type: Transform -- uid: 1996 - type: CableMV - components: - - pos: -17.5,1.5 - parent: 0 - type: Transform -- uid: 1997 - type: CableMV - components: - - pos: -17.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1998 - type: CableMV - components: - - pos: -17.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1999 - type: CableMV - components: - - pos: -17.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2000 - type: CableMV - components: - - pos: -17.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2001 - type: CableMV - components: - - pos: -16.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2002 - type: CableMV - components: - - pos: -15.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2003 - type: CableMV - components: - - pos: -12.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2004 - type: CableMV - components: - - pos: -11.5,1.5 - parent: 0 - type: Transform -- uid: 2005 - type: CableMV - components: - - pos: -10.5,1.5 - parent: 0 - type: Transform -- uid: 2006 - type: CableMV - components: - - pos: -10.5,2.5 - parent: 0 - type: Transform -- uid: 2007 - type: CableMV - components: - - pos: -10.5,3.5 - parent: 0 - type: Transform -- uid: 2008 - type: CableMV - components: - - pos: -10.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2009 - type: CableApcExtension - components: - - pos: -12.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2010 - type: CableApcExtension - components: - - pos: -11.5,1.5 - parent: 0 - type: Transform -- uid: 2011 - type: CableApcExtension - components: - - pos: -10.5,1.5 - parent: 0 - type: Transform -- uid: 2012 - type: CableApcExtension - components: - - pos: -10.5,2.5 - parent: 0 - type: Transform -- uid: 2013 - type: CableApcExtension - components: - - pos: -10.5,0.5 - parent: 0 - type: Transform -- uid: 2014 - type: CableApcExtension - components: - - pos: -10.5,-0.5 - parent: 0 - type: Transform -- uid: 2015 - type: CableApcExtension - components: - - pos: -10.5,-1.5 - parent: 0 - type: Transform -- uid: 2016 - type: CableApcExtension - components: - - pos: -9.5,0.5 - parent: 0 - type: Transform -- uid: 2017 - type: CableApcExtension - components: - - pos: -8.5,0.5 - parent: 0 - type: Transform -- uid: 2018 - type: CableApcExtension - components: - - pos: -7.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2019 - type: CableApcExtension - components: - - pos: -7.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2020 - type: CableApcExtension - components: - - pos: -7.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2021 - type: CableApcExtension - components: - - pos: -10.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2022 - type: CableApcExtension - components: - - pos: -9.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2023 - type: CableApcExtension - components: - - pos: -11.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2024 - type: CableApcExtension - components: - - pos: -15.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2025 - type: CableApcExtension - components: - - pos: -15.5,0.5 - parent: 0 - type: Transform -- uid: 2026 - type: CableApcExtension - components: - - pos: -15.5,-0.5 - parent: 0 - type: Transform -- uid: 2027 - type: CableApcExtension - components: - - pos: -15.5,-1.5 - parent: 0 - type: Transform -- uid: 2028 - type: CableApcExtension - components: - - pos: -15.5,-2.5 - parent: 0 - type: Transform -- uid: 2029 - type: CableApcExtension - components: - - pos: -14.5,-1.5 - parent: 0 - type: Transform -- uid: 2030 - type: CableApcExtension - components: - - pos: -16.5,-1.5 - parent: 0 - type: Transform -- uid: 2031 - type: CableApcExtension - components: - - pos: -17.5,-1.5 - parent: 0 - type: Transform -- uid: 2032 - type: CableApcExtension - components: - - pos: -18.5,-1.5 - parent: 0 - type: Transform -- uid: 2033 - type: CableApcExtension - components: - - pos: -17.5,-0.5 - parent: 0 - type: Transform -- uid: 2034 - type: CableApcExtension - components: - - pos: -18.5,-2.5 - parent: 0 - type: Transform -- uid: 2035 - type: ExtinguisherCabinetFilled - components: - - pos: -7.5,3.5 - parent: 0 - type: Transform -- uid: 2036 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 0 - type: Transform - - devices: - - 2075 - - 2077 - - 1553 - - 1552 - - 2088 - - 1758 - - 1759 - - 1760 - - 2051 - - 2052 - - 2048 - - 2049 - - 2050 - - 1548 - - 1547 - - 1549 - type: DeviceList -- uid: 2037 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 0 - type: Transform - - devices: - - 1547 - - 1548 - - 1549 - - 1760 - - 1759 - - 1758 - - 2088 - - 2051 - - 2052 - - 2048 - - 2049 - - 2050 - type: DeviceList -- uid: 2038 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 0 - type: Transform - - devices: - - 1616 - - 1617 - type: DeviceList -- uid: 2039 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-1.5 - parent: 0 - type: Transform - - devices: - - 2550 - - 2549 - type: DeviceList -- uid: 2040 - type: WallSolid - components: - - pos: 6.5,-8.5 - parent: 0 - type: Transform -- uid: 2041 - type: WallSolid - components: - - pos: 9.5,-8.5 - parent: 0 - type: Transform -- uid: 2042 - type: WallSolid - components: - - pos: 10.5,-8.5 - parent: 0 - type: Transform -- uid: 2043 - type: WallSolid - components: - - pos: 11.5,-7.5 - parent: 0 - type: Transform -- uid: 2044 - type: WallSolid - components: - - pos: -2.5,-8.5 - parent: 0 - type: Transform -- uid: 2045 - type: WallSolid - components: - - pos: -4.5,-8.5 - parent: 0 - type: Transform -- uid: 2046 - type: WallSolid - components: - - pos: -4.5,-7.5 - parent: 0 - type: Transform -- uid: 2047 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: -3.479002,-2.2427382 - parent: 0 - type: Transform -- uid: 2048 - type: FirelockGlass - components: - - pos: 6.5,-6.5 - parent: 0 - type: Transform -- uid: 2049 - type: FirelockGlass - components: - - pos: 6.5,-5.5 - parent: 0 - type: Transform -- uid: 2050 - type: FirelockGlass - components: - - pos: 6.5,-4.5 - parent: 0 - type: Transform -- uid: 2051 - type: FirelockGlass - components: - - pos: 4.5,-8.5 - parent: 0 - type: Transform -- uid: 2052 - type: FirelockGlass - components: - - pos: 5.5,-8.5 - parent: 0 - type: Transform -- uid: 2053 - type: FirelockGlass - components: - - pos: 8.5,-8.5 - parent: 0 - type: Transform -- uid: 2054 - type: FirelockGlass - components: - - pos: 7.5,-8.5 - parent: 0 - type: Transform -- uid: 2055 - type: ReinforcedWindow - components: - - pos: 9.5,-14.5 - parent: 0 - type: Transform -- uid: 2056 - type: ReinforcedWindow - components: - - pos: 6.5,-14.5 - parent: 0 - type: Transform -- uid: 2057 - type: ReinforcedWindow - components: - - pos: 3.5,-14.5 - parent: 0 - type: Transform -- uid: 2058 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 83.5,-11.5 - parent: 0 - type: Transform -- uid: 2059 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 85.5,-11.5 - parent: 0 - type: Transform -- uid: 2060 - type: WindoorCargoLocked - components: - - rot: 3.141592653589793 rad - pos: 7.5,-15.5 - parent: 0 - type: Transform -- uid: 2061 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 83.5,-12.5 - parent: 0 - type: Transform -- uid: 2062 - type: SignCargo - components: - - pos: 3.5,-8.5 - parent: 0 - type: Transform -- uid: 2063 - type: SignCargo - components: - - pos: 9.5,-8.5 - parent: 0 - type: Transform -- uid: 2064 - type: WallSolid - components: - - pos: 2.5,-14.5 - parent: 0 - type: Transform -- uid: 2065 - type: WallSolid - components: - - pos: 2.5,-13.5 - parent: 0 - type: Transform -- uid: 2066 - type: WallSolid - components: - - pos: 2.5,-12.5 - parent: 0 - type: Transform -- uid: 2067 - type: WallSolid - components: - - pos: 2.5,-11.5 - parent: 0 - type: Transform -- uid: 2068 - type: WallSolid - components: - - pos: 2.5,-10.5 - parent: 0 - type: Transform -- uid: 2069 - type: WallSolid - components: - - pos: 2.5,-9.5 - parent: 0 - type: Transform -- uid: 2070 - type: WallSolid - components: - - pos: 11.5,-8.5 - parent: 0 - type: Transform -- uid: 2071 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 1.5,-8.5 - parent: 0 - type: Transform - - devices: - - 2075 - - 2077 - - 1553 - - 1552 - - 2088 - - 1758 - - 1759 - - 1760 - - 2051 - - 2052 - - 2048 - - 2049 - - 2050 - - 1548 - - 1547 - - 1549 - type: DeviceList -- uid: 2072 - type: WallSolid - components: - - pos: 13.5,-7.5 - parent: 0 - type: Transform -- uid: 2073 - type: WallSolid - components: - - pos: 14.5,-7.5 - parent: 0 - type: Transform -- uid: 2074 - type: WallSolid - components: - - pos: 14.5,-8.5 - parent: 0 - type: Transform -- uid: 2075 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2076 - type: WallSolid - components: - - pos: 14.5,-10.5 - parent: 0 - type: Transform -- uid: 2077 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -5.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2078 - type: WallSolid - components: - - pos: 10.5,-10.5 - parent: 0 - type: Transform -- uid: 2079 - type: WallSolid - components: - - pos: 10.5,-12.5 - parent: 0 - type: Transform -- uid: 2080 - type: WallSolid - components: - - pos: 10.5,-13.5 - parent: 0 - type: Transform -- uid: 2081 - type: WallSolid - components: - - pos: 11.5,-13.5 - parent: 0 - type: Transform -- uid: 2082 - type: WallSolid - components: - - pos: 10.5,-14.5 - parent: 0 - type: Transform -- uid: 2083 - type: WallSolid - components: - - pos: 10.5,-15.5 - parent: 0 - type: Transform -- uid: 2084 - type: WallSolid - components: - - pos: 13.5,-13.5 - parent: 0 - type: Transform -- uid: 2085 - type: WallSolid - components: - - pos: 14.5,-13.5 - parent: 0 - type: Transform -- uid: 2086 - type: WallSolid - components: - - pos: 14.5,-12.5 - parent: 0 - type: Transform -- uid: 2087 - type: WallSolid - components: - - pos: 14.5,-14.5 - parent: 0 - type: Transform -- uid: 2088 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: -0.5,-6.5 - parent: 0 - type: Transform -- uid: 2089 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -11.5,-7.5 - parent: 0 - type: Transform -- uid: 2090 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -9.5,-7.5 - parent: 0 - type: Transform -- uid: 2091 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -15.5,-7.5 - parent: 0 - type: Transform -- uid: 2092 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -16.5,-7.5 - parent: 0 - type: Transform -- uid: 2093 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -16.5,-8.5 - parent: 0 - type: Transform -- uid: 2094 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -16.5,-9.5 - parent: 0 - type: Transform -- uid: 2095 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -16.5,-10.5 - parent: 0 - type: Transform -- uid: 2096 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -16.5,-11.5 - parent: 0 - type: Transform -- uid: 2097 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -15.5,-11.5 - parent: 0 - type: Transform -- uid: 2098 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -14.5,-11.5 - parent: 0 - type: Transform -- uid: 2099 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -13.5,-11.5 - parent: 0 - type: Transform -- uid: 2100 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -12.5,-11.5 - parent: 0 - type: Transform -- uid: 2101 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -11.5,-11.5 - parent: 0 - type: Transform -- uid: 2102 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -10.5,-11.5 - parent: 0 - type: Transform -- uid: 2103 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -9.5,-11.5 - parent: 0 - type: Transform -- uid: 2104 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -8.5,-11.5 - parent: 0 - type: Transform -- uid: 2105 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -7.5,-11.5 - parent: 0 - type: Transform -- uid: 2106 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -6.5,-11.5 - parent: 0 - type: Transform -- uid: 2107 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -6.5,-10.5 - parent: 0 - type: Transform -- uid: 2108 - type: GasPipeTJunction - components: - - pos: -5.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2109 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -6.5,-8.5 - parent: 0 - type: Transform -- uid: 2110 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -6.5,-7.5 - parent: 0 - type: Transform -- uid: 2111 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -7.5,-7.5 - parent: 0 - type: Transform -- uid: 2112 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -8.5,-7.5 - parent: 0 - type: Transform -- uid: 2113 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -12.5,-10.5 - parent: 0 - type: Transform -- uid: 2114 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -12.5,-8.5 - parent: 0 - type: Transform -- uid: 2115 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -12.5,-7.5 - parent: 0 - type: Transform -- uid: 2116 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -13.5,-7.5 - parent: 0 - type: Transform -- uid: 2117 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -12.5,-7.5 - parent: 0 - type: Transform - - devices: - - 2122 - - 2121 - - 2120 - - 1758 - - 1759 - - 1760 - - 1973 - - 2200 - - 2204 - - 2193 - - 2194 - type: DeviceList -- uid: 2118 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -8.5,-11.5 - parent: 0 - type: Transform -- uid: 2119 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2120 - type: FirelockGlass - components: - - pos: -15.5,-4.5 - parent: 0 - type: Transform -- uid: 2121 - type: FirelockGlass - components: - - pos: -15.5,-5.5 - parent: 0 - type: Transform -- uid: 2122 - type: FirelockGlass - components: - - pos: -15.5,-6.5 - parent: 0 - type: Transform -- uid: 2123 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 6.5,-6.5 - parent: 0 - type: Transform -- uid: 2124 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 6.5,-5.5 - parent: 0 - type: Transform -- uid: 2125 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 6.5,-4.5 - parent: 0 - type: Transform -- uid: 2126 - type: ReinforcedWindow - components: - - pos: 22.5,-13.5 - parent: 0 - type: Transform -- uid: 2127 - type: ReinforcedWindow - components: - - pos: 22.5,-14.5 - parent: 0 - type: Transform -- uid: 2128 - type: ReinforcedWindow - components: - - pos: 22.5,-9.5 - parent: 0 - type: Transform -- uid: 2129 - type: ReinforcedWindow - components: - - pos: 22.5,-11.5 - parent: 0 - type: Transform -- uid: 2130 - type: GasPipeStraight - components: - - pos: -5.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2131 - type: GasPipeStraight - components: - - pos: -5.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2132 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2133 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2134 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -11.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2135 - type: GasPipeBend - components: - - pos: -11.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2136 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2137 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2138 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2139 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2140 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2141 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2142 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2143 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2144 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2145 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2146 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2147 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2148 - type: GasPipeTJunction - components: - - pos: -23.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2149 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2150 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2151 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2152 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2153 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2154 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2155 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2156 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2157 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -17.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2158 - type: GasPipeTJunction - components: - - pos: -18.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2159 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2160 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2161 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2162 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2163 - type: GasPipeTJunction - components: - - pos: -21.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2164 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2165 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2166 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2167 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2168 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2169 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2170 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2171 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2172 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2173 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2174 - type: GasPipeTJunction - components: - - pos: 13.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2175 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2176 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2177 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2178 - type: GasPipeTJunction - components: - - pos: 12.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2179 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 15.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2180 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2181 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2182 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2183 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -12.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2184 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2185 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2186 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2187 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2188 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2189 - type: GasVentScrubber - components: - - pos: -8.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2190 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2191 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -14.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2192 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -10.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2193 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2194 - type: GasVentScrubber - components: - - pos: -12.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2195 - type: AirlockSecurityGlassLocked - components: - - pos: -14.5,-7.5 - parent: 0 - type: Transform -- uid: 2196 - type: AirlockMaintSecLocked - components: - - pos: -6.5,-9.5 - parent: 0 - type: Transform -- uid: 2197 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-9.5 - parent: 0 - type: Transform -- uid: 2198 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: -10.5,-7.5 - parent: 0 - type: Transform -- uid: 2199 - type: TableReinforced - components: - - pos: -10.5,-7.5 - parent: 0 - type: Transform -- uid: 2200 - type: FirelockGlass - components: - - pos: -10.5,-7.5 - parent: 0 - type: Transform -- uid: 2201 - type: Grille - components: - - pos: -11.5,-7.5 - parent: 0 - type: Transform -- uid: 2202 - type: Grille - components: - - pos: -9.5,-7.5 - parent: 0 - type: Transform -- uid: 2203 - type: FireAlarm - components: - - pos: -12.5,-3.5 - parent: 0 - type: Transform - - devices: - - 2122 - - 2121 - - 2120 - - 1758 - - 1759 - - 1760 - - 1973 - - 2200 - - 2204 - type: DeviceList -- uid: 2204 - type: AirSensor - components: - - pos: -10.5,-5.5 - parent: 0 - type: Transform -- uid: 2205 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-8.5 - parent: 0 - type: Transform - - devices: - - 2189 - - 2192 - - 2190 - - 2191 - type: DeviceList -- uid: 2206 - type: LockerEvidence - components: - - pos: -13.5,-8.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2207 - type: TableReinforced - components: - - pos: -11.5,-8.5 - parent: 0 - type: Transform -- uid: 2208 - type: TableReinforced - components: - - pos: -9.5,-8.5 - parent: 0 - type: Transform -- uid: 2209 - type: VendingMachineSecDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-8.5 - parent: 0 - type: Transform -- uid: 2210 - type: LockerSecurityFilled - components: - - pos: -7.5,-8.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2211 - type: filingCabinetRandom - components: - - pos: -7.5,-10.5 - parent: 0 - type: Transform -- uid: 2212 - type: Table - components: - - pos: -8.5,-10.5 - parent: 0 - type: Transform -- uid: 2213 - type: ComputerCriminalRecords - components: - - rot: 3.141592653589793 rad - pos: -9.5,-10.5 - parent: 0 - type: Transform -- uid: 2214 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 3.141592653589793 rad - pos: -10.5,-10.5 - parent: 0 - type: Transform -- uid: 2215 - type: ComputerCrewMonitoring - components: - - rot: 3.141592653589793 rad - pos: -11.5,-10.5 - parent: 0 - type: Transform -- uid: 2216 - type: WeaponCapacitorRecharger - components: - - pos: -8.5,-10.5 - parent: 0 - type: Transform -- uid: 2217 - type: CrowbarRed - components: - - pos: -8.434292,-10.52508 - parent: 0 - type: Transform -- uid: 2218 - type: CableApcExtension - components: - - pos: -8.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2219 - type: CableApcExtension - components: - - pos: -8.5,-10.5 - parent: 0 - type: Transform -- uid: 2220 - type: CableApcExtension - components: - - pos: -8.5,-9.5 - parent: 0 - type: Transform -- uid: 2221 - type: CableApcExtension - components: - - pos: -7.5,-9.5 - parent: 0 - type: Transform -- uid: 2222 - type: CableApcExtension - components: - - pos: -9.5,-9.5 - parent: 0 - type: Transform -- uid: 2223 - type: CableApcExtension - components: - - pos: -10.5,-9.5 - parent: 0 - type: Transform -- uid: 2224 - type: CableApcExtension - components: - - pos: -11.5,-9.5 - parent: 0 - type: Transform -- uid: 2225 - type: CableApcExtension - components: - - pos: -12.5,-9.5 - parent: 0 - type: Transform -- uid: 2226 - type: CableApcExtension - components: - - pos: -13.5,-9.5 - parent: 0 - type: Transform -- uid: 2227 - type: CableApcExtension - components: - - pos: -14.5,-9.5 - parent: 0 - type: Transform -- uid: 2228 - type: CableApcExtension - components: - - pos: -14.5,-8.5 - parent: 0 - type: Transform -- uid: 2229 - type: CableApcExtension - components: - - pos: -14.5,-7.5 - parent: 0 - type: Transform -- uid: 2230 - type: CableApcExtension - components: - - pos: -14.5,-6.5 - parent: 0 - type: Transform -- uid: 2231 - type: CableApcExtension - components: - - pos: -14.5,-5.5 - parent: 0 - type: Transform -- uid: 2232 - type: CableApcExtension - components: - - pos: -13.5,-5.5 - parent: 0 - type: Transform -- uid: 2233 - type: CableApcExtension - components: - - pos: -12.5,-5.5 - parent: 0 - type: Transform -- uid: 2234 - type: CableApcExtension - components: - - pos: -11.5,-5.5 - parent: 0 - type: Transform -- uid: 2235 - type: CableApcExtension - components: - - pos: -10.5,-5.5 - parent: 0 - type: Transform -- uid: 2236 - type: CableApcExtension - components: - - pos: -9.5,-5.5 - parent: 0 - type: Transform -- uid: 2237 - type: CableApcExtension - components: - - pos: -8.5,-5.5 - parent: 0 - type: Transform -- uid: 2238 - type: AirlockGlass - components: - - pos: -15.5,-6.5 - parent: 0 - type: Transform -- uid: 2239 - type: AirlockGlass - components: - - pos: -15.5,-5.5 - parent: 0 - type: Transform -- uid: 2240 - type: AirlockGlass - components: - - pos: -15.5,-4.5 - parent: 0 - type: Transform -- uid: 2241 - type: AirlockGlass - components: - - pos: -7.5,-6.5 - parent: 0 - type: Transform -- uid: 2242 - type: AirlockGlass - components: - - pos: -7.5,-5.5 - parent: 0 - type: Transform -- uid: 2243 - type: AirlockGlass - components: - - pos: -7.5,-4.5 - parent: 0 - type: Transform -- uid: 2244 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -10.5,-8.5 - parent: 0 - type: Transform -- uid: 2245 - type: FirelockGlass - components: - - pos: -20.5,-6.5 - parent: 0 - type: Transform -- uid: 2246 - type: FirelockGlass - components: - - pos: -20.5,-5.5 - parent: 0 - type: Transform -- uid: 2247 - type: FirelockGlass - components: - - pos: -20.5,-4.5 - parent: 0 - type: Transform -- uid: 2248 - type: ReinforcedWindow - components: - - pos: -17.5,-7.5 - parent: 0 - type: Transform -- uid: 2249 - type: ReinforcedWindow - components: - - pos: -19.5,-7.5 - parent: 0 - type: Transform -- uid: 2250 - type: ReinforcedWindow - components: - - pos: -20.5,-8.5 - parent: 0 - type: Transform -- uid: 2251 - type: ReinforcedWindow - components: - - pos: -20.5,-9.5 - parent: 0 - type: Transform -- uid: 2252 - type: ReinforcedWindow - components: - - pos: -20.5,-10.5 - parent: 0 - type: Transform -- uid: 2253 - type: WallSolid - components: - - pos: -20.5,-7.5 - parent: 0 - type: Transform -- uid: 2254 - type: WallSolid - components: - - pos: -20.5,-11.5 - parent: 0 - type: Transform -- uid: 2255 - type: WallSolid - components: - - pos: -20.5,-12.5 - parent: 0 - type: Transform -- uid: 2256 - type: WallSolid - components: - - pos: -19.5,-12.5 - parent: 0 - type: Transform -- uid: 2257 - type: WallSolid - components: - - pos: -17.5,-12.5 - parent: 0 - type: Transform -- uid: 2258 - type: WallSolid - components: - - pos: -16.5,-12.5 - parent: 0 - type: Transform -- uid: 2259 - type: WallSolid - components: - - pos: -19.5,-13.5 - parent: 0 - type: Transform -- uid: 2260 - type: WallSolid - components: - - pos: -19.5,-14.5 - parent: 0 - type: Transform -- uid: 2261 - type: WallSolid - components: - - pos: -19.5,-15.5 - parent: 0 - type: Transform -- uid: 2262 - type: WallSolid - components: - - pos: -20.5,-15.5 - parent: 0 - type: Transform -- uid: 2263 - type: WallSolid - components: - - pos: -20.5,-17.5 - parent: 0 - type: Transform -- uid: 2264 - type: DisposalBend - components: - - pos: -19.5,-5.5 - parent: 0 - type: Transform -- uid: 2265 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -19.5,-6.5 - parent: 0 - type: Transform -- uid: 2266 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: -18.5,-6.5 - parent: 0 - type: Transform -- uid: 2267 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 0 - type: Transform -- uid: 2268 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -18.5,-8.5 - parent: 0 - type: Transform -- uid: 2269 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -18.5,-7.5 - parent: 0 - type: Transform -- uid: 2270 - type: DisposalUnit - components: - - pos: -17.5,-8.5 - parent: 0 - type: Transform -- uid: 2271 - type: Grille - components: - - pos: -20.5,-10.5 - parent: 0 - type: Transform -- uid: 2272 - type: Grille - components: - - pos: -20.5,-9.5 - parent: 0 - type: Transform -- uid: 2273 - type: Grille - components: - - pos: -20.5,-8.5 - parent: 0 - type: Transform -- uid: 2274 - type: Grille - components: - - pos: -19.5,-7.5 - parent: 0 - type: Transform -- uid: 2275 - type: Grille - components: - - pos: -17.5,-7.5 - parent: 0 - type: Transform -- uid: 2276 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-9.5 - parent: 0 - type: Transform -- uid: 2277 - type: CableApcExtension - components: - - pos: -16.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2278 - type: CableApcExtension - components: - - pos: -17.5,-9.5 - parent: 0 - type: Transform -- uid: 2279 - type: CableApcExtension - components: - - pos: -18.5,-9.5 - parent: 0 - type: Transform -- uid: 2280 - type: CableApcExtension - components: - - pos: -18.5,-10.5 - parent: 0 - type: Transform -- uid: 2281 - type: CableApcExtension - components: - - pos: -18.5,-11.5 - parent: 0 - type: Transform -- uid: 2282 - type: CableApcExtension - components: - - pos: -18.5,-12.5 - parent: 0 - type: Transform -- uid: 2283 - type: CableApcExtension - components: - - pos: -18.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2284 - type: CableApcExtension - components: - - pos: -18.5,-8.5 - parent: 0 - type: Transform -- uid: 2285 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2286 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2287 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2288 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2289 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2290 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2291 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2292 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2293 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2294 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2295 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2296 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2297 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2298 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2299 - type: GasPipeStraight - components: - - pos: -18.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2300 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -18.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2301 - type: GasPipeStraight - components: - - pos: -18.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2302 - type: GasPipeStraight - components: - - pos: -18.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2303 - type: GasPipeStraight - components: - - pos: -18.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2304 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2305 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2306 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -18.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2307 - type: GasVentScrubber - components: - - pos: -18.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2308 - type: CableApcExtension - components: - - pos: -18.5,-3.5 - parent: 0 - type: Transform -- uid: 2309 - type: CableApcExtension - components: - - pos: -18.5,-4.5 - parent: 0 - type: Transform -- uid: 2310 - type: AirlockEngineeringGlassLocked - components: - - pos: -18.5,-7.5 - parent: 0 - type: Transform -- uid: 2311 - type: AirlockMaintEngiLocked - components: - - pos: -18.5,-12.5 - parent: 0 - type: Transform -- uid: 2312 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2313 - type: Table - components: - - pos: -19.5,-11.5 - parent: 0 - type: Transform -- uid: 2314 - type: Rack - components: - - pos: -17.5,-11.5 - parent: 0 - type: Transform -- uid: 2315 - type: Table - components: - - pos: -19.5,-10.5 - parent: 0 - type: Transform -- uid: 2316 - type: ClosetToolFilled - components: - - pos: -19.5,-8.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2317 - type: LockerWeldingSuppliesFilled - components: - - pos: -19.5,-9.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2318 - type: WeldingFuelTankFull - components: - - pos: -17.5,-10.5 - parent: 0 - type: Transform -- uid: 2319 - type: SheetPlasteel - components: - - pos: -19.490875,-10.450574 - parent: 0 - type: Transform -- uid: 2320 - type: PartRodMetal - components: - - pos: -19.477564,-11.299993 - parent: 0 - type: Transform -- uid: 2321 - type: ToolboxEmergencyFilled - components: - - pos: -17.586939,-11.315618 - parent: 0 - type: Transform -- uid: 2322 - type: ToolboxEmergencyFilled - components: - - pos: -17.430689,-11.518743 - parent: 0 - type: Transform -- uid: 2323 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 0 - type: Transform -- uid: 2324 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-8.5 - parent: 0 - type: Transform -- uid: 2325 - type: WallReinforced - components: - - pos: -19.5,2.5 - parent: 0 - type: Transform -- uid: 2326 - type: WallReinforced - components: - - pos: -19.5,3.5 - parent: 0 - type: Transform -- uid: 2327 - type: WallReinforced - components: - - pos: -19.5,4.5 - parent: 0 - type: Transform -- uid: 2328 - type: WallReinforced - components: - - pos: -20.5,4.5 - parent: 0 - type: Transform -- uid: 2329 - type: WallReinforced - components: - - pos: -22.5,4.5 - parent: 0 - type: Transform -- uid: 2330 - type: WallReinforced - components: - - pos: -23.5,4.5 - parent: 0 - type: Transform -- uid: 2331 - type: WallReinforced - components: - - pos: -23.5,3.5 - parent: 0 - type: Transform -- uid: 2332 - type: WallReinforced - components: - - pos: -23.5,2.5 - parent: 0 - type: Transform -- uid: 2333 - type: WallReinforced - components: - - pos: -23.5,1.5 - parent: 0 - type: Transform -- uid: 2334 - type: WallReinforced - components: - - pos: -23.5,0.5 - parent: 0 - type: Transform -- uid: 2335 - type: WallReinforced - components: - - pos: -22.5,0.5 - parent: 0 - type: Transform -- uid: 2336 - type: WallReinforced - components: - - pos: -21.5,0.5 - parent: 0 - type: Transform -- uid: 2337 - type: SubstationBasic - components: - - name: South Service Sub - type: MetaData - - pos: -21.5,1.5 - parent: 0 - type: Transform -- uid: 2338 - type: CableMV - components: - - pos: -21.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2339 - type: CableMV - components: - - pos: -21.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2340 - type: CableMV - components: - - pos: -21.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2341 - type: CableMV - components: - - pos: -21.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2342 - type: CableMV - components: - - pos: -21.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2343 - type: CableMV - components: - - pos: -20.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2344 - type: CableMV - components: - - pos: -19.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2345 - type: CableMV - components: - - pos: -18.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2346 - type: CableHV - components: - - pos: -21.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2347 - type: CableHV - components: - - pos: -21.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2348 - type: CableHV - components: - - pos: -21.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2349 - type: CableHV - components: - - pos: -21.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2350 - type: CableHV - components: - - pos: -21.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2351 - type: CableHV - components: - - pos: -21.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2352 - type: WallReinforced - components: - - pos: -20.5,43.5 - parent: 0 - type: Transform -- uid: 2353 - type: WallReinforced - components: - - pos: -20.5,42.5 - parent: 0 - type: Transform -- uid: 2354 - type: WallReinforced - components: - - pos: -20.5,41.5 - parent: 0 - type: Transform -- uid: 2355 - type: WallReinforced - components: - - pos: -20.5,40.5 - parent: 0 - type: Transform -- uid: 2356 - type: WallReinforced - components: - - pos: -20.5,39.5 - parent: 0 - type: Transform -- uid: 2357 - type: WallReinforced - components: - - pos: -20.5,37.5 - parent: 0 - type: Transform -- uid: 2358 - type: WallReinforced - components: - - pos: -20.5,36.5 - parent: 0 - type: Transform -- uid: 2359 - type: WallReinforced - components: - - pos: -21.5,36.5 - parent: 0 - type: Transform -- uid: 2360 - type: WallReinforced - components: - - pos: -22.5,36.5 - parent: 0 - type: Transform -- uid: 2361 - type: WallReinforced - components: - - pos: -23.5,36.5 - parent: 0 - type: Transform -- uid: 2362 - type: WallReinforced - components: - - pos: -24.5,36.5 - parent: 0 - type: Transform -- uid: 2363 - type: WallReinforced - components: - - pos: -25.5,36.5 - parent: 0 - type: Transform -- uid: 2364 - type: WallReinforced - components: - - pos: -26.5,36.5 - parent: 0 - type: Transform -- uid: 2365 - type: WallReinforced - components: - - pos: -26.5,37.5 - parent: 0 - type: Transform -- uid: 2366 - type: WallReinforced - components: - - pos: -26.5,41.5 - parent: 0 - type: Transform -- uid: 2367 - type: WallReinforced - components: - - pos: -26.5,42.5 - parent: 0 - type: Transform -- uid: 2368 - type: WallReinforced - components: - - pos: -26.5,43.5 - parent: 0 - type: Transform -- uid: 2369 - type: WallReinforced - components: - - pos: -25.5,43.5 - parent: 0 - type: Transform -- uid: 2370 - type: WallReinforced - components: - - pos: -23.5,43.5 - parent: 0 - type: Transform -- uid: 2371 - type: WallReinforced - components: - - pos: -25.5,35.5 - parent: 0 - type: Transform -- uid: 2372 - type: WallReinforced - components: - - pos: -25.5,34.5 - parent: 0 - type: Transform -- uid: 2373 - type: WallReinforced - components: - - pos: -25.5,33.5 - parent: 0 - type: Transform -- uid: 2374 - type: WallReinforced - components: - - pos: -21.5,35.5 - parent: 0 - type: Transform -- uid: 2375 - type: SubstationBasic - components: - - name: Evac Substation - type: MetaData - - pos: -23.5,35.5 - parent: 0 - type: Transform -- uid: 2376 - type: WallReinforced - components: - - pos: -21.5,33.5 - parent: 0 - type: Transform -- uid: 2377 - type: WallReinforced - components: - - pos: -22.5,33.5 - parent: 0 - type: Transform -- uid: 2378 - type: WallReinforced - components: - - pos: -23.5,33.5 - parent: 0 - type: Transform -- uid: 2379 - type: WallReinforced - components: - - pos: -24.5,33.5 - parent: 0 - type: Transform -- uid: 2380 - type: CableMV - components: - - pos: -23.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2381 - type: CableMV - components: - - pos: -23.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2382 - type: CableMV - components: - - pos: -22.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2383 - type: CableMV - components: - - pos: -21.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2384 - type: CableMV - components: - - pos: -20.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2385 - type: CableMV - components: - - pos: -19.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2386 - type: CableMV - components: - - pos: -19.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2387 - type: CableMV - components: - - pos: -23.5,21.5 - parent: 0 - type: Transform -- uid: 2388 - type: CableMV - components: - - pos: -23.5,22.5 - parent: 0 - type: Transform -- uid: 2389 - type: CableMV - components: - - pos: -23.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2390 - type: CableMV - components: - - pos: -23.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2391 - type: CableMV - components: - - pos: -22.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2392 - type: CableMV - components: - - pos: -21.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2393 - type: CableMV - components: - - pos: -21.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2394 - type: CableMV - components: - - pos: -21.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2395 - type: CableMV - components: - - pos: -21.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2396 - type: CableMV - components: - - pos: -21.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2397 - type: CableMV - components: - - pos: -20.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2398 - type: CableMV - components: - - pos: -19.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2399 - type: CableMV - components: - - pos: -19.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2400 - type: CableMV - components: - - pos: -19.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2401 - type: CableMV - components: - - pos: -19.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2402 - type: CableMV - components: - - pos: -16.5,25.5 - parent: 0 - type: Transform -- uid: 2403 - type: CableMV - components: - - pos: -18.5,25.5 - parent: 0 - type: Transform -- uid: 2404 - type: CableMV - components: - - pos: -17.5,25.5 - parent: 0 - type: Transform -- uid: 2405 - type: CableMV - components: - - pos: -18.5,24.5 - parent: 0 - type: Transform -- uid: 2406 - type: CableMV - components: - - pos: -18.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2407 - type: CableMV - components: - - pos: -18.5,22.5 - parent: 0 - type: Transform -- uid: 2408 - type: CableMV - components: - - pos: -19.5,22.5 - parent: 0 - type: Transform -- uid: 2409 - type: CableMV - components: - - pos: -16.5,26.5 - parent: 0 - type: Transform -- uid: 2410 - type: CableMV - components: - - pos: -16.5,27.5 - parent: 0 - type: Transform -- uid: 2411 - type: CableMV - components: - - pos: -16.5,28.5 - parent: 0 - type: Transform -- uid: 2412 - type: CableMV - components: - - pos: -16.5,29.5 - parent: 0 - type: Transform -- uid: 2413 - type: CableMV - components: - - pos: -16.5,30.5 - parent: 0 - type: Transform -- uid: 2414 - type: CableMV - components: - - pos: -17.5,30.5 - parent: 0 - type: Transform -- uid: 2415 - type: CableMV - components: - - pos: -18.5,30.5 - parent: 0 - type: Transform -- uid: 2416 - type: CableHV - components: - - pos: -21.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2417 - type: CableHV - components: - - pos: -21.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2418 - type: CableHV - components: - - pos: -21.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2419 - type: CableHV - components: - - pos: -21.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2420 - type: CableHV - components: - - pos: -21.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2421 - type: CableHV - components: - - pos: -21.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2422 - type: CableHV - components: - - pos: -22.5,12.5 - parent: 0 - type: Transform -- uid: 2423 - type: CableHV - components: - - pos: -23.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2424 - type: CableHV - components: - - pos: -24.5,12.5 - parent: 0 - type: Transform -- uid: 2425 - type: CableHV - components: - - pos: -24.5,13.5 - parent: 0 - type: Transform -- uid: 2426 - type: CableHV - components: - - pos: -24.5,14.5 - parent: 0 - type: Transform -- uid: 2427 - type: CableHV - components: - - pos: -24.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2428 - type: CableHV - components: - - pos: -24.5,16.5 - parent: 0 - type: Transform -- uid: 2429 - type: CableHV - components: - - pos: -24.5,17.5 - parent: 0 - type: Transform -- uid: 2430 - type: CableHV - components: - - pos: -24.5,18.5 - parent: 0 - type: Transform -- uid: 2431 - type: CableHV - components: - - pos: -24.5,19.5 - parent: 0 - type: Transform -- uid: 2432 - type: CableHV - components: - - pos: -23.5,19.5 - parent: 0 - type: Transform -- uid: 2433 - type: CableHV - components: - - pos: -23.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2434 - type: CableHV - components: - - pos: -23.5,21.5 - parent: 0 - type: Transform -- uid: 2435 - type: CableHV - components: - - pos: -23.5,22.5 - parent: 0 - type: Transform -- uid: 2436 - type: CableHV - components: - - pos: -23.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2437 - type: CableHV - components: - - pos: -23.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2438 - type: CableHV - components: - - pos: -22.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2439 - type: CableHV - components: - - pos: -21.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2440 - type: CableHV - components: - - pos: -21.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2441 - type: CableHV - components: - - pos: -21.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2442 - type: CableHV - components: - - pos: -21.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2443 - type: CableHV - components: - - pos: -21.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2444 - type: CableHV - components: - - pos: -20.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2445 - type: CableHV - components: - - pos: -19.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2446 - type: CableHV - components: - - pos: -19.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2447 - type: CableHV - components: - - pos: -19.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2448 - type: CableHV - components: - - pos: -19.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2449 - type: CableHV - components: - - pos: -19.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2450 - type: CableHV - components: - - pos: -19.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2451 - type: CableHV - components: - - pos: -19.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2452 - type: CableHV - components: - - pos: -20.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2453 - type: CableHV - components: - - pos: -21.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2454 - type: CableHV - components: - - pos: -22.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2455 - type: CableHV - components: - - pos: -23.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2456 - type: CableHV - components: - - pos: -23.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2457 - type: WallReinforced - components: - - pos: -14.5,-13.5 - parent: 0 - type: Transform -- uid: 2458 - type: WallReinforced - components: - - pos: -13.5,-13.5 - parent: 0 - type: Transform -- uid: 2459 - type: WallReinforced - components: - - pos: -11.5,-13.5 - parent: 0 - type: Transform -- uid: 2460 - type: WallReinforced - components: - - pos: -10.5,-13.5 - parent: 0 - type: Transform -- uid: 2461 - type: WallReinforced - components: - - pos: -10.5,-14.5 - parent: 0 - type: Transform -- uid: 2462 - type: WallReinforced - components: - - pos: -10.5,-15.5 - parent: 0 - type: Transform -- uid: 2463 - type: WallReinforced - components: - - pos: -10.5,-16.5 - parent: 0 - type: Transform -- uid: 2464 - type: WallReinforced - components: - - pos: -10.5,-17.5 - parent: 0 - type: Transform -- uid: 2465 - type: WallReinforced - components: - - pos: -11.5,-17.5 - parent: 0 - type: Transform -- uid: 2466 - type: WallReinforced - components: - - pos: -12.5,-17.5 - parent: 0 - type: Transform -- uid: 2467 - type: WallReinforced - components: - - pos: -13.5,-17.5 - parent: 0 - type: Transform -- uid: 2468 - type: WallReinforced - components: - - pos: -14.5,-17.5 - parent: 0 - type: Transform -- uid: 2469 - type: WallReinforced - components: - - pos: -14.5,-16.5 - parent: 0 - type: Transform -- uid: 2470 - type: WallReinforced - components: - - pos: -14.5,-15.5 - parent: 0 - type: Transform -- uid: 2471 - type: WallReinforced - components: - - pos: -14.5,-14.5 - parent: 0 - type: Transform -- uid: 2472 - type: SubstationBasic - components: - - name: West Cargo Substation - type: MetaData - - pos: -12.5,-16.5 - parent: 0 - type: Transform -- uid: 2473 - type: CableMV - components: - - pos: -12.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2474 - type: CableMV - components: - - pos: -12.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2475 - type: CableMV - components: - - pos: -12.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2476 - type: CableMV - components: - - pos: -12.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2477 - type: CableMV - components: - - pos: -12.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2478 - type: CableMV - components: - - pos: -11.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2479 - type: CableMV - components: - - pos: -10.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2480 - type: CableMV - components: - - pos: -9.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2481 - type: CableMV - components: - - pos: -8.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2482 - type: CableMV - components: - - pos: -8.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2483 - type: CableMV - components: - - pos: -13.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2484 - type: CableMV - components: - - pos: -14.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2485 - type: CableMV - components: - - pos: -15.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2486 - type: CableMV - components: - - pos: -15.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2487 - type: CableMV - components: - - pos: -16.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2488 - type: CableMV - components: - - pos: -17.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2489 - type: CableMV - components: - - pos: -18.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2490 - type: CableMV - components: - - pos: -18.5,-12.5 - parent: 0 - type: Transform -- uid: 2491 - type: CableMV - components: - - pos: -18.5,-11.5 - parent: 0 - type: Transform -- uid: 2492 - type: CableMV - components: - - pos: -18.5,-10.5 - parent: 0 - type: Transform -- uid: 2493 - type: CableMV - components: - - pos: -18.5,-9.5 - parent: 0 - type: Transform -- uid: 2494 - type: CableMV - components: - - pos: -17.5,-9.5 - parent: 0 - type: Transform -- uid: 2495 - type: CableMV - components: - - pos: -16.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2496 - type: CableHV - components: - - pos: -20.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2497 - type: CableHV - components: - - pos: -19.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2498 - type: CableHV - components: - - pos: -18.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2499 - type: CableHV - components: - - pos: -17.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2500 - type: CableHV - components: - - pos: -16.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2501 - type: CableHV - components: - - pos: -15.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2502 - type: CableHV - components: - - pos: -14.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2503 - type: CableHV - components: - - pos: -13.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2504 - type: CableHV - components: - - pos: -12.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2505 - type: CableHV - components: - - pos: -11.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2506 - type: CableHV - components: - - pos: -10.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2507 - type: CableHV - components: - - pos: -9.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2508 - type: CableHV - components: - - pos: -8.5,5.5 - parent: 0 - type: Transform -- uid: 2509 - type: CableHV - components: - - pos: -7.5,5.5 - parent: 0 - type: Transform -- uid: 2510 - type: CableHV - components: - - pos: -6.5,5.5 - parent: 0 - type: Transform -- uid: 2511 - type: CableHV - components: - - pos: -5.5,5.5 - parent: 0 - type: Transform -- uid: 2512 - type: CableHV - components: - - pos: -5.5,4.5 - parent: 0 - type: Transform -- uid: 2513 - type: CableHV - components: - - pos: -5.5,3.5 - parent: 0 - type: Transform -- uid: 2514 - type: CableHV - components: - - pos: -5.5,2.5 - parent: 0 - type: Transform -- uid: 2515 - type: CableHV - components: - - pos: -5.5,1.5 - parent: 0 - type: Transform -- uid: 2516 - type: CableHV - components: - - pos: -5.5,0.5 - parent: 0 - type: Transform -- uid: 2517 - type: CableHV - components: - - pos: -5.5,-0.5 - parent: 0 - type: Transform -- uid: 2518 - type: CableHV - components: - - pos: -5.5,-1.5 - parent: 0 - type: Transform -- uid: 2519 - type: CableHV - components: - - pos: -5.5,-2.5 - parent: 0 - type: Transform -- uid: 2520 - type: CableHV - components: - - pos: -5.5,-3.5 - parent: 0 - type: Transform -- uid: 2521 - type: CableHV - components: - - pos: -5.5,-4.5 - parent: 0 - type: Transform -- uid: 2522 - type: CableHV - components: - - pos: -5.5,-5.5 - parent: 0 - type: Transform -- uid: 2523 - type: CableHV - components: - - pos: -5.5,-6.5 - parent: 0 - type: Transform -- uid: 2524 - type: CableHV - components: - - pos: -5.5,-7.5 - parent: 0 - type: Transform -- uid: 2525 - type: CableHV - components: - - pos: -5.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2526 - type: CableHV - components: - - pos: -5.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2527 - type: CableHV - components: - - pos: -5.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2528 - type: CableHV - components: - - pos: -5.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2529 - type: CableHV - components: - - pos: -5.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2530 - type: CableHV - components: - - pos: -6.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2531 - type: CableHV - components: - - pos: -7.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2532 - type: CableHV - components: - - pos: -8.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2533 - type: CableHV - components: - - pos: -9.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2534 - type: CableHV - components: - - pos: -10.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2535 - type: CableHV - components: - - pos: -11.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2536 - type: CableHV - components: - - pos: -12.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2537 - type: CableHV - components: - - pos: -12.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2538 - type: CableHV - components: - - pos: -12.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2539 - type: CableHV - components: - - pos: -12.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2540 - type: CableHV - components: - - pos: -12.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2541 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2542 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2543 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -17.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2544 - type: GasPipeStraight - components: - - pos: -17.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2545 - type: GasPipeStraight - components: - - pos: -17.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2546 - type: GasPipeStraight - components: - - pos: -17.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2547 - type: GasPipeStraight - components: - - pos: -17.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2548 - type: GasPipeStraight - components: - - pos: -17.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2549 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -17.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2550 - type: GasVentPump - components: - - pos: -17.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2551 - type: Bookshelf - components: - - pos: -13.5,0.5 - parent: 0 - type: Transform -- uid: 2552 - type: TableWood - components: - - pos: -16.5,0.5 - parent: 0 - type: Transform -- uid: 2553 - type: BriefcaseBrownFilled - components: - - pos: -16.499556,0.6449647 - parent: 0 - type: Transform -- uid: 2554 - type: TableWood - components: - - pos: -16.5,-2.5 - parent: 0 - type: Transform -- uid: 2555 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,-2.5 - parent: 0 - type: Transform -- uid: 2556 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,-1.5 - parent: 0 - type: Transform -- uid: 2557 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,-0.5 - parent: 0 - type: Transform -- uid: 2558 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -15.5,-2.5 - parent: 0 - type: Transform -- uid: 2559 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -14.5,-2.5 - parent: 0 - type: Transform -- uid: 2560 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -13.5,-2.5 - parent: 0 - type: Transform -- uid: 2561 - type: ComfyChair - components: - - pos: -15.5,0.5 - parent: 0 - type: Transform -- uid: 2562 - type: TableCarpet - components: - - pos: -14.5,0.5 - parent: 0 - type: Transform -- uid: 2563 - type: LampGold - components: - - pos: -16.48393,-2.0737853 - parent: 0 - type: Transform -- uid: 2564 - type: CigarSpent - components: - - pos: -14.530806,0.5980897 - parent: 0 - type: Transform -- uid: 2565 - type: Carpet - components: - - pos: -15.5,-1.5 - parent: 0 - type: Transform -- uid: 2566 - type: Carpet - components: - - pos: -15.5,-0.5 - parent: 0 - type: Transform -- uid: 2567 - type: Carpet - components: - - pos: -14.5,-1.5 - parent: 0 - type: Transform -- uid: 2568 - type: Carpet - components: - - pos: -14.5,-0.5 - parent: 0 - type: Transform -- uid: 2569 - type: Carpet - components: - - pos: -13.5,-1.5 - parent: 0 - type: Transform -- uid: 2570 - type: Carpet - components: - - pos: -13.5,-0.5 - parent: 0 - type: Transform -- uid: 2571 - type: CarpetOrange - components: - - pos: -18.5,-0.5 - parent: 0 - type: Transform -- uid: 2572 - type: CarpetOrange - components: - - pos: -18.5,-1.5 - parent: 0 - type: Transform -- uid: 2573 - type: CarpetOrange - components: - - pos: -17.5,-0.5 - parent: 0 - type: Transform -- uid: 2574 - type: CarpetOrange - components: - - pos: -17.5,-1.5 - parent: 0 - type: Transform -- uid: 2575 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-3.5 - parent: 0 - type: Transform -- uid: 2576 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-3.5 - parent: 0 - type: Transform -- uid: 2577 - type: AirlockEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: -21.5,4.5 - parent: 0 - type: Transform -- uid: 2578 - type: AirlockMaintLocked - components: - - rot: 3.141592653589793 rad - pos: -17.5,1.5 - parent: 0 - type: Transform -- uid: 2579 - type: AirlockEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: -21.5,34.5 - parent: 0 - type: Transform -- uid: 2580 - type: PosterLegitNanotrasenLogo - components: - - rot: 3.141592653589793 rad - pos: -15.5,-3.5 - parent: 0 - type: Transform -- uid: 2581 - type: AirlockEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: -12.5,-13.5 - parent: 0 - type: Transform -- uid: 2582 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -9.5,5.5 - parent: 0 - type: Transform -- uid: 2583 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -10.5,5.5 - parent: 0 - type: Transform -- uid: 2584 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -11.5,5.5 - parent: 0 - type: Transform -- uid: 2585 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -12.5,5.5 - parent: 0 - type: Transform -- uid: 2586 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -13.5,5.5 - parent: 0 - type: Transform -- uid: 2587 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -14.5,5.5 - parent: 0 - type: Transform -- uid: 2588 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -15.5,5.5 - parent: 0 - type: Transform -- uid: 2589 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -16.5,5.5 - parent: 0 - type: Transform -- uid: 2590 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -17.5,5.5 - parent: 0 - type: Transform -- uid: 2591 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -18.5,5.5 - parent: 0 - type: Transform -- uid: 2592 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -19.5,5.5 - parent: 0 - type: Transform -- uid: 2593 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -20.5,5.5 - parent: 0 - type: Transform -- uid: 2594 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -21.5,5.5 - parent: 0 - type: Transform -- uid: 2595 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -17.5,2.5 - parent: 0 - type: Transform -- uid: 2596 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -17.5,3.5 - parent: 0 - type: Transform -- uid: 2597 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -17.5,4.5 - parent: 0 - type: Transform -- uid: 2598 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -14.5,6.5 - parent: 0 - type: Transform -- uid: 2599 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -10.5,4.5 - parent: 0 - type: Transform -- uid: 2600 - type: WallSolid - components: - - pos: -15.5,2.5 - parent: 0 - type: Transform -- uid: 2601 - type: Rack - components: - - pos: -14.5,2.5 - parent: 0 - type: Transform -- uid: 2602 - type: Grille - components: - - pos: -13.5,3.5 - parent: 0 - type: Transform -- uid: 2603 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -14.5,3.5 - parent: 0 - type: Transform -- uid: 2604 - type: Grille - components: - - pos: -15.5,3.5 - parent: 0 - type: Transform -- uid: 2605 - type: Rack - components: - - pos: -18.5,2.5 - parent: 0 - type: Transform -- uid: 2606 - type: WeldingFuelTankFull - components: - - pos: -16.5,2.5 - parent: 0 - type: Transform -- uid: 2607 - type: FlashlightLantern - components: - - pos: -14.522477,2.562512 - parent: 0 - type: Transform -- uid: 2608 - type: Girder - components: - - pos: -16.5,7.5 - parent: 0 - type: Transform -- uid: 2609 - type: ClosetEmergencyFilledRandom - components: - - pos: -17.5,7.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2610 - type: ClosetFireFilled - components: - - pos: -18.5,7.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2611 - type: ClosetMaintenanceFilledRandom - components: - - pos: -13.5,2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2612 - type: AirlockMaintLocked - components: - - pos: -5.5,-7.5 - parent: 0 - type: Transform -- uid: 2613 - type: WallSolid - components: - - pos: -4.5,-9.5 - parent: 0 - type: Transform -- uid: 2614 - type: WallSolid - components: - - pos: -4.5,-10.5 - parent: 0 - type: Transform -- uid: 2615 - type: WallSolid - components: - - pos: -4.5,-11.5 - parent: 0 - type: Transform -- uid: 2616 - type: WallSolid - components: - - pos: -4.5,-12.5 - parent: 0 - type: Transform -- uid: 2617 - type: WallSolid - components: - - pos: -4.5,-13.5 - parent: 0 - type: Transform -- uid: 2618 - type: WallSolid - components: - - pos: -4.5,-14.5 - parent: 0 - type: Transform -- uid: 2619 - type: WallSolid - components: - - pos: -4.5,-15.5 - parent: 0 - type: Transform -- uid: 2620 - type: WallSolid - components: - - pos: -4.5,-16.5 - parent: 0 - type: Transform -- uid: 2621 - type: WallSolid - components: - - pos: -4.5,-17.5 - parent: 0 - type: Transform -- uid: 2622 - type: WallSolid - components: - - pos: -3.5,-17.5 - parent: 0 - type: Transform -- uid: 2623 - type: WallSolid - components: - - pos: 0.5,-17.5 - parent: 0 - type: Transform -- uid: 2624 - type: WallSolid - components: - - pos: -1.5,-17.5 - parent: 0 - type: Transform -- uid: 2625 - type: WallSolid - components: - - pos: 1.5,-14.5 - parent: 0 - type: Transform -- uid: 2626 - type: WallSolid - components: - - pos: 1.5,-15.5 - parent: 0 - type: Transform -- uid: 2627 - type: WallSolid - components: - - pos: 1.5,-16.5 - parent: 0 - type: Transform -- uid: 2628 - type: WallSolid - components: - - pos: 1.5,-17.5 - parent: 0 - type: Transform -- uid: 2629 - type: WallSolid - components: - - pos: 1.5,-18.5 - parent: 0 - type: Transform -- uid: 2630 - type: WallSolid - components: - - pos: 1.5,-19.5 - parent: 0 - type: Transform -- uid: 2631 - type: WallSolid - components: - - pos: 5.5,-19.5 - parent: 0 - type: Transform -- uid: 2632 - type: WallSolid - components: - - pos: 4.5,-19.5 - parent: 0 - type: Transform -- uid: 2633 - type: WallSolid - components: - - pos: 3.5,-19.5 - parent: 0 - type: Transform -- uid: 2634 - type: WallSolid - components: - - pos: 2.5,-19.5 - parent: 0 - type: Transform -- uid: 2635 - type: WallSolid - components: - - pos: 9.5,-19.5 - parent: 0 - type: Transform -- uid: 2636 - type: WallSolid - components: - - pos: 10.5,-19.5 - parent: 0 - type: Transform -- uid: 2637 - type: WallSolid - components: - - pos: 10.5,-18.5 - parent: 0 - type: Transform -- uid: 2638 - type: Window - components: - - pos: 14.5,-16.5 - parent: 0 - type: Transform -- uid: 2639 - type: Window - components: - - pos: 14.5,-17.5 - parent: 0 - type: Transform -- uid: 2640 - type: WallSolid - components: - - pos: 14.5,-18.5 - parent: 0 - type: Transform -- uid: 2641 - type: WallSolid - components: - - pos: 19.5,-15.5 - parent: 0 - type: Transform -- uid: 2642 - type: WallSolid - components: - - pos: 15.5,-7.5 - parent: 0 - type: Transform -- uid: 2643 - type: WallSolid - components: - - pos: 17.5,-7.5 - parent: 0 - type: Transform -- uid: 2644 - type: WallSolid - components: - - pos: 18.5,-7.5 - parent: 0 - type: Transform -- uid: 2645 - type: WallSolid - components: - - pos: 19.5,-7.5 - parent: 0 - type: Transform -- uid: 2646 - type: WallSolid - components: - - pos: 20.5,-7.5 - parent: 0 - type: Transform -- uid: 2647 - type: WallSolid - components: - - pos: 21.5,-7.5 - parent: 0 - type: Transform -- uid: 2648 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-1.5 - parent: 0 - type: Transform -- uid: 2649 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-1.5 - parent: 0 - type: Transform -- uid: 2650 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-1.5 - parent: 0 - type: Transform -- uid: 2651 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-1.5 - parent: 0 - type: Transform -- uid: 2652 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-1.5 - parent: 0 - type: Transform -- uid: 2653 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-1.5 - parent: 0 - type: Transform -- uid: 2654 - type: WallSolid - components: - - pos: 16.5,-18.5 - parent: 0 - type: Transform -- uid: 2655 - type: WallSolid - components: - - pos: 17.5,-18.5 - parent: 0 - type: Transform -- uid: 2656 - type: WallSolid - components: - - pos: 18.5,-18.5 - parent: 0 - type: Transform -- uid: 2657 - type: WallSolid - components: - - pos: 19.5,-18.5 - parent: 0 - type: Transform -- uid: 2658 - type: WallSolid - components: - - pos: 20.5,-18.5 - parent: 0 - type: Transform -- uid: 2659 - type: DisposalPipe - components: - - pos: 24.5,-3.5 - parent: 0 - type: Transform -- uid: 2660 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: 24.5,-5.5 - parent: 0 - type: Transform -- uid: 2661 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-1.5 - parent: 0 - type: Transform -- uid: 2662 - type: ReinforcedWindow - components: - - pos: 19.5,-16.5 - parent: 0 - type: Transform -- uid: 2663 - type: ReinforcedWindow - components: - - pos: 19.5,-17.5 - parent: 0 - type: Transform -- uid: 2664 - type: MountainRock - components: - - pos: 2.5,-15.5 - parent: 0 - type: Transform -- uid: 2665 - type: MountainRock - components: - - pos: 2.5,-16.5 - parent: 0 - type: Transform -- uid: 2666 - type: MountainRock - components: - - pos: 2.5,-17.5 - parent: 0 - type: Transform -- uid: 2667 - type: MountainRock - components: - - pos: 2.5,-18.5 - parent: 0 - type: Transform -- uid: 2668 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 4.5,-15.5 - parent: 0 - type: Transform -- uid: 2669 - type: PottedPlant10 - components: - - pos: 5.527132,-18.789473 - parent: 0 - type: Transform -- uid: 2670 - type: Table - components: - - pos: 3.5,-17.5 - parent: 0 - type: Transform -- uid: 2671 - type: ComputerCargoShuttle - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-16.5 - parent: 0 - type: Transform -- uid: 2672 - type: Grille - components: - - pos: 7.5,-19.5 - parent: 0 - type: Transform -- uid: 2673 - type: Grille - components: - - pos: 10.5,-17.5 - parent: 0 - type: Transform -- uid: 2674 - type: Grille - components: - - pos: 9.5,-14.5 - parent: 0 - type: Transform -- uid: 2675 - type: Grille - components: - - pos: 6.5,-14.5 - parent: 0 - type: Transform -- uid: 2676 - type: Grille - components: - - pos: 3.5,-14.5 - parent: 0 - type: Transform -- uid: 2677 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 0 - type: Transform -- uid: 2678 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 0 - type: Transform -- uid: 2679 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-7.5 - parent: 0 - type: Transform -- uid: 2680 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 9.5,-7.5 - parent: 0 - type: Transform -- uid: 2681 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 10.5,-7.5 - parent: 0 - type: Transform -- uid: 2682 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 2.5,-7.5 - parent: 0 - type: Transform -- uid: 2683 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 3.5,-7.5 - parent: 0 - type: Transform -- uid: 2684 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 6.5,-7.5 - parent: 0 - type: Transform -- uid: 2685 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 0 - type: Transform -- uid: 2686 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 0 - type: Transform -- uid: 2687 - type: ReinforcedWindow - components: - - pos: 10.5,-11.5 - parent: 0 - type: Transform -- uid: 2688 - type: ReinforcedWindow - components: - - pos: 10.5,-9.5 - parent: 0 - type: Transform -- uid: 2689 - type: ReinforcedWindow - components: - - pos: 14.5,-11.5 - parent: 0 - type: Transform -- uid: 2690 - type: ReinforcedWindow - components: - - pos: 14.5,-9.5 - parent: 0 - type: Transform -- uid: 2691 - type: Grille - components: - - pos: 10.5,-11.5 - parent: 0 - type: Transform -- uid: 2692 - type: Grille - components: - - pos: 10.5,-9.5 - parent: 0 - type: Transform -- uid: 2693 - type: Grille - components: - - pos: 14.5,-11.5 - parent: 0 - type: Transform -- uid: 2694 - type: Grille - components: - - pos: 14.5,-9.5 - parent: 0 - type: Transform -- uid: 2695 - type: WallSolid - components: - - pos: -9.5,-13.5 - parent: 0 - type: Transform -- uid: 2696 - type: WallSolidRust - components: - - pos: -7.5,-13.5 - parent: 0 - type: Transform -- uid: 2697 - type: CrateFunParty - components: - - pos: -9.5,-14.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2698 - type: WallSolid - components: - - pos: -6.5,-14.5 - parent: 0 - type: Transform -- uid: 2699 - type: WallSolid - components: - - pos: -6.5,-15.5 - parent: 0 - type: Transform -- uid: 2700 - type: WallSolid - components: - - pos: -6.5,-16.5 - parent: 0 - type: Transform -- uid: 2701 - type: WallSolid - components: - - pos: -6.5,-17.5 - parent: 0 - type: Transform -- uid: 2702 - type: WallSolidRust - components: - - pos: -6.5,-18.5 - parent: 0 - type: Transform -- uid: 2703 - type: WallSolid - components: - - pos: -6.5,-19.5 - parent: 0 - type: Transform -- uid: 2704 - type: WallSolid - components: - - pos: -7.5,-19.5 - parent: 0 - type: Transform -- uid: 2705 - type: WallSolid - components: - - pos: -8.5,-19.5 - parent: 0 - type: Transform -- uid: 2706 - type: WallSolid - components: - - pos: -9.5,-19.5 - parent: 0 - type: Transform -- uid: 2707 - type: WallSolid - components: - - pos: -10.5,-19.5 - parent: 0 - type: Transform -- uid: 2708 - type: WallSolid - components: - - pos: -10.5,-18.5 - parent: 0 - type: Transform -- uid: 2709 - type: WallSolid - components: - - pos: -10.5,-20.5 - parent: 0 - type: Transform -- uid: 2710 - type: WallSolid - components: - - pos: -10.5,-21.5 - parent: 0 - type: Transform -- uid: 2711 - type: WallSolid - components: - - pos: -10.5,-23.5 - parent: 0 - type: Transform -- uid: 2712 - type: WallSolid - components: - - pos: -12.5,-24.5 - parent: 0 - type: Transform -- uid: 2713 - type: WallSolid - components: - - pos: -12.5,-23.5 - parent: 0 - type: Transform -- uid: 2714 - type: WallSolid - components: - - pos: -11.5,-23.5 - parent: 0 - type: Transform -- uid: 2715 - type: ReinforcedWindow - components: - - pos: -42.5,-26.5 - parent: 0 - type: Transform -- uid: 2716 - type: ReinforcedWindow - components: - - pos: -42.5,-25.5 - parent: 0 - type: Transform -- uid: 2717 - type: ReinforcedWindow - components: - - pos: -42.5,-24.5 - parent: 0 - type: Transform -- uid: 2718 - type: ReinforcedWindow - components: - - pos: -31.5,-27.5 - parent: 0 - type: Transform -- uid: 2719 - type: ReinforcedWindow - components: - - pos: -30.5,-27.5 - parent: 0 - type: Transform -- uid: 2720 - type: ReinforcedWindow - components: - - pos: -32.5,-29.5 - parent: 0 - type: Transform -- uid: 2721 - type: ReinforcedWindow - components: - - pos: -34.5,-29.5 - parent: 0 - type: Transform -- uid: 2722 - type: ReinforcedWindow - components: - - pos: -29.5,-29.5 - parent: 0 - type: Transform -- uid: 2723 - type: ReinforcedWindow - components: - - pos: -27.5,-29.5 - parent: 0 - type: Transform -- uid: 2724 - type: ReinforcedWindow - components: - - pos: -24.5,-29.5 - parent: 0 - type: Transform -- uid: 2725 - type: ReinforcedWindow - components: - - pos: -20.5,-29.5 - parent: 0 - type: Transform -- uid: 2726 - type: ReinforcedWindow - components: - - pos: -23.5,-31.5 - parent: 0 - type: Transform -- uid: 2727 - type: ReinforcedWindow - components: - - pos: -21.5,-31.5 - parent: 0 - type: Transform -- uid: 2728 - type: ReinforcedWindow - components: - - pos: -17.5,-29.5 - parent: 0 - type: Transform -- uid: 2729 - type: ReinforcedWindow - components: - - pos: -15.5,-29.5 - parent: 0 - type: Transform -- uid: 2730 - type: WallReinforced - components: - - pos: -24.5,-31.5 - parent: 0 - type: Transform -- uid: 2731 - type: WallReinforced - components: - - pos: -24.5,-30.5 - parent: 0 - type: Transform -- uid: 2732 - type: WallReinforced - components: - - pos: -20.5,-31.5 - parent: 0 - type: Transform -- uid: 2733 - type: WallReinforced - components: - - pos: -20.5,-30.5 - parent: 0 - type: Transform -- uid: 2734 - type: WallReinforced - components: - - pos: -20.5,-28.5 - parent: 0 - type: Transform -- uid: 2735 - type: WallReinforced - components: - - pos: -20.5,-27.5 - parent: 0 - type: Transform -- uid: 2736 - type: WallReinforced - components: - - pos: -19.5,-27.5 - parent: 0 - type: Transform -- uid: 2737 - type: WallReinforced - components: - - pos: -18.5,-27.5 - parent: 0 - type: Transform -- uid: 2738 - type: WallReinforced - components: - - pos: -17.5,-27.5 - parent: 0 - type: Transform -- uid: 2739 - type: WallReinforced - components: - - pos: -17.5,-28.5 - parent: 0 - type: Transform -- uid: 2740 - type: WallReinforced - components: - - pos: -17.5,-30.5 - parent: 0 - type: Transform -- uid: 2741 - type: WallReinforced - components: - - pos: -15.5,-30.5 - parent: 0 - type: Transform -- uid: 2742 - type: WallReinforced - components: - - pos: -15.5,-28.5 - parent: 0 - type: Transform -- uid: 2743 - type: WallReinforced - components: - - pos: -15.5,-27.5 - parent: 0 - type: Transform -- uid: 2744 - type: WallReinforced - components: - - pos: -14.5,-27.5 - parent: 0 - type: Transform -- uid: 2745 - type: WallReinforced - components: - - pos: -13.5,-27.5 - parent: 0 - type: Transform -- uid: 2746 - type: WallReinforced - components: - - pos: -12.5,-27.5 - parent: 0 - type: Transform -- uid: 2747 - type: WallReinforced - components: - - pos: -12.5,-28.5 - parent: 0 - type: Transform -- uid: 2748 - type: WallSolid - components: - - pos: -13.5,-23.5 - parent: 0 - type: Transform -- uid: 2749 - type: WallSolid - components: - - pos: -14.5,-23.5 - parent: 0 - type: Transform -- uid: 2750 - type: WallSolid - components: - - pos: -15.5,-23.5 - parent: 0 - type: Transform -- uid: 2751 - type: WallSolid - components: - - pos: -16.5,-23.5 - parent: 0 - type: Transform -- uid: 2752 - type: WallSolid - components: - - pos: -17.5,-23.5 - parent: 0 - type: Transform -- uid: 2753 - type: WallSolid - components: - - pos: -19.5,-23.5 - parent: 0 - type: Transform -- uid: 2754 - type: WallSolid - components: - - pos: -20.5,-23.5 - parent: 0 - type: Transform -- uid: 2755 - type: WallSolid - components: - - pos: -20.5,-22.5 - parent: 0 - type: Transform -- uid: 2756 - type: WallSolid - components: - - pos: -20.5,-20.5 - parent: 0 - type: Transform -- uid: 2757 - type: WallSolid - components: - - pos: -20.5,-18.5 - parent: 0 - type: Transform -- uid: 2758 - type: WallSolid - components: - - pos: -19.5,-17.5 - parent: 0 - type: Transform -- uid: 2759 - type: WallSolid - components: - - pos: -18.5,-17.5 - parent: 0 - type: Transform -- uid: 2760 - type: WallSolid - components: - - pos: -17.5,-17.5 - parent: 0 - type: Transform -- uid: 2761 - type: WallSolid - components: - - pos: -16.5,-17.5 - parent: 0 - type: Transform -- uid: 2762 - type: WallSolid - components: - - pos: -15.5,-17.5 - parent: 0 - type: Transform -- uid: 2763 - type: WallReinforced - components: - - pos: -12.5,-29.5 - parent: 0 - type: Transform -- uid: 2764 - type: WallReinforced - components: - - pos: -12.5,-30.5 - parent: 0 - type: Transform -- uid: 2765 - type: WallReinforced - components: - - pos: -11.5,-30.5 - parent: 0 - type: Transform -- uid: 2766 - type: WallReinforced - components: - - pos: -9.5,-30.5 - parent: 0 - type: Transform -- uid: 2767 - type: WallReinforced - components: - - pos: -7.5,-30.5 - parent: 0 - type: Transform -- uid: 2768 - type: WallReinforced - components: - - pos: -6.5,-30.5 - parent: 0 - type: Transform -- uid: 2769 - type: WallReinforced - components: - - pos: -6.5,-29.5 - parent: 0 - type: Transform -- uid: 2770 - type: WallReinforced - components: - - pos: -6.5,-28.5 - parent: 0 - type: Transform -- uid: 2771 - type: WallReinforced - components: - - pos: -6.5,-27.5 - parent: 0 - type: Transform -- uid: 2772 - type: WallSolid - components: - - pos: -12.5,-26.5 - parent: 0 - type: Transform -- uid: 2773 - type: WallSolid - components: - - pos: -11.5,-26.5 - parent: 0 - type: Transform -- uid: 2774 - type: WallSolid - components: - - pos: -10.5,-26.5 - parent: 0 - type: Transform -- uid: 2775 - type: WallReinforced - components: - - pos: -6.5,-26.5 - parent: 0 - type: Transform -- uid: 2776 - type: WallSolid - components: - - pos: -7.5,-26.5 - parent: 0 - type: Transform -- uid: 2777 - type: WallSolid - components: - - pos: -8.5,-26.5 - parent: 0 - type: Transform -- uid: 2778 - type: ReinforcedWindow - components: - - pos: -5.5,-28.5 - parent: 0 - type: Transform -- uid: 2779 - type: ReinforcedWindow - components: - - pos: -4.5,-28.5 - parent: 0 - type: Transform -- uid: 2780 - type: ReinforcedWindow - components: - - pos: -3.5,-28.5 - parent: 0 - type: Transform -- uid: 2781 - type: ReinforcedWindow - components: - - pos: -1.5,-28.5 - parent: 0 - type: Transform -- uid: 2782 - type: ReinforcedWindow - components: - - pos: -0.5,-28.5 - parent: 0 - type: Transform -- uid: 2783 - type: ReinforcedWindow - components: - - pos: 0.5,-28.5 - parent: 0 - type: Transform -- uid: 2784 - type: WallReinforced - components: - - pos: -2.5,-28.5 - parent: 0 - type: Transform -- uid: 2785 - type: WallReinforced - components: - - pos: -2.5,-27.5 - parent: 0 - type: Transform -- uid: 2786 - type: WallReinforced - components: - - pos: -2.5,-23.5 - parent: 0 - type: Transform -- uid: 2787 - type: WallReinforced - components: - - pos: -2.5,-22.5 - parent: 0 - type: Transform -- uid: 2788 - type: WallReinforced - components: - - pos: -1.5,-22.5 - parent: 0 - type: Transform -- uid: 2789 - type: WallReinforced - components: - - pos: -3.5,-22.5 - parent: 0 - type: Transform -- uid: 2790 - type: WallReinforced - components: - - pos: -4.5,-22.5 - parent: 0 - type: Transform -- uid: 2791 - type: WallReinforced - components: - - pos: -5.5,-22.5 - parent: 0 - type: Transform -- uid: 2792 - type: WallReinforced - components: - - pos: -6.5,-22.5 - parent: 0 - type: Transform -- uid: 2793 - type: WallReinforced - components: - - pos: -6.5,-23.5 - parent: 0 - type: Transform -- uid: 2794 - type: WallReinforced - components: - - pos: -6.5,-24.5 - parent: 0 - type: Transform -- uid: 2795 - type: WallReinforced - components: - - pos: -6.5,-25.5 - parent: 0 - type: Transform -- uid: 2796 - type: WallReinforced - components: - - pos: 2.5,-28.5 - parent: 0 - type: Transform -- uid: 2797 - type: WallReinforced - components: - - pos: 1.5,-28.5 - parent: 0 - type: Transform -- uid: 2798 - type: WallReinforced - components: - - pos: 3.5,-28.5 - parent: 0 - type: Transform -- uid: 2799 - type: WallReinforced - components: - - pos: 4.5,-28.5 - parent: 0 - type: Transform -- uid: 2800 - type: WallReinforced - components: - - pos: 4.5,-27.5 - parent: 0 - type: Transform -- uid: 2801 - type: WallReinforced - components: - - pos: 4.5,-22.5 - parent: 0 - type: Transform -- uid: 2802 - type: WallReinforced - components: - - pos: 4.5,-23.5 - parent: 0 - type: Transform -- uid: 2803 - type: WallReinforced - components: - - pos: 3.5,-22.5 - parent: 0 - type: Transform -- uid: 2804 - type: ReinforcedWindow - components: - - pos: 4.5,-26.5 - parent: 0 - type: Transform -- uid: 2805 - type: ReinforcedWindow - components: - - pos: 4.5,-24.5 - parent: 0 - type: Transform -- uid: 2806 - type: ReinforcedWindow - components: - - pos: 2.5,-22.5 - parent: 0 - type: Transform -- uid: 2807 - type: ReinforcedWindow - components: - - pos: 1.5,-22.5 - parent: 0 - type: Transform -- uid: 2808 - type: ReinforcedWindow - components: - - pos: 0.5,-22.5 - parent: 0 - type: Transform -- uid: 2809 - type: ReinforcedWindow - components: - - pos: -0.5,-22.5 - parent: 0 - type: Transform -- uid: 2810 - type: TintedWindow - components: - - pos: -2.5,-26.5 - parent: 0 - type: Transform -- uid: 2811 - type: TintedWindow - components: - - pos: -2.5,-24.5 - parent: 0 - type: Transform -- uid: 2812 - type: WallReinforced - components: - - pos: -34.5,-30.5 - parent: 0 - type: Transform -- uid: 2813 - type: WallReinforced - components: - - pos: -32.5,-30.5 - parent: 0 - type: Transform -- uid: 2814 - type: WallReinforced - components: - - pos: -32.5,-28.5 - parent: 0 - type: Transform -- uid: 2815 - type: WallReinforced - components: - - pos: -32.5,-27.5 - parent: 0 - type: Transform -- uid: 2816 - type: WallReinforced - components: - - pos: -34.5,-28.5 - parent: 0 - type: Transform -- uid: 2817 - type: WallReinforced - components: - - pos: -34.5,-27.5 - parent: 0 - type: Transform -- uid: 2818 - type: WallReinforced - components: - - pos: -35.5,-27.5 - parent: 0 - type: Transform -- uid: 2819 - type: WallReinforced - components: - - pos: -36.5,-27.5 - parent: 0 - type: Transform -- uid: 2820 - type: WallReinforced - components: - - pos: -37.5,-27.5 - parent: 0 - type: Transform -- uid: 2821 - type: WallReinforced - components: - - pos: -37.5,-28.5 - parent: 0 - type: Transform -- uid: 2822 - type: WallReinforced - components: - - pos: -37.5,-30.5 - parent: 0 - type: Transform -- uid: 2823 - type: WallReinforced - components: - - pos: -37.5,-31.5 - parent: 0 - type: Transform -- uid: 2824 - type: WallReinforced - components: - - pos: -29.5,-30.5 - parent: 0 - type: Transform -- uid: 2825 - type: WallReinforced - components: - - pos: -29.5,-28.5 - parent: 0 - type: Transform -- uid: 2826 - type: WallReinforced - components: - - pos: -29.5,-27.5 - parent: 0 - type: Transform -- uid: 2827 - type: WallReinforced - components: - - pos: -27.5,-30.5 - parent: 0 - type: Transform -- uid: 2828 - type: WallReinforced - components: - - pos: -27.5,-28.5 - parent: 0 - type: Transform -- uid: 2829 - type: WallReinforced - components: - - pos: -26.5,-28.5 - parent: 0 - type: Transform -- uid: 2830 - type: WallReinforced - components: - - pos: -25.5,-28.5 - parent: 0 - type: Transform -- uid: 2831 - type: WallReinforced - components: - - pos: -24.5,-28.5 - parent: 0 - type: Transform -- uid: 2832 - type: WallReinforced - components: - - pos: -27.5,-27.5 - parent: 0 - type: Transform -- uid: 2833 - type: WallReinforced - components: - - pos: -24.5,-7.5 - parent: 0 - type: Transform -- uid: 2834 - type: WallReinforced - components: - - pos: -24.5,-8.5 - parent: 0 - type: Transform -- uid: 2835 - type: WallReinforced - components: - - pos: -24.5,-9.5 - parent: 0 - type: Transform -- uid: 2836 - type: WallReinforced - components: - - pos: -24.5,-10.5 - parent: 0 - type: Transform -- uid: 2837 - type: WallReinforced - components: - - pos: -25.5,-9.5 - parent: 0 - type: Transform -- uid: 2838 - type: WallReinforced - components: - - pos: -26.5,-9.5 - parent: 0 - type: Transform -- uid: 2839 - type: WallReinforced - components: - - pos: -27.5,-9.5 - parent: 0 - type: Transform -- uid: 2840 - type: WallReinforced - components: - - pos: -28.5,-9.5 - parent: 0 - type: Transform -- uid: 2841 - type: WallReinforced - components: - - pos: -29.5,-9.5 - parent: 0 - type: Transform -- uid: 2842 - type: WallReinforced - components: - - pos: -29.5,-7.5 - parent: 0 - type: Transform -- uid: 2843 - type: ReinforcedWindow - components: - - pos: -29.5,-8.5 - parent: 0 - type: Transform -- uid: 2844 - type: ReinforcedWindow - components: - - pos: -28.5,-7.5 - parent: 0 - type: Transform -- uid: 2845 - type: ReinforcedWindow - components: - - pos: -27.5,-7.5 - parent: 0 - type: Transform -- uid: 2846 - type: ReinforcedWindow - components: - - pos: -26.5,-7.5 - parent: 0 - type: Transform -- uid: 2847 - type: ReinforcedWindow - components: - - pos: -25.5,-7.5 - parent: 0 - type: Transform -- uid: 2848 - type: ReinforcedWindow - components: - - pos: -29.5,-10.5 - parent: 0 - type: Transform -- uid: 2849 - type: ReinforcedWindow - components: - - pos: -31.5,-10.5 - parent: 0 - type: Transform -- uid: 2850 - type: ReinforcedWindow - components: - - pos: -31.5,-8.5 - parent: 0 - type: Transform -- uid: 2851 - type: ReinforcedWindow - components: - - pos: -31.5,-7.5 - parent: 0 - type: Transform -- uid: 2852 - type: WallReinforced - components: - - pos: -31.5,-9.5 - parent: 0 - type: Transform -- uid: 2853 - type: ReinforcedWindow - components: - - pos: -32.5,-9.5 - parent: 0 - type: Transform -- uid: 2854 - type: WallReinforced - components: - - pos: -42.5,-23.5 - parent: 0 - type: Transform -- uid: 2855 - type: WallReinforced - components: - - pos: -43.5,-23.5 - parent: 0 - type: Transform -- uid: 2856 - type: ReinforcedWindow - components: - - pos: -44.5,-23.5 - parent: 0 - type: Transform -- uid: 2857 - type: WallReinforced - components: - - pos: -45.5,-23.5 - parent: 0 - type: Transform -- uid: 2858 - type: WallReinforced - components: - - pos: -46.5,-23.5 - parent: 0 - type: Transform -- uid: 2859 - type: WallReinforced - components: - - pos: -46.5,-22.5 - parent: 0 - type: Transform -- uid: 2860 - type: WallReinforced - components: - - pos: -46.5,-21.5 - parent: 0 - type: Transform -- uid: 2861 - type: WallReinforced - components: - - pos: -36.5,-9.5 - parent: 0 - type: Transform -- uid: 2862 - type: SignSecureMed - components: - - pos: -31.5,-9.5 - parent: 0 - type: Transform -- uid: 2863 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -38.5,-21.5 - parent: 0 - type: Transform -- uid: 2864 - type: ReinforcedWindow - components: - - pos: -35.5,-9.5 - parent: 0 - type: Transform -- uid: 2865 - type: ReinforcedWindow - components: - - pos: -34.5,-9.5 - parent: 0 - type: Transform -- uid: 2866 - type: ReinforcedWindow - components: - - pos: -33.5,-9.5 - parent: 0 - type: Transform -- uid: 2867 - type: SignSecureMed - components: - - pos: -31.5,-21.5 - parent: 0 - type: Transform -- uid: 2868 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -38.5,-9.5 - parent: 0 - type: Transform -- uid: 2869 - type: AirlockExternalGlassShuttleArrivals - components: - - pos: -37.5,-10.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 2870 - type: AirlockExternalGlass - components: - - pos: -37.5,-23.5 - parent: 0 - type: Transform -- uid: 2871 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -38.5,-22.5 - parent: 0 - type: Transform -- uid: 2872 - type: ReinforcedWindow - components: - - pos: -39.5,-6.5 - parent: 0 - type: Transform -- uid: 2873 - type: ReinforcedWindow - components: - - pos: -39.5,-5.5 - parent: 0 - type: Transform -- uid: 2874 - type: ReinforcedWindow - components: - - pos: -39.5,-4.5 - parent: 0 - type: Transform -- uid: 2875 - type: WallReinforced - components: - - pos: -39.5,-7.5 - parent: 0 - type: Transform -- uid: 2876 - type: WallReinforced - components: - - pos: -40.5,-7.5 - parent: 0 - type: Transform -- uid: 2877 - type: WallReinforced - components: - - pos: -46.5,-8.5 - parent: 0 - type: Transform -- uid: 2878 - type: WallReinforced - components: - - pos: -46.5,-9.5 - parent: 0 - type: Transform -- uid: 2879 - type: WallReinforced - components: - - pos: -46.5,-7.5 - parent: 0 - type: Transform -- uid: 2880 - type: WallReinforced - components: - - pos: -46.5,-6.5 - parent: 0 - type: Transform -- uid: 2881 - type: WallReinforced - components: - - pos: -46.5,-5.5 - parent: 0 - type: Transform -- uid: 2882 - type: WallReinforced - components: - - pos: -40.5,-4.5 - parent: 0 - type: Transform -- uid: 2883 - type: WallReinforced - components: - - pos: -40.5,-3.5 - parent: 0 - type: Transform -- uid: 2884 - type: WallReinforced - components: - - pos: -39.5,-3.5 - parent: 0 - type: Transform -- uid: 2885 - type: WallReinforced - components: - - pos: -42.5,-4.5 - parent: 0 - type: Transform -- uid: 2886 - type: WallReinforced - components: - - pos: -43.5,-4.5 - parent: 0 - type: Transform -- uid: 2887 - type: WallReinforced - components: - - pos: -44.5,-4.5 - parent: 0 - type: Transform -- uid: 2888 - type: WallReinforced - components: - - pos: -45.5,-4.5 - parent: 0 - type: Transform -- uid: 2889 - type: WallReinforced - components: - - pos: -46.5,-4.5 - parent: 0 - type: Transform -- uid: 2890 - type: WallReinforced - components: - - pos: -43.5,-3.5 - parent: 0 - type: Transform -- uid: 2891 - type: WallReinforced - components: - - pos: -43.5,-2.5 - parent: 0 - type: Transform -- uid: 2892 - type: WallReinforced - components: - - pos: -43.5,-1.5 - parent: 0 - type: Transform -- uid: 2893 - type: WallReinforced - components: - - pos: -43.5,-0.5 - parent: 0 - type: Transform -- uid: 2894 - type: WallReinforced - components: - - pos: -47.5,-4.5 - parent: 0 - type: Transform -- uid: 2895 - type: WallReinforced - components: - - pos: -47.5,-3.5 - parent: 0 - type: Transform -- uid: 2896 - type: WallReinforced - components: - - pos: -47.5,-1.5 - parent: 0 - type: Transform -- uid: 2897 - type: WallReinforced - components: - - pos: -47.5,-0.5 - parent: 0 - type: Transform -- uid: 2898 - type: ReinforcedWindow - components: - - pos: -47.5,-2.5 - parent: 0 - type: Transform -- uid: 2899 - type: ReinforcedWindow - components: - - pos: -46.5,-0.5 - parent: 0 - type: Transform -- uid: 2900 - type: ReinforcedWindow - components: - - pos: -49.5,0.5 - parent: 0 - type: Transform -- uid: 2901 - type: ReinforcedWindow - components: - - pos: -49.5,2.5 - parent: 0 - type: Transform -- uid: 2902 - type: ReinforcedWindow - components: - - pos: -48.5,2.5 - parent: 0 - type: Transform -- uid: 2903 - type: ReinforcedWindow - components: - - pos: -47.5,2.5 - parent: 0 - type: Transform -- uid: 2904 - type: ReinforcedWindow - components: - - pos: -48.5,0.5 - parent: 0 - type: Transform -- uid: 2905 - type: ReinforcedWindow - components: - - pos: -47.5,0.5 - parent: 0 - type: Transform -- uid: 2906 - type: WallReinforced - components: - - pos: -47.5,3.5 - parent: 0 - type: Transform -- uid: 2907 - type: WallReinforced - components: - - pos: -46.5,3.5 - parent: 0 - type: Transform -- uid: 2908 - type: WallReinforced - components: - - pos: -45.5,3.5 - parent: 0 - type: Transform -- uid: 2909 - type: WallReinforced - components: - - pos: -44.5,3.5 - parent: 0 - type: Transform -- uid: 2910 - type: WallReinforced - components: - - pos: -43.5,3.5 - parent: 0 - type: Transform -- uid: 2911 - type: ReinforcedWindow - components: - - pos: -35.5,-21.5 - parent: 0 - type: Transform -- uid: 2912 - type: ReinforcedWindow - components: - - pos: -34.5,-21.5 - parent: 0 - type: Transform -- uid: 2913 - type: ReinforcedWindow - components: - - pos: -33.5,-21.5 - parent: 0 - type: Transform -- uid: 2914 - type: WallReinforced - components: - - pos: -24.5,-23.5 - parent: 0 - type: Transform -- uid: 2915 - type: WallReinforced - components: - - pos: -24.5,-22.5 - parent: 0 - type: Transform -- uid: 2916 - type: WallReinforced - components: - - pos: -24.5,-21.5 - parent: 0 - type: Transform -- uid: 2917 - type: WallReinforced - components: - - pos: -24.5,-20.5 - parent: 0 - type: Transform -- uid: 2918 - type: ReinforcedWindow - components: - - pos: -36.5,-8.5 - parent: 0 - type: Transform -- uid: 2919 - type: ReinforcedWindow - components: - - pos: -38.5,-10.5 - parent: 0 - type: Transform -- uid: 2920 - type: WallReinforced - components: - - pos: -31.5,-21.5 - parent: 0 - type: Transform -- uid: 2921 - type: Grille - components: - - pos: -36.5,-20.5 - parent: 0 - type: Transform -- uid: 2922 - type: WallReinforced - components: - - pos: -29.5,-21.5 - parent: 0 - type: Transform -- uid: 2923 - type: WallReinforced - components: - - pos: -28.5,-21.5 - parent: 0 - type: Transform -- uid: 2924 - type: WallReinforced - components: - - pos: -27.5,-21.5 - parent: 0 - type: Transform -- uid: 2925 - type: WallReinforced - components: - - pos: -26.5,-21.5 - parent: 0 - type: Transform -- uid: 2926 - type: WallReinforced - components: - - pos: -25.5,-21.5 - parent: 0 - type: Transform -- uid: 2927 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -38.5,-22.5 - parent: 0 - type: Transform -- uid: 2928 - type: WallReinforced - components: - - pos: -41.5,-23.5 - parent: 0 - type: Transform -- uid: 2929 - type: WallReinforced - components: - - pos: -40.5,-23.5 - parent: 0 - type: Transform -- uid: 2930 - type: WallReinforced - components: - - pos: -39.5,-23.5 - parent: 0 - type: Transform -- uid: 2931 - type: Catwalk - components: - - pos: -39.5,-20.5 - parent: 0 - type: Transform -- uid: 2932 - type: CableApcExtension - components: - - pos: -37.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2933 - type: CableApcExtension - components: - - pos: -37.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2934 - type: ReinforcedWindow - components: - - pos: -31.5,-23.5 - parent: 0 - type: Transform -- uid: 2935 - type: ReinforcedWindow - components: - - pos: -31.5,-22.5 - parent: 0 - type: Transform -- uid: 2936 - type: ReinforcedWindow - components: - - pos: -29.5,-22.5 - parent: 0 - type: Transform -- uid: 2937 - type: ReinforcedWindow - components: - - pos: -28.5,-23.5 - parent: 0 - type: Transform -- uid: 2938 - type: ReinforcedWindow - components: - - pos: -27.5,-23.5 - parent: 0 - type: Transform -- uid: 2939 - type: ReinforcedWindow - components: - - pos: -26.5,-23.5 - parent: 0 - type: Transform -- uid: 2940 - type: ReinforcedWindow - components: - - pos: -25.5,-23.5 - parent: 0 - type: Transform -- uid: 2941 - type: Grille - components: - - pos: -29.5,-22.5 - parent: 0 - type: Transform -- uid: 2942 - type: WallReinforced - components: - - pos: -29.5,-23.5 - parent: 0 - type: Transform -- uid: 2943 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -32.5,-9.5 - parent: 0 - type: Transform -- uid: 2944 - type: Grille - components: - - pos: -38.5,-20.5 - parent: 0 - type: Transform -- uid: 2945 - type: ReinforcedWindow - components: - - pos: -31.5,-20.5 - parent: 0 - type: Transform -- uid: 2946 - type: ReinforcedWindow - components: - - pos: -29.5,-20.5 - parent: 0 - type: Transform -- uid: 2947 - type: ReinforcedWindow - components: - - pos: -24.5,-19.5 - parent: 0 - type: Transform -- uid: 2948 - type: ReinforcedWindow - components: - - pos: -24.5,-18.5 - parent: 0 - type: Transform -- uid: 2949 - type: ReinforcedWindow - components: - - pos: -24.5,-17.5 - parent: 0 - type: Transform -- uid: 2950 - type: ReinforcedWindow - components: - - pos: -24.5,-16.5 - parent: 0 - type: Transform -- uid: 2951 - type: ReinforcedWindow - components: - - pos: -24.5,-14.5 - parent: 0 - type: Transform -- uid: 2952 - type: ReinforcedWindow - components: - - pos: -24.5,-13.5 - parent: 0 - type: Transform -- uid: 2953 - type: ReinforcedWindow - components: - - pos: -24.5,-12.5 - parent: 0 - type: Transform -- uid: 2954 - type: ReinforcedWindow - components: - - pos: -24.5,-11.5 - parent: 0 - type: Transform -- uid: 2955 - type: WallReinforced - components: - - pos: -24.5,-15.5 - parent: 0 - type: Transform -- uid: 2956 - type: Catwalk - components: - - pos: -28.5,-20.5 - parent: 0 - type: Transform -- uid: 2957 - type: Catwalk - components: - - pos: -27.5,-20.5 - parent: 0 - type: Transform -- uid: 2958 - type: Catwalk - components: - - pos: -26.5,-20.5 - parent: 0 - type: Transform -- uid: 2959 - type: Catwalk - components: - - pos: -25.5,-20.5 - parent: 0 - type: Transform -- uid: 2960 - type: Catwalk - components: - - pos: -25.5,-19.5 - parent: 0 - type: Transform -- uid: 2961 - type: Catwalk - components: - - pos: -25.5,-18.5 - parent: 0 - type: Transform -- uid: 2962 - type: Catwalk - components: - - pos: -25.5,-17.5 - parent: 0 - type: Transform -- uid: 2963 - type: Catwalk - components: - - pos: -25.5,-16.5 - parent: 0 - type: Transform -- uid: 2964 - type: Catwalk - components: - - pos: -25.5,-15.5 - parent: 0 - type: Transform -- uid: 2965 - type: Catwalk - components: - - pos: -25.5,-14.5 - parent: 0 - type: Transform -- uid: 2966 - type: Catwalk - components: - - pos: -25.5,-13.5 - parent: 0 - type: Transform -- uid: 2967 - type: Catwalk - components: - - pos: -25.5,-12.5 - parent: 0 - type: Transform -- uid: 2968 - type: Catwalk - components: - - pos: -25.5,-11.5 - parent: 0 - type: Transform -- uid: 2969 - type: Catwalk - components: - - pos: -25.5,-10.5 - parent: 0 - type: Transform -- uid: 2970 - type: Catwalk - components: - - pos: -26.5,-10.5 - parent: 0 - type: Transform -- uid: 2971 - type: Catwalk - components: - - pos: -27.5,-10.5 - parent: 0 - type: Transform -- uid: 2972 - type: Catwalk - components: - - pos: -28.5,-10.5 - parent: 0 - type: Transform -- uid: 2973 - type: Catwalk - components: - - pos: -32.5,-10.5 - parent: 0 - type: Transform -- uid: 2974 - type: Catwalk - components: - - pos: -33.5,-10.5 - parent: 0 - type: Transform -- uid: 2975 - type: Catwalk - components: - - pos: -34.5,-10.5 - parent: 0 - type: Transform -- uid: 2976 - type: Catwalk - components: - - pos: -35.5,-10.5 - parent: 0 - type: Transform -- uid: 2977 - type: ReinforcedWindow - components: - - pos: -36.5,-22.5 - parent: 0 - type: Transform -- uid: 2978 - type: ReinforcedWindow - components: - - pos: -36.5,-23.5 - parent: 0 - type: Transform -- uid: 2979 - type: Catwalk - components: - - pos: -35.5,-20.5 - parent: 0 - type: Transform -- uid: 2980 - type: Catwalk - components: - - pos: -34.5,-20.5 - parent: 0 - type: Transform -- uid: 2981 - type: Catwalk - components: - - pos: -33.5,-20.5 - parent: 0 - type: Transform -- uid: 2982 - type: Catwalk - components: - - pos: -32.5,-20.5 - parent: 0 - type: Transform -- uid: 2983 - type: Catwalk - components: - - pos: -40.5,-20.5 - parent: 0 - type: Transform -- uid: 2984 - type: Catwalk - components: - - pos: -41.5,-20.5 - parent: 0 - type: Transform -- uid: 2985 - type: Catwalk - components: - - pos: -42.5,-20.5 - parent: 0 - type: Transform -- uid: 2986 - type: Catwalk - components: - - pos: -43.5,-20.5 - parent: 0 - type: Transform -- uid: 2987 - type: Catwalk - components: - - pos: -44.5,-20.5 - parent: 0 - type: Transform -- uid: 2988 - type: Catwalk - components: - - pos: -45.5,-20.5 - parent: 0 - type: Transform -- uid: 2989 - type: Catwalk - components: - - pos: -45.5,-19.5 - parent: 0 - type: Transform -- uid: 2990 - type: Catwalk - components: - - pos: -45.5,-18.5 - parent: 0 - type: Transform -- uid: 2991 - type: Catwalk - components: - - pos: -45.5,-17.5 - parent: 0 - type: Transform -- uid: 2992 - type: Catwalk - components: - - pos: -45.5,-16.5 - parent: 0 - type: Transform -- uid: 2993 - type: Catwalk - components: - - pos: -45.5,-15.5 - parent: 0 - type: Transform -- uid: 2994 - type: Catwalk - components: - - pos: -45.5,-14.5 - parent: 0 - type: Transform -- uid: 2995 - type: Catwalk - components: - - pos: -45.5,-13.5 - parent: 0 - type: Transform -- uid: 2996 - type: Catwalk - components: - - pos: -45.5,-12.5 - parent: 0 - type: Transform -- uid: 2997 - type: Catwalk - components: - - pos: -45.5,-11.5 - parent: 0 - type: Transform -- uid: 2998 - type: Catwalk - components: - - pos: -45.5,-10.5 - parent: 0 - type: Transform -- uid: 2999 - type: AirlockExternalGlassLocked - components: - - pos: -41.5,-1.5 - parent: 0 - type: Transform -- uid: 3000 - type: AirlockExternalGlassLocked - components: - - pos: -41.5,-4.5 - parent: 0 - type: Transform -- uid: 3001 - type: Grille - components: - - pos: -38.5,-23.5 - parent: 0 - type: Transform -- uid: 3002 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 3.141592653589793 rad - pos: -30.5,-20.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3003 - type: AirlockExternalGlassShuttleArrivals - components: - - pos: -30.5,-10.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3004 - type: Grille - components: - - pos: -32.5,-21.5 - parent: 0 - type: Transform -- uid: 3005 - type: AtmosFixBlockerMarker - components: - - pos: -42.5,-20.5 - parent: 0 - type: Transform -- uid: 3006 - type: AtmosFixBlockerMarker - components: - - pos: -42.5,-22.5 - parent: 0 - type: Transform -- uid: 3007 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,-21.5 - parent: 0 - type: Transform -- uid: 3008 - type: Catwalk - components: - - pos: -44.5,-10.5 - parent: 0 - type: Transform -- uid: 3009 - type: Catwalk - components: - - pos: -43.5,-10.5 - parent: 0 - type: Transform -- uid: 3010 - type: Catwalk - components: - - pos: -42.5,-10.5 - parent: 0 - type: Transform -- uid: 3011 - type: Catwalk - components: - - pos: -41.5,-10.5 - parent: 0 - type: Transform -- uid: 3012 - type: Catwalk - components: - - pos: -40.5,-10.5 - parent: 0 - type: Transform -- uid: 3013 - type: BlastDoor - components: - - pos: -46.5,-20.5 - parent: 0 - type: Transform -- uid: 3014 - type: BlastDoor - components: - - pos: -46.5,-19.5 - parent: 0 - type: Transform -- uid: 3015 - type: BlastDoor - components: - - pos: -46.5,-18.5 - parent: 0 - type: Transform -- uid: 3016 - type: BlastDoor - components: - - pos: -46.5,-17.5 - parent: 0 - type: Transform -- uid: 3017 - type: BlastDoor - components: - - pos: -46.5,-16.5 - parent: 0 - type: Transform -- uid: 3018 - type: BlastDoor - components: - - pos: -46.5,-15.5 - parent: 0 - type: Transform -- uid: 3019 - type: BlastDoor - components: - - pos: -46.5,-14.5 - parent: 0 - type: Transform -- uid: 3020 - type: BlastDoor - components: - - pos: -46.5,-13.5 - parent: 0 - type: Transform -- uid: 3021 - type: BlastDoor - components: - - pos: -46.5,-12.5 - parent: 0 - type: Transform -- uid: 3022 - type: BlastDoor - components: - - pos: -46.5,-11.5 - parent: 0 - type: Transform -- uid: 3023 - type: BlastDoor - components: - - pos: -46.5,-10.5 - parent: 0 - type: Transform -- uid: 3024 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -38.5,-9.5 - parent: 0 - type: Transform -- uid: 3025 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -38.5,-8.5 - parent: 0 - type: Transform -- uid: 3026 - type: Grille - components: - - pos: -39.5,-6.5 - parent: 0 - type: Transform -- uid: 3027 - type: Grille - components: - - pos: -39.5,-5.5 - parent: 0 - type: Transform -- uid: 3028 - type: Grille - components: - - pos: -39.5,-4.5 - parent: 0 - type: Transform -- uid: 3029 - type: AirlockExternalGlass - components: - - pos: -37.5,-7.5 - parent: 0 - type: Transform -- uid: 3030 - type: AtmosDeviceFanTiny - components: - - pos: -37.5,-10.5 - parent: 0 - type: Transform -- uid: 3031 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 3.141592653589793 rad - pos: -37.5,-20.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3032 - type: Grille - components: - - pos: -35.5,-9.5 - parent: 0 - type: Transform -- uid: 3033 - type: Grille - components: - - pos: -34.5,-9.5 - parent: 0 - type: Transform -- uid: 3034 - type: Grille - components: - - pos: -33.5,-9.5 - parent: 0 - type: Transform -- uid: 3035 - type: Grille - components: - - pos: -31.5,-10.5 - parent: 0 - type: Transform -- uid: 3036 - type: Grille - components: - - pos: -31.5,-8.5 - parent: 0 - type: Transform -- uid: 3037 - type: Grille - components: - - pos: -31.5,-7.5 - parent: 0 - type: Transform -- uid: 3038 - type: Grille - components: - - pos: -29.5,-8.5 - parent: 0 - type: Transform -- uid: 3039 - type: Grille - components: - - pos: -28.5,-7.5 - parent: 0 - type: Transform -- uid: 3040 - type: Grille - components: - - pos: -27.5,-7.5 - parent: 0 - type: Transform -- uid: 3041 - type: Grille - components: - - pos: -26.5,-7.5 - parent: 0 - type: Transform -- uid: 3042 - type: Grille - components: - - pos: -25.5,-7.5 - parent: 0 - type: Transform -- uid: 3043 - type: Grille - components: - - pos: -29.5,-10.5 - parent: 0 - type: Transform -- uid: 3044 - type: Grille - components: - - pos: -24.5,-11.5 - parent: 0 - type: Transform -- uid: 3045 - type: Grille - components: - - pos: -24.5,-12.5 - parent: 0 - type: Transform -- uid: 3046 - type: Grille - components: - - pos: -24.5,-13.5 - parent: 0 - type: Transform -- uid: 3047 - type: Grille - components: - - pos: -24.5,-14.5 - parent: 0 - type: Transform -- uid: 3048 - type: Grille - components: - - pos: -24.5,-16.5 - parent: 0 - type: Transform -- uid: 3049 - type: Grille - components: - - pos: -24.5,-17.5 - parent: 0 - type: Transform -- uid: 3050 - type: Grille - components: - - pos: -24.5,-18.5 - parent: 0 - type: Transform -- uid: 3051 - type: Grille - components: - - pos: -24.5,-19.5 - parent: 0 - type: Transform -- uid: 3052 - type: Grille - components: - - pos: -25.5,-23.5 - parent: 0 - type: Transform -- uid: 3053 - type: Grille - components: - - pos: -26.5,-23.5 - parent: 0 - type: Transform -- uid: 3054 - type: Grille - components: - - pos: -27.5,-23.5 - parent: 0 - type: Transform -- uid: 3055 - type: Grille - components: - - pos: -28.5,-23.5 - parent: 0 - type: Transform -- uid: 3056 - type: Grille - components: - - pos: -29.5,-20.5 - parent: 0 - type: Transform -- uid: 3057 - type: Grille - components: - - pos: -31.5,-20.5 - parent: 0 - type: Transform -- uid: 3058 - type: Grille - components: - - pos: -31.5,-22.5 - parent: 0 - type: Transform -- uid: 3059 - type: Grille - components: - - pos: -31.5,-23.5 - parent: 0 - type: Transform -- uid: 3060 - type: Grille - components: - - pos: -33.5,-21.5 - parent: 0 - type: Transform -- uid: 3061 - type: Grille - components: - - pos: -34.5,-21.5 - parent: 0 - type: Transform -- uid: 3062 - type: Grille - components: - - pos: -35.5,-21.5 - parent: 0 - type: Transform -- uid: 3063 - type: Grille - components: - - pos: -44.5,-23.5 - parent: 0 - type: Transform -- uid: 3064 - type: CableApcExtension - components: - - pos: -37.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3065 - type: CableApcExtension - components: - - pos: -37.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3066 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -38.5,-21.5 - parent: 0 - type: Transform -- uid: 3067 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -38.5,-8.5 - parent: 0 - type: Transform -- uid: 3068 - type: Grille - components: - - pos: -36.5,-22.5 - parent: 0 - type: Transform -- uid: 3069 - type: Grille - components: - - pos: -42.5,-26.5 - parent: 0 - type: Transform -- uid: 3070 - type: Grille - components: - - pos: -42.5,-25.5 - parent: 0 - type: Transform -- uid: 3071 - type: Grille - components: - - pos: -42.5,-24.5 - parent: 0 - type: Transform -- uid: 3072 - type: Grille - components: - - pos: -34.5,-29.5 - parent: 0 - type: Transform -- uid: 3073 - type: Grille - components: - - pos: -32.5,-29.5 - parent: 0 - type: Transform -- uid: 3074 - type: Grille - components: - - pos: -31.5,-27.5 - parent: 0 - type: Transform -- uid: 3075 - type: Grille - components: - - pos: -30.5,-27.5 - parent: 0 - type: Transform -- uid: 3076 - type: Grille - components: - - pos: -29.5,-29.5 - parent: 0 - type: Transform -- uid: 3077 - type: Grille - components: - - pos: -27.5,-29.5 - parent: 0 - type: Transform -- uid: 3078 - type: Grille - components: - - pos: -24.5,-29.5 - parent: 0 - type: Transform -- uid: 3079 - type: Grille - components: - - pos: -23.5,-31.5 - parent: 0 - type: Transform -- uid: 3080 - type: Grille - components: - - pos: -21.5,-31.5 - parent: 0 - type: Transform -- uid: 3081 - type: Grille - components: - - pos: -20.5,-29.5 - parent: 0 - type: Transform -- uid: 3082 - type: Grille - components: - - pos: -17.5,-29.5 - parent: 0 - type: Transform -- uid: 3083 - type: Grille - components: - - pos: -15.5,-29.5 - parent: 0 - type: Transform -- uid: 3084 - type: Grille - components: - - pos: -2.5,-26.5 - parent: 0 - type: Transform -- uid: 3085 - type: Grille - components: - - pos: -2.5,-24.5 - parent: 0 - type: Transform -- uid: 3086 - type: Grille - components: - - pos: 4.5,-24.5 - parent: 0 - type: Transform -- uid: 3087 - type: Grille - components: - - pos: 4.5,-26.5 - parent: 0 - type: Transform -- uid: 3088 - type: Grille - components: - - pos: 0.5,-28.5 - parent: 0 - type: Transform -- uid: 3089 - type: Grille - components: - - pos: -0.5,-28.5 - parent: 0 - type: Transform -- uid: 3090 - type: Grille - components: - - pos: -1.5,-28.5 - parent: 0 - type: Transform -- uid: 3091 - type: Grille - components: - - pos: -3.5,-28.5 - parent: 0 - type: Transform -- uid: 3092 - type: Grille - components: - - pos: -4.5,-28.5 - parent: 0 - type: Transform -- uid: 3093 - type: Grille - components: - - pos: -5.5,-28.5 - parent: 0 - type: Transform -- uid: 3094 - type: Grille - components: - - pos: -0.5,-22.5 - parent: 0 - type: Transform -- uid: 3095 - type: Grille - components: - - pos: 0.5,-22.5 - parent: 0 - type: Transform -- uid: 3096 - type: Grille - components: - - pos: 1.5,-22.5 - parent: 0 - type: Transform -- uid: 3097 - type: Grille - components: - - pos: 2.5,-22.5 - parent: 0 - type: Transform -- uid: 3098 - type: Grille - components: - - pos: -18.5,-23.5 - parent: 0 - type: Transform -- uid: 3099 - type: Grille - components: - - pos: -20.5,-21.5 - parent: 0 - type: Transform -- uid: 3100 - type: Window - components: - - pos: -18.5,-23.5 - parent: 0 - type: Transform -- uid: 3101 - type: Window - components: - - pos: -20.5,-21.5 - parent: 0 - type: Transform -- uid: 3102 - type: Catwalk - components: - - pos: -75.5,1.5 - parent: 0 - type: Transform -- uid: 3103 - type: Catwalk - components: - - pos: -72.5,1.5 - parent: 0 - type: Transform -- uid: 3104 - type: Catwalk - components: - - pos: -71.5,1.5 - parent: 0 - type: Transform -- uid: 3105 - type: Catwalk - components: - - pos: -70.5,1.5 - parent: 0 - type: Transform -- uid: 3106 - type: Catwalk - components: - - pos: -69.5,1.5 - parent: 0 - type: Transform -- uid: 3107 - type: Catwalk - components: - - pos: -68.5,1.5 - parent: 0 - type: Transform -- uid: 3108 - type: Catwalk - components: - - pos: -67.5,1.5 - parent: 0 - type: Transform -- uid: 3109 - type: Catwalk - components: - - pos: -66.5,1.5 - parent: 0 - type: Transform -- uid: 3110 - type: Catwalk - components: - - pos: -65.5,1.5 - parent: 0 - type: Transform -- uid: 3111 - type: Catwalk - components: - - pos: -64.5,1.5 - parent: 0 - type: Transform -- uid: 3112 - type: Catwalk - components: - - pos: -63.5,1.5 - parent: 0 - type: Transform -- uid: 3113 - type: Catwalk - components: - - pos: -62.5,1.5 - parent: 0 - type: Transform -- uid: 3114 - type: Catwalk - components: - - pos: -61.5,1.5 - parent: 0 - type: Transform -- uid: 3115 - type: Catwalk - components: - - pos: -60.5,1.5 - parent: 0 - type: Transform -- uid: 3116 - type: Catwalk - components: - - pos: -59.5,1.5 - parent: 0 - type: Transform -- uid: 3117 - type: Catwalk - components: - - pos: -58.5,1.5 - parent: 0 - type: Transform -- uid: 3118 - type: Catwalk - components: - - pos: -57.5,1.5 - parent: 0 - type: Transform -- uid: 3119 - type: Catwalk - components: - - pos: -56.5,1.5 - parent: 0 - type: Transform -- uid: 3120 - type: Catwalk - components: - - pos: -55.5,1.5 - parent: 0 - type: Transform -- uid: 3121 - type: Catwalk - components: - - pos: -54.5,1.5 - parent: 0 - type: Transform -- uid: 3122 - type: Catwalk - components: - - pos: -53.5,1.5 - parent: 0 - type: Transform -- uid: 3123 - type: Catwalk - components: - - pos: -52.5,1.5 - parent: 0 - type: Transform -- uid: 3124 - type: Catwalk - components: - - pos: -51.5,1.5 - parent: 0 - type: Transform -- uid: 3125 - type: Catwalk - components: - - pos: -50.5,1.5 - parent: 0 - type: Transform -- uid: 3126 - type: Catwalk - components: - - pos: -48.5,-0.5 - parent: 0 - type: Transform -- uid: 3127 - type: Catwalk - components: - - pos: -49.5,-0.5 - parent: 0 - type: Transform -- uid: 3128 - type: Catwalk - components: - - pos: -50.5,-0.5 - parent: 0 - type: Transform -- uid: 3129 - type: Catwalk - components: - - pos: -50.5,0.5 - parent: 0 - type: Transform -- uid: 3130 - type: Catwalk - components: - - pos: -50.5,2.5 - parent: 0 - type: Transform -- uid: 3131 - type: Catwalk - components: - - pos: -50.5,3.5 - parent: 0 - type: Transform -- uid: 3132 - type: Catwalk - components: - - pos: -49.5,3.5 - parent: 0 - type: Transform -- uid: 3133 - type: Catwalk - components: - - pos: -48.5,3.5 - parent: 0 - type: Transform -- uid: 3134 - type: Catwalk - components: - - pos: -56.5,0.5 - parent: 0 - type: Transform -- uid: 3135 - type: Catwalk - components: - - pos: -56.5,2.5 - parent: 0 - type: Transform -- uid: 3136 - type: Catwalk - components: - - pos: -60.5,2.5 - parent: 0 - type: Transform -- uid: 3137 - type: Catwalk - components: - - pos: -60.5,0.5 - parent: 0 - type: Transform -- uid: 3138 - type: Catwalk - components: - - pos: -64.5,0.5 - parent: 0 - type: Transform -- uid: 3139 - type: Catwalk - components: - - pos: -64.5,2.5 - parent: 0 - type: Transform -- uid: 3140 - type: Catwalk - components: - - pos: -68.5,0.5 - parent: 0 - type: Transform -- uid: 3141 - type: Catwalk - components: - - pos: -68.5,2.5 - parent: 0 - type: Transform -- uid: 3142 - type: WallSolidRust - components: - - pos: -42.5,10.5 - parent: 0 - type: Transform -- uid: 3143 - type: SignSecureMed - components: - - pos: -42.5,10.5 - parent: 0 - type: Transform -- uid: 3144 - type: CableHV - components: - - pos: -73.5,1.5 - parent: 0 - type: Transform -- uid: 3145 - type: Catwalk - components: - - pos: -56.5,11.5 - parent: 0 - type: Transform -- uid: 3146 - type: Catwalk - components: - - pos: -56.5,10.5 - parent: 0 - type: Transform -- uid: 3147 - type: Catwalk - components: - - pos: -56.5,9.5 - parent: 0 - type: Transform -- uid: 3148 - type: Catwalk - components: - - pos: -56.5,8.5 - parent: 0 - type: Transform -- uid: 3149 - type: Catwalk - components: - - pos: -56.5,7.5 - parent: 0 - type: Transform -- uid: 3150 - type: Catwalk - components: - - pos: -56.5,6.5 - parent: 0 - type: Transform -- uid: 3151 - type: Catwalk - components: - - pos: -56.5,5.5 - parent: 0 - type: Transform -- uid: 3152 - type: Catwalk - components: - - pos: -56.5,4.5 - parent: 0 - type: Transform -- uid: 3153 - type: Catwalk - components: - - pos: -56.5,3.5 - parent: 0 - type: Transform -- uid: 3154 - type: Catwalk - components: - - pos: -60.5,3.5 - parent: 0 - type: Transform -- uid: 3155 - type: Catwalk - components: - - pos: -60.5,4.5 - parent: 0 - type: Transform -- uid: 3156 - type: Catwalk - components: - - pos: -60.5,5.5 - parent: 0 - type: Transform -- uid: 3157 - type: Catwalk - components: - - pos: -60.5,6.5 - parent: 0 - type: Transform -- uid: 3158 - type: Catwalk - components: - - pos: -60.5,7.5 - parent: 0 - type: Transform -- uid: 3159 - type: Catwalk - components: - - pos: -60.5,8.5 - parent: 0 - type: Transform -- uid: 3160 - type: Catwalk - components: - - pos: -60.5,9.5 - parent: 0 - type: Transform -- uid: 3161 - type: Catwalk - components: - - pos: -60.5,10.5 - parent: 0 - type: Transform -- uid: 3162 - type: Catwalk - components: - - pos: -60.5,11.5 - parent: 0 - type: Transform -- uid: 3163 - type: Catwalk - components: - - pos: -64.5,3.5 - parent: 0 - type: Transform -- uid: 3164 - type: Catwalk - components: - - pos: -64.5,4.5 - parent: 0 - type: Transform -- uid: 3165 - type: Catwalk - components: - - pos: -64.5,5.5 - parent: 0 - type: Transform -- uid: 3166 - type: Catwalk - components: - - pos: -64.5,6.5 - parent: 0 - type: Transform -- uid: 3167 - type: Catwalk - components: - - pos: -64.5,7.5 - parent: 0 - type: Transform -- uid: 3168 - type: Catwalk - components: - - pos: -64.5,8.5 - parent: 0 - type: Transform -- uid: 3169 - type: Catwalk - components: - - pos: -64.5,9.5 - parent: 0 - type: Transform -- uid: 3170 - type: Catwalk - components: - - pos: -64.5,10.5 - parent: 0 - type: Transform -- uid: 3171 - type: Catwalk - components: - - pos: -64.5,11.5 - parent: 0 - type: Transform -- uid: 3172 - type: Catwalk - components: - - pos: -68.5,11.5 - parent: 0 - type: Transform -- uid: 3173 - type: Catwalk - components: - - pos: -68.5,10.5 - parent: 0 - type: Transform -- uid: 3174 - type: Catwalk - components: - - pos: -68.5,9.5 - parent: 0 - type: Transform -- uid: 3175 - type: Catwalk - components: - - pos: -68.5,8.5 - parent: 0 - type: Transform -- uid: 3176 - type: Catwalk - components: - - pos: -68.5,7.5 - parent: 0 - type: Transform -- uid: 3177 - type: Catwalk - components: - - pos: -68.5,6.5 - parent: 0 - type: Transform -- uid: 3178 - type: Catwalk - components: - - pos: -68.5,5.5 - parent: 0 - type: Transform -- uid: 3179 - type: Catwalk - components: - - pos: -68.5,4.5 - parent: 0 - type: Transform -- uid: 3180 - type: Catwalk - components: - - pos: -68.5,3.5 - parent: 0 - type: Transform -- uid: 3181 - type: Catwalk - components: - - pos: -68.5,-8.5 - parent: 0 - type: Transform -- uid: 3182 - type: Catwalk - components: - - pos: -68.5,-7.5 - parent: 0 - type: Transform -- uid: 3183 - type: Catwalk - components: - - pos: -68.5,-6.5 - parent: 0 - type: Transform -- uid: 3184 - type: Catwalk - components: - - pos: -68.5,-5.5 - parent: 0 - type: Transform -- uid: 3185 - type: Catwalk - components: - - pos: -68.5,-4.5 - parent: 0 - type: Transform -- uid: 3186 - type: Catwalk - components: - - pos: -68.5,-3.5 - parent: 0 - type: Transform -- uid: 3187 - type: Catwalk - components: - - pos: -68.5,-2.5 - parent: 0 - type: Transform -- uid: 3188 - type: Catwalk - components: - - pos: -68.5,-1.5 - parent: 0 - type: Transform -- uid: 3189 - type: Catwalk - components: - - pos: -68.5,-0.5 - parent: 0 - type: Transform -- uid: 3190 - type: Catwalk - components: - - pos: -64.5,-8.5 - parent: 0 - type: Transform -- uid: 3191 - type: Catwalk - components: - - pos: -64.5,-7.5 - parent: 0 - type: Transform -- uid: 3192 - type: Catwalk - components: - - pos: -64.5,-6.5 - parent: 0 - type: Transform -- uid: 3193 - type: Catwalk - components: - - pos: -64.5,-5.5 - parent: 0 - type: Transform -- uid: 3194 - type: Catwalk - components: - - pos: -64.5,-4.5 - parent: 0 - type: Transform -- uid: 3195 - type: Catwalk - components: - - pos: -64.5,-3.5 - parent: 0 - type: Transform -- uid: 3196 - type: Catwalk - components: - - pos: -64.5,-2.5 - parent: 0 - type: Transform -- uid: 3197 - type: Catwalk - components: - - pos: -64.5,-1.5 - parent: 0 - type: Transform -- uid: 3198 - type: Catwalk - components: - - pos: -64.5,-0.5 - parent: 0 - type: Transform -- uid: 3199 - type: Catwalk - components: - - pos: -60.5,-8.5 - parent: 0 - type: Transform -- uid: 3200 - type: Catwalk - components: - - pos: -60.5,-7.5 - parent: 0 - type: Transform -- uid: 3201 - type: Catwalk - components: - - pos: -60.5,-6.5 - parent: 0 - type: Transform -- uid: 3202 - type: Catwalk - components: - - pos: -60.5,-5.5 - parent: 0 - type: Transform -- uid: 3203 - type: Catwalk - components: - - pos: -60.5,-4.5 - parent: 0 - type: Transform -- uid: 3204 - type: Catwalk - components: - - pos: -60.5,-3.5 - parent: 0 - type: Transform -- uid: 3205 - type: Catwalk - components: - - pos: -60.5,-2.5 - parent: 0 - type: Transform -- uid: 3206 - type: Catwalk - components: - - pos: -60.5,-1.5 - parent: 0 - type: Transform -- uid: 3207 - type: Catwalk - components: - - pos: -60.5,-0.5 - parent: 0 - type: Transform -- uid: 3208 - type: Catwalk - components: - - pos: -56.5,-8.5 - parent: 0 - type: Transform -- uid: 3209 - type: Catwalk - components: - - pos: -56.5,-7.5 - parent: 0 - type: Transform -- uid: 3210 - type: Catwalk - components: - - pos: -56.5,-6.5 - parent: 0 - type: Transform -- uid: 3211 - type: Catwalk - components: - - pos: -56.5,-5.5 - parent: 0 - type: Transform -- uid: 3212 - type: Catwalk - components: - - pos: -56.5,-4.5 - parent: 0 - type: Transform -- uid: 3213 - type: Catwalk - components: - - pos: -56.5,-3.5 - parent: 0 - type: Transform -- uid: 3214 - type: Catwalk - components: - - pos: -56.5,-2.5 - parent: 0 - type: Transform -- uid: 3215 - type: Catwalk - components: - - pos: -56.5,-1.5 - parent: 0 - type: Transform -- uid: 3216 - type: Catwalk - components: - - pos: -56.5,-0.5 - parent: 0 - type: Transform -- uid: 3217 - type: CableHV - components: - - pos: -72.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3218 - type: CableHV - components: - - pos: -71.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3219 - type: CableHV - components: - - pos: -70.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3220 - type: CableHV - components: - - pos: -69.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3221 - type: CableHV - components: - - pos: -69.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3222 - type: CableHV - components: - - pos: -69.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3223 - type: CableHV - components: - - pos: -69.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3224 - type: CableHV - components: - - pos: -69.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3225 - type: CableHV - components: - - pos: -69.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3226 - type: CableHV - components: - - pos: -69.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3227 - type: CableHV - components: - - pos: -69.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3228 - type: CableHV - components: - - pos: -69.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3229 - type: CableHV - components: - - pos: -67.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3230 - type: CableHV - components: - - pos: -67.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3231 - type: CableHV - components: - - pos: -67.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3232 - type: CableHV - components: - - pos: -67.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3233 - type: CableHV - components: - - pos: -67.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3234 - type: CableHV - components: - - pos: -67.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3235 - type: CableHV - components: - - pos: -67.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3236 - type: CableHV - components: - - pos: -67.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3237 - type: CableHV - components: - - pos: -67.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3238 - type: CableHV - components: - - pos: -65.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3239 - type: CableHV - components: - - pos: -65.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3240 - type: CableHV - components: - - pos: -65.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3241 - type: CableHV - components: - - pos: -65.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3242 - type: CableHV - components: - - pos: -65.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3243 - type: CableHV - components: - - pos: -65.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3244 - type: CableHV - components: - - pos: -65.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3245 - type: CableHV - components: - - pos: -65.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3246 - type: CableHV - components: - - pos: -65.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3247 - type: CableHV - components: - - pos: -63.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3248 - type: CableHV - components: - - pos: -63.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3249 - type: CableHV - components: - - pos: -63.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3250 - type: CableHV - components: - - pos: -63.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3251 - type: CableHV - components: - - pos: -63.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3252 - type: CableHV - components: - - pos: -63.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3253 - type: CableHV - components: - - pos: -63.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3254 - type: CableHV - components: - - pos: -63.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3255 - type: CableHV - components: - - pos: -63.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3256 - type: Catwalk - components: - - pos: -47.5,-9.5 - parent: 0 - type: Transform -- uid: 3257 - type: CableHV - components: - - pos: -61.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3258 - type: CableHV - components: - - pos: -61.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3259 - type: CableHV - components: - - pos: -61.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3260 - type: CableHV - components: - - pos: -61.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3261 - type: CableHV - components: - - pos: -61.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3262 - type: CableHV - components: - - pos: -61.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3263 - type: CableHV - components: - - pos: -61.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3264 - type: CableHV - components: - - pos: -61.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3265 - type: CableHV - components: - - pos: -61.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3266 - type: CableHV - components: - - pos: -59.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3267 - type: CableHV - components: - - pos: -59.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3268 - type: CableHV - components: - - pos: -59.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3269 - type: CableHV - components: - - pos: -59.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3270 - type: CableHV - components: - - pos: -59.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3271 - type: CableHV - components: - - pos: -59.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3272 - type: CableHV - components: - - pos: -59.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3273 - type: CableHV - components: - - pos: -59.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3274 - type: CableHV - components: - - pos: -59.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3275 - type: CableHV - components: - - pos: -57.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3276 - type: CableHV - components: - - pos: -57.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3277 - type: CableHV - components: - - pos: -57.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3278 - type: CableHV - components: - - pos: -57.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3279 - type: CableHV - components: - - pos: -57.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3280 - type: CableHV - components: - - pos: -57.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3281 - type: CableHV - components: - - pos: -57.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3282 - type: CableHV - components: - - pos: -57.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3283 - type: CableHV - components: - - pos: -57.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3284 - type: CableHV - components: - - pos: -55.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3285 - type: CableHV - components: - - pos: -55.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3286 - type: CableHV - components: - - pos: -55.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3287 - type: CableHV - components: - - pos: -55.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3288 - type: CableHV - components: - - pos: -55.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3289 - type: CableHV - components: - - pos: -55.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3290 - type: CableHV - components: - - pos: -55.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3291 - type: CableHV - components: - - pos: -55.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3292 - type: CableHV - components: - - pos: -55.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3293 - type: CableHV - components: - - pos: -55.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3294 - type: CableHV - components: - - pos: -55.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3295 - type: CableHV - components: - - pos: -55.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3296 - type: CableHV - components: - - pos: -55.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3297 - type: CableHV - components: - - pos: -55.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3298 - type: CableHV - components: - - pos: -55.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3299 - type: CableHV - components: - - pos: -55.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3300 - type: CableHV - components: - - pos: -55.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3301 - type: CableHV - components: - - pos: -55.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3302 - type: CableHV - components: - - pos: -57.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3303 - type: CableHV - components: - - pos: -57.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3304 - type: CableHV - components: - - pos: -57.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3305 - type: CableHV - components: - - pos: -57.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3306 - type: CableHV - components: - - pos: -57.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3307 - type: CableHV - components: - - pos: -57.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3308 - type: CableHV - components: - - pos: -57.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3309 - type: CableHV - components: - - pos: -57.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3310 - type: CableHV - components: - - pos: -57.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3311 - type: CableHV - components: - - pos: -59.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3312 - type: CableHV - components: - - pos: -59.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3313 - type: CableHV - components: - - pos: -59.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3314 - type: CableHV - components: - - pos: -59.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3315 - type: CableHV - components: - - pos: -59.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3316 - type: CableHV - components: - - pos: -59.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3317 - type: CableHV - components: - - pos: -59.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3318 - type: CableHV - components: - - pos: -59.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3319 - type: CableHV - components: - - pos: -59.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3320 - type: CableHV - components: - - pos: -61.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3321 - type: CableHV - components: - - pos: -61.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3322 - type: CableHV - components: - - pos: -61.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3323 - type: CableHV - components: - - pos: -61.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3324 - type: CableHV - components: - - pos: -61.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3325 - type: CableHV - components: - - pos: -61.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3326 - type: CableHV - components: - - pos: -61.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3327 - type: CableHV - components: - - pos: -61.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3328 - type: CableHV - components: - - pos: -61.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3329 - type: CableHV - components: - - pos: -63.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3330 - type: CableHV - components: - - pos: -63.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3331 - type: CableHV - components: - - pos: -63.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3332 - type: CableHV - components: - - pos: -63.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3333 - type: CableHV - components: - - pos: -63.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3334 - type: CableHV - components: - - pos: -63.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3335 - type: CableHV - components: - - pos: -63.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3336 - type: CableHV - components: - - pos: -63.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3337 - type: CableHV - components: - - pos: -63.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3338 - type: CableHV - components: - - pos: -65.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3339 - type: CableHV - components: - - pos: -65.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3340 - type: CableHV - components: - - pos: -65.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3341 - type: CableHV - components: - - pos: -65.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3342 - type: CableHV - components: - - pos: -65.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3343 - type: CableHV - components: - - pos: -65.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3344 - type: CableHV - components: - - pos: -65.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3345 - type: CableHV - components: - - pos: -65.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3346 - type: CableHV - components: - - pos: -65.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3347 - type: CableHV - components: - - pos: -67.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3348 - type: CableHV - components: - - pos: -67.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3349 - type: CableHV - components: - - pos: -67.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3350 - type: CableHV - components: - - pos: -67.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3351 - type: CableHV - components: - - pos: -67.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3352 - type: CableHV - components: - - pos: -67.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3353 - type: CableHV - components: - - pos: -67.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3354 - type: CableHV - components: - - pos: -67.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3355 - type: CableHV - components: - - pos: -67.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3356 - type: CableHV - components: - - pos: -69.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3357 - type: CableHV - components: - - pos: -69.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3358 - type: CableHV - components: - - pos: -69.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3359 - type: CableHV - components: - - pos: -69.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3360 - type: CableHV - components: - - pos: -69.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3361 - type: CableHV - components: - - pos: -69.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3362 - type: CableHV - components: - - pos: -69.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3363 - type: CableHV - components: - - pos: -69.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3364 - type: CableHV - components: - - pos: -69.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3365 - type: SolarPanel - components: - - pos: -69.5,3.5 - parent: 0 - type: Transform -- uid: 3366 - type: SolarPanel - components: - - pos: -69.5,4.5 - parent: 0 - type: Transform -- uid: 3367 - type: SolarPanel - components: - - pos: -69.5,5.5 - parent: 0 - type: Transform -- uid: 3368 - type: SolarPanel - components: - - pos: -69.5,6.5 - parent: 0 - type: Transform -- uid: 3369 - type: SolarPanel - components: - - pos: -69.5,7.5 - parent: 0 - type: Transform -- uid: 3370 - type: SolarPanel - components: - - pos: -69.5,8.5 - parent: 0 - type: Transform -- uid: 3371 - type: SolarPanel - components: - - pos: -69.5,9.5 - parent: 0 - type: Transform -- uid: 3372 - type: SolarPanel - components: - - pos: -69.5,10.5 - parent: 0 - type: Transform -- uid: 3373 - type: SolarPanel - components: - - pos: -69.5,11.5 - parent: 0 - type: Transform -- uid: 3374 - type: SolarPanel - components: - - pos: -67.5,11.5 - parent: 0 - type: Transform -- uid: 3375 - type: SolarPanel - components: - - pos: -67.5,10.5 - parent: 0 - type: Transform -- uid: 3376 - type: SolarPanel - components: - - pos: -67.5,9.5 - parent: 0 - type: Transform -- uid: 3377 - type: SolarPanel - components: - - pos: -67.5,8.5 - parent: 0 - type: Transform -- uid: 3378 - type: SolarPanel - components: - - pos: -67.5,7.5 - parent: 0 - type: Transform -- uid: 3379 - type: SolarPanel - components: - - pos: -67.5,6.5 - parent: 0 - type: Transform -- uid: 3380 - type: SolarPanel - components: - - pos: -67.5,5.5 - parent: 0 - type: Transform -- uid: 3381 - type: SolarPanel - components: - - pos: -67.5,4.5 - parent: 0 - type: Transform -- uid: 3382 - type: SolarPanel - components: - - pos: -67.5,3.5 - parent: 0 - type: Transform -- uid: 3383 - type: SolarPanel - components: - - pos: -65.5,3.5 - parent: 0 - type: Transform -- uid: 3384 - type: SolarPanel - components: - - pos: -65.5,4.5 - parent: 0 - type: Transform -- uid: 3385 - type: SolarPanel - components: - - pos: -65.5,5.5 - parent: 0 - type: Transform -- uid: 3386 - type: SolarPanel - components: - - pos: -65.5,6.5 - parent: 0 - type: Transform -- uid: 3387 - type: SolarPanel - components: - - pos: -65.5,7.5 - parent: 0 - type: Transform -- uid: 3388 - type: SolarPanel - components: - - pos: -65.5,8.5 - parent: 0 - type: Transform -- uid: 3389 - type: SolarPanel - components: - - pos: -65.5,9.5 - parent: 0 - type: Transform -- uid: 3390 - type: SolarPanel - components: - - pos: -65.5,10.5 - parent: 0 - type: Transform -- uid: 3391 - type: SolarPanel - components: - - pos: -65.5,11.5 - parent: 0 - type: Transform -- uid: 3392 - type: SolarPanel - components: - - pos: -63.5,11.5 - parent: 0 - type: Transform -- uid: 3393 - type: SolarPanel - components: - - pos: -63.5,10.5 - parent: 0 - type: Transform -- uid: 3394 - type: SolarPanel - components: - - pos: -63.5,9.5 - parent: 0 - type: Transform -- uid: 3395 - type: SolarPanel - components: - - pos: -63.5,8.5 - parent: 0 - type: Transform -- uid: 3396 - type: SolarPanel - components: - - pos: -63.5,7.5 - parent: 0 - type: Transform -- uid: 3397 - type: SolarPanel - components: - - pos: -63.5,6.5 - parent: 0 - type: Transform -- uid: 3398 - type: SolarPanel - components: - - pos: -63.5,5.5 - parent: 0 - type: Transform -- uid: 3399 - type: SolarPanel - components: - - pos: -63.5,4.5 - parent: 0 - type: Transform -- uid: 3400 - type: SolarPanel - components: - - pos: -63.5,3.5 - parent: 0 - type: Transform -- uid: 3401 - type: SolarPanel - components: - - pos: -61.5,3.5 - parent: 0 - type: Transform -- uid: 3402 - type: SolarPanel - components: - - pos: -61.5,4.5 - parent: 0 - type: Transform -- uid: 3403 - type: SolarPanel - components: - - pos: -61.5,5.5 - parent: 0 - type: Transform -- uid: 3404 - type: SolarPanel - components: - - pos: -61.5,6.5 - parent: 0 - type: Transform -- uid: 3405 - type: SolarPanel - components: - - pos: -61.5,7.5 - parent: 0 - type: Transform -- uid: 3406 - type: SolarPanel - components: - - pos: -61.5,8.5 - parent: 0 - type: Transform -- uid: 3407 - type: SolarPanel - components: - - pos: -61.5,9.5 - parent: 0 - type: Transform -- uid: 3408 - type: SolarPanel - components: - - pos: -61.5,10.5 - parent: 0 - type: Transform -- uid: 3409 - type: SolarPanel - components: - - pos: -61.5,11.5 - parent: 0 - type: Transform -- uid: 3410 - type: SolarPanel - components: - - pos: -59.5,11.5 - parent: 0 - type: Transform -- uid: 3411 - type: SolarPanel - components: - - pos: -59.5,10.5 - parent: 0 - type: Transform -- uid: 3412 - type: SolarPanel - components: - - pos: -59.5,9.5 - parent: 0 - type: Transform -- uid: 3413 - type: SolarPanel - components: - - pos: -59.5,8.5 - parent: 0 - type: Transform -- uid: 3414 - type: SolarPanel - components: - - pos: -59.5,7.5 - parent: 0 - type: Transform -- uid: 3415 - type: SolarPanel - components: - - pos: -59.5,6.5 - parent: 0 - type: Transform -- uid: 3416 - type: SolarPanel - components: - - pos: -59.5,5.5 - parent: 0 - type: Transform -- uid: 3417 - type: SolarPanel - components: - - pos: -59.5,4.5 - parent: 0 - type: Transform -- uid: 3418 - type: SolarPanel - components: - - pos: -59.5,3.5 - parent: 0 - type: Transform -- uid: 3419 - type: SolarPanel - components: - - pos: -57.5,3.5 - parent: 0 - type: Transform -- uid: 3420 - type: SolarPanel - components: - - pos: -57.5,4.5 - parent: 0 - type: Transform -- uid: 3421 - type: SolarPanel - components: - - pos: -57.5,5.5 - parent: 0 - type: Transform -- uid: 3422 - type: SolarPanel - components: - - pos: -57.5,6.5 - parent: 0 - type: Transform -- uid: 3423 - type: SolarPanel - components: - - pos: -57.5,7.5 - parent: 0 - type: Transform -- uid: 3424 - type: SolarPanel - components: - - pos: -57.5,8.5 - parent: 0 - type: Transform -- uid: 3425 - type: SolarPanel - components: - - pos: -57.5,9.5 - parent: 0 - type: Transform -- uid: 3426 - type: SolarPanel - components: - - pos: -57.5,10.5 - parent: 0 - type: Transform -- uid: 3427 - type: SolarPanel - components: - - pos: -57.5,11.5 - parent: 0 - type: Transform -- uid: 3428 - type: SolarPanel - components: - - pos: -55.5,11.5 - parent: 0 - type: Transform -- uid: 3429 - type: SolarPanel - components: - - pos: -55.5,10.5 - parent: 0 - type: Transform -- uid: 3430 - type: SolarPanel - components: - - pos: -55.5,9.5 - parent: 0 - type: Transform -- uid: 3431 - type: SolarPanel - components: - - pos: -55.5,8.5 - parent: 0 - type: Transform -- uid: 3432 - type: SolarPanel - components: - - pos: -55.5,7.5 - parent: 0 - type: Transform -- uid: 3433 - type: SolarPanel - components: - - pos: -55.5,6.5 - parent: 0 - type: Transform -- uid: 3434 - type: SolarPanel - components: - - pos: -55.5,5.5 - parent: 0 - type: Transform -- uid: 3435 - type: SolarPanel - components: - - pos: -55.5,4.5 - parent: 0 - type: Transform -- uid: 3436 - type: SolarPanel - components: - - pos: -55.5,3.5 - parent: 0 - type: Transform -- uid: 3437 - type: SolarPanel - components: - - pos: -55.5,-0.5 - parent: 0 - type: Transform -- uid: 3438 - type: SolarPanel - components: - - pos: -55.5,-1.5 - parent: 0 - type: Transform -- uid: 3439 - type: SolarPanel - components: - - pos: -55.5,-2.5 - parent: 0 - type: Transform -- uid: 3440 - type: SolarPanel - components: - - pos: -55.5,-3.5 - parent: 0 - type: Transform -- uid: 3441 - type: SolarPanel - components: - - pos: -55.5,-4.5 - parent: 0 - type: Transform -- uid: 3442 - type: SolarPanel - components: - - pos: -55.5,-5.5 - parent: 0 - type: Transform -- uid: 3443 - type: SolarPanel - components: - - pos: -55.5,-6.5 - parent: 0 - type: Transform -- uid: 3444 - type: SolarPanel - components: - - pos: -55.5,-7.5 - parent: 0 - type: Transform -- uid: 3445 - type: SolarPanel - components: - - pos: -55.5,-8.5 - parent: 0 - type: Transform -- uid: 3446 - type: SolarPanel - components: - - pos: -57.5,-8.5 - parent: 0 - type: Transform -- uid: 3447 - type: SolarPanel - components: - - pos: -57.5,-7.5 - parent: 0 - type: Transform -- uid: 3448 - type: SolarPanel - components: - - pos: -57.5,-6.5 - parent: 0 - type: Transform -- uid: 3449 - type: SolarPanel - components: - - pos: -57.5,-5.5 - parent: 0 - type: Transform -- uid: 3450 - type: SolarPanel - components: - - pos: -57.5,-4.5 - parent: 0 - type: Transform -- uid: 3451 - type: SolarPanel - components: - - pos: -57.5,-3.5 - parent: 0 - type: Transform -- uid: 3452 - type: SolarPanel - components: - - pos: -57.5,-2.5 - parent: 0 - type: Transform -- uid: 3453 - type: SolarPanel - components: - - pos: -57.5,-1.5 - parent: 0 - type: Transform -- uid: 3454 - type: SolarPanel - components: - - pos: -57.5,-0.5 - parent: 0 - type: Transform -- uid: 3455 - type: SolarPanel - components: - - pos: -59.5,-1.5 - parent: 0 - type: Transform -- uid: 3456 - type: SolarPanel - components: - - pos: -59.5,-2.5 - parent: 0 - type: Transform -- uid: 3457 - type: SolarPanel - components: - - pos: -59.5,-3.5 - parent: 0 - type: Transform -- uid: 3458 - type: SolarPanel - components: - - pos: -59.5,-4.5 - parent: 0 - type: Transform -- uid: 3459 - type: SolarPanel - components: - - pos: -59.5,-5.5 - parent: 0 - type: Transform -- uid: 3460 - type: SolarPanel - components: - - pos: -59.5,-6.5 - parent: 0 - type: Transform -- uid: 3461 - type: SolarPanel - components: - - pos: -59.5,-7.5 - parent: 0 - type: Transform -- uid: 3462 - type: SolarPanel - components: - - pos: -59.5,-8.5 - parent: 0 - type: Transform -- uid: 3463 - type: SolarPanel - components: - - pos: -59.5,-0.5 - parent: 0 - type: Transform -- uid: 3464 - type: SolarPanel - components: - - pos: -61.5,-0.5 - parent: 0 - type: Transform -- uid: 3465 - type: SolarPanel - components: - - pos: -61.5,-1.5 - parent: 0 - type: Transform -- uid: 3466 - type: SolarPanel - components: - - pos: -61.5,-2.5 - parent: 0 - type: Transform -- uid: 3467 - type: SolarPanel - components: - - pos: -61.5,-3.5 - parent: 0 - type: Transform -- uid: 3468 - type: SolarPanel - components: - - pos: -61.5,-4.5 - parent: 0 - type: Transform -- uid: 3469 - type: SolarPanel - components: - - pos: -61.5,-5.5 - parent: 0 - type: Transform -- uid: 3470 - type: SolarPanel - components: - - pos: -61.5,-6.5 - parent: 0 - type: Transform -- uid: 3471 - type: SolarPanel - components: - - pos: -61.5,-7.5 - parent: 0 - type: Transform -- uid: 3472 - type: SolarPanel - components: - - pos: -61.5,-8.5 - parent: 0 - type: Transform -- uid: 3473 - type: SolarPanel - components: - - pos: -63.5,-8.5 - parent: 0 - type: Transform -- uid: 3474 - type: SolarPanel - components: - - pos: -63.5,-7.5 - parent: 0 - type: Transform -- uid: 3475 - type: SolarPanel - components: - - pos: -63.5,-6.5 - parent: 0 - type: Transform -- uid: 3476 - type: SolarPanel - components: - - pos: -63.5,-5.5 - parent: 0 - type: Transform -- uid: 3477 - type: SolarPanel - components: - - pos: -63.5,-4.5 - parent: 0 - type: Transform -- uid: 3478 - type: SolarPanel - components: - - pos: -63.5,-3.5 - parent: 0 - type: Transform -- uid: 3479 - type: SolarPanel - components: - - pos: -63.5,-2.5 - parent: 0 - type: Transform -- uid: 3480 - type: SolarPanel - components: - - pos: -63.5,-1.5 - parent: 0 - type: Transform -- uid: 3481 - type: SolarPanel - components: - - pos: -63.5,-0.5 - parent: 0 - type: Transform -- uid: 3482 - type: SolarPanel - components: - - pos: -65.5,-0.5 - parent: 0 - type: Transform -- uid: 3483 - type: SolarPanel - components: - - pos: -65.5,-1.5 - parent: 0 - type: Transform -- uid: 3484 - type: SolarPanel - components: - - pos: -65.5,-2.5 - parent: 0 - type: Transform -- uid: 3485 - type: SolarPanel - components: - - pos: -65.5,-3.5 - parent: 0 - type: Transform -- uid: 3486 - type: SolarPanel - components: - - pos: -65.5,-4.5 - parent: 0 - type: Transform -- uid: 3487 - type: SolarPanel - components: - - pos: -65.5,-5.5 - parent: 0 - type: Transform -- uid: 3488 - type: SolarPanel - components: - - pos: -65.5,-6.5 - parent: 0 - type: Transform -- uid: 3489 - type: SolarPanel - components: - - pos: -65.5,-7.5 - parent: 0 - type: Transform -- uid: 3490 - type: SolarPanel - components: - - pos: -65.5,-8.5 - parent: 0 - type: Transform -- uid: 3491 - type: SolarPanel - components: - - pos: -67.5,-8.5 - parent: 0 - type: Transform -- uid: 3492 - type: SolarPanel - components: - - pos: -67.5,-7.5 - parent: 0 - type: Transform -- uid: 3493 - type: SolarPanel - components: - - pos: -67.5,-6.5 - parent: 0 - type: Transform -- uid: 3494 - type: SolarPanel - components: - - pos: -67.5,-5.5 - parent: 0 - type: Transform -- uid: 3495 - type: SolarPanel - components: - - pos: -67.5,-4.5 - parent: 0 - type: Transform -- uid: 3496 - type: SolarPanel - components: - - pos: -67.5,-3.5 - parent: 0 - type: Transform -- uid: 3497 - type: SolarPanel - components: - - pos: -67.5,-2.5 - parent: 0 - type: Transform -- uid: 3498 - type: SolarPanel - components: - - pos: -67.5,-1.5 - parent: 0 - type: Transform -- uid: 3499 - type: SolarPanel - components: - - pos: -67.5,-0.5 - parent: 0 - type: Transform -- uid: 3500 - type: SolarPanel - components: - - pos: -69.5,-0.5 - parent: 0 - type: Transform -- uid: 3501 - type: SolarPanel - components: - - pos: -69.5,-1.5 - parent: 0 - type: Transform -- uid: 3502 - type: SolarPanel - components: - - pos: -69.5,-2.5 - parent: 0 - type: Transform -- uid: 3503 - type: SolarPanel - components: - - pos: -69.5,-3.5 - parent: 0 - type: Transform -- uid: 3504 - type: SolarPanel - components: - - pos: -69.5,-4.5 - parent: 0 - type: Transform -- uid: 3505 - type: SolarPanel - components: - - pos: -69.5,-5.5 - parent: 0 - type: Transform -- uid: 3506 - type: SolarPanel - components: - - pos: -69.5,-6.5 - parent: 0 - type: Transform -- uid: 3507 - type: SolarPanel - components: - - pos: -69.5,-7.5 - parent: 0 - type: Transform -- uid: 3508 - type: SolarPanel - components: - - pos: -69.5,-8.5 - parent: 0 - type: Transform -- uid: 3509 - type: Catwalk - components: - - pos: -47.5,-10.5 - parent: 0 - type: Transform -- uid: 3510 - type: Catwalk - components: - - pos: -47.5,-11.5 - parent: 0 - type: Transform -- uid: 3511 - type: Catwalk - components: - - pos: -47.5,-12.5 - parent: 0 - type: Transform -- uid: 3512 - type: Catwalk - components: - - pos: -47.5,-13.5 - parent: 0 - type: Transform -- uid: 3513 - type: Catwalk - components: - - pos: -47.5,-14.5 - parent: 0 - type: Transform -- uid: 3514 - type: Catwalk - components: - - pos: -47.5,-15.5 - parent: 0 - type: Transform -- uid: 3515 - type: Catwalk - components: - - pos: -47.5,-16.5 - parent: 0 - type: Transform -- uid: 3516 - type: Catwalk - components: - - pos: -47.5,-17.5 - parent: 0 - type: Transform -- uid: 3517 - type: Catwalk - components: - - pos: -47.5,-18.5 - parent: 0 - type: Transform -- uid: 3518 - type: Catwalk - components: - - pos: -47.5,-19.5 - parent: 0 - type: Transform -- uid: 3519 - type: Catwalk - components: - - pos: -47.5,-20.5 - parent: 0 - type: Transform -- uid: 3520 - type: Catwalk - components: - - pos: -47.5,-21.5 - parent: 0 - type: Transform -- uid: 3521 - type: Catwalk - components: - - pos: -47.5,-22.5 - parent: 0 - type: Transform -- uid: 3522 - type: Catwalk - components: - - pos: -48.5,-22.5 - parent: 0 - type: Transform -- uid: 3523 - type: Catwalk - components: - - pos: -49.5,-22.5 - parent: 0 - type: Transform -- uid: 3524 - type: Catwalk - components: - - pos: -48.5,-10.5 - parent: 0 - type: Transform -- uid: 3525 - type: Catwalk - components: - - pos: -49.5,-10.5 - parent: 0 - type: Transform -- uid: 3526 - type: Catwalk - components: - - pos: -72.5,13.5 - parent: 0 - type: Transform -- uid: 3527 - type: Catwalk - components: - - pos: -59.5,-10.5 - parent: 0 - type: Transform -- uid: 3528 - type: Catwalk - components: - - pos: -72.5,-10.5 - parent: 0 - type: Transform -- uid: 3529 - type: Catwalk - components: - - pos: -53.5,13.5 - parent: 0 - type: Transform -- uid: 3530 - type: Catwalk - components: - - pos: -62.5,13.5 - parent: 0 - type: Transform -- uid: 3531 - type: Grille - components: - - pos: -71.5,13.5 - parent: 0 - type: Transform -- uid: 3532 - type: Grille - components: - - pos: -70.5,13.5 - parent: 0 - type: Transform -- uid: 3533 - type: Grille - components: - - pos: -69.5,13.5 - parent: 0 - type: Transform -- uid: 3534 - type: Grille - components: - - pos: -68.5,13.5 - parent: 0 - type: Transform -- uid: 3535 - type: Grille - components: - - pos: -67.5,13.5 - parent: 0 - type: Transform -- uid: 3536 - type: Grille - components: - - pos: -66.5,13.5 - parent: 0 - type: Transform -- uid: 3537 - type: Grille - components: - - pos: -65.5,13.5 - parent: 0 - type: Transform -- uid: 3538 - type: Grille - components: - - pos: -64.5,13.5 - parent: 0 - type: Transform -- uid: 3539 - type: Grille - components: - - pos: -72.5,-3.5 - parent: 0 - type: Transform -- uid: 3540 - type: Grille - components: - - pos: -72.5,12.5 - parent: 0 - type: Transform -- uid: 3541 - type: Grille - components: - - pos: -72.5,11.5 - parent: 0 - type: Transform -- uid: 3542 - type: Grille - components: - - pos: -72.5,10.5 - parent: 0 - type: Transform -- uid: 3543 - type: Grille - components: - - pos: -72.5,9.5 - parent: 0 - type: Transform -- uid: 3544 - type: Grille - components: - - pos: -72.5,8.5 - parent: 0 - type: Transform -- uid: 3545 - type: Grille - components: - - pos: -72.5,7.5 - parent: 0 - type: Transform -- uid: 3546 - type: Grille - components: - - pos: -72.5,6.5 - parent: 0 - type: Transform -- uid: 3547 - type: Grille - components: - - pos: -72.5,5.5 - parent: 0 - type: Transform -- uid: 3548 - type: Grille - components: - - pos: -74.5,3.5 - parent: 0 - type: Transform -- uid: 3549 - type: Grille - components: - - pos: -75.5,3.5 - parent: 0 - type: Transform -- uid: 3550 - type: Grille - components: - - pos: -75.5,2.5 - parent: 0 - type: Transform -- uid: 3551 - type: Grille - components: - - pos: -75.5,0.5 - parent: 0 - type: Transform -- uid: 3552 - type: Grille - components: - - pos: -75.5,-0.5 - parent: 0 - type: Transform -- uid: 3553 - type: Grille - components: - - pos: -74.5,-0.5 - parent: 0 - type: Transform -- uid: 3554 - type: Grille - components: - - pos: -72.5,-4.5 - parent: 0 - type: Transform -- uid: 3555 - type: Grille - components: - - pos: -72.5,-5.5 - parent: 0 - type: Transform -- uid: 3556 - type: Grille - components: - - pos: -72.5,-6.5 - parent: 0 - type: Transform -- uid: 3557 - type: Grille - components: - - pos: -72.5,-7.5 - parent: 0 - type: Transform -- uid: 3558 - type: Grille - components: - - pos: -72.5,-8.5 - parent: 0 - type: Transform -- uid: 3559 - type: Grille - components: - - pos: -72.5,-9.5 - parent: 0 - type: Transform -- uid: 3560 - type: Grille - components: - - pos: -67.5,-10.5 - parent: 0 - type: Transform -- uid: 3561 - type: Grille - components: - - pos: -68.5,-10.5 - parent: 0 - type: Transform -- uid: 3562 - type: Grille - components: - - pos: -69.5,-10.5 - parent: 0 - type: Transform -- uid: 3563 - type: Grille - components: - - pos: -70.5,-10.5 - parent: 0 - type: Transform -- uid: 3564 - type: Grille - components: - - pos: -71.5,-10.5 - parent: 0 - type: Transform -- uid: 3565 - type: SolarTracker - components: - - pos: -73.5,1.5 - parent: 0 - type: Transform -- uid: 3566 - type: Grille - components: - - pos: -63.5,-10.5 - parent: 0 - type: Transform -- uid: 3567 - type: Grille - components: - - pos: -62.5,-10.5 - parent: 0 - type: Transform -- uid: 3568 - type: Grille - components: - - pos: -61.5,-10.5 - parent: 0 - type: Transform -- uid: 3569 - type: Grille - components: - - pos: -57.5,-10.5 - parent: 0 - type: Transform -- uid: 3570 - type: Grille - components: - - pos: -56.5,-10.5 - parent: 0 - type: Transform -- uid: 3571 - type: Grille - components: - - pos: -55.5,-10.5 - parent: 0 - type: Transform -- uid: 3572 - type: Grille - components: - - pos: -54.5,-10.5 - parent: 0 - type: Transform -- uid: 3573 - type: Grille - components: - - pos: -53.5,-10.5 - parent: 0 - type: Transform -- uid: 3574 - type: Grille - components: - - pos: -53.5,-9.5 - parent: 0 - type: Transform -- uid: 3575 - type: Grille - components: - - pos: -53.5,-8.5 - parent: 0 - type: Transform -- uid: 3576 - type: Grille - components: - - pos: -53.5,-7.5 - parent: 0 - type: Transform -- uid: 3577 - type: Grille - components: - - pos: -53.5,-6.5 - parent: 0 - type: Transform -- uid: 3578 - type: Grille - components: - - pos: -53.5,-5.5 - parent: 0 - type: Transform -- uid: 3579 - type: Grille - components: - - pos: -53.5,-4.5 - parent: 0 - type: Transform -- uid: 3580 - type: Grille - components: - - pos: -53.5,-3.5 - parent: 0 - type: Transform -- uid: 3581 - type: Grille - components: - - pos: -53.5,-2.5 - parent: 0 - type: Transform -- uid: 3582 - type: Grille - components: - - pos: -53.5,-1.5 - parent: 0 - type: Transform -- uid: 3583 - type: Grille - components: - - pos: -53.5,-0.5 - parent: 0 - type: Transform -- uid: 3584 - type: Grille - components: - - pos: -53.5,3.5 - parent: 0 - type: Transform -- uid: 3585 - type: Grille - components: - - pos: -53.5,4.5 - parent: 0 - type: Transform -- uid: 3586 - type: Grille - components: - - pos: -53.5,5.5 - parent: 0 - type: Transform -- uid: 3587 - type: Grille - components: - - pos: -53.5,6.5 - parent: 0 - type: Transform -- uid: 3588 - type: Grille - components: - - pos: -53.5,7.5 - parent: 0 - type: Transform -- uid: 3589 - type: Grille - components: - - pos: -53.5,8.5 - parent: 0 - type: Transform -- uid: 3590 - type: Grille - components: - - pos: -53.5,9.5 - parent: 0 - type: Transform -- uid: 3591 - type: Grille - components: - - pos: -53.5,10.5 - parent: 0 - type: Transform -- uid: 3592 - type: Grille - components: - - pos: -53.5,11.5 - parent: 0 - type: Transform -- uid: 3593 - type: Grille - components: - - pos: -53.5,12.5 - parent: 0 - type: Transform -- uid: 3594 - type: Grille - components: - - pos: -54.5,13.5 - parent: 0 - type: Transform -- uid: 3595 - type: Grille - components: - - pos: -55.5,13.5 - parent: 0 - type: Transform -- uid: 3596 - type: Grille - components: - - pos: -56.5,13.5 - parent: 0 - type: Transform -- uid: 3597 - type: Grille - components: - - pos: -57.5,13.5 - parent: 0 - type: Transform -- uid: 3598 - type: Grille - components: - - pos: -58.5,13.5 - parent: 0 - type: Transform -- uid: 3599 - type: Grille - components: - - pos: -59.5,13.5 - parent: 0 - type: Transform -- uid: 3600 - type: Grille - components: - - pos: -60.5,13.5 - parent: 0 - type: Transform -- uid: 3601 - type: WallReinforced - components: - - pos: -33.5,72.5 - parent: 0 - type: Transform -- uid: 3602 - type: CableHV - components: - - pos: -68.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3603 - type: CableHV - components: - - pos: -68.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3604 - type: CableHV - components: - - pos: -68.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3605 - type: CableHV - components: - - pos: -68.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3606 - type: CableHV - components: - - pos: -64.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3607 - type: CableHV - components: - - pos: -64.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3608 - type: CableHV - components: - - pos: -64.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3609 - type: CableHV - components: - - pos: -64.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3610 - type: CableHV - components: - - pos: -60.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3611 - type: CableHV - components: - - pos: -60.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3612 - type: CableHV - components: - - pos: -60.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3613 - type: CableHV - components: - - pos: -60.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3614 - type: CableHV - components: - - pos: -56.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3615 - type: CableHV - components: - - pos: -56.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3616 - type: CableHV - components: - - pos: -56.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3617 - type: CableHV - components: - - pos: -56.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3618 - type: CableHV - components: - - pos: -53.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3619 - type: CableHV - components: - - pos: -52.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3620 - type: CableHV - components: - - pos: -51.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3621 - type: CableHV - components: - - pos: -50.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3622 - type: CableHV - components: - - pos: -49.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3623 - type: CableHV - components: - - pos: -48.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3624 - type: CableHV - components: - - pos: -47.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3625 - type: CableHV - components: - - pos: -46.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3626 - type: CableHV - components: - - pos: -46.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3627 - type: CableHV - components: - - pos: -45.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3628 - type: CableHV - components: - - pos: -44.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3629 - type: CableHV - components: - - pos: -44.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3630 - type: CableHV - components: - - pos: -43.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3631 - type: CableHV - components: - - pos: -42.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3632 - type: WallReinforced - components: - - pos: -43.5,2.5 - parent: 0 - type: Transform -- uid: 3633 - type: WallReinforced - components: - - pos: -43.5,0.5 - parent: 0 - type: Transform -- uid: 3634 - type: WallReinforced - components: - - pos: -42.5,3.5 - parent: 0 - type: Transform -- uid: 3635 - type: WallReinforced - components: - - pos: -41.5,3.5 - parent: 0 - type: Transform -- uid: 3636 - type: WallReinforced - components: - - pos: -40.5,3.5 - parent: 0 - type: Transform -- uid: 3637 - type: WallReinforced - components: - - pos: -40.5,4.5 - parent: 0 - type: Transform -- uid: 3638 - type: WallReinforced - components: - - pos: -39.5,4.5 - parent: 0 - type: Transform -- uid: 3639 - type: WallReinforced - components: - - pos: -38.5,4.5 - parent: 0 - type: Transform -- uid: 3640 - type: WallReinforced - components: - - pos: -37.5,4.5 - parent: 0 - type: Transform -- uid: 3641 - type: WallReinforced - components: - - pos: -37.5,5.5 - parent: 0 - type: Transform -- uid: 3642 - type: WallReinforced - components: - - pos: -37.5,6.5 - parent: 0 - type: Transform -- uid: 3643 - type: WallReinforced - components: - - pos: -37.5,7.5 - parent: 0 - type: Transform -- uid: 3644 - type: WallReinforced - components: - - pos: -37.5,8.5 - parent: 0 - type: Transform -- uid: 3645 - type: WallReinforced - components: - - pos: -37.5,9.5 - parent: 0 - type: Transform -- uid: 3646 - type: WallReinforced - components: - - pos: -38.5,9.5 - parent: 0 - type: Transform -- uid: 3647 - type: WallReinforced - components: - - pos: -39.5,9.5 - parent: 0 - type: Transform -- uid: 3648 - type: WallReinforced - components: - - pos: -39.5,10.5 - parent: 0 - type: Transform -- uid: 3649 - type: WallReinforced - components: - - pos: -39.5,11.5 - parent: 0 - type: Transform -- uid: 3650 - type: WallSolid - components: - - pos: -36.5,9.5 - parent: 0 - type: Transform -- uid: 3651 - type: WallSolid - components: - - pos: -36.5,11.5 - parent: 0 - type: Transform -- uid: 3652 - type: WallSolid - components: - - pos: -37.5,11.5 - parent: 0 - type: Transform -- uid: 3653 - type: WallSolid - components: - - pos: -38.5,11.5 - parent: 0 - type: Transform -- uid: 3654 - type: WallSolidRust - components: - - pos: -36.5,10.5 - parent: 0 - type: Transform -- uid: 3655 - type: ReinforcedWindow - components: - - pos: -39.5,12.5 - parent: 0 - type: Transform -- uid: 3656 - type: ReinforcedWindow - components: - - pos: -39.5,13.5 - parent: 0 - type: Transform -- uid: 3657 - type: Poweredlight - components: - - pos: -8.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3658 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -13.5,-6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3659 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3660 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3661 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3662 - type: CrateEngineeringElectricalSupplies - components: - - pos: -22.5,1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3663 - type: WallSolid - components: - - pos: -42.5,-1.5 - parent: 0 - type: Transform -- uid: 3664 - type: WallReinforced - components: - - pos: -39.5,0.5 - parent: 0 - type: Transform -- uid: 3665 - type: WallReinforced - components: - - pos: -40.5,0.5 - parent: 0 - type: Transform -- uid: 3666 - type: WallReinforced - components: - - pos: -40.5,-0.5 - parent: 0 - type: Transform -- uid: 3667 - type: WallReinforced - components: - - pos: -38.5,0.5 - parent: 0 - type: Transform -- uid: 3668 - type: WallReinforced - components: - - pos: -37.5,0.5 - parent: 0 - type: Transform -- uid: 3669 - type: WallReinforced - components: - - pos: -40.5,-1.5 - parent: 0 - type: Transform -- uid: 3670 - type: WallReinforced - components: - - pos: -36.5,0.5 - parent: 0 - type: Transform -- uid: 3671 - type: WallReinforced - components: - - pos: -36.5,-0.5 - parent: 0 - type: Transform -- uid: 3672 - type: WallReinforced - components: - - pos: -40.5,-2.5 - parent: 0 - type: Transform -- uid: 3673 - type: WallReinforced - components: - - pos: -36.5,-2.5 - parent: 0 - type: Transform -- uid: 3674 - type: WallReinforced - components: - - pos: -36.5,-3.5 - parent: 0 - type: Transform -- uid: 3675 - type: WallReinforced - components: - - pos: -37.5,-3.5 - parent: 0 - type: Transform -- uid: 3676 - type: WallReinforced - components: - - pos: -38.5,-3.5 - parent: 0 - type: Transform -- uid: 3677 - type: WallSolid - components: - - pos: -36.5,4.5 - parent: 0 - type: Transform -- uid: 3678 - type: AsteroidRock - components: - - pos: -38.5,8.5 - parent: 0 - type: Transform -- uid: 3679 - type: AsteroidRock - components: - - pos: -38.5,7.5 - parent: 0 - type: Transform -- uid: 3680 - type: AsteroidRock - components: - - pos: -38.5,6.5 - parent: 0 - type: Transform -- uid: 3681 - type: AsteroidRock - components: - - pos: -38.5,5.5 - parent: 0 - type: Transform -- uid: 3682 - type: AsteroidRock - components: - - pos: -39.5,7.5 - parent: 0 - type: Transform -- uid: 3683 - type: AsteroidRock - components: - - pos: -39.5,6.5 - parent: 0 - type: Transform -- uid: 3684 - type: AsteroidRock - components: - - pos: -39.5,5.5 - parent: 0 - type: Transform -- uid: 3685 - type: AsteroidRock - components: - - pos: -40.5,7.5 - parent: 0 - type: Transform -- uid: 3686 - type: AsteroidRock - components: - - pos: -40.5,6.5 - parent: 0 - type: Transform -- uid: 3687 - type: AsteroidRock - components: - - pos: -40.5,5.5 - parent: 0 - type: Transform -- uid: 3688 - type: AsteroidRock - components: - - pos: -41.5,6.5 - parent: 0 - type: Transform -- uid: 3689 - type: AsteroidRock - components: - - pos: -41.5,5.5 - parent: 0 - type: Transform -- uid: 3690 - type: AsteroidRock - components: - - pos: -41.5,4.5 - parent: 0 - type: Transform -- uid: 3691 - type: AsteroidRock - components: - - pos: -42.5,5.5 - parent: 0 - type: Transform -- uid: 3692 - type: AsteroidRock - components: - - pos: -42.5,4.5 - parent: 0 - type: Transform -- uid: 3693 - type: AsteroidRock - components: - - pos: -43.5,5.5 - parent: 0 - type: Transform -- uid: 3694 - type: AsteroidRock - components: - - pos: -43.5,4.5 - parent: 0 - type: Transform -- uid: 3695 - type: AsteroidRock - components: - - pos: -44.5,4.5 - parent: 0 - type: Transform -- uid: 3696 - type: FloraRockSolid01 - components: - - pos: -44.481472,6.479585 - parent: 0 - type: Transform -- uid: 3697 - type: AsteroidRock - components: - - pos: -35.5,21.5 - parent: 0 - type: Transform -- uid: 3698 - type: AsteroidRock - components: - - pos: -36.5,21.5 - parent: 0 - type: Transform -- uid: 3699 - type: MountainRock - components: - - pos: -36.5,5.5 - parent: 0 - type: Transform -- uid: 3700 - type: MountainRock - components: - - pos: -36.5,6.5 - parent: 0 - type: Transform -- uid: 3701 - type: MountainRock - components: - - pos: -36.5,7.5 - parent: 0 - type: Transform -- uid: 3702 - type: MountainRock - components: - - pos: -36.5,8.5 - parent: 0 - type: Transform -- uid: 3703 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -35.5,5.5 - parent: 0 - type: Transform -- uid: 3704 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -35.5,6.5 - parent: 0 - type: Transform -- uid: 3705 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -35.5,7.5 - parent: 0 - type: Transform -- uid: 3706 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -35.5,8.5 - parent: 0 - type: Transform -- uid: 3707 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -35.5,9.5 - parent: 0 - type: Transform -- uid: 3708 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -35.5,10.5 - parent: 0 - type: Transform -- uid: 3709 - type: WallSolid - components: - - pos: -35.5,11.5 - parent: 0 - type: Transform -- uid: 3710 - type: RailingCornerSmall - components: - - pos: -35.5,4.5 - parent: 0 - type: Transform -- uid: 3711 - type: SMESBasic - components: - - pos: -45.5,2.5 - parent: 0 - type: Transform -- uid: 3712 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: -46.5,2.5 - parent: 0 - type: Transform -- uid: 3713 - type: WallReinforced - components: - - pos: -44.5,-0.5 - parent: 0 - type: Transform -- uid: 3714 - type: AirlockEngineeringLocked - components: - - pos: -43.5,1.5 - parent: 0 - type: Transform -- uid: 3715 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -47.5,1.5 - parent: 0 - type: Transform -- uid: 3716 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -49.5,1.5 - parent: 0 - type: Transform -- uid: 3717 - type: AirlockEngineeringLocked - components: - - pos: -45.5,-0.5 - parent: 0 - type: Transform -- uid: 3718 - type: Grille - components: - - pos: -47.5,-2.5 - parent: 0 - type: Transform -- uid: 3719 - type: Grille - components: - - pos: -46.5,-0.5 - parent: 0 - type: Transform -- uid: 3720 - type: Grille - components: - - pos: -47.5,0.5 - parent: 0 - type: Transform -- uid: 3721 - type: Grille - components: - - pos: -48.5,0.5 - parent: 0 - type: Transform -- uid: 3722 - type: Grille - components: - - pos: -49.5,0.5 - parent: 0 - type: Transform -- uid: 3723 - type: Grille - components: - - pos: -49.5,2.5 - parent: 0 - type: Transform -- uid: 3724 - type: Grille - components: - - pos: -48.5,2.5 - parent: 0 - type: Transform -- uid: 3725 - type: Grille - components: - - pos: -47.5,2.5 - parent: 0 - type: Transform -- uid: 3726 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,-22.5 - parent: 0 - type: Transform -- uid: 3727 - type: AtmosFixBlockerMarker - components: - - pos: -33.5,-20.5 - parent: 0 - type: Transform -- uid: 3728 - type: Rack - components: - - pos: -42.5,-2.5 - parent: 0 - type: Transform -- uid: 3729 - type: ClothingMaskGas - components: - - pos: -42.481697,-2.439435 - parent: 0 - type: Transform -- uid: 3730 - type: NitrogenTankFilled - components: - - pos: -42.466072,-2.376935 - parent: 0 - type: Transform -- uid: 3731 - type: AtmosFixBlockerMarker - components: - - pos: -32.5,-20.5 - parent: 0 - type: Transform -- uid: 3732 - type: AtmosFixBlockerMarker - components: - - pos: -28.5,-20.5 - parent: 0 - type: Transform -- uid: 3733 - type: AtmosFixBlockerMarker - components: - - pos: -27.5,-20.5 - parent: 0 - type: Transform -- uid: 3734 - type: AtmosFixBlockerMarker - components: - - pos: -40.5,-20.5 - parent: 0 - type: Transform -- uid: 3735 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -14.5,38.5 - parent: 0 - type: Transform -- uid: 3736 - type: Catwalk - components: - - pos: -41.5,37.5 - parent: 0 - type: Transform -- uid: 3737 - type: WallSolid - components: - - pos: -35.5,37.5 - parent: 0 - type: Transform -- uid: 3738 - type: WallSolid - components: - - pos: -32.5,37.5 - parent: 0 - type: Transform -- uid: 3739 - type: Catwalk - components: - - pos: -37.5,-21.5 - parent: 0 - type: Transform -- uid: 3740 - type: AirlockExternalGlass - components: - - rot: 3.141592653589793 rad - pos: -30.5,-7.5 - parent: 0 - type: Transform -- uid: 3741 - type: AirlockExternalGlass - components: - - rot: 3.141592653589793 rad - pos: -30.5,-23.5 - parent: 0 - type: Transform -- uid: 3742 - type: Grille - components: - - pos: -36.5,-7.5 - parent: 0 - type: Transform -- uid: 3743 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -16.5,-30.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3744 - type: SignEscapePods - components: - - pos: -27.5,-27.5 - parent: 0 - type: Transform -- uid: 3745 - type: SignEscapePods - components: - - pos: -32.5,-27.5 - parent: 0 - type: Transform -- uid: 3746 - type: AirlockExternalGlass - components: - - pos: -33.5,-27.5 - parent: 0 - type: Transform -- uid: 3747 - type: AirlockExternalGlass - components: - - pos: -28.5,-27.5 - parent: 0 - type: Transform -- uid: 3748 - type: AirlockExternalGlassLocked - components: - - pos: -16.5,-27.5 - parent: 0 - type: Transform -- uid: 3749 - type: AirlockExternalGlassLocked - components: - - pos: -22.5,-31.5 - parent: 0 - type: Transform -- uid: 3750 - type: SignSecureMed - components: - - pos: -36.5,-9.5 - parent: 0 - type: Transform -- uid: 3751 - type: ReinforcedWindow - components: - - pos: -36.5,-20.5 - parent: 0 - type: Transform -- uid: 3752 - type: WallReinforced - components: - - pos: -36.5,-21.5 - parent: 0 - type: Transform -- uid: 3753 - type: ReinforcedWindow - components: - - pos: -36.5,-7.5 - parent: 0 - type: Transform -- uid: 3754 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: -1.5707963267948966 rad - pos: -41.5,40.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3755 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: -1.5707963267948966 rad - pos: -41.5,42.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3756 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: -1.5707963267948966 rad - pos: -41.5,34.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3757 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: -1.5707963267948966 rad - pos: -41.5,32.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3758 - type: AtmosDeviceFanTiny - components: - - pos: -41.5,32.5 - parent: 0 - type: Transform -- uid: 3759 - type: AtmosDeviceFanTiny - components: - - pos: -41.5,34.5 - parent: 0 - type: Transform -- uid: 3760 - type: AtmosDeviceFanTiny - components: - - pos: -41.5,40.5 - parent: 0 - type: Transform -- uid: 3761 - type: AtmosDeviceFanTiny - components: - - pos: -41.5,42.5 - parent: 0 - type: Transform -- uid: 3762 - type: ReinforcedWindow - components: - - pos: -41.5,43.5 - parent: 0 - type: Transform -- uid: 3763 - type: ReinforcedWindow - components: - - pos: -39.5,44.5 - parent: 0 - type: Transform -- uid: 3764 - type: ReinforcedWindow - components: - - pos: -38.5,43.5 - parent: 0 - type: Transform -- uid: 3765 - type: ReinforcedWindow - components: - - pos: -40.5,41.5 - parent: 0 - type: Transform -- uid: 3766 - type: ReinforcedWindow - components: - - pos: -41.5,41.5 - parent: 0 - type: Transform -- uid: 3767 - type: ReinforcedWindow - components: - - pos: -41.5,39.5 - parent: 0 - type: Transform -- uid: 3768 - type: ReinforcedWindow - components: - - pos: -39.5,39.5 - parent: 0 - type: Transform -- uid: 3769 - type: ReinforcedWindow - components: - - pos: -38.5,39.5 - parent: 0 - type: Transform -- uid: 3770 - type: ReinforcedWindow - components: - - pos: -38.5,38.5 - parent: 0 - type: Transform -- uid: 3771 - type: ReinforcedWindow - components: - - pos: -41.5,35.5 - parent: 0 - type: Transform -- uid: 3772 - type: ReinforcedWindow - components: - - pos: -39.5,35.5 - parent: 0 - type: Transform -- uid: 3773 - type: ReinforcedWindow - components: - - pos: -38.5,35.5 - parent: 0 - type: Transform -- uid: 3774 - type: ReinforcedWindow - components: - - pos: -38.5,36.5 - parent: 0 - type: Transform -- uid: 3775 - type: ReinforcedWindow - components: - - pos: -41.5,31.5 - parent: 0 - type: Transform -- uid: 3776 - type: ReinforcedWindow - components: - - pos: -39.5,31.5 - parent: 0 - type: Transform -- uid: 3777 - type: ReinforcedWindow - components: - - pos: -38.5,31.5 - parent: 0 - type: Transform -- uid: 3778 - type: WallReinforced - components: - - pos: -40.5,31.5 - parent: 0 - type: Transform -- uid: 3779 - type: ReinforcedWindow - components: - - pos: -38.5,33.5 - parent: 0 - type: Transform -- uid: 3780 - type: ReinforcedWindow - components: - - pos: -40.5,33.5 - parent: 0 - type: Transform -- uid: 3781 - type: ReinforcedWindow - components: - - pos: -41.5,33.5 - parent: 0 - type: Transform -- uid: 3782 - type: WallReinforced - components: - - pos: -39.5,33.5 - parent: 0 - type: Transform -- uid: 3783 - type: WallReinforced - components: - - pos: -40.5,35.5 - parent: 0 - type: Transform -- uid: 3784 - type: WallReinforced - components: - - pos: -38.5,37.5 - parent: 0 - type: Transform -- uid: 3785 - type: WallReinforced - components: - - pos: -40.5,39.5 - parent: 0 - type: Transform -- uid: 3786 - type: WallReinforced - components: - - pos: -38.5,41.5 - parent: 0 - type: Transform -- uid: 3787 - type: WallReinforced - components: - - pos: -39.5,41.5 - parent: 0 - type: Transform -- uid: 3788 - type: WallReinforced - components: - - pos: -40.5,44.5 - parent: 0 - type: Transform -- uid: 3789 - type: WallReinforced - components: - - pos: -41.5,44.5 - parent: 0 - type: Transform -- uid: 3790 - type: WallReinforced - components: - - pos: -38.5,44.5 - parent: 0 - type: Transform -- uid: 3791 - type: ReinforcedWindow - components: - - pos: -27.5,43.5 - parent: 0 - type: Transform -- uid: 3792 - type: ReinforcedWindow - components: - - pos: -28.5,43.5 - parent: 0 - type: Transform -- uid: 3793 - type: ReinforcedWindow - components: - - pos: -29.5,42.5 - parent: 0 - type: Transform -- uid: 3794 - type: ReinforcedWindow - components: - - pos: -28.5,41.5 - parent: 0 - type: Transform -- uid: 3795 - type: ReinforcedWindow - components: - - pos: -27.5,41.5 - parent: 0 - type: Transform -- uid: 3796 - type: ReinforcedWindow - components: - - pos: -30.5,41.5 - parent: 0 - type: Transform -- uid: 3797 - type: ReinforcedWindow - components: - - pos: -33.5,41.5 - parent: 0 - type: Transform -- uid: 3798 - type: ReinforcedWindow - components: - - pos: -34.5,42.5 - parent: 0 - type: Transform -- uid: 3799 - type: ReinforcedWindow - components: - - pos: -34.5,43.5 - parent: 0 - type: Transform -- uid: 3800 - type: ReinforcedWindow - components: - - pos: -34.5,44.5 - parent: 0 - type: Transform -- uid: 3801 - type: ReinforcedWindow - components: - - pos: -35.5,41.5 - parent: 0 - type: Transform -- uid: 3802 - type: ReinforcedWindow - components: - - pos: -37.5,41.5 - parent: 0 - type: Transform -- uid: 3803 - type: ReinforcedWindow - components: - - pos: -26.5,38.5 - parent: 0 - type: Transform -- uid: 3804 - type: ReinforcedWindow - components: - - pos: -26.5,39.5 - parent: 0 - type: Transform -- uid: 3805 - type: ReinforcedWindow - components: - - pos: -26.5,40.5 - parent: 0 - type: Transform -- uid: 3806 - type: WallReinforced - components: - - pos: -38.5,30.5 - parent: 0 - type: Transform -- uid: 3807 - type: WallReinforced - components: - - pos: -38.5,29.5 - parent: 0 - type: Transform -- uid: 3808 - type: WallReinforced - components: - - pos: -38.5,28.5 - parent: 0 - type: Transform -- uid: 3809 - type: ReinforcedWindow - components: - - pos: -38.5,27.5 - parent: 0 - type: Transform -- uid: 3810 - type: ReinforcedWindow - components: - - pos: -38.5,26.5 - parent: 0 - type: Transform -- uid: 3811 - type: WallReinforced - components: - - pos: -38.5,25.5 - parent: 0 - type: Transform -- uid: 3812 - type: WallReinforced - components: - - pos: -38.5,24.5 - parent: 0 - type: Transform -- uid: 3813 - type: WallReinforced - components: - - pos: -38.5,23.5 - parent: 0 - type: Transform -- uid: 3814 - type: WallReinforced - components: - - pos: -38.5,22.5 - parent: 0 - type: Transform -- uid: 3815 - type: WallReinforced - components: - - pos: -37.5,22.5 - parent: 0 - type: Transform -- uid: 3816 - type: WallReinforced - components: - - pos: -36.5,22.5 - parent: 0 - type: Transform -- uid: 3817 - type: WallReinforced - components: - - pos: -35.5,22.5 - parent: 0 - type: Transform -- uid: 3818 - type: WallReinforced - components: - - pos: -34.5,22.5 - parent: 0 - type: Transform -- uid: 3819 - type: WallReinforced - components: - - pos: -34.5,21.5 - parent: 0 - type: Transform -- uid: 3820 - type: WallReinforced - components: - - pos: -34.5,20.5 - parent: 0 - type: Transform -- uid: 3821 - type: WallReinforced - components: - - pos: -35.5,20.5 - parent: 0 - type: Transform -- uid: 3822 - type: WallReinforced - components: - - pos: -36.5,20.5 - parent: 0 - type: Transform -- uid: 3823 - type: WallReinforced - components: - - pos: -37.5,20.5 - parent: 0 - type: Transform -- uid: 3824 - type: WallReinforced - components: - - pos: -37.5,18.5 - parent: 0 - type: Transform -- uid: 3825 - type: WallReinforced - components: - - pos: -37.5,17.5 - parent: 0 - type: Transform -- uid: 3826 - type: WallReinforced - components: - - pos: -37.5,16.5 - parent: 0 - type: Transform -- uid: 3827 - type: WallReinforced - components: - - pos: -37.5,19.5 - parent: 0 - type: Transform -- uid: 3828 - type: WallReinforced - components: - - pos: -39.5,14.5 - parent: 0 - type: Transform -- uid: 3829 - type: WallReinforced - components: - - pos: -39.5,15.5 - parent: 0 - type: Transform -- uid: 3830 - type: WallReinforced - components: - - pos: -39.5,16.5 - parent: 0 - type: Transform -- uid: 3831 - type: WallReinforced - components: - - pos: -37.5,14.5 - parent: 0 - type: Transform -- uid: 3832 - type: WallReinforced - components: - - pos: -37.5,15.5 - parent: 0 - type: Transform -- uid: 3833 - type: AirlockExternalLocked - components: - - pos: -38.5,16.5 - parent: 0 - type: Transform -- uid: 3834 - type: AirlockExternalLocked - components: - - pos: -38.5,14.5 - parent: 0 - type: Transform -- uid: 3835 - type: WallReinforced - components: - - pos: -29.5,41.5 - parent: 0 - type: Transform -- uid: 3836 - type: WallSolid - components: - - pos: -29.5,43.5 - parent: 0 - type: Transform -- uid: 3837 - type: WallReinforced - components: - - pos: -34.5,41.5 - parent: 0 - type: Transform -- uid: 3838 - type: WallSolid - components: - - pos: -37.5,29.5 - parent: 0 - type: Transform -- uid: 3839 - type: WallSolid - components: - - pos: -36.5,29.5 - parent: 0 - type: Transform -- uid: 3840 - type: WallSolid - components: - - pos: -35.5,29.5 - parent: 0 - type: Transform -- uid: 3841 - type: WallSolid - components: - - pos: -35.5,28.5 - parent: 0 - type: Transform -- uid: 3842 - type: WallSolid - components: - - pos: -33.5,28.5 - parent: 0 - type: Transform -- uid: 3843 - type: WallSolid - components: - - pos: -32.5,28.5 - parent: 0 - type: Transform -- uid: 3844 - type: WallSolid - components: - - pos: -31.5,28.5 - parent: 0 - type: Transform -- uid: 3845 - type: WallSolid - components: - - pos: -31.5,29.5 - parent: 0 - type: Transform -- uid: 3846 - type: WallSolid - components: - - pos: -31.5,27.5 - parent: 0 - type: Transform -- uid: 3847 - type: WallSolid - components: - - pos: -31.5,26.5 - parent: 0 - type: Transform -- uid: 3848 - type: WallSolid - components: - - pos: -36.5,23.5 - parent: 0 - type: Transform -- uid: 3849 - type: WallSolid - components: - - pos: -36.5,24.5 - parent: 0 - type: Transform -- uid: 3850 - type: WallSolid - components: - - pos: -34.5,23.5 - parent: 0 - type: Transform -- uid: 3851 - type: WallSolid - components: - - pos: -34.5,24.5 - parent: 0 - type: Transform -- uid: 3852 - type: WallSolid - components: - - pos: -32.5,24.5 - parent: 0 - type: Transform -- uid: 3853 - type: WallReinforced - components: - - pos: -30.5,20.5 - parent: 0 - type: Transform -- uid: 3854 - type: WallReinforced - components: - - pos: -31.5,20.5 - parent: 0 - type: Transform -- uid: 3855 - type: WallReinforced - components: - - pos: -31.5,21.5 - parent: 0 - type: Transform -- uid: 3856 - type: WallReinforced - components: - - pos: -31.5,22.5 - parent: 0 - type: Transform -- uid: 3857 - type: WallReinforced - components: - - pos: -31.5,23.5 - parent: 0 - type: Transform -- uid: 3858 - type: WallSolid - components: - - pos: -32.5,20.5 - parent: 0 - type: Transform -- uid: 3859 - type: WallSolid - components: - - pos: -33.5,20.5 - parent: 0 - type: Transform -- uid: 3860 - type: WallReinforced - components: - - pos: -29.5,20.5 - parent: 0 - type: Transform -- uid: 3861 - type: WallReinforced - components: - - pos: -25.5,21.5 - parent: 0 - type: Transform -- uid: 3862 - type: WallReinforced - components: - - pos: -25.5,22.5 - parent: 0 - type: Transform -- uid: 3863 - type: WallReinforced - components: - - pos: -25.5,24.5 - parent: 0 - type: Transform -- uid: 3864 - type: WallReinforced - components: - - pos: -25.5,20.5 - parent: 0 - type: Transform -- uid: 3865 - type: WallReinforced - components: - - pos: -27.5,20.5 - parent: 0 - type: Transform -- uid: 3866 - type: WallReinforced - components: - - pos: -26.5,20.5 - parent: 0 - type: Transform -- uid: 3867 - type: WallReinforced - components: - - pos: -28.5,21.5 - parent: 0 - type: Transform -- uid: 3868 - type: WallReinforced - components: - - pos: -28.5,22.5 - parent: 0 - type: Transform -- uid: 3869 - type: WallReinforced - components: - - pos: -28.5,24.5 - parent: 0 - type: Transform -- uid: 3870 - type: WallReinforced - components: - - pos: -28.5,23.5 - parent: 0 - type: Transform -- uid: 3871 - type: WallReinforced - components: - - pos: -26.5,24.5 - parent: 0 - type: Transform -- uid: 3872 - type: WallReinforced - components: - - pos: -30.5,24.5 - parent: 0 - type: Transform -- uid: 3873 - type: WallReinforced - components: - - pos: -31.5,24.5 - parent: 0 - type: Transform -- uid: 3874 - type: WallSolid - components: - - pos: -29.5,29.5 - parent: 0 - type: Transform -- uid: 3875 - type: WallSolid - components: - - pos: -29.5,28.5 - parent: 0 - type: Transform -- uid: 3876 - type: WallSolid - components: - - pos: -29.5,27.5 - parent: 0 - type: Transform -- uid: 3877 - type: WallSolid - components: - - pos: -29.5,26.5 - parent: 0 - type: Transform -- uid: 3878 - type: WallSolid - components: - - pos: -28.5,26.5 - parent: 0 - type: Transform -- uid: 3879 - type: WallSolid - components: - - pos: -27.5,26.5 - parent: 0 - type: Transform -- uid: 3880 - type: WallSolid - components: - - pos: -26.5,26.5 - parent: 0 - type: Transform -- uid: 3881 - type: WallSolid - components: - - pos: -25.5,26.5 - parent: 0 - type: Transform -- uid: 3882 - type: WallSolid - components: - - pos: -24.5,26.5 - parent: 0 - type: Transform -- uid: 3883 - type: WallSolid - components: - - pos: -21.5,32.5 - parent: 0 - type: Transform -- uid: 3884 - type: WallSolid - components: - - pos: -27.5,29.5 - parent: 0 - type: Transform -- uid: 3885 - type: WallSolid - components: - - pos: -26.5,29.5 - parent: 0 - type: Transform -- uid: 3886 - type: WallSolid - components: - - pos: -25.5,29.5 - parent: 0 - type: Transform -- uid: 3887 - type: WallSolid - components: - - pos: -21.5,31.5 - parent: 0 - type: Transform -- uid: 3888 - type: WallSolid - components: - - pos: -21.5,30.5 - parent: 0 - type: Transform -- uid: 3889 - type: WallSolid - components: - - pos: -20.5,30.5 - parent: 0 - type: Transform -- uid: 3890 - type: WallSolid - components: - - pos: -21.5,29.5 - parent: 0 - type: Transform -- uid: 3891 - type: WallSolid - components: - - pos: -22.5,29.5 - parent: 0 - type: Transform -- uid: 3892 - type: WallSolid - components: - - pos: -23.5,29.5 - parent: 0 - type: Transform -- uid: 3893 - type: AirlockServiceLocked - components: - - name: Evac Service - type: MetaData - - pos: -22.5,28.5 - parent: 0 - type: Transform -- uid: 3894 - type: WallSolid - components: - - pos: -22.5,27.5 - parent: 0 - type: Transform -- uid: 3895 - type: WallSolid - components: - - pos: -22.5,26.5 - parent: 0 - type: Transform -- uid: 3896 - type: WallSolid - components: - - pos: -23.5,26.5 - parent: 0 - type: Transform -- uid: 3897 - type: AirlockExternalGlass - components: - - pos: -38.5,32.5 - parent: 0 - type: Transform -- uid: 3898 - type: AirlockExternalGlass - components: - - pos: -38.5,34.5 - parent: 0 - type: Transform -- uid: 3899 - type: AirlockExternalGlass - components: - - pos: -38.5,40.5 - parent: 0 - type: Transform -- uid: 3900 - type: WallReinforced - components: - - pos: -34.5,45.5 - parent: 0 - type: Transform -- uid: 3901 - type: AirlockExternalGlass - components: - - pos: -38.5,42.5 - parent: 0 - type: Transform -- uid: 3902 - type: WallReinforced - components: - - pos: -34.5,46.5 - parent: 0 - type: Transform -- uid: 3903 - type: WallReinforced - components: - - pos: -38.5,45.5 - parent: 0 - type: Transform -- uid: 3904 - type: WallReinforced - components: - - pos: -38.5,46.5 - parent: 0 - type: Transform -- uid: 3905 - type: ReinforcedWindow - components: - - pos: -37.5,46.5 - parent: 0 - type: Transform -- uid: 3906 - type: ReinforcedWindow - components: - - pos: -35.5,46.5 - parent: 0 - type: Transform -- uid: 3907 - type: ReinforcedWindow - components: - - pos: -38.5,47.5 - parent: 0 - type: Transform -- uid: 3908 - type: ReinforcedWindow - components: - - pos: -38.5,48.5 - parent: 0 - type: Transform -- uid: 3909 - type: ReinforcedWindow - components: - - pos: -38.5,49.5 - parent: 0 - type: Transform -- uid: 3910 - type: ReinforcedWindow - components: - - pos: -34.5,47.5 - parent: 0 - type: Transform -- uid: 3911 - type: ReinforcedWindow - components: - - pos: -34.5,49.5 - parent: 0 - type: Transform -- uid: 3912 - type: WallReinforced - components: - - pos: -38.5,50.5 - parent: 0 - type: Transform -- uid: 3913 - type: WallReinforced - components: - - pos: -38.5,51.5 - parent: 0 - type: Transform -- uid: 3914 - type: WallReinforced - components: - - pos: -34.5,50.5 - parent: 0 - type: Transform -- uid: 3915 - type: WallReinforced - components: - - pos: -34.5,51.5 - parent: 0 - type: Transform -- uid: 3916 - type: WallReinforced - components: - - pos: -35.5,51.5 - parent: 0 - type: Transform -- uid: 3917 - type: WallReinforced - components: - - pos: -36.5,51.5 - parent: 0 - type: Transform -- uid: 3918 - type: WallReinforced - components: - - pos: -37.5,51.5 - parent: 0 - type: Transform -- uid: 3919 - type: WallSolid - components: - - pos: -29.5,37.5 - parent: 0 - type: Transform -- uid: 3920 - type: WallSolid - components: - - pos: -29.5,33.5 - parent: 0 - type: Transform -- uid: 3921 - type: WallSolid - components: - - pos: -32.5,33.5 - parent: 0 - type: Transform -- uid: 3922 - type: WallSolid - components: - - pos: -35.5,33.5 - parent: 0 - type: Transform -- uid: 3923 - type: Chair - components: - - pos: -35.5,36.5 - parent: 0 - type: Transform -- uid: 3924 - type: Chair - components: - - pos: -34.5,36.5 - parent: 0 - type: Transform -- uid: 3925 - type: Chair - components: - - pos: -33.5,36.5 - parent: 0 - type: Transform -- uid: 3926 - type: Chair - components: - - pos: -32.5,36.5 - parent: 0 - type: Transform -- uid: 3927 - type: Chair - components: - - pos: -31.5,36.5 - parent: 0 - type: Transform -- uid: 3928 - type: Chair - components: - - pos: -30.5,36.5 - parent: 0 - type: Transform -- uid: 3929 - type: Chair - components: - - pos: -29.5,36.5 - parent: 0 - type: Transform -- uid: 3930 - type: Chair - components: - - pos: -35.5,32.5 - parent: 0 - type: Transform -- uid: 3931 - type: Chair - components: - - pos: -34.5,32.5 - parent: 0 - type: Transform -- uid: 3932 - type: Chair - components: - - pos: -33.5,32.5 - parent: 0 - type: Transform -- uid: 3933 - type: Chair - components: - - pos: -32.5,32.5 - parent: 0 - type: Transform -- uid: 3934 - type: Chair - components: - - pos: -31.5,32.5 - parent: 0 - type: Transform -- uid: 3935 - type: Chair - components: - - pos: -30.5,32.5 - parent: 0 - type: Transform -- uid: 3936 - type: Chair - components: - - pos: -29.5,32.5 - parent: 0 - type: Transform -- uid: 3937 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -29.5,34.5 - parent: 0 - type: Transform -- uid: 3938 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -30.5,34.5 - parent: 0 - type: Transform -- uid: 3939 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -31.5,34.5 - parent: 0 - type: Transform -- uid: 3940 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -32.5,34.5 - parent: 0 - type: Transform -- uid: 3941 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -33.5,34.5 - parent: 0 - type: Transform -- uid: 3942 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -34.5,34.5 - parent: 0 - type: Transform -- uid: 3943 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -35.5,34.5 - parent: 0 - type: Transform -- uid: 3944 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -35.5,38.5 - parent: 0 - type: Transform -- uid: 3945 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -34.5,38.5 - parent: 0 - type: Transform -- uid: 3946 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -33.5,38.5 - parent: 0 - type: Transform -- uid: 3947 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -32.5,38.5 - parent: 0 - type: Transform -- uid: 3948 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -31.5,38.5 - parent: 0 - type: Transform -- uid: 3949 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -30.5,38.5 - parent: 0 - type: Transform -- uid: 3950 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -29.5,38.5 - parent: 0 - type: Transform -- uid: 3951 - type: FirelockGlass - components: - - pos: -29.5,44.5 - parent: 0 - type: Transform -- uid: 3952 - type: FirelockGlass - components: - - pos: -29.5,45.5 - parent: 0 - type: Transform -- uid: 3953 - type: FirelockGlass - components: - - pos: -29.5,46.5 - parent: 0 - type: Transform -- uid: 3954 - type: WallSolid - components: - - pos: -28.5,47.5 - parent: 0 - type: Transform -- uid: 3955 - type: WallSolid - components: - - pos: -29.5,47.5 - parent: 0 - type: Transform -- uid: 3956 - type: WallSolid - components: - - pos: -29.5,48.5 - parent: 0 - type: Transform -- uid: 3957 - type: WallSolid - components: - - pos: -29.5,50.5 - parent: 0 - type: Transform -- uid: 3958 - type: WallSolid - components: - - pos: -29.5,51.5 - parent: 0 - type: Transform -- uid: 3959 - type: WallSolid - components: - - pos: -28.5,51.5 - parent: 0 - type: Transform -- uid: 3960 - type: WallSolid - components: - - pos: -25.5,47.5 - parent: 0 - type: Transform -- uid: 3961 - type: WallSolid - components: - - pos: -23.5,47.5 - parent: 0 - type: Transform -- uid: 3962 - type: WallSolid - components: - - pos: -23.5,48.5 - parent: 0 - type: Transform -- uid: 3963 - type: WallSolid - components: - - pos: -23.5,49.5 - parent: 0 - type: Transform -- uid: 3964 - type: WallSolid - components: - - pos: -23.5,50.5 - parent: 0 - type: Transform -- uid: 3965 - type: WallSolid - components: - - pos: -23.5,51.5 - parent: 0 - type: Transform -- uid: 3966 - type: WallSolid - components: - - pos: -24.5,51.5 - parent: 0 - type: Transform -- uid: 3967 - type: WallSolid - components: - - pos: -25.5,51.5 - parent: 0 - type: Transform -- uid: 3968 - type: WallSolid - components: - - pos: -26.5,51.5 - parent: 0 - type: Transform -- uid: 3969 - type: WallSolid - components: - - pos: -27.5,51.5 - parent: 0 - type: Transform -- uid: 3970 - type: Grille - components: - - pos: -29.5,49.5 - parent: 0 - type: Transform -- uid: 3971 - type: Grille - components: - - pos: -24.5,47.5 - parent: 0 - type: Transform -- uid: 3972 - type: Window - components: - - pos: -24.5,47.5 - parent: 0 - type: Transform -- uid: 3973 - type: Window - components: - - pos: -29.5,49.5 - parent: 0 - type: Transform -- uid: 3974 - type: Table - components: - - pos: -25.5,49.5 - parent: 0 - type: Transform -- uid: 3975 - type: WallSolid - components: - - pos: -22.5,47.5 - parent: 0 - type: Transform -- uid: 3976 - type: WallSolid - components: - - pos: -21.5,47.5 - parent: 0 - type: Transform -- uid: 3977 - type: WallSolid - components: - - pos: -20.5,47.5 - parent: 0 - type: Transform -- uid: 3978 - type: WallSolid - components: - - pos: -19.5,47.5 - parent: 0 - type: Transform -- uid: 3979 - type: WallSolid - components: - - pos: -18.5,47.5 - parent: 0 - type: Transform -- uid: 3980 - type: WallSolid - components: - - pos: -17.5,47.5 - parent: 0 - type: Transform -- uid: 3981 - type: WallSolid - components: - - pos: -16.5,47.5 - parent: 0 - type: Transform -- uid: 3982 - type: WallSolid - components: - - pos: -15.5,47.5 - parent: 0 - type: Transform -- uid: 3983 - type: WallSolid - components: - - pos: -14.5,47.5 - parent: 0 - type: Transform -- uid: 3984 - type: WallSolid - components: - - pos: -13.5,47.5 - parent: 0 - type: Transform -- uid: 3985 - type: WallSolid - components: - - pos: -12.5,47.5 - parent: 0 - type: Transform -- uid: 3986 - type: WallSolid - components: - - pos: -11.5,47.5 - parent: 0 - type: Transform -- uid: 3987 - type: WallSolid - components: - - pos: -6.5,47.5 - parent: 0 - type: Transform -- uid: 3988 - type: WallSolid - components: - - pos: -7.5,47.5 - parent: 0 - type: Transform -- uid: 3989 - type: WallSolid - components: - - pos: -10.5,47.5 - parent: 0 - type: Transform -- uid: 3990 - type: Grille - components: - - pos: -26.5,38.5 - parent: 0 - type: Transform -- uid: 3991 - type: Grille - components: - - pos: -26.5,39.5 - parent: 0 - type: Transform -- uid: 3992 - type: Grille - components: - - pos: -26.5,40.5 - parent: 0 - type: Transform -- uid: 3993 - type: Grille - components: - - pos: -27.5,41.5 - parent: 0 - type: Transform -- uid: 3994 - type: Grille - components: - - pos: -28.5,41.5 - parent: 0 - type: Transform -- uid: 3995 - type: Grille - components: - - pos: -29.5,42.5 - parent: 0 - type: Transform -- uid: 3996 - type: Grille - components: - - pos: -28.5,43.5 - parent: 0 - type: Transform -- uid: 3997 - type: Grille - components: - - pos: -27.5,43.5 - parent: 0 - type: Transform -- uid: 3998 - type: Grille - components: - - pos: -22.5,43.5 - parent: 0 - type: Transform -- uid: 3999 - type: Grille - components: - - pos: -21.5,43.5 - parent: 0 - type: Transform -- uid: 4000 - type: Grille - components: - - pos: -30.5,41.5 - parent: 0 - type: Transform -- uid: 4001 - type: Grille - components: - - pos: -33.5,41.5 - parent: 0 - type: Transform -- uid: 4002 - type: Grille - components: - - pos: -37.5,41.5 - parent: 0 - type: Transform -- uid: 4003 - type: Grille - components: - - pos: -40.5,41.5 - parent: 0 - type: Transform -- uid: 4004 - type: Grille - components: - - pos: -41.5,41.5 - parent: 0 - type: Transform -- uid: 4005 - type: Grille - components: - - pos: -41.5,43.5 - parent: 0 - type: Transform -- uid: 4006 - type: Grille - components: - - pos: -39.5,44.5 - parent: 0 - type: Transform -- uid: 4007 - type: Grille - components: - - pos: -41.5,39.5 - parent: 0 - type: Transform -- uid: 4008 - type: Grille - components: - - pos: -39.5,39.5 - parent: 0 - type: Transform -- uid: 4009 - type: Grille - components: - - pos: -38.5,39.5 - parent: 0 - type: Transform -- uid: 4010 - type: Grille - components: - - pos: -38.5,38.5 - parent: 0 - type: Transform -- uid: 4011 - type: Grille - components: - - pos: -38.5,36.5 - parent: 0 - type: Transform -- uid: 4012 - type: Grille - components: - - pos: -38.5,35.5 - parent: 0 - type: Transform -- uid: 4013 - type: Grille - components: - - pos: -39.5,35.5 - parent: 0 - type: Transform -- uid: 4014 - type: Grille - components: - - pos: -41.5,35.5 - parent: 0 - type: Transform -- uid: 4015 - type: Grille - components: - - pos: -41.5,33.5 - parent: 0 - type: Transform -- uid: 4016 - type: Grille - components: - - pos: -40.5,33.5 - parent: 0 - type: Transform -- uid: 4017 - type: Grille - components: - - pos: -38.5,33.5 - parent: 0 - type: Transform -- uid: 4018 - type: Grille - components: - - pos: -38.5,26.5 - parent: 0 - type: Transform -- uid: 4019 - type: Grille - components: - - pos: -38.5,27.5 - parent: 0 - type: Transform -- uid: 4020 - type: Grille - components: - - pos: -38.5,31.5 - parent: 0 - type: Transform -- uid: 4021 - type: Grille - components: - - pos: -39.5,31.5 - parent: 0 - type: Transform -- uid: 4022 - type: Grille - components: - - pos: -41.5,31.5 - parent: 0 - type: Transform -- uid: 4023 - type: Grille - components: - - pos: -35.5,41.5 - parent: 0 - type: Transform -- uid: 4024 - type: Grille - components: - - pos: -34.5,42.5 - parent: 0 - type: Transform -- uid: 4025 - type: Grille - components: - - pos: -34.5,43.5 - parent: 0 - type: Transform -- uid: 4026 - type: Grille - components: - - pos: -34.5,44.5 - parent: 0 - type: Transform -- uid: 4027 - type: ReinforcedWindow - components: - - pos: -22.5,43.5 - parent: 0 - type: Transform -- uid: 4028 - type: Grille - components: - - pos: -35.5,46.5 - parent: 0 - type: Transform -- uid: 4029 - type: Grille - components: - - pos: -37.5,46.5 - parent: 0 - type: Transform -- uid: 4030 - type: Grille - components: - - pos: -34.5,47.5 - parent: 0 - type: Transform -- uid: 4031 - type: Grille - components: - - pos: -34.5,49.5 - parent: 0 - type: Transform -- uid: 4032 - type: Grille - components: - - pos: -38.5,47.5 - parent: 0 - type: Transform -- uid: 4033 - type: Grille - components: - - pos: -38.5,48.5 - parent: 0 - type: Transform -- uid: 4034 - type: Grille - components: - - pos: -38.5,49.5 - parent: 0 - type: Transform -- uid: 4035 - type: ReinforcedWindow - components: - - pos: -21.5,43.5 - parent: 0 - type: Transform -- uid: 4036 - type: GasPipeStraight - components: - - pos: -1.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4037 - type: GasPipeStraight - components: - - pos: -1.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4038 - type: GasPipeTJunction - components: - - pos: 25.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4039 - type: GasPipeStraight - components: - - pos: -1.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4040 - type: GasPipeStraight - components: - - pos: -1.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4041 - type: GasPipeStraight - components: - - pos: -1.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4042 - type: GasPipeStraight - components: - - pos: -1.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4043 - type: GasPipeStraight - components: - - pos: -1.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4044 - type: GasPipeStraight - components: - - pos: -1.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4045 - type: GasPipeStraight - components: - - pos: -1.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4046 - type: GasPipeStraight - components: - - pos: -1.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4047 - type: GasPipeStraight - components: - - pos: -1.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4048 - type: GasPipeStraight - components: - - pos: 0.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4049 - type: GasPipeStraight - components: - - pos: 0.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4050 - type: GasPipeStraight - components: - - pos: 0.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4051 - type: GasPipeStraight - components: - - pos: 0.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4052 - type: GasPipeStraight - components: - - pos: 0.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4053 - type: GasPipeStraight - components: - - pos: 0.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4054 - type: GasPipeStraight - components: - - pos: 0.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4055 - type: GasPipeStraight - components: - - pos: 0.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4056 - type: GasPipeStraight - components: - - pos: 0.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4057 - type: GasPipeStraight - components: - - pos: 0.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4058 - type: GasPipeStraight - components: - - pos: 0.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4059 - type: GasPipeStraight - components: - - pos: 0.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4060 - type: GasPipeStraight - components: - - pos: 0.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4061 - type: GasPipeBend - components: - - pos: 0.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4062 - type: GasPipeBend - components: - - pos: -1.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4063 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4064 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -3.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4065 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4066 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4067 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4068 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4069 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4070 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4071 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4072 - type: GasPipeTJunction - components: - - pos: -12.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4073 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4074 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4075 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4076 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4077 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4078 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4079 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4080 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4081 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4082 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4083 - type: GasPipeTJunction - components: - - pos: -23.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4084 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4085 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -19.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4086 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4087 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4088 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4089 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4090 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4091 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4092 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -0.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4093 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4094 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4095 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4096 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4097 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -5.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4098 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4099 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4100 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4101 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4102 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4103 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4104 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -11.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4105 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4106 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4107 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4108 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4109 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4110 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4111 - type: GasPipeTJunction - components: - - pos: -19.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4112 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4113 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4114 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4115 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -22.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4116 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4117 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4118 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4119 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4120 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4121 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4122 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4123 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4124 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -32.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4125 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -31.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4126 - type: GasPipeStraight - components: - - pos: -32.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4127 - type: GasPipeStraight - components: - - pos: -32.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4128 - type: GasPipeStraight - components: - - pos: -32.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4129 - type: GasPipeStraight - components: - - pos: -32.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4130 - type: GasPipeStraight - components: - - pos: -32.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4131 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -32.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4132 - type: GasPipeStraight - components: - - pos: -31.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4133 - type: GasPipeStraight - components: - - pos: -31.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4134 - type: GasPipeStraight - components: - - pos: -31.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4135 - type: GasPipeStraight - components: - - pos: -31.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4136 - type: GasPipeStraight - components: - - pos: -31.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4137 - type: GasPipeStraight - components: - - pos: -31.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4138 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -32.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4139 - type: GasPipeStraight - components: - - pos: -31.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4140 - type: GasPipeStraight - components: - - pos: -31.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4141 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -31.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4142 - type: GasPipeStraight - components: - - pos: -32.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4143 - type: GasPipeStraight - components: - - pos: -32.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4144 - type: ClosetEmergencyFilledRandom - components: - - pos: -26.5,35.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4145 - type: ClosetFireFilled - components: - - pos: -26.5,34.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4146 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -26.5,33.5 - parent: 0 - type: Transform -- uid: 4147 - type: SignSecureMed - components: - - pos: -34.5,41.5 - parent: 0 - type: Transform -- uid: 4148 - type: ExtinguisherCabinetFilled - components: - - pos: -29.5,41.5 - parent: 0 - type: Transform -- uid: 4149 - type: SignDirectionalEvac - components: - - pos: -29.5,43.5 - parent: 0 - type: Transform -- uid: 4150 - type: SignDirectionalEvac - components: - - rot: -1.5707963267948966 rad - pos: -2.5,43.5 - parent: 0 - type: Transform -- uid: 4151 - type: FloorDrain - components: - - pos: -36.5,28.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 4152 - type: FloorDrain - components: - - pos: -37.5,28.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 4153 - type: APCBasic - components: - - pos: -32.5,28.5 - parent: 0 - type: Transform -- uid: 4154 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -26.5,36.5 - parent: 0 - type: Transform -- uid: 4155 - type: WallReinforced - components: - - pos: -25.5,23.5 - parent: 0 - type: Transform -- uid: 4156 - type: SubstationBasic - components: - - name: West Bar Substation - type: MetaData - - pos: -27.5,22.5 - parent: 0 - type: Transform -- uid: 4157 - type: WallReinforced - components: - - pos: -28.5,20.5 - parent: 0 - type: Transform -- uid: 4158 - type: CableHV - components: - - pos: -23.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4159 - type: CableHV - components: - - pos: -24.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4160 - type: CableHV - components: - - pos: -25.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4161 - type: CableHV - components: - - pos: -26.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4162 - type: CableHV - components: - - pos: -27.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4163 - type: CableHV - components: - - pos: -27.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4164 - type: CableHV - components: - - pos: -27.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4165 - type: CableHV - components: - - pos: -27.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4166 - type: CableMV - components: - - pos: -27.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4167 - type: CableMV - components: - - pos: -27.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4168 - type: CableMV - components: - - pos: -27.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4169 - type: CableMV - components: - - pos: -27.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4170 - type: CableMV - components: - - pos: -28.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4171 - type: CableMV - components: - - pos: -29.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4172 - type: CableMV - components: - - pos: -30.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4173 - type: CableMV - components: - - pos: -31.5,25.5 - parent: 0 - type: Transform -- uid: 4174 - type: CableMV - components: - - pos: -32.5,25.5 - parent: 0 - type: Transform -- uid: 4175 - type: CableMV - components: - - pos: -32.5,26.5 - parent: 0 - type: Transform -- uid: 4176 - type: CableMV - components: - - pos: -32.5,27.5 - parent: 0 - type: Transform -- uid: 4177 - type: CableMV - components: - - pos: -32.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4178 - type: CableMV - components: - - pos: -30.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4179 - type: CableMV - components: - - pos: -30.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4180 - type: CableMV - components: - - pos: -30.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4181 - type: CableMV - components: - - pos: -30.5,29.5 - parent: 0 - type: Transform -- uid: 4182 - type: CableMV - components: - - pos: -30.5,30.5 - parent: 0 - type: Transform -- uid: 4183 - type: CableMV - components: - - pos: -29.5,30.5 - parent: 0 - type: Transform -- uid: 4184 - type: CableMV - components: - - pos: -27.5,30.5 - parent: 0 - type: Transform -- uid: 4185 - type: CableMV - components: - - pos: -28.5,30.5 - parent: 0 - type: Transform -- uid: 4186 - type: CableMV - components: - - pos: -27.5,31.5 - parent: 0 - type: Transform -- uid: 4187 - type: CableMV - components: - - pos: -27.5,32.5 - parent: 0 - type: Transform -- uid: 4188 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -37.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4189 - type: CableMV - components: - - pos: -27.5,34.5 - parent: 0 - type: Transform -- uid: 4190 - type: CableMV - components: - - pos: -27.5,35.5 - parent: 0 - type: Transform -- uid: 4191 - type: CableMV - components: - - pos: -27.5,36.5 - parent: 0 - type: Transform -- uid: 4192 - type: CableMV - components: - - pos: -26.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4193 - type: CableApcExtension - components: - - pos: -32.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4194 - type: CableApcExtension - components: - - pos: -32.5,27.5 - parent: 0 - type: Transform -- uid: 4195 - type: CableApcExtension - components: - - pos: -32.5,26.5 - parent: 0 - type: Transform -- uid: 4196 - type: CableApcExtension - components: - - pos: -32.5,25.5 - parent: 0 - type: Transform -- uid: 4197 - type: CableApcExtension - components: - - pos: -33.5,25.5 - parent: 0 - type: Transform -- uid: 4198 - type: CableApcExtension - components: - - pos: -33.5,24.5 - parent: 0 - type: Transform -- uid: 4199 - type: CableApcExtension - components: - - pos: -33.5,23.5 - parent: 0 - type: Transform -- uid: 4200 - type: CableApcExtension - components: - - pos: -33.5,22.5 - parent: 0 - type: Transform -- uid: 4201 - type: CableApcExtension - components: - - pos: -34.5,25.5 - parent: 0 - type: Transform -- uid: 4202 - type: CableApcExtension - components: - - pos: -35.5,25.5 - parent: 0 - type: Transform -- uid: 4203 - type: CableApcExtension - components: - - pos: -36.5,25.5 - parent: 0 - type: Transform -- uid: 4204 - type: CableApcExtension - components: - - pos: -37.5,25.5 - parent: 0 - type: Transform -- uid: 4205 - type: CableApcExtension - components: - - pos: -37.5,24.5 - parent: 0 - type: Transform -- uid: 4206 - type: CableApcExtension - components: - - pos: -35.5,24.5 - parent: 0 - type: Transform -- uid: 4207 - type: CableApcExtension - components: - - pos: -36.5,26.5 - parent: 0 - type: Transform -- uid: 4208 - type: CableApcExtension - components: - - pos: -36.5,27.5 - parent: 0 - type: Transform -- uid: 4209 - type: CableApcExtension - components: - - pos: -26.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4210 - type: CableApcExtension - components: - - pos: -27.5,36.5 - parent: 0 - type: Transform -- uid: 4211 - type: CableApcExtension - components: - - pos: -27.5,35.5 - parent: 0 - type: Transform -- uid: 4212 - type: CableApcExtension - components: - - pos: -28.5,35.5 - parent: 0 - type: Transform -- uid: 4213 - type: CableApcExtension - components: - - pos: -29.5,35.5 - parent: 0 - type: Transform -- uid: 4214 - type: CableApcExtension - components: - - pos: -30.5,35.5 - parent: 0 - type: Transform -- uid: 4215 - type: CableApcExtension - components: - - pos: -31.5,35.5 - parent: 0 - type: Transform -- uid: 4216 - type: CableApcExtension - components: - - pos: -32.5,35.5 - parent: 0 - type: Transform -- uid: 4217 - type: CableApcExtension - components: - - pos: -33.5,35.5 - parent: 0 - type: Transform -- uid: 4218 - type: CableApcExtension - components: - - pos: -34.5,35.5 - parent: 0 - type: Transform -- uid: 4219 - type: CableApcExtension - components: - - pos: -35.5,35.5 - parent: 0 - type: Transform -- uid: 4220 - type: CableApcExtension - components: - - pos: -36.5,35.5 - parent: 0 - type: Transform -- uid: 4221 - type: CableApcExtension - components: - - pos: -37.5,35.5 - parent: 0 - type: Transform -- uid: 4222 - type: CableApcExtension - components: - - pos: -37.5,34.5 - parent: 0 - type: Transform -- uid: 4223 - type: CableApcExtension - components: - - pos: -37.5,33.5 - parent: 0 - type: Transform -- uid: 4224 - type: CableApcExtension - components: - - pos: -37.5,32.5 - parent: 0 - type: Transform -- uid: 4225 - type: CableApcExtension - components: - - pos: -37.5,36.5 - parent: 0 - type: Transform -- uid: 4226 - type: CableApcExtension - components: - - pos: -37.5,37.5 - parent: 0 - type: Transform -- uid: 4227 - type: CableApcExtension - components: - - pos: -37.5,38.5 - parent: 0 - type: Transform -- uid: 4228 - type: CableApcExtension - components: - - pos: -37.5,39.5 - parent: 0 - type: Transform -- uid: 4229 - type: CableApcExtension - components: - - pos: -37.5,40.5 - parent: 0 - type: Transform -- uid: 4230 - type: CableApcExtension - components: - - pos: -38.5,40.5 - parent: 0 - type: Transform -- uid: 4231 - type: CableApcExtension - components: - - pos: -39.5,40.5 - parent: 0 - type: Transform -- uid: 4232 - type: CableApcExtension - components: - - pos: -40.5,40.5 - parent: 0 - type: Transform -- uid: 4233 - type: CableApcExtension - components: - - pos: -38.5,34.5 - parent: 0 - type: Transform -- uid: 4234 - type: CableApcExtension - components: - - pos: -39.5,34.5 - parent: 0 - type: Transform -- uid: 4235 - type: CableApcExtension - components: - - pos: -40.5,34.5 - parent: 0 - type: Transform -- uid: 4236 - type: CableApcExtension - components: - - pos: -38.5,32.5 - parent: 0 - type: Transform -- uid: 4237 - type: CableApcExtension - components: - - pos: -39.5,32.5 - parent: 0 - type: Transform -- uid: 4238 - type: CableApcExtension - components: - - pos: -40.5,32.5 - parent: 0 - type: Transform -- uid: 4239 - type: CableApcExtension - components: - - pos: -37.5,31.5 - parent: 0 - type: Transform -- uid: 4240 - type: CableApcExtension - components: - - pos: -36.5,31.5 - parent: 0 - type: Transform -- uid: 4241 - type: CableApcExtension - components: - - pos: -35.5,31.5 - parent: 0 - type: Transform -- uid: 4242 - type: CableApcExtension - components: - - pos: -34.5,31.5 - parent: 0 - type: Transform -- uid: 4243 - type: CableApcExtension - components: - - pos: -33.5,31.5 - parent: 0 - type: Transform -- uid: 4244 - type: CableApcExtension - components: - - pos: -32.5,31.5 - parent: 0 - type: Transform -- uid: 4245 - type: CableApcExtension - components: - - pos: -31.5,31.5 - parent: 0 - type: Transform -- uid: 4246 - type: CableApcExtension - components: - - pos: -30.5,31.5 - parent: 0 - type: Transform -- uid: 4247 - type: CableApcExtension - components: - - pos: -29.5,31.5 - parent: 0 - type: Transform -- uid: 4248 - type: CableApcExtension - components: - - pos: -28.5,31.5 - parent: 0 - type: Transform -- uid: 4249 - type: CableApcExtension - components: - - pos: -28.5,32.5 - parent: 0 - type: Transform -- uid: 4250 - type: CableApcExtension - components: - - pos: -28.5,33.5 - parent: 0 - type: Transform -- uid: 4251 - type: CableApcExtension - components: - - pos: -28.5,34.5 - parent: 0 - type: Transform -- uid: 4252 - type: CableApcExtension - components: - - pos: -28.5,36.5 - parent: 0 - type: Transform -- uid: 4253 - type: CableApcExtension - components: - - pos: -28.5,37.5 - parent: 0 - type: Transform -- uid: 4254 - type: CableApcExtension - components: - - pos: -28.5,38.5 - parent: 0 - type: Transform -- uid: 4255 - type: CableApcExtension - components: - - pos: -28.5,39.5 - parent: 0 - type: Transform -- uid: 4256 - type: CableApcExtension - components: - - pos: -28.5,40.5 - parent: 0 - type: Transform -- uid: 4257 - type: CableApcExtension - components: - - pos: -29.5,39.5 - parent: 0 - type: Transform -- uid: 4258 - type: CableApcExtension - components: - - pos: -30.5,39.5 - parent: 0 - type: Transform -- uid: 4259 - type: CableApcExtension - components: - - pos: -31.5,39.5 - parent: 0 - type: Transform -- uid: 4260 - type: CableApcExtension - components: - - pos: -32.5,39.5 - parent: 0 - type: Transform -- uid: 4261 - type: CableApcExtension - components: - - pos: -33.5,39.5 - parent: 0 - type: Transform -- uid: 4262 - type: CableApcExtension - components: - - pos: -34.5,39.5 - parent: 0 - type: Transform -- uid: 4263 - type: CableApcExtension - components: - - pos: -35.5,39.5 - parent: 0 - type: Transform -- uid: 4264 - type: CableApcExtension - components: - - pos: -36.5,39.5 - parent: 0 - type: Transform -- uid: 4265 - type: CableApcExtension - components: - - pos: -27.5,31.5 - parent: 0 - type: Transform -- uid: 4266 - type: CableApcExtension - components: - - pos: -26.5,31.5 - parent: 0 - type: Transform -- uid: 4267 - type: CableApcExtension - components: - - pos: -25.5,31.5 - parent: 0 - type: Transform -- uid: 4268 - type: CableApcExtension - components: - - pos: -24.5,31.5 - parent: 0 - type: Transform -- uid: 4269 - type: CableApcExtension - components: - - pos: -23.5,31.5 - parent: 0 - type: Transform -- uid: 4270 - type: CableApcExtension - components: - - pos: -24.5,30.5 - parent: 0 - type: Transform -- uid: 4271 - type: CableApcExtension - components: - - pos: -24.5,29.5 - parent: 0 - type: Transform -- uid: 4272 - type: CableApcExtension - components: - - pos: -24.5,28.5 - parent: 0 - type: Transform -- uid: 4273 - type: CableApcExtension - components: - - pos: -25.5,28.5 - parent: 0 - type: Transform -- uid: 4274 - type: CableApcExtension - components: - - pos: -26.5,28.5 - parent: 0 - type: Transform -- uid: 4275 - type: CableApcExtension - components: - - pos: -27.5,28.5 - parent: 0 - type: Transform -- uid: 4276 - type: CableApcExtension - components: - - pos: -28.5,28.5 - parent: 0 - type: Transform -- uid: 4277 - type: CableApcExtension - components: - - pos: -28.5,29.5 - parent: 0 - type: Transform -- uid: 4278 - type: CableApcExtension - components: - - pos: -28.5,30.5 - parent: 0 - type: Transform -- uid: 4279 - type: CableApcExtension - components: - - pos: -31.5,25.5 - parent: 0 - type: Transform -- uid: 4280 - type: CableApcExtension - components: - - pos: -30.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4281 - type: CableApcExtension - components: - - pos: -29.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4282 - type: CableApcExtension - components: - - pos: -28.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4283 - type: CableApcExtension - components: - - pos: -27.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4284 - type: CableApcExtension - components: - - pos: -27.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4285 - type: CableApcExtension - components: - - pos: -27.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4286 - type: CableApcExtension - components: - - pos: -29.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4287 - type: CableApcExtension - components: - - pos: -29.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4288 - type: CableApcExtension - components: - - pos: -29.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4289 - type: CableApcExtension - components: - - pos: -30.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4290 - type: DisposalUnit - components: - - pos: -37.5,30.5 - parent: 0 - type: Transform -- uid: 4291 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -37.5,30.5 - parent: 0 - type: Transform -- uid: 4292 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,31.5 - parent: 0 - type: Transform -- uid: 4293 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,32.5 - parent: 0 - type: Transform -- uid: 4294 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,33.5 - parent: 0 - type: Transform -- uid: 4295 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,34.5 - parent: 0 - type: Transform -- uid: 4296 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,35.5 - parent: 0 - type: Transform -- uid: 4297 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,36.5 - parent: 0 - type: Transform -- uid: 4298 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,37.5 - parent: 0 - type: Transform -- uid: 4299 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -37.5,38.5 - parent: 0 - type: Transform -- uid: 4300 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -36.5,39.5 - parent: 0 - type: Transform -- uid: 4301 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -35.5,39.5 - parent: 0 - type: Transform -- uid: 4302 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -34.5,39.5 - parent: 0 - type: Transform -- uid: 4303 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -33.5,39.5 - parent: 0 - type: Transform -- uid: 4304 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -32.5,39.5 - parent: 0 - type: Transform -- uid: 4305 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -37.5,39.5 - parent: 0 - type: Transform -- uid: 4306 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -31.5,39.5 - parent: 0 - type: Transform -- uid: 4307 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -31.5,40.5 - parent: 0 - type: Transform -- uid: 4308 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,41.5 - parent: 0 - type: Transform -- uid: 4309 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,42.5 - parent: 0 - type: Transform -- uid: 4310 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,43.5 - parent: 0 - type: Transform -- uid: 4311 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,44.5 - parent: 0 - type: Transform -- uid: 4312 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -31.5,45.5 - parent: 0 - type: Transform -- uid: 4313 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,45.5 - parent: 0 - type: Transform -- uid: 4314 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,45.5 - parent: 0 - type: Transform -- uid: 4315 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,45.5 - parent: 0 - type: Transform -- uid: 4316 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,45.5 - parent: 0 - type: Transform -- uid: 4317 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -26.5,45.5 - parent: 0 - type: Transform -- uid: 4318 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,45.5 - parent: 0 - type: Transform -- uid: 4319 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -24.5,45.5 - parent: 0 - type: Transform -- uid: 4320 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,45.5 - parent: 0 - type: Transform -- uid: 4321 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,45.5 - parent: 0 - type: Transform -- uid: 4322 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,45.5 - parent: 0 - type: Transform -- uid: 4323 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,45.5 - parent: 0 - type: Transform -- uid: 4324 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,45.5 - parent: 0 - type: Transform -- uid: 4325 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,45.5 - parent: 0 - type: Transform -- uid: 4326 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,45.5 - parent: 0 - type: Transform -- uid: 4327 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,45.5 - parent: 0 - type: Transform -- uid: 4328 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,45.5 - parent: 0 - type: Transform -- uid: 4329 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,45.5 - parent: 0 - type: Transform -- uid: 4330 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,45.5 - parent: 0 - type: Transform -- uid: 4331 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,45.5 - parent: 0 - type: Transform -- uid: 4332 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,45.5 - parent: 0 - type: Transform -- uid: 4333 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,45.5 - parent: 0 - type: Transform -- uid: 4334 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,45.5 - parent: 0 - type: Transform -- uid: 4335 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,45.5 - parent: 0 - type: Transform -- uid: 4336 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,45.5 - parent: 0 - type: Transform -- uid: 4337 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,45.5 - parent: 0 - type: Transform -- uid: 4338 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,45.5 - parent: 0 - type: Transform -- uid: 4339 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -4.5,45.5 - parent: 0 - type: Transform -- uid: 4340 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,45.5 - parent: 0 - type: Transform -- uid: 4341 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,45.5 - parent: 0 - type: Transform -- uid: 4342 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,45.5 - parent: 0 - type: Transform -- uid: 4343 - type: DisposalBend - components: - - pos: -0.5,45.5 - parent: 0 - type: Transform -- uid: 4344 - type: DisposalPipe - components: - - pos: -0.5,39.5 - parent: 0 - type: Transform -- uid: 4345 - type: DisposalPipe - components: - - pos: -0.5,40.5 - parent: 0 - type: Transform -- uid: 4346 - type: DisposalPipe - components: - - pos: -0.5,41.5 - parent: 0 - type: Transform -- uid: 4347 - type: DisposalPipe - components: - - pos: -0.5,42.5 - parent: 0 - type: Transform -- uid: 4348 - type: DisposalPipe - components: - - pos: -0.5,43.5 - parent: 0 - type: Transform -- uid: 4349 - type: DisposalPipe - components: - - pos: -0.5,44.5 - parent: 0 - type: Transform -- uid: 4350 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -31.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4351 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -36.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4352 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -37.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4353 - type: GasPipeBend - components: - - pos: -28.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4354 - type: GasPipeBend - components: - - pos: -27.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4355 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -28.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4356 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -36.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4357 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -37.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4358 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -28.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4359 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4360 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4361 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4362 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4363 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4364 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4365 - type: GasPipeTJunction - components: - - pos: -30.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4366 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4367 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4368 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4369 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4370 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -36.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4371 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4372 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4373 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4374 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4375 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4376 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4377 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4378 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4379 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4380 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4381 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4382 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4383 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4384 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4385 - type: GasPipeStraight - components: - - pos: -37.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4386 - type: GasPipeStraight - components: - - pos: -37.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4387 - type: CableMV - components: - - pos: -27.5,33.5 - parent: 0 - type: Transform -- uid: 4388 - type: GasPipeStraight - components: - - pos: -37.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4389 - type: GasPipeStraight - components: - - pos: -37.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4390 - type: GasPipeStraight - components: - - pos: -37.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4391 - type: GasPipeStraight - components: - - pos: -37.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4392 - type: GasPipeStraight - components: - - pos: -37.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4393 - type: GasPipeStraight - components: - - pos: -37.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4394 - type: GasPipeStraight - components: - - pos: -36.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4395 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -27.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4396 - type: GasPipeStraight - components: - - pos: -36.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4397 - type: GasPipeStraight - components: - - pos: -36.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4398 - type: GasPipeStraight - components: - - pos: -36.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4399 - type: GasPipeStraight - components: - - pos: -36.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4400 - type: GasPipeStraight - components: - - pos: -36.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4401 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4402 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4403 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4404 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4405 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4406 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4407 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4408 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -28.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4409 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4410 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4411 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4412 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4413 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -27.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4414 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4415 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4416 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4417 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4418 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4419 - type: GasPipeTJunction - components: - - pos: -34.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4420 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4421 - type: GasPipeStraight - components: - - pos: -19.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4422 - type: GasPipeStraight - components: - - pos: -19.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4423 - type: GasPipeStraight - components: - - pos: -19.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4424 - type: GasPipeStraight - components: - - pos: -19.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4425 - type: GasPipeStraight - components: - - pos: -19.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4426 - type: GasPipeStraight - components: - - pos: -19.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4427 - type: GasPipeStraight - components: - - pos: -19.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4428 - type: GasPipeTJunction - components: - - pos: -24.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4429 - type: GasPipeStraight - components: - - pos: -19.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4430 - type: GasPipeStraight - components: - - pos: -19.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4431 - type: GasPipeStraight - components: - - pos: -19.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4432 - type: GasPipeStraight - components: - - pos: -19.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4433 - type: GasPipeStraight - components: - - pos: -19.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4434 - type: GasPipeStraight - components: - - pos: -19.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4435 - type: GasPipeStraight - components: - - pos: -19.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4436 - type: GasPipeStraight - components: - - pos: -19.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4437 - type: GasPipeStraight - components: - - pos: -19.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4438 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4439 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4440 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4441 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4442 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4443 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4444 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4445 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4446 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4447 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4448 - type: GasPipeTJunction - components: - - pos: -29.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4449 - type: GasPipeStraight - components: - - pos: -30.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4450 - type: GasPipeStraight - components: - - pos: -30.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4451 - type: GasPipeStraight - components: - - pos: -30.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4452 - type: GasPipeStraight - components: - - pos: -30.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4453 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -21.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4454 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -30.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4455 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -21.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4456 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -19.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4457 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4458 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4459 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -33.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4460 - type: GasPipeStraight - components: - - pos: -34.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4461 - type: GasPipeStraight - components: - - pos: -34.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4462 - type: GasPipeStraight - components: - - pos: -34.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4463 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -34.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4464 - type: GasPipeStraight - components: - - pos: -24.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4465 - type: GasPipeStraight - components: - - pos: -24.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4466 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4467 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4468 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -22.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4469 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -24.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4470 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -26.5,41.5 - parent: 0 - type: Transform -- uid: 4471 - type: CableMV - components: - - pos: -27.5,37.5 - parent: 0 - type: Transform -- uid: 4472 - type: CableMV - components: - - pos: -27.5,38.5 - parent: 0 - type: Transform -- uid: 4473 - type: CableMV - components: - - pos: -27.5,39.5 - parent: 0 - type: Transform -- uid: 4474 - type: CableMV - components: - - pos: -27.5,40.5 - parent: 0 - type: Transform -- uid: 4475 - type: CableMV - components: - - pos: -27.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4476 - type: CableMV - components: - - pos: -26.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4477 - type: CableApcExtension - components: - - pos: -26.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4478 - type: CableApcExtension - components: - - pos: -25.5,41.5 - parent: 0 - type: Transform -- uid: 4479 - type: CableApcExtension - components: - - pos: -24.5,41.5 - parent: 0 - type: Transform -- uid: 4480 - type: CableApcExtension - components: - - pos: -23.5,41.5 - parent: 0 - type: Transform -- uid: 4481 - type: CableApcExtension - components: - - pos: -22.5,41.5 - parent: 0 - type: Transform -- uid: 4482 - type: CableApcExtension - components: - - pos: -24.5,40.5 - parent: 0 - type: Transform -- uid: 4483 - type: CableApcExtension - components: - - pos: -24.5,39.5 - parent: 0 - type: Transform -- uid: 4484 - type: CableApcExtension - components: - - pos: -24.5,38.5 - parent: 0 - type: Transform -- uid: 4485 - type: CableApcExtension - components: - - pos: -22.5,42.5 - parent: 0 - type: Transform -- uid: 4486 - type: CableApcExtension - components: - - pos: -22.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4487 - type: CableApcExtension - components: - - pos: -21.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4488 - type: CableMV - components: - - pos: -26.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4489 - type: CableMV - components: - - pos: -26.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4490 - type: CableMV - components: - - pos: -26.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4491 - type: CableApcExtension - components: - - pos: -23.5,38.5 - parent: 0 - type: Transform -- uid: 4492 - type: CableApcExtension - components: - - pos: -22.5,38.5 - parent: 0 - type: Transform -- uid: 4493 - type: CableApcExtension - components: - - pos: -21.5,38.5 - parent: 0 - type: Transform -- uid: 4494 - type: CableApcExtension - components: - - pos: -20.5,38.5 - parent: 0 - type: Transform -- uid: 4495 - type: CableApcExtension - components: - - pos: -19.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4496 - type: CableApcExtension - components: - - pos: -19.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4497 - type: CableApcExtension - components: - - pos: -19.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4498 - type: CableApcExtension - components: - - pos: -19.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4499 - type: CableApcExtension - components: - - pos: -19.5,42.5 - parent: 0 - type: Transform -- uid: 4500 - type: CableApcExtension - components: - - pos: -19.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4501 - type: CableApcExtension - components: - - pos: -19.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4502 - type: CableApcExtension - components: - - pos: -19.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4503 - type: CableApcExtension - components: - - pos: -19.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4504 - type: CableApcExtension - components: - - pos: -20.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4505 - type: CableApcExtension - components: - - pos: -21.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4506 - type: CableApcExtension - components: - - pos: -22.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4507 - type: CableApcExtension - components: - - pos: -23.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4508 - type: DisposalUnit - components: - - pos: -23.5,39.5 - parent: 0 - type: Transform -- uid: 4509 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -23.5,39.5 - parent: 0 - type: Transform -- uid: 4510 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -24.5,39.5 - parent: 0 - type: Transform -- uid: 4511 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,40.5 - parent: 0 - type: Transform -- uid: 4512 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,41.5 - parent: 0 - type: Transform -- uid: 4513 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,42.5 - parent: 0 - type: Transform -- uid: 4514 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,43.5 - parent: 0 - type: Transform -- uid: 4515 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,44.5 - parent: 0 - type: Transform -- uid: 4516 - type: SignSecurity - components: - - pos: -26.5,43.5 - parent: 0 - type: Transform -- uid: 4517 - type: SignSecurity - components: - - pos: -20.5,43.5 - parent: 0 - type: Transform -- uid: 4518 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -26.5,38.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4523 - type: SignalReceiver -- uid: 4519 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -26.5,39.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4523 - type: SignalReceiver -- uid: 4520 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -26.5,40.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4523 - type: SignalReceiver -- uid: 4521 - type: ShuttersNormalOpen - components: - - pos: -22.5,43.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4523 - type: SignalReceiver -- uid: 4522 - type: ShuttersNormalOpen - components: - - pos: -21.5,43.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4523 - type: SignalReceiver -- uid: 4523 - type: SignalButton - components: - - pos: -25.5,36.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4518 - - port: Toggle - uid: 4519 - - port: Toggle - uid: 4520 - - port: Toggle - uid: 4521 - - port: Toggle - uid: 4522 - type: SignalTransmitter -- uid: 4524 - type: AirlockSecurityLocked - components: - - pos: -24.5,43.5 - parent: 0 - type: Transform -- uid: 4525 - type: AirlockMaintSecLocked - components: - - pos: -20.5,38.5 - parent: 0 - type: Transform -- uid: 4526 - type: TableWood - components: - - pos: -23.5,40.5 - parent: 0 - type: Transform -- uid: 4527 - type: TableWood - components: - - pos: -23.5,41.5 - parent: 0 - type: Transform -- uid: 4528 - type: TableWood - components: - - pos: -23.5,42.5 - parent: 0 - type: Transform -- uid: 4529 - type: TableWood - components: - - pos: -25.5,42.5 - parent: 0 - type: Transform -- uid: 4530 - type: TableWood - components: - - pos: -21.5,37.5 - parent: 0 - type: Transform -- uid: 4531 - type: LockerDetectiveFilled - components: - - pos: -25.5,37.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4532 - type: VendingMachineDetDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -22.5,37.5 - parent: 0 - type: Transform -- uid: 4533 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -22.5,41.5 - parent: 0 - type: Transform -- uid: 4534 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -25.5,39.5 - parent: 0 - type: Transform -- uid: 4535 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -25.5,40.5 - parent: 0 - type: Transform -- uid: 4536 - type: TableWood - components: - - pos: -21.5,39.5 - parent: 0 - type: Transform -- uid: 4537 - type: ComputerCrewMonitoring - components: - - rot: -1.5707963267948966 rad - pos: -21.5,41.5 - parent: 0 - type: Transform -- uid: 4538 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: -21.5,42.5 - parent: 0 - type: Transform -- uid: 4539 - type: filingCabinetRandom - components: - - pos: -21.5,40.5 - parent: 0 - type: Transform -- uid: 4540 - type: FaxMachineBase - components: - - pos: -21.5,37.5 - parent: 0 - type: Transform - - name: Detective's Office - type: FaxMachine -- uid: 4541 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -23.5,36.5 - parent: 0 - type: Transform - - devices: - - 4468 - - 4469 - type: DeviceList -- uid: 4542 - type: PottedPlant13 - components: - - pos: -24.515121,37.198967 - parent: 0 - type: Transform -- uid: 4543 - type: PottedPlant5 - components: - - pos: -25.499496,41.198967 - parent: 0 - type: Transform -- uid: 4544 - type: CarpetGreen - components: - - pos: -22.5,39.5 - parent: 0 - type: Transform -- uid: 4545 - type: CarpetGreen - components: - - pos: -22.5,40.5 - parent: 0 - type: Transform -- uid: 4546 - type: CarpetGreen - components: - - pos: -22.5,41.5 - parent: 0 - type: Transform -- uid: 4547 - type: CarpetGreen - components: - - pos: -22.5,42.5 - parent: 0 - type: Transform -- uid: 4548 - type: CarpetGreen - components: - - pos: -21.5,39.5 - parent: 0 - type: Transform -- uid: 4549 - type: CarpetGreen - components: - - pos: -21.5,40.5 - parent: 0 - type: Transform -- uid: 4550 - type: CarpetGreen - components: - - pos: -21.5,41.5 - parent: 0 - type: Transform -- uid: 4551 - type: CarpetGreen - components: - - pos: -21.5,42.5 - parent: 0 - type: Transform -- uid: 4552 - type: CarpetGreen - components: - - pos: -23.5,40.5 - parent: 0 - type: Transform -- uid: 4553 - type: CarpetGreen - components: - - pos: -23.5,41.5 - parent: 0 - type: Transform -- uid: 4554 - type: CarpetGreen - components: - - pos: -23.5,42.5 - parent: 0 - type: Transform -- uid: 4555 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4556 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -23.5,37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4557 - type: LampGold - components: - - pos: -23.45641,42.886467 - parent: 0 - type: Transform -- uid: 4558 - type: DrinkDetFlask - components: - - pos: -23.378284,42.308342 - parent: 0 - type: Transform -- uid: 4559 - type: ClothingEyesGlassesSecurity - components: - - pos: -23.503284,41.995842 - parent: 0 - type: Transform -- uid: 4560 - type: DrinkWhiskeyBottleFull - components: - - pos: -25.628284,42.902092 - parent: 0 - type: Transform -- uid: 4561 - type: DrinkShotGlass - components: - - pos: -25.30016,42.589592 - parent: 0 - type: Transform -- uid: 4562 - type: DrinkShotGlass - components: - - pos: -25.503284,42.511467 - parent: 0 - type: Transform -- uid: 4563 - type: BookEscalationSecurity - components: - - pos: -23.48766,40.683342 - parent: 0 - type: Transform -- uid: 4564 - type: BookDetective - components: - - pos: -21.503284,39.558342 - parent: 0 - type: Transform -- uid: 4565 - type: CigarGold - components: - - pos: -23.472034,41.402092 - parent: 0 - type: Transform -- uid: 4566 - type: Cigar - components: - - pos: -23.39391,41.261467 - parent: 0 - type: Transform -- uid: 4567 - type: CigarSpent - components: - - pos: -23.315784,41.777092 - parent: 0 - type: Transform -- uid: 4568 - type: Flash - components: - - pos: -21.440784,39.480217 - parent: 0 - type: Transform -- uid: 4569 - type: Handcuffs - components: - - pos: -21.534534,39.511467 - parent: 0 - type: Transform -- uid: 4570 - type: IntercomSecurity - components: - - rot: 3.141592653589793 rad - pos: -24.5,36.5 - parent: 0 - type: Transform -- uid: 4571 - type: WallmountTelescreen - components: - - rot: -1.5707963267948966 rad - pos: -20.5,41.5 - parent: 0 - type: Transform -- uid: 4572 - type: Table - components: - - pos: -24.5,49.5 - parent: 0 - type: Transform -- uid: 4573 - type: ComfyChair - components: - - pos: -25.5,50.5 - parent: 0 - type: Transform -- uid: 4574 - type: ComfyChair - components: - - pos: -24.5,50.5 - parent: 0 - type: Transform -- uid: 4575 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -24.5,48.5 - parent: 0 - type: Transform -- uid: 4576 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -25.5,48.5 - parent: 0 - type: Transform -- uid: 4577 - type: BriefcaseBrown - components: - - pos: -25.53155,50.39053 - parent: 0 - type: Transform -- uid: 4578 - type: TableWood - components: - - pos: -28.5,49.5 - parent: 0 - type: Transform -- uid: 4579 - type: TableWood - components: - - pos: -28.5,50.5 - parent: 0 - type: Transform -- uid: 4580 - type: LampGold - components: - - pos: -28.515924,50.937405 - parent: 0 - type: Transform -- uid: 4581 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -28.422174,49.82803 - parent: 0 - type: Transform -- uid: 4582 - type: PottedPlant5 - components: - - pos: -28.5,48.5 - parent: 0 - type: Transform -- uid: 4583 - type: HospitalCurtainsOpen - components: - - pos: -27.5,47.5 - parent: 0 - type: Transform -- uid: 4584 - type: HospitalCurtainsOpen - components: - - pos: -26.5,47.5 - parent: 0 - type: Transform -- uid: 4585 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -23.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4586 - type: GasVentScrubber - components: - - pos: -22.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4587 - type: AirAlarm - components: - - pos: -20.5,47.5 - parent: 0 - type: Transform - - devices: - - 4586 - - 4585 - - 4588 - - 3951 - - 3952 - - 3953 - - 1811 - - 1812 - - 1813 - type: DeviceList -- uid: 4588 - type: AirSensor - components: - - pos: -21.5,45.5 - parent: 0 - type: Transform -- uid: 4589 - type: FireAlarm - components: - - pos: -22.5,47.5 - parent: 0 - type: Transform - - devices: - - 4588 - - 3951 - - 3952 - - 3953 - - 1811 - - 1812 - - 1813 - type: DeviceList -- uid: 4590 - type: ClosetEmergencyFilledRandom - components: - - pos: -18.5,43.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4591 - type: ClosetFireFilled - components: - - pos: -17.5,43.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4592 - type: ExtinguisherCabinetFilled - components: - - pos: -23.5,47.5 - parent: 0 - type: Transform -- uid: 4593 - type: PosterLegitObey - components: - - pos: -37.5,51.5 - parent: 0 - type: Transform -- uid: 4594 - type: ClosetL3SecurityFilled - components: - - pos: -37.5,50.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4595 - type: ComputerCriminalRecords - components: - - rot: 1.5707963267948966 rad - pos: -37.5,48.5 - parent: 0 - type: Transform -- uid: 4596 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 3.141592653589793 rad - pos: -35.5,47.5 - parent: 0 - type: Transform -- uid: 4597 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -37.5,47.5 - parent: 0 - type: Transform -- uid: 4598 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -35.5,49.5 - parent: 0 - type: Transform -- uid: 4599 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -35.5,50.5 - parent: 0 - type: Transform -- uid: 4600 - type: LockerEvidence - components: - - pos: -37.5,44.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4601 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -37.5,45.5 - parent: 0 - type: Transform -- uid: 4602 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -34.5,48.5 - parent: 0 - type: Transform -- uid: 4603 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: -34.5,48.5 - parent: 0 - type: Transform -- uid: 4604 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: -31.5,41.5 - parent: 0 - type: Transform -- uid: 4605 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: -32.5,41.5 - parent: 0 - type: Transform -- uid: 4606 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -34.5,48.5 - parent: 0 - type: Transform -- uid: 4607 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -35.5,45.5 - parent: 0 - type: Transform -- uid: 4608 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -35.5,42.5 - parent: 0 - type: Transform -- uid: 4609 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -35.5,43.5 - parent: 0 - type: Transform -- uid: 4610 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -35.5,44.5 - parent: 0 - type: Transform -- uid: 4611 - type: PottedPlant4 - components: - - pos: -37.5,43.5 - parent: 0 - type: Transform -- uid: 4612 - type: Flash - components: - - pos: -37.495537,45.401833 - parent: 0 - type: Transform -- uid: 4613 - type: WeaponCapacitorRecharger - components: - - pos: -35.5,49.5 - parent: 0 - type: Transform -- uid: 4614 - type: BoxFolderRed - components: - - pos: -35.49609,50.3505 - parent: 0 - type: Transform -- uid: 4615 - type: PottedPlant17 - components: - - pos: -36.5,50.5 - parent: 0 - type: Transform -- uid: 4616 - type: filingCabinetRandom - components: - - pos: -37.5,49.5 - parent: 0 - type: Transform -- uid: 4617 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -35.5,48.5 - parent: 0 - type: Transform -- uid: 4618 - type: APCBasic - components: - - pos: -36.5,51.5 - parent: 0 - type: Transform -- uid: 4619 - type: CableMV - components: - - pos: -28.5,40.5 - parent: 0 - type: Transform -- uid: 4620 - type: CableMV - components: - - pos: -29.5,40.5 - parent: 0 - type: Transform -- uid: 4621 - type: CableMV - components: - - pos: -30.5,40.5 - parent: 0 - type: Transform -- uid: 4622 - type: CableMV - components: - - pos: -31.5,40.5 - parent: 0 - type: Transform -- uid: 4623 - type: CableMV - components: - - pos: -32.5,40.5 - parent: 0 - type: Transform -- uid: 4624 - type: CableMV - components: - - pos: -33.5,40.5 - parent: 0 - type: Transform -- uid: 4625 - type: CableMV - components: - - pos: -34.5,40.5 - parent: 0 - type: Transform -- uid: 4626 - type: CableMV - components: - - pos: -35.5,40.5 - parent: 0 - type: Transform -- uid: 4627 - type: CableMV - components: - - pos: -36.5,40.5 - parent: 0 - type: Transform -- uid: 4628 - type: CableMV - components: - - pos: -36.5,41.5 - parent: 0 - type: Transform -- uid: 4629 - type: CableMV - components: - - pos: -35.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4630 - type: CableMV - components: - - pos: -37.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4631 - type: CableMV - components: - - pos: -36.5,42.5 - parent: 0 - type: Transform -- uid: 4632 - type: CableMV - components: - - pos: -36.5,43.5 - parent: 0 - type: Transform -- uid: 4633 - type: CableMV - components: - - pos: -36.5,44.5 - parent: 0 - type: Transform -- uid: 4634 - type: CableMV - components: - - pos: -36.5,45.5 - parent: 0 - type: Transform -- uid: 4635 - type: CableMV - components: - - pos: -36.5,46.5 - parent: 0 - type: Transform -- uid: 4636 - type: CableMV - components: - - pos: -36.5,47.5 - parent: 0 - type: Transform -- uid: 4637 - type: CableMV - components: - - pos: -36.5,48.5 - parent: 0 - type: Transform -- uid: 4638 - type: CableMV - components: - - pos: -36.5,49.5 - parent: 0 - type: Transform -- uid: 4639 - type: CableMV - components: - - pos: -36.5,50.5 - parent: 0 - type: Transform -- uid: 4640 - type: CableMV - components: - - pos: -36.5,51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4641 - type: CableMV - components: - - pos: -35.5,43.5 - parent: 0 - type: Transform -- uid: 4642 - type: CableMV - components: - - pos: -34.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4643 - type: CableMV - components: - - pos: -34.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4644 - type: CableMV - components: - - pos: -34.5,44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4645 - type: CableMV - components: - - pos: -35.5,48.5 - parent: 0 - type: Transform -- uid: 4646 - type: CableMV - components: - - pos: -34.5,48.5 - parent: 0 - type: Transform -- uid: 4647 - type: CableMV - components: - - pos: -34.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4648 - type: CableMV - components: - - pos: -34.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4649 - type: CableApcExtension - components: - - pos: -36.5,51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4650 - type: CableApcExtension - components: - - pos: -36.5,50.5 - parent: 0 - type: Transform -- uid: 4651 - type: CableApcExtension - components: - - pos: -36.5,49.5 - parent: 0 - type: Transform -- uid: 4652 - type: CableApcExtension - components: - - pos: -36.5,48.5 - parent: 0 - type: Transform -- uid: 4653 - type: CableApcExtension - components: - - pos: -36.5,47.5 - parent: 0 - type: Transform -- uid: 4654 - type: CableApcExtension - components: - - pos: -36.5,46.5 - parent: 0 - type: Transform -- uid: 4655 - type: CableApcExtension - components: - - pos: -36.5,45.5 - parent: 0 - type: Transform -- uid: 4656 - type: CableApcExtension - components: - - pos: -36.5,44.5 - parent: 0 - type: Transform -- uid: 4657 - type: CableApcExtension - components: - - pos: -36.5,43.5 - parent: 0 - type: Transform -- uid: 4658 - type: CableApcExtension - components: - - pos: -36.5,42.5 - parent: 0 - type: Transform -- uid: 4659 - type: CableApcExtension - components: - - pos: -37.5,42.5 - parent: 0 - type: Transform -- uid: 4660 - type: CableApcExtension - components: - - pos: -38.5,42.5 - parent: 0 - type: Transform -- uid: 4661 - type: CableApcExtension - components: - - pos: -39.5,42.5 - parent: 0 - type: Transform -- uid: 4662 - type: CableApcExtension - components: - - pos: -40.5,42.5 - parent: 0 - type: Transform -- uid: 4663 - type: Grille - components: - - pos: -38.5,43.5 - parent: 0 - type: Transform -- uid: 4664 - type: Catwalk - components: - - pos: -40.5,43.5 - parent: 0 - type: Transform -- uid: 4665 - type: Catwalk - components: - - pos: -39.5,43.5 - parent: 0 - type: Transform -- uid: 4666 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -36.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4667 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -28.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4668 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -37.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4669 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -27.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4670 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -25.5,30.5 - parent: 0 - type: Transform -- uid: 4671 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -25.5,31.5 - parent: 0 - type: Transform -- uid: 4672 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -25.5,32.5 - parent: 0 - type: Transform -- uid: 4673 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: -26.5,30.5 - parent: 0 - type: Transform -- uid: 4674 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: -26.5,31.5 - parent: 0 - type: Transform -- uid: 4675 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: -26.5,32.5 - parent: 0 - type: Transform -- uid: 4676 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -35.5,29.5 - parent: 0 - type: Transform - - devices: - - 4668 - - 4666 - - 4667 - - 4669 - type: DeviceList -- uid: 4677 - type: AirlockSecurityGlassLocked - components: - - pos: -36.5,41.5 - parent: 0 - type: Transform -- uid: 4678 - type: AirlockSecurityGlassLocked - components: - - pos: -36.5,46.5 - parent: 0 - type: Transform -- uid: 4679 - type: Poweredlight - components: - - pos: -36.5,50.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4680 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,44.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4681 - type: Poweredlight - components: - - pos: -34.5,40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4682 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4683 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4684 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4685 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -35.5,30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4686 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -40.5,32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4687 - type: PoweredSmallLight - components: - - pos: -40.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4688 - type: PoweredSmallLight - components: - - pos: -40.5,43.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4689 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -40.5,40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4690 - type: AirlockMaintLocked - components: - - pos: -30.5,29.5 - parent: 0 - type: Transform -- uid: 4691 - type: AirlockMaintLocked - components: - - name: Bathroom - type: MetaData - - pos: -31.5,25.5 - parent: 0 - type: Transform -- uid: 4692 - type: AirlockEngineeringLocked - components: - - pos: -27.5,24.5 - parent: 0 - type: Transform -- uid: 4693 - type: GasPipeStraight - components: - - pos: -29.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4694 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: -29.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4695 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -29.5,22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4696 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -29.5,21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4697 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -30.5,21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4698 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -30.5,22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4699 - type: AirCanister - components: - - pos: -30.5,21.5 - parent: 0 - type: Transform -- uid: 4700 - type: AirCanister - components: - - pos: -30.5,22.5 - parent: 0 - type: Transform -- uid: 4701 - type: AirlockAtmosphericsLocked - components: - - pos: -29.5,24.5 - parent: 0 - type: Transform -- uid: 4702 - type: Rack - components: - - pos: -30.5,23.5 - parent: 0 - type: Transform -- uid: 4703 - type: ClothingMaskGasAtmos - components: - - pos: -30.562286,23.558552 - parent: 0 - type: Transform -- uid: 4704 - type: WelderIndustrial - components: - - pos: -30.281036,23.449177 - parent: 0 - type: Transform -- uid: 4705 - type: Airlock - components: - - name: Bathroom - type: MetaData - - pos: -34.5,28.5 - parent: 0 - type: Transform -- uid: 4706 - type: Airlock - components: - - pos: -33.5,24.5 - parent: 0 - type: Transform -- uid: 4707 - type: Airlock - components: - - pos: -35.5,24.5 - parent: 0 - type: Transform -- uid: 4708 - type: Airlock - components: - - pos: -37.5,24.5 - parent: 0 - type: Transform -- uid: 4709 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -34.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4710 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4711 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4712 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4713 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4714 - type: Mirror - components: - - pos: -31.5,26.5 - parent: 0 - type: Transform -- uid: 4715 - type: Mirror - components: - - pos: -31.5,27.5 - parent: 0 - type: Transform -- uid: 4716 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -32.5,26.5 - parent: 0 - type: Transform -- uid: 4717 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -32.5,27.5 - parent: 0 - type: Transform -- uid: 4718 - type: Table - components: - - pos: -36.5,25.5 - parent: 0 - type: Transform -- uid: 4719 - type: MedkitFilled - components: - - pos: -36.5,25.5 - parent: 0 - type: Transform -- uid: 4720 - type: ToiletDirtyWater - components: - - rot: 3.141592653589793 rad - pos: -37.5,23.5 - parent: 0 - type: Transform -- uid: 4721 - type: ToiletDirtyWater - components: - - rot: 3.141592653589793 rad - pos: -35.5,23.5 - parent: 0 - type: Transform -- uid: 4722 - type: HospitalCurtainsOpen - components: - - pos: -32.5,23.5 - parent: 0 - type: Transform -- uid: 4723 - type: HospitalCurtainsOpen - components: - - pos: -32.5,22.5 - parent: 0 - type: Transform -- uid: 4724 - type: HospitalCurtainsOpen - components: - - pos: -32.5,21.5 - parent: 0 - type: Transform -- uid: 4725 - type: RandomSoap - components: - - pos: -32.5,22.5 - parent: 0 - type: Transform -- uid: 4726 - type: ComputerPowerMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -27.5,21.5 - parent: 0 - type: Transform -- uid: 4727 - type: CableHV - components: - - pos: -27.5,21.5 - parent: 0 - type: Transform -- uid: 4728 - type: SignElectricalMed - components: - - rot: 1.5707963267948966 rad - pos: -26.5,24.5 - parent: 0 - type: Transform -- uid: 4729 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -26.5,21.5 - parent: 0 - type: Transform -- uid: 4730 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4731 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4732 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -34.5,33.5 - parent: 0 - type: Transform -- uid: 4733 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -33.5,33.5 - parent: 0 - type: Transform -- uid: 4734 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -31.5,33.5 - parent: 0 - type: Transform -- uid: 4735 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -30.5,33.5 - parent: 0 - type: Transform -- uid: 4736 - type: WindowReinforcedDirectional - components: - - pos: -30.5,33.5 - parent: 0 - type: Transform -- uid: 4737 - type: WindowReinforcedDirectional - components: - - pos: -31.5,33.5 - parent: 0 - type: Transform -- uid: 4738 - type: WindowReinforcedDirectional - components: - - pos: -33.5,33.5 - parent: 0 - type: Transform -- uid: 4739 - type: WindowReinforcedDirectional - components: - - pos: -34.5,33.5 - parent: 0 - type: Transform -- uid: 4740 - type: WindowReinforcedDirectional - components: - - pos: -34.5,37.5 - parent: 0 - type: Transform -- uid: 4741 - type: WindowReinforcedDirectional - components: - - pos: -33.5,37.5 - parent: 0 - type: Transform -- uid: 4742 - type: WindowReinforcedDirectional - components: - - pos: -31.5,37.5 - parent: 0 - type: Transform -- uid: 4743 - type: WindowReinforcedDirectional - components: - - pos: -30.5,37.5 - parent: 0 - type: Transform -- uid: 4744 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -30.5,37.5 - parent: 0 - type: Transform -- uid: 4745 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -31.5,37.5 - parent: 0 - type: Transform -- uid: 4746 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -33.5,37.5 - parent: 0 - type: Transform -- uid: 4747 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -34.5,37.5 - parent: 0 - type: Transform -- uid: 4748 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -25.5,30.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4751 - type: SignalReceiver -- uid: 4749 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -25.5,31.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4751 - type: SignalReceiver -- uid: 4750 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -25.5,32.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4751 - type: SignalReceiver -- uid: 4751 - type: SignalButton - components: - - pos: -22.5,29.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4748 - - port: Toggle - uid: 4749 - - port: Toggle - uid: 4750 - type: SignalTransmitter -- uid: 4752 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4753 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4754 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4755 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4756 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4757 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4758 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4759 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -23.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4760 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -23.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4761 - type: AirlockServiceLocked - components: - - name: Evac Service - type: MetaData - - rot: -1.5707963267948966 rad - pos: -28.5,29.5 - parent: 0 - type: Transform -- uid: 4762 - type: WindoorServiceLocked - components: - - rot: 3.141592653589793 rad - pos: -24.5,29.5 - parent: 0 - type: Transform -- uid: 4763 - type: SinkWide - components: - - pos: -24.5,32.5 - parent: 0 - type: Transform -- uid: 4764 - type: Table - components: - - pos: -23.5,32.5 - parent: 0 - type: Transform -- uid: 4765 - type: Table - components: - - pos: -22.5,32.5 - parent: 0 - type: Transform -- uid: 4766 - type: KitchenMicrowave - components: - - pos: -23.5,32.5 - parent: 0 - type: Transform -- uid: 4767 - type: KitchenReagentGrinder - components: - - pos: -22.5,32.5 - parent: 0 - type: Transform -- uid: 4768 - type: Table - components: - - pos: -22.5,30.5 - parent: 0 - type: Transform -- uid: 4769 - type: Table - components: - - pos: -23.5,30.5 - parent: 0 - type: Transform -- uid: 4770 - type: DisposalUnit - components: - - pos: -25.5,27.5 - parent: 0 - type: Transform -- uid: 4771 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -25.5,27.5 - parent: 0 - type: Transform -- uid: 4772 - type: DisposalBend - components: - - pos: -25.5,28.5 - parent: 0 - type: Transform -- uid: 4773 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -28.5,28.5 - parent: 0 - type: Transform -- uid: 4774 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -28.5,29.5 - parent: 0 - type: Transform -- uid: 4775 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -28.5,30.5 - parent: 0 - type: Transform -- uid: 4776 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -28.5,31.5 - parent: 0 - type: Transform -- uid: 4777 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -28.5,32.5 - parent: 0 - type: Transform -- uid: 4778 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -28.5,33.5 - parent: 0 - type: Transform -- uid: 4779 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -28.5,34.5 - parent: 0 - type: Transform -- uid: 4780 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -28.5,35.5 - parent: 0 - type: Transform -- uid: 4781 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -28.5,36.5 - parent: 0 - type: Transform -- uid: 4782 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -28.5,37.5 - parent: 0 - type: Transform -- uid: 4783 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -28.5,38.5 - parent: 0 - type: Transform -- uid: 4784 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -28.5,39.5 - parent: 0 - type: Transform -- uid: 4785 - type: DisposalBend - components: - - pos: -28.5,40.5 - parent: 0 - type: Transform -- uid: 4786 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,40.5 - parent: 0 - type: Transform -- uid: 4787 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,40.5 - parent: 0 - type: Transform -- uid: 4788 - type: Rack - components: - - pos: -23.5,27.5 - parent: 0 - type: Transform -- uid: 4789 - type: ClosetChefFilled - components: - - pos: -24.5,27.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4790 - type: LockerFreezer - components: - - pos: -28.5,27.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 4791 - type: ContainerContainer -- uid: 4791 - type: FoodButter - components: - - flags: InContainer - type: MetaData - - parent: 4790 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 4792 - type: KitchenKnife - components: - - pos: -23.460987,27.516056 - parent: 0 - type: Transform -- uid: 4793 - type: Table - components: - - pos: -27.5,27.5 - parent: 0 - type: Transform -- uid: 4794 - type: PottedPlant8 - components: - - pos: -26.507862,27.219181 - parent: 0 - type: Transform -- uid: 4795 - type: PoweredSmallLight - components: - - pos: -26.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4796 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4797 - type: BoozeDispenser - components: - - rot: -1.5707963267948966 rad - pos: -22.5,30.5 - parent: 0 - type: Transform -- uid: 4798 - type: DrinkShaker - components: - - pos: -23.084518,30.597218 - parent: 0 - type: Transform -- uid: 4799 - type: DrinkGlass - components: - - pos: -23.506393,30.628468 - parent: 0 - type: Transform -- uid: 4800 - type: DrinkGlass - components: - - pos: -23.350143,30.534718 - parent: 0 - type: Transform -- uid: 4801 - type: DrinkGlass - components: - - pos: -23.522018,30.440968 - parent: 0 - type: Transform -- uid: 4802 - type: FirelockGlass - components: - - pos: -25.5,30.5 - parent: 0 - type: Transform -- uid: 4803 - type: FirelockGlass - components: - - pos: -25.5,31.5 - parent: 0 - type: Transform -- uid: 4804 - type: FirelockGlass - components: - - pos: -25.5,32.5 - parent: 0 - type: Transform -- uid: 4805 - type: BarSignZocalo - components: - - pos: -23.5,33.5 - parent: 0 - type: Transform -- uid: 4806 - type: SignElectricalMed - components: - - pos: -21.5,35.5 - parent: 0 - type: Transform -- uid: 4807 - type: LockerElectricalSuppliesFilled - components: - - pos: -24.5,35.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4808 - type: CrateEngineeringCableLV - components: - - pos: -22.5,35.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4809 - type: Catwalk - components: - - pos: -23.5,34.5 - parent: 0 - type: Transform -- uid: 4810 - type: Catwalk - components: - - pos: -22.5,34.5 - parent: 0 - type: Transform -- uid: 4811 - type: Catwalk - components: - - pos: -27.5,23.5 - parent: 0 - type: Transform -- uid: 4812 - type: AirlockMaintLocked - components: - - pos: -19.5,42.5 - parent: 0 - type: Transform -- uid: 4813 - type: Catwalk - components: - - pos: -19.5,41.5 - parent: 0 - type: Transform -- uid: 4814 - type: Catwalk - components: - - pos: -19.5,40.5 - parent: 0 - type: Transform -- uid: 4815 - type: Catwalk - components: - - pos: -19.5,39.5 - parent: 0 - type: Transform -- uid: 4816 - type: Catwalk - components: - - pos: -19.5,38.5 - parent: 0 - type: Transform -- uid: 4817 - type: Catwalk - components: - - pos: -19.5,37.5 - parent: 0 - type: Transform -- uid: 4818 - type: Catwalk - components: - - pos: -19.5,36.5 - parent: 0 - type: Transform -- uid: 4819 - type: Catwalk - components: - - pos: -19.5,35.5 - parent: 0 - type: Transform -- uid: 4820 - type: Catwalk - components: - - pos: -19.5,34.5 - parent: 0 - type: Transform -- uid: 4821 - type: Catwalk - components: - - pos: -19.5,33.5 - parent: 0 - type: Transform -- uid: 4822 - type: Catwalk - components: - - pos: -19.5,32.5 - parent: 0 - type: Transform -- uid: 4823 - type: Catwalk - components: - - pos: -19.5,31.5 - parent: 0 - type: Transform -- uid: 4824 - type: Catwalk - components: - - pos: -19.5,30.5 - parent: 0 - type: Transform -- uid: 4825 - type: Catwalk - components: - - pos: -18.5,32.5 - parent: 0 - type: Transform -- uid: 4826 - type: Catwalk - components: - - pos: -18.5,38.5 - parent: 0 - type: Transform -- uid: 4827 - type: Catwalk - components: - - pos: -19.5,29.5 - parent: 0 - type: Transform -- uid: 4828 - type: Catwalk - components: - - pos: -19.5,28.5 - parent: 0 - type: Transform -- uid: 4829 - type: Catwalk - components: - - pos: -20.5,28.5 - parent: 0 - type: Transform -- uid: 4830 - type: Catwalk - components: - - pos: -21.5,28.5 - parent: 0 - type: Transform -- uid: 4831 - type: Catwalk - components: - - pos: -21.5,27.5 - parent: 0 - type: Transform -- uid: 4832 - type: FirelockGlass - components: - - pos: -21.5,26.5 - parent: 0 - type: Transform -- uid: 4833 - type: Catwalk - components: - - pos: -21.5,25.5 - parent: 0 - type: Transform -- uid: 4834 - type: Catwalk - components: - - pos: -21.5,24.5 - parent: 0 - type: Transform -- uid: 4835 - type: Catwalk - components: - - pos: -22.5,24.5 - parent: 0 - type: Transform -- uid: 4836 - type: Catwalk - components: - - pos: -23.5,24.5 - parent: 0 - type: Transform -- uid: 4837 - type: Catwalk - components: - - pos: -23.5,25.5 - parent: 0 - type: Transform -- uid: 4838 - type: Catwalk - components: - - pos: -24.5,25.5 - parent: 0 - type: Transform -- uid: 4839 - type: Catwalk - components: - - pos: -25.5,25.5 - parent: 0 - type: Transform -- uid: 4840 - type: Catwalk - components: - - pos: -26.5,25.5 - parent: 0 - type: Transform -- uid: 4841 - type: Catwalk - components: - - pos: -27.5,25.5 - parent: 0 - type: Transform -- uid: 4842 - type: Catwalk - components: - - pos: -28.5,25.5 - parent: 0 - type: Transform -- uid: 4843 - type: Catwalk - components: - - pos: -29.5,25.5 - parent: 0 - type: Transform -- uid: 4844 - type: Catwalk - components: - - pos: -30.5,25.5 - parent: 0 - type: Transform -- uid: 4845 - type: Catwalk - components: - - pos: -30.5,26.5 - parent: 0 - type: Transform -- uid: 4846 - type: Catwalk - components: - - pos: -30.5,27.5 - parent: 0 - type: Transform -- uid: 4847 - type: Catwalk - components: - - pos: -30.5,28.5 - parent: 0 - type: Transform -- uid: 4848 - type: FirelockGlass - components: - - pos: -23.5,23.5 - parent: 0 - type: Transform -- uid: 4849 - type: Grille - components: - - pos: -35.5,14.5 - parent: 0 - type: Transform -- uid: 4850 - type: Grille - components: - - pos: -31.5,14.5 - parent: 0 - type: Transform -- uid: 4851 - type: Grille - components: - - pos: -30.5,14.5 - parent: 0 - type: Transform -- uid: 4852 - type: Grille - components: - - pos: -27.5,14.5 - parent: 0 - type: Transform -- uid: 4853 - type: GrilleBroken - components: - - pos: -26.5,14.5 - parent: 0 - type: Transform -- uid: 4854 - type: WaterCooler - components: - - pos: -27.5,19.5 - parent: 0 - type: Transform -- uid: 4855 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -26.5,18.5 - parent: 0 - type: Transform -- uid: 4856 - type: ClothingBeltHolster - components: - - pos: 36.5,-9.5 - parent: 0 - type: Transform -- uid: 4857 - type: ToySpawner - components: - - pos: 8.5,5.5 - parent: 0 - type: Transform -- uid: 4858 - type: WallSolidRust - components: - - pos: -24.5,11.5 - parent: 0 - type: Transform -- uid: 4859 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 4860 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 4861 - type: Catwalk - components: - - pos: -21.5,6.5 - parent: 0 - type: Transform -- uid: 4862 - type: Catwalk - components: - - pos: -21.5,7.5 - parent: 0 - type: Transform -- uid: 4863 - type: Catwalk - components: - - pos: -21.5,8.5 - parent: 0 - type: Transform -- uid: 4864 - type: Catwalk - components: - - pos: -21.5,9.5 - parent: 0 - type: Transform -- uid: 4865 - type: Catwalk - components: - - pos: -21.5,10.5 - parent: 0 - type: Transform -- uid: 4866 - type: FirelockGlass - components: - - pos: -21.5,11.5 - parent: 0 - type: Transform -- uid: 4867 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 4868 - type: Table - components: - - pos: -22.5,25.5 - parent: 0 - type: Transform -- uid: 4869 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 4870 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 4871 - type: ClothingShoesBootsJack - components: - - pos: -22.511332,25.611488 - parent: 0 - type: Transform -- uid: 4872 - type: ToolboxMechanicalFilled - components: - - pos: -20.525211,35.44958 - parent: 0 - type: Transform -- uid: 4873 - type: ClosetMaintenanceFilledRandom - components: - - pos: -20.5,29.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4874 - type: WeldingFuelTankFull - components: - - pos: -20.5,32.5 - parent: 0 - type: Transform -- uid: 4875 - type: WaterTankFull - components: - - pos: -20.5,33.5 - parent: 0 - type: Transform -- uid: 4876 - type: Rack - components: - - pos: -20.5,31.5 - parent: 0 - type: Transform -- uid: 4877 - type: MaintenanceFluffSpawner - components: - - pos: -20.5,31.5 - parent: 0 - type: Transform -- uid: 4878 - type: ClosetEmergencyFilledRandom - components: - - pos: -18.5,40.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4879 - type: ClosetFireFilled - components: - - pos: -18.5,39.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4880 - type: Rack - components: - - pos: -18.5,41.5 - parent: 0 - type: Transform -- uid: 4881 - type: ClothingHandsGlovesColorLightBrown - components: - - pos: -18.468145,41.512997 - parent: 0 - type: Transform -- uid: 4882 - type: RandomPosterAny - components: - - pos: -17.5,40.5 - parent: 0 - type: Transform -- uid: 4883 - type: RandomPosterAny - components: - - pos: -20.5,30.5 - parent: 0 - type: Transform -- uid: 4884 - type: RandomPosterAny - components: - - pos: -22.5,26.5 - parent: 0 - type: Transform -- uid: 4885 - type: RandomPosterAny - components: - - pos: -25.5,24.5 - parent: 0 - type: Transform -- uid: 4886 - type: ExtinguisherCabinetFilled - components: - - pos: -23.5,26.5 - parent: 0 - type: Transform -- uid: 4887 - type: ExtinguisherCabinetFilled - components: - - pos: -35.5,37.5 - parent: 0 - type: Transform -- uid: 4888 - type: ExtinguisherCabinetFilled - components: - - pos: -29.5,33.5 - parent: 0 - type: Transform -- uid: 4889 - type: RandomVendingDrinks - components: - - pos: -32.5,29.5 - parent: 0 - type: Transform -- uid: 4890 - type: RandomVending - components: - - pos: -33.5,29.5 - parent: 0 - type: Transform -- uid: 4891 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -33.5,29.5 - parent: 0 - type: Transform -- uid: 4892 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -26.5,33.5 - parent: 0 - type: Transform -- uid: 4893 - type: ClosetEmergencyFilledRandom - components: - - pos: -39.5,43.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4894 - type: WallSolid - components: - - pos: -6.5,48.5 - parent: 0 - type: Transform -- uid: 4895 - type: WallSolid - components: - - pos: -6.5,49.5 - parent: 0 - type: Transform -- uid: 4896 - type: WallSolid - components: - - pos: -6.5,50.5 - parent: 0 - type: Transform -- uid: 4897 - type: WallSolid - components: - - pos: -6.5,51.5 - parent: 0 - type: Transform -- uid: 4898 - type: WallSolid - components: - - pos: -6.5,52.5 - parent: 0 - type: Transform -- uid: 4899 - type: WallSolid - components: - - pos: -6.5,53.5 - parent: 0 - type: Transform -- uid: 4900 - type: WallSolid - components: - - pos: -7.5,53.5 - parent: 0 - type: Transform -- uid: 4901 - type: WallSolid - components: - - pos: -11.5,48.5 - parent: 0 - type: Transform -- uid: 4902 - type: WallSolid - components: - - pos: -11.5,49.5 - parent: 0 - type: Transform -- uid: 4903 - type: WallSolid - components: - - pos: -11.5,50.5 - parent: 0 - type: Transform -- uid: 4904 - type: WallSolid - components: - - pos: -11.5,51.5 - parent: 0 - type: Transform -- uid: 4905 - type: WallSolid - components: - - pos: -11.5,52.5 - parent: 0 - type: Transform -- uid: 4906 - type: WallSolid - components: - - pos: -11.5,53.5 - parent: 0 - type: Transform -- uid: 4907 - type: WallSolid - components: - - pos: -10.5,53.5 - parent: 0 - type: Transform -- uid: 4908 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -9.5,47.5 - parent: 0 - type: Transform -- uid: 4909 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -8.5,47.5 - parent: 0 - type: Transform -- uid: 4910 - type: WindowReinforcedDirectional - components: - - pos: -8.5,47.5 - parent: 0 - type: Transform -- uid: 4911 - type: WindowReinforcedDirectional - components: - - pos: -9.5,47.5 - parent: 0 - type: Transform -- uid: 4912 - type: PaintingHelloWorld - components: - - pos: -11.5,49.5 - parent: 0 - type: Transform -- uid: 4913 - type: PaintingTheKiss - components: - - pos: -11.5,48.5 - parent: 0 - type: Transform -- uid: 4914 - type: PaintingPrayerHands - components: - - pos: -11.5,51.5 - parent: 0 - type: Transform -- uid: 4915 - type: PaintingTheSonOfMan - components: - - pos: -11.5,52.5 - parent: 0 - type: Transform -- uid: 4916 - type: PaintingCafeTerraceAtNight - components: - - pos: -6.5,51.5 - parent: 0 - type: Transform -- uid: 4917 - type: PaintingMoony - components: - - pos: -6.5,49.5 - parent: 0 - type: Transform -- uid: 4918 - type: PaintingNightHawks - components: - - pos: -6.5,48.5 - parent: 0 - type: Transform -- uid: 4919 - type: PaintingOlympia - components: - - pos: -6.5,52.5 - parent: 0 - type: Transform -- uid: 4920 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -7.5,50.5 - parent: 0 - type: Transform -- uid: 4921 - type: StatueVenusRed - components: - - pos: -8.5,49.5 - parent: 0 - type: Transform -- uid: 4922 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: -7.5,51.5 - parent: 0 - type: Transform -- uid: 4923 - type: RailingCornerSmall - components: - - pos: -7.5,48.5 - parent: 0 - type: Transform -- uid: 4924 - type: StatueVenusBlue - components: - - pos: -9.5,50.5 - parent: 0 - type: Transform -- uid: 4925 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: -10.5,51.5 - parent: 0 - type: Transform -- uid: 4926 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: -10.5,48.5 - parent: 0 - type: Transform -- uid: 4927 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -7.5,49.5 - parent: 0 - type: Transform -- uid: 4928 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -8.5,48.5 - parent: 0 - type: Transform -- uid: 4929 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -9.5,48.5 - parent: 0 - type: Transform -- uid: 4930 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -10.5,49.5 - parent: 0 - type: Transform -- uid: 4931 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -10.5,50.5 - parent: 0 - type: Transform -- uid: 4932 - type: Railing - components: - - pos: -9.5,51.5 - parent: 0 - type: Transform -- uid: 4933 - type: Railing - components: - - pos: -8.5,51.5 - parent: 0 - type: Transform -- uid: 4934 - type: CarpetGreen - components: - - pos: -10.5,49.5 - parent: 0 - type: Transform -- uid: 4935 - type: CarpetGreen - components: - - pos: -10.5,50.5 - parent: 0 - type: Transform -- uid: 4936 - type: CarpetGreen - components: - - pos: -7.5,49.5 - parent: 0 - type: Transform -- uid: 4937 - type: CarpetGreen - components: - - pos: -7.5,50.5 - parent: 0 - type: Transform -- uid: 4938 - type: CarpetGreen - components: - - pos: -8.5,51.5 - parent: 0 - type: Transform -- uid: 4939 - type: CarpetGreen - components: - - pos: -9.5,51.5 - parent: 0 - type: Transform -- uid: 4940 - type: CarpetGreen - components: - - pos: -9.5,48.5 - parent: 0 - type: Transform -- uid: 4941 - type: CarpetGreen - components: - - pos: -8.5,48.5 - parent: 0 - type: Transform -- uid: 4942 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,50.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4943 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,50.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4944 - type: WallSolid - components: - - pos: -12.5,53.5 - parent: 0 - type: Transform -- uid: 4945 - type: WallSolid - components: - - pos: -13.5,53.5 - parent: 0 - type: Transform -- uid: 4946 - type: WallSolid - components: - - pos: -14.5,53.5 - parent: 0 - type: Transform -- uid: 4947 - type: WallSolid - components: - - pos: -14.5,52.5 - parent: 0 - type: Transform -- uid: 4948 - type: WallSolid - components: - - pos: -12.5,50.5 - parent: 0 - type: Transform -- uid: 4949 - type: WallSolid - components: - - pos: -13.5,50.5 - parent: 0 - type: Transform -- uid: 4950 - type: WallSolid - components: - - pos: -14.5,50.5 - parent: 0 - type: Transform -- uid: 4951 - type: WallSolid - components: - - pos: -14.5,48.5 - parent: 0 - type: Transform -- uid: 4952 - type: WoodDoor - components: - - pos: -14.5,49.5 - parent: 0 - type: Transform -- uid: 4953 - type: WoodDoor - components: - - pos: -14.5,51.5 - parent: 0 - type: Transform -- uid: 4954 - type: Bookshelf - components: - - pos: -21.5,48.5 - parent: 0 - type: Transform -- uid: 4955 - type: Bookshelf - components: - - pos: -20.5,48.5 - parent: 0 - type: Transform -- uid: 4956 - type: Bookshelf - components: - - pos: -16.5,48.5 - parent: 0 - type: Transform -- uid: 4957 - type: Bookshelf - components: - - pos: -17.5,48.5 - parent: 0 - type: Transform -- uid: 4958 - type: Bookshelf - components: - - pos: -22.5,53.5 - parent: 0 - type: Transform -- uid: 4959 - type: Bookshelf - components: - - pos: -22.5,52.5 - parent: 0 - type: Transform -- uid: 4960 - type: Bookshelf - components: - - pos: -22.5,51.5 - parent: 0 - type: Transform -- uid: 4961 - type: Bookshelf - components: - - pos: -22.5,50.5 - parent: 0 - type: Transform -- uid: 4962 - type: Bookshelf - components: - - pos: -16.5,53.5 - parent: 0 - type: Transform -- uid: 4963 - type: Bookshelf - components: - - pos: -16.5,52.5 - parent: 0 - type: Transform -- uid: 4964 - type: Bookshelf - components: - - pos: -16.5,51.5 - parent: 0 - type: Transform -- uid: 4965 - type: Bookshelf - components: - - pos: -16.5,50.5 - parent: 0 - type: Transform -- uid: 4966 - type: Bookshelf - components: - - pos: -18.5,50.5 - parent: 0 - type: Transform -- uid: 4967 - type: Bookshelf - components: - - pos: -18.5,51.5 - parent: 0 - type: Transform -- uid: 4968 - type: Bookshelf - components: - - pos: -18.5,52.5 - parent: 0 - type: Transform -- uid: 4969 - type: Bookshelf - components: - - pos: -18.5,53.5 - parent: 0 - type: Transform -- uid: 4970 - type: Bookshelf - components: - - pos: -20.5,53.5 - parent: 0 - type: Transform -- uid: 4971 - type: Bookshelf - components: - - pos: -20.5,52.5 - parent: 0 - type: Transform -- uid: 4972 - type: Bookshelf - components: - - pos: -20.5,51.5 - parent: 0 - type: Transform -- uid: 4973 - type: Bookshelf - components: - - pos: -20.5,50.5 - parent: 0 - type: Transform -- uid: 4974 - type: WallSolid - components: - - pos: -23.5,52.5 - parent: 0 - type: Transform -- uid: 4975 - type: WallSolid - components: - - pos: -23.5,53.5 - parent: 0 - type: Transform -- uid: 4976 - type: Window - components: - - pos: -29.5,56.5 - parent: 0 - type: Transform -- uid: 4977 - type: WallSolid - components: - - pos: -29.5,53.5 - parent: 0 - type: Transform -- uid: 4978 - type: WallSolid - components: - - pos: -29.5,52.5 - parent: 0 - type: Transform -- uid: 4979 - type: Window - components: - - pos: -29.5,55.5 - parent: 0 - type: Transform -- uid: 4980 - type: Window - components: - - pos: -29.5,54.5 - parent: 0 - type: Transform -- uid: 4981 - type: WallSolid - components: - - pos: -29.5,57.5 - parent: 0 - type: Transform -- uid: 4982 - type: WallSolid - components: - - pos: -29.5,58.5 - parent: 0 - type: Transform -- uid: 4983 - type: WallReinforced - components: - - pos: -28.5,62.5 - parent: 0 - type: Transform -- uid: 4984 - type: WallReinforced - components: - - pos: -28.5,61.5 - parent: 0 - type: Transform -- uid: 4985 - type: WallSolid - components: - - pos: -26.5,59.5 - parent: 0 - type: Transform -- uid: 4986 - type: WallSolid - components: - - pos: -25.5,59.5 - parent: 0 - type: Transform -- uid: 4987 - type: WallSolid - components: - - pos: -24.5,59.5 - parent: 0 - type: Transform -- uid: 4988 - type: WallSolid - components: - - pos: -23.5,59.5 - parent: 0 - type: Transform -- uid: 4989 - type: WallSolid - components: - - pos: -23.5,56.5 - parent: 0 - type: Transform -- uid: 4990 - type: WallSolid - components: - - pos: -23.5,57.5 - parent: 0 - type: Transform -- uid: 4991 - type: WallSolid - components: - - pos: -23.5,58.5 - parent: 0 - type: Transform -- uid: 4992 - type: WallSolid - components: - - pos: -21.5,59.5 - parent: 0 - type: Transform -- uid: 4993 - type: WallSolid - components: - - pos: -20.5,59.5 - parent: 0 - type: Transform -- uid: 4994 - type: WallSolid - components: - - pos: -19.5,59.5 - parent: 0 - type: Transform -- uid: 4995 - type: WallSolid - components: - - pos: -18.5,59.5 - parent: 0 - type: Transform -- uid: 4996 - type: WallSolid - components: - - pos: -18.5,58.5 - parent: 0 - type: Transform -- uid: 4997 - type: WallSolid - components: - - pos: -18.5,57.5 - parent: 0 - type: Transform -- uid: 4998 - type: WallSolid - components: - - pos: -18.5,56.5 - parent: 0 - type: Transform -- uid: 4999 - type: WallSolid - components: - - pos: -14.5,56.5 - parent: 0 - type: Transform -- uid: 5000 - type: WallSolid - components: - - pos: -14.5,57.5 - parent: 0 - type: Transform -- uid: 5001 - type: WallSolid - components: - - pos: -6.5,56.5 - parent: 0 - type: Transform -- uid: 5002 - type: WallSolid - components: - - pos: -6.5,57.5 - parent: 0 - type: Transform -- uid: 5003 - type: Window - components: - - pos: -7.5,57.5 - parent: 0 - type: Transform -- uid: 5004 - type: Window - components: - - pos: -8.5,57.5 - parent: 0 - type: Transform -- uid: 5005 - type: Window - components: - - pos: -9.5,57.5 - parent: 0 - type: Transform -- uid: 5006 - type: WallSolid - components: - - pos: -10.5,57.5 - parent: 0 - type: Transform -- uid: 5007 - type: Window - components: - - pos: -15.5,57.5 - parent: 0 - type: Transform -- uid: 5008 - type: Window - components: - - pos: -16.5,57.5 - parent: 0 - type: Transform -- uid: 5009 - type: Window - components: - - pos: -17.5,57.5 - parent: 0 - type: Transform -- uid: 5010 - type: WallSolid - components: - - pos: -20.5,60.5 - parent: 0 - type: Transform -- uid: 5011 - type: WallSolid - components: - - pos: -20.5,61.5 - parent: 0 - type: Transform -- uid: 5012 - type: WallSolid - components: - - pos: -20.5,62.5 - parent: 0 - type: Transform -- uid: 5013 - type: WallSolid - components: - - pos: -20.5,63.5 - parent: 0 - type: Transform -- uid: 5014 - type: WallSolid - components: - - pos: -19.5,63.5 - parent: 0 - type: Transform -- uid: 5015 - type: WallSolid - components: - - pos: -18.5,63.5 - parent: 0 - type: Transform -- uid: 5016 - type: WallSolid - components: - - pos: -18.5,61.5 - parent: 0 - type: Transform -- uid: 5017 - type: TintedWindow - components: - - pos: -19.5,61.5 - parent: 0 - type: Transform -- uid: 5018 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -19.5,60.5 - parent: 0 - type: Transform -- uid: 5019 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -19.5,62.5 - parent: 0 - type: Transform -- uid: 5020 - type: WoodDoor - components: - - pos: -18.5,60.5 - parent: 0 - type: Transform -- uid: 5021 - type: WoodDoor - components: - - pos: -18.5,62.5 - parent: 0 - type: Transform -- uid: 5022 - type: AltarSpawner - components: - - pos: -12.5,64.5 - parent: 0 - type: Transform -- uid: 5023 - type: TableWood - components: - - pos: -13.5,64.5 - parent: 0 - type: Transform -- uid: 5024 - type: TableWood - components: - - pos: -14.5,64.5 - parent: 0 - type: Transform -- uid: 5025 - type: TableWood - components: - - pos: -14.5,65.5 - parent: 0 - type: Transform -- uid: 5026 - type: TableWood - components: - - pos: -11.5,64.5 - parent: 0 - type: Transform -- uid: 5027 - type: TableWood - components: - - pos: -10.5,64.5 - parent: 0 - type: Transform -- uid: 5028 - type: TableWood - components: - - pos: -10.5,65.5 - parent: 0 - type: Transform -- uid: 5029 - type: ChairWood - components: - - pos: -12.5,65.5 - parent: 0 - type: Transform -- uid: 5030 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -14.5,62.5 - parent: 0 - type: Transform -- uid: 5031 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -15.5,62.5 - parent: 0 - type: Transform -- uid: 5032 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -16.5,62.5 - parent: 0 - type: Transform -- uid: 5033 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -14.5,60.5 - parent: 0 - type: Transform -- uid: 5034 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -15.5,60.5 - parent: 0 - type: Transform -- uid: 5035 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -16.5,60.5 - parent: 0 - type: Transform -- uid: 5036 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -14.5,58.5 - parent: 0 - type: Transform -- uid: 5037 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -15.5,58.5 - parent: 0 - type: Transform -- uid: 5038 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -16.5,58.5 - parent: 0 - type: Transform -- uid: 5039 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -10.5,58.5 - parent: 0 - type: Transform -- uid: 5040 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -9.5,58.5 - parent: 0 - type: Transform -- uid: 5041 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -8.5,58.5 - parent: 0 - type: Transform -- uid: 5042 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -10.5,60.5 - parent: 0 - type: Transform -- uid: 5043 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -9.5,60.5 - parent: 0 - type: Transform -- uid: 5044 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -8.5,60.5 - parent: 0 - type: Transform -- uid: 5045 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -10.5,62.5 - parent: 0 - type: Transform -- uid: 5046 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -9.5,62.5 - parent: 0 - type: Transform -- uid: 5047 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -8.5,62.5 - parent: 0 - type: Transform -- uid: 5048 - type: Window - components: - - pos: -12.5,57.5 - parent: 0 - type: Transform -- uid: 5049 - type: Grille - components: - - pos: -12.5,57.5 - parent: 0 - type: Transform -- uid: 5050 - type: Grille - components: - - pos: -9.5,57.5 - parent: 0 - type: Transform -- uid: 5051 - type: Grille - components: - - pos: -8.5,57.5 - parent: 0 - type: Transform -- uid: 5052 - type: Grille - components: - - pos: -7.5,57.5 - parent: 0 - type: Transform -- uid: 5053 - type: Grille - components: - - pos: -15.5,57.5 - parent: 0 - type: Transform -- uid: 5054 - type: Grille - components: - - pos: -16.5,57.5 - parent: 0 - type: Transform -- uid: 5055 - type: Grille - components: - - pos: -17.5,57.5 - parent: 0 - type: Transform -- uid: 5056 - type: Grille - components: - - pos: -19.5,61.5 - parent: 0 - type: Transform -- uid: 5057 - type: WallSolid - components: - - pos: -14.5,67.5 - parent: 0 - type: Transform -- uid: 5058 - type: WallSolid - components: - - pos: -13.5,67.5 - parent: 0 - type: Transform -- uid: 5059 - type: WallSolid - components: - - pos: -12.5,67.5 - parent: 0 - type: Transform -- uid: 5060 - type: WallSolid - components: - - pos: -11.5,67.5 - parent: 0 - type: Transform -- uid: 5061 - type: WallSolid - components: - - pos: -10.5,67.5 - parent: 0 - type: Transform -- uid: 5062 - type: WallSolid - components: - - pos: -8.5,67.5 - parent: 0 - type: Transform -- uid: 5063 - type: WallSolid - components: - - pos: -7.5,67.5 - parent: 0 - type: Transform -- uid: 5064 - type: WallSolid - components: - - pos: -6.5,67.5 - parent: 0 - type: Transform -- uid: 5065 - type: WallSolid - components: - - pos: -6.5,66.5 - parent: 0 - type: Transform -- uid: 5066 - type: WallSolid - components: - - pos: -6.5,65.5 - parent: 0 - type: Transform -- uid: 5067 - type: WallSolid - components: - - pos: -6.5,64.5 - parent: 0 - type: Transform -- uid: 5068 - type: WallSolid - components: - - pos: -6.5,58.5 - parent: 0 - type: Transform -- uid: 5069 - type: WallSolid - components: - - pos: -6.5,61.5 - parent: 0 - type: Transform -- uid: 5070 - type: Window - components: - - pos: -6.5,59.5 - parent: 0 - type: Transform -- uid: 5071 - type: Window - components: - - pos: -6.5,60.5 - parent: 0 - type: Transform -- uid: 5072 - type: Window - components: - - pos: -6.5,62.5 - parent: 0 - type: Transform -- uid: 5073 - type: Window - components: - - pos: -6.5,63.5 - parent: 0 - type: Transform -- uid: 5074 - type: Grille - components: - - pos: -6.5,59.5 - parent: 0 - type: Transform -- uid: 5075 - type: Grille - components: - - pos: -6.5,60.5 - parent: 0 - type: Transform -- uid: 5076 - type: Grille - components: - - pos: -6.5,62.5 - parent: 0 - type: Transform -- uid: 5077 - type: Grille - components: - - pos: -6.5,63.5 - parent: 0 - type: Transform -- uid: 5078 - type: WallSolid - components: - - pos: -26.5,60.5 - parent: 0 - type: Transform -- uid: 5079 - type: WallSolid - components: - - pos: -26.5,61.5 - parent: 0 - type: Transform -- uid: 5080 - type: WallSolid - components: - - pos: -26.5,62.5 - parent: 0 - type: Transform -- uid: 5081 - type: WallSolid - components: - - pos: -26.5,63.5 - parent: 0 - type: Transform -- uid: 5082 - type: WallSolid - components: - - pos: -25.5,63.5 - parent: 0 - type: Transform -- uid: 5083 - type: WallSolid - components: - - pos: -24.5,63.5 - parent: 0 - type: Transform -- uid: 5084 - type: WallSolid - components: - - pos: -23.5,63.5 - parent: 0 - type: Transform -- uid: 5085 - type: WallSolid - components: - - pos: -22.5,63.5 - parent: 0 - type: Transform -- uid: 5086 - type: WallSolid - components: - - pos: -21.5,63.5 - parent: 0 - type: Transform -- uid: 5087 - type: WallSolid - components: - - pos: -22.5,64.5 - parent: 0 - type: Transform -- uid: 5088 - type: WallSolid - components: - - pos: -21.5,66.5 - parent: 0 - type: Transform -- uid: 5089 - type: WallSolid - components: - - pos: -22.5,66.5 - parent: 0 - type: Transform -- uid: 5090 - type: WallSolid - components: - - pos: -23.5,66.5 - parent: 0 - type: Transform -- uid: 5091 - type: WallSolid - components: - - pos: -23.5,67.5 - parent: 0 - type: Transform -- uid: 5092 - type: WallSolid - components: - - pos: -19.5,66.5 - parent: 0 - type: Transform -- uid: 5093 - type: WallSolid - components: - - pos: -18.5,66.5 - parent: 0 - type: Transform -- uid: 5094 - type: WallSolid - components: - - pos: -18.5,67.5 - parent: 0 - type: Transform -- uid: 5095 - type: WallSolid - components: - - pos: -23.5,68.5 - parent: 0 - type: Transform -- uid: 5096 - type: WallSolid - components: - - pos: -23.5,69.5 - parent: 0 - type: Transform -- uid: 5097 - type: WallSolid - components: - - pos: -23.5,70.5 - parent: 0 - type: Transform -- uid: 5098 - type: WallSolid - components: - - pos: -23.5,71.5 - parent: 0 - type: Transform -- uid: 5099 - type: WallSolid - components: - - pos: -22.5,71.5 - parent: 0 - type: Transform -- uid: 5100 - type: WallSolid - components: - - pos: -21.5,71.5 - parent: 0 - type: Transform -- uid: 5101 - type: Grille - components: - - pos: -19.5,71.5 - parent: 0 - type: Transform -- uid: 5102 - type: WallSolid - components: - - pos: -18.5,71.5 - parent: 0 - type: Transform -- uid: 5103 - type: WallSolid - components: - - pos: -18.5,70.5 - parent: 0 - type: Transform -- uid: 5104 - type: WallSolid - components: - - pos: -18.5,69.5 - parent: 0 - type: Transform -- uid: 5105 - type: WallSolid - components: - - pos: -18.5,68.5 - parent: 0 - type: Transform -- uid: 5106 - type: TintedWindow - components: - - pos: -17.5,67.5 - parent: 0 - type: Transform -- uid: 5107 - type: TintedWindow - components: - - pos: -15.5,67.5 - parent: 0 - type: Transform -- uid: 5108 - type: Grille - components: - - pos: -17.5,67.5 - parent: 0 - type: Transform -- uid: 5109 - type: Grille - components: - - pos: -15.5,67.5 - parent: 0 - type: Transform -- uid: 5110 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5111 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5112 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5113 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5114 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5115 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5116 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5117 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5118 - type: GasPipeTJunction - components: - - pos: -4.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5119 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5120 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,57.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5121 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5122 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5123 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5124 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5125 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5126 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5127 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5128 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5129 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5130 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5131 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5132 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5133 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -3.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5134 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5135 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5136 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5137 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,58.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5138 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5139 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,60.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5140 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -38.5,52.5 - parent: 0 - type: Transform -- uid: 5141 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -38.5,54.5 - parent: 0 - type: Transform -- uid: 5142 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -38.5,55.5 - parent: 0 - type: Transform -- uid: 5143 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -38.5,56.5 - parent: 0 - type: Transform -- uid: 5144 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -38.5,58.5 - parent: 0 - type: Transform -- uid: 5145 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -38.5,53.5 - parent: 0 - type: Transform -- uid: 5146 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -38.5,57.5 - parent: 0 - type: Transform -- uid: 5147 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -38.5,59.5 - parent: 0 - type: Transform -- uid: 5148 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -38.5,60.5 - parent: 0 - type: Transform -- uid: 5149 - type: WallSolid - components: - - pos: -37.5,60.5 - parent: 0 - type: Transform -- uid: 5150 - type: WallSolid - components: - - pos: -36.5,60.5 - parent: 0 - type: Transform -- uid: 5151 - type: WallSolid - components: - - pos: -35.5,60.5 - parent: 0 - type: Transform -- uid: 5152 - type: WallSolid - components: - - pos: -34.5,60.5 - parent: 0 - type: Transform -- uid: 5153 - type: WallSolid - components: - - pos: -34.5,59.5 - parent: 0 - type: Transform -- uid: 5154 - type: WallReinforced - components: - - pos: -29.5,63.5 - parent: 0 - type: Transform -- uid: 5155 - type: WallReinforced - components: - - pos: -28.5,63.5 - parent: 0 - type: Transform -- uid: 5156 - type: WallReinforced - components: - - pos: -31.5,59.5 - parent: 0 - type: Transform -- uid: 5157 - type: WallReinforced - components: - - pos: -28.5,60.5 - parent: 0 - type: Transform -- uid: 5158 - type: WallReinforced - components: - - pos: -31.5,63.5 - parent: 0 - type: Transform -- uid: 5159 - type: WallReinforced - components: - - pos: -32.5,63.5 - parent: 0 - type: Transform -- uid: 5160 - type: WallReinforced - components: - - pos: -32.5,61.5 - parent: 0 - type: Transform -- uid: 5161 - type: WallReinforced - components: - - pos: -32.5,62.5 - parent: 0 - type: Transform -- uid: 5162 - type: WallReinforced - components: - - pos: -30.5,59.5 - parent: 0 - type: Transform -- uid: 5163 - type: WallReinforced - components: - - pos: -29.5,59.5 - parent: 0 - type: Transform -- uid: 5164 - type: WallReinforced - components: - - pos: -28.5,59.5 - parent: 0 - type: Transform -- uid: 5165 - type: WallReinforced - components: - - pos: -32.5,59.5 - parent: 0 - type: Transform -- uid: 5166 - type: WallReinforced - components: - - pos: -32.5,60.5 - parent: 0 - type: Transform -- uid: 5167 - type: WallReinforced - components: - - pos: -39.5,60.5 - parent: 0 - type: Transform -- uid: 5168 - type: WallReinforced - components: - - pos: -40.5,60.5 - parent: 0 - type: Transform -- uid: 5169 - type: WallReinforced - components: - - pos: -41.5,60.5 - parent: 0 - type: Transform -- uid: 5170 - type: WallReinforced - components: - - pos: -41.5,61.5 - parent: 0 - type: Transform -- uid: 5171 - type: ReinforcedWindow - components: - - pos: -41.5,62.5 - parent: 0 - type: Transform -- uid: 5172 - type: ReinforcedWindow - components: - - pos: -41.5,63.5 - parent: 0 - type: Transform -- uid: 5173 - type: WallReinforced - components: - - pos: -41.5,64.5 - parent: 0 - type: Transform -- uid: 5174 - type: WallReinforced - components: - - pos: -41.5,65.5 - parent: 0 - type: Transform -- uid: 5175 - type: WallReinforced - components: - - pos: -40.5,65.5 - parent: 0 - type: Transform -- uid: 5176 - type: WallReinforced - components: - - pos: -39.5,65.5 - parent: 0 - type: Transform -- uid: 5177 - type: WallReinforced - components: - - pos: -39.5,66.5 - parent: 0 - type: Transform -- uid: 5178 - type: WallReinforced - components: - - pos: -39.5,68.5 - parent: 0 - type: Transform -- uid: 5179 - type: WallReinforced - components: - - pos: -39.5,69.5 - parent: 0 - type: Transform -- uid: 5180 - type: WallReinforced - components: - - pos: -38.5,69.5 - parent: 0 - type: Transform -- uid: 5181 - type: WallReinforced - components: - - pos: -37.5,69.5 - parent: 0 - type: Transform -- uid: 5182 - type: WallReinforced - components: - - pos: -36.5,69.5 - parent: 0 - type: Transform -- uid: 5183 - type: WallReinforced - components: - - pos: -36.5,68.5 - parent: 0 - type: Transform -- uid: 5184 - type: WallReinforced - components: - - pos: -36.5,66.5 - parent: 0 - type: Transform -- uid: 5185 - type: WallReinforced - components: - - pos: -38.5,65.5 - parent: 0 - type: Transform -- uid: 5186 - type: WallReinforced - components: - - pos: -37.5,65.5 - parent: 0 - type: Transform -- uid: 5187 - type: WallReinforced - components: - - pos: -36.5,65.5 - parent: 0 - type: Transform -- uid: 5188 - type: WallReinforced - components: - - pos: -36.5,70.5 - parent: 0 - type: Transform -- uid: 5189 - type: WallReinforced - components: - - pos: -36.5,71.5 - parent: 0 - type: Transform -- uid: 5190 - type: WallReinforced - components: - - pos: -35.5,71.5 - parent: 0 - type: Transform -- uid: 5191 - type: WallReinforced - components: - - pos: -34.5,71.5 - parent: 0 - type: Transform -- uid: 5192 - type: WallReinforced - components: - - pos: -33.5,71.5 - parent: 0 - type: Transform -- uid: 5193 - type: WallReinforced - components: - - pos: -33.5,73.5 - parent: 0 - type: Transform -- uid: 5194 - type: WallReinforced - components: - - pos: -33.5,74.5 - parent: 0 - type: Transform -- uid: 5195 - type: WallReinforced - components: - - pos: -33.5,75.5 - parent: 0 - type: Transform -- uid: 5196 - type: WallSolidRust - components: - - pos: -33.5,87.5 - parent: 0 - type: Transform -- uid: 5197 - type: WallSolid - components: - - pos: -22.5,74.5 - parent: 0 - type: Transform -- uid: 5198 - type: WallSolid - components: - - pos: -22.5,73.5 - parent: 0 - type: Transform -- uid: 5199 - type: WallSolid - components: - - pos: -21.5,74.5 - parent: 0 - type: Transform -- uid: 5200 - type: WallSolid - components: - - pos: -20.5,74.5 - parent: 0 - type: Transform -- uid: 5201 - type: WallSolid - components: - - pos: -20.5,75.5 - parent: 0 - type: Transform -- uid: 5202 - type: WallReinforced - components: - - pos: -22.5,75.5 - parent: 0 - type: Transform -- uid: 5203 - type: WallReinforced - components: - - pos: -23.5,75.5 - parent: 0 - type: Transform -- uid: 5204 - type: WallReinforced - components: - - pos: -24.5,75.5 - parent: 0 - type: Transform -- uid: 5205 - type: WallReinforced - components: - - pos: -25.5,75.5 - parent: 0 - type: Transform -- uid: 5206 - type: WallReinforced - components: - - pos: -26.5,75.5 - parent: 0 - type: Transform -- uid: 5207 - type: WallReinforced - components: - - pos: -27.5,75.5 - parent: 0 - type: Transform -- uid: 5208 - type: WallReinforced - components: - - pos: -28.5,75.5 - parent: 0 - type: Transform -- uid: 5209 - type: WallReinforced - components: - - pos: -29.5,75.5 - parent: 0 - type: Transform -- uid: 5210 - type: WallReinforced - components: - - pos: -32.5,75.5 - parent: 0 - type: Transform -- uid: 5211 - type: WallReinforced - components: - - pos: -31.5,75.5 - parent: 0 - type: Transform -- uid: 5212 - type: WallReinforced - components: - - pos: -30.5,75.5 - parent: 0 - type: Transform -- uid: 5213 - type: WallReinforced - components: - - pos: -22.5,76.5 - parent: 0 - type: Transform -- uid: 5214 - type: WallReinforced - components: - - pos: -22.5,77.5 - parent: 0 - type: Transform -- uid: 5215 - type: WallReinforced - components: - - pos: -21.5,77.5 - parent: 0 - type: Transform -- uid: 5216 - type: WallReinforced - components: - - pos: -20.5,77.5 - parent: 0 - type: Transform -- uid: 5217 - type: WallReinforced - components: - - pos: -19.5,77.5 - parent: 0 - type: Transform -- uid: 5218 - type: WallReinforced - components: - - pos: -18.5,77.5 - parent: 0 - type: Transform -- uid: 5219 - type: ReinforcedWindow - components: - - pos: -17.5,77.5 - parent: 0 - type: Transform -- uid: 5220 - type: ReinforcedWindow - components: - - pos: -16.5,77.5 - parent: 0 - type: Transform -- uid: 5221 - type: ReinforcedWindow - components: - - pos: -15.5,77.5 - parent: 0 - type: Transform -- uid: 5222 - type: WallReinforced - components: - - pos: -14.5,77.5 - parent: 0 - type: Transform -- uid: 5223 - type: WallReinforced - components: - - pos: -13.5,77.5 - parent: 0 - type: Transform -- uid: 5224 - type: WallReinforced - components: - - pos: -12.5,77.5 - parent: 0 - type: Transform -- uid: 5225 - type: WallReinforced - components: - - pos: -9.5,76.5 - parent: 0 - type: Transform -- uid: 5226 - type: WallSolid - components: - - pos: -12.5,75.5 - parent: 0 - type: Transform -- uid: 5227 - type: WallSolid - components: - - pos: -12.5,74.5 - parent: 0 - type: Transform -- uid: 5228 - type: WallSolid - components: - - pos: -12.5,73.5 - parent: 0 - type: Transform -- uid: 5229 - type: WallSolid - components: - - pos: -12.5,71.5 - parent: 0 - type: Transform -- uid: 5230 - type: WallSolid - components: - - pos: -13.5,71.5 - parent: 0 - type: Transform -- uid: 5231 - type: WallSolid - components: - - pos: -14.5,71.5 - parent: 0 - type: Transform -- uid: 5232 - type: WallSolid - components: - - pos: -14.5,70.5 - parent: 0 - type: Transform -- uid: 5233 - type: WallSolid - components: - - pos: -14.5,69.5 - parent: 0 - type: Transform -- uid: 5234 - type: WallSolid - components: - - pos: -14.5,68.5 - parent: 0 - type: Transform -- uid: 5235 - type: WallSolid - components: - - pos: -6.5,68.5 - parent: 0 - type: Transform -- uid: 5236 - type: WallSolid - components: - - pos: -6.5,71.5 - parent: 0 - type: Transform -- uid: 5237 - type: WallReinforced - components: - - pos: -6.5,72.5 - parent: 0 - type: Transform -- uid: 5238 - type: WallReinforced - components: - - pos: -6.5,73.5 - parent: 0 - type: Transform -- uid: 5239 - type: WallReinforced - components: - - pos: -6.5,74.5 - parent: 0 - type: Transform -- uid: 5240 - type: WallReinforced - components: - - pos: -6.5,75.5 - parent: 0 - type: Transform -- uid: 5241 - type: WallReinforced - components: - - pos: -12.5,76.5 - parent: 0 - type: Transform -- uid: 5242 - type: ReinforcedWindow - components: - - pos: -7.5,76.5 - parent: 0 - type: Transform -- uid: 5243 - type: ReinforcedWindow - components: - - pos: -8.5,76.5 - parent: 0 - type: Transform -- uid: 5244 - type: ReinforcedWindow - components: - - pos: -11.5,76.5 - parent: 0 - type: Transform -- uid: 5245 - type: ReinforcedWindow - components: - - pos: -10.5,76.5 - parent: 0 - type: Transform -- uid: 5246 - type: WallReinforced - components: - - pos: -6.5,76.5 - parent: 0 - type: Transform -- uid: 5247 - type: WallSolidRust - components: - - pos: -30.5,77.5 - parent: 0 - type: Transform -- uid: 5248 - type: WallSolidRust - components: - - pos: -33.5,78.5 - parent: 0 - type: Transform -- uid: 5249 - type: AsteroidRock - components: - - pos: -32.5,76.5 - parent: 0 - type: Transform -- uid: 5250 - type: AsteroidRock - components: - - pos: -31.5,76.5 - parent: 0 - type: Transform -- uid: 5251 - type: AsteroidRock - components: - - pos: -30.5,76.5 - parent: 0 - type: Transform -- uid: 5252 - type: AsteroidRock - components: - - pos: -29.5,76.5 - parent: 0 - type: Transform -- uid: 5253 - type: AsteroidRock - components: - - pos: -28.5,76.5 - parent: 0 - type: Transform -- uid: 5254 - type: AsteroidRock - components: - - pos: -27.5,76.5 - parent: 0 - type: Transform -- uid: 5255 - type: AsteroidRock - components: - - pos: -26.5,76.5 - parent: 0 - type: Transform -- uid: 5256 - type: AsteroidRock - components: - - pos: -25.5,76.5 - parent: 0 - type: Transform -- uid: 5257 - type: AsteroidRock - components: - - pos: -24.5,76.5 - parent: 0 - type: Transform -- uid: 5258 - type: WallSolid - components: - - pos: -33.5,79.5 - parent: 0 - type: Transform -- uid: 5259 - type: AsteroidRock - components: - - pos: -24.5,77.5 - parent: 0 - type: Transform -- uid: 5260 - type: AsteroidRock - components: - - pos: -23.5,77.5 - parent: 0 - type: Transform -- uid: 5261 - type: AsteroidRock - components: - - pos: -23.5,78.5 - parent: 0 - type: Transform -- uid: 5262 - type: AsteroidRock - components: - - pos: -22.5,78.5 - parent: 0 - type: Transform -- uid: 5263 - type: AsteroidRock - components: - - pos: -21.5,78.5 - parent: 0 - type: Transform -- uid: 5264 - type: AsteroidRock - components: - - pos: -20.5,78.5 - parent: 0 - type: Transform -- uid: 5265 - type: AsteroidRock - components: - - pos: -31.5,77.5 - parent: 0 - type: Transform -- uid: 5266 - type: WallSolid - components: - - pos: -33.5,80.5 - parent: 0 - type: Transform -- uid: 5267 - type: WallSolid - components: - - pos: -33.5,81.5 - parent: 0 - type: Transform -- uid: 5268 - type: WallSolid - components: - - pos: -33.5,82.5 - parent: 0 - type: Transform -- uid: 5269 - type: WallSolid - components: - - pos: -33.5,83.5 - parent: 0 - type: Transform -- uid: 5270 - type: WallSolid - components: - - pos: -33.5,84.5 - parent: 0 - type: Transform -- uid: 5271 - type: WallSolid - components: - - pos: -33.5,85.5 - parent: 0 - type: Transform -- uid: 5272 - type: WallSolid - components: - - pos: -33.5,86.5 - parent: 0 - type: Transform -- uid: 5273 - type: WallSolidRust - components: - - pos: -37.5,87.5 - parent: 0 - type: Transform -- uid: 5274 - type: WallSolidRust - components: - - pos: -45.5,77.5 - parent: 0 - type: Transform -- uid: 5275 - type: Catwalk - components: - - pos: -62.5,57.5 - parent: 0 - type: Transform -- uid: 5276 - type: Catwalk - components: - - pos: -37.5,88.5 - parent: 0 - type: Transform -- uid: 5277 - type: Catwalk - components: - - pos: -30.5,79.5 - parent: 0 - type: Transform -- uid: 5278 - type: Catwalk - components: - - pos: -46.5,77.5 - parent: 0 - type: Transform -- uid: 5279 - type: SignSecureMed - components: - - pos: -45.5,77.5 - parent: 0 - type: Transform -- uid: 5280 - type: SignSecureMed - components: - - pos: -30.5,77.5 - parent: 0 - type: Transform -- uid: 5281 - type: SignSecureMed - components: - - pos: -37.5,87.5 - parent: 0 - type: Transform -- uid: 5282 - type: SignSecureMed - components: - - pos: -33.5,78.5 - parent: 0 - type: Transform -- uid: 5283 - type: SignSecureMed - components: - - pos: -33.5,87.5 - parent: 0 - type: Transform -- uid: 5284 - type: WallSolidRust - components: - - pos: -45.5,68.5 - parent: 0 - type: Transform -- uid: 5285 - type: SignSecureMed - components: - - pos: -45.5,68.5 - parent: 0 - type: Transform -- uid: 5286 - type: FloraRockSolid01 - components: - - pos: -47.702713,71.54367 - parent: 0 - type: Transform -- uid: 5287 - type: FloraRockSolid01 - components: - - pos: -41.702713,71.29367 - parent: 0 - type: Transform -- uid: 5288 - type: FloraRockSolid01 - components: - - pos: -44.472687,85.61596 - parent: 0 - type: Transform -- uid: 5289 - type: AsteroidRock - components: - - pos: -45.5,78.5 - parent: 0 - type: Transform -- uid: 5290 - type: AsteroidRock - components: - - pos: -45.5,79.5 - parent: 0 - type: Transform -- uid: 5291 - type: AsteroidRock - components: - - pos: -44.5,78.5 - parent: 0 - type: Transform -- uid: 5292 - type: AsteroidRock - components: - - pos: -43.5,78.5 - parent: 0 - type: Transform -- uid: 5293 - type: AsteroidRock - components: - - pos: -43.5,79.5 - parent: 0 - type: Transform -- uid: 5294 - type: AsteroidRock - components: - - pos: -42.5,78.5 - parent: 0 - type: Transform -- uid: 5295 - type: AsteroidRock - components: - - pos: -42.5,79.5 - parent: 0 - type: Transform -- uid: 5296 - type: AsteroidRock - components: - - pos: -42.5,80.5 - parent: 0 - type: Transform -- uid: 5297 - type: AsteroidRock - components: - - pos: -42.5,81.5 - parent: 0 - type: Transform -- uid: 5298 - type: AsteroidRock - components: - - pos: -42.5,82.5 - parent: 0 - type: Transform -- uid: 5299 - type: AsteroidRock - components: - - pos: -42.5,83.5 - parent: 0 - type: Transform -- uid: 5300 - type: AsteroidRock - components: - - pos: -42.5,84.5 - parent: 0 - type: Transform -- uid: 5301 - type: AsteroidRock - components: - - pos: -43.5,82.5 - parent: 0 - type: Transform -- uid: 5302 - type: AsteroidRock - components: - - pos: -43.5,83.5 - parent: 0 - type: Transform -- uid: 5303 - type: AsteroidRock - components: - - pos: -44.5,83.5 - parent: 0 - type: Transform -- uid: 5304 - type: AsteroidRock - components: - - pos: -41.5,85.5 - parent: 0 - type: Transform -- uid: 5305 - type: AsteroidRock - components: - - pos: -40.5,85.5 - parent: 0 - type: Transform -- uid: 5306 - type: AsteroidRock - components: - - pos: -39.5,85.5 - parent: 0 - type: Transform -- uid: 5307 - type: AsteroidRock - components: - - pos: -38.5,85.5 - parent: 0 - type: Transform -- uid: 5308 - type: AsteroidRock - components: - - pos: -37.5,85.5 - parent: 0 - type: Transform -- uid: 5309 - type: AsteroidRock - components: - - pos: -36.5,85.5 - parent: 0 - type: Transform -- uid: 5310 - type: AsteroidRock - components: - - pos: -35.5,85.5 - parent: 0 - type: Transform -- uid: 5311 - type: AsteroidRock - components: - - pos: -34.5,85.5 - parent: 0 - type: Transform -- uid: 5312 - type: AsteroidRock - components: - - pos: -35.5,86.5 - parent: 0 - type: Transform -- uid: 5313 - type: AsteroidRock - components: - - pos: -35.5,87.5 - parent: 0 - type: Transform -- uid: 5314 - type: AsteroidRock - components: - - pos: -34.5,86.5 - parent: 0 - type: Transform -- uid: 5315 - type: AsteroidRock - components: - - pos: -34.5,87.5 - parent: 0 - type: Transform -- uid: 5316 - type: AsteroidRock - components: - - pos: -34.5,88.5 - parent: 0 - type: Transform -- uid: 5317 - type: AsteroidRock - components: - - pos: -37.5,86.5 - parent: 0 - type: Transform -- uid: 5318 - type: AsteroidRock - components: - - pos: -38.5,86.5 - parent: 0 - type: Transform -- uid: 5319 - type: AsteroidRock - components: - - pos: -39.5,86.5 - parent: 0 - type: Transform -- uid: 5320 - type: AsteroidRock - components: - - pos: -34.5,78.5 - parent: 0 - type: Transform -- uid: 5321 - type: AsteroidRock - components: - - pos: -34.5,79.5 - parent: 0 - type: Transform -- uid: 5322 - type: AsteroidRock - components: - - pos: -34.5,80.5 - parent: 0 - type: Transform -- uid: 5323 - type: AsteroidRock - components: - - pos: -34.5,81.5 - parent: 0 - type: Transform -- uid: 5324 - type: AsteroidRock - components: - - pos: -34.5,82.5 - parent: 0 - type: Transform -- uid: 5325 - type: AsteroidRock - components: - - pos: -34.5,83.5 - parent: 0 - type: Transform -- uid: 5326 - type: AsteroidRock - components: - - pos: -34.5,84.5 - parent: 0 - type: Transform -- uid: 5327 - type: AsteroidRock - components: - - pos: -35.5,77.5 - parent: 0 - type: Transform -- uid: 5328 - type: AsteroidRock - components: - - pos: -35.5,78.5 - parent: 0 - type: Transform -- uid: 5329 - type: AsteroidRock - components: - - pos: -35.5,79.5 - parent: 0 - type: Transform -- uid: 5330 - type: AsteroidRock - components: - - pos: -35.5,80.5 - parent: 0 - type: Transform -- uid: 5331 - type: AsteroidRock - components: - - pos: -35.5,81.5 - parent: 0 - type: Transform -- uid: 5332 - type: AsteroidRock - components: - - pos: -35.5,82.5 - parent: 0 - type: Transform -- uid: 5333 - type: AsteroidRock - components: - - pos: -35.5,83.5 - parent: 0 - type: Transform -- uid: 5334 - type: AsteroidRock - components: - - pos: -35.5,84.5 - parent: 0 - type: Transform -- uid: 5335 - type: AsteroidRock - components: - - pos: -36.5,75.5 - parent: 0 - type: Transform -- uid: 5336 - type: AsteroidRock - components: - - pos: -36.5,76.5 - parent: 0 - type: Transform -- uid: 5337 - type: AsteroidRock - components: - - pos: -36.5,77.5 - parent: 0 - type: Transform -- uid: 5338 - type: AsteroidRockMining - components: - - pos: -41.5,77.5 - parent: 0 - type: Transform -- uid: 5339 - type: AsteroidRockMining - components: - - pos: -41.5,78.5 - parent: 0 - type: Transform -- uid: 5340 - type: AsteroidRock - components: - - pos: -36.5,80.5 - parent: 0 - type: Transform -- uid: 5341 - type: AsteroidRockMining - components: - - pos: -40.5,80.5 - parent: 0 - type: Transform -- uid: 5342 - type: AsteroidRockMining - components: - - pos: -39.5,81.5 - parent: 0 - type: Transform -- uid: 5343 - type: AsteroidRockMining - components: - - pos: -39.5,82.5 - parent: 0 - type: Transform -- uid: 5344 - type: AsteroidRock - components: - - pos: -36.5,84.5 - parent: 0 - type: Transform -- uid: 5345 - type: AsteroidRock - components: - - pos: -37.5,74.5 - parent: 0 - type: Transform -- uid: 5346 - type: AsteroidRock - components: - - pos: -37.5,75.5 - parent: 0 - type: Transform -- uid: 5347 - type: AsteroidRockMining - components: - - pos: -39.5,74.5 - parent: 0 - type: Transform -- uid: 5348 - type: AsteroidRockMining - components: - - pos: -41.5,75.5 - parent: 0 - type: Transform -- uid: 5349 - type: AsteroidRockMining - components: - - pos: -40.5,74.5 - parent: 0 - type: Transform -- uid: 5350 - type: AsteroidRock - components: - - pos: -38.5,74.5 - parent: 0 - type: Transform -- uid: 5351 - type: AsteroidRockMining - components: - - pos: -37.5,77.5 - parent: 0 - type: Transform -- uid: 5352 - type: AsteroidRockMining - components: - - pos: -37.5,76.5 - parent: 0 - type: Transform -- uid: 5353 - type: AsteroidRock - components: - - pos: -41.5,74.5 - parent: 0 - type: Transform -- uid: 5354 - type: AsteroidRock - components: - - pos: -42.5,74.5 - parent: 0 - type: Transform -- uid: 5355 - type: AsteroidRock - components: - - pos: -43.5,74.5 - parent: 0 - type: Transform -- uid: 5356 - type: AsteroidRock - components: - - pos: -44.5,74.5 - parent: 0 - type: Transform -- uid: 5357 - type: AsteroidRock - components: - - pos: -45.5,74.5 - parent: 0 - type: Transform -- uid: 5358 - type: AsteroidRock - components: - - pos: -45.5,71.5 - parent: 0 - type: Transform -- uid: 5359 - type: AsteroidRock - components: - - pos: -45.5,72.5 - parent: 0 - type: Transform -- uid: 5360 - type: AsteroidRock - components: - - pos: -45.5,73.5 - parent: 0 - type: Transform -- uid: 5361 - type: AsteroidRock - components: - - pos: -44.5,72.5 - parent: 0 - type: Transform -- uid: 5362 - type: AsteroidRock - components: - - pos: -44.5,73.5 - parent: 0 - type: Transform -- uid: 5363 - type: AsteroidRock - components: - - pos: -43.5,72.5 - parent: 0 - type: Transform -- uid: 5364 - type: AsteroidRock - components: - - pos: -43.5,73.5 - parent: 0 - type: Transform -- uid: 5365 - type: AsteroidRock - components: - - pos: -42.5,73.5 - parent: 0 - type: Transform -- uid: 5366 - type: AsteroidRock - components: - - pos: -41.5,73.5 - parent: 0 - type: Transform -- uid: 5367 - type: AsteroidRock - components: - - pos: -40.5,73.5 - parent: 0 - type: Transform -- uid: 5368 - type: AsteroidRock - components: - - pos: -39.5,73.5 - parent: 0 - type: Transform -- uid: 5369 - type: AsteroidRock - components: - - pos: -38.5,73.5 - parent: 0 - type: Transform -- uid: 5370 - type: AsteroidRockMining - components: - - pos: -38.5,75.5 - parent: 0 - type: Transform -- uid: 5371 - type: AsteroidRock - components: - - pos: -42.5,75.5 - parent: 0 - type: Transform -- uid: 5372 - type: AsteroidRock - components: - - pos: -43.5,75.5 - parent: 0 - type: Transform -- uid: 5373 - type: AsteroidRock - components: - - pos: -44.5,75.5 - parent: 0 - type: Transform -- uid: 5374 - type: AsteroidRock - components: - - pos: -45.5,75.5 - parent: 0 - type: Transform -- uid: 5375 - type: AsteroidRock - components: - - pos: -45.5,76.5 - parent: 0 - type: Transform -- uid: 5376 - type: AsteroidRock - components: - - pos: -44.5,76.5 - parent: 0 - type: Transform -- uid: 5377 - type: AsteroidRock - components: - - pos: -43.5,76.5 - parent: 0 - type: Transform -- uid: 5378 - type: AsteroidRock - components: - - pos: -42.5,76.5 - parent: 0 - type: Transform -- uid: 5379 - type: AsteroidRock - components: - - pos: -44.5,77.5 - parent: 0 - type: Transform -- uid: 5380 - type: AsteroidRock - components: - - pos: -43.5,77.5 - parent: 0 - type: Transform -- uid: 5381 - type: AsteroidRock - components: - - pos: -42.5,77.5 - parent: 0 - type: Transform -- uid: 5382 - type: AsteroidRockMining - components: - - pos: -36.5,78.5 - parent: 0 - type: Transform -- uid: 5383 - type: AsteroidRockMining - components: - - pos: -36.5,79.5 - parent: 0 - type: Transform -- uid: 5384 - type: AsteroidRockMining - components: - - pos: -37.5,80.5 - parent: 0 - type: Transform -- uid: 5385 - type: AsteroidRock - components: - - pos: -41.5,80.5 - parent: 0 - type: Transform -- uid: 5386 - type: AsteroidRock - components: - - pos: -41.5,81.5 - parent: 0 - type: Transform -- uid: 5387 - type: AsteroidRock - components: - - pos: -41.5,82.5 - parent: 0 - type: Transform -- uid: 5388 - type: AsteroidRock - components: - - pos: -41.5,83.5 - parent: 0 - type: Transform -- uid: 5389 - type: AsteroidRock - components: - - pos: -41.5,84.5 - parent: 0 - type: Transform -- uid: 5390 - type: AsteroidRock - components: - - pos: -40.5,84.5 - parent: 0 - type: Transform -- uid: 5391 - type: AsteroidRock - components: - - pos: -39.5,84.5 - parent: 0 - type: Transform -- uid: 5392 - type: AsteroidRock - components: - - pos: -38.5,84.5 - parent: 0 - type: Transform -- uid: 5393 - type: AsteroidRockMining - components: - - pos: -38.5,83.5 - parent: 0 - type: Transform -- uid: 5394 - type: AsteroidRockMining - components: - - pos: -37.5,84.5 - parent: 0 - type: Transform -- uid: 5395 - type: AsteroidRock - components: - - pos: -39.5,83.5 - parent: 0 - type: Transform -- uid: 5396 - type: AsteroidRock - components: - - pos: -40.5,83.5 - parent: 0 - type: Transform -- uid: 5397 - type: AsteroidRock - components: - - pos: -40.5,82.5 - parent: 0 - type: Transform -- uid: 5398 - type: AsteroidRock - components: - - pos: -40.5,81.5 - parent: 0 - type: Transform -- uid: 5399 - type: AsteroidRockMining - components: - - pos: -36.5,81.5 - parent: 0 - type: Transform -- uid: 5400 - type: AsteroidRockMining - components: - - pos: -36.5,82.5 - parent: 0 - type: Transform -- uid: 5401 - type: AsteroidRockMining - components: - - pos: -36.5,83.5 - parent: 0 - type: Transform -- uid: 5402 - type: AsteroidRockMining - components: - - pos: -41.5,79.5 - parent: 0 - type: Transform -- uid: 5403 - type: AsteroidRock - components: - - pos: -39.5,70.5 - parent: 0 - type: Transform -- uid: 5404 - type: AsteroidRock - components: - - pos: -38.5,70.5 - parent: 0 - type: Transform -- uid: 5405 - type: AsteroidRock - components: - - pos: -37.5,70.5 - parent: 0 - type: Transform -- uid: 5406 - type: AsteroidRock - components: - - pos: -37.5,71.5 - parent: 0 - type: Transform -- uid: 5407 - type: AsteroidRock - components: - - pos: -34.5,72.5 - parent: 0 - type: Transform -- uid: 5408 - type: AsteroidRock - components: - - pos: -40.5,66.5 - parent: 0 - type: Transform -- uid: 5409 - type: AsteroidRock - components: - - pos: -41.5,66.5 - parent: 0 - type: Transform -- uid: 5410 - type: Pickaxe - components: - - pos: -39.35238,79.29495 - parent: 0 - type: Transform -- uid: 5411 - type: FoodMeatCrab - components: - - pos: -37.752357,78.3262 - parent: 0 - type: Transform -- uid: 5412 - type: Floodlight - components: - - pos: -40.346107,75.63652 - parent: 0 - type: Transform -- uid: 5413 - type: FloodlightBroken - components: - - pos: -37.533607,83.183395 - parent: 0 - type: Transform -- uid: 5414 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: -40.017982,77.66777 - parent: 0 - type: Transform -- uid: 5415 - type: ClothingHeadHelmetEVA - components: - - rot: -1.5707963267948966 rad - pos: -39.002357,80.089645 - parent: 0 - type: Transform -- uid: 5416 - type: ClothingOuterHardsuitEVA - components: - - rot: 1.5707963267948966 rad - pos: -39.689857,76.48027 - parent: 0 - type: Transform -- uid: 5417 - type: ClothingMaskGasExplorer - components: - - rot: -1.5707963267948966 rad - pos: -39.140755,80.23027 - parent: 0 - type: Transform -- uid: 5418 - type: WeaponShotgunHandmade - components: - - rot: -1.5707963267948966 rad - pos: -39.140755,78.51152 - parent: 0 - type: Transform -- uid: 5419 - type: SmallLight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,77.5 - parent: 0 - type: Transform -- uid: 5420 - type: SmallLight - components: - - rot: 3.141592653589793 rad - pos: -37.5,88.5 - parent: 0 - type: Transform -- uid: 5421 - type: SmallLight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,87.5 - parent: 0 - type: Transform -- uid: 5422 - type: SmallLight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,78.5 - parent: 0 - type: Transform -- uid: 5423 - type: SmallLight - components: - - pos: -45.5,67.5 - parent: 0 - type: Transform -- uid: 5424 - type: ReinforcedWindow - components: - - pos: -5.5,72.5 - parent: 0 - type: Transform -- uid: 5425 - type: ReinforcedWindow - components: - - pos: -3.5,72.5 - parent: 0 - type: Transform -- uid: 5426 - type: Grille - components: - - pos: -3.5,76.5 - parent: 0 - type: Transform -- uid: 5427 - type: ReinforcedWindow - components: - - pos: -5.5,76.5 - parent: 0 - type: Transform -- uid: 5428 - type: WallReinforced - components: - - pos: -6.5,77.5 - parent: 0 - type: Transform -- uid: 5429 - type: WallReinforced - components: - - pos: -2.5,77.5 - parent: 0 - type: Transform -- uid: 5430 - type: WallReinforced - components: - - pos: -2.5,76.5 - parent: 0 - type: Transform -- uid: 5431 - type: WallReinforced - components: - - pos: -2.5,75.5 - parent: 0 - type: Transform -- uid: 5432 - type: WallReinforced - components: - - pos: -2.5,74.5 - parent: 0 - type: Transform -- uid: 5433 - type: WallReinforced - components: - - pos: -2.5,73.5 - parent: 0 - type: Transform -- uid: 5434 - type: WallReinforced - components: - - pos: -2.5,72.5 - parent: 0 - type: Transform -- uid: 5435 - type: ReinforcedWindow - components: - - pos: -5.5,67.5 - parent: 0 - type: Transform -- uid: 5436 - type: ReinforcedWindow - components: - - pos: -3.5,67.5 - parent: 0 - type: Transform -- uid: 5437 - type: WallSolid - components: - - pos: -2.5,71.5 - parent: 0 - type: Transform -- uid: 5438 - type: WallSolid - components: - - pos: -2.5,70.5 - parent: 0 - type: Transform -- uid: 5439 - type: WallSolid - components: - - pos: -2.5,68.5 - parent: 0 - type: Transform -- uid: 5440 - type: WallSolid - components: - - pos: -2.5,67.5 - parent: 0 - type: Transform -- uid: 5441 - type: WallSolid - components: - - pos: -2.5,66.5 - parent: 0 - type: Transform -- uid: 5442 - type: WallSolid - components: - - pos: -2.5,65.5 - parent: 0 - type: Transform -- uid: 5443 - type: WallSolid - components: - - pos: -2.5,64.5 - parent: 0 - type: Transform -- uid: 5444 - type: WallSolid - components: - - pos: -2.5,60.5 - parent: 0 - type: Transform -- uid: 5445 - type: WallSolid - components: - - pos: -2.5,59.5 - parent: 0 - type: Transform -- uid: 5446 - type: WallSolid - components: - - pos: -2.5,56.5 - parent: 0 - type: Transform -- uid: 5447 - type: WallSolid - components: - - pos: -1.5,56.5 - parent: 0 - type: Transform -- uid: 5448 - type: WallSolid - components: - - pos: 0.5,56.5 - parent: 0 - type: Transform -- uid: 5449 - type: WallSolid - components: - - pos: -1.5,54.5 - parent: 0 - type: Transform -- uid: 5450 - type: WallSolid - components: - - pos: -1.5,53.5 - parent: 0 - type: Transform -- uid: 5451 - type: WallSolid - components: - - pos: -1.5,52.5 - parent: 0 - type: Transform -- uid: 5452 - type: WallSolid - components: - - pos: -1.5,51.5 - parent: 0 - type: Transform -- uid: 5453 - type: WallSolid - components: - - pos: -2.5,51.5 - parent: 0 - type: Transform -- uid: 5454 - type: WallSolid - components: - - pos: -2.5,49.5 - parent: 0 - type: Transform -- uid: 5455 - type: WallSolid - components: - - pos: -2.5,47.5 - parent: 0 - type: Transform -- uid: 5456 - type: ReinforcedWindow - components: - - pos: -6.5,69.5 - parent: 0 - type: Transform -- uid: 5457 - type: ReinforcedWindow - components: - - pos: -6.5,70.5 - parent: 0 - type: Transform -- uid: 5458 - type: Grille - components: - - pos: -6.5,69.5 - parent: 0 - type: Transform -- uid: 5459 - type: Grille - components: - - pos: -6.5,70.5 - parent: 0 - type: Transform -- uid: 5460 - type: Grille - components: - - pos: -5.5,67.5 - parent: 0 - type: Transform -- uid: 5461 - type: Grille - components: - - pos: -3.5,67.5 - parent: 0 - type: Transform -- uid: 5462 - type: Grille - components: - - pos: -3.5,72.5 - parent: 0 - type: Transform -- uid: 5463 - type: Grille - components: - - pos: -5.5,72.5 - parent: 0 - type: Transform -- uid: 5464 - type: Grille - components: - - pos: -5.5,76.5 - parent: 0 - type: Transform -- uid: 5465 - type: AirlockExternalGlassLocked - components: - - pos: -4.5,76.5 - parent: 0 - type: Transform -- uid: 5466 - type: Grille - components: - - pos: -8.5,76.5 - parent: 0 - type: Transform -- uid: 5467 - type: Grille - components: - - pos: -7.5,76.5 - parent: 0 - type: Transform -- uid: 5468 - type: Grille - components: - - pos: -10.5,76.5 - parent: 0 - type: Transform -- uid: 5469 - type: Grille - components: - - pos: -11.5,76.5 - parent: 0 - type: Transform -- uid: 5470 - type: Grille - components: - - pos: -15.5,77.5 - parent: 0 - type: Transform -- uid: 5471 - type: Grille - components: - - pos: -16.5,77.5 - parent: 0 - type: Transform -- uid: 5472 - type: Grille - components: - - pos: -17.5,77.5 - parent: 0 - type: Transform -- uid: 5473 - type: Grille - components: - - pos: -29.5,54.5 - parent: 0 - type: Transform -- uid: 5474 - type: Grille - components: - - pos: -29.5,55.5 - parent: 0 - type: Transform -- uid: 5475 - type: Grille - components: - - pos: -29.5,56.5 - parent: 0 - type: Transform -- uid: 5476 - type: Grille - components: - - pos: -38.5,52.5 - parent: 0 - type: Transform -- uid: 5477 - type: Grille - components: - - pos: -38.5,54.5 - parent: 0 - type: Transform -- uid: 5478 - type: Grille - components: - - pos: -38.5,55.5 - parent: 0 - type: Transform -- uid: 5479 - type: Grille - components: - - pos: -38.5,56.5 - parent: 0 - type: Transform -- uid: 5480 - type: Grille - components: - - pos: -38.5,58.5 - parent: 0 - type: Transform -- uid: 5481 - type: Grille - components: - - pos: -41.5,62.5 - parent: 0 - type: Transform -- uid: 5482 - type: Grille - components: - - pos: -41.5,63.5 - parent: 0 - type: Transform -- uid: 5483 - type: SubstationBasic - components: - - name: Library Substation - type: MetaData - - pos: -30.5,60.5 - parent: 0 - type: Transform -- uid: 5484 - type: GasPipeFourway - components: - - pos: -5.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5485 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5486 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5487 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5488 - type: GasPipeTJunction - components: - - pos: -9.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5489 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5490 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5491 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -11.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5492 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5493 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5494 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5495 - type: GasPipeFourway - components: - - pos: -21.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5496 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5497 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5498 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5499 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5500 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5501 - type: GasPipeBend - components: - - pos: -21.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5502 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5503 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5504 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -24.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5505 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5506 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5507 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5508 - type: GasPipeTJunction - components: - - pos: -8.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5509 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5510 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5511 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5512 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -13.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5513 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5514 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5515 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5516 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5517 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5518 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5519 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5520 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5521 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5522 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5523 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -24.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5524 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -4.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5525 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -4.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5526 - type: GasPipeBend - components: - - pos: -32.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5527 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -37.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5528 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -37.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5529 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -33.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5530 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5531 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5532 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5533 - type: GasVentScrubber - components: - - pos: -31.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5534 - type: GasPipeBend - components: - - pos: -31.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5535 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5536 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5537 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5538 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5539 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,57.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5540 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5541 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5542 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5543 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5544 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5545 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5546 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5547 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5548 - type: GasPipeStraight - components: - - pos: -32.5,50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5549 - type: GasPipeStraight - components: - - pos: -32.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5550 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -31.5,57.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5551 - type: GasPipeBend - components: - - pos: -24.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5552 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -27.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5553 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -24.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5554 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5555 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5556 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5557 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5558 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5559 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,57.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5560 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5561 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5562 - type: GasPipeStraight - components: - - pos: -27.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5563 - type: GasPipeStraight - components: - - pos: -27.5,60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5564 - type: GasPipeStraight - components: - - pos: -27.5,61.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5565 - type: GasPipeStraight - components: - - pos: -27.5,62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5566 - type: GasPipeStraight - components: - - pos: -27.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5567 - type: GasPipeStraight - components: - - pos: -33.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5568 - type: GasPipeStraight - components: - - pos: -33.5,60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5569 - type: GasPipeStraight - components: - - pos: -33.5,61.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5570 - type: GasPipeStraight - components: - - pos: -33.5,62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5571 - type: GasPipeStraight - components: - - pos: -33.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5572 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -33.5,64.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5573 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -30.5,64.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5574 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -30.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5575 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,64.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5576 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,64.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5577 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5578 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5579 - type: GasPipeStraight - components: - - pos: -27.5,64.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5580 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5581 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -25.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5582 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5583 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5584 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5585 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5586 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,71.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5587 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5588 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5589 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5590 - type: GasPipeTJunction - components: - - pos: -27.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5591 - type: GasPipeStraight - components: - - pos: -25.5,66.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5592 - type: WallSolid - components: - - pos: -27.5,68.5 - parent: 0 - type: Transform -- uid: 5593 - type: WallSolid - components: - - pos: -27.5,67.5 - parent: 0 - type: Transform -- uid: 5594 - type: WallSolidRust - components: - - pos: -27.5,69.5 - parent: 0 - type: Transform -- uid: 5595 - type: WallSolid - components: - - pos: -28.5,66.5 - parent: 0 - type: Transform -- uid: 5596 - type: WallSolid - components: - - pos: -29.5,66.5 - parent: 0 - type: Transform -- uid: 5597 - type: WallSolid - components: - - pos: -27.5,70.5 - parent: 0 - type: Transform -- uid: 5598 - type: WallSolidRust - components: - - pos: -27.5,66.5 - parent: 0 - type: Transform -- uid: 5599 - type: WallSolid - components: - - pos: -33.5,67.5 - parent: 0 - type: Transform -- uid: 5600 - type: WallSolid - components: - - pos: -33.5,68.5 - parent: 0 - type: Transform -- uid: 5601 - type: WallSolid - components: - - pos: -32.5,66.5 - parent: 0 - type: Transform -- uid: 5602 - type: WallSolid - components: - - pos: -33.5,66.5 - parent: 0 - type: Transform -- uid: 5603 - type: WallSolid - components: - - pos: -31.5,66.5 - parent: 0 - type: Transform -- uid: 5604 - type: WallReinforced - components: - - pos: -27.5,71.5 - parent: 0 - type: Transform -- uid: 5605 - type: WallReinforced - components: - - pos: -28.5,71.5 - parent: 0 - type: Transform -- uid: 5606 - type: WallReinforced - components: - - pos: -29.5,71.5 - parent: 0 - type: Transform -- uid: 5607 - type: WallReinforced - components: - - pos: -30.5,71.5 - parent: 0 - type: Transform -- uid: 5608 - type: WallReinforced - components: - - pos: -31.5,71.5 - parent: 0 - type: Transform -- uid: 5609 - type: WallReinforced - components: - - pos: -32.5,71.5 - parent: 0 - type: Transform -- uid: 5610 - type: WallReinforced - components: - - pos: -27.5,72.5 - parent: 0 - type: Transform -- uid: 5611 - type: WallReinforced - components: - - pos: -27.5,74.5 - parent: 0 - type: Transform -- uid: 5612 - type: WallSolid - components: - - pos: -33.5,70.5 - parent: 0 - type: Transform -- uid: 5613 - type: GasPipeStraight - components: - - pos: -25.5,67.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5614 - type: GasPipeStraight - components: - - pos: -25.5,68.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5615 - type: GasPipeStraight - components: - - pos: -25.5,69.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5616 - type: GasPipeStraight - components: - - pos: -25.5,70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5617 - type: GasPipeStraight - components: - - pos: -25.5,71.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5618 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -25.5,72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5619 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,73.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5620 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,73.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5621 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -28.5,73.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5622 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,72.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5623 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -28.5,72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5624 - type: GasPipeBend - components: - - pos: -25.5,73.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5625 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -29.5,72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5626 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,72.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5627 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: -32.5,72.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5628 - type: GasValve - components: - - rot: -1.5707963267948966 rad - pos: -29.5,74.5 - parent: 0 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 5629 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,74.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5630 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,74.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5631 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -32.5,74.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5632 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -28.5,74.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5633 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -30.5,72.5 - parent: 0 - type: Transform -- uid: 5634 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -30.5,73.5 - parent: 0 - type: Transform -- uid: 5635 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -30.5,74.5 - parent: 0 - type: Transform -- uid: 5636 - type: Grille - components: - - pos: -30.5,72.5 - parent: 0 - type: Transform -- uid: 5637 - type: Grille - components: - - pos: -30.5,73.5 - parent: 0 - type: Transform -- uid: 5638 - type: Grille - components: - - pos: -30.5,74.5 - parent: 0 - type: Transform -- uid: 5639 - type: AirCanister - components: - - pos: -28.5,74.5 - parent: 0 - type: Transform -- uid: 5640 - type: GasPipeStraight - components: - - pos: -30.5,66.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5641 - type: GasPipeStraight - components: - - pos: -30.5,67.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5642 - type: GasVentPump - components: - - pos: -30.5,68.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5643 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -28.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5644 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -28.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5645 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -22.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5646 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5647 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,57.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5648 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5649 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5650 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5651 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5652 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5653 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5654 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5655 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5656 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5657 - type: GasPipeTJunction - components: - - pos: -15.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5658 - type: GasVentPump - components: - - pos: -22.5,61.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5659 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -21.5,50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5660 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -15.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5661 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -9.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5662 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -10.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5663 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -8.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5664 - type: GasPipeBend - components: - - pos: -7.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5665 - type: GasPipeStraight - components: - - pos: -8.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5666 - type: GasPipeStraight - components: - - pos: -9.5,53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5667 - type: GasPipeStraight - components: - - pos: -9.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5668 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -10.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5669 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -7.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5670 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5671 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,57.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5672 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5673 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5674 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5675 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -13.5,61.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5676 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5677 - type: GasPipeBend - components: - - pos: -13.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5678 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -16.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5679 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -16.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5680 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,64.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5681 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5682 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5683 - type: GasPipeBend - components: - - pos: -16.5,70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5684 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,66.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5685 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,67.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5686 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,68.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5687 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,69.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5688 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -17.5,70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5689 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,71.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5690 - type: GasPipeTJunction - components: - - pos: -17.5,72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5691 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5692 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5693 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5694 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5695 - type: GasPipeTJunction - components: - - pos: -20.5,72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5696 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5697 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5698 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5699 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5700 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5701 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5702 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5703 - type: GasPipeBend - components: - - pos: -11.5,72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5704 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -11.5,71.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5705 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -16.5,71.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5706 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -20.5,70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5707 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5708 - type: GasPipeStraight - components: - - pos: -20.5,65.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5709 - type: GasPipeStraight - components: - - pos: -20.5,66.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5710 - type: GasPipeBend - components: - - pos: -20.5,67.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5711 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -20.5,64.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5712 - type: GasPipeBend - components: - - pos: -17.5,64.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5713 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -17.5,59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5714 - type: GasPipeStraight - components: - - pos: -17.5,60.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5715 - type: GasPipeStraight - components: - - pos: -17.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5716 - type: GasPipeStraight - components: - - pos: -17.5,62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5717 - type: GasPipeStraight - components: - - pos: -17.5,63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5718 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,64.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5719 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,64.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5720 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -21.5,70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5721 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -21.5,67.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5722 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -8.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5723 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -16.5,61.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5724 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -11.5,59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5725 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -11.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5726 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5727 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5728 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5729 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,58.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5730 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5731 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5732 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5733 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5734 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5735 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,61.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5736 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,61.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5737 - type: GasPipeStraight - components: - - pos: -11.5,60.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5738 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5739 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5740 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5741 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5742 - type: GasPipeStraight - components: - - pos: -9.5,64.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5743 - type: GasPipeStraight - components: - - pos: -9.5,65.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5744 - type: GasPipeStraight - components: - - pos: -9.5,66.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5745 - type: GasPipeStraight - components: - - pos: -9.5,67.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5746 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,68.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5747 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,69.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5748 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,70.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5749 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -11.5,63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5750 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -9.5,63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5751 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -9.5,68.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5752 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -7.5,68.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5753 - type: GasVentScrubber - components: - - pos: -7.5,71.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5754 - type: APCBasic - components: - - pos: -26.5,59.5 - parent: 0 - type: Transform -- uid: 5755 - type: APCBasic - components: - - pos: -18.5,56.5 - parent: 0 - type: Transform -- uid: 5756 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -11.5,53.5 - parent: 0 - type: Transform -- uid: 5757 - type: APCBasic - components: - - pos: -22.5,63.5 - parent: 0 - type: Transform -- uid: 5758 - type: APCBasic - components: - - pos: -20.5,74.5 - parent: 0 - type: Transform -- uid: 5759 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -12.5,71.5 - parent: 0 - type: Transform -- uid: 5760 - type: APCBasic - components: - - pos: -14.5,67.5 - parent: 0 - type: Transform -- uid: 5761 - type: CableApcExtension - components: - - pos: -18.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5762 - type: CableApcExtension - components: - - pos: -18.5,55.5 - parent: 0 - type: Transform -- uid: 5763 - type: CableApcExtension - components: - - pos: -18.5,54.5 - parent: 0 - type: Transform -- uid: 5764 - type: CableApcExtension - components: - - pos: -19.5,54.5 - parent: 0 - type: Transform -- uid: 5765 - type: CableApcExtension - components: - - pos: -20.5,54.5 - parent: 0 - type: Transform -- uid: 5766 - type: CableApcExtension - components: - - pos: -21.5,54.5 - parent: 0 - type: Transform -- uid: 5767 - type: CableApcExtension - components: - - pos: -21.5,53.5 - parent: 0 - type: Transform -- uid: 5768 - type: CableApcExtension - components: - - pos: -21.5,52.5 - parent: 0 - type: Transform -- uid: 5769 - type: CableApcExtension - components: - - pos: -21.5,51.5 - parent: 0 - type: Transform -- uid: 5770 - type: CableApcExtension - components: - - pos: -21.5,50.5 - parent: 0 - type: Transform -- uid: 5771 - type: CableApcExtension - components: - - pos: -21.5,49.5 - parent: 0 - type: Transform -- uid: 5772 - type: CableApcExtension - components: - - pos: -20.5,49.5 - parent: 0 - type: Transform -- uid: 5773 - type: CableApcExtension - components: - - pos: -19.5,49.5 - parent: 0 - type: Transform -- uid: 5774 - type: CableApcExtension - components: - - pos: -18.5,49.5 - parent: 0 - type: Transform -- uid: 5775 - type: CableApcExtension - components: - - pos: -17.5,49.5 - parent: 0 - type: Transform -- uid: 5776 - type: CableApcExtension - components: - - pos: -16.5,49.5 - parent: 0 - type: Transform -- uid: 5777 - type: CableApcExtension - components: - - pos: -15.5,49.5 - parent: 0 - type: Transform -- uid: 5778 - type: CableApcExtension - components: - - pos: -14.5,49.5 - parent: 0 - type: Transform -- uid: 5779 - type: CableApcExtension - components: - - pos: -13.5,49.5 - parent: 0 - type: Transform -- uid: 5780 - type: CableApcExtension - components: - - pos: -17.5,54.5 - parent: 0 - type: Transform -- uid: 5781 - type: CableApcExtension - components: - - pos: -16.5,54.5 - parent: 0 - type: Transform -- uid: 5782 - type: CableApcExtension - components: - - pos: -15.5,54.5 - parent: 0 - type: Transform -- uid: 5783 - type: CableApcExtension - components: - - pos: -15.5,53.5 - parent: 0 - type: Transform -- uid: 5784 - type: CableApcExtension - components: - - pos: -15.5,52.5 - parent: 0 - type: Transform -- uid: 5785 - type: CableApcExtension - components: - - pos: -15.5,51.5 - parent: 0 - type: Transform -- uid: 5786 - type: CableApcExtension - components: - - pos: -15.5,50.5 - parent: 0 - type: Transform -- uid: 5787 - type: CableApcExtension - components: - - pos: -14.5,51.5 - parent: 0 - type: Transform -- uid: 5788 - type: CableApcExtension - components: - - pos: -13.5,51.5 - parent: 0 - type: Transform -- uid: 5789 - type: CableApcExtension - components: - - pos: -21.5,55.5 - parent: 0 - type: Transform -- uid: 5790 - type: CableApcExtension - components: - - pos: -21.5,56.5 - parent: 0 - type: Transform -- uid: 5791 - type: CableApcExtension - components: - - pos: -21.5,57.5 - parent: 0 - type: Transform -- uid: 5792 - type: CableApcExtension - components: - - pos: -22.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5793 - type: CableApcExtension - components: - - pos: -22.5,62.5 - parent: 0 - type: Transform -- uid: 5794 - type: CableApcExtension - components: - - pos: -22.5,61.5 - parent: 0 - type: Transform -- uid: 5795 - type: CableApcExtension - components: - - pos: -22.5,60.5 - parent: 0 - type: Transform -- uid: 5796 - type: CableApcExtension - components: - - pos: -23.5,61.5 - parent: 0 - type: Transform -- uid: 5797 - type: CableApcExtension - components: - - pos: -24.5,61.5 - parent: 0 - type: Transform -- uid: 5798 - type: CableApcExtension - components: - - pos: -26.5,59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5799 - type: CableApcExtension - components: - - pos: -26.5,58.5 - parent: 0 - type: Transform -- uid: 5800 - type: CableApcExtension - components: - - pos: -26.5,57.5 - parent: 0 - type: Transform -- uid: 5801 - type: CableApcExtension - components: - - pos: -26.5,56.5 - parent: 0 - type: Transform -- uid: 5802 - type: CableApcExtension - components: - - pos: -26.5,55.5 - parent: 0 - type: Transform -- uid: 5803 - type: CableApcExtension - components: - - pos: -26.5,54.5 - parent: 0 - type: Transform -- uid: 5804 - type: CableApcExtension - components: - - pos: -26.5,53.5 - parent: 0 - type: Transform -- uid: 5805 - type: CableApcExtension - components: - - pos: -27.5,53.5 - parent: 0 - type: Transform -- uid: 5806 - type: CableApcExtension - components: - - pos: -27.5,57.5 - parent: 0 - type: Transform -- uid: 5807 - type: CableApcExtension - components: - - pos: -25.5,55.5 - parent: 0 - type: Transform -- uid: 5808 - type: CableApcExtension - components: - - pos: -24.5,55.5 - parent: 0 - type: Transform -- uid: 5809 - type: CableApcExtension - components: - - pos: -11.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5810 - type: CableApcExtension - components: - - pos: -11.5,54.5 - parent: 0 - type: Transform -- uid: 5811 - type: CableApcExtension - components: - - pos: -11.5,55.5 - parent: 0 - type: Transform -- uid: 5812 - type: CableApcExtension - components: - - pos: -12.5,55.5 - parent: 0 - type: Transform -- uid: 5813 - type: CableApcExtension - components: - - pos: -13.5,55.5 - parent: 0 - type: Transform -- uid: 5814 - type: CableApcExtension - components: - - pos: -10.5,55.5 - parent: 0 - type: Transform -- uid: 5815 - type: CableApcExtension - components: - - pos: -9.5,55.5 - parent: 0 - type: Transform -- uid: 5816 - type: CableApcExtension - components: - - pos: -8.5,55.5 - parent: 0 - type: Transform -- uid: 5817 - type: CableApcExtension - components: - - pos: -7.5,55.5 - parent: 0 - type: Transform -- uid: 5818 - type: CableApcExtension - components: - - pos: -6.5,55.5 - parent: 0 - type: Transform -- uid: 5819 - type: CableApcExtension - components: - - pos: -8.5,54.5 - parent: 0 - type: Transform -- uid: 5820 - type: CableApcExtension - components: - - pos: -8.5,53.5 - parent: 0 - type: Transform -- uid: 5821 - type: CableApcExtension - components: - - pos: -8.5,52.5 - parent: 0 - type: Transform -- uid: 5822 - type: CableApcExtension - components: - - pos: -8.5,51.5 - parent: 0 - type: Transform -- uid: 5823 - type: CableApcExtension - components: - - pos: -8.5,50.5 - parent: 0 - type: Transform -- uid: 5824 - type: CableApcExtension - components: - - pos: -8.5,49.5 - parent: 0 - type: Transform -- uid: 5825 - type: CableApcExtension - components: - - pos: -8.5,48.5 - parent: 0 - type: Transform -- uid: 5826 - type: CableApcExtension - components: - - pos: -5.5,55.5 - parent: 0 - type: Transform -- uid: 5827 - type: CableApcExtension - components: - - pos: -4.5,55.5 - parent: 0 - type: Transform -- uid: 5828 - type: CableApcExtension - components: - - pos: -4.5,56.5 - parent: 0 - type: Transform -- uid: 5829 - type: CableApcExtension - components: - - pos: -4.5,57.5 - parent: 0 - type: Transform -- uid: 5830 - type: CableApcExtension - components: - - pos: -4.5,54.5 - parent: 0 - type: Transform -- uid: 5831 - type: CableApcExtension - components: - - pos: -4.5,53.5 - parent: 0 - type: Transform -- uid: 5832 - type: CableApcExtension - components: - - pos: -4.5,52.5 - parent: 0 - type: Transform -- uid: 5833 - type: CableApcExtension - components: - - pos: -4.5,51.5 - parent: 0 - type: Transform -- uid: 5834 - type: CableApcExtension - components: - - pos: -14.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5835 - type: CableApcExtension - components: - - pos: -14.5,66.5 - parent: 0 - type: Transform -- uid: 5836 - type: CableApcExtension - components: - - pos: -15.5,66.5 - parent: 0 - type: Transform -- uid: 5837 - type: CableApcExtension - components: - - pos: -16.5,66.5 - parent: 0 - type: Transform -- uid: 5838 - type: CableApcExtension - components: - - pos: -16.5,65.5 - parent: 0 - type: Transform -- uid: 5839 - type: CableApcExtension - components: - - pos: -17.5,65.5 - parent: 0 - type: Transform -- uid: 5840 - type: CableApcExtension - components: - - pos: -18.5,65.5 - parent: 0 - type: Transform -- uid: 5841 - type: CableApcExtension - components: - - pos: -19.5,65.5 - parent: 0 - type: Transform -- uid: 5842 - type: CableApcExtension - components: - - pos: -20.5,65.5 - parent: 0 - type: Transform -- uid: 5843 - type: CableApcExtension - components: - - pos: -15.5,65.5 - parent: 0 - type: Transform -- uid: 5844 - type: CableApcExtension - components: - - pos: -15.5,64.5 - parent: 0 - type: Transform -- uid: 5845 - type: CableApcExtension - components: - - pos: -15.5,63.5 - parent: 0 - type: Transform -- uid: 5846 - type: CableApcExtension - components: - - pos: -14.5,63.5 - parent: 0 - type: Transform -- uid: 5847 - type: CableApcExtension - components: - - pos: -13.5,63.5 - parent: 0 - type: Transform -- uid: 5848 - type: CableApcExtension - components: - - pos: -12.5,63.5 - parent: 0 - type: Transform -- uid: 5849 - type: CableApcExtension - components: - - pos: -11.5,63.5 - parent: 0 - type: Transform -- uid: 5850 - type: CableApcExtension - components: - - pos: -10.5,63.5 - parent: 0 - type: Transform -- uid: 5851 - type: CableApcExtension - components: - - pos: -9.5,63.5 - parent: 0 - type: Transform -- uid: 5852 - type: CableApcExtension - components: - - pos: -9.5,64.5 - parent: 0 - type: Transform -- uid: 5853 - type: CableApcExtension - components: - - pos: -9.5,65.5 - parent: 0 - type: Transform -- uid: 5854 - type: CableApcExtension - components: - - pos: -9.5,66.5 - parent: 0 - type: Transform -- uid: 5855 - type: CableApcExtension - components: - - pos: -8.5,66.5 - parent: 0 - type: Transform -- uid: 5856 - type: CableApcExtension - components: - - pos: -15.5,62.5 - parent: 0 - type: Transform -- uid: 5857 - type: CableApcExtension - components: - - pos: -15.5,61.5 - parent: 0 - type: Transform -- uid: 5858 - type: CableApcExtension - components: - - pos: -15.5,60.5 - parent: 0 - type: Transform -- uid: 5859 - type: CableApcExtension - components: - - pos: -15.5,59.5 - parent: 0 - type: Transform -- uid: 5860 - type: CableApcExtension - components: - - pos: -9.5,62.5 - parent: 0 - type: Transform -- uid: 5861 - type: CableApcExtension - components: - - pos: -9.5,61.5 - parent: 0 - type: Transform -- uid: 5862 - type: CableApcExtension - components: - - pos: -9.5,60.5 - parent: 0 - type: Transform -- uid: 5863 - type: CableApcExtension - components: - - pos: -9.5,59.5 - parent: 0 - type: Transform -- uid: 5864 - type: CableApcExtension - components: - - pos: -10.5,59.5 - parent: 0 - type: Transform -- uid: 5865 - type: CableApcExtension - components: - - pos: -10.5,58.5 - parent: 0 - type: Transform -- uid: 5866 - type: CableApcExtension - components: - - pos: -14.5,59.5 - parent: 0 - type: Transform -- uid: 5867 - type: CableApcExtension - components: - - pos: -14.5,58.5 - parent: 0 - type: Transform -- uid: 5868 - type: CableApcExtension - components: - - pos: -12.5,71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5869 - type: CableApcExtension - components: - - pos: -11.5,71.5 - parent: 0 - type: Transform -- uid: 5870 - type: CableApcExtension - components: - - pos: -10.5,71.5 - parent: 0 - type: Transform -- uid: 5871 - type: CableApcExtension - components: - - pos: -9.5,71.5 - parent: 0 - type: Transform -- uid: 5872 - type: CableApcExtension - components: - - pos: -9.5,70.5 - parent: 0 - type: Transform -- uid: 5873 - type: CableApcExtension - components: - - pos: -9.5,69.5 - parent: 0 - type: Transform -- uid: 5874 - type: CableApcExtension - components: - - pos: -9.5,68.5 - parent: 0 - type: Transform -- uid: 5875 - type: CableApcExtension - components: - - pos: -9.5,72.5 - parent: 0 - type: Transform -- uid: 5876 - type: CableApcExtension - components: - - pos: -9.5,73.5 - parent: 0 - type: Transform -- uid: 5877 - type: CableApcExtension - components: - - pos: -9.5,74.5 - parent: 0 - type: Transform -- uid: 5878 - type: CableApcExtension - components: - - pos: -9.5,75.5 - parent: 0 - type: Transform -- uid: 5879 - type: CableApcExtension - components: - - pos: -10.5,69.5 - parent: 0 - type: Transform -- uid: 5880 - type: CableApcExtension - components: - - pos: -11.5,69.5 - parent: 0 - type: Transform -- uid: 5881 - type: CableApcExtension - components: - - pos: -20.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5882 - type: CableApcExtension - components: - - pos: -20.5,73.5 - parent: 0 - type: Transform -- uid: 5883 - type: CableApcExtension - components: - - pos: -20.5,72.5 - parent: 0 - type: Transform -- uid: 5884 - type: CableApcExtension - components: - - pos: -20.5,71.5 - parent: 0 - type: Transform -- uid: 5885 - type: CableApcExtension - components: - - pos: -20.5,70.5 - parent: 0 - type: Transform -- uid: 5886 - type: CableApcExtension - components: - - pos: -20.5,69.5 - parent: 0 - type: Transform -- uid: 5887 - type: CableApcExtension - components: - - pos: -20.5,68.5 - parent: 0 - type: Transform -- uid: 5888 - type: CableApcExtension - components: - - pos: -19.5,72.5 - parent: 0 - type: Transform -- uid: 5889 - type: CableApcExtension - components: - - pos: -18.5,72.5 - parent: 0 - type: Transform -- uid: 5890 - type: CableApcExtension - components: - - pos: -17.5,72.5 - parent: 0 - type: Transform -- uid: 5891 - type: CableApcExtension - components: - - pos: -16.5,72.5 - parent: 0 - type: Transform -- uid: 5892 - type: CableApcExtension - components: - - pos: -16.5,71.5 - parent: 0 - type: Transform -- uid: 5893 - type: CableApcExtension - components: - - pos: -16.5,70.5 - parent: 0 - type: Transform -- uid: 5894 - type: CableApcExtension - components: - - pos: -16.5,69.5 - parent: 0 - type: Transform -- uid: 5895 - type: CableApcExtension - components: - - pos: -16.5,73.5 - parent: 0 - type: Transform -- uid: 5896 - type: CableApcExtension - components: - - pos: -16.5,74.5 - parent: 0 - type: Transform -- uid: 5897 - type: CableApcExtension - components: - - pos: -16.5,75.5 - parent: 0 - type: Transform -- uid: 5898 - type: CableApcExtension - components: - - pos: -16.5,76.5 - parent: 0 - type: Transform -- uid: 5899 - type: CableApcExtension - components: - - pos: -15.5,75.5 - parent: 0 - type: Transform -- uid: 5900 - type: CableApcExtension - components: - - pos: -14.5,75.5 - parent: 0 - type: Transform -- uid: 5901 - type: APCBasic - components: - - pos: -34.5,59.5 - parent: 0 - type: Transform -- uid: 5902 - type: CableApcExtension - components: - - pos: -13.5,75.5 - parent: 0 - type: Transform -- uid: 5903 - type: CableApcExtension - components: - - pos: -17.5,76.5 - parent: 0 - type: Transform -- uid: 5904 - type: CableApcExtension - components: - - pos: -18.5,76.5 - parent: 0 - type: Transform -- uid: 5905 - type: CableApcExtension - components: - - pos: -19.5,76.5 - parent: 0 - type: Transform -- uid: 5906 - type: CableApcExtension - components: - - pos: -20.5,76.5 - parent: 0 - type: Transform -- uid: 5907 - type: CableApcExtension - components: - - pos: -21.5,76.5 - parent: 0 - type: Transform -- uid: 5908 - type: CableApcExtension - components: - - pos: -21.5,75.5 - parent: 0 - type: Transform -- uid: 5909 - type: CableApcExtension - components: - - pos: -21.5,72.5 - parent: 0 - type: Transform -- uid: 5910 - type: CableApcExtension - components: - - pos: -22.5,72.5 - parent: 0 - type: Transform -- uid: 5911 - type: CableApcExtension - components: - - pos: -23.5,72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5912 - type: CableApcExtension - components: - - pos: -24.5,72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5913 - type: CableApcExtension - components: - - pos: -25.5,72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5914 - type: CableApcExtension - components: - - pos: -25.5,73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5915 - type: CableApcExtension - components: - - pos: -25.5,71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5916 - type: CableApcExtension - components: - - pos: -25.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5917 - type: CableApcExtension - components: - - pos: -25.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5918 - type: CableApcExtension - components: - - pos: -25.5,68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5919 - type: CableApcExtension - components: - - pos: -25.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5920 - type: CableApcExtension - components: - - pos: -27.5,59.5 - parent: 0 - type: Transform -- uid: 5921 - type: CableApcExtension - components: - - pos: -27.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5922 - type: CableApcExtension - components: - - pos: -27.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5923 - type: CableApcExtension - components: - - pos: -27.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5924 - type: CableApcExtension - components: - - pos: -27.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5925 - type: CableApcExtension - components: - - pos: -27.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5926 - type: CableApcExtension - components: - - pos: -21.5,65.5 - parent: 0 - type: Transform -- uid: 5927 - type: CableApcExtension - components: - - pos: -22.5,65.5 - parent: 0 - type: Transform -- uid: 5928 - type: CableApcExtension - components: - - pos: -23.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5929 - type: CableApcExtension - components: - - pos: -24.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5930 - type: CableApcExtension - components: - - pos: -34.5,59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5931 - type: CableApcExtension - components: - - pos: -34.5,58.5 - parent: 0 - type: Transform -- uid: 5932 - type: CableApcExtension - components: - - pos: -35.5,58.5 - parent: 0 - type: Transform -- uid: 5933 - type: CableApcExtension - components: - - pos: -36.5,58.5 - parent: 0 - type: Transform -- uid: 5934 - type: CableApcExtension - components: - - pos: -37.5,58.5 - parent: 0 - type: Transform -- uid: 5935 - type: CableApcExtension - components: - - pos: -37.5,57.5 - parent: 0 - type: Transform -- uid: 5936 - type: CableApcExtension - components: - - pos: -37.5,56.5 - parent: 0 - type: Transform -- uid: 5937 - type: CableApcExtension - components: - - pos: -37.5,55.5 - parent: 0 - type: Transform -- uid: 5938 - type: CableApcExtension - components: - - pos: -37.5,54.5 - parent: 0 - type: Transform -- uid: 5939 - type: CableApcExtension - components: - - pos: -37.5,53.5 - parent: 0 - type: Transform -- uid: 5940 - type: CableApcExtension - components: - - pos: -33.5,58.5 - parent: 0 - type: Transform -- uid: 5941 - type: CableApcExtension - components: - - pos: -32.5,58.5 - parent: 0 - type: Transform -- uid: 5942 - type: CableApcExtension - components: - - pos: -31.5,58.5 - parent: 0 - type: Transform -- uid: 5943 - type: CableApcExtension - components: - - pos: -31.5,57.5 - parent: 0 - type: Transform -- uid: 5944 - type: CableApcExtension - components: - - pos: -31.5,56.5 - parent: 0 - type: Transform -- uid: 5945 - type: CableApcExtension - components: - - pos: -31.5,55.5 - parent: 0 - type: Transform -- uid: 5946 - type: CableApcExtension - components: - - pos: -31.5,54.5 - parent: 0 - type: Transform -- uid: 5947 - type: CableApcExtension - components: - - pos: -31.5,53.5 - parent: 0 - type: Transform -- uid: 5948 - type: CableApcExtension - components: - - pos: -31.5,52.5 - parent: 0 - type: Transform -- uid: 5949 - type: CableApcExtension - components: - - pos: -31.5,51.5 - parent: 0 - type: Transform -- uid: 5950 - type: CableApcExtension - components: - - pos: -31.5,50.5 - parent: 0 - type: Transform -- uid: 5951 - type: CableApcExtension - components: - - pos: -32.5,50.5 - parent: 0 - type: Transform -- uid: 5952 - type: CableApcExtension - components: - - pos: -32.5,49.5 - parent: 0 - type: Transform -- uid: 5953 - type: CableApcExtension - components: - - pos: -32.5,48.5 - parent: 0 - type: Transform -- uid: 5954 - type: CableApcExtension - components: - - pos: -32.5,47.5 - parent: 0 - type: Transform -- uid: 5955 - type: CableApcExtension - components: - - pos: -32.5,46.5 - parent: 0 - type: Transform -- uid: 5956 - type: CableApcExtension - components: - - pos: -32.5,45.5 - parent: 0 - type: Transform -- uid: 5957 - type: CableApcExtension - components: - - pos: -32.5,44.5 - parent: 0 - type: Transform -- uid: 5958 - type: CableApcExtension - components: - - pos: -32.5,43.5 - parent: 0 - type: Transform -- uid: 5959 - type: CableApcExtension - components: - - pos: -31.5,45.5 - parent: 0 - type: Transform -- uid: 5960 - type: CableApcExtension - components: - - pos: -33.5,59.5 - parent: 0 - type: Transform -- uid: 5961 - type: CableApcExtension - components: - - pos: -33.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5962 - type: CableApcExtension - components: - - pos: -33.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5963 - type: CableApcExtension - components: - - pos: -33.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5964 - type: CableApcExtension - components: - - pos: -33.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5965 - type: CableApcExtension - components: - - pos: -33.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5966 - type: CableApcExtension - components: - - pos: -33.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5967 - type: CableApcExtension - components: - - pos: -34.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5968 - type: CableApcExtension - components: - - pos: -34.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5969 - type: CableApcExtension - components: - - pos: -34.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5970 - type: CableApcExtension - components: - - pos: -35.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5971 - type: CableApcExtension - components: - - pos: -36.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5972 - type: CableApcExtension - components: - - pos: -37.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5973 - type: CableApcExtension - components: - - pos: -38.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5974 - type: CableApcExtension - components: - - pos: -32.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5975 - type: CableApcExtension - components: - - pos: -31.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5976 - type: CableApcExtension - components: - - pos: -30.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5977 - type: CableApcExtension - components: - - pos: -29.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5978 - type: CableApcExtension - components: - - pos: -26.5,73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5979 - type: CableApcExtension - components: - - pos: -27.5,73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5980 - type: CableApcExtension - components: - - pos: -28.5,73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5981 - type: CableApcExtension - components: - - pos: -29.5,73.5 - parent: 0 - type: Transform -- uid: 5982 - type: CableApcExtension - components: - - pos: -30.5,73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5983 - type: CableApcExtension - components: - - pos: -30.5,72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5984 - type: CableApcExtension - components: - - pos: -30.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5985 - type: CableApcExtension - components: - - pos: -30.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5986 - type: CableApcExtension - components: - - pos: -30.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5987 - type: CableApcExtension - components: - - pos: -30.5,68.5 - parent: 0 - type: Transform -- uid: 5988 - type: ReinforcedWindow - components: - - pos: -33.5,50.5 - parent: 0 - type: Transform -- uid: 5989 - type: ReinforcedWindow - components: - - pos: -30.5,50.5 - parent: 0 - type: Transform -- uid: 5990 - type: Grille - components: - - pos: -33.5,50.5 - parent: 0 - type: Transform -- uid: 5991 - type: Grille - components: - - pos: -30.5,50.5 - parent: 0 - type: Transform -- uid: 5992 - type: DisposalUnit - components: - - pos: -33.5,51.5 - parent: 0 - type: Transform -- uid: 5993 - type: DisposalUnit - components: - - pos: -28.5,58.5 - parent: 0 - type: Transform -- uid: 5994 - type: DisposalUnit - components: - - pos: -15.5,66.5 - parent: 0 - type: Transform -- uid: 5995 - type: DisposalUnit - components: - - pos: -13.5,76.5 - parent: 0 - type: Transform -- uid: 5996 - type: DisposalTrunk - components: - - pos: -13.5,76.5 - parent: 0 - type: Transform -- uid: 5997 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -15.5,66.5 - parent: 0 - type: Transform -- uid: 5998 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -28.5,58.5 - parent: 0 - type: Transform -- uid: 5999 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -33.5,51.5 - parent: 0 - type: Transform -- uid: 6000 - type: DisposalBend - components: - - pos: -32.5,51.5 - parent: 0 - type: Transform -- uid: 6001 - type: DisposalPipe - components: - - pos: -32.5,50.5 - parent: 0 - type: Transform -- uid: 6002 - type: DisposalPipe - components: - - pos: -32.5,49.5 - parent: 0 - type: Transform -- uid: 6003 - type: DisposalPipe - components: - - pos: -32.5,48.5 - parent: 0 - type: Transform -- uid: 6004 - type: DisposalPipe - components: - - pos: -32.5,47.5 - parent: 0 - type: Transform -- uid: 6005 - type: DisposalPipe - components: - - pos: -32.5,46.5 - parent: 0 - type: Transform -- uid: 6006 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -32.5,45.5 - parent: 0 - type: Transform -- uid: 6007 - type: DisposalBend - components: - - pos: -24.5,58.5 - parent: 0 - type: Transform -- uid: 6008 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -24.5,55.5 - parent: 0 - type: Transform -- uid: 6009 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,58.5 - parent: 0 - type: Transform -- uid: 6010 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -26.5,58.5 - parent: 0 - type: Transform -- uid: 6011 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,58.5 - parent: 0 - type: Transform -- uid: 6012 - type: DisposalPipe - components: - - pos: -24.5,57.5 - parent: 0 - type: Transform -- uid: 6013 - type: DisposalPipe - components: - - pos: -24.5,56.5 - parent: 0 - type: Transform -- uid: 6014 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,55.5 - parent: 0 - type: Transform -- uid: 6015 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,55.5 - parent: 0 - type: Transform -- uid: 6016 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,55.5 - parent: 0 - type: Transform -- uid: 6017 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,55.5 - parent: 0 - type: Transform -- uid: 6018 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,55.5 - parent: 0 - type: Transform -- uid: 6019 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,55.5 - parent: 0 - type: Transform -- uid: 6020 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,55.5 - parent: 0 - type: Transform -- uid: 6021 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,55.5 - parent: 0 - type: Transform -- uid: 6022 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,55.5 - parent: 0 - type: Transform -- uid: 6023 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,55.5 - parent: 0 - type: Transform -- uid: 6024 - type: DisposalJunctionFlipped - components: - - pos: -16.5,66.5 - parent: 0 - type: Transform -- uid: 6025 - type: DisposalPipe - components: - - pos: -16.5,67.5 - parent: 0 - type: Transform -- uid: 6026 - type: DisposalPipe - components: - - pos: -16.5,68.5 - parent: 0 - type: Transform -- uid: 6027 - type: DisposalPipe - components: - - pos: -16.5,69.5 - parent: 0 - type: Transform -- uid: 6028 - type: DisposalPipe - components: - - pos: -16.5,70.5 - parent: 0 - type: Transform -- uid: 6029 - type: DisposalPipe - components: - - pos: -16.5,71.5 - parent: 0 - type: Transform -- uid: 6030 - type: DisposalPipe - components: - - pos: -16.5,72.5 - parent: 0 - type: Transform -- uid: 6031 - type: DisposalPipe - components: - - pos: -16.5,73.5 - parent: 0 - type: Transform -- uid: 6032 - type: DisposalPipe - components: - - pos: -16.5,74.5 - parent: 0 - type: Transform -- uid: 6033 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,75.5 - parent: 0 - type: Transform -- uid: 6034 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,75.5 - parent: 0 - type: Transform -- uid: 6035 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -13.5,75.5 - parent: 0 - type: Transform -- uid: 6036 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -16.5,75.5 - parent: 0 - type: Transform -- uid: 6037 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -16.5,58.5 - parent: 0 - type: Transform -- uid: 6038 - type: DisposalBend - components: - - pos: -13.5,58.5 - parent: 0 - type: Transform -- uid: 6039 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,58.5 - parent: 0 - type: Transform -- uid: 6040 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,58.5 - parent: 0 - type: Transform -- uid: 6041 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,59.5 - parent: 0 - type: Transform -- uid: 6042 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,60.5 - parent: 0 - type: Transform -- uid: 6043 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,61.5 - parent: 0 - type: Transform -- uid: 6044 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,62.5 - parent: 0 - type: Transform -- uid: 6045 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,63.5 - parent: 0 - type: Transform -- uid: 6046 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,64.5 - parent: 0 - type: Transform -- uid: 6047 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,65.5 - parent: 0 - type: Transform -- uid: 6048 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -13.5,57.5 - parent: 0 - type: Transform -- uid: 6049 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -13.5,56.5 - parent: 0 - type: Transform -- uid: 6050 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -13.5,55.5 - parent: 0 - type: Transform -- uid: 6051 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,55.5 - parent: 0 - type: Transform -- uid: 6052 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,55.5 - parent: 0 - type: Transform -- uid: 6053 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,55.5 - parent: 0 - type: Transform -- uid: 6054 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,55.5 - parent: 0 - type: Transform -- uid: 6055 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,55.5 - parent: 0 - type: Transform -- uid: 6056 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,55.5 - parent: 0 - type: Transform -- uid: 6057 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,55.5 - parent: 0 - type: Transform -- uid: 6058 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,55.5 - parent: 0 - type: Transform -- uid: 6059 - type: DisposalJunction - components: - - pos: -4.5,55.5 - parent: 0 - type: Transform -- uid: 6060 - type: DisposalPipe - components: - - pos: -4.5,54.5 - parent: 0 - type: Transform -- uid: 6061 - type: DisposalPipe - components: - - pos: -4.5,53.5 - parent: 0 - type: Transform -- uid: 6062 - type: DisposalPipe - components: - - pos: -4.5,52.5 - parent: 0 - type: Transform -- uid: 6063 - type: DisposalPipe - components: - - pos: -4.5,51.5 - parent: 0 - type: Transform -- uid: 6064 - type: DisposalPipe - components: - - pos: -4.5,50.5 - parent: 0 - type: Transform -- uid: 6065 - type: DisposalPipe - components: - - pos: -4.5,49.5 - parent: 0 - type: Transform -- uid: 6066 - type: DisposalPipe - components: - - pos: -4.5,48.5 - parent: 0 - type: Transform -- uid: 6067 - type: DisposalPipe - components: - - pos: -4.5,47.5 - parent: 0 - type: Transform -- uid: 6068 - type: DisposalPipe - components: - - pos: -4.5,46.5 - parent: 0 - type: Transform -- uid: 6069 - type: CableMV - components: - - pos: -30.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6070 - type: CableMV - components: - - pos: -30.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6071 - type: CableMV - components: - - pos: -30.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6072 - type: CableMV - components: - - pos: -30.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6073 - type: CableMV - components: - - pos: -30.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6074 - type: CableMV - components: - - pos: -31.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6075 - type: CableMV - components: - - pos: -32.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6076 - type: CableMV - components: - - pos: -33.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6077 - type: CableMV - components: - - pos: -33.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6078 - type: CableMV - components: - - pos: -33.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6079 - type: CableMV - components: - - pos: -33.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6080 - type: CableMV - components: - - pos: -33.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6081 - type: CableMV - components: - - pos: -33.5,59.5 - parent: 0 - type: Transform -- uid: 6082 - type: CableMV - components: - - pos: -34.5,59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6083 - type: CableMV - components: - - pos: -29.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6084 - type: CableMV - components: - - pos: -28.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6085 - type: CableMV - components: - - pos: -27.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6086 - type: CableMV - components: - - pos: -27.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6087 - type: CableMV - components: - - pos: -27.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6088 - type: CableMV - components: - - pos: -27.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6089 - type: CableMV - components: - - pos: -27.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6090 - type: CableMV - components: - - pos: -27.5,59.5 - parent: 0 - type: Transform -- uid: 6091 - type: CableMV - components: - - pos: -26.5,59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6092 - type: CableMV - components: - - pos: -26.5,58.5 - parent: 0 - type: Transform -- uid: 6093 - type: CableMV - components: - - pos: -25.5,58.5 - parent: 0 - type: Transform -- uid: 6094 - type: CableMV - components: - - pos: -24.5,58.5 - parent: 0 - type: Transform -- uid: 6095 - type: CableMV - components: - - pos: -24.5,57.5 - parent: 0 - type: Transform -- uid: 6096 - type: CableMV - components: - - pos: -24.5,56.5 - parent: 0 - type: Transform -- uid: 6097 - type: CableMV - components: - - pos: -24.5,55.5 - parent: 0 - type: Transform -- uid: 6098 - type: CableMV - components: - - pos: -23.5,55.5 - parent: 0 - type: Transform -- uid: 6099 - type: CableMV - components: - - pos: -22.5,55.5 - parent: 0 - type: Transform -- uid: 6100 - type: CableMV - components: - - pos: -21.5,55.5 - parent: 0 - type: Transform -- uid: 6101 - type: CableMV - components: - - pos: -20.5,55.5 - parent: 0 - type: Transform -- uid: 6102 - type: CableMV - components: - - pos: -19.5,55.5 - parent: 0 - type: Transform -- uid: 6103 - type: CableMV - components: - - pos: -18.5,55.5 - parent: 0 - type: Transform -- uid: 6104 - type: CableMV - components: - - pos: -18.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6105 - type: CableMV - components: - - pos: -22.5,56.5 - parent: 0 - type: Transform -- uid: 6106 - type: CableMV - components: - - pos: -22.5,57.5 - parent: 0 - type: Transform -- uid: 6107 - type: CableMV - components: - - pos: -22.5,58.5 - parent: 0 - type: Transform -- uid: 6108 - type: CableMV - components: - - pos: -22.5,59.5 - parent: 0 - type: Transform -- uid: 6109 - type: CableMV - components: - - pos: -22.5,60.5 - parent: 0 - type: Transform -- uid: 6110 - type: CableMV - components: - - pos: -22.5,61.5 - parent: 0 - type: Transform -- uid: 6111 - type: CableMV - components: - - pos: -22.5,62.5 - parent: 0 - type: Transform -- uid: 6112 - type: CableMV - components: - - pos: -22.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6113 - type: CableMV - components: - - pos: -17.5,55.5 - parent: 0 - type: Transform -- uid: 6114 - type: CableMV - components: - - pos: -16.5,55.5 - parent: 0 - type: Transform -- uid: 6115 - type: CableMV - components: - - pos: -15.5,55.5 - parent: 0 - type: Transform -- uid: 6116 - type: CableMV - components: - - pos: -14.5,55.5 - parent: 0 - type: Transform -- uid: 6117 - type: CableMV - components: - - pos: -13.5,55.5 - parent: 0 - type: Transform -- uid: 6118 - type: CableMV - components: - - pos: -12.5,55.5 - parent: 0 - type: Transform -- uid: 6119 - type: CableMV - components: - - pos: -11.5,55.5 - parent: 0 - type: Transform -- uid: 6120 - type: CableMV - components: - - pos: -11.5,54.5 - parent: 0 - type: Transform -- uid: 6121 - type: CableMV - components: - - pos: -11.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6122 - type: CableMV - components: - - pos: -13.5,56.5 - parent: 0 - type: Transform -- uid: 6123 - type: CableMV - components: - - pos: -13.5,57.5 - parent: 0 - type: Transform -- uid: 6124 - type: CableMV - components: - - pos: -13.5,58.5 - parent: 0 - type: Transform -- uid: 6125 - type: CableMV - components: - - pos: -13.5,59.5 - parent: 0 - type: Transform -- uid: 6126 - type: CableMV - components: - - pos: -13.5,60.5 - parent: 0 - type: Transform -- uid: 6127 - type: CableMV - components: - - pos: -13.5,61.5 - parent: 0 - type: Transform -- uid: 6128 - type: CableMV - components: - - pos: -13.5,62.5 - parent: 0 - type: Transform -- uid: 6129 - type: CableMV - components: - - pos: -13.5,63.5 - parent: 0 - type: Transform -- uid: 6130 - type: CableMV - components: - - pos: -13.5,64.5 - parent: 0 - type: Transform -- uid: 6131 - type: CableMV - components: - - pos: -13.5,65.5 - parent: 0 - type: Transform -- uid: 6132 - type: CableMV - components: - - pos: -13.5,66.5 - parent: 0 - type: Transform -- uid: 6133 - type: CableMV - components: - - pos: -14.5,66.5 - parent: 0 - type: Transform -- uid: 6134 - type: CableMV - components: - - pos: -14.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6135 - type: CableMV - components: - - pos: -14.5,65.5 - parent: 0 - type: Transform -- uid: 6136 - type: CableMV - components: - - pos: -15.5,65.5 - parent: 0 - type: Transform -- uid: 6137 - type: CableMV - components: - - pos: -16.5,65.5 - parent: 0 - type: Transform -- uid: 6138 - type: CableMV - components: - - pos: -17.5,65.5 - parent: 0 - type: Transform -- uid: 6139 - type: CableMV - components: - - pos: -18.5,65.5 - parent: 0 - type: Transform -- uid: 6140 - type: CableMV - components: - - pos: -19.5,65.5 - parent: 0 - type: Transform -- uid: 6141 - type: CableMV - components: - - pos: -20.5,65.5 - parent: 0 - type: Transform -- uid: 6142 - type: CableMV - components: - - pos: -21.5,65.5 - parent: 0 - type: Transform -- uid: 6143 - type: CableMV - components: - - pos: -22.5,65.5 - parent: 0 - type: Transform -- uid: 6144 - type: CableMV - components: - - pos: -23.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6145 - type: CableMV - components: - - pos: -24.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6146 - type: CableMV - components: - - pos: -25.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6147 - type: CableMV - components: - - pos: -26.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6148 - type: CableMV - components: - - pos: -27.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6149 - type: CableMV - components: - - pos: -25.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6150 - type: CableMV - components: - - pos: -25.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6151 - type: CableMV - components: - - pos: -25.5,68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6152 - type: CableMV - components: - - pos: -25.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6153 - type: CableMV - components: - - pos: -25.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6154 - type: CableMV - components: - - pos: -25.5,71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6155 - type: CableMV - components: - - pos: -25.5,72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6156 - type: CableMV - components: - - pos: -24.5,72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6157 - type: CableMV - components: - - pos: -23.5,72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6158 - type: CableMV - components: - - pos: -22.5,72.5 - parent: 0 - type: Transform -- uid: 6159 - type: CableMV - components: - - pos: -21.5,72.5 - parent: 0 - type: Transform -- uid: 6160 - type: CableMV - components: - - pos: -20.5,72.5 - parent: 0 - type: Transform -- uid: 6161 - type: CableMV - components: - - pos: -20.5,73.5 - parent: 0 - type: Transform -- uid: 6162 - type: CableMV - components: - - pos: -20.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6163 - type: CableMV - components: - - pos: -19.5,72.5 - parent: 0 - type: Transform -- uid: 6164 - type: CableMV - components: - - pos: -18.5,72.5 - parent: 0 - type: Transform -- uid: 6165 - type: CableMV - components: - - pos: -17.5,72.5 - parent: 0 - type: Transform -- uid: 6166 - type: CableMV - components: - - pos: -16.5,72.5 - parent: 0 - type: Transform -- uid: 6167 - type: CableMV - components: - - pos: -15.5,72.5 - parent: 0 - type: Transform -- uid: 6168 - type: CableMV - components: - - pos: -14.5,72.5 - parent: 0 - type: Transform -- uid: 6169 - type: CableMV - components: - - pos: -13.5,72.5 - parent: 0 - type: Transform -- uid: 6170 - type: CableMV - components: - - pos: -12.5,72.5 - parent: 0 - type: Transform -- uid: 6171 - type: CableMV - components: - - pos: -12.5,71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6172 - type: CableMV - components: - - pos: -16.5,66.5 - parent: 0 - type: Transform -- uid: 6173 - type: CableMV - components: - - pos: -16.5,67.5 - parent: 0 - type: Transform -- uid: 6174 - type: CableMV - components: - - pos: -16.5,68.5 - parent: 0 - type: Transform -- uid: 6175 - type: CableMV - components: - - pos: -16.5,69.5 - parent: 0 - type: Transform -- uid: 6176 - type: CableMV - components: - - pos: -16.5,70.5 - parent: 0 - type: Transform -- uid: 6177 - type: CableMV - components: - - pos: -16.5,71.5 - parent: 0 - type: Transform -- uid: 6178 - type: CableApcExtension - components: - - pos: -24.5,42.5 - parent: 0 - type: Transform -- uid: 6179 - type: CableApcExtension - components: - - pos: -24.5,43.5 - parent: 0 - type: Transform -- uid: 6180 - type: CableApcExtension - components: - - pos: -24.5,44.5 - parent: 0 - type: Transform -- uid: 6181 - type: CableApcExtension - components: - - pos: -24.5,45.5 - parent: 0 - type: Transform -- uid: 6182 - type: CableApcExtension - components: - - pos: -25.5,45.5 - parent: 0 - type: Transform -- uid: 6183 - type: CableApcExtension - components: - - pos: -26.5,45.5 - parent: 0 - type: Transform -- uid: 6184 - type: CableApcExtension - components: - - pos: -27.5,45.5 - parent: 0 - type: Transform -- uid: 6185 - type: CableApcExtension - components: - - pos: -27.5,46.5 - parent: 0 - type: Transform -- uid: 6186 - type: CableApcExtension - components: - - pos: -27.5,47.5 - parent: 0 - type: Transform -- uid: 6187 - type: CableApcExtension - components: - - pos: -27.5,48.5 - parent: 0 - type: Transform -- uid: 6188 - type: CableApcExtension - components: - - pos: -27.5,49.5 - parent: 0 - type: Transform -- uid: 6189 - type: CableApcExtension - components: - - pos: -26.5,49.5 - parent: 0 - type: Transform -- uid: 6190 - type: CableApcExtension - components: - - pos: -23.5,45.5 - parent: 0 - type: Transform -- uid: 6191 - type: CableApcExtension - components: - - pos: -22.5,45.5 - parent: 0 - type: Transform -- uid: 6192 - type: CableApcExtension - components: - - pos: -21.5,45.5 - parent: 0 - type: Transform -- uid: 6193 - type: CableApcExtension - components: - - pos: -20.5,45.5 - parent: 0 - type: Transform -- uid: 6194 - type: CableApcExtension - components: - - pos: -19.5,43.5 - parent: 0 - type: Transform -- uid: 6195 - type: CableApcExtension - components: - - pos: -19.5,44.5 - parent: 0 - type: Transform -- uid: 6196 - type: CableApcExtension - components: - - pos: -19.5,45.5 - parent: 0 - type: Transform -- uid: 6197 - type: CableApcExtension - components: - - pos: -11.5,42.5 - parent: 0 - type: Transform -- uid: 6198 - type: CableApcExtension - components: - - pos: -11.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6199 - type: CableApcExtension - components: - - pos: -11.5,44.5 - parent: 0 - type: Transform -- uid: 6200 - type: CableApcExtension - components: - - pos: -11.5,45.5 - parent: 0 - type: Transform -- uid: 6201 - type: CableApcExtension - components: - - pos: -12.5,45.5 - parent: 0 - type: Transform -- uid: 6202 - type: CableApcExtension - components: - - pos: -13.5,45.5 - parent: 0 - type: Transform -- uid: 6203 - type: CableApcExtension - components: - - pos: -8.5,42.5 - parent: 0 - type: Transform -- uid: 6204 - type: CableApcExtension - components: - - pos: -8.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6205 - type: CableApcExtension - components: - - pos: -8.5,44.5 - parent: 0 - type: Transform -- uid: 6206 - type: CableApcExtension - components: - - pos: -8.5,45.5 - parent: 0 - type: Transform -- uid: 6207 - type: CableApcExtension - components: - - pos: -9.5,45.5 - parent: 0 - type: Transform -- uid: 6208 - type: CableApcExtension - components: - - pos: -10.5,45.5 - parent: 0 - type: Transform -- uid: 6209 - type: CableApcExtension - components: - - pos: -7.5,45.5 - parent: 0 - type: Transform -- uid: 6210 - type: CableApcExtension - components: - - pos: -14.5,45.5 - parent: 0 - type: Transform -- uid: 6211 - type: CableApcExtension - components: - - pos: -18.5,45.5 - parent: 0 - type: Transform -- uid: 6212 - type: CableApcExtension - components: - - pos: -4.5,50.5 - parent: 0 - type: Transform -- uid: 6213 - type: CableApcExtension - components: - - pos: -4.5,49.5 - parent: 0 - type: Transform -- uid: 6214 - type: CableApcExtension - components: - - pos: -4.5,48.5 - parent: 0 - type: Transform -- uid: 6215 - type: CableApcExtension - components: - - pos: -4.5,47.5 - parent: 0 - type: Transform -- uid: 6216 - type: CableApcExtension - components: - - pos: -4.5,46.5 - parent: 0 - type: Transform -- uid: 6217 - type: CableApcExtension - components: - - pos: -4.5,45.5 - parent: 0 - type: Transform -- uid: 6218 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -6.5,50.5 - parent: 0 - type: Transform -- uid: 6219 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -29.5,37.5 - parent: 0 - type: Transform -- uid: 6220 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -35.5,33.5 - parent: 0 - type: Transform -- uid: 6221 - type: SignSpace - components: - - pos: -38.5,39.5 - parent: 0 - type: Transform -- uid: 6222 - type: SignSpace - components: - - pos: -38.5,35.5 - parent: 0 - type: Transform -- uid: 6223 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -12.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6224 - type: GasVentScrubber - components: - - pos: -11.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6225 - type: AirSensor - components: - - pos: -10.5,45.5 - parent: 0 - type: Transform -- uid: 6226 - type: AirAlarm - components: - - pos: -11.5,47.5 - parent: 0 - type: Transform - - devices: - - 1811 - - 1812 - - 1813 - - 1808 - - 1809 - - 1810 - - 6225 - - 6223 - - 6224 - type: DeviceList -- uid: 6227 - type: FireAlarm - components: - - pos: -14.5,47.5 - parent: 0 - type: Transform - - devices: - - 1811 - - 1812 - - 1813 - - 1808 - - 1809 - - 1810 - - 6225 - type: DeviceList -- uid: 6228 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -33.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6229 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -30.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6230 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -34.5,46.5 - parent: 0 - type: Transform - - devices: - - 3953 - - 3952 - - 3951 - - 4604 - - 4605 - - 4603 - type: DeviceList -- uid: 6231 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -29.5,47.5 - parent: 0 - type: Transform - - devices: - - 3953 - - 3952 - - 3951 - - 4604 - - 4605 - - 4603 - - 6229 - - 6228 - type: DeviceList -- uid: 6232 - type: AirlockGlass - components: - - pos: -32.5,50.5 - parent: 0 - type: Transform -- uid: 6233 - type: AirlockGlass - components: - - pos: -31.5,50.5 - parent: 0 - type: Transform -- uid: 6234 - type: AirlockGlass - components: - - pos: -32.5,41.5 - parent: 0 - type: Transform -- uid: 6235 - type: AirlockGlass - components: - - pos: -31.5,41.5 - parent: 0 - type: Transform -- uid: 6236 - type: Poweredlight - components: - - pos: -26.5,50.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6237 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,57.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6238 - type: Poweredlight - components: - - pos: -21.5,46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6239 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6240 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,57.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6241 - type: PoweredSmallLight - components: - - pos: -19.5,62.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6242 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -19.5,60.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6243 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -19.5,48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6244 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,52.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6245 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -11.5,54.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6246 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,61.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6247 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,61.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6248 - type: Poweredlight - components: - - pos: -10.5,66.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6249 - type: Poweredlight - components: - - pos: -14.5,66.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6250 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,72.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6251 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,69.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6252 - type: PoweredSmallLight - components: - - pos: -13.5,52.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6253 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -13.5,48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6254 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,49.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6255 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,56.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6256 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,57.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6257 - type: PoweredSmallLight - components: - - pos: -24.5,62.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6258 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,69.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6259 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,69.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6260 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,74.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6261 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,74.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6262 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,45.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6263 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,52.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6264 - type: Poweredlight - components: - - pos: -12.5,46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6265 - type: FirelockGlass - components: - - pos: -23.5,54.5 - parent: 0 - type: Transform -- uid: 6266 - type: FirelockGlass - components: - - pos: -23.5,55.5 - parent: 0 - type: Transform -- uid: 6267 - type: FirelockGlass - components: - - pos: -14.5,54.5 - parent: 0 - type: Transform -- uid: 6268 - type: FirelockGlass - components: - - pos: -14.5,55.5 - parent: 0 - type: Transform -- uid: 6269 - type: FirelockGlass - components: - - pos: -6.5,54.5 - parent: 0 - type: Transform -- uid: 6270 - type: FirelockGlass - components: - - pos: -6.5,55.5 - parent: 0 - type: Transform -- uid: 6271 - type: FirelockGlass - components: - - pos: -11.5,57.5 - parent: 0 - type: Transform -- uid: 6272 - type: FirelockGlass - components: - - pos: -13.5,57.5 - parent: 0 - type: Transform -- uid: 6273 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -14.5,52.5 - parent: 0 - type: Transform - - devices: - - 6266 - - 6265 - - 6267 - - 6268 - - 6288 - - 5659 - - 5660 - type: DeviceList -- uid: 6274 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -27.5,51.5 - parent: 0 - type: Transform - - devices: - - 6265 - - 6266 - - 6289 - - 5644 - - 5643 - type: DeviceList -- uid: 6275 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -18.5,63.5 - parent: 0 - type: Transform - - devices: - - invalid - - 6272 - - 6271 - - 5723 - - 5722 - - 6292 - type: DeviceList -- uid: 6276 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -11.5,50.5 - parent: 0 - type: Transform - - devices: - - 6278 - - 6279 - - 6291 - type: DeviceList -- uid: 6277 - type: AirAlarm - components: - - pos: -7.5,53.5 - parent: 0 - type: Transform - - devices: - - 6278 - - 6279 - - 5668 - - 5669 - type: DeviceList -- uid: 6278 - type: FirelockGlass - components: - - pos: -9.5,53.5 - parent: 0 - type: Transform -- uid: 6279 - type: FirelockGlass - components: - - pos: -8.5,53.5 - parent: 0 - type: Transform -- uid: 6280 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -14.5,53.5 - parent: 0 - type: Transform - - devices: - - 6266 - - 6265 - - 6267 - - 6268 - - 6288 - type: DeviceList -- uid: 6281 - type: FireAlarm - components: - - pos: -25.5,59.5 - parent: 0 - type: Transform - - devices: - - 6265 - - 6266 - - 6289 - type: DeviceList -- uid: 6282 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -18.5,59.5 - parent: 0 - type: Transform - - devices: - - invalid - - 6272 - - 6271 - - 6292 - type: DeviceList -- uid: 6283 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -23.5,58.5 - parent: 0 - type: Transform - - devices: - - 6266 - - 6265 - - 6267 - - 6268 - - 6288 - type: DeviceList -- uid: 6284 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -20.5,75.5 - parent: 0 - type: Transform - - devices: - - 5705 - type: DeviceList -- uid: 6285 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -19.5,66.5 - parent: 0 - type: Transform - - devices: - - 5721 - - 5720 - type: DeviceList -- uid: 6286 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -6.5,72.5 - parent: 0 - type: Transform - - devices: - - 5753 - - 5704 - type: DeviceList -- uid: 6287 - type: AirSensor - components: - - pos: -10.5,55.5 - parent: 0 - type: Transform -- uid: 6288 - type: AirSensor - components: - - pos: -19.5,50.5 - parent: 0 - type: Transform -- uid: 6289 - type: AirSensor - components: - - pos: -26.5,55.5 - parent: 0 - type: Transform -- uid: 6290 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -12.5,53.5 - parent: 0 - type: Transform - - devices: - - 6287 - - 6278 - - 6279 - - 6269 - - 6270 - - 6267 - - 6268 - - 6272 - - 6271 - type: DeviceList -- uid: 6291 - type: AirSensor - components: - - pos: -10.5,48.5 - parent: 0 - type: Transform -- uid: 6292 - type: AirSensor - components: - - pos: -12.5,61.5 - parent: 0 - type: Transform -- uid: 6293 - type: AirAlarm - components: - - pos: -30.5,59.5 - parent: 0 - type: Transform - - devices: - - 5533 - - 5550 - type: DeviceList -- uid: 6294 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -30.5,54.5 - parent: 0 - type: Transform -- uid: 6295 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -30.5,55.5 - parent: 0 - type: Transform -- uid: 6296 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -30.5,56.5 - parent: 0 - type: Transform -- uid: 6297 - type: ClosetEmergencyFilledRandom - components: - - pos: -30.5,51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6298 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -36.5,59.5 - parent: 0 - type: Transform -- uid: 6299 - type: RandomVending - components: - - pos: -35.5,59.5 - parent: 0 - type: Transform -- uid: 6300 - type: RandomVending - components: - - pos: -37.5,59.5 - parent: 0 - type: Transform -- uid: 6301 - type: FloraTree03 - components: - - pos: -34.318974,55.41485 - parent: 0 - type: Transform -- uid: 6302 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -31.5,53.5 - parent: 0 - type: Transform -- uid: 6303 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -31.5,54.5 - parent: 0 - type: Transform -- uid: 6304 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -31.5,55.5 - parent: 0 - type: Transform -- uid: 6305 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -31.5,56.5 - parent: 0 - type: Transform -- uid: 6306 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -31.5,57.5 - parent: 0 - type: Transform -- uid: 6307 - type: SignKiddiePlaque - components: - - rot: 1.5707963267948966 rad - pos: -23.5,51.5 - parent: 0 - type: Transform -- uid: 6308 - type: SignKiddiePlaque - components: - - pos: -13.5,53.5 - parent: 0 - type: Transform -- uid: 6309 - type: TableWood - components: - - pos: -12.5,48.5 - parent: 0 - type: Transform -- uid: 6310 - type: TableWood - components: - - pos: -12.5,49.5 - parent: 0 - type: Transform -- uid: 6311 - type: TableWood - components: - - pos: -12.5,51.5 - parent: 0 - type: Transform -- uid: 6312 - type: TableWood - components: - - pos: -12.5,52.5 - parent: 0 - type: Transform -- uid: 6313 - type: LampGold - components: - - pos: -12.440687,51.878906 - parent: 0 - type: Transform -- uid: 6314 - type: LampGold - components: - - pos: -12.456312,49.76953 - parent: 0 - type: Transform -- uid: 6315 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -13.5,52.5 - parent: 0 - type: Transform -- uid: 6316 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -13.5,48.5 - parent: 0 - type: Transform -- uid: 6317 - type: BoxFolderYellow - components: - - pos: -12.518812,52.51953 - parent: 0 - type: Transform -- uid: 6318 - type: BoxFolderGrey - components: - - pos: -12.456312,48.70703 - parent: 0 - type: Transform -- uid: 6319 - type: TableWood - components: - - pos: -22.5,48.5 - parent: 0 - type: Transform -- uid: 6320 - type: TableWood - components: - - pos: -19.5,48.5 - parent: 0 - type: Transform -- uid: 6321 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -15.5,48.5 - parent: 0 - type: Transform -- uid: 6322 - type: PottedPlant6 - components: - - pos: -18.518812,48.23389 - parent: 0 - type: Transform -- uid: 6323 - type: FaxMachineBase - components: - - pos: -22.5,48.5 - parent: 0 - type: Transform - - name: Library - type: FaxMachine -- uid: 6324 - type: Carpet - components: - - pos: -22.5,54.5 - parent: 0 - type: Transform -- uid: 6325 - type: Carpet - components: - - pos: -22.5,55.5 - parent: 0 - type: Transform -- uid: 6326 - type: Carpet - components: - - pos: -21.5,54.5 - parent: 0 - type: Transform -- uid: 6327 - type: Carpet - components: - - pos: -21.5,55.5 - parent: 0 - type: Transform -- uid: 6328 - type: Carpet - components: - - pos: -20.5,54.5 - parent: 0 - type: Transform -- uid: 6329 - type: Carpet - components: - - pos: -20.5,55.5 - parent: 0 - type: Transform -- uid: 6330 - type: Carpet - components: - - pos: -19.5,54.5 - parent: 0 - type: Transform -- uid: 6331 - type: Carpet - components: - - pos: -19.5,55.5 - parent: 0 - type: Transform -- uid: 6332 - type: Carpet - components: - - pos: -18.5,54.5 - parent: 0 - type: Transform -- uid: 6333 - type: Carpet - components: - - pos: -18.5,55.5 - parent: 0 - type: Transform -- uid: 6334 - type: Carpet - components: - - pos: -17.5,54.5 - parent: 0 - type: Transform -- uid: 6335 - type: Carpet - components: - - pos: -17.5,55.5 - parent: 0 - type: Transform -- uid: 6336 - type: Carpet - components: - - pos: -16.5,54.5 - parent: 0 - type: Transform -- uid: 6337 - type: Carpet - components: - - pos: -16.5,55.5 - parent: 0 - type: Transform -- uid: 6338 - type: Carpet - components: - - pos: -15.5,54.5 - parent: 0 - type: Transform -- uid: 6339 - type: Carpet - components: - - pos: -15.5,55.5 - parent: 0 - type: Transform -- uid: 6340 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,56.5 - parent: 0 - type: Transform -- uid: 6341 - type: WaterCooler - components: - - pos: -15.5,56.5 - parent: 0 - type: Transform -- uid: 6342 - type: Table - components: - - pos: -16.5,56.5 - parent: 0 - type: Transform -- uid: 6343 - type: DrinkWaterCup - components: - - pos: -16.565687,56.64949 - parent: 0 - type: Transform -- uid: 6344 - type: DrinkWaterCup - components: - - pos: -16.456312,56.58699 - parent: 0 - type: Transform -- uid: 6345 - type: DrinkWaterCup - components: - - pos: -16.315687,56.49324 - parent: 0 - type: Transform -- uid: 6346 - type: SpawnPointLibrarian - components: - - pos: -22.5,61.5 - parent: 0 - type: Transform -- uid: 6347 - type: SignLibrary - components: - - pos: -14.5,56.5 - parent: 0 - type: Transform -- uid: 6348 - type: AirlockServiceLocked - components: - - pos: -22.5,59.5 - parent: 0 - type: Transform -- uid: 6349 - type: Fireplace - components: - - pos: -23.5,62.5 - parent: 0 - type: Transform -- uid: 6350 - type: ExtinguisherCabinetFilled - components: - - pos: -14.5,69.5 - parent: 0 - type: Transform -- uid: 6351 - type: ExtinguisherCabinetFilled - components: - - pos: -12.5,73.5 - parent: 0 - type: Transform -- uid: 6352 - type: ExtinguisherCabinetFilled - components: - - pos: -18.5,61.5 - parent: 0 - type: Transform -- uid: 6353 - type: TableCarpet - components: - - pos: -19.5,56.5 - parent: 0 - type: Transform -- uid: 6354 - type: TableCarpet - components: - - pos: -20.5,56.5 - parent: 0 - type: Transform -- uid: 6355 - type: TableCarpet - components: - - pos: -21.5,56.5 - parent: 0 - type: Transform -- uid: 6356 - type: WindoorServiceLocked - components: - - pos: -22.5,56.5 - parent: 0 - type: Transform -- uid: 6357 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -21.5,56.5 - parent: 0 - type: Transform -- uid: 6358 - type: BaseComputer - components: - - rot: -1.5707963267948966 rad - pos: -19.5,57.5 - parent: 0 - type: Transform -- uid: 6359 - type: filingCabinetDrawerRandom - components: - - pos: -19.5,58.5 - parent: 0 - type: Transform -- uid: 6360 - type: TableWood - components: - - pos: -20.5,58.5 - parent: 0 - type: Transform -- uid: 6361 - type: TableWood - components: - - pos: -21.5,58.5 - parent: 0 - type: Transform -- uid: 6362 - type: ChairOfficeDark - components: - - pos: -20.5,57.5 - parent: 0 - type: Transform -- uid: 6363 - type: PaperBin5 - components: - - pos: -20.5,58.5 - parent: 0 - type: Transform -- uid: 6364 - type: LampGold - components: - - pos: -21.410488,56.800785 - parent: 0 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 6365 - type: BedsheetSpawner - components: - - pos: -21.5,61.5 - parent: 0 - type: Transform -- uid: 6366 - type: ComfyChair - components: - - pos: -22.5,62.5 - parent: 0 - type: Transform -- uid: 6367 - type: Bookshelf - components: - - pos: -25.5,62.5 - parent: 0 - type: Transform -- uid: 6368 - type: filingCabinetRandom - components: - - pos: -25.5,61.5 - parent: 0 - type: Transform -- uid: 6369 - type: TableWood - components: - - pos: -25.5,60.5 - parent: 0 - type: Transform -- uid: 6370 - type: TableWood - components: - - pos: -24.5,60.5 - parent: 0 - type: Transform -- uid: 6371 - type: TableWood - components: - - pos: -21.5,60.5 - parent: 0 - type: Transform -- uid: 6372 - type: TableWood - components: - - pos: -21.5,62.5 - parent: 0 - type: Transform -- uid: 6373 - type: Bed - components: - - pos: -21.5,61.5 - parent: 0 - type: Transform -- uid: 6374 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.45984,60.52834 - parent: 0 - type: Transform -- uid: 6375 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -19.45662,48.464584 - parent: 0 - type: Transform -- uid: 6376 - type: ClothingNeckScarfStripedGreen - components: - - pos: -24.551466,60.443665 - parent: 0 - type: Transform -- uid: 6377 - type: BooksBag - components: - - pos: -21.520216,62.52179 - parent: 0 - type: Transform -- uid: 6378 - type: ClothingEyesGlasses - components: - - pos: -21.535841,60.61554 - parent: 0 - type: Transform -- uid: 6379 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: -24.5,58.5 - parent: 0 - type: Transform -- uid: 6380 - type: AirlockMaintLocked - components: - - pos: -27.5,59.5 - parent: 0 - type: Transform -- uid: 6381 - type: AirlockMaintLocked - components: - - pos: -33.5,59.5 - parent: 0 - type: Transform -- uid: 6382 - type: AirlockMaintLocked - components: - - pos: -22.5,65.5 - parent: 0 - type: Transform -- uid: 6383 - type: AirlockMaintChapelLocked - components: - - pos: -22.5,72.5 - parent: 0 - type: Transform -- uid: 6384 - type: CableApcExtension - components: - - pos: -30.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6385 - type: CableApcExtension - components: - - pos: -30.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6386 - type: CableApcExtension - components: - - pos: -30.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6387 - type: CableApcExtension - components: - - pos: -30.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6388 - type: AirlockEngineeringLocked - components: - - pos: -30.5,63.5 - parent: 0 - type: Transform -- uid: 6389 - type: CableHV - components: - - pos: -19.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6390 - type: CableHV - components: - - pos: -19.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6391 - type: CableHV - components: - - pos: -19.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6392 - type: CableHV - components: - - pos: -19.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6393 - type: CableHV - components: - - pos: -19.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6394 - type: CableHV - components: - - pos: -19.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6395 - type: CableHV - components: - - pos: -19.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6396 - type: CableHV - components: - - pos: -19.5,42.5 - parent: 0 - type: Transform -- uid: 6397 - type: CableHV - components: - - pos: -19.5,43.5 - parent: 0 - type: Transform -- uid: 6398 - type: CableHV - components: - - pos: -19.5,44.5 - parent: 0 - type: Transform -- uid: 6399 - type: CableHV - components: - - pos: -19.5,45.5 - parent: 0 - type: Transform -- uid: 6400 - type: CableHV - components: - - pos: -19.5,46.5 - parent: 0 - type: Transform -- uid: 6401 - type: CableHV - components: - - pos: -20.5,46.5 - parent: 0 - type: Transform -- uid: 6402 - type: CableHV - components: - - pos: -21.5,46.5 - parent: 0 - type: Transform -- uid: 6403 - type: CableHV - components: - - pos: -22.5,46.5 - parent: 0 - type: Transform -- uid: 6404 - type: CableHV - components: - - pos: -23.5,46.5 - parent: 0 - type: Transform -- uid: 6405 - type: CableHV - components: - - pos: -24.5,46.5 - parent: 0 - type: Transform -- uid: 6406 - type: CableHV - components: - - pos: -25.5,46.5 - parent: 0 - type: Transform -- uid: 6407 - type: CableHV - components: - - pos: -26.5,46.5 - parent: 0 - type: Transform -- uid: 6408 - type: CableHV - components: - - pos: -27.5,46.5 - parent: 0 - type: Transform -- uid: 6409 - type: CableHV - components: - - pos: -28.5,46.5 - parent: 0 - type: Transform -- uid: 6410 - type: CableHV - components: - - pos: -29.5,46.5 - parent: 0 - type: Transform -- uid: 6411 - type: CableHV - components: - - pos: -30.5,46.5 - parent: 0 - type: Transform -- uid: 6412 - type: CableHV - components: - - pos: -31.5,46.5 - parent: 0 - type: Transform -- uid: 6413 - type: CableHV - components: - - pos: -31.5,47.5 - parent: 0 - type: Transform -- uid: 6414 - type: CableHV - components: - - pos: -31.5,48.5 - parent: 0 - type: Transform -- uid: 6415 - type: CableHV - components: - - pos: -31.5,49.5 - parent: 0 - type: Transform -- uid: 6416 - type: CableHV - components: - - pos: -31.5,50.5 - parent: 0 - type: Transform -- uid: 6417 - type: CableHV - components: - - pos: -31.5,51.5 - parent: 0 - type: Transform -- uid: 6418 - type: CableHV - components: - - pos: -31.5,52.5 - parent: 0 - type: Transform -- uid: 6419 - type: CableHV - components: - - pos: -31.5,53.5 - parent: 0 - type: Transform -- uid: 6420 - type: CableHV - components: - - pos: -31.5,54.5 - parent: 0 - type: Transform -- uid: 6421 - type: CableHV - components: - - pos: -31.5,55.5 - parent: 0 - type: Transform -- uid: 6422 - type: CableHV - components: - - pos: -31.5,56.5 - parent: 0 - type: Transform -- uid: 6423 - type: CableHV - components: - - pos: -31.5,57.5 - parent: 0 - type: Transform -- uid: 6424 - type: CableHV - components: - - pos: -31.5,58.5 - parent: 0 - type: Transform -- uid: 6425 - type: CableHV - components: - - pos: -32.5,58.5 - parent: 0 - type: Transform -- uid: 6426 - type: CableHV - components: - - pos: -33.5,58.5 - parent: 0 - type: Transform -- uid: 6427 - type: CableHV - components: - - pos: -33.5,59.5 - parent: 0 - type: Transform -- uid: 6428 - type: CableHV - components: - - pos: -33.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6429 - type: CableHV - components: - - pos: -33.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6430 - type: CableHV - components: - - pos: -33.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6431 - type: CableHV - components: - - pos: -33.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6432 - type: CableHV - components: - - pos: -33.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6433 - type: CableHV - components: - - pos: -32.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6434 - type: CableHV - components: - - pos: -31.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6435 - type: CableHV - components: - - pos: -30.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6436 - type: CableHV - components: - - pos: -30.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6437 - type: CableHV - components: - - pos: -30.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6438 - type: CableHV - components: - - pos: -30.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6439 - type: CableHV - components: - - pos: -30.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6440 - type: CableHV - components: - - pos: -30.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6441 - type: CableHV - components: - - pos: -29.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6442 - type: CableHV - components: - - pos: -28.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6443 - type: CableHV - components: - - pos: -27.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6444 - type: CableHV - components: - - pos: -26.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6445 - type: CableHV - components: - - pos: -25.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6446 - type: CableHV - components: - - pos: -24.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6447 - type: CableHV - components: - - pos: -23.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6448 - type: CableHV - components: - - pos: -22.5,65.5 - parent: 0 - type: Transform -- uid: 6449 - type: CableHV - components: - - pos: -21.5,65.5 - parent: 0 - type: Transform -- uid: 6450 - type: CableHV - components: - - pos: -20.5,65.5 - parent: 0 - type: Transform -- uid: 6451 - type: CableHV - components: - - pos: -19.5,65.5 - parent: 0 - type: Transform -- uid: 6452 - type: CableHV - components: - - pos: -18.5,65.5 - parent: 0 - type: Transform -- uid: 6453 - type: CableHV - components: - - pos: -17.5,65.5 - parent: 0 - type: Transform -- uid: 6454 - type: CableHV - components: - - pos: -16.5,65.5 - parent: 0 - type: Transform -- uid: 6455 - type: CableHV - components: - - pos: -15.5,65.5 - parent: 0 - type: Transform -- uid: 6456 - type: CableHV - components: - - pos: -14.5,65.5 - parent: 0 - type: Transform -- uid: 6457 - type: CableHV - components: - - pos: -13.5,65.5 - parent: 0 - type: Transform -- uid: 6458 - type: CableHV - components: - - pos: -12.5,65.5 - parent: 0 - type: Transform -- uid: 6459 - type: CableHV - components: - - pos: -12.5,64.5 - parent: 0 - type: Transform -- uid: 6460 - type: CableHV - components: - - pos: -12.5,63.5 - parent: 0 - type: Transform -- uid: 6461 - type: CableHV - components: - - pos: -12.5,62.5 - parent: 0 - type: Transform -- uid: 6462 - type: CableHV - components: - - pos: -12.5,61.5 - parent: 0 - type: Transform -- uid: 6463 - type: CableHV - components: - - pos: -12.5,60.5 - parent: 0 - type: Transform -- uid: 6464 - type: CableHV - components: - - pos: -12.5,59.5 - parent: 0 - type: Transform -- uid: 6465 - type: CableHV - components: - - pos: -12.5,58.5 - parent: 0 - type: Transform -- uid: 6466 - type: CableHV - components: - - pos: -12.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6467 - type: CableHV - components: - - pos: -12.5,56.5 - parent: 0 - type: Transform -- uid: 6468 - type: CableHV - components: - - pos: -12.5,55.5 - parent: 0 - type: Transform -- uid: 6469 - type: CableHV - components: - - pos: -11.5,55.5 - parent: 0 - type: Transform -- uid: 6470 - type: CableHV - components: - - pos: -10.5,55.5 - parent: 0 - type: Transform -- uid: 6471 - type: CableHV - components: - - pos: -9.5,55.5 - parent: 0 - type: Transform -- uid: 6472 - type: CableHV - components: - - pos: -8.5,55.5 - parent: 0 - type: Transform -- uid: 6473 - type: CableHV - components: - - pos: -7.5,55.5 - parent: 0 - type: Transform -- uid: 6474 - type: CableHV - components: - - pos: -6.5,55.5 - parent: 0 - type: Transform -- uid: 6475 - type: CableHV - components: - - pos: -5.5,55.5 - parent: 0 - type: Transform -- uid: 6476 - type: CableHV - components: - - pos: -4.5,55.5 - parent: 0 - type: Transform -- uid: 6477 - type: CableHV - components: - - pos: -4.5,54.5 - parent: 0 - type: Transform -- uid: 6478 - type: CableHV - components: - - pos: -4.5,53.5 - parent: 0 - type: Transform -- uid: 6479 - type: CableHV - components: - - pos: -4.5,52.5 - parent: 0 - type: Transform -- uid: 6480 - type: CableHV - components: - - pos: -4.5,51.5 - parent: 0 - type: Transform -- uid: 6481 - type: CableHV - components: - - pos: -4.5,50.5 - parent: 0 - type: Transform -- uid: 6482 - type: CableHV - components: - - pos: -4.5,49.5 - parent: 0 - type: Transform -- uid: 6483 - type: CableHV - components: - - pos: -4.5,48.5 - parent: 0 - type: Transform -- uid: 6484 - type: CableHV - components: - - pos: -4.5,47.5 - parent: 0 - type: Transform -- uid: 6485 - type: CableHV - components: - - pos: -4.5,46.5 - parent: 0 - type: Transform -- uid: 6486 - type: CableHV - components: - - pos: -5.5,46.5 - parent: 0 - type: Transform -- uid: 6487 - type: CableHV - components: - - pos: -6.5,46.5 - parent: 0 - type: Transform -- uid: 6488 - type: CableHV - components: - - pos: -7.5,46.5 - parent: 0 - type: Transform -- uid: 6489 - type: CableHV - components: - - pos: -8.5,46.5 - parent: 0 - type: Transform -- uid: 6490 - type: CableHV - components: - - pos: -9.5,46.5 - parent: 0 - type: Transform -- uid: 6491 - type: CableHV - components: - - pos: -10.5,46.5 - parent: 0 - type: Transform -- uid: 6492 - type: CableHV - components: - - pos: -11.5,46.5 - parent: 0 - type: Transform -- uid: 6493 - type: CableHV - components: - - pos: -12.5,46.5 - parent: 0 - type: Transform -- uid: 6494 - type: CableHV - components: - - pos: -13.5,46.5 - parent: 0 - type: Transform -- uid: 6495 - type: CableHV - components: - - pos: -14.5,46.5 - parent: 0 - type: Transform -- uid: 6496 - type: CableHV - components: - - pos: -15.5,46.5 - parent: 0 - type: Transform -- uid: 6497 - type: CableHV - components: - - pos: -16.5,46.5 - parent: 0 - type: Transform -- uid: 6498 - type: CableHV - components: - - pos: -17.5,46.5 - parent: 0 - type: Transform -- uid: 6499 - type: CableHV - components: - - pos: -18.5,46.5 - parent: 0 - type: Transform -- uid: 6500 - type: AirlockAtmosphericsLocked - components: - - pos: -27.5,73.5 - parent: 0 - type: Transform -- uid: 6501 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -29.5,72.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6502 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -33.5,62.5 - parent: 0 - type: Transform -- uid: 6503 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -33.5,61.5 - parent: 0 - type: Transform -- uid: 6504 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -33.5,60.5 - parent: 0 - type: Transform -- uid: 6505 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -33.5,63.5 - parent: 0 - type: Transform -- uid: 6506 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -33.5,64.5 - parent: 0 - type: Transform -- uid: 6507 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -32.5,64.5 - parent: 0 - type: Transform -- uid: 6508 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -31.5,64.5 - parent: 0 - type: Transform -- uid: 6509 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -30.5,64.5 - parent: 0 - type: Transform -- uid: 6510 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -30.5,65.5 - parent: 0 - type: Transform -- uid: 6511 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -29.5,65.5 - parent: 0 - type: Transform -- uid: 6512 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -28.5,65.5 - parent: 0 - type: Transform -- uid: 6513 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -27.5,65.5 - parent: 0 - type: Transform -- uid: 6514 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -26.5,65.5 - parent: 0 - type: Transform -- uid: 6515 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -25.5,65.5 - parent: 0 - type: Transform -- uid: 6516 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -24.5,65.5 - parent: 0 - type: Transform -- uid: 6517 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -23.5,65.5 - parent: 0 - type: Transform -- uid: 6518 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -27.5,64.5 - parent: 0 - type: Transform -- uid: 6519 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -27.5,63.5 - parent: 0 - type: Transform -- uid: 6520 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -27.5,62.5 - parent: 0 - type: Transform -- uid: 6521 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -27.5,61.5 - parent: 0 - type: Transform -- uid: 6522 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -27.5,60.5 - parent: 0 - type: Transform -- uid: 6523 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -25.5,67.5 - parent: 0 - type: Transform -- uid: 6524 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -25.5,68.5 - parent: 0 - type: Transform -- uid: 6525 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -25.5,69.5 - parent: 0 - type: Transform -- uid: 6526 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -25.5,70.5 - parent: 0 - type: Transform -- uid: 6527 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -25.5,71.5 - parent: 0 - type: Transform -- uid: 6528 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -25.5,72.5 - parent: 0 - type: Transform -- uid: 6529 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -24.5,72.5 - parent: 0 - type: Transform -- uid: 6530 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -23.5,72.5 - parent: 0 - type: Transform -- uid: 6531 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -25.5,66.5 - parent: 0 - type: Transform -- uid: 6532 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -25.5,73.5 - parent: 0 - type: Transform -- uid: 6533 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -26.5,73.5 - parent: 0 - type: Transform -- uid: 6534 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -35.5,67.5 - parent: 0 - type: Transform -- uid: 6535 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -34.5,67.5 - parent: 0 - type: Transform -- uid: 6536 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -34.5,66.5 - parent: 0 - type: Transform -- uid: 6537 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -34.5,65.5 - parent: 0 - type: Transform -- uid: 6538 - type: AirlockExternalLocked - components: - - rot: 1.5707963267948966 rad - pos: -39.5,67.5 - parent: 0 - type: Transform -- uid: 6539 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -34.5,64.5 - parent: 0 - type: Transform -- uid: 6540 - type: AirlockExternalLocked - components: - - rot: 1.5707963267948966 rad - pos: -36.5,67.5 - parent: 0 - type: Transform -- uid: 6541 - type: WaterTankFull - components: - - pos: -37.5,68.5 - parent: 0 - type: Transform -- uid: 6542 - type: ClosetEmergencyFilledRandom - components: - - pos: -38.5,68.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6543 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -37.5,67.5 - parent: 0 - type: Transform -- uid: 6544 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -38.5,67.5 - parent: 0 - type: Transform -- uid: 6545 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -38.5,66.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6546 - type: OxygenCanister - components: - - pos: -37.5,66.5 - parent: 0 - type: Transform -- uid: 6547 - type: Girder - components: - - pos: -33.5,65.5 - parent: 0 - type: Transform -- uid: 6548 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -35.5,61.5 - parent: 0 - type: Transform -- uid: 6549 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -35.5,65.5 - parent: 0 - type: Transform -- uid: 6550 - type: WallSolidRust - components: - - pos: -35.5,64.5 - parent: 0 - type: Transform -- uid: 6551 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -35.5,63.5 - parent: 0 - type: Transform -- uid: 6552 - type: CarpetOrange - components: - - pos: -23.5,60.5 - parent: 0 - type: Transform -- uid: 6553 - type: CarpetOrange - components: - - pos: -23.5,61.5 - parent: 0 - type: Transform -- uid: 6554 - type: CarpetOrange - components: - - pos: -22.5,60.5 - parent: 0 - type: Transform -- uid: 6555 - type: CarpetOrange - components: - - pos: -22.5,61.5 - parent: 0 - type: Transform -- uid: 6556 - type: TableWood - components: - - pos: -26.5,53.5 - parent: 0 - type: Transform -- uid: 6557 - type: TableWood - components: - - pos: -26.5,54.5 - parent: 0 - type: Transform -- uid: 6558 - type: TableWood - components: - - pos: -26.5,55.5 - parent: 0 - type: Transform -- uid: 6559 - type: TableWood - components: - - pos: -26.5,56.5 - parent: 0 - type: Transform -- uid: 6560 - type: WaterCooler - components: - - pos: -26.5,58.5 - parent: 0 - type: Transform -- uid: 6561 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -25.5,53.5 - parent: 0 - type: Transform -- uid: 6562 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -25.5,54.5 - parent: 0 - type: Transform -- uid: 6563 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -25.5,55.5 - parent: 0 - type: Transform -- uid: 6564 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -25.5,56.5 - parent: 0 - type: Transform -- uid: 6565 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -27.5,53.5 - parent: 0 - type: Transform -- uid: 6566 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -27.5,54.5 - parent: 0 - type: Transform -- uid: 6567 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -27.5,55.5 - parent: 0 - type: Transform -- uid: 6568 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -27.5,56.5 - parent: 0 - type: Transform -- uid: 6569 - type: Lamp - components: - - pos: -26.46547,56.93831 - parent: 0 - type: Transform -- uid: 6570 - type: PaperBin5 - components: - - pos: -26.5,55.5 - parent: 0 - type: Transform -- uid: 6571 - type: filingCabinetTallRandom - components: - - pos: -28.5,55.5 - parent: 0 - type: Transform -- uid: 6572 - type: TableWood - components: - - pos: -28.5,56.5 - parent: 0 - type: Transform -- uid: 6573 - type: TableWood - components: - - pos: -28.5,57.5 - parent: 0 - type: Transform -- uid: 6574 - type: TableWood - components: - - pos: -28.5,53.5 - parent: 0 - type: Transform -- uid: 6575 - type: TableWood - components: - - pos: -28.5,54.5 - parent: 0 - type: Transform -- uid: 6576 - type: PottedPlantRandom - components: - - pos: -28.5,52.5 - parent: 0 - type: Transform -- uid: 6577 - type: PottedPlantRandom - components: - - pos: -24.5,52.5 - parent: 0 - type: Transform -- uid: 6578 - type: CrayonBox - components: - - pos: -28.52797,54.547684 - parent: 0 - type: Transform -- uid: 6579 - type: BriefcaseBrown - components: - - pos: -28.543594,53.828934 - parent: 0 - type: Transform -- uid: 6580 - type: ClothingBackpackSatchelLeather - components: - - pos: -28.49672,57.641434 - parent: 0 - type: Transform -- uid: 6581 - type: DiceBag - components: - - pos: -26.47236,54.50081 - parent: 0 - type: Transform -- uid: 6582 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -26.5,52.5 - parent: 0 - type: Transform -- uid: 6583 - type: AirlockChapelLocked - components: - - pos: -16.5,67.5 - parent: 0 - type: Transform -- uid: 6584 - type: AirlockChapelLocked - components: - - name: Crematorium - type: MetaData - - pos: -20.5,66.5 - parent: 0 - type: Transform -- uid: 6585 - type: AirlockChapelLocked - components: - - pos: -20.5,71.5 - parent: 0 - type: Transform -- uid: 6586 - type: AirlockChapelLocked - components: - - pos: -12.5,72.5 - parent: 0 - type: Transform -- uid: 6587 - type: AirlockChapelGlassLocked - components: - - name: Funeral Procession Room - type: MetaData - - pos: -9.5,67.5 - parent: 0 - type: Transform -- uid: 6588 - type: WoodDoor - components: - - pos: -20.5,76.5 - parent: 0 - type: Transform -- uid: 6589 - type: Carpet - components: - - pos: -17.5,74.5 - parent: 0 - type: Transform -- uid: 6590 - type: VendingMachineChapel - components: - - flags: SessionSpecific - type: MetaData - - pos: -21.5,75.5 - parent: 0 - type: Transform -- uid: 6591 - type: Carpet - components: - - pos: -16.5,74.5 - parent: 0 - type: Transform -- uid: 6592 - type: CarpetBlack - components: - - pos: -19.5,74.5 - parent: 0 - type: Transform -- uid: 6593 - type: Carpet - components: - - pos: -15.5,74.5 - parent: 0 - type: Transform -- uid: 6594 - type: CarpetBlack - components: - - pos: -19.5,73.5 - parent: 0 - type: Transform -- uid: 6595 - type: Carpet - components: - - pos: -16.5,75.5 - parent: 0 - type: Transform -- uid: 6596 - type: Carpet - components: - - pos: -17.5,75.5 - parent: 0 - type: Transform -- uid: 6597 - type: CarpetBlack - components: - - pos: -13.5,75.5 - parent: 0 - type: Transform -- uid: 6598 - type: PottedPlant3 - components: - - pos: -18.5,76.5 - parent: 0 - type: Transform -- uid: 6599 - type: CarpetBlack - components: - - pos: -13.5,73.5 - parent: 0 - type: Transform -- uid: 6600 - type: CarpetBlack - components: - - pos: -13.5,72.5 - parent: 0 - type: Transform -- uid: 6601 - type: CarpetBlack - components: - - pos: -19.5,72.5 - parent: 0 - type: Transform -- uid: 6602 - type: Carpet - components: - - pos: -15.5,75.5 - parent: 0 - type: Transform -- uid: 6603 - type: CarpetBlack - components: - - pos: -19.5,76.5 - parent: 0 - type: Transform -- uid: 6604 - type: CarpetBlack - components: - - pos: -19.5,75.5 - parent: 0 - type: Transform -- uid: 6605 - type: CarpetBlack - components: - - pos: -13.5,74.5 - parent: 0 - type: Transform -- uid: 6606 - type: TableCarpet - components: - - pos: -17.5,74.5 - parent: 0 - type: Transform -- uid: 6607 - type: TableCarpet - components: - - pos: -16.5,74.5 - parent: 0 - type: Transform -- uid: 6608 - type: TableCarpet - components: - - pos: -15.5,74.5 - parent: 0 - type: Transform -- uid: 6609 - type: WardrobeChapelFilled - components: - - pos: -20.5,73.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6610 - type: SignChapel - components: - - pos: -10.5,57.5 - parent: 0 - type: Transform -- uid: 6611 - type: PoweredSmallLight - components: - - pos: -21.5,76.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6612 - type: TintedWindow - components: - - pos: -19.5,71.5 - parent: 0 - type: Transform -- uid: 6613 - type: ComfyChair - components: - - pos: -16.5,75.5 - parent: 0 - type: Transform -- uid: 6614 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -17.5,73.5 - parent: 0 - type: Transform -- uid: 6615 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -16.5,73.5 - parent: 0 - type: Transform -- uid: 6616 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -15.5,73.5 - parent: 0 - type: Transform -- uid: 6617 - type: PottedPlant3 - components: - - pos: -14.5,76.5 - parent: 0 - type: Transform -- uid: 6618 - type: PaperBin5 - components: - - pos: -17.5,74.5 - parent: 0 - type: Transform -- uid: 6619 - type: BoxFolderGrey - components: - - pos: -15.570288,74.50047 - parent: 0 - type: Transform -- uid: 6620 - type: DrinkWineBottleFull - components: - - pos: -16.882788,74.87547 - parent: 0 - type: Transform -- uid: 6621 - type: DrinkShotGlass - components: - - pos: -16.468138,74.62652 - parent: 0 - type: Transform -- uid: 6622 - type: DrinkShotGlass - components: - - pos: -16.671263,74.45464 - parent: 0 - type: Transform -- uid: 6623 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -22.5,69.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6624 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -22.5,70.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6625 - type: Crematorium - components: - - rot: 1.5707963267948966 rad - pos: -22.5,67.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6626 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -19.5,67.5 - parent: 0 - type: Transform -- uid: 6627 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -19.5,68.5 - parent: 0 - type: Transform -- uid: 6628 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -19.5,69.5 - parent: 0 - type: Transform -- uid: 6629 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -19.5,70.5 - parent: 0 - type: Transform -- uid: 6630 - type: BoxBodyBag - components: - - pos: -19.32301,67.67383 - parent: 0 - type: Transform -- uid: 6631 - type: PottedPlant16 - components: - - pos: -22.5,68.5 - parent: 0 - type: Transform -- uid: 6632 - type: Bookshelf - components: - - pos: -7.5,66.5 - parent: 0 - type: Transform -- uid: 6633 - type: Bookshelf - components: - - pos: -8.5,66.5 - parent: 0 - type: Transform -- uid: 6634 - type: lantern - components: - - pos: -14.523932,65.6788 - parent: 0 - type: Transform -- uid: 6635 - type: lantern - components: - - pos: -10.445807,65.69443 - parent: 0 - type: Transform -- uid: 6636 - type: ClosetEmergencyFilledRandom - components: - - pos: -20.5,64.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6637 - type: ClosetFireFilled - components: - - pos: -19.5,64.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6638 - type: PottedPlant18 - components: - - pos: -21.5,64.5 - parent: 0 - type: Transform -- uid: 6639 - type: PottedPlantRandom - components: - - pos: -17.5,58.5 - parent: 0 - type: Transform -- uid: 6640 - type: PottedPlantRandom - components: - - pos: -7.5,58.5 - parent: 0 - type: Transform -- uid: 6641 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -13.5,70.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6642 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -13.5,69.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6643 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -13.5,68.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6644 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -12.5,70.5 - parent: 0 - type: Transform -- uid: 6645 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -12.5,68.5 - parent: 0 - type: Transform -- uid: 6646 - type: WindoorSecureChapelLocked - components: - - rot: 1.5707963267948966 rad - pos: -12.5,69.5 - parent: 0 - type: Transform -- uid: 6647 - type: TableWood - components: - - pos: -11.5,68.5 - parent: 0 - type: Transform -- uid: 6648 - type: TableWood - components: - - pos: -7.5,68.5 - parent: 0 - type: Transform -- uid: 6649 - type: Carpet - components: - - pos: -10.5,69.5 - parent: 0 - type: Transform -- uid: 6650 - type: Carpet - components: - - pos: -10.5,70.5 - parent: 0 - type: Transform -- uid: 6651 - type: Carpet - components: - - pos: -10.5,71.5 - parent: 0 - type: Transform -- uid: 6652 - type: Carpet - components: - - pos: -10.5,72.5 - parent: 0 - type: Transform -- uid: 6653 - type: Carpet - components: - - pos: -10.5,73.5 - parent: 0 - type: Transform -- uid: 6654 - type: Carpet - components: - - pos: -10.5,74.5 - parent: 0 - type: Transform -- uid: 6655 - type: Carpet - components: - - pos: -9.5,69.5 - parent: 0 - type: Transform -- uid: 6656 - type: Carpet - components: - - pos: -9.5,70.5 - parent: 0 - type: Transform -- uid: 6657 - type: TableCarpet - components: - - pos: -10.5,72.5 - parent: 0 - type: Transform -- uid: 6658 - type: Carpet - components: - - pos: -9.5,72.5 - parent: 0 - type: Transform -- uid: 6659 - type: Carpet - components: - - pos: -9.5,73.5 - parent: 0 - type: Transform -- uid: 6660 - type: Carpet - components: - - pos: -9.5,74.5 - parent: 0 - type: Transform -- uid: 6661 - type: Carpet - components: - - pos: -8.5,69.5 - parent: 0 - type: Transform -- uid: 6662 - type: Carpet - components: - - pos: -8.5,70.5 - parent: 0 - type: Transform -- uid: 6663 - type: Carpet - components: - - pos: -8.5,71.5 - parent: 0 - type: Transform -- uid: 6664 - type: Carpet - components: - - pos: -8.5,72.5 - parent: 0 - type: Transform -- uid: 6665 - type: Carpet - components: - - pos: -8.5,73.5 - parent: 0 - type: Transform -- uid: 6666 - type: Carpet - components: - - pos: -8.5,74.5 - parent: 0 - type: Transform -- uid: 6667 - type: TableCarpet - components: - - pos: -9.5,72.5 - parent: 0 - type: Transform -- uid: 6668 - type: TableCarpet - components: - - pos: -8.5,72.5 - parent: 0 - type: Transform -- uid: 6669 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -10.5,70.5 - parent: 0 - type: Transform -- uid: 6670 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -9.5,70.5 - parent: 0 - type: Transform -- uid: 6671 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -8.5,70.5 - parent: 0 - type: Transform -- uid: 6672 - type: FoodPoppy - components: - - pos: -7.474576,68.62531 - parent: 0 - type: Transform -- uid: 6673 - type: ClothingHeadHatFlowerCrown - components: - - pos: -11.521451,68.54719 - parent: 0 - type: Transform -- uid: 6674 - type: ClothingHeadHatHairflower - components: - - pos: -11.365201,68.68781 - parent: 0 - type: Transform -- uid: 6675 - type: ClothingMaskSterile - components: - - pos: -19.485485,68.55882 - parent: 0 - type: Transform -- uid: 6676 - type: ClothingHandsGlovesLatex - components: - - pos: -19.45746,69.26101 - parent: 0 - type: Transform -- uid: 6677 - type: AirlockEngineeringLocked - components: - - pos: -36.5,-1.5 - parent: 0 - type: Transform -- uid: 6678 - type: SubstationBasic - components: - - name: North Arrivals Substation - type: MetaData - - pos: -39.5,-1.5 - parent: 0 - type: Transform -- uid: 6679 - type: CableHV - components: - - pos: -41.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6680 - type: CableHV - components: - - pos: -40.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6681 - type: CableHV - components: - - pos: -39.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6682 - type: CableHV - components: - - pos: -38.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6683 - type: CableHV - components: - - pos: -37.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6684 - type: CableHV - components: - - pos: -36.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6685 - type: CableHV - components: - - pos: -35.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6686 - type: CableHV - components: - - pos: -35.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6687 - type: CableHV - components: - - pos: -35.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6688 - type: CableHV - components: - - pos: -35.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6689 - type: CableHV - components: - - pos: -36.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6690 - type: CableHV - components: - - pos: -37.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6691 - type: CableHV - components: - - pos: -38.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6692 - type: CableHV - components: - - pos: -39.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6693 - type: CableHV - components: - - pos: -35.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6694 - type: CableHV - components: - - pos: -35.5,-3.5 - parent: 0 - type: Transform -- uid: 6695 - type: CableHV - components: - - pos: -35.5,-4.5 - parent: 0 - type: Transform -- uid: 6696 - type: CableHV - components: - - pos: -35.5,-5.5 - parent: 0 - type: Transform -- uid: 6697 - type: CableHV - components: - - pos: -34.5,-5.5 - parent: 0 - type: Transform -- uid: 6698 - type: CableHV - components: - - pos: -33.5,-5.5 - parent: 0 - type: Transform -- uid: 6699 - type: CableHV - components: - - pos: -32.5,-5.5 - parent: 0 - type: Transform -- uid: 6700 - type: CableHV - components: - - pos: -31.5,-5.5 - parent: 0 - type: Transform -- uid: 6701 - type: CableHV - components: - - pos: -30.5,-5.5 - parent: 0 - type: Transform -- uid: 6702 - type: CableHV - components: - - pos: -29.5,-5.5 - parent: 0 - type: Transform -- uid: 6703 - type: CableHV - components: - - pos: -28.5,-5.5 - parent: 0 - type: Transform -- uid: 6704 - type: CableHV - components: - - pos: -27.5,-5.5 - parent: 0 - type: Transform -- uid: 6705 - type: CableHV - components: - - pos: -26.5,-5.5 - parent: 0 - type: Transform -- uid: 6706 - type: CableHV - components: - - pos: -25.5,-5.5 - parent: 0 - type: Transform -- uid: 6707 - type: CableHV - components: - - pos: -24.5,-5.5 - parent: 0 - type: Transform -- uid: 6708 - type: CableHV - components: - - pos: -23.5,-5.5 - parent: 0 - type: Transform -- uid: 6709 - type: CableHV - components: - - pos: -22.5,-5.5 - parent: 0 - type: Transform -- uid: 6710 - type: CableHV - components: - - pos: -21.5,-5.5 - parent: 0 - type: Transform -- uid: 6711 - type: CableHV - components: - - pos: -20.5,-5.5 - parent: 0 - type: Transform -- uid: 6712 - type: CableHV - components: - - pos: -19.5,-5.5 - parent: 0 - type: Transform -- uid: 6713 - type: CableHV - components: - - pos: -18.5,-5.5 - parent: 0 - type: Transform -- uid: 6714 - type: CableHV - components: - - pos: -17.5,-5.5 - parent: 0 - type: Transform -- uid: 6715 - type: CableHV - components: - - pos: -16.5,-5.5 - parent: 0 - type: Transform -- uid: 6716 - type: CableHV - components: - - pos: -15.5,-5.5 - parent: 0 - type: Transform -- uid: 6717 - type: CableHV - components: - - pos: -14.5,-5.5 - parent: 0 - type: Transform -- uid: 6718 - type: CableHV - components: - - pos: -13.5,-5.5 - parent: 0 - type: Transform -- uid: 6719 - type: CableHV - components: - - pos: -12.5,-5.5 - parent: 0 - type: Transform -- uid: 6720 - type: CableHV - components: - - pos: -11.5,-5.5 - parent: 0 - type: Transform -- uid: 6721 - type: CableHV - components: - - pos: -10.5,-5.5 - parent: 0 - type: Transform -- uid: 6722 - type: CableHV - components: - - pos: -9.5,-5.5 - parent: 0 - type: Transform -- uid: 6723 - type: CableHV - components: - - pos: -8.5,-5.5 - parent: 0 - type: Transform -- uid: 6724 - type: CableHV - components: - - pos: -7.5,-5.5 - parent: 0 - type: Transform -- uid: 6725 - type: CableHV - components: - - pos: -6.5,-5.5 - parent: 0 - type: Transform -- uid: 6726 - type: CableHV - components: - - pos: -13.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6727 - type: CableHV - components: - - pos: -14.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6728 - type: CableHV - components: - - pos: -15.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6729 - type: CableHV - components: - - pos: -15.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6730 - type: CableHV - components: - - pos: -16.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6731 - type: CableHV - components: - - pos: -17.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6732 - type: CableHV - components: - - pos: -18.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6733 - type: CableHV - components: - - pos: -18.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6734 - type: CableHV - components: - - pos: -18.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6735 - type: CableHV - components: - - pos: -18.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6736 - type: CableHV - components: - - pos: -19.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6737 - type: CableHV - components: - - pos: -20.5,-16.5 - parent: 0 - type: Transform -- uid: 6738 - type: CableHV - components: - - pos: -21.5,-16.5 - parent: 0 - type: Transform -- uid: 6739 - type: CableHV - components: - - pos: -22.5,-16.5 - parent: 0 - type: Transform -- uid: 6740 - type: CableHV - components: - - pos: -22.5,-15.5 - parent: 0 - type: Transform -- uid: 6741 - type: CableHV - components: - - pos: -22.5,-14.5 - parent: 0 - type: Transform -- uid: 6742 - type: CableHV - components: - - pos: -22.5,-13.5 - parent: 0 - type: Transform -- uid: 6743 - type: CableHV - components: - - pos: -22.5,-12.5 - parent: 0 - type: Transform -- uid: 6744 - type: CableHV - components: - - pos: -22.5,-11.5 - parent: 0 - type: Transform -- uid: 6745 - type: CableHV - components: - - pos: -22.5,-10.5 - parent: 0 - type: Transform -- uid: 6746 - type: CableHV - components: - - pos: -22.5,-9.5 - parent: 0 - type: Transform -- uid: 6747 - type: CableHV - components: - - pos: -22.5,-8.5 - parent: 0 - type: Transform -- uid: 6748 - type: CableHV - components: - - pos: -22.5,-7.5 - parent: 0 - type: Transform -- uid: 6749 - type: CableHV - components: - - pos: -22.5,-6.5 - parent: 0 - type: Transform -- uid: 6750 - type: CableHV - components: - - pos: -17.5,-4.5 - parent: 0 - type: Transform -- uid: 6751 - type: CableHV - components: - - pos: -17.5,-3.5 - parent: 0 - type: Transform -- uid: 6752 - type: CableHV - components: - - pos: -17.5,-2.5 - parent: 0 - type: Transform -- uid: 6753 - type: CableHV - components: - - pos: -17.5,-1.5 - parent: 0 - type: Transform -- uid: 6754 - type: CableHV - components: - - pos: -17.5,-0.5 - parent: 0 - type: Transform -- uid: 6755 - type: CableHV - components: - - pos: -17.5,0.5 - parent: 0 - type: Transform -- uid: 6756 - type: CableHV - components: - - pos: -17.5,1.5 - parent: 0 - type: Transform -- uid: 6757 - type: CableHV - components: - - pos: -17.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6758 - type: CableHV - components: - - pos: -17.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6759 - type: CableHV - components: - - pos: -17.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6760 - type: SpawnPointChaplain - components: - - pos: -16.5,75.5 - parent: 0 - type: Transform -- uid: 6761 - type: Intercom - components: - - pos: -12.5,67.5 - parent: 0 - type: Transform -- uid: 6762 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -6.5,71.5 - parent: 0 - type: Transform -- uid: 6763 - type: ReinforcedWindow - components: - - pos: -3.5,76.5 - parent: 0 - type: Transform -- uid: 6764 - type: AirlockExternalGlassLocked - components: - - pos: -4.5,72.5 - parent: 0 - type: Transform -- uid: 6765 - type: Catwalk - components: - - pos: -5.5,77.5 - parent: 0 - type: Transform -- uid: 6766 - type: Catwalk - components: - - pos: -3.5,77.5 - parent: 0 - type: Transform -- uid: 6767 - type: Railing - components: - - pos: -5.5,77.5 - parent: 0 - type: Transform -- uid: 6768 - type: Railing - components: - - pos: -3.5,77.5 - parent: 0 - type: Transform -- uid: 6769 - type: ClosetEmergencyFilledRandom - components: - - pos: -5.5,75.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6770 - type: OxygenCanister - components: - - pos: -3.5,75.5 - parent: 0 - type: Transform -- uid: 6771 - type: PottedPlant21 - components: - - pos: -5.5,71.5 - parent: 0 - type: Transform -- uid: 6772 - type: PottedPlant21 - components: - - pos: -3.5,71.5 - parent: 0 - type: Transform -- uid: 6773 - type: CableApcExtension - components: - - pos: -7.5,69.5 - parent: 0 - type: Transform -- uid: 6774 - type: CableApcExtension - components: - - pos: -8.5,69.5 - parent: 0 - type: Transform -- uid: 6775 - type: CableApcExtension - components: - - pos: -6.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6776 - type: CableApcExtension - components: - - pos: -5.5,69.5 - parent: 0 - type: Transform -- uid: 6777 - type: CableApcExtension - components: - - pos: -4.5,69.5 - parent: 0 - type: Transform -- uid: 6778 - type: CableApcExtension - components: - - pos: -4.5,70.5 - parent: 0 - type: Transform -- uid: 6779 - type: CableApcExtension - components: - - pos: -4.5,71.5 - parent: 0 - type: Transform -- uid: 6780 - type: CableApcExtension - components: - - pos: -4.5,72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6781 - type: CableApcExtension - components: - - pos: -4.5,73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6782 - type: CableApcExtension - components: - - pos: -4.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6783 - type: CableApcExtension - components: - - pos: -4.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6784 - type: CableApcExtension - components: - - pos: -4.5,68.5 - parent: 0 - type: Transform -- uid: 6785 - type: AirlockMaintLocked - components: - - pos: -2.5,69.5 - parent: 0 - type: Transform -- uid: 6786 - type: AirlockGlass - components: - - pos: -4.5,67.5 - parent: 0 - type: Transform -- uid: 6787 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,74.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6788 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,70.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6789 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -5.5,68.5 - parent: 0 - type: Transform -- uid: 6790 - type: DisposalBend - components: - - pos: -4.5,68.5 - parent: 0 - type: Transform -- uid: 6791 - type: DisposalPipe - components: - - pos: -4.5,67.5 - parent: 0 - type: Transform -- uid: 6792 - type: DisposalPipe - components: - - pos: -4.5,66.5 - parent: 0 - type: Transform -- uid: 6793 - type: DisposalPipe - components: - - pos: -4.5,65.5 - parent: 0 - type: Transform -- uid: 6794 - type: DisposalPipe - components: - - pos: -4.5,64.5 - parent: 0 - type: Transform -- uid: 6795 - type: DisposalPipe - components: - - pos: -4.5,63.5 - parent: 0 - type: Transform -- uid: 6796 - type: DisposalPipe - components: - - pos: -4.5,62.5 - parent: 0 - type: Transform -- uid: 6797 - type: DisposalPipe - components: - - pos: -4.5,61.5 - parent: 0 - type: Transform -- uid: 6798 - type: DisposalPipe - components: - - pos: -4.5,60.5 - parent: 0 - type: Transform -- uid: 6799 - type: DisposalPipe - components: - - pos: -4.5,59.5 - parent: 0 - type: Transform -- uid: 6800 - type: DisposalPipe - components: - - pos: -4.5,58.5 - parent: 0 - type: Transform -- uid: 6801 - type: DisposalPipe - components: - - pos: -4.5,57.5 - parent: 0 - type: Transform -- uid: 6802 - type: DisposalPipe - components: - - pos: -4.5,56.5 - parent: 0 - type: Transform -- uid: 6803 - type: DisposalUnit - components: - - pos: -5.5,68.5 - parent: 0 - type: Transform -- uid: 6804 - type: RandomVendingSnacks - components: - - pos: -3.5,68.5 - parent: 0 - type: Transform -- uid: 6805 - type: TableWood - components: - - pos: -5.5,69.5 - parent: 0 - type: Transform -- uid: 6806 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -5.5,70.5 - parent: 0 - type: Transform -- uid: 6807 - type: TableCarpet - components: - - pos: -7.5,56.5 - parent: 0 - type: Transform -- uid: 6808 - type: TableCarpet - components: - - pos: -8.5,56.5 - parent: 0 - type: Transform -- uid: 6809 - type: TableCarpet - components: - - pos: -9.5,56.5 - parent: 0 - type: Transform -- uid: 6810 - type: TableCarpet - components: - - pos: -10.5,56.5 - parent: 0 - type: Transform -- uid: 6811 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -10.5,56.5 - parent: 0 - type: Transform -- uid: 6812 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -7.5,56.5 - parent: 0 - type: Transform -- uid: 6813 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 1.5,21.5 - parent: 0 - type: Transform -- uid: 6814 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 1.5,24.5 - parent: 0 - type: Transform -- uid: 6815 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 1.5,27.5 - parent: 0 - type: Transform -- uid: 6816 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 1.5,30.5 - parent: 0 - type: Transform -- uid: 6817 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 2.5,31.5 - parent: 0 - type: Transform -- uid: 6818 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 5.5,31.5 - parent: 0 - type: Transform -- uid: 6819 - type: SignToolStorage - components: - - rot: -1.5707963267948966 rad - pos: 1.5,25.5 - parent: 0 - type: Transform -- uid: 6820 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: 1.5,28.5 - parent: 0 - type: Transform -- uid: 6821 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: 1.5,29.5 - parent: 0 - type: Transform -- uid: 6822 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: 1.5,22.5 - parent: 0 - type: Transform -- uid: 6823 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: 1.5,23.5 - parent: 0 - type: Transform -- uid: 6824 - type: APCBasic - components: - - pos: 6.5,31.5 - parent: 0 - type: Transform -- uid: 6825 - type: CableApcExtension - components: - - pos: 6.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6826 - type: CableApcExtension - components: - - pos: 6.5,30.5 - parent: 0 - type: Transform -- uid: 6827 - type: CableApcExtension - components: - - pos: 6.5,29.5 - parent: 0 - type: Transform -- uid: 6828 - type: CableApcExtension - components: - - pos: 6.5,28.5 - parent: 0 - type: Transform -- uid: 6829 - type: CableApcExtension - components: - - pos: 6.5,27.5 - parent: 0 - type: Transform -- uid: 6830 - type: CableApcExtension - components: - - pos: 6.5,26.5 - parent: 0 - type: Transform -- uid: 6831 - type: CableApcExtension - components: - - pos: 6.5,25.5 - parent: 0 - type: Transform -- uid: 6832 - type: CableApcExtension - components: - - pos: 6.5,24.5 - parent: 0 - type: Transform -- uid: 6833 - type: CableApcExtension - components: - - pos: 6.5,23.5 - parent: 0 - type: Transform -- uid: 6834 - type: CableApcExtension - components: - - pos: 6.5,22.5 - parent: 0 - type: Transform -- uid: 6835 - type: CableApcExtension - components: - - pos: 6.5,21.5 - parent: 0 - type: Transform -- uid: 6836 - type: CableApcExtension - components: - - pos: 5.5,22.5 - parent: 0 - type: Transform -- uid: 6837 - type: CableApcExtension - components: - - pos: 4.5,22.5 - parent: 0 - type: Transform -- uid: 6838 - type: CableApcExtension - components: - - pos: 3.5,22.5 - parent: 0 - type: Transform -- uid: 6839 - type: CableApcExtension - components: - - pos: 2.5,22.5 - parent: 0 - type: Transform -- uid: 6840 - type: CableApcExtension - components: - - pos: 1.5,22.5 - parent: 0 - type: Transform -- uid: 6841 - type: CableApcExtension - components: - - pos: 0.5,22.5 - parent: 0 - type: Transform -- uid: 6842 - type: CableApcExtension - components: - - pos: -0.5,22.5 - parent: 0 - type: Transform -- uid: 6843 - type: CableApcExtension - components: - - pos: 3.5,12.5 - parent: 0 - type: Transform -- uid: 6844 - type: CableApcExtension - components: - - pos: 2.5,12.5 - parent: 0 - type: Transform -- uid: 6845 - type: CableApcExtension - components: - - pos: 1.5,12.5 - parent: 0 - type: Transform -- uid: 6846 - type: CableApcExtension - components: - - pos: 0.5,12.5 - parent: 0 - type: Transform -- uid: 6847 - type: CableApcExtension - components: - - pos: -0.5,12.5 - parent: 0 - type: Transform -- uid: 6848 - type: CableApcExtension - components: - - pos: -0.5,11.5 - parent: 0 - type: Transform -- uid: 6849 - type: CableApcExtension - components: - - pos: -0.5,10.5 - parent: 0 - type: Transform -- uid: 6850 - type: CableApcExtension - components: - - pos: -0.5,9.5 - parent: 0 - type: Transform -- uid: 6851 - type: CableApcExtension - components: - - pos: -0.5,8.5 - parent: 0 - type: Transform -- uid: 6852 - type: CableApcExtension - components: - - pos: -0.5,13.5 - parent: 0 - type: Transform -- uid: 6853 - type: CableApcExtension - components: - - pos: -0.5,14.5 - parent: 0 - type: Transform -- uid: 6854 - type: CableApcExtension - components: - - pos: -0.5,15.5 - parent: 0 - type: Transform -- uid: 6855 - type: CableApcExtension - components: - - pos: -0.5,16.5 - parent: 0 - type: Transform -- uid: 6856 - type: CableApcExtension - components: - - pos: -0.5,17.5 - parent: 0 - type: Transform -- uid: 6857 - type: CableApcExtension - components: - - pos: -0.5,21.5 - parent: 0 - type: Transform -- uid: 6858 - type: CableApcExtension - components: - - pos: -0.5,20.5 - parent: 0 - type: Transform -- uid: 6859 - type: CableApcExtension - components: - - pos: -0.5,23.5 - parent: 0 - type: Transform -- uid: 6860 - type: CableApcExtension - components: - - pos: -0.5,24.5 - parent: 0 - type: Transform -- uid: 6861 - type: CableApcExtension - components: - - pos: -0.5,25.5 - parent: 0 - type: Transform -- uid: 6862 - type: CableApcExtension - components: - - pos: -0.5,26.5 - parent: 0 - type: Transform -- uid: 6863 - type: CableApcExtension - components: - - pos: -0.5,27.5 - parent: 0 - type: Transform -- uid: 6864 - type: CableApcExtension - components: - - pos: -0.5,28.5 - parent: 0 - type: Transform -- uid: 6865 - type: CableApcExtension - components: - - pos: -0.5,29.5 - parent: 0 - type: Transform -- uid: 6866 - type: CableApcExtension - components: - - pos: -0.5,30.5 - parent: 0 - type: Transform -- uid: 6867 - type: CableApcExtension - components: - - pos: 5.5,28.5 - parent: 0 - type: Transform -- uid: 6868 - type: CableApcExtension - components: - - pos: 4.5,28.5 - parent: 0 - type: Transform -- uid: 6869 - type: CableApcExtension - components: - - pos: 3.5,28.5 - parent: 0 - type: Transform -- uid: 6870 - type: CableApcExtension - components: - - pos: 2.5,28.5 - parent: 0 - type: Transform -- uid: 6871 - type: CableApcExtension - components: - - pos: 1.5,28.5 - parent: 0 - type: Transform -- uid: 6872 - type: CableApcExtension - components: - - pos: 0.5,28.5 - parent: 0 - type: Transform -- uid: 6873 - type: CableApcExtension - components: - - pos: 5.5,25.5 - parent: 0 - type: Transform -- uid: 6874 - type: CableApcExtension - components: - - pos: 4.5,25.5 - parent: 0 - type: Transform -- uid: 6875 - type: CableApcExtension - components: - - pos: 3.5,25.5 - parent: 0 - type: Transform -- uid: 6876 - type: CableApcExtension - components: - - pos: -3.5,35.5 - parent: 0 - type: Transform -- uid: 6877 - type: CableApcExtension - components: - - pos: -2.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6878 - type: CableApcExtension - components: - - pos: -1.5,35.5 - parent: 0 - type: Transform -- uid: 6879 - type: CableApcExtension - components: - - pos: -0.5,35.5 - parent: 0 - type: Transform -- uid: 6880 - type: CableApcExtension - components: - - pos: -0.5,34.5 - parent: 0 - type: Transform -- uid: 6881 - type: CableApcExtension - components: - - pos: -0.5,33.5 - parent: 0 - type: Transform -- uid: 6882 - type: CableApcExtension - components: - - pos: -0.5,36.5 - parent: 0 - type: Transform -- uid: 6883 - type: CableApcExtension - components: - - pos: -0.5,37.5 - parent: 0 - type: Transform -- uid: 6884 - type: CableApcExtension - components: - - pos: -0.5,38.5 - parent: 0 - type: Transform -- uid: 6885 - type: CableApcExtension - components: - - pos: -0.5,39.5 - parent: 0 - type: Transform -- uid: 6886 - type: CableApcExtension - components: - - pos: -0.5,40.5 - parent: 0 - type: Transform -- uid: 6887 - type: CableApcExtension - components: - - pos: -0.5,41.5 - parent: 0 - type: Transform -- uid: 6888 - type: CableApcExtension - components: - - pos: -0.5,42.5 - parent: 0 - type: Transform -- uid: 6889 - type: CableApcExtension - components: - - pos: -0.5,43.5 - parent: 0 - type: Transform -- uid: 6890 - type: CableApcExtension - components: - - pos: -0.5,44.5 - parent: 0 - type: Transform -- uid: 6891 - type: CableApcExtension - components: - - pos: -0.5,45.5 - parent: 0 - type: Transform -- uid: 6892 - type: CableApcExtension - components: - - pos: -1.5,45.5 - parent: 0 - type: Transform -- uid: 6893 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6894 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6895 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6896 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6897 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6898 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6899 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6900 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6901 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6902 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6903 - type: GasPipeBend - components: - - pos: 5.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6904 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 5.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6905 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 5.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6906 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -2.5,26.5 - parent: 0 - type: Transform - - devices: - - 1801 - - 1800 - - 1215 - - 6820 - - 6821 - - 1802 - - 1803 - - 1804 - - 633 - - 634 - - 1806 - - 1805 - - 1807 - type: DeviceList -- uid: 6907 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -0.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6908 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -0.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6909 - type: AirSensor - components: - - pos: -0.5,29.5 - parent: 0 - type: Transform -- uid: 6910 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -2.5,30.5 - parent: 0 - type: Transform - - devices: - - 1801 - - 1800 - - 1215 - - 6820 - - 6821 - - 1802 - - 1803 - - 1804 - - 633 - - 634 - - 1806 - - 1805 - - 1807 - - 6908 - - 6907 - type: DeviceList -- uid: 6911 - type: AirSensor - components: - - pos: -0.5,14.5 - parent: 0 - type: Transform -- uid: 6912 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -2.5,11.5 - parent: 0 - type: Transform - - devices: - - 1547 - - 1548 - - 1549 - - 656 - - 657 - - 6911 - - 646 - - 647 - - 648 - - 649 - - 650 - - 1801 - - 1800 - - 1215 - - 6823 - - 6822 - type: DeviceList -- uid: 6913 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -2.5,10.5 - parent: 0 - type: Transform - - devices: - - 1547 - - 1548 - - 1549 - - 656 - - 657 - - 6911 - - 646 - - 647 - - 648 - - 649 - - 650 - - 1801 - - 1800 - - 1215 - - 6823 - - 6822 - - 1555 - - 1554 - type: DeviceList -- uid: 6914 - type: Intercom - components: - - pos: 1.5,20.5 - parent: 0 - type: Transform -- uid: 6915 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 1.5,26.5 - parent: 0 - type: Transform - - devices: - - 6822 - - 6823 - - 6820 - - 6821 - - 6917 - - 6904 - - 6905 - type: DeviceList -- uid: 6916 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 7.5,27.5 - parent: 0 - type: Transform - - devices: - - 6822 - - 6823 - - 6820 - - 6821 - - 6917 - type: DeviceList -- uid: 6917 - type: AirSensor - components: - - pos: 4.5,26.5 - parent: 0 - type: Transform -- uid: 6918 - type: DisposalUnit - components: - - pos: 5.5,30.5 - parent: 0 - type: Transform -- uid: 6919 - type: DisposalTrunk - components: - - pos: 5.5,30.5 - parent: 0 - type: Transform -- uid: 6920 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 5.5,28.5 - parent: 0 - type: Transform -- uid: 6921 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,28.5 - parent: 0 - type: Transform -- uid: 6922 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,28.5 - parent: 0 - type: Transform -- uid: 6923 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,28.5 - parent: 0 - type: Transform -- uid: 6924 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,28.5 - parent: 0 - type: Transform -- uid: 6925 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,28.5 - parent: 0 - type: Transform -- uid: 6926 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,29.5 - parent: 0 - type: Transform -- uid: 6927 - type: AirlockMaintLocked - components: - - name: Tool Storage - type: MetaData - - rot: 3.141592653589793 rad - pos: 7.5,22.5 - parent: 0 - type: Transform -- uid: 6928 - type: AirlockMaintLocked - components: - - name: Tool Storage - type: MetaData - - rot: 3.141592653589793 rad - pos: 7.5,29.5 - parent: 0 - type: Transform -- uid: 6929 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 1.5,22.5 - parent: 0 - type: Transform -- uid: 6930 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 1.5,23.5 - parent: 0 - type: Transform -- uid: 6931 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 1.5,28.5 - parent: 0 - type: Transform -- uid: 6932 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 1.5,29.5 - parent: 0 - type: Transform -- uid: 6933 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6934 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6935 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6936 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6937 - type: Poweredlight - components: - - pos: 3.5,30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6938 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 3.5,21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6939 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6940 - type: Table - components: - - pos: 6.5,30.5 - parent: 0 - type: Transform -- uid: 6941 - type: Table - components: - - pos: 4.5,30.5 - parent: 0 - type: Transform -- uid: 6942 - type: Table - components: - - pos: 3.5,30.5 - parent: 0 - type: Transform -- uid: 6943 - type: Table - components: - - pos: 2.5,30.5 - parent: 0 - type: Transform -- uid: 6944 - type: Table - components: - - pos: 2.5,25.5 - parent: 0 - type: Transform -- uid: 6945 - type: Table - components: - - pos: 2.5,26.5 - parent: 0 - type: Transform -- uid: 6946 - type: Table - components: - - pos: 2.5,24.5 - parent: 0 - type: Transform -- uid: 6947 - type: Table - components: - - pos: 2.5,27.5 - parent: 0 - type: Transform -- uid: 6948 - type: Table - components: - - pos: 6.5,21.5 - parent: 0 - type: Transform -- uid: 6949 - type: Table - components: - - pos: 5.5,21.5 - parent: 0 - type: Transform -- uid: 6950 - type: WeldingFuelTankFull - components: - - pos: 4.5,21.5 - parent: 0 - type: Transform -- uid: 6951 - type: Table - components: - - pos: 3.5,21.5 - parent: 0 - type: Transform -- uid: 6952 - type: Table - components: - - pos: 2.5,21.5 - parent: 0 - type: Transform -- uid: 6953 - type: Table - components: - - pos: 5.5,24.5 - parent: 0 - type: Transform -- uid: 6954 - type: Table - components: - - pos: 5.5,27.5 - parent: 0 - type: Transform -- uid: 6955 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,26.5 - parent: 0 - type: Transform -- uid: 6956 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,25.5 - parent: 0 - type: Transform -- uid: 6957 - type: FlashlightLantern - components: - - pos: 5.497531,21.660944 - parent: 0 - type: Transform -- uid: 6958 - type: FlashlightLantern - components: - - pos: 5.606906,21.504694 - parent: 0 - type: Transform -- uid: 6959 - type: ToolboxMechanicalFilled - components: - - pos: 6.466281,21.629694 - parent: 0 - type: Transform -- uid: 6960 - type: ClothingHeadHatWelding - components: - - pos: 2.5600312,21.676569 - parent: 0 - type: Transform -- uid: 6961 - type: PowerCellRecharger - components: - - pos: 3.5,30.5 - parent: 0 - type: Transform -- uid: 6962 - type: CrateEmptySpawner - components: - - pos: 5.5,25.5 - parent: 0 - type: Transform -- uid: 6963 - type: CrateEmptySpawner - components: - - pos: 5.5,26.5 - parent: 0 - type: Transform -- uid: 6964 - type: MedkitFilled - components: - - pos: 5.497531,27.629694 - parent: 0 - type: Transform -- uid: 6965 - type: PosterContrabandTools - components: - - pos: 7.5,24.5 - parent: 0 - type: Transform -- uid: 6966 - type: PosterContrabandHackingGuide - components: - - pos: 3.5,20.5 - parent: 0 - type: Transform -- uid: 6967 - type: PosterContrabandMissingGloves - components: - - pos: 7.5,28.5 - parent: 0 - type: Transform -- uid: 6968 - type: ClothingHandsGlovesColorYellow - components: - - pos: 4.403781,30.501423 - parent: 0 - type: Transform -- uid: 6969 - type: BoxLightMixed - components: - - pos: 2.6537812,30.642048 - parent: 0 - type: Transform -- uid: 6970 - type: FlashlightLantern - components: - - pos: 6.419406,30.688923 - parent: 0 - type: Transform -- uid: 6971 - type: FlashlightLantern - components: - - pos: 6.591281,30.548298 - parent: 0 - type: Transform -- uid: 6972 - type: HandheldGPSBasic - components: - - pos: 2.4350312,27.376423 - parent: 0 - type: Transform -- uid: 6973 - type: PartRodMetal - components: - - pos: 2.5131562,27.657673 - parent: 0 - type: Transform -- uid: 6974 - type: CrowbarRed - components: - - pos: 2.5131562,24.518791 - parent: 0 - type: Transform -- uid: 6975 - type: SheetSteel - components: - - pos: 2.4975312,25.393791 - parent: 0 - type: Transform -- uid: 6976 - type: SheetSteel - components: - - pos: 2.4975312,25.393791 - parent: 0 - type: Transform -- uid: 6977 - type: ToolboxElectricalFilled - components: - - pos: 3.4506562,21.612541 - parent: 0 - type: Transform -- uid: 6978 - type: RadioHandheld - components: - - pos: 5.372531,24.675041 - parent: 0 - type: Transform -- uid: 6979 - type: RadioHandheld - components: - - pos: 5.638156,24.675041 - parent: 0 - type: Transform -- uid: 6980 - type: RadioHandheld - components: - - pos: 5.544406,24.565666 - parent: 0 - type: Transform -- uid: 6981 - type: SpawnPointAssistant - components: - - pos: 4.5,24.5 - parent: 0 - type: Transform -- uid: 6982 - type: SpawnPointAssistant - components: - - pos: 3.5,25.5 - parent: 0 - type: Transform -- uid: 6983 - type: SpawnPointAssistant - components: - - pos: 3.5,26.5 - parent: 0 - type: Transform -- uid: 6984 - type: SpawnPointAssistant - components: - - pos: 4.5,27.5 - parent: 0 - type: Transform -- uid: 6985 - type: ToyAssistant - components: - - pos: 2.2475312,26.675041 - parent: 0 - type: Transform -- uid: 6986 - type: RemoteSignaller - components: - - pos: 2.6537812,26.721916 - parent: 0 - type: Transform -- uid: 6987 - type: RemoteSignaller - components: - - pos: 2.5444062,26.628166 - parent: 0 - type: Transform -- uid: 6988 - type: RandomPosterLegit - components: - - pos: 4.5,31.5 - parent: 0 - type: Transform -- uid: 6989 - type: WallReinforced - components: - - pos: 7.5,20.5 - parent: 0 - type: Transform -- uid: 6990 - type: Chair - components: - - pos: 2.5,19.5 - parent: 0 - type: Transform -- uid: 6991 - type: TableGlass - components: - - pos: 2.5,18.5 - parent: 0 - type: Transform -- uid: 6992 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 2.5,17.5 - parent: 0 - type: Transform -- uid: 6993 - type: AirlockMaintLocked - components: - - pos: 2.5,15.5 - parent: 0 - type: Transform -- uid: 6994 - type: WallReinforced - components: - - pos: 17.5,4.5 - parent: 0 - type: Transform -- uid: 6995 - type: WallReinforced - components: - - pos: 18.5,4.5 - parent: 0 - type: Transform -- uid: 6996 - type: WallReinforced - components: - - pos: 18.5,3.5 - parent: 0 - type: Transform -- uid: 6997 - type: WallReinforced - components: - - pos: 18.5,2.5 - parent: 0 - type: Transform -- uid: 6998 - type: WallReinforced - components: - - pos: 18.5,1.5 - parent: 0 - type: Transform -- uid: 6999 - type: WallReinforced - components: - - pos: 18.5,0.5 - parent: 0 - type: Transform -- uid: 7000 - type: WallReinforced - components: - - pos: 21.5,0.5 - parent: 0 - type: Transform -- uid: 7001 - type: WallReinforced - components: - - pos: 20.5,0.5 - parent: 0 - type: Transform -- uid: 7002 - type: WallReinforced - components: - - pos: 19.5,0.5 - parent: 0 - type: Transform -- uid: 7003 - type: WallReinforced - components: - - pos: 18.5,5.5 - parent: 0 - type: Transform -- uid: 7004 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7005 - type: WallReinforced - components: - - pos: 18.5,7.5 - parent: 0 - type: Transform -- uid: 7006 - type: WallReinforced - components: - - pos: 18.5,8.5 - parent: 0 - type: Transform -- uid: 7007 - type: WallReinforced - components: - - pos: 19.5,8.5 - parent: 0 - type: Transform -- uid: 7008 - type: WallReinforced - components: - - pos: 20.5,8.5 - parent: 0 - type: Transform -- uid: 7009 - type: WallReinforced - components: - - pos: 21.5,8.5 - parent: 0 - type: Transform -- uid: 7010 - type: WallReinforced - components: - - pos: 22.5,8.5 - parent: 0 - type: Transform -- uid: 7011 - type: WallReinforced - components: - - pos: 17.5,8.5 - parent: 0 - type: Transform -- uid: 7012 - type: WallReinforced - components: - - pos: 16.5,8.5 - parent: 0 - type: Transform -- uid: 7013 - type: WallReinforced - components: - - pos: 15.5,8.5 - parent: 0 - type: Transform -- uid: 7014 - type: WallReinforced - components: - - pos: 14.5,8.5 - parent: 0 - type: Transform -- uid: 7015 - type: WallReinforced - components: - - pos: 13.5,8.5 - parent: 0 - type: Transform -- uid: 7016 - type: WallReinforced - components: - - pos: 13.5,9.5 - parent: 0 - type: Transform -- uid: 7017 - type: WallReinforced - components: - - pos: 13.5,10.5 - parent: 0 - type: Transform -- uid: 7018 - type: WallReinforced - components: - - pos: 13.5,11.5 - parent: 0 - type: Transform -- uid: 7019 - type: WallReinforced - components: - - pos: 13.5,12.5 - parent: 0 - type: Transform -- uid: 7020 - type: WallReinforced - components: - - pos: 13.5,13.5 - parent: 0 - type: Transform -- uid: 7021 - type: WallReinforced - components: - - pos: 13.5,14.5 - parent: 0 - type: Transform -- uid: 7022 - type: WallReinforced - components: - - pos: 13.5,15.5 - parent: 0 - type: Transform -- uid: 7023 - type: WallReinforced - components: - - pos: 14.5,15.5 - parent: 0 - type: Transform -- uid: 7024 - type: WallReinforced - components: - - pos: 14.5,16.5 - parent: 0 - type: Transform -- uid: 7025 - type: WallReinforced - components: - - pos: 15.5,16.5 - parent: 0 - type: Transform -- uid: 7026 - type: WallReinforced - components: - - pos: 16.5,16.5 - parent: 0 - type: Transform -- uid: 7027 - type: WallReinforced - components: - - pos: 16.5,17.5 - parent: 0 - type: Transform -- uid: 7028 - type: WallReinforced - components: - - pos: 16.5,18.5 - parent: 0 - type: Transform -- uid: 7029 - type: WallReinforced - components: - - pos: 17.5,16.5 - parent: 0 - type: Transform -- uid: 7030 - type: WallReinforced - components: - - pos: 22.5,9.5 - parent: 0 - type: Transform -- uid: 7031 - type: WallReinforced - components: - - pos: 22.5,15.5 - parent: 0 - type: Transform -- uid: 7032 - type: WallReinforced - components: - - pos: 22.5,16.5 - parent: 0 - type: Transform -- uid: 7033 - type: WallReinforced - components: - - pos: 21.5,16.5 - parent: 0 - type: Transform -- uid: 7034 - type: WallReinforced - components: - - pos: 20.5,16.5 - parent: 0 - type: Transform -- uid: 7035 - type: WallReinforced - components: - - pos: 19.5,16.5 - parent: 0 - type: Transform -- uid: 7036 - type: WallReinforced - components: - - pos: 18.5,16.5 - parent: 0 - type: Transform -- uid: 7037 - type: WallReinforced - components: - - pos: 16.5,19.5 - parent: 0 - type: Transform -- uid: 7038 - type: WallReinforced - components: - - pos: 16.5,20.5 - parent: 0 - type: Transform -- uid: 7039 - type: WallReinforced - components: - - pos: 17.5,20.5 - parent: 0 - type: Transform -- uid: 7040 - type: WallReinforced - components: - - pos: 18.5,20.5 - parent: 0 - type: Transform -- uid: 7041 - type: WallReinforced - components: - - pos: 19.5,20.5 - parent: 0 - type: Transform -- uid: 7042 - type: WallReinforced - components: - - pos: 20.5,20.5 - parent: 0 - type: Transform -- uid: 7043 - type: WallReinforced - components: - - pos: 21.5,20.5 - parent: 0 - type: Transform -- uid: 7044 - type: WallReinforced - components: - - pos: 22.5,20.5 - parent: 0 - type: Transform -- uid: 7045 - type: WallReinforced - components: - - pos: 22.5,21.5 - parent: 0 - type: Transform -- uid: 7046 - type: WallReinforced - components: - - pos: 22.5,23.5 - parent: 0 - type: Transform -- uid: 7047 - type: WallReinforced - components: - - pos: 22.5,24.5 - parent: 0 - type: Transform -- uid: 7048 - type: WallReinforced - components: - - pos: 21.5,24.5 - parent: 0 - type: Transform -- uid: 7049 - type: WallReinforced - components: - - pos: 20.5,24.5 - parent: 0 - type: Transform -- uid: 7050 - type: WallReinforced - components: - - pos: 19.5,24.5 - parent: 0 - type: Transform -- uid: 7051 - type: WallReinforced - components: - - pos: 26.5,8.5 - parent: 0 - type: Transform -- uid: 7052 - type: WallReinforced - components: - - pos: 16.5,26.5 - parent: 0 - type: Transform -- uid: 7053 - type: WallReinforced - components: - - pos: 16.5,24.5 - parent: 0 - type: Transform -- uid: 7054 - type: WallReinforced - components: - - pos: 15.5,20.5 - parent: 0 - type: Transform -- uid: 7055 - type: WallReinforced - components: - - pos: 14.5,20.5 - parent: 0 - type: Transform -- uid: 7056 - type: WallReinforced - components: - - pos: 26.5,11.5 - parent: 0 - type: Transform -- uid: 7057 - type: WallReinforced - components: - - pos: 17.5,24.5 - parent: 0 - type: Transform -- uid: 7058 - type: WallReinforced - components: - - pos: 16.5,27.5 - parent: 0 - type: Transform -- uid: 7059 - type: WallReinforced - components: - - pos: 17.5,28.5 - parent: 0 - type: Transform -- uid: 7060 - type: WallReinforced - components: - - pos: 16.5,28.5 - parent: 0 - type: Transform -- uid: 7061 - type: WallReinforced - components: - - pos: 14.5,24.5 - parent: 0 - type: Transform -- uid: 7062 - type: WallReinforced - components: - - pos: 15.5,24.5 - parent: 0 - type: Transform -- uid: 7063 - type: WallReinforced - components: - - pos: 16.5,25.5 - parent: 0 - type: Transform -- uid: 7064 - type: WallReinforced - components: - - pos: 14.5,23.5 - parent: 0 - type: Transform -- uid: 7065 - type: WallReinforced - components: - - pos: 14.5,21.5 - parent: 0 - type: Transform -- uid: 7066 - type: WallReinforced - components: - - pos: 14.5,22.5 - parent: 0 - type: Transform -- uid: 7067 - type: WallReinforced - components: - - pos: 10.5,31.5 - parent: 0 - type: Transform -- uid: 7068 - type: WallReinforced - components: - - pos: 11.5,31.5 - parent: 0 - type: Transform -- uid: 7069 - type: WallReinforced - components: - - pos: 11.5,30.5 - parent: 0 - type: Transform -- uid: 7070 - type: WallReinforced - components: - - pos: 12.5,30.5 - parent: 0 - type: Transform -- uid: 7071 - type: WallReinforced - components: - - pos: 13.5,30.5 - parent: 0 - type: Transform -- uid: 7072 - type: WallReinforced - components: - - pos: 17.5,31.5 - parent: 0 - type: Transform -- uid: 7073 - type: WallReinforced - components: - - pos: 18.5,31.5 - parent: 0 - type: Transform -- uid: 7074 - type: WallReinforced - components: - - pos: 14.5,30.5 - parent: 0 - type: Transform -- uid: 7075 - type: WallReinforced - components: - - pos: 15.5,30.5 - parent: 0 - type: Transform -- uid: 7076 - type: WallReinforced - components: - - pos: 15.5,31.5 - parent: 0 - type: Transform -- uid: 7077 - type: WallReinforced - components: - - pos: 16.5,31.5 - parent: 0 - type: Transform -- uid: 7078 - type: WallReinforced - components: - - pos: 20.5,31.5 - parent: 0 - type: Transform -- uid: 7079 - type: WallReinforced - components: - - pos: 21.5,31.5 - parent: 0 - type: Transform -- uid: 7080 - type: WallReinforced - components: - - pos: 22.5,31.5 - parent: 0 - type: Transform -- uid: 7081 - type: WallReinforced - components: - - pos: 22.5,30.5 - parent: 0 - type: Transform -- uid: 7082 - type: WallReinforced - components: - - pos: 22.5,29.5 - parent: 0 - type: Transform -- uid: 7083 - type: WallReinforced - components: - - pos: 22.5,28.5 - parent: 0 - type: Transform -- uid: 7084 - type: WallReinforced - components: - - pos: 22.5,27.5 - parent: 0 - type: Transform -- uid: 7085 - type: WallReinforced - components: - - pos: 21.5,27.5 - parent: 0 - type: Transform -- uid: 7086 - type: WallReinforced - components: - - pos: 20.5,27.5 - parent: 0 - type: Transform -- uid: 7087 - type: WallReinforced - components: - - pos: 19.5,27.5 - parent: 0 - type: Transform -- uid: 7088 - type: WallReinforced - components: - - pos: 8.5,31.5 - parent: 0 - type: Transform -- uid: 7089 - type: FirelockGlass - components: - - pos: 17.5,-3.5 - parent: 0 - type: Transform -- uid: 7090 - type: FirelockGlass - components: - - pos: 16.5,-3.5 - parent: 0 - type: Transform -- uid: 7091 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-1.5 - parent: 0 - type: Transform -- uid: 7092 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-1.5 - parent: 0 - type: Transform -- uid: 7093 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-1.5 - parent: 0 - type: Transform -- uid: 7094 - type: WallSolid - components: - - pos: 18.5,-3.5 - parent: 0 - type: Transform -- uid: 7095 - type: DisposalPipe - components: - - pos: 24.5,-4.5 - parent: 0 - type: Transform -- uid: 7096 - type: Window - components: - - pos: 19.5,-3.5 - parent: 0 - type: Transform -- uid: 7097 - type: Window - components: - - pos: 20.5,-3.5 - parent: 0 - type: Transform -- uid: 7098 - type: Grille - components: - - pos: 19.5,-3.5 - parent: 0 - type: Transform -- uid: 7099 - type: Grille - components: - - pos: 20.5,-3.5 - parent: 0 - type: Transform -- uid: 7100 - type: WindowReinforcedDirectional - components: - - pos: 18.5,-0.5 - parent: 0 - type: Transform -- uid: 7101 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-0.5 - parent: 0 - type: Transform -- uid: 7102 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-0.5 - parent: 0 - type: Transform -- uid: 7103 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,-0.5 - parent: 0 - type: Transform -- uid: 7104 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,-0.5 - parent: 0 - type: Transform -- uid: 7105 - type: DisposalUnit - components: - - pos: 21.5,-0.5 - parent: 0 - type: Transform -- uid: 7106 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-5.5 - parent: 0 - type: Transform -- uid: 7107 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-5.5 - parent: 0 - type: Transform -- uid: 7108 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 0 - type: Transform -- uid: 7109 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 0 - type: Transform -- uid: 7110 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 0 - type: Transform -- uid: 7111 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-5.5 - parent: 0 - type: Transform -- uid: 7112 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-5.5 - parent: 0 - type: Transform -- uid: 7113 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-5.5 - parent: 0 - type: Transform -- uid: 7114 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-5.5 - parent: 0 - type: Transform -- uid: 7115 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-5.5 - parent: 0 - type: Transform -- uid: 7116 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-5.5 - parent: 0 - type: Transform -- uid: 7117 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-5.5 - parent: 0 - type: Transform -- uid: 7118 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-5.5 - parent: 0 - type: Transform -- uid: 7119 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7120 - type: DisposalTrunk - components: - - pos: 21.5,-0.5 - parent: 0 - type: Transform -- uid: 7121 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 21.5,-1.5 - parent: 0 - type: Transform -- uid: 7122 - type: DisposalBend - components: - - pos: 22.5,-1.5 - parent: 0 - type: Transform -- uid: 7123 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 22.5,-2.5 - parent: 0 - type: Transform -- uid: 7124 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7125 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7126 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7127 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7128 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7129 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-1.5 - parent: 0 - type: Transform -- uid: 7130 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-1.5 - parent: 0 - type: Transform -- uid: 7131 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7132 - type: WallReinforced - components: - - pos: 22.5,0.5 - parent: 0 - type: Transform -- uid: 7133 - type: WallReinforced - components: - - pos: 22.5,4.5 - parent: 0 - type: Transform -- uid: 7134 - type: WallReinforced - components: - - pos: 21.5,4.5 - parent: 0 - type: Transform -- uid: 7135 - type: WallReinforced - components: - - pos: 20.5,4.5 - parent: 0 - type: Transform -- uid: 7136 - type: WallReinforced - components: - - pos: 26.5,0.5 - parent: 0 - type: Transform -- uid: 7137 - type: WallReinforced - components: - - pos: 26.5,1.5 - parent: 0 - type: Transform -- uid: 7138 - type: WallReinforced - components: - - pos: 26.5,2.5 - parent: 0 - type: Transform -- uid: 7139 - type: WallReinforced - components: - - pos: 26.5,3.5 - parent: 0 - type: Transform -- uid: 7140 - type: WallReinforced - components: - - pos: 26.5,4.5 - parent: 0 - type: Transform -- uid: 7141 - type: WallReinforced - components: - - pos: 29.5,0.5 - parent: 0 - type: Transform -- uid: 7142 - type: WallReinforced - components: - - pos: 29.5,4.5 - parent: 0 - type: Transform -- uid: 7143 - type: WallReinforced - components: - - pos: 32.5,0.5 - parent: 0 - type: Transform -- uid: 7144 - type: WallReinforced - components: - - pos: 32.5,4.5 - parent: 0 - type: Transform -- uid: 7145 - type: WallReinforced - components: - - pos: 35.5,0.5 - parent: 0 - type: Transform -- uid: 7146 - type: WallReinforced - components: - - pos: 35.5,4.5 - parent: 0 - type: Transform -- uid: 7147 - type: WallReinforced - components: - - pos: 40.5,0.5 - parent: 0 - type: Transform -- uid: 7148 - type: WallReinforced - components: - - pos: 40.5,1.5 - parent: 0 - type: Transform -- uid: 7149 - type: WallReinforced - components: - - pos: 40.5,2.5 - parent: 0 - type: Transform -- uid: 7150 - type: WallReinforced - components: - - pos: 40.5,3.5 - parent: 0 - type: Transform -- uid: 7151 - type: WallReinforced - components: - - pos: 40.5,4.5 - parent: 0 - type: Transform -- uid: 7152 - type: WallSolid - components: - - pos: 35.5,1.5 - parent: 0 - type: Transform -- uid: 7153 - type: WallSolid - components: - - pos: 35.5,2.5 - parent: 0 - type: Transform -- uid: 7154 - type: WallSolid - components: - - pos: 35.5,3.5 - parent: 0 - type: Transform -- uid: 7155 - type: WallSolid - components: - - pos: 29.5,1.5 - parent: 0 - type: Transform -- uid: 7156 - type: WallSolid - components: - - pos: 29.5,2.5 - parent: 0 - type: Transform -- uid: 7157 - type: WallSolid - components: - - pos: 29.5,3.5 - parent: 0 - type: Transform -- uid: 7158 - type: WallSolid - components: - - pos: 32.5,1.5 - parent: 0 - type: Transform -- uid: 7159 - type: WallSolid - components: - - pos: 32.5,2.5 - parent: 0 - type: Transform -- uid: 7160 - type: WallSolid - components: - - pos: 32.5,3.5 - parent: 0 - type: Transform -- uid: 7161 - type: Grille - components: - - pos: 27.5,0.5 - parent: 0 - type: Transform -- uid: 7162 - type: Grille - components: - - pos: 28.5,0.5 - parent: 0 - type: Transform -- uid: 7163 - type: Grille - components: - - pos: 30.5,0.5 - parent: 0 - type: Transform -- uid: 7164 - type: Grille - components: - - pos: 31.5,0.5 - parent: 0 - type: Transform -- uid: 7165 - type: Grille - components: - - pos: 33.5,0.5 - parent: 0 - type: Transform -- uid: 7166 - type: Grille - components: - - pos: 34.5,0.5 - parent: 0 - type: Transform -- uid: 7167 - type: Grille - components: - - pos: 36.5,0.5 - parent: 0 - type: Transform -- uid: 7168 - type: Grille - components: - - pos: 37.5,0.5 - parent: 0 - type: Transform -- uid: 7169 - type: Grille - components: - - pos: 38.5,0.5 - parent: 0 - type: Transform -- uid: 7170 - type: Grille - components: - - pos: 39.5,0.5 - parent: 0 - type: Transform -- uid: 7171 - type: Grille - components: - - pos: 39.5,4.5 - parent: 0 - type: Transform -- uid: 7172 - type: Grille - components: - - pos: 38.5,4.5 - parent: 0 - type: Transform -- uid: 7173 - type: Grille - components: - - pos: 36.5,4.5 - parent: 0 - type: Transform -- uid: 7174 - type: Grille - components: - - pos: 33.5,4.5 - parent: 0 - type: Transform -- uid: 7175 - type: Grille - components: - - pos: 30.5,4.5 - parent: 0 - type: Transform -- uid: 7176 - type: Grille - components: - - pos: 27.5,4.5 - parent: 0 - type: Transform -- uid: 7177 - type: Grille - components: - - pos: 24.5,0.5 - parent: 0 - type: Transform -- uid: 7178 - type: Grille - components: - - pos: 24.5,4.5 - parent: 0 - type: Transform -- uid: 7179 - type: TableReinforced - components: - - pos: 22.5,1.5 - parent: 0 - type: Transform -- uid: 7180 - type: TableReinforced - components: - - pos: 22.5,2.5 - parent: 0 - type: Transform -- uid: 7181 - type: TableReinforced - components: - - pos: 22.5,3.5 - parent: 0 - type: Transform -- uid: 7182 - type: DisposalPipe - components: - - pos: 24.5,-0.5 - parent: 0 - type: Transform -- uid: 7183 - type: DisposalPipe - components: - - pos: 24.5,0.5 - parent: 0 - type: Transform -- uid: 7184 - type: DisposalPipe - components: - - pos: 24.5,1.5 - parent: 0 - type: Transform -- uid: 7185 - type: DisposalPipe - components: - - pos: 24.5,2.5 - parent: 0 - type: Transform -- uid: 7186 - type: DisposalPipe - components: - - pos: 24.5,3.5 - parent: 0 - type: Transform -- uid: 7187 - type: DisposalPipe - components: - - pos: 24.5,4.5 - parent: 0 - type: Transform -- uid: 7188 - type: DisposalPipe - components: - - pos: 24.5,5.5 - parent: 0 - type: Transform -- uid: 7189 - type: DisposalJunctionFlipped - components: - - pos: 24.5,6.5 - parent: 0 - type: Transform -- uid: 7190 - type: WallReinforced - components: - - pos: 19.5,28.5 - parent: 0 - type: Transform -- uid: 7191 - type: WallReinforced - components: - - pos: 26.5,12.5 - parent: 0 - type: Transform -- uid: 7192 - type: WallReinforced - components: - - pos: 26.5,15.5 - parent: 0 - type: Transform -- uid: 7193 - type: WallReinforced - components: - - pos: 26.5,16.5 - parent: 0 - type: Transform -- uid: 7194 - type: WallReinforced - components: - - pos: 26.5,20.5 - parent: 0 - type: Transform -- uid: 7195 - type: WallReinforced - components: - - pos: 26.5,23.5 - parent: 0 - type: Transform -- uid: 7196 - type: WallReinforced - components: - - pos: 26.5,27.5 - parent: 0 - type: Transform -- uid: 7197 - type: WallReinforced - components: - - pos: 26.5,28.5 - parent: 0 - type: Transform -- uid: 7198 - type: WallReinforced - components: - - pos: 26.5,31.5 - parent: 0 - type: Transform -- uid: 7199 - type: WallReinforced - components: - - pos: 28.5,31.5 - parent: 0 - type: Transform -- uid: 7200 - type: WallReinforced - components: - - pos: 29.5,31.5 - parent: 0 - type: Transform -- uid: 7201 - type: WallReinforced - components: - - pos: 29.5,30.5 - parent: 0 - type: Transform -- uid: 7202 - type: WallReinforced - components: - - pos: 29.5,29.5 - parent: 0 - type: Transform -- uid: 7203 - type: WallReinforced - components: - - pos: 29.5,28.5 - parent: 0 - type: Transform -- uid: 7204 - type: WallReinforced - components: - - pos: 29.5,27.5 - parent: 0 - type: Transform -- uid: 7205 - type: WallReinforced - components: - - pos: 28.5,27.5 - parent: 0 - type: Transform -- uid: 7206 - type: ReinforcedWindow - components: - - pos: 24.5,28.5 - parent: 0 - type: Transform -- uid: 7207 - type: ReinforcedWindow - components: - - pos: 24.5,31.5 - parent: 0 - type: Transform -- uid: 7208 - type: Catwalk - components: - - pos: 24.5,29.5 - parent: 0 - type: Transform -- uid: 7209 - type: Catwalk - components: - - pos: 24.5,30.5 - parent: 0 - type: Transform -- uid: 7210 - type: Catwalk - components: - - pos: 24.5,1.5 - parent: 0 - type: Transform -- uid: 7211 - type: Catwalk - components: - - pos: 24.5,2.5 - parent: 0 - type: Transform -- uid: 7212 - type: Catwalk - components: - - pos: 24.5,3.5 - parent: 0 - type: Transform -- uid: 7213 - type: ReinforcedWindow - components: - - pos: 27.5,8.5 - parent: 0 - type: Transform -- uid: 7214 - type: ReinforcedWindow - components: - - pos: 29.5,8.5 - parent: 0 - type: Transform -- uid: 7215 - type: ReinforcedWindow - components: - - pos: 26.5,9.5 - parent: 0 - type: Transform -- uid: 7216 - type: ReinforcedWindow - components: - - pos: 26.5,10.5 - parent: 0 - type: Transform -- uid: 7217 - type: ReinforcedWindow - components: - - pos: 26.5,13.5 - parent: 0 - type: Transform -- uid: 7218 - type: ReinforcedWindow - components: - - pos: 26.5,14.5 - parent: 0 - type: Transform -- uid: 7219 - type: ReinforcedWindow - components: - - pos: 27.5,15.5 - parent: 0 - type: Transform -- uid: 7220 - type: ReinforcedWindow - components: - - pos: 32.5,11.5 - parent: 0 - type: Transform -- uid: 7221 - type: ReinforcedWindow - components: - - pos: 32.5,12.5 - parent: 0 - type: Transform -- uid: 7222 - type: WallReinforced - components: - - pos: 31.5,8.5 - parent: 0 - type: Transform -- uid: 7223 - type: WallReinforced - components: - - pos: 32.5,8.5 - parent: 0 - type: Transform -- uid: 7224 - type: WallReinforced - components: - - pos: 32.5,9.5 - parent: 0 - type: Transform -- uid: 7225 - type: WallReinforced - components: - - pos: 32.5,10.5 - parent: 0 - type: Transform -- uid: 7226 - type: WallReinforced - components: - - pos: 32.5,13.5 - parent: 0 - type: Transform -- uid: 7227 - type: WallReinforced - components: - - pos: 32.5,14.5 - parent: 0 - type: Transform -- uid: 7228 - type: WallReinforced - components: - - pos: 32.5,15.5 - parent: 0 - type: Transform -- uid: 7229 - type: WallReinforced - components: - - pos: 31.5,15.5 - parent: 0 - type: Transform -- uid: 7230 - type: WallReinforced - components: - - pos: 30.5,15.5 - parent: 0 - type: Transform -- uid: 7231 - type: TableReinforced - components: - - pos: 28.5,8.5 - parent: 0 - type: Transform -- uid: 7232 - type: TableReinforced - components: - - pos: 28.5,15.5 - parent: 0 - type: Transform -- uid: 7233 - type: WallReinforced - components: - - pos: 33.5,8.5 - parent: 0 - type: Transform -- uid: 7234 - type: WallReinforced - components: - - pos: 37.5,8.5 - parent: 0 - type: Transform -- uid: 7235 - type: WallReinforced - components: - - pos: 37.5,9.5 - parent: 0 - type: Transform -- uid: 7236 - type: WallReinforced - components: - - pos: 37.5,10.5 - parent: 0 - type: Transform -- uid: 7237 - type: WallReinforced - components: - - pos: 37.5,11.5 - parent: 0 - type: Transform -- uid: 7238 - type: ReinforcedWindow - components: - - pos: 37.5,12.5 - parent: 0 - type: Transform -- uid: 7239 - type: ReinforcedWindow - components: - - pos: 37.5,14.5 - parent: 0 - type: Transform -- uid: 7240 - type: ReinforcedWindow - components: - - pos: 39.5,8.5 - parent: 0 - type: Transform -- uid: 7241 - type: WallReinforced - components: - - pos: 37.5,15.5 - parent: 0 - type: Transform -- uid: 7242 - type: ReinforcedWindow - components: - - pos: 34.5,0.5 - parent: 0 - type: Transform -- uid: 7243 - type: ReinforcedWindow - components: - - pos: 33.5,0.5 - parent: 0 - type: Transform -- uid: 7244 - type: ReinforcedWindow - components: - - pos: 39.5,0.5 - parent: 0 - type: Transform -- uid: 7245 - type: ReinforcedWindow - components: - - pos: 38.5,0.5 - parent: 0 - type: Transform -- uid: 7246 - type: ReinforcedWindow - components: - - pos: 37.5,0.5 - parent: 0 - type: Transform -- uid: 7247 - type: ReinforcedWindow - components: - - pos: 36.5,0.5 - parent: 0 - type: Transform -- uid: 7248 - type: ReinforcedWindow - components: - - pos: 31.5,0.5 - parent: 0 - type: Transform -- uid: 7249 - type: ReinforcedWindow - components: - - pos: 30.5,0.5 - parent: 0 - type: Transform -- uid: 7250 - type: ReinforcedWindow - components: - - pos: 28.5,0.5 - parent: 0 - type: Transform -- uid: 7251 - type: ReinforcedWindow - components: - - pos: 27.5,0.5 - parent: 0 - type: Transform -- uid: 7252 - type: ReinforcedWindow - components: - - pos: 27.5,4.5 - parent: 0 - type: Transform -- uid: 7253 - type: ReinforcedWindow - components: - - pos: 30.5,4.5 - parent: 0 - type: Transform -- uid: 7254 - type: ReinforcedWindow - components: - - pos: 33.5,4.5 - parent: 0 - type: Transform -- uid: 7255 - type: ReinforcedWindow - components: - - pos: 36.5,4.5 - parent: 0 - type: Transform -- uid: 7256 - type: ReinforcedWindow - components: - - pos: 39.5,4.5 - parent: 0 - type: Transform -- uid: 7257 - type: ReinforcedWindow - components: - - pos: 38.5,4.5 - parent: 0 - type: Transform -- uid: 7258 - type: ReinforcedWindow - components: - - pos: 24.5,0.5 - parent: 0 - type: Transform -- uid: 7259 - type: ReinforcedWindow - components: - - pos: 24.5,4.5 - parent: 0 - type: Transform -- uid: 7260 - type: WallReinforced - components: - - pos: 36.5,15.5 - parent: 0 - type: Transform -- uid: 7261 - type: WallReinforced - components: - - pos: 35.5,15.5 - parent: 0 - type: Transform -- uid: 7262 - type: WallReinforced - components: - - pos: 34.5,15.5 - parent: 0 - type: Transform -- uid: 7263 - type: WallReinforced - components: - - pos: 33.5,15.5 - parent: 0 - type: Transform -- uid: 7264 - type: WallReinforced - components: - - pos: 40.5,8.5 - parent: 0 - type: Transform -- uid: 7265 - type: WallReinforced - components: - - pos: 40.5,9.5 - parent: 0 - type: Transform -- uid: 7266 - type: WallReinforced - components: - - pos: 40.5,10.5 - parent: 0 - type: Transform -- uid: 7267 - type: WallReinforced - components: - - pos: 40.5,11.5 - parent: 0 - type: Transform -- uid: 7268 - type: WallReinforced - components: - - pos: 40.5,12.5 - parent: 0 - type: Transform -- uid: 7269 - type: WallReinforced - components: - - pos: 40.5,13.5 - parent: 0 - type: Transform -- uid: 7270 - type: WallReinforced - components: - - pos: 40.5,14.5 - parent: 0 - type: Transform -- uid: 7271 - type: WallReinforced - components: - - pos: 40.5,15.5 - parent: 0 - type: Transform -- uid: 7272 - type: WallReinforced - components: - - pos: 39.5,15.5 - parent: 0 - type: Transform -- uid: 7273 - type: WallReinforced - components: - - pos: 38.5,15.5 - parent: 0 - type: Transform -- uid: 7274 - type: WallReinforced - components: - - pos: 39.5,11.5 - parent: 0 - type: Transform -- uid: 7275 - type: WallReinforced - components: - - pos: 38.5,11.5 - parent: 0 - type: Transform -- uid: 7276 - type: ReinforcedWindow - components: - - pos: 34.5,8.5 - parent: 0 - type: Transform -- uid: 7277 - type: ReinforcedWindow - components: - - pos: 36.5,8.5 - parent: 0 - type: Transform -- uid: 7278 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 22.5,1.5 - parent: 0 - type: Transform -- uid: 7279 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 22.5,3.5 - parent: 0 - type: Transform -- uid: 7280 - type: WallReinforced - components: - - pos: 41.5,0.5 - parent: 0 - type: Transform -- uid: 7281 - type: WallReinforced - components: - - pos: 42.5,0.5 - parent: 0 - type: Transform -- uid: 7282 - type: WallReinforced - components: - - pos: 43.5,0.5 - parent: 0 - type: Transform -- uid: 7283 - type: WallReinforced - components: - - pos: 44.5,0.5 - parent: 0 - type: Transform -- uid: 7284 - type: WallReinforced - components: - - pos: 45.5,0.5 - parent: 0 - type: Transform -- uid: 7285 - type: WallReinforced - components: - - pos: 46.5,0.5 - parent: 0 - type: Transform -- uid: 7286 - type: WallReinforced - components: - - pos: 47.5,0.5 - parent: 0 - type: Transform -- uid: 7287 - type: WallReinforced - components: - - pos: 48.5,0.5 - parent: 0 - type: Transform -- uid: 7288 - type: WallReinforced - components: - - pos: 49.5,0.5 - parent: 0 - type: Transform -- uid: 7289 - type: WallReinforced - components: - - pos: 49.5,1.5 - parent: 0 - type: Transform -- uid: 7290 - type: WallReinforced - components: - - pos: 49.5,2.5 - parent: 0 - type: Transform -- uid: 7291 - type: WallReinforced - components: - - pos: 49.5,3.5 - parent: 0 - type: Transform -- uid: 7292 - type: WallReinforced - components: - - pos: 48.5,3.5 - parent: 0 - type: Transform -- uid: 7293 - type: WallReinforced - components: - - pos: 48.5,4.5 - parent: 0 - type: Transform -- uid: 7294 - type: WallReinforced - components: - - pos: 47.5,4.5 - parent: 0 - type: Transform -- uid: 7295 - type: WallReinforced - components: - - pos: 46.5,4.5 - parent: 0 - type: Transform -- uid: 7296 - type: WallReinforced - components: - - pos: 45.5,4.5 - parent: 0 - type: Transform -- uid: 7297 - type: WallReinforced - components: - - pos: 44.5,4.5 - parent: 0 - type: Transform -- uid: 7298 - type: WallReinforced - components: - - pos: 44.5,5.5 - parent: 0 - type: Transform -- uid: 7299 - type: WallReinforced - components: - - pos: 44.5,6.5 - parent: 0 - type: Transform -- uid: 7300 - type: WallReinforced - components: - - pos: 44.5,7.5 - parent: 0 - type: Transform -- uid: 7301 - type: WallReinforced - components: - - pos: 44.5,8.5 - parent: 0 - type: Transform -- uid: 7302 - type: WallReinforced - components: - - pos: 45.5,8.5 - parent: 0 - type: Transform -- uid: 7303 - type: WallReinforced - components: - - pos: 48.5,5.5 - parent: 0 - type: Transform -- uid: 7304 - type: WallReinforced - components: - - pos: 48.5,6.5 - parent: 0 - type: Transform -- uid: 7305 - type: WallReinforced - components: - - pos: 48.5,7.5 - parent: 0 - type: Transform -- uid: 7306 - type: WallReinforced - components: - - pos: 48.5,8.5 - parent: 0 - type: Transform -- uid: 7307 - type: WallReinforced - components: - - pos: 47.5,8.5 - parent: 0 - type: Transform -- uid: 7308 - type: ReinforcedWindow - components: - - pos: 40.5,6.5 - parent: 0 - type: Transform -- uid: 7309 - type: Grille - components: - - pos: 40.5,6.5 - parent: 0 - type: Transform -- uid: 7310 - type: Grille - components: - - pos: 39.5,8.5 - parent: 0 - type: Transform -- uid: 7311 - type: Grille - components: - - pos: 36.5,8.5 - parent: 0 - type: Transform -- uid: 7312 - type: Grille - components: - - pos: 34.5,8.5 - parent: 0 - type: Transform -- uid: 7313 - type: Grille - components: - - pos: 37.5,12.5 - parent: 0 - type: Transform -- uid: 7314 - type: Grille - components: - - pos: 37.5,14.5 - parent: 0 - type: Transform -- uid: 7315 - type: Grille - components: - - pos: 32.5,11.5 - parent: 0 - type: Transform -- uid: 7316 - type: Grille - components: - - pos: 32.5,12.5 - parent: 0 - type: Transform -- uid: 7317 - type: Grille - components: - - pos: 29.5,8.5 - parent: 0 - type: Transform -- uid: 7318 - type: Grille - components: - - pos: 27.5,8.5 - parent: 0 - type: Transform -- uid: 7319 - type: Grille - components: - - pos: 26.5,9.5 - parent: 0 - type: Transform -- uid: 7320 - type: Grille - components: - - pos: 26.5,10.5 - parent: 0 - type: Transform -- uid: 7321 - type: Grille - components: - - pos: 26.5,13.5 - parent: 0 - type: Transform -- uid: 7322 - type: Grille - components: - - pos: 26.5,14.5 - parent: 0 - type: Transform -- uid: 7323 - type: Grille - components: - - pos: 27.5,15.5 - parent: 0 - type: Transform -- uid: 7324 - type: Grille - components: - - pos: 24.5,28.5 - parent: 0 - type: Transform -- uid: 7325 - type: Grille - components: - - pos: 24.5,31.5 - parent: 0 - type: Transform -- uid: 7326 - type: Grille - components: - - pos: 26.5,26.5 - parent: 0 - type: Transform -- uid: 7327 - type: Grille - components: - - pos: 26.5,24.5 - parent: 0 - type: Transform -- uid: 7328 - type: Grille - components: - - pos: 26.5,22.5 - parent: 0 - type: Transform -- uid: 7329 - type: Grille - components: - - pos: 26.5,21.5 - parent: 0 - type: Transform -- uid: 7330 - type: Grille - components: - - pos: 26.5,19.5 - parent: 0 - type: Transform -- uid: 7331 - type: Grille - components: - - pos: 26.5,17.5 - parent: 0 - type: Transform -- uid: 7332 - type: Grille - components: - - pos: 24.5,15.5 - parent: 0 - type: Transform -- uid: 7333 - type: ReinforcedWindow - components: - - pos: 24.5,15.5 - parent: 0 - type: Transform -- uid: 7334 - type: ReinforcedWindow - components: - - pos: 26.5,17.5 - parent: 0 - type: Transform -- uid: 7335 - type: ReinforcedWindow - components: - - pos: 26.5,19.5 - parent: 0 - type: Transform -- uid: 7336 - type: ReinforcedWindow - components: - - pos: 26.5,21.5 - parent: 0 - type: Transform -- uid: 7337 - type: ReinforcedWindow - components: - - pos: 26.5,22.5 - parent: 0 - type: Transform -- uid: 7338 - type: ReinforcedWindow - components: - - pos: 26.5,24.5 - parent: 0 - type: Transform -- uid: 7339 - type: ReinforcedWindow - components: - - pos: 26.5,26.5 - parent: 0 - type: Transform -- uid: 7340 - type: Catwalk - components: - - pos: 32.5,29.5 - parent: 0 - type: Transform -- uid: 7341 - type: Catwalk - components: - - pos: 33.5,29.5 - parent: 0 - type: Transform -- uid: 7342 - type: Catwalk - components: - - pos: 34.5,29.5 - parent: 0 - type: Transform -- uid: 7343 - type: Catwalk - components: - - pos: 35.5,29.5 - parent: 0 - type: Transform -- uid: 7344 - type: Catwalk - components: - - pos: 36.5,29.5 - parent: 0 - type: Transform -- uid: 7345 - type: Catwalk - components: - - pos: 37.5,29.5 - parent: 0 - type: Transform -- uid: 7346 - type: Catwalk - components: - - pos: 37.5,30.5 - parent: 0 - type: Transform -- uid: 7347 - type: Catwalk - components: - - pos: 38.5,30.5 - parent: 0 - type: Transform -- uid: 7348 - type: Catwalk - components: - - pos: 39.5,30.5 - parent: 0 - type: Transform -- uid: 7349 - type: Catwalk - components: - - pos: 39.5,29.5 - parent: 0 - type: Transform -- uid: 7350 - type: Catwalk - components: - - pos: 39.5,28.5 - parent: 0 - type: Transform -- uid: 7351 - type: Catwalk - components: - - pos: 37.5,28.5 - parent: 0 - type: Transform -- uid: 7352 - type: Catwalk - components: - - pos: 38.5,28.5 - parent: 0 - type: Transform -- uid: 7353 - type: ReinforcedWindow - components: - - pos: 31.5,27.5 - parent: 0 - type: Transform -- uid: 7354 - type: WallReinforced - components: - - pos: 30.5,31.5 - parent: 0 - type: Transform -- uid: 7355 - type: WallReinforced - components: - - pos: 31.5,31.5 - parent: 0 - type: Transform -- uid: 7356 - type: WallReinforced - components: - - pos: 32.5,31.5 - parent: 0 - type: Transform -- uid: 7357 - type: WallReinforced - components: - - pos: 33.5,31.5 - parent: 0 - type: Transform -- uid: 7358 - type: WallReinforced - components: - - pos: 34.5,31.5 - parent: 0 - type: Transform -- uid: 7359 - type: WallReinforced - components: - - pos: 35.5,31.5 - parent: 0 - type: Transform -- uid: 7360 - type: WallReinforced - components: - - pos: 36.5,31.5 - parent: 0 - type: Transform -- uid: 7361 - type: WallReinforced - components: - - pos: 37.5,31.5 - parent: 0 - type: Transform -- uid: 7362 - type: WallReinforced - components: - - pos: 38.5,31.5 - parent: 0 - type: Transform -- uid: 7363 - type: WallReinforced - components: - - pos: 39.5,31.5 - parent: 0 - type: Transform -- uid: 7364 - type: WallReinforced - components: - - pos: 40.5,31.5 - parent: 0 - type: Transform -- uid: 7365 - type: WallReinforced - components: - - pos: 40.5,30.5 - parent: 0 - type: Transform -- uid: 7366 - type: WallReinforced - components: - - pos: 40.5,29.5 - parent: 0 - type: Transform -- uid: 7367 - type: WallReinforced - components: - - pos: 40.5,28.5 - parent: 0 - type: Transform -- uid: 7368 - type: WallReinforced - components: - - pos: 40.5,27.5 - parent: 0 - type: Transform -- uid: 7369 - type: WallReinforced - components: - - pos: 39.5,27.5 - parent: 0 - type: Transform -- uid: 7370 - type: WallReinforced - components: - - pos: 38.5,27.5 - parent: 0 - type: Transform -- uid: 7371 - type: WallReinforced - components: - - pos: 37.5,27.5 - parent: 0 - type: Transform -- uid: 7372 - type: WallReinforced - components: - - pos: 36.5,27.5 - parent: 0 - type: Transform -- uid: 7373 - type: WallReinforced - components: - - pos: 35.5,27.5 - parent: 0 - type: Transform -- uid: 7374 - type: WallReinforced - components: - - pos: 34.5,27.5 - parent: 0 - type: Transform -- uid: 7375 - type: WallReinforced - components: - - pos: 33.5,27.5 - parent: 0 - type: Transform -- uid: 7376 - type: WallReinforced - components: - - pos: 32.5,27.5 - parent: 0 - type: Transform -- uid: 7377 - type: WallReinforced - components: - - pos: 34.5,16.5 - parent: 0 - type: Transform -- uid: 7378 - type: ReinforcedWindow - components: - - pos: 34.5,17.5 - parent: 0 - type: Transform -- uid: 7379 - type: ReinforcedWindow - components: - - pos: 34.5,19.5 - parent: 0 - type: Transform -- uid: 7380 - type: WallReinforced - components: - - pos: 34.5,20.5 - parent: 0 - type: Transform -- uid: 7381 - type: WallReinforced - components: - - pos: 34.5,21.5 - parent: 0 - type: Transform -- uid: 7382 - type: WallReinforced - components: - - pos: 34.5,22.5 - parent: 0 - type: Transform -- uid: 7383 - type: WallReinforced - components: - - pos: 34.5,23.5 - parent: 0 - type: Transform -- uid: 7384 - type: WallReinforced - components: - - pos: 35.5,23.5 - parent: 0 - type: Transform -- uid: 7385 - type: WallReinforced - components: - - pos: 33.5,23.5 - parent: 0 - type: Transform -- uid: 7386 - type: WallReinforced - components: - - pos: 33.5,24.5 - parent: 0 - type: Transform -- uid: 7387 - type: WallReinforced - components: - - pos: 33.5,26.5 - parent: 0 - type: Transform -- uid: 7388 - type: WallReinforced - components: - - pos: 36.5,23.5 - parent: 0 - type: Transform -- uid: 7389 - type: WallReinforced - components: - - pos: 36.5,23.5 - parent: 0 - type: Transform -- uid: 7390 - type: WallReinforced - components: - - pos: 36.5,24.5 - parent: 0 - type: Transform -- uid: 7391 - type: WallReinforced - components: - - pos: 36.5,25.5 - parent: 0 - type: Transform -- uid: 7392 - type: WallReinforced - components: - - pos: 36.5,26.5 - parent: 0 - type: Transform -- uid: 7393 - type: WallReinforced - components: - - pos: 40.5,26.5 - parent: 0 - type: Transform -- uid: 7394 - type: WallReinforced - components: - - pos: 40.5,25.5 - parent: 0 - type: Transform -- uid: 7395 - type: WallReinforced - components: - - pos: 40.5,24.5 - parent: 0 - type: Transform -- uid: 7396 - type: WallReinforced - components: - - pos: 40.5,23.5 - parent: 0 - type: Transform -- uid: 7397 - type: WallReinforced - components: - - pos: 40.5,22.5 - parent: 0 - type: Transform -- uid: 7398 - type: WallReinforced - components: - - pos: 40.5,21.5 - parent: 0 - type: Transform -- uid: 7399 - type: WallReinforced - components: - - pos: 40.5,20.5 - parent: 0 - type: Transform -- uid: 7400 - type: WallReinforced - components: - - pos: 40.5,19.5 - parent: 0 - type: Transform -- uid: 7401 - type: WallReinforced - components: - - pos: 40.5,18.5 - parent: 0 - type: Transform -- uid: 7402 - type: WallReinforced - components: - - pos: 40.5,17.5 - parent: 0 - type: Transform -- uid: 7403 - type: WallReinforced - components: - - pos: 40.5,16.5 - parent: 0 - type: Transform -- uid: 7404 - type: DisposalUnit - components: - - pos: 29.5,26.5 - parent: 0 - type: Transform -- uid: 7405 - type: DisposalUnit - components: - - pos: 35.5,19.5 - parent: 0 - type: Transform -- uid: 7406 - type: DisposalUnit - components: - - pos: 27.5,11.5 - parent: 0 - type: Transform -- uid: 7407 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 27.5,11.5 - parent: 0 - type: Transform -- uid: 7408 - type: DisposalUnit - components: - - pos: 41.5,1.5 - parent: 0 - type: Transform -- uid: 7409 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 41.5,1.5 - parent: 0 - type: Transform -- uid: 7410 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 42.5,1.5 - parent: 0 - type: Transform -- uid: 7411 - type: DisposalBend - components: - - pos: 42.5,6.5 - parent: 0 - type: Transform -- uid: 7412 - type: DisposalPipe - components: - - pos: 42.5,2.5 - parent: 0 - type: Transform -- uid: 7413 - type: DisposalPipe - components: - - pos: 42.5,3.5 - parent: 0 - type: Transform -- uid: 7414 - type: DisposalPipe - components: - - pos: 42.5,4.5 - parent: 0 - type: Transform -- uid: 7415 - type: DisposalPipe - components: - - pos: 42.5,5.5 - parent: 0 - type: Transform -- uid: 7416 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 41.5,6.5 - parent: 0 - type: Transform -- uid: 7417 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 40.5,6.5 - parent: 0 - type: Transform -- uid: 7418 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 39.5,6.5 - parent: 0 - type: Transform -- uid: 7419 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 38.5,6.5 - parent: 0 - type: Transform -- uid: 7420 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 37.5,6.5 - parent: 0 - type: Transform -- uid: 7421 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 36.5,6.5 - parent: 0 - type: Transform -- uid: 7422 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 35.5,6.5 - parent: 0 - type: Transform -- uid: 7423 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 34.5,6.5 - parent: 0 - type: Transform -- uid: 7424 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 33.5,6.5 - parent: 0 - type: Transform -- uid: 7425 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,6.5 - parent: 0 - type: Transform -- uid: 7426 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,6.5 - parent: 0 - type: Transform -- uid: 7427 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,7.5 - parent: 0 - type: Transform -- uid: 7428 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,8.5 - parent: 0 - type: Transform -- uid: 7429 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,9.5 - parent: 0 - type: Transform -- uid: 7430 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,10.5 - parent: 0 - type: Transform -- uid: 7431 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 29.5,11.5 - parent: 0 - type: Transform -- uid: 7432 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,11.5 - parent: 0 - type: Transform -- uid: 7433 - type: DisposalBend - components: - - pos: 30.5,11.5 - parent: 0 - type: Transform -- uid: 7434 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 30.5,6.5 - parent: 0 - type: Transform -- uid: 7435 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,6.5 - parent: 0 - type: Transform -- uid: 7436 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,6.5 - parent: 0 - type: Transform -- uid: 7437 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,6.5 - parent: 0 - type: Transform -- uid: 7438 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,6.5 - parent: 0 - type: Transform -- uid: 7439 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,6.5 - parent: 0 - type: Transform -- uid: 7440 - type: DisposalJunction - components: - - pos: 24.5,7.5 - parent: 0 - type: Transform -- uid: 7441 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,8.5 - parent: 0 - type: Transform -- uid: 7442 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,9.5 - parent: 0 - type: Transform -- uid: 7443 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,10.5 - parent: 0 - type: Transform -- uid: 7444 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,11.5 - parent: 0 - type: Transform -- uid: 7445 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,12.5 - parent: 0 - type: Transform -- uid: 7446 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 0 - type: Transform -- uid: 7447 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,14.5 - parent: 0 - type: Transform -- uid: 7448 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,15.5 - parent: 0 - type: Transform -- uid: 7449 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,16.5 - parent: 0 - type: Transform -- uid: 7450 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,17.5 - parent: 0 - type: Transform -- uid: 7451 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,18.5 - parent: 0 - type: Transform -- uid: 7452 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,18.5 - parent: 0 - type: Transform -- uid: 7453 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,18.5 - parent: 0 - type: Transform -- uid: 7454 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,18.5 - parent: 0 - type: Transform -- uid: 7455 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,18.5 - parent: 0 - type: Transform -- uid: 7456 - type: DisposalPipe - components: - - pos: 24.5,26.5 - parent: 0 - type: Transform -- uid: 7457 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,18.5 - parent: 0 - type: Transform -- uid: 7458 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,18.5 - parent: 0 - type: Transform -- uid: 7459 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,18.5 - parent: 0 - type: Transform -- uid: 7460 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,18.5 - parent: 0 - type: Transform -- uid: 7461 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 35.5,18.5 - parent: 0 - type: Transform -- uid: 7462 - type: DisposalTrunk - components: - - pos: 35.5,19.5 - parent: 0 - type: Transform -- uid: 7463 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 24.5,18.5 - parent: 0 - type: Transform -- uid: 7464 - type: DisposalTrunk - components: - - pos: 29.5,26.5 - parent: 0 - type: Transform -- uid: 7465 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 29.5,25.5 - parent: 0 - type: Transform -- uid: 7466 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 24.5,25.5 - parent: 0 - type: Transform -- uid: 7467 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,25.5 - parent: 0 - type: Transform -- uid: 7468 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,25.5 - parent: 0 - type: Transform -- uid: 7469 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,18.5 - parent: 0 - type: Transform -- uid: 7470 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,25.5 - parent: 0 - type: Transform -- uid: 7471 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,25.5 - parent: 0 - type: Transform -- uid: 7472 - type: DisposalPipe - components: - - pos: 24.5,27.5 - parent: 0 - type: Transform -- uid: 7473 - type: DisposalPipe - components: - - pos: 24.5,28.5 - parent: 0 - type: Transform -- uid: 7474 - type: DisposalPipe - components: - - pos: 24.5,29.5 - parent: 0 - type: Transform -- uid: 7475 - type: DisposalPipe - components: - - pos: 24.5,30.5 - parent: 0 - type: Transform -- uid: 7476 - type: DisposalPipe - components: - - pos: 24.5,31.5 - parent: 0 - type: Transform -- uid: 7477 - type: DisposalPipe - components: - - pos: 24.5,32.5 - parent: 0 - type: Transform -- uid: 7478 - type: DisposalBend - components: - - pos: 24.5,33.5 - parent: 0 - type: Transform -- uid: 7479 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,33.5 - parent: 0 - type: Transform -- uid: 7480 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 22.5,33.5 - parent: 0 - type: Transform -- uid: 7481 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,33.5 - parent: 0 - type: Transform -- uid: 7482 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,33.5 - parent: 0 - type: Transform -- uid: 7483 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,33.5 - parent: 0 - type: Transform -- uid: 7484 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,33.5 - parent: 0 - type: Transform -- uid: 7485 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,33.5 - parent: 0 - type: Transform -- uid: 7486 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,33.5 - parent: 0 - type: Transform -- uid: 7487 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,33.5 - parent: 0 - type: Transform -- uid: 7488 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,33.5 - parent: 0 - type: Transform -- uid: 7489 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,33.5 - parent: 0 - type: Transform -- uid: 7490 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 12.5,33.5 - parent: 0 - type: Transform -- uid: 7491 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,33.5 - parent: 0 - type: Transform -- uid: 7492 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,33.5 - parent: 0 - type: Transform -- uid: 7493 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,33.5 - parent: 0 - type: Transform -- uid: 7494 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,33.5 - parent: 0 - type: Transform -- uid: 7495 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,33.5 - parent: 0 - type: Transform -- uid: 7496 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,33.5 - parent: 0 - type: Transform -- uid: 7497 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,33.5 - parent: 0 - type: Transform -- uid: 7498 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,33.5 - parent: 0 - type: Transform -- uid: 7499 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,33.5 - parent: 0 - type: Transform -- uid: 7500 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,33.5 - parent: 0 - type: Transform -- uid: 7501 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,33.5 - parent: 0 - type: Transform -- uid: 7502 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,33.5 - parent: 0 - type: Transform -- uid: 7503 - type: WallReinforced - components: - - pos: 50.5,1.5 - parent: 0 - type: Transform -- uid: 7504 - type: WallReinforced - components: - - pos: 51.5,1.5 - parent: 0 - type: Transform -- uid: 7505 - type: WallReinforced - components: - - pos: 52.5,1.5 - parent: 0 - type: Transform -- uid: 7506 - type: WallReinforced - components: - - pos: 52.5,0.5 - parent: 0 - type: Transform -- uid: 7507 - type: WallReinforced - components: - - pos: 53.5,1.5 - parent: 0 - type: Transform -- uid: 7508 - type: WallReinforced - components: - - pos: 52.5,2.5 - parent: 0 - type: Transform -- uid: 7509 - type: WallReinforced - components: - - pos: 52.5,3.5 - parent: 0 - type: Transform -- uid: 7510 - type: WallReinforced - components: - - pos: 52.5,4.5 - parent: 0 - type: Transform -- uid: 7511 - type: WallReinforced - components: - - pos: 53.5,4.5 - parent: 0 - type: Transform -- uid: 7512 - type: WallReinforced - components: - - pos: 52.5,7.5 - parent: 0 - type: Transform -- uid: 7513 - type: WallReinforced - components: - - pos: 52.5,8.5 - parent: 0 - type: Transform -- uid: 7514 - type: WallReinforced - components: - - pos: 53.5,8.5 - parent: 0 - type: Transform -- uid: 7515 - type: WallReinforced - components: - - pos: 53.5,9.5 - parent: 0 - type: Transform -- uid: 7516 - type: WallReinforced - components: - - pos: 52.5,9.5 - parent: 0 - type: Transform -- uid: 7517 - type: WallReinforced - components: - - pos: 51.5,8.5 - parent: 0 - type: Transform -- uid: 7518 - type: WallReinforced - components: - - pos: 49.5,8.5 - parent: 0 - type: Transform -- uid: 7519 - type: ReinforcedWindow - components: - - pos: 52.5,6.5 - parent: 0 - type: Transform -- uid: 7520 - type: WallReinforced - components: - - pos: 52.5,10.5 - parent: 0 - type: Transform -- uid: 7521 - type: WallReinforced - components: - - pos: 52.5,11.5 - parent: 0 - type: Transform -- uid: 7522 - type: WallReinforced - components: - - pos: 52.5,12.5 - parent: 0 - type: Transform -- uid: 7523 - type: WallReinforced - components: - - pos: 51.5,12.5 - parent: 0 - type: Transform -- uid: 7524 - type: WallReinforced - components: - - pos: 49.5,12.5 - parent: 0 - type: Transform -- uid: 7525 - type: WallReinforced - components: - - pos: 48.5,12.5 - parent: 0 - type: Transform -- uid: 7526 - type: WallReinforced - components: - - pos: 46.5,12.5 - parent: 0 - type: Transform -- uid: 7527 - type: WallReinforced - components: - - pos: 44.5,12.5 - parent: 0 - type: Transform -- uid: 7528 - type: WallReinforced - components: - - pos: 43.5,12.5 - parent: 0 - type: Transform -- uid: 7529 - type: WallReinforced - components: - - pos: 41.5,12.5 - parent: 0 - type: Transform -- uid: 7530 - type: WallReinforced - components: - - pos: 41.5,8.5 - parent: 0 - type: Transform -- uid: 7531 - type: WallReinforced - components: - - pos: 43.5,13.5 - parent: 0 - type: Transform -- uid: 7532 - type: WallReinforced - components: - - pos: 43.5,14.5 - parent: 0 - type: Transform -- uid: 7533 - type: WallReinforced - components: - - pos: 43.5,15.5 - parent: 0 - type: Transform -- uid: 7534 - type: WallReinforced - components: - - pos: 43.5,16.5 - parent: 0 - type: Transform -- uid: 7535 - type: WallReinforced - components: - - pos: 53.5,16.5 - parent: 0 - type: Transform -- uid: 7536 - type: WallReinforced - components: - - pos: 44.5,16.5 - parent: 0 - type: Transform -- uid: 7537 - type: WallReinforced - components: - - pos: 41.5,16.5 - parent: 0 - type: Transform -- uid: 7538 - type: WallReinforced - components: - - pos: 46.5,13.5 - parent: 0 - type: Transform -- uid: 7539 - type: WallReinforced - components: - - pos: 46.5,14.5 - parent: 0 - type: Transform -- uid: 7540 - type: WallReinforced - components: - - pos: 46.5,15.5 - parent: 0 - type: Transform -- uid: 7541 - type: WallReinforced - components: - - pos: 46.5,16.5 - parent: 0 - type: Transform -- uid: 7542 - type: WallReinforced - components: - - pos: 49.5,13.5 - parent: 0 - type: Transform -- uid: 7543 - type: WallReinforced - components: - - pos: 49.5,14.5 - parent: 0 - type: Transform -- uid: 7544 - type: WallReinforced - components: - - pos: 49.5,15.5 - parent: 0 - type: Transform -- uid: 7545 - type: WallReinforced - components: - - pos: 49.5,16.5 - parent: 0 - type: Transform -- uid: 7546 - type: WallReinforced - components: - - pos: 48.5,16.5 - parent: 0 - type: Transform -- uid: 7547 - type: WallReinforced - components: - - pos: 52.5,13.5 - parent: 0 - type: Transform -- uid: 7548 - type: WallReinforced - components: - - pos: 52.5,14.5 - parent: 0 - type: Transform -- uid: 7549 - type: WallReinforced - components: - - pos: 52.5,15.5 - parent: 0 - type: Transform -- uid: 7550 - type: WallReinforced - components: - - pos: 52.5,16.5 - parent: 0 - type: Transform -- uid: 7551 - type: WallReinforced - components: - - pos: 51.5,16.5 - parent: 0 - type: Transform -- uid: 7552 - type: WallReinforced - components: - - pos: 52.5,17.5 - parent: 0 - type: Transform -- uid: 7553 - type: WallReinforced - components: - - pos: 52.5,18.5 - parent: 0 - type: Transform -- uid: 7554 - type: WallReinforced - components: - - pos: 52.5,19.5 - parent: 0 - type: Transform -- uid: 7555 - type: WallReinforced - components: - - pos: 53.5,19.5 - parent: 0 - type: Transform -- uid: 7556 - type: ReinforcedWindow - components: - - pos: 52.5,20.5 - parent: 0 - type: Transform -- uid: 7557 - type: ReinforcedWindow - components: - - pos: 52.5,21.5 - parent: 0 - type: Transform -- uid: 7558 - type: ReinforcedWindow - components: - - pos: 52.5,22.5 - parent: 0 - type: Transform -- uid: 7559 - type: ReinforcedWindow - components: - - pos: 52.5,23.5 - parent: 0 - type: Transform -- uid: 7560 - type: ReinforcedWindow - components: - - pos: 52.5,24.5 - parent: 0 - type: Transform -- uid: 7561 - type: WallReinforced - components: - - pos: 53.5,25.5 - parent: 0 - type: Transform -- uid: 7562 - type: WallReinforced - components: - - pos: 52.5,25.5 - parent: 0 - type: Transform -- uid: 7563 - type: WallReinforced - components: - - pos: 52.5,26.5 - parent: 0 - type: Transform -- uid: 7564 - type: WallReinforced - components: - - pos: 52.5,27.5 - parent: 0 - type: Transform -- uid: 7565 - type: WallReinforced - components: - - pos: 52.5,28.5 - parent: 0 - type: Transform -- uid: 7566 - type: WallReinforced - components: - - pos: 52.5,29.5 - parent: 0 - type: Transform -- uid: 7567 - type: WallReinforced - components: - - pos: 52.5,30.5 - parent: 0 - type: Transform -- uid: 7568 - type: WallReinforced - components: - - pos: 53.5,31.5 - parent: 0 - type: Transform -- uid: 7569 - type: WallReinforced - components: - - pos: 51.5,30.5 - parent: 0 - type: Transform -- uid: 7570 - type: WallReinforced - components: - - pos: 50.5,30.5 - parent: 0 - type: Transform -- uid: 7571 - type: WallReinforced - components: - - pos: 49.5,30.5 - parent: 0 - type: Transform -- uid: 7572 - type: WallReinforced - components: - - pos: 49.5,31.5 - parent: 0 - type: Transform -- uid: 7573 - type: WallReinforced - components: - - pos: 48.5,30.5 - parent: 0 - type: Transform -- uid: 7574 - type: WallReinforced - components: - - pos: 47.5,30.5 - parent: 0 - type: Transform -- uid: 7575 - type: WallReinforced - components: - - pos: 46.5,30.5 - parent: 0 - type: Transform -- uid: 7576 - type: WallReinforced - components: - - pos: 45.5,30.5 - parent: 0 - type: Transform -- uid: 7577 - type: WallReinforced - components: - - pos: 44.5,30.5 - parent: 0 - type: Transform -- uid: 7578 - type: WallReinforced - components: - - pos: 43.5,30.5 - parent: 0 - type: Transform -- uid: 7579 - type: WallReinforced - components: - - pos: 42.5,30.5 - parent: 0 - type: Transform -- uid: 7580 - type: WallReinforced - components: - - pos: 41.5,30.5 - parent: 0 - type: Transform -- uid: 7581 - type: WallReinforced - components: - - pos: 44.5,31.5 - parent: 0 - type: Transform -- uid: 7582 - type: WallReinforced - components: - - pos: 44.5,29.5 - parent: 0 - type: Transform -- uid: 7583 - type: WallReinforced - components: - - pos: 44.5,27.5 - parent: 0 - type: Transform -- uid: 7584 - type: WallReinforced - components: - - pos: 44.5,26.5 - parent: 0 - type: Transform -- uid: 7585 - type: WallReinforced - components: - - pos: 43.5,26.5 - parent: 0 - type: Transform -- uid: 7586 - type: WallReinforced - components: - - pos: 42.5,26.5 - parent: 0 - type: Transform -- uid: 7587 - type: WallReinforced - components: - - pos: 41.5,26.5 - parent: 0 - type: Transform -- uid: 7588 - type: WallSolid - components: - - pos: 51.5,26.5 - parent: 0 - type: Transform -- uid: 7589 - type: WallSolid - components: - - pos: 50.5,26.5 - parent: 0 - type: Transform -- uid: 7590 - type: WallSolid - components: - - pos: 49.5,26.5 - parent: 0 - type: Transform -- uid: 7591 - type: WallSolid - components: - - pos: 48.5,26.5 - parent: 0 - type: Transform -- uid: 7592 - type: WallSolid - components: - - pos: 47.5,26.5 - parent: 0 - type: Transform -- uid: 7593 - type: WallSolid - components: - - pos: 47.5,29.5 - parent: 0 - type: Transform -- uid: 7594 - type: WallSolid - components: - - pos: 47.5,28.5 - parent: 0 - type: Transform -- uid: 7595 - type: WallSolid - components: - - pos: 49.5,28.5 - parent: 0 - type: Transform -- uid: 7596 - type: WallSolid - components: - - pos: 49.5,29.5 - parent: 0 - type: Transform -- uid: 7597 - type: MountainRock - components: - - pos: 12.5,9.5 - parent: 0 - type: Transform -- uid: 7598 - type: WallSolid - components: - - pos: 11.5,14.5 - parent: 0 - type: Transform -- uid: 7599 - type: WallSolid - components: - - pos: 12.5,8.5 - parent: 0 - type: Transform -- uid: 7600 - type: WallSolid - components: - - pos: 11.5,8.5 - parent: 0 - type: Transform -- uid: 7601 - type: WallSolid - components: - - pos: 15.5,18.5 - parent: 0 - type: Transform -- uid: 7602 - type: WallSolid - components: - - pos: 14.5,18.5 - parent: 0 - type: Transform -- uid: 7603 - type: WallSolid - components: - - pos: 14.5,19.5 - parent: 0 - type: Transform -- uid: 7604 - type: NuclearBombKeg - components: - - pos: 15.5,19.5 - parent: 0 - type: Transform -- uid: 7605 - type: WallReinforced - components: - - pos: 4.5,17.5 - parent: 0 - type: Transform -- uid: 7606 - type: WallReinforced - components: - - pos: 7.5,17.5 - parent: 0 - type: Transform -- uid: 7607 - type: WallReinforced - components: - - pos: 7.5,18.5 - parent: 0 - type: Transform -- uid: 7608 - type: WallReinforced - components: - - pos: 7.5,19.5 - parent: 0 - type: Transform -- uid: 7609 - type: SubstationBasic - components: - - name: East Service Substation - type: MetaData - - pos: 4.5,19.5 - parent: 0 - type: Transform -- uid: 7610 - type: CableHV - components: - - pos: -5.5,6.5 - parent: 0 - type: Transform -- uid: 7611 - type: CableHV - components: - - pos: -4.5,6.5 - parent: 0 - type: Transform -- uid: 7612 - type: CableHV - components: - - pos: -1.5,6.5 - parent: 0 - type: Transform -- uid: 7613 - type: CableHV - components: - - pos: -0.5,6.5 - parent: 0 - type: Transform -- uid: 7614 - type: CableHV - components: - - pos: -2.5,6.5 - parent: 0 - type: Transform -- uid: 7615 - type: CableHV - components: - - pos: -3.5,6.5 - parent: 0 - type: Transform -- uid: 7616 - type: CableHV - components: - - pos: 0.5,6.5 - parent: 0 - type: Transform -- uid: 7617 - type: CableHV - components: - - pos: 0.5,7.5 - parent: 0 - type: Transform -- uid: 7618 - type: CableHV - components: - - pos: 0.5,8.5 - parent: 0 - type: Transform -- uid: 7619 - type: CableHV - components: - - pos: 0.5,9.5 - parent: 0 - type: Transform -- uid: 7620 - type: CableHV - components: - - pos: 0.5,10.5 - parent: 0 - type: Transform -- uid: 7621 - type: CableHV - components: - - pos: 0.5,11.5 - parent: 0 - type: Transform -- uid: 7622 - type: CableHV - components: - - pos: 0.5,12.5 - parent: 0 - type: Transform -- uid: 7623 - type: CableHV - components: - - pos: 0.5,13.5 - parent: 0 - type: Transform -- uid: 7624 - type: CableHV - components: - - pos: 0.5,14.5 - parent: 0 - type: Transform -- uid: 7625 - type: CableHV - components: - - pos: 0.5,15.5 - parent: 0 - type: Transform -- uid: 7626 - type: CableHV - components: - - pos: 1.5,15.5 - parent: 0 - type: Transform -- uid: 7627 - type: CableHV - components: - - pos: 2.5,15.5 - parent: 0 - type: Transform -- uid: 7628 - type: CableHV - components: - - pos: 3.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7629 - type: CableHV - components: - - pos: 4.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7630 - type: CableHV - components: - - pos: 5.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7631 - type: CableHV - components: - - pos: 5.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7632 - type: CableHV - components: - - pos: 5.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7633 - type: CableHV - components: - - pos: 5.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7634 - type: CableHV - components: - - pos: 5.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7635 - type: CableHV - components: - - pos: 4.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7636 - type: SubstationBasic - components: - - name: Security Substation - type: MetaData - - pos: 35.5,25.5 - parent: 0 - type: Transform -- uid: 7637 - type: CableHV - components: - - pos: 0.5,16.5 - parent: 0 - type: Transform -- uid: 7638 - type: CableHV - components: - - pos: 0.5,17.5 - parent: 0 - type: Transform -- uid: 7639 - type: CableHV - components: - - pos: 0.5,18.5 - parent: 0 - type: Transform -- uid: 7640 - type: CableHV - components: - - pos: 0.5,19.5 - parent: 0 - type: Transform -- uid: 7641 - type: CableHV - components: - - pos: 0.5,20.5 - parent: 0 - type: Transform -- uid: 7642 - type: CableHV - components: - - pos: 0.5,21.5 - parent: 0 - type: Transform -- uid: 7643 - type: CableHV - components: - - pos: 0.5,22.5 - parent: 0 - type: Transform -- uid: 7644 - type: CableHV - components: - - pos: 0.5,23.5 - parent: 0 - type: Transform -- uid: 7645 - type: CableHV - components: - - pos: 0.5,24.5 - parent: 0 - type: Transform -- uid: 7646 - type: CableHV - components: - - pos: 0.5,25.5 - parent: 0 - type: Transform -- uid: 7647 - type: CableHV - components: - - pos: 0.5,26.5 - parent: 0 - type: Transform -- uid: 7648 - type: CableHV - components: - - pos: 0.5,27.5 - parent: 0 - type: Transform -- uid: 7649 - type: CableHV - components: - - pos: 0.5,28.5 - parent: 0 - type: Transform -- uid: 7650 - type: CableHV - components: - - pos: 0.5,29.5 - parent: 0 - type: Transform -- uid: 7651 - type: CableHV - components: - - pos: 0.5,30.5 - parent: 0 - type: Transform -- uid: 7652 - type: CableHV - components: - - pos: 0.5,31.5 - parent: 0 - type: Transform -- uid: 7653 - type: CableHV - components: - - pos: 0.5,32.5 - parent: 0 - type: Transform -- uid: 7654 - type: CableHV - components: - - pos: 1.5,32.5 - parent: 0 - type: Transform -- uid: 7655 - type: CableHV - components: - - pos: 2.5,32.5 - parent: 0 - type: Transform -- uid: 7656 - type: CableHV - components: - - pos: 3.5,32.5 - parent: 0 - type: Transform -- uid: 7657 - type: CableHV - components: - - pos: 4.5,32.5 - parent: 0 - type: Transform -- uid: 7658 - type: CableHV - components: - - pos: 5.5,32.5 - parent: 0 - type: Transform -- uid: 7659 - type: CableHV - components: - - pos: 6.5,32.5 - parent: 0 - type: Transform -- uid: 7660 - type: CableHV - components: - - pos: 7.5,32.5 - parent: 0 - type: Transform -- uid: 7661 - type: CableHV - components: - - pos: 8.5,32.5 - parent: 0 - type: Transform -- uid: 7662 - type: CableHV - components: - - pos: 9.5,32.5 - parent: 0 - type: Transform -- uid: 7663 - type: CableHV - components: - - pos: 10.5,32.5 - parent: 0 - type: Transform -- uid: 7664 - type: CableHV - components: - - pos: 11.5,32.5 - parent: 0 - type: Transform -- uid: 7665 - type: CableHV - components: - - pos: 12.5,32.5 - parent: 0 - type: Transform -- uid: 7666 - type: CableHV - components: - - pos: 13.5,32.5 - parent: 0 - type: Transform -- uid: 7667 - type: CableHV - components: - - pos: 14.5,32.5 - parent: 0 - type: Transform -- uid: 7668 - type: CableHV - components: - - pos: 15.5,32.5 - parent: 0 - type: Transform -- uid: 7669 - type: CableHV - components: - - pos: 16.5,32.5 - parent: 0 - type: Transform -- uid: 7670 - type: CableHV - components: - - pos: 17.5,32.5 - parent: 0 - type: Transform -- uid: 7671 - type: CableHV - components: - - pos: 18.5,32.5 - parent: 0 - type: Transform -- uid: 7672 - type: CableHV - components: - - pos: 19.5,32.5 - parent: 0 - type: Transform -- uid: 7673 - type: CableHV - components: - - pos: 20.5,32.5 - parent: 0 - type: Transform -- uid: 7674 - type: CableHV - components: - - pos: 21.5,32.5 - parent: 0 - type: Transform -- uid: 7675 - type: CableHV - components: - - pos: 22.5,32.5 - parent: 0 - type: Transform -- uid: 7676 - type: CableHV - components: - - pos: 23.5,32.5 - parent: 0 - type: Transform -- uid: 7677 - type: CableHV - components: - - pos: 24.5,32.5 - parent: 0 - type: Transform -- uid: 7678 - type: CableHV - components: - - pos: 24.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7679 - type: CableHV - components: - - pos: 24.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7680 - type: CableHV - components: - - pos: 24.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7681 - type: CableHV - components: - - pos: 24.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7682 - type: CableHV - components: - - pos: 24.5,27.5 - parent: 0 - type: Transform -- uid: 7683 - type: CableHV - components: - - pos: 24.5,26.5 - parent: 0 - type: Transform -- uid: 7684 - type: CableHV - components: - - pos: 24.5,25.5 - parent: 0 - type: Transform -- uid: 7685 - type: CableHV - components: - - pos: 25.5,25.5 - parent: 0 - type: Transform -- uid: 7686 - type: CableHV - components: - - pos: 26.5,25.5 - parent: 0 - type: Transform -- uid: 7687 - type: CableHV - components: - - pos: 27.5,25.5 - parent: 0 - type: Transform -- uid: 7688 - type: CableHV - components: - - pos: 28.5,25.5 - parent: 0 - type: Transform -- uid: 7689 - type: CableHV - components: - - pos: 29.5,25.5 - parent: 0 - type: Transform -- uid: 7690 - type: CableHV - components: - - pos: 30.5,25.5 - parent: 0 - type: Transform -- uid: 7691 - type: CableHV - components: - - pos: 31.5,25.5 - parent: 0 - type: Transform -- uid: 7692 - type: CableHV - components: - - pos: 32.5,25.5 - parent: 0 - type: Transform -- uid: 7693 - type: CableHV - components: - - pos: 33.5,25.5 - parent: 0 - type: Transform -- uid: 7694 - type: CableHV - components: - - pos: 34.5,25.5 - parent: 0 - type: Transform -- uid: 7695 - type: CableHV - components: - - pos: 35.5,25.5 - parent: 0 - type: Transform -- uid: 7696 - type: CableHV - components: - - pos: 24.5,24.5 - parent: 0 - type: Transform -- uid: 7697 - type: CableHV - components: - - pos: 24.5,23.5 - parent: 0 - type: Transform -- uid: 7698 - type: CableHV - components: - - pos: 24.5,22.5 - parent: 0 - type: Transform -- uid: 7699 - type: CableHV - components: - - pos: 24.5,21.5 - parent: 0 - type: Transform -- uid: 7700 - type: CableHV - components: - - pos: 24.5,20.5 - parent: 0 - type: Transform -- uid: 7701 - type: CableHV - components: - - pos: 24.5,19.5 - parent: 0 - type: Transform -- uid: 7702 - type: CableHV - components: - - pos: 24.5,18.5 - parent: 0 - type: Transform -- uid: 7703 - type: CableHV - components: - - pos: 24.5,17.5 - parent: 0 - type: Transform -- uid: 7704 - type: CableHV - components: - - pos: 24.5,16.5 - parent: 0 - type: Transform -- uid: 7705 - type: CableHV - components: - - pos: 24.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7706 - type: CableHV - components: - - pos: 24.5,14.5 - parent: 0 - type: Transform -- uid: 7707 - type: CableHV - components: - - pos: 24.5,13.5 - parent: 0 - type: Transform -- uid: 7708 - type: CableHV - components: - - pos: 24.5,12.5 - parent: 0 - type: Transform -- uid: 7709 - type: CableHV - components: - - pos: 24.5,11.5 - parent: 0 - type: Transform -- uid: 7710 - type: CableHV - components: - - pos: 24.5,10.5 - parent: 0 - type: Transform -- uid: 7711 - type: CableHV - components: - - pos: 24.5,9.5 - parent: 0 - type: Transform -- uid: 7712 - type: CableHV - components: - - pos: 24.5,8.5 - parent: 0 - type: Transform -- uid: 7713 - type: CableHV - components: - - pos: 24.5,7.5 - parent: 0 - type: Transform -- uid: 7714 - type: CableHV - components: - - pos: 24.5,6.5 - parent: 0 - type: Transform -- uid: 7715 - type: CableHV - components: - - pos: 24.5,5.5 - parent: 0 - type: Transform -- uid: 7716 - type: CableHV - components: - - pos: 24.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7717 - type: CableHV - components: - - pos: 24.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7718 - type: CableHV - components: - - pos: 24.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7719 - type: CableHV - components: - - pos: 24.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7720 - type: CableHV - components: - - pos: 24.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7721 - type: CableHV - components: - - pos: 24.5,-0.5 - parent: 0 - type: Transform -- uid: 7722 - type: CableHV - components: - - pos: -4.5,-6.5 - parent: 0 - type: Transform -- uid: 7723 - type: CableHV - components: - - pos: -3.5,-6.5 - parent: 0 - type: Transform -- uid: 7724 - type: CableHV - components: - - pos: -2.5,-6.5 - parent: 0 - type: Transform -- uid: 7725 - type: CableHV - components: - - pos: -1.5,-6.5 - parent: 0 - type: Transform -- uid: 7726 - type: CableHV - components: - - pos: -0.5,-6.5 - parent: 0 - type: Transform -- uid: 7727 - type: CableHV - components: - - pos: 0.5,-6.5 - parent: 0 - type: Transform -- uid: 7728 - type: CableHV - components: - - pos: 1.5,-6.5 - parent: 0 - type: Transform -- uid: 7729 - type: CableHV - components: - - pos: 2.5,-6.5 - parent: 0 - type: Transform -- uid: 7730 - type: CableHV - components: - - pos: 3.5,-6.5 - parent: 0 - type: Transform -- uid: 7731 - type: CableHV - components: - - pos: 4.5,-6.5 - parent: 0 - type: Transform -- uid: 7732 - type: CableHV - components: - - pos: 5.5,-6.5 - parent: 0 - type: Transform -- uid: 7733 - type: CableHV - components: - - pos: 6.5,-6.5 - parent: 0 - type: Transform -- uid: 7734 - type: CableHV - components: - - pos: 7.5,-6.5 - parent: 0 - type: Transform -- uid: 7735 - type: CableHV - components: - - pos: 8.5,-6.5 - parent: 0 - type: Transform -- uid: 7736 - type: CableHV - components: - - pos: 9.5,-6.5 - parent: 0 - type: Transform -- uid: 7737 - type: CableHV - components: - - pos: 10.5,-6.5 - parent: 0 - type: Transform -- uid: 7738 - type: CableHV - components: - - pos: 11.5,-6.5 - parent: 0 - type: Transform -- uid: 7739 - type: CableHV - components: - - pos: 12.5,-6.5 - parent: 0 - type: Transform -- uid: 7740 - type: CableHV - components: - - pos: 13.5,-6.5 - parent: 0 - type: Transform -- uid: 7741 - type: CableHV - components: - - pos: 14.5,-6.5 - parent: 0 - type: Transform -- uid: 7742 - type: CableHV - components: - - pos: 15.5,-6.5 - parent: 0 - type: Transform -- uid: 7743 - type: CableHV - components: - - pos: 16.5,-6.5 - parent: 0 - type: Transform -- uid: 7744 - type: CableHV - components: - - pos: 17.5,-6.5 - parent: 0 - type: Transform -- uid: 7745 - type: CableHV - components: - - pos: 18.5,-6.5 - parent: 0 - type: Transform -- uid: 7746 - type: CableHV - components: - - pos: 19.5,-6.5 - parent: 0 - type: Transform -- uid: 7747 - type: CableHV - components: - - pos: 20.5,-6.5 - parent: 0 - type: Transform -- uid: 7748 - type: CableHV - components: - - pos: 21.5,-6.5 - parent: 0 - type: Transform -- uid: 7749 - type: CableHV - components: - - pos: 22.5,-6.5 - parent: 0 - type: Transform -- uid: 7750 - type: CableMV - components: - - pos: 5.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7751 - type: CableMV - components: - - pos: 4.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7752 - type: CableHV - components: - - pos: 23.5,-1.5 - parent: 0 - type: Transform -- uid: 7753 - type: CableHV - components: - - pos: 23.5,-3.5 - parent: 0 - type: Transform -- uid: 7754 - type: CableHV - components: - - pos: 23.5,-2.5 - parent: 0 - type: Transform -- uid: 7755 - type: CableHV - components: - - pos: 23.5,-4.5 - parent: 0 - type: Transform -- uid: 7756 - type: CableHV - components: - - pos: 23.5,-5.5 - parent: 0 - type: Transform -- uid: 7757 - type: CableHV - components: - - pos: 23.5,-6.5 - parent: 0 - type: Transform -- uid: 7758 - type: CableHV - components: - - pos: 23.5,-0.5 - parent: 0 - type: Transform -- uid: 7759 - type: CableMV - components: - - pos: 5.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7760 - type: CableMV - components: - - pos: 5.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7761 - type: CableMV - components: - - pos: 5.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7762 - type: CableMV - components: - - pos: 5.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7763 - type: CableMV - components: - - pos: 4.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7764 - type: CableMV - components: - - pos: 3.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7765 - type: CableMV - components: - - pos: 4.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7766 - type: CableMV - components: - - pos: 2.5,15.5 - parent: 0 - type: Transform -- uid: 7767 - type: CableMV - components: - - pos: 1.5,15.5 - parent: 0 - type: Transform -- uid: 7768 - type: CableMV - components: - - pos: 0.5,15.5 - parent: 0 - type: Transform -- uid: 7769 - type: CableMV - components: - - pos: 0.5,16.5 - parent: 0 - type: Transform -- uid: 7770 - type: CableMV - components: - - pos: 0.5,17.5 - parent: 0 - type: Transform -- uid: 7771 - type: CableMV - components: - - pos: 0.5,18.5 - parent: 0 - type: Transform -- uid: 7772 - type: CableMV - components: - - pos: 0.5,19.5 - parent: 0 - type: Transform -- uid: 7773 - type: CableMV - components: - - pos: 0.5,20.5 - parent: 0 - type: Transform -- uid: 7774 - type: CableMV - components: - - pos: 0.5,21.5 - parent: 0 - type: Transform -- uid: 7775 - type: CableMV - components: - - pos: 0.5,22.5 - parent: 0 - type: Transform -- uid: 7776 - type: CableMV - components: - - pos: 0.5,23.5 - parent: 0 - type: Transform -- uid: 7777 - type: CableMV - components: - - pos: 1.5,23.5 - parent: 0 - type: Transform -- uid: 7778 - type: CableMV - components: - - pos: 2.5,23.5 - parent: 0 - type: Transform -- uid: 7779 - type: CableMV - components: - - pos: 3.5,23.5 - parent: 0 - type: Transform -- uid: 7780 - type: CableMV - components: - - pos: 4.5,23.5 - parent: 0 - type: Transform -- uid: 7781 - type: CableMV - components: - - pos: 4.5,24.5 - parent: 0 - type: Transform -- uid: 7782 - type: CableMV - components: - - pos: 4.5,25.5 - parent: 0 - type: Transform -- uid: 7783 - type: CableMV - components: - - pos: 4.5,26.5 - parent: 0 - type: Transform -- uid: 7784 - type: CableMV - components: - - pos: 4.5,27.5 - parent: 0 - type: Transform -- uid: 7785 - type: CableMV - components: - - pos: 4.5,28.5 - parent: 0 - type: Transform -- uid: 7786 - type: CableMV - components: - - pos: 4.5,29.5 - parent: 0 - type: Transform -- uid: 7787 - type: CableMV - components: - - pos: 5.5,29.5 - parent: 0 - type: Transform -- uid: 7788 - type: CableMV - components: - - pos: 6.5,29.5 - parent: 0 - type: Transform -- uid: 7789 - type: CableMV - components: - - pos: 6.5,30.5 - parent: 0 - type: Transform -- uid: 7790 - type: CableMV - components: - - pos: 6.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7791 - type: WallSolid - components: - - pos: 9.5,24.5 - parent: 0 - type: Transform -- uid: 7792 - type: WallSolid - components: - - pos: 10.5,24.5 - parent: 0 - type: Transform -- uid: 7793 - type: WallSolid - components: - - pos: 11.5,24.5 - parent: 0 - type: Transform -- uid: 7794 - type: WallSolid - components: - - pos: 11.5,25.5 - parent: 0 - type: Transform -- uid: 7795 - type: WallSolid - components: - - pos: 11.5,26.5 - parent: 0 - type: Transform -- uid: 7796 - type: WallSolid - components: - - pos: 13.5,26.5 - parent: 0 - type: Transform -- uid: 7797 - type: WallSolid - components: - - pos: 13.5,24.5 - parent: 0 - type: Transform -- uid: 7798 - type: WallSolid - components: - - pos: 8.5,17.5 - parent: 0 - type: Transform -- uid: 7799 - type: WallSolid - components: - - pos: 10.5,17.5 - parent: 0 - type: Transform -- uid: 7800 - type: WallSolid - components: - - pos: 11.5,17.5 - parent: 0 - type: Transform -- uid: 7801 - type: WallSolid - components: - - pos: 11.5,18.5 - parent: 0 - type: Transform -- uid: 7802 - type: WallSolid - components: - - pos: 11.5,20.5 - parent: 0 - type: Transform -- uid: 7803 - type: WallSolid - components: - - pos: 11.5,21.5 - parent: 0 - type: Transform -- uid: 7804 - type: WallSolid - components: - - pos: 10.5,21.5 - parent: 0 - type: Transform -- uid: 7805 - type: WallSolid - components: - - pos: 8.5,21.5 - parent: 0 - type: Transform -- uid: 7806 - type: CableHV - components: - - pos: 6.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7807 - type: CableHV - components: - - pos: 7.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7808 - type: CableHV - components: - - pos: 8.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7809 - type: CableHV - components: - - pos: 9.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7810 - type: CableHV - components: - - pos: 9.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7811 - type: CableHV - components: - - pos: 10.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7812 - type: CableHV - components: - - pos: 11.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7813 - type: CableHV - components: - - pos: 12.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7814 - type: CableHV - components: - - pos: 12.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7815 - type: CableHV - components: - - pos: 12.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7816 - type: CableHV - components: - - pos: 12.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7817 - type: CableHV - components: - - pos: 12.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7818 - type: CableHV - components: - - pos: 12.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7819 - type: CableHV - components: - - pos: 12.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7820 - type: CableHV - components: - - pos: 12.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7821 - type: CableHV - components: - - pos: 12.5,24.5 - parent: 0 - type: Transform -- uid: 7822 - type: CableHV - components: - - pos: 12.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7823 - type: CableHV - components: - - pos: 13.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7824 - type: CableHV - components: - - pos: 14.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7825 - type: CableHV - components: - - pos: 14.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7826 - type: CableHV - components: - - pos: 14.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7827 - type: CableHV - components: - - pos: 14.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7828 - type: CableHV - components: - - pos: 14.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7829 - type: CableHV - components: - - pos: 15.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7830 - type: CableHV - components: - - pos: 16.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7831 - type: CableHV - components: - - pos: 17.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7832 - type: CableHV - components: - - pos: 18.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7833 - type: CableHV - components: - - pos: 18.5,28.5 - parent: 0 - type: Transform -- uid: 7834 - type: CableHV - components: - - pos: 18.5,27.5 - parent: 0 - type: Transform -- uid: 7835 - type: CableHV - components: - - pos: 18.5,26.5 - parent: 0 - type: Transform -- uid: 7836 - type: CableHV - components: - - pos: 18.5,25.5 - parent: 0 - type: Transform -- uid: 7837 - type: CableHV - components: - - pos: 19.5,25.5 - parent: 0 - type: Transform -- uid: 7838 - type: CableHV - components: - - pos: 19.5,25.5 - parent: 0 - type: Transform -- uid: 7839 - type: CableHV - components: - - pos: 20.5,25.5 - parent: 0 - type: Transform -- uid: 7840 - type: CableHV - components: - - pos: 21.5,25.5 - parent: 0 - type: Transform -- uid: 7841 - type: CableHV - components: - - pos: 22.5,25.5 - parent: 0 - type: Transform -- uid: 7842 - type: CableHV - components: - - pos: 23.5,25.5 - parent: 0 - type: Transform -- uid: 7843 - type: CableHV - components: - - pos: 9.5,31.5 - parent: 0 - type: Transform -- uid: 7844 - type: CableHV - components: - - pos: 9.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7845 - type: CableHV - components: - - pos: 9.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7846 - type: CableHV - components: - - pos: 10.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7847 - type: CableHV - components: - - pos: 11.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7848 - type: CableHV - components: - - pos: 12.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7849 - type: CableHV - components: - - pos: 13.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7850 - type: CableMV - components: - - pos: 6.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7851 - type: CableMV - components: - - pos: 7.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7852 - type: CableMV - components: - - pos: 8.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7853 - type: CableMV - components: - - pos: 9.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7854 - type: CableMV - components: - - pos: 9.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7855 - type: CableMV - components: - - pos: 10.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7856 - type: CableMV - components: - - pos: 11.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7857 - type: CableMV - components: - - pos: 12.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7858 - type: CableMV - components: - - pos: 12.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7859 - type: CableMV - components: - - pos: 12.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7860 - type: CableMV - components: - - pos: 12.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7861 - type: CableMV - components: - - pos: 12.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7862 - type: CableMV - components: - - pos: 12.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7863 - type: CableMV - components: - - pos: 12.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7864 - type: CableMV - components: - - pos: 12.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7865 - type: CableMV - components: - - pos: 12.5,24.5 - parent: 0 - type: Transform -- uid: 7866 - type: CableMV - components: - - pos: 12.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7867 - type: CableMV - components: - - pos: 13.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7868 - type: CableMV - components: - - pos: 14.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7869 - type: CableMV - components: - - pos: 14.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7870 - type: CableMV - components: - - pos: 14.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7871 - type: CableMV - components: - - pos: 14.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7872 - type: CableMV - components: - - pos: 14.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7873 - type: CableMV - components: - - pos: 13.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7874 - type: CableMV - components: - - pos: 12.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7875 - type: CableMV - components: - - pos: 11.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7876 - type: CableMV - components: - - pos: 10.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7877 - type: CableMV - components: - - pos: 9.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7878 - type: CableMV - components: - - pos: 8.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7879 - type: CableMV - components: - - pos: 7.5,29.5 - parent: 0 - type: Transform -- uid: 7880 - type: DisposalYJunction - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 - parent: 0 - type: Transform -- uid: 7881 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7882 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 16.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7883 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7884 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7885 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7886 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7887 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7888 - type: GasPipeTJunction - components: - - pos: 16.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7889 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7890 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7891 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7892 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7893 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7894 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7895 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7896 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7897 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7898 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7899 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7900 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7901 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: 24.5,-2.5 - parent: 0 - type: Transform -- uid: 7902 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-2.5 - parent: 0 - type: Transform -- uid: 7903 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 0 - type: Transform -- uid: 7904 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 0 - type: Transform -- uid: 7905 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7906 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7907 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7908 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7909 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7910 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7911 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7912 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 25.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7913 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7914 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7915 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 25.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7916 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7917 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7918 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7919 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7920 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7921 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7922 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7923 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7924 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7925 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7926 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7927 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 25.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7928 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7929 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7930 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7931 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7932 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 25.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7933 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7934 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 23.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7935 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 25.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7936 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7937 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7938 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7939 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7940 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7941 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7942 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7943 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7944 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7945 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7946 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7947 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7948 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7949 - type: GasPipeFourway - components: - - pos: 23.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7950 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7951 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7952 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7953 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7954 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7955 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7956 - type: GasPipeFourway - components: - - pos: 23.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7957 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7958 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7959 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7960 - type: GasPipeFourway - components: - - pos: 23.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7961 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7962 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7963 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7964 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7965 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 25.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7966 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7967 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 23.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7968 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7969 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7970 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7971 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7972 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7973 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7974 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7975 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7976 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7977 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7978 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7979 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7980 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7981 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7982 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7983 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7984 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7985 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7986 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7987 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7988 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 12.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7989 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7990 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7991 - type: GasPipeTJunction - components: - - pos: 9.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7992 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7993 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7994 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7995 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7996 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7997 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7998 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7999 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8000 - type: GasPipeFourway - components: - - pos: 0.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8001 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8002 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8003 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8004 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8005 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8006 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8007 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8008 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8009 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8010 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8011 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8012 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8013 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8014 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8015 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8016 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8017 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 14.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8018 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 12.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8019 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8020 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8021 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8022 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8023 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8024 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8025 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8026 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8027 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8028 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 18.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8029 - type: GasPipeBend - components: - - pos: 18.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8030 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 9.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8031 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8032 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8033 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8034 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8035 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8036 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8037 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8038 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8039 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8040 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8041 - type: GasPipeStraight - components: - - pos: 18.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8042 - type: GasPipeStraight - components: - - pos: 18.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8043 - type: GasPipeStraight - components: - - pos: 18.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8044 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8045 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8046 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8047 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8048 - type: FirelockGlass - components: - - pos: 23.5,0.5 - parent: 0 - type: Transform -- uid: 8049 - type: FirelockGlass - components: - - pos: 25.5,0.5 - parent: 0 - type: Transform -- uid: 8050 - type: FirelockGlass - components: - - pos: 23.5,4.5 - parent: 0 - type: Transform -- uid: 8051 - type: FirelockGlass - components: - - pos: 25.5,4.5 - parent: 0 - type: Transform -- uid: 8052 - type: FirelockGlass - components: - - pos: 23.5,8.5 - parent: 0 - type: Transform -- uid: 8053 - type: FirelockGlass - components: - - pos: 24.5,8.5 - parent: 0 - type: Transform -- uid: 8054 - type: FirelockGlass - components: - - pos: 25.5,8.5 - parent: 0 - type: Transform -- uid: 8055 - type: FirelockGlass - components: - - pos: 23.5,15.5 - parent: 0 - type: Transform -- uid: 8056 - type: FirelockGlass - components: - - pos: 25.5,15.5 - parent: 0 - type: Transform -- uid: 8057 - type: FirelockGlass - components: - - pos: 26.5,18.5 - parent: 0 - type: Transform -- uid: 8058 - type: FirelockGlass - components: - - pos: 25.5,20.5 - parent: 0 - type: Transform -- uid: 8059 - type: FirelockGlass - components: - - pos: 24.5,20.5 - parent: 0 - type: Transform -- uid: 8060 - type: FirelockGlass - components: - - pos: 23.5,20.5 - parent: 0 - type: Transform -- uid: 8061 - type: FirelockGlass - components: - - pos: 26.5,25.5 - parent: 0 - type: Transform -- uid: 8062 - type: FirelockGlass - components: - - pos: 25.5,28.5 - parent: 0 - type: Transform -- uid: 8063 - type: FirelockGlass - components: - - pos: 23.5,28.5 - parent: 0 - type: Transform -- uid: 8064 - type: FirelockGlass - components: - - pos: 23.5,31.5 - parent: 0 - type: Transform -- uid: 8065 - type: FirelockGlass - components: - - pos: 25.5,31.5 - parent: 0 - type: Transform -- uid: 8066 - type: FirelockGlass - components: - - pos: 30.5,27.5 - parent: 0 - type: Transform -- uid: 8067 - type: FirelockGlass - components: - - pos: 29.5,15.5 - parent: 0 - type: Transform -- uid: 8068 - type: FirelockGlass - components: - - pos: 30.5,8.5 - parent: 0 - type: Transform -- uid: 8069 - type: FirelockGlass - components: - - pos: 35.5,8.5 - parent: 0 - type: Transform -- uid: 8070 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8071 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8072 - type: GasPipeTJunction - components: - - pos: 38.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8073 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8074 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8075 - type: GasPipeTJunction - components: - - pos: 34.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8076 - type: GasPipeTJunction - components: - - pos: 22.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8077 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8078 - type: GasPipeTJunction - components: - - pos: 31.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8079 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8080 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 36.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8081 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8082 - type: GasPipeFourway - components: - - pos: 28.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8083 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8084 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8085 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8086 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8087 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8088 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8089 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8090 - type: GasPipeTJunction - components: - - pos: 37.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8091 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8092 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8093 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 35.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8094 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8095 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8096 - type: GasPipeTJunction - components: - - pos: 33.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8097 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8098 - type: GasPipeFourway - components: - - pos: 30.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8099 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8100 - type: GasPipeTJunction - components: - - pos: 27.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8101 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8102 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8103 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8104 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8105 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 42.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8106 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 43.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8107 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8108 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 50.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8109 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8110 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8111 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 50.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8112 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8113 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8114 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8115 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8116 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8117 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8118 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8119 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8120 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8121 - type: GasPipeStraight - components: - - pos: 50.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8122 - type: GasPipeStraight - components: - - pos: 50.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8123 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 42.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8124 - type: GasPipeStraight - components: - - pos: 50.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8125 - type: GasPipeStraight - components: - - pos: 50.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8126 - type: GasPipeStraight - components: - - pos: 50.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8127 - type: GasPipeStraight - components: - - pos: 50.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8128 - type: GasPipeStraight - components: - - pos: 50.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8129 - type: GasPipeStraight - components: - - pos: 50.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8130 - type: GasPipeStraight - components: - - pos: 42.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8131 - type: GasPipeStraight - components: - - pos: 42.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8132 - type: GasPipeStraight - components: - - pos: 42.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8133 - type: GasPipeStraight - components: - - pos: 42.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8134 - type: GasPipeStraight - components: - - pos: 42.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8135 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 43.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8136 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 43.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8137 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 49.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8138 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 42.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8139 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 50.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8140 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 43.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8141 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 49.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8142 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 42.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8143 - type: FirelockGlass - components: - - pos: 54.5,9.5 - parent: 0 - type: Transform -- uid: 8144 - type: FirelockGlass - components: - - pos: 54.5,1.5 - parent: 0 - type: Transform -- uid: 8145 - type: GasPipeBend - components: - - pos: 50.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8146 - type: FirelockGlass - components: - - pos: 55.5,9.5 - parent: 0 - type: Transform -- uid: 8147 - type: FirelockGlass - components: - - pos: 55.5,1.5 - parent: 0 - type: Transform -- uid: 8148 - type: GasPipeStraight - components: - - pos: 42.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8149 - type: GasPipeStraight - components: - - pos: 42.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8150 - type: GasPipeStraight - components: - - pos: 42.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8151 - type: GasPipeStraight - components: - - pos: 42.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8152 - type: GasPipeStraight - components: - - pos: 42.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8153 - type: GasPipeStraight - components: - - pos: 42.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8154 - type: GasPipeStraight - components: - - pos: 42.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8155 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8156 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8157 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8158 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8159 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8160 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8161 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8162 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8163 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8164 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8165 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 44.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8166 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 47.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8167 - type: FirelockGlass - components: - - pos: 56.5,1.5 - parent: 0 - type: Transform -- uid: 8168 - type: GasPipeBend - components: - - pos: 44.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8169 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 47.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8170 - type: FirelockGlass - components: - - pos: 56.5,9.5 - parent: 0 - type: Transform -- uid: 8171 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8172 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8173 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8174 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8175 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8176 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 35.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8177 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8178 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8179 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8180 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8181 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8182 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8183 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8184 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8185 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8186 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8187 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8188 - type: GasPipeTJunction - components: - - pos: 43.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8189 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8190 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8191 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8192 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8193 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8194 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8195 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8196 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8197 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8198 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8199 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8200 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8201 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8202 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8203 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8204 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8205 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8206 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8207 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 55.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8208 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8209 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8210 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8211 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8212 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8213 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 54.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8214 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8215 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8216 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8217 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8218 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8219 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8220 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 56.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8221 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8222 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8223 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8224 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8225 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8226 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8227 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8228 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8229 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 54.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8230 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 54.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8231 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8232 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8233 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8234 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8235 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8236 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8237 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8238 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8239 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8240 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 30.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8241 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8242 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8243 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8244 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8245 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8246 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8247 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8248 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8249 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8250 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8251 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8252 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8253 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8254 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8255 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8256 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 11.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8257 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8258 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8259 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8260 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8261 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8262 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8263 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 15.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8264 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8265 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8266 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8267 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8268 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8269 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8270 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8271 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8272 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8273 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8274 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8275 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8276 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8277 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8278 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8279 - type: GasPipeTJunction - components: - - pos: 28.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8280 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8281 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8282 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8283 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8284 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8285 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8286 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8287 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8288 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8289 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8290 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8291 - type: GasPipeStraight - components: - - pos: 56.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8292 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 56.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8293 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 56.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8294 - type: GasPipeStraight - components: - - pos: 56.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8295 - type: GasPipeStraight - components: - - pos: 56.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8296 - type: GasPipeStraight - components: - - pos: 56.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8297 - type: GasPipeStraight - components: - - pos: 56.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8298 - type: GasPipeStraight - components: - - pos: 56.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8299 - type: GasPipeStraight - components: - - pos: 56.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8300 - type: GasPipeStraight - components: - - pos: 56.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8301 - type: GasPipeStraight - components: - - pos: 56.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8302 - type: GasPipeStraight - components: - - pos: 56.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8303 - type: GasPipeStraight - components: - - pos: 56.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8304 - type: GasPipeStraight - components: - - pos: 56.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8305 - type: GasPipeStraight - components: - - pos: 56.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8306 - type: GasPipeStraight - components: - - pos: 56.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8307 - type: GasPipeStraight - components: - - pos: 56.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8308 - type: GasPipeStraight - components: - - pos: 56.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8309 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 54.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8310 - type: GasPipeStraight - components: - - pos: 56.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8311 - type: GasPipeStraight - components: - - pos: 56.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8312 - type: GasPipeStraight - components: - - pos: 56.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8313 - type: GasPipeStraight - components: - - pos: 56.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8314 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 56.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8315 - type: GasPipeStraight - components: - - pos: 56.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8316 - type: GasPipeStraight - components: - - pos: 56.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8317 - type: GasPipeStraight - components: - - pos: 56.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8318 - type: GasPipeStraight - components: - - pos: 56.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8319 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 56.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8320 - type: GasPipeStraight - components: - - pos: 56.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8321 - type: GasPipeStraight - components: - - pos: 56.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8322 - type: GasPipeStraight - components: - - pos: 56.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8323 - type: GasPipeStraight - components: - - pos: 56.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8324 - type: GasPipeStraight - components: - - pos: 56.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8325 - type: GasPipeStraight - components: - - pos: 56.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8326 - type: GasPipeStraight - components: - - pos: 56.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8327 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8328 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8329 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8330 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8331 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8332 - type: GasPipeTJunction - components: - - pos: 50.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8333 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8334 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8335 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8336 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8337 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8338 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8339 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8340 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8341 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8342 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8343 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8344 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8345 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8346 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8347 - type: GasPipeTJunction - components: - - pos: 29.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8348 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8349 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8350 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8351 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8352 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8353 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8354 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8355 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8356 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8357 - type: GasPipeTJunction - components: - - pos: 41.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8358 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8359 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 54.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8360 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 56.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8361 - type: MountainRock - components: - - pos: 53.5,0.5 - parent: 0 - type: Transform -- uid: 8362 - type: MountainRock - components: - - pos: 53.5,2.5 - parent: 0 - type: Transform -- uid: 8363 - type: MountainRock - components: - - pos: 53.5,3.5 - parent: 0 - type: Transform -- uid: 8364 - type: MountainRock - components: - - pos: 53.5,10.5 - parent: 0 - type: Transform -- uid: 8365 - type: MountainRock - components: - - pos: 53.5,11.5 - parent: 0 - type: Transform -- uid: 8366 - type: MountainRock - components: - - pos: 53.5,12.5 - parent: 0 - type: Transform -- uid: 8367 - type: MountainRock - components: - - pos: 53.5,13.5 - parent: 0 - type: Transform -- uid: 8368 - type: MountainRock - components: - - pos: 53.5,14.5 - parent: 0 - type: Transform -- uid: 8369 - type: MountainRock - components: - - pos: 53.5,15.5 - parent: 0 - type: Transform -- uid: 8370 - type: MountainRock - components: - - pos: 53.5,17.5 - parent: 0 - type: Transform -- uid: 8371 - type: MountainRock - components: - - pos: 53.5,18.5 - parent: 0 - type: Transform -- uid: 8372 - type: MountainRock - components: - - pos: 53.5,26.5 - parent: 0 - type: Transform -- uid: 8373 - type: MountainRock - components: - - pos: 53.5,27.5 - parent: 0 - type: Transform -- uid: 8374 - type: MountainRock - components: - - pos: 53.5,28.5 - parent: 0 - type: Transform -- uid: 8375 - type: MountainRock - components: - - pos: 53.5,29.5 - parent: 0 - type: Transform -- uid: 8376 - type: MountainRock - components: - - pos: 53.5,30.5 - parent: 0 - type: Transform -- uid: 8377 - type: MountainRock - components: - - pos: 52.5,31.5 - parent: 0 - type: Transform -- uid: 8378 - type: MountainRock - components: - - pos: 51.5,31.5 - parent: 0 - type: Transform -- uid: 8379 - type: MountainRock - components: - - pos: 50.5,31.5 - parent: 0 - type: Transform -- uid: 8380 - type: MountainRock - components: - - pos: 48.5,31.5 - parent: 0 - type: Transform -- uid: 8381 - type: MountainRock - components: - - pos: 47.5,31.5 - parent: 0 - type: Transform -- uid: 8382 - type: MountainRock - components: - - pos: 46.5,31.5 - parent: 0 - type: Transform -- uid: 8383 - type: MountainRock - components: - - pos: 45.5,31.5 - parent: 0 - type: Transform -- uid: 8384 - type: MountainRock - components: - - pos: 43.5,31.5 - parent: 0 - type: Transform -- uid: 8385 - type: MountainRock - components: - - pos: 42.5,31.5 - parent: 0 - type: Transform -- uid: 8386 - type: MountainRock - components: - - pos: 41.5,31.5 - parent: 0 - type: Transform -- uid: 8387 - type: ReinforcedWindow - components: - - pos: 27.5,31.5 - parent: 0 - type: Transform -- uid: 8388 - type: TableReinforced - components: - - pos: 26.5,29.5 - parent: 0 - type: Transform -- uid: 8389 - type: TableReinforced - components: - - pos: 26.5,30.5 - parent: 0 - type: Transform -- uid: 8390 - type: Grille - components: - - pos: 31.5,27.5 - parent: 0 - type: Transform -- uid: 8391 - type: Grille - components: - - pos: 27.5,31.5 - parent: 0 - type: Transform -- uid: 8392 - type: Grille - components: - - pos: 34.5,17.5 - parent: 0 - type: Transform -- uid: 8393 - type: Grille - components: - - pos: 34.5,19.5 - parent: 0 - type: Transform -- uid: 8394 - type: Grille - components: - - pos: 52.5,20.5 - parent: 0 - type: Transform -- uid: 8395 - type: Grille - components: - - pos: 52.5,21.5 - parent: 0 - type: Transform -- uid: 8396 - type: Grille - components: - - pos: 52.5,22.5 - parent: 0 - type: Transform -- uid: 8397 - type: Grille - components: - - pos: 52.5,23.5 - parent: 0 - type: Transform -- uid: 8398 - type: Grille - components: - - pos: 52.5,24.5 - parent: 0 - type: Transform -- uid: 8399 - type: FirelockGlass - components: - - pos: 26.5,29.5 - parent: 0 - type: Transform -- uid: 8400 - type: FirelockGlass - components: - - pos: 26.5,30.5 - parent: 0 - type: Transform -- uid: 8401 - type: FirelockGlass - components: - - pos: 22.5,25.5 - parent: 0 - type: Transform -- uid: 8402 - type: FirelockGlass - components: - - pos: 22.5,26.5 - parent: 0 - type: Transform -- uid: 8403 - type: Grille - components: - - pos: 19.5,21.5 - parent: 0 - type: Transform -- uid: 8404 - type: Grille - components: - - pos: 19.5,22.5 - parent: 0 - type: Transform -- uid: 8405 - type: Grille - components: - - pos: 19.5,23.5 - parent: 0 - type: Transform -- uid: 8406 - type: ReinforcedWindow - components: - - pos: 19.5,21.5 - parent: 0 - type: Transform -- uid: 8407 - type: ReinforcedWindow - components: - - pos: 19.5,22.5 - parent: 0 - type: Transform -- uid: 8408 - type: ReinforcedWindow - components: - - pos: 19.5,23.5 - parent: 0 - type: Transform -- uid: 8409 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 51.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8410 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 50.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8411 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8412 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8413 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8414 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8415 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 54.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8416 - type: GasVentScrubber - components: - - pos: 51.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8417 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8418 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8419 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8420 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8421 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 42.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8422 - type: GasPipeStraight - components: - - pos: 27.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8423 - type: GasPipeStraight - components: - - pos: 27.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8424 - type: GasPipeStraight - components: - - pos: 27.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8425 - type: GasPipeStraight - components: - - pos: 27.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8426 - type: GasPipeStraight - components: - - pos: 30.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8427 - type: GasPipeStraight - components: - - pos: 30.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8428 - type: GasPipeStraight - components: - - pos: 30.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8429 - type: GasPipeStraight - components: - - pos: 30.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8430 - type: GasPipeStraight - components: - - pos: 33.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8431 - type: GasPipeStraight - components: - - pos: 33.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8432 - type: GasPipeStraight - components: - - pos: 33.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8433 - type: GasPipeStraight - components: - - pos: 33.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8434 - type: GasPipeStraight - components: - - pos: 37.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8435 - type: GasPipeStraight - components: - - pos: 37.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8436 - type: GasPipeStraight - components: - - pos: 37.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8437 - type: GasPipeStraight - components: - - pos: 37.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8438 - type: GasPipeStraight - components: - - pos: 35.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8439 - type: GasPipeStraight - components: - - pos: 35.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8440 - type: GasPipeBend - components: - - pos: 35.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8441 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8442 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8443 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8444 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8445 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8446 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8447 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8448 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8449 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8450 - type: GasPipeBend - components: - - pos: 36.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8451 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8452 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 33.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8453 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 33.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8454 - type: GasPipeStraight - components: - - pos: 38.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8455 - type: GasPipeStraight - components: - - pos: 38.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8456 - type: GasPipeStraight - components: - - pos: 34.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8457 - type: GasPipeStraight - components: - - pos: 34.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8458 - type: GasPipeStraight - components: - - pos: 34.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8459 - type: GasPipeStraight - components: - - pos: 31.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8460 - type: GasPipeStraight - components: - - pos: 31.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8461 - type: GasPipeStraight - components: - - pos: 31.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8462 - type: GasPipeStraight - components: - - pos: 28.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8463 - type: GasPipeStraight - components: - - pos: 28.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8464 - type: GasPipeStraight - components: - - pos: 28.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8465 - type: GasPipeStraight - components: - - pos: 28.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8466 - type: GasPipeStraight - components: - - pos: 28.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8467 - type: GasPipeStraight - components: - - pos: 28.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8468 - type: GasPipeStraight - components: - - pos: 28.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8469 - type: GasPipeStraight - components: - - pos: 30.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8470 - type: GasPipeStraight - components: - - pos: 30.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8471 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 27.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8472 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 30.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8473 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 33.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8474 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 37.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8475 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 28.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8476 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 31.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8477 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 34.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8478 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 38.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8479 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8480 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8481 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8482 - type: GasPipeBend - components: - - pos: 30.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8483 - type: GasPipeTJunction - components: - - pos: 28.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8484 - type: GasPipeStraight - components: - - pos: 28.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8485 - type: GasPipeStraight - components: - - pos: 28.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8486 - type: GasPipeStraight - components: - - pos: 28.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8487 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 28.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8488 - type: GasPipeStraight - components: - - pos: 28.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8489 - type: GasPipeStraight - components: - - pos: 28.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8490 - type: GasPipeStraight - components: - - pos: 28.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8491 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 28.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8492 - type: GasPipeStraight - components: - - pos: 28.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8493 - type: GasPipeStraight - components: - - pos: 28.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8494 - type: GasPipeStraight - components: - - pos: 28.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8495 - type: GasPipeStraight - components: - - pos: 28.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8496 - type: GasPipeStraight - components: - - pos: 28.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8497 - type: GasPipeStraight - components: - - pos: 28.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8498 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 28.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8499 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 29.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8500 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8501 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8502 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8503 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8504 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8505 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8506 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8507 - type: GasPipeTJunction - components: - - pos: 29.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8508 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 30.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8509 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 24.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8510 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8511 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8512 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8513 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8514 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 31.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8515 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8516 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8517 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8518 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8519 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8520 - type: GasPipeStraight - components: - - pos: 30.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8521 - type: GasPipeStraight - components: - - pos: 30.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8522 - type: GasPipeStraight - components: - - pos: 30.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8523 - type: GasPipeStraight - components: - - pos: 30.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8524 - type: GasPipeStraight - components: - - pos: 30.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8525 - type: GasPipeStraight - components: - - pos: 30.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8526 - type: GasPipeStraight - components: - - pos: 30.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8527 - type: GasPipeStraight - components: - - pos: 30.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8528 - type: GasPipeStraight - components: - - pos: 30.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8529 - type: GasPipeStraight - components: - - pos: 30.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8530 - type: GasPipeStraight - components: - - pos: 30.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8531 - type: GasVentPump - components: - - pos: 30.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8532 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 37.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8533 - type: GasVentScrubber - components: - - pos: 35.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8534 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 35.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8535 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8536 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8537 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8538 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8539 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8540 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8541 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 29.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8542 - type: GasVentPump - components: - - pos: 31.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8543 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 31.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8544 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8545 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8546 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8547 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8548 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8549 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8550 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8551 - type: GasVentScrubber - components: - - pos: 31.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8552 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 24.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8553 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 24.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8554 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8555 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8556 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 20.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8557 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 28.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8558 - type: GasPipeTJunction - components: - - pos: 24.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8559 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8560 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8561 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8562 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8563 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8564 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 18.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8565 - type: GasVentScrubber - components: - - pos: 18.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8566 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8567 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 30.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8568 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8569 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8570 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8571 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 21.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8572 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 19.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8573 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 19.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8574 - type: GasPipeStraight - components: - - pos: 19.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8575 - type: GasPipeStraight - components: - - pos: 19.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8576 - type: GasPipeStraight - components: - - pos: 19.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8577 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 19.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8578 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8579 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8580 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 32.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8581 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8582 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8583 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 25.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8584 - type: GasPipeTJunction - components: - - pos: 24.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8585 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8586 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8587 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8588 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 20.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8589 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8590 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8591 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8592 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8593 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 20.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8594 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 20.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8595 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 24.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8596 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 24.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8597 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 22.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8598 - type: GasVentScrubber - components: - - pos: 32.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8599 - type: GasVentPump - components: - - pos: 24.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8600 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 24.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8601 - type: GasPipeStraight - components: - - pos: 18.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8602 - type: GasPipeStraight - components: - - pos: 18.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8603 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 18.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8604 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8605 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8606 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8607 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8608 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8609 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8610 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8611 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8612 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8613 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 15.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8614 - type: AirSensor - components: - - pos: 24.5,25.5 - parent: 0 - type: Transform -- uid: 8615 - type: AirSensor - components: - - pos: 27.5,6.5 - parent: 0 - type: Transform -- uid: 8616 - type: AirSensor - components: - - pos: 24.5,13.5 - parent: 0 - type: Transform -- uid: 8617 - type: AirSensor - components: - - pos: 24.5,18.5 - parent: 0 - type: Transform -- uid: 8618 - type: AirSensor - components: - - pos: 29.5,18.5 - parent: 0 - type: Transform -- uid: 8619 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 22.5,16.5 - parent: 0 - type: Transform - - devices: - - 8055 - - 8056 - - 8057 - - 8058 - - 8059 - - 8060 - - 8617 - - 8600 - - 8599 - type: DeviceList -- uid: 8620 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 26.5,16.5 - parent: 0 - type: Transform - - devices: - - 8055 - - 8056 - - 8057 - - 8058 - - 8059 - - 8060 - - 8617 - type: DeviceList -- uid: 8621 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 22.5,9.5 - parent: 0 - type: Transform - - devices: - - 8616 - - 8055 - - 8056 - - 8052 - - 8053 - - 8054 - - 8638 - type: DeviceList -- uid: 8622 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 26.5,11.5 - parent: 0 - type: Transform - - devices: - - 8616 - - 8055 - - 8056 - - 8052 - - 8053 - - 8054 - - 8596 - - 8595 - - 8638 - type: DeviceList -- uid: 8623 - type: AirAlarm - components: - - pos: 22.5,8.5 - parent: 0 - type: Transform - - devices: - - 8052 - - 8053 - - 8054 - - 8050 - - 8051 - - 8069 - - 8068 - - 8634 - - 8597 - - 8598 - type: DeviceList -- uid: 8624 - type: FireAlarm - components: - - pos: 21.5,8.5 - parent: 0 - type: Transform - - devices: - - 8052 - - 8053 - - 8054 - - 8050 - - 8051 - - 8069 - - 8068 - - 8634 - type: DeviceList -- uid: 8625 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 32.5,13.5 - parent: 0 - type: Transform - - devices: - - 8068 - - 8634 - - 8067 - - 8635 - - 8636 - - 8567 - - 8557 - type: DeviceList -- uid: 8626 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 31.5,8.5 - parent: 0 - type: Transform - - devices: - - 8068 - - 8634 - - 8067 - - 8635 - - 8636 - type: DeviceList -- uid: 8627 - type: FireAlarm - components: - - pos: 28.5,27.5 - parent: 0 - type: Transform - - devices: - - 8067 - - 8635 - - 8057 - - 8061 - - 8066 - - 8618 - type: DeviceList -- uid: 8628 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 33.5,23.5 - parent: 0 - type: Transform - - devices: - - 8067 - - 8635 - - 8057 - - 8061 - - 8066 - - 8618 - - 8542 - - 8541 - type: DeviceList -- uid: 8629 - type: AirAlarm - components: - - pos: 35.5,15.5 - parent: 0 - type: Transform - - devices: - - 8452 - - 8453 - - 8069 - type: DeviceList -- uid: 8630 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 36.5,15.5 - parent: 0 - type: Transform - - devices: - - 8533 - - 8532 - type: DeviceList -- uid: 8631 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 37.5,10.5 - parent: 0 - type: Transform - - devices: - - 8452 - - 8453 - - 8069 - type: DeviceList -- uid: 8632 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 22.5,24.5 - parent: 0 - type: Transform - - devices: - - 8401 - - 8402 - - 8063 - - 8062 - - 8061 - - 8058 - - 8059 - - 8060 - - 8614 - type: DeviceList -- uid: 8633 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 26.5,23.5 - parent: 0 - type: Transform - - devices: - - 8401 - - 8402 - - 8063 - - 8062 - - 8061 - - 8058 - - 8059 - - 8060 - - 8614 - - 8552 - - 8553 - type: DeviceList -- uid: 8634 - type: FirelockGlass - components: - - pos: 28.5,8.5 - parent: 0 - type: Transform -- uid: 8635 - type: FirelockGlass - components: - - pos: 28.5,15.5 - parent: 0 - type: Transform -- uid: 8636 - type: AirSensor - components: - - pos: 28.5,13.5 - parent: 0 - type: Transform -- uid: 8637 - type: Grille - components: - - pos: 22.5,12.5 - parent: 0 - type: Transform -- uid: 8638 - type: FirelockGlass - components: - - pos: 22.5,13.5 - parent: 0 - type: Transform -- uid: 8639 - type: TableReinforced - components: - - pos: 22.5,13.5 - parent: 0 - type: Transform -- uid: 8640 - type: ReinforcedWindow - components: - - pos: 22.5,12.5 - parent: 0 - type: Transform -- uid: 8641 - type: BlastDoor - components: - - pos: 22.5,10.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9406 - type: SignalReceiver -- uid: 8642 - type: BlastDoor - components: - - pos: 22.5,11.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9406 - type: SignalReceiver -- uid: 8643 - type: Table - components: - - pos: 27.5,9.5 - parent: 0 - type: Transform -- uid: 8644 - type: SignalButton - components: - - pos: 31.5,9.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9400 - - port: Toggle - uid: 9401 - - port: Toggle - uid: 9403 - - port: Toggle - uid: 9404 - - port: Toggle - uid: 9405 - type: SignalTransmitter -- uid: 8645 - type: Table - components: - - pos: 31.5,9.5 - parent: 0 - type: Transform -- uid: 8646 - type: Table - components: - - pos: 31.5,12.5 - parent: 0 - type: Transform -- uid: 8647 - type: HighSecArmoryLocked - components: - - pos: 22.5,14.5 - parent: 0 - type: Transform -- uid: 8648 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 22.5,13.5 - parent: 0 - type: Transform -- uid: 8649 - type: WindoorArmoryLocked - components: - - rot: -1.5707963267948966 rad - pos: 22.5,13.5 - parent: 0 - type: Transform -- uid: 8650 - type: Rack - components: - - pos: 16.5,11.5 - parent: 0 - type: Transform -- uid: 8651 - type: Rack - components: - - pos: 16.5,12.5 - parent: 0 - type: Transform -- uid: 8652 - type: Rack - components: - - pos: 16.5,13.5 - parent: 0 - type: Transform -- uid: 8653 - type: Rack - components: - - pos: 17.5,11.5 - parent: 0 - type: Transform -- uid: 8654 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 17.5,12.5 - parent: 0 - type: Transform -- uid: 8655 - type: Rack - components: - - pos: 17.5,13.5 - parent: 0 - type: Transform -- uid: 8656 - type: Rack - components: - - pos: 18.5,11.5 - parent: 0 - type: Transform -- uid: 8657 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 16.5,12.5 - parent: 0 - type: Transform -- uid: 8658 - type: Rack - components: - - pos: 18.5,13.5 - parent: 0 - type: Transform -- uid: 8659 - type: Rack - components: - - pos: 19.5,11.5 - parent: 0 - type: Transform -- uid: 8660 - type: Rack - components: - - pos: 19.5,12.5 - parent: 0 - type: Transform -- uid: 8661 - type: Rack - components: - - pos: 19.5,13.5 - parent: 0 - type: Transform -- uid: 8662 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 18.5,12.5 - parent: 0 - type: Transform -- uid: 8663 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 19.5,12.5 - parent: 0 - type: Transform -- uid: 8664 - type: WindowReinforcedDirectional - components: - - pos: 19.5,12.5 - parent: 0 - type: Transform -- uid: 8665 - type: WindowReinforcedDirectional - components: - - pos: 18.5,12.5 - parent: 0 - type: Transform -- uid: 8666 - type: WindowReinforcedDirectional - components: - - pos: 17.5,12.5 - parent: 0 - type: Transform -- uid: 8667 - type: WindowReinforcedDirectional - components: - - pos: 16.5,12.5 - parent: 0 - type: Transform -- uid: 8668 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 17.5,12.5 - parent: 0 - type: Transform -- uid: 8669 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 18.5,12.5 - parent: 0 - type: Transform -- uid: 8670 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 17.5,11.5 - parent: 0 - type: Transform -- uid: 8671 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 18.5,11.5 - parent: 0 - type: Transform -- uid: 8672 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 17.5,13.5 - parent: 0 - type: Transform -- uid: 8673 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 18.5,13.5 - parent: 0 - type: Transform -- uid: 8674 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 19.5,13.5 - parent: 0 - type: Transform -- uid: 8675 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 19.5,11.5 - parent: 0 - type: Transform -- uid: 8676 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 16.5,11.5 - parent: 0 - type: Transform -- uid: 8677 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 16.5,13.5 - parent: 0 - type: Transform -- uid: 8678 - type: APCBasic - components: - - pos: 21.5,16.5 - parent: 0 - type: Transform -- uid: 8679 - type: APCBasic - components: - - pos: 30.5,15.5 - parent: 0 - type: Transform -- uid: 8680 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 43.5,16.5 - parent: 0 - type: Transform -- uid: 8681 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 44.5,6.5 - parent: 0 - type: Transform -- uid: 8682 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 48.5,6.5 - parent: 0 - type: Transform -- uid: 8683 - type: APCBasic - components: - - pos: 32.5,8.5 - parent: 0 - type: Transform -- uid: 8684 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 26.5,20.5 - parent: 0 - type: Transform -- uid: 8685 - type: APCBasic - components: - - pos: 36.5,23.5 - parent: 0 - type: Transform -- uid: 8686 - type: APCBasic - components: - - pos: 19.5,27.5 - parent: 0 - type: Transform -- uid: 8687 - type: CableApcExtension - components: - - pos: 36.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8688 - type: CableApcExtension - components: - - pos: 36.5,22.5 - parent: 0 - type: Transform -- uid: 8689 - type: CableApcExtension - components: - - pos: 36.5,21.5 - parent: 0 - type: Transform -- uid: 8690 - type: CableApcExtension - components: - - pos: 36.5,20.5 - parent: 0 - type: Transform -- uid: 8691 - type: CableApcExtension - components: - - pos: 36.5,19.5 - parent: 0 - type: Transform -- uid: 8692 - type: CableApcExtension - components: - - pos: 36.5,18.5 - parent: 0 - type: Transform -- uid: 8693 - type: CableApcExtension - components: - - pos: 37.5,18.5 - parent: 0 - type: Transform -- uid: 8694 - type: CableApcExtension - components: - - pos: 38.5,18.5 - parent: 0 - type: Transform -- uid: 8695 - type: CableApcExtension - components: - - pos: 38.5,19.5 - parent: 0 - type: Transform -- uid: 8696 - type: CableApcExtension - components: - - pos: 38.5,20.5 - parent: 0 - type: Transform -- uid: 8697 - type: CableApcExtension - components: - - pos: 38.5,21.5 - parent: 0 - type: Transform -- uid: 8698 - type: CableApcExtension - components: - - pos: 38.5,22.5 - parent: 0 - type: Transform -- uid: 8699 - type: CableApcExtension - components: - - pos: 38.5,23.5 - parent: 0 - type: Transform -- uid: 8700 - type: CableApcExtension - components: - - pos: 38.5,24.5 - parent: 0 - type: Transform -- uid: 8701 - type: CableApcExtension - components: - - pos: 38.5,25.5 - parent: 0 - type: Transform -- uid: 8702 - type: CableApcExtension - components: - - pos: 35.5,18.5 - parent: 0 - type: Transform -- uid: 8703 - type: CableApcExtension - components: - - pos: 34.5,18.5 - parent: 0 - type: Transform -- uid: 8704 - type: CableApcExtension - components: - - pos: 34.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8705 - type: CableApcExtension - components: - - pos: 34.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8706 - type: CableApcExtension - components: - - pos: 26.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8707 - type: CableApcExtension - components: - - pos: 27.5,20.5 - parent: 0 - type: Transform -- uid: 8708 - type: CableApcExtension - components: - - pos: 28.5,20.5 - parent: 0 - type: Transform -- uid: 8709 - type: CableApcExtension - components: - - pos: 29.5,20.5 - parent: 0 - type: Transform -- uid: 8710 - type: CableApcExtension - components: - - pos: 30.5,20.5 - parent: 0 - type: Transform -- uid: 8711 - type: CableApcExtension - components: - - pos: 31.5,20.5 - parent: 0 - type: Transform -- uid: 8712 - type: CableApcExtension - components: - - pos: 32.5,20.5 - parent: 0 - type: Transform -- uid: 8713 - type: CableApcExtension - components: - - pos: 32.5,19.5 - parent: 0 - type: Transform -- uid: 8714 - type: CableApcExtension - components: - - pos: 32.5,18.5 - parent: 0 - type: Transform -- uid: 8715 - type: CableApcExtension - components: - - pos: 32.5,17.5 - parent: 0 - type: Transform -- uid: 8716 - type: CableApcExtension - components: - - pos: 31.5,17.5 - parent: 0 - type: Transform -- uid: 8717 - type: CableApcExtension - components: - - pos: 30.5,17.5 - parent: 0 - type: Transform -- uid: 8718 - type: CableApcExtension - components: - - pos: 29.5,17.5 - parent: 0 - type: Transform -- uid: 8719 - type: CableApcExtension - components: - - pos: 28.5,17.5 - parent: 0 - type: Transform -- uid: 8720 - type: CableApcExtension - components: - - pos: 27.5,17.5 - parent: 0 - type: Transform -- uid: 8721 - type: CableApcExtension - components: - - pos: 26.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8722 - type: CableApcExtension - components: - - pos: 26.5,18.5 - parent: 0 - type: Transform -- uid: 8723 - type: CableApcExtension - components: - - pos: 26.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8724 - type: CableApcExtension - components: - - pos: 27.5,16.5 - parent: 0 - type: Transform -- uid: 8725 - type: CableApcExtension - components: - - pos: 27.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8726 - type: CableApcExtension - components: - - pos: 27.5,21.5 - parent: 0 - type: Transform -- uid: 8727 - type: CableApcExtension - components: - - pos: 26.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8728 - type: CableApcExtension - components: - - pos: 26.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8729 - type: CableApcExtension - components: - - pos: 27.5,22.5 - parent: 0 - type: Transform -- uid: 8730 - type: CableApcExtension - components: - - pos: 27.5,23.5 - parent: 0 - type: Transform -- uid: 8731 - type: CableApcExtension - components: - - pos: 27.5,24.5 - parent: 0 - type: Transform -- uid: 8732 - type: CableApcExtension - components: - - pos: 26.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8733 - type: CableApcExtension - components: - - pos: 26.5,25.5 - parent: 0 - type: Transform -- uid: 8734 - type: CableApcExtension - components: - - pos: 26.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8735 - type: CableApcExtension - components: - - pos: 27.5,26.5 - parent: 0 - type: Transform -- uid: 8736 - type: CableApcExtension - components: - - pos: 28.5,26.5 - parent: 0 - type: Transform -- uid: 8737 - type: CableApcExtension - components: - - pos: 29.5,26.5 - parent: 0 - type: Transform -- uid: 8738 - type: CableApcExtension - components: - - pos: 30.5,26.5 - parent: 0 - type: Transform -- uid: 8739 - type: CableApcExtension - components: - - pos: 31.5,26.5 - parent: 0 - type: Transform -- uid: 8740 - type: CableApcExtension - components: - - pos: 32.5,26.5 - parent: 0 - type: Transform -- uid: 8741 - type: CableApcExtension - components: - - pos: 32.5,25.5 - parent: 0 - type: Transform -- uid: 8742 - type: CableApcExtension - components: - - pos: 33.5,25.5 - parent: 0 - type: Transform -- uid: 8743 - type: CableApcExtension - components: - - pos: 32.5,24.5 - parent: 0 - type: Transform -- uid: 8744 - type: CableApcExtension - components: - - pos: 32.5,23.5 - parent: 0 - type: Transform -- uid: 8745 - type: CableApcExtension - components: - - pos: 32.5,22.5 - parent: 0 - type: Transform -- uid: 8746 - type: CableApcExtension - components: - - pos: 32.5,21.5 - parent: 0 - type: Transform -- uid: 8747 - type: CableApcExtension - components: - - pos: 30.5,21.5 - parent: 0 - type: Transform -- uid: 8748 - type: CableApcExtension - components: - - pos: 30.5,22.5 - parent: 0 - type: Transform -- uid: 8749 - type: CableApcExtension - components: - - pos: 30.5,23.5 - parent: 0 - type: Transform -- uid: 8750 - type: CableApcExtension - components: - - pos: 30.5,27.5 - parent: 0 - type: Transform -- uid: 8751 - type: CableApcExtension - components: - - pos: 30.5,28.5 - parent: 0 - type: Transform -- uid: 8752 - type: CableApcExtension - components: - - pos: 30.5,29.5 - parent: 0 - type: Transform -- uid: 8753 - type: CableApcExtension - components: - - pos: 31.5,29.5 - parent: 0 - type: Transform -- uid: 8754 - type: CableApcExtension - components: - - pos: 32.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8755 - type: CableApcExtension - components: - - pos: 33.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8756 - type: CableApcExtension - components: - - pos: 34.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8757 - type: CableApcExtension - components: - - pos: 35.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8758 - type: CableApcExtension - components: - - pos: 36.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8759 - type: CableApcExtension - components: - - pos: 37.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8760 - type: CableApcExtension - components: - - pos: 38.5,29.5 - parent: 0 - type: Transform -- uid: 8761 - type: CableApcExtension - components: - - pos: 27.5,27.5 - parent: 0 - type: Transform -- uid: 8762 - type: CableApcExtension - components: - - pos: 27.5,28.5 - parent: 0 - type: Transform -- uid: 8763 - type: CableApcExtension - components: - - pos: 27.5,29.5 - parent: 0 - type: Transform -- uid: 8764 - type: CableApcExtension - components: - - pos: 28.5,29.5 - parent: 0 - type: Transform -- uid: 8765 - type: CableApcExtension - components: - - pos: 19.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8766 - type: CableApcExtension - components: - - pos: 19.5,26.5 - parent: 0 - type: Transform -- uid: 8767 - type: CableApcExtension - components: - - pos: 19.5,25.5 - parent: 0 - type: Transform -- uid: 8768 - type: CableApcExtension - components: - - pos: 20.5,25.5 - parent: 0 - type: Transform -- uid: 8769 - type: CableApcExtension - components: - - pos: 21.5,25.5 - parent: 0 - type: Transform -- uid: 8770 - type: CableApcExtension - components: - - pos: 22.5,25.5 - parent: 0 - type: Transform -- uid: 8771 - type: CableApcExtension - components: - - pos: 23.5,25.5 - parent: 0 - type: Transform -- uid: 8772 - type: CableApcExtension - components: - - pos: 24.5,25.5 - parent: 0 - type: Transform -- uid: 8773 - type: CableApcExtension - components: - - pos: 24.5,26.5 - parent: 0 - type: Transform -- uid: 8774 - type: CableApcExtension - components: - - pos: 24.5,27.5 - parent: 0 - type: Transform -- uid: 8775 - type: CableApcExtension - components: - - pos: 24.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8776 - type: CableApcExtension - components: - - pos: 24.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8777 - type: CableApcExtension - components: - - pos: 24.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8778 - type: CableApcExtension - components: - - pos: 24.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8779 - type: CableApcExtension - components: - - pos: 18.5,26.5 - parent: 0 - type: Transform -- uid: 8780 - type: CableApcExtension - components: - - pos: 17.5,26.5 - parent: 0 - type: Transform -- uid: 8781 - type: CableApcExtension - components: - - pos: 18.5,25.5 - parent: 0 - type: Transform -- uid: 8782 - type: CableApcExtension - components: - - pos: 18.5,24.5 - parent: 0 - type: Transform -- uid: 8783 - type: CableApcExtension - components: - - pos: 18.5,23.5 - parent: 0 - type: Transform -- uid: 8784 - type: CableApcExtension - components: - - pos: 18.5,22.5 - parent: 0 - type: Transform -- uid: 8785 - type: CableApcExtension - components: - - pos: 19.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8786 - type: CableApcExtension - components: - - pos: 19.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8787 - type: CableApcExtension - components: - - pos: 19.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8788 - type: CableApcExtension - components: - - pos: 17.5,22.5 - parent: 0 - type: Transform -- uid: 8789 - type: CableApcExtension - components: - - pos: 16.5,22.5 - parent: 0 - type: Transform -- uid: 8790 - type: CableApcExtension - components: - - pos: 20.5,22.5 - parent: 0 - type: Transform -- uid: 8791 - type: CableApcExtension - components: - - pos: 21.5,22.5 - parent: 0 - type: Transform -- uid: 8792 - type: CableApcExtension - components: - - pos: 24.5,24.5 - parent: 0 - type: Transform -- uid: 8793 - type: CableApcExtension - components: - - pos: 24.5,23.5 - parent: 0 - type: Transform -- uid: 8794 - type: CableApcExtension - components: - - pos: 24.5,22.5 - parent: 0 - type: Transform -- uid: 8795 - type: CableApcExtension - components: - - pos: 23.5,22.5 - parent: 0 - type: Transform -- uid: 8796 - type: CableApcExtension - components: - - pos: 22.5,22.5 - parent: 0 - type: Transform -- uid: 8797 - type: CableApcExtension - components: - - pos: 21.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8798 - type: CableApcExtension - components: - - pos: 21.5,15.5 - parent: 0 - type: Transform -- uid: 8799 - type: CableApcExtension - components: - - pos: 21.5,14.5 - parent: 0 - type: Transform -- uid: 8800 - type: CableApcExtension - components: - - pos: 21.5,13.5 - parent: 0 - type: Transform -- uid: 8801 - type: CableApcExtension - components: - - pos: 21.5,12.5 - parent: 0 - type: Transform -- uid: 8802 - type: CableApcExtension - components: - - pos: 21.5,11.5 - parent: 0 - type: Transform -- uid: 8803 - type: CableApcExtension - components: - - pos: 21.5,10.5 - parent: 0 - type: Transform -- uid: 8804 - type: CableApcExtension - components: - - pos: 20.5,10.5 - parent: 0 - type: Transform -- uid: 8805 - type: CableApcExtension - components: - - pos: 19.5,10.5 - parent: 0 - type: Transform -- uid: 8806 - type: CableApcExtension - components: - - pos: 18.5,10.5 - parent: 0 - type: Transform -- uid: 8807 - type: CableApcExtension - components: - - pos: 17.5,10.5 - parent: 0 - type: Transform -- uid: 8808 - type: CableApcExtension - components: - - pos: 16.5,10.5 - parent: 0 - type: Transform -- uid: 8809 - type: CableApcExtension - components: - - pos: 15.5,10.5 - parent: 0 - type: Transform -- uid: 8810 - type: CableApcExtension - components: - - pos: 15.5,11.5 - parent: 0 - type: Transform -- uid: 8811 - type: CableApcExtension - components: - - pos: 15.5,12.5 - parent: 0 - type: Transform -- uid: 8812 - type: CableApcExtension - components: - - pos: 15.5,13.5 - parent: 0 - type: Transform -- uid: 8813 - type: CableApcExtension - components: - - pos: 15.5,14.5 - parent: 0 - type: Transform -- uid: 8814 - type: CableApcExtension - components: - - pos: 16.5,14.5 - parent: 0 - type: Transform -- uid: 8815 - type: CableApcExtension - components: - - pos: 17.5,14.5 - parent: 0 - type: Transform -- uid: 8816 - type: CableApcExtension - components: - - pos: 18.5,14.5 - parent: 0 - type: Transform -- uid: 8817 - type: CableApcExtension - components: - - pos: 19.5,14.5 - parent: 0 - type: Transform -- uid: 8818 - type: CableApcExtension - components: - - pos: 20.5,14.5 - parent: 0 - type: Transform -- uid: 8819 - type: CableApcExtension - components: - - pos: 22.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8820 - type: CableApcExtension - components: - - pos: 21.5,17.5 - parent: 0 - type: Transform -- uid: 8821 - type: CableApcExtension - components: - - pos: 21.5,18.5 - parent: 0 - type: Transform -- uid: 8822 - type: CableApcExtension - components: - - pos: 20.5,18.5 - parent: 0 - type: Transform -- uid: 8823 - type: CableApcExtension - components: - - pos: 19.5,18.5 - parent: 0 - type: Transform -- uid: 8824 - type: CableApcExtension - components: - - pos: 18.5,18.5 - parent: 0 - type: Transform -- uid: 8825 - type: CableApcExtension - components: - - pos: 22.5,18.5 - parent: 0 - type: Transform -- uid: 8826 - type: CableApcExtension - components: - - pos: 23.5,18.5 - parent: 0 - type: Transform -- uid: 8827 - type: CableApcExtension - components: - - pos: 24.5,18.5 - parent: 0 - type: Transform -- uid: 8828 - type: CableApcExtension - components: - - pos: 24.5,17.5 - parent: 0 - type: Transform -- uid: 8829 - type: CableApcExtension - components: - - pos: 24.5,16.5 - parent: 0 - type: Transform -- uid: 8830 - type: CableApcExtension - components: - - pos: 24.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8831 - type: CableApcExtension - components: - - pos: 24.5,14.5 - parent: 0 - type: Transform -- uid: 8832 - type: CableApcExtension - components: - - pos: 24.5,13.5 - parent: 0 - type: Transform -- uid: 8833 - type: CableApcExtension - components: - - pos: 24.5,12.5 - parent: 0 - type: Transform -- uid: 8834 - type: CableApcExtension - components: - - pos: 24.5,11.5 - parent: 0 - type: Transform -- uid: 8835 - type: CableApcExtension - components: - - pos: 24.5,10.5 - parent: 0 - type: Transform -- uid: 8836 - type: CableApcExtension - components: - - pos: 24.5,9.5 - parent: 0 - type: Transform -- uid: 8837 - type: CableApcExtension - components: - - pos: 32.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8838 - type: CableApcExtension - components: - - pos: 32.5,7.5 - parent: 0 - type: Transform -- uid: 8839 - type: CableApcExtension - components: - - pos: 32.5,6.5 - parent: 0 - type: Transform -- uid: 8840 - type: CableApcExtension - components: - - pos: 31.5,6.5 - parent: 0 - type: Transform -- uid: 8841 - type: CableApcExtension - components: - - pos: 30.5,6.5 - parent: 0 - type: Transform -- uid: 8842 - type: CableApcExtension - components: - - pos: 29.5,6.5 - parent: 0 - type: Transform -- uid: 8843 - type: CableApcExtension - components: - - pos: 28.5,6.5 - parent: 0 - type: Transform -- uid: 8844 - type: CableApcExtension - components: - - pos: 27.5,6.5 - parent: 0 - type: Transform -- uid: 8845 - type: CableApcExtension - components: - - pos: 26.5,6.5 - parent: 0 - type: Transform -- uid: 8846 - type: CableApcExtension - components: - - pos: 25.5,6.5 - parent: 0 - type: Transform -- uid: 8847 - type: CableApcExtension - components: - - pos: 24.5,6.5 - parent: 0 - type: Transform -- uid: 8848 - type: CableApcExtension - components: - - pos: 23.5,6.5 - parent: 0 - type: Transform -- uid: 8849 - type: CableApcExtension - components: - - pos: 22.5,6.5 - parent: 0 - type: Transform -- uid: 8850 - type: CableApcExtension - components: - - pos: 21.5,6.5 - parent: 0 - type: Transform -- uid: 8851 - type: CableApcExtension - components: - - pos: 20.5,6.5 - parent: 0 - type: Transform -- uid: 8852 - type: CableApcExtension - components: - - pos: 19.5,6.5 - parent: 0 - type: Transform -- uid: 8853 - type: CableApcExtension - components: - - pos: 19.5,5.5 - parent: 0 - type: Transform -- uid: 8854 - type: CableApcExtension - components: - - pos: 19.5,4.5 - parent: 0 - type: Transform -- uid: 8855 - type: CableApcExtension - components: - - pos: 19.5,3.5 - parent: 0 - type: Transform -- uid: 8856 - type: CableApcExtension - components: - - pos: 19.5,2.5 - parent: 0 - type: Transform -- uid: 8857 - type: CableApcExtension - components: - - pos: 20.5,2.5 - parent: 0 - type: Transform -- uid: 8858 - type: CableApcExtension - components: - - pos: 21.5,2.5 - parent: 0 - type: Transform -- uid: 8859 - type: CableApcExtension - components: - - pos: 24.5,5.5 - parent: 0 - type: Transform -- uid: 8860 - type: CableApcExtension - components: - - pos: 24.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8861 - type: CableApcExtension - components: - - pos: 24.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8862 - type: CableApcExtension - components: - - pos: 24.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8863 - type: CableApcExtension - components: - - pos: 24.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8864 - type: CableApcExtension - components: - - pos: 24.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8865 - type: CableApcExtension - components: - - pos: 27.5,5.5 - parent: 0 - type: Transform -- uid: 8866 - type: CableApcExtension - components: - - pos: 27.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8867 - type: CableApcExtension - components: - - pos: 27.5,3.5 - parent: 0 - type: Transform -- uid: 8868 - type: CableApcExtension - components: - - pos: 27.5,2.5 - parent: 0 - type: Transform -- uid: 8869 - type: CableApcExtension - components: - - pos: 27.5,1.5 - parent: 0 - type: Transform -- uid: 8870 - type: CableApcExtension - components: - - pos: 27.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8871 - type: CableApcExtension - components: - - pos: 28.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8872 - type: CableApcExtension - components: - - pos: 30.5,5.5 - parent: 0 - type: Transform -- uid: 8873 - type: CableApcExtension - components: - - pos: 30.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8874 - type: CableApcExtension - components: - - pos: 30.5,3.5 - parent: 0 - type: Transform -- uid: 8875 - type: CableApcExtension - components: - - pos: 30.5,2.5 - parent: 0 - type: Transform -- uid: 8876 - type: CableApcExtension - components: - - pos: 30.5,1.5 - parent: 0 - type: Transform -- uid: 8877 - type: CableApcExtension - components: - - pos: 30.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8878 - type: CableApcExtension - components: - - pos: 31.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8879 - type: CableApcExtension - components: - - pos: 33.5,6.5 - parent: 0 - type: Transform -- uid: 8880 - type: CableApcExtension - components: - - pos: 33.5,5.5 - parent: 0 - type: Transform -- uid: 8881 - type: CableApcExtension - components: - - pos: 33.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8882 - type: CableApcExtension - components: - - pos: 33.5,3.5 - parent: 0 - type: Transform -- uid: 8883 - type: CableApcExtension - components: - - pos: 33.5,2.5 - parent: 0 - type: Transform -- uid: 8884 - type: CableApcExtension - components: - - pos: 33.5,1.5 - parent: 0 - type: Transform -- uid: 8885 - type: CableApcExtension - components: - - pos: 33.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8886 - type: CableApcExtension - components: - - pos: 34.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8887 - type: CableApcExtension - components: - - pos: 34.5,6.5 - parent: 0 - type: Transform -- uid: 8888 - type: CableApcExtension - components: - - pos: 35.5,6.5 - parent: 0 - type: Transform -- uid: 8889 - type: CableApcExtension - components: - - pos: 36.5,6.5 - parent: 0 - type: Transform -- uid: 8890 - type: CableApcExtension - components: - - pos: 37.5,6.5 - parent: 0 - type: Transform -- uid: 8891 - type: CableApcExtension - components: - - pos: 37.5,5.5 - parent: 0 - type: Transform -- uid: 8892 - type: CableApcExtension - components: - - pos: 37.5,4.5 - parent: 0 - type: Transform -- uid: 8893 - type: CableApcExtension - components: - - pos: 37.5,3.5 - parent: 0 - type: Transform -- uid: 8894 - type: CableApcExtension - components: - - pos: 37.5,2.5 - parent: 0 - type: Transform -- uid: 8895 - type: CableApcExtension - components: - - pos: 37.5,1.5 - parent: 0 - type: Transform -- uid: 8896 - type: CableApcExtension - components: - - pos: 37.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8897 - type: CableApcExtension - components: - - pos: 36.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8898 - type: CableApcExtension - components: - - pos: 38.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8899 - type: CableApcExtension - components: - - pos: 39.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8900 - type: CableApcExtension - components: - - pos: 38.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8901 - type: CableApcExtension - components: - - pos: 39.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8902 - type: CableApcExtension - components: - - pos: 36.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8903 - type: CableApcExtension - components: - - pos: 30.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8904 - type: CableApcExtension - components: - - pos: 30.5,14.5 - parent: 0 - type: Transform -- uid: 8905 - type: CableApcExtension - components: - - pos: 30.5,13.5 - parent: 0 - type: Transform -- uid: 8906 - type: CableApcExtension - components: - - pos: 30.5,12.5 - parent: 0 - type: Transform -- uid: 8907 - type: CableApcExtension - components: - - pos: 30.5,11.5 - parent: 0 - type: Transform -- uid: 8908 - type: CableApcExtension - components: - - pos: 29.5,11.5 - parent: 0 - type: Transform -- uid: 8909 - type: CableApcExtension - components: - - pos: 29.5,10.5 - parent: 0 - type: Transform -- uid: 8910 - type: CableApcExtension - components: - - pos: 29.5,9.5 - parent: 0 - type: Transform -- uid: 8911 - type: CableApcExtension - components: - - pos: 29.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8912 - type: CableApcExtension - components: - - pos: 28.5,8.5 - parent: 0 - type: Transform -- uid: 8913 - type: CableApcExtension - components: - - pos: 27.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8914 - type: CableApcExtension - components: - - pos: 27.5,9.5 - parent: 0 - type: Transform -- uid: 8915 - type: CableApcExtension - components: - - pos: 26.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8916 - type: CableApcExtension - components: - - pos: 26.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8917 - type: CableApcExtension - components: - - pos: 29.5,13.5 - parent: 0 - type: Transform -- uid: 8918 - type: CableApcExtension - components: - - pos: 28.5,13.5 - parent: 0 - type: Transform -- uid: 8919 - type: CableApcExtension - components: - - pos: 27.5,13.5 - parent: 0 - type: Transform -- uid: 8920 - type: CableApcExtension - components: - - pos: 26.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8921 - type: CableApcExtension - components: - - pos: 26.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8922 - type: CableApcExtension - components: - - pos: 31.5,12.5 - parent: 0 - type: Transform -- uid: 8923 - type: CableApcExtension - components: - - pos: 32.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8924 - type: CableApcExtension - components: - - pos: 32.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8925 - type: APCBasic - components: - - pos: 34.5,15.5 - parent: 0 - type: Transform -- uid: 8926 - type: CableApcExtension - components: - - pos: 34.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8927 - type: CableApcExtension - components: - - pos: 34.5,9.5 - parent: 0 - type: Transform -- uid: 8928 - type: CableApcExtension - components: - - pos: 34.5,10.5 - parent: 0 - type: Transform -- uid: 8929 - type: CableApcExtension - components: - - pos: 34.5,11.5 - parent: 0 - type: Transform -- uid: 8930 - type: CableApcExtension - components: - - pos: 34.5,12.5 - parent: 0 - type: Transform -- uid: 8931 - type: CableApcExtension - components: - - pos: 34.5,13.5 - parent: 0 - type: Transform -- uid: 8932 - type: CableApcExtension - components: - - pos: 34.5,14.5 - parent: 0 - type: Transform -- uid: 8933 - type: CableApcExtension - components: - - pos: 34.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8934 - type: CableApcExtension - components: - - pos: 36.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8935 - type: CableApcExtension - components: - - pos: 36.5,9.5 - parent: 0 - type: Transform -- uid: 8936 - type: CableApcExtension - components: - - pos: 35.5,9.5 - parent: 0 - type: Transform -- uid: 8937 - type: CableApcExtension - components: - - pos: 35.5,12.5 - parent: 0 - type: Transform -- uid: 8938 - type: CableApcExtension - components: - - pos: 36.5,12.5 - parent: 0 - type: Transform -- uid: 8939 - type: CableApcExtension - components: - - pos: 37.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8940 - type: CableApcExtension - components: - - pos: 37.5,13.5 - parent: 0 - type: Transform -- uid: 8941 - type: CableApcExtension - components: - - pos: 44.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8942 - type: CableApcExtension - components: - - pos: 37.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8943 - type: CableApcExtension - components: - - pos: 38.5,13.5 - parent: 0 - type: Transform -- uid: 8944 - type: CableApcExtension - components: - - pos: 43.5,6.5 - parent: 0 - type: Transform -- uid: 8945 - type: CableApcExtension - components: - - pos: 42.5,6.5 - parent: 0 - type: Transform -- uid: 8946 - type: CableApcExtension - components: - - pos: 41.5,6.5 - parent: 0 - type: Transform -- uid: 8947 - type: CableApcExtension - components: - - pos: 40.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8948 - type: CableApcExtension - components: - - pos: 40.5,7.5 - parent: 0 - type: Transform -- uid: 8949 - type: CableApcExtension - components: - - pos: 39.5,7.5 - parent: 0 - type: Transform -- uid: 8950 - type: CableApcExtension - components: - - pos: 39.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8951 - type: CableApcExtension - components: - - pos: 42.5,5.5 - parent: 0 - type: Transform -- uid: 8952 - type: CableApcExtension - components: - - pos: 42.5,4.5 - parent: 0 - type: Transform -- uid: 8953 - type: CableApcExtension - components: - - pos: 42.5,3.5 - parent: 0 - type: Transform -- uid: 8954 - type: CableApcExtension - components: - - pos: 42.5,2.5 - parent: 0 - type: Transform -- uid: 8955 - type: CableApcExtension - components: - - pos: 42.5,1.5 - parent: 0 - type: Transform -- uid: 8956 - type: CableApcExtension - components: - - pos: 43.5,2.5 - parent: 0 - type: Transform -- uid: 8957 - type: CableApcExtension - components: - - pos: 44.5,2.5 - parent: 0 - type: Transform -- uid: 8958 - type: CableApcExtension - components: - - pos: 45.5,2.5 - parent: 0 - type: Transform -- uid: 8959 - type: CableApcExtension - components: - - pos: 46.5,2.5 - parent: 0 - type: Transform -- uid: 8960 - type: CableApcExtension - components: - - pos: 47.5,2.5 - parent: 0 - type: Transform -- uid: 8961 - type: CableApcExtension - components: - - pos: 42.5,7.5 - parent: 0 - type: Transform -- uid: 8962 - type: CableApcExtension - components: - - pos: 42.5,8.5 - parent: 0 - type: Transform -- uid: 8963 - type: CableApcExtension - components: - - pos: 42.5,9.5 - parent: 0 - type: Transform -- uid: 8964 - type: CableApcExtension - components: - - pos: 42.5,10.5 - parent: 0 - type: Transform -- uid: 8965 - type: CableApcExtension - components: - - pos: 43.5,10.5 - parent: 0 - type: Transform -- uid: 8966 - type: CableApcExtension - components: - - pos: 44.5,10.5 - parent: 0 - type: Transform -- uid: 8967 - type: CableApcExtension - components: - - pos: 45.5,10.5 - parent: 0 - type: Transform -- uid: 8968 - type: CableApcExtension - components: - - pos: 47.5,10.5 - parent: 0 - type: Transform -- uid: 8969 - type: CableApcExtension - components: - - pos: 48.5,10.5 - parent: 0 - type: Transform -- uid: 8970 - type: CableApcExtension - components: - - pos: 49.5,10.5 - parent: 0 - type: Transform -- uid: 8971 - type: CableApcExtension - components: - - pos: 50.5,10.5 - parent: 0 - type: Transform -- uid: 8972 - type: CableApcExtension - components: - - pos: 50.5,9.5 - parent: 0 - type: Transform -- uid: 8973 - type: CableApcExtension - components: - - pos: 50.5,8.5 - parent: 0 - type: Transform -- uid: 8974 - type: CableApcExtension - components: - - pos: 50.5,7.5 - parent: 0 - type: Transform -- uid: 8975 - type: CableApcExtension - components: - - pos: 50.5,6.5 - parent: 0 - type: Transform -- uid: 8976 - type: CableApcExtension - components: - - pos: 50.5,5.5 - parent: 0 - type: Transform -- uid: 8977 - type: CableApcExtension - components: - - pos: 49.5,6.5 - parent: 0 - type: Transform -- uid: 8978 - type: CableApcExtension - components: - - pos: 48.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8979 - type: CableApcExtension - components: - - pos: 51.5,6.5 - parent: 0 - type: Transform -- uid: 8980 - type: CableApcExtension - components: - - pos: 52.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8981 - type: CableApcExtension - components: - - pos: 50.5,4.5 - parent: 0 - type: Transform -- uid: 8982 - type: CableApcExtension - components: - - pos: 50.5,3.5 - parent: 0 - type: Transform -- uid: 8983 - type: CableApcExtension - components: - - pos: 50.5,11.5 - parent: 0 - type: Transform -- uid: 8984 - type: CableApcExtension - components: - - pos: 50.5,12.5 - parent: 0 - type: Transform -- uid: 8985 - type: CableApcExtension - components: - - pos: 50.5,13.5 - parent: 0 - type: Transform -- uid: 8986 - type: CableApcExtension - components: - - pos: 50.5,14.5 - parent: 0 - type: Transform -- uid: 8987 - type: CableApcExtension - components: - - pos: 50.5,15.5 - parent: 0 - type: Transform -- uid: 8988 - type: CableApcExtension - components: - - pos: 47.5,11.5 - parent: 0 - type: Transform -- uid: 8989 - type: CableApcExtension - components: - - pos: 47.5,12.5 - parent: 0 - type: Transform -- uid: 8990 - type: CableApcExtension - components: - - pos: 47.5,13.5 - parent: 0 - type: Transform -- uid: 8991 - type: CableApcExtension - components: - - pos: 47.5,14.5 - parent: 0 - type: Transform -- uid: 8992 - type: CableApcExtension - components: - - pos: 47.5,15.5 - parent: 0 - type: Transform -- uid: 8993 - type: CableApcExtension - components: - - pos: 45.5,11.5 - parent: 0 - type: Transform -- uid: 8994 - type: CableApcExtension - components: - - pos: 45.5,12.5 - parent: 0 - type: Transform -- uid: 8995 - type: CableApcExtension - components: - - pos: 45.5,13.5 - parent: 0 - type: Transform -- uid: 8996 - type: CableApcExtension - components: - - pos: 45.5,14.5 - parent: 0 - type: Transform -- uid: 8997 - type: CableApcExtension - components: - - pos: 45.5,15.5 - parent: 0 - type: Transform -- uid: 8998 - type: CableApcExtension - components: - - pos: 42.5,11.5 - parent: 0 - type: Transform -- uid: 8999 - type: CableApcExtension - components: - - pos: 42.5,12.5 - parent: 0 - type: Transform -- uid: 9000 - type: CableApcExtension - components: - - pos: 42.5,13.5 - parent: 0 - type: Transform -- uid: 9001 - type: CableApcExtension - components: - - pos: 42.5,14.5 - parent: 0 - type: Transform -- uid: 9002 - type: CableApcExtension - components: - - pos: 42.5,15.5 - parent: 0 - type: Transform -- uid: 9003 - type: CableApcExtension - components: - - pos: 43.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9004 - type: CableApcExtension - components: - - pos: 43.5,17.5 - parent: 0 - type: Transform -- uid: 9005 - type: CableApcExtension - components: - - pos: 43.5,18.5 - parent: 0 - type: Transform -- uid: 9006 - type: CableApcExtension - components: - - pos: 43.5,19.5 - parent: 0 - type: Transform -- uid: 9007 - type: CableApcExtension - components: - - pos: 43.5,20.5 - parent: 0 - type: Transform -- uid: 9008 - type: CableApcExtension - components: - - pos: 43.5,21.5 - parent: 0 - type: Transform -- uid: 9009 - type: CableApcExtension - components: - - pos: 43.5,22.5 - parent: 0 - type: Transform -- uid: 9010 - type: CableApcExtension - components: - - pos: 43.5,23.5 - parent: 0 - type: Transform -- uid: 9011 - type: CableApcExtension - components: - - pos: 43.5,24.5 - parent: 0 - type: Transform -- uid: 9012 - type: CableApcExtension - components: - - pos: 43.5,25.5 - parent: 0 - type: Transform -- uid: 9013 - type: CableApcExtension - components: - - pos: 44.5,25.5 - parent: 0 - type: Transform -- uid: 9014 - type: CableApcExtension - components: - - pos: 45.5,25.5 - parent: 0 - type: Transform -- uid: 9015 - type: CableApcExtension - components: - - pos: 46.5,25.5 - parent: 0 - type: Transform -- uid: 9016 - type: CableApcExtension - components: - - pos: 46.5,26.5 - parent: 0 - type: Transform -- uid: 9017 - type: CableApcExtension - components: - - pos: 46.5,27.5 - parent: 0 - type: Transform -- uid: 9018 - type: CableApcExtension - components: - - pos: 46.5,28.5 - parent: 0 - type: Transform -- uid: 9019 - type: CableApcExtension - components: - - pos: 47.5,27.5 - parent: 0 - type: Transform -- uid: 9020 - type: CableApcExtension - components: - - pos: 48.5,27.5 - parent: 0 - type: Transform -- uid: 9021 - type: CableApcExtension - components: - - pos: 49.5,27.5 - parent: 0 - type: Transform -- uid: 9022 - type: CableApcExtension - components: - - pos: 45.5,28.5 - parent: 0 - type: Transform -- uid: 9023 - type: CableApcExtension - components: - - pos: 44.5,28.5 - parent: 0 - type: Transform -- uid: 9024 - type: CableApcExtension - components: - - pos: 43.5,28.5 - parent: 0 - type: Transform -- uid: 9025 - type: CableApcExtension - components: - - pos: 42.5,28.5 - parent: 0 - type: Transform -- uid: 9026 - type: CableApcExtension - components: - - pos: 47.5,25.5 - parent: 0 - type: Transform -- uid: 9027 - type: CableApcExtension - components: - - pos: 48.5,25.5 - parent: 0 - type: Transform -- uid: 9028 - type: CableApcExtension - components: - - pos: 49.5,25.5 - parent: 0 - type: Transform -- uid: 9029 - type: CableApcExtension - components: - - pos: 49.5,24.5 - parent: 0 - type: Transform -- uid: 9030 - type: CableApcExtension - components: - - pos: 49.5,23.5 - parent: 0 - type: Transform -- uid: 9031 - type: CableApcExtension - components: - - pos: 49.5,22.5 - parent: 0 - type: Transform -- uid: 9032 - type: CableApcExtension - components: - - pos: 49.5,21.5 - parent: 0 - type: Transform -- uid: 9033 - type: CableApcExtension - components: - - pos: 49.5,20.5 - parent: 0 - type: Transform -- uid: 9034 - type: CableApcExtension - components: - - pos: 49.5,19.5 - parent: 0 - type: Transform -- uid: 9035 - type: CableApcExtension - components: - - pos: 49.5,18.5 - parent: 0 - type: Transform -- uid: 9036 - type: CableApcExtension - components: - - pos: 49.5,17.5 - parent: 0 - type: Transform -- uid: 9037 - type: CableApcExtension - components: - - pos: 48.5,17.5 - parent: 0 - type: Transform -- uid: 9038 - type: CableApcExtension - components: - - pos: 47.5,17.5 - parent: 0 - type: Transform -- uid: 9039 - type: CableApcExtension - components: - - pos: 46.5,17.5 - parent: 0 - type: Transform -- uid: 9040 - type: CableApcExtension - components: - - pos: 45.5,17.5 - parent: 0 - type: Transform -- uid: 9041 - type: CableApcExtension - components: - - pos: 44.5,17.5 - parent: 0 - type: Transform -- uid: 9042 - type: CableApcExtension - components: - - pos: 46.5,18.5 - parent: 0 - type: Transform -- uid: 9043 - type: CableApcExtension - components: - - pos: 46.5,19.5 - parent: 0 - type: Transform -- uid: 9044 - type: CableApcExtension - components: - - pos: 46.5,20.5 - parent: 0 - type: Transform -- uid: 9045 - type: CableApcExtension - components: - - pos: 46.5,21.5 - parent: 0 - type: Transform -- uid: 9046 - type: CableApcExtension - components: - - pos: 46.5,22.5 - parent: 0 - type: Transform -- uid: 9047 - type: CableMV - components: - - pos: 35.5,25.5 - parent: 0 - type: Transform -- uid: 9048 - type: CableMV - components: - - pos: 34.5,25.5 - parent: 0 - type: Transform -- uid: 9049 - type: CableMV - components: - - pos: 33.5,25.5 - parent: 0 - type: Transform -- uid: 9050 - type: CableMV - components: - - pos: 32.5,25.5 - parent: 0 - type: Transform -- uid: 9051 - type: CableMV - components: - - pos: 31.5,25.5 - parent: 0 - type: Transform -- uid: 9052 - type: CableMV - components: - - pos: 30.5,25.5 - parent: 0 - type: Transform -- uid: 9053 - type: CableMV - components: - - pos: 29.5,25.5 - parent: 0 - type: Transform -- uid: 9054 - type: CableMV - components: - - pos: 28.5,25.5 - parent: 0 - type: Transform -- uid: 9055 - type: CableMV - components: - - pos: 27.5,25.5 - parent: 0 - type: Transform -- uid: 9056 - type: CableMV - components: - - pos: 27.5,24.5 - parent: 0 - type: Transform -- uid: 9057 - type: CableMV - components: - - pos: 27.5,23.5 - parent: 0 - type: Transform -- uid: 9058 - type: CableMV - components: - - pos: 27.5,22.5 - parent: 0 - type: Transform -- uid: 9059 - type: CableMV - components: - - pos: 27.5,21.5 - parent: 0 - type: Transform -- uid: 9060 - type: CableMV - components: - - pos: 27.5,20.5 - parent: 0 - type: Transform -- uid: 9061 - type: CableMV - components: - - pos: 26.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9062 - type: CableMV - components: - - pos: 28.5,20.5 - parent: 0 - type: Transform -- uid: 9063 - type: CableMV - components: - - pos: 29.5,20.5 - parent: 0 - type: Transform -- uid: 9064 - type: CableMV - components: - - pos: 30.5,20.5 - parent: 0 - type: Transform -- uid: 9065 - type: CableMV - components: - - pos: 30.5,19.5 - parent: 0 - type: Transform -- uid: 9066 - type: CableMV - components: - - pos: 30.5,18.5 - parent: 0 - type: Transform -- uid: 9067 - type: CableMV - components: - - pos: 30.5,17.5 - parent: 0 - type: Transform -- uid: 9068 - type: CableMV - components: - - pos: 30.5,16.5 - parent: 0 - type: Transform -- uid: 9069 - type: CableMV - components: - - pos: 30.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9070 - type: CableMV - components: - - pos: 31.5,18.5 - parent: 0 - type: Transform -- uid: 9071 - type: CableMV - components: - - pos: 32.5,18.5 - parent: 0 - type: Transform -- uid: 9072 - type: CableMV - components: - - pos: 33.5,18.5 - parent: 0 - type: Transform -- uid: 9073 - type: CableMV - components: - - pos: 34.5,18.5 - parent: 0 - type: Transform -- uid: 9074 - type: CableMV - components: - - pos: 35.5,18.5 - parent: 0 - type: Transform -- uid: 9075 - type: CableMV - components: - - pos: 36.5,18.5 - parent: 0 - type: Transform -- uid: 9076 - type: CableMV - components: - - pos: 36.5,19.5 - parent: 0 - type: Transform -- uid: 9077 - type: CableMV - components: - - pos: 36.5,20.5 - parent: 0 - type: Transform -- uid: 9078 - type: CableMV - components: - - pos: 36.5,21.5 - parent: 0 - type: Transform -- uid: 9079 - type: CableMV - components: - - pos: 36.5,22.5 - parent: 0 - type: Transform -- uid: 9080 - type: CableMV - components: - - pos: 36.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9081 - type: CableMV - components: - - pos: 30.5,14.5 - parent: 0 - type: Transform -- uid: 9082 - type: CableMV - components: - - pos: 30.5,13.5 - parent: 0 - type: Transform -- uid: 9083 - type: CableMV - components: - - pos: 30.5,12.5 - parent: 0 - type: Transform -- uid: 9084 - type: CableMV - components: - - pos: 30.5,11.5 - parent: 0 - type: Transform -- uid: 9085 - type: CableMV - components: - - pos: 30.5,10.5 - parent: 0 - type: Transform -- uid: 9086 - type: CableMV - components: - - pos: 30.5,9.5 - parent: 0 - type: Transform -- uid: 9087 - type: CableMV - components: - - pos: 30.5,8.5 - parent: 0 - type: Transform -- uid: 9088 - type: CableMV - components: - - pos: 30.5,7.5 - parent: 0 - type: Transform -- uid: 9089 - type: CableMV - components: - - pos: 30.5,6.5 - parent: 0 - type: Transform -- uid: 9090 - type: CableMV - components: - - pos: 31.5,6.5 - parent: 0 - type: Transform -- uid: 9091 - type: CableMV - components: - - pos: 32.5,6.5 - parent: 0 - type: Transform -- uid: 9092 - type: CableMV - components: - - pos: 32.5,7.5 - parent: 0 - type: Transform -- uid: 9093 - type: CableMV - components: - - pos: 32.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9094 - type: CableMV - components: - - pos: 33.5,6.5 - parent: 0 - type: Transform -- uid: 9095 - type: CableMV - components: - - pos: 34.5,6.5 - parent: 0 - type: Transform -- uid: 9096 - type: CableMV - components: - - pos: 35.5,6.5 - parent: 0 - type: Transform -- uid: 9097 - type: CableMV - components: - - pos: 36.5,6.5 - parent: 0 - type: Transform -- uid: 9098 - type: CableMV - components: - - pos: 37.5,6.5 - parent: 0 - type: Transform -- uid: 9099 - type: CableMV - components: - - pos: 38.5,6.5 - parent: 0 - type: Transform -- uid: 9100 - type: CableMV - components: - - pos: 39.5,6.5 - parent: 0 - type: Transform -- uid: 9101 - type: CableMV - components: - - pos: 40.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9102 - type: CableMV - components: - - pos: 41.5,6.5 - parent: 0 - type: Transform -- uid: 9103 - type: CableMV - components: - - pos: 42.5,6.5 - parent: 0 - type: Transform -- uid: 9104 - type: CableMV - components: - - pos: 43.5,6.5 - parent: 0 - type: Transform -- uid: 9105 - type: CableMV - components: - - pos: 44.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9106 - type: CableMV - components: - - pos: 42.5,7.5 - parent: 0 - type: Transform -- uid: 9107 - type: CableMV - components: - - pos: 42.5,8.5 - parent: 0 - type: Transform -- uid: 9108 - type: CableMV - components: - - pos: 42.5,9.5 - parent: 0 - type: Transform -- uid: 9109 - type: CableMV - components: - - pos: 42.5,10.5 - parent: 0 - type: Transform -- uid: 9110 - type: CableMV - components: - - pos: 42.5,11.5 - parent: 0 - type: Transform -- uid: 9111 - type: CableMV - components: - - pos: 42.5,12.5 - parent: 0 - type: Transform -- uid: 9112 - type: CableMV - components: - - pos: 42.5,13.5 - parent: 0 - type: Transform -- uid: 9113 - type: CableMV - components: - - pos: 42.5,14.5 - parent: 0 - type: Transform -- uid: 9114 - type: CableMV - components: - - pos: 42.5,15.5 - parent: 0 - type: Transform -- uid: 9115 - type: CableMV - components: - - pos: 42.5,16.5 - parent: 0 - type: Transform -- uid: 9116 - type: CableMV - components: - - pos: 42.5,17.5 - parent: 0 - type: Transform -- uid: 9117 - type: CableMV - components: - - pos: 43.5,17.5 - parent: 0 - type: Transform -- uid: 9118 - type: CableMV - components: - - pos: 43.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9119 - type: CableMV - components: - - pos: 34.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9120 - type: CableMV - components: - - pos: 34.5,14.5 - parent: 0 - type: Transform -- uid: 9121 - type: CableMV - components: - - pos: 34.5,13.5 - parent: 0 - type: Transform -- uid: 9122 - type: CableMV - components: - - pos: 34.5,12.5 - parent: 0 - type: Transform -- uid: 9123 - type: CableMV - components: - - pos: 34.5,11.5 - parent: 0 - type: Transform -- uid: 9124 - type: CableMV - components: - - pos: 34.5,10.5 - parent: 0 - type: Transform -- uid: 9125 - type: CableMV - components: - - pos: 34.5,9.5 - parent: 0 - type: Transform -- uid: 9126 - type: CableMV - components: - - pos: 34.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9127 - type: CableMV - components: - - pos: 34.5,7.5 - parent: 0 - type: Transform -- uid: 9128 - type: CableMV - components: - - pos: 21.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9129 - type: CableMV - components: - - pos: 21.5,17.5 - parent: 0 - type: Transform -- uid: 9130 - type: CableMV - components: - - pos: 21.5,18.5 - parent: 0 - type: Transform -- uid: 9131 - type: CableMV - components: - - pos: 22.5,18.5 - parent: 0 - type: Transform -- uid: 9132 - type: CableMV - components: - - pos: 23.5,18.5 - parent: 0 - type: Transform -- uid: 9133 - type: CableMV - components: - - pos: 24.5,18.5 - parent: 0 - type: Transform -- uid: 9134 - type: CableMV - components: - - pos: 24.5,19.5 - parent: 0 - type: Transform -- uid: 9135 - type: CableMV - components: - - pos: 24.5,20.5 - parent: 0 - type: Transform -- uid: 9136 - type: CableMV - components: - - pos: 25.5,20.5 - parent: 0 - type: Transform -- uid: 9137 - type: CableMV - components: - - pos: 19.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9138 - type: CableMV - components: - - pos: 18.5,27.5 - parent: 0 - type: Transform -- uid: 9139 - type: CableMV - components: - - pos: 18.5,28.5 - parent: 0 - type: Transform -- uid: 9140 - type: CableMV - components: - - pos: 18.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9141 - type: CableMV - components: - - pos: 17.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9142 - type: CableMV - components: - - pos: 16.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9143 - type: CableMV - components: - - pos: 15.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9144 - type: CableHV - components: - - pos: 52.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9145 - type: CableHV - components: - - pos: 52.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9146 - type: CableHV - components: - - pos: 52.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9147 - type: CableHV - components: - - pos: 52.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9148 - type: CableHV - components: - - pos: 52.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9149 - type: CableHV - components: - - pos: 53.5,22.5 - parent: 0 - type: Transform -- uid: 9150 - type: CableHV - components: - - pos: 54.5,22.5 - parent: 0 - type: Transform -- uid: 9151 - type: CableHV - components: - - pos: 54.5,23.5 - parent: 0 - type: Transform -- uid: 9152 - type: CableHV - components: - - pos: 54.5,24.5 - parent: 0 - type: Transform -- uid: 9153 - type: CableHV - components: - - pos: 54.5,25.5 - parent: 0 - type: Transform -- uid: 9154 - type: CableHV - components: - - pos: 54.5,26.5 - parent: 0 - type: Transform -- uid: 9155 - type: CableHV - components: - - pos: 54.5,27.5 - parent: 0 - type: Transform -- uid: 9156 - type: CableHV - components: - - pos: 54.5,28.5 - parent: 0 - type: Transform -- uid: 9157 - type: CableHV - components: - - pos: 54.5,29.5 - parent: 0 - type: Transform -- uid: 9158 - type: CableHV - components: - - pos: 54.5,30.5 - parent: 0 - type: Transform -- uid: 9159 - type: CableHV - components: - - pos: 54.5,31.5 - parent: 0 - type: Transform -- uid: 9160 - type: CableHV - components: - - pos: 54.5,32.5 - parent: 0 - type: Transform -- uid: 9161 - type: CableHV - components: - - pos: 53.5,32.5 - parent: 0 - type: Transform -- uid: 9162 - type: CableHV - components: - - pos: 52.5,32.5 - parent: 0 - type: Transform -- uid: 9163 - type: CableHV - components: - - pos: 51.5,32.5 - parent: 0 - type: Transform -- uid: 9164 - type: CableHV - components: - - pos: 50.5,32.5 - parent: 0 - type: Transform -- uid: 9165 - type: CableHV - components: - - pos: 49.5,32.5 - parent: 0 - type: Transform -- uid: 9166 - type: CableHV - components: - - pos: 48.5,32.5 - parent: 0 - type: Transform -- uid: 9167 - type: CableHV - components: - - pos: 47.5,32.5 - parent: 0 - type: Transform -- uid: 9168 - type: CableHV - components: - - pos: 46.5,32.5 - parent: 0 - type: Transform -- uid: 9169 - type: CableHV - components: - - pos: 45.5,32.5 - parent: 0 - type: Transform -- uid: 9170 - type: CableHV - components: - - pos: 44.5,32.5 - parent: 0 - type: Transform -- uid: 9171 - type: CableHV - components: - - pos: 43.5,32.5 - parent: 0 - type: Transform -- uid: 9172 - type: CableHV - components: - - pos: 42.5,32.5 - parent: 0 - type: Transform -- uid: 9173 - type: CableHV - components: - - pos: 41.5,32.5 - parent: 0 - type: Transform -- uid: 9174 - type: CableHV - components: - - pos: 40.5,32.5 - parent: 0 - type: Transform -- uid: 9175 - type: CableHV - components: - - pos: 39.5,32.5 - parent: 0 - type: Transform -- uid: 9176 - type: CableHV - components: - - pos: 38.5,32.5 - parent: 0 - type: Transform -- uid: 9177 - type: CableHV - components: - - pos: 37.5,32.5 - parent: 0 - type: Transform -- uid: 9178 - type: CableHV - components: - - pos: 36.5,32.5 - parent: 0 - type: Transform -- uid: 9179 - type: CableHV - components: - - pos: 35.5,32.5 - parent: 0 - type: Transform -- uid: 9180 - type: CableHV - components: - - pos: 34.5,32.5 - parent: 0 - type: Transform -- uid: 9181 - type: CableHV - components: - - pos: 33.5,32.5 - parent: 0 - type: Transform -- uid: 9182 - type: CableHV - components: - - pos: 32.5,32.5 - parent: 0 - type: Transform -- uid: 9183 - type: CableHV - components: - - pos: 31.5,32.5 - parent: 0 - type: Transform -- uid: 9184 - type: CableHV - components: - - pos: 30.5,32.5 - parent: 0 - type: Transform -- uid: 9185 - type: CableHV - components: - - pos: 29.5,32.5 - parent: 0 - type: Transform -- uid: 9186 - type: CableHV - components: - - pos: 28.5,32.5 - parent: 0 - type: Transform -- uid: 9187 - type: CableHV - components: - - pos: 27.5,32.5 - parent: 0 - type: Transform -- uid: 9188 - type: CableHV - components: - - pos: 26.5,32.5 - parent: 0 - type: Transform -- uid: 9189 - type: CableHV - components: - - pos: 25.5,32.5 - parent: 0 - type: Transform -- uid: 9190 - type: CableHV - components: - - pos: 54.5,21.5 - parent: 0 - type: Transform -- uid: 9191 - type: CableHV - components: - - pos: 54.5,20.5 - parent: 0 - type: Transform -- uid: 9192 - type: CableHV - components: - - pos: 54.5,19.5 - parent: 0 - type: Transform -- uid: 9193 - type: CableHV - components: - - pos: 54.5,18.5 - parent: 0 - type: Transform -- uid: 9194 - type: CableHV - components: - - pos: 54.5,17.5 - parent: 0 - type: Transform -- uid: 9195 - type: CableHV - components: - - pos: 54.5,16.5 - parent: 0 - type: Transform -- uid: 9196 - type: CableHV - components: - - pos: 54.5,15.5 - parent: 0 - type: Transform -- uid: 9197 - type: CableHV - components: - - pos: 54.5,14.5 - parent: 0 - type: Transform -- uid: 9198 - type: CableHV - components: - - pos: 54.5,13.5 - parent: 0 - type: Transform -- uid: 9199 - type: CableHV - components: - - pos: 54.5,12.5 - parent: 0 - type: Transform -- uid: 9200 - type: CableHV - components: - - pos: 54.5,11.5 - parent: 0 - type: Transform -- uid: 9201 - type: CableHV - components: - - pos: 54.5,10.5 - parent: 0 - type: Transform -- uid: 9202 - type: CableHV - components: - - pos: 54.5,9.5 - parent: 0 - type: Transform -- uid: 9203 - type: CableHV - components: - - pos: 54.5,8.5 - parent: 0 - type: Transform -- uid: 9204 - type: CableHV - components: - - pos: 54.5,7.5 - parent: 0 - type: Transform -- uid: 9205 - type: CableHV - components: - - pos: 54.5,6.5 - parent: 0 - type: Transform -- uid: 9206 - type: CableHV - components: - - pos: 54.5,5.5 - parent: 0 - type: Transform -- uid: 9207 - type: CableHV - components: - - pos: 54.5,4.5 - parent: 0 - type: Transform -- uid: 9208 - type: CableHV - components: - - pos: 54.5,3.5 - parent: 0 - type: Transform -- uid: 9209 - type: CableHV - components: - - pos: 54.5,2.5 - parent: 0 - type: Transform -- uid: 9210 - type: CableHV - components: - - pos: 54.5,1.5 - parent: 0 - type: Transform -- uid: 9211 - type: CableHV - components: - - pos: 54.5,0.5 - parent: 0 - type: Transform -- uid: 9212 - type: CableHV - components: - - pos: 54.5,-0.5 - parent: 0 - type: Transform -- uid: 9213 - type: CableHV - components: - - pos: 53.5,-0.5 - parent: 0 - type: Transform -- uid: 9214 - type: CableHV - components: - - pos: 52.5,-0.5 - parent: 0 - type: Transform -- uid: 9215 - type: CableHV - components: - - pos: 51.5,-0.5 - parent: 0 - type: Transform -- uid: 9216 - type: CableHV - components: - - pos: 50.5,-0.5 - parent: 0 - type: Transform -- uid: 9217 - type: CableHV - components: - - pos: 49.5,-0.5 - parent: 0 - type: Transform -- uid: 9218 - type: CableHV - components: - - pos: 48.5,-0.5 - parent: 0 - type: Transform -- uid: 9219 - type: CableHV - components: - - pos: 47.5,-0.5 - parent: 0 - type: Transform -- uid: 9220 - type: CableHV - components: - - pos: 46.5,-0.5 - parent: 0 - type: Transform -- uid: 9221 - type: CableHV - components: - - pos: 45.5,-0.5 - parent: 0 - type: Transform -- uid: 9222 - type: CableHV - components: - - pos: 44.5,-0.5 - parent: 0 - type: Transform -- uid: 9223 - type: CableHV - components: - - pos: 43.5,-0.5 - parent: 0 - type: Transform -- uid: 9224 - type: CableHV - components: - - pos: 42.5,-0.5 - parent: 0 - type: Transform -- uid: 9225 - type: CableHV - components: - - pos: 41.5,-0.5 - parent: 0 - type: Transform -- uid: 9226 - type: CableHV - components: - - pos: 40.5,-0.5 - parent: 0 - type: Transform -- uid: 9227 - type: CableHV - components: - - pos: 39.5,-0.5 - parent: 0 - type: Transform -- uid: 9228 - type: CableHV - components: - - pos: 38.5,-0.5 - parent: 0 - type: Transform -- uid: 9229 - type: CableHV - components: - - pos: 37.5,-0.5 - parent: 0 - type: Transform -- uid: 9230 - type: CableHV - components: - - pos: 36.5,-0.5 - parent: 0 - type: Transform -- uid: 9231 - type: CableHV - components: - - pos: 35.5,-0.5 - parent: 0 - type: Transform -- uid: 9232 - type: CableHV - components: - - pos: 34.5,-0.5 - parent: 0 - type: Transform -- uid: 9233 - type: CableHV - components: - - pos: 33.5,-0.5 - parent: 0 - type: Transform -- uid: 9234 - type: CableHV - components: - - pos: 32.5,-0.5 - parent: 0 - type: Transform -- uid: 9235 - type: CableHV - components: - - pos: 31.5,-0.5 - parent: 0 - type: Transform -- uid: 9236 - type: CableHV - components: - - pos: 30.5,-0.5 - parent: 0 - type: Transform -- uid: 9237 - type: CableHV - components: - - pos: 29.5,-0.5 - parent: 0 - type: Transform -- uid: 9238 - type: CableHV - components: - - pos: 28.5,-0.5 - parent: 0 - type: Transform -- uid: 9239 - type: CableHV - components: - - pos: 27.5,-0.5 - parent: 0 - type: Transform -- uid: 9240 - type: CableHV - components: - - pos: 26.5,-0.5 - parent: 0 - type: Transform -- uid: 9241 - type: CableHV - components: - - pos: 25.5,-0.5 - parent: 0 - type: Transform -- uid: 9242 - type: Grille - components: - - pos: 37.5,23.5 - parent: 0 - type: Transform -- uid: 9243 - type: Grille - components: - - pos: 39.5,23.5 - parent: 0 - type: Transform -- uid: 9244 - type: TintedWindow - components: - - pos: 37.5,23.5 - parent: 0 - type: Transform -- uid: 9245 - type: TintedWindow - components: - - pos: 39.5,23.5 - parent: 0 - type: Transform -- uid: 9246 - type: ReinforcedWindow - components: - - pos: 22.5,17.5 - parent: 0 - type: Transform -- uid: 9247 - type: ReinforcedWindow - components: - - pos: 22.5,19.5 - parent: 0 - type: Transform -- uid: 9248 - type: Grille - components: - - pos: 22.5,17.5 - parent: 0 - type: Transform -- uid: 9249 - type: Grille - components: - - pos: 22.5,19.5 - parent: 0 - type: Transform -- uid: 9250 - type: MountainRock - components: - - pos: 12.5,11.5 - parent: 0 - type: Transform -- uid: 9251 - type: MountainRock - components: - - pos: 12.5,10.5 - parent: 0 - type: Transform -- uid: 9252 - type: WallSolid - components: - - pos: 12.5,14.5 - parent: 0 - type: Transform -- uid: 9253 - type: MountainRock - components: - - pos: 12.5,13.5 - parent: 0 - type: Transform -- uid: 9254 - type: MountainRock - components: - - pos: 12.5,12.5 - parent: 0 - type: Transform -- uid: 9255 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9256 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9257 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9258 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9259 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9260 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9261 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9262 - type: GasPipeBend - components: - - pos: 9.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9263 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 9.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9264 - type: GasPipeBend - components: - - pos: 16.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9265 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 16.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9266 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9267 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9268 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9269 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9270 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9271 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9272 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9273 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9274 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9275 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9276 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9277 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9278 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9279 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9280 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9281 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9282 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9283 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9284 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9285 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9286 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9287 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9288 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9289 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 16.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9290 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9291 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9292 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9293 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 14.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9294 - type: GasVentPump - components: - - pos: 14.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9295 - type: GasVentPump - components: - - pos: 8.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9296 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9297 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 8.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9298 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 14.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9299 - type: GasPipeBend - components: - - pos: 8.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9300 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 8.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9301 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9302 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9303 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9304 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9305 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9306 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9307 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9308 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9309 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9310 - type: GasPipeStraight - components: - - pos: 8.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9311 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9312 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9313 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9314 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 10.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9315 - type: GasPipeTJunction - components: - - pos: 10.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9316 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9317 - type: GasPipeBend - components: - - pos: 11.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9318 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 11.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9319 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 13.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9320 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9321 - type: GasPipeBend - components: - - pos: 13.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9322 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9323 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9324 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9325 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9326 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9327 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9328 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9329 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 10.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9330 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 13.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9331 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9332 - type: GasVentScrubber - components: - - pos: 13.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9333 - type: WindoorSecurityLocked - components: - - name: cell 1 - type: MetaData - - rot: 3.141592653589793 rad - pos: 28.5,4.5 - parent: 0 - type: Transform -- uid: 9334 - type: WindoorSecurityLocked - components: - - name: cell 2 - type: MetaData - - rot: 3.141592653589793 rad - pos: 31.5,4.5 - parent: 0 - type: Transform -- uid: 9335 - type: WindoorSecurityLocked - components: - - name: cell 3 - type: MetaData - - rot: 3.141592653589793 rad - pos: 34.5,4.5 - parent: 0 - type: Transform -- uid: 9336 - type: WindoorSecurityLocked - components: - - name: Drunk Tank - type: MetaData - - rot: 3.141592653589793 rad - pos: 37.5,4.5 - parent: 0 - type: Transform -- uid: 9337 - type: WardrobePrisonFilled - components: - - pos: 27.5,3.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9338 - type: WardrobePrisonFilled - components: - - pos: 30.5,3.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9339 - type: WardrobePrisonFilled - components: - - pos: 33.5,3.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9340 - type: WardrobePrisonFilled - components: - - pos: 36.5,3.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9341 - type: WardrobePrisonFilled - components: - - pos: 36.5,2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9342 - type: SignPrison - components: - - pos: 41.5,8.5 - parent: 0 - type: Transform -- uid: 9343 - type: SignPrison - components: - - pos: 51.5,8.5 - parent: 0 - type: Transform -- uid: 9344 - type: Grille - components: - - pos: 52.5,6.5 - parent: 0 - type: Transform -- uid: 9345 - type: Bed - components: - - pos: 28.5,1.5 - parent: 0 - type: Transform -- uid: 9346 - type: Bed - components: - - pos: 31.5,1.5 - parent: 0 - type: Transform -- uid: 9347 - type: Bed - components: - - pos: 34.5,1.5 - parent: 0 - type: Transform -- uid: 9348 - type: Bed - components: - - pos: 39.5,3.5 - parent: 0 - type: Transform -- uid: 9349 - type: Bed - components: - - pos: 39.5,1.5 - parent: 0 - type: Transform -- uid: 9350 - type: BedsheetBrown - components: - - pos: 28.5,1.5 - parent: 0 - type: Transform -- uid: 9351 - type: BedsheetBrown - components: - - pos: 31.5,1.5 - parent: 0 - type: Transform -- uid: 9352 - type: BedsheetBrown - components: - - pos: 34.5,1.5 - parent: 0 - type: Transform -- uid: 9353 - type: BedsheetBrown - components: - - pos: 39.5,1.5 - parent: 0 - type: Transform -- uid: 9354 - type: BedsheetBrown - components: - - pos: 39.5,3.5 - parent: 0 - type: Transform -- uid: 9355 - type: Table - components: - - pos: 39.5,2.5 - parent: 0 - type: Transform -- uid: 9356 - type: AirlockBrigGlassLocked - components: - - pos: 23.5,0.5 - parent: 0 - type: Transform -- uid: 9357 - type: AirlockBrigGlassLocked - components: - - pos: 25.5,0.5 - parent: 0 - type: Transform -- uid: 9358 - type: AirlockBrigGlassLocked - components: - - pos: 25.5,4.5 - parent: 0 - type: Transform -- uid: 9359 - type: AirlockBrigGlassLocked - components: - - pos: 23.5,4.5 - parent: 0 - type: Transform -- uid: 9360 - type: AirlockSecurityLocked - components: - - pos: 35.5,8.5 - parent: 0 - type: Transform -- uid: 9361 - type: AirlockArmoryGlassLocked - components: - - pos: 37.5,13.5 - parent: 0 - type: Transform -- uid: 9362 - type: AirlockArmoryGlassLocked - components: - - pos: 30.5,8.5 - parent: 0 - type: Transform -- uid: 9363 - type: AirlockArmoryGlassLocked - components: - - pos: 29.5,15.5 - parent: 0 - type: Transform -- uid: 9364 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: 28.5,8.5 - parent: 0 - type: Transform -- uid: 9365 - type: WindoorArmoryLocked - components: - - pos: 28.5,15.5 - parent: 0 - type: Transform -- uid: 9366 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: 27.5,10.5 - parent: 0 - type: Transform -- uid: 9367 - type: ComputerCrewMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 29.5,10.5 - parent: 0 - type: Transform -- uid: 9368 - type: ComputerStationRecords - components: - - rot: -1.5707963267948966 rad - pos: 31.5,11.5 - parent: 0 - type: Transform -- uid: 9369 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: 31.5,10.5 - parent: 0 - type: Transform -- uid: 9370 - type: LockerWardenFilled - components: - - pos: 27.5,13.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9371 - type: SpawnPointWarden - components: - - pos: 29.5,12.5 - parent: 0 - type: Transform -- uid: 9372 - type: DogBed - components: - - pos: 27.5,12.5 - parent: 0 - type: Transform -- uid: 9373 - type: SpawnMobMcGriff - components: - - pos: 27.5,12.5 - parent: 0 - type: Transform -- uid: 9374 - type: ComputerCriminalRecords - components: - - rot: 1.5707963267948966 rad - pos: 27.5,14.5 - parent: 0 - type: Transform -- uid: 9375 - type: filingCabinetDrawerRandom - components: - - pos: 30.5,14.5 - parent: 0 - type: Transform -- uid: 9376 - type: Table - components: - - pos: 31.5,14.5 - parent: 0 - type: Transform -- uid: 9377 - type: Rack - components: - - pos: 31.5,13.5 - parent: 0 - type: Transform -- uid: 9378 - type: FaxMachineBase - components: - - pos: 31.5,14.5 - parent: 0 - type: Transform - - name: Warden's Office - type: FaxMachine -- uid: 9379 - type: PaperBin10 - components: - - pos: 31.5,12.5 - parent: 0 - type: Transform -- uid: 9380 - type: Pen - components: - - pos: 31.499893,12.484022 - parent: 0 - type: Transform -- uid: 9381 - type: ToolboxMechanicalFilled - components: - - pos: 31.468643,13.702772 - parent: 0 - type: Transform -- uid: 9382 - type: ToolboxEmergencyFilled - components: - - pos: 31.578018,13.515272 - parent: 0 - type: Transform -- uid: 9383 - type: Wirecutter - components: - - pos: 31.515518,13.593397 - parent: 0 - type: Transform -- uid: 9384 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 28.5,14.5 - parent: 0 - type: Transform -- uid: 9385 - type: Windoor - components: - - pos: 28.5,8.5 - parent: 0 - type: Transform -- uid: 9386 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: 28.5,15.5 - parent: 0 - type: Transform -- uid: 9387 - type: WeaponCapacitorRecharger - components: - - pos: 27.5,9.5 - parent: 0 - type: Transform -- uid: 9388 - type: ChairOfficeDark - components: - - pos: 28.5,9.5 - parent: 0 - type: Transform -- uid: 9389 - type: ShuttersNormalOpen - components: - - pos: 27.5,0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9402 - type: SignalReceiver -- uid: 9390 - type: ShuttersNormalOpen - components: - - pos: 28.5,0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9402 - type: SignalReceiver -- uid: 9391 - type: ShuttersNormalOpen - components: - - pos: 30.5,0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9402 - type: SignalReceiver -- uid: 9392 - type: ShuttersNormalOpen - components: - - pos: 31.5,0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9402 - type: SignalReceiver -- uid: 9393 - type: ShuttersNormalOpen - components: - - pos: 33.5,0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9402 - type: SignalReceiver -- uid: 9394 - type: ShuttersNormalOpen - components: - - pos: 34.5,0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9402 - type: SignalReceiver -- uid: 9395 - type: ShuttersNormalOpen - components: - - pos: 36.5,0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9402 - type: SignalReceiver -- uid: 9396 - type: ShuttersNormalOpen - components: - - pos: 37.5,0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9402 - type: SignalReceiver -- uid: 9397 - type: ShuttersNormalOpen - components: - - pos: 38.5,0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9402 - type: SignalReceiver -- uid: 9398 - type: ShuttersNormalOpen - components: - - pos: 39.5,0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9402 - type: SignalReceiver -- uid: 9399 - type: Table - components: - - pos: 29.5,9.5 - parent: 0 - type: Transform -- uid: 9400 - type: BlastDoorOpen - components: - - pos: 52.5,20.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8644 - type: SignalReceiver -- uid: 9401 - type: BlastDoorOpen - components: - - pos: 52.5,21.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8644 - type: SignalReceiver -- uid: 9402 - type: SignalButton - components: - - name: cellblock shutters - type: MetaData - - pos: 29.5,9.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9389 - - port: Toggle - uid: 9390 - - port: Toggle - uid: 9391 - - port: Toggle - uid: 9392 - - port: Toggle - uid: 9393 - - port: Toggle - uid: 9394 - - port: Toggle - uid: 9395 - - port: Toggle - uid: 9396 - - port: Toggle - uid: 9397 - - port: Toggle - uid: 9398 - type: SignalTransmitter -- uid: 9403 - type: BlastDoorOpen - components: - - pos: 52.5,22.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8644 - type: SignalReceiver -- uid: 9404 - type: BlastDoorOpen - components: - - pos: 52.5,23.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8644 - type: SignalReceiver -- uid: 9405 - type: BlastDoorOpen - components: - - pos: 52.5,24.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8644 - type: SignalReceiver -- uid: 9406 - type: RemoteSignaller - components: - - name: Armory Blast Doors - type: MetaData - - pos: 29.255602,9.773841 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 8641 - - port: Toggle - uid: 8642 - type: SignalTransmitter -- uid: 9407 - type: AirlockBrigGlassLocked - components: - - pos: 25.5,15.5 - parent: 0 - type: Transform -- uid: 9408 - type: AirlockBrigGlassLocked - components: - - pos: 23.5,15.5 - parent: 0 - type: Transform -- uid: 9409 - type: AirlockBrigGlassLocked - components: - - pos: 23.5,28.5 - parent: 0 - type: Transform -- uid: 9410 - type: AirlockBrigGlassLocked - components: - - pos: 23.5,31.5 - parent: 0 - type: Transform -- uid: 9411 - type: AirlockBrigGlassLocked - components: - - pos: 25.5,31.5 - parent: 0 - type: Transform -- uid: 9412 - type: AirlockBrigGlassLocked - components: - - pos: 25.5,28.5 - parent: 0 - type: Transform -- uid: 9413 - type: AirlockSecurityGlassLocked - components: - - name: Evidence Room - type: MetaData - - pos: 22.5,18.5 - parent: 0 - type: Transform -- uid: 9414 - type: AirlockSecurityGlassLocked - components: - - pos: 26.5,18.5 - parent: 0 - type: Transform -- uid: 9415 - type: AirlockSecurityGlassLocked - components: - - pos: 26.5,25.5 - parent: 0 - type: Transform -- uid: 9416 - type: AirlockSecurityLocked - components: - - name: Observation - type: MetaData - - pos: 22.5,22.5 - parent: 0 - type: Transform -- uid: 9417 - type: AirlockBrigLocked - components: - - name: Interrogation - type: MetaData - - pos: 18.5,24.5 - parent: 0 - type: Transform -- uid: 9418 - type: Table - components: - - pos: 36.5,10.5 - parent: 0 - type: Transform -- uid: 9419 - type: WeaponCapacitorRecharger - components: - - pos: 36.5,10.5 - parent: 0 - type: Transform -- uid: 9420 - type: WallWeaponCapacitorRecharger - components: - - pos: 37.5,8.5 - parent: 0 - type: Transform -- uid: 9421 - type: PosterLegitNanotrasenLogo - components: - - pos: 33.5,8.5 - parent: 0 - type: Transform -- uid: 9422 - type: AirlockSecurityGlassLocked - components: - - pos: 19.5,4.5 - parent: 0 - type: Transform -- uid: 9423 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 22.5,2.5 - parent: 0 - type: Transform -- uid: 9424 - type: AirlockMaintSecLocked - components: - - pos: 18.5,6.5 - parent: 0 - type: Transform -- uid: 9425 - type: VendingMachineSecDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 33.5,12.5 - parent: 0 - type: Transform -- uid: 9426 - type: VendingMachineSec - components: - - flags: SessionSpecific - type: MetaData - - pos: 34.5,12.5 - parent: 0 - type: Transform -- uid: 9427 - type: LockerSecurityFilled - components: - - pos: 33.5,11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9428 - type: LockerSecurityFilled - components: - - pos: 34.5,11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9429 - type: LockerSecurityFilled - components: - - pos: 34.5,9.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9430 - type: LockerSecurityFilled - components: - - pos: 33.5,9.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9431 - type: LockerSecurityFilled - components: - - pos: 33.5,14.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9432 - type: LockerSecurityFilled - components: - - pos: 34.5,14.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9433 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 39.5,14.5 - parent: 0 - type: Transform -- uid: 9434 - type: Rack - components: - - pos: 39.5,12.5 - parent: 0 - type: Transform -- uid: 9435 - type: Rack - components: - - pos: 38.5,12.5 - parent: 0 - type: Transform -- uid: 9436 - type: ClothingOuterHardsuitSecurity - components: - - pos: 39.420284,12.540021 - parent: 0 - type: Transform -- uid: 9437 - type: ClothingOuterHardsuitSecurity - components: - - pos: 39.576534,12.461896 - parent: 0 - type: Transform -- uid: 9438 - type: ClothingOuterHardsuitSecurity - components: - - pos: 38.40466,12.602521 - parent: 0 - type: Transform -- uid: 9439 - type: ClothingOuterHardsuitSecurity - components: - - pos: 38.607784,12.508771 - parent: 0 - type: Transform -- uid: 9440 - type: ClosetBombFilled - components: - - pos: 36.5,11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9441 - type: ClosetL3SecurityFilled - components: - - pos: 36.5,12.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9442 - type: BannerSecurity - components: - - pos: 36.5,14.5 - parent: 0 - type: Transform -- uid: 9443 - type: PottedPlant12 - components: - - pos: 36.5,9.5 - parent: 0 - type: Transform -- uid: 9444 - type: TableReinforced - components: - - pos: 38.5,14.5 - parent: 0 - type: Transform -- uid: 9445 - type: ClothingMaskGasSecurity - components: - - pos: 38.406982,14.572508 - parent: 0 - type: Transform -- uid: 9446 - type: ClothingMaskGasSecurity - components: - - pos: 38.610107,14.463133 - parent: 0 - type: Transform -- uid: 9447 - type: WeaponCapacitorRecharger - components: - - pos: 22.5,3.5 - parent: 0 - type: Transform -- uid: 9448 - type: ComputerSurveillanceCameraMonitor - components: - - pos: 21.5,3.5 - parent: 0 - type: Transform -- uid: 9449 - type: PaperBin - components: - - pos: 22.5,1.5 - parent: 0 - type: Transform -- uid: 9450 - type: ComputerCrewMonitoring - components: - - pos: 20.5,3.5 - parent: 0 - type: Transform -- uid: 9451 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 21.5,2.5 - parent: 0 - type: Transform -- uid: 9452 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 19.5,1.5 - parent: 0 - type: Transform -- uid: 9453 - type: LockerSecurityFilled - components: - - pos: 20.5,1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9454 - type: filingCabinetDrawerRandom - components: - - pos: 21.5,1.5 - parent: 0 - type: Transform -- uid: 9455 - type: WindoorBrigLocked - components: - - name: Misc - type: MetaData - - pos: 38.5,8.5 - parent: 0 - type: Transform -- uid: 9456 - type: FirelockGlass - components: - - pos: 38.5,8.5 - parent: 0 - type: Transform -- uid: 9457 - type: Chair - components: - - pos: 38.5,10.5 - parent: 0 - type: Transform -- uid: 9458 - type: Chair - components: - - pos: 39.5,10.5 - parent: 0 - type: Transform -- uid: 9459 - type: AirlockBrigGlassLocked - components: - - pos: 40.5,5.5 - parent: 0 - type: Transform -- uid: 9460 - type: AirlockBrigGlassLocked - components: - - pos: 40.5,7.5 - parent: 0 - type: Transform -- uid: 9461 - type: WindowReinforcedDirectional - components: - - pos: 41.5,4.5 - parent: 0 - type: Transform -- uid: 9462 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 41.5,4.5 - parent: 0 - type: Transform -- uid: 9463 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 41.5,4.5 - parent: 0 - type: Transform -- uid: 9464 - type: WindowReinforcedDirectional - components: - - pos: 43.5,4.5 - parent: 0 - type: Transform -- uid: 9465 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 43.5,4.5 - parent: 0 - type: Transform -- uid: 9466 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 43.5,4.5 - parent: 0 - type: Transform -- uid: 9467 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 49.5,7.5 - parent: 0 - type: Transform -- uid: 9468 - type: WindowReinforcedDirectional - components: - - pos: 49.5,7.5 - parent: 0 - type: Transform -- uid: 9469 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 50.5,2.5 - parent: 0 - type: Transform -- uid: 9470 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 51.5,2.5 - parent: 0 - type: Transform -- uid: 9471 - type: PortableFlasher - components: - - pos: 14.5,9.5 - parent: 0 - type: Transform -- uid: 9472 - type: PortableFlasher - components: - - pos: 14.5,10.5 - parent: 0 - type: Transform -- uid: 9473 - type: PortableFlasher - components: - - pos: 14.5,11.5 - parent: 0 - type: Transform -- uid: 9474 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 14.5,9.5 - parent: 0 - type: Transform -- uid: 9475 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 14.5,10.5 - parent: 0 - type: Transform -- uid: 9476 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 0 - type: Transform -- uid: 9477 - type: ReinforcedWindow - components: - - pos: -10.5,-30.5 - parent: 0 - type: Transform -- uid: 9478 - type: CableHV - components: - - pos: 16.5,-5.5 - parent: 0 - type: Transform -- uid: 9479 - type: CableHV - components: - - pos: 16.5,-4.5 - parent: 0 - type: Transform -- uid: 9480 - type: CableHV - components: - - pos: 16.5,-3.5 - parent: 0 - type: Transform -- uid: 9481 - type: CableHV - components: - - pos: 16.5,-2.5 - parent: 0 - type: Transform -- uid: 9482 - type: CableHV - components: - - pos: 16.5,-1.5 - parent: 0 - type: Transform -- uid: 9483 - type: CableHV - components: - - pos: 16.5,-0.5 - parent: 0 - type: Transform -- uid: 9484 - type: CableHV - components: - - pos: 16.5,0.5 - parent: 0 - type: Transform -- uid: 9485 - type: CableHV - components: - - pos: 16.5,1.5 - parent: 0 - type: Transform -- uid: 9486 - type: CableHV - components: - - pos: 16.5,2.5 - parent: 0 - type: Transform -- uid: 9487 - type: CableHV - components: - - pos: 16.5,3.5 - parent: 0 - type: Transform -- uid: 9488 - type: CableHV - components: - - pos: 16.5,4.5 - parent: 0 - type: Transform -- uid: 9489 - type: CableHV - components: - - pos: 16.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9490 - type: CableHV - components: - - pos: 16.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9491 - type: CableHV - components: - - pos: 17.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9492 - type: CableHV - components: - - pos: 18.5,6.5 - parent: 0 - type: Transform -- uid: 9493 - type: CableHV - components: - - pos: 19.5,6.5 - parent: 0 - type: Transform -- uid: 9494 - type: CableHV - components: - - pos: 20.5,6.5 - parent: 0 - type: Transform -- uid: 9495 - type: CableHV - components: - - pos: 21.5,6.5 - parent: 0 - type: Transform -- uid: 9496 - type: CableHV - components: - - pos: 22.5,6.5 - parent: 0 - type: Transform -- uid: 9497 - type: CableHV - components: - - pos: 23.5,6.5 - parent: 0 - type: Transform -- uid: 9498 - type: CableHV - components: - - pos: 16.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9499 - type: CableHV - components: - - pos: 15.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9500 - type: CableHV - components: - - pos: 14.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9501 - type: CableHV - components: - - pos: 13.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9502 - type: CableHV - components: - - pos: 12.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9503 - type: CableHV - components: - - pos: 11.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9504 - type: CableHV - components: - - pos: 10.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9505 - type: CableHV - components: - - pos: 9.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9506 - type: CableHV - components: - - pos: 9.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9507 - type: CableHV - components: - - pos: 9.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9508 - type: CableHV - components: - - pos: 9.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9509 - type: CableHV - components: - - pos: 9.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9510 - type: CableHV - components: - - pos: 9.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9511 - type: CableHV - components: - - pos: 9.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9512 - type: CableHV - components: - - pos: 9.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9513 - type: AirlockEngineeringLocked - components: - - pos: 5.5,17.5 - parent: 0 - type: Transform -- uid: 9514 - type: RandomPosterLegit - components: - - pos: 5.5,20.5 - parent: 0 - type: Transform -- uid: 9515 - type: LockerEvidence - components: - - pos: 21.5,19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9516 - type: LockerEvidence - components: - - pos: 20.5,19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9517 - type: LockerEvidence - components: - - pos: 19.5,19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9518 - type: LockerEvidence - components: - - pos: 18.5,19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9519 - type: LockerEvidence - components: - - pos: 21.5,17.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9520 - type: LockerEvidence - components: - - pos: 20.5,17.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9521 - type: LockerEvidence - components: - - pos: 19.5,17.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9522 - type: LockerEvidence - components: - - pos: 18.5,17.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9523 - type: Table - components: - - pos: 17.5,17.5 - parent: 0 - type: Transform -- uid: 9524 - type: Table - components: - - pos: 17.5,19.5 - parent: 0 - type: Transform -- uid: 9525 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9526 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9527 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9528 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9529 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9530 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9531 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9532 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9533 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9534 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 19.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9535 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9536 - type: Poweredlight - components: - - pos: 20.5,7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9537 - type: Poweredlight - components: - - pos: 26.5,7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9538 - type: Poweredlight - components: - - pos: 37.5,7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9539 - type: Poweredlight - components: - - pos: 32.5,7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9540 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 31.5,9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9541 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9542 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9543 - type: TableWood - components: - - pos: 35.5,24.5 - parent: 0 - type: Transform -- uid: 9544 - type: Bed - components: - - pos: 34.5,24.5 - parent: 0 - type: Transform -- uid: 9545 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-1.5 - parent: 0 - type: Transform -- uid: 9546 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-1.5 - parent: 0 - type: Transform -- uid: 9547 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-1.5 - parent: 0 - type: Transform -- uid: 9548 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-1.5 - parent: 0 - type: Transform -- uid: 9549 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-1.5 - parent: 0 - type: Transform -- uid: 9550 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-1.5 - parent: 0 - type: Transform -- uid: 9551 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-1.5 - parent: 0 - type: Transform -- uid: 9552 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-1.5 - parent: 0 - type: Transform -- uid: 9553 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-1.5 - parent: 0 - type: Transform -- uid: 9554 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-1.5 - parent: 0 - type: Transform -- uid: 9555 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-1.5 - parent: 0 - type: Transform -- uid: 9556 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-1.5 - parent: 0 - type: Transform -- uid: 9557 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-1.5 - parent: 0 - type: Transform -- uid: 9558 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-1.5 - parent: 0 - type: Transform -- uid: 9559 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-1.5 - parent: 0 - type: Transform -- uid: 9560 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-1.5 - parent: 0 - type: Transform -- uid: 9561 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-1.5 - parent: 0 - type: Transform -- uid: 9562 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-3.5 - parent: 0 - type: Transform -- uid: 9563 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-3.5 - parent: 0 - type: Transform -- uid: 9564 - type: WallSolid - components: - - pos: 22.5,-3.5 - parent: 0 - type: Transform -- uid: 9565 - type: WallReinforced - components: - - pos: 26.5,-3.5 - parent: 0 - type: Transform -- uid: 9566 - type: WallReinforced - components: - - pos: 26.5,-4.5 - parent: 0 - type: Transform -- uid: 9567 - type: WallReinforced - components: - - pos: 27.5,-3.5 - parent: 0 - type: Transform -- uid: 9568 - type: WallReinforced - components: - - pos: 29.5,-3.5 - parent: 0 - type: Transform -- uid: 9569 - type: WallReinforced - components: - - pos: 30.5,-3.5 - parent: 0 - type: Transform -- uid: 9570 - type: WallReinforced - components: - - pos: 31.5,-3.5 - parent: 0 - type: Transform -- uid: 9571 - type: WallReinforced - components: - - pos: 31.5,-4.5 - parent: 0 - type: Transform -- uid: 9572 - type: WallReinforced - components: - - pos: 26.5,-6.5 - parent: 0 - type: Transform -- uid: 9573 - type: WallReinforced - components: - - pos: 26.5,-7.5 - parent: 0 - type: Transform -- uid: 9574 - type: WallReinforced - components: - - pos: 26.5,-8.5 - parent: 0 - type: Transform -- uid: 9575 - type: WallReinforced - components: - - pos: 26.5,-10.5 - parent: 0 - type: Transform -- uid: 9576 - type: WallReinforced - components: - - pos: 26.5,-11.5 - parent: 0 - type: Transform -- uid: 9577 - type: WallReinforced - components: - - pos: 26.5,-12.5 - parent: 0 - type: Transform -- uid: 9578 - type: WallReinforced - components: - - pos: 26.5,-13.5 - parent: 0 - type: Transform -- uid: 9579 - type: WallReinforced - components: - - pos: 26.5,-14.5 - parent: 0 - type: Transform -- uid: 9580 - type: WallReinforced - components: - - pos: 28.5,-14.5 - parent: 0 - type: Transform -- uid: 9581 - type: WallReinforced - components: - - pos: 30.5,-14.5 - parent: 0 - type: Transform -- uid: 9582 - type: WallReinforced - components: - - pos: 30.5,-13.5 - parent: 0 - type: Transform -- uid: 9583 - type: WallReinforced - components: - - pos: 30.5,-12.5 - parent: 0 - type: Transform -- uid: 9584 - type: WallReinforced - components: - - pos: 30.5,-11.5 - parent: 0 - type: Transform -- uid: 9585 - type: WallReinforced - components: - - pos: 31.5,-11.5 - parent: 0 - type: Transform -- uid: 9586 - type: WallReinforced - components: - - pos: 31.5,-10.5 - parent: 0 - type: Transform -- uid: 9587 - type: WallReinforced - components: - - pos: 31.5,-9.5 - parent: 0 - type: Transform -- uid: 9588 - type: WallReinforced - components: - - pos: 31.5,-8.5 - parent: 0 - type: Transform -- uid: 9589 - type: WallReinforced - components: - - pos: 31.5,-7.5 - parent: 0 - type: Transform -- uid: 9590 - type: WallReinforced - components: - - pos: 31.5,-6.5 - parent: 0 - type: Transform -- uid: 9591 - type: WallReinforced - components: - - pos: 31.5,-5.5 - parent: 0 - type: Transform -- uid: 9592 - type: WallSolid - components: - - pos: 22.5,-7.5 - parent: 0 - type: Transform -- uid: 9593 - type: WallSolid - components: - - pos: 22.5,-12.5 - parent: 0 - type: Transform -- uid: 9594 - type: WallSolid - components: - - pos: 22.5,-15.5 - parent: 0 - type: Transform -- uid: 9595 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-17.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11854 - type: SignalReceiver -- uid: 9596 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-16.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11854 - type: SignalReceiver -- uid: 9597 - type: WallSolid - components: - - pos: 22.5,-18.5 - parent: 0 - type: Transform -- uid: 9598 - type: WallSolid - components: - - pos: 21.5,-18.5 - parent: 0 - type: Transform -- uid: 9599 - type: WallSolid - components: - - pos: 21.5,-19.5 - parent: 0 - type: Transform -- uid: 9600 - type: WallSolid - components: - - pos: 21.5,-20.5 - parent: 0 - type: Transform -- uid: 9601 - type: WallSolid - components: - - pos: 12.5,-28.5 - parent: 0 - type: Transform -- uid: 9602 - type: WallSolid - components: - - pos: 11.5,-28.5 - parent: 0 - type: Transform -- uid: 9603 - type: WallSolid - components: - - pos: 16.5,-28.5 - parent: 0 - type: Transform -- uid: 9604 - type: WallSolid - components: - - pos: 21.5,-22.5 - parent: 0 - type: Transform -- uid: 9605 - type: WallSolid - components: - - pos: 32.5,-4.5 - parent: 0 - type: Transform -- uid: 9606 - type: WallSolid - components: - - pos: 34.5,-4.5 - parent: 0 - type: Transform -- uid: 9607 - type: WallSolid - components: - - pos: 35.5,-4.5 - parent: 0 - type: Transform -- uid: 9608 - type: WallSolid - components: - - pos: 35.5,-3.5 - parent: 0 - type: Transform -- uid: 9609 - type: WallSolid - components: - - pos: 36.5,-3.5 - parent: 0 - type: Transform -- uid: 9610 - type: WallSolid - components: - - pos: 37.5,-3.5 - parent: 0 - type: Transform -- uid: 9611 - type: WallSolid - components: - - pos: 38.5,-3.5 - parent: 0 - type: Transform -- uid: 9612 - type: WallSolid - components: - - pos: 39.5,-3.5 - parent: 0 - type: Transform -- uid: 9613 - type: WallSolid - components: - - pos: 39.5,-4.5 - parent: 0 - type: Transform -- uid: 9614 - type: WallReinforced - components: - - pos: 40.5,-3.5 - parent: 0 - type: Transform -- uid: 9615 - type: WallSolid - components: - - pos: 31.5,-13.5 - parent: 0 - type: Transform -- uid: 9616 - type: WallSolid - components: - - pos: 33.5,-13.5 - parent: 0 - type: Transform -- uid: 9617 - type: WallSolid - components: - - pos: 34.5,-13.5 - parent: 0 - type: Transform -- uid: 9618 - type: WallReinforced - components: - - pos: 35.5,-11.5 - parent: 0 - type: Transform -- uid: 9619 - type: WallReinforced - components: - - pos: 35.5,-12.5 - parent: 0 - type: Transform -- uid: 9620 - type: WallReinforced - components: - - pos: 35.5,-10.5 - parent: 0 - type: Transform -- uid: 9621 - type: WallReinforced - components: - - pos: 36.5,-10.5 - parent: 0 - type: Transform -- uid: 9622 - type: WallReinforced - components: - - pos: 38.5,-10.5 - parent: 0 - type: Transform -- uid: 9623 - type: PortableScrubber - components: - - pos: 64.5,-7.5 - parent: 0 - type: Transform -- uid: 9624 - type: AirCanister - components: - - pos: 65.5,-7.5 - parent: 0 - type: Transform -- uid: 9625 - type: AirCanister - components: - - pos: 66.5,-7.5 - parent: 0 - type: Transform -- uid: 9626 - type: PowerCellRecharger - components: - - pos: 68.5,-7.5 - parent: 0 - type: Transform -- uid: 9627 - type: Table - components: - - pos: 68.5,-7.5 - parent: 0 - type: Transform -- uid: 9628 - type: WallReinforced - components: - - pos: 39.5,-10.5 - parent: 0 - type: Transform -- uid: 9629 - type: WallSolid - components: - - pos: 39.5,-5.5 - parent: 0 - type: Transform -- uid: 9630 - type: WallSolid - components: - - pos: 39.5,-6.5 - parent: 0 - type: Transform -- uid: 9631 - type: WallSolid - components: - - pos: 39.5,-7.5 - parent: 0 - type: Transform -- uid: 9632 - type: WallSolid - components: - - pos: 39.5,-8.5 - parent: 0 - type: Transform -- uid: 9633 - type: WallSolid - components: - - pos: 39.5,-9.5 - parent: 0 - type: Transform -- uid: 9634 - type: WallReinforced - components: - - pos: 38.5,-13.5 - parent: 0 - type: Transform -- uid: 9635 - type: WallReinforced - components: - - pos: 39.5,-13.5 - parent: 0 - type: Transform -- uid: 9636 - type: WallReinforced - components: - - pos: 39.5,-12.5 - parent: 0 - type: Transform -- uid: 9637 - type: WallReinforced - components: - - pos: 39.5,-11.5 - parent: 0 - type: Transform -- uid: 9638 - type: WallSolid - components: - - pos: 39.5,-14.5 - parent: 0 - type: Transform -- uid: 9639 - type: SpawnMobSlothPaperwork - components: - - pos: -17.5,52.5 - parent: 0 - type: Transform -- uid: 9640 - type: IntercomCommand - components: - - pos: 29.5,-7.5 - parent: 0 - type: Transform -- uid: 9641 - type: WindoorCommandLocked - components: - - pos: 27.5,-5.5 - parent: 0 - type: Transform -- uid: 9642 - type: DrinkGlass - components: - - pos: 28.717773,-7.2277536 - parent: 0 - type: Transform -- uid: 9643 - type: DrinkWhiskeyBottleFull - components: - - pos: 28.436523,-6.9777536 - parent: 0 - type: Transform -- uid: 9644 - type: SpawnPointDetective - components: - - pos: -22.5,41.5 - parent: 0 - type: Transform -- uid: 9645 - type: Lighter - components: - - pos: -23.749266,41.589214 - parent: 0 - type: Transform -- uid: 9646 - type: Bed - components: - - pos: 42.5,1.5 - parent: 0 - type: Transform -- uid: 9647 - type: BedsheetMedical - components: - - pos: 42.5,1.5 - parent: 0 - type: Transform -- uid: 9648 - type: ComputerMedicalRecords - components: - - rot: 1.5707963267948966 rad - pos: 41.5,3.5 - parent: 0 - type: Transform -- uid: 9649 - type: ComputerCrewMonitoring - components: - - pos: 46.5,3.5 - parent: 0 - type: Transform -- uid: 9650 - type: Table - components: - - pos: 43.5,1.5 - parent: 0 - type: Transform -- uid: 9651 - type: Bed - components: - - pos: 44.5,1.5 - parent: 0 - type: Transform -- uid: 9652 - type: Table - components: - - pos: 45.5,1.5 - parent: 0 - type: Transform -- uid: 9653 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 46.5,1.5 - parent: 0 - type: Transform -- uid: 9654 - type: LockerMedicineFilled - components: - - pos: 43.5,3.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9655 - type: WallSolid - components: - - pos: -3.5,-21.5 - parent: 0 - type: Transform -- uid: 9656 - type: WallSolid - components: - - pos: -3.5,-19.5 - parent: 0 - type: Transform -- uid: 9657 - type: WallSolid - components: - - pos: -3.5,-18.5 - parent: 0 - type: Transform -- uid: 9658 - type: WallSolid - components: - - pos: 21.5,-23.5 - parent: 0 - type: Transform -- uid: 9659 - type: WallSolid - components: - - pos: 22.5,-23.5 - parent: 0 - type: Transform -- uid: 9660 - type: WallSolid - components: - - pos: 22.5,-24.5 - parent: 0 - type: Transform -- uid: 9661 - type: WallSolid - components: - - pos: 23.5,-24.5 - parent: 0 - type: Transform -- uid: 9662 - type: WallSolid - components: - - pos: 25.5,-24.5 - parent: 0 - type: Transform -- uid: 9663 - type: WallSolid - components: - - pos: 22.5,-25.5 - parent: 0 - type: Transform -- uid: 9664 - type: WallSolid - components: - - pos: 22.5,-26.5 - parent: 0 - type: Transform -- uid: 9665 - type: WallSolid - components: - - pos: 22.5,-27.5 - parent: 0 - type: Transform -- uid: 9666 - type: WallSolid - components: - - pos: 22.5,-28.5 - parent: 0 - type: Transform -- uid: 9667 - type: WallSolid - components: - - pos: 21.5,-28.5 - parent: 0 - type: Transform -- uid: 9668 - type: WallSolid - components: - - pos: 17.5,-28.5 - parent: 0 - type: Transform -- uid: 9669 - type: WallSolid - components: - - pos: 17.5,-25.5 - parent: 0 - type: Transform -- uid: 9670 - type: CableHV - components: - - pos: 22.5,-21.5 - parent: 0 - type: Transform -- uid: 9671 - type: CableHV - components: - - pos: 23.5,-21.5 - parent: 0 - type: Transform -- uid: 9672 - type: WallSolid - components: - - pos: 18.5,-23.5 - parent: 0 - type: Transform -- uid: 9673 - type: WallSolid - components: - - pos: 19.5,-23.5 - parent: 0 - type: Transform -- uid: 9674 - type: SubstationBasic - components: - - name: East Cargo Substation - type: MetaData - - pos: 19.5,-19.5 - parent: 0 - type: Transform -- uid: 9675 - type: ReinforcedWindow - components: - - pos: 16.5,-27.5 - parent: 0 - type: Transform -- uid: 9676 - type: Grille - components: - - pos: 16.5,-27.5 - parent: 0 - type: Transform -- uid: 9677 - type: WallSolid - components: - - pos: 15.5,-28.5 - parent: 0 - type: Transform -- uid: 9678 - type: WallSolid - components: - - pos: 14.5,-28.5 - parent: 0 - type: Transform -- uid: 9679 - type: ReinforcedWindow - components: - - pos: 13.5,-33.5 - parent: 0 - type: Transform -- uid: 9680 - type: WallReinforced - components: - - pos: 14.5,-33.5 - parent: 0 - type: Transform -- uid: 9681 - type: WallReinforced - components: - - pos: 15.5,-33.5 - parent: 0 - type: Transform -- uid: 9682 - type: WallReinforced - components: - - pos: 12.5,-33.5 - parent: 0 - type: Transform -- uid: 9683 - type: WallReinforced - components: - - pos: 11.5,-33.5 - parent: 0 - type: Transform -- uid: 9684 - type: WallReinforced - components: - - pos: 17.5,-33.5 - parent: 0 - type: Transform -- uid: 9685 - type: WallReinforced - components: - - pos: 18.5,-33.5 - parent: 0 - type: Transform -- uid: 9686 - type: WallReinforced - components: - - pos: 19.5,-33.5 - parent: 0 - type: Transform -- uid: 9687 - type: ReinforcedWindow - components: - - pos: 20.5,-33.5 - parent: 0 - type: Transform -- uid: 9688 - type: WallReinforced - components: - - pos: 21.5,-33.5 - parent: 0 - type: Transform -- uid: 9689 - type: WallReinforced - components: - - pos: 15.5,-36.5 - parent: 0 - type: Transform -- uid: 9690 - type: WallReinforced - components: - - pos: 18.5,-36.5 - parent: 0 - type: Transform -- uid: 9691 - type: ReinforcedWindow - components: - - pos: 15.5,-35.5 - parent: 0 - type: Transform -- uid: 9692 - type: ReinforcedWindow - components: - - pos: 15.5,-34.5 - parent: 0 - type: Transform -- uid: 9693 - type: ReinforcedWindow - components: - - pos: 18.5,-35.5 - parent: 0 - type: Transform -- uid: 9694 - type: ReinforcedWindow - components: - - pos: 18.5,-34.5 - parent: 0 - type: Transform -- uid: 9695 - type: ReinforcedWindow - components: - - pos: 17.5,-36.5 - parent: 0 - type: Transform -- uid: 9696 - type: ReinforcedWindow - components: - - pos: 8.5,-39.5 - parent: 0 - type: Transform -- uid: 9697 - type: ReinforcedWindow - components: - - pos: 7.5,-39.5 - parent: 0 - type: Transform -- uid: 9698 - type: WallReinforced - components: - - pos: 11.5,-34.5 - parent: 0 - type: Transform -- uid: 9699 - type: ReinforcedWindow - components: - - pos: 3.5,-33.5 - parent: 0 - type: Transform -- uid: 9700 - type: ReinforcedWindow - components: - - pos: 2.5,-39.5 - parent: 0 - type: Transform -- uid: 9701 - type: WallReinforced - components: - - pos: 11.5,-39.5 - parent: 0 - type: Transform -- uid: 9702 - type: ReinforcedWindow - components: - - pos: 9.5,-39.5 - parent: 0 - type: Transform -- uid: 9703 - type: WallReinforced - components: - - pos: 5.5,-39.5 - parent: 0 - type: Transform -- uid: 9704 - type: WallReinforced - components: - - pos: 1.5,-39.5 - parent: 0 - type: Transform -- uid: 9705 - type: WallReinforced - components: - - pos: 1.5,-33.5 - parent: 0 - type: Transform -- uid: 9706 - type: ReinforcedWindow - components: - - pos: 6.5,-39.5 - parent: 0 - type: Transform -- uid: 9707 - type: WallReinforced - components: - - pos: 10.5,-39.5 - parent: 0 - type: Transform -- uid: 9708 - type: WallReinforced - components: - - pos: 11.5,-38.5 - parent: 0 - type: Transform -- uid: 9709 - type: ReinforcedWindow - components: - - pos: 11.5,-37.5 - parent: 0 - type: Transform -- uid: 9710 - type: ReinforcedWindow - components: - - pos: 2.5,-33.5 - parent: 0 - type: Transform -- uid: 9711 - type: ReinforcedWindow - components: - - pos: 3.5,-39.5 - parent: 0 - type: Transform -- uid: 9712 - type: ReinforcedWindow - components: - - pos: 11.5,-36.5 - parent: 0 - type: Transform -- uid: 9713 - type: ReinforcedWindow - components: - - pos: 11.5,-35.5 - parent: 0 - type: Transform -- uid: 9714 - type: WallReinforced - components: - - pos: 4.5,-33.5 - parent: 0 - type: Transform -- uid: 9715 - type: WallReinforced - components: - - pos: 4.5,-29.5 - parent: 0 - type: Transform -- uid: 9716 - type: WallReinforced - components: - - pos: 4.5,-39.5 - parent: 0 - type: Transform -- uid: 9717 - type: WallReinforced - components: - - pos: 4.5,-30.5 - parent: 0 - type: Transform -- uid: 9718 - type: WallReinforced - components: - - pos: 4.5,-32.5 - parent: 0 - type: Transform -- uid: 9719 - type: WallReinforced - components: - - pos: 4.5,-31.5 - parent: 0 - type: Transform -- uid: 9720 - type: WallReinforced - components: - - pos: 4.5,-36.5 - parent: 0 - type: Transform -- uid: 9721 - type: WallReinforced - components: - - pos: 2.5,-36.5 - parent: 0 - type: Transform -- uid: 9722 - type: ReinforcedWindow - components: - - pos: 3.5,-36.5 - parent: 0 - type: Transform -- uid: 9723 - type: ReinforcedWindow - components: - - pos: 1.5,-36.5 - parent: 0 - type: Transform -- uid: 9724 - type: ReinforcedWindow - components: - - pos: -8.5,-30.5 - parent: 0 - type: Transform -- uid: 9725 - type: ReinforcedWindow - components: - - pos: 22.5,-34.5 - parent: 0 - type: Transform -- uid: 9726 - type: ReinforcedWindow - components: - - pos: 22.5,-35.5 - parent: 0 - type: Transform -- uid: 9727 - type: ReinforcedWindow - components: - - pos: 22.5,-37.5 - parent: 0 - type: Transform -- uid: 9728 - type: ReinforcedWindow - components: - - pos: 22.5,-38.5 - parent: 0 - type: Transform -- uid: 9729 - type: WallReinforced - components: - - pos: 22.5,-36.5 - parent: 0 - type: Transform -- uid: 9730 - type: WallReinforced - components: - - pos: 22.5,-33.5 - parent: 0 - type: Transform -- uid: 9731 - type: WallReinforced - components: - - pos: 22.5,-39.5 - parent: 0 - type: Transform -- uid: 9732 - type: WallReinforced - components: - - pos: 22.5,-40.5 - parent: 0 - type: Transform -- uid: 9733 - type: WallReinforced - components: - - pos: 22.5,-41.5 - parent: 0 - type: Transform -- uid: 9734 - type: WallReinforced - components: - - pos: 22.5,-42.5 - parent: 0 - type: Transform -- uid: 9735 - type: WallReinforced - components: - - pos: 22.5,-43.5 - parent: 0 - type: Transform -- uid: 9736 - type: WallSolid - components: - - pos: 22.5,-32.5 - parent: 0 - type: Transform -- uid: 9737 - type: WallSolid - components: - - pos: 22.5,-31.5 - parent: 0 - type: Transform -- uid: 9738 - type: WallSolid - components: - - pos: 22.5,-30.5 - parent: 0 - type: Transform -- uid: 9739 - type: WallSolid - components: - - pos: 22.5,-29.5 - parent: 0 - type: Transform -- uid: 9740 - type: ReinforcedWindow - components: - - pos: 11.5,-32.5 - parent: 0 - type: Transform -- uid: 9741 - type: ReinforcedWindow - components: - - pos: 11.5,-31.5 - parent: 0 - type: Transform -- uid: 9742 - type: ReinforcedWindow - components: - - pos: 11.5,-30.5 - parent: 0 - type: Transform -- uid: 9743 - type: WallSolid - components: - - pos: 11.5,-29.5 - parent: 0 - type: Transform -- uid: 9744 - type: WallSolid - components: - - pos: 16.5,-25.5 - parent: 0 - type: Transform -- uid: 9745 - type: Grille - components: - - pos: 22.5,-38.5 - parent: 0 - type: Transform -- uid: 9746 - type: Grille - components: - - pos: 22.5,-37.5 - parent: 0 - type: Transform -- uid: 9747 - type: Grille - components: - - pos: 22.5,-35.5 - parent: 0 - type: Transform -- uid: 9748 - type: Grille - components: - - pos: 22.5,-34.5 - parent: 0 - type: Transform -- uid: 9749 - type: Grille - components: - - pos: 17.5,-36.5 - parent: 0 - type: Transform -- uid: 9750 - type: Grille - components: - - pos: 18.5,-35.5 - parent: 0 - type: Transform -- uid: 9751 - type: Grille - components: - - pos: 18.5,-34.5 - parent: 0 - type: Transform -- uid: 9752 - type: Grille - components: - - pos: 15.5,-35.5 - parent: 0 - type: Transform -- uid: 9753 - type: Grille - components: - - pos: 15.5,-34.5 - parent: 0 - type: Transform -- uid: 9754 - type: Grille - components: - - pos: 13.5,-33.5 - parent: 0 - type: Transform -- uid: 9755 - type: Grille - components: - - pos: 11.5,-37.5 - parent: 0 - type: Transform -- uid: 9756 - type: Grille - components: - - pos: 11.5,-36.5 - parent: 0 - type: Transform -- uid: 9757 - type: Grille - components: - - pos: 11.5,-35.5 - parent: 0 - type: Transform -- uid: 9758 - type: Grille - components: - - pos: 9.5,-39.5 - parent: 0 - type: Transform -- uid: 9759 - type: Grille - components: - - pos: 8.5,-39.5 - parent: 0 - type: Transform -- uid: 9760 - type: Grille - components: - - pos: 7.5,-39.5 - parent: 0 - type: Transform -- uid: 9761 - type: Grille - components: - - pos: 6.5,-39.5 - parent: 0 - type: Transform -- uid: 9762 - type: Grille - components: - - pos: 2.5,-39.5 - parent: 0 - type: Transform -- uid: 9763 - type: Grille - components: - - pos: 3.5,-39.5 - parent: 0 - type: Transform -- uid: 9764 - type: Grille - components: - - pos: 1.5,-36.5 - parent: 0 - type: Transform -- uid: 9765 - type: Grille - components: - - pos: 3.5,-36.5 - parent: 0 - type: Transform -- uid: 9766 - type: Grille - components: - - pos: 2.5,-33.5 - parent: 0 - type: Transform -- uid: 9767 - type: Grille - components: - - pos: 3.5,-33.5 - parent: 0 - type: Transform -- uid: 9768 - type: Grille - components: - - pos: 11.5,-32.5 - parent: 0 - type: Transform -- uid: 9769 - type: Grille - components: - - pos: 11.5,-31.5 - parent: 0 - type: Transform -- uid: 9770 - type: Grille - components: - - pos: 11.5,-30.5 - parent: 0 - type: Transform -- uid: 9771 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-17.5 - parent: 0 - type: Transform -- uid: 9772 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-19.5 - parent: 0 - type: Transform -- uid: 9773 - type: WallSolid - components: - - pos: 17.5,-24.5 - parent: 0 - type: Transform -- uid: 9774 - type: ShuttersNormal - components: - - pos: -1.5,-8.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9777 - type: SignalReceiver -- uid: 9775 - type: ShuttersNormal - components: - - pos: -0.5,-8.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9777 - type: SignalReceiver -- uid: 9776 - type: ShuttersNormal - components: - - pos: 0.5,-8.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9777 - type: SignalReceiver -- uid: 9777 - type: SignalButton - components: - - pos: 1.5,-14.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9774 - - port: Toggle - uid: 9775 - - port: Toggle - uid: 9776 - type: SignalTransmitter -- uid: 9778 - type: WallReinforced - components: - - pos: 25.5,-36.5 - parent: 0 - type: Transform -- uid: 9779 - type: WallReinforced - components: - - pos: 25.5,-37.5 - parent: 0 - type: Transform -- uid: 9780 - type: WallReinforced - components: - - pos: 26.5,-36.5 - parent: 0 - type: Transform -- uid: 9781 - type: WallReinforced - components: - - pos: 27.5,-36.5 - parent: 0 - type: Transform -- uid: 9782 - type: WallReinforced - components: - - pos: 28.5,-36.5 - parent: 0 - type: Transform -- uid: 9783 - type: WallReinforced - components: - - pos: 28.5,-37.5 - parent: 0 - type: Transform -- uid: 9784 - type: SubstationBasic - components: - - name: West Sci Sub - type: MetaData - - pos: 27.5,-38.5 - parent: 0 - type: Transform -- uid: 9785 - type: WallReinforced - components: - - pos: 29.5,-36.5 - parent: 0 - type: Transform -- uid: 9786 - type: WallSolid - components: - - pos: 30.5,-37.5 - parent: 0 - type: Transform -- uid: 9787 - type: WallReinforced - components: - - pos: 28.5,-38.5 - parent: 0 - type: Transform -- uid: 9788 - type: WallReinforced - components: - - pos: 28.5,-40.5 - parent: 0 - type: Transform -- uid: 9789 - type: WallReinforced - components: - - pos: 27.5,-40.5 - parent: 0 - type: Transform -- uid: 9790 - type: WallReinforced - components: - - pos: 26.5,-40.5 - parent: 0 - type: Transform -- uid: 9791 - type: WallReinforced - components: - - pos: 25.5,-40.5 - parent: 0 - type: Transform -- uid: 9792 - type: WallReinforced - components: - - pos: 25.5,-39.5 - parent: 0 - type: Transform -- uid: 9793 - type: WallSolid - components: - - pos: 40.5,-35.5 - parent: 0 - type: Transform -- uid: 9794 - type: WallSolid - components: - - pos: 30.5,-38.5 - parent: 0 - type: Transform -- uid: 9795 - type: CableHV - components: - - pos: 27.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9796 - type: CableHV - components: - - pos: 26.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9797 - type: CableHV - components: - - pos: 25.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9798 - type: CableHV - components: - - pos: 24.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9799 - type: CableHV - components: - - pos: 24.5,-6.5 - parent: 0 - type: Transform -- uid: 9800 - type: CableHV - components: - - pos: 24.5,-7.5 - parent: 0 - type: Transform -- uid: 9801 - type: CableHV - components: - - pos: 24.5,-8.5 - parent: 0 - type: Transform -- uid: 9802 - type: CableHV - components: - - pos: 24.5,-9.5 - parent: 0 - type: Transform -- uid: 9803 - type: CableHV - components: - - pos: 24.5,-10.5 - parent: 0 - type: Transform -- uid: 9804 - type: CableHV - components: - - pos: 24.5,-11.5 - parent: 0 - type: Transform -- uid: 9805 - type: CableHV - components: - - pos: 24.5,-12.5 - parent: 0 - type: Transform -- uid: 9806 - type: CableHV - components: - - pos: 24.5,-13.5 - parent: 0 - type: Transform -- uid: 9807 - type: CableHV - components: - - pos: 24.5,-14.5 - parent: 0 - type: Transform -- uid: 9808 - type: CableHV - components: - - pos: 24.5,-15.5 - parent: 0 - type: Transform -- uid: 9809 - type: CableHV - components: - - pos: 24.5,-16.5 - parent: 0 - type: Transform -- uid: 9810 - type: CableHV - components: - - pos: 24.5,-17.5 - parent: 0 - type: Transform -- uid: 9811 - type: CableHV - components: - - pos: 24.5,-18.5 - parent: 0 - type: Transform -- uid: 9812 - type: CableHV - components: - - pos: 24.5,-19.5 - parent: 0 - type: Transform -- uid: 9813 - type: CableHV - components: - - pos: 24.5,-20.5 - parent: 0 - type: Transform -- uid: 9814 - type: CableHV - components: - - pos: 24.5,-21.5 - parent: 0 - type: Transform -- uid: 9815 - type: CableHV - components: - - pos: 24.5,-22.5 - parent: 0 - type: Transform -- uid: 9816 - type: CableHV - components: - - pos: 24.5,-23.5 - parent: 0 - type: Transform -- uid: 9817 - type: CableHV - components: - - pos: 24.5,-24.5 - parent: 0 - type: Transform -- uid: 9818 - type: CableHV - components: - - pos: 24.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9819 - type: CableHV - components: - - pos: 24.5,-26.5 - parent: 0 - type: Transform -- uid: 9820 - type: CableHV - components: - - pos: 24.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9821 - type: CableHV - components: - - pos: 24.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9822 - type: CableHV - components: - - pos: 24.5,-29.5 - parent: 0 - type: Transform -- uid: 9823 - type: CableHV - components: - - pos: 24.5,-30.5 - parent: 0 - type: Transform -- uid: 9824 - type: CableHV - components: - - pos: 24.5,-31.5 - parent: 0 - type: Transform -- uid: 9825 - type: CableHV - components: - - pos: 24.5,-32.5 - parent: 0 - type: Transform -- uid: 9826 - type: CableHV - components: - - pos: 24.5,-33.5 - parent: 0 - type: Transform -- uid: 9827 - type: CableHV - components: - - pos: 24.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9828 - type: CableHV - components: - - pos: 24.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9829 - type: CableHV - components: - - pos: 24.5,-36.5 - parent: 0 - type: Transform -- uid: 9830 - type: CableHV - components: - - pos: 24.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9831 - type: WallSolid - components: - - pos: 17.5,-23.5 - parent: 0 - type: Transform -- uid: 9832 - type: WallSolid - components: - - pos: 17.5,-22.5 - parent: 0 - type: Transform -- uid: 9833 - type: Catwalk - components: - - pos: 18.5,-21.5 - parent: 0 - type: Transform -- uid: 9834 - type: WallSolid - components: - - pos: 17.5,-19.5 - parent: 0 - type: Transform -- uid: 9835 - type: CableHV - components: - - pos: 21.5,-21.5 - parent: 0 - type: Transform -- uid: 9836 - type: CableHV - components: - - pos: 20.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9837 - type: CableHV - components: - - pos: 19.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9838 - type: CableHV - components: - - pos: 19.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9839 - type: CableHV - components: - - pos: 19.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9840 - type: CableHV - components: - - pos: -5.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9841 - type: CableHV - components: - - pos: -5.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9842 - type: CableHV - components: - - pos: -5.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9843 - type: CableHV - components: - - pos: -5.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9844 - type: CableHV - components: - - pos: -5.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9845 - type: CableHV - components: - - pos: -5.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9846 - type: CableHV - components: - - pos: -5.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9847 - type: CableHV - components: - - pos: -5.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9848 - type: CableHV - components: - - pos: -4.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9849 - type: CableHV - components: - - pos: -3.5,-20.5 - parent: 0 - type: Transform -- uid: 9850 - type: CableHV - components: - - pos: -2.5,-20.5 - parent: 0 - type: Transform -- uid: 9851 - type: CableHV - components: - - pos: -1.5,-20.5 - parent: 0 - type: Transform -- uid: 9852 - type: CableHV - components: - - pos: -0.5,-20.5 - parent: 0 - type: Transform -- uid: 9853 - type: CableHV - components: - - pos: 0.5,-20.5 - parent: 0 - type: Transform -- uid: 9854 - type: CableHV - components: - - pos: 1.5,-20.5 - parent: 0 - type: Transform -- uid: 9855 - type: CableHV - components: - - pos: 2.5,-20.5 - parent: 0 - type: Transform -- uid: 9856 - type: CableHV - components: - - pos: 3.5,-20.5 - parent: 0 - type: Transform -- uid: 9857 - type: CableHV - components: - - pos: 4.5,-20.5 - parent: 0 - type: Transform -- uid: 9858 - type: CableHV - components: - - pos: 5.5,-20.5 - parent: 0 - type: Transform -- uid: 9859 - type: CableHV - components: - - pos: 6.5,-20.5 - parent: 0 - type: Transform -- uid: 9860 - type: CableHV - components: - - pos: 7.5,-20.5 - parent: 0 - type: Transform -- uid: 9861 - type: CableHV - components: - - pos: 8.5,-20.5 - parent: 0 - type: Transform -- uid: 9862 - type: CableHV - components: - - pos: 9.5,-20.5 - parent: 0 - type: Transform -- uid: 9863 - type: CableHV - components: - - pos: 10.5,-20.5 - parent: 0 - type: Transform -- uid: 9864 - type: CableHV - components: - - pos: 11.5,-20.5 - parent: 0 - type: Transform -- uid: 9865 - type: CableHV - components: - - pos: 12.5,-20.5 - parent: 0 - type: Transform -- uid: 9866 - type: CableHV - components: - - pos: 13.5,-20.5 - parent: 0 - type: Transform -- uid: 9867 - type: CableHV - components: - - pos: 14.5,-20.5 - parent: 0 - type: Transform -- uid: 9868 - type: CableHV - components: - - pos: 15.5,-20.5 - parent: 0 - type: Transform -- uid: 9869 - type: CableMV - components: - - pos: 18.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9870 - type: CableHV - components: - - pos: 17.5,-21.5 - parent: 0 - type: Transform -- uid: 9871 - type: GasPipeBend - components: - - pos: 16.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9872 - type: GasPipeStraight - components: - - pos: 8.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9873 - type: GasPipeStraight - components: - - pos: 8.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9874 - type: GasPipeStraight - components: - - pos: 8.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9875 - type: GasPipeStraight - components: - - pos: 8.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9876 - type: GasPipeStraight - components: - - pos: 8.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9877 - type: GasPipeStraight - components: - - pos: 8.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9878 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9879 - type: GasPipeStraight - components: - - pos: 8.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9880 - type: GasPipeStraight - components: - - pos: 8.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9881 - type: GasPipeStraight - components: - - pos: 8.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9882 - type: GasPipeStraight - components: - - pos: 8.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9883 - type: GasPipeStraight - components: - - pos: 8.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9884 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9885 - type: GasPipeStraight - components: - - pos: 8.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9886 - type: GasPipeStraight - components: - - pos: 8.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9887 - type: GasPipeStraight - components: - - pos: 8.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9888 - type: GasPipeFourway - components: - - pos: 6.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9889 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9890 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9891 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9892 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9893 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9894 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9895 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9896 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9897 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9898 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9899 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9900 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9901 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 5.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9902 - type: GasPipeBend - components: - - pos: 6.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9903 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -5.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9904 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9905 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9906 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9907 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -0.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9908 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9909 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9910 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9911 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9912 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9913 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9914 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9915 - type: GasPipeStraight - components: - - pos: -5.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9916 - type: GasPipeStraight - components: - - pos: -5.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9917 - type: GasPipeStraight - components: - - pos: -5.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9918 - type: GasPipeStraight - components: - - pos: -5.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9919 - type: GasPipeStraight - components: - - pos: -5.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9920 - type: GasPipeStraight - components: - - pos: -5.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9921 - type: GasPipeStraight - components: - - pos: -5.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9922 - type: GasPipeStraight - components: - - pos: -3.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9923 - type: GasPipeStraight - components: - - pos: -3.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9924 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -3.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9925 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9926 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9927 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9928 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9929 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9930 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9931 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9932 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9933 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9934 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9935 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9936 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9937 - type: GasPipeStraight - components: - - pos: -2.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9938 - type: GasPipeStraight - components: - - pos: -2.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9939 - type: GasPipeStraight - components: - - pos: -2.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9940 - type: GasPipeStraight - components: - - pos: -2.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9941 - type: GasPipeStraight - components: - - pos: -2.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9942 - type: GasPipeStraight - components: - - pos: -2.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9943 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9944 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9945 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -2.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9946 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9947 - type: GasPipeFourway - components: - - pos: 8.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9948 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9949 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9950 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9951 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9952 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9953 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9954 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9955 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9956 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9957 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 11.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9958 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9959 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9960 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9961 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9962 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9963 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9964 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9965 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9966 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9967 - type: GasPipeTJunction - components: - - pos: 10.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9968 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9969 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9970 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9971 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9972 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9973 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9974 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9975 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9976 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9977 - type: GasPipeTJunction - components: - - pos: 24.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9978 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9979 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9980 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9981 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9982 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9983 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9984 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9985 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9986 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9987 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9988 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9989 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9990 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9991 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-24.5 - parent: 0 - type: Transform -- uid: 9992 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-23.5 - parent: 0 - type: Transform -- uid: 9993 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 0 - type: Transform -- uid: 9994 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-15.5 - parent: 0 - type: Transform -- uid: 9995 - type: CableMV - components: - - pos: -7.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9996 - type: CableMV - components: - - pos: -6.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9997 - type: CableMV - components: - - pos: -5.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9998 - type: CableMV - components: - - pos: -5.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9999 - type: CableMV - components: - - pos: -5.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10000 - type: CableMV - components: - - pos: -5.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10001 - type: CableMV - components: - - pos: -5.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10002 - type: CableMV - components: - - pos: -5.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10003 - type: CableMV - components: - - pos: -5.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10004 - type: CableMV - components: - - pos: -5.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10005 - type: CableMV - components: - - pos: -5.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10006 - type: CableMV - components: - - pos: -4.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10007 - type: CableMV - components: - - pos: -4.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10008 - type: CableMV - components: - - pos: -3.5,-20.5 - parent: 0 - type: Transform -- uid: 10009 - type: CableMV - components: - - pos: -3.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10010 - type: CableMV - components: - - pos: -7.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10011 - type: CableMV - components: - - pos: -8.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10012 - type: CableMV - components: - - pos: -9.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10013 - type: CableMV - components: - - pos: -9.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10014 - type: CableMV - components: - - pos: -9.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10015 - type: CableMV - components: - - pos: -9.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10016 - type: CableMV - components: - - pos: -9.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10017 - type: CableMV - components: - - pos: -8.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10018 - type: CableMV - components: - - pos: -7.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10019 - type: CableMV - components: - - pos: -6.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10020 - type: CableMV - components: - - pos: -6.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10021 - type: CableMV - components: - - pos: -5.5,-24.5 - parent: 0 - type: Transform -- uid: 10022 - type: CableMV - components: - - pos: -4.5,-24.5 - parent: 0 - type: Transform -- uid: 10023 - type: CableMV - components: - - pos: -4.5,-23.5 - parent: 0 - type: Transform -- uid: 10024 - type: CableMV - components: - - pos: -3.5,-23.5 - parent: 0 - type: Transform -- uid: 10025 - type: CableMV - components: - - pos: -2.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10026 - type: CableMV - components: - - pos: -1.5,-23.5 - parent: 0 - type: Transform -- uid: 10027 - type: CableMV - components: - - pos: -0.5,-23.5 - parent: 0 - type: Transform -- uid: 10028 - type: CableMV - components: - - pos: -0.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10029 - type: CableMV - components: - - pos: 0.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10030 - type: CableMV - components: - - pos: 1.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10031 - type: CableMV - components: - - pos: 2.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10032 - type: CableMV - components: - - pos: -0.5,-21.5 - parent: 0 - type: Transform -- uid: 10033 - type: CableMV - components: - - pos: -1.5,-21.5 - parent: 0 - type: Transform -- uid: 10034 - type: CableMV - components: - - pos: -2.5,-21.5 - parent: 0 - type: Transform -- uid: 10035 - type: CableMV - components: - - pos: -4.5,-25.5 - parent: 0 - type: Transform -- uid: 10036 - type: CableMV - components: - - pos: -4.5,-26.5 - parent: 0 - type: Transform -- uid: 10037 - type: CableMV - components: - - pos: -4.5,-27.5 - parent: 0 - type: Transform -- uid: 10038 - type: CableMV - components: - - pos: -4.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10039 - type: CableMV - components: - - pos: -5.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10040 - type: CableMV - components: - - pos: -3.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10041 - type: CableMV - components: - - pos: -0.5,-24.5 - parent: 0 - type: Transform -- uid: 10042 - type: CableMV - components: - - pos: -0.5,-25.5 - parent: 0 - type: Transform -- uid: 10043 - type: CableMV - components: - - pos: -0.5,-26.5 - parent: 0 - type: Transform -- uid: 10044 - type: CableMV - components: - - pos: -0.5,-27.5 - parent: 0 - type: Transform -- uid: 10045 - type: CableMV - components: - - pos: -0.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10046 - type: CableMV - components: - - pos: -1.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10047 - type: CableMV - components: - - pos: 0.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10048 - type: CableMV - components: - - pos: 0.5,-25.5 - parent: 0 - type: Transform -- uid: 10049 - type: CableMV - components: - - pos: 1.5,-25.5 - parent: 0 - type: Transform -- uid: 10050 - type: CableMV - components: - - pos: 2.5,-25.5 - parent: 0 - type: Transform -- uid: 10051 - type: CableMV - components: - - pos: 3.5,-25.5 - parent: 0 - type: Transform -- uid: 10052 - type: CableMV - components: - - pos: 4.5,-25.5 - parent: 0 - type: Transform -- uid: 10053 - type: CableMV - components: - - pos: 4.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10054 - type: CableMV - components: - - pos: 4.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10055 - type: CableMV - components: - - pos: -2.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10056 - type: CableMV - components: - - pos: -2.5,-25.5 - parent: 0 - type: Transform -- uid: 10057 - type: CableMV - components: - - pos: -2.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10058 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10059 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 1.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10060 - type: GasPipeTJunction - components: - - pos: 1.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10061 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10062 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10063 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10064 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10065 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10066 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10067 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10068 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10069 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10070 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10071 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10072 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10073 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10074 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10075 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10076 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10077 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10078 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10079 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10080 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10081 - type: GasVentScrubber - components: - - pos: 1.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10082 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10083 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10084 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 1.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10085 - type: FirelockGlass - components: - - pos: 4.5,-21.5 - parent: 0 - type: Transform -- uid: 10086 - type: FirelockGlass - components: - - pos: 4.5,-20.5 - parent: 0 - type: Transform -- uid: 10087 - type: FirelockGlass - components: - - pos: 5.5,-28.5 - parent: 0 - type: Transform -- uid: 10088 - type: FirelockGlass - components: - - pos: 6.5,-28.5 - parent: 0 - type: Transform -- uid: 10089 - type: FirelockGlass - components: - - pos: 7.5,-28.5 - parent: 0 - type: Transform -- uid: 10090 - type: FirelockGlass - components: - - pos: 8.5,-28.5 - parent: 0 - type: Transform -- uid: 10091 - type: FirelockGlass - components: - - pos: 9.5,-28.5 - parent: 0 - type: Transform -- uid: 10092 - type: FirelockGlass - components: - - pos: 10.5,-28.5 - parent: 0 - type: Transform -- uid: 10093 - type: FirelockGlass - components: - - pos: 18.5,-28.5 - parent: 0 - type: Transform -- uid: 10094 - type: FirelockGlass - components: - - pos: 19.5,-28.5 - parent: 0 - type: Transform -- uid: 10095 - type: FirelockGlass - components: - - pos: 20.5,-28.5 - parent: 0 - type: Transform -- uid: 10096 - type: FirelockGlass - components: - - pos: 13.5,-28.5 - parent: 0 - type: Transform -- uid: 10097 - type: FirelockGlass - components: - - pos: 13.5,-18.5 - parent: 0 - type: Transform -- uid: 10098 - type: FirelockGlass - components: - - pos: 12.5,-18.5 - parent: 0 - type: Transform -- uid: 10099 - type: FirelockGlass - components: - - pos: 11.5,-18.5 - parent: 0 - type: Transform -- uid: 10100 - type: FirelockGlass - components: - - pos: 6.5,-19.5 - parent: 0 - type: Transform -- uid: 10101 - type: FirelockGlass - components: - - pos: 8.5,-19.5 - parent: 0 - type: Transform -- uid: 10102 - type: FirelockGlass - components: - - pos: 5.5,-14.5 - parent: 0 - type: Transform -- uid: 10103 - type: FirelockGlass - components: - - pos: 4.5,-14.5 - parent: 0 - type: Transform -- uid: 10104 - type: FirelockGlass - components: - - pos: 14.5,-15.5 - parent: 0 - type: Transform -- uid: 10105 - type: FirelockGlass - components: - - pos: 8.5,-14.5 - parent: 0 - type: Transform -- uid: 10106 - type: RandomPosterLegit - components: - - pos: -3.5,2.5 - parent: 0 - type: Transform -- uid: 10107 - type: RandomPosterLegit - components: - - pos: 2.5,3.5 - parent: 0 - type: Transform -- uid: 10108 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-37.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 10109 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-35.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 10110 - type: AirlockExternalGlassCargoLocked - components: - - pos: 4.5,-37.5 - parent: 0 - type: Transform -- uid: 10111 - type: AirlockExternalGlassCargoLocked - components: - - pos: 4.5,-35.5 - parent: 0 - type: Transform -- uid: 10112 - type: AtmosDeviceFanTiny - components: - - pos: 1.5,-37.5 - parent: 0 - type: Transform -- uid: 10113 - type: AtmosDeviceFanTiny - components: - - pos: 1.5,-35.5 - parent: 0 - type: Transform -- uid: 10114 - type: FirelockGlass - components: - - pos: 24.5,-7.5 - parent: 0 - type: Transform -- uid: 10115 - type: FirelockGlass - components: - - pos: 23.5,-7.5 - parent: 0 - type: Transform -- uid: 10116 - type: FirelockGlass - components: - - pos: 23.5,-3.5 - parent: 0 - type: Transform -- uid: 10117 - type: FirelockGlass - components: - - pos: 24.5,-3.5 - parent: 0 - type: Transform -- uid: 10118 - type: FirelockGlass - components: - - pos: 25.5,-3.5 - parent: 0 - type: Transform -- uid: 10119 - type: AirlockExternalGlassCargoLocked - components: - - pos: 16.5,-36.5 - parent: 0 - type: Transform -- uid: 10120 - type: AirlockExternalGlassCargoLocked - components: - - pos: 16.5,-33.5 - parent: 0 - type: Transform -- uid: 10121 - type: Grille - components: - - pos: 20.5,-33.5 - parent: 0 - type: Transform -- uid: 10122 - type: Catwalk - components: - - pos: 13.5,-36.5 - parent: 0 - type: Transform -- uid: 10123 - type: LockerEvidence - components: - - pos: 19.5,7.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10124 - type: LockerEvidence - components: - - pos: 20.5,7.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10125 - type: DisposalUnit - components: - - pos: 22.5,7.5 - parent: 0 - type: Transform -- uid: 10126 - type: Table - components: - - pos: 27.5,19.5 - parent: 0 - type: Transform -- uid: 10127 - type: Table - components: - - pos: 27.5,20.5 - parent: 0 - type: Transform -- uid: 10128 - type: Table - components: - - pos: 27.5,21.5 - parent: 0 - type: Transform -- uid: 10129 - type: Table - components: - - pos: 27.5,22.5 - parent: 0 - type: Transform -- uid: 10130 - type: TableReinforced - components: - - pos: 29.5,22.5 - parent: 0 - type: Transform -- uid: 10131 - type: TableReinforced - components: - - pos: 30.5,22.5 - parent: 0 - type: Transform -- uid: 10132 - type: TableReinforced - components: - - pos: 30.5,23.5 - parent: 0 - type: Transform -- uid: 10133 - type: TableReinforced - components: - - pos: 31.5,22.5 - parent: 0 - type: Transform -- uid: 10134 - type: TableReinforced - components: - - pos: 30.5,21.5 - parent: 0 - type: Transform -- uid: 10135 - type: TableReinforced - components: - - pos: 30.5,19.5 - parent: 0 - type: Transform -- uid: 10136 - type: TableReinforced - components: - - pos: 31.5,19.5 - parent: 0 - type: Transform -- uid: 10137 - type: TableReinforced - components: - - pos: 31.5,17.5 - parent: 0 - type: Transform -- uid: 10138 - type: TableReinforced - components: - - pos: 30.5,17.5 - parent: 0 - type: Transform -- uid: 10139 - type: Table - components: - - pos: 28.5,26.5 - parent: 0 - type: Transform -- uid: 10140 - type: SecurityTechFab - components: - - pos: 31.5,26.5 - parent: 0 - type: Transform -- uid: 10141 - type: ComputerSurveillanceCameraMonitor - components: - - pos: 32.5,26.5 - parent: 0 - type: Transform -- uid: 10142 - type: SinkWide - components: - - pos: 34.5,26.5 - parent: 0 - type: Transform -- uid: 10143 - type: Bucket - components: - - pos: 35.411762,26.546383 - parent: 0 - type: Transform -- uid: 10144 - type: MopItem - components: - - pos: 35.536762,26.546383 - parent: 0 - type: Transform -- uid: 10145 - type: BedsheetSpawner - components: - - pos: 34.5,24.5 - parent: 0 - type: Transform -- uid: 10146 - type: KitchenMicrowave - components: - - pos: 27.5,21.5 - parent: 0 - type: Transform -- uid: 10147 - type: DonkpocketBoxSpawner - components: - - pos: 27.5,22.5 - parent: 0 - type: Transform -- uid: 10148 - type: ComputerCriminalRecords - components: - - rot: 1.5707963267948966 rad - pos: 30.5,18.5 - parent: 0 - type: Transform -- uid: 10149 - type: FlashlightSeclite - components: - - pos: 27.487555,20.653816 - parent: 0 - type: Transform -- uid: 10150 - type: Flash - components: - - pos: 27.50318,19.856941 - parent: 0 - type: Transform -- uid: 10151 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 29.5,23.5 - parent: 0 - type: Transform -- uid: 10152 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 31.5,21.5 - parent: 0 - type: Transform -- uid: 10153 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 31.5,18.5 - parent: 0 - type: Transform -- uid: 10154 - type: WaterCooler - components: - - pos: 32.5,24.5 - parent: 0 - type: Transform -- uid: 10155 - type: ClothingMaskGasSecurity - components: - - pos: 31.456305,22.534777 - parent: 0 - type: Transform -- uid: 10156 - type: FoodBoxDonut - components: - - pos: 30.550055,23.487902 - parent: 0 - type: Transform -- uid: 10157 - type: Table - components: - - pos: 33.5,20.5 - parent: 0 - type: Transform -- uid: 10158 - type: FaxMachineBase - components: - - pos: 33.5,20.5 - parent: 0 - type: Transform - - name: Security - type: FaxMachine -- uid: 10159 - type: SignInterrogation - components: - - pos: 17.5,24.5 - parent: 0 - type: Transform -- uid: 10160 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: 15.5,23.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrogation - type: SurveillanceCamera -- uid: 10161 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 16.5,21.5 - parent: 0 - type: Transform -- uid: 10162 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 16.5,22.5 - parent: 0 - type: Transform -- uid: 10163 - type: Lamp - components: - - pos: 16.51569,21.87028 - parent: 0 - type: Transform -- uid: 10164 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 17.5,21.5 - parent: 0 - type: Transform -- uid: 10165 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 17.5,22.5 - parent: 0 - type: Transform -- uid: 10166 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: 15.5,21.5 - parent: 0 - type: Transform -- uid: 10167 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: 15.5,22.5 - parent: 0 - type: Transform -- uid: 10168 - type: BoxFolderRed - components: - - pos: 16.531315,22.542154 - parent: 0 - type: Transform -- uid: 10169 - type: PaperBin5 - components: - - pos: 16.5,22.5 - parent: 0 - type: Transform -- uid: 10170 - type: ExtinguisherCabinetFilled - components: - - pos: 21.5,24.5 - parent: 0 - type: Transform -- uid: 10171 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 20.5,22.5 - parent: 0 - type: Transform -- uid: 10172 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 20.5,23.5 - parent: 0 - type: Transform -- uid: 10173 - type: Table - components: - - pos: 20.5,21.5 - parent: 0 - type: Transform -- uid: 10174 - type: PosterLegitSpaceCops - components: - - pos: 22.5,21.5 - parent: 0 - type: Transform -- uid: 10175 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 21.5,21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10176 - type: PoweredSmallLight - components: - - pos: 16.5,23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10177 - type: PottedPlant18 - components: - - pos: 21.496624,21.218304 - parent: 0 - type: Transform -- uid: 10178 - type: IntercomSecurity - components: - - pos: 16.5,24.5 - parent: 0 - type: Transform -- uid: 10179 - type: PaperBin5 - components: - - pos: 20.5,21.5 - parent: 0 - type: Transform -- uid: 10180 - type: PottedPlant20 - components: - - pos: 17.5,25.5 - parent: 0 - type: Transform -- uid: 10181 - type: AirlockMaintSecLocked - components: - - pos: 18.5,28.5 - parent: 0 - type: Transform -- uid: 10182 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,26.5 - parent: 0 - type: Transform -- uid: 10183 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,26.5 - parent: 0 - type: Transform -- uid: 10184 - type: Table - components: - - pos: 21.5,26.5 - parent: 0 - type: Transform -- uid: 10185 - type: Handcuffs - components: - - pos: 21.51308,26.58691 - parent: 0 - type: Transform -- uid: 10186 - type: SignSecurity - components: - - pos: 22.5,31.5 - parent: 0 - type: Transform -- uid: 10187 - type: SignSecurity - components: - - pos: 26.5,0.5 - parent: 0 - type: Transform -- uid: 10188 - type: SignSecurity - components: - - pos: 22.5,0.5 - parent: 0 - type: Transform -- uid: 10189 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-0.5 - parent: 0 - type: Transform -- uid: 10190 - type: WaterTankFull - components: - - pos: 17.5,3.5 - parent: 0 - type: Transform -- uid: 10191 - type: ClosetFireFilled - components: - - pos: 17.5,2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10192 - type: ClosetEmergencyFilledRandom - components: - - pos: 17.5,1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10193 - type: Airlock - components: - - pos: 15.5,-0.5 - parent: 0 - type: Transform -- uid: 10194 - type: Airlock - components: - - pos: 15.5,3.5 - parent: 0 - type: Transform -- uid: 10195 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-0.5 - parent: 0 - type: Transform -- uid: 10196 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: 12.5,3.5 - parent: 0 - type: Transform -- uid: 10197 - type: AirlockMaintLocked - components: - - pos: 16.5,4.5 - parent: 0 - type: Transform -- uid: 10198 - type: AirlockMaintLocked - components: - - pos: 9.5,31.5 - parent: 0 - type: Transform -- uid: 10199 - type: AirlockMaintLocked - components: - - pos: 19.5,31.5 - parent: 0 - type: Transform -- uid: 10200 - type: WallReinforced - components: - - pos: 45.5,-8.5 - parent: 0 - type: Transform -- uid: 10201 - type: WallReinforced - components: - - pos: 44.5,-8.5 - parent: 0 - type: Transform -- uid: 10202 - type: WallReinforced - components: - - pos: 44.5,-7.5 - parent: 0 - type: Transform -- uid: 10203 - type: WallReinforced - components: - - pos: 44.5,-6.5 - parent: 0 - type: Transform -- uid: 10204 - type: WallReinforced - components: - - pos: 44.5,-5.5 - parent: 0 - type: Transform -- uid: 10205 - type: WallReinforced - components: - - pos: 44.5,-4.5 - parent: 0 - type: Transform -- uid: 10206 - type: WallReinforced - components: - - pos: 44.5,-3.5 - parent: 0 - type: Transform -- uid: 10207 - type: WallReinforced - components: - - pos: 45.5,-3.5 - parent: 0 - type: Transform -- uid: 10208 - type: WallReinforced - components: - - pos: 52.5,-8.5 - parent: 0 - type: Transform -- uid: 10209 - type: WallReinforced - components: - - pos: 53.5,-8.5 - parent: 0 - type: Transform -- uid: 10210 - type: WallReinforced - components: - - pos: 53.5,-7.5 - parent: 0 - type: Transform -- uid: 10211 - type: WallReinforced - components: - - pos: 53.5,-6.5 - parent: 0 - type: Transform -- uid: 10212 - type: WallReinforced - components: - - pos: 53.5,-5.5 - parent: 0 - type: Transform -- uid: 10213 - type: WallReinforced - components: - - pos: 53.5,-4.5 - parent: 0 - type: Transform -- uid: 10214 - type: WallReinforced - components: - - pos: 53.5,-3.5 - parent: 0 - type: Transform -- uid: 10215 - type: WallReinforced - components: - - pos: 52.5,-3.5 - parent: 0 - type: Transform -- uid: 10216 - type: ReinforcedWindow - components: - - pos: 46.5,-8.5 - parent: 0 - type: Transform -- uid: 10217 - type: ReinforcedWindow - components: - - pos: 49.5,-8.5 - parent: 0 - type: Transform -- uid: 10218 - type: ReinforcedWindow - components: - - pos: 48.5,-8.5 - parent: 0 - type: Transform -- uid: 10219 - type: ReinforcedWindow - components: - - pos: 51.5,-8.5 - parent: 0 - type: Transform -- uid: 10220 - type: ReinforcedWindow - components: - - pos: 51.5,-3.5 - parent: 0 - type: Transform -- uid: 10221 - type: ReinforcedWindow - components: - - pos: 49.5,-3.5 - parent: 0 - type: Transform -- uid: 10222 - type: ReinforcedWindow - components: - - pos: 48.5,-3.5 - parent: 0 - type: Transform -- uid: 10223 - type: ReinforcedWindow - components: - - pos: 46.5,-3.5 - parent: 0 - type: Transform -- uid: 10224 - type: DisposalJunction - components: - - pos: 55.5,-1.5 - parent: 0 - type: Transform -- uid: 10225 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 55.5,-10.5 - parent: 0 - type: Transform -- uid: 10226 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 55.5,-9.5 - parent: 0 - type: Transform -- uid: 10227 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 55.5,-8.5 - parent: 0 - type: Transform -- uid: 10228 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 55.5,-7.5 - parent: 0 - type: Transform -- uid: 10229 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 55.5,-6.5 - parent: 0 - type: Transform -- uid: 10230 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 55.5,-5.5 - parent: 0 - type: Transform -- uid: 10231 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 55.5,-4.5 - parent: 0 - type: Transform -- uid: 10232 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 55.5,-3.5 - parent: 0 - type: Transform -- uid: 10233 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 55.5,-2.5 - parent: 0 - type: Transform -- uid: 10234 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-1.5 - parent: 0 - type: Transform -- uid: 10235 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-10.5 - parent: 0 - type: Transform -- uid: 10236 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-10.5 - parent: 0 - type: Transform -- uid: 10237 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-10.5 - parent: 0 - type: Transform -- uid: 10238 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-10.5 - parent: 0 - type: Transform -- uid: 10239 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-10.5 - parent: 0 - type: Transform -- uid: 10240 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-10.5 - parent: 0 - type: Transform -- uid: 10241 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-10.5 - parent: 0 - type: Transform -- uid: 10242 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-10.5 - parent: 0 - type: Transform -- uid: 10243 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 26.5,30.5 - parent: 0 - type: Transform -- uid: 10244 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: 26.5,29.5 - parent: 0 - type: Transform -- uid: 10245 - type: AirlockSecurityGlassLocked - components: - - pos: 27.5,27.5 - parent: 0 - type: Transform -- uid: 10246 - type: AirlockSecurityLocked - components: - - name: Shooting Range - type: MetaData - - pos: 30.5,27.5 - parent: 0 - type: Transform -- uid: 10247 - type: Poweredlight - components: - - pos: 38.5,30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10248 - type: Poweredlight - components: - - pos: 34.5,30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10249 - type: Poweredlight - components: - - pos: 30.5,30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10250 - type: TableReinforced - components: - - pos: 31.5,30.5 - parent: 0 - type: Transform -- uid: 10251 - type: TableReinforced - components: - - pos: 31.5,28.5 - parent: 0 - type: Transform -- uid: 10252 - type: TargetSyndicate - components: - - pos: 38.5,29.5 - parent: 0 - type: Transform -- uid: 10253 - type: TargetClown - components: - - pos: 30.5,30.5 - parent: 0 - type: Transform -- uid: 10254 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 32.5,28.5 - parent: 0 - type: Transform -- uid: 10255 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 32.5,30.5 - parent: 0 - type: Transform -- uid: 10256 - type: WeaponCapacitorRecharger - components: - - pos: 31.5,30.5 - parent: 0 - type: Transform -- uid: 10257 - type: WeaponDisablerPractice - components: - - pos: 31.355667,28.660189 - parent: 0 - type: Transform -- uid: 10258 - type: WeaponLaserCarbinePractice - components: - - pos: 31.543167,28.363314 - parent: 0 - type: Transform -- uid: 10259 - type: SignSecureMed - components: - - pos: 34.5,31.5 - parent: 0 - type: Transform -- uid: 10260 - type: SpawnVehicleSecway - components: - - pos: 33.5,21.5 - parent: 0 - type: Transform -- uid: 10261 - type: SpawnVehicleSecway - components: - - pos: 33.5,22.5 - parent: 0 - type: Transform -- uid: 10262 - type: VehicleKeySecway - components: - - pos: 30.501001,22.600615 - parent: 0 - type: Transform -- uid: 10263 - type: VehicleKeySecway - components: - - pos: 30.501001,22.600615 - parent: 0 - type: Transform -- uid: 10264 - type: BoxZiptie - components: - - pos: 29.501001,22.64749 - parent: 0 - type: Transform -- uid: 10265 - type: PaperBin5 - components: - - pos: 30.5,21.5 - parent: 0 - type: Transform -- uid: 10266 - type: BookEscalationSecurity - components: - - pos: 30.594751,19.522747 - parent: 0 - type: Transform -- uid: 10267 - type: FoodDonutJellyChocolate - components: - - pos: 31.501001,17.616497 - parent: 0 - type: Transform -- uid: 10268 - type: ComputerSurveillanceCameraMonitor - components: - - rot: -1.5707963267948966 rad - pos: 28.5,30.5 - parent: 0 - type: Transform -- uid: 10269 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: 28.5,29.5 - parent: 0 - type: Transform -- uid: 10270 - type: filingCabinetTallRandom - components: - - pos: 28.5,28.5 - parent: 0 - type: Transform -- uid: 10271 - type: PaperBin5 - components: - - pos: 26.5,30.5 - parent: 0 - type: Transform -- uid: 10272 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10273 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10274 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 19.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10275 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10276 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 31.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10277 - type: Poweredlight - components: - - pos: 28.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10278 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10279 - type: AirlockSecurityLocked - components: - - name: Maintenance Closet - type: MetaData - - pos: 33.5,25.5 - parent: 0 - type: Transform -- uid: 10280 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10281 - type: WeaponCapacitorRecharger - components: - - pos: 28.5,26.5 - parent: 0 - type: Transform -- uid: 10282 - type: WeaponCapacitorRecharger - components: - - pos: 30.5,17.5 - parent: 0 - type: Transform -- uid: 10283 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 27.5,16.5 - parent: 0 - type: Transform -- uid: 10284 - type: PottedPlantBioluminscent - components: - - pos: 27.521336,17.190756 - parent: 0 - type: Transform -- uid: 10285 - type: Poweredlight - components: - - pos: 77.5,40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10286 - type: CableMV - components: - - pos: 37.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10287 - type: CableMV - components: - - pos: 38.5,23.5 - parent: 0 - type: Transform -- uid: 10288 - type: CableMV - components: - - pos: 39.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10289 - type: CableMV - components: - - pos: 22.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10290 - type: CableMV - components: - - pos: 22.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10291 - type: CableHV - components: - - pos: 23.5,12.5 - parent: 0 - type: Transform -- uid: 10292 - type: CableHV - components: - - pos: 22.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10293 - type: AirlockSecurityLocked - components: - - pos: 50.5,8.5 - parent: 0 - type: Transform -- uid: 10294 - type: AirlockSecurityGlassLocked - components: - - pos: 52.5,5.5 - parent: 0 - type: Transform -- uid: 10295 - type: HighSecArmoryLocked - components: - - name: Solitary Confinement - type: MetaData - - pos: 46.5,8.5 - parent: 0 - type: Transform -- uid: 10296 - type: AirlockSecurityGlassLocked - components: - - pos: 42.5,8.5 - parent: 0 - type: Transform -- uid: 10297 - type: AirlockSecurityGlassLocked - components: - - pos: 43.5,8.5 - parent: 0 - type: Transform -- uid: 10298 - type: AirlockSecurityGlassLocked - components: - - pos: 42.5,12.5 - parent: 0 - type: Transform -- uid: 10299 - type: AirlockSecurityGlassLocked - components: - - pos: 45.5,12.5 - parent: 0 - type: Transform -- uid: 10300 - type: AirlockSecurityGlassLocked - components: - - pos: 47.5,12.5 - parent: 0 - type: Transform -- uid: 10301 - type: AirlockSecurityGlassLocked - components: - - pos: 50.5,12.5 - parent: 0 - type: Transform -- uid: 10302 - type: Bed - components: - - pos: 41.5,15.5 - parent: 0 - type: Transform -- uid: 10303 - type: Bed - components: - - pos: 44.5,15.5 - parent: 0 - type: Transform -- uid: 10304 - type: Bed - components: - - pos: 48.5,15.5 - parent: 0 - type: Transform -- uid: 10305 - type: Bed - components: - - pos: 51.5,15.5 - parent: 0 - type: Transform -- uid: 10306 - type: BedsheetBrown - components: - - pos: 41.5,15.5 - parent: 0 - type: Transform -- uid: 10307 - type: BedsheetBrown - components: - - pos: 44.5,15.5 - parent: 0 - type: Transform -- uid: 10308 - type: BedsheetBrown - components: - - pos: 48.5,15.5 - parent: 0 - type: Transform -- uid: 10309 - type: BedsheetBrown - components: - - pos: 51.5,15.5 - parent: 0 - type: Transform -- uid: 10310 - type: Table - components: - - pos: 41.5,13.5 - parent: 0 - type: Transform -- uid: 10311 - type: Table - components: - - pos: 44.5,13.5 - parent: 0 - type: Transform -- uid: 10312 - type: Table - components: - - pos: 48.5,13.5 - parent: 0 - type: Transform -- uid: 10313 - type: Table - components: - - pos: 51.5,13.5 - parent: 0 - type: Transform -- uid: 10314 - type: Stool - components: - - pos: 41.5,14.5 - parent: 0 - type: Transform -- uid: 10315 - type: Stool - components: - - pos: 44.5,14.5 - parent: 0 - type: Transform -- uid: 10316 - type: Stool - components: - - pos: 48.5,14.5 - parent: 0 - type: Transform -- uid: 10317 - type: Stool - components: - - pos: 51.5,14.5 - parent: 0 - type: Transform -- uid: 10318 - type: Paper - components: - - pos: 41.5,13.5 - parent: 0 - type: Transform -- uid: 10319 - type: Paper - components: - - pos: 44.5,13.5 - parent: 0 - type: Transform -- uid: 10320 - type: Paper - components: - - pos: 48.5,13.5 - parent: 0 - type: Transform -- uid: 10321 - type: Paper - components: - - pos: 51.5,13.5 - parent: 0 - type: Transform -- uid: 10322 - type: Pen - components: - - pos: 41.5,13.5 - parent: 0 - type: Transform -- uid: 10323 - type: Pen - components: - - pos: 44.5,13.5 - parent: 0 - type: Transform -- uid: 10324 - type: Pen - components: - - pos: 48.5,13.5 - parent: 0 - type: Transform -- uid: 10325 - type: Pen - components: - - pos: 51.5,13.5 - parent: 0 - type: Transform -- uid: 10326 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10327 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10328 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10329 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10330 - type: AirlockGlass - components: - - pos: 42.5,16.5 - parent: 0 - type: Transform -- uid: 10331 - type: AirlockGlass - components: - - pos: 45.5,16.5 - parent: 0 - type: Transform -- uid: 10332 - type: AirlockGlass - components: - - pos: 47.5,16.5 - parent: 0 - type: Transform -- uid: 10333 - type: AirlockGlass - components: - - pos: 50.5,16.5 - parent: 0 - type: Transform -- uid: 10334 - type: TableReinforced - components: - - pos: 51.5,22.5 - parent: 0 - type: Transform -- uid: 10335 - type: TableReinforced - components: - - pos: 51.5,23.5 - parent: 0 - type: Transform -- uid: 10336 - type: TableReinforced - components: - - pos: 51.5,24.5 - parent: 0 - type: Transform -- uid: 10337 - type: TableReinforced - components: - - pos: 51.5,25.5 - parent: 0 - type: Transform -- uid: 10338 - type: Table - components: - - pos: 46.5,18.5 - parent: 0 - type: Transform -- uid: 10339 - type: Table - components: - - pos: 46.5,19.5 - parent: 0 - type: Transform -- uid: 10340 - type: Table - components: - - pos: 46.5,20.5 - parent: 0 - type: Transform -- uid: 10341 - type: Bookshelf - components: - - pos: 41.5,17.5 - parent: 0 - type: Transform -- uid: 10342 - type: Bookshelf - components: - - pos: 41.5,18.5 - parent: 0 - type: Transform -- uid: 10343 - type: BlockGameArcade - components: - - pos: 44.5,25.5 - parent: 0 - type: Transform -- uid: 10344 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 47.5,25.5 - parent: 0 - type: Transform -- uid: 10345 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 48.5,25.5 - parent: 0 - type: Transform -- uid: 10346 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 41.5,18.5 - parent: 0 - type: Transform -- uid: 10347 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 42.5,18.5 - parent: 0 - type: Transform -- uid: 10348 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 43.5,18.5 - parent: 0 - type: Transform -- uid: 10349 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 44.5,19.5 - parent: 0 - type: Transform -- uid: 10350 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 44.5,20.5 - parent: 0 - type: Transform -- uid: 10351 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 44.5,24.5 - parent: 0 - type: Transform -- uid: 10352 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 44.5,25.5 - parent: 0 - type: Transform -- uid: 10353 - type: RailingCornerSmall - components: - - pos: 44.5,18.5 - parent: 0 - type: Transform -- uid: 10354 - type: DisposalUnit - components: - - pos: 42.5,19.5 - parent: 0 - type: Transform -- uid: 10355 - type: DisposalUnit - components: - - pos: 42.5,25.5 - parent: 0 - type: Transform -- uid: 10356 - type: DisposalTrunk - components: - - pos: 42.5,25.5 - parent: 0 - type: Transform -- uid: 10357 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 42.5,19.5 - parent: 0 - type: Transform -- uid: 10358 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 42.5,22.5 - parent: 0 - type: Transform -- uid: 10359 - type: DisposalPipe - components: - - pos: 41.5,23.5 - parent: 0 - type: Transform -- uid: 10360 - type: DisposalBend - components: - - pos: 42.5,20.5 - parent: 0 - type: Transform -- uid: 10361 - type: DisposalPipe - components: - - pos: 41.5,21.5 - parent: 0 - type: Transform -- uid: 10362 - type: DisposalYJunction - components: - - rot: 1.5707963267948966 rad - pos: 41.5,22.5 - parent: 0 - type: Transform -- uid: 10363 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 41.5,20.5 - parent: 0 - type: Transform -- uid: 10364 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 41.5,24.5 - parent: 0 - type: Transform -- uid: 10365 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 42.5,24.5 - parent: 0 - type: Transform -- uid: 10366 - type: Basketball - components: - - pos: 42.5,22.5 - parent: 0 - type: Transform -- uid: 10367 - type: hydroponicsTray - components: - - pos: 51.5,18.5 - parent: 0 - type: Transform -- uid: 10368 - type: hydroponicsTray - components: - - pos: 51.5,19.5 - parent: 0 - type: Transform -- uid: 10369 - type: hydroponicsTray - components: - - pos: 51.5,20.5 - parent: 0 - type: Transform -- uid: 10370 - type: hydroponicsTray - components: - - pos: 49.5,18.5 - parent: 0 - type: Transform -- uid: 10371 - type: hydroponicsTray - components: - - pos: 49.5,19.5 - parent: 0 - type: Transform -- uid: 10372 - type: hydroponicsTray - components: - - pos: 49.5,20.5 - parent: 0 - type: Transform -- uid: 10373 - type: AirlockGlass - components: - - pos: 44.5,28.5 - parent: 0 - type: Transform -- uid: 10374 - type: Table - components: - - pos: 41.5,27.5 - parent: 0 - type: Transform -- uid: 10375 - type: Table - components: - - pos: 41.5,29.5 - parent: 0 - type: Transform -- uid: 10376 - type: Chair - components: - - pos: 42.5,29.5 - parent: 0 - type: Transform -- uid: 10377 - type: Chair - components: - - pos: 43.5,29.5 - parent: 0 - type: Transform -- uid: 10378 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 43.5,27.5 - parent: 0 - type: Transform -- uid: 10379 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 42.5,27.5 - parent: 0 - type: Transform -- uid: 10380 - type: FoodTinBeans - components: - - pos: 41.41672,27.685352 - parent: 0 - type: Transform -- uid: 10381 - type: FoodTinPeaches - components: - - pos: 41.69797,27.716602 - parent: 0 - type: Transform -- uid: 10382 - type: DrinkWaterBottleFull - components: - - pos: 41.38277,29.693949 - parent: 0 - type: Transform -- uid: 10383 - type: DrinkWaterBottleFull - components: - - pos: 41.492146,29.693949 - parent: 0 - type: Transform -- uid: 10384 - type: DrinkWaterBottleFull - components: - - pos: 41.60152,29.693949 - parent: 0 - type: Transform -- uid: 10385 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10386 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10387 - type: PoweredSmallLight - components: - - pos: 45.5,29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10388 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10389 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10390 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10391 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10392 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10393 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10394 - type: Poweredlight - components: - - pos: 50.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10395 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 53.5,20.5 - parent: 0 - type: Transform -- uid: 10396 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 53.5,21.5 - parent: 0 - type: Transform -- uid: 10397 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 53.5,22.5 - parent: 0 - type: Transform -- uid: 10398 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 53.5,23.5 - parent: 0 - type: Transform -- uid: 10399 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 53.5,24.5 - parent: 0 - type: Transform -- uid: 10400 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 47.5,18.5 - parent: 0 - type: Transform -- uid: 10401 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 47.5,19.5 - parent: 0 - type: Transform -- uid: 10402 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 47.5,20.5 - parent: 0 - type: Transform -- uid: 10403 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 45.5,18.5 - parent: 0 - type: Transform -- uid: 10404 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 45.5,19.5 - parent: 0 - type: Transform -- uid: 10405 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 45.5,20.5 - parent: 0 - type: Transform -- uid: 10406 - type: VendingMachineSeedsUnlocked - components: - - flags: SessionSpecific - type: MetaData - - pos: 49.5,21.5 - parent: 0 - type: Transform -- uid: 10407 - type: SeedExtractor - components: - - pos: 51.5,21.5 - parent: 0 - type: Transform -- uid: 10408 - type: Table - components: - - pos: 51.5,17.5 - parent: 0 - type: Transform -- uid: 10409 - type: Bucket - components: - - pos: 51.48039,17.710197 - parent: 0 - type: Transform -- uid: 10410 - type: Bucket - components: - - pos: 51.63664,17.632072 - parent: 0 - type: Transform -- uid: 10411 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 49.5,19.5 - parent: 0 - type: Transform -- uid: 10412 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 49.5,18.5 - parent: 0 - type: Transform -- uid: 10413 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 49.5,20.5 - parent: 0 - type: Transform -- uid: 10414 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 49.5,21.5 - parent: 0 - type: Transform -- uid: 10415 - type: Table - components: - - pos: 49.5,22.5 - parent: 0 - type: Transform -- uid: 10416 - type: KitchenReagentGrinder - components: - - pos: 51.5,23.5 - parent: 0 - type: Transform -- uid: 10417 - type: FoodCondimentBottleEnzyme - components: - - pos: 51.645626,24.71797 - parent: 0 - type: Transform -- uid: 10418 - type: KitchenMicrowave - components: - - pos: 51.5,25.5 - parent: 0 - type: Transform -- uid: 10419 - type: ReagentContainerFlour - components: - - pos: 51.489376,24.452345 - parent: 0 - type: Transform -- uid: 10420 - type: Bucket - components: - - pos: 51.47375,17.609735 - parent: 0 - type: Transform -- uid: 10421 - type: Bucket - components: - - pos: 51.66125,17.703485 - parent: 0 - type: Transform -- uid: 10422 - type: TargetHuman - components: - - pos: 47.5,22.5 - parent: 0 - type: Transform -- uid: 10423 - type: TargetHuman - components: - - pos: 47.5,23.5 - parent: 0 - type: Transform -- uid: 10424 - type: TableWood - components: - - pos: 49.5,25.5 - parent: 0 - type: Transform -- uid: 10425 - type: CrayonBox - components: - - pos: 49.53625,25.598843 - parent: 0 - type: Transform -- uid: 10426 - type: ChessBoard - components: - - pos: 46.518105,20.451113 - parent: 0 - type: Transform -- uid: 10427 - type: ParchisBoard - components: - - pos: 46.50248,19.462366 - parent: 0 - type: Transform -- uid: 10428 - type: DiceBag - components: - - pos: 46.56498,18.665491 - parent: 0 - type: Transform -- uid: 10429 - type: Table - components: - - pos: 41.5,9.5 - parent: 0 - type: Transform -- uid: 10430 - type: LockerEvidence - components: - - pos: 41.5,10.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10431 - type: LockerEvidence - components: - - pos: 41.5,11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10432 - type: LockerEvidence - components: - - pos: 51.5,10.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10433 - type: LockerEvidence - components: - - pos: 51.5,11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10434 - type: WardrobePrisonFilled - components: - - pos: 44.5,11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10435 - type: WardrobePrisonFilled - components: - - pos: 43.5,11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10436 - type: WardrobePrisonFilled - components: - - pos: 49.5,11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10437 - type: WardrobePrisonFilled - components: - - pos: 48.5,11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10438 - type: Table - components: - - pos: 46.5,11.5 - parent: 0 - type: Transform -- uid: 10439 - type: Table - components: - - pos: 51.5,9.5 - parent: 0 - type: Transform -- uid: 10440 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 41.5,9.5 - parent: 0 - type: Transform -- uid: 10441 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 41.5,9.5 - parent: 0 - type: Transform -- uid: 10442 - type: Stunbaton - components: - - pos: 41.39552,9.469629 - parent: 0 - type: Transform -- uid: 10443 - type: WeaponCapacitorRecharger - components: - - pos: 41.5,9.5 - parent: 0 - type: Transform -- uid: 10444 - type: PaperBin5 - components: - - pos: 51.5,9.5 - parent: 0 - type: Transform -- uid: 10445 - type: BookEscalationSecurity - components: - - pos: 42.459343,18.408422 - parent: 0 - type: Transform -- uid: 10446 - type: ClothingHeadHatChef - components: - - pos: 49.50872,22.595922 - parent: 0 - type: Transform -- uid: 10447 - type: ChairFolding - components: - - pos: 45.5,22.5 - parent: 0 - type: Transform -- uid: 10448 - type: ChairFolding - components: - - pos: 45.5,23.5 - parent: 0 - type: Transform -- uid: 10449 - type: ReagentContainerMilk - components: - - pos: 51.62683,22.595112 - parent: 0 - type: Transform -- uid: 10450 - type: PackPaperRollingFilters - components: - - pos: 42.464806,27.48546 - parent: 0 - type: Transform -- uid: 10451 - type: ReagentContainerMilk - components: - - pos: 51.423706,22.688862 - parent: 0 - type: Transform -- uid: 10452 - type: ToiletDirtyWater - components: - - pos: 48.5,29.5 - parent: 0 - type: Transform -- uid: 10453 - type: CannabisSeeds - components: - - pos: 48.51168,29.54796 - parent: 0 - type: Transform -- uid: 10454 - type: FloorDrain - components: - - pos: 50.5,29.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 10455 - type: FloorDrain - components: - - pos: 51.5,29.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 10456 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: 51.5,27.5 - parent: 0 - type: Transform -- uid: 10457 - type: Mirror - components: - - pos: 52.5,27.5 - parent: 0 - type: Transform -- uid: 10458 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: 47.5,27.5 - parent: 0 - type: Transform -- uid: 10459 - type: Windoor - components: - - pos: 48.5,28.5 - parent: 0 - type: Transform -- uid: 10460 - type: Table - components: - - pos: 46.5,29.5 - parent: 0 - type: Transform -- uid: 10461 - type: Chair - components: - - pos: 45.5,29.5 - parent: 0 - type: Transform -- uid: 10462 - type: FoodDonutCaramel - components: - - pos: 46.5,29.5 - parent: 0 - type: Transform -- uid: 10463 - type: Bed - components: - - pos: 47.5,6.5 - parent: 0 - type: Transform -- uid: 10464 - type: ClothingOuterStraightjacket - components: - - pos: 47.433132,6.4542685 - parent: 0 - type: Transform -- uid: 10465 - type: ClothingMaskMuzzle - components: - - pos: 47.448757,6.3136435 - parent: 0 - type: Transform -- uid: 10466 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 46.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10467 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: 45.5,6.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Solitary - type: SurveillanceCamera -- uid: 10468 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 41.5,15.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Cell 1 - type: SurveillanceCamera -- uid: 10469 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 44.5,15.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Cell 2 - type: SurveillanceCamera -- uid: 10470 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 48.5,15.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Cell 3 - type: SurveillanceCamera -- uid: 10471 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 51.5,15.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Cell 4 - type: SurveillanceCamera -- uid: 10472 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 49.5,25.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig - type: SurveillanceCamera -- uid: 10473 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 44.5,9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10474 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 48.5,9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10475 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10476 - type: Poweredlight - components: - - pos: 44.5,3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10477 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 47.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10478 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10479 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10480 - type: Table - components: - - pos: 51.5,3.5 - parent: 0 - type: Transform -- uid: 10481 - type: Table - components: - - pos: 50.5,3.5 - parent: 0 - type: Transform -- uid: 10482 - type: WeaponCapacitorRecharger - components: - - pos: 50.5,3.5 - parent: 0 - type: Transform -- uid: 10483 - type: Table - components: - - pos: 49.5,6.5 - parent: 0 - type: Transform -- uid: 10484 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: 49.5,4.5 - parent: 0 - type: Transform -- uid: 10485 - type: ComputerCriminalRecords - components: - - rot: 1.5707963267948966 rad - pos: 49.5,5.5 - parent: 0 - type: Transform -- uid: 10486 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 44.5,3.5 - parent: 0 - type: Transform -- uid: 10487 - type: WindoorBrigLocked - components: - - rot: 3.141592653589793 rad - pos: 42.5,4.5 - parent: 0 - type: Transform -- uid: 10488 - type: SignSecureMed - components: - - pos: 53.5,19.5 - parent: 0 - type: Transform -- uid: 10489 - type: SignSecureMed - components: - - pos: 53.5,25.5 - parent: 0 - type: Transform -- uid: 10490 - type: SignSecureMed - components: - - pos: 49.5,31.5 - parent: 0 - type: Transform -- uid: 10491 - type: SignSecureMed - components: - - pos: 44.5,31.5 - parent: 0 - type: Transform -- uid: 10492 - type: SignShock - components: - - pos: 52.5,30.5 - parent: 0 - type: Transform -- uid: 10493 - type: SignSecureMed - components: - - pos: 53.5,9.5 - parent: 0 - type: Transform -- uid: 10494 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 51.5,7.5 - parent: 0 - type: Transform -- uid: 10495 - type: Lamp - components: - - pos: 37.489162,24.909925 - parent: 0 - type: Transform -- uid: 10496 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: 35.578094,20.991646 - parent: 0 - type: Transform -- uid: 10497 - type: Poweredlight - components: - - pos: 36.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10498 - type: LockerHeadOfSecurityFilled - components: - - pos: 39.5,24.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10499 - type: SpawnPointHeadOfSecurity - components: - - pos: 38.5,25.5 - parent: 0 - type: Transform -- uid: 10500 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 37.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10501 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: 35.578094,20.991646 - parent: 0 - type: Transform -- uid: 10502 - type: Carpet - components: - - pos: 37.5,24.5 - parent: 0 - type: Transform -- uid: 10503 - type: Bed - components: - - pos: 39.5,25.5 - parent: 0 - type: Transform -- uid: 10504 - type: BedsheetHOS - components: - - pos: 39.5,25.5 - parent: 0 - type: Transform -- uid: 10505 - type: Carpet - components: - - pos: 38.5,24.5 - parent: 0 - type: Transform -- uid: 10506 - type: Fireplace - components: - - pos: 38.5,26.5 - parent: 0 - type: Transform -- uid: 10507 - type: Dresser - components: - - pos: 39.5,26.5 - parent: 0 - type: Transform -- uid: 10508 - type: WeaponSubMachineGunWt550 - components: - - pos: 35.515594,20.647896 - parent: 0 - type: Transform -- uid: 10509 - type: TableWood - components: - - pos: 37.5,24.5 - parent: 0 - type: Transform -- uid: 10510 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10511 - type: AirlockHeadOfSecurityLocked - components: - - pos: 38.5,23.5 - parent: 0 - type: Transform -- uid: 10512 - type: AirlockHeadOfSecurityLocked - components: - - pos: 34.5,18.5 - parent: 0 - type: Transform -- uid: 10513 - type: ComputerSurveillanceCameraMonitor - components: - - rot: -1.5707963267948966 rad - pos: 39.5,21.5 - parent: 0 - type: Transform -- uid: 10514 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: 39.5,22.5 - parent: 0 - type: Transform -- uid: 10515 - type: TableWood - components: - - pos: 35.5,22.5 - parent: 0 - type: Transform -- uid: 10516 - type: TableWood - components: - - pos: 35.5,21.5 - parent: 0 - type: Transform -- uid: 10517 - type: TableWood - components: - - pos: 35.5,20.5 - parent: 0 - type: Transform -- uid: 10518 - type: TableWood - components: - - pos: 39.5,20.5 - parent: 0 - type: Transform -- uid: 10519 - type: TableWood - components: - - pos: 38.5,20.5 - parent: 0 - type: Transform -- uid: 10520 - type: TableWood - components: - - pos: 37.5,20.5 - parent: 0 - type: Transform -- uid: 10521 - type: TableWood - components: - - pos: 36.5,16.5 - parent: 0 - type: Transform -- uid: 10522 - type: TableWood - components: - - pos: 37.5,16.5 - parent: 0 - type: Transform -- uid: 10523 - type: ComfyChair - components: - - pos: 38.5,21.5 - parent: 0 - type: Transform -- uid: 10524 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 38.5,19.5 - parent: 0 - type: Transform -- uid: 10525 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 35.5,16.5 - parent: 0 - type: Transform -- uid: 10526 - type: Carpet - components: - - pos: 36.5,20.5 - parent: 0 - type: Transform -- uid: 10527 - type: Carpet - components: - - pos: 36.5,21.5 - parent: 0 - type: Transform -- uid: 10528 - type: Carpet - components: - - pos: 36.5,22.5 - parent: 0 - type: Transform -- uid: 10529 - type: Carpet - components: - - pos: 37.5,20.5 - parent: 0 - type: Transform -- uid: 10530 - type: Carpet - components: - - pos: 37.5,21.5 - parent: 0 - type: Transform -- uid: 10531 - type: Carpet - components: - - pos: 37.5,22.5 - parent: 0 - type: Transform -- uid: 10532 - type: Carpet - components: - - pos: 38.5,20.5 - parent: 0 - type: Transform -- uid: 10533 - type: Carpet - components: - - pos: 38.5,21.5 - parent: 0 - type: Transform -- uid: 10534 - type: Carpet - components: - - pos: 38.5,22.5 - parent: 0 - type: Transform -- uid: 10535 - type: Carpet - components: - - pos: 39.5,20.5 - parent: 0 - type: Transform -- uid: 10536 - type: Carpet - components: - - pos: 39.5,21.5 - parent: 0 - type: Transform -- uid: 10537 - type: Carpet - components: - - pos: 39.5,22.5 - parent: 0 - type: Transform -- uid: 10538 - type: Carpet - components: - - pos: 36.5,16.5 - parent: 0 - type: Transform -- uid: 10539 - type: Carpet - components: - - pos: 36.5,17.5 - parent: 0 - type: Transform -- uid: 10540 - type: Carpet - components: - - pos: 37.5,16.5 - parent: 0 - type: Transform -- uid: 10541 - type: Carpet - components: - - pos: 37.5,17.5 - parent: 0 - type: Transform -- uid: 10542 - type: Carpet - components: - - pos: 38.5,16.5 - parent: 0 - type: Transform -- uid: 10543 - type: Carpet - components: - - pos: 38.5,17.5 - parent: 0 - type: Transform -- uid: 10544 - type: DrinkWhiskeyBottleFull - components: - - pos: 37.219055,16.841 - parent: 0 - type: Transform -- uid: 10545 - type: DrinkShotGlass - components: - - pos: 37.625305,16.591 - parent: 0 - type: Transform -- uid: 10546 - type: DrinkShotGlass - components: - - pos: 37.45343,16.43475 - parent: 0 - type: Transform -- uid: 10547 - type: WeaponCapacitorRecharger - components: - - pos: 36.5,16.5 - parent: 0 - type: Transform -- uid: 10548 - type: FoodBoxDonut - components: - - pos: 35.562805,22.59064 - parent: 0 - type: Transform -- uid: 10549 - type: PaperBin5 - components: - - pos: 35.5,21.5 - parent: 0 - type: Transform -- uid: 10550 - type: LampGold - components: - - pos: 37.57843,20.954947 - parent: 0 - type: Transform -- uid: 10551 - type: PhoneInstrument - components: - - pos: 39.469055,20.673697 - parent: 0 - type: Transform -- uid: 10552 - type: CigarGold - components: - - pos: 39.64093,20.533072 - parent: 0 - type: Transform -- uid: 10553 - type: CigarGold - components: - - pos: 39.70343,20.486197 - parent: 0 - type: Transform -- uid: 10554 - type: RubberStampDenied - components: - - pos: 38.48468,20.548697 - parent: 0 - type: Transform -- uid: 10555 - type: PottedPlant16 - components: - - pos: 37.5,22.5 - parent: 0 - type: Transform -- uid: 10556 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 39.5,16.5 - parent: 0 - type: Transform -- uid: 10557 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 39.5,17.5 - parent: 0 - type: Transform -- uid: 10558 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 32.5,7.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell Block - type: SurveillanceCamera -- uid: 10559 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 31.5,10.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's Office - type: SurveillanceCamera -- uid: 10560 - type: BedsheetMedical - components: - - rot: 1.5707963267948966 rad - pos: 44.5,1.5 - parent: 0 - type: Transform -- uid: 10561 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 48.5,1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10562 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 48.5,2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10563 - type: TableGlass - components: - - pos: 44.5,3.5 - parent: 0 - type: Transform -- uid: 10564 - type: TableGlass - components: - - pos: 45.5,3.5 - parent: 0 - type: Transform -- uid: 10565 - type: MedkitFilled - components: - - pos: 44.66246,3.579205 - parent: 0 - type: Transform -- uid: 10566 - type: MedkitBurnFilled - components: - - pos: 45.19371,3.579205 - parent: 0 - type: Transform -- uid: 10567 - type: ClothingMaskSterile - components: - - pos: 45.50621,1.547955 - parent: 0 - type: Transform -- uid: 10568 - type: ClothingHandsGlovesLatex - components: - - pos: 43.459335,1.59483 - parent: 0 - type: Transform -- uid: 10569 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 41.5,1.5 - parent: 0 - type: Transform -- uid: 10570 - type: SurveillanceCameraSecurity - components: - - pos: 43.5,1.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig Med - type: SurveillanceCamera -- uid: 10571 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 46.5,11.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Entrance - type: SurveillanceCamera -- uid: 10572 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 35.5,14.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Locker Room - type: SurveillanceCamera -- uid: 10573 - type: SignArmory - components: - - rot: 3.141592653589793 rad - pos: 22.5,15.5 - parent: 0 - type: Transform -- uid: 10574 - type: SignDirectionalBrig - components: - - rot: 1.5707963267948966 rad - pos: 26.5,8.5 - parent: 0 - type: Transform -- uid: 10575 - type: SignRedFour - components: - - rot: 1.5707963267948966 rad - pos: 51.5,12.5 - parent: 0 - type: Transform -- uid: 10576 - type: SignRedFour - components: - - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 0 - type: Transform -- uid: 10577 - type: SignHead - components: - - rot: 1.5707963267948966 rad - pos: 34.5,20.5 - parent: 0 - type: Transform -- uid: 10578 - type: SignRedOne - components: - - rot: 1.5707963267948966 rad - pos: 26.5,4.5 - parent: 0 - type: Transform -- uid: 10579 - type: SignRedOne - components: - - rot: 1.5707963267948966 rad - pos: 41.5,12.5 - parent: 0 - type: Transform -- uid: 10580 - type: SignSecureMedRed - components: - - rot: 1.5707963267948966 rad - pos: 44.5,8.5 - parent: 0 - type: Transform -- uid: 10581 - type: SignSecureMedRed - components: - - rot: 1.5707963267948966 rad - pos: 20.5,8.5 - parent: 0 - type: Transform -- uid: 10582 - type: SignSecureMedRed - components: - - rot: 1.5707963267948966 rad - pos: 22.5,27.5 - parent: 0 - type: Transform -- uid: 10583 - type: SignRedThree - components: - - rot: 1.5707963267948966 rad - pos: 32.5,4.5 - parent: 0 - type: Transform -- uid: 10584 - type: SignRedThree - components: - - rot: 1.5707963267948966 rad - pos: 48.5,12.5 - parent: 0 - type: Transform -- uid: 10585 - type: SignRedTwo - components: - - rot: 1.5707963267948966 rad - pos: 44.5,12.5 - parent: 0 - type: Transform -- uid: 10586 - type: SignRedTwo - components: - - rot: 1.5707963267948966 rad - pos: 29.5,4.5 - parent: 0 - type: Transform -- uid: 10587 - type: SignalButton - components: - - name: Room Shutters - type: MetaData - - pos: 46.5,12.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10588 - - port: Toggle - uid: 10589 - - port: Toggle - uid: 10590 - - port: Toggle - uid: 10591 - type: SignalTransmitter -- uid: 10588 - type: ShuttersNormalOpen - components: - - pos: 42.5,16.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10587 - type: SignalReceiver -- uid: 10589 - type: ShuttersNormalOpen - components: - - pos: 45.5,16.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10587 - type: SignalReceiver -- uid: 10590 - type: ShuttersNormalOpen - components: - - pos: 47.5,16.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10587 - type: SignalReceiver -- uid: 10591 - type: ShuttersNormalOpen - components: - - pos: 50.5,16.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10587 - type: SignalReceiver -- uid: 10592 - type: TableReinforced - components: - - pos: 21.5,9.5 - parent: 0 - type: Transform -- uid: 10593 - type: TableReinforced - components: - - pos: 20.5,9.5 - parent: 0 - type: Transform -- uid: 10594 - type: TableReinforced - components: - - pos: 19.5,9.5 - parent: 0 - type: Transform -- uid: 10595 - type: TableReinforced - components: - - pos: 18.5,15.5 - parent: 0 - type: Transform -- uid: 10596 - type: TableReinforced - components: - - pos: 19.5,15.5 - parent: 0 - type: Transform -- uid: 10597 - type: TableReinforced - components: - - pos: 20.5,15.5 - parent: 0 - type: Transform -- uid: 10598 - type: TableReinforced - components: - - pos: 14.5,13.5 - parent: 0 - type: Transform -- uid: 10599 - type: TableReinforced - components: - - pos: 14.5,14.5 - parent: 0 - type: Transform -- uid: 10600 - type: SpawnVehicleSecway - components: - - pos: 15.5,15.5 - parent: 0 - type: Transform -- uid: 10601 - type: VehicleKeySecway - components: - - pos: 15.48284,15.515955 - parent: 0 - type: Transform -- uid: 10602 - type: ClosetBombFilled - components: - - pos: 17.5,9.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10603 - type: LockerSyndicatePersonal - components: - - pos: 18.5,9.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 10604 - - 10605 - type: ContainerContainer -- uid: 10604 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 10603 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 10605 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 10603 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 10606 - type: ClosetL3SecurityFilled - components: - - pos: 16.5,9.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10607 - type: CrateSecurityNonlethal - components: - - pos: 15.5,9.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10608 - type: WeaponCapacitorRecharger - components: - - pos: 21.5,9.5 - parent: 0 - type: Transform -- uid: 10609 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: 8.5,12.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Exterior Armory West - type: SurveillanceCamera -- uid: 10610 - type: SurveillanceCameraSecurity - components: - - pos: 13.5,16.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Exterior Armory North - type: SurveillanceCamera -- uid: 10611 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 16.5,7.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Exterior Armory South - type: SurveillanceCamera -- uid: 10612 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - type: SurveillanceCamera -- uid: 10613 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 11.5,9.5 - parent: 0 - type: Transform -- uid: 10614 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 11.5,10.5 - parent: 0 - type: Transform -- uid: 10615 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 11.5,11.5 - parent: 0 - type: Transform -- uid: 10616 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 11.5,12.5 - parent: 0 - type: Transform -- uid: 10617 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 11.5,13.5 - parent: 0 - type: Transform -- uid: 10618 - type: Rack - components: - - pos: 17.5,15.5 - parent: 0 - type: Transform -- uid: 10619 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 17.5,15.5 - parent: 0 - type: Transform -- uid: 10620 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 17.5,15.5 - parent: 0 - type: Transform -- uid: 10621 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 18.5,9.5 - parent: 0 - type: Transform -- uid: 10622 - type: WeaponCapacitorRecharger - components: - - pos: 20.5,9.5 - parent: 0 - type: Transform -- uid: 10623 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 21.5,13.5 - parent: 0 - type: Transform -- uid: 10624 - type: ClothingOuterArmorReflective - components: - - pos: 17.519209,15.590809 - parent: 0 - type: Transform -- uid: 10625 - type: ClothingOuterArmorReflective - components: - - pos: 17.519209,15.481434 - parent: 0 - type: Transform -- uid: 10626 - type: ClothingOuterArmorReflective - components: - - pos: 17.519209,15.387684 - parent: 0 - type: Transform -- uid: 10627 - type: WeaponDisabler - components: - - pos: 16.534834,13.543934 - parent: 0 - type: Transform -- uid: 10628 - type: WeaponDisabler - components: - - pos: 16.534834,13.465809 - parent: 0 - type: Transform -- uid: 10629 - type: WeaponDisabler - components: - - pos: 16.534834,13.340809 - parent: 0 - type: Transform -- uid: 10630 - type: WeaponShotgunKammerer - components: - - pos: 16.519209,11.668934 - parent: 0 - type: Transform -- uid: 10631 - type: WeaponShotgunKammerer - components: - - pos: 16.503584,11.559559 - parent: 0 - type: Transform -- uid: 10632 - type: WeaponShotgunKammerer - components: - - pos: 16.503584,11.403309 - parent: 0 - type: Transform -- uid: 10633 - type: BoxShotgunSlug - components: - - pos: 17.066084,11.684559 - parent: 0 - type: Transform -- uid: 10634 - type: BoxLethalshot - components: - - pos: 17.534834,11.575184 - parent: 0 - type: Transform -- uid: 10635 - type: BoxLethalshot - components: - - pos: 17.519209,11.684559 - parent: 0 - type: Transform -- uid: 10636 - type: WeaponLaserCarbine - components: - - pos: 18.581709,11.700184 - parent: 0 - type: Transform -- uid: 10637 - type: WeaponLaserCarbine - components: - - pos: 18.581709,11.606434 - parent: 0 - type: Transform -- uid: 10638 - type: WeaponLaserCarbine - components: - - pos: 18.581709,11.497059 - parent: 0 - type: Transform -- uid: 10639 - type: WeaponPistolMk58 - components: - - pos: 17.56414,13.229148 - parent: 0 - type: Transform -- uid: 10640 - type: WeaponPistolMk58 - components: - - pos: 17.56414,13.354148 - parent: 0 - type: Transform -- uid: 10641 - type: WeaponPistolMk58 - components: - - pos: 17.56414,13.463523 - parent: 0 - type: Transform -- uid: 10642 - type: BoxBeanbag - components: - - pos: 19.441084,9.497059 - parent: 0 - type: Transform -- uid: 10643 - type: BoxBeanbag - components: - - pos: 19.441084,9.700184 - parent: 0 - type: Transform -- uid: 10644 - type: BoxShotgunSlug - components: - - pos: 17.066084,11.559559 - parent: 0 - type: Transform -- uid: 10645 - type: MagazinePistolRubber - components: - - pos: 18.329765,15.572898 - parent: 0 - type: Transform -- uid: 10646 - type: MagazinePistolRubber - components: - - pos: 18.454765,15.572898 - parent: 0 - type: Transform -- uid: 10647 - type: MagazinePistolRubber - components: - - pos: 18.611015,15.572898 - parent: 0 - type: Transform -- uid: 10648 - type: MagazinePistol - components: - - pos: 17.673515,13.447898 - parent: 0 - type: Transform -- uid: 10649 - type: MagazinePistol - components: - - pos: 17.673515,13.447898 - parent: 0 - type: Transform -- uid: 10650 - type: MagazinePistol - components: - - pos: 17.673515,13.447898 - parent: 0 - type: Transform -- uid: 10651 - type: MagazinePistol - components: - - pos: 17.673515,13.447898 - parent: 0 - type: Transform -- uid: 10652 - type: MagazinePistol - components: - - pos: 17.673515,13.447898 - parent: 0 - type: Transform -- uid: 10653 - type: MagazinePistol - components: - - pos: 17.673515,13.447898 - parent: 0 - type: Transform -- uid: 10654 - type: ClothingHeadHelmetRiot - components: - - pos: 18.486015,13.337078 - parent: 0 - type: Transform -- uid: 10655 - type: ClothingHeadHelmetRiot - components: - - pos: 18.486015,13.337078 - parent: 0 - type: Transform -- uid: 10656 - type: ClothingHeadHelmetRiot - components: - - pos: 18.486015,13.337078 - parent: 0 - type: Transform -- uid: 10657 - type: ClothingOuterArmorRiot - components: - - pos: 18.68914,13.524578 - parent: 0 - type: Transform -- uid: 10658 - type: ClothingOuterArmorRiot - components: - - pos: 18.68914,13.524578 - parent: 0 - type: Transform -- uid: 10659 - type: ClothingOuterArmorRiot - components: - - pos: 18.68914,13.524578 - parent: 0 - type: Transform -- uid: 10660 - type: RiotShield - components: - - pos: 19.173515,13.383953 - parent: 0 - type: Transform -- uid: 10661 - type: RiotShield - components: - - pos: 19.173515,13.383953 - parent: 0 - type: Transform -- uid: 10662 - type: RiotShield - components: - - pos: 19.173515,13.383953 - parent: 0 - type: Transform -- uid: 10663 - type: ClothingOuterArmorBulletproof - components: - - pos: 19.548515,13.446453 - parent: 0 - type: Transform -- uid: 10664 - type: ClothingOuterArmorBulletproof - components: - - pos: 19.548515,13.446453 - parent: 0 - type: Transform -- uid: 10665 - type: ClothingOuterArmorBulletproof - components: - - pos: 19.548515,13.446453 - parent: 0 - type: Transform -- uid: 10666 - type: WeaponRifleLecter - components: - - pos: 19.43914,12.477703 - parent: 0 - type: Transform -- uid: 10667 - type: WeaponRifleLecter - components: - - pos: 19.423515,12.602703 - parent: 0 - type: Transform -- uid: 10668 - type: WeaponRifleLecter - components: - - pos: 19.43914,12.321453 - parent: 0 - type: Transform -- uid: 10669 - type: MagazineRifle - components: - - pos: 16.40789,12.540203 - parent: 0 - type: Transform -- uid: 10670 - type: MagazineRifle - components: - - pos: 16.517265,12.540203 - parent: 0 - type: Transform -- uid: 10671 - type: MagazineRifle - components: - - pos: 16.59539,12.524578 - parent: 0 - type: Transform -- uid: 10672 - type: MagazineRifle - components: - - pos: 16.72039,12.524578 - parent: 0 - type: Transform -- uid: 10673 - type: MagazineRifle - components: - - pos: 16.423515,12.383953 - parent: 0 - type: Transform -- uid: 10674 - type: MagazineRifle - components: - - pos: 16.53289,12.383953 - parent: 0 - type: Transform -- uid: 10675 - type: MagazineRifle - components: - - pos: 16.65789,12.383953 - parent: 0 - type: Transform -- uid: 10676 - type: MagazineRifle - components: - - pos: 16.75164,12.383953 - parent: 0 - type: Transform -- uid: 10677 - type: WindoorArmoryLocked - components: - - pos: 17.5,15.5 - parent: 0 - type: Transform -- uid: 10678 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: 16.5,13.5 - parent: 0 - type: Transform -- uid: 10679 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: 17.5,13.5 - parent: 0 - type: Transform -- uid: 10680 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: 18.5,13.5 - parent: 0 - type: Transform -- uid: 10681 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: 19.5,13.5 - parent: 0 - type: Transform -- uid: 10682 - type: WindoorArmoryLocked - components: - - rot: 1.5707963267948966 rad - pos: 19.5,12.5 - parent: 0 - type: Transform -- uid: 10683 - type: WindoorArmoryLocked - components: - - pos: 17.5,11.5 - parent: 0 - type: Transform -- uid: 10684 - type: WindoorArmoryLocked - components: - - pos: 16.5,11.5 - parent: 0 - type: Transform -- uid: 10685 - type: WindoorArmoryLocked - components: - - rot: -1.5707963267948966 rad - pos: 16.5,12.5 - parent: 0 - type: Transform -- uid: 10686 - type: WindoorArmoryLocked - components: - - pos: 19.5,11.5 - parent: 0 - type: Transform -- uid: 10687 - type: WindoorArmoryLocked - components: - - pos: 18.5,11.5 - parent: 0 - type: Transform -- uid: 10688 - type: BoxFlashbang - components: - - pos: 19.137007,15.606925 - parent: 0 - type: Transform -- uid: 10689 - type: LockerSecurityFilled - components: - - pos: 16.5,15.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10690 - type: JetpackSecurityFilled - components: - - pos: 19.436832,11.585939 - parent: 0 - type: Transform -- uid: 10691 - type: FlashlightSeclite - components: - - pos: 14.43111,13.591003 - parent: 0 - type: Transform -- uid: 10692 - type: PaperBin10 - components: - - pos: 14.5,14.5 - parent: 0 - type: Transform -- uid: 10693 - type: BoxHandcuff - components: - - pos: 19.602985,15.606628 - parent: 0 - type: Transform -- uid: 10694 - type: BoxZiptie - components: - - pos: 20.071735,15.606628 - parent: 0 - type: Transform -- uid: 10695 - type: BoxZiptie - components: - - pos: 31.688059,12.85841 - parent: 0 - type: Transform -- uid: 10696 - type: ClothingEyesGlassesSunglasses - components: - - pos: 21.021912,9.466003 - parent: 0 - type: Transform -- uid: 10697 - type: ClothingEyesGlassesSunglasses - components: - - pos: 21.021912,9.591003 - parent: 0 - type: Transform -- uid: 10698 - type: Flash - components: - - pos: 20.110102,9.557616 - parent: 0 - type: Transform -- uid: 10699 - type: TableWood - components: - - pos: 37.5,26.5 - parent: 0 - type: Transform -- uid: 10700 - type: ClothingUniformJumpsuitHoSParadeMale - components: - - pos: 37.572792,26.613047 - parent: 0 - type: Transform -- uid: 10701 - type: ClothingUniformJumpskirtHoSParadeMale - components: - - pos: 37.479042,26.722422 - parent: 0 - type: Transform -- uid: 10702 - type: ClothingHeadHatHoshat - components: - - pos: 37.557167,26.847422 - parent: 0 - type: Transform -- uid: 10703 - type: Lamp - components: - - pos: 35.548702,24.925547 - parent: 0 - type: Transform -- uid: 10704 - type: Catwalk - components: - - pos: 16.5,5.5 - parent: 0 - type: Transform -- uid: 10705 - type: Catwalk - components: - - pos: 16.5,6.5 - parent: 0 - type: Transform -- uid: 10706 - type: Catwalk - components: - - pos: 16.5,7.5 - parent: 0 - type: Transform -- uid: 10707 - type: Catwalk - components: - - pos: 17.5,6.5 - parent: 0 - type: Transform -- uid: 10708 - type: Catwalk - components: - - pos: 15.5,7.5 - parent: 0 - type: Transform -- uid: 10709 - type: Catwalk - components: - - pos: 14.5,7.5 - parent: 0 - type: Transform -- uid: 10710 - type: Catwalk - components: - - pos: 13.5,7.5 - parent: 0 - type: Transform -- uid: 10711 - type: Catwalk - components: - - pos: 12.5,7.5 - parent: 0 - type: Transform -- uid: 10712 - type: Catwalk - components: - - pos: 11.5,7.5 - parent: 0 - type: Transform -- uid: 10713 - type: Catwalk - components: - - pos: 10.5,7.5 - parent: 0 - type: Transform -- uid: 10714 - type: Catwalk - components: - - pos: 9.5,7.5 - parent: 0 - type: Transform -- uid: 10715 - type: Catwalk - components: - - pos: 9.5,8.5 - parent: 0 - type: Transform -- uid: 10716 - type: Catwalk - components: - - pos: 9.5,9.5 - parent: 0 - type: Transform -- uid: 10717 - type: Catwalk - components: - - pos: 9.5,10.5 - parent: 0 - type: Transform -- uid: 10718 - type: Catwalk - components: - - pos: 9.5,11.5 - parent: 0 - type: Transform -- uid: 10719 - type: Catwalk - components: - - pos: 9.5,12.5 - parent: 0 - type: Transform -- uid: 10720 - type: Catwalk - components: - - pos: 9.5,13.5 - parent: 0 - type: Transform -- uid: 10721 - type: Catwalk - components: - - pos: 9.5,14.5 - parent: 0 - type: Transform -- uid: 10722 - type: Catwalk - components: - - pos: 9.5,15.5 - parent: 0 - type: Transform -- uid: 10723 - type: Catwalk - components: - - pos: 9.5,16.5 - parent: 0 - type: Transform -- uid: 10724 - type: Catwalk - components: - - pos: 8.5,15.5 - parent: 0 - type: Transform -- uid: 10725 - type: Catwalk - components: - - pos: 7.5,15.5 - parent: 0 - type: Transform -- uid: 10726 - type: Catwalk - components: - - pos: 6.5,15.5 - parent: 0 - type: Transform -- uid: 10727 - type: Catwalk - components: - - pos: 5.5,15.5 - parent: 0 - type: Transform -- uid: 10728 - type: Catwalk - components: - - pos: 4.5,15.5 - parent: 0 - type: Transform -- uid: 10729 - type: Catwalk - components: - - pos: 3.5,15.5 - parent: 0 - type: Transform -- uid: 10730 - type: Catwalk - components: - - pos: 5.5,16.5 - parent: 0 - type: Transform -- uid: 10731 - type: Catwalk - components: - - pos: 10.5,16.5 - parent: 0 - type: Transform -- uid: 10732 - type: Catwalk - components: - - pos: 11.5,16.5 - parent: 0 - type: Transform -- uid: 10733 - type: Catwalk - components: - - pos: 12.5,16.5 - parent: 0 - type: Transform -- uid: 10734 - type: Catwalk - components: - - pos: 12.5,17.5 - parent: 0 - type: Transform -- uid: 10735 - type: Catwalk - components: - - pos: 12.5,18.5 - parent: 0 - type: Transform -- uid: 10736 - type: Catwalk - components: - - pos: 12.5,19.5 - parent: 0 - type: Transform -- uid: 10737 - type: Catwalk - components: - - pos: 12.5,20.5 - parent: 0 - type: Transform -- uid: 10738 - type: Catwalk - components: - - pos: 12.5,21.5 - parent: 0 - type: Transform -- uid: 10739 - type: Catwalk - components: - - pos: 12.5,22.5 - parent: 0 - type: Transform -- uid: 10740 - type: Catwalk - components: - - pos: 12.5,23.5 - parent: 0 - type: Transform -- uid: 10741 - type: AirlockMaintLocked - components: - - pos: 12.5,24.5 - parent: 0 - type: Transform -- uid: 10742 - type: Catwalk - components: - - pos: 12.5,25.5 - parent: 0 - type: Transform -- uid: 10743 - type: Catwalk - components: - - pos: 13.5,25.5 - parent: 0 - type: Transform -- uid: 10744 - type: Catwalk - components: - - pos: 14.5,25.5 - parent: 0 - type: Transform -- uid: 10745 - type: Catwalk - components: - - pos: 14.5,26.5 - parent: 0 - type: Transform -- uid: 10746 - type: Catwalk - components: - - pos: 14.5,27.5 - parent: 0 - type: Transform -- uid: 10747 - type: Catwalk - components: - - pos: 14.5,28.5 - parent: 0 - type: Transform -- uid: 10748 - type: Catwalk - components: - - pos: 14.5,29.5 - parent: 0 - type: Transform -- uid: 10749 - type: Catwalk - components: - - pos: 15.5,29.5 - parent: 0 - type: Transform -- uid: 10750 - type: Catwalk - components: - - pos: 16.5,29.5 - parent: 0 - type: Transform -- uid: 10751 - type: Catwalk - components: - - pos: 17.5,29.5 - parent: 0 - type: Transform -- uid: 10752 - type: Catwalk - components: - - pos: 18.5,29.5 - parent: 0 - type: Transform -- uid: 10753 - type: Catwalk - components: - - pos: 13.5,29.5 - parent: 0 - type: Transform -- uid: 10754 - type: Catwalk - components: - - pos: 12.5,29.5 - parent: 0 - type: Transform -- uid: 10755 - type: Catwalk - components: - - pos: 11.5,29.5 - parent: 0 - type: Transform -- uid: 10756 - type: Catwalk - components: - - pos: 10.5,29.5 - parent: 0 - type: Transform -- uid: 10757 - type: Catwalk - components: - - pos: 9.5,29.5 - parent: 0 - type: Transform -- uid: 10758 - type: Catwalk - components: - - pos: 9.5,30.5 - parent: 0 - type: Transform -- uid: 10759 - type: Catwalk - components: - - pos: 19.5,29.5 - parent: 0 - type: Transform -- uid: 10760 - type: Catwalk - components: - - pos: 19.5,30.5 - parent: 0 - type: Transform -- uid: 10761 - type: Catwalk - components: - - pos: 8.5,29.5 - parent: 0 - type: Transform -- uid: 10762 - type: Catwalk - components: - - pos: 11.5,22.5 - parent: 0 - type: Transform -- uid: 10763 - type: Catwalk - components: - - pos: 10.5,22.5 - parent: 0 - type: Transform -- uid: 10764 - type: Catwalk - components: - - pos: 9.5,22.5 - parent: 0 - type: Transform -- uid: 10765 - type: Catwalk - components: - - pos: 8.5,22.5 - parent: 0 - type: Transform -- uid: 10766 - type: SignElectricalMed - components: - - pos: 4.5,17.5 - parent: 0 - type: Transform -- uid: 10767 - type: SpawnPointSecurityOfficer - components: - - pos: 33.5,13.5 - parent: 0 - type: Transform -- uid: 10768 - type: SpawnPointSecurityOfficer - components: - - pos: 34.5,13.5 - parent: 0 - type: Transform -- uid: 10769 - type: SpawnPointSecurityOfficer - components: - - pos: 33.5,10.5 - parent: 0 - type: Transform -- uid: 10770 - type: SpawnPointSecurityOfficer - components: - - pos: 34.5,10.5 - parent: 0 - type: Transform -- uid: 10771 - type: SpawnPointSecurityOfficer - components: - - pos: 35.5,10.5 - parent: 0 - type: Transform -- uid: 10772 - type: SpawnPointSecurityOfficer - components: - - pos: 35.5,13.5 - parent: 0 - type: Transform -- uid: 10773 - type: SpawnPointSecurityCadet - components: - - pos: 35.5,11.5 - parent: 0 - type: Transform -- uid: 10774 - type: SpawnPointSecurityCadet - components: - - pos: 35.5,12.5 - parent: 0 - type: Transform -- uid: 10775 - type: ClothingBeltSecurityFilled - components: - - pos: 27.509813,19.98044 - parent: 0 - type: Transform -- uid: 10776 - type: ClothingEyesHudSecurity - components: - - pos: 31.400438,19.544239 - parent: 0 - type: Transform -- uid: 10777 - type: ClothingEyesHudSecurity - components: - - pos: 31.244188,19.653614 - parent: 0 - type: Transform -- uid: 10778 - type: SecurityTechFab - components: - - pos: 21.5,15.5 - parent: 0 - type: Transform -- uid: 10779 - type: Grille - components: - - pos: 14.5,17.5 - parent: 0 - type: Transform -- uid: 10780 - type: Floodlight - components: - - pos: 15.496946,17.498087 - parent: 0 - type: Transform -- uid: 10781 - type: WaterTankFull - components: - - pos: 10.5,23.5 - parent: 0 - type: Transform -- uid: 10782 - type: WeldingFuelTankFull - components: - - pos: 11.5,23.5 - parent: 0 - type: Transform -- uid: 10783 - type: ClosetEmergencyFilledRandom - components: - - pos: 6.5,16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10784 - type: ClosetFireFilled - components: - - pos: 7.5,16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10785 - type: CrateFilledSpawner - components: - - pos: 4.5,16.5 - parent: 0 - type: Transform -- uid: 10786 - type: LockerElectricalSuppliesFilled - components: - - pos: 6.5,19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10787 - type: Catwalk - components: - - pos: 5.5,18.5 - parent: 0 - type: Transform -- uid: 10788 - type: Catwalk - components: - - pos: 5.5,19.5 - parent: 0 - type: Transform -- uid: 10789 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 6.5,18.5 - parent: 0 - type: Transform -- uid: 10790 - type: Rack - components: - - pos: 4.5,18.5 - parent: 0 - type: Transform -- uid: 10791 - type: ClothingOuterVestHazard - components: - - pos: 4.509126,18.506014 - parent: 0 - type: Transform -- uid: 10792 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 12.5,2.5 - parent: 0 - type: Transform -- uid: 10793 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 12.5,0.5 - parent: 0 - type: Transform -- uid: 10794 - type: CableApcExtension - components: - - pos: 12.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10795 - type: CableApcExtension - components: - - pos: 11.5,0.5 - parent: 0 - type: Transform -- uid: 10796 - type: CableApcExtension - components: - - pos: 10.5,0.5 - parent: 0 - type: Transform -- uid: 10797 - type: CableApcExtension - components: - - pos: 9.5,0.5 - parent: 0 - type: Transform -- uid: 10798 - type: CableApcExtension - components: - - pos: 8.5,0.5 - parent: 0 - type: Transform -- uid: 10799 - type: CableApcExtension - components: - - pos: 8.5,-0.5 - parent: 0 - type: Transform -- uid: 10800 - type: CableApcExtension - components: - - pos: 8.5,-1.5 - parent: 0 - type: Transform -- uid: 10801 - type: CableApcExtension - components: - - pos: 13.5,0.5 - parent: 0 - type: Transform -- uid: 10802 - type: CableApcExtension - components: - - pos: 13.5,-0.5 - parent: 0 - type: Transform -- uid: 10803 - type: CableApcExtension - components: - - pos: 13.5,-1.5 - parent: 0 - type: Transform -- uid: 10804 - type: CableApcExtension - components: - - pos: 12.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10805 - type: CableApcExtension - components: - - pos: 13.5,2.5 - parent: 0 - type: Transform -- uid: 10806 - type: CableApcExtension - components: - - pos: 13.5,3.5 - parent: 0 - type: Transform -- uid: 10807 - type: CableApcExtension - components: - - pos: 13.5,4.5 - parent: 0 - type: Transform -- uid: 10808 - type: CableApcExtension - components: - - pos: 11.5,2.5 - parent: 0 - type: Transform -- uid: 10809 - type: CableApcExtension - components: - - pos: 11.5,2.5 - parent: 0 - type: Transform -- uid: 10810 - type: CableApcExtension - components: - - pos: 10.5,2.5 - parent: 0 - type: Transform -- uid: 10811 - type: CableApcExtension - components: - - pos: 9.5,2.5 - parent: 0 - type: Transform -- uid: 10812 - type: CableApcExtension - components: - - pos: 8.5,2.5 - parent: 0 - type: Transform -- uid: 10813 - type: CableApcExtension - components: - - pos: 8.5,3.5 - parent: 0 - type: Transform -- uid: 10814 - type: CableApcExtension - components: - - pos: 8.5,4.5 - parent: 0 - type: Transform -- uid: 10815 - type: CableApcExtension - components: - - pos: 7.5,3.5 - parent: 0 - type: Transform -- uid: 10816 - type: CableApcExtension - components: - - pos: 7.5,-0.5 - parent: 0 - type: Transform -- uid: 10817 - type: CableApcExtension - components: - - pos: 14.5,-0.5 - parent: 0 - type: Transform -- uid: 10818 - type: CableApcExtension - components: - - pos: 15.5,-0.5 - parent: 0 - type: Transform -- uid: 10819 - type: CableApcExtension - components: - - pos: 16.5,-0.5 - parent: 0 - type: Transform -- uid: 10820 - type: CableApcExtension - components: - - pos: 14.5,3.5 - parent: 0 - type: Transform -- uid: 10821 - type: CableApcExtension - components: - - pos: 15.5,3.5 - parent: 0 - type: Transform -- uid: 10822 - type: CableApcExtension - components: - - pos: 16.5,3.5 - parent: 0 - type: Transform -- uid: 10823 - type: CableMV - components: - - pos: 9.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10824 - type: CableMV - components: - - pos: 9.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10825 - type: CableMV - components: - - pos: 9.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10826 - type: CableMV - components: - - pos: 9.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10827 - type: CableMV - components: - - pos: 9.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10828 - type: CableMV - components: - - pos: 9.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10829 - type: CableMV - components: - - pos: 9.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10830 - type: CableMV - components: - - pos: 9.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10831 - type: CableMV - components: - - pos: 10.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10832 - type: CableMV - components: - - pos: 11.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10833 - type: CableMV - components: - - pos: 12.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10834 - type: CableMV - components: - - pos: 13.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10835 - type: CableMV - components: - - pos: 14.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10836 - type: CableMV - components: - - pos: 15.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10837 - type: CableMV - components: - - pos: 16.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10838 - type: CableMV - components: - - pos: 16.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10839 - type: CableMV - components: - - pos: 16.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10840 - type: CableMV - components: - - pos: 16.5,4.5 - parent: 0 - type: Transform -- uid: 10841 - type: CableMV - components: - - pos: 16.5,3.5 - parent: 0 - type: Transform -- uid: 10842 - type: CableMV - components: - - pos: 15.5,3.5 - parent: 0 - type: Transform -- uid: 10843 - type: CableMV - components: - - pos: 14.5,3.5 - parent: 0 - type: Transform -- uid: 10844 - type: CableMV - components: - - pos: 13.5,3.5 - parent: 0 - type: Transform -- uid: 10845 - type: CableMV - components: - - pos: 12.5,3.5 - parent: 0 - type: Transform -- uid: 10846 - type: CableMV - components: - - pos: 12.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10847 - type: CableMV - components: - - pos: 16.5,2.5 - parent: 0 - type: Transform -- uid: 10848 - type: CableMV - components: - - pos: 16.5,1.5 - parent: 0 - type: Transform -- uid: 10849 - type: CableMV - components: - - pos: 16.5,0.5 - parent: 0 - type: Transform -- uid: 10850 - type: CableMV - components: - - pos: 16.5,-0.5 - parent: 0 - type: Transform -- uid: 10851 - type: CableMV - components: - - pos: 15.5,-0.5 - parent: 0 - type: Transform -- uid: 10852 - type: CableMV - components: - - pos: 14.5,-0.5 - parent: 0 - type: Transform -- uid: 10853 - type: CableMV - components: - - pos: 13.5,-0.5 - parent: 0 - type: Transform -- uid: 10854 - type: CableMV - components: - - pos: 12.5,-0.5 - parent: 0 - type: Transform -- uid: 10855 - type: CableMV - components: - - pos: 12.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10856 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 14.5,-2.5 - parent: 0 - type: Transform -- uid: 10857 - type: DisposalTrunk - components: - - pos: 14.5,5.5 - parent: 0 - type: Transform -- uid: 10858 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 14.5,3.5 - parent: 0 - type: Transform -- uid: 10859 - type: DisposalBend - components: - - pos: 16.5,3.5 - parent: 0 - type: Transform -- uid: 10860 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 0 - type: Transform -- uid: 10861 - type: DisposalBend - components: - - pos: 17.5,0.5 - parent: 0 - type: Transform -- uid: 10862 - type: DisposalPipe - components: - - pos: 14.5,-1.5 - parent: 0 - type: Transform -- uid: 10863 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 0 - type: Transform -- uid: 10864 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 16.5,0.5 - parent: 0 - type: Transform -- uid: 10865 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,1.5 - parent: 0 - type: Transform -- uid: 10866 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,2.5 - parent: 0 - type: Transform -- uid: 10867 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,3.5 - parent: 0 - type: Transform -- uid: 10868 - type: DisposalPipe - components: - - pos: 14.5,4.5 - parent: 0 - type: Transform -- uid: 10869 - type: DisposalJunction - components: - - pos: 17.5,-0.5 - parent: 0 - type: Transform -- uid: 10870 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 0 - type: Transform -- uid: 10871 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 17.5,-1.5 - parent: 0 - type: Transform -- uid: 10872 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 17.5,-2.5 - parent: 0 - type: Transform -- uid: 10873 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 17.5,-3.5 - parent: 0 - type: Transform -- uid: 10874 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 17.5,-4.5 - parent: 0 - type: Transform -- uid: 10875 - type: DisposalUnit - components: - - pos: 14.5,5.5 - parent: 0 - type: Transform -- uid: 10876 - type: DisposalUnit - components: - - pos: 14.5,-2.5 - parent: 0 - type: Transform -- uid: 10877 - type: SignalButton - components: - - pos: 12.5,-1.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10879 - - port: Toggle - uid: 10880 - - port: Toggle - uid: 10881 - type: SignalTransmitter -- uid: 10878 - type: SignalButton - components: - - pos: 12.5,4.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10884 - - port: Toggle - uid: 10883 - - port: Toggle - uid: 10882 - type: SignalTransmitter -- uid: 10879 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10877 - type: SignalReceiver -- uid: 10880 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10877 - type: SignalReceiver -- uid: 10881 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10877 - type: SignalReceiver -- uid: 10882 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 7.5,2.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10878 - type: SignalReceiver -- uid: 10883 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10878 - type: SignalReceiver -- uid: 10884 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 7.5,4.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10878 - type: SignalReceiver -- uid: 10885 - type: Table - components: - - pos: 7.5,2.5 - parent: 0 - type: Transform -- uid: 10886 - type: Table - components: - - pos: 7.5,3.5 - parent: 0 - type: Transform -- uid: 10887 - type: Table - components: - - pos: 7.5,4.5 - parent: 0 - type: Transform -- uid: 10888 - type: Table - components: - - pos: 7.5,-0.5 - parent: 0 - type: Transform -- uid: 10889 - type: Table - components: - - pos: 7.5,0.5 - parent: 0 - type: Transform -- uid: 10890 - type: Table - components: - - pos: 7.5,-1.5 - parent: 0 - type: Transform -- uid: 10891 - type: Table - components: - - pos: 8.5,5.5 - parent: 0 - type: Transform -- uid: 10892 - type: Table - components: - - pos: 9.5,5.5 - parent: 0 - type: Transform -- uid: 10893 - type: Table - components: - - pos: 8.5,-2.5 - parent: 0 - type: Transform -- uid: 10894 - type: Table - components: - - pos: 9.5,-2.5 - parent: 0 - type: Transform -- uid: 10895 - type: Rack - components: - - pos: 11.5,-2.5 - parent: 0 - type: Transform -- uid: 10896 - type: Rack - components: - - pos: 11.5,5.5 - parent: 0 - type: Transform -- uid: 10897 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 0 - type: Transform -- uid: 10898 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 8.5,3.5 - parent: 0 - type: Transform -- uid: 10899 - type: PottedPlantRandom - components: - - pos: 11.5,0.5 - parent: 0 - type: Transform -- uid: 10900 - type: PottedPlantRandom - components: - - pos: 11.5,2.5 - parent: 0 - type: Transform -- uid: 10901 - type: ClosetBase - components: - - pos: 13.5,-2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10902 - type: ClosetBase - components: - - pos: 13.5,5.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10903 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Shop 2 - type: SurveillanceCamera -- uid: 10904 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 11.5,4.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Shop 1 - type: SurveillanceCamera -- uid: 10905 - type: Poweredlight - components: - - pos: 10.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10906 - type: PoweredSmallLight - components: - - pos: 13.5,0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10907 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10908 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 13.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10909 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10910 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10911 - type: AirlockSecurityLocked - components: - - pos: 12.5,-13.5 - parent: 0 - type: Transform -- uid: 10912 - type: AirlockSecurityLocked - components: - - pos: 12.5,-7.5 - parent: 0 - type: Transform -- uid: 10913 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: 27.5,20.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Breakroom - type: SurveillanceCamera -- uid: 10914 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 39.5,19.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: HoS Office - type: SurveillanceCamera -- uid: 10915 - type: APCBasic - components: - - pos: 16.5,-28.5 - parent: 0 - type: Transform -- uid: 10916 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 32.5,30.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Shooting Range - type: SurveillanceCamera -- uid: 10917 - type: SurveillanceCameraSecurity - components: - - pos: 26.5,32.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: North Entrance - type: SurveillanceCamera -- uid: 10918 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 26.5,-0.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: South Entrance - type: SurveillanceCamera -- uid: 10919 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: 23.5,21.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: North Hall - type: SurveillanceCamera -- uid: 10920 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 25.5,11.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: South Hall - type: SurveillanceCamera -- uid: 10921 - type: CableApcExtension - components: - - pos: 5.5,10.5 - parent: 0 - type: Transform -- uid: 10922 - type: CableApcExtension - components: - - pos: 6.5,10.5 - parent: 0 - type: Transform -- uid: 10923 - type: CableApcExtension - components: - - pos: 7.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10924 - type: CableApcExtension - components: - - pos: 8.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10925 - type: CableApcExtension - components: - - pos: 9.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10926 - type: CableApcExtension - components: - - pos: 9.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10927 - type: CableApcExtension - components: - - pos: 9.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10928 - type: CableApcExtension - components: - - pos: 9.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10929 - type: CableApcExtension - components: - - pos: 9.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10930 - type: CableApcExtension - components: - - pos: 9.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10931 - type: CableApcExtension - components: - - pos: 9.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10932 - type: CableApcExtension - components: - - pos: 10.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10933 - type: CableApcExtension - components: - - pos: 11.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10934 - type: CableApcExtension - components: - - pos: 12.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10935 - type: CableApcExtension - components: - - pos: 4.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10936 - type: CableApcExtension - components: - - pos: 5.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10937 - type: CableApcExtension - components: - - pos: 6.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10938 - type: CableApcExtension - components: - - pos: 7.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10939 - type: CableApcExtension - components: - - pos: 8.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10940 - type: CableApcExtension - components: - - pos: 5.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10941 - type: CableApcExtension - components: - - pos: 5.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10942 - type: CableApcExtension - components: - - pos: 5.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10943 - type: CableApcExtension - components: - - pos: 9.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10944 - type: CableApcExtension - components: - - pos: 7.5,22.5 - parent: 0 - type: Transform -- uid: 10945 - type: CableApcExtension - components: - - pos: 8.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10946 - type: CableApcExtension - components: - - pos: 9.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10947 - type: CableApcExtension - components: - - pos: 10.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10948 - type: CableApcExtension - components: - - pos: 11.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10949 - type: CableApcExtension - components: - - pos: 12.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10950 - type: CableApcExtension - components: - - pos: 12.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10951 - type: CableApcExtension - components: - - pos: 7.5,29.5 - parent: 0 - type: Transform -- uid: 10952 - type: CableApcExtension - components: - - pos: 8.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10953 - type: CableApcExtension - components: - - pos: 9.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10954 - type: CableApcExtension - components: - - pos: 10.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10955 - type: CableApcExtension - components: - - pos: 9.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10956 - type: CableApcExtension - components: - - pos: 18.5,27.5 - parent: 0 - type: Transform -- uid: 10957 - type: CableApcExtension - components: - - pos: 18.5,28.5 - parent: 0 - type: Transform -- uid: 10958 - type: CableApcExtension - components: - - pos: 18.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10959 - type: CableApcExtension - components: - - pos: 19.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10960 - type: CableApcExtension - components: - - pos: 19.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10961 - type: CableApcExtension - components: - - pos: 17.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10962 - type: CableApcExtension - components: - - pos: 16.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10963 - type: CableApcExtension - components: - - pos: 15.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10964 - type: CableApcExtension - components: - - pos: 14.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10965 - type: CableApcExtension - components: - - pos: 14.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10966 - type: CableApcExtension - components: - - pos: 14.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10967 - type: ExtinguisherCabinetFilled - components: - - rot: 1.5707963267948966 rad - pos: 10.5,1.5 - parent: 0 - type: Transform -- uid: 10968 - type: FirelockGlass - components: - - pos: 7.5,-1.5 - parent: 0 - type: Transform -- uid: 10969 - type: FirelockGlass - components: - - pos: 7.5,-0.5 - parent: 0 - type: Transform -- uid: 10970 - type: FirelockGlass - components: - - pos: 7.5,0.5 - parent: 0 - type: Transform -- uid: 10971 - type: FirelockGlass - components: - - pos: 7.5,2.5 - parent: 0 - type: Transform -- uid: 10972 - type: FirelockGlass - components: - - pos: 7.5,3.5 - parent: 0 - type: Transform -- uid: 10973 - type: FirelockGlass - components: - - pos: 7.5,4.5 - parent: 0 - type: Transform -- uid: 10974 - type: PottedPlant6 - components: - - pos: 6.5,6.5 - parent: 0 - type: Transform -- uid: 10975 - type: SurveillanceCameraService - components: - - pos: -6.5,17.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - type: SurveillanceCamera -- uid: 10976 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: -4.5,29.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Freezer - type: SurveillanceCamera -- uid: 10977 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: -6.5,40.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Hydroponics - type: SurveillanceCamera -- uid: 10978 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: -17.5,26.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - type: SurveillanceCamera -- uid: 10979 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: -16.5,11.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Theatre - type: SurveillanceCamera -- uid: 10980 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: -10.5,9.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Theatre Room - type: SurveillanceCamera -- uid: 10981 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -10.5,16.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dining Room - type: SurveillanceCamera -- uid: 10982 - type: SurveillanceCameraGeneral - components: - - pos: -5.5,9.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dining Lobby - type: SurveillanceCamera -- uid: 10983 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -0.5,2.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Lobby - type: SurveillanceCamera -- uid: 10984 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -8.5,-8.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Arrivals Security - type: SurveillanceCamera -- uid: 10985 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Arrivals Command Post - type: SurveillanceCamera -- uid: 10986 - type: PaperBin5 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 0 - type: Transform -- uid: 10987 - type: ToolboxEmergencyFilled - components: - - pos: -8.48359,-1.3913862 - parent: 0 - type: Transform -- uid: 10988 - type: HandLabeler - components: - - pos: -9.436715,-1.5007612 - parent: 0 - type: Transform -- uid: 10989 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -21.5,40.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective Room - type: SurveillanceCamera -- uid: 10990 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -37.5,37.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evac - type: SurveillanceCamera -- uid: 10991 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -37.5,44.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Evac Security Post - type: SurveillanceCamera -- uid: 10992 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -17.5,61.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Chapel - type: SurveillanceCamera -- uid: 10993 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -19.5,68.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Crematorium - type: SurveillanceCamera -- uid: 10994 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -18.5,55.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Library - type: SurveillanceCamera -- uid: 10995 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -24.5,56.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Game Room - type: SurveillanceCamera -- uid: 10996 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -7.5,71.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Funeral Parlor - type: SurveillanceCamera -- uid: 10997 - type: SurveillanceCameraService - components: - - rot: -1.5707963267948966 rad - pos: 2.5,10.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Jani Closet - type: SurveillanceCamera -- uid: 10998 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 2.5,25.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Tool Room - type: SurveillanceCamera -- uid: 10999 - type: SignElectricalMed - components: - - rot: -1.5707963267948966 rad - pos: -29.5,63.5 - parent: 0 - type: Transform -- uid: 11000 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -39.5,12.5 - parent: 0 - type: Transform -- uid: 11001 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -39.5,13.5 - parent: 0 - type: Transform -- uid: 11002 - type: AirlockMaintLocked - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-21.5 - parent: 0 - type: Transform -- uid: 11003 - type: AirlockMaintCargoLocked - components: - - pos: 17.5,-21.5 - parent: 0 - type: Transform -- uid: 11004 - type: AirlockMaintSalvageLocked - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-23.5 - parent: 0 - type: Transform -- uid: 11005 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 18.5,-20.5 - parent: 0 - type: Transform -- uid: 11006 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 20.5,-20.5 - parent: 0 - type: Transform -- uid: 11007 - type: WindoorEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: 19.5,-20.5 - parent: 0 - type: Transform -- uid: 11008 - type: Catwalk - components: - - pos: 20.5,-22.5 - parent: 0 - type: Transform -- uid: 11009 - type: Catwalk - components: - - pos: 20.5,-21.5 - parent: 0 - type: Transform -- uid: 11010 - type: Catwalk - components: - - pos: 19.5,-21.5 - parent: 0 - type: Transform -- uid: 11011 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11012 - type: CableHV - components: - - pos: 16.5,-20.5 - parent: 0 - type: Transform -- uid: 11013 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11014 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11015 - type: EmergencyLight - components: - - pos: 18.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11016 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 32.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11017 - type: EmergencyLight - components: - - pos: 29.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11018 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 46.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11019 - type: EmergencyLight - components: - - pos: -32.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11020 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -32.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 11021 - type: FirelockGlass - components: - - pos: -5.5,49.5 - parent: 0 - type: Transform -- uid: 11022 - type: FirelockGlass - components: - - pos: -4.5,49.5 - parent: 0 - type: Transform -- uid: 11023 - type: FirelockGlass - components: - - pos: -3.5,49.5 - parent: 0 - type: Transform -- uid: 11024 - type: AirSensor - components: - - pos: -4.5,57.5 - parent: 0 - type: Transform -- uid: 11025 - type: GasPipeStraight - components: - - pos: 6.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11026 - type: GasPipeStraight - components: - - pos: 6.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11027 - type: GasPipeStraight - components: - - pos: 6.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11028 - type: GasPipeStraight - components: - - pos: 6.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11029 - type: GasPipeStraight - components: - - pos: 6.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11030 - type: GasPipeStraight - components: - - pos: 6.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11031 - type: GasPipeStraight - components: - - pos: 8.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11032 - type: GasPipeStraight - components: - - pos: 8.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11033 - type: GasPipeStraight - components: - - pos: 8.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11034 - type: GasPipeStraight - components: - - pos: 8.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11035 - type: GasPipeStraight - components: - - pos: 8.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11036 - type: GasPipeStraight - components: - - pos: 6.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11037 - type: GasPipeStraight - components: - - pos: 6.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11038 - type: GasPipeStraight - components: - - pos: 6.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11039 - type: GasPipeStraight - components: - - pos: 6.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11040 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11041 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11042 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11043 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 6.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11044 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11045 - type: GasVentPump - components: - - pos: -0.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11046 - type: GasVentScrubber - components: - - pos: -1.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11047 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11048 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11049 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 10.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11050 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11051 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11052 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 13.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11053 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11054 - type: GasPipeBend - components: - - pos: 14.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11055 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 14.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11056 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11057 - type: GasPipeFourway - components: - - pos: 8.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11058 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11059 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11060 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11061 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11062 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11063 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11064 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11065 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11066 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11067 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11068 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11069 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11070 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11071 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11072 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11073 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11074 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11075 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11076 - type: GasPipeStraight - components: - - pos: 11.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11077 - type: GasPipeStraight - components: - - pos: 11.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11078 - type: GasPipeStraight - components: - - pos: 11.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11079 - type: GasPipeStraight - components: - - pos: 11.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11080 - type: GasPipeStraight - components: - - pos: 11.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11081 - type: GasPipeStraight - components: - - pos: 13.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11082 - type: GasPipeStraight - components: - - pos: 13.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11083 - type: GasPipeStraight - components: - - pos: 13.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11084 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11085 - type: GasPipeStraight - components: - - pos: 13.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11086 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11087 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11088 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11089 - type: GasPipeStraight - components: - - pos: 12.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11090 - type: GasPipeStraight - components: - - pos: 12.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11091 - type: GasPipeStraight - components: - - pos: 12.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11092 - type: GasPipeStraight - components: - - pos: 12.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11093 - type: GasPipeStraight - components: - - pos: 12.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11094 - type: GasPipeStraight - components: - - pos: 12.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11095 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11096 - type: GasVentScrubber - components: - - pos: 12.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11097 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11098 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11099 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11100 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11101 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11102 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11103 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11104 - type: GasPipeStraight - components: - - pos: 16.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11105 - type: GasPipeStraight - components: - - pos: 16.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11106 - type: GasPipeStraight - components: - - pos: 16.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11107 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 16.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11108 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11109 - type: GasVentPump - components: - - pos: 18.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11110 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 19.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11111 - type: GasPipeTJunction - components: - - pos: 18.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11112 - type: GasPipeBend - components: - - pos: 20.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11113 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11114 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11115 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11116 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11117 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11118 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11119 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11120 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11121 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11122 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11123 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11124 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11125 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11126 - type: GasVentScrubber - components: - - pos: 19.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11127 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11128 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11129 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11130 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11131 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 15.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11132 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11133 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11134 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11135 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11136 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11137 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11138 - type: GasPipeBend - components: - - pos: 39.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11139 - type: GasPipeStraight - components: - - pos: 25.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11140 - type: GasPipeStraight - components: - - pos: 25.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11141 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11142 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11143 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11144 - type: GasPipeBend - components: - - pos: 37.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11145 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11146 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11147 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11148 - type: CableHV - components: - - pos: 16.5,-21.5 - parent: 0 - type: Transform -- uid: 11149 - type: CableHV - components: - - pos: 18.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11150 - type: WallSolid - components: - - pos: 17.5,-20.5 - parent: 0 - type: Transform -- uid: 11151 - type: GasPipeTJunction - components: - - pos: 15.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11152 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11153 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11154 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11155 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11156 - type: CableApcExtension - components: - - pos: -6.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11157 - type: CableApcExtension - components: - - pos: -5.5,-24.5 - parent: 0 - type: Transform -- uid: 11158 - type: CableApcExtension - components: - - pos: -4.5,-24.5 - parent: 0 - type: Transform -- uid: 11159 - type: CableApcExtension - components: - - pos: -4.5,-25.5 - parent: 0 - type: Transform -- uid: 11160 - type: CableApcExtension - components: - - pos: -4.5,-26.5 - parent: 0 - type: Transform -- uid: 11161 - type: CableApcExtension - components: - - pos: -4.5,-27.5 - parent: 0 - type: Transform -- uid: 11162 - type: CableApcExtension - components: - - pos: -4.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11163 - type: CableApcExtension - components: - - pos: -3.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11164 - type: CableApcExtension - components: - - pos: -5.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11165 - type: CableApcExtension - components: - - pos: -2.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11166 - type: CableApcExtension - components: - - pos: -1.5,-23.5 - parent: 0 - type: Transform -- uid: 11167 - type: CableApcExtension - components: - - pos: -0.5,-23.5 - parent: 0 - type: Transform -- uid: 11168 - type: CableApcExtension - components: - - pos: 0.5,-23.5 - parent: 0 - type: Transform -- uid: 11169 - type: CableApcExtension - components: - - pos: 0.5,-24.5 - parent: 0 - type: Transform -- uid: 11170 - type: CableApcExtension - components: - - pos: 0.5,-25.5 - parent: 0 - type: Transform -- uid: 11171 - type: CableApcExtension - components: - - pos: 0.5,-26.5 - parent: 0 - type: Transform -- uid: 11172 - type: CableApcExtension - components: - - pos: 0.5,-27.5 - parent: 0 - type: Transform -- uid: 11173 - type: CableApcExtension - components: - - pos: 1.5,-26.5 - parent: 0 - type: Transform -- uid: 11174 - type: CableApcExtension - components: - - pos: 2.5,-26.5 - parent: 0 - type: Transform -- uid: 11175 - type: CableApcExtension - components: - - pos: 1.5,-24.5 - parent: 0 - type: Transform -- uid: 11176 - type: CableApcExtension - components: - - pos: 2.5,-24.5 - parent: 0 - type: Transform -- uid: 11177 - type: CableApcExtension - components: - - pos: -0.5,-25.5 - parent: 0 - type: Transform -- uid: 11178 - type: CableApcExtension - components: - - pos: -3.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11179 - type: CableApcExtension - components: - - pos: -2.5,-21.5 - parent: 0 - type: Transform -- uid: 11180 - type: CableApcExtension - components: - - pos: -1.5,-21.5 - parent: 0 - type: Transform -- uid: 11181 - type: CableApcExtension - components: - - pos: -0.5,-21.5 - parent: 0 - type: Transform -- uid: 11182 - type: CableApcExtension - components: - - pos: 0.5,-21.5 - parent: 0 - type: Transform -- uid: 11183 - type: CableApcExtension - components: - - pos: 1.5,-21.5 - parent: 0 - type: Transform -- uid: 11184 - type: CableApcExtension - components: - - pos: 2.5,-21.5 - parent: 0 - type: Transform -- uid: 11185 - type: CableApcExtension - components: - - pos: 3.5,-21.5 - parent: 0 - type: Transform -- uid: 11186 - type: CableApcExtension - components: - - pos: -1.5,-20.5 - parent: 0 - type: Transform -- uid: 11187 - type: CableApcExtension - components: - - pos: -1.5,-19.5 - parent: 0 - type: Transform -- uid: 11188 - type: CableApcExtension - components: - - pos: -1.5,-18.5 - parent: 0 - type: Transform -- uid: 11189 - type: CableApcExtension - components: - - pos: -4.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11190 - type: CableApcExtension - components: - - pos: -4.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11191 - type: CableApcExtension - components: - - pos: -5.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11192 - type: CableApcExtension - components: - - pos: -6.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11193 - type: CableApcExtension - components: - - pos: -7.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11194 - type: CableApcExtension - components: - - pos: -8.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11195 - type: CableApcExtension - components: - - pos: -4.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11196 - type: CableApcExtension - components: - - pos: -3.5,-15.5 - parent: 0 - type: Transform -- uid: 11197 - type: CableApcExtension - components: - - pos: -2.5,-15.5 - parent: 0 - type: Transform -- uid: 11198 - type: CableApcExtension - components: - - pos: -1.5,-15.5 - parent: 0 - type: Transform -- uid: 11199 - type: CableApcExtension - components: - - pos: -0.5,-15.5 - parent: 0 - type: Transform -- uid: 11200 - type: CableApcExtension - components: - - pos: -2.5,-16.5 - parent: 0 - type: Transform -- uid: 11201 - type: CableApcExtension - components: - - pos: -2.5,-14.5 - parent: 0 - type: Transform -- uid: 11202 - type: CableApcExtension - components: - - pos: -2.5,-13.5 - parent: 0 - type: Transform -- uid: 11203 - type: CableApcExtension - components: - - pos: -2.5,-12.5 - parent: 0 - type: Transform -- uid: 11204 - type: CableApcExtension - components: - - pos: -2.5,-11.5 - parent: 0 - type: Transform -- uid: 11205 - type: CableApcExtension - components: - - pos: -2.5,-10.5 - parent: 0 - type: Transform -- uid: 11206 - type: CableApcExtension - components: - - pos: -2.5,-9.5 - parent: 0 - type: Transform -- uid: 11207 - type: CableApcExtension - components: - - pos: -3.5,-9.5 - parent: 0 - type: Transform -- uid: 11208 - type: CableApcExtension - components: - - pos: -3.5,-8.5 - parent: 0 - type: Transform -- uid: 11209 - type: CableApcExtension - components: - - pos: -1.5,-9.5 - parent: 0 - type: Transform -- uid: 11210 - type: CableApcExtension - components: - - pos: -0.5,-9.5 - parent: 0 - type: Transform -- uid: 11211 - type: CableApcExtension - components: - - pos: 0.5,-9.5 - parent: 0 - type: Transform -- uid: 11212 - type: CableApcExtension - components: - - pos: -1.5,-12.5 - parent: 0 - type: Transform -- uid: 11213 - type: CableApcExtension - components: - - pos: -0.5,-12.5 - parent: 0 - type: Transform -- uid: 11214 - type: CableApcExtension - components: - - pos: 0.5,-12.5 - parent: 0 - type: Transform -- uid: 11215 - type: CableApcExtension - components: - - pos: -4.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11216 - type: CableApcExtension - components: - - pos: -5.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11217 - type: CableApcExtension - components: - - pos: -5.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11218 - type: CableApcExtension - components: - - pos: -5.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11219 - type: CableApcExtension - components: - - pos: -5.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11220 - type: CableApcExtension - components: - - pos: -5.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11221 - type: CableApcExtension - components: - - pos: -5.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11222 - type: CableApcExtension - components: - - pos: -5.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11223 - type: CableApcExtension - components: - - pos: -5.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11224 - type: CableApcExtension - components: - - pos: -5.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11225 - type: CableApcExtension - components: - - pos: -5.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11226 - type: APCBasic - components: - - pos: 9.5,-19.5 - parent: 0 - type: Transform -- uid: 11227 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-13.5 - parent: 0 - type: Transform -- uid: 11228 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-13.5 - parent: 0 - type: Transform -- uid: 11229 - type: CableMV - components: - - pos: 19.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11230 - type: CableMV - components: - - pos: 19.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11231 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 16.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11232 - type: CableMV - components: - - pos: 16.5,-21.5 - parent: 0 - type: Transform -- uid: 11233 - type: CableMV - components: - - pos: 17.5,-21.5 - parent: 0 - type: Transform -- uid: 11234 - type: CableMV - components: - - pos: 15.5,-20.5 - parent: 0 - type: Transform -- uid: 11235 - type: CableMV - components: - - pos: 14.5,-20.5 - parent: 0 - type: Transform -- uid: 11236 - type: CableMV - components: - - pos: 13.5,-20.5 - parent: 0 - type: Transform -- uid: 11237 - type: CableMV - components: - - pos: 12.5,-20.5 - parent: 0 - type: Transform -- uid: 11238 - type: CableMV - components: - - pos: 11.5,-20.5 - parent: 0 - type: Transform -- uid: 11239 - type: CableMV - components: - - pos: 10.5,-20.5 - parent: 0 - type: Transform -- uid: 11240 - type: CableMV - components: - - pos: 9.5,-20.5 - parent: 0 - type: Transform -- uid: 11241 - type: CableMV - components: - - pos: 9.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11242 - type: CableMV - components: - - pos: 12.5,-19.5 - parent: 0 - type: Transform -- uid: 11243 - type: CableMV - components: - - pos: 12.5,-18.5 - parent: 0 - type: Transform -- uid: 11244 - type: CableMV - components: - - pos: 12.5,-17.5 - parent: 0 - type: Transform -- uid: 11245 - type: CableMV - components: - - pos: 12.5,-16.5 - parent: 0 - type: Transform -- uid: 11246 - type: CableMV - components: - - pos: 12.5,-15.5 - parent: 0 - type: Transform -- uid: 11247 - type: CableMV - components: - - pos: 13.5,-15.5 - parent: 0 - type: Transform -- uid: 11248 - type: CableMV - components: - - pos: 14.5,-15.5 - parent: 0 - type: Transform -- uid: 11249 - type: CableMV - components: - - pos: 15.5,-15.5 - parent: 0 - type: Transform -- uid: 11250 - type: CableMV - components: - - pos: 15.5,-14.5 - parent: 0 - type: Transform -- uid: 11251 - type: CableMV - components: - - pos: 15.5,-13.5 - parent: 0 - type: Transform -- uid: 11252 - type: CableMV - components: - - pos: 14.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11253 - type: CableMV - components: - - pos: 11.5,-16.5 - parent: 0 - type: Transform -- uid: 11254 - type: CableMV - components: - - pos: 10.5,-16.5 - parent: 0 - type: Transform -- uid: 11255 - type: CableMV - components: - - pos: 9.5,-16.5 - parent: 0 - type: Transform -- uid: 11256 - type: CableMV - components: - - pos: 8.5,-16.5 - parent: 0 - type: Transform -- uid: 11257 - type: CableMV - components: - - pos: 8.5,-15.5 - parent: 0 - type: Transform -- uid: 11258 - type: CableMV - components: - - pos: 8.5,-14.5 - parent: 0 - type: Transform -- uid: 11259 - type: CableMV - components: - - pos: 8.5,-13.5 - parent: 0 - type: Transform -- uid: 11260 - type: CableMV - components: - - pos: 9.5,-13.5 - parent: 0 - type: Transform -- uid: 11261 - type: CableMV - components: - - pos: 10.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11262 - type: CableMV - components: - - pos: 16.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11263 - type: CableMV - components: - - pos: 16.5,-29.5 - parent: 0 - type: Transform -- uid: 11264 - type: CableMV - components: - - pos: 17.5,-29.5 - parent: 0 - type: Transform -- uid: 11265 - type: CableMV - components: - - pos: 18.5,-29.5 - parent: 0 - type: Transform -- uid: 11266 - type: CableMV - components: - - pos: 19.5,-29.5 - parent: 0 - type: Transform -- uid: 11267 - type: CableMV - components: - - pos: 19.5,-28.5 - parent: 0 - type: Transform -- uid: 11268 - type: CableMV - components: - - pos: 19.5,-27.5 - parent: 0 - type: Transform -- uid: 11269 - type: CableMV - components: - - pos: 19.5,-26.5 - parent: 0 - type: Transform -- uid: 11270 - type: CableMV - components: - - pos: 20.5,-26.5 - parent: 0 - type: Transform -- uid: 11271 - type: CableMV - components: - - pos: 20.5,-25.5 - parent: 0 - type: Transform -- uid: 11272 - type: CableMV - components: - - pos: 20.5,-24.5 - parent: 0 - type: Transform -- uid: 11273 - type: CableMV - components: - - pos: 20.5,-23.5 - parent: 0 - type: Transform -- uid: 11274 - type: CableMV - components: - - pos: 20.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11275 - type: CableMV - components: - - pos: 20.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11276 - type: CableMV - components: - - pos: 19.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11277 - type: CableMV - components: - - pos: 18.5,-26.5 - parent: 0 - type: Transform -- uid: 11278 - type: CableMV - components: - - pos: 17.5,-26.5 - parent: 0 - type: Transform -- uid: 11279 - type: CableMV - components: - - pos: 16.5,-26.5 - parent: 0 - type: Transform -- uid: 11280 - type: CableMV - components: - - pos: 15.5,-26.5 - parent: 0 - type: Transform -- uid: 11281 - type: CableMV - components: - - pos: 15.5,-25.5 - parent: 0 - type: Transform -- uid: 11282 - type: CableMV - components: - - pos: 15.5,-24.5 - parent: 0 - type: Transform -- uid: 11283 - type: CableMV - components: - - pos: 15.5,-23.5 - parent: 0 - type: Transform -- uid: 11284 - type: CableMV - components: - - pos: 15.5,-22.5 - parent: 0 - type: Transform -- uid: 11285 - type: CableMV - components: - - pos: 15.5,-21.5 - parent: 0 - type: Transform -- uid: 11286 - type: CableApcExtension - components: - - pos: 9.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11287 - type: CableApcExtension - components: - - pos: 9.5,-20.5 - parent: 0 - type: Transform -- uid: 11288 - type: CableApcExtension - components: - - pos: 9.5,-21.5 - parent: 0 - type: Transform -- uid: 11289 - type: CableApcExtension - components: - - pos: 9.5,-22.5 - parent: 0 - type: Transform -- uid: 11290 - type: CableApcExtension - components: - - pos: 9.5,-23.5 - parent: 0 - type: Transform -- uid: 11291 - type: CableApcExtension - components: - - pos: 9.5,-24.5 - parent: 0 - type: Transform -- uid: 11292 - type: CableApcExtension - components: - - pos: 9.5,-25.5 - parent: 0 - type: Transform -- uid: 11293 - type: CableApcExtension - components: - - pos: 9.5,-26.5 - parent: 0 - type: Transform -- uid: 11294 - type: CableApcExtension - components: - - pos: 9.5,-27.5 - parent: 0 - type: Transform -- uid: 11295 - type: CableApcExtension - components: - - pos: 9.5,-28.5 - parent: 0 - type: Transform -- uid: 11296 - type: CableApcExtension - components: - - pos: 9.5,-29.5 - parent: 0 - type: Transform -- uid: 11297 - type: CableApcExtension - components: - - pos: 9.5,-30.5 - parent: 0 - type: Transform -- uid: 11298 - type: CableApcExtension - components: - - pos: 9.5,-31.5 - parent: 0 - type: Transform -- uid: 11299 - type: CableApcExtension - components: - - pos: 9.5,-32.5 - parent: 0 - type: Transform -- uid: 11300 - type: CableApcExtension - components: - - pos: 9.5,-33.5 - parent: 0 - type: Transform -- uid: 11301 - type: CableApcExtension - components: - - pos: 9.5,-34.5 - parent: 0 - type: Transform -- uid: 11302 - type: CableApcExtension - components: - - pos: 9.5,-35.5 - parent: 0 - type: Transform -- uid: 11303 - type: CableApcExtension - components: - - pos: 9.5,-36.5 - parent: 0 - type: Transform -- uid: 11304 - type: CableApcExtension - components: - - pos: 9.5,-37.5 - parent: 0 - type: Transform -- uid: 11305 - type: CableApcExtension - components: - - pos: 8.5,-37.5 - parent: 0 - type: Transform -- uid: 11306 - type: CableApcExtension - components: - - pos: 7.5,-37.5 - parent: 0 - type: Transform -- uid: 11307 - type: CableApcExtension - components: - - pos: 6.5,-37.5 - parent: 0 - type: Transform -- uid: 11308 - type: CableApcExtension - components: - - pos: 5.5,-37.5 - parent: 0 - type: Transform -- uid: 11309 - type: CableApcExtension - components: - - pos: 4.5,-37.5 - parent: 0 - type: Transform -- uid: 11310 - type: CableApcExtension - components: - - pos: 3.5,-37.5 - parent: 0 - type: Transform -- uid: 11311 - type: CableApcExtension - components: - - pos: 2.5,-37.5 - parent: 0 - type: Transform -- uid: 11312 - type: CableApcExtension - components: - - pos: 8.5,-35.5 - parent: 0 - type: Transform -- uid: 11313 - type: CableApcExtension - components: - - pos: 7.5,-35.5 - parent: 0 - type: Transform -- uid: 11314 - type: CableApcExtension - components: - - pos: 6.5,-35.5 - parent: 0 - type: Transform -- uid: 11315 - type: CableApcExtension - components: - - pos: 5.5,-35.5 - parent: 0 - type: Transform -- uid: 11316 - type: CableApcExtension - components: - - pos: 4.5,-35.5 - parent: 0 - type: Transform -- uid: 11317 - type: CableApcExtension - components: - - pos: 3.5,-35.5 - parent: 0 - type: Transform -- uid: 11318 - type: CableApcExtension - components: - - pos: 2.5,-35.5 - parent: 0 - type: Transform -- uid: 11319 - type: CableApcExtension - components: - - pos: 2.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11320 - type: CableApcExtension - components: - - pos: 2.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11321 - type: CableApcExtension - components: - - pos: 3.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11322 - type: CableApcExtension - components: - - pos: 2.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11323 - type: CableApcExtension - components: - - pos: 2.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11324 - type: CableApcExtension - components: - - pos: 3.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11325 - type: CableApcExtension - components: - - pos: 7.5,-38.5 - parent: 0 - type: Transform -- uid: 11326 - type: CableApcExtension - components: - - pos: 7.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11327 - type: CableApcExtension - components: - - pos: 6.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11328 - type: CableApcExtension - components: - - pos: 8.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11329 - type: CableApcExtension - components: - - pos: 9.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11330 - type: CableApcExtension - components: - - pos: 10.5,-36.5 - parent: 0 - type: Transform -- uid: 11331 - type: CableApcExtension - components: - - pos: 11.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11332 - type: CableApcExtension - components: - - pos: 11.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11333 - type: CableApcExtension - components: - - pos: 11.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11334 - type: CableApcExtension - components: - - pos: 11.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11335 - type: CableApcExtension - components: - - pos: 8.5,-27.5 - parent: 0 - type: Transform -- uid: 11336 - type: CableApcExtension - components: - - pos: 11.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11337 - type: CableApcExtension - components: - - pos: 11.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11338 - type: CableApcExtension - components: - - pos: 10.5,-31.5 - parent: 0 - type: Transform -- uid: 11339 - type: CableApcExtension - components: - - pos: 7.5,-27.5 - parent: 0 - type: Transform -- uid: 11340 - type: CableApcExtension - components: - - pos: 6.5,-27.5 - parent: 0 - type: Transform -- uid: 11341 - type: CableApcExtension - components: - - pos: 8.5,-31.5 - parent: 0 - type: Transform -- uid: 11342 - type: CableApcExtension - components: - - pos: 7.5,-31.5 - parent: 0 - type: Transform -- uid: 11343 - type: CableApcExtension - components: - - pos: 6.5,-31.5 - parent: 0 - type: Transform -- uid: 11344 - type: CableApcExtension - components: - - pos: 10.5,-25.5 - parent: 0 - type: Transform -- uid: 11345 - type: CableApcExtension - components: - - pos: 11.5,-25.5 - parent: 0 - type: Transform -- uid: 11346 - type: CableApcExtension - components: - - pos: 12.5,-25.5 - parent: 0 - type: Transform -- uid: 11347 - type: CableApcExtension - components: - - pos: 13.5,-25.5 - parent: 0 - type: Transform -- uid: 11348 - type: CableApcExtension - components: - - pos: 14.5,-25.5 - parent: 0 - type: Transform -- uid: 11349 - type: CableApcExtension - components: - - pos: 15.5,-25.5 - parent: 0 - type: Transform -- uid: 11350 - type: CableApcExtension - components: - - pos: 10.5,-21.5 - parent: 0 - type: Transform -- uid: 11351 - type: CableApcExtension - components: - - pos: 11.5,-21.5 - parent: 0 - type: Transform -- uid: 11352 - type: CableApcExtension - components: - - pos: 12.5,-21.5 - parent: 0 - type: Transform -- uid: 11353 - type: CableApcExtension - components: - - pos: 13.5,-21.5 - parent: 0 - type: Transform -- uid: 11354 - type: CableApcExtension - components: - - pos: 14.5,-21.5 - parent: 0 - type: Transform -- uid: 11355 - type: CableApcExtension - components: - - pos: 15.5,-21.5 - parent: 0 - type: Transform -- uid: 11356 - type: CableApcExtension - components: - - pos: 8.5,-21.5 - parent: 0 - type: Transform -- uid: 11357 - type: CableApcExtension - components: - - pos: 7.5,-21.5 - parent: 0 - type: Transform -- uid: 11358 - type: CableApcExtension - components: - - pos: 8.5,-25.5 - parent: 0 - type: Transform -- uid: 11359 - type: CableApcExtension - components: - - pos: 7.5,-25.5 - parent: 0 - type: Transform -- uid: 11360 - type: CableApcExtension - components: - - pos: 10.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11361 - type: CableApcExtension - components: - - pos: 9.5,-13.5 - parent: 0 - type: Transform -- uid: 11362 - type: CableApcExtension - components: - - pos: 8.5,-13.5 - parent: 0 - type: Transform -- uid: 11363 - type: CableApcExtension - components: - - pos: 7.5,-13.5 - parent: 0 - type: Transform -- uid: 11364 - type: CableApcExtension - components: - - pos: 8.5,-14.5 - parent: 0 - type: Transform -- uid: 11365 - type: CableApcExtension - components: - - pos: 8.5,-15.5 - parent: 0 - type: Transform -- uid: 11366 - type: CableApcExtension - components: - - pos: 8.5,-16.5 - parent: 0 - type: Transform -- uid: 11367 - type: CableApcExtension - components: - - pos: 8.5,-17.5 - parent: 0 - type: Transform -- uid: 11368 - type: CableApcExtension - components: - - pos: 7.5,-17.5 - parent: 0 - type: Transform -- uid: 11369 - type: CableApcExtension - components: - - pos: 6.5,-17.5 - parent: 0 - type: Transform -- uid: 11370 - type: CableApcExtension - components: - - pos: 5.5,-17.5 - parent: 0 - type: Transform -- uid: 11371 - type: CableApcExtension - components: - - pos: 4.5,-17.5 - parent: 0 - type: Transform -- uid: 11372 - type: CableApcExtension - components: - - pos: 3.5,-17.5 - parent: 0 - type: Transform -- uid: 11373 - type: CableApcExtension - components: - - pos: 3.5,-16.5 - parent: 0 - type: Transform -- uid: 11374 - type: CableApcExtension - components: - - pos: 3.5,-15.5 - parent: 0 - type: Transform -- uid: 11375 - type: CableApcExtension - components: - - pos: 3.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11376 - type: CableApcExtension - components: - - pos: 3.5,-13.5 - parent: 0 - type: Transform -- uid: 11377 - type: CableApcExtension - components: - - pos: 3.5,-12.5 - parent: 0 - type: Transform -- uid: 11378 - type: CableApcExtension - components: - - pos: 3.5,-11.5 - parent: 0 - type: Transform -- uid: 11379 - type: CableApcExtension - components: - - pos: 3.5,-10.5 - parent: 0 - type: Transform -- uid: 11380 - type: CableApcExtension - components: - - pos: 3.5,-9.5 - parent: 0 - type: Transform -- uid: 11381 - type: CableApcExtension - components: - - pos: 8.5,-12.5 - parent: 0 - type: Transform -- uid: 11382 - type: CableApcExtension - components: - - pos: 8.5,-11.5 - parent: 0 - type: Transform -- uid: 11383 - type: CableApcExtension - components: - - pos: 8.5,-10.5 - parent: 0 - type: Transform -- uid: 11384 - type: CableApcExtension - components: - - pos: 8.5,-9.5 - parent: 0 - type: Transform -- uid: 11385 - type: CableApcExtension - components: - - pos: 7.5,-10.5 - parent: 0 - type: Transform -- uid: 11386 - type: CableApcExtension - components: - - pos: 6.5,-10.5 - parent: 0 - type: Transform -- uid: 11387 - type: CableApcExtension - components: - - pos: 5.5,-10.5 - parent: 0 - type: Transform -- uid: 11388 - type: CableApcExtension - components: - - pos: 4.5,-10.5 - parent: 0 - type: Transform -- uid: 11389 - type: CableApcExtension - components: - - pos: 6.5,-13.5 - parent: 0 - type: Transform -- uid: 11390 - type: CableApcExtension - components: - - pos: 6.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11391 - type: CableApcExtension - components: - - pos: 9.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11392 - type: CableApcExtension - components: - - pos: 14.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11393 - type: CableApcExtension - components: - - pos: 15.5,-13.5 - parent: 0 - type: Transform -- uid: 11394 - type: CableApcExtension - components: - - pos: 16.5,-13.5 - parent: 0 - type: Transform -- uid: 11395 - type: CableApcExtension - components: - - pos: 17.5,-13.5 - parent: 0 - type: Transform -- uid: 11396 - type: CableApcExtension - components: - - pos: 18.5,-13.5 - parent: 0 - type: Transform -- uid: 11397 - type: CableApcExtension - components: - - pos: 19.5,-13.5 - parent: 0 - type: Transform -- uid: 11398 - type: CableApcExtension - components: - - pos: 20.5,-13.5 - parent: 0 - type: Transform -- uid: 11399 - type: CableApcExtension - components: - - pos: 21.5,-13.5 - parent: 0 - type: Transform -- uid: 11400 - type: CableApcExtension - components: - - pos: 22.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11401 - type: CableApcExtension - components: - - pos: 22.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11402 - type: CableApcExtension - components: - - pos: 21.5,-12.5 - parent: 0 - type: Transform -- uid: 11403 - type: CableApcExtension - components: - - pos: 21.5,-11.5 - parent: 0 - type: Transform -- uid: 11404 - type: CableApcExtension - components: - - pos: 22.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11405 - type: CableApcExtension - components: - - pos: 21.5,-10.5 - parent: 0 - type: Transform -- uid: 11406 - type: CableApcExtension - components: - - pos: 21.5,-9.5 - parent: 0 - type: Transform -- uid: 11407 - type: CableApcExtension - components: - - pos: 22.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11408 - type: CableApcExtension - components: - - pos: 20.5,-9.5 - parent: 0 - type: Transform -- uid: 11409 - type: CableApcExtension - components: - - pos: 19.5,-9.5 - parent: 0 - type: Transform -- uid: 11410 - type: CableApcExtension - components: - - pos: 18.5,-9.5 - parent: 0 - type: Transform -- uid: 11411 - type: CableApcExtension - components: - - pos: 17.5,-9.5 - parent: 0 - type: Transform -- uid: 11412 - type: CableApcExtension - components: - - pos: 16.5,-9.5 - parent: 0 - type: Transform -- uid: 11413 - type: CableApcExtension - components: - - pos: 15.5,-9.5 - parent: 0 - type: Transform -- uid: 11414 - type: CableApcExtension - components: - - pos: 14.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11415 - type: CableApcExtension - components: - - pos: 20.5,-11.5 - parent: 0 - type: Transform -- uid: 11416 - type: CableApcExtension - components: - - pos: 19.5,-11.5 - parent: 0 - type: Transform -- uid: 11417 - type: CableApcExtension - components: - - pos: 18.5,-11.5 - parent: 0 - type: Transform -- uid: 11418 - type: CableApcExtension - components: - - pos: 17.5,-11.5 - parent: 0 - type: Transform -- uid: 11419 - type: CableApcExtension - components: - - pos: 16.5,-11.5 - parent: 0 - type: Transform -- uid: 11420 - type: CableApcExtension - components: - - pos: 15.5,-11.5 - parent: 0 - type: Transform -- uid: 11421 - type: CableApcExtension - components: - - pos: 14.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11422 - type: CableApcExtension - components: - - pos: 9.5,-11.5 - parent: 0 - type: Transform -- uid: 11423 - type: CableApcExtension - components: - - pos: 10.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11424 - type: CableApcExtension - components: - - pos: 9.5,-9.5 - parent: 0 - type: Transform -- uid: 11425 - type: CableApcExtension - components: - - pos: 10.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11426 - type: CableApcExtension - components: - - pos: 15.5,-14.5 - parent: 0 - type: Transform -- uid: 11427 - type: CableApcExtension - components: - - pos: 15.5,-15.5 - parent: 0 - type: Transform -- uid: 11428 - type: CableApcExtension - components: - - pos: 14.5,-15.5 - parent: 0 - type: Transform -- uid: 11429 - type: CableApcExtension - components: - - pos: 13.5,-15.5 - parent: 0 - type: Transform -- uid: 11430 - type: CableApcExtension - components: - - pos: 12.5,-15.5 - parent: 0 - type: Transform -- uid: 11431 - type: CableApcExtension - components: - - pos: 12.5,-16.5 - parent: 0 - type: Transform -- uid: 11432 - type: CableApcExtension - components: - - pos: 12.5,-18.5 - parent: 0 - type: Transform -- uid: 11433 - type: CableApcExtension - components: - - pos: 12.5,-17.5 - parent: 0 - type: Transform -- uid: 11434 - type: CableApcExtension - components: - - pos: 16.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11435 - type: CableApcExtension - components: - - pos: 16.5,-29.5 - parent: 0 - type: Transform -- uid: 11436 - type: CableApcExtension - components: - - pos: 16.5,-30.5 - parent: 0 - type: Transform -- uid: 11437 - type: CableApcExtension - components: - - pos: 16.5,-31.5 - parent: 0 - type: Transform -- uid: 11438 - type: CableApcExtension - components: - - pos: 16.5,-32.5 - parent: 0 - type: Transform -- uid: 11439 - type: CableApcExtension - components: - - pos: 16.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11440 - type: CableApcExtension - components: - - pos: 16.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11441 - type: CableApcExtension - components: - - pos: 16.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11442 - type: CableApcExtension - components: - - pos: 15.5,-30.5 - parent: 0 - type: Transform -- uid: 11443 - type: CableApcExtension - components: - - pos: 14.5,-30.5 - parent: 0 - type: Transform -- uid: 11444 - type: CableApcExtension - components: - - pos: 13.5,-30.5 - parent: 0 - type: Transform -- uid: 11445 - type: CableApcExtension - components: - - pos: 13.5,-31.5 - parent: 0 - type: Transform -- uid: 11446 - type: CableApcExtension - components: - - pos: 13.5,-32.5 - parent: 0 - type: Transform -- uid: 11447 - type: CableApcExtension - components: - - pos: 13.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11448 - type: CableApcExtension - components: - - pos: 15.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11449 - type: CableApcExtension - components: - - pos: 15.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11450 - type: CableApcExtension - components: - - pos: 17.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11451 - type: CableApcExtension - components: - - pos: 17.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11452 - type: CableApcExtension - components: - - pos: 18.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11453 - type: CableApcExtension - components: - - pos: 18.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11454 - type: CableApcExtension - components: - - pos: 17.5,-31.5 - parent: 0 - type: Transform -- uid: 11455 - type: CableApcExtension - components: - - pos: 18.5,-31.5 - parent: 0 - type: Transform -- uid: 11456 - type: CableApcExtension - components: - - pos: 19.5,-31.5 - parent: 0 - type: Transform -- uid: 11457 - type: CableApcExtension - components: - - pos: 20.5,-31.5 - parent: 0 - type: Transform -- uid: 11458 - type: CableApcExtension - components: - - pos: 20.5,-32.5 - parent: 0 - type: Transform -- uid: 11459 - type: CableApcExtension - components: - - pos: 20.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11460 - type: CableApcExtension - components: - - pos: 20.5,-30.5 - parent: 0 - type: Transform -- uid: 11461 - type: CableApcExtension - components: - - pos: 20.5,-29.5 - parent: 0 - type: Transform -- uid: 11462 - type: CableApcExtension - components: - - pos: 20.5,-28.5 - parent: 0 - type: Transform -- uid: 11463 - type: CableApcExtension - components: - - pos: 20.5,-27.5 - parent: 0 - type: Transform -- uid: 11464 - type: CableApcExtension - components: - - pos: 20.5,-26.5 - parent: 0 - type: Transform -- uid: 11465 - type: CableApcExtension - components: - - pos: 20.5,-25.5 - parent: 0 - type: Transform -- uid: 11466 - type: CableApcExtension - components: - - pos: 20.5,-24.5 - parent: 0 - type: Transform -- uid: 11467 - type: CableApcExtension - components: - - pos: 20.5,-23.5 - parent: 0 - type: Transform -- uid: 11468 - type: CableApcExtension - components: - - pos: 20.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11469 - type: CableApcExtension - components: - - pos: 20.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11470 - type: CableApcExtension - components: - - pos: 19.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11471 - type: CableApcExtension - components: - - pos: 19.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11472 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-34.5 - parent: 0 - type: Transform - - devices: - - 10087 - - 10088 - - 10089 - - 10090 - - 10091 - - 10092 - - 11485 - type: DeviceList -- uid: 11473 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-33.5 - parent: 0 - type: Transform - - devices: - - 10087 - - 10088 - - 10089 - - 10090 - - 10091 - - 10092 - - 11485 - - invalid - type: DeviceList -- uid: 11474 - type: FireAlarm - components: - - pos: 10.5,-19.5 - parent: 0 - type: Transform - - devices: - - 10085 - - 10086 - - 10100 - - 10101 - - 10099 - - 10098 - - 10097 - - 10096 - - 10092 - - 10091 - - 10090 - - 10089 - - 10088 - - 10087 - - 11484 - type: DeviceList -- uid: 11475 - type: AirAlarm - components: - - pos: 5.5,-19.5 - parent: 0 - type: Transform - - devices: - - 10085 - - 10086 - - 10100 - - 10101 - - 10099 - - 10098 - - 10097 - - 10096 - - 10092 - - 10091 - - 10090 - - 10089 - - 10088 - - 10087 - - 11484 - - 11130 - - 10058 - - 11047 - - 11048 - type: DeviceList -- uid: 11476 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 4.5,-19.5 - parent: 0 - type: Transform - - devices: - - 10100 - - 10101 - - 10099 - - 10098 - - 10097 - - 10105 - - 10102 - - 10103 - - 11483 - type: DeviceList -- uid: 11477 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 3.5,-19.5 - parent: 0 - type: Transform - - devices: - - 10103 - - 10102 - - 11155 - - 11154 - - 10100 - - 10101 - - 10105 - - 11483 - - 11098 - - 11097 - - 10104 - - 10097 - - 10098 - - 10099 - type: DeviceList -- uid: 11478 - type: FireAlarm - components: - - pos: 15.5,-28.5 - parent: 0 - type: Transform - - devices: - - 10096 - - 10093 - - 10094 - - 10095 - - 11486 - type: DeviceList -- uid: 11479 - type: AirAlarm - components: - - pos: 17.5,-28.5 - parent: 0 - type: Transform - - devices: - - 10096 - - 10093 - - 10094 - - 10095 - - 11486 - - 11127 - - 11128 - type: DeviceList -- uid: 11480 - type: AirAlarm - components: - - pos: 19.5,-23.5 - parent: 0 - type: Transform - - devices: - - 11129 - - 11126 - type: DeviceList -- uid: 11481 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 0 - type: Transform - - devices: - - 2051 - - 2052 - - 2054 - - 2053 - - 10105 - - 10102 - - 10103 - - 11487 - - 9951 - - 9950 - type: DeviceList -- uid: 11482 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 0 - type: Transform - - devices: - - 2051 - - 2052 - - 2054 - - 2053 - - 10105 - - 10102 - - 10103 - - 11487 - type: DeviceList -- uid: 11483 - type: AirSensor - components: - - pos: 8.5,-16.5 - parent: 0 - type: Transform -- uid: 11484 - type: AirSensor - components: - - pos: 10.5,-20.5 - parent: 0 - type: Transform -- uid: 11485 - type: AirSensor - components: - - pos: 7.5,-34.5 - parent: 0 - type: Transform -- uid: 11486 - type: AirSensor - components: - - pos: 19.5,-31.5 - parent: 0 - type: Transform -- uid: 11487 - type: AirSensor - components: - - pos: 6.5,-9.5 - parent: 0 - type: Transform -- uid: 11488 - type: Autolathe - components: - - pos: 5.5,-14.5 - parent: 0 - type: Transform -- uid: 11489 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-14.5 - parent: 0 - type: Transform -- uid: 11490 - type: WindoorCargoLocked - components: - - rot: 3.141592653589793 rad - pos: 5.5,-14.5 - parent: 0 - type: Transform -- uid: 11491 - type: WindoorCargoLocked - components: - - pos: 4.5,-14.5 - parent: 0 - type: Transform -- uid: 11492 - type: Table - components: - - pos: 4.5,-14.5 - parent: 0 - type: Transform -- uid: 11493 - type: Table - components: - - pos: 5.5,-15.5 - parent: 0 - type: Transform -- uid: 11494 - type: Table - components: - - pos: 5.5,-16.5 - parent: 0 - type: Transform -- uid: 11495 - type: ConveyorBelt - components: - - pos: 7.5,-15.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11497 - Forward: - - port: Left - uid: 11497 - Off: - - port: Middle - uid: 11497 - type: SignalReceiver -- uid: 11496 - type: ConveyorBelt - components: - - pos: 7.5,-14.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11497 - Forward: - - port: Left - uid: 11497 - Off: - - port: Middle - uid: 11497 - type: SignalReceiver -- uid: 11497 - type: TwoWayLever - components: - - pos: 6.5,-15.5 - parent: 0 - type: Transform - - outputs: - Left: - - port: Forward - uid: 11495 - - port: Forward - uid: 11496 - Right: - - port: Reverse - uid: 11495 - - port: Reverse - uid: 11496 - Middle: - - port: Off - uid: 11495 - - port: Off - uid: 11496 - type: SignalTransmitter -- uid: 11498 - type: PlasticFlapsAirtightClear - components: - - pos: 7.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11499 - type: PlasticFlapsAirtightClear - components: - - pos: 1.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11500 - type: PlasticFlapsAirtightClear - components: - - pos: 1.5,-38.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11501 - type: PlasticFlapsAirtightClear - components: - - pos: 4.5,-38.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11502 - type: PlasticFlapsAirtightClear - components: - - pos: 4.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11503 - type: AirlockCargoGlassLocked - components: - - pos: 10.5,-16.5 - parent: 0 - type: Transform -- uid: 11504 - type: AirlockCargoGlassLocked - components: - - pos: 8.5,-14.5 - parent: 0 - type: Transform -- uid: 11505 - type: AirlockCargoGlassLocked - components: - - pos: 8.5,-19.5 - parent: 0 - type: Transform -- uid: 11506 - type: AirlockCargoGlassLocked - components: - - pos: 6.5,-19.5 - parent: 0 - type: Transform -- uid: 11507 - type: AirlockCargoGlassLocked - components: - - pos: 14.5,-15.5 - parent: 0 - type: Transform -- uid: 11508 - type: AirlockSalvageLocked - components: - - pos: 16.5,-26.5 - parent: 0 - type: Transform -- uid: 11509 - type: OreProcessor - components: - - pos: 13.5,-28.5 - parent: 0 - type: Transform -- uid: 11510 - type: WindoorCargoLocked - components: - - pos: 13.5,-28.5 - parent: 0 - type: Transform -- uid: 11511 - type: AirlockCargoLocked - components: - - pos: -3.5,-8.5 - parent: 0 - type: Transform -- uid: 11512 - type: AirlockMaintCargoLocked - components: - - pos: -3.5,-20.5 - parent: 0 - type: Transform -- uid: 11513 - type: AirlockCargoLocked - components: - - pos: -2.5,-17.5 - parent: 0 - type: Transform -- uid: 11514 - type: PlasticFlapsAirtightClear - components: - - pos: -0.5,-17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11515 - type: SignCargo - components: - - pos: 2.5,-14.5 - parent: 0 - type: Transform -- uid: 11516 - type: SignCargoDock - components: - - pos: 4.5,-33.5 - parent: 0 - type: Transform -- uid: 11517 - type: PosterLegitNanotrasenLogo - components: - - pos: 4.5,-28.5 - parent: 0 - type: Transform -- uid: 11518 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-38.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver -- uid: 11519 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-38.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver -- uid: 11520 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-38.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver -- uid: 11521 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-38.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver -- uid: 11522 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-38.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver -- uid: 11523 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-38.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver -- uid: 11524 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-38.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver -- uid: 11525 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-38.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver -- uid: 11526 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-38.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver -- uid: 11527 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-38.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver -- uid: 11528 - type: ConveyorBelt - components: - - pos: 10.5,-37.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver -- uid: 11529 - type: ConveyorBelt - components: - - pos: 10.5,-36.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver -- uid: 11530 - type: ConveyorBelt - components: - - pos: 10.5,-35.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver -- uid: 11531 - type: ConveyorBelt - components: - - pos: 10.5,-34.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver -- uid: 11532 - type: ConveyorBelt - components: - - pos: 10.5,-33.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11550 - Forward: - - port: Left - uid: 11550 - Off: - - port: Middle - uid: 11550 - type: SignalReceiver -- uid: 11533 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-34.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11551 - Forward: - - port: Left - uid: 11551 - Off: - - port: Middle - uid: 11551 - type: SignalReceiver -- uid: 11534 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-34.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11551 - Forward: - - port: Left - uid: 11551 - Off: - - port: Middle - uid: 11551 - type: SignalReceiver -- uid: 11535 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-34.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11551 - Forward: - - port: Left - uid: 11551 - Off: - - port: Middle - uid: 11551 - type: SignalReceiver -- uid: 11536 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-34.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11551 - Forward: - - port: Left - uid: 11551 - Off: - - port: Middle - uid: 11551 - type: SignalReceiver -- uid: 11537 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: 5.5,-34.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11551 - Forward: - - port: Left - uid: 11551 - Off: - - port: Middle - uid: 11551 - type: SignalReceiver -- uid: 11538 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: 5.5,-33.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11551 - Forward: - - port: Left - uid: 11551 - Off: - - port: Middle - uid: 11551 - type: SignalReceiver -- uid: 11539 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: 5.5,-32.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11551 - Forward: - - port: Left - uid: 11551 - Off: - - port: Middle - uid: 11551 - type: SignalReceiver -- uid: 11540 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: 5.5,-31.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11551 - Forward: - - port: Left - uid: 11551 - Off: - - port: Middle - uid: 11551 - type: SignalReceiver -- uid: 11541 - type: BlastDoor - components: - - pos: 1.5,-34.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11543 - type: SignalReceiver -- uid: 11542 - type: BlastDoor - components: - - pos: 1.5,-38.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11543 - type: SignalReceiver -- uid: 11543 - type: SignalButton - components: - - pos: 4.5,-36.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11541 - - port: Toggle - uid: 11542 - type: SignalTransmitter -- uid: 11544 - type: FirelockGlass - components: - - pos: 55.5,57.5 - parent: 0 - type: Transform -- uid: 11545 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11546 - type: WindowReinforcedDirectional - components: - - pos: 9.5,-37.5 - parent: 0 - type: Transform -- uid: 11547 - type: WindowReinforcedDirectional - components: - - pos: 8.5,-37.5 - parent: 0 - type: Transform -- uid: 11548 - type: WindowReinforcedDirectional - components: - - pos: 7.5,-37.5 - parent: 0 - type: Transform -- uid: 11549 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-34.5 - parent: 0 - type: Transform -- uid: 11550 - type: TwoWayLever - components: - - pos: 9.5,-37.5 - parent: 0 - type: Transform - - outputs: - Left: - - port: Forward - uid: 11532 - - port: Forward - uid: 11531 - - port: Forward - uid: 11530 - - port: Forward - uid: 11529 - - port: Forward - uid: 11528 - - port: Forward - uid: 11518 - - port: Forward - uid: 11519 - - port: Forward - uid: 11520 - - port: Forward - uid: 11521 - - port: Forward - uid: 11522 - - port: Forward - uid: 11523 - - port: Forward - uid: 11524 - - port: Forward - uid: 11525 - - port: Forward - uid: 11526 - - port: Forward - uid: 11527 - Right: - - port: Reverse - uid: 11532 - - port: Reverse - uid: 11531 - - port: Reverse - uid: 11530 - - port: Reverse - uid: 11529 - - port: Reverse - uid: 11528 - - port: Reverse - uid: 11518 - - port: Reverse - uid: 11519 - - port: Reverse - uid: 11520 - - port: Reverse - uid: 11521 - - port: Reverse - uid: 11522 - - port: Reverse - uid: 11523 - - port: Reverse - uid: 11524 - - port: Reverse - uid: 11525 - - port: Reverse - uid: 11526 - - port: Reverse - uid: 11527 - Middle: - - port: Off - uid: 11532 - - port: Off - uid: 11531 - - port: Off - uid: 11530 - - port: Off - uid: 11529 - - port: Off - uid: 11528 - - port: Off - uid: 11518 - - port: Off - uid: 11519 - - port: Off - uid: 11520 - - port: Off - uid: 11521 - - port: Off - uid: 11522 - - port: Off - uid: 11523 - - port: Off - uid: 11524 - - port: Off - uid: 11525 - - port: Off - uid: 11526 - - port: Off - uid: 11527 - type: SignalTransmitter -- uid: 11551 - type: TwoWayLever - components: - - pos: 6.5,-34.5 - parent: 0 - type: Transform - - outputs: - Left: - - port: Forward - uid: 11533 - - port: Forward - uid: 11534 - - port: Forward - uid: 11535 - - port: Forward - uid: 11536 - - port: Forward - uid: 11537 - - port: Forward - uid: 11538 - - port: Forward - uid: 11539 - - port: Forward - uid: 11540 - Right: - - port: Reverse - uid: 11533 - - port: Reverse - uid: 11534 - - port: Reverse - uid: 11535 - - port: Reverse - uid: 11536 - - port: Reverse - uid: 11537 - - port: Reverse - uid: 11538 - - port: Reverse - uid: 11539 - - port: Reverse - uid: 11540 - Middle: - - port: Off - uid: 11533 - - port: Off - uid: 11534 - - port: Off - uid: 11535 - - port: Off - uid: 11536 - - port: Off - uid: 11537 - - port: Off - uid: 11538 - - port: Off - uid: 11539 - - port: Off - uid: 11540 - type: SignalTransmitter -- uid: 11552 - type: WallReinforced - components: - - pos: -28.5,-59.5 - parent: 0 - type: Transform -- uid: 11553 - type: CableMV - components: - - pos: 48.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11554 - type: CableMV - components: - - pos: 49.5,6.5 - parent: 0 - type: Transform -- uid: 11555 - type: CableMV - components: - - pos: 50.5,6.5 - parent: 0 - type: Transform -- uid: 11556 - type: CableMV - components: - - pos: 50.5,7.5 - parent: 0 - type: Transform -- uid: 11557 - type: CableMV - components: - - pos: 50.5,8.5 - parent: 0 - type: Transform -- uid: 11558 - type: CableMV - components: - - pos: 50.5,9.5 - parent: 0 - type: Transform -- uid: 11559 - type: CableMV - components: - - pos: 49.5,9.5 - parent: 0 - type: Transform -- uid: 11560 - type: CableMV - components: - - pos: 48.5,9.5 - parent: 0 - type: Transform -- uid: 11561 - type: CableMV - components: - - pos: 47.5,9.5 - parent: 0 - type: Transform -- uid: 11562 - type: CableMV - components: - - pos: 46.5,9.5 - parent: 0 - type: Transform -- uid: 11563 - type: CableMV - components: - - pos: 45.5,9.5 - parent: 0 - type: Transform -- uid: 11564 - type: CableMV - components: - - pos: 44.5,9.5 - parent: 0 - type: Transform -- uid: 11565 - type: CableMV - components: - - pos: 43.5,9.5 - parent: 0 - type: Transform -- uid: 11566 - type: Poweredlight - components: - - pos: 19.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11567 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 19.5,9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11568 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11569 - type: ComputerShuttleCargo - components: - - pos: 5.5,-36.5 - parent: 0 - type: Transform -- uid: 11570 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-35.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11571 - type: PoweredSmallLight - components: - - pos: 2.5,-37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11572 - type: SignSpace - components: - - pos: 2.5,-36.5 - parent: 0 - type: Transform -- uid: 11573 - type: DisposalUnit - components: - - pos: -1.5,-27.5 - parent: 0 - type: Transform -- uid: 11574 - type: DisposalUnit - components: - - pos: 9.5,-18.5 - parent: 0 - type: Transform -- uid: 11575 - type: DisposalUnit - components: - - pos: 9.5,-9.5 - parent: 0 - type: Transform -- uid: 11576 - type: DisposalUnit - components: - - pos: 14.5,-27.5 - parent: 0 - type: Transform -- uid: 11577 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -1.5,-27.5 - parent: 0 - type: Transform -- uid: 11578 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 14.5,-27.5 - parent: 0 - type: Transform -- uid: 11579 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 0 - type: Transform -- uid: 11580 - type: DisposalBend - components: - - pos: 14.5,-25.5 - parent: 0 - type: Transform -- uid: 11581 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-18.5 - parent: 0 - type: Transform -- uid: 11582 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-9.5 - parent: 0 - type: Transform -- uid: 11583 - type: DisposalPipe - components: - - pos: 8.5,-6.5 - parent: 0 - type: Transform -- uid: 11584 - type: DisposalPipe - components: - - pos: 8.5,-7.5 - parent: 0 - type: Transform -- uid: 11585 - type: DisposalPipe - components: - - pos: 8.5,-8.5 - parent: 0 - type: Transform -- uid: 11586 - type: DisposalPipe - components: - - pos: 8.5,-10.5 - parent: 0 - type: Transform -- uid: 11587 - type: DisposalPipe - components: - - pos: 8.5,-11.5 - parent: 0 - type: Transform -- uid: 11588 - type: DisposalPipe - components: - - pos: 8.5,-12.5 - parent: 0 - type: Transform -- uid: 11589 - type: DisposalPipe - components: - - pos: 8.5,-13.5 - parent: 0 - type: Transform -- uid: 11590 - type: DisposalPipe - components: - - pos: 8.5,-14.5 - parent: 0 - type: Transform -- uid: 11591 - type: DisposalPipe - components: - - pos: 8.5,-15.5 - parent: 0 - type: Transform -- uid: 11592 - type: DisposalPipe - components: - - pos: 8.5,-16.5 - parent: 0 - type: Transform -- uid: 11593 - type: DisposalPipe - components: - - pos: 8.5,-17.5 - parent: 0 - type: Transform -- uid: 11594 - type: DisposalPipe - components: - - pos: 8.5,-19.5 - parent: 0 - type: Transform -- uid: 11595 - type: DisposalPipe - components: - - pos: 8.5,-20.5 - parent: 0 - type: Transform -- uid: 11596 - type: DisposalPipe - components: - - pos: 8.5,-21.5 - parent: 0 - type: Transform -- uid: 11597 - type: DisposalPipe - components: - - pos: 8.5,-22.5 - parent: 0 - type: Transform -- uid: 11598 - type: DisposalPipe - components: - - pos: 8.5,-23.5 - parent: 0 - type: Transform -- uid: 11599 - type: DisposalPipe - components: - - pos: 8.5,-24.5 - parent: 0 - type: Transform -- uid: 11600 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -1.5,-26.5 - parent: 0 - type: Transform -- uid: 11601 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-25.5 - parent: 0 - type: Transform -- uid: 11602 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 0 - type: Transform -- uid: 11603 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-25.5 - parent: 0 - type: Transform -- uid: 11604 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 0 - type: Transform -- uid: 11605 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 0 - type: Transform -- uid: 11606 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 0 - type: Transform -- uid: 11607 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-25.5 - parent: 0 - type: Transform -- uid: 11608 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 0 - type: Transform -- uid: 11609 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-25.5 - parent: 0 - type: Transform -- uid: 11610 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-25.5 - parent: 0 - type: Transform -- uid: 11611 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 0 - type: Transform -- uid: 11612 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-25.5 - parent: 0 - type: Transform -- uid: 11613 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 0 - type: Transform -- uid: 11614 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-25.5 - parent: 0 - type: Transform -- uid: 11615 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 14.5,-26.5 - parent: 0 - type: Transform -- uid: 11616 - type: DisposalYJunction - components: - - rot: 3.141592653589793 rad - pos: 8.5,-25.5 - parent: 0 - type: Transform -- uid: 11617 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 8.5,-18.5 - parent: 0 - type: Transform -- uid: 11618 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 8.5,-9.5 - parent: 0 - type: Transform -- uid: 11619 - type: VendingMachineCargoDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,-18.5 - parent: 0 - type: Transform -- uid: 11620 - type: WardrobeCargoFilled - components: - - pos: 0.5,-19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11621 - type: Bed - components: - - pos: 1.5,-13.5 - parent: 0 - type: Transform -- uid: 11622 - type: BaseBigBox - components: - - pos: 1.5244677,-12.530432 - parent: 0 - type: Transform -- uid: 11623 - type: CrateEmptySpawner - components: - - pos: -3.5,-12.5 - parent: 0 - type: Transform -- uid: 11624 - type: CrateEmptySpawner - components: - - pos: -1.5,-10.5 - parent: 0 - type: Transform -- uid: 11625 - type: CrateEmptySpawner - components: - - pos: -0.5,-10.5 - parent: 0 - type: Transform -- uid: 11626 - type: CrateFilledSpawner - components: - - pos: -0.5,-12.5 - parent: 0 - type: Transform -- uid: 11627 - type: CrateFilledSpawner - components: - - pos: -1.5,-12.5 - parent: 0 - type: Transform -- uid: 11628 - type: CrateFilledSpawner - components: - - pos: -3.5,-10.5 - parent: 0 - type: Transform -- uid: 11629 - type: CrateFilledSpawner - components: - - pos: 7.5,-21.5 - parent: 0 - type: Transform -- uid: 11630 - type: CrateFilledSpawner - components: - - pos: 8.5,-22.5 - parent: 0 - type: Transform -- uid: 11631 - type: CrateFilledSpawner - components: - - pos: 12.5,-22.5 - parent: 0 - type: Transform -- uid: 11632 - type: CrateFilledSpawner - components: - - pos: 13.5,-21.5 - parent: 0 - type: Transform -- uid: 11633 - type: CrateFilledSpawner - components: - - pos: 12.5,-24.5 - parent: 0 - type: Transform -- uid: 11634 - type: CrateFilledSpawner - components: - - pos: 13.5,-24.5 - parent: 0 - type: Transform -- uid: 11635 - type: CrateEmptySpawner - components: - - pos: 7.5,-24.5 - parent: 0 - type: Transform -- uid: 11636 - type: CrateEmptySpawner - components: - - pos: 8.5,-24.5 - parent: 0 - type: Transform -- uid: 11637 - type: CrateEmptySpawner - components: - - pos: 13.5,-22.5 - parent: 0 - type: Transform -- uid: 11638 - type: CrateEmptySpawner - components: - - pos: 7.5,-22.5 - parent: 0 - type: Transform -- uid: 11639 - type: AirlockQuartermasterLocked - components: - - pos: -2.5,-25.5 - parent: 0 - type: Transform -- uid: 11640 - type: AirlockQuartermasterGlassLocked - components: - - pos: 4.5,-25.5 - parent: 0 - type: Transform -- uid: 11641 - type: ComputerRadar - components: - - rot: 3.141592653589793 rad - pos: 15.5,-32.5 - parent: 0 - type: Transform -- uid: 11642 - type: SalvageMagnet - components: - - pos: 17.5,-32.5 - parent: 0 - type: Transform -- uid: 11643 - type: PosterContrabandRedRum - components: - - pos: 16.5,-25.5 - parent: 0 - type: Transform -- uid: 11644 - type: SignMagneticsMed - components: - - pos: 11.5,-28.5 - parent: 0 - type: Transform -- uid: 11645 - type: SignMagneticsMed - components: - - pos: 18.5,-33.5 - parent: 0 - type: Transform -- uid: 11646 - type: WeldingFuelTankFull - components: - - pos: 18.5,-32.5 - parent: 0 - type: Transform -- uid: 11647 - type: LockerSalvageSpecialistFilled - components: - - pos: 21.5,-32.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11648 - type: LockerSalvageSpecialistFilled - components: - - pos: 21.5,-31.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11649 - type: LockerSalvageSpecialistFilled - components: - - pos: 21.5,-30.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11650 - type: VendingMachineSalvage - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,-31.5 - parent: 0 - type: Transform -- uid: 11651 - type: WardrobeSalvageFilled - components: - - pos: 21.5,-29.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11652 - type: DisposalUnit - components: - - pos: 21.5,-24.5 - parent: 0 - type: Transform -- uid: 11653 - type: DisposalTrunk - components: - - pos: 21.5,-24.5 - parent: 0 - type: Transform -- uid: 11654 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-26.5 - parent: 0 - type: Transform -- uid: 11655 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-26.5 - parent: 0 - type: Transform -- uid: 11656 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-26.5 - parent: 0 - type: Transform -- uid: 11657 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-26.5 - parent: 0 - type: Transform -- uid: 11658 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-26.5 - parent: 0 - type: Transform -- uid: 11659 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-26.5 - parent: 0 - type: Transform -- uid: 11660 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-26.5 - parent: 0 - type: Transform -- uid: 11661 - type: DisposalPipe - components: - - pos: 21.5,-25.5 - parent: 0 - type: Transform -- uid: 11662 - type: filingCabinetDrawerRandom - components: - - pos: 14.5,-32.5 - parent: 0 - type: Transform -- uid: 11663 - type: Table - components: - - pos: 12.5,-32.5 - parent: 0 - type: Transform -- uid: 11664 - type: Table - components: - - pos: 12.5,-29.5 - parent: 0 - type: Transform -- uid: 11665 - type: Table - components: - - pos: 21.5,-26.5 - parent: 0 - type: Transform -- uid: 11666 - type: Table - components: - - pos: 21.5,-25.5 - parent: 0 - type: Transform -- uid: 11667 - type: KitchenMicrowave - components: - - pos: 21.5,-25.5 - parent: 0 - type: Transform -- uid: 11668 - type: DonkpocketBoxSpawner - components: - - pos: 21.5,-26.5 - parent: 0 - type: Transform -- uid: 11669 - type: Rack - components: - - pos: 21.5,-27.5 - parent: 0 - type: Transform -- uid: 11670 - type: Shovel - components: - - pos: 21.423243,-27.436913 - parent: 0 - type: Transform -- uid: 11671 - type: Pickaxe - components: - - pos: 21.563868,-27.483788 - parent: 0 - type: Transform -- uid: 11672 - type: ToolboxEmergencyFilled - components: - - pos: 21.407618,-27.186913 - parent: 0 - type: Transform -- uid: 11673 - type: ToolboxEmergencyFilled - components: - - pos: 21.470118,-27.233788 - parent: 0 - type: Transform -- uid: 11674 - type: CrateMaterialSteel - components: - - pos: 12.5,-30.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11675 - type: HandheldGPSBasic - components: - - pos: 12.642649,-32.321804 - parent: 0 - type: Transform -- uid: 11676 - type: Lamp - components: - - pos: 12.517649,-29.14993 - parent: 0 - type: Transform -- uid: 11677 - type: Chair - components: - - pos: 15.5,-31.5 - parent: 0 - type: Transform -- uid: 11678 - type: ExtinguisherCabinetFilled - components: - - pos: 17.5,-24.5 - parent: 0 - type: Transform -- uid: 11679 - type: Rack - components: - - pos: 18.5,-24.5 - parent: 0 - type: Transform -- uid: 11680 - type: FireExtinguisher - components: - - pos: 18.309164,-24.290554 - parent: 0 - type: Transform -- uid: 11681 - type: FireExtinguisher - components: - - pos: 18.51229,-24.30618 - parent: 0 - type: Transform -- uid: 11682 - type: FireExtinguisher - components: - - pos: 18.652914,-24.321804 - parent: 0 - type: Transform -- uid: 11683 - type: Catwalk - components: - - pos: 2.5,-32.5 - parent: 0 - type: Transform -- uid: 11684 - type: Catwalk - components: - - pos: 2.5,-31.5 - parent: 0 - type: Transform -- uid: 11685 - type: Catwalk - components: - - pos: 2.5,-30.5 - parent: 0 - type: Transform -- uid: 11686 - type: Catwalk - components: - - pos: 2.5,-29.5 - parent: 0 - type: Transform -- uid: 11687 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11688 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11689 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11690 - type: Poweredlight - components: - - pos: 14.5,-29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11691 - type: Poweredlight - components: - - pos: 19.5,-24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11692 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11693 - type: Poweredlight - components: - - pos: 5.5,-20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11694 - type: Poweredlight - components: - - pos: 14.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11695 - type: Grille - components: - - pos: 14.5,-17.5 - parent: 0 - type: Transform -- uid: 11696 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11697 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11698 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11699 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11700 - type: SignMail - components: - - pos: 22.5,-7.5 - parent: 0 - type: Transform -- uid: 11701 - type: Grille - components: - - pos: 14.5,-16.5 - parent: 0 - type: Transform -- uid: 11702 - type: PosterLegitNanotrasenLogo - components: - - pos: 14.5,-18.5 - parent: 0 - type: Transform -- uid: 11703 - type: PottedPlant6 - components: - - pos: 14.5,-19.5 - parent: 0 - type: Transform -- uid: 11704 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11705 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11706 - type: Poweredlight - components: - - pos: -1.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11707 - type: Poweredlight - components: - - pos: -4.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11708 - type: SpawnPointQuartermaster - components: - - pos: -4.5,-25.5 - parent: 0 - type: Transform -- uid: 11709 - type: LockerQuarterMasterFilled - components: - - pos: -4.5,-23.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11710 - type: TableCarpet - components: - - pos: -3.5,-23.5 - parent: 0 - type: Transform -- uid: 11711 - type: Lamp - components: - - pos: -3.5142477,-23.153912 - parent: 0 - type: Transform -- uid: 11712 - type: TableWood - components: - - pos: 0.5,-26.5 - parent: 0 - type: Transform -- uid: 11713 - type: TableWood - components: - - pos: 0.5,-25.5 - parent: 0 - type: Transform -- uid: 11714 - type: TableWood - components: - - pos: 0.5,-24.5 - parent: 0 - type: Transform -- uid: 11715 - type: Table - components: - - pos: 3.5,-27.5 - parent: 0 - type: Transform -- uid: 11716 - type: Table - components: - - pos: 2.5,-27.5 - parent: 0 - type: Transform -- uid: 11717 - type: ComputerCargoShuttle - components: - - rot: 3.141592653589793 rad - pos: -3.5,-27.5 - parent: 0 - type: Transform -- uid: 11718 - type: DogBed - components: - - pos: -5.5,-23.5 - parent: 0 - type: Transform -- uid: 11719 - type: SpawnMobRaccoonMorticia - components: - - pos: -5.5,-23.5 - parent: 0 - type: Transform -- uid: 11720 - type: filingCabinetTallRandom - components: - - pos: -4.5,-27.5 - parent: 0 - type: Transform -- uid: 11721 - type: ComputerShuttleCargo - components: - - rot: 3.141592653589793 rad - pos: -5.5,-27.5 - parent: 0 - type: Transform -- uid: 11722 - type: CarpetOrange - components: - - pos: -5.5,-27.5 - parent: 0 - type: Transform -- uid: 11723 - type: CarpetOrange - components: - - pos: -5.5,-26.5 - parent: 0 - type: Transform -- uid: 11724 - type: CarpetOrange - components: - - pos: -5.5,-25.5 - parent: 0 - type: Transform -- uid: 11725 - type: CarpetOrange - components: - - pos: -4.5,-27.5 - parent: 0 - type: Transform -- uid: 11726 - type: CarpetOrange - components: - - pos: -4.5,-26.5 - parent: 0 - type: Transform -- uid: 11727 - type: CarpetOrange - components: - - pos: -4.5,-25.5 - parent: 0 - type: Transform -- uid: 11728 - type: CarpetOrange - components: - - pos: -3.5,-27.5 - parent: 0 - type: Transform -- uid: 11729 - type: CarpetOrange - components: - - pos: -3.5,-26.5 - parent: 0 - type: Transform -- uid: 11730 - type: CarpetOrange - components: - - pos: -3.5,-25.5 - parent: 0 - type: Transform -- uid: 11731 - type: CarpetOrange - components: - - pos: -1.5,-25.5 - parent: 0 - type: Transform -- uid: 11732 - type: CarpetOrange - components: - - pos: -0.5,-26.5 - parent: 0 - type: Transform -- uid: 11733 - type: CarpetOrange - components: - - pos: -0.5,-25.5 - parent: 0 - type: Transform -- uid: 11734 - type: CarpetOrange - components: - - pos: -0.5,-24.5 - parent: 0 - type: Transform -- uid: 11735 - type: CarpetOrange - components: - - pos: 0.5,-26.5 - parent: 0 - type: Transform -- uid: 11736 - type: CarpetOrange - components: - - pos: 0.5,-25.5 - parent: 0 - type: Transform -- uid: 11737 - type: CarpetOrange - components: - - pos: 0.5,-24.5 - parent: 0 - type: Transform -- uid: 11738 - type: CarpetOrange - components: - - pos: 1.5,-26.5 - parent: 0 - type: Transform -- uid: 11739 - type: CarpetOrange - components: - - pos: 1.5,-25.5 - parent: 0 - type: Transform -- uid: 11740 - type: CarpetOrange - components: - - pos: 1.5,-24.5 - parent: 0 - type: Transform -- uid: 11741 - type: CarpetOrange - components: - - pos: 2.5,-26.5 - parent: 0 - type: Transform -- uid: 11742 - type: CarpetOrange - components: - - pos: 3.5,-26.5 - parent: 0 - type: Transform -- uid: 11743 - type: CarpetOrange - components: - - pos: 3.5,-25.5 - parent: 0 - type: Transform -- uid: 11744 - type: CarpetOrange - components: - - pos: 3.5,-24.5 - parent: 0 - type: Transform -- uid: 11745 - type: CarpetOrange - components: - - pos: 2.5,-24.5 - parent: 0 - type: Transform -- uid: 11746 - type: filingCabinetDrawerRandom - components: - - pos: 3.5,-23.5 - parent: 0 - type: Transform -- uid: 11747 - type: ComputerCargoOrders - components: - - pos: 2.5,-23.5 - parent: 0 - type: Transform -- uid: 11748 - type: ComputerCargoShuttle - components: - - pos: -1.5,-24.5 - parent: 0 - type: Transform -- uid: 11749 - type: Table - components: - - pos: -1.5,-26.5 - parent: 0 - type: Transform -- uid: 11750 - type: FaxMachineBase - components: - - pos: -1.5,-26.5 - parent: 0 - type: Transform - - name: Quartermaster - type: FaxMachine -- uid: 11751 - type: Table - components: - - pos: 13.5,-14.5 - parent: 0 - type: Transform -- uid: 11752 - type: FaxMachineBase - components: - - pos: 13.5,-14.5 - parent: 0 - type: Transform - - name: Cargo - type: FaxMachine -- uid: 11753 - type: LampGold - components: - - pos: 0.5146644,-24.098255 - parent: 0 - type: Transform -- uid: 11754 - type: Bed - components: - - pos: -3.5,-24.5 - parent: 0 - type: Transform -- uid: 11755 - type: BedsheetQM - components: - - pos: -3.5,-24.5 - parent: 0 - type: Transform -- uid: 11756 - type: PottedPlant23 - components: - - pos: -5.5,-25.5 - parent: 0 - type: Transform -- uid: 11757 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-25.5 - parent: 0 - type: Transform -- uid: 11758 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-26.5 - parent: 0 - type: Transform -- uid: 11759 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-25.5 - parent: 0 - type: Transform -- uid: 11760 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-24.5 - parent: 0 - type: Transform -- uid: 11761 - type: BoxFolderYellow - components: - - pos: 2.6668985,-27.473255 - parent: 0 - type: Transform -- uid: 11762 - type: PowerCellRecharger - components: - - pos: 3.5,-27.5 - parent: 0 - type: Transform -- uid: 11763 - type: Pen - components: - - pos: 3.0262735,-27.23888 - parent: 0 - type: Transform -- uid: 11764 - type: PaperBin5 - components: - - pos: 0.5,-26.5 - parent: 0 - type: Transform -- uid: 11765 - type: RubberStampTrader - components: - - pos: 0.4793985,-25.98888 - parent: 0 - type: Transform -- uid: 11766 - type: HandheldGPSBasic - components: - - pos: 0.4793985,-24.86388 - parent: 0 - type: Transform -- uid: 11767 - type: BoxFolderYellow - components: - - pos: 0.5106485,-25.535755 - parent: 0 - type: Transform -- uid: 11768 - type: ComputerCargoOrders - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-15.5 - parent: 0 - type: Transform -- uid: 11769 - type: ComputerCargoOrders - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-13.5 - parent: 0 - type: Transform -- uid: 11770 - type: WaterCooler - components: - - pos: 7.5,-18.5 - parent: 0 - type: Transform -- uid: 11771 - type: Table - components: - - pos: 3.5,-18.5 - parent: 0 - type: Transform -- uid: 11772 - type: filingCabinetDrawerRandom - components: - - pos: 4.5,-18.5 - parent: 0 - type: Transform -- uid: 11773 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-10.5 - parent: 0 - type: Transform -- uid: 11774 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 0 - type: Transform -- uid: 11775 - type: Table - components: - - pos: 3.5,-12.5 - parent: 0 - type: Transform -- uid: 11776 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 3.5,-13.5 - parent: 0 - type: Transform -- uid: 11777 - type: BoxFolderYellow - components: - - pos: 3.542757,-12.43592 - parent: 0 - type: Transform -- uid: 11778 - type: PaperBin5 - components: - - pos: 3.5,-12.5 - parent: 0 - type: Transform -- uid: 11779 - type: CrateEmptySpawner - components: - - pos: 9.5,-10.5 - parent: 0 - type: Transform -- uid: 11780 - type: PottedPlant2 - components: - - pos: 9.492775,-13.74842 - parent: 0 - type: Transform -- uid: 11781 - type: Table - components: - - pos: 9.5,-12.5 - parent: 0 - type: Transform -- uid: 11782 - type: HandLabeler - components: - - pos: 9.47715,-12.43592 - parent: 0 - type: Transform -- uid: 11783 - type: PowerCellRecharger - components: - - pos: 5.5,-15.5 - parent: 0 - type: Transform -- uid: 11784 - type: MedkitFilled - components: - - pos: 3.513969,-18.40374 - parent: 0 - type: Transform -- uid: 11785 - type: Multitool - components: - - pos: 3.467094,-17.544365 - parent: 0 - type: Transform -- uid: 11786 - type: PaperBin - components: - - pos: 5.5,-16.5 - parent: 0 - type: Transform -- uid: 11787 - type: Table - components: - - pos: -3.5,-16.5 - parent: 0 - type: Transform -- uid: 11788 - type: Table - components: - - pos: -3.5,-15.5 - parent: 0 - type: Transform -- uid: 11789 - type: Rack - components: - - pos: 0.5,-16.5 - parent: 0 - type: Transform -- uid: 11790 - type: Rack - components: - - pos: 0.5,-15.5 - parent: 0 - type: Transform -- uid: 11791 - type: BoxLightMixed - components: - - pos: 0.64768374,-15.577795 - parent: 0 - type: Transform -- uid: 11792 - type: SMESMachineCircuitboard - components: - - pos: 0.47039783,-16.43717 - parent: 0 - type: Transform -- uid: 11793 - type: PartRodMetal - components: - - pos: 0.56414783,-16.327795 - parent: 0 - type: Transform -- uid: 11794 - type: SheetSteel - components: - - pos: 0.56414783,-15.46842 - parent: 0 - type: Transform -- uid: 11795 - type: KitchenMicrowave - components: - - pos: -3.5,-15.5 - parent: 0 - type: Transform -- uid: 11796 - type: DonkpocketBoxSpawner - components: - - pos: -3.5,-16.5 - parent: 0 - type: Transform -- uid: 11797 - type: SinkWide - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-14.5 - parent: 0 - type: Transform -- uid: 11798 - type: PottedPlant8 - components: - - pos: -2.511829,-21.802713 - parent: 0 - type: Transform -- uid: 11799 - type: Table - components: - - pos: -1.5,-18.5 - parent: 0 - type: Transform -- uid: 11800 - type: ClothingHandsGlovesColorRed - components: - - pos: -1.558704,-18.396463 - parent: 0 - type: Transform -- uid: 11801 - type: SurveillanceCameraSupply - components: - - pos: 1.5,-27.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Quartermaster's Office - type: SurveillanceCamera -- uid: 11802 - type: SurveillanceCameraSupply - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Shuttle Bay - type: SurveillanceCamera -- uid: 11803 - type: SurveillanceCameraSupply - components: - - rot: 3.141592653589793 rad - pos: 10.5,-20.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargobay - type: SurveillanceCamera -- uid: 11804 - type: SurveillanceCameraSupply - components: - - rot: 3.141592653589793 rad - pos: 17.5,-29.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage Bay - type: SurveillanceCamera -- uid: 11805 - type: SurveillanceCameraSupply - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-12.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Mail - type: SurveillanceCamera -- uid: 11806 - type: SurveillanceCameraSupply - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-12.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Lobby - type: SurveillanceCamera -- uid: 11807 - type: IntercomSupply - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-28.5 - parent: 0 - type: Transform -- uid: 11808 - type: IntercomSupply - components: - - pos: 2.5,-19.5 - parent: 0 - type: Transform -- uid: 11809 - type: IntercomSupply - components: - - pos: 16.5,-18.5 - parent: 0 - type: Transform -- uid: 11810 - type: IntercomSupply - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 0 - type: Transform -- uid: 11811 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11812 - type: ComputerCrewMonitoring - components: - - pos: 13.5,-8.5 - parent: 0 - type: Transform -- uid: 11813 - type: LockerSecurityFilled - components: - - pos: 13.5,-10.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11814 - type: Table - components: - - pos: 13.5,-12.5 - parent: 0 - type: Transform -- uid: 11815 - type: Table - components: - - pos: 13.5,-11.5 - parent: 0 - type: Transform -- uid: 11816 - type: Table - components: - - pos: 11.5,-11.5 - parent: 0 - type: Transform -- uid: 11817 - type: filingCabinetDrawerRandom - components: - - pos: 11.5,-10.5 - parent: 0 - type: Transform -- uid: 11818 - type: VendingMachineSecDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,-12.5 - parent: 0 - type: Transform -- uid: 11819 - type: PaperBin5 - components: - - pos: 11.5,-11.5 - parent: 0 - type: Transform -- uid: 11820 - type: WeaponCapacitorRecharger - components: - - pos: 13.5,-11.5 - parent: 0 - type: Transform -- uid: 11821 - type: Screwdriver - components: - - pos: 13.511198,-12.645817 - parent: 0 - type: Transform -- uid: 11822 - type: Grille - components: - - pos: 22.5,-14.5 - parent: 0 - type: Transform -- uid: 11823 - type: Grille - components: - - pos: 22.5,-13.5 - parent: 0 - type: Transform -- uid: 11824 - type: Grille - components: - - pos: 22.5,-11.5 - parent: 0 - type: Transform -- uid: 11825 - type: Grille - components: - - pos: 22.5,-9.5 - parent: 0 - type: Transform -- uid: 11826 - type: PlasticFlapsAirtightClear - components: - - pos: 22.5,-8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11827 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11835 - Forward: - - port: Left - uid: 11835 - Off: - - port: Middle - uid: 11835 - type: SignalReceiver -- uid: 11828 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11835 - Forward: - - port: Left - uid: 11835 - Off: - - port: Middle - uid: 11835 - type: SignalReceiver -- uid: 11829 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-8.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11835 - Forward: - - port: Left - uid: 11835 - Off: - - port: Middle - uid: 11835 - type: SignalReceiver -- uid: 11830 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-8.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11835 - Forward: - - port: Left - uid: 11835 - Off: - - port: Middle - uid: 11835 - type: SignalReceiver -- uid: 11831 - type: WindoorSecureCargoLocked - components: - - rot: 3.141592653589793 rad - pos: 18.5,-9.5 - parent: 0 - type: Transform -- uid: 11832 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-8.5 - parent: 0 - type: Transform -- uid: 11833 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 19.5,-9.5 - parent: 0 - type: Transform -- uid: 11834 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 20.5,-9.5 - parent: 0 - type: Transform -- uid: 11835 - type: TwoWayLever - components: - - pos: 17.5,-9.5 - parent: 0 - type: Transform - - outputs: - Left: - - port: Forward - uid: 11830 - - port: Forward - uid: 11829 - - port: Forward - uid: 11828 - - port: Forward - uid: 11827 - Right: - - port: Reverse - uid: 11830 - - port: Reverse - uid: 11829 - - port: Reverse - uid: 11828 - - port: Reverse - uid: 11827 - Middle: - - port: Off - uid: 11830 - - port: Off - uid: 11829 - - port: Off - uid: 11828 - - port: Off - uid: 11827 - type: SignalTransmitter -- uid: 11836 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 21.5,-9.5 - parent: 0 - type: Transform -- uid: 11837 - type: Table - components: - - pos: 22.5,-10.5 - parent: 0 - type: Transform -- uid: 11838 - type: FirelockGlass - components: - - pos: 22.5,-10.5 - parent: 0 - type: Transform -- uid: 11839 - type: WindoorSecureCargoLocked - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-10.5 - parent: 0 - type: Transform -- uid: 11840 - type: AirlockCargoGlassLocked - components: - - pos: 16.5,-7.5 - parent: 0 - type: Transform -- uid: 11841 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11842 - type: Poweredlight - components: - - pos: 20.5,-8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11843 - type: filingCabinetTallRandom - components: - - pos: 21.5,-12.5 - parent: 0 - type: Transform -- uid: 11844 - type: Table - components: - - pos: 21.5,-9.5 - parent: 0 - type: Transform -- uid: 11845 - type: Table - components: - - pos: 21.5,-11.5 - parent: 0 - type: Transform -- uid: 11846 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-10.5 - parent: 0 - type: Transform -- uid: 11847 - type: Table - components: - - pos: 21.5,-14.5 - parent: 0 - type: Transform -- uid: 11848 - type: SpawnVehicleATV - components: - - pos: 20.5,-17.5 - parent: 0 - type: Transform -- uid: 11849 - type: Table - components: - - pos: 21.5,-13.5 - parent: 0 - type: Transform -- uid: 11850 - type: VehicleKeyATV - components: - - pos: 21.546587,-14.529799 - parent: 0 - type: Transform -- uid: 11851 - type: WindoorCargoLocked - components: - - pos: 20.5,-15.5 - parent: 0 - type: Transform -- uid: 11852 - type: WindowReinforcedDirectional - components: - - pos: 21.5,-15.5 - parent: 0 - type: Transform -- uid: 11853 - type: WallSolid - components: - - pos: 15.5,-18.5 - parent: 0 - type: Transform -- uid: 11854 - type: RemoteSignaller - components: - - name: Mailroom Garage Door Opener - type: MetaData - - pos: 21.53215,-13.842299 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9596 - - port: Toggle - uid: 9595 - type: SignalTransmitter -- uid: 11855 - type: Table - components: - - pos: 17.5,-8.5 - parent: 0 - type: Transform -- uid: 11856 - type: CableMV - components: - - pos: 96.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11857 - type: CableMV - components: - - pos: 96.5,-2.5 - parent: 0 - type: Transform -- uid: 11858 - type: CableMV - components: - - pos: 95.5,-2.5 - parent: 0 - type: Transform -- uid: 11859 - type: GeneratorUranium - components: - - pos: 92.5,1.5 - parent: 0 - type: Transform -- uid: 11860 - type: Pen - components: - - pos: 28.432793,-12.569245 - parent: 0 - type: Transform -- uid: 11861 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-15.5 - parent: 0 - type: Transform -- uid: 11862 - type: GeneratorUranium - components: - - pos: 94.5,1.5 - parent: 0 - type: Transform -- uid: 11863 - type: CableMV - components: - - pos: 94.5,-0.5 - parent: 0 - type: Transform -- uid: 11864 - type: CableMV - components: - - pos: 94.5,-1.5 - parent: 0 - type: Transform -- uid: 11865 - type: CableMV - components: - - pos: 94.5,-2.5 - parent: 0 - type: Transform -- uid: 11866 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 90.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11867 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11868 - type: BoxCardboard - components: - - pos: 17.46454,-8.357296 - parent: 0 - type: Transform -- uid: 11869 - type: Table - components: - - pos: 15.5,-9.5 - parent: 0 - type: Transform -- uid: 11870 - type: Table - components: - - pos: 15.5,-8.5 - parent: 0 - type: Transform -- uid: 11871 - type: Table - components: - - pos: 15.5,-10.5 - parent: 0 - type: Transform -- uid: 11872 - type: PaperBin10 - components: - - pos: 21.5,-9.5 - parent: 0 - type: Transform -- uid: 11873 - type: SpawnPointSalvageSpecialist - components: - - pos: 15.5,-30.5 - parent: 0 - type: Transform -- uid: 11874 - type: SpawnPointSalvageSpecialist - components: - - pos: 16.5,-30.5 - parent: 0 - type: Transform -- uid: 11875 - type: SpawnPointSalvageSpecialist - components: - - pos: 17.5,-30.5 - parent: 0 - type: Transform -- uid: 11876 - type: SpawnPointCargoTechnician - components: - - pos: -1.5,-20.5 - parent: 0 - type: Transform -- uid: 11877 - type: SpawnPointCargoTechnician - components: - - pos: -0.5,-20.5 - parent: 0 - type: Transform -- uid: 11878 - type: SpawnPointCargoTechnician - components: - - pos: 0.5,-20.5 - parent: 0 - type: Transform -- uid: 11879 - type: ExtinguisherCabinetFilled - components: - - pos: 7.5,-3.5 - parent: 0 - type: Transform -- uid: 11880 - type: ExtinguisherCabinetFilled - components: - - pos: 17.5,-7.5 - parent: 0 - type: Transform -- uid: 11881 - type: ExtinguisherCabinetFilled - components: - - pos: 4.5,-22.5 - parent: 0 - type: Transform -- uid: 11882 - type: ExtinguisherCabinetFilled - components: - - pos: -3.5,-19.5 - parent: 0 - type: Transform -- uid: 11883 - type: ExtinguisherCabinetFilled - components: - - pos: -4.5,-11.5 - parent: 0 - type: Transform -- uid: 11884 - type: RandomPosterAny - components: - - pos: -4.5,-10.5 - parent: 0 - type: Transform -- uid: 11885 - type: RandomPosterAny - components: - - pos: -4.5,-14.5 - parent: 0 - type: Transform -- uid: 11886 - type: RandomPosterAny - components: - - pos: 17.5,-22.5 - parent: 0 - type: Transform -- uid: 11887 - type: RandomPosterLegit - components: - - pos: 11.5,-3.5 - parent: 0 - type: Transform -- uid: 11888 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 17.5,0.5 - parent: 0 - type: Transform -- uid: 11889 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-2.5 - parent: 0 - type: Transform -- uid: 11890 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-2.5 - parent: 0 - type: Transform -- uid: 11891 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-2.5 - parent: 0 - type: Transform -- uid: 11892 - type: CableApcExtension - components: - - pos: 24.5,-0.5 - parent: 0 - type: Transform -- uid: 11893 - type: CableApcExtension - components: - - pos: 24.5,-1.5 - parent: 0 - type: Transform -- uid: 11894 - type: CableApcExtension - components: - - pos: 24.5,-2.5 - parent: 0 - type: Transform -- uid: 11895 - type: CableApcExtension - components: - - pos: 16.5,-1.5 - parent: 0 - type: Transform -- uid: 11896 - type: CableApcExtension - components: - - pos: 16.5,-2.5 - parent: 0 - type: Transform -- uid: 11897 - type: CableApcExtension - components: - - pos: 16.5,-3.5 - parent: 0 - type: Transform -- uid: 11898 - type: CableApcExtension - components: - - pos: 16.5,-8.5 - parent: 0 - type: Transform -- uid: 11899 - type: CableApcExtension - components: - - pos: 16.5,-7.5 - parent: 0 - type: Transform -- uid: 11900 - type: CableApcExtension - components: - - pos: 16.5,-6.5 - parent: 0 - type: Transform -- uid: 11901 - type: CableApcExtension - components: - - pos: 16.5,-5.5 - parent: 0 - type: Transform -- uid: 11902 - type: CableApcExtension - components: - - pos: 15.5,-5.5 - parent: 0 - type: Transform -- uid: 11903 - type: CableApcExtension - components: - - pos: 14.5,-5.5 - parent: 0 - type: Transform -- uid: 11904 - type: CableApcExtension - components: - - pos: 13.5,-5.5 - parent: 0 - type: Transform -- uid: 11905 - type: CableApcExtension - components: - - pos: 12.5,-5.5 - parent: 0 - type: Transform -- uid: 11906 - type: CableApcExtension - components: - - pos: 17.5,-5.5 - parent: 0 - type: Transform -- uid: 11907 - type: CableApcExtension - components: - - pos: 18.5,-5.5 - parent: 0 - type: Transform -- uid: 11908 - type: CableApcExtension - components: - - pos: 19.5,-5.5 - parent: 0 - type: Transform -- uid: 11909 - type: CableApcExtension - components: - - pos: 20.5,-5.5 - parent: 0 - type: Transform -- uid: 11910 - type: CableApcExtension - components: - - pos: 21.5,-5.5 - parent: 0 - type: Transform -- uid: 11911 - type: CableApcExtension - components: - - pos: 22.5,-5.5 - parent: 0 - type: Transform -- uid: 11912 - type: CableApcExtension - components: - - pos: 23.5,-5.5 - parent: 0 - type: Transform -- uid: 11913 - type: CableApcExtension - components: - - pos: 24.5,-5.5 - parent: 0 - type: Transform -- uid: 11914 - type: CableApcExtension - components: - - pos: 8.5,-8.5 - parent: 0 - type: Transform -- uid: 11915 - type: CableApcExtension - components: - - pos: 8.5,-7.5 - parent: 0 - type: Transform -- uid: 11916 - type: CableApcExtension - components: - - pos: 8.5,-6.5 - parent: 0 - type: Transform -- uid: 11917 - type: CableApcExtension - components: - - pos: 8.5,-5.5 - parent: 0 - type: Transform -- uid: 11918 - type: CableApcExtension - components: - - pos: 9.5,-5.5 - parent: 0 - type: Transform -- uid: 11919 - type: CableApcExtension - components: - - pos: 10.5,-5.5 - parent: 0 - type: Transform -- uid: 11920 - type: CableApcExtension - components: - - pos: -3.5,-7.5 - parent: 0 - type: Transform -- uid: 11921 - type: CableApcExtension - components: - - pos: -2.5,-7.5 - parent: 0 - type: Transform -- uid: 11922 - type: CableApcExtension - components: - - pos: -0.5,-7.5 - parent: 0 - type: Transform -- uid: 11923 - type: PottedPlantBioluminscent - components: - - pos: -1.4712675,-23.82773 - parent: 0 - type: Transform -- uid: 11924 - type: CableApcExtension - components: - - pos: 0.5,-7.5 - parent: 0 - type: Transform -- uid: 11925 - type: CableApcExtension - components: - - pos: -1.5,-7.5 - parent: 0 - type: Transform -- uid: 11926 - type: GasPipeStraight - components: - - pos: -23.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11927 - type: GasPipeStraight - components: - - pos: -23.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11928 - type: GasPipeStraight - components: - - pos: -23.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11929 - type: GasPipeStraight - components: - - pos: -23.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11930 - type: GasPipeStraight - components: - - pos: -23.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11931 - type: GasPipeStraight - components: - - pos: -23.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11932 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11933 - type: GasPipeStraight - components: - - pos: -23.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11934 - type: GasPipeStraight - components: - - pos: -23.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11935 - type: GasPipeStraight - components: - - pos: -23.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11936 - type: GasPipeStraight - components: - - pos: -23.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11937 - type: GasPipeStraight - components: - - pos: -23.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11938 - type: GasPipeStraight - components: - - pos: -23.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11939 - type: GasPipeStraight - components: - - pos: -23.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11940 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11941 - type: GasPipeStraight - components: - - pos: -23.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11942 - type: GasPipeStraight - components: - - pos: -23.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11943 - type: GasPipeStraight - components: - - pos: -23.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11944 - type: GasPipeStraight - components: - - pos: -23.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11945 - type: GasPipeStraight - components: - - pos: -21.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11946 - type: GasPipeStraight - components: - - pos: -21.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11947 - type: GasPipeStraight - components: - - pos: -21.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11948 - type: GasPipeStraight - components: - - pos: -21.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11949 - type: GasPipeStraight - components: - - pos: -21.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11950 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11951 - type: GasPipeStraight - components: - - pos: -21.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11952 - type: GasPipeStraight - components: - - pos: -21.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11953 - type: GasPipeStraight - components: - - pos: -21.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11954 - type: GasPipeStraight - components: - - pos: -21.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11955 - type: GasPipeStraight - components: - - pos: -21.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11956 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11957 - type: GasPipeStraight - components: - - pos: -21.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11958 - type: GasPipeStraight - components: - - pos: -21.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11959 - type: GasPipeStraight - components: - - pos: -21.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11960 - type: GasPipeStraight - components: - - pos: -21.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11961 - type: GasPipeStraight - components: - - pos: -21.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11962 - type: GasPipeStraight - components: - - pos: -21.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11963 - type: GasPipeStraight - components: - - pos: -21.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11964 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -21.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11965 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -23.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11966 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11967 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11968 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11969 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11970 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11971 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11972 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11973 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11974 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11975 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11976 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11977 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11978 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11979 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11980 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11981 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11982 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11983 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11984 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11985 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -33.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11986 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11987 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11988 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11989 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11990 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11991 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11992 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11993 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11994 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11995 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11996 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11997 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11998 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11999 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12000 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12001 - type: GasPipeTJunction - components: - - pos: -35.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12002 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12003 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12004 - type: APCBasic - components: - - pos: -13.5,-17.5 - parent: 0 - type: Transform -- uid: 12005 - type: CableApcExtension - components: - - pos: -18.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12006 - type: CableApcExtension - components: - - pos: -18.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12007 - type: CableApcExtension - components: - - pos: -18.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12008 - type: CableApcExtension - components: - - pos: -19.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12009 - type: CableApcExtension - components: - - pos: -20.5,-16.5 - parent: 0 - type: Transform -- uid: 12010 - type: CableApcExtension - components: - - pos: -21.5,-18.5 - parent: 0 - type: Transform -- uid: 12011 - type: CableApcExtension - components: - - pos: -21.5,-19.5 - parent: 0 - type: Transform -- uid: 12012 - type: CableApcExtension - components: - - pos: -20.5,-19.5 - parent: 0 - type: Transform -- uid: 12013 - type: CableApcExtension - components: - - pos: -19.5,-19.5 - parent: 0 - type: Transform -- uid: 12014 - type: CableApcExtension - components: - - pos: -21.5,-14.5 - parent: 0 - type: Transform -- uid: 12015 - type: CableApcExtension - components: - - pos: -21.5,-13.5 - parent: 0 - type: Transform -- uid: 12016 - type: CableApcExtension - components: - - pos: -21.5,-12.5 - parent: 0 - type: Transform -- uid: 12017 - type: CableApcExtension - components: - - pos: -21.5,-11.5 - parent: 0 - type: Transform -- uid: 12018 - type: CableApcExtension - components: - - pos: -21.5,-10.5 - parent: 0 - type: Transform -- uid: 12019 - type: CableApcExtension - components: - - pos: -21.5,-9.5 - parent: 0 - type: Transform -- uid: 12020 - type: CableApcExtension - components: - - pos: -21.5,-8.5 - parent: 0 - type: Transform -- uid: 12021 - type: CableApcExtension - components: - - pos: -21.5,-7.5 - parent: 0 - type: Transform -- uid: 12022 - type: CableApcExtension - components: - - pos: -21.5,-6.5 - parent: 0 - type: Transform -- uid: 12023 - type: CableApcExtension - components: - - pos: -20.5,-6.5 - parent: 0 - type: Transform -- uid: 12024 - type: CableApcExtension - components: - - pos: -19.5,-6.5 - parent: 0 - type: Transform -- uid: 12025 - type: CableApcExtension - components: - - pos: -18.5,-6.5 - parent: 0 - type: Transform -- uid: 12026 - type: CableApcExtension - components: - - pos: -18.5,-7.5 - parent: 0 - type: Transform -- uid: 12027 - type: Catwalk - components: - - pos: -19.5,-16.5 - parent: 0 - type: Transform -- uid: 12028 - type: Catwalk - components: - - pos: -18.5,-16.5 - parent: 0 - type: Transform -- uid: 12029 - type: Catwalk - components: - - pos: -18.5,-15.5 - parent: 0 - type: Transform -- uid: 12030 - type: Catwalk - components: - - pos: -18.5,-14.5 - parent: 0 - type: Transform -- uid: 12031 - type: Catwalk - components: - - pos: -18.5,-13.5 - parent: 0 - type: Transform -- uid: 12032 - type: Catwalk - components: - - pos: -17.5,-13.5 - parent: 0 - type: Transform -- uid: 12033 - type: Catwalk - components: - - pos: -16.5,-13.5 - parent: 0 - type: Transform -- uid: 12034 - type: Catwalk - components: - - pos: -15.5,-13.5 - parent: 0 - type: Transform -- uid: 12035 - type: Catwalk - components: - - pos: -15.5,-12.5 - parent: 0 - type: Transform -- uid: 12036 - type: Catwalk - components: - - pos: -14.5,-12.5 - parent: 0 - type: Transform -- uid: 12037 - type: Catwalk - components: - - pos: -13.5,-12.5 - parent: 0 - type: Transform -- uid: 12038 - type: Catwalk - components: - - pos: -12.5,-12.5 - parent: 0 - type: Transform -- uid: 12039 - type: Catwalk - components: - - pos: -11.5,-12.5 - parent: 0 - type: Transform -- uid: 12040 - type: Catwalk - components: - - pos: -10.5,-12.5 - parent: 0 - type: Transform -- uid: 12041 - type: Catwalk - components: - - pos: -9.5,-12.5 - parent: 0 - type: Transform -- uid: 12042 - type: Catwalk - components: - - pos: -8.5,-12.5 - parent: 0 - type: Transform -- uid: 12043 - type: Catwalk - components: - - pos: -7.5,-12.5 - parent: 0 - type: Transform -- uid: 12044 - type: Catwalk - components: - - pos: -6.5,-12.5 - parent: 0 - type: Transform -- uid: 12045 - type: Catwalk - components: - - pos: -5.5,-12.5 - parent: 0 - type: Transform -- uid: 12046 - type: Catwalk - components: - - pos: -5.5,-11.5 - parent: 0 - type: Transform -- uid: 12047 - type: Catwalk - components: - - pos: -5.5,-10.5 - parent: 0 - type: Transform -- uid: 12048 - type: Catwalk - components: - - pos: -5.5,-9.5 - parent: 0 - type: Transform -- uid: 12049 - type: Catwalk - components: - - pos: -5.5,-8.5 - parent: 0 - type: Transform -- uid: 12050 - type: Catwalk - components: - - pos: -5.5,-13.5 - parent: 0 - type: Transform -- uid: 12051 - type: Catwalk - components: - - pos: -5.5,-14.5 - parent: 0 - type: Transform -- uid: 12052 - type: Catwalk - components: - - pos: -5.5,-15.5 - parent: 0 - type: Transform -- uid: 12053 - type: Catwalk - components: - - pos: -5.5,-16.5 - parent: 0 - type: Transform -- uid: 12054 - type: Catwalk - components: - - pos: -5.5,-17.5 - parent: 0 - type: Transform -- uid: 12055 - type: Catwalk - components: - - pos: -5.5,-18.5 - parent: 0 - type: Transform -- uid: 12056 - type: Catwalk - components: - - pos: -5.5,-19.5 - parent: 0 - type: Transform -- uid: 12057 - type: Catwalk - components: - - pos: -5.5,-20.5 - parent: 0 - type: Transform -- uid: 12058 - type: Catwalk - components: - - pos: -4.5,-20.5 - parent: 0 - type: Transform -- uid: 12059 - type: Catwalk - components: - - pos: -10.5,-25.5 - parent: 0 - type: Transform -- uid: 12060 - type: Catwalk - components: - - pos: -11.5,-25.5 - parent: 0 - type: Transform -- uid: 12061 - type: Catwalk - components: - - pos: -9.5,-25.5 - parent: 0 - type: Transform -- uid: 12062 - type: Catwalk - components: - - pos: -9.5,-24.5 - parent: 0 - type: Transform -- uid: 12063 - type: Catwalk - components: - - pos: -8.5,-24.5 - parent: 0 - type: Transform -- uid: 12064 - type: Catwalk - components: - - pos: -9.5,-23.5 - parent: 0 - type: Transform -- uid: 12065 - type: Catwalk - components: - - pos: -9.5,-22.5 - parent: 0 - type: Transform -- uid: 12066 - type: Catwalk - components: - - pos: -9.5,-21.5 - parent: 0 - type: Transform -- uid: 12067 - type: Catwalk - components: - - pos: -9.5,-20.5 - parent: 0 - type: Transform -- uid: 12068 - type: Catwalk - components: - - pos: -8.5,-20.5 - parent: 0 - type: Transform -- uid: 12069 - type: Catwalk - components: - - pos: -7.5,-20.5 - parent: 0 - type: Transform -- uid: 12070 - type: Catwalk - components: - - pos: -6.5,-20.5 - parent: 0 - type: Transform -- uid: 12071 - type: Girder - components: - - pos: -17.5,-21.5 - parent: 0 - type: Transform -- uid: 12072 - type: Barricade - components: - - pos: -17.5,-21.5 - parent: 0 - type: Transform -- uid: 12073 - type: ComputerFrame - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-22.5 - parent: 0 - type: Transform -- uid: 12074 - type: ComputerBroken - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-21.5 - parent: 0 - type: Transform -- uid: 12075 - type: PuddleVomit - components: - - pos: -15.5,-21.5 - parent: 0 - type: Transform -- uid: 12076 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-22.5 - parent: 0 - type: Transform -- uid: 12077 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-21.5 - parent: 0 - type: Transform -- uid: 12078 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-20.5 - parent: 0 - type: Transform -- uid: 12079 - type: AirlockEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-19.5 - parent: 0 - type: Transform -- uid: 12080 - type: ComfyChair - components: - - pos: -19.5,-18.5 - parent: 0 - type: Transform -- uid: 12081 - type: ComfyChair - components: - - pos: -18.5,-18.5 - parent: 0 - type: Transform -- uid: 12082 - type: ComfyChair - components: - - pos: -17.5,-18.5 - parent: 0 - type: Transform -- uid: 12083 - type: UnfinishedMachineFrame - components: - - pos: -15.5,-18.5 - parent: 0 - type: Transform -- uid: 12084 - type: Table - components: - - pos: -14.5,-18.5 - parent: 0 - type: Transform -- uid: 12085 - type: DisposalUnit - components: - - pos: -11.5,-18.5 - parent: 0 - type: Transform -- uid: 12086 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 0 - type: Transform -- uid: 12087 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 0 - type: Transform -- uid: 12088 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 0 - type: Transform -- uid: 12089 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 0 - type: Transform -- uid: 12090 - type: DisposalUnit - components: - - pos: -8.5,-18.5 - parent: 0 - type: Transform -- uid: 12091 - type: Rack - components: - - pos: -14.5,-20.5 - parent: 0 - type: Transform -- uid: 12092 - type: ClosetToolFilled - components: - - pos: -14.5,-21.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12093 - type: CableMV - components: - - pos: -12.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12094 - type: CableMV - components: - - pos: -13.5,-16.5 - parent: 0 - type: Transform -- uid: 12095 - type: CableMV - components: - - pos: -13.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12096 - type: CableMV - components: - - pos: -13.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12097 - type: CableMV - components: - - pos: -13.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12098 - type: CableMV - components: - - pos: -13.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12099 - type: CableMVStack1 - components: - - pos: -13.521715,-21.520857 - parent: 0 - type: Transform -- uid: 12100 - type: CableApcExtension - components: - - pos: -13.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12101 - type: CableApcExtension - components: - - pos: -13.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12102 - type: CableApcExtension - components: - - pos: -13.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12103 - type: CableApcExtension - components: - - pos: -13.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12104 - type: CableApcExtension - components: - - pos: -14.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12105 - type: CableApcExtension - components: - - pos: -15.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12106 - type: CableApcExtension - components: - - pos: -16.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12107 - type: CableApcExtension - components: - - pos: -17.5,-20.5 - parent: 0 - type: Transform -- uid: 12108 - type: CableApcExtension - components: - - pos: -18.5,-20.5 - parent: 0 - type: Transform -- uid: 12109 - type: CableApcExtension - components: - - pos: -19.5,-20.5 - parent: 0 - type: Transform -- uid: 12110 - type: CableApcExtension - components: - - pos: -19.5,-21.5 - parent: 0 - type: Transform -- uid: 12111 - type: CableApcExtension - components: - - pos: -20.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12112 - type: CableApcExtension - components: - - pos: -18.5,-21.5 - parent: 0 - type: Transform -- uid: 12113 - type: CableApcExtension - components: - - pos: -18.5,-22.5 - parent: 0 - type: Transform -- uid: 12114 - type: CableApcExtension - components: - - pos: -18.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12115 - type: CableApcExtension - components: - - pos: -12.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12116 - type: CableApcExtension - components: - - pos: -12.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12117 - type: CableApcExtension - components: - - pos: -12.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12118 - type: CableApcExtension - components: - - pos: -11.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12119 - type: CableApcExtension - components: - - pos: -10.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12120 - type: CableApcExtension - components: - - pos: -9.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12121 - type: CableApcExtension - components: - - pos: -9.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12122 - type: CableApcExtension - components: - - pos: -9.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12123 - type: CableApcExtension - components: - - pos: -9.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12124 - type: CableApcExtension - components: - - pos: -10.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12125 - type: CableApcExtension - components: - - pos: -11.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12126 - type: CableApcExtension - components: - - pos: -9.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12127 - type: Bookshelf - components: - - pos: -11.5,-19.5 - parent: 0 - type: Transform -- uid: 12128 - type: PuddleVomit - components: - - pos: -14.5,-19.5 - parent: 0 - type: Transform -- uid: 12129 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12130 - type: PoweredSmallLightEmpty - components: - - pos: -16.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12131 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12132 - type: AirlockMaintEngiLocked - components: - - pos: -10.5,-22.5 - parent: 0 - type: Transform -- uid: 12133 - type: PlushieBee - components: - - pos: -18.528942,-20.489607 - parent: 0 - type: Transform -- uid: 12134 - type: DrinkBeer - components: - - pos: -18.45263,-21.176937 - parent: 0 - type: Transform -- uid: 12135 - type: ClothingOuterVestHazard - components: - - pos: -14.483647,-20.489437 - parent: 0 - type: Transform -- uid: 12136 - type: FlashlightLantern - components: - - pos: -14.514897,-18.426937 - parent: 0 - type: Transform -- uid: 12137 - type: CableApcStack - components: - - pos: -14.483647,-18.192562 - parent: 0 - type: Transform -- uid: 12138 - type: Ash - components: - - pos: -13.499272,-22.708187 - parent: 0 - type: Transform -- uid: 12139 - type: CigaretteSpent - components: - - pos: -13.378749,-22.567562 - parent: 0 - type: Transform -- uid: 12140 - type: CigaretteSpent - components: - - pos: -13.483647,-22.411312 - parent: 0 - type: Transform -- uid: 12141 - type: CigaretteSpent - components: - - pos: -13.316249,-22.630062 - parent: 0 - type: Transform -- uid: 12142 - type: Bucket - components: - - pos: -14.503749,-22.677902 - parent: 0 - type: Transform -- uid: 12143 - type: RandomSpawner - components: - - pos: -18.5,-22.5 - parent: 0 - type: Transform -- uid: 12144 - type: RandomSpawner - components: - - pos: -17.5,-14.5 - parent: 0 - type: Transform -- uid: 12145 - type: AirlockMaintLocked - components: - - pos: -20.5,-16.5 - parent: 0 - type: Transform -- uid: 12146 - type: ClosetEmergencyFilledRandom - components: - - pos: -17.5,-16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12147 - type: ClosetFireFilled - components: - - pos: -15.5,-16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12148 - type: Rack - components: - - pos: -16.5,-16.5 - parent: 0 - type: Transform -- uid: 12149 - type: BoxLightMixed - components: - - pos: -16.498352,-16.302273 - parent: 0 - type: Transform -- uid: 12150 - type: IngotSilver1 - components: - - pos: -16.326477,-16.552273 - parent: 0 - type: Transform -- uid: 12151 - type: IngotSilver1 - components: - - pos: -16.326477,-16.552273 - parent: 0 - type: Transform -- uid: 12152 - type: LockerElectricalSuppliesFilled - components: - - pos: -11.5,-16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12153 - type: LockerWeldingSuppliesFilled - components: - - pos: -13.5,-16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12154 - type: CableHV - components: - - pos: -13.5,-14.5 - parent: 0 - type: Transform -- uid: 12155 - type: ComputerPowerMonitoring - components: - - pos: -13.5,-14.5 - parent: 0 - type: Transform -- uid: 12156 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: -13.5,-15.5 - parent: 0 - type: Transform -- uid: 12157 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 0 - type: Transform -- uid: 12158 - type: FlashlightLantern - components: - - pos: -11.59606,-14.411647 - parent: 0 - type: Transform -- uid: 12159 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12160 - type: SignElectricalMed - components: - - pos: -11.5,-13.5 - parent: 0 - type: Transform -- uid: 12161 - type: WallSolid - components: - - pos: -8.5,-13.5 - parent: 0 - type: Transform -- uid: 12162 - type: WallSolidRust - components: - - pos: -6.5,-13.5 - parent: 0 - type: Transform -- uid: 12163 - type: SynthesizerInstrument - components: - - pos: -7.512309,-16.147633 - parent: 0 - type: Transform -- uid: 12164 - type: ClothingOuterCoatBomber - components: - - pos: -9.515972,-16.273252 - parent: 0 - type: Transform -- uid: 12165 - type: FoodPizzaArnoldSlice - components: - - pos: -7.449809,-15.475758 - parent: 0 - type: Transform -- uid: 12166 - type: TablePlasmaGlass - components: - - pos: -9.5,-15.5 - parent: 0 - type: Transform -- uid: 12167 - type: TablePlasmaGlass - components: - - pos: -9.5,-16.5 - parent: 0 - type: Transform -- uid: 12168 - type: TablePlasmaGlass - components: - - pos: -7.5,-16.5 - parent: 0 - type: Transform -- uid: 12169 - type: TablePlasmaGlass - components: - - pos: -7.5,-15.5 - parent: 0 - type: Transform -- uid: 12170 - type: SpaceVillainArcadeFilled - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 0 - type: Transform -- uid: 12171 - type: ClothingEyesGlassesGarOrange - components: - - pos: -9.562847,-15.553883 - parent: 0 - type: Transform -- uid: 12172 - type: AirlockMaintLocked - components: - - pos: -12.5,-25.5 - parent: 0 - type: Transform -- uid: 12173 - type: AirlockMaintLocked - components: - - pos: -9.5,-26.5 - parent: 0 - type: Transform -- uid: 12174 - type: Girder - components: - - pos: -7.5,-23.5 - parent: 0 - type: Transform -- uid: 12175 - type: CrateEmptySpawner - components: - - pos: -4.5,-21.5 - parent: 0 - type: Transform -- uid: 12176 - type: CrateEmptySpawner - components: - - pos: -4.5,-19.5 - parent: 0 - type: Transform -- uid: 12177 - type: Rack - components: - - pos: -4.5,-18.5 - parent: 0 - type: Transform -- uid: 12178 - type: ToolboxEmergencyFilled - components: - - pos: -4.475977,-18.390898 - parent: 0 - type: Transform -- uid: 12179 - type: WaterTankFull - components: - - pos: -5.5,-21.5 - parent: 0 - type: Transform -- uid: 12180 - type: SpawnMobMouse - components: - - pos: -7.5,-21.5 - parent: 0 - type: Transform -- uid: 12181 - type: GrilleBroken - components: - - pos: -7.5,-23.5 - parent: 0 - type: Transform -- uid: 12182 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -7.5,-22.5 - parent: 0 - type: Transform -- uid: 12183 - type: ClosetMaintenanceFilledRandom - components: - - pos: -7.5,-22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12184 - type: MaintenanceFluffSpawner - components: - - pos: -8.5,-25.5 - parent: 0 - type: Transform -- uid: 12185 - type: CrateEmptySpawner - components: - - pos: -7.5,-25.5 - parent: 0 - type: Transform -- uid: 12186 - type: RandomSpawner - components: - - pos: -8.5,-23.5 - parent: 0 - type: Transform -- uid: 12187 - type: WeldingFuelTankFull - components: - - pos: -11.5,-24.5 - parent: 0 - type: Transform -- uid: 12188 - type: PoweredSmallLight - components: - - pos: -16.5,-13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12189 - type: PoweredSmallLight - components: - - pos: -7.5,-20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12190 - type: WallReinforced - components: - - pos: -41.5,-27.5 - parent: 0 - type: Transform -- uid: 12191 - type: WallReinforced - components: - - pos: -42.5,-27.5 - parent: 0 - type: Transform -- uid: 12192 - type: ReinforcedWindow - components: - - pos: -37.5,-29.5 - parent: 0 - type: Transform -- uid: 12193 - type: ReinforcedWindow - components: - - pos: -41.5,-29.5 - parent: 0 - type: Transform -- uid: 12194 - type: WallReinforced - components: - - pos: -41.5,-28.5 - parent: 0 - type: Transform -- uid: 12195 - type: WallReinforced - components: - - pos: -41.5,-30.5 - parent: 0 - type: Transform -- uid: 12196 - type: WallReinforced - components: - - pos: -41.5,-31.5 - parent: 0 - type: Transform -- uid: 12197 - type: WallReinforced - components: - - pos: -43.5,-31.5 - parent: 0 - type: Transform -- uid: 12198 - type: WallReinforced - components: - - pos: -43.5,-33.5 - parent: 0 - type: Transform -- uid: 12199 - type: WallReinforced - components: - - pos: -42.5,-33.5 - parent: 0 - type: Transform -- uid: 12200 - type: WallReinforced - components: - - pos: -41.5,-33.5 - parent: 0 - type: Transform -- uid: 12201 - type: AirlockExternalGlass - components: - - pos: -41.5,-32.5 - parent: 0 - type: Transform -- uid: 12202 - type: AirlockExternalGlass - components: - - pos: -41.5,-39.5 - parent: 0 - type: Transform -- uid: 12203 - type: ReinforcedWindow - components: - - pos: -42.5,-31.5 - parent: 0 - type: Transform -- uid: 12204 - type: WallReinforced - components: - - pos: -42.5,-34.5 - parent: 0 - type: Transform -- uid: 12205 - type: WallReinforced - components: - - pos: -42.5,-37.5 - parent: 0 - type: Transform -- uid: 12206 - type: ReinforcedWindow - components: - - pos: -42.5,-36.5 - parent: 0 - type: Transform -- uid: 12207 - type: ReinforcedWindow - components: - - pos: -42.5,-35.5 - parent: 0 - type: Transform -- uid: 12208 - type: WallReinforced - components: - - pos: -41.5,-38.5 - parent: 0 - type: Transform -- uid: 12209 - type: WallReinforced - components: - - pos: -42.5,-38.5 - parent: 0 - type: Transform -- uid: 12210 - type: WallReinforced - components: - - pos: -43.5,-38.5 - parent: 0 - type: Transform -- uid: 12211 - type: WallReinforced - components: - - pos: -43.5,-41.5 - parent: 0 - type: Transform -- uid: 12212 - type: ReinforcedWindow - components: - - pos: -42.5,-41.5 - parent: 0 - type: Transform -- uid: 12213 - type: WallReinforced - components: - - pos: -41.5,-41.5 - parent: 0 - type: Transform -- uid: 12214 - type: ReinforcedWindow - components: - - pos: -37.5,-33.5 - parent: 0 - type: Transform -- uid: 12215 - type: ReinforcedWindow - components: - - pos: -37.5,-32.5 - parent: 0 - type: Transform -- uid: 12216 - type: ReinforcedWindow - components: - - pos: -37.5,-36.5 - parent: 0 - type: Transform -- uid: 12217 - type: WallReinforced - components: - - pos: -37.5,-35.5 - parent: 0 - type: Transform -- uid: 12218 - type: WallReinforced - components: - - pos: -37.5,-34.5 - parent: 0 - type: Transform -- uid: 12219 - type: WallReinforced - components: - - pos: -37.5,-37.5 - parent: 0 - type: Transform -- uid: 12220 - type: WallReinforced - components: - - pos: -37.5,-38.5 - parent: 0 - type: Transform -- uid: 12221 - type: WallReinforced - components: - - pos: -36.5,-38.5 - parent: 0 - type: Transform -- uid: 12222 - type: WallReinforced - components: - - pos: -35.5,-38.5 - parent: 0 - type: Transform -- uid: 12223 - type: WallReinforced - components: - - pos: -34.5,-38.5 - parent: 0 - type: Transform -- uid: 12224 - type: WallReinforced - components: - - pos: -33.5,-38.5 - parent: 0 - type: Transform -- uid: 12225 - type: WallReinforced - components: - - pos: -32.5,-38.5 - parent: 0 - type: Transform -- uid: 12226 - type: WallReinforced - components: - - pos: -31.5,-38.5 - parent: 0 - type: Transform -- uid: 12227 - type: WallReinforced - components: - - pos: -30.5,-38.5 - parent: 0 - type: Transform -- uid: 12228 - type: WallReinforced - components: - - pos: -29.5,-38.5 - parent: 0 - type: Transform -- uid: 12229 - type: WallReinforced - components: - - pos: -28.5,-38.5 - parent: 0 - type: Transform -- uid: 12230 - type: WallReinforced - components: - - pos: -28.5,-39.5 - parent: 0 - type: Transform -- uid: 12231 - type: WallReinforced - components: - - pos: -28.5,-40.5 - parent: 0 - type: Transform -- uid: 12232 - type: WallReinforced - components: - - pos: -28.5,-41.5 - parent: 0 - type: Transform -- uid: 12233 - type: WallReinforced - components: - - pos: -28.5,-42.5 - parent: 0 - type: Transform -- uid: 12234 - type: WallReinforced - components: - - pos: -28.5,-43.5 - parent: 0 - type: Transform -- uid: 12235 - type: WallReinforced - components: - - pos: -28.5,-44.5 - parent: 0 - type: Transform -- uid: 12236 - type: WallReinforced - components: - - pos: -28.5,-45.5 - parent: 0 - type: Transform -- uid: 12237 - type: WallReinforced - components: - - pos: -29.5,-45.5 - parent: 0 - type: Transform -- uid: 12238 - type: WallReinforced - components: - - pos: -30.5,-45.5 - parent: 0 - type: Transform -- uid: 12239 - type: WallReinforced - components: - - pos: -31.5,-45.5 - parent: 0 - type: Transform -- uid: 12240 - type: WallReinforced - components: - - pos: -32.5,-45.5 - parent: 0 - type: Transform -- uid: 12241 - type: WallReinforced - components: - - pos: -33.5,-45.5 - parent: 0 - type: Transform -- uid: 12242 - type: WallReinforced - components: - - pos: -34.5,-45.5 - parent: 0 - type: Transform -- uid: 12243 - type: WallReinforced - components: - - pos: -35.5,-45.5 - parent: 0 - type: Transform -- uid: 12244 - type: WallReinforced - components: - - pos: -36.5,-45.5 - parent: 0 - type: Transform -- uid: 12245 - type: WallReinforced - components: - - pos: -37.5,-45.5 - parent: 0 - type: Transform -- uid: 12246 - type: WallReinforced - components: - - pos: -37.5,-44.5 - parent: 0 - type: Transform -- uid: 12247 - type: WallReinforced - components: - - pos: -37.5,-43.5 - parent: 0 - type: Transform -- uid: 12248 - type: ReinforcedWindow - components: - - pos: -37.5,-42.5 - parent: 0 - type: Transform -- uid: 12249 - type: ReinforcedWindow - components: - - pos: -37.5,-41.5 - parent: 0 - type: Transform -- uid: 12250 - type: ReinforcedWindow - components: - - pos: -37.5,-39.5 - parent: 0 - type: Transform -- uid: 12251 - type: ReinforcedWindow - components: - - pos: -32.5,-39.5 - parent: 0 - type: Transform -- uid: 12252 - type: ReinforcedWindow - components: - - pos: -32.5,-40.5 - parent: 0 - type: Transform -- uid: 12253 - type: ReinforcedWindow - components: - - pos: -32.5,-41.5 - parent: 0 - type: Transform -- uid: 12254 - type: WallReinforced - components: - - pos: -32.5,-42.5 - parent: 0 - type: Transform -- uid: 12255 - type: ReinforcedWindow - components: - - pos: -39.5,-44.5 - parent: 0 - type: Transform -- uid: 12256 - type: WallReinforced - components: - - pos: -28.5,-46.5 - parent: 0 - type: Transform -- uid: 12257 - type: WallReinforced - components: - - pos: -28.5,-47.5 - parent: 0 - type: Transform -- uid: 12258 - type: WallReinforced - components: - - pos: -28.5,-48.5 - parent: 0 - type: Transform -- uid: 12259 - type: WallReinforced - components: - - pos: -31.5,-48.5 - parent: 0 - type: Transform -- uid: 12260 - type: WallReinforced - components: - - pos: -32.5,-48.5 - parent: 0 - type: Transform -- uid: 12261 - type: WallReinforced - components: - - pos: -35.5,-48.5 - parent: 0 - type: Transform -- uid: 12262 - type: WallReinforced - components: - - pos: -36.5,-48.5 - parent: 0 - type: Transform -- uid: 12263 - type: WallReinforced - components: - - pos: -37.5,-48.5 - parent: 0 - type: Transform -- uid: 12264 - type: WallReinforced - components: - - pos: -37.5,-49.5 - parent: 0 - type: Transform -- uid: 12265 - type: ReinforcedWindow - components: - - pos: -34.5,-48.5 - parent: 0 - type: Transform -- uid: 12266 - type: ReinforcedWindow - components: - - pos: -33.5,-48.5 - parent: 0 - type: Transform -- uid: 12267 - type: ReinforcedWindow - components: - - pos: -30.5,-48.5 - parent: 0 - type: Transform -- uid: 12268 - type: ReinforcedWindow - components: - - pos: -31.5,-46.5 - parent: 0 - type: Transform -- uid: 12269 - type: ReinforcedWindow - components: - - pos: -37.5,-50.5 - parent: 0 - type: Transform -- uid: 12270 - type: ReinforcedWindow - components: - - pos: -37.5,-51.5 - parent: 0 - type: Transform -- uid: 12271 - type: ReinforcedWindow - components: - - pos: -37.5,-52.5 - parent: 0 - type: Transform -- uid: 12272 - type: WallReinforced - components: - - pos: -37.5,-53.5 - parent: 0 - type: Transform -- uid: 12273 - type: ReinforcedWindow - components: - - pos: -37.5,-54.5 - parent: 0 - type: Transform -- uid: 12274 - type: ReinforcedWindow - components: - - pos: -37.5,-55.5 - parent: 0 - type: Transform -- uid: 12275 - type: ReinforcedWindow - components: - - pos: -37.5,-56.5 - parent: 0 - type: Transform -- uid: 12276 - type: WallReinforced - components: - - pos: -36.5,-58.5 - parent: 0 - type: Transform -- uid: 12277 - type: WallReinforced - components: - - pos: -37.5,-58.5 - parent: 0 - type: Transform -- uid: 12278 - type: WallReinforced - components: - - pos: -37.5,-57.5 - parent: 0 - type: Transform -- uid: 12279 - type: WallReinforced - components: - - pos: -28.5,-60.5 - parent: 0 - type: Transform -- uid: 12280 - type: ReinforcedWindow - components: - - pos: -33.5,-58.5 - parent: 0 - type: Transform -- uid: 12281 - type: WallReinforced - components: - - pos: -32.5,-58.5 - parent: 0 - type: Transform -- uid: 12282 - type: WallReinforced - components: - - pos: -40.5,-70.5 - parent: 0 - type: Transform -- uid: 12283 - type: WallReinforced - components: - - pos: -35.5,-58.5 - parent: 0 - type: Transform -- uid: 12284 - type: ReinforcedWindow - components: - - pos: -34.5,-58.5 - parent: 0 - type: Transform -- uid: 12285 - type: WallReinforced - components: - - pos: -31.5,-58.5 - parent: 0 - type: Transform -- uid: 12286 - type: WallReinforced - components: - - pos: -28.5,-58.5 - parent: 0 - type: Transform -- uid: 12287 - type: ReinforcedWindow - components: - - pos: -30.5,-58.5 - parent: 0 - type: Transform -- uid: 12288 - type: WallReinforced - components: - - pos: -28.5,-61.5 - parent: 0 - type: Transform -- uid: 12289 - type: WallReinforced - components: - - pos: -29.5,-61.5 - parent: 0 - type: Transform -- uid: 12290 - type: WallReinforced - components: - - pos: -30.5,-61.5 - parent: 0 - type: Transform -- uid: 12291 - type: WallReinforced - components: - - pos: -31.5,-61.5 - parent: 0 - type: Transform -- uid: 12292 - type: ReinforcedWindow - components: - - pos: -31.5,-60.5 - parent: 0 - type: Transform -- uid: 12293 - type: WallReinforced - components: - - pos: -41.5,-42.5 - parent: 0 - type: Transform -- uid: 12294 - type: WallReinforced - components: - - pos: -41.5,-43.5 - parent: 0 - type: Transform -- uid: 12295 - type: WallReinforced - components: - - pos: -41.5,-44.5 - parent: 0 - type: Transform -- uid: 12296 - type: WallReinforced - components: - - pos: -41.5,-45.5 - parent: 0 - type: Transform -- uid: 12297 - type: WallReinforced - components: - - pos: -42.5,-45.5 - parent: 0 - type: Transform -- uid: 12298 - type: WallReinforced - components: - - pos: -43.5,-45.5 - parent: 0 - type: Transform -- uid: 12299 - type: WallReinforced - components: - - pos: -44.5,-45.5 - parent: 0 - type: Transform -- uid: 12300 - type: WallReinforced - components: - - pos: -44.5,-46.5 - parent: 0 - type: Transform -- uid: 12301 - type: WallReinforced - components: - - pos: -44.5,-47.5 - parent: 0 - type: Transform -- uid: 12302 - type: WallReinforced - components: - - pos: -44.5,-48.5 - parent: 0 - type: Transform -- uid: 12303 - type: WallReinforced - components: - - pos: -43.5,-48.5 - parent: 0 - type: Transform -- uid: 12304 - type: WallReinforced - components: - - pos: -42.5,-48.5 - parent: 0 - type: Transform -- uid: 12305 - type: WallReinforced - components: - - pos: -41.5,-48.5 - parent: 0 - type: Transform -- uid: 12306 - type: WallReinforced - components: - - pos: -44.5,-49.5 - parent: 0 - type: Transform -- uid: 12307 - type: WallReinforced - components: - - pos: -44.5,-50.5 - parent: 0 - type: Transform -- uid: 12308 - type: WallReinforced - components: - - pos: -44.5,-51.5 - parent: 0 - type: Transform -- uid: 12309 - type: WallReinforced - components: - - pos: -44.5,-52.5 - parent: 0 - type: Transform -- uid: 12310 - type: WallReinforced - components: - - pos: -41.5,-53.5 - parent: 0 - type: Transform -- uid: 12311 - type: WallReinforced - components: - - pos: -42.5,-53.5 - parent: 0 - type: Transform -- uid: 12312 - type: WallReinforced - components: - - pos: -43.5,-53.5 - parent: 0 - type: Transform -- uid: 12313 - type: WallReinforced - components: - - pos: -44.5,-53.5 - parent: 0 - type: Transform -- uid: 12314 - type: WallReinforced - components: - - pos: -45.5,-53.5 - parent: 0 - type: Transform -- uid: 12315 - type: WallReinforced - components: - - pos: -45.5,-54.5 - parent: 0 - type: Transform -- uid: 12316 - type: WallReinforced - components: - - pos: -42.5,-54.5 - parent: 0 - type: Transform -- uid: 12317 - type: WallReinforced - components: - - pos: -41.5,-56.5 - parent: 0 - type: Transform -- uid: 12318 - type: WallReinforced - components: - - pos: -42.5,-56.5 - parent: 0 - type: Transform -- uid: 12319 - type: WallReinforced - components: - - pos: -43.5,-56.5 - parent: 0 - type: Transform -- uid: 12320 - type: WallReinforced - components: - - pos: -44.5,-56.5 - parent: 0 - type: Transform -- uid: 12321 - type: WallReinforced - components: - - pos: -45.5,-56.5 - parent: 0 - type: Transform -- uid: 12322 - type: WallReinforced - components: - - pos: -46.5,-56.5 - parent: 0 - type: Transform -- uid: 12323 - type: WallReinforced - components: - - pos: -47.5,-56.5 - parent: 0 - type: Transform -- uid: 12324 - type: WallReinforced - components: - - pos: -47.5,-57.5 - parent: 0 - type: Transform -- uid: 12325 - type: WallReinforced - components: - - pos: -47.5,-58.5 - parent: 0 - type: Transform -- uid: 12326 - type: WallReinforced - components: - - pos: -47.5,-59.5 - parent: 0 - type: Transform -- uid: 12327 - type: WallReinforced - components: - - pos: -43.5,-59.5 - parent: 0 - type: Transform -- uid: 12328 - type: WallReinforced - components: - - pos: -42.5,-59.5 - parent: 0 - type: Transform -- uid: 12329 - type: WallReinforced - components: - - pos: -41.5,-59.5 - parent: 0 - type: Transform -- uid: 12330 - type: WallReinforced - components: - - pos: -41.5,-60.5 - parent: 0 - type: Transform -- uid: 12331 - type: WallReinforced - components: - - pos: -41.5,-61.5 - parent: 0 - type: Transform -- uid: 12332 - type: WallReinforced - components: - - pos: -40.5,-61.5 - parent: 0 - type: Transform -- uid: 12333 - type: WallReinforced - components: - - pos: -39.5,-61.5 - parent: 0 - type: Transform -- uid: 12334 - type: WallReinforced - components: - - pos: -38.5,-61.5 - parent: 0 - type: Transform -- uid: 12335 - type: ReinforcedWindow - components: - - pos: -35.5,-62.5 - parent: 0 - type: Transform -- uid: 12336 - type: ReinforcedWindow - components: - - pos: -34.5,-62.5 - parent: 0 - type: Transform -- uid: 12337 - type: ReinforcedWindow - components: - - pos: -34.5,-64.5 - parent: 0 - type: Transform -- uid: 12338 - type: ReinforcedWindow - components: - - pos: -35.5,-64.5 - parent: 0 - type: Transform -- uid: 12339 - type: WallReinforced - components: - - pos: -36.5,-64.5 - parent: 0 - type: Transform -- uid: 12340 - type: WallReinforced - components: - - pos: -36.5,-63.5 - parent: 0 - type: Transform -- uid: 12341 - type: WallReinforced - components: - - pos: -36.5,-62.5 - parent: 0 - type: Transform -- uid: 12342 - type: WallReinforced - components: - - pos: -33.5,-64.5 - parent: 0 - type: Transform -- uid: 12343 - type: WallReinforced - components: - - pos: -33.5,-63.5 - parent: 0 - type: Transform -- uid: 12344 - type: WallReinforced - components: - - pos: -33.5,-62.5 - parent: 0 - type: Transform -- uid: 12345 - type: ReinforcedWindow - components: - - pos: -38.5,-63.5 - parent: 0 - type: Transform -- uid: 12346 - type: ReinforcedWindow - components: - - pos: -31.5,-63.5 - parent: 0 - type: Transform -- uid: 12347 - type: WallReinforced - components: - - pos: -38.5,-64.5 - parent: 0 - type: Transform -- uid: 12348 - type: WallReinforced - components: - - pos: -38.5,-62.5 - parent: 0 - type: Transform -- uid: 12349 - type: WallReinforced - components: - - pos: -31.5,-62.5 - parent: 0 - type: Transform -- uid: 12350 - type: WallReinforced - components: - - pos: -31.5,-64.5 - parent: 0 - type: Transform -- uid: 12351 - type: WallReinforced - components: - - pos: -28.5,-62.5 - parent: 0 - type: Transform -- uid: 12352 - type: WallReinforced - components: - - pos: -41.5,-70.5 - parent: 0 - type: Transform -- uid: 12353 - type: WallReinforced - components: - - pos: -41.5,-69.5 - parent: 0 - type: Transform -- uid: 12354 - type: WallReinforced - components: - - pos: -41.5,-68.5 - parent: 0 - type: Transform -- uid: 12355 - type: WallReinforced - components: - - pos: -41.5,-67.5 - parent: 0 - type: Transform -- uid: 12356 - type: WallReinforced - components: - - pos: -41.5,-66.5 - parent: 0 - type: Transform -- uid: 12357 - type: WallReinforced - components: - - pos: -41.5,-65.5 - parent: 0 - type: Transform -- uid: 12358 - type: WallReinforced - components: - - pos: -41.5,-64.5 - parent: 0 - type: Transform -- uid: 12359 - type: WallReinforced - components: - - pos: -41.5,-63.5 - parent: 0 - type: Transform -- uid: 12360 - type: WallReinforced - components: - - pos: -41.5,-62.5 - parent: 0 - type: Transform -- uid: 12361 - type: WallReinforced - components: - - pos: -28.5,-63.5 - parent: 0 - type: Transform -- uid: 12362 - type: WallReinforced - components: - - pos: -28.5,-64.5 - parent: 0 - type: Transform -- uid: 12363 - type: WallReinforced - components: - - pos: -28.5,-65.5 - parent: 0 - type: Transform -- uid: 12364 - type: WallReinforced - components: - - pos: -28.5,-66.5 - parent: 0 - type: Transform -- uid: 12365 - type: WallReinforced - components: - - pos: -28.5,-67.5 - parent: 0 - type: Transform -- uid: 12366 - type: WallReinforced - components: - - pos: -28.5,-68.5 - parent: 0 - type: Transform -- uid: 12367 - type: WallReinforced - components: - - pos: -28.5,-69.5 - parent: 0 - type: Transform -- uid: 12368 - type: WallReinforced - components: - - pos: -28.5,-70.5 - parent: 0 - type: Transform -- uid: 12369 - type: WallReinforced - components: - - pos: -29.5,-70.5 - parent: 0 - type: Transform -- uid: 12370 - type: Catwalk - components: - - pos: -40.5,-71.5 - parent: 0 - type: Transform -- uid: 12371 - type: Catwalk - components: - - pos: -29.5,-71.5 - parent: 0 - type: Transform -- uid: 12372 - type: Catwalk - components: - - pos: -29.5,-81.5 - parent: 0 - type: Transform -- uid: 12373 - type: Catwalk - components: - - pos: -40.5,-81.5 - parent: 0 - type: Transform -- uid: 12374 - type: Catwalk - components: - - pos: -40.5,-69.5 - parent: 0 - type: Transform -- uid: 12375 - type: Catwalk - components: - - pos: -40.5,-68.5 - parent: 0 - type: Transform -- uid: 12376 - type: Catwalk - components: - - pos: -40.5,-67.5 - parent: 0 - type: Transform -- uid: 12377 - type: Catwalk - components: - - pos: -40.5,-66.5 - parent: 0 - type: Transform -- uid: 12378 - type: Catwalk - components: - - pos: -40.5,-65.5 - parent: 0 - type: Transform -- uid: 12379 - type: Catwalk - components: - - pos: -40.5,-64.5 - parent: 0 - type: Transform -- uid: 12380 - type: Catwalk - components: - - pos: -40.5,-63.5 - parent: 0 - type: Transform -- uid: 12381 - type: Catwalk - components: - - pos: -40.5,-62.5 - parent: 0 - type: Transform -- uid: 12382 - type: Catwalk - components: - - pos: -39.5,-64.5 - parent: 0 - type: Transform -- uid: 12383 - type: Catwalk - components: - - pos: -39.5,-63.5 - parent: 0 - type: Transform -- uid: 12384 - type: Catwalk - components: - - pos: -29.5,-69.5 - parent: 0 - type: Transform -- uid: 12385 - type: Catwalk - components: - - pos: -29.5,-68.5 - parent: 0 - type: Transform -- uid: 12386 - type: Catwalk - components: - - pos: -29.5,-67.5 - parent: 0 - type: Transform -- uid: 12387 - type: Catwalk - components: - - pos: -29.5,-66.5 - parent: 0 - type: Transform -- uid: 12388 - type: Catwalk - components: - - pos: -29.5,-65.5 - parent: 0 - type: Transform -- uid: 12389 - type: Catwalk - components: - - pos: -29.5,-64.5 - parent: 0 - type: Transform -- uid: 12390 - type: Catwalk - components: - - pos: -29.5,-63.5 - parent: 0 - type: Transform -- uid: 12391 - type: Catwalk - components: - - pos: -29.5,-62.5 - parent: 0 - type: Transform -- uid: 12392 - type: Catwalk - components: - - pos: -30.5,-64.5 - parent: 0 - type: Transform -- uid: 12393 - type: Catwalk - components: - - pos: -30.5,-63.5 - parent: 0 - type: Transform -- uid: 12394 - type: Catwalk - components: - - pos: -35.5,-63.5 - parent: 0 - type: Transform -- uid: 12395 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -29.5,-48.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 12396 - type: Catwalk - components: - - pos: -34.5,-63.5 - parent: 0 - type: Transform -- uid: 12397 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 3.141592653589793 rad - pos: -29.5,-58.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 12398 - type: Catwalk - components: - - pos: -43.5,-66.5 - parent: 0 - type: Transform -- uid: 12399 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -32.5,-64.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 12400 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -37.5,-64.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 12401 - type: AirlockExternalEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-55.5 - parent: 0 - type: Transform -- uid: 12402 - type: AirlockExternalEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-55.5 - parent: 0 - type: Transform -- uid: 12403 - type: AirlockExternalGlassEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-59.5 - parent: 0 - type: Transform -- uid: 12404 - type: AirlockExternalGlassEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-47.5 - parent: 0 - type: Transform -- uid: 12405 - type: WallReinforced - components: - - pos: -47.5,-60.5 - parent: 0 - type: Transform -- uid: 12406 - type: WallReinforced - components: - - pos: -47.5,-61.5 - parent: 0 - type: Transform -- uid: 12407 - type: WallReinforced - components: - - pos: -47.5,-62.5 - parent: 0 - type: Transform -- uid: 12408 - type: WallReinforced - components: - - pos: -43.5,-60.5 - parent: 0 - type: Transform -- uid: 12409 - type: WallReinforced - components: - - pos: -43.5,-61.5 - parent: 0 - type: Transform -- uid: 12410 - type: WallReinforced - components: - - pos: -43.5,-62.5 - parent: 0 - type: Transform -- uid: 12411 - type: ReinforcedWindow - components: - - pos: -46.5,-59.5 - parent: 0 - type: Transform -- uid: 12412 - type: ReinforcedWindow - components: - - pos: -44.5,-59.5 - parent: 0 - type: Transform -- uid: 12413 - type: ReinforcedWindow - components: - - pos: -44.5,-62.5 - parent: 0 - type: Transform -- uid: 12414 - type: ReinforcedWindow - components: - - pos: -46.5,-62.5 - parent: 0 - type: Transform -- uid: 12415 - type: Catwalk - components: - - pos: -44.5,-66.5 - parent: 0 - type: Transform -- uid: 12416 - type: Catwalk - components: - - pos: -46.5,-66.5 - parent: 0 - type: Transform -- uid: 12417 - type: Catwalk - components: - - pos: -47.5,-66.5 - parent: 0 - type: Transform -- uid: 12418 - type: WallReinforced - components: - - pos: -47.5,-63.5 - parent: 0 - type: Transform -- uid: 12419 - type: WallReinforced - components: - - pos: -43.5,-63.5 - parent: 0 - type: Transform -- uid: 12420 - type: AirlockExternalGlassEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-62.5 - parent: 0 - type: Transform -- uid: 12421 - type: AirlockExternalGlassEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-62.5 - parent: 0 - type: Transform -- uid: 12422 - type: AtmosDeviceFanTiny - components: - - pos: -43.5,-32.5 - parent: 0 - type: Transform -- uid: 12423 - type: AtmosDeviceFanTiny - components: - - pos: -43.5,-39.5 - parent: 0 - type: Transform -- uid: 12424 - type: AirlockExternalGlassShuttleEscape - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-39.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 12425 - type: AirlockExternalGlassShuttleEscape - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-32.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 12426 - type: WallSolidRust - components: - - pos: -22.5,-48.5 - parent: 0 - type: Transform -- uid: 12427 - type: WallSolidRust - components: - - pos: -51.5,-58.5 - parent: 0 - type: Transform -- uid: 12428 - type: WallSolid - components: - - pos: -51.5,-54.5 - parent: 0 - type: Transform -- uid: 12429 - type: WallSolid - components: - - pos: -46.5,-52.5 - parent: 0 - type: Transform -- uid: 12430 - type: Grille - components: - - pos: -51.5,-57.5 - parent: 0 - type: Transform -- uid: 12431 - type: Grille - components: - - pos: -51.5,-55.5 - parent: 0 - type: Transform -- uid: 12432 - type: Catwalk - components: - - pos: -56.5,-54.5 - parent: 0 - type: Transform -- uid: 12433 - type: Catwalk - components: - - pos: -56.5,-58.5 - parent: 0 - type: Transform -- uid: 12434 - type: SignSecureMed - components: - - pos: -51.5,-54.5 - parent: 0 - type: Transform -- uid: 12435 - type: SignSecureMed - components: - - pos: -51.5,-58.5 - parent: 0 - type: Transform -- uid: 12436 - type: SignSecureMed - components: - - pos: -46.5,-52.5 - parent: 0 - type: Transform -- uid: 12437 - type: AsteroidRock - components: - - pos: -48.5,-62.5 - parent: 0 - type: Transform -- uid: 12438 - type: AsteroidRock - components: - - pos: -48.5,-61.5 - parent: 0 - type: Transform -- uid: 12439 - type: AsteroidRock - components: - - pos: -48.5,-60.5 - parent: 0 - type: Transform -- uid: 12440 - type: AsteroidRock - components: - - pos: -48.5,-59.5 - parent: 0 - type: Transform -- uid: 12441 - type: AsteroidRock - components: - - pos: -48.5,-58.5 - parent: 0 - type: Transform -- uid: 12442 - type: AsteroidRock - components: - - pos: -50.5,-58.5 - parent: 0 - type: Transform -- uid: 12443 - type: AsteroidRock - components: - - pos: -49.5,-58.5 - parent: 0 - type: Transform -- uid: 12444 - type: AsteroidRock - components: - - pos: -51.5,-59.5 - parent: 0 - type: Transform -- uid: 12445 - type: AsteroidRock - components: - - pos: -50.5,-59.5 - parent: 0 - type: Transform -- uid: 12446 - type: AsteroidRock - components: - - pos: -49.5,-59.5 - parent: 0 - type: Transform -- uid: 12447 - type: AsteroidRock - components: - - pos: -50.5,-60.5 - parent: 0 - type: Transform -- uid: 12448 - type: AsteroidRock - components: - - pos: -50.5,-61.5 - parent: 0 - type: Transform -- uid: 12449 - type: AsteroidRock - components: - - pos: -49.5,-60.5 - parent: 0 - type: Transform -- uid: 12450 - type: AsteroidRock - components: - - pos: -49.5,-61.5 - parent: 0 - type: Transform -- uid: 12451 - type: AsteroidRock - components: - - pos: -42.5,-68.5 - parent: 0 - type: Transform -- uid: 12452 - type: AsteroidRock - components: - - pos: -42.5,-67.5 - parent: 0 - type: Transform -- uid: 12453 - type: AsteroidRock - components: - - pos: -42.5,-66.5 - parent: 0 - type: Transform -- uid: 12454 - type: AsteroidRock - components: - - pos: -42.5,-65.5 - parent: 0 - type: Transform -- uid: 12455 - type: AsteroidRock - components: - - pos: -42.5,-64.5 - parent: 0 - type: Transform -- uid: 12456 - type: AsteroidRock - components: - - pos: -42.5,-63.5 - parent: 0 - type: Transform -- uid: 12457 - type: AsteroidRock - components: - - pos: -42.5,-62.5 - parent: 0 - type: Transform -- uid: 12458 - type: AsteroidRock - components: - - pos: -42.5,-61.5 - parent: 0 - type: Transform -- uid: 12459 - type: AsteroidRock - components: - - pos: -42.5,-60.5 - parent: 0 - type: Transform -- uid: 12460 - type: AsteroidRock - components: - - pos: -51.5,-53.5 - parent: 0 - type: Transform -- uid: 12461 - type: AsteroidRock - components: - - pos: -51.5,-52.5 - parent: 0 - type: Transform -- uid: 12462 - type: AsteroidRock - components: - - pos: -51.5,-51.5 - parent: 0 - type: Transform -- uid: 12463 - type: AsteroidRock - components: - - pos: -51.5,-50.5 - parent: 0 - type: Transform -- uid: 12464 - type: AsteroidRock - components: - - pos: -51.5,-49.5 - parent: 0 - type: Transform -- uid: 12465 - type: AsteroidRock - components: - - pos: -51.5,-48.5 - parent: 0 - type: Transform -- uid: 12466 - type: AsteroidRock - components: - - pos: -50.5,-53.5 - parent: 0 - type: Transform -- uid: 12467 - type: AsteroidRock - components: - - pos: -50.5,-52.5 - parent: 0 - type: Transform -- uid: 12468 - type: AsteroidRock - components: - - pos: -50.5,-51.5 - parent: 0 - type: Transform -- uid: 12469 - type: AsteroidRock - components: - - pos: -50.5,-50.5 - parent: 0 - type: Transform -- uid: 12470 - type: AsteroidRock - components: - - pos: -50.5,-49.5 - parent: 0 - type: Transform -- uid: 12471 - type: AsteroidRock - components: - - pos: -50.5,-48.5 - parent: 0 - type: Transform -- uid: 12472 - type: AsteroidRock - components: - - pos: -49.5,-53.5 - parent: 0 - type: Transform -- uid: 12473 - type: AsteroidRock - components: - - pos: -49.5,-52.5 - parent: 0 - type: Transform -- uid: 12474 - type: AsteroidRock - components: - - pos: -49.5,-51.5 - parent: 0 - type: Transform -- uid: 12475 - type: AsteroidRock - components: - - pos: -49.5,-50.5 - parent: 0 - type: Transform -- uid: 12476 - type: AsteroidRock - components: - - pos: -49.5,-49.5 - parent: 0 - type: Transform -- uid: 12477 - type: AsteroidRock - components: - - pos: -49.5,-48.5 - parent: 0 - type: Transform -- uid: 12478 - type: AsteroidRock - components: - - pos: -52.5,-49.5 - parent: 0 - type: Transform -- uid: 12479 - type: AsteroidRock - components: - - pos: -52.5,-48.5 - parent: 0 - type: Transform -- uid: 12480 - type: AsteroidRock - components: - - pos: -50.5,-47.5 - parent: 0 - type: Transform -- uid: 12481 - type: AsteroidRock - components: - - pos: -49.5,-47.5 - parent: 0 - type: Transform -- uid: 12482 - type: AsteroidRock - components: - - pos: -48.5,-47.5 - parent: 0 - type: Transform -- uid: 12483 - type: AsteroidRock - components: - - pos: -47.5,-47.5 - parent: 0 - type: Transform -- uid: 12484 - type: AsteroidRock - components: - - pos: -46.5,-47.5 - parent: 0 - type: Transform -- uid: 12485 - type: AsteroidRock - components: - - pos: -48.5,-48.5 - parent: 0 - type: Transform -- uid: 12486 - type: AsteroidRock - components: - - pos: -48.5,-49.5 - parent: 0 - type: Transform -- uid: 12487 - type: AsteroidRock - components: - - pos: -48.5,-50.5 - parent: 0 - type: Transform -- uid: 12488 - type: AsteroidRock - components: - - pos: -48.5,-51.5 - parent: 0 - type: Transform -- uid: 12489 - type: AsteroidRock - components: - - pos: -47.5,-48.5 - parent: 0 - type: Transform -- uid: 12490 - type: AsteroidRock - components: - - pos: -47.5,-49.5 - parent: 0 - type: Transform -- uid: 12491 - type: AsteroidRock - components: - - pos: -47.5,-50.5 - parent: 0 - type: Transform -- uid: 12492 - type: AsteroidRock - components: - - pos: -47.5,-51.5 - parent: 0 - type: Transform -- uid: 12493 - type: AsteroidRock - components: - - pos: -46.5,-48.5 - parent: 0 - type: Transform -- uid: 12494 - type: AsteroidRock - components: - - pos: -46.5,-49.5 - parent: 0 - type: Transform -- uid: 12495 - type: AsteroidRock - components: - - pos: -46.5,-50.5 - parent: 0 - type: Transform -- uid: 12496 - type: AsteroidRock - components: - - pos: -46.5,-51.5 - parent: 0 - type: Transform -- uid: 12497 - type: AsteroidRock - components: - - pos: -45.5,-48.5 - parent: 0 - type: Transform -- uid: 12498 - type: AsteroidRock - components: - - pos: -45.5,-49.5 - parent: 0 - type: Transform -- uid: 12499 - type: AsteroidRock - components: - - pos: -45.5,-50.5 - parent: 0 - type: Transform -- uid: 12500 - type: AsteroidRock - components: - - pos: -45.5,-51.5 - parent: 0 - type: Transform -- uid: 12501 - type: AsteroidRock - components: - - pos: -45.5,-52.5 - parent: 0 - type: Transform -- uid: 12502 - type: AsteroidRock - components: - - pos: -48.5,-52.5 - parent: 0 - type: Transform -- uid: 12503 - type: AirlockExternalGlassEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-59.5 - parent: 0 - type: Transform -- uid: 12504 - type: AirlockExternalGlassEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-62.5 - parent: 0 - type: Transform -- uid: 12505 - type: AsteroidRock - components: - - pos: -27.5,-47.5 - parent: 0 - type: Transform -- uid: 12506 - type: AsteroidRock - components: - - pos: -27.5,-46.5 - parent: 0 - type: Transform -- uid: 12507 - type: AsteroidRock - components: - - pos: -26.5,-47.5 - parent: 0 - type: Transform -- uid: 12508 - type: AsteroidRock - components: - - pos: -26.5,-46.5 - parent: 0 - type: Transform -- uid: 12509 - type: AsteroidRock - components: - - pos: -25.5,-47.5 - parent: 0 - type: Transform -- uid: 12510 - type: AsteroidRock - components: - - pos: -25.5,-46.5 - parent: 0 - type: Transform -- uid: 12511 - type: AsteroidRock - components: - - pos: -24.5,-47.5 - parent: 0 - type: Transform -- uid: 12512 - type: AsteroidRock - components: - - pos: -24.5,-46.5 - parent: 0 - type: Transform -- uid: 12513 - type: AsteroidRock - components: - - pos: -23.5,-47.5 - parent: 0 - type: Transform -- uid: 12514 - type: AsteroidRock - components: - - pos: -23.5,-46.5 - parent: 0 - type: Transform -- uid: 12515 - type: AsteroidRock - components: - - pos: -22.5,-47.5 - parent: 0 - type: Transform -- uid: 12516 - type: AsteroidRock - components: - - pos: -22.5,-46.5 - parent: 0 - type: Transform -- uid: 12517 - type: AsteroidRock - components: - - pos: -19.5,-46.5 - parent: 0 - type: Transform -- uid: 12518 - type: AsteroidRock - components: - - pos: -20.5,-46.5 - parent: 0 - type: Transform -- uid: 12519 - type: AsteroidRock - components: - - pos: -21.5,-46.5 - parent: 0 - type: Transform -- uid: 12520 - type: AsteroidRock - components: - - pos: -21.5,-45.5 - parent: 0 - type: Transform -- uid: 12521 - type: AsteroidRock - components: - - pos: -22.5,-45.5 - parent: 0 - type: Transform -- uid: 12522 - type: AsteroidRock - components: - - pos: -23.5,-45.5 - parent: 0 - type: Transform -- uid: 12523 - type: AsteroidRock - components: - - pos: -24.5,-45.5 - parent: 0 - type: Transform -- uid: 12524 - type: AsteroidRock - components: - - pos: -25.5,-45.5 - parent: 0 - type: Transform -- uid: 12525 - type: AsteroidRock - components: - - pos: -26.5,-45.5 - parent: 0 - type: Transform -- uid: 12526 - type: AsteroidRock - components: - - pos: -27.5,-45.5 - parent: 0 - type: Transform -- uid: 12527 - type: AsteroidRock - components: - - pos: -27.5,-44.5 - parent: 0 - type: Transform -- uid: 12528 - type: AsteroidRock - components: - - pos: -26.5,-44.5 - parent: 0 - type: Transform -- uid: 12529 - type: AsteroidRock - components: - - pos: -25.5,-44.5 - parent: 0 - type: Transform -- uid: 12530 - type: AsteroidRock - components: - - pos: -26.5,-43.5 - parent: 0 - type: Transform -- uid: 12531 - type: AsteroidRock - components: - - pos: -27.5,-43.5 - parent: 0 - type: Transform -- uid: 12532 - type: AsteroidRock - components: - - pos: -27.5,-42.5 - parent: 0 - type: Transform -- uid: 12533 - type: AsteroidRock - components: - - pos: -27.5,-41.5 - parent: 0 - type: Transform -- uid: 12534 - type: AsteroidRock - components: - - pos: -27.5,-40.5 - parent: 0 - type: Transform -- uid: 12535 - type: FloraRockSolid01 - components: - - pos: -53.41583,-55.40156 - parent: 0 - type: Transform -- uid: 12536 - type: FloraRockSolid01 - components: - - pos: -49.556454,-54.417187 - parent: 0 - type: Transform -- uid: 12537 - type: Grille - components: - - pos: -46.5,-62.5 - parent: 0 - type: Transform -- uid: 12538 - type: Grille - components: - - pos: -44.5,-62.5 - parent: 0 - type: Transform -- uid: 12539 - type: Grille - components: - - pos: -44.5,-59.5 - parent: 0 - type: Transform -- uid: 12540 - type: Grille - components: - - pos: -46.5,-59.5 - parent: 0 - type: Transform -- uid: 12541 - type: Grille - components: - - pos: -38.5,-63.5 - parent: 0 - type: Transform -- uid: 12542 - type: Grille - components: - - pos: -35.5,-64.5 - parent: 0 - type: Transform -- uid: 12543 - type: Grille - components: - - pos: -34.5,-64.5 - parent: 0 - type: Transform -- uid: 12544 - type: Grille - components: - - pos: -34.5,-62.5 - parent: 0 - type: Transform -- uid: 12545 - type: Grille - components: - - pos: -35.5,-62.5 - parent: 0 - type: Transform -- uid: 12546 - type: Grille - components: - - pos: -31.5,-63.5 - parent: 0 - type: Transform -- uid: 12547 - type: Grille - components: - - pos: -31.5,-60.5 - parent: 0 - type: Transform -- uid: 12548 - type: Grille - components: - - pos: -30.5,-58.5 - parent: 0 - type: Transform -- uid: 12549 - type: Grille - components: - - pos: -34.5,-58.5 - parent: 0 - type: Transform -- uid: 12550 - type: Grille - components: - - pos: -33.5,-58.5 - parent: 0 - type: Transform -- uid: 12551 - type: Grille - components: - - pos: -37.5,-56.5 - parent: 0 - type: Transform -- uid: 12552 - type: Grille - components: - - pos: -37.5,-55.5 - parent: 0 - type: Transform -- uid: 12553 - type: Grille - components: - - pos: -37.5,-54.5 - parent: 0 - type: Transform -- uid: 12554 - type: Grille - components: - - pos: -37.5,-52.5 - parent: 0 - type: Transform -- uid: 12555 - type: Grille - components: - - pos: -37.5,-51.5 - parent: 0 - type: Transform -- uid: 12556 - type: Grille - components: - - pos: -37.5,-50.5 - parent: 0 - type: Transform -- uid: 12557 - type: Grille - components: - - pos: -33.5,-48.5 - parent: 0 - type: Transform -- uid: 12558 - type: Grille - components: - - pos: -34.5,-48.5 - parent: 0 - type: Transform -- uid: 12559 - type: Grille - components: - - pos: -30.5,-48.5 - parent: 0 - type: Transform -- uid: 12560 - type: Grille - components: - - pos: -31.5,-46.5 - parent: 0 - type: Transform -- uid: 12561 - type: Grille - components: - - pos: -39.5,-44.5 - parent: 0 - type: Transform -- uid: 12562 - type: Grille - components: - - pos: -37.5,-42.5 - parent: 0 - type: Transform -- uid: 12563 - type: Grille - components: - - pos: -37.5,-41.5 - parent: 0 - type: Transform -- uid: 12564 - type: Grille - components: - - pos: -32.5,-41.5 - parent: 0 - type: Transform -- uid: 12565 - type: Grille - components: - - pos: -32.5,-40.5 - parent: 0 - type: Transform -- uid: 12566 - type: Grille - components: - - pos: -32.5,-39.5 - parent: 0 - type: Transform -- uid: 12567 - type: Grille - components: - - pos: -37.5,-39.5 - parent: 0 - type: Transform -- uid: 12568 - type: Grille - components: - - pos: -42.5,-41.5 - parent: 0 - type: Transform -- uid: 12569 - type: Grille - components: - - pos: -42.5,-36.5 - parent: 0 - type: Transform -- uid: 12570 - type: Grille - components: - - pos: -42.5,-35.5 - parent: 0 - type: Transform -- uid: 12571 - type: Grille - components: - - pos: -37.5,-36.5 - parent: 0 - type: Transform -- uid: 12572 - type: Grille - components: - - pos: -37.5,-33.5 - parent: 0 - type: Transform -- uid: 12573 - type: Grille - components: - - pos: -37.5,-32.5 - parent: 0 - type: Transform -- uid: 12574 - type: Grille - components: - - pos: -37.5,-29.5 - parent: 0 - type: Transform -- uid: 12575 - type: Grille - components: - - pos: -41.5,-29.5 - parent: 0 - type: Transform -- uid: 12576 - type: WallSolidRust - components: - - pos: -24.5,-70.5 - parent: 0 - type: Transform -- uid: 12577 - type: SignSecureMed - components: - - pos: -24.5,-70.5 - parent: 0 - type: Transform -- uid: 12578 - type: AsteroidRock - components: - - pos: -19.5,-72.5 - parent: 0 - type: Transform -- uid: 12579 - type: AsteroidRock - components: - - pos: -19.5,-71.5 - parent: 0 - type: Transform -- uid: 12580 - type: AsteroidRock - components: - - pos: -19.5,-70.5 - parent: 0 - type: Transform -- uid: 12581 - type: AsteroidRock - components: - - pos: -20.5,-71.5 - parent: 0 - type: Transform -- uid: 12582 - type: AsteroidRock - components: - - pos: -20.5,-70.5 - parent: 0 - type: Transform -- uid: 12583 - type: AsteroidRock - components: - - pos: -20.5,-69.5 - parent: 0 - type: Transform -- uid: 12584 - type: AsteroidRock - components: - - pos: -20.5,-68.5 - parent: 0 - type: Transform -- uid: 12585 - type: AsteroidRock - components: - - pos: -20.5,-67.5 - parent: 0 - type: Transform -- uid: 12586 - type: AsteroidRock - components: - - pos: -21.5,-71.5 - parent: 0 - type: Transform -- uid: 12587 - type: AsteroidRock - components: - - pos: -21.5,-70.5 - parent: 0 - type: Transform -- uid: 12588 - type: AsteroidRock - components: - - pos: -21.5,-69.5 - parent: 0 - type: Transform -- uid: 12589 - type: AsteroidRock - components: - - pos: -21.5,-68.5 - parent: 0 - type: Transform -- uid: 12590 - type: AsteroidRock - components: - - pos: -21.5,-67.5 - parent: 0 - type: Transform -- uid: 12591 - type: AsteroidRock - components: - - pos: -23.5,-70.5 - parent: 0 - type: Transform -- uid: 12592 - type: AsteroidRock - components: - - pos: -23.5,-69.5 - parent: 0 - type: Transform -- uid: 12593 - type: AsteroidRock - components: - - pos: -23.5,-68.5 - parent: 0 - type: Transform -- uid: 12594 - type: AsteroidRock - components: - - pos: -23.5,-67.5 - parent: 0 - type: Transform -- uid: 12595 - type: AsteroidRock - components: - - pos: -23.5,-66.5 - parent: 0 - type: Transform -- uid: 12596 - type: AsteroidRock - components: - - pos: -23.5,-65.5 - parent: 0 - type: Transform -- uid: 12597 - type: AsteroidRock - components: - - pos: -23.5,-64.5 - parent: 0 - type: Transform -- uid: 12598 - type: AsteroidRock - components: - - pos: -23.5,-63.5 - parent: 0 - type: Transform -- uid: 12599 - type: AsteroidRock - components: - - pos: -22.5,-70.5 - parent: 0 - type: Transform -- uid: 12600 - type: AsteroidRock - components: - - pos: -22.5,-69.5 - parent: 0 - type: Transform -- uid: 12601 - type: AsteroidRock - components: - - pos: -22.5,-68.5 - parent: 0 - type: Transform -- uid: 12602 - type: AsteroidRock - components: - - pos: -22.5,-67.5 - parent: 0 - type: Transform -- uid: 12603 - type: AsteroidRock - components: - - pos: -22.5,-66.5 - parent: 0 - type: Transform -- uid: 12604 - type: AsteroidRock - components: - - pos: -22.5,-65.5 - parent: 0 - type: Transform -- uid: 12605 - type: AsteroidRock - components: - - pos: -22.5,-64.5 - parent: 0 - type: Transform -- uid: 12606 - type: AsteroidRock - components: - - pos: -22.5,-63.5 - parent: 0 - type: Transform -- uid: 12607 - type: AsteroidRock - components: - - pos: -21.5,-66.5 - parent: 0 - type: Transform -- uid: 12608 - type: AsteroidRock - components: - - pos: -21.5,-65.5 - parent: 0 - type: Transform -- uid: 12609 - type: AsteroidRock - components: - - pos: -24.5,-66.5 - parent: 0 - type: Transform -- uid: 12610 - type: AsteroidRock - components: - - pos: -24.5,-65.5 - parent: 0 - type: Transform -- uid: 12611 - type: AsteroidRock - components: - - pos: -24.5,-64.5 - parent: 0 - type: Transform -- uid: 12612 - type: AsteroidRock - components: - - pos: -24.5,-63.5 - parent: 0 - type: Transform -- uid: 12613 - type: AsteroidRock - components: - - pos: -25.5,-64.5 - parent: 0 - type: Transform -- uid: 12614 - type: AsteroidRock - components: - - pos: -25.5,-63.5 - parent: 0 - type: Transform -- uid: 12615 - type: AsteroidRock - components: - - pos: -26.5,-63.5 - parent: 0 - type: Transform -- uid: 12616 - type: AsteroidRock - components: - - pos: -27.5,-62.5 - parent: 0 - type: Transform -- uid: 12617 - type: AsteroidRock - components: - - pos: -27.5,-61.5 - parent: 0 - type: Transform -- uid: 12618 - type: AsteroidRock - components: - - pos: -27.5,-60.5 - parent: 0 - type: Transform -- uid: 12619 - type: AsteroidRock - components: - - pos: -27.5,-59.5 - parent: 0 - type: Transform -- uid: 12620 - type: Catwalk - components: - - pos: -30.5,-59.5 - parent: 0 - type: Transform -- uid: 12621 - type: AsteroidRock - components: - - pos: -26.5,-62.5 - parent: 0 - type: Transform -- uid: 12622 - type: AsteroidRock - components: - - pos: -26.5,-61.5 - parent: 0 - type: Transform -- uid: 12623 - type: AsteroidRock - components: - - pos: -26.5,-60.5 - parent: 0 - type: Transform -- uid: 12624 - type: AsteroidRock - components: - - pos: -26.5,-59.5 - parent: 0 - type: Transform -- uid: 12625 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-48.5 - parent: 0 - type: Transform -- uid: 12626 - type: AsteroidRock - components: - - pos: -25.5,-62.5 - parent: 0 - type: Transform -- uid: 12627 - type: AsteroidRock - components: - - pos: -25.5,-61.5 - parent: 0 - type: Transform -- uid: 12628 - type: AsteroidRock - components: - - pos: -25.5,-60.5 - parent: 0 - type: Transform -- uid: 12629 - type: AsteroidRock - components: - - pos: -25.5,-59.5 - parent: 0 - type: Transform -- uid: 12630 - type: AsteroidRock - components: - - pos: -25.5,-58.5 - parent: 0 - type: Transform -- uid: 12631 - type: AsteroidRock - components: - - pos: -24.5,-62.5 - parent: 0 - type: Transform -- uid: 12632 - type: AsteroidRock - components: - - pos: -24.5,-61.5 - parent: 0 - type: Transform -- uid: 12633 - type: AsteroidRock - components: - - pos: -24.5,-60.5 - parent: 0 - type: Transform -- uid: 12634 - type: AsteroidRock - components: - - pos: -24.5,-59.5 - parent: 0 - type: Transform -- uid: 12635 - type: AsteroidRock - components: - - pos: -24.5,-58.5 - parent: 0 - type: Transform -- uid: 12636 - type: AsteroidRock - components: - - pos: -23.5,-62.5 - parent: 0 - type: Transform -- uid: 12637 - type: AsteroidRock - components: - - pos: -23.5,-61.5 - parent: 0 - type: Transform -- uid: 12638 - type: AsteroidRock - components: - - pos: -23.5,-60.5 - parent: 0 - type: Transform -- uid: 12639 - type: AsteroidRock - components: - - pos: -23.5,-59.5 - parent: 0 - type: Transform -- uid: 12640 - type: AsteroidRock - components: - - pos: -23.5,-58.5 - parent: 0 - type: Transform -- uid: 12641 - type: AsteroidRock - components: - - pos: -22.5,-60.5 - parent: 0 - type: Transform -- uid: 12642 - type: WallSolidRust - components: - - pos: -22.5,-58.5 - parent: 0 - type: Transform -- uid: 12643 - type: SignSecureMed - components: - - pos: -22.5,-58.5 - parent: 0 - type: Transform -- uid: 12644 - type: SignSecureMed - components: - - pos: -22.5,-48.5 - parent: 0 - type: Transform -- uid: 12645 - type: AlwaysPoweredLightSodium - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-48.5 - parent: 0 - type: Transform -- uid: 12646 - type: AlwaysPoweredLightSodium - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-70.5 - parent: 0 - type: Transform -- uid: 12647 - type: AlwaysPoweredLightSodium - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-58.5 - parent: 0 - type: Transform -- uid: 12648 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-48.5 - parent: 0 - type: Transform -- uid: 12649 - type: AlwaysPoweredLightSodium - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-58.5 - parent: 0 - type: Transform -- uid: 12650 - type: AlwaysPoweredLightSodium - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-54.5 - parent: 0 - type: Transform -- uid: 12651 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-37.5 - parent: 0 - type: Transform -- uid: 12652 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-58.5 - parent: 0 - type: Transform -- uid: 12653 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-29.5 - parent: 0 - type: Transform -- uid: 12654 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-29.5 - parent: 0 - type: Transform -- uid: 12655 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-37.5 - parent: 0 - type: Transform -- uid: 12656 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-37.5 - parent: 0 - type: Transform -- uid: 12657 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-37.5 - parent: 0 - type: Transform -- uid: 12658 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-37.5 - parent: 0 - type: Transform -- uid: 12659 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-37.5 - parent: 0 - type: Transform -- uid: 12660 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-37.5 - parent: 0 - type: Transform -- uid: 12661 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-37.5 - parent: 0 - type: Transform -- uid: 12662 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-37.5 - parent: 0 - type: Transform -- uid: 12663 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-37.5 - parent: 0 - type: Transform -- uid: 12664 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-37.5 - parent: 0 - type: Transform -- uid: 12665 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-48.5 - parent: 0 - type: Transform -- uid: 12666 - type: AirlockEngineeringGlassLocked - components: - - name: Rock Dock - type: MetaData - - rot: -1.5707963267948966 rad - pos: -40.5,-44.5 - parent: 0 - type: Transform -- uid: 12667 - type: AirlockEngineeringGlassLocked - components: - - name: Rock Dock - type: MetaData - - rot: -1.5707963267948966 rad - pos: -38.5,-44.5 - parent: 0 - type: Transform -- uid: 12668 - type: AirlockMaintEngiLocked - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-47.5 - parent: 0 - type: Transform -- uid: 12669 - type: WallReinforced - components: - - pos: -41.5,-46.5 - parent: 0 - type: Transform -- uid: 12670 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12671 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12672 - type: GasPipeStraight - components: - - pos: -40.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12673 - type: GasPipeStraight - components: - - pos: -40.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12674 - type: GasPipeStraight - components: - - pos: -40.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12675 - type: GasPipeStraight - components: - - pos: -40.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12676 - type: GasPipeStraight - components: - - pos: -40.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12677 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12678 - type: GasPipeStraight - components: - - pos: -40.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12679 - type: GasPipeStraight - components: - - pos: -40.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12680 - type: GasPipeStraight - components: - - pos: -40.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12681 - type: GasPipeStraight - components: - - pos: -40.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12682 - type: GasPipeStraight - components: - - pos: -40.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12683 - type: GasPipeStraight - components: - - pos: -40.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12684 - type: GasPipeStraight - components: - - pos: -40.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12685 - type: GasPipeStraight - components: - - pos: -40.5,-38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12686 - type: GasPipeTJunction - components: - - pos: -39.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12687 - type: GasPipeStraight - components: - - pos: -40.5,-40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12688 - type: GasPipeStraight - components: - - pos: -40.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12689 - type: GasPipeStraight - components: - - pos: -40.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12690 - type: GasPipeStraight - components: - - pos: -40.5,-43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12691 - type: GasPipeStraight - components: - - pos: -40.5,-44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12692 - type: GasPipeStraight - components: - - pos: -40.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12693 - type: GasPipeStraight - components: - - pos: -40.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12694 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12695 - type: GasPipeStraight - components: - - pos: -38.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12696 - type: GasPipeStraight - components: - - pos: -38.5,-44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12697 - type: GasPipeStraight - components: - - pos: -38.5,-43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12698 - type: GasPipeStraight - components: - - pos: -38.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12699 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12700 - type: GasPipeStraight - components: - - pos: -38.5,-40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12701 - type: GasPipeStraight - components: - - pos: -38.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12702 - type: GasPipeStraight - components: - - pos: -38.5,-38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12703 - type: GasPipeStraight - components: - - pos: -38.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12704 - type: GasPipeStraight - components: - - pos: -38.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12705 - type: GasPipeStraight - components: - - pos: -38.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12706 - type: GasPipeStraight - components: - - pos: -38.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12707 - type: GasPipeStraight - components: - - pos: -38.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12708 - type: GasPipeStraight - components: - - pos: -38.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12709 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12710 - type: GasPipeStraight - components: - - pos: -38.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12711 - type: GasPipeStraight - components: - - pos: -38.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12712 - type: GasPipeStraight - components: - - pos: -38.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12713 - type: GasPipeStraight - components: - - pos: -38.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12714 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12715 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12716 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12717 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -38.5,-59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12718 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -40.5,-60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12719 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12720 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12721 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12722 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12723 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12724 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12725 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12726 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12727 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12728 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12729 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12730 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12731 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12732 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12733 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12734 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12735 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12736 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12737 - type: GasPipeStraight - components: - - pos: -40.5,-48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12738 - type: GasPipeStraight - components: - - pos: -40.5,-49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12739 - type: GasPipeStraight - components: - - pos: -40.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12740 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12741 - type: GasPipeStraight - components: - - pos: -40.5,-52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12742 - type: GasPipeStraight - components: - - pos: -40.5,-53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12743 - type: GasPipeStraight - components: - - pos: -40.5,-54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12744 - type: GasPipeStraight - components: - - pos: -40.5,-55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12745 - type: GasPipeStraight - components: - - pos: -40.5,-56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12746 - type: GasPipeStraight - components: - - pos: -40.5,-57.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12747 - type: GasPipeStraight - components: - - pos: -40.5,-58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12748 - type: GasPipeStraight - components: - - pos: -40.5,-59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12749 - type: GasPipeStraight - components: - - pos: -38.5,-58.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12750 - type: GasPipeStraight - components: - - pos: -38.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12751 - type: GasPipeStraight - components: - - pos: -38.5,-56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12752 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12753 - type: GasPipeStraight - components: - - pos: -38.5,-54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12754 - type: GasPipeStraight - components: - - pos: -38.5,-53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12755 - type: GasPipeStraight - components: - - pos: -38.5,-52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12756 - type: GasPipeStraight - components: - - pos: -38.5,-51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12757 - type: GasPipeStraight - components: - - pos: -38.5,-50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12758 - type: GasPipeStraight - components: - - pos: -38.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12759 - type: GasPipeStraight - components: - - pos: -38.5,-48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12760 - type: GasPipeStraight - components: - - pos: -38.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12761 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12762 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12763 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12764 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12765 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12766 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12767 - type: FirelockGlass - components: - - pos: -41.5,-58.5 - parent: 0 - type: Transform -- uid: 12768 - type: FirelockGlass - components: - - pos: -41.5,-57.5 - parent: 0 - type: Transform -- uid: 12769 - type: FirelockGlass - components: - - pos: -38.5,-48.5 - parent: 0 - type: Transform -- uid: 12770 - type: FirelockGlass - components: - - pos: -39.5,-48.5 - parent: 0 - type: Transform -- uid: 12771 - type: FirelockGlass - components: - - pos: -40.5,-48.5 - parent: 0 - type: Transform -- uid: 12772 - type: FirelockGlass - components: - - pos: -38.5,-27.5 - parent: 0 - type: Transform -- uid: 12773 - type: FirelockGlass - components: - - pos: -39.5,-27.5 - parent: 0 - type: Transform -- uid: 12774 - type: FirelockGlass - components: - - pos: -40.5,-27.5 - parent: 0 - type: Transform -- uid: 12775 - type: DisposalUnit - components: - - pos: -41.5,-54.5 - parent: 0 - type: Transform -- uid: 12776 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-54.5 - parent: 0 - type: Transform -- uid: 12777 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-54.5 - parent: 0 - type: Transform -- uid: 12778 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-54.5 - parent: 0 - type: Transform -- uid: 12779 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-53.5 - parent: 0 - type: Transform -- uid: 12780 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-52.5 - parent: 0 - type: Transform -- uid: 12781 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-51.5 - parent: 0 - type: Transform -- uid: 12782 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-50.5 - parent: 0 - type: Transform -- uid: 12783 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-49.5 - parent: 0 - type: Transform -- uid: 12784 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-48.5 - parent: 0 - type: Transform -- uid: 12785 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-47.5 - parent: 0 - type: Transform -- uid: 12786 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-46.5 - parent: 0 - type: Transform -- uid: 12787 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-45.5 - parent: 0 - type: Transform -- uid: 12788 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-44.5 - parent: 0 - type: Transform -- uid: 12789 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-43.5 - parent: 0 - type: Transform -- uid: 12790 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-42.5 - parent: 0 - type: Transform -- uid: 12791 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-41.5 - parent: 0 - type: Transform -- uid: 12792 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-41.5 - parent: 0 - type: Transform -- uid: 12793 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -39.5,-39.5 - parent: 0 - type: Transform -- uid: 12794 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-38.5 - parent: 0 - type: Transform -- uid: 12795 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-37.5 - parent: 0 - type: Transform -- uid: 12796 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-36.5 - parent: 0 - type: Transform -- uid: 12797 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-35.5 - parent: 0 - type: Transform -- uid: 12798 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-34.5 - parent: 0 - type: Transform -- uid: 12799 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-33.5 - parent: 0 - type: Transform -- uid: 12800 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-32.5 - parent: 0 - type: Transform -- uid: 12801 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-31.5 - parent: 0 - type: Transform -- uid: 12802 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-30.5 - parent: 0 - type: Transform -- uid: 12803 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-29.5 - parent: 0 - type: Transform -- uid: 12804 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-28.5 - parent: 0 - type: Transform -- uid: 12805 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-27.5 - parent: 0 - type: Transform -- uid: 12806 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -39.5,-26.5 - parent: 0 - type: Transform -- uid: 12807 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-25.5 - parent: 0 - type: Transform -- uid: 12808 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-25.5 - parent: 0 - type: Transform -- uid: 12809 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-25.5 - parent: 0 - type: Transform -- uid: 12810 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-25.5 - parent: 0 - type: Transform -- uid: 12811 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-25.5 - parent: 0 - type: Transform -- uid: 12812 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-25.5 - parent: 0 - type: Transform -- uid: 12813 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-25.5 - parent: 0 - type: Transform -- uid: 12814 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-25.5 - parent: 0 - type: Transform -- uid: 12815 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-25.5 - parent: 0 - type: Transform -- uid: 12816 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-25.5 - parent: 0 - type: Transform -- uid: 12817 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-25.5 - parent: 0 - type: Transform -- uid: 12818 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-25.5 - parent: 0 - type: Transform -- uid: 12819 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-25.5 - parent: 0 - type: Transform -- uid: 12820 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-25.5 - parent: 0 - type: Transform -- uid: 12821 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-25.5 - parent: 0 - type: Transform -- uid: 12822 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-25.5 - parent: 0 - type: Transform -- uid: 12823 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-25.5 - parent: 0 - type: Transform -- uid: 12824 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-25.5 - parent: 0 - type: Transform -- uid: 12825 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-24.5 - parent: 0 - type: Transform -- uid: 12826 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-23.5 - parent: 0 - type: Transform -- uid: 12827 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-22.5 - parent: 0 - type: Transform -- uid: 12828 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-21.5 - parent: 0 - type: Transform -- uid: 12829 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-20.5 - parent: 0 - type: Transform -- uid: 12830 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-19.5 - parent: 0 - type: Transform -- uid: 12831 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-18.5 - parent: 0 - type: Transform -- uid: 12832 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-17.5 - parent: 0 - type: Transform -- uid: 12833 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-16.5 - parent: 0 - type: Transform -- uid: 12834 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-15.5 - parent: 0 - type: Transform -- uid: 12835 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-14.5 - parent: 0 - type: Transform -- uid: 12836 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-13.5 - parent: 0 - type: Transform -- uid: 12837 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-12.5 - parent: 0 - type: Transform -- uid: 12838 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-11.5 - parent: 0 - type: Transform -- uid: 12839 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-10.5 - parent: 0 - type: Transform -- uid: 12840 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-9.5 - parent: 0 - type: Transform -- uid: 12841 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-8.5 - parent: 0 - type: Transform -- uid: 12842 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-7.5 - parent: 0 - type: Transform -- uid: 12843 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-6.5 - parent: 0 - type: Transform -- uid: 12844 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-5.5 - parent: 0 - type: Transform -- uid: 12845 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-5.5 - parent: 0 - type: Transform -- uid: 12846 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-5.5 - parent: 0 - type: Transform -- uid: 12847 - type: CableHV - components: - - pos: -22.5,-17.5 - parent: 0 - type: Transform -- uid: 12848 - type: CableHV - components: - - pos: -22.5,-18.5 - parent: 0 - type: Transform -- uid: 12849 - type: CableHV - components: - - pos: -22.5,-19.5 - parent: 0 - type: Transform -- uid: 12850 - type: CableHV - components: - - pos: -22.5,-20.5 - parent: 0 - type: Transform -- uid: 12851 - type: CableHV - components: - - pos: -22.5,-21.5 - parent: 0 - type: Transform -- uid: 12852 - type: CableHV - components: - - pos: -22.5,-22.5 - parent: 0 - type: Transform -- uid: 12853 - type: CableHV - components: - - pos: -22.5,-23.5 - parent: 0 - type: Transform -- uid: 12854 - type: CableHV - components: - - pos: -22.5,-24.5 - parent: 0 - type: Transform -- uid: 12855 - type: CableHV - components: - - pos: -22.5,-25.5 - parent: 0 - type: Transform -- uid: 12856 - type: CableHV - components: - - pos: -23.5,-25.5 - parent: 0 - type: Transform -- uid: 12857 - type: CableHV - components: - - pos: -24.5,-25.5 - parent: 0 - type: Transform -- uid: 12858 - type: CableHV - components: - - pos: -25.5,-25.5 - parent: 0 - type: Transform -- uid: 12859 - type: CableHV - components: - - pos: -26.5,-25.5 - parent: 0 - type: Transform -- uid: 12860 - type: CableHV - components: - - pos: -27.5,-25.5 - parent: 0 - type: Transform -- uid: 12861 - type: CableHV - components: - - pos: -28.5,-25.5 - parent: 0 - type: Transform -- uid: 12862 - type: CableHV - components: - - pos: -29.5,-25.5 - parent: 0 - type: Transform -- uid: 12863 - type: CableHV - components: - - pos: -30.5,-25.5 - parent: 0 - type: Transform -- uid: 12864 - type: CableHV - components: - - pos: -31.5,-25.5 - parent: 0 - type: Transform -- uid: 12865 - type: CableHV - components: - - pos: -32.5,-25.5 - parent: 0 - type: Transform -- uid: 12866 - type: CableHV - components: - - pos: -33.5,-25.5 - parent: 0 - type: Transform -- uid: 12867 - type: CableHV - components: - - pos: -34.5,-25.5 - parent: 0 - type: Transform -- uid: 12868 - type: CableHV - components: - - pos: -35.5,-25.5 - parent: 0 - type: Transform -- uid: 12869 - type: CableHV - components: - - pos: -36.5,-25.5 - parent: 0 - type: Transform -- uid: 12870 - type: CableHV - components: - - pos: -37.5,-25.5 - parent: 0 - type: Transform -- uid: 12871 - type: CableHV - components: - - pos: -38.5,-25.5 - parent: 0 - type: Transform -- uid: 12872 - type: CableHV - components: - - pos: -39.5,-25.5 - parent: 0 - type: Transform -- uid: 12873 - type: CableHV - components: - - pos: -39.5,-26.5 - parent: 0 - type: Transform -- uid: 12874 - type: CableHV - components: - - pos: -39.5,-27.5 - parent: 0 - type: Transform -- uid: 12875 - type: CableHV - components: - - pos: -39.5,-28.5 - parent: 0 - type: Transform -- uid: 12876 - type: CableHV - components: - - pos: -39.5,-29.5 - parent: 0 - type: Transform -- uid: 12877 - type: CableHV - components: - - pos: -39.5,-30.5 - parent: 0 - type: Transform -- uid: 12878 - type: CableHV - components: - - pos: -39.5,-31.5 - parent: 0 - type: Transform -- uid: 12879 - type: CableHV - components: - - pos: -39.5,-32.5 - parent: 0 - type: Transform -- uid: 12880 - type: CableHV - components: - - pos: -39.5,-33.5 - parent: 0 - type: Transform -- uid: 12881 - type: CableHV - components: - - pos: -39.5,-34.5 - parent: 0 - type: Transform -- uid: 12882 - type: CableHV - components: - - pos: -39.5,-35.5 - parent: 0 - type: Transform -- uid: 12883 - type: CableHV - components: - - pos: -39.5,-36.5 - parent: 0 - type: Transform -- uid: 12884 - type: CableHV - components: - - pos: -39.5,-37.5 - parent: 0 - type: Transform -- uid: 12885 - type: CableHV - components: - - pos: -39.5,-38.5 - parent: 0 - type: Transform -- uid: 12886 - type: CableHV - components: - - pos: -39.5,-39.5 - parent: 0 - type: Transform -- uid: 12887 - type: CableHV - components: - - pos: -39.5,-40.5 - parent: 0 - type: Transform -- uid: 12888 - type: CableHV - components: - - pos: -39.5,-41.5 - parent: 0 - type: Transform -- uid: 12889 - type: CableHV - components: - - pos: -39.5,-42.5 - parent: 0 - type: Transform -- uid: 12890 - type: CableHV - components: - - pos: -39.5,-43.5 - parent: 0 - type: Transform -- uid: 12891 - type: CableHV - components: - - pos: -39.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12892 - type: CableHV - components: - - pos: -39.5,-45.5 - parent: 0 - type: Transform -- uid: 12893 - type: CableHV - components: - - pos: -39.5,-46.5 - parent: 0 - type: Transform -- uid: 12894 - type: CableHV - components: - - pos: -39.5,-47.5 - parent: 0 - type: Transform -- uid: 12895 - type: CableHV - components: - - pos: -40.5,-47.5 - parent: 0 - type: Transform -- uid: 12896 - type: CableHV - components: - - pos: -41.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12897 - type: CableHV - components: - - pos: -42.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12898 - type: CableHV - components: - - pos: -43.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12899 - type: CableHV - components: - - pos: -43.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12900 - type: SubstationBasic - components: - - name: Rock Dock Substation - type: MetaData - - pos: -43.5,-46.5 - parent: 0 - type: Transform -- uid: 12901 - type: APCBasic - components: - - pos: -41.5,-48.5 - parent: 0 - type: Transform -- uid: 12902 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-38.5 - parent: 0 - type: Transform -- uid: 12903 - type: CableMV - components: - - pos: -43.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12904 - type: CableMV - components: - - pos: -43.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12905 - type: CableMV - components: - - pos: -42.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12906 - type: CableMV - components: - - pos: -41.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12907 - type: CableMV - components: - - pos: -40.5,-47.5 - parent: 0 - type: Transform -- uid: 12908 - type: CableMV - components: - - pos: -40.5,-48.5 - parent: 0 - type: Transform -- uid: 12909 - type: CableMV - components: - - pos: -41.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12910 - type: CableMV - components: - - pos: -40.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12911 - type: CableMV - components: - - pos: -40.5,-45.5 - parent: 0 - type: Transform -- uid: 12912 - type: CableMV - components: - - pos: -40.5,-44.5 - parent: 0 - type: Transform -- uid: 12913 - type: CableMV - components: - - pos: -40.5,-43.5 - parent: 0 - type: Transform -- uid: 12914 - type: CableMV - components: - - pos: -40.5,-42.5 - parent: 0 - type: Transform -- uid: 12915 - type: CableMV - components: - - pos: -40.5,-41.5 - parent: 0 - type: Transform -- uid: 12916 - type: CableMV - components: - - pos: -40.5,-40.5 - parent: 0 - type: Transform -- uid: 12917 - type: CableMV - components: - - pos: -40.5,-39.5 - parent: 0 - type: Transform -- uid: 12918 - type: CableMV - components: - - pos: -40.5,-38.5 - parent: 0 - type: Transform -- uid: 12919 - type: CableMV - components: - - pos: -39.5,-38.5 - parent: 0 - type: Transform -- uid: 12920 - type: CableMV - components: - - pos: -38.5,-38.5 - parent: 0 - type: Transform -- uid: 12921 - type: CableMV - components: - - pos: -37.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12922 - type: CableApcExtension - components: - - pos: -41.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12923 - type: CableApcExtension - components: - - pos: -41.5,-49.5 - parent: 0 - type: Transform -- uid: 12924 - type: CableApcExtension - components: - - pos: -41.5,-50.5 - parent: 0 - type: Transform -- uid: 12925 - type: CableApcExtension - components: - - pos: -41.5,-51.5 - parent: 0 - type: Transform -- uid: 12926 - type: CableApcExtension - components: - - pos: -41.5,-52.5 - parent: 0 - type: Transform -- uid: 12927 - type: CableApcExtension - components: - - pos: -40.5,-52.5 - parent: 0 - type: Transform -- uid: 12928 - type: CableApcExtension - components: - - pos: -39.5,-52.5 - parent: 0 - type: Transform -- uid: 12929 - type: CableApcExtension - components: - - pos: -39.5,-53.5 - parent: 0 - type: Transform -- uid: 12930 - type: CableApcExtension - components: - - pos: -39.5,-54.5 - parent: 0 - type: Transform -- uid: 12931 - type: CableApcExtension - components: - - pos: -39.5,-55.5 - parent: 0 - type: Transform -- uid: 12932 - type: CableApcExtension - components: - - pos: -39.5,-56.5 - parent: 0 - type: Transform -- uid: 12933 - type: CableApcExtension - components: - - pos: -39.5,-57.5 - parent: 0 - type: Transform -- uid: 12934 - type: CableApcExtension - components: - - pos: -39.5,-58.5 - parent: 0 - type: Transform -- uid: 12935 - type: CableApcExtension - components: - - pos: -39.5,-59.5 - parent: 0 - type: Transform -- uid: 12936 - type: CableApcExtension - components: - - pos: -39.5,-60.5 - parent: 0 - type: Transform -- uid: 12937 - type: CableApcExtension - components: - - pos: -38.5,-60.5 - parent: 0 - type: Transform -- uid: 12938 - type: CableApcExtension - components: - - pos: -37.5,-60.5 - parent: 0 - type: Transform -- uid: 12939 - type: CableApcExtension - components: - - pos: -36.5,-60.5 - parent: 0 - type: Transform -- uid: 12940 - type: CableApcExtension - components: - - pos: -35.5,-60.5 - parent: 0 - type: Transform -- uid: 12941 - type: CableApcExtension - components: - - pos: -34.5,-60.5 - parent: 0 - type: Transform -- uid: 12942 - type: CableApcExtension - components: - - pos: -33.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12943 - type: CableApcExtension - components: - - pos: -32.5,-60.5 - parent: 0 - type: Transform -- uid: 12944 - type: CableApcExtension - components: - - pos: -31.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12945 - type: CableApcExtension - components: - - pos: -30.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12946 - type: CableApcExtension - components: - - pos: -29.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12947 - type: CableApcExtension - components: - - pos: -37.5,-61.5 - parent: 0 - type: Transform -- uid: 12948 - type: CableApcExtension - components: - - pos: -37.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12949 - type: CableApcExtension - components: - - pos: -37.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12950 - type: CableApcExtension - components: - - pos: -32.5,-61.5 - parent: 0 - type: Transform -- uid: 12951 - type: CableApcExtension - components: - - pos: -32.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12952 - type: CableApcExtension - components: - - pos: -32.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12953 - type: CableApcExtension - components: - - pos: -40.5,-58.5 - parent: 0 - type: Transform -- uid: 12954 - type: CableApcExtension - components: - - pos: -41.5,-58.5 - parent: 0 - type: Transform -- uid: 12955 - type: CableApcExtension - components: - - pos: -42.5,-58.5 - parent: 0 - type: Transform -- uid: 12956 - type: CableApcExtension - components: - - pos: -43.5,-58.5 - parent: 0 - type: Transform -- uid: 12957 - type: CableApcExtension - components: - - pos: -44.5,-58.5 - parent: 0 - type: Transform -- uid: 12958 - type: CableApcExtension - components: - - pos: -45.5,-58.5 - parent: 0 - type: Transform -- uid: 12959 - type: CableApcExtension - components: - - pos: -45.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12960 - type: CableApcExtension - components: - - pos: -45.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12961 - type: CableApcExtension - components: - - pos: -45.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12962 - type: CableApcExtension - components: - - pos: -40.5,-55.5 - parent: 0 - type: Transform -- uid: 12963 - type: CableApcExtension - components: - - pos: -41.5,-55.5 - parent: 0 - type: Transform -- uid: 12964 - type: CableApcExtension - components: - - pos: -42.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12965 - type: CableApcExtension - components: - - pos: -43.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12966 - type: CableApcExtension - components: - - pos: -44.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12967 - type: CableApcExtension - components: - - pos: -40.5,-50.5 - parent: 0 - type: Transform -- uid: 12968 - type: CableApcExtension - components: - - pos: -38.5,-50.5 - parent: 0 - type: Transform -- uid: 12969 - type: CableApcExtension - components: - - pos: -39.5,-50.5 - parent: 0 - type: Transform -- uid: 12970 - type: CableApcExtension - components: - - pos: -42.5,-50.5 - parent: 0 - type: Transform -- uid: 12971 - type: CableApcExtension - components: - - pos: -37.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12972 - type: CableApcExtension - components: - - pos: -38.5,-38.5 - parent: 0 - type: Transform -- uid: 12973 - type: CableApcExtension - components: - - pos: -39.5,-38.5 - parent: 0 - type: Transform -- uid: 12974 - type: CableApcExtension - components: - - pos: -39.5,-39.5 - parent: 0 - type: Transform -- uid: 12975 - type: CableApcExtension - components: - - pos: -39.5,-40.5 - parent: 0 - type: Transform -- uid: 12976 - type: CableApcExtension - components: - - pos: -39.5,-41.5 - parent: 0 - type: Transform -- uid: 12977 - type: CableApcExtension - components: - - pos: -39.5,-42.5 - parent: 0 - type: Transform -- uid: 12978 - type: CableApcExtension - components: - - pos: -39.5,-43.5 - parent: 0 - type: Transform -- uid: 12979 - type: CableApcExtension - components: - - pos: -39.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12980 - type: CableApcExtension - components: - - pos: -39.5,-45.5 - parent: 0 - type: Transform -- uid: 12981 - type: CableApcExtension - components: - - pos: -39.5,-46.5 - parent: 0 - type: Transform -- uid: 12982 - type: CableApcExtension - components: - - pos: -38.5,-46.5 - parent: 0 - type: Transform -- uid: 12983 - type: CableApcExtension - components: - - pos: -37.5,-46.5 - parent: 0 - type: Transform -- uid: 12984 - type: CableApcExtension - components: - - pos: -36.5,-46.5 - parent: 0 - type: Transform -- uid: 12985 - type: CableApcExtension - components: - - pos: -35.5,-46.5 - parent: 0 - type: Transform -- uid: 12986 - type: CableApcExtension - components: - - pos: -34.5,-46.5 - parent: 0 - type: Transform -- uid: 12987 - type: CableApcExtension - components: - - pos: -33.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12988 - type: CableApcExtension - components: - - pos: -32.5,-46.5 - parent: 0 - type: Transform -- uid: 12989 - type: CableApcExtension - components: - - pos: -32.5,-47.5 - parent: 0 - type: Transform -- uid: 12990 - type: CableApcExtension - components: - - pos: -31.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12991 - type: CableApcExtension - components: - - pos: -30.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12992 - type: CableApcExtension - components: - - pos: -29.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12993 - type: CableApcExtension - components: - - pos: -38.5,-40.5 - parent: 0 - type: Transform -- uid: 12994 - type: CableApcExtension - components: - - pos: -37.5,-40.5 - parent: 0 - type: Transform -- uid: 12995 - type: CableApcExtension - components: - - pos: -36.5,-40.5 - parent: 0 - type: Transform -- uid: 12996 - type: CableApcExtension - components: - - pos: -35.5,-40.5 - parent: 0 - type: Transform -- uid: 12997 - type: CableApcExtension - components: - - pos: -34.5,-40.5 - parent: 0 - type: Transform -- uid: 12998 - type: CableApcExtension - components: - - pos: -33.5,-40.5 - parent: 0 - type: Transform -- uid: 12999 - type: CableApcExtension - components: - - pos: -34.5,-41.5 - parent: 0 - type: Transform -- uid: 13000 - type: CableApcExtension - components: - - pos: -34.5,-42.5 - parent: 0 - type: Transform -- uid: 13001 - type: CableApcExtension - components: - - pos: -34.5,-43.5 - parent: 0 - type: Transform -- uid: 13002 - type: CableApcExtension - components: - - pos: -33.5,-43.5 - parent: 0 - type: Transform -- uid: 13003 - type: CableApcExtension - components: - - pos: -32.5,-43.5 - parent: 0 - type: Transform -- uid: 13004 - type: CableApcExtension - components: - - pos: -31.5,-43.5 - parent: 0 - type: Transform -- uid: 13005 - type: CableApcExtension - components: - - pos: -30.5,-43.5 - parent: 0 - type: Transform -- uid: 13006 - type: CableApcExtension - components: - - pos: -30.5,-42.5 - parent: 0 - type: Transform -- uid: 13007 - type: CableApcExtension - components: - - pos: -30.5,-41.5 - parent: 0 - type: Transform -- uid: 13008 - type: CableApcExtension - components: - - pos: -30.5,-40.5 - parent: 0 - type: Transform -- uid: 13009 - type: CableApcExtension - components: - - pos: -35.5,-43.5 - parent: 0 - type: Transform -- uid: 13010 - type: CableApcExtension - components: - - pos: -39.5,-37.5 - parent: 0 - type: Transform -- uid: 13011 - type: CableApcExtension - components: - - pos: -39.5,-36.5 - parent: 0 - type: Transform -- uid: 13012 - type: CableApcExtension - components: - - pos: -39.5,-35.5 - parent: 0 - type: Transform -- uid: 13013 - type: CableApcExtension - components: - - pos: -39.5,-34.5 - parent: 0 - type: Transform -- uid: 13014 - type: CableApcExtension - components: - - pos: -39.5,-33.5 - parent: 0 - type: Transform -- uid: 13015 - type: CableApcExtension - components: - - pos: -39.5,-32.5 - parent: 0 - type: Transform -- uid: 13016 - type: CableApcExtension - components: - - pos: -39.5,-31.5 - parent: 0 - type: Transform -- uid: 13017 - type: CableApcExtension - components: - - pos: -39.5,-30.5 - parent: 0 - type: Transform -- uid: 13018 - type: CableApcExtension - components: - - pos: -39.5,-29.5 - parent: 0 - type: Transform -- uid: 13019 - type: CableApcExtension - components: - - pos: -39.5,-28.5 - parent: 0 - type: Transform -- uid: 13020 - type: CableApcExtension - components: - - pos: -40.5,-32.5 - parent: 0 - type: Transform -- uid: 13021 - type: CableApcExtension - components: - - pos: -41.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13022 - type: CableApcExtension - components: - - pos: -42.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13023 - type: CableApcExtension - components: - - pos: -40.5,-39.5 - parent: 0 - type: Transform -- uid: 13024 - type: CableApcExtension - components: - - pos: -41.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13025 - type: CableApcExtension - components: - - pos: -42.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13026 - type: Grille - components: - - pos: -42.5,-31.5 - parent: 0 - type: Transform -- uid: 13027 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-49.5 - parent: 0 - type: Transform - - devices: - - 13029 - - 12771 - - 12770 - - 12769 - - 12767 - - 12768 - type: DeviceList -- uid: 13028 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-53.5 - parent: 0 - type: Transform - - devices: - - 13029 - - 12771 - - 12770 - - 12769 - - 12767 - - 12768 - - 12765 - - 12766 - - 12762 - - 12763 - type: DeviceList -- uid: 13029 - type: AirSensor - components: - - pos: -39.5,-53.5 - parent: 0 - type: Transform -- uid: 13030 - type: ClosetEmergencyFilledRandom - components: - - pos: -44.5,-54.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13031 - type: OxygenCanister - components: - - pos: -43.5,-54.5 - parent: 0 - type: Transform -- uid: 13032 - type: Catwalk - components: - - pos: -43.5,-55.5 - parent: 0 - type: Transform -- uid: 13033 - type: Catwalk - components: - - pos: -44.5,-55.5 - parent: 0 - type: Transform -- uid: 13034 - type: Catwalk - components: - - pos: -45.5,-61.5 - parent: 0 - type: Transform -- uid: 13035 - type: Catwalk - components: - - pos: -45.5,-60.5 - parent: 0 - type: Transform -- uid: 13036 - type: Catwalk - components: - - pos: -30.5,-47.5 - parent: 0 - type: Transform -- uid: 13037 - type: Catwalk - components: - - pos: -29.5,-47.5 - parent: 0 - type: Transform -- uid: 13038 - type: Catwalk - components: - - pos: -29.5,-59.5 - parent: 0 - type: Transform -- uid: 13039 - type: ClosetEmergencyFilledRandom - components: - - pos: -29.5,-60.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13040 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -30.5,-60.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13041 - type: ClosetEmergencyFilledRandom - components: - - pos: -29.5,-46.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13042 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: -42.5,-49.5 - parent: 0 - type: Transform -- uid: 13043 - type: ClosetToolFilled - components: - - pos: -41.5,-49.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13044 - type: AirCanister - components: - - pos: -42.5,-46.5 - parent: 0 - type: Transform -- uid: 13045 - type: Table - components: - - pos: -43.5,-52.5 - parent: 0 - type: Transform -- uid: 13046 - type: Table - components: - - pos: -42.5,-52.5 - parent: 0 - type: Transform -- uid: 13047 - type: Table - components: - - pos: -41.5,-52.5 - parent: 0 - type: Transform -- uid: 13048 - type: Table - components: - - pos: -41.5,-51.5 - parent: 0 - type: Transform -- uid: 13049 - type: Rack - components: - - pos: -32.5,-46.5 - parent: 0 - type: Transform -- uid: 13050 - type: Crowbar - components: - - pos: -32.50255,-46.52067 - parent: 0 - type: Transform -- uid: 13051 - type: PottedPlant0 - components: - - pos: -33.5,-46.5 - parent: 0 - type: Transform -- uid: 13052 - type: PottedPlant19 - components: - - pos: -40.515144,-60.79605 - parent: 0 - type: Transform -- uid: 13053 - type: Table - components: - - pos: -46.5,-58.5 - parent: 0 - type: Transform -- uid: 13054 - type: Table - components: - - pos: -46.5,-57.5 - parent: 0 - type: Transform -- uid: 13055 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-36.5 - parent: 0 - type: Transform -- uid: 13056 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-35.5 - parent: 0 - type: Transform -- uid: 13057 - type: PottedPlantRandom - components: - - pos: -41.5,-37.5 - parent: 0 - type: Transform -- uid: 13058 - type: PottedPlantRandom - components: - - pos: -41.5,-34.5 - parent: 0 - type: Transform -- uid: 13059 - type: ComputerAlert - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-51.5 - parent: 0 - type: Transform -- uid: 13060 - type: ClosetFireFilled - components: - - pos: -43.5,-49.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13061 - type: SheetSteel - components: - - pos: -41.527397,-52.5004 - parent: 0 - type: Transform -- uid: 13062 - type: SheetGlass - components: - - pos: -42.511772,-52.5004 - parent: 0 - type: Transform -- uid: 13063 - type: PartRodMetal - components: - - pos: -42.543022,-52.266026 - parent: 0 - type: Transform -- uid: 13064 - type: ShuttleConsoleCircuitboard - components: - - pos: -43.543022,-52.453526 - parent: 0 - type: Transform -- uid: 13065 - type: Pen - components: - - pos: -41.511772,-51.484776 - parent: 0 - type: Transform -- uid: 13066 - type: GyroscopeMachineCircuitboard - components: - - pos: -46.445187,-57.46276 - parent: 0 - type: Transform -- uid: 13067 - type: ThrusterMachineCircuitboard - components: - - pos: -46.55456,-58.259636 - parent: 0 - type: Transform -- uid: 13068 - type: ThrusterMachineCircuitboard - components: - - pos: -46.413937,-58.478386 - parent: 0 - type: Transform -- uid: 13069 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-50.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13070 - type: Poweredlight - components: - - pos: -36.5,-46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13071 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-63.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13072 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-63.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13073 - type: Poweredlight - components: - - pos: -35.5,-59.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13074 - type: Poweredlight - components: - - pos: -43.5,-57.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13075 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -43.5,-55.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13076 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-60.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13077 - type: PoweredSmallLight - components: - - pos: -30.5,-46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13078 - type: Grille - components: - - pos: -10.5,-30.5 - parent: 0 - type: Transform -- uid: 13079 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-47.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13080 - type: AirlockEngineeringGlassLocked - components: - - pos: -37.5,-40.5 - parent: 0 - type: Transform -- uid: 13081 - type: AirlockCommandGlassLocked - components: - - pos: -30.5,-42.5 - parent: 0 - type: Transform -- uid: 13082 - type: ReinforcedWindow - components: - - pos: -31.5,-42.5 - parent: 0 - type: Transform -- uid: 13083 - type: ReinforcedWindow - components: - - pos: -29.5,-42.5 - parent: 0 - type: Transform -- uid: 13084 - type: Grille - components: - - pos: -31.5,-42.5 - parent: 0 - type: Transform -- uid: 13085 - type: Grille - components: - - pos: -29.5,-42.5 - parent: 0 - type: Transform -- uid: 13086 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -29.5,-44.5 - parent: 0 - type: Transform -- uid: 13087 - type: DisposalUnit - components: - - pos: -36.5,-42.5 - parent: 0 - type: Transform -- uid: 13088 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -36.5,-42.5 - parent: 0 - type: Transform -- uid: 13089 - type: DisposalBend - components: - - pos: -36.5,-40.5 - parent: 0 - type: Transform -- uid: 13090 - type: DisposalBend - components: - - pos: -38.5,-39.5 - parent: 0 - type: Transform -- uid: 13091 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -38.5,-40.5 - parent: 0 - type: Transform -- uid: 13092 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-40.5 - parent: 0 - type: Transform -- uid: 13093 - type: DisposalPipe - components: - - pos: -36.5,-41.5 - parent: 0 - type: Transform -- uid: 13094 - type: GasPipeFourway - components: - - pos: -38.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13095 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13096 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13097 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13098 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13099 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13100 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13101 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13102 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13103 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13104 - type: AirSensor - components: - - pos: -34.5,-43.5 - parent: 0 - type: Transform -- uid: 13105 - type: AirAlarm - components: - - pos: -32.5,-42.5 - parent: 0 - type: Transform - - devices: - - 13104 - - 13103 - - 13102 - type: DeviceList -- uid: 13106 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -39.5,-40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13107 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13108 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13109 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13110 - type: GeneratorPlasma - components: - - pos: -31.5,-41.5 - parent: 0 - type: Transform -- uid: 13111 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-40.5 - parent: 0 - type: Transform -- uid: 13112 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-41.5 - parent: 0 - type: Transform -- uid: 13113 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-40.5 - parent: 0 - type: Transform -- uid: 13114 - type: Thruster - components: - - pos: -31.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 13115 - type: Thruster - components: - - pos: -30.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 13116 - type: Thruster - components: - - pos: -29.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 13117 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -34.5,-39.5 - parent: 0 - type: Transform -- uid: 13118 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -35.5,-39.5 - parent: 0 - type: Transform -- uid: 13119 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -36.5,-39.5 - parent: 0 - type: Transform -- uid: 13120 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -30.5,-44.5 - parent: 0 - type: Transform -- uid: 13121 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -31.5,-44.5 - parent: 0 - type: Transform -- uid: 13122 - type: CrateAirlockKit - components: - - pos: -33.5,-39.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13123 - type: CrateMaterialSteel - components: - - pos: -35.5,-44.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13124 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: -36.5,-44.5 - parent: 0 - type: Transform -- uid: 13125 - type: ClothingMaskBreath - components: - - pos: -36.51042,-44.405884 - parent: 0 - type: Transform -- uid: 13126 - type: ShuttleConsoleCircuitboard - components: - - pos: -31.455948,-40.471146 - parent: 0 - type: Transform -- uid: 13127 - type: WallmountGeneratorAPUElectronics - components: - - pos: -29.502823,-40.377396 - parent: 0 - type: Transform -- uid: 13128 - type: WallmountGeneratorAPUElectronics - components: - - pos: -29.393448,-40.502396 - parent: 0 - type: Transform -- uid: 13129 - type: WallmountSubstationElectronics - components: - - pos: -29.502823,-41.377396 - parent: 0 - type: Transform -- uid: 13130 - type: WallmountSubstationElectronics - components: - - pos: -29.377823,-41.51802 - parent: 0 - type: Transform -- uid: 13131 - type: FoodBoxDonut - components: - - pos: -36.393448,-39.368843 - parent: 0 - type: Transform -- uid: 13132 - type: ClothingBeltUtility - components: - - pos: -35.455948,-39.408646 - parent: 0 - type: Transform -- uid: 13133 - type: LockerElectricalSuppliesFilled - components: - - pos: -32.5,-44.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13134 - type: LockerWeldingSuppliesFilled - components: - - pos: -33.5,-44.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13135 - type: WeldingFuelTankFull - components: - - pos: -34.5,-44.5 - parent: 0 - type: Transform -- uid: 13136 - type: SheetSteel - components: - - pos: -31.440323,-44.471146 - parent: 0 - type: Transform -- uid: 13137 - type: SheetSteel - components: - - pos: -31.440323,-44.471146 - parent: 0 - type: Transform -- uid: 13138 - type: SheetPlasteel - components: - - pos: -31.002823,-44.471146 - parent: 0 - type: Transform -- uid: 13139 - type: SheetPlasteel - components: - - pos: -31.002823,-44.471146 - parent: 0 - type: Transform -- uid: 13140 - type: PowerCellRecharger - components: - - pos: -34.5,-39.5 - parent: 0 - type: Transform -- uid: 13141 - type: PartRodMetal - components: - - pos: -30.534073,-44.431343 - parent: 0 - type: Transform -- uid: 13142 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-53.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Rock Dock - type: SurveillanceCamera -- uid: 13143 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -34.5,-39.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Rock Dock Supply Room - type: SurveillanceCamera -- uid: 13144 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-43.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13145 - type: Poweredlight - components: - - pos: -30.5,-39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13146 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13147 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13148 - type: ClosetEmergencyFilledRandom - components: - - pos: -41.5,-25.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13149 - type: ReinforcedWindow - components: - - pos: -32.5,-21.5 - parent: 0 - type: Transform -- uid: 13150 - type: ClosetFireFilled - components: - - pos: -32.5,-22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13151 - type: ClosetFireFilled - components: - - pos: -41.5,-24.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13152 - type: Table - components: - - pos: -41.5,-26.5 - parent: 0 - type: Transform -- uid: 13153 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,-22.5 - parent: 0 - type: Transform -- uid: 13154 - type: RandomVendingSnacks - components: - - pos: -35.5,-22.5 - parent: 0 - type: Transform -- uid: 13155 - type: RandomVendingDrinks - components: - - pos: -33.5,-22.5 - parent: 0 - type: Transform -- uid: 13156 - type: BoxHugHealing - components: - - pos: -41.49103,-26.277033 - parent: 0 - type: Transform -- uid: 13157 - type: CrowbarRed - components: - - pos: -41.413113,-26.530577 - parent: 0 - type: Transform -- uid: 13158 - type: AtmosFixBlockerMarker - components: - - pos: -40.5,-21.5 - parent: 0 - type: Transform -- uid: 13159 - type: AtmosFixBlockerMarker - components: - - pos: -40.5,-22.5 - parent: 0 - type: Transform -- uid: 13160 - type: AtmosFixBlockerMarker - components: - - pos: -35.5,-20.5 - parent: 0 - type: Transform -- uid: 13161 - type: AtmosFixBlockerMarker - components: - - pos: -26.5,-20.5 - parent: 0 - type: Transform -- uid: 13162 - type: AtmosFixBlockerMarker - components: - - pos: -25.5,-19.5 - parent: 0 - type: Transform -- uid: 13163 - type: AtmosFixBlockerMarker - components: - - pos: -25.5,-15.5 - parent: 0 - type: Transform -- uid: 13164 - type: AtmosFixBlockerMarker - components: - - pos: -25.5,-13.5 - parent: 0 - type: Transform -- uid: 13165 - type: AtmosFixBlockerMarker - components: - - pos: -25.5,-17.5 - parent: 0 - type: Transform -- uid: 13166 - type: AtmosDeviceFanTiny - components: - - pos: -30.5,-20.5 - parent: 0 - type: Transform -- uid: 13167 - type: AtmosDeviceFanTiny - components: - - pos: -30.5,-10.5 - parent: 0 - type: Transform -- uid: 13168 - type: Catwalk - components: - - pos: -37.5,-9.5 - parent: 0 - type: Transform -- uid: 13169 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-10.5 - parent: 0 - type: Transform -- uid: 13170 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-9.5 - parent: 0 - type: Transform -- uid: 13171 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-8.5 - parent: 0 - type: Transform -- uid: 13172 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,-9.5 - parent: 0 - type: Transform -- uid: 13173 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,-8.5 - parent: 0 - type: Transform -- uid: 13174 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,-10.5 - parent: 0 - type: Transform -- uid: 13175 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,-10.5 - parent: 0 - type: Transform -- uid: 13176 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,-9.5 - parent: 0 - type: Transform -- uid: 13177 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-14.5 - parent: 0 - type: Transform -- uid: 13178 - type: AtmosFixBlockerMarker - components: - - pos: -42.5,-9.5 - parent: 0 - type: Transform -- uid: 13179 - type: AtmosFixBlockerMarker - components: - - pos: -42.5,-8.5 - parent: 0 - type: Transform -- uid: 13180 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-11.5 - parent: 0 - type: Transform -- uid: 13181 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,-22.5 - parent: 0 - type: Transform -- uid: 13182 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,-20.5 - parent: 0 - type: Transform -- uid: 13183 - type: AtmosFixBlockerMarker - components: - - pos: -42.5,-21.5 - parent: 0 - type: Transform -- uid: 13184 - type: AtmosFixBlockerMarker - components: - - pos: -25.5,-16.5 - parent: 0 - type: Transform -- uid: 13185 - type: AtmosFixBlockerMarker - components: - - pos: -25.5,-12.5 - parent: 0 - type: Transform -- uid: 13186 - type: AtmosFixBlockerMarker - components: - - pos: -25.5,-14.5 - parent: 0 - type: Transform -- uid: 13187 - type: AtmosFixBlockerMarker - components: - - pos: -25.5,-18.5 - parent: 0 - type: Transform -- uid: 13188 - type: AtmosFixBlockerMarker - components: - - pos: -25.5,-20.5 - parent: 0 - type: Transform -- uid: 13189 - type: AtmosFixBlockerMarker - components: - - pos: -34.5,-20.5 - parent: 0 - type: Transform -- uid: 13190 - type: AtmosFixBlockerMarker - components: - - pos: -36.5,-20.5 - parent: 0 - type: Transform -- uid: 13191 - type: AtmosFixBlockerMarker - components: - - pos: -41.5,-20.5 - parent: 0 - type: Transform -- uid: 13192 - type: AtmosFixBlockerMarker - components: - - pos: -41.5,-21.5 - parent: 0 - type: Transform -- uid: 13193 - type: AtmosFixBlockerMarker - components: - - pos: -41.5,-22.5 - parent: 0 - type: Transform -- uid: 13194 - type: AtmosFixBlockerMarker - components: - - pos: -25.5,-11.5 - parent: 0 - type: Transform -- uid: 13195 - type: AtmosFixBlockerMarker - components: - - pos: -25.5,-10.5 - parent: 0 - type: Transform -- uid: 13196 - type: AtmosFixBlockerMarker - components: - - pos: -41.5,-10.5 - parent: 0 - type: Transform -- uid: 13197 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,-8.5 - parent: 0 - type: Transform -- uid: 13198 - type: AtmosFixBlockerMarker - components: - - pos: -42.5,-10.5 - parent: 0 - type: Transform -- uid: 13199 - type: AtmosFixBlockerMarker - components: - - pos: -41.5,-8.5 - parent: 0 - type: Transform -- uid: 13200 - type: AtmosFixBlockerMarker - components: - - pos: -40.5,-10.5 - parent: 0 - type: Transform -- uid: 13201 - type: AtmosFixBlockerMarker - components: - - pos: -40.5,-9.5 - parent: 0 - type: Transform -- uid: 13202 - type: AtmosFixBlockerMarker - components: - - pos: -40.5,-8.5 - parent: 0 - type: Transform -- uid: 13203 - type: AtmosFixBlockerMarker - components: - - pos: -26.5,-10.5 - parent: 0 - type: Transform -- uid: 13204 - type: AtmosFixBlockerMarker - components: - - pos: -32.5,-10.5 - parent: 0 - type: Transform -- uid: 13205 - type: AtmosFixBlockerMarker - components: - - pos: -35.5,-10.5 - parent: 0 - type: Transform -- uid: 13206 - type: AtmosFixBlockerMarker - components: - - pos: -36.5,-10.5 - parent: 0 - type: Transform -- uid: 13207 - type: AtmosFixBlockerMarker - components: - - pos: -27.5,-10.5 - parent: 0 - type: Transform -- uid: 13208 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,-7.5 - parent: 0 - type: Transform -- uid: 13209 - type: AtmosFixBlockerMarker - components: - - pos: -41.5,-9.5 - parent: 0 - type: Transform -- uid: 13210 - type: AtmosFixBlockerMarker - components: - - pos: -42.5,-6.5 - parent: 0 - type: Transform -- uid: 13211 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-6.5 - parent: 0 - type: Transform -- uid: 13212 - type: AtmosFixBlockerMarker - components: - - pos: -34.5,-10.5 - parent: 0 - type: Transform -- uid: 13213 - type: AtmosFixBlockerMarker - components: - - pos: -33.5,-10.5 - parent: 0 - type: Transform -- uid: 13214 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-16.5 - parent: 0 - type: Transform -- uid: 13215 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-5.5 - parent: 0 - type: Transform -- uid: 13216 - type: AtmosFixBlockerMarker - components: - - pos: -42.5,-5.5 - parent: 0 - type: Transform -- uid: 13217 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-15.5 - parent: 0 - type: Transform -- uid: 13218 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-18.5 - parent: 0 - type: Transform -- uid: 13219 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,-6.5 - parent: 0 - type: Transform -- uid: 13220 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,-5.5 - parent: 0 - type: Transform -- uid: 13221 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,-7.5 - parent: 0 - type: Transform -- uid: 13222 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-12.5 - parent: 0 - type: Transform -- uid: 13223 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-13.5 - parent: 0 - type: Transform -- uid: 13224 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,-6.5 - parent: 0 - type: Transform -- uid: 13225 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,-5.5 - parent: 0 - type: Transform -- uid: 13226 - type: AtmosFixBlockerMarker - components: - - pos: -42.5,-7.5 - parent: 0 - type: Transform -- uid: 13227 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-19.5 - parent: 0 - type: Transform -- uid: 13228 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-20.5 - parent: 0 - type: Transform -- uid: 13229 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-21.5 - parent: 0 - type: Transform -- uid: 13230 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-22.5 - parent: 0 - type: Transform -- uid: 13231 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,-20.5 - parent: 0 - type: Transform -- uid: 13232 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,-21.5 - parent: 0 - type: Transform -- uid: 13233 - type: AtmosFixBlockerMarker - components: - - pos: -41.5,-7.5 - parent: 0 - type: Transform -- uid: 13234 - type: AtmosFixBlockerMarker - components: - - pos: -41.5,-6.5 - parent: 0 - type: Transform -- uid: 13235 - type: AtmosFixBlockerMarker - components: - - pos: -41.5,-5.5 - parent: 0 - type: Transform -- uid: 13236 - type: AtmosFixBlockerMarker - components: - - pos: -40.5,-6.5 - parent: 0 - type: Transform -- uid: 13237 - type: AtmosFixBlockerMarker - components: - - pos: -40.5,-5.5 - parent: 0 - type: Transform -- uid: 13238 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-17.5 - parent: 0 - type: Transform -- uid: 13239 - type: AtmosFixBlockerMarker - components: - - pos: -28.5,-10.5 - parent: 0 - type: Transform -- uid: 13240 - type: Grille - components: - - pos: -36.5,-23.5 - parent: 0 - type: Transform -- uid: 13241 - type: SpawnPointLatejoin - components: - - pos: -36.5,-23.5 - parent: 0 - type: Transform -- uid: 13242 - type: SpawnPointLatejoin - components: - - pos: -35.5,-23.5 - parent: 0 - type: Transform -- uid: 13243 - type: SpawnPointLatejoin - components: - - pos: -34.5,-23.5 - parent: 0 - type: Transform -- uid: 13244 - type: SpawnPointLatejoin - components: - - pos: -33.5,-23.5 - parent: 0 - type: Transform -- uid: 13245 - type: SpawnPointLatejoin - components: - - pos: -32.5,-23.5 - parent: 0 - type: Transform -- uid: 13246 - type: SpawnPointLatejoin - components: - - pos: -33.5,-8.5 - parent: 0 - type: Transform -- uid: 13247 - type: SpawnPointLatejoin - components: - - pos: -34.5,-8.5 - parent: 0 - type: Transform -- uid: 13248 - type: SpawnPointLatejoin - components: - - pos: -35.5,-8.5 - parent: 0 - type: Transform -- uid: 13249 - type: CableApcExtension - components: - - pos: -37.5,-24.5 - parent: 0 - type: Transform -- uid: 13250 - type: Grille - components: - - pos: -36.5,-10.5 - parent: 0 - type: Transform -- uid: 13251 - type: Grille - components: - - pos: -36.5,-8.5 - parent: 0 - type: Transform -- uid: 13252 - type: AtmosDeviceFanTiny - components: - - pos: -37.5,-20.5 - parent: 0 - type: Transform -- uid: 13253 - type: CableApcExtension - components: - - pos: -37.5,-6.5 - parent: 0 - type: Transform -- uid: 13254 - type: CableApcExtension - components: - - pos: -37.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13255 - type: CableApcExtension - components: - - pos: -37.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13256 - type: ReinforcedWindow - components: - - pos: -38.5,-20.5 - parent: 0 - type: Transform -- uid: 13257 - type: ReinforcedWindow - components: - - pos: -38.5,-23.5 - parent: 0 - type: Transform -- uid: 13258 - type: ReinforcedWindow - components: - - pos: -36.5,-10.5 - parent: 0 - type: Transform -- uid: 13259 - type: RandomVendingSnacks - components: - - pos: -20.5,-13.5 - parent: 0 - type: Transform -- uid: 13260 - type: RandomVendingDrinks - components: - - pos: -20.5,-14.5 - parent: 0 - type: Transform -- uid: 13261 - type: Catwalk - components: - - pos: -39.5,-10.5 - parent: 0 - type: Transform -- uid: 13262 - type: Grille - components: - - pos: -38.5,-7.5 - parent: 0 - type: Transform -- uid: 13263 - type: Grille - components: - - pos: -38.5,-10.5 - parent: 0 - type: Transform -- uid: 13264 - type: Catwalk - components: - - pos: -37.5,-8.5 - parent: 0 - type: Transform -- uid: 13265 - type: Catwalk - components: - - pos: -37.5,-22.5 - parent: 0 - type: Transform -- uid: 13266 - type: RandomVendingDrinks - components: - - pos: 89.5,22.5 - parent: 0 - type: Transform -- uid: 13267 - type: RandomVendingSnacks - components: - - pos: 89.5,21.5 - parent: 0 - type: Transform -- uid: 13268 - type: RandomVending - components: - - pos: 68.5,-50.5 - parent: 0 - type: Transform -- uid: 13269 - type: AirlockExternalGlassShuttleEscape - components: - - rot: 1.5707963267948966 rad - pos: 95.5,61.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 13270 - type: AirlockExternalGlassShuttleEscape - components: - - rot: 1.5707963267948966 rad - pos: 95.5,66.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 13271 - type: RandomVendingSnacks - components: - - pos: 54.5,42.5 - parent: 0 - type: Transform -- uid: 13272 - type: ReinforcedWindow - components: - - pos: -38.5,-7.5 - parent: 0 - type: Transform -- uid: 13273 - type: SignSecureMed - components: - - pos: -36.5,-21.5 - parent: 0 - type: Transform -- uid: 13274 - type: ReinforcedWindow - components: - - pos: -41.5,-40.5 - parent: 0 - type: Transform -- uid: 13275 - type: ReinforcedWindow - components: - - pos: -43.5,-40.5 - parent: 0 - type: Transform -- uid: 13276 - type: Grille - components: - - pos: -41.5,-40.5 - parent: 0 - type: Transform -- uid: 13277 - type: Grille - components: - - pos: -43.5,-40.5 - parent: 0 - type: Transform -- uid: 13278 - type: SignEscapePods - components: - - pos: -41.5,-41.5 - parent: 0 - type: Transform -- uid: 13279 - type: SignEscapePods - components: - - pos: -41.5,-33.5 - parent: 0 - type: Transform -- uid: 13280 - type: AirlockExternalGlassShuttleEscape - components: - - pos: -28.5,-30.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 13281 - type: AirlockExternalGlassShuttleEscape - components: - - pos: -33.5,-30.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 13282 - type: AtmosDeviceFanTiny - components: - - pos: -28.5,-30.5 - parent: 0 - type: Transform -- uid: 13283 - type: AtmosDeviceFanTiny - components: - - pos: -33.5,-30.5 - parent: 0 - type: Transform -- uid: 13284 - type: AtmosDeviceFanTiny - components: - - pos: 95.5,61.5 - parent: 0 - type: Transform -- uid: 13285 - type: AtmosDeviceFanTiny - components: - - pos: 95.5,66.5 - parent: 0 - type: Transform -- uid: 13286 - type: SignEscapePods - components: - - pos: 89.5,58.5 - parent: 0 - type: Transform -- uid: 13287 - type: TelecomServer - components: - - pos: 94.5,8.5 - parent: 0 - type: Transform -- uid: 13288 - type: TelecomServer - components: - - pos: 93.5,8.5 - parent: 0 - type: Transform -- uid: 13289 - type: TelecomServer - components: - - pos: 32.5,-31.5 - parent: 0 - type: Transform -- uid: 13290 - type: TelecomServer - components: - - pos: 31.5,-31.5 - parent: 0 - type: Transform -- uid: 13291 - type: WallmountTelevisionFrame - components: - - pos: 65.5,-6.5 - parent: 0 - type: Transform -- uid: 13292 - type: WallmountTelevisionFrame - components: - - pos: 59.5,13.5 - parent: 0 - type: Transform -- uid: 13293 - type: WallmountTelevisionFrame - components: - - pos: 38.5,35.5 - parent: 0 - type: Transform -- uid: 13294 - type: WallmountTelevision - components: - - pos: -18.5,47.5 - parent: 0 - type: Transform -- uid: 13295 - type: Table - components: - - pos: -29.5,-4.5 - parent: 0 - type: Transform -- uid: 13296 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-4.5 - parent: 0 - type: Transform -- uid: 13297 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-4.5 - parent: 0 - type: Transform -- uid: 13298 - type: RandomArcade - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-6.5 - parent: 0 - type: Transform -- uid: 13299 - type: RandomArcade - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-5.5 - parent: 0 - type: Transform -- uid: 13300 - type: WallmountTelevision - components: - - pos: -29.5,-3.5 - parent: 0 - type: Transform -- uid: 13301 - type: RandomVendingDrinks - components: - - pos: 54.5,41.5 - parent: 0 - type: Transform -- uid: 13302 - type: CableApcExtension - components: - - pos: 23.5,-1.5 - parent: 0 - type: Transform -- uid: 13303 - type: CableApcExtension - components: - - pos: 22.5,-1.5 - parent: 0 - type: Transform -- uid: 13304 - type: CableApcExtension - components: - - pos: 21.5,-1.5 - parent: 0 - type: Transform -- uid: 13305 - type: CableApcExtension - components: - - pos: 20.5,-1.5 - parent: 0 - type: Transform -- uid: 13306 - type: CableApcExtension - components: - - pos: 19.5,-1.5 - parent: 0 - type: Transform -- uid: 13307 - type: CableApcExtension - components: - - pos: 18.5,-1.5 - parent: 0 - type: Transform -- uid: 13308 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 101.5,-17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13309 - type: PaperBin5 - components: - - pos: 9.5,5.5 - parent: 0 - type: Transform -- uid: 13310 - type: PaperBin5 - components: - - pos: 8.5,-2.5 - parent: 0 - type: Transform -- uid: 13311 - type: DeskBell - components: - - pos: 4.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 13312 - type: DeskBell - components: - - pos: -2.5,34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 13399 - type: APCBasic - components: - - pos: -36.5,-3.5 - parent: 0 - type: Transform -- uid: 13400 - type: CableMV - components: - - pos: -24.5,-24.5 - parent: 0 - type: Transform -- uid: 13401 - type: CableApcExtension - components: - - pos: -38.5,-25.5 - parent: 0 - type: Transform -- uid: 13406 - type: CableApcExtension - components: - - pos: -37.5,-25.5 - parent: 0 - type: Transform -- uid: 13407 - type: CableApcExtension - components: - - pos: -36.5,-25.5 - parent: 0 - type: Transform -- uid: 13408 - type: CableApcExtension - components: - - pos: -35.5,-25.5 - parent: 0 - type: Transform -- uid: 13409 - type: CableApcExtension - components: - - pos: -34.5,-25.5 - parent: 0 - type: Transform -- uid: 13410 - type: CableApcExtension - components: - - pos: -33.5,-25.5 - parent: 0 - type: Transform -- uid: 13411 - type: CableApcExtension - components: - - pos: -32.5,-25.5 - parent: 0 - type: Transform -- uid: 13412 - type: CableApcExtension - components: - - pos: -31.5,-25.5 - parent: 0 - type: Transform -- uid: 13413 - type: CableApcExtension - components: - - pos: -30.5,-25.5 - parent: 0 - type: Transform -- uid: 13414 - type: CableApcExtension - components: - - pos: -29.5,-25.5 - parent: 0 - type: Transform -- uid: 13415 - type: CableApcExtension - components: - - pos: -28.5,-25.5 - parent: 0 - type: Transform -- uid: 13416 - type: CableApcExtension - components: - - pos: -27.5,-25.5 - parent: 0 - type: Transform -- uid: 13417 - type: CableApcExtension - components: - - pos: -26.5,-25.5 - parent: 0 - type: Transform -- uid: 13418 - type: CableApcExtension - components: - - pos: -25.5,-25.5 - parent: 0 - type: Transform -- uid: 13419 - type: CableApcExtension - components: - - pos: -24.5,-25.5 - parent: 0 - type: Transform -- uid: 13420 - type: CableApcExtension - components: - - pos: -24.5,-24.5 - parent: 0 - type: Transform -- uid: 13421 - type: APCBasic - components: - - pos: -29.5,-23.5 - parent: 0 - type: Transform -- uid: 13422 - type: CableApcExtension - components: - - pos: -23.5,-25.5 - parent: 0 - type: Transform -- uid: 13423 - type: CableApcExtension - components: - - pos: -22.5,-25.5 - parent: 0 - type: Transform -- uid: 13424 - type: CableApcExtension - components: - - pos: -21.5,-25.5 - parent: 0 - type: Transform -- uid: 13425 - type: CableApcExtension - components: - - pos: -21.5,-24.5 - parent: 0 - type: Transform -- uid: 13426 - type: CableApcExtension - components: - - pos: -21.5,-23.5 - parent: 0 - type: Transform -- uid: 13427 - type: CableApcExtension - components: - - pos: -21.5,-22.5 - parent: 0 - type: Transform -- uid: 13428 - type: CableApcExtension - components: - - pos: -30.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13429 - type: CableApcExtension - components: - - pos: -30.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13430 - type: CableApcExtension - components: - - pos: -30.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13431 - type: CableApcExtension - components: - - pos: -30.5,-24.5 - parent: 0 - type: Transform -- uid: 13432 - type: CableApcExtension - components: - - pos: -21.5,-17.5 - parent: 0 - type: Transform -- uid: 13433 - type: CableApcExtension - components: - - pos: -30.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13434 - type: CableApcExtension - components: - - pos: -30.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13435 - type: CableApcExtension - components: - - pos: -30.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13436 - type: CableApcExtension - components: - - pos: -30.5,-6.5 - parent: 0 - type: Transform -- uid: 13437 - type: CableApcExtension - components: - - pos: -30.5,-5.5 - parent: 0 - type: Transform -- uid: 13441 - type: CableApcExtension - components: - - pos: -38.5,-6.5 - parent: 0 - type: Transform -- uid: 13442 - type: CableApcExtension - components: - - pos: -38.5,-5.5 - parent: 0 - type: Transform -- uid: 13443 - type: CableApcExtension - components: - - pos: -37.5,-5.5 - parent: 0 - type: Transform -- uid: 13444 - type: CableApcExtension - components: - - pos: -36.5,-5.5 - parent: 0 - type: Transform -- uid: 13445 - type: CableApcExtension - components: - - pos: -35.5,-5.5 - parent: 0 - type: Transform -- uid: 13446 - type: CableApcExtension - components: - - pos: -34.5,-5.5 - parent: 0 - type: Transform -- uid: 13447 - type: CableApcExtension - components: - - pos: -33.5,-5.5 - parent: 0 - type: Transform -- uid: 13448 - type: CableApcExtension - components: - - pos: -32.5,-5.5 - parent: 0 - type: Transform -- uid: 13449 - type: CableApcExtension - components: - - pos: -31.5,-5.5 - parent: 0 - type: Transform -- uid: 13450 - type: CableApcExtension - components: - - pos: -36.5,-4.5 - parent: 0 - type: Transform -- uid: 13451 - type: CableApcExtension - components: - - pos: -36.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13452 - type: CableApcExtension - components: - - pos: -29.5,-5.5 - parent: 0 - type: Transform -- uid: 13453 - type: CableApcExtension - components: - - pos: -28.5,-5.5 - parent: 0 - type: Transform -- uid: 13454 - type: CableApcExtension - components: - - pos: -27.5,-5.5 - parent: 0 - type: Transform -- uid: 13455 - type: CableApcExtension - components: - - pos: -26.5,-5.5 - parent: 0 - type: Transform -- uid: 13456 - type: CableApcExtension - components: - - pos: -25.5,-5.5 - parent: 0 - type: Transform -- uid: 13457 - type: CableApcExtension - components: - - pos: -24.5,-5.5 - parent: 0 - type: Transform -- uid: 13458 - type: CableApcExtension - components: - - pos: -23.5,-5.5 - parent: 0 - type: Transform -- uid: 13479 - type: CableMV - components: - - pos: -36.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13480 - type: CableMV - components: - - pos: -35.5,-3.5 - parent: 0 - type: Transform -- uid: 13481 - type: CableMV - components: - - pos: -35.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13482 - type: CableMV - components: - - pos: -35.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13483 - type: CableMV - components: - - pos: -36.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13484 - type: CableMV - components: - - pos: -37.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13485 - type: CableMV - components: - - pos: -38.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13486 - type: CableMV - components: - - pos: -39.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13487 - type: CableMV - components: - - pos: -35.5,-4.5 - parent: 0 - type: Transform -- uid: 13488 - type: CableMV - components: - - pos: -34.5,-4.5 - parent: 0 - type: Transform -- uid: 13489 - type: CableMV - components: - - pos: -33.5,-4.5 - parent: 0 - type: Transform -- uid: 13490 - type: CableMV - components: - - pos: -32.5,-4.5 - parent: 0 - type: Transform -- uid: 13491 - type: CableMV - components: - - pos: -31.5,-4.5 - parent: 0 - type: Transform -- uid: 13492 - type: CableMV - components: - - pos: -30.5,-4.5 - parent: 0 - type: Transform -- uid: 13493 - type: CableMV - components: - - pos: -29.5,-4.5 - parent: 0 - type: Transform -- uid: 13494 - type: CableMV - components: - - pos: -28.5,-4.5 - parent: 0 - type: Transform -- uid: 13495 - type: CableMV - components: - - pos: -27.5,-4.5 - parent: 0 - type: Transform -- uid: 13496 - type: CableMV - components: - - pos: -26.5,-4.5 - parent: 0 - type: Transform -- uid: 13497 - type: CableMV - components: - - pos: -25.5,-4.5 - parent: 0 - type: Transform -- uid: 13498 - type: CableMV - components: - - pos: -24.5,-4.5 - parent: 0 - type: Transform -- uid: 13499 - type: CableMV - components: - - pos: -23.5,-4.5 - parent: 0 - type: Transform -- uid: 13500 - type: CableMV - components: - - pos: -22.5,-4.5 - parent: 0 - type: Transform -- uid: 13501 - type: CableMV - components: - - pos: -22.5,-5.5 - parent: 0 - type: Transform -- uid: 13502 - type: CableMV - components: - - pos: -22.5,-6.5 - parent: 0 - type: Transform -- uid: 13503 - type: CableMV - components: - - pos: -22.5,-7.5 - parent: 0 - type: Transform -- uid: 13504 - type: CableMV - components: - - pos: -22.5,-8.5 - parent: 0 - type: Transform -- uid: 13505 - type: CableMV - components: - - pos: -22.5,-9.5 - parent: 0 - type: Transform -- uid: 13506 - type: CableMV - components: - - pos: -22.5,-10.5 - parent: 0 - type: Transform -- uid: 13507 - type: CableMV - components: - - pos: -22.5,-11.5 - parent: 0 - type: Transform -- uid: 13508 - type: CableMV - components: - - pos: -22.5,-12.5 - parent: 0 - type: Transform -- uid: 13509 - type: CableMV - components: - - pos: -22.5,-13.5 - parent: 0 - type: Transform -- uid: 13510 - type: CableMV - components: - - pos: -22.5,-14.5 - parent: 0 - type: Transform -- uid: 13511 - type: CableMV - components: - - pos: -22.5,-15.5 - parent: 0 - type: Transform -- uid: 13512 - type: CableMV - components: - - pos: -22.5,-16.5 - parent: 0 - type: Transform -- uid: 13513 - type: CableMV - components: - - pos: -22.5,-17.5 - parent: 0 - type: Transform -- uid: 13514 - type: CableMV - components: - - pos: -22.5,-18.5 - parent: 0 - type: Transform -- uid: 13515 - type: CableMV - components: - - pos: -22.5,-19.5 - parent: 0 - type: Transform -- uid: 13516 - type: CableMV - components: - - pos: -22.5,-20.5 - parent: 0 - type: Transform -- uid: 13517 - type: CableMV - components: - - pos: -22.5,-21.5 - parent: 0 - type: Transform -- uid: 13518 - type: CableMV - components: - - pos: -22.5,-22.5 - parent: 0 - type: Transform -- uid: 13519 - type: CableMV - components: - - pos: -22.5,-23.5 - parent: 0 - type: Transform -- uid: 13520 - type: CableMV - components: - - pos: -25.5,-24.5 - parent: 0 - type: Transform -- uid: 13521 - type: CableMV - components: - - pos: -26.5,-24.5 - parent: 0 - type: Transform -- uid: 13522 - type: CableMV - components: - - pos: -23.5,-23.5 - parent: 0 - type: Transform -- uid: 13523 - type: CableMV - components: - - pos: -23.5,-24.5 - parent: 0 - type: Transform -- uid: 13524 - type: CableMV - components: - - pos: -27.5,-24.5 - parent: 0 - type: Transform -- uid: 13525 - type: CableMV - components: - - pos: -28.5,-24.5 - parent: 0 - type: Transform -- uid: 13526 - type: CableMV - components: - - pos: -29.5,-24.5 - parent: 0 - type: Transform -- uid: 13527 - type: CableMV - components: - - pos: -29.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13528 - type: CableApcExtension - components: - - pos: -29.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13529 - type: FirelockGlass - components: - - pos: -24.5,-6.5 - parent: 0 - type: Transform -- uid: 13530 - type: FirelockGlass - components: - - pos: -24.5,-5.5 - parent: 0 - type: Transform -- uid: 13531 - type: FirelockGlass - components: - - pos: -24.5,-4.5 - parent: 0 - type: Transform -- uid: 13532 - type: FirelockGlass - components: - - pos: -23.5,-15.5 - parent: 0 - type: Transform -- uid: 13533 - type: FirelockGlass - components: - - pos: -22.5,-15.5 - parent: 0 - type: Transform -- uid: 13534 - type: FirelockGlass - components: - - pos: -21.5,-15.5 - parent: 0 - type: Transform -- uid: 13535 - type: FirelockGlass - components: - - pos: -24.5,-27.5 - parent: 0 - type: Transform -- uid: 13536 - type: FirelockGlass - components: - - pos: -24.5,-26.5 - parent: 0 - type: Transform -- uid: 13537 - type: FirelockGlass - components: - - pos: -24.5,-25.5 - parent: 0 - type: Transform -- uid: 13538 - type: FirelockGlass - components: - - pos: -24.5,-24.5 - parent: 0 - type: Transform -- uid: 13539 - type: DisposalUnit - components: - - pos: -26.5,-27.5 - parent: 0 - type: Transform -- uid: 13540 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -26.5,-27.5 - parent: 0 - type: Transform -- uid: 13541 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -26.5,-26.5 - parent: 0 - type: Transform -- uid: 13542 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -35.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13543 - type: GasVentScrubber - components: - - pos: -33.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13544 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13545 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13546 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13547 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13548 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13549 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13550 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13551 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13552 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13553 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13554 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13555 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13556 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -35.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13557 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -33.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13558 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13559 - type: GasVentScrubber - components: - - pos: -33.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13560 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13561 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13562 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13563 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13564 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13565 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13567 - type: ClosetEmergencyFilledRandom - components: - - pos: -32.5,-7.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13568 - type: ClosetFireFilled - components: - - pos: -32.5,-8.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13572 - type: PottedPlantRandom - components: - - pos: -38.5,-4.5 - parent: 0 - type: Transform -- uid: 13573 - type: PottedPlantRandom - components: - - pos: -13.5,-24.5 - parent: 0 - type: Transform -- uid: 13574 - type: WallSolid - components: - - pos: -34.5,-3.5 - parent: 0 - type: Transform -- uid: 13575 - type: WallSolid - components: - - pos: -21.5,-3.5 - parent: 0 - type: Transform -- uid: 13576 - type: AirlockMaintLocked - components: - - pos: -22.5,-3.5 - parent: 0 - type: Transform -- uid: 13577 - type: WallSolid - components: - - pos: -23.5,-3.5 - parent: 0 - type: Transform -- uid: 13578 - type: WallSolid - components: - - pos: -24.5,-3.5 - parent: 0 - type: Transform -- uid: 13579 - type: WallSolid - components: - - pos: -25.5,-3.5 - parent: 0 - type: Transform -- uid: 13580 - type: WallSolid - components: - - pos: -26.5,-3.5 - parent: 0 - type: Transform -- uid: 13581 - type: WallSolid - components: - - pos: -27.5,-3.5 - parent: 0 - type: Transform -- uid: 13582 - type: WallSolid - components: - - pos: -28.5,-3.5 - parent: 0 - type: Transform -- uid: 13583 - type: WallSolid - components: - - pos: -29.5,-3.5 - parent: 0 - type: Transform -- uid: 13584 - type: WallSolid - components: - - pos: -30.5,-3.5 - parent: 0 - type: Transform -- uid: 13585 - type: WallSolid - components: - - pos: -31.5,-3.5 - parent: 0 - type: Transform -- uid: 13586 - type: WallSolid - components: - - pos: -32.5,-3.5 - parent: 0 - type: Transform -- uid: 13587 - type: WallSolid - components: - - pos: -33.5,-3.5 - parent: 0 - type: Transform -- uid: 13588 - type: AirlockMaintLocked - components: - - pos: -35.5,-3.5 - parent: 0 - type: Transform -- uid: 13589 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13590 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13591 - type: Poweredlight - components: - - pos: -40.5,-24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13592 - type: Poweredlight - components: - - pos: -37.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13593 - type: Poweredlight - components: - - pos: -30.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13594 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -35.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13595 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -29.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13596 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13597 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13598 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13599 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -13.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13600 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-35.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13601 - type: SignShipDock - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-27.5 - parent: 0 - type: Transform -- uid: 13603 - type: WarpPoint - components: - - pos: -15.5,18.5 - parent: 0 - type: Transform - - location: Bar - type: WarpPoint -- uid: 13604 - type: WarpPoint - components: - - pos: -32.5,35.5 - parent: 0 - type: Transform - - location: Evac - type: WarpPoint -- uid: 13605 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13608 - type: Table - components: - - pos: -16.5,-24.5 - parent: 0 - type: Transform -- uid: 13609 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-24.5 - parent: 0 - type: Transform -- uid: 13610 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-24.5 - parent: 0 - type: Transform -- uid: 13611 - type: ChessBoard - components: - - pos: -16.477627,-24.40009 - parent: 0 - type: Transform -- uid: 13612 - type: PosterContrabandKosmicheskayaStantsiya - components: - - pos: -36.5,-45.5 - parent: 0 - type: Transform -- uid: 13613 - type: ClothingHeadHelmetTemplar - components: - - pos: -15.492661,-24.517895 - parent: 0 - type: Transform -- uid: 13614 - type: ReinforcedWindow - components: - - pos: -23.5,-28.5 - parent: 0 - type: Transform -- uid: 13615 - type: ReinforcedWindow - components: - - pos: -21.5,-28.5 - parent: 0 - type: Transform -- uid: 13616 - type: Grille - components: - - pos: -23.5,-28.5 - parent: 0 - type: Transform -- uid: 13617 - type: Grille - components: - - pos: -21.5,-28.5 - parent: 0 - type: Transform -- uid: 13618 - type: AirlockExternalGlassLocked - components: - - pos: -22.5,-28.5 - parent: 0 - type: Transform -- uid: 13619 - type: CableApcExtension - components: - - pos: -22.5,-26.5 - parent: 0 - type: Transform -- uid: 13620 - type: CableApcExtension - components: - - pos: -22.5,-27.5 - parent: 0 - type: Transform -- uid: 13621 - type: CableApcExtension - components: - - pos: -22.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13622 - type: CableApcExtension - components: - - pos: -22.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13623 - type: CableApcExtension - components: - - pos: -22.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13624 - type: CableApcExtension - components: - - pos: -20.5,-25.5 - parent: 0 - type: Transform -- uid: 13625 - type: CableApcExtension - components: - - pos: -19.5,-25.5 - parent: 0 - type: Transform -- uid: 13626 - type: CableApcExtension - components: - - pos: -18.5,-25.5 - parent: 0 - type: Transform -- uid: 13627 - type: CableApcExtension - components: - - pos: -17.5,-25.5 - parent: 0 - type: Transform -- uid: 13628 - type: CableApcExtension - components: - - pos: -16.5,-25.5 - parent: 0 - type: Transform -- uid: 13629 - type: CableApcExtension - components: - - pos: -15.5,-25.5 - parent: 0 - type: Transform -- uid: 13630 - type: CableApcExtension - components: - - pos: -14.5,-25.5 - parent: 0 - type: Transform -- uid: 13631 - type: CableApcExtension - components: - - pos: -16.5,-26.5 - parent: 0 - type: Transform -- uid: 13632 - type: CableApcExtension - components: - - pos: -16.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13633 - type: CableApcExtension - components: - - pos: -16.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13634 - type: CableApcExtension - components: - - pos: -16.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13635 - type: CableApcExtension - components: - - pos: -28.5,-26.5 - parent: 0 - type: Transform -- uid: 13636 - type: CableApcExtension - components: - - pos: -28.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13637 - type: CableApcExtension - components: - - pos: -28.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13638 - type: CableApcExtension - components: - - pos: -28.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13639 - type: CableApcExtension - components: - - pos: -33.5,-26.5 - parent: 0 - type: Transform -- uid: 13640 - type: CableApcExtension - components: - - pos: -33.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13641 - type: CableApcExtension - components: - - pos: -33.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13642 - type: CableApcExtension - components: - - pos: -33.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13643 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13644 - type: ClosetEmergencyFilledRandom - components: - - pos: -21.5,-29.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13645 - type: OxygenCanister - components: - - pos: -21.5,-30.5 - parent: 0 - type: Transform -- uid: 13646 - type: PoweredlightLED - components: - - pos: -43.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13647 - type: PoweredlightLED - components: - - rot: 3.141592653589793 rad - pos: -41.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13648 - type: CableApcExtension - components: - - pos: -35.5,-3.5 - parent: 0 - type: Transform -- uid: 13649 - type: CableApcExtension - components: - - pos: -35.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13650 - type: CableApcExtension - components: - - pos: -35.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13651 - type: CableApcExtension - components: - - pos: -35.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13652 - type: CableApcExtension - components: - - pos: -35.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13653 - type: CableApcExtension - components: - - pos: -35.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13654 - type: CableApcExtension - components: - - pos: -36.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13655 - type: CableApcExtension - components: - - pos: -37.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13656 - type: CableApcExtension - components: - - pos: -38.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13657 - type: CableApcExtension - components: - - pos: -39.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13658 - type: CableApcExtension - components: - - pos: -40.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13659 - type: CableApcExtension - components: - - pos: -41.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13660 - type: CableApcExtension - components: - - pos: -42.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13661 - type: CableApcExtension - components: - - pos: -43.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13662 - type: CableApcExtension - components: - - pos: -44.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13663 - type: CableApcExtension - components: - - pos: -45.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13664 - type: CableApcExtension - components: - - pos: -46.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13665 - type: CableApcExtension - components: - - pos: -41.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13666 - type: CableApcExtension - components: - - pos: -41.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13667 - type: CableApcExtension - components: - - pos: -41.5,-1.5 - parent: 0 - type: Transform -- uid: 13668 - type: CableApcExtension - components: - - pos: -41.5,-2.5 - parent: 0 - type: Transform -- uid: 13669 - type: CableApcExtension - components: - - pos: -41.5,-3.5 - parent: 0 - type: Transform -- uid: 13670 - type: CableApcExtension - components: - - pos: -45.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13671 - type: CableApcExtension - components: - - pos: -45.5,-0.5 - parent: 0 - type: Transform -- uid: 13672 - type: CableApcExtension - components: - - pos: -45.5,-1.5 - parent: 0 - type: Transform -- uid: 13673 - type: CableApcExtension - components: - - pos: -45.5,-2.5 - parent: 0 - type: Transform -- uid: 13674 - type: CableApcExtension - components: - - pos: -47.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13675 - type: CableApcExtension - components: - - pos: -47.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13676 - type: CableApcExtension - components: - - pos: -47.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13677 - type: Grille - components: - - pos: -8.5,-30.5 - parent: 0 - type: Transform -- uid: 13678 - type: AsteroidRock - components: - - pos: 32.5,-53.5 - parent: 0 - type: Transform -- uid: 13679 - type: PoweredSmallLight - components: - - pos: 16.5,7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13680 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13681 - type: PoweredSmallLight - components: - - pos: 8.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13682 - type: PoweredSmallLight - components: - - pos: 9.5,23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13683 - type: PoweredSmallLight - components: - - pos: 13.5,29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13684 - type: RandomSpawner - components: - - pos: -37.5,-60.5 - parent: 0 - type: Transform -- uid: 13685 - type: RandomSpawner - components: - - pos: -40.5,-49.5 - parent: 0 - type: Transform -- uid: 13686 - type: RandomPosterLegit - components: - - pos: -43.5,-56.5 - parent: 0 - type: Transform -- uid: 13687 - type: RandomPosterLegit - components: - - pos: -37.5,-35.5 - parent: 0 - type: Transform -- uid: 13688 - type: RandomPosterLegit - components: - - pos: -40.5,-23.5 - parent: 0 - type: Transform -- uid: 13689 - type: RandomPosterLegit - components: - - pos: -24.5,-21.5 - parent: 0 - type: Transform -- uid: 13690 - type: RandomPosterLegit - components: - - pos: -24.5,-9.5 - parent: 0 - type: Transform -- uid: 13691 - type: RandomPosterLegit - components: - - pos: -20.5,-12.5 - parent: 0 - type: Transform -- uid: 13692 - type: RandomPosterLegit - components: - - pos: -15.5,-23.5 - parent: 0 - type: Transform -- uid: 13693 - type: RandomPosterContraband - components: - - pos: -16.5,-17.5 - parent: 0 - type: Transform -- uid: 13694 - type: RandomPosterContraband - components: - - pos: -10.5,-20.5 - parent: 0 - type: Transform -- uid: 13695 - type: RandomPosterLegit - components: - - pos: -10.5,-11.5 - parent: 0 - type: Transform -- uid: 13696 - type: RandomPosterLegit - components: - - pos: -12.5,2.5 - parent: 0 - type: Transform -- uid: 13697 - type: RandomPosterAny - components: - - pos: -14.5,1.5 - parent: 0 - type: Transform -- uid: 13699 - type: Rack - components: - - pos: -45.5,-8.5 - parent: 0 - type: Transform -- uid: 13700 - type: WallSolid - components: - - pos: -45.5,-7.5 - parent: 0 - type: Transform -- uid: 13701 - type: AirCanister - components: - - pos: -40.5,-6.5 - parent: 0 - type: Transform -- uid: 13702 - type: AirCanister - components: - - pos: -40.5,-5.5 - parent: 0 - type: Transform -- uid: 13703 - type: NitrogenCanister - components: - - pos: -45.5,-5.5 - parent: 0 - type: Transform -- uid: 13704 - type: OxygenCanister - components: - - pos: -45.5,-6.5 - parent: 0 - type: Transform -- uid: 13705 - type: ReinforcedWindow - components: - - pos: 40.5,-12.5 - parent: 0 - type: Transform -- uid: 13706 - type: ReinforcedWindow - components: - - pos: 44.5,-12.5 - parent: 0 - type: Transform -- uid: 13707 - type: ReinforcedWindow - components: - - pos: 35.5,-14.5 - parent: 0 - type: Transform -- uid: 13708 - type: WallReinforced - components: - - pos: 49.5,-14.5 - parent: 0 - type: Transform -- uid: 13709 - type: WallReinforced - components: - - pos: 49.5,-13.5 - parent: 0 - type: Transform -- uid: 13710 - type: WallReinforced - components: - - pos: 50.5,-13.5 - parent: 0 - type: Transform -- uid: 13711 - type: WallReinforced - components: - - pos: 51.5,-13.5 - parent: 0 - type: Transform -- uid: 13712 - type: ReinforcedWindow - components: - - pos: 52.5,-13.5 - parent: 0 - type: Transform -- uid: 13713 - type: ReinforcedWindow - components: - - pos: 54.5,-13.5 - parent: 0 - type: Transform -- uid: 13714 - type: ReinforcedWindow - components: - - pos: 55.5,-13.5 - parent: 0 - type: Transform -- uid: 13715 - type: WallReinforced - components: - - pos: 57.5,-13.5 - parent: 0 - type: Transform -- uid: 13716 - type: WallReinforced - components: - - pos: 56.5,-13.5 - parent: 0 - type: Transform -- uid: 13717 - type: WallReinforced - components: - - pos: 62.5,-14.5 - parent: 0 - type: Transform -- uid: 13718 - type: ReinforcedWindow - components: - - pos: 49.5,-16.5 - parent: 0 - type: Transform -- uid: 13719 - type: WallReinforced - components: - - pos: 49.5,-18.5 - parent: 0 - type: Transform -- uid: 13720 - type: WallReinforced - components: - - pos: 48.5,-20.5 - parent: 0 - type: Transform -- uid: 13721 - type: WallReinforced - components: - - pos: 49.5,-19.5 - parent: 0 - type: Transform -- uid: 13722 - type: WallReinforced - components: - - pos: 48.5,-19.5 - parent: 0 - type: Transform -- uid: 13723 - type: WallReinforced - components: - - pos: 49.5,-20.5 - parent: 0 - type: Transform -- uid: 13724 - type: WallReinforced - components: - - pos: 44.5,-20.5 - parent: 0 - type: Transform -- uid: 13725 - type: WallReinforced - components: - - pos: 44.5,-19.5 - parent: 0 - type: Transform -- uid: 13726 - type: WallReinforced - components: - - pos: 40.5,-19.5 - parent: 0 - type: Transform -- uid: 13727 - type: WallReinforced - components: - - pos: 40.5,-20.5 - parent: 0 - type: Transform -- uid: 13728 - type: WallReinforced - components: - - pos: 40.5,-18.5 - parent: 0 - type: Transform -- uid: 13729 - type: ReinforcedWindow - components: - - pos: 43.5,-19.5 - parent: 0 - type: Transform -- uid: 13730 - type: ReinforcedWindow - components: - - pos: 44.5,-22.5 - parent: 0 - type: Transform -- uid: 13731 - type: ReinforcedWindow - components: - - pos: 41.5,-19.5 - parent: 0 - type: Transform -- uid: 13732 - type: ReinforcedWindow - components: - - pos: 41.5,-24.5 - parent: 0 - type: Transform -- uid: 13733 - type: WallReinforced - components: - - pos: 42.5,-24.5 - parent: 0 - type: Transform -- uid: 13734 - type: WallReinforced - components: - - pos: 44.5,-24.5 - parent: 0 - type: Transform -- uid: 13735 - type: WallReinforced - components: - - pos: 44.5,-23.5 - parent: 0 - type: Transform -- uid: 13736 - type: WallReinforced - components: - - pos: 44.5,-21.5 - parent: 0 - type: Transform -- uid: 13737 - type: WallReinforced - components: - - pos: 40.5,-24.5 - parent: 0 - type: Transform -- uid: 13738 - type: WallReinforced - components: - - pos: 40.5,-23.5 - parent: 0 - type: Transform -- uid: 13739 - type: WallReinforced - components: - - pos: 40.5,-22.5 - parent: 0 - type: Transform -- uid: 13740 - type: WallReinforced - components: - - pos: 46.5,-20.5 - parent: 0 - type: Transform -- uid: 13741 - type: WallReinforced - components: - - pos: 40.5,-21.5 - parent: 0 - type: Transform -- uid: 13742 - type: WallReinforced - components: - - pos: 46.5,-24.5 - parent: 0 - type: Transform -- uid: 13743 - type: WallReinforced - components: - - pos: 48.5,-24.5 - parent: 0 - type: Transform -- uid: 13744 - type: WallReinforced - components: - - pos: 49.5,-24.5 - parent: 0 - type: Transform -- uid: 13745 - type: WallReinforced - components: - - pos: 49.5,-23.5 - parent: 0 - type: Transform -- uid: 13746 - type: WallReinforced - components: - - pos: 49.5,-22.5 - parent: 0 - type: Transform -- uid: 13747 - type: WallReinforced - components: - - pos: 49.5,-21.5 - parent: 0 - type: Transform -- uid: 13748 - type: ReinforcedWindow - components: - - pos: 51.5,-21.5 - parent: 0 - type: Transform -- uid: 13749 - type: WallReinforced - components: - - pos: 53.5,-21.5 - parent: 0 - type: Transform -- uid: 13750 - type: WallReinforced - components: - - pos: 54.5,-21.5 - parent: 0 - type: Transform -- uid: 13751 - type: WallReinforced - components: - - pos: 55.5,-21.5 - parent: 0 - type: Transform -- uid: 13752 - type: WallReinforced - components: - - pos: 56.5,-21.5 - parent: 0 - type: Transform -- uid: 13753 - type: WallReinforced - components: - - pos: 57.5,-21.5 - parent: 0 - type: Transform -- uid: 13754 - type: WallReinforced - components: - - pos: 57.5,-20.5 - parent: 0 - type: Transform -- uid: 13755 - type: WallReinforced - components: - - pos: 57.5,-19.5 - parent: 0 - type: Transform -- uid: 13756 - type: WallReinforced - components: - - pos: 57.5,-18.5 - parent: 0 - type: Transform -- uid: 13757 - type: WallReinforced - components: - - pos: 57.5,-17.5 - parent: 0 - type: Transform -- uid: 13758 - type: WallReinforced - components: - - pos: 57.5,-16.5 - parent: 0 - type: Transform -- uid: 13759 - type: WallReinforced - components: - - pos: 57.5,-15.5 - parent: 0 - type: Transform -- uid: 13760 - type: WallReinforced - components: - - pos: 57.5,-22.5 - parent: 0 - type: Transform -- uid: 13761 - type: WallReinforced - components: - - pos: 54.5,-22.5 - parent: 0 - type: Transform -- uid: 13762 - type: WallReinforced - components: - - pos: 54.5,-24.5 - parent: 0 - type: Transform -- uid: 13763 - type: WallReinforced - components: - - pos: 57.5,-24.5 - parent: 0 - type: Transform -- uid: 13764 - type: WallReinforced - components: - - pos: 54.5,-25.5 - parent: 0 - type: Transform -- uid: 13765 - type: WallReinforced - components: - - pos: 55.5,-25.5 - parent: 0 - type: Transform -- uid: 13766 - type: WallReinforced - components: - - pos: 56.5,-25.5 - parent: 0 - type: Transform -- uid: 13767 - type: WallReinforced - components: - - pos: 57.5,-25.5 - parent: 0 - type: Transform -- uid: 13768 - type: WallReinforced - components: - - pos: 39.5,-18.5 - parent: 0 - type: Transform -- uid: 13769 - type: ReinforcedWindow - components: - - pos: 37.5,-18.5 - parent: 0 - type: Transform -- uid: 13770 - type: WallReinforced - components: - - pos: 35.5,-18.5 - parent: 0 - type: Transform -- uid: 13771 - type: WallReinforced - components: - - pos: 36.5,-18.5 - parent: 0 - type: Transform -- uid: 13772 - type: WallReinforced - components: - - pos: 34.5,-18.5 - parent: 0 - type: Transform -- uid: 13773 - type: ReinforcedWindow - components: - - pos: 33.5,-18.5 - parent: 0 - type: Transform -- uid: 13774 - type: WallReinforced - components: - - pos: 32.5,-18.5 - parent: 0 - type: Transform -- uid: 13775 - type: WallReinforced - components: - - pos: 31.5,-18.5 - parent: 0 - type: Transform -- uid: 13776 - type: WallReinforced - components: - - pos: 30.5,-18.5 - parent: 0 - type: Transform -- uid: 13777 - type: ReinforcedWindow - components: - - pos: 31.5,-19.5 - parent: 0 - type: Transform -- uid: 13778 - type: ReinforcedWindow - components: - - pos: 31.5,-20.5 - parent: 0 - type: Transform -- uid: 13779 - type: WallReinforced - components: - - pos: 29.5,-18.5 - parent: 0 - type: Transform -- uid: 13780 - type: WallReinforced - components: - - pos: 27.5,-18.5 - parent: 0 - type: Transform -- uid: 13781 - type: WallReinforced - components: - - pos: 26.5,-18.5 - parent: 0 - type: Transform -- uid: 13782 - type: WallReinforced - components: - - pos: 26.5,-21.5 - parent: 0 - type: Transform -- uid: 13783 - type: WallReinforced - components: - - pos: 26.5,-22.5 - parent: 0 - type: Transform -- uid: 13784 - type: WallReinforced - components: - - pos: 26.5,-23.5 - parent: 0 - type: Transform -- uid: 13785 - type: WallReinforced - components: - - pos: 26.5,-24.5 - parent: 0 - type: Transform -- uid: 13786 - type: WallSolid - components: - - pos: 31.5,-21.5 - parent: 0 - type: Transform -- uid: 13787 - type: WallSolid - components: - - pos: 31.5,-23.5 - parent: 0 - type: Transform -- uid: 13788 - type: WallSolid - components: - - pos: 31.5,-24.5 - parent: 0 - type: Transform -- uid: 13789 - type: WallSolid - components: - - pos: 32.5,-24.5 - parent: 0 - type: Transform -- uid: 13790 - type: WallSolid - components: - - pos: 36.5,-24.5 - parent: 0 - type: Transform -- uid: 13791 - type: WallSolid - components: - - pos: 31.5,-26.5 - parent: 0 - type: Transform -- uid: 13792 - type: WallSolid - components: - - pos: 36.5,-26.5 - parent: 0 - type: Transform -- uid: 13793 - type: Window - components: - - pos: 39.5,-24.5 - parent: 0 - type: Transform -- uid: 13794 - type: TintedWindow - components: - - pos: 31.5,-25.5 - parent: 0 - type: Transform -- uid: 13795 - type: TintedWindow - components: - - pos: 36.5,-25.5 - parent: 0 - type: Transform -- uid: 13796 - type: WallReinforced - components: - - pos: 36.5,-27.5 - parent: 0 - type: Transform -- uid: 13797 - type: WallReinforced - components: - - pos: 35.5,-27.5 - parent: 0 - type: Transform -- uid: 13798 - type: WallReinforced - components: - - pos: 34.5,-27.5 - parent: 0 - type: Transform -- uid: 13799 - type: WallReinforced - components: - - pos: 33.5,-27.5 - parent: 0 - type: Transform -- uid: 13800 - type: WallReinforced - components: - - pos: 32.5,-27.5 - parent: 0 - type: Transform -- uid: 13801 - type: WallReinforced - components: - - pos: 31.5,-27.5 - parent: 0 - type: Transform -- uid: 13802 - type: WallReinforced - components: - - pos: 30.5,-27.5 - parent: 0 - type: Transform -- uid: 13803 - type: WallReinforced - components: - - pos: 30.5,-28.5 - parent: 0 - type: Transform -- uid: 13804 - type: WallReinforced - components: - - pos: 29.5,-28.5 - parent: 0 - type: Transform -- uid: 13805 - type: WallReinforced - components: - - pos: 28.5,-28.5 - parent: 0 - type: Transform -- uid: 13806 - type: WallReinforced - components: - - pos: 27.5,-28.5 - parent: 0 - type: Transform -- uid: 13807 - type: WallReinforced - components: - - pos: 26.5,-28.5 - parent: 0 - type: Transform -- uid: 13808 - type: WallReinforced - components: - - pos: 26.5,-26.5 - parent: 0 - type: Transform -- uid: 13809 - type: WallReinforced - components: - - pos: 26.5,-27.5 - parent: 0 - type: Transform -- uid: 13810 - type: WallReinforced - components: - - pos: 50.5,-28.5 - parent: 0 - type: Transform -- uid: 13811 - type: WallReinforced - components: - - pos: 46.5,-28.5 - parent: 0 - type: Transform -- uid: 13812 - type: ReinforcedWindow - components: - - pos: 44.5,-28.5 - parent: 0 - type: Transform -- uid: 13813 - type: ReinforcedWindow - components: - - pos: 51.5,-28.5 - parent: 0 - type: Transform -- uid: 13814 - type: ReinforcedWindow - components: - - pos: 40.5,-29.5 - parent: 0 - type: Transform -- uid: 13815 - type: ReinforcedWindow - components: - - pos: 40.5,-30.5 - parent: 0 - type: Transform -- uid: 13816 - type: WallSolid - components: - - pos: 40.5,-31.5 - parent: 0 - type: Transform -- uid: 13817 - type: WallReinforced - components: - - pos: 30.5,-29.5 - parent: 0 - type: Transform -- uid: 13818 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-31.5 - parent: 0 - type: Transform -- uid: 13819 - type: ReinforcedWindow - components: - - pos: 42.5,-28.5 - parent: 0 - type: Transform -- uid: 13820 - type: ReinforcedWindow - components: - - pos: 43.5,-28.5 - parent: 0 - type: Transform -- uid: 13821 - type: WallSolid - components: - - pos: 41.5,-28.5 - parent: 0 - type: Transform -- uid: 13822 - type: WallReinforced - components: - - pos: 30.5,-30.5 - parent: 0 - type: Transform -- uid: 13823 - type: WallReinforced - components: - - pos: 30.5,-31.5 - parent: 0 - type: Transform -- uid: 13824 - type: WallReinforced - components: - - pos: 30.5,-32.5 - parent: 0 - type: Transform -- uid: 13825 - type: WallReinforced - components: - - pos: 31.5,-32.5 - parent: 0 - type: Transform -- uid: 13826 - type: WallReinforced - components: - - pos: 32.5,-32.5 - parent: 0 - type: Transform -- uid: 13827 - type: WallReinforced - components: - - pos: 33.5,-32.5 - parent: 0 - type: Transform -- uid: 13828 - type: WallReinforced - components: - - pos: 34.5,-32.5 - parent: 0 - type: Transform -- uid: 13829 - type: WallReinforced - components: - - pos: 35.5,-32.5 - parent: 0 - type: Transform -- uid: 13830 - type: WallReinforced - components: - - pos: 36.5,-32.5 - parent: 0 - type: Transform -- uid: 13831 - type: WallReinforced - components: - - pos: 36.5,-28.5 - parent: 0 - type: Transform -- uid: 13832 - type: ReinforcedWindow - components: - - pos: 33.5,-29.5 - parent: 0 - type: Transform -- uid: 13833 - type: ReinforcedWindow - components: - - pos: 33.5,-28.5 - parent: 0 - type: Transform -- uid: 13834 - type: TintedWindow - components: - - pos: 36.5,-31.5 - parent: 0 - type: Transform -- uid: 13835 - type: TintedWindow - components: - - pos: 36.5,-29.5 - parent: 0 - type: Transform -- uid: 13836 - type: WallReinforced - components: - - pos: 33.5,-31.5 - parent: 0 - type: Transform -- uid: 13837 - type: ReinforcedWindow - components: - - pos: 46.5,-30.5 - parent: 0 - type: Transform -- uid: 13838 - type: WallReinforced - components: - - pos: 40.5,-28.5 - parent: 0 - type: Transform -- uid: 13839 - type: ReinforcedWindow - components: - - pos: 46.5,-29.5 - parent: 0 - type: Transform -- uid: 13840 - type: MachineAnomalyGenerator - components: - - pos: 43.5,-31.5 - parent: 0 - type: Transform - - enabled: False - type: AmbientSound -- uid: 13841 - type: WallSolid - components: - - pos: 45.5,-28.5 - parent: 0 - type: Transform -- uid: 13842 - type: WallSolid - components: - - pos: 40.5,-32.5 - parent: 0 - type: Transform -- uid: 13843 - type: WallSolid - components: - - pos: 40.5,-33.5 - parent: 0 - type: Transform -- uid: 13844 - type: WallSolid - components: - - pos: 40.5,-34.5 - parent: 0 - type: Transform -- uid: 13845 - type: WallReinforced - components: - - pos: 53.5,-28.5 - parent: 0 - type: Transform -- uid: 13846 - type: WallReinforced - components: - - pos: 54.5,-28.5 - parent: 0 - type: Transform -- uid: 13847 - type: ReinforcedWindow - components: - - pos: 54.5,-26.5 - parent: 0 - type: Transform -- uid: 13848 - type: ReinforcedWindow - components: - - pos: 54.5,-27.5 - parent: 0 - type: Transform -- uid: 13849 - type: WallReinforced - components: - - pos: 50.5,-29.5 - parent: 0 - type: Transform -- uid: 13850 - type: WallReinforced - components: - - pos: 50.5,-30.5 - parent: 0 - type: Transform -- uid: 13851 - type: WallReinforced - components: - - pos: 50.5,-31.5 - parent: 0 - type: Transform -- uid: 13852 - type: WallReinforced - components: - - pos: 50.5,-34.5 - parent: 0 - type: Transform -- uid: 13853 - type: WallReinforced - components: - - pos: 50.5,-35.5 - parent: 0 - type: Transform -- uid: 13854 - type: WallReinforced - components: - - pos: 50.5,-36.5 - parent: 0 - type: Transform -- uid: 13855 - type: WallReinforced - components: - - pos: 51.5,-36.5 - parent: 0 - type: Transform -- uid: 13856 - type: WallReinforced - components: - - pos: 52.5,-36.5 - parent: 0 - type: Transform -- uid: 13857 - type: WallReinforced - components: - - pos: 53.5,-36.5 - parent: 0 - type: Transform -- uid: 13858 - type: WallReinforced - components: - - pos: 54.5,-36.5 - parent: 0 - type: Transform -- uid: 13859 - type: ReinforcedWindow - components: - - pos: 55.5,-36.5 - parent: 0 - type: Transform -- uid: 13860 - type: ReinforcedWindow - components: - - pos: 50.5,-32.5 - parent: 0 - type: Transform -- uid: 13861 - type: WallReinforced - components: - - pos: 57.5,-36.5 - parent: 0 - type: Transform -- uid: 13862 - type: WallReinforced - components: - - pos: 58.5,-36.5 - parent: 0 - type: Transform -- uid: 13863 - type: WallReinforced - components: - - pos: 58.5,-35.5 - parent: 0 - type: Transform -- uid: 13864 - type: WallReinforced - components: - - pos: 58.5,-34.5 - parent: 0 - type: Transform -- uid: 13865 - type: WallReinforced - components: - - pos: 59.5,-34.5 - parent: 0 - type: Transform -- uid: 13866 - type: WallReinforced - components: - - pos: 60.5,-34.5 - parent: 0 - type: Transform -- uid: 13867 - type: WallReinforced - components: - - pos: 61.5,-34.5 - parent: 0 - type: Transform -- uid: 13868 - type: WallReinforced - components: - - pos: 62.5,-34.5 - parent: 0 - type: Transform -- uid: 13869 - type: WallReinforced - components: - - pos: 63.5,-34.5 - parent: 0 - type: Transform -- uid: 13870 - type: WallReinforced - components: - - pos: 63.5,-32.5 - parent: 0 - type: Transform -- uid: 13871 - type: WallReinforced - components: - - pos: 63.5,-31.5 - parent: 0 - type: Transform -- uid: 13872 - type: WallReinforced - components: - - pos: 63.5,-30.5 - parent: 0 - type: Transform -- uid: 13873 - type: WallReinforced - components: - - pos: 63.5,-29.5 - parent: 0 - type: Transform -- uid: 13874 - type: WallReinforced - components: - - pos: 63.5,-28.5 - parent: 0 - type: Transform -- uid: 13875 - type: WallReinforced - components: - - pos: 63.5,-27.5 - parent: 0 - type: Transform -- uid: 13876 - type: WallReinforced - components: - - pos: 63.5,-26.5 - parent: 0 - type: Transform -- uid: 13877 - type: WallReinforced - components: - - pos: 63.5,-25.5 - parent: 0 - type: Transform -- uid: 13878 - type: WallReinforced - components: - - pos: 62.5,-25.5 - parent: 0 - type: Transform -- uid: 13879 - type: WallReinforced - components: - - pos: 61.5,-25.5 - parent: 0 - type: Transform -- uid: 13880 - type: WallReinforced - components: - - pos: 60.5,-25.5 - parent: 0 - type: Transform -- uid: 13881 - type: WallReinforced - components: - - pos: 59.5,-25.5 - parent: 0 - type: Transform -- uid: 13882 - type: WallReinforced - components: - - pos: 58.5,-25.5 - parent: 0 - type: Transform -- uid: 13883 - type: WallReinforced - components: - - pos: 62.5,-28.5 - parent: 0 - type: Transform -- uid: 13884 - type: WallReinforced - components: - - pos: 59.5,-28.5 - parent: 0 - type: Transform -- uid: 13885 - type: WallReinforced - components: - - pos: 60.5,-28.5 - parent: 0 - type: Transform -- uid: 13886 - type: WallReinforced - components: - - pos: 59.5,-31.5 - parent: 0 - type: Transform -- uid: 13887 - type: WallReinforced - components: - - pos: 66.5,-32.5 - parent: 0 - type: Transform -- uid: 13888 - type: WallReinforced - components: - - pos: 66.5,-31.5 - parent: 0 - type: Transform -- uid: 13889 - type: WallReinforced - components: - - pos: 63.5,-35.5 - parent: 0 - type: Transform -- uid: 13890 - type: WallReinforced - components: - - pos: 66.5,-34.5 - parent: 0 - type: Transform -- uid: 13891 - type: WallReinforced - components: - - pos: 66.5,-35.5 - parent: 0 - type: Transform -- uid: 13892 - type: WallReinforced - components: - - pos: 66.5,-30.5 - parent: 0 - type: Transform -- uid: 13893 - type: WallReinforced - components: - - pos: 66.5,-29.5 - parent: 0 - type: Transform -- uid: 13894 - type: WallReinforced - components: - - pos: 66.5,-28.5 - parent: 0 - type: Transform -- uid: 13895 - type: WallReinforced - components: - - pos: 66.5,-27.5 - parent: 0 - type: Transform -- uid: 13896 - type: WallReinforced - components: - - pos: 66.5,-26.5 - parent: 0 - type: Transform -- uid: 13897 - type: WallReinforced - components: - - pos: 66.5,-25.5 - parent: 0 - type: Transform -- uid: 13898 - type: WallReinforced - components: - - pos: 66.5,-24.5 - parent: 0 - type: Transform -- uid: 13899 - type: WallReinforced - components: - - pos: 66.5,-22.5 - parent: 0 - type: Transform -- uid: 13900 - type: WallReinforced - components: - - pos: 66.5,-23.5 - parent: 0 - type: Transform -- uid: 13901 - type: WallReinforced - components: - - pos: 65.5,-22.5 - parent: 0 - type: Transform -- uid: 13902 - type: WallReinforced - components: - - pos: 63.5,-22.5 - parent: 0 - type: Transform -- uid: 13903 - type: WallReinforced - components: - - pos: 62.5,-22.5 - parent: 0 - type: Transform -- uid: 13904 - type: WallReinforced - components: - - pos: 61.5,-22.5 - parent: 0 - type: Transform -- uid: 13905 - type: WallReinforced - components: - - pos: 61.5,-21.5 - parent: 0 - type: Transform -- uid: 13906 - type: WallReinforced - components: - - pos: 61.5,-20.5 - parent: 0 - type: Transform -- uid: 13907 - type: WallReinforced - components: - - pos: 61.5,-19.5 - parent: 0 - type: Transform -- uid: 13908 - type: WallReinforced - components: - - pos: 61.5,-18.5 - parent: 0 - type: Transform -- uid: 13909 - type: WallReinforced - components: - - pos: 61.5,-17.5 - parent: 0 - type: Transform -- uid: 13910 - type: WallReinforced - components: - - pos: 61.5,-16.5 - parent: 0 - type: Transform -- uid: 13911 - type: WallReinforced - components: - - pos: 62.5,-16.5 - parent: 0 - type: Transform -- uid: 13912 - type: WallReinforced - components: - - pos: 62.5,-15.5 - parent: 0 - type: Transform -- uid: 13913 - type: WallReinforced - components: - - pos: 61.5,-13.5 - parent: 0 - type: Transform -- uid: 13914 - type: WallReinforced - components: - - pos: 62.5,-13.5 - parent: 0 - type: Transform -- uid: 13915 - type: WallReinforced - components: - - pos: 57.5,-14.5 - parent: 0 - type: Transform -- uid: 13916 - type: ReinforcedPlasmaWindow - components: - - pos: 59.5,-32.5 - parent: 0 - type: Transform -- uid: 13917 - type: ReinforcedPlasmaWindow - components: - - pos: 59.5,-33.5 - parent: 0 - type: Transform -- uid: 13918 - type: ReinforcedPlasmaWindow - components: - - pos: 63.5,-33.5 - parent: 0 - type: Transform -- uid: 13919 - type: ReinforcedPlasmaWindow - components: - - pos: 59.5,-30.5 - parent: 0 - type: Transform -- uid: 13920 - type: ReinforcedPlasmaWindow - components: - - pos: 59.5,-29.5 - parent: 0 - type: Transform -- uid: 13921 - type: ReinforcedWindow - components: - - pos: 59.5,-27.5 - parent: 0 - type: Transform -- uid: 13922 - type: ReinforcedPlasmaWindow - components: - - pos: 66.5,-33.5 - parent: 0 - type: Transform -- uid: 13923 - type: ReinforcedWindow - components: - - pos: 49.5,-36.5 - parent: 0 - type: Transform -- uid: 13924 - type: ReinforcedWindow - components: - - pos: 47.5,-36.5 - parent: 0 - type: Transform -- uid: 13925 - type: WallReinforced - components: - - pos: 46.5,-36.5 - parent: 0 - type: Transform -- uid: 13926 - type: WallReinforced - components: - - pos: 46.5,-37.5 - parent: 0 - type: Transform -- uid: 13927 - type: WallReinforced - components: - - pos: 46.5,-38.5 - parent: 0 - type: Transform -- uid: 13928 - type: WallReinforced - components: - - pos: 46.5,-39.5 - parent: 0 - type: Transform -- uid: 13929 - type: WallReinforced - components: - - pos: 46.5,-40.5 - parent: 0 - type: Transform -- uid: 13930 - type: WallReinforced - components: - - pos: 46.5,-41.5 - parent: 0 - type: Transform -- uid: 13931 - type: WallReinforced - components: - - pos: 46.5,-42.5 - parent: 0 - type: Transform -- uid: 13932 - type: WallReinforced - components: - - pos: 46.5,-43.5 - parent: 0 - type: Transform -- uid: 13933 - type: WallReinforced - components: - - pos: 46.5,-44.5 - parent: 0 - type: Transform -- uid: 13934 - type: WallReinforced - components: - - pos: 54.5,-37.5 - parent: 0 - type: Transform -- uid: 13935 - type: WallReinforced - components: - - pos: 54.5,-38.5 - parent: 0 - type: Transform -- uid: 13936 - type: WallReinforced - components: - - pos: 54.5,-39.5 - parent: 0 - type: Transform -- uid: 13937 - type: WallReinforced - components: - - pos: 54.5,-40.5 - parent: 0 - type: Transform -- uid: 13938 - type: WallReinforced - components: - - pos: 53.5,-40.5 - parent: 0 - type: Transform -- uid: 13939 - type: WallReinforced - components: - - pos: 54.5,-41.5 - parent: 0 - type: Transform -- uid: 13940 - type: WallReinforced - components: - - pos: 54.5,-42.5 - parent: 0 - type: Transform -- uid: 13941 - type: WallReinforced - components: - - pos: 54.5,-43.5 - parent: 0 - type: Transform -- uid: 13942 - type: WallReinforced - components: - - pos: 54.5,-44.5 - parent: 0 - type: Transform -- uid: 13943 - type: WallReinforced - components: - - pos: 53.5,-44.5 - parent: 0 - type: Transform -- uid: 13944 - type: WallReinforced - components: - - pos: 52.5,-44.5 - parent: 0 - type: Transform -- uid: 13945 - type: WallReinforced - components: - - pos: 51.5,-44.5 - parent: 0 - type: Transform -- uid: 13946 - type: WallReinforced - components: - - pos: 50.5,-44.5 - parent: 0 - type: Transform -- uid: 13947 - type: WallReinforced - components: - - pos: 49.5,-44.5 - parent: 0 - type: Transform -- uid: 13948 - type: WallReinforced - components: - - pos: 48.5,-44.5 - parent: 0 - type: Transform -- uid: 13949 - type: WallReinforced - components: - - pos: 47.5,-44.5 - parent: 0 - type: Transform -- uid: 13950 - type: WallSolid - components: - - pos: 52.5,-40.5 - parent: 0 - type: Transform -- uid: 13951 - type: WallSolid - components: - - pos: 51.5,-40.5 - parent: 0 - type: Transform -- uid: 13952 - type: WallSolid - components: - - pos: 51.5,-39.5 - parent: 0 - type: Transform -- uid: 13953 - type: TintedWindow - components: - - pos: 51.5,-37.5 - parent: 0 - type: Transform -- uid: 13954 - type: WallSolid - components: - - pos: 46.5,-35.5 - parent: 0 - type: Transform -- uid: 13955 - type: WallSolid - components: - - pos: 46.5,-33.5 - parent: 0 - type: Transform -- uid: 13956 - type: WallSolid - components: - - pos: 46.5,-31.5 - parent: 0 - type: Transform -- uid: 13957 - type: WallSolid - components: - - pos: 46.5,-32.5 - parent: 0 - type: Transform -- uid: 13958 - type: WallReinforced - components: - - pos: 45.5,-40.5 - parent: 0 - type: Transform -- uid: 13959 - type: WallReinforced - components: - - pos: 44.5,-40.5 - parent: 0 - type: Transform -- uid: 13960 - type: WallReinforced - components: - - pos: 43.5,-40.5 - parent: 0 - type: Transform -- uid: 13961 - type: WallReinforced - components: - - pos: 42.5,-40.5 - parent: 0 - type: Transform -- uid: 13962 - type: WallReinforced - components: - - pos: 41.5,-40.5 - parent: 0 - type: Transform -- uid: 13963 - type: WallReinforced - components: - - pos: 40.5,-40.5 - parent: 0 - type: Transform -- uid: 13964 - type: WallReinforced - components: - - pos: 39.5,-40.5 - parent: 0 - type: Transform -- uid: 13965 - type: WallReinforced - components: - - pos: 37.5,-40.5 - parent: 0 - type: Transform -- uid: 13966 - type: WallReinforced - components: - - pos: 36.5,-40.5 - parent: 0 - type: Transform -- uid: 13967 - type: ReinforcedWindow - components: - - pos: 36.5,-39.5 - parent: 0 - type: Transform -- uid: 13968 - type: ReinforcedWindow - components: - - pos: 36.5,-37.5 - parent: 0 - type: Transform -- uid: 13969 - type: WallReinforced - components: - - pos: 36.5,-36.5 - parent: 0 - type: Transform -- uid: 13970 - type: WallReinforced - components: - - pos: 35.5,-36.5 - parent: 0 - type: Transform -- uid: 13971 - type: WallReinforced - components: - - pos: 34.5,-36.5 - parent: 0 - type: Transform -- uid: 13972 - type: WallReinforced - components: - - pos: 33.5,-36.5 - parent: 0 - type: Transform -- uid: 13973 - type: WallReinforced - components: - - pos: 32.5,-36.5 - parent: 0 - type: Transform -- uid: 13974 - type: WallReinforced - components: - - pos: 31.5,-36.5 - parent: 0 - type: Transform -- uid: 13975 - type: WallReinforced - components: - - pos: 30.5,-36.5 - parent: 0 - type: Transform -- uid: 13976 - type: WallReinforced - components: - - pos: 27.5,-35.5 - parent: 0 - type: Transform -- uid: 13977 - type: WallReinforced - components: - - pos: 27.5,-34.5 - parent: 0 - type: Transform -- uid: 13978 - type: WallReinforced - components: - - pos: 27.5,-33.5 - parent: 0 - type: Transform -- uid: 13979 - type: WallReinforced - components: - - pos: 27.5,-32.5 - parent: 0 - type: Transform -- uid: 13980 - type: WallReinforced - components: - - pos: 28.5,-32.5 - parent: 0 - type: Transform -- uid: 13981 - type: WallReinforced - components: - - pos: 29.5,-32.5 - parent: 0 - type: Transform -- uid: 13982 - type: WallSolid - components: - - pos: 35.5,-40.5 - parent: 0 - type: Transform -- uid: 13983 - type: WallSolid - components: - - pos: 34.5,-40.5 - parent: 0 - type: Transform -- uid: 13984 - type: WallSolid - components: - - pos: 33.5,-40.5 - parent: 0 - type: Transform -- uid: 13985 - type: WallSolid - components: - - pos: 32.5,-40.5 - parent: 0 - type: Transform -- uid: 13986 - type: WallSolid - components: - - pos: 31.5,-40.5 - parent: 0 - type: Transform -- uid: 13987 - type: WallSolid - components: - - pos: 30.5,-40.5 - parent: 0 - type: Transform -- uid: 13988 - type: WallSolid - components: - - pos: 29.5,-40.5 - parent: 0 - type: Transform -- uid: 13989 - type: WallReinforced - components: - - pos: 28.5,-39.5 - parent: 0 - type: Transform -- uid: 13990 - type: WallReinforced - components: - - pos: 40.5,-36.5 - parent: 0 - type: Transform -- uid: 13991 - type: WallSolid - components: - - pos: 45.5,-36.5 - parent: 0 - type: Transform -- uid: 13992 - type: ReinforcedWindow - components: - - pos: 40.5,-39.5 - parent: 0 - type: Transform -- uid: 13993 - type: ReinforcedWindow - components: - - pos: 42.5,-36.5 - parent: 0 - type: Transform -- uid: 13994 - type: WallSolid - components: - - pos: 41.5,-36.5 - parent: 0 - type: Transform -- uid: 13995 - type: ReinforcedWindow - components: - - pos: 40.5,-37.5 - parent: 0 - type: Transform -- uid: 13996 - type: ReinforcedWindow - components: - - pos: 44.5,-36.5 - parent: 0 - type: Transform -- uid: 13997 - type: WindoorScienceLocked - components: - - rot: 3.141592653589793 rad - pos: 43.5,-36.5 - parent: 0 - type: Transform -- uid: 13998 - type: TintedWindow - components: - - pos: 36.5,-35.5 - parent: 0 - type: Transform -- uid: 13999 - type: TintedWindow - components: - - pos: 36.5,-33.5 - parent: 0 - type: Transform -- uid: 14000 - type: VendingMachineRoboDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,-27.5 - parent: 0 - type: Transform -- uid: 14001 - type: WeldingFuelTankFull - components: - - pos: 29.5,-27.5 - parent: 0 - type: Transform -- uid: 14002 - type: Catwalk - components: - - pos: 41.5,-31.5 - parent: 0 - type: Transform -- uid: 14003 - type: Catwalk - components: - - pos: 41.5,-30.5 - parent: 0 - type: Transform -- uid: 14004 - type: Catwalk - components: - - pos: 41.5,-29.5 - parent: 0 - type: Transform -- uid: 14005 - type: Catwalk - components: - - pos: 45.5,-31.5 - parent: 0 - type: Transform -- uid: 14006 - type: Catwalk - components: - - pos: 45.5,-30.5 - parent: 0 - type: Transform -- uid: 14007 - type: Catwalk - components: - - pos: 45.5,-29.5 - parent: 0 - type: Transform -- uid: 14008 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14009 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14010 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14011 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14012 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14013 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14014 - type: GasPipeTJunction - components: - - pos: 29.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14015 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14016 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14017 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14018 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14019 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14020 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14021 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14022 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14023 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14024 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14025 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 43.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14026 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14027 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14028 - type: GasPipeFourway - components: - - pos: 25.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14029 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14030 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14031 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14032 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14033 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 32.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14034 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14035 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14036 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14037 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14038 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14039 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14040 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14041 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14042 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14043 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14044 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14045 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 41.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14046 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14047 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14048 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14049 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14050 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14051 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14052 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 56.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14053 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 54.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14054 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14055 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14056 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14057 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14058 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14059 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14060 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14061 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14062 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14063 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14064 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14065 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14066 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14067 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14068 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14069 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14070 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14071 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14072 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14073 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14074 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14075 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 47.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14076 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14077 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14078 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14079 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14080 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14081 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14082 - type: GasPipeStraight - components: - - pos: 54.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14083 - type: GasPipeStraight - components: - - pos: 54.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14084 - type: GasPipeStraight - components: - - pos: 54.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14085 - type: GasPipeStraight - components: - - pos: 54.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14086 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14087 - type: GasPipeStraight - components: - - pos: 54.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14088 - type: GasPipeStraight - components: - - pos: 54.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14089 - type: GasPipeStraight - components: - - pos: 54.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14090 - type: GasPipeStraight - components: - - pos: 56.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14091 - type: GasPipeStraight - components: - - pos: 56.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14092 - type: GasPipeStraight - components: - - pos: 56.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14093 - type: GasPipeStraight - components: - - pos: 56.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14094 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14095 - type: GasPipeStraight - components: - - pos: 56.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14096 - type: GasPipeStraight - components: - - pos: 56.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14097 - type: GasPipeStraight - components: - - pos: 56.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14098 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14099 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14100 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14101 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14102 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14103 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 50.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14104 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14105 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14106 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14107 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14108 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14109 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14110 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14111 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14112 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14113 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14114 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14115 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14116 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14117 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14118 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14119 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14120 - type: GasPipeTJunction - components: - - pos: 47.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14121 - type: GasPipeTJunction - components: - - pos: 45.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14122 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 45.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14123 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14124 - type: GasPipeTJunction - components: - - pos: 50.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14125 - type: GasPipeTJunction - components: - - pos: 52.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14126 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14127 - type: GasPipeFourway - components: - - pos: 47.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14128 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14129 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14130 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14131 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14132 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14133 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14134 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14135 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14136 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14137 - type: GasPipeFourway - components: - - pos: 42.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14138 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14139 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14140 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14141 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14142 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14143 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14144 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14145 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14146 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14147 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14148 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14149 - type: GasPipeTJunction - components: - - pos: 49.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14150 - type: GasPipeStraight - components: - - pos: 50.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14151 - type: GasPipeStraight - components: - - pos: 50.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14152 - type: GasPipeStraight - components: - - pos: 50.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14153 - type: GasPipeStraight - components: - - pos: 50.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14154 - type: GasPipeStraight - components: - - pos: 50.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14155 - type: GasPipeStraight - components: - - pos: 50.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14156 - type: GasPipeStraight - components: - - pos: 50.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14157 - type: GasPipeStraight - components: - - pos: 50.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14158 - type: GasPipeStraight - components: - - pos: 50.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14159 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14160 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14161 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14162 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14163 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14164 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14165 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14166 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14167 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14168 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14169 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14170 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14171 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14172 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14173 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14174 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14175 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14176 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14177 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14178 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14179 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14180 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14181 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14182 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14183 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 43.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14184 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14185 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14186 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14187 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14188 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14189 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 41.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14190 - type: GasPipeTJunction - components: - - pos: 42.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14191 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14192 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14193 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14194 - type: GasPipeStraight - components: - - pos: 47.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14195 - type: GasPipeStraight - components: - - pos: 47.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14196 - type: GasPipeStraight - components: - - pos: 47.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14197 - type: GasPipeStraight - components: - - pos: 47.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14198 - type: GasPipeFourway - components: - - pos: 49.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14199 - type: GasPipeStraight - components: - - pos: 47.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14200 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14201 - type: GasPipeStraight - components: - - pos: 47.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14202 - type: GasPipeStraight - components: - - pos: 47.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14203 - type: GasPipeStraight - components: - - pos: 47.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14204 - type: GasPipeStraight - components: - - pos: 47.5,-38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14205 - type: GasPipeStraight - components: - - pos: 47.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14206 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14207 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14208 - type: GasPipeStraight - components: - - pos: 39.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14209 - type: GasPipeStraight - components: - - pos: 39.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14210 - type: GasPipeStraight - components: - - pos: 39.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14211 - type: GasPipeStraight - components: - - pos: 39.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14212 - type: GasPipeStraight - components: - - pos: 39.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14213 - type: GasPipeStraight - components: - - pos: 39.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14214 - type: GasPipeStraight - components: - - pos: 37.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14215 - type: GasPipeStraight - components: - - pos: 37.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14216 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14217 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14218 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14219 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14220 - type: GasPipeTJunction - components: - - pos: 32.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14221 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14222 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 30.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14223 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14224 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14225 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14226 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14227 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14228 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14229 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14230 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14231 - type: GasPipeTJunction - components: - - pos: 28.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14232 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14233 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14234 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14235 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14236 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14237 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14238 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14239 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14240 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14241 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14242 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14243 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14244 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14245 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14246 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14247 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14248 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14249 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14250 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14251 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14252 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14253 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14254 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 37.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14255 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14256 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14257 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14258 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14259 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14260 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14261 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14262 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14263 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14264 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14265 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14266 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14267 - type: GasPipeStraight - components: - - pos: 49.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14268 - type: GasPipeStraight - components: - - pos: 49.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14269 - type: GasPipeStraight - components: - - pos: 49.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14270 - type: GasPipeStraight - components: - - pos: 49.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14271 - type: GasPipeStraight - components: - - pos: 49.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14272 - type: GasPipeStraight - components: - - pos: 49.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14273 - type: GasPipeStraight - components: - - pos: 49.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14274 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14275 - type: GasPipeStraight - components: - - pos: 49.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14276 - type: GasPipeStraight - components: - - pos: 49.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14277 - type: GasPipeStraight - components: - - pos: 49.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14278 - type: GasPipeStraight - components: - - pos: 49.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14279 - type: GasPipeStraight - components: - - pos: 49.5,-38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14280 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14281 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14282 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 48.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14283 - type: GasVentScrubber - components: - - pos: 48.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14284 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14285 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14286 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14287 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14288 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14289 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14290 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14291 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14292 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14293 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14294 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14295 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14296 - type: GasPipeStraight - components: - - pos: 56.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14297 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14298 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14299 - type: GasVentScrubber - components: - - pos: 56.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14300 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14301 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14302 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14303 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14304 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14305 - type: GasPipeBend - components: - - pos: 43.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14306 - type: GasPipeStraight - components: - - pos: 42.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14307 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 42.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14308 - type: GasPipeStraight - components: - - pos: 42.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14309 - type: GasPipeStraight - components: - - pos: 42.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14310 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14311 - type: GasPipeStraight - components: - - pos: 42.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14312 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 42.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14313 - type: GasVentPump - components: - - pos: 41.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14314 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14315 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14316 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14317 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14318 - type: GasPipeTJunction - components: - - pos: 35.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14319 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14320 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14321 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14322 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 35.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14323 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 32.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 14324 - type: GasThermoMachineFreezer - components: - - pos: 32.5,-28.5 - parent: 0 - type: Transform -- uid: 14325 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14326 - type: GasPipeTJunction - components: - - pos: 38.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14327 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14328 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14329 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14330 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14331 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 38.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14332 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14333 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 42.5,-38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14334 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14335 - type: GasPipeStraight - components: - - pos: 44.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14336 - type: GasPipeStraight - components: - - pos: 44.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14337 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14338 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14339 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14340 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14341 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14342 - type: GasVentPump - components: - - pos: 42.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14343 - type: GasVentScrubber - components: - - pos: 44.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14344 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14345 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 44.5,-38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14346 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14347 - type: GasPipeTJunction - components: - - pos: 38.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14348 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14349 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14350 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14351 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14352 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14353 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14354 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14355 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14356 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14357 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14358 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14359 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14360 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14361 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14362 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14363 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-18.5 - parent: 0 - type: Transform -- uid: 14364 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-17.5 - parent: 0 - type: Transform -- uid: 14365 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-15.5 - parent: 0 - type: Transform -- uid: 14366 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-13.5 - parent: 0 - type: Transform -- uid: 14367 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-21.5 - parent: 0 - type: Transform -- uid: 14368 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-24.5 - parent: 0 - type: Transform -- uid: 14369 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-20.5 - parent: 0 - type: Transform -- uid: 14370 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-19.5 - parent: 0 - type: Transform -- uid: 14371 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-25.5 - parent: 0 - type: Transform -- uid: 14372 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-25.5 - parent: 0 - type: Transform -- uid: 14373 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-9.5 - parent: 0 - type: Transform -- uid: 14374 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 0 - type: Transform -- uid: 14375 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-14.5 - parent: 0 - type: Transform -- uid: 14376 - type: AirlockCommandGlassLocked - components: - - name: Command Panic Bunker - type: MetaData - - pos: 29.5,-14.5 - parent: 0 - type: Transform -- uid: 14377 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-14.5 - parent: 0 - type: Transform -- uid: 14378 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-18.5 - parent: 0 - type: Transform -- uid: 14379 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-18.5 - parent: 0 - type: Transform -- uid: 14380 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-12.5 - parent: 0 - type: Transform -- uid: 14381 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-12.5 - parent: 0 - type: Transform -- uid: 14382 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-3.5 - parent: 0 - type: Transform -- uid: 14383 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-3.5 - parent: 0 - type: Transform -- uid: 14384 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-3.5 - parent: 0 - type: Transform -- uid: 14385 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-3.5 - parent: 0 - type: Transform -- uid: 14386 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-8.5 - parent: 0 - type: Transform -- uid: 14387 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-8.5 - parent: 0 - type: Transform -- uid: 14388 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-8.5 - parent: 0 - type: Transform -- uid: 14389 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-8.5 - parent: 0 - type: Transform -- uid: 14390 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-13.5 - parent: 0 - type: Transform -- uid: 14391 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-13.5 - parent: 0 - type: Transform -- uid: 14392 - type: Grille - components: - - pos: 55.5,-13.5 - parent: 0 - type: Transform -- uid: 14393 - type: Grille - components: - - pos: 49.5,-16.5 - parent: 0 - type: Transform -- uid: 14394 - type: Grille - components: - - pos: 51.5,-21.5 - parent: 0 - type: Transform -- uid: 14395 - type: Grille - components: - - pos: 44.5,-22.5 - parent: 0 - type: Transform -- uid: 14396 - type: Grille - components: - - pos: 41.5,-24.5 - parent: 0 - type: Transform -- uid: 14397 - type: Grille - components: - - pos: 41.5,-19.5 - parent: 0 - type: Transform -- uid: 14398 - type: Grille - components: - - pos: 43.5,-19.5 - parent: 0 - type: Transform -- uid: 14399 - type: Grille - components: - - pos: 39.5,-24.5 - parent: 0 - type: Transform -- uid: 14400 - type: Grille - components: - - pos: 36.5,-29.5 - parent: 0 - type: Transform -- uid: 14401 - type: Grille - components: - - pos: 36.5,-31.5 - parent: 0 - type: Transform -- uid: 14402 - type: Grille - components: - - pos: 33.5,-29.5 - parent: 0 - type: Transform -- uid: 14403 - type: Grille - components: - - pos: 33.5,-28.5 - parent: 0 - type: Transform -- uid: 14404 - type: Grille - components: - - pos: 40.5,-30.5 - parent: 0 - type: Transform -- uid: 14405 - type: Grille - components: - - pos: 40.5,-29.5 - parent: 0 - type: Transform -- uid: 14406 - type: Grille - components: - - pos: 42.5,-28.5 - parent: 0 - type: Transform -- uid: 14407 - type: Grille - components: - - pos: 43.5,-28.5 - parent: 0 - type: Transform -- uid: 14408 - type: Grille - components: - - pos: 44.5,-28.5 - parent: 0 - type: Transform -- uid: 14409 - type: Grille - components: - - pos: 46.5,-29.5 - parent: 0 - type: Transform -- uid: 14410 - type: Grille - components: - - pos: 46.5,-30.5 - parent: 0 - type: Transform -- uid: 14411 - type: Grille - components: - - pos: 36.5,-35.5 - parent: 0 - type: Transform -- uid: 14412 - type: Grille - components: - - pos: 36.5,-33.5 - parent: 0 - type: Transform -- uid: 14413 - type: Grille - components: - - pos: 36.5,-37.5 - parent: 0 - type: Transform -- uid: 14414 - type: Grille - components: - - pos: 36.5,-39.5 - parent: 0 - type: Transform -- uid: 14415 - type: Grille - components: - - pos: 40.5,-39.5 - parent: 0 - type: Transform -- uid: 14416 - type: Grille - components: - - pos: 40.5,-37.5 - parent: 0 - type: Transform -- uid: 14417 - type: Grille - components: - - pos: 42.5,-36.5 - parent: 0 - type: Transform -- uid: 14418 - type: Grille - components: - - pos: 44.5,-36.5 - parent: 0 - type: Transform -- uid: 14419 - type: Grille - components: - - pos: 47.5,-36.5 - parent: 0 - type: Transform -- uid: 14420 - type: Grille - components: - - pos: 49.5,-36.5 - parent: 0 - type: Transform -- uid: 14421 - type: Grille - components: - - pos: 51.5,-37.5 - parent: 0 - type: Transform -- uid: 14422 - type: Grille - components: - - pos: 50.5,-32.5 - parent: 0 - type: Transform -- uid: 14423 - type: Grille - components: - - pos: 55.5,-36.5 - parent: 0 - type: Transform -- uid: 14424 - type: Grille - components: - - pos: 66.5,-33.5 - parent: 0 - type: Transform -- uid: 14425 - type: Grille - components: - - pos: 59.5,-33.5 - parent: 0 - type: Transform -- uid: 14426 - type: Grille - components: - - pos: 63.5,-33.5 - parent: 0 - type: Transform -- uid: 14427 - type: Grille - components: - - pos: 59.5,-32.5 - parent: 0 - type: Transform -- uid: 14428 - type: Grille - components: - - pos: 59.5,-30.5 - parent: 0 - type: Transform -- uid: 14429 - type: Grille - components: - - pos: 59.5,-29.5 - parent: 0 - type: Transform -- uid: 14430 - type: Grille - components: - - pos: 59.5,-27.5 - parent: 0 - type: Transform -- uid: 14431 - type: AirlockMaintRnDLocked - components: - - pos: 57.5,-23.5 - parent: 0 - type: Transform -- uid: 14432 - type: AirlockMaintGlassLocked - components: - - pos: 54.5,-23.5 - parent: 0 - type: Transform -- uid: 14433 - type: FirelockGlass - components: - - pos: 47.5,-28.5 - parent: 0 - type: Transform -- uid: 14434 - type: FirelockGlass - components: - - pos: 48.5,-28.5 - parent: 0 - type: Transform -- uid: 14435 - type: FirelockGlass - components: - - pos: 49.5,-28.5 - parent: 0 - type: Transform -- uid: 14436 - type: FirelockGlass - components: - - pos: 37.5,-28.5 - parent: 0 - type: Transform -- uid: 14437 - type: FirelockGlass - components: - - pos: 38.5,-28.5 - parent: 0 - type: Transform -- uid: 14438 - type: FirelockGlass - components: - - pos: 39.5,-28.5 - parent: 0 - type: Transform -- uid: 14439 - type: FirelockGlass - components: - - pos: 37.5,-24.5 - parent: 0 - type: Transform -- uid: 14440 - type: FirelockGlass - components: - - pos: 38.5,-24.5 - parent: 0 - type: Transform -- uid: 14441 - type: FirelockGlass - components: - - pos: 50.5,-21.5 - parent: 0 - type: Transform -- uid: 14442 - type: FirelockGlass - components: - - pos: 52.5,-21.5 - parent: 0 - type: Transform -- uid: 14443 - type: FirelockGlass - components: - - pos: 54.5,-23.5 - parent: 0 - type: Transform -- uid: 14444 - type: FirelockGlass - components: - - pos: 49.5,-17.5 - parent: 0 - type: Transform -- uid: 14445 - type: FirelockGlass - components: - - pos: 49.5,-15.5 - parent: 0 - type: Transform -- uid: 14446 - type: FirelockGlass - components: - - pos: 53.5,-13.5 - parent: 0 - type: Transform -- uid: 14447 - type: FirelockGlass - components: - - pos: 38.5,-18.5 - parent: 0 - type: Transform -- uid: 14448 - type: FirelockGlass - components: - - pos: 59.5,-26.5 - parent: 0 - type: Transform -- uid: 14449 - type: AirSensor - components: - - pos: 48.5,-32.5 - parent: 0 - type: Transform -- uid: 14450 - type: AirSensor - components: - - pos: 46.5,-26.5 - parent: 0 - type: Transform -- uid: 14451 - type: AirSensor - components: - - pos: 38.5,-32.5 - parent: 0 - type: Transform -- uid: 14452 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14453 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14454 - type: WallSolid - components: - - pos: 48.5,-13.5 - parent: 0 - type: Transform -- uid: 14455 - type: WallSolid - components: - - pos: 47.5,-13.5 - parent: 0 - type: Transform -- uid: 14456 - type: WallSolid - components: - - pos: 46.5,-13.5 - parent: 0 - type: Transform -- uid: 14457 - type: WallSolid - components: - - pos: 45.5,-13.5 - parent: 0 - type: Transform -- uid: 14458 - type: WallSolid - components: - - pos: 45.5,-12.5 - parent: 0 - type: Transform -- uid: 14459 - type: WallSolid - components: - - pos: 51.5,-12.5 - parent: 0 - type: Transform -- uid: 14460 - type: MountainRock - components: - - pos: 46.5,-12.5 - parent: 0 - type: Transform -- uid: 14461 - type: MountainRock - components: - - pos: 47.5,-12.5 - parent: 0 - type: Transform -- uid: 14462 - type: MountainRock - components: - - pos: 48.5,-12.5 - parent: 0 - type: Transform -- uid: 14463 - type: MountainRock - components: - - pos: 49.5,-12.5 - parent: 0 - type: Transform -- uid: 14464 - type: MountainRock - components: - - pos: 50.5,-12.5 - parent: 0 - type: Transform -- uid: 14465 - type: Railing - components: - - pos: 46.5,-11.5 - parent: 0 - type: Transform -- uid: 14466 - type: Railing - components: - - pos: 47.5,-11.5 - parent: 0 - type: Transform -- uid: 14467 - type: Railing - components: - - pos: 48.5,-11.5 - parent: 0 - type: Transform -- uid: 14468 - type: Railing - components: - - pos: 49.5,-11.5 - parent: 0 - type: Transform -- uid: 14469 - type: Railing - components: - - pos: 50.5,-11.5 - parent: 0 - type: Transform -- uid: 14470 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-11.5 - parent: 0 - type: Transform -- uid: 14471 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: 45.5,-11.5 - parent: 0 - type: Transform -- uid: 14472 - type: FirelockGlass - components: - - pos: 41.5,-12.5 - parent: 0 - type: Transform -- uid: 14473 - type: FirelockGlass - components: - - pos: 42.5,-12.5 - parent: 0 - type: Transform -- uid: 14474 - type: FirelockGlass - components: - - pos: 43.5,-12.5 - parent: 0 - type: Transform -- uid: 14475 - type: FirelockGlass - components: - - pos: 35.5,-17.5 - parent: 0 - type: Transform -- uid: 14476 - type: FirelockGlass - components: - - pos: 35.5,-16.5 - parent: 0 - type: Transform -- uid: 14477 - type: FirelockGlass - components: - - pos: 35.5,-15.5 - parent: 0 - type: Transform -- uid: 14478 - type: FirelockGlass - components: - - pos: 26.5,-17.5 - parent: 0 - type: Transform -- uid: 14479 - type: FirelockGlass - components: - - pos: 26.5,-16.5 - parent: 0 - type: Transform -- uid: 14480 - type: FirelockGlass - components: - - pos: 26.5,-15.5 - parent: 0 - type: Transform -- uid: 14481 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14482 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14483 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14484 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14485 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14486 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 28.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14487 - type: GasVentScrubber - components: - - pos: 30.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14488 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 32.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14489 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14490 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14491 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 47.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14492 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14493 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14494 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14495 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14496 - type: GasPipeStraight - components: - - pos: 47.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14497 - type: GasPipeStraight - components: - - pos: 47.5,-40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14498 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14499 - type: WallSolidRust - components: - - pos: 63.5,-43.5 - parent: 0 - type: Transform -- uid: 14500 - type: WallReinforced - components: - - pos: 63.5,-37.5 - parent: 0 - type: Transform -- uid: 14501 - type: WallReinforced - components: - - pos: 63.5,-38.5 - parent: 0 - type: Transform -- uid: 14502 - type: WallReinforced - components: - - pos: 63.5,-39.5 - parent: 0 - type: Transform -- uid: 14503 - type: WallReinforced - components: - - pos: 63.5,-40.5 - parent: 0 - type: Transform -- uid: 14504 - type: WallReinforced - components: - - pos: 63.5,-41.5 - parent: 0 - type: Transform -- uid: 14505 - type: WallReinforced - components: - - pos: 55.5,-44.5 - parent: 0 - type: Transform -- uid: 14506 - type: WallReinforced - components: - - pos: 55.5,-42.5 - parent: 0 - type: Transform -- uid: 14507 - type: WallReinforced - components: - - pos: 57.5,-44.5 - parent: 0 - type: Transform -- uid: 14508 - type: WallReinforced - components: - - pos: 58.5,-44.5 - parent: 0 - type: Transform -- uid: 14509 - type: WallReinforced - components: - - pos: 58.5,-43.5 - parent: 0 - type: Transform -- uid: 14510 - type: WallReinforced - components: - - pos: 58.5,-42.5 - parent: 0 - type: Transform -- uid: 14511 - type: WallReinforced - components: - - pos: 57.5,-42.5 - parent: 0 - type: Transform -- uid: 14512 - type: WallReinforced - components: - - pos: 59.5,-43.5 - parent: 0 - type: Transform -- uid: 14513 - type: WallReinforced - components: - - pos: 60.5,-43.5 - parent: 0 - type: Transform -- uid: 14514 - type: WallReinforced - components: - - pos: 61.5,-43.5 - parent: 0 - type: Transform -- uid: 14515 - type: WallReinforced - components: - - pos: 62.5,-43.5 - parent: 0 - type: Transform -- uid: 14516 - type: WallReinforced - components: - - pos: 63.5,-42.5 - parent: 0 - type: Transform -- uid: 14517 - type: WallReinforced - components: - - pos: 58.5,-37.5 - parent: 0 - type: Transform -- uid: 14518 - type: WallReinforced - components: - - pos: 58.5,-38.5 - parent: 0 - type: Transform -- uid: 14519 - type: WallReinforced - components: - - pos: 58.5,-39.5 - parent: 0 - type: Transform -- uid: 14520 - type: WallReinforced - components: - - pos: 58.5,-40.5 - parent: 0 - type: Transform -- uid: 14521 - type: WallSolid - components: - - pos: 65.5,-35.5 - parent: 0 - type: Transform -- uid: 14522 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14523 - type: GasVentScrubber - components: - - pos: 42.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14524 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 29.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14525 - type: GasVentScrubber - components: - - pos: 32.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14526 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 24.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14527 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14528 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14529 - type: GasPipeStraight - components: - - pos: 50.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14530 - type: GasPipeStraight - components: - - pos: 50.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14531 - type: GasPipeStraight - components: - - pos: 50.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14532 - type: GasPipeStraight - components: - - pos: 50.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14533 - type: GasPipeStraight - components: - - pos: 50.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14534 - type: GasPipeStraight - components: - - pos: 50.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14535 - type: GasPipeStraight - components: - - pos: 50.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14536 - type: GasPipeStraight - components: - - pos: 47.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14537 - type: GasPipeStraight - components: - - pos: 47.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14538 - type: GasPipeStraight - components: - - pos: 47.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14539 - type: GasPipeStraight - components: - - pos: 47.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14540 - type: GasPipeStraight - components: - - pos: 47.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14541 - type: GasPipeStraight - components: - - pos: 47.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14542 - type: GasPipeStraight - components: - - pos: 47.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14543 - type: GasPipeTJunction - components: - - pos: 47.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14544 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14545 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14546 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14547 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14548 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14549 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14550 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 61.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14551 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14552 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14553 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14554 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14555 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14556 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14557 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14558 - type: GasPipeFourway - components: - - pos: 59.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14559 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 60.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14560 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14561 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14562 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14563 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14564 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14565 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14566 - type: FirelockGlass - components: - - pos: 40.5,-2.5 - parent: 0 - type: Transform -- uid: 14567 - type: FirelockGlass - components: - - pos: 40.5,-1.5 - parent: 0 - type: Transform -- uid: 14568 - type: FirelockGlass - components: - - pos: 40.5,-0.5 - parent: 0 - type: Transform -- uid: 14569 - type: FireAlarm - components: - - pos: 40.5,-24.5 - parent: 0 - type: Transform - - devices: - - 14440 - - 14439 - - 14436 - - 14437 - - 14438 - - 14433 - - 14434 - - 14435 - - 14442 - - 14441 - - 14450 - type: DeviceList -- uid: 14570 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-30.5 - parent: 0 - type: Transform - - devices: - - 14435 - - 14434 - - 14433 - - 14449 - type: DeviceList -- uid: 14571 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-28.5 - parent: 0 - type: Transform - - devices: - - 14604 - - 14448 - type: DeviceList -- uid: 14572 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-32.5 - parent: 0 - type: Transform - - devices: - - 14436 - - 14437 - - 14438 - - 14451 - type: DeviceList -- uid: 14573 - type: FireAlarm - components: - - pos: 35.5,-18.5 - parent: 0 - type: Transform -- uid: 14574 - type: FireAlarm - components: - - pos: 30.5,-14.5 - parent: 0 - type: Transform - - devices: - - 14478 - - 14479 - - 14480 - - 14475 - - 14476 - - 14477 - - 14587 - type: DeviceList -- uid: 14575 - type: FireAlarm - components: - - pos: 45.5,-13.5 - parent: 0 - type: Transform - - devices: - - 14475 - - 14476 - - 14477 - - 14472 - - 14473 - - 14474 - - 14445 - - 14444 - - 14602 - type: DeviceList -- uid: 14576 - type: FireAlarm - components: - - pos: 51.5,-13.5 - parent: 0 - type: Transform - - devices: - - 14446 - - 14445 - - 14444 - - 14603 - - 14441 - - 14442 - type: DeviceList -- uid: 14577 - type: AirAlarm - components: - - pos: 44.5,-24.5 - parent: 0 - type: Transform - - devices: - - 14312 - - 14315 - - 14440 - - 14439 - - 14436 - - 14437 - - 14438 - - 14433 - - 14434 - - 14435 - - 14442 - - 14441 - - 14450 - type: DeviceList -- uid: 14578 - type: AirAlarm - components: - - pos: 36.5,-18.5 - parent: 0 - type: Transform -- uid: 14579 - type: AirAlarm - components: - - pos: 28.5,-14.5 - parent: 0 - type: Transform - - devices: - - 14478 - - 14479 - - 14480 - - 14475 - - 14476 - - 14477 - - 14587 - - 14524 - - 14525 - type: DeviceList -- uid: 14580 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-12.5 - parent: 0 - type: Transform - - devices: - - 10115 - - 10114 - - 1435 - - 11838 - - 14478 - - 14479 - - 14480 - - 14586 - type: DeviceList -- uid: 14581 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-11.5 - parent: 0 - type: Transform - - devices: - - 10115 - - 10114 - - 1435 - - 11838 - - 14478 - - 14479 - - 14480 - - 14586 - - 14526 - - 14527 - type: DeviceList -- uid: 14582 - type: AirAlarm - components: - - pos: 15.5,-3.5 - parent: 0 - type: Transform - - devices: - - 10115 - - 10114 - - 1435 - - 10118 - - 10117 - - 10116 - - 2053 - - 2054 - - 2048 - - 2049 - - 2050 - - 14588 - - 14585 - - 14584 - type: DeviceList -- uid: 14583 - type: FireAlarm - components: - - pos: 12.5,-3.5 - parent: 0 - type: Transform - - devices: - - 10115 - - 10114 - - 1435 - - 10118 - - 10117 - - 10116 - - 2053 - - 2054 - - 2048 - - 2049 - - 2050 - - 14588 - type: DeviceList -- uid: 14584 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 13.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14585 - type: GasVentScrubber - components: - - pos: 15.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14586 - type: AirSensor - components: - - pos: 24.5,-15.5 - parent: 0 - type: Transform -- uid: 14587 - type: AirSensor - components: - - pos: 30.5,-16.5 - parent: 0 - type: Transform -- uid: 14588 - type: AirSensor - components: - - pos: 17.5,-5.5 - parent: 0 - type: Transform -- uid: 14589 - type: AirSensor - components: - - pos: 32.5,-1.5 - parent: 0 - type: Transform -- uid: 14590 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 29.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14591 - type: GasVentScrubber - components: - - pos: 35.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14592 - type: FireAlarm - components: - - pos: 35.5,0.5 - parent: 0 - type: Transform - - devices: - - 10116 - - 10117 - - 10118 - - 7089 - - 7090 - - 14589 - - 8049 - - 8048 - - 14566 - - 14567 - - 14568 - type: DeviceList -- uid: 14593 - type: AirAlarm - components: - - pos: 29.5,0.5 - parent: 0 - type: Transform - - devices: - - 10116 - - 10117 - - 10118 - - 7089 - - 7090 - - 14589 - - 8049 - - 8048 - - 14566 - - 14567 - - 14568 - - 14590 - - 14591 - type: DeviceList -- uid: 14594 - type: AirAlarm - components: - - pos: 46.5,-13.5 - parent: 0 - type: Transform - - devices: - - 14475 - - 14476 - - 14477 - - 14472 - - 14473 - - 14474 - - 14445 - - 14444 - - 14602 - - 14522 - - 14523 - type: DeviceList -- uid: 14595 - type: AirAlarm - components: - - pos: 50.5,-13.5 - parent: 0 - type: Transform - - devices: - - 14446 - - 14445 - - 14444 - - 14603 - - 14441 - - 14442 - - 14453 - - 14452 - type: DeviceList -- uid: 14596 - type: AirAlarm - components: - - pos: 57.5,-25.5 - parent: 0 - type: Transform - - devices: - - 14604 - - 14448 - - 14299 - - invalid - - 14295 - type: DeviceList -- uid: 14597 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-31.5 - parent: 0 - type: Transform - - devices: - - 14435 - - 14434 - - 14433 - - 14449 - - 14281 - - 14283 - type: DeviceList -- uid: 14598 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-39.5 - parent: 0 - type: Transform - - devices: - - 14498 - - 14490 - type: DeviceList -- uid: 14599 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-33.5 - parent: 0 - type: Transform - - devices: - - 14342 - - 14343 - type: DeviceList -- uid: 14600 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-32.5 - parent: 0 - type: Transform - - devices: - - 14436 - - 14437 - - 14438 - - 14451 - - 14330 - - 14331 - type: DeviceList -- uid: 14601 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-24.5 - parent: 0 - type: Transform -- uid: 14602 - type: AirSensor - components: - - pos: 38.5,-16.5 - parent: 0 - type: Transform -- uid: 14603 - type: AirSensor - components: - - pos: 55.5,-19.5 - parent: 0 - type: Transform -- uid: 14604 - type: AirSensor - components: - - pos: 56.5,-29.5 - parent: 0 - type: Transform -- uid: 14605 - type: BlastDoorOpen - components: - - pos: 45.5,-19.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14608 - type: SignalReceiver -- uid: 14606 - type: BlastDoorOpen - components: - - pos: 46.5,-19.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14608 - type: SignalReceiver -- uid: 14607 - type: BlastDoorOpen - components: - - pos: 47.5,-19.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14608 - type: SignalReceiver -- uid: 14608 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-19.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 14607 - - port: Toggle - uid: 14606 - - port: Toggle - uid: 14605 - type: SignalTransmitter -- uid: 14609 - type: APCBasic - components: - - pos: 34.5,-18.5 - parent: 0 - type: Transform -- uid: 14610 - type: APCBasic - components: - - pos: 49.5,-24.5 - parent: 0 - type: Transform -- uid: 14611 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-20.5 - parent: 0 - type: Transform -- uid: 14612 - type: APCBasic - components: - - pos: 53.5,-28.5 - parent: 0 - type: Transform -- uid: 14613 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-34.5 - parent: 0 - type: Transform -- uid: 14614 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-31.5 - parent: 0 - type: Transform -- uid: 14615 - type: APCBasic - components: - - pos: 39.5,-14.5 - parent: 0 - type: Transform -- uid: 14616 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-40.5 - parent: 0 - type: Transform -- uid: 14617 - type: APCBasic - components: - - pos: 35.5,-32.5 - parent: 0 - type: Transform -- uid: 14618 - type: CableMV - components: - - pos: 27.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14619 - type: CableMV - components: - - pos: 26.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14620 - type: CableMV - components: - - pos: 25.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14621 - type: CableMV - components: - - pos: 24.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14622 - type: CableMV - components: - - pos: 24.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14623 - type: CableMV - components: - - pos: 24.5,-36.5 - parent: 0 - type: Transform -- uid: 14624 - type: CableMV - components: - - pos: 24.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14625 - type: CableMV - components: - - pos: 24.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14626 - type: CableMV - components: - - pos: 24.5,-33.5 - parent: 0 - type: Transform -- uid: 14627 - type: CableMV - components: - - pos: 24.5,-32.5 - parent: 0 - type: Transform -- uid: 14628 - type: CableMV - components: - - pos: 24.5,-31.5 - parent: 0 - type: Transform -- uid: 14629 - type: CableMV - components: - - pos: 24.5,-30.5 - parent: 0 - type: Transform -- uid: 14630 - type: CableMV - components: - - pos: 24.5,-29.5 - parent: 0 - type: Transform -- uid: 14631 - type: CableMV - components: - - pos: 24.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14632 - type: CableMV - components: - - pos: 24.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14633 - type: CableMV - components: - - pos: 24.5,-26.5 - parent: 0 - type: Transform -- uid: 14634 - type: CableMV - components: - - pos: 24.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14635 - type: CableMV - components: - - pos: 25.5,-25.5 - parent: 0 - type: Transform -- uid: 14636 - type: CableMV - components: - - pos: 26.5,-25.5 - parent: 0 - type: Transform -- uid: 14637 - type: CableMV - components: - - pos: 27.5,-25.5 - parent: 0 - type: Transform -- uid: 14638 - type: CableMV - components: - - pos: 28.5,-25.5 - parent: 0 - type: Transform -- uid: 14639 - type: CableMV - components: - - pos: 29.5,-25.5 - parent: 0 - type: Transform -- uid: 14640 - type: CableMV - components: - - pos: 30.5,-25.5 - parent: 0 - type: Transform -- uid: 14641 - type: CableMV - components: - - pos: 30.5,-24.5 - parent: 0 - type: Transform -- uid: 14642 - type: CableMV - components: - - pos: 30.5,-23.5 - parent: 0 - type: Transform -- uid: 14643 - type: CableMV - components: - - pos: 30.5,-22.5 - parent: 0 - type: Transform -- uid: 14644 - type: CableMV - components: - - pos: 31.5,-22.5 - parent: 0 - type: Transform -- uid: 14645 - type: CableMV - components: - - pos: 32.5,-22.5 - parent: 0 - type: Transform -- uid: 14646 - type: CableMV - components: - - pos: 33.5,-22.5 - parent: 0 - type: Transform -- uid: 14647 - type: CableMV - components: - - pos: 34.5,-22.5 - parent: 0 - type: Transform -- uid: 14648 - type: CableMV - components: - - pos: 34.5,-21.5 - parent: 0 - type: Transform -- uid: 14649 - type: CableMV - components: - - pos: 34.5,-20.5 - parent: 0 - type: Transform -- uid: 14650 - type: CableMV - components: - - pos: 34.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14651 - type: CableMV - components: - - pos: 34.5,-19.5 - parent: 0 - type: Transform -- uid: 14652 - type: CableMV - components: - - pos: 35.5,-22.5 - parent: 0 - type: Transform -- uid: 14653 - type: CableMV - components: - - pos: 36.5,-22.5 - parent: 0 - type: Transform -- uid: 14654 - type: CableMV - components: - - pos: 37.5,-22.5 - parent: 0 - type: Transform -- uid: 14655 - type: CableMV - components: - - pos: 38.5,-22.5 - parent: 0 - type: Transform -- uid: 14656 - type: CableMV - components: - - pos: 38.5,-23.5 - parent: 0 - type: Transform -- uid: 14657 - type: CableMV - components: - - pos: 38.5,-24.5 - parent: 0 - type: Transform -- uid: 14658 - type: CableMV - components: - - pos: 38.5,-25.5 - parent: 0 - type: Transform -- uid: 14659 - type: CableMV - components: - - pos: 38.5,-26.5 - parent: 0 - type: Transform -- uid: 14660 - type: CableMV - components: - - pos: 38.5,-27.5 - parent: 0 - type: Transform -- uid: 14661 - type: CableMV - components: - - pos: 38.5,-28.5 - parent: 0 - type: Transform -- uid: 14662 - type: CableMV - components: - - pos: 38.5,-29.5 - parent: 0 - type: Transform -- uid: 14663 - type: CableMV - components: - - pos: 38.5,-30.5 - parent: 0 - type: Transform -- uid: 14664 - type: CableMV - components: - - pos: 38.5,-31.5 - parent: 0 - type: Transform -- uid: 14665 - type: CableMV - components: - - pos: 38.5,-32.5 - parent: 0 - type: Transform -- uid: 14666 - type: CableMV - components: - - pos: 38.5,-33.5 - parent: 0 - type: Transform -- uid: 14667 - type: CableMV - components: - - pos: 38.5,-34.5 - parent: 0 - type: Transform -- uid: 14668 - type: CableMV - components: - - pos: 38.5,-35.5 - parent: 0 - type: Transform -- uid: 14669 - type: CableMV - components: - - pos: 38.5,-36.5 - parent: 0 - type: Transform -- uid: 14670 - type: CableMV - components: - - pos: 38.5,-37.5 - parent: 0 - type: Transform -- uid: 14671 - type: CableMV - components: - - pos: 38.5,-38.5 - parent: 0 - type: Transform -- uid: 14672 - type: CableMV - components: - - pos: 38.5,-39.5 - parent: 0 - type: Transform -- uid: 14673 - type: CableMV - components: - - pos: 38.5,-40.5 - parent: 0 - type: Transform -- uid: 14674 - type: CableMV - components: - - pos: 38.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14675 - type: CableMV - components: - - pos: 38.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14676 - type: CableMV - components: - - pos: 37.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14677 - type: CableMV - components: - - pos: 36.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14678 - type: CableMV - components: - - pos: 35.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14679 - type: CableMV - components: - - pos: 34.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14680 - type: CableMV - components: - - pos: 33.5,-42.5 - parent: 0 - type: Transform -- uid: 14681 - type: CableMV - components: - - pos: 32.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14682 - type: CableMV - components: - - pos: 31.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14683 - type: CableMV - components: - - pos: 30.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14684 - type: CableMV - components: - - pos: 29.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14685 - type: CableMV - components: - - pos: 28.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14686 - type: CableMV - components: - - pos: 27.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14687 - type: CableMV - components: - - pos: 26.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14688 - type: CableMV - components: - - pos: 25.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14689 - type: CableMV - components: - - pos: 24.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14690 - type: CableMV - components: - - pos: 24.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14691 - type: CableMV - components: - - pos: 24.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14692 - type: CableMV - components: - - pos: 24.5,-39.5 - parent: 0 - type: Transform -- uid: 14693 - type: CableMV - components: - - pos: 39.5,-34.5 - parent: 0 - type: Transform -- uid: 14694 - type: CableMV - components: - - pos: 40.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14695 - type: CableMV - components: - - pos: 37.5,-34.5 - parent: 0 - type: Transform -- uid: 14696 - type: CableMV - components: - - pos: 36.5,-34.5 - parent: 0 - type: Transform -- uid: 14697 - type: CableMV - components: - - pos: 35.5,-34.5 - parent: 0 - type: Transform -- uid: 14698 - type: CableMV - components: - - pos: 35.5,-33.5 - parent: 0 - type: Transform -- uid: 14699 - type: CableMV - components: - - pos: 35.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14700 - type: CableMV - components: - - pos: 35.5,-31.5 - parent: 0 - type: Transform -- uid: 14701 - type: CableMV - components: - - pos: 34.5,-31.5 - parent: 0 - type: Transform -- uid: 14702 - type: CableMV - components: - - pos: 33.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14703 - type: CableMV - components: - - pos: 35.5,-30.5 - parent: 0 - type: Transform -- uid: 14704 - type: CableMV - components: - - pos: 36.5,-30.5 - parent: 0 - type: Transform -- uid: 14705 - type: CableMV - components: - - pos: 37.5,-30.5 - parent: 0 - type: Transform -- uid: 14706 - type: CableMV - components: - - pos: 46.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14707 - type: CableMV - components: - - pos: 47.5,-40.5 - parent: 0 - type: Transform -- uid: 14708 - type: CableMV - components: - - pos: 48.5,-40.5 - parent: 0 - type: Transform -- uid: 14709 - type: CableMV - components: - - pos: 48.5,-39.5 - parent: 0 - type: Transform -- uid: 14710 - type: CableMV - components: - - pos: 48.5,-38.5 - parent: 0 - type: Transform -- uid: 14711 - type: CableMV - components: - - pos: 48.5,-37.5 - parent: 0 - type: Transform -- uid: 14712 - type: CableMV - components: - - pos: 48.5,-36.5 - parent: 0 - type: Transform -- uid: 14713 - type: CableMV - components: - - pos: 48.5,-35.5 - parent: 0 - type: Transform -- uid: 14714 - type: CableMV - components: - - pos: 48.5,-34.5 - parent: 0 - type: Transform -- uid: 14715 - type: CableMV - components: - - pos: 48.5,-33.5 - parent: 0 - type: Transform -- uid: 14716 - type: CableMV - components: - - pos: 48.5,-32.5 - parent: 0 - type: Transform -- uid: 14717 - type: CableMV - components: - - pos: 48.5,-31.5 - parent: 0 - type: Transform -- uid: 14718 - type: CableMV - components: - - pos: 48.5,-30.5 - parent: 0 - type: Transform -- uid: 14719 - type: CableMV - components: - - pos: 48.5,-29.5 - parent: 0 - type: Transform -- uid: 14720 - type: CableMV - components: - - pos: 48.5,-28.5 - parent: 0 - type: Transform -- uid: 14721 - type: CableMV - components: - - pos: 48.5,-27.5 - parent: 0 - type: Transform -- uid: 14722 - type: CableMV - components: - - pos: 48.5,-26.5 - parent: 0 - type: Transform -- uid: 14723 - type: CableMV - components: - - pos: 47.5,-26.5 - parent: 0 - type: Transform -- uid: 14724 - type: WallReinforced - components: - - pos: 50.5,-52.5 - parent: 0 - type: Transform -- uid: 14725 - type: WallReinforced - components: - - pos: 49.5,-52.5 - parent: 0 - type: Transform -- uid: 14726 - type: WallReinforced - components: - - pos: 49.5,-50.5 - parent: 0 - type: Transform -- uid: 14727 - type: WallReinforced - components: - - pos: 49.5,-51.5 - parent: 0 - type: Transform -- uid: 14728 - type: WallReinforced - components: - - pos: 49.5,-49.5 - parent: 0 - type: Transform -- uid: 14729 - type: AirlockEngineeringLocked - components: - - pos: 51.5,-48.5 - parent: 0 - type: Transform -- uid: 14730 - type: WallReinforced - components: - - pos: 48.5,-48.5 - parent: 0 - type: Transform -- uid: 14731 - type: WallReinforced - components: - - pos: 49.5,-48.5 - parent: 0 - type: Transform -- uid: 14732 - type: CableMV - components: - - pos: 49.5,-26.5 - parent: 0 - type: Transform -- uid: 14733 - type: CableMV - components: - - pos: 49.5,-25.5 - parent: 0 - type: Transform -- uid: 14734 - type: CableMV - components: - - pos: 49.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14735 - type: CableMV - components: - - pos: 50.5,-26.5 - parent: 0 - type: Transform -- uid: 14736 - type: CableMV - components: - - pos: 51.5,-26.5 - parent: 0 - type: Transform -- uid: 14737 - type: CableMV - components: - - pos: 52.5,-26.5 - parent: 0 - type: Transform -- uid: 14738 - type: CableMV - components: - - pos: 53.5,-26.5 - parent: 0 - type: Transform -- uid: 14739 - type: CableMV - components: - - pos: 53.5,-27.5 - parent: 0 - type: Transform -- uid: 14740 - type: CableMV - components: - - pos: 53.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14741 - type: CableMV - components: - - pos: 52.5,-25.5 - parent: 0 - type: Transform -- uid: 14742 - type: CableMV - components: - - pos: 52.5,-24.5 - parent: 0 - type: Transform -- uid: 14743 - type: CableMV - components: - - pos: 52.5,-23.5 - parent: 0 - type: Transform -- uid: 14744 - type: CableMV - components: - - pos: 52.5,-22.5 - parent: 0 - type: Transform -- uid: 14745 - type: CableMV - components: - - pos: 52.5,-21.5 - parent: 0 - type: Transform -- uid: 14746 - type: CableMV - components: - - pos: 52.5,-20.5 - parent: 0 - type: Transform -- uid: 14747 - type: CableMV - components: - - pos: 39.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14748 - type: CableMV - components: - - pos: 51.5,-20.5 - parent: 0 - type: Transform -- uid: 14749 - type: CableMV - components: - - pos: 50.5,-20.5 - parent: 0 - type: Transform -- uid: 14750 - type: CableMV - components: - - pos: 49.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14751 - type: CableMV - components: - - pos: 39.5,-16.5 - parent: 0 - type: Transform -- uid: 14752 - type: CableMV - components: - - pos: 39.5,-15.5 - parent: 0 - type: Transform -- uid: 14753 - type: WallReinforced - components: - - pos: 53.5,-50.5 - parent: 0 - type: Transform -- uid: 14754 - type: WallReinforced - components: - - pos: 53.5,-49.5 - parent: 0 - type: Transform -- uid: 14755 - type: WallReinforced - components: - - pos: 53.5,-48.5 - parent: 0 - type: Transform -- uid: 14756 - type: WallReinforced - components: - - pos: 52.5,-48.5 - parent: 0 - type: Transform -- uid: 14757 - type: WallReinforced - components: - - pos: 50.5,-48.5 - parent: 0 - type: Transform -- uid: 14758 - type: SubstationBasic - components: - - name: South Sci Sub - type: MetaData - - pos: 51.5,-51.5 - parent: 0 - type: Transform -- uid: 14759 - type: CableMV - components: - - pos: 40.5,-16.5 - parent: 0 - type: Transform -- uid: 14760 - type: CableMV - components: - - pos: 41.5,-16.5 - parent: 0 - type: Transform -- uid: 14761 - type: CableMV - components: - - pos: 42.5,-16.5 - parent: 0 - type: Transform -- uid: 14762 - type: CableMV - components: - - pos: 43.5,-16.5 - parent: 0 - type: Transform -- uid: 14763 - type: CableMV - components: - - pos: 44.5,-16.5 - parent: 0 - type: Transform -- uid: 14764 - type: CableMV - components: - - pos: 45.5,-16.5 - parent: 0 - type: Transform -- uid: 14765 - type: CableMV - components: - - pos: 46.5,-16.5 - parent: 0 - type: Transform -- uid: 14766 - type: CableMV - components: - - pos: 47.5,-16.5 - parent: 0 - type: Transform -- uid: 14767 - type: CableMV - components: - - pos: 47.5,-17.5 - parent: 0 - type: Transform -- uid: 14768 - type: CableMV - components: - - pos: 47.5,-18.5 - parent: 0 - type: Transform -- uid: 14769 - type: CableMV - components: - - pos: 47.5,-19.5 - parent: 0 - type: Transform -- uid: 14770 - type: CableMV - components: - - pos: 47.5,-20.5 - parent: 0 - type: Transform -- uid: 14771 - type: CableMV - components: - - pos: 47.5,-21.5 - parent: 0 - type: Transform -- uid: 14772 - type: CableMV - components: - - pos: 47.5,-22.5 - parent: 0 - type: Transform -- uid: 14773 - type: CableMV - components: - - pos: 47.5,-23.5 - parent: 0 - type: Transform -- uid: 14774 - type: CableMV - components: - - pos: 47.5,-24.5 - parent: 0 - type: Transform -- uid: 14775 - type: CableMV - components: - - pos: 47.5,-25.5 - parent: 0 - type: Transform -- uid: 14776 - type: Catwalk - components: - - pos: 38.5,-41.5 - parent: 0 - type: Transform -- uid: 14777 - type: Catwalk - components: - - pos: 38.5,-42.5 - parent: 0 - type: Transform -- uid: 14778 - type: Catwalk - components: - - pos: 37.5,-42.5 - parent: 0 - type: Transform -- uid: 14779 - type: Catwalk - components: - - pos: 36.5,-42.5 - parent: 0 - type: Transform -- uid: 14780 - type: Catwalk - components: - - pos: 35.5,-42.5 - parent: 0 - type: Transform -- uid: 14781 - type: Catwalk - components: - - pos: 34.5,-42.5 - parent: 0 - type: Transform -- uid: 14782 - type: SignCanisters - components: - - pos: 58.5,-40.5 - parent: 0 - type: Transform -- uid: 14783 - type: Catwalk - components: - - pos: 32.5,-42.5 - parent: 0 - type: Transform -- uid: 14784 - type: Catwalk - components: - - pos: 31.5,-42.5 - parent: 0 - type: Transform -- uid: 14785 - type: Catwalk - components: - - pos: 30.5,-42.5 - parent: 0 - type: Transform -- uid: 14786 - type: Catwalk - components: - - pos: 29.5,-42.5 - parent: 0 - type: Transform -- uid: 14787 - type: Catwalk - components: - - pos: 28.5,-42.5 - parent: 0 - type: Transform -- uid: 14788 - type: Catwalk - components: - - pos: 27.5,-42.5 - parent: 0 - type: Transform -- uid: 14789 - type: Catwalk - components: - - pos: 26.5,-42.5 - parent: 0 - type: Transform -- uid: 14790 - type: Catwalk - components: - - pos: 25.5,-42.5 - parent: 0 - type: Transform -- uid: 14791 - type: Catwalk - components: - - pos: 24.5,-42.5 - parent: 0 - type: Transform -- uid: 14792 - type: Catwalk - components: - - pos: 24.5,-41.5 - parent: 0 - type: Transform -- uid: 14793 - type: CratePrivateSecure - components: - - pos: 29.5,-30.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.2184362 - - 12.107451 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14794 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-30.5 - parent: 0 - type: Transform -- uid: 14795 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-31.5 - parent: 0 - type: Transform -- uid: 14796 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-32.5 - parent: 0 - type: Transform -- uid: 14797 - type: SpaceVillainArcadeFilled - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-35.5 - parent: 0 - type: Transform -- uid: 14798 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-35.5 - parent: 0 - type: Transform -- uid: 14799 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-15.5 - parent: 0 - type: Transform -- uid: 14800 - type: DisposalPipe - components: - - pos: 15.5,-16.5 - parent: 0 - type: Transform -- uid: 14801 - type: DisposalBend - components: - - pos: 15.5,-15.5 - parent: 0 - type: Transform -- uid: 14802 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 15.5,-17.5 - parent: 0 - type: Transform -- uid: 14803 - type: DisposalUnit - components: - - name: Mail to Medical - type: MetaData - - pos: 15.5,-17.5 - parent: 0 - type: Transform -- uid: 14804 - type: DisposalUnit - components: - - name: Mail to Security - type: MetaData - - pos: 16.5,-17.5 - parent: 0 - type: Transform -- uid: 14805 - type: DisposalUnit - components: - - name: Mail to Science - type: MetaData - - pos: 17.5,-17.5 - parent: 0 - type: Transform -- uid: 14806 - type: DisposalUnit - components: - - name: Mail to Engineering - type: MetaData - - pos: 18.5,-17.5 - parent: 0 - type: Transform -- uid: 14807 - type: RandomPosterAny - components: - - pos: 27.5,-34.5 - parent: 0 - type: Transform -- uid: 14808 - type: WallSolid - components: - - pos: 23.5,-40.5 - parent: 0 - type: Transform -- uid: 14809 - type: AirlockMaintLocked - components: - - pos: 24.5,-40.5 - parent: 0 - type: Transform -- uid: 14810 - type: AirlockEngineeringLocked - components: - - pos: 25.5,-38.5 - parent: 0 - type: Transform -- uid: 14811 - type: DisposalUnit - components: - - pos: 39.5,-23.5 - parent: 0 - type: Transform -- uid: 14812 - type: DisposalUnit - components: - - pos: 48.5,-18.5 - parent: 0 - type: Transform -- uid: 14813 - type: DisposalUnit - components: - - pos: 53.5,-20.5 - parent: 0 - type: Transform -- uid: 14814 - type: DisposalUnit - components: - - pos: 53.5,-27.5 - parent: 0 - type: Transform -- uid: 14815 - type: DisposalUnit - components: - - pos: 54.5,-29.5 - parent: 0 - type: Transform -- uid: 14816 - type: DisposalUnit - components: - - pos: 45.5,-35.5 - parent: 0 - type: Transform -- uid: 14817 - type: DisposalUnit - components: - - pos: 33.5,-39.5 - parent: 0 - type: Transform -- uid: 14818 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 33.5,-39.5 - parent: 0 - type: Transform -- uid: 14819 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 45.5,-35.5 - parent: 0 - type: Transform -- uid: 14820 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-23.5 - parent: 0 - type: Transform -- uid: 14821 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 53.5,-27.5 - parent: 0 - type: Transform -- uid: 14822 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-20.5 - parent: 0 - type: Transform -- uid: 14823 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-18.5 - parent: 0 - type: Transform -- uid: 14824 - type: DisposalTrunk - components: - - pos: 54.5,-29.5 - parent: 0 - type: Transform -- uid: 14825 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-38.5 - parent: 0 - type: Transform -- uid: 14826 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: 38.5,-38.5 - parent: 0 - type: Transform -- uid: 14827 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-38.5 - parent: 0 - type: Transform -- uid: 14828 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-38.5 - parent: 0 - type: Transform -- uid: 14829 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-38.5 - parent: 0 - type: Transform -- uid: 14830 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-38.5 - parent: 0 - type: Transform -- uid: 14831 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 38.5,-37.5 - parent: 0 - type: Transform -- uid: 14832 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 38.5,-36.5 - parent: 0 - type: Transform -- uid: 14833 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 38.5,-35.5 - parent: 0 - type: Transform -- uid: 14834 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 38.5,-34.5 - parent: 0 - type: Transform -- uid: 14835 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 38.5,-33.5 - parent: 0 - type: Transform -- uid: 14836 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 38.5,-32.5 - parent: 0 - type: Transform -- uid: 14837 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 38.5,-31.5 - parent: 0 - type: Transform -- uid: 14838 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 38.5,-30.5 - parent: 0 - type: Transform -- uid: 14839 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 38.5,-29.5 - parent: 0 - type: Transform -- uid: 14840 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 38.5,-28.5 - parent: 0 - type: Transform -- uid: 14841 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 38.5,-27.5 - parent: 0 - type: Transform -- uid: 14842 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-23.5 - parent: 0 - type: Transform -- uid: 14843 - type: DisposalPipe - components: - - pos: 38.5,-24.5 - parent: 0 - type: Transform -- uid: 14844 - type: DisposalPipe - components: - - pos: 38.5,-25.5 - parent: 0 - type: Transform -- uid: 14845 - type: DisposalYJunction - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-26.5 - parent: 0 - type: Transform -- uid: 14846 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-34.5 - parent: 0 - type: Transform -- uid: 14847 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: 48.5,-34.5 - parent: 0 - type: Transform -- uid: 14848 - type: DisposalUnit - components: - - pos: 47.5,-37.5 - parent: 0 - type: Transform -- uid: 14849 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-37.5 - parent: 0 - type: Transform -- uid: 14850 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-37.5 - parent: 0 - type: Transform -- uid: 14851 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 48.5,-36.5 - parent: 0 - type: Transform -- uid: 14852 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 48.5,-35.5 - parent: 0 - type: Transform -- uid: 14853 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-34.5 - parent: 0 - type: Transform -- uid: 14854 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-34.5 - parent: 0 - type: Transform -- uid: 14855 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 48.5,-33.5 - parent: 0 - type: Transform -- uid: 14856 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-33.5 - parent: 0 - type: Transform -- uid: 14857 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-33.5 - parent: 0 - type: Transform -- uid: 14858 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-33.5 - parent: 0 - type: Transform -- uid: 14859 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-33.5 - parent: 0 - type: Transform -- uid: 14860 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-33.5 - parent: 0 - type: Transform -- uid: 14861 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-33.5 - parent: 0 - type: Transform -- uid: 14862 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 54.5,-32.5 - parent: 0 - type: Transform -- uid: 14863 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 54.5,-31.5 - parent: 0 - type: Transform -- uid: 14864 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 54.5,-30.5 - parent: 0 - type: Transform -- uid: 14865 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 48.5,-32.5 - parent: 0 - type: Transform -- uid: 14866 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 48.5,-31.5 - parent: 0 - type: Transform -- uid: 14867 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 48.5,-30.5 - parent: 0 - type: Transform -- uid: 14868 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 48.5,-29.5 - parent: 0 - type: Transform -- uid: 14869 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 48.5,-28.5 - parent: 0 - type: Transform -- uid: 14870 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 48.5,-27.5 - parent: 0 - type: Transform -- uid: 14871 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-20.5 - parent: 0 - type: Transform -- uid: 14872 - type: DisposalBend - components: - - pos: 53.5,-26.5 - parent: 0 - type: Transform -- uid: 14873 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-26.5 - parent: 0 - type: Transform -- uid: 14874 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,-25.5 - parent: 0 - type: Transform -- uid: 14875 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,-24.5 - parent: 0 - type: Transform -- uid: 14876 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,-23.5 - parent: 0 - type: Transform -- uid: 14877 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,-22.5 - parent: 0 - type: Transform -- uid: 14878 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,-21.5 - parent: 0 - type: Transform -- uid: 14879 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-26.5 - parent: 0 - type: Transform -- uid: 14880 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-26.5 - parent: 0 - type: Transform -- uid: 14881 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-26.5 - parent: 0 - type: Transform -- uid: 14882 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-26.5 - parent: 0 - type: Transform -- uid: 14883 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-26.5 - parent: 0 - type: Transform -- uid: 14884 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-26.5 - parent: 0 - type: Transform -- uid: 14885 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-26.5 - parent: 0 - type: Transform -- uid: 14886 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-26.5 - parent: 0 - type: Transform -- uid: 14887 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-26.5 - parent: 0 - type: Transform -- uid: 14888 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-26.5 - parent: 0 - type: Transform -- uid: 14889 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-26.5 - parent: 0 - type: Transform -- uid: 14890 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-26.5 - parent: 0 - type: Transform -- uid: 14891 - type: DisposalYJunction - components: - - rot: 3.141592653589793 rad - pos: 47.5,-26.5 - parent: 0 - type: Transform -- uid: 14892 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 47.5,-25.5 - parent: 0 - type: Transform -- uid: 14893 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 47.5,-24.5 - parent: 0 - type: Transform -- uid: 14894 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 47.5,-23.5 - parent: 0 - type: Transform -- uid: 14895 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 47.5,-22.5 - parent: 0 - type: Transform -- uid: 14896 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 47.5,-21.5 - parent: 0 - type: Transform -- uid: 14897 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 47.5,-20.5 - parent: 0 - type: Transform -- uid: 14898 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 47.5,-19.5 - parent: 0 - type: Transform -- uid: 14899 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 47.5,-18.5 - parent: 0 - type: Transform -- uid: 14900 - type: DisposalBend - components: - - pos: 47.5,-15.5 - parent: 0 - type: Transform -- uid: 14901 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 42.5,-15.5 - parent: 0 - type: Transform -- uid: 14902 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 47.5,-17.5 - parent: 0 - type: Transform -- uid: 14903 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 47.5,-16.5 - parent: 0 - type: Transform -- uid: 14904 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-15.5 - parent: 0 - type: Transform -- uid: 14905 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-15.5 - parent: 0 - type: Transform -- uid: 14906 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-15.5 - parent: 0 - type: Transform -- uid: 14907 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-15.5 - parent: 0 - type: Transform -- uid: 14908 - type: DisposalPipe - components: - - pos: 42.5,-14.5 - parent: 0 - type: Transform -- uid: 14909 - type: DisposalPipe - components: - - pos: 42.5,-13.5 - parent: 0 - type: Transform -- uid: 14910 - type: DisposalPipe - components: - - pos: 42.5,-12.5 - parent: 0 - type: Transform -- uid: 14911 - type: DisposalPipe - components: - - pos: 42.5,-11.5 - parent: 0 - type: Transform -- uid: 14912 - type: DisposalPipe - components: - - pos: 42.5,-10.5 - parent: 0 - type: Transform -- uid: 14913 - type: DisposalPipe - components: - - pos: 42.5,-9.5 - parent: 0 - type: Transform -- uid: 14914 - type: DisposalPipe - components: - - pos: 42.5,-8.5 - parent: 0 - type: Transform -- uid: 14915 - type: DisposalPipe - components: - - pos: 42.5,-7.5 - parent: 0 - type: Transform -- uid: 14916 - type: DisposalPipe - components: - - pos: 42.5,-6.5 - parent: 0 - type: Transform -- uid: 14917 - type: DisposalPipe - components: - - pos: 42.5,-5.5 - parent: 0 - type: Transform -- uid: 14918 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: 42.5,-4.5 - parent: 0 - type: Transform -- uid: 14919 - type: DisposalPipe - components: - - pos: 42.5,-3.5 - parent: 0 - type: Transform -- uid: 14920 - type: DisposalPipe - components: - - pos: 42.5,-2.5 - parent: 0 - type: Transform -- uid: 14921 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-26.5 - parent: 0 - type: Transform -- uid: 14922 - type: CableMV - components: - - pos: 26.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14923 - type: CableApcExtension - components: - - pos: 26.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14924 - type: CableApcExtension - components: - - pos: 26.5,-25.5 - parent: 0 - type: Transform -- uid: 14925 - type: CableApcExtension - components: - - pos: 25.5,-25.5 - parent: 0 - type: Transform -- uid: 14926 - type: CableApcExtension - components: - - pos: 24.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14927 - type: CableApcExtension - components: - - pos: 24.5,-26.5 - parent: 0 - type: Transform -- uid: 14928 - type: CableApcExtension - components: - - pos: 24.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14929 - type: CableApcExtension - components: - - pos: 24.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14930 - type: CableApcExtension - components: - - pos: 24.5,-29.5 - parent: 0 - type: Transform -- uid: 14931 - type: CableApcExtension - components: - - pos: 24.5,-30.5 - parent: 0 - type: Transform -- uid: 14932 - type: CableApcExtension - components: - - pos: 24.5,-31.5 - parent: 0 - type: Transform -- uid: 14933 - type: CableApcExtension - components: - - pos: 24.5,-32.5 - parent: 0 - type: Transform -- uid: 14934 - type: CableApcExtension - components: - - pos: 24.5,-33.5 - parent: 0 - type: Transform -- uid: 14935 - type: CableApcExtension - components: - - pos: 24.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14936 - type: CableApcExtension - components: - - pos: 24.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14937 - type: CableApcExtension - components: - - pos: 24.5,-36.5 - parent: 0 - type: Transform -- uid: 14938 - type: CableApcExtension - components: - - pos: 24.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14939 - type: CableApcExtension - components: - - pos: 24.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14940 - type: CableApcExtension - components: - - pos: 25.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14941 - type: CableApcExtension - components: - - pos: 26.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14942 - type: CableApcExtension - components: - - pos: 23.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14943 - type: CableApcExtension - components: - - pos: 22.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14944 - type: CableApcExtension - components: - - pos: 22.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14945 - type: CableApcExtension - components: - - pos: 23.5,-35.5 - parent: 0 - type: Transform -- uid: 14946 - type: CableApcExtension - components: - - pos: 22.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14947 - type: CableApcExtension - components: - - pos: 22.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14948 - type: CableApcExtension - components: - - pos: 27.5,-26.5 - parent: 0 - type: Transform -- uid: 14949 - type: CableApcExtension - components: - - pos: 28.5,-26.5 - parent: 0 - type: Transform -- uid: 14950 - type: CableApcExtension - components: - - pos: 29.5,-26.5 - parent: 0 - type: Transform -- uid: 14951 - type: CableApcExtension - components: - - pos: 29.5,-25.5 - parent: 0 - type: Transform -- uid: 14952 - type: CableApcExtension - components: - - pos: 29.5,-24.5 - parent: 0 - type: Transform -- uid: 14953 - type: CableApcExtension - components: - - pos: 29.5,-23.5 - parent: 0 - type: Transform -- uid: 14954 - type: CableApcExtension - components: - - pos: 29.5,-22.5 - parent: 0 - type: Transform -- uid: 14955 - type: CableApcExtension - components: - - pos: 29.5,-21.5 - parent: 0 - type: Transform -- uid: 14956 - type: CableApcExtension - components: - - pos: 29.5,-20.5 - parent: 0 - type: Transform -- uid: 14957 - type: CableApcExtension - components: - - pos: 29.5,-19.5 - parent: 0 - type: Transform -- uid: 14958 - type: CableApcExtension - components: - - pos: 28.5,-19.5 - parent: 0 - type: Transform -- uid: 14959 - type: CableApcExtension - components: - - pos: 21.5,-21.5 - parent: 0 - type: Transform -- uid: 14960 - type: CableApcExtension - components: - - pos: 22.5,-21.5 - parent: 0 - type: Transform -- uid: 14961 - type: CableApcExtension - components: - - pos: 23.5,-21.5 - parent: 0 - type: Transform -- uid: 14962 - type: CableApcExtension - components: - - pos: 24.5,-21.5 - parent: 0 - type: Transform -- uid: 14963 - type: CableApcExtension - components: - - pos: 24.5,-22.5 - parent: 0 - type: Transform -- uid: 14964 - type: CableApcExtension - components: - - pos: 24.5,-20.5 - parent: 0 - type: Transform -- uid: 14965 - type: CableApcExtension - components: - - pos: 24.5,-19.5 - parent: 0 - type: Transform -- uid: 14966 - type: CableApcExtension - components: - - pos: 24.5,-18.5 - parent: 0 - type: Transform -- uid: 14967 - type: CableApcExtension - components: - - pos: 24.5,-17.5 - parent: 0 - type: Transform -- uid: 14968 - type: CableApcExtension - components: - - pos: 24.5,-16.5 - parent: 0 - type: Transform -- uid: 14969 - type: CableApcExtension - components: - - pos: 24.5,-15.5 - parent: 0 - type: Transform -- uid: 14970 - type: CableApcExtension - components: - - pos: 24.5,-14.5 - parent: 0 - type: Transform -- uid: 14971 - type: CableApcExtension - components: - - pos: 24.5,-13.5 - parent: 0 - type: Transform -- uid: 14972 - type: CableApcExtension - components: - - pos: 24.5,-12.5 - parent: 0 - type: Transform -- uid: 14973 - type: CableApcExtension - components: - - pos: 24.5,-11.5 - parent: 0 - type: Transform -- uid: 14974 - type: CableApcExtension - components: - - pos: 24.5,-10.5 - parent: 0 - type: Transform -- uid: 14975 - type: CableApcExtension - components: - - pos: 24.5,-9.5 - parent: 0 - type: Transform -- uid: 14976 - type: CableApcExtension - components: - - pos: 34.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14977 - type: CableApcExtension - components: - - pos: 34.5,-19.5 - parent: 0 - type: Transform -- uid: 14978 - type: CableApcExtension - components: - - pos: 34.5,-20.5 - parent: 0 - type: Transform -- uid: 14979 - type: CableApcExtension - components: - - pos: 34.5,-21.5 - parent: 0 - type: Transform -- uid: 14980 - type: CableApcExtension - components: - - pos: 34.5,-22.5 - parent: 0 - type: Transform -- uid: 14981 - type: CableApcExtension - components: - - pos: 34.5,-23.5 - parent: 0 - type: Transform -- uid: 14982 - type: CableApcExtension - components: - - pos: 34.5,-24.5 - parent: 0 - type: Transform -- uid: 14983 - type: CableApcExtension - components: - - pos: 34.5,-25.5 - parent: 0 - type: Transform -- uid: 14984 - type: CableApcExtension - components: - - pos: 33.5,-19.5 - parent: 0 - type: Transform -- uid: 14985 - type: CableApcExtension - components: - - pos: 33.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14986 - type: CableApcExtension - components: - - pos: 35.5,-19.5 - parent: 0 - type: Transform -- uid: 14987 - type: CableApcExtension - components: - - pos: 36.5,-19.5 - parent: 0 - type: Transform -- uid: 14988 - type: CableApcExtension - components: - - pos: 37.5,-19.5 - parent: 0 - type: Transform -- uid: 14989 - type: CableApcExtension - components: - - pos: 37.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14990 - type: CableApcExtension - components: - - pos: 37.5,-20.5 - parent: 0 - type: Transform -- uid: 14991 - type: CableApcExtension - components: - - pos: 37.5,-21.5 - parent: 0 - type: Transform -- uid: 14992 - type: CableApcExtension - components: - - pos: 37.5,-22.5 - parent: 0 - type: Transform -- uid: 14993 - type: CableApcExtension - components: - - pos: 39.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14994 - type: CableApcExtension - components: - - pos: 39.5,-15.5 - parent: 0 - type: Transform -- uid: 14995 - type: CableApcExtension - components: - - pos: 39.5,-16.5 - parent: 0 - type: Transform -- uid: 14996 - type: CableApcExtension - components: - - pos: 38.5,-16.5 - parent: 0 - type: Transform -- uid: 14997 - type: CableApcExtension - components: - - pos: 37.5,-16.5 - parent: 0 - type: Transform -- uid: 14998 - type: CableApcExtension - components: - - pos: 36.5,-16.5 - parent: 0 - type: Transform -- uid: 14999 - type: CableApcExtension - components: - - pos: 35.5,-16.5 - parent: 0 - type: Transform -- uid: 15000 - type: CableApcExtension - components: - - pos: 34.5,-16.5 - parent: 0 - type: Transform -- uid: 15001 - type: CableApcExtension - components: - - pos: 33.5,-16.5 - parent: 0 - type: Transform -- uid: 15002 - type: CableApcExtension - components: - - pos: 32.5,-16.5 - parent: 0 - type: Transform -- uid: 15003 - type: CableApcExtension - components: - - pos: 31.5,-16.5 - parent: 0 - type: Transform -- uid: 15004 - type: CableApcExtension - components: - - pos: 30.5,-16.5 - parent: 0 - type: Transform -- uid: 15005 - type: CableApcExtension - components: - - pos: 29.5,-16.5 - parent: 0 - type: Transform -- uid: 15006 - type: CableApcExtension - components: - - pos: 28.5,-16.5 - parent: 0 - type: Transform -- uid: 15007 - type: CableApcExtension - components: - - pos: 27.5,-16.5 - parent: 0 - type: Transform -- uid: 15008 - type: CableApcExtension - components: - - pos: 32.5,-15.5 - parent: 0 - type: Transform -- uid: 15009 - type: CableApcExtension - components: - - pos: 32.5,-14.5 - parent: 0 - type: Transform -- uid: 15010 - type: CableApcExtension - components: - - pos: 32.5,-13.5 - parent: 0 - type: Transform -- uid: 15011 - type: CableApcExtension - components: - - pos: 32.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15012 - type: CableApcExtension - components: - - pos: 37.5,-15.5 - parent: 0 - type: Transform -- uid: 15013 - type: CableApcExtension - components: - - pos: 37.5,-14.5 - parent: 0 - type: Transform -- uid: 15014 - type: CableApcExtension - components: - - pos: 37.5,-13.5 - parent: 0 - type: Transform -- uid: 15015 - type: CableApcExtension - components: - - pos: 37.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15016 - type: CableApcExtension - components: - - pos: 37.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15017 - type: CableMV - components: - - pos: 34.5,-15.5 - parent: 0 - type: Transform -- uid: 15018 - type: CableMV - components: - - pos: 35.5,-15.5 - parent: 0 - type: Transform -- uid: 15019 - type: CableMV - components: - - pos: 36.5,-15.5 - parent: 0 - type: Transform -- uid: 15020 - type: SubstationBasic - components: - - name: North Sci Substation - type: MetaData - - pos: 37.5,-11.5 - parent: 0 - type: Transform -- uid: 15021 - type: WallReinforced - components: - - pos: 37.5,-10.5 - parent: 0 - type: Transform -- uid: 15022 - type: CableApcExtension - components: - - pos: 40.5,-15.5 - parent: 0 - type: Transform -- uid: 15023 - type: CableApcExtension - components: - - pos: 41.5,-15.5 - parent: 0 - type: Transform -- uid: 15024 - type: CableApcExtension - components: - - pos: 42.5,-15.5 - parent: 0 - type: Transform -- uid: 15025 - type: CableApcExtension - components: - - pos: 43.5,-15.5 - parent: 0 - type: Transform -- uid: 15026 - type: CableApcExtension - components: - - pos: 44.5,-15.5 - parent: 0 - type: Transform -- uid: 15027 - type: CableApcExtension - components: - - pos: 45.5,-15.5 - parent: 0 - type: Transform -- uid: 15028 - type: CableApcExtension - components: - - pos: 46.5,-15.5 - parent: 0 - type: Transform -- uid: 15029 - type: CableApcExtension - components: - - pos: 47.5,-15.5 - parent: 0 - type: Transform -- uid: 15030 - type: CableApcExtension - components: - - pos: 42.5,-14.5 - parent: 0 - type: Transform -- uid: 15031 - type: CableApcExtension - components: - - pos: 42.5,-13.5 - parent: 0 - type: Transform -- uid: 15032 - type: CableApcExtension - components: - - pos: 41.5,-16.5 - parent: 0 - type: Transform -- uid: 15033 - type: CableApcExtension - components: - - pos: 41.5,-17.5 - parent: 0 - type: Transform -- uid: 15034 - type: CableApcExtension - components: - - pos: 46.5,-16.5 - parent: 0 - type: Transform -- uid: 15035 - type: CableApcExtension - components: - - pos: 46.5,-17.5 - parent: 0 - type: Transform -- uid: 15036 - type: CableApcExtension - components: - - pos: 49.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15037 - type: CableApcExtension - components: - - pos: 50.5,-20.5 - parent: 0 - type: Transform -- uid: 15038 - type: CableApcExtension - components: - - pos: 51.5,-20.5 - parent: 0 - type: Transform -- uid: 15039 - type: CableApcExtension - components: - - pos: 52.5,-20.5 - parent: 0 - type: Transform -- uid: 15040 - type: CableApcExtension - components: - - pos: 52.5,-19.5 - parent: 0 - type: Transform -- uid: 15041 - type: CableApcExtension - components: - - pos: 52.5,-18.5 - parent: 0 - type: Transform -- uid: 15042 - type: CableApcExtension - components: - - pos: 52.5,-17.5 - parent: 0 - type: Transform -- uid: 15043 - type: CableApcExtension - components: - - pos: 52.5,-16.5 - parent: 0 - type: Transform -- uid: 15044 - type: CableApcExtension - components: - - pos: 52.5,-15.5 - parent: 0 - type: Transform -- uid: 15045 - type: CableApcExtension - components: - - pos: 52.5,-14.5 - parent: 0 - type: Transform -- uid: 15046 - type: CableApcExtension - components: - - pos: 52.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15047 - type: CableApcExtension - components: - - pos: 51.5,-16.5 - parent: 0 - type: Transform -- uid: 15048 - type: CableApcExtension - components: - - pos: 50.5,-16.5 - parent: 0 - type: Transform -- uid: 15049 - type: CableApcExtension - components: - - pos: 49.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15050 - type: CableApcExtension - components: - - pos: 53.5,-14.5 - parent: 0 - type: Transform -- uid: 15051 - type: CableApcExtension - components: - - pos: 54.5,-14.5 - parent: 0 - type: Transform -- uid: 15052 - type: CableApcExtension - components: - - pos: 54.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15053 - type: CableApcExtension - components: - - pos: 55.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15054 - type: CableApcExtension - components: - - pos: 53.5,-16.5 - parent: 0 - type: Transform -- uid: 15055 - type: CableApcExtension - components: - - pos: 54.5,-16.5 - parent: 0 - type: Transform -- uid: 15056 - type: CableApcExtension - components: - - pos: 55.5,-16.5 - parent: 0 - type: Transform -- uid: 15057 - type: CableApcExtension - components: - - pos: 56.5,-16.5 - parent: 0 - type: Transform -- uid: 15058 - type: CableApcExtension - components: - - pos: 55.5,-17.5 - parent: 0 - type: Transform -- uid: 15059 - type: CableApcExtension - components: - - pos: 55.5,-18.5 - parent: 0 - type: Transform -- uid: 15060 - type: CableApcExtension - components: - - pos: 55.5,-19.5 - parent: 0 - type: Transform -- uid: 15061 - type: CableApcExtension - components: - - pos: 52.5,-21.5 - parent: 0 - type: Transform -- uid: 15062 - type: CableApcExtension - components: - - pos: 52.5,-22.5 - parent: 0 - type: Transform -- uid: 15063 - type: CableApcExtension - components: - - pos: 52.5,-23.5 - parent: 0 - type: Transform -- uid: 15064 - type: CableApcExtension - components: - - pos: 53.5,-23.5 - parent: 0 - type: Transform -- uid: 15065 - type: CableApcExtension - components: - - pos: 54.5,-23.5 - parent: 0 - type: Transform -- uid: 15066 - type: CableApcExtension - components: - - pos: 55.5,-23.5 - parent: 0 - type: Transform -- uid: 15067 - type: CableApcExtension - components: - - pos: 56.5,-23.5 - parent: 0 - type: Transform -- uid: 15068 - type: CableApcExtension - components: - - pos: 49.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15069 - type: CableApcExtension - components: - - pos: 49.5,-25.5 - parent: 0 - type: Transform -- uid: 15070 - type: CableApcExtension - components: - - pos: 49.5,-26.5 - parent: 0 - type: Transform -- uid: 15071 - type: CableApcExtension - components: - - pos: 50.5,-26.5 - parent: 0 - type: Transform -- uid: 15072 - type: CableApcExtension - components: - - pos: 51.5,-26.5 - parent: 0 - type: Transform -- uid: 15073 - type: CableApcExtension - components: - - pos: 52.5,-26.5 - parent: 0 - type: Transform -- uid: 15074 - type: CableApcExtension - components: - - pos: 48.5,-26.5 - parent: 0 - type: Transform -- uid: 15075 - type: CableApcExtension - components: - - pos: 47.5,-26.5 - parent: 0 - type: Transform -- uid: 15076 - type: CableApcExtension - components: - - pos: 46.5,-26.5 - parent: 0 - type: Transform -- uid: 15077 - type: CableApcExtension - components: - - pos: 45.5,-26.5 - parent: 0 - type: Transform -- uid: 15078 - type: CableApcExtension - components: - - pos: 44.5,-26.5 - parent: 0 - type: Transform -- uid: 15079 - type: CableApcExtension - components: - - pos: 43.5,-26.5 - parent: 0 - type: Transform -- uid: 15080 - type: CableApcExtension - components: - - pos: 42.5,-26.5 - parent: 0 - type: Transform -- uid: 15081 - type: CableApcExtension - components: - - pos: 41.5,-26.5 - parent: 0 - type: Transform -- uid: 15082 - type: CableApcExtension - components: - - pos: 40.5,-26.5 - parent: 0 - type: Transform -- uid: 15083 - type: CableApcExtension - components: - - pos: 39.5,-26.5 - parent: 0 - type: Transform -- uid: 15084 - type: CableApcExtension - components: - - pos: 38.5,-26.5 - parent: 0 - type: Transform -- uid: 15085 - type: CableApcExtension - components: - - pos: 43.5,-25.5 - parent: 0 - type: Transform -- uid: 15086 - type: CableApcExtension - components: - - pos: 43.5,-24.5 - parent: 0 - type: Transform -- uid: 15087 - type: CableApcExtension - components: - - pos: 43.5,-23.5 - parent: 0 - type: Transform -- uid: 15088 - type: CableApcExtension - components: - - pos: 43.5,-22.5 - parent: 0 - type: Transform -- uid: 15089 - type: CableApcExtension - components: - - pos: 43.5,-21.5 - parent: 0 - type: Transform -- uid: 15090 - type: CableApcExtension - components: - - pos: 43.5,-20.5 - parent: 0 - type: Transform -- uid: 15091 - type: CableApcExtension - components: - - pos: 43.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15092 - type: CableApcExtension - components: - - pos: 42.5,-20.5 - parent: 0 - type: Transform -- uid: 15093 - type: CableApcExtension - components: - - pos: 41.5,-20.5 - parent: 0 - type: Transform -- uid: 15094 - type: CableApcExtension - components: - - pos: 41.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15095 - type: CableApcExtension - components: - - pos: 44.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15096 - type: CableApcExtension - components: - - pos: 42.5,-23.5 - parent: 0 - type: Transform -- uid: 15097 - type: CableApcExtension - components: - - pos: 41.5,-23.5 - parent: 0 - type: Transform -- uid: 15098 - type: CableApcExtension - components: - - pos: 41.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15099 - type: CableApcExtension - components: - - pos: 47.5,-25.5 - parent: 0 - type: Transform -- uid: 15100 - type: CableApcExtension - components: - - pos: 47.5,-24.5 - parent: 0 - type: Transform -- uid: 15101 - type: CableApcExtension - components: - - pos: 47.5,-23.5 - parent: 0 - type: Transform -- uid: 15102 - type: CableApcExtension - components: - - pos: 47.5,-22.5 - parent: 0 - type: Transform -- uid: 15103 - type: CableApcExtension - components: - - pos: 47.5,-21.5 - parent: 0 - type: Transform -- uid: 15104 - type: CableApcExtension - components: - - pos: 46.5,-21.5 - parent: 0 - type: Transform -- uid: 15105 - type: CableApcExtension - components: - - pos: 45.5,-21.5 - parent: 0 - type: Transform -- uid: 15106 - type: CableApcExtension - components: - - pos: 45.5,-22.5 - parent: 0 - type: Transform -- uid: 15107 - type: CableApcExtension - components: - - pos: 40.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15108 - type: CableApcExtension - components: - - pos: 41.5,-34.5 - parent: 0 - type: Transform -- uid: 15109 - type: CableApcExtension - components: - - pos: 42.5,-34.5 - parent: 0 - type: Transform -- uid: 15110 - type: CableApcExtension - components: - - pos: 43.5,-34.5 - parent: 0 - type: Transform -- uid: 15111 - type: CableApcExtension - components: - - pos: 41.5,-33.5 - parent: 0 - type: Transform -- uid: 15112 - type: CableApcExtension - components: - - pos: 41.5,-32.5 - parent: 0 - type: Transform -- uid: 15113 - type: CableApcExtension - components: - - pos: 41.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15114 - type: CableApcExtension - components: - - pos: 41.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15115 - type: CableApcExtension - components: - - pos: 42.5,-32.5 - parent: 0 - type: Transform -- uid: 15116 - type: CableApcExtension - components: - - pos: 43.5,-32.5 - parent: 0 - type: Transform -- uid: 15117 - type: CableApcExtension - components: - - pos: 44.5,-32.5 - parent: 0 - type: Transform -- uid: 15118 - type: CableApcExtension - components: - - pos: 45.5,-32.5 - parent: 0 - type: Transform -- uid: 15119 - type: CableApcExtension - components: - - pos: 45.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15120 - type: CableApcExtension - components: - - pos: 45.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15121 - type: CableApcExtension - components: - - pos: 44.5,-34.5 - parent: 0 - type: Transform -- uid: 15122 - type: CableApcExtension - components: - - pos: 44.5,-35.5 - parent: 0 - type: Transform -- uid: 15123 - type: CableApcExtension - components: - - pos: 44.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15124 - type: CableApcExtension - components: - - pos: 44.5,-37.5 - parent: 0 - type: Transform -- uid: 15125 - type: CableApcExtension - components: - - pos: 44.5,-38.5 - parent: 0 - type: Transform -- uid: 15126 - type: CableApcExtension - components: - - pos: 44.5,-39.5 - parent: 0 - type: Transform -- uid: 15127 - type: CableApcExtension - components: - - pos: 43.5,-39.5 - parent: 0 - type: Transform -- uid: 15128 - type: CableApcExtension - components: - - pos: 42.5,-39.5 - parent: 0 - type: Transform -- uid: 15129 - type: CableApcExtension - components: - - pos: 41.5,-39.5 - parent: 0 - type: Transform -- uid: 15130 - type: CableApcExtension - components: - - pos: 35.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15131 - type: CableApcExtension - components: - - pos: 35.5,-33.5 - parent: 0 - type: Transform -- uid: 15132 - type: CableApcExtension - components: - - pos: 35.5,-34.5 - parent: 0 - type: Transform -- uid: 15133 - type: CableApcExtension - components: - - pos: 35.5,-35.5 - parent: 0 - type: Transform -- uid: 15134 - type: CableApcExtension - components: - - pos: 34.5,-34.5 - parent: 0 - type: Transform -- uid: 15135 - type: CableApcExtension - components: - - pos: 33.5,-34.5 - parent: 0 - type: Transform -- uid: 15136 - type: CableApcExtension - components: - - pos: 32.5,-34.5 - parent: 0 - type: Transform -- uid: 15137 - type: CableApcExtension - components: - - pos: 31.5,-34.5 - parent: 0 - type: Transform -- uid: 15138 - type: CableApcExtension - components: - - pos: 30.5,-34.5 - parent: 0 - type: Transform -- uid: 15139 - type: CableApcExtension - components: - - pos: 29.5,-34.5 - parent: 0 - type: Transform -- uid: 15140 - type: CableApcExtension - components: - - pos: 36.5,-34.5 - parent: 0 - type: Transform -- uid: 15141 - type: CableApcExtension - components: - - pos: 37.5,-34.5 - parent: 0 - type: Transform -- uid: 15142 - type: CableApcExtension - components: - - pos: 38.5,-34.5 - parent: 0 - type: Transform -- uid: 15143 - type: CableApcExtension - components: - - pos: 38.5,-35.5 - parent: 0 - type: Transform -- uid: 15144 - type: CableApcExtension - components: - - pos: 38.5,-36.5 - parent: 0 - type: Transform -- uid: 15145 - type: CableApcExtension - components: - - pos: 38.5,-37.5 - parent: 0 - type: Transform -- uid: 15146 - type: CableApcExtension - components: - - pos: 38.5,-38.5 - parent: 0 - type: Transform -- uid: 15147 - type: CableApcExtension - components: - - pos: 38.5,-39.5 - parent: 0 - type: Transform -- uid: 15148 - type: CableApcExtension - components: - - pos: 37.5,-38.5 - parent: 0 - type: Transform -- uid: 15149 - type: CableApcExtension - components: - - pos: 36.5,-38.5 - parent: 0 - type: Transform -- uid: 15150 - type: CableApcExtension - components: - - pos: 35.5,-38.5 - parent: 0 - type: Transform -- uid: 15151 - type: CableApcExtension - components: - - pos: 34.5,-38.5 - parent: 0 - type: Transform -- uid: 15152 - type: CableApcExtension - components: - - pos: 33.5,-38.5 - parent: 0 - type: Transform -- uid: 15153 - type: CableApcExtension - components: - - pos: 32.5,-38.5 - parent: 0 - type: Transform -- uid: 15154 - type: CableApcExtension - components: - - pos: 31.5,-38.5 - parent: 0 - type: Transform -- uid: 15155 - type: CableApcExtension - components: - - pos: 31.5,-39.5 - parent: 0 - type: Transform -- uid: 15156 - type: CableApcExtension - components: - - pos: 30.5,-39.5 - parent: 0 - type: Transform -- uid: 15157 - type: CableApcExtension - components: - - pos: 29.5,-39.5 - parent: 0 - type: Transform -- uid: 15158 - type: CableApcExtension - components: - - pos: 29.5,-38.5 - parent: 0 - type: Transform -- uid: 15159 - type: CableApcExtension - components: - - pos: 33.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15160 - type: CableApcExtension - components: - - pos: 32.5,-31.5 - parent: 0 - type: Transform -- uid: 15161 - type: CableApcExtension - components: - - pos: 31.5,-31.5 - parent: 0 - type: Transform -- uid: 15162 - type: CableApcExtension - components: - - pos: 31.5,-30.5 - parent: 0 - type: Transform -- uid: 15163 - type: CableApcExtension - components: - - pos: 31.5,-29.5 - parent: 0 - type: Transform -- uid: 15164 - type: CableApcExtension - components: - - pos: 31.5,-28.5 - parent: 0 - type: Transform -- uid: 15165 - type: CableApcExtension - components: - - pos: 34.5,-31.5 - parent: 0 - type: Transform -- uid: 15166 - type: CableApcExtension - components: - - pos: 34.5,-30.5 - parent: 0 - type: Transform -- uid: 15167 - type: CableApcExtension - components: - - pos: 34.5,-29.5 - parent: 0 - type: Transform -- uid: 15168 - type: CableApcExtension - components: - - pos: 38.5,-33.5 - parent: 0 - type: Transform -- uid: 15169 - type: CableApcExtension - components: - - pos: 38.5,-32.5 - parent: 0 - type: Transform -- uid: 15170 - type: CableApcExtension - components: - - pos: 38.5,-31.5 - parent: 0 - type: Transform -- uid: 15171 - type: CableApcExtension - components: - - pos: 38.5,-30.5 - parent: 0 - type: Transform -- uid: 15172 - type: CableApcExtension - components: - - pos: 38.5,-29.5 - parent: 0 - type: Transform -- uid: 15173 - type: CableApcExtension - components: - - pos: 46.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15174 - type: CableApcExtension - components: - - pos: 47.5,-40.5 - parent: 0 - type: Transform -- uid: 15175 - type: CableApcExtension - components: - - pos: 48.5,-40.5 - parent: 0 - type: Transform -- uid: 15176 - type: CableApcExtension - components: - - pos: 49.5,-40.5 - parent: 0 - type: Transform -- uid: 15177 - type: CableApcExtension - components: - - pos: 49.5,-41.5 - parent: 0 - type: Transform -- uid: 15178 - type: CableApcExtension - components: - - pos: 49.5,-42.5 - parent: 0 - type: Transform -- uid: 15179 - type: CableApcExtension - components: - - pos: 49.5,-43.5 - parent: 0 - type: Transform -- uid: 15180 - type: CableApcExtension - components: - - pos: 50.5,-42.5 - parent: 0 - type: Transform -- uid: 15181 - type: CableApcExtension - components: - - pos: 51.5,-42.5 - parent: 0 - type: Transform -- uid: 15182 - type: CableApcExtension - components: - - pos: 52.5,-42.5 - parent: 0 - type: Transform -- uid: 15183 - type: CableApcExtension - components: - - pos: 49.5,-39.5 - parent: 0 - type: Transform -- uid: 15184 - type: CableApcExtension - components: - - pos: 49.5,-38.5 - parent: 0 - type: Transform -- uid: 15185 - type: CableApcExtension - components: - - pos: 50.5,-38.5 - parent: 0 - type: Transform -- uid: 15186 - type: CableApcExtension - components: - - pos: 51.5,-38.5 - parent: 0 - type: Transform -- uid: 15187 - type: CableApcExtension - components: - - pos: 52.5,-38.5 - parent: 0 - type: Transform -- uid: 15188 - type: CableApcExtension - components: - - pos: 53.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15189 - type: CableApcExtension - components: - - pos: 53.5,-29.5 - parent: 0 - type: Transform -- uid: 15190 - type: CableApcExtension - components: - - pos: 53.5,-30.5 - parent: 0 - type: Transform -- uid: 15191 - type: CableApcExtension - components: - - pos: 53.5,-31.5 - parent: 0 - type: Transform -- uid: 15192 - type: CableApcExtension - components: - - pos: 53.5,-32.5 - parent: 0 - type: Transform -- uid: 15193 - type: CableApcExtension - components: - - pos: 53.5,-33.5 - parent: 0 - type: Transform -- uid: 15194 - type: CableApcExtension - components: - - pos: 53.5,-34.5 - parent: 0 - type: Transform -- uid: 15195 - type: CableApcExtension - components: - - pos: 53.5,-35.5 - parent: 0 - type: Transform -- uid: 15196 - type: CableApcExtension - components: - - pos: 54.5,-30.5 - parent: 0 - type: Transform -- uid: 15197 - type: CableApcExtension - components: - - pos: 55.5,-30.5 - parent: 0 - type: Transform -- uid: 15198 - type: CableApcExtension - components: - - pos: 56.5,-30.5 - parent: 0 - type: Transform -- uid: 15199 - type: CableApcExtension - components: - - pos: 57.5,-30.5 - parent: 0 - type: Transform -- uid: 15200 - type: CableApcExtension - components: - - pos: 58.5,-30.5 - parent: 0 - type: Transform -- uid: 15201 - type: CableApcExtension - components: - - pos: 58.5,-29.5 - parent: 0 - type: Transform -- uid: 15202 - type: CableApcExtension - components: - - pos: 58.5,-28.5 - parent: 0 - type: Transform -- uid: 15203 - type: CableApcExtension - components: - - pos: 58.5,-27.5 - parent: 0 - type: Transform -- uid: 15204 - type: CableApcExtension - components: - - pos: 58.5,-26.5 - parent: 0 - type: Transform -- uid: 15205 - type: CableApcExtension - components: - - pos: 59.5,-26.5 - parent: 0 - type: Transform -- uid: 15206 - type: CableApcExtension - components: - - pos: 60.5,-26.5 - parent: 0 - type: Transform -- uid: 15207 - type: CableApcExtension - components: - - pos: 61.5,-26.5 - parent: 0 - type: Transform -- uid: 15208 - type: CableApcExtension - components: - - pos: 61.5,-27.5 - parent: 0 - type: Transform -- uid: 15209 - type: CableApcExtension - components: - - pos: 61.5,-28.5 - parent: 0 - type: Transform -- uid: 15210 - type: CableApcExtension - components: - - pos: 61.5,-29.5 - parent: 0 - type: Transform -- uid: 15211 - type: CableApcExtension - components: - - pos: 61.5,-30.5 - parent: 0 - type: Transform -- uid: 15212 - type: CableApcExtension - components: - - pos: 56.5,-31.5 - parent: 0 - type: Transform -- uid: 15213 - type: CableApcExtension - components: - - pos: 56.5,-32.5 - parent: 0 - type: Transform -- uid: 15214 - type: CableApcExtension - components: - - pos: 56.5,-33.5 - parent: 0 - type: Transform -- uid: 15215 - type: CableApcExtension - components: - - pos: 56.5,-34.5 - parent: 0 - type: Transform -- uid: 15216 - type: CableApcExtension - components: - - pos: 56.5,-35.5 - parent: 0 - type: Transform -- uid: 15217 - type: CableApcExtension - components: - - pos: 56.5,-36.5 - parent: 0 - type: Transform -- uid: 15218 - type: CableApcExtension - components: - - pos: 56.5,-37.5 - parent: 0 - type: Transform -- uid: 15219 - type: CableApcExtension - components: - - pos: 56.5,-38.5 - parent: 0 - type: Transform -- uid: 15220 - type: CableApcExtension - components: - - pos: 56.5,-39.5 - parent: 0 - type: Transform -- uid: 15221 - type: CableApcExtension - components: - - pos: 56.5,-40.5 - parent: 0 - type: Transform -- uid: 15222 - type: CableApcExtension - components: - - pos: 56.5,-41.5 - parent: 0 - type: Transform -- uid: 15223 - type: CableApcExtension - components: - - pos: 57.5,-41.5 - parent: 0 - type: Transform -- uid: 15224 - type: CableApcExtension - components: - - pos: 58.5,-41.5 - parent: 0 - type: Transform -- uid: 15225 - type: CableApcExtension - components: - - pos: 59.5,-41.5 - parent: 0 - type: Transform -- uid: 15226 - type: CableApcExtension - components: - - pos: 60.5,-41.5 - parent: 0 - type: Transform -- uid: 15227 - type: CableApcExtension - components: - - pos: 61.5,-41.5 - parent: 0 - type: Transform -- uid: 15228 - type: CableApcExtension - components: - - pos: 62.5,-41.5 - parent: 0 - type: Transform -- uid: 15229 - type: CableApcExtension - components: - - pos: 62.5,-40.5 - parent: 0 - type: Transform -- uid: 15230 - type: CableApcExtension - components: - - pos: 62.5,-39.5 - parent: 0 - type: Transform -- uid: 15231 - type: CableApcExtension - components: - - pos: 62.5,-38.5 - parent: 0 - type: Transform -- uid: 15232 - type: CableApcExtension - components: - - pos: 62.5,-37.5 - parent: 0 - type: Transform -- uid: 15233 - type: CableApcExtension - components: - - pos: 62.5,-36.5 - parent: 0 - type: Transform -- uid: 15234 - type: CableApcExtension - components: - - pos: 62.5,-35.5 - parent: 0 - type: Transform -- uid: 15235 - type: CableApcExtension - components: - - pos: 57.5,-27.5 - parent: 0 - type: Transform -- uid: 15236 - type: AirlockMaintRnDLocked - components: - - pos: 26.5,-25.5 - parent: 0 - type: Transform -- uid: 15237 - type: AirlockScienceLocked - components: - - pos: 38.5,-40.5 - parent: 0 - type: Transform -- uid: 15238 - type: AirlockScienceLocked - components: - - pos: 56.5,-42.5 - parent: 0 - type: Transform -- uid: 15239 - type: AirlockScienceLocked - components: - - pos: 56.5,-44.5 - parent: 0 - type: Transform -- uid: 15240 - type: AirlockScienceGlassLocked - components: - - pos: 36.5,-38.5 - parent: 0 - type: Transform -- uid: 15241 - type: AirlockScienceGlassLocked - components: - - pos: 36.5,-34.5 - parent: 0 - type: Transform -- uid: 15242 - type: AirlockScienceGlassLocked - components: - - pos: 40.5,-38.5 - parent: 0 - type: Transform -- uid: 15243 - type: AirlockScienceLocked - components: - - pos: 46.5,-34.5 - parent: 0 - type: Transform -- uid: 15244 - type: AirlockScienceGlassLocked - components: - - pos: 50.5,-33.5 - parent: 0 - type: Transform -- uid: 15245 - type: AirlockScienceGlassLocked - components: - - pos: 59.5,-26.5 - parent: 0 - type: Transform -- uid: 15246 - type: AirlockScienceGlassLocked - components: - - pos: 61.5,-28.5 - parent: 0 - type: Transform -- uid: 15247 - type: AirlockScienceLocked - components: - - pos: 56.5,-36.5 - parent: 0 - type: Transform -- uid: 15248 - type: AirlockScienceLocked - components: - - pos: 58.5,-41.5 - parent: 0 - type: Transform -- uid: 15249 - type: AirlockScienceLocked - components: - - pos: 45.5,-24.5 - parent: 0 - type: Transform -- uid: 15250 - type: AirlockScienceLocked - components: - - pos: 47.5,-24.5 - parent: 0 - type: Transform -- uid: 15251 - type: AirlockScienceLocked - components: - - pos: 47.5,-20.5 - parent: 0 - type: Transform -- uid: 15252 - type: AirlockScienceLocked - components: - - pos: 45.5,-20.5 - parent: 0 - type: Transform -- uid: 15253 - type: AirlockScienceLocked - components: - - pos: 52.5,-21.5 - parent: 0 - type: Transform -- uid: 15254 - type: AirlockScienceLocked - components: - - pos: 38.5,-24.5 - parent: 0 - type: Transform -- uid: 15255 - type: AirlockScienceLocked - components: - - pos: 28.5,-18.5 - parent: 0 - type: Transform -- uid: 15256 - type: AirlockScienceGlassLocked - components: - - pos: 31.5,-22.5 - parent: 0 - type: Transform -- uid: 15257 - type: WindoorScienceLocked - components: - - pos: 38.5,-18.5 - parent: 0 - type: Transform -- uid: 15258 - type: WindoorScienceLocked - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-15.5 - parent: 0 - type: Transform -- uid: 15259 - type: WindoorScienceLocked - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-17.5 - parent: 0 - type: Transform -- uid: 15260 - type: SignRobo - components: - - pos: 31.5,-18.5 - parent: 0 - type: Transform -- uid: 15261 - type: SignRND - components: - - pos: 49.5,-14.5 - parent: 0 - type: Transform -- uid: 15262 - type: SignScience - components: - - pos: 45.5,-12.5 - parent: 0 - type: Transform -- uid: 15263 - type: SignScience - components: - - pos: 39.5,-12.5 - parent: 0 - type: Transform -- uid: 15264 - type: AirlockSecurityGlassLocked - components: - - pos: 43.5,-24.5 - parent: 0 - type: Transform -- uid: 15265 - type: AirlockSecurityGlassLocked - components: - - pos: 42.5,-19.5 - parent: 0 - type: Transform -- uid: 15266 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-18.5 - parent: 0 - type: Transform -- uid: 15267 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 43.5,-18.5 - parent: 0 - type: Transform -- uid: 15268 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-18.5 - parent: 0 - type: Transform -- uid: 15269 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 41.5,-18.5 - parent: 0 - type: Transform -- uid: 15270 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-23.5 - parent: 0 - type: Transform -- uid: 15271 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-24.5 - parent: 0 - type: Transform -- uid: 15272 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-25.5 - parent: 0 - type: Transform -- uid: 15273 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-25.5 - parent: 0 - type: Transform -- uid: 15274 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-24.5 - parent: 0 - type: Transform -- uid: 15275 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-23.5 - parent: 0 - type: Transform -- uid: 15276 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 51.5,-23.5 - parent: 0 - type: Transform -- uid: 15277 - type: WindowReinforcedDirectional - components: - - pos: 51.5,-25.5 - parent: 0 - type: Transform -- uid: 15278 - type: CableApcExtension - components: - - pos: 25.5,-1.5 - parent: 0 - type: Transform -- uid: 15279 - type: CableApcExtension - components: - - pos: 26.5,-1.5 - parent: 0 - type: Transform -- uid: 15280 - type: CableApcExtension - components: - - pos: 27.5,-1.5 - parent: 0 - type: Transform -- uid: 15281 - type: CableApcExtension - components: - - pos: 28.5,-1.5 - parent: 0 - type: Transform -- uid: 15282 - type: CableApcExtension - components: - - pos: 29.5,-1.5 - parent: 0 - type: Transform -- uid: 15283 - type: CableApcExtension - components: - - pos: 30.5,-1.5 - parent: 0 - type: Transform -- uid: 15284 - type: CableApcExtension - components: - - pos: 31.5,-1.5 - parent: 0 - type: Transform -- uid: 15285 - type: CableApcExtension - components: - - pos: 32.5,-1.5 - parent: 0 - type: Transform -- uid: 15286 - type: CableApcExtension - components: - - pos: 33.5,-1.5 - parent: 0 - type: Transform -- uid: 15287 - type: CableApcExtension - components: - - pos: 34.5,-1.5 - parent: 0 - type: Transform -- uid: 15288 - type: CableApcExtension - components: - - pos: 35.5,-1.5 - parent: 0 - type: Transform -- uid: 15289 - type: CableApcExtension - components: - - pos: 36.5,-1.5 - parent: 0 - type: Transform -- uid: 15290 - type: CableApcExtension - components: - - pos: 37.5,-1.5 - parent: 0 - type: Transform -- uid: 15291 - type: CableApcExtension - components: - - pos: 38.5,-1.5 - parent: 0 - type: Transform -- uid: 15292 - type: CableApcExtension - components: - - pos: 39.5,-1.5 - parent: 0 - type: Transform -- uid: 15293 - type: CableApcExtension - components: - - pos: 33.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15294 - type: CableApcExtension - components: - - pos: 33.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15295 - type: CableApcExtension - components: - - pos: 33.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15296 - type: CableApcExtension - components: - - pos: 33.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15297 - type: CableApcExtension - components: - - pos: 33.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15298 - type: CableApcExtension - components: - - pos: 33.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15299 - type: CableApcExtension - components: - - pos: 33.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15300 - type: CableApcExtension - components: - - pos: 33.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15301 - type: BlastDoor - components: - - pos: 60.5,-31.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15398 - type: SignalReceiver -- uid: 15302 - type: BlastDoor - components: - - pos: 61.5,-31.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15398 - type: SignalReceiver -- uid: 15303 - type: BlastDoor - components: - - pos: 62.5,-31.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15398 - type: SignalReceiver -- uid: 15304 - type: ShuttersNormal - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-20.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15306 - type: SignalReceiver -- uid: 15305 - type: ShuttersNormal - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-19.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15306 - type: SignalReceiver -- uid: 15306 - type: SignalButton - components: - - pos: 31.5,-21.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15304 - - port: Toggle - uid: 15305 - type: SignalTransmitter -- uid: 15307 - type: ExosuitFabricator - components: - - pos: 34.5,-19.5 - parent: 0 - type: Transform -- uid: 15308 - type: ExosuitFabricator - components: - - pos: 36.5,-19.5 - parent: 0 - type: Transform -- uid: 15309 - type: CircuitImprinter - components: - - pos: 35.5,-19.5 - parent: 0 - type: Transform -- uid: 15310 - type: filingCabinetDrawerRandom - components: - - pos: 37.5,-19.5 - parent: 0 - type: Transform -- uid: 15311 - type: Table - components: - - pos: 39.5,-19.5 - parent: 0 - type: Transform -- uid: 15312 - type: Table - components: - - pos: 39.5,-20.5 - parent: 0 - type: Transform -- uid: 15313 - type: Table - components: - - pos: 39.5,-21.5 - parent: 0 - type: Transform -- uid: 15314 - type: ComputerResearchAndDevelopment - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-22.5 - parent: 0 - type: Transform -- uid: 15315 - type: ClosetEmergencyFilledRandom - components: - - pos: 48.5,-23.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15316 - type: ClosetFireFilled - components: - - pos: 48.5,-22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15317 - type: FloorDrain - components: - - pos: 48.5,-21.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 15318 - type: SinkWide - components: - - pos: 48.5,-21.5 - parent: 0 - type: Transform -- uid: 15319 - type: PosterLegitSafetyEyeProtection - components: - - pos: 48.5,-20.5 - parent: 0 - type: Transform -- uid: 15320 - type: Grille - components: - - pos: 51.5,-28.5 - parent: 0 - type: Transform -- uid: 15321 - type: PlasticFlapsAirtightClear - components: - - pos: 52.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15322 - type: Grille - components: - - pos: 54.5,-27.5 - parent: 0 - type: Transform -- uid: 15323 - type: Grille - components: - - pos: 54.5,-26.5 - parent: 0 - type: Transform -- uid: 15324 - type: WindoorScienceLocked - components: - - rot: 3.141592653589793 rad - pos: 50.5,-21.5 - parent: 0 - type: Transform -- uid: 15325 - type: WindoorScienceLocked - components: - - pos: 53.5,-13.5 - parent: 0 - type: Transform -- uid: 15326 - type: WindowReinforcedDirectional - components: - - pos: 53.5,-31.5 - parent: 0 - type: Transform -- uid: 15327 - type: WindowReinforcedDirectional - components: - - pos: 52.5,-31.5 - parent: 0 - type: Transform -- uid: 15328 - type: WindowReinforcedDirectional - components: - - pos: 51.5,-31.5 - parent: 0 - type: Transform -- uid: 15329 - type: WindoorScienceLocked - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-30.5 - parent: 0 - type: Transform -- uid: 15330 - type: VendingMachineSciDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 56.5,-24.5 - parent: 0 - type: Transform -- uid: 15331 - type: MopBucket - components: - - pos: 55.51436,-24.471094 - parent: 0 - type: Transform -- uid: 15332 - type: MopItem - components: - - pos: 55.54561,-24.48672 - parent: 0 - type: Transform -- uid: 15333 - type: SinkEmpty - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-22.5 - parent: 0 - type: Transform -- uid: 15334 - type: Table - components: - - pos: 55.5,-22.5 - parent: 0 - type: Transform -- uid: 15335 - type: BoxSurvivalSyndicate - components: - - pos: 55.45186,-22.33047 - parent: 0 - type: Transform -- uid: 15336 - type: WallSolid - components: - - pos: 44.5,-18.5 - parent: 0 - type: Transform -- uid: 15337 - type: IntercomScience - components: - - pos: 47.5,-13.5 - parent: 0 - type: Transform -- uid: 15338 - type: PosterLegitSafetyInternals - components: - - pos: 48.5,-24.5 - parent: 0 - type: Transform -- uid: 15339 - type: SignSecureSmall - components: - - pos: 46.5,-24.5 - parent: 0 - type: Transform -- uid: 15340 - type: SignSecureSmall - components: - - pos: 46.5,-20.5 - parent: 0 - type: Transform -- uid: 15341 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-21.5 - parent: 0 - type: Transform -- uid: 15342 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-22.5 - parent: 0 - type: Transform -- uid: 15343 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-22.5 - parent: 0 - type: Transform -- uid: 15344 - type: TableReinforced - components: - - pos: 42.5,-23.5 - parent: 0 - type: Transform -- uid: 15345 - type: TableReinforced - components: - - pos: 41.5,-23.5 - parent: 0 - type: Transform -- uid: 15346 - type: WeaponCapacitorRecharger - components: - - pos: 41.5,-23.5 - parent: 0 - type: Transform -- uid: 15347 - type: PottedPlant18 - components: - - pos: 41.5,-20.5 - parent: 0 - type: Transform -- uid: 15348 - type: LockerEvidence - components: - - pos: 43.5,-20.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15349 - type: PaperBin5 - components: - - pos: 42.5,-23.5 - parent: 0 - type: Transform -- uid: 15350 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15351 - type: Poweredlight - components: - - pos: 46.5,-21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15352 - type: Poweredlight - components: - - pos: 34.5,-14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15353 - type: Poweredlight - components: - - pos: 28.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15354 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15355 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15356 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15357 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15358 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15359 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15360 - type: Poweredlight - components: - - pos: 48.5,-14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15361 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15362 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 46.5,-27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15363 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15364 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 55.5,-24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15365 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-29.5 - parent: 0 - type: Transform -- uid: 15366 - type: ClosetBombFilled - components: - - pos: 51.5,-32.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15367 - type: ClosetRadiationSuitFilled - components: - - pos: 52.5,-32.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15368 - type: ClosetFireFilled - components: - - pos: 53.5,-32.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15369 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15370 - type: GasPort - components: - - pos: 52.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15371 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15372 - type: GasMixer - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15373 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 54.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15374 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15375 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15376 - type: GasFilterFlipped - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15377 - type: GasThermoMachineFreezer - components: - - pos: 57.5,-34.5 - parent: 0 - type: Transform -- uid: 15378 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 57.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15379 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15380 - type: GasPort - components: - - pos: 55.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15381 - type: GasPort - components: - - pos: 56.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15382 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15383 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15384 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15385 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15386 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15387 - type: GasMixer - components: - - pos: 56.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15388 - type: GasValve - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-30.5 - parent: 0 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 15389 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 56.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15390 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15391 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15392 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15393 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 56.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15394 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 56.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15395 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 55.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15396 - type: MachineArtifactAnalyzer - components: - - pos: 61.5,-30.5 - parent: 0 - type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 15397 - type: SignalReceiver -- uid: 15397 - type: ComputerAnalysisConsole - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-31.5 - parent: 0 - type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 15396 - type: SignalTransmitter -- uid: 15398 - type: SignalButton - components: - - pos: 59.5,-28.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15301 - - port: Toggle - uid: 15302 - - port: Toggle - uid: 15303 - type: SignalTransmitter -- uid: 15399 - type: Table - components: - - pos: 55.5,-35.5 - parent: 0 - type: Transform -- uid: 15400 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15401 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15402 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15403 - type: GasPipeTJunction - components: - - pos: 64.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15404 - type: GasPipeStraight - components: - - pos: 64.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15405 - type: GasPipeStraight - components: - - pos: 64.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15406 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-36.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15407 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 62.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15408 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 62.5,-38.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15409 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 62.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15410 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 62.5,-40.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15411 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-41.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15412 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-41.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15413 - type: GasPipeTJunction - components: - - pos: 60.5,-41.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15414 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-36.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15415 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-36.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15416 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-41.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15417 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 59.5,-42.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15418 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 60.5,-42.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 15419 - type: PortableScrubber - components: - - pos: 59.5,-42.5 - parent: 0 - type: Transform -- uid: 15420 - type: PortableScrubber - components: - - pos: 60.5,-42.5 - parent: 0 - type: Transform -- uid: 15421 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 55.5,-37.5 - parent: 0 - type: Transform -- uid: 15422 - type: OxygenCanister - components: - - pos: 57.5,-37.5 - parent: 0 - type: Transform -- uid: 15423 - type: NitrogenCanister - components: - - pos: 57.5,-38.5 - parent: 0 - type: Transform -- uid: 15424 - type: CarbonDioxideCanister - components: - - pos: 57.5,-39.5 - parent: 0 - type: Transform -- uid: 15425 - type: StorageCanister - components: - - pos: 57.5,-40.5 - parent: 0 - type: Transform -- uid: 15426 - type: CarbonDioxideCanister - components: - - pos: 59.5,-40.5 - parent: 0 - type: Transform -- uid: 15427 - type: OxygenCanister - components: - - pos: 59.5,-39.5 - parent: 0 - type: Transform -- uid: 15428 - type: OxygenCanister - components: - - pos: 60.5,-39.5 - parent: 0 - type: Transform -- uid: 15429 - type: OxygenCanister - components: - - pos: 61.5,-39.5 - parent: 0 - type: Transform -- uid: 15430 - type: NitrogenCanister - components: - - pos: 59.5,-38.5 - parent: 0 - type: Transform -- uid: 15431 - type: NitrogenCanister - components: - - pos: 60.5,-38.5 - parent: 0 - type: Transform -- uid: 15432 - type: NitrogenCanister - components: - - pos: 61.5,-38.5 - parent: 0 - type: Transform -- uid: 15433 - type: StorageCanister - components: - - pos: 59.5,-37.5 - parent: 0 - type: Transform -- uid: 15434 - type: StorageCanister - components: - - pos: 60.5,-37.5 - parent: 0 - type: Transform -- uid: 15435 - type: StorageCanister - components: - - pos: 61.5,-37.5 - parent: 0 - type: Transform -- uid: 15436 - type: NitrousOxideCanister - components: - - pos: 59.5,-36.5 - parent: 0 - type: Transform -- uid: 15437 - type: PlasmaCanister - components: - - pos: 59.5,-35.5 - parent: 0 - type: Transform -- uid: 15438 - type: CarbonDioxideCanister - components: - - pos: 60.5,-40.5 - parent: 0 - type: Transform -- uid: 15439 - type: AirCanister - components: - - pos: 55.5,-41.5 - parent: 0 - type: Transform -- uid: 15440 - type: AirCanister - components: - - pos: 55.5,-40.5 - parent: 0 - type: Transform -- uid: 15441 - type: PortableScrubber - components: - - pos: 55.5,-39.5 - parent: 0 - type: Transform -- uid: 15442 - type: PortableScrubber - components: - - pos: 55.5,-38.5 - parent: 0 - type: Transform -- uid: 15443 - type: AirlockResearchDirectorGlassLocked - components: - - pos: 33.5,-30.5 - parent: 0 - type: Transform -- uid: 15444 - type: AirlockResearchDirectorLocked - components: - - pos: 36.5,-30.5 - parent: 0 - type: Transform -- uid: 15445 - type: AirlockResearchDirectorLocked - components: - - pos: 48.5,-36.5 - parent: 0 - type: Transform -- uid: 15446 - type: AirlockResearchDirectorLocked - components: - - pos: 51.5,-38.5 - parent: 0 - type: Transform -- uid: 15447 - type: CarpetPurple - components: - - pos: 47.5,-38.5 - parent: 0 - type: Transform -- uid: 15448 - type: CarpetPurple - components: - - pos: 48.5,-38.5 - parent: 0 - type: Transform -- uid: 15449 - type: CarpetPurple - components: - - pos: 49.5,-38.5 - parent: 0 - type: Transform -- uid: 15450 - type: CarpetPurple - components: - - pos: 49.5,-39.5 - parent: 0 - type: Transform -- uid: 15451 - type: CarpetPurple - components: - - pos: 49.5,-40.5 - parent: 0 - type: Transform -- uid: 15452 - type: CarpetPurple - components: - - pos: 47.5,-40.5 - parent: 0 - type: Transform -- uid: 15453 - type: CarpetPurple - components: - - pos: 47.5,-39.5 - parent: 0 - type: Transform -- uid: 15454 - type: CarpetPurple - components: - - pos: 48.5,-40.5 - parent: 0 - type: Transform -- uid: 15455 - type: CarpetPurple - components: - - pos: 47.5,-41.5 - parent: 0 - type: Transform -- uid: 15456 - type: CarpetPurple - components: - - pos: 47.5,-42.5 - parent: 0 - type: Transform -- uid: 15457 - type: CarpetPurple - components: - - pos: 48.5,-41.5 - parent: 0 - type: Transform -- uid: 15458 - type: CarpetPurple - components: - - pos: 48.5,-42.5 - parent: 0 - type: Transform -- uid: 15459 - type: CarpetPurple - components: - - pos: 49.5,-41.5 - parent: 0 - type: Transform -- uid: 15460 - type: CarpetPurple - components: - - pos: 49.5,-42.5 - parent: 0 - type: Transform -- uid: 15461 - type: filingCabinetDrawerRandom - components: - - pos: 50.5,-37.5 - parent: 0 - type: Transform -- uid: 15462 - type: ComputerResearchAndDevelopment - components: - - pos: 49.5,-37.5 - parent: 0 - type: Transform -- uid: 15463 - type: CarpetPurple - components: - - pos: 52.5,-39.5 - parent: 0 - type: Transform -- uid: 15464 - type: CarpetPurple - components: - - pos: 52.5,-38.5 - parent: 0 - type: Transform -- uid: 15465 - type: CarpetPurple - components: - - pos: 53.5,-39.5 - parent: 0 - type: Transform -- uid: 15466 - type: CarpetPurple - components: - - pos: 53.5,-38.5 - parent: 0 - type: Transform -- uid: 15467 - type: LockerResearchDirectorFilled - components: - - pos: 53.5,-37.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15468 - type: BaseComputer - components: - - pos: 52.5,-37.5 - parent: 0 - type: Transform -- uid: 15469 - type: Bed - components: - - pos: 52.5,-39.5 - parent: 0 - type: Transform -- uid: 15470 - type: BedsheetRD - components: - - pos: 52.5,-39.5 - parent: 0 - type: Transform -- uid: 15471 - type: TableWood - components: - - pos: 53.5,-39.5 - parent: 0 - type: Transform -- uid: 15472 - type: Lamp - components: - - rot: 3.141592653589793 rad - pos: 53.52052,-39.05569 - parent: 0 - type: Transform -- uid: 15473 - type: TableReinforced - components: - - pos: 47.5,-41.5 - parent: 0 - type: Transform -- uid: 15474 - type: TableReinforced - components: - - pos: 48.5,-41.5 - parent: 0 - type: Transform -- uid: 15475 - type: TableReinforced - components: - - pos: 49.5,-41.5 - parent: 0 - type: Transform -- uid: 15476 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 48.5,-42.5 - parent: 0 - type: Transform -- uid: 15477 - type: ChairOfficeDark - components: - - pos: 47.5,-40.5 - parent: 0 - type: Transform -- uid: 15478 - type: ChairOfficeDark - components: - - pos: 48.5,-40.5 - parent: 0 - type: Transform -- uid: 15479 - type: ChairOfficeDark - components: - - pos: 49.5,-40.5 - parent: 0 - type: Transform -- uid: 15480 - type: Rack - components: - - pos: 53.5,-42.5 - parent: 0 - type: Transform -- uid: 15481 - type: TableReinforcedGlass - components: - - pos: 53.5,-41.5 - parent: 0 - type: Transform -- uid: 15482 - type: TableReinforcedGlass - components: - - pos: 53.5,-43.5 - parent: 0 - type: Transform -- uid: 15483 - type: Table - components: - - pos: 51.5,-43.5 - parent: 0 - type: Transform -- uid: 15484 - type: Table - components: - - pos: 50.5,-43.5 - parent: 0 - type: Transform -- uid: 15485 - type: ComputerResearchAndDevelopment - components: - - rot: 3.141592653589793 rad - pos: 48.5,-43.5 - parent: 0 - type: Transform -- uid: 15486 - type: ComputerAnalysisConsole - components: - - rot: 3.141592653589793 rad - pos: 47.5,-43.5 - parent: 0 - type: Transform -- uid: 15487 - type: BaseComputer - components: - - rot: 3.141592653589793 rad - pos: 49.5,-43.5 - parent: 0 - type: Transform -- uid: 15488 - type: PaperBin5 - components: - - pos: 49.5,-41.5 - parent: 0 - type: Transform -- uid: 15489 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 47.57671,-41.51732 - parent: 0 - type: Transform -- uid: 15490 - type: ClothingOuterHardsuitEVA - components: - - pos: 53.592335,-42.45482 - parent: 0 - type: Transform -- uid: 15491 - type: ClothingHeadHelmetEVA - components: - - pos: 53.29546,-42.48607 - parent: 0 - type: Transform -- uid: 15492 - type: PowerDrill - components: - - pos: 53.51421,-41.376694 - parent: 0 - type: Transform -- uid: 15493 - type: BoxFolderWhite - components: - - pos: 50.51421,-43.376694 - parent: 0 - type: Transform -- uid: 15494 - type: ClothingHeadsetScience - components: - - pos: 51.10796,-43.39232 - parent: 0 - type: Transform -- uid: 15495 - type: ClothingHeadsetScience - components: - - pos: 51.23296,-43.501694 - parent: 0 - type: Transform -- uid: 15496 - type: BoxFolderWhite - components: - - pos: 48.529835,-41.42357 - parent: 0 - type: Transform -- uid: 15497 - type: ResearchAndDevelopmentServer - components: - - pos: 31.5,-28.5 - parent: 0 - type: Transform -- uid: 15498 - type: ComputerResearchAndDevelopment - components: - - pos: 34.5,-28.5 - parent: 0 - type: Transform -- uid: 15499 - type: filingCabinetDrawerRandom - components: - - pos: 35.5,-28.5 - parent: 0 - type: Transform -- uid: 15500 - type: Table - components: - - pos: 35.5,-31.5 - parent: 0 - type: Transform -- uid: 15501 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 34.5,-29.5 - parent: 0 - type: Transform -- uid: 15502 - type: RandomArtifactSpawner - components: - - pos: 62.5,-26.5 - parent: 0 - type: Transform -- uid: 15503 - type: RandomArtifactSpawner - components: - - pos: 51.5,-30.5 - parent: 0 - type: Transform -- uid: 15504 - type: Protolathe - components: - - pos: 54.5,-16.5 - parent: 0 - type: Transform -- uid: 15505 - type: Autolathe - components: - - pos: 52.5,-16.5 - parent: 0 - type: Transform -- uid: 15506 - type: CircuitImprinter - components: - - pos: 54.5,-17.5 - parent: 0 - type: Transform -- uid: 15507 - type: ComputerResearchAndDevelopment - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-17.5 - parent: 0 - type: Transform -- uid: 15508 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-15.5 - parent: 0 - type: Transform -- uid: 15509 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-15.5 - parent: 0 - type: Transform -- uid: 15510 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-17.5 - parent: 0 - type: Transform -- uid: 15511 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-16.5 - parent: 0 - type: Transform -- uid: 15512 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-14.5 - parent: 0 - type: Transform -- uid: 15513 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-14.5 - parent: 0 - type: Transform -- uid: 15514 - type: PottedPlant0 - components: - - pos: 51.48726,-20.7995 - parent: 0 - type: Transform -- uid: 15515 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-20.5 - parent: 0 - type: Transform -- uid: 15516 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-20.5 - parent: 0 - type: Transform -- uid: 15517 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-20.5 - parent: 0 - type: Transform -- uid: 15518 - type: ChairOfficeDark - components: - - pos: 50.5,-20.5 - parent: 0 - type: Transform -- uid: 15519 - type: MachineFrame - components: - - pos: 56.5,-19.5 - parent: 0 - type: Transform -- uid: 15520 - type: Table - components: - - pos: 56.5,-14.5 - parent: 0 - type: Transform -- uid: 15521 - type: Table - components: - - pos: 56.5,-15.5 - parent: 0 - type: Transform -- uid: 15522 - type: Table - components: - - pos: 56.5,-16.5 - parent: 0 - type: Transform -- uid: 15523 - type: Table - components: - - pos: 55.5,-14.5 - parent: 0 - type: Transform -- uid: 15524 - type: PosterLegitScience - components: - - pos: 49.5,-18.5 - parent: 0 - type: Transform -- uid: 15525 - type: PowerCellRecharger - components: - - pos: 56.5,-15.5 - parent: 0 - type: Transform -- uid: 15526 - type: PottedPlant22 - components: - - pos: 48.5,-14.5 - parent: 0 - type: Transform -- uid: 15527 - type: FlashlightLantern - components: - - pos: 56.48937,-16.046814 - parent: 0 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 15528 - type: FlashlightLantern - components: - - pos: 56.55187,-16.249939 - parent: 0 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 15529 - type: CapacitorStockPart - components: - - pos: 56.27567,-20.315125 - parent: 0 - type: Transform -- uid: 15530 - type: CapacitorStockPart - components: - - pos: 56.49442,-20.471375 - parent: 0 - type: Transform -- uid: 15531 - type: MicroManipulatorStockPart - components: - - pos: 55.510044,-20.45575 - parent: 0 - type: Transform -- uid: 15532 - type: MicroLaserStockPart - components: - - pos: 54.353794,-20.39325 - parent: 0 - type: Transform -- uid: 15533 - type: MicroLaserStockPart - components: - - pos: 54.55692,-20.471375 - parent: 0 - type: Transform -- uid: 15534 - type: MatterBinStockPart - components: - - pos: 50.478794,-14.2057495 - parent: 0 - type: Transform -- uid: 15535 - type: SheetSteel - components: - - pos: 51.385044,-14.4557495 - parent: 0 - type: Transform -- uid: 15536 - type: SheetPlastic - components: - - pos: 55.58817,-14.4869995 - parent: 0 - type: Transform -- uid: 15537 - type: PowerCellSmallPrinted - components: - - pos: 56.572544,-15.1744995 - parent: 0 - type: Transform -- uid: 15538 - type: Chair - components: - - pos: 38.5,-14.5 - parent: 0 - type: Transform -- uid: 15539 - type: PottedPlant18 - components: - - pos: 36.5,-14.5 - parent: 0 - type: Transform -- uid: 15540 - type: WallReinforced - components: - - pos: 35.5,-13.5 - parent: 0 - type: Transform -- uid: 15541 - type: AirlockMaintLocked - components: - - pos: 32.5,-13.5 - parent: 0 - type: Transform -- uid: 15542 - type: AirlockMaintLocked - components: - - pos: 33.5,-4.5 - parent: 0 - type: Transform -- uid: 15543 - type: KitchenReagentGrinder - components: - - pos: 56.5,-14.5 - parent: 0 - type: Transform -- uid: 15544 - type: HandLabeler - components: - - pos: 50.70812,-14.562439 - parent: 0 - type: Transform -- uid: 15545 - type: BoxBeaker - components: - - pos: 54.973743,-20.234314 - parent: 0 - type: Transform -- uid: 15546 - type: ClothingEyesGlasses - components: - - pos: 56.473743,-16.515564 - parent: 0 - type: Transform -- uid: 15547 - type: UnfinishedMachineFrame - components: - - pos: 56.5,-18.5 - parent: 0 - type: Transform -- uid: 15548 - type: Wrench - components: - - pos: 55.880898,-20.359314 - parent: 0 - type: Transform -- uid: 15549 - type: Table - components: - - pos: 50.5,-16.5 - parent: 0 - type: Transform -- uid: 15550 - type: MountainRock - components: - - pos: 45.5,-44.5 - parent: 0 - type: Transform -- uid: 15551 - type: MountainRock - components: - - pos: 45.5,-43.5 - parent: 0 - type: Transform -- uid: 15552 - type: MountainRock - components: - - pos: 45.5,-42.5 - parent: 0 - type: Transform -- uid: 15553 - type: MountainRock - components: - - pos: 45.5,-41.5 - parent: 0 - type: Transform -- uid: 15554 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 45.5,-45.5 - parent: 0 - type: Transform -- uid: 15555 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-44.5 - parent: 0 - type: Transform -- uid: 15556 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-43.5 - parent: 0 - type: Transform -- uid: 15557 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-42.5 - parent: 0 - type: Transform -- uid: 15558 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-41.5 - parent: 0 - type: Transform -- uid: 15559 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-45.5 - parent: 0 - type: Transform -- uid: 15560 - type: SignAnomaly2 - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-33.5 - parent: 0 - type: Transform -- uid: 15561 - type: ExplosivesSignMed - components: - - pos: 59.5,-31.5 - parent: 0 - type: Transform -- uid: 15562 - type: SignFire - components: - - pos: 63.5,-31.5 - parent: 0 - type: Transform -- uid: 15563 - type: SignAnomaly2 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-36.5 - parent: 0 - type: Transform -- uid: 15564 - type: SignRadiationMed - components: - - pos: 46.5,-32.5 - parent: 0 - type: Transform -- uid: 15565 - type: ReinforcedWindow - components: - - pos: 37.5,-44.5 - parent: 0 - type: Transform -- uid: 15566 - type: ReinforcedWindow - components: - - pos: 39.5,-44.5 - parent: 0 - type: Transform -- uid: 15567 - type: WallReinforced - components: - - pos: 40.5,-44.5 - parent: 0 - type: Transform -- uid: 15568 - type: WallReinforced - components: - - pos: 41.5,-44.5 - parent: 0 - type: Transform -- uid: 15569 - type: WallReinforced - components: - - pos: 41.5,-45.5 - parent: 0 - type: Transform -- uid: 15570 - type: WallReinforced - components: - - pos: 41.5,-46.5 - parent: 0 - type: Transform -- uid: 15571 - type: WallReinforced - components: - - pos: 41.5,-47.5 - parent: 0 - type: Transform -- uid: 15572 - type: WallReinforced - components: - - pos: 36.5,-44.5 - parent: 0 - type: Transform -- uid: 15573 - type: WallReinforced - components: - - pos: 35.5,-44.5 - parent: 0 - type: Transform -- uid: 15574 - type: WallReinforced - components: - - pos: 34.5,-44.5 - parent: 0 - type: Transform -- uid: 15575 - type: WallReinforced - components: - - pos: 33.5,-44.5 - parent: 0 - type: Transform -- uid: 15576 - type: ReinforcedWindow - components: - - pos: 22.5,-44.5 - parent: 0 - type: Transform -- uid: 15577 - type: ReinforcedWindow - components: - - pos: 22.5,-45.5 - parent: 0 - type: Transform -- uid: 15578 - type: WallReinforced - components: - - pos: 22.5,-46.5 - parent: 0 - type: Transform -- uid: 15579 - type: WallReinforced - components: - - pos: 22.5,-47.5 - parent: 0 - type: Transform -- uid: 15580 - type: WallReinforced - components: - - pos: 22.5,-48.5 - parent: 0 - type: Transform -- uid: 15581 - type: ReinforcedWindow - components: - - pos: 21.5,-48.5 - parent: 0 - type: Transform -- uid: 15582 - type: WallReinforced - components: - - pos: 20.5,-48.5 - parent: 0 - type: Transform -- uid: 15583 - type: WallReinforced - components: - - pos: 20.5,-51.5 - parent: 0 - type: Transform -- uid: 15584 - type: WallReinforced - components: - - pos: 21.5,-51.5 - parent: 0 - type: Transform -- uid: 15585 - type: WallReinforced - components: - - pos: 22.5,-51.5 - parent: 0 - type: Transform -- uid: 15586 - type: ReinforcedWindow - components: - - pos: 22.5,-52.5 - parent: 0 - type: Transform -- uid: 15587 - type: WallReinforced - components: - - pos: 22.5,-53.5 - parent: 0 - type: Transform -- uid: 15588 - type: WallReinforced - components: - - pos: 22.5,-54.5 - parent: 0 - type: Transform -- uid: 15589 - type: ReinforcedWindow - components: - - pos: 23.5,-54.5 - parent: 0 - type: Transform -- uid: 15590 - type: ReinforcedWindow - components: - - pos: 25.5,-54.5 - parent: 0 - type: Transform -- uid: 15591 - type: ReinforcedWindow - components: - - pos: 22.5,-55.5 - parent: 0 - type: Transform -- uid: 15592 - type: ReinforcedWindow - components: - - pos: 22.5,-57.5 - parent: 0 - type: Transform -- uid: 15593 - type: WallReinforced - components: - - pos: 22.5,-56.5 - parent: 0 - type: Transform -- uid: 15594 - type: WallReinforced - components: - - pos: 22.5,-58.5 - parent: 0 - type: Transform -- uid: 15595 - type: WallReinforced - components: - - pos: 23.5,-58.5 - parent: 0 - type: Transform -- uid: 15596 - type: WallReinforced - components: - - pos: 23.5,-59.5 - parent: 0 - type: Transform -- uid: 15597 - type: WallReinforced - components: - - pos: 23.5,-60.5 - parent: 0 - type: Transform -- uid: 15598 - type: WallReinforced - components: - - pos: 23.5,-61.5 - parent: 0 - type: Transform -- uid: 15599 - type: WallReinforced - components: - - pos: 29.5,-61.5 - parent: 0 - type: Transform -- uid: 15600 - type: WallReinforced - components: - - pos: 29.5,-60.5 - parent: 0 - type: Transform -- uid: 15601 - type: WallReinforced - components: - - pos: 29.5,-59.5 - parent: 0 - type: Transform -- uid: 15602 - type: WallReinforced - components: - - pos: 26.5,-61.5 - parent: 0 - type: Transform -- uid: 15603 - type: WallReinforced - components: - - pos: 26.5,-60.5 - parent: 0 - type: Transform -- uid: 15604 - type: WallReinforced - components: - - pos: 26.5,-59.5 - parent: 0 - type: Transform -- uid: 15605 - type: ReinforcedWindow - components: - - pos: 24.5,-61.5 - parent: 0 - type: Transform -- uid: 15606 - type: ReinforcedWindow - components: - - pos: 24.5,-59.5 - parent: 0 - type: Transform -- uid: 15607 - type: ReinforcedWindow - components: - - pos: 28.5,-61.5 - parent: 0 - type: Transform -- uid: 15608 - type: ReinforcedWindow - components: - - pos: 28.5,-59.5 - parent: 0 - type: Transform -- uid: 15609 - type: AirlockExternalGlassShuttleLocked - components: - - pos: 25.5,-61.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 15610 - type: AirlockExternalGlassShuttleLocked - components: - - pos: 27.5,-61.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 15611 - type: AirlockExternalGlass - components: - - pos: 25.5,-59.5 - parent: 0 - type: Transform -- uid: 15612 - type: AirlockExternalGlass - components: - - pos: 27.5,-59.5 - parent: 0 - type: Transform -- uid: 15613 - type: ReinforcedWindow - components: - - pos: 30.5,-59.5 - parent: 0 - type: Transform -- uid: 15614 - type: WallReinforced - components: - - pos: 31.5,-59.5 - parent: 0 - type: Transform -- uid: 15615 - type: WallSolid - components: - - pos: 26.5,-54.5 - parent: 0 - type: Transform -- uid: 15616 - type: WallSolid - components: - - pos: 26.5,-53.5 - parent: 0 - type: Transform -- uid: 15617 - type: WallSolidRust - components: - - pos: 26.5,-52.5 - parent: 0 - type: Transform -- uid: 15618 - type: WallSolid - components: - - pos: 28.5,-52.5 - parent: 0 - type: Transform -- uid: 15619 - type: WallSolid - components: - - pos: 28.5,-53.5 - parent: 0 - type: Transform -- uid: 15620 - type: WallSolid - components: - - pos: 28.5,-54.5 - parent: 0 - type: Transform -- uid: 15621 - type: WallSolid - components: - - pos: 27.5,-52.5 - parent: 0 - type: Transform -- uid: 15622 - type: WallSolid - components: - - pos: 27.5,-54.5 - parent: 0 - type: Transform -- uid: 15623 - type: ReinforcedWindow - components: - - pos: 30.5,-52.5 - parent: 0 - type: Transform -- uid: 15624 - type: ReinforcedWindow - components: - - pos: 29.5,-52.5 - parent: 0 - type: Transform -- uid: 15625 - type: WallReinforced - components: - - pos: 31.5,-58.5 - parent: 0 - type: Transform -- uid: 15626 - type: WallReinforced - components: - - pos: 31.5,-57.5 - parent: 0 - type: Transform -- uid: 15627 - type: WallReinforced - components: - - pos: 31.5,-56.5 - parent: 0 - type: Transform -- uid: 15628 - type: WallReinforced - components: - - pos: 31.5,-55.5 - parent: 0 - type: Transform -- uid: 15629 - type: WallReinforced - components: - - pos: 31.5,-54.5 - parent: 0 - type: Transform -- uid: 15630 - type: WallReinforced - components: - - pos: 31.5,-53.5 - parent: 0 - type: Transform -- uid: 15631 - type: WallSolid - components: - - pos: 31.5,-52.5 - parent: 0 - type: Transform -- uid: 15632 - type: WallReinforced - components: - - pos: 104.5,-55.5 - parent: 0 - type: Transform -- uid: 15633 - type: AsteroidRock - components: - - pos: 33.5,-53.5 - parent: 0 - type: Transform -- uid: 15634 - type: AsteroidRock - components: - - pos: 33.5,-54.5 - parent: 0 - type: Transform -- uid: 15635 - type: AsteroidRock - components: - - pos: 32.5,-54.5 - parent: 0 - type: Transform -- uid: 15636 - type: AsteroidRock - components: - - pos: 33.5,-55.5 - parent: 0 - type: Transform -- uid: 15637 - type: WallReinforced - components: - - pos: 49.5,-55.5 - parent: 0 - type: Transform -- uid: 15638 - type: WallReinforced - components: - - pos: 46.5,-55.5 - parent: 0 - type: Transform -- uid: 15639 - type: WallReinforced - components: - - pos: 42.5,-55.5 - parent: 0 - type: Transform -- uid: 15640 - type: WallReinforced - components: - - pos: 50.5,-55.5 - parent: 0 - type: Transform -- uid: 15641 - type: WallReinforced - components: - - pos: 44.5,-55.5 - parent: 0 - type: Transform -- uid: 15642 - type: WallReinforced - components: - - pos: 52.5,-55.5 - parent: 0 - type: Transform -- uid: 15643 - type: AsteroidRock - components: - - pos: 32.5,-56.5 - parent: 0 - type: Transform -- uid: 15644 - type: WallReinforced - components: - - pos: 42.5,-53.5 - parent: 0 - type: Transform -- uid: 15645 - type: WallReinforced - components: - - pos: 42.5,-54.5 - parent: 0 - type: Transform -- uid: 15646 - type: WallReinforced - components: - - pos: 45.5,-55.5 - parent: 0 - type: Transform -- uid: 15647 - type: WallReinforced - components: - - pos: 43.5,-55.5 - parent: 0 - type: Transform -- uid: 15648 - type: ReinforcedWindow - components: - - pos: 47.5,-55.5 - parent: 0 - type: Transform -- uid: 15649 - type: WallReinforced - components: - - pos: 48.5,-55.5 - parent: 0 - type: Transform -- uid: 15650 - type: AsteroidRock - components: - - pos: 39.5,-53.5 - parent: 0 - type: Transform -- uid: 15651 - type: AsteroidRock - components: - - pos: 39.5,-54.5 - parent: 0 - type: Transform -- uid: 15652 - type: AsteroidRock - components: - - pos: 38.5,-53.5 - parent: 0 - type: Transform -- uid: 15653 - type: AsteroidRock - components: - - pos: 38.5,-54.5 - parent: 0 - type: Transform -- uid: 15654 - type: AsteroidRock - components: - - pos: 37.5,-53.5 - parent: 0 - type: Transform -- uid: 15655 - type: AsteroidRock - components: - - pos: 35.5,-54.5 - parent: 0 - type: Transform -- uid: 15656 - type: AsteroidRock - components: - - pos: 37.5,-54.5 - parent: 0 - type: Transform -- uid: 15657 - type: AsteroidRock - components: - - pos: 36.5,-53.5 - parent: 0 - type: Transform -- uid: 15658 - type: AsteroidRock - components: - - pos: 35.5,-53.5 - parent: 0 - type: Transform -- uid: 15659 - type: AsteroidRock - components: - - pos: 36.5,-54.5 - parent: 0 - type: Transform -- uid: 15660 - type: AsteroidRock - components: - - pos: 35.5,-55.5 - parent: 0 - type: Transform -- uid: 15661 - type: AsteroidRock - components: - - pos: 32.5,-55.5 - parent: 0 - type: Transform -- uid: 15662 - type: AsteroidRock - components: - - pos: 34.5,-53.5 - parent: 0 - type: Transform -- uid: 15663 - type: AsteroidRock - components: - - pos: 34.5,-54.5 - parent: 0 - type: Transform -- uid: 15664 - type: AsteroidRock - components: - - pos: 34.5,-55.5 - parent: 0 - type: Transform -- uid: 15665 - type: WallReinforced - components: - - pos: 51.5,-55.5 - parent: 0 - type: Transform -- uid: 15666 - type: WallReinforced - components: - - pos: 52.5,-54.5 - parent: 0 - type: Transform -- uid: 15667 - type: WallReinforced - components: - - pos: 52.5,-53.5 - parent: 0 - type: Transform -- uid: 15668 - type: WallReinforced - components: - - pos: 52.5,-52.5 - parent: 0 - type: Transform -- uid: 15669 - type: WallReinforced - components: - - pos: 52.5,-51.5 - parent: 0 - type: Transform -- uid: 15670 - type: WallReinforced - components: - - pos: 53.5,-51.5 - parent: 0 - type: Transform -- uid: 15671 - type: WallReinforced - components: - - pos: 54.5,-51.5 - parent: 0 - type: Transform -- uid: 15672 - type: WallReinforced - components: - - pos: 55.5,-51.5 - parent: 0 - type: Transform -- uid: 15673 - type: WallReinforced - components: - - pos: 55.5,-52.5 - parent: 0 - type: Transform -- uid: 15674 - type: WallReinforced - components: - - pos: 55.5,-53.5 - parent: 0 - type: Transform -- uid: 15675 - type: WallSolidRust - components: - - pos: 55.5,-54.5 - parent: 0 - type: Transform -- uid: 15676 - type: WallReinforced - components: - - pos: 55.5,-55.5 - parent: 0 - type: Transform -- uid: 15677 - type: WallReinforced - components: - - pos: 55.5,-56.5 - parent: 0 - type: Transform -- uid: 15678 - type: WallReinforced - components: - - pos: 55.5,-57.5 - parent: 0 - type: Transform -- uid: 15679 - type: WallReinforced - components: - - pos: 55.5,-58.5 - parent: 0 - type: Transform -- uid: 15680 - type: WallReinforced - components: - - pos: 55.5,-59.5 - parent: 0 - type: Transform -- uid: 15681 - type: AsteroidRockMining - components: - - pos: 61.5,-56.5 - parent: 0 - type: Transform -- uid: 15682 - type: AsteroidRock - components: - - pos: 64.5,-59.5 - parent: 0 - type: Transform -- uid: 15683 - type: AsteroidRock - components: - - pos: 64.5,-58.5 - parent: 0 - type: Transform -- uid: 15684 - type: AsteroidRockMining - components: - - pos: 60.5,-58.5 - parent: 0 - type: Transform -- uid: 15685 - type: WallReinforced - components: - - pos: 83.5,-52.5 - parent: 0 - type: Transform -- uid: 15686 - type: ReinforcedWindow - components: - - pos: 83.5,-54.5 - parent: 0 - type: Transform -- uid: 15687 - type: WallReinforced - components: - - pos: 71.5,-52.5 - parent: 0 - type: Transform -- uid: 15688 - type: ReinforcedWindow - components: - - pos: 83.5,-53.5 - parent: 0 - type: Transform -- uid: 15689 - type: ReinforcedWindow - components: - - pos: 71.5,-54.5 - parent: 0 - type: Transform -- uid: 15690 - type: ReinforcedWindow - components: - - pos: 71.5,-53.5 - parent: 0 - type: Transform -- uid: 15691 - type: Grille - components: - - pos: 72.5,-52.5 - parent: 0 - type: Transform -- uid: 15692 - type: Grille - components: - - pos: 73.5,-51.5 - parent: 0 - type: Transform -- uid: 15693 - type: Grille - components: - - pos: 75.5,-52.5 - parent: 0 - type: Transform -- uid: 15694 - type: Grille - components: - - pos: 75.5,-51.5 - parent: 0 - type: Transform -- uid: 15695 - type: Grille - components: - - pos: 74.5,-50.5 - parent: 0 - type: Transform -- uid: 15696 - type: Grille - components: - - pos: 73.5,-50.5 - parent: 0 - type: Transform -- uid: 15697 - type: WallReinforced - components: - - pos: 69.5,-55.5 - parent: 0 - type: Transform -- uid: 15698 - type: WallReinforced - components: - - pos: 68.5,-55.5 - parent: 0 - type: Transform -- uid: 15699 - type: WallReinforced - components: - - pos: 67.5,-55.5 - parent: 0 - type: Transform -- uid: 15700 - type: WallReinforced - components: - - pos: 66.5,-55.5 - parent: 0 - type: Transform -- uid: 15701 - type: WallReinforced - components: - - pos: 65.5,-55.5 - parent: 0 - type: Transform -- uid: 15702 - type: WallReinforced - components: - - pos: 64.5,-55.5 - parent: 0 - type: Transform -- uid: 15703 - type: WallReinforced - components: - - pos: 63.5,-55.5 - parent: 0 - type: Transform -- uid: 15704 - type: WallReinforced - components: - - pos: 62.5,-55.5 - parent: 0 - type: Transform -- uid: 15705 - type: WallReinforced - components: - - pos: 61.5,-55.5 - parent: 0 - type: Transform -- uid: 15706 - type: WallReinforced - components: - - pos: 60.5,-55.5 - parent: 0 - type: Transform -- uid: 15707 - type: WallReinforced - components: - - pos: 59.5,-55.5 - parent: 0 - type: Transform -- uid: 15708 - type: WallReinforced - components: - - pos: 59.5,-56.5 - parent: 0 - type: Transform -- uid: 15709 - type: WallReinforced - components: - - pos: 59.5,-57.5 - parent: 0 - type: Transform -- uid: 15710 - type: WallReinforced - components: - - pos: 59.5,-58.5 - parent: 0 - type: Transform -- uid: 15711 - type: WallReinforced - components: - - pos: 59.5,-59.5 - parent: 0 - type: Transform -- uid: 15712 - type: ReinforcedWindow - components: - - pos: 56.5,-59.5 - parent: 0 - type: Transform -- uid: 15713 - type: ReinforcedWindow - components: - - pos: 57.5,-59.5 - parent: 0 - type: Transform -- uid: 15714 - type: ReinforcedWindow - components: - - pos: 58.5,-59.5 - parent: 0 - type: Transform -- uid: 15715 - type: AsteroidRock - components: - - pos: 60.5,-59.5 - parent: 0 - type: Transform -- uid: 15716 - type: AsteroidRockMining - components: - - pos: 64.5,-57.5 - parent: 0 - type: Transform -- uid: 15717 - type: AsteroidRockMining - components: - - pos: 65.5,-56.5 - parent: 0 - type: Transform -- uid: 15718 - type: AsteroidRockMining - components: - - pos: 64.5,-56.5 - parent: 0 - type: Transform -- uid: 15719 - type: AsteroidRock - components: - - pos: 61.5,-59.5 - parent: 0 - type: Transform -- uid: 15720 - type: ClothingNeckCloakHerald - components: - - pos: 62.5,-57.5 - parent: 0 - type: Transform -- uid: 15721 - type: MirrorShield - components: - - pos: 62.5,-57.5 - parent: 0 - type: Transform -- uid: 15722 - type: AsteroidRockMining - components: - - pos: 63.5,-56.5 - parent: 0 - type: Transform -- uid: 15723 - type: AsteroidRock - components: - - pos: 62.5,-59.5 - parent: 0 - type: Transform -- uid: 15724 - type: AsteroidRock - components: - - pos: 62.5,-58.5 - parent: 0 - type: Transform -- uid: 15725 - type: AsteroidRockMining - components: - - pos: 61.5,-58.5 - parent: 0 - type: Transform -- uid: 15726 - type: AsteroidRockMining - components: - - pos: 62.5,-56.5 - parent: 0 - type: Transform -- uid: 15727 - type: AsteroidRock - components: - - pos: 63.5,-59.5 - parent: 0 - type: Transform -- uid: 15728 - type: AsteroidRock - components: - - pos: 63.5,-58.5 - parent: 0 - type: Transform -- uid: 15729 - type: TableStone - components: - - pos: 62.5,-57.5 - parent: 0 - type: Transform -- uid: 15730 - type: WallReinforced - components: - - pos: 85.5,-55.5 - parent: 0 - type: Transform -- uid: 15731 - type: WallReinforced - components: - - pos: 86.5,-55.5 - parent: 0 - type: Transform -- uid: 15732 - type: WallReinforced - components: - - pos: 87.5,-55.5 - parent: 0 - type: Transform -- uid: 15733 - type: WallReinforced - components: - - pos: 88.5,-55.5 - parent: 0 - type: Transform -- uid: 15734 - type: WallReinforced - components: - - pos: 89.5,-55.5 - parent: 0 - type: Transform -- uid: 15735 - type: WallReinforced - components: - - pos: 90.5,-55.5 - parent: 0 - type: Transform -- uid: 15736 - type: WallReinforced - components: - - pos: 91.5,-55.5 - parent: 0 - type: Transform -- uid: 15737 - type: WallReinforced - components: - - pos: 92.5,-55.5 - parent: 0 - type: Transform -- uid: 15738 - type: WallReinforced - components: - - pos: 93.5,-55.5 - parent: 0 - type: Transform -- uid: 15739 - type: WallReinforced - components: - - pos: 94.5,-55.5 - parent: 0 - type: Transform -- uid: 15740 - type: WallReinforced - components: - - pos: 95.5,-55.5 - parent: 0 - type: Transform -- uid: 15741 - type: WallReinforced - components: - - pos: 96.5,-55.5 - parent: 0 - type: Transform -- uid: 15742 - type: WallReinforced - components: - - pos: 97.5,-55.5 - parent: 0 - type: Transform -- uid: 15743 - type: WallReinforced - components: - - pos: 98.5,-55.5 - parent: 0 - type: Transform -- uid: 15744 - type: WallReinforced - components: - - pos: 99.5,-55.5 - parent: 0 - type: Transform -- uid: 15745 - type: WallReinforced - components: - - pos: 100.5,-55.5 - parent: 0 - type: Transform -- uid: 15746 - type: WallReinforced - components: - - pos: 101.5,-55.5 - parent: 0 - type: Transform -- uid: 15747 - type: WallReinforced - components: - - pos: 101.5,-56.5 - parent: 0 - type: Transform -- uid: 15748 - type: WallReinforced - components: - - pos: 103.5,-55.5 - parent: 0 - type: Transform -- uid: 15749 - type: WallReinforced - components: - - pos: 103.5,-56.5 - parent: 0 - type: Transform -- uid: 15750 - type: ReinforcedWindow - components: - - pos: 101.5,-57.5 - parent: 0 - type: Transform -- uid: 15751 - type: ReinforcedWindow - components: - - pos: 103.5,-57.5 - parent: 0 - type: Transform -- uid: 15752 - type: WallReinforced - components: - - pos: 105.5,-55.5 - parent: 0 - type: Transform -- uid: 15753 - type: WallReinforced - components: - - pos: 105.5,-54.5 - parent: 0 - type: Transform -- uid: 15754 - type: WallReinforced - components: - - pos: 105.5,-53.5 - parent: 0 - type: Transform -- uid: 15755 - type: WallReinforced - components: - - pos: 105.5,-52.5 - parent: 0 - type: Transform -- uid: 15756 - type: WallReinforced - components: - - pos: 105.5,-51.5 - parent: 0 - type: Transform -- uid: 15757 - type: ReinforcedWindow - components: - - pos: 100.5,-28.5 - parent: 0 - type: Transform -- uid: 15758 - type: ReinforcedWindow - components: - - pos: 105.5,-50.5 - parent: 0 - type: Transform -- uid: 15759 - type: ReinforcedWindow - components: - - pos: 105.5,-49.5 - parent: 0 - type: Transform -- uid: 15760 - type: AirlockExternalGlassAtmosphericsLocked - components: - - pos: 99.5,-31.5 - parent: 0 - type: Transform -- uid: 15761 - type: WallReinforced - components: - - pos: 102.5,-30.5 - parent: 0 - type: Transform -- uid: 15762 - type: WallReinforced - components: - - pos: 101.5,-30.5 - parent: 0 - type: Transform -- uid: 15763 - type: WallReinforced - components: - - pos: 100.5,-30.5 - parent: 0 - type: Transform -- uid: 15764 - type: WallReinforced - components: - - pos: 104.5,-32.5 - parent: 0 - type: Transform -- uid: 15765 - type: WallReinforced - components: - - pos: 103.5,-32.5 - parent: 0 - type: Transform -- uid: 15766 - type: WallReinforced - components: - - pos: 102.5,-32.5 - parent: 0 - type: Transform -- uid: 15767 - type: WallReinforced - components: - - pos: 101.5,-32.5 - parent: 0 - type: Transform -- uid: 15768 - type: WallReinforced - components: - - pos: 100.5,-32.5 - parent: 0 - type: Transform -- uid: 15769 - type: WallReinforced - components: - - pos: 99.5,-21.5 - parent: 0 - type: Transform -- uid: 15770 - type: WallReinforced - components: - - pos: 99.5,-30.5 - parent: 0 - type: Transform -- uid: 15771 - type: WallReinforced - components: - - pos: 99.5,-28.5 - parent: 0 - type: Transform -- uid: 15772 - type: WallReinforced - components: - - pos: 99.5,-22.5 - parent: 0 - type: Transform -- uid: 15773 - type: Grille - components: - - pos: 96.5,-28.5 - parent: 0 - type: Transform -- uid: 15774 - type: ReinforcedPlasmaWindow - components: - - pos: 96.5,-28.5 - parent: 0 - type: Transform -- uid: 15775 - type: ReinforcedPlasmaWindow - components: - - pos: 98.5,-28.5 - parent: 0 - type: Transform -- uid: 15776 - type: WallReinforced - components: - - pos: 100.5,-21.5 - parent: 0 - type: Transform -- uid: 15777 - type: WallReinforced - components: - - pos: 101.5,-21.5 - parent: 0 - type: Transform -- uid: 15778 - type: WallReinforced - components: - - pos: 102.5,-21.5 - parent: 0 - type: Transform -- uid: 15779 - type: ReinforcedWindow - components: - - pos: 103.5,-21.5 - parent: 0 - type: Transform -- uid: 15780 - type: ReinforcedWindow - components: - - pos: 104.5,-21.5 - parent: 0 - type: Transform -- uid: 15781 - type: ReinforcedWindow - components: - - pos: 105.5,-21.5 - parent: 0 - type: Transform -- uid: 15782 - type: ReinforcedWindow - components: - - pos: 106.5,-21.5 - parent: 0 - type: Transform -- uid: 15783 - type: WallReinforced - components: - - pos: 107.5,-21.5 - parent: 0 - type: Transform -- uid: 15784 - type: WallReinforced - components: - - pos: 108.5,-21.5 - parent: 0 - type: Transform -- uid: 15785 - type: WallReinforced - components: - - pos: 110.5,-21.5 - parent: 0 - type: Transform -- uid: 15786 - type: WallReinforced - components: - - pos: 110.5,-22.5 - parent: 0 - type: Transform -- uid: 15787 - type: WallReinforced - components: - - pos: 110.5,-23.5 - parent: 0 - type: Transform -- uid: 15788 - type: WallReinforced - components: - - pos: 110.5,-24.5 - parent: 0 - type: Transform -- uid: 15789 - type: WallReinforced - components: - - pos: 108.5,-24.5 - parent: 0 - type: Transform -- uid: 15790 - type: WallReinforced - components: - - pos: 108.5,-23.5 - parent: 0 - type: Transform -- uid: 15791 - type: ReinforcedWindow - components: - - pos: 108.5,-22.5 - parent: 0 - type: Transform -- uid: 15792 - type: WallReinforced - components: - - pos: 123.5,-24.5 - parent: 0 - type: Transform -- uid: 15793 - type: WallReinforced - components: - - pos: 111.5,-24.5 - parent: 0 - type: Transform -- uid: 15794 - type: WallSolidRust - components: - - pos: 122.5,-36.5 - parent: 0 - type: Transform -- uid: 15795 - type: WallSolidRust - components: - - pos: 126.5,-36.5 - parent: 0 - type: Transform -- uid: 15796 - type: WallReinforced - components: - - pos: 124.5,-21.5 - parent: 0 - type: Transform -- uid: 15797 - type: WallReinforced - components: - - pos: 122.5,-16.5 - parent: 0 - type: Transform -- uid: 15798 - type: WallReinforced - components: - - pos: 122.5,-15.5 - parent: 0 - type: Transform -- uid: 15799 - type: WallReinforced - components: - - pos: 122.5,-14.5 - parent: 0 - type: Transform -- uid: 15800 - type: WallReinforced - components: - - pos: 121.5,-14.5 - parent: 0 - type: Transform -- uid: 15801 - type: WallReinforced - components: - - pos: 120.5,-14.5 - parent: 0 - type: Transform -- uid: 15802 - type: WallReinforced - components: - - pos: 120.5,-13.5 - parent: 0 - type: Transform -- uid: 15803 - type: WallReinforced - components: - - pos: 122.5,-18.5 - parent: 0 - type: Transform -- uid: 15804 - type: WallReinforced - components: - - pos: 122.5,-17.5 - parent: 0 - type: Transform -- uid: 15805 - type: WallReinforced - components: - - pos: 102.5,57.5 - parent: 0 - type: Transform -- uid: 15806 - type: Grille - components: - - pos: 125.5,-36.5 - parent: 0 - type: Transform -- uid: 15807 - type: Grille - components: - - pos: 123.5,-36.5 - parent: 0 - type: Transform -- uid: 15808 - type: SignSecurearea - components: - - pos: 126.5,-36.5 - parent: 0 - type: Transform -- uid: 15809 - type: WallReinforced - components: - - pos: 124.5,-22.5 - parent: 0 - type: Transform -- uid: 15810 - type: WallReinforced - components: - - pos: 120.5,-12.5 - parent: 0 - type: Transform -- uid: 15811 - type: WallReinforced - components: - - pos: 117.5,29.5 - parent: 0 - type: Transform -- uid: 15812 - type: ReinforcedWindow - components: - - pos: 117.5,30.5 - parent: 0 - type: Transform -- uid: 15813 - type: ReinforcedWindow - components: - - pos: 117.5,32.5 - parent: 0 - type: Transform -- uid: 15814 - type: WallReinforced - components: - - pos: 117.5,33.5 - parent: 0 - type: Transform -- uid: 15815 - type: WallReinforced - components: - - pos: 116.5,29.5 - parent: 0 - type: Transform -- uid: 15816 - type: WallReinforced - components: - - pos: 115.5,29.5 - parent: 0 - type: Transform -- uid: 15817 - type: WallReinforced - components: - - pos: 114.5,29.5 - parent: 0 - type: Transform -- uid: 15818 - type: WallReinforced - components: - - pos: 113.5,29.5 - parent: 0 - type: Transform -- uid: 15819 - type: WallReinforced - components: - - pos: 112.5,29.5 - parent: 0 - type: Transform -- uid: 15820 - type: WallReinforced - components: - - pos: 111.5,29.5 - parent: 0 - type: Transform -- uid: 15821 - type: WallReinforced - components: - - pos: 111.5,28.5 - parent: 0 - type: Transform -- uid: 15822 - type: WallReinforced - components: - - pos: 111.5,27.5 - parent: 0 - type: Transform -- uid: 15823 - type: WallReinforced - components: - - pos: 112.5,27.5 - parent: 0 - type: Transform -- uid: 15824 - type: WallReinforced - components: - - pos: 113.5,27.5 - parent: 0 - type: Transform -- uid: 15825 - type: WallReinforced - components: - - pos: 114.5,27.5 - parent: 0 - type: Transform -- uid: 15826 - type: WallReinforced - components: - - pos: 114.5,26.5 - parent: 0 - type: Transform -- uid: 15827 - type: WallReinforced - components: - - pos: 114.5,25.5 - parent: 0 - type: Transform -- uid: 15828 - type: WallReinforced - components: - - pos: 114.5,24.5 - parent: 0 - type: Transform -- uid: 15829 - type: WallReinforced - components: - - pos: 114.5,23.5 - parent: 0 - type: Transform -- uid: 15830 - type: WallReinforced - components: - - pos: 114.5,22.5 - parent: 0 - type: Transform -- uid: 15831 - type: WallReinforced - components: - - pos: 114.5,21.5 - parent: 0 - type: Transform -- uid: 15832 - type: WallReinforced - components: - - pos: 115.5,21.5 - parent: 0 - type: Transform -- uid: 15833 - type: WallReinforced - components: - - pos: 115.5,20.5 - parent: 0 - type: Transform -- uid: 15834 - type: WallReinforced - components: - - pos: 115.5,19.5 - parent: 0 - type: Transform -- uid: 15835 - type: WallReinforced - components: - - pos: 115.5,18.5 - parent: 0 - type: Transform -- uid: 15836 - type: WallReinforced - components: - - pos: 115.5,17.5 - parent: 0 - type: Transform -- uid: 15837 - type: WallReinforced - components: - - pos: 115.5,16.5 - parent: 0 - type: Transform -- uid: 15838 - type: WallReinforced - components: - - pos: 115.5,15.5 - parent: 0 - type: Transform -- uid: 15839 - type: WallReinforced - components: - - pos: 115.5,14.5 - parent: 0 - type: Transform -- uid: 15840 - type: WallReinforced - components: - - pos: 115.5,13.5 - parent: 0 - type: Transform -- uid: 15841 - type: WallReinforced - components: - - pos: 116.5,13.5 - parent: 0 - type: Transform -- uid: 15842 - type: ReinforcedWindow - components: - - pos: 117.5,13.5 - parent: 0 - type: Transform -- uid: 15843 - type: ReinforcedWindow - components: - - pos: 118.5,12.5 - parent: 0 - type: Transform -- uid: 15844 - type: ReinforcedWindow - components: - - pos: 118.5,10.5 - parent: 0 - type: Transform -- uid: 15845 - type: WallReinforced - components: - - pos: 118.5,13.5 - parent: 0 - type: Transform -- uid: 15846 - type: WallReinforced - components: - - pos: 119.5,13.5 - parent: 0 - type: Transform -- uid: 15847 - type: WallReinforced - components: - - pos: 120.5,13.5 - parent: 0 - type: Transform -- uid: 15848 - type: WallReinforced - components: - - pos: 121.5,13.5 - parent: 0 - type: Transform -- uid: 15849 - type: WallReinforced - components: - - pos: 122.5,13.5 - parent: 0 - type: Transform -- uid: 15850 - type: WallReinforced - components: - - pos: 123.5,13.5 - parent: 0 - type: Transform -- uid: 15851 - type: WallReinforced - components: - - pos: 123.5,9.5 - parent: 0 - type: Transform -- uid: 15852 - type: WallReinforced - components: - - pos: 122.5,9.5 - parent: 0 - type: Transform -- uid: 15853 - type: WallReinforced - components: - - pos: 121.5,9.5 - parent: 0 - type: Transform -- uid: 15854 - type: WallReinforced - components: - - pos: 120.5,9.5 - parent: 0 - type: Transform -- uid: 15855 - type: WallReinforced - components: - - pos: 119.5,9.5 - parent: 0 - type: Transform -- uid: 15856 - type: WallReinforced - components: - - pos: 118.5,9.5 - parent: 0 - type: Transform -- uid: 15857 - type: WallReinforced - components: - - pos: 123.5,8.5 - parent: 0 - type: Transform -- uid: 15858 - type: WallReinforced - components: - - pos: 124.5,8.5 - parent: 0 - type: Transform -- uid: 15859 - type: WallReinforced - components: - - pos: 125.5,8.5 - parent: 0 - type: Transform -- uid: 15860 - type: WallReinforced - components: - - pos: 126.5,8.5 - parent: 0 - type: Transform -- uid: 15861 - type: WallReinforced - components: - - pos: 126.5,7.5 - parent: 0 - type: Transform -- uid: 15862 - type: WallReinforced - components: - - pos: 126.5,5.5 - parent: 0 - type: Transform -- uid: 15863 - type: WallReinforced - components: - - pos: 126.5,4.5 - parent: 0 - type: Transform -- uid: 15864 - type: WallReinforced - components: - - pos: 127.5,4.5 - parent: 0 - type: Transform -- uid: 15865 - type: WallReinforced - components: - - pos: 127.5,3.5 - parent: 0 - type: Transform -- uid: 15866 - type: WallReinforced - components: - - pos: 127.5,2.5 - parent: 0 - type: Transform -- uid: 15867 - type: WallReinforced - components: - - pos: 127.5,1.5 - parent: 0 - type: Transform -- uid: 15868 - type: WallReinforced - components: - - pos: 127.5,0.5 - parent: 0 - type: Transform -- uid: 15869 - type: WallReinforced - components: - - pos: 127.5,-0.5 - parent: 0 - type: Transform -- uid: 15870 - type: ReinforcedWindow - components: - - pos: 127.5,-1.5 - parent: 0 - type: Transform -- uid: 15871 - type: WallReinforced - components: - - pos: 129.5,-2.5 - parent: 0 - type: Transform -- uid: 15872 - type: Grille - components: - - pos: 128.5,-5.5 - parent: 0 - type: Transform -- uid: 15873 - type: WallReinforced - components: - - pos: 127.5,-2.5 - parent: 0 - type: Transform -- uid: 15874 - type: Grille - components: - - pos: 129.5,-4.5 - parent: 0 - type: Transform -- uid: 15875 - type: WallReinforced - components: - - pos: 129.5,-5.5 - parent: 0 - type: Transform -- uid: 15876 - type: Grille - components: - - pos: 128.5,-2.5 - parent: 0 - type: Transform -- uid: 15877 - type: WallReinforced - components: - - pos: 127.5,-5.5 - parent: 0 - type: Transform -- uid: 15878 - type: ReinforcedWindow - components: - - pos: 127.5,-8.5 - parent: 0 - type: Transform -- uid: 15879 - type: ReinforcedWindow - components: - - pos: 127.5,-7.5 - parent: 0 - type: Transform -- uid: 15880 - type: ReinforcedWindow - components: - - pos: 127.5,-6.5 - parent: 0 - type: Transform -- uid: 15881 - type: WallReinforced - components: - - pos: 127.5,-9.5 - parent: 0 - type: Transform -- uid: 15882 - type: WallReinforced - components: - - pos: 126.5,-9.5 - parent: 0 - type: Transform -- uid: 15883 - type: WallReinforced - components: - - pos: 125.5,-9.5 - parent: 0 - type: Transform -- uid: 15884 - type: WallReinforced - components: - - pos: 124.5,-9.5 - parent: 0 - type: Transform -- uid: 15885 - type: WallReinforced - components: - - pos: 123.5,-9.5 - parent: 0 - type: Transform -- uid: 15886 - type: WallReinforced - components: - - pos: 122.5,-9.5 - parent: 0 - type: Transform -- uid: 15887 - type: WallReinforced - components: - - pos: 121.5,-9.5 - parent: 0 - type: Transform -- uid: 15888 - type: WallReinforced - components: - - pos: 120.5,-9.5 - parent: 0 - type: Transform -- uid: 15889 - type: WallReinforced - components: - - pos: 112.5,-24.5 - parent: 0 - type: Transform -- uid: 15890 - type: WallReinforced - components: - - pos: 112.5,-25.5 - parent: 0 - type: Transform -- uid: 15891 - type: WallReinforced - components: - - pos: 112.5,-26.5 - parent: 0 - type: Transform -- uid: 15892 - type: WallReinforced - components: - - pos: 112.5,-27.5 - parent: 0 - type: Transform -- uid: 15893 - type: WallReinforced - components: - - pos: 113.5,-27.5 - parent: 0 - type: Transform -- uid: 15894 - type: WallReinforced - components: - - pos: 114.5,-27.5 - parent: 0 - type: Transform -- uid: 15895 - type: WallReinforced - components: - - pos: 115.5,-27.5 - parent: 0 - type: Transform -- uid: 15896 - type: WallReinforced - components: - - pos: 116.5,-27.5 - parent: 0 - type: Transform -- uid: 15897 - type: WallReinforced - components: - - pos: 117.5,-27.5 - parent: 0 - type: Transform -- uid: 15898 - type: WallReinforced - components: - - pos: 118.5,-27.5 - parent: 0 - type: Transform -- uid: 15899 - type: WallReinforced - components: - - pos: 119.5,-27.5 - parent: 0 - type: Transform -- uid: 15900 - type: WallReinforced - components: - - pos: 120.5,-27.5 - parent: 0 - type: Transform -- uid: 15901 - type: WallReinforced - components: - - pos: 121.5,-27.5 - parent: 0 - type: Transform -- uid: 15902 - type: WallReinforced - components: - - pos: 122.5,-27.5 - parent: 0 - type: Transform -- uid: 15903 - type: WallReinforced - components: - - pos: 123.5,-27.5 - parent: 0 - type: Transform -- uid: 15904 - type: WallReinforced - components: - - pos: 124.5,-23.5 - parent: 0 - type: Transform -- uid: 15905 - type: WallReinforced - components: - - pos: 124.5,-27.5 - parent: 0 - type: Transform -- uid: 15906 - type: WallReinforced - components: - - pos: 124.5,-24.5 - parent: 0 - type: Transform -- uid: 15907 - type: WallReinforced - components: - - pos: 124.5,-25.5 - parent: 0 - type: Transform -- uid: 15908 - type: WallReinforced - components: - - pos: 124.5,-26.5 - parent: 0 - type: Transform -- uid: 15909 - type: WallReinforced - components: - - pos: 123.5,-21.5 - parent: 0 - type: Transform -- uid: 15910 - type: WallReinforced - components: - - pos: 122.5,-21.5 - parent: 0 - type: Transform -- uid: 15911 - type: WallReinforced - components: - - pos: 121.5,-21.5 - parent: 0 - type: Transform -- uid: 15912 - type: WallReinforced - components: - - pos: 120.5,-21.5 - parent: 0 - type: Transform -- uid: 15913 - type: WallReinforced - components: - - pos: 119.5,-21.5 - parent: 0 - type: Transform -- uid: 15914 - type: WallReinforced - components: - - pos: 118.5,-21.5 - parent: 0 - type: Transform -- uid: 15915 - type: WallReinforced - components: - - pos: 117.5,-21.5 - parent: 0 - type: Transform -- uid: 15916 - type: WallReinforced - components: - - pos: 116.5,-21.5 - parent: 0 - type: Transform -- uid: 15917 - type: WallReinforced - components: - - pos: 115.5,-21.5 - parent: 0 - type: Transform -- uid: 15918 - type: WallReinforced - components: - - pos: 114.5,-21.5 - parent: 0 - type: Transform -- uid: 15919 - type: WallReinforced - components: - - pos: 113.5,-21.5 - parent: 0 - type: Transform -- uid: 15920 - type: WallReinforced - components: - - pos: 112.5,-21.5 - parent: 0 - type: Transform -- uid: 15921 - type: WallReinforced - components: - - pos: 112.5,-23.5 - parent: 0 - type: Transform -- uid: 15922 - type: ReinforcedWindow - components: - - pos: 122.5,-20.5 - parent: 0 - type: Transform -- uid: 15923 - type: ReinforcedWindow - components: - - pos: 122.5,-19.5 - parent: 0 - type: Transform -- uid: 15924 - type: ReinforcedWindow - components: - - pos: 117.5,-22.5 - parent: 0 - type: Transform -- uid: 15925 - type: ReinforcedWindow - components: - - pos: 117.5,-23.5 - parent: 0 - type: Transform -- uid: 15926 - type: ReinforcedWindow - components: - - pos: 117.5,-26.5 - parent: 0 - type: Transform -- uid: 15927 - type: ReinforcedWindow - components: - - pos: 117.5,-25.5 - parent: 0 - type: Transform -- uid: 15928 - type: WallReinforced - components: - - pos: 120.5,-11.5 - parent: 0 - type: Transform -- uid: 15929 - type: WallReinforced - components: - - pos: 120.5,-10.5 - parent: 0 - type: Transform -- uid: 15930 - type: WallReinforced - components: - - pos: 116.5,33.5 - parent: 0 - type: Transform -- uid: 15931 - type: WallReinforced - components: - - pos: 115.5,33.5 - parent: 0 - type: Transform -- uid: 15932 - type: WallReinforced - components: - - pos: 114.5,33.5 - parent: 0 - type: Transform -- uid: 15933 - type: WallReinforced - components: - - pos: 113.5,33.5 - parent: 0 - type: Transform -- uid: 15934 - type: WallReinforced - components: - - pos: 113.5,34.5 - parent: 0 - type: Transform -- uid: 15935 - type: WallReinforced - components: - - pos: 113.5,35.5 - parent: 0 - type: Transform -- uid: 15936 - type: WallReinforced - components: - - pos: 113.5,36.5 - parent: 0 - type: Transform -- uid: 15937 - type: WallReinforced - components: - - pos: 113.5,37.5 - parent: 0 - type: Transform -- uid: 15938 - type: WallReinforced - components: - - pos: 114.5,37.5 - parent: 0 - type: Transform -- uid: 15939 - type: ReinforcedWindow - components: - - pos: 114.5,38.5 - parent: 0 - type: Transform -- uid: 15940 - type: ReinforcedWindow - components: - - pos: 114.5,39.5 - parent: 0 - type: Transform -- uid: 15941 - type: ReinforcedWindow - components: - - pos: 114.5,40.5 - parent: 0 - type: Transform -- uid: 15942 - type: ReinforcedWindow - components: - - pos: 110.5,38.5 - parent: 0 - type: Transform -- uid: 15943 - type: ReinforcedWindow - components: - - pos: 110.5,39.5 - parent: 0 - type: Transform -- uid: 15944 - type: ReinforcedWindow - components: - - pos: 110.5,40.5 - parent: 0 - type: Transform -- uid: 15945 - type: ReinforcedWindow - components: - - pos: 104.5,38.5 - parent: 0 - type: Transform -- uid: 15946 - type: ReinforcedWindow - components: - - pos: 104.5,39.5 - parent: 0 - type: Transform -- uid: 15947 - type: ReinforcedWindow - components: - - pos: 104.5,40.5 - parent: 0 - type: Transform -- uid: 15948 - type: WallReinforced - components: - - pos: 110.5,37.5 - parent: 0 - type: Transform -- uid: 15949 - type: WallReinforced - components: - - pos: 109.5,37.5 - parent: 0 - type: Transform -- uid: 15950 - type: WallReinforced - components: - - pos: 108.5,37.5 - parent: 0 - type: Transform -- uid: 15951 - type: WallReinforced - components: - - pos: 107.5,37.5 - parent: 0 - type: Transform -- uid: 15952 - type: WallReinforced - components: - - pos: 106.5,37.5 - parent: 0 - type: Transform -- uid: 15953 - type: WallReinforced - components: - - pos: 105.5,37.5 - parent: 0 - type: Transform -- uid: 15954 - type: WallReinforced - components: - - pos: 104.5,37.5 - parent: 0 - type: Transform -- uid: 15955 - type: WallReinforced - components: - - pos: 114.5,41.5 - parent: 0 - type: Transform -- uid: 15956 - type: WallReinforced - components: - - pos: 114.5,42.5 - parent: 0 - type: Transform -- uid: 15957 - type: WallReinforced - components: - - pos: 115.5,42.5 - parent: 0 - type: Transform -- uid: 15958 - type: WallReinforced - components: - - pos: 116.5,42.5 - parent: 0 - type: Transform -- uid: 15959 - type: WallReinforced - components: - - pos: 116.5,41.5 - parent: 0 - type: Transform -- uid: 15960 - type: WallReinforced - components: - - pos: 117.5,41.5 - parent: 0 - type: Transform -- uid: 15961 - type: WallReinforced - components: - - pos: 118.5,41.5 - parent: 0 - type: Transform -- uid: 15962 - type: WallReinforced - components: - - pos: 119.5,41.5 - parent: 0 - type: Transform -- uid: 15963 - type: WallReinforced - components: - - pos: 120.5,41.5 - parent: 0 - type: Transform -- uid: 15964 - type: WallReinforced - components: - - pos: 121.5,41.5 - parent: 0 - type: Transform -- uid: 15965 - type: WallReinforced - components: - - pos: 122.5,41.5 - parent: 0 - type: Transform -- uid: 15966 - type: WallReinforced - components: - - pos: 123.5,41.5 - parent: 0 - type: Transform -- uid: 15967 - type: WallReinforced - components: - - pos: 124.5,41.5 - parent: 0 - type: Transform -- uid: 15968 - type: WallReinforced - components: - - pos: 125.5,41.5 - parent: 0 - type: Transform -- uid: 15969 - type: WallReinforced - components: - - pos: 126.5,41.5 - parent: 0 - type: Transform -- uid: 15970 - type: WallReinforced - components: - - pos: 127.5,41.5 - parent: 0 - type: Transform -- uid: 15971 - type: WallReinforced - components: - - pos: 128.5,41.5 - parent: 0 - type: Transform -- uid: 15972 - type: WallReinforced - components: - - pos: 129.5,41.5 - parent: 0 - type: Transform -- uid: 15973 - type: WallReinforced - components: - - pos: 129.5,42.5 - parent: 0 - type: Transform -- uid: 15974 - type: WallReinforced - components: - - pos: 130.5,42.5 - parent: 0 - type: Transform -- uid: 15975 - type: WallReinforced - components: - - pos: 130.5,43.5 - parent: 0 - type: Transform -- uid: 15976 - type: WallReinforced - components: - - pos: 131.5,43.5 - parent: 0 - type: Transform -- uid: 15977 - type: WallReinforced - components: - - pos: 131.5,44.5 - parent: 0 - type: Transform -- uid: 15978 - type: WallReinforced - components: - - pos: 131.5,45.5 - parent: 0 - type: Transform -- uid: 15979 - type: WallReinforced - components: - - pos: 131.5,46.5 - parent: 0 - type: Transform -- uid: 15980 - type: WallReinforced - components: - - pos: 131.5,47.5 - parent: 0 - type: Transform -- uid: 15981 - type: WallReinforced - components: - - pos: 131.5,48.5 - parent: 0 - type: Transform -- uid: 15982 - type: WallReinforced - components: - - pos: 131.5,49.5 - parent: 0 - type: Transform -- uid: 15983 - type: WallReinforced - components: - - pos: 131.5,50.5 - parent: 0 - type: Transform -- uid: 15984 - type: WallReinforced - components: - - pos: 131.5,51.5 - parent: 0 - type: Transform -- uid: 15985 - type: WallReinforced - components: - - pos: 131.5,52.5 - parent: 0 - type: Transform -- uid: 15986 - type: WallReinforced - components: - - pos: 131.5,53.5 - parent: 0 - type: Transform -- uid: 15987 - type: WallReinforced - components: - - pos: 131.5,54.5 - parent: 0 - type: Transform -- uid: 15988 - type: WallReinforced - components: - - pos: 131.5,55.5 - parent: 0 - type: Transform -- uid: 15989 - type: WallReinforced - components: - - pos: 130.5,55.5 - parent: 0 - type: Transform -- uid: 15990 - type: WallReinforced - components: - - pos: 130.5,56.5 - parent: 0 - type: Transform -- uid: 15991 - type: WallReinforced - components: - - pos: 129.5,56.5 - parent: 0 - type: Transform -- uid: 15992 - type: WallReinforced - components: - - pos: 129.5,57.5 - parent: 0 - type: Transform -- uid: 15993 - type: WallReinforced - components: - - pos: 128.5,57.5 - parent: 0 - type: Transform -- uid: 15994 - type: WallReinforced - components: - - pos: 127.5,57.5 - parent: 0 - type: Transform -- uid: 15995 - type: WallReinforced - components: - - pos: 126.5,57.5 - parent: 0 - type: Transform -- uid: 15996 - type: WallReinforced - components: - - pos: 125.5,57.5 - parent: 0 - type: Transform -- uid: 15997 - type: WallReinforced - components: - - pos: 124.5,57.5 - parent: 0 - type: Transform -- uid: 15998 - type: WallReinforced - components: - - pos: 123.5,57.5 - parent: 0 - type: Transform -- uid: 15999 - type: WallReinforced - components: - - pos: 122.5,57.5 - parent: 0 - type: Transform -- uid: 16000 - type: WallReinforced - components: - - pos: 121.5,57.5 - parent: 0 - type: Transform -- uid: 16001 - type: WallReinforced - components: - - pos: 120.5,57.5 - parent: 0 - type: Transform -- uid: 16002 - type: WallReinforced - components: - - pos: 119.5,57.5 - parent: 0 - type: Transform -- uid: 16003 - type: WallReinforced - components: - - pos: 118.5,57.5 - parent: 0 - type: Transform -- uid: 16004 - type: WallReinforced - components: - - pos: 117.5,57.5 - parent: 0 - type: Transform -- uid: 16005 - type: WallReinforced - components: - - pos: 116.5,57.5 - parent: 0 - type: Transform -- uid: 16006 - type: WallReinforced - components: - - pos: 116.5,56.5 - parent: 0 - type: Transform -- uid: 16007 - type: WallReinforced - components: - - pos: 115.5,56.5 - parent: 0 - type: Transform -- uid: 16008 - type: WallReinforced - components: - - pos: 115.5,55.5 - parent: 0 - type: Transform -- uid: 16009 - type: WallReinforced - components: - - pos: 115.5,54.5 - parent: 0 - type: Transform -- uid: 16010 - type: WallReinforced - components: - - pos: 115.5,53.5 - parent: 0 - type: Transform -- uid: 16011 - type: WallReinforced - components: - - pos: 114.5,53.5 - parent: 0 - type: Transform -- uid: 16012 - type: WallReinforced - components: - - pos: 113.5,53.5 - parent: 0 - type: Transform -- uid: 16013 - type: WallReinforced - components: - - pos: 112.5,53.5 - parent: 0 - type: Transform -- uid: 16014 - type: WallReinforced - components: - - pos: 111.5,53.5 - parent: 0 - type: Transform -- uid: 16015 - type: WallReinforced - components: - - pos: 110.5,53.5 - parent: 0 - type: Transform -- uid: 16016 - type: WallReinforced - components: - - pos: 110.5,54.5 - parent: 0 - type: Transform -- uid: 16017 - type: WallReinforced - components: - - pos: 110.5,55.5 - parent: 0 - type: Transform -- uid: 16018 - type: WallReinforced - components: - - pos: 110.5,56.5 - parent: 0 - type: Transform -- uid: 16019 - type: WallReinforced - components: - - pos: 110.5,57.5 - parent: 0 - type: Transform -- uid: 16020 - type: WallReinforced - components: - - pos: 109.5,57.5 - parent: 0 - type: Transform -- uid: 16021 - type: WallReinforced - components: - - pos: 108.5,57.5 - parent: 0 - type: Transform -- uid: 16022 - type: WallReinforced - components: - - pos: 107.5,57.5 - parent: 0 - type: Transform -- uid: 16023 - type: WallReinforced - components: - - pos: 106.5,57.5 - parent: 0 - type: Transform -- uid: 16024 - type: WallReinforced - components: - - pos: 105.5,57.5 - parent: 0 - type: Transform -- uid: 16025 - type: WallReinforced - components: - - pos: 104.5,57.5 - parent: 0 - type: Transform -- uid: 16026 - type: WallReinforced - components: - - pos: 103.5,57.5 - parent: 0 - type: Transform -- uid: 16027 - type: WallReinforced - components: - - pos: 103.5,58.5 - parent: 0 - type: Transform -- uid: 16028 - type: WallReinforced - components: - - pos: 103.5,59.5 - parent: 0 - type: Transform -- uid: 16029 - type: WallReinforced - components: - - pos: 103.5,60.5 - parent: 0 - type: Transform -- uid: 16030 - type: WallReinforced - components: - - pos: 103.5,61.5 - parent: 0 - type: Transform -- uid: 16031 - type: WallReinforced - components: - - pos: 103.5,62.5 - parent: 0 - type: Transform -- uid: 16032 - type: WallReinforced - components: - - pos: 103.5,63.5 - parent: 0 - type: Transform -- uid: 16033 - type: WallReinforced - components: - - pos: 103.5,64.5 - parent: 0 - type: Transform -- uid: 16034 - type: WallReinforced - components: - - pos: 103.5,65.5 - parent: 0 - type: Transform -- uid: 16035 - type: WallReinforced - components: - - pos: 103.5,66.5 - parent: 0 - type: Transform -- uid: 16036 - type: WallReinforced - components: - - pos: 103.5,67.5 - parent: 0 - type: Transform -- uid: 16037 - type: WallReinforced - components: - - pos: 103.5,68.5 - parent: 0 - type: Transform -- uid: 16038 - type: WallReinforced - components: - - pos: 103.5,69.5 - parent: 0 - type: Transform -- uid: 16039 - type: WallReinforced - components: - - pos: 103.5,70.5 - parent: 0 - type: Transform -- uid: 16040 - type: WallReinforced - components: - - pos: 103.5,71.5 - parent: 0 - type: Transform -- uid: 16041 - type: WallReinforced - components: - - pos: 101.5,57.5 - parent: 0 - type: Transform -- uid: 16042 - type: WallReinforced - components: - - pos: 100.5,57.5 - parent: 0 - type: Transform -- uid: 16043 - type: WallReinforced - components: - - pos: 99.5,57.5 - parent: 0 - type: Transform -- uid: 16044 - type: WallReinforced - components: - - pos: 98.5,57.5 - parent: 0 - type: Transform -- uid: 16045 - type: WallReinforced - components: - - pos: 97.5,57.5 - parent: 0 - type: Transform -- uid: 16046 - type: ReinforcedWindow - components: - - pos: 96.5,57.5 - parent: 0 - type: Transform -- uid: 16047 - type: WallReinforced - components: - - pos: 57.5,66.5 - parent: 0 - type: Transform -- uid: 16048 - type: WallReinforced - components: - - pos: 95.5,57.5 - parent: 0 - type: Transform -- uid: 16049 - type: WallReinforced - components: - - pos: 94.5,57.5 - parent: 0 - type: Transform -- uid: 16050 - type: WallReinforced - components: - - pos: 93.5,57.5 - parent: 0 - type: Transform -- uid: 16051 - type: WallReinforced - components: - - pos: 94.5,58.5 - parent: 0 - type: Transform -- uid: 16052 - type: WallReinforced - components: - - pos: 94.5,59.5 - parent: 0 - type: Transform -- uid: 16053 - type: WallReinforced - components: - - pos: 94.5,60.5 - parent: 0 - type: Transform -- uid: 16054 - type: WallReinforced - components: - - pos: 95.5,60.5 - parent: 0 - type: Transform -- uid: 16055 - type: WallReinforced - components: - - pos: 93.5,60.5 - parent: 0 - type: Transform -- uid: 16056 - type: WallReinforced - components: - - pos: 95.5,62.5 - parent: 0 - type: Transform -- uid: 16057 - type: WallReinforced - components: - - pos: 93.5,62.5 - parent: 0 - type: Transform -- uid: 16058 - type: WallReinforced - components: - - pos: 93.5,65.5 - parent: 0 - type: Transform -- uid: 16059 - type: WallReinforced - components: - - pos: 95.5,65.5 - parent: 0 - type: Transform -- uid: 16060 - type: WallReinforced - components: - - pos: 95.5,67.5 - parent: 0 - type: Transform -- uid: 16061 - type: WallReinforced - components: - - pos: 94.5,67.5 - parent: 0 - type: Transform -- uid: 16062 - type: WallReinforced - components: - - pos: 93.5,67.5 - parent: 0 - type: Transform -- uid: 16063 - type: ReinforcedWindow - components: - - pos: 94.5,62.5 - parent: 0 - type: Transform -- uid: 16064 - type: ReinforcedWindow - components: - - pos: 93.5,63.5 - parent: 0 - type: Transform -- uid: 16065 - type: ReinforcedWindow - components: - - pos: 93.5,64.5 - parent: 0 - type: Transform -- uid: 16066 - type: ReinforcedWindow - components: - - pos: 94.5,65.5 - parent: 0 - type: Transform -- uid: 16067 - type: ReinforcedWindow - components: - - pos: 94.5,68.5 - parent: 0 - type: Transform -- uid: 16068 - type: ReinforcedWindow - components: - - pos: 94.5,69.5 - parent: 0 - type: Transform -- uid: 16069 - type: ReinforcedWindow - components: - - pos: 94.5,70.5 - parent: 0 - type: Transform -- uid: 16070 - type: ReinforcedWindow - components: - - pos: 92.5,71.5 - parent: 0 - type: Transform -- uid: 16071 - type: ReinforcedWindow - components: - - pos: 90.5,71.5 - parent: 0 - type: Transform -- uid: 16072 - type: WallReinforced - components: - - pos: 95.5,71.5 - parent: 0 - type: Transform -- uid: 16073 - type: WallReinforced - components: - - pos: 94.5,71.5 - parent: 0 - type: Transform -- uid: 16074 - type: WallReinforced - components: - - pos: 93.5,71.5 - parent: 0 - type: Transform -- uid: 16075 - type: WallReinforced - components: - - pos: 93.5,72.5 - parent: 0 - type: Transform -- uid: 16076 - type: WallReinforced - components: - - pos: 93.5,73.5 - parent: 0 - type: Transform -- uid: 16077 - type: WallReinforced - components: - - pos: 93.5,74.5 - parent: 0 - type: Transform -- uid: 16078 - type: Catwalk - components: - - pos: 106.5,-64.5 - parent: 0 - type: Transform -- uid: 16079 - type: AirlockCommandGlassLocked - components: - - pos: 91.5,71.5 - parent: 0 - type: Transform -- uid: 16080 - type: WallReinforced - components: - - pos: 89.5,74.5 - parent: 0 - type: Transform -- uid: 16081 - type: WallReinforced - components: - - pos: 89.5,73.5 - parent: 0 - type: Transform -- uid: 16082 - type: WallReinforced - components: - - pos: 89.5,72.5 - parent: 0 - type: Transform -- uid: 16083 - type: WallReinforced - components: - - pos: 89.5,71.5 - parent: 0 - type: Transform -- uid: 16084 - type: ReinforcedWindow - components: - - pos: 90.5,74.5 - parent: 0 - type: Transform -- uid: 16085 - type: ReinforcedWindow - components: - - pos: 92.5,74.5 - parent: 0 - type: Transform -- uid: 16086 - type: WallReinforced - components: - - pos: 89.5,70.5 - parent: 0 - type: Transform -- uid: 16087 - type: ReinforcedWindow - components: - - pos: 89.5,69.5 - parent: 0 - type: Transform -- uid: 16088 - type: ReinforcedWindow - components: - - pos: 89.5,68.5 - parent: 0 - type: Transform -- uid: 16089 - type: ReinforcedWindow - components: - - pos: 89.5,67.5 - parent: 0 - type: Transform -- uid: 16090 - type: ReinforcedWindow - components: - - pos: 89.5,63.5 - parent: 0 - type: Transform -- uid: 16091 - type: ReinforcedWindow - components: - - pos: 89.5,62.5 - parent: 0 - type: Transform -- uid: 16092 - type: ReinforcedWindow - components: - - pos: 89.5,61.5 - parent: 0 - type: Transform -- uid: 16093 - type: WallReinforced - components: - - pos: 89.5,64.5 - parent: 0 - type: Transform -- uid: 16094 - type: WallReinforced - components: - - pos: 89.5,65.5 - parent: 0 - type: Transform -- uid: 16095 - type: WallReinforced - components: - - pos: 89.5,66.5 - parent: 0 - type: Transform -- uid: 16096 - type: WallReinforced - components: - - pos: 89.5,60.5 - parent: 0 - type: Transform -- uid: 16097 - type: WallReinforced - components: - - pos: 89.5,59.5 - parent: 0 - type: Transform -- uid: 16098 - type: WallReinforced - components: - - pos: 89.5,58.5 - parent: 0 - type: Transform -- uid: 16099 - type: WallReinforced - components: - - pos: 89.5,57.5 - parent: 0 - type: Transform -- uid: 16100 - type: ReinforcedWindow - components: - - pos: 88.5,57.5 - parent: 0 - type: Transform -- uid: 16101 - type: ReinforcedWindow - components: - - pos: 87.5,57.5 - parent: 0 - type: Transform -- uid: 16102 - type: ReinforcedWindow - components: - - pos: 86.5,57.5 - parent: 0 - type: Transform -- uid: 16103 - type: WallReinforced - components: - - pos: 85.5,57.5 - parent: 0 - type: Transform -- uid: 16104 - type: WallReinforced - components: - - pos: 85.5,58.5 - parent: 0 - type: Transform -- uid: 16105 - type: WallReinforced - components: - - pos: 84.5,58.5 - parent: 0 - type: Transform -- uid: 16106 - type: WallReinforced - components: - - pos: 81.5,58.5 - parent: 0 - type: Transform -- uid: 16107 - type: WallReinforced - components: - - pos: 78.5,58.5 - parent: 0 - type: Transform -- uid: 16108 - type: WallReinforced - components: - - pos: 75.5,58.5 - parent: 0 - type: Transform -- uid: 16109 - type: ReinforcedWindow - components: - - pos: 83.5,58.5 - parent: 0 - type: Transform -- uid: 16110 - type: ReinforcedWindow - components: - - pos: 82.5,58.5 - parent: 0 - type: Transform -- uid: 16111 - type: ReinforcedWindow - components: - - pos: 80.5,58.5 - parent: 0 - type: Transform -- uid: 16112 - type: ReinforcedWindow - components: - - pos: 79.5,58.5 - parent: 0 - type: Transform -- uid: 16113 - type: ReinforcedWindow - components: - - pos: 77.5,58.5 - parent: 0 - type: Transform -- uid: 16114 - type: ReinforcedWindow - components: - - pos: 76.5,58.5 - parent: 0 - type: Transform -- uid: 16115 - type: WallReinforced - components: - - pos: 75.5,57.5 - parent: 0 - type: Transform -- uid: 16116 - type: WallReinforced - components: - - pos: 74.5,58.5 - parent: 0 - type: Transform -- uid: 16117 - type: WallReinforced - components: - - pos: 74.5,59.5 - parent: 0 - type: Transform -- uid: 16118 - type: ReinforcedWindow - components: - - pos: 74.5,60.5 - parent: 0 - type: Transform -- uid: 16119 - type: ReinforcedWindow - components: - - pos: 74.5,61.5 - parent: 0 - type: Transform -- uid: 16120 - type: ReinforcedWindow - components: - - pos: 73.5,61.5 - parent: 0 - type: Transform -- uid: 16121 - type: ReinforcedWindow - components: - - pos: 71.5,61.5 - parent: 0 - type: Transform -- uid: 16122 - type: ReinforcedWindow - components: - - pos: 70.5,61.5 - parent: 0 - type: Transform -- uid: 16123 - type: ReinforcedWindow - components: - - pos: 69.5,61.5 - parent: 0 - type: Transform -- uid: 16124 - type: ReinforcedWindow - components: - - pos: 67.5,61.5 - parent: 0 - type: Transform -- uid: 16125 - type: WallReinforced - components: - - pos: 72.5,61.5 - parent: 0 - type: Transform -- uid: 16126 - type: WallReinforced - components: - - pos: 68.5,61.5 - parent: 0 - type: Transform -- uid: 16127 - type: WallReinforced - components: - - pos: 66.5,61.5 - parent: 0 - type: Transform -- uid: 16128 - type: WallReinforced - components: - - pos: 65.5,61.5 - parent: 0 - type: Transform -- uid: 16129 - type: CableApcExtension - components: - - pos: 64.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16130 - type: ReinforcedWindow - components: - - pos: 63.5,61.5 - parent: 0 - type: Transform -- uid: 16131 - type: ReinforcedWindow - components: - - pos: 62.5,61.5 - parent: 0 - type: Transform -- uid: 16132 - type: ReinforcedWindow - components: - - pos: 61.5,61.5 - parent: 0 - type: Transform -- uid: 16133 - type: ReinforcedWindow - components: - - pos: 60.5,61.5 - parent: 0 - type: Transform -- uid: 16134 - type: Grille - components: - - pos: 64.5,61.5 - parent: 0 - type: Transform -- uid: 16135 - type: WallReinforced - components: - - pos: 58.5,61.5 - parent: 0 - type: Transform -- uid: 16136 - type: WallReinforced - components: - - pos: 57.5,61.5 - parent: 0 - type: Transform -- uid: 16137 - type: WallReinforced - components: - - pos: 57.5,62.5 - parent: 0 - type: Transform -- uid: 16138 - type: WallReinforced - components: - - pos: 57.5,65.5 - parent: 0 - type: Transform -- uid: 16139 - type: ReinforcedWindow - components: - - pos: 57.5,63.5 - parent: 0 - type: Transform -- uid: 16140 - type: ReinforcedWindow - components: - - pos: 57.5,64.5 - parent: 0 - type: Transform -- uid: 16141 - type: WallReinforced - components: - - pos: 58.5,66.5 - parent: 0 - type: Transform -- uid: 16142 - type: Grille - components: - - pos: 88.5,65.5 - parent: 0 - type: Transform -- uid: 16143 - type: Grille - components: - - pos: 87.5,65.5 - parent: 0 - type: Transform -- uid: 16144 - type: Grille - components: - - pos: 86.5,65.5 - parent: 0 - type: Transform -- uid: 16145 - type: Grille - components: - - pos: 85.5,65.5 - parent: 0 - type: Transform -- uid: 16146 - type: Grille - components: - - pos: 84.5,65.5 - parent: 0 - type: Transform -- uid: 16147 - type: Grille - components: - - pos: 83.5,65.5 - parent: 0 - type: Transform -- uid: 16148 - type: Grille - components: - - pos: 82.5,65.5 - parent: 0 - type: Transform -- uid: 16149 - type: Grille - components: - - pos: 80.5,65.5 - parent: 0 - type: Transform -- uid: 16150 - type: Grille - components: - - pos: 79.5,65.5 - parent: 0 - type: Transform -- uid: 16151 - type: Grille - components: - - pos: 78.5,65.5 - parent: 0 - type: Transform -- uid: 16152 - type: Grille - components: - - pos: 77.5,65.5 - parent: 0 - type: Transform -- uid: 16153 - type: Grille - components: - - pos: 76.5,65.5 - parent: 0 - type: Transform -- uid: 16154 - type: Grille - components: - - pos: 75.5,65.5 - parent: 0 - type: Transform -- uid: 16155 - type: Grille - components: - - pos: 71.5,65.5 - parent: 0 - type: Transform -- uid: 16156 - type: Grille - components: - - pos: 74.5,65.5 - parent: 0 - type: Transform -- uid: 16157 - type: Grille - components: - - pos: 70.5,65.5 - parent: 0 - type: Transform -- uid: 16158 - type: Grille - components: - - pos: 69.5,65.5 - parent: 0 - type: Transform -- uid: 16159 - type: Grille - components: - - pos: 68.5,65.5 - parent: 0 - type: Transform -- uid: 16160 - type: Grille - components: - - pos: 67.5,65.5 - parent: 0 - type: Transform -- uid: 16161 - type: Grille - components: - - pos: 66.5,65.5 - parent: 0 - type: Transform -- uid: 16162 - type: Grille - components: - - pos: 65.5,65.5 - parent: 0 - type: Transform -- uid: 16163 - type: Grille - components: - - pos: 58.5,65.5 - parent: 0 - type: Transform -- uid: 16164 - type: Grille - components: - - pos: 59.5,65.5 - parent: 0 - type: Transform -- uid: 16165 - type: Grille - components: - - pos: 60.5,65.5 - parent: 0 - type: Transform -- uid: 16166 - type: Grille - components: - - pos: 61.5,65.5 - parent: 0 - type: Transform -- uid: 16167 - type: Grille - components: - - pos: 62.5,65.5 - parent: 0 - type: Transform -- uid: 16168 - type: Grille - components: - - pos: 63.5,65.5 - parent: 0 - type: Transform -- uid: 16169 - type: Catwalk - components: - - pos: 88.5,66.5 - parent: 0 - type: Transform -- uid: 16170 - type: Catwalk - components: - - pos: 87.5,66.5 - parent: 0 - type: Transform -- uid: 16171 - type: Catwalk - components: - - pos: 86.5,66.5 - parent: 0 - type: Transform -- uid: 16172 - type: Catwalk - components: - - pos: 85.5,66.5 - parent: 0 - type: Transform -- uid: 16173 - type: Catwalk - components: - - pos: 84.5,66.5 - parent: 0 - type: Transform -- uid: 16174 - type: Catwalk - components: - - pos: 83.5,66.5 - parent: 0 - type: Transform -- uid: 16175 - type: Catwalk - components: - - pos: 82.5,66.5 - parent: 0 - type: Transform -- uid: 16176 - type: Catwalk - components: - - pos: 81.5,66.5 - parent: 0 - type: Transform -- uid: 16177 - type: Catwalk - components: - - pos: 80.5,66.5 - parent: 0 - type: Transform -- uid: 16178 - type: Catwalk - components: - - pos: 79.5,66.5 - parent: 0 - type: Transform -- uid: 16179 - type: Catwalk - components: - - pos: 78.5,66.5 - parent: 0 - type: Transform -- uid: 16180 - type: Catwalk - components: - - pos: 77.5,66.5 - parent: 0 - type: Transform -- uid: 16181 - type: Catwalk - components: - - pos: 76.5,66.5 - parent: 0 - type: Transform -- uid: 16182 - type: Catwalk - components: - - pos: 75.5,66.5 - parent: 0 - type: Transform -- uid: 16183 - type: Catwalk - components: - - pos: 74.5,66.5 - parent: 0 - type: Transform -- uid: 16184 - type: Catwalk - components: - - pos: 73.5,66.5 - parent: 0 - type: Transform -- uid: 16185 - type: Catwalk - components: - - pos: 72.5,66.5 - parent: 0 - type: Transform -- uid: 16186 - type: Catwalk - components: - - pos: 71.5,66.5 - parent: 0 - type: Transform -- uid: 16187 - type: Catwalk - components: - - pos: 70.5,66.5 - parent: 0 - type: Transform -- uid: 16188 - type: Catwalk - components: - - pos: 69.5,66.5 - parent: 0 - type: Transform -- uid: 16189 - type: Catwalk - components: - - pos: 68.5,66.5 - parent: 0 - type: Transform -- uid: 16190 - type: Catwalk - components: - - pos: 67.5,66.5 - parent: 0 - type: Transform -- uid: 16191 - type: Catwalk - components: - - pos: 66.5,66.5 - parent: 0 - type: Transform -- uid: 16192 - type: Catwalk - components: - - pos: 65.5,66.5 - parent: 0 - type: Transform -- uid: 16193 - type: Catwalk - components: - - pos: 64.5,66.5 - parent: 0 - type: Transform -- uid: 16194 - type: Catwalk - components: - - pos: 63.5,66.5 - parent: 0 - type: Transform -- uid: 16195 - type: Catwalk - components: - - pos: 62.5,66.5 - parent: 0 - type: Transform -- uid: 16196 - type: Catwalk - components: - - pos: 61.5,66.5 - parent: 0 - type: Transform -- uid: 16197 - type: Catwalk - components: - - pos: 60.5,66.5 - parent: 0 - type: Transform -- uid: 16198 - type: Catwalk - components: - - pos: 59.5,66.5 - parent: 0 - type: Transform -- uid: 16199 - type: CableHV - components: - - pos: 9.5,72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16200 - type: CableHV - components: - - pos: 9.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16201 - type: CableHV - components: - - pos: 10.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16202 - type: CableHV - components: - - pos: 9.5,71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16203 - type: CableHV - components: - - pos: -4.5,56.5 - parent: 0 - type: Transform -- uid: 16204 - type: CableHV - components: - - pos: -4.5,57.5 - parent: 0 - type: Transform -- uid: 16205 - type: CableHV - components: - - pos: -4.5,58.5 - parent: 0 - type: Transform -- uid: 16206 - type: CableHV - components: - - pos: -4.5,59.5 - parent: 0 - type: Transform -- uid: 16207 - type: CableHV - components: - - pos: -2.5,69.5 - parent: 0 - type: Transform -- uid: 16208 - type: CableHV - components: - - pos: -1.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16209 - type: CableHV - components: - - pos: -0.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16210 - type: CableHV - components: - - pos: 1.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16211 - type: CableHV - components: - - pos: 0.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16212 - type: CableHV - components: - - pos: 2.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16213 - type: CableHV - components: - - pos: 2.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16214 - type: CableHV - components: - - pos: 2.5,71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16215 - type: CableHV - components: - - pos: 3.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16216 - type: CableHV - components: - - pos: 5.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16217 - type: CableHV - components: - - pos: 4.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16218 - type: WallReinforced - components: - - pos: 62.5,-7.5 - parent: 0 - type: Transform -- uid: 16219 - type: CableHV - components: - - pos: 6.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16220 - type: CableHV - components: - - pos: -4.5,61.5 - parent: 0 - type: Transform -- uid: 16221 - type: CableHV - components: - - pos: -4.5,62.5 - parent: 0 - type: Transform -- uid: 16222 - type: CableHV - components: - - pos: 7.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16223 - type: CableHV - components: - - pos: 8.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16224 - type: CableHV - components: - - pos: -4.5,63.5 - parent: 0 - type: Transform -- uid: 16225 - type: CableHV - components: - - pos: -4.5,64.5 - parent: 0 - type: Transform -- uid: 16226 - type: CableHV - components: - - pos: 9.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16227 - type: CableHV - components: - - pos: 9.5,73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16228 - type: CableHV - components: - - pos: -4.5,68.5 - parent: 0 - type: Transform -- uid: 16229 - type: CableHV - components: - - pos: -4.5,69.5 - parent: 0 - type: Transform -- uid: 16230 - type: CableHV - components: - - pos: -3.5,69.5 - parent: 0 - type: Transform -- uid: 16231 - type: CableHV - components: - - pos: -4.5,65.5 - parent: 0 - type: Transform -- uid: 16232 - type: CableHV - components: - - pos: -4.5,66.5 - parent: 0 - type: Transform -- uid: 16233 - type: CableHV - components: - - pos: -4.5,67.5 - parent: 0 - type: Transform -- uid: 16234 - type: CableHV - components: - - pos: 2.5,72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16235 - type: CableHV - components: - - pos: 2.5,73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16236 - type: CableHV - components: - - pos: -4.5,60.5 - parent: 0 - type: Transform -- uid: 16237 - type: CableHV - components: - - pos: 2.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16238 - type: WallReinforced - components: - - pos: 62.5,-6.5 - parent: 0 - type: Transform -- uid: 16239 - type: WallReinforced - components: - - pos: 57.5,-1.5 - parent: 0 - type: Transform -- uid: 16240 - type: WallReinforced - components: - - pos: 57.5,-2.5 - parent: 0 - type: Transform -- uid: 16241 - type: WallReinforced - components: - - pos: 57.5,-3.5 - parent: 0 - type: Transform -- uid: 16242 - type: WallReinforced - components: - - pos: 57.5,-4.5 - parent: 0 - type: Transform -- uid: 16243 - type: WallReinforced - components: - - pos: 63.5,-6.5 - parent: 0 - type: Transform -- uid: 16244 - type: WallReinforced - components: - - pos: 57.5,0.5 - parent: 0 - type: Transform -- uid: 16245 - type: WallReinforced - components: - - pos: 57.5,-0.5 - parent: 0 - type: Transform -- uid: 16246 - type: WallReinforced - components: - - pos: 57.5,-5.5 - parent: 0 - type: Transform -- uid: 16247 - type: WallReinforced - components: - - pos: 63.5,-5.5 - parent: 0 - type: Transform -- uid: 16248 - type: WallSolid - components: - - pos: 57.5,-8.5 - parent: 0 - type: Transform -- uid: 16249 - type: WallReinforced - components: - - pos: 58.5,-8.5 - parent: 0 - type: Transform -- uid: 16250 - type: WallReinforced - components: - - pos: 58.5,-7.5 - parent: 0 - type: Transform -- uid: 16251 - type: WallReinforced - components: - - pos: 58.5,-6.5 - parent: 0 - type: Transform -- uid: 16252 - type: WallReinforced - components: - - pos: 57.5,-6.5 - parent: 0 - type: Transform -- uid: 16253 - type: WallReinforced - components: - - pos: 62.5,-8.5 - parent: 0 - type: Transform -- uid: 16254 - type: WallReinforced - components: - - pos: 56.5,41.5 - parent: 0 - type: Transform -- uid: 16255 - type: WallSolid - components: - - pos: 60.5,41.5 - parent: 0 - type: Transform -- uid: 16256 - type: WallSolid - components: - - pos: 64.5,41.5 - parent: 0 - type: Transform -- uid: 16257 - type: ReinforcedWindow - components: - - pos: 57.5,41.5 - parent: 0 - type: Transform -- uid: 16258 - type: ReinforcedWindow - components: - - pos: 58.5,41.5 - parent: 0 - type: Transform -- uid: 16259 - type: ReinforcedWindow - components: - - pos: 59.5,41.5 - parent: 0 - type: Transform -- uid: 16260 - type: ReinforcedWindow - components: - - pos: 61.5,41.5 - parent: 0 - type: Transform -- uid: 16261 - type: ReinforcedWindow - components: - - pos: 62.5,41.5 - parent: 0 - type: Transform -- uid: 16262 - type: ReinforcedWindow - components: - - pos: 63.5,41.5 - parent: 0 - type: Transform -- uid: 16263 - type: WallSolid - components: - - pos: 66.5,41.5 - parent: 0 - type: Transform -- uid: 16264 - type: WallSolid - components: - - pos: 66.5,42.5 - parent: 0 - type: Transform -- uid: 16265 - type: WallReinforced - components: - - pos: 66.5,43.5 - parent: 0 - type: Transform -- uid: 16266 - type: WallReinforced - components: - - pos: 67.5,43.5 - parent: 0 - type: Transform -- uid: 16267 - type: WallReinforced - components: - - pos: 68.5,43.5 - parent: 0 - type: Transform -- uid: 16268 - type: WallReinforced - components: - - pos: 69.5,43.5 - parent: 0 - type: Transform -- uid: 16269 - type: WallReinforced - components: - - pos: 70.5,43.5 - parent: 0 - type: Transform -- uid: 16270 - type: WallReinforced - components: - - pos: 70.5,42.5 - parent: 0 - type: Transform -- uid: 16271 - type: WallReinforced - components: - - pos: 70.5,41.5 - parent: 0 - type: Transform -- uid: 16272 - type: WallReinforced - components: - - pos: 70.5,44.5 - parent: 0 - type: Transform -- uid: 16273 - type: WallReinforced - components: - - pos: 66.5,44.5 - parent: 0 - type: Transform -- uid: 16274 - type: WallSolid - components: - - pos: 59.5,52.5 - parent: 0 - type: Transform -- uid: 16275 - type: ReinforcedWindow - components: - - pos: 69.5,41.5 - parent: 0 - type: Transform -- uid: 16276 - type: ReinforcedWindow - components: - - pos: 68.5,41.5 - parent: 0 - type: Transform -- uid: 16277 - type: ReinforcedWindow - components: - - pos: 67.5,41.5 - parent: 0 - type: Transform -- uid: 16278 - type: WallReinforced - components: - - pos: 65.5,43.5 - parent: 0 - type: Transform -- uid: 16279 - type: WallReinforced - components: - - pos: 56.5,43.5 - parent: 0 - type: Transform -- uid: 16280 - type: WallReinforced - components: - - pos: 57.5,43.5 - parent: 0 - type: Transform -- uid: 16281 - type: ReinforcedWindow - components: - - pos: 59.5,43.5 - parent: 0 - type: Transform -- uid: 16282 - type: ReinforcedWindow - components: - - pos: 60.5,43.5 - parent: 0 - type: Transform -- uid: 16283 - type: ReinforcedWindow - components: - - pos: 64.5,43.5 - parent: 0 - type: Transform -- uid: 16284 - type: ReinforcedWindow - components: - - pos: 63.5,43.5 - parent: 0 - type: Transform -- uid: 16285 - type: ReinforcedWindow - components: - - pos: 62.5,43.5 - parent: 0 - type: Transform -- uid: 16286 - type: WallReinforced - components: - - pos: 61.5,43.5 - parent: 0 - type: Transform -- uid: 16287 - type: WallReinforced - components: - - pos: 56.5,44.5 - parent: 0 - type: Transform -- uid: 16288 - type: WallReinforced - components: - - pos: 56.5,45.5 - parent: 0 - type: Transform -- uid: 16289 - type: WallReinforced - components: - - pos: 56.5,46.5 - parent: 0 - type: Transform -- uid: 16290 - type: WallReinforced - components: - - pos: 56.5,47.5 - parent: 0 - type: Transform -- uid: 16291 - type: WallReinforced - components: - - pos: 56.5,48.5 - parent: 0 - type: Transform -- uid: 16292 - type: WallReinforced - components: - - pos: 56.5,49.5 - parent: 0 - type: Transform -- uid: 16293 - type: WallReinforced - components: - - pos: 57.5,49.5 - parent: 0 - type: Transform -- uid: 16294 - type: WallReinforced - components: - - pos: 58.5,49.5 - parent: 0 - type: Transform -- uid: 16295 - type: WallReinforced - components: - - pos: 58.5,50.5 - parent: 0 - type: Transform -- uid: 16296 - type: WallReinforced - components: - - pos: 58.5,51.5 - parent: 0 - type: Transform -- uid: 16297 - type: WallReinforced - components: - - pos: 58.5,52.5 - parent: 0 - type: Transform -- uid: 16298 - type: WallReinforced - components: - - pos: 57.5,60.5 - parent: 0 - type: Transform -- uid: 16299 - type: WallReinforced - components: - - pos: 57.5,54.5 - parent: 0 - type: Transform -- uid: 16300 - type: WallReinforced - components: - - pos: 57.5,52.5 - parent: 0 - type: Transform -- uid: 16301 - type: WallReinforced - components: - - pos: 57.5,53.5 - parent: 0 - type: Transform -- uid: 16302 - type: WallReinforced - components: - - pos: 57.5,55.5 - parent: 0 - type: Transform -- uid: 16303 - type: WallReinforced - components: - - pos: 57.5,59.5 - parent: 0 - type: Transform -- uid: 16304 - type: WallReinforced - components: - - pos: 57.5,58.5 - parent: 0 - type: Transform -- uid: 16305 - type: WallReinforced - components: - - pos: 57.5,57.5 - parent: 0 - type: Transform -- uid: 16306 - type: WallReinforced - components: - - pos: 56.5,66.5 - parent: 0 - type: Transform -- uid: 16307 - type: ReinforcedWindow - components: - - pos: 71.5,41.5 - parent: 0 - type: Transform -- uid: 16308 - type: ReinforcedWindow - components: - - pos: 71.5,44.5 - parent: 0 - type: Transform -- uid: 16309 - type: ReinforcedWindow - components: - - pos: 74.5,44.5 - parent: 0 - type: Transform -- uid: 16310 - type: ReinforcedWindow - components: - - pos: 74.5,41.5 - parent: 0 - type: Transform -- uid: 16311 - type: WallReinforced - components: - - pos: 75.5,41.5 - parent: 0 - type: Transform -- uid: 16312 - type: WallReinforced - components: - - pos: 75.5,42.5 - parent: 0 - type: Transform -- uid: 16313 - type: WallReinforced - components: - - pos: 75.5,43.5 - parent: 0 - type: Transform -- uid: 16314 - type: WallReinforced - components: - - pos: 75.5,44.5 - parent: 0 - type: Transform -- uid: 16315 - type: WallReinforced - components: - - pos: 76.5,41.5 - parent: 0 - type: Transform -- uid: 16316 - type: WallReinforced - components: - - pos: 77.5,41.5 - parent: 0 - type: Transform -- uid: 16317 - type: WallReinforced - components: - - pos: 78.5,41.5 - parent: 0 - type: Transform -- uid: 16318 - type: WallReinforced - components: - - pos: 79.5,41.5 - parent: 0 - type: Transform -- uid: 16319 - type: WallReinforced - components: - - pos: 80.5,41.5 - parent: 0 - type: Transform -- uid: 16320 - type: WallReinforced - components: - - pos: 75.5,46.5 - parent: 0 - type: Transform -- uid: 16321 - type: WallReinforced - components: - - pos: 75.5,47.5 - parent: 0 - type: Transform -- uid: 16322 - type: WallReinforced - components: - - pos: 75.5,48.5 - parent: 0 - type: Transform -- uid: 16323 - type: WallSolid - components: - - pos: 62.5,52.5 - parent: 0 - type: Transform -- uid: 16324 - type: WallSolid - components: - - pos: 61.5,52.5 - parent: 0 - type: Transform -- uid: 16325 - type: WallSolid - components: - - pos: 62.5,51.5 - parent: 0 - type: Transform -- uid: 16326 - type: WallSolid - components: - - pos: 62.5,49.5 - parent: 0 - type: Transform -- uid: 16327 - type: WallSolid - components: - - pos: 63.5,49.5 - parent: 0 - type: Transform -- uid: 16328 - type: WallSolid - components: - - pos: 64.5,49.5 - parent: 0 - type: Transform -- uid: 16329 - type: WallSolid - components: - - pos: 65.5,49.5 - parent: 0 - type: Transform -- uid: 16330 - type: WallSolid - components: - - pos: 66.5,49.5 - parent: 0 - type: Transform -- uid: 16331 - type: WallSolid - components: - - pos: 66.5,50.5 - parent: 0 - type: Transform -- uid: 16332 - type: WallSolid - components: - - pos: 66.5,51.5 - parent: 0 - type: Transform -- uid: 16333 - type: WallSolid - components: - - pos: 66.5,52.5 - parent: 0 - type: Transform -- uid: 16334 - type: WallSolid - components: - - pos: 65.5,52.5 - parent: 0 - type: Transform -- uid: 16335 - type: WallSolid - components: - - pos: 64.5,52.5 - parent: 0 - type: Transform -- uid: 16336 - type: WallSolid - components: - - pos: 63.5,52.5 - parent: 0 - type: Transform -- uid: 16337 - type: WallSolid - components: - - pos: 66.5,53.5 - parent: 0 - type: Transform -- uid: 16338 - type: WallSolid - components: - - pos: 66.5,48.5 - parent: 0 - type: Transform -- uid: 16339 - type: WallSolid - components: - - pos: 66.5,47.5 - parent: 0 - type: Transform -- uid: 16340 - type: CableMV - components: - - pos: 66.5,45.5 - parent: 0 - type: Transform -- uid: 16341 - type: WallSolid - components: - - pos: 66.5,60.5 - parent: 0 - type: Transform -- uid: 16342 - type: WallSolid - components: - - pos: 66.5,59.5 - parent: 0 - type: Transform -- uid: 16343 - type: WallSolid - components: - - pos: 66.5,57.5 - parent: 0 - type: Transform -- uid: 16344 - type: WallSolid - components: - - pos: 66.5,55.5 - parent: 0 - type: Transform -- uid: 16345 - type: Window - components: - - pos: 79.5,42.5 - parent: 0 - type: Transform -- uid: 16346 - type: WallReinforced - components: - - pos: 81.5,41.5 - parent: 0 - type: Transform -- uid: 16347 - type: WallReinforced - components: - - pos: 82.5,41.5 - parent: 0 - type: Transform -- uid: 16348 - type: WallReinforced - components: - - pos: 83.5,41.5 - parent: 0 - type: Transform -- uid: 16349 - type: WallReinforced - components: - - pos: 84.5,41.5 - parent: 0 - type: Transform -- uid: 16350 - type: WallReinforced - components: - - pos: 84.5,42.5 - parent: 0 - type: Transform -- uid: 16351 - type: WallReinforced - components: - - pos: 84.5,43.5 - parent: 0 - type: Transform -- uid: 16352 - type: WallReinforced - components: - - pos: 86.5,43.5 - parent: 0 - type: Transform -- uid: 16353 - type: WallReinforced - components: - - pos: 87.5,43.5 - parent: 0 - type: Transform -- uid: 16354 - type: WallReinforced - components: - - pos: 85.5,43.5 - parent: 0 - type: Transform -- uid: 16355 - type: WallReinforced - components: - - pos: 88.5,43.5 - parent: 0 - type: Transform -- uid: 16356 - type: WallReinforced - components: - - pos: 88.5,44.5 - parent: 0 - type: Transform -- uid: 16357 - type: WallReinforced - components: - - pos: 88.5,45.5 - parent: 0 - type: Transform -- uid: 16358 - type: WallReinforced - components: - - pos: 90.5,45.5 - parent: 0 - type: Transform -- uid: 16359 - type: WallReinforced - components: - - pos: 90.5,44.5 - parent: 0 - type: Transform -- uid: 16360 - type: WallReinforced - components: - - pos: 90.5,43.5 - parent: 0 - type: Transform -- uid: 16361 - type: WallReinforced - components: - - pos: 91.5,43.5 - parent: 0 - type: Transform -- uid: 16362 - type: WallReinforced - components: - - pos: 92.5,43.5 - parent: 0 - type: Transform -- uid: 16363 - type: WallReinforced - components: - - pos: 93.5,43.5 - parent: 0 - type: Transform -- uid: 16364 - type: WallReinforced - components: - - pos: 94.5,43.5 - parent: 0 - type: Transform -- uid: 16365 - type: WallReinforced - components: - - pos: 94.5,42.5 - parent: 0 - type: Transform -- uid: 16366 - type: WallReinforced - components: - - pos: 94.5,41.5 - parent: 0 - type: Transform -- uid: 16367 - type: ReinforcedWindow - components: - - pos: 87.5,45.5 - parent: 0 - type: Transform -- uid: 16368 - type: ReinforcedWindow - components: - - pos: 86.5,45.5 - parent: 0 - type: Transform -- uid: 16369 - type: ReinforcedWindow - components: - - pos: 86.5,46.5 - parent: 0 - type: Transform -- uid: 16370 - type: ReinforcedWindow - components: - - pos: 91.5,45.5 - parent: 0 - type: Transform -- uid: 16371 - type: ReinforcedWindow - components: - - pos: 92.5,45.5 - parent: 0 - type: Transform -- uid: 16372 - type: ReinforcedWindow - components: - - pos: 92.5,46.5 - parent: 0 - type: Transform -- uid: 16373 - type: ReinforcedWindow - components: - - pos: 86.5,47.5 - parent: 0 - type: Transform -- uid: 16374 - type: WallReinforced - components: - - pos: 86.5,48.5 - parent: 0 - type: Transform -- uid: 16375 - type: ReinforcedWindow - components: - - pos: 92.5,47.5 - parent: 0 - type: Transform -- uid: 16376 - type: WallReinforced - components: - - pos: 86.5,49.5 - parent: 0 - type: Transform -- uid: 16377 - type: WallReinforced - components: - - pos: 92.5,48.5 - parent: 0 - type: Transform -- uid: 16378 - type: WallReinforced - components: - - pos: 92.5,49.5 - parent: 0 - type: Transform -- uid: 16379 - type: ReinforcedWindow - components: - - pos: 86.5,50.5 - parent: 0 - type: Transform -- uid: 16380 - type: ReinforcedWindow - components: - - pos: 86.5,51.5 - parent: 0 - type: Transform -- uid: 16381 - type: ReinforcedWindow - components: - - pos: 86.5,52.5 - parent: 0 - type: Transform -- uid: 16382 - type: ReinforcedWindow - components: - - pos: 87.5,52.5 - parent: 0 - type: Transform -- uid: 16383 - type: ReinforcedWindow - components: - - pos: 92.5,50.5 - parent: 0 - type: Transform -- uid: 16384 - type: ReinforcedWindow - components: - - pos: 92.5,51.5 - parent: 0 - type: Transform -- uid: 16385 - type: ReinforcedWindow - components: - - pos: 91.5,52.5 - parent: 0 - type: Transform -- uid: 16386 - type: ReinforcedWindow - components: - - pos: 92.5,52.5 - parent: 0 - type: Transform -- uid: 16387 - type: WallReinforced - components: - - pos: 88.5,52.5 - parent: 0 - type: Transform -- uid: 16388 - type: WallReinforced - components: - - pos: 90.5,52.5 - parent: 0 - type: Transform -- uid: 16389 - type: WallReinforced - components: - - pos: 90.5,53.5 - parent: 0 - type: Transform -- uid: 16390 - type: WallReinforced - components: - - pos: 90.5,54.5 - parent: 0 - type: Transform -- uid: 16391 - type: WallReinforced - components: - - pos: 88.5,53.5 - parent: 0 - type: Transform -- uid: 16392 - type: WallReinforced - components: - - pos: 88.5,54.5 - parent: 0 - type: Transform -- uid: 16393 - type: WallReinforced - components: - - pos: 87.5,54.5 - parent: 0 - type: Transform -- uid: 16394 - type: WallReinforced - components: - - pos: 86.5,54.5 - parent: 0 - type: Transform -- uid: 16395 - type: WallReinforced - components: - - pos: 85.5,54.5 - parent: 0 - type: Transform -- uid: 16396 - type: WallReinforced - components: - - pos: 84.5,54.5 - parent: 0 - type: Transform -- uid: 16397 - type: WallReinforced - components: - - pos: 84.5,53.5 - parent: 0 - type: Transform -- uid: 16398 - type: WallReinforced - components: - - pos: 84.5,52.5 - parent: 0 - type: Transform -- uid: 16399 - type: WallReinforced - components: - - pos: 84.5,51.5 - parent: 0 - type: Transform -- uid: 16400 - type: WallReinforced - components: - - pos: 84.5,50.5 - parent: 0 - type: Transform -- uid: 16401 - type: WallReinforced - components: - - pos: 84.5,49.5 - parent: 0 - type: Transform -- uid: 16402 - type: WallReinforced - components: - - pos: 84.5,48.5 - parent: 0 - type: Transform -- uid: 16403 - type: WallReinforced - components: - - pos: 84.5,47.5 - parent: 0 - type: Transform -- uid: 16404 - type: WallReinforced - components: - - pos: 84.5,46.5 - parent: 0 - type: Transform -- uid: 16405 - type: WallReinforced - components: - - pos: 84.5,45.5 - parent: 0 - type: Transform -- uid: 16406 - type: WallReinforced - components: - - pos: 84.5,44.5 - parent: 0 - type: Transform -- uid: 16407 - type: WallReinforced - components: - - pos: 94.5,44.5 - parent: 0 - type: Transform -- uid: 16408 - type: WallReinforced - components: - - pos: 94.5,45.5 - parent: 0 - type: Transform -- uid: 16409 - type: WallReinforced - components: - - pos: 94.5,46.5 - parent: 0 - type: Transform -- uid: 16410 - type: WallReinforced - components: - - pos: 94.5,47.5 - parent: 0 - type: Transform -- uid: 16411 - type: WallReinforced - components: - - pos: 94.5,48.5 - parent: 0 - type: Transform -- uid: 16412 - type: WallReinforced - components: - - pos: 94.5,49.5 - parent: 0 - type: Transform -- uid: 16413 - type: WallReinforced - components: - - pos: 94.5,50.5 - parent: 0 - type: Transform -- uid: 16414 - type: WallReinforced - components: - - pos: 94.5,51.5 - parent: 0 - type: Transform -- uid: 16415 - type: WallReinforced - components: - - pos: 94.5,52.5 - parent: 0 - type: Transform -- uid: 16416 - type: WallReinforced - components: - - pos: 94.5,53.5 - parent: 0 - type: Transform -- uid: 16417 - type: WallReinforced - components: - - pos: 94.5,54.5 - parent: 0 - type: Transform -- uid: 16418 - type: WallReinforced - components: - - pos: 93.5,54.5 - parent: 0 - type: Transform -- uid: 16419 - type: WallReinforced - components: - - pos: 92.5,54.5 - parent: 0 - type: Transform -- uid: 16420 - type: WallReinforced - components: - - pos: 91.5,54.5 - parent: 0 - type: Transform -- uid: 16421 - type: WallReinforced - components: - - pos: 83.5,54.5 - parent: 0 - type: Transform -- uid: 16422 - type: WallReinforced - components: - - pos: 82.5,54.5 - parent: 0 - type: Transform -- uid: 16423 - type: WallReinforced - components: - - pos: 81.5,54.5 - parent: 0 - type: Transform -- uid: 16424 - type: WallReinforced - components: - - pos: 80.5,54.5 - parent: 0 - type: Transform -- uid: 16425 - type: WallReinforced - components: - - pos: 79.5,54.5 - parent: 0 - type: Transform -- uid: 16426 - type: WallSolid - components: - - pos: 77.5,52.5 - parent: 0 - type: Transform -- uid: 16427 - type: WallReinforced - components: - - pos: 77.5,54.5 - parent: 0 - type: Transform -- uid: 16428 - type: WallReinforced - components: - - pos: 76.5,54.5 - parent: 0 - type: Transform -- uid: 16429 - type: WallReinforced - components: - - pos: 75.5,54.5 - parent: 0 - type: Transform -- uid: 16430 - type: WallReinforced - components: - - pos: 75.5,49.5 - parent: 0 - type: Transform -- uid: 16431 - type: WallReinforced - components: - - pos: 75.5,50.5 - parent: 0 - type: Transform -- uid: 16432 - type: WallReinforced - components: - - pos: 75.5,51.5 - parent: 0 - type: Transform -- uid: 16433 - type: WallReinforced - components: - - pos: 75.5,52.5 - parent: 0 - type: Transform -- uid: 16434 - type: WallReinforced - components: - - pos: 75.5,53.5 - parent: 0 - type: Transform -- uid: 16435 - type: ReinforcedWindow - components: - - pos: 75.5,56.5 - parent: 0 - type: Transform -- uid: 16436 - type: WallSolid - components: - - pos: 76.5,52.5 - parent: 0 - type: Transform -- uid: 16437 - type: WallSolid - components: - - pos: 87.5,41.5 - parent: 0 - type: Transform -- uid: 16438 - type: WallSolid - components: - - pos: 91.5,41.5 - parent: 0 - type: Transform -- uid: 16439 - type: WallSolid - components: - - pos: 77.5,53.5 - parent: 0 - type: Transform -- uid: 16440 - type: WallSolid - components: - - pos: 78.5,52.5 - parent: 0 - type: Transform -- uid: 16441 - type: WallSolid - components: - - pos: 80.5,53.5 - parent: 0 - type: Transform -- uid: 16442 - type: WallSolid - components: - - pos: 80.5,52.5 - parent: 0 - type: Transform -- uid: 16443 - type: WallSolid - components: - - pos: 81.5,52.5 - parent: 0 - type: Transform -- uid: 16444 - type: WallSolid - components: - - pos: 83.5,52.5 - parent: 0 - type: Transform -- uid: 16445 - type: WallSolid - components: - - pos: 83.5,48.5 - parent: 0 - type: Transform -- uid: 16446 - type: WallSolid - components: - - pos: 82.5,48.5 - parent: 0 - type: Transform -- uid: 16447 - type: WallSolid - components: - - pos: 81.5,48.5 - parent: 0 - type: Transform -- uid: 16448 - type: WallSolid - components: - - pos: 79.5,48.5 - parent: 0 - type: Transform -- uid: 16449 - type: WallSolid - components: - - pos: 78.5,48.5 - parent: 0 - type: Transform -- uid: 16450 - type: WallSolid - components: - - pos: 77.5,48.5 - parent: 0 - type: Transform -- uid: 16451 - type: WallSolid - components: - - pos: 76.5,48.5 - parent: 0 - type: Transform -- uid: 16452 - type: ReinforcedWindow - components: - - pos: 66.5,54.5 - parent: 0 - type: Transform -- uid: 16453 - type: ReinforcedWindow - components: - - pos: 66.5,58.5 - parent: 0 - type: Transform -- uid: 16454 - type: ReinforcedWindow - components: - - pos: 94.5,56.5 - parent: 0 - type: Transform -- uid: 16455 - type: ReinforcedWindow - components: - - pos: 90.5,57.5 - parent: 0 - type: Transform -- uid: 16456 - type: ReinforcedWindow - components: - - pos: 92.5,57.5 - parent: 0 - type: Transform -- uid: 16457 - type: WallReinforced - components: - - pos: 98.5,56.5 - parent: 0 - type: Transform -- uid: 16458 - type: WallReinforced - components: - - pos: 98.5,55.5 - parent: 0 - type: Transform -- uid: 16459 - type: WallReinforced - components: - - pos: 98.5,54.5 - parent: 0 - type: Transform -- uid: 16460 - type: WallReinforced - components: - - pos: 98.5,53.5 - parent: 0 - type: Transform -- uid: 16461 - type: WallReinforced - components: - - pos: 98.5,52.5 - parent: 0 - type: Transform -- uid: 16462 - type: WallReinforced - components: - - pos: 98.5,51.5 - parent: 0 - type: Transform -- uid: 16463 - type: WallReinforced - components: - - pos: 98.5,50.5 - parent: 0 - type: Transform -- uid: 16464 - type: WallReinforced - components: - - pos: 111.5,52.5 - parent: 0 - type: Transform -- uid: 16465 - type: WallReinforced - components: - - pos: 98.5,48.5 - parent: 0 - type: Transform -- uid: 16466 - type: WallReinforced - components: - - pos: 98.5,47.5 - parent: 0 - type: Transform -- uid: 16467 - type: WallReinforced - components: - - pos: 98.5,46.5 - parent: 0 - type: Transform -- uid: 16468 - type: WallReinforced - components: - - pos: 98.5,45.5 - parent: 0 - type: Transform -- uid: 16469 - type: WallReinforced - components: - - pos: 97.5,45.5 - parent: 0 - type: Transform -- uid: 16470 - type: WallReinforced - components: - - pos: 95.5,45.5 - parent: 0 - type: Transform -- uid: 16471 - type: WallReinforced - components: - - pos: 98.5,44.5 - parent: 0 - type: Transform -- uid: 16472 - type: WallReinforced - components: - - pos: 98.5,43.5 - parent: 0 - type: Transform -- uid: 16473 - type: WallReinforced - components: - - pos: 98.5,42.5 - parent: 0 - type: Transform -- uid: 16474 - type: WallReinforced - components: - - pos: 98.5,41.5 - parent: 0 - type: Transform -- uid: 16475 - type: WallReinforced - components: - - pos: 110.5,41.5 - parent: 0 - type: Transform -- uid: 16476 - type: WallReinforced - components: - - pos: 109.5,41.5 - parent: 0 - type: Transform -- uid: 16477 - type: WallReinforced - components: - - pos: 108.5,41.5 - parent: 0 - type: Transform -- uid: 16478 - type: WallReinforced - components: - - pos: 107.5,41.5 - parent: 0 - type: Transform -- uid: 16479 - type: WallReinforced - components: - - pos: 106.5,41.5 - parent: 0 - type: Transform -- uid: 16480 - type: WallReinforced - components: - - pos: 105.5,41.5 - parent: 0 - type: Transform -- uid: 16481 - type: WallReinforced - components: - - pos: 104.5,41.5 - parent: 0 - type: Transform -- uid: 16482 - type: WallReinforced - components: - - pos: 103.5,41.5 - parent: 0 - type: Transform -- uid: 16483 - type: WallReinforced - components: - - pos: 102.5,41.5 - parent: 0 - type: Transform -- uid: 16484 - type: WallReinforced - components: - - pos: 101.5,41.5 - parent: 0 - type: Transform -- uid: 16485 - type: WallReinforced - components: - - pos: 100.5,41.5 - parent: 0 - type: Transform -- uid: 16486 - type: WallReinforced - components: - - pos: 99.5,41.5 - parent: 0 - type: Transform -- uid: 16487 - type: WallReinforced - components: - - pos: 113.5,41.5 - parent: 0 - type: Transform -- uid: 16488 - type: WallReinforced - components: - - pos: 112.5,41.5 - parent: 0 - type: Transform -- uid: 16489 - type: WallReinforced - components: - - pos: 111.5,41.5 - parent: 0 - type: Transform -- uid: 16490 - type: WallReinforced - components: - - pos: 114.5,43.5 - parent: 0 - type: Transform -- uid: 16491 - type: WallReinforced - components: - - pos: 114.5,44.5 - parent: 0 - type: Transform -- uid: 16492 - type: WallReinforced - components: - - pos: 114.5,45.5 - parent: 0 - type: Transform -- uid: 16493 - type: WallReinforced - components: - - pos: 113.5,45.5 - parent: 0 - type: Transform -- uid: 16494 - type: WallReinforced - components: - - pos: 112.5,45.5 - parent: 0 - type: Transform -- uid: 16495 - type: WallReinforced - components: - - pos: 111.5,45.5 - parent: 0 - type: Transform -- uid: 16496 - type: WallReinforced - components: - - pos: 111.5,46.5 - parent: 0 - type: Transform -- uid: 16497 - type: WallReinforced - components: - - pos: 111.5,47.5 - parent: 0 - type: Transform -- uid: 16498 - type: WallReinforced - components: - - pos: 112.5,47.5 - parent: 0 - type: Transform -- uid: 16499 - type: WallReinforced - components: - - pos: 113.5,47.5 - parent: 0 - type: Transform -- uid: 16500 - type: WallReinforced - components: - - pos: 114.5,47.5 - parent: 0 - type: Transform -- uid: 16501 - type: WallReinforced - components: - - pos: 111.5,51.5 - parent: 0 - type: Transform -- uid: 16502 - type: WallReinforced - components: - - pos: 112.5,51.5 - parent: 0 - type: Transform -- uid: 16503 - type: WallReinforced - components: - - pos: 113.5,51.5 - parent: 0 - type: Transform -- uid: 16504 - type: WallReinforced - components: - - pos: 114.5,51.5 - parent: 0 - type: Transform -- uid: 16505 - type: WallReinforced - components: - - pos: 115.5,51.5 - parent: 0 - type: Transform -- uid: 16506 - type: WallReinforced - components: - - pos: 116.5,51.5 - parent: 0 - type: Transform -- uid: 16507 - type: WallReinforced - components: - - pos: 117.5,51.5 - parent: 0 - type: Transform -- uid: 16508 - type: WallReinforced - components: - - pos: 117.5,52.5 - parent: 0 - type: Transform -- uid: 16509 - type: WallReinforced - components: - - pos: 115.5,47.5 - parent: 0 - type: Transform -- uid: 16510 - type: WallReinforced - components: - - pos: 116.5,47.5 - parent: 0 - type: Transform -- uid: 16511 - type: WallReinforced - components: - - pos: 117.5,47.5 - parent: 0 - type: Transform -- uid: 16512 - type: WallReinforced - components: - - pos: 111.5,48.5 - parent: 0 - type: Transform -- uid: 16513 - type: WallReinforced - components: - - pos: 111.5,50.5 - parent: 0 - type: Transform -- uid: 16514 - type: WallReinforced - components: - - pos: 117.5,50.5 - parent: 0 - type: Transform -- uid: 16515 - type: WallReinforced - components: - - pos: 117.5,48.5 - parent: 0 - type: Transform -- uid: 16516 - type: WallReinforced - components: - - pos: 109.5,53.5 - parent: 0 - type: Transform -- uid: 16517 - type: WallReinforced - components: - - pos: 108.5,53.5 - parent: 0 - type: Transform -- uid: 16518 - type: WallReinforced - components: - - pos: 107.5,53.5 - parent: 0 - type: Transform -- uid: 16519 - type: WallReinforced - components: - - pos: 106.5,53.5 - parent: 0 - type: Transform -- uid: 16520 - type: WallReinforced - components: - - pos: 105.5,53.5 - parent: 0 - type: Transform -- uid: 16521 - type: WallReinforced - components: - - pos: 104.5,53.5 - parent: 0 - type: Transform -- uid: 16522 - type: WallReinforced - components: - - pos: 103.5,53.5 - parent: 0 - type: Transform -- uid: 16523 - type: WallReinforced - components: - - pos: 110.5,45.5 - parent: 0 - type: Transform -- uid: 16524 - type: WallReinforced - components: - - pos: 109.5,45.5 - parent: 0 - type: Transform -- uid: 16525 - type: WallReinforced - components: - - pos: 108.5,45.5 - parent: 0 - type: Transform -- uid: 16526 - type: WallReinforced - components: - - pos: 107.5,45.5 - parent: 0 - type: Transform -- uid: 16527 - type: WallReinforced - components: - - pos: 106.5,45.5 - parent: 0 - type: Transform -- uid: 16528 - type: WallReinforced - components: - - pos: 105.5,45.5 - parent: 0 - type: Transform -- uid: 16529 - type: WallReinforced - components: - - pos: 104.5,45.5 - parent: 0 - type: Transform -- uid: 16530 - type: WallReinforced - components: - - pos: 103.5,45.5 - parent: 0 - type: Transform -- uid: 16531 - type: WallReinforced - components: - - pos: 117.5,46.5 - parent: 0 - type: Transform -- uid: 16532 - type: WallReinforced - components: - - pos: 117.5,45.5 - parent: 0 - type: Transform -- uid: 16533 - type: WallReinforced - components: - - pos: 117.5,53.5 - parent: 0 - type: Transform -- uid: 16534 - type: WallReinforced - components: - - pos: 117.5,54.5 - parent: 0 - type: Transform -- uid: 16535 - type: WallReinforced - components: - - pos: 118.5,54.5 - parent: 0 - type: Transform -- uid: 16536 - type: WallReinforced - components: - - pos: 119.5,54.5 - parent: 0 - type: Transform -- uid: 16537 - type: WallReinforced - components: - - pos: 120.5,54.5 - parent: 0 - type: Transform -- uid: 16538 - type: WallReinforced - components: - - pos: 121.5,55.5 - parent: 0 - type: Transform -- uid: 16539 - type: WallReinforced - components: - - pos: 122.5,55.5 - parent: 0 - type: Transform -- uid: 16540 - type: WallReinforced - components: - - pos: 123.5,55.5 - parent: 0 - type: Transform -- uid: 16541 - type: WallReinforced - components: - - pos: 120.5,55.5 - parent: 0 - type: Transform -- uid: 16542 - type: WallReinforced - components: - - pos: 119.5,55.5 - parent: 0 - type: Transform -- uid: 16543 - type: WallReinforced - components: - - pos: 118.5,55.5 - parent: 0 - type: Transform -- uid: 16544 - type: WallReinforced - components: - - pos: 124.5,55.5 - parent: 0 - type: Transform -- uid: 16545 - type: WallReinforced - components: - - pos: 125.5,55.5 - parent: 0 - type: Transform -- uid: 16546 - type: WallReinforced - components: - - pos: 126.5,55.5 - parent: 0 - type: Transform -- uid: 16547 - type: WallReinforced - components: - - pos: 127.5,55.5 - parent: 0 - type: Transform -- uid: 16548 - type: WallReinforced - components: - - pos: 127.5,54.5 - parent: 0 - type: Transform -- uid: 16549 - type: WallReinforced - components: - - pos: 126.5,54.5 - parent: 0 - type: Transform -- uid: 16550 - type: WallReinforced - components: - - pos: 125.5,54.5 - parent: 0 - type: Transform -- uid: 16551 - type: WallReinforced - components: - - pos: 124.5,54.5 - parent: 0 - type: Transform -- uid: 16552 - type: WallReinforced - components: - - pos: 128.5,54.5 - parent: 0 - type: Transform -- uid: 16553 - type: WallReinforced - components: - - pos: 128.5,53.5 - parent: 0 - type: Transform -- uid: 16554 - type: WallReinforced - components: - - pos: 129.5,53.5 - parent: 0 - type: Transform -- uid: 16555 - type: WallReinforced - components: - - pos: 129.5,52.5 - parent: 0 - type: Transform -- uid: 16556 - type: WallReinforced - components: - - pos: 129.5,51.5 - parent: 0 - type: Transform -- uid: 16557 - type: WallReinforced - components: - - pos: 128.5,51.5 - parent: 0 - type: Transform -- uid: 16558 - type: WallReinforced - components: - - pos: 129.5,50.5 - parent: 0 - type: Transform -- uid: 16559 - type: WallReinforced - components: - - pos: 129.5,49.5 - parent: 0 - type: Transform -- uid: 16560 - type: WallReinforced - components: - - pos: 129.5,48.5 - parent: 0 - type: Transform -- uid: 16561 - type: WallReinforced - components: - - pos: 129.5,47.5 - parent: 0 - type: Transform -- uid: 16562 - type: WallReinforced - components: - - pos: 128.5,47.5 - parent: 0 - type: Transform -- uid: 16563 - type: WallReinforced - components: - - pos: 130.5,48.5 - parent: 0 - type: Transform -- uid: 16564 - type: WallReinforced - components: - - pos: 130.5,50.5 - parent: 0 - type: Transform -- uid: 16565 - type: WallReinforced - components: - - pos: 129.5,46.5 - parent: 0 - type: Transform -- uid: 16566 - type: WallReinforced - components: - - pos: 129.5,45.5 - parent: 0 - type: Transform -- uid: 16567 - type: WallReinforced - components: - - pos: 128.5,45.5 - parent: 0 - type: Transform -- uid: 16568 - type: WallReinforced - components: - - pos: 117.5,44.5 - parent: 0 - type: Transform -- uid: 16569 - type: WallReinforced - components: - - pos: 118.5,44.5 - parent: 0 - type: Transform -- uid: 16570 - type: WallReinforced - components: - - pos: 119.5,44.5 - parent: 0 - type: Transform -- uid: 16571 - type: WallReinforced - components: - - pos: 120.5,44.5 - parent: 0 - type: Transform -- uid: 16572 - type: WallReinforced - components: - - pos: 118.5,43.5 - parent: 0 - type: Transform -- uid: 16573 - type: WallReinforced - components: - - pos: 119.5,43.5 - parent: 0 - type: Transform -- uid: 16574 - type: WallReinforced - components: - - pos: 120.5,43.5 - parent: 0 - type: Transform -- uid: 16575 - type: WallReinforced - components: - - pos: 121.5,43.5 - parent: 0 - type: Transform -- uid: 16576 - type: WallReinforced - components: - - pos: 122.5,43.5 - parent: 0 - type: Transform -- uid: 16577 - type: WallReinforced - components: - - pos: 123.5,43.5 - parent: 0 - type: Transform -- uid: 16578 - type: WallReinforced - components: - - pos: 124.5,43.5 - parent: 0 - type: Transform -- uid: 16579 - type: WallReinforced - components: - - pos: 124.5,44.5 - parent: 0 - type: Transform -- uid: 16580 - type: WallReinforced - components: - - pos: 125.5,43.5 - parent: 0 - type: Transform -- uid: 16581 - type: WallReinforced - components: - - pos: 125.5,44.5 - parent: 0 - type: Transform -- uid: 16582 - type: WallReinforced - components: - - pos: 126.5,43.5 - parent: 0 - type: Transform -- uid: 16583 - type: WallReinforced - components: - - pos: 126.5,44.5 - parent: 0 - type: Transform -- uid: 16584 - type: WallReinforced - components: - - pos: 127.5,43.5 - parent: 0 - type: Transform -- uid: 16585 - type: WallReinforced - components: - - pos: 127.5,44.5 - parent: 0 - type: Transform -- uid: 16586 - type: WallReinforced - components: - - pos: 128.5,44.5 - parent: 0 - type: Transform -- uid: 16587 - type: WallReinforced - components: - - pos: 53.5,35.5 - parent: 0 - type: Transform -- uid: 16588 - type: WallReinforced - components: - - pos: 53.5,36.5 - parent: 0 - type: Transform -- uid: 16589 - type: WallReinforced - components: - - pos: 51.5,35.5 - parent: 0 - type: Transform -- uid: 16590 - type: WallReinforced - components: - - pos: 48.5,35.5 - parent: 0 - type: Transform -- uid: 16591 - type: WallReinforced - components: - - pos: 46.5,35.5 - parent: 0 - type: Transform -- uid: 16592 - type: WallReinforced - components: - - pos: 46.5,36.5 - parent: 0 - type: Transform -- uid: 16593 - type: ReinforcedWindow - components: - - pos: 46.5,37.5 - parent: 0 - type: Transform -- uid: 16594 - type: WallReinforced - components: - - pos: 46.5,38.5 - parent: 0 - type: Transform -- uid: 16595 - type: ReinforcedWindow - components: - - pos: 47.5,35.5 - parent: 0 - type: Transform -- uid: 16596 - type: ReinforcedWindow - components: - - pos: 52.5,35.5 - parent: 0 - type: Transform -- uid: 16597 - type: ReinforcedWindow - components: - - pos: 53.5,37.5 - parent: 0 - type: Transform -- uid: 16598 - type: WallReinforced - components: - - pos: 53.5,38.5 - parent: 0 - type: Transform -- uid: 16599 - type: WallReinforced - components: - - pos: 53.5,40.5 - parent: 0 - type: Transform -- uid: 16600 - type: WallReinforced - components: - - pos: 53.5,41.5 - parent: 0 - type: Transform -- uid: 16601 - type: WallReinforced - components: - - pos: 53.5,42.5 - parent: 0 - type: Transform -- uid: 16602 - type: ReinforcedWindow - components: - - pos: 52.5,41.5 - parent: 0 - type: Transform -- uid: 16603 - type: ReinforcedWindow - components: - - pos: 49.5,41.5 - parent: 0 - type: Transform -- uid: 16604 - type: ReinforcedWindow - components: - - pos: 47.5,41.5 - parent: 0 - type: Transform -- uid: 16605 - type: WallReinforced - components: - - pos: 48.5,41.5 - parent: 0 - type: Transform -- uid: 16606 - type: WallReinforced - components: - - pos: 51.5,41.5 - parent: 0 - type: Transform -- uid: 16607 - type: WallReinforced - components: - - pos: 46.5,39.5 - parent: 0 - type: Transform -- uid: 16608 - type: WallReinforced - components: - - pos: 46.5,40.5 - parent: 0 - type: Transform -- uid: 16609 - type: WallReinforced - components: - - pos: 46.5,41.5 - parent: 0 - type: Transform -- uid: 16610 - type: WallReinforced - components: - - pos: 46.5,42.5 - parent: 0 - type: Transform -- uid: 16611 - type: WallReinforced - components: - - pos: 46.5,43.5 - parent: 0 - type: Transform -- uid: 16612 - type: WallReinforced - components: - - pos: 46.5,44.5 - parent: 0 - type: Transform -- uid: 16613 - type: WallReinforced - components: - - pos: 46.5,45.5 - parent: 0 - type: Transform -- uid: 16614 - type: WallReinforced - components: - - pos: 47.5,45.5 - parent: 0 - type: Transform -- uid: 16615 - type: WallReinforced - components: - - pos: 48.5,45.5 - parent: 0 - type: Transform -- uid: 16616 - type: WallReinforced - components: - - pos: 49.5,45.5 - parent: 0 - type: Transform -- uid: 16617 - type: WallReinforced - components: - - pos: 51.5,45.5 - parent: 0 - type: Transform -- uid: 16618 - type: WallReinforced - components: - - pos: 52.5,45.5 - parent: 0 - type: Transform -- uid: 16619 - type: WallReinforced - components: - - pos: 53.5,45.5 - parent: 0 - type: Transform -- uid: 16620 - type: WallReinforced - components: - - pos: 53.5,44.5 - parent: 0 - type: Transform -- uid: 16621 - type: ReinforcedWindow - components: - - pos: 53.5,43.5 - parent: 0 - type: Transform -- uid: 16622 - type: WallSolid - components: - - pos: 54.5,44.5 - parent: 0 - type: Transform -- uid: 16623 - type: ReinforcedWindow - components: - - pos: 50.5,35.5 - parent: 0 - type: Transform -- uid: 16624 - type: ReinforcedWindow - components: - - pos: 49.5,35.5 - parent: 0 - type: Transform -- uid: 16625 - type: Rack - components: - - pos: 49.5,44.5 - parent: 0 - type: Transform -- uid: 16626 - type: Rack - components: - - pos: 48.5,44.5 - parent: 0 - type: Transform -- uid: 16627 - type: Rack - components: - - pos: 47.5,44.5 - parent: 0 - type: Transform -- uid: 16628 - type: Rack - components: - - pos: 47.5,42.5 - parent: 0 - type: Transform -- uid: 16629 - type: Rack - components: - - pos: 48.5,42.5 - parent: 0 - type: Transform -- uid: 16630 - type: Rack - components: - - pos: 49.5,42.5 - parent: 0 - type: Transform -- uid: 16631 - type: Rack - components: - - pos: 51.5,42.5 - parent: 0 - type: Transform -- uid: 16632 - type: Rack - components: - - pos: 52.5,42.5 - parent: 0 - type: Transform -- uid: 16633 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 51.5,42.5 - parent: 0 - type: Transform -- uid: 16634 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 52.5,42.5 - parent: 0 - type: Transform -- uid: 16635 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: 51.5,44.5 - parent: 0 - type: Transform -- uid: 16636 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: 52.5,44.5 - parent: 0 - type: Transform -- uid: 16637 - type: ToolboxElectricalFilled - components: - - pos: 52.64971,44.475925 - parent: 0 - type: Transform -- uid: 16638 - type: ToolboxElectricalFilled - components: - - pos: 52.49346,44.632175 - parent: 0 - type: Transform -- uid: 16639 - type: ToolboxElectricalFilled - components: - - pos: 52.321587,44.788425 - parent: 0 - type: Transform -- uid: 16640 - type: ToolboxMechanicalFilled - components: - - pos: 51.373,44.794865 - parent: 0 - type: Transform -- uid: 16641 - type: ToolboxMechanicalFilled - components: - - pos: 51.52925,44.65424 - parent: 0 - type: Transform -- uid: 16642 - type: ToolboxMechanicalFilled - components: - - pos: 51.65425,44.451115 - parent: 0 - type: Transform -- uid: 16643 - type: ClothingShoesBootsMag - components: - - pos: 51.40521,42.632175 - parent: 0 - type: Transform -- uid: 16644 - type: ClothingShoesBootsMag - components: - - pos: 51.514584,42.475925 - parent: 0 - type: Transform -- uid: 16645 - type: ClothingShoesBootsMag - components: - - pos: 51.639584,42.350925 - parent: 0 - type: Transform -- uid: 16646 - type: JetpackMiniFilled - components: - - pos: 52.43646,42.632175 - parent: 0 - type: Transform -- uid: 16647 - type: JetpackMiniFilled - components: - - pos: 52.53021,42.507175 - parent: 0 - type: Transform -- uid: 16648 - type: JetpackMiniFilled - components: - - pos: 52.65521,42.350925 - parent: 0 - type: Transform -- uid: 16649 - type: ClothingOuterHardsuitEVA - components: - - pos: 47.5,42.5 - parent: 0 - type: Transform -- uid: 16650 - type: ClothingOuterHardsuitEVA - components: - - pos: 48.5,42.5 - parent: 0 - type: Transform -- uid: 16651 - type: ClothingOuterHardsuitEVA - components: - - pos: 49.5,42.5 - parent: 0 - type: Transform -- uid: 16652 - type: ClothingOuterHardsuitEVA - components: - - pos: 49.5,44.5 - parent: 0 - type: Transform -- uid: 16653 - type: ClothingOuterHardsuitEVA - components: - - pos: 48.5,44.5 - parent: 0 - type: Transform -- uid: 16654 - type: ClothingOuterHardsuitEVA - components: - - pos: 47.5,44.5 - parent: 0 - type: Transform -- uid: 16655 - type: ClothingHeadHelmetEVA - components: - - pos: 47.5,44.5 - parent: 0 - type: Transform -- uid: 16656 - type: ClothingHeadHelmetEVA - components: - - pos: 48.5,44.5 - parent: 0 - type: Transform -- uid: 16657 - type: ClothingHeadHelmetEVA - components: - - pos: 49.5,44.5 - parent: 0 - type: Transform -- uid: 16658 - type: ClothingHeadHelmetEVA - components: - - pos: 49.5,42.5 - parent: 0 - type: Transform -- uid: 16659 - type: ClothingHeadHelmetEVA - components: - - pos: 48.5,42.5 - parent: 0 - type: Transform -- uid: 16660 - type: ClothingHeadHelmetEVA - components: - - pos: 47.5,42.5 - parent: 0 - type: Transform -- uid: 16661 - type: AirlockMaintHOPLocked - components: - - pos: 50.5,45.5 - parent: 0 - type: Transform -- uid: 16662 - type: AirlockHeadOfPersonnelGlassLocked - components: - - pos: 50.5,41.5 - parent: 0 - type: Transform -- uid: 16663 - type: AirlockCommandGlassLocked - components: - - pos: 53.5,39.5 - parent: 0 - type: Transform -- uid: 16664 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 54.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16665 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 54.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16666 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 72.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16667 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 73.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16668 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 56.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16669 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 56.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16670 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 50.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16671 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 49.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16672 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 49.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16673 - type: GasVentPump - components: - - pos: 49.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16674 - type: GasVentScrubber - components: - - pos: 50.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16675 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 49.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16676 - type: GasPipeStraight - components: - - pos: 54.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16677 - type: GasPipeStraight - components: - - pos: 54.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16678 - type: GasPipeStraight - components: - - pos: 54.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16679 - type: GasPipeStraight - components: - - pos: 54.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16680 - type: GasPipeStraight - components: - - pos: 54.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16681 - type: GasPipeStraight - components: - - pos: 54.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16682 - type: GasPipeStraight - components: - - pos: 56.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16683 - type: GasPipeStraight - components: - - pos: 56.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16684 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 55.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16685 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16686 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16687 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16688 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16689 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16690 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16691 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16692 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16693 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16694 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 49.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16695 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 49.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16696 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 49.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16697 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16698 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16699 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16700 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16701 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16702 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 56.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16703 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16704 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16705 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16706 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16707 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16708 - type: GasPipeTJunction - components: - - pos: 60.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16709 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 61.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16710 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16711 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16712 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 64.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16713 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16714 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 66.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16715 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16716 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16717 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 69.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16718 - type: GasPipeTJunction - components: - - pos: 70.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16719 - type: GasPipeTJunction - components: - - pos: 71.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16720 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 73.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16721 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 74.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16722 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 75.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16723 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 76.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16724 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 77.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16725 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 78.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16726 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 79.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16727 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 80.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16728 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 72.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16729 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 71.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16730 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 70.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16731 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 69.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16732 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16733 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16734 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 66.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16735 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16736 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 64.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16737 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16738 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16739 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 61.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16740 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16741 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 59.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16742 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 71.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16743 - type: GasPipeStraight - components: - - pos: 73.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16744 - type: GasPipeStraight - components: - - pos: 73.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16745 - type: GasPipeStraight - components: - - pos: 73.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16746 - type: GasPipeStraight - components: - - pos: 72.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16747 - type: GasPipeStraight - components: - - pos: 72.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16748 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 72.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16749 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 73.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16750 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 71.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16751 - type: GasPipeBend - components: - - pos: 74.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16752 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 71.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16753 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 74.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16754 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 72.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16755 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 72.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16756 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 72.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16757 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 73.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16758 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 78.5,53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16759 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 73.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16760 - type: GasPipeTJunction - components: - - pos: 81.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16761 - type: GasPipeTJunction - components: - - pos: 83.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16762 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16763 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16764 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 76.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16765 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 81.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16766 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 78.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16767 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16768 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16769 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 81.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16770 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 82.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16771 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16772 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16773 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16774 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16775 - type: GasPipeTJunction - components: - - pos: 77.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16776 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16777 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 81.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16778 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16779 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16780 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16781 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16782 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16783 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16784 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16785 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16786 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16787 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16788 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16789 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 81.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16790 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16791 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16792 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16793 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16794 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16795 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16796 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16797 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16798 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16799 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16800 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16801 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16802 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16803 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 82.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16804 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16805 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16806 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16807 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16808 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16809 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16810 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16811 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16812 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16813 - type: GasPipeFourway - components: - - pos: 83.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16814 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16815 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16816 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16817 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16818 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16819 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 82.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16820 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 83.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16821 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 84.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16822 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 85.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16823 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 86.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16824 - type: GasPipeTJunction - components: - - pos: 87.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16825 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 88.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16826 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 89.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16827 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 90.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16828 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 91.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16829 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 92.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16830 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 93.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16831 - type: GasPipeTJunction - components: - - pos: 94.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16832 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 95.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16833 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 96.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16834 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 84.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16835 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 85.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16836 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 86.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16837 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 87.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16838 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 88.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16839 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 89.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16840 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 90.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16841 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 91.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16842 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 92.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16843 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 93.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16844 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 94.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16845 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 95.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16846 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 96.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16847 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 81.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16848 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 83.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16849 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 80.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16850 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 79.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16851 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 78.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16852 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 87.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16853 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 76.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16854 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 75.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16855 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 74.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16856 - type: GasPipeStraight - components: - - pos: 73.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16857 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 72.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16858 - type: GasPipeTJunction - components: - - pos: 65.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16859 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 70.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16860 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 69.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16861 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16862 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16863 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 66.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16864 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 65.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16865 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 65.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16866 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 66.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16867 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 66.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16868 - type: GasPipeStraight - components: - - pos: 66.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16869 - type: GasPipeStraight - components: - - pos: 66.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16870 - type: GasPipeStraight - components: - - pos: 65.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16871 - type: GasPipeStraight - components: - - pos: 65.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16872 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 67.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16873 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 68.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16874 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16875 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16876 - type: GasPipeTJunction - components: - - pos: 63.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16877 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16878 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 73.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16879 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16880 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16881 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 76.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16882 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 77.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16883 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 78.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16884 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16885 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16886 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 81.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16887 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 82.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16888 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 82.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16889 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16890 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 71.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16891 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16892 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16893 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16894 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 61.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16895 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16896 - type: GasPipeTJunction - components: - - pos: 55.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16897 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16898 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16899 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16900 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 71.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16901 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16902 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 61.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16903 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16904 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16905 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16906 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16907 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16908 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16909 - type: WallSolid - components: - - pos: 2.5,35.5 - parent: 0 - type: Transform -- uid: 16910 - type: WallReinforced - components: - - pos: 1.5,42.5 - parent: 0 - type: Transform -- uid: 16911 - type: WallSolid - components: - - pos: 1.5,36.5 - parent: 0 - type: Transform -- uid: 16912 - type: WallSolid - components: - - pos: 4.5,35.5 - parent: 0 - type: Transform -- uid: 16913 - type: WallSolid - components: - - pos: 5.5,35.5 - parent: 0 - type: Transform -- uid: 16914 - type: WallSolid - components: - - pos: 6.5,35.5 - parent: 0 - type: Transform -- uid: 16915 - type: WallSolid - components: - - pos: 7.5,35.5 - parent: 0 - type: Transform -- uid: 16916 - type: WallSolid - components: - - pos: 8.5,35.5 - parent: 0 - type: Transform -- uid: 16917 - type: WallReinforced - components: - - pos: 1.5,35.5 - parent: 0 - type: Transform -- uid: 16918 - type: WallSolid - components: - - pos: 9.5,36.5 - parent: 0 - type: Transform -- uid: 16919 - type: WallSolid - components: - - pos: 9.5,37.5 - parent: 0 - type: Transform -- uid: 16920 - type: WallSolid - components: - - pos: 1.5,37.5 - parent: 0 - type: Transform -- uid: 16921 - type: WallSolid - components: - - pos: 1.5,40.5 - parent: 0 - type: Transform -- uid: 16922 - type: WallSolid - components: - - pos: 1.5,41.5 - parent: 0 - type: Transform -- uid: 16923 - type: WallReinforced - components: - - pos: 9.5,42.5 - parent: 0 - type: Transform -- uid: 16924 - type: WallSolid - components: - - pos: 2.5,42.5 - parent: 0 - type: Transform -- uid: 16925 - type: WallSolid - components: - - pos: 1.5,38.5 - parent: 0 - type: Transform -- uid: 16926 - type: WallSolid - components: - - pos: 1.5,39.5 - parent: 0 - type: Transform -- uid: 16927 - type: WallSolid - components: - - pos: 9.5,38.5 - parent: 0 - type: Transform -- uid: 16928 - type: WallSolid - components: - - pos: 9.5,39.5 - parent: 0 - type: Transform -- uid: 16929 - type: WallSolid - components: - - pos: 9.5,40.5 - parent: 0 - type: Transform -- uid: 16930 - type: WallSolid - components: - - pos: 9.5,41.5 - parent: 0 - type: Transform -- uid: 16931 - type: WallReinforced - components: - - pos: 9.5,35.5 - parent: 0 - type: Transform -- uid: 16932 - type: WallSolid - components: - - pos: 8.5,42.5 - parent: 0 - type: Transform -- uid: 16933 - type: WallSolid - components: - - pos: 7.5,42.5 - parent: 0 - type: Transform -- uid: 16934 - type: WallSolid - components: - - pos: 4.5,42.5 - parent: 0 - type: Transform -- uid: 16935 - type: TintedWindow - components: - - pos: 5.5,42.5 - parent: 0 - type: Transform -- uid: 16936 - type: TintedWindow - components: - - pos: 6.5,42.5 - parent: 0 - type: Transform -- uid: 16937 - type: Morgue - components: - - pos: 8.5,41.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16938 - type: Morgue - components: - - pos: 7.5,41.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16939 - type: Morgue - components: - - pos: 6.5,41.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16940 - type: Morgue - components: - - pos: 5.5,41.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16941 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 5.5,36.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16942 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 5.5,37.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16943 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: 5.5,38.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16944 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 2.5,37.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16945 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 2.5,38.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16946 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 2.5,39.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16947 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 6.5,36.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16948 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 6.5,37.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16949 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: 6.5,38.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16950 - type: OperatingTable - components: - - pos: 8.5,37.5 - parent: 0 - type: Transform -- uid: 16951 - type: computerBodyScanner - components: - - rot: -1.5707963267948966 rad - pos: 8.5,36.5 - parent: 0 - type: Transform -- uid: 16952 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: 8.5,39.5 - parent: 0 - type: Transform -- uid: 16953 - type: Table - components: - - pos: 2.5,36.5 - parent: 0 - type: Transform -- uid: 16954 - type: Table - components: - - pos: 8.5,38.5 - parent: 0 - type: Transform -- uid: 16955 - type: TableWood - components: - - pos: 15.5,39.5 - parent: 0 - type: Transform -- uid: 16956 - type: ReinforcedWindow - components: - - pos: 11.5,46.5 - parent: 0 - type: Transform -- uid: 16957 - type: WallReinforced - components: - - pos: 16.5,39.5 - parent: 0 - type: Transform -- uid: 16958 - type: WallReinforced - components: - - pos: 17.5,39.5 - parent: 0 - type: Transform -- uid: 16959 - type: WallReinforced - components: - - pos: 18.5,39.5 - parent: 0 - type: Transform -- uid: 16960 - type: WallReinforced - components: - - pos: 19.5,39.5 - parent: 0 - type: Transform -- uid: 16961 - type: WallReinforced - components: - - pos: 19.5,40.5 - parent: 0 - type: Transform -- uid: 16962 - type: WallReinforced - components: - - pos: 19.5,41.5 - parent: 0 - type: Transform -- uid: 16963 - type: WallReinforced - components: - - pos: 19.5,42.5 - parent: 0 - type: Transform -- uid: 16964 - type: WallReinforced - components: - - pos: 16.5,35.5 - parent: 0 - type: Transform -- uid: 16965 - type: WallReinforced - components: - - pos: 17.5,35.5 - parent: 0 - type: Transform -- uid: 16966 - type: WallReinforced - components: - - pos: 19.5,35.5 - parent: 0 - type: Transform -- uid: 16967 - type: WallReinforced - components: - - pos: 21.5,35.5 - parent: 0 - type: Transform -- uid: 16968 - type: WallReinforced - components: - - pos: 26.5,36.5 - parent: 0 - type: Transform -- uid: 16969 - type: WallReinforced - components: - - pos: 26.5,35.5 - parent: 0 - type: Transform -- uid: 16970 - type: WallReinforced - components: - - pos: 25.5,35.5 - parent: 0 - type: Transform -- uid: 16971 - type: WallReinforced - components: - - pos: 23.5,35.5 - parent: 0 - type: Transform -- uid: 16972 - type: WallReinforced - components: - - pos: 26.5,38.5 - parent: 0 - type: Transform -- uid: 16973 - type: WallReinforced - components: - - pos: 26.5,39.5 - parent: 0 - type: Transform -- uid: 16974 - type: WallReinforced - components: - - pos: 26.5,40.5 - parent: 0 - type: Transform -- uid: 16975 - type: WallReinforced - components: - - pos: 26.5,41.5 - parent: 0 - type: Transform -- uid: 16976 - type: WallReinforced - components: - - pos: 26.5,42.5 - parent: 0 - type: Transform -- uid: 16977 - type: WallReinforced - components: - - pos: 23.5,42.5 - parent: 0 - type: Transform -- uid: 16978 - type: ReinforcedWindow - components: - - pos: 18.5,35.5 - parent: 0 - type: Transform -- uid: 16979 - type: ReinforcedWindow - components: - - pos: 20.5,35.5 - parent: 0 - type: Transform -- uid: 16980 - type: ReinforcedWindow - components: - - pos: 22.5,35.5 - parent: 0 - type: Transform -- uid: 16981 - type: ReinforcedWindow - components: - - pos: 24.5,35.5 - parent: 0 - type: Transform -- uid: 16982 - type: ReinforcedWindow - components: - - pos: 25.5,42.5 - parent: 0 - type: Transform -- uid: 16983 - type: ReinforcedWindow - components: - - pos: 20.5,42.5 - parent: 0 - type: Transform -- uid: 16984 - type: ReinforcedWindow - components: - - pos: 16.5,36.5 - parent: 0 - type: Transform -- uid: 16985 - type: ReinforcedWindow - components: - - pos: 16.5,38.5 - parent: 0 - type: Transform -- uid: 16986 - type: WallReinforced - components: - - pos: 2.5,46.5 - parent: 0 - type: Transform -- uid: 16987 - type: WallReinforced - components: - - pos: 1.5,46.5 - parent: 0 - type: Transform -- uid: 16988 - type: WallReinforced - components: - - pos: 1.5,47.5 - parent: 0 - type: Transform -- uid: 16989 - type: WallReinforced - components: - - pos: 1.5,48.5 - parent: 0 - type: Transform -- uid: 16990 - type: WallReinforced - components: - - pos: 1.5,50.5 - parent: 0 - type: Transform -- uid: 16991 - type: WallReinforced - components: - - pos: 1.5,51.5 - parent: 0 - type: Transform -- uid: 16992 - type: WallReinforced - components: - - pos: 2.5,51.5 - parent: 0 - type: Transform -- uid: 16993 - type: WallReinforced - components: - - pos: 3.5,51.5 - parent: 0 - type: Transform -- uid: 16994 - type: WallReinforced - components: - - pos: 4.5,51.5 - parent: 0 - type: Transform -- uid: 16995 - type: WallReinforced - components: - - pos: 5.5,51.5 - parent: 0 - type: Transform -- uid: 16996 - type: WallReinforced - components: - - pos: 8.5,51.5 - parent: 0 - type: Transform -- uid: 16997 - type: WallReinforced - components: - - pos: 7.5,51.5 - parent: 0 - type: Transform -- uid: 16998 - type: WallReinforced - components: - - pos: 6.5,51.5 - parent: 0 - type: Transform -- uid: 16999 - type: WallReinforced - components: - - pos: 7.5,46.5 - parent: 0 - type: Transform -- uid: 17000 - type: WallReinforced - components: - - pos: 5.5,52.5 - parent: 0 - type: Transform -- uid: 17001 - type: WallReinforced - components: - - pos: 5.5,53.5 - parent: 0 - type: Transform -- uid: 17002 - type: WallReinforced - components: - - pos: 4.5,53.5 - parent: 0 - type: Transform -- uid: 17003 - type: WallReinforced - components: - - pos: 3.5,53.5 - parent: 0 - type: Transform -- uid: 17004 - type: WallReinforced - components: - - pos: 2.5,53.5 - parent: 0 - type: Transform -- uid: 17005 - type: WallReinforced - components: - - pos: 1.5,53.5 - parent: 0 - type: Transform -- uid: 17006 - type: WallReinforced - components: - - pos: 8.5,46.5 - parent: 0 - type: Transform -- uid: 17007 - type: WallReinforced - components: - - pos: 6.5,46.5 - parent: 0 - type: Transform -- uid: 17008 - type: WallReinforced - components: - - pos: 5.5,46.5 - parent: 0 - type: Transform -- uid: 17009 - type: WallReinforced - components: - - pos: 4.5,46.5 - parent: 0 - type: Transform -- uid: 17010 - type: WallSolid - components: - - pos: 8.5,52.5 - parent: 0 - type: Transform -- uid: 17011 - type: WallSolid - components: - - pos: 9.5,52.5 - parent: 0 - type: Transform -- uid: 17012 - type: WallSolid - components: - - pos: 10.5,52.5 - parent: 0 - type: Transform -- uid: 17013 - type: WallSolid - components: - - pos: 11.5,52.5 - parent: 0 - type: Transform -- uid: 17014 - type: WallSolid - components: - - pos: 12.5,52.5 - parent: 0 - type: Transform -- uid: 17015 - type: WallSolid - components: - - pos: 12.5,53.5 - parent: 0 - type: Transform -- uid: 17016 - type: WallSolid - components: - - pos: 12.5,54.5 - parent: 0 - type: Transform -- uid: 17017 - type: WallSolid - components: - - pos: 12.5,55.5 - parent: 0 - type: Transform -- uid: 17018 - type: WallSolid - components: - - pos: 12.5,56.5 - parent: 0 - type: Transform -- uid: 17019 - type: WallSolid - components: - - pos: 12.5,57.5 - parent: 0 - type: Transform -- uid: 17020 - type: WallSolid - components: - - pos: 5.5,56.5 - parent: 0 - type: Transform -- uid: 17021 - type: WallSolid - components: - - pos: 5.5,57.5 - parent: 0 - type: Transform -- uid: 17022 - type: WallSolid - components: - - pos: 6.5,57.5 - parent: 0 - type: Transform -- uid: 17023 - type: WallSolid - components: - - pos: 11.5,57.5 - parent: 0 - type: Transform -- uid: 17024 - type: WallSolid - components: - - pos: 12.5,58.5 - parent: 0 - type: Transform -- uid: 17025 - type: WallSolid - components: - - pos: 12.5,59.5 - parent: 0 - type: Transform -- uid: 17026 - type: WallSolid - components: - - pos: 12.5,60.5 - parent: 0 - type: Transform -- uid: 17027 - type: WallSolid - components: - - pos: 11.5,60.5 - parent: 0 - type: Transform -- uid: 17028 - type: WallSolid - components: - - pos: 7.5,60.5 - parent: 0 - type: Transform -- uid: 17029 - type: WallSolid - components: - - pos: 6.5,60.5 - parent: 0 - type: Transform -- uid: 17030 - type: WallSolid - components: - - pos: 5.5,60.5 - parent: 0 - type: Transform -- uid: 17031 - type: WallSolid - components: - - pos: 5.5,59.5 - parent: 0 - type: Transform -- uid: 17032 - type: WallSolid - components: - - pos: 5.5,58.5 - parent: 0 - type: Transform -- uid: 17033 - type: WallSolid - components: - - pos: 1.5,55.5 - parent: 0 - type: Transform -- uid: 17034 - type: WallSolid - components: - - pos: 1.5,56.5 - parent: 0 - type: Transform -- uid: 17035 - type: WallSolid - components: - - pos: 0.5,51.5 - parent: 0 - type: Transform -- uid: 17036 - type: WallSolid - components: - - pos: 1.5,64.5 - parent: 0 - type: Transform -- uid: 17037 - type: WallSolid - components: - - pos: 1.5,65.5 - parent: 0 - type: Transform -- uid: 17038 - type: WallSolid - components: - - pos: 0.5,65.5 - parent: 0 - type: Transform -- uid: 17039 - type: WallSolid - components: - - pos: -0.5,65.5 - parent: 0 - type: Transform -- uid: 17040 - type: WallSolid - components: - - pos: 1.5,57.5 - parent: 0 - type: Transform -- uid: 17041 - type: WallSolid - components: - - pos: 1.5,58.5 - parent: 0 - type: Transform -- uid: 17042 - type: WallSolid - components: - - pos: 1.5,59.5 - parent: 0 - type: Transform -- uid: 17043 - type: WallSolid - components: - - pos: 1.5,60.5 - parent: 0 - type: Transform -- uid: 17044 - type: WallSolid - components: - - pos: 13.5,56.5 - parent: 0 - type: Transform -- uid: 17045 - type: WallSolid - components: - - pos: 14.5,56.5 - parent: 0 - type: Transform -- uid: 17046 - type: WallSolid - components: - - pos: 15.5,56.5 - parent: 0 - type: Transform -- uid: 17047 - type: WallSolid - components: - - pos: 16.5,56.5 - parent: 0 - type: Transform -- uid: 17048 - type: WallSolid - components: - - pos: 13.5,52.5 - parent: 0 - type: Transform -- uid: 17049 - type: WallSolid - components: - - pos: 14.5,52.5 - parent: 0 - type: Transform -- uid: 17050 - type: WallSolid - components: - - pos: 15.5,52.5 - parent: 0 - type: Transform -- uid: 17051 - type: WallSolid - components: - - pos: 16.5,52.5 - parent: 0 - type: Transform -- uid: 17052 - type: WallSolid - components: - - pos: 13.5,60.5 - parent: 0 - type: Transform -- uid: 17053 - type: WallSolid - components: - - pos: 14.5,60.5 - parent: 0 - type: Transform -- uid: 17054 - type: WallSolid - components: - - pos: 15.5,60.5 - parent: 0 - type: Transform -- uid: 17055 - type: WallSolid - components: - - pos: 16.5,60.5 - parent: 0 - type: Transform -- uid: 17056 - type: ReinforcedWindow - components: - - pos: 25.5,53.5 - parent: 0 - type: Transform -- uid: 17057 - type: WallReinforced - components: - - pos: 25.5,52.5 - parent: 0 - type: Transform -- uid: 17058 - type: WallReinforced - components: - - pos: 26.5,52.5 - parent: 0 - type: Transform -- uid: 17059 - type: WallReinforced - components: - - pos: 27.5,52.5 - parent: 0 - type: Transform -- uid: 17060 - type: WallReinforced - components: - - pos: 28.5,52.5 - parent: 0 - type: Transform -- uid: 17061 - type: WallReinforced - components: - - pos: 28.5,53.5 - parent: 0 - type: Transform -- uid: 17062 - type: WallReinforced - components: - - pos: 28.5,54.5 - parent: 0 - type: Transform -- uid: 17063 - type: WallReinforced - components: - - pos: 28.5,55.5 - parent: 0 - type: Transform -- uid: 17064 - type: WallReinforced - components: - - pos: 28.5,56.5 - parent: 0 - type: Transform -- uid: 17065 - type: WallReinforced - components: - - pos: 27.5,56.5 - parent: 0 - type: Transform -- uid: 17066 - type: WallReinforced - components: - - pos: 26.5,56.5 - parent: 0 - type: Transform -- uid: 17067 - type: WallReinforced - components: - - pos: 25.5,56.5 - parent: 0 - type: Transform -- uid: 17068 - type: WallReinforced - components: - - pos: 25.5,55.5 - parent: 0 - type: Transform -- uid: 17069 - type: WallReinforced - components: - - pos: 29.5,52.5 - parent: 0 - type: Transform -- uid: 17070 - type: WallReinforced - components: - - pos: 30.5,52.5 - parent: 0 - type: Transform -- uid: 17071 - type: WallReinforced - components: - - pos: 31.5,52.5 - parent: 0 - type: Transform -- uid: 17072 - type: WallReinforced - components: - - pos: 31.5,53.5 - parent: 0 - type: Transform -- uid: 17073 - type: WallReinforced - components: - - pos: 29.5,56.5 - parent: 0 - type: Transform -- uid: 17074 - type: WallReinforced - components: - - pos: 30.5,56.5 - parent: 0 - type: Transform -- uid: 17075 - type: WallReinforced - components: - - pos: 31.5,56.5 - parent: 0 - type: Transform -- uid: 17076 - type: WallReinforced - components: - - pos: 31.5,55.5 - parent: 0 - type: Transform -- uid: 17077 - type: ReinforcedWindow - components: - - pos: 36.5,47.5 - parent: 0 - type: Transform -- uid: 17078 - type: ReinforcedWindow - components: - - pos: 32.5,47.5 - parent: 0 - type: Transform -- uid: 17079 - type: WallReinforced - components: - - pos: 34.5,47.5 - parent: 0 - type: Transform -- uid: 17080 - type: ReinforcedWindow - components: - - pos: 34.5,50.5 - parent: 0 - type: Transform -- uid: 17081 - type: ReinforcedWindow - components: - - pos: 34.5,49.5 - parent: 0 - type: Transform -- uid: 17082 - type: ReinforcedWindow - components: - - pos: 34.5,48.5 - parent: 0 - type: Transform -- uid: 17083 - type: WallReinforced - components: - - pos: 34.5,51.5 - parent: 0 - type: Transform -- uid: 17084 - type: WallReinforced - components: - - pos: 34.5,53.5 - parent: 0 - type: Transform -- uid: 17085 - type: ReinforcedWindow - components: - - pos: 33.5,51.5 - parent: 0 - type: Transform -- uid: 17086 - type: WallReinforced - components: - - pos: 31.5,51.5 - parent: 0 - type: Transform -- uid: 17087 - type: ReinforcedWindow - components: - - pos: 32.5,51.5 - parent: 0 - type: Transform -- uid: 17088 - type: WallReinforced - components: - - pos: 37.5,53.5 - parent: 0 - type: Transform -- uid: 17089 - type: WallReinforced - components: - - pos: 37.5,51.5 - parent: 0 - type: Transform -- uid: 17090 - type: WallReinforced - components: - - pos: 37.5,50.5 - parent: 0 - type: Transform -- uid: 17091 - type: WallReinforced - components: - - pos: 37.5,49.5 - parent: 0 - type: Transform -- uid: 17092 - type: WallReinforced - components: - - pos: 37.5,48.5 - parent: 0 - type: Transform -- uid: 17093 - type: WallReinforced - components: - - pos: 37.5,47.5 - parent: 0 - type: Transform -- uid: 17094 - type: WallReinforced - components: - - pos: 37.5,46.5 - parent: 0 - type: Transform -- uid: 17095 - type: WallReinforced - components: - - pos: 37.5,45.5 - parent: 0 - type: Transform -- uid: 17096 - type: WallReinforced - components: - - pos: 37.5,44.5 - parent: 0 - type: Transform -- uid: 17097 - type: WallReinforced - components: - - pos: 37.5,43.5 - parent: 0 - type: Transform -- uid: 17098 - type: WallReinforced - components: - - pos: 37.5,42.5 - parent: 0 - type: Transform -- uid: 17099 - type: WallReinforced - components: - - pos: 37.5,41.5 - parent: 0 - type: Transform -- uid: 17100 - type: WallReinforced - components: - - pos: 36.5,41.5 - parent: 0 - type: Transform -- uid: 17101 - type: WallReinforced - components: - - pos: 35.5,41.5 - parent: 0 - type: Transform -- uid: 17102 - type: WallReinforced - components: - - pos: 34.5,41.5 - parent: 0 - type: Transform -- uid: 17103 - type: WallReinforced - components: - - pos: 33.5,41.5 - parent: 0 - type: Transform -- uid: 17104 - type: WallReinforced - components: - - pos: 32.5,41.5 - parent: 0 - type: Transform -- uid: 17105 - type: WallReinforced - components: - - pos: 31.5,41.5 - parent: 0 - type: Transform -- uid: 17106 - type: WallReinforced - components: - - pos: 31.5,42.5 - parent: 0 - type: Transform -- uid: 17107 - type: WallReinforced - components: - - pos: 27.5,38.5 - parent: 0 - type: Transform -- uid: 17108 - type: WallReinforced - components: - - pos: 28.5,38.5 - parent: 0 - type: Transform -- uid: 17109 - type: WallReinforced - components: - - pos: 29.5,38.5 - parent: 0 - type: Transform -- uid: 17110 - type: WallReinforced - components: - - pos: 30.5,38.5 - parent: 0 - type: Transform -- uid: 17111 - type: WallReinforced - components: - - pos: 31.5,38.5 - parent: 0 - type: Transform -- uid: 17112 - type: WallReinforced - components: - - pos: 31.5,39.5 - parent: 0 - type: Transform -- uid: 17113 - type: WallReinforced - components: - - pos: 31.5,40.5 - parent: 0 - type: Transform -- uid: 17114 - type: WallReinforced - components: - - pos: 26.5,44.5 - parent: 0 - type: Transform -- uid: 17115 - type: WallReinforced - components: - - pos: 31.5,44.5 - parent: 0 - type: Transform -- uid: 17116 - type: WallReinforced - components: - - pos: 31.5,46.5 - parent: 0 - type: Transform -- uid: 17117 - type: WallReinforced - components: - - pos: 31.5,47.5 - parent: 0 - type: Transform -- uid: 17118 - type: WallReinforced - components: - - pos: 31.5,48.5 - parent: 0 - type: Transform -- uid: 17119 - type: WallReinforced - components: - - pos: 31.5,49.5 - parent: 0 - type: Transform -- uid: 17120 - type: WallReinforced - components: - - pos: 31.5,50.5 - parent: 0 - type: Transform -- uid: 17121 - type: WallReinforced - components: - - pos: 26.5,46.5 - parent: 0 - type: Transform -- uid: 17122 - type: WallReinforced - components: - - pos: 26.5,47.5 - parent: 0 - type: Transform -- uid: 17123 - type: WallReinforced - components: - - pos: 27.5,47.5 - parent: 0 - type: Transform -- uid: 17124 - type: WallReinforced - components: - - pos: 28.5,47.5 - parent: 0 - type: Transform -- uid: 17125 - type: WallReinforced - components: - - pos: 29.5,47.5 - parent: 0 - type: Transform -- uid: 17126 - type: WallReinforced - components: - - pos: 30.5,47.5 - parent: 0 - type: Transform -- uid: 17127 - type: ReinforcedWindow - components: - - pos: 12.5,46.5 - parent: 0 - type: Transform -- uid: 17128 - type: TableWood - components: - - pos: 14.5,39.5 - parent: 0 - type: Transform -- uid: 17129 - type: TableWood - components: - - pos: 13.5,39.5 - parent: 0 - type: Transform -- uid: 17130 - type: TableWood - components: - - pos: 13.5,40.5 - parent: 0 - type: Transform -- uid: 17131 - type: TableWood - components: - - pos: 13.5,41.5 - parent: 0 - type: Transform -- uid: 17132 - type: ReinforcedWindow - components: - - pos: 13.5,46.5 - parent: 0 - type: Transform -- uid: 17133 - type: ReinforcedWindow - components: - - pos: 20.5,48.5 - parent: 0 - type: Transform -- uid: 17134 - type: ReinforcedWindow - components: - - pos: 20.5,49.5 - parent: 0 - type: Transform -- uid: 17135 - type: ReinforcedWindow - components: - - pos: 20.5,50.5 - parent: 0 - type: Transform -- uid: 17136 - type: ReinforcedWindow - components: - - pos: 26.5,48.5 - parent: 0 - type: Transform -- uid: 17137 - type: ReinforcedWindow - components: - - pos: 26.5,51.5 - parent: 0 - type: Transform -- uid: 17138 - type: WallSolid - components: - - pos: 13.5,42.5 - parent: 0 - type: Transform -- uid: 17139 - type: GasPipeStraight - components: - - pos: 11.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17140 - type: GasPipeStraight - components: - - pos: 11.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17141 - type: GasPipeStraight - components: - - pos: 11.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17142 - type: GasPipeStraight - components: - - pos: 11.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17143 - type: GasPipeStraight - components: - - pos: 11.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17144 - type: GasPipeStraight - components: - - pos: 12.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17145 - type: GasPipeStraight - components: - - pos: 12.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17146 - type: GasPipeStraight - components: - - pos: 12.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17147 - type: GasPipeStraight - components: - - pos: 12.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17148 - type: GasPipeStraight - components: - - pos: 11.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17149 - type: GasPipeStraight - components: - - pos: 11.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17150 - type: GasPipeStraight - components: - - pos: 11.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17151 - type: GasPipeTJunction - components: - - pos: 13.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17152 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17153 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17154 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 12.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17155 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17156 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17157 - type: GasPipeTJunction - components: - - pos: 15.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17158 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17159 - type: GasPipeBend - components: - - pos: 14.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17160 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 12.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17161 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 11.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17162 - type: SubstationBasic - components: - - name: West Med Sub - type: MetaData - - pos: 4.5,52.5 - parent: 0 - type: Transform -- uid: 17163 - type: SubstationBasic - components: - - name: East Med Sub - type: MetaData - - pos: 29.5,54.5 - parent: 0 - type: Transform -- uid: 17164 - type: CableHV - components: - - pos: -3.5,55.5 - parent: 0 - type: Transform -- uid: 17165 - type: CableHV - components: - - pos: -2.5,55.5 - parent: 0 - type: Transform -- uid: 17166 - type: CableHV - components: - - pos: -1.5,55.5 - parent: 0 - type: Transform -- uid: 17167 - type: CableHV - components: - - pos: -0.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17168 - type: BoozeDispenser - components: - - pos: -18.5,26.5 - parent: 0 - type: Transform -- uid: 17169 - type: WallReinforced - components: - - pos: 27.5,57.5 - parent: 0 - type: Transform -- uid: 17170 - type: WallReinforced - components: - - pos: 27.5,58.5 - parent: 0 - type: Transform -- uid: 17171 - type: CableHV - components: - - pos: 0.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17172 - type: CableHV - components: - - pos: 1.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17173 - type: CableHV - components: - - pos: 2.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17174 - type: CableHV - components: - - pos: 3.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17175 - type: CableHV - components: - - pos: 4.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17176 - type: GasPipeTJunction - components: - - pos: 11.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17177 - type: GasPipeTJunction - components: - - pos: 12.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17178 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 17.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17179 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 19.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17180 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17181 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17182 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17183 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17184 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17185 - type: GasPipeTJunction - components: - - pos: 18.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17186 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 19.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17187 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17188 - type: GasPipeTJunction - components: - - pos: 14.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17189 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17190 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17191 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17192 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17193 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17194 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17195 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17196 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17197 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17198 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17199 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17200 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17201 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17202 - type: GasPipeStraight - components: - - pos: 17.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17203 - type: GasPipeStraight - components: - - pos: 17.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17204 - type: GasPipeStraight - components: - - pos: 17.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17205 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 17.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17206 - type: GasPipeStraight - components: - - pos: 17.5,50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17207 - type: GasPipeStraight - components: - - pos: 17.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17208 - type: GasPipeStraight - components: - - pos: 17.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17209 - type: GasPipeStraight - components: - - pos: 17.5,53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17210 - type: GasPipeStraight - components: - - pos: 17.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17211 - type: GasPipeFourway - components: - - pos: 19.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17212 - type: GasPipeStraight - components: - - pos: 17.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17213 - type: GasPipeStraight - components: - - pos: 17.5,57.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17214 - type: GasPipeStraight - components: - - pos: 17.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17215 - type: GasPipeFourway - components: - - pos: 17.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17216 - type: GasPipeStraight - components: - - pos: 17.5,60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17217 - type: GasPipeStraight - components: - - pos: 17.5,61.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17218 - type: GasPipeTJunction - components: - - pos: 18.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17219 - type: GasPipeTJunction - components: - - pos: 16.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17220 - type: GasPipeStraight - components: - - pos: 19.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17221 - type: GasPipeStraight - components: - - pos: 19.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17222 - type: GasPipeStraight - components: - - pos: 19.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17223 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 19.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17224 - type: GasPipeStraight - components: - - pos: 19.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17225 - type: GasPipeStraight - components: - - pos: 19.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17226 - type: GasPipeStraight - components: - - pos: 19.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17227 - type: GasPipeStraight - components: - - pos: 19.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17228 - type: GasPipeFourway - components: - - pos: 17.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17229 - type: GasPipeStraight - components: - - pos: 19.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17230 - type: GasPipeStraight - components: - - pos: 19.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17231 - type: GasPipeStraight - components: - - pos: 19.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17232 - type: GasPipeFourway - components: - - pos: 19.5,57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17233 - type: GasPipeStraight - components: - - pos: 19.5,58.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17234 - type: GasPipeStraight - components: - - pos: 19.5,59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17235 - type: GasPipeStraight - components: - - pos: 19.5,60.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17236 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 19.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17237 - type: GasPipeBend - components: - - pos: 17.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17238 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17239 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 15.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17240 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17241 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17242 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17243 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17244 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17245 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17246 - type: GasPipeTJunction - components: - - pos: 10.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17247 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17248 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17249 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17250 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17251 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17252 - type: GasPipeTJunction - components: - - pos: 2.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17253 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17254 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17255 - type: GasPipeTJunction - components: - - pos: -0.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17256 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17257 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17258 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17259 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17260 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17261 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17262 - type: GasPipeTJunction - components: - - pos: -0.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17263 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17264 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17265 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17266 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17267 - type: GasPipeTJunction - components: - - pos: 4.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17268 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17269 - type: GasPipeFourway - components: - - pos: 8.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17270 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17271 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17272 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17273 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 6.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17274 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 11.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17275 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 8.5,62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17276 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 13.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17277 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17278 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17279 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17280 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17281 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 17.5,62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17282 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -5.5,63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17283 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17284 - type: GasPipeStraight - components: - - pos: -5.5,61.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17285 - type: GasPipeStraight - components: - - pos: -5.5,62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17286 - type: GasPipeStraight - components: - - pos: -3.5,62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17287 - type: GasPipeStraight - components: - - pos: -3.5,63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17288 - type: GasPipeStraight - components: - - pos: -5.5,64.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17289 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -5.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17290 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -4.5,64.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17291 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -4.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17292 - type: GasPipeBend - components: - - pos: -3.5,64.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17293 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17294 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17295 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17296 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17297 - type: GasVentPump - components: - - pos: 10.5,50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17298 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17299 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17300 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17301 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17302 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17303 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 10.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17304 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17305 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17306 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17307 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17308 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17309 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17310 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17311 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17312 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17313 - type: GasPipeTJunction - components: - - pos: 14.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17314 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17315 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17316 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17317 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17318 - type: GasPipeTJunction - components: - - pos: 5.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17319 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17320 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17321 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -0.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17322 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17323 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17324 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17325 - type: GasPipeTJunction - components: - - pos: 3.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17326 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17327 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17328 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17329 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17330 - type: BiomassReclaimer - components: - - pos: 5.5,39.5 - parent: 0 - type: Transform -- uid: 17331 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 3.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17332 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17333 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17334 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17335 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17336 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17337 - type: GasPipeTJunction - components: - - pos: 5.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17338 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17339 - type: GasPipeStraight - components: - - pos: 3.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17340 - type: GasPipeStraight - components: - - pos: 3.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17341 - type: GasPipeStraight - components: - - pos: 3.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17342 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17343 - type: GasPipeFourway - components: - - pos: 24.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17344 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17345 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17346 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17347 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17348 - type: GasPipeTJunction - components: - - pos: 21.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17349 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 22.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17350 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17351 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17352 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17353 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17354 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17355 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17356 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17357 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 22.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17358 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 24.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17359 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 24.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17360 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 27.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17361 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 28.5,48.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 17362 - type: GasPipeFourway - components: - - pos: 29.5,50.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 17363 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 30.5,48.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 17364 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 30.5,50.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 17365 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17366 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17367 - type: GasPipeTJunction - components: - - pos: 18.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17368 - type: GasPipeTJunction - components: - - pos: 18.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17369 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17370 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17371 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17372 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17373 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17374 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17375 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17376 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17377 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17378 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17379 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17380 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17381 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17382 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17383 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17384 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17385 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17386 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17387 - type: GasVentPump - components: - - pos: 12.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17388 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 3.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17389 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 13.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17390 - type: GasVentScrubber - components: - - pos: 3.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17391 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 5.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17392 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 5.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17393 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 18.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17394 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 18.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17395 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 14.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17396 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 23.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17397 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 14.5,57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17398 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 23.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17399 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 14.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17400 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17401 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 23.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17402 - type: BedsheetMedical - components: - - rot: 1.5707963267948966 rad - pos: 15.5,57.5 - parent: 0 - type: Transform -- uid: 17403 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 14.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17404 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 23.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17405 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 4.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17406 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 5.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17407 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17408 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17409 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17410 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17411 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17412 - type: GasPipeFourway - components: - - pos: 29.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17413 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17414 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17415 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17416 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17417 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17418 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17419 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17420 - type: GasPipeFourway - components: - - pos: 28.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17421 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17422 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17423 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17424 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 32.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17425 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 33.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17426 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 35.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17427 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 36.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17428 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 33.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17429 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17430 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17431 - type: GasPipeStraight - components: - - pos: 36.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17432 - type: GasPipeStraight - components: - - pos: 36.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17433 - type: GasPipeStraight - components: - - pos: 36.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17434 - type: GasPipeStraight - components: - - pos: 36.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17435 - type: GasPipeStraight - components: - - pos: 36.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17436 - type: GasPipeStraight - components: - - pos: 35.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17437 - type: GasPipeStraight - components: - - pos: 35.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17438 - type: GasPipeStraight - components: - - pos: 35.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17439 - type: GasPipeStraight - components: - - pos: 33.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17440 - type: GasPipeStraight - components: - - pos: 33.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17441 - type: GasPipeStraight - components: - - pos: 33.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17442 - type: GasPipeStraight - components: - - pos: 33.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17443 - type: GasPipeStraight - components: - - pos: 32.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17444 - type: GasPipeStraight - components: - - pos: 32.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17445 - type: GasPipeStraight - components: - - pos: 32.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17446 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17447 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17448 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 34.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17449 - type: GasVentScrubber - components: - - pos: 33.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17450 - type: GasVentScrubber - components: - - pos: 36.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17451 - type: GasVentPump - components: - - pos: 32.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17452 - type: GasVentPump - components: - - pos: 35.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17453 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 36.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17454 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17455 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17456 - type: GasVentPump - components: - - pos: 28.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17457 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 28.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17458 - type: GasVentScrubber - components: - - pos: 29.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17459 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 29.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17460 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 16.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17461 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 20.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17462 - type: GasPipeStraight - components: - - pos: 14.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17463 - type: GasPipeStraight - components: - - pos: 14.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17464 - type: GasPipeStraight - components: - - pos: 14.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17465 - type: GasPipeStraight - components: - - pos: 18.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17466 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 14.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17467 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 18.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17468 - type: GasPipeStraight - components: - - pos: 10.5,60.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17469 - type: GasPipeStraight - components: - - pos: 10.5,59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17470 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17471 - type: GasPipeStraight - components: - - pos: 8.5,61.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17472 - type: GasPipeStraight - components: - - pos: 8.5,60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17473 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 8.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17474 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 10.5,58.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17475 - type: GasPipeStraight - components: - - pos: 4.5,60.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17476 - type: GasPipeStraight - components: - - pos: 4.5,59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17477 - type: GasPipeStraight - components: - - pos: 4.5,58.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17478 - type: GasPipeStraight - components: - - pos: 2.5,62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17479 - type: GasPipeStraight - components: - - pos: 2.5,61.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17480 - type: GasPipeStraight - components: - - pos: 2.5,60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17481 - type: GasPipeStraight - components: - - pos: 2.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17482 - type: GasPipeStraight - components: - - pos: 2.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17483 - type: GasPipeStraight - components: - - pos: 2.5,57.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17484 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 4.5,57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17485 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 2.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17486 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 4.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17487 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 2.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17488 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17489 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17490 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17491 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17492 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17493 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17494 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17495 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17496 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17497 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17498 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17499 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 3.5,57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17500 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 9.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17501 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 3.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17502 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 8.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17503 - type: ReinforcedWindow - components: - - pos: 20.5,53.5 - parent: 0 - type: Transform -- uid: 17504 - type: ReinforcedWindow - components: - - pos: 20.5,55.5 - parent: 0 - type: Transform -- uid: 17505 - type: WallReinforced - components: - - pos: 24.5,56.5 - parent: 0 - type: Transform -- uid: 17506 - type: WallReinforced - components: - - pos: 23.5,56.5 - parent: 0 - type: Transform -- uid: 17507 - type: WallReinforced - components: - - pos: 22.5,56.5 - parent: 0 - type: Transform -- uid: 17508 - type: WallReinforced - components: - - pos: 21.5,56.5 - parent: 0 - type: Transform -- uid: 17509 - type: WallReinforced - components: - - pos: 20.5,56.5 - parent: 0 - type: Transform -- uid: 17510 - type: CableMV - components: - - pos: 21.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17511 - type: CableMV - components: - - pos: 22.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17512 - type: APCBasic - components: - - pos: 21.5,52.5 - parent: 0 - type: Transform -- uid: 17513 - type: WallReinforced - components: - - pos: 21.5,52.5 - parent: 0 - type: Transform -- uid: 17514 - type: WallReinforced - components: - - pos: 20.5,52.5 - parent: 0 - type: Transform -- uid: 17515 - type: WallReinforced - components: - - pos: 20.5,51.5 - parent: 0 - type: Transform -- uid: 17516 - type: WallSolid - components: - - pos: 25.5,46.5 - parent: 0 - type: Transform -- uid: 17517 - type: WallSolid - components: - - pos: 21.5,46.5 - parent: 0 - type: Transform -- uid: 17518 - type: WallSolid - components: - - pos: 20.5,46.5 - parent: 0 - type: Transform -- uid: 17519 - type: WallSolid - components: - - pos: 20.5,47.5 - parent: 0 - type: Transform -- uid: 17520 - type: WallSolid - components: - - pos: 14.5,46.5 - parent: 0 - type: Transform -- uid: 17521 - type: WallSolid - components: - - pos: 15.5,46.5 - parent: 0 - type: Transform -- uid: 17522 - type: WallSolid - components: - - pos: 16.5,46.5 - parent: 0 - type: Transform -- uid: 17523 - type: WallSolid - components: - - pos: 16.5,47.5 - parent: 0 - type: Transform -- uid: 17524 - type: WallSolid - components: - - pos: 10.5,46.5 - parent: 0 - type: Transform -- uid: 17525 - type: WallSolid - components: - - pos: 9.5,46.5 - parent: 0 - type: Transform -- uid: 17526 - type: ReinforcedWindow - components: - - pos: 16.5,50.5 - parent: 0 - type: Transform -- uid: 17527 - type: WallSolid - components: - - pos: 16.5,51.5 - parent: 0 - type: Transform -- uid: 17528 - type: WallSolid - components: - - pos: 1.5,43.5 - parent: 0 - type: Transform -- uid: 17529 - type: WallSolid - components: - - pos: 1.5,44.5 - parent: 0 - type: Transform -- uid: 17530 - type: WallSolid - components: - - pos: 1.5,45.5 - parent: 0 - type: Transform -- uid: 17531 - type: ReinforcedWindow - components: - - pos: 30.5,44.5 - parent: 0 - type: Transform -- uid: 17532 - type: ReinforcedWindow - components: - - pos: 29.5,44.5 - parent: 0 - type: Transform -- uid: 17533 - type: ReinforcedWindow - components: - - pos: 28.5,44.5 - parent: 0 - type: Transform -- uid: 17534 - type: ReinforcedWindow - components: - - pos: 27.5,44.5 - parent: 0 - type: Transform -- uid: 17535 - type: ReinforcedWindow - components: - - pos: 8.5,43.5 - parent: 0 - type: Transform -- uid: 17536 - type: ReinforcedWindow - components: - - pos: 8.5,45.5 - parent: 0 - type: Transform -- uid: 17537 - type: ReinforcedWindow - components: - - pos: 0.5,47.5 - parent: 0 - type: Transform -- uid: 17538 - type: ReinforcedWindow - components: - - pos: -1.5,47.5 - parent: 0 - type: Transform -- uid: 17539 - type: ReinforcedWindow - components: - - pos: -2.5,48.5 - parent: 0 - type: Transform -- uid: 17540 - type: ReinforcedWindow - components: - - pos: -2.5,50.5 - parent: 0 - type: Transform -- uid: 17541 - type: CloningPod - components: - - pos: 10.5,50.5 - parent: 0 - type: Transform - - inputs: - CloningPodReceiver: - - port: CloningPodSender - uid: 18610 - type: SignalReceiver -- uid: 17542 - type: ReinforcedWindow - components: - - pos: 8.5,50.5 - parent: 0 - type: Transform -- uid: 17543 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 7.5,62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17544 - type: GasVentScrubber - components: - - pos: 11.5,62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17545 - type: TintedWindow - components: - - pos: 8.5,60.5 - parent: 0 - type: Transform -- uid: 17546 - type: TintedWindow - components: - - pos: 10.5,60.5 - parent: 0 - type: Transform -- uid: 17547 - type: TintedWindow - components: - - pos: 16.5,53.5 - parent: 0 - type: Transform -- uid: 17548 - type: TintedWindow - components: - - pos: 16.5,55.5 - parent: 0 - type: Transform -- uid: 17549 - type: TintedWindow - components: - - pos: 16.5,57.5 - parent: 0 - type: Transform -- uid: 17550 - type: TintedWindow - components: - - pos: 16.5,59.5 - parent: 0 - type: Transform -- uid: 17551 - type: ReinforcedWindow - components: - - pos: 7.5,57.5 - parent: 0 - type: Transform -- uid: 17552 - type: ReinforcedWindow - components: - - pos: 8.5,57.5 - parent: 0 - type: Transform -- uid: 17553 - type: ReinforcedWindow - components: - - pos: 9.5,57.5 - parent: 0 - type: Transform -- uid: 17554 - type: ReinforcedWindow - components: - - pos: 10.5,57.5 - parent: 0 - type: Transform -- uid: 17555 - type: Window - components: - - pos: 2.5,60.5 - parent: 0 - type: Transform -- uid: 17556 - type: Window - components: - - pos: 4.5,60.5 - parent: 0 - type: Transform -- uid: 17557 - type: ReinforcedWindow - components: - - pos: -2.5,57.5 - parent: 0 - type: Transform -- uid: 17558 - type: ReinforcedWindow - components: - - pos: -2.5,58.5 - parent: 0 - type: Transform -- uid: 17559 - type: ReinforcedWindow - components: - - pos: 1.5,62.5 - parent: 0 - type: Transform -- uid: 17560 - type: FirelockGlass - components: - - pos: 1.5,61.5 - parent: 0 - type: Transform -- uid: 17561 - type: FirelockGlass - components: - - pos: 1.5,63.5 - parent: 0 - type: Transform -- uid: 17562 - type: FirelockGlass - components: - - pos: 12.5,61.5 - parent: 0 - type: Transform -- uid: 17563 - type: FirelockGlass - components: - - pos: 12.5,62.5 - parent: 0 - type: Transform -- uid: 17564 - type: FirelockGlass - components: - - pos: 12.5,63.5 - parent: 0 - type: Transform -- uid: 17565 - type: FirelockGlass - components: - - pos: 17.5,56.5 - parent: 0 - type: Transform -- uid: 17566 - type: FirelockGlass - components: - - pos: 18.5,56.5 - parent: 0 - type: Transform -- uid: 17567 - type: FirelockGlass - components: - - pos: 19.5,56.5 - parent: 0 - type: Transform -- uid: 17568 - type: FirelockGlass - components: - - pos: 19.5,46.5 - parent: 0 - type: Transform -- uid: 17569 - type: FirelockGlass - components: - - pos: 18.5,46.5 - parent: 0 - type: Transform -- uid: 17570 - type: FirelockGlass - components: - - pos: 17.5,46.5 - parent: 0 - type: Transform -- uid: 17571 - type: FirelockGlass - components: - - pos: 16.5,48.5 - parent: 0 - type: Transform -- uid: 17572 - type: FirelockGlass - components: - - pos: 16.5,49.5 - parent: 0 - type: Transform -- uid: 17573 - type: FirelockGlass - components: - - pos: 8.5,48.5 - parent: 0 - type: Transform -- uid: 17574 - type: FirelockGlass - components: - - pos: 8.5,49.5 - parent: 0 - type: Transform -- uid: 17575 - type: FirelockGlass - components: - - pos: 11.5,42.5 - parent: 0 - type: Transform -- uid: 17576 - type: FirelockGlass - components: - - pos: 12.5,42.5 - parent: 0 - type: Transform -- uid: 17577 - type: FirelockGlass - components: - - pos: 14.5,42.5 - parent: 0 - type: Transform -- uid: 17578 - type: WallReinforced - components: - - pos: 18.5,42.5 - parent: 0 - type: Transform -- uid: 17579 - type: FirelockGlass - components: - - pos: 24.5,42.5 - parent: 0 - type: Transform -- uid: 17580 - type: FirelockGlass - components: - - pos: 8.5,44.5 - parent: 0 - type: Transform -- uid: 17581 - type: FirelockGlass - components: - - pos: 24.5,46.5 - parent: 0 - type: Transform -- uid: 17582 - type: FirelockGlass - components: - - pos: 23.5,46.5 - parent: 0 - type: Transform -- uid: 17583 - type: FirelockGlass - components: - - pos: 22.5,46.5 - parent: 0 - type: Transform -- uid: 17584 - type: FirelockGlass - components: - - pos: 26.5,49.5 - parent: 0 - type: Transform -- uid: 17585 - type: FirelockGlass - components: - - pos: 26.5,50.5 - parent: 0 - type: Transform -- uid: 17586 - type: FirelockGlass - components: - - pos: 3.5,46.5 - parent: 0 - type: Transform -- uid: 17587 - type: FirelockGlass - components: - - pos: 1.5,49.5 - parent: 0 - type: Transform -- uid: 17588 - type: FirelockGlass - components: - - pos: 3.5,42.5 - parent: 0 - type: Transform -- uid: 17589 - type: FirelockGlass - components: - - pos: 3.5,60.5 - parent: 0 - type: Transform -- uid: 17590 - type: FirelockGlass - components: - - pos: 5.5,55.5 - parent: 0 - type: Transform -- uid: 17591 - type: AirSensor - components: - - pos: 18.5,44.5 - parent: 0 - type: Transform -- uid: 17592 - type: AirSensor - components: - - pos: 18.5,50.5 - parent: 0 - type: Transform -- uid: 17593 - type: AirSensor - components: - - pos: 9.5,62.5 - parent: 0 - type: Transform -- uid: 17594 - type: AirSensor - components: - - pos: 14.5,50.5 - parent: 0 - type: Transform -- uid: 17595 - type: AirSensor - components: - - pos: 5.5,45.5 - parent: 0 - type: Transform -- uid: 17596 - type: AirSensor - components: - - pos: 14.5,37.5 - parent: 0 - type: Transform -- uid: 17597 - type: GasPipeStraight - components: - - pos: 24.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17598 - type: GasPipeStraight - components: - - pos: 24.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17599 - type: GasPipeStraight - components: - - pos: 24.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17600 - type: GasPipeStraight - components: - - pos: 24.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17601 - type: GasPipeStraight - components: - - pos: 21.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17602 - type: GasPipeStraight - components: - - pos: 21.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17603 - type: GasPipeStraight - components: - - pos: 21.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17604 - type: GasPipeStraight - components: - - pos: 21.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17605 - type: GasPipeStraight - components: - - pos: 21.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17606 - type: GasPipeStraight - components: - - pos: 21.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17607 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 21.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17608 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 24.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17609 - type: FirelockGlass - components: - - pos: 16.5,37.5 - parent: 0 - type: Transform -- uid: 17610 - type: FirelockGlass - components: - - pos: 21.5,42.5 - parent: 0 - type: Transform -- uid: 17611 - type: FirelockGlass - components: - - pos: 22.5,42.5 - parent: 0 - type: Transform -- uid: 17612 - type: FirelockGlass - components: - - pos: 5.5,54.5 - parent: 0 - type: Transform -- uid: 17613 - type: FirelockGlass - components: - - pos: -0.5,59.5 - parent: 0 - type: Transform -- uid: 17614 - type: FirelockGlass - components: - - pos: 0.5,59.5 - parent: 0 - type: Transform -- uid: 17615 - type: FirelockGlass - components: - - pos: -2.5,61.5 - parent: 0 - type: Transform -- uid: 17616 - type: FirelockGlass - components: - - pos: -2.5,62.5 - parent: 0 - type: Transform -- uid: 17617 - type: FirelockGlass - components: - - pos: -2.5,63.5 - parent: 0 - type: Transform -- uid: 17618 - type: CryoPod - components: - - pos: 27.5,51.5 - parent: 0 - type: Transform -- uid: 17619 - type: CryoPod - components: - - pos: 29.5,51.5 - parent: 0 - type: Transform -- uid: 17620 - type: GasFilterFlipped - components: - - pos: 28.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17621 - type: GasPipeTJunction - components: - - pos: 27.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17622 - type: GasThermoMachineFreezer - components: - - pos: 30.5,51.5 - parent: 0 - type: Transform -- uid: 17623 - type: GasPipeTJunction - components: - - pos: 28.5,50.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 17624 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 30.5,49.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 17625 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 27.5,50.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 17626 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,49.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 17627 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 29.5,48.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 17628 - type: SignMedical - components: - - pos: 16.5,35.5 - parent: 0 - type: Transform -- uid: 17629 - type: SignMedical - components: - - pos: 1.5,64.5 - parent: 0 - type: Transform -- uid: 17630 - type: AsteroidRock - components: - - pos: 32.5,-57.5 - parent: 0 - type: Transform -- uid: 17631 - type: CableHV - components: - - pos: -0.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17632 - type: CableHV - components: - - pos: -0.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17633 - type: CableHV - components: - - pos: -0.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17634 - type: WallReinforced - components: - - pos: 27.5,59.5 - parent: 0 - type: Transform -- uid: 17635 - type: WallReinforced - components: - - pos: 27.5,60.5 - parent: 0 - type: Transform -- uid: 17636 - type: WallReinforced - components: - - pos: 27.5,61.5 - parent: 0 - type: Transform -- uid: 17637 - type: WallReinforced - components: - - pos: 26.5,61.5 - parent: 0 - type: Transform -- uid: 17638 - type: WallReinforced - components: - - pos: 28.5,61.5 - parent: 0 - type: Transform -- uid: 17639 - type: WallReinforced - components: - - pos: 28.5,62.5 - parent: 0 - type: Transform -- uid: 17640 - type: WallReinforced - components: - - pos: 28.5,63.5 - parent: 0 - type: Transform -- uid: 17641 - type: WallReinforced - components: - - pos: 28.5,64.5 - parent: 0 - type: Transform -- uid: 17642 - type: WallReinforced - components: - - pos: 28.5,65.5 - parent: 0 - type: Transform -- uid: 17643 - type: WallReinforced - components: - - pos: 27.5,65.5 - parent: 0 - type: Transform -- uid: 17644 - type: WallReinforced - components: - - pos: 26.5,65.5 - parent: 0 - type: Transform -- uid: 17645 - type: WallReinforced - components: - - pos: 25.5,65.5 - parent: 0 - type: Transform -- uid: 17646 - type: WallReinforced - components: - - pos: 24.5,65.5 - parent: 0 - type: Transform -- uid: 17647 - type: WallReinforced - components: - - pos: 24.5,64.5 - parent: 0 - type: Transform -- uid: 17648 - type: WallReinforced - components: - - pos: 24.5,63.5 - parent: 0 - type: Transform -- uid: 17649 - type: WallReinforced - components: - - pos: 24.5,62.5 - parent: 0 - type: Transform -- uid: 17650 - type: WallReinforced - components: - - pos: 24.5,61.5 - parent: 0 - type: Transform -- uid: 17651 - type: WallReinforced - components: - - pos: 23.5,61.5 - parent: 0 - type: Transform -- uid: 17652 - type: WallReinforced - components: - - pos: 21.5,61.5 - parent: 0 - type: Transform -- uid: 17653 - type: WallReinforced - components: - - pos: 20.5,61.5 - parent: 0 - type: Transform -- uid: 17654 - type: WallReinforced - components: - - pos: 20.5,63.5 - parent: 0 - type: Transform -- uid: 17655 - type: WallReinforced - components: - - pos: 20.5,64.5 - parent: 0 - type: Transform -- uid: 17656 - type: WallReinforced - components: - - pos: 21.5,64.5 - parent: 0 - type: Transform -- uid: 17657 - type: WallReinforced - components: - - pos: 22.5,64.5 - parent: 0 - type: Transform -- uid: 17658 - type: WallReinforced - components: - - pos: 23.5,64.5 - parent: 0 - type: Transform -- uid: 17659 - type: ReinforcedWindow - components: - - pos: 20.5,57.5 - parent: 0 - type: Transform -- uid: 17660 - type: ReinforcedWindow - components: - - pos: 20.5,59.5 - parent: 0 - type: Transform -- uid: 17661 - type: ReinforcedWindow - components: - - pos: 20.5,60.5 - parent: 0 - type: Transform -- uid: 17662 - type: WallSolid - components: - - pos: 16.5,66.5 - parent: 0 - type: Transform -- uid: 17663 - type: WallSolid - components: - - pos: 16.5,65.5 - parent: 0 - type: Transform -- uid: 17664 - type: WallSolid - components: - - pos: 17.5,65.5 - parent: 0 - type: Transform -- uid: 17665 - type: AirAlarm - components: - - pos: 16.5,64.5 - parent: 0 - type: Transform - - devices: - - 17562 - - 17563 - - 17564 - - 17565 - - 17566 - - 17567 - - 17754 - - 17720 - - 17721 - - 18744 - type: DeviceList -- uid: 17666 - type: WallSolid - components: - - pos: 19.5,65.5 - parent: 0 - type: Transform -- uid: 17667 - type: WallSolid - components: - - pos: 20.5,65.5 - parent: 0 - type: Transform -- uid: 17668 - type: WallSolid - components: - - pos: 20.5,66.5 - parent: 0 - type: Transform -- uid: 17669 - type: WallSolid - components: - - pos: 20.5,67.5 - parent: 0 - type: Transform -- uid: 17670 - type: WallSolid - components: - - pos: 20.5,68.5 - parent: 0 - type: Transform -- uid: 17671 - type: WallSolid - components: - - pos: 20.5,69.5 - parent: 0 - type: Transform -- uid: 17672 - type: WallSolid - components: - - pos: 19.5,69.5 - parent: 0 - type: Transform -- uid: 17673 - type: CableMV - components: - - pos: 4.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17674 - type: WallSolid - components: - - pos: 17.5,69.5 - parent: 0 - type: Transform -- uid: 17675 - type: WallSolid - components: - - pos: 16.5,69.5 - parent: 0 - type: Transform -- uid: 17676 - type: WallSolid - components: - - pos: 15.5,69.5 - parent: 0 - type: Transform -- uid: 17677 - type: WallSolid - components: - - pos: 14.5,69.5 - parent: 0 - type: Transform -- uid: 17678 - type: WallSolid - components: - - pos: 13.5,69.5 - parent: 0 - type: Transform -- uid: 17679 - type: CableApcExtension - components: - - pos: 10.5,65.5 - parent: 0 - type: Transform -- uid: 17680 - type: CableApcExtension - components: - - pos: 10.5,66.5 - parent: 0 - type: Transform -- uid: 17681 - type: WallSolid - components: - - pos: 11.5,66.5 - parent: 0 - type: Transform -- uid: 17682 - type: WallSolid - components: - - pos: 9.5,69.5 - parent: 0 - type: Transform -- uid: 17683 - type: WallSolid - components: - - pos: 8.5,69.5 - parent: 0 - type: Transform -- uid: 17684 - type: WallSolid - components: - - pos: 7.5,69.5 - parent: 0 - type: Transform -- uid: 17685 - type: WallSolid - components: - - pos: 6.5,69.5 - parent: 0 - type: Transform -- uid: 17686 - type: WallSolid - components: - - pos: 3.5,69.5 - parent: 0 - type: Transform -- uid: 17687 - type: WallSolid - components: - - pos: 3.5,70.5 - parent: 0 - type: Transform -- uid: 17688 - type: WallSolid - components: - - pos: 3.5,71.5 - parent: 0 - type: Transform -- uid: 17689 - type: WallSolid - components: - - pos: 3.5,72.5 - parent: 0 - type: Transform -- uid: 17690 - type: WallSolid - components: - - pos: 3.5,73.5 - parent: 0 - type: Transform -- uid: 17691 - type: WallSolid - components: - - pos: 4.5,73.5 - parent: 0 - type: Transform -- uid: 17692 - type: WallSolid - components: - - pos: 5.5,73.5 - parent: 0 - type: Transform -- uid: 17693 - type: WallSolid - components: - - pos: 6.5,73.5 - parent: 0 - type: Transform -- uid: 17694 - type: WallSolid - components: - - pos: 7.5,73.5 - parent: 0 - type: Transform -- uid: 17695 - type: WallSolid - components: - - pos: 8.5,73.5 - parent: 0 - type: Transform -- uid: 17696 - type: WallSolid - components: - - pos: 8.5,72.5 - parent: 0 - type: Transform -- uid: 17697 - type: AirlockMaintMedLocked - components: - - pos: 8.5,71.5 - parent: 0 - type: Transform -- uid: 17698 - type: WallSolid - components: - - pos: 8.5,70.5 - parent: 0 - type: Transform -- uid: 17699 - type: WallSolid - components: - - pos: 3.5,64.5 - parent: 0 - type: Transform -- uid: 17700 - type: WallSolid - components: - - pos: 3.5,65.5 - parent: 0 - type: Transform -- uid: 17701 - type: WallSolid - components: - - pos: 3.5,66.5 - parent: 0 - type: Transform -- uid: 17702 - type: WallSolid - components: - - pos: 3.5,67.5 - parent: 0 - type: Transform -- uid: 17703 - type: WallSolid - components: - - pos: 3.5,68.5 - parent: 0 - type: Transform -- uid: 17704 - type: ReinforcedWindow - components: - - pos: 6.5,64.5 - parent: 0 - type: Transform -- uid: 17705 - type: ReinforcedWindow - components: - - pos: 8.5,64.5 - parent: 0 - type: Transform -- uid: 17706 - type: ReinforcedWindow - components: - - pos: 4.5,69.5 - parent: 0 - type: Transform -- uid: 17707 - type: WallSolid - components: - - pos: 5.5,64.5 - parent: 0 - type: Transform -- uid: 17708 - type: WallSolid - components: - - pos: 4.5,64.5 - parent: 0 - type: Transform -- uid: 17709 - type: WallSolid - components: - - pos: 9.5,68.5 - parent: 0 - type: Transform -- uid: 17710 - type: WallSolid - components: - - pos: 9.5,67.5 - parent: 0 - type: Transform -- uid: 17711 - type: WallSolid - components: - - pos: 9.5,66.5 - parent: 0 - type: Transform -- uid: 17712 - type: WallSolid - components: - - pos: 9.5,65.5 - parent: 0 - type: Transform -- uid: 17713 - type: WallSolid - components: - - pos: 9.5,64.5 - parent: 0 - type: Transform -- uid: 17714 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17715 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17716 - type: WallSolid - components: - - pos: 12.5,64.5 - parent: 0 - type: Transform -- uid: 17717 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,64.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17718 - type: WallSolid - components: - - pos: 10.5,64.5 - parent: 0 - type: Transform -- uid: 17719 - type: WallSolid - components: - - pos: 16.5,64.5 - parent: 0 - type: Transform -- uid: 17720 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 18.5,60.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17721 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 16.5,62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17722 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 22.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17723 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17724 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,61.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17725 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17726 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17727 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17728 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17729 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17730 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17731 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17732 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 22.5,62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17733 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 19.5,62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17734 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17735 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 21.5,62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17736 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 23.5,57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17737 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 23.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17738 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 23.5,62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17739 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17740 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17741 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,64.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17742 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,65.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17743 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,64.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17744 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17745 - type: GasVentScrubber - components: - - pos: 6.5,66.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17746 - type: GasVentPump - components: - - pos: 8.5,66.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17747 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -0.5,62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17748 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -0.5,60.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17749 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,65.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17750 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,64.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17751 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17752 - type: GasVentPump - components: - - pos: 15.5,66.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17753 - type: GasVentScrubber - components: - - pos: 13.5,66.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17754 - type: AirSensor - components: - - pos: 18.5,62.5 - parent: 0 - type: Transform -- uid: 17755 - type: AirSensor - components: - - pos: -0.5,64.5 - parent: 0 - type: Transform -- uid: 17756 - type: AirSensor - components: - - pos: 3.5,58.5 - parent: 0 - type: Transform -- uid: 17757 - type: AirAlarm - components: - - pos: 0.5,65.5 - parent: 0 - type: Transform - - devices: - - 17617 - - 17616 - - 17615 - - 17613 - - 17614 - - 17560 - - 17561 - - 17755 - - 17748 - - 17747 - type: DeviceList -- uid: 17758 - type: FireAlarm - components: - - pos: -0.5,65.5 - parent: 0 - type: Transform - - devices: - - 17617 - - 17616 - - 17615 - - 17613 - - 17614 - - 17560 - - 17561 - - 17755 - type: DeviceList -- uid: 17759 - type: FireAlarm - components: - - pos: 9.5,64.5 - parent: 0 - type: Transform - - devices: - - 17562 - - 17563 - - 17564 - - 17560 - - 17589 - - 17561 - - 17593 - type: DeviceList -- uid: 17760 - type: AirAlarm - components: - - pos: 4.5,64.5 - parent: 0 - type: Transform - - devices: - - 17562 - - 17563 - - 17564 - - 17560 - - 17589 - - 17561 - - 17593 - - 17544 - - 17543 - type: DeviceList -- uid: 17761 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 20.5,61.5 - parent: 0 - type: Transform - - devices: - - 17562 - - 17563 - - 17564 - - 17565 - - 17566 - - 17567 - - 17754 - - 18744 - type: DeviceList -- uid: 17762 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 20.5,52.5 - parent: 0 - type: Transform - - devices: - - 17571 - - 17572 - - 17570 - - 17569 - - 17568 - - 17592 - - 17565 - - 17566 - - 17567 - - 18743 - type: DeviceList -- uid: 17763 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 16.5,52.5 - parent: 0 - type: Transform - - devices: - - 17571 - - 17572 - - 17570 - - 17569 - - 17568 - - 17592 - - 17565 - - 17566 - - 17567 - - 17394 - - 17393 - - 18743 - type: DeviceList -- uid: 17764 - type: AirAlarm - components: - - pos: 15.5,46.5 - parent: 0 - type: Transform - - devices: - - 17570 - - 17568 - - 17569 - - 17583 - - 17582 - - 17581 - - 17579 - - 17611 - - 17610 - - invalid - - 17577 - - 17576 - - 17575 - - 17580 - - 17591 - - 17460 - - 17461 - type: DeviceList -- uid: 17765 - type: FireAlarm - components: - - pos: 14.5,46.5 - parent: 0 - type: Transform - - devices: - - 17570 - - 17568 - - 17569 - - 17583 - - 17582 - - 17581 - - 17579 - - 17611 - - 17610 - - invalid - - 17577 - - 17576 - - 17575 - - 17580 - - 17591 - type: DeviceList -- uid: 17766 - type: FireAlarm - components: - - pos: 5.5,46.5 - parent: 0 - type: Transform - - devices: - - 17595 - - 17588 - - 17586 - - 17580 - type: DeviceList -- uid: 17767 - type: AirAlarm - components: - - pos: 4.5,46.5 - parent: 0 - type: Transform - - devices: - - 17595 - - 17588 - - 17586 - - 17580 - - 17391 - - 17392 - type: DeviceList -- uid: 17768 - type: AirAlarm - components: - - pos: 5.5,51.5 - parent: 0 - type: Transform - - devices: - - 17573 - - 17574 - - 17586 - - 17587 - - 17784 - - 17406 - - 17405 - type: DeviceList -- uid: 17769 - type: FireAlarm - components: - - pos: 4.5,51.5 - parent: 0 - type: Transform - - devices: - - 17573 - - 17574 - - 17586 - - 17587 - - 17784 - type: DeviceList -- uid: 17770 - type: FireAlarm - components: - - pos: 11.5,52.5 - parent: 0 - type: Transform - - devices: - - 17571 - - 17572 - - 17573 - - 17574 - - 17594 - type: DeviceList -- uid: 17771 - type: AirAlarm - components: - - pos: 12.5,52.5 - parent: 0 - type: Transform - - devices: - - 17571 - - 17572 - - 17573 - - 17574 - - 17594 - - 17399 - - 17297 - type: DeviceList -- uid: 17772 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 5.5,53.5 - parent: 0 - type: Transform - - devices: - - 17502 - - 17500 - type: DeviceList -- uid: 17773 - type: Grille - components: - - pos: 23.5,52.5 - parent: 0 - type: Transform -- uid: 17774 - type: Grille - components: - - pos: 24.5,52.5 - parent: 0 - type: Transform -- uid: 17775 - type: AirAlarm - components: - - pos: 34.5,47.5 - parent: 0 - type: Transform -- uid: 17776 - type: AirAlarm - components: - - pos: 19.5,39.5 - parent: 0 - type: Transform - - devices: - - 17609 - - 17610 - - 17611 - - 17579 - - 17778 - - 17607 - - 17608 - type: DeviceList -- uid: 17777 - type: FireAlarm - components: - - pos: 18.5,39.5 - parent: 0 - type: Transform - - devices: - - 17609 - - 17610 - - 17611 - - 17579 - - 17778 - type: DeviceList -- uid: 17778 - type: AirSensor - components: - - pos: 18.5,38.5 - parent: 0 - type: Transform -- uid: 17779 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 9.5,37.5 - parent: 0 - type: Transform - - devices: - - 17609 - - 17781 - - 17782 - - 17783 - - 17575 - - 17576 - - 17577 - - invalid - - 17596 - - 17389 - - 17387 - type: DeviceList -- uid: 17780 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 9.5,38.5 - parent: 0 - type: Transform - - devices: - - 17609 - - 17781 - - 17782 - - 17783 - - 17575 - - 17576 - - 17577 - - invalid - - 17596 - type: DeviceList -- uid: 17781 - type: FirelockGlass - components: - - pos: 14.5,35.5 - parent: 0 - type: Transform -- uid: 17782 - type: FirelockGlass - components: - - pos: 13.5,35.5 - parent: 0 - type: Transform -- uid: 17783 - type: FirelockGlass - components: - - pos: 12.5,35.5 - parent: 0 - type: Transform -- uid: 17784 - type: AirSensor - components: - - pos: 3.5,48.5 - parent: 0 - type: Transform -- uid: 17785 - type: AirSensor - components: - - pos: 23.5,50.5 - parent: 0 - type: Transform -- uid: 17786 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 5.5,57.5 - parent: 0 - type: Transform - - devices: - - 17589 - - 17590 - - 17612 - - 17756 - type: DeviceList -- uid: 17787 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 1.5,56.5 - parent: 0 - type: Transform - - devices: - - 17589 - - 17590 - - 17612 - - 17756 - - 17501 - - 17499 - type: DeviceList -- uid: 17788 - type: APCBasic - components: - - pos: 3.5,51.5 - parent: 0 - type: Transform -- uid: 17789 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 9.5,39.5 - parent: 0 - type: Transform -- uid: 17790 - type: APCBasic - components: - - pos: 4.5,42.5 - parent: 0 - type: Transform -- uid: 17791 - type: APCBasic - components: - - pos: 23.5,42.5 - parent: 0 - type: Transform -- uid: 17792 - type: CableApcExtension - components: - - pos: 21.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17793 - type: APCBasic - components: - - pos: 13.5,52.5 - parent: 0 - type: Transform -- uid: 17794 - type: APCBasic - components: - - pos: 6.5,57.5 - parent: 0 - type: Transform -- uid: 17795 - type: APCBasic - components: - - pos: 3.5,64.5 - parent: 0 - type: Transform -- uid: 17796 - type: APCBasic - components: - - pos: 24.5,61.5 - parent: 0 - type: Transform -- uid: 17797 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 31.5,44.5 - parent: 0 - type: Transform -- uid: 17798 - type: CableApcExtension - components: - - pos: 9.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17799 - type: CableApcExtension - components: - - pos: 10.5,39.5 - parent: 0 - type: Transform -- uid: 17800 - type: CableApcExtension - components: - - pos: 11.5,39.5 - parent: 0 - type: Transform -- uid: 17801 - type: CableApcExtension - components: - - pos: 12.5,39.5 - parent: 0 - type: Transform -- uid: 17802 - type: CableApcExtension - components: - - pos: 12.5,38.5 - parent: 0 - type: Transform -- uid: 17803 - type: CableApcExtension - components: - - pos: 12.5,37.5 - parent: 0 - type: Transform -- uid: 17804 - type: CableApcExtension - components: - - pos: 12.5,36.5 - parent: 0 - type: Transform -- uid: 17805 - type: CableApcExtension - components: - - pos: 13.5,36.5 - parent: 0 - type: Transform -- uid: 17806 - type: CableApcExtension - components: - - pos: 12.5,40.5 - parent: 0 - type: Transform -- uid: 17807 - type: CableApcExtension - components: - - pos: 13.5,40.5 - parent: 0 - type: Transform -- uid: 17808 - type: CableApcExtension - components: - - pos: 14.5,40.5 - parent: 0 - type: Transform -- uid: 17809 - type: CableApcExtension - components: - - pos: 15.5,40.5 - parent: 0 - type: Transform -- uid: 17810 - type: CableApcExtension - components: - - pos: 16.5,40.5 - parent: 0 - type: Transform -- uid: 17811 - type: CableApcExtension - components: - - pos: 17.5,40.5 - parent: 0 - type: Transform -- uid: 17812 - type: CableApcExtension - components: - - pos: 23.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17813 - type: CableApcExtension - components: - - pos: 23.5,41.5 - parent: 0 - type: Transform -- uid: 17814 - type: CableApcExtension - components: - - pos: 23.5,40.5 - parent: 0 - type: Transform -- uid: 17815 - type: CableApcExtension - components: - - pos: 23.5,39.5 - parent: 0 - type: Transform -- uid: 17816 - type: CableApcExtension - components: - - pos: 23.5,38.5 - parent: 0 - type: Transform -- uid: 17817 - type: CableApcExtension - components: - - pos: 23.5,37.5 - parent: 0 - type: Transform -- uid: 17818 - type: CableApcExtension - components: - - pos: 23.5,36.5 - parent: 0 - type: Transform -- uid: 17819 - type: CableApcExtension - components: - - pos: 22.5,36.5 - parent: 0 - type: Transform -- uid: 17820 - type: CableApcExtension - components: - - pos: 21.5,36.5 - parent: 0 - type: Transform -- uid: 17821 - type: CableApcExtension - components: - - pos: 20.5,36.5 - parent: 0 - type: Transform -- uid: 17822 - type: CableApcExtension - components: - - pos: 19.5,36.5 - parent: 0 - type: Transform -- uid: 17823 - type: CableApcExtension - components: - - pos: 18.5,36.5 - parent: 0 - type: Transform -- uid: 17824 - type: CableApcExtension - components: - - pos: 17.5,36.5 - parent: 0 - type: Transform -- uid: 17825 - type: CableApcExtension - components: - - pos: 16.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17826 - type: CableApcExtension - components: - - pos: 17.5,37.5 - parent: 0 - type: Transform -- uid: 17827 - type: CableApcExtension - components: - - pos: 17.5,38.5 - parent: 0 - type: Transform -- uid: 17828 - type: CableApcExtension - components: - - pos: 16.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17829 - type: CableApcExtension - components: - - pos: 18.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17830 - type: CableApcExtension - components: - - pos: 20.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17831 - type: CableApcExtension - components: - - pos: 22.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17832 - type: CableApcExtension - components: - - pos: 24.5,36.5 - parent: 0 - type: Transform -- uid: 17833 - type: CableApcExtension - components: - - pos: 24.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17834 - type: CableApcExtension - components: - - pos: 22.5,41.5 - parent: 0 - type: Transform -- uid: 17835 - type: CableApcExtension - components: - - pos: 21.5,41.5 - parent: 0 - type: Transform -- uid: 17836 - type: CableApcExtension - components: - - pos: 20.5,41.5 - parent: 0 - type: Transform -- uid: 17837 - type: CableApcExtension - components: - - pos: 20.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17838 - type: CableApcExtension - components: - - pos: 24.5,41.5 - parent: 0 - type: Transform -- uid: 17839 - type: CableApcExtension - components: - - pos: 25.5,41.5 - parent: 0 - type: Transform -- uid: 17840 - type: CableApcExtension - components: - - pos: 25.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17841 - type: CableApcExtension - components: - - pos: 22.5,39.5 - parent: 0 - type: Transform -- uid: 17842 - type: CableApcExtension - components: - - pos: 4.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17843 - type: CableApcExtension - components: - - pos: 4.5,41.5 - parent: 0 - type: Transform -- uid: 17844 - type: CableApcExtension - components: - - pos: 4.5,40.5 - parent: 0 - type: Transform -- uid: 17845 - type: CableApcExtension - components: - - pos: 4.5,39.5 - parent: 0 - type: Transform -- uid: 17846 - type: CableApcExtension - components: - - pos: 4.5,38.5 - parent: 0 - type: Transform -- uid: 17847 - type: CableApcExtension - components: - - pos: 4.5,37.5 - parent: 0 - type: Transform -- uid: 17848 - type: CableApcExtension - components: - - pos: 4.5,36.5 - parent: 0 - type: Transform -- uid: 17849 - type: CableApcExtension - components: - - pos: 5.5,40.5 - parent: 0 - type: Transform -- uid: 17850 - type: CableApcExtension - components: - - pos: 6.5,40.5 - parent: 0 - type: Transform -- uid: 17851 - type: CableApcExtension - components: - - pos: 7.5,40.5 - parent: 0 - type: Transform -- uid: 17852 - type: CableApcExtension - components: - - pos: 7.5,39.5 - parent: 0 - type: Transform -- uid: 17853 - type: CableApcExtension - components: - - pos: 7.5,37.5 - parent: 0 - type: Transform -- uid: 17854 - type: CableApcExtension - components: - - pos: 7.5,38.5 - parent: 0 - type: Transform -- uid: 17855 - type: CableApcExtension - components: - - pos: 3.5,40.5 - parent: 0 - type: Transform -- uid: 17856 - type: CableApcExtension - components: - - pos: 3.5,51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17857 - type: CableApcExtension - components: - - pos: 3.5,50.5 - parent: 0 - type: Transform -- uid: 17858 - type: CableApcExtension - components: - - pos: 3.5,49.5 - parent: 0 - type: Transform -- uid: 17859 - type: CableApcExtension - components: - - pos: 3.5,48.5 - parent: 0 - type: Transform -- uid: 17860 - type: CableApcExtension - components: - - pos: 3.5,47.5 - parent: 0 - type: Transform -- uid: 17861 - type: CableApcExtension - components: - - pos: 3.5,46.5 - parent: 0 - type: Transform -- uid: 17862 - type: CableApcExtension - components: - - pos: 3.5,45.5 - parent: 0 - type: Transform -- uid: 17863 - type: CableApcExtension - components: - - pos: 3.5,44.5 - parent: 0 - type: Transform -- uid: 17864 - type: CableApcExtension - components: - - pos: 4.5,44.5 - parent: 0 - type: Transform -- uid: 17865 - type: CableApcExtension - components: - - pos: 5.5,44.5 - parent: 0 - type: Transform -- uid: 17866 - type: CableApcExtension - components: - - pos: 6.5,44.5 - parent: 0 - type: Transform -- uid: 17867 - type: CableApcExtension - components: - - pos: 7.5,44.5 - parent: 0 - type: Transform -- uid: 17868 - type: CableApcExtension - components: - - pos: 2.5,49.5 - parent: 0 - type: Transform -- uid: 17869 - type: CableApcExtension - components: - - pos: 1.5,49.5 - parent: 0 - type: Transform -- uid: 17870 - type: CableApcExtension - components: - - pos: 0.5,49.5 - parent: 0 - type: Transform -- uid: 17871 - type: CableApcExtension - components: - - pos: -0.5,49.5 - parent: 0 - type: Transform -- uid: 17872 - type: CableApcExtension - components: - - pos: -1.5,49.5 - parent: 0 - type: Transform -- uid: 17873 - type: CableApcExtension - components: - - pos: -0.5,48.5 - parent: 0 - type: Transform -- uid: 17874 - type: CableApcExtension - components: - - pos: 4.5,49.5 - parent: 0 - type: Transform -- uid: 17875 - type: CableApcExtension - components: - - pos: 5.5,49.5 - parent: 0 - type: Transform -- uid: 17876 - type: CableApcExtension - components: - - pos: 6.5,49.5 - parent: 0 - type: Transform -- uid: 17877 - type: CableApcExtension - components: - - pos: 13.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17878 - type: CableApcExtension - components: - - pos: 13.5,51.5 - parent: 0 - type: Transform -- uid: 17879 - type: CableApcExtension - components: - - pos: 13.5,50.5 - parent: 0 - type: Transform -- uid: 17880 - type: CableApcExtension - components: - - pos: 13.5,49.5 - parent: 0 - type: Transform -- uid: 17881 - type: CableApcExtension - components: - - pos: 13.5,48.5 - parent: 0 - type: Transform -- uid: 17882 - type: CableApcExtension - components: - - pos: 13.5,47.5 - parent: 0 - type: Transform -- uid: 17883 - type: CableApcExtension - components: - - pos: 13.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17884 - type: CableApcExtension - components: - - pos: 12.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17885 - type: CableApcExtension - components: - - pos: 11.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17886 - type: CableApcExtension - components: - - pos: 11.5,47.5 - parent: 0 - type: Transform -- uid: 17887 - type: CableApcExtension - components: - - pos: 10.5,47.5 - parent: 0 - type: Transform -- uid: 17888 - type: CableApcExtension - components: - - pos: 9.5,47.5 - parent: 0 - type: Transform -- uid: 17889 - type: WallReinforced - components: - - pos: 8.5,47.5 - parent: 0 - type: Transform -- uid: 17890 - type: CableApcExtension - components: - - pos: 9.5,48.5 - parent: 0 - type: Transform -- uid: 17891 - type: CableApcExtension - components: - - pos: 9.5,49.5 - parent: 0 - type: Transform -- uid: 17892 - type: CableApcExtension - components: - - pos: 9.5,50.5 - parent: 0 - type: Transform -- uid: 17893 - type: CableApcExtension - components: - - pos: 8.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17894 - type: CableApcExtension - components: - - pos: 10.5,50.5 - parent: 0 - type: Transform -- uid: 17895 - type: CableApcExtension - components: - - pos: 11.5,50.5 - parent: 0 - type: Transform -- uid: 17896 - type: CableApcExtension - components: - - pos: 12.5,50.5 - parent: 0 - type: Transform -- uid: 17897 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 26.5,47.5 - parent: 0 - type: Transform - - devices: - - 17582 - - 17583 - - 17584 - - 17585 - - 17785 - type: DeviceList -- uid: 17898 - type: CableApcExtension - components: - - pos: 22.5,51.5 - parent: 0 - type: Transform -- uid: 17899 - type: CableApcExtension - components: - - pos: 22.5,50.5 - parent: 0 - type: Transform -- uid: 17900 - type: CableApcExtension - components: - - pos: 22.5,49.5 - parent: 0 - type: Transform -- uid: 17901 - type: CableApcExtension - components: - - pos: 22.5,48.5 - parent: 0 - type: Transform -- uid: 17902 - type: CableApcExtension - components: - - pos: 22.5,47.5 - parent: 0 - type: Transform -- uid: 17903 - type: CableApcExtension - components: - - pos: 23.5,49.5 - parent: 0 - type: Transform -- uid: 17904 - type: CableApcExtension - components: - - pos: 24.5,49.5 - parent: 0 - type: Transform -- uid: 17905 - type: CableApcExtension - components: - - pos: 25.5,49.5 - parent: 0 - type: Transform -- uid: 17906 - type: CableApcExtension - components: - - pos: 26.5,49.5 - parent: 0 - type: Transform -- uid: 17907 - type: CableApcExtension - components: - - pos: 27.5,49.5 - parent: 0 - type: Transform -- uid: 17908 - type: CableApcExtension - components: - - pos: 28.5,49.5 - parent: 0 - type: Transform -- uid: 17909 - type: CableApcExtension - components: - - pos: 29.5,49.5 - parent: 0 - type: Transform -- uid: 17910 - type: CableApcExtension - components: - - pos: 25.5,50.5 - parent: 0 - type: Transform -- uid: 17911 - type: CableApcExtension - components: - - pos: 31.5,44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17912 - type: CableApcExtension - components: - - pos: 32.5,44.5 - parent: 0 - type: Transform -- uid: 17913 - type: CableApcExtension - components: - - pos: 33.5,44.5 - parent: 0 - type: Transform -- uid: 17914 - type: CableApcExtension - components: - - pos: 34.5,44.5 - parent: 0 - type: Transform -- uid: 17915 - type: CableApcExtension - components: - - pos: 35.5,44.5 - parent: 0 - type: Transform -- uid: 17916 - type: CableApcExtension - components: - - pos: 33.5,45.5 - parent: 0 - type: Transform -- uid: 17917 - type: CableApcExtension - components: - - pos: 33.5,46.5 - parent: 0 - type: Transform -- uid: 17918 - type: CableApcExtension - components: - - pos: 33.5,47.5 - parent: 0 - type: Transform -- uid: 17919 - type: CableApcExtension - components: - - pos: 33.5,48.5 - parent: 0 - type: Transform -- uid: 17920 - type: CableApcExtension - components: - - pos: 35.5,45.5 - parent: 0 - type: Transform -- uid: 17921 - type: CableApcExtension - components: - - pos: 35.5,46.5 - parent: 0 - type: Transform -- uid: 17922 - type: CableApcExtension - components: - - pos: 35.5,47.5 - parent: 0 - type: Transform -- uid: 17923 - type: CableApcExtension - components: - - pos: 35.5,48.5 - parent: 0 - type: Transform -- uid: 17924 - type: CableApcExtension - components: - - pos: 31.5,43.5 - parent: 0 - type: Transform -- uid: 17925 - type: CableApcExtension - components: - - pos: 30.5,43.5 - parent: 0 - type: Transform -- uid: 17926 - type: CableApcExtension - components: - - pos: 29.5,43.5 - parent: 0 - type: Transform -- uid: 17927 - type: CableApcExtension - components: - - pos: 29.5,42.5 - parent: 0 - type: Transform -- uid: 17928 - type: CableApcExtension - components: - - pos: 29.5,41.5 - parent: 0 - type: Transform -- uid: 17929 - type: CableApcExtension - components: - - pos: 29.5,40.5 - parent: 0 - type: Transform -- uid: 17930 - type: CableApcExtension - components: - - pos: 31.5,45.5 - parent: 0 - type: Transform -- uid: 17931 - type: CableApcExtension - components: - - pos: 30.5,45.5 - parent: 0 - type: Transform -- uid: 17932 - type: CableApcExtension - components: - - pos: 29.5,45.5 - parent: 0 - type: Transform -- uid: 17933 - type: CableApcExtension - components: - - pos: 28.5,45.5 - parent: 0 - type: Transform -- uid: 17934 - type: CableApcExtension - components: - - pos: 21.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17935 - type: APCBasic - components: - - pos: 21.5,46.5 - parent: 0 - type: Transform -- uid: 17936 - type: CableApcExtension - components: - - pos: 21.5,45.5 - parent: 0 - type: Transform -- uid: 17937 - type: CableApcExtension - components: - - pos: 21.5,44.5 - parent: 0 - type: Transform -- uid: 17938 - type: CableApcExtension - components: - - pos: 22.5,44.5 - parent: 0 - type: Transform -- uid: 17939 - type: CableApcExtension - components: - - pos: 23.5,44.5 - parent: 0 - type: Transform -- uid: 17940 - type: CableApcExtension - components: - - pos: 19.5,44.5 - parent: 0 - type: Transform -- uid: 17941 - type: CableApcExtension - components: - - pos: 18.5,44.5 - parent: 0 - type: Transform -- uid: 17942 - type: CableApcExtension - components: - - pos: 17.5,44.5 - parent: 0 - type: Transform -- uid: 17943 - type: CableApcExtension - components: - - pos: 16.5,44.5 - parent: 0 - type: Transform -- uid: 17944 - type: CableApcExtension - components: - - pos: 15.5,44.5 - parent: 0 - type: Transform -- uid: 17945 - type: CableApcExtension - components: - - pos: 14.5,44.5 - parent: 0 - type: Transform -- uid: 17946 - type: CableApcExtension - components: - - pos: 13.5,44.5 - parent: 0 - type: Transform -- uid: 17947 - type: CableApcExtension - components: - - pos: 12.5,44.5 - parent: 0 - type: Transform -- uid: 17948 - type: CableApcExtension - components: - - pos: 20.5,44.5 - parent: 0 - type: Transform -- uid: 17949 - type: CableApcExtension - components: - - pos: 18.5,45.5 - parent: 0 - type: Transform -- uid: 17950 - type: CableApcExtension - components: - - pos: 18.5,46.5 - parent: 0 - type: Transform -- uid: 17951 - type: CableApcExtension - components: - - pos: 18.5,47.5 - parent: 0 - type: Transform -- uid: 17952 - type: CableApcExtension - components: - - pos: 18.5,48.5 - parent: 0 - type: Transform -- uid: 17953 - type: CableApcExtension - components: - - pos: 18.5,49.5 - parent: 0 - type: Transform -- uid: 17954 - type: CableApcExtension - components: - - pos: 18.5,50.5 - parent: 0 - type: Transform -- uid: 17955 - type: CableApcExtension - components: - - pos: 18.5,51.5 - parent: 0 - type: Transform -- uid: 17956 - type: CableApcExtension - components: - - pos: 18.5,52.5 - parent: 0 - type: Transform -- uid: 17957 - type: CableApcExtension - components: - - pos: 18.5,53.5 - parent: 0 - type: Transform -- uid: 17958 - type: CableApcExtension - components: - - pos: 18.5,54.5 - parent: 0 - type: Transform -- uid: 17959 - type: CableApcExtension - components: - - pos: 18.5,55.5 - parent: 0 - type: Transform -- uid: 17960 - type: CableApcExtension - components: - - pos: 19.5,54.5 - parent: 0 - type: Transform -- uid: 17961 - type: CableApcExtension - components: - - pos: 20.5,54.5 - parent: 0 - type: Transform -- uid: 17962 - type: CableApcExtension - components: - - pos: 21.5,54.5 - parent: 0 - type: Transform -- uid: 17963 - type: CableApcExtension - components: - - pos: 22.5,54.5 - parent: 0 - type: Transform -- uid: 17964 - type: CableApcExtension - components: - - pos: 23.5,54.5 - parent: 0 - type: Transform -- uid: 17965 - type: CableApcExtension - components: - - pos: 24.5,54.5 - parent: 0 - type: Transform -- uid: 17966 - type: CableApcExtension - components: - - pos: 25.5,54.5 - parent: 0 - type: Transform -- uid: 17967 - type: CableApcExtension - components: - - pos: 26.5,54.5 - parent: 0 - type: Transform -- uid: 17968 - type: CableApcExtension - components: - - pos: 27.5,54.5 - parent: 0 - type: Transform -- uid: 17969 - type: CableApcExtension - components: - - pos: 17.5,54.5 - parent: 0 - type: Transform -- uid: 17970 - type: CableApcExtension - components: - - pos: 16.5,54.5 - parent: 0 - type: Transform -- uid: 17971 - type: CableApcExtension - components: - - pos: 15.5,54.5 - parent: 0 - type: Transform -- uid: 17972 - type: CableApcExtension - components: - - pos: 14.5,54.5 - parent: 0 - type: Transform -- uid: 17973 - type: CableApcExtension - components: - - pos: 24.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17974 - type: CableApcExtension - components: - - pos: 24.5,60.5 - parent: 0 - type: Transform -- uid: 17975 - type: CableApcExtension - components: - - pos: 24.5,59.5 - parent: 0 - type: Transform -- uid: 17976 - type: CableApcExtension - components: - - pos: 24.5,58.5 - parent: 0 - type: Transform -- uid: 17977 - type: CableApcExtension - components: - - pos: 23.5,58.5 - parent: 0 - type: Transform -- uid: 17978 - type: CableApcExtension - components: - - pos: 22.5,58.5 - parent: 0 - type: Transform -- uid: 17979 - type: CableApcExtension - components: - - pos: 21.5,58.5 - parent: 0 - type: Transform -- uid: 17980 - type: CableApcExtension - components: - - pos: 20.5,58.5 - parent: 0 - type: Transform -- uid: 17981 - type: CableApcExtension - components: - - pos: 20.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17982 - type: CableApcExtension - components: - - pos: 20.5,59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17983 - type: CableApcExtension - components: - - pos: 20.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17984 - type: CableApcExtension - components: - - pos: 22.5,59.5 - parent: 0 - type: Transform -- uid: 17985 - type: CableApcExtension - components: - - pos: 22.5,60.5 - parent: 0 - type: Transform -- uid: 17986 - type: CableApcExtension - components: - - pos: 22.5,61.5 - parent: 0 - type: Transform -- uid: 17987 - type: CableApcExtension - components: - - pos: 22.5,62.5 - parent: 0 - type: Transform -- uid: 17988 - type: CableApcExtension - components: - - pos: 22.5,63.5 - parent: 0 - type: Transform -- uid: 17989 - type: CableApcExtension - components: - - pos: 25.5,60.5 - parent: 0 - type: Transform -- uid: 17990 - type: CableApcExtension - components: - - pos: 25.5,61.5 - parent: 0 - type: Transform -- uid: 17991 - type: CableApcExtension - components: - - pos: 25.5,62.5 - parent: 0 - type: Transform -- uid: 17992 - type: CableApcExtension - components: - - pos: 25.5,63.5 - parent: 0 - type: Transform -- uid: 17993 - type: CableApcExtension - components: - - pos: 25.5,64.5 - parent: 0 - type: Transform -- uid: 17994 - type: CableApcExtension - components: - - pos: 26.5,63.5 - parent: 0 - type: Transform -- uid: 17995 - type: CableApcExtension - components: - - pos: 25.5,58.5 - parent: 0 - type: Transform -- uid: 17996 - type: CableApcExtension - components: - - pos: 19.5,58.5 - parent: 0 - type: Transform -- uid: 17997 - type: CableApcExtension - components: - - pos: 18.5,58.5 - parent: 0 - type: Transform -- uid: 17998 - type: CableApcExtension - components: - - pos: 17.5,58.5 - parent: 0 - type: Transform -- uid: 17999 - type: CableApcExtension - components: - - pos: 16.5,58.5 - parent: 0 - type: Transform -- uid: 18000 - type: CableApcExtension - components: - - pos: 15.5,58.5 - parent: 0 - type: Transform -- uid: 18001 - type: CableApcExtension - components: - - pos: 14.5,58.5 - parent: 0 - type: Transform -- uid: 18002 - type: CableApcExtension - components: - - pos: 18.5,59.5 - parent: 0 - type: Transform -- uid: 18003 - type: CableApcExtension - components: - - pos: 18.5,60.5 - parent: 0 - type: Transform -- uid: 18004 - type: CableApcExtension - components: - - pos: 18.5,61.5 - parent: 0 - type: Transform -- uid: 18005 - type: CableApcExtension - components: - - pos: 18.5,62.5 - parent: 0 - type: Transform -- uid: 18006 - type: CableApcExtension - components: - - pos: 18.5,63.5 - parent: 0 - type: Transform -- uid: 18007 - type: CableApcExtension - components: - - pos: 6.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18008 - type: CableApcExtension - components: - - pos: 6.5,56.5 - parent: 0 - type: Transform -- uid: 18009 - type: CableApcExtension - components: - - pos: 6.5,55.5 - parent: 0 - type: Transform -- uid: 18010 - type: CableApcExtension - components: - - pos: 6.5,54.5 - parent: 0 - type: Transform -- uid: 18011 - type: CableApcExtension - components: - - pos: 6.5,53.5 - parent: 0 - type: Transform -- uid: 18012 - type: CableApcExtension - components: - - pos: 7.5,55.5 - parent: 0 - type: Transform -- uid: 18013 - type: CableApcExtension - components: - - pos: 8.5,55.5 - parent: 0 - type: Transform -- uid: 18014 - type: CableApcExtension - components: - - pos: 9.5,55.5 - parent: 0 - type: Transform -- uid: 18015 - type: CableApcExtension - components: - - pos: 10.5,55.5 - parent: 0 - type: Transform -- uid: 18016 - type: CableApcExtension - components: - - pos: 11.5,55.5 - parent: 0 - type: Transform -- uid: 18017 - type: CableApcExtension - components: - - pos: 9.5,56.5 - parent: 0 - type: Transform -- uid: 18018 - type: CableApcExtension - components: - - pos: 9.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18019 - type: CableApcExtension - components: - - pos: 9.5,58.5 - parent: 0 - type: Transform -- uid: 18020 - type: CableApcExtension - components: - - pos: 9.5,59.5 - parent: 0 - type: Transform -- uid: 18021 - type: CableApcExtension - components: - - pos: 5.5,55.5 - parent: 0 - type: Transform -- uid: 18022 - type: CableApcExtension - components: - - pos: 4.5,55.5 - parent: 0 - type: Transform -- uid: 18023 - type: CableApcExtension - components: - - pos: 3.5,55.5 - parent: 0 - type: Transform -- uid: 18024 - type: CableApcExtension - components: - - pos: 3.5,56.5 - parent: 0 - type: Transform -- uid: 18025 - type: CableApcExtension - components: - - pos: 3.5,57.5 - parent: 0 - type: Transform -- uid: 18026 - type: CableApcExtension - components: - - pos: 3.5,58.5 - parent: 0 - type: Transform -- uid: 18027 - type: CableApcExtension - components: - - pos: 3.5,59.5 - parent: 0 - type: Transform -- uid: 18028 - type: CableApcExtension - components: - - pos: 8.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18029 - type: CableApcExtension - components: - - pos: 7.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18030 - type: CableApcExtension - components: - - pos: 10.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18031 - type: CableApcExtension - components: - - pos: 3.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18032 - type: CableApcExtension - components: - - pos: 3.5,63.5 - parent: 0 - type: Transform -- uid: 18033 - type: CableApcExtension - components: - - pos: 3.5,62.5 - parent: 0 - type: Transform -- uid: 18034 - type: CableApcExtension - components: - - pos: 4.5,62.5 - parent: 0 - type: Transform -- uid: 18035 - type: CableApcExtension - components: - - pos: 5.5,62.5 - parent: 0 - type: Transform -- uid: 18036 - type: CableApcExtension - components: - - pos: 6.5,62.5 - parent: 0 - type: Transform -- uid: 18037 - type: CableApcExtension - components: - - pos: 7.5,62.5 - parent: 0 - type: Transform -- uid: 18038 - type: CableApcExtension - components: - - pos: 8.5,62.5 - parent: 0 - type: Transform -- uid: 18039 - type: CableApcExtension - components: - - pos: 9.5,62.5 - parent: 0 - type: Transform -- uid: 18040 - type: CableApcExtension - components: - - pos: 10.5,62.5 - parent: 0 - type: Transform -- uid: 18041 - type: CableApcExtension - components: - - pos: 11.5,62.5 - parent: 0 - type: Transform -- uid: 18042 - type: CableApcExtension - components: - - pos: 12.5,62.5 - parent: 0 - type: Transform -- uid: 18043 - type: CableApcExtension - components: - - pos: 13.5,62.5 - parent: 0 - type: Transform -- uid: 18044 - type: CableApcExtension - components: - - pos: 14.5,62.5 - parent: 0 - type: Transform -- uid: 18045 - type: CableApcExtension - components: - - pos: 15.5,62.5 - parent: 0 - type: Transform -- uid: 18046 - type: CableApcExtension - components: - - pos: 14.5,63.5 - parent: 0 - type: Transform -- uid: 18047 - type: CableApcExtension - components: - - pos: 14.5,64.5 - parent: 0 - type: Transform -- uid: 18048 - type: CableApcExtension - components: - - pos: 14.5,65.5 - parent: 0 - type: Transform -- uid: 18049 - type: CableApcExtension - components: - - pos: 14.5,66.5 - parent: 0 - type: Transform -- uid: 18050 - type: CableApcExtension - components: - - pos: 14.5,67.5 - parent: 0 - type: Transform -- uid: 18051 - type: CableApcExtension - components: - - pos: 15.5,67.5 - parent: 0 - type: Transform -- uid: 18052 - type: CableApcExtension - components: - - pos: 16.5,67.5 - parent: 0 - type: Transform -- uid: 18053 - type: CableApcExtension - components: - - pos: 17.5,67.5 - parent: 0 - type: Transform -- uid: 18054 - type: CableApcExtension - components: - - pos: 18.5,67.5 - parent: 0 - type: Transform -- uid: 18055 - type: CableApcExtension - components: - - pos: 13.5,67.5 - parent: 0 - type: Transform -- uid: 18056 - type: CableApcExtension - components: - - pos: 12.5,67.5 - parent: 0 - type: Transform -- uid: 18057 - type: CableApcExtension - components: - - pos: 12.5,65.5 - parent: 0 - type: Transform -- uid: 18058 - type: CableApcExtension - components: - - pos: 12.5,66.5 - parent: 0 - type: Transform -- uid: 18059 - type: CableApcExtension - components: - - pos: 11.5,65.5 - parent: 0 - type: Transform -- uid: 18060 - type: CableApcExtension - components: - - pos: 7.5,63.5 - parent: 0 - type: Transform -- uid: 18061 - type: CableApcExtension - components: - - pos: 7.5,64.5 - parent: 0 - type: Transform -- uid: 18062 - type: CableApcExtension - components: - - pos: 7.5,65.5 - parent: 0 - type: Transform -- uid: 18063 - type: CableApcExtension - components: - - pos: 7.5,66.5 - parent: 0 - type: Transform -- uid: 18064 - type: CableApcExtension - components: - - pos: 7.5,67.5 - parent: 0 - type: Transform -- uid: 18065 - type: CableApcExtension - components: - - pos: 7.5,68.5 - parent: 0 - type: Transform -- uid: 18066 - type: CableApcExtension - components: - - pos: 6.5,66.5 - parent: 0 - type: Transform -- uid: 18067 - type: CableApcExtension - components: - - pos: 5.5,66.5 - parent: 0 - type: Transform -- uid: 18068 - type: CableApcExtension - components: - - pos: 5.5,67.5 - parent: 0 - type: Transform -- uid: 18069 - type: CableApcExtension - components: - - pos: 5.5,67.5 - parent: 0 - type: Transform -- uid: 18070 - type: CableApcExtension - components: - - pos: 5.5,68.5 - parent: 0 - type: Transform -- uid: 18071 - type: CableApcExtension - components: - - pos: 5.5,69.5 - parent: 0 - type: Transform -- uid: 18072 - type: CableApcExtension - components: - - pos: 5.5,70.5 - parent: 0 - type: Transform -- uid: 18073 - type: CableApcExtension - components: - - pos: 5.5,71.5 - parent: 0 - type: Transform -- uid: 18074 - type: CableApcExtension - components: - - pos: 6.5,71.5 - parent: 0 - type: Transform -- uid: 18075 - type: CableApcExtension - components: - - pos: 2.5,63.5 - parent: 0 - type: Transform -- uid: 18076 - type: CableApcExtension - components: - - pos: 1.5,63.5 - parent: 0 - type: Transform -- uid: 18077 - type: CableApcExtension - components: - - pos: 0.5,63.5 - parent: 0 - type: Transform -- uid: 18078 - type: CableApcExtension - components: - - pos: -0.5,63.5 - parent: 0 - type: Transform -- uid: 18079 - type: CableApcExtension - components: - - pos: -1.5,63.5 - parent: 0 - type: Transform -- uid: 18080 - type: CableApcExtension - components: - - pos: -2.5,63.5 - parent: 0 - type: Transform -- uid: 18081 - type: CableApcExtension - components: - - pos: -3.5,63.5 - parent: 0 - type: Transform -- uid: 18082 - type: CableApcExtension - components: - - pos: -4.5,63.5 - parent: 0 - type: Transform -- uid: 18083 - type: CableApcExtension - components: - - pos: -4.5,64.5 - parent: 0 - type: Transform -- uid: 18084 - type: CableApcExtension - components: - - pos: -4.5,65.5 - parent: 0 - type: Transform -- uid: 18085 - type: CableApcExtension - components: - - pos: -4.5,62.5 - parent: 0 - type: Transform -- uid: 18086 - type: CableApcExtension - components: - - pos: -4.5,61.5 - parent: 0 - type: Transform -- uid: 18087 - type: CableApcExtension - components: - - pos: -4.5,60.5 - parent: 0 - type: Transform -- uid: 18088 - type: CableApcExtension - components: - - pos: -0.5,62.5 - parent: 0 - type: Transform -- uid: 18089 - type: CableApcExtension - components: - - pos: -0.5,61.5 - parent: 0 - type: Transform -- uid: 18090 - type: CableApcExtension - components: - - pos: -0.5,60.5 - parent: 0 - type: Transform -- uid: 18091 - type: CableApcExtension - components: - - pos: -0.5,59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18092 - type: CableApcExtension - components: - - pos: -0.5,58.5 - parent: 0 - type: Transform -- uid: 18093 - type: CableApcExtension - components: - - pos: -0.5,50.5 - parent: 0 - type: Transform -- uid: 18094 - type: CableApcExtension - components: - - pos: -0.5,51.5 - parent: 0 - type: Transform -- uid: 18095 - type: CableApcExtension - components: - - pos: -0.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18096 - type: CableApcExtension - components: - - pos: -0.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18097 - type: CableApcExtension - components: - - pos: -0.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18098 - type: CableApcExtension - components: - - pos: -0.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18099 - type: CableApcExtension - components: - - pos: 0.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18100 - type: CableMV - components: - - pos: 3.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18101 - type: CableMV - components: - - pos: 3.5,51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18102 - type: CableMV - components: - - pos: 2.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18103 - type: CableMV - components: - - pos: 1.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18104 - type: CableMV - components: - - pos: 0.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18105 - type: CableMV - components: - - pos: -0.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18106 - type: CableMV - components: - - pos: -0.5,51.5 - parent: 0 - type: Transform -- uid: 18107 - type: CableMV - components: - - pos: -0.5,50.5 - parent: 0 - type: Transform -- uid: 18108 - type: CableMV - components: - - pos: -0.5,49.5 - parent: 0 - type: Transform -- uid: 18109 - type: CableMV - components: - - pos: 0.5,49.5 - parent: 0 - type: Transform -- uid: 18110 - type: CableMV - components: - - pos: 1.5,49.5 - parent: 0 - type: Transform -- uid: 18111 - type: CableMV - components: - - pos: 2.5,49.5 - parent: 0 - type: Transform -- uid: 18112 - type: CableMV - components: - - pos: 3.5,49.5 - parent: 0 - type: Transform -- uid: 18113 - type: CableMV - components: - - pos: 4.5,49.5 - parent: 0 - type: Transform -- uid: 18114 - type: CableMV - components: - - pos: 5.5,49.5 - parent: 0 - type: Transform -- uid: 18115 - type: CableMV - components: - - pos: 6.5,49.5 - parent: 0 - type: Transform -- uid: 18116 - type: CableMV - components: - - pos: 7.5,49.5 - parent: 0 - type: Transform -- uid: 18117 - type: CableMV - components: - - pos: 8.5,49.5 - parent: 0 - type: Transform -- uid: 18118 - type: CableMV - components: - - pos: 9.5,49.5 - parent: 0 - type: Transform -- uid: 18119 - type: CableMV - components: - - pos: 10.5,49.5 - parent: 0 - type: Transform -- uid: 18120 - type: CableMV - components: - - pos: 11.5,49.5 - parent: 0 - type: Transform -- uid: 18121 - type: CableMV - components: - - pos: 12.5,49.5 - parent: 0 - type: Transform -- uid: 18122 - type: CableMV - components: - - pos: 13.5,49.5 - parent: 0 - type: Transform -- uid: 18123 - type: CableMV - components: - - pos: 13.5,50.5 - parent: 0 - type: Transform -- uid: 18124 - type: CableMV - components: - - pos: 13.5,51.5 - parent: 0 - type: Transform -- uid: 18125 - type: CableMV - components: - - pos: 13.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18126 - type: CableMV - components: - - pos: 3.5,48.5 - parent: 0 - type: Transform -- uid: 18127 - type: CableMV - components: - - pos: 3.5,47.5 - parent: 0 - type: Transform -- uid: 18128 - type: CableMV - components: - - pos: 3.5,46.5 - parent: 0 - type: Transform -- uid: 18129 - type: CableMV - components: - - pos: 3.5,45.5 - parent: 0 - type: Transform -- uid: 18130 - type: CableMV - components: - - pos: 3.5,44.5 - parent: 0 - type: Transform -- uid: 18131 - type: CableMV - components: - - pos: 3.5,43.5 - parent: 0 - type: Transform -- uid: 18132 - type: CableMV - components: - - pos: 3.5,42.5 - parent: 0 - type: Transform -- uid: 18133 - type: CableMV - components: - - pos: 4.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18134 - type: CableMV - components: - - pos: 3.5,50.5 - parent: 0 - type: Transform -- uid: 18135 - type: CableMV - components: - - pos: 14.5,49.5 - parent: 0 - type: Transform -- uid: 18136 - type: CableMV - components: - - pos: 15.5,49.5 - parent: 0 - type: Transform -- uid: 18137 - type: CableMV - components: - - pos: 16.5,49.5 - parent: 0 - type: Transform -- uid: 18138 - type: CableMV - components: - - pos: 17.5,49.5 - parent: 0 - type: Transform -- uid: 18139 - type: CableMV - components: - - pos: 18.5,49.5 - parent: 0 - type: Transform -- uid: 18140 - type: CableMV - components: - - pos: 18.5,48.5 - parent: 0 - type: Transform -- uid: 18141 - type: CableMV - components: - - pos: 18.5,47.5 - parent: 0 - type: Transform -- uid: 18142 - type: CableMV - components: - - pos: 18.5,46.5 - parent: 0 - type: Transform -- uid: 18143 - type: CableMV - components: - - pos: 18.5,45.5 - parent: 0 - type: Transform -- uid: 18144 - type: CableMV - components: - - pos: 18.5,44.5 - parent: 0 - type: Transform -- uid: 18145 - type: CableMV - components: - - pos: 19.5,44.5 - parent: 0 - type: Transform -- uid: 18146 - type: CableMV - components: - - pos: 20.5,44.5 - parent: 0 - type: Transform -- uid: 18147 - type: CableMV - components: - - pos: 21.5,44.5 - parent: 0 - type: Transform -- uid: 18148 - type: CableMV - components: - - pos: 21.5,45.5 - parent: 0 - type: Transform -- uid: 18149 - type: CableMV - components: - - pos: 21.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18150 - type: CableMV - components: - - pos: 22.5,44.5 - parent: 0 - type: Transform -- uid: 18151 - type: CableMV - components: - - pos: 23.5,44.5 - parent: 0 - type: Transform -- uid: 18152 - type: CableMV - components: - - pos: 23.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18153 - type: CableMV - components: - - pos: 23.5,43.5 - parent: 0 - type: Transform -- uid: 18154 - type: CableMV - components: - - pos: 24.5,43.5 - parent: 0 - type: Transform -- uid: 18155 - type: CableMV - components: - - pos: 25.5,43.5 - parent: 0 - type: Transform -- uid: 18156 - type: CableMV - components: - - pos: 26.5,43.5 - parent: 0 - type: Transform -- uid: 18157 - type: CableMV - components: - - pos: 27.5,43.5 - parent: 0 - type: Transform -- uid: 18158 - type: CableMV - components: - - pos: 28.5,43.5 - parent: 0 - type: Transform -- uid: 18159 - type: CableMV - components: - - pos: 29.5,43.5 - parent: 0 - type: Transform -- uid: 18160 - type: CableMV - components: - - pos: 30.5,43.5 - parent: 0 - type: Transform -- uid: 18161 - type: CableMV - components: - - pos: 31.5,43.5 - parent: 0 - type: Transform -- uid: 18162 - type: CableMV - components: - - pos: 31.5,44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18163 - type: CableMV - components: - - pos: 23.5,45.5 - parent: 0 - type: Transform -- uid: 18164 - type: CableMV - components: - - pos: 23.5,46.5 - parent: 0 - type: Transform -- uid: 18165 - type: CableMV - components: - - pos: 23.5,47.5 - parent: 0 - type: Transform -- uid: 18166 - type: CableMV - components: - - pos: 23.5,48.5 - parent: 0 - type: Transform -- uid: 18167 - type: CableMV - components: - - pos: 23.5,49.5 - parent: 0 - type: Transform -- uid: 18168 - type: CableMV - components: - - pos: 23.5,50.5 - parent: 0 - type: Transform -- uid: 18169 - type: CableMV - components: - - pos: 23.5,51.5 - parent: 0 - type: Transform -- uid: 18170 - type: Grille - components: - - pos: 22.5,52.5 - parent: 0 - type: Transform -- uid: 18171 - type: AirAlarm - components: - - pos: 25.5,52.5 - parent: 0 - type: Transform - - devices: - - 17582 - - 17583 - - 17584 - - 17585 - - 17785 - - 17401 - - 17398 - type: DeviceList -- uid: 18172 - type: CableMV - components: - - pos: 17.5,44.5 - parent: 0 - type: Transform -- uid: 18173 - type: CableMV - components: - - pos: 16.5,44.5 - parent: 0 - type: Transform -- uid: 18174 - type: CableMV - components: - - pos: 15.5,44.5 - parent: 0 - type: Transform -- uid: 18175 - type: CableMV - components: - - pos: 14.5,44.5 - parent: 0 - type: Transform -- uid: 18176 - type: CableMV - components: - - pos: 13.5,44.5 - parent: 0 - type: Transform -- uid: 18177 - type: CableMV - components: - - pos: 12.5,44.5 - parent: 0 - type: Transform -- uid: 18178 - type: CableMV - components: - - pos: 11.5,44.5 - parent: 0 - type: Transform -- uid: 18179 - type: CableMV - components: - - pos: 11.5,43.5 - parent: 0 - type: Transform -- uid: 18180 - type: CableMV - components: - - pos: 11.5,42.5 - parent: 0 - type: Transform -- uid: 18181 - type: CableMV - components: - - pos: 11.5,41.5 - parent: 0 - type: Transform -- uid: 18182 - type: CableMV - components: - - pos: 11.5,40.5 - parent: 0 - type: Transform -- uid: 18183 - type: CableMV - components: - - pos: 11.5,39.5 - parent: 0 - type: Transform -- uid: 18184 - type: CableMV - components: - - pos: 10.5,39.5 - parent: 0 - type: Transform -- uid: 18185 - type: CableMV - components: - - pos: 9.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18186 - type: CableMV - components: - - pos: 6.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18187 - type: CableMV - components: - - pos: 6.5,58.5 - parent: 0 - type: Transform -- uid: 18188 - type: CableMV - components: - - pos: 7.5,58.5 - parent: 0 - type: Transform -- uid: 18189 - type: CableMV - components: - - pos: 8.5,58.5 - parent: 0 - type: Transform -- uid: 18190 - type: CableMV - components: - - pos: 9.5,58.5 - parent: 0 - type: Transform -- uid: 18191 - type: CableMV - components: - - pos: 9.5,59.5 - parent: 0 - type: Transform -- uid: 18192 - type: CableMV - components: - - pos: 9.5,60.5 - parent: 0 - type: Transform -- uid: 18193 - type: CableMV - components: - - pos: 9.5,61.5 - parent: 0 - type: Transform -- uid: 18194 - type: CableMV - components: - - pos: 9.5,62.5 - parent: 0 - type: Transform -- uid: 18195 - type: CableMV - components: - - pos: 10.5,62.5 - parent: 0 - type: Transform -- uid: 18196 - type: CableMV - components: - - pos: 11.5,62.5 - parent: 0 - type: Transform -- uid: 18197 - type: CableMV - components: - - pos: 12.5,62.5 - parent: 0 - type: Transform -- uid: 18198 - type: CableMV - components: - - pos: 13.5,62.5 - parent: 0 - type: Transform -- uid: 18199 - type: CableMV - components: - - pos: 14.5,62.5 - parent: 0 - type: Transform -- uid: 18200 - type: CableMV - components: - - pos: 14.5,63.5 - parent: 0 - type: Transform -- uid: 18201 - type: CableMV - components: - - pos: 14.5,64.5 - parent: 0 - type: Transform -- uid: 18202 - type: CableMV - components: - - pos: 14.5,65.5 - parent: 0 - type: Transform -- uid: 18203 - type: CableMV - components: - - pos: 14.5,66.5 - parent: 0 - type: Transform -- uid: 18204 - type: CableMV - components: - - pos: 14.5,67.5 - parent: 0 - type: Transform -- uid: 18205 - type: CableMV - components: - - pos: 15.5,67.5 - parent: 0 - type: Transform -- uid: 18206 - type: CableMV - components: - - pos: 16.5,67.5 - parent: 0 - type: Transform -- uid: 18207 - type: CableMV - components: - - pos: 17.5,67.5 - parent: 0 - type: Transform -- uid: 18208 - type: CableMV - components: - - pos: 18.5,67.5 - parent: 0 - type: Transform -- uid: 18209 - type: CableMV - components: - - pos: 18.5,68.5 - parent: 0 - type: Transform -- uid: 18210 - type: CableMV - components: - - pos: 18.5,69.5 - parent: 0 - type: Transform -- uid: 18211 - type: CableMV - components: - - pos: 18.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18212 - type: CableMV - components: - - pos: 19.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18213 - type: CableMV - components: - - pos: 20.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18214 - type: CableMV - components: - - pos: 21.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18215 - type: CableMV - components: - - pos: 22.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18216 - type: SheetPaper - components: - - pos: -27.494131,27.5358 - parent: 0 - type: Transform -- uid: 18217 - type: Catwalk - components: - - pos: 52.5,85.5 - parent: 0 - type: Transform -- uid: 18218 - type: BrokenBottle - components: - - pos: -38.343266,62.530876 - parent: 0 - type: Transform -- uid: 18219 - type: Catwalk - components: - - pos: 52.5,81.5 - parent: 0 - type: Transform -- uid: 18220 - type: Catwalk - components: - - pos: 52.5,80.5 - parent: 0 - type: Transform -- uid: 18221 - type: Catwalk - components: - - pos: 52.5,84.5 - parent: 0 - type: Transform -- uid: 18222 - type: Catwalk - components: - - pos: 52.5,83.5 - parent: 0 - type: Transform -- uid: 18223 - type: Catwalk - components: - - pos: 52.5,82.5 - parent: 0 - type: Transform -- uid: 18224 - type: CableMV - components: - - pos: 29.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18225 - type: CableMV - components: - - pos: 30.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18226 - type: CableMV - components: - - pos: 31.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18227 - type: CableMV - components: - - pos: 32.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18228 - type: CableMV - components: - - pos: 32.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18229 - type: CableMV - components: - - pos: 32.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18230 - type: CableMV - components: - - pos: 32.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18231 - type: CableMV - components: - - pos: 32.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18232 - type: CableMV - components: - - pos: 32.5,59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18233 - type: CableMV - components: - - pos: 32.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18234 - type: CableMV - components: - - pos: 32.5,61.5 - parent: 0 - type: Transform -- uid: 18235 - type: CableMV - components: - - pos: 32.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18236 - type: CableMV - components: - - pos: 32.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18237 - type: CableMV - components: - - pos: 32.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18238 - type: CableMV - components: - - pos: 32.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18239 - type: CableMV - components: - - pos: 32.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18240 - type: Catwalk - components: - - pos: 53.5,76.5 - parent: 0 - type: Transform -- uid: 18241 - type: Catwalk - components: - - pos: 52.5,75.5 - parent: 0 - type: Transform -- uid: 18242 - type: Catwalk - components: - - pos: 52.5,74.5 - parent: 0 - type: Transform -- uid: 18243 - type: Catwalk - components: - - pos: 52.5,73.5 - parent: 0 - type: Transform -- uid: 18244 - type: Catwalk - components: - - pos: 52.5,72.5 - parent: 0 - type: Transform -- uid: 18245 - type: CableMV - components: - - pos: 15.5,62.5 - parent: 0 - type: Transform -- uid: 18246 - type: CableMV - components: - - pos: 16.5,62.5 - parent: 0 - type: Transform -- uid: 18247 - type: CableMV - components: - - pos: 17.5,62.5 - parent: 0 - type: Transform -- uid: 18248 - type: CableMV - components: - - pos: 18.5,62.5 - parent: 0 - type: Transform -- uid: 18249 - type: CableMV - components: - - pos: 18.5,61.5 - parent: 0 - type: Transform -- uid: 18250 - type: CableMV - components: - - pos: 18.5,60.5 - parent: 0 - type: Transform -- uid: 18251 - type: CableMV - components: - - pos: 18.5,59.5 - parent: 0 - type: Transform -- uid: 18252 - type: CableMV - components: - - pos: 18.5,58.5 - parent: 0 - type: Transform -- uid: 18253 - type: CableMV - components: - - pos: 19.5,58.5 - parent: 0 - type: Transform -- uid: 18254 - type: CableMV - components: - - pos: 20.5,58.5 - parent: 0 - type: Transform -- uid: 18255 - type: CableMV - components: - - pos: 21.5,58.5 - parent: 0 - type: Transform -- uid: 18256 - type: CableMV - components: - - pos: 22.5,58.5 - parent: 0 - type: Transform -- uid: 18257 - type: CableMV - components: - - pos: 23.5,58.5 - parent: 0 - type: Transform -- uid: 18258 - type: CableMV - components: - - pos: 24.5,58.5 - parent: 0 - type: Transform -- uid: 18259 - type: CableMV - components: - - pos: 24.5,59.5 - parent: 0 - type: Transform -- uid: 18260 - type: CableMV - components: - - pos: 24.5,60.5 - parent: 0 - type: Transform -- uid: 18261 - type: CableMV - components: - - pos: 24.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18262 - type: CableMV - components: - - pos: 8.5,62.5 - parent: 0 - type: Transform -- uid: 18263 - type: CableMV - components: - - pos: 7.5,62.5 - parent: 0 - type: Transform -- uid: 18264 - type: CableMV - components: - - pos: 6.5,62.5 - parent: 0 - type: Transform -- uid: 18265 - type: CableMV - components: - - pos: 5.5,62.5 - parent: 0 - type: Transform -- uid: 18266 - type: CableMV - components: - - pos: 4.5,62.5 - parent: 0 - type: Transform -- uid: 18267 - type: CableMV - components: - - pos: 3.5,62.5 - parent: 0 - type: Transform -- uid: 18268 - type: CableMV - components: - - pos: 3.5,63.5 - parent: 0 - type: Transform -- uid: 18269 - type: CableMV - components: - - pos: 3.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18270 - type: Grille - components: - - pos: -2.5,57.5 - parent: 0 - type: Transform -- uid: 18271 - type: Grille - components: - - pos: -2.5,58.5 - parent: 0 - type: Transform -- uid: 18272 - type: Grille - components: - - pos: 1.5,62.5 - parent: 0 - type: Transform -- uid: 18273 - type: Grille - components: - - pos: 2.5,60.5 - parent: 0 - type: Transform -- uid: 18274 - type: Grille - components: - - pos: 4.5,60.5 - parent: 0 - type: Transform -- uid: 18275 - type: Grille - components: - - pos: 7.5,57.5 - parent: 0 - type: Transform -- uid: 18276 - type: Grille - components: - - pos: 8.5,57.5 - parent: 0 - type: Transform -- uid: 18277 - type: Grille - components: - - pos: 9.5,57.5 - parent: 0 - type: Transform -- uid: 18278 - type: Grille - components: - - pos: 10.5,57.5 - parent: 0 - type: Transform -- uid: 18279 - type: Grille - components: - - pos: 10.5,60.5 - parent: 0 - type: Transform -- uid: 18280 - type: Grille - components: - - pos: 8.5,60.5 - parent: 0 - type: Transform -- uid: 18281 - type: Grille - components: - - pos: 6.5,64.5 - parent: 0 - type: Transform -- uid: 18282 - type: Grille - components: - - pos: 8.5,64.5 - parent: 0 - type: Transform -- uid: 18283 - type: Grille - components: - - pos: -2.5,48.5 - parent: 0 - type: Transform -- uid: 18284 - type: Grille - components: - - pos: -2.5,50.5 - parent: 0 - type: Transform -- uid: 18285 - type: Grille - components: - - pos: -1.5,47.5 - parent: 0 - type: Transform -- uid: 18286 - type: Grille - components: - - pos: 0.5,47.5 - parent: 0 - type: Transform -- uid: 18287 - type: MedicalScanner - components: - - pos: 14.5,50.5 - parent: 0 - type: Transform - - inputs: - MedicalScannerReceiver: - - port: MedicalScannerSender - uid: 18610 - type: SignalReceiver -- uid: 18288 - type: Grille - components: - - pos: 8.5,50.5 - parent: 0 - type: Transform -- uid: 18289 - type: Grille - components: - - pos: 11.5,46.5 - parent: 0 - type: Transform -- uid: 18290 - type: Grille - components: - - pos: 12.5,46.5 - parent: 0 - type: Transform -- uid: 18291 - type: Grille - components: - - pos: 13.5,46.5 - parent: 0 - type: Transform -- uid: 18292 - type: Grille - components: - - pos: 8.5,45.5 - parent: 0 - type: Transform -- uid: 18293 - type: Grille - components: - - pos: 8.5,43.5 - parent: 0 - type: Transform -- uid: 18294 - type: Grille - components: - - pos: 6.5,42.5 - parent: 0 - type: Transform -- uid: 18295 - type: Grille - components: - - pos: 5.5,42.5 - parent: 0 - type: Transform -- uid: 18296 - type: Grille - components: - - pos: 16.5,36.5 - parent: 0 - type: Transform -- uid: 18297 - type: Grille - components: - - pos: 16.5,38.5 - parent: 0 - type: Transform -- uid: 18298 - type: Grille - components: - - pos: 18.5,35.5 - parent: 0 - type: Transform -- uid: 18299 - type: Grille - components: - - pos: 20.5,35.5 - parent: 0 - type: Transform -- uid: 18300 - type: Grille - components: - - pos: 22.5,35.5 - parent: 0 - type: Transform -- uid: 18301 - type: Grille - components: - - pos: 24.5,35.5 - parent: 0 - type: Transform -- uid: 18302 - type: Grille - components: - - pos: 25.5,42.5 - parent: 0 - type: Transform -- uid: 18303 - type: Grille - components: - - pos: 20.5,42.5 - parent: 0 - type: Transform -- uid: 18304 - type: Grille - components: - - pos: 27.5,44.5 - parent: 0 - type: Transform -- uid: 18305 - type: Grille - components: - - pos: 28.5,44.5 - parent: 0 - type: Transform -- uid: 18306 - type: Grille - components: - - pos: 29.5,44.5 - parent: 0 - type: Transform -- uid: 18307 - type: Grille - components: - - pos: 30.5,44.5 - parent: 0 - type: Transform -- uid: 18308 - type: Grille - components: - - pos: 32.5,47.5 - parent: 0 - type: Transform -- uid: 18309 - type: Grille - components: - - pos: 36.5,47.5 - parent: 0 - type: Transform -- uid: 18310 - type: Grille - components: - - pos: 26.5,48.5 - parent: 0 - type: Transform -- uid: 18311 - type: Grille - components: - - pos: 26.5,51.5 - parent: 0 - type: Transform -- uid: 18312 - type: Grille - components: - - pos: 20.5,48.5 - parent: 0 - type: Transform -- uid: 18313 - type: Grille - components: - - pos: 20.5,49.5 - parent: 0 - type: Transform -- uid: 18314 - type: Grille - components: - - pos: 20.5,50.5 - parent: 0 - type: Transform -- uid: 18315 - type: Grille - components: - - pos: 20.5,53.5 - parent: 0 - type: Transform -- uid: 18316 - type: Grille - components: - - pos: 20.5,55.5 - parent: 0 - type: Transform -- uid: 18317 - type: Grille - components: - - pos: 25.5,53.5 - parent: 0 - type: Transform -- uid: 18318 - type: Grille - components: - - pos: 16.5,53.5 - parent: 0 - type: Transform -- uid: 18319 - type: Grille - components: - - pos: 16.5,55.5 - parent: 0 - type: Transform -- uid: 18320 - type: Grille - components: - - pos: 16.5,57.5 - parent: 0 - type: Transform -- uid: 18321 - type: Grille - components: - - pos: 16.5,59.5 - parent: 0 - type: Transform -- uid: 18322 - type: Grille - components: - - pos: 20.5,57.5 - parent: 0 - type: Transform -- uid: 18323 - type: Grille - components: - - pos: 20.5,59.5 - parent: 0 - type: Transform -- uid: 18324 - type: Grille - components: - - pos: 20.5,60.5 - parent: 0 - type: Transform -- uid: 18325 - type: Grille - components: - - pos: 18.5,65.5 - parent: 0 - type: Transform -- uid: 18326 - type: Grille - components: - - pos: 15.5,64.5 - parent: 0 - type: Transform -- uid: 18327 - type: Grille - components: - - pos: 13.5,64.5 - parent: 0 - type: Transform -- uid: 18328 - type: Grille - components: - - pos: 16.5,68.5 - parent: 0 - type: Transform -- uid: 18329 - type: Grille - components: - - pos: 11.5,64.5 - parent: 0 - type: Transform -- uid: 18330 - type: ReinforcedWindow - components: - - pos: 18.5,65.5 - parent: 0 - type: Transform -- uid: 18331 - type: Window - components: - - pos: 15.5,64.5 - parent: 0 - type: Transform -- uid: 18332 - type: Window - components: - - pos: 13.5,64.5 - parent: 0 - type: Transform -- uid: 18333 - type: Window - components: - - pos: 11.5,64.5 - parent: 0 - type: Transform -- uid: 18334 - type: Window - components: - - pos: 16.5,68.5 - parent: 0 - type: Transform -- uid: 18335 - type: TableReinforced - components: - - pos: 0.5,59.5 - parent: 0 - type: Transform -- uid: 18336 - type: TableReinforced - components: - - pos: -0.5,59.5 - parent: 0 - type: Transform -- uid: 18337 - type: TableReinforced - components: - - pos: 16.5,37.5 - parent: 0 - type: Transform -- uid: 18338 - type: chem_master - components: - - pos: 17.5,36.5 - parent: 0 - type: Transform -- uid: 18339 - type: TableReinforced - components: - - pos: 21.5,42.5 - parent: 0 - type: Transform -- uid: 18340 - type: chem_dispenser - components: - - pos: 18.5,36.5 - parent: 0 - type: Transform -- uid: 18341 - type: chem_master - components: - - pos: 20.5,41.5 - parent: 0 - type: Transform -- uid: 18342 - type: chem_dispenser - components: - - pos: 20.5,40.5 - parent: 0 - type: Transform -- uid: 18343 - type: VendingMachineChemDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 25.5,41.5 - parent: 0 - type: Transform -- uid: 18344 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 19.5,36.5 - parent: 0 - type: Transform -- uid: 18345 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 19.5,38.5 - parent: 0 - type: Transform -- uid: 18346 - type: Table - components: - - pos: 22.5,39.5 - parent: 0 - type: Transform -- uid: 18347 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 25.5,38.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - type: SurveillanceCamera -- uid: 18348 - type: Table - components: - - pos: 21.5,39.5 - parent: 0 - type: Transform -- uid: 18349 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 20.5,39.5 - parent: 0 - type: Transform -- uid: 18350 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 21.5,39.5 - parent: 0 - type: Transform -- uid: 18351 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 22.5,39.5 - parent: 0 - type: Transform -- uid: 18352 - type: Table - components: - - pos: 17.5,38.5 - parent: 0 - type: Transform -- uid: 18353 - type: Table - components: - - pos: 19.5,36.5 - parent: 0 - type: Transform -- uid: 18354 - type: Table - components: - - pos: 20.5,38.5 - parent: 0 - type: Transform -- uid: 18355 - type: KitchenReagentGrinder - components: - - pos: 20.5,39.5 - parent: 0 - type: Transform -- uid: 18356 - type: Table - components: - - pos: 25.5,40.5 - parent: 0 - type: Transform -- uid: 18357 - type: Table - components: - - pos: 25.5,39.5 - parent: 0 - type: Transform -- uid: 18358 - type: LockerMedicineFilled - components: - - pos: 22.5,36.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18359 - type: chem_dispenser - components: - - pos: 28.5,36.5 - parent: 0 - type: Transform -- uid: 18360 - type: ChairOfficeLight - components: - - pos: 17.5,37.5 - parent: 0 - type: Transform -- uid: 18361 - type: LockerChemistryFilled - components: - - pos: 23.5,36.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18362 - type: ChemistryHotplate - components: - - pos: 25.5,40.5 - parent: 0 - type: Transform -- uid: 18363 - type: DisposalUnit - components: - - pos: 24.5,36.5 - parent: 0 - type: Transform -- uid: 18364 - type: DisposalUnit - components: - - pos: 11.5,36.5 - parent: 0 - type: Transform -- uid: 18365 - type: DisposalUnit - components: - - pos: 15.5,47.5 - parent: 0 - type: Transform -- uid: 18366 - type: DisposalUnit - components: - - pos: 21.5,60.5 - parent: 0 - type: Transform -- uid: 18367 - type: DisposalUnit - components: - - pos: 6.5,65.5 - parent: 0 - type: Transform -- uid: 18368 - type: DisposalUnit - components: - - pos: 15.5,65.5 - parent: 0 - type: Transform -- uid: 18369 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 6.5,65.5 - parent: 0 - type: Transform -- uid: 18370 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 15.5,65.5 - parent: 0 - type: Transform -- uid: 18371 - type: DisposalTrunk - components: - - pos: 21.5,60.5 - parent: 0 - type: Transform -- uid: 18372 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 15.5,47.5 - parent: 0 - type: Transform -- uid: 18373 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 11.5,36.5 - parent: 0 - type: Transform -- uid: 18374 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 24.5,36.5 - parent: 0 - type: Transform -- uid: 18375 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,37.5 - parent: 0 - type: Transform -- uid: 18376 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,38.5 - parent: 0 - type: Transform -- uid: 18377 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,39.5 - parent: 0 - type: Transform -- uid: 18378 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,40.5 - parent: 0 - type: Transform -- uid: 18379 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,41.5 - parent: 0 - type: Transform -- uid: 18380 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,42.5 - parent: 0 - type: Transform -- uid: 18381 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 24.5,43.5 - parent: 0 - type: Transform -- uid: 18382 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,44.5 - parent: 0 - type: Transform -- uid: 18383 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,44.5 - parent: 0 - type: Transform -- uid: 18384 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,44.5 - parent: 0 - type: Transform -- uid: 18385 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,44.5 - parent: 0 - type: Transform -- uid: 18386 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,44.5 - parent: 0 - type: Transform -- uid: 18387 - type: DisposalBend - components: - - pos: 24.5,44.5 - parent: 0 - type: Transform -- uid: 18388 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,44.5 - parent: 0 - type: Transform -- uid: 18389 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,44.5 - parent: 0 - type: Transform -- uid: 18390 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,44.5 - parent: 0 - type: Transform -- uid: 18391 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,44.5 - parent: 0 - type: Transform -- uid: 18392 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,44.5 - parent: 0 - type: Transform -- uid: 18393 - type: DisposalPipe - components: - - pos: 12.5,43.5 - parent: 0 - type: Transform -- uid: 18394 - type: DisposalPipe - components: - - pos: 12.5,42.5 - parent: 0 - type: Transform -- uid: 18395 - type: DisposalPipe - components: - - pos: 12.5,41.5 - parent: 0 - type: Transform -- uid: 18396 - type: DisposalPipe - components: - - pos: 12.5,40.5 - parent: 0 - type: Transform -- uid: 18397 - type: DisposalPipe - components: - - pos: 12.5,39.5 - parent: 0 - type: Transform -- uid: 18398 - type: DisposalPipe - components: - - pos: 12.5,38.5 - parent: 0 - type: Transform -- uid: 18399 - type: DisposalPipe - components: - - pos: 12.5,37.5 - parent: 0 - type: Transform -- uid: 18400 - type: DisposalPipe - components: - - pos: 12.5,35.5 - parent: 0 - type: Transform -- uid: 18401 - type: DisposalPipe - components: - - pos: 12.5,34.5 - parent: 0 - type: Transform -- uid: 18402 - type: DisposalJunction - components: - - pos: 12.5,36.5 - parent: 0 - type: Transform -- uid: 18403 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 12.5,44.5 - parent: 0 - type: Transform -- uid: 18404 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 18.5,44.5 - parent: 0 - type: Transform -- uid: 18405 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 18.5,45.5 - parent: 0 - type: Transform -- uid: 18406 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 18.5,46.5 - parent: 0 - type: Transform -- uid: 18407 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 18.5,47.5 - parent: 0 - type: Transform -- uid: 18408 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 18.5,48.5 - parent: 0 - type: Transform -- uid: 18409 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,48.5 - parent: 0 - type: Transform -- uid: 18410 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 15.5,49.5 - parent: 0 - type: Transform -- uid: 18411 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,49.5 - parent: 0 - type: Transform -- uid: 18412 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,49.5 - parent: 0 - type: Transform -- uid: 18413 - type: DisposalJunction - components: - - pos: 18.5,49.5 - parent: 0 - type: Transform -- uid: 18414 - type: DisposalPipe - components: - - pos: 18.5,50.5 - parent: 0 - type: Transform -- uid: 18415 - type: DisposalPipe - components: - - pos: 18.5,51.5 - parent: 0 - type: Transform -- uid: 18416 - type: DisposalPipe - components: - - pos: 18.5,52.5 - parent: 0 - type: Transform -- uid: 18417 - type: DisposalPipe - components: - - pos: 18.5,53.5 - parent: 0 - type: Transform -- uid: 18418 - type: DisposalPipe - components: - - pos: 18.5,54.5 - parent: 0 - type: Transform -- uid: 18419 - type: DisposalPipe - components: - - pos: 18.5,55.5 - parent: 0 - type: Transform -- uid: 18420 - type: DisposalPipe - components: - - pos: 18.5,56.5 - parent: 0 - type: Transform -- uid: 18421 - type: DisposalPipe - components: - - pos: 18.5,57.5 - parent: 0 - type: Transform -- uid: 18422 - type: DisposalJunctionFlipped - components: - - pos: 18.5,58.5 - parent: 0 - type: Transform -- uid: 18423 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 21.5,58.5 - parent: 0 - type: Transform -- uid: 18424 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,58.5 - parent: 0 - type: Transform -- uid: 18425 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,58.5 - parent: 0 - type: Transform -- uid: 18426 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 21.5,59.5 - parent: 0 - type: Transform -- uid: 18427 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 18.5,59.5 - parent: 0 - type: Transform -- uid: 18428 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 18.5,60.5 - parent: 0 - type: Transform -- uid: 18429 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 18.5,61.5 - parent: 0 - type: Transform -- uid: 18430 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,62.5 - parent: 0 - type: Transform -- uid: 18431 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,62.5 - parent: 0 - type: Transform -- uid: 18432 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,62.5 - parent: 0 - type: Transform -- uid: 18433 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,62.5 - parent: 0 - type: Transform -- uid: 18434 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,62.5 - parent: 0 - type: Transform -- uid: 18435 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,62.5 - parent: 0 - type: Transform -- uid: 18436 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,62.5 - parent: 0 - type: Transform -- uid: 18437 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,62.5 - parent: 0 - type: Transform -- uid: 18438 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,62.5 - parent: 0 - type: Transform -- uid: 18439 - type: DisposalBend - components: - - pos: 7.5,65.5 - parent: 0 - type: Transform -- uid: 18440 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 14.5,65.5 - parent: 0 - type: Transform -- uid: 18441 - type: DisposalBend - components: - - pos: 18.5,62.5 - parent: 0 - type: Transform -- uid: 18442 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 7.5,62.5 - parent: 0 - type: Transform -- uid: 18443 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 7.5,63.5 - parent: 0 - type: Transform -- uid: 18444 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 7.5,64.5 - parent: 0 - type: Transform -- uid: 18445 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 14.5,64.5 - parent: 0 - type: Transform -- uid: 18446 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 14.5,63.5 - parent: 0 - type: Transform -- uid: 18447 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: 14.5,62.5 - parent: 0 - type: Transform -- uid: 18448 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,54.5 - parent: 0 - type: Transform -- uid: 18449 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: 22.5,42.5 - parent: 0 - type: Transform -- uid: 18450 - type: chem_master - components: - - pos: 30.5,36.5 - parent: 0 - type: Transform -- uid: 18451 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 21.5,41.5 - parent: 0 - type: Transform -- uid: 18452 - type: Table - components: - - pos: 18.5,38.5 - parent: 0 - type: Transform -- uid: 18453 - type: FloorDrain - components: - - pos: 22.5,38.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 18454 - type: SignChem - components: - - pos: 16.5,39.5 - parent: 0 - type: Transform -- uid: 18455 - type: SignChemistry1 - components: - - pos: 19.5,42.5 - parent: 0 - type: Transform -- uid: 18456 - type: SignVirology - components: - - pos: 26.5,44.5 - parent: 0 - type: Transform -- uid: 18457 - type: AirlockChemistryLocked - components: - - pos: 24.5,42.5 - parent: 0 - type: Transform -- uid: 18458 - type: WindoorChemistryLocked - components: - - pos: 21.5,42.5 - parent: 0 - type: Transform -- uid: 18459 - type: WindoorChemistryLocked - components: - - rot: -1.5707963267948966 rad - pos: 16.5,37.5 - parent: 0 - type: Transform -- uid: 18460 - type: ShuttersNormalOpen - components: - - pos: 18.5,35.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver -- uid: 18461 - type: ShuttersNormalOpen - components: - - pos: 20.5,35.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver -- uid: 18462 - type: ShuttersNormalOpen - components: - - pos: 22.5,35.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver -- uid: 18463 - type: ShuttersNormalOpen - components: - - pos: 24.5,35.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver -- uid: 18464 - type: SignalButton - components: - - pos: 26.5,38.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 18463 - - port: Toggle - uid: 18462 - - port: Toggle - uid: 18461 - - port: Toggle - uid: 18460 - - port: Toggle - uid: 18502 - - port: Toggle - uid: 18501 - - port: Toggle - uid: 18500 - - port: Toggle - uid: 18499 - - port: Toggle - uid: 18498 - - port: Toggle - uid: 18503 - - port: Toggle - uid: 18504 - - port: Toggle - uid: 18505 - type: SignalTransmitter -- uid: 18465 - type: PottedPlant10 - components: - - pos: 25.5,38.5 - parent: 0 - type: Transform -- uid: 18466 - type: SinkWide - components: - - pos: 23.5,41.5 - parent: 0 - type: Transform -- uid: 18467 - type: Table - components: - - pos: 21.5,36.5 - parent: 0 - type: Transform -- uid: 18468 - type: DogBed - components: - - pos: 20.5,36.5 - parent: 0 - type: Transform -- uid: 18469 - type: ExtinguisherCabinetFilled - components: - - pos: 17.5,39.5 - parent: 0 - type: Transform -- uid: 18470 - type: ExtinguisherCabinetFilled - components: - - pos: 26.5,39.5 - parent: 0 - type: Transform -- uid: 18471 - type: ExtinguisherCabinetFilled - components: - - pos: 9.5,40.5 - parent: 0 - type: Transform -- uid: 18472 - type: SignNosmoking - components: - - pos: 9.5,41.5 - parent: 0 - type: Transform -- uid: 18473 - type: SignSmoking - components: - - pos: 26.5,41.5 - parent: 0 - type: Transform -- uid: 18474 - type: AirlockChemistryLocked - components: - - pos: 26.5,37.5 - parent: 0 - type: Transform -- uid: 18475 - type: LockerChemistryFilled - components: - - pos: 25.5,36.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18476 - type: SheetPlasma1 - components: - - pos: 21.478357,39.599194 - parent: 0 - type: Transform -- uid: 18477 - type: SheetPlasma1 - components: - - pos: 21.478357,39.599194 - parent: 0 - type: Transform -- uid: 18478 - type: SheetPlasma1 - components: - - pos: 21.478357,39.599194 - parent: 0 - type: Transform -- uid: 18479 - type: SheetPlasma1 - components: - - pos: 21.478357,39.599194 - parent: 0 - type: Transform -- uid: 18480 - type: SheetPlasma1 - components: - - pos: 21.478357,39.599194 - parent: 0 - type: Transform -- uid: 18481 - type: BoxSyringe - components: - - pos: 22.415857,39.58357 - parent: 0 - type: Transform -- uid: 18482 - type: ClothingHandsGlovesLatex - components: - - pos: 25.431482,39.64607 - parent: 0 - type: Transform -- uid: 18483 - type: ClothingHandsGlovesLatex - components: - - pos: 25.556482,39.48982 - parent: 0 - type: Transform -- uid: 18484 - type: ClothingMaskBreathMedical - components: - - pos: 25.603357,39.911694 - parent: 0 - type: Transform -- uid: 18485 - type: ClothingMaskBreathMedical - components: - - pos: 25.603357,39.911694 - parent: 0 - type: Transform -- uid: 18486 - type: ClothingMaskBreathMedical - components: - - pos: 25.603357,39.911694 - parent: 0 - type: Transform -- uid: 18487 - type: Screwdriver - components: - - pos: 20.462732,38.83357 - parent: 0 - type: Transform -- uid: 18488 - type: BoxPillCanister - components: - - pos: 19.561905,38.478992 - parent: 0 - type: Transform -- uid: 18489 - type: BoxBottle - components: - - pos: 19.32753,38.682117 - parent: 0 - type: Transform -- uid: 18490 - type: LargeBeaker - components: - - pos: 19.368982,36.70857 - parent: 0 - type: Transform -- uid: 18491 - type: LargeBeaker - components: - - pos: 19.509607,36.58357 - parent: 0 - type: Transform -- uid: 18492 - type: Dropper - components: - - pos: 20.447107,38.58357 - parent: 0 - type: Transform -- uid: 18493 - type: Dropper - components: - - pos: 20.556482,38.48982 - parent: 0 - type: Transform -- uid: 18494 - type: SpawnMobWalter - components: - - pos: 20.5,36.5 - parent: 0 - type: Transform -- uid: 18495 - type: SprayBottle - components: - - pos: 21.415857,36.67732 - parent: 0 - type: Transform -- uid: 18496 - type: SprayBottle - components: - - pos: 21.525232,36.567944 - parent: 0 - type: Transform -- uid: 18497 - type: HandLabeler - components: - - pos: 21.478357,36.73982 - parent: 0 - type: Transform -- uid: 18498 - type: ShuttersNormalOpen - components: - - pos: 20.5,42.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver -- uid: 18499 - type: ShuttersNormalOpen - components: - - pos: 21.5,42.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver -- uid: 18500 - type: ShuttersNormalOpen - components: - - pos: 22.5,42.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver -- uid: 18501 - type: ShuttersNormalOpen - components: - - pos: 24.5,42.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver -- uid: 18502 - type: ShuttersNormalOpen - components: - - pos: 25.5,42.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver -- uid: 18503 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 16.5,36.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver -- uid: 18504 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 16.5,37.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver -- uid: 18505 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 16.5,38.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18464 - type: SignalReceiver -- uid: 18506 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 20.5,39.5 - parent: 0 - type: Transform -- uid: 18507 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 19.5,36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18508 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18509 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18510 - type: Poweredlight - components: - - pos: 13.5,41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18511 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 15.5,35.5 - parent: 0 - type: Transform -- uid: 18512 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 11.5,35.5 - parent: 0 - type: Transform -- uid: 18513 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 10.5,35.5 - parent: 0 - type: Transform -- uid: 18514 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 10.5,42.5 - parent: 0 - type: Transform -- uid: 18515 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 15.5,42.5 - parent: 0 - type: Transform -- uid: 18516 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 16.5,42.5 - parent: 0 - type: Transform -- uid: 18517 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 17.5,42.5 - parent: 0 - type: Transform -- uid: 18518 - type: WindowReinforcedDirectional - components: - - pos: 17.5,42.5 - parent: 0 - type: Transform -- uid: 18519 - type: WindowReinforcedDirectional - components: - - pos: 16.5,42.5 - parent: 0 - type: Transform -- uid: 18520 - type: WindowReinforcedDirectional - components: - - pos: 15.5,42.5 - parent: 0 - type: Transform -- uid: 18521 - type: WindowReinforcedDirectional - components: - - pos: 10.5,42.5 - parent: 0 - type: Transform -- uid: 18522 - type: WindowReinforcedDirectional - components: - - pos: 11.5,35.5 - parent: 0 - type: Transform -- uid: 18523 - type: WindowReinforcedDirectional - components: - - pos: 10.5,35.5 - parent: 0 - type: Transform -- uid: 18524 - type: WindowReinforcedDirectional - components: - - pos: 15.5,35.5 - parent: 0 - type: Transform -- uid: 18525 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 15.5,35.5 - parent: 0 - type: Transform -- uid: 18526 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 15.5,42.5 - parent: 0 - type: Transform -- uid: 18527 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 11.5,35.5 - parent: 0 - type: Transform -- uid: 18528 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 10.5,42.5 - parent: 0 - type: Transform -- uid: 18529 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 17.5,42.5 - parent: 0 - type: Transform -- uid: 18530 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,40.5 - parent: 0 - type: Transform -- uid: 18531 - type: ComputerCrewMonitoring - components: - - pos: 15.5,41.5 - parent: 0 - type: Transform -- uid: 18532 - type: filingCabinetDrawerRandom - components: - - pos: 18.5,41.5 - parent: 0 - type: Transform -- uid: 18533 - type: TableGlass - components: - - pos: 16.5,41.5 - parent: 0 - type: Transform -- uid: 18534 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 16.5,40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18535 - type: Poweredlight - components: - - pos: 16.5,45.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18536 - type: Poweredlight - components: - - pos: 25.5,45.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18537 - type: Poweredlight - components: - - pos: 6.5,45.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18538 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 7.5,36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18539 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18540 - type: AirlockMedicalLocked - components: - - pos: 3.5,35.5 - parent: 0 - type: Transform -- uid: 18541 - type: AirlockMedicalLocked - components: - - pos: 3.5,42.5 - parent: 0 - type: Transform -- uid: 18542 - type: SignMorgue - components: - - pos: 4.5,35.5 - parent: 0 - type: Transform -- uid: 18543 - type: SignMorgue - components: - - pos: 2.5,42.5 - parent: 0 - type: Transform -- uid: 18544 - type: AirlockVirologyGlassLocked - components: - - pos: 26.5,43.5 - parent: 0 - type: Transform -- uid: 18545 - type: AirlockVirologyGlassLocked - components: - - pos: 26.5,45.5 - parent: 0 - type: Transform -- uid: 18546 - type: AirlockVirologyGlassLocked - components: - - pos: 31.5,45.5 - parent: 0 - type: Transform -- uid: 18547 - type: AirlockVirologyGlassLocked - components: - - pos: 31.5,43.5 - parent: 0 - type: Transform -- uid: 18548 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 10.5,38.5 - parent: 0 - type: Transform -- uid: 18549 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 10.5,39.5 - parent: 0 - type: Transform -- uid: 18550 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 10.5,40.5 - parent: 0 - type: Transform -- uid: 18551 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 10.5,41.5 - parent: 0 - type: Transform -- uid: 18552 - type: TableGlass - components: - - pos: 10.5,36.5 - parent: 0 - type: Transform -- uid: 18553 - type: FaxMachineBase - components: - - pos: 16.5,41.5 - parent: 0 - type: Transform - - name: Medical - type: FaxMachine -- uid: 18554 - type: LampGold - components: - - pos: 13.541,41.73959 - parent: 0 - type: Transform -- uid: 18555 - type: PlushieLizard - components: - - pos: 15.544871,39.57073 - parent: 0 - type: Transform -- uid: 18556 - type: BoxFolderWhite - components: - - pos: 14.484999,39.61258 - parent: 0 - type: Transform -- uid: 18557 - type: AirlockMedicalGlassLocked - components: - - pos: 11.5,42.5 - parent: 0 - type: Transform -- uid: 18558 - type: AirlockMedicalGlassLocked - components: - - pos: 12.5,42.5 - parent: 0 - type: Transform -- uid: 18559 - type: AirlockMedicalGlassLocked - components: - - pos: 14.5,42.5 - parent: 0 - type: Transform -- uid: 18560 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,45.5 - parent: 0 - type: Transform -- uid: 18561 - type: ComputerMedicalRecords - components: - - rot: -1.5707963267948966 rad - pos: 18.5,40.5 - parent: 0 - type: Transform -- uid: 18562 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,40.5 - parent: 0 - type: Transform -- uid: 18563 - type: PaperBin5 - components: - - pos: 13.5,40.5 - parent: 0 - type: Transform -- uid: 18564 - type: Table - components: - - pos: 2.5,43.5 - parent: 0 - type: Transform -- uid: 18565 - type: Table - components: - - pos: 2.5,44.5 - parent: 0 - type: Transform -- uid: 18566 - type: Table - components: - - pos: 2.5,41.5 - parent: 0 - type: Transform -- uid: 18567 - type: BoxBodyBag - components: - - pos: 2.5249243,41.539085 - parent: 0 - type: Transform -- uid: 18568 - type: ClothingHandsGlovesLatex - components: - - pos: 8.524924,38.62128 - parent: 0 - type: Transform -- uid: 18569 - type: filingCabinetDrawerRandom - components: - - pos: 2.5,40.5 - parent: 0 - type: Transform -- uid: 18570 - type: CheapRollerBed - components: - - pos: 7.5,45.5 - parent: 0 - type: Transform -- uid: 18571 - type: CheapRollerBed - components: - - pos: 6.5,45.5 - parent: 0 - type: Transform -- uid: 18572 - type: CheapRollerBed - components: - - pos: 5.5,45.5 - parent: 0 - type: Transform -- uid: 18573 - type: EmergencyRollerBedSpawnFolded - components: - - pos: 7.5,43.5 - parent: 0 - type: Transform -- uid: 18574 - type: EmergencyRollerBedSpawnFolded - components: - - pos: 6.5,43.5 - parent: 0 - type: Transform -- uid: 18575 - type: SinkWide - components: - - pos: 4.5,45.5 - parent: 0 - type: Transform -- uid: 18576 - type: StasisBed - components: - - pos: 21.5,47.5 - parent: 0 - type: Transform -- uid: 18577 - type: StasisBed - components: - - pos: 21.5,49.5 - parent: 0 - type: Transform -- uid: 18578 - type: StasisBed - components: - - pos: 21.5,51.5 - parent: 0 - type: Transform -- uid: 18579 - type: HospitalCurtainsOpen - components: - - pos: 20.5,48.5 - parent: 0 - type: Transform -- uid: 18580 - type: HospitalCurtainsOpen - components: - - pos: 20.5,49.5 - parent: 0 - type: Transform -- uid: 18581 - type: HospitalCurtainsOpen - components: - - pos: 20.5,50.5 - parent: 0 - type: Transform -- uid: 18582 - type: HospitalCurtainsOpen - components: - - pos: 11.5,46.5 - parent: 0 - type: Transform -- uid: 18583 - type: HospitalCurtainsOpen - components: - - pos: 12.5,46.5 - parent: 0 - type: Transform -- uid: 18584 - type: HospitalCurtainsOpen - components: - - pos: 13.5,46.5 - parent: 0 - type: Transform -- uid: 18585 - type: SignDirectionalCryo - components: - - rot: 3.141592653589793 rad - pos: 25.5,46.5 - parent: 0 - type: Transform -- uid: 18586 - type: SignDirectionalChemistry - components: - - pos: 25.503977,46.27569 - parent: 0 - type: Transform -- uid: 18587 - type: SignCloning - components: - - pos: 16.5,47.5 - parent: 0 - type: Transform -- uid: 18588 - type: SignCryogenicsMed - components: - - pos: 20.5,46.5 - parent: 0 - type: Transform -- uid: 18589 - type: TableGlass - components: - - pos: 21.5,48.5 - parent: 0 - type: Transform -- uid: 18590 - type: TableGlass - components: - - pos: 21.5,50.5 - parent: 0 - type: Transform -- uid: 18591 - type: CableMV - components: - - pos: 24.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18592 - type: LockerMedicineFilled - components: - - pos: 25.5,51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18593 - type: TableGlass - components: - - pos: 24.5,51.5 - parent: 0 - type: Transform -- uid: 18594 - type: TableGlass - components: - - pos: 25.5,48.5 - parent: 0 - type: Transform -- uid: 18595 - type: CableMV - components: - - pos: 23.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18596 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,50.5 - parent: 0 - type: Transform -- uid: 18597 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 27.5,48.5 - parent: 0 - type: Transform -- uid: 18598 - type: Wrench - components: - - pos: 27.597157,48.56244 - parent: 0 - type: Transform -- uid: 18599 - type: PillCanister - components: - - pos: 27.362782,48.546814 - parent: 0 - type: Transform -- uid: 18600 - type: Sink - components: - - pos: 9.5,45.5 - parent: 0 - type: Transform -- uid: 18601 - type: Beaker - components: - - pos: 24.49847,51.800076 - parent: 0 - type: Transform -- uid: 18602 - type: Beaker - components: - - pos: 24.639324,51.745674 - parent: 0 - type: Transform -- uid: 18603 - type: Beaker - components: - - pos: 24.469292,51.5738 - parent: 0 - type: Transform -- uid: 18604 - type: OxygenCanister - components: - - pos: 28.5,48.5 - parent: 0 - type: Transform -- uid: 18605 - type: NitrogenCanister - components: - - pos: 29.5,48.5 - parent: 0 - type: Transform -- uid: 18606 - type: CableApcExtension - components: - - pos: 22.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18607 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 29.5,48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18608 - type: SignSmoking - components: - - pos: 16.5,51.5 - parent: 0 - type: Transform -- uid: 18609 - type: Grille - components: - - pos: 16.5,50.5 - parent: 0 - type: Transform -- uid: 18610 - type: ComputerCloningConsole - components: - - pos: 12.5,49.5 - parent: 0 - type: Transform - - outputs: - MedicalScannerSender: - - port: MedicalScannerReceiver - uid: 18287 - CloningPodSender: - - port: CloningPodReceiver - uid: 17541 - type: SignalTransmitter -- uid: 18611 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,47.5 - parent: 0 - type: Transform -- uid: 18612 - type: AirlockMedicalGlassLocked - components: - - pos: 8.5,48.5 - parent: 0 - type: Transform -- uid: 18613 - type: AirlockMedicalGlassLocked - components: - - pos: 8.5,49.5 - parent: 0 - type: Transform -- uid: 18614 - type: AirlockMedicalGlassLocked - components: - - pos: 16.5,48.5 - parent: 0 - type: Transform -- uid: 18615 - type: AirlockMedicalGlassLocked - components: - - pos: 16.5,49.5 - parent: 0 - type: Transform -- uid: 18616 - type: AirlockMedicalGlassLocked - components: - - pos: 3.5,46.5 - parent: 0 - type: Transform -- uid: 18617 - type: TableReinforced - components: - - pos: -0.5,47.5 - parent: 0 - type: Transform -- uid: 18618 - type: AirlockMedicalScienceGlassLocked - components: - - pos: 1.5,49.5 - parent: 0 - type: Transform -- uid: 18619 - type: AirlockMaintRnDMedLocked - components: - - pos: -0.5,51.5 - parent: 0 - type: Transform -- uid: 18620 - type: AirlockMaintMedLocked - components: - - pos: 1.5,54.5 - parent: 0 - type: Transform -- uid: 18621 - type: AirlockMaintMedLocked - components: - - pos: -0.5,56.5 - parent: 0 - type: Transform -- uid: 18622 - type: AirlockEngineeringLocked - components: - - pos: 1.5,52.5 - parent: 0 - type: Transform -- uid: 18623 - type: AirlockEngineeringLocked - components: - - pos: 31.5,54.5 - parent: 0 - type: Transform -- uid: 18624 - type: TableGlass - components: - - pos: 10.5,47.5 - parent: 0 - type: Transform -- uid: 18625 - type: TableGlass - components: - - pos: 14.5,47.5 - parent: 0 - type: Transform -- uid: 18626 - type: TableGlass - components: - - pos: 13.5,47.5 - parent: 0 - type: Transform -- uid: 18627 - type: TableGlass - components: - - pos: 12.5,47.5 - parent: 0 - type: Transform -- uid: 18628 - type: filingCabinetDrawerRandom - components: - - pos: 11.5,47.5 - parent: 0 - type: Transform -- uid: 18629 - type: WindoorScienceLocked - components: - - rot: 3.141592653589793 rad - pos: -0.5,47.5 - parent: 0 - type: Transform -- uid: 18630 - type: ClothingHeadsetGrey - components: - - pos: 14.016209,47.44494 - parent: 0 - type: Transform -- uid: 18631 - type: ClothingHeadsetGrey - components: - - pos: 13.906834,47.554314 - parent: 0 - type: Transform -- uid: 18632 - type: CrowbarRed - components: - - pos: 10.547459,47.491814 - parent: 0 - type: Transform -- uid: 18633 - type: BoxFolderWhite - components: - - pos: 13.453709,47.554314 - parent: 0 - type: Transform -- uid: 18634 - type: PaperBin5 - components: - - pos: 12.5,47.5 - parent: 0 - type: Transform -- uid: 18635 - type: BoxBodyBag - components: - - pos: 14.500584,47.585564 - parent: 0 - type: Transform -- uid: 18636 - type: FirelockGlass - components: - - pos: -0.5,47.5 - parent: 0 - type: Transform -- uid: 18637 - type: TableGlass - components: - - pos: -1.5,49.5 - parent: 0 - type: Transform -- uid: 18638 - type: TableGlass - components: - - pos: -1.5,50.5 - parent: 0 - type: Transform -- uid: 18639 - type: TableGlass - components: - - pos: 0.5,50.5 - parent: 0 - type: Transform -- uid: 18640 - type: VendingMachineGeneDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,50.5 - parent: 0 - type: Transform -- uid: 18641 - type: filingCabinetDrawerRandom - components: - - pos: -1.5,48.5 - parent: 0 - type: Transform -- uid: 18642 - type: ChairOfficeLight - components: - - pos: -0.5,48.5 - parent: 0 - type: Transform -- uid: 18643 - type: AirlockMaintLocked - components: - - pos: -1.5,55.5 - parent: 0 - type: Transform -- uid: 18644 - type: Table - components: - - pos: 7.5,47.5 - parent: 0 - type: Transform -- uid: 18645 - type: Table - components: - - pos: 7.5,50.5 - parent: 0 - type: Transform -- uid: 18646 - type: Table - components: - - pos: 2.5,47.5 - parent: 0 - type: Transform -- uid: 18647 - type: BoxSterileMask - components: - - pos: -1.4749913,50.556385 - parent: 0 - type: Transform -- uid: 18648 - type: BoxMouthSwab - components: - - pos: -1.3812413,50.29076 - parent: 0 - type: Transform -- uid: 18649 - type: Dropper - components: - - pos: 0.4531083,50.604774 - parent: 0 - type: Transform -- uid: 18650 - type: Dropper - components: - - pos: 0.6093583,50.46415 - parent: 0 - type: Transform -- uid: 18651 - type: Beaker - components: - - pos: 0.5312333,50.854774 - parent: 0 - type: Transform -- uid: 18652 - type: Beaker - components: - - pos: 0.7031083,50.792274 - parent: 0 - type: Transform -- uid: 18653 - type: PottedPlant12 - components: - - pos: 25.5,47.5 - parent: 0 - type: Transform -- uid: 18654 - type: Poweredlight - components: - - pos: 14.5,51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18655 - type: Poweredlight - components: - - pos: 10.5,51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18656 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18657 - type: Catwalk - components: - - pos: -0.5,52.5 - parent: 0 - type: Transform -- uid: 18658 - type: LockerMedicineFilled - components: - - pos: 0.5,55.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18659 - type: Catwalk - components: - - pos: -0.5,53.5 - parent: 0 - type: Transform -- uid: 18660 - type: Catwalk - components: - - pos: -0.5,54.5 - parent: 0 - type: Transform -- uid: 18661 - type: Catwalk - components: - - pos: -0.5,55.5 - parent: 0 - type: Transform -- uid: 18662 - type: Catwalk - components: - - pos: 0.5,54.5 - parent: 0 - type: Transform -- uid: 18663 - type: Rack - components: - - pos: 0.5,53.5 - parent: 0 - type: Transform -- uid: 18664 - type: Crowbar - components: - - pos: 0.5932865,53.43983 - parent: 0 - type: Transform -- uid: 18665 - type: CheapRollerBedSpawnFolded - components: - - pos: 0.4995365,53.799206 - parent: 0 - type: Transform -- uid: 18666 - type: PillCanister - components: - - rot: -1.5707963267948966 rad - pos: 0.7339115,53.080456 - parent: 0 - type: Transform -- uid: 18667 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 26.5,53.5 - parent: 0 - type: Transform -- uid: 18668 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 27.5,53.5 - parent: 0 - type: Transform -- uid: 18669 - type: LockerEvidence - components: - - pos: 27.5,55.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18670 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 3.141592653589793 rad - pos: 23.5,53.5 - parent: 0 - type: Transform -- uid: 18671 - type: ReinforcedWindow - components: - - pos: 24.5,52.5 - parent: 0 - type: Transform -- uid: 18672 - type: ReinforcedWindow - components: - - pos: 23.5,52.5 - parent: 0 - type: Transform -- uid: 18673 - type: ReinforcedWindow - components: - - pos: 22.5,52.5 - parent: 0 - type: Transform -- uid: 18674 - type: ClothingNeckScarfStripedBlue - components: - - pos: 21.455616,50.48725 - parent: 0 - type: Transform -- uid: 18675 - type: CableMV - components: - - pos: 24.5,53.5 - parent: 0 - type: Transform -- uid: 18676 - type: CableMV - components: - - pos: 25.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18677 - type: CableMV - components: - - pos: 22.5,53.5 - parent: 0 - type: Transform -- uid: 18678 - type: CableMV - components: - - pos: 21.5,53.5 - parent: 0 - type: Transform -- uid: 18679 - type: CableMV - components: - - pos: 20.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18680 - type: CableMV - components: - - pos: 21.5,54.5 - parent: 0 - type: Transform -- uid: 18681 - type: CableMV - components: - - pos: 21.5,55.5 - parent: 0 - type: Transform -- uid: 18682 - type: CableMV - components: - - pos: 20.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18683 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 25.5,54.5 - parent: 0 - type: Transform -- uid: 18684 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,54.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18685 - type: Poweredlight - components: - - pos: 23.5,55.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18686 - type: Poweredlight - components: - - pos: 25.5,51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18687 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18688 - type: ComputerCrewMonitoring - components: - - rot: 3.141592653589793 rad - pos: 22.5,53.5 - parent: 0 - type: Transform -- uid: 18689 - type: ComputerCriminalRecords - components: - - rot: 3.141592653589793 rad - pos: 24.5,53.5 - parent: 0 - type: Transform -- uid: 18690 - type: Table - components: - - pos: 21.5,55.5 - parent: 0 - type: Transform -- uid: 18691 - type: filingCabinetDrawerRandom - components: - - pos: 24.5,55.5 - parent: 0 - type: Transform -- uid: 18692 - type: ClosetL3SecurityFilled - components: - - pos: 23.5,55.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18693 - type: PottedPlant0 - components: - - pos: 22.5,55.5 - parent: 0 - type: Transform -- uid: 18694 - type: AirlockSecurityGlassLocked - components: - - pos: 20.5,54.5 - parent: 0 - type: Transform -- uid: 18695 - type: SurveillanceCameraSecurity - components: - - pos: 21.5,53.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Medical Security Post - type: SurveillanceCamera -- uid: 18696 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: 12.5,51.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cloning - type: SurveillanceCamera -- uid: 18697 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: 25.5,51.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cryonics - type: SurveillanceCamera -- uid: 18698 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 15.5,39.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medbay Lobby - type: SurveillanceCamera -- uid: 18699 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: 20.5,45.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical Entrance - type: SurveillanceCamera -- uid: 18700 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: 4.5,41.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue - type: SurveillanceCamera -- uid: 18701 - type: ComfyChair - components: - - pos: 7.5,58.5 - parent: 0 - type: Transform -- uid: 18702 - type: ComfyChair - components: - - pos: 8.5,58.5 - parent: 0 - type: Transform -- uid: 18703 - type: ComfyChair - components: - - pos: 9.5,58.5 - parent: 0 - type: Transform -- uid: 18704 - type: ComfyChair - components: - - pos: 10.5,58.5 - parent: 0 - type: Transform -- uid: 18705 - type: Table - components: - - pos: 6.5,59.5 - parent: 0 - type: Transform -- uid: 18706 - type: AirlockMedicalLocked - components: - - pos: 9.5,60.5 - parent: 0 - type: Transform -- uid: 18707 - type: AirlockMedicalGlassLocked - components: - - pos: 5.5,55.5 - parent: 0 - type: Transform -- uid: 18708 - type: AirlockMedicalGlassLocked - components: - - pos: 3.5,60.5 - parent: 0 - type: Transform -- uid: 18709 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,59.5 - parent: 0 - type: Transform -- uid: 18710 - type: PottedPlant1 - components: - - pos: 6.5,58.5 - parent: 0 - type: Transform -- uid: 18711 - type: IntercomMedical - components: - - pos: 7.5,60.5 - parent: 0 - type: Transform -- uid: 18712 - type: IntercomMedical - components: - - pos: 10.5,46.5 - parent: 0 - type: Transform -- uid: 18713 - type: Poweredlight - components: - - pos: 7.5,59.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18714 - type: OperatingTable - components: - - pos: 10.5,56.5 - parent: 0 - type: Transform -- uid: 18715 - type: OperatingTable - components: - - pos: 10.5,53.5 - parent: 0 - type: Transform -- uid: 18716 - type: computerBodyScanner - components: - - pos: 9.5,56.5 - parent: 0 - type: Transform -- uid: 18717 - type: computerBodyScanner - components: - - rot: 3.141592653589793 rad - pos: 9.5,53.5 - parent: 0 - type: Transform -- uid: 18718 - type: TableReinforced - components: - - pos: 11.5,53.5 - parent: 0 - type: Transform -- uid: 18719 - type: TableReinforced - components: - - pos: 11.5,54.5 - parent: 0 - type: Transform -- uid: 18720 - type: TableReinforced - components: - - pos: 11.5,55.5 - parent: 0 - type: Transform -- uid: 18721 - type: TableReinforced - components: - - pos: 11.5,56.5 - parent: 0 - type: Transform -- uid: 18722 - type: SignSurgery - components: - - pos: 5.5,60.5 - parent: 0 - type: Transform -- uid: 18723 - type: Bed - components: - - pos: 4.5,56.5 - parent: 0 - type: Transform -- uid: 18724 - type: Bed - components: - - pos: 4.5,57.5 - parent: 0 - type: Transform -- uid: 18725 - type: Bed - components: - - pos: 4.5,58.5 - parent: 0 - type: Transform -- uid: 18726 - type: Bed - components: - - pos: 4.5,59.5 - parent: 0 - type: Transform -- uid: 18727 - type: BedsheetMedical - components: - - pos: 4.5,56.5 - parent: 0 - type: Transform -- uid: 18728 - type: BedsheetMedical - components: - - pos: 4.5,57.5 - parent: 0 - type: Transform -- uid: 18729 - type: BedsheetMedical - components: - - pos: 4.5,58.5 - parent: 0 - type: Transform -- uid: 18730 - type: BedsheetMedical - components: - - pos: 4.5,59.5 - parent: 0 - type: Transform -- uid: 18731 - type: Table - components: - - pos: 2.5,59.5 - parent: 0 - type: Transform -- uid: 18732 - type: CheapRollerBed - components: - - pos: 2.5,58.5 - parent: 0 - type: Transform -- uid: 18733 - type: CheapRollerBed - components: - - pos: 2.5,57.5 - parent: 0 - type: Transform -- uid: 18734 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: 2.5,56.5 - parent: 0 - type: Transform -- uid: 18735 - type: ComputerMedicalRecords - components: - - rot: 1.5707963267948966 rad - pos: 2.5,55.5 - parent: 0 - type: Transform -- uid: 18736 - type: CrateMedicalSurgery - components: - - pos: 6.5,56.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18737 - type: ClothingBackpackDuffelSurgeryFilled - components: - - pos: 11.597518,56.64033 - parent: 0 - type: Transform -- uid: 18738 - type: ClothingBackpackDuffelSurgeryFilled - components: - - pos: 11.566268,53.60908 - parent: 0 - type: Transform -- uid: 18739 - type: CrateMedicalScrubs - components: - - pos: 7.5,56.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18740 - type: LockerMedicalFilled - components: - - pos: 7.5,52.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18741 - type: Table - components: - - pos: 6.5,52.5 - parent: 0 - type: Transform -- uid: 18742 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 6.5,53.5 - parent: 0 - type: Transform -- uid: 18743 - type: FirelockGlass - components: - - pos: 16.5,54.5 - parent: 0 - type: Transform -- uid: 18744 - type: FirelockGlass - components: - - pos: 16.5,58.5 - parent: 0 - type: Transform -- uid: 18745 - type: HospitalCurtainsOpen - components: - - pos: 16.5,54.5 - parent: 0 - type: Transform -- uid: 18746 - type: HospitalCurtainsOpen - components: - - pos: 16.5,58.5 - parent: 0 - type: Transform -- uid: 18747 - type: SignExamroom - components: - - pos: 16.5,56.5 - parent: 0 - type: Transform -- uid: 18748 - type: UniformScrubsColorBlue - components: - - pos: 6.5590725,52.553944 - parent: 0 - type: Transform -- uid: 18749 - type: ClothingHeadHatSurgcapBlue - components: - - pos: 6.4340725,52.72582 - parent: 0 - type: Transform -- uid: 18750 - type: ClothingMaskSterile - components: - - pos: 6.5434475,52.678944 - parent: 0 - type: Transform -- uid: 18751 - type: ClothingShoesColorWhite - components: - - pos: 6.4028225,52.397694 - parent: 0 - type: Transform -- uid: 18752 - type: ClothingShoesColorWhite - components: - - pos: 6.6371975,52.366444 - parent: 0 - type: Transform -- uid: 18753 - type: ClothingHandsGlovesNitrile - components: - - pos: 6.5903225,52.522694 - parent: 0 - type: Transform -- uid: 18754 - type: SignSmoking - components: - - pos: 11.5,57.5 - parent: 0 - type: Transform -- uid: 18755 - type: VendingMachineWallMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,56.5 - parent: 0 - type: Transform -- uid: 18756 - type: ClothingMaskSterile - components: - - pos: 11.538149,54.48283 - parent: 0 - type: Transform -- uid: 18757 - type: ClothingHandsGlovesLatex - components: - - pos: 11.477349,55.515778 - parent: 0 - type: Transform -- uid: 18758 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -2.5,57.5 - parent: 0 - type: Transform -- uid: 18759 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -2.5,58.5 - parent: 0 - type: Transform -- uid: 18760 - type: ShuttersNormalOpen - components: - - pos: -1.5,59.5 - parent: 0 - type: Transform -- uid: 18761 - type: ShuttersNormalOpen - components: - - pos: -0.5,59.5 - parent: 0 - type: Transform -- uid: 18762 - type: ShuttersNormalOpen - components: - - pos: 0.5,59.5 - parent: 0 - type: Transform -- uid: 18763 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -1.5,57.5 - parent: 0 - type: Transform -- uid: 18764 - type: filingCabinetDrawerRandom - components: - - pos: 0.5,57.5 - parent: 0 - type: Transform -- uid: 18765 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: -0.5,58.5 - parent: 0 - type: Transform -- uid: 18766 - type: AirlockMedicalGlassLocked - components: - - rot: 3.141592653589793 rad - pos: -1.5,59.5 - parent: 0 - type: Transform -- uid: 18767 - type: SignMedical - components: - - rot: 3.141592653589793 rad - pos: -2.5,59.5 - parent: 0 - type: Transform -- uid: 18768 - type: ComfyChair - components: - - pos: -0.5,64.5 - parent: 0 - type: Transform -- uid: 18769 - type: PottedPlant10 - components: - - pos: 0.5,64.5 - parent: 0 - type: Transform -- uid: 18770 - type: BoxFolderWhite - components: - - pos: -0.45793486,59.500385 - parent: 0 - type: Transform -- uid: 18771 - type: SprayBottle - components: - - pos: 0.52644014,59.51601 - parent: 0 - type: Transform -- uid: 18772 - type: AirlockMaintMedLocked - components: - - pos: 2.5,64.5 - parent: 0 - type: Transform -- uid: 18773 - type: AirlockMedicalGlassLocked - components: - - pos: 1.5,61.5 - parent: 0 - type: Transform -- uid: 18774 - type: AirlockMedicalGlassLocked - components: - - pos: 1.5,63.5 - parent: 0 - type: Transform -- uid: 18775 - type: AirlockMaintLocked - components: - - pos: -1.5,65.5 - parent: 0 - type: Transform -- uid: 18776 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,58.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18777 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,58.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18778 - type: Poweredlight - components: - - pos: -0.5,64.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18779 - type: Poweredlight - components: - - pos: 3.5,63.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18780 - type: Poweredlight - components: - - pos: 6.5,56.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18781 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 11.5,53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18782 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,54.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18783 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,58.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18784 - type: Poweredlight - components: - - pos: 10.5,63.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18785 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,61.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18786 - type: Poweredlight - components: - - pos: 2.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18787 - type: Poweredlight - components: - - pos: 10.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18788 - type: Poweredlight - components: - - pos: 18.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18789 - type: Poweredlight - components: - - pos: 5.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18790 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18791 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18792 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18793 - type: BedsheetMedical - components: - - rot: 1.5707963267948966 rad - pos: 15.5,59.5 - parent: 0 - type: Transform -- uid: 18794 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: 13.5,57.5 - parent: 0 - type: Transform -- uid: 18795 - type: MedicalBed - components: - - pos: 15.5,59.5 - parent: 0 - type: Transform -- uid: 18796 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 14.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18797 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: 13.5,59.5 - parent: 0 - type: Transform -- uid: 18798 - type: BedsheetMedical - components: - - rot: 1.5707963267948966 rad - pos: 15.5,55.5 - parent: 0 - type: Transform -- uid: 18799 - type: BedsheetMedical - components: - - rot: 1.5707963267948966 rad - pos: 15.5,53.5 - parent: 0 - type: Transform -- uid: 18800 - type: MedicalBed - components: - - pos: 15.5,53.5 - parent: 0 - type: Transform -- uid: 18801 - type: MedicalBed - components: - - pos: 22.5,63.5 - parent: 0 - type: Transform -- uid: 18802 - type: BedsheetCMO - components: - - pos: 22.5,63.5 - parent: 0 - type: Transform -- uid: 18803 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: 13.5,55.5 - parent: 0 - type: Transform -- uid: 18804 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: 13.5,53.5 - parent: 0 - type: Transform -- uid: 18805 - type: MedicalBed - components: - - pos: 15.5,57.5 - parent: 0 - type: Transform -- uid: 18806 - type: MedicalBed - components: - - pos: 15.5,55.5 - parent: 0 - type: Transform -- uid: 18807 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,54.5 - parent: 0 - type: Transform -- uid: 18808 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,58.5 - parent: 0 - type: Transform -- uid: 18809 - type: LockerMedicineFilled - components: - - pos: 21.5,63.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18810 - type: TableGlass - components: - - pos: 23.5,63.5 - parent: 0 - type: Transform -- uid: 18811 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 23.5,62.5 - parent: 0 - type: Transform -- uid: 18812 - type: PosterLegitNoERP - components: - - pos: 21.5,64.5 - parent: 0 - type: Transform -- uid: 18813 - type: VendingMachineWallMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 22.5,64.5 - parent: 0 - type: Transform -- uid: 18814 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 21.5,62.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18815 - type: AirlockChiefMedicalOfficerLocked - components: - - name: Private Exam - type: MetaData - - rot: 3.141592653589793 rad - pos: 20.5,62.5 - parent: 0 - type: Transform -- uid: 18816 - type: AirlockChiefMedicalOfficerLocked - components: - - rot: 3.141592653589793 rad - pos: 22.5,61.5 - parent: 0 - type: Transform -- uid: 18817 - type: AirlockChiefMedicalOfficerLocked - components: - - rot: 3.141592653589793 rad - pos: 25.5,61.5 - parent: 0 - type: Transform -- uid: 18818 - type: AirlockChiefMedicalOfficerGlassLocked - components: - - rot: 3.141592653589793 rad - pos: 20.5,58.5 - parent: 0 - type: Transform -- uid: 18819 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,65.5 - parent: 0 - type: Transform -- uid: 18820 - type: VendingMachineMediDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,68.5 - parent: 0 - type: Transform -- uid: 18821 - type: LockerMedicalFilled - components: - - pos: 8.5,66.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18822 - type: LockerMedicalFilled - components: - - pos: 8.5,67.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18823 - type: MedicalTechFab - components: - - pos: 6.5,68.5 - parent: 0 - type: Transform -- uid: 18824 - type: Table - components: - - pos: 4.5,66.5 - parent: 0 - type: Transform -- uid: 18825 - type: Table - components: - - pos: 4.5,67.5 - parent: 0 - type: Transform -- uid: 18826 - type: Table - components: - - pos: 4.5,68.5 - parent: 0 - type: Transform -- uid: 18827 - type: WindoorMedicalLocked - components: - - rot: 1.5707963267948966 rad - pos: 4.5,66.5 - parent: 0 - type: Transform -- uid: 18828 - type: MedkitFilled - components: - - pos: 4.402216,68.60151 - parent: 0 - type: Transform -- uid: 18829 - type: MedkitFilled - components: - - pos: 4.620966,68.60151 - parent: 0 - type: Transform -- uid: 18830 - type: MedkitBurnFilled - components: - - pos: 4.386591,68.273384 - parent: 0 - type: Transform -- uid: 18831 - type: MedkitBurnFilled - components: - - pos: 4.605341,68.273384 - parent: 0 - type: Transform -- uid: 18832 - type: MedkitBruteFilled - components: - - pos: 4.386591,67.929634 - parent: 0 - type: Transform -- uid: 18833 - type: MedkitBruteFilled - components: - - pos: 4.605341,67.929634 - parent: 0 - type: Transform -- uid: 18834 - type: MedkitOxygenFilled - components: - - pos: 4.355341,67.60151 - parent: 0 - type: Transform -- uid: 18835 - type: MedkitOxygenFilled - components: - - pos: 4.605341,67.60151 - parent: 0 - type: Transform -- uid: 18836 - type: MedkitRadiationFilled - components: - - pos: 4.355341,67.28901 - parent: 0 - type: Transform -- uid: 18837 - type: MedkitRadiationFilled - components: - - pos: 4.620966,67.28901 - parent: 0 - type: Transform -- uid: 18838 - type: MedkitToxinFilled - components: - - pos: 4.370966,67.00776 - parent: 0 - type: Transform -- uid: 18839 - type: MedkitToxinFilled - components: - - pos: 4.636591,67.00776 - parent: 0 - type: Transform -- uid: 18840 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 4.5,65.5 - parent: 0 - type: Transform -- uid: 18841 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 4.5,65.5 - parent: 0 - type: Transform -- uid: 18842 - type: WindoorMedicalLocked - components: - - rot: 1.5707963267948966 rad - pos: 4.5,67.5 - parent: 0 - type: Transform -- uid: 18843 - type: WindoorMedicalLocked - components: - - rot: 1.5707963267948966 rad - pos: 4.5,68.5 - parent: 0 - type: Transform -- uid: 18844 - type: ClothingBeltMedicalFilled - components: - - pos: 4.464716,66.50776 - parent: 0 - type: Transform -- uid: 18845 - type: ClosetEmergencyFilledRandom - components: - - pos: 19.5,64.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18846 - type: ClosetL3Filled - components: - - pos: 18.5,64.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18847 - type: ClosetFireFilled - components: - - pos: 17.5,64.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18848 - type: SignHead - components: - - pos: 20.5,56.5 - parent: 0 - type: Transform -- uid: 18849 - type: FirelockGlass - components: - - pos: 5.5,69.5 - parent: 0 - type: Transform -- uid: 18850 - type: AirlockMedicalGlassLocked - components: - - pos: 7.5,64.5 - parent: 0 - type: Transform -- uid: 18851 - type: AirlockMedicalGlassLocked - components: - - name: Break Room - type: MetaData - - pos: 14.5,64.5 - parent: 0 - type: Transform -- uid: 18852 - type: AirlockMedicalGlassLocked - components: - - pos: 16.5,67.5 - parent: 0 - type: Transform -- uid: 18853 - type: AirlockMaintMedLocked - components: - - pos: 18.5,69.5 - parent: 0 - type: Transform -- uid: 18854 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -15.5,27.5 - parent: 0 - type: Transform -- uid: 18855 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 5.5,65.5 - parent: 0 - type: Transform -- uid: 18856 - type: LockerWallMedicalFilled - components: - - pos: 7.5,69.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18857 - type: LockerMedicineFilled - components: - - pos: 7.5,70.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18858 - type: LockerMedicineFilled - components: - - pos: 7.5,72.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18859 - type: WardrobeMedicalDoctorFilled - components: - - pos: 4.5,72.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18860 - type: PottedPlant15 - components: - - pos: 5.5,72.5 - parent: 0 - type: Transform -- uid: 18861 - type: Grille - components: - - pos: 4.5,69.5 - parent: 0 - type: Transform -- uid: 18862 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: 4.5,70.5 - parent: 0 - type: Transform -- uid: 18863 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 4.5,65.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18864 - type: Poweredlight - components: - - pos: 6.5,72.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18865 - type: Table - components: - - pos: 18.5,66.5 - parent: 0 - type: Transform -- uid: 18866 - type: Table - components: - - pos: 19.5,66.5 - parent: 0 - type: Transform -- uid: 18867 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 17.5,66.5 - parent: 0 - type: Transform -- uid: 18868 - type: KitchenMicrowave - components: - - pos: 18.5,66.5 - parent: 0 - type: Transform -- uid: 18869 - type: DonkpocketBoxSpawner - components: - - pos: 19.5,66.5 - parent: 0 - type: Transform -- uid: 18870 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 19.5,67.5 - parent: 0 - type: Transform -- uid: 18871 - type: Rack - components: - - pos: 17.5,68.5 - parent: 0 - type: Transform -- uid: 18872 - type: WallSolid - components: - - pos: 11.5,67.5 - parent: 0 - type: Transform -- uid: 18873 - type: WallSolid - components: - - pos: 11.5,68.5 - parent: 0 - type: Transform -- uid: 18874 - type: WallSolid - components: - - pos: 11.5,69.5 - parent: 0 - type: Transform -- uid: 18875 - type: WaterCooler - components: - - pos: 15.5,68.5 - parent: 0 - type: Transform -- uid: 18876 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,68.5 - parent: 0 - type: Transform -- uid: 18877 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,68.5 - parent: 0 - type: Transform -- uid: 18878 - type: WallSolid - components: - - pos: 12.5,69.5 - parent: 0 - type: Transform -- uid: 18879 - type: WallSolid - components: - - pos: 10.5,68.5 - parent: 0 - type: Transform -- uid: 18880 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 10.5,65.5 - parent: 0 - type: Transform -- uid: 18881 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: 11.5,65.5 - parent: 0 - type: Transform -- uid: 18882 - type: Airlock - components: - - pos: 10.5,66.5 - parent: 0 - type: Transform -- uid: 18883 - type: ToiletEmpty - components: - - pos: 10.5,67.5 - parent: 0 - type: Transform -- uid: 18884 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,67.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18885 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 10.5,65.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18886 - type: TableWood - components: - - pos: 12.5,68.5 - parent: 0 - type: Transform -- uid: 18887 - type: TableWood - components: - - pos: 12.5,67.5 - parent: 0 - type: Transform -- uid: 18888 - type: TableWood - components: - - pos: 12.5,66.5 - parent: 0 - type: Transform -- uid: 18889 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 13.5,67.5 - parent: 0 - type: Transform -- uid: 18890 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 13.5,66.5 - parent: 0 - type: Transform -- uid: 18891 - type: DrinkMugOne - components: - - pos: 12.349243,68.623375 - parent: 0 - type: Transform -- uid: 18892 - type: DrinkMugRainbow - components: - - pos: 12.661743,68.529625 - parent: 0 - type: Transform -- uid: 18893 - type: DrinkMugHeart - components: - - pos: 12.380493,68.435875 - parent: 0 - type: Transform -- uid: 18894 - type: DrinkMugBlue - components: - - pos: 12.583618,68.310875 - parent: 0 - type: Transform -- uid: 18895 - type: FoodPizzaMoldySlice - components: - - pos: 12.505493,67.404625 - parent: 0 - type: Transform -- uid: 18896 - type: Paper - components: - - pos: 12.621475,67.105545 - parent: 0 - type: Transform - - content: > - You medical staff have been working so hard decided to throw you a pizza party! - - -Admiral M.Bratton - type: Paper -- uid: 18897 - type: FoodPizzaMoldySlice - components: - - pos: 12.433975,67.355545 - parent: 0 - type: Transform -- uid: 18898 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,66.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18899 - type: Poweredlight - components: - - pos: 19.5,68.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18900 - type: ClothingBeltMedicalFilled - components: - - pos: 17.46724,68.57425 - parent: 0 - type: Transform -- uid: 18901 - type: BoxSyringe - components: - - pos: 17.62349,68.714874 - parent: 0 - type: Transform -- uid: 18902 - type: Table - components: - - pos: 4.5,71.5 - parent: 0 - type: Transform -- uid: 18903 - type: Table - components: - - pos: 6.5,72.5 - parent: 0 - type: Transform -- uid: 18904 - type: BoxSyringe - components: - - pos: 6.475833,72.668 - parent: 0 - type: Transform -- uid: 18905 - type: BoxSterileMask - components: - - pos: 4.460208,71.69925 - parent: 0 - type: Transform -- uid: 18906 - type: WallSolid - components: - - pos: 28.5,35.5 - parent: 0 - type: Transform -- uid: 18907 - type: WallSolid - components: - - pos: 27.5,35.5 - parent: 0 - type: Transform -- uid: 18908 - type: CarpetSBlue - components: - - pos: 26.5,62.5 - parent: 0 - type: Transform -- uid: 18909 - type: CarpetSBlue - components: - - pos: 26.5,63.5 - parent: 0 - type: Transform -- uid: 18910 - type: CarpetSBlue - components: - - pos: 27.5,62.5 - parent: 0 - type: Transform -- uid: 18911 - type: CarpetSBlue - components: - - pos: 27.5,63.5 - parent: 0 - type: Transform -- uid: 18912 - type: Fireplace - components: - - pos: 26.5,64.5 - parent: 0 - type: Transform -- uid: 18913 - type: Bed - components: - - pos: 27.5,63.5 - parent: 0 - type: Transform -- uid: 18914 - type: BedsheetCMO - components: - - pos: 27.5,63.5 - parent: 0 - type: Transform -- uid: 18915 - type: Dresser - components: - - pos: 27.5,64.5 - parent: 0 - type: Transform -- uid: 18916 - type: LockerChiefMedicalOfficerFilled - components: - - pos: 25.5,64.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18917 - type: TableWood - components: - - pos: 27.5,62.5 - parent: 0 - type: Transform -- uid: 18918 - type: MedkitCombatFilled - components: - - pos: 27.429628,62.500965 - parent: 0 - type: Transform -- uid: 18919 - type: Lamp - components: - - rot: -1.5707963267948966 rad - pos: 27.622187,63.11034 - parent: 0 - type: Transform -- uid: 18920 - type: TableReinforcedGlass - components: - - rot: -1.5707963267948966 rad - pos: 23.5,57.5 - parent: 0 - type: Transform -- uid: 18921 - type: TableReinforcedGlass - components: - - rot: -1.5707963267948966 rad - pos: 23.5,58.5 - parent: 0 - type: Transform -- uid: 18922 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,58.5 - parent: 0 - type: Transform -- uid: 18923 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,58.5 - parent: 0 - type: Transform -- uid: 18924 - type: RollerBedSpawnFolded - components: - - pos: 26.510408,60.60737 - parent: 0 - type: Transform -- uid: 18925 - type: ComputerCrewMonitoring - components: - - rot: 3.141592653589793 rad - pos: 24.5,57.5 - parent: 0 - type: Transform -- uid: 18926 - type: ComputerMedicalRecords - components: - - rot: 3.141592653589793 rad - pos: 25.5,57.5 - parent: 0 - type: Transform -- uid: 18927 - type: ComputerStationRecords - components: - - rot: -1.5707963267948966 rad - pos: 26.5,58.5 - parent: 0 - type: Transform -- uid: 18928 - type: TableReinforcedGlass - components: - - rot: -1.5707963267948966 rad - pos: 26.5,57.5 - parent: 0 - type: Transform -- uid: 18929 - type: PottedPlant22 - components: - - pos: 26.5,59.5 - parent: 0 - type: Transform -- uid: 18930 - type: TableReinforcedGlass - components: - - rot: -1.5707963267948966 rad - pos: 23.5,60.5 - parent: 0 - type: Transform -- uid: 18931 - type: filingCabinetDrawerRandom - components: - - pos: 24.5,60.5 - parent: 0 - type: Transform -- uid: 18932 - type: FaxMachineBase - components: - - pos: 23.5,60.5 - parent: 0 - type: Transform - - name: CMO's Office - type: FaxMachine -- uid: 18933 - type: DogBed - components: - - pos: 22.5,57.5 - parent: 0 - type: Transform -- uid: 18934 - type: SpawnMobCatRuntime - components: - - pos: 22.5,57.5 - parent: 0 - type: Transform -- uid: 18935 - type: PottedPlantBioluminscent - components: - - pos: 21.526033,57.185493 - parent: 0 - type: Transform -- uid: 18936 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 23.5,57.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18937 - type: Poweredlight - components: - - pos: 26.5,60.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18938 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 26.5,62.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18939 - type: WallSolid - components: - - pos: 29.5,35.5 - parent: 0 - type: Transform -- uid: 18940 - type: WallSolid - components: - - pos: 30.5,35.5 - parent: 0 - type: Transform -- uid: 18941 - type: WallSolid - components: - - pos: 31.5,35.5 - parent: 0 - type: Transform -- uid: 18942 - type: WallSolid - components: - - pos: 31.5,36.5 - parent: 0 - type: Transform -- uid: 18943 - type: WallSolid - components: - - pos: 32.5,36.5 - parent: 0 - type: Transform -- uid: 18944 - type: WallSolid - components: - - pos: 33.5,36.5 - parent: 0 - type: Transform -- uid: 18945 - type: WallSolid - components: - - pos: 33.5,38.5 - parent: 0 - type: Transform -- uid: 18946 - type: WallSolid - components: - - pos: 36.5,35.5 - parent: 0 - type: Transform -- uid: 18947 - type: WallSolid - components: - - pos: 36.5,36.5 - parent: 0 - type: Transform -- uid: 18948 - type: WallSolid - components: - - pos: 36.5,37.5 - parent: 0 - type: Transform -- uid: 18949 - type: WallSolid - components: - - pos: 36.5,38.5 - parent: 0 - type: Transform -- uid: 18950 - type: WallSolid - components: - - pos: 36.5,39.5 - parent: 0 - type: Transform -- uid: 18951 - type: Window - components: - - pos: 35.5,39.5 - parent: 0 - type: Transform -- uid: 18952 - type: Window - components: - - pos: 34.5,39.5 - parent: 0 - type: Transform -- uid: 18953 - type: WallSolid - components: - - pos: 33.5,39.5 - parent: 0 - type: Transform -- uid: 18954 - type: WallSolid - components: - - pos: 37.5,39.5 - parent: 0 - type: Transform -- uid: 18955 - type: WeldingFuelTankFull - components: - - pos: 52.5,37.5 - parent: 0 - type: Transform -- uid: 18956 - type: WallSolid - components: - - pos: 39.5,39.5 - parent: 0 - type: Transform -- uid: 18957 - type: SpawnPointMedicalDoctor - components: - - pos: 7.5,67.5 - parent: 0 - type: Transform -- uid: 18958 - type: SpawnPointMedicalDoctor - components: - - pos: 7.5,66.5 - parent: 0 - type: Transform -- uid: 18959 - type: SpawnPointMedicalDoctor - components: - - pos: 6.5,67.5 - parent: 0 - type: Transform -- uid: 18960 - type: SpawnPointMedicalDoctor - components: - - pos: 6.5,66.5 - parent: 0 - type: Transform -- uid: 18961 - type: SpawnPointMedicalIntern - components: - - pos: 5.5,66.5 - parent: 0 - type: Transform -- uid: 18962 - type: SpawnPointMedicalIntern - components: - - pos: 5.5,67.5 - parent: 0 - type: Transform -- uid: 18963 - type: Table - components: - - pos: 16.5,-19.5 - parent: 0 - type: Transform -- uid: 18964 - type: Table - components: - - pos: 15.5,-19.5 - parent: 0 - type: Transform -- uid: 18965 - type: BoxFolderBlack - components: - - pos: 15.72732,-19.425295 - parent: 0 - type: Transform -- uid: 18966 - type: Table - components: - - pos: 18.5,-22.5 - parent: 0 - type: Transform -- uid: 18967 - type: ToolboxEmergencyFilled - components: - - pos: 18.54336,-21.54308 - parent: 0 - type: Transform -- uid: 18968 - type: BoxLightMixed - components: - - pos: 18.496485,-22.32433 - parent: 0 - type: Transform -- uid: 18969 - type: Rack - components: - - pos: 19.5,-22.5 - parent: 0 - type: Transform -- uid: 18970 - type: MaintenanceFluffSpawner - components: - - pos: 19.5,-22.5 - parent: 0 - type: Transform -- uid: 18971 - type: CableHV - components: - - pos: 29.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18972 - type: CableHV - components: - - pos: 30.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18973 - type: CableHV - components: - - pos: 31.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18974 - type: CableHV - components: - - pos: 32.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18975 - type: CableHV - components: - - pos: 33.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18976 - type: CableHV - components: - - pos: 34.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18977 - type: CableHV - components: - - pos: 35.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18978 - type: CableHV - components: - - pos: 36.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18979 - type: CableHV - components: - - pos: 37.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18980 - type: CableHV - components: - - pos: 38.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18981 - type: CableHV - components: - - pos: 38.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18982 - type: CableHV - components: - - pos: 38.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18983 - type: CableHV - components: - - pos: 38.5,51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18984 - type: CableHV - components: - - pos: 38.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18985 - type: CableHV - components: - - pos: 38.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18986 - type: CableHV - components: - - pos: 38.5,48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18987 - type: CableHV - components: - - pos: 38.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18988 - type: CableHV - components: - - pos: 38.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18989 - type: CableHV - components: - - pos: 38.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18990 - type: CableHV - components: - - pos: 38.5,44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18991 - type: CableHV - components: - - pos: 38.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18992 - type: CableHV - components: - - pos: 38.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18993 - type: CableHV - components: - - pos: 38.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18994 - type: CableHV - components: - - pos: 38.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18995 - type: CableHV - components: - - pos: 37.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18996 - type: CableHV - components: - - pos: 36.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18997 - type: CableHV - components: - - pos: 35.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18998 - type: CableHV - components: - - pos: 34.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18999 - type: CableHV - components: - - pos: 33.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19000 - type: CableHV - components: - - pos: 32.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19001 - type: CableHV - components: - - pos: 32.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19002 - type: CableHV - components: - - pos: 32.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19003 - type: CableHV - components: - - pos: 32.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19004 - type: CableHV - components: - - pos: 33.5,37.5 - parent: 0 - type: Transform -- uid: 19005 - type: CableHV - components: - - pos: 34.5,37.5 - parent: 0 - type: Transform -- uid: 19006 - type: CableHV - components: - - pos: 34.5,33.5 - parent: 0 - type: Transform -- uid: 19007 - type: CableHV - components: - - pos: 34.5,34.5 - parent: 0 - type: Transform -- uid: 19008 - type: CableHV - components: - - pos: 34.5,35.5 - parent: 0 - type: Transform -- uid: 19009 - type: CableHV - components: - - pos: 34.5,36.5 - parent: 0 - type: Transform -- uid: 19010 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19011 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19012 - type: Poweredlight - components: - - pos: -2.5,46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19013 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19014 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,60.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19015 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,65.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19016 - type: ClothingNeckStethoscope - components: - - pos: 13.544102,59.54396 - parent: 0 - type: Transform -- uid: 19017 - type: Lamp - components: - - pos: 23.481647,57.97695 - parent: 0 - type: Transform -- uid: 19018 - type: DrinkDoctorsDelightGlass - components: - - pos: 26.528522,57.72695 - parent: 0 - type: Transform -- uid: 19019 - type: HandheldCrewMonitor - components: - - pos: 23.528522,58.4457 - parent: 0 - type: Transform -- uid: 19020 - type: ClothingEyesHudMedical - components: - - pos: 4.632101,71.51629 - parent: 0 - type: Transform -- uid: 19021 - type: ClothingEyesHudMedical - components: - - pos: 4.632101,71.51629 - parent: 0 - type: Transform -- uid: 19022 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 11.5,54.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery - type: SurveillanceCamera -- uid: 19023 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 24.5,60.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: CMO Office - type: SurveillanceCamera -- uid: 19024 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: 9.5,63.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: North Med Hall - type: SurveillanceCamera -- uid: 19025 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 0.5,60.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: North Med Lobby - type: SurveillanceCamera -- uid: 19026 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: 2.5,57.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Post Op - type: SurveillanceCamera -- uid: 19027 - type: ClosetL3VirologyFilled - components: - - pos: 27.5,41.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19028 - type: ClosetL3VirologyFilled - components: - - pos: 27.5,40.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19029 - type: ClosetL3VirologyFilled - components: - - pos: 30.5,40.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19030 - type: ClosetL3VirologyFilled - components: - - pos: 30.5,41.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19031 - type: VendingMachineViroDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 30.5,39.5 - parent: 0 - type: Transform -- uid: 19032 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 27.5,39.5 - parent: 0 - type: Transform -- uid: 19033 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 28.5,39.5 - parent: 0 - type: Transform -- uid: 19034 - type: PottedPlant21 - components: - - pos: 27.464727,42.300114 - parent: 0 - type: Transform -- uid: 19035 - type: ClosetBase - components: - - pos: 27.5,46.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19036 - type: Bed - components: - - pos: 29.5,46.5 - parent: 0 - type: Transform -- uid: 19037 - type: BedsheetGreen - components: - - rot: 1.5707963267948966 rad - pos: 29.5,46.5 - parent: 0 - type: Transform -- uid: 19038 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 30.5,46.5 - parent: 0 - type: Transform -- uid: 19039 - type: HospitalCurtainsOpen - components: - - pos: 29.5,46.5 - parent: 0 - type: Transform -- uid: 19040 - type: HospitalCurtainsOpen - components: - - pos: 28.5,46.5 - parent: 0 - type: Transform -- uid: 19041 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 30.5,42.5 - parent: 0 - type: Transform -- uid: 19042 - type: DisposalBend - components: - - pos: 30.5,43.5 - parent: 0 - type: Transform -- uid: 19043 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,43.5 - parent: 0 - type: Transform -- uid: 19044 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,43.5 - parent: 0 - type: Transform -- uid: 19045 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,43.5 - parent: 0 - type: Transform -- uid: 19046 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,43.5 - parent: 0 - type: Transform -- uid: 19047 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,43.5 - parent: 0 - type: Transform -- uid: 19048 - type: DisposalUnit - components: - - pos: 30.5,42.5 - parent: 0 - type: Transform -- uid: 19049 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: 30.5,46.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Viro Entrance - type: SurveillanceCamera -- uid: 19050 - type: ClothingNeckStethoscope - components: - - pos: 30.506731,46.580627 - parent: 0 - type: Transform -- uid: 19051 - type: BoxSyringe - components: - - pos: 27.631731,39.651012 - parent: 0 - type: Transform -- uid: 19052 - type: ReinforcedWindow - components: - - pos: 33.5,53.5 - parent: 0 - type: Transform -- uid: 19053 - type: ReinforcedWindow - components: - - pos: 32.5,53.5 - parent: 0 - type: Transform -- uid: 19054 - type: ReinforcedWindow - components: - - pos: 35.5,51.5 - parent: 0 - type: Transform -- uid: 19055 - type: ReinforcedWindow - components: - - pos: 36.5,51.5 - parent: 0 - type: Transform -- uid: 19056 - type: ReinforcedWindow - components: - - pos: 37.5,52.5 - parent: 0 - type: Transform -- uid: 19057 - type: ReinforcedWindow - components: - - pos: 35.5,53.5 - parent: 0 - type: Transform -- uid: 19058 - type: ReinforcedWindow - components: - - pos: 36.5,53.5 - parent: 0 - type: Transform -- uid: 19059 - type: Grille - components: - - pos: 32.5,51.5 - parent: 0 - type: Transform -- uid: 19060 - type: Grille - components: - - pos: 33.5,51.5 - parent: 0 - type: Transform -- uid: 19061 - type: Grille - components: - - pos: 35.5,51.5 - parent: 0 - type: Transform -- uid: 19062 - type: Grille - components: - - pos: 36.5,51.5 - parent: 0 - type: Transform -- uid: 19063 - type: Grille - components: - - pos: 37.5,52.5 - parent: 0 - type: Transform -- uid: 19064 - type: Grille - components: - - pos: 36.5,53.5 - parent: 0 - type: Transform -- uid: 19065 - type: Grille - components: - - pos: 35.5,53.5 - parent: 0 - type: Transform -- uid: 19066 - type: Grille - components: - - pos: 33.5,53.5 - parent: 0 - type: Transform -- uid: 19067 - type: Grille - components: - - pos: 32.5,53.5 - parent: 0 - type: Transform -- uid: 19068 - type: AirlockVirologyGlassLocked - components: - - pos: 33.5,47.5 - parent: 0 - type: Transform -- uid: 19069 - type: AirlockVirologyGlassLocked - components: - - pos: 35.5,47.5 - parent: 0 - type: Transform -- uid: 19070 - type: MedicalBed - components: - - pos: 36.5,48.5 - parent: 0 - type: Transform -- uid: 19071 - type: MedicalBed - components: - - pos: 32.5,48.5 - parent: 0 - type: Transform -- uid: 19072 - type: Grille - components: - - pos: 34.5,48.5 - parent: 0 - type: Transform -- uid: 19073 - type: Grille - components: - - pos: 34.5,49.5 - parent: 0 - type: Transform -- uid: 19074 - type: Grille - components: - - pos: 34.5,50.5 - parent: 0 - type: Transform -- uid: 19075 - type: MedicalBed - components: - - pos: 36.5,50.5 - parent: 0 - type: Transform -- uid: 19076 - type: MedicalBed - components: - - pos: 32.5,50.5 - parent: 0 - type: Transform -- uid: 19077 - type: BedsheetGreen - components: - - pos: 32.5,48.5 - parent: 0 - type: Transform -- uid: 19078 - type: BedsheetGreen - components: - - pos: 32.5,50.5 - parent: 0 - type: Transform -- uid: 19079 - type: BedsheetGreen - components: - - pos: 36.5,50.5 - parent: 0 - type: Transform -- uid: 19080 - type: BedsheetGreen - components: - - pos: 36.5,48.5 - parent: 0 - type: Transform -- uid: 19081 - type: TableReinforcedGlass - components: - - pos: 35.5,50.5 - parent: 0 - type: Transform -- uid: 19082 - type: TableReinforcedGlass - components: - - pos: 33.5,50.5 - parent: 0 - type: Transform -- uid: 19083 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,49.5 - parent: 0 - type: Transform -- uid: 19084 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 35.5,49.5 - parent: 0 - type: Transform -- uid: 19085 - type: TableReinforcedGlass - components: - - pos: 36.5,42.5 - parent: 0 - type: Transform -- uid: 19086 - type: TableReinforcedGlass - components: - - pos: 36.5,43.5 - parent: 0 - type: Transform -- uid: 19087 - type: TableReinforcedGlass - components: - - pos: 36.5,44.5 - parent: 0 - type: Transform -- uid: 19088 - type: TableReinforcedGlass - components: - - pos: 35.5,42.5 - parent: 0 - type: Transform -- uid: 19089 - type: Vaccinator - components: - - pos: 33.5,42.5 - parent: 0 - type: Transform -- uid: 19090 - type: DiseaseDiagnoser - components: - - pos: 34.5,42.5 - parent: 0 - type: Transform -- uid: 19091 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,43.5 - parent: 0 - type: Transform -- uid: 19092 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: 32.5,42.5 - parent: 0 - type: Transform -- uid: 19093 - type: PottedPlant21 - components: - - pos: 32.5,46.5 - parent: 0 - type: Transform -- uid: 19094 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 36.5,46.5 - parent: 0 - type: Transform -- uid: 19095 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: 36.5,45.5 - parent: 0 - type: Transform -- uid: 19096 - type: SignBio - components: - - pos: 31.5,42.5 - parent: 0 - type: Transform -- uid: 19097 - type: SignBiohazardMed - components: - - pos: 31.5,46.5 - parent: 0 - type: Transform -- uid: 19098 - type: KitchenReagentGrinder - components: - - pos: 36.5,44.5 - parent: 0 - type: Transform -- uid: 19099 - type: BoxSyringe - components: - - pos: 36.412937,42.899014 - parent: 0 - type: Transform -- uid: 19100 - type: BoxMouthSwab - components: - - pos: 36.225437,42.69589 - parent: 0 - type: Transform -- uid: 19101 - type: ClothingHandsGlovesNitrile - components: - - pos: 35.553562,42.53964 - parent: 0 - type: Transform -- uid: 19102 - type: ClothingHeadHatAnimalHeadslime - components: - - pos: 35.554256,50.675514 - parent: 0 - type: Transform -- uid: 19103 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,49.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19104 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,49.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19105 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,44.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19106 - type: BedsheetGreen - components: - - rot: 3.141592653589793 rad - pos: 28.5,46.5 - parent: 0 - type: Transform -- uid: 19107 - type: SignDirectionalLibrary - components: - - rot: 3.141592653589793 rad - pos: -2.499115,43.68663 - parent: 0 - type: Transform -- uid: 19108 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 29.5,39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19109 - type: SignDirectionalChapel - components: - - rot: 3.141592653589793 rad - pos: -2.499115,43.296005 - parent: 0 - type: Transform -- uid: 19110 - type: SignDirectionalFood - components: - - pos: -2.499115,43.108505 - parent: 0 - type: Transform -- uid: 19111 - type: SignDirectionalBar - components: - - rot: -1.5707963267948966 rad - pos: 1.4958932,13.951328 - parent: 0 - type: Transform -- uid: 19112 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 1.5106124,31.796837 - parent: 0 - type: Transform -- uid: 19113 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: 1.5106125,31.592745 - parent: 0 - type: Transform -- uid: 19114 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: 1.5106125,31.405245 - parent: 0 - type: Transform -- uid: 19115 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: 1.5106125,31.217745 - parent: 0 - type: Transform -- uid: 19116 - type: SignDirectionalSupply - components: - - pos: 1.5,35.5 - parent: 0 - type: Transform -- uid: 19117 - type: SignDirectionalFood - components: - - pos: 1.5074446,35.305725 - parent: 0 - type: Transform -- uid: 19118 - type: SignDirectionalSci - components: - - pos: 1.5074447,35.69635 - parent: 0 - type: Transform -- uid: 19119 - type: SignDirectionalSupply - components: - - pos: -3.479002,-2.4458632 - parent: 0 - type: Transform -- uid: 19120 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: -3.479002,-2.6489882 - parent: 0 - type: Transform -- uid: 19121 - type: SignDirectionalMed - components: - - rot: 3.141592653589793 rad - pos: -3.4807405,-2.8384223 - parent: 0 - type: Transform -- uid: 19122 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 22.512474,-3.1814547 - parent: 0 - type: Transform -- uid: 19123 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: 22.512474,-3.3689547 - parent: 0 - type: Transform -- uid: 19124 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: 22.512474,-3.5720797 - parent: 0 - type: Transform -- uid: 19125 - type: SignDirectionalMed - components: - - rot: -1.5707963267948966 rad - pos: 22.512474,-3.7752047 - parent: 0 - type: Transform -- uid: 19126 - type: SignDirectionalSci - components: - - pos: 40.5,-3.5 - parent: 0 - type: Transform -- uid: 19127 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-14.5 - parent: 0 - type: Transform -- uid: 19128 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: 26.496012,-14.27608 - parent: 0 - type: Transform -- uid: 19129 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: 40.499527,-3.3038204 - parent: 0 - type: Transform -- uid: 19130 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-8.5 - parent: 0 - type: Transform -- uid: 19131 - type: SignSecureMed - components: - - rot: 1.5707963267948966 rad - pos: 53.5,1.5 - parent: 0 - type: Transform -- uid: 19132 - type: SignSecureMed - components: - - rot: 1.5707963267948966 rad - pos: 46.5,0.5 - parent: 0 - type: Transform -- uid: 19133 - type: SignSecureMed - components: - - rot: 1.5707963267948966 rad - pos: 42.5,0.5 - parent: 0 - type: Transform -- uid: 19134 - type: SignDirectionalSci - components: - - rot: -1.5707963267948966 rad - pos: 52.5,0.5 - parent: 0 - type: Transform -- uid: 19135 - type: SignDirectionalEng - components: - - pos: 52.504635,0.31227303 - parent: 0 - type: Transform -- uid: 19136 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: 52.50464,0.687273 - parent: 0 - type: Transform -- uid: 19137 - type: SignDirectionalMed - components: - - rot: 3.141592653589793 rad - pos: 52.50464,0.874773 - parent: 0 - type: Transform -- uid: 19138 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: 2.5193849,-2.6812243 - parent: 0 - type: Transform -- uid: 19139 - type: SpawnVehicleATV - components: - - pos: 6.5,50.5 - parent: 0 - type: Transform -- uid: 19140 - type: VehicleKeyATV - components: - - pos: 7.420335,50.627213 - parent: 0 - type: Transform -- uid: 19141 - type: TableReinforced - components: - - pos: 5.5,50.5 - parent: 0 - type: Transform -- uid: 19142 - type: TableReinforced - components: - - pos: 4.5,50.5 - parent: 0 - type: Transform -- uid: 19143 - type: ClothingOuterWinterPara - components: - - pos: 4.857835,50.580338 - parent: 0 - type: Transform -- uid: 19144 - type: ClothingUniformJumpsuitParamedic - components: - - pos: 5.6859603,50.689713 - parent: 0 - type: Transform -- uid: 19145 - type: ClothingUniformJumpskirtParamedic - components: - - pos: 5.5609603,50.689713 - parent: 0 - type: Transform -- uid: 19146 - type: EmergencyRollerBedSpawnFolded - components: - - pos: 3.420335,50.564713 - parent: 0 - type: Transform -- uid: 19147 - type: HandheldCrewMonitor - components: - - pos: 7.529708,47.611584 - parent: 0 - type: Transform -- uid: 19148 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 5.5,47.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19149 - type: UnfinishedMachineFrame - components: - - pos: 6.5,47.5 - parent: 0 - type: Transform -- uid: 19150 - type: DisposalPipe - components: - - pos: -0.5,48.5 - parent: 0 - type: Transform -- uid: 19151 - type: DisposalPipe - components: - - pos: -0.5,47.5 - parent: 0 - type: Transform -- uid: 19152 - type: SpawnPointMedicalDoctor - components: - - pos: 5.5,71.5 - parent: 0 - type: Transform -- uid: 19153 - type: SpawnPointMedicalDoctor - components: - - pos: 6.5,71.5 - parent: 0 - type: Transform -- uid: 19154 - type: SpawnPointChiefMedicalOfficer - components: - - pos: 26.5,63.5 - parent: 0 - type: Transform -- uid: 19155 - type: SpawnPointChemist - components: - - pos: 23.5,37.5 - parent: 0 - type: Transform -- uid: 19156 - type: SpawnPointChemist - components: - - pos: 22.5,37.5 - parent: 0 - type: Transform -- uid: 19157 - type: SpawnPointChemist - components: - - pos: 24.5,37.5 - parent: 0 - type: Transform -- uid: 19158 - type: TableReinforced - components: - - pos: -21.5,73.5 - parent: 0 - type: Transform -- uid: 19159 - type: VendingMachineSec - components: - - flags: SessionSpecific - type: MetaData - - pos: 33.5,16.5 - parent: 0 - type: Transform -- uid: 19160 - type: LockerSecurityFilled - components: - - pos: 33.5,17.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19161 - type: FaxMachineBase - components: - - pos: -14.5,35.5 - parent: 0 - type: Transform - - name: Service - type: FaxMachine -- uid: 19162 - type: filingCabinetTallRandom - components: - - pos: 11.5,-14.5 - parent: 0 - type: Transform -- uid: 19163 - type: AirlockExternalGlassLocked - components: - - pos: 22.5,-50.5 - parent: 0 - type: Transform -- uid: 19164 - type: AirlockExternalGlassLocked - components: - - pos: 22.5,-49.5 - parent: 0 - type: Transform -- uid: 19165 - type: AirlockExternalGlassLocked - components: - - pos: 20.5,-50.5 - parent: 0 - type: Transform -- uid: 19166 - type: AirlockExternalGlassLocked - components: - - pos: 20.5,-49.5 - parent: 0 - type: Transform -- uid: 19167 - type: WallSolidRust - components: - - pos: 32.5,-44.5 - parent: 0 - type: Transform -- uid: 19168 - type: WallSolid - components: - - pos: 27.5,-45.5 - parent: 0 - type: Transform -- uid: 19169 - type: WallSolid - components: - - pos: 28.5,-45.5 - parent: 0 - type: Transform -- uid: 19170 - type: WallSolid - components: - - pos: 28.5,-44.5 - parent: 0 - type: Transform -- uid: 19171 - type: WallSolid - components: - - pos: 29.5,-44.5 - parent: 0 - type: Transform -- uid: 19172 - type: WallSolid - components: - - pos: 30.5,-44.5 - parent: 0 - type: Transform -- uid: 19173 - type: WallSolid - components: - - pos: 31.5,-44.5 - parent: 0 - type: Transform -- uid: 19174 - type: WallSolidRust - components: - - pos: 26.5,-45.5 - parent: 0 - type: Transform -- uid: 19175 - type: WallSolid - components: - - pos: 26.5,-46.5 - parent: 0 - type: Transform -- uid: 19176 - type: WallSolid - components: - - pos: 26.5,-48.5 - parent: 0 - type: Transform -- uid: 19177 - type: WallSolid - components: - - pos: 26.5,-51.5 - parent: 0 - type: Transform -- uid: 19178 - type: WallSolid - components: - - pos: 26.5,-50.5 - parent: 0 - type: Transform -- uid: 19179 - type: WallReinforced - components: - - pos: 32.5,-52.5 - parent: 0 - type: Transform -- uid: 19180 - type: Table - components: - - pos: 32.5,-46.5 - parent: 0 - type: Transform -- uid: 19181 - type: WallReinforced - components: - - pos: 33.5,-45.5 - parent: 0 - type: Transform -- uid: 19182 - type: WallReinforced - components: - - pos: 33.5,-46.5 - parent: 0 - type: Transform -- uid: 19183 - type: WallReinforced - components: - - pos: 33.5,-47.5 - parent: 0 - type: Transform -- uid: 19184 - type: WallReinforced - components: - - pos: 33.5,-48.5 - parent: 0 - type: Transform -- uid: 19185 - type: WallReinforced - components: - - pos: 33.5,-49.5 - parent: 0 - type: Transform -- uid: 19186 - type: TableWood - components: - - pos: 31.5,-50.5 - parent: 0 - type: Transform -- uid: 19187 - type: WallReinforced - components: - - pos: 33.5,-52.5 - parent: 0 - type: Transform -- uid: 19188 - type: WallReinforced - components: - - pos: 41.5,-48.5 - parent: 0 - type: Transform -- uid: 19189 - type: WallReinforced - components: - - pos: 41.5,-49.5 - parent: 0 - type: Transform -- uid: 19190 - type: WallReinforced - components: - - pos: 41.5,-51.5 - parent: 0 - type: Transform -- uid: 19191 - type: WallReinforced - components: - - pos: 42.5,-48.5 - parent: 0 - type: Transform -- uid: 19192 - type: WallReinforced - components: - - pos: 44.5,-48.5 - parent: 0 - type: Transform -- uid: 19193 - type: WallReinforced - components: - - pos: 45.5,-48.5 - parent: 0 - type: Transform -- uid: 19194 - type: WallReinforced - components: - - pos: 45.5,-49.5 - parent: 0 - type: Transform -- uid: 19195 - type: WallReinforced - components: - - pos: 46.5,-48.5 - parent: 0 - type: Transform -- uid: 19196 - type: WallReinforced - components: - - pos: 41.5,-52.5 - parent: 0 - type: Transform -- uid: 19197 - type: WallReinforced - components: - - pos: 42.5,-52.5 - parent: 0 - type: Transform -- uid: 19198 - type: WallReinforced - components: - - pos: 43.5,-52.5 - parent: 0 - type: Transform -- uid: 19199 - type: WallReinforced - components: - - pos: 44.5,-52.5 - parent: 0 - type: Transform -- uid: 19200 - type: WallReinforced - components: - - pos: 45.5,-52.5 - parent: 0 - type: Transform -- uid: 19201 - type: WallReinforced - components: - - pos: 45.5,-51.5 - parent: 0 - type: Transform -- uid: 19202 - type: WallReinforced - components: - - pos: 40.5,-52.5 - parent: 0 - type: Transform -- uid: 19203 - type: WallReinforced - components: - - pos: 39.5,-52.5 - parent: 0 - type: Transform -- uid: 19204 - type: WallReinforced - components: - - pos: 38.5,-52.5 - parent: 0 - type: Transform -- uid: 19205 - type: WallReinforced - components: - - pos: 37.5,-52.5 - parent: 0 - type: Transform -- uid: 19206 - type: WallReinforced - components: - - pos: 36.5,-52.5 - parent: 0 - type: Transform -- uid: 19207 - type: WallReinforced - components: - - pos: 35.5,-52.5 - parent: 0 - type: Transform -- uid: 19208 - type: WallReinforced - components: - - pos: 34.5,-52.5 - parent: 0 - type: Transform -- uid: 19209 - type: SpawnMobPossumMorty - components: - - pos: 6.5,39.5 - parent: 0 - type: Transform -- uid: 19210 - type: SpawnPointAssistant - components: - - pos: 6.5,24.5 - parent: 0 - type: Transform -- uid: 19211 - type: SpawnPointAssistant - components: - - pos: 6.5,25.5 - parent: 0 - type: Transform -- uid: 19212 - type: SpawnPointAssistant - components: - - pos: 6.5,26.5 - parent: 0 - type: Transform -- uid: 19213 - type: SpawnPointAssistant - components: - - pos: 6.5,27.5 - parent: 0 - type: Transform -- uid: 19214 - type: SpawnPointAssistant - components: - - pos: 3.5,24.5 - parent: 0 - type: Transform -- uid: 19215 - type: SpawnPointAssistant - components: - - pos: 3.5,27.5 - parent: 0 - type: Transform -- uid: 19216 - type: SpawnPointAssistant - components: - - pos: 4.5,25.5 - parent: 0 - type: Transform -- uid: 19217 - type: SpawnPointAssistant - components: - - pos: 4.5,26.5 - parent: 0 - type: Transform -- uid: 19218 - type: WallReinforced - components: - - pos: 33.5,-50.5 - parent: 0 - type: Transform -- uid: 19219 - type: TableWood - components: - - pos: 32.5,-50.5 - parent: 0 - type: Transform -- uid: 19220 - type: ReinforcedWindow - components: - - pos: 33.5,-51.5 - parent: 0 - type: Transform -- uid: 19221 - type: WindowReinforcedDirectional - components: - - pos: 29.5,-45.5 - parent: 0 - type: Transform -- uid: 19222 - type: WindowReinforcedDirectional - components: - - pos: 30.5,-45.5 - parent: 0 - type: Transform -- uid: 19223 - type: WindowReinforcedDirectional - components: - - pos: 31.5,-45.5 - parent: 0 - type: Transform -- uid: 19224 - type: WindowReinforcedDirectional - components: - - pos: 32.5,-45.5 - parent: 0 - type: Transform -- uid: 19225 - type: WindowReinforcedDirectional - components: - - pos: 29.5,-53.5 - parent: 0 - type: Transform -- uid: 19226 - type: WindowReinforcedDirectional - components: - - pos: 30.5,-53.5 - parent: 0 - type: Transform -- uid: 19227 - type: Grille - components: - - pos: 21.5,-48.5 - parent: 0 - type: Transform -- uid: 19228 - type: Grille - components: - - pos: 22.5,-45.5 - parent: 0 - type: Transform -- uid: 19229 - type: Grille - components: - - pos: 22.5,-44.5 - parent: 0 - type: Transform -- uid: 19230 - type: Grille - components: - - pos: 28.5,-61.5 - parent: 0 - type: Transform -- uid: 19231 - type: Grille - components: - - pos: 28.5,-59.5 - parent: 0 - type: Transform -- uid: 19232 - type: Grille - components: - - pos: 30.5,-59.5 - parent: 0 - type: Transform -- uid: 19233 - type: Grille - components: - - pos: 24.5,-61.5 - parent: 0 - type: Transform -- uid: 19234 - type: Grille - components: - - pos: 24.5,-59.5 - parent: 0 - type: Transform -- uid: 19235 - type: Grille - components: - - pos: 22.5,-57.5 - parent: 0 - type: Transform -- uid: 19236 - type: Grille - components: - - pos: 22.5,-55.5 - parent: 0 - type: Transform -- uid: 19237 - type: Grille - components: - - pos: 23.5,-54.5 - parent: 0 - type: Transform -- uid: 19238 - type: Grille - components: - - pos: 25.5,-54.5 - parent: 0 - type: Transform -- uid: 19239 - type: Grille - components: - - pos: 22.5,-52.5 - parent: 0 - type: Transform -- uid: 19240 - type: Grille - components: - - pos: 30.5,-52.5 - parent: 0 - type: Transform -- uid: 19241 - type: Grille - components: - - pos: 29.5,-52.5 - parent: 0 - type: Transform -- uid: 19242 - type: WallSolid - components: - - pos: 31.5,-51.5 - parent: 0 - type: Transform -- uid: 19243 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 32.5,-51.5 - parent: 0 - type: Transform -- uid: 19244 - type: Grille - components: - - pos: 33.5,-51.5 - parent: 0 - type: Transform -- uid: 19245 - type: Grille - components: - - pos: 37.5,-44.5 - parent: 0 - type: Transform -- uid: 19246 - type: Grille - components: - - pos: 39.5,-44.5 - parent: 0 - type: Transform -- uid: 19247 - type: Grille - components: - - pos: 26.5,-47.5 - parent: 0 - type: Transform -- uid: 19248 - type: ReinforcedWindow - components: - - pos: 26.5,-47.5 - parent: 0 - type: Transform -- uid: 19249 - type: LockerScienceFilled - components: - - pos: 27.5,-51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19250 - type: LockerScienceFilled - components: - - pos: 28.5,-51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19251 - type: LockerScienceFilled - components: - - pos: 29.5,-51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19252 - type: LockerScienceFilled - components: - - pos: 30.5,-51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19253 - type: Table - components: - - pos: 30.5,-54.5 - parent: 0 - type: Transform -- uid: 19254 - type: Table - components: - - pos: 29.5,-54.5 - parent: 0 - type: Transform -- uid: 19255 - type: AirlockScienceLocked - components: - - pos: 24.5,-54.5 - parent: 0 - type: Transform -- uid: 19256 - type: AirlockScienceLocked - components: - - pos: 26.5,-49.5 - parent: 0 - type: Transform -- uid: 19257 - type: ClothingMaskJoy - components: - - pos: 27.493383,-53.459614 - parent: 0 - type: Transform -- uid: 19258 - type: APCBasic - components: - - pos: 28.5,-45.5 - parent: 0 - type: Transform -- uid: 19259 - type: APCBasic - components: - - pos: 26.5,-54.5 - parent: 0 - type: Transform -- uid: 19260 - type: CableMV - components: - - pos: 26.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19261 - type: CableMV - components: - - pos: 26.5,-55.5 - parent: 0 - type: Transform -- uid: 19262 - type: CableMV - components: - - pos: 25.5,-55.5 - parent: 0 - type: Transform -- uid: 19263 - type: CableMV - components: - - pos: 24.5,-55.5 - parent: 0 - type: Transform -- uid: 19264 - type: CableMV - components: - - pos: 24.5,-54.5 - parent: 0 - type: Transform -- uid: 19265 - type: CableMV - components: - - pos: 24.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19266 - type: CableMV - components: - - pos: 24.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19267 - type: CableMV - components: - - pos: 24.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19268 - type: CableMV - components: - - pos: 24.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19269 - type: CableMV - components: - - pos: 24.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19270 - type: CableMV - components: - - pos: 24.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19271 - type: CableMV - components: - - pos: 24.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19272 - type: CableMV - components: - - pos: 24.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19273 - type: CableMV - components: - - pos: 24.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19274 - type: CableMV - components: - - pos: 24.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19275 - type: CableMV - components: - - pos: 24.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19276 - type: CableMV - components: - - pos: 25.5,-49.5 - parent: 0 - type: Transform -- uid: 19277 - type: CableMV - components: - - pos: 26.5,-49.5 - parent: 0 - type: Transform -- uid: 19278 - type: CableMV - components: - - pos: 27.5,-49.5 - parent: 0 - type: Transform -- uid: 19279 - type: CableMV - components: - - pos: 28.5,-49.5 - parent: 0 - type: Transform -- uid: 19280 - type: CableMV - components: - - pos: 28.5,-48.5 - parent: 0 - type: Transform -- uid: 19281 - type: CableMV - components: - - pos: 28.5,-47.5 - parent: 0 - type: Transform -- uid: 19282 - type: CableMV - components: - - pos: 28.5,-46.5 - parent: 0 - type: Transform -- uid: 19283 - type: CableMV - components: - - pos: 28.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19284 - type: CableApcExtension - components: - - pos: 28.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19285 - type: CableApcExtension - components: - - pos: 28.5,-46.5 - parent: 0 - type: Transform -- uid: 19286 - type: CableApcExtension - components: - - pos: 28.5,-47.5 - parent: 0 - type: Transform -- uid: 19287 - type: CableApcExtension - components: - - pos: 28.5,-48.5 - parent: 0 - type: Transform -- uid: 19288 - type: CableApcExtension - components: - - pos: 28.5,-49.5 - parent: 0 - type: Transform -- uid: 19289 - type: CableApcExtension - components: - - pos: 28.5,-50.5 - parent: 0 - type: Transform -- uid: 19290 - type: CableApcExtension - components: - - pos: 29.5,-48.5 - parent: 0 - type: Transform -- uid: 19291 - type: CableApcExtension - components: - - pos: 30.5,-48.5 - parent: 0 - type: Transform -- uid: 19292 - type: CableApcExtension - components: - - pos: 31.5,-48.5 - parent: 0 - type: Transform -- uid: 19293 - type: CableApcExtension - components: - - pos: 32.5,-48.5 - parent: 0 - type: Transform -- uid: 19294 - type: CableApcExtension - components: - - pos: 32.5,-47.5 - parent: 0 - type: Transform -- uid: 19295 - type: CableApcExtension - components: - - pos: 32.5,-49.5 - parent: 0 - type: Transform -- uid: 19296 - type: CableApcExtension - components: - - pos: 26.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19297 - type: CableApcExtension - components: - - pos: 26.5,-55.5 - parent: 0 - type: Transform -- uid: 19298 - type: CableApcExtension - components: - - pos: 26.5,-56.5 - parent: 0 - type: Transform -- uid: 19299 - type: CableApcExtension - components: - - pos: 26.5,-57.5 - parent: 0 - type: Transform -- uid: 19300 - type: CableApcExtension - components: - - pos: 26.5,-58.5 - parent: 0 - type: Transform -- uid: 19301 - type: CableApcExtension - components: - - pos: 27.5,-58.5 - parent: 0 - type: Transform -- uid: 19302 - type: CableApcExtension - components: - - pos: 27.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19303 - type: CableApcExtension - components: - - pos: 27.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19304 - type: CableApcExtension - components: - - pos: 25.5,-58.5 - parent: 0 - type: Transform -- uid: 19305 - type: CableApcExtension - components: - - pos: 25.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19306 - type: CableApcExtension - components: - - pos: 25.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19307 - type: CableApcExtension - components: - - pos: 25.5,-56.5 - parent: 0 - type: Transform -- uid: 19308 - type: CableApcExtension - components: - - pos: 24.5,-56.5 - parent: 0 - type: Transform -- uid: 19309 - type: CableApcExtension - components: - - pos: 23.5,-56.5 - parent: 0 - type: Transform -- uid: 19310 - type: CableApcExtension - components: - - pos: 27.5,-56.5 - parent: 0 - type: Transform -- uid: 19311 - type: CableApcExtension - components: - - pos: 28.5,-56.5 - parent: 0 - type: Transform -- uid: 19312 - type: CableApcExtension - components: - - pos: 29.5,-56.5 - parent: 0 - type: Transform -- uid: 19313 - type: CableApcExtension - components: - - pos: 30.5,-56.5 - parent: 0 - type: Transform -- uid: 19314 - type: CableApcExtension - components: - - pos: 30.5,-55.5 - parent: 0 - type: Transform -- uid: 19315 - type: CableApcExtension - components: - - pos: 30.5,-54.5 - parent: 0 - type: Transform -- uid: 19316 - type: APCBasic - components: - - pos: 26.5,-40.5 - parent: 0 - type: Transform -- uid: 19317 - type: CableMV - components: - - pos: 26.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19318 - type: CableMV - components: - - pos: 26.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19319 - type: CableApcExtension - components: - - pos: 26.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19320 - type: CableApcExtension - components: - - pos: 26.5,-41.5 - parent: 0 - type: Transform -- uid: 19321 - type: CableApcExtension - components: - - pos: 26.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19322 - type: CableApcExtension - components: - - pos: 25.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19323 - type: CableApcExtension - components: - - pos: 24.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19324 - type: CableApcExtension - components: - - pos: 24.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19325 - type: CableApcExtension - components: - - pos: 24.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19326 - type: CableApcExtension - components: - - pos: 24.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19327 - type: CableApcExtension - components: - - pos: 24.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19328 - type: CableApcExtension - components: - - pos: 24.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19329 - type: CableApcExtension - components: - - pos: 24.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19330 - type: CableApcExtension - components: - - pos: 24.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19331 - type: CableApcExtension - components: - - pos: 24.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19332 - type: CableApcExtension - components: - - pos: 24.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19333 - type: CableApcExtension - components: - - pos: 24.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19334 - type: CableApcExtension - components: - - pos: 24.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19335 - type: CableApcExtension - components: - - pos: 23.5,-50.5 - parent: 0 - type: Transform -- uid: 19336 - type: CableApcExtension - components: - - pos: 22.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19337 - type: CableApcExtension - components: - - pos: 21.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19338 - type: CableApcExtension - components: - - pos: 27.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19339 - type: CableApcExtension - components: - - pos: 28.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19340 - type: CableApcExtension - components: - - pos: 29.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19341 - type: CableApcExtension - components: - - pos: 30.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19342 - type: CableApcExtension - components: - - pos: 31.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19343 - type: CableApcExtension - components: - - pos: 32.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19344 - type: CableApcExtension - components: - - pos: 33.5,-42.5 - parent: 0 - type: Transform -- uid: 19345 - type: CableApcExtension - components: - - pos: 34.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19346 - type: CableApcExtension - components: - - pos: 35.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19347 - type: CableApcExtension - components: - - pos: 36.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19348 - type: CableApcExtension - components: - - pos: 37.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19349 - type: CableApcExtension - components: - - pos: 38.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19350 - type: CableApcExtension - components: - - pos: 39.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19351 - type: CableApcExtension - components: - - pos: 40.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19352 - type: CableApcExtension - components: - - pos: 41.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19353 - type: CableApcExtension - components: - - pos: 42.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19354 - type: CableApcExtension - components: - - pos: 43.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19355 - type: CableApcExtension - components: - - pos: 43.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19356 - type: CableApcExtension - components: - - pos: 43.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19357 - type: CableApcExtension - components: - - pos: 43.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19358 - type: CableApcExtension - components: - - pos: 43.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19359 - type: Table - components: - - pos: 31.5,-46.5 - parent: 0 - type: Transform -- uid: 19360 - type: Rack - components: - - pos: 30.5,-46.5 - parent: 0 - type: Transform -- uid: 19361 - type: ComfyChair - components: - - pos: 32.5,-49.5 - parent: 0 - type: Transform -- uid: 19362 - type: CableApcExtension - components: - - pos: 44.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19363 - type: CableApcExtension - components: - - pos: 45.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19364 - type: CableApcExtension - components: - - pos: 45.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19365 - type: ToolboxMechanicalFilled - components: - - pos: 32.48784,-46.330917 - parent: 0 - type: Transform -- uid: 19366 - type: Poweredlight - components: - - pos: 28.5,-46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19367 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19368 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19369 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-47.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19370 - type: DisposalUnit - components: - - pos: 23.5,-47.5 - parent: 0 - type: Transform -- uid: 19371 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-47.5 - parent: 0 - type: Transform -- uid: 19372 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-47.5 - parent: 0 - type: Transform -- uid: 19373 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-42.5 - parent: 0 - type: Transform -- uid: 19374 - type: DisposalUnit - components: - - pos: 40.5,-45.5 - parent: 0 - type: Transform -- uid: 19375 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 38.5,-41.5 - parent: 0 - type: Transform -- uid: 19376 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 38.5,-40.5 - parent: 0 - type: Transform -- uid: 19377 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 38.5,-39.5 - parent: 0 - type: Transform -- uid: 19378 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-42.5 - parent: 0 - type: Transform -- uid: 19379 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-42.5 - parent: 0 - type: Transform -- uid: 19380 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-42.5 - parent: 0 - type: Transform -- uid: 19381 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-42.5 - parent: 0 - type: Transform -- uid: 19382 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-42.5 - parent: 0 - type: Transform -- uid: 19383 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-42.5 - parent: 0 - type: Transform -- uid: 19384 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-42.5 - parent: 0 - type: Transform -- uid: 19385 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-42.5 - parent: 0 - type: Transform -- uid: 19386 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-42.5 - parent: 0 - type: Transform -- uid: 19387 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-42.5 - parent: 0 - type: Transform -- uid: 19388 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-42.5 - parent: 0 - type: Transform -- uid: 19389 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-42.5 - parent: 0 - type: Transform -- uid: 19390 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-42.5 - parent: 0 - type: Transform -- uid: 19391 - type: DisposalPipe - components: - - pos: 24.5,-43.5 - parent: 0 - type: Transform -- uid: 19392 - type: DisposalPipe - components: - - pos: 24.5,-44.5 - parent: 0 - type: Transform -- uid: 19393 - type: DisposalPipe - components: - - pos: 24.5,-45.5 - parent: 0 - type: Transform -- uid: 19394 - type: DisposalPipe - components: - - pos: 24.5,-46.5 - parent: 0 - type: Transform -- uid: 19395 - type: Catwalk - components: - - pos: 24.5,-53.5 - parent: 0 - type: Transform -- uid: 19396 - type: Catwalk - components: - - pos: 24.5,-52.5 - parent: 0 - type: Transform -- uid: 19397 - type: Catwalk - components: - - pos: 24.5,-51.5 - parent: 0 - type: Transform -- uid: 19398 - type: Catwalk - components: - - pos: 24.5,-50.5 - parent: 0 - type: Transform -- uid: 19399 - type: Catwalk - components: - - pos: 24.5,-49.5 - parent: 0 - type: Transform -- uid: 19400 - type: Catwalk - components: - - pos: 24.5,-48.5 - parent: 0 - type: Transform -- uid: 19401 - type: Catwalk - components: - - pos: 24.5,-47.5 - parent: 0 - type: Transform -- uid: 19402 - type: Catwalk - components: - - pos: 24.5,-46.5 - parent: 0 - type: Transform -- uid: 19403 - type: Catwalk - components: - - pos: 24.5,-45.5 - parent: 0 - type: Transform -- uid: 19404 - type: Catwalk - components: - - pos: 24.5,-44.5 - parent: 0 - type: Transform -- uid: 19405 - type: Catwalk - components: - - pos: 24.5,-43.5 - parent: 0 - type: Transform -- uid: 19406 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-44.5 - parent: 0 - type: Transform -- uid: 19407 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 26.5,-44.5 - parent: 0 - type: Transform -- uid: 19408 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 27.5,-44.5 - parent: 0 - type: Transform -- uid: 19409 - type: FirelockGlass - components: - - pos: 33.5,-43.5 - parent: 0 - type: Transform -- uid: 19410 - type: FirelockGlass - components: - - pos: 33.5,-42.5 - parent: 0 - type: Transform -- uid: 19411 - type: FirelockGlass - components: - - pos: 33.5,-41.5 - parent: 0 - type: Transform -- uid: 19412 - type: FirelockGlass - components: - - pos: 46.5,-47.5 - parent: 0 - type: Transform -- uid: 19413 - type: FirelockGlass - components: - - pos: 46.5,-46.5 - parent: 0 - type: Transform -- uid: 19414 - type: FirelockGlass - components: - - pos: 46.5,-45.5 - parent: 0 - type: Transform -- uid: 19415 - type: Catwalk - components: - - pos: 45.5,-46.5 - parent: 0 - type: Transform -- uid: 19416 - type: Catwalk - components: - - pos: 44.5,-46.5 - parent: 0 - type: Transform -- uid: 19417 - type: Catwalk - components: - - pos: 43.5,-46.5 - parent: 0 - type: Transform -- uid: 19418 - type: Catwalk - components: - - pos: 43.5,-45.5 - parent: 0 - type: Transform -- uid: 19419 - type: Catwalk - components: - - pos: 43.5,-44.5 - parent: 0 - type: Transform -- uid: 19420 - type: Catwalk - components: - - pos: 43.5,-43.5 - parent: 0 - type: Transform -- uid: 19421 - type: Catwalk - components: - - pos: 43.5,-42.5 - parent: 0 - type: Transform -- uid: 19422 - type: Catwalk - components: - - pos: 42.5,-42.5 - parent: 0 - type: Transform -- uid: 19423 - type: Catwalk - components: - - pos: 41.5,-42.5 - parent: 0 - type: Transform -- uid: 19424 - type: Catwalk - components: - - pos: 40.5,-42.5 - parent: 0 - type: Transform -- uid: 19425 - type: Catwalk - components: - - pos: 39.5,-42.5 - parent: 0 - type: Transform -- uid: 19426 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 23.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19427 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19428 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19429 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19430 - type: GasPipeBend - components: - - pos: 24.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19431 - type: GasPipeStraight - components: - - pos: 24.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19432 - type: GasPipeStraight - components: - - pos: 24.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19433 - type: GasPipeStraight - components: - - pos: 24.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19434 - type: GasPipeStraight - components: - - pos: 24.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19435 - type: GasPipeStraight - components: - - pos: 24.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19436 - type: GasPipeStraight - components: - - pos: 24.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19437 - type: GasPipeStraight - components: - - pos: 24.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19438 - type: GasPipeStraight - components: - - pos: 24.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19439 - type: GasPipeStraight - components: - - pos: 24.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19440 - type: GasPipeStraight - components: - - pos: 24.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19441 - type: GasPipeStraight - components: - - pos: 24.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19442 - type: GasPipeStraight - components: - - pos: 24.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19443 - type: GasPipeStraight - components: - - pos: 24.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19444 - type: GasPipeStraight - components: - - pos: 24.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19445 - type: GasPipeStraight - components: - - pos: 24.5,-38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19446 - type: GasPipeStraight - components: - - pos: 24.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19447 - type: GasPipeStraight - components: - - pos: 24.5,-40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19448 - type: GasPipeStraight - components: - - pos: 24.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19449 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19450 - type: GasPipeStraight - components: - - pos: 24.5,-43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19451 - type: GasPipeStraight - components: - - pos: 24.5,-44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19452 - type: GasPipeStraight - components: - - pos: 24.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19453 - type: GasPipeStraight - components: - - pos: 24.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19454 - type: GasPipeStraight - components: - - pos: 24.5,-47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19455 - type: GasPipeStraight - components: - - pos: 24.5,-48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19456 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19457 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19458 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19459 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19460 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19461 - type: GasPipeStraight - components: - - pos: 24.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19462 - type: GasPipeStraight - components: - - pos: 24.5,-51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19463 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19464 - type: GasPipeStraight - components: - - pos: 24.5,-53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19465 - type: GasPipeStraight - components: - - pos: 24.5,-54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19466 - type: GasPipeStraight - components: - - pos: 24.5,-55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19467 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19468 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 24.5,-56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19469 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19470 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19471 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19472 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19473 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19474 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19475 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19476 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19477 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19478 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19479 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19480 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19481 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19482 - type: GasPipeTJunction - components: - - pos: 39.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19483 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19484 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19485 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19486 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19487 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19488 - type: GasPipeStraight - components: - - pos: 43.5,-43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19489 - type: GasPipeStraight - components: - - pos: 43.5,-44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19490 - type: GasPipeStraight - components: - - pos: 43.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19491 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 43.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19492 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19493 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19494 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19495 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19496 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 38.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19497 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19498 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19499 - type: GasPipeTJunction - components: - - pos: 36.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19500 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19501 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19502 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19503 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19504 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19505 - type: GasPipeTJunction - components: - - pos: 30.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19506 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19507 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19508 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19509 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19510 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19511 - type: GasPipeStraight - components: - - pos: 25.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19512 - type: GasPipeStraight - components: - - pos: 25.5,-43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19513 - type: GasPipeStraight - components: - - pos: 25.5,-44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19514 - type: GasPipeStraight - components: - - pos: 25.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19515 - type: GasPipeStraight - components: - - pos: 25.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19516 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19517 - type: GasPipeStraight - components: - - pos: 25.5,-48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19518 - type: GasPipeStraight - components: - - pos: 25.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19519 - type: GasPipeStraight - components: - - pos: 25.5,-50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19520 - type: GasPipeStraight - components: - - pos: 25.5,-51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19521 - type: GasPipeStraight - components: - - pos: 25.5,-52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19522 - type: GasPipeStraight - components: - - pos: 25.5,-53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19523 - type: GasPipeStraight - components: - - pos: 25.5,-54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19524 - type: GasPipeStraight - components: - - pos: 25.5,-55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19525 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19526 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19527 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19528 - type: GasPipeStraight - components: - - pos: 30.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19529 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 25.5,-56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19530 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19531 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 30.5,-43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19532 - type: GasPipeStraight - components: - - pos: 36.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19533 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 36.5,-43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19534 - type: GasPipeStraight - components: - - pos: 39.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19535 - type: GasPipeStraight - components: - - pos: 39.5,-43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19536 - type: GasPipeStraight - components: - - pos: 39.5,-44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19537 - type: GasPipeStraight - components: - - pos: 39.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19538 - type: GasPipeStraight - components: - - pos: 39.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19539 - type: GasPipeStraight - components: - - pos: 37.5,-43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19540 - type: GasPipeStraight - components: - - pos: 37.5,-44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19541 - type: GasPipeStraight - components: - - pos: 37.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19542 - type: GasPipeStraight - components: - - pos: 37.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19543 - type: GasPipeTJunction - components: - - pos: 37.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19544 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 37.5,-47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19545 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 39.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19546 - type: ComputerTechnologyDiskTerminal - components: - - rot: 3.141592653589793 rad - pos: 52.5,-14.5 - parent: 0 - type: Transform -- uid: 19547 - type: AirlockScienceGlassLocked - components: - - name: Spare Room - type: MetaData - - rot: 3.141592653589793 rad - pos: 38.5,-44.5 - parent: 0 - type: Transform -- uid: 19548 - type: WallReinforced - components: - - pos: 51.5,-52.5 - parent: 0 - type: Transform -- uid: 19549 - type: CableMV - components: - - pos: 51.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19550 - type: CableMV - components: - - pos: 51.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19551 - type: CableMV - components: - - pos: 51.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19552 - type: CableMV - components: - - pos: 51.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19553 - type: CableMV - components: - - pos: 51.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19554 - type: CableMV - components: - - pos: 51.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19555 - type: CableMV - components: - - pos: 52.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19556 - type: CableMV - components: - - pos: 53.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19557 - type: CableMV - components: - - pos: 54.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19558 - type: CableMV - components: - - pos: 55.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19559 - type: CableMV - components: - - pos: 56.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19560 - type: CableMV - components: - - pos: 56.5,-45.5 - parent: 0 - type: Transform -- uid: 19561 - type: CableMV - components: - - pos: 56.5,-44.5 - parent: 0 - type: Transform -- uid: 19562 - type: CableMV - components: - - pos: 56.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19563 - type: CableMV - components: - - pos: 56.5,-42.5 - parent: 0 - type: Transform -- uid: 19564 - type: CableMV - components: - - pos: 56.5,-41.5 - parent: 0 - type: Transform -- uid: 19565 - type: CableMV - components: - - pos: 56.5,-40.5 - parent: 0 - type: Transform -- uid: 19566 - type: CableMV - components: - - pos: 56.5,-39.5 - parent: 0 - type: Transform -- uid: 19567 - type: CableMV - components: - - pos: 56.5,-38.5 - parent: 0 - type: Transform -- uid: 19568 - type: CableMV - components: - - pos: 56.5,-37.5 - parent: 0 - type: Transform -- uid: 19569 - type: CableMV - components: - - pos: 56.5,-36.5 - parent: 0 - type: Transform -- uid: 19570 - type: CableMV - components: - - pos: 56.5,-35.5 - parent: 0 - type: Transform -- uid: 19571 - type: CableMV - components: - - pos: 56.5,-34.5 - parent: 0 - type: Transform -- uid: 19572 - type: CableMV - components: - - pos: 56.5,-33.5 - parent: 0 - type: Transform -- uid: 19573 - type: CableMV - components: - - pos: 55.5,-33.5 - parent: 0 - type: Transform -- uid: 19574 - type: CableMV - components: - - pos: 54.5,-33.5 - parent: 0 - type: Transform -- uid: 19575 - type: CableMV - components: - - pos: 53.5,-33.5 - parent: 0 - type: Transform -- uid: 19576 - type: CableMV - components: - - pos: 52.5,-33.5 - parent: 0 - type: Transform -- uid: 19577 - type: CableMV - components: - - pos: 51.5,-33.5 - parent: 0 - type: Transform -- uid: 19578 - type: CableMV - components: - - pos: 50.5,-33.5 - parent: 0 - type: Transform -- uid: 19579 - type: CableMV - components: - - pos: 49.5,-33.5 - parent: 0 - type: Transform -- uid: 19580 - type: CableMV - components: - - pos: 53.5,-23.5 - parent: 0 - type: Transform -- uid: 19581 - type: CableMV - components: - - pos: 54.5,-23.5 - parent: 0 - type: Transform -- uid: 19582 - type: CableMV - components: - - pos: 55.5,-23.5 - parent: 0 - type: Transform -- uid: 19583 - type: CableMV - components: - - pos: 56.5,-23.5 - parent: 0 - type: Transform -- uid: 19584 - type: CableMV - components: - - pos: 57.5,-23.5 - parent: 0 - type: Transform -- uid: 19585 - type: CableMV - components: - - pos: 58.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19586 - type: CableMV - components: - - pos: 59.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19587 - type: CableMV - components: - - pos: 60.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19588 - type: CableMV - components: - - pos: 61.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19589 - type: CableMV - components: - - pos: 62.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19590 - type: CableMV - components: - - pos: 63.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19591 - type: CableMV - components: - - pos: 64.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19592 - type: CableMV - components: - - pos: 64.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19593 - type: CableHV - components: - - pos: 65.5,-30.5 - parent: 0 - type: Transform -- uid: 19594 - type: CableHV - components: - - pos: 65.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19595 - type: CableHV - components: - - pos: 65.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19596 - type: CableHV - components: - - pos: 65.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19597 - type: CableHV - components: - - pos: 65.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19598 - type: CableHV - components: - - pos: 65.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19599 - type: CableHV - components: - - pos: 64.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19600 - type: WallSolid - components: - - pos: 64.5,-30.5 - parent: 0 - type: Transform -- uid: 19601 - type: CableMV - components: - - pos: 64.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19602 - type: CableMV - components: - - pos: 64.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19603 - type: CableMV - components: - - pos: 64.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19604 - type: CableMV - components: - - pos: 64.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19605 - type: CableMV - components: - - pos: 64.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19606 - type: CableMV - components: - - pos: 64.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19607 - type: CableMV - components: - - pos: 64.5,-39.5 - parent: 0 - type: Transform -- uid: 19608 - type: CableMV - components: - - pos: 64.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19609 - type: CableMV - components: - - pos: 64.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19610 - type: CableMV - components: - - pos: 64.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19611 - type: CableMV - components: - - pos: 64.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19612 - type: CableMV - components: - - pos: 64.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19613 - type: CableMV - components: - - pos: 64.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19614 - type: CableMV - components: - - pos: 64.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19615 - type: CableMV - components: - - pos: 63.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19616 - type: CableMV - components: - - pos: 62.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19617 - type: CableMV - components: - - pos: 61.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19618 - type: CableMV - components: - - pos: 60.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19619 - type: CableMV - components: - - pos: 59.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19620 - type: CableMV - components: - - pos: 58.5,-46.5 - parent: 0 - type: Transform -- uid: 19621 - type: CableMV - components: - - pos: 57.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19622 - type: CableHV - components: - - pos: 51.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19623 - type: CableHV - components: - - pos: 51.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19624 - type: CableHV - components: - - pos: 51.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19625 - type: CableHV - components: - - pos: 51.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19626 - type: CableHV - components: - - pos: 51.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19627 - type: CableHV - components: - - pos: 51.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19628 - type: CableHV - components: - - pos: 50.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19629 - type: CableHV - components: - - pos: 49.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19630 - type: CableHV - components: - - pos: 48.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19631 - type: CableHV - components: - - pos: 47.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19632 - type: CableHV - components: - - pos: 46.5,-46.5 - parent: 0 - type: Transform -- uid: 19633 - type: CableHV - components: - - pos: 45.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19634 - type: CableHV - components: - - pos: 44.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19635 - type: CableHV - components: - - pos: 43.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19636 - type: CableHV - components: - - pos: 43.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19637 - type: CableHV - components: - - pos: 43.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19638 - type: CableHV - components: - - pos: 43.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19639 - type: CableHV - components: - - pos: 43.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19640 - type: CableHV - components: - - pos: 42.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19641 - type: CableHV - components: - - pos: 41.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19642 - type: CableHV - components: - - pos: 40.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19643 - type: CableHV - components: - - pos: 39.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19644 - type: CableHV - components: - - pos: 38.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19645 - type: CableHV - components: - - pos: 37.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19646 - type: CableHV - components: - - pos: 36.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19647 - type: CableHV - components: - - pos: 35.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19648 - type: CableHV - components: - - pos: 34.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19649 - type: CableHV - components: - - pos: 33.5,-42.5 - parent: 0 - type: Transform -- uid: 19650 - type: CableHV - components: - - pos: 32.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19651 - type: CableHV - components: - - pos: 31.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19652 - type: CableHV - components: - - pos: 30.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19653 - type: CableHV - components: - - pos: 29.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19654 - type: CableHV - components: - - pos: 28.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19655 - type: CableHV - components: - - pos: 27.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19656 - type: CableHV - components: - - pos: 26.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19657 - type: CableHV - components: - - pos: 25.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19658 - type: CableHV - components: - - pos: 24.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19659 - type: CableHV - components: - - pos: 24.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19660 - type: CableHV - components: - - pos: 24.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19661 - type: CableHV - components: - - pos: 24.5,-39.5 - parent: 0 - type: Transform -- uid: 19662 - type: CableHV - components: - - pos: 52.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19663 - type: CableHV - components: - - pos: 53.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19664 - type: CableHV - components: - - pos: 54.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19665 - type: CableHV - components: - - pos: 55.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19666 - type: CableHV - components: - - pos: 56.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19667 - type: CableHV - components: - - pos: 57.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19668 - type: CableHV - components: - - pos: 58.5,-46.5 - parent: 0 - type: Transform -- uid: 19669 - type: CableHV - components: - - pos: 59.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19670 - type: CableHV - components: - - pos: 60.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19671 - type: CableHV - components: - - pos: 61.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19672 - type: CableHV - components: - - pos: 62.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19673 - type: CableHV - components: - - pos: 63.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19674 - type: CableHV - components: - - pos: 64.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19675 - type: CableHV - components: - - pos: 64.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19676 - type: CableHV - components: - - pos: 64.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19677 - type: CableHV - components: - - pos: 64.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19678 - type: CableHV - components: - - pos: 64.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19679 - type: CableHV - components: - - pos: 64.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19680 - type: CableHV - components: - - pos: 64.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19681 - type: CableHV - components: - - pos: 64.5,-39.5 - parent: 0 - type: Transform -- uid: 19682 - type: CableHV - components: - - pos: 64.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19683 - type: CableHV - components: - - pos: 64.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19684 - type: CableHV - components: - - pos: 64.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19685 - type: CableHV - components: - - pos: 64.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19686 - type: CableHV - components: - - pos: 64.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19687 - type: CableHV - components: - - pos: 64.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19688 - type: WallSolid - components: - - pos: 64.5,-26.5 - parent: 0 - type: Transform -- uid: 19689 - type: MountainRock - components: - - pos: 64.5,-29.5 - parent: 0 - type: Transform -- uid: 19690 - type: MountainRock - components: - - pos: 64.5,-28.5 - parent: 0 - type: Transform -- uid: 19691 - type: MountainRock - components: - - pos: 64.5,-27.5 - parent: 0 - type: Transform -- uid: 19692 - type: AirlockMaintLocked - components: - - pos: 65.5,-30.5 - parent: 0 - type: Transform -- uid: 19693 - type: CableHV - components: - - pos: 64.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19694 - type: CableHV - components: - - pos: 64.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19695 - type: CableHV - components: - - pos: 65.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19696 - type: CableHV - components: - - pos: 64.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19697 - type: CableHV - components: - - pos: 64.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19698 - type: CableHV - components: - - pos: 63.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19699 - type: CableHV - components: - - pos: 62.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19700 - type: CableHV - components: - - pos: 61.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19701 - type: CableHV - components: - - pos: 60.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19702 - type: CableHV - components: - - pos: 59.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19703 - type: CableHV - components: - - pos: 59.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19704 - type: CableHV - components: - - pos: 59.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19705 - type: CableHV - components: - - pos: 59.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19706 - type: CableHV - components: - - pos: 59.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19707 - type: CableHV - components: - - pos: 59.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19708 - type: CableHV - components: - - pos: 59.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19709 - type: CableHV - components: - - pos: 59.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19710 - type: CableHV - components: - - pos: 59.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19711 - type: CableHV - components: - - pos: 59.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19712 - type: CableHV - components: - - pos: 59.5,-13.5 - parent: 0 - type: Transform -- uid: 19713 - type: CableHV - components: - - pos: 59.5,-12.5 - parent: 0 - type: Transform -- uid: 19714 - type: CableHV - components: - - pos: 59.5,-11.5 - parent: 0 - type: Transform -- uid: 19715 - type: CableHV - components: - - pos: 59.5,-10.5 - parent: 0 - type: Transform -- uid: 19716 - type: CableHV - components: - - pos: 58.5,-10.5 - parent: 0 - type: Transform -- uid: 19717 - type: CableHV - components: - - pos: 57.5,-10.5 - parent: 0 - type: Transform -- uid: 19718 - type: CableHV - components: - - pos: 56.5,-10.5 - parent: 0 - type: Transform -- uid: 19719 - type: CableHV - components: - - pos: 55.5,-10.5 - parent: 0 - type: Transform -- uid: 19720 - type: CableHV - components: - - pos: 54.5,-10.5 - parent: 0 - type: Transform -- uid: 19721 - type: CableHV - components: - - pos: 53.5,-10.5 - parent: 0 - type: Transform -- uid: 19722 - type: CableHV - components: - - pos: 52.5,-10.5 - parent: 0 - type: Transform -- uid: 19723 - type: CableHV - components: - - pos: 51.5,-10.5 - parent: 0 - type: Transform -- uid: 19724 - type: CableHV - components: - - pos: 50.5,-10.5 - parent: 0 - type: Transform -- uid: 19725 - type: CableHV - components: - - pos: 49.5,-10.5 - parent: 0 - type: Transform -- uid: 19726 - type: CableHV - components: - - pos: 48.5,-10.5 - parent: 0 - type: Transform -- uid: 19727 - type: CableHV - components: - - pos: 47.5,-10.5 - parent: 0 - type: Transform -- uid: 19728 - type: CableHV - components: - - pos: 46.5,-10.5 - parent: 0 - type: Transform -- uid: 19729 - type: CableHV - components: - - pos: 45.5,-10.5 - parent: 0 - type: Transform -- uid: 19730 - type: CableHV - components: - - pos: 44.5,-10.5 - parent: 0 - type: Transform -- uid: 19731 - type: CableHV - components: - - pos: 43.5,-10.5 - parent: 0 - type: Transform -- uid: 19732 - type: CableHV - components: - - pos: 43.5,-9.5 - parent: 0 - type: Transform -- uid: 19733 - type: CableHV - components: - - pos: 43.5,-8.5 - parent: 0 - type: Transform -- uid: 19734 - type: CableHV - components: - - pos: 43.5,-7.5 - parent: 0 - type: Transform -- uid: 19735 - type: CableHV - components: - - pos: 43.5,-6.5 - parent: 0 - type: Transform -- uid: 19736 - type: CableHV - components: - - pos: 43.5,-5.5 - parent: 0 - type: Transform -- uid: 19737 - type: CableHV - components: - - pos: 43.5,-4.5 - parent: 0 - type: Transform -- uid: 19738 - type: CableHV - components: - - pos: 43.5,-3.5 - parent: 0 - type: Transform -- uid: 19739 - type: CableHV - components: - - pos: 43.5,-2.5 - parent: 0 - type: Transform -- uid: 19740 - type: CableHV - components: - - pos: 43.5,-1.5 - parent: 0 - type: Transform -- uid: 19741 - type: AirlockMaintLocked - components: - - pos: 24.5,-24.5 - parent: 0 - type: Transform -- uid: 19742 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,-46.5 - parent: 0 - type: Transform -- uid: 19743 - type: TableCarpet - components: - - pos: 29.5,-48.5 - parent: 0 - type: Transform -- uid: 19744 - type: Stool - components: - - pos: 29.5,-47.5 - parent: 0 - type: Transform -- uid: 19745 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-48.5 - parent: 0 - type: Transform -- uid: 19746 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 29.5,-49.5 - parent: 0 - type: Transform -- uid: 19747 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-48.5 - parent: 0 - type: Transform -- uid: 19748 - type: ParchisBoard - components: - - pos: 29.527367,-48.423893 - parent: 0 - type: Transform -- uid: 19749 - type: d6Dice - components: - - pos: 29.199242,-48.470768 - parent: 0 - type: Transform -- uid: 19750 - type: Wrench - components: - - pos: 30.529358,-46.455143 - parent: 0 - type: Transform -- uid: 19751 - type: Crowbar - components: - - pos: 30.455694,-46.39517 - parent: 0 - type: Transform - - nextAttack: 13973.983491 - type: MeleeWeapon -- uid: 19752 - type: Multitool - components: - - pos: 31.466858,-46.423893 - parent: 0 - type: Transform -- uid: 19753 - type: ClothingHeadHatWelding - components: - - pos: 31.576233,-50.330143 - parent: 0 - type: Transform -- uid: 19754 - type: ClothingOuterCoatLab - components: - - pos: 32.341858,-50.533268 - parent: 0 - type: Transform -- uid: 19755 - type: HandLabeler - components: - - pos: 30.55412,-46.504543 - parent: 0 - type: Transform -- uid: 19756 - type: ComputerResearchAndDevelopment - components: - - pos: 28.5,-46.5 - parent: 0 - type: Transform -- uid: 19757 - type: Catwalk - components: - - pos: 31.5,-60.5 - parent: 0 - type: Transform -- uid: 19758 - type: Catwalk - components: - - pos: 30.5,-60.5 - parent: 0 - type: Transform -- uid: 19759 - type: AsteroidRock - components: - - pos: 40.5,-53.5 - parent: 0 - type: Transform -- uid: 19760 - type: AsteroidRock - components: - - pos: 41.5,-53.5 - parent: 0 - type: Transform -- uid: 19761 - type: AsteroidRock - components: - - pos: 51.5,-56.5 - parent: 0 - type: Transform -- uid: 19762 - type: AsteroidRock - components: - - pos: 52.5,-56.5 - parent: 0 - type: Transform -- uid: 19763 - type: AsteroidRock - components: - - pos: 53.5,-57.5 - parent: 0 - type: Transform -- uid: 19764 - type: AsteroidRock - components: - - pos: 54.5,-59.5 - parent: 0 - type: Transform -- uid: 19765 - type: AsteroidRock - components: - - pos: 54.5,-58.5 - parent: 0 - type: Transform -- uid: 19766 - type: AsteroidRock - components: - - pos: 54.5,-57.5 - parent: 0 - type: Transform -- uid: 19767 - type: AsteroidRock - components: - - pos: 54.5,-56.5 - parent: 0 - type: Transform -- uid: 19768 - type: AsteroidRock - components: - - pos: 54.5,-55.5 - parent: 0 - type: Transform -- uid: 19769 - type: ClothingNeckStethoscope - components: - - pos: 63.43731,-54.423077 - parent: 0 - type: Transform -- uid: 19770 - type: AsteroidRock - components: - - pos: 54.5,-53.5 - parent: 0 - type: Transform -- uid: 19771 - type: AsteroidRock - components: - - pos: 54.5,-52.5 - parent: 0 - type: Transform -- uid: 19772 - type: AsteroidRock - components: - - pos: 53.5,-52.5 - parent: 0 - type: Transform -- uid: 19773 - type: AsteroidRock - components: - - pos: 53.5,-53.5 - parent: 0 - type: Transform -- uid: 19774 - type: AsteroidRock - components: - - pos: 53.5,-54.5 - parent: 0 - type: Transform -- uid: 19775 - type: AsteroidRock - components: - - pos: 53.5,-55.5 - parent: 0 - type: Transform -- uid: 19776 - type: AsteroidRock - components: - - pos: 53.5,-56.5 - parent: 0 - type: Transform -- uid: 19777 - type: Grille - components: - - pos: 71.5,-54.5 - parent: 0 - type: Transform -- uid: 19778 - type: Grille - components: - - pos: 71.5,-53.5 - parent: 0 - type: Transform -- uid: 19779 - type: Grille - components: - - pos: 72.5,-51.5 - parent: 0 - type: Transform -- uid: 19780 - type: WallSolid - components: - - pos: 58.5,-45.5 - parent: 0 - type: Transform -- uid: 19781 - type: WallSolid - components: - - pos: 58.5,-47.5 - parent: 0 - type: Transform -- uid: 19782 - type: WallSolid - components: - - pos: 56.5,-51.5 - parent: 0 - type: Transform -- uid: 19783 - type: WallSolid - components: - - pos: 57.5,-51.5 - parent: 0 - type: Transform -- uid: 19784 - type: WallSolid - components: - - pos: 58.5,-51.5 - parent: 0 - type: Transform -- uid: 19785 - type: WallSolid - components: - - pos: 58.5,-50.5 - parent: 0 - type: Transform -- uid: 19786 - type: WallSolid - components: - - pos: 58.5,-49.5 - parent: 0 - type: Transform -- uid: 19787 - type: WallSolid - components: - - pos: 58.5,-48.5 - parent: 0 - type: Transform -- uid: 19788 - type: GasFilterFlipped - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-49.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19789 - type: GasPipeBend - components: - - pos: 57.5,-49.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19790 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-49.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19791 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 55.5,-50.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19792 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 56.5,-50.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19793 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 57.5,-50.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19794 - type: MountainRock - components: - - pos: 54.5,-50.5 - parent: 0 - type: Transform -- uid: 19795 - type: MountainRock - components: - - pos: 54.5,-49.5 - parent: 0 - type: Transform -- uid: 19796 - type: MountainRock - components: - - pos: 54.5,-48.5 - parent: 0 - type: Transform -- uid: 19797 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-50.5 - parent: 0 - type: Transform -- uid: 19798 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-49.5 - parent: 0 - type: Transform -- uid: 19799 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-48.5 - parent: 0 - type: Transform -- uid: 19800 - type: Railing - components: - - pos: 54.5,-47.5 - parent: 0 - type: Transform -- uid: 19801 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: 53.5,-47.5 - parent: 0 - type: Transform -- uid: 19802 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-47.5 - parent: 0 - type: Transform -- uid: 19803 - type: Catwalk - components: - - pos: 47.5,-46.5 - parent: 0 - type: Transform -- uid: 19804 - type: Catwalk - components: - - pos: 48.5,-46.5 - parent: 0 - type: Transform -- uid: 19805 - type: Catwalk - components: - - pos: 49.5,-46.5 - parent: 0 - type: Transform -- uid: 19806 - type: Catwalk - components: - - pos: 50.5,-46.5 - parent: 0 - type: Transform -- uid: 19807 - type: Catwalk - components: - - pos: 51.5,-46.5 - parent: 0 - type: Transform -- uid: 19808 - type: Catwalk - components: - - pos: 52.5,-46.5 - parent: 0 - type: Transform -- uid: 19809 - type: Catwalk - components: - - pos: 53.5,-46.5 - parent: 0 - type: Transform -- uid: 19810 - type: Catwalk - components: - - pos: 54.5,-46.5 - parent: 0 - type: Transform -- uid: 19811 - type: Catwalk - components: - - pos: 55.5,-46.5 - parent: 0 - type: Transform -- uid: 19812 - type: Catwalk - components: - - pos: 56.5,-46.5 - parent: 0 - type: Transform -- uid: 19813 - type: Catwalk - components: - - pos: 57.5,-46.5 - parent: 0 - type: Transform -- uid: 19814 - type: GasPipeBend - components: - - pos: 44.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19815 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 44.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19816 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19817 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19818 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19819 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19820 - type: GasPipeStraight - components: - - pos: 44.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19821 - type: GasPipeStraight - components: - - pos: 44.5,-43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19822 - type: GasPipeStraight - components: - - pos: 44.5,-44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19823 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19824 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19825 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19826 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19827 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19828 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19829 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19830 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19831 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19832 - type: GasPipeTJunction - components: - - pos: 54.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19833 - type: GasPipeStraight - components: - - pos: 54.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19834 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19835 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19836 - type: GasPipeStraight - components: - - pos: 56.5,-44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19837 - type: GasPipeStraight - components: - - pos: 56.5,-43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19838 - type: GasPipeStraight - components: - - pos: 56.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19839 - type: GasPipeStraight - components: - - pos: 56.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19840 - type: GasPipeStraight - components: - - pos: 56.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19841 - type: GasPipeStraight - components: - - pos: 56.5,-40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19842 - type: GasPipeStraight - components: - - pos: 56.5,-38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19843 - type: GasPipeStraight - components: - - pos: 56.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19844 - type: GasPipeStraight - components: - - pos: 56.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19845 - type: GasPipeStraight - components: - - pos: 56.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19846 - type: GasPipeStraight - components: - - pos: 56.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19847 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19848 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19849 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19850 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19851 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19852 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 53.5,-47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19853 - type: GasPipeTJunction - components: - - pos: 53.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19854 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19855 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 54.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19856 - type: APCBasic - components: - - pos: 51.5,-44.5 - parent: 0 - type: Transform -- uid: 19857 - type: CableMV - components: - - pos: 51.5,-45.5 - parent: 0 - type: Transform -- uid: 19858 - type: CableMV - components: - - pos: 51.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19859 - type: CableApcExtension - components: - - pos: 51.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19860 - type: CableApcExtension - components: - - pos: 51.5,-45.5 - parent: 0 - type: Transform -- uid: 19861 - type: CableApcExtension - components: - - pos: 51.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19862 - type: CableApcExtension - components: - - pos: 51.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19863 - type: CableApcExtension - components: - - pos: 51.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19864 - type: CableApcExtension - components: - - pos: 51.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19865 - type: CableApcExtension - components: - - pos: 51.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19866 - type: CableApcExtension - components: - - pos: 52.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19867 - type: CableApcExtension - components: - - pos: 53.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19868 - type: CableApcExtension - components: - - pos: 54.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19869 - type: CableApcExtension - components: - - pos: 55.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19870 - type: CableApcExtension - components: - - pos: 56.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19871 - type: CableApcExtension - components: - - pos: 57.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19872 - type: CableApcExtension - components: - - pos: 56.5,-45.5 - parent: 0 - type: Transform -- uid: 19873 - type: CableApcExtension - components: - - pos: 56.5,-44.5 - parent: 0 - type: Transform -- uid: 19874 - type: CableApcExtension - components: - - pos: 56.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19875 - type: CableApcExtension - components: - - pos: 50.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19876 - type: CableApcExtension - components: - - pos: 49.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19877 - type: CableApcExtension - components: - - pos: 48.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19878 - type: CableApcExtension - components: - - pos: 47.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19879 - type: CableApcExtension - components: - - pos: 47.5,-47.5 - parent: 0 - type: Transform -- uid: 19880 - type: CableApcExtension - components: - - pos: 47.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19881 - type: CableApcExtension - components: - - pos: 47.5,-49.5 - parent: 0 - type: Transform -- uid: 19882 - type: CableApcExtension - components: - - pos: 47.5,-50.5 - parent: 0 - type: Transform -- uid: 19883 - type: CableApcExtension - components: - - pos: 47.5,-51.5 - parent: 0 - type: Transform -- uid: 19884 - type: CableApcExtension - components: - - pos: 47.5,-52.5 - parent: 0 - type: Transform -- uid: 19885 - type: CableApcExtension - components: - - pos: 47.5,-53.5 - parent: 0 - type: Transform -- uid: 19886 - type: CableApcExtension - components: - - pos: 47.5,-54.5 - parent: 0 - type: Transform -- uid: 19887 - type: CableApcExtension - components: - - pos: 46.5,-53.5 - parent: 0 - type: Transform -- uid: 19888 - type: CableApcExtension - components: - - pos: 45.5,-53.5 - parent: 0 - type: Transform -- uid: 19889 - type: CableApcExtension - components: - - pos: 44.5,-53.5 - parent: 0 - type: Transform -- uid: 19890 - type: CableApcExtension - components: - - pos: 49.5,-53.5 - parent: 0 - type: Transform -- uid: 19891 - type: CableApcExtension - components: - - pos: 50.5,-53.5 - parent: 0 - type: Transform -- uid: 19892 - type: CableApcExtension - components: - - pos: 51.5,-53.5 - parent: 0 - type: Transform -- uid: 19893 - type: CableApcExtension - components: - - pos: 48.5,-53.5 - parent: 0 - type: Transform -- uid: 19894 - type: CableApcExtension - components: - - pos: 46.5,-50.5 - parent: 0 - type: Transform -- uid: 19895 - type: CableApcExtension - components: - - pos: 45.5,-50.5 - parent: 0 - type: Transform -- uid: 19896 - type: CableApcExtension - components: - - pos: 44.5,-50.5 - parent: 0 - type: Transform -- uid: 19897 - type: CableApcExtension - components: - - pos: 43.5,-50.5 - parent: 0 - type: Transform -- uid: 19898 - type: CableApcExtension - components: - - pos: 42.5,-50.5 - parent: 0 - type: Transform -- uid: 19899 - type: CableApcExtension - components: - - pos: 38.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19900 - type: CableApcExtension - components: - - pos: 38.5,-44.5 - parent: 0 - type: Transform -- uid: 19901 - type: CableApcExtension - components: - - pos: 38.5,-45.5 - parent: 0 - type: Transform -- uid: 19902 - type: CableApcExtension - components: - - pos: 38.5,-46.5 - parent: 0 - type: Transform -- uid: 19903 - type: CableApcExtension - components: - - pos: 38.5,-47.5 - parent: 0 - type: Transform -- uid: 19904 - type: CableApcExtension - components: - - pos: 38.5,-48.5 - parent: 0 - type: Transform -- uid: 19905 - type: CableApcExtension - components: - - pos: 38.5,-49.5 - parent: 0 - type: Transform -- uid: 19906 - type: CableApcExtension - components: - - pos: 38.5,-50.5 - parent: 0 - type: Transform -- uid: 19907 - type: CableApcExtension - components: - - pos: 37.5,-50.5 - parent: 0 - type: Transform -- uid: 19908 - type: CableApcExtension - components: - - pos: 36.5,-50.5 - parent: 0 - type: Transform -- uid: 19909 - type: CableApcExtension - components: - - pos: 35.5,-50.5 - parent: 0 - type: Transform -- uid: 19910 - type: CableApcExtension - components: - - pos: 35.5,-49.5 - parent: 0 - type: Transform -- uid: 19911 - type: CableApcExtension - components: - - pos: 35.5,-48.5 - parent: 0 - type: Transform -- uid: 19912 - type: CableApcExtension - components: - - pos: 35.5,-47.5 - parent: 0 - type: Transform -- uid: 19913 - type: CableApcExtension - components: - - pos: 35.5,-46.5 - parent: 0 - type: Transform -- uid: 19914 - type: CableApcExtension - components: - - pos: 39.5,-50.5 - parent: 0 - type: Transform -- uid: 19915 - type: CableApcExtension - components: - - pos: 40.5,-50.5 - parent: 0 - type: Transform -- uid: 19916 - type: CableApcExtension - components: - - pos: 40.5,-49.5 - parent: 0 - type: Transform -- uid: 19917 - type: CableApcExtension - components: - - pos: 40.5,-48.5 - parent: 0 - type: Transform -- uid: 19918 - type: CableApcExtension - components: - - pos: 40.5,-47.5 - parent: 0 - type: Transform -- uid: 19919 - type: CableApcExtension - components: - - pos: 40.5,-46.5 - parent: 0 - type: Transform -- uid: 19920 - type: CableApcExtension - components: - - pos: 43.5,-49.5 - parent: 0 - type: Transform -- uid: 19921 - type: WaterTankFull - components: - - pos: 44.5,-51.5 - parent: 0 - type: Transform -- uid: 19922 - type: StorageCanister - components: - - pos: 43.5,-51.5 - parent: 0 - type: Transform -- uid: 19923 - type: StorageCanister - components: - - pos: 42.5,-51.5 - parent: 0 - type: Transform -- uid: 19924 - type: Catwalk - components: - - pos: 43.5,-51.5 - parent: 0 - type: Transform -- uid: 19925 - type: Catwalk - components: - - pos: 42.5,-51.5 - parent: 0 - type: Transform -- uid: 19926 - type: AirlockMaintLocked - components: - - pos: 43.5,-48.5 - parent: 0 - type: Transform -- uid: 19927 - type: Airlock - components: - - pos: 47.5,-48.5 - parent: 0 - type: Transform -- uid: 19928 - type: Airlock - components: - - pos: 45.5,-50.5 - parent: 0 - type: Transform -- uid: 19929 - type: AirlockScienceLocked - components: - - pos: 41.5,-50.5 - parent: 0 - type: Transform -- uid: 19930 - type: Poweredlight - components: - - pos: 27.5,-55.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19931 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-60.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19932 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-60.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19933 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-50.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19934 - type: PoweredSmallLight - components: - - pos: 29.5,-41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19935 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19936 - type: PoweredSmallLight - components: - - pos: 40.5,-41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19937 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-40.5 - parent: 0 - type: Transform -- uid: 19938 - type: SignScience2 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-40.5 - parent: 0 - type: Transform -- uid: 19939 - type: SpawnPointResearchDirector - components: - - pos: 52.5,-38.5 - parent: 0 - type: Transform -- uid: 19940 - type: SpawnMobBandito - components: - - pos: 55.5,-19.5 - parent: 0 - type: Transform -- uid: 19941 - type: SpawnPointScientist - components: - - pos: 30.5,-48.5 - parent: 0 - type: Transform -- uid: 19942 - type: SpawnPointScientist - components: - - pos: 29.5,-47.5 - parent: 0 - type: Transform -- uid: 19943 - type: SpawnPointScientist - components: - - pos: 28.5,-48.5 - parent: 0 - type: Transform -- uid: 19944 - type: SpawnPointScientist - components: - - pos: 29.5,-49.5 - parent: 0 - type: Transform -- uid: 19945 - type: SpawnPointScientist - components: - - pos: 32.5,-49.5 - parent: 0 - type: Transform -- uid: 19946 - type: SpawnPointScientist - components: - - pos: 32.5,-47.5 - parent: 0 - type: Transform -- uid: 19947 - type: SignShipDock - components: - - pos: 22.5,-54.5 - parent: 0 - type: Transform -- uid: 19948 - type: ToolboxEmergencyFilled - components: - - pos: 29.56417,-54.390705 - parent: 0 - type: Transform -- uid: 19949 - type: CrateEmptySpawner - components: - - pos: 30.5,-56.5 - parent: 0 - type: Transform -- uid: 19950 - type: CrateEmptySpawner - components: - - pos: 30.5,-57.5 - parent: 0 - type: Transform -- uid: 19951 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-45.5 - parent: 0 - type: Transform -- uid: 19952 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-45.5 - parent: 0 - type: Transform -- uid: 19953 - type: DisposalPipe - components: - - pos: 38.5,-44.5 - parent: 0 - type: Transform -- uid: 19954 - type: DisposalPipe - components: - - pos: 38.5,-43.5 - parent: 0 - type: Transform -- uid: 19955 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 38.5,-45.5 - parent: 0 - type: Transform -- uid: 19956 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: 38.5,-42.5 - parent: 0 - type: Transform -- uid: 19957 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-47.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19958 - type: PoweredSmallLight - components: - - pos: 53.5,-45.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19959 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 57.5,-41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19960 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-43.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19961 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19962 - type: Poweredlight - components: - - pos: 52.5,-41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19963 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19964 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19965 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19966 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19967 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19968 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19969 - type: Poweredlight - components: - - pos: 57.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19970 - type: Poweredlight - components: - - pos: 61.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19971 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19972 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19973 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19974 - type: TablePlasmaGlass - components: - - pos: 42.5,-35.5 - parent: 0 - type: Transform -- uid: 19975 - type: TablePlasmaGlass - components: - - pos: 41.5,-35.5 - parent: 0 - type: Transform -- uid: 19976 - type: TablePlasmaGlass - components: - - pos: 41.5,-34.5 - parent: 0 - type: Transform -- uid: 19977 - type: TablePlasmaGlass - components: - - pos: 41.5,-33.5 - parent: 0 - type: Transform -- uid: 19978 - type: ChairOfficeLight - components: - - pos: 42.5,-34.5 - parent: 0 - type: Transform -- uid: 19979 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-33.5 - parent: 0 - type: Transform -- uid: 19980 - type: AnomalyScanner - components: - - pos: 41.450905,-33.506226 - parent: 0 - type: Transform -- uid: 19981 - type: SignDangerMed - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-35.5 - parent: 0 - type: Transform -- uid: 19982 - type: AnomalyScanner - components: - - pos: 41.59153,-33.7406 - parent: 0 - type: Transform -- uid: 19983 - type: MachineAnomalyVessel - components: - - pos: 41.5,-29.5 - parent: 0 - type: Transform -- uid: 19984 - type: MachineAnomalyVessel - components: - - pos: 45.5,-29.5 - parent: 0 - type: Transform -- uid: 19985 - type: SheetPlasma - components: - - pos: 41.511795,-34.58728 - parent: 0 - type: Transform -- uid: 19986 - type: FlashlightLantern - components: - - pos: 41.480545,-35.30919 - parent: 0 - type: Transform -- uid: 19987 - type: FlashlightLantern - components: - - pos: 41.68367,-35.481064 - parent: 0 - type: Transform -- uid: 19988 - type: MachineAPE - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-39.5 - parent: 0 - type: Transform -- uid: 19989 - type: MachineAPE - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-38.5 - parent: 0 - type: Transform -- uid: 19990 - type: MachineAPE - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-37.5 - parent: 0 - type: Transform -- uid: 19991 - type: WindoorScienceLocked - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-39.5 - parent: 0 - type: Transform -- uid: 19992 - type: WindoorScienceLocked - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-38.5 - parent: 0 - type: Transform -- uid: 19993 - type: WindoorScienceLocked - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-37.5 - parent: 0 - type: Transform -- uid: 19994 - type: ClosetRadiationSuitFilled - components: - - pos: 41.5,-37.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19995 - type: ClosetFireFilled - components: - - pos: 42.5,-37.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19996 - type: Table - components: - - pos: 41.5,-39.5 - parent: 0 - type: Transform -- uid: 19997 - type: Table - components: - - pos: 42.5,-39.5 - parent: 0 - type: Transform -- uid: 19998 - type: Wrench - components: - - pos: 42.53269,-39.476295 - parent: 0 - type: Transform -- uid: 19999 - type: TargetStrange - components: - - pos: 29.5,-34.5 - parent: 0 - type: Transform -- uid: 20000 - type: TargetHuman - components: - - pos: 34.5,-33.5 - parent: 0 - type: Transform -- uid: 20001 - type: Table - components: - - pos: 35.5,-33.5 - parent: 0 - type: Transform -- uid: 20002 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-33.5 - parent: 0 - type: Transform -- uid: 20003 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-35.5 - parent: 0 - type: Transform -- uid: 20004 - type: Poweredlight - components: - - pos: 30.5,-33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20005 - type: Poweredlight - components: - - pos: 35.5,-33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20006 - type: Airlock - components: - - pos: 29.5,-38.5 - parent: 0 - type: Transform -- uid: 20007 - type: ToiletDirtyWater - components: - - pos: 29.5,-37.5 - parent: 0 - type: Transform -- uid: 20008 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-39.5 - parent: 0 - type: Transform -- uid: 20009 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-39.5 - parent: 0 - type: Transform -- uid: 20010 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20011 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20012 - type: Poweredlight - components: - - pos: 33.5,-37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20013 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 32.5,-37.5 - parent: 0 - type: Transform -- uid: 20014 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 31.5,-37.5 - parent: 0 - type: Transform -- uid: 20015 - type: TableWood - components: - - pos: 33.5,-37.5 - parent: 0 - type: Transform -- uid: 20016 - type: Table - components: - - pos: 35.5,-39.5 - parent: 0 - type: Transform -- uid: 20017 - type: Table - components: - - pos: 34.5,-39.5 - parent: 0 - type: Transform -- uid: 20018 - type: KitchenMicrowave - components: - - pos: 35.5,-39.5 - parent: 0 - type: Transform -- uid: 20019 - type: DonkpocketBoxSpawner - components: - - pos: 34.5,-39.5 - parent: 0 - type: Transform -- uid: 20020 - type: ComfyChair - components: - - pos: 34.5,-37.5 - parent: 0 - type: Transform -- uid: 20021 - type: ComfyChair - components: - - pos: 35.5,-37.5 - parent: 0 - type: Transform -- uid: 20022 - type: PottedPlant13 - components: - - pos: 32.492805,-39.784893 - parent: 0 - type: Transform -- uid: 20023 - type: DrinkChangelingStingCan - components: - - pos: 33.416687,-37.39403 - parent: 0 - type: Transform -- uid: 20024 - type: Catwalk - components: - - pos: 38.5,-43.5 - parent: 0 - type: Transform -- uid: 20025 - type: AirlockMaintLocked - components: - - pos: 58.5,-46.5 - parent: 0 - type: Transform -- uid: 20026 - type: RandomSpawner - components: - - pos: 49.5,-45.5 - parent: 0 - type: Transform -- uid: 20027 - type: RandomSpawner - components: - - pos: 31.5,-43.5 - parent: 0 - type: Transform -- uid: 20028 - type: RandomSpawner - components: - - pos: 25.5,-51.5 - parent: 0 - type: Transform -- uid: 20029 - type: RandomSpawner - components: - - pos: 30.5,-50.5 - parent: 0 - type: Transform -- uid: 20030 - type: SheetGlass - components: - - pos: 50.554005,-16.478584 - parent: 0 - type: Transform -- uid: 20031 - type: SheetGlass - components: - - pos: 50.554005,-16.478584 - parent: 0 - type: Transform -- uid: 20032 - type: SheetSteel - components: - - pos: 41.62325,-39.485073 - parent: 0 - type: Transform -- uid: 20033 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20034 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - type: Timer -- uid: 20035 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: 32.5,-19.5 - parent: 0 - type: Transform -- uid: 20036 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - type: Timer -- uid: 20037 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - type: Timer -- uid: 20038 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20039 - type: HospitalCurtainsOpen - components: - - pos: 33.5,-24.5 - parent: 0 - type: Transform -- uid: 20040 - type: HospitalCurtainsOpen - components: - - pos: 35.5,-24.5 - parent: 0 - type: Transform -- uid: 20041 - type: HospitalCurtainsOpen - components: - - pos: 34.5,-24.5 - parent: 0 - type: Transform -- uid: 20042 - type: Sink - components: - - pos: 32.5,-25.5 - parent: 0 - type: Transform -- uid: 20043 - type: OperatingTable - components: - - pos: 34.5,-26.5 - parent: 0 - type: Transform -- uid: 20044 - type: computerBodyScanner - components: - - rot: 3.141592653589793 rad - pos: 35.5,-26.5 - parent: 0 - type: Transform -- uid: 20045 - type: Morgue - components: - - rot: 3.141592653589793 rad - pos: 32.5,-26.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20046 - type: Table - components: - - pos: 33.5,-26.5 - parent: 0 - type: Transform -- uid: 20047 - type: WindoorScienceLocked - components: - - rot: 3.141592653589793 rad - pos: 37.5,-24.5 - parent: 0 - type: Transform -- uid: 20048 - type: IntercomScience - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-31.5 - parent: 0 - type: Transform -- uid: 20049 - type: IntercomScience - components: - - pos: 28.5,-54.5 - parent: 0 - type: Transform -- uid: 20050 - type: IntercomSupply - components: - - pos: 27.5,-54.5 - parent: 0 - type: Transform -- uid: 20051 - type: Table - components: - - pos: 28.5,-27.5 - parent: 0 - type: Transform -- uid: 20052 - type: MachineFrame - components: - - pos: 27.5,-23.5 - parent: 0 - type: Transform -- uid: 20053 - type: MachineFrame - components: - - pos: 29.5,-23.5 - parent: 0 - type: Transform -- uid: 20054 - type: ComputerFrame - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-21.5 - parent: 0 - type: Transform -- uid: 20055 - type: ComputerFrame - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-21.5 - parent: 0 - type: Transform -- uid: 20056 - type: ComputerResearchAndDevelopment - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-23.5 - parent: 0 - type: Transform -- uid: 20057 - type: Table - components: - - pos: 36.5,-23.5 - parent: 0 - type: Transform -- uid: 20058 - type: PowerCellRecharger - components: - - pos: 36.5,-23.5 - parent: 0 - type: Transform -- uid: 20059 - type: PowerCellRecharger - components: - - pos: 39.5,-20.5 - parent: 0 - type: Transform -- uid: 20060 - type: WardrobeRobotics - components: - - pos: 30.5,-26.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20061 - type: EncryptionKeyRobo - components: - - pos: 32.491222,-19.448307 - parent: 0 - type: Transform -- uid: 20062 - type: ToolboxElectricalFilled - components: - - pos: 28.382317,-27.209904 - parent: 0 - type: Transform -- uid: 20063 - type: ToolboxMechanicalFilled - components: - - pos: 28.522942,-27.506779 - parent: 0 - type: Transform -- uid: 20064 - type: ClothingHandsGlovesRobohands - components: - - pos: 29.491692,-22.491154 - parent: 0 - type: Transform -- uid: 20065 - type: ClothingOuterCardborg - components: - - pos: 33.538567,-26.459904 - parent: 0 - type: Transform -- uid: 20066 - type: ClothingHeadHatCardborg - components: - - pos: 33.52294,-26.147404 - parent: 0 - type: Transform -- uid: 20067 - type: SheetPlasteel - components: - - pos: 39.52294,-21.288029 - parent: 0 - type: Transform -- uid: 20068 - type: CableApcStack - components: - - pos: 39.476067,-19.459904 - parent: 0 - type: Transform -- uid: 20069 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-19.5 - parent: 0 - type: Transform -- uid: 20070 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20071 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20072 - type: Poweredlight - components: - - pos: 29.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20073 - type: Poweredlight - components: - - pos: 39.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20074 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20075 - type: Catwalk - components: - - pos: 56.5,-43.5 - parent: 0 - type: Transform -- uid: 20076 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: 57.5,-43.5 - parent: 0 - type: Transform -- uid: 20077 - type: filingCabinetDrawerRandom - components: - - pos: 55.5,-43.5 - parent: 0 - type: Transform -- uid: 20078 - type: Table - components: - - pos: 62.5,-42.5 - parent: 0 - type: Transform -- uid: 20079 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-42.5 - parent: 0 - type: Transform -- uid: 20080 - type: ClothingMaskGasAtmos - components: - - pos: 62.514362,-42.385197 - parent: 0 - type: Transform -- uid: 20081 - type: Wrench - components: - - pos: 62.451862,-42.36957 - parent: 0 - type: Transform -- uid: 20082 - type: Crowbar - components: - - pos: 62.451862,-42.416447 - parent: 0 - type: Transform -- uid: 20083 - type: SignAnomaly - components: - - pos: 50.5,-34.5 - parent: 0 - type: Transform -- uid: 20084 - type: SignScience1 - components: - - pos: 26.5,-48.5 - parent: 0 - type: Transform -- uid: 20085 - type: RandomPosterAny - components: - - pos: 29.5,-44.5 - parent: 0 - type: Transform -- uid: 20086 - type: RandomPosterAny - components: - - pos: 26.5,-51.5 - parent: 0 - type: Transform -- uid: 20087 - type: RandomPosterAny - components: - - pos: 28.5,-40.5 - parent: 0 - type: Transform -- uid: 20088 - type: RandomPosterAny - components: - - pos: 22.5,-28.5 - parent: 0 - type: Transform -- uid: 20089 - type: Catwalk - components: - - pos: 124.5,9.5 - parent: 0 - type: Transform -- uid: 20090 - type: SignHydro2 - components: - - pos: -2.5,37.5 - parent: 0 - type: Transform -- uid: 20091 - type: SignHydro1 - components: - - pos: -11.5,33.5 - parent: 0 - type: Transform -- uid: 20092 - type: SignHydro3 - components: - - pos: -12.5,43.5 - parent: 0 - type: Transform -- uid: 20093 - type: WallReinforced - components: - - pos: 63.5,-4.5 - parent: 0 - type: Transform -- uid: 20094 - type: WallReinforced - components: - - pos: 63.5,-3.5 - parent: 0 - type: Transform -- uid: 20095 - type: WallReinforced - components: - - pos: 63.5,-2.5 - parent: 0 - type: Transform -- uid: 20096 - type: WallReinforced - components: - - pos: 63.5,-1.5 - parent: 0 - type: Transform -- uid: 20097 - type: WallReinforced - components: - - pos: 63.5,-0.5 - parent: 0 - type: Transform -- uid: 20098 - type: WallReinforced - components: - - pos: 63.5,0.5 - parent: 0 - type: Transform -- uid: 20099 - type: WallReinforced - components: - - pos: 63.5,1.5 - parent: 0 - type: Transform -- uid: 20100 - type: WallReinforced - components: - - pos: 63.5,2.5 - parent: 0 - type: Transform -- uid: 20101 - type: WallReinforced - components: - - pos: 63.5,3.5 - parent: 0 - type: Transform -- uid: 20102 - type: WallReinforced - components: - - pos: 63.5,4.5 - parent: 0 - type: Transform -- uid: 20103 - type: WallReinforced - components: - - pos: 58.5,0.5 - parent: 0 - type: Transform -- uid: 20104 - type: WallReinforced - components: - - pos: 62.5,0.5 - parent: 0 - type: Transform -- uid: 20105 - type: WallReinforced - components: - - pos: 62.5,4.5 - parent: 0 - type: Transform -- uid: 20106 - type: WallReinforced - components: - - pos: 61.5,4.5 - parent: 0 - type: Transform -- uid: 20107 - type: WallReinforced - components: - - pos: 61.5,3.5 - parent: 0 - type: Transform -- uid: 20108 - type: WallReinforced - components: - - pos: 60.5,3.5 - parent: 0 - type: Transform -- uid: 20109 - type: WallReinforced - components: - - pos: 59.5,3.5 - parent: 0 - type: Transform -- uid: 20110 - type: WallReinforced - components: - - pos: 58.5,3.5 - parent: 0 - type: Transform -- uid: 20111 - type: WallReinforced - components: - - pos: 57.5,3.5 - parent: 0 - type: Transform -- uid: 20112 - type: WallReinforced - components: - - pos: 57.5,2.5 - parent: 0 - type: Transform -- uid: 20113 - type: WallReinforced - components: - - pos: 57.5,1.5 - parent: 0 - type: Transform -- uid: 20114 - type: Window - components: - - pos: 57.5,-12.5 - parent: 0 - type: Transform -- uid: 20115 - type: Window - components: - - pos: 62.5,-12.5 - parent: 0 - type: Transform -- uid: 20116 - type: MountainRock - components: - - pos: 58.5,1.5 - parent: 0 - type: Transform -- uid: 20117 - type: MountainRock - components: - - pos: 58.5,2.5 - parent: 0 - type: Transform -- uid: 20118 - type: MountainRock - components: - - pos: 62.5,1.5 - parent: 0 - type: Transform -- uid: 20119 - type: MountainRock - components: - - pos: 62.5,2.5 - parent: 0 - type: Transform -- uid: 20120 - type: MountainRock - components: - - pos: 62.5,3.5 - parent: 0 - type: Transform -- uid: 20121 - type: MountainRock - components: - - pos: 60.5,4.5 - parent: 0 - type: Transform -- uid: 20122 - type: MountainRock - components: - - pos: 58.5,4.5 - parent: 0 - type: Transform -- uid: 20123 - type: MountainRock - components: - - pos: 57.5,-7.5 - parent: 0 - type: Transform -- uid: 20124 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-7.5 - parent: 0 - type: Transform -- uid: 20125 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-6.5 - parent: 0 - type: Transform -- uid: 20126 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-8.5 - parent: 0 - type: Transform -- uid: 20127 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: 56.5,-5.5 - parent: 0 - type: Transform -- uid: 20128 - type: ReinforcedWindow - components: - - pos: 59.5,-8.5 - parent: 0 - type: Transform -- uid: 20129 - type: ReinforcedWindow - components: - - pos: 59.5,-6.5 - parent: 0 - type: Transform -- uid: 20130 - type: ReinforcedWindow - components: - - pos: 61.5,-6.5 - parent: 0 - type: Transform -- uid: 20131 - type: ReinforcedWindow - components: - - pos: 61.5,-8.5 - parent: 0 - type: Transform -- uid: 20132 - type: ReinforcedWindow - components: - - pos: 61.5,0.5 - parent: 0 - type: Transform -- uid: 20133 - type: ReinforcedWindow - components: - - pos: 59.5,0.5 - parent: 0 - type: Transform -- uid: 20134 - type: WallSolid - components: - - pos: 58.5,-13.5 - parent: 0 - type: Transform -- uid: 20135 - type: WallSolid - components: - - pos: 60.5,-13.5 - parent: 0 - type: Transform -- uid: 20136 - type: CableMV - components: - - pos: 64.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20137 - type: CableMV - components: - - pos: 65.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20138 - type: CableMV - components: - - pos: 65.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20139 - type: CableMV - components: - - pos: 65.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20140 - type: CableMV - components: - - pos: 65.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20141 - type: CableMV - components: - - pos: 65.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20142 - type: CableMV - components: - - pos: 65.5,-30.5 - parent: 0 - type: Transform -- uid: 20143 - type: CableMV - components: - - pos: 65.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20144 - type: CableMV - components: - - pos: 64.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20145 - type: CableMV - components: - - pos: 64.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20146 - type: Catwalk - components: - - pos: 77.5,1.5 - parent: 0 - type: Transform -- uid: 20147 - type: Catwalk - components: - - pos: 76.5,1.5 - parent: 0 - type: Transform -- uid: 20148 - type: Catwalk - components: - - pos: 74.5,-6.5 - parent: 0 - type: Transform -- uid: 20149 - type: Catwalk - components: - - pos: 73.5,-6.5 - parent: 0 - type: Transform -- uid: 20150 - type: Catwalk - components: - - pos: 72.5,-6.5 - parent: 0 - type: Transform -- uid: 20151 - type: Catwalk - components: - - pos: 71.5,-6.5 - parent: 0 - type: Transform -- uid: 20152 - type: Catwalk - components: - - pos: 70.5,-6.5 - parent: 0 - type: Transform -- uid: 20153 - type: Catwalk - components: - - pos: 70.5,-5.5 - parent: 0 - type: Transform -- uid: 20154 - type: Catwalk - components: - - pos: 70.5,-4.5 - parent: 0 - type: Transform -- uid: 20155 - type: Catwalk - components: - - pos: 74.5,-2.5 - parent: 0 - type: Transform -- uid: 20156 - type: Catwalk - components: - - pos: 74.5,-1.5 - parent: 0 - type: Transform -- uid: 20157 - type: Catwalk - components: - - pos: 70.5,-2.5 - parent: 0 - type: Transform -- uid: 20158 - type: Catwalk - components: - - pos: 70.5,-1.5 - parent: 0 - type: Transform -- uid: 20159 - type: Catwalk - components: - - pos: 70.5,-0.5 - parent: 0 - type: Transform -- uid: 20160 - type: Catwalk - components: - - pos: 70.5,0.5 - parent: 0 - type: Transform -- uid: 20161 - type: Catwalk - components: - - pos: 70.5,1.5 - parent: 0 - type: Transform -- uid: 20162 - type: Catwalk - components: - - pos: 71.5,1.5 - parent: 0 - type: Transform -- uid: 20163 - type: Catwalk - components: - - pos: 72.5,1.5 - parent: 0 - type: Transform -- uid: 20164 - type: Catwalk - components: - - pos: 73.5,1.5 - parent: 0 - type: Transform -- uid: 20165 - type: Catwalk - components: - - pos: 74.5,1.5 - parent: 0 - type: Transform -- uid: 20166 - type: Catwalk - components: - - pos: 74.5,-4.5 - parent: 0 - type: Transform -- uid: 20167 - type: ReinforcedWindow - components: - - pos: 67.5,-13.5 - parent: 0 - type: Transform -- uid: 20168 - type: ReinforcedWindow - components: - - pos: 69.5,-13.5 - parent: 0 - type: Transform -- uid: 20169 - type: ReinforcedWindow - components: - - pos: 70.5,-14.5 - parent: 0 - type: Transform -- uid: 20170 - type: ReinforcedWindow - components: - - pos: 70.5,-16.5 - parent: 0 - type: Transform -- uid: 20171 - type: ReinforcedWindow - components: - - pos: 69.5,-17.5 - parent: 0 - type: Transform -- uid: 20172 - type: ReinforcedWindow - components: - - pos: 67.5,-17.5 - parent: 0 - type: Transform -- uid: 20173 - type: ReinforcedWindow - components: - - pos: 70.5,-10.5 - parent: 0 - type: Transform -- uid: 20174 - type: ReinforcedWindow - components: - - pos: 70.5,-8.5 - parent: 0 - type: Transform -- uid: 20175 - type: ReinforcedWindow - components: - - pos: 74.5,-10.5 - parent: 0 - type: Transform -- uid: 20176 - type: ReinforcedWindow - components: - - pos: 74.5,-9.5 - parent: 0 - type: Transform -- uid: 20177 - type: ReinforcedWindow - components: - - pos: 74.5,-8.5 - parent: 0 - type: Transform -- uid: 20178 - type: ReinforcedWindow - components: - - pos: 63.5,-13.5 - parent: 0 - type: Transform -- uid: 20179 - type: ReinforcedWindow - components: - - pos: 75.5,-21.5 - parent: 0 - type: Transform -- uid: 20180 - type: ReinforcedWindow - components: - - pos: 77.5,-21.5 - parent: 0 - type: Transform -- uid: 20181 - type: ReinforcedWindow - components: - - pos: 75.5,-17.5 - parent: 0 - type: Transform -- uid: 20182 - type: ReinforcedWindow - components: - - pos: 77.5,-17.5 - parent: 0 - type: Transform -- uid: 20183 - type: ReinforcedWindow - components: - - pos: 79.5,-17.5 - parent: 0 - type: Transform -- uid: 20184 - type: ReinforcedWindow - components: - - pos: 67.5,-22.5 - parent: 0 - type: Transform -- uid: 20185 - type: ReinforcedWindow - components: - - pos: 69.5,-22.5 - parent: 0 - type: Transform -- uid: 20186 - type: ReinforcedWindow - components: - - pos: 80.5,-14.5 - parent: 0 - type: Transform -- uid: 20187 - type: ReinforcedWindow - components: - - pos: 80.5,-12.5 - parent: 0 - type: Transform -- uid: 20188 - type: ReinforcedPlasmaWindow - components: - - pos: 87.5,-12.5 - parent: 0 - type: Transform -- uid: 20189 - type: ReinforcedPlasmaWindow - components: - - pos: 87.5,-11.5 - parent: 0 - type: Transform -- uid: 20190 - type: WallReinforced - components: - - pos: 87.5,-13.5 - parent: 0 - type: Transform -- uid: 20191 - type: WallReinforced - components: - - pos: 87.5,-14.5 - parent: 0 - type: Transform -- uid: 20192 - type: WallReinforced - components: - - pos: 87.5,-15.5 - parent: 0 - type: Transform -- uid: 20193 - type: WallReinforced - components: - - pos: 87.5,-16.5 - parent: 0 - type: Transform -- uid: 20194 - type: WallReinforced - components: - - pos: 87.5,-17.5 - parent: 0 - type: Transform -- uid: 20195 - type: WallReinforced - components: - - pos: 86.5,-17.5 - parent: 0 - type: Transform -- uid: 20196 - type: WallReinforced - components: - - pos: 85.5,-17.5 - parent: 0 - type: Transform -- uid: 20197 - type: WallReinforced - components: - - pos: 84.5,-17.5 - parent: 0 - type: Transform -- uid: 20198 - type: WallReinforced - components: - - pos: 83.5,-17.5 - parent: 0 - type: Transform -- uid: 20199 - type: WallReinforced - components: - - pos: 82.5,-17.5 - parent: 0 - type: Transform -- uid: 20200 - type: WallReinforced - components: - - pos: 81.5,-17.5 - parent: 0 - type: Transform -- uid: 20201 - type: WallReinforced - components: - - pos: 80.5,-17.5 - parent: 0 - type: Transform -- uid: 20202 - type: WallReinforced - components: - - pos: 80.5,-16.5 - parent: 0 - type: Transform -- uid: 20203 - type: WallReinforced - components: - - pos: 80.5,-15.5 - parent: 0 - type: Transform -- uid: 20204 - type: WallReinforced - components: - - pos: 87.5,-9.5 - parent: 0 - type: Transform -- uid: 20205 - type: WallReinforced - components: - - pos: 87.5,-10.5 - parent: 0 - type: Transform -- uid: 20206 - type: WallReinforced - components: - - pos: 86.5,-9.5 - parent: 0 - type: Transform -- uid: 20207 - type: WallReinforced - components: - - pos: 85.5,-9.5 - parent: 0 - type: Transform -- uid: 20208 - type: WallReinforced - components: - - pos: 84.5,-9.5 - parent: 0 - type: Transform -- uid: 20209 - type: WallReinforced - components: - - pos: 83.5,-9.5 - parent: 0 - type: Transform -- uid: 20210 - type: WallReinforced - components: - - pos: 82.5,-9.5 - parent: 0 - type: Transform -- uid: 20211 - type: WallReinforced - components: - - pos: 81.5,-9.5 - parent: 0 - type: Transform -- uid: 20212 - type: WallReinforced - components: - - pos: 80.5,-9.5 - parent: 0 - type: Transform -- uid: 20213 - type: WallReinforced - components: - - pos: 80.5,-10.5 - parent: 0 - type: Transform -- uid: 20214 - type: WallReinforced - components: - - pos: 80.5,-11.5 - parent: 0 - type: Transform -- uid: 20215 - type: WallReinforced - components: - - pos: 84.5,-8.5 - parent: 0 - type: Transform -- uid: 20216 - type: WallReinforced - components: - - pos: 84.5,-7.5 - parent: 0 - type: Transform -- uid: 20217 - type: WallReinforced - components: - - pos: 88.5,-9.5 - parent: 0 - type: Transform -- uid: 20218 - type: WallReinforced - components: - - pos: 88.5,-8.5 - parent: 0 - type: Transform -- uid: 20219 - type: WallReinforced - components: - - pos: 88.5,-7.5 - parent: 0 - type: Transform -- uid: 20220 - type: WallReinforced - components: - - pos: 88.5,-5.5 - parent: 0 - type: Transform -- uid: 20221 - type: WallReinforced - components: - - pos: 87.5,-2.5 - parent: 0 - type: Transform -- uid: 20222 - type: WallReinforced - components: - - pos: 88.5,-2.5 - parent: 0 - type: Transform -- uid: 20223 - type: WallReinforced - components: - - pos: 88.5,-3.5 - parent: 0 - type: Transform -- uid: 20224 - type: WallReinforced - components: - - pos: 85.5,-2.5 - parent: 0 - type: Transform -- uid: 20225 - type: WallReinforced - components: - - pos: 84.5,-2.5 - parent: 0 - type: Transform -- uid: 20226 - type: WallReinforced - components: - - pos: 84.5,-3.5 - parent: 0 - type: Transform -- uid: 20227 - type: GasVentPump - components: - - pos: 76.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20228 - type: ReinforcedPlasmaWindow - components: - - pos: 84.5,-4.5 - parent: 0 - type: Transform -- uid: 20229 - type: ReinforcedPlasmaWindow - components: - - pos: 79.5,-1.5 - parent: 0 - type: Transform -- uid: 20230 - type: ReinforcedPlasmaWindow - components: - - pos: 80.5,-1.5 - parent: 0 - type: Transform -- uid: 20231 - type: ReinforcedPlasmaWindow - components: - - pos: 81.5,-1.5 - parent: 0 - type: Transform -- uid: 20232 - type: WallReinforced - components: - - pos: 84.5,-1.5 - parent: 0 - type: Transform -- uid: 20233 - type: Grille - components: - - pos: 88.5,-0.5 - parent: 0 - type: Transform -- uid: 20234 - type: WallReinforced - components: - - pos: 84.5,3.5 - parent: 0 - type: Transform -- uid: 20235 - type: WallReinforced - components: - - pos: 84.5,4.5 - parent: 0 - type: Transform -- uid: 20236 - type: WallReinforced - components: - - pos: 85.5,4.5 - parent: 0 - type: Transform -- uid: 20237 - type: WallReinforced - components: - - pos: 86.5,4.5 - parent: 0 - type: Transform -- uid: 20238 - type: WallReinforced - components: - - pos: 87.5,4.5 - parent: 0 - type: Transform -- uid: 20239 - type: WallReinforced - components: - - pos: 88.5,4.5 - parent: 0 - type: Transform -- uid: 20240 - type: WallReinforced - components: - - pos: 75.5,1.5 - parent: 0 - type: Transform -- uid: 20241 - type: WallReinforced - components: - - pos: 88.5,3.5 - parent: 0 - type: Transform -- uid: 20242 - type: CableHV - components: - - pos: 88.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20243 - type: WallReinforced - components: - - pos: 84.5,2.5 - parent: 0 - type: Transform -- uid: 20244 - type: WallReinforced - components: - - pos: 75.5,2.5 - parent: 0 - type: Transform -- uid: 20245 - type: WallReinforced - components: - - pos: 74.5,2.5 - parent: 0 - type: Transform -- uid: 20246 - type: WallReinforced - components: - - pos: 73.5,2.5 - parent: 0 - type: Transform -- uid: 20247 - type: WallReinforced - components: - - pos: 72.5,2.5 - parent: 0 - type: Transform -- uid: 20248 - type: WallReinforced - components: - - pos: 71.5,2.5 - parent: 0 - type: Transform -- uid: 20249 - type: WallReinforced - components: - - pos: 70.5,2.5 - parent: 0 - type: Transform -- uid: 20250 - type: WallReinforced - components: - - pos: 69.5,2.5 - parent: 0 - type: Transform -- uid: 20251 - type: WallReinforced - components: - - pos: 69.5,1.5 - parent: 0 - type: Transform -- uid: 20252 - type: WallReinforced - components: - - pos: 69.5,0.5 - parent: 0 - type: Transform -- uid: 20253 - type: WallReinforced - components: - - pos: 69.5,-0.5 - parent: 0 - type: Transform -- uid: 20254 - type: WallReinforced - components: - - pos: 69.5,-1.5 - parent: 0 - type: Transform -- uid: 20255 - type: WallReinforced - components: - - pos: 69.5,-2.5 - parent: 0 - type: Transform -- uid: 20256 - type: WallReinforced - components: - - pos: 69.5,-3.5 - parent: 0 - type: Transform -- uid: 20257 - type: WallReinforced - components: - - pos: 69.5,-4.5 - parent: 0 - type: Transform -- uid: 20258 - type: WallReinforced - components: - - pos: 69.5,-5.5 - parent: 0 - type: Transform -- uid: 20259 - type: WallReinforced - components: - - pos: 69.5,-6.5 - parent: 0 - type: Transform -- uid: 20260 - type: WallReinforced - components: - - pos: 69.5,-7.5 - parent: 0 - type: Transform -- uid: 20261 - type: WallReinforced - components: - - pos: 70.5,-7.5 - parent: 0 - type: Transform -- uid: 20262 - type: WallReinforced - components: - - pos: 71.5,-7.5 - parent: 0 - type: Transform -- uid: 20263 - type: WallReinforced - components: - - pos: 72.5,-7.5 - parent: 0 - type: Transform -- uid: 20264 - type: WallReinforced - components: - - pos: 73.5,-7.5 - parent: 0 - type: Transform -- uid: 20265 - type: WallReinforced - components: - - pos: 82.5,2.5 - parent: 0 - type: Transform -- uid: 20266 - type: WallReinforced - components: - - pos: 81.5,2.5 - parent: 0 - type: Transform -- uid: 20267 - type: WallReinforced - components: - - pos: 80.5,2.5 - parent: 0 - type: Transform -- uid: 20268 - type: WallReinforced - components: - - pos: 79.5,2.5 - parent: 0 - type: Transform -- uid: 20269 - type: WallReinforced - components: - - pos: 78.5,2.5 - parent: 0 - type: Transform -- uid: 20270 - type: WallReinforced - components: - - pos: 77.5,2.5 - parent: 0 - type: Transform -- uid: 20271 - type: WallReinforced - components: - - pos: 76.5,2.5 - parent: 0 - type: Transform -- uid: 20272 - type: ReinforcedWindow - components: - - pos: 74.5,-3.5 - parent: 0 - type: Transform -- uid: 20273 - type: ReinforcedWindow - components: - - pos: 70.5,-3.5 - parent: 0 - type: Transform -- uid: 20274 - type: ReinforcedWindow - components: - - pos: 75.5,-5.5 - parent: 0 - type: Transform -- uid: 20275 - type: ReinforcedWindow - components: - - pos: 75.5,-4.5 - parent: 0 - type: Transform -- uid: 20276 - type: WallSolid - components: - - pos: 74.5,-7.5 - parent: 0 - type: Transform -- uid: 20277 - type: WallSolid - components: - - pos: 75.5,-7.5 - parent: 0 - type: Transform -- uid: 20278 - type: WallSolid - components: - - pos: 76.5,-7.5 - parent: 0 - type: Transform -- uid: 20279 - type: WallSolid - components: - - pos: 77.5,-7.5 - parent: 0 - type: Transform -- uid: 20280 - type: WallSolid - components: - - pos: 75.5,-6.5 - parent: 0 - type: Transform -- uid: 20281 - type: WallSolid - components: - - pos: 80.5,-8.5 - parent: 0 - type: Transform -- uid: 20282 - type: WallSolid - components: - - pos: 80.5,-7.5 - parent: 0 - type: Transform -- uid: 20283 - type: WallSolid - components: - - pos: 82.5,-1.5 - parent: 0 - type: Transform -- uid: 20284 - type: WallSolid - components: - - pos: 78.5,-1.5 - parent: 0 - type: Transform -- uid: 20285 - type: WallSolid - components: - - pos: 76.5,-1.5 - parent: 0 - type: Transform -- uid: 20286 - type: WallSolid - components: - - pos: 75.5,-0.5 - parent: 0 - type: Transform -- uid: 20287 - type: WallSolid - components: - - pos: 75.5,-1.5 - parent: 0 - type: Transform -- uid: 20288 - type: WallSolid - components: - - pos: 75.5,-2.5 - parent: 0 - type: Transform -- uid: 20289 - type: WallSolid - components: - - pos: 75.5,-3.5 - parent: 0 - type: Transform -- uid: 20290 - type: WallSolid - components: - - pos: 83.5,-16.5 - parent: 0 - type: Transform -- uid: 20291 - type: WallSolid - components: - - pos: 83.5,-15.5 - parent: 0 - type: Transform -- uid: 20292 - type: WallSolid - components: - - pos: 83.5,-14.5 - parent: 0 - type: Transform -- uid: 20293 - type: WallSolid - components: - - pos: 84.5,-14.5 - parent: 0 - type: Transform -- uid: 20294 - type: WallSolid - components: - - pos: 86.5,-14.5 - parent: 0 - type: Transform -- uid: 20295 - type: WallReinforced - components: - - pos: 66.5,-17.5 - parent: 0 - type: Transform -- uid: 20296 - type: WallReinforced - components: - - pos: 66.5,-16.5 - parent: 0 - type: Transform -- uid: 20297 - type: WallReinforced - components: - - pos: 66.5,-15.5 - parent: 0 - type: Transform -- uid: 20298 - type: WallReinforced - components: - - pos: 66.5,-14.5 - parent: 0 - type: Transform -- uid: 20299 - type: WallReinforced - components: - - pos: 66.5,-13.5 - parent: 0 - type: Transform -- uid: 20300 - type: WallReinforced - components: - - pos: 65.5,-13.5 - parent: 0 - type: Transform -- uid: 20301 - type: WallReinforced - components: - - pos: 70.5,-17.5 - parent: 0 - type: Transform -- uid: 20302 - type: WallReinforced - components: - - pos: 71.5,-17.5 - parent: 0 - type: Transform -- uid: 20303 - type: WallReinforced - components: - - pos: 72.5,-17.5 - parent: 0 - type: Transform -- uid: 20304 - type: WallReinforced - components: - - pos: 73.5,-17.5 - parent: 0 - type: Transform -- uid: 20305 - type: WallReinforced - components: - - pos: 74.5,-17.5 - parent: 0 - type: Transform -- uid: 20306 - type: WallReinforced - components: - - pos: 74.5,-16.5 - parent: 0 - type: Transform -- uid: 20307 - type: WallReinforced - components: - - pos: 70.5,-22.5 - parent: 0 - type: Transform -- uid: 20308 - type: WallReinforced - components: - - pos: 71.5,-22.5 - parent: 0 - type: Transform -- uid: 20309 - type: WallReinforced - components: - - pos: 72.5,-22.5 - parent: 0 - type: Transform -- uid: 20310 - type: WallReinforced - components: - - pos: 73.5,-22.5 - parent: 0 - type: Transform -- uid: 20311 - type: WallReinforced - components: - - pos: 74.5,-22.5 - parent: 0 - type: Transform -- uid: 20312 - type: WallReinforced - components: - - pos: 74.5,-21.5 - parent: 0 - type: Transform -- uid: 20313 - type: WallReinforced - components: - - pos: 74.5,-20.5 - parent: 0 - type: Transform -- uid: 20314 - type: WallReinforced - components: - - pos: 74.5,-19.5 - parent: 0 - type: Transform -- uid: 20315 - type: WallReinforced - components: - - pos: 74.5,-18.5 - parent: 0 - type: Transform -- uid: 20316 - type: WallReinforced - components: - - pos: 78.5,-17.5 - parent: 0 - type: Transform -- uid: 20317 - type: WallReinforced - components: - - pos: 82.5,-18.5 - parent: 0 - type: Transform -- uid: 20318 - type: WallReinforced - components: - - pos: 82.5,-19.5 - parent: 0 - type: Transform -- uid: 20319 - type: WallReinforced - components: - - pos: 78.5,-21.5 - parent: 0 - type: Transform -- uid: 20320 - type: WallReinforced - components: - - pos: 78.5,-22.5 - parent: 0 - type: Transform -- uid: 20321 - type: WallReinforced - components: - - pos: 82.5,-21.5 - parent: 0 - type: Transform -- uid: 20322 - type: WallReinforced - components: - - pos: 82.5,-22.5 - parent: 0 - type: Transform -- uid: 20323 - type: WallReinforced - components: - - pos: 78.5,-23.5 - parent: 0 - type: Transform -- uid: 20324 - type: WallReinforced - components: - - pos: 78.5,-24.5 - parent: 0 - type: Transform -- uid: 20325 - type: WallReinforced - components: - - pos: 78.5,-25.5 - parent: 0 - type: Transform -- uid: 20326 - type: WallReinforced - components: - - pos: 82.5,-23.5 - parent: 0 - type: Transform -- uid: 20327 - type: WallReinforced - components: - - pos: 82.5,-24.5 - parent: 0 - type: Transform -- uid: 20328 - type: WallReinforced - components: - - pos: 82.5,-25.5 - parent: 0 - type: Transform -- uid: 20329 - type: WallReinforced - components: - - pos: 81.5,-25.5 - parent: 0 - type: Transform -- uid: 20330 - type: WallReinforced - components: - - pos: 80.5,-25.5 - parent: 0 - type: Transform -- uid: 20331 - type: WallReinforced - components: - - pos: 79.5,-25.5 - parent: 0 - type: Transform -- uid: 20332 - type: SMESBasic - components: - - pos: 87.5,0.5 - parent: 0 - type: Transform -- uid: 20333 - type: CableHV - components: - - pos: 87.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20334 - type: CableHV - components: - - pos: 87.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20335 - type: WallReinforced - components: - - pos: 117.5,-18.5 - parent: 0 - type: Transform -- uid: 20336 - type: WallReinforced - components: - - pos: 116.5,-18.5 - parent: 0 - type: Transform -- uid: 20337 - type: WallReinforced - components: - - pos: 115.5,-18.5 - parent: 0 - type: Transform -- uid: 20338 - type: WallReinforced - components: - - pos: 114.5,-18.5 - parent: 0 - type: Transform -- uid: 20339 - type: WallReinforced - components: - - pos: 105.5,-15.5 - parent: 0 - type: Transform -- uid: 20340 - type: WallReinforced - components: - - pos: 105.5,-17.5 - parent: 0 - type: Transform -- uid: 20341 - type: WallReinforced - components: - - pos: 111.5,-18.5 - parent: 0 - type: Transform -- uid: 20342 - type: WallReinforced - components: - - pos: 110.5,-18.5 - parent: 0 - type: Transform -- uid: 20343 - type: WallReinforced - components: - - pos: 109.5,-18.5 - parent: 0 - type: Transform -- uid: 20344 - type: WallReinforced - components: - - pos: 108.5,-18.5 - parent: 0 - type: Transform -- uid: 20345 - type: WallReinforced - components: - - pos: 105.5,-18.5 - parent: 0 - type: Transform -- uid: 20346 - type: ReinforcedWindow - components: - - pos: 83.5,-22.5 - parent: 0 - type: Transform -- uid: 20347 - type: ReinforcedWindow - components: - - pos: 84.5,-22.5 - parent: 0 - type: Transform -- uid: 20348 - type: ReinforcedWindow - components: - - pos: 85.5,-22.5 - parent: 0 - type: Transform -- uid: 20349 - type: ReinforcedWindow - components: - - pos: 87.5,-22.5 - parent: 0 - type: Transform -- uid: 20350 - type: ReinforcedWindow - components: - - pos: 88.5,-22.5 - parent: 0 - type: Transform -- uid: 20351 - type: ReinforcedWindow - components: - - pos: 89.5,-22.5 - parent: 0 - type: Transform -- uid: 20352 - type: WallReinforced - components: - - pos: 90.5,-22.5 - parent: 0 - type: Transform -- uid: 20353 - type: WallReinforced - components: - - pos: 90.5,-21.5 - parent: 0 - type: Transform -- uid: 20354 - type: WallReinforced - components: - - pos: 90.5,-19.5 - parent: 0 - type: Transform -- uid: 20355 - type: WallReinforced - components: - - pos: 90.5,-18.5 - parent: 0 - type: Transform -- uid: 20356 - type: WallReinforced - components: - - pos: 90.5,-17.5 - parent: 0 - type: Transform -- uid: 20357 - type: WallReinforced - components: - - pos: 90.5,-16.5 - parent: 0 - type: Transform -- uid: 20358 - type: WallReinforced - components: - - pos: 90.5,-15.5 - parent: 0 - type: Transform -- uid: 20359 - type: WallReinforced - components: - - pos: 90.5,-14.5 - parent: 0 - type: Transform -- uid: 20360 - type: WallReinforced - components: - - pos: 90.5,-13.5 - parent: 0 - type: Transform -- uid: 20361 - type: WallReinforced - components: - - pos: 91.5,-18.5 - parent: 0 - type: Transform -- uid: 20362 - type: WallReinforced - components: - - pos: 92.5,-18.5 - parent: 0 - type: Transform -- uid: 20363 - type: WallReinforced - components: - - pos: 93.5,-18.5 - parent: 0 - type: Transform -- uid: 20364 - type: WallReinforced - components: - - pos: 94.5,-18.5 - parent: 0 - type: Transform -- uid: 20365 - type: WallReinforced - components: - - pos: 95.5,-18.5 - parent: 0 - type: Transform -- uid: 20366 - type: WallReinforced - components: - - pos: 96.5,-18.5 - parent: 0 - type: Transform -- uid: 20367 - type: WallReinforced - components: - - pos: 97.5,-18.5 - parent: 0 - type: Transform -- uid: 20368 - type: Grille - components: - - pos: 98.5,-18.5 - parent: 0 - type: Transform -- uid: 20369 - type: ReinforcedPlasmaWindow - components: - - pos: 98.5,-18.5 - parent: 0 - type: Transform -- uid: 20370 - type: ReinforcedPlasmaWindow - components: - - pos: 99.5,-18.5 - parent: 0 - type: Transform -- uid: 20371 - type: WallReinforced - components: - - pos: 101.5,-18.5 - parent: 0 - type: Transform -- uid: 20372 - type: WallReinforced - components: - - pos: 102.5,-18.5 - parent: 0 - type: Transform -- uid: 20373 - type: WallReinforced - components: - - pos: 102.5,-17.5 - parent: 0 - type: Transform -- uid: 20374 - type: WallReinforced - components: - - pos: 102.5,-15.5 - parent: 0 - type: Transform -- uid: 20375 - type: WallSolid - components: - - pos: 71.5,-23.5 - parent: 0 - type: Transform -- uid: 20376 - type: ReinforcedWindow - components: - - pos: 71.5,-24.5 - parent: 0 - type: Transform -- uid: 20377 - type: ReinforcedWindow - components: - - pos: 71.5,-26.5 - parent: 0 - type: Transform -- uid: 20378 - type: ReinforcedWindow - components: - - pos: 78.5,-26.5 - parent: 0 - type: Transform -- uid: 20379 - type: ReinforcedWindow - components: - - pos: 77.5,-27.5 - parent: 0 - type: Transform -- uid: 20380 - type: ReinforcedWindow - components: - - pos: 76.5,-27.5 - parent: 0 - type: Transform -- uid: 20381 - type: ReinforcedWindow - components: - - pos: 74.5,-27.5 - parent: 0 - type: Transform -- uid: 20382 - type: ReinforcedWindow - components: - - pos: 73.5,-27.5 - parent: 0 - type: Transform -- uid: 20383 - type: WallReinforced - components: - - pos: 75.5,-27.5 - parent: 0 - type: Transform -- uid: 20384 - type: WallReinforced - components: - - pos: 78.5,-27.5 - parent: 0 - type: Transform -- uid: 20385 - type: WallReinforced - components: - - pos: 72.5,-27.5 - parent: 0 - type: Transform -- uid: 20386 - type: WallReinforced - components: - - pos: 71.5,-27.5 - parent: 0 - type: Transform -- uid: 20387 - type: WallReinforced - components: - - pos: 90.5,-23.5 - parent: 0 - type: Transform -- uid: 20388 - type: WallReinforced - components: - - pos: 66.5,-38.5 - parent: 0 - type: Transform -- uid: 20389 - type: WallReinforced - components: - - pos: 66.5,-37.5 - parent: 0 - type: Transform -- uid: 20390 - type: WallReinforced - components: - - pos: 66.5,-39.5 - parent: 0 - type: Transform -- uid: 20391 - type: WallReinforced - components: - - pos: 67.5,-39.5 - parent: 0 - type: Transform -- uid: 20392 - type: WallReinforced - components: - - pos: 68.5,-39.5 - parent: 0 - type: Transform -- uid: 20393 - type: WallReinforced - components: - - pos: 69.5,-39.5 - parent: 0 - type: Transform -- uid: 20394 - type: WallReinforced - components: - - pos: 69.5,-40.5 - parent: 0 - type: Transform -- uid: 20395 - type: WallReinforced - components: - - pos: 69.5,-41.5 - parent: 0 - type: Transform -- uid: 20396 - type: WallReinforced - components: - - pos: 69.5,-42.5 - parent: 0 - type: Transform -- uid: 20397 - type: WallReinforced - components: - - pos: 69.5,-43.5 - parent: 0 - type: Transform -- uid: 20398 - type: ReinforcedPlasmaWindow - components: - - pos: 80.5,-39.5 - parent: 0 - type: Transform -- uid: 20399 - type: ReinforcedPlasmaWindow - components: - - pos: 71.5,-39.5 - parent: 0 - type: Transform -- uid: 20400 - type: ReinforcedPlasmaWindow - components: - - pos: 78.5,-39.5 - parent: 0 - type: Transform -- uid: 20401 - type: WallReinforced - components: - - pos: 73.5,-39.5 - parent: 0 - type: Transform -- uid: 20402 - type: WallReinforced - components: - - pos: 73.5,-40.5 - parent: 0 - type: Transform -- uid: 20403 - type: ReinforcedPlasmaWindow - components: - - pos: 73.5,-41.5 - parent: 0 - type: Transform -- uid: 20404 - type: WallReinforced - components: - - pos: 73.5,-42.5 - parent: 0 - type: Transform -- uid: 20405 - type: WallReinforced - components: - - pos: 73.5,-43.5 - parent: 0 - type: Transform -- uid: 20406 - type: WallReinforced - components: - - pos: 72.5,-43.5 - parent: 0 - type: Transform -- uid: 20407 - type: WallReinforced - components: - - pos: 71.5,-43.5 - parent: 0 - type: Transform -- uid: 20408 - type: WallReinforced - components: - - pos: 70.5,-43.5 - parent: 0 - type: Transform -- uid: 20409 - type: WallReinforced - components: - - pos: 68.5,-40.5 - parent: 0 - type: Transform -- uid: 20410 - type: WallReinforced - components: - - pos: 68.5,-41.5 - parent: 0 - type: Transform -- uid: 20411 - type: WallReinforced - components: - - pos: 68.5,-42.5 - parent: 0 - type: Transform -- uid: 20412 - type: WallReinforced - components: - - pos: 68.5,-43.5 - parent: 0 - type: Transform -- uid: 20413 - type: WallReinforced - components: - - pos: 68.5,-44.5 - parent: 0 - type: Transform -- uid: 20414 - type: WallReinforced - components: - - pos: 69.5,-44.5 - parent: 0 - type: Transform -- uid: 20415 - type: WallReinforced - components: - - pos: 70.5,-44.5 - parent: 0 - type: Transform -- uid: 20416 - type: WallReinforced - components: - - pos: 71.5,-44.5 - parent: 0 - type: Transform -- uid: 20417 - type: WallReinforced - components: - - pos: 72.5,-44.5 - parent: 0 - type: Transform -- uid: 20418 - type: WallReinforced - components: - - pos: 73.5,-44.5 - parent: 0 - type: Transform -- uid: 20419 - type: WallReinforced - components: - - pos: 75.5,-43.5 - parent: 0 - type: Transform -- uid: 20420 - type: WallReinforced - components: - - pos: 74.5,-43.5 - parent: 0 - type: Transform -- uid: 20421 - type: ReinforcedPlasmaWindow - components: - - pos: 74.5,-39.5 - parent: 0 - type: Transform -- uid: 20422 - type: ReinforcedPlasmaWindow - components: - - pos: 76.5,-39.5 - parent: 0 - type: Transform -- uid: 20423 - type: ReinforcedPlasmaWindow - components: - - pos: 75.5,-39.5 - parent: 0 - type: Transform -- uid: 20424 - type: ReinforcedPlasmaWindow - components: - - pos: 79.5,-39.5 - parent: 0 - type: Transform -- uid: 20425 - type: WallReinforced - components: - - pos: 76.5,-43.5 - parent: 0 - type: Transform -- uid: 20426 - type: WallReinforced - components: - - pos: 77.5,-43.5 - parent: 0 - type: Transform -- uid: 20427 - type: WallReinforced - components: - - pos: 77.5,-42.5 - parent: 0 - type: Transform -- uid: 20428 - type: BlastDoor - components: - - pos: 99.5,-25.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20586 - type: SignalReceiver -- uid: 20429 - type: WallReinforced - components: - - pos: 77.5,-40.5 - parent: 0 - type: Transform -- uid: 20430 - type: WallReinforced - components: - - pos: 77.5,-39.5 - parent: 0 - type: Transform -- uid: 20431 - type: ReinforcedPlasmaWindow - components: - - pos: 72.5,-39.5 - parent: 0 - type: Transform -- uid: 20432 - type: ReinforcedPlasmaWindow - components: - - pos: 70.5,-39.5 - parent: 0 - type: Transform -- uid: 20433 - type: WallReinforced - components: - - pos: 81.5,-39.5 - parent: 0 - type: Transform -- uid: 20434 - type: WallReinforced - components: - - pos: 81.5,-40.5 - parent: 0 - type: Transform -- uid: 20435 - type: WallReinforced - components: - - pos: 81.5,-41.5 - parent: 0 - type: Transform -- uid: 20436 - type: WallReinforced - components: - - pos: 81.5,-42.5 - parent: 0 - type: Transform -- uid: 20437 - type: WallReinforced - components: - - pos: 81.5,-43.5 - parent: 0 - type: Transform -- uid: 20438 - type: WallReinforced - components: - - pos: 80.5,-43.5 - parent: 0 - type: Transform -- uid: 20439 - type: WallReinforced - components: - - pos: 79.5,-43.5 - parent: 0 - type: Transform -- uid: 20440 - type: WallReinforced - components: - - pos: 78.5,-43.5 - parent: 0 - type: Transform -- uid: 20441 - type: WallReinforced - components: - - pos: 74.5,-44.5 - parent: 0 - type: Transform -- uid: 20442 - type: WallReinforced - components: - - pos: 75.5,-44.5 - parent: 0 - type: Transform -- uid: 20443 - type: WallReinforced - components: - - pos: 76.5,-44.5 - parent: 0 - type: Transform -- uid: 20444 - type: WallReinforced - components: - - pos: 77.5,-44.5 - parent: 0 - type: Transform -- uid: 20445 - type: WallReinforced - components: - - pos: 78.5,-44.5 - parent: 0 - type: Transform -- uid: 20446 - type: WallReinforced - components: - - pos: 79.5,-44.5 - parent: 0 - type: Transform -- uid: 20447 - type: WallReinforced - components: - - pos: 80.5,-44.5 - parent: 0 - type: Transform -- uid: 20448 - type: WallReinforced - components: - - pos: 81.5,-44.5 - parent: 0 - type: Transform -- uid: 20449 - type: Grille - components: - - pos: 69.5,-43.5 - parent: 0 - type: Transform -- uid: 20450 - type: Grille - components: - - pos: 69.5,-42.5 - parent: 0 - type: Transform -- uid: 20451 - type: Grille - components: - - pos: 69.5,-41.5 - parent: 0 - type: Transform -- uid: 20452 - type: Grille - components: - - pos: 69.5,-40.5 - parent: 0 - type: Transform -- uid: 20453 - type: Grille - components: - - pos: 69.5,-39.5 - parent: 0 - type: Transform -- uid: 20454 - type: Grille - components: - - pos: 70.5,-43.5 - parent: 0 - type: Transform -- uid: 20455 - type: Grille - components: - - pos: 71.5,-43.5 - parent: 0 - type: Transform -- uid: 20456 - type: Grille - components: - - pos: 72.5,-43.5 - parent: 0 - type: Transform -- uid: 20457 - type: Grille - components: - - pos: 73.5,-43.5 - parent: 0 - type: Transform -- uid: 20458 - type: Grille - components: - - pos: 74.5,-43.5 - parent: 0 - type: Transform -- uid: 20459 - type: Grille - components: - - pos: 75.5,-43.5 - parent: 0 - type: Transform -- uid: 20460 - type: Grille - components: - - pos: 76.5,-43.5 - parent: 0 - type: Transform -- uid: 20461 - type: Grille - components: - - pos: 77.5,-43.5 - parent: 0 - type: Transform -- uid: 20462 - type: Grille - components: - - pos: 78.5,-43.5 - parent: 0 - type: Transform -- uid: 20463 - type: Grille - components: - - pos: 79.5,-43.5 - parent: 0 - type: Transform -- uid: 20464 - type: Grille - components: - - pos: 80.5,-43.5 - parent: 0 - type: Transform -- uid: 20465 - type: Grille - components: - - pos: 81.5,-43.5 - parent: 0 - type: Transform -- uid: 20466 - type: Grille - components: - - pos: 81.5,-42.5 - parent: 0 - type: Transform -- uid: 20467 - type: Grille - components: - - pos: 81.5,-41.5 - parent: 0 - type: Transform -- uid: 20468 - type: Grille - components: - - pos: 81.5,-40.5 - parent: 0 - type: Transform -- uid: 20469 - type: Grille - components: - - pos: 81.5,-39.5 - parent: 0 - type: Transform -- uid: 20470 - type: Grille - components: - - pos: 77.5,-42.5 - parent: 0 - type: Transform -- uid: 20471 - type: BlastDoor - components: - - pos: 99.5,-26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20586 - type: SignalReceiver -- uid: 20472 - type: Grille - components: - - pos: 77.5,-40.5 - parent: 0 - type: Transform -- uid: 20473 - type: Grille - components: - - pos: 77.5,-39.5 - parent: 0 - type: Transform -- uid: 20474 - type: Grille - components: - - pos: 73.5,-42.5 - parent: 0 - type: Transform -- uid: 20475 - type: ReinforcedPlasmaWindow - components: - - pos: 77.5,-41.5 - parent: 0 - type: Transform -- uid: 20476 - type: Grille - components: - - pos: 73.5,-40.5 - parent: 0 - type: Transform -- uid: 20477 - type: Grille - components: - - pos: 73.5,-39.5 - parent: 0 - type: Transform -- uid: 20478 - type: CableHV - components: - - pos: 42.5,-12.5 - parent: 0 - type: Transform -- uid: 20479 - type: WallReinforced - components: - - pos: 71.5,-45.5 - parent: 0 - type: Transform -- uid: 20480 - type: WallReinforced - components: - - pos: 79.5,-45.5 - parent: 0 - type: Transform -- uid: 20481 - type: WallReinforced - components: - - pos: 82.5,-44.5 - parent: 0 - type: Transform -- uid: 20482 - type: WallReinforced - components: - - pos: 83.5,-44.5 - parent: 0 - type: Transform -- uid: 20483 - type: WallReinforced - components: - - pos: 84.5,-44.5 - parent: 0 - type: Transform -- uid: 20484 - type: WallReinforced - components: - - pos: 85.5,-44.5 - parent: 0 - type: Transform -- uid: 20485 - type: WallReinforced - components: - - pos: 86.5,-44.5 - parent: 0 - type: Transform -- uid: 20486 - type: WallReinforced - components: - - pos: 87.5,-44.5 - parent: 0 - type: Transform -- uid: 20487 - type: WallReinforced - components: - - pos: 88.5,-44.5 - parent: 0 - type: Transform -- uid: 20488 - type: WallReinforced - components: - - pos: 89.5,-44.5 - parent: 0 - type: Transform -- uid: 20489 - type: WallReinforced - components: - - pos: 90.5,-44.5 - parent: 0 - type: Transform -- uid: 20490 - type: WallReinforced - components: - - pos: 91.5,-44.5 - parent: 0 - type: Transform -- uid: 20491 - type: WallReinforced - components: - - pos: 92.5,-44.5 - parent: 0 - type: Transform -- uid: 20492 - type: WallReinforced - components: - - pos: 93.5,-44.5 - parent: 0 - type: Transform -- uid: 20493 - type: WallReinforced - components: - - pos: 94.5,-44.5 - parent: 0 - type: Transform -- uid: 20494 - type: WallReinforced - components: - - pos: 95.5,-45.5 - parent: 0 - type: Transform -- uid: 20495 - type: WallReinforced - components: - - pos: 95.5,-44.5 - parent: 0 - type: Transform -- uid: 20496 - type: WallReinforced - components: - - pos: 95.5,-40.5 - parent: 0 - type: Transform -- uid: 20497 - type: WallReinforced - components: - - pos: 96.5,-40.5 - parent: 0 - type: Transform -- uid: 20498 - type: WallReinforced - components: - - pos: 94.5,-43.5 - parent: 0 - type: Transform -- uid: 20499 - type: WallReinforced - components: - - pos: 94.5,-42.5 - parent: 0 - type: Transform -- uid: 20500 - type: WallReinforced - components: - - pos: 94.5,-41.5 - parent: 0 - type: Transform -- uid: 20501 - type: WallReinforced - components: - - pos: 94.5,-40.5 - parent: 0 - type: Transform -- uid: 20502 - type: WallReinforced - components: - - pos: 93.5,-40.5 - parent: 0 - type: Transform -- uid: 20503 - type: ReinforcedPlasmaWindow - components: - - pos: 92.5,-40.5 - parent: 0 - type: Transform -- uid: 20504 - type: WallReinforced - components: - - pos: 91.5,-40.5 - parent: 0 - type: Transform -- uid: 20505 - type: WallReinforced - components: - - pos: 90.5,-40.5 - parent: 0 - type: Transform -- uid: 20506 - type: Grille - components: - - pos: 90.5,-43.5 - parent: 0 - type: Transform -- uid: 20507 - type: Grille - components: - - pos: 90.5,-39.5 - parent: 0 - type: Transform -- uid: 20508 - type: WallReinforced - components: - - pos: 94.5,-39.5 - parent: 0 - type: Transform -- uid: 20509 - type: WallReinforced - components: - - pos: 94.5,-38.5 - parent: 0 - type: Transform -- uid: 20510 - type: WallReinforced - components: - - pos: 94.5,-37.5 - parent: 0 - type: Transform -- uid: 20511 - type: WallReinforced - components: - - pos: 94.5,-36.5 - parent: 0 - type: Transform -- uid: 20512 - type: WallReinforced - components: - - pos: 93.5,-36.5 - parent: 0 - type: Transform -- uid: 20513 - type: WallReinforced - components: - - pos: 91.5,-36.5 - parent: 0 - type: Transform -- uid: 20514 - type: ReinforcedPlasmaWindow - components: - - pos: 92.5,-36.5 - parent: 0 - type: Transform -- uid: 20515 - type: WallReinforced - components: - - pos: 90.5,-36.5 - parent: 0 - type: Transform -- uid: 20516 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 91.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 20517 - type: Grille - components: - - pos: 90.5,-41.5 - parent: 0 - type: Transform -- uid: 20518 - type: ReinforcedPlasmaWindow - components: - - pos: 90.5,-42.5 - parent: 0 - type: Transform -- uid: 20519 - type: ReinforcedPlasmaWindow - components: - - pos: 90.5,-38.5 - parent: 0 - type: Transform -- uid: 20520 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 91.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 20521 - type: WallReinforced - components: - - pos: 94.5,-35.5 - parent: 0 - type: Transform -- uid: 20522 - type: WallReinforced - components: - - pos: 94.5,-34.5 - parent: 0 - type: Transform -- uid: 20523 - type: WallReinforced - components: - - pos: 94.5,-33.5 - parent: 0 - type: Transform -- uid: 20524 - type: WallReinforced - components: - - pos: 94.5,-32.5 - parent: 0 - type: Transform -- uid: 20525 - type: WallReinforced - components: - - pos: 93.5,-32.5 - parent: 0 - type: Transform -- uid: 20526 - type: ReinforcedPlasmaWindow - components: - - pos: 92.5,-32.5 - parent: 0 - type: Transform -- uid: 20527 - type: WallReinforced - components: - - pos: 91.5,-32.5 - parent: 0 - type: Transform -- uid: 20528 - type: WallReinforced - components: - - pos: 90.5,-32.5 - parent: 0 - type: Transform -- uid: 20529 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 91.5,-41.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 20530 - type: ReinforcedPlasmaWindow - components: - - pos: 90.5,-34.5 - parent: 0 - type: Transform -- uid: 20531 - type: Grille - components: - - pos: 90.5,-44.5 - parent: 0 - type: Transform -- uid: 20532 - type: Grille - components: - - pos: 91.5,-44.5 - parent: 0 - type: Transform -- uid: 20533 - type: Grille - components: - - pos: 92.5,-44.5 - parent: 0 - type: Transform -- uid: 20534 - type: Grille - components: - - pos: 93.5,-44.5 - parent: 0 - type: Transform -- uid: 20535 - type: Grille - components: - - pos: 94.5,-44.5 - parent: 0 - type: Transform -- uid: 20536 - type: Grille - components: - - pos: 94.5,-43.5 - parent: 0 - type: Transform -- uid: 20537 - type: Grille - components: - - pos: 94.5,-42.5 - parent: 0 - type: Transform -- uid: 20538 - type: Grille - components: - - pos: 94.5,-41.5 - parent: 0 - type: Transform -- uid: 20539 - type: Grille - components: - - pos: 94.5,-40.5 - parent: 0 - type: Transform -- uid: 20540 - type: Grille - components: - - pos: 94.5,-39.5 - parent: 0 - type: Transform -- uid: 20541 - type: Grille - components: - - pos: 94.5,-38.5 - parent: 0 - type: Transform -- uid: 20542 - type: Grille - components: - - pos: 94.5,-37.5 - parent: 0 - type: Transform -- uid: 20543 - type: Grille - components: - - pos: 94.5,-36.5 - parent: 0 - type: Transform -- uid: 20544 - type: Grille - components: - - pos: 94.5,-35.5 - parent: 0 - type: Transform -- uid: 20545 - type: Grille - components: - - pos: 94.5,-34.5 - parent: 0 - type: Transform -- uid: 20546 - type: Grille - components: - - pos: 94.5,-33.5 - parent: 0 - type: Transform -- uid: 20547 - type: Grille - components: - - pos: 94.5,-32.5 - parent: 0 - type: Transform -- uid: 20548 - type: Grille - components: - - pos: 93.5,-32.5 - parent: 0 - type: Transform -- uid: 20549 - type: Grille - components: - - pos: 91.5,-32.5 - parent: 0 - type: Transform -- uid: 20550 - type: Grille - components: - - pos: 90.5,-32.5 - parent: 0 - type: Transform -- uid: 20551 - type: Grille - components: - - pos: 93.5,-40.5 - parent: 0 - type: Transform -- uid: 20552 - type: Grille - components: - - pos: 93.5,-36.5 - parent: 0 - type: Transform -- uid: 20553 - type: Grille - components: - - pos: 91.5,-36.5 - parent: 0 - type: Transform -- uid: 20554 - type: Grille - components: - - pos: 90.5,-36.5 - parent: 0 - type: Transform -- uid: 20555 - type: Grille - components: - - pos: 91.5,-40.5 - parent: 0 - type: Transform -- uid: 20556 - type: Grille - components: - - pos: 90.5,-40.5 - parent: 0 - type: Transform -- uid: 20557 - type: WallReinforced - components: - - pos: 90.5,-28.5 - parent: 0 - type: Transform -- uid: 20558 - type: ReinforcedPlasmaWindow - components: - - pos: 90.5,-25.5 - parent: 0 - type: Transform -- uid: 20559 - type: ReinforcedPlasmaWindow - components: - - pos: 93.5,-28.5 - parent: 0 - type: Transform -- uid: 20560 - type: ReinforcedWindow - components: - - pos: 101.5,-29.5 - parent: 0 - type: Transform -- uid: 20561 - type: ReinforcedPlasmaWindow - components: - - pos: 91.5,-28.5 - parent: 0 - type: Transform -- uid: 20562 - type: WallReinforced - components: - - pos: 94.5,-28.5 - parent: 0 - type: Transform -- uid: 20563 - type: ReinforcedPlasmaWindow - components: - - pos: 94.5,-25.5 - parent: 0 - type: Transform -- uid: 20564 - type: WallReinforced - components: - - pos: 99.5,-23.5 - parent: 0 - type: Transform -- uid: 20565 - type: ReinforcedPlasmaWindow - components: - - pos: 94.5,-27.5 - parent: 0 - type: Transform -- uid: 20566 - type: WallReinforced - components: - - pos: 94.5,-24.5 - parent: 0 - type: Transform -- uid: 20567 - type: WallReinforced - components: - - pos: 93.5,-24.5 - parent: 0 - type: Transform -- uid: 20568 - type: WallReinforced - components: - - pos: 92.5,-24.5 - parent: 0 - type: Transform -- uid: 20569 - type: WallReinforced - components: - - pos: 91.5,-24.5 - parent: 0 - type: Transform -- uid: 20570 - type: WallReinforced - components: - - pos: 90.5,-24.5 - parent: 0 - type: Transform -- uid: 20571 - type: ReinforcedPlasmaWindow - components: - - pos: 90.5,-27.5 - parent: 0 - type: Transform -- uid: 20572 - type: Grille - components: - - pos: 98.5,-24.5 - parent: 0 - type: Transform -- uid: 20573 - type: ReinforcedPlasmaWindow - components: - - pos: 90.5,-26.5 - parent: 0 - type: Transform -- uid: 20574 - type: Grille - components: - - pos: 98.5,-28.5 - parent: 0 - type: Transform -- uid: 20575 - type: Grille - components: - - pos: 96.5,-24.5 - parent: 0 - type: Transform -- uid: 20576 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 97.5,-24.5 - parent: 0 - type: Transform -- uid: 20577 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 97.5,-28.5 - parent: 0 - type: Transform -- uid: 20578 - type: ReinforcedPlasmaWindow - components: - - pos: 92.5,-28.5 - parent: 0 - type: Transform -- uid: 20579 - type: WallReinforced - components: - - pos: 95.5,-24.5 - parent: 0 - type: Transform -- uid: 20580 - type: WallReinforced - components: - - pos: 95.5,-28.5 - parent: 0 - type: Transform -- uid: 20581 - type: Grille - components: - - pos: 90.5,-25.5 - parent: 0 - type: Transform -- uid: 20582 - type: Grille - components: - - pos: 90.5,-27.5 - parent: 0 - type: Transform -- uid: 20583 - type: Grille - components: - - pos: 91.5,-28.5 - parent: 0 - type: Transform -- uid: 20584 - type: Grille - components: - - pos: 93.5,-28.5 - parent: 0 - type: Transform -- uid: 20585 - type: SignalButton - components: - - pos: 94.5,-28.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 20588 - type: SignalTransmitter -- uid: 20586 - type: SignalButton - components: - - pos: 99.5,-28.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 20589 - - port: Toggle - uid: 20471 - - port: Toggle - uid: 20428 - type: SignalTransmitter -- uid: 20587 - type: WallReinforced - components: - - pos: 99.5,-24.5 - parent: 0 - type: Transform -- uid: 20588 - type: BlastDoor - components: - - pos: 94.5,-26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20585 - type: SignalReceiver -- uid: 20589 - type: BlastDoor - components: - - pos: 99.5,-27.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20586 - type: SignalReceiver -- uid: 20590 - type: WallReinforced - components: - - pos: 95.5,-23.5 - parent: 0 - type: Transform -- uid: 20591 - type: WallReinforced - components: - - pos: 94.5,-23.5 - parent: 0 - type: Transform -- uid: 20592 - type: WallReinforced - components: - - pos: 93.5,-23.5 - parent: 0 - type: Transform -- uid: 20593 - type: WallReinforced - components: - - pos: 92.5,-23.5 - parent: 0 - type: Transform -- uid: 20594 - type: WallReinforced - components: - - pos: 91.5,-23.5 - parent: 0 - type: Transform -- uid: 20595 - type: WallReinforced - components: - - pos: 95.5,-32.5 - parent: 0 - type: Transform -- uid: 20596 - type: WallReinforced - components: - - pos: 95.5,-33.5 - parent: 0 - type: Transform -- uid: 20597 - type: WallReinforced - components: - - pos: 95.5,-34.5 - parent: 0 - type: Transform -- uid: 20598 - type: WallReinforced - components: - - pos: 95.5,-35.5 - parent: 0 - type: Transform -- uid: 20599 - type: WallReinforced - components: - - pos: 95.5,-36.5 - parent: 0 - type: Transform -- uid: 20600 - type: WallReinforced - components: - - pos: 95.5,-37.5 - parent: 0 - type: Transform -- uid: 20601 - type: WallReinforced - components: - - pos: 95.5,-38.5 - parent: 0 - type: Transform -- uid: 20602 - type: WallReinforced - components: - - pos: 95.5,-39.5 - parent: 0 - type: Transform -- uid: 20603 - type: MountainRock - components: - - pos: 95.5,-43.5 - parent: 0 - type: Transform -- uid: 20604 - type: MountainRock - components: - - pos: 95.5,-42.5 - parent: 0 - type: Transform -- uid: 20605 - type: MountainRock - components: - - pos: 95.5,-41.5 - parent: 0 - type: Transform -- uid: 20606 - type: MountainRock - components: - - pos: 94.5,-45.5 - parent: 0 - type: Transform -- uid: 20607 - type: MountainRock - components: - - pos: 93.5,-45.5 - parent: 0 - type: Transform -- uid: 20608 - type: MountainRock - components: - - pos: 92.5,-45.5 - parent: 0 - type: Transform -- uid: 20609 - type: MountainRock - components: - - pos: 91.5,-45.5 - parent: 0 - type: Transform -- uid: 20610 - type: MountainRock - components: - - pos: 90.5,-45.5 - parent: 0 - type: Transform -- uid: 20611 - type: MountainRock - components: - - pos: 89.5,-45.5 - parent: 0 - type: Transform -- uid: 20612 - type: MountainRock - components: - - pos: 88.5,-45.5 - parent: 0 - type: Transform -- uid: 20613 - type: MountainRock - components: - - pos: 86.5,-45.5 - parent: 0 - type: Transform -- uid: 20614 - type: MountainRock - components: - - pos: 85.5,-45.5 - parent: 0 - type: Transform -- uid: 20615 - type: MountainRock - components: - - pos: 84.5,-45.5 - parent: 0 - type: Transform -- uid: 20616 - type: MountainRock - components: - - pos: 83.5,-45.5 - parent: 0 - type: Transform -- uid: 20617 - type: MountainRock - components: - - pos: 82.5,-45.5 - parent: 0 - type: Transform -- uid: 20618 - type: MountainRock - components: - - pos: 81.5,-45.5 - parent: 0 - type: Transform -- uid: 20619 - type: MountainRock - components: - - pos: 80.5,-45.5 - parent: 0 - type: Transform -- uid: 20620 - type: MountainRock - components: - - pos: 78.5,-45.5 - parent: 0 - type: Transform -- uid: 20621 - type: MountainRock - components: - - pos: 77.5,-45.5 - parent: 0 - type: Transform -- uid: 20622 - type: MountainRock - components: - - pos: 76.5,-45.5 - parent: 0 - type: Transform -- uid: 20623 - type: MountainRock - components: - - pos: 75.5,-45.5 - parent: 0 - type: Transform -- uid: 20624 - type: MountainRock - components: - - pos: 74.5,-45.5 - parent: 0 - type: Transform -- uid: 20625 - type: MountainRock - components: - - pos: 73.5,-45.5 - parent: 0 - type: Transform -- uid: 20626 - type: MountainRock - components: - - pos: 72.5,-45.5 - parent: 0 - type: Transform -- uid: 20627 - type: WallReinforced - components: - - pos: 96.5,-32.5 - parent: 0 - type: Transform -- uid: 20628 - type: WallReinforced - components: - - pos: 99.5,-32.5 - parent: 0 - type: Transform -- uid: 20629 - type: WallReinforced - components: - - pos: 98.5,-32.5 - parent: 0 - type: Transform -- uid: 20630 - type: ReinforcedPlasmaWindow - components: - - pos: 98.5,-24.5 - parent: 0 - type: Transform -- uid: 20631 - type: ReinforcedPlasmaWindow - components: - - pos: 96.5,-24.5 - parent: 0 - type: Transform -- uid: 20632 - type: WallReinforced - components: - - pos: 98.5,-40.5 - parent: 0 - type: Transform -- uid: 20633 - type: WallReinforced - components: - - pos: 99.5,-40.5 - parent: 0 - type: Transform -- uid: 20634 - type: WallReinforced - components: - - pos: 100.5,-40.5 - parent: 0 - type: Transform -- uid: 20635 - type: WallReinforced - components: - - pos: 101.5,-40.5 - parent: 0 - type: Transform -- uid: 20636 - type: WallReinforced - components: - - pos: 102.5,-40.5 - parent: 0 - type: Transform -- uid: 20637 - type: WallReinforced - components: - - pos: 103.5,-40.5 - parent: 0 - type: Transform -- uid: 20638 - type: WallReinforced - components: - - pos: 104.5,-40.5 - parent: 0 - type: Transform -- uid: 20639 - type: WallReinforced - components: - - pos: 104.5,-38.5 - parent: 0 - type: Transform -- uid: 20640 - type: ReinforcedPlasmaWindow - components: - - pos: 104.5,-35.5 - parent: 0 - type: Transform -- uid: 20641 - type: ReinforcedPlasmaWindow - components: - - pos: 104.5,-37.5 - parent: 0 - type: Transform -- uid: 20642 - type: WallReinforced - components: - - pos: 104.5,-34.5 - parent: 0 - type: Transform -- uid: 20643 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 104.5,-38.5 - parent: 0 - type: Transform - - devices: - - 20644 - type: DeviceList -- uid: 20644 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 105.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 20645 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 105.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 20646 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 97.5,-34.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20647 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 97.5,-35.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20648 - type: GasPressurePump - components: - - name: Burn Chamber Out - type: MetaData - - rot: -1.5707963267948966 rad - pos: 103.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 20649 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 104.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20650 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 100.5,-35.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20651 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 104.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20652 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 101.5,-35.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20653 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 102.5,-35.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20654 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 97.5,-33.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20655 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 97.5,-32.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20656 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 99.5,-35.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20657 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 98.5,-35.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20658 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 105.5,-34.5 - parent: 0 - type: Transform -- uid: 20659 - type: WallReinforced - components: - - pos: 108.5,-38.5 - parent: 0 - type: Transform -- uid: 20660 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 106.5,-34.5 - parent: 0 - type: Transform -- uid: 20661 - type: WallReinforced - components: - - pos: 108.5,-34.5 - parent: 0 - type: Transform -- uid: 20662 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 107.5,-34.5 - parent: 0 - type: Transform -- uid: 20663 - type: Catwalk - components: - - pos: 110.5,-25.5 - parent: 0 - type: Transform -- uid: 20664 - type: Catwalk - components: - - pos: 109.5,-25.5 - parent: 0 - type: Transform -- uid: 20665 - type: Catwalk - components: - - pos: 108.5,-25.5 - parent: 0 - type: Transform -- uid: 20666 - type: WallSolidRust - components: - - pos: 108.5,-32.5 - parent: 0 - type: Transform -- uid: 20667 - type: WallSolidRust - components: - - pos: 131.5,-33.5 - parent: 0 - type: Transform -- uid: 20668 - type: WallSolidRust - components: - - pos: 131.5,-26.5 - parent: 0 - type: Transform -- uid: 20669 - type: WallSolidRust - components: - - pos: 129.5,-21.5 - parent: 0 - type: Transform -- uid: 20670 - type: WallSolidRust - components: - - pos: 125.5,-21.5 - parent: 0 - type: Transform -- uid: 20671 - type: Grille - components: - - pos: 110.5,-32.5 - parent: 0 - type: Transform -- uid: 20672 - type: Grille - components: - - pos: 110.5,-31.5 - parent: 0 - type: Transform -- uid: 20673 - type: Grille - components: - - pos: 110.5,-30.5 - parent: 0 - type: Transform -- uid: 20674 - type: ReinforcedWindow - components: - - pos: 104.5,-33.5 - parent: 0 - type: Transform -- uid: 20675 - type: ReinforcedWindow - components: - - pos: 104.5,-39.5 - parent: 0 - type: Transform -- uid: 20676 - type: WallReinforced - components: - - pos: 109.5,-48.5 - parent: 0 - type: Transform -- uid: 20677 - type: WallReinforced - components: - - pos: 108.5,-48.5 - parent: 0 - type: Transform -- uid: 20678 - type: WallReinforced - components: - - pos: 107.5,-48.5 - parent: 0 - type: Transform -- uid: 20679 - type: WallReinforced - components: - - pos: 106.5,-48.5 - parent: 0 - type: Transform -- uid: 20680 - type: WallReinforced - components: - - pos: 105.5,-48.5 - parent: 0 - type: Transform -- uid: 20681 - type: WallReinforced - components: - - pos: 109.5,-44.5 - parent: 0 - type: Transform -- uid: 20682 - type: WallReinforced - components: - - pos: 108.5,-44.5 - parent: 0 - type: Transform -- uid: 20683 - type: WallReinforced - components: - - pos: 107.5,-44.5 - parent: 0 - type: Transform -- uid: 20684 - type: WallReinforced - components: - - pos: 106.5,-44.5 - parent: 0 - type: Transform -- uid: 20685 - type: WallReinforced - components: - - pos: 105.5,-44.5 - parent: 0 - type: Transform -- uid: 20686 - type: WallReinforced - components: - - pos: 104.5,-44.5 - parent: 0 - type: Transform -- uid: 20687 - type: WallReinforced - components: - - pos: 102.5,-41.5 - parent: 0 - type: Transform -- uid: 20688 - type: WallReinforced - components: - - pos: 102.5,-43.5 - parent: 0 - type: Transform -- uid: 20689 - type: WallReinforced - components: - - pos: 102.5,-44.5 - parent: 0 - type: Transform -- uid: 20690 - type: WallReinforced - components: - - pos: 103.5,-44.5 - parent: 0 - type: Transform -- uid: 20691 - type: ReinforcedWindow - components: - - pos: 102.5,-42.5 - parent: 0 - type: Transform -- uid: 20692 - type: ReinforcedWindow - components: - - pos: 105.5,-47.5 - parent: 0 - type: Transform -- uid: 20693 - type: ReinforcedWindow - components: - - pos: 105.5,-45.5 - parent: 0 - type: Transform -- uid: 20694 - type: ReinforcedWindow - components: - - pos: 108.5,-47.5 - parent: 0 - type: Transform -- uid: 20695 - type: ReinforcedWindow - components: - - pos: 108.5,-45.5 - parent: 0 - type: Transform -- uid: 20696 - type: Catwalk - components: - - pos: 106.5,-74.5 - parent: 0 - type: Transform -- uid: 20697 - type: Catwalk - components: - - pos: 105.5,-76.5 - parent: 0 - type: Transform -- uid: 20698 - type: Catwalk - components: - - pos: 106.5,-71.5 - parent: 0 - type: Transform -- uid: 20699 - type: Catwalk - components: - - pos: 106.5,-77.5 - parent: 0 - type: Transform -- uid: 20700 - type: Catwalk - components: - - pos: 106.5,-76.5 - parent: 0 - type: Transform -- uid: 20701 - type: Catwalk - components: - - pos: 106.5,-75.5 - parent: 0 - type: Transform -- uid: 20702 - type: Catwalk - components: - - pos: 106.5,-73.5 - parent: 0 - type: Transform -- uid: 20703 - type: Catwalk - components: - - pos: 107.5,-76.5 - parent: 0 - type: Transform -- uid: 20704 - type: Catwalk - components: - - pos: 106.5,-72.5 - parent: 0 - type: Transform -- uid: 20705 - type: Catwalk - components: - - pos: 106.5,-78.5 - parent: 0 - type: Transform -- uid: 20706 - type: Catwalk - components: - - pos: 106.5,-79.5 - parent: 0 - type: Transform -- uid: 20707 - type: Catwalk - components: - - pos: 106.5,-70.5 - parent: 0 - type: Transform -- uid: 20708 - type: Catwalk - components: - - pos: 106.5,-69.5 - parent: 0 - type: Transform -- uid: 20709 - type: Catwalk - components: - - pos: 106.5,-68.5 - parent: 0 - type: Transform -- uid: 20710 - type: Catwalk - components: - - pos: 106.5,-67.5 - parent: 0 - type: Transform -- uid: 20711 - type: Catwalk - components: - - pos: 106.5,-66.5 - parent: 0 - type: Transform -- uid: 20712 - type: Catwalk - components: - - pos: 106.5,-65.5 - parent: 0 - type: Transform -- uid: 20713 - type: Catwalk - components: - - pos: 107.5,-68.5 - parent: 0 - type: Transform -- uid: 20714 - type: Catwalk - components: - - pos: 105.5,-68.5 - parent: 0 - type: Transform -- uid: 20715 - type: Catwalk - components: - - pos: 105.5,-72.5 - parent: 0 - type: Transform -- uid: 20716 - type: Catwalk - components: - - pos: 107.5,-72.5 - parent: 0 - type: Transform -- uid: 20717 - type: Catwalk - components: - - pos: 96.5,-68.5 - parent: 0 - type: Transform -- uid: 20718 - type: Catwalk - components: - - pos: 97.5,-68.5 - parent: 0 - type: Transform -- uid: 20719 - type: Catwalk - components: - - pos: 98.5,-68.5 - parent: 0 - type: Transform -- uid: 20720 - type: Catwalk - components: - - pos: 99.5,-68.5 - parent: 0 - type: Transform -- uid: 20721 - type: Catwalk - components: - - pos: 100.5,-68.5 - parent: 0 - type: Transform -- uid: 20722 - type: Catwalk - components: - - pos: 101.5,-68.5 - parent: 0 - type: Transform -- uid: 20723 - type: Catwalk - components: - - pos: 102.5,-68.5 - parent: 0 - type: Transform -- uid: 20724 - type: Catwalk - components: - - pos: 103.5,-68.5 - parent: 0 - type: Transform -- uid: 20725 - type: Catwalk - components: - - pos: 104.5,-68.5 - parent: 0 - type: Transform -- uid: 20726 - type: Catwalk - components: - - pos: 104.5,-72.5 - parent: 0 - type: Transform -- uid: 20727 - type: Catwalk - components: - - pos: 103.5,-72.5 - parent: 0 - type: Transform -- uid: 20728 - type: Catwalk - components: - - pos: 102.5,-72.5 - parent: 0 - type: Transform -- uid: 20729 - type: Catwalk - components: - - pos: 101.5,-72.5 - parent: 0 - type: Transform -- uid: 20730 - type: Catwalk - components: - - pos: 100.5,-72.5 - parent: 0 - type: Transform -- uid: 20731 - type: Catwalk - components: - - pos: 99.5,-72.5 - parent: 0 - type: Transform -- uid: 20732 - type: Catwalk - components: - - pos: 98.5,-72.5 - parent: 0 - type: Transform -- uid: 20733 - type: Catwalk - components: - - pos: 97.5,-72.5 - parent: 0 - type: Transform -- uid: 20734 - type: Catwalk - components: - - pos: 96.5,-72.5 - parent: 0 - type: Transform -- uid: 20735 - type: Catwalk - components: - - pos: 96.5,-76.5 - parent: 0 - type: Transform -- uid: 20736 - type: Catwalk - components: - - pos: 97.5,-76.5 - parent: 0 - type: Transform -- uid: 20737 - type: Catwalk - components: - - pos: 98.5,-76.5 - parent: 0 - type: Transform -- uid: 20738 - type: Catwalk - components: - - pos: 99.5,-76.5 - parent: 0 - type: Transform -- uid: 20739 - type: Catwalk - components: - - pos: 100.5,-76.5 - parent: 0 - type: Transform -- uid: 20740 - type: Catwalk - components: - - pos: 101.5,-76.5 - parent: 0 - type: Transform -- uid: 20741 - type: Catwalk - components: - - pos: 102.5,-76.5 - parent: 0 - type: Transform -- uid: 20742 - type: Catwalk - components: - - pos: 103.5,-76.5 - parent: 0 - type: Transform -- uid: 20743 - type: Catwalk - components: - - pos: 104.5,-76.5 - parent: 0 - type: Transform -- uid: 20744 - type: Catwalk - components: - - pos: 108.5,-76.5 - parent: 0 - type: Transform -- uid: 20745 - type: Catwalk - components: - - pos: 109.5,-76.5 - parent: 0 - type: Transform -- uid: 20746 - type: Catwalk - components: - - pos: 110.5,-76.5 - parent: 0 - type: Transform -- uid: 20747 - type: Catwalk - components: - - pos: 111.5,-76.5 - parent: 0 - type: Transform -- uid: 20748 - type: Catwalk - components: - - pos: 112.5,-76.5 - parent: 0 - type: Transform -- uid: 20749 - type: Catwalk - components: - - pos: 113.5,-76.5 - parent: 0 - type: Transform -- uid: 20750 - type: Catwalk - components: - - pos: 114.5,-76.5 - parent: 0 - type: Transform -- uid: 20751 - type: Catwalk - components: - - pos: 115.5,-76.5 - parent: 0 - type: Transform -- uid: 20752 - type: Catwalk - components: - - pos: 116.5,-76.5 - parent: 0 - type: Transform -- uid: 20753 - type: Catwalk - components: - - pos: 116.5,-72.5 - parent: 0 - type: Transform -- uid: 20754 - type: Catwalk - components: - - pos: 115.5,-72.5 - parent: 0 - type: Transform -- uid: 20755 - type: Catwalk - components: - - pos: 114.5,-72.5 - parent: 0 - type: Transform -- uid: 20756 - type: Catwalk - components: - - pos: 113.5,-72.5 - parent: 0 - type: Transform -- uid: 20757 - type: Catwalk - components: - - pos: 112.5,-72.5 - parent: 0 - type: Transform -- uid: 20758 - type: Catwalk - components: - - pos: 111.5,-72.5 - parent: 0 - type: Transform -- uid: 20759 - type: Catwalk - components: - - pos: 110.5,-72.5 - parent: 0 - type: Transform -- uid: 20760 - type: Catwalk - components: - - pos: 109.5,-72.5 - parent: 0 - type: Transform -- uid: 20761 - type: Catwalk - components: - - pos: 108.5,-72.5 - parent: 0 - type: Transform -- uid: 20762 - type: Catwalk - components: - - pos: 108.5,-68.5 - parent: 0 - type: Transform -- uid: 20763 - type: Catwalk - components: - - pos: 109.5,-68.5 - parent: 0 - type: Transform -- uid: 20764 - type: Catwalk - components: - - pos: 110.5,-68.5 - parent: 0 - type: Transform -- uid: 20765 - type: Catwalk - components: - - pos: 111.5,-68.5 - parent: 0 - type: Transform -- uid: 20766 - type: Catwalk - components: - - pos: 112.5,-68.5 - parent: 0 - type: Transform -- uid: 20767 - type: Catwalk - components: - - pos: 113.5,-68.5 - parent: 0 - type: Transform -- uid: 20768 - type: Catwalk - components: - - pos: 114.5,-68.5 - parent: 0 - type: Transform -- uid: 20769 - type: Catwalk - components: - - pos: 115.5,-68.5 - parent: 0 - type: Transform -- uid: 20770 - type: Catwalk - components: - - pos: 116.5,-68.5 - parent: 0 - type: Transform -- uid: 20771 - type: AirlockAtmosphericsLocked - components: - - pos: 63.5,-36.5 - parent: 0 - type: Transform -- uid: 20772 - type: AirlockMaintAtmoLocked - components: - - pos: 66.5,-36.5 - parent: 0 - type: Transform -- uid: 20773 - type: ReinforcedWindow - components: - - pos: 75.5,-32.5 - parent: 0 - type: Transform -- uid: 20774 - type: ReinforcedWindow - components: - - pos: 74.5,-32.5 - parent: 0 - type: Transform -- uid: 20775 - type: ReinforcedWindow - components: - - pos: 76.5,-32.5 - parent: 0 - type: Transform -- uid: 20776 - type: ReinforcedWindow - components: - - pos: 77.5,-32.5 - parent: 0 - type: Transform -- uid: 20777 - type: WallSolid - components: - - pos: 73.5,-32.5 - parent: 0 - type: Transform -- uid: 20778 - type: WallSolid - components: - - pos: 78.5,-32.5 - parent: 0 - type: Transform -- uid: 20779 - type: AirlockExternalGlassAtmosphericsLocked - components: - - pos: 102.5,-31.5 - parent: 0 - type: Transform -- uid: 20780 - type: WallSolid - components: - - pos: 95.5,-22.5 - parent: 0 - type: Transform -- uid: 20781 - type: WallSolid - components: - - pos: 117.5,-19.5 - parent: 0 - type: Transform -- uid: 20782 - type: AirlockMaintEngiLocked - components: - - pos: 117.5,-20.5 - parent: 0 - type: Transform -- uid: 20783 - type: CableHV - components: - - pos: 11.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20784 - type: CableHV - components: - - pos: 12.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20785 - type: CableHV - components: - - pos: 13.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20786 - type: CableHV - components: - - pos: 14.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20787 - type: CableHV - components: - - pos: 15.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20788 - type: CableHV - components: - - pos: 16.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20789 - type: CableHV - components: - - pos: 17.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20790 - type: CableHV - components: - - pos: 18.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20791 - type: CableHV - components: - - pos: 19.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20792 - type: CableHV - components: - - pos: 20.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20793 - type: CableHV - components: - - pos: 21.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20794 - type: CableHV - components: - - pos: 22.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20795 - type: CableHV - components: - - pos: 22.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20796 - type: CableHV - components: - - pos: 22.5,68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20797 - type: CableHV - components: - - pos: 22.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20798 - type: CableHV - components: - - pos: 22.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20799 - type: CableHV - components: - - pos: 23.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20800 - type: CableHV - components: - - pos: 24.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20801 - type: CableHV - components: - - pos: 25.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20802 - type: CableHV - components: - - pos: 26.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20803 - type: CableHV - components: - - pos: 27.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20804 - type: Catwalk - components: - - pos: 52.5,79.5 - parent: 0 - type: Transform -- uid: 20805 - type: Catwalk - components: - - pos: 52.5,78.5 - parent: 0 - type: Transform -- uid: 20806 - type: Catwalk - components: - - pos: 52.5,77.5 - parent: 0 - type: Transform -- uid: 20807 - type: Catwalk - components: - - pos: 52.5,76.5 - parent: 0 - type: Transform -- uid: 20808 - type: CableHV - components: - - pos: 32.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20809 - type: CableHV - components: - - pos: 32.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20810 - type: CableHV - components: - - pos: 32.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20811 - type: CableHV - components: - - pos: 32.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20812 - type: CableHV - components: - - pos: 32.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20813 - type: CableHV - components: - - pos: 32.5,61.5 - parent: 0 - type: Transform -- uid: 20814 - type: CableHV - components: - - pos: 32.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20815 - type: CableHV - components: - - pos: 32.5,59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20816 - type: CableHV - components: - - pos: 32.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20817 - type: CableHV - components: - - pos: 32.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20818 - type: CableHV - components: - - pos: 32.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20819 - type: CableHV - components: - - pos: 32.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20820 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,52.5 - parent: 0 - type: Transform -- uid: 20821 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,53.5 - parent: 0 - type: Transform -- uid: 20822 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -2.5,54.5 - parent: 0 - type: Transform -- uid: 20823 - type: AsteroidRockMining - components: - - pos: 60.5,-56.5 - parent: 0 - type: Transform -- uid: 20824 - type: AsteroidRock - components: - - pos: 65.5,-58.5 - parent: 0 - type: Transform -- uid: 20825 - type: AsteroidRock - components: - - pos: 65.5,-57.5 - parent: 0 - type: Transform -- uid: 20826 - type: AsteroidRockMining - components: - - pos: 60.5,-57.5 - parent: 0 - type: Transform -- uid: 20827 - type: AsteroidRock - components: - - pos: 66.5,-58.5 - parent: 0 - type: Transform -- uid: 20828 - type: AsteroidRock - components: - - pos: 66.5,-57.5 - parent: 0 - type: Transform -- uid: 20829 - type: AsteroidRock - components: - - pos: 66.5,-56.5 - parent: 0 - type: Transform -- uid: 20830 - type: AsteroidRock - components: - - pos: 67.5,-58.5 - parent: 0 - type: Transform -- uid: 20831 - type: AsteroidRock - components: - - pos: 67.5,-57.5 - parent: 0 - type: Transform -- uid: 20832 - type: AsteroidRock - components: - - pos: 67.5,-56.5 - parent: 0 - type: Transform -- uid: 20833 - type: AsteroidRock - components: - - pos: 68.5,-58.5 - parent: 0 - type: Transform -- uid: 20834 - type: AsteroidRock - components: - - pos: 68.5,-57.5 - parent: 0 - type: Transform -- uid: 20835 - type: AsteroidRock - components: - - pos: 68.5,-56.5 - parent: 0 - type: Transform -- uid: 20836 - type: AsteroidRock - components: - - pos: 69.5,-58.5 - parent: 0 - type: Transform -- uid: 20837 - type: AsteroidRock - components: - - pos: 69.5,-57.5 - parent: 0 - type: Transform -- uid: 20838 - type: AsteroidRock - components: - - pos: 69.5,-56.5 - parent: 0 - type: Transform -- uid: 20839 - type: WallReinforced - components: - - pos: 75.5,-50.5 - parent: 0 - type: Transform -- uid: 20840 - type: AsteroidRock - components: - - pos: 70.5,-57.5 - parent: 0 - type: Transform -- uid: 20841 - type: AsteroidRock - components: - - pos: 70.5,-56.5 - parent: 0 - type: Transform -- uid: 20842 - type: WallReinforced - components: - - pos: 79.5,-50.5 - parent: 0 - type: Transform -- uid: 20843 - type: AsteroidRock - components: - - pos: 84.5,-57.5 - parent: 0 - type: Transform -- uid: 20844 - type: AsteroidRock - components: - - pos: 84.5,-56.5 - parent: 0 - type: Transform -- uid: 20845 - type: ReinforcedWindow - components: - - pos: 75.5,-53.5 - parent: 0 - type: Transform -- uid: 20846 - type: ReinforcedWindow - components: - - pos: 75.5,-54.5 - parent: 0 - type: Transform -- uid: 20847 - type: ReinforcedWindow - components: - - pos: 75.5,-55.5 - parent: 0 - type: Transform -- uid: 20848 - type: ReinforcedWindow - components: - - pos: 76.5,-55.5 - parent: 0 - type: Transform -- uid: 20849 - type: ReinforcedWindow - components: - - pos: 77.5,-55.5 - parent: 0 - type: Transform -- uid: 20850 - type: ReinforcedWindow - components: - - pos: 78.5,-55.5 - parent: 0 - type: Transform -- uid: 20851 - type: WallReinforced - components: - - pos: 70.5,-55.5 - parent: 0 - type: Transform -- uid: 20852 - type: WallReinforced - components: - - pos: 71.5,-55.5 - parent: 0 - type: Transform -- uid: 20853 - type: WallReinforced - components: - - pos: 84.5,-55.5 - parent: 0 - type: Transform -- uid: 20854 - type: WallReinforced - components: - - pos: 83.5,-55.5 - parent: 0 - type: Transform -- uid: 20855 - type: ReinforcedWindow - components: - - pos: 75.5,-51.5 - parent: 0 - type: Transform -- uid: 20856 - type: ReinforcedWindow - components: - - pos: 75.5,-52.5 - parent: 0 - type: Transform -- uid: 20857 - type: ReinforcedWindow - components: - - pos: 80.5,-50.5 - parent: 0 - type: Transform -- uid: 20858 - type: ReinforcedWindow - components: - - pos: 74.5,-50.5 - parent: 0 - type: Transform -- uid: 20859 - type: ReinforcedWindow - components: - - pos: 73.5,-50.5 - parent: 0 - type: Transform -- uid: 20860 - type: ReinforcedWindow - components: - - pos: 73.5,-51.5 - parent: 0 - type: Transform -- uid: 20861 - type: ReinforcedWindow - components: - - pos: 72.5,-51.5 - parent: 0 - type: Transform -- uid: 20862 - type: ReinforcedWindow - components: - - pos: 72.5,-52.5 - parent: 0 - type: Transform -- uid: 20863 - type: ReinforcedWindow - components: - - pos: 79.5,-55.5 - parent: 0 - type: Transform -- uid: 20864 - type: ReinforcedWindow - components: - - pos: 79.5,-54.5 - parent: 0 - type: Transform -- uid: 20865 - type: ReinforcedWindow - components: - - pos: 79.5,-53.5 - parent: 0 - type: Transform -- uid: 20866 - type: ReinforcedWindow - components: - - pos: 79.5,-52.5 - parent: 0 - type: Transform -- uid: 20867 - type: ReinforcedWindow - components: - - pos: 79.5,-51.5 - parent: 0 - type: Transform -- uid: 20868 - type: ReinforcedWindow - components: - - pos: 81.5,-50.5 - parent: 0 - type: Transform -- uid: 20869 - type: ReinforcedWindow - components: - - pos: 82.5,-52.5 - parent: 0 - type: Transform -- uid: 20870 - type: ReinforcedWindow - components: - - pos: 81.5,-51.5 - parent: 0 - type: Transform -- uid: 20871 - type: ReinforcedWindow - components: - - pos: 82.5,-51.5 - parent: 0 - type: Transform -- uid: 20872 - type: AsteroidRock - components: - - pos: 85.5,-58.5 - parent: 0 - type: Transform -- uid: 20873 - type: AsteroidRock - components: - - pos: 85.5,-57.5 - parent: 0 - type: Transform -- uid: 20874 - type: AsteroidRock - components: - - pos: 85.5,-56.5 - parent: 0 - type: Transform -- uid: 20875 - type: AsteroidRock - components: - - pos: 86.5,-58.5 - parent: 0 - type: Transform -- uid: 20876 - type: AsteroidRock - components: - - pos: 86.5,-57.5 - parent: 0 - type: Transform -- uid: 20877 - type: AsteroidRock - components: - - pos: 86.5,-56.5 - parent: 0 - type: Transform -- uid: 20878 - type: AsteroidRock - components: - - pos: 87.5,-58.5 - parent: 0 - type: Transform -- uid: 20879 - type: AsteroidRock - components: - - pos: 87.5,-57.5 - parent: 0 - type: Transform -- uid: 20880 - type: AsteroidRock - components: - - pos: 87.5,-56.5 - parent: 0 - type: Transform -- uid: 20881 - type: AsteroidRock - components: - - pos: 88.5,-58.5 - parent: 0 - type: Transform -- uid: 20882 - type: AsteroidRock - components: - - pos: 88.5,-57.5 - parent: 0 - type: Transform -- uid: 20883 - type: AsteroidRock - components: - - pos: 88.5,-56.5 - parent: 0 - type: Transform -- uid: 20884 - type: AsteroidRock - components: - - pos: 89.5,-58.5 - parent: 0 - type: Transform -- uid: 20885 - type: AsteroidRock - components: - - pos: 89.5,-57.5 - parent: 0 - type: Transform -- uid: 20886 - type: AsteroidRock - components: - - pos: 89.5,-56.5 - parent: 0 - type: Transform -- uid: 20887 - type: AsteroidRock - components: - - pos: 90.5,-58.5 - parent: 0 - type: Transform -- uid: 20888 - type: AsteroidRock - components: - - pos: 90.5,-57.5 - parent: 0 - type: Transform -- uid: 20889 - type: AsteroidRock - components: - - pos: 90.5,-56.5 - parent: 0 - type: Transform -- uid: 20890 - type: AsteroidRock - components: - - pos: 91.5,-58.5 - parent: 0 - type: Transform -- uid: 20891 - type: AsteroidRock - components: - - pos: 91.5,-57.5 - parent: 0 - type: Transform -- uid: 20892 - type: AsteroidRock - components: - - pos: 91.5,-56.5 - parent: 0 - type: Transform -- uid: 20893 - type: AsteroidRock - components: - - pos: 92.5,-58.5 - parent: 0 - type: Transform -- uid: 20894 - type: AsteroidRock - components: - - pos: 92.5,-57.5 - parent: 0 - type: Transform -- uid: 20895 - type: AsteroidRock - components: - - pos: 92.5,-56.5 - parent: 0 - type: Transform -- uid: 20896 - type: AsteroidRock - components: - - pos: 87.5,-59.5 - parent: 0 - type: Transform -- uid: 20897 - type: AsteroidRock - components: - - pos: 88.5,-59.5 - parent: 0 - type: Transform -- uid: 20898 - type: AsteroidRock - components: - - pos: 89.5,-59.5 - parent: 0 - type: Transform -- uid: 20899 - type: AsteroidRock - components: - - pos: 90.5,-59.5 - parent: 0 - type: Transform -- uid: 20900 - type: AsteroidRock - components: - - pos: 93.5,-57.5 - parent: 0 - type: Transform -- uid: 20901 - type: AsteroidRock - components: - - pos: 93.5,-56.5 - parent: 0 - type: Transform -- uid: 20902 - type: AsteroidRock - components: - - pos: 94.5,-56.5 - parent: 0 - type: Transform -- uid: 20903 - type: AsteroidRock - components: - - pos: 95.5,-56.5 - parent: 0 - type: Transform -- uid: 20904 - type: AsteroidRock - components: - - pos: 96.5,-56.5 - parent: 0 - type: Transform -- uid: 20905 - type: AsteroidRock - components: - - pos: 97.5,-56.5 - parent: 0 - type: Transform -- uid: 20906 - type: AsteroidRock - components: - - pos: 98.5,-56.5 - parent: 0 - type: Transform -- uid: 20907 - type: AsteroidRock - components: - - pos: 99.5,-56.5 - parent: 0 - type: Transform -- uid: 20908 - type: AsteroidRock - components: - - pos: 100.5,-56.5 - parent: 0 - type: Transform -- uid: 20909 - type: AsteroidRock - components: - - pos: 104.5,-56.5 - parent: 0 - type: Transform -- uid: 20910 - type: AsteroidRock - components: - - pos: 105.5,-56.5 - parent: 0 - type: Transform -- uid: 20911 - type: AsteroidRock - components: - - pos: 105.5,-57.5 - parent: 0 - type: Transform -- uid: 20912 - type: AsteroidRock - components: - - pos: 106.5,-57.5 - parent: 0 - type: Transform -- uid: 20913 - type: AsteroidRock - components: - - pos: 106.5,-56.5 - parent: 0 - type: Transform -- uid: 20914 - type: AsteroidRock - components: - - pos: 106.5,-55.5 - parent: 0 - type: Transform -- uid: 20915 - type: AsteroidRock - components: - - pos: 106.5,-54.5 - parent: 0 - type: Transform -- uid: 20916 - type: AsteroidRock - components: - - pos: 114.5,-28.5 - parent: 0 - type: Transform -- uid: 20917 - type: AsteroidRock - components: - - pos: 115.5,-28.5 - parent: 0 - type: Transform -- uid: 20918 - type: AsteroidRock - components: - - pos: 116.5,-28.5 - parent: 0 - type: Transform -- uid: 20919 - type: AsteroidRock - components: - - pos: 117.5,-28.5 - parent: 0 - type: Transform -- uid: 20920 - type: AsteroidRock - components: - - pos: 118.5,-28.5 - parent: 0 - type: Transform -- uid: 20921 - type: AsteroidRock - components: - - pos: 119.5,-28.5 - parent: 0 - type: Transform -- uid: 20922 - type: AsteroidRock - components: - - pos: 120.5,-28.5 - parent: 0 - type: Transform -- uid: 20923 - type: AsteroidRock - components: - - pos: 119.5,-29.5 - parent: 0 - type: Transform -- uid: 20924 - type: AsteroidRock - components: - - pos: 118.5,-29.5 - parent: 0 - type: Transform -- uid: 20925 - type: AsteroidRock - components: - - pos: 117.5,-29.5 - parent: 0 - type: Transform -- uid: 20926 - type: AsteroidRock - components: - - pos: 116.5,-29.5 - parent: 0 - type: Transform -- uid: 20927 - type: AsteroidRock - components: - - pos: 115.5,-29.5 - parent: 0 - type: Transform -- uid: 20928 - type: AsteroidRock - components: - - pos: 122.5,-28.5 - parent: 0 - type: Transform -- uid: 20929 - type: AsteroidRock - components: - - pos: 123.5,-28.5 - parent: 0 - type: Transform -- uid: 20930 - type: AsteroidRock - components: - - pos: 125.5,-27.5 - parent: 0 - type: Transform -- uid: 20931 - type: AsteroidRock - components: - - pos: 125.5,-26.5 - parent: 0 - type: Transform -- uid: 20932 - type: AsteroidRock - components: - - pos: 125.5,-25.5 - parent: 0 - type: Transform -- uid: 20933 - type: AsteroidRock - components: - - pos: 125.5,-24.5 - parent: 0 - type: Transform -- uid: 20934 - type: AsteroidRock - components: - - pos: 125.5,-22.5 - parent: 0 - type: Transform -- uid: 20935 - type: AsteroidRock - components: - - pos: 131.5,-21.5 - parent: 0 - type: Transform -- uid: 20936 - type: AsteroidRock - components: - - pos: 131.5,-22.5 - parent: 0 - type: Transform -- uid: 20937 - type: AsteroidRock - components: - - pos: 132.5,-22.5 - parent: 0 - type: Transform -- uid: 20938 - type: AsteroidRock - components: - - pos: 132.5,-23.5 - parent: 0 - type: Transform -- uid: 20939 - type: AsteroidRock - components: - - pos: 132.5,-24.5 - parent: 0 - type: Transform -- uid: 20940 - type: AsteroidRock - components: - - pos: 133.5,-23.5 - parent: 0 - type: Transform -- uid: 20941 - type: AsteroidRock - components: - - pos: 133.5,-24.5 - parent: 0 - type: Transform -- uid: 20942 - type: AsteroidRock - components: - - pos: 133.5,-25.5 - parent: 0 - type: Transform -- uid: 20943 - type: AsteroidRock - components: - - pos: 133.5,-26.5 - parent: 0 - type: Transform -- uid: 20944 - type: AsteroidRock - components: - - pos: 134.5,-24.5 - parent: 0 - type: Transform -- uid: 20945 - type: AsteroidRock - components: - - pos: 130.5,-35.5 - parent: 0 - type: Transform -- uid: 20946 - type: AsteroidRock - components: - - pos: 130.5,-34.5 - parent: 0 - type: Transform -- uid: 20947 - type: AsteroidRock - components: - - pos: 129.5,-35.5 - parent: 0 - type: Transform -- uid: 20948 - type: AsteroidRock - components: - - pos: 129.5,-34.5 - parent: 0 - type: Transform -- uid: 20949 - type: AsteroidRock - components: - - pos: 128.5,-35.5 - parent: 0 - type: Transform -- uid: 20950 - type: AsteroidRock - components: - - pos: 128.5,-34.5 - parent: 0 - type: Transform -- uid: 20951 - type: AsteroidRock - components: - - pos: 127.5,-35.5 - parent: 0 - type: Transform -- uid: 20952 - type: AsteroidRock - components: - - pos: 127.5,-34.5 - parent: 0 - type: Transform -- uid: 20953 - type: AsteroidRock - components: - - pos: 126.5,-35.5 - parent: 0 - type: Transform -- uid: 20954 - type: AsteroidRock - components: - - pos: 126.5,-34.5 - parent: 0 - type: Transform -- uid: 20955 - type: AsteroidRock - components: - - pos: 127.5,-36.5 - parent: 0 - type: Transform -- uid: 20956 - type: AsteroidRock - components: - - pos: 127.5,-37.5 - parent: 0 - type: Transform -- uid: 20957 - type: AsteroidRock - components: - - pos: 128.5,-36.5 - parent: 0 - type: Transform -- uid: 20958 - type: AsteroidRock - components: - - pos: 128.5,-37.5 - parent: 0 - type: Transform -- uid: 20959 - type: AsteroidRock - components: - - pos: 128.5,-39.5 - parent: 0 - type: Transform -- uid: 20960 - type: AsteroidRock - components: - - pos: 127.5,-33.5 - parent: 0 - type: Transform -- uid: 20961 - type: AsteroidRock - components: - - pos: 128.5,-33.5 - parent: 0 - type: Transform -- uid: 20962 - type: AsteroidRock - components: - - pos: 129.5,-33.5 - parent: 0 - type: Transform -- uid: 20963 - type: AsteroidRock - components: - - pos: 127.5,-32.5 - parent: 0 - type: Transform -- uid: 20964 - type: AsteroidRock - components: - - pos: 120.5,-35.5 - parent: 0 - type: Transform -- uid: 20965 - type: AsteroidRock - components: - - pos: 120.5,-36.5 - parent: 0 - type: Transform -- uid: 20966 - type: AsteroidRock - components: - - pos: 119.5,-35.5 - parent: 0 - type: Transform -- uid: 20967 - type: AsteroidRock - components: - - pos: 119.5,-36.5 - parent: 0 - type: Transform -- uid: 20968 - type: AsteroidRock - components: - - pos: 118.5,-35.5 - parent: 0 - type: Transform -- uid: 20969 - type: AsteroidRock - components: - - pos: 118.5,-36.5 - parent: 0 - type: Transform -- uid: 20970 - type: AsteroidRock - components: - - pos: 117.5,-35.5 - parent: 0 - type: Transform -- uid: 20971 - type: AsteroidRock - components: - - pos: 117.5,-36.5 - parent: 0 - type: Transform -- uid: 20972 - type: AsteroidRock - components: - - pos: 116.5,-35.5 - parent: 0 - type: Transform -- uid: 20973 - type: AsteroidRock - components: - - pos: 116.5,-36.5 - parent: 0 - type: Transform -- uid: 20974 - type: AsteroidRock - components: - - pos: 115.5,-35.5 - parent: 0 - type: Transform -- uid: 20975 - type: AsteroidRock - components: - - pos: 116.5,-34.5 - parent: 0 - type: Transform -- uid: 20976 - type: AsteroidRock - components: - - pos: 117.5,-34.5 - parent: 0 - type: Transform -- uid: 20977 - type: AsteroidRock - components: - - pos: 117.5,-38.5 - parent: 0 - type: Transform -- uid: 20978 - type: AsteroidRock - components: - - pos: 117.5,-37.5 - parent: 0 - type: Transform -- uid: 20979 - type: AsteroidRock - components: - - pos: 118.5,-37.5 - parent: 0 - type: Transform -- uid: 20980 - type: GasPipeBend - components: - - pos: 43.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20981 - type: Catwalk - components: - - pos: -22.5,-30.5 - parent: 0 - type: Transform -- uid: 20982 - type: Catwalk - components: - - pos: -22.5,-29.5 - parent: 0 - type: Transform -- uid: 20983 - type: Catwalk - components: - - pos: -28.5,-29.5 - parent: 0 - type: Transform -- uid: 20984 - type: Catwalk - components: - - pos: -28.5,-28.5 - parent: 0 - type: Transform -- uid: 20985 - type: Catwalk - components: - - pos: -16.5,-29.5 - parent: 0 - type: Transform -- uid: 20986 - type: Catwalk - components: - - pos: -16.5,-28.5 - parent: 0 - type: Transform -- uid: 20987 - type: Catwalk - components: - - pos: -33.5,-29.5 - parent: 0 - type: Transform -- uid: 20988 - type: Catwalk - components: - - pos: -33.5,-28.5 - parent: 0 - type: Transform -- uid: 20991 - type: Catwalk - components: - - pos: -30.5,-22.5 - parent: 0 - type: Transform -- uid: 20992 - type: Catwalk - components: - - pos: -30.5,-21.5 - parent: 0 - type: Transform -- uid: 20993 - type: Catwalk - components: - - pos: -30.5,-9.5 - parent: 0 - type: Transform -- uid: 20994 - type: Catwalk - components: - - pos: -30.5,-8.5 - parent: 0 - type: Transform -- uid: 20997 - type: Catwalk - components: - - pos: -42.5,-32.5 - parent: 0 - type: Transform -- uid: 20998 - type: Catwalk - components: - - pos: -42.5,-39.5 - parent: 0 - type: Transform -- uid: 20999 - type: Catwalk - components: - - pos: -42.5,-40.5 - parent: 0 - type: Transform -- uid: 21000 - type: Catwalk - components: - - pos: -32.5,-63.5 - parent: 0 - type: Transform -- uid: 21001 - type: Catwalk - components: - - pos: -37.5,-63.5 - parent: 0 - type: Transform -- uid: 21002 - type: Catwalk - components: - - pos: 3.5,-38.5 - parent: 0 - type: Transform -- uid: 21003 - type: Catwalk - components: - - pos: 2.5,-38.5 - parent: 0 - type: Transform -- uid: 21004 - type: Catwalk - components: - - pos: 2.5,-34.5 - parent: 0 - type: Transform -- uid: 21005 - type: Catwalk - components: - - pos: 3.5,-34.5 - parent: 0 - type: Transform -- uid: 21006 - type: Catwalk - components: - - pos: 16.5,-35.5 - parent: 0 - type: Transform -- uid: 21007 - type: Catwalk - components: - - pos: 16.5,-34.5 - parent: 0 - type: Transform -- uid: 21008 - type: RandomArtifactSpawner20 - components: - - pos: 8.5,-25.5 - parent: 0 - type: Transform -- uid: 21009 - type: RandomArtifactSpawner20 - components: - - pos: 13.5,-25.5 - parent: 0 - type: Transform -- uid: 21010 - type: ReinforcedWindow - components: - - pos: 61.5,26.5 - parent: 0 - type: Transform -- uid: 21011 - type: ReinforcedWindow - components: - - pos: 61.5,27.5 - parent: 0 - type: Transform -- uid: 21012 - type: ReinforcedWindow - components: - - pos: 61.5,28.5 - parent: 0 - type: Transform -- uid: 21013 - type: ReinforcedWindow - components: - - pos: 61.5,29.5 - parent: 0 - type: Transform -- uid: 21014 - type: ReinforcedWindow - components: - - pos: 61.5,31.5 - parent: 0 - type: Transform -- uid: 21015 - type: ReinforcedWindow - components: - - pos: 61.5,32.5 - parent: 0 - type: Transform -- uid: 21016 - type: ReinforcedWindow - components: - - pos: 61.5,33.5 - parent: 0 - type: Transform -- uid: 21017 - type: ReinforcedWindow - components: - - pos: 61.5,34.5 - parent: 0 - type: Transform -- uid: 21018 - type: WallSolid - components: - - pos: 57.5,25.5 - parent: 0 - type: Transform -- uid: 21019 - type: WallSolid - components: - - pos: 58.5,25.5 - parent: 0 - type: Transform -- uid: 21020 - type: WallSolid - components: - - pos: 59.5,25.5 - parent: 0 - type: Transform -- uid: 21021 - type: WallSolid - components: - - pos: 60.5,25.5 - parent: 0 - type: Transform -- uid: 21022 - type: WallSolid - components: - - pos: 61.5,25.5 - parent: 0 - type: Transform -- uid: 21023 - type: WallSolid - components: - - pos: 62.5,25.5 - parent: 0 - type: Transform -- uid: 21024 - type: WallSolid - components: - - pos: 63.5,25.5 - parent: 0 - type: Transform -- uid: 21025 - type: WallSolid - components: - - pos: 64.5,25.5 - parent: 0 - type: Transform -- uid: 21026 - type: WallSolid - components: - - pos: 65.5,25.5 - parent: 0 - type: Transform -- uid: 21027 - type: WallSolid - components: - - pos: 66.5,25.5 - parent: 0 - type: Transform -- uid: 21028 - type: WallSolid - components: - - pos: 67.5,25.5 - parent: 0 - type: Transform -- uid: 21029 - type: WallSolid - components: - - pos: 68.5,25.5 - parent: 0 - type: Transform -- uid: 21030 - type: WallSolid - components: - - pos: 67.5,26.5 - parent: 0 - type: Transform -- uid: 21031 - type: WallSolid - components: - - pos: 67.5,27.5 - parent: 0 - type: Transform -- uid: 21032 - type: WallSolid - components: - - pos: 70.5,25.5 - parent: 0 - type: Transform -- uid: 21033 - type: WallSolid - components: - - pos: 71.5,25.5 - parent: 0 - type: Transform -- uid: 21034 - type: WallSolid - components: - - pos: 71.5,26.5 - parent: 0 - type: Transform -- uid: 21035 - type: WallSolid - components: - - pos: 71.5,27.5 - parent: 0 - type: Transform -- uid: 21036 - type: WallSolid - components: - - pos: 71.5,28.5 - parent: 0 - type: Transform -- uid: 21037 - type: WallSolid - components: - - pos: 71.5,29.5 - parent: 0 - type: Transform -- uid: 21038 - type: WallSolid - components: - - pos: 71.5,30.5 - parent: 0 - type: Transform -- uid: 21039 - type: WallSolid - components: - - pos: 76.5,30.5 - parent: 0 - type: Transform -- uid: 21040 - type: WallSolid - components: - - pos: 75.5,30.5 - parent: 0 - type: Transform -- uid: 21041 - type: WallSolid - components: - - pos: 74.5,30.5 - parent: 0 - type: Transform -- uid: 21042 - type: WallSolid - components: - - pos: 73.5,30.5 - parent: 0 - type: Transform -- uid: 21043 - type: WallSolid - components: - - pos: 72.5,30.5 - parent: 0 - type: Transform -- uid: 21044 - type: WallSolid - components: - - pos: 70.5,30.5 - parent: 0 - type: Transform -- uid: 21045 - type: WallSolid - components: - - pos: 68.5,30.5 - parent: 0 - type: Transform -- uid: 21046 - type: WallSolid - components: - - pos: 67.5,30.5 - parent: 0 - type: Transform -- uid: 21047 - type: WallSolid - components: - - pos: 67.5,29.5 - parent: 0 - type: Transform -- uid: 21048 - type: WallSolid - components: - - pos: 67.5,31.5 - parent: 0 - type: Transform -- uid: 21049 - type: WallSolid - components: - - pos: 67.5,32.5 - parent: 0 - type: Transform -- uid: 21050 - type: WallSolid - components: - - pos: 72.5,37.5 - parent: 0 - type: Transform -- uid: 21051 - type: WallSolid - components: - - pos: 73.5,37.5 - parent: 0 - type: Transform -- uid: 21052 - type: WallSolid - components: - - pos: 73.5,36.5 - parent: 0 - type: Transform -- uid: 21053 - type: WallSolid - components: - - pos: 73.5,35.5 - parent: 0 - type: Transform -- uid: 21054 - type: WallSolid - components: - - pos: 73.5,34.5 - parent: 0 - type: Transform -- uid: 21055 - type: WallSolid - components: - - pos: 73.5,33.5 - parent: 0 - type: Transform -- uid: 21056 - type: WallSolid - components: - - pos: 73.5,32.5 - parent: 0 - type: Transform -- uid: 21057 - type: WallSolid - components: - - pos: 73.5,31.5 - parent: 0 - type: Transform -- uid: 21058 - type: WallSolid - components: - - pos: 74.5,36.5 - parent: 0 - type: Transform -- uid: 21059 - type: WallSolid - components: - - pos: 75.5,36.5 - parent: 0 - type: Transform -- uid: 21060 - type: WallSolid - components: - - pos: 76.5,36.5 - parent: 0 - type: Transform -- uid: 21061 - type: WallSolid - components: - - pos: 76.5,37.5 - parent: 0 - type: Transform -- uid: 21062 - type: WallSolid - components: - - pos: 78.5,30.5 - parent: 0 - type: Transform -- uid: 21063 - type: WallSolid - components: - - pos: 79.5,30.5 - parent: 0 - type: Transform -- uid: 21064 - type: WallSolid - components: - - pos: 80.5,30.5 - parent: 0 - type: Transform -- uid: 21065 - type: WallSolid - components: - - pos: 80.5,31.5 - parent: 0 - type: Transform -- uid: 21066 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 85.5,32.5 - parent: 0 - type: Transform -- uid: 21067 - type: WallSolid - components: - - pos: 80.5,33.5 - parent: 0 - type: Transform -- uid: 21068 - type: WallSolid - components: - - pos: 80.5,34.5 - parent: 0 - type: Transform -- uid: 21069 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 82.5,32.5 - parent: 0 - type: Transform -- uid: 21070 - type: WallSolid - components: - - pos: 80.5,36.5 - parent: 0 - type: Transform -- uid: 21071 - type: WallSolid - components: - - pos: 80.5,37.5 - parent: 0 - type: Transform -- uid: 21072 - type: WallSolid - components: - - pos: 79.5,37.5 - parent: 0 - type: Transform -- uid: 21073 - type: WallSolid - components: - - pos: 78.5,37.5 - parent: 0 - type: Transform -- uid: 21074 - type: WallSolid - components: - - pos: 68.5,37.5 - parent: 0 - type: Transform -- uid: 21075 - type: WallSolid - components: - - pos: 67.5,37.5 - parent: 0 - type: Transform -- uid: 21076 - type: WallSolid - components: - - pos: 67.5,36.5 - parent: 0 - type: Transform -- uid: 21077 - type: WallSolid - components: - - pos: 67.5,35.5 - parent: 0 - type: Transform -- uid: 21078 - type: WallSolid - components: - - pos: 67.5,34.5 - parent: 0 - type: Transform -- uid: 21079 - type: WallSolid - components: - - pos: 61.5,35.5 - parent: 0 - type: Transform -- uid: 21080 - type: WallSolid - components: - - pos: 61.5,36.5 - parent: 0 - type: Transform -- uid: 21081 - type: WallSolid - components: - - pos: 61.5,37.5 - parent: 0 - type: Transform -- uid: 21082 - type: WallSolid - components: - - pos: 57.5,37.5 - parent: 0 - type: Transform -- uid: 21083 - type: WallSolid - components: - - pos: 57.5,35.5 - parent: 0 - type: Transform -- uid: 21084 - type: WallSolid - components: - - pos: 58.5,35.5 - parent: 0 - type: Transform -- uid: 21085 - type: WallSolid - components: - - pos: 59.5,35.5 - parent: 0 - type: Transform -- uid: 21086 - type: WallSolid - components: - - pos: 60.5,35.5 - parent: 0 - type: Transform -- uid: 21087 - type: WallSolid - components: - - pos: 62.5,37.5 - parent: 0 - type: Transform -- uid: 21088 - type: WallSolid - components: - - pos: 63.5,37.5 - parent: 0 - type: Transform -- uid: 21089 - type: WallSolid - components: - - pos: 64.5,37.5 - parent: 0 - type: Transform -- uid: 21090 - type: WallSolid - components: - - pos: 65.5,37.5 - parent: 0 - type: Transform -- uid: 21091 - type: WallSolid - components: - - pos: 66.5,37.5 - parent: 0 - type: Transform -- uid: 21092 - type: WallSolid - components: - - pos: 57.5,34.5 - parent: 0 - type: Transform -- uid: 21093 - type: WallSolid - components: - - pos: 57.5,33.5 - parent: 0 - type: Transform -- uid: 21094 - type: WallSolid - components: - - pos: 57.5,26.5 - parent: 0 - type: Transform -- uid: 21095 - type: WallSolid - components: - - pos: 57.5,27.5 - parent: 0 - type: Transform -- uid: 21096 - type: WallSolid - components: - - pos: 57.5,30.5 - parent: 0 - type: Transform -- uid: 21097 - type: Window - components: - - pos: 57.5,29.5 - parent: 0 - type: Transform -- uid: 21098 - type: Window - components: - - pos: 57.5,31.5 - parent: 0 - type: Transform -- uid: 21099 - type: Window - components: - - pos: 57.5,36.5 - parent: 0 - type: Transform -- uid: 21100 - type: ReinforcedWindow - components: - - pos: 69.5,37.5 - parent: 0 - type: Transform -- uid: 21101 - type: ReinforcedWindow - components: - - pos: 71.5,37.5 - parent: 0 - type: Transform -- uid: 21102 - type: WallSolid - components: - - pos: 80.5,26.5 - parent: 0 - type: Transform -- uid: 21103 - type: WallSolid - components: - - pos: 79.5,26.5 - parent: 0 - type: Transform -- uid: 21104 - type: WallSolid - components: - - pos: 79.5,27.5 - parent: 0 - type: Transform -- uid: 21105 - type: WallSolid - components: - - pos: 79.5,28.5 - parent: 0 - type: Transform -- uid: 21106 - type: GasPipeFourway - components: - - pos: 81.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21107 - type: WallSolid - components: - - pos: 84.5,17.5 - parent: 0 - type: Transform -- uid: 21108 - type: WallSolid - components: - - pos: 85.5,17.5 - parent: 0 - type: Transform -- uid: 21109 - type: WallSolid - components: - - pos: 86.5,17.5 - parent: 0 - type: Transform -- uid: 21110 - type: WallSolid - components: - - pos: 87.5,17.5 - parent: 0 - type: Transform -- uid: 21111 - type: WallSolid - components: - - pos: 88.5,17.5 - parent: 0 - type: Transform -- uid: 21112 - type: WallSolid - components: - - pos: 88.5,18.5 - parent: 0 - type: Transform -- uid: 21113 - type: WallSolid - components: - - pos: 88.5,19.5 - parent: 0 - type: Transform -- uid: 21114 - type: WallSolid - components: - - pos: 88.5,20.5 - parent: 0 - type: Transform -- uid: 21115 - type: WallSolid - components: - - pos: 88.5,21.5 - parent: 0 - type: Transform -- uid: 21116 - type: WallSolid - components: - - pos: 88.5,22.5 - parent: 0 - type: Transform -- uid: 21117 - type: WallSolid - components: - - pos: 88.5,23.5 - parent: 0 - type: Transform -- uid: 21118 - type: WallSolid - components: - - pos: 88.5,24.5 - parent: 0 - type: Transform -- uid: 21119 - type: WallSolid - components: - - pos: 88.5,25.5 - parent: 0 - type: Transform -- uid: 21120 - type: WallSolid - components: - - pos: 88.5,26.5 - parent: 0 - type: Transform -- uid: 21121 - type: WallSolid - components: - - pos: 87.5,26.5 - parent: 0 - type: Transform -- uid: 21122 - type: WallSolid - components: - - pos: 86.5,26.5 - parent: 0 - type: Transform -- uid: 21123 - type: WallSolid - components: - - pos: 85.5,26.5 - parent: 0 - type: Transform -- uid: 21124 - type: WallSolid - components: - - pos: 84.5,26.5 - parent: 0 - type: Transform -- uid: 21125 - type: GasPipeFourway - components: - - pos: 83.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21126 - type: WallSolid - components: - - pos: 78.5,26.5 - parent: 0 - type: Transform -- uid: 21127 - type: WallSolid - components: - - pos: 77.5,26.5 - parent: 0 - type: Transform -- uid: 21128 - type: WallSolid - components: - - pos: 76.5,26.5 - parent: 0 - type: Transform -- uid: 21129 - type: WallSolid - components: - - pos: 76.5,25.5 - parent: 0 - type: Transform -- uid: 21130 - type: WallSolid - components: - - pos: 76.5,24.5 - parent: 0 - type: Transform -- uid: 21131 - type: WallSolid - components: - - pos: 76.5,23.5 - parent: 0 - type: Transform -- uid: 21132 - type: WallSolid - components: - - pos: 76.5,22.5 - parent: 0 - type: Transform -- uid: 21133 - type: WallSolid - components: - - pos: 76.5,21.5 - parent: 0 - type: Transform -- uid: 21134 - type: WallSolid - components: - - pos: 76.5,20.5 - parent: 0 - type: Transform -- uid: 21135 - type: WallSolid - components: - - pos: 76.5,19.5 - parent: 0 - type: Transform -- uid: 21136 - type: WallSolid - components: - - pos: 76.5,18.5 - parent: 0 - type: Transform -- uid: 21137 - type: WallSolid - components: - - pos: 76.5,17.5 - parent: 0 - type: Transform -- uid: 21138 - type: WallSolid - components: - - pos: 77.5,17.5 - parent: 0 - type: Transform -- uid: 21139 - type: WallSolid - components: - - pos: 78.5,17.5 - parent: 0 - type: Transform -- uid: 21140 - type: WallSolid - components: - - pos: 79.5,17.5 - parent: 0 - type: Transform -- uid: 21141 - type: WallSolid - components: - - pos: 80.5,17.5 - parent: 0 - type: Transform -- uid: 21142 - type: GasPipeFourway - components: - - pos: 81.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21143 - type: GasPipeFourway - components: - - pos: 83.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21144 - type: GasPipeFourway - components: - - pos: 83.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21145 - type: GasPipeFourway - components: - - pos: 81.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21146 - type: WallSolid - components: - - pos: 77.5,23.5 - parent: 0 - type: Transform -- uid: 21147 - type: WallSolid - components: - - pos: 78.5,23.5 - parent: 0 - type: Transform -- uid: 21148 - type: WallSolid - components: - - pos: 79.5,23.5 - parent: 0 - type: Transform -- uid: 21149 - type: WallSolid - components: - - pos: 80.5,23.5 - parent: 0 - type: Transform -- uid: 21150 - type: WallSolid - components: - - pos: 77.5,20.5 - parent: 0 - type: Transform -- uid: 21151 - type: WallSolid - components: - - pos: 78.5,20.5 - parent: 0 - type: Transform -- uid: 21152 - type: WallSolid - components: - - pos: 79.5,20.5 - parent: 0 - type: Transform -- uid: 21153 - type: WallSolid - components: - - pos: 80.5,20.5 - parent: 0 - type: Transform -- uid: 21154 - type: WallSolid - components: - - pos: 84.5,20.5 - parent: 0 - type: Transform -- uid: 21155 - type: WallSolid - components: - - pos: 85.5,20.5 - parent: 0 - type: Transform -- uid: 21156 - type: WallSolid - components: - - pos: 86.5,20.5 - parent: 0 - type: Transform -- uid: 21157 - type: WallSolid - components: - - pos: 87.5,20.5 - parent: 0 - type: Transform -- uid: 21158 - type: WallSolid - components: - - pos: 87.5,23.5 - parent: 0 - type: Transform -- uid: 21159 - type: WallSolid - components: - - pos: 86.5,23.5 - parent: 0 - type: Transform -- uid: 21160 - type: WallSolid - components: - - pos: 85.5,23.5 - parent: 0 - type: Transform -- uid: 21161 - type: WallSolid - components: - - pos: 84.5,23.5 - parent: 0 - type: Transform -- uid: 21162 - type: WallSolid - components: - - pos: 73.5,17.5 - parent: 0 - type: Transform -- uid: 21163 - type: WallSolid - components: - - pos: 75.5,17.5 - parent: 0 - type: Transform -- uid: 21164 - type: WallSolid - components: - - pos: 75.5,20.5 - parent: 0 - type: Transform -- uid: 21165 - type: WallReinforced - components: - - pos: 73.5,20.5 - parent: 0 - type: Transform -- uid: 21166 - type: WallSolid - components: - - pos: 68.5,17.5 - parent: 0 - type: Transform -- uid: 21167 - type: WallSolid - components: - - pos: 69.5,17.5 - parent: 0 - type: Transform -- uid: 21168 - type: WallSolid - components: - - pos: 69.5,18.5 - parent: 0 - type: Transform -- uid: 21169 - type: WallSolid - components: - - pos: 69.5,19.5 - parent: 0 - type: Transform -- uid: 21170 - type: WallSolid - components: - - pos: 69.5,20.5 - parent: 0 - type: Transform -- uid: 21171 - type: WallReinforced - components: - - pos: 72.5,20.5 - parent: 0 - type: Transform -- uid: 21172 - type: WallReinforced - components: - - pos: 71.5,20.5 - parent: 0 - type: Transform -- uid: 21173 - type: WallReinforced - components: - - pos: 70.5,20.5 - parent: 0 - type: Transform -- uid: 21174 - type: WallSolid - components: - - pos: 57.5,19.5 - parent: 0 - type: Transform -- uid: 21175 - type: WallSolid - components: - - pos: 58.5,19.5 - parent: 0 - type: Transform -- uid: 21176 - type: WallSolid - components: - - pos: 57.5,18.5 - parent: 0 - type: Transform -- uid: 21177 - type: WallSolid - components: - - pos: 57.5,17.5 - parent: 0 - type: Transform -- uid: 21178 - type: WallSolid - components: - - pos: 57.5,16.5 - parent: 0 - type: Transform -- uid: 21179 - type: WallSolid - components: - - pos: 57.5,15.5 - parent: 0 - type: Transform -- uid: 21180 - type: WallSolid - components: - - pos: 57.5,14.5 - parent: 0 - type: Transform -- uid: 21181 - type: WallSolid - components: - - pos: 57.5,13.5 - parent: 0 - type: Transform -- uid: 21182 - type: WallSolid - components: - - pos: 58.5,13.5 - parent: 0 - type: Transform -- uid: 21183 - type: WallSolid - components: - - pos: 59.5,13.5 - parent: 0 - type: Transform -- uid: 21184 - type: WallSolid - components: - - pos: 60.5,13.5 - parent: 0 - type: Transform -- uid: 21185 - type: WallSolid - components: - - pos: 62.5,13.5 - parent: 0 - type: Transform -- uid: 21186 - type: WallSolid - components: - - pos: 63.5,13.5 - parent: 0 - type: Transform -- uid: 21187 - type: WallSolid - components: - - pos: 63.5,14.5 - parent: 0 - type: Transform -- uid: 21188 - type: WallSolid - components: - - pos: 63.5,15.5 - parent: 0 - type: Transform -- uid: 21189 - type: WallSolid - components: - - pos: 63.5,16.5 - parent: 0 - type: Transform -- uid: 21190 - type: WallSolid - components: - - pos: 63.5,17.5 - parent: 0 - type: Transform -- uid: 21191 - type: WallSolid - components: - - pos: 60.5,20.5 - parent: 0 - type: Transform -- uid: 21192 - type: WallSolid - components: - - pos: 60.5,19.5 - parent: 0 - type: Transform -- uid: 21193 - type: WallSolid - components: - - pos: 59.5,19.5 - parent: 0 - type: Transform -- uid: 21194 - type: WallSolid - components: - - pos: 59.5,17.5 - parent: 0 - type: Transform -- uid: 21195 - type: WallSolid - components: - - pos: 58.5,17.5 - parent: 0 - type: Transform -- uid: 21196 - type: WallSolid - components: - - pos: 59.5,15.5 - parent: 0 - type: Transform -- uid: 21197 - type: WallSolid - components: - - pos: 58.5,15.5 - parent: 0 - type: Transform -- uid: 21198 - type: WallSolid - components: - - pos: 64.5,17.5 - parent: 0 - type: Transform -- uid: 21199 - type: WallSolid - components: - - pos: 62.5,20.5 - parent: 0 - type: Transform -- uid: 21200 - type: WallSolid - components: - - pos: 62.5,21.5 - parent: 0 - type: Transform -- uid: 21201 - type: WallSolid - components: - - pos: 63.5,20.5 - parent: 0 - type: Transform -- uid: 21202 - type: WallSolid - components: - - pos: 64.5,20.5 - parent: 0 - type: Transform -- uid: 21203 - type: WallSolid - components: - - pos: 65.5,20.5 - parent: 0 - type: Transform -- uid: 21204 - type: WallSolid - components: - - pos: 66.5,20.5 - parent: 0 - type: Transform -- uid: 21205 - type: WallSolid - components: - - pos: 67.5,20.5 - parent: 0 - type: Transform -- uid: 21206 - type: WallSolid - components: - - pos: 68.5,20.5 - parent: 0 - type: Transform -- uid: 21207 - type: WallSolid - components: - - pos: 58.5,20.5 - parent: 0 - type: Transform -- uid: 21208 - type: WallSolid - components: - - pos: 58.5,21.5 - parent: 0 - type: Transform -- uid: 21209 - type: WallSolid - components: - - pos: 58.5,22.5 - parent: 0 - type: Transform -- uid: 21210 - type: WallSolid - components: - - pos: 57.5,22.5 - parent: 0 - type: Transform -- uid: 21211 - type: WallSolid - components: - - pos: 57.5,23.5 - parent: 0 - type: Transform -- uid: 21212 - type: WallReinforced - components: - - pos: 70.5,21.5 - parent: 0 - type: Transform -- uid: 21213 - type: WallReinforced - components: - - pos: 70.5,22.5 - parent: 0 - type: Transform -- uid: 21214 - type: WallReinforced - components: - - pos: 70.5,23.5 - parent: 0 - type: Transform -- uid: 21215 - type: WallReinforced - components: - - pos: 71.5,23.5 - parent: 0 - type: Transform -- uid: 21216 - type: TintedWindow - components: - - pos: 63.5,19.5 - parent: 0 - type: Transform -- uid: 21217 - type: TintedWindow - components: - - pos: 65.5,17.5 - parent: 0 - type: Transform -- uid: 21218 - type: TintedWindow - components: - - pos: 67.5,17.5 - parent: 0 - type: Transform -- uid: 21219 - type: WallReinforced - components: - - pos: 72.5,23.5 - parent: 0 - type: Transform -- uid: 21220 - type: Girder - components: - - pos: 72.5,25.5 - parent: 0 - type: Transform -- uid: 21221 - type: Girder - components: - - pos: 75.5,27.5 - parent: 0 - type: Transform -- uid: 21222 - type: WallSolid - components: - - pos: 76.5,27.5 - parent: 0 - type: Transform -- uid: 21223 - type: WallSolid - components: - - pos: 76.5,28.5 - parent: 0 - type: Transform -- uid: 21224 - type: MountainRock - components: - - pos: 78.5,27.5 - parent: 0 - type: Transform -- uid: 21225 - type: MountainRock - components: - - pos: 77.5,27.5 - parent: 0 - type: Transform -- uid: 21226 - type: MountainRock - components: - - pos: 69.5,21.5 - parent: 0 - type: Transform -- uid: 21227 - type: MountainRock - components: - - pos: 68.5,21.5 - parent: 0 - type: Transform -- uid: 21228 - type: MountainRock - components: - - pos: 67.5,21.5 - parent: 0 - type: Transform -- uid: 21229 - type: MountainRock - components: - - pos: 66.5,21.5 - parent: 0 - type: Transform -- uid: 21230 - type: MountainRock - components: - - pos: 65.5,21.5 - parent: 0 - type: Transform -- uid: 21231 - type: MountainRock - components: - - pos: 64.5,21.5 - parent: 0 - type: Transform -- uid: 21232 - type: MountainRock - components: - - pos: 63.5,21.5 - parent: 0 - type: Transform -- uid: 21233 - type: Railing - components: - - pos: 77.5,28.5 - parent: 0 - type: Transform -- uid: 21234 - type: Railing - components: - - pos: 78.5,28.5 - parent: 0 - type: Transform -- uid: 21235 - type: Railing - components: - - pos: 69.5,22.5 - parent: 0 - type: Transform -- uid: 21236 - type: Railing - components: - - pos: 68.5,22.5 - parent: 0 - type: Transform -- uid: 21237 - type: Railing - components: - - pos: 67.5,22.5 - parent: 0 - type: Transform -- uid: 21238 - type: Railing - components: - - pos: 66.5,22.5 - parent: 0 - type: Transform -- uid: 21239 - type: Railing - components: - - pos: 65.5,22.5 - parent: 0 - type: Transform -- uid: 21240 - type: Railing - components: - - pos: 64.5,22.5 - parent: 0 - type: Transform -- uid: 21241 - type: Railing - components: - - pos: 63.5,22.5 - parent: 0 - type: Transform -- uid: 21242 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: 62.5,22.5 - parent: 0 - type: Transform -- uid: 21243 - type: Girder - components: - - pos: 64.5,23.5 - parent: 0 - type: Transform -- uid: 21244 - type: Grille - components: - - pos: 59.5,21.5 - parent: 0 - type: Transform -- uid: 21245 - type: Grille - components: - - pos: 62.5,23.5 - parent: 0 - type: Transform -- uid: 21246 - type: Grille - components: - - pos: 65.5,23.5 - parent: 0 - type: Transform -- uid: 21247 - type: Grille - components: - - pos: 69.5,23.5 - parent: 0 - type: Transform -- uid: 21248 - type: Catwalk - components: - - pos: 61.5,21.5 - parent: 0 - type: Transform -- uid: 21249 - type: Catwalk - components: - - pos: 61.5,22.5 - parent: 0 - type: Transform -- uid: 21250 - type: Catwalk - components: - - pos: 61.5,23.5 - parent: 0 - type: Transform -- uid: 21251 - type: Catwalk - components: - - pos: 74.5,18.5 - parent: 0 - type: Transform -- uid: 21252 - type: Catwalk - components: - - pos: 74.5,19.5 - parent: 0 - type: Transform -- uid: 21253 - type: WardrobeWhiteFilled - components: - - pos: 59.5,22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.2184362 - - 12.107451 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21254 - type: MopBucket - components: - - pos: 67.4152,22.678436 - parent: 0 - type: Transform -- uid: 21255 - type: CableHV - components: - - pos: 74.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21256 - type: PlushieLamp - components: - - pos: 85.33805,22.915941 - parent: 0 - type: Transform -- uid: 21257 - type: ClothingHandsGlovesColorGreen - components: - - pos: 98.5682,21.508568 - parent: 0 - type: Transform -- uid: 21258 - type: ClothingNeckScarfStripedGreen - components: - - pos: 96.5057,18.524193 - parent: 0 - type: Transform -- uid: 21259 - type: FirelockGlass - components: - - pos: 71.5,24.5 - parent: 0 - type: Transform -- uid: 21260 - type: Catwalk - components: - - pos: 70.5,24.5 - parent: 0 - type: Transform -- uid: 21261 - type: Catwalk - components: - - pos: 69.5,24.5 - parent: 0 - type: Transform -- uid: 21262 - type: Catwalk - components: - - pos: 68.5,24.5 - parent: 0 - type: Transform -- uid: 21263 - type: Catwalk - components: - - pos: 67.5,24.5 - parent: 0 - type: Transform -- uid: 21264 - type: Catwalk - components: - - pos: 66.5,24.5 - parent: 0 - type: Transform -- uid: 21265 - type: Catwalk - components: - - pos: 65.5,24.5 - parent: 0 - type: Transform -- uid: 21266 - type: Catwalk - components: - - pos: 64.5,24.5 - parent: 0 - type: Transform -- uid: 21267 - type: Catwalk - components: - - pos: 63.5,24.5 - parent: 0 - type: Transform -- uid: 21268 - type: Catwalk - components: - - pos: 62.5,24.5 - parent: 0 - type: Transform -- uid: 21269 - type: Catwalk - components: - - pos: 61.5,24.5 - parent: 0 - type: Transform -- uid: 21270 - type: Catwalk - components: - - pos: 60.5,24.5 - parent: 0 - type: Transform -- uid: 21271 - type: Catwalk - components: - - pos: 59.5,24.5 - parent: 0 - type: Transform -- uid: 21272 - type: Catwalk - components: - - pos: 58.5,24.5 - parent: 0 - type: Transform -- uid: 21273 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: 68.5,27.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Court Backroom - type: SurveillanceCamera -- uid: 21274 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 70.5,26.5 - parent: 0 - type: Transform -- uid: 21275 - type: filingCabinetDrawerRandom - components: - - pos: 70.5,29.5 - parent: 0 - type: Transform -- uid: 21276 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 70.5,27.5 - parent: 0 - type: Transform -- uid: 21277 - type: filingCabinetDrawerRandom - components: - - pos: 70.5,28.5 - parent: 0 - type: Transform -- uid: 21278 - type: MaintenanceWeaponSpawner - components: - - pos: 75.5,21.5 - parent: 0 - type: Transform -- uid: 21279 - type: Table - components: - - pos: 75.5,21.5 - parent: 0 - type: Transform -- uid: 21280 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 77.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21281 - type: ClothingHandsGlovesColorWhite - components: - - pos: 58.44215,23.562126 - parent: 0 - type: Transform -- uid: 21282 - type: WallSolid - components: - - pos: 57.5,4.5 - parent: 0 - type: Transform -- uid: 21283 - type: WallSolid - components: - - pos: 57.5,7.5 - parent: 0 - type: Transform -- uid: 21284 - type: WallSolid - components: - - pos: 57.5,8.5 - parent: 0 - type: Transform -- uid: 21285 - type: WallSolid - components: - - pos: 57.5,9.5 - parent: 0 - type: Transform -- uid: 21286 - type: WallSolid - components: - - pos: 61.5,5.5 - parent: 0 - type: Transform -- uid: 21287 - type: WallSolid - components: - - pos: 61.5,6.5 - parent: 0 - type: Transform -- uid: 21288 - type: WallSolid - components: - - pos: 61.5,7.5 - parent: 0 - type: Transform -- uid: 21289 - type: WallSolid - components: - - pos: 60.5,7.5 - parent: 0 - type: Transform -- uid: 21290 - type: WallSolid - components: - - pos: 59.5,4.5 - parent: 0 - type: Transform -- uid: 21291 - type: Window - components: - - pos: 58.5,7.5 - parent: 0 - type: Transform -- uid: 21292 - type: Window - components: - - pos: 57.5,11.5 - parent: 0 - type: Transform -- uid: 21293 - type: WallSolid - components: - - pos: 65.5,3.5 - parent: 0 - type: Transform -- uid: 21294 - type: WallSolid - components: - - pos: 66.5,3.5 - parent: 0 - type: Transform -- uid: 21295 - type: WallSolid - components: - - pos: 67.5,3.5 - parent: 0 - type: Transform -- uid: 21296 - type: WallSolid - components: - - pos: 67.5,4.5 - parent: 0 - type: Transform -- uid: 21297 - type: WallSolid - components: - - pos: 67.5,5.5 - parent: 0 - type: Transform -- uid: 21298 - type: WallSolid - components: - - pos: 70.5,5.5 - parent: 0 - type: Transform -- uid: 21299 - type: WallSolid - components: - - pos: 71.5,5.5 - parent: 0 - type: Transform -- uid: 21300 - type: WallSolid - components: - - pos: 74.5,5.5 - parent: 0 - type: Transform -- uid: 21301 - type: WallSolid - components: - - pos: 75.5,5.5 - parent: 0 - type: Transform -- uid: 21302 - type: WallSolid - components: - - pos: 75.5,6.5 - parent: 0 - type: Transform -- uid: 21303 - type: WallSolid - components: - - pos: 75.5,7.5 - parent: 0 - type: Transform -- uid: 21304 - type: WallSolid - components: - - pos: 75.5,8.5 - parent: 0 - type: Transform -- uid: 21305 - type: WallSolid - components: - - pos: 75.5,9.5 - parent: 0 - type: Transform -- uid: 21306 - type: WallSolid - components: - - pos: 75.5,10.5 - parent: 0 - type: Transform -- uid: 21307 - type: WallSolid - components: - - pos: 75.5,11.5 - parent: 0 - type: Transform -- uid: 21308 - type: WallSolid - components: - - pos: 64.5,-6.5 - parent: 0 - type: Transform -- uid: 21309 - type: WallSolid - components: - - pos: 65.5,-6.5 - parent: 0 - type: Transform -- uid: 21310 - type: WallSolid - components: - - pos: 66.5,-6.5 - parent: 0 - type: Transform -- uid: 21311 - type: WallSolid - components: - - pos: 68.5,-6.5 - parent: 0 - type: Transform -- uid: 21312 - type: WallReinforced - components: - - pos: 68.5,1.5 - parent: 0 - type: Transform -- uid: 21313 - type: WallReinforced - components: - - pos: 67.5,1.5 - parent: 0 - type: Transform -- uid: 21314 - type: WallReinforced - components: - - pos: 65.5,1.5 - parent: 0 - type: Transform -- uid: 21315 - type: WallReinforced - components: - - pos: 66.5,1.5 - parent: 0 - type: Transform -- uid: 21316 - type: WallReinforced - components: - - pos: 65.5,0.5 - parent: 0 - type: Transform -- uid: 21317 - type: WallReinforced - components: - - pos: 65.5,-1.5 - parent: 0 - type: Transform -- uid: 21318 - type: WallReinforced - components: - - pos: 65.5,-2.5 - parent: 0 - type: Transform -- uid: 21319 - type: WallReinforced - components: - - pos: 68.5,-2.5 - parent: 0 - type: Transform -- uid: 21320 - type: WallReinforced - components: - - pos: 66.5,-2.5 - parent: 0 - type: Transform -- uid: 21321 - type: WallReinforced - components: - - pos: 67.5,-2.5 - parent: 0 - type: Transform -- uid: 21322 - type: Girder - components: - - pos: 65.5,-3.5 - parent: 0 - type: Transform -- uid: 21323 - type: Girder - components: - - pos: 70.5,4.5 - parent: 0 - type: Transform -- uid: 21324 - type: Rack - components: - - pos: 71.5,4.5 - parent: 0 - type: Transform -- uid: 21325 - type: Catwalk - components: - - pos: 67.5,-5.5 - parent: 0 - type: Transform -- uid: 21326 - type: Catwalk - components: - - pos: 66.5,-5.5 - parent: 0 - type: Transform -- uid: 21327 - type: Catwalk - components: - - pos: 65.5,-5.5 - parent: 0 - type: Transform -- uid: 21328 - type: Catwalk - components: - - pos: 64.5,-5.5 - parent: 0 - type: Transform -- uid: 21329 - type: Catwalk - components: - - pos: 64.5,-4.5 - parent: 0 - type: Transform -- uid: 21330 - type: Catwalk - components: - - pos: 64.5,-3.5 - parent: 0 - type: Transform -- uid: 21331 - type: Catwalk - components: - - pos: 64.5,-2.5 - parent: 0 - type: Transform -- uid: 21332 - type: Catwalk - components: - - pos: 64.5,-1.5 - parent: 0 - type: Transform -- uid: 21333 - type: Catwalk - components: - - pos: 64.5,-0.5 - parent: 0 - type: Transform -- uid: 21334 - type: Catwalk - components: - - pos: 64.5,0.5 - parent: 0 - type: Transform -- uid: 21335 - type: Catwalk - components: - - pos: 64.5,1.5 - parent: 0 - type: Transform -- uid: 21336 - type: Catwalk - components: - - pos: 64.5,2.5 - parent: 0 - type: Transform -- uid: 21337 - type: FoodBoxDonkpocketGondola - components: - - pos: 79.66587,7.4152994 - parent: 0 - type: Transform -- uid: 21338 - type: Catwalk - components: - - pos: 67.5,2.5 - parent: 0 - type: Transform -- uid: 21339 - type: Catwalk - components: - - pos: 66.5,2.5 - parent: 0 - type: Transform -- uid: 21340 - type: Catwalk - components: - - pos: 65.5,2.5 - parent: 0 - type: Transform -- uid: 21341 - type: Table - components: - - pos: 62.5,17.5 - parent: 0 - type: Transform -- uid: 21342 - type: Catwalk - components: - - pos: 69.5,3.5 - parent: 0 - type: Transform -- uid: 21343 - type: Catwalk - components: - - pos: 70.5,3.5 - parent: 0 - type: Transform -- uid: 21344 - type: Catwalk - components: - - pos: 71.5,3.5 - parent: 0 - type: Transform -- uid: 21345 - type: Catwalk - components: - - pos: 72.5,3.5 - parent: 0 - type: Transform -- uid: 21346 - type: Catwalk - components: - - pos: 73.5,3.5 - parent: 0 - type: Transform -- uid: 21347 - type: Catwalk - components: - - pos: 74.5,3.5 - parent: 0 - type: Transform -- uid: 21348 - type: RandomInstruments - components: - - pos: 62.5,17.5 - parent: 0 - type: Transform -- uid: 21349 - type: WallSolid - components: - - pos: 76.5,3.5 - parent: 0 - type: Transform -- uid: 21350 - type: ReinforcedWindow - components: - - pos: 69.5,5.5 - parent: 0 - type: Transform -- uid: 21351 - type: ReinforcedWindow - components: - - pos: 68.5,5.5 - parent: 0 - type: Transform -- uid: 21352 - type: ReinforcedWindow - components: - - pos: 73.5,5.5 - parent: 0 - type: Transform -- uid: 21353 - type: ReinforcedWindow - components: - - pos: 72.5,5.5 - parent: 0 - type: Transform -- uid: 21354 - type: FirelockGlass - components: - - pos: 21.5,32.5 - parent: 0 - type: Transform -- uid: 21355 - type: FirelockGlass - components: - - pos: 21.5,33.5 - parent: 0 - type: Transform -- uid: 21356 - type: FirelockGlass - components: - - pos: 21.5,34.5 - parent: 0 - type: Transform -- uid: 21357 - type: FirelockGlass - components: - - pos: 36.5,32.5 - parent: 0 - type: Transform -- uid: 21358 - type: FirelockGlass - components: - - pos: 36.5,33.5 - parent: 0 - type: Transform -- uid: 21359 - type: FirelockGlass - components: - - pos: 36.5,34.5 - parent: 0 - type: Transform -- uid: 21360 - type: FirelockGlass - components: - - pos: 53.5,32.5 - parent: 0 - type: Transform -- uid: 21361 - type: FirelockGlass - components: - - pos: 53.5,33.5 - parent: 0 - type: Transform -- uid: 21362 - type: FirelockGlass - components: - - pos: 53.5,34.5 - parent: 0 - type: Transform -- uid: 21363 - type: FirelockGlass - components: - - pos: 54.5,35.5 - parent: 0 - type: Transform -- uid: 21364 - type: FirelockGlass - components: - - pos: 55.5,35.5 - parent: 0 - type: Transform -- uid: 21365 - type: FirelockGlass - components: - - pos: 56.5,35.5 - parent: 0 - type: Transform -- uid: 21366 - type: FirelockGlass - components: - - pos: 54.5,25.5 - parent: 0 - type: Transform -- uid: 21367 - type: FirelockGlass - components: - - pos: 55.5,25.5 - parent: 0 - type: Transform -- uid: 21368 - type: FirelockGlass - components: - - pos: 56.5,25.5 - parent: 0 - type: Transform -- uid: 21369 - type: FirelockGlass - components: - - pos: 57.5,-11.5 - parent: 0 - type: Transform -- uid: 21370 - type: FirelockGlass - components: - - pos: 57.5,-10.5 - parent: 0 - type: Transform -- uid: 21371 - type: FirelockGlass - components: - - pos: 57.5,-9.5 - parent: 0 - type: Transform -- uid: 21372 - type: FirelockGlass - components: - - pos: 62.5,-11.5 - parent: 0 - type: Transform -- uid: 21373 - type: FirelockGlass - components: - - pos: 62.5,-10.5 - parent: 0 - type: Transform -- uid: 21374 - type: FirelockGlass - components: - - pos: 62.5,-9.5 - parent: 0 - type: Transform -- uid: 21375 - type: FirelockGlass - components: - - pos: 68.5,-13.5 - parent: 0 - type: Transform -- uid: 21376 - type: FirelockGlass - components: - - pos: 68.5,-17.5 - parent: 0 - type: Transform -- uid: 21377 - type: FirelockGlass - components: - - pos: 70.5,-15.5 - parent: 0 - type: Transform -- uid: 21378 - type: FirelockGlass - components: - - pos: 84.5,-5.5 - parent: 0 - type: Transform -- uid: 21379 - type: FirelockGlass - components: - - pos: 86.5,-2.5 - parent: 0 - type: Transform -- uid: 21380 - type: FirelockGlass - components: - - pos: 83.5,-1.5 - parent: 0 - type: Transform -- uid: 21381 - type: FirelockGlass - components: - - pos: 77.5,-1.5 - parent: 0 - type: Transform -- uid: 21382 - type: FirelockGlass - components: - - pos: 76.5,-21.5 - parent: 0 - type: Transform -- uid: 21383 - type: FirelockGlass - components: - - pos: 84.5,0.5 - parent: 0 - type: Transform -- uid: 21384 - type: FirelockGlass - components: - - pos: 75.5,0.5 - parent: 0 - type: Transform -- uid: 21385 - type: FirelockGlass - components: - - pos: 76.5,-17.5 - parent: 0 - type: Transform -- uid: 21386 - type: FirelockGlass - components: - - pos: 82.5,-20.5 - parent: 0 - type: Transform -- uid: 21387 - type: WallReinforced - components: - - pos: 70.5,-13.5 - parent: 0 - type: Transform -- uid: 21388 - type: WallReinforced - components: - - pos: 70.5,-12.5 - parent: 0 - type: Transform -- uid: 21389 - type: WallReinforced - components: - - pos: 70.5,-11.5 - parent: 0 - type: Transform -- uid: 21390 - type: WallReinforced - components: - - pos: 71.5,-11.5 - parent: 0 - type: Transform -- uid: 21391 - type: WallReinforced - components: - - pos: 74.5,-11.5 - parent: 0 - type: Transform -- uid: 21392 - type: WallReinforced - components: - - pos: 73.5,-11.5 - parent: 0 - type: Transform -- uid: 21393 - type: FirelockGlass - components: - - pos: 64.5,-13.5 - parent: 0 - type: Transform -- uid: 21394 - type: FirelockGlass - components: - - pos: 57.5,10.5 - parent: 0 - type: Transform -- uid: 21395 - type: FirelockGlass - components: - - pos: 57.5,12.5 - parent: 0 - type: Transform -- uid: 21396 - type: FirelockGlass - components: - - pos: 75.5,13.5 - parent: 0 - type: Transform -- uid: 21397 - type: FirelockGlass - components: - - pos: 75.5,14.5 - parent: 0 - type: Transform -- uid: 21398 - type: FirelockGlass - components: - - pos: 75.5,15.5 - parent: 0 - type: Transform -- uid: 21399 - type: Window - components: - - pos: 75.5,12.5 - parent: 0 - type: Transform -- uid: 21400 - type: Window - components: - - pos: 75.5,16.5 - parent: 0 - type: Transform -- uid: 21401 - type: FirelockGlass - components: - - pos: 81.5,17.5 - parent: 0 - type: Transform -- uid: 21402 - type: FirelockGlass - components: - - pos: 82.5,17.5 - parent: 0 - type: Transform -- uid: 21403 - type: FirelockGlass - components: - - pos: 83.5,17.5 - parent: 0 - type: Transform -- uid: 21404 - type: FirelockGlass - components: - - pos: 83.5,26.5 - parent: 0 - type: Transform -- uid: 21405 - type: FirelockGlass - components: - - pos: 82.5,26.5 - parent: 0 - type: Transform -- uid: 21406 - type: FirelockGlass - components: - - pos: 81.5,26.5 - parent: 0 - type: Transform -- uid: 21407 - type: FirelockGlass - components: - - pos: 80.5,38.5 - parent: 0 - type: Transform -- uid: 21408 - type: FirelockGlass - components: - - pos: 80.5,39.5 - parent: 0 - type: Transform -- uid: 21409 - type: FirelockGlass - components: - - pos: 80.5,40.5 - parent: 0 - type: Transform -- uid: 21410 - type: FirelockGlass - components: - - pos: 84.5,38.5 - parent: 0 - type: Transform -- uid: 21411 - type: FirelockGlass - components: - - pos: 84.5,39.5 - parent: 0 - type: Transform -- uid: 21412 - type: FirelockGlass - components: - - pos: 84.5,40.5 - parent: 0 - type: Transform -- uid: 21413 - type: FirelockGlass - components: - - pos: 57.5,28.5 - parent: 0 - type: Transform -- uid: 21414 - type: FirelockGlass - components: - - pos: 57.5,32.5 - parent: 0 - type: Transform -- uid: 21415 - type: FirelockGlass - components: - - pos: 56.5,42.5 - parent: 0 - type: Transform -- uid: 21416 - type: FirelockGlass - components: - - pos: 65.5,41.5 - parent: 0 - type: Transform -- uid: 21417 - type: WallSolid - components: - - pos: 102.5,53.5 - parent: 0 - type: Transform -- uid: 21418 - type: WallSolid - components: - - pos: 100.5,53.5 - parent: 0 - type: Transform -- uid: 21419 - type: WallSolid - components: - - pos: 99.5,53.5 - parent: 0 - type: Transform -- uid: 21420 - type: WallSolid - components: - - pos: 102.5,45.5 - parent: 0 - type: Transform -- uid: 21421 - type: WallSolid - components: - - pos: 100.5,45.5 - parent: 0 - type: Transform -- uid: 21422 - type: WallSolid - components: - - pos: 99.5,45.5 - parent: 0 - type: Transform -- uid: 21423 - type: ReinforcedWindow - components: - - pos: 103.5,52.5 - parent: 0 - type: Transform -- uid: 21424 - type: ReinforcedWindow - components: - - pos: 103.5,51.5 - parent: 0 - type: Transform -- uid: 21425 - type: ReinforcedWindow - components: - - pos: 103.5,50.5 - parent: 0 - type: Transform -- uid: 21426 - type: ReinforcedWindow - components: - - pos: 103.5,46.5 - parent: 0 - type: Transform -- uid: 21427 - type: ReinforcedWindow - components: - - pos: 103.5,47.5 - parent: 0 - type: Transform -- uid: 21428 - type: ReinforcedWindow - components: - - pos: 103.5,48.5 - parent: 0 - type: Transform -- uid: 21429 - type: Window - components: - - pos: 85.5,41.5 - parent: 0 - type: Transform -- uid: 21430 - type: Window - components: - - pos: 86.5,41.5 - parent: 0 - type: Transform -- uid: 21431 - type: Window - components: - - pos: 88.5,41.5 - parent: 0 - type: Transform -- uid: 21432 - type: Window - components: - - pos: 88.5,42.5 - parent: 0 - type: Transform -- uid: 21433 - type: Window - components: - - pos: 90.5,41.5 - parent: 0 - type: Transform -- uid: 21434 - type: Window - components: - - pos: 90.5,42.5 - parent: 0 - type: Transform -- uid: 21435 - type: Window - components: - - pos: 92.5,41.5 - parent: 0 - type: Transform -- uid: 21436 - type: Window - components: - - pos: 93.5,41.5 - parent: 0 - type: Transform -- uid: 21437 - type: MountainRock - components: - - pos: 87.5,44.5 - parent: 0 - type: Transform -- uid: 21438 - type: MountainRock - components: - - pos: 86.5,44.5 - parent: 0 - type: Transform -- uid: 21439 - type: MountainRock - components: - - pos: 85.5,44.5 - parent: 0 - type: Transform -- uid: 21440 - type: MountainRock - components: - - pos: 85.5,45.5 - parent: 0 - type: Transform -- uid: 21441 - type: MountainRock - components: - - pos: 85.5,46.5 - parent: 0 - type: Transform -- uid: 21442 - type: MountainRock - components: - - pos: 85.5,47.5 - parent: 0 - type: Transform -- uid: 21443 - type: MountainRock - components: - - pos: 85.5,48.5 - parent: 0 - type: Transform -- uid: 21444 - type: MountainRock - components: - - pos: 85.5,49.5 - parent: 0 - type: Transform -- uid: 21445 - type: MountainRock - components: - - pos: 85.5,50.5 - parent: 0 - type: Transform -- uid: 21446 - type: MountainRock - components: - - pos: 85.5,51.5 - parent: 0 - type: Transform -- uid: 21447 - type: MountainRock - components: - - pos: 85.5,52.5 - parent: 0 - type: Transform -- uid: 21448 - type: MountainRock - components: - - pos: 85.5,53.5 - parent: 0 - type: Transform -- uid: 21449 - type: MountainRock - components: - - pos: 86.5,53.5 - parent: 0 - type: Transform -- uid: 21450 - type: MountainRock - components: - - pos: 87.5,53.5 - parent: 0 - type: Transform -- uid: 21451 - type: MountainRock - components: - - pos: 91.5,53.5 - parent: 0 - type: Transform -- uid: 21452 - type: MountainRock - components: - - pos: 92.5,53.5 - parent: 0 - type: Transform -- uid: 21453 - type: MountainRock - components: - - pos: 93.5,53.5 - parent: 0 - type: Transform -- uid: 21454 - type: MountainRock - components: - - pos: 93.5,52.5 - parent: 0 - type: Transform -- uid: 21455 - type: MountainRock - components: - - pos: 93.5,51.5 - parent: 0 - type: Transform -- uid: 21456 - type: MountainRock - components: - - pos: 93.5,50.5 - parent: 0 - type: Transform -- uid: 21457 - type: MountainRock - components: - - pos: 93.5,49.5 - parent: 0 - type: Transform -- uid: 21458 - type: MountainRock - components: - - pos: 93.5,48.5 - parent: 0 - type: Transform -- uid: 21459 - type: MountainRock - components: - - pos: 93.5,47.5 - parent: 0 - type: Transform -- uid: 21460 - type: MountainRock - components: - - pos: 93.5,46.5 - parent: 0 - type: Transform -- uid: 21461 - type: MountainRock - components: - - pos: 93.5,45.5 - parent: 0 - type: Transform -- uid: 21462 - type: MountainRock - components: - - pos: 93.5,44.5 - parent: 0 - type: Transform -- uid: 21463 - type: MountainRock - components: - - pos: 92.5,44.5 - parent: 0 - type: Transform -- uid: 21464 - type: MountainRock - components: - - pos: 91.5,44.5 - parent: 0 - type: Transform -- uid: 21465 - type: WallReinforced - components: - - pos: 84.5,28.5 - parent: 0 - type: Transform -- uid: 21466 - type: WallReinforced - components: - - pos: 84.5,29.5 - parent: 0 - type: Transform -- uid: 21467 - type: WallReinforced - components: - - pos: 84.5,30.5 - parent: 0 - type: Transform -- uid: 21468 - type: WallReinforced - components: - - pos: 84.5,31.5 - parent: 0 - type: Transform -- uid: 21469 - type: WallReinforced - components: - - pos: 84.5,33.5 - parent: 0 - type: Transform -- uid: 21470 - type: WallReinforced - components: - - pos: 84.5,34.5 - parent: 0 - type: Transform -- uid: 21471 - type: WallReinforced - components: - - pos: 84.5,35.5 - parent: 0 - type: Transform -- uid: 21472 - type: WallReinforced - components: - - pos: 84.5,36.5 - parent: 0 - type: Transform -- uid: 21473 - type: WallReinforced - components: - - pos: 84.5,37.5 - parent: 0 - type: Transform -- uid: 21474 - type: WallReinforced - components: - - pos: 85.5,37.5 - parent: 0 - type: Transform -- uid: 21475 - type: WallReinforced - components: - - pos: 86.5,37.5 - parent: 0 - type: Transform -- uid: 21476 - type: WallReinforced - components: - - pos: 88.5,37.5 - parent: 0 - type: Transform -- uid: 21477 - type: WallReinforced - components: - - pos: 89.5,37.5 - parent: 0 - type: Transform -- uid: 21478 - type: WallReinforced - components: - - pos: 89.5,36.5 - parent: 0 - type: Transform -- uid: 21479 - type: WallReinforced - components: - - pos: 89.5,34.5 - parent: 0 - type: Transform -- uid: 21480 - type: WallSolid - components: - - pos: 89.5,33.5 - parent: 0 - type: Transform -- uid: 21481 - type: WallReinforced - components: - - pos: 90.5,34.5 - parent: 0 - type: Transform -- uid: 21482 - type: WallReinforced - components: - - pos: 91.5,34.5 - parent: 0 - type: Transform -- uid: 21483 - type: WallReinforced - components: - - pos: 92.5,34.5 - parent: 0 - type: Transform -- uid: 21484 - type: WallReinforced - components: - - pos: 94.5,34.5 - parent: 0 - type: Transform -- uid: 21485 - type: WallReinforced - components: - - pos: 95.5,34.5 - parent: 0 - type: Transform -- uid: 21486 - type: WallReinforced - components: - - pos: 99.5,34.5 - parent: 0 - type: Transform -- uid: 21487 - type: ReinforcedWindow - components: - - pos: 93.5,34.5 - parent: 0 - type: Transform -- uid: 21488 - type: ReinforcedWindow - components: - - pos: 98.5,34.5 - parent: 0 - type: Transform -- uid: 21489 - type: ReinforcedWindow - components: - - pos: 97.5,34.5 - parent: 0 - type: Transform -- uid: 21490 - type: ReinforcedWindow - components: - - pos: 96.5,34.5 - parent: 0 - type: Transform -- uid: 21491 - type: ReinforcedWindow - components: - - pos: 94.5,36.5 - parent: 0 - type: Transform -- uid: 21492 - type: ReinforcedWindow - components: - - pos: 86.5,31.5 - parent: 0 - type: Transform -- uid: 21493 - type: ReinforcedWindow - components: - - pos: 88.5,31.5 - parent: 0 - type: Transform -- uid: 21494 - type: ReinforcedWindow - components: - - pos: 89.5,29.5 - parent: 0 - type: Transform -- uid: 21495 - type: ReinforcedWindow - components: - - pos: 89.5,30.5 - parent: 0 - type: Transform -- uid: 21496 - type: ReinforcedWindow - components: - - pos: 90.5,31.5 - parent: 0 - type: Transform -- uid: 21497 - type: WallSolid - components: - - pos: 85.5,31.5 - parent: 0 - type: Transform -- uid: 21498 - type: WallSolid - components: - - pos: 89.5,31.5 - parent: 0 - type: Transform -- uid: 21499 - type: WallSolid - components: - - pos: 91.5,31.5 - parent: 0 - type: Transform -- uid: 21500 - type: WallSolid - components: - - pos: 91.5,33.5 - parent: 0 - type: Transform -- uid: 21501 - type: WallSolid - components: - - pos: 85.5,34.5 - parent: 0 - type: Transform -- uid: 21502 - type: WallReinforced - components: - - pos: 99.5,37.5 - parent: 0 - type: Transform -- uid: 21503 - type: WallReinforced - components: - - pos: 98.5,37.5 - parent: 0 - type: Transform -- uid: 21504 - type: WallReinforced - components: - - pos: 97.5,37.5 - parent: 0 - type: Transform -- uid: 21505 - type: WallReinforced - components: - - pos: 96.5,37.5 - parent: 0 - type: Transform -- uid: 21506 - type: WallReinforced - components: - - pos: 95.5,37.5 - parent: 0 - type: Transform -- uid: 21507 - type: WallReinforced - components: - - pos: 94.5,37.5 - parent: 0 - type: Transform -- uid: 21508 - type: WallReinforced - components: - - pos: 93.5,37.5 - parent: 0 - type: Transform -- uid: 21509 - type: WallReinforced - components: - - pos: 92.5,37.5 - parent: 0 - type: Transform -- uid: 21510 - type: WallReinforced - components: - - pos: 91.5,37.5 - parent: 0 - type: Transform -- uid: 21511 - type: WallReinforced - components: - - pos: 90.5,37.5 - parent: 0 - type: Transform -- uid: 21512 - type: WallReinforced - components: - - pos: 100.5,36.5 - parent: 0 - type: Transform -- uid: 21513 - type: WallReinforced - components: - - pos: 100.5,37.5 - parent: 0 - type: Transform -- uid: 21514 - type: WallReinforced - components: - - pos: 100.5,34.5 - parent: 0 - type: Transform -- uid: 21515 - type: WallReinforced - components: - - pos: 100.5,33.5 - parent: 0 - type: Transform -- uid: 21516 - type: WallReinforced - components: - - pos: 85.5,28.5 - parent: 0 - type: Transform -- uid: 21517 - type: WallReinforced - components: - - pos: 86.5,28.5 - parent: 0 - type: Transform -- uid: 21518 - type: WallReinforced - components: - - pos: 87.5,28.5 - parent: 0 - type: Transform -- uid: 21519 - type: WallReinforced - components: - - pos: 88.5,28.5 - parent: 0 - type: Transform -- uid: 21520 - type: WallReinforced - components: - - pos: 89.5,28.5 - parent: 0 - type: Transform -- uid: 21521 - type: WallReinforced - components: - - pos: 90.5,28.5 - parent: 0 - type: Transform -- uid: 21522 - type: WallReinforced - components: - - pos: 91.5,28.5 - parent: 0 - type: Transform -- uid: 21523 - type: WallReinforced - components: - - pos: 91.5,27.5 - parent: 0 - type: Transform -- uid: 21524 - type: WallReinforced - components: - - pos: 92.5,27.5 - parent: 0 - type: Transform -- uid: 21525 - type: WallReinforced - components: - - pos: 93.5,27.5 - parent: 0 - type: Transform -- uid: 21526 - type: WallReinforced - components: - - pos: 94.5,27.5 - parent: 0 - type: Transform -- uid: 21527 - type: WallReinforced - components: - - pos: 95.5,27.5 - parent: 0 - type: Transform -- uid: 21528 - type: WallReinforced - components: - - pos: 96.5,27.5 - parent: 0 - type: Transform -- uid: 21529 - type: WallReinforced - components: - - pos: 97.5,27.5 - parent: 0 - type: Transform -- uid: 21530 - type: WallReinforced - components: - - pos: 98.5,27.5 - parent: 0 - type: Transform -- uid: 21531 - type: WallReinforced - components: - - pos: 99.5,27.5 - parent: 0 - type: Transform -- uid: 21532 - type: WallReinforced - components: - - pos: 100.5,27.5 - parent: 0 - type: Transform -- uid: 21533 - type: WallReinforced - components: - - pos: 100.5,28.5 - parent: 0 - type: Transform -- uid: 21534 - type: WallReinforced - components: - - pos: 100.5,29.5 - parent: 0 - type: Transform -- uid: 21535 - type: WallReinforced - components: - - pos: 101.5,29.5 - parent: 0 - type: Transform -- uid: 21536 - type: WallReinforced - components: - - pos: 101.5,30.5 - parent: 0 - type: Transform -- uid: 21537 - type: WallReinforced - components: - - pos: 101.5,31.5 - parent: 0 - type: Transform -- uid: 21538 - type: WallReinforced - components: - - pos: 101.5,32.5 - parent: 0 - type: Transform -- uid: 21539 - type: WallReinforced - components: - - pos: 101.5,33.5 - parent: 0 - type: Transform -- uid: 21540 - type: ReinforcedWindow - components: - - pos: 87.5,37.5 - parent: 0 - type: Transform -- uid: 21541 - type: FirelockGlass - components: - - pos: 91.5,32.5 - parent: 0 - type: Transform -- uid: 21542 - type: FirelockGlass - components: - - pos: 84.5,32.5 - parent: 0 - type: Transform -- uid: 21543 - type: FirelockGlass - components: - - pos: 100.5,35.5 - parent: 0 - type: Transform -- uid: 21544 - type: FirelockGlass - components: - - pos: 94.5,35.5 - parent: 0 - type: Transform -- uid: 21545 - type: Catwalk - components: - - pos: 120.5,26.5 - parent: 0 - type: Transform -- uid: 21546 - type: Catwalk - components: - - pos: 120.5,25.5 - parent: 0 - type: Transform -- uid: 21547 - type: Catwalk - components: - - pos: 120.5,24.5 - parent: 0 - type: Transform -- uid: 21548 - type: Catwalk - components: - - pos: 121.5,26.5 - parent: 0 - type: Transform -- uid: 21549 - type: Catwalk - components: - - pos: 121.5,25.5 - parent: 0 - type: Transform -- uid: 21550 - type: Catwalk - components: - - pos: 121.5,24.5 - parent: 0 - type: Transform -- uid: 21551 - type: Catwalk - components: - - pos: 122.5,26.5 - parent: 0 - type: Transform -- uid: 21552 - type: Catwalk - components: - - pos: 122.5,25.5 - parent: 0 - type: Transform -- uid: 21553 - type: Catwalk - components: - - pos: 122.5,24.5 - parent: 0 - type: Transform -- uid: 21554 - type: Catwalk - components: - - pos: 123.5,25.5 - parent: 0 - type: Transform -- uid: 21555 - type: Catwalk - components: - - pos: 124.5,26.5 - parent: 0 - type: Transform -- uid: 21556 - type: Catwalk - components: - - pos: 124.5,25.5 - parent: 0 - type: Transform -- uid: 21557 - type: Catwalk - components: - - pos: 124.5,24.5 - parent: 0 - type: Transform -- uid: 21558 - type: Catwalk - components: - - pos: 125.5,26.5 - parent: 0 - type: Transform -- uid: 21559 - type: Catwalk - components: - - pos: 125.5,25.5 - parent: 0 - type: Transform -- uid: 21560 - type: Catwalk - components: - - pos: 125.5,24.5 - parent: 0 - type: Transform -- uid: 21561 - type: Catwalk - components: - - pos: 126.5,26.5 - parent: 0 - type: Transform -- uid: 21562 - type: Catwalk - components: - - pos: 126.5,25.5 - parent: 0 - type: Transform -- uid: 21563 - type: Catwalk - components: - - pos: 126.5,24.5 - parent: 0 - type: Transform -- uid: 21564 - type: Catwalk - components: - - pos: 127.5,25.5 - parent: 0 - type: Transform -- uid: 21565 - type: Catwalk - components: - - pos: 128.5,24.5 - parent: 0 - type: Transform -- uid: 21566 - type: Catwalk - components: - - pos: 128.5,25.5 - parent: 0 - type: Transform -- uid: 21567 - type: Catwalk - components: - - pos: 128.5,26.5 - parent: 0 - type: Transform -- uid: 21568 - type: Catwalk - components: - - pos: 129.5,24.5 - parent: 0 - type: Transform -- uid: 21569 - type: Catwalk - components: - - pos: 129.5,25.5 - parent: 0 - type: Transform -- uid: 21570 - type: Catwalk - components: - - pos: 129.5,26.5 - parent: 0 - type: Transform -- uid: 21571 - type: Catwalk - components: - - pos: 130.5,24.5 - parent: 0 - type: Transform -- uid: 21572 - type: Catwalk - components: - - pos: 130.5,25.5 - parent: 0 - type: Transform -- uid: 21573 - type: Catwalk - components: - - pos: 130.5,26.5 - parent: 0 - type: Transform -- uid: 21574 - type: Catwalk - components: - - pos: 131.5,25.5 - parent: 0 - type: Transform -- uid: 21575 - type: Catwalk - components: - - pos: 132.5,24.5 - parent: 0 - type: Transform -- uid: 21576 - type: Catwalk - components: - - pos: 132.5,25.5 - parent: 0 - type: Transform -- uid: 21577 - type: Catwalk - components: - - pos: 132.5,26.5 - parent: 0 - type: Transform -- uid: 21578 - type: Catwalk - components: - - pos: 133.5,24.5 - parent: 0 - type: Transform -- uid: 21579 - type: Catwalk - components: - - pos: 133.5,25.5 - parent: 0 - type: Transform -- uid: 21580 - type: Catwalk - components: - - pos: 133.5,26.5 - parent: 0 - type: Transform -- uid: 21581 - type: Catwalk - components: - - pos: 134.5,24.5 - parent: 0 - type: Transform -- uid: 21582 - type: Catwalk - components: - - pos: 134.5,25.5 - parent: 0 - type: Transform -- uid: 21583 - type: Catwalk - components: - - pos: 134.5,26.5 - parent: 0 - type: Transform -- uid: 21584 - type: Catwalk - components: - - pos: 135.5,25.5 - parent: 0 - type: Transform -- uid: 21585 - type: Catwalk - components: - - pos: 136.5,25.5 - parent: 0 - type: Transform -- uid: 21586 - type: Catwalk - components: - - pos: 139.5,25.5 - parent: 0 - type: Transform -- uid: 21587 - type: Catwalk - components: - - pos: 121.5,27.5 - parent: 0 - type: Transform -- uid: 21588 - type: Catwalk - components: - - pos: 121.5,28.5 - parent: 0 - type: Transform -- uid: 21589 - type: Catwalk - components: - - pos: 121.5,29.5 - parent: 0 - type: Transform -- uid: 21590 - type: Catwalk - components: - - pos: 121.5,30.5 - parent: 0 - type: Transform -- uid: 21591 - type: Catwalk - components: - - pos: 121.5,31.5 - parent: 0 - type: Transform -- uid: 21592 - type: Catwalk - components: - - pos: 121.5,32.5 - parent: 0 - type: Transform -- uid: 21593 - type: Catwalk - components: - - pos: 121.5,33.5 - parent: 0 - type: Transform -- uid: 21594 - type: Catwalk - components: - - pos: 121.5,34.5 - parent: 0 - type: Transform -- uid: 21595 - type: Catwalk - components: - - pos: 121.5,35.5 - parent: 0 - type: Transform -- uid: 21596 - type: Catwalk - components: - - pos: 125.5,27.5 - parent: 0 - type: Transform -- uid: 21597 - type: Catwalk - components: - - pos: 125.5,28.5 - parent: 0 - type: Transform -- uid: 21598 - type: Catwalk - components: - - pos: 125.5,29.5 - parent: 0 - type: Transform -- uid: 21599 - type: Catwalk - components: - - pos: 125.5,30.5 - parent: 0 - type: Transform -- uid: 21600 - type: Catwalk - components: - - pos: 125.5,31.5 - parent: 0 - type: Transform -- uid: 21601 - type: Catwalk - components: - - pos: 125.5,32.5 - parent: 0 - type: Transform -- uid: 21602 - type: Catwalk - components: - - pos: 125.5,33.5 - parent: 0 - type: Transform -- uid: 21603 - type: Catwalk - components: - - pos: 125.5,34.5 - parent: 0 - type: Transform -- uid: 21604 - type: Catwalk - components: - - pos: 125.5,35.5 - parent: 0 - type: Transform -- uid: 21605 - type: Catwalk - components: - - pos: 129.5,27.5 - parent: 0 - type: Transform -- uid: 21606 - type: Catwalk - components: - - pos: 129.5,28.5 - parent: 0 - type: Transform -- uid: 21607 - type: Catwalk - components: - - pos: 129.5,29.5 - parent: 0 - type: Transform -- uid: 21608 - type: Catwalk - components: - - pos: 129.5,30.5 - parent: 0 - type: Transform -- uid: 21609 - type: Catwalk - components: - - pos: 129.5,31.5 - parent: 0 - type: Transform -- uid: 21610 - type: Catwalk - components: - - pos: 129.5,32.5 - parent: 0 - type: Transform -- uid: 21611 - type: Catwalk - components: - - pos: 129.5,33.5 - parent: 0 - type: Transform -- uid: 21612 - type: Catwalk - components: - - pos: 129.5,34.5 - parent: 0 - type: Transform -- uid: 21613 - type: Catwalk - components: - - pos: 129.5,35.5 - parent: 0 - type: Transform -- uid: 21614 - type: Catwalk - components: - - pos: 133.5,27.5 - parent: 0 - type: Transform -- uid: 21615 - type: Catwalk - components: - - pos: 133.5,28.5 - parent: 0 - type: Transform -- uid: 21616 - type: Catwalk - components: - - pos: 133.5,29.5 - parent: 0 - type: Transform -- uid: 21617 - type: Catwalk - components: - - pos: 133.5,30.5 - parent: 0 - type: Transform -- uid: 21618 - type: Catwalk - components: - - pos: 133.5,31.5 - parent: 0 - type: Transform -- uid: 21619 - type: Catwalk - components: - - pos: 133.5,32.5 - parent: 0 - type: Transform -- uid: 21620 - type: Catwalk - components: - - pos: 133.5,33.5 - parent: 0 - type: Transform -- uid: 21621 - type: Catwalk - components: - - pos: 133.5,34.5 - parent: 0 - type: Transform -- uid: 21622 - type: Catwalk - components: - - pos: 133.5,35.5 - parent: 0 - type: Transform -- uid: 21623 - type: Catwalk - components: - - pos: 133.5,23.5 - parent: 0 - type: Transform -- uid: 21624 - type: Catwalk - components: - - pos: 133.5,22.5 - parent: 0 - type: Transform -- uid: 21625 - type: Catwalk - components: - - pos: 133.5,21.5 - parent: 0 - type: Transform -- uid: 21626 - type: Catwalk - components: - - pos: 133.5,20.5 - parent: 0 - type: Transform -- uid: 21627 - type: Catwalk - components: - - pos: 133.5,19.5 - parent: 0 - type: Transform -- uid: 21628 - type: Catwalk - components: - - pos: 133.5,18.5 - parent: 0 - type: Transform -- uid: 21629 - type: Catwalk - components: - - pos: 133.5,17.5 - parent: 0 - type: Transform -- uid: 21630 - type: Catwalk - components: - - pos: 133.5,16.5 - parent: 0 - type: Transform -- uid: 21631 - type: Catwalk - components: - - pos: 129.5,16.5 - parent: 0 - type: Transform -- uid: 21632 - type: Catwalk - components: - - pos: 129.5,17.5 - parent: 0 - type: Transform -- uid: 21633 - type: Catwalk - components: - - pos: 129.5,18.5 - parent: 0 - type: Transform -- uid: 21634 - type: Catwalk - components: - - pos: 129.5,19.5 - parent: 0 - type: Transform -- uid: 21635 - type: Catwalk - components: - - pos: 129.5,20.5 - parent: 0 - type: Transform -- uid: 21636 - type: Catwalk - components: - - pos: 129.5,21.5 - parent: 0 - type: Transform -- uid: 21637 - type: Catwalk - components: - - pos: 129.5,22.5 - parent: 0 - type: Transform -- uid: 21638 - type: Catwalk - components: - - pos: 129.5,23.5 - parent: 0 - type: Transform -- uid: 21639 - type: Catwalk - components: - - pos: 125.5,22.5 - parent: 0 - type: Transform -- uid: 21640 - type: Catwalk - components: - - pos: 125.5,23.5 - parent: 0 - type: Transform -- uid: 21641 - type: Catwalk - components: - - pos: 125.5,21.5 - parent: 0 - type: Transform -- uid: 21642 - type: Catwalk - components: - - pos: 125.5,20.5 - parent: 0 - type: Transform -- uid: 21643 - type: Catwalk - components: - - pos: 125.5,19.5 - parent: 0 - type: Transform -- uid: 21644 - type: Catwalk - components: - - pos: 125.5,18.5 - parent: 0 - type: Transform -- uid: 21645 - type: Catwalk - components: - - pos: 125.5,17.5 - parent: 0 - type: Transform -- uid: 21646 - type: Catwalk - components: - - pos: 125.5,16.5 - parent: 0 - type: Transform -- uid: 21647 - type: Catwalk - components: - - pos: 121.5,16.5 - parent: 0 - type: Transform -- uid: 21648 - type: Catwalk - components: - - pos: 121.5,17.5 - parent: 0 - type: Transform -- uid: 21649 - type: Catwalk - components: - - pos: 121.5,18.5 - parent: 0 - type: Transform -- uid: 21650 - type: Catwalk - components: - - pos: 121.5,19.5 - parent: 0 - type: Transform -- uid: 21651 - type: Catwalk - components: - - pos: 121.5,20.5 - parent: 0 - type: Transform -- uid: 21652 - type: Catwalk - components: - - pos: 121.5,21.5 - parent: 0 - type: Transform -- uid: 21653 - type: Catwalk - components: - - pos: 121.5,22.5 - parent: 0 - type: Transform -- uid: 21654 - type: Catwalk - components: - - pos: 121.5,23.5 - parent: 0 - type: Transform -- uid: 21655 - type: Catwalk - components: - - pos: 124.5,13.5 - parent: 0 - type: Transform -- uid: 21656 - type: Catwalk - components: - - pos: 124.5,12.5 - parent: 0 - type: Transform -- uid: 21657 - type: Catwalk - components: - - pos: 124.5,10.5 - parent: 0 - type: Transform -- uid: 21658 - type: Catwalk - components: - - pos: 136.5,37.5 - parent: 0 - type: Transform -- uid: 21659 - type: Catwalk - components: - - pos: 130.5,13.5 - parent: 0 - type: Transform -- uid: 21660 - type: Catwalk - components: - - pos: 136.5,13.5 - parent: 0 - type: Transform -- uid: 21661 - type: Catwalk - components: - - pos: 136.5,41.5 - parent: 0 - type: Transform -- uid: 21662 - type: CableHV - components: - - pos: 132.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21663 - type: Catwalk - components: - - pos: 129.5,37.5 - parent: 0 - type: Transform -- uid: 21664 - type: CableHV - components: - - pos: 120.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21665 - type: CableHV - components: - - pos: 120.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21666 - type: CableHV - components: - - pos: 120.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21667 - type: CableHV - components: - - pos: 120.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21668 - type: CableHV - components: - - pos: 120.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21669 - type: CableHV - components: - - pos: 120.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21670 - type: CableHV - components: - - pos: 120.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21671 - type: CableHV - components: - - pos: 122.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21672 - type: CableHV - components: - - pos: 122.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21673 - type: CableHV - components: - - pos: 122.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21674 - type: CableHV - components: - - pos: 122.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21675 - type: CableHV - components: - - pos: 122.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21676 - type: CableHV - components: - - pos: 122.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21677 - type: CableHV - components: - - pos: 122.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21678 - type: CableHV - components: - - pos: 124.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21679 - type: CableHV - components: - - pos: 124.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21680 - type: CableHV - components: - - pos: 124.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21681 - type: CableHV - components: - - pos: 124.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21682 - type: CableHV - components: - - pos: 124.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21683 - type: CableHV - components: - - pos: 124.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21684 - type: CableHV - components: - - pos: 124.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21685 - type: CableHV - components: - - pos: 126.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21686 - type: CableHV - components: - - pos: 126.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21687 - type: CableHV - components: - - pos: 126.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21688 - type: CableHV - components: - - pos: 126.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21689 - type: CableHV - components: - - pos: 126.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21690 - type: CableHV - components: - - pos: 126.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21691 - type: CableHV - components: - - pos: 126.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21692 - type: CableHV - components: - - pos: 128.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21693 - type: CableHV - components: - - pos: 128.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21694 - type: CableHV - components: - - pos: 128.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21695 - type: CableHV - components: - - pos: 128.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21696 - type: CableHV - components: - - pos: 128.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21697 - type: CableHV - components: - - pos: 128.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21698 - type: CableHV - components: - - pos: 128.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21699 - type: CableHV - components: - - pos: 130.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21700 - type: CableHV - components: - - pos: 130.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21701 - type: CableHV - components: - - pos: 130.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21702 - type: CableHV - components: - - pos: 130.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21703 - type: CableHV - components: - - pos: 130.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21704 - type: CableHV - components: - - pos: 130.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21705 - type: CableHV - components: - - pos: 130.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21706 - type: CableHV - components: - - pos: 129.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21707 - type: CableHV - components: - - pos: 129.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21708 - type: CableHV - components: - - pos: 125.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21709 - type: CableHV - components: - - pos: 125.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21710 - type: CableHV - components: - - pos: 121.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21711 - type: CableHV - components: - - pos: 121.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21712 - type: CableHV - components: - - pos: 132.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21713 - type: CableHV - components: - - pos: 132.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21714 - type: CableHV - components: - - pos: 132.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21715 - type: CableHV - components: - - pos: 132.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21716 - type: CableHV - components: - - pos: 132.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21717 - type: CableHV - components: - - pos: 132.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21718 - type: CableHV - components: - - pos: 134.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21719 - type: CableHV - components: - - pos: 134.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21720 - type: CableHV - components: - - pos: 134.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21721 - type: CableHV - components: - - pos: 134.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21722 - type: CableHV - components: - - pos: 134.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21723 - type: CableHV - components: - - pos: 134.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21724 - type: CableHV - components: - - pos: 134.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21725 - type: CableHV - components: - - pos: 133.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21726 - type: CableHV - components: - - pos: 133.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21727 - type: WallSolidRust - components: - - pos: 135.5,41.5 - parent: 0 - type: Transform -- uid: 21728 - type: CableHV - components: - - pos: 134.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21729 - type: CableHV - components: - - pos: 134.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21730 - type: CableHV - components: - - pos: 134.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21731 - type: CableHV - components: - - pos: 134.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21732 - type: CableHV - components: - - pos: 134.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21733 - type: CableHV - components: - - pos: 134.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21734 - type: CableHV - components: - - pos: 134.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21735 - type: CableHV - components: - - pos: 134.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21736 - type: CableHV - components: - - pos: 132.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21737 - type: CableHV - components: - - pos: 132.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21738 - type: CableHV - components: - - pos: 132.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21739 - type: CableHV - components: - - pos: 132.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21740 - type: CableHV - components: - - pos: 132.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21741 - type: CableHV - components: - - pos: 132.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21742 - type: CableHV - components: - - pos: 132.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21743 - type: CableHV - components: - - pos: 132.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21744 - type: CableHV - components: - - pos: 130.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21745 - type: CableHV - components: - - pos: 130.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21746 - type: CableHV - components: - - pos: 130.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21747 - type: CableHV - components: - - pos: 130.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21748 - type: CableHV - components: - - pos: 130.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21749 - type: CableHV - components: - - pos: 130.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21750 - type: CableHV - components: - - pos: 130.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21751 - type: CableHV - components: - - pos: 130.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21752 - type: CableHV - components: - - pos: 128.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21753 - type: CableHV - components: - - pos: 128.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21754 - type: CableHV - components: - - pos: 128.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21755 - type: CableHV - components: - - pos: 128.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21756 - type: CableHV - components: - - pos: 128.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21757 - type: CableHV - components: - - pos: 128.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21758 - type: CableHV - components: - - pos: 128.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21759 - type: CableHV - components: - - pos: 128.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21760 - type: CableHV - components: - - pos: 126.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21761 - type: CableHV - components: - - pos: 126.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21762 - type: CableHV - components: - - pos: 126.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21763 - type: CableHV - components: - - pos: 126.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21764 - type: CableHV - components: - - pos: 126.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21765 - type: CableHV - components: - - pos: 126.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21766 - type: CableHV - components: - - pos: 126.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21767 - type: CableHV - components: - - pos: 126.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21768 - type: CableHV - components: - - pos: 124.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21769 - type: CableHV - components: - - pos: 124.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21770 - type: CableHV - components: - - pos: 124.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21771 - type: CableHV - components: - - pos: 124.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21772 - type: CableHV - components: - - pos: 124.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21773 - type: CableHV - components: - - pos: 124.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21774 - type: CableHV - components: - - pos: 124.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21775 - type: CableHV - components: - - pos: 124.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21776 - type: CableHV - components: - - pos: 122.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21777 - type: CableHV - components: - - pos: 122.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21778 - type: CableHV - components: - - pos: 122.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21779 - type: CableHV - components: - - pos: 122.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21780 - type: CableHV - components: - - pos: 122.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21781 - type: CableHV - components: - - pos: 122.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21782 - type: CableHV - components: - - pos: 122.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21783 - type: CableHV - components: - - pos: 122.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21784 - type: CableHV - components: - - pos: 120.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21785 - type: CableHV - components: - - pos: 120.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21786 - type: CableHV - components: - - pos: 120.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21787 - type: CableHV - components: - - pos: 120.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21788 - type: CableHV - components: - - pos: 120.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21789 - type: CableHV - components: - - pos: 120.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21790 - type: CableHV - components: - - pos: 120.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21791 - type: CableHV - components: - - pos: 120.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21792 - type: CableHV - components: - - pos: 121.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21793 - type: CableHV - components: - - pos: 121.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21794 - type: CableHV - components: - - pos: 125.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21795 - type: CableHV - components: - - pos: 125.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21796 - type: CableHV - components: - - pos: 129.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21797 - type: CableHV - components: - - pos: 129.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21798 - type: CableHV - components: - - pos: 133.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21799 - type: CableHV - components: - - pos: 133.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21800 - type: CableHV - components: - - pos: 121.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21801 - type: CableHV - components: - - pos: 121.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21802 - type: CableHV - components: - - pos: 125.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21803 - type: CableHV - components: - - pos: 125.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21804 - type: CableHV - components: - - pos: 129.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21805 - type: CableHV - components: - - pos: 129.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21806 - type: CableHV - components: - - pos: 133.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21807 - type: CableHV - components: - - pos: 133.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21808 - type: CableHV - components: - - pos: 136.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21809 - type: CableHV - components: - - pos: 135.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21810 - type: CableHV - components: - - pos: 137.5,25.5 - parent: 0 - type: Transform -- uid: 21811 - type: SolarTracker - components: - - pos: 137.5,25.5 - parent: 0 - type: Transform -- uid: 21812 - type: Grille - components: - - pos: 139.5,24.5 - parent: 0 - type: Transform -- uid: 21813 - type: Grille - components: - - pos: 139.5,23.5 - parent: 0 - type: Transform -- uid: 21814 - type: Grille - components: - - pos: 138.5,23.5 - parent: 0 - type: Transform -- uid: 21815 - type: Grille - components: - - pos: 139.5,26.5 - parent: 0 - type: Transform -- uid: 21816 - type: Grille - components: - - pos: 139.5,27.5 - parent: 0 - type: Transform -- uid: 21817 - type: Grille - components: - - pos: 138.5,27.5 - parent: 0 - type: Transform -- uid: 21818 - type: Grille - components: - - pos: 136.5,29.5 - parent: 0 - type: Transform -- uid: 21819 - type: Grille - components: - - pos: 136.5,30.5 - parent: 0 - type: Transform -- uid: 21820 - type: Grille - components: - - pos: 136.5,31.5 - parent: 0 - type: Transform -- uid: 21821 - type: Grille - components: - - pos: 136.5,32.5 - parent: 0 - type: Transform -- uid: 21822 - type: Grille - components: - - pos: 136.5,33.5 - parent: 0 - type: Transform -- uid: 21823 - type: Grille - components: - - pos: 136.5,34.5 - parent: 0 - type: Transform -- uid: 21824 - type: Grille - components: - - pos: 136.5,35.5 - parent: 0 - type: Transform -- uid: 21825 - type: Grille - components: - - pos: 136.5,36.5 - parent: 0 - type: Transform -- uid: 21826 - type: Grille - components: - - pos: 135.5,37.5 - parent: 0 - type: Transform -- uid: 21827 - type: Grille - components: - - pos: 134.5,37.5 - parent: 0 - type: Transform -- uid: 21828 - type: Grille - components: - - pos: 135.5,13.5 - parent: 0 - type: Transform -- uid: 21829 - type: Grille - components: - - pos: 134.5,13.5 - parent: 0 - type: Transform -- uid: 21830 - type: Grille - components: - - pos: 136.5,14.5 - parent: 0 - type: Transform -- uid: 21831 - type: Grille - components: - - pos: 136.5,15.5 - parent: 0 - type: Transform -- uid: 21832 - type: Grille - components: - - pos: 136.5,16.5 - parent: 0 - type: Transform -- uid: 21833 - type: Grille - components: - - pos: 136.5,17.5 - parent: 0 - type: Transform -- uid: 21834 - type: Grille - components: - - pos: 136.5,18.5 - parent: 0 - type: Transform -- uid: 21835 - type: Grille - components: - - pos: 136.5,19.5 - parent: 0 - type: Transform -- uid: 21836 - type: Grille - components: - - pos: 136.5,20.5 - parent: 0 - type: Transform -- uid: 21837 - type: Grille - components: - - pos: 136.5,21.5 - parent: 0 - type: Transform -- uid: 21838 - type: SignSecurearea - components: - - pos: 131.5,-26.5 - parent: 0 - type: Transform -- uid: 21839 - type: AsteroidRock - components: - - pos: 134.5,41.5 - parent: 0 - type: Transform -- uid: 21840 - type: AsteroidRock - components: - - pos: 134.5,42.5 - parent: 0 - type: Transform -- uid: 21841 - type: AsteroidRock - components: - - pos: 135.5,42.5 - parent: 0 - type: Transform -- uid: 21842 - type: AsteroidRock - components: - - pos: 136.5,42.5 - parent: 0 - type: Transform -- uid: 21843 - type: AsteroidRock - components: - - pos: 135.5,43.5 - parent: 0 - type: Transform -- uid: 21844 - type: AsteroidRock - components: - - pos: 136.5,43.5 - parent: 0 - type: Transform -- uid: 21845 - type: AsteroidRock - components: - - pos: 136.5,44.5 - parent: 0 - type: Transform -- uid: 21846 - type: AsteroidRock - components: - - pos: 136.5,45.5 - parent: 0 - type: Transform -- uid: 21847 - type: AsteroidRock - components: - - pos: 136.5,46.5 - parent: 0 - type: Transform -- uid: 21848 - type: AsteroidRock - components: - - pos: 136.5,47.5 - parent: 0 - type: Transform -- uid: 21849 - type: AsteroidRock - components: - - pos: 137.5,43.5 - parent: 0 - type: Transform -- uid: 21850 - type: AsteroidRock - components: - - pos: 137.5,44.5 - parent: 0 - type: Transform -- uid: 21851 - type: AsteroidRock - components: - - pos: 137.5,45.5 - parent: 0 - type: Transform -- uid: 21852 - type: AsteroidRock - components: - - pos: 137.5,46.5 - parent: 0 - type: Transform -- uid: 21853 - type: AsteroidRock - components: - - pos: 137.5,47.5 - parent: 0 - type: Transform -- uid: 21854 - type: AsteroidRock - components: - - pos: 136.5,48.5 - parent: 0 - type: Transform -- uid: 21855 - type: AsteroidRock - components: - - pos: 135.5,47.5 - parent: 0 - type: Transform -- uid: 21856 - type: AsteroidRock - components: - - pos: 135.5,48.5 - parent: 0 - type: Transform -- uid: 21857 - type: AsteroidRock - components: - - pos: 135.5,49.5 - parent: 0 - type: Transform -- uid: 21858 - type: AsteroidRock - components: - - pos: 135.5,50.5 - parent: 0 - type: Transform -- uid: 21859 - type: AsteroidRock - components: - - pos: 135.5,51.5 - parent: 0 - type: Transform -- uid: 21860 - type: AsteroidRock - components: - - pos: 135.5,52.5 - parent: 0 - type: Transform -- uid: 21861 - type: AsteroidRock - components: - - pos: 135.5,53.5 - parent: 0 - type: Transform -- uid: 21862 - type: AsteroidRock - components: - - pos: 134.5,49.5 - parent: 0 - type: Transform -- uid: 21863 - type: AsteroidRock - components: - - pos: 134.5,50.5 - parent: 0 - type: Transform -- uid: 21864 - type: AsteroidRock - components: - - pos: 134.5,51.5 - parent: 0 - type: Transform -- uid: 21865 - type: AsteroidRock - components: - - pos: 134.5,52.5 - parent: 0 - type: Transform -- uid: 21866 - type: AsteroidRock - components: - - pos: 134.5,53.5 - parent: 0 - type: Transform -- uid: 21867 - type: AsteroidRock - components: - - pos: 134.5,54.5 - parent: 0 - type: Transform -- uid: 21868 - type: AsteroidRock - components: - - pos: 133.5,54.5 - parent: 0 - type: Transform -- uid: 21869 - type: AsteroidRock - components: - - pos: 134.5,59.5 - parent: 0 - type: Transform -- uid: 21870 - type: AsteroidRock - components: - - pos: 134.5,60.5 - parent: 0 - type: Transform -- uid: 21871 - type: AsteroidRock - components: - - pos: 134.5,61.5 - parent: 0 - type: Transform -- uid: 21872 - type: AsteroidRock - components: - - pos: 134.5,62.5 - parent: 0 - type: Transform -- uid: 21873 - type: AsteroidRock - components: - - pos: 135.5,59.5 - parent: 0 - type: Transform -- uid: 21874 - type: AsteroidRock - components: - - pos: 135.5,60.5 - parent: 0 - type: Transform -- uid: 21875 - type: AsteroidRock - components: - - pos: 135.5,61.5 - parent: 0 - type: Transform -- uid: 21876 - type: AsteroidRock - components: - - pos: 135.5,62.5 - parent: 0 - type: Transform -- uid: 21877 - type: AsteroidRock - components: - - pos: 134.5,63.5 - parent: 0 - type: Transform -- uid: 21878 - type: AsteroidRock - components: - - pos: 133.5,63.5 - parent: 0 - type: Transform -- uid: 21879 - type: AsteroidRock - components: - - pos: 133.5,62.5 - parent: 0 - type: Transform -- uid: 21880 - type: AsteroidRock - components: - - pos: 132.5,63.5 - parent: 0 - type: Transform -- uid: 21881 - type: AsteroidRock - components: - - pos: 132.5,62.5 - parent: 0 - type: Transform -- uid: 21882 - type: AsteroidRock - components: - - pos: 131.5,63.5 - parent: 0 - type: Transform -- uid: 21883 - type: AsteroidRock - components: - - pos: 131.5,62.5 - parent: 0 - type: Transform -- uid: 21884 - type: AsteroidRock - components: - - pos: 132.5,61.5 - parent: 0 - type: Transform -- uid: 21885 - type: AsteroidRock - components: - - pos: 131.5,61.5 - parent: 0 - type: Transform -- uid: 21886 - type: AsteroidRock - components: - - pos: 130.5,63.5 - parent: 0 - type: Transform -- uid: 21887 - type: AsteroidRock - components: - - pos: 130.5,64.5 - parent: 0 - type: Transform -- uid: 21888 - type: AsteroidRock - components: - - pos: 131.5,64.5 - parent: 0 - type: Transform -- uid: 21889 - type: AsteroidRock - components: - - pos: 132.5,64.5 - parent: 0 - type: Transform -- uid: 21890 - type: AsteroidRock - components: - - pos: 111.5,54.5 - parent: 0 - type: Transform -- uid: 21891 - type: AsteroidRock - components: - - pos: 111.5,55.5 - parent: 0 - type: Transform -- uid: 21892 - type: AsteroidRock - components: - - pos: 111.5,56.5 - parent: 0 - type: Transform -- uid: 21893 - type: AsteroidRock - components: - - pos: 111.5,57.5 - parent: 0 - type: Transform -- uid: 21894 - type: AsteroidRock - components: - - pos: 112.5,54.5 - parent: 0 - type: Transform -- uid: 21895 - type: AsteroidRock - components: - - pos: 112.5,55.5 - parent: 0 - type: Transform -- uid: 21896 - type: AsteroidRock - components: - - pos: 112.5,56.5 - parent: 0 - type: Transform -- uid: 21897 - type: AsteroidRock - components: - - pos: 112.5,57.5 - parent: 0 - type: Transform -- uid: 21898 - type: AsteroidRock - components: - - pos: 113.5,54.5 - parent: 0 - type: Transform -- uid: 21899 - type: AsteroidRock - components: - - pos: 113.5,55.5 - parent: 0 - type: Transform -- uid: 21900 - type: AsteroidRock - components: - - pos: 113.5,56.5 - parent: 0 - type: Transform -- uid: 21901 - type: AsteroidRock - components: - - pos: 113.5,57.5 - parent: 0 - type: Transform -- uid: 21902 - type: AsteroidRock - components: - - pos: 114.5,54.5 - parent: 0 - type: Transform -- uid: 21903 - type: AsteroidRock - components: - - pos: 114.5,55.5 - parent: 0 - type: Transform -- uid: 21904 - type: AsteroidRock - components: - - pos: 114.5,56.5 - parent: 0 - type: Transform -- uid: 21905 - type: AsteroidRock - components: - - pos: 114.5,57.5 - parent: 0 - type: Transform -- uid: 21906 - type: AsteroidRock - components: - - pos: 115.5,57.5 - parent: 0 - type: Transform -- uid: 21907 - type: AsteroidRock - components: - - pos: 118.5,58.5 - parent: 0 - type: Transform -- uid: 21908 - type: AsteroidRock - components: - - pos: 117.5,58.5 - parent: 0 - type: Transform -- uid: 21909 - type: AsteroidRock - components: - - pos: 116.5,58.5 - parent: 0 - type: Transform -- uid: 21910 - type: AsteroidRock - components: - - pos: 115.5,58.5 - parent: 0 - type: Transform -- uid: 21911 - type: AsteroidRock - components: - - pos: 114.5,58.5 - parent: 0 - type: Transform -- uid: 21912 - type: AsteroidRock - components: - - pos: 113.5,58.5 - parent: 0 - type: Transform -- uid: 21913 - type: AsteroidRock - components: - - pos: 112.5,58.5 - parent: 0 - type: Transform -- uid: 21914 - type: AsteroidRock - components: - - pos: 111.5,58.5 - parent: 0 - type: Transform -- uid: 21915 - type: AsteroidRock - components: - - pos: 110.5,58.5 - parent: 0 - type: Transform -- uid: 21916 - type: AsteroidRock - components: - - pos: 109.5,58.5 - parent: 0 - type: Transform -- uid: 21917 - type: AsteroidRock - components: - - pos: 108.5,58.5 - parent: 0 - type: Transform -- uid: 21918 - type: AsteroidRock - components: - - pos: 107.5,58.5 - parent: 0 - type: Transform -- uid: 21919 - type: AsteroidRock - components: - - pos: 106.5,58.5 - parent: 0 - type: Transform -- uid: 21920 - type: AsteroidRock - components: - - pos: 105.5,58.5 - parent: 0 - type: Transform -- uid: 21921 - type: AsteroidRock - components: - - pos: 104.5,58.5 - parent: 0 - type: Transform -- uid: 21922 - type: AsteroidRock - components: - - pos: 104.5,59.5 - parent: 0 - type: Transform -- uid: 21923 - type: AsteroidRock - components: - - pos: 104.5,60.5 - parent: 0 - type: Transform -- uid: 21924 - type: AsteroidRock - components: - - pos: 104.5,61.5 - parent: 0 - type: Transform -- uid: 21925 - type: AsteroidRock - components: - - pos: 104.5,62.5 - parent: 0 - type: Transform -- uid: 21926 - type: AsteroidRock - components: - - pos: 104.5,63.5 - parent: 0 - type: Transform -- uid: 21927 - type: AsteroidRock - components: - - pos: 104.5,64.5 - parent: 0 - type: Transform -- uid: 21928 - type: AsteroidRock - components: - - pos: 104.5,65.5 - parent: 0 - type: Transform -- uid: 21929 - type: AsteroidRock - components: - - pos: 105.5,64.5 - parent: 0 - type: Transform -- uid: 21930 - type: AsteroidRock - components: - - pos: 105.5,63.5 - parent: 0 - type: Transform -- uid: 21931 - type: AsteroidRock - components: - - pos: 105.5,62.5 - parent: 0 - type: Transform -- uid: 21932 - type: AsteroidRock - components: - - pos: 105.5,61.5 - parent: 0 - type: Transform -- uid: 21933 - type: AsteroidRock - components: - - pos: 105.5,60.5 - parent: 0 - type: Transform -- uid: 21934 - type: AsteroidRock - components: - - pos: 105.5,59.5 - parent: 0 - type: Transform -- uid: 21935 - type: AsteroidRock - components: - - pos: 106.5,62.5 - parent: 0 - type: Transform -- uid: 21936 - type: AsteroidRock - components: - - pos: 106.5,61.5 - parent: 0 - type: Transform -- uid: 21937 - type: AsteroidRock - components: - - pos: 106.5,60.5 - parent: 0 - type: Transform -- uid: 21938 - type: AsteroidRock - components: - - pos: 106.5,59.5 - parent: 0 - type: Transform -- uid: 21939 - type: AsteroidRock - components: - - pos: 107.5,61.5 - parent: 0 - type: Transform -- uid: 21940 - type: AsteroidRock - components: - - pos: 107.5,60.5 - parent: 0 - type: Transform -- uid: 21941 - type: AsteroidRock - components: - - pos: 107.5,59.5 - parent: 0 - type: Transform -- uid: 21942 - type: AsteroidRock - components: - - pos: 108.5,61.5 - parent: 0 - type: Transform -- uid: 21943 - type: AsteroidRock - components: - - pos: 108.5,60.5 - parent: 0 - type: Transform -- uid: 21944 - type: AsteroidRock - components: - - pos: 108.5,59.5 - parent: 0 - type: Transform -- uid: 21945 - type: AsteroidRock - components: - - pos: 109.5,60.5 - parent: 0 - type: Transform -- uid: 21946 - type: AsteroidRock - components: - - pos: 109.5,59.5 - parent: 0 - type: Transform -- uid: 21947 - type: AsteroidRock - components: - - pos: 110.5,60.5 - parent: 0 - type: Transform -- uid: 21948 - type: AsteroidRock - components: - - pos: 110.5,59.5 - parent: 0 - type: Transform -- uid: 21949 - type: AsteroidRock - components: - - pos: 111.5,59.5 - parent: 0 - type: Transform -- uid: 21950 - type: AsteroidRock - components: - - pos: 112.5,59.5 - parent: 0 - type: Transform -- uid: 21951 - type: AsteroidRock - components: - - pos: 113.5,59.5 - parent: 0 - type: Transform -- uid: 21952 - type: AsteroidRock - components: - - pos: 114.5,59.5 - parent: 0 - type: Transform -- uid: 21953 - type: AsteroidRock - components: - - pos: 115.5,59.5 - parent: 0 - type: Transform -- uid: 21954 - type: AsteroidRock - components: - - pos: 116.5,59.5 - parent: 0 - type: Transform -- uid: 21955 - type: AsteroidRock - components: - - pos: 105.5,68.5 - parent: 0 - type: Transform -- uid: 21956 - type: AsteroidRock - components: - - pos: 106.5,68.5 - parent: 0 - type: Transform -- uid: 21957 - type: AsteroidRock - components: - - pos: 106.5,69.5 - parent: 0 - type: Transform -- uid: 21958 - type: AsteroidRock - components: - - pos: 107.5,68.5 - parent: 0 - type: Transform -- uid: 21959 - type: AsteroidRock - components: - - pos: 107.5,69.5 - parent: 0 - type: Transform -- uid: 21960 - type: AsteroidRock - components: - - pos: 108.5,68.5 - parent: 0 - type: Transform -- uid: 21961 - type: AsteroidRock - components: - - pos: 108.5,69.5 - parent: 0 - type: Transform -- uid: 21962 - type: AsteroidRock - components: - - pos: 109.5,68.5 - parent: 0 - type: Transform -- uid: 21963 - type: AsteroidRock - components: - - pos: 109.5,69.5 - parent: 0 - type: Transform -- uid: 21964 - type: AsteroidRock - components: - - pos: 110.5,69.5 - parent: 0 - type: Transform -- uid: 21965 - type: AsteroidRock - components: - - pos: 110.5,70.5 - parent: 0 - type: Transform -- uid: 21966 - type: AsteroidRock - components: - - pos: 109.5,70.5 - parent: 0 - type: Transform -- uid: 21967 - type: AsteroidRock - components: - - pos: 108.5,70.5 - parent: 0 - type: Transform -- uid: 21968 - type: WallSolidRust - components: - - pos: 116.5,71.5 - parent: 0 - type: Transform -- uid: 21969 - type: WallSolidRust - components: - - pos: 115.5,60.5 - parent: 0 - type: Transform -- uid: 21970 - type: WallSolidRust - components: - - pos: 134.5,55.5 - parent: 0 - type: Transform -- uid: 21971 - type: WallSolidRust - components: - - pos: 133.5,61.5 - parent: 0 - type: Transform -- uid: 21972 - type: AsteroidRock - components: - - pos: 117.5,40.5 - parent: 0 - type: Transform -- uid: 21973 - type: AsteroidRock - components: - - pos: 118.5,40.5 - parent: 0 - type: Transform -- uid: 21974 - type: AsteroidRock - components: - - pos: 119.5,40.5 - parent: 0 - type: Transform -- uid: 21975 - type: AsteroidRock - components: - - pos: 120.5,40.5 - parent: 0 - type: Transform -- uid: 21976 - type: AsteroidRock - components: - - pos: 114.5,34.5 - parent: 0 - type: Transform -- uid: 21977 - type: AsteroidRock - components: - - pos: 114.5,35.5 - parent: 0 - type: Transform -- uid: 21978 - type: AsteroidRock - components: - - pos: 114.5,36.5 - parent: 0 - type: Transform -- uid: 21979 - type: AsteroidRock - components: - - pos: 115.5,34.5 - parent: 0 - type: Transform -- uid: 21980 - type: ToyAmongPequeno - components: - - pos: 115.47477,35.418278 - parent: 0 - type: Transform -- uid: 21981 - type: AsteroidRock - components: - - pos: 115.5,36.5 - parent: 0 - type: Transform -- uid: 21982 - type: AsteroidRock - components: - - pos: 116.5,34.5 - parent: 0 - type: Transform -- uid: 21983 - type: AsteroidRock - components: - - pos: 116.5,35.5 - parent: 0 - type: Transform -- uid: 21984 - type: AsteroidRock - components: - - pos: 116.5,36.5 - parent: 0 - type: Transform -- uid: 21985 - type: AsteroidRock - components: - - pos: 115.5,37.5 - parent: 0 - type: Transform -- uid: 21986 - type: AsteroidRock - components: - - pos: 116.5,18.5 - parent: 0 - type: Transform -- uid: 21987 - type: AsteroidRock - components: - - pos: 116.5,19.5 - parent: 0 - type: Transform -- uid: 21988 - type: AsteroidRock - components: - - pos: 116.5,20.5 - parent: 0 - type: Transform -- uid: 21989 - type: AsteroidRock - components: - - pos: 116.5,21.5 - parent: 0 - type: Transform -- uid: 21990 - type: AsteroidRock - components: - - pos: 116.5,22.5 - parent: 0 - type: Transform -- uid: 21991 - type: AsteroidRock - components: - - pos: 116.5,23.5 - parent: 0 - type: Transform -- uid: 21992 - type: AsteroidRock - components: - - pos: 116.5,24.5 - parent: 0 - type: Transform -- uid: 21993 - type: AsteroidRock - components: - - pos: 116.5,25.5 - parent: 0 - type: Transform -- uid: 21994 - type: AsteroidRock - components: - - pos: 116.5,26.5 - parent: 0 - type: Transform -- uid: 21995 - type: AsteroidRock - components: - - pos: 116.5,27.5 - parent: 0 - type: Transform -- uid: 21996 - type: AsteroidRock - components: - - pos: 116.5,28.5 - parent: 0 - type: Transform -- uid: 21997 - type: AsteroidRock - components: - - pos: 117.5,28.5 - parent: 0 - type: Transform -- uid: 21998 - type: AsteroidRock - components: - - pos: 117.5,27.5 - parent: 0 - type: Transform -- uid: 21999 - type: AsteroidRock - components: - - pos: 117.5,26.5 - parent: 0 - type: Transform -- uid: 22000 - type: AsteroidRock - components: - - pos: 117.5,25.5 - parent: 0 - type: Transform -- uid: 22001 - type: AsteroidRock - components: - - pos: 117.5,24.5 - parent: 0 - type: Transform -- uid: 22002 - type: AsteroidRock - components: - - pos: 115.5,22.5 - parent: 0 - type: Transform -- uid: 22003 - type: AsteroidRock - components: - - pos: 115.5,23.5 - parent: 0 - type: Transform -- uid: 22004 - type: AsteroidRock - components: - - pos: 115.5,24.5 - parent: 0 - type: Transform -- uid: 22005 - type: AsteroidRock - components: - - pos: 115.5,25.5 - parent: 0 - type: Transform -- uid: 22006 - type: AsteroidRock - components: - - pos: 115.5,26.5 - parent: 0 - type: Transform -- uid: 22007 - type: AsteroidRock - components: - - pos: 115.5,27.5 - parent: 0 - type: Transform -- uid: 22008 - type: AsteroidRock - components: - - pos: 115.5,28.5 - parent: 0 - type: Transform -- uid: 22009 - type: AsteroidRock - components: - - pos: 114.5,28.5 - parent: 0 - type: Transform -- uid: 22010 - type: AsteroidRock - components: - - pos: 113.5,28.5 - parent: 0 - type: Transform -- uid: 22011 - type: AsteroidRock - components: - - pos: 112.5,28.5 - parent: 0 - type: Transform -- uid: 22012 - type: AsteroidRock - components: - - pos: 133.5,4.5 - parent: 0 - type: Transform -- uid: 22013 - type: AsteroidRock - components: - - pos: 132.5,4.5 - parent: 0 - type: Transform -- uid: 22014 - type: AsteroidRock - components: - - pos: 128.5,-0.5 - parent: 0 - type: Transform -- uid: 22015 - type: AsteroidRockMining - components: - - pos: 129.5,1.5 - parent: 0 - type: Transform -- uid: 22016 - type: AsteroidRockMining - components: - - pos: 129.5,2.5 - parent: 0 - type: Transform -- uid: 22017 - type: AsteroidRockMining - components: - - pos: 128.5,2.5 - parent: 0 - type: Transform -- uid: 22018 - type: AsteroidRock - components: - - pos: 128.5,3.5 - parent: 0 - type: Transform -- uid: 22019 - type: AsteroidRock - components: - - pos: 129.5,3.5 - parent: 0 - type: Transform -- uid: 22020 - type: AsteroidRockMining - components: - - pos: 128.5,1.5 - parent: 0 - type: Transform -- uid: 22021 - type: AsteroidRockMining - components: - - pos: 128.5,0.5 - parent: 0 - type: Transform -- uid: 22022 - type: AsteroidRock - components: - - pos: 129.5,0.5 - parent: 0 - type: Transform -- uid: 22023 - type: AsteroidRock - components: - - pos: 130.5,1.5 - parent: 0 - type: Transform -- uid: 22024 - type: AsteroidRock - components: - - pos: 130.5,2.5 - parent: 0 - type: Transform -- uid: 22025 - type: AsteroidRock - components: - - pos: 121.5,-13.5 - parent: 0 - type: Transform -- uid: 22026 - type: AsteroidRock - components: - - pos: 121.5,-12.5 - parent: 0 - type: Transform -- uid: 22027 - type: AsteroidRock - components: - - pos: 121.5,-11.5 - parent: 0 - type: Transform -- uid: 22028 - type: AsteroidRock - components: - - pos: 121.5,-10.5 - parent: 0 - type: Transform -- uid: 22029 - type: AsteroidRock - components: - - pos: 122.5,-11.5 - parent: 0 - type: Transform -- uid: 22030 - type: AsteroidRock - components: - - pos: 122.5,-10.5 - parent: 0 - type: Transform -- uid: 22031 - type: AsteroidRock - components: - - pos: 123.5,-10.5 - parent: 0 - type: Transform -- uid: 22032 - type: WallSolidRust - components: - - pos: 126.5,-11.5 - parent: 0 - type: Transform -- uid: 22033 - type: SignSecurearea - components: - - pos: 125.5,-21.5 - parent: 0 - type: Transform -- uid: 22034 - type: Grille - components: - - pos: 126.5,-21.5 - parent: 0 - type: Transform -- uid: 22035 - type: Grille - components: - - pos: 128.5,-21.5 - parent: 0 - type: Transform -- uid: 22036 - type: WallSolidRust - components: - - pos: 89.5,-61.5 - parent: 0 - type: Transform -- uid: 22037 - type: Grille - components: - - pos: 131.5,-32.5 - parent: 0 - type: Transform -- uid: 22038 - type: Grille - components: - - pos: 131.5,-31.5 - parent: 0 - type: Transform -- uid: 22039 - type: Grille - components: - - pos: 131.5,-28.5 - parent: 0 - type: Transform -- uid: 22040 - type: Grille - components: - - pos: 131.5,-27.5 - parent: 0 - type: Transform -- uid: 22041 - type: CableHV - components: - - pos: 96.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22042 - type: CableHV - components: - - pos: 97.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22043 - type: CableHV - components: - - pos: 98.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22044 - type: CableHV - components: - - pos: 99.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22045 - type: CableHV - components: - - pos: 100.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22046 - type: CableHV - components: - - pos: 101.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22047 - type: CableHV - components: - - pos: 102.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22048 - type: CableHV - components: - - pos: 103.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22049 - type: CableHV - components: - - pos: 104.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22050 - type: CableHV - components: - - pos: 104.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22051 - type: CableHV - components: - - pos: 105.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22052 - type: CableHV - components: - - pos: 104.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22053 - type: CableHV - components: - - pos: 103.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22054 - type: CableHV - components: - - pos: 102.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22055 - type: CableHV - components: - - pos: 101.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22056 - type: CableHV - components: - - pos: 100.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22057 - type: CableHV - components: - - pos: 99.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22058 - type: CableHV - components: - - pos: 98.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22059 - type: CableHV - components: - - pos: 97.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22060 - type: CableHV - components: - - pos: 96.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22061 - type: CableHV - components: - - pos: 96.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22062 - type: CableHV - components: - - pos: 97.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22063 - type: CableHV - components: - - pos: 98.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22064 - type: CableHV - components: - - pos: 99.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22065 - type: CableHV - components: - - pos: 100.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22066 - type: CableHV - components: - - pos: 101.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22067 - type: CableHV - components: - - pos: 102.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22068 - type: CableHV - components: - - pos: 103.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22069 - type: CableHV - components: - - pos: 104.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22070 - type: CableHV - components: - - pos: 96.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22071 - type: CableHV - components: - - pos: 97.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22072 - type: CableHV - components: - - pos: 98.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22073 - type: CableHV - components: - - pos: 99.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22074 - type: CableHV - components: - - pos: 100.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22075 - type: CableHV - components: - - pos: 101.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22076 - type: CableHV - components: - - pos: 102.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22077 - type: CableHV - components: - - pos: 103.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22078 - type: CableHV - components: - - pos: 104.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22079 - type: CableHV - components: - - pos: 96.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22080 - type: CableHV - components: - - pos: 97.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22081 - type: CableHV - components: - - pos: 98.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22082 - type: CableHV - components: - - pos: 99.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22083 - type: CableHV - components: - - pos: 100.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22084 - type: CableHV - components: - - pos: 101.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22085 - type: CableHV - components: - - pos: 102.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22086 - type: CableHV - components: - - pos: 103.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22087 - type: CableHV - components: - - pos: 104.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22088 - type: CableHV - components: - - pos: 96.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22089 - type: CableHV - components: - - pos: 97.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22090 - type: CableHV - components: - - pos: 98.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22091 - type: CableHV - components: - - pos: 99.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22092 - type: CableHV - components: - - pos: 100.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22093 - type: CableHV - components: - - pos: 101.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22094 - type: CableHV - components: - - pos: 102.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22095 - type: CableHV - components: - - pos: 103.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22096 - type: CableHV - components: - - pos: 104.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22097 - type: CableHV - components: - - pos: 104.5,-76.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22098 - type: CableHV - components: - - pos: 105.5,-76.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22099 - type: CableHV - components: - - pos: 104.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22100 - type: CableHV - components: - - pos: 105.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22101 - type: CableHV - components: - - pos: 116.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22102 - type: CableHV - components: - - pos: 115.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22103 - type: CableHV - components: - - pos: 114.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22104 - type: CableHV - components: - - pos: 113.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22105 - type: CableHV - components: - - pos: 112.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22106 - type: CableHV - components: - - pos: 111.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22107 - type: CableHV - components: - - pos: 110.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22108 - type: CableHV - components: - - pos: 109.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22109 - type: CableHV - components: - - pos: 108.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22110 - type: CableHV - components: - - pos: 108.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22111 - type: CableHV - components: - - pos: 109.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22112 - type: CableHV - components: - - pos: 110.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22113 - type: CableHV - components: - - pos: 111.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22114 - type: CableHV - components: - - pos: 112.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22115 - type: CableHV - components: - - pos: 113.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22116 - type: CableHV - components: - - pos: 114.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22117 - type: CableHV - components: - - pos: 115.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22118 - type: CableHV - components: - - pos: 116.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22119 - type: CableHV - components: - - pos: 116.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22120 - type: CableHV - components: - - pos: 115.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22121 - type: CableHV - components: - - pos: 114.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22122 - type: CableHV - components: - - pos: 113.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22123 - type: CableHV - components: - - pos: 112.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22124 - type: CableHV - components: - - pos: 111.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22125 - type: CableHV - components: - - pos: 110.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22126 - type: CableHV - components: - - pos: 109.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22127 - type: CableHV - components: - - pos: 108.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22128 - type: CableHV - components: - - pos: 108.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22129 - type: CableHV - components: - - pos: 109.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22130 - type: CableHV - components: - - pos: 110.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22131 - type: CableHV - components: - - pos: 111.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22132 - type: CableHV - components: - - pos: 112.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22133 - type: CableHV - components: - - pos: 113.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22134 - type: CableHV - components: - - pos: 114.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22135 - type: CableHV - components: - - pos: 115.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22136 - type: CableHV - components: - - pos: 116.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22137 - type: CableHV - components: - - pos: 116.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22138 - type: CableHV - components: - - pos: 115.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22139 - type: CableHV - components: - - pos: 114.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22140 - type: CableHV - components: - - pos: 113.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22141 - type: CableHV - components: - - pos: 112.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22142 - type: CableHV - components: - - pos: 111.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22143 - type: CableHV - components: - - pos: 110.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22144 - type: CableHV - components: - - pos: 109.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22145 - type: CableHV - components: - - pos: 108.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22146 - type: CableHV - components: - - pos: 108.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22147 - type: CableHV - components: - - pos: 109.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22148 - type: CableHV - components: - - pos: 110.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22149 - type: CableHV - components: - - pos: 111.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22150 - type: CableHV - components: - - pos: 112.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22151 - type: CableHV - components: - - pos: 113.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22152 - type: CableHV - components: - - pos: 114.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22153 - type: CableHV - components: - - pos: 115.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22154 - type: CableHV - components: - - pos: 116.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22155 - type: CableHV - components: - - pos: 108.5,-76.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22156 - type: CableHV - components: - - pos: 107.5,-76.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22157 - type: CableHV - components: - - pos: 108.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22158 - type: CableHV - components: - - pos: 107.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22159 - type: CableHV - components: - - pos: 108.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22160 - type: CableHV - components: - - pos: 107.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22161 - type: CableHV - components: - - pos: 106.5,-79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22162 - type: CableHV - components: - - pos: 106.5,-78.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22163 - type: CableHV - components: - - pos: 106.5,-80.5 - parent: 0 - type: Transform -- uid: 22164 - type: SolarTracker - components: - - pos: 106.5,-80.5 - parent: 0 - type: Transform -- uid: 22165 - type: CableHV - components: - - pos: 106.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22166 - type: CableHV - components: - - pos: 106.5,-66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22167 - type: CableHV - components: - - pos: 106.5,-65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22168 - type: CableHV - components: - - pos: 106.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22169 - type: CableHV - components: - - pos: 106.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22170 - type: CableHV - components: - - pos: 106.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22171 - type: CableHV - components: - - pos: 106.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22172 - type: CableHV - components: - - pos: 106.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22173 - type: CableHV - components: - - pos: 105.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22174 - type: CableHV - components: - - pos: 104.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22175 - type: CableHV - components: - - pos: 103.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22176 - type: CableHV - components: - - pos: 102.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22177 - type: CableHV - components: - - pos: 102.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22178 - type: CableHV - components: - - pos: 102.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22179 - type: CableHV - components: - - pos: 102.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22180 - type: CableHV - components: - - pos: 102.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22181 - type: CableHV - components: - - pos: 102.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22182 - type: WallReinforced - components: - - pos: 99.5,-54.5 - parent: 0 - type: Transform -- uid: 22183 - type: WallReinforced - components: - - pos: 99.5,-53.5 - parent: 0 - type: Transform -- uid: 22184 - type: WallReinforced - components: - - pos: 99.5,-52.5 - parent: 0 - type: Transform -- uid: 22185 - type: WallReinforced - components: - - pos: 99.5,-51.5 - parent: 0 - type: Transform -- uid: 22186 - type: WallReinforced - components: - - pos: 100.5,-51.5 - parent: 0 - type: Transform -- uid: 22187 - type: WallReinforced - components: - - pos: 101.5,-51.5 - parent: 0 - type: Transform -- uid: 22188 - type: WallReinforced - components: - - pos: 102.5,-51.5 - parent: 0 - type: Transform -- uid: 22189 - type: WallReinforced - components: - - pos: 104.5,-51.5 - parent: 0 - type: Transform -- uid: 22190 - type: SMESBasic - components: - - pos: 104.5,-54.5 - parent: 0 - type: Transform -- uid: 22191 - type: CableHV - components: - - pos: 102.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22192 - type: CableHV - components: - - pos: 103.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22193 - type: CableHV - components: - - pos: 104.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22194 - type: CableHV - components: - - pos: 104.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22195 - type: CableHV - components: - - pos: 104.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22196 - type: CableHV - components: - - pos: 103.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22197 - type: CableHV - components: - - pos: 103.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22198 - type: CableHV - components: - - pos: 103.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22199 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: 103.5,-54.5 - parent: 0 - type: Transform -- uid: 22200 - type: WallReinforced - components: - - pos: 115.5,32.5 - parent: 0 - type: Transform -- uid: 22201 - type: WallReinforced - components: - - pos: 115.5,30.5 - parent: 0 - type: Transform -- uid: 22202 - type: WallReinforced - components: - - pos: 112.5,33.5 - parent: 0 - type: Transform -- uid: 22203 - type: WallReinforced - components: - - pos: 111.5,33.5 - parent: 0 - type: Transform -- uid: 22204 - type: WallReinforced - components: - - pos: 111.5,32.5 - parent: 0 - type: Transform -- uid: 22205 - type: WallReinforced - components: - - pos: 111.5,30.5 - parent: 0 - type: Transform -- uid: 22206 - type: SMESBasic - components: - - pos: 114.5,32.5 - parent: 0 - type: Transform -- uid: 22207 - type: CableHV - components: - - pos: 114.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22208 - type: CableHV - components: - - pos: 113.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22209 - type: CableHV - components: - - pos: 112.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22210 - type: CableHV - components: - - pos: 112.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22211 - type: CableHV - components: - - pos: 111.5,31.5 - parent: 0 - type: Transform -- uid: 22212 - type: CableHV - components: - - pos: 110.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22213 - type: CableHV - components: - - pos: 114.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22214 - type: CableHV - components: - - pos: 115.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22215 - type: CableHV - components: - - pos: 116.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22216 - type: CableHV - components: - - pos: 117.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22217 - type: CableHV - components: - - pos: 118.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22218 - type: CableHV - components: - - pos: 118.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22219 - type: CableHV - components: - - pos: 118.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22220 - type: CableHV - components: - - pos: 118.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22221 - type: CableHV - components: - - pos: 118.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22222 - type: CableHV - components: - - pos: 118.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22223 - type: CableHV - components: - - pos: 118.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22224 - type: CableHV - components: - - pos: 119.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22225 - type: CableHV - components: - - pos: 120.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22226 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 114.5,31.5 - parent: 0 - type: Transform -- uid: 22227 - type: WallSolidRust - components: - - pos: 130.5,8.5 - parent: 0 - type: Transform -- uid: 22228 - type: Catwalk - components: - - pos: 131.5,8.5 - parent: 0 - type: Transform -- uid: 22229 - type: SolarPanel - components: - - pos: 120.5,28.5 - parent: 0 - type: Transform -- uid: 22230 - type: SolarPanel - components: - - pos: 120.5,29.5 - parent: 0 - type: Transform -- uid: 22231 - type: SolarPanel - components: - - pos: 120.5,30.5 - parent: 0 - type: Transform -- uid: 22232 - type: SolarPanel - components: - - pos: 120.5,31.5 - parent: 0 - type: Transform -- uid: 22233 - type: SolarPanel - components: - - pos: 120.5,32.5 - parent: 0 - type: Transform -- uid: 22234 - type: SolarPanel - components: - - pos: 120.5,33.5 - parent: 0 - type: Transform -- uid: 22235 - type: SolarPanel - components: - - pos: 120.5,34.5 - parent: 0 - type: Transform -- uid: 22236 - type: SolarPanel - components: - - pos: 120.5,35.5 - parent: 0 - type: Transform -- uid: 22237 - type: SolarPanel - components: - - pos: 122.5,35.5 - parent: 0 - type: Transform -- uid: 22238 - type: SolarPanel - components: - - pos: 122.5,34.5 - parent: 0 - type: Transform -- uid: 22239 - type: SolarPanel - components: - - pos: 122.5,33.5 - parent: 0 - type: Transform -- uid: 22240 - type: SolarPanel - components: - - pos: 122.5,32.5 - parent: 0 - type: Transform -- uid: 22241 - type: SolarPanel - components: - - pos: 122.5,31.5 - parent: 0 - type: Transform -- uid: 22242 - type: SolarPanel - components: - - pos: 122.5,30.5 - parent: 0 - type: Transform -- uid: 22243 - type: SolarPanel - components: - - pos: 122.5,29.5 - parent: 0 - type: Transform -- uid: 22244 - type: SolarPanel - components: - - pos: 122.5,28.5 - parent: 0 - type: Transform -- uid: 22245 - type: SolarPanel - components: - - pos: 124.5,28.5 - parent: 0 - type: Transform -- uid: 22246 - type: SolarPanel - components: - - pos: 124.5,29.5 - parent: 0 - type: Transform -- uid: 22247 - type: SolarPanel - components: - - pos: 124.5,30.5 - parent: 0 - type: Transform -- uid: 22248 - type: SolarPanel - components: - - pos: 124.5,31.5 - parent: 0 - type: Transform -- uid: 22249 - type: SolarPanel - components: - - pos: 124.5,32.5 - parent: 0 - type: Transform -- uid: 22250 - type: SolarPanel - components: - - pos: 124.5,33.5 - parent: 0 - type: Transform -- uid: 22251 - type: SolarPanel - components: - - pos: 124.5,34.5 - parent: 0 - type: Transform -- uid: 22252 - type: SolarPanel - components: - - pos: 124.5,35.5 - parent: 0 - type: Transform -- uid: 22253 - type: SolarPanel - components: - - pos: 126.5,35.5 - parent: 0 - type: Transform -- uid: 22254 - type: SolarPanel - components: - - pos: 126.5,34.5 - parent: 0 - type: Transform -- uid: 22255 - type: SolarPanel - components: - - pos: 126.5,33.5 - parent: 0 - type: Transform -- uid: 22256 - type: SolarPanel - components: - - pos: 126.5,32.5 - parent: 0 - type: Transform -- uid: 22257 - type: SolarPanel - components: - - pos: 126.5,31.5 - parent: 0 - type: Transform -- uid: 22258 - type: SolarPanel - components: - - pos: 126.5,30.5 - parent: 0 - type: Transform -- uid: 22259 - type: SolarPanel - components: - - pos: 126.5,29.5 - parent: 0 - type: Transform -- uid: 22260 - type: SolarPanel - components: - - pos: 126.5,28.5 - parent: 0 - type: Transform -- uid: 22261 - type: SolarPanel - components: - - pos: 128.5,28.5 - parent: 0 - type: Transform -- uid: 22262 - type: SolarPanel - components: - - pos: 128.5,29.5 - parent: 0 - type: Transform -- uid: 22263 - type: SolarPanel - components: - - pos: 128.5,30.5 - parent: 0 - type: Transform -- uid: 22264 - type: SolarPanel - components: - - pos: 128.5,31.5 - parent: 0 - type: Transform -- uid: 22265 - type: SolarPanel - components: - - pos: 128.5,32.5 - parent: 0 - type: Transform -- uid: 22266 - type: SolarPanel - components: - - pos: 128.5,33.5 - parent: 0 - type: Transform -- uid: 22267 - type: SolarPanel - components: - - pos: 128.5,34.5 - parent: 0 - type: Transform -- uid: 22268 - type: SolarPanel - components: - - pos: 128.5,35.5 - parent: 0 - type: Transform -- uid: 22269 - type: SolarPanel - components: - - pos: 130.5,35.5 - parent: 0 - type: Transform -- uid: 22270 - type: SolarPanel - components: - - pos: 130.5,34.5 - parent: 0 - type: Transform -- uid: 22271 - type: SolarPanel - components: - - pos: 130.5,33.5 - parent: 0 - type: Transform -- uid: 22272 - type: SolarPanel - components: - - pos: 130.5,32.5 - parent: 0 - type: Transform -- uid: 22273 - type: SolarPanel - components: - - pos: 130.5,31.5 - parent: 0 - type: Transform -- uid: 22274 - type: SolarPanel - components: - - pos: 130.5,30.5 - parent: 0 - type: Transform -- uid: 22275 - type: SolarPanel - components: - - pos: 130.5,29.5 - parent: 0 - type: Transform -- uid: 22276 - type: SolarPanel - components: - - pos: 130.5,28.5 - parent: 0 - type: Transform -- uid: 22277 - type: SolarPanel - components: - - pos: 132.5,28.5 - parent: 0 - type: Transform -- uid: 22278 - type: SolarPanel - components: - - pos: 132.5,29.5 - parent: 0 - type: Transform -- uid: 22279 - type: SolarPanel - components: - - pos: 132.5,30.5 - parent: 0 - type: Transform -- uid: 22280 - type: SolarPanel - components: - - pos: 132.5,31.5 - parent: 0 - type: Transform -- uid: 22281 - type: SolarPanel - components: - - pos: 132.5,32.5 - parent: 0 - type: Transform -- uid: 22282 - type: SolarPanel - components: - - pos: 132.5,33.5 - parent: 0 - type: Transform -- uid: 22283 - type: SolarPanel - components: - - pos: 132.5,34.5 - parent: 0 - type: Transform -- uid: 22284 - type: SolarPanel - components: - - pos: 132.5,35.5 - parent: 0 - type: Transform -- uid: 22285 - type: SolarPanel - components: - - pos: 134.5,35.5 - parent: 0 - type: Transform -- uid: 22286 - type: SolarPanel - components: - - pos: 134.5,34.5 - parent: 0 - type: Transform -- uid: 22287 - type: SolarPanel - components: - - pos: 134.5,33.5 - parent: 0 - type: Transform -- uid: 22288 - type: SolarPanel - components: - - pos: 134.5,32.5 - parent: 0 - type: Transform -- uid: 22289 - type: SolarPanel - components: - - pos: 134.5,31.5 - parent: 0 - type: Transform -- uid: 22290 - type: SolarPanel - components: - - pos: 134.5,30.5 - parent: 0 - type: Transform -- uid: 22291 - type: SolarPanel - components: - - pos: 134.5,29.5 - parent: 0 - type: Transform -- uid: 22292 - type: SolarPanel - components: - - pos: 134.5,28.5 - parent: 0 - type: Transform -- uid: 22293 - type: SolarPanel - components: - - pos: 134.5,22.5 - parent: 0 - type: Transform -- uid: 22294 - type: SolarPanel - components: - - pos: 134.5,21.5 - parent: 0 - type: Transform -- uid: 22295 - type: SolarPanel - components: - - pos: 134.5,20.5 - parent: 0 - type: Transform -- uid: 22296 - type: SolarPanel - components: - - pos: 134.5,19.5 - parent: 0 - type: Transform -- uid: 22297 - type: SolarPanel - components: - - pos: 134.5,18.5 - parent: 0 - type: Transform -- uid: 22298 - type: SolarPanel - components: - - pos: 134.5,17.5 - parent: 0 - type: Transform -- uid: 22299 - type: SolarPanel - components: - - pos: 134.5,16.5 - parent: 0 - type: Transform -- uid: 22300 - type: SolarPanel - components: - - pos: 120.5,16.5 - parent: 0 - type: Transform -- uid: 22301 - type: SolarPanel - components: - - pos: 120.5,17.5 - parent: 0 - type: Transform -- uid: 22302 - type: SolarPanel - components: - - pos: 120.5,18.5 - parent: 0 - type: Transform -- uid: 22303 - type: SolarPanel - components: - - pos: 120.5,19.5 - parent: 0 - type: Transform -- uid: 22304 - type: SolarPanel - components: - - pos: 120.5,20.5 - parent: 0 - type: Transform -- uid: 22305 - type: SolarPanel - components: - - pos: 120.5,21.5 - parent: 0 - type: Transform -- uid: 22306 - type: SolarPanel - components: - - pos: 120.5,22.5 - parent: 0 - type: Transform -- uid: 22307 - type: SolarPanel - components: - - pos: 122.5,22.5 - parent: 0 - type: Transform -- uid: 22308 - type: SolarPanel - components: - - pos: 122.5,21.5 - parent: 0 - type: Transform -- uid: 22309 - type: SolarPanel - components: - - pos: 122.5,20.5 - parent: 0 - type: Transform -- uid: 22310 - type: SolarPanel - components: - - pos: 122.5,19.5 - parent: 0 - type: Transform -- uid: 22311 - type: SolarPanel - components: - - pos: 122.5,18.5 - parent: 0 - type: Transform -- uid: 22312 - type: SolarPanel - components: - - pos: 122.5,17.5 - parent: 0 - type: Transform -- uid: 22313 - type: SolarPanel - components: - - pos: 122.5,16.5 - parent: 0 - type: Transform -- uid: 22314 - type: SolarPanel - components: - - pos: 124.5,16.5 - parent: 0 - type: Transform -- uid: 22315 - type: SolarPanel - components: - - pos: 124.5,17.5 - parent: 0 - type: Transform -- uid: 22316 - type: SolarPanel - components: - - pos: 124.5,18.5 - parent: 0 - type: Transform -- uid: 22317 - type: SolarPanel - components: - - pos: 124.5,19.5 - parent: 0 - type: Transform -- uid: 22318 - type: SolarPanel - components: - - pos: 124.5,20.5 - parent: 0 - type: Transform -- uid: 22319 - type: SolarPanel - components: - - pos: 124.5,21.5 - parent: 0 - type: Transform -- uid: 22320 - type: SolarPanel - components: - - pos: 124.5,22.5 - parent: 0 - type: Transform -- uid: 22321 - type: SolarPanel - components: - - pos: 126.5,22.5 - parent: 0 - type: Transform -- uid: 22322 - type: SolarPanel - components: - - pos: 126.5,21.5 - parent: 0 - type: Transform -- uid: 22323 - type: SolarPanel - components: - - pos: 126.5,20.5 - parent: 0 - type: Transform -- uid: 22324 - type: SolarPanel - components: - - pos: 126.5,19.5 - parent: 0 - type: Transform -- uid: 22325 - type: SolarPanel - components: - - pos: 126.5,18.5 - parent: 0 - type: Transform -- uid: 22326 - type: SolarPanel - components: - - pos: 126.5,17.5 - parent: 0 - type: Transform -- uid: 22327 - type: SolarPanel - components: - - pos: 126.5,16.5 - parent: 0 - type: Transform -- uid: 22328 - type: SolarPanel - components: - - pos: 128.5,16.5 - parent: 0 - type: Transform -- uid: 22329 - type: SolarPanel - components: - - pos: 128.5,17.5 - parent: 0 - type: Transform -- uid: 22330 - type: SolarPanel - components: - - pos: 128.5,18.5 - parent: 0 - type: Transform -- uid: 22331 - type: SolarPanel - components: - - pos: 128.5,19.5 - parent: 0 - type: Transform -- uid: 22332 - type: SolarPanel - components: - - pos: 128.5,20.5 - parent: 0 - type: Transform -- uid: 22333 - type: SolarPanel - components: - - pos: 128.5,21.5 - parent: 0 - type: Transform -- uid: 22334 - type: SolarPanel - components: - - pos: 128.5,22.5 - parent: 0 - type: Transform -- uid: 22335 - type: SolarPanel - components: - - pos: 130.5,22.5 - parent: 0 - type: Transform -- uid: 22336 - type: SolarPanel - components: - - pos: 130.5,21.5 - parent: 0 - type: Transform -- uid: 22337 - type: SolarPanel - components: - - pos: 130.5,20.5 - parent: 0 - type: Transform -- uid: 22338 - type: SolarPanel - components: - - pos: 130.5,19.5 - parent: 0 - type: Transform -- uid: 22339 - type: SolarPanel - components: - - pos: 130.5,18.5 - parent: 0 - type: Transform -- uid: 22340 - type: SolarPanel - components: - - pos: 130.5,17.5 - parent: 0 - type: Transform -- uid: 22341 - type: SolarPanel - components: - - pos: 130.5,16.5 - parent: 0 - type: Transform -- uid: 22342 - type: Catwalk - components: - - pos: 135.5,55.5 - parent: 0 - type: Transform -- uid: 22343 - type: Catwalk - components: - - pos: 117.5,71.5 - parent: 0 - type: Transform -- uid: 22344 - type: MountainRock - components: - - pos: 112.5,46.5 - parent: 0 - type: Transform -- uid: 22345 - type: MountainRock - components: - - pos: 113.5,46.5 - parent: 0 - type: Transform -- uid: 22346 - type: MountainRock - components: - - pos: 114.5,46.5 - parent: 0 - type: Transform -- uid: 22347 - type: MountainRock - components: - - pos: 115.5,46.5 - parent: 0 - type: Transform -- uid: 22348 - type: MountainRock - components: - - pos: 116.5,46.5 - parent: 0 - type: Transform -- uid: 22349 - type: MountainRock - components: - - pos: 115.5,45.5 - parent: 0 - type: Transform -- uid: 22350 - type: MountainRock - components: - - pos: 115.5,44.5 - parent: 0 - type: Transform -- uid: 22351 - type: MountainRock - components: - - pos: 115.5,43.5 - parent: 0 - type: Transform -- uid: 22352 - type: MountainRock - components: - - pos: 116.5,45.5 - parent: 0 - type: Transform -- uid: 22353 - type: MountainRock - components: - - pos: 116.5,44.5 - parent: 0 - type: Transform -- uid: 22354 - type: MountainRock - components: - - pos: 116.5,43.5 - parent: 0 - type: Transform -- uid: 22355 - type: MountainRock - components: - - pos: 117.5,43.5 - parent: 0 - type: Transform -- uid: 22356 - type: MountainRock - components: - - pos: 117.5,42.5 - parent: 0 - type: Transform -- uid: 22357 - type: MountainRock - components: - - pos: 118.5,42.5 - parent: 0 - type: Transform -- uid: 22358 - type: MountainRock - components: - - pos: 119.5,42.5 - parent: 0 - type: Transform -- uid: 22359 - type: MountainRock - components: - - pos: 120.5,42.5 - parent: 0 - type: Transform -- uid: 22360 - type: MountainRock - components: - - pos: 121.5,42.5 - parent: 0 - type: Transform -- uid: 22361 - type: MountainRock - components: - - pos: 122.5,42.5 - parent: 0 - type: Transform -- uid: 22362 - type: MountainRock - components: - - pos: 123.5,42.5 - parent: 0 - type: Transform -- uid: 22363 - type: MountainRock - components: - - pos: 124.5,42.5 - parent: 0 - type: Transform -- uid: 22364 - type: MountainRock - components: - - pos: 125.5,42.5 - parent: 0 - type: Transform -- uid: 22365 - type: MountainRock - components: - - pos: 126.5,42.5 - parent: 0 - type: Transform -- uid: 22366 - type: MountainRock - components: - - pos: 127.5,42.5 - parent: 0 - type: Transform -- uid: 22367 - type: MountainRock - components: - - pos: 128.5,42.5 - parent: 0 - type: Transform -- uid: 22368 - type: MountainRock - components: - - pos: 128.5,43.5 - parent: 0 - type: Transform -- uid: 22369 - type: MountainRock - components: - - pos: 129.5,43.5 - parent: 0 - type: Transform -- uid: 22370 - type: MountainRock - components: - - pos: 129.5,44.5 - parent: 0 - type: Transform -- uid: 22371 - type: MountainRock - components: - - pos: 130.5,44.5 - parent: 0 - type: Transform -- uid: 22372 - type: MountainRock - components: - - pos: 130.5,45.5 - parent: 0 - type: Transform -- uid: 22373 - type: MountainRock - components: - - pos: 130.5,46.5 - parent: 0 - type: Transform -- uid: 22374 - type: MountainRock - components: - - pos: 130.5,47.5 - parent: 0 - type: Transform -- uid: 22375 - type: MountainRock - components: - - pos: 130.5,49.5 - parent: 0 - type: Transform -- uid: 22376 - type: MountainRock - components: - - pos: 130.5,51.5 - parent: 0 - type: Transform -- uid: 22377 - type: MountainRock - components: - - pos: 130.5,52.5 - parent: 0 - type: Transform -- uid: 22378 - type: MountainRock - components: - - pos: 130.5,53.5 - parent: 0 - type: Transform -- uid: 22379 - type: MountainRock - components: - - pos: 130.5,54.5 - parent: 0 - type: Transform -- uid: 22380 - type: MountainRock - components: - - pos: 129.5,54.5 - parent: 0 - type: Transform -- uid: 22381 - type: MountainRock - components: - - pos: 129.5,55.5 - parent: 0 - type: Transform -- uid: 22382 - type: MountainRock - components: - - pos: 128.5,55.5 - parent: 0 - type: Transform -- uid: 22383 - type: MountainRock - components: - - pos: 128.5,56.5 - parent: 0 - type: Transform -- uid: 22384 - type: MountainRock - components: - - pos: 127.5,56.5 - parent: 0 - type: Transform -- uid: 22385 - type: MountainRock - components: - - pos: 126.5,56.5 - parent: 0 - type: Transform -- uid: 22386 - type: MountainRock - components: - - pos: 125.5,56.5 - parent: 0 - type: Transform -- uid: 22387 - type: MountainRock - components: - - pos: 124.5,56.5 - parent: 0 - type: Transform -- uid: 22388 - type: MountainRock - components: - - pos: 123.5,56.5 - parent: 0 - type: Transform -- uid: 22389 - type: MountainRock - components: - - pos: 122.5,56.5 - parent: 0 - type: Transform -- uid: 22390 - type: MountainRock - components: - - pos: 121.5,56.5 - parent: 0 - type: Transform -- uid: 22391 - type: MountainRock - components: - - pos: 120.5,56.5 - parent: 0 - type: Transform -- uid: 22392 - type: MountainRock - components: - - pos: 119.5,56.5 - parent: 0 - type: Transform -- uid: 22393 - type: MountainRock - components: - - pos: 118.5,56.5 - parent: 0 - type: Transform -- uid: 22394 - type: MountainRock - components: - - pos: 117.5,56.5 - parent: 0 - type: Transform -- uid: 22395 - type: MountainRock - components: - - pos: 117.5,55.5 - parent: 0 - type: Transform -- uid: 22396 - type: MountainRock - components: - - pos: 116.5,55.5 - parent: 0 - type: Transform -- uid: 22397 - type: MountainRock - components: - - pos: 116.5,54.5 - parent: 0 - type: Transform -- uid: 22398 - type: MountainRock - components: - - pos: 116.5,53.5 - parent: 0 - type: Transform -- uid: 22399 - type: MountainRock - components: - - pos: 116.5,52.5 - parent: 0 - type: Transform -- uid: 22400 - type: MountainRock - components: - - pos: 115.5,52.5 - parent: 0 - type: Transform -- uid: 22401 - type: MountainRock - components: - - pos: 114.5,52.5 - parent: 0 - type: Transform -- uid: 22402 - type: MountainRock - components: - - pos: 113.5,52.5 - parent: 0 - type: Transform -- uid: 22403 - type: MountainRock - components: - - pos: 112.5,52.5 - parent: 0 - type: Transform -- uid: 22404 - type: SolarPanel - components: - - pos: 96.5,-69.5 - parent: 0 - type: Transform -- uid: 22405 - type: SolarPanel - components: - - pos: 97.5,-69.5 - parent: 0 - type: Transform -- uid: 22406 - type: SolarPanel - components: - - pos: 98.5,-69.5 - parent: 0 - type: Transform -- uid: 22407 - type: SolarPanel - components: - - pos: 99.5,-69.5 - parent: 0 - type: Transform -- uid: 22408 - type: SolarPanel - components: - - pos: 100.5,-69.5 - parent: 0 - type: Transform -- uid: 22409 - type: SolarPanel - components: - - pos: 101.5,-69.5 - parent: 0 - type: Transform -- uid: 22410 - type: SolarPanel - components: - - pos: 102.5,-69.5 - parent: 0 - type: Transform -- uid: 22411 - type: SolarPanel - components: - - pos: 103.5,-69.5 - parent: 0 - type: Transform -- uid: 22412 - type: SolarPanel - components: - - pos: 104.5,-69.5 - parent: 0 - type: Transform -- uid: 22413 - type: SolarPanel - components: - - pos: 104.5,-67.5 - parent: 0 - type: Transform -- uid: 22414 - type: SolarPanel - components: - - pos: 103.5,-67.5 - parent: 0 - type: Transform -- uid: 22415 - type: SolarPanel - components: - - pos: 102.5,-67.5 - parent: 0 - type: Transform -- uid: 22416 - type: SolarPanel - components: - - pos: 101.5,-67.5 - parent: 0 - type: Transform -- uid: 22417 - type: SolarPanel - components: - - pos: 100.5,-67.5 - parent: 0 - type: Transform -- uid: 22418 - type: SolarPanel - components: - - pos: 99.5,-67.5 - parent: 0 - type: Transform -- uid: 22419 - type: SolarPanel - components: - - pos: 98.5,-67.5 - parent: 0 - type: Transform -- uid: 22420 - type: SolarPanel - components: - - pos: 97.5,-67.5 - parent: 0 - type: Transform -- uid: 22421 - type: SolarPanel - components: - - pos: 96.5,-67.5 - parent: 0 - type: Transform -- uid: 22422 - type: SolarPanel - components: - - pos: 96.5,-71.5 - parent: 0 - type: Transform -- uid: 22423 - type: SolarPanel - components: - - pos: 97.5,-71.5 - parent: 0 - type: Transform -- uid: 22424 - type: SolarPanel - components: - - pos: 98.5,-71.5 - parent: 0 - type: Transform -- uid: 22425 - type: SolarPanel - components: - - pos: 99.5,-71.5 - parent: 0 - type: Transform -- uid: 22426 - type: SolarPanel - components: - - pos: 100.5,-71.5 - parent: 0 - type: Transform -- uid: 22427 - type: SolarPanel - components: - - pos: 101.5,-71.5 - parent: 0 - type: Transform -- uid: 22428 - type: SolarPanel - components: - - pos: 102.5,-71.5 - parent: 0 - type: Transform -- uid: 22429 - type: SolarPanel - components: - - pos: 103.5,-71.5 - parent: 0 - type: Transform -- uid: 22430 - type: SolarPanel - components: - - pos: 104.5,-71.5 - parent: 0 - type: Transform -- uid: 22431 - type: SolarPanel - components: - - pos: 104.5,-73.5 - parent: 0 - type: Transform -- uid: 22432 - type: SolarPanel - components: - - pos: 103.5,-73.5 - parent: 0 - type: Transform -- uid: 22433 - type: SolarPanel - components: - - pos: 102.5,-73.5 - parent: 0 - type: Transform -- uid: 22434 - type: SolarPanel - components: - - pos: 101.5,-73.5 - parent: 0 - type: Transform -- uid: 22435 - type: SolarPanel - components: - - pos: 100.5,-73.5 - parent: 0 - type: Transform -- uid: 22436 - type: SolarPanel - components: - - pos: 99.5,-73.5 - parent: 0 - type: Transform -- uid: 22437 - type: SolarPanel - components: - - pos: 98.5,-73.5 - parent: 0 - type: Transform -- uid: 22438 - type: SolarPanel - components: - - pos: 97.5,-73.5 - parent: 0 - type: Transform -- uid: 22439 - type: SolarPanel - components: - - pos: 96.5,-73.5 - parent: 0 - type: Transform -- uid: 22440 - type: SolarPanel - components: - - pos: 96.5,-75.5 - parent: 0 - type: Transform -- uid: 22441 - type: SolarPanel - components: - - pos: 97.5,-75.5 - parent: 0 - type: Transform -- uid: 22442 - type: SolarPanel - components: - - pos: 98.5,-75.5 - parent: 0 - type: Transform -- uid: 22443 - type: SolarPanel - components: - - pos: 99.5,-75.5 - parent: 0 - type: Transform -- uid: 22444 - type: SolarPanel - components: - - pos: 100.5,-75.5 - parent: 0 - type: Transform -- uid: 22445 - type: SolarPanel - components: - - pos: 101.5,-75.5 - parent: 0 - type: Transform -- uid: 22446 - type: SolarPanel - components: - - pos: 102.5,-75.5 - parent: 0 - type: Transform -- uid: 22447 - type: SolarPanel - components: - - pos: 103.5,-75.5 - parent: 0 - type: Transform -- uid: 22448 - type: SolarPanel - components: - - pos: 104.5,-75.5 - parent: 0 - type: Transform -- uid: 22449 - type: SolarPanel - components: - - pos: 104.5,-77.5 - parent: 0 - type: Transform -- uid: 22450 - type: SolarPanel - components: - - pos: 103.5,-77.5 - parent: 0 - type: Transform -- uid: 22451 - type: SolarPanel - components: - - pos: 102.5,-77.5 - parent: 0 - type: Transform -- uid: 22452 - type: SolarPanel - components: - - pos: 101.5,-77.5 - parent: 0 - type: Transform -- uid: 22453 - type: SolarPanel - components: - - pos: 100.5,-77.5 - parent: 0 - type: Transform -- uid: 22454 - type: SolarPanel - components: - - pos: 99.5,-77.5 - parent: 0 - type: Transform -- uid: 22455 - type: SolarPanel - components: - - pos: 98.5,-77.5 - parent: 0 - type: Transform -- uid: 22456 - type: SolarPanel - components: - - pos: 97.5,-77.5 - parent: 0 - type: Transform -- uid: 22457 - type: SolarPanel - components: - - pos: 96.5,-77.5 - parent: 0 - type: Transform -- uid: 22458 - type: SolarPanel - components: - - pos: 116.5,-77.5 - parent: 0 - type: Transform -- uid: 22459 - type: SolarPanel - components: - - pos: 115.5,-77.5 - parent: 0 - type: Transform -- uid: 22460 - type: SolarPanel - components: - - pos: 114.5,-77.5 - parent: 0 - type: Transform -- uid: 22461 - type: SolarPanel - components: - - pos: 113.5,-77.5 - parent: 0 - type: Transform -- uid: 22462 - type: SolarPanel - components: - - pos: 112.5,-77.5 - parent: 0 - type: Transform -- uid: 22463 - type: SolarPanel - components: - - pos: 111.5,-77.5 - parent: 0 - type: Transform -- uid: 22464 - type: SolarPanel - components: - - pos: 110.5,-77.5 - parent: 0 - type: Transform -- uid: 22465 - type: SolarPanel - components: - - pos: 109.5,-77.5 - parent: 0 - type: Transform -- uid: 22466 - type: SolarPanel - components: - - pos: 108.5,-77.5 - parent: 0 - type: Transform -- uid: 22467 - type: SolarPanel - components: - - pos: 108.5,-67.5 - parent: 0 - type: Transform -- uid: 22468 - type: SolarPanel - components: - - pos: 109.5,-67.5 - parent: 0 - type: Transform -- uid: 22469 - type: SolarPanel - components: - - pos: 110.5,-67.5 - parent: 0 - type: Transform -- uid: 22470 - type: SolarPanel - components: - - pos: 111.5,-67.5 - parent: 0 - type: Transform -- uid: 22471 - type: SolarPanel - components: - - pos: 112.5,-67.5 - parent: 0 - type: Transform -- uid: 22472 - type: SolarPanel - components: - - pos: 113.5,-67.5 - parent: 0 - type: Transform -- uid: 22473 - type: SolarPanel - components: - - pos: 114.5,-67.5 - parent: 0 - type: Transform -- uid: 22474 - type: SolarPanel - components: - - pos: 115.5,-67.5 - parent: 0 - type: Transform -- uid: 22475 - type: SolarPanel - components: - - pos: 116.5,-67.5 - parent: 0 - type: Transform -- uid: 22476 - type: SolarPanel - components: - - pos: 116.5,-69.5 - parent: 0 - type: Transform -- uid: 22477 - type: SolarPanel - components: - - pos: 115.5,-69.5 - parent: 0 - type: Transform -- uid: 22478 - type: SolarPanel - components: - - pos: 114.5,-69.5 - parent: 0 - type: Transform -- uid: 22479 - type: SolarPanel - components: - - pos: 113.5,-69.5 - parent: 0 - type: Transform -- uid: 22480 - type: SolarPanel - components: - - pos: 112.5,-69.5 - parent: 0 - type: Transform -- uid: 22481 - type: SolarPanel - components: - - pos: 111.5,-69.5 - parent: 0 - type: Transform -- uid: 22482 - type: SolarPanel - components: - - pos: 110.5,-69.5 - parent: 0 - type: Transform -- uid: 22483 - type: SolarPanel - components: - - pos: 109.5,-69.5 - parent: 0 - type: Transform -- uid: 22484 - type: SolarPanel - components: - - pos: 108.5,-69.5 - parent: 0 - type: Transform -- uid: 22485 - type: SolarPanel - components: - - pos: 108.5,-71.5 - parent: 0 - type: Transform -- uid: 22486 - type: SolarPanel - components: - - pos: 109.5,-71.5 - parent: 0 - type: Transform -- uid: 22487 - type: SolarPanel - components: - - pos: 110.5,-71.5 - parent: 0 - type: Transform -- uid: 22488 - type: SolarPanel - components: - - pos: 111.5,-71.5 - parent: 0 - type: Transform -- uid: 22489 - type: SolarPanel - components: - - pos: 112.5,-71.5 - parent: 0 - type: Transform -- uid: 22490 - type: SolarPanel - components: - - pos: 113.5,-71.5 - parent: 0 - type: Transform -- uid: 22491 - type: SolarPanel - components: - - pos: 114.5,-71.5 - parent: 0 - type: Transform -- uid: 22492 - type: SolarPanel - components: - - pos: 115.5,-71.5 - parent: 0 - type: Transform -- uid: 22493 - type: SolarPanel - components: - - pos: 116.5,-71.5 - parent: 0 - type: Transform -- uid: 22494 - type: SolarPanel - components: - - pos: 116.5,-75.5 - parent: 0 - type: Transform -- uid: 22495 - type: SolarPanel - components: - - pos: 115.5,-75.5 - parent: 0 - type: Transform -- uid: 22496 - type: SolarPanel - components: - - pos: 114.5,-75.5 - parent: 0 - type: Transform -- uid: 22497 - type: SolarPanel - components: - - pos: 113.5,-75.5 - parent: 0 - type: Transform -- uid: 22498 - type: SolarPanel - components: - - pos: 112.5,-75.5 - parent: 0 - type: Transform -- uid: 22499 - type: SolarPanel - components: - - pos: 111.5,-75.5 - parent: 0 - type: Transform -- uid: 22500 - type: SolarPanel - components: - - pos: 110.5,-75.5 - parent: 0 - type: Transform -- uid: 22501 - type: SolarPanel - components: - - pos: 109.5,-75.5 - parent: 0 - type: Transform -- uid: 22502 - type: SolarPanel - components: - - pos: 108.5,-75.5 - parent: 0 - type: Transform -- uid: 22503 - type: SolarPanel - components: - - pos: 108.5,-73.5 - parent: 0 - type: Transform -- uid: 22504 - type: SolarPanel - components: - - pos: 109.5,-73.5 - parent: 0 - type: Transform -- uid: 22505 - type: SolarPanel - components: - - pos: 110.5,-73.5 - parent: 0 - type: Transform -- uid: 22506 - type: SolarPanel - components: - - pos: 111.5,-73.5 - parent: 0 - type: Transform -- uid: 22507 - type: SolarPanel - components: - - pos: 112.5,-73.5 - parent: 0 - type: Transform -- uid: 22508 - type: SolarPanel - components: - - pos: 113.5,-73.5 - parent: 0 - type: Transform -- uid: 22509 - type: SolarPanel - components: - - pos: 114.5,-73.5 - parent: 0 - type: Transform -- uid: 22510 - type: SolarPanel - components: - - pos: 115.5,-73.5 - parent: 0 - type: Transform -- uid: 22511 - type: SolarPanel - components: - - pos: 116.5,-73.5 - parent: 0 - type: Transform -- uid: 22512 - type: Catwalk - components: - - pos: 94.5,-65.5 - parent: 0 - type: Transform -- uid: 22513 - type: Catwalk - components: - - pos: 118.5,-65.5 - parent: 0 - type: Transform -- uid: 22514 - type: Catwalk - components: - - pos: 94.5,-79.5 - parent: 0 - type: Transform -- uid: 22515 - type: Catwalk - components: - - pos: 89.5,-79.5 - parent: 0 - type: Transform -- uid: 22516 - type: Catwalk - components: - - pos: 106.5,-82.5 - parent: 0 - type: Transform -- uid: 22517 - type: Catwalk - components: - - pos: 118.5,-79.5 - parent: 0 - type: Transform -- uid: 22518 - type: Catwalk - components: - - pos: 110.5,-48.5 - parent: 0 - type: Transform -- uid: 22519 - type: Catwalk - components: - - pos: 110.5,-47.5 - parent: 0 - type: Transform -- uid: 22520 - type: Catwalk - components: - - pos: 110.5,-45.5 - parent: 0 - type: Transform -- uid: 22521 - type: Catwalk - components: - - pos: 110.5,-44.5 - parent: 0 - type: Transform -- uid: 22522 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 106.5,-38.5 - parent: 0 - type: Transform -- uid: 22523 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 107.5,-38.5 - parent: 0 - type: Transform -- uid: 22524 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 108.5,-37.5 - parent: 0 - type: Transform -- uid: 22525 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 105.5,-38.5 - parent: 0 - type: Transform -- uid: 22526 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 108.5,-35.5 - parent: 0 - type: Transform -- uid: 22527 - type: ReinforcedPlasmaWindow - components: - - pos: 104.5,-36.5 - parent: 0 - type: Transform -- uid: 22528 - type: GasPressurePump - components: - - name: Burn Chamber In - type: MetaData - - rot: 1.5707963267948966 rad - pos: 103.5,-35.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22529 - type: Grille - components: - - pos: 117.5,-79.5 - parent: 0 - type: Transform -- uid: 22530 - type: Grille - components: - - pos: 105.5,-82.5 - parent: 0 - type: Transform -- uid: 22531 - type: Grille - components: - - pos: 104.5,-82.5 - parent: 0 - type: Transform -- uid: 22532 - type: Grille - components: - - pos: 104.5,-81.5 - parent: 0 - type: Transform -- uid: 22533 - type: Grille - components: - - pos: 107.5,-82.5 - parent: 0 - type: Transform -- uid: 22534 - type: Grille - components: - - pos: 108.5,-82.5 - parent: 0 - type: Transform -- uid: 22535 - type: Grille - components: - - pos: 108.5,-81.5 - parent: 0 - type: Transform -- uid: 22536 - type: Grille - components: - - pos: 116.5,-79.5 - parent: 0 - type: Transform -- uid: 22537 - type: Grille - components: - - pos: 115.5,-79.5 - parent: 0 - type: Transform -- uid: 22538 - type: Grille - components: - - pos: 114.5,-79.5 - parent: 0 - type: Transform -- uid: 22539 - type: Grille - components: - - pos: 113.5,-79.5 - parent: 0 - type: Transform -- uid: 22540 - type: Grille - components: - - pos: 112.5,-79.5 - parent: 0 - type: Transform -- uid: 22541 - type: Grille - components: - - pos: 111.5,-79.5 - parent: 0 - type: Transform -- uid: 22542 - type: Grille - components: - - pos: 101.5,-79.5 - parent: 0 - type: Transform -- uid: 22543 - type: Grille - components: - - pos: 118.5,-78.5 - parent: 0 - type: Transform -- uid: 22544 - type: Grille - components: - - pos: 118.5,-77.5 - parent: 0 - type: Transform -- uid: 22545 - type: Grille - components: - - pos: 118.5,-76.5 - parent: 0 - type: Transform -- uid: 22546 - type: Grille - components: - - pos: 118.5,-75.5 - parent: 0 - type: Transform -- uid: 22547 - type: Grille - components: - - pos: 118.5,-74.5 - parent: 0 - type: Transform -- uid: 22548 - type: Grille - components: - - pos: 118.5,-72.5 - parent: 0 - type: Transform -- uid: 22549 - type: Grille - components: - - pos: 118.5,-71.5 - parent: 0 - type: Transform -- uid: 22550 - type: Grille - components: - - pos: 118.5,-70.5 - parent: 0 - type: Transform -- uid: 22551 - type: Grille - components: - - pos: 118.5,-69.5 - parent: 0 - type: Transform -- uid: 22552 - type: Grille - components: - - pos: 118.5,-68.5 - parent: 0 - type: Transform -- uid: 22553 - type: Grille - components: - - pos: 118.5,-67.5 - parent: 0 - type: Transform -- uid: 22554 - type: Grille - components: - - pos: 118.5,-66.5 - parent: 0 - type: Transform -- uid: 22555 - type: Grille - components: - - pos: 94.5,-72.5 - parent: 0 - type: Transform -- uid: 22556 - type: Grille - components: - - pos: 94.5,-71.5 - parent: 0 - type: Transform -- uid: 22557 - type: Grille - components: - - pos: 94.5,-70.5 - parent: 0 - type: Transform -- uid: 22558 - type: Grille - components: - - pos: 94.5,-69.5 - parent: 0 - type: Transform -- uid: 22559 - type: Grille - components: - - pos: 94.5,-68.5 - parent: 0 - type: Transform -- uid: 22560 - type: Grille - components: - - pos: 94.5,-67.5 - parent: 0 - type: Transform -- uid: 22561 - type: Grille - components: - - pos: 94.5,-66.5 - parent: 0 - type: Transform -- uid: 22562 - type: Grille - components: - - pos: 100.5,-79.5 - parent: 0 - type: Transform -- uid: 22563 - type: Grille - components: - - pos: 99.5,-79.5 - parent: 0 - type: Transform -- uid: 22564 - type: Grille - components: - - pos: 98.5,-79.5 - parent: 0 - type: Transform -- uid: 22565 - type: Grille - components: - - pos: 97.5,-79.5 - parent: 0 - type: Transform -- uid: 22566 - type: Grille - components: - - pos: 96.5,-79.5 - parent: 0 - type: Transform -- uid: 22567 - type: Grille - components: - - pos: 95.5,-79.5 - parent: 0 - type: Transform -- uid: 22568 - type: Catwalk - components: - - pos: 89.5,-62.5 - parent: 0 - type: Transform -- uid: 22569 - type: Grille - components: - - pos: 94.5,-78.5 - parent: 0 - type: Transform -- uid: 22570 - type: Grille - components: - - pos: 94.5,-77.5 - parent: 0 - type: Transform -- uid: 22571 - type: Grille - components: - - pos: 94.5,-76.5 - parent: 0 - type: Transform -- uid: 22572 - type: Grille - components: - - pos: 94.5,-75.5 - parent: 0 - type: Transform -- uid: 22573 - type: Grille - components: - - pos: 94.5,-74.5 - parent: 0 - type: Transform -- uid: 22574 - type: SmallLight - components: - - rot: 3.141592653589793 rad - pos: 108.5,-31.5 - parent: 0 - type: Transform -- uid: 22575 - type: WallReinforced - components: - - pos: 56.5,68.5 - parent: 0 - type: Transform -- uid: 22576 - type: WallReinforced - components: - - pos: 56.5,69.5 - parent: 0 - type: Transform -- uid: 22577 - type: WallReinforced - components: - - pos: 58.5,69.5 - parent: 0 - type: Transform -- uid: 22578 - type: ReinforcedWindow - components: - - pos: 58.5,67.5 - parent: 0 - type: Transform -- uid: 22579 - type: ReinforcedWindow - components: - - pos: 58.5,68.5 - parent: 0 - type: Transform -- uid: 22580 - type: Catwalk - components: - - pos: 58.5,70.5 - parent: 0 - type: Transform -- uid: 22581 - type: Catwalk - components: - - pos: 57.5,70.5 - parent: 0 - type: Transform -- uid: 22582 - type: Catwalk - components: - - pos: 56.5,70.5 - parent: 0 - type: Transform -- uid: 22583 - type: Catwalk - components: - - pos: 59.5,70.5 - parent: 0 - type: Transform -- uid: 22584 - type: WallReinforced - components: - - pos: 55.5,69.5 - parent: 0 - type: Transform -- uid: 22585 - type: WallReinforced - components: - - pos: 54.5,69.5 - parent: 0 - type: Transform -- uid: 22586 - type: WallReinforced - components: - - pos: 54.5,68.5 - parent: 0 - type: Transform -- uid: 22587 - type: WallReinforced - components: - - pos: 54.5,67.5 - parent: 0 - type: Transform -- uid: 22588 - type: WallReinforced - components: - - pos: 54.5,66.5 - parent: 0 - type: Transform -- uid: 22589 - type: WallReinforced - components: - - pos: 54.5,65.5 - parent: 0 - type: Transform -- uid: 22590 - type: WallReinforced - components: - - pos: 53.5,65.5 - parent: 0 - type: Transform -- uid: 22591 - type: WallReinforced - components: - - pos: 51.5,65.5 - parent: 0 - type: Transform -- uid: 22592 - type: WallReinforced - components: - - pos: 50.5,65.5 - parent: 0 - type: Transform -- uid: 22593 - type: WallReinforced - components: - - pos: 50.5,66.5 - parent: 0 - type: Transform -- uid: 22594 - type: WallReinforced - components: - - pos: 50.5,67.5 - parent: 0 - type: Transform -- uid: 22595 - type: WallReinforced - components: - - pos: 50.5,68.5 - parent: 0 - type: Transform -- uid: 22596 - type: WallReinforced - components: - - pos: 50.5,69.5 - parent: 0 - type: Transform -- uid: 22597 - type: ReinforcedWindow - components: - - pos: 51.5,69.5 - parent: 0 - type: Transform -- uid: 22598 - type: ReinforcedWindow - components: - - pos: 51.5,70.5 - parent: 0 - type: Transform -- uid: 22599 - type: ReinforcedWindow - components: - - pos: 51.5,71.5 - parent: 0 - type: Transform -- uid: 22600 - type: ReinforcedWindow - components: - - pos: 53.5,69.5 - parent: 0 - type: Transform -- uid: 22601 - type: ReinforcedWindow - components: - - pos: 53.5,70.5 - parent: 0 - type: Transform -- uid: 22602 - type: ReinforcedWindow - components: - - pos: 53.5,71.5 - parent: 0 - type: Transform -- uid: 22603 - type: WallReinforced - components: - - pos: 49.5,66.5 - parent: 0 - type: Transform -- uid: 22604 - type: WallReinforced - components: - - pos: 48.5,66.5 - parent: 0 - type: Transform -- uid: 22605 - type: WallReinforced - components: - - pos: 47.5,66.5 - parent: 0 - type: Transform -- uid: 22606 - type: ReinforcedWindow - components: - - pos: 46.5,66.5 - parent: 0 - type: Transform -- uid: 22607 - type: WallReinforced - components: - - pos: 45.5,66.5 - parent: 0 - type: Transform -- uid: 22608 - type: WallReinforced - components: - - pos: 45.5,65.5 - parent: 0 - type: Transform -- uid: 22609 - type: WallReinforced - components: - - pos: 44.5,65.5 - parent: 0 - type: Transform -- uid: 22610 - type: WallReinforced - components: - - pos: 43.5,65.5 - parent: 0 - type: Transform -- uid: 22611 - type: WallReinforced - components: - - pos: 42.5,65.5 - parent: 0 - type: Transform -- uid: 22612 - type: WallReinforced - components: - - pos: 41.5,65.5 - parent: 0 - type: Transform -- uid: 22613 - type: WallReinforced - components: - - pos: 40.5,65.5 - parent: 0 - type: Transform -- uid: 22614 - type: WallReinforced - components: - - pos: 39.5,65.5 - parent: 0 - type: Transform -- uid: 22615 - type: WallReinforced - components: - - pos: 39.5,66.5 - parent: 0 - type: Transform -- uid: 22616 - type: SmallLight - components: - - rot: 1.5707963267948966 rad - pos: 117.5,71.5 - parent: 0 - type: Transform -- uid: 22617 - type: SmallLight - components: - - rot: 3.141592653589793 rad - pos: 115.5,61.5 - parent: 0 - type: Transform -- uid: 22618 - type: SmallLight - components: - - pos: 133.5,60.5 - parent: 0 - type: Transform -- uid: 22619 - type: SmallLight - components: - - rot: 1.5707963267948966 rad - pos: 135.5,55.5 - parent: 0 - type: Transform -- uid: 22620 - type: SmallLight - components: - - rot: 1.5707963267948966 rad - pos: 136.5,41.5 - parent: 0 - type: Transform -- uid: 22621 - type: SmallLight - components: - - rot: 1.5707963267948966 rad - pos: 131.5,8.5 - parent: 0 - type: Transform -- uid: 22622 - type: SmallLight - components: - - rot: 1.5707963267948966 rad - pos: 127.5,-11.5 - parent: 0 - type: Transform -- uid: 22623 - type: SmallLight - components: - - pos: 89.5,-62.5 - parent: 0 - type: Transform -- uid: 22624 - type: ContainmentFieldGenerator - components: - - pos: 104.5,-9.5 - parent: 0 - type: Transform -- uid: 22625 - type: GasPipeStraight - components: - - pos: 67.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22626 - type: GasPipeStraight - components: - - pos: 67.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22627 - type: GasPipeStraight - components: - - pos: 67.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22628 - type: GasPipeStraight - components: - - pos: 67.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22629 - type: GasPipeStraight - components: - - pos: 67.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22630 - type: GasPipeStraight - components: - - pos: 67.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22631 - type: GasPipeStraight - components: - - pos: 67.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22632 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 79.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22633 - type: GasPipeStraight - components: - - pos: 67.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22634 - type: GasPipeStraight - components: - - pos: 67.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22635 - type: GasPipeStraight - components: - - pos: 67.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22636 - type: GasPipeStraight - components: - - pos: 67.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22637 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22638 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22639 - type: GasPipeStraight - components: - - pos: 67.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22640 - type: GasPipeStraight - components: - - pos: 67.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22641 - type: GasPipeStraight - components: - - pos: 69.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22642 - type: GasPipeStraight - components: - - pos: 69.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22643 - type: GasPipeStraight - components: - - pos: 69.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22644 - type: GasPipeStraight - components: - - pos: 69.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22645 - type: GasPipeStraight - components: - - pos: 69.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22646 - type: GasPipeStraight - components: - - pos: 69.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22647 - type: GasPipeStraight - components: - - pos: 69.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22648 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 80.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22649 - type: GasPipeStraight - components: - - pos: 69.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22650 - type: GasPipeStraight - components: - - pos: 69.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22651 - type: GasPipeStraight - components: - - pos: 69.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22652 - type: GasPipeStraight - components: - - pos: 69.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22653 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22654 - type: GasPipeStraight - components: - - pos: 69.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22655 - type: GasPipeStraight - components: - - pos: 69.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22656 - type: GasPipeStraight - components: - - pos: 69.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22657 - type: GasPipeStraight - components: - - pos: 69.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22658 - type: GasPipeStraight - components: - - pos: 69.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22659 - type: GasPipeTJunction - components: - - pos: 69.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22660 - type: GasPipeTJunction - components: - - pos: 67.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22661 - type: GasPipeTJunction - components: - - pos: 68.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22662 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22663 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22664 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 65.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22665 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22666 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 65.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22667 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 66.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22668 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22669 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 68.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22670 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22671 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22672 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22673 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22674 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22675 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22676 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22677 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22678 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22679 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22680 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22681 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22682 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22683 - type: GasVentPump - components: - - pos: 59.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22684 - type: GasVentScrubber - components: - - pos: 61.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22685 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 59.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22686 - type: GasVentScrubber - components: - - pos: 60.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22687 - type: SubstationBasic - components: - - name: West Engi Sub - type: MetaData - - pos: 68.5,-0.5 - parent: 0 - type: Transform -- uid: 22688 - type: CableHV - components: - - pos: 60.5,-10.5 - parent: 0 - type: Transform -- uid: 22689 - type: CableHV - components: - - pos: 61.5,-10.5 - parent: 0 - type: Transform -- uid: 22690 - type: CableHV - components: - - pos: 62.5,-10.5 - parent: 0 - type: Transform -- uid: 22691 - type: CableHV - components: - - pos: 63.5,-10.5 - parent: 0 - type: Transform -- uid: 22692 - type: CableHV - components: - - pos: 64.5,-10.5 - parent: 0 - type: Transform -- uid: 22693 - type: CableHV - components: - - pos: 65.5,-10.5 - parent: 0 - type: Transform -- uid: 22694 - type: CableHV - components: - - pos: 66.5,-10.5 - parent: 0 - type: Transform -- uid: 22695 - type: CableHV - components: - - pos: 67.5,-10.5 - parent: 0 - type: Transform -- uid: 22696 - type: CableHV - components: - - pos: 67.5,-9.5 - parent: 0 - type: Transform -- uid: 22697 - type: CableHV - components: - - pos: 67.5,-8.5 - parent: 0 - type: Transform -- uid: 22698 - type: CableHV - components: - - pos: 67.5,-7.5 - parent: 0 - type: Transform -- uid: 22699 - type: CableHV - components: - - pos: 67.5,-6.5 - parent: 0 - type: Transform -- uid: 22700 - type: CableHV - components: - - pos: 67.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22701 - type: CableHV - components: - - pos: 66.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22702 - type: CableHV - components: - - pos: 65.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22703 - type: CableHV - components: - - pos: 64.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22704 - type: CableHV - components: - - pos: 64.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22705 - type: CableHV - components: - - pos: 64.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22706 - type: CableHV - components: - - pos: 64.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22707 - type: CableHV - components: - - pos: 64.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22708 - type: CableHV - components: - - pos: 64.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22709 - type: CableHV - components: - - pos: 65.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22710 - type: CableHV - components: - - pos: 66.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22711 - type: CableHV - components: - - pos: 67.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22712 - type: CableHV - components: - - pos: 68.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22713 - type: SMESBasic - components: - - pos: 87.5,-0.5 - parent: 0 - type: Transform -- uid: 22714 - type: CableHV - components: - - pos: 88.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22715 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 88.5,2.5 - parent: 0 - type: Transform -- uid: 22716 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 88.5,2.5 - parent: 0 - type: Transform -- uid: 22717 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 88.5,0.5 - parent: 0 - type: Transform -- uid: 22718 - type: Grille - components: - - pos: 88.5,1.5 - parent: 0 - type: Transform -- uid: 22719 - type: Grille - components: - - pos: 88.5,0.5 - parent: 0 - type: Transform -- uid: 22720 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 88.5,-0.5 - parent: 0 - type: Transform -- uid: 22721 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 88.5,-0.5 - parent: 0 - type: Transform -- uid: 22722 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 88.5,2.5 - parent: 0 - type: Transform -- uid: 22723 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 88.5,-0.5 - parent: 0 - type: Transform -- uid: 22724 - type: CableHV - components: - - pos: 88.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22725 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 88.5,0.5 - parent: 0 - type: Transform -- uid: 22726 - type: Grille - components: - - pos: 88.5,2.5 - parent: 0 - type: Transform -- uid: 22727 - type: SMESBasic - components: - - pos: 87.5,2.5 - parent: 0 - type: Transform -- uid: 22728 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 88.5,-0.5 - parent: 0 - type: Transform -- uid: 22729 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 88.5,1.5 - parent: 0 - type: Transform -- uid: 22730 - type: CableHV - components: - - pos: 89.5,0.5 - parent: 0 - type: Transform -- uid: 22731 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 88.5,1.5 - parent: 0 - type: Transform -- uid: 22732 - type: CableHV - components: - - pos: 84.5,0.5 - parent: 0 - type: Transform -- uid: 22733 - type: CableHV - components: - - pos: 83.5,0.5 - parent: 0 - type: Transform -- uid: 22734 - type: WallReinforced - components: - - pos: 88.5,-1.5 - parent: 0 - type: Transform -- uid: 22735 - type: SMESBasic - components: - - pos: 87.5,1.5 - parent: 0 - type: Transform -- uid: 22736 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 88.5,2.5 - parent: 0 - type: Transform -- uid: 22737 - type: CableHV - components: - - pos: 82.5,0.5 - parent: 0 - type: Transform -- uid: 22738 - type: CableHV - components: - - pos: 81.5,0.5 - parent: 0 - type: Transform -- uid: 22739 - type: WallSolid - components: - - pos: 76.5,11.5 - parent: 0 - type: Transform -- uid: 22740 - type: FirelockGlass - components: - - pos: 88.5,-6.5 - parent: 0 - type: Transform -- uid: 22741 - type: FirelockGlass - components: - - pos: 88.5,-4.5 - parent: 0 - type: Transform -- uid: 22742 - type: WallSolid - components: - - pos: 77.5,11.5 - parent: 0 - type: Transform -- uid: 22743 - type: WallSolid - components: - - pos: 78.5,11.5 - parent: 0 - type: Transform -- uid: 22744 - type: WallSolid - components: - - pos: 79.5,11.5 - parent: 0 - type: Transform -- uid: 22745 - type: WallSolid - components: - - pos: 80.5,11.5 - parent: 0 - type: Transform -- uid: 22746 - type: WallSolid - components: - - pos: 81.5,11.5 - parent: 0 - type: Transform -- uid: 22747 - type: CableHV - components: - - pos: 82.5,12.5 - parent: 0 - type: Transform -- uid: 22748 - type: WallSolid - components: - - pos: 83.5,11.5 - parent: 0 - type: Transform -- uid: 22749 - type: WallSolid - components: - - pos: 84.5,11.5 - parent: 0 - type: Transform -- uid: 22750 - type: WallSolid - components: - - pos: 85.5,11.5 - parent: 0 - type: Transform -- uid: 22751 - type: WallSolid - components: - - pos: 86.5,11.5 - parent: 0 - type: Transform -- uid: 22752 - type: WallSolid - components: - - pos: 87.5,11.5 - parent: 0 - type: Transform -- uid: 22753 - type: WallSolid - components: - - pos: 88.5,11.5 - parent: 0 - type: Transform -- uid: 22754 - type: WallSolid - components: - - pos: 89.5,24.5 - parent: 0 - type: Transform -- uid: 22755 - type: WallSolid - components: - - pos: 89.5,17.5 - parent: 0 - type: Transform -- uid: 22756 - type: WallSolid - components: - - pos: 94.5,17.5 - parent: 0 - type: Transform -- uid: 22757 - type: WallSolid - components: - - pos: 95.5,17.5 - parent: 0 - type: Transform -- uid: 22758 - type: WallSolid - components: - - pos: 95.5,18.5 - parent: 0 - type: Transform -- uid: 22759 - type: WallSolid - components: - - pos: 95.5,21.5 - parent: 0 - type: Transform -- uid: 22760 - type: WallSolid - components: - - pos: 95.5,22.5 - parent: 0 - type: Transform -- uid: 22761 - type: WallSolid - components: - - pos: 95.5,23.5 - parent: 0 - type: Transform -- uid: 22762 - type: WallSolid - components: - - pos: 95.5,24.5 - parent: 0 - type: Transform -- uid: 22763 - type: WallSolid - components: - - pos: 94.5,24.5 - parent: 0 - type: Transform -- uid: 22764 - type: WallSolid - components: - - pos: 93.5,24.5 - parent: 0 - type: Transform -- uid: 22765 - type: WallSolid - components: - - pos: 92.5,24.5 - parent: 0 - type: Transform -- uid: 22766 - type: WallSolid - components: - - pos: 91.5,24.5 - parent: 0 - type: Transform -- uid: 22767 - type: WallReinforced - components: - - pos: 83.5,4.5 - parent: 0 - type: Transform -- uid: 22768 - type: WallReinforced - components: - - pos: 82.5,4.5 - parent: 0 - type: Transform -- uid: 22769 - type: WallReinforced - components: - - pos: 82.5,5.5 - parent: 0 - type: Transform -- uid: 22770 - type: WallReinforced - components: - - pos: 82.5,6.5 - parent: 0 - type: Transform -- uid: 22771 - type: WallReinforced - components: - - pos: 82.5,7.5 - parent: 0 - type: Transform -- uid: 22772 - type: WallReinforced - components: - - pos: 82.5,8.5 - parent: 0 - type: Transform -- uid: 22773 - type: ReinforcedWindow - components: - - pos: 89.5,-13.5 - parent: 0 - type: Transform -- uid: 22774 - type: ReinforcedWindow - components: - - pos: 89.5,-17.5 - parent: 0 - type: Transform -- uid: 22775 - type: CableHV - components: - - pos: 90.5,-0.5 - parent: 0 - type: Transform -- uid: 22776 - type: CableHV - components: - - pos: 90.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22777 - type: CableHV - components: - - pos: 90.5,1.5 - parent: 0 - type: Transform -- uid: 22778 - type: CableHV - components: - - pos: 90.5,2.5 - parent: 0 - type: Transform -- uid: 22779 - type: WallReinforced - components: - - pos: 82.5,9.5 - parent: 0 - type: Transform -- uid: 22780 - type: WallReinforced - components: - - pos: 83.5,9.5 - parent: 0 - type: Transform -- uid: 22781 - type: WallReinforced - components: - - pos: 84.5,9.5 - parent: 0 - type: Transform -- uid: 22782 - type: WallReinforced - components: - - pos: 85.5,9.5 - parent: 0 - type: Transform -- uid: 22783 - type: WallReinforced - components: - - pos: 86.5,9.5 - parent: 0 - type: Transform -- uid: 22784 - type: WallReinforced - components: - - pos: 87.5,9.5 - parent: 0 - type: Transform -- uid: 22785 - type: WallReinforced - components: - - pos: 88.5,9.5 - parent: 0 - type: Transform -- uid: 22786 - type: WallReinforced - components: - - pos: 89.5,9.5 - parent: 0 - type: Transform -- uid: 22787 - type: WallReinforced - components: - - pos: 90.5,9.5 - parent: 0 - type: Transform -- uid: 22788 - type: WallReinforced - components: - - pos: 91.5,9.5 - parent: 0 - type: Transform -- uid: 22789 - type: WallReinforced - components: - - pos: 92.5,9.5 - parent: 0 - type: Transform -- uid: 22790 - type: WallReinforced - components: - - pos: 92.5,8.5 - parent: 0 - type: Transform -- uid: 22791 - type: WallReinforced - components: - - pos: 92.5,7.5 - parent: 0 - type: Transform -- uid: 22792 - type: WallReinforced - components: - - pos: 92.5,6.5 - parent: 0 - type: Transform -- uid: 22793 - type: WallReinforced - components: - - pos: 92.5,5.5 - parent: 0 - type: Transform -- uid: 22794 - type: WallReinforced - components: - - pos: 92.5,4.5 - parent: 0 - type: Transform -- uid: 22795 - type: ReinforcedWindow - components: - - pos: 89.5,4.5 - parent: 0 - type: Transform -- uid: 22796 - type: ReinforcedWindow - components: - - pos: 91.5,4.5 - parent: 0 - type: Transform -- uid: 22797 - type: WallReinforced - components: - - pos: 98.5,-1.5 - parent: 0 - type: Transform -- uid: 22798 - type: WallReinforced - components: - - pos: 97.5,-9.5 - parent: 0 - type: Transform -- uid: 22799 - type: WallReinforced - components: - - pos: 96.5,-9.5 - parent: 0 - type: Transform -- uid: 22800 - type: WallReinforced - components: - - pos: 97.5,-1.5 - parent: 0 - type: Transform -- uid: 22801 - type: ContainmentFieldGenerator - components: - - pos: 112.5,-1.5 - parent: 0 - type: Transform -- uid: 22802 - type: ParticleAcceleratorFuelChamberUnfinished - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 22803 - type: ParticleAcceleratorPowerBoxUnfinished - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 22804 - type: ParticleAcceleratorEmitterLeftUnfinished - components: - - pos: 96.5,-8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 22805 - type: ParticleAcceleratorEmitterCenterUnfinished - components: - - rot: 3.141592653589793 rad - pos: 95.5,-8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 22806 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 92.5,-6.5 - parent: 0 - type: Transform -- uid: 22807 - type: ParticleAcceleratorEmitterRightUnfinished - components: - - pos: 97.5,-8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 22808 - type: ParticleAcceleratorEndCapUnfinished - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 22809 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 92.5,-5.5 - parent: 0 - type: Transform -- uid: 22810 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 92.5,-4.5 - parent: 0 - type: Transform -- uid: 22811 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 92.5,-3.5 - parent: 0 - type: Transform -- uid: 22812 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 92.5,-7.5 - parent: 0 - type: Transform -- uid: 22813 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 92.5,-8.5 - parent: 0 - type: Transform -- uid: 22814 - type: CableHV - components: - - pos: 90.5,3.5 - parent: 0 - type: Transform -- uid: 22815 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 92.5,-2.5 - parent: 0 - type: Transform -- uid: 22816 - type: WallReinforced - components: - - pos: 107.5,-18.5 - parent: 0 - type: Transform -- uid: 22817 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 99.5,-8.5 - parent: 0 - type: Transform -- uid: 22818 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 99.5,-2.5 - parent: 0 - type: Transform -- uid: 22819 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 99.5,-7.5 - parent: 0 - type: Transform -- uid: 22820 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 99.5,-6.5 - parent: 0 - type: Transform -- uid: 22821 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 99.5,-5.5 - parent: 0 - type: Transform -- uid: 22822 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 99.5,-4.5 - parent: 0 - type: Transform -- uid: 22823 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 99.5,-3.5 - parent: 0 - type: Transform -- uid: 22824 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 99.5,-9.5 - parent: 0 - type: Transform -- uid: 22825 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 99.5,-10.5 - parent: 0 - type: Transform -- uid: 22826 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 99.5,-1.5 - parent: 0 - type: Transform -- uid: 22827 - type: CableHV - components: - - pos: 97.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22828 - type: ReinforcedWindow - components: - - pos: 122.5,10.5 - parent: 0 - type: Transform -- uid: 22829 - type: WallReinforced - components: - - pos: 92.5,-9.5 - parent: 0 - type: Transform -- uid: 22830 - type: WallReinforced - components: - - pos: 98.5,-9.5 - parent: 0 - type: Transform -- uid: 22831 - type: ReinforcedPlasmaWindow - components: - - pos: 95.5,-1.5 - parent: 0 - type: Transform -- uid: 22832 - type: ReinforcedPlasmaWindow - components: - - pos: 93.5,-9.5 - parent: 0 - type: Transform -- uid: 22833 - type: WallReinforced - components: - - pos: 92.5,-1.5 - parent: 0 - type: Transform -- uid: 22834 - type: WallReinforced - components: - - pos: 96.5,-1.5 - parent: 0 - type: Transform -- uid: 22835 - type: ReinforcedPlasmaWindow - components: - - pos: 95.5,-9.5 - parent: 0 - type: Transform -- uid: 22836 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 91.5,-13.5 - parent: 0 - type: Transform -- uid: 22837 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-13.5 - parent: 0 - type: Transform -- uid: 22838 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-13.5 - parent: 0 - type: Transform -- uid: 22839 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-16.5 - parent: 0 - type: Transform -- uid: 22840 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-17.5 - parent: 0 - type: Transform -- uid: 22841 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-15.5 - parent: 0 - type: Transform -- uid: 22842 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-14.5 - parent: 0 - type: Transform -- uid: 22843 - type: CableHV - components: - - pos: 90.5,4.5 - parent: 0 - type: Transform -- uid: 22844 - type: CableHV - components: - - pos: 90.5,5.5 - parent: 0 - type: Transform -- uid: 22845 - type: CableHV - components: - - pos: 90.5,6.5 - parent: 0 - type: Transform -- uid: 22846 - type: CableHV - components: - - pos: 90.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22847 - type: CableHV - components: - - pos: 89.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22848 - type: CableHV - components: - - pos: 88.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22849 - type: CableHV - components: - - pos: 87.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22850 - type: CableHV - components: - - pos: 86.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22851 - type: CableHV - components: - - pos: 85.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22852 - type: CableHV - components: - - pos: 84.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22853 - type: Catwalk - components: - - pos: 84.5,7.5 - parent: 0 - type: Transform -- uid: 22854 - type: Catwalk - components: - - pos: 85.5,7.5 - parent: 0 - type: Transform -- uid: 22855 - type: Catwalk - components: - - pos: 86.5,7.5 - parent: 0 - type: Transform -- uid: 22856 - type: Catwalk - components: - - pos: 87.5,7.5 - parent: 0 - type: Transform -- uid: 22857 - type: Catwalk - components: - - pos: 88.5,7.5 - parent: 0 - type: Transform -- uid: 22858 - type: Catwalk - components: - - pos: 89.5,7.5 - parent: 0 - type: Transform -- uid: 22859 - type: Catwalk - components: - - pos: 90.5,7.5 - parent: 0 - type: Transform -- uid: 22860 - type: CableHV - components: - - pos: 64.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22861 - type: CableHV - components: - - pos: 64.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22862 - type: CableHV - components: - - pos: 64.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22863 - type: CableHV - components: - - pos: 65.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22864 - type: CableHV - components: - - pos: 66.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22865 - type: CableHV - components: - - pos: 67.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22866 - type: CableHV - components: - - pos: 68.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22867 - type: CableHV - components: - - pos: 68.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22868 - type: CableHV - components: - - pos: 69.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22869 - type: CableHV - components: - - pos: 70.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22870 - type: CableHV - components: - - pos: 71.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22871 - type: CableHV - components: - - pos: 72.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22872 - type: CableHV - components: - - pos: 73.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22873 - type: CableHV - components: - - pos: 74.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22874 - type: CableHV - components: - - pos: 75.5,3.5 - parent: 0 - type: Transform -- uid: 22875 - type: CableHV - components: - - pos: 75.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22876 - type: CableHV - components: - - pos: 76.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22877 - type: CableHV - components: - - pos: 77.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22878 - type: CableHV - components: - - pos: 83.5,2.5 - parent: 0 - type: Transform -- uid: 22879 - type: CableHV - components: - - pos: 83.5,1.5 - parent: 0 - type: Transform -- uid: 22880 - type: CableHV - components: - - pos: 83.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22881 - type: CableHV - components: - - pos: 82.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22882 - type: CableHV - components: - - pos: 81.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22883 - type: CableHV - components: - - pos: 81.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22884 - type: CableHV - components: - - pos: 80.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22885 - type: CableHV - components: - - pos: 79.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22886 - type: CableHV - components: - - pos: 78.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22887 - type: CableHV - components: - - pos: 64.5,3.5 - parent: 0 - type: Transform -- uid: 22888 - type: CableHV - components: - - pos: 64.5,4.5 - parent: 0 - type: Transform -- uid: 22889 - type: CableHV - components: - - pos: 64.5,5.5 - parent: 0 - type: Transform -- uid: 22890 - type: CableHV - components: - - pos: 64.5,6.5 - parent: 0 - type: Transform -- uid: 22891 - type: CableHV - components: - - pos: 64.5,7.5 - parent: 0 - type: Transform -- uid: 22892 - type: CableHV - components: - - pos: 64.5,8.5 - parent: 0 - type: Transform -- uid: 22893 - type: CableHV - components: - - pos: 64.5,9.5 - parent: 0 - type: Transform -- uid: 22894 - type: CableHV - components: - - pos: 64.5,10.5 - parent: 0 - type: Transform -- uid: 22895 - type: CableHV - components: - - pos: 63.5,10.5 - parent: 0 - type: Transform -- uid: 22896 - type: CableHV - components: - - pos: 62.5,10.5 - parent: 0 - type: Transform -- uid: 22897 - type: CableHV - components: - - pos: 61.5,10.5 - parent: 0 - type: Transform -- uid: 22898 - type: CableHV - components: - - pos: 60.5,10.5 - parent: 0 - type: Transform -- uid: 22899 - type: CableHV - components: - - pos: 59.5,10.5 - parent: 0 - type: Transform -- uid: 22900 - type: CableHV - components: - - pos: 58.5,10.5 - parent: 0 - type: Transform -- uid: 22901 - type: CableHV - components: - - pos: 57.5,10.5 - parent: 0 - type: Transform -- uid: 22902 - type: CableHV - components: - - pos: 56.5,10.5 - parent: 0 - type: Transform -- uid: 22903 - type: CableHV - components: - - pos: 55.5,10.5 - parent: 0 - type: Transform -- uid: 22904 - type: CableApcExtension - components: - - pos: 109.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22905 - type: WallReinforced - components: - - pos: 115.5,-16.5 - parent: 0 - type: Transform -- uid: 22906 - type: ContainmentFieldGenerator - components: - - pos: 112.5,-9.5 - parent: 0 - type: Transform -- uid: 22907 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: 101.5,-9.5 - parent: 0 - type: Transform -- uid: 22908 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: 101.5,-1.5 - parent: 0 - type: Transform -- uid: 22909 - type: Emitter - components: - - rot: -1.5707963267948966 rad - pos: 115.5,-1.5 - parent: 0 - type: Transform -- uid: 22910 - type: Emitter - components: - - rot: -1.5707963267948966 rad - pos: 115.5,-9.5 - parent: 0 - type: Transform -- uid: 22911 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: 112.5,-12.5 - parent: 0 - type: Transform -- uid: 22912 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: 104.5,-12.5 - parent: 0 - type: Transform -- uid: 22913 - type: CableMV - components: - - pos: 101.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22914 - type: Emitter - components: - - pos: 104.5,1.5 - parent: 0 - type: Transform -- uid: 22915 - type: Emitter - components: - - pos: 112.5,1.5 - parent: 0 - type: Transform -- uid: 22916 - type: CableMV - components: - - pos: 101.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22917 - type: CableMV - components: - - pos: 101.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22918 - type: CableMV - components: - - pos: 102.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22919 - type: RPED - components: - - pos: 54.50489,-14.41416 - parent: 0 - type: Transform -- uid: 22920 - type: CableMV - components: - - pos: 103.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22921 - type: CableMV - components: - - pos: 103.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22922 - type: CableMV - components: - - pos: 104.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22923 - type: CableMV - components: - - pos: 112.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22924 - type: CableMV - components: - - pos: 113.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22925 - type: CableMV - components: - - pos: 113.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22926 - type: PlushieAtmosian - components: - - pos: 102.5073,-33.430233 - parent: 0 - type: Transform -- uid: 22927 - type: CableMV - components: - - pos: 114.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22928 - type: CableMV - components: - - pos: 115.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22929 - type: CableMV - components: - - pos: 115.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22930 - type: CableMV - components: - - pos: 101.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22931 - type: CableMV - components: - - pos: 102.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22932 - type: HospitalCurtainsOpen - components: - - pos: 51.5,29.5 - parent: 0 - type: Transform -- uid: 22933 - type: CableMV - components: - - pos: 103.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22934 - type: CableMV - components: - - pos: 103.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22935 - type: CableMV - components: - - pos: 104.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22936 - type: CableMV - components: - - pos: 104.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22937 - type: CableMV - components: - - pos: 112.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22938 - type: CableMV - components: - - pos: 113.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22939 - type: CableMV - components: - - pos: 113.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22940 - type: HospitalCurtainsOpen - components: - - pos: 50.5,29.5 - parent: 0 - type: Transform -- uid: 22941 - type: CableMV - components: - - pos: 114.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22942 - type: CableMV - components: - - pos: 115.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22943 - type: CableMV - components: - - pos: 115.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22944 - type: CableMV - components: - - pos: 100.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22945 - type: CableMV - components: - - pos: 100.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22946 - type: CableMV - components: - - pos: 100.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22947 - type: CableMV - components: - - pos: 100.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22948 - type: CableMV - components: - - pos: 100.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22949 - type: CableMV - components: - - pos: 100.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22950 - type: CableMV - components: - - pos: 100.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22951 - type: CableMV - components: - - pos: 100.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22952 - type: CableMV - components: - - pos: 100.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22953 - type: CableMV - components: - - pos: 105.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22954 - type: CableMV - components: - - pos: 106.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22955 - type: CableMV - components: - - pos: 107.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22956 - type: CableMV - components: - - pos: 108.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22957 - type: CableMV - components: - - pos: 109.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22958 - type: CableMV - components: - - pos: 110.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22959 - type: CableMV - components: - - pos: 111.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22960 - type: CableMV - components: - - pos: 112.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22961 - type: ReinforcedWindow - components: - - pos: 117.5,-7.5 - parent: 0 - type: Transform -- uid: 22962 - type: CableMV - components: - - pos: 116.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22963 - type: CableMV - components: - - pos: 116.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22964 - type: CableMV - components: - - pos: 116.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22965 - type: CableMV - components: - - pos: 116.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22966 - type: CableMV - components: - - pos: 116.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22967 - type: CableMV - components: - - pos: 116.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22968 - type: CableMV - components: - - pos: 116.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22969 - type: CableMV - components: - - pos: 116.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22970 - type: CableMV - components: - - pos: 116.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22971 - type: CableMV - components: - - pos: 112.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22972 - type: CableMV - components: - - pos: 111.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22973 - type: CableMV - components: - - pos: 110.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22974 - type: CableMV - components: - - pos: 109.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22975 - type: CableMV - components: - - pos: 108.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22976 - type: CableMV - components: - - pos: 107.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22977 - type: CableMV - components: - - pos: 106.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22978 - type: CableMV - components: - - pos: 105.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22979 - type: CableMV - components: - - pos: 104.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22980 - type: ReinforcedWindow - components: - - pos: 106.5,-14.5 - parent: 0 - type: Transform -- uid: 22981 - type: ReinforcedWindow - components: - - pos: 107.5,-14.5 - parent: 0 - type: Transform -- uid: 22982 - type: ReinforcedWindow - components: - - pos: 108.5,-14.5 - parent: 0 - type: Transform -- uid: 22983 - type: ReinforcedWindow - components: - - pos: 109.5,-14.5 - parent: 0 - type: Transform -- uid: 22984 - type: ReinforcedWindow - components: - - pos: 110.5,-14.5 - parent: 0 - type: Transform -- uid: 22985 - type: ReinforcedWindow - components: - - pos: 110.5,3.5 - parent: 0 - type: Transform -- uid: 22986 - type: ReinforcedWindow - components: - - pos: 109.5,3.5 - parent: 0 - type: Transform -- uid: 22987 - type: ReinforcedWindow - components: - - pos: 108.5,3.5 - parent: 0 - type: Transform -- uid: 22988 - type: ReinforcedWindow - components: - - pos: 107.5,3.5 - parent: 0 - type: Transform -- uid: 22989 - type: ReinforcedWindow - components: - - pos: 106.5,3.5 - parent: 0 - type: Transform -- uid: 22990 - type: ReinforcedWindow - components: - - pos: 117.5,-6.5 - parent: 0 - type: Transform -- uid: 22991 - type: ReinforcedWindow - components: - - pos: 117.5,-5.5 - parent: 0 - type: Transform -- uid: 22992 - type: ReinforcedWindow - components: - - pos: 117.5,-4.5 - parent: 0 - type: Transform -- uid: 22993 - type: ReinforcedWindow - components: - - pos: 117.5,-3.5 - parent: 0 - type: Transform -- uid: 22994 - type: RadiationCollector - components: - - pos: 116.5,-6.5 - parent: 0 - type: Transform -- uid: 22995 - type: WallReinforced - components: - - pos: 117.5,-2.5 - parent: 0 - type: Transform -- uid: 22996 - type: WallReinforced - components: - - pos: 117.5,-1.5 - parent: 0 - type: Transform -- uid: 22997 - type: WallReinforced - components: - - pos: 117.5,-0.5 - parent: 0 - type: Transform -- uid: 22998 - type: WallReinforced - components: - - pos: 117.5,0.5 - parent: 0 - type: Transform -- uid: 22999 - type: WallReinforced - components: - - pos: 117.5,1.5 - parent: 0 - type: Transform -- uid: 23000 - type: WallReinforced - components: - - pos: 117.5,2.5 - parent: 0 - type: Transform -- uid: 23001 - type: WallReinforced - components: - - pos: 117.5,3.5 - parent: 0 - type: Transform -- uid: 23002 - type: WallReinforced - components: - - pos: 116.5,3.5 - parent: 0 - type: Transform -- uid: 23003 - type: WallReinforced - components: - - pos: 115.5,3.5 - parent: 0 - type: Transform -- uid: 23004 - type: WallReinforced - components: - - pos: 114.5,3.5 - parent: 0 - type: Transform -- uid: 23005 - type: WallReinforced - components: - - pos: 113.5,3.5 - parent: 0 - type: Transform -- uid: 23006 - type: WallReinforced - components: - - pos: 112.5,3.5 - parent: 0 - type: Transform -- uid: 23007 - type: WallReinforced - components: - - pos: 111.5,3.5 - parent: 0 - type: Transform -- uid: 23008 - type: WallReinforced - components: - - pos: 105.5,3.5 - parent: 0 - type: Transform -- uid: 23009 - type: WallReinforced - components: - - pos: 104.5,3.5 - parent: 0 - type: Transform -- uid: 23010 - type: WallReinforced - components: - - pos: 103.5,3.5 - parent: 0 - type: Transform -- uid: 23011 - type: WallReinforced - components: - - pos: 102.5,3.5 - parent: 0 - type: Transform -- uid: 23012 - type: WallReinforced - components: - - pos: 101.5,3.5 - parent: 0 - type: Transform -- uid: 23013 - type: WallReinforced - components: - - pos: 100.5,3.5 - parent: 0 - type: Transform -- uid: 23014 - type: WallReinforced - components: - - pos: 99.5,3.5 - parent: 0 - type: Transform -- uid: 23015 - type: WallReinforced - components: - - pos: 99.5,2.5 - parent: 0 - type: Transform -- uid: 23016 - type: CableHV - components: - - pos: 96.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23017 - type: WallReinforced - components: - - pos: 99.5,-11.5 - parent: 0 - type: Transform -- uid: 23018 - type: WallReinforced - components: - - pos: 99.5,-12.5 - parent: 0 - type: Transform -- uid: 23019 - type: WallReinforced - components: - - pos: 99.5,-13.5 - parent: 0 - type: Transform -- uid: 23020 - type: WallReinforced - components: - - pos: 99.5,-14.5 - parent: 0 - type: Transform -- uid: 23021 - type: WallReinforced - components: - - pos: 100.5,-14.5 - parent: 0 - type: Transform -- uid: 23022 - type: WallReinforced - components: - - pos: 101.5,-14.5 - parent: 0 - type: Transform -- uid: 23023 - type: WallReinforced - components: - - pos: 102.5,-14.5 - parent: 0 - type: Transform -- uid: 23024 - type: WallReinforced - components: - - pos: 103.5,-14.5 - parent: 0 - type: Transform -- uid: 23025 - type: WallReinforced - components: - - pos: 104.5,-14.5 - parent: 0 - type: Transform -- uid: 23026 - type: WallReinforced - components: - - pos: 105.5,-14.5 - parent: 0 - type: Transform -- uid: 23027 - type: WallReinforced - components: - - pos: 111.5,-14.5 - parent: 0 - type: Transform -- uid: 23028 - type: WallReinforced - components: - - pos: 112.5,-14.5 - parent: 0 - type: Transform -- uid: 23029 - type: AirlockExternalEngineeringLocked - components: - - pos: 113.5,-14.5 - parent: 0 - type: Transform -- uid: 23030 - type: WallReinforced - components: - - pos: 114.5,-14.5 - parent: 0 - type: Transform -- uid: 23031 - type: WallReinforced - components: - - pos: 115.5,-14.5 - parent: 0 - type: Transform -- uid: 23032 - type: WallReinforced - components: - - pos: 116.5,-14.5 - parent: 0 - type: Transform -- uid: 23033 - type: WallReinforced - components: - - pos: 117.5,-14.5 - parent: 0 - type: Transform -- uid: 23034 - type: WallReinforced - components: - - pos: 117.5,-13.5 - parent: 0 - type: Transform -- uid: 23035 - type: WallReinforced - components: - - pos: 117.5,-12.5 - parent: 0 - type: Transform -- uid: 23036 - type: WallReinforced - components: - - pos: 117.5,-11.5 - parent: 0 - type: Transform -- uid: 23037 - type: WallReinforced - components: - - pos: 117.5,-10.5 - parent: 0 - type: Transform -- uid: 23038 - type: WallReinforced - components: - - pos: 117.5,-9.5 - parent: 0 - type: Transform -- uid: 23039 - type: WallReinforced - components: - - pos: 117.5,-8.5 - parent: 0 - type: Transform -- uid: 23040 - type: CableHV - components: - - pos: 106.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23041 - type: RadiationCollector - components: - - pos: 116.5,-4.5 - parent: 0 - type: Transform -- uid: 23042 - type: RadiationCollector - components: - - pos: 116.5,-5.5 - parent: 0 - type: Transform -- uid: 23043 - type: RadiationCollector - components: - - pos: 107.5,2.5 - parent: 0 - type: Transform -- uid: 23044 - type: RadiationCollector - components: - - pos: 108.5,2.5 - parent: 0 - type: Transform -- uid: 23045 - type: RadiationCollector - components: - - pos: 109.5,2.5 - parent: 0 - type: Transform -- uid: 23046 - type: WallSolid - components: - - pos: 122.5,-8.5 - parent: 0 - type: Transform -- uid: 23047 - type: WallSolid - components: - - pos: 122.5,-6.5 - parent: 0 - type: Transform -- uid: 23048 - type: WallSolid - components: - - pos: 120.5,-6.5 - parent: 0 - type: Transform -- uid: 23049 - type: WallSolid - components: - - pos: 120.5,-5.5 - parent: 0 - type: Transform -- uid: 23050 - type: WallSolid - components: - - pos: 120.5,-4.5 - parent: 0 - type: Transform -- uid: 23051 - type: WallSolid - components: - - pos: 121.5,-4.5 - parent: 0 - type: Transform -- uid: 23052 - type: WallSolid - components: - - pos: 121.5,-3.5 - parent: 0 - type: Transform -- uid: 23053 - type: WallSolid - components: - - pos: 121.5,-1.5 - parent: 0 - type: Transform -- uid: 23054 - type: WallSolid - components: - - pos: 121.5,-0.5 - parent: 0 - type: Transform -- uid: 23055 - type: WallSolid - components: - - pos: 122.5,-0.5 - parent: 0 - type: Transform -- uid: 23056 - type: WallSolid - components: - - pos: 120.5,-0.5 - parent: 0 - type: Transform -- uid: 23057 - type: WallSolid - components: - - pos: 126.5,-0.5 - parent: 0 - type: Transform -- uid: 23058 - type: ReinforcedWindow - components: - - pos: 122.5,-7.5 - parent: 0 - type: Transform -- uid: 23059 - type: ReinforcedWindow - components: - - pos: 125.5,-0.5 - parent: 0 - type: Transform -- uid: 23060 - type: ReinforcedWindow - components: - - pos: 123.5,-0.5 - parent: 0 - type: Transform -- uid: 23061 - type: ReinforcedWindow - components: - - pos: 121.5,-2.5 - parent: 0 - type: Transform -- uid: 23062 - type: ReinforcedWindow - components: - - pos: 120.5,0.5 - parent: 0 - type: Transform -- uid: 23063 - type: ReinforcedWindow - components: - - pos: 120.5,2.5 - parent: 0 - type: Transform -- uid: 23064 - type: WallReinforced - components: - - pos: 125.5,4.5 - parent: 0 - type: Transform -- uid: 23065 - type: WallReinforced - components: - - pos: 124.5,4.5 - parent: 0 - type: Transform -- uid: 23066 - type: WallReinforced - components: - - pos: 123.5,4.5 - parent: 0 - type: Transform -- uid: 23067 - type: ReinforcedWindow - components: - - pos: 123.5,5.5 - parent: 0 - type: Transform -- uid: 23068 - type: ReinforcedWindow - components: - - pos: 123.5,7.5 - parent: 0 - type: Transform -- uid: 23069 - type: WallSolid - components: - - pos: 120.5,3.5 - parent: 0 - type: Transform -- uid: 23070 - type: WallSolid - components: - - pos: 120.5,4.5 - parent: 0 - type: Transform -- uid: 23071 - type: WallSolid - components: - - pos: 120.5,5.5 - parent: 0 - type: Transform -- uid: 23072 - type: WallSolid - components: - - pos: 120.5,6.5 - parent: 0 - type: Transform -- uid: 23073 - type: WallSolid - components: - - pos: 120.5,7.5 - parent: 0 - type: Transform -- uid: 23074 - type: WallSolid - components: - - pos: 120.5,8.5 - parent: 0 - type: Transform -- uid: 23075 - type: WallReinforced - components: - - pos: 117.5,9.5 - parent: 0 - type: Transform -- uid: 23076 - type: WallReinforced - components: - - pos: 116.5,9.5 - parent: 0 - type: Transform -- uid: 23077 - type: RadiationCollector - components: - - pos: 109.5,-13.5 - parent: 0 - type: Transform -- uid: 23078 - type: RadiationCollector - components: - - pos: 108.5,-13.5 - parent: 0 - type: Transform -- uid: 23079 - type: RadiationCollector - components: - - pos: 107.5,-13.5 - parent: 0 - type: Transform -- uid: 23080 - type: CableHV - components: - - pos: 107.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23081 - type: CableHV - components: - - pos: 108.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23082 - type: CableHV - components: - - pos: 109.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23083 - type: CableHV - components: - - pos: 116.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23084 - type: CableHV - components: - - pos: 116.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23085 - type: CableHV - components: - - pos: 116.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23086 - type: CableHV - components: - - pos: 107.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23087 - type: CableHV - components: - - pos: 108.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23088 - type: CableHV - components: - - pos: 109.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23089 - type: CableHV - components: - - pos: 110.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23090 - type: CableHV - components: - - pos: 111.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23091 - type: CableHV - components: - - pos: 112.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23092 - type: CableHV - components: - - pos: 113.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23093 - type: CableHV - components: - - pos: 114.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23094 - type: CableHV - components: - - pos: 115.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23095 - type: CableHV - components: - - pos: 116.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23096 - type: CableHV - components: - - pos: 116.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23097 - type: CableHV - components: - - pos: 116.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23098 - type: CableHV - components: - - pos: 116.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23099 - type: CableHV - components: - - pos: 116.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23100 - type: CableHV - components: - - pos: 116.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23101 - type: CableHV - components: - - pos: 116.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23102 - type: CableHV - components: - - pos: 116.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23103 - type: CableHV - components: - - pos: 116.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23104 - type: CableHV - components: - - pos: 116.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23105 - type: CableHV - components: - - pos: 116.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23106 - type: CableHV - components: - - pos: 116.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23107 - type: CableHV - components: - - pos: 116.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23108 - type: CableHV - components: - - pos: 116.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23109 - type: CableHV - components: - - pos: 115.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23110 - type: CableHV - components: - - pos: 114.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23111 - type: CableHV - components: - - pos: 113.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23112 - type: CableHV - components: - - pos: 112.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23113 - type: CableHV - components: - - pos: 111.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23114 - type: CableHV - components: - - pos: 110.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23115 - type: CableHV - components: - - pos: 105.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23116 - type: CableHV - components: - - pos: 104.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23117 - type: CableHV - components: - - pos: 103.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23118 - type: CableHV - components: - - pos: 102.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23119 - type: CableHV - components: - - pos: 101.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23120 - type: CableHV - components: - - pos: 100.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23121 - type: CableHV - components: - - pos: 100.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23122 - type: Catwalk - components: - - pos: 116.5,-12.5 - parent: 0 - type: Transform -- uid: 23123 - type: CableHV - components: - - pos: 100.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23124 - type: ReinforcedWindow - components: - - pos: 122.5,12.5 - parent: 0 - type: Transform -- uid: 23125 - type: AirlockExternalLocked - components: - - pos: 118.5,11.5 - parent: 0 - type: Transform -- uid: 23126 - type: AirlockExternalLocked - components: - - pos: 122.5,11.5 - parent: 0 - type: Transform -- uid: 23127 - type: AirlockExternalLocked - components: - - pos: 123.5,6.5 - parent: 0 - type: Transform -- uid: 23128 - type: AirlockExternalLocked - components: - - pos: 126.5,6.5 - parent: 0 - type: Transform -- uid: 23129 - type: SMESBasic - components: - - pos: 113.5,-26.5 - parent: 0 - type: Transform -- uid: 23130 - type: SubstationBasic - components: - - name: Grav Gen Sub - type: MetaData - - pos: 114.5,-26.5 - parent: 0 - type: Transform -- uid: 23131 - type: CableTerminal - components: - - pos: 113.5,-25.5 - parent: 0 - type: Transform -- uid: 23132 - type: CableHV - components: - - pos: 113.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23133 - type: CableHV - components: - - pos: 114.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23134 - type: CableHV - components: - - pos: 113.5,-25.5 - parent: 0 - type: Transform -- uid: 23135 - type: CableHV - components: - - pos: 113.5,-24.5 - parent: 0 - type: Transform -- uid: 23136 - type: CableHV - components: - - pos: 113.5,-23.5 - parent: 0 - type: Transform -- uid: 23137 - type: CableHV - components: - - pos: 113.5,-22.5 - parent: 0 - type: Transform -- uid: 23138 - type: CableHV - components: - - pos: 112.5,-22.5 - parent: 0 - type: Transform -- uid: 23139 - type: CableHV - components: - - pos: 111.5,-22.5 - parent: 0 - type: Transform -- uid: 23140 - type: CableHV - components: - - pos: 111.5,-21.5 - parent: 0 - type: Transform -- uid: 23141 - type: CableHV - components: - - pos: 111.5,-20.5 - parent: 0 - type: Transform -- uid: 23142 - type: CableHV - components: - - pos: 110.5,-20.5 - parent: 0 - type: Transform -- uid: 23143 - type: CableHV - components: - - pos: 109.5,-20.5 - parent: 0 - type: Transform -- uid: 23144 - type: CableHV - components: - - pos: 108.5,-20.5 - parent: 0 - type: Transform -- uid: 23145 - type: CableHV - components: - - pos: 107.5,-20.5 - parent: 0 - type: Transform -- uid: 23146 - type: CableHV - components: - - pos: 106.5,-20.5 - parent: 0 - type: Transform -- uid: 23147 - type: CableHV - components: - - pos: 105.5,-20.5 - parent: 0 - type: Transform -- uid: 23148 - type: CableHV - components: - - pos: 104.5,-20.5 - parent: 0 - type: Transform -- uid: 23149 - type: CableHV - components: - - pos: 103.5,-20.5 - parent: 0 - type: Transform -- uid: 23150 - type: CableHV - components: - - pos: 102.5,-20.5 - parent: 0 - type: Transform -- uid: 23151 - type: CableHV - components: - - pos: 101.5,-20.5 - parent: 0 - type: Transform -- uid: 23152 - type: CableHV - components: - - pos: 100.5,-20.5 - parent: 0 - type: Transform -- uid: 23153 - type: CableHV - components: - - pos: 99.5,-20.5 - parent: 0 - type: Transform -- uid: 23154 - type: CableHV - components: - - pos: 98.5,-20.5 - parent: 0 - type: Transform -- uid: 23155 - type: CableHV - components: - - pos: 97.5,-20.5 - parent: 0 - type: Transform -- uid: 23156 - type: CableHV - components: - - pos: 96.5,-20.5 - parent: 0 - type: Transform -- uid: 23157 - type: CableHV - components: - - pos: 95.5,-20.5 - parent: 0 - type: Transform -- uid: 23158 - type: CableHV - components: - - pos: 94.5,-20.5 - parent: 0 - type: Transform -- uid: 23159 - type: CableHV - components: - - pos: 93.5,-20.5 - parent: 0 - type: Transform -- uid: 23160 - type: CableHV - components: - - pos: 92.5,-20.5 - parent: 0 - type: Transform -- uid: 23161 - type: CableHV - components: - - pos: 91.5,-20.5 - parent: 0 - type: Transform -- uid: 23162 - type: CableHV - components: - - pos: 90.5,-20.5 - parent: 0 - type: Transform -- uid: 23163 - type: CableHV - components: - - pos: 89.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23164 - type: CableHV - components: - - pos: 88.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23165 - type: CableHV - components: - - pos: 87.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23166 - type: CableHV - components: - - pos: 86.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23167 - type: CableHV - components: - - pos: 85.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23168 - type: CableHV - components: - - pos: 84.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23169 - type: CableHV - components: - - pos: 83.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23170 - type: CableHV - components: - - pos: 82.5,-20.5 - parent: 0 - type: Transform -- uid: 23171 - type: CableHV - components: - - pos: 81.5,-20.5 - parent: 0 - type: Transform -- uid: 23172 - type: CableHV - components: - - pos: 80.5,-20.5 - parent: 0 - type: Transform -- uid: 23173 - type: CableHV - components: - - pos: 79.5,-20.5 - parent: 0 - type: Transform -- uid: 23174 - type: CableHV - components: - - pos: 78.5,-20.5 - parent: 0 - type: Transform -- uid: 23175 - type: CableHV - components: - - pos: 77.5,-20.5 - parent: 0 - type: Transform -- uid: 23176 - type: CableHV - components: - - pos: 76.5,-20.5 - parent: 0 - type: Transform -- uid: 23177 - type: CableHV - components: - - pos: 76.5,-19.5 - parent: 0 - type: Transform -- uid: 23178 - type: CableHV - components: - - pos: 76.5,-18.5 - parent: 0 - type: Transform -- uid: 23179 - type: CableHV - components: - - pos: 76.5,-17.5 - parent: 0 - type: Transform -- uid: 23180 - type: CableHV - components: - - pos: 76.5,-16.5 - parent: 0 - type: Transform -- uid: 23181 - type: CableHV - components: - - pos: 76.5,-15.5 - parent: 0 - type: Transform -- uid: 23182 - type: CableHV - components: - - pos: 76.5,-14.5 - parent: 0 - type: Transform -- uid: 23183 - type: CableHV - components: - - pos: 76.5,-13.5 - parent: 0 - type: Transform -- uid: 23184 - type: CableHV - components: - - pos: 76.5,-12.5 - parent: 0 - type: Transform -- uid: 23185 - type: CableHV - components: - - pos: 76.5,-11.5 - parent: 0 - type: Transform -- uid: 23186 - type: CableHV - components: - - pos: 76.5,-10.5 - parent: 0 - type: Transform -- uid: 23187 - type: CableHV - components: - - pos: 76.5,-9.5 - parent: 0 - type: Transform -- uid: 23188 - type: CableHV - components: - - pos: 77.5,-9.5 - parent: 0 - type: Transform -- uid: 23189 - type: CableHV - components: - - pos: 78.5,-9.5 - parent: 0 - type: Transform -- uid: 23190 - type: CableHV - components: - - pos: 79.5,-9.5 - parent: 0 - type: Transform -- uid: 23191 - type: CableHV - components: - - pos: 79.5,-8.5 - parent: 0 - type: Transform -- uid: 23192 - type: CableHV - components: - - pos: 79.5,-7.5 - parent: 0 - type: Transform -- uid: 23193 - type: CableHV - components: - - pos: 79.5,-6.5 - parent: 0 - type: Transform -- uid: 23194 - type: CableHV - components: - - pos: 79.5,-5.5 - parent: 0 - type: Transform -- uid: 23195 - type: CableHV - components: - - pos: 79.5,-4.5 - parent: 0 - type: Transform -- uid: 23196 - type: CableHV - components: - - pos: 78.5,-4.5 - parent: 0 - type: Transform -- uid: 23197 - type: CableHV - components: - - pos: 77.5,-4.5 - parent: 0 - type: Transform -- uid: 23198 - type: CableHV - components: - - pos: 77.5,-3.5 - parent: 0 - type: Transform -- uid: 23199 - type: CableHV - components: - - pos: 77.5,-2.5 - parent: 0 - type: Transform -- uid: 23200 - type: CableHV - components: - - pos: 77.5,-1.5 - parent: 0 - type: Transform -- uid: 23201 - type: CableHV - components: - - pos: 77.5,-0.5 - parent: 0 - type: Transform -- uid: 23202 - type: CableHV - components: - - pos: 77.5,0.5 - parent: 0 - type: Transform -- uid: 23203 - type: CableHV - components: - - pos: 78.5,0.5 - parent: 0 - type: Transform -- uid: 23204 - type: CableHV - components: - - pos: 79.5,0.5 - parent: 0 - type: Transform -- uid: 23205 - type: CableHV - components: - - pos: 80.5,0.5 - parent: 0 - type: Transform -- uid: 23206 - type: CableHV - components: - - pos: 112.5,-20.5 - parent: 0 - type: Transform -- uid: 23207 - type: CableHV - components: - - pos: 113.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23208 - type: CableHV - components: - - pos: 114.5,-20.5 - parent: 0 - type: Transform -- uid: 23209 - type: CableHV - components: - - pos: 115.5,-20.5 - parent: 0 - type: Transform -- uid: 23210 - type: CableHV - components: - - pos: 116.5,-20.5 - parent: 0 - type: Transform -- uid: 23211 - type: CableHV - components: - - pos: 117.5,-20.5 - parent: 0 - type: Transform -- uid: 23212 - type: CableHV - components: - - pos: 118.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23213 - type: WallSolidRust - components: - - pos: 119.5,-14.5 - parent: 0 - type: Transform -- uid: 23214 - type: WallSolidRust - components: - - pos: 120.5,-18.5 - parent: 0 - type: Transform -- uid: 23215 - type: WallSolid - components: - - pos: 119.5,-18.5 - parent: 0 - type: Transform -- uid: 23216 - type: CableHV - components: - - pos: 118.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23217 - type: CableHV - components: - - pos: 118.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23218 - type: CableHV - components: - - pos: 118.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23219 - type: CableHV - components: - - pos: 118.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23220 - type: CableHV - components: - - pos: 119.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23221 - type: CableHV - components: - - pos: 119.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23222 - type: CableHV - components: - - pos: 119.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23223 - type: CableHV - components: - - pos: 119.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23224 - type: CableHV - components: - - pos: 119.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23225 - type: CableHV - components: - - pos: 119.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23226 - type: CableHV - components: - - pos: 119.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23227 - type: CableHV - components: - - pos: 119.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23228 - type: CableHV - components: - - pos: 119.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23229 - type: CableHV - components: - - pos: 119.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23230 - type: CableHV - components: - - pos: 119.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23231 - type: CableHV - components: - - pos: 119.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23232 - type: CableHV - components: - - pos: 119.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23233 - type: CableHV - components: - - pos: 119.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23234 - type: CableHV - components: - - pos: 119.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23235 - type: CableHV - components: - - pos: 119.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23236 - type: CableHV - components: - - pos: 119.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23237 - type: CableHV - components: - - pos: 119.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23238 - type: CableHV - components: - - pos: 119.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23239 - type: CableHV - components: - - pos: 119.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23240 - type: CableHV - components: - - pos: 119.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23241 - type: CableHV - components: - - pos: 81.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23242 - type: CableHV - components: - - pos: 81.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23243 - type: CableHV - components: - - pos: 81.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23244 - type: CableHV - components: - - pos: 81.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23245 - type: CableHV - components: - - pos: 81.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23246 - type: CableHV - components: - - pos: 81.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23247 - type: CableHV - components: - - pos: 82.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23248 - type: CableHV - components: - - pos: 83.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23249 - type: CableHV - components: - - pos: 84.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23250 - type: CableHV - components: - - pos: 85.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23251 - type: CableHV - components: - - pos: 86.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23252 - type: CableHV - components: - - pos: 87.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23253 - type: CableHV - components: - - pos: 88.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23254 - type: CableHV - components: - - pos: 89.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23255 - type: CableHV - components: - - pos: 90.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23256 - type: CableHV - components: - - pos: 91.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23257 - type: CableHV - components: - - pos: 92.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23258 - type: CableHV - components: - - pos: 93.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23259 - type: CableHV - components: - - pos: 118.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23260 - type: CableHV - components: - - pos: 117.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23261 - type: CableHV - components: - - pos: 116.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23262 - type: CableHV - components: - - pos: 96.5,0.5 - parent: 0 - type: Transform -- uid: 23263 - type: CableHV - components: - - pos: 95.5,0.5 - parent: 0 - type: Transform -- uid: 23264 - type: CableHV - components: - - pos: 97.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23265 - type: CableHV - components: - - pos: 94.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23266 - type: WallReinforced - components: - - pos: 99.5,9.5 - parent: 0 - type: Transform -- uid: 23267 - type: WallReinforced - components: - - pos: 98.5,9.5 - parent: 0 - type: Transform -- uid: 23268 - type: WallReinforced - components: - - pos: 97.5,9.5 - parent: 0 - type: Transform -- uid: 23269 - type: WallReinforced - components: - - pos: 96.5,9.5 - parent: 0 - type: Transform -- uid: 23270 - type: WallReinforced - components: - - pos: 95.5,9.5 - parent: 0 - type: Transform -- uid: 23271 - type: WallReinforced - components: - - pos: 94.5,9.5 - parent: 0 - type: Transform -- uid: 23272 - type: WallReinforced - components: - - pos: 93.5,9.5 - parent: 0 - type: Transform -- uid: 23273 - type: WallReinforced - components: - - pos: 111.5,7.5 - parent: 0 - type: Transform -- uid: 23274 - type: WallReinforced - components: - - pos: 110.5,7.5 - parent: 0 - type: Transform -- uid: 23275 - type: CableHV - components: - - pos: 93.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23276 - type: WallReinforced - components: - - pos: 112.5,6.5 - parent: 0 - type: Transform -- uid: 23277 - type: WallReinforced - components: - - pos: 112.5,7.5 - parent: 0 - type: Transform -- uid: 23278 - type: WallReinforced - components: - - pos: 96.5,2.5 - parent: 0 - type: Transform -- uid: 23279 - type: WallReinforced - components: - - pos: 98.5,2.5 - parent: 0 - type: Transform -- uid: 23280 - type: WallReinforced - components: - - pos: 97.5,2.5 - parent: 0 - type: Transform -- uid: 23281 - type: CableHV - components: - - pos: 96.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23282 - type: CableHV - components: - - pos: 100.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23283 - type: CableHV - components: - - pos: 98.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23284 - type: WallReinforced - components: - - pos: 96.5,3.5 - parent: 0 - type: Transform -- uid: 23285 - type: WallReinforced - components: - - pos: 96.5,4.5 - parent: 0 - type: Transform -- uid: 23286 - type: CableHV - components: - - pos: 99.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23287 - type: WallReinforced - components: - - pos: 112.5,4.5 - parent: 0 - type: Transform -- uid: 23288 - type: WallReinforced - components: - - pos: 109.5,7.5 - parent: 0 - type: Transform -- uid: 23289 - type: WallReinforced - components: - - pos: 108.5,7.5 - parent: 0 - type: Transform -- uid: 23290 - type: WallReinforced - components: - - pos: 107.5,7.5 - parent: 0 - type: Transform -- uid: 23291 - type: WallReinforced - components: - - pos: 106.5,7.5 - parent: 0 - type: Transform -- uid: 23292 - type: WallReinforced - components: - - pos: 105.5,7.5 - parent: 0 - type: Transform -- uid: 23293 - type: WallReinforced - components: - - pos: 104.5,7.5 - parent: 0 - type: Transform -- uid: 23294 - type: WallReinforced - components: - - pos: 103.5,7.5 - parent: 0 - type: Transform -- uid: 23295 - type: WallReinforced - components: - - pos: 102.5,7.5 - parent: 0 - type: Transform -- uid: 23296 - type: WallReinforced - components: - - pos: 101.5,7.5 - parent: 0 - type: Transform -- uid: 23297 - type: WallReinforced - components: - - pos: 100.5,7.5 - parent: 0 - type: Transform -- uid: 23298 - type: WallReinforced - components: - - pos: 99.5,7.5 - parent: 0 - type: Transform -- uid: 23299 - type: WallReinforced - components: - - pos: 99.5,8.5 - parent: 0 - type: Transform -- uid: 23300 - type: CableHV - components: - - pos: 92.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23301 - type: CableHV - components: - - pos: 91.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23302 - type: Catwalk - components: - - pos: 94.5,0.5 - parent: 0 - type: Transform -- uid: 23303 - type: Catwalk - components: - - pos: 93.5,0.5 - parent: 0 - type: Transform -- uid: 23304 - type: Catwalk - components: - - pos: 92.5,0.5 - parent: 0 - type: Transform -- uid: 23305 - type: Catwalk - components: - - pos: 91.5,0.5 - parent: 0 - type: Transform -- uid: 23306 - type: Catwalk - components: - - pos: 90.5,0.5 - parent: 0 - type: Transform -- uid: 23307 - type: Catwalk - components: - - pos: 100.5,0.5 - parent: 0 - type: Transform -- uid: 23308 - type: Catwalk - components: - - pos: 100.5,-0.5 - parent: 0 - type: Transform -- uid: 23309 - type: Catwalk - components: - - pos: 100.5,-1.5 - parent: 0 - type: Transform -- uid: 23310 - type: Catwalk - components: - - pos: 100.5,-2.5 - parent: 0 - type: Transform -- uid: 23311 - type: Catwalk - components: - - pos: 101.5,-7.5 - parent: 0 - type: Transform -- uid: 23312 - type: Catwalk - components: - - pos: 101.5,-6.5 - parent: 0 - type: Transform -- uid: 23313 - type: Catwalk - components: - - pos: 101.5,-5.5 - parent: 0 - type: Transform -- uid: 23314 - type: Catwalk - components: - - pos: 101.5,-4.5 - parent: 0 - type: Transform -- uid: 23315 - type: Catwalk - components: - - pos: 101.5,-8.5 - parent: 0 - type: Transform -- uid: 23316 - type: Catwalk - components: - - pos: 100.5,-8.5 - parent: 0 - type: Transform -- uid: 23317 - type: Catwalk - components: - - pos: 100.5,-9.5 - parent: 0 - type: Transform -- uid: 23318 - type: Catwalk - components: - - pos: 100.5,-10.5 - parent: 0 - type: Transform -- uid: 23319 - type: Catwalk - components: - - pos: 100.5,-11.5 - parent: 0 - type: Transform -- uid: 23320 - type: Catwalk - components: - - pos: 100.5,-12.5 - parent: 0 - type: Transform -- uid: 23321 - type: Catwalk - components: - - pos: 100.5,1.5 - parent: 0 - type: Transform -- uid: 23322 - type: Catwalk - components: - - pos: 101.5,-13.5 - parent: 0 - type: Transform -- uid: 23323 - type: Catwalk - components: - - pos: 102.5,-13.5 - parent: 0 - type: Transform -- uid: 23324 - type: Catwalk - components: - - pos: 103.5,-13.5 - parent: 0 - type: Transform -- uid: 23325 - type: Catwalk - components: - - pos: 104.5,-13.5 - parent: 0 - type: Transform -- uid: 23326 - type: Catwalk - components: - - pos: 105.5,-13.5 - parent: 0 - type: Transform -- uid: 23327 - type: Catwalk - components: - - pos: 105.5,-12.5 - parent: 0 - type: Transform -- uid: 23328 - type: Catwalk - components: - - pos: 106.5,-12.5 - parent: 0 - type: Transform -- uid: 23329 - type: Catwalk - components: - - pos: 107.5,-12.5 - parent: 0 - type: Transform -- uid: 23330 - type: Catwalk - components: - - pos: 108.5,-12.5 - parent: 0 - type: Transform -- uid: 23331 - type: Catwalk - components: - - pos: 109.5,-12.5 - parent: 0 - type: Transform -- uid: 23332 - type: Catwalk - components: - - pos: 110.5,-12.5 - parent: 0 - type: Transform -- uid: 23333 - type: Catwalk - components: - - pos: 111.5,-12.5 - parent: 0 - type: Transform -- uid: 23334 - type: Catwalk - components: - - pos: 111.5,-13.5 - parent: 0 - type: Transform -- uid: 23335 - type: Catwalk - components: - - pos: 112.5,-13.5 - parent: 0 - type: Transform -- uid: 23336 - type: Catwalk - components: - - pos: 113.5,-13.5 - parent: 0 - type: Transform -- uid: 23337 - type: Catwalk - components: - - pos: 114.5,-13.5 - parent: 0 - type: Transform -- uid: 23338 - type: Catwalk - components: - - pos: 115.5,-13.5 - parent: 0 - type: Transform -- uid: 23339 - type: Catwalk - components: - - pos: 116.5,-11.5 - parent: 0 - type: Transform -- uid: 23340 - type: Catwalk - components: - - pos: 116.5,-10.5 - parent: 0 - type: Transform -- uid: 23341 - type: Catwalk - components: - - pos: 116.5,-9.5 - parent: 0 - type: Transform -- uid: 23342 - type: Catwalk - components: - - pos: 116.5,-8.5 - parent: 0 - type: Transform -- uid: 23343 - type: Catwalk - components: - - pos: 115.5,-8.5 - parent: 0 - type: Transform -- uid: 23344 - type: Catwalk - components: - - pos: 115.5,-7.5 - parent: 0 - type: Transform -- uid: 23345 - type: Catwalk - components: - - pos: 115.5,-6.5 - parent: 0 - type: Transform -- uid: 23346 - type: Catwalk - components: - - pos: 115.5,-5.5 - parent: 0 - type: Transform -- uid: 23347 - type: Catwalk - components: - - pos: 115.5,-4.5 - parent: 0 - type: Transform -- uid: 23348 - type: Catwalk - components: - - pos: 115.5,-3.5 - parent: 0 - type: Transform -- uid: 23349 - type: Catwalk - components: - - pos: 115.5,-2.5 - parent: 0 - type: Transform -- uid: 23350 - type: Catwalk - components: - - pos: 111.5,1.5 - parent: 0 - type: Transform -- uid: 23351 - type: Catwalk - components: - - pos: 116.5,-2.5 - parent: 0 - type: Transform -- uid: 23352 - type: Catwalk - components: - - pos: 116.5,-1.5 - parent: 0 - type: Transform -- uid: 23353 - type: Catwalk - components: - - pos: 116.5,-0.5 - parent: 0 - type: Transform -- uid: 23354 - type: Catwalk - components: - - pos: 116.5,0.5 - parent: 0 - type: Transform -- uid: 23355 - type: Catwalk - components: - - pos: 116.5,1.5 - parent: 0 - type: Transform -- uid: 23356 - type: Catwalk - components: - - pos: 115.5,2.5 - parent: 0 - type: Transform -- uid: 23357 - type: Catwalk - components: - - pos: 114.5,2.5 - parent: 0 - type: Transform -- uid: 23358 - type: Catwalk - components: - - pos: 113.5,2.5 - parent: 0 - type: Transform -- uid: 23359 - type: Catwalk - components: - - pos: 112.5,2.5 - parent: 0 - type: Transform -- uid: 23360 - type: Catwalk - components: - - pos: 111.5,2.5 - parent: 0 - type: Transform -- uid: 23361 - type: Catwalk - components: - - pos: 110.5,1.5 - parent: 0 - type: Transform -- uid: 23362 - type: Catwalk - components: - - pos: 109.5,1.5 - parent: 0 - type: Transform -- uid: 23363 - type: Catwalk - components: - - pos: 108.5,1.5 - parent: 0 - type: Transform -- uid: 23364 - type: Catwalk - components: - - pos: 107.5,1.5 - parent: 0 - type: Transform -- uid: 23365 - type: Catwalk - components: - - pos: 106.5,1.5 - parent: 0 - type: Transform -- uid: 23366 - type: Catwalk - components: - - pos: 105.5,1.5 - parent: 0 - type: Transform -- uid: 23367 - type: Grille - components: - - pos: 106.5,3.5 - parent: 0 - type: Transform -- uid: 23368 - type: Catwalk - components: - - pos: 105.5,2.5 - parent: 0 - type: Transform -- uid: 23369 - type: Catwalk - components: - - pos: 104.5,2.5 - parent: 0 - type: Transform -- uid: 23370 - type: Catwalk - components: - - pos: 103.5,2.5 - parent: 0 - type: Transform -- uid: 23371 - type: Catwalk - components: - - pos: 102.5,2.5 - parent: 0 - type: Transform -- uid: 23372 - type: Catwalk - components: - - pos: 101.5,2.5 - parent: 0 - type: Transform -- uid: 23373 - type: Catwalk - components: - - pos: 101.5,-3.5 - parent: 0 - type: Transform -- uid: 23374 - type: Catwalk - components: - - pos: 101.5,-2.5 - parent: 0 - type: Transform -- uid: 23375 - type: Grille - components: - - pos: 107.5,3.5 - parent: 0 - type: Transform -- uid: 23376 - type: Grille - components: - - pos: 108.5,3.5 - parent: 0 - type: Transform -- uid: 23377 - type: Grille - components: - - pos: 109.5,3.5 - parent: 0 - type: Transform -- uid: 23378 - type: Grille - components: - - pos: 110.5,3.5 - parent: 0 - type: Transform -- uid: 23379 - type: WallReinforced - components: - - pos: 115.5,-17.5 - parent: 0 - type: Transform -- uid: 23380 - type: Grille - components: - - pos: 117.5,-7.5 - parent: 0 - type: Transform -- uid: 23381 - type: Grille - components: - - pos: 117.5,-6.5 - parent: 0 - type: Transform -- uid: 23382 - type: Grille - components: - - pos: 117.5,-5.5 - parent: 0 - type: Transform -- uid: 23383 - type: Grille - components: - - pos: 117.5,-4.5 - parent: 0 - type: Transform -- uid: 23384 - type: Grille - components: - - pos: 117.5,-3.5 - parent: 0 - type: Transform -- uid: 23385 - type: Grille - components: - - pos: 110.5,-14.5 - parent: 0 - type: Transform -- uid: 23386 - type: Grille - components: - - pos: 109.5,-14.5 - parent: 0 - type: Transform -- uid: 23387 - type: Grille - components: - - pos: 108.5,-14.5 - parent: 0 - type: Transform -- uid: 23388 - type: Grille - components: - - pos: 107.5,-14.5 - parent: 0 - type: Transform -- uid: 23389 - type: Grille - components: - - pos: 106.5,-14.5 - parent: 0 - type: Transform -- uid: 23390 - type: Grille - components: - - pos: 99.5,-7.5 - parent: 0 - type: Transform -- uid: 23391 - type: Grille - components: - - pos: 99.5,-6.5 - parent: 0 - type: Transform -- uid: 23392 - type: Grille - components: - - pos: 99.5,-5.5 - parent: 0 - type: Transform -- uid: 23393 - type: Grille - components: - - pos: 99.5,-4.5 - parent: 0 - type: Transform -- uid: 23394 - type: Grille - components: - - pos: 99.5,-3.5 - parent: 0 - type: Transform -- uid: 23395 - type: Grille - components: - - pos: 92.5,-6.5 - parent: 0 - type: Transform -- uid: 23396 - type: Grille - components: - - pos: 92.5,-5.5 - parent: 0 - type: Transform -- uid: 23397 - type: Grille - components: - - pos: 92.5,-4.5 - parent: 0 - type: Transform -- uid: 23398 - type: ReinforcedPlasmaWindow - components: - - pos: 93.5,-1.5 - parent: 0 - type: Transform -- uid: 23399 - type: WallReinforced - components: - - pos: 106.5,-18.5 - parent: 0 - type: Transform -- uid: 23400 - type: SingularityGenerator - components: - - pos: 108.5,-5.5 - parent: 0 - type: Transform -- uid: 23401 - type: ContainmentFieldGenerator - components: - - pos: 104.5,-1.5 - parent: 0 - type: Transform -- uid: 23402 - type: WallReinforced - components: - - pos: 111.5,-17.5 - parent: 0 - type: Transform -- uid: 23403 - type: WallReinforced - components: - - pos: 111.5,-15.5 - parent: 0 - type: Transform -- uid: 23404 - type: WallReinforced - components: - - pos: 112.5,-18.5 - parent: 0 - type: Transform -- uid: 23405 - type: WallReinforced - components: - - pos: 113.5,-18.5 - parent: 0 - type: Transform -- uid: 23406 - type: ContainmentFieldGenerator - components: - - pos: 110.5,-17.5 - parent: 0 - type: Transform -- uid: 23407 - type: ContainmentFieldGenerator - components: - - pos: 109.5,-17.5 - parent: 0 - type: Transform -- uid: 23408 - type: ContainmentFieldGenerator - components: - - pos: 108.5,-17.5 - parent: 0 - type: Transform -- uid: 23409 - type: ContainmentFieldGenerator - components: - - pos: 107.5,-17.5 - parent: 0 - type: Transform -- uid: 23410 - type: SingularityGenerator - components: - - pos: 106.5,-17.5 - parent: 0 - type: Transform -- uid: 23411 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 110.5,-15.5 - parent: 0 - type: Transform -- uid: 23412 - type: WallReinforced - components: - - pos: 115.5,-15.5 - parent: 0 - type: Transform -- uid: 23413 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 111.5,-16.5 - parent: 0 - type: Transform -- uid: 23414 - type: AirlockEngineeringLocked - components: - - pos: 105.5,-16.5 - parent: 0 - type: Transform -- uid: 23415 - type: GeneratorPlasma - components: - - pos: 109.5,-15.5 - parent: 0 - type: Transform -- uid: 23416 - type: GeneratorPlasma - components: - - pos: 108.5,-15.5 - parent: 0 - type: Transform -- uid: 23417 - type: GeneratorBasic - components: - - pos: 107.5,-15.5 - parent: 0 - type: Transform -- uid: 23418 - type: CableHV - components: - - pos: 96.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23419 - type: CableHV - components: - - pos: 96.5,-7.5 - parent: 0 - type: Transform -- uid: 23420 - type: CableHV - components: - - pos: 96.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23421 - type: CableHV - components: - - pos: 96.5,-3.5 - parent: 0 - type: Transform -- uid: 23422 - type: CableHV - components: - - pos: 95.5,-7.5 - parent: 0 - type: Transform -- uid: 23423 - type: CableHV - components: - - pos: 94.5,-7.5 - parent: 0 - type: Transform -- uid: 23424 - type: CableHV - components: - - pos: 94.5,-8.5 - parent: 0 - type: Transform -- uid: 23425 - type: CableHV - components: - - pos: 94.5,-9.5 - parent: 0 - type: Transform -- uid: 23426 - type: CableHV - components: - - pos: 94.5,-10.5 - parent: 0 - type: Transform -- uid: 23427 - type: CableHV - components: - - pos: 93.5,-10.5 - parent: 0 - type: Transform -- uid: 23428 - type: CableHV - components: - - pos: 92.5,-10.5 - parent: 0 - type: Transform -- uid: 23429 - type: CableHV - components: - - pos: 91.5,-10.5 - parent: 0 - type: Transform -- uid: 23430 - type: CableHV - components: - - pos: 95.5,-3.5 - parent: 0 - type: Transform -- uid: 23431 - type: CableHV - components: - - pos: 94.5,-3.5 - parent: 0 - type: Transform -- uid: 23432 - type: CableHV - components: - - pos: 93.5,-3.5 - parent: 0 - type: Transform -- uid: 23433 - type: CableHV - components: - - pos: 93.5,-4.5 - parent: 0 - type: Transform -- uid: 23434 - type: CableHV - components: - - pos: 93.5,-5.5 - parent: 0 - type: Transform -- uid: 23435 - type: CableHV - components: - - pos: 93.5,-6.5 - parent: 0 - type: Transform -- uid: 23436 - type: CableHV - components: - - pos: 93.5,-7.5 - parent: 0 - type: Transform -- uid: 23437 - type: CableHV - components: - - pos: 91.5,-9.5 - parent: 0 - type: Transform -- uid: 23438 - type: CableHV - components: - - pos: 91.5,-8.5 - parent: 0 - type: Transform -- uid: 23439 - type: CableHV - components: - - pos: 91.5,-7.5 - parent: 0 - type: Transform -- uid: 23440 - type: CableHV - components: - - pos: 91.5,-6.5 - parent: 0 - type: Transform -- uid: 23441 - type: CableHV - components: - - pos: 90.5,-6.5 - parent: 0 - type: Transform -- uid: 23442 - type: CableHV - components: - - pos: 89.5,-6.5 - parent: 0 - type: Transform -- uid: 23443 - type: CableHV - components: - - pos: 88.5,-6.5 - parent: 0 - type: Transform -- uid: 23444 - type: CableHV - components: - - pos: 87.5,-6.5 - parent: 0 - type: Transform -- uid: 23445 - type: CableHV - components: - - pos: 86.5,-6.5 - parent: 0 - type: Transform -- uid: 23446 - type: CableHV - components: - - pos: 86.5,-5.5 - parent: 0 - type: Transform -- uid: 23447 - type: CableHV - components: - - pos: 85.5,-5.5 - parent: 0 - type: Transform -- uid: 23448 - type: CableHV - components: - - pos: 84.5,-5.5 - parent: 0 - type: Transform -- uid: 23449 - type: CableHV - components: - - pos: 83.5,-5.5 - parent: 0 - type: Transform -- uid: 23450 - type: CableHV - components: - - pos: 82.5,-5.5 - parent: 0 - type: Transform -- uid: 23451 - type: CableHV - components: - - pos: 81.5,-5.5 - parent: 0 - type: Transform -- uid: 23452 - type: CableHV - components: - - pos: 80.5,-5.5 - parent: 0 - type: Transform -- uid: 23453 - type: CrateEngineeringAMEJar - components: - - pos: 83.5,5.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23454 - type: CrateEngineeringAMEShielding - components: - - pos: 84.5,5.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23455 - type: CrateEngineeringAMEShielding - components: - - pos: 85.5,5.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23456 - type: AMEController - components: - - pos: 86.5,5.5 - parent: 0 - type: Transform -- uid: 23457 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 96.5,0.5 - parent: 0 - type: Transform -- uid: 23458 - type: AirlockExternalEngineeringLocked - components: - - pos: 99.5,0.5 - parent: 0 - type: Transform -- uid: 23459 - type: FirelockGlass - components: - - pos: 96.5,-12.5 - parent: 0 - type: Transform -- uid: 23460 - type: FirelockGlass - components: - - pos: 96.5,-11.5 - parent: 0 - type: Transform -- uid: 23461 - type: FirelockGlass - components: - - pos: 96.5,-10.5 - parent: 0 - type: Transform -- uid: 23462 - type: FirelockGlass - components: - - pos: 95.5,4.5 - parent: 0 - type: Transform -- uid: 23463 - type: FirelockGlass - components: - - pos: 94.5,4.5 - parent: 0 - type: Transform -- uid: 23464 - type: FirelockGlass - components: - - pos: 93.5,4.5 - parent: 0 - type: Transform -- uid: 23465 - type: Grille - components: - - pos: 95.5,-1.5 - parent: 0 - type: Transform -- uid: 23466 - type: Grille - components: - - pos: 93.5,-1.5 - parent: 0 - type: Transform -- uid: 23467 - type: CableHV - components: - - pos: 87.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23468 - type: CableHV - components: - - pos: 87.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23469 - type: CableHV - components: - - pos: 88.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23470 - type: Grille - components: - - pos: 89.5,4.5 - parent: 0 - type: Transform -- uid: 23471 - type: Grille - components: - - pos: 91.5,4.5 - parent: 0 - type: Transform -- uid: 23472 - type: Grille - components: - - pos: 84.5,-6.5 - parent: 0 - type: Transform -- uid: 23473 - type: Grille - components: - - pos: 84.5,-4.5 - parent: 0 - type: Transform -- uid: 23474 - type: Grille - components: - - pos: 81.5,-1.5 - parent: 0 - type: Transform -- uid: 23475 - type: Grille - components: - - pos: 80.5,-1.5 - parent: 0 - type: Transform -- uid: 23476 - type: Grille - components: - - pos: 79.5,-1.5 - parent: 0 - type: Transform -- uid: 23477 - type: Grille - components: - - pos: 75.5,-5.5 - parent: 0 - type: Transform -- uid: 23478 - type: Grille - components: - - pos: 75.5,-4.5 - parent: 0 - type: Transform -- uid: 23479 - type: Grille - components: - - pos: 74.5,-3.5 - parent: 0 - type: Transform -- uid: 23480 - type: Grille - components: - - pos: 70.5,-3.5 - parent: 0 - type: Transform -- uid: 23481 - type: Grille - components: - - pos: 74.5,-10.5 - parent: 0 - type: Transform -- uid: 23482 - type: Grille - components: - - pos: 74.5,-9.5 - parent: 0 - type: Transform -- uid: 23483 - type: Grille - components: - - pos: 74.5,-8.5 - parent: 0 - type: Transform -- uid: 23484 - type: Grille - components: - - pos: 70.5,-10.5 - parent: 0 - type: Transform -- uid: 23485 - type: Grille - components: - - pos: 70.5,-8.5 - parent: 0 - type: Transform -- uid: 23486 - type: Grille - components: - - pos: 80.5,-14.5 - parent: 0 - type: Transform -- uid: 23487 - type: Grille - components: - - pos: 80.5,-12.5 - parent: 0 - type: Transform -- uid: 23488 - type: Grille - components: - - pos: 87.5,-12.5 - parent: 0 - type: Transform -- uid: 23489 - type: Grille - components: - - pos: 87.5,-11.5 - parent: 0 - type: Transform -- uid: 23490 - type: Grille - components: - - pos: 89.5,-13.5 - parent: 0 - type: Transform -- uid: 23491 - type: Grille - components: - - pos: 89.5,-17.5 - parent: 0 - type: Transform -- uid: 23492 - type: Grille - components: - - pos: 77.5,-21.5 - parent: 0 - type: Transform -- uid: 23493 - type: Grille - components: - - pos: 75.5,-21.5 - parent: 0 - type: Transform -- uid: 23494 - type: Grille - components: - - pos: 75.5,-17.5 - parent: 0 - type: Transform -- uid: 23495 - type: Grille - components: - - pos: 77.5,-17.5 - parent: 0 - type: Transform -- uid: 23496 - type: Grille - components: - - pos: 79.5,-17.5 - parent: 0 - type: Transform -- uid: 23497 - type: Grille - components: - - pos: 83.5,-22.5 - parent: 0 - type: Transform -- uid: 23498 - type: Grille - components: - - pos: 84.5,-22.5 - parent: 0 - type: Transform -- uid: 23499 - type: Grille - components: - - pos: 85.5,-22.5 - parent: 0 - type: Transform -- uid: 23500 - type: Grille - components: - - pos: 89.5,-22.5 - parent: 0 - type: Transform -- uid: 23501 - type: Grille - components: - - pos: 88.5,-22.5 - parent: 0 - type: Transform -- uid: 23502 - type: Grille - components: - - pos: 87.5,-22.5 - parent: 0 - type: Transform -- uid: 23503 - type: Grille - components: - - pos: 90.5,-26.5 - parent: 0 - type: Transform -- uid: 23504 - type: Grille - components: - - pos: 92.5,-28.5 - parent: 0 - type: Transform -- uid: 23505 - type: Grille - components: - - pos: 92.5,-32.5 - parent: 0 - type: Transform -- uid: 23506 - type: Grille - components: - - pos: 92.5,-36.5 - parent: 0 - type: Transform -- uid: 23507 - type: Grille - components: - - pos: 90.5,-34.5 - parent: 0 - type: Transform -- uid: 23508 - type: Grille - components: - - pos: 90.5,-38.5 - parent: 0 - type: Transform -- uid: 23509 - type: Grille - components: - - pos: 92.5,-40.5 - parent: 0 - type: Transform -- uid: 23510 - type: Grille - components: - - pos: 90.5,-42.5 - parent: 0 - type: Transform -- uid: 23511 - type: Grille - components: - - pos: 79.5,-39.5 - parent: 0 - type: Transform -- uid: 23512 - type: Grille - components: - - pos: 77.5,-41.5 - parent: 0 - type: Transform -- uid: 23513 - type: Grille - components: - - pos: 75.5,-39.5 - parent: 0 - type: Transform -- uid: 23514 - type: Grille - components: - - pos: 73.5,-41.5 - parent: 0 - type: Transform -- uid: 23515 - type: Grille - components: - - pos: 71.5,-39.5 - parent: 0 - type: Transform -- uid: 23516 - type: Grille - components: - - pos: 74.5,-32.5 - parent: 0 - type: Transform -- uid: 23517 - type: Grille - components: - - pos: 75.5,-32.5 - parent: 0 - type: Transform -- uid: 23518 - type: Grille - components: - - pos: 76.5,-32.5 - parent: 0 - type: Transform -- uid: 23519 - type: Grille - components: - - pos: 77.5,-32.5 - parent: 0 - type: Transform -- uid: 23520 - type: Grille - components: - - pos: 78.5,-26.5 - parent: 0 - type: Transform -- uid: 23521 - type: Grille - components: - - pos: 77.5,-27.5 - parent: 0 - type: Transform -- uid: 23522 - type: Grille - components: - - pos: 76.5,-27.5 - parent: 0 - type: Transform -- uid: 23523 - type: Grille - components: - - pos: 74.5,-27.5 - parent: 0 - type: Transform -- uid: 23524 - type: Grille - components: - - pos: 73.5,-27.5 - parent: 0 - type: Transform -- uid: 23525 - type: Grille - components: - - pos: 71.5,-26.5 - parent: 0 - type: Transform -- uid: 23526 - type: Grille - components: - - pos: 71.5,-24.5 - parent: 0 - type: Transform -- uid: 23527 - type: Grille - components: - - pos: 69.5,-22.5 - parent: 0 - type: Transform -- uid: 23528 - type: Grille - components: - - pos: 67.5,-22.5 - parent: 0 - type: Transform -- uid: 23529 - type: Grille - components: - - pos: 67.5,-17.5 - parent: 0 - type: Transform -- uid: 23530 - type: Grille - components: - - pos: 69.5,-17.5 - parent: 0 - type: Transform -- uid: 23531 - type: Grille - components: - - pos: 70.5,-16.5 - parent: 0 - type: Transform -- uid: 23532 - type: Grille - components: - - pos: 70.5,-14.5 - parent: 0 - type: Transform -- uid: 23533 - type: Grille - components: - - pos: 69.5,-13.5 - parent: 0 - type: Transform -- uid: 23534 - type: Grille - components: - - pos: 67.5,-13.5 - parent: 0 - type: Transform -- uid: 23535 - type: Grille - components: - - pos: 63.5,-13.5 - parent: 0 - type: Transform -- uid: 23536 - type: Grille - components: - - pos: 62.5,-12.5 - parent: 0 - type: Transform -- uid: 23537 - type: Grille - components: - - pos: 57.5,-12.5 - parent: 0 - type: Transform -- uid: 23538 - type: Grille - components: - - pos: 59.5,-8.5 - parent: 0 - type: Transform -- uid: 23539 - type: Grille - components: - - pos: 59.5,-6.5 - parent: 0 - type: Transform -- uid: 23540 - type: Grille - components: - - pos: 61.5,-6.5 - parent: 0 - type: Transform -- uid: 23541 - type: Grille - components: - - pos: 61.5,-8.5 - parent: 0 - type: Transform -- uid: 23542 - type: Grille - components: - - pos: 61.5,0.5 - parent: 0 - type: Transform -- uid: 23543 - type: Grille - components: - - pos: 59.5,0.5 - parent: 0 - type: Transform -- uid: 23544 - type: Grille - components: - - pos: 58.5,7.5 - parent: 0 - type: Transform -- uid: 23545 - type: Grille - components: - - pos: 57.5,11.5 - parent: 0 - type: Transform -- uid: 23546 - type: Grille - components: - - pos: 73.5,5.5 - parent: 0 - type: Transform -- uid: 23547 - type: Grille - components: - - pos: 72.5,5.5 - parent: 0 - type: Transform -- uid: 23548 - type: Grille - components: - - pos: 69.5,5.5 - parent: 0 - type: Transform -- uid: 23549 - type: Grille - components: - - pos: 68.5,5.5 - parent: 0 - type: Transform -- uid: 23550 - type: Grille - components: - - pos: 75.5,12.5 - parent: 0 - type: Transform -- uid: 23551 - type: Grille - components: - - pos: 75.5,16.5 - parent: 0 - type: Transform -- uid: 23552 - type: Grille - components: - - pos: 67.5,17.5 - parent: 0 - type: Transform -- uid: 23553 - type: Grille - components: - - pos: 65.5,17.5 - parent: 0 - type: Transform -- uid: 23554 - type: Grille - components: - - pos: 63.5,19.5 - parent: 0 - type: Transform -- uid: 23555 - type: MountainRock - components: - - pos: 87.5,-8.5 - parent: 0 - type: Transform -- uid: 23556 - type: MountainRock - components: - - pos: 86.5,-8.5 - parent: 0 - type: Transform -- uid: 23557 - type: MountainRock - components: - - pos: 85.5,-8.5 - parent: 0 - type: Transform -- uid: 23558 - type: MountainRock - components: - - pos: 122.5,8.5 - parent: 0 - type: Transform -- uid: 23559 - type: MountainRock - components: - - pos: 121.5,8.5 - parent: 0 - type: Transform -- uid: 23560 - type: MountainRock - components: - - pos: 119.5,8.5 - parent: 0 - type: Transform -- uid: 23561 - type: MountainRock - components: - - pos: 118.5,8.5 - parent: 0 - type: Transform -- uid: 23562 - type: MountainRock - components: - - pos: 117.5,8.5 - parent: 0 - type: Transform -- uid: 23563 - type: MountainRock - components: - - pos: 116.5,8.5 - parent: 0 - type: Transform -- uid: 23564 - type: FloorDrain - components: - - pos: 85.5,-3.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 23565 - type: FloorDrain - components: - - pos: 87.5,-3.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 23566 - type: SinkWide - components: - - pos: 85.5,-3.5 - parent: 0 - type: Transform -- uid: 23567 - type: SinkWide - components: - - pos: 87.5,-3.5 - parent: 0 - type: Transform -- uid: 23568 - type: ClosetRadiationSuitFilled - components: - - pos: 87.5,-7.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23569 - type: ClosetRadiationSuitFilled - components: - - pos: 86.5,-7.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23570 - type: ClosetRadiationSuitFilled - components: - - pos: 85.5,-7.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23571 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 72.5,-40.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23572 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 76.5,-40.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23573 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 80.5,-40.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23574 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 78.5,-40.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23575 - type: GasOutletInjector - components: - - rot: 3.141592653589793 rad - pos: 70.5,-40.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23576 - type: GasOutletInjector - components: - - rot: 3.141592653589793 rad - pos: 74.5,-40.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23577 - type: Grille - components: - - pos: 70.5,-39.5 - parent: 0 - type: Transform -- uid: 23578 - type: Grille - components: - - pos: 72.5,-39.5 - parent: 0 - type: Transform -- uid: 23579 - type: Grille - components: - - pos: 74.5,-39.5 - parent: 0 - type: Transform -- uid: 23580 - type: Grille - components: - - pos: 76.5,-39.5 - parent: 0 - type: Transform -- uid: 23581 - type: Grille - components: - - pos: 78.5,-39.5 - parent: 0 - type: Transform -- uid: 23582 - type: Grille - components: - - pos: 80.5,-39.5 - parent: 0 - type: Transform -- uid: 23583 - type: GasMinerOxygen - components: - - pos: 75.5,-41.5 - parent: 0 - type: Transform -- uid: 23584 - type: GasMinerNitrogen - components: - - pos: 71.5,-41.5 - parent: 0 - type: Transform -- uid: 23585 - type: GasPipeStraight - components: - - pos: 70.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23586 - type: GasPipeStraight - components: - - pos: 72.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23587 - type: GasPipeStraight - components: - - pos: 74.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23588 - type: GasPipeStraight - components: - - pos: 76.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23589 - type: GasPipeStraight - components: - - pos: 78.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23590 - type: GasPipeStraight - components: - - pos: 80.5,-39.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23591 - type: GasFilter - components: - - name: Oxygen Filter - type: MetaData - - rot: 1.5707963267948966 rad - pos: 74.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23592 - type: GasFilter - components: - - name: Water Vapor Filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 88.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23593 - type: GasFilter - components: - - name: Nitrogen Filter - type: MetaData - - rot: 1.5707963267948966 rad - pos: 70.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23594 - type: GasFilter - components: - - name: CO2 Filter - type: MetaData - - rot: 1.5707963267948966 rad - pos: 86.5,-40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23595 - type: GasFilter - components: - - name: Plasma Filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 88.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23596 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 91.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23597 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 91.5,-43.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23598 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 91.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23599 - type: Grille - components: - - pos: 90.5,-37.5 - parent: 0 - type: Transform -- uid: 23600 - type: Grille - components: - - pos: 90.5,-35.5 - parent: 0 - type: Transform -- uid: 23601 - type: Grille - components: - - pos: 90.5,-33.5 - parent: 0 - type: Transform -- uid: 23602 - type: ReinforcedPlasmaWindow - components: - - pos: 90.5,-43.5 - parent: 0 - type: Transform -- uid: 23603 - type: ReinforcedPlasmaWindow - components: - - pos: 90.5,-41.5 - parent: 0 - type: Transform -- uid: 23604 - type: ReinforcedPlasmaWindow - components: - - pos: 90.5,-39.5 - parent: 0 - type: Transform -- uid: 23605 - type: ReinforcedPlasmaWindow - components: - - pos: 90.5,-37.5 - parent: 0 - type: Transform -- uid: 23606 - type: ReinforcedPlasmaWindow - components: - - pos: 90.5,-35.5 - parent: 0 - type: Transform -- uid: 23607 - type: ReinforcedPlasmaWindow - components: - - pos: 90.5,-33.5 - parent: 0 - type: Transform -- uid: 23608 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 90.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23609 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 89.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23610 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 90.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23611 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 89.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23612 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 90.5,-43.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23613 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 89.5,-43.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23614 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 88.5,-43.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23615 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 87.5,-43.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23616 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 86.5,-42.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23617 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 86.5,-41.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23618 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 86.5,-43.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23619 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 88.5,-40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23620 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 85.5,-40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23621 - type: GasPipeBend - components: - - pos: 85.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23622 - type: GasPipeStraight - components: - - pos: 70.5,-38.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23623 - type: GasPipeStraight - components: - - pos: 74.5,-38.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23624 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23625 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23626 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23627 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23628 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23629 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23630 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23631 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23632 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23633 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 81.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23634 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 82.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23635 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23636 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 84.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23637 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 85.5,-38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23638 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 85.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23639 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 87.5,-40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23640 - type: GasPipeStraight - components: - - pos: 88.5,-38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23641 - type: GasPipeStraight - components: - - pos: 88.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23642 - type: GasPipeStraight - components: - - pos: 88.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23643 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23644 - type: GasValve - components: - - name: Wastenet Spacing Valve - type: MetaData - - rot: 1.5707963267948966 rad - pos: 67.5,-33.5 - parent: 0 - type: Transform - - open: False - type: GasValve - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23645 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23646 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23647 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23648 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23649 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23650 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23651 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 67.5,-38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23652 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23653 - type: GasPipeStraight - components: - - pos: 68.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23654 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23655 - type: GasThermoMachineFreezer - components: - - desc: Compounds gas in wastenet making it easier to filter - name: Wastenet Compression Freezer - type: MetaData - - pos: 67.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor -- uid: 23656 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23657 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23658 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23659 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 67.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23660 - type: GasThermoMachineHeater - components: - - desc: Heats gas in wastenet. Can cause filter clogs. - name: Wastenet Gas Heater - type: MetaData - - pos: 67.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor -- uid: 23661 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23662 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 72.5,-38.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23663 - type: GasMixer - components: - - name: N2+O2 Mixer - type: MetaData - - rot: 1.5707963267948966 rad - pos: 77.5,-36.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23664 - type: GasPressurePump - components: - - name: Nitro Pump - type: MetaData - - rot: 3.141592653589793 rad - pos: 72.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23665 - type: GasPressurePump - components: - - name: Oxygen to Air Mixer - type: MetaData - - rot: 3.141592653589793 rad - pos: 76.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23666 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-36.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23667 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23668 - type: GasPressurePump - components: - - name: Nitro to Mix - type: MetaData - - rot: 1.5707963267948966 rad - pos: 73.5,-36.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23669 - type: GasPressurePump - components: - - name: Nitro to Air Mixer - type: MetaData - - rot: 1.5707963267948966 rad - pos: 73.5,-35.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23670 - type: GasMixer - components: - - name: Air Mixer - type: MetaData - - rot: 1.5707963267948966 rad - pos: 76.5,-35.5 - parent: 0 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23671 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 74.5,-35.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23672 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-35.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23673 - type: GasPipeStraight - components: - - pos: 76.5,-36.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23674 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-35.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23675 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 78.5,-36.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23676 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 78.5,-37.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23677 - type: GasPassiveGate - components: - - name: Air resevoir Gate - type: MetaData - - pos: 78.5,-38.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23678 - type: GasPipeBend - components: - - pos: 78.5,-35.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23679 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 76.5,-38.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23680 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-38.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23681 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-36.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23682 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-36.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23683 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-36.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23684 - type: GasPressurePump - components: - - name: Oxygen to Mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 77.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23685 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 80.5,-38.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23686 - type: GasPressurePump - components: - - name: Air to Mix - type: MetaData - - rot: 3.141592653589793 rad - pos: 80.5,-37.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23687 - type: GasMixer - components: - - name: Mix+Air Mixer - type: MetaData - - rot: 1.5707963267948966 rad - pos: 80.5,-36.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23688 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 78.5,-36.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23689 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-36.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23690 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 81.5,-36.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23691 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 82.5,-36.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23692 - type: GasPipeBend - components: - - pos: 84.5,-36.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23693 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,-36.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23694 - type: GasMixer - components: - - name: Mix+CO2 Mixer - type: MetaData - - rot: 3.141592653589793 rad - pos: 87.5,-41.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23695 - type: GasMixer - components: - - name: Mix+H2O Mixer - type: MetaData - - rot: 3.141592653589793 rad - pos: 87.5,-37.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23696 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 87.5,-42.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23697 - type: GasMixer - components: - - name: Mix+Plasma Mixer - type: MetaData - - rot: 3.141592653589793 rad - pos: 87.5,-33.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23698 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 84.5,-42.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23699 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 90.5,-41.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23700 - type: GasPressurePump - components: - - name: CO2 Pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 89.5,-41.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23701 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 88.5,-41.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23702 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 86.5,-42.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23703 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 85.5,-42.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23704 - type: GasPipeStraight - components: - - pos: 84.5,-41.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23705 - type: GasPipeStraight - components: - - pos: 84.5,-40.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23706 - type: GasPipeStraight - components: - - pos: 84.5,-39.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23707 - type: GasPipeStraight - components: - - pos: 84.5,-38.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23708 - type: GasPipeStraight - components: - - pos: 84.5,-37.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23709 - type: GasPressurePump - components: - - name: H2O Pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 89.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23710 - type: GasPressurePump - components: - - name: Plasma Pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 89.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23711 - type: GasPipeStraight - components: - - pos: 87.5,-40.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23712 - type: GasPipeStraight - components: - - pos: 87.5,-39.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23713 - type: GasPipeStraight - components: - - pos: 87.5,-38.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23714 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 88.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23715 - type: GasPipeStraight - components: - - pos: 87.5,-36.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23716 - type: GasPipeStraight - components: - - pos: 87.5,-35.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23717 - type: GasPipeStraight - components: - - pos: 87.5,-34.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23718 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 88.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23719 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 81.5,-38.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23720 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,-37.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23721 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 81.5,-36.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23722 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 85.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23723 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 84.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23724 - type: GasPipeStraight - components: - - pos: 83.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23725 - type: GasPipeStraight - components: - - pos: 83.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23726 - type: GasPipeStraight - components: - - pos: 83.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23727 - type: GasPipeStraight - components: - - pos: 83.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23728 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 83.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23729 - type: GasPipeStraight - components: - - pos: 83.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23730 - type: GasPipeStraight - components: - - pos: 83.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23731 - type: GasPipeStraight - components: - - pos: 83.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23732 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 83.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23733 - type: GasPipeStraight - components: - - pos: 83.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23734 - type: GasPipeStraight - components: - - pos: 83.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23735 - type: GasPressurePump - components: - - name: Distro Pump - type: MetaData - - rot: 1.5707963267948966 rad - pos: 82.5,-35.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23736 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 83.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23737 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 81.5,-35.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23738 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 83.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23739 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 86.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23740 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 69.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23741 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 82.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23742 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 81.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23743 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23744 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23745 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23746 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23747 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23748 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23749 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23750 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23751 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23752 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23753 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23754 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 67.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23755 - type: GasPipeBend - components: - - pos: 68.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23756 - type: GasPipeStraight - components: - - pos: 68.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23757 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23758 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23759 - type: GasPipeFourway - components: - - pos: 76.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23760 - type: CableApcExtension - components: - - pos: 86.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23761 - type: GasPipeStraight - components: - - pos: 86.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23762 - type: GasPipeStraight - components: - - pos: 86.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23763 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 85.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23764 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 84.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23765 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23766 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 82.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23767 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 81.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23768 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23769 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23770 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23771 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 77.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23772 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23773 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23774 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23775 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23776 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 76.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23777 - type: GasPipeStraight - components: - - pos: 76.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23778 - type: GasPipeStraight - components: - - pos: 76.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23779 - type: GasPipeStraight - components: - - pos: 76.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23780 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23781 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23782 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23783 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23784 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23785 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23786 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23787 - type: Catwalk - components: - - pos: 72.5,-32.5 - parent: 0 - type: Transform -- uid: 23788 - type: Catwalk - components: - - pos: 79.5,-32.5 - parent: 0 - type: Transform -- uid: 23789 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 82.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23790 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 81.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23791 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23792 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23793 - type: GasMinerPlasma - components: - - pos: 92.5,-34.5 - parent: 0 - type: Transform -- uid: 23794 - type: WarningO2 - components: - - pos: 73.5,-39.5 - parent: 0 - type: Transform -- uid: 23795 - type: WarningN2 - components: - - pos: 69.5,-39.5 - parent: 0 - type: Transform -- uid: 23796 - type: GasMinerCarbonDioxide - components: - - pos: 92.5,-42.5 - parent: 0 - type: Transform -- uid: 23797 - type: WarningCO2 - components: - - pos: 90.5,-40.5 - parent: 0 - type: Transform -- uid: 23798 - type: GasMinerWaterVapor - components: - - pos: 92.5,-38.5 - parent: 0 - type: Transform -- uid: 23799 - type: Catwalk - components: - - pos: 72.5,-25.5 - parent: 0 - type: Transform -- uid: 23800 - type: Catwalk - components: - - pos: 70.5,-25.5 - parent: 0 - type: Transform -- uid: 23801 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 76.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23802 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23803 - type: WarningAir - components: - - pos: 77.5,-39.5 - parent: 0 - type: Transform -- uid: 23804 - type: WarningWaste - components: - - pos: 90.5,-36.5 - parent: 0 - type: Transform -- uid: 23805 - type: WarningPlasma - components: - - pos: 90.5,-32.5 - parent: 0 - type: Transform -- uid: 23806 - type: NitrogenCanister - components: - - pos: 71.5,-42.5 - parent: 0 - type: Transform -- uid: 23807 - type: OxygenCanister - components: - - pos: 75.5,-42.5 - parent: 0 - type: Transform -- uid: 23808 - type: AirCanister - components: - - pos: 79.5,-42.5 - parent: 0 - type: Transform -- uid: 23809 - type: CarbonDioxideCanister - components: - - pos: 93.5,-42.5 - parent: 0 - type: Transform -- uid: 23810 - type: WaterVaporCanister - components: - - pos: 93.5,-38.5 - parent: 0 - type: Transform -- uid: 23811 - type: PlasmaCanister - components: - - pos: 93.5,-34.5 - parent: 0 - type: Transform -- uid: 23812 - type: WallReinforced - components: - - pos: 101.5,-28.5 - parent: 0 - type: Transform -- uid: 23813 - type: Grille - components: - - pos: 94.5,-27.5 - parent: 0 - type: Transform -- uid: 23814 - type: Grille - components: - - pos: 94.5,-25.5 - parent: 0 - type: Transform -- uid: 23815 - type: Grille - components: - - pos: 100.5,-28.5 - parent: 0 - type: Transform -- uid: 23816 - type: Grille - components: - - pos: 101.5,-29.5 - parent: 0 - type: Transform -- uid: 23817 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 87.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23818 - type: GasPipeStraight - components: - - pos: 88.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23819 - type: GasPipeStraight - components: - - pos: 88.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23820 - type: GasPipeStraight - components: - - pos: 88.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23821 - type: GasPipeStraight - components: - - pos: 88.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23822 - type: GasPipeStraight - components: - - pos: 88.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23823 - type: GasPipeStraight - components: - - pos: 86.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23824 - type: GasPipeStraight - components: - - pos: 88.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23825 - type: GasPipeStraight - components: - - pos: 88.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23826 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 90.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23827 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 89.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23828 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 88.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23829 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 88.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23830 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 86.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23831 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 86.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23832 - type: GasPipeBend - components: - - pos: 88.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23833 - type: GasFilter - components: - - name: Filter to Mix Chamber - type: MetaData - - rot: 3.141592653589793 rad - pos: 88.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23834 - type: GasValve - components: - - name: Waste to Space - type: MetaData - - rot: -1.5707963267948966 rad - pos: 100.5,-29.5 - parent: 0 - type: Transform - - open: False - type: GasValve - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23835 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 101.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23836 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 102.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23837 - type: GasPipeStraight - components: - - pos: 86.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23838 - type: GasPipeStraight - components: - - pos: 86.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23839 - type: GasPipeStraight - components: - - pos: 86.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23840 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 87.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23841 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 88.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23842 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 89.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23843 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 90.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23844 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 91.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23845 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 92.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23846 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 93.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23847 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 94.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23848 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 95.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23849 - type: GasPipeTJunction - components: - - pos: 98.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23850 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23851 - type: GasPipeTJunction - components: - - pos: 96.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23852 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 99.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23853 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 96.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23854 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 98.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23855 - type: GasFilter - components: - - name: Waste Filtered to Burn Chamber - type: MetaData - - rot: 1.5707963267948966 rad - pos: 97.5,-30.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23856 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 91.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23857 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 91.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23858 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 90.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23859 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 90.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23860 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 90.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23861 - type: GasPressurePump - components: - - name: Mixer Out Pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 89.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23862 - type: GasMixerFlipped - components: - - name: Mixer+Mix Mixer - type: MetaData - - rot: 1.5707963267948966 rad - pos: 87.5,-25.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23863 - type: GasPipeStraight - components: - - pos: 87.5,-32.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23864 - type: GasPipeStraight - components: - - pos: 87.5,-31.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23865 - type: GasPipeStraight - components: - - pos: 87.5,-30.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23866 - type: GasPipeStraight - components: - - pos: 87.5,-29.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23867 - type: GasPipeStraight - components: - - pos: 87.5,-28.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23868 - type: GasPipeStraight - components: - - pos: 87.5,-27.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23869 - type: GasPipeStraight - components: - - pos: 87.5,-26.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23870 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 88.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23871 - type: GasPipeFourway - components: - - pos: 85.5,-26.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23872 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 85.5,-25.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23873 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 86.5,-25.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23874 - type: GasValve - components: - - name: Line to Mixer - type: MetaData - - rot: -1.5707963267948966 rad - pos: 86.5,-26.5 - parent: 0 - type: Transform - - open: False - type: GasValve - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23875 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 87.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23876 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 88.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23877 - type: GasPressurePump - components: - - name: Mixer In Pump - type: MetaData - - rot: 1.5707963267948966 rad - pos: 89.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23878 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 90.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23879 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 91.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23880 - type: GasValve - components: - - name: Line to Burn Chamber - type: MetaData - - pos: 85.5,-27.5 - parent: 0 - type: Transform - - open: False - type: GasValve - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23881 - type: GasThermoMachineFreezer - components: - - pos: 85.5,-24.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor -- uid: 23882 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 85.5,-31.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23883 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-31.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23884 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 85.5,-30.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23885 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 85.5,-29.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23886 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 85.5,-28.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23887 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 86.5,-31.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23888 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 87.5,-31.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23889 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 88.5,-31.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23890 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 89.5,-31.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23891 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 90.5,-31.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23892 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 91.5,-31.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23893 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 92.5,-31.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23894 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 93.5,-31.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23895 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-31.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23896 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-31.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23897 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-31.5 - parent: 0 - type: Transform - - color: '#22BA29FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23898 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 84.5,-26.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23899 - type: GasPipeStraight - components: - - pos: 84.5,-27.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23900 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 77.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23901 - type: GasValve - components: - - name: Line to Product - type: MetaData - - pos: 84.5,-28.5 - parent: 0 - type: Transform - - open: False - type: GasValve - - color: '#BD9D1EFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23902 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 84.5,-29.5 - parent: 0 - type: Transform - - color: '#BD9D1EFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23903 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 84.5,-30.5 - parent: 0 - type: Transform - - color: '#BD9D1EFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23904 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 84.5,-31.5 - parent: 0 - type: Transform - - color: '#BD9D1EFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23905 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 84.5,-32.5 - parent: 0 - type: Transform - - color: '#BD9D1EFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23906 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 84.5,-33.5 - parent: 0 - type: Transform - - color: '#BD9D1EFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23907 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 83.5,-34.5 - parent: 0 - type: Transform - - color: '#BD9D1EFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23908 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 82.5,-34.5 - parent: 0 - type: Transform - - color: '#BD9D1EFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23909 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 81.5,-34.5 - parent: 0 - type: Transform - - color: '#BD9D1EFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23910 - type: GasPipeBend - components: - - pos: 82.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23911 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23912 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23913 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 84.5,-34.5 - parent: 0 - type: Transform - - color: '#BD9D1EFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23914 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 82.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23915 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 79.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23916 - type: GasPressurePump - components: - - name: Filtered Product to Waste - type: MetaData - - rot: 1.5707963267948966 rad - pos: 81.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23917 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 80.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23918 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23919 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 80.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23920 - type: GasPipeTJunction - components: - - pos: 80.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23921 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23922 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23923 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23924 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23925 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23926 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23927 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23928 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23929 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23930 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 74.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23931 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 76.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23932 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 75.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23933 - type: GasThermoMachineFreezer - components: - - pos: 77.5,-33.5 - parent: 0 - type: Transform -- uid: 23934 - type: GasPort - components: - - pos: 76.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23935 - type: GasPort - components: - - pos: 75.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23936 - type: GasPort - components: - - pos: 74.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23937 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23938 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23939 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23940 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23941 - type: GasPressurePump - components: - - name: Product to Waste - type: MetaData - - rot: -1.5707963267948966 rad - pos: 69.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23942 - type: GasThermoMachineHeater - components: - - pos: 74.5,-30.5 - parent: 0 - type: Transform -- uid: 23943 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 74.5,-31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23944 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 80.5,-31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23945 - type: GasPipeTJunction - components: - - pos: 76.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23946 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23947 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23948 - type: GasPipeTJunction - components: - - pos: 77.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23949 - type: GasPipeTJunction - components: - - pos: 78.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23950 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 73.5,-31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23951 - type: GasPipeBend - components: - - pos: 73.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23952 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23953 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23954 - type: GasPressurePump - components: - - name: Filtered Product to Waste - type: MetaData - - rot: -1.5707963267948966 rad - pos: 69.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23955 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 76.5,-31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23956 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 77.5,-31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23957 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 78.5,-31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23958 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-24.5 - parent: 0 - type: Transform -- uid: 23959 - type: CableMV - components: - - pos: 114.5,-25.5 - parent: 0 - type: Transform -- uid: 23960 - type: CableMV - components: - - pos: 114.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23961 - type: CableMV - components: - - pos: 114.5,-24.5 - parent: 0 - type: Transform -- uid: 23962 - type: CableMV - components: - - pos: 113.5,-24.5 - parent: 0 - type: Transform -- uid: 23963 - type: CableMV - components: - - pos: 112.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23964 - type: CableApcExtension - components: - - pos: 112.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23965 - type: CableApcExtension - components: - - pos: 113.5,-24.5 - parent: 0 - type: Transform -- uid: 23966 - type: CableApcExtension - components: - - pos: 114.5,-24.5 - parent: 0 - type: Transform -- uid: 23967 - type: CableApcExtension - components: - - pos: 115.5,-24.5 - parent: 0 - type: Transform -- uid: 23968 - type: CableApcExtension - components: - - pos: 116.5,-24.5 - parent: 0 - type: Transform -- uid: 23969 - type: CableApcExtension - components: - - pos: 117.5,-24.5 - parent: 0 - type: Transform -- uid: 23970 - type: CableApcExtension - components: - - pos: 118.5,-24.5 - parent: 0 - type: Transform -- uid: 23971 - type: CableApcExtension - components: - - pos: 119.5,-24.5 - parent: 0 - type: Transform -- uid: 23972 - type: CableApcExtension - components: - - pos: 120.5,-24.5 - parent: 0 - type: Transform -- uid: 23973 - type: CableApcExtension - components: - - pos: 121.5,-24.5 - parent: 0 - type: Transform -- uid: 23974 - type: CableApcExtension - components: - - pos: 117.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23975 - type: CableApcExtension - components: - - pos: 117.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23976 - type: CableApcExtension - components: - - pos: 117.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23977 - type: CableApcExtension - components: - - pos: 117.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23978 - type: CableApcExtension - components: - - pos: 113.5,-23.5 - parent: 0 - type: Transform -- uid: 23979 - type: CableApcExtension - components: - - pos: 113.5,-22.5 - parent: 0 - type: Transform -- uid: 23980 - type: CableApcExtension - components: - - pos: 112.5,-22.5 - parent: 0 - type: Transform -- uid: 23981 - type: CableApcExtension - components: - - pos: 111.5,-22.5 - parent: 0 - type: Transform -- uid: 23982 - type: CableApcExtension - components: - - pos: 111.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23983 - type: CableApcExtension - components: - - pos: 115.5,-25.5 - parent: 0 - type: Transform -- uid: 23984 - type: CableApcExtension - components: - - pos: 115.5,-23.5 - parent: 0 - type: Transform -- uid: 23985 - type: CableApcExtension - components: - - pos: 120.5,-25.5 - parent: 0 - type: Transform -- uid: 23986 - type: CableApcExtension - components: - - pos: 120.5,-23.5 - parent: 0 - type: Transform -- uid: 23987 - type: MountainRock - components: - - pos: 123.5,-26.5 - parent: 0 - type: Transform -- uid: 23988 - type: MountainRock - components: - - pos: 123.5,-25.5 - parent: 0 - type: Transform -- uid: 23989 - type: MountainRock - components: - - pos: 123.5,-23.5 - parent: 0 - type: Transform -- uid: 23990 - type: MountainRock - components: - - pos: 123.5,-22.5 - parent: 0 - type: Transform -- uid: 23991 - type: Grille - components: - - pos: 117.5,-26.5 - parent: 0 - type: Transform -- uid: 23992 - type: Grille - components: - - pos: 117.5,-25.5 - parent: 0 - type: Transform -- uid: 23993 - type: Grille - components: - - pos: 117.5,-23.5 - parent: 0 - type: Transform -- uid: 23994 - type: Grille - components: - - pos: 117.5,-22.5 - parent: 0 - type: Transform -- uid: 23995 - type: Catwalk - components: - - pos: 115.5,-26.5 - parent: 0 - type: Transform -- uid: 23996 - type: Catwalk - components: - - pos: 116.5,-26.5 - parent: 0 - type: Transform -- uid: 23997 - type: Catwalk - components: - - pos: 116.5,-22.5 - parent: 0 - type: Transform -- uid: 23998 - type: Catwalk - components: - - pos: 115.5,-22.5 - parent: 0 - type: Transform -- uid: 23999 - type: Catwalk - components: - - pos: 114.5,-22.5 - parent: 0 - type: Transform -- uid: 24000 - type: HighSecCommandLocked - components: - - pos: 112.5,-22.5 - parent: 0 - type: Transform -- uid: 24001 - type: HighSecCommandLocked - components: - - pos: 111.5,-21.5 - parent: 0 - type: Transform -- uid: 24002 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24003 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 81.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24004 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 82.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24005 - type: GasPort - components: - - pos: 79.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24006 - type: GasPort - components: - - pos: 80.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24007 - type: GasPort - components: - - pos: 81.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 24008 - type: GasPort - components: - - pos: 82.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 24009 - type: PortableScrubber - components: - - pos: 79.5,-26.5 - parent: 0 - type: Transform -- uid: 24010 - type: PortableScrubber - components: - - pos: 80.5,-26.5 - parent: 0 - type: Transform -- uid: 24011 - type: AirCanister - components: - - pos: 81.5,-26.5 - parent: 0 - type: Transform -- uid: 24012 - type: AirCanister - components: - - pos: 82.5,-26.5 - parent: 0 - type: Transform -- uid: 24013 - type: StorageCanister - components: - - pos: 74.5,-33.5 - parent: 0 - type: Transform -- uid: 24014 - type: StorageCanister - components: - - pos: 75.5,-33.5 - parent: 0 - type: Transform -- uid: 24015 - type: StorageCanister - components: - - pos: 76.5,-33.5 - parent: 0 - type: Transform -- uid: 24016 - type: StorageCanister - components: - - pos: 76.5,-31.5 - parent: 0 - type: Transform -- uid: 24017 - type: StorageCanister - components: - - pos: 77.5,-31.5 - parent: 0 - type: Transform -- uid: 24018 - type: StorageCanister - components: - - pos: 78.5,-31.5 - parent: 0 - type: Transform -- uid: 24019 - type: TableReinforced - components: - - pos: 64.5,-13.5 - parent: 0 - type: Transform -- uid: 24020 - type: SignalButton - components: - - pos: 62.5,-16.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 24022 - - port: Toggle - uid: 24021 - type: SignalTransmitter -- uid: 24021 - type: BlastDoorOpen - components: - - pos: 64.5,-13.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24020 - type: SignalReceiver -- uid: 24022 - type: BlastDoorOpen - components: - - pos: 63.5,-13.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24020 - type: SignalReceiver -- uid: 24023 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24024 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24025 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24026 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24027 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 64.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24028 - type: GasPipeFourway - components: - - pos: 63.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24029 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24030 - type: GasPipeBend - components: - - pos: 63.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24031 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24032 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24033 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24034 - type: GasPipeTJunction - components: - - pos: 64.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24035 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24036 - type: DisposalUnit - components: - - pos: 66.5,-18.5 - parent: 0 - type: Transform -- uid: 24037 - type: GasPort - components: - - pos: 63.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24038 - type: GasPort - components: - - pos: 64.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24039 - type: GasPort - components: - - pos: 65.5,-7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 24040 - type: GasPort - components: - - pos: 66.5,-7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 24041 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 66.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24042 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 64.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24043 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 63.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24044 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24045 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 64.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24046 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 64.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24047 - type: DisposalUnit - components: - - pos: 71.5,-16.5 - parent: 0 - type: Transform -- uid: 24048 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-18.5 - parent: 0 - type: Transform -- uid: 24049 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 71.5,-16.5 - parent: 0 - type: Transform -- uid: 24050 - type: DisposalUnit - components: - - pos: 82.5,-16.5 - parent: 0 - type: Transform -- uid: 24051 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 76.5,-6.5 - parent: 0 - type: Transform -- uid: 24052 - type: DisposalUnit - components: - - pos: 76.5,-6.5 - parent: 0 - type: Transform -- uid: 24053 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 82.5,-16.5 - parent: 0 - type: Transform -- uid: 24054 - type: DisposalBend - components: - - pos: 82.5,-13.5 - parent: 0 - type: Transform -- uid: 24055 - type: DisposalBend - components: - - pos: 78.5,-6.5 - parent: 0 - type: Transform -- uid: 24056 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-13.5 - parent: 0 - type: Transform -- uid: 24057 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-13.5 - parent: 0 - type: Transform -- uid: 24058 - type: DisposalYJunction - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-15.5 - parent: 0 - type: Transform -- uid: 24059 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 68.5,-15.5 - parent: 0 - type: Transform -- uid: 24060 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: 68.5,-18.5 - parent: 0 - type: Transform -- uid: 24061 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-18.5 - parent: 0 - type: Transform -- uid: 24062 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 68.5,-17.5 - parent: 0 - type: Transform -- uid: 24063 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 68.5,-16.5 - parent: 0 - type: Transform -- uid: 24064 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-15.5 - parent: 0 - type: Transform -- uid: 24065 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-15.5 - parent: 0 - type: Transform -- uid: 24066 - type: DisposalPipe - components: - - pos: 71.5,-14.5 - parent: 0 - type: Transform -- uid: 24067 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-13.5 - parent: 0 - type: Transform -- uid: 24068 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-13.5 - parent: 0 - type: Transform -- uid: 24069 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-13.5 - parent: 0 - type: Transform -- uid: 24070 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-13.5 - parent: 0 - type: Transform -- uid: 24071 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-13.5 - parent: 0 - type: Transform -- uid: 24072 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-13.5 - parent: 0 - type: Transform -- uid: 24073 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-15.5 - parent: 0 - type: Transform -- uid: 24074 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 82.5,-14.5 - parent: 0 - type: Transform -- uid: 24075 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 81.5,-13.5 - parent: 0 - type: Transform -- uid: 24076 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 80.5,-13.5 - parent: 0 - type: Transform -- uid: 24077 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-13.5 - parent: 0 - type: Transform -- uid: 24078 - type: DisposalPipe - components: - - pos: 78.5,-12.5 - parent: 0 - type: Transform -- uid: 24079 - type: DisposalPipe - components: - - pos: 78.5,-11.5 - parent: 0 - type: Transform -- uid: 24080 - type: DisposalPipe - components: - - pos: 78.5,-10.5 - parent: 0 - type: Transform -- uid: 24081 - type: DisposalPipe - components: - - pos: 78.5,-9.5 - parent: 0 - type: Transform -- uid: 24082 - type: DisposalPipe - components: - - pos: 78.5,-8.5 - parent: 0 - type: Transform -- uid: 24083 - type: DisposalPipe - components: - - pos: 78.5,-7.5 - parent: 0 - type: Transform -- uid: 24084 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-6.5 - parent: 0 - type: Transform -- uid: 24085 - type: DisposalBend - components: - - pos: 68.5,-10.5 - parent: 0 - type: Transform -- uid: 24086 - type: DisposalPipe - components: - - pos: 68.5,-14.5 - parent: 0 - type: Transform -- uid: 24087 - type: DisposalPipe - components: - - pos: 68.5,-13.5 - parent: 0 - type: Transform -- uid: 24088 - type: DisposalPipe - components: - - pos: 68.5,-12.5 - parent: 0 - type: Transform -- uid: 24089 - type: DisposalPipe - components: - - pos: 68.5,-11.5 - parent: 0 - type: Transform -- uid: 24090 - type: DisposalYJunction - components: - - rot: 3.141592653589793 rad - pos: 67.5,-10.5 - parent: 0 - type: Transform -- uid: 24091 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-10.5 - parent: 0 - type: Transform -- uid: 24092 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-10.5 - parent: 0 - type: Transform -- uid: 24093 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-10.5 - parent: 0 - type: Transform -- uid: 24094 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 67.5,-9.5 - parent: 0 - type: Transform -- uid: 24095 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 67.5,-8.5 - parent: 0 - type: Transform -- uid: 24096 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 67.5,-7.5 - parent: 0 - type: Transform -- uid: 24097 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 67.5,-6.5 - parent: 0 - type: Transform -- uid: 24098 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-5.5 - parent: 0 - type: Transform -- uid: 24099 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-5.5 - parent: 0 - type: Transform -- uid: 24100 - type: DisposalPipe - components: - - pos: 64.5,-4.5 - parent: 0 - type: Transform -- uid: 24101 - type: DisposalPipe - components: - - pos: 64.5,-3.5 - parent: 0 - type: Transform -- uid: 24102 - type: DisposalPipe - components: - - pos: 64.5,-2.5 - parent: 0 - type: Transform -- uid: 24103 - type: DisposalPipe - components: - - pos: 64.5,-1.5 - parent: 0 - type: Transform -- uid: 24104 - type: DisposalPipe - components: - - pos: 64.5,-0.5 - parent: 0 - type: Transform -- uid: 24105 - type: DisposalPipe - components: - - pos: 64.5,0.5 - parent: 0 - type: Transform -- uid: 24106 - type: DisposalPipe - components: - - pos: 64.5,1.5 - parent: 0 - type: Transform -- uid: 24107 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 65.5,2.5 - parent: 0 - type: Transform -- uid: 24108 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 66.5,2.5 - parent: 0 - type: Transform -- uid: 24109 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 67.5,2.5 - parent: 0 - type: Transform -- uid: 24110 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 69.5,3.5 - parent: 0 - type: Transform -- uid: 24111 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 70.5,3.5 - parent: 0 - type: Transform -- uid: 24112 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 71.5,3.5 - parent: 0 - type: Transform -- uid: 24113 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 72.5,3.5 - parent: 0 - type: Transform -- uid: 24114 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 73.5,3.5 - parent: 0 - type: Transform -- uid: 24115 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 74.5,3.5 - parent: 0 - type: Transform -- uid: 24116 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 76.5,4.5 - parent: 0 - type: Transform -- uid: 24117 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 77.5,4.5 - parent: 0 - type: Transform -- uid: 24118 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 78.5,4.5 - parent: 0 - type: Transform -- uid: 24119 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 79.5,4.5 - parent: 0 - type: Transform -- uid: 24120 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 80.5,4.5 - parent: 0 - type: Transform -- uid: 24121 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 81.5,5.5 - parent: 0 - type: Transform -- uid: 24122 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 81.5,6.5 - parent: 0 - type: Transform -- uid: 24123 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 81.5,7.5 - parent: 0 - type: Transform -- uid: 24124 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 81.5,8.5 - parent: 0 - type: Transform -- uid: 24125 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 81.5,9.5 - parent: 0 - type: Transform -- uid: 24126 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 82.5,10.5 - parent: 0 - type: Transform -- uid: 24127 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 83.5,10.5 - parent: 0 - type: Transform -- uid: 24128 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 84.5,10.5 - parent: 0 - type: Transform -- uid: 24129 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 85.5,10.5 - parent: 0 - type: Transform -- uid: 24130 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 86.5,10.5 - parent: 0 - type: Transform -- uid: 24131 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 87.5,10.5 - parent: 0 - type: Transform -- uid: 24132 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 88.5,10.5 - parent: 0 - type: Transform -- uid: 24133 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 89.5,10.5 - parent: 0 - type: Transform -- uid: 24134 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 90.5,10.5 - parent: 0 - type: Transform -- uid: 24135 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 91.5,10.5 - parent: 0 - type: Transform -- uid: 24136 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 92.5,10.5 - parent: 0 - type: Transform -- uid: 24137 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 81.5,10.5 - parent: 0 - type: Transform -- uid: 24138 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 81.5,4.5 - parent: 0 - type: Transform -- uid: 24139 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 75.5,4.5 - parent: 0 - type: Transform -- uid: 24140 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 68.5,3.5 - parent: 0 - type: Transform -- uid: 24141 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 64.5,2.5 - parent: 0 - type: Transform -- uid: 24142 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 64.5,-5.5 - parent: 0 - type: Transform -- uid: 24143 - type: DisposalBend - components: - - pos: 67.5,-5.5 - parent: 0 - type: Transform -- uid: 24144 - type: PortableScrubber - components: - - pos: 62.5,-20.5 - parent: 0 - type: Transform -- uid: 24145 - type: PortableScrubber - components: - - pos: 62.5,-19.5 - parent: 0 - type: Transform -- uid: 24146 - type: PortableScrubber - components: - - pos: 62.5,-18.5 - parent: 0 - type: Transform -- uid: 24147 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-5.5 - parent: 0 - type: Transform -- uid: 24148 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 62.5,-6.5 - parent: 0 - type: Transform -- uid: 24149 - type: APCBasic - components: - - pos: 72.5,-7.5 - parent: 0 - type: Transform -- uid: 24150 - type: APCBasic - components: - - pos: 69.5,-7.5 - parent: 0 - type: Transform -- uid: 24151 - type: CableMV - components: - - pos: 68.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24152 - type: CableMV - components: - - pos: 67.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24153 - type: CableMV - components: - - pos: 66.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24154 - type: CableMV - components: - - pos: 65.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24155 - type: CableMV - components: - - pos: 64.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24156 - type: CableMV - components: - - pos: 64.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24157 - type: CableMV - components: - - pos: 64.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24158 - type: CableMV - components: - - pos: 64.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24159 - type: CableMV - components: - - pos: 64.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24160 - type: CableMV - components: - - pos: 64.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24161 - type: CableMV - components: - - pos: 65.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24162 - type: CableMV - components: - - pos: 66.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24163 - type: CableMV - components: - - pos: 67.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24164 - type: CableMV - components: - - pos: 67.5,-6.5 - parent: 0 - type: Transform -- uid: 24165 - type: CableMV - components: - - pos: 67.5,-7.5 - parent: 0 - type: Transform -- uid: 24166 - type: CableMV - components: - - pos: 67.5,-8.5 - parent: 0 - type: Transform -- uid: 24167 - type: CableMV - components: - - pos: 68.5,-8.5 - parent: 0 - type: Transform -- uid: 24168 - type: CableMV - components: - - pos: 69.5,-8.5 - parent: 0 - type: Transform -- uid: 24169 - type: CableMV - components: - - pos: 69.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24170 - type: CableMV - components: - - pos: 69.5,-9.5 - parent: 0 - type: Transform -- uid: 24171 - type: CableMV - components: - - pos: 70.5,-9.5 - parent: 0 - type: Transform -- uid: 24172 - type: CableMV - components: - - pos: 71.5,-9.5 - parent: 0 - type: Transform -- uid: 24173 - type: CableMV - components: - - pos: 72.5,-9.5 - parent: 0 - type: Transform -- uid: 24174 - type: CableMV - components: - - pos: 72.5,-8.5 - parent: 0 - type: Transform -- uid: 24175 - type: CableMV - components: - - pos: 72.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24176 - type: CableMV - components: - - pos: 70.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24177 - type: CableMV - components: - - pos: 70.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24178 - type: CableMV - components: - - pos: 73.5,-9.5 - parent: 0 - type: Transform -- uid: 24179 - type: CableMV - components: - - pos: 74.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24180 - type: CableMV - components: - - pos: 74.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24181 - type: CableMV - components: - - pos: 74.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24182 - type: CableMV - components: - - pos: 67.5,-9.5 - parent: 0 - type: Transform -- uid: 24183 - type: CableMV - components: - - pos: 66.5,-9.5 - parent: 0 - type: Transform -- uid: 24184 - type: CableMV - components: - - pos: 65.5,-9.5 - parent: 0 - type: Transform -- uid: 24185 - type: CableMV - components: - - pos: 64.5,-9.5 - parent: 0 - type: Transform -- uid: 24186 - type: CableMV - components: - - pos: 63.5,-9.5 - parent: 0 - type: Transform -- uid: 24187 - type: CableMV - components: - - pos: 62.5,-9.5 - parent: 0 - type: Transform -- uid: 24188 - type: CableMV - components: - - pos: 61.5,-9.5 - parent: 0 - type: Transform -- uid: 24189 - type: CableMV - components: - - pos: 60.5,-9.5 - parent: 0 - type: Transform -- uid: 24190 - type: CableMV - components: - - pos: 60.5,-8.5 - parent: 0 - type: Transform -- uid: 24191 - type: CableMV - components: - - pos: 61.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24192 - type: CableMV - components: - - pos: 59.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24193 - type: CableMV - components: - - pos: 60.5,-7.5 - parent: 0 - type: Transform -- uid: 24194 - type: CableMV - components: - - pos: 60.5,-6.5 - parent: 0 - type: Transform -- uid: 24195 - type: CableMV - components: - - pos: 61.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24196 - type: CableMV - components: - - pos: 62.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24197 - type: CableMV - components: - - pos: 59.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24198 - type: CableMV - components: - - pos: 67.5,-10.5 - parent: 0 - type: Transform -- uid: 24199 - type: CableMV - components: - - pos: 67.5,-11.5 - parent: 0 - type: Transform -- uid: 24200 - type: CableMV - components: - - pos: 67.5,-12.5 - parent: 0 - type: Transform -- uid: 24201 - type: CableMV - components: - - pos: 67.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24202 - type: CableMV - components: - - pos: 69.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24203 - type: CableMV - components: - - pos: 69.5,-12.5 - parent: 0 - type: Transform -- uid: 24204 - type: CableMV - components: - - pos: 69.5,-11.5 - parent: 0 - type: Transform -- uid: 24205 - type: CableMV - components: - - pos: 69.5,-10.5 - parent: 0 - type: Transform -- uid: 24206 - type: APCBasic - components: - - pos: 66.5,-17.5 - parent: 0 - type: Transform -- uid: 24207 - type: APCBasic - components: - - pos: 80.5,-17.5 - parent: 0 - type: Transform -- uid: 24208 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-25.5 - parent: 0 - type: Transform -- uid: 24209 - type: CableMV - components: - - pos: 66.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24210 - type: CableMV - components: - - pos: 66.5,-18.5 - parent: 0 - type: Transform -- uid: 24211 - type: CableMV - components: - - pos: 67.5,-18.5 - parent: 0 - type: Transform -- uid: 24212 - type: CableMV - components: - - pos: 68.5,-18.5 - parent: 0 - type: Transform -- uid: 24213 - type: CableMV - components: - - pos: 68.5,-17.5 - parent: 0 - type: Transform -- uid: 24214 - type: CableMV - components: - - pos: 68.5,-16.5 - parent: 0 - type: Transform -- uid: 24215 - type: CableMV - components: - - pos: 68.5,-15.5 - parent: 0 - type: Transform -- uid: 24216 - type: CableMV - components: - - pos: 68.5,-14.5 - parent: 0 - type: Transform -- uid: 24217 - type: CableMV - components: - - pos: 68.5,-13.5 - parent: 0 - type: Transform -- uid: 24218 - type: CableHV - components: - - pos: 42.5,-10.5 - parent: 0 - type: Transform -- uid: 24219 - type: CableHV - components: - - pos: 42.5,-11.5 - parent: 0 - type: Transform -- uid: 24220 - type: CableMV - components: - - pos: 31.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24221 - type: CableMV - components: - - pos: 38.5,-15.5 - parent: 0 - type: Transform -- uid: 24222 - type: CableMV - components: - - pos: 37.5,-15.5 - parent: 0 - type: Transform -- uid: 24223 - type: CableMV - components: - - pos: 37.5,-14.5 - parent: 0 - type: Transform -- uid: 24224 - type: CableMV - components: - - pos: 37.5,-13.5 - parent: 0 - type: Transform -- uid: 24225 - type: CableMV - components: - - pos: 37.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24226 - type: CableMV - components: - - pos: 37.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24227 - type: AirlockEngineeringLocked - components: - - pos: 37.5,-13.5 - parent: 0 - type: Transform -- uid: 24228 - type: SignElectricalMed - components: - - pos: 38.5,-13.5 - parent: 0 - type: Transform -- uid: 24229 - type: CableHV - components: - - pos: 37.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24230 - type: CableHV - components: - - pos: 42.5,-13.5 - parent: 0 - type: Transform -- uid: 24231 - type: CableHV - components: - - pos: 37.5,-14.5 - parent: 0 - type: Transform -- uid: 24232 - type: CableHV - components: - - pos: 37.5,-13.5 - parent: 0 - type: Transform -- uid: 24233 - type: CableHV - components: - - pos: 40.5,-15.5 - parent: 0 - type: Transform -- uid: 24234 - type: CableHV - components: - - pos: 38.5,-15.5 - parent: 0 - type: Transform -- uid: 24235 - type: CableHV - components: - - pos: 37.5,-15.5 - parent: 0 - type: Transform -- uid: 24236 - type: CableHV - components: - - pos: 39.5,-15.5 - parent: 0 - type: Transform -- uid: 24237 - type: CableHV - components: - - pos: 42.5,-15.5 - parent: 0 - type: Transform -- uid: 24238 - type: CableHV - components: - - pos: 41.5,-15.5 - parent: 0 - type: Transform -- uid: 24239 - type: CableHV - components: - - pos: 42.5,-14.5 - parent: 0 - type: Transform -- uid: 24240 - type: CableHV - components: - - pos: 37.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24241 - type: WallReinforced - components: - - pos: 101.5,-44.5 - parent: 0 - type: Transform -- uid: 24242 - type: WallReinforced - components: - - pos: 100.5,-44.5 - parent: 0 - type: Transform -- uid: 24243 - type: WallReinforced - components: - - pos: 99.5,-44.5 - parent: 0 - type: Transform -- uid: 24244 - type: WallReinforced - components: - - pos: 99.5,-43.5 - parent: 0 - type: Transform -- uid: 24245 - type: WallReinforced - components: - - pos: 99.5,-41.5 - parent: 0 - type: Transform -- uid: 24246 - type: SubstationBasic - components: - - name: South East Atmos Sub - type: MetaData - - pos: 101.5,-43.5 - parent: 0 - type: Transform -- uid: 24247 - type: CableHV - components: - - pos: 101.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24248 - type: CableHV - components: - - pos: 101.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24249 - type: CableHV - components: - - pos: 100.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24250 - type: CableHV - components: - - pos: 99.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24251 - type: CableHV - components: - - pos: 98.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24252 - type: CableHV - components: - - pos: 97.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24253 - type: CableHV - components: - - pos: 97.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24254 - type: CableHV - components: - - pos: 97.5,-40.5 - parent: 0 - type: Transform -- uid: 24255 - type: CableHV - components: - - pos: 97.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24256 - type: CableHV - components: - - pos: 97.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24257 - type: CableHV - components: - - pos: 97.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24258 - type: CableMV - components: - - pos: 96.5,-38.5 - parent: 0 - type: Transform -- uid: 24259 - type: CableHV - components: - - pos: 97.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24260 - type: CableHV - components: - - pos: 97.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24261 - type: CableHV - components: - - pos: 97.5,-33.5 - parent: 0 - type: Transform -- uid: 24262 - type: CableHV - components: - - pos: 97.5,-32.5 - parent: 0 - type: Transform -- uid: 24263 - type: CableHV - components: - - pos: 97.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24264 - type: CableHV - components: - - pos: 96.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24265 - type: CableHV - components: - - pos: 95.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24266 - type: CableHV - components: - - pos: 94.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24267 - type: CableHV - components: - - pos: 93.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24268 - type: CableHV - components: - - pos: 92.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24269 - type: CableHV - components: - - pos: 91.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24270 - type: CableHV - components: - - pos: 90.5,-31.5 - parent: 0 - type: Transform -- uid: 24271 - type: CableHV - components: - - pos: 89.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24272 - type: CableHV - components: - - pos: 88.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24273 - type: CableHV - components: - - pos: 87.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24274 - type: CableHV - components: - - pos: 86.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24275 - type: CableHV - components: - - pos: 85.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24276 - type: CableHV - components: - - pos: 84.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24277 - type: CableHV - components: - - pos: 83.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24278 - type: CableHV - components: - - pos: 82.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24279 - type: CableHV - components: - - pos: 81.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24280 - type: CableHV - components: - - pos: 80.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24281 - type: CableHV - components: - - pos: 79.5,-31.5 - parent: 0 - type: Transform -- uid: 24282 - type: CableHV - components: - - pos: 78.5,-31.5 - parent: 0 - type: Transform -- uid: 24283 - type: CableHV - components: - - pos: 77.5,-31.5 - parent: 0 - type: Transform -- uid: 24284 - type: CableHV - components: - - pos: 76.5,-31.5 - parent: 0 - type: Transform -- uid: 24285 - type: CableHV - components: - - pos: 75.5,-31.5 - parent: 0 - type: Transform -- uid: 24286 - type: CableHV - components: - - pos: 74.5,-31.5 - parent: 0 - type: Transform -- uid: 24287 - type: CableHV - components: - - pos: 73.5,-31.5 - parent: 0 - type: Transform -- uid: 24288 - type: CableHV - components: - - pos: 72.5,-31.5 - parent: 0 - type: Transform -- uid: 24289 - type: CableHV - components: - - pos: 71.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24290 - type: CableHV - components: - - pos: 70.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24291 - type: CableHV - components: - - pos: 69.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24292 - type: CableHV - components: - - pos: 69.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24293 - type: CableHV - components: - - pos: 69.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24294 - type: CableHV - components: - - pos: 69.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24295 - type: CableHV - components: - - pos: 69.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24296 - type: CableHV - components: - - pos: 69.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24297 - type: CableHV - components: - - pos: 68.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24298 - type: CableHV - components: - - pos: 67.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24299 - type: CableHV - components: - - pos: 66.5,-36.5 - parent: 0 - type: Transform -- uid: 24300 - type: CableHV - components: - - pos: 65.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24301 - type: CableHV - components: - - pos: 68.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24302 - type: CableHV - components: - - pos: 68.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24303 - type: CableHV - components: - - pos: 68.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24304 - type: CableHV - components: - - pos: 68.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24305 - type: CableHV - components: - - pos: 68.5,-27.5 - parent: 0 - type: Transform -- uid: 24306 - type: CableHV - components: - - pos: 68.5,-26.5 - parent: 0 - type: Transform -- uid: 24307 - type: CableHV - components: - - pos: 68.5,-25.5 - parent: 0 - type: Transform -- uid: 24308 - type: CableHV - components: - - pos: 68.5,-24.5 - parent: 0 - type: Transform -- uid: 24309 - type: CableHV - components: - - pos: 68.5,-23.5 - parent: 0 - type: Transform -- uid: 24310 - type: CableHV - components: - - pos: 68.5,-22.5 - parent: 0 - type: Transform -- uid: 24311 - type: CableHV - components: - - pos: 68.5,-21.5 - parent: 0 - type: Transform -- uid: 24312 - type: CableHV - components: - - pos: 68.5,-20.5 - parent: 0 - type: Transform -- uid: 24313 - type: CableHV - components: - - pos: 68.5,-19.5 - parent: 0 - type: Transform -- uid: 24314 - type: CableHV - components: - - pos: 68.5,-18.5 - parent: 0 - type: Transform -- uid: 24315 - type: CableHV - components: - - pos: 68.5,-17.5 - parent: 0 - type: Transform -- uid: 24316 - type: CableHV - components: - - pos: 68.5,-16.5 - parent: 0 - type: Transform -- uid: 24317 - type: CableHV - components: - - pos: 68.5,-15.5 - parent: 0 - type: Transform -- uid: 24318 - type: CableHV - components: - - pos: 68.5,-14.5 - parent: 0 - type: Transform -- uid: 24319 - type: CableHV - components: - - pos: 68.5,-13.5 - parent: 0 - type: Transform -- uid: 24320 - type: CableHV - components: - - pos: 68.5,-12.5 - parent: 0 - type: Transform -- uid: 24321 - type: CableHV - components: - - pos: 68.5,-11.5 - parent: 0 - type: Transform -- uid: 24322 - type: CableHV - components: - - pos: 68.5,-10.5 - parent: 0 - type: Transform -- uid: 24323 - type: CableHV - components: - - pos: 69.5,-15.5 - parent: 0 - type: Transform -- uid: 24324 - type: CableHV - components: - - pos: 70.5,-15.5 - parent: 0 - type: Transform -- uid: 24325 - type: CableHV - components: - - pos: 71.5,-15.5 - parent: 0 - type: Transform -- uid: 24326 - type: CableHV - components: - - pos: 72.5,-15.5 - parent: 0 - type: Transform -- uid: 24327 - type: CableHV - components: - - pos: 73.5,-15.5 - parent: 0 - type: Transform -- uid: 24328 - type: CableHV - components: - - pos: 74.5,-15.5 - parent: 0 - type: Transform -- uid: 24329 - type: CableHV - components: - - pos: 75.5,-15.5 - parent: 0 - type: Transform -- uid: 24330 - type: CableMV - components: - - pos: 101.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24331 - type: CableMV - components: - - pos: 101.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24332 - type: CableMV - components: - - pos: 100.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24333 - type: CableMV - components: - - pos: 102.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24334 - type: CableMV - components: - - pos: 99.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24335 - type: CableMV - components: - - pos: 98.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24336 - type: CableMV - components: - - pos: 97.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24337 - type: CableMV - components: - - pos: 97.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24338 - type: CableMV - components: - - pos: 97.5,-40.5 - parent: 0 - type: Transform -- uid: 24339 - type: CableMV - components: - - pos: 96.5,-35.5 - parent: 0 - type: Transform -- uid: 24340 - type: CableMV - components: - - pos: 96.5,-36.5 - parent: 0 - type: Transform -- uid: 24341 - type: CableMV - components: - - pos: 96.5,-37.5 - parent: 0 - type: Transform -- uid: 24342 - type: CableMV - components: - - pos: 96.5,-39.5 - parent: 0 - type: Transform -- uid: 24343 - type: CableMV - components: - - pos: 97.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24344 - type: CableHV - components: - - pos: 97.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24345 - type: CableMV - components: - - pos: 97.5,-33.5 - parent: 0 - type: Transform -- uid: 24346 - type: CableMV - components: - - pos: 97.5,-32.5 - parent: 0 - type: Transform -- uid: 24347 - type: CableMV - components: - - pos: 97.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24348 - type: CableMV - components: - - pos: 96.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24349 - type: CableMV - components: - - pos: 96.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24350 - type: CableMV - components: - - pos: 95.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24351 - type: CableMV - components: - - pos: 94.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24352 - type: CableMV - components: - - pos: 93.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24353 - type: CableMV - components: - - pos: 92.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24354 - type: CableMV - components: - - pos: 91.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24355 - type: CableMV - components: - - pos: 90.5,-30.5 - parent: 0 - type: Transform -- uid: 24356 - type: CableMV - components: - - pos: 89.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24357 - type: CableMV - components: - - pos: 88.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24358 - type: CableMV - components: - - pos: 87.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24359 - type: CableMV - components: - - pos: 86.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24360 - type: CableMV - components: - - pos: 84.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24361 - type: CableMV - components: - - pos: 83.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24362 - type: CableMV - components: - - pos: 82.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24363 - type: CableMV - components: - - pos: 81.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24364 - type: CableMV - components: - - pos: 80.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24365 - type: CableMV - components: - - pos: 79.5,-31.5 - parent: 0 - type: Transform -- uid: 24366 - type: CableMV - components: - - pos: 78.5,-31.5 - parent: 0 - type: Transform -- uid: 24367 - type: CableMV - components: - - pos: 77.5,-31.5 - parent: 0 - type: Transform -- uid: 24368 - type: CableMV - components: - - pos: 76.5,-31.5 - parent: 0 - type: Transform -- uid: 24369 - type: CableMV - components: - - pos: 69.5,-27.5 - parent: 0 - type: Transform -- uid: 24370 - type: CableMV - components: - - pos: 68.5,-27.5 - parent: 0 - type: Transform -- uid: 24371 - type: CableApcExtension - components: - - pos: 96.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24372 - type: CableMV - components: - - pos: 71.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24373 - type: CableMV - components: - - pos: 72.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24374 - type: CableMV - components: - - pos: 73.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24375 - type: CableMV - components: - - pos: 74.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24376 - type: CableMV - components: - - pos: 75.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24377 - type: CableMV - components: - - pos: 76.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24378 - type: CableMV - components: - - pos: 70.5,-27.5 - parent: 0 - type: Transform -- uid: 24379 - type: CableMV - components: - - pos: 70.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24380 - type: CableApcExtension - components: - - pos: 98.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24381 - type: CableMV - components: - - pos: 67.5,-27.5 - parent: 0 - type: Transform -- uid: 24382 - type: CableMV - components: - - pos: 67.5,-26.5 - parent: 0 - type: Transform -- uid: 24383 - type: CableMV - components: - - pos: 67.5,-25.5 - parent: 0 - type: Transform -- uid: 24384 - type: CableMV - components: - - pos: 68.5,-25.5 - parent: 0 - type: Transform -- uid: 24385 - type: CableMV - components: - - pos: 69.5,-25.5 - parent: 0 - type: Transform -- uid: 24386 - type: CableMV - components: - - pos: 70.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24387 - type: CableMV - components: - - pos: 71.5,-25.5 - parent: 0 - type: Transform -- uid: 24388 - type: CableMV - components: - - pos: 72.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24389 - type: CableMV - components: - - pos: 73.5,-25.5 - parent: 0 - type: Transform -- uid: 24390 - type: CableMV - components: - - pos: 74.5,-25.5 - parent: 0 - type: Transform -- uid: 24391 - type: CableMV - components: - - pos: 75.5,-25.5 - parent: 0 - type: Transform -- uid: 24392 - type: CableMV - components: - - pos: 76.5,-25.5 - parent: 0 - type: Transform -- uid: 24393 - type: CableMV - components: - - pos: 77.5,-25.5 - parent: 0 - type: Transform -- uid: 24394 - type: CableMV - components: - - pos: 78.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24395 - type: CableMV - components: - - pos: 76.5,-24.5 - parent: 0 - type: Transform -- uid: 24396 - type: CableMV - components: - - pos: 76.5,-24.5 - parent: 0 - type: Transform -- uid: 24397 - type: CableMV - components: - - pos: 76.5,-23.5 - parent: 0 - type: Transform -- uid: 24398 - type: CableMV - components: - - pos: 76.5,-22.5 - parent: 0 - type: Transform -- uid: 24399 - type: CableMV - components: - - pos: 76.5,-21.5 - parent: 0 - type: Transform -- uid: 24400 - type: CableMV - components: - - pos: 76.5,-20.5 - parent: 0 - type: Transform -- uid: 24401 - type: CableMV - components: - - pos: 76.5,-19.5 - parent: 0 - type: Transform -- uid: 24402 - type: CableMV - components: - - pos: 76.5,-18.5 - parent: 0 - type: Transform -- uid: 24403 - type: CableMV - components: - - pos: 77.5,-18.5 - parent: 0 - type: Transform -- uid: 24404 - type: CableMV - components: - - pos: 78.5,-18.5 - parent: 0 - type: Transform -- uid: 24405 - type: CableMV - components: - - pos: 79.5,-18.5 - parent: 0 - type: Transform -- uid: 24406 - type: CableMV - components: - - pos: 80.5,-18.5 - parent: 0 - type: Transform -- uid: 24407 - type: CableMV - components: - - pos: 80.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24408 - type: APCBasic - components: - - pos: 78.5,-32.5 - parent: 0 - type: Transform -- uid: 24409 - type: APCBasic - components: - - pos: 99.5,-32.5 - parent: 0 - type: Transform -- uid: 24410 - type: APCBasic - components: - - pos: 96.5,-18.5 - parent: 0 - type: Transform -- uid: 24411 - type: CableMV - components: - - pos: 78.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24412 - type: CableMV - components: - - pos: 98.5,-33.5 - parent: 0 - type: Transform -- uid: 24413 - type: CableMV - components: - - pos: 96.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24414 - type: CableMV - components: - - pos: 99.5,-33.5 - parent: 0 - type: Transform -- uid: 24415 - type: CableMV - components: - - pos: 99.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24416 - type: CableMV - components: - - pos: 96.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24417 - type: CableMV - components: - - pos: 96.5,-20.5 - parent: 0 - type: Transform -- uid: 24418 - type: CableMV - components: - - pos: 96.5,-21.5 - parent: 0 - type: Transform -- uid: 24419 - type: CableMV - components: - - pos: 96.5,-22.5 - parent: 0 - type: Transform -- uid: 24420 - type: CableMV - components: - - pos: 96.5,-23.5 - parent: 0 - type: Transform -- uid: 24421 - type: CableMV - components: - - pos: 97.5,-23.5 - parent: 0 - type: Transform -- uid: 24422 - type: CableMV - components: - - pos: 97.5,-24.5 - parent: 0 - type: Transform -- uid: 24423 - type: CableMV - components: - - pos: 97.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24424 - type: CableMV - components: - - pos: 97.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24425 - type: CableMV - components: - - pos: 97.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24426 - type: CableMV - components: - - pos: 97.5,-28.5 - parent: 0 - type: Transform -- uid: 24427 - type: CableMV - components: - - pos: 97.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24428 - type: CableMV - components: - - pos: 96.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24429 - type: CableMV - components: - - pos: 85.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24430 - type: CableMV - components: - - pos: 84.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24431 - type: CableMV - components: - - pos: 96.5,-34.5 - parent: 0 - type: Transform -- uid: 24432 - type: CableMV - components: - - pos: 96.5,-33.5 - parent: 0 - type: Transform -- uid: 24433 - type: CableMV - components: - - pos: 95.5,-20.5 - parent: 0 - type: Transform -- uid: 24434 - type: CableMV - components: - - pos: 94.5,-20.5 - parent: 0 - type: Transform -- uid: 24435 - type: CableMV - components: - - pos: 93.5,-20.5 - parent: 0 - type: Transform -- uid: 24436 - type: CableMV - components: - - pos: 92.5,-20.5 - parent: 0 - type: Transform -- uid: 24437 - type: CableMV - components: - - pos: 91.5,-20.5 - parent: 0 - type: Transform -- uid: 24438 - type: CableMV - components: - - pos: 90.5,-20.5 - parent: 0 - type: Transform -- uid: 24439 - type: CableMV - components: - - pos: 89.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24440 - type: CableMV - components: - - pos: 89.5,-19.5 - parent: 0 - type: Transform -- uid: 24441 - type: CableMV - components: - - pos: 88.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24442 - type: CableMV - components: - - pos: 87.5,-19.5 - parent: 0 - type: Transform -- uid: 24443 - type: CableMV - components: - - pos: 86.5,-19.5 - parent: 0 - type: Transform -- uid: 24444 - type: CableMV - components: - - pos: 85.5,-19.5 - parent: 0 - type: Transform -- uid: 24445 - type: CableMV - components: - - pos: 84.5,-19.5 - parent: 0 - type: Transform -- uid: 24446 - type: CableMV - components: - - pos: 83.5,-19.5 - parent: 0 - type: Transform -- uid: 24447 - type: CableMV - components: - - pos: 83.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24448 - type: CableMV - components: - - pos: 82.5,-20.5 - parent: 0 - type: Transform -- uid: 24449 - type: CableMV - components: - - pos: 81.5,-20.5 - parent: 0 - type: Transform -- uid: 24450 - type: CableMV - components: - - pos: 80.5,-20.5 - parent: 0 - type: Transform -- uid: 24451 - type: CableMV - components: - - pos: 80.5,-19.5 - parent: 0 - type: Transform -- uid: 24452 - type: CableApcExtension - components: - - pos: 78.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24453 - type: CableApcExtension - components: - - pos: 78.5,-33.5 - parent: 0 - type: Transform -- uid: 24454 - type: CableApcExtension - components: - - pos: 78.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24455 - type: CableApcExtension - components: - - pos: 78.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24456 - type: CableApcExtension - components: - - pos: 79.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24457 - type: CableApcExtension - components: - - pos: 79.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24458 - type: CableApcExtension - components: - - pos: 79.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24459 - type: CableApcExtension - components: - - pos: 79.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24460 - type: CableApcExtension - components: - - pos: 79.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24461 - type: CableApcExtension - components: - - pos: 79.5,-40.5 - parent: 0 - type: Transform -- uid: 24462 - type: CableApcExtension - components: - - pos: 79.5,-41.5 - parent: 0 - type: Transform -- uid: 24463 - type: CableApcExtension - components: - - pos: 78.5,-41.5 - parent: 0 - type: Transform -- uid: 24464 - type: CableApcExtension - components: - - pos: 77.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24465 - type: CableApcExtension - components: - - pos: 76.5,-41.5 - parent: 0 - type: Transform -- uid: 24466 - type: CableApcExtension - components: - - pos: 75.5,-41.5 - parent: 0 - type: Transform -- uid: 24467 - type: CableApcExtension - components: - - pos: 74.5,-41.5 - parent: 0 - type: Transform -- uid: 24468 - type: CableApcExtension - components: - - pos: 73.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24469 - type: CableApcExtension - components: - - pos: 72.5,-41.5 - parent: 0 - type: Transform -- uid: 24470 - type: CableApcExtension - components: - - pos: 71.5,-41.5 - parent: 0 - type: Transform -- uid: 24471 - type: CableApcExtension - components: - - pos: 71.5,-40.5 - parent: 0 - type: Transform -- uid: 24472 - type: CableApcExtension - components: - - pos: 71.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24473 - type: CableApcExtension - components: - - pos: 71.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24474 - type: CableApcExtension - components: - - pos: 71.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24475 - type: CableApcExtension - components: - - pos: 71.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24476 - type: CableApcExtension - components: - - pos: 71.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24477 - type: CableApcExtension - components: - - pos: 71.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24478 - type: CableApcExtension - components: - - pos: 71.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24479 - type: CableApcExtension - components: - - pos: 72.5,-33.5 - parent: 0 - type: Transform -- uid: 24480 - type: CableApcExtension - components: - - pos: 73.5,-33.5 - parent: 0 - type: Transform -- uid: 24481 - type: CableApcExtension - components: - - pos: 74.5,-33.5 - parent: 0 - type: Transform -- uid: 24482 - type: CableApcExtension - components: - - pos: 75.5,-33.5 - parent: 0 - type: Transform -- uid: 24483 - type: CableApcExtension - components: - - pos: 76.5,-33.5 - parent: 0 - type: Transform -- uid: 24484 - type: CableApcExtension - components: - - pos: 77.5,-33.5 - parent: 0 - type: Transform -- uid: 24485 - type: CableApcExtension - components: - - pos: 70.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24486 - type: CableApcExtension - components: - - pos: 69.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24487 - type: CableApcExtension - components: - - pos: 68.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24488 - type: CableApcExtension - components: - - pos: 71.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24489 - type: CableApcExtension - components: - - pos: 71.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24490 - type: CableApcExtension - components: - - pos: 71.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24491 - type: CableApcExtension - components: - - pos: 71.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24492 - type: CableApcExtension - components: - - pos: 71.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24493 - type: CableApcExtension - components: - - pos: 70.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24494 - type: CableApcExtension - components: - - pos: 69.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24495 - type: CableApcExtension - components: - - pos: 68.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24496 - type: CableApcExtension - components: - - pos: 80.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24497 - type: CableApcExtension - components: - - pos: 81.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24498 - type: CableApcExtension - components: - - pos: 82.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24499 - type: CableApcExtension - components: - - pos: 83.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24500 - type: CableApcExtension - components: - - pos: 83.5,-39.5 - parent: 0 - type: Transform -- uid: 24501 - type: CableApcExtension - components: - - pos: 83.5,-40.5 - parent: 0 - type: Transform -- uid: 24502 - type: CableApcExtension - components: - - pos: 83.5,-41.5 - parent: 0 - type: Transform -- uid: 24503 - type: CableApcExtension - components: - - pos: 83.5,-42.5 - parent: 0 - type: Transform -- uid: 24504 - type: CableApcExtension - components: - - pos: 84.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24505 - type: CableApcExtension - components: - - pos: 85.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24506 - type: CableApcExtension - components: - - pos: 86.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24507 - type: CableApcExtension - components: - - pos: 87.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24508 - type: CableApcExtension - components: - - pos: 88.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24509 - type: CableApcExtension - components: - - pos: 89.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24510 - type: CableApcExtension - components: - - pos: 90.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24511 - type: CableApcExtension - components: - - pos: 91.5,-42.5 - parent: 0 - type: Transform -- uid: 24512 - type: CableApcExtension - components: - - pos: 92.5,-42.5 - parent: 0 - type: Transform -- uid: 24513 - type: CableApcExtension - components: - - pos: 92.5,-41.5 - parent: 0 - type: Transform -- uid: 24514 - type: CableApcExtension - components: - - pos: 92.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24515 - type: CableApcExtension - components: - - pos: 92.5,-39.5 - parent: 0 - type: Transform -- uid: 24516 - type: CableApcExtension - components: - - pos: 92.5,-38.5 - parent: 0 - type: Transform -- uid: 24517 - type: CableApcExtension - components: - - pos: 92.5,-37.5 - parent: 0 - type: Transform -- uid: 24518 - type: CableApcExtension - components: - - pos: 92.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24519 - type: CableApcExtension - components: - - pos: 92.5,-35.5 - parent: 0 - type: Transform -- uid: 24520 - type: CableApcExtension - components: - - pos: 92.5,-34.5 - parent: 0 - type: Transform -- uid: 24521 - type: CableApcExtension - components: - - pos: 92.5,-33.5 - parent: 0 - type: Transform -- uid: 24522 - type: CableApcExtension - components: - - pos: 92.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24523 - type: CableApcExtension - components: - - pos: 92.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24524 - type: CableApcExtension - components: - - pos: 92.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24525 - type: CableApcExtension - components: - - pos: 92.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24526 - type: CableApcExtension - components: - - pos: 92.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24527 - type: CableApcExtension - components: - - pos: 91.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24528 - type: CableApcExtension - components: - - pos: 93.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24529 - type: CableApcExtension - components: - - pos: 91.5,-34.5 - parent: 0 - type: Transform -- uid: 24530 - type: CableApcExtension - components: - - pos: 90.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24531 - type: CableApcExtension - components: - - pos: 90.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24532 - type: CableApcExtension - components: - - pos: 90.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24533 - type: CableApcExtension - components: - - pos: 91.5,-38.5 - parent: 0 - type: Transform -- uid: 24534 - type: CableApcExtension - components: - - pos: 90.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24535 - type: CableApcExtension - components: - - pos: 90.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24536 - type: CableApcExtension - components: - - pos: 90.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24537 - type: CableApcExtension - components: - - pos: 80.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24538 - type: CableApcExtension - components: - - pos: 78.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24539 - type: CableApcExtension - components: - - pos: 75.5,-40.5 - parent: 0 - type: Transform -- uid: 24540 - type: CableApcExtension - components: - - pos: 75.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24541 - type: CableApcExtension - components: - - pos: 76.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24542 - type: CableApcExtension - components: - - pos: 74.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24543 - type: CableApcExtension - components: - - pos: 72.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24544 - type: CableApcExtension - components: - - pos: 70.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24545 - type: CableApcExtension - components: - - pos: 78.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24546 - type: CableApcExtension - components: - - pos: 77.5,-25.5 - parent: 0 - type: Transform -- uid: 24547 - type: CableApcExtension - components: - - pos: 76.5,-25.5 - parent: 0 - type: Transform -- uid: 24548 - type: CableApcExtension - components: - - pos: 75.5,-25.5 - parent: 0 - type: Transform -- uid: 24549 - type: CableApcExtension - components: - - pos: 74.5,-25.5 - parent: 0 - type: Transform -- uid: 24550 - type: CableApcExtension - components: - - pos: 73.5,-25.5 - parent: 0 - type: Transform -- uid: 24551 - type: CableApcExtension - components: - - pos: 72.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24552 - type: CableApcExtension - components: - - pos: 71.5,-25.5 - parent: 0 - type: Transform -- uid: 24553 - type: CableApcExtension - components: - - pos: 70.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24554 - type: CableApcExtension - components: - - pos: 69.5,-25.5 - parent: 0 - type: Transform -- uid: 24555 - type: CableApcExtension - components: - - pos: 68.5,-25.5 - parent: 0 - type: Transform -- uid: 24556 - type: CableApcExtension - components: - - pos: 68.5,-24.5 - parent: 0 - type: Transform -- uid: 24557 - type: CableApcExtension - components: - - pos: 68.5,-23.5 - parent: 0 - type: Transform -- uid: 24558 - type: CableApcExtension - components: - - pos: 68.5,-22.5 - parent: 0 - type: Transform -- uid: 24559 - type: CableApcExtension - components: - - pos: 67.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24560 - type: CableApcExtension - components: - - pos: 69.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24561 - type: CableApcExtension - components: - - pos: 76.5,-24.5 - parent: 0 - type: Transform -- uid: 24562 - type: CableApcExtension - components: - - pos: 76.5,-23.5 - parent: 0 - type: Transform -- uid: 24563 - type: CableApcExtension - components: - - pos: 76.5,-22.5 - parent: 0 - type: Transform -- uid: 24564 - type: CableApcExtension - components: - - pos: 80.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24565 - type: CableApcExtension - components: - - pos: 80.5,-18.5 - parent: 0 - type: Transform -- uid: 24566 - type: CableApcExtension - components: - - pos: 80.5,-19.5 - parent: 0 - type: Transform -- uid: 24567 - type: CableApcExtension - components: - - pos: 80.5,-20.5 - parent: 0 - type: Transform -- uid: 24568 - type: CableApcExtension - components: - - pos: 80.5,-21.5 - parent: 0 - type: Transform -- uid: 24569 - type: CableApcExtension - components: - - pos: 80.5,-22.5 - parent: 0 - type: Transform -- uid: 24570 - type: CableApcExtension - components: - - pos: 80.5,-23.5 - parent: 0 - type: Transform -- uid: 24571 - type: CableApcExtension - components: - - pos: 80.5,-24.5 - parent: 0 - type: Transform -- uid: 24572 - type: CableApcExtension - components: - - pos: 79.5,-19.5 - parent: 0 - type: Transform -- uid: 24573 - type: CableApcExtension - components: - - pos: 78.5,-19.5 - parent: 0 - type: Transform -- uid: 24574 - type: CableApcExtension - components: - - pos: 77.5,-19.5 - parent: 0 - type: Transform -- uid: 24575 - type: CableApcExtension - components: - - pos: 76.5,-19.5 - parent: 0 - type: Transform -- uid: 24576 - type: CableApcExtension - components: - - pos: 81.5,-20.5 - parent: 0 - type: Transform -- uid: 24577 - type: CableApcExtension - components: - - pos: 82.5,-20.5 - parent: 0 - type: Transform -- uid: 24578 - type: CableApcExtension - components: - - pos: 83.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24579 - type: CableApcExtension - components: - - pos: 84.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24580 - type: CableApcExtension - components: - - pos: 85.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24581 - type: GasPipeFourway - components: - - pos: 86.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24582 - type: CableApcExtension - components: - - pos: 87.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24583 - type: CableApcExtension - components: - - pos: 88.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24584 - type: CableApcExtension - components: - - pos: 89.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24585 - type: CableApcExtension - components: - - pos: 86.5,-21.5 - parent: 0 - type: Transform -- uid: 24586 - type: CableApcExtension - components: - - pos: 91.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24587 - type: CableApcExtension - components: - - pos: 90.5,-30.5 - parent: 0 - type: Transform -- uid: 24588 - type: CableApcExtension - components: - - pos: 89.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24589 - type: CableApcExtension - components: - - pos: 88.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24590 - type: CableApcExtension - components: - - pos: 87.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24591 - type: CableApcExtension - components: - - pos: 86.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24592 - type: CableApcExtension - components: - - pos: 85.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24593 - type: CableApcExtension - components: - - pos: 84.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24594 - type: CableApcExtension - components: - - pos: 84.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24595 - type: CableApcExtension - components: - - pos: 98.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24596 - type: CableApcExtension - components: - - pos: 83.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24597 - type: CableApcExtension - components: - - pos: 83.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24598 - type: CableApcExtension - components: - - pos: 83.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24599 - type: CableApcExtension - components: - - pos: 83.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24600 - type: CableApcExtension - components: - - pos: 83.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24601 - type: CableApcExtension - components: - - pos: 89.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24602 - type: CableApcExtension - components: - - pos: 89.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24603 - type: CableApcExtension - components: - - pos: 89.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24604 - type: CableApcExtension - components: - - pos: 89.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24605 - type: CableApcExtension - components: - - pos: 89.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24606 - type: CableApcExtension - components: - - pos: 89.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24607 - type: CableApcExtension - components: - - pos: 83.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24608 - type: CableApcExtension - components: - - pos: 82.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24609 - type: CableApcExtension - components: - - pos: 81.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24610 - type: CableApcExtension - components: - - pos: 80.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24611 - type: CableApcExtension - components: - - pos: 79.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24612 - type: CableApcExtension - components: - - pos: 78.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24613 - type: CableApcExtension - components: - - pos: 77.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24614 - type: CableApcExtension - components: - - pos: 76.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24615 - type: CableApcExtension - components: - - pos: 75.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24616 - type: CableApcExtension - components: - - pos: 74.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24617 - type: CableApcExtension - components: - - pos: 73.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24618 - type: CableApcExtension - components: - - pos: 72.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24619 - type: CableApcExtension - components: - - pos: 70.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24620 - type: CableApcExtension - components: - - pos: 69.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24621 - type: CableApcExtension - components: - - pos: 68.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24622 - type: CableApcExtension - components: - - pos: 67.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24623 - type: CableApcExtension - components: - - pos: 66.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24624 - type: CableApcExtension - components: - - pos: 65.5,-33.5 - parent: 0 - type: Transform -- uid: 24625 - type: CableApcExtension - components: - - pos: 64.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24626 - type: CableApcExtension - components: - - pos: 63.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24627 - type: CableApcExtension - components: - - pos: 89.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24628 - type: CableApcExtension - components: - - pos: 88.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24629 - type: CableApcExtension - components: - - pos: 87.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24630 - type: CableApcExtension - components: - - pos: 86.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24631 - type: CableApcExtension - components: - - pos: 85.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24632 - type: CableApcExtension - components: - - pos: 84.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24633 - type: CableApcExtension - components: - - pos: 84.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24634 - type: CableApcExtension - components: - - pos: 84.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24635 - type: CableApcExtension - components: - - pos: 99.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24636 - type: CableApcExtension - components: - - pos: 99.5,-33.5 - parent: 0 - type: Transform -- uid: 24637 - type: CableApcExtension - components: - - pos: 99.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24638 - type: CableApcExtension - components: - - pos: 99.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24639 - type: CableApcExtension - components: - - pos: 99.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24640 - type: CableApcExtension - components: - - pos: 99.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24641 - type: CableApcExtension - components: - - pos: 99.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24642 - type: CableApcExtension - components: - - pos: 100.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24643 - type: CableApcExtension - components: - - pos: 101.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24644 - type: CableApcExtension - components: - - pos: 102.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24645 - type: CableApcExtension - components: - - pos: 103.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24646 - type: CableApcExtension - components: - - pos: 104.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24647 - type: CableApcExtension - components: - - pos: 105.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24648 - type: CableApcExtension - components: - - pos: 106.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24649 - type: CableApcExtension - components: - - pos: 106.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24650 - type: CableApcExtension - components: - - pos: 106.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24651 - type: CableApcExtension - components: - - pos: 105.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24652 - type: CableApcExtension - components: - - pos: 107.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24653 - type: CableApcExtension - components: - - pos: 106.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24654 - type: CableApcExtension - components: - - pos: 106.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24655 - type: CableApcExtension - components: - - pos: 105.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24656 - type: CableApcExtension - components: - - pos: 107.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24657 - type: CableApcExtension - components: - - pos: 104.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24658 - type: CableApcExtension - components: - - pos: 104.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24659 - type: CableApcExtension - components: - - pos: 102.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24660 - type: CableApcExtension - components: - - pos: 102.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24661 - type: CableApcExtension - components: - - pos: 102.5,-33.5 - parent: 0 - type: Transform -- uid: 24662 - type: CableApcExtension - components: - - pos: 103.5,-33.5 - parent: 0 - type: Transform -- uid: 24663 - type: CableApcExtension - components: - - pos: 104.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24664 - type: CableApcExtension - components: - - pos: 102.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24665 - type: CableApcExtension - components: - - pos: 102.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24666 - type: CableApcExtension - components: - - pos: 102.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24667 - type: CableApcExtension - components: - - pos: 103.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24668 - type: CableApcExtension - components: - - pos: 104.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24669 - type: CableApcExtension - components: - - pos: 98.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24670 - type: CableApcExtension - components: - - pos: 97.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24671 - type: CableApcExtension - components: - - pos: 97.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24672 - type: CableApcExtension - components: - - pos: 97.5,-40.5 - parent: 0 - type: Transform -- uid: 24673 - type: CableApcExtension - components: - - pos: 97.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24674 - type: CableApcExtension - components: - - pos: 97.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24675 - type: CableApcExtension - components: - - pos: 98.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24676 - type: CableApcExtension - components: - - pos: 99.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24677 - type: CableApcExtension - components: - - pos: 100.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24678 - type: CableApcExtension - components: - - pos: 101.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24679 - type: CableApcExtension - components: - - pos: 102.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24680 - type: CableApcExtension - components: - - pos: 98.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24681 - type: CableApcExtension - components: - - pos: 97.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24682 - type: CableApcExtension - components: - - pos: 96.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24683 - type: CableApcExtension - components: - - pos: 96.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24684 - type: CableApcExtension - components: - - pos: 96.5,-20.5 - parent: 0 - type: Transform -- uid: 24685 - type: CableApcExtension - components: - - pos: 96.5,-21.5 - parent: 0 - type: Transform -- uid: 24686 - type: CableApcExtension - components: - - pos: 97.5,-21.5 - parent: 0 - type: Transform -- uid: 24687 - type: CableApcExtension - components: - - pos: 97.5,-22.5 - parent: 0 - type: Transform -- uid: 24688 - type: CableApcExtension - components: - - pos: 97.5,-23.5 - parent: 0 - type: Transform -- uid: 24689 - type: CableApcExtension - components: - - pos: 97.5,-24.5 - parent: 0 - type: Transform -- uid: 24690 - type: CableApcExtension - components: - - pos: 97.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24691 - type: CableApcExtension - components: - - pos: 97.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24692 - type: CableApcExtension - components: - - pos: 97.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24693 - type: CableApcExtension - components: - - pos: 96.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24694 - type: CableApcExtension - components: - - pos: 97.5,-28.5 - parent: 0 - type: Transform -- uid: 24695 - type: CableApcExtension - components: - - pos: 95.5,-20.5 - parent: 0 - type: Transform -- uid: 24696 - type: CableApcExtension - components: - - pos: 94.5,-20.5 - parent: 0 - type: Transform -- uid: 24697 - type: CableApcExtension - components: - - pos: 93.5,-20.5 - parent: 0 - type: Transform -- uid: 24698 - type: CableApcExtension - components: - - pos: 92.5,-20.5 - parent: 0 - type: Transform -- uid: 24699 - type: CableApcExtension - components: - - pos: 91.5,-20.5 - parent: 0 - type: Transform -- uid: 24700 - type: CableApcExtension - components: - - pos: 93.5,-21.5 - parent: 0 - type: Transform -- uid: 24701 - type: CableApcExtension - components: - - pos: 97.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24702 - type: CableApcExtension - components: - - pos: 98.5,-19.5 - parent: 0 - type: Transform -- uid: 24703 - type: CableApcExtension - components: - - pos: 99.5,-19.5 - parent: 0 - type: Transform -- uid: 24704 - type: CableApcExtension - components: - - pos: 100.5,-19.5 - parent: 0 - type: Transform -- uid: 24705 - type: CableApcExtension - components: - - pos: 101.5,-19.5 - parent: 0 - type: Transform -- uid: 24706 - type: CableApcExtension - components: - - pos: 102.5,-19.5 - parent: 0 - type: Transform -- uid: 24707 - type: CableApcExtension - components: - - pos: 103.5,-19.5 - parent: 0 - type: Transform -- uid: 24708 - type: CableApcExtension - components: - - pos: 104.5,-19.5 - parent: 0 - type: Transform -- uid: 24709 - type: CableApcExtension - components: - - pos: 104.5,-20.5 - parent: 0 - type: Transform -- uid: 24710 - type: CableApcExtension - components: - - pos: 104.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24711 - type: CableApcExtension - components: - - pos: 105.5,-20.5 - parent: 0 - type: Transform -- uid: 24712 - type: CableApcExtension - components: - - pos: 106.5,-20.5 - parent: 0 - type: Transform -- uid: 24713 - type: CableApcExtension - components: - - pos: 107.5,-20.5 - parent: 0 - type: Transform -- uid: 24714 - type: CableApcExtension - components: - - pos: 108.5,-20.5 - parent: 0 - type: Transform -- uid: 24715 - type: CableApcExtension - components: - - pos: 109.5,-20.5 - parent: 0 - type: Transform -- uid: 24716 - type: CableApcExtension - components: - - pos: 110.5,-20.5 - parent: 0 - type: Transform -- uid: 24717 - type: CableApcExtension - components: - - pos: 111.5,-20.5 - parent: 0 - type: Transform -- uid: 24718 - type: CableApcExtension - components: - - pos: 112.5,-20.5 - parent: 0 - type: Transform -- uid: 24719 - type: CableApcExtension - components: - - pos: 113.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24720 - type: CableApcExtension - components: - - pos: 114.5,-20.5 - parent: 0 - type: Transform -- uid: 24721 - type: CableApcExtension - components: - - pos: 115.5,-20.5 - parent: 0 - type: Transform -- uid: 24722 - type: CableApcExtension - components: - - pos: 104.5,-18.5 - parent: 0 - type: Transform -- uid: 24723 - type: CableApcExtension - components: - - pos: 104.5,-17.5 - parent: 0 - type: Transform -- uid: 24724 - type: CableApcExtension - components: - - pos: 104.5,-16.5 - parent: 0 - type: Transform -- uid: 24725 - type: CableApcExtension - components: - - pos: 105.5,-16.5 - parent: 0 - type: Transform -- uid: 24726 - type: CableApcExtension - components: - - pos: 106.5,-16.5 - parent: 0 - type: Transform -- uid: 24727 - type: CableApcExtension - components: - - pos: 107.5,-16.5 - parent: 0 - type: Transform -- uid: 24728 - type: CableApcExtension - components: - - pos: 108.5,-16.5 - parent: 0 - type: Transform -- uid: 24729 - type: CableApcExtension - components: - - pos: 109.5,-16.5 - parent: 0 - type: Transform -- uid: 24730 - type: CableApcExtension - components: - - pos: 110.5,-16.5 - parent: 0 - type: Transform -- uid: 24731 - type: CableApcExtension - components: - - pos: 109.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24732 - type: CableApcExtension - components: - - pos: 109.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24733 - type: CableApcExtension - components: - - pos: 106.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24734 - type: CableApcExtension - components: - - pos: 105.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24735 - type: CableApcExtension - components: - - pos: 103.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24736 - type: CableApcExtension - components: - - pos: 108.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24737 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 109.5,-24.5 - parent: 0 - type: Transform -- uid: 24738 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 109.5,-21.5 - parent: 0 - type: Transform -- uid: 24739 - type: Grille - components: - - pos: 108.5,-22.5 - parent: 0 - type: Transform -- uid: 24740 - type: Grille - components: - - pos: 106.5,-21.5 - parent: 0 - type: Transform -- uid: 24741 - type: Grille - components: - - pos: 105.5,-21.5 - parent: 0 - type: Transform -- uid: 24742 - type: Grille - components: - - pos: 104.5,-21.5 - parent: 0 - type: Transform -- uid: 24743 - type: Grille - components: - - pos: 103.5,-21.5 - parent: 0 - type: Transform -- uid: 24744 - type: Grille - components: - - pos: 104.5,-39.5 - parent: 0 - type: Transform -- uid: 24745 - type: Grille - components: - - pos: 102.5,-42.5 - parent: 0 - type: Transform -- uid: 24746 - type: Grille - components: - - pos: 104.5,-33.5 - parent: 0 - type: Transform -- uid: 24747 - type: Grille - components: - - pos: 108.5,-37.5 - parent: 0 - type: Transform -- uid: 24748 - type: Grille - components: - - pos: 108.5,-35.5 - parent: 0 - type: Transform -- uid: 24749 - type: Grille - components: - - pos: 107.5,-34.5 - parent: 0 - type: Transform -- uid: 24750 - type: Grille - components: - - pos: 106.5,-34.5 - parent: 0 - type: Transform -- uid: 24751 - type: Grille - components: - - pos: 105.5,-34.5 - parent: 0 - type: Transform -- uid: 24752 - type: Grille - components: - - pos: 107.5,-38.5 - parent: 0 - type: Transform -- uid: 24753 - type: Grille - components: - - pos: 106.5,-38.5 - parent: 0 - type: Transform -- uid: 24754 - type: Grille - components: - - pos: 105.5,-38.5 - parent: 0 - type: Transform -- uid: 24755 - type: Grille - components: - - pos: 104.5,-37.5 - parent: 0 - type: Transform -- uid: 24756 - type: Grille - components: - - pos: 104.5,-36.5 - parent: 0 - type: Transform -- uid: 24757 - type: Grille - components: - - pos: 104.5,-35.5 - parent: 0 - type: Transform -- uid: 24758 - type: CableApcExtension - components: - - pos: 66.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24759 - type: CableApcExtension - components: - - pos: 66.5,-18.5 - parent: 0 - type: Transform -- uid: 24760 - type: CableApcExtension - components: - - pos: 66.5,-19.5 - parent: 0 - type: Transform -- uid: 24761 - type: CableApcExtension - components: - - pos: 66.5,-20.5 - parent: 0 - type: Transform -- uid: 24762 - type: CableApcExtension - components: - - pos: 67.5,-20.5 - parent: 0 - type: Transform -- uid: 24763 - type: CableApcExtension - components: - - pos: 68.5,-20.5 - parent: 0 - type: Transform -- uid: 24764 - type: CableApcExtension - components: - - pos: 69.5,-20.5 - parent: 0 - type: Transform -- uid: 24765 - type: CableApcExtension - components: - - pos: 70.5,-20.5 - parent: 0 - type: Transform -- uid: 24766 - type: CableApcExtension - components: - - pos: 71.5,-20.5 - parent: 0 - type: Transform -- uid: 24767 - type: CableApcExtension - components: - - pos: 72.5,-20.5 - parent: 0 - type: Transform -- uid: 24768 - type: CableApcExtension - components: - - pos: 65.5,-19.5 - parent: 0 - type: Transform -- uid: 24769 - type: CableApcExtension - components: - - pos: 64.5,-19.5 - parent: 0 - type: Transform -- uid: 24770 - type: CableApcExtension - components: - - pos: 64.5,-20.5 - parent: 0 - type: Transform -- uid: 24771 - type: CableApcExtension - components: - - pos: 64.5,-21.5 - parent: 0 - type: Transform -- uid: 24772 - type: CableApcExtension - components: - - pos: 64.5,-18.5 - parent: 0 - type: Transform -- uid: 24773 - type: CableApcExtension - components: - - pos: 64.5,-17.5 - parent: 0 - type: Transform -- uid: 24774 - type: CableApcExtension - components: - - pos: 64.5,-16.5 - parent: 0 - type: Transform -- uid: 24775 - type: CableApcExtension - components: - - pos: 64.5,-15.5 - parent: 0 - type: Transform -- uid: 24776 - type: CableApcExtension - components: - - pos: 64.5,-14.5 - parent: 0 - type: Transform -- uid: 24777 - type: CableApcExtension - components: - - pos: 63.5,-14.5 - parent: 0 - type: Transform -- uid: 24778 - type: CableApcExtension - components: - - pos: 63.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24779 - type: CableApcExtension - components: - - pos: 67.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24780 - type: CableApcExtension - components: - - pos: 68.5,-17.5 - parent: 0 - type: Transform -- uid: 24781 - type: CableApcExtension - components: - - pos: 69.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24782 - type: CableApcExtension - components: - - pos: 64.5,-22.5 - parent: 0 - type: Transform -- uid: 24783 - type: CableApcExtension - components: - - pos: 64.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24784 - type: CableApcExtension - components: - - pos: 64.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24785 - type: CableApcExtension - components: - - pos: 63.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24786 - type: CableApcExtension - components: - - pos: 62.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24787 - type: CableApcExtension - components: - - pos: 61.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24788 - type: CableApcExtension - components: - - pos: 60.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24789 - type: CableApcExtension - components: - - pos: 59.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24790 - type: CableApcExtension - components: - - pos: 59.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24791 - type: CableApcExtension - components: - - pos: 59.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24792 - type: CableApcExtension - components: - - pos: 59.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24793 - type: CableApcExtension - components: - - pos: 59.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24794 - type: CableApcExtension - components: - - pos: 59.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24795 - type: CableApcExtension - components: - - pos: 59.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24796 - type: CableApcExtension - components: - - pos: 59.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24797 - type: CableApcExtension - components: - - pos: 59.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24798 - type: CableApcExtension - components: - - pos: 59.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24799 - type: CableApcExtension - components: - - pos: 65.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24800 - type: CableApcExtension - components: - - pos: 65.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24801 - type: CableApcExtension - components: - - pos: 65.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24802 - type: CableApcExtension - components: - - pos: 65.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24803 - type: CableApcExtension - components: - - pos: 65.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24804 - type: CableApcExtension - components: - - pos: 65.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24805 - type: CableApcExtension - components: - - pos: 62.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24806 - type: CableApcExtension - components: - - pos: 62.5,-5.5 - parent: 0 - type: Transform -- uid: 24807 - type: CableApcExtension - components: - - pos: 61.5,-5.5 - parent: 0 - type: Transform -- uid: 24808 - type: CableApcExtension - components: - - pos: 60.5,-5.5 - parent: 0 - type: Transform -- uid: 24809 - type: CableApcExtension - components: - - pos: 60.5,-4.5 - parent: 0 - type: Transform -- uid: 24810 - type: CableApcExtension - components: - - pos: 60.5,-3.5 - parent: 0 - type: Transform -- uid: 24811 - type: CableApcExtension - components: - - pos: 60.5,-2.5 - parent: 0 - type: Transform -- uid: 24812 - type: CableApcExtension - components: - - pos: 60.5,-1.5 - parent: 0 - type: Transform -- uid: 24813 - type: CableApcExtension - components: - - pos: 60.5,-0.5 - parent: 0 - type: Transform -- uid: 24814 - type: CableApcExtension - components: - - pos: 60.5,0.5 - parent: 0 - type: Transform -- uid: 24815 - type: CableApcExtension - components: - - pos: 60.5,1.5 - parent: 0 - type: Transform -- uid: 24816 - type: CableApcExtension - components: - - pos: 60.5,-6.5 - parent: 0 - type: Transform -- uid: 24817 - type: CableApcExtension - components: - - pos: 60.5,-7.5 - parent: 0 - type: Transform -- uid: 24818 - type: CableApcExtension - components: - - pos: 69.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24819 - type: CableApcExtension - components: - - pos: 69.5,-8.5 - parent: 0 - type: Transform -- uid: 24820 - type: CableApcExtension - components: - - pos: 69.5,-9.5 - parent: 0 - type: Transform -- uid: 24821 - type: CableApcExtension - components: - - pos: 69.5,-10.5 - parent: 0 - type: Transform -- uid: 24822 - type: CableApcExtension - components: - - pos: 69.5,-11.5 - parent: 0 - type: Transform -- uid: 24823 - type: CableApcExtension - components: - - pos: 68.5,-10.5 - parent: 0 - type: Transform -- uid: 24824 - type: CableApcExtension - components: - - pos: 67.5,-10.5 - parent: 0 - type: Transform -- uid: 24825 - type: CableApcExtension - components: - - pos: 66.5,-10.5 - parent: 0 - type: Transform -- uid: 24826 - type: CableApcExtension - components: - - pos: 65.5,-10.5 - parent: 0 - type: Transform -- uid: 24827 - type: CableApcExtension - components: - - pos: 64.5,-10.5 - parent: 0 - type: Transform -- uid: 24828 - type: CableApcExtension - components: - - pos: 63.5,-10.5 - parent: 0 - type: Transform -- uid: 24829 - type: CableApcExtension - components: - - pos: 62.5,-10.5 - parent: 0 - type: Transform -- uid: 24830 - type: CableApcExtension - components: - - pos: 61.5,-10.5 - parent: 0 - type: Transform -- uid: 24831 - type: CableApcExtension - components: - - pos: 60.5,-10.5 - parent: 0 - type: Transform -- uid: 24832 - type: CableApcExtension - components: - - pos: 59.5,-10.5 - parent: 0 - type: Transform -- uid: 24833 - type: CableApcExtension - components: - - pos: 58.5,-10.5 - parent: 0 - type: Transform -- uid: 24834 - type: CableApcExtension - components: - - pos: 67.5,-9.5 - parent: 0 - type: Transform -- uid: 24835 - type: CableApcExtension - components: - - pos: 67.5,-8.5 - parent: 0 - type: Transform -- uid: 24836 - type: CableApcExtension - components: - - pos: 67.5,-7.5 - parent: 0 - type: Transform -- uid: 24837 - type: CableApcExtension - components: - - pos: 67.5,-11.5 - parent: 0 - type: Transform -- uid: 24838 - type: CableApcExtension - components: - - pos: 64.5,-11.5 - parent: 0 - type: Transform -- uid: 24839 - type: CableApcExtension - components: - - pos: 72.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24840 - type: CableApcExtension - components: - - pos: 72.5,-8.5 - parent: 0 - type: Transform -- uid: 24841 - type: CableApcExtension - components: - - pos: 72.5,-9.5 - parent: 0 - type: Transform -- uid: 24842 - type: CableApcExtension - components: - - pos: 72.5,-10.5 - parent: 0 - type: Transform -- uid: 24843 - type: CableApcExtension - components: - - pos: 72.5,-11.5 - parent: 0 - type: Transform -- uid: 24844 - type: CableApcExtension - components: - - pos: 72.5,-12.5 - parent: 0 - type: Transform -- uid: 24845 - type: CableApcExtension - components: - - pos: 72.5,-13.5 - parent: 0 - type: Transform -- uid: 24846 - type: CableApcExtension - components: - - pos: 72.5,-14.5 - parent: 0 - type: Transform -- uid: 24847 - type: CableApcExtension - components: - - pos: 72.5,-15.5 - parent: 0 - type: Transform -- uid: 24848 - type: CableApcExtension - components: - - pos: 72.5,-16.5 - parent: 0 - type: Transform -- uid: 24849 - type: CableApcExtension - components: - - pos: 73.5,-14.5 - parent: 0 - type: Transform -- uid: 24850 - type: CableApcExtension - components: - - pos: 74.5,-14.5 - parent: 0 - type: Transform -- uid: 24851 - type: CableApcExtension - components: - - pos: 75.5,-14.5 - parent: 0 - type: Transform -- uid: 24852 - type: CableApcExtension - components: - - pos: 76.5,-14.5 - parent: 0 - type: Transform -- uid: 24853 - type: CableApcExtension - components: - - pos: 77.5,-14.5 - parent: 0 - type: Transform -- uid: 24854 - type: CableApcExtension - components: - - pos: 78.5,-14.5 - parent: 0 - type: Transform -- uid: 24855 - type: CableApcExtension - components: - - pos: 81.5,-14.5 - parent: 0 - type: Transform -- uid: 24856 - type: CableApcExtension - components: - - pos: 77.5,-13.5 - parent: 0 - type: Transform -- uid: 24857 - type: CableApcExtension - components: - - pos: 77.5,-12.5 - parent: 0 - type: Transform -- uid: 24858 - type: CableApcExtension - components: - - pos: 77.5,-11.5 - parent: 0 - type: Transform -- uid: 24859 - type: CableApcExtension - components: - - pos: 77.5,-10.5 - parent: 0 - type: Transform -- uid: 24860 - type: CableApcExtension - components: - - pos: 77.5,-9.5 - parent: 0 - type: Transform -- uid: 24861 - type: CableApcExtension - components: - - pos: 77.5,-8.5 - parent: 0 - type: Transform -- uid: 24862 - type: CableApcExtension - components: - - pos: 76.5,-9.5 - parent: 0 - type: Transform -- uid: 24863 - type: CableApcExtension - components: - - pos: 75.5,-9.5 - parent: 0 - type: Transform -- uid: 24864 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24865 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24866 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24867 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24868 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24869 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24870 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24871 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24872 - type: GasPipeStraight - components: - - pos: 75.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24873 - type: GasPipeStraight - components: - - pos: 75.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24874 - type: GasPipeStraight - components: - - pos: 75.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24875 - type: GasPipeStraight - components: - - pos: 75.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24876 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24877 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24878 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24879 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24880 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24881 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24882 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24883 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 75.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24884 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 75.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24885 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 75.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24886 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 75.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24887 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 75.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24888 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 75.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24889 - type: GasPipeFourway - components: - - pos: 75.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24890 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 75.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24891 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 75.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24892 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24893 - type: GasVentPump - components: - - pos: 77.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24894 - type: CableMV - components: - - pos: 60.5,-10.5 - parent: 0 - type: Transform -- uid: 24895 - type: CableMV - components: - - pos: 59.5,-10.5 - parent: 0 - type: Transform -- uid: 24896 - type: CableMV - components: - - pos: 58.5,-10.5 - parent: 0 - type: Transform -- uid: 24897 - type: CableMV - components: - - pos: 57.5,-10.5 - parent: 0 - type: Transform -- uid: 24898 - type: CableMV - components: - - pos: 56.5,-10.5 - parent: 0 - type: Transform -- uid: 24899 - type: CableMV - components: - - pos: 55.5,-10.5 - parent: 0 - type: Transform -- uid: 24900 - type: CableMV - components: - - pos: 54.5,-10.5 - parent: 0 - type: Transform -- uid: 24901 - type: CableMV - components: - - pos: 53.5,-10.5 - parent: 0 - type: Transform -- uid: 24902 - type: CableMV - components: - - pos: 52.5,-10.5 - parent: 0 - type: Transform -- uid: 24903 - type: CableMV - components: - - pos: 51.5,-10.5 - parent: 0 - type: Transform -- uid: 24904 - type: CableMV - components: - - pos: 50.5,-10.5 - parent: 0 - type: Transform -- uid: 24905 - type: CableMV - components: - - pos: 50.5,-9.5 - parent: 0 - type: Transform -- uid: 24906 - type: CableMV - components: - - pos: 50.5,-8.5 - parent: 0 - type: Transform -- uid: 24907 - type: CableMV - components: - - pos: 50.5,-7.5 - parent: 0 - type: Transform -- uid: 24908 - type: CableMV - components: - - pos: 50.5,-6.5 - parent: 0 - type: Transform -- uid: 24909 - type: CableMV - components: - - pos: 50.5,-5.5 - parent: 0 - type: Transform -- uid: 24910 - type: CableMV - components: - - pos: 51.5,-5.5 - parent: 0 - type: Transform -- uid: 24911 - type: CableMV - components: - - pos: 52.5,-5.5 - parent: 0 - type: Transform -- uid: 24912 - type: CableMV - components: - - pos: 53.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24913 - type: CableMV - components: - - pos: 51.5,-4.5 - parent: 0 - type: Transform -- uid: 24914 - type: CableMV - components: - - pos: 51.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24915 - type: CableMV - components: - - pos: 51.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24916 - type: CableMV - components: - - pos: 49.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24917 - type: CableMV - components: - - pos: 48.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24918 - type: CableMV - components: - - pos: 47.5,-8.5 - parent: 0 - type: Transform -- uid: 24919 - type: CableMV - components: - - pos: 46.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24920 - type: CableMV - components: - - pos: 50.5,-3.5 - parent: 0 - type: Transform -- uid: 24921 - type: CableMV - components: - - pos: 49.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24922 - type: CableMV - components: - - pos: 48.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24923 - type: CableMV - components: - - pos: 47.5,-3.5 - parent: 0 - type: Transform -- uid: 24924 - type: CableMV - components: - - pos: 46.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24925 - type: CableApcExtension - components: - - pos: 53.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24926 - type: CableApcExtension - components: - - pos: 52.5,-5.5 - parent: 0 - type: Transform -- uid: 24927 - type: CableApcExtension - components: - - pos: 51.5,-5.5 - parent: 0 - type: Transform -- uid: 24928 - type: CableApcExtension - components: - - pos: 50.5,-5.5 - parent: 0 - type: Transform -- uid: 24929 - type: CableApcExtension - components: - - pos: 49.5,-5.5 - parent: 0 - type: Transform -- uid: 24930 - type: CableApcExtension - components: - - pos: 48.5,-5.5 - parent: 0 - type: Transform -- uid: 24931 - type: CableApcExtension - components: - - pos: 47.5,-5.5 - parent: 0 - type: Transform -- uid: 24932 - type: CableApcExtension - components: - - pos: 46.5,-5.5 - parent: 0 - type: Transform -- uid: 24933 - type: CableApcExtension - components: - - pos: 45.5,-5.5 - parent: 0 - type: Transform -- uid: 24934 - type: CableApcExtension - components: - - pos: 47.5,-6.5 - parent: 0 - type: Transform -- uid: 24935 - type: CableApcExtension - components: - - pos: 50.5,-6.5 - parent: 0 - type: Transform -- uid: 24936 - type: CableApcExtension - components: - - pos: 54.5,-5.5 - parent: 0 - type: Transform -- uid: 24937 - type: CableApcExtension - components: - - pos: 55.5,-5.5 - parent: 0 - type: Transform -- uid: 24938 - type: CableApcExtension - components: - - pos: 55.5,-4.5 - parent: 0 - type: Transform -- uid: 24939 - type: CableApcExtension - components: - - pos: 55.5,-3.5 - parent: 0 - type: Transform -- uid: 24940 - type: CableApcExtension - components: - - pos: 55.5,-2.5 - parent: 0 - type: Transform -- uid: 24941 - type: CableApcExtension - components: - - pos: 55.5,-1.5 - parent: 0 - type: Transform -- uid: 24942 - type: CableApcExtension - components: - - pos: 54.5,-1.5 - parent: 0 - type: Transform -- uid: 24943 - type: CableApcExtension - components: - - pos: 53.5,-1.5 - parent: 0 - type: Transform -- uid: 24944 - type: CableApcExtension - components: - - pos: 52.5,-1.5 - parent: 0 - type: Transform -- uid: 24945 - type: CableApcExtension - components: - - pos: 51.5,-1.5 - parent: 0 - type: Transform -- uid: 24946 - type: CableApcExtension - components: - - pos: 50.5,-1.5 - parent: 0 - type: Transform -- uid: 24947 - type: CableApcExtension - components: - - pos: 49.5,-1.5 - parent: 0 - type: Transform -- uid: 24948 - type: CableApcExtension - components: - - pos: 48.5,-1.5 - parent: 0 - type: Transform -- uid: 24949 - type: CableApcExtension - components: - - pos: 47.5,-1.5 - parent: 0 - type: Transform -- uid: 24950 - type: CableApcExtension - components: - - pos: 46.5,-1.5 - parent: 0 - type: Transform -- uid: 24951 - type: CableApcExtension - components: - - pos: 45.5,-1.5 - parent: 0 - type: Transform -- uid: 24952 - type: CableApcExtension - components: - - pos: 44.5,-1.5 - parent: 0 - type: Transform -- uid: 24953 - type: CableApcExtension - components: - - pos: 43.5,-1.5 - parent: 0 - type: Transform -- uid: 24954 - type: CableApcExtension - components: - - pos: 42.5,-1.5 - parent: 0 - type: Transform -- uid: 24955 - type: CableApcExtension - components: - - pos: 42.5,-2.5 - parent: 0 - type: Transform -- uid: 24956 - type: CableApcExtension - components: - - pos: 42.5,-3.5 - parent: 0 - type: Transform -- uid: 24957 - type: CableApcExtension - components: - - pos: 42.5,-4.5 - parent: 0 - type: Transform -- uid: 24958 - type: CableApcExtension - components: - - pos: 42.5,-5.5 - parent: 0 - type: Transform -- uid: 24959 - type: CableApcExtension - components: - - pos: 42.5,-6.5 - parent: 0 - type: Transform -- uid: 24960 - type: CableApcExtension - components: - - pos: 42.5,-7.5 - parent: 0 - type: Transform -- uid: 24961 - type: CableApcExtension - components: - - pos: 42.5,-8.5 - parent: 0 - type: Transform -- uid: 24962 - type: CableApcExtension - components: - - pos: 42.5,-9.5 - parent: 0 - type: Transform -- uid: 24963 - type: CableApcExtension - components: - - pos: 42.5,-10.5 - parent: 0 - type: Transform -- uid: 24964 - type: CableApcExtension - components: - - pos: 43.5,-10.5 - parent: 0 - type: Transform -- uid: 24965 - type: CableApcExtension - components: - - pos: 44.5,-10.5 - parent: 0 - type: Transform -- uid: 24966 - type: CableApcExtension - components: - - pos: 45.5,-10.5 - parent: 0 - type: Transform -- uid: 24967 - type: CableApcExtension - components: - - pos: 46.5,-10.5 - parent: 0 - type: Transform -- uid: 24968 - type: CableApcExtension - components: - - pos: 47.5,-10.5 - parent: 0 - type: Transform -- uid: 24969 - type: CableApcExtension - components: - - pos: 48.5,-10.5 - parent: 0 - type: Transform -- uid: 24970 - type: CableApcExtension - components: - - pos: 49.5,-10.5 - parent: 0 - type: Transform -- uid: 24971 - type: CableApcExtension - components: - - pos: 50.5,-10.5 - parent: 0 - type: Transform -- uid: 24972 - type: CableApcExtension - components: - - pos: 51.5,-10.5 - parent: 0 - type: Transform -- uid: 24973 - type: CableApcExtension - components: - - pos: 52.5,-10.5 - parent: 0 - type: Transform -- uid: 24974 - type: CableApcExtension - components: - - pos: 53.5,-10.5 - parent: 0 - type: Transform -- uid: 24975 - type: CableApcExtension - components: - - pos: 54.5,-10.5 - parent: 0 - type: Transform -- uid: 24976 - type: CableApcExtension - components: - - pos: 55.5,-10.5 - parent: 0 - type: Transform -- uid: 24977 - type: CableApcExtension - components: - - pos: 55.5,-9.5 - parent: 0 - type: Transform -- uid: 24978 - type: CableApcExtension - components: - - pos: 55.5,-8.5 - parent: 0 - type: Transform -- uid: 24979 - type: CableApcExtension - components: - - pos: 55.5,-7.5 - parent: 0 - type: Transform -- uid: 24980 - type: CableApcExtension - components: - - pos: 55.5,-6.5 - parent: 0 - type: Transform -- uid: 24981 - type: WallReinforced - components: - - pos: 36.5,-13.5 - parent: 0 - type: Transform -- uid: 24982 - type: CableMV - components: - - pos: 33.5,-15.5 - parent: 0 - type: Transform -- uid: 24983 - type: CableMV - components: - - pos: 32.5,-15.5 - parent: 0 - type: Transform -- uid: 24984 - type: CableMV - components: - - pos: 31.5,-15.5 - parent: 0 - type: Transform -- uid: 24985 - type: CableMV - components: - - pos: 30.5,-15.5 - parent: 0 - type: Transform -- uid: 24986 - type: CableMV - components: - - pos: 29.5,-15.5 - parent: 0 - type: Transform -- uid: 24987 - type: CableMV - components: - - pos: 29.5,-14.5 - parent: 0 - type: Transform -- uid: 24988 - type: CableMV - components: - - pos: 29.5,-13.5 - parent: 0 - type: Transform -- uid: 24989 - type: CableMV - components: - - pos: 29.5,-12.5 - parent: 0 - type: Transform -- uid: 24990 - type: CableMV - components: - - pos: 29.5,-11.5 - parent: 0 - type: Transform -- uid: 24991 - type: CableMV - components: - - pos: 30.5,-10.5 - parent: 0 - type: Transform -- uid: 24992 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 - parent: 0 - type: Transform -- uid: 24993 - type: CableMV - components: - - pos: 29.5,-10.5 - parent: 0 - type: Transform -- uid: 24994 - type: CableApcExtension - components: - - pos: 28.5,-11.5 - parent: 0 - type: Transform -- uid: 24995 - type: CableApcExtension - components: - - pos: 28.5,-12.5 - parent: 0 - type: Transform -- uid: 24996 - type: CableApcExtension - components: - - pos: 28.5,-13.5 - parent: 0 - type: Transform -- uid: 24997 - type: CableApcExtension - components: - - pos: 28.5,-10.5 - parent: 0 - type: Transform -- uid: 24998 - type: CableApcExtension - components: - - pos: 28.5,-9.5 - parent: 0 - type: Transform -- uid: 24999 - type: CableApcExtension - components: - - pos: 28.5,-8.5 - parent: 0 - type: Transform -- uid: 25000 - type: CableApcExtension - components: - - pos: 28.5,-7.5 - parent: 0 - type: Transform -- uid: 25001 - type: CableApcExtension - components: - - pos: 28.5,-6.5 - parent: 0 - type: Transform -- uid: 25002 - type: CableApcExtension - components: - - pos: 28.5,-5.5 - parent: 0 - type: Transform -- uid: 25003 - type: PortableScrubber - components: - - pos: 63.5,-7.5 - parent: 0 - type: Transform -- uid: 25004 - type: FirelockGlass - components: - - pos: 67.5,-27.5 - parent: 0 - type: Transform -- uid: 25005 - type: FirelockGlass - components: - - pos: 68.5,-27.5 - parent: 0 - type: Transform -- uid: 25006 - type: FirelockGlass - components: - - pos: 69.5,-27.5 - parent: 0 - type: Transform -- uid: 25007 - type: FirelockGlass - components: - - pos: 70.5,-27.5 - parent: 0 - type: Transform -- uid: 25008 - type: FirelockGlass - components: - - pos: 71.5,-25.5 - parent: 0 - type: Transform -- uid: 25009 - type: FirelockGlass - components: - - pos: 68.5,-22.5 - parent: 0 - type: Transform -- uid: 25010 - type: CableApcExtension - components: - - pos: 55.5,-0.5 - parent: 0 - type: Transform -- uid: 25011 - type: CableApcExtension - components: - - pos: 55.5,0.5 - parent: 0 - type: Transform -- uid: 25012 - type: CableApcExtension - components: - - pos: 55.5,1.5 - parent: 0 - type: Transform -- uid: 25013 - type: CableApcExtension - components: - - pos: 55.5,2.5 - parent: 0 - type: Transform -- uid: 25014 - type: CableApcExtension - components: - - pos: 55.5,3.5 - parent: 0 - type: Transform -- uid: 25015 - type: CableApcExtension - components: - - pos: 55.5,4.5 - parent: 0 - type: Transform -- uid: 25016 - type: CableApcExtension - components: - - pos: 55.5,5.5 - parent: 0 - type: Transform -- uid: 25017 - type: CableApcExtension - components: - - pos: 55.5,6.5 - parent: 0 - type: Transform -- uid: 25018 - type: CableApcExtension - components: - - pos: 55.5,7.5 - parent: 0 - type: Transform -- uid: 25019 - type: CableApcExtension - components: - - pos: 55.5,8.5 - parent: 0 - type: Transform -- uid: 25020 - type: AirlockAtmosphericsLocked - components: - - pos: 97.5,-40.5 - parent: 0 - type: Transform -- uid: 25021 - type: AirlockAtmosphericsLocked - components: - - name: Burn Chamber - type: MetaData - - pos: 97.5,-32.5 - parent: 0 - type: Transform -- uid: 25022 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 102.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25023 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 102.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25024 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 102.5,-38.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25025 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 101.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25026 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 100.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25027 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 99.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25028 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 98.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25029 - type: GasThermoMachineFreezer - components: - - pos: 98.5,-38.5 - parent: 0 - type: Transform -- uid: 25030 - type: GasPort - components: - - pos: 99.5,-38.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25031 - type: GasPort - components: - - pos: 100.5,-38.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25032 - type: GasPort - components: - - pos: 101.5,-38.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25033 - type: Catwalk - components: - - pos: 97.5,-39.5 - parent: 0 - type: Transform -- uid: 25034 - type: Catwalk - components: - - pos: 97.5,-38.5 - parent: 0 - type: Transform -- uid: 25035 - type: Catwalk - components: - - pos: 97.5,-37.5 - parent: 0 - type: Transform -- uid: 25036 - type: Catwalk - components: - - pos: 97.5,-36.5 - parent: 0 - type: Transform -- uid: 25037 - type: Catwalk - components: - - pos: 97.5,-35.5 - parent: 0 - type: Transform -- uid: 25038 - type: Catwalk - components: - - pos: 97.5,-34.5 - parent: 0 - type: Transform -- uid: 25039 - type: CableApcExtension - components: - - pos: 97.5,-33.5 - parent: 0 - type: Transform -- uid: 25040 - type: CableApcExtension - components: - - pos: 97.5,-32.5 - parent: 0 - type: Transform -- uid: 25041 - type: CableApcExtension - components: - - pos: 97.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25042 - type: CableApcExtension - components: - - pos: 98.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25043 - type: CableApcExtension - components: - - pos: 99.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25044 - type: CableApcExtension - components: - - pos: 100.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25045 - type: CableApcExtension - components: - - pos: 101.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25046 - type: CableHV - components: - - pos: 36.5,-15.5 - parent: 0 - type: Transform -- uid: 25047 - type: CableHV - components: - - pos: 35.5,-15.5 - parent: 0 - type: Transform -- uid: 25048 - type: CableHV - components: - - pos: 34.5,-15.5 - parent: 0 - type: Transform -- uid: 25049 - type: CableHV - components: - - pos: 33.5,-15.5 - parent: 0 - type: Transform -- uid: 25050 - type: CableHV - components: - - pos: 32.5,-15.5 - parent: 0 - type: Transform -- uid: 25051 - type: CableHV - components: - - pos: 32.5,-14.5 - parent: 0 - type: Transform -- uid: 25052 - type: CableHV - components: - - pos: 32.5,-13.5 - parent: 0 - type: Transform -- uid: 25053 - type: CableHV - components: - - pos: 32.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25054 - type: CableHV - components: - - pos: 33.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25055 - type: CableHV - components: - - pos: 33.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25056 - type: CableHV - components: - - pos: 33.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25057 - type: CableHV - components: - - pos: 33.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25058 - type: CableHV - components: - - pos: 33.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25059 - type: CableHV - components: - - pos: 33.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25060 - type: CableHV - components: - - pos: 33.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25061 - type: CableHV - components: - - pos: 33.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25062 - type: CableHV - components: - - pos: 33.5,-4.5 - parent: 0 - type: Transform -- uid: 25063 - type: CableHV - components: - - pos: 33.5,-3.5 - parent: 0 - type: Transform -- uid: 25064 - type: CableHV - components: - - pos: 33.5,-2.5 - parent: 0 - type: Transform -- uid: 25065 - type: CableHV - components: - - pos: 33.5,-1.5 - parent: 0 - type: Transform -- uid: 25066 - type: CableHV - components: - - pos: 31.5,-15.5 - parent: 0 - type: Transform -- uid: 25067 - type: CableHV - components: - - pos: 30.5,-15.5 - parent: 0 - type: Transform -- uid: 25068 - type: CableHV - components: - - pos: 29.5,-15.5 - parent: 0 - type: Transform -- uid: 25069 - type: CableHV - components: - - pos: 28.5,-15.5 - parent: 0 - type: Transform -- uid: 25070 - type: CableHV - components: - - pos: 27.5,-15.5 - parent: 0 - type: Transform -- uid: 25071 - type: CableHV - components: - - pos: 26.5,-15.5 - parent: 0 - type: Transform -- uid: 25072 - type: CableHV - components: - - pos: 25.5,-15.5 - parent: 0 - type: Transform -- uid: 25073 - type: CableHV - components: - - pos: 90.5,-10.5 - parent: 0 - type: Transform -- uid: 25074 - type: CableHV - components: - - pos: 89.5,-10.5 - parent: 0 - type: Transform -- uid: 25075 - type: CableHV - components: - - pos: 88.5,-10.5 - parent: 0 - type: Transform -- uid: 25076 - type: CableHV - components: - - pos: 88.5,-11.5 - parent: 0 - type: Transform -- uid: 25077 - type: CableHV - components: - - pos: 88.5,-12.5 - parent: 0 - type: Transform -- uid: 25078 - type: CableHV - components: - - pos: 88.5,-13.5 - parent: 0 - type: Transform -- uid: 25079 - type: CableHV - components: - - pos: 88.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25080 - type: CableHV - components: - - pos: 88.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25081 - type: CableHV - components: - - pos: 88.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25082 - type: CableHV - components: - - pos: 88.5,-17.5 - parent: 0 - type: Transform -- uid: 25083 - type: CableHV - components: - - pos: 88.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25084 - type: CableHV - components: - - pos: 88.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25085 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 87.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25086 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 88.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25087 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 89.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25088 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 90.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25089 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 91.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25090 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 92.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25091 - type: GasVentPump - components: - - pos: 86.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25092 - type: GasPipeBend - components: - - pos: 97.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25093 - type: GasPipeStraight - components: - - pos: 97.5,-40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25094 - type: GasPipeStraight - components: - - pos: 97.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25095 - type: GasPipeStraight - components: - - pos: 97.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25096 - type: GasPipeStraight - components: - - pos: 97.5,-43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25097 - type: GasPipeStraight - components: - - pos: 97.5,-44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25098 - type: GasPipeStraight - components: - - pos: 97.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25099 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25100 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 96.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25101 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 95.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25102 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 94.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25103 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 93.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25104 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 92.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25105 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 91.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25106 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 90.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25107 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 89.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25108 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 88.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25109 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 87.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25110 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 86.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25111 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 85.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25112 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 84.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25113 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25114 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 82.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25115 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 81.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25116 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25117 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25118 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25119 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25120 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25121 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25122 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25123 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25124 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25125 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25126 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25127 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25128 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25129 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25130 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25131 - type: APCBasic - components: - - pos: 100.5,-44.5 - parent: 0 - type: Transform -- uid: 25132 - type: WallSolid - components: - - pos: 101.5,-45.5 - parent: 0 - type: Transform -- uid: 25133 - type: WallSolidRust - components: - - pos: 102.5,-50.5 - parent: 0 - type: Transform -- uid: 25134 - type: WallSolid - components: - - pos: 102.5,-49.5 - parent: 0 - type: Transform -- uid: 25135 - type: WallSolid - components: - - pos: 101.5,-49.5 - parent: 0 - type: Transform -- uid: 25136 - type: WallSolid - components: - - pos: 100.5,-49.5 - parent: 0 - type: Transform -- uid: 25137 - type: WallSolid - components: - - pos: 99.5,-49.5 - parent: 0 - type: Transform -- uid: 25138 - type: WallSolidRust - components: - - pos: 99.5,-50.5 - parent: 0 - type: Transform -- uid: 25139 - type: WallSolid - components: - - pos: 101.5,-48.5 - parent: 0 - type: Transform -- uid: 25140 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25141 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25142 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25143 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25144 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25145 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25146 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25147 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25148 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25149 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25150 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25151 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25152 - type: WallSolid - components: - - pos: 101.5,-47.5 - parent: 0 - type: Transform -- uid: 25153 - type: CableHV - components: - - pos: 103.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25154 - type: CableHV - components: - - pos: 103.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25155 - type: CableHV - components: - - pos: 103.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25156 - type: CableHV - components: - - pos: 103.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25157 - type: CableHV - components: - - pos: 102.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25158 - type: CableHV - components: - - pos: 101.5,-46.5 - parent: 0 - type: Transform -- uid: 25159 - type: CableHV - components: - - pos: 100.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25160 - type: CableHV - components: - - pos: 99.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25161 - type: CableHV - components: - - pos: 98.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25162 - type: CableHV - components: - - pos: 97.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25163 - type: CableHV - components: - - pos: 97.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25164 - type: CableHV - components: - - pos: 97.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25165 - type: CableHV - components: - - pos: 97.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25166 - type: CableHV - components: - - pos: 96.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25167 - type: CableHV - components: - - pos: 95.5,-46.5 - parent: 0 - type: Transform -- uid: 25168 - type: CableHV - components: - - pos: 94.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25169 - type: CableHV - components: - - pos: 93.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25170 - type: CableHV - components: - - pos: 92.5,-46.5 - parent: 0 - type: Transform -- uid: 25171 - type: CableHV - components: - - pos: 91.5,-46.5 - parent: 0 - type: Transform -- uid: 25172 - type: CableHV - components: - - pos: 90.5,-46.5 - parent: 0 - type: Transform -- uid: 25173 - type: CableHV - components: - - pos: 89.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25174 - type: CableHV - components: - - pos: 88.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25175 - type: CableHV - components: - - pos: 87.5,-46.5 - parent: 0 - type: Transform -- uid: 25176 - type: CableHV - components: - - pos: 86.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25177 - type: CableHV - components: - - pos: 85.5,-46.5 - parent: 0 - type: Transform -- uid: 25178 - type: CableHV - components: - - pos: 84.5,-46.5 - parent: 0 - type: Transform -- uid: 25179 - type: CableHV - components: - - pos: 83.5,-46.5 - parent: 0 - type: Transform -- uid: 25180 - type: CableHV - components: - - pos: 82.5,-46.5 - parent: 0 - type: Transform -- uid: 25181 - type: CableHV - components: - - pos: 81.5,-46.5 - parent: 0 - type: Transform -- uid: 25182 - type: CableHV - components: - - pos: 80.5,-46.5 - parent: 0 - type: Transform -- uid: 25183 - type: CableHV - components: - - pos: 79.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25184 - type: CableHV - components: - - pos: 78.5,-46.5 - parent: 0 - type: Transform -- uid: 25185 - type: CableHV - components: - - pos: 77.5,-46.5 - parent: 0 - type: Transform -- uid: 25186 - type: CableHV - components: - - pos: 76.5,-46.5 - parent: 0 - type: Transform -- uid: 25187 - type: CableHV - components: - - pos: 75.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25188 - type: CableHV - components: - - pos: 74.5,-46.5 - parent: 0 - type: Transform -- uid: 25189 - type: CableHV - components: - - pos: 73.5,-46.5 - parent: 0 - type: Transform -- uid: 25190 - type: CableHV - components: - - pos: 72.5,-46.5 - parent: 0 - type: Transform -- uid: 25191 - type: CableHV - components: - - pos: 71.5,-46.5 - parent: 0 - type: Transform -- uid: 25192 - type: CableHV - components: - - pos: 70.5,-46.5 - parent: 0 - type: Transform -- uid: 25193 - type: CableHV - components: - - pos: 69.5,-46.5 - parent: 0 - type: Transform -- uid: 25194 - type: CableHV - components: - - pos: 68.5,-46.5 - parent: 0 - type: Transform -- uid: 25195 - type: CableHV - components: - - pos: 67.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25196 - type: CableHV - components: - - pos: 66.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25197 - type: CableHV - components: - - pos: 65.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25198 - type: WallReinforced - components: - - pos: 87.5,-45.5 - parent: 0 - type: Transform -- uid: 25199 - type: FireAxeCabinetFilled - components: - - pos: 75.5,-27.5 - parent: 0 - type: Transform - - locked: False - type: Lock -- uid: 25200 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25201 - type: CableMV - components: - - pos: 73.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25202 - type: CableMV - components: - - pos: 71.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25203 - type: CableHV - components: - - pos: -28.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25204 - type: CableHV - components: - - pos: -29.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25205 - type: CableHV - components: - - pos: -30.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25206 - type: CableHV - components: - - pos: -30.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25207 - type: CableHV - components: - - pos: -30.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25208 - type: CableHV - components: - - pos: -30.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25209 - type: CableHV - components: - - pos: -30.5,29.5 - parent: 0 - type: Transform -- uid: 25210 - type: CableHV - components: - - pos: -30.5,30.5 - parent: 0 - type: Transform -- uid: 25211 - type: CableHV - components: - - pos: -30.5,31.5 - parent: 0 - type: Transform -- uid: 25212 - type: CableHV - components: - - pos: -29.5,31.5 - parent: 0 - type: Transform -- uid: 25213 - type: CableHV - components: - - pos: -28.5,31.5 - parent: 0 - type: Transform -- uid: 25214 - type: CableHV - components: - - pos: -28.5,32.5 - parent: 0 - type: Transform -- uid: 25215 - type: CableHV - components: - - pos: -28.5,33.5 - parent: 0 - type: Transform -- uid: 25216 - type: CableHV - components: - - pos: -28.5,34.5 - parent: 0 - type: Transform -- uid: 25217 - type: CableHV - components: - - pos: -28.5,35.5 - parent: 0 - type: Transform -- uid: 25218 - type: CableHV - components: - - pos: -28.5,36.5 - parent: 0 - type: Transform -- uid: 25219 - type: CableHV - components: - - pos: -28.5,37.5 - parent: 0 - type: Transform -- uid: 25220 - type: CableHV - components: - - pos: -28.5,38.5 - parent: 0 - type: Transform -- uid: 25221 - type: CableHV - components: - - pos: -28.5,39.5 - parent: 0 - type: Transform -- uid: 25222 - type: CableHV - components: - - pos: -28.5,40.5 - parent: 0 - type: Transform -- uid: 25223 - type: CableHV - components: - - pos: -29.5,40.5 - parent: 0 - type: Transform -- uid: 25224 - type: CableHV - components: - - pos: -30.5,40.5 - parent: 0 - type: Transform -- uid: 25225 - type: CableHV - components: - - pos: -31.5,40.5 - parent: 0 - type: Transform -- uid: 25226 - type: CableHV - components: - - pos: -32.5,40.5 - parent: 0 - type: Transform -- uid: 25227 - type: CableHV - components: - - pos: -32.5,41.5 - parent: 0 - type: Transform -- uid: 25228 - type: CableHV - components: - - pos: -32.5,42.5 - parent: 0 - type: Transform -- uid: 25229 - type: CableHV - components: - - pos: -32.5,43.5 - parent: 0 - type: Transform -- uid: 25230 - type: CableHV - components: - - pos: -32.5,44.5 - parent: 0 - type: Transform -- uid: 25231 - type: CableHV - components: - - pos: -32.5,45.5 - parent: 0 - type: Transform -- uid: 25232 - type: CableHV - components: - - pos: -32.5,46.5 - parent: 0 - type: Transform -- uid: 25233 - type: AirlockMaintAtmoLocked - components: - - pos: 64.5,-22.5 - parent: 0 - type: Transform -- uid: 25234 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 91.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25235 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 92.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25236 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 91.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25237 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 90.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25238 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 92.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25239 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 79.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25240 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25241 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 77.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25242 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 78.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25243 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25244 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 80.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25245 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 81.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25246 - type: GasPipeStraight - components: - - pos: 79.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25247 - type: GasPipeStraight - components: - - pos: 79.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25248 - type: GasPipeStraight - components: - - pos: 79.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25249 - type: GasPipeStraight - components: - - pos: 79.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25250 - type: GasPipeStraight - components: - - pos: 79.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25251 - type: GasPipeStraight - components: - - pos: 79.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25252 - type: GasPipeStraight - components: - - pos: 79.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25253 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25254 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 81.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25255 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 82.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25256 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 83.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25257 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 84.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25258 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 85.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25259 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 86.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25260 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 87.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25261 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 88.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25262 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 89.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25263 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25264 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25265 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25266 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25267 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25268 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25269 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25270 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 89.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25271 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25272 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25273 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25274 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25275 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 89.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25276 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 93.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25277 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25278 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25279 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25280 - type: GasPipeTJunction - components: - - pos: 97.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25281 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 98.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25282 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 99.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25283 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 100.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25284 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 101.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25285 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 102.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25286 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 103.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25287 - type: GasPipeTJunction - components: - - pos: 111.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25288 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 111.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25289 - type: GasPipeBend - components: - - pos: 113.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25290 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 113.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25291 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25292 - type: GasPipeStraight - components: - - pos: 113.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25293 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 112.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25294 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 111.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25295 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 110.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25296 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 109.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25297 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 108.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25298 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 107.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25299 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 106.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25300 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 105.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25301 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 104.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25302 - type: GasPipeStraight - components: - - pos: 103.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25303 - type: GasPipeStraight - components: - - pos: 103.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25304 - type: GasPipeStraight - components: - - pos: 103.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25305 - type: GasPipeTJunction - components: - - pos: 103.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25306 - type: GasPipeTJunction - components: - - pos: 104.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25307 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 105.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25308 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 106.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25309 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 107.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25310 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 102.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25311 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 101.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25312 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 100.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25313 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 99.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25314 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 98.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25315 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 97.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25316 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 97.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25317 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 97.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25318 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25319 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25320 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 94.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25321 - type: GasPipeFourway - components: - - pos: 93.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25322 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 92.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25323 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 91.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25324 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 90.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25325 - type: GasPipeBend - components: - - pos: 97.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25326 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 97.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25327 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 93.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25328 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 93.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25329 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 93.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25330 - type: GasVentPump - components: - - pos: 93.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25331 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 93.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25332 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 104.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25333 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 108.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25334 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 113.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25335 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 115.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25336 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 82.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25337 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 72.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25338 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 74.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25339 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25340 - type: GasPipeStraight - components: - - pos: 72.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25341 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25342 - type: GasVentScrubber - components: - - pos: 72.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25343 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25344 - type: GasPipeTJunction - components: - - pos: 76.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25345 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25346 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25347 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25348 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25349 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 81.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25350 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 82.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25351 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25352 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25353 - type: GasPipeBend - components: - - pos: 78.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25354 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 77.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25355 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 77.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25356 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 83.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25357 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25358 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25359 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 78.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25360 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 75.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25361 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25362 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 82.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25363 - type: GasPipeFourway - components: - - pos: 77.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25364 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 78.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25365 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25366 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 80.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25367 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 81.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25368 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 82.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25369 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 83.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25370 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 84.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25371 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 85.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25372 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 86.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25373 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 87.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25374 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 88.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25375 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 89.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25376 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 76.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25377 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25378 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 74.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25379 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25380 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25381 - type: GasPipeStraight - components: - - pos: 77.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25382 - type: GasPipeStraight - components: - - pos: 77.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25383 - type: GasPipeStraight - components: - - pos: 77.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25384 - type: GasVentScrubber - components: - - pos: 77.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25385 - type: GasPipeStraight - components: - - pos: 83.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25386 - type: GasPipeStraight - components: - - pos: 83.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25387 - type: GasPipeStraight - components: - - pos: 83.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25388 - type: GasPipeStraight - components: - - pos: 83.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25389 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25390 - type: GasPipeBend - components: - - pos: 83.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25391 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 82.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25392 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 81.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25393 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25394 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25395 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 78.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25396 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 77.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25397 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 76.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25398 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25399 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25400 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 73.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25401 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 72.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25402 - type: GasVentPump - components: - - pos: 82.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25403 - type: GasVentPump - components: - - pos: 86.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25404 - type: GasVentScrubber - components: - - pos: 86.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25405 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 90.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25406 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 88.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25407 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 88.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25408 - type: GasPipeStraight - components: - - pos: 88.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25409 - type: GasPipeStraight - components: - - pos: 88.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25410 - type: GasPipeStraight - components: - - pos: 88.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25411 - type: GasPipeStraight - components: - - pos: 88.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25412 - type: GasPipeStraight - components: - - pos: 88.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25413 - type: GasPipeStraight - components: - - pos: 88.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25414 - type: GasPipeStraight - components: - - pos: 88.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25415 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 88.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25416 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 89.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25417 - type: GasPipeStraight - components: - - pos: 90.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25418 - type: GasPipeStraight - components: - - pos: 90.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25419 - type: GasPipeStraight - components: - - pos: 90.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25420 - type: GasPipeStraight - components: - - pos: 90.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25421 - type: GasPipeStraight - components: - - pos: 90.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25422 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 90.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25423 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 94.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25424 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 94.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25425 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 94.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25426 - type: GasVentPump - components: - - pos: 94.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25427 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 94.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25428 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25429 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25430 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25431 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25432 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25433 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25434 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25435 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25436 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 89.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25437 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 90.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25438 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 90.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25439 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 90.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25440 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 90.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25441 - type: GasPipeStraight - components: - - pos: 94.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25442 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 93.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25443 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 92.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25444 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 91.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25445 - type: GasPipeBend - components: - - pos: 94.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25446 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 90.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25447 - type: GasPipeBend - components: - - pos: 98.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25448 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 91.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25449 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 92.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25450 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 93.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25451 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 94.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25452 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 95.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25453 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 96.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25454 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25455 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 98.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25456 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 98.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25457 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 90.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25458 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 91.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25459 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 91.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25460 - type: ReinforcedPlasmaWindow - components: - - pos: 84.5,-0.5 - parent: 0 - type: Transform -- uid: 25461 - type: ReinforcedPlasmaWindow - components: - - pos: 84.5,1.5 - parent: 0 - type: Transform -- uid: 25462 - type: Grille - components: - - pos: 84.5,-0.5 - parent: 0 - type: Transform -- uid: 25463 - type: Grille - components: - - pos: 84.5,1.5 - parent: 0 - type: Transform -- uid: 25464 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 91.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25465 - type: AirlockEngineeringLocked - components: - - pos: 60.5,-6.5 - parent: 0 - type: Transform -- uid: 25466 - type: AirlockMaintEngiLocked - components: - - pos: 67.5,-6.5 - parent: 0 - type: Transform -- uid: 25467 - type: AirlockMaintEngiLocked - components: - - pos: 83.5,2.5 - parent: 0 - type: Transform -- uid: 25468 - type: AirlockMaintEngiLocked - components: - - pos: 112.5,5.5 - parent: 0 - type: Transform -- uid: 25469 - type: AirlockEngineeringGlassLocked - components: - - pos: 102.5,-16.5 - parent: 0 - type: Transform -- uid: 25470 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 94.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25471 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 93.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25472 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 91.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25473 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 91.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25474 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 95.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25475 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 93.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25476 - type: Catwalk - components: - - pos: 88.5,-16.5 - parent: 0 - type: Transform -- uid: 25477 - type: Catwalk - components: - - pos: 88.5,-15.5 - parent: 0 - type: Transform -- uid: 25478 - type: Catwalk - components: - - pos: 88.5,-14.5 - parent: 0 - type: Transform -- uid: 25479 - type: Catwalk - components: - - pos: 88.5,-18.5 - parent: 0 - type: Transform -- uid: 25480 - type: Catwalk - components: - - pos: 88.5,-19.5 - parent: 0 - type: Transform -- uid: 25481 - type: Catwalk - components: - - pos: 89.5,-20.5 - parent: 0 - type: Transform -- uid: 25482 - type: Catwalk - components: - - pos: 88.5,-20.5 - parent: 0 - type: Transform -- uid: 25483 - type: Catwalk - components: - - pos: 87.5,-20.5 - parent: 0 - type: Transform -- uid: 25484 - type: Catwalk - components: - - pos: 86.5,-20.5 - parent: 0 - type: Transform -- uid: 25485 - type: Catwalk - components: - - pos: 85.5,-20.5 - parent: 0 - type: Transform -- uid: 25486 - type: Catwalk - components: - - pos: 84.5,-20.5 - parent: 0 - type: Transform -- uid: 25487 - type: Catwalk - components: - - pos: 83.5,-20.5 - parent: 0 - type: Transform -- uid: 25488 - type: TintedWindow - components: - - pos: 81.5,-22.5 - parent: 0 - type: Transform -- uid: 25489 - type: TintedWindow - components: - - pos: 79.5,-22.5 - parent: 0 - type: Transform -- uid: 25490 - type: Grille - components: - - pos: 79.5,-22.5 - parent: 0 - type: Transform -- uid: 25491 - type: Grille - components: - - pos: 81.5,-22.5 - parent: 0 - type: Transform -- uid: 25492 - type: HighSecCommandLocked - components: - - pos: 80.5,-22.5 - parent: 0 - type: Transform -- uid: 25493 - type: AirlockChiefEngineerLocked - components: - - pos: 80.5,-13.5 - parent: 0 - type: Transform -- uid: 25494 - type: AirlockChiefEngineerLocked - components: - - pos: 85.5,-14.5 - parent: 0 - type: Transform -- uid: 25495 - type: AirlockMaintEngiLocked - components: - - pos: 90.5,-20.5 - parent: 0 - type: Transform -- uid: 25496 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 89.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25497 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 91.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25498 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 89.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25499 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 90.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25500 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 90.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25501 - type: AirSensor - components: - - pos: 68.5,-15.5 - parent: 0 - type: Transform -- uid: 25502 - type: AirSensor - components: - - pos: 68.5,-9.5 - parent: 0 - type: Transform -- uid: 25503 - type: ReinforcedPlasmaWindow - components: - - pos: 84.5,-6.5 - parent: 0 - type: Transform -- uid: 25504 - type: AirlockEngineeringGlassLocked - components: - - pos: 86.5,-2.5 - parent: 0 - type: Transform -- uid: 25505 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 76.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25506 - type: AirSensor - components: - - pos: 49.5,-10.5 - parent: 0 - type: Transform -- uid: 25507 - type: AirSensor - components: - - pos: 48.5,-1.5 - parent: 0 - type: Transform -- uid: 25508 - type: AirSensor - components: - - pos: 61.5,-12.5 - parent: 0 - type: Transform -- uid: 25509 - type: HighSecCommandLocked - components: - - pos: 60.5,0.5 - parent: 0 - type: Transform -- uid: 25510 - type: AirlockEngineeringLocked - components: - - pos: 65.5,-0.5 - parent: 0 - type: Transform -- uid: 25511 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 81.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25512 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25513 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 79.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25514 - type: GasFilter - components: - - name: Product Filter - type: MetaData - - rot: -1.5707963267948966 rad - pos: 80.5,-34.5 - parent: 0 - type: Transform - - color: '#BD9D1EFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25515 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,2.5 - parent: 0 - type: Transform -- uid: 25516 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 56.5,2.5 - parent: 0 - type: Transform -- uid: 25517 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,0.5 - parent: 0 - type: Transform -- uid: 25518 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 53.5,-0.5 - parent: 0 - type: Transform -- uid: 25519 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,3.5 - parent: 0 - type: Transform -- uid: 25520 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,8.5 - parent: 0 - type: Transform -- uid: 25521 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 56.5,8.5 - parent: 0 - type: Transform -- uid: 25522 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,10.5 - parent: 0 - type: Transform -- uid: 25523 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,11.5 - parent: 0 - type: Transform -- uid: 25524 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,12.5 - parent: 0 - type: Transform -- uid: 25525 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,13.5 - parent: 0 - type: Transform -- uid: 25526 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,14.5 - parent: 0 - type: Transform -- uid: 25527 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,15.5 - parent: 0 - type: Transform -- uid: 25528 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,16.5 - parent: 0 - type: Transform -- uid: 25529 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,17.5 - parent: 0 - type: Transform -- uid: 25530 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,18.5 - parent: 0 - type: Transform -- uid: 25531 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: 54.5,4.5 - parent: 0 - type: Transform -- uid: 25532 - type: RailingCornerSmall - components: - - pos: 54.5,-0.5 - parent: 0 - type: Transform -- uid: 25533 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-0.5 - parent: 0 - type: Transform -- uid: 25534 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 57.5,5.5 - parent: 0 - type: Transform -- uid: 25535 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 57.5,6.5 - parent: 0 - type: Transform -- uid: 25536 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 57.5,6.5 - parent: 0 - type: Transform -- uid: 25537 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 57.5,5.5 - parent: 0 - type: Transform -- uid: 25538 - type: AirlockSecurityLocked - components: - - pos: 70.5,-9.5 - parent: 0 - type: Transform -- uid: 25539 - type: AirlockSecurityLocked - components: - - pos: 72.5,-11.5 - parent: 0 - type: Transform -- uid: 25540 - type: BlastDoor - components: - - pos: 92.5,-13.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25543 - type: SignalReceiver -- uid: 25541 - type: BlastDoor - components: - - pos: 93.5,-13.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25543 - type: SignalReceiver -- uid: 25542 - type: BlastDoor - components: - - pos: 94.5,-13.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25543 - type: SignalReceiver -- uid: 25543 - type: SignalButton - components: - - pos: 91.5,-13.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 25540 - - port: Toggle - uid: 25541 - - port: Toggle - uid: 25542 - type: SignalTransmitter -- uid: 25544 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 88.5,0.5 - parent: 0 - type: Transform -- uid: 25545 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 88.5,1.5 - parent: 0 - type: Transform -- uid: 25546 - type: CableHV - components: - - pos: 86.5,0.5 - parent: 0 - type: Transform -- uid: 25547 - type: CableHV - components: - - pos: 85.5,0.5 - parent: 0 - type: Transform -- uid: 25548 - type: CableHV - components: - - pos: 87.5,-1.5 - parent: 0 - type: Transform -- uid: 25549 - type: CableHV - components: - - pos: 87.5,3.5 - parent: 0 - type: Transform -- uid: 25550 - type: ComputerPowerMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 87.5,-1.5 - parent: 0 - type: Transform -- uid: 25551 - type: SubstationBasic - components: - - name: Engineering Sub - type: MetaData - - pos: 87.5,3.5 - parent: 0 - type: Transform -- uid: 25552 - type: APCBasic - components: - - pos: 85.5,4.5 - parent: 0 - type: Transform -- uid: 25553 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 88.5,-2.5 - parent: 0 - type: Transform -- uid: 25554 - type: APCBasic - components: - - pos: 96.5,-1.5 - parent: 0 - type: Transform -- uid: 25555 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-1.5 - parent: 0 - type: Transform -- uid: 25556 - type: APCBasic - components: - - pos: 83.5,-9.5 - parent: 0 - type: Transform -- uid: 25557 - type: APCBasic - components: - - pos: 92.5,-9.5 - parent: 0 - type: Transform -- uid: 25558 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 88.5,4.5 - parent: 0 - type: Transform -- uid: 25559 - type: APCBasic - components: - - pos: 80.5,2.5 - parent: 0 - type: Transform -- uid: 25560 - type: CableMV - components: - - pos: 87.5,3.5 - parent: 0 - type: Transform -- uid: 25561 - type: CableMV - components: - - pos: 86.5,3.5 - parent: 0 - type: Transform -- uid: 25562 - type: CableMV - components: - - pos: 85.5,3.5 - parent: 0 - type: Transform -- uid: 25563 - type: CableMV - components: - - pos: 85.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25564 - type: CableMV - components: - - pos: 85.5,2.5 - parent: 0 - type: Transform -- uid: 25565 - type: CableMV - components: - - pos: 85.5,1.5 - parent: 0 - type: Transform -- uid: 25566 - type: CableMV - components: - - pos: 85.5,0.5 - parent: 0 - type: Transform -- uid: 25567 - type: CableMV - components: - - pos: 84.5,0.5 - parent: 0 - type: Transform -- uid: 25568 - type: CableMV - components: - - pos: 83.5,0.5 - parent: 0 - type: Transform -- uid: 25569 - type: CableMV - components: - - pos: 82.5,0.5 - parent: 0 - type: Transform -- uid: 25570 - type: CableMV - components: - - pos: 81.5,0.5 - parent: 0 - type: Transform -- uid: 25571 - type: CableMV - components: - - pos: 80.5,0.5 - parent: 0 - type: Transform -- uid: 25572 - type: CableMV - components: - - pos: 80.5,1.5 - parent: 0 - type: Transform -- uid: 25573 - type: CableMV - components: - - pos: 80.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25574 - type: CableMV - components: - - pos: 79.5,0.5 - parent: 0 - type: Transform -- uid: 25575 - type: CableMV - components: - - pos: 78.5,0.5 - parent: 0 - type: Transform -- uid: 25576 - type: CableMV - components: - - pos: 77.5,0.5 - parent: 0 - type: Transform -- uid: 25577 - type: CableMV - components: - - pos: 76.5,0.5 - parent: 0 - type: Transform -- uid: 25578 - type: CableMV - components: - - pos: 75.5,0.5 - parent: 0 - type: Transform -- uid: 25579 - type: CableMV - components: - - pos: 74.5,0.5 - parent: 0 - type: Transform -- uid: 25580 - type: CableMV - components: - - pos: 73.5,0.5 - parent: 0 - type: Transform -- uid: 25581 - type: CableMV - components: - - pos: 73.5,-0.5 - parent: 0 - type: Transform -- uid: 25582 - type: CableMV - components: - - pos: 73.5,-1.5 - parent: 0 - type: Transform -- uid: 25583 - type: CableMV - components: - - pos: 74.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25584 - type: CableMV - components: - - pos: 75.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25585 - type: CableMV - components: - - pos: 83.5,-0.5 - parent: 0 - type: Transform -- uid: 25586 - type: CableMV - components: - - pos: 83.5,-1.5 - parent: 0 - type: Transform -- uid: 25587 - type: CableMV - components: - - pos: 83.5,-2.5 - parent: 0 - type: Transform -- uid: 25588 - type: CableMV - components: - - pos: 83.5,-3.5 - parent: 0 - type: Transform -- uid: 25589 - type: CableMV - components: - - pos: 83.5,-4.5 - parent: 0 - type: Transform -- uid: 25590 - type: CableMV - components: - - pos: 83.5,-5.5 - parent: 0 - type: Transform -- uid: 25591 - type: CableMV - components: - - pos: 84.5,-5.5 - parent: 0 - type: Transform -- uid: 25592 - type: CableMV - components: - - pos: 85.5,-5.5 - parent: 0 - type: Transform -- uid: 25593 - type: CableMV - components: - - pos: 86.5,-5.5 - parent: 0 - type: Transform -- uid: 25594 - type: CableMV - components: - - pos: 87.5,-5.5 - parent: 0 - type: Transform -- uid: 25595 - type: CableMV - components: - - pos: 88.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25596 - type: CableMV - components: - - pos: 89.5,-5.5 - parent: 0 - type: Transform -- uid: 25597 - type: CableMV - components: - - pos: 89.5,-4.5 - parent: 0 - type: Transform -- uid: 25598 - type: CableMV - components: - - pos: 89.5,-3.5 - parent: 0 - type: Transform -- uid: 25599 - type: CableMV - components: - - pos: 89.5,-2.5 - parent: 0 - type: Transform -- uid: 25600 - type: CableMV - components: - - pos: 88.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25601 - type: CableMV - components: - - pos: 90.5,-2.5 - parent: 0 - type: Transform -- uid: 25602 - type: CableMV - components: - - pos: 90.5,-1.5 - parent: 0 - type: Transform -- uid: 25603 - type: CableMV - components: - - pos: 90.5,-0.5 - parent: 0 - type: Transform -- uid: 25604 - type: CableMV - components: - - pos: 90.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25605 - type: CableMV - components: - - pos: 90.5,1.5 - parent: 0 - type: Transform -- uid: 25606 - type: CableMV - components: - - pos: 90.5,2.5 - parent: 0 - type: Transform -- uid: 25607 - type: CableMV - components: - - pos: 90.5,3.5 - parent: 0 - type: Transform -- uid: 25608 - type: CableMV - components: - - pos: 90.5,4.5 - parent: 0 - type: Transform -- uid: 25609 - type: CableMV - components: - - pos: 90.5,5.5 - parent: 0 - type: Transform -- uid: 25610 - type: CableMV - components: - - pos: 89.5,5.5 - parent: 0 - type: Transform -- uid: 25611 - type: CableMV - components: - - pos: 88.5,5.5 - parent: 0 - type: Transform -- uid: 25612 - type: CableMV - components: - - pos: 88.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25613 - type: CableMV - components: - - pos: 89.5,-6.5 - parent: 0 - type: Transform -- uid: 25614 - type: CableMV - components: - - pos: 89.5,-7.5 - parent: 0 - type: Transform -- uid: 25615 - type: CableMV - components: - - pos: 89.5,-8.5 - parent: 0 - type: Transform -- uid: 25616 - type: CableMV - components: - - pos: 89.5,-9.5 - parent: 0 - type: Transform -- uid: 25617 - type: CableMV - components: - - pos: 89.5,-10.5 - parent: 0 - type: Transform -- uid: 25618 - type: CableMV - components: - - pos: 90.5,-10.5 - parent: 0 - type: Transform -- uid: 25619 - type: CableMV - components: - - pos: 91.5,-10.5 - parent: 0 - type: Transform -- uid: 25620 - type: CableMV - components: - - pos: 92.5,-10.5 - parent: 0 - type: Transform -- uid: 25621 - type: CableMV - components: - - pos: 92.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25622 - type: CableMV - components: - - pos: 83.5,-6.5 - parent: 0 - type: Transform -- uid: 25623 - type: CableMV - components: - - pos: 83.5,-7.5 - parent: 0 - type: Transform -- uid: 25624 - type: CableMV - components: - - pos: 83.5,-8.5 - parent: 0 - type: Transform -- uid: 25625 - type: CableMV - components: - - pos: 83.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25626 - type: CableApcExtension - components: - - pos: 83.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25627 - type: CableApcExtension - components: - - pos: 83.5,-10.5 - parent: 0 - type: Transform -- uid: 25628 - type: CableApcExtension - components: - - pos: 83.5,-11.5 - parent: 0 - type: Transform -- uid: 25629 - type: CableApcExtension - components: - - pos: 83.5,-12.5 - parent: 0 - type: Transform -- uid: 25630 - type: CableApcExtension - components: - - pos: 83.5,-13.5 - parent: 0 - type: Transform -- uid: 25631 - type: CableApcExtension - components: - - pos: 82.5,-13.5 - parent: 0 - type: Transform -- uid: 25632 - type: CableApcExtension - components: - - pos: 88.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25633 - type: CableApcExtension - components: - - pos: 84.5,-13.5 - parent: 0 - type: Transform -- uid: 25634 - type: CableApcExtension - components: - - pos: 85.5,-13.5 - parent: 0 - type: Transform -- uid: 25635 - type: CableApcExtension - components: - - pos: 85.5,-14.5 - parent: 0 - type: Transform -- uid: 25636 - type: CableApcExtension - components: - - pos: 85.5,-15.5 - parent: 0 - type: Transform -- uid: 25637 - type: CableApcExtension - components: - - pos: 84.5,-11.5 - parent: 0 - type: Transform -- uid: 25638 - type: CableApcExtension - components: - - pos: 80.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25639 - type: CableApcExtension - components: - - pos: 81.5,-13.5 - parent: 0 - type: Transform -- uid: 25640 - type: CableApcExtension - components: - - pos: 81.5,-12.5 - parent: 0 - type: Transform -- uid: 25641 - type: CableApcExtension - components: - - pos: 80.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25642 - type: CableApcExtension - components: - - pos: 93.5,-16.5 - parent: 0 - type: Transform -- uid: 25643 - type: CableApcExtension - components: - - pos: 87.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25644 - type: CableApcExtension - components: - - pos: 87.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25645 - type: CableApcExtension - components: - - pos: 75.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25646 - type: CableApcExtension - components: - - pos: 74.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25647 - type: CableApcExtension - components: - - pos: 73.5,-1.5 - parent: 0 - type: Transform -- uid: 25648 - type: CableApcExtension - components: - - pos: 72.5,-1.5 - parent: 0 - type: Transform -- uid: 25649 - type: CableApcExtension - components: - - pos: 72.5,-2.5 - parent: 0 - type: Transform -- uid: 25650 - type: CableApcExtension - components: - - pos: 72.5,-3.5 - parent: 0 - type: Transform -- uid: 25651 - type: CableApcExtension - components: - - pos: 72.5,-4.5 - parent: 0 - type: Transform -- uid: 25652 - type: CableApcExtension - components: - - pos: 72.5,-5.5 - parent: 0 - type: Transform -- uid: 25653 - type: CableApcExtension - components: - - pos: 72.5,-0.5 - parent: 0 - type: Transform -- uid: 25654 - type: CableApcExtension - components: - - pos: 72.5,0.5 - parent: 0 - type: Transform -- uid: 25655 - type: CableApcExtension - components: - - pos: 80.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25656 - type: CableApcExtension - components: - - pos: 80.5,1.5 - parent: 0 - type: Transform -- uid: 25657 - type: CableApcExtension - components: - - pos: 80.5,0.5 - parent: 0 - type: Transform -- uid: 25658 - type: CableApcExtension - components: - - pos: 79.5,0.5 - parent: 0 - type: Transform -- uid: 25659 - type: CableApcExtension - components: - - pos: 78.5,0.5 - parent: 0 - type: Transform -- uid: 25660 - type: CableApcExtension - components: - - pos: 77.5,0.5 - parent: 0 - type: Transform -- uid: 25661 - type: CableApcExtension - components: - - pos: 77.5,-0.5 - parent: 0 - type: Transform -- uid: 25662 - type: CableApcExtension - components: - - pos: 77.5,-1.5 - parent: 0 - type: Transform -- uid: 25663 - type: CableApcExtension - components: - - pos: 77.5,-2.5 - parent: 0 - type: Transform -- uid: 25664 - type: CableApcExtension - components: - - pos: 77.5,-3.5 - parent: 0 - type: Transform -- uid: 25665 - type: CableApcExtension - components: - - pos: 77.5,-4.5 - parent: 0 - type: Transform -- uid: 25666 - type: CableApcExtension - components: - - pos: 77.5,-5.5 - parent: 0 - type: Transform -- uid: 25667 - type: CableApcExtension - components: - - pos: 81.5,0.5 - parent: 0 - type: Transform -- uid: 25668 - type: CableApcExtension - components: - - pos: 82.5,0.5 - parent: 0 - type: Transform -- uid: 25669 - type: CableApcExtension - components: - - pos: 83.5,0.5 - parent: 0 - type: Transform -- uid: 25670 - type: CableApcExtension - components: - - pos: 83.5,-0.5 - parent: 0 - type: Transform -- uid: 25671 - type: CableApcExtension - components: - - pos: 83.5,-1.5 - parent: 0 - type: Transform -- uid: 25672 - type: CableApcExtension - components: - - pos: 83.5,-2.5 - parent: 0 - type: Transform -- uid: 25673 - type: CableApcExtension - components: - - pos: 83.5,-3.5 - parent: 0 - type: Transform -- uid: 25674 - type: CableApcExtension - components: - - pos: 83.5,-4.5 - parent: 0 - type: Transform -- uid: 25675 - type: CableApcExtension - components: - - pos: 83.5,-5.5 - parent: 0 - type: Transform -- uid: 25676 - type: CableApcExtension - components: - - pos: 83.5,-6.5 - parent: 0 - type: Transform -- uid: 25677 - type: CableApcExtension - components: - - pos: 83.5,-7.5 - parent: 0 - type: Transform -- uid: 25678 - type: CableApcExtension - components: - - pos: 82.5,-4.5 - parent: 0 - type: Transform -- uid: 25679 - type: CableApcExtension - components: - - pos: 80.5,-4.5 - parent: 0 - type: Transform -- uid: 25680 - type: CableApcExtension - components: - - pos: 81.5,-4.5 - parent: 0 - type: Transform -- uid: 25681 - type: CableApcExtension - components: - - pos: 79.5,-4.5 - parent: 0 - type: Transform -- uid: 25682 - type: CableApcExtension - components: - - pos: 78.5,-4.5 - parent: 0 - type: Transform -- uid: 25683 - type: CableApcExtension - components: - - pos: 85.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25684 - type: CableApcExtension - components: - - pos: 85.5,3.5 - parent: 0 - type: Transform -- uid: 25685 - type: CableApcExtension - components: - - pos: 86.5,3.5 - parent: 0 - type: Transform -- uid: 25686 - type: CableApcExtension - components: - - pos: 86.5,2.5 - parent: 0 - type: Transform -- uid: 25687 - type: CableApcExtension - components: - - pos: 86.5,1.5 - parent: 0 - type: Transform -- uid: 25688 - type: CableApcExtension - components: - - pos: 86.5,0.5 - parent: 0 - type: Transform -- uid: 25689 - type: CableApcExtension - components: - - pos: 86.5,-0.5 - parent: 0 - type: Transform -- uid: 25690 - type: CableApcExtension - components: - - pos: 86.5,-1.5 - parent: 0 - type: Transform -- uid: 25691 - type: CableApcExtension - components: - - pos: 86.5,-2.5 - parent: 0 - type: Transform -- uid: 25692 - type: CableApcExtension - components: - - pos: 86.5,-3.5 - parent: 0 - type: Transform -- uid: 25693 - type: CableApcExtension - components: - - pos: 86.5,-4.5 - parent: 0 - type: Transform -- uid: 25694 - type: CableApcExtension - components: - - pos: 86.5,-5.5 - parent: 0 - type: Transform -- uid: 25695 - type: CableApcExtension - components: - - pos: 86.5,-6.5 - parent: 0 - type: Transform -- uid: 25696 - type: CableApcExtension - components: - - pos: 88.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25697 - type: CableApcExtension - components: - - pos: 89.5,-2.5 - parent: 0 - type: Transform -- uid: 25698 - type: CableApcExtension - components: - - pos: 90.5,-2.5 - parent: 0 - type: Transform -- uid: 25699 - type: CableApcExtension - components: - - pos: 90.5,-3.5 - parent: 0 - type: Transform -- uid: 25700 - type: CableApcExtension - components: - - pos: 90.5,-4.5 - parent: 0 - type: Transform -- uid: 25701 - type: CableApcExtension - components: - - pos: 90.5,-5.5 - parent: 0 - type: Transform -- uid: 25702 - type: CableApcExtension - components: - - pos: 90.5,-6.5 - parent: 0 - type: Transform -- uid: 25703 - type: CableApcExtension - components: - - pos: 90.5,-7.5 - parent: 0 - type: Transform -- uid: 25704 - type: CableApcExtension - components: - - pos: 90.5,-8.5 - parent: 0 - type: Transform -- uid: 25705 - type: CableApcExtension - components: - - pos: 90.5,-1.5 - parent: 0 - type: Transform -- uid: 25706 - type: CableApcExtension - components: - - pos: 90.5,-0.5 - parent: 0 - type: Transform -- uid: 25707 - type: CableApcExtension - components: - - pos: 90.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25708 - type: CableApcExtension - components: - - pos: 90.5,1.5 - parent: 0 - type: Transform -- uid: 25709 - type: CableApcExtension - components: - - pos: 90.5,2.5 - parent: 0 - type: Transform -- uid: 25710 - type: CableApcExtension - components: - - pos: 90.5,3.5 - parent: 0 - type: Transform -- uid: 25711 - type: CableApcExtension - components: - - pos: 91.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25712 - type: CableApcExtension - components: - - pos: 92.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25713 - type: CableApcExtension - components: - - pos: 93.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25714 - type: CableApcExtension - components: - - pos: 94.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25715 - type: CableApcExtension - components: - - pos: 95.5,0.5 - parent: 0 - type: Transform -- uid: 25716 - type: CableApcExtension - components: - - pos: 96.5,0.5 - parent: 0 - type: Transform -- uid: 25717 - type: CableApcExtension - components: - - pos: 97.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25718 - type: CableApcExtension - components: - - pos: 98.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25719 - type: CableApcExtension - components: - - pos: 88.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25720 - type: CableApcExtension - components: - - pos: 88.5,5.5 - parent: 0 - type: Transform -- uid: 25721 - type: CableApcExtension - components: - - pos: 88.5,6.5 - parent: 0 - type: Transform -- uid: 25722 - type: CableApcExtension - components: - - pos: 88.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25723 - type: CableApcExtension - components: - - pos: 87.5,6.5 - parent: 0 - type: Transform -- uid: 25724 - type: CableApcExtension - components: - - pos: 86.5,6.5 - parent: 0 - type: Transform -- uid: 25725 - type: CableApcExtension - components: - - pos: 85.5,6.5 - parent: 0 - type: Transform -- uid: 25726 - type: CableApcExtension - components: - - pos: 84.5,6.5 - parent: 0 - type: Transform -- uid: 25727 - type: CableApcExtension - components: - - pos: 89.5,6.5 - parent: 0 - type: Transform -- uid: 25728 - type: CableApcExtension - components: - - pos: 96.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25729 - type: CableApcExtension - components: - - pos: 96.5,-2.5 - parent: 0 - type: Transform -- uid: 25730 - type: CableApcExtension - components: - - pos: 96.5,-3.5 - parent: 0 - type: Transform -- uid: 25731 - type: CableApcExtension - components: - - pos: 96.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25732 - type: CableApcExtension - components: - - pos: 96.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25733 - type: CableApcExtension - components: - - pos: 96.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25734 - type: CableApcExtension - components: - - pos: 96.5,-7.5 - parent: 0 - type: Transform -- uid: 25735 - type: CableApcExtension - components: - - pos: 96.5,-8.5 - parent: 0 - type: Transform -- uid: 25736 - type: CableApcExtension - components: - - pos: 97.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25737 - type: CableApcExtension - components: - - pos: 98.5,-5.5 - parent: 0 - type: Transform -- uid: 25738 - type: CableApcExtension - components: - - pos: 99.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25739 - type: CableApcExtension - components: - - pos: 99.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25740 - type: CableApcExtension - components: - - pos: 99.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25741 - type: CableApcExtension - components: - - pos: 99.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25742 - type: CableApcExtension - components: - - pos: 99.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25743 - type: CableApcExtension - components: - - pos: 95.5,-8.5 - parent: 0 - type: Transform -- uid: 25744 - type: CableApcExtension - components: - - pos: 94.5,-8.5 - parent: 0 - type: Transform -- uid: 25745 - type: CableApcExtension - components: - - pos: 95.5,-3.5 - parent: 0 - type: Transform -- uid: 25746 - type: CableApcExtension - components: - - pos: 94.5,-3.5 - parent: 0 - type: Transform -- uid: 25747 - type: CableApcExtension - components: - - pos: 92.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25748 - type: CableApcExtension - components: - - pos: 92.5,-10.5 - parent: 0 - type: Transform -- uid: 25749 - type: CableApcExtension - components: - - pos: 92.5,-11.5 - parent: 0 - type: Transform -- uid: 25750 - type: CableApcExtension - components: - - pos: 92.5,-12.5 - parent: 0 - type: Transform -- uid: 25751 - type: CableApcExtension - components: - - pos: 92.5,-13.5 - parent: 0 - type: Transform -- uid: 25752 - type: CableApcExtension - components: - - pos: 92.5,-14.5 - parent: 0 - type: Transform -- uid: 25753 - type: CableApcExtension - components: - - pos: 92.5,-15.5 - parent: 0 - type: Transform -- uid: 25754 - type: CableApcExtension - components: - - pos: 92.5,-16.5 - parent: 0 - type: Transform -- uid: 25755 - type: CableApcExtension - components: - - pos: 91.5,-12.5 - parent: 0 - type: Transform -- uid: 25756 - type: CableApcExtension - components: - - pos: 90.5,-12.5 - parent: 0 - type: Transform -- uid: 25757 - type: CableApcExtension - components: - - pos: 89.5,-12.5 - parent: 0 - type: Transform -- uid: 25758 - type: CableApcExtension - components: - - pos: 88.5,-12.5 - parent: 0 - type: Transform -- uid: 25759 - type: CableApcExtension - components: - - pos: 88.5,-13.5 - parent: 0 - type: Transform -- uid: 25760 - type: CableApcExtension - components: - - pos: 88.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25761 - type: CableApcExtension - components: - - pos: 88.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25762 - type: CableApcExtension - components: - - pos: 93.5,-11.5 - parent: 0 - type: Transform -- uid: 25763 - type: CableApcExtension - components: - - pos: 94.5,-11.5 - parent: 0 - type: Transform -- uid: 25764 - type: CableApcExtension - components: - - pos: 95.5,-11.5 - parent: 0 - type: Transform -- uid: 25765 - type: CableApcExtension - components: - - pos: 96.5,-11.5 - parent: 0 - type: Transform -- uid: 25766 - type: CableApcExtension - components: - - pos: 97.5,-11.5 - parent: 0 - type: Transform -- uid: 25767 - type: CableApcExtension - components: - - pos: 98.5,-11.5 - parent: 0 - type: Transform -- uid: 25768 - type: CableApcExtension - components: - - pos: 98.5,-12.5 - parent: 0 - type: Transform -- uid: 25769 - type: CableApcExtension - components: - - pos: 98.5,-13.5 - parent: 0 - type: Transform -- uid: 25770 - type: CableApcExtension - components: - - pos: 98.5,-14.5 - parent: 0 - type: Transform -- uid: 25771 - type: CableApcExtension - components: - - pos: 98.5,-15.5 - parent: 0 - type: Transform -- uid: 25772 - type: CableApcExtension - components: - - pos: 98.5,-16.5 - parent: 0 - type: Transform -- uid: 25773 - type: CableApcExtension - components: - - pos: 99.5,-16.5 - parent: 0 - type: Transform -- uid: 25774 - type: CableApcExtension - components: - - pos: 100.5,-16.5 - parent: 0 - type: Transform -- uid: 25775 - type: CableApcExtension - components: - - pos: 111.5,-16.5 - parent: 0 - type: Transform -- uid: 25776 - type: CableApcExtension - components: - - pos: 112.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25777 - type: CableApcExtension - components: - - pos: 113.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25778 - type: CableApcExtension - components: - - pos: 113.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25779 - type: AirlockMaintLocked - components: - - pos: 59.5,-13.5 - parent: 0 - type: Transform -- uid: 25780 - type: WallSolid - components: - - pos: 65.5,-39.5 - parent: 0 - type: Transform -- uid: 25781 - type: AirlockMaintLocked - components: - - pos: 64.5,-39.5 - parent: 0 - type: Transform -- uid: 25782 - type: Catwalk - components: - - pos: 64.5,-38.5 - parent: 0 - type: Transform -- uid: 25783 - type: Catwalk - components: - - pos: 64.5,-37.5 - parent: 0 - type: Transform -- uid: 25784 - type: Catwalk - components: - - pos: 64.5,-36.5 - parent: 0 - type: Transform -- uid: 25785 - type: Catwalk - components: - - pos: 64.5,-35.5 - parent: 0 - type: Transform -- uid: 25786 - type: Catwalk - components: - - pos: 64.5,-34.5 - parent: 0 - type: Transform -- uid: 25787 - type: Catwalk - components: - - pos: 64.5,-33.5 - parent: 0 - type: Transform -- uid: 25788 - type: Catwalk - components: - - pos: 64.5,-32.5 - parent: 0 - type: Transform -- uid: 25789 - type: Catwalk - components: - - pos: 64.5,-31.5 - parent: 0 - type: Transform -- uid: 25790 - type: Catwalk - components: - - pos: 65.5,-31.5 - parent: 0 - type: Transform -- uid: 25791 - type: Catwalk - components: - - pos: 65.5,-36.5 - parent: 0 - type: Transform -- uid: 25792 - type: Catwalk - components: - - pos: 65.5,-29.5 - parent: 0 - type: Transform -- uid: 25793 - type: Catwalk - components: - - pos: 65.5,-28.5 - parent: 0 - type: Transform -- uid: 25794 - type: Catwalk - components: - - pos: 65.5,-27.5 - parent: 0 - type: Transform -- uid: 25795 - type: Catwalk - components: - - pos: 65.5,-26.5 - parent: 0 - type: Transform -- uid: 25796 - type: Catwalk - components: - - pos: 65.5,-25.5 - parent: 0 - type: Transform -- uid: 25797 - type: Catwalk - components: - - pos: 64.5,-25.5 - parent: 0 - type: Transform -- uid: 25798 - type: Catwalk - components: - - pos: 64.5,-24.5 - parent: 0 - type: Transform -- uid: 25799 - type: Catwalk - components: - - pos: 64.5,-23.5 - parent: 0 - type: Transform -- uid: 25800 - type: Catwalk - components: - - pos: 63.5,-23.5 - parent: 0 - type: Transform -- uid: 25801 - type: Catwalk - components: - - pos: 62.5,-23.5 - parent: 0 - type: Transform -- uid: 25802 - type: Catwalk - components: - - pos: 61.5,-23.5 - parent: 0 - type: Transform -- uid: 25803 - type: Catwalk - components: - - pos: 60.5,-23.5 - parent: 0 - type: Transform -- uid: 25804 - type: Catwalk - components: - - pos: 59.5,-23.5 - parent: 0 - type: Transform -- uid: 25805 - type: Catwalk - components: - - pos: 58.5,-23.5 - parent: 0 - type: Transform -- uid: 25806 - type: Catwalk - components: - - pos: 59.5,-22.5 - parent: 0 - type: Transform -- uid: 25807 - type: Catwalk - components: - - pos: 59.5,-22.5 - parent: 0 - type: Transform -- uid: 25808 - type: Catwalk - components: - - pos: 59.5,-21.5 - parent: 0 - type: Transform -- uid: 25809 - type: Catwalk - components: - - pos: 59.5,-20.5 - parent: 0 - type: Transform -- uid: 25810 - type: Catwalk - components: - - pos: 59.5,-19.5 - parent: 0 - type: Transform -- uid: 25811 - type: Catwalk - components: - - pos: 59.5,-18.5 - parent: 0 - type: Transform -- uid: 25812 - type: Catwalk - components: - - pos: 59.5,-17.5 - parent: 0 - type: Transform -- uid: 25813 - type: Catwalk - components: - - pos: 59.5,-16.5 - parent: 0 - type: Transform -- uid: 25814 - type: Catwalk - components: - - pos: 59.5,-15.5 - parent: 0 - type: Transform -- uid: 25815 - type: Catwalk - components: - - pos: 59.5,-14.5 - parent: 0 - type: Transform -- uid: 25816 - type: Catwalk - components: - - pos: 59.5,-46.5 - parent: 0 - type: Transform -- uid: 25817 - type: Catwalk - components: - - pos: 60.5,-46.5 - parent: 0 - type: Transform -- uid: 25818 - type: Catwalk - components: - - pos: 61.5,-46.5 - parent: 0 - type: Transform -- uid: 25819 - type: Catwalk - components: - - pos: 62.5,-46.5 - parent: 0 - type: Transform -- uid: 25820 - type: Catwalk - components: - - pos: 63.5,-46.5 - parent: 0 - type: Transform -- uid: 25821 - type: Catwalk - components: - - pos: 64.5,-46.5 - parent: 0 - type: Transform -- uid: 25822 - type: Catwalk - components: - - pos: 64.5,-45.5 - parent: 0 - type: Transform -- uid: 25823 - type: Catwalk - components: - - pos: 64.5,-44.5 - parent: 0 - type: Transform -- uid: 25824 - type: Catwalk - components: - - pos: 64.5,-43.5 - parent: 0 - type: Transform -- uid: 25825 - type: Catwalk - components: - - pos: 64.5,-42.5 - parent: 0 - type: Transform -- uid: 25826 - type: Catwalk - components: - - pos: 64.5,-41.5 - parent: 0 - type: Transform -- uid: 25827 - type: Catwalk - components: - - pos: 64.5,-40.5 - parent: 0 - type: Transform -- uid: 25828 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 53.5,6.5 - parent: 0 - type: Transform -- uid: 25829 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 53.5,7.5 - parent: 0 - type: Transform -- uid: 25830 - type: ClosetEmergencyFilledRandom - components: - - pos: 50.5,0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25831 - type: ClosetFireFilled - components: - - pos: 51.5,0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25832 - type: LockerScienceFilled - components: - - pos: 56.5,-17.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25833 - type: HighSecCommandLocked - components: - - pos: 117.5,-24.5 - parent: 0 - type: Transform -- uid: 25834 - type: GravityGenerator - components: - - pos: 120.5,-24.5 - parent: 0 - type: Transform - - charge: 100 - type: GravityGenerator - - radius: 175.75 - type: PointLight -- uid: 25835 - type: Catwalk - components: - - pos: 112.5,-16.5 - parent: 0 - type: Transform -- uid: 25836 - type: AirlockGlass - components: - - pos: -6.5,54.5 - parent: 0 - type: Transform -- uid: 25837 - type: AirlockGlass - components: - - pos: -6.5,55.5 - parent: 0 - type: Transform -- uid: 25838 - type: AirlockGlass - components: - - pos: -11.5,57.5 - parent: 0 - type: Transform -- uid: 25839 - type: AirlockGlass - components: - - pos: -13.5,57.5 - parent: 0 - type: Transform -- uid: 25840 - type: AirlockGlass - components: - - pos: -14.5,55.5 - parent: 0 - type: Transform -- uid: 25841 - type: AirlockGlass - components: - - pos: -14.5,54.5 - parent: 0 - type: Transform -- uid: 25842 - type: AirlockGlass - components: - - pos: -23.5,54.5 - parent: 0 - type: Transform -- uid: 25843 - type: AirlockGlass - components: - - pos: -23.5,55.5 - parent: 0 - type: Transform -- uid: 25844 - type: CableApcExtension - components: - - pos: 23.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25845 - type: CableApcExtension - components: - - pos: 22.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25846 - type: CableApcExtension - components: - - pos: 22.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25847 - type: CableApcExtension - components: - - pos: 21.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25848 - type: CableApcExtension - components: - - pos: 21.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25849 - type: CableApcExtension - components: - - pos: 22.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25850 - type: CableApcExtension - components: - - pos: 23.5,-52.5 - parent: 0 - type: Transform -- uid: 25851 - type: CableApcExtension - components: - - pos: 24.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25852 - type: CableApcExtension - components: - - pos: 24.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25853 - type: CableApcExtension - components: - - pos: 24.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25854 - type: CableApcExtension - components: - - pos: 28.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25855 - type: CableApcExtension - components: - - pos: 28.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25856 - type: CableApcExtension - components: - - pos: 28.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25857 - type: CableApcExtension - components: - - pos: 28.5,-58.5 - parent: 0 - type: Transform -- uid: 25858 - type: CableApcExtension - components: - - pos: 29.5,-58.5 - parent: 0 - type: Transform -- uid: 25859 - type: CableApcExtension - components: - - pos: 30.5,-58.5 - parent: 0 - type: Transform -- uid: 25860 - type: CableApcExtension - components: - - pos: 30.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25861 - type: CableApcExtension - components: - - pos: 23.5,-57.5 - parent: 0 - type: Transform -- uid: 25862 - type: CableApcExtension - components: - - pos: 22.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25863 - type: CableApcExtension - components: - - pos: 23.5,-55.5 - parent: 0 - type: Transform -- uid: 25864 - type: CableApcExtension - components: - - pos: 22.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25865 - type: CableApcExtension - components: - - pos: 47.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25866 - type: PoweredSmallLight - components: - - pos: 62.5,-35.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25867 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 59.5,-42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25868 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25869 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 89.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25870 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 95.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25871 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 95.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25872 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 95.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25873 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 93.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25874 - type: GeneratorUranium - components: - - pos: 90.5,1.5 - parent: 0 - type: Transform -- uid: 25875 - type: GasVentPump - components: - - pos: 89.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25876 - type: GasVentScrubber - components: - - pos: 91.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25877 - type: GasVentScrubber - components: - - pos: 93.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25878 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: 107.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25879 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 108.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25880 - type: GasPipeStraight - components: - - pos: 109.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25881 - type: GasPipeStraight - components: - - pos: 109.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25882 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 110.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25883 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 111.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25884 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 108.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25885 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 107.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25886 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 106.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25887 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 105.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25888 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 103.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25889 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 102.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25890 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 101.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25891 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 100.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25892 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 99.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25893 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 98.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25894 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 104.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25895 - type: GasPipeTJunction - components: - - pos: 109.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25896 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 109.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25897 - type: GasVentScrubber - components: - - pos: 104.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25898 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 112.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25899 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 97.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25900 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 97.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25901 - type: ShuttersRadiationOpen - components: - - pos: 94.5,-9.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25903 - type: SignalReceiver -- uid: 25902 - type: ShuttersRadiationOpen - components: - - pos: 94.5,-1.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25904 - type: SignalReceiver -- uid: 25903 - type: SignalButton - components: - - pos: 92.5,-8.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 25901 - type: SignalTransmitter -- uid: 25904 - type: SignalButton - components: - - pos: 92.5,-2.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 25902 - type: SignalTransmitter -- uid: 25905 - type: AirAlarm - components: - - pos: 49.5,0.5 - parent: 0 - type: Transform - - devices: - - 14566 - - 14567 - - 14568 - - 14474 - - 14473 - - 14472 - - 21369 - - 21370 - - 21371 - - 8167 - - 8147 - - 8144 - - 25507 - - 25506 - - 14562 - - 14564 - - 14565 - - 14563 - type: DeviceList -- uid: 25906 - type: FireAlarm - components: - - pos: 48.5,0.5 - parent: 0 - type: Transform - - devices: - - 14566 - - 14567 - - 14568 - - 14474 - - 14473 - - 14472 - - 21369 - - 21370 - - 21371 - - 8167 - - 8147 - - 8144 - - 25507 - - 25506 - type: DeviceList -- uid: 25907 - type: AirAlarm - components: - - pos: 58.5,0.5 - parent: 0 - type: Transform - - devices: - - 22683 - - 22684 - type: DeviceList -- uid: 25908 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 66.5,-13.5 - parent: 0 - type: Transform - - devices: - - 21393 - - 21372 - - 21373 - - 21374 - - 21375 - - 25502 - - 22670 - - 22669 - type: DeviceList -- uid: 25909 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 65.5,-13.5 - parent: 0 - type: Transform - - devices: - - 21393 - - 21372 - - 21373 - - 21374 - - 21375 - - 25502 - type: DeviceList -- uid: 25910 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 61.5,-13.5 - parent: 0 - type: Transform - - devices: - - 21369 - - 21370 - - 21371 - - 21372 - - 21373 - - 21374 - - 25508 - type: DeviceList -- uid: 25911 - type: AirAlarm - components: - - pos: 58.5,-8.5 - parent: 0 - type: Transform - - devices: - - 21369 - - 21370 - - 21371 - - 21372 - - 21373 - - 21374 - - 25508 - - 22686 - - 22685 - type: DeviceList -- uid: 25912 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 66.5,-22.5 - parent: 0 - type: Transform - - devices: - - 21376 - - 25009 - - 21393 - - 25948 - - 24035 - - 24027 - type: DeviceList -- uid: 25913 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 65.5,-22.5 - parent: 0 - type: Transform - - devices: - - 21376 - - 25009 - - 21393 - - 25948 - type: DeviceList -- uid: 25914 - type: FireAlarm - components: - - pos: 71.5,-27.5 - parent: 0 - type: Transform - - devices: - - 25950 - - 25951 - - 25952 - - 25953 - - 25007 - - 25006 - - 25005 - - 25004 - - 25944 - type: DeviceList -- uid: 25915 - type: AirAlarm - components: - - pos: 72.5,-27.5 - parent: 0 - type: Transform - - devices: - - 25950 - - 25951 - - 25952 - - 25953 - - 25007 - - 25006 - - 25005 - - 25004 - - 25944 - - 23661 - - 23792 - type: DeviceList -- uid: 25916 - type: FireAlarm - components: - - pos: 70.5,-22.5 - parent: 0 - type: Transform - - devices: - - 25009 - - 25008 - - 25007 - - 25006 - - 25005 - - 25004 - - 25943 - type: DeviceList -- uid: 25917 - type: FireAlarm - components: - - pos: 73.5,-22.5 - parent: 0 - type: Transform - - devices: - - 25008 - - 21382 - - 25949 - type: DeviceList -- uid: 25918 - type: AirAlarm - components: - - pos: 74.5,-22.5 - parent: 0 - type: Transform - - devices: - - 25008 - - 21382 - - 23801 - - 23802 - - 25949 - type: DeviceList -- uid: 25919 - type: AirAlarm - components: - - pos: 81.5,-17.5 - parent: 0 - type: Transform - - devices: - - 21385 - - 21382 - - 21386 - - 25942 - - 24893 - - 24892 - type: DeviceList -- uid: 25920 - type: FireAlarm - components: - - pos: 78.5,-17.5 - parent: 0 - type: Transform - - devices: - - 21385 - - 21382 - - 21386 - - 25942 - type: DeviceList -- uid: 25921 - type: FireAlarm - components: - - pos: 86.5,-17.5 - parent: 0 - type: Transform - - devices: - - 21386 - - 25953 - - 25945 - type: DeviceList -- uid: 25922 - type: AirAlarm - components: - - pos: 87.5,-17.5 - parent: 0 - type: Transform - - devices: - - 21386 - - 25953 - - 25945 - - 25091 - - 25415 - type: DeviceList -- uid: 25923 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 84.5,-2.5 - parent: 0 - type: Transform - - devices: - - 21381 - - 21380 - - 21378 - - 25939 - - 25362 - - 25361 - type: DeviceList -- uid: 25924 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 84.5,-3.5 - parent: 0 - type: Transform - - devices: - - 21381 - - 21380 - - 21378 - - 25939 - type: DeviceList -- uid: 25925 - type: AirAlarm - components: - - pos: 88.5,-9.5 - parent: 0 - type: Transform - - devices: - - 23459 - - 23460 - - 23461 - - 22740 - - 22741 - - 23464 - - 23463 - - 23462 - - 25938 - - 25330 - - 25498 - - 25458 - - 25459 - - invalid - - 25877 - type: DeviceList -- uid: 25926 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 88.5,-8.5 - parent: 0 - type: Transform - - devices: - - 23459 - - 23460 - - 23461 - - 22740 - - 22741 - - 23464 - - 23463 - - 23462 - - 25938 - type: DeviceList -- uid: 25927 - type: AirAlarm - components: - - pos: 99.5,-14.5 - parent: 0 - type: Transform - - devices: - - 25937 - - 23459 - - 23460 - - 23461 - - 25455 - - 25456 - type: DeviceList -- uid: 25928 - type: FireAlarm - components: - - pos: 100.5,-14.5 - parent: 0 - type: Transform - - devices: - - 25937 - - 23459 - - 23460 - - 23461 - type: DeviceList -- uid: 25929 - type: AirAlarm - components: - - pos: 74.5,-11.5 - parent: 0 - type: Transform - - devices: - - 21377 - - 21385 - - 25941 - - 20227 - - 25505 - type: DeviceList -- uid: 25930 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 74.5,-16.5 - parent: 0 - type: Transform - - devices: - - 21377 - - 21385 - - 25941 - type: DeviceList -- uid: 25931 - type: AirAlarm - components: - - pos: 87.5,-2.5 - parent: 0 - type: Transform - - devices: - - 21378 - - 22741 - - 22740 - - 25946 - - 25403 - - 25404 - type: DeviceList -- uid: 25932 - type: FireAlarm - components: - - pos: 85.5,-2.5 - parent: 0 - type: Transform - - devices: - - 21378 - - 22741 - - 22740 - - 25946 - type: DeviceList -- uid: 25933 - type: FireAlarm - components: - - pos: 79.5,2.5 - parent: 0 - type: Transform - - devices: - - 25940 - - 21384 - - 21381 - - 21380 - - 21383 - type: DeviceList -- uid: 25934 - type: AirAlarm - components: - - pos: 78.5,2.5 - parent: 0 - type: Transform - - devices: - - 25940 - - 21384 - - 21381 - - 21380 - - 21383 - - 25384 - - 25402 - type: DeviceList -- uid: 25935 - type: AirAlarm - components: - - pos: 73.5,2.5 - parent: 0 - type: Transform - - devices: - - 25955 - - 21384 - - 25401 - - 25380 - type: DeviceList -- uid: 25936 - type: FireAlarm - components: - - pos: 72.5,2.5 - parent: 0 - type: Transform - - devices: - - 25955 - - 21384 - type: DeviceList -- uid: 25937 - type: AirSensor - components: - - pos: 98.5,-16.5 - parent: 0 - type: Transform -- uid: 25938 - type: AirSensor - components: - - pos: 90.5,-5.5 - parent: 0 - type: Transform -- uid: 25939 - type: AirSensor - components: - - pos: 80.5,-5.5 - parent: 0 - type: Transform -- uid: 25940 - type: AirSensor - components: - - pos: 78.5,1.5 - parent: 0 - type: Transform -- uid: 25941 - type: AirSensor - components: - - pos: 76.5,-12.5 - parent: 0 - type: Transform -- uid: 25942 - type: AirSensor - components: - - pos: 78.5,-19.5 - parent: 0 - type: Transform -- uid: 25943 - type: AirSensor - components: - - pos: 68.5,-25.5 - parent: 0 - type: Transform -- uid: 25944 - type: AirSensor - components: - - pos: 72.5,-31.5 - parent: 0 - type: Transform -- uid: 25945 - type: AirSensor - components: - - pos: 84.5,-19.5 - parent: 0 - type: Transform -- uid: 25946 - type: AirSensor - components: - - pos: 86.5,-4.5 - parent: 0 - type: Transform -- uid: 25947 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-15.5 - parent: 0 - type: Transform - - devices: - - 21375 - - 21377 - - 21376 - - 25501 - type: DeviceList -- uid: 25948 - type: AirSensor - components: - - pos: 66.5,-19.5 - parent: 0 - type: Transform -- uid: 25949 - type: AirSensor - components: - - pos: 73.5,-25.5 - parent: 0 - type: Transform -- uid: 25950 - type: FirelockGlass - components: - - pos: 90.5,-31.5 - parent: 0 - type: Transform -- uid: 25951 - type: FirelockGlass - components: - - pos: 90.5,-30.5 - parent: 0 - type: Transform -- uid: 25952 - type: FirelockGlass - components: - - pos: 90.5,-29.5 - parent: 0 - type: Transform -- uid: 25953 - type: FirelockGlass - components: - - pos: 86.5,-22.5 - parent: 0 - type: Transform -- uid: 25954 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25955 - type: AirSensor - components: - - pos: 72.5,-2.5 - parent: 0 - type: Transform -- uid: 25956 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 86.5,-22.5 - parent: 0 - type: Transform -- uid: 25957 - type: AirlockAtmosphericsLocked - components: - - pos: 68.5,-17.5 - parent: 0 - type: Transform -- uid: 25958 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 68.5,-22.5 - parent: 0 - type: Transform -- uid: 25959 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 71.5,-25.5 - parent: 0 - type: Transform -- uid: 25960 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 76.5,-21.5 - parent: 0 - type: Transform -- uid: 25961 - type: AirlockEngineeringLocked - components: - - pos: 68.5,-13.5 - parent: 0 - type: Transform -- uid: 25962 - type: AirlockEngineeringLocked - components: - - pos: 70.5,-15.5 - parent: 0 - type: Transform -- uid: 25963 - type: AirlockEngineeringGlassLocked - components: - - pos: 76.5,-17.5 - parent: 0 - type: Transform -- uid: 25964 - type: AirlockEngineeringGlassLocked - components: - - pos: 82.5,-20.5 - parent: 0 - type: Transform -- uid: 25965 - type: AirlockEngineeringGlassLocked - components: - - pos: 88.5,-17.5 - parent: 0 - type: Transform -- uid: 25966 - type: AirlockEngineeringGlassLocked - components: - - pos: 88.5,-13.5 - parent: 0 - type: Transform -- uid: 25967 - type: AirlockEngineeringLocked - components: - - pos: 79.5,-7.5 - parent: 0 - type: Transform -- uid: 25968 - type: AirlockEngineeringLocked - components: - - pos: 78.5,-7.5 - parent: 0 - type: Transform -- uid: 25969 - type: AirlockEngineeringGlassLocked - components: - - pos: 75.5,0.5 - parent: 0 - type: Transform -- uid: 25970 - type: AirlockEngineeringGlassLocked - components: - - pos: 77.5,-1.5 - parent: 0 - type: Transform -- uid: 25971 - type: AirlockEngineeringGlassLocked - components: - - pos: 83.5,-1.5 - parent: 0 - type: Transform -- uid: 25972 - type: AirlockEngineeringGlassLocked - components: - - pos: 84.5,0.5 - parent: 0 - type: Transform -- uid: 25973 - type: AirlockEngineeringGlassLocked - components: - - pos: 84.5,-5.5 - parent: 0 - type: Transform -- uid: 25974 - type: AirlockEngineeringGlassLocked - components: - - pos: 88.5,-6.5 - parent: 0 - type: Transform -- uid: 25975 - type: AirlockEngineeringGlassLocked - components: - - pos: 88.5,-4.5 - parent: 0 - type: Transform -- uid: 25976 - type: AirlockEngineeringGlassLocked - components: - - pos: 94.5,-1.5 - parent: 0 - type: Transform -- uid: 25977 - type: AirlockEngineeringGlassLocked - components: - - pos: 94.5,-9.5 - parent: 0 - type: Transform -- uid: 25978 - type: AirlockEngineeringLocked - components: - - pos: 60.5,-8.5 - parent: 0 - type: Transform -- uid: 25979 - type: WindoorEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: 64.5,-13.5 - parent: 0 - type: Transform -- uid: 25980 - type: CableMV - components: - - pos: 101.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25981 - type: CableMV - components: - - pos: 100.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25982 - type: CableMV - components: - - pos: 99.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25983 - type: CableMV - components: - - pos: 98.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25984 - type: ReinforcedPlasmaWindow - components: - - pos: 96.5,-0.5 - parent: 0 - type: Transform -- uid: 25985 - type: SMESBasic - components: - - pos: 97.5,1.5 - parent: 0 - type: Transform -- uid: 25986 - type: CableMV - components: - - pos: 95.5,0.5 - parent: 0 - type: Transform -- uid: 25987 - type: CableMV - components: - - pos: 94.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25988 - type: CableMV - components: - - pos: 93.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25989 - type: CableMV - components: - - pos: 92.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25990 - type: CableMV - components: - - pos: 91.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25991 - type: Grille - components: - - pos: 95.5,-9.5 - parent: 0 - type: Transform -- uid: 25992 - type: Grille - components: - - pos: 93.5,-9.5 - parent: 0 - type: Transform -- uid: 25993 - type: NitrousOxideCanister - components: - - pos: 73.5,-18.5 - parent: 0 - type: Transform -- uid: 25994 - type: StorageCanister - components: - - pos: 73.5,-21.5 - parent: 0 - type: Transform -- uid: 25995 - type: StorageCanister - components: - - pos: 72.5,-21.5 - parent: 0 - type: Transform -- uid: 25996 - type: StorageCanister - components: - - pos: 71.5,-21.5 - parent: 0 - type: Transform -- uid: 25997 - type: OxygenCanister - components: - - pos: 73.5,-20.5 - parent: 0 - type: Transform -- uid: 25998 - type: OxygenCanister - components: - - pos: 72.5,-20.5 - parent: 0 - type: Transform -- uid: 25999 - type: OxygenCanister - components: - - pos: 71.5,-20.5 - parent: 0 - type: Transform -- uid: 26000 - type: OxygenCanister - components: - - pos: 70.5,-20.5 - parent: 0 - type: Transform -- uid: 26001 - type: NitrogenCanister - components: - - pos: 73.5,-19.5 - parent: 0 - type: Transform -- uid: 26002 - type: NitrogenCanister - components: - - pos: 72.5,-19.5 - parent: 0 - type: Transform -- uid: 26003 - type: NitrogenCanister - components: - - pos: 71.5,-19.5 - parent: 0 - type: Transform -- uid: 26004 - type: NitrogenCanister - components: - - pos: 70.5,-19.5 - parent: 0 - type: Transform -- uid: 26005 - type: CarbonDioxideCanister - components: - - pos: 72.5,-18.5 - parent: 0 - type: Transform -- uid: 26006 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 77.5,-26.5 - parent: 0 - type: Transform -- uid: 26007 - type: TableReinforced - components: - - pos: 66.5,-21.5 - parent: 0 - type: Transform -- uid: 26008 - type: TableReinforced - components: - - pos: 65.5,-21.5 - parent: 0 - type: Transform -- uid: 26009 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 62.5,-17.5 - parent: 0 - type: Transform -- uid: 26010 - type: VendingMachineTankDispenserEngineering - components: - - flags: SessionSpecific - type: MetaData - - pos: 62.5,-21.5 - parent: 0 - type: Transform -- uid: 26011 - type: ComputerAlert - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-15.5 - parent: 0 - type: Transform -- uid: 26012 - type: TableReinforced - components: - - pos: 63.5,-14.5 - parent: 0 - type: Transform -- uid: 26013 - type: TableReinforced - components: - - pos: 65.5,-14.5 - parent: 0 - type: Transform -- uid: 26014 - type: TableReinforced - components: - - pos: 65.5,-15.5 - parent: 0 - type: Transform -- uid: 26015 - type: TableReinforced - components: - - pos: 65.5,-16.5 - parent: 0 - type: Transform -- uid: 26016 - type: PottedPlantBioluminscent - components: - - pos: 65.5,-17.5 - parent: 0 - type: Transform -- uid: 26017 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26018 - type: WaterCooler - components: - - pos: 67.5,-15.5 - parent: 0 - type: Transform -- uid: 26019 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26020 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26021 - type: Poweredlight - components: - - pos: 73.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26022 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 60.5,-12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26023 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26024 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26025 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 91.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26026 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26027 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26028 - type: Table - components: - - pos: 40.5,-11.5 - parent: 0 - type: Transform -- uid: 26029 - type: DisposalUnit - components: - - pos: 40.5,-4.5 - parent: 0 - type: Transform -- uid: 26030 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-4.5 - parent: 0 - type: Transform -- uid: 26031 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-4.5 - parent: 0 - type: Transform -- uid: 26032 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-5.5 - parent: 0 - type: Transform -- uid: 26033 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-6.5 - parent: 0 - type: Transform -- uid: 26034 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-7.5 - parent: 0 - type: Transform -- uid: 26035 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 40.5,-8.5 - parent: 0 - type: Transform -- uid: 26036 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 40.5,-9.5 - parent: 0 - type: Transform -- uid: 26037 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 40.5,-10.5 - parent: 0 - type: Transform -- uid: 26038 - type: SignDirectionalHop - components: - - rot: 3.141592653589793 rad - pos: 53.5,-3.5 - parent: 0 - type: Transform -- uid: 26039 - type: SignDirectionalFood - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-3.5 - parent: 0 - type: Transform -- uid: 26040 - type: SignDirectionalSupply - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-8.5 - parent: 0 - type: Transform -- uid: 26041 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26042 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26043 - type: AirlockCommandLocked - components: - - pos: 47.5,-8.5 - parent: 0 - type: Transform -- uid: 26044 - type: AirlockCommandLocked - components: - - pos: 50.5,-8.5 - parent: 0 - type: Transform -- uid: 26045 - type: AirlockCommandLocked - components: - - pos: 50.5,-3.5 - parent: 0 - type: Transform -- uid: 26046 - type: AirlockCommandLocked - components: - - pos: 47.5,-3.5 - parent: 0 - type: Transform -- uid: 26047 - type: TableWood - components: - - pos: 45.5,-6.5 - parent: 0 - type: Transform -- uid: 26048 - type: TableWood - components: - - pos: 45.5,-5.5 - parent: 0 - type: Transform -- uid: 26049 - type: TableWood - components: - - pos: 48.5,-4.5 - parent: 0 - type: Transform -- uid: 26050 - type: TableWood - components: - - pos: 49.5,-4.5 - parent: 0 - type: Transform -- uid: 26051 - type: TableWood - components: - - pos: 49.5,-7.5 - parent: 0 - type: Transform -- uid: 26052 - type: TableWood - components: - - pos: 48.5,-7.5 - parent: 0 - type: Transform -- uid: 26053 - type: TableWood - components: - - pos: 52.5,-6.5 - parent: 0 - type: Transform -- uid: 26054 - type: TableWood - components: - - pos: 52.5,-5.5 - parent: 0 - type: Transform -- uid: 26055 - type: CarpetBlack - components: - - pos: 46.5,-7.5 - parent: 0 - type: Transform -- uid: 26056 - type: CarpetBlack - components: - - pos: 45.5,-7.5 - parent: 0 - type: Transform -- uid: 26057 - type: CarpetBlack - components: - - pos: 45.5,-4.5 - parent: 0 - type: Transform -- uid: 26058 - type: CarpetBlack - components: - - pos: 46.5,-4.5 - parent: 0 - type: Transform -- uid: 26059 - type: CarpetBlack - components: - - pos: 51.5,-4.5 - parent: 0 - type: Transform -- uid: 26060 - type: CarpetBlack - components: - - pos: 52.5,-4.5 - parent: 0 - type: Transform -- uid: 26061 - type: CarpetBlack - components: - - pos: 52.5,-7.5 - parent: 0 - type: Transform -- uid: 26062 - type: CarpetBlack - components: - - pos: 51.5,-7.5 - parent: 0 - type: Transform -- uid: 26063 - type: ShowcaseRobot - components: - - pos: 52.5,-4.5 - parent: 0 - type: Transform -- uid: 26064 - type: ShowcaseRobotMarauder - components: - - pos: 46.5,-4.5 - parent: 0 - type: Transform -- uid: 26065 - type: ShowcaseRobotAntique - components: - - pos: 45.5,-4.5 - parent: 0 - type: Transform -- uid: 26066 - type: MedicalScanner - components: - - pos: 52.5,-7.5 - parent: 0 - type: Transform -- uid: 26067 - type: BannerNanotrasen - components: - - pos: 51.5,-7.5 - parent: 0 - type: Transform -- uid: 26068 - type: Bookshelf - components: - - pos: 45.5,-7.5 - parent: 0 - type: Transform -- uid: 26069 - type: NuclearBombKeg - components: - - pos: 46.5,-7.5 - parent: 0 - type: Transform -- uid: 26070 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 45.5,-7.5 - parent: 0 - type: Transform -- uid: 26071 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 46.5,-7.5 - parent: 0 - type: Transform -- uid: 26072 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 51.5,-7.5 - parent: 0 - type: Transform -- uid: 26073 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 52.5,-7.5 - parent: 0 - type: Transform -- uid: 26074 - type: WindowReinforcedDirectional - components: - - pos: 52.5,-4.5 - parent: 0 - type: Transform -- uid: 26075 - type: WindowReinforcedDirectional - components: - - pos: 51.5,-4.5 - parent: 0 - type: Transform -- uid: 26076 - type: WindowReinforcedDirectional - components: - - pos: 46.5,-4.5 - parent: 0 - type: Transform -- uid: 26077 - type: WindowReinforcedDirectional - components: - - pos: 45.5,-4.5 - parent: 0 - type: Transform -- uid: 26078 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 0 - type: Transform -- uid: 26079 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-4.5 - parent: 0 - type: Transform -- uid: 26080 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-7.5 - parent: 0 - type: Transform -- uid: 26081 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-7.5 - parent: 0 - type: Transform -- uid: 26082 - type: TableWood - components: - - pos: 51.5,-4.5 - parent: 0 - type: Transform -- uid: 26083 - type: ComputerTelevision - components: - - pos: 51.5,-4.5 - parent: 0 - type: Transform -- uid: 26084 - type: PowerCellRecharger - components: - - pos: 52.5,-6.5 - parent: 0 - type: Transform -- uid: 26085 - type: ClothingHeadHatHopcap - components: - - pos: 45.480907,-5.283734 - parent: 0 - type: Transform -- uid: 26086 - type: ClothingBackpackDuffelCaptain - components: - - pos: 45.449657,-5.549359 - parent: 0 - type: Transform -- uid: 26087 - type: BriefcaseBrownFilled - components: - - pos: 49.449657,-4.268109 - parent: 0 - type: Transform -- uid: 26088 - type: RevolverCapGun - components: - - pos: 52.512157,-5.393109 - parent: 0 - type: Transform -- uid: 26089 - type: BookEscalationSecurity - components: - - pos: 48.590282,-4.424359 - parent: 0 - type: Transform -- uid: 26090 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 45.512157,-6.346234 - parent: 0 - type: Transform -- uid: 26091 - type: ToyAi - components: - - pos: 48.527782,-7.346234 - parent: 0 - type: Transform -- uid: 26092 - type: CigarGold - components: - - pos: 49.402782,-7.393109 - parent: 0 - type: Transform -- uid: 26093 - type: CigarGold - components: - - pos: 49.559032,-7.393109 - parent: 0 - type: Transform -- uid: 26094 - type: ClothingUniformJumpsuitLawyerBlack - components: - - pos: 52.545868,-5.972127 - parent: 0 - type: Transform -- uid: 26095 - type: PhoneInstrument - components: - - pos: 48.971275,-7.253377 - parent: 0 - type: Transform -- uid: 26096 - type: SignKiddiePlaque - components: - - pos: 44.5,-4.5 - parent: 0 - type: Transform -- uid: 26097 - type: SignKiddiePlaque - components: - - pos: 53.5,-7.5 - parent: 0 - type: Transform -- uid: 26098 - type: PosterLegitNanotrasenLogo - components: - - pos: 44.5,-7.5 - parent: 0 - type: Transform -- uid: 26099 - type: PosterLegitNanotrasenLogo - components: - - pos: 53.5,-4.5 - parent: 0 - type: Transform -- uid: 26100 - type: VendingMachineAtmosDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 77.5,-22.5 - parent: 0 - type: Transform -- uid: 26101 - type: LockerAtmosphericsFilled - components: - - pos: 72.5,-26.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26102 - type: LockerAtmosphericsFilled - components: - - pos: 73.5,-26.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26103 - type: LockerAtmosphericsFilled - components: - - pos: 74.5,-26.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26104 - type: WaterTankFull - components: - - pos: 75.5,-26.5 - parent: 0 - type: Transform -- uid: 26105 - type: WeldingFuelTankFull - components: - - pos: 76.5,-26.5 - parent: 0 - type: Transform -- uid: 26106 - type: Rack - components: - - pos: 77.5,-25.5 - parent: 0 - type: Transform -- uid: 26107 - type: DisposalUnit - components: - - pos: 75.5,-23.5 - parent: 0 - type: Transform -- uid: 26108 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-23.5 - parent: 0 - type: Transform -- uid: 26109 - type: DisposalBend - components: - - pos: 76.5,-23.5 - parent: 0 - type: Transform -- uid: 26110 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-25.5 - parent: 0 - type: Transform -- uid: 26111 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 68.5,-25.5 - parent: 0 - type: Transform -- uid: 26112 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 76.5,-24.5 - parent: 0 - type: Transform -- uid: 26113 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-25.5 - parent: 0 - type: Transform -- uid: 26114 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 74.5,-25.5 - parent: 0 - type: Transform -- uid: 26115 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-25.5 - parent: 0 - type: Transform -- uid: 26116 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-25.5 - parent: 0 - type: Transform -- uid: 26117 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-25.5 - parent: 0 - type: Transform -- uid: 26118 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-25.5 - parent: 0 - type: Transform -- uid: 26119 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-25.5 - parent: 0 - type: Transform -- uid: 26120 - type: DisposalPipe - components: - - pos: 68.5,-24.5 - parent: 0 - type: Transform -- uid: 26121 - type: DisposalPipe - components: - - pos: 68.5,-23.5 - parent: 0 - type: Transform -- uid: 26122 - type: DisposalPipe - components: - - pos: 68.5,-22.5 - parent: 0 - type: Transform -- uid: 26123 - type: DisposalPipe - components: - - pos: 68.5,-21.5 - parent: 0 - type: Transform -- uid: 26124 - type: DisposalPipe - components: - - pos: 68.5,-20.5 - parent: 0 - type: Transform -- uid: 26125 - type: DisposalPipe - components: - - pos: 68.5,-19.5 - parent: 0 - type: Transform -- uid: 26126 - type: ComputerAlert - components: - - pos: 74.5,-23.5 - parent: 0 - type: Transform -- uid: 26127 - type: ComputerAlert - components: - - pos: 73.5,-23.5 - parent: 0 - type: Transform -- uid: 26128 - type: TableReinforced - components: - - pos: 72.5,-23.5 - parent: 0 - type: Transform -- uid: 26129 - type: TableReinforced - components: - - pos: 75.5,-22.5 - parent: 0 - type: Transform -- uid: 26130 - type: Wrench - components: - - pos: 75.4836,-22.420927 - parent: 0 - type: Transform -- uid: 26131 - type: SheetSteel - components: - - pos: 72.45235,-23.436552 - parent: 0 - type: Transform -- uid: 26132 - type: SheetGlass - components: - - pos: 72.56172,-23.483427 - parent: 0 - type: Transform -- uid: 26133 - type: PartRodMetal - components: - - pos: 72.53047,-23.452177 - parent: 0 - type: Transform -- uid: 26134 - type: ClothingHandsGlovesCombat - components: - - pos: 77.503525,-25.483427 - parent: 0 - type: Transform -- uid: 26135 - type: ClothingMaskGasAtmos - components: - - pos: 77.58165,-25.561552 - parent: 0 - type: Transform -- uid: 26136 - type: CrateMaterialSteel - components: - - pos: 78.5,-33.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26137 - type: Table - components: - - pos: 73.5,-33.5 - parent: 0 - type: Transform -- uid: 26138 - type: Table - components: - - pos: 73.5,-31.5 - parent: 0 - type: Transform -- uid: 26139 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-33.5 - parent: 0 - type: Transform -- uid: 26140 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-31.5 - parent: 0 - type: Transform -- uid: 26141 - type: PowerCellRecharger - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-31.5 - parent: 0 - type: Transform -- uid: 26142 - type: BookAtmosAirAlarms - components: - - pos: 73.5,-33.5 - parent: 0 - type: Transform -- uid: 26143 - type: BookAtmosDistro - components: - - pos: 73.5,-33.5 - parent: 0 - type: Transform -- uid: 26144 - type: BookAtmosVentsMore - components: - - pos: 73.5,-33.5 - parent: 0 - type: Transform -- uid: 26145 - type: BookAtmosWaste - components: - - pos: 73.5,-33.5 - parent: 0 - type: Transform -- uid: 26146 - type: TableReinforced - components: - - pos: 70.5,-26.5 - parent: 0 - type: Transform -- uid: 26147 - type: TableReinforced - components: - - pos: 70.5,-24.5 - parent: 0 - type: Transform -- uid: 26148 - type: TableReinforced - components: - - pos: 70.5,-23.5 - parent: 0 - type: Transform -- uid: 26149 - type: TableReinforced - components: - - pos: 67.5,-23.5 - parent: 0 - type: Transform -- uid: 26150 - type: PottedPlant22 - components: - - pos: 67.5,-24.5 - parent: 0 - type: Transform -- uid: 26151 - type: TableReinforced - components: - - pos: 81.5,-24.5 - parent: 0 - type: Transform -- uid: 26152 - type: TableReinforced - components: - - pos: 81.5,-23.5 - parent: 0 - type: Transform -- uid: 26153 - type: TrashBag - components: - - pos: 79.37306,-23.3054 - parent: 0 - type: Transform -- uid: 26154 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26155 - type: TableReinforced - components: - - pos: 79.5,-23.5 - parent: 0 - type: Transform -- uid: 26156 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 75.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26157 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26158 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 81.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26159 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 71.5,-42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26160 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 75.5,-42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26161 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 79.5,-42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26162 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 93.5,-42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26163 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 93.5,-38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26164 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 93.5,-34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26165 - type: PoweredSmallLight - components: - - pos: 92.5,-25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26166 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 86.5,-43.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26167 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26168 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26169 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26170 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 89.5,-24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26171 - type: Poweredlight - components: - - pos: 95.5,-29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26172 - type: Poweredlight - components: - - pos: 86.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26173 - type: Poweredlight - components: - - pos: 72.5,-8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26174 - type: Poweredlight - components: - - pos: 74.5,-12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26175 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 78.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26176 - type: Poweredlight - components: - - pos: 83.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26177 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 85.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26178 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 89.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26179 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 95.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26180 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 91.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26181 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 108.5,-17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26182 - type: WelderIndustrial - components: - - pos: 79.52918,1.5092251 - parent: 0 - type: Transform -- uid: 26183 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26184 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 89.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26185 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 89.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26186 - type: Poweredlight - components: - - pos: 86.5,3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26187 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 82.5,-0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26188 - type: Poweredlight - components: - - pos: 78.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26189 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 72.5,-6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26190 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26191 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 82.5,-8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26192 - type: Poweredlight - components: - - pos: 78.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26193 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26194 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26195 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26196 - type: Poweredlight - components: - - pos: 60.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26197 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26198 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26199 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26200 - type: PoweredSmallLight - components: - - pos: 62.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26201 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26202 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26203 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26204 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 122.5,-24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26205 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 113.5,-24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26206 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 111.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26207 - type: SignGravity - components: - - pos: 110.5,-21.5 - parent: 0 - type: Transform -- uid: 26208 - type: SignDirectionalGravity - components: - - rot: 1.5707963267948966 rad - pos: 99.5,-21.5 - parent: 0 - type: Transform -- uid: 26209 - type: PosterContrabandTools - components: - - pos: 74.5,-17.5 - parent: 0 - type: Transform -- uid: 26210 - type: SignShock - components: - - rot: 1.5707963267948966 rad - pos: 117.5,-21.5 - parent: 0 - type: Transform -- uid: 26211 - type: SignShock - components: - - rot: 1.5707963267948966 rad - pos: 117.5,-27.5 - parent: 0 - type: Transform -- uid: 26212 - type: SignRadiationMed - components: - - rot: 1.5707963267948966 rad - pos: 123.5,-24.5 - parent: 0 - type: Transform -- uid: 26213 - type: SignRadiationMed - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-21.5 - parent: 0 - type: Transform -- uid: 26214 - type: SignRadiationMed - components: - - rot: 1.5707963267948966 rad - pos: 88.5,-5.5 - parent: 0 - type: Transform -- uid: 26215 - type: SignRadiationMed - components: - - rot: 1.5707963267948966 rad - pos: 92.5,-1.5 - parent: 0 - type: Transform -- uid: 26216 - type: SignRadiationMed - components: - - rot: 1.5707963267948966 rad - pos: 105.5,-18.5 - parent: 0 - type: Transform -- uid: 26217 - type: AirlockEngineeringLocked - components: - - rot: 1.5707963267948966 rad - pos: 90.5,4.5 - parent: 0 - type: Transform -- uid: 26218 - type: Bed - components: - - pos: 86.5,-16.5 - parent: 0 - type: Transform -- uid: 26219 - type: BedsheetCE - components: - - rot: 1.5707963267948966 rad - pos: 86.5,-16.5 - parent: 0 - type: Transform -- uid: 26220 - type: LockerChiefEngineerFilled - components: - - pos: 84.5,-15.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26221 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 86.5,-15.5 - parent: 0 - type: Transform -- uid: 26222 - type: Lamp - components: - - rot: 1.5707963267948966 rad - pos: 86.5645,-15.227203 - parent: 0 - type: Transform -- uid: 26223 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: 85.5,-16.5 - parent: 0 - type: Transform -- uid: 26224 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: 85.5,-15.5 - parent: 0 - type: Transform -- uid: 26225 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: 86.5,-16.5 - parent: 0 - type: Transform -- uid: 26226 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: 86.5,-15.5 - parent: 0 - type: Transform -- uid: 26227 - type: ComputerPowerMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 86.5,-11.5 - parent: 0 - type: Transform -- uid: 26228 - type: CableHV - components: - - pos: 87.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26229 - type: CableHV - components: - - pos: 86.5,-11.5 - parent: 0 - type: Transform -- uid: 26230 - type: ComputerSolarControl - components: - - rot: -1.5707963267948966 rad - pos: 86.5,-12.5 - parent: 0 - type: Transform -- uid: 26231 - type: Table - components: - - pos: 86.5,-13.5 - parent: 0 - type: Transform -- uid: 26232 - type: FaxMachineBase - components: - - pos: 86.5,-13.5 - parent: 0 - type: Transform -- uid: 26233 - type: TableWood - components: - - pos: 84.5,-16.5 - parent: 0 - type: Transform -- uid: 26234 - type: AcousticGuitarInstrument - components: - - pos: 84.47075,-16.414703 - parent: 0 - type: Transform -- uid: 26235 - type: filingCabinetDrawerRandom - components: - - pos: 82.5,-10.5 - parent: 0 - type: Transform -- uid: 26236 - type: Rack - components: - - pos: 83.5,-10.5 - parent: 0 - type: Transform -- uid: 26237 - type: TableReinforced - components: - - pos: 81.5,-11.5 - parent: 0 - type: Transform -- uid: 26238 - type: TableReinforced - components: - - pos: 81.5,-10.5 - parent: 0 - type: Transform -- uid: 26239 - type: TableReinforced - components: - - pos: 84.5,-12.5 - parent: 0 - type: Transform -- uid: 26240 - type: TableReinforced - components: - - pos: 84.5,-11.5 - parent: 0 - type: Transform -- uid: 26241 - type: TableReinforced - components: - - pos: 84.5,-10.5 - parent: 0 - type: Transform -- uid: 26242 - type: ComputerAlert - components: - - rot: -1.5707963267948966 rad - pos: 86.5,-10.5 - parent: 0 - type: Transform -- uid: 26243 - type: SpawnPointChiefEngineer - components: - - pos: 85.5,-16.5 - parent: 0 - type: Transform -- uid: 26244 - type: Table - components: - - pos: 82.5,-14.5 - parent: 0 - type: Transform -- uid: 26245 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 82.5,-14.5 - parent: 0 - type: Transform -- uid: 26246 - type: ClosetFireFilled - components: - - pos: 89.5,-15.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26247 - type: ClosetEmergencyFilledRandom - components: - - pos: 89.5,-16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26248 - type: ClosetRadiationSuitFilled - components: - - pos: 89.5,-14.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26249 - type: ClothingHandsGlovesColorYellow - components: - - pos: 83.51483,-10.447318 - parent: 0 - type: Transform -- uid: 26250 - type: ClothingEyesGlassesMeson - components: - - pos: 83.56171,-10.462943 - parent: 0 - type: Transform -- uid: 26251 - type: PhoneInstrument - components: - - pos: 84.37421,-10.431693 - parent: 0 - type: Transform -- uid: 26252 - type: Cigar - components: - - pos: 84.62421,-10.556693 - parent: 0 - type: Transform -- uid: 26253 - type: BoxFolderBlue - components: - - pos: 84.43671,-11.087943 - parent: 0 - type: Transform -- uid: 26254 - type: BoxFolderYellow - components: - - pos: 84.57733,-11.181693 - parent: 0 - type: Transform -- uid: 26255 - type: PaperBin5 - components: - - pos: 81.5,-10.5 - parent: 0 - type: Transform -- uid: 26256 - type: RCD - components: - - pos: 81.48358,-11.337943 - parent: 0 - type: Transform -- uid: 26257 - type: PowerCellRecharger - components: - - pos: 82.5,-14.5 - parent: 0 - type: Transform -- uid: 26258 - type: AtmosFixBlockerMarker - components: - - pos: -46.5,-55.5 - parent: 0 - type: Transform -- uid: 26259 - type: AtmosFixBlockerMarker - components: - - pos: -47.5,-55.5 - parent: 0 - type: Transform -- uid: 26260 - type: AtmosFixBlockerMarker - components: - - pos: -48.5,-55.5 - parent: 0 - type: Transform -- uid: 26261 - type: AtmosFixBlockerMarker - components: - - pos: -48.5,-56.5 - parent: 0 - type: Transform -- uid: 26262 - type: AtmosFixBlockerMarker - components: - - pos: -49.5,-56.5 - parent: 0 - type: Transform -- uid: 26263 - type: AtmosFixBlockerMarker - components: - - pos: -50.5,-56.5 - parent: 0 - type: Transform -- uid: 26264 - type: AtmosFixBlockerMarker - components: - - pos: -51.5,-56.5 - parent: 0 - type: Transform -- uid: 26265 - type: AtmosFixBlockerMarker - components: - - pos: -52.5,-54.5 - parent: 0 - type: Transform -- uid: 26266 - type: AtmosFixBlockerMarker - components: - - pos: -53.5,-54.5 - parent: 0 - type: Transform -- uid: 26267 - type: AtmosFixBlockerMarker - components: - - pos: -52.5,-58.5 - parent: 0 - type: Transform -- uid: 26268 - type: AtmosFixBlockerMarker - components: - - pos: -53.5,-58.5 - parent: 0 - type: Transform -- uid: 26269 - type: AtmosFixBlockerMarker - components: - - pos: -47.5,-65.5 - parent: 0 - type: Transform -- uid: 26270 - type: AtmosFixBlockerMarker - components: - - pos: -47.5,-64.5 - parent: 0 - type: Transform -- uid: 26271 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,-65.5 - parent: 0 - type: Transform -- uid: 26272 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,-64.5 - parent: 0 - type: Transform -- uid: 26273 - type: AtmosFixBlockerMarker - components: - - pos: 120.5,58.5 - parent: 0 - type: Transform -- uid: 26274 - type: AtmosFixBlockerMarker - components: - - pos: 121.5,58.5 - parent: 0 - type: Transform -- uid: 26275 - type: AtmosFixBlockerMarker - components: - - pos: 122.5,58.5 - parent: 0 - type: Transform -- uid: 26276 - type: AtmosFixBlockerMarker - components: - - pos: 123.5,58.5 - parent: 0 - type: Transform -- uid: 26277 - type: AtmosFixBlockerMarker - components: - - pos: 124.5,58.5 - parent: 0 - type: Transform -- uid: 26278 - type: AtmosFixBlockerMarker - components: - - pos: 125.5,58.5 - parent: 0 - type: Transform -- uid: 26279 - type: AtmosFixBlockerMarker - components: - - pos: 126.5,58.5 - parent: 0 - type: Transform -- uid: 26280 - type: AtmosFixBlockerMarker - components: - - pos: 127.5,58.5 - parent: 0 - type: Transform -- uid: 26281 - type: AtmosFixBlockerMarker - components: - - pos: 128.5,58.5 - parent: 0 - type: Transform -- uid: 26282 - type: AtmosFixBlockerMarker - components: - - pos: 129.5,58.5 - parent: 0 - type: Transform -- uid: 26283 - type: AtmosFixBlockerMarker - components: - - pos: 130.5,58.5 - parent: 0 - type: Transform -- uid: 26284 - type: AtmosFixBlockerMarker - components: - - pos: 130.5,57.5 - parent: 0 - type: Transform -- uid: 26285 - type: AtmosFixBlockerMarker - components: - - pos: 131.5,57.5 - parent: 0 - type: Transform -- uid: 26286 - type: AtmosFixBlockerMarker - components: - - pos: 131.5,56.5 - parent: 0 - type: Transform -- uid: 26287 - type: AtmosFixBlockerMarker - components: - - pos: 132.5,56.5 - parent: 0 - type: Transform -- uid: 26288 - type: AtmosFixBlockerMarker - components: - - pos: 132.5,55.5 - parent: 0 - type: Transform -- uid: 26289 - type: AtmosFixBlockerMarker - components: - - pos: 132.5,54.5 - parent: 0 - type: Transform -- uid: 26290 - type: AtmosFixBlockerMarker - components: - - pos: 132.5,53.5 - parent: 0 - type: Transform -- uid: 26291 - type: AtmosFixBlockerMarker - components: - - pos: 132.5,52.5 - parent: 0 - type: Transform -- uid: 26292 - type: AtmosFixBlockerMarker - components: - - pos: 132.5,51.5 - parent: 0 - type: Transform -- uid: 26293 - type: AtmosFixBlockerMarker - components: - - pos: 132.5,50.5 - parent: 0 - type: Transform -- uid: 26294 - type: AtmosFixBlockerMarker - components: - - pos: 132.5,49.5 - parent: 0 - type: Transform -- uid: 26295 - type: AtmosFixBlockerMarker - components: - - pos: 132.5,48.5 - parent: 0 - type: Transform -- uid: 26296 - type: AtmosFixBlockerMarker - components: - - pos: 132.5,47.5 - parent: 0 - type: Transform -- uid: 26297 - type: AtmosFixBlockerMarker - components: - - pos: 132.5,46.5 - parent: 0 - type: Transform -- uid: 26298 - type: AtmosFixBlockerMarker - components: - - pos: 132.5,45.5 - parent: 0 - type: Transform -- uid: 26299 - type: AtmosFixBlockerMarker - components: - - pos: 132.5,44.5 - parent: 0 - type: Transform -- uid: 26300 - type: AtmosFixBlockerMarker - components: - - pos: 132.5,43.5 - parent: 0 - type: Transform -- uid: 26301 - type: AtmosFixBlockerMarker - components: - - pos: 132.5,42.5 - parent: 0 - type: Transform -- uid: 26302 - type: AtmosFixBlockerMarker - components: - - pos: 131.5,42.5 - parent: 0 - type: Transform -- uid: 26303 - type: AtmosFixBlockerMarker - components: - - pos: 131.5,41.5 - parent: 0 - type: Transform -- uid: 26304 - type: AtmosFixBlockerMarker - components: - - pos: 130.5,41.5 - parent: 0 - type: Transform -- uid: 26305 - type: AtmosFixBlockerMarker - components: - - pos: 130.5,40.5 - parent: 0 - type: Transform -- uid: 26306 - type: AtmosFixBlockerMarker - components: - - pos: 129.5,40.5 - parent: 0 - type: Transform -- uid: 26307 - type: AtmosFixBlockerMarker - components: - - pos: 128.5,40.5 - parent: 0 - type: Transform -- uid: 26308 - type: AtmosFixBlockerMarker - components: - - pos: 127.5,40.5 - parent: 0 - type: Transform -- uid: 26309 - type: AtmosFixBlockerMarker - components: - - pos: 126.5,40.5 - parent: 0 - type: Transform -- uid: 26310 - type: AtmosFixBlockerMarker - components: - - pos: 125.5,40.5 - parent: 0 - type: Transform -- uid: 26311 - type: AtmosFixBlockerMarker - components: - - pos: 124.5,40.5 - parent: 0 - type: Transform -- uid: 26312 - type: AtmosFixBlockerMarker - components: - - pos: 123.5,40.5 - parent: 0 - type: Transform -- uid: 26313 - type: AtmosFixBlockerMarker - components: - - pos: 122.5,40.5 - parent: 0 - type: Transform -- uid: 26314 - type: AtmosFixBlockerMarker - components: - - pos: 121.5,40.5 - parent: 0 - type: Transform -- uid: 26315 - type: AtmosFixBlockerMarker - components: - - pos: 121.5,39.5 - parent: 0 - type: Transform -- uid: 26316 - type: AtmosFixBlockerMarker - components: - - pos: 120.5,39.5 - parent: 0 - type: Transform -- uid: 26317 - type: AtmosFixBlockerMarker - components: - - pos: 119.5,39.5 - parent: 0 - type: Transform -- uid: 26318 - type: AtmosFixBlockerMarker - components: - - pos: 118.5,39.5 - parent: 0 - type: Transform -- uid: 26319 - type: AtmosFixBlockerMarker - components: - - pos: 118.5,38.5 - parent: 0 - type: Transform -- uid: 26320 - type: AtmosFixBlockerMarker - components: - - pos: 118.5,37.5 - parent: 0 - type: Transform -- uid: 26321 - type: AtmosFixBlockerMarker - components: - - pos: 118.5,36.5 - parent: 0 - type: Transform -- uid: 26322 - type: AtmosFixBlockerMarker - components: - - pos: 118.5,35.5 - parent: 0 - type: Transform -- uid: 26323 - type: AtmosFixBlockerMarker - components: - - pos: 118.5,34.5 - parent: 0 - type: Transform -- uid: 26324 - type: AtmosFixBlockerMarker - components: - - pos: 118.5,33.5 - parent: 0 - type: Transform -- uid: 26325 - type: AtmosFixBlockerMarker - components: - - pos: 118.5,32.5 - parent: 0 - type: Transform -- uid: 26326 - type: AtmosFixBlockerMarker - components: - - pos: 119.5,26.5 - parent: 0 - type: Transform -- uid: 26327 - type: AtmosFixBlockerMarker - components: - - pos: 119.5,24.5 - parent: 0 - type: Transform -- uid: 26328 - type: AtmosFixBlockerMarker - components: - - pos: 118.5,24.5 - parent: 0 - type: Transform -- uid: 26329 - type: AtmosFixBlockerMarker - components: - - pos: 118.5,23.5 - parent: 0 - type: Transform -- uid: 26330 - type: AtmosFixBlockerMarker - components: - - pos: 117.5,23.5 - parent: 0 - type: Transform -- uid: 26331 - type: AtmosFixBlockerMarker - components: - - pos: 117.5,22.5 - parent: 0 - type: Transform -- uid: 26332 - type: AtmosFixBlockerMarker - components: - - pos: 117.5,21.5 - parent: 0 - type: Transform -- uid: 26333 - type: AtmosFixBlockerMarker - components: - - pos: 117.5,20.5 - parent: 0 - type: Transform -- uid: 26334 - type: AtmosFixBlockerMarker - components: - - pos: 117.5,19.5 - parent: 0 - type: Transform -- uid: 26335 - type: AtmosFixBlockerMarker - components: - - pos: 117.5,18.5 - parent: 0 - type: Transform -- uid: 26336 - type: AtmosFixBlockerMarker - components: - - pos: 117.5,17.5 - parent: 0 - type: Transform -- uid: 26337 - type: AtmosFixBlockerMarker - components: - - pos: 117.5,16.5 - parent: 0 - type: Transform -- uid: 26338 - type: AtmosFixBlockerMarker - components: - - pos: 117.5,15.5 - parent: 0 - type: Transform -- uid: 26339 - type: AtmosFixBlockerMarker - components: - - pos: 117.5,14.5 - parent: 0 - type: Transform -- uid: 26340 - type: AtmosFixBlockerMarker - components: - - pos: 127.5,6.5 - parent: 0 - type: Transform -- uid: 26341 - type: AtmosFixBlockerMarker - components: - - pos: 128.5,6.5 - parent: 0 - type: Transform -- uid: 26342 - type: AtmosFixBlockerMarker - components: - - pos: 128.5,7.5 - parent: 0 - type: Transform -- uid: 26343 - type: AtmosFixBlockerMarker - components: - - pos: 103.5,-30.5 - parent: 0 - type: Transform -- uid: 26344 - type: AtmosFixBlockerMarker - components: - - pos: 103.5,-31.5 - parent: 0 - type: Transform -- uid: 26345 - type: AtmosFixBlockerMarker - components: - - pos: 104.5,-31.5 - parent: 0 - type: Transform -- uid: 26346 - type: AtmosFixBlockerMarker - components: - - pos: 105.5,-31.5 - parent: 0 - type: Transform -- uid: 26347 - type: AtmosFixBlockerMarker - components: - - pos: 105.5,-32.5 - parent: 0 - type: Transform -- uid: 26348 - type: AtmosFixBlockerMarker - components: - - pos: 105.5,-33.5 - parent: 0 - type: Transform -- uid: 26349 - type: AtmosFixBlockerMarker - components: - - pos: 106.5,-33.5 - parent: 0 - type: Transform -- uid: 26350 - type: AtmosFixBlockerMarker - components: - - pos: 103.5,-43.5 - parent: 0 - type: Transform -- uid: 26351 - type: AtmosFixBlockerMarker - components: - - pos: 103.5,-42.5 - parent: 0 - type: Transform -- uid: 26352 - type: AtmosFixBlockerMarker - components: - - pos: 103.5,-41.5 - parent: 0 - type: Transform -- uid: 26353 - type: AtmosFixBlockerMarker - components: - - pos: 104.5,-41.5 - parent: 0 - type: Transform -- uid: 26354 - type: AtmosFixBlockerMarker - components: - - pos: 105.5,-41.5 - parent: 0 - type: Transform -- uid: 26355 - type: AtmosFixBlockerMarker - components: - - pos: 105.5,-40.5 - parent: 0 - type: Transform -- uid: 26356 - type: AtmosFixBlockerMarker - components: - - pos: 105.5,-39.5 - parent: 0 - type: Transform -- uid: 26357 - type: AtmosFixBlockerMarker - components: - - pos: 105.5,-64.5 - parent: 0 - type: Transform -- uid: 26358 - type: AtmosFixBlockerMarker - components: - - pos: 105.5,-63.5 - parent: 0 - type: Transform -- uid: 26359 - type: AtmosFixBlockerMarker - components: - - pos: 105.5,-62.5 - parent: 0 - type: Transform -- uid: 26360 - type: AtmosFixBlockerMarker - components: - - pos: 105.5,-61.5 - parent: 0 - type: Transform -- uid: 26361 - type: AtmosFixBlockerMarker - components: - - pos: 104.5,-61.5 - parent: 0 - type: Transform -- uid: 26362 - type: AtmosFixBlockerMarker - components: - - pos: 103.5,-61.5 - parent: 0 - type: Transform -- uid: 26363 - type: AtmosFixBlockerMarker - components: - - pos: 102.5,-61.5 - parent: 0 - type: Transform -- uid: 26364 - type: AtmosFixBlockerMarker - components: - - pos: 101.5,-61.5 - parent: 0 - type: Transform -- uid: 26365 - type: AtmosFixBlockerMarker - components: - - pos: 101.5,-60.5 - parent: 0 - type: Transform -- uid: 26366 - type: AtmosFixBlockerMarker - components: - - pos: 101.5,-59.5 - parent: 0 - type: Transform -- uid: 26367 - type: AtmosFixBlockerMarker - components: - - pos: 101.5,-58.5 - parent: 0 - type: Transform -- uid: 26368 - type: AtmosFixBlockerMarker - components: - - pos: 103.5,-58.5 - parent: 0 - type: Transform -- uid: 26369 - type: AtmosFixBlockerMarker - components: - - pos: 103.5,-59.5 - parent: 0 - type: Transform -- uid: 26370 - type: AtmosFixBlockerMarker - components: - - pos: 104.5,-59.5 - parent: 0 - type: Transform -- uid: 26371 - type: AtmosFixBlockerMarker - components: - - pos: 105.5,-59.5 - parent: 0 - type: Transform -- uid: 26372 - type: AtmosFixBlockerMarker - components: - - pos: 106.5,-59.5 - parent: 0 - type: Transform -- uid: 26373 - type: AtmosFixBlockerMarker - components: - - pos: 107.5,-59.5 - parent: 0 - type: Transform -- uid: 26374 - type: AtmosFixBlockerMarker - components: - - pos: 107.5,-60.5 - parent: 0 - type: Transform -- uid: 26375 - type: AtmosFixBlockerMarker - components: - - pos: 107.5,-61.5 - parent: 0 - type: Transform -- uid: 26376 - type: AtmosFixBlockerMarker - components: - - pos: 107.5,-62.5 - parent: 0 - type: Transform -- uid: 26377 - type: AtmosFixBlockerMarker - components: - - pos: 107.5,-63.5 - parent: 0 - type: Transform -- uid: 26378 - type: AtmosFixBlockerMarker - components: - - pos: 107.5,-64.5 - parent: 0 - type: Transform -- uid: 26379 - type: AtmosFixNitrogenMarker - components: - - pos: 70.5,-42.5 - parent: 0 - type: Transform -- uid: 26380 - type: AtmosFixNitrogenMarker - components: - - pos: 70.5,-41.5 - parent: 0 - type: Transform -- uid: 26381 - type: AtmosFixNitrogenMarker - components: - - pos: 70.5,-40.5 - parent: 0 - type: Transform -- uid: 26382 - type: AtmosFixNitrogenMarker - components: - - pos: 71.5,-42.5 - parent: 0 - type: Transform -- uid: 26383 - type: AtmosFixNitrogenMarker - components: - - pos: 71.5,-41.5 - parent: 0 - type: Transform -- uid: 26384 - type: AtmosFixNitrogenMarker - components: - - pos: 71.5,-40.5 - parent: 0 - type: Transform -- uid: 26385 - type: AtmosFixNitrogenMarker - components: - - pos: 72.5,-42.5 - parent: 0 - type: Transform -- uid: 26386 - type: AtmosFixNitrogenMarker - components: - - pos: 72.5,-41.5 - parent: 0 - type: Transform -- uid: 26387 - type: AtmosFixNitrogenMarker - components: - - pos: 72.5,-40.5 - parent: 0 - type: Transform -- uid: 26388 - type: AtmosFixOxygenMarker - components: - - pos: 74.5,-42.5 - parent: 0 - type: Transform -- uid: 26389 - type: AtmosFixOxygenMarker - components: - - pos: 74.5,-41.5 - parent: 0 - type: Transform -- uid: 26390 - type: AtmosFixOxygenMarker - components: - - pos: 74.5,-40.5 - parent: 0 - type: Transform -- uid: 26391 - type: AtmosFixOxygenMarker - components: - - pos: 75.5,-42.5 - parent: 0 - type: Transform -- uid: 26392 - type: AtmosFixOxygenMarker - components: - - pos: 75.5,-41.5 - parent: 0 - type: Transform -- uid: 26393 - type: AtmosFixOxygenMarker - components: - - pos: 75.5,-40.5 - parent: 0 - type: Transform -- uid: 26394 - type: AtmosFixOxygenMarker - components: - - pos: 76.5,-42.5 - parent: 0 - type: Transform -- uid: 26395 - type: AtmosFixOxygenMarker - components: - - pos: 76.5,-41.5 - parent: 0 - type: Transform -- uid: 26396 - type: AtmosFixOxygenMarker - components: - - pos: 76.5,-40.5 - parent: 0 - type: Transform -- uid: 26397 - type: AtmosFixBlockerMarker - components: - - pos: 91.5,-43.5 - parent: 0 - type: Transform -- uid: 26398 - type: AtmosFixBlockerMarker - components: - - pos: 91.5,-42.5 - parent: 0 - type: Transform -- uid: 26399 - type: AtmosFixBlockerMarker - components: - - pos: 91.5,-41.5 - parent: 0 - type: Transform -- uid: 26400 - type: AtmosFixBlockerMarker - components: - - pos: 92.5,-43.5 - parent: 0 - type: Transform -- uid: 26401 - type: AtmosFixBlockerMarker - components: - - pos: 92.5,-42.5 - parent: 0 - type: Transform -- uid: 26402 - type: AtmosFixBlockerMarker - components: - - pos: 92.5,-41.5 - parent: 0 - type: Transform -- uid: 26403 - type: AtmosFixBlockerMarker - components: - - pos: 93.5,-43.5 - parent: 0 - type: Transform -- uid: 26404 - type: AtmosFixBlockerMarker - components: - - pos: 93.5,-42.5 - parent: 0 - type: Transform -- uid: 26405 - type: AtmosFixBlockerMarker - components: - - pos: 93.5,-41.5 - parent: 0 - type: Transform -- uid: 26406 - type: AtmosFixBlockerMarker - components: - - pos: 91.5,-39.5 - parent: 0 - type: Transform -- uid: 26407 - type: AtmosFixBlockerMarker - components: - - pos: 91.5,-38.5 - parent: 0 - type: Transform -- uid: 26408 - type: AtmosFixBlockerMarker - components: - - pos: 91.5,-37.5 - parent: 0 - type: Transform -- uid: 26409 - type: AtmosFixBlockerMarker - components: - - pos: 92.5,-39.5 - parent: 0 - type: Transform -- uid: 26410 - type: AtmosFixBlockerMarker - components: - - pos: 92.5,-38.5 - parent: 0 - type: Transform -- uid: 26411 - type: AtmosFixBlockerMarker - components: - - pos: 92.5,-37.5 - parent: 0 - type: Transform -- uid: 26412 - type: AtmosFixBlockerMarker - components: - - pos: 93.5,-39.5 - parent: 0 - type: Transform -- uid: 26413 - type: AtmosFixBlockerMarker - components: - - pos: 93.5,-38.5 - parent: 0 - type: Transform -- uid: 26414 - type: AtmosFixBlockerMarker - components: - - pos: 93.5,-37.5 - parent: 0 - type: Transform -- uid: 26415 - type: AtmosFixPlasmaMarker - components: - - pos: 91.5,-35.5 - parent: 0 - type: Transform -- uid: 26416 - type: AtmosFixPlasmaMarker - components: - - pos: 91.5,-34.5 - parent: 0 - type: Transform -- uid: 26417 - type: AtmosFixPlasmaMarker - components: - - pos: 91.5,-33.5 - parent: 0 - type: Transform -- uid: 26418 - type: AtmosFixPlasmaMarker - components: - - pos: 92.5,-35.5 - parent: 0 - type: Transform -- uid: 26419 - type: AtmosFixPlasmaMarker - components: - - pos: 92.5,-34.5 - parent: 0 - type: Transform -- uid: 26420 - type: AtmosFixPlasmaMarker - components: - - pos: 92.5,-33.5 - parent: 0 - type: Transform -- uid: 26421 - type: AtmosFixPlasmaMarker - components: - - pos: 93.5,-35.5 - parent: 0 - type: Transform -- uid: 26422 - type: AtmosFixPlasmaMarker - components: - - pos: 93.5,-34.5 - parent: 0 - type: Transform -- uid: 26423 - type: AtmosFixPlasmaMarker - components: - - pos: 93.5,-33.5 - parent: 0 - type: Transform -- uid: 26424 - type: AtmosFixBlockerMarker - components: - - pos: 91.5,-27.5 - parent: 0 - type: Transform -- uid: 26425 - type: AtmosFixBlockerMarker - components: - - pos: 91.5,-26.5 - parent: 0 - type: Transform -- uid: 26426 - type: AtmosFixBlockerMarker - components: - - pos: 91.5,-25.5 - parent: 0 - type: Transform -- uid: 26427 - type: AtmosFixBlockerMarker - components: - - pos: 92.5,-27.5 - parent: 0 - type: Transform -- uid: 26428 - type: AtmosFixBlockerMarker - components: - - pos: 92.5,-26.5 - parent: 0 - type: Transform -- uid: 26429 - type: AtmosFixBlockerMarker - components: - - pos: 92.5,-25.5 - parent: 0 - type: Transform -- uid: 26430 - type: AtmosFixBlockerMarker - components: - - pos: 93.5,-27.5 - parent: 0 - type: Transform -- uid: 26431 - type: AtmosFixBlockerMarker - components: - - pos: 93.5,-26.5 - parent: 0 - type: Transform -- uid: 26432 - type: AtmosFixBlockerMarker - components: - - pos: 93.5,-25.5 - parent: 0 - type: Transform -- uid: 26433 - type: AtmosFixBlockerMarker - components: - - pos: 105.5,-37.5 - parent: 0 - type: Transform -- uid: 26434 - type: AtmosFixBlockerMarker - components: - - pos: 105.5,-36.5 - parent: 0 - type: Transform -- uid: 26435 - type: AtmosFixBlockerMarker - components: - - pos: 105.5,-35.5 - parent: 0 - type: Transform -- uid: 26436 - type: AtmosFixBlockerMarker - components: - - pos: 106.5,-37.5 - parent: 0 - type: Transform -- uid: 26437 - type: AtmosFixBlockerMarker - components: - - pos: 106.5,-36.5 - parent: 0 - type: Transform -- uid: 26438 - type: AtmosFixBlockerMarker - components: - - pos: 106.5,-35.5 - parent: 0 - type: Transform -- uid: 26439 - type: AtmosFixBlockerMarker - components: - - pos: 107.5,-37.5 - parent: 0 - type: Transform -- uid: 26440 - type: AtmosFixBlockerMarker - components: - - pos: 107.5,-36.5 - parent: 0 - type: Transform -- uid: 26441 - type: AtmosFixBlockerMarker - components: - - pos: 107.5,-35.5 - parent: 0 - type: Transform -- uid: 26442 - type: BlastDoor - components: - - pos: 108.5,-36.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26443 - type: SignalReceiver -- uid: 26443 - type: SignalButton - components: - - pos: 104.5,-34.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 26442 - type: SignalTransmitter -- uid: 26444 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: 77.5,-18.5 - parent: 0 - type: Transform -- uid: 26445 - type: ClosetToolFilled - components: - - pos: 75.5,-20.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26446 - type: ClosetToolFilled - components: - - pos: 75.5,-19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26447 - type: ClosetToolFilled - components: - - pos: 75.5,-18.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26448 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: 81.5,1.5 - parent: 0 - type: Transform -- uid: 26449 - type: VendingMachineEngiDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 82.5,1.5 - parent: 0 - type: Transform -- uid: 26450 - type: LockerEngineerFilled - components: - - pos: 78.5,-0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26451 - type: LockerEngineerFilled - components: - - pos: 79.5,-0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26452 - type: LockerEngineerFilled - components: - - pos: 81.5,-0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26453 - type: LockerEngineerFilled - components: - - pos: 82.5,-0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26454 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: 63.355934,-14.5376625 - parent: 0 - type: Transform -- uid: 26455 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: 63.668434,-14.5064125 - parent: 0 - type: Transform -- uid: 26456 - type: EmergencyOxygenTankFilled - components: - - pos: 65.34031,-14.4751625 - parent: 0 - type: Transform -- uid: 26457 - type: EmergencyOxygenTankFilled - components: - - pos: 65.637184,-14.4282875 - parent: 0 - type: Transform -- uid: 26458 - type: ClothingMaskBreath - components: - - pos: 65.512184,-14.4907875 - parent: 0 - type: Transform -- uid: 26459 - type: ClothingMaskBreath - components: - - pos: 65.512184,-14.4907875 - parent: 0 - type: Transform -- uid: 26460 - type: ClothingMaskBreath - components: - - pos: 63.512184,-14.4907875 - parent: 0 - type: Transform -- uid: 26461 - type: ClothingMaskBreath - components: - - pos: 63.512184,-14.4907875 - parent: 0 - type: Transform -- uid: 26462 - type: Lamp - components: - - pos: 65.49656,-16.084538 - parent: 0 - type: Transform -- uid: 26463 - type: filingCabinetDrawerRandom - components: - - pos: 63.5,-16.5 - parent: 0 - type: Transform -- uid: 26464 - type: PaperBin5 - components: - - pos: 65.5,-15.5 - parent: 0 - type: Transform -- uid: 26465 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 64.5,-14.5 - parent: 0 - type: Transform -- uid: 26466 - type: FaxMachineBase - components: - - pos: 66.5,-21.5 - parent: 0 - type: Transform - - name: Atmospherics - type: FaxMachine -- uid: 26467 - type: PlaqueAtmos - components: - - pos: 78.5,-27.5 - parent: 0 - type: Transform -- uid: 26468 - type: SignAtmosMinsky - components: - - pos: 66.5,-16.5 - parent: 0 - type: Transform -- uid: 26469 - type: SignAtmosMinsky - components: - - pos: 90.5,-21.5 - parent: 0 - type: Transform -- uid: 26470 - type: SignAtmosMinsky - components: - - pos: 90.5,-19.5 - parent: 0 - type: Transform -- uid: 26471 - type: SignAtmos - components: - - pos: 78.5,-21.5 - parent: 0 - type: Transform -- uid: 26472 - type: PosterContrabandAtmosiaDeclarationIndependence - components: - - pos: 70.5,-17.5 - parent: 0 - type: Transform -- uid: 26473 - type: Catwalk - components: - - pos: 101.5,-31.5 - parent: 0 - type: Transform -- uid: 26474 - type: Catwalk - components: - - pos: 100.5,-31.5 - parent: 0 - type: Transform -- uid: 26475 - type: Catwalk - components: - - pos: 67.5,-32.5 - parent: 0 - type: Transform -- uid: 26476 - type: Catwalk - components: - - pos: 67.5,-31.5 - parent: 0 - type: Transform -- uid: 26477 - type: Catwalk - components: - - pos: 67.5,-30.5 - parent: 0 - type: Transform -- uid: 26478 - type: Catwalk - components: - - pos: 67.5,-29.5 - parent: 0 - type: Transform -- uid: 26479 - type: PottedPlant4 - components: - - pos: 79.49112,-21.7871 - parent: 0 - type: Transform -- uid: 26480 - type: PottedPlant5 - components: - - pos: 81.55362,-21.802725 - parent: 0 - type: Transform -- uid: 26481 - type: TableReinforced - components: - - pos: 87.5,-5.5 - parent: 0 - type: Transform -- uid: 26482 - type: ClosetRadiationSuitFilled - components: - - pos: 82.5,-2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26483 - type: LockerElectricalSuppliesFilled - components: - - pos: 81.5,-2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26484 - type: LockerWeldingSuppliesFilled - components: - - pos: 78.5,-2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26485 - type: ClosetToolFilled - components: - - pos: 79.5,-2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26486 - type: TableReinforced - components: - - pos: 80.5,-0.5 - parent: 0 - type: Transform -- uid: 26487 - type: TableReinforced - components: - - pos: 80.5,-2.5 - parent: 0 - type: Transform -- uid: 26488 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-2.5 - parent: 0 - type: Transform -- uid: 26489 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-0.5 - parent: 0 - type: Transform -- uid: 26490 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 82.5,-2.5 - parent: 0 - type: Transform -- uid: 26491 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 82.5,-0.5 - parent: 0 - type: Transform -- uid: 26492 - type: ClothingHeadHatCone - components: - - pos: 77.252754,-6.6295595 - parent: 0 - type: Transform -- uid: 26493 - type: ClothingHeadHatCone - components: - - pos: 77.252754,-6.1764345 - parent: 0 - type: Transform -- uid: 26494 - type: ClothingHeadHatCone - components: - - pos: 77.721504,-6.1608095 - parent: 0 - type: Transform -- uid: 26495 - type: ClothingHeadHatCone - components: - - pos: 77.721504,-6.6295595 - parent: 0 - type: Transform -- uid: 26496 - type: PottedPlant21 - components: - - pos: 76.5,-2.5 - parent: 0 - type: Transform -- uid: 26497 - type: WaterTankFull - components: - - pos: 76.5,1.5 - parent: 0 - type: Transform -- uid: 26498 - type: WeldingFuelTankFull - components: - - pos: 77.5,1.5 - parent: 0 - type: Transform -- uid: 26499 - type: Table - components: - - pos: 71.5,-13.5 - parent: 0 - type: Transform -- uid: 26500 - type: Table - components: - - pos: 71.5,-12.5 - parent: 0 - type: Transform -- uid: 26501 - type: Table - components: - - pos: 74.5,-12.5 - parent: 0 - type: Transform -- uid: 26502 - type: Table - components: - - pos: 73.5,-16.5 - parent: 0 - type: Transform -- uid: 26503 - type: FaxMachineBase - components: - - pos: 73.5,-16.5 - parent: 0 - type: Transform - - name: Engineering - type: FaxMachine -- uid: 26504 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-11.5 - parent: 0 - type: Transform -- uid: 26505 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-9.5 - parent: 0 - type: Transform -- uid: 26506 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-10.5 - parent: 0 - type: Transform -- uid: 26507 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-10.5 - parent: 0 - type: Transform -- uid: 26508 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-9.5 - parent: 0 - type: Transform -- uid: 26509 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-11.5 - parent: 0 - type: Transform -- uid: 26510 - type: TableWood - components: - - pos: 76.5,-10.5 - parent: 0 - type: Transform -- uid: 26511 - type: TableWood - components: - - pos: 76.5,-11.5 - parent: 0 - type: Transform -- uid: 26512 - type: TableWood - components: - - pos: 77.5,-11.5 - parent: 0 - type: Transform -- uid: 26513 - type: TableWood - components: - - pos: 77.5,-9.5 - parent: 0 - type: Transform -- uid: 26514 - type: TableWood - components: - - pos: 77.5,-10.5 - parent: 0 - type: Transform -- uid: 26515 - type: TableWood - components: - - pos: 76.5,-9.5 - parent: 0 - type: Transform -- uid: 26516 - type: Table - components: - - pos: 72.5,-16.5 - parent: 0 - type: Transform -- uid: 26517 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 78.5,-16.5 - parent: 0 - type: Transform -- uid: 26518 - type: ComputerSolarControl - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-16.5 - parent: 0 - type: Transform -- uid: 26519 - type: PowerCellRecharger - components: - - pos: 74.5,-12.5 - parent: 0 - type: Transform -- uid: 26520 - type: KitchenMicrowave - components: - - pos: 71.5,-12.5 - parent: 0 - type: Transform -- uid: 26521 - type: DonkpocketBoxSpawner - components: - - pos: 71.5,-13.5 - parent: 0 - type: Transform -- uid: 26522 - type: GeneratorPlasma - components: - - pos: 74.5,-2.5 - parent: 0 - type: Transform -- uid: 26523 - type: OxygenCanister - components: - - pos: 74.5,-4.5 - parent: 0 - type: Transform -- uid: 26524 - type: TableReinforced - components: - - pos: 70.5,-6.5 - parent: 0 - type: Transform -- uid: 26525 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 70.5,-4.5 - parent: 0 - type: Transform -- uid: 26526 - type: TableReinforced - components: - - pos: 70.5,-5.5 - parent: 0 - type: Transform -- uid: 26527 - type: TableReinforced - components: - - pos: 74.5,-6.5 - parent: 0 - type: Transform -- uid: 26528 - type: Rack - components: - - pos: 72.5,1.5 - parent: 0 - type: Transform -- uid: 26529 - type: Rack - components: - - pos: 74.5,1.5 - parent: 0 - type: Transform -- uid: 26530 - type: Rack - components: - - pos: 79.5,1.5 - parent: 0 - type: Transform -- uid: 26531 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: 80.5,1.5 - parent: 0 - type: Transform -- uid: 26532 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-3.5 - parent: 0 - type: Transform -- uid: 26533 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-3.5 - parent: 0 - type: Transform -- uid: 26534 - type: TableReinforced - components: - - pos: 78.5,-18.5 - parent: 0 - type: Transform -- uid: 26535 - type: ClothingUniformJumpsuitEngineeringHazard - components: - - pos: 78.537704,-18.341986 - parent: 0 - type: Transform -- uid: 26536 - type: ClothingUniformJumpsuitEngineeringHazard - components: - - pos: 78.61583,-18.435736 - parent: 0 - type: Transform -- uid: 26537 - type: ClothingOuterVestHazard - components: - - pos: 78.537704,-18.42011 - parent: 0 - type: Transform -- uid: 26538 - type: Rack - components: - - pos: 79.5,-18.5 - parent: 0 - type: Transform -- uid: 26539 - type: Autolathe - components: - - pos: 81.5,-18.5 - parent: 0 - type: Transform -- uid: 26540 - type: MedkitBurnFilled - components: - - pos: 78.53403,-18.500732 - parent: 0 - type: Transform -- uid: 26541 - type: ToolboxElectricalFilled - components: - - pos: 79.61168,-18.459103 - parent: 0 - type: Transform -- uid: 26542 - type: ToolboxMechanicalFilled - components: - - pos: 79.42418,-18.318478 - parent: 0 - type: Transform -- uid: 26543 - type: Rack - components: - - pos: 80.5,-18.5 - parent: 0 - type: Transform -- uid: 26544 - type: SheetSteel - components: - - pos: 80.408554,-18.365353 - parent: 0 - type: Transform -- uid: 26545 - type: SheetSteel - components: - - pos: 80.408554,-18.365353 - parent: 0 - type: Transform -- uid: 26546 - type: SheetPlasteel - components: - - pos: 80.61168,-18.521603 - parent: 0 - type: Transform -- uid: 26547 - type: SheetPlasteel - components: - - pos: 80.61168,-18.521603 - parent: 0 - type: Transform -- uid: 26548 - type: GasThermoMachineFreezer - components: - - pos: 83.5,-18.5 - parent: 0 - type: Transform -- uid: 26549 - type: GasThermoMachineHeater - components: - - pos: 85.5,-18.5 - parent: 0 - type: Transform -- uid: 26550 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 85.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 26551 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 83.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 26552 - type: ChairFolding - components: - - pos: 87.5,-18.5 - parent: 0 - type: Transform -- uid: 26553 - type: SheetSteel - components: - - pos: 70.49248,-23.450674 - parent: 0 - type: Transform -- uid: 26554 - type: SheetSteel - components: - - pos: 70.49248,-23.450674 - parent: 0 - type: Transform -- uid: 26555 - type: PartRodMetal - components: - - pos: 70.5081,-24.356924 - parent: 0 - type: Transform -- uid: 26556 - type: PartRodMetal - components: - - pos: 70.5081,-24.356924 - parent: 0 - type: Transform -- uid: 26557 - type: ClothingHeadHatWelding - components: - - pos: 67.4456,-23.294424 - parent: 0 - type: Transform -- uid: 26558 - type: ClothingHeadHatWelding - components: - - pos: 67.6331,-23.419424 - parent: 0 - type: Transform -- uid: 26559 - type: LockerWeldingSuppliesFilled - components: - - pos: 67.5,-25.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26560 - type: WeldingFuelTankFull - components: - - pos: 67.5,-26.5 - parent: 0 - type: Transform -- uid: 26561 - type: CrateEngineeringElectricalSupplies - components: - - pos: 78.5,1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26562 - type: CrateEngineeringCableBulk - components: - - pos: 73.5,1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26563 - type: CrateEngineeringAMEJar - components: - - pos: 74.5,-1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26564 - type: BoxFolderYellow - components: - - pos: 77.38629,-11.050114 - parent: 0 - type: Transform -- uid: 26565 - type: DrinkMug - components: - - pos: 76.93317,-9.509 - parent: 0 - type: Transform -- uid: 26566 - type: DrinkMugMetal - components: - - pos: 76.677574,-9.710828 - parent: 0 - type: Transform -- uid: 26567 - type: DrinkMugDog - components: - - pos: 77.37067,-10.415103 - parent: 0 - type: Transform -- uid: 26568 - type: LightReplacer - components: - - pos: 76.54254,-11.196353 - parent: 0 - type: Transform -- uid: 26569 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 79.5,-16.5 - parent: 0 - type: Transform -- uid: 26570 - type: filingCabinetDrawerRandom - components: - - pos: 77.5,-16.5 - parent: 0 - type: Transform -- uid: 26571 - type: PaperBin5 - components: - - pos: 72.5,-16.5 - parent: 0 - type: Transform -- uid: 26572 - type: Pen - components: - - pos: 77.57379,-10.878239 - parent: 0 - type: Transform -- uid: 26573 - type: PosterContrabandMissingGloves - components: - - pos: 75.5,-7.5 - parent: 0 - type: Transform -- uid: 26574 - type: PosterContrabandSmoke - components: - - pos: 80.5,-15.5 - parent: 0 - type: Transform -- uid: 26575 - type: SignEngineering - components: - - pos: 70.5,-11.5 - parent: 0 - type: Transform -- uid: 26576 - type: SignElectricalMed - components: - - pos: 77.5,-7.5 - parent: 0 - type: Transform -- uid: 26577 - type: SignLaserMed - components: - - pos: 96.5,-9.5 - parent: 0 - type: Transform -- uid: 26578 - type: SignRadiationMed - components: - - pos: 84.5,-7.5 - parent: 0 - type: Transform -- uid: 26579 - type: Rack - components: - - pos: 58.5,-5.5 - parent: 0 - type: Transform -- uid: 26580 - type: Rack - components: - - pos: 58.5,-4.5 - parent: 0 - type: Transform -- uid: 26581 - type: Rack - components: - - pos: 58.5,-3.5 - parent: 0 - type: Transform -- uid: 26582 - type: Rack - components: - - pos: 58.5,-2.5 - parent: 0 - type: Transform -- uid: 26583 - type: Rack - components: - - pos: 58.5,-1.5 - parent: 0 - type: Transform -- uid: 26584 - type: Rack - components: - - pos: 58.5,-0.5 - parent: 0 - type: Transform -- uid: 26585 - type: Rack - components: - - pos: 60.5,-4.5 - parent: 0 - type: Transform -- uid: 26586 - type: Rack - components: - - pos: 60.5,-3.5 - parent: 0 - type: Transform -- uid: 26587 - type: Rack - components: - - pos: 60.5,-2.5 - parent: 0 - type: Transform -- uid: 26588 - type: Rack - components: - - pos: 60.5,-1.5 - parent: 0 - type: Transform -- uid: 26589 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: 62.5,-0.5 - parent: 0 - type: Transform -- uid: 26590 - type: Rack - components: - - pos: 59.5,1.5 - parent: 0 - type: Transform -- uid: 26591 - type: Rack - components: - - pos: 59.5,2.5 - parent: 0 - type: Transform -- uid: 26592 - type: Rack - components: - - pos: 61.5,1.5 - parent: 0 - type: Transform -- uid: 26593 - type: Rack - components: - - pos: 61.5,2.5 - parent: 0 - type: Transform -- uid: 26594 - type: Table - components: - - pos: 62.5,-1.5 - parent: 0 - type: Transform -- uid: 26595 - type: Table - components: - - pos: 62.5,-2.5 - parent: 0 - type: Transform -- uid: 26596 - type: Table - components: - - pos: 62.5,-3.5 - parent: 0 - type: Transform -- uid: 26597 - type: Table - components: - - pos: 62.5,-4.5 - parent: 0 - type: Transform -- uid: 26598 - type: PowerCellRecharger - components: - - pos: 62.5,-4.5 - parent: 0 - type: Transform -- uid: 26599 - type: PottedPlant4 - components: - - pos: 61.5,-7.5 - parent: 0 - type: Transform -- uid: 26600 - type: PottedPlant12 - components: - - pos: 59.5,-7.5 - parent: 0 - type: Transform -- uid: 26601 - type: SurveillanceCameraScience - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-19.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RND - type: SurveillanceCamera -- uid: 26602 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 45.5,-14.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Sci Lobby - type: SurveillanceCamera -- uid: 26603 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 34.5,-19.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics - type: SurveillanceCamera -- uid: 26604 - type: SurveillanceCameraScience - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-33.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Anomaly Lab - type: SurveillanceCamera -- uid: 26605 - type: SurveillanceCameraScience - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-40.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RD Office - type: SurveillanceCamera -- uid: 26606 - type: SurveillanceCameraScience - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-28.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Artifact Lab - type: SurveillanceCamera -- uid: 26607 - type: SurveillanceCameraScience - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-48.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Sci Breakroom - type: SurveillanceCamera -- uid: 26608 - type: SurveillanceCameraScience - components: - - pos: 26.5,-58.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Sci Dock - type: SurveillanceCamera -- uid: 26609 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 36.5,-45.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Spare Room - type: SurveillanceCamera -- uid: 26610 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 36.5,-41.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Sci Backhall - type: SurveillanceCamera -- uid: 26611 - type: SurveillanceCameraScience - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-39.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Toxins Storage - type: SurveillanceCamera -- uid: 26612 - type: ComputerSurveillanceCameraMonitor - components: - - pos: 72.5,-8.5 - parent: 0 - type: Transform -- uid: 26613 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 73.5,-8.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Engineering Post - type: SurveillanceCamera -- uid: 26614 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 73.5,-8.5 - parent: 0 - type: Transform -- uid: 26615 - type: LockerEvidence - components: - - pos: 71.5,-8.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26616 - type: WeaponCapacitorRecharger - components: - - pos: 73.5,-8.5 - parent: 0 - type: Transform -- uid: 26617 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 72.5,-9.5 - parent: 0 - type: Transform -- uid: 26618 - type: SurveillanceCameraEngineering - components: - - pos: 66.5,-12.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Lobby - type: SurveillanceCamera -- uid: 26619 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-2.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Technical Storage - type: SurveillanceCamera -- uid: 26620 - type: SurveillanceCameraEngineering - components: - - pos: 77.5,-38.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics - type: SurveillanceCamera -- uid: 26621 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 84.5,-10.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: CE Office - type: SurveillanceCamera -- uid: 26622 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-11.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Breakroom - type: SurveillanceCamera -- uid: 26623 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 79.5,1.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Locker Room - type: SurveillanceCamera -- uid: 26624 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 78.5,-18.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Tool Room - type: SurveillanceCamera -- uid: 26625 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: 87.5,-5.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Clean Room - type: SurveillanceCamera -- uid: 26626 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 96.5,-2.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Particle Accelerator - type: SurveillanceCamera -- uid: 26627 - type: SurveillanceCameraEngineering - components: - - pos: 88.5,5.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - type: SurveillanceCamera -- uid: 26628 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 85.5,2.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES Bank - type: SurveillanceCamera -- uid: 26629 - type: ClothingHeadHatWelding - components: - - pos: 74.43585,1.7427076 - parent: 0 - type: Transform -- uid: 26630 - type: ClothingHeadHatWelding - components: - - pos: 74.43585,1.7427076 - parent: 0 - type: Transform -- uid: 26631 - type: Welder - components: - - pos: 74.70148,1.4927076 - parent: 0 - type: Transform -- uid: 26632 - type: Welder - components: - - pos: 74.70148,1.4927076 - parent: 0 - type: Transform -- uid: 26633 - type: ClothingEyesGlassesMeson - components: - - pos: 72.4671,1.5552076 - parent: 0 - type: Transform -- uid: 26634 - type: ClothingEyesGlassesMeson - components: - - pos: 72.5921,1.3833326 - parent: 0 - type: Transform -- uid: 26635 - type: TableReinforced - components: - - pos: 71.5,1.5 - parent: 0 - type: Transform -- uid: 26636 - type: TableReinforced - components: - - pos: 70.5,1.5 - parent: 0 - type: Transform -- uid: 26637 - type: ToolboxMechanicalFilled - components: - - pos: 70.49835,1.7114576 - parent: 0 - type: Transform -- uid: 26638 - type: ToolboxMechanicalFilled - components: - - pos: 70.63898,1.4927076 - parent: 0 - type: Transform -- uid: 26639 - type: FlashlightLantern - components: - - pos: 71.31085,1.6958326 - parent: 0 - type: Transform -- uid: 26640 - type: FlashlightLantern - components: - - pos: 71.43585,1.5083326 - parent: 0 - type: Transform -- uid: 26641 - type: LockerEngineerFilled - components: - - pos: 70.5,0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26642 - type: LockerEngineerFilled - components: - - pos: 70.5,-0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26643 - type: LockerEngineerFilled - components: - - pos: 70.5,-1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26644 - type: Table - components: - - pos: 70.5,-2.5 - parent: 0 - type: Transform -- uid: 26645 - type: ClothingShoesBootsMag - components: - - pos: 70.39696,-5.358678 - parent: 0 - type: Transform -- uid: 26646 - type: ClothingShoesBootsMag - components: - - pos: 70.55321,-5.514928 - parent: 0 - type: Transform -- uid: 26647 - type: Rack - components: - - pos: 71.5,-6.5 - parent: 0 - type: Transform -- uid: 26648 - type: Rack - components: - - pos: 72.5,-6.5 - parent: 0 - type: Transform -- uid: 26649 - type: Rack - components: - - pos: 73.5,-6.5 - parent: 0 - type: Transform -- uid: 26650 - type: JetpackBlueFilled - components: - - pos: 74.33446,-6.296178 - parent: 0 - type: Transform -- uid: 26651 - type: JetpackBlueFilled - components: - - pos: 74.55321,-6.468053 - parent: 0 - type: Transform -- uid: 26652 - type: BoxLightMixed - components: - - pos: 70.53758,-6.296178 - parent: 0 - type: Transform -- uid: 26653 - type: CableApcStack - components: - - pos: 71.36571,-6.368813 - parent: 0 - type: Transform -- uid: 26654 - type: CableApcStack - components: - - pos: 71.36571,-6.368813 - parent: 0 - type: Transform -- uid: 26655 - type: CableMVStack - components: - - pos: 71.47508,-6.540688 - parent: 0 - type: Transform -- uid: 26656 - type: CableMVStack - components: - - pos: 71.47508,-6.540688 - parent: 0 - type: Transform -- uid: 26657 - type: CableHVStack - components: - - pos: 71.61571,-6.665688 - parent: 0 - type: Transform -- uid: 26658 - type: CableHVStack - components: - - pos: 71.61571,-6.665688 - parent: 0 - type: Transform -- uid: 26659 - type: SheetSteel - components: - - pos: 72.55321,-6.478188 - parent: 0 - type: Transform -- uid: 26660 - type: SheetSteel - components: - - pos: 72.55321,-6.478188 - parent: 0 - type: Transform -- uid: 26661 - type: SheetRGlass - components: - - pos: 73.53758,-6.446938 - parent: 0 - type: Transform -- uid: 26662 - type: SheetRGlass - components: - - pos: 73.53758,-6.446938 - parent: 0 - type: Transform -- uid: 26663 - type: PowerCellRecharger - components: - - pos: 80.5,-2.5 - parent: 0 - type: Transform -- uid: 26664 - type: ToolboxElectricalFilled - components: - - pos: 70.44305,-2.2500637 - parent: 0 - type: Transform -- uid: 26665 - type: ToolboxElectricalFilled - components: - - pos: 70.5368,-2.4531887 - parent: 0 - type: Transform -- uid: 26666 - type: SignElectricalMed - components: - - pos: 65.5,0.5 - parent: 0 - type: Transform -- uid: 26667 - type: SignElectricalMed - components: - - pos: 92.5,4.5 - parent: 0 - type: Transform -- uid: 26668 - type: SignElectricalMed - components: - - pos: 99.5,-1.5 - parent: 0 - type: Transform -- uid: 26669 - type: SignElectricalMed - components: - - pos: 99.5,-9.5 - parent: 0 - type: Transform -- uid: 26670 - type: PottedPlant20 - components: - - pos: 83.48142,-6.843291 - parent: 0 - type: Transform -- uid: 26671 - type: ComputerAlert - components: - - rot: 1.5707963267948966 rad - pos: 85.5,-1.5 - parent: 0 - type: Transform -- uid: 26672 - type: SignShock - components: - - pos: 84.5,2.5 - parent: 0 - type: Transform -- uid: 26673 - type: Catwalk - components: - - pos: 87.5,-0.5 - parent: 0 - type: Transform -- uid: 26674 - type: Catwalk - components: - - pos: 87.5,0.5 - parent: 0 - type: Transform -- uid: 26675 - type: Catwalk - components: - - pos: 87.5,1.5 - parent: 0 - type: Transform -- uid: 26676 - type: Catwalk - components: - - pos: 87.5,2.5 - parent: 0 - type: Transform -- uid: 26677 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26678 - type: CableHV - components: - - pos: 91.5,1.5 - parent: 0 - type: Transform -- uid: 26679 - type: CableHV - components: - - pos: 92.5,1.5 - parent: 0 - type: Transform -- uid: 26680 - type: CableHV - components: - - pos: 93.5,1.5 - parent: 0 - type: Transform -- uid: 26681 - type: CableHV - components: - - pos: 94.5,1.5 - parent: 0 - type: Transform -- uid: 26682 - type: SpawnMobDrone - components: - - pos: 80.5,-24.5 - parent: 0 - type: Transform -- uid: 26683 - type: SpawnMobDrone - components: - - pos: 80.5,-23.5 - parent: 0 - type: Transform -- uid: 26684 - type: TrashBag - components: - - pos: 79.37306,-23.3054 - parent: 0 - type: Transform -- uid: 26685 - type: SheetSteel - components: - - pos: 81.52931,-23.52415 - parent: 0 - type: Transform -- uid: 26686 - type: SheetSteel - components: - - pos: 81.52931,-23.52415 - parent: 0 - type: Transform -- uid: 26687 - type: MopBucket - components: - - pos: 79.49806,-24.383526 - parent: 0 - type: Transform -- uid: 26688 - type: FloorDrain - components: - - pos: 79.5,-24.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 26689 - type: MopItem - components: - - pos: 79.48244,-24.414776 - parent: 0 - type: Transform -- uid: 26690 - type: MopItem - components: - - pos: 79.48244,-24.414776 - parent: 0 - type: Transform -- uid: 26691 - type: LightReplacer - components: - - pos: 81.46681,-24.3054 - parent: 0 - type: Transform -- uid: 26692 - type: SignDrones - components: - - pos: 82.5,-21.5 - parent: 0 - type: Transform -- uid: 26693 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 80.5,-24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26694 - type: CrateEngineeringSecure - components: - - pos: 81.5,-16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26695 - type: PottedPlant7 - components: - - pos: 61.49423,-12.803406 - parent: 0 - type: Transform -- uid: 26696 - type: PottedPlant8 - components: - - pos: 58.46298,-12.834656 - parent: 0 - type: Transform -- uid: 26697 - type: PottedPlant14 - components: - - pos: 69.55452,-12.772156 - parent: 0 - type: Transform -- uid: 26698 - type: OxygenCanister - components: - - pos: 91.5,-14.5 - parent: 0 - type: Transform -- uid: 26699 - type: NitrogenCanister - components: - - pos: 91.5,-15.5 - parent: 0 - type: Transform -- uid: 26700 - type: WindoorEngineeringLocked - components: - - rot: 1.5707963267948966 rad - pos: 91.5,-15.5 - parent: 0 - type: Transform -- uid: 26701 - type: WindoorEngineeringLocked - components: - - rot: 1.5707963267948966 rad - pos: 91.5,-14.5 - parent: 0 - type: Transform -- uid: 26702 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 91.5,-16.5 - parent: 0 - type: Transform -- uid: 26703 - type: SpawnPointResearchAssistant - components: - - pos: 31.5,-49.5 - parent: 0 - type: Transform -- uid: 26704 - type: SpawnPointResearchAssistant - components: - - pos: 31.5,-48.5 - parent: 0 - type: Transform -- uid: 26705 - type: Emitter - components: - - pos: 94.5,-17.5 - parent: 0 - type: Transform -- uid: 26706 - type: Emitter - components: - - pos: 94.5,-16.5 - parent: 0 - type: Transform -- uid: 26707 - type: Emitter - components: - - pos: 95.5,-17.5 - parent: 0 - type: Transform -- uid: 26708 - type: Emitter - components: - - pos: 95.5,-16.5 - parent: 0 - type: Transform -- uid: 26709 - type: ContainmentFieldGenerator - components: - - pos: 91.5,-16.5 - parent: 0 - type: Transform -- uid: 26710 - type: ContainmentFieldGenerator - components: - - pos: 92.5,-17.5 - parent: 0 - type: Transform -- uid: 26711 - type: ContainmentFieldGenerator - components: - - pos: 91.5,-17.5 - parent: 0 - type: Transform -- uid: 26712 - type: ContainmentFieldGenerator - components: - - pos: 92.5,-16.5 - parent: 0 - type: Transform -- uid: 26713 - type: Table - components: - - pos: 95.5,-14.5 - parent: 0 - type: Transform -- uid: 26714 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 83.5,7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26715 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 91.5,7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26716 - type: Poweredlight - components: - - pos: 92.5,3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26717 - type: Poweredlight - components: - - pos: 92.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26718 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 98.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26719 - type: PoweredSmallLight - components: - - pos: 93.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26720 - type: PoweredSmallLight - components: - - pos: 114.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26721 - type: PoweredSmallLight - components: - - pos: 101.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26722 - type: ComputerSolarControl - components: - - rot: -1.5707963267948966 rad - pos: 83.5,-7.5 - parent: 0 - type: Transform -- uid: 26723 - type: CableHV - components: - - pos: 82.5,-6.5 - parent: 0 - type: Transform -- uid: 26724 - type: CableHV - components: - - pos: 82.5,-7.5 - parent: 0 - type: Transform -- uid: 26725 - type: CableHV - components: - - pos: 82.5,-8.5 - parent: 0 - type: Transform -- uid: 26726 - type: CableHV - components: - - pos: 83.5,-8.5 - parent: 0 - type: Transform -- uid: 26727 - type: ComputerPowerMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 83.5,-8.5 - parent: 0 - type: Transform -- uid: 26728 - type: Table - components: - - pos: 81.5,-8.5 - parent: 0 - type: Transform -- uid: 26729 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 82.5,-7.5 - parent: 0 - type: Transform -- uid: 26730 - type: ClothingHandsGlovesColorYellow - components: - - pos: 80.51356,-0.47514987 - parent: 0 - type: Transform -- uid: 26731 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 87.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26732 - type: ClothingHeadHatWelding - components: - - pos: 79.54481,1.5873501 - parent: 0 - type: Transform -- uid: 26733 - type: TableReinforced - components: - - pos: 82.5,-43.5 - parent: 0 - type: Transform -- uid: 26734 - type: TableReinforced - components: - - pos: 82.5,-42.5 - parent: 0 - type: Transform -- uid: 26735 - type: TableReinforced - components: - - pos: 82.5,-41.5 - parent: 0 - type: Transform -- uid: 26736 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: 82.5838,-41.66624 - parent: 0 - type: Transform -- uid: 26737 - type: ClothingMaskGasAtmos - components: - - pos: 82.4588,-41.338116 - parent: 0 - type: Transform -- uid: 26738 - type: ClothingHeadHatBunny - components: - - pos: 82.4588,-42.25999 - parent: 0 - type: Transform -- uid: 26739 - type: ClothingHandsGlovesColorYellow - components: - - pos: 82.49005,-42.681866 - parent: 0 - type: Transform -- uid: 26740 - type: ClothingOuterWinterAtmos - components: - - pos: 82.49005,-43.29124 - parent: 0 - type: Transform -- uid: 26741 - type: ComputerAlert - components: - - rot: 1.5707963267948966 rad - pos: 82.5,-40.5 - parent: 0 - type: Transform -- uid: 26742 - type: ParticleAcceleratorControlBoxUnfinished - components: - - pos: 98.5,-8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 26743 - type: ClosetRadiationSuitFilled - components: - - pos: 101.5,-15.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26744 - type: ClosetRadiationSuitFilled - components: - - pos: 100.5,-15.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26745 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 99.5,-15.5 - parent: 0 - type: Transform -- uid: 26746 - type: ReinforcedPlasmaWindow - components: - - pos: 100.5,-18.5 - parent: 0 - type: Transform -- uid: 26747 - type: PoweredSmallLight - components: - - pos: 104.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26748 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 113.5,-17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26749 - type: PoweredSmallLight - components: - - pos: 97.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26750 - type: PoweredlightSodium - components: - - rot: 1.5707963267948966 rad - pos: 100.5,-1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26751 - type: PoweredlightSodium - components: - - rot: 1.5707963267948966 rad - pos: 100.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26752 - type: Catwalk - components: - - pos: 113.5,-16.5 - parent: 0 - type: Transform -- uid: 26753 - type: Catwalk - components: - - pos: 113.5,-15.5 - parent: 0 - type: Transform -- uid: 26754 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 119.5,5.5 - parent: 0 - type: Transform -- uid: 26755 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: 96.5,1.5 - parent: 0 - type: Transform -- uid: 26756 - type: WallReinforced - components: - - pos: 99.5,1.5 - parent: 0 - type: Transform -- uid: 26757 - type: Catwalk - components: - - pos: 97.5,-27.5 - parent: 0 - type: Transform -- uid: 26758 - type: Catwalk - components: - - pos: 97.5,-26.5 - parent: 0 - type: Transform -- uid: 26759 - type: Catwalk - components: - - pos: 97.5,-25.5 - parent: 0 - type: Transform -- uid: 26760 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 91.5,-19.5 - parent: 0 - type: Transform -- uid: 26761 - type: ClosetEmergencyFilledRandom - components: - - pos: 91.5,-22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26762 - type: ClosetEmergencyFilledRandom - components: - - pos: 93.5,-22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26763 - type: ClosetFireFilled - components: - - pos: 92.5,-22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26764 - type: ClosetFireFilled - components: - - pos: 94.5,-22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26765 - type: Railing - components: - - pos: 95.5,-21.5 - parent: 0 - type: Transform -- uid: 26766 - type: Railing - components: - - pos: 102.5,-20.5 - parent: 0 - type: Transform -- uid: 26767 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 102.5,-19.5 - parent: 0 - type: Transform -- uid: 26768 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 95.5,-19.5 - parent: 0 - type: Transform -- uid: 26769 - type: SignSecureMed - components: - - pos: 102.5,-18.5 - parent: 0 - type: Transform -- uid: 26770 - type: SignSecureMed - components: - - pos: 117.5,-19.5 - parent: 0 - type: Transform -- uid: 26771 - type: SignSecureMed - components: - - pos: 95.5,-24.5 - parent: 0 - type: Transform -- uid: 26772 - type: PoweredSmallLight - components: - - pos: 101.5,-31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26773 - type: Poweredlight - components: - - pos: 100.5,-33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26774 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 99.5,-39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26775 - type: AirlockEngineeringLocked - components: - - pos: 99.5,-42.5 - parent: 0 - type: Transform -- uid: 26776 - type: Grille - components: - - pos: 101.5,-57.5 - parent: 0 - type: Transform -- uid: 26777 - type: Grille - components: - - pos: 103.5,-57.5 - parent: 0 - type: Transform -- uid: 26778 - type: Grille - components: - - pos: 105.5,-50.5 - parent: 0 - type: Transform -- uid: 26779 - type: Grille - components: - - pos: 105.5,-49.5 - parent: 0 - type: Transform -- uid: 26780 - type: Grille - components: - - pos: 105.5,-47.5 - parent: 0 - type: Transform -- uid: 26781 - type: Grille - components: - - pos: 105.5,-45.5 - parent: 0 - type: Transform -- uid: 26782 - type: Grille - components: - - pos: 108.5,-45.5 - parent: 0 - type: Transform -- uid: 26783 - type: Grille - components: - - pos: 108.5,-47.5 - parent: 0 - type: Transform -- uid: 26784 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 102.5,-57.5 - parent: 0 - type: Transform -- uid: 26785 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 102.5,-55.5 - parent: 0 - type: Transform -- uid: 26786 - type: AirlockExternalGlassLocked - components: - - pos: 108.5,-46.5 - parent: 0 - type: Transform -- uid: 26787 - type: AirlockExternalGlassLocked - components: - - pos: 105.5,-46.5 - parent: 0 - type: Transform -- uid: 26788 - type: AirlockEngineeringLocked - components: - - pos: 103.5,-51.5 - parent: 0 - type: Transform -- uid: 26789 - type: CableMV - components: - - pos: 97.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26790 - type: CableMV - components: - - pos: 97.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26791 - type: CableMV - components: - - pos: 97.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26792 - type: CableMV - components: - - pos: 97.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26793 - type: CableMV - components: - - pos: 98.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26794 - type: CableMV - components: - - pos: 99.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26795 - type: CableMV - components: - - pos: 100.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26796 - type: CableMV - components: - - pos: 100.5,-45.5 - parent: 0 - type: Transform -- uid: 26797 - type: CableMV - components: - - pos: 100.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26798 - type: CableApcExtension - components: - - pos: 100.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26799 - type: CableApcExtension - components: - - pos: 100.5,-45.5 - parent: 0 - type: Transform -- uid: 26800 - type: CableApcExtension - components: - - pos: 100.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26801 - type: CableApcExtension - components: - - pos: 101.5,-46.5 - parent: 0 - type: Transform -- uid: 26802 - type: CableApcExtension - components: - - pos: 103.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26803 - type: CableApcExtension - components: - - pos: 102.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26804 - type: CableApcExtension - components: - - pos: 104.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26805 - type: CableApcExtension - components: - - pos: 105.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26806 - type: CableApcExtension - components: - - pos: 106.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26807 - type: CableApcExtension - components: - - pos: 107.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26808 - type: CableApcExtension - components: - - pos: 103.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26809 - type: CableApcExtension - components: - - pos: 103.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26810 - type: CableApcExtension - components: - - pos: 103.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26811 - type: CableApcExtension - components: - - pos: 103.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26812 - type: CableApcExtension - components: - - pos: 103.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26813 - type: CableApcExtension - components: - - pos: 103.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26814 - type: CableApcExtension - components: - - pos: 103.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26815 - type: CableApcExtension - components: - - pos: 103.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26816 - type: CableApcExtension - components: - - pos: 102.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26817 - type: CableApcExtension - components: - - pos: 102.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26818 - type: CableApcExtension - components: - - pos: 102.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26819 - type: CableApcExtension - components: - - pos: 102.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26820 - type: CableApcExtension - components: - - pos: 102.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26821 - type: CableApcExtension - components: - - pos: 101.5,-53.5 - parent: 0 - type: Transform -- uid: 26822 - type: CableApcExtension - components: - - pos: 99.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26823 - type: CableApcExtension - components: - - pos: 98.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26824 - type: CableApcExtension - components: - - pos: 97.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26825 - type: CableApcExtension - components: - - pos: 96.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26826 - type: CableApcExtension - components: - - pos: 95.5,-46.5 - parent: 0 - type: Transform -- uid: 26827 - type: CableApcExtension - components: - - pos: 94.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26828 - type: CableApcExtension - components: - - pos: 93.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26829 - type: CableApcExtension - components: - - pos: 92.5,-46.5 - parent: 0 - type: Transform -- uid: 26830 - type: CableApcExtension - components: - - pos: 91.5,-46.5 - parent: 0 - type: Transform -- uid: 26831 - type: CableApcExtension - components: - - pos: 90.5,-46.5 - parent: 0 - type: Transform -- uid: 26832 - type: CableApcExtension - components: - - pos: 89.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26833 - type: CableApcExtension - components: - - pos: 88.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26834 - type: CableApcExtension - components: - - pos: 87.5,-46.5 - parent: 0 - type: Transform -- uid: 26835 - type: CableApcExtension - components: - - pos: 86.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26836 - type: CableApcExtension - components: - - pos: 85.5,-46.5 - parent: 0 - type: Transform -- uid: 26837 - type: CableApcExtension - components: - - pos: 84.5,-46.5 - parent: 0 - type: Transform -- uid: 26838 - type: CableApcExtension - components: - - pos: 83.5,-46.5 - parent: 0 - type: Transform -- uid: 26839 - type: CableApcExtension - components: - - pos: 82.5,-46.5 - parent: 0 - type: Transform -- uid: 26840 - type: CableApcExtension - components: - - pos: 81.5,-46.5 - parent: 0 - type: Transform -- uid: 26841 - type: CableApcExtension - components: - - pos: 80.5,-46.5 - parent: 0 - type: Transform -- uid: 26842 - type: CableApcExtension - components: - - pos: 79.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26843 - type: CableApcExtension - components: - - pos: 78.5,-46.5 - parent: 0 - type: Transform -- uid: 26844 - type: CableApcExtension - components: - - pos: 77.5,-46.5 - parent: 0 - type: Transform -- uid: 26845 - type: CableApcExtension - components: - - pos: 76.5,-46.5 - parent: 0 - type: Transform -- uid: 26846 - type: CableApcExtension - components: - - pos: 75.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26847 - type: CableApcExtension - components: - - pos: 74.5,-46.5 - parent: 0 - type: Transform -- uid: 26848 - type: CableApcExtension - components: - - pos: 73.5,-46.5 - parent: 0 - type: Transform -- uid: 26849 - type: CableApcExtension - components: - - pos: 72.5,-46.5 - parent: 0 - type: Transform -- uid: 26850 - type: CableApcExtension - components: - - pos: 71.5,-46.5 - parent: 0 - type: Transform -- uid: 26851 - type: CableApcExtension - components: - - pos: 70.5,-46.5 - parent: 0 - type: Transform -- uid: 26852 - type: CableApcExtension - components: - - pos: 69.5,-46.5 - parent: 0 - type: Transform -- uid: 26853 - type: CableApcExtension - components: - - pos: 68.5,-46.5 - parent: 0 - type: Transform -- uid: 26854 - type: CableApcExtension - components: - - pos: 67.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26855 - type: CableApcExtension - components: - - pos: 66.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26856 - type: Table - components: - - pos: 100.5,-17.5 - parent: 0 - type: Transform -- uid: 26857 - type: Table - components: - - pos: 99.5,-17.5 - parent: 0 - type: Transform -- uid: 26858 - type: Table - components: - - pos: 98.5,-17.5 - parent: 0 - type: Transform -- uid: 26859 - type: WeldingFuelTankFull - components: - - pos: 103.5,-15.5 - parent: 0 - type: Transform -- uid: 26860 - type: KvassTankFull - components: - - pos: 104.5,-15.5 - parent: 0 - type: Transform -- uid: 26861 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 109.5,-19.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South Hall - type: SurveillanceCamera -- uid: 26862 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 120.5,-22.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Grav Gen - type: SurveillanceCamera -- uid: 26863 - type: ClosetRadiationSuitFilled - components: - - pos: 111.5,-23.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26864 - type: Catwalk - components: - - pos: 111.5,-23.5 - parent: 0 - type: Transform -- uid: 26865 - type: PottedPlantBioluminscent - components: - - pos: 116.5,-22.5 - parent: 0 - type: Transform -- uid: 26866 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 122.5,-23.5 - parent: 0 - type: Transform -- uid: 26867 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 122.5,-22.5 - parent: 0 - type: Transform -- uid: 26868 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 122.5,-26.5 - parent: 0 - type: Transform -- uid: 26869 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 122.5,-25.5 - parent: 0 - type: Transform -- uid: 26870 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: 122.5,-24.5 - parent: 0 - type: Transform -- uid: 26871 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: 122.5,-24.5 - parent: 0 - type: Transform -- uid: 26872 - type: TableReinforced - components: - - pos: 115.5,-22.5 - parent: 0 - type: Transform -- uid: 26873 - type: TableReinforced - components: - - pos: 114.5,-22.5 - parent: 0 - type: Transform -- uid: 26874 - type: TableReinforced - components: - - pos: 115.5,-26.5 - parent: 0 - type: Transform -- uid: 26875 - type: ToolboxElectricalFilled - components: - - pos: 114.46142,-22.28264 - parent: 0 - type: Transform -- uid: 26876 - type: ToolboxMechanicalFilled - components: - - pos: 114.61767,-22.517015 - parent: 0 - type: Transform -- uid: 26877 - type: PaperBin5 - components: - - pos: 115.5,-22.5 - parent: 0 - type: Transform -- uid: 26878 - type: SheetPlasteel - components: - - pos: 115.47704,-26.53264 - parent: 0 - type: Transform -- uid: 26879 - type: PottedPlant12 - components: - - pos: 116.5,-26.5 - parent: 0 - type: Transform -- uid: 26880 - type: Catwalk - components: - - pos: 118.5,-20.5 - parent: 0 - type: Transform -- uid: 26881 - type: CableApcExtension - components: - - pos: 119.5,-16.5 - parent: 0 - type: Transform -- uid: 26882 - type: CableApcExtension - components: - - pos: 118.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26883 - type: CableApcExtension - components: - - pos: 118.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26884 - type: CableApcExtension - components: - - pos: 118.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26885 - type: CableApcExtension - components: - - pos: 118.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26886 - type: CableApcExtension - components: - - pos: 118.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26887 - type: CableApcExtension - components: - - pos: 118.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26888 - type: Catwalk - components: - - pos: 119.5,-13.5 - parent: 0 - type: Transform -- uid: 26889 - type: Catwalk - components: - - pos: 119.5,-12.5 - parent: 0 - type: Transform -- uid: 26890 - type: Catwalk - components: - - pos: 119.5,-11.5 - parent: 0 - type: Transform -- uid: 26891 - type: Catwalk - components: - - pos: 119.5,-10.5 - parent: 0 - type: Transform -- uid: 26892 - type: Catwalk - components: - - pos: 119.5,-9.5 - parent: 0 - type: Transform -- uid: 26893 - type: Catwalk - components: - - pos: 119.5,-8.5 - parent: 0 - type: Transform -- uid: 26894 - type: Catwalk - components: - - pos: 119.5,-7.5 - parent: 0 - type: Transform -- uid: 26895 - type: Catwalk - components: - - pos: 119.5,-6.5 - parent: 0 - type: Transform -- uid: 26896 - type: Catwalk - components: - - pos: 119.5,-5.5 - parent: 0 - type: Transform -- uid: 26897 - type: Catwalk - components: - - pos: 119.5,-4.5 - parent: 0 - type: Transform -- uid: 26898 - type: Catwalk - components: - - pos: 119.5,-3.5 - parent: 0 - type: Transform -- uid: 26899 - type: Catwalk - components: - - pos: 119.5,-2.5 - parent: 0 - type: Transform -- uid: 26900 - type: Catwalk - components: - - pos: 119.5,-1.5 - parent: 0 - type: Transform -- uid: 26901 - type: Catwalk - components: - - pos: 119.5,-0.5 - parent: 0 - type: Transform -- uid: 26902 - type: Catwalk - components: - - pos: 119.5,0.5 - parent: 0 - type: Transform -- uid: 26903 - type: Catwalk - components: - - pos: 119.5,1.5 - parent: 0 - type: Transform -- uid: 26904 - type: Catwalk - components: - - pos: 119.5,2.5 - parent: 0 - type: Transform -- uid: 26905 - type: Catwalk - components: - - pos: 119.5,3.5 - parent: 0 - type: Transform -- uid: 26906 - type: Catwalk - components: - - pos: 119.5,4.5 - parent: 0 - type: Transform -- uid: 26907 - type: Catwalk - components: - - pos: 119.5,5.5 - parent: 0 - type: Transform -- uid: 26908 - type: Catwalk - components: - - pos: 119.5,6.5 - parent: 0 - type: Transform -- uid: 26909 - type: OxygenCanister - components: - - pos: 77.5,3.5 - parent: 0 - type: Transform -- uid: 26910 - type: Rack - components: - - pos: 78.5,3.5 - parent: 0 - type: Transform -- uid: 26911 - type: ClothingNeckScarfStripedBlue - components: - - pos: 78.48515,3.424149 - parent: 0 - type: Transform -- uid: 26912 - type: Catwalk - components: - - pos: 81.5,4.5 - parent: 0 - type: Transform -- uid: 26913 - type: Catwalk - components: - - pos: 80.5,4.5 - parent: 0 - type: Transform -- uid: 26914 - type: Catwalk - components: - - pos: 79.5,4.5 - parent: 0 - type: Transform -- uid: 26915 - type: Catwalk - components: - - pos: 78.5,4.5 - parent: 0 - type: Transform -- uid: 26916 - type: Catwalk - components: - - pos: 77.5,4.5 - parent: 0 - type: Transform -- uid: 26917 - type: FirelockGlass - components: - - pos: 76.5,4.5 - parent: 0 - type: Transform -- uid: 26918 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 65.5,19.5 - parent: 0 - type: Transform -- uid: 26919 - type: Catwalk - components: - - pos: 81.5,5.5 - parent: 0 - type: Transform -- uid: 26920 - type: Catwalk - components: - - pos: 81.5,6.5 - parent: 0 - type: Transform -- uid: 26921 - type: Catwalk - components: - - pos: 81.5,7.5 - parent: 0 - type: Transform -- uid: 26922 - type: Catwalk - components: - - pos: 81.5,8.5 - parent: 0 - type: Transform -- uid: 26923 - type: Catwalk - components: - - pos: 81.5,9.5 - parent: 0 - type: Transform -- uid: 26924 - type: CableHV - components: - - pos: 82.5,11.5 - parent: 0 - type: Transform -- uid: 26925 - type: Catwalk - components: - - pos: 82.5,10.5 - parent: 0 - type: Transform -- uid: 26926 - type: Catwalk - components: - - pos: 83.5,10.5 - parent: 0 - type: Transform -- uid: 26927 - type: Catwalk - components: - - pos: 84.5,10.5 - parent: 0 - type: Transform -- uid: 26928 - type: Catwalk - components: - - pos: 85.5,10.5 - parent: 0 - type: Transform -- uid: 26929 - type: Catwalk - components: - - pos: 86.5,10.5 - parent: 0 - type: Transform -- uid: 26930 - type: Catwalk - components: - - pos: 87.5,10.5 - parent: 0 - type: Transform -- uid: 26931 - type: Catwalk - components: - - pos: 88.5,10.5 - parent: 0 - type: Transform -- uid: 26932 - type: Catwalk - components: - - pos: 89.5,10.5 - parent: 0 - type: Transform -- uid: 26933 - type: Catwalk - components: - - pos: 90.5,10.5 - parent: 0 - type: Transform -- uid: 26934 - type: Catwalk - components: - - pos: 91.5,10.5 - parent: 0 - type: Transform -- uid: 26935 - type: Catwalk - components: - - pos: 92.5,10.5 - parent: 0 - type: Transform -- uid: 26936 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 93.5,10.5 - parent: 0 - type: Transform -- uid: 26937 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 94.5,10.5 - parent: 0 - type: Transform -- uid: 26938 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 95.5,10.5 - parent: 0 - type: Transform -- uid: 26939 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 96.5,10.5 - parent: 0 - type: Transform -- uid: 26940 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 97.5,10.5 - parent: 0 - type: Transform -- uid: 26941 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 98.5,10.5 - parent: 0 - type: Transform -- uid: 26942 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 99.5,10.5 - parent: 0 - type: Transform -- uid: 26943 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 100.5,9.5 - parent: 0 - type: Transform -- uid: 26944 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 101.5,8.5 - parent: 0 - type: Transform -- uid: 26945 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 102.5,8.5 - parent: 0 - type: Transform -- uid: 26946 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 103.5,8.5 - parent: 0 - type: Transform -- uid: 26947 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 104.5,8.5 - parent: 0 - type: Transform -- uid: 26948 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 105.5,8.5 - parent: 0 - type: Transform -- uid: 26949 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 106.5,8.5 - parent: 0 - type: Transform -- uid: 26950 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 107.5,8.5 - parent: 0 - type: Transform -- uid: 26951 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 108.5,8.5 - parent: 0 - type: Transform -- uid: 26952 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 109.5,8.5 - parent: 0 - type: Transform -- uid: 26953 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 110.5,8.5 - parent: 0 - type: Transform -- uid: 26954 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 111.5,8.5 - parent: 0 - type: Transform -- uid: 26955 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 112.5,8.5 - parent: 0 - type: Transform -- uid: 26956 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 113.5,8.5 - parent: 0 - type: Transform -- uid: 26957 - type: DisposalPipe - components: - - pos: 114.5,7.5 - parent: 0 - type: Transform -- uid: 26958 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 115.5,6.5 - parent: 0 - type: Transform -- uid: 26959 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 116.5,6.5 - parent: 0 - type: Transform -- uid: 26960 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 117.5,6.5 - parent: 0 - type: Transform -- uid: 26961 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 118.5,6.5 - parent: 0 - type: Transform -- uid: 26962 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 119.5,4.5 - parent: 0 - type: Transform -- uid: 26963 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 119.5,3.5 - parent: 0 - type: Transform -- uid: 26964 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 119.5,2.5 - parent: 0 - type: Transform -- uid: 26965 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 119.5,1.5 - parent: 0 - type: Transform -- uid: 26966 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 119.5,0.5 - parent: 0 - type: Transform -- uid: 26967 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 119.5,-0.5 - parent: 0 - type: Transform -- uid: 26968 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 119.5,-1.5 - parent: 0 - type: Transform -- uid: 26969 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 119.5,-2.5 - parent: 0 - type: Transform -- uid: 26970 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 119.5,-3.5 - parent: 0 - type: Transform -- uid: 26971 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 119.5,-4.5 - parent: 0 - type: Transform -- uid: 26972 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 119.5,-5.5 - parent: 0 - type: Transform -- uid: 26973 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 119.5,-6.5 - parent: 0 - type: Transform -- uid: 26974 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 120.5,-7.5 - parent: 0 - type: Transform -- uid: 26975 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 121.5,-7.5 - parent: 0 - type: Transform -- uid: 26976 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 122.5,-7.5 - parent: 0 - type: Transform -- uid: 26977 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 123.5,-8.5 - parent: 0 - type: Transform -- uid: 26978 - type: DisposalBend - components: - - pos: 123.5,-7.5 - parent: 0 - type: Transform -- uid: 26979 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 119.5,-7.5 - parent: 0 - type: Transform -- uid: 26980 - type: DisposalBend - components: - - pos: 119.5,6.5 - parent: 0 - type: Transform -- uid: 26981 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 114.5,6.5 - parent: 0 - type: Transform -- uid: 26982 - type: DisposalBend - components: - - pos: 114.5,8.5 - parent: 0 - type: Transform -- uid: 26983 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 100.5,8.5 - parent: 0 - type: Transform -- uid: 26984 - type: DisposalBend - components: - - pos: 100.5,10.5 - parent: 0 - type: Transform -- uid: 26985 - type: CableHV - components: - - pos: 115.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26986 - type: CableHV - components: - - pos: 114.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26987 - type: CableHV - components: - - pos: 114.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26988 - type: CableHV - components: - - pos: 114.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26989 - type: CableHV - components: - - pos: 113.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26990 - type: CableHV - components: - - pos: 112.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26991 - type: CableHV - components: - - pos: 111.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26992 - type: CableHV - components: - - pos: 110.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26993 - type: CableHV - components: - - pos: 109.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26994 - type: CableHV - components: - - pos: 108.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26995 - type: CableHV - components: - - pos: 107.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26996 - type: CableHV - components: - - pos: 106.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26997 - type: CableHV - components: - - pos: 105.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26998 - type: CableHV - components: - - pos: 104.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26999 - type: CableHV - components: - - pos: 103.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27000 - type: CableHV - components: - - pos: 102.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27001 - type: CableHV - components: - - pos: 101.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27002 - type: CableHV - components: - - pos: 100.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27003 - type: CableHV - components: - - pos: 100.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27004 - type: CableHV - components: - - pos: 100.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27005 - type: CableHV - components: - - pos: 99.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27006 - type: CableHV - components: - - pos: 98.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27007 - type: CableHV - components: - - pos: 97.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27008 - type: CableHV - components: - - pos: 96.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27009 - type: CableHV - components: - - pos: 95.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27010 - type: CableHV - components: - - pos: 94.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27011 - type: Catwalk - components: - - pos: 93.5,10.5 - parent: 0 - type: Transform -- uid: 27012 - type: Catwalk - components: - - pos: 94.5,10.5 - parent: 0 - type: Transform -- uid: 27013 - type: FirelockGlass - components: - - pos: 95.5,10.5 - parent: 0 - type: Transform -- uid: 27014 - type: Catwalk - components: - - pos: 96.5,10.5 - parent: 0 - type: Transform -- uid: 27015 - type: Catwalk - components: - - pos: 97.5,10.5 - parent: 0 - type: Transform -- uid: 27016 - type: Catwalk - components: - - pos: 98.5,10.5 - parent: 0 - type: Transform -- uid: 27017 - type: Catwalk - components: - - pos: 99.5,10.5 - parent: 0 - type: Transform -- uid: 27018 - type: Catwalk - components: - - pos: 100.5,10.5 - parent: 0 - type: Transform -- uid: 27019 - type: Catwalk - components: - - pos: 100.5,9.5 - parent: 0 - type: Transform -- uid: 27020 - type: Catwalk - components: - - pos: 100.5,8.5 - parent: 0 - type: Transform -- uid: 27021 - type: Catwalk - components: - - pos: 101.5,8.5 - parent: 0 - type: Transform -- uid: 27022 - type: Catwalk - components: - - pos: 102.5,8.5 - parent: 0 - type: Transform -- uid: 27023 - type: Catwalk - components: - - pos: 103.5,8.5 - parent: 0 - type: Transform -- uid: 27024 - type: Catwalk - components: - - pos: 104.5,8.5 - parent: 0 - type: Transform -- uid: 27025 - type: FirelockGlass - components: - - pos: 105.5,8.5 - parent: 0 - type: Transform -- uid: 27026 - type: Catwalk - components: - - pos: 106.5,8.5 - parent: 0 - type: Transform -- uid: 27027 - type: Catwalk - components: - - pos: 107.5,8.5 - parent: 0 - type: Transform -- uid: 27028 - type: Catwalk - components: - - pos: 108.5,8.5 - parent: 0 - type: Transform -- uid: 27029 - type: Catwalk - components: - - pos: 109.5,8.5 - parent: 0 - type: Transform -- uid: 27030 - type: Catwalk - components: - - pos: 110.5,8.5 - parent: 0 - type: Transform -- uid: 27031 - type: Catwalk - components: - - pos: 111.5,8.5 - parent: 0 - type: Transform -- uid: 27032 - type: Catwalk - components: - - pos: 112.5,8.5 - parent: 0 - type: Transform -- uid: 27033 - type: Catwalk - components: - - pos: 113.5,8.5 - parent: 0 - type: Transform -- uid: 27034 - type: Catwalk - components: - - pos: 114.5,8.5 - parent: 0 - type: Transform -- uid: 27035 - type: Catwalk - components: - - pos: 114.5,7.5 - parent: 0 - type: Transform -- uid: 27036 - type: Catwalk - components: - - pos: 114.5,6.5 - parent: 0 - type: Transform -- uid: 27037 - type: Catwalk - components: - - pos: 115.5,6.5 - parent: 0 - type: Transform -- uid: 27038 - type: Catwalk - components: - - pos: 116.5,6.5 - parent: 0 - type: Transform -- uid: 27039 - type: Catwalk - components: - - pos: 117.5,6.5 - parent: 0 - type: Transform -- uid: 27040 - type: Catwalk - components: - - pos: 118.5,6.5 - parent: 0 - type: Transform -- uid: 27041 - type: Grille - components: - - pos: 123.5,5.5 - parent: 0 - type: Transform -- uid: 27042 - type: Grille - components: - - pos: 123.5,7.5 - parent: 0 - type: Transform -- uid: 27043 - type: Grille - components: - - pos: 120.5,0.5 - parent: 0 - type: Transform -- uid: 27044 - type: Grille - components: - - pos: 120.5,2.5 - parent: 0 - type: Transform -- uid: 27045 - type: Grille - components: - - pos: 121.5,-2.5 - parent: 0 - type: Transform -- uid: 27046 - type: Grille - components: - - pos: 123.5,-0.5 - parent: 0 - type: Transform -- uid: 27047 - type: Grille - components: - - pos: 125.5,-0.5 - parent: 0 - type: Transform -- uid: 27048 - type: Grille - components: - - pos: 122.5,-7.5 - parent: 0 - type: Transform -- uid: 27049 - type: Grille - components: - - pos: 127.5,-8.5 - parent: 0 - type: Transform -- uid: 27050 - type: Grille - components: - - pos: 127.5,-7.5 - parent: 0 - type: Transform -- uid: 27051 - type: Grille - components: - - pos: 127.5,-6.5 - parent: 0 - type: Transform -- uid: 27052 - type: Recycler - components: - - rot: 1.5707963267948966 rad - pos: 128.5,-3.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27081 - Forward: - - port: Left - uid: 27081 - Off: - - port: Middle - uid: 27081 - type: SignalReceiver -- uid: 27053 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 130.5,-3.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver -- uid: 27054 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 129.5,-3.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver -- uid: 27055 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 125.5,-8.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver -- uid: 27056 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 124.5,-8.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver -- uid: 27057 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 123.5,-8.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver -- uid: 27058 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: 126.5,-8.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver -- uid: 27059 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: 126.5,-7.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver -- uid: 27060 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: 126.5,-6.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver -- uid: 27061 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: 126.5,-5.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver -- uid: 27062 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: 126.5,-4.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver -- uid: 27063 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 126.5,-3.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver -- uid: 27064 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 127.5,-3.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver -- uid: 27065 - type: WallSolid - components: - - pos: 115.5,8.5 - parent: 0 - type: Transform -- uid: 27066 - type: WallSolid - components: - - pos: 115.5,9.5 - parent: 0 - type: Transform -- uid: 27067 - type: WallSolid - components: - - pos: 114.5,13.5 - parent: 0 - type: Transform -- uid: 27068 - type: WallSolid - components: - - pos: 112.5,13.5 - parent: 0 - type: Transform -- uid: 27069 - type: WallSolid - components: - - pos: 110.5,13.5 - parent: 0 - type: Transform -- uid: 27070 - type: WallSolid - components: - - pos: 111.5,13.5 - parent: 0 - type: Transform -- uid: 27071 - type: WallSolid - components: - - pos: 114.5,9.5 - parent: 0 - type: Transform -- uid: 27072 - type: WallSolid - components: - - pos: 112.5,9.5 - parent: 0 - type: Transform -- uid: 27073 - type: WallSolid - components: - - pos: 111.5,9.5 - parent: 0 - type: Transform -- uid: 27074 - type: WallSolid - components: - - pos: 110.5,9.5 - parent: 0 - type: Transform -- uid: 27075 - type: WallReinforced - components: - - pos: 109.5,11.5 - parent: 0 - type: Transform -- uid: 27076 - type: WallReinforced - components: - - pos: 109.5,10.5 - parent: 0 - type: Transform -- uid: 27077 - type: SubstationBasic - components: - - name: North Engi Sub - type: MetaData - - pos: 107.5,12.5 - parent: 0 - type: Transform -- uid: 27078 - type: WallReinforced - components: - - pos: 109.5,9.5 - parent: 0 - type: Transform -- uid: 27079 - type: WallReinforced - components: - - pos: 108.5,9.5 - parent: 0 - type: Transform -- uid: 27080 - type: TwoWayLever - components: - - pos: 125.5,-7.5 - parent: 0 - type: Transform - - outputs: - Left: - - port: Forward - uid: 27057 - - port: Forward - uid: 27056 - - port: Forward - uid: 27055 - - port: Forward - uid: 27058 - - port: Forward - uid: 27059 - - port: Forward - uid: 27060 - - port: Forward - uid: 27061 - - port: Forward - uid: 27062 - - port: Forward - uid: 27063 - - port: Forward - uid: 27064 - - port: Forward - uid: 27054 - - port: Forward - uid: 27053 - - port: Forward - uid: 34655 - Right: - - port: Reverse - uid: 27057 - - port: Reverse - uid: 27056 - - port: Reverse - uid: 27055 - - port: Reverse - uid: 27058 - - port: Reverse - uid: 27059 - - port: Reverse - uid: 27060 - - port: Reverse - uid: 27061 - - port: Reverse - uid: 27062 - - port: Reverse - uid: 27063 - - port: Reverse - uid: 27064 - - port: Reverse - uid: 27054 - - port: Reverse - uid: 27053 - - port: Reverse - uid: 34655 - Middle: - - port: Off - uid: 27057 - - port: Off - uid: 27056 - - port: Off - uid: 27055 - - port: Off - uid: 27058 - - port: Off - uid: 27059 - - port: Off - uid: 27060 - - port: Off - uid: 27061 - - port: Off - uid: 27062 - - port: Off - uid: 27063 - - port: Off - uid: 27064 - - port: Off - uid: 27054 - - port: Off - uid: 27053 - - port: Off - uid: 34655 - type: SignalTransmitter -- uid: 27081 - type: TwoWayLever - components: - - pos: 125.5,-3.5 - parent: 0 - type: Transform - - outputs: - Left: - - port: Forward - uid: 27052 - Right: - - port: Reverse - uid: 27052 - Middle: - - port: Off - uid: 27052 - type: SignalTransmitter -- uid: 27082 - type: WallSolid - components: - - pos: 89.5,11.5 - parent: 0 - type: Transform -- uid: 27083 - type: WallSolid - components: - - pos: 90.5,11.5 - parent: 0 - type: Transform -- uid: 27084 - type: WallSolid - components: - - pos: 91.5,11.5 - parent: 0 - type: Transform -- uid: 27085 - type: WallSolid - components: - - pos: 92.5,11.5 - parent: 0 - type: Transform -- uid: 27086 - type: WallSolid - components: - - pos: 93.5,11.5 - parent: 0 - type: Transform -- uid: 27087 - type: WallSolid - components: - - pos: 94.5,11.5 - parent: 0 - type: Transform -- uid: 27088 - type: WallSolid - components: - - pos: 95.5,11.5 - parent: 0 - type: Transform -- uid: 27089 - type: WallSolid - components: - - pos: 95.5,12.5 - parent: 0 - type: Transform -- uid: 27090 - type: WallSolid - components: - - pos: 95.5,13.5 - parent: 0 - type: Transform -- uid: 27091 - type: WallSolid - components: - - pos: 95.5,15.5 - parent: 0 - type: Transform -- uid: 27092 - type: WallSolid - components: - - pos: 95.5,16.5 - parent: 0 - type: Transform -- uid: 27093 - type: SpawnPointResearchAssistant - components: - - pos: 31.5,-47.5 - parent: 0 - type: Transform -- uid: 27094 - type: SpawnPointTechnicalAssistant - components: - - pos: 72.5,-1.5 - parent: 0 - type: Transform -- uid: 27095 - type: SpawnPointTechnicalAssistant - components: - - pos: 72.5,-0.5 - parent: 0 - type: Transform -- uid: 27096 - type: SpawnPointTechnicalAssistant - components: - - pos: 72.5,0.5 - parent: 0 - type: Transform -- uid: 27097 - type: SpawnPointStationEngineer - components: - - pos: 78.5,0.5 - parent: 0 - type: Transform -- uid: 27098 - type: SpawnPointStationEngineer - components: - - pos: 79.5,0.5 - parent: 0 - type: Transform -- uid: 27099 - type: SpawnPointStationEngineer - components: - - pos: 80.5,0.5 - parent: 0 - type: Transform -- uid: 27100 - type: SpawnPointStationEngineer - components: - - pos: 81.5,0.5 - parent: 0 - type: Transform -- uid: 27101 - type: SpawnPointStationEngineer - components: - - pos: 82.5,0.5 - parent: 0 - type: Transform -- uid: 27102 - type: SpawnPointStationEngineer - components: - - pos: 77.5,0.5 - parent: 0 - type: Transform -- uid: 27103 - type: LockerEngineerFilled - components: - - pos: 74.5,-5.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 27104 - type: LockerEngineerFilled - components: - - pos: 85.5,3.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 27105 - type: AirlockEngineeringLocked - components: - - pos: 111.5,31.5 - parent: 0 - type: Transform -- uid: 27106 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 115.5,31.5 - parent: 0 - type: Transform -- uid: 27107 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 117.5,31.5 - parent: 0 - type: Transform -- uid: 27108 - type: Grille - components: - - pos: 117.5,32.5 - parent: 0 - type: Transform -- uid: 27109 - type: Grille - components: - - pos: 117.5,30.5 - parent: 0 - type: Transform -- uid: 27110 - type: WallSolid - components: - - pos: 110.5,29.5 - parent: 0 - type: Transform -- uid: 27111 - type: WallSolid - components: - - pos: 109.5,29.5 - parent: 0 - type: Transform -- uid: 27112 - type: WallSolid - components: - - pos: 108.5,29.5 - parent: 0 - type: Transform -- uid: 27113 - type: WallSolid - components: - - pos: 108.5,31.5 - parent: 0 - type: Transform -- uid: 27114 - type: WallSolid - components: - - pos: 108.5,32.5 - parent: 0 - type: Transform -- uid: 27115 - type: WallSolid - components: - - pos: 108.5,33.5 - parent: 0 - type: Transform -- uid: 27116 - type: WallSolid - components: - - pos: 107.5,33.5 - parent: 0 - type: Transform -- uid: 27117 - type: WallSolid - components: - - pos: 106.5,33.5 - parent: 0 - type: Transform -- uid: 27118 - type: WallSolid - components: - - pos: 105.5,33.5 - parent: 0 - type: Transform -- uid: 27119 - type: WallSolid - components: - - pos: 104.5,33.5 - parent: 0 - type: Transform -- uid: 27120 - type: WallSolid - components: - - pos: 104.5,32.5 - parent: 0 - type: Transform -- uid: 27121 - type: WallSolid - components: - - pos: 104.5,31.5 - parent: 0 - type: Transform -- uid: 27122 - type: WallSolid - components: - - pos: 104.5,29.5 - parent: 0 - type: Transform -- uid: 27123 - type: WallSolid - components: - - pos: 104.5,28.5 - parent: 0 - type: Transform -- uid: 27124 - type: WallSolid - components: - - pos: 104.5,27.5 - parent: 0 - type: Transform -- uid: 27125 - type: WallSolid - components: - - pos: 105.5,27.5 - parent: 0 - type: Transform -- uid: 27126 - type: WallSolid - components: - - pos: 106.5,27.5 - parent: 0 - type: Transform -- uid: 27127 - type: WallSolid - components: - - pos: 107.5,27.5 - parent: 0 - type: Transform -- uid: 27128 - type: WallSolid - components: - - pos: 108.5,27.5 - parent: 0 - type: Transform -- uid: 27129 - type: WallSolid - components: - - pos: 108.5,28.5 - parent: 0 - type: Transform -- uid: 27130 - type: WallSolid - components: - - pos: 111.5,37.5 - parent: 0 - type: Transform -- uid: 27131 - type: WallSolid - components: - - pos: 103.5,37.5 - parent: 0 - type: Transform -- uid: 27132 - type: WallSolid - components: - - pos: 101.5,37.5 - parent: 0 - type: Transform -- uid: 27133 - type: WallSolid - components: - - pos: 96.5,22.5 - parent: 0 - type: Transform -- uid: 27134 - type: WallSolid - components: - - pos: 97.5,22.5 - parent: 0 - type: Transform -- uid: 27135 - type: WallSolid - components: - - pos: 98.5,22.5 - parent: 0 - type: Transform -- uid: 27136 - type: WallSolid - components: - - pos: 99.5,22.5 - parent: 0 - type: Transform -- uid: 27137 - type: WallSolid - components: - - pos: 100.5,22.5 - parent: 0 - type: Transform -- uid: 27138 - type: WallSolid - components: - - pos: 101.5,22.5 - parent: 0 - type: Transform -- uid: 27139 - type: WallSolid - components: - - pos: 101.5,21.5 - parent: 0 - type: Transform -- uid: 27140 - type: WallSolid - components: - - pos: 101.5,18.5 - parent: 0 - type: Transform -- uid: 27141 - type: WallSolid - components: - - pos: 101.5,19.5 - parent: 0 - type: Transform -- uid: 27142 - type: WallSolid - components: - - pos: 101.5,17.5 - parent: 0 - type: Transform -- uid: 27143 - type: WallSolid - components: - - pos: 100.5,17.5 - parent: 0 - type: Transform -- uid: 27144 - type: WallSolid - components: - - pos: 99.5,17.5 - parent: 0 - type: Transform -- uid: 27145 - type: WallSolid - components: - - pos: 98.5,17.5 - parent: 0 - type: Transform -- uid: 27146 - type: WallSolid - components: - - pos: 97.5,17.5 - parent: 0 - type: Transform -- uid: 27147 - type: WallSolid - components: - - pos: 96.5,17.5 - parent: 0 - type: Transform -- uid: 27148 - type: WallSolid - components: - - pos: 101.5,24.5 - parent: 0 - type: Transform -- uid: 27149 - type: CableHV - components: - - pos: 102.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27150 - type: CableHV - components: - - pos: 101.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27151 - type: CableHV - components: - - pos: 100.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27152 - type: CableHV - components: - - pos: 99.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27153 - type: CableHV - components: - - pos: 98.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27154 - type: CableHV - components: - - pos: 97.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27155 - type: CableHV - components: - - pos: 96.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27156 - type: CableHV - components: - - pos: 95.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27157 - type: CableHV - components: - - pos: 94.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27158 - type: CableHV - components: - - pos: 93.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27159 - type: CableHV - components: - - pos: 92.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27160 - type: CableHV - components: - - pos: 91.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27161 - type: CableHV - components: - - pos: 90.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27162 - type: CableHV - components: - - pos: 90.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27163 - type: CableHV - components: - - pos: 89.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27164 - type: CableHV - components: - - pos: 88.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27165 - type: CableHV - components: - - pos: 87.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27166 - type: CableHV - components: - - pos: 86.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27167 - type: CableHV - components: - - pos: 85.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27168 - type: CableHV - components: - - pos: 84.5,27.5 - parent: 0 - type: Transform -- uid: 27169 - type: CableHV - components: - - pos: 83.5,27.5 - parent: 0 - type: Transform -- uid: 27170 - type: CableHV - components: - - pos: 82.5,27.5 - parent: 0 - type: Transform -- uid: 27171 - type: CableHV - components: - - pos: 82.5,28.5 - parent: 0 - type: Transform -- uid: 27172 - type: CableHV - components: - - pos: 82.5,29.5 - parent: 0 - type: Transform -- uid: 27173 - type: CableHV - components: - - pos: 81.5,29.5 - parent: 0 - type: Transform -- uid: 27174 - type: CableHV - components: - - pos: 80.5,29.5 - parent: 0 - type: Transform -- uid: 27175 - type: CableHV - components: - - pos: 79.5,29.5 - parent: 0 - type: Transform -- uid: 27176 - type: CableHV - components: - - pos: 78.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27177 - type: CableHV - components: - - pos: 77.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27178 - type: CableHV - components: - - pos: 76.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27179 - type: CableHV - components: - - pos: 75.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27180 - type: CableHV - components: - - pos: 74.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27181 - type: PottedPlantRandom - components: - - pos: 68.5,26.5 - parent: 0 - type: Transform -- uid: 27182 - type: CableHV - components: - - pos: 74.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27183 - type: CableHV - components: - - pos: 74.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27184 - type: CableHV - components: - - pos: 74.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27185 - type: CableHV - components: - - pos: 74.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27186 - type: CableHV - components: - - pos: 73.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27187 - type: CableHV - components: - - pos: 72.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27188 - type: CableHV - components: - - pos: 71.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27189 - type: CableHV - components: - - pos: 70.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27190 - type: CableHV - components: - - pos: 69.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27191 - type: CableHV - components: - - pos: 68.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27192 - type: CableHV - components: - - pos: 67.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27193 - type: CableHV - components: - - pos: 66.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27194 - type: CableHV - components: - - pos: 65.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27195 - type: CableHV - components: - - pos: 64.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27196 - type: CableHV - components: - - pos: 63.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27197 - type: CableHV - components: - - pos: 62.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27198 - type: CableHV - components: - - pos: 61.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27199 - type: CableHV - components: - - pos: 60.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27200 - type: CableHV - components: - - pos: 59.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27201 - type: CableHV - components: - - pos: 58.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27202 - type: CableHV - components: - - pos: 57.5,24.5 - parent: 0 - type: Transform -- uid: 27203 - type: CableHV - components: - - pos: 56.5,24.5 - parent: 0 - type: Transform -- uid: 27204 - type: CableHV - components: - - pos: 55.5,24.5 - parent: 0 - type: Transform -- uid: 27205 - type: CableHV - components: - - pos: 102.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27206 - type: CableHV - components: - - pos: 102.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27207 - type: CableHV - components: - - pos: 102.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27208 - type: CableHV - components: - - pos: 102.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27209 - type: CableHV - components: - - pos: 102.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27210 - type: CableHV - components: - - pos: 102.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27211 - type: CableHV - components: - - pos: 102.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27212 - type: CableHV - components: - - pos: 102.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27213 - type: CableHV - components: - - pos: 102.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27214 - type: CableHV - components: - - pos: 109.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27215 - type: CableHV - components: - - pos: 109.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27216 - type: CableHV - components: - - pos: 109.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27217 - type: CableHV - components: - - pos: 109.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27218 - type: CableHV - components: - - pos: 109.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27219 - type: CableHV - components: - - pos: 108.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27220 - type: CableHV - components: - - pos: 107.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27221 - type: CableHV - components: - - pos: 106.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27222 - type: CableHV - components: - - pos: 105.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27223 - type: CableHV - components: - - pos: 104.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27224 - type: CableHV - components: - - pos: 103.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27225 - type: CableHV - components: - - pos: 90.5,29.5 - parent: 0 - type: Transform -- uid: 27226 - type: CableHV - components: - - pos: 90.5,30.5 - parent: 0 - type: Transform -- uid: 27227 - type: CableHV - components: - - pos: 90.5,32.5 - parent: 0 - type: Transform -- uid: 27228 - type: CableHV - components: - - pos: 89.5,32.5 - parent: 0 - type: Transform -- uid: 27229 - type: CableHV - components: - - pos: 90.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27230 - type: CableHV - components: - - pos: 88.5,32.5 - parent: 0 - type: Transform -- uid: 27231 - type: CableHV - components: - - pos: 87.5,32.5 - parent: 0 - type: Transform -- uid: 27232 - type: CableHV - components: - - pos: 86.5,32.5 - parent: 0 - type: Transform -- uid: 27233 - type: CableHV - components: - - pos: 85.5,32.5 - parent: 0 - type: Transform -- uid: 27234 - type: CableHV - components: - - pos: 84.5,32.5 - parent: 0 - type: Transform -- uid: 27235 - type: CableHV - components: - - pos: 83.5,32.5 - parent: 0 - type: Transform -- uid: 27236 - type: CableHV - components: - - pos: 82.5,32.5 - parent: 0 - type: Transform -- uid: 27237 - type: CableHV - components: - - pos: 82.5,31.5 - parent: 0 - type: Transform -- uid: 27238 - type: CableHV - components: - - pos: 82.5,30.5 - parent: 0 - type: Transform -- uid: 27239 - type: CableHV - components: - - pos: 88.5,33.5 - parent: 0 - type: Transform -- uid: 27240 - type: CableHV - components: - - pos: 88.5,34.5 - parent: 0 - type: Transform -- uid: 27241 - type: CableHV - components: - - pos: 88.5,35.5 - parent: 0 - type: Transform -- uid: 27242 - type: CableHV - components: - - pos: 89.5,35.5 - parent: 0 - type: Transform -- uid: 27243 - type: CableHV - components: - - pos: 90.5,35.5 - parent: 0 - type: Transform -- uid: 27244 - type: CableHV - components: - - pos: 91.5,35.5 - parent: 0 - type: Transform -- uid: 27245 - type: CableHV - components: - - pos: 92.5,35.5 - parent: 0 - type: Transform -- uid: 27246 - type: CableHV - components: - - pos: 93.5,35.5 - parent: 0 - type: Transform -- uid: 27247 - type: CableHV - components: - - pos: 94.5,35.5 - parent: 0 - type: Transform -- uid: 27248 - type: CableHV - components: - - pos: 95.5,35.5 - parent: 0 - type: Transform -- uid: 27249 - type: CableHV - components: - - pos: 96.5,35.5 - parent: 0 - type: Transform -- uid: 27250 - type: CableHV - components: - - pos: 97.5,35.5 - parent: 0 - type: Transform -- uid: 27251 - type: CableHV - components: - - pos: 98.5,35.5 - parent: 0 - type: Transform -- uid: 27252 - type: CableHV - components: - - pos: 99.5,35.5 - parent: 0 - type: Transform -- uid: 27253 - type: CableHV - components: - - pos: 100.5,35.5 - parent: 0 - type: Transform -- uid: 27254 - type: CableHV - components: - - pos: 101.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27255 - type: WallSolid - components: - - pos: 114.5,17.5 - parent: 0 - type: Transform -- uid: 27256 - type: WallSolid - components: - - pos: 112.5,17.5 - parent: 0 - type: Transform -- uid: 27257 - type: WallSolidRust - components: - - pos: 102.5,17.5 - parent: 0 - type: Transform -- uid: 27258 - type: WallSolid - components: - - pos: 109.5,17.5 - parent: 0 - type: Transform -- uid: 27259 - type: WallSolid - components: - - pos: 108.5,17.5 - parent: 0 - type: Transform -- uid: 27260 - type: WallSolid - components: - - pos: 110.5,17.5 - parent: 0 - type: Transform -- uid: 27261 - type: WallSolidRust - components: - - pos: 103.5,17.5 - parent: 0 - type: Transform -- uid: 27262 - type: WallSolid - components: - - pos: 111.5,20.5 - parent: 0 - type: Transform -- uid: 27263 - type: WallSolid - components: - - pos: 113.5,21.5 - parent: 0 - type: Transform -- uid: 27264 - type: WallSolid - components: - - pos: 112.5,21.5 - parent: 0 - type: Transform -- uid: 27265 - type: WallSolid - components: - - pos: 111.5,21.5 - parent: 0 - type: Transform -- uid: 27266 - type: WallSolid - components: - - pos: 110.5,21.5 - parent: 0 - type: Transform -- uid: 27267 - type: WallSolid - components: - - pos: 109.5,21.5 - parent: 0 - type: Transform -- uid: 27268 - type: WallSolid - components: - - pos: 108.5,21.5 - parent: 0 - type: Transform -- uid: 27269 - type: WallSolid - components: - - pos: 107.5,21.5 - parent: 0 - type: Transform -- uid: 27270 - type: WallSolid - components: - - pos: 107.5,20.5 - parent: 0 - type: Transform -- uid: 27271 - type: WallSolid - components: - - pos: 107.5,18.5 - parent: 0 - type: Transform -- uid: 27272 - type: WallSolid - components: - - pos: 107.5,17.5 - parent: 0 - type: Transform -- uid: 27273 - type: WallSolid - components: - - pos: 106.5,17.5 - parent: 0 - type: Transform -- uid: 27274 - type: WallSolid - components: - - pos: 105.5,17.5 - parent: 0 - type: Transform -- uid: 27275 - type: WallSolid - components: - - pos: 104.5,17.5 - parent: 0 - type: Transform -- uid: 27276 - type: WallSolidRust - components: - - pos: 111.5,17.5 - parent: 0 - type: Transform -- uid: 27277 - type: WallSolidRust - components: - - pos: 105.5,15.5 - parent: 0 - type: Transform -- uid: 27278 - type: CableHV - components: - - pos: 102.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27279 - type: CableHV - components: - - pos: 102.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27280 - type: CableHV - components: - - pos: 102.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27281 - type: CableHV - components: - - pos: 102.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27282 - type: CableHV - components: - - pos: 102.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27283 - type: CableHV - components: - - pos: 102.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27284 - type: CableHV - components: - - pos: 102.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27285 - type: CableHV - components: - - pos: 103.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27286 - type: CableHV - components: - - pos: 104.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27287 - type: CableHV - components: - - pos: 105.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27288 - type: CableHV - components: - - pos: 106.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27289 - type: CableHV - components: - - pos: 107.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27290 - type: CableHV - components: - - pos: 108.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27291 - type: CableHV - components: - - pos: 109.5,19.5 - parent: 0 - type: Transform -- uid: 27292 - type: CableHV - components: - - pos: 110.5,19.5 - parent: 0 - type: Transform -- uid: 27293 - type: CableHV - components: - - pos: 111.5,19.5 - parent: 0 - type: Transform -- uid: 27294 - type: CableHV - components: - - pos: 112.5,19.5 - parent: 0 - type: Transform -- uid: 27295 - type: CableHV - components: - - pos: 113.5,19.5 - parent: 0 - type: Transform -- uid: 27296 - type: CableHV - components: - - pos: 113.5,18.5 - parent: 0 - type: Transform -- uid: 27297 - type: CableHV - components: - - pos: 113.5,17.5 - parent: 0 - type: Transform -- uid: 27298 - type: CableHV - components: - - pos: 113.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27299 - type: CableHV - components: - - pos: 113.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27300 - type: CableHV - components: - - pos: 113.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27301 - type: CableHV - components: - - pos: 113.5,13.5 - parent: 0 - type: Transform -- uid: 27302 - type: CableHV - components: - - pos: 113.5,12.5 - parent: 0 - type: Transform -- uid: 27303 - type: CableHV - components: - - pos: 113.5,11.5 - parent: 0 - type: Transform -- uid: 27304 - type: CableHV - components: - - pos: 113.5,10.5 - parent: 0 - type: Transform -- uid: 27305 - type: CableHV - components: - - pos: 113.5,9.5 - parent: 0 - type: Transform -- uid: 27306 - type: CableHV - components: - - pos: 98.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27307 - type: CableHV - components: - - pos: 98.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27308 - type: CableHV - components: - - pos: 98.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27309 - type: CableHV - components: - - pos: 98.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27310 - type: CableHV - components: - - pos: 97.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27311 - type: CableHV - components: - - pos: 96.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27312 - type: CableHV - components: - - pos: 95.5,14.5 - parent: 0 - type: Transform -- uid: 27313 - type: CableHV - components: - - pos: 94.5,14.5 - parent: 0 - type: Transform -- uid: 27314 - type: CableHV - components: - - pos: 93.5,14.5 - parent: 0 - type: Transform -- uid: 27315 - type: CableHV - components: - - pos: 92.5,14.5 - parent: 0 - type: Transform -- uid: 27316 - type: CableHV - components: - - pos: 91.5,14.5 - parent: 0 - type: Transform -- uid: 27317 - type: CableHV - components: - - pos: 90.5,14.5 - parent: 0 - type: Transform -- uid: 27318 - type: CableHV - components: - - pos: 89.5,14.5 - parent: 0 - type: Transform -- uid: 27319 - type: CableHV - components: - - pos: 88.5,14.5 - parent: 0 - type: Transform -- uid: 27320 - type: CableHV - components: - - pos: 87.5,14.5 - parent: 0 - type: Transform -- uid: 27321 - type: CableHV - components: - - pos: 86.5,14.5 - parent: 0 - type: Transform -- uid: 27322 - type: CableHV - components: - - pos: 85.5,14.5 - parent: 0 - type: Transform -- uid: 27323 - type: CableHV - components: - - pos: 84.5,14.5 - parent: 0 - type: Transform -- uid: 27324 - type: CableHV - components: - - pos: 83.5,14.5 - parent: 0 - type: Transform -- uid: 27325 - type: CableHV - components: - - pos: 82.5,14.5 - parent: 0 - type: Transform -- uid: 27326 - type: CableHV - components: - - pos: 81.5,14.5 - parent: 0 - type: Transform -- uid: 27327 - type: CableHV - components: - - pos: 80.5,14.5 - parent: 0 - type: Transform -- uid: 27328 - type: CableHV - components: - - pos: 79.5,14.5 - parent: 0 - type: Transform -- uid: 27329 - type: CableHV - components: - - pos: 78.5,14.5 - parent: 0 - type: Transform -- uid: 27330 - type: CableHV - components: - - pos: 77.5,14.5 - parent: 0 - type: Transform -- uid: 27331 - type: CableHV - components: - - pos: 76.5,14.5 - parent: 0 - type: Transform -- uid: 27332 - type: CableHV - components: - - pos: 75.5,14.5 - parent: 0 - type: Transform -- uid: 27333 - type: CableHV - components: - - pos: 74.5,14.5 - parent: 0 - type: Transform -- uid: 27334 - type: CableHV - components: - - pos: 73.5,14.5 - parent: 0 - type: Transform -- uid: 27335 - type: CableHV - components: - - pos: 72.5,14.5 - parent: 0 - type: Transform -- uid: 27336 - type: CableHV - components: - - pos: 71.5,14.5 - parent: 0 - type: Transform -- uid: 27337 - type: CableHV - components: - - pos: 70.5,14.5 - parent: 0 - type: Transform -- uid: 27338 - type: CableHV - components: - - pos: 69.5,14.5 - parent: 0 - type: Transform -- uid: 27339 - type: CableHV - components: - - pos: 68.5,14.5 - parent: 0 - type: Transform -- uid: 27340 - type: CableHV - components: - - pos: 67.5,14.5 - parent: 0 - type: Transform -- uid: 27341 - type: CableHV - components: - - pos: 66.5,14.5 - parent: 0 - type: Transform -- uid: 27342 - type: CableHV - components: - - pos: 65.5,14.5 - parent: 0 - type: Transform -- uid: 27343 - type: CableHV - components: - - pos: 64.5,14.5 - parent: 0 - type: Transform -- uid: 27344 - type: CableHV - components: - - pos: 64.5,13.5 - parent: 0 - type: Transform -- uid: 27345 - type: CableHV - components: - - pos: 64.5,12.5 - parent: 0 - type: Transform -- uid: 27346 - type: CableHV - components: - - pos: 64.5,11.5 - parent: 0 - type: Transform -- uid: 27347 - type: CableHV - components: - - pos: 82.5,15.5 - parent: 0 - type: Transform -- uid: 27348 - type: CableHV - components: - - pos: 82.5,16.5 - parent: 0 - type: Transform -- uid: 27349 - type: CableHV - components: - - pos: 82.5,17.5 - parent: 0 - type: Transform -- uid: 27350 - type: CableHV - components: - - pos: 82.5,18.5 - parent: 0 - type: Transform -- uid: 27351 - type: CableHV - components: - - pos: 82.5,19.5 - parent: 0 - type: Transform -- uid: 27352 - type: CableHV - components: - - pos: 82.5,20.5 - parent: 0 - type: Transform -- uid: 27353 - type: CableHV - components: - - pos: 82.5,21.5 - parent: 0 - type: Transform -- uid: 27354 - type: CableHV - components: - - pos: 82.5,22.5 - parent: 0 - type: Transform -- uid: 27355 - type: CableHV - components: - - pos: 82.5,23.5 - parent: 0 - type: Transform -- uid: 27356 - type: CableHV - components: - - pos: 82.5,24.5 - parent: 0 - type: Transform -- uid: 27357 - type: CableHV - components: - - pos: 82.5,25.5 - parent: 0 - type: Transform -- uid: 27358 - type: CableHV - components: - - pos: 82.5,26.5 - parent: 0 - type: Transform -- uid: 27359 - type: WallReinforced - components: - - pos: 109.5,12.5 - parent: 0 - type: Transform -- uid: 27360 - type: WallReinforced - components: - - pos: 109.5,13.5 - parent: 0 - type: Transform -- uid: 27361 - type: WallReinforced - components: - - pos: 108.5,13.5 - parent: 0 - type: Transform -- uid: 27362 - type: WallReinforced - components: - - pos: 107.5,13.5 - parent: 0 - type: Transform -- uid: 27363 - type: WallReinforced - components: - - pos: 106.5,13.5 - parent: 0 - type: Transform -- uid: 27364 - type: WallReinforced - components: - - pos: 106.5,9.5 - parent: 0 - type: Transform -- uid: 27365 - type: WallReinforced - components: - - pos: 105.5,9.5 - parent: 0 - type: Transform -- uid: 27366 - type: WallReinforced - components: - - pos: 105.5,10.5 - parent: 0 - type: Transform -- uid: 27367 - type: WallReinforced - components: - - pos: 105.5,13.5 - parent: 0 - type: Transform -- uid: 27368 - type: WallReinforced - components: - - pos: 105.5,12.5 - parent: 0 - type: Transform -- uid: 27369 - type: WallReinforced - components: - - pos: 105.5,11.5 - parent: 0 - type: Transform -- uid: 27370 - type: CableHV - components: - - pos: 107.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27371 - type: CableHV - components: - - pos: 107.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27372 - type: CableHV - components: - - pos: 107.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27373 - type: CableHV - components: - - pos: 107.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27374 - type: AirlockEngineeringLocked - components: - - pos: 107.5,9.5 - parent: 0 - type: Transform -- uid: 27375 - type: APCBasic - components: - - pos: 121.5,-4.5 - parent: 0 - type: Transform -- uid: 27376 - type: APCBasic - components: - - pos: 123.5,4.5 - parent: 0 - type: Transform -- uid: 27377 - type: APCBasic - components: - - pos: 115.5,13.5 - parent: 0 - type: Transform -- uid: 27378 - type: CableMV - components: - - pos: 107.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27379 - type: CableMV - components: - - pos: 107.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27380 - type: CableMV - components: - - pos: 107.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27381 - type: CableMV - components: - - pos: 107.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27382 - type: CableMV - components: - - pos: 107.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27383 - type: CableMV - components: - - pos: 108.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27384 - type: CableMV - components: - - pos: 109.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27385 - type: CableMV - components: - - pos: 110.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27386 - type: CableMV - components: - - pos: 111.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27387 - type: CableMV - components: - - pos: 112.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27388 - type: CableMV - components: - - pos: 113.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27389 - type: CableMV - components: - - pos: 113.5,9.5 - parent: 0 - type: Transform -- uid: 27390 - type: CableMV - components: - - pos: 113.5,10.5 - parent: 0 - type: Transform -- uid: 27391 - type: CableMV - components: - - pos: 113.5,11.5 - parent: 0 - type: Transform -- uid: 27392 - type: CableMV - components: - - pos: 114.5,11.5 - parent: 0 - type: Transform -- uid: 27393 - type: CableMV - components: - - pos: 115.5,11.5 - parent: 0 - type: Transform -- uid: 27394 - type: CableMV - components: - - pos: 115.5,12.5 - parent: 0 - type: Transform -- uid: 27395 - type: CableMV - components: - - pos: 115.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27396 - type: CableMV - components: - - pos: 114.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27397 - type: CableMV - components: - - pos: 114.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27398 - type: CableMV - components: - - pos: 114.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27399 - type: CableMV - components: - - pos: 115.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27400 - type: CableMV - components: - - pos: 116.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27401 - type: CableMV - components: - - pos: 117.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27402 - type: CableMV - components: - - pos: 118.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27403 - type: CableMV - components: - - pos: 119.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27404 - type: CableMV - components: - - pos: 119.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27405 - type: CableMV - components: - - pos: 119.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27406 - type: CableMV - components: - - pos: 119.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27407 - type: CableMV - components: - - pos: 119.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27408 - type: CableMV - components: - - pos: 119.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27409 - type: CableMV - components: - - pos: 119.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27410 - type: CableMV - components: - - pos: 119.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27411 - type: CableMV - components: - - pos: 119.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27412 - type: CableMV - components: - - pos: 120.5,1.5 - parent: 0 - type: Transform -- uid: 27413 - type: CableMV - components: - - pos: 121.5,1.5 - parent: 0 - type: Transform -- uid: 27414 - type: CableMV - components: - - pos: 122.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27415 - type: CableMV - components: - - pos: 123.5,1.5 - parent: 0 - type: Transform -- uid: 27416 - type: CableMV - components: - - pos: 123.5,2.5 - parent: 0 - type: Transform -- uid: 27417 - type: CableMV - components: - - pos: 123.5,3.5 - parent: 0 - type: Transform -- uid: 27418 - type: CableMV - components: - - pos: 123.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27419 - type: CableMV - components: - - pos: 119.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27420 - type: CableMV - components: - - pos: 119.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27421 - type: CableMV - components: - - pos: 119.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27422 - type: CableMV - components: - - pos: 119.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27423 - type: CableMV - components: - - pos: 119.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27424 - type: CableMV - components: - - pos: 119.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27425 - type: CableMV - components: - - pos: 120.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27426 - type: CableMV - components: - - pos: 121.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27427 - type: CableMV - components: - - pos: 121.5,-6.5 - parent: 0 - type: Transform -- uid: 27428 - type: CableMV - components: - - pos: 121.5,-5.5 - parent: 0 - type: Transform -- uid: 27429 - type: CableMV - components: - - pos: 121.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27430 - type: CableApcExtension - components: - - pos: 121.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27431 - type: CableApcExtension - components: - - pos: 121.5,-5.5 - parent: 0 - type: Transform -- uid: 27432 - type: CableApcExtension - components: - - pos: 122.5,-5.5 - parent: 0 - type: Transform -- uid: 27433 - type: CableApcExtension - components: - - pos: 123.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27434 - type: CableApcExtension - components: - - pos: 124.5,-5.5 - parent: 0 - type: Transform -- uid: 27435 - type: CableApcExtension - components: - - pos: 124.5,-6.5 - parent: 0 - type: Transform -- uid: 27436 - type: CableApcExtension - components: - - pos: 124.5,-7.5 - parent: 0 - type: Transform -- uid: 27437 - type: CableApcExtension - components: - - pos: 124.5,-4.5 - parent: 0 - type: Transform -- uid: 27438 - type: CableApcExtension - components: - - pos: 124.5,-3.5 - parent: 0 - type: Transform -- uid: 27439 - type: CableApcExtension - components: - - pos: 125.5,-3.5 - parent: 0 - type: Transform -- uid: 27440 - type: CableApcExtension - components: - - pos: 126.5,-3.5 - parent: 0 - type: Transform -- uid: 27441 - type: CableApcExtension - components: - - pos: 127.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27442 - type: CableApcExtension - components: - - pos: 124.5,-2.5 - parent: 0 - type: Transform -- uid: 27443 - type: CableApcExtension - components: - - pos: 124.5,-1.5 - parent: 0 - type: Transform -- uid: 27444 - type: CableApcExtension - components: - - pos: 125.5,-7.5 - parent: 0 - type: Transform -- uid: 27445 - type: CableApcExtension - components: - - pos: 123.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27446 - type: CableApcExtension - components: - - pos: 122.5,4.5 - parent: 0 - type: Transform -- uid: 27447 - type: CableApcExtension - components: - - pos: 122.5,5.5 - parent: 0 - type: Transform -- uid: 27448 - type: CableApcExtension - components: - - pos: 122.5,6.5 - parent: 0 - type: Transform -- uid: 27449 - type: CableApcExtension - components: - - pos: 123.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27450 - type: CableApcExtension - components: - - pos: 125.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27451 - type: CableApcExtension - components: - - pos: 125.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27452 - type: CableApcExtension - components: - - pos: 124.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27453 - type: CableApcExtension - components: - - pos: 123.5,2.5 - parent: 0 - type: Transform -- uid: 27454 - type: CableApcExtension - components: - - pos: 123.5,3.5 - parent: 0 - type: Transform -- uid: 27455 - type: CableApcExtension - components: - - pos: 124.5,1.5 - parent: 0 - type: Transform -- uid: 27456 - type: CableApcExtension - components: - - pos: 123.5,1.5 - parent: 0 - type: Transform -- uid: 27457 - type: CableApcExtension - components: - - pos: 125.5,1.5 - parent: 0 - type: Transform -- uid: 27458 - type: CableApcExtension - components: - - pos: 126.5,1.5 - parent: 0 - type: Transform -- uid: 27459 - type: CableApcExtension - components: - - pos: 122.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27460 - type: CableApcExtension - components: - - pos: 121.5,1.5 - parent: 0 - type: Transform -- uid: 27461 - type: CableApcExtension - components: - - pos: 115.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27462 - type: CableApcExtension - components: - - pos: 115.5,12.5 - parent: 0 - type: Transform -- uid: 27463 - type: CableApcExtension - components: - - pos: 115.5,11.5 - parent: 0 - type: Transform -- uid: 27464 - type: CableApcExtension - components: - - pos: 116.5,11.5 - parent: 0 - type: Transform -- uid: 27465 - type: CableApcExtension - components: - - pos: 117.5,11.5 - parent: 0 - type: Transform -- uid: 27466 - type: CableApcExtension - components: - - pos: 118.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27467 - type: CableApcExtension - components: - - pos: 119.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27468 - type: CableApcExtension - components: - - pos: 120.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27469 - type: CableApcExtension - components: - - pos: 121.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27470 - type: CableApcExtension - components: - - pos: 114.5,11.5 - parent: 0 - type: Transform -- uid: 27471 - type: CableApcExtension - components: - - pos: 113.5,11.5 - parent: 0 - type: Transform -- uid: 27472 - type: CableApcExtension - components: - - pos: 112.5,11.5 - parent: 0 - type: Transform -- uid: 27473 - type: CableApcExtension - components: - - pos: 111.5,11.5 - parent: 0 - type: Transform -- uid: 27474 - type: CableApcExtension - components: - - pos: 113.5,10.5 - parent: 0 - type: Transform -- uid: 27475 - type: CableApcExtension - components: - - pos: 113.5,9.5 - parent: 0 - type: Transform -- uid: 27476 - type: CableApcExtension - components: - - pos: 113.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27477 - type: CableApcExtension - components: - - pos: 112.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27478 - type: CableApcExtension - components: - - pos: 111.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27479 - type: CableApcExtension - components: - - pos: 110.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27480 - type: CableApcExtension - components: - - pos: 109.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27481 - type: CableApcExtension - components: - - pos: 108.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27482 - type: CableApcExtension - components: - - pos: 107.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27483 - type: CableApcExtension - components: - - pos: 107.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27484 - type: CableApcExtension - components: - - pos: 107.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27485 - type: CableApcExtension - components: - - pos: 107.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27486 - type: CableApcExtension - components: - - pos: 114.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27487 - type: CableApcExtension - components: - - pos: 114.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27488 - type: CableApcExtension - components: - - pos: 114.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27489 - type: CableApcExtension - components: - - pos: 115.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27490 - type: CableApcExtension - components: - - pos: 116.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27491 - type: CableApcExtension - components: - - pos: 117.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27492 - type: CableApcExtension - components: - - pos: 120.5,1.5 - parent: 0 - type: Transform -- uid: 27493 - type: CableApcExtension - components: - - pos: 119.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27494 - type: CableApcExtension - components: - - pos: 119.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27495 - type: CableApcExtension - components: - - pos: 119.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27496 - type: CableApcExtension - components: - - pos: 119.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27497 - type: CableApcExtension - components: - - pos: 119.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27498 - type: CableApcExtension - components: - - pos: 119.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27499 - type: CableApcExtension - components: - - pos: 119.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27500 - type: CableApcExtension - components: - - pos: 119.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27501 - type: CableApcExtension - components: - - pos: 121.5,-6.5 - parent: 0 - type: Transform -- uid: 27502 - type: CableApcExtension - components: - - pos: 121.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27503 - type: CableApcExtension - components: - - pos: 120.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27504 - type: CableApcExtension - components: - - pos: 119.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27505 - type: CableApcExtension - components: - - pos: 119.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27506 - type: CableApcExtension - components: - - pos: 119.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27507 - type: CableApcExtension - components: - - pos: 118.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27508 - type: CableApcExtension - components: - - pos: 119.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27509 - type: CableApcExtension - components: - - pos: 117.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27510 - type: CableApcExtension - components: - - pos: 117.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27511 - type: CableApcExtension - components: - - pos: 117.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27512 - type: CableApcExtension - components: - - pos: 117.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27513 - type: CableApcExtension - components: - - pos: 117.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27514 - type: CableApcExtension - components: - - pos: 119.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27515 - type: CableApcExtension - components: - - pos: 119.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27516 - type: CableApcExtension - components: - - pos: 119.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27517 - type: CableApcExtension - components: - - pos: 119.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27518 - type: CableApcExtension - components: - - pos: 119.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27519 - type: CableHV - components: - - pos: 118.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27520 - type: CableApcExtension - components: - - pos: 118.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27521 - type: CableHV - components: - - pos: 118.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27522 - type: CableHV - components: - - pos: 118.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27523 - type: WallSolid - components: - - pos: 119.5,-15.5 - parent: 0 - type: Transform -- uid: 27524 - type: WallSolidRust - components: - - pos: 119.5,-17.5 - parent: 0 - type: Transform -- uid: 27525 - type: CableTerminal - components: - - pos: 90.5,30.5 - parent: 0 - type: Transform -- uid: 27526 - type: CableHV - components: - - pos: 91.5,29.5 - parent: 0 - type: Transform -- uid: 27527 - type: CableHV - components: - - pos: 92.5,29.5 - parent: 0 - type: Transform -- uid: 27528 - type: CableHV - components: - - pos: 93.5,29.5 - parent: 0 - type: Transform -- uid: 27529 - type: CableHV - components: - - pos: 94.5,29.5 - parent: 0 - type: Transform -- uid: 27530 - type: CableHV - components: - - pos: 95.5,29.5 - parent: 0 - type: Transform -- uid: 27531 - type: CableHV - components: - - pos: 96.5,29.5 - parent: 0 - type: Transform -- uid: 27532 - type: CableHV - components: - - pos: 97.5,29.5 - parent: 0 - type: Transform -- uid: 27533 - type: CableHV - components: - - pos: 98.5,29.5 - parent: 0 - type: Transform -- uid: 27534 - type: CableHV - components: - - pos: 99.5,29.5 - parent: 0 - type: Transform -- uid: 27535 - type: CableHV - components: - - pos: 99.5,30.5 - parent: 0 - type: Transform -- uid: 27536 - type: CableHV - components: - - pos: 99.5,31.5 - parent: 0 - type: Transform -- uid: 27537 - type: CableHV - components: - - pos: 100.5,31.5 - parent: 0 - type: Transform -- uid: 27538 - type: SMESBasic - components: - - pos: 90.5,29.5 - parent: 0 - type: Transform -- uid: 27539 - type: SubstationBasic - components: - - name: Telecomms Sub - type: MetaData - - pos: 100.5,31.5 - parent: 0 - type: Transform -- uid: 27540 - type: APCBasic - components: - - pos: 91.5,31.5 - parent: 0 - type: Transform -- uid: 27541 - type: CableMV - components: - - pos: 91.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27542 - type: CableMV - components: - - pos: 91.5,30.5 - parent: 0 - type: Transform -- uid: 27543 - type: CableMV - components: - - pos: 91.5,29.5 - parent: 0 - type: Transform -- uid: 27544 - type: CableMV - components: - - pos: 92.5,29.5 - parent: 0 - type: Transform -- uid: 27545 - type: CableMV - components: - - pos: 93.5,29.5 - parent: 0 - type: Transform -- uid: 27546 - type: CableMV - components: - - pos: 94.5,29.5 - parent: 0 - type: Transform -- uid: 27547 - type: CableMV - components: - - pos: 95.5,29.5 - parent: 0 - type: Transform -- uid: 27548 - type: CableMV - components: - - pos: 96.5,29.5 - parent: 0 - type: Transform -- uid: 27549 - type: CableMV - components: - - pos: 97.5,29.5 - parent: 0 - type: Transform -- uid: 27550 - type: CableMV - components: - - pos: 98.5,29.5 - parent: 0 - type: Transform -- uid: 27551 - type: CableMV - components: - - pos: 99.5,29.5 - parent: 0 - type: Transform -- uid: 27552 - type: CableMV - components: - - pos: 99.5,30.5 - parent: 0 - type: Transform -- uid: 27553 - type: CableMV - components: - - pos: 99.5,31.5 - parent: 0 - type: Transform -- uid: 27554 - type: CableMV - components: - - pos: 100.5,31.5 - parent: 0 - type: Transform -- uid: 27555 - type: CableApcExtension - components: - - pos: 91.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27556 - type: CableApcExtension - components: - - pos: 91.5,30.5 - parent: 0 - type: Transform -- uid: 27557 - type: CableApcExtension - components: - - pos: 91.5,29.5 - parent: 0 - type: Transform -- uid: 27558 - type: CableApcExtension - components: - - pos: 92.5,29.5 - parent: 0 - type: Transform -- uid: 27559 - type: CableApcExtension - components: - - pos: 93.5,29.5 - parent: 0 - type: Transform -- uid: 27560 - type: CableApcExtension - components: - - pos: 94.5,29.5 - parent: 0 - type: Transform -- uid: 27561 - type: CableApcExtension - components: - - pos: 95.5,29.5 - parent: 0 - type: Transform -- uid: 27562 - type: CableApcExtension - components: - - pos: 96.5,29.5 - parent: 0 - type: Transform -- uid: 27563 - type: CableApcExtension - components: - - pos: 97.5,29.5 - parent: 0 - type: Transform -- uid: 27564 - type: CableApcExtension - components: - - pos: 98.5,29.5 - parent: 0 - type: Transform -- uid: 27565 - type: CableApcExtension - components: - - pos: 99.5,29.5 - parent: 0 - type: Transform -- uid: 27566 - type: CableApcExtension - components: - - pos: 99.5,30.5 - parent: 0 - type: Transform -- uid: 27567 - type: CableApcExtension - components: - - pos: 99.5,31.5 - parent: 0 - type: Transform -- uid: 27568 - type: CableApcExtension - components: - - pos: 99.5,32.5 - parent: 0 - type: Transform -- uid: 27569 - type: CableApcExtension - components: - - pos: 98.5,32.5 - parent: 0 - type: Transform -- uid: 27570 - type: CableApcExtension - components: - - pos: 97.5,32.5 - parent: 0 - type: Transform -- uid: 27571 - type: CableApcExtension - components: - - pos: 96.5,32.5 - parent: 0 - type: Transform -- uid: 27572 - type: CableApcExtension - components: - - pos: 95.5,32.5 - parent: 0 - type: Transform -- uid: 27573 - type: CableApcExtension - components: - - pos: 94.5,32.5 - parent: 0 - type: Transform -- uid: 27574 - type: CableApcExtension - components: - - pos: 93.5,32.5 - parent: 0 - type: Transform -- uid: 27575 - type: CableApcExtension - components: - - pos: 92.5,32.5 - parent: 0 - type: Transform -- uid: 27576 - type: CableApcExtension - components: - - pos: 92.5,31.5 - parent: 0 - type: Transform -- uid: 27577 - type: CableApcExtension - components: - - pos: 93.5,33.5 - parent: 0 - type: Transform -- uid: 27578 - type: CableApcExtension - components: - - pos: 93.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27579 - type: CableApcExtension - components: - - pos: 97.5,33.5 - parent: 0 - type: Transform -- uid: 27580 - type: CableApcExtension - components: - - pos: 97.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27581 - type: CableApcExtension - components: - - pos: 96.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27582 - type: CableApcExtension - components: - - pos: 98.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27583 - type: CableHV - components: - - pos: 87.5,35.5 - parent: 0 - type: Transform -- uid: 27584 - type: CableHV - components: - - pos: 87.5,36.5 - parent: 0 - type: Transform -- uid: 27585 - type: CableHV - components: - - pos: 87.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27586 - type: CableHV - components: - - pos: 94.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27587 - type: CableHV - components: - - pos: 88.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27588 - type: CableHV - components: - - pos: 86.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27589 - type: CableHV - components: - - pos: 88.5,30.5 - parent: 0 - type: Transform -- uid: 27590 - type: CableHV - components: - - pos: 89.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27591 - type: Grille - components: - - pos: 89.5,29.5 - parent: 0 - type: Transform -- uid: 27592 - type: CableMV - components: - - pos: 89.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27593 - type: CableMV - components: - - pos: 90.5,30.5 - parent: 0 - type: Transform -- uid: 27594 - type: CableMV - components: - - pos: 89.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27595 - type: Grille - components: - - pos: 89.5,30.5 - parent: 0 - type: Transform -- uid: 27596 - type: Grille - components: - - pos: 90.5,31.5 - parent: 0 - type: Transform -- uid: 27597 - type: Grille - components: - - pos: 88.5,31.5 - parent: 0 - type: Transform -- uid: 27598 - type: Grille - components: - - pos: 86.5,31.5 - parent: 0 - type: Transform -- uid: 27599 - type: Grille - components: - - pos: 87.5,37.5 - parent: 0 - type: Transform -- uid: 27600 - type: Grille - components: - - pos: 94.5,36.5 - parent: 0 - type: Transform -- uid: 27601 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 85.5,34.5 - parent: 0 - type: Transform -- uid: 27602 - type: CableMV - components: - - pos: 88.5,30.5 - parent: 0 - type: Transform -- uid: 27603 - type: CableMV - components: - - pos: 87.5,30.5 - parent: 0 - type: Transform -- uid: 27604 - type: CableMV - components: - - pos: 87.5,31.5 - parent: 0 - type: Transform -- uid: 27605 - type: CableMV - components: - - pos: 87.5,32.5 - parent: 0 - type: Transform -- uid: 27606 - type: CableMV - components: - - pos: 87.5,33.5 - parent: 0 - type: Transform -- uid: 27607 - type: CableMV - components: - - pos: 87.5,34.5 - parent: 0 - type: Transform -- uid: 27608 - type: CableMV - components: - - pos: 86.5,34.5 - parent: 0 - type: Transform -- uid: 27609 - type: CableMV - components: - - pos: 85.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27610 - type: CableApcExtension - components: - - pos: 85.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27611 - type: CableApcExtension - components: - - pos: 86.5,34.5 - parent: 0 - type: Transform -- uid: 27612 - type: CableApcExtension - components: - - pos: 87.5,34.5 - parent: 0 - type: Transform -- uid: 27613 - type: CableApcExtension - components: - - pos: 87.5,33.5 - parent: 0 - type: Transform -- uid: 27614 - type: CableApcExtension - components: - - pos: 87.5,32.5 - parent: 0 - type: Transform -- uid: 27615 - type: CableApcExtension - components: - - pos: 87.5,31.5 - parent: 0 - type: Transform -- uid: 27616 - type: CableApcExtension - components: - - pos: 87.5,30.5 - parent: 0 - type: Transform -- uid: 27617 - type: CableApcExtension - components: - - pos: 87.5,29.5 - parent: 0 - type: Transform -- uid: 27618 - type: CableApcExtension - components: - - pos: 87.5,35.5 - parent: 0 - type: Transform -- uid: 27619 - type: CableApcExtension - components: - - pos: 88.5,35.5 - parent: 0 - type: Transform -- uid: 27620 - type: CableApcExtension - components: - - pos: 89.5,35.5 - parent: 0 - type: Transform -- uid: 27621 - type: CableApcExtension - components: - - pos: 90.5,35.5 - parent: 0 - type: Transform -- uid: 27622 - type: CableApcExtension - components: - - pos: 91.5,35.5 - parent: 0 - type: Transform -- uid: 27623 - type: CableApcExtension - components: - - pos: 92.5,35.5 - parent: 0 - type: Transform -- uid: 27624 - type: CableApcExtension - components: - - pos: 92.5,36.5 - parent: 0 - type: Transform -- uid: 27625 - type: CableApcExtension - components: - - pos: 93.5,36.5 - parent: 0 - type: Transform -- uid: 27626 - type: CableApcExtension - components: - - pos: 94.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27627 - type: CableApcExtension - components: - - pos: 96.5,36.5 - parent: 0 - type: Transform -- uid: 27628 - type: CableApcExtension - components: - - pos: 95.5,36.5 - parent: 0 - type: Transform -- uid: 27629 - type: CableApcExtension - components: - - pos: 97.5,36.5 - parent: 0 - type: Transform -- uid: 27630 - type: CableApcExtension - components: - - pos: 98.5,36.5 - parent: 0 - type: Transform -- uid: 27631 - type: Grille - components: - - pos: 93.5,34.5 - parent: 0 - type: Transform -- uid: 27632 - type: Grille - components: - - pos: 96.5,34.5 - parent: 0 - type: Transform -- uid: 27633 - type: Grille - components: - - pos: 97.5,34.5 - parent: 0 - type: Transform -- uid: 27634 - type: Grille - components: - - pos: 98.5,34.5 - parent: 0 - type: Transform -- uid: 27635 - type: GasPipeBend - components: - - pos: 102.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27636 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 102.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27637 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 102.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27638 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 102.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27639 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 102.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27640 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 102.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27641 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 101.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27642 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 100.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27643 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 99.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27644 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 101.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27645 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 100.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27646 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 99.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27647 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 98.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27648 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 97.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27649 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 98.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27650 - type: GasPipeStraight - components: - - pos: 87.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27651 - type: GasPipeStraight - components: - - pos: 87.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27652 - type: GasPipeStraight - components: - - pos: 87.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27653 - type: GasPipeStraight - components: - - pos: 87.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27654 - type: GasPipeStraight - components: - - pos: 87.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27655 - type: GasPipeStraight - components: - - pos: 87.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27656 - type: GasPipeFourway - components: - - pos: 87.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27657 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 87.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27658 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 87.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27659 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 86.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27660 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 87.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27661 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 84.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27662 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 85.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27663 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 86.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27664 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 87.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27665 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 88.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27666 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 88.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27667 - type: GasPipeStraight - components: - - pos: 88.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27668 - type: GasPipeStraight - components: - - pos: 88.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27669 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 89.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27670 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 90.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27671 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 91.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27672 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 92.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27673 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 93.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27674 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 94.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27675 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 95.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27676 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 96.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27677 - type: GasVentScrubber - components: - - pos: 88.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27678 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 88.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27679 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 88.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27680 - type: AirSensor - components: - - pos: 86.5,36.5 - parent: 0 - type: Transform -- uid: 27681 - type: AirSensor - components: - - pos: 97.5,35.5 - parent: 0 - type: Transform -- uid: 27682 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 89.5,34.5 - parent: 0 - type: Transform - - devices: - - 27680 - - 21542 - - 21541 - type: DeviceList -- uid: 27683 - type: FireAlarm - components: - - pos: 97.5,37.5 - parent: 0 - type: Transform - - devices: - - 21544 - - 21543 - - 27681 - type: DeviceList -- uid: 27684 - type: AirAlarm - components: - - pos: 88.5,37.5 - parent: 0 - type: Transform - - devices: - - 27680 - - 21542 - - 21541 - - 27659 - - 27677 - type: DeviceList -- uid: 27685 - type: AirAlarm - components: - - pos: 96.5,37.5 - parent: 0 - type: Transform - - devices: - - 21544 - - 21543 - - 27681 - - 27649 - - 27676 - type: DeviceList -- uid: 27686 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 87.5,28.5 - parent: 0 - type: Transform - - devices: - - 27679 - - 27660 - type: DeviceList -- uid: 27687 - type: AirlockEngineeringLocked - components: - - pos: 100.5,35.5 - parent: 0 - type: Transform -- uid: 27688 - type: AirlockEngineeringLocked - components: - - pos: 84.5,32.5 - parent: 0 - type: Transform -- uid: 27689 - type: AirlockEngineeringLocked - components: - - pos: 89.5,35.5 - parent: 0 - type: Transform -- uid: 27690 - type: AirlockEngineeringGlassLocked - components: - - pos: 94.5,35.5 - parent: 0 - type: Transform -- uid: 27691 - type: AirlockEngineeringGlassLocked - components: - - pos: 91.5,32.5 - parent: 0 - type: Transform -- uid: 27692 - type: AirlockEngineeringGlassLocked - components: - - pos: 89.5,32.5 - parent: 0 - type: Transform -- uid: 27693 - type: AirlockCommandGlassLocked - components: - - pos: 87.5,31.5 - parent: 0 - type: Transform -- uid: 27694 - type: MountainRock - components: - - pos: 85.5,35.5 - parent: 0 - type: Transform -- uid: 27695 - type: MountainRock - components: - - pos: 85.5,36.5 - parent: 0 - type: Transform -- uid: 27696 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 86.5,35.5 - parent: 0 - type: Transform -- uid: 27697 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 86.5,36.5 - parent: 0 - type: Transform -- uid: 27698 - type: RailingCornerSmall - components: - - pos: 86.5,34.5 - parent: 0 - type: Transform -- uid: 27699 - type: Table - components: - - pos: 99.5,36.5 - parent: 0 - type: Transform -- uid: 27700 - type: Table - components: - - pos: 98.5,36.5 - parent: 0 - type: Transform -- uid: 27701 - type: Table - components: - - pos: 96.5,36.5 - parent: 0 - type: Transform -- uid: 27702 - type: Table - components: - - pos: 95.5,36.5 - parent: 0 - type: Transform -- uid: 27703 - type: Table - components: - - pos: 92.5,36.5 - parent: 0 - type: Transform -- uid: 27704 - type: Table - components: - - pos: 88.5,36.5 - parent: 0 - type: Transform -- uid: 27705 - type: Table - components: - - pos: 87.5,36.5 - parent: 0 - type: Transform -- uid: 27706 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: 85.5,29.5 - parent: 0 - type: Transform -- uid: 27707 - type: SignTelecomms - components: - - pos: 84.5,33.5 - parent: 0 - type: Transform -- uid: 27708 - type: filingCabinetRandom - components: - - pos: 86.5,36.5 - parent: 0 - type: Transform -- uid: 27709 - type: DisposalUnit - components: - - pos: 75.5,35.5 - parent: 0 - type: Transform -- uid: 27710 - type: DisposalUnit - components: - - pos: 85.5,33.5 - parent: 0 - type: Transform -- uid: 27711 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 75.5,35.5 - parent: 0 - type: Transform -- uid: 27712 - type: DisposalTrunk - components: - - pos: 85.5,33.5 - parent: 0 - type: Transform -- uid: 27713 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 84.5,32.5 - parent: 0 - type: Transform -- uid: 27714 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 83.5,32.5 - parent: 0 - type: Transform -- uid: 27715 - type: DisposalPipe - components: - - pos: 82.5,33.5 - parent: 0 - type: Transform -- uid: 27716 - type: DisposalPipe - components: - - pos: 82.5,34.5 - parent: 0 - type: Transform -- uid: 27717 - type: DisposalPipe - components: - - pos: 82.5,35.5 - parent: 0 - type: Transform -- uid: 27718 - type: DisposalPipe - components: - - pos: 82.5,36.5 - parent: 0 - type: Transform -- uid: 27719 - type: DisposalPipe - components: - - pos: 82.5,37.5 - parent: 0 - type: Transform -- uid: 27720 - type: DisposalPipe - components: - - pos: 82.5,38.5 - parent: 0 - type: Transform -- uid: 27721 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 81.5,39.5 - parent: 0 - type: Transform -- uid: 27722 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 80.5,39.5 - parent: 0 - type: Transform -- uid: 27723 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 79.5,39.5 - parent: 0 - type: Transform -- uid: 27724 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 78.5,39.5 - parent: 0 - type: Transform -- uid: 27725 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 76.5,39.5 - parent: 0 - type: Transform -- uid: 27726 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 82.5,39.5 - parent: 0 - type: Transform -- uid: 27727 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 77.5,35.5 - parent: 0 - type: Transform -- uid: 27728 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 76.5,35.5 - parent: 0 - type: Transform -- uid: 27729 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 77.5,36.5 - parent: 0 - type: Transform -- uid: 27730 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 77.5,37.5 - parent: 0 - type: Transform -- uid: 27731 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 77.5,38.5 - parent: 0 - type: Transform -- uid: 27732 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 77.5,39.5 - parent: 0 - type: Transform -- uid: 27733 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 75.5,39.5 - parent: 0 - type: Transform -- uid: 27734 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 74.5,39.5 - parent: 0 - type: Transform -- uid: 27735 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 73.5,39.5 - parent: 0 - type: Transform -- uid: 27736 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 72.5,39.5 - parent: 0 - type: Transform -- uid: 27737 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 71.5,39.5 - parent: 0 - type: Transform -- uid: 27738 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 70.5,39.5 - parent: 0 - type: Transform -- uid: 27739 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 69.5,39.5 - parent: 0 - type: Transform -- uid: 27740 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 68.5,39.5 - parent: 0 - type: Transform -- uid: 27741 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 67.5,39.5 - parent: 0 - type: Transform -- uid: 27742 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 66.5,39.5 - parent: 0 - type: Transform -- uid: 27743 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 65.5,39.5 - parent: 0 - type: Transform -- uid: 27744 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 64.5,39.5 - parent: 0 - type: Transform -- uid: 27745 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 63.5,39.5 - parent: 0 - type: Transform -- uid: 27746 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 62.5,39.5 - parent: 0 - type: Transform -- uid: 27747 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 61.5,39.5 - parent: 0 - type: Transform -- uid: 27748 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 60.5,39.5 - parent: 0 - type: Transform -- uid: 27749 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 59.5,39.5 - parent: 0 - type: Transform -- uid: 27750 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 58.5,39.5 - parent: 0 - type: Transform -- uid: 27751 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 57.5,39.5 - parent: 0 - type: Transform -- uid: 27752 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 56.5,39.5 - parent: 0 - type: Transform -- uid: 27753 - type: DisposalYJunction - components: - - pos: 55.5,39.5 - parent: 0 - type: Transform -- uid: 27754 - type: DisposalPipe - components: - - pos: 55.5,38.5 - parent: 0 - type: Transform -- uid: 27755 - type: DisposalPipe - components: - - pos: 55.5,37.5 - parent: 0 - type: Transform -- uid: 27756 - type: DisposalPipe - components: - - pos: 55.5,36.5 - parent: 0 - type: Transform -- uid: 27757 - type: DisposalPipe - components: - - pos: 55.5,35.5 - parent: 0 - type: Transform -- uid: 27758 - type: DisposalPipe - components: - - pos: 55.5,34.5 - parent: 0 - type: Transform -- uid: 27759 - type: DisposalPipe - components: - - pos: 55.5,33.5 - parent: 0 - type: Transform -- uid: 27760 - type: DisposalPipe - components: - - pos: 55.5,32.5 - parent: 0 - type: Transform -- uid: 27761 - type: DisposalPipe - components: - - pos: 55.5,31.5 - parent: 0 - type: Transform -- uid: 27762 - type: DisposalPipe - components: - - pos: 55.5,30.5 - parent: 0 - type: Transform -- uid: 27763 - type: DisposalPipe - components: - - pos: 55.5,29.5 - parent: 0 - type: Transform -- uid: 27764 - type: DisposalPipe - components: - - pos: 55.5,28.5 - parent: 0 - type: Transform -- uid: 27765 - type: DisposalPipe - components: - - pos: 55.5,27.5 - parent: 0 - type: Transform -- uid: 27766 - type: DisposalPipe - components: - - pos: 55.5,26.5 - parent: 0 - type: Transform -- uid: 27767 - type: DisposalPipe - components: - - pos: 55.5,25.5 - parent: 0 - type: Transform -- uid: 27768 - type: DisposalPipe - components: - - pos: 55.5,24.5 - parent: 0 - type: Transform -- uid: 27769 - type: DisposalPipe - components: - - pos: 55.5,23.5 - parent: 0 - type: Transform -- uid: 27770 - type: DisposalPipe - components: - - pos: 55.5,22.5 - parent: 0 - type: Transform -- uid: 27771 - type: DisposalPipe - components: - - pos: 55.5,21.5 - parent: 0 - type: Transform -- uid: 27772 - type: DisposalPipe - components: - - pos: 55.5,20.5 - parent: 0 - type: Transform -- uid: 27773 - type: DisposalPipe - components: - - pos: 55.5,19.5 - parent: 0 - type: Transform -- uid: 27774 - type: DisposalPipe - components: - - pos: 55.5,18.5 - parent: 0 - type: Transform -- uid: 27775 - type: DisposalPipe - components: - - pos: 55.5,17.5 - parent: 0 - type: Transform -- uid: 27776 - type: DisposalPipe - components: - - pos: 55.5,16.5 - parent: 0 - type: Transform -- uid: 27777 - type: DisposalPipe - components: - - pos: 55.5,15.5 - parent: 0 - type: Transform -- uid: 27778 - type: DisposalPipe - components: - - pos: 55.5,14.5 - parent: 0 - type: Transform -- uid: 27779 - type: DisposalPipe - components: - - pos: 55.5,13.5 - parent: 0 - type: Transform -- uid: 27780 - type: DisposalPipe - components: - - pos: 55.5,12.5 - parent: 0 - type: Transform -- uid: 27781 - type: DisposalJunctionFlipped - components: - - pos: 55.5,11.5 - parent: 0 - type: Transform -- uid: 27782 - type: DisposalPipe - components: - - pos: 55.5,10.5 - parent: 0 - type: Transform -- uid: 27783 - type: DisposalPipe - components: - - pos: 55.5,9.5 - parent: 0 - type: Transform -- uid: 27784 - type: DisposalPipe - components: - - pos: 55.5,8.5 - parent: 0 - type: Transform -- uid: 27785 - type: DisposalPipe - components: - - pos: 55.5,7.5 - parent: 0 - type: Transform -- uid: 27786 - type: DisposalPipe - components: - - pos: 55.5,6.5 - parent: 0 - type: Transform -- uid: 27787 - type: DisposalPipe - components: - - pos: 55.5,5.5 - parent: 0 - type: Transform -- uid: 27788 - type: DisposalPipe - components: - - pos: 55.5,4.5 - parent: 0 - type: Transform -- uid: 27789 - type: DisposalPipe - components: - - pos: 55.5,3.5 - parent: 0 - type: Transform -- uid: 27790 - type: DisposalPipe - components: - - pos: 55.5,2.5 - parent: 0 - type: Transform -- uid: 27791 - type: DisposalPipe - components: - - pos: 55.5,1.5 - parent: 0 - type: Transform -- uid: 27792 - type: DisposalPipe - components: - - pos: 55.5,0.5 - parent: 0 - type: Transform -- uid: 27793 - type: DisposalPipe - components: - - pos: 55.5,-0.5 - parent: 0 - type: Transform -- uid: 27794 - type: AirlockMaintLocked - components: - - pos: 79.5,29.5 - parent: 0 - type: Transform -- uid: 27795 - type: AirlockMaintLocked - components: - - pos: 77.5,30.5 - parent: 0 - type: Transform -- uid: 27796 - type: Grille - components: - - pos: 80.5,32.5 - parent: 0 - type: Transform -- uid: 27797 - type: Grille - components: - - pos: 80.5,35.5 - parent: 0 - type: Transform -- uid: 27798 - type: Grille - components: - - pos: 71.5,37.5 - parent: 0 - type: Transform -- uid: 27799 - type: Grille - components: - - pos: 69.5,37.5 - parent: 0 - type: Transform -- uid: 27800 - type: Grille - components: - - pos: 61.5,26.5 - parent: 0 - type: Transform -- uid: 27801 - type: Grille - components: - - pos: 61.5,27.5 - parent: 0 - type: Transform -- uid: 27802 - type: Grille - components: - - pos: 61.5,28.5 - parent: 0 - type: Transform -- uid: 27803 - type: Grille - components: - - pos: 61.5,29.5 - parent: 0 - type: Transform -- uid: 27804 - type: Grille - components: - - pos: 61.5,31.5 - parent: 0 - type: Transform -- uid: 27805 - type: Grille - components: - - pos: 61.5,32.5 - parent: 0 - type: Transform -- uid: 27806 - type: Grille - components: - - pos: 61.5,33.5 - parent: 0 - type: Transform -- uid: 27807 - type: Grille - components: - - pos: 61.5,34.5 - parent: 0 - type: Transform -- uid: 27808 - type: Grille - components: - - pos: 57.5,36.5 - parent: 0 - type: Transform -- uid: 27809 - type: Grille - components: - - pos: 57.5,31.5 - parent: 0 - type: Transform -- uid: 27810 - type: Grille - components: - - pos: 57.5,29.5 - parent: 0 - type: Transform -- uid: 27811 - type: ReinforcedWindow - components: - - pos: 80.5,32.5 - parent: 0 - type: Transform -- uid: 27812 - type: ReinforcedWindow - components: - - pos: 80.5,35.5 - parent: 0 - type: Transform -- uid: 27813 - type: ComputerStationRecords - components: - - rot: -1.5707963267948966 rad - pos: 88.5,29.5 - parent: 0 - type: Transform -- uid: 27814 - type: computerBodyScanner - components: - - rot: -1.5707963267948966 rad - pos: 88.5,30.5 - parent: 0 - type: Transform -- uid: 27815 - type: Table - components: - - pos: 85.5,30.5 - parent: 0 - type: Transform -- uid: 27816 - type: PhoneInstrument - components: - - pos: 85.37198,30.590775 - parent: 0 - type: Transform -- uid: 27817 - type: PaperBin5 - components: - - pos: 88.5,36.5 - parent: 0 - type: Transform -- uid: 27818 - type: BoxFolderYellow - components: - - pos: 88.52823,36.58386 - parent: 0 - type: Transform -- uid: 27819 - type: SurveillanceCameraRouterSupply - components: - - pos: 93.5,30.5 - parent: 0 - type: Transform -- uid: 27820 - type: SurveillanceCameraRouterGeneral - components: - - pos: 94.5,33.5 - parent: 0 - type: Transform -- uid: 27821 - type: SurveillanceCameraRouterEngineering - components: - - pos: 93.5,31.5 - parent: 0 - type: Transform -- uid: 27822 - type: SurveillanceCameraRouterScience - components: - - pos: 95.5,30.5 - parent: 0 - type: Transform -- uid: 27823 - type: SurveillanceCameraRouterCommand - components: - - pos: 97.5,31.5 - parent: 0 - type: Transform -- uid: 27824 - type: SurveillanceCameraRouterMedical - components: - - pos: 95.5,31.5 - parent: 0 - type: Transform -- uid: 27825 - type: SurveillanceCameraRouterSecurity - components: - - pos: 97.5,30.5 - parent: 0 - type: Transform -- uid: 27826 - type: SurveillanceCameraRouterService - components: - - pos: 92.5,33.5 - parent: 0 - type: Transform -- uid: 27827 - type: SurveillanceCameraRouterConstructed - components: - - pos: 100.5,32.5 - parent: 0 - type: Transform -- uid: 27828 - type: CrewMonitoringServer - components: - - pos: 97.5,33.5 - parent: 0 - type: Transform -- uid: 27829 - type: SignTelecomms - components: - - pos: 100.5,34.5 - parent: 0 - type: Transform -- uid: 27830 - type: GasThermoMachineFreezer - components: - - pos: 93.5,36.5 - parent: 0 - type: Transform -- uid: 27831 - type: GasThermoMachineFreezer - components: - - pos: 97.5,36.5 - parent: 0 - type: Transform -- uid: 27832 - type: GasPipeStraight - components: - - pos: 93.5,35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 27833 - type: GasPipeStraight - components: - - pos: 97.5,35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 27834 - type: GasPipeStraight - components: - - pos: 97.5,34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27835 - type: GasPipeStraight - components: - - pos: 93.5,34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27836 - type: GasPipeStraight - components: - - pos: 93.5,33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 27837 - type: GasPipeStraight - components: - - pos: 97.5,33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 27838 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 97.5,32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 27839 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 93.5,32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 27840 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 94.5,32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 27841 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 95.5,32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 27842 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 96.5,32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 27843 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 98.5,32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 27844 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 88.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27845 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 89.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27846 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 90.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27847 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 91.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27848 - type: GasPipeBend - components: - - pos: 92.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27849 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 92.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27850 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 92.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27851 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 92.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27852 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 92.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27853 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 93.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27854 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 94.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27855 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 95.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27856 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 96.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27857 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 97.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27858 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 98.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27859 - type: filingCabinetRandom - components: - - pos: 90.5,36.5 - parent: 0 - type: Transform -- uid: 27860 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 91.5,36.5 - parent: 0 - type: Transform -- uid: 27861 - type: FaxMachineBase - components: - - pos: 91.5,36.5 - parent: 0 - type: Transform - - name: Telecomms - type: FaxMachine -- uid: 27862 - type: Table - components: - - pos: 90.5,33.5 - parent: 0 - type: Transform -- uid: 27863 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 87.5,29.5 - parent: 0 - type: Transform -- uid: 27864 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 86.5,29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27865 - type: PoweredSmallLight - components: - - pos: 90.5,33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27866 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 88.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27867 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 90.5,36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27868 - type: PoweredSmallLight - components: - - pos: 99.5,36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27869 - type: PoweredSmallLight - components: - - pos: 99.5,33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27870 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 92.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27871 - type: PottedPlant1 - components: - - pos: 86.5,34.5 - parent: 0 - type: Transform -- uid: 27872 - type: Catwalk - components: - - pos: 90.5,33.5 - parent: 0 - type: Transform -- uid: 27873 - type: IntercomCommand - components: - - pos: 92.5,34.5 - parent: 0 - type: Transform -- uid: 27874 - type: PaperBin5 - components: - - pos: 92.5,36.5 - parent: 0 - type: Transform -- uid: 27875 - type: TransmitterSubspaceStockPart - components: - - pos: 95.506195,36.615265 - parent: 0 - type: Transform -- uid: 27876 - type: AnsibleSubspaceStockPart - components: - - pos: 96.39682,36.584015 - parent: 0 - type: Transform -- uid: 27877 - type: FilterSubspaceStockPart - components: - - pos: 98.55795,36.505997 - parent: 0 - type: Transform -- uid: 27878 - type: CrystalSubspaceStockPart - components: - - pos: 99.47983,36.58412 - parent: 0 - type: Transform -- uid: 27879 - type: AnalyzerSubspaceStockPart - components: - - pos: 99.01827,36.599747 - parent: 0 - type: Transform -- uid: 27880 - type: TreatmentSubspaceStockPart - components: - - pos: 95.53914,36.67787 - parent: 0 - type: Transform -- uid: 27881 - type: RadioHandheld - components: - - pos: 87.39711,36.599747 - parent: 0 - type: Transform -- uid: 27882 - type: RadioHandheld - components: - - pos: 87.55336,36.49037 - parent: 0 - type: Transform -- uid: 27883 - type: Catwalk - components: - - pos: 92.5,28.5 - parent: 0 - type: Transform -- uid: 27884 - type: Catwalk - components: - - pos: 93.5,28.5 - parent: 0 - type: Transform -- uid: 27885 - type: Catwalk - components: - - pos: 94.5,28.5 - parent: 0 - type: Transform -- uid: 27886 - type: Catwalk - components: - - pos: 95.5,28.5 - parent: 0 - type: Transform -- uid: 27887 - type: Catwalk - components: - - pos: 96.5,28.5 - parent: 0 - type: Transform -- uid: 27888 - type: Catwalk - components: - - pos: 97.5,28.5 - parent: 0 - type: Transform -- uid: 27889 - type: Catwalk - components: - - pos: 98.5,28.5 - parent: 0 - type: Transform -- uid: 27890 - type: ToolboxMechanicalFilled - components: - - pos: 90.476234,33.665497 - parent: 0 - type: Transform -- uid: 27891 - type: GasAnalyzer - components: - - pos: 90.476234,33.509247 - parent: 0 - type: Transform -- uid: 27892 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 92.5,31.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms - type: SurveillanceCamera -- uid: 27893 - type: SMESMachineCircuitboard - components: - - pos: 58.441097,-0.35064197 - parent: 0 - type: Transform -- uid: 27894 - type: SMESMachineCircuitboard - components: - - pos: 58.597347,-0.50689197 - parent: 0 - type: Transform -- uid: 27895 - type: AutolatheMachineCircuitboard - components: - - pos: 58.456722,-1.319392 - parent: 0 - type: Transform -- uid: 27896 - type: ResearchComputerCircuitboard - components: - - pos: 58.519222,-2.397517 - parent: 0 - type: Transform -- uid: 27897 - type: ChemDispenserMachineCircuitboard - components: - - pos: 59.519222,2.555608 - parent: 0 - type: Transform -- uid: 27898 - type: CriminalRecordsComputerCircuitboard - components: - - pos: 58.503597,-3.381892 - parent: 0 - type: Transform -- uid: 27899 - type: GeneratorUraniumMachineCircuitboard - components: - - pos: 61.534847,2.602483 - parent: 0 - type: Transform -- uid: 27900 - type: GeneratorUraniumMachineCircuitboard - components: - - pos: 61.612972,2.414983 - parent: 0 - type: Transform -- uid: 27901 - type: PortableScrubberMachineCircuitBoard - components: - - pos: 58.456722,-4.381892 - parent: 0 - type: Transform -- uid: 27902 - type: TraversalDistorterMachineCircuitboard - components: - - pos: 61.534847,1.618108 - parent: 0 - type: Transform -- uid: 27903 - type: SubstationMachineCircuitboard - components: - - pos: 58.550472,-1.506892 - parent: 0 - type: Transform -- uid: 27904 - type: ProtolatheMachineCircuitboard - components: - - pos: 58.487972,-1.397517 - parent: 0 - type: Transform -- uid: 27905 - type: ThermomachineHeaterMachineCircuitBoard - components: - - pos: 58.550472,-4.5530787 - parent: 0 - type: Transform -- uid: 27906 - type: ThermomachineFreezerMachineCircuitBoard - components: - - pos: 58.675472,-4.6780787 - parent: 0 - type: Transform -- uid: 27907 - type: GyroscopeMachineCircuitboard - components: - - pos: 59.503597,1.5094216 - parent: 0 - type: Transform -- uid: 27908 - type: FlashlightLantern - components: - - pos: 58.425472,-5.411103 - parent: 0 - type: Transform -- uid: 27909 - type: FlashlightLantern - components: - - pos: 58.550472,-5.567353 - parent: 0 - type: Transform -- uid: 27910 - type: ClothingHandsGlovesColorYellow - components: - - pos: 60.550472,-1.4736028 - parent: 0 - type: Transform -- uid: 27911 - type: ToolboxElectricalFilled - components: - - pos: 60.487972,-2.3642278 - parent: 0 - type: Transform -- uid: 27912 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 60.534847,-4.520478 - parent: 0 - type: Transform -- uid: 27913 - type: ClothingEyesGlassesMeson - components: - - pos: 60.534847,-1.5204778 - parent: 0 - type: Transform -- uid: 27914 - type: Screwdriver - components: - - pos: 60.534847,-3.5829778 - parent: 0 - type: Transform -- uid: 27915 - type: HandheldHealthAnalyzer - components: - - pos: 60.519222,-3.4111028 - parent: 0 - type: Transform -- uid: 27916 - type: AdvancedCapacitorStockPart - components: - - pos: 62.472347,-1.3642278 - parent: 0 - type: Transform -- uid: 27917 - type: AdvancedCapacitorStockPart - components: - - pos: 62.628597,-1.4267278 - parent: 0 - type: Transform -- uid: 27918 - type: HighPowerMicroLaserStockPart - components: - - pos: 62.644222,-3.6298528 - parent: 0 - type: Transform -- uid: 27919 - type: HighPowerMicroLaserStockPart - components: - - pos: 62.503597,-3.5673528 - parent: 0 - type: Transform -- uid: 27920 - type: MatterBinStockPart - components: - - pos: 62.56777,-1.8163346 - parent: 0 - type: Transform -- uid: 27921 - type: MatterBinStockPart - components: - - pos: 62.41152,-1.9569596 - parent: 0 - type: Transform -- uid: 27922 - type: MatterBinStockPart - components: - - pos: 62.333393,-1.7694596 - parent: 0 - type: Transform -- uid: 27923 - type: CapacitorStockPart - components: - - pos: 62.7666,-1.6196818 - parent: 0 - type: Transform -- uid: 27924 - type: AmplifierSubspaceStockPart - components: - - pos: 62.61035,-2.8384318 - parent: 0 - type: Transform -- uid: 27925 - type: ScanningModuleStockPart - components: - - pos: 62.3291,-2.7915568 - parent: 0 - type: Transform -- uid: 27926 - type: ScanningModuleStockPart - components: - - pos: 62.3291,-2.5415568 - parent: 0 - type: Transform -- uid: 27927 - type: TransmitterSubspaceStockPart - components: - - pos: 62.54785,-3.9478068 - parent: 0 - type: Transform -- uid: 27928 - type: TreatmentSubspaceStockPart - components: - - pos: 62.563477,-3.8853068 - parent: 0 - type: Transform -- uid: 27929 - type: AnsibleSubspaceStockPart - components: - - pos: 62.5166,-3.1821818 - parent: 0 - type: Transform -- uid: 27930 - type: AmplifierSubspaceStockPart - components: - - pos: 62.7666,-2.8228068 - parent: 0 - type: Transform -- uid: 27931 - type: SignShock - components: - - pos: 58.5,-6.5 - parent: 0 - type: Transform -- uid: 27932 - type: SignSecureMed - components: - - pos: 62.5,0.5 - parent: 0 - type: Transform -- uid: 27933 - type: PottedPlant0 - components: - - pos: 62.5166,-5.666557 - parent: 0 - type: Transform -- uid: 27934 - type: ClothingUnderSocksCoder - components: - - pos: 122.42043,-26.759068 - parent: 0 - type: Transform -- uid: 27935 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 122.5,-20.5 - parent: 0 - type: Transform -- uid: 27936 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 122.5,-19.5 - parent: 0 - type: Transform -- uid: 27937 - type: Grille - components: - - pos: 117.5,13.5 - parent: 0 - type: Transform -- uid: 27938 - type: Grille - components: - - pos: 118.5,12.5 - parent: 0 - type: Transform -- uid: 27939 - type: Grille - components: - - pos: 118.5,10.5 - parent: 0 - type: Transform -- uid: 27940 - type: Grille - components: - - pos: 122.5,10.5 - parent: 0 - type: Transform -- uid: 27941 - type: Grille - components: - - pos: 122.5,12.5 - parent: 0 - type: Transform -- uid: 27942 - type: Grille - components: - - pos: 114.5,38.5 - parent: 0 - type: Transform -- uid: 27943 - type: Grille - components: - - pos: 114.5,39.5 - parent: 0 - type: Transform -- uid: 27944 - type: Grille - components: - - pos: 114.5,40.5 - parent: 0 - type: Transform -- uid: 27945 - type: Grille - components: - - pos: 110.5,38.5 - parent: 0 - type: Transform -- uid: 27946 - type: Grille - components: - - pos: 110.5,39.5 - parent: 0 - type: Transform -- uid: 27947 - type: Grille - components: - - pos: 110.5,40.5 - parent: 0 - type: Transform -- uid: 27948 - type: Grille - components: - - pos: 104.5,38.5 - parent: 0 - type: Transform -- uid: 27949 - type: Grille - components: - - pos: 104.5,39.5 - parent: 0 - type: Transform -- uid: 27950 - type: Grille - components: - - pos: 104.5,40.5 - parent: 0 - type: Transform -- uid: 27951 - type: Grille - components: - - pos: 92.5,41.5 - parent: 0 - type: Transform -- uid: 27952 - type: Grille - components: - - pos: 93.5,41.5 - parent: 0 - type: Transform -- uid: 27953 - type: Grille - components: - - pos: 90.5,41.5 - parent: 0 - type: Transform -- uid: 27954 - type: Grille - components: - - pos: 90.5,42.5 - parent: 0 - type: Transform -- uid: 27955 - type: Grille - components: - - pos: 88.5,41.5 - parent: 0 - type: Transform -- uid: 27956 - type: Grille - components: - - pos: 88.5,42.5 - parent: 0 - type: Transform -- uid: 27957 - type: Grille - components: - - pos: 86.5,41.5 - parent: 0 - type: Transform -- uid: 27958 - type: Grille - components: - - pos: 85.5,41.5 - parent: 0 - type: Transform -- uid: 27959 - type: Grille - components: - - pos: 86.5,45.5 - parent: 0 - type: Transform -- uid: 27960 - type: Grille - components: - - pos: 87.5,45.5 - parent: 0 - type: Transform -- uid: 27961 - type: Grille - components: - - pos: 86.5,46.5 - parent: 0 - type: Transform -- uid: 27962 - type: Grille - components: - - pos: 86.5,47.5 - parent: 0 - type: Transform -- uid: 27963 - type: Grille - components: - - pos: 92.5,45.5 - parent: 0 - type: Transform -- uid: 27964 - type: Grille - components: - - pos: 91.5,45.5 - parent: 0 - type: Transform -- uid: 27965 - type: Grille - components: - - pos: 92.5,46.5 - parent: 0 - type: Transform -- uid: 27966 - type: Grille - components: - - pos: 92.5,47.5 - parent: 0 - type: Transform -- uid: 27967 - type: Grille - components: - - pos: 92.5,50.5 - parent: 0 - type: Transform -- uid: 27968 - type: Grille - components: - - pos: 92.5,51.5 - parent: 0 - type: Transform -- uid: 27969 - type: Grille - components: - - pos: 92.5,52.5 - parent: 0 - type: Transform -- uid: 27970 - type: Grille - components: - - pos: 91.5,52.5 - parent: 0 - type: Transform -- uid: 27971 - type: Grille - components: - - pos: 86.5,50.5 - parent: 0 - type: Transform -- uid: 27972 - type: Grille - components: - - pos: 86.5,51.5 - parent: 0 - type: Transform -- uid: 27973 - type: Grille - components: - - pos: 86.5,52.5 - parent: 0 - type: Transform -- uid: 27974 - type: Grille - components: - - pos: 87.5,52.5 - parent: 0 - type: Transform -- uid: 27975 - type: Grille - components: - - pos: 96.5,57.5 - parent: 0 - type: Transform -- uid: 27976 - type: Grille - components: - - pos: 94.5,56.5 - parent: 0 - type: Transform -- uid: 27977 - type: Grille - components: - - pos: 92.5,57.5 - parent: 0 - type: Transform -- uid: 27978 - type: Grille - components: - - pos: 90.5,57.5 - parent: 0 - type: Transform -- uid: 27979 - type: Grille - components: - - pos: 94.5,62.5 - parent: 0 - type: Transform -- uid: 27980 - type: Grille - components: - - pos: 93.5,63.5 - parent: 0 - type: Transform -- uid: 27981 - type: Grille - components: - - pos: 93.5,64.5 - parent: 0 - type: Transform -- uid: 27982 - type: Grille - components: - - pos: 94.5,65.5 - parent: 0 - type: Transform -- uid: 27983 - type: Grille - components: - - pos: 94.5,68.5 - parent: 0 - type: Transform -- uid: 27984 - type: Grille - components: - - pos: 94.5,69.5 - parent: 0 - type: Transform -- uid: 27985 - type: Grille - components: - - pos: 94.5,70.5 - parent: 0 - type: Transform -- uid: 27986 - type: Grille - components: - - pos: 92.5,71.5 - parent: 0 - type: Transform -- uid: 27987 - type: Grille - components: - - pos: 92.5,74.5 - parent: 0 - type: Transform -- uid: 27988 - type: Grille - components: - - pos: 90.5,74.5 - parent: 0 - type: Transform -- uid: 27989 - type: Grille - components: - - pos: 90.5,71.5 - parent: 0 - type: Transform -- uid: 27990 - type: Grille - components: - - pos: 89.5,69.5 - parent: 0 - type: Transform -- uid: 27991 - type: Grille - components: - - pos: 89.5,68.5 - parent: 0 - type: Transform -- uid: 27992 - type: Grille - components: - - pos: 89.5,67.5 - parent: 0 - type: Transform -- uid: 27993 - type: Grille - components: - - pos: 89.5,62.5 - parent: 0 - type: Transform -- uid: 27994 - type: Grille - components: - - pos: 89.5,63.5 - parent: 0 - type: Transform -- uid: 27995 - type: Grille - components: - - pos: 89.5,61.5 - parent: 0 - type: Transform -- uid: 27996 - type: Grille - components: - - pos: 88.5,57.5 - parent: 0 - type: Transform -- uid: 27997 - type: Grille - components: - - pos: 87.5,57.5 - parent: 0 - type: Transform -- uid: 27998 - type: Grille - components: - - pos: 86.5,57.5 - parent: 0 - type: Transform -- uid: 27999 - type: Grille - components: - - pos: 83.5,58.5 - parent: 0 - type: Transform -- uid: 28000 - type: Grille - components: - - pos: 82.5,58.5 - parent: 0 - type: Transform -- uid: 28001 - type: Grille - components: - - pos: 80.5,58.5 - parent: 0 - type: Transform -- uid: 28002 - type: Grille - components: - - pos: 79.5,58.5 - parent: 0 - type: Transform -- uid: 28003 - type: Grille - components: - - pos: 77.5,58.5 - parent: 0 - type: Transform -- uid: 28004 - type: Grille - components: - - pos: 76.5,58.5 - parent: 0 - type: Transform -- uid: 28005 - type: Grille - components: - - pos: 75.5,56.5 - parent: 0 - type: Transform -- uid: 28006 - type: Grille - components: - - pos: 74.5,60.5 - parent: 0 - type: Transform -- uid: 28007 - type: Grille - components: - - pos: 74.5,61.5 - parent: 0 - type: Transform -- uid: 28008 - type: Grille - components: - - pos: 73.5,61.5 - parent: 0 - type: Transform -- uid: 28009 - type: Grille - components: - - pos: 71.5,61.5 - parent: 0 - type: Transform -- uid: 28010 - type: Grille - components: - - pos: 70.5,61.5 - parent: 0 - type: Transform -- uid: 28011 - type: Grille - components: - - pos: 69.5,61.5 - parent: 0 - type: Transform -- uid: 28012 - type: Grille - components: - - pos: 67.5,61.5 - parent: 0 - type: Transform -- uid: 28013 - type: Grille - components: - - pos: 66.5,58.5 - parent: 0 - type: Transform -- uid: 28014 - type: Grille - components: - - pos: 66.5,54.5 - parent: 0 - type: Transform -- uid: 28015 - type: Grille - components: - - pos: 63.5,61.5 - parent: 0 - type: Transform -- uid: 28016 - type: Grille - components: - - pos: 62.5,61.5 - parent: 0 - type: Transform -- uid: 28017 - type: Grille - components: - - pos: 61.5,61.5 - parent: 0 - type: Transform -- uid: 28018 - type: Grille - components: - - pos: 60.5,61.5 - parent: 0 - type: Transform -- uid: 28019 - type: ReinforcedWindow - components: - - pos: 64.5,61.5 - parent: 0 - type: Transform -- uid: 28020 - type: Grille - components: - - pos: 57.5,63.5 - parent: 0 - type: Transform -- uid: 28021 - type: Grille - components: - - pos: 57.5,64.5 - parent: 0 - type: Transform -- uid: 28022 - type: Grille - components: - - pos: 74.5,41.5 - parent: 0 - type: Transform -- uid: 28023 - type: Grille - components: - - pos: 74.5,44.5 - parent: 0 - type: Transform -- uid: 28024 - type: Grille - components: - - pos: 71.5,44.5 - parent: 0 - type: Transform -- uid: 28025 - type: Grille - components: - - pos: 71.5,41.5 - parent: 0 - type: Transform -- uid: 28026 - type: Grille - components: - - pos: 79.5,42.5 - parent: 0 - type: Transform -- uid: 28027 - type: Grille - components: - - pos: 69.5,41.5 - parent: 0 - type: Transform -- uid: 28028 - type: Grille - components: - - pos: 68.5,41.5 - parent: 0 - type: Transform -- uid: 28029 - type: Grille - components: - - pos: 67.5,41.5 - parent: 0 - type: Transform -- uid: 28030 - type: Grille - components: - - pos: 63.5,41.5 - parent: 0 - type: Transform -- uid: 28031 - type: Grille - components: - - pos: 62.5,41.5 - parent: 0 - type: Transform -- uid: 28032 - type: Grille - components: - - pos: 61.5,41.5 - parent: 0 - type: Transform -- uid: 28033 - type: Grille - components: - - pos: 47.5,41.5 - parent: 0 - type: Transform -- uid: 28034 - type: Grille - components: - - pos: 49.5,41.5 - parent: 0 - type: Transform -- uid: 28035 - type: Grille - components: - - pos: 52.5,41.5 - parent: 0 - type: Transform -- uid: 28036 - type: Grille - components: - - pos: 53.5,43.5 - parent: 0 - type: Transform -- uid: 28037 - type: Grille - components: - - pos: 52.5,35.5 - parent: 0 - type: Transform -- uid: 28038 - type: Grille - components: - - pos: 50.5,35.5 - parent: 0 - type: Transform -- uid: 28039 - type: Grille - components: - - pos: 49.5,35.5 - parent: 0 - type: Transform -- uid: 28040 - type: Grille - components: - - pos: 47.5,35.5 - parent: 0 - type: Transform -- uid: 28041 - type: Grille - components: - - pos: 53.5,37.5 - parent: 0 - type: Transform -- uid: 28042 - type: Grille - components: - - pos: 57.5,41.5 - parent: 0 - type: Transform -- uid: 28043 - type: Grille - components: - - pos: 58.5,41.5 - parent: 0 - type: Transform -- uid: 28044 - type: Grille - components: - - pos: 59.5,41.5 - parent: 0 - type: Transform -- uid: 28045 - type: Grille - components: - - pos: 59.5,43.5 - parent: 0 - type: Transform -- uid: 28046 - type: Grille - components: - - pos: 60.5,43.5 - parent: 0 - type: Transform -- uid: 28047 - type: Grille - components: - - pos: 62.5,43.5 - parent: 0 - type: Transform -- uid: 28048 - type: Grille - components: - - pos: 63.5,43.5 - parent: 0 - type: Transform -- uid: 28049 - type: Grille - components: - - pos: 64.5,43.5 - parent: 0 - type: Transform -- uid: 28050 - type: GeigerCounter - components: - - pos: 87.53049,-5.451392 - parent: 0 - type: Transform -- uid: 28051 - type: CableApcExtension - components: - - pos: 120.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28052 - type: Catwalk - components: - - pos: 118.5,-19.5 - parent: 0 - type: Transform -- uid: 28053 - type: Catwalk - components: - - pos: 118.5,-18.5 - parent: 0 - type: Transform -- uid: 28054 - type: Catwalk - components: - - pos: 118.5,-17.5 - parent: 0 - type: Transform -- uid: 28055 - type: Catwalk - components: - - pos: 118.5,-16.5 - parent: 0 - type: Transform -- uid: 28056 - type: Catwalk - components: - - pos: 118.5,-15.5 - parent: 0 - type: Transform -- uid: 28057 - type: Catwalk - components: - - pos: 118.5,-14.5 - parent: 0 - type: Transform -- uid: 28058 - type: Catwalk - components: - - pos: 118.5,-13.5 - parent: 0 - type: Transform -- uid: 28059 - type: PosterContrabandMissingGloves - components: - - pos: 119.5,-15.5 - parent: 0 - type: Transform -- uid: 28060 - type: GasVentScrubber - components: - - pos: 95.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28061 - type: GasPipeStraight - components: - - pos: 93.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28062 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 93.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28063 - type: GasPipeTJunction - components: - - pos: 97.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28064 - type: GasPipeBend - components: - - pos: 98.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28065 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 98.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28066 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 94.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28067 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 95.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28068 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 96.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28069 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 99.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28070 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 100.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28071 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 101.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28072 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 102.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28073 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 103.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28074 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 104.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28075 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 105.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28076 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 106.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28077 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 107.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28078 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 108.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28079 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 109.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28080 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 110.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28081 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 111.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28082 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 112.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28083 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 113.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28084 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 114.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28085 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 115.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28086 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 116.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28087 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 117.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28088 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 118.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28089 - type: GasPipeBend - components: - - pos: 119.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28090 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 119.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28091 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 120.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28092 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 121.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28093 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 122.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28094 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 123.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28095 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 124.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28096 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 125.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28097 - type: GasVentPump - components: - - pos: 125.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28098 - type: GasPipeStraight - components: - - pos: 119.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28099 - type: GasPipeStraight - components: - - pos: 119.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28100 - type: GasPipeStraight - components: - - pos: 119.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28101 - type: GasPipeStraight - components: - - pos: 119.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28102 - type: GasPipeStraight - components: - - pos: 119.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28103 - type: GasPipeStraight - components: - - pos: 119.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28104 - type: GasPipeStraight - components: - - pos: 119.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28105 - type: GasPipeStraight - components: - - pos: 119.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28106 - type: GasPipeStraight - components: - - pos: 119.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28107 - type: GasPipeStraight - components: - - pos: 119.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28108 - type: GasPipeStraight - components: - - pos: 119.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28109 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 119.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28110 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 121.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28111 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 121.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28112 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 122.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28113 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 123.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28114 - type: GasPipeStraight - components: - - pos: 121.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28115 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 120.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28116 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 124.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28117 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 119.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28118 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 119.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28119 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 119.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28120 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 119.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28121 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 119.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28122 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 119.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28123 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 118.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28124 - type: GasPipeStraight - components: - - pos: 118.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28125 - type: GasPipeStraight - components: - - pos: 118.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28126 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 118.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28127 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28128 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28129 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 115.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28130 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 116.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28131 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 117.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28132 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 119.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28133 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 120.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28134 - type: GasPipeStraight - components: - - pos: 121.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28135 - type: GasPipeStraight - components: - - pos: 121.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28136 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 121.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28137 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 119.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28138 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 120.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28139 - type: GasVentPump - components: - - pos: 113.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28140 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 118.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28141 - type: GasPipeStraight - components: - - pos: 118.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28142 - type: GasPipeStraight - components: - - pos: 118.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28143 - type: GasPipeStraight - components: - - pos: 118.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28144 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 121.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28145 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 121.5,-16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28146 - type: GasPort - components: - - pos: 121.5,-15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 28147 - type: Rack - components: - - pos: 120.5,-15.5 - parent: 0 - type: Transform -- uid: 28148 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 121.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28149 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 116.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28150 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 118.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28151 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 118.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28152 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 122.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28153 - type: PoweredSmallLight - components: - - pos: 125.5,3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28154 - type: PoweredSmallLight - components: - - pos: 124.5,7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28155 - type: AirlockAtmosphericsLocked - components: - - pos: 119.5,-16.5 - parent: 0 - type: Transform -- uid: 28156 - type: AirlockAtmosphericsLocked - components: - - pos: 121.5,-18.5 - parent: 0 - type: Transform -- uid: 28157 - type: StorageCanister - components: - - pos: 121.5,-15.5 - parent: 0 - type: Transform -- uid: 28158 - type: Rack - components: - - pos: 119.5,-20.5 - parent: 0 - type: Transform -- uid: 28159 - type: Rack - components: - - pos: 121.5,-20.5 - parent: 0 - type: Transform -- uid: 28160 - type: ClosetMaintenanceFilledRandom - components: - - pos: 120.5,-20.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 28161 - type: OxygenTankFilled - components: - - pos: 119.56865,-20.499 - parent: 0 - type: Transform -- uid: 28162 - type: ClothingMaskBreath - components: - - pos: 119.38115,-20.40525 - parent: 0 - type: Transform -- uid: 28163 - type: Pickaxe - components: - - pos: 121.553024,-20.514626 - parent: 0 - type: Transform -- uid: 28164 - type: ClothingHeadSafari - components: - - pos: 121.521774,-20.40525 - parent: 0 - type: Transform -- uid: 28165 - type: ExtinguisherCabinetFilled - components: - - pos: 119.5,-17.5 - parent: 0 - type: Transform -- uid: 28166 - type: SignFire - components: - - pos: 119.5,-18.5 - parent: 0 - type: Transform -- uid: 28167 - type: PoweredlightSodium - components: - - rot: -1.5707963267948966 rad - pos: 116.5,-1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28168 - type: PoweredlightSodium - components: - - rot: -1.5707963267948966 rad - pos: 116.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28169 - type: ReinforcedWindow - components: - - pos: 129.5,-4.5 - parent: 0 - type: Transform -- uid: 28170 - type: Table - components: - - pos: 128.5,-4.5 - parent: 0 - type: Transform -- uid: 28171 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 127.5,-4.5 - parent: 0 - type: Transform -- uid: 28172 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: 125.5,-7.5 - parent: 0 - type: Transform -- uid: 28173 - type: Railing - components: - - pos: 124.5,-7.5 - parent: 0 - type: Transform -- uid: 28174 - type: Railing - components: - - pos: 126.5,-2.5 - parent: 0 - type: Transform -- uid: 28175 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: 125.5,-2.5 - parent: 0 - type: Transform -- uid: 28176 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 122.5,-2.5 - parent: 0 - type: Transform -- uid: 28177 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 122.5,-1.5 - parent: 0 - type: Transform -- uid: 28178 - type: FirelockGlass - components: - - pos: 124.5,-0.5 - parent: 0 - type: Transform -- uid: 28179 - type: AirlockMaintGlass - components: - - pos: 121.5,-6.5 - parent: 0 - type: Transform -- uid: 28180 - type: SignRadiationMed - components: - - pos: 122.5,-6.5 - parent: 0 - type: Transform -- uid: 28181 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28182 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28183 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28184 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28185 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28186 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28187 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28188 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28189 - type: GasVentPump - components: - - pos: 61.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28190 - type: GasVentScrubber - components: - - pos: 66.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28191 - type: GasPipeTJunction - components: - - pos: 59.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28192 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28193 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28194 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28195 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28196 - type: GasVentPump - components: - - pos: 55.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28197 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 59.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28198 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 55.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28199 - type: CableApcExtension - components: - - pos: 67.5,-6.5 - parent: 0 - type: Transform -- uid: 28200 - type: CableApcExtension - components: - - pos: 67.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28201 - type: CableApcExtension - components: - - pos: 66.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28202 - type: CableApcExtension - components: - - pos: 65.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28203 - type: CableApcExtension - components: - - pos: 64.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28204 - type: CableApcExtension - components: - - pos: 64.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28205 - type: CableApcExtension - components: - - pos: 64.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28206 - type: CableApcExtension - components: - - pos: 64.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28207 - type: CableApcExtension - components: - - pos: 64.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28208 - type: CableApcExtension - components: - - pos: 64.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28209 - type: CableApcExtension - components: - - pos: 65.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28210 - type: CableApcExtension - components: - - pos: 66.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28211 - type: CableApcExtension - components: - - pos: 67.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28212 - type: CableApcExtension - components: - - pos: 64.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28213 - type: CableApcExtension - components: - - pos: 64.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28214 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 97.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28215 - type: WallSolid - components: - - pos: 37.5,35.5 - parent: 0 - type: Transform -- uid: 28216 - type: WallSolid - components: - - pos: 38.5,35.5 - parent: 0 - type: Transform -- uid: 28217 - type: WallSolid - components: - - pos: 39.5,35.5 - parent: 0 - type: Transform -- uid: 28218 - type: WallReinforced - components: - - pos: 40.5,39.5 - parent: 0 - type: Transform -- uid: 28219 - type: ReinforcedWindow - components: - - pos: 45.5,35.5 - parent: 0 - type: Transform -- uid: 28220 - type: ReinforcedWindow - components: - - pos: 44.5,35.5 - parent: 0 - type: Transform -- uid: 28221 - type: ReinforcedWindow - components: - - pos: 41.5,35.5 - parent: 0 - type: Transform -- uid: 28222 - type: ReinforcedWindow - components: - - pos: 43.5,35.5 - parent: 0 - type: Transform -- uid: 28223 - type: ReinforcedWindow - components: - - pos: 42.5,35.5 - parent: 0 - type: Transform -- uid: 28224 - type: Catwalk - components: - - pos: 94.5,61.5 - parent: 0 - type: Transform -- uid: 28225 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 89.5,-32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28226 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 81.5,-38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28227 - type: Poweredlight - components: - - pos: 75.5,-28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28228 - type: Poweredlight - components: - - pos: 82.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28229 - type: SheetGlass - components: - - pos: 81.580086,-23.65507 - parent: 0 - type: Transform -- uid: 28230 - type: SheetGlass - components: - - pos: 81.580086,-23.65507 - parent: 0 - type: Transform -- uid: 28231 - type: AirSensor - components: - - pos: 55.5,5.5 - parent: 0 - type: Transform -- uid: 28232 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 53.5,4.5 - parent: 0 - type: Transform - - devices: - - 8144 - - 8147 - - 8167 - - 8143 - - 8146 - - 8170 - - 28231 - type: DeviceList -- uid: 28233 - type: AirAlarm - components: - - pos: 53.5,8.5 - parent: 0 - type: Transform - - devices: - - 8144 - - 8147 - - 8167 - - 8143 - - 8146 - - 8170 - - 28231 - - 28198 - - 28196 - type: DeviceList -- uid: 28234 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28235 - type: Poweredlight - components: - - pos: 53.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28236 - type: Poweredlight - components: - - pos: 44.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28237 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 92.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28238 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 92.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28239 - type: GasPipeStraight - components: - - pos: 92.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28240 - type: GasPipeStraight - components: - - pos: 92.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28241 - type: GasPipeStraight - components: - - pos: 92.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28242 - type: GasPipeStraight - components: - - pos: 92.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28243 - type: GasPipeStraight - components: - - pos: 92.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28244 - type: GasPipeStraight - components: - - pos: 92.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28245 - type: GasPipeStraight - components: - - pos: 91.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28246 - type: GasPipeStraight - components: - - pos: 91.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28247 - type: GasPipeStraight - components: - - pos: 91.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28248 - type: GasPipeStraight - components: - - pos: 91.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28249 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 90.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28250 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 89.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28251 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 88.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28252 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 87.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28253 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 86.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28254 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 85.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28255 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 84.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28256 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 84.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28257 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 85.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28258 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 86.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28259 - type: GasPipeTJunction - components: - - pos: 77.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28260 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 88.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28261 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 89.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28262 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 90.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28263 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 91.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28264 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 93.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28265 - type: GasVentPump - components: - - pos: 91.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28266 - type: GasVentScrubber - components: - - pos: 92.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28267 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 93.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28268 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 55.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28269 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 55.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28270 - type: AirSensor - components: - - pos: 55.5,17.5 - parent: 0 - type: Transform -- uid: 28271 - type: AirAlarm - components: - - pos: 57.5,22.5 - parent: 0 - type: Transform - - devices: - - 21394 - - 21395 - - 8170 - - 8146 - - 8143 - - 28270 - - 21368 - - 21367 - - 21366 - - 28269 - - 28268 - type: DeviceList -- uid: 28272 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 57.5,17.5 - parent: 0 - type: Transform - - devices: - - 21394 - - 21395 - - 8170 - - 8146 - - 8143 - - 28270 - - 21368 - - 21367 - - 21366 - type: DeviceList -- uid: 28273 - type: WallReinforced - components: - - pos: 73.5,23.5 - parent: 0 - type: Transform -- uid: 28274 - type: WallReinforced - components: - - pos: 73.5,21.5 - parent: 0 - type: Transform -- uid: 28275 - type: SubstationBasic - components: - - name: Dorm Subs - type: MetaData - - pos: 71.5,22.5 - parent: 0 - type: Transform -- uid: 28276 - type: CableHV - components: - - pos: 71.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28277 - type: CableHV - components: - - pos: 72.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28278 - type: CableHV - components: - - pos: 73.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28279 - type: CableHV - components: - - pos: 74.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28280 - type: CableHV - components: - - pos: 74.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28281 - type: CableHV - components: - - pos: 74.5,15.5 - parent: 0 - type: Transform -- uid: 28282 - type: CableHV - components: - - pos: 74.5,16.5 - parent: 0 - type: Transform -- uid: 28283 - type: CableHV - components: - - pos: 74.5,17.5 - parent: 0 - type: Transform -- uid: 28284 - type: CableHV - components: - - pos: 74.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28285 - type: CableHV - components: - - pos: 74.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28286 - type: CableHV - components: - - pos: 74.5,20.5 - parent: 0 - type: Transform -- uid: 28287 - type: CableHV - components: - - pos: 74.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28288 - type: RadiationCollector - components: - - pos: 93.5,-17.5 - parent: 0 - type: Transform -- uid: 28289 - type: RadiationCollector - components: - - pos: 93.5,-16.5 - parent: 0 - type: Transform -- uid: 28290 - type: GasPipeTJunction - components: - - pos: 82.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28291 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 81.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28292 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28293 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28294 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28295 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28296 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28297 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28298 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 82.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28299 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 81.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28300 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28301 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28302 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 82.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28303 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28304 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 84.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28305 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 85.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28306 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 85.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28307 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 84.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28308 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 82.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28309 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28310 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 84.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28311 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 85.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28312 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 85.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28313 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 84.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28314 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 82.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28315 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28316 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 84.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28317 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 85.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28318 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 85.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28319 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 84.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28320 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 82.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28321 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 78.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28322 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 78.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28323 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 78.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28324 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 86.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28325 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 86.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28326 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 86.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28327 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 86.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28328 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 86.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28329 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 86.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28330 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 78.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28331 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 78.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28332 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 78.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28333 - type: GasVentScrubber - components: - - pos: 82.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28334 - type: AirSensor - components: - - pos: 82.5,21.5 - parent: 0 - type: Transform -- uid: 28335 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 84.5,23.5 - parent: 0 - type: Transform - - devices: - - 21401 - - 21403 - - 21402 - - 28334 - - 21406 - - 21405 - - 21404 - - 28320 - - 28333 - type: DeviceList -- uid: 28336 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 80.5,20.5 - parent: 0 - type: Transform - - devices: - - 21401 - - 21403 - - 21402 - - 28334 - - 21406 - - 21405 - - 21404 - type: DeviceList -- uid: 28337 - type: Grille - components: - - pos: 80.5,19.5 - parent: 0 - type: Transform -- uid: 28338 - type: Grille - components: - - pos: 84.5,19.5 - parent: 0 - type: Transform -- uid: 28339 - type: Grille - components: - - pos: 84.5,22.5 - parent: 0 - type: Transform -- uid: 28340 - type: Grille - components: - - pos: 80.5,22.5 - parent: 0 - type: Transform -- uid: 28341 - type: Grille - components: - - pos: 80.5,25.5 - parent: 0 - type: Transform -- uid: 28342 - type: Grille - components: - - pos: 84.5,25.5 - parent: 0 - type: Transform -- uid: 28343 - type: APCBasic - components: - - pos: 60.5,35.5 - parent: 0 - type: Transform -- uid: 28344 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 67.5,30.5 - parent: 0 - type: Transform -- uid: 28345 - type: APCBasic - components: - - pos: 76.5,36.5 - parent: 0 - type: Transform -- uid: 28346 - type: APCBasic - components: - - pos: 69.5,17.5 - parent: 0 - type: Transform -- uid: 28347 - type: APCBasic - components: - - pos: 60.5,19.5 - parent: 0 - type: Transform -- uid: 28348 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 80.5,23.5 - parent: 0 - type: Transform -- uid: 28349 - type: CableMV - components: - - pos: 80.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28350 - type: CableMV - components: - - pos: 81.5,23.5 - parent: 0 - type: Transform -- uid: 28351 - type: CableMV - components: - - pos: 82.5,23.5 - parent: 0 - type: Transform -- uid: 28352 - type: CableMV - components: - - pos: 82.5,24.5 - parent: 0 - type: Transform -- uid: 28353 - type: CableMV - components: - - pos: 82.5,25.5 - parent: 0 - type: Transform -- uid: 28354 - type: CableMV - components: - - pos: 82.5,26.5 - parent: 0 - type: Transform -- uid: 28355 - type: CableMV - components: - - pos: 82.5,27.5 - parent: 0 - type: Transform -- uid: 28356 - type: CableMV - components: - - pos: 82.5,28.5 - parent: 0 - type: Transform -- uid: 28357 - type: CableMV - components: - - pos: 82.5,29.5 - parent: 0 - type: Transform -- uid: 28358 - type: CableMV - components: - - pos: 81.5,29.5 - parent: 0 - type: Transform -- uid: 28359 - type: CableMV - components: - - pos: 80.5,29.5 - parent: 0 - type: Transform -- uid: 28360 - type: CableMV - components: - - pos: 79.5,29.5 - parent: 0 - type: Transform -- uid: 28361 - type: CableMV - components: - - pos: 78.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28362 - type: CableMV - components: - - pos: 77.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28363 - type: CableMV - components: - - pos: 76.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28364 - type: CableMV - components: - - pos: 75.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28365 - type: CableMV - components: - - pos: 74.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28366 - type: CableMV - components: - - pos: 74.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28367 - type: CableMV - components: - - pos: 74.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28368 - type: CableMV - components: - - pos: 74.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28369 - type: CableMV - components: - - pos: 74.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28370 - type: CableMV - components: - - pos: 74.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28371 - type: CableMV - components: - - pos: 74.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28372 - type: CableMV - components: - - pos: 74.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28373 - type: CableMV - components: - - pos: 73.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28374 - type: CableMV - components: - - pos: 72.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28375 - type: CableMV - components: - - pos: 71.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28376 - type: CableMV - components: - - pos: 77.5,30.5 - parent: 0 - type: Transform -- uid: 28377 - type: CableMV - components: - - pos: 77.5,31.5 - parent: 0 - type: Transform -- uid: 28378 - type: CableMV - components: - - pos: 77.5,32.5 - parent: 0 - type: Transform -- uid: 28379 - type: CableMV - components: - - pos: 77.5,33.5 - parent: 0 - type: Transform -- uid: 28380 - type: CableMV - components: - - pos: 77.5,34.5 - parent: 0 - type: Transform -- uid: 28381 - type: CableMV - components: - - pos: 77.5,35.5 - parent: 0 - type: Transform -- uid: 28382 - type: CableMV - components: - - pos: 77.5,36.5 - parent: 0 - type: Transform -- uid: 28383 - type: CableMV - components: - - pos: 76.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28384 - type: CableMV - components: - - pos: 73.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28385 - type: CableMV - components: - - pos: 72.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28386 - type: CableMV - components: - - pos: 71.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28387 - type: CableMV - components: - - pos: 70.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28388 - type: CableMV - components: - - pos: 69.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28389 - type: CableMV - components: - - pos: 68.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28390 - type: CableMV - components: - - pos: 69.5,25.5 - parent: 0 - type: Transform -- uid: 28391 - type: CableMV - components: - - pos: 69.5,26.5 - parent: 0 - type: Transform -- uid: 28392 - type: CableMV - components: - - pos: 69.5,27.5 - parent: 0 - type: Transform -- uid: 28393 - type: CableMV - components: - - pos: 69.5,28.5 - parent: 0 - type: Transform -- uid: 28394 - type: CableMV - components: - - pos: 68.5,28.5 - parent: 0 - type: Transform -- uid: 28395 - type: CableMV - components: - - pos: 67.5,28.5 - parent: 0 - type: Transform -- uid: 28396 - type: CableMV - components: - - pos: 66.5,28.5 - parent: 0 - type: Transform -- uid: 28397 - type: CableMV - components: - - pos: 66.5,29.5 - parent: 0 - type: Transform -- uid: 28398 - type: CableMV - components: - - pos: 66.5,30.5 - parent: 0 - type: Transform -- uid: 28399 - type: CableMV - components: - - pos: 67.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28400 - type: CableMV - components: - - pos: 67.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28401 - type: CableMV - components: - - pos: 66.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28402 - type: CableMV - components: - - pos: 65.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28403 - type: CableMV - components: - - pos: 64.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28404 - type: CableMV - components: - - pos: 63.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28405 - type: CableMV - components: - - pos: 62.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28406 - type: CableMV - components: - - pos: 61.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28407 - type: CableMV - components: - - pos: 60.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28408 - type: CableMV - components: - - pos: 59.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28409 - type: CableMV - components: - - pos: 58.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28410 - type: CableMV - components: - - pos: 57.5,24.5 - parent: 0 - type: Transform -- uid: 28411 - type: CableMV - components: - - pos: 56.5,24.5 - parent: 0 - type: Transform -- uid: 28412 - type: CableMV - components: - - pos: 55.5,24.5 - parent: 0 - type: Transform -- uid: 28413 - type: CableMV - components: - - pos: 55.5,25.5 - parent: 0 - type: Transform -- uid: 28414 - type: CableMV - components: - - pos: 55.5,26.5 - parent: 0 - type: Transform -- uid: 28415 - type: CableMV - components: - - pos: 55.5,27.5 - parent: 0 - type: Transform -- uid: 28416 - type: CableMV - components: - - pos: 55.5,28.5 - parent: 0 - type: Transform -- uid: 28417 - type: CableMV - components: - - pos: 55.5,29.5 - parent: 0 - type: Transform -- uid: 28418 - type: CableMV - components: - - pos: 55.5,30.5 - parent: 0 - type: Transform -- uid: 28419 - type: CableMV - components: - - pos: 55.5,31.5 - parent: 0 - type: Transform -- uid: 28420 - type: CableMV - components: - - pos: 55.5,32.5 - parent: 0 - type: Transform -- uid: 28421 - type: CableMV - components: - - pos: 56.5,32.5 - parent: 0 - type: Transform -- uid: 28422 - type: CableMV - components: - - pos: 57.5,32.5 - parent: 0 - type: Transform -- uid: 28423 - type: CableMV - components: - - pos: 58.5,32.5 - parent: 0 - type: Transform -- uid: 28424 - type: CableMV - components: - - pos: 59.5,32.5 - parent: 0 - type: Transform -- uid: 28425 - type: CableMV - components: - - pos: 60.5,32.5 - parent: 0 - type: Transform -- uid: 28426 - type: CableMV - components: - - pos: 60.5,33.5 - parent: 0 - type: Transform -- uid: 28427 - type: CableMV - components: - - pos: 60.5,34.5 - parent: 0 - type: Transform -- uid: 28428 - type: CableMV - components: - - pos: 60.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28429 - type: CableMV - components: - - pos: 60.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28430 - type: CableMV - components: - - pos: 61.5,19.5 - parent: 0 - type: Transform -- uid: 28431 - type: CableMV - components: - - pos: 61.5,20.5 - parent: 0 - type: Transform -- uid: 28432 - type: CableMV - components: - - pos: 61.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28433 - type: CableMV - components: - - pos: 61.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28434 - type: CableMV - components: - - pos: 61.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28435 - type: CableMV - components: - - pos: 69.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28436 - type: CableMV - components: - - pos: 69.5,16.5 - parent: 0 - type: Transform -- uid: 28437 - type: CableMV - components: - - pos: 70.5,16.5 - parent: 0 - type: Transform -- uid: 28438 - type: CableMV - components: - - pos: 71.5,16.5 - parent: 0 - type: Transform -- uid: 28439 - type: CableMV - components: - - pos: 72.5,16.5 - parent: 0 - type: Transform -- uid: 28440 - type: CableMV - components: - - pos: 73.5,16.5 - parent: 0 - type: Transform -- uid: 28441 - type: CableMV - components: - - pos: 74.5,16.5 - parent: 0 - type: Transform -- uid: 28442 - type: CableMV - components: - - pos: 74.5,17.5 - parent: 0 - type: Transform -- uid: 28443 - type: CableMV - components: - - pos: 74.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28444 - type: CableMV - components: - - pos: 74.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28445 - type: CableMV - components: - - pos: 74.5,20.5 - parent: 0 - type: Transform -- uid: 28446 - type: CableMV - components: - - pos: 74.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28447 - type: CableApcExtension - components: - - pos: 69.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28448 - type: CableApcExtension - components: - - pos: 69.5,16.5 - parent: 0 - type: Transform -- uid: 28449 - type: CableApcExtension - components: - - pos: 69.5,15.5 - parent: 0 - type: Transform -- uid: 28450 - type: CableApcExtension - components: - - pos: 69.5,14.5 - parent: 0 - type: Transform -- uid: 28451 - type: CableApcExtension - components: - - pos: 69.5,13.5 - parent: 0 - type: Transform -- uid: 28452 - type: CableApcExtension - components: - - pos: 69.5,12.5 - parent: 0 - type: Transform -- uid: 28453 - type: CableApcExtension - components: - - pos: 69.5,11.5 - parent: 0 - type: Transform -- uid: 28454 - type: CableApcExtension - components: - - pos: 69.5,10.5 - parent: 0 - type: Transform -- uid: 28455 - type: CableApcExtension - components: - - pos: 69.5,9.5 - parent: 0 - type: Transform -- uid: 28456 - type: CableApcExtension - components: - - pos: 69.5,8.5 - parent: 0 - type: Transform -- uid: 28457 - type: CableApcExtension - components: - - pos: 69.5,7.5 - parent: 0 - type: Transform -- uid: 28458 - type: CableApcExtension - components: - - pos: 69.5,6.5 - parent: 0 - type: Transform -- uid: 28459 - type: CableApcExtension - components: - - pos: 68.5,11.5 - parent: 0 - type: Transform -- uid: 28460 - type: CableApcExtension - components: - - pos: 67.5,11.5 - parent: 0 - type: Transform -- uid: 28461 - type: CableApcExtension - components: - - pos: 66.5,11.5 - parent: 0 - type: Transform -- uid: 28462 - type: CableApcExtension - components: - - pos: 65.5,11.5 - parent: 0 - type: Transform -- uid: 28463 - type: CableApcExtension - components: - - pos: 64.5,11.5 - parent: 0 - type: Transform -- uid: 28464 - type: CableApcExtension - components: - - pos: 63.5,11.5 - parent: 0 - type: Transform -- uid: 28465 - type: CableApcExtension - components: - - pos: 62.5,11.5 - parent: 0 - type: Transform -- uid: 28466 - type: CableApcExtension - components: - - pos: 61.5,11.5 - parent: 0 - type: Transform -- uid: 28467 - type: CableApcExtension - components: - - pos: 60.5,11.5 - parent: 0 - type: Transform -- uid: 28468 - type: CableApcExtension - components: - - pos: 59.5,11.5 - parent: 0 - type: Transform -- uid: 28469 - type: CableApcExtension - components: - - pos: 59.5,10.5 - parent: 0 - type: Transform -- uid: 28470 - type: CableApcExtension - components: - - pos: 59.5,9.5 - parent: 0 - type: Transform -- uid: 28471 - type: CableApcExtension - components: - - pos: 59.5,8.5 - parent: 0 - type: Transform -- uid: 28472 - type: CableApcExtension - components: - - pos: 59.5,7.5 - parent: 0 - type: Transform -- uid: 28473 - type: CableApcExtension - components: - - pos: 59.5,6.5 - parent: 0 - type: Transform -- uid: 28474 - type: CableApcExtension - components: - - pos: 59.5,5.5 - parent: 0 - type: Transform -- uid: 28475 - type: CableApcExtension - components: - - pos: 68.5,7.5 - parent: 0 - type: Transform -- uid: 28476 - type: CableApcExtension - components: - - pos: 67.5,7.5 - parent: 0 - type: Transform -- uid: 28477 - type: CableApcExtension - components: - - pos: 66.5,7.5 - parent: 0 - type: Transform -- uid: 28478 - type: CableApcExtension - components: - - pos: 65.5,7.5 - parent: 0 - type: Transform -- uid: 28479 - type: CableApcExtension - components: - - pos: 64.5,7.5 - parent: 0 - type: Transform -- uid: 28480 - type: CableApcExtension - components: - - pos: 63.5,7.5 - parent: 0 - type: Transform -- uid: 28481 - type: CableApcExtension - components: - - pos: 62.5,7.5 - parent: 0 - type: Transform -- uid: 28482 - type: CableApcExtension - components: - - pos: 64.5,6.5 - parent: 0 - type: Transform -- uid: 28483 - type: CableApcExtension - components: - - pos: 64.5,5.5 - parent: 0 - type: Transform -- uid: 28484 - type: CableApcExtension - components: - - pos: 68.5,14.5 - parent: 0 - type: Transform -- uid: 28485 - type: CableApcExtension - components: - - pos: 67.5,14.5 - parent: 0 - type: Transform -- uid: 28486 - type: CableApcExtension - components: - - pos: 66.5,14.5 - parent: 0 - type: Transform -- uid: 28487 - type: CableApcExtension - components: - - pos: 65.5,14.5 - parent: 0 - type: Transform -- uid: 28488 - type: CableApcExtension - components: - - pos: 60.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28489 - type: CableApcExtension - components: - - pos: 61.5,19.5 - parent: 0 - type: Transform -- uid: 28490 - type: CableApcExtension - components: - - pos: 61.5,18.5 - parent: 0 - type: Transform -- uid: 28491 - type: CableApcExtension - components: - - pos: 61.5,17.5 - parent: 0 - type: Transform -- uid: 28492 - type: CableApcExtension - components: - - pos: 61.5,16.5 - parent: 0 - type: Transform -- uid: 28493 - type: CableApcExtension - components: - - pos: 61.5,15.5 - parent: 0 - type: Transform -- uid: 28494 - type: CableApcExtension - components: - - pos: 61.5,14.5 - parent: 0 - type: Transform -- uid: 28495 - type: CableApcExtension - components: - - pos: 62.5,18.5 - parent: 0 - type: Transform -- uid: 28496 - type: CableApcExtension - components: - - pos: 63.5,18.5 - parent: 0 - type: Transform -- uid: 28497 - type: CableApcExtension - components: - - pos: 64.5,18.5 - parent: 0 - type: Transform -- uid: 28498 - type: CableApcExtension - components: - - pos: 65.5,18.5 - parent: 0 - type: Transform -- uid: 28499 - type: CableApcExtension - components: - - pos: 66.5,18.5 - parent: 0 - type: Transform -- uid: 28500 - type: CableApcExtension - components: - - pos: 61.5,20.5 - parent: 0 - type: Transform -- uid: 28501 - type: CableApcExtension - components: - - pos: 61.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28502 - type: CableApcExtension - components: - - pos: 61.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28503 - type: CableApcExtension - components: - - pos: 61.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28504 - type: CableApcExtension - components: - - pos: 61.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28505 - type: CableApcExtension - components: - - pos: 60.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28506 - type: CableApcExtension - components: - - pos: 59.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28507 - type: CableApcExtension - components: - - pos: 58.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28508 - type: CableApcExtension - components: - - pos: 57.5,24.5 - parent: 0 - type: Transform -- uid: 28509 - type: CableApcExtension - components: - - pos: 56.5,24.5 - parent: 0 - type: Transform -- uid: 28510 - type: CableApcExtension - components: - - pos: 55.5,24.5 - parent: 0 - type: Transform -- uid: 28511 - type: CableApcExtension - components: - - pos: 55.5,23.5 - parent: 0 - type: Transform -- uid: 28512 - type: CableApcExtension - components: - - pos: 55.5,22.5 - parent: 0 - type: Transform -- uid: 28513 - type: CableApcExtension - components: - - pos: 55.5,21.5 - parent: 0 - type: Transform -- uid: 28514 - type: CableApcExtension - components: - - pos: 55.5,20.5 - parent: 0 - type: Transform -- uid: 28515 - type: CableApcExtension - components: - - pos: 55.5,19.5 - parent: 0 - type: Transform -- uid: 28516 - type: CableApcExtension - components: - - pos: 55.5,18.5 - parent: 0 - type: Transform -- uid: 28517 - type: CableApcExtension - components: - - pos: 55.5,17.5 - parent: 0 - type: Transform -- uid: 28518 - type: CableApcExtension - components: - - pos: 55.5,16.5 - parent: 0 - type: Transform -- uid: 28519 - type: CableApcExtension - components: - - pos: 55.5,15.5 - parent: 0 - type: Transform -- uid: 28520 - type: CableApcExtension - components: - - pos: 55.5,14.5 - parent: 0 - type: Transform -- uid: 28521 - type: CableApcExtension - components: - - pos: 55.5,13.5 - parent: 0 - type: Transform -- uid: 28522 - type: CableApcExtension - components: - - pos: 55.5,12.5 - parent: 0 - type: Transform -- uid: 28523 - type: CableApcExtension - components: - - pos: 55.5,11.5 - parent: 0 - type: Transform -- uid: 28524 - type: CableApcExtension - components: - - pos: 62.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28525 - type: CableApcExtension - components: - - pos: 63.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28526 - type: CableApcExtension - components: - - pos: 64.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28527 - type: CableApcExtension - components: - - pos: 65.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28528 - type: CableApcExtension - components: - - pos: 66.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28529 - type: CableApcExtension - components: - - pos: 67.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28530 - type: CableApcExtension - components: - - pos: 60.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28531 - type: CableApcExtension - components: - - pos: 60.5,34.5 - parent: 0 - type: Transform -- uid: 28532 - type: CableApcExtension - components: - - pos: 60.5,33.5 - parent: 0 - type: Transform -- uid: 28533 - type: CableApcExtension - components: - - pos: 60.5,32.5 - parent: 0 - type: Transform -- uid: 28534 - type: CableApcExtension - components: - - pos: 60.5,31.5 - parent: 0 - type: Transform -- uid: 28535 - type: CableApcExtension - components: - - pos: 60.5,30.5 - parent: 0 - type: Transform -- uid: 28536 - type: CableApcExtension - components: - - pos: 60.5,29.5 - parent: 0 - type: Transform -- uid: 28537 - type: CableApcExtension - components: - - pos: 60.5,28.5 - parent: 0 - type: Transform -- uid: 28538 - type: CableApcExtension - components: - - pos: 60.5,27.5 - parent: 0 - type: Transform -- uid: 28539 - type: CableApcExtension - components: - - pos: 60.5,26.5 - parent: 0 - type: Transform -- uid: 28540 - type: CableApcExtension - components: - - pos: 59.5,32.5 - parent: 0 - type: Transform -- uid: 28541 - type: CableApcExtension - components: - - pos: 58.5,32.5 - parent: 0 - type: Transform -- uid: 28542 - type: CableApcExtension - components: - - pos: 57.5,32.5 - parent: 0 - type: Transform -- uid: 28543 - type: CableApcExtension - components: - - pos: 56.5,32.5 - parent: 0 - type: Transform -- uid: 28544 - type: CableApcExtension - components: - - pos: 55.5,32.5 - parent: 0 - type: Transform -- uid: 28545 - type: CableApcExtension - components: - - pos: 55.5,31.5 - parent: 0 - type: Transform -- uid: 28546 - type: CableApcExtension - components: - - pos: 55.5,30.5 - parent: 0 - type: Transform -- uid: 28547 - type: CableApcExtension - components: - - pos: 55.5,29.5 - parent: 0 - type: Transform -- uid: 28548 - type: CableApcExtension - components: - - pos: 55.5,28.5 - parent: 0 - type: Transform -- uid: 28549 - type: CableApcExtension - components: - - pos: 55.5,27.5 - parent: 0 - type: Transform -- uid: 28550 - type: CableApcExtension - components: - - pos: 55.5,26.5 - parent: 0 - type: Transform -- uid: 28551 - type: CableApcExtension - components: - - pos: 55.5,33.5 - parent: 0 - type: Transform -- uid: 28552 - type: CableApcExtension - components: - - pos: 67.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28553 - type: CableApcExtension - components: - - pos: 66.5,30.5 - parent: 0 - type: Transform -- uid: 28554 - type: CableApcExtension - components: - - pos: 65.5,30.5 - parent: 0 - type: Transform -- uid: 28555 - type: CableApcExtension - components: - - pos: 64.5,30.5 - parent: 0 - type: Transform -- uid: 28556 - type: CableApcExtension - components: - - pos: 63.5,30.5 - parent: 0 - type: Transform -- uid: 28557 - type: CableApcExtension - components: - - pos: 64.5,31.5 - parent: 0 - type: Transform -- uid: 28558 - type: CableApcExtension - components: - - pos: 64.5,32.5 - parent: 0 - type: Transform -- uid: 28559 - type: CableApcExtension - components: - - pos: 64.5,33.5 - parent: 0 - type: Transform -- uid: 28560 - type: CableApcExtension - components: - - pos: 64.5,34.5 - parent: 0 - type: Transform -- uid: 28561 - type: CableApcExtension - components: - - pos: 64.5,35.5 - parent: 0 - type: Transform -- uid: 28562 - type: CableApcExtension - components: - - pos: 64.5,36.5 - parent: 0 - type: Transform -- uid: 28563 - type: CableApcExtension - components: - - pos: 65.5,33.5 - parent: 0 - type: Transform -- uid: 28564 - type: CableApcExtension - components: - - pos: 66.5,33.5 - parent: 0 - type: Transform -- uid: 28565 - type: CableApcExtension - components: - - pos: 67.5,33.5 - parent: 0 - type: Transform -- uid: 28566 - type: CableApcExtension - components: - - pos: 68.5,33.5 - parent: 0 - type: Transform -- uid: 28567 - type: CableApcExtension - components: - - pos: 69.5,33.5 - parent: 0 - type: Transform -- uid: 28568 - type: CableApcExtension - components: - - pos: 70.5,33.5 - parent: 0 - type: Transform -- uid: 28569 - type: CableApcExtension - components: - - pos: 71.5,33.5 - parent: 0 - type: Transform -- uid: 28570 - type: CableApcExtension - components: - - pos: 72.5,33.5 - parent: 0 - type: Transform -- uid: 28571 - type: CableApcExtension - components: - - pos: 70.5,34.5 - parent: 0 - type: Transform -- uid: 28572 - type: CableApcExtension - components: - - pos: 70.5,35.5 - parent: 0 - type: Transform -- uid: 28573 - type: CableApcExtension - components: - - pos: 70.5,36.5 - parent: 0 - type: Transform -- uid: 28574 - type: CableApcExtension - components: - - pos: 69.5,32.5 - parent: 0 - type: Transform -- uid: 28575 - type: CableApcExtension - components: - - pos: 69.5,31.5 - parent: 0 - type: Transform -- uid: 28576 - type: CableApcExtension - components: - - pos: 69.5,30.5 - parent: 0 - type: Transform -- uid: 28577 - type: CableApcExtension - components: - - pos: 69.5,29.5 - parent: 0 - type: Transform -- uid: 28578 - type: CableApcExtension - components: - - pos: 69.5,28.5 - parent: 0 - type: Transform -- uid: 28579 - type: CableApcExtension - components: - - pos: 69.5,27.5 - parent: 0 - type: Transform -- uid: 28580 - type: CableApcExtension - components: - - pos: 69.5,26.5 - parent: 0 - type: Transform -- uid: 28581 - type: CableApcExtension - components: - - pos: 68.5,28.5 - parent: 0 - type: Transform -- uid: 28582 - type: CableApcExtension - components: - - pos: 67.5,28.5 - parent: 0 - type: Transform -- uid: 28583 - type: CableApcExtension - components: - - pos: 66.5,28.5 - parent: 0 - type: Transform -- uid: 28584 - type: CableApcExtension - components: - - pos: 65.5,28.5 - parent: 0 - type: Transform -- uid: 28585 - type: CableApcExtension - components: - - pos: 64.5,28.5 - parent: 0 - type: Transform -- uid: 28586 - type: CableApcExtension - components: - - pos: 64.5,29.5 - parent: 0 - type: Transform -- uid: 28587 - type: CableApcExtension - components: - - pos: 76.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28588 - type: CableApcExtension - components: - - pos: 76.5,35.5 - parent: 0 - type: Transform -- uid: 28589 - type: CableApcExtension - components: - - pos: 76.5,34.5 - parent: 0 - type: Transform -- uid: 28590 - type: CableApcExtension - components: - - pos: 76.5,33.5 - parent: 0 - type: Transform -- uid: 28591 - type: CableApcExtension - components: - - pos: 76.5,32.5 - parent: 0 - type: Transform -- uid: 28592 - type: CableApcExtension - components: - - pos: 76.5,31.5 - parent: 0 - type: Transform -- uid: 28593 - type: CableApcExtension - components: - - pos: 77.5,32.5 - parent: 0 - type: Transform -- uid: 28594 - type: CableApcExtension - components: - - pos: 78.5,32.5 - parent: 0 - type: Transform -- uid: 28595 - type: CableApcExtension - components: - - pos: 79.5,32.5 - parent: 0 - type: Transform -- uid: 28596 - type: CableApcExtension - components: - - pos: 77.5,35.5 - parent: 0 - type: Transform -- uid: 28597 - type: CableApcExtension - components: - - pos: 78.5,35.5 - parent: 0 - type: Transform -- uid: 28598 - type: CableApcExtension - components: - - pos: 79.5,35.5 - parent: 0 - type: Transform -- uid: 28599 - type: CableApcExtension - components: - - pos: 77.5,31.5 - parent: 0 - type: Transform -- uid: 28600 - type: CableApcExtension - components: - - pos: 77.5,30.5 - parent: 0 - type: Transform -- uid: 28601 - type: CableApcExtension - components: - - pos: 77.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28602 - type: CableApcExtension - components: - - pos: 76.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28603 - type: CableApcExtension - components: - - pos: 75.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28604 - type: CableApcExtension - components: - - pos: 74.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28605 - type: CableApcExtension - components: - - pos: 73.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28606 - type: CableApcExtension - components: - - pos: 74.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28607 - type: CableApcExtension - components: - - pos: 74.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28608 - type: CableApcExtension - components: - - pos: 74.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28609 - type: CableApcExtension - components: - - pos: 74.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28610 - type: CableApcExtension - components: - - pos: 74.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28611 - type: CableApcExtension - components: - - pos: 74.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28612 - type: CableApcExtension - components: - - pos: 74.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28613 - type: CableApcExtension - components: - - pos: 73.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28614 - type: CableApcExtension - components: - - pos: 72.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28615 - type: CableApcExtension - components: - - pos: 80.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28616 - type: CableApcExtension - components: - - pos: 81.5,23.5 - parent: 0 - type: Transform -- uid: 28617 - type: CableApcExtension - components: - - pos: 82.5,23.5 - parent: 0 - type: Transform -- uid: 28618 - type: CableApcExtension - components: - - pos: 82.5,24.5 - parent: 0 - type: Transform -- uid: 28619 - type: CableApcExtension - components: - - pos: 82.5,25.5 - parent: 0 - type: Transform -- uid: 28620 - type: CableApcExtension - components: - - pos: 82.5,26.5 - parent: 0 - type: Transform -- uid: 28621 - type: CableApcExtension - components: - - pos: 82.5,27.5 - parent: 0 - type: Transform -- uid: 28622 - type: CableApcExtension - components: - - pos: 82.5,28.5 - parent: 0 - type: Transform -- uid: 28623 - type: CableApcExtension - components: - - pos: 82.5,29.5 - parent: 0 - type: Transform -- uid: 28624 - type: CableApcExtension - components: - - pos: 82.5,30.5 - parent: 0 - type: Transform -- uid: 28625 - type: CableApcExtension - components: - - pos: 82.5,31.5 - parent: 0 - type: Transform -- uid: 28626 - type: CableApcExtension - components: - - pos: 82.5,32.5 - parent: 0 - type: Transform -- uid: 28627 - type: CableApcExtension - components: - - pos: 82.5,33.5 - parent: 0 - type: Transform -- uid: 28628 - type: CableApcExtension - components: - - pos: 82.5,34.5 - parent: 0 - type: Transform -- uid: 28629 - type: CableApcExtension - components: - - pos: 82.5,35.5 - parent: 0 - type: Transform -- uid: 28630 - type: CableApcExtension - components: - - pos: 82.5,36.5 - parent: 0 - type: Transform -- uid: 28631 - type: CableApcExtension - components: - - pos: 82.5,37.5 - parent: 0 - type: Transform -- uid: 28632 - type: CableApcExtension - components: - - pos: 82.5,38.5 - parent: 0 - type: Transform -- uid: 28633 - type: CableApcExtension - components: - - pos: 82.5,39.5 - parent: 0 - type: Transform -- uid: 28634 - type: CableApcExtension - components: - - pos: 82.5,22.5 - parent: 0 - type: Transform -- uid: 28635 - type: CableApcExtension - components: - - pos: 82.5,21.5 - parent: 0 - type: Transform -- uid: 28636 - type: CableApcExtension - components: - - pos: 82.5,20.5 - parent: 0 - type: Transform -- uid: 28637 - type: CableApcExtension - components: - - pos: 82.5,19.5 - parent: 0 - type: Transform -- uid: 28638 - type: CableApcExtension - components: - - pos: 82.5,18.5 - parent: 0 - type: Transform -- uid: 28639 - type: CableApcExtension - components: - - pos: 81.5,18.5 - parent: 0 - type: Transform -- uid: 28640 - type: CableApcExtension - components: - - pos: 80.5,18.5 - parent: 0 - type: Transform -- uid: 28641 - type: CableApcExtension - components: - - pos: 79.5,18.5 - parent: 0 - type: Transform -- uid: 28642 - type: CableApcExtension - components: - - pos: 78.5,18.5 - parent: 0 - type: Transform -- uid: 28643 - type: CableApcExtension - components: - - pos: 83.5,18.5 - parent: 0 - type: Transform -- uid: 28644 - type: CableApcExtension - components: - - pos: 84.5,18.5 - parent: 0 - type: Transform -- uid: 28645 - type: CableApcExtension - components: - - pos: 85.5,18.5 - parent: 0 - type: Transform -- uid: 28646 - type: CableApcExtension - components: - - pos: 86.5,18.5 - parent: 0 - type: Transform -- uid: 28647 - type: CableApcExtension - components: - - pos: 83.5,21.5 - parent: 0 - type: Transform -- uid: 28648 - type: CableApcExtension - components: - - pos: 84.5,21.5 - parent: 0 - type: Transform -- uid: 28649 - type: CableApcExtension - components: - - pos: 85.5,21.5 - parent: 0 - type: Transform -- uid: 28650 - type: CableApcExtension - components: - - pos: 86.5,21.5 - parent: 0 - type: Transform -- uid: 28651 - type: CableApcExtension - components: - - pos: 81.5,21.5 - parent: 0 - type: Transform -- uid: 28652 - type: CableApcExtension - components: - - pos: 80.5,21.5 - parent: 0 - type: Transform -- uid: 28653 - type: CableApcExtension - components: - - pos: 79.5,21.5 - parent: 0 - type: Transform -- uid: 28654 - type: CableApcExtension - components: - - pos: 78.5,21.5 - parent: 0 - type: Transform -- uid: 28655 - type: APCBasic - components: - - pos: 86.5,17.5 - parent: 0 - type: Transform -- uid: 28656 - type: CableApcExtension - components: - - pos: 80.5,24.5 - parent: 0 - type: Transform -- uid: 28657 - type: CableApcExtension - components: - - pos: 79.5,24.5 - parent: 0 - type: Transform -- uid: 28658 - type: CableApcExtension - components: - - pos: 78.5,24.5 - parent: 0 - type: Transform -- uid: 28659 - type: CableApcExtension - components: - - pos: 83.5,24.5 - parent: 0 - type: Transform -- uid: 28660 - type: CableApcExtension - components: - - pos: 84.5,24.5 - parent: 0 - type: Transform -- uid: 28661 - type: CableApcExtension - components: - - pos: 85.5,24.5 - parent: 0 - type: Transform -- uid: 28662 - type: CableApcExtension - components: - - pos: 86.5,24.5 - parent: 0 - type: Transform -- uid: 28663 - type: APCBasic - components: - - pos: 92.5,24.5 - parent: 0 - type: Transform -- uid: 28664 - type: CableMV - components: - - pos: 106.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28665 - type: CableMV - components: - - pos: 105.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28666 - type: CableMV - components: - - pos: 104.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28667 - type: CableMV - components: - - pos: 103.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28668 - type: CableMV - components: - - pos: 102.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28669 - type: CableMV - components: - - pos: 101.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28670 - type: CableMV - components: - - pos: 100.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28671 - type: CableMV - components: - - pos: 100.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28672 - type: CableMV - components: - - pos: 100.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28673 - type: CableMV - components: - - pos: 99.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28674 - type: CableMV - components: - - pos: 98.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28675 - type: CableMV - components: - - pos: 98.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28676 - type: CableMV - components: - - pos: 98.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28677 - type: CableMV - components: - - pos: 98.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28678 - type: CableMV - components: - - pos: 98.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28679 - type: CableMV - components: - - pos: 97.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28680 - type: CableMV - components: - - pos: 96.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28681 - type: CableMV - components: - - pos: 95.5,14.5 - parent: 0 - type: Transform -- uid: 28682 - type: CableMV - components: - - pos: 94.5,14.5 - parent: 0 - type: Transform -- uid: 28683 - type: CableMV - components: - - pos: 93.5,14.5 - parent: 0 - type: Transform -- uid: 28684 - type: CableMV - components: - - pos: 92.5,14.5 - parent: 0 - type: Transform -- uid: 28685 - type: CableMV - components: - - pos: 91.5,14.5 - parent: 0 - type: Transform -- uid: 28686 - type: CableMV - components: - - pos: 90.5,14.5 - parent: 0 - type: Transform -- uid: 28687 - type: CableMV - components: - - pos: 89.5,14.5 - parent: 0 - type: Transform -- uid: 28688 - type: CableMV - components: - - pos: 88.5,14.5 - parent: 0 - type: Transform -- uid: 28689 - type: CableMV - components: - - pos: 87.5,14.5 - parent: 0 - type: Transform -- uid: 28690 - type: CableMV - components: - - pos: 86.5,14.5 - parent: 0 - type: Transform -- uid: 28691 - type: CableMV - components: - - pos: 86.5,15.5 - parent: 0 - type: Transform -- uid: 28692 - type: CableMV - components: - - pos: 86.5,16.5 - parent: 0 - type: Transform -- uid: 28693 - type: CableMV - components: - - pos: 86.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28694 - type: CableMV - components: - - pos: 92.5,15.5 - parent: 0 - type: Transform -- uid: 28695 - type: CableMV - components: - - pos: 92.5,16.5 - parent: 0 - type: Transform -- uid: 28696 - type: CableMV - components: - - pos: 92.5,17.5 - parent: 0 - type: Transform -- uid: 28697 - type: CableMV - components: - - pos: 92.5,18.5 - parent: 0 - type: Transform -- uid: 28698 - type: CableMV - components: - - pos: 92.5,19.5 - parent: 0 - type: Transform -- uid: 28699 - type: CableMV - components: - - pos: 92.5,20.5 - parent: 0 - type: Transform -- uid: 28700 - type: CableMV - components: - - pos: 92.5,21.5 - parent: 0 - type: Transform -- uid: 28701 - type: CableMV - components: - - pos: 92.5,22.5 - parent: 0 - type: Transform -- uid: 28702 - type: CableMV - components: - - pos: 92.5,23.5 - parent: 0 - type: Transform -- uid: 28703 - type: CableMV - components: - - pos: 92.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28704 - type: CableApcExtension - components: - - pos: 86.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28705 - type: CableApcExtension - components: - - pos: 86.5,16.5 - parent: 0 - type: Transform -- uid: 28706 - type: CableApcExtension - components: - - pos: 86.5,15.5 - parent: 0 - type: Transform -- uid: 28707 - type: CableApcExtension - components: - - pos: 86.5,14.5 - parent: 0 - type: Transform -- uid: 28708 - type: CableApcExtension - components: - - pos: 86.5,13.5 - parent: 0 - type: Transform -- uid: 28709 - type: CableApcExtension - components: - - pos: 86.5,12.5 - parent: 0 - type: Transform -- uid: 28710 - type: CableApcExtension - components: - - pos: 85.5,13.5 - parent: 0 - type: Transform -- uid: 28711 - type: CableApcExtension - components: - - pos: 84.5,13.5 - parent: 0 - type: Transform -- uid: 28712 - type: CableApcExtension - components: - - pos: 83.5,13.5 - parent: 0 - type: Transform -- uid: 28713 - type: CableApcExtension - components: - - pos: 82.5,13.5 - parent: 0 - type: Transform -- uid: 28714 - type: CableApcExtension - components: - - pos: 81.5,13.5 - parent: 0 - type: Transform -- uid: 28715 - type: CableApcExtension - components: - - pos: 80.5,13.5 - parent: 0 - type: Transform -- uid: 28716 - type: CableApcExtension - components: - - pos: 79.5,13.5 - parent: 0 - type: Transform -- uid: 28717 - type: CableApcExtension - components: - - pos: 78.5,13.5 - parent: 0 - type: Transform -- uid: 28718 - type: CableApcExtension - components: - - pos: 77.5,13.5 - parent: 0 - type: Transform -- uid: 28719 - type: CableApcExtension - components: - - pos: 76.5,13.5 - parent: 0 - type: Transform -- uid: 28720 - type: CableApcExtension - components: - - pos: 76.5,14.5 - parent: 0 - type: Transform -- uid: 28721 - type: CableApcExtension - components: - - pos: 70.5,14.5 - parent: 0 - type: Transform -- uid: 28722 - type: CableApcExtension - components: - - pos: 71.5,14.5 - parent: 0 - type: Transform -- uid: 28723 - type: CableApcExtension - components: - - pos: 72.5,14.5 - parent: 0 - type: Transform -- uid: 28724 - type: CableApcExtension - components: - - pos: 73.5,14.5 - parent: 0 - type: Transform -- uid: 28725 - type: CableApcExtension - components: - - pos: 73.5,13.5 - parent: 0 - type: Transform -- uid: 28726 - type: CableApcExtension - components: - - pos: 73.5,12.5 - parent: 0 - type: Transform -- uid: 28727 - type: CableApcExtension - components: - - pos: 73.5,11.5 - parent: 0 - type: Transform -- uid: 28728 - type: CableApcExtension - components: - - pos: 73.5,10.5 - parent: 0 - type: Transform -- uid: 28729 - type: CableApcExtension - components: - - pos: 73.5,9.5 - parent: 0 - type: Transform -- uid: 28730 - type: CableApcExtension - components: - - pos: 73.5,8.5 - parent: 0 - type: Transform -- uid: 28731 - type: CableApcExtension - components: - - pos: 73.5,7.5 - parent: 0 - type: Transform -- uid: 28732 - type: CableApcExtension - components: - - pos: 73.5,15.5 - parent: 0 - type: Transform -- uid: 28733 - type: CableApcExtension - components: - - pos: 73.5,16.5 - parent: 0 - type: Transform -- uid: 28734 - type: CableApcExtension - components: - - pos: 74.5,16.5 - parent: 0 - type: Transform -- uid: 28735 - type: CableApcExtension - components: - - pos: 74.5,17.5 - parent: 0 - type: Transform -- uid: 28736 - type: CableApcExtension - components: - - pos: 74.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28737 - type: CableApcExtension - components: - - pos: 74.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28738 - type: CableApcExtension - components: - - pos: 72.5,16.5 - parent: 0 - type: Transform -- uid: 28739 - type: CableApcExtension - components: - - pos: 72.5,17.5 - parent: 0 - type: Transform -- uid: 28740 - type: CableApcExtension - components: - - pos: 72.5,18.5 - parent: 0 - type: Transform -- uid: 28741 - type: CableApcExtension - components: - - pos: 85.5,15.5 - parent: 0 - type: Transform -- uid: 28742 - type: CableApcExtension - components: - - pos: 84.5,15.5 - parent: 0 - type: Transform -- uid: 28743 - type: CableApcExtension - components: - - pos: 83.5,15.5 - parent: 0 - type: Transform -- uid: 28744 - type: CableApcExtension - components: - - pos: 82.5,15.5 - parent: 0 - type: Transform -- uid: 28745 - type: CableApcExtension - components: - - pos: 81.5,15.5 - parent: 0 - type: Transform -- uid: 28746 - type: CableApcExtension - components: - - pos: 80.5,15.5 - parent: 0 - type: Transform -- uid: 28747 - type: CableApcExtension - components: - - pos: 79.5,15.5 - parent: 0 - type: Transform -- uid: 28748 - type: CableApcExtension - components: - - pos: 92.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28749 - type: CableApcExtension - components: - - pos: 92.5,23.5 - parent: 0 - type: Transform -- uid: 28750 - type: CableApcExtension - components: - - pos: 92.5,22.5 - parent: 0 - type: Transform -- uid: 28751 - type: CableApcExtension - components: - - pos: 92.5,21.5 - parent: 0 - type: Transform -- uid: 28752 - type: CableApcExtension - components: - - pos: 92.5,20.5 - parent: 0 - type: Transform -- uid: 28753 - type: CableApcExtension - components: - - pos: 92.5,19.5 - parent: 0 - type: Transform -- uid: 28754 - type: CableApcExtension - components: - - pos: 92.5,18.5 - parent: 0 - type: Transform -- uid: 28755 - type: CableApcExtension - components: - - pos: 92.5,17.5 - parent: 0 - type: Transform -- uid: 28756 - type: CableApcExtension - components: - - pos: 92.5,16.5 - parent: 0 - type: Transform -- uid: 28757 - type: CableApcExtension - components: - - pos: 92.5,15.5 - parent: 0 - type: Transform -- uid: 28758 - type: CableApcExtension - components: - - pos: 92.5,14.5 - parent: 0 - type: Transform -- uid: 28759 - type: CableApcExtension - components: - - pos: 92.5,13.5 - parent: 0 - type: Transform -- uid: 28760 - type: CableApcExtension - components: - - pos: 92.5,12.5 - parent: 0 - type: Transform -- uid: 28761 - type: CableApcExtension - components: - - pos: 93.5,13.5 - parent: 0 - type: Transform -- uid: 28762 - type: CableApcExtension - components: - - pos: 94.5,13.5 - parent: 0 - type: Transform -- uid: 28763 - type: CableApcExtension - components: - - pos: 91.5,14.5 - parent: 0 - type: Transform -- uid: 28764 - type: CableApcExtension - components: - - pos: 90.5,14.5 - parent: 0 - type: Transform -- uid: 28765 - type: CableApcExtension - components: - - pos: 93.5,20.5 - parent: 0 - type: Transform -- uid: 28766 - type: CableApcExtension - components: - - pos: 91.5,22.5 - parent: 0 - type: Transform -- uid: 28767 - type: CableApcExtension - components: - - pos: 90.5,22.5 - parent: 0 - type: Transform -- uid: 28768 - type: CableApcExtension - components: - - pos: 94.5,20.5 - parent: 0 - type: Transform -- uid: 28769 - type: CableApcExtension - components: - - pos: 95.5,20.5 - parent: 0 - type: Transform -- uid: 28770 - type: CableApcExtension - components: - - pos: 96.5,20.5 - parent: 0 - type: Transform -- uid: 28771 - type: CableApcExtension - components: - - pos: 97.5,20.5 - parent: 0 - type: Transform -- uid: 28772 - type: CableApcExtension - components: - - pos: 98.5,20.5 - parent: 0 - type: Transform -- uid: 28773 - type: CableApcExtension - components: - - pos: 99.5,20.5 - parent: 0 - type: Transform -- uid: 28774 - type: CableApcExtension - components: - - pos: 100.5,20.5 - parent: 0 - type: Transform -- uid: 28775 - type: CableApcExtension - components: - - pos: 94.5,14.5 - parent: 0 - type: Transform -- uid: 28776 - type: CableApcExtension - components: - - pos: 95.5,14.5 - parent: 0 - type: Transform -- uid: 28777 - type: CableApcExtension - components: - - pos: 96.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28778 - type: CableApcExtension - components: - - pos: 97.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28779 - type: CableApcExtension - components: - - pos: 98.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28780 - type: CableApcExtension - components: - - pos: 98.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28781 - type: CableApcExtension - components: - - pos: 98.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28782 - type: CableApcExtension - components: - - pos: 98.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28783 - type: CableApcExtension - components: - - pos: 98.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28784 - type: CableApcExtension - components: - - pos: 99.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28785 - type: CableApcExtension - components: - - pos: 97.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28786 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 82.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28787 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 82.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28788 - type: GasPipeStraight - components: - - pos: 77.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28789 - type: GasPipeStraight - components: - - pos: 77.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28790 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28791 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28792 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 78.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28793 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 77.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28794 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 77.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28795 - type: GasVentScrubber - components: - - pos: 87.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28796 - type: FirelockGlass - components: - - pos: 88.5,13.5 - parent: 0 - type: Transform -- uid: 28797 - type: FirelockGlass - components: - - pos: 88.5,14.5 - parent: 0 - type: Transform -- uid: 28798 - type: FirelockGlass - components: - - pos: 88.5,15.5 - parent: 0 - type: Transform -- uid: 28799 - type: FirelockGlass - components: - - pos: 92.5,17.5 - parent: 0 - type: Transform -- uid: 28800 - type: FirelockGlass - components: - - pos: 91.5,17.5 - parent: 0 - type: Transform -- uid: 28801 - type: AirSensor - components: - - pos: 78.5,14.5 - parent: 0 - type: Transform -- uid: 28802 - type: AirSensor - components: - - pos: 65.5,11.5 - parent: 0 - type: Transform -- uid: 28803 - type: AirSensor - components: - - pos: 82.5,34.5 - parent: 0 - type: Transform -- uid: 28804 - type: AirSensor - components: - - pos: 55.5,30.5 - parent: 0 - type: Transform -- uid: 28805 - type: AirSensor - components: - - pos: 45.5,33.5 - parent: 0 - type: Transform -- uid: 28806 - type: AirSensor - components: - - pos: 29.5,33.5 - parent: 0 - type: Transform -- uid: 28807 - type: AirSensor - components: - - pos: 10.5,33.5 - parent: 0 - type: Transform -- uid: 28808 - type: TintedWindow - components: - - pos: 80.5,25.5 - parent: 0 - type: Transform -- uid: 28809 - type: TintedWindow - components: - - pos: 84.5,25.5 - parent: 0 - type: Transform -- uid: 28810 - type: TintedWindow - components: - - pos: 84.5,22.5 - parent: 0 - type: Transform -- uid: 28811 - type: TintedWindow - components: - - pos: 80.5,22.5 - parent: 0 - type: Transform -- uid: 28812 - type: TintedWindow - components: - - pos: 80.5,19.5 - parent: 0 - type: Transform -- uid: 28813 - type: TintedWindow - components: - - pos: 84.5,19.5 - parent: 0 - type: Transform -- uid: 28814 - type: Grille - components: - - pos: 88.5,12.5 - parent: 0 - type: Transform -- uid: 28815 - type: Grille - components: - - pos: 88.5,16.5 - parent: 0 - type: Transform -- uid: 28816 - type: Grille - components: - - pos: 90.5,17.5 - parent: 0 - type: Transform -- uid: 28817 - type: Grille - components: - - pos: 93.5,17.5 - parent: 0 - type: Transform -- uid: 28818 - type: Window - components: - - pos: 88.5,12.5 - parent: 0 - type: Transform -- uid: 28819 - type: Window - components: - - pos: 88.5,16.5 - parent: 0 - type: Transform -- uid: 28820 - type: Window - components: - - pos: 90.5,17.5 - parent: 0 - type: Transform -- uid: 28821 - type: Window - components: - - pos: 93.5,17.5 - parent: 0 - type: Transform -- uid: 28822 - type: AirlockMaintLocked - components: - - pos: 101.5,20.5 - parent: 0 - type: Transform -- uid: 28823 - type: AirlockMaintLocked - components: - - pos: 90.5,24.5 - parent: 0 - type: Transform -- uid: 28824 - type: AirlockMaintLocked - components: - - pos: 84.5,27.5 - parent: 0 - type: Transform -- uid: 28825 - type: AirlockMaintLocked - components: - - pos: 74.5,20.5 - parent: 0 - type: Transform -- uid: 28826 - type: AirlockMaintLocked - components: - - pos: 57.5,24.5 - parent: 0 - type: Transform -- uid: 28827 - type: AirlockMaintLocked - components: - - pos: 61.5,20.5 - parent: 0 - type: Transform -- uid: 28828 - type: AirlockMaintLocked - components: - - pos: 33.5,37.5 - parent: 0 - type: Transform -- uid: 28829 - type: AirlockMaintLocked - components: - - pos: 55.5,44.5 - parent: 0 - type: Transform -- uid: 28830 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 63.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28831 - type: GasVentPump - components: - - pos: 71.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28832 - type: FloorWaterEntity - components: - - pos: 73.5,9.5 - parent: 0 - type: Transform -- uid: 28833 - type: FloorWaterEntity - components: - - pos: 67.5,8.5 - parent: 0 - type: Transform -- uid: 28834 - type: AirAlarm - components: - - pos: 63.5,13.5 - parent: 0 - type: Transform - - devices: - - 21394 - - 21395 - - 21396 - - 21397 - - 21398 - - 28802 - - invalid - - 28830 - - 28831 - - 29280 - type: DeviceList -- uid: 28835 - type: FireAlarm - components: - - pos: 62.5,13.5 - parent: 0 - type: Transform - - devices: - - 21394 - - 21395 - - 21396 - - 21397 - - 21398 - - 28802 - type: DeviceList -- uid: 28836 - type: FireAlarm - components: - - pos: 79.5,17.5 - parent: 0 - type: Transform - - devices: - - 21396 - - 21397 - - 21398 - - 28796 - - 28797 - - 28798 - - 21403 - - 21402 - - 21401 - - 28801 - type: DeviceList -- uid: 28837 - type: AirAlarm - components: - - pos: 80.5,17.5 - parent: 0 - type: Transform - - devices: - - 21396 - - 21397 - - 21398 - - 28796 - - 28797 - - 28798 - - 21403 - - 21402 - - 21401 - - 28801 - - 28794 - - 28795 - type: DeviceList -- uid: 28838 - type: AirAlarm - components: - - pos: 94.5,17.5 - parent: 0 - type: Transform - - devices: - - 28800 - - 28799 - - 28798 - - 28797 - - 28796 - - 28902 - - 28264 - - 28267 - type: DeviceList -- uid: 28839 - type: FireAlarm - components: - - pos: 89.5,17.5 - parent: 0 - type: Transform - - devices: - - 28800 - - 28799 - - 28798 - - 28797 - - 28796 - - 28902 - type: DeviceList -- uid: 28840 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 84.5,34.5 - parent: 0 - type: Transform - - devices: - - 21410 - - 21411 - - 21412 - - 21407 - - 21408 - - 21409 - - 21406 - - 21405 - - 21404 - - 28803 - type: DeviceList -- uid: 28841 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 84.5,35.5 - parent: 0 - type: Transform - - devices: - - 21410 - - 21411 - - 21412 - - 21407 - - 21408 - - 21409 - - 21406 - - 21405 - - 21404 - - 28803 - - 28787 - - 28786 - type: DeviceList -- uid: 28842 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 55.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28843 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 55.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28844 - type: GasPipeTJunction - components: - - pos: 59.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28845 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 59.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28846 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28847 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 61.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28848 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28849 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28850 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28851 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 61.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28852 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28853 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28854 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28855 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28856 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 56.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28857 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28858 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28859 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28860 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 64.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28861 - type: GasPipeTJunction - components: - - pos: 64.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28862 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 66.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28863 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 66.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28864 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28865 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 66.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28866 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28867 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28868 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28869 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28870 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28871 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 69.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28872 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 69.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28873 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 69.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28874 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 69.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28875 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 59.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28876 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 64.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28877 - type: GasVentScrubber - components: - - pos: 69.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28878 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 69.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28879 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 69.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28880 - type: GasVentPump - components: - - pos: 64.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28881 - type: GasVentPump - components: - - pos: 59.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28882 - type: GasPipeStraight - components: - - pos: 70.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28883 - type: GasPipeStraight - components: - - pos: 70.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28884 - type: GasPipeStraight - components: - - pos: 70.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28885 - type: GasPipeStraight - components: - - pos: 70.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28886 - type: GasPipeStraight - components: - - pos: 70.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28887 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 70.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28888 - type: GasVentPump - components: - - pos: 30.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28889 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 28.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28890 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 44.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28891 - type: GasVentPump - components: - - pos: 46.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28892 - type: GasPipeTJunction - components: - - pos: 44.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28893 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 46.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28894 - type: AirAlarm - components: - - pos: 9.5,35.5 - parent: 0 - type: Transform - - devices: - - 1802 - - 1803 - - 1804 - - 17783 - - 17782 - - 17781 - - 21354 - - 21355 - - 21356 - - 28807 - - 8263 - - 8256 - type: DeviceList -- uid: 28895 - type: FireAlarm - components: - - pos: 17.5,35.5 - parent: 0 - type: Transform - - devices: - - 1802 - - 1803 - - 1804 - - 17783 - - 17782 - - 17781 - - 21354 - - 21355 - - 21356 - - 28807 - type: DeviceList -- uid: 28896 - type: FireAlarm - components: - - pos: 26.5,35.5 - parent: 0 - type: Transform - - devices: - - 21354 - - 21355 - - 21356 - - 8064 - - 8065 - - 21357 - - 21358 - - 21359 - - 28806 - type: DeviceList -- uid: 28897 - type: AirAlarm - components: - - pos: 25.5,35.5 - parent: 0 - type: Transform - - devices: - - 21354 - - 21355 - - 21356 - - 8064 - - 8065 - - 21357 - - 21358 - - 21359 - - 28806 - - 28889 - - 28888 - type: DeviceList -- uid: 28898 - type: FireAlarm - components: - - pos: 48.5,35.5 - parent: 0 - type: Transform - - devices: - - 21360 - - 21361 - - 21362 - - 21357 - - 21358 - - 21359 - - 28805 - type: DeviceList -- uid: 28899 - type: AirAlarm - components: - - pos: 46.5,35.5 - parent: 0 - type: Transform - - devices: - - 21360 - - 21361 - - 21362 - - 21357 - - 21358 - - 21359 - - 28805 - - 28890 - - 28891 - type: DeviceList -- uid: 28900 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 53.5,31.5 - parent: 0 - type: Transform - - devices: - - 21360 - - 21361 - - 21362 - - 21363 - - 21364 - - 21365 - - 21414 - - 21413 - - 21368 - - 21367 - - 21366 - - 28804 - type: DeviceList -- uid: 28901 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 57.5,30.5 - parent: 0 - type: Transform - - devices: - - 21360 - - 21361 - - 21362 - - 21363 - - 21364 - - 21365 - - 21414 - - 21413 - - 21368 - - 21367 - - 21366 - - 28804 - - 28843 - - 28842 - type: DeviceList -- uid: 28902 - type: AirSensor - components: - - pos: 90.5,15.5 - parent: 0 - type: Transform -- uid: 28903 - type: Grille - components: - - pos: 73.5,18.5 - parent: 0 - type: Transform -- uid: 28904 - type: Grille - components: - - pos: 73.5,19.5 - parent: 0 - type: Transform -- uid: 28905 - type: Window - components: - - pos: 73.5,18.5 - parent: 0 - type: Transform -- uid: 28906 - type: Window - components: - - pos: 73.5,19.5 - parent: 0 - type: Transform -- uid: 28907 - type: AirlockMaintLocked - components: - - pos: 64.5,3.5 - parent: 0 - type: Transform -- uid: 28908 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-15.5 - parent: 0 - type: Transform -- uid: 28909 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 74.5,-24.5 - parent: 0 - type: Transform -- uid: 28910 - type: AirlockMaintGlassLocked - components: - - rot: 3.141592653589793 rad - pos: 120.5,1.5 - parent: 0 - type: Transform -- uid: 28911 - type: AirlockMaintGlassLocked - components: - - rot: 3.141592653589793 rad - pos: 124.5,-0.5 - parent: 0 - type: Transform -- uid: 28912 - type: ToiletDirtyWater - components: - - rot: 1.5707963267948966 rad - pos: 58.5,14.5 - parent: 0 - type: Transform -- uid: 28913 - type: ToiletDirtyWater - components: - - rot: 1.5707963267948966 rad - pos: 58.5,16.5 - parent: 0 - type: Transform -- uid: 28914 - type: ToiletDirtyWater - components: - - rot: 1.5707963267948966 rad - pos: 58.5,18.5 - parent: 0 - type: Transform -- uid: 28915 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: 62.5,14.5 - parent: 0 - type: Transform -- uid: 28916 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: 62.5,15.5 - parent: 0 - type: Transform -- uid: 28917 - type: Mirror - components: - - pos: 63.5,14.5 - parent: 0 - type: Transform -- uid: 28918 - type: Mirror - components: - - pos: 63.5,15.5 - parent: 0 - type: Transform -- uid: 28919 - type: Mirror - components: - - pos: 69.5,18.5 - parent: 0 - type: Transform -- uid: 28920 - type: Airlock - components: - - pos: 61.5,13.5 - parent: 0 - type: Transform -- uid: 28921 - type: Airlock - components: - - pos: 66.5,17.5 - parent: 0 - type: Transform -- uid: 28922 - type: Airlock - components: - - pos: 59.5,14.5 - parent: 0 - type: Transform -- uid: 28923 - type: Airlock - components: - - pos: 59.5,16.5 - parent: 0 - type: Transform -- uid: 28924 - type: Airlock - components: - - pos: 59.5,18.5 - parent: 0 - type: Transform -- uid: 28925 - type: Airlock - components: - - pos: 63.5,18.5 - parent: 0 - type: Transform -- uid: 28926 - type: PoweredSmallLight - components: - - pos: 58.5,14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28927 - type: PoweredSmallLight - components: - - pos: 58.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28928 - type: PoweredSmallLight - components: - - pos: 58.5,18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28929 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28930 - type: PoweredSmallLight - components: - - pos: 66.5,19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28931 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28932 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28933 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28934 - type: CableApcExtension - components: - - pos: 13.5,35.5 - parent: 0 - type: Transform -- uid: 28935 - type: CableApcExtension - components: - - pos: 13.5,34.5 - parent: 0 - type: Transform -- uid: 28936 - type: CableApcExtension - components: - - pos: 13.5,33.5 - parent: 0 - type: Transform -- uid: 28937 - type: CableApcExtension - components: - - pos: 12.5,33.5 - parent: 0 - type: Transform -- uid: 28938 - type: CableApcExtension - components: - - pos: 11.5,33.5 - parent: 0 - type: Transform -- uid: 28939 - type: CableApcExtension - components: - - pos: 10.5,33.5 - parent: 0 - type: Transform -- uid: 28940 - type: CableApcExtension - components: - - pos: 9.5,33.5 - parent: 0 - type: Transform -- uid: 28941 - type: CableApcExtension - components: - - pos: 8.5,33.5 - parent: 0 - type: Transform -- uid: 28942 - type: CableApcExtension - components: - - pos: 7.5,33.5 - parent: 0 - type: Transform -- uid: 28943 - type: CableApcExtension - components: - - pos: 6.5,33.5 - parent: 0 - type: Transform -- uid: 28944 - type: CableApcExtension - components: - - pos: 5.5,33.5 - parent: 0 - type: Transform -- uid: 28945 - type: CableApcExtension - components: - - pos: 4.5,33.5 - parent: 0 - type: Transform -- uid: 28946 - type: CableApcExtension - components: - - pos: 3.5,33.5 - parent: 0 - type: Transform -- uid: 28947 - type: CableApcExtension - components: - - pos: 14.5,33.5 - parent: 0 - type: Transform -- uid: 28948 - type: CableApcExtension - components: - - pos: 15.5,33.5 - parent: 0 - type: Transform -- uid: 28949 - type: CableApcExtension - components: - - pos: 16.5,33.5 - parent: 0 - type: Transform -- uid: 28950 - type: CableApcExtension - components: - - pos: 17.5,33.5 - parent: 0 - type: Transform -- uid: 28951 - type: CableApcExtension - components: - - pos: 18.5,33.5 - parent: 0 - type: Transform -- uid: 28952 - type: CableApcExtension - components: - - pos: 19.5,33.5 - parent: 0 - type: Transform -- uid: 28953 - type: CableApcExtension - components: - - pos: 20.5,33.5 - parent: 0 - type: Transform -- uid: 28954 - type: AirlockGlass - components: - - pos: 57.5,10.5 - parent: 0 - type: Transform -- uid: 28955 - type: Poweredlight - components: - - pos: 19.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28956 - type: Poweredlight - components: - - pos: 9.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28957 - type: Poweredlight - components: - - pos: 2.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28958 - type: AirlockGlass - components: - - pos: 57.5,12.5 - parent: 0 - type: Transform -- uid: 28959 - type: DisposalUnit - components: - - pos: 76.5,12.5 - parent: 0 - type: Transform -- uid: 28960 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 76.5,12.5 - parent: 0 - type: Transform -- uid: 28961 - type: DisposalBend - components: - - pos: 76.5,13.5 - parent: 0 - type: Transform -- uid: 28962 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 75.5,13.5 - parent: 0 - type: Transform -- uid: 28963 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 74.5,13.5 - parent: 0 - type: Transform -- uid: 28964 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 73.5,13.5 - parent: 0 - type: Transform -- uid: 28965 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 72.5,13.5 - parent: 0 - type: Transform -- uid: 28966 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 71.5,13.5 - parent: 0 - type: Transform -- uid: 28967 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 70.5,13.5 - parent: 0 - type: Transform -- uid: 28968 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 69.5,13.5 - parent: 0 - type: Transform -- uid: 28969 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 68.5,13.5 - parent: 0 - type: Transform -- uid: 28970 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 67.5,13.5 - parent: 0 - type: Transform -- uid: 28971 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 66.5,13.5 - parent: 0 - type: Transform -- uid: 28972 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 65.5,13.5 - parent: 0 - type: Transform -- uid: 28973 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 65.5,11.5 - parent: 0 - type: Transform -- uid: 28974 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 56.5,11.5 - parent: 0 - type: Transform -- uid: 28975 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 57.5,11.5 - parent: 0 - type: Transform -- uid: 28976 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 58.5,11.5 - parent: 0 - type: Transform -- uid: 28977 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 59.5,11.5 - parent: 0 - type: Transform -- uid: 28978 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 60.5,11.5 - parent: 0 - type: Transform -- uid: 28979 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 61.5,11.5 - parent: 0 - type: Transform -- uid: 28980 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 62.5,11.5 - parent: 0 - type: Transform -- uid: 28981 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 63.5,11.5 - parent: 0 - type: Transform -- uid: 28982 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 64.5,11.5 - parent: 0 - type: Transform -- uid: 28983 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 65.5,12.5 - parent: 0 - type: Transform -- uid: 28984 - type: CarpetGreen - components: - - pos: 79.5,15.5 - parent: 0 - type: Transform -- uid: 28985 - type: CarpetGreen - components: - - pos: 79.5,14.5 - parent: 0 - type: Transform -- uid: 28986 - type: CarpetGreen - components: - - pos: 79.5,13.5 - parent: 0 - type: Transform -- uid: 28987 - type: CarpetGreen - components: - - pos: 80.5,15.5 - parent: 0 - type: Transform -- uid: 28988 - type: CarpetGreen - components: - - pos: 80.5,14.5 - parent: 0 - type: Transform -- uid: 28989 - type: CarpetGreen - components: - - pos: 80.5,13.5 - parent: 0 - type: Transform -- uid: 28990 - type: CarpetGreen - components: - - pos: 81.5,15.5 - parent: 0 - type: Transform -- uid: 28991 - type: CarpetGreen - components: - - pos: 81.5,14.5 - parent: 0 - type: Transform -- uid: 28992 - type: CarpetGreen - components: - - pos: 81.5,13.5 - parent: 0 - type: Transform -- uid: 28993 - type: CarpetGreen - components: - - pos: 82.5,15.5 - parent: 0 - type: Transform -- uid: 28994 - type: CarpetGreen - components: - - pos: 82.5,14.5 - parent: 0 - type: Transform -- uid: 28995 - type: CarpetGreen - components: - - pos: 82.5,13.5 - parent: 0 - type: Transform -- uid: 28996 - type: CarpetGreen - components: - - pos: 83.5,15.5 - parent: 0 - type: Transform -- uid: 28997 - type: CarpetGreen - components: - - pos: 83.5,14.5 - parent: 0 - type: Transform -- uid: 28998 - type: CarpetGreen - components: - - pos: 83.5,13.5 - parent: 0 - type: Transform -- uid: 28999 - type: CarpetGreen - components: - - pos: 84.5,15.5 - parent: 0 - type: Transform -- uid: 29000 - type: CarpetGreen - components: - - pos: 84.5,14.5 - parent: 0 - type: Transform -- uid: 29001 - type: CarpetGreen - components: - - pos: 84.5,13.5 - parent: 0 - type: Transform -- uid: 29002 - type: CarpetGreen - components: - - pos: 85.5,15.5 - parent: 0 - type: Transform -- uid: 29003 - type: CarpetGreen - components: - - pos: 85.5,14.5 - parent: 0 - type: Transform -- uid: 29004 - type: CarpetGreen - components: - - pos: 85.5,13.5 - parent: 0 - type: Transform -- uid: 29005 - type: Airlock - components: - - pos: 80.5,18.5 - parent: 0 - type: Transform -- uid: 29006 - type: Airlock - components: - - pos: 84.5,18.5 - parent: 0 - type: Transform -- uid: 29007 - type: Airlock - components: - - pos: 84.5,21.5 - parent: 0 - type: Transform -- uid: 29008 - type: Airlock - components: - - pos: 80.5,21.5 - parent: 0 - type: Transform -- uid: 29009 - type: Airlock - components: - - pos: 80.5,24.5 - parent: 0 - type: Transform -- uid: 29010 - type: Airlock - components: - - pos: 84.5,24.5 - parent: 0 - type: Transform -- uid: 29011 - type: TableWood - components: - - pos: 80.5,14.5 - parent: 0 - type: Transform -- uid: 29012 - type: TableWood - components: - - pos: 81.5,14.5 - parent: 0 - type: Transform -- uid: 29013 - type: TableWood - components: - - pos: 82.5,14.5 - parent: 0 - type: Transform -- uid: 29014 - type: TableWood - components: - - pos: 83.5,14.5 - parent: 0 - type: Transform -- uid: 29015 - type: TableWood - components: - - pos: 84.5,14.5 - parent: 0 - type: Transform -- uid: 29016 - type: ComfyChair - components: - - pos: 80.5,15.5 - parent: 0 - type: Transform -- uid: 29017 - type: ComfyChair - components: - - pos: 81.5,15.5 - parent: 0 - type: Transform -- uid: 29018 - type: ComfyChair - components: - - pos: 82.5,15.5 - parent: 0 - type: Transform -- uid: 29019 - type: ComfyChair - components: - - pos: 83.5,15.5 - parent: 0 - type: Transform -- uid: 29020 - type: ComfyChair - components: - - pos: 84.5,15.5 - parent: 0 - type: Transform -- uid: 29021 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 84.5,13.5 - parent: 0 - type: Transform -- uid: 29022 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 83.5,13.5 - parent: 0 - type: Transform -- uid: 29023 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 82.5,13.5 - parent: 0 - type: Transform -- uid: 29024 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 81.5,13.5 - parent: 0 - type: Transform -- uid: 29025 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 80.5,13.5 - parent: 0 - type: Transform -- uid: 29026 - type: PottedPlant0 - components: - - pos: 76.472305,16.385971 - parent: 0 - type: Transform -- uid: 29027 - type: PottedPlant5 - components: - - pos: 87.691055,12.245346 - parent: 0 - type: Transform -- uid: 29028 - type: PottedPlant1 - components: - - pos: 87.534805,16.307846 - parent: 0 - type: Transform -- uid: 29029 - type: WallmountTelevision - components: - - pos: 77.5,17.5 - parent: 0 - type: Transform -- uid: 29030 - type: Poweredlight - components: - - pos: 78.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29031 - type: Poweredlight - components: - - pos: 86.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29032 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 60.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29033 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 59.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29034 - type: Poweredlight - components: - - pos: 69.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29035 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29036 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 67.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29037 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 64.5,13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29038 - type: Poweredlight - components: - - pos: 94.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29039 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 91.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29040 - type: AirlockMaintLocked - components: - - pos: 95.5,14.5 - parent: 0 - type: Transform -- uid: 29041 - type: CableApcExtension - components: - - pos: 92.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29042 - type: CableApcExtension - components: - - pos: 92.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29043 - type: CableApcExtension - components: - - pos: 91.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29044 - type: CableApcExtension - components: - - pos: 90.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29045 - type: CableApcExtension - components: - - pos: 90.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29046 - type: CableApcExtension - components: - - pos: 89.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29047 - type: CableApcExtension - components: - - pos: 88.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29048 - type: CableApcExtension - components: - - pos: 87.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29049 - type: CableApcExtension - components: - - pos: 86.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29050 - type: CableApcExtension - components: - - pos: 93.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29051 - type: CableApcExtension - components: - - pos: 94.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29052 - type: CableApcExtension - components: - - pos: 95.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29053 - type: CableApcExtension - components: - - pos: 96.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29054 - type: CableApcExtension - components: - - pos: 97.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29055 - type: CableApcExtension - components: - - pos: 98.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29056 - type: CableApcExtension - components: - - pos: 99.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29057 - type: CableApcExtension - components: - - pos: 100.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29058 - type: CableApcExtension - components: - - pos: 101.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29059 - type: CableApcExtension - components: - - pos: 102.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29060 - type: CableApcExtension - components: - - pos: 101.5,20.5 - parent: 0 - type: Transform -- uid: 29061 - type: CableApcExtension - components: - - pos: 102.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29062 - type: CableApcExtension - components: - - pos: 102.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29063 - type: CableApcExtension - components: - - pos: 102.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29064 - type: CableApcExtension - components: - - pos: 102.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29065 - type: CableApcExtension - components: - - pos: 102.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29066 - type: CableApcExtension - components: - - pos: 102.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29067 - type: CableApcExtension - components: - - pos: 103.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29068 - type: CableApcExtension - components: - - pos: 102.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29069 - type: CableApcExtension - components: - - pos: 104.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29070 - type: CableApcExtension - components: - - pos: 105.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29071 - type: CableApcExtension - components: - - pos: 106.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29072 - type: CableApcExtension - components: - - pos: 107.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29073 - type: CableApcExtension - components: - - pos: 108.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29074 - type: Airlock - components: - - pos: 74.5,17.5 - parent: 0 - type: Transform -- uid: 29075 - type: AirlockGlass - components: - - pos: 59.5,7.5 - parent: 0 - type: Transform -- uid: 29076 - type: Table - components: - - pos: 60.5,5.5 - parent: 0 - type: Transform -- uid: 29077 - type: Table - components: - - pos: 60.5,6.5 - parent: 0 - type: Transform -- uid: 29078 - type: Table - components: - - pos: 58.5,6.5 - parent: 0 - type: Transform -- uid: 29079 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 58.5,5.5 - parent: 0 - type: Transform -- uid: 29080 - type: CrayonBox - components: - - pos: 60.48084,6.5990562 - parent: 0 - type: Transform -- uid: 29081 - type: AirlockPainter - components: - - pos: 60.527714,6.1146812 - parent: 0 - type: Transform -- uid: 29082 - type: ClothingHeadHatBeret - components: - - pos: 60.558964,5.5990562 - parent: 0 - type: Transform -- uid: 29083 - type: HandLabeler - components: - - pos: 58.465214,6.5053062 - parent: 0 - type: Transform -- uid: 29084 - type: Paper - components: - - pos: 58.48084,6.7240562 - parent: 0 - type: Transform -- uid: 29085 - type: PaperWrittenAMEScribbles - components: - - pos: 80.59372,-2.3680012 - parent: 0 - type: Transform -- uid: 29086 - type: ToolboxArtistic - components: - - pos: 60.53665,5.5331507 - parent: 0 - type: Transform -- uid: 29087 - type: CableApcExtension - components: - - pos: 24.5,32.5 - parent: 0 - type: Transform -- uid: 29088 - type: CableApcExtension - components: - - pos: 24.5,33.5 - parent: 0 - type: Transform -- uid: 29089 - type: CableApcExtension - components: - - pos: 25.5,33.5 - parent: 0 - type: Transform -- uid: 29090 - type: CableApcExtension - components: - - pos: 26.5,33.5 - parent: 0 - type: Transform -- uid: 29091 - type: CableApcExtension - components: - - pos: 27.5,33.5 - parent: 0 - type: Transform -- uid: 29092 - type: CableApcExtension - components: - - pos: 28.5,33.5 - parent: 0 - type: Transform -- uid: 29093 - type: CableApcExtension - components: - - pos: 29.5,33.5 - parent: 0 - type: Transform -- uid: 29094 - type: CableApcExtension - components: - - pos: 30.5,33.5 - parent: 0 - type: Transform -- uid: 29095 - type: CableApcExtension - components: - - pos: 31.5,33.5 - parent: 0 - type: Transform -- uid: 29096 - type: CableApcExtension - components: - - pos: 32.5,33.5 - parent: 0 - type: Transform -- uid: 29097 - type: CableApcExtension - components: - - pos: 33.5,33.5 - parent: 0 - type: Transform -- uid: 29098 - type: CableApcExtension - components: - - pos: 34.5,33.5 - parent: 0 - type: Transform -- uid: 29099 - type: CableApcExtension - components: - - pos: 34.5,34.5 - parent: 0 - type: Transform -- uid: 29100 - type: CableApcExtension - components: - - pos: 34.5,35.5 - parent: 0 - type: Transform -- uid: 29101 - type: CableApcExtension - components: - - pos: 34.5,36.5 - parent: 0 - type: Transform -- uid: 29102 - type: CableApcExtension - components: - - pos: 23.5,33.5 - parent: 0 - type: Transform -- uid: 29103 - type: CableApcExtension - components: - - pos: 54.5,33.5 - parent: 0 - type: Transform -- uid: 29104 - type: CableApcExtension - components: - - pos: 53.5,33.5 - parent: 0 - type: Transform -- uid: 29105 - type: CableApcExtension - components: - - pos: 52.5,33.5 - parent: 0 - type: Transform -- uid: 29106 - type: CableApcExtension - components: - - pos: 51.5,33.5 - parent: 0 - type: Transform -- uid: 29107 - type: CableApcExtension - components: - - pos: 50.5,33.5 - parent: 0 - type: Transform -- uid: 29108 - type: CableApcExtension - components: - - pos: 49.5,33.5 - parent: 0 - type: Transform -- uid: 29109 - type: CableApcExtension - components: - - pos: 48.5,33.5 - parent: 0 - type: Transform -- uid: 29110 - type: CableApcExtension - components: - - pos: 47.5,33.5 - parent: 0 - type: Transform -- uid: 29111 - type: CableApcExtension - components: - - pos: 46.5,33.5 - parent: 0 - type: Transform -- uid: 29112 - type: CableApcExtension - components: - - pos: 45.5,33.5 - parent: 0 - type: Transform -- uid: 29113 - type: CableApcExtension - components: - - pos: 44.5,33.5 - parent: 0 - type: Transform -- uid: 29114 - type: CableApcExtension - components: - - pos: 43.5,33.5 - parent: 0 - type: Transform -- uid: 29115 - type: CableApcExtension - components: - - pos: 42.5,33.5 - parent: 0 - type: Transform -- uid: 29116 - type: CableApcExtension - components: - - pos: 41.5,33.5 - parent: 0 - type: Transform -- uid: 29117 - type: CableApcExtension - components: - - pos: 40.5,33.5 - parent: 0 - type: Transform -- uid: 29118 - type: CableApcExtension - components: - - pos: 39.5,33.5 - parent: 0 - type: Transform -- uid: 29119 - type: CableApcExtension - components: - - pos: 38.5,33.5 - parent: 0 - type: Transform -- uid: 29120 - type: Poweredlight - components: - - pos: 27.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29121 - type: Poweredlight - components: - - pos: 39.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29122 - type: Poweredlight - components: - - pos: 48.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29123 - type: Grille - components: - - pos: 34.5,39.5 - parent: 0 - type: Transform -- uid: 29124 - type: TableGlass - components: - - pos: 13.5,31.5 - parent: 0 - type: Transform -- uid: 29125 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 14.5,31.5 - parent: 0 - type: Transform -- uid: 29126 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 12.5,31.5 - parent: 0 - type: Transform -- uid: 29127 - type: ClosetEmergencyFilledRandom - components: - - pos: 57.5,20.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29128 - type: ClosetFireFilled - components: - - pos: 57.5,21.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29129 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,26.5 - parent: 0 - type: Transform -- uid: 29130 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,27.5 - parent: 0 - type: Transform -- uid: 29131 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,28.5 - parent: 0 - type: Transform -- uid: 29132 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,29.5 - parent: 0 - type: Transform -- uid: 29133 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 54.5,30.5 - parent: 0 - type: Transform -- uid: 29134 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: 54.5,31.5 - parent: 0 - type: Transform -- uid: 29135 - type: Railing - components: - - pos: 52.5,32.5 - parent: 0 - type: Transform -- uid: 29136 - type: Railing - components: - - pos: 51.5,32.5 - parent: 0 - type: Transform -- uid: 29137 - type: Railing - components: - - pos: 50.5,32.5 - parent: 0 - type: Transform -- uid: 29138 - type: Railing - components: - - pos: 49.5,32.5 - parent: 0 - type: Transform -- uid: 29139 - type: Railing - components: - - pos: 48.5,32.5 - parent: 0 - type: Transform -- uid: 29140 - type: Railing - components: - - pos: 47.5,32.5 - parent: 0 - type: Transform -- uid: 29141 - type: Railing - components: - - pos: 46.5,32.5 - parent: 0 - type: Transform -- uid: 29142 - type: Railing - components: - - pos: 45.5,32.5 - parent: 0 - type: Transform -- uid: 29143 - type: Railing - components: - - pos: 44.5,32.5 - parent: 0 - type: Transform -- uid: 29144 - type: Railing - components: - - pos: 43.5,32.5 - parent: 0 - type: Transform -- uid: 29145 - type: Railing - components: - - pos: 42.5,32.5 - parent: 0 - type: Transform -- uid: 29146 - type: Railing - components: - - pos: 41.5,32.5 - parent: 0 - type: Transform -- uid: 29147 - type: Railing - components: - - pos: 40.5,32.5 - parent: 0 - type: Transform -- uid: 29148 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: 39.5,32.5 - parent: 0 - type: Transform -- uid: 29149 - type: HospitalCurtainsOpen - components: - - rot: 3.141592653589793 rad - pos: 64.5,19.5 - parent: 0 - type: Transform -- uid: 29150 - type: HospitalCurtainsOpen - components: - - rot: 3.141592653589793 rad - pos: 66.5,19.5 - parent: 0 - type: Transform -- uid: 29151 - type: HospitalCurtainsOpen - components: - - rot: 3.141592653589793 rad - pos: 68.5,19.5 - parent: 0 - type: Transform -- uid: 29152 - type: FloorDrain - components: - - rot: 3.141592653589793 rad - pos: 66.5,19.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 29153 - type: FloorDrain - components: - - rot: 3.141592653589793 rad - pos: 68.5,19.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 29154 - type: FloorDrain - components: - - rot: 3.141592653589793 rad - pos: 64.5,19.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 29155 - type: TrashBananaPeel - components: - - pos: 25.661648,-49.52757 - parent: 0 - type: Transform -- uid: 29156 - type: RandomSoap - components: - - pos: 66.5,19.5 - parent: 0 - type: Transform -- uid: 29157 - type: TrashBananaPeel - components: - - pos: -13.482373,9.409631 - parent: 0 - type: Transform -- uid: 29158 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: 94.5,21.5 - parent: 0 - type: Transform -- uid: 29159 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: 94.5,22.5 - parent: 0 - type: Transform -- uid: 29160 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 94.5,23.5 - parent: 0 - type: Transform -- uid: 29161 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 89.5,23.5 - parent: 0 - type: Transform -- uid: 29164 - type: BlockGameArcade - components: - - rot: 1.5707963267948966 rad - pos: 89.5,19.5 - parent: 0 - type: Transform -- uid: 29165 - type: SpaceVillainArcadeFilled - components: - - rot: 1.5707963267948966 rad - pos: 89.5,18.5 - parent: 0 - type: Transform -- uid: 29166 - type: SpaceVillainArcadeFilled - components: - - rot: 1.5707963267948966 rad - pos: 89.5,20.5 - parent: 0 - type: Transform -- uid: 29167 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 90.5,18.5 - parent: 0 - type: Transform -- uid: 29168 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 90.5,19.5 - parent: 0 - type: Transform -- uid: 29169 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 90.5,20.5 - parent: 0 - type: Transform -- uid: 29170 - type: Table - components: - - pos: 94.5,18.5 - parent: 0 - type: Transform -- uid: 29171 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 89.5,19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29172 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 94.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29173 - type: PowerCellRecharger - components: - - pos: 94.5,18.5 - parent: 0 - type: Transform -- uid: 29174 - type: AirlockGlass - components: - - pos: 95.5,19.5 - parent: 0 - type: Transform -- uid: 29175 - type: AirlockGlass - components: - - pos: 95.5,20.5 - parent: 0 - type: Transform -- uid: 29176 - type: Table - components: - - pos: 96.5,18.5 - parent: 0 - type: Transform -- uid: 29177 - type: Table - components: - - pos: 97.5,18.5 - parent: 0 - type: Transform -- uid: 29178 - type: Table - components: - - pos: 100.5,18.5 - parent: 0 - type: Transform -- uid: 29179 - type: Table - components: - - pos: 99.5,18.5 - parent: 0 - type: Transform -- uid: 29180 - type: Table - components: - - pos: 98.5,21.5 - parent: 0 - type: Transform -- uid: 29181 - type: Bed - components: - - pos: 96.5,21.5 - parent: 0 - type: Transform -- uid: 29182 - type: Bed - components: - - pos: 97.5,21.5 - parent: 0 - type: Transform -- uid: 29183 - type: Bed - components: - - pos: 99.5,21.5 - parent: 0 - type: Transform -- uid: 29184 - type: Bed - components: - - pos: 100.5,21.5 - parent: 0 - type: Transform -- uid: 29185 - type: DiceBag - components: - - pos: 99.49217,18.450832 - parent: 0 - type: Transform -- uid: 29186 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 98.5,18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29187 - type: PottedPlantRandom - components: - - pos: 89.5,16.5 - parent: 0 - type: Transform -- uid: 29188 - type: PottedPlantRandom - components: - - pos: 94.5,16.5 - parent: 0 - type: Transform -- uid: 29189 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 93.5,12.5 - parent: 0 - type: Transform -- uid: 29190 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 93.5,13.5 - parent: 0 - type: Transform -- uid: 29191 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 91.5,12.5 - parent: 0 - type: Transform -- uid: 29192 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 91.5,13.5 - parent: 0 - type: Transform -- uid: 29193 - type: Table - components: - - pos: 92.5,12.5 - parent: 0 - type: Transform -- uid: 29194 - type: Table - components: - - pos: 92.5,13.5 - parent: 0 - type: Transform -- uid: 29195 - type: Table - components: - - pos: 89.5,12.5 - parent: 0 - type: Transform -- uid: 29196 - type: Rack - components: - - pos: 94.5,12.5 - parent: 0 - type: Transform -- uid: 29197 - type: ClothingBackpackSatchelLeather - components: - - pos: 94.53825,12.604982 - parent: 0 - type: Transform -- uid: 29198 - type: BriefcaseBrownFilled - components: - - pos: 89.42888,12.745607 - parent: 0 - type: Transform -- uid: 29199 - type: PosterContrabandDonutCorp - components: - - pos: 87.5,17.5 - parent: 0 - type: Transform -- uid: 29200 - type: FoodBoxDonut - components: - - pos: 82.50772,14.651857 - parent: 0 - type: Transform -- uid: 29201 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 81.63272,14.542482 - parent: 0 - type: Transform -- uid: 29202 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 92.554596,12.589357 - parent: 0 - type: Transform -- uid: 29203 - type: MedkitFilled - components: - - pos: 80.554596,14.589357 - parent: 0 - type: Transform -- uid: 29204 - type: CrayonBox - components: - - pos: 84.367096,14.589357 - parent: 0 - type: Transform -- uid: 29205 - type: SmokingPipeFilledTobacco - components: - - pos: 92.523346,13.526857 - parent: 0 - type: Transform -- uid: 29206 - type: ToolboxEmergencyFilled - components: - - pos: 83.50772,14.589357 - parent: 0 - type: Transform -- uid: 29207 - type: WardrobeBlackFilled - components: - - pos: 98.5,18.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29208 - type: CarpetGreen - components: - - pos: 86.5,25.5 - parent: 0 - type: Transform -- uid: 29209 - type: CarpetGreen - components: - - pos: 86.5,24.5 - parent: 0 - type: Transform -- uid: 29210 - type: CarpetGreen - components: - - pos: 87.5,25.5 - parent: 0 - type: Transform -- uid: 29211 - type: CarpetGreen - components: - - pos: 87.5,24.5 - parent: 0 - type: Transform -- uid: 29212 - type: CarpetBlue - components: - - pos: 77.5,24.5 - parent: 0 - type: Transform -- uid: 29213 - type: CarpetBlue - components: - - pos: 77.5,25.5 - parent: 0 - type: Transform -- uid: 29214 - type: CarpetBlue - components: - - pos: 78.5,24.5 - parent: 0 - type: Transform -- uid: 29215 - type: CarpetBlue - components: - - pos: 78.5,25.5 - parent: 0 - type: Transform -- uid: 29216 - type: CarpetBlue - components: - - pos: 79.5,24.5 - parent: 0 - type: Transform -- uid: 29217 - type: CarpetBlue - components: - - pos: 79.5,25.5 - parent: 0 - type: Transform -- uid: 29218 - type: CarpetPink - components: - - pos: 78.5,21.5 - parent: 0 - type: Transform -- uid: 29219 - type: CarpetPink - components: - - pos: 78.5,22.5 - parent: 0 - type: Transform -- uid: 29220 - type: CarpetPink - components: - - pos: 77.5,21.5 - parent: 0 - type: Transform -- uid: 29221 - type: CarpetPink - components: - - pos: 77.5,22.5 - parent: 0 - type: Transform -- uid: 29222 - type: CarpetOrange - components: - - pos: 85.5,18.5 - parent: 0 - type: Transform -- uid: 29223 - type: CarpetOrange - components: - - pos: 85.5,19.5 - parent: 0 - type: Transform -- uid: 29224 - type: CarpetOrange - components: - - pos: 86.5,18.5 - parent: 0 - type: Transform -- uid: 29225 - type: CarpetOrange - components: - - pos: 86.5,19.5 - parent: 0 - type: Transform -- uid: 29226 - type: CarpetOrange - components: - - pos: 87.5,18.5 - parent: 0 - type: Transform -- uid: 29227 - type: CarpetOrange - components: - - pos: 87.5,19.5 - parent: 0 - type: Transform -- uid: 29228 - type: Carpet - components: - - pos: 77.5,18.5 - parent: 0 - type: Transform -- uid: 29229 - type: Carpet - components: - - pos: 77.5,19.5 - parent: 0 - type: Transform -- uid: 29230 - type: Carpet - components: - - pos: 78.5,18.5 - parent: 0 - type: Transform -- uid: 29231 - type: Carpet - components: - - pos: 78.5,19.5 - parent: 0 - type: Transform -- uid: 29232 - type: BedsheetSpawner - components: - - pos: 77.5,18.5 - parent: 0 - type: Transform -- uid: 29233 - type: Bed - components: - - pos: 77.5,18.5 - parent: 0 - type: Transform -- uid: 29234 - type: Bed - components: - - pos: 77.5,21.5 - parent: 0 - type: Transform -- uid: 29235 - type: Bed - components: - - pos: 77.5,24.5 - parent: 0 - type: Transform -- uid: 29236 - type: Bed - components: - - pos: 87.5,24.5 - parent: 0 - type: Transform -- uid: 29237 - type: Bed - components: - - pos: 87.5,21.5 - parent: 0 - type: Transform -- uid: 29238 - type: Bed - components: - - pos: 87.5,18.5 - parent: 0 - type: Transform -- uid: 29239 - type: BedsheetSpawner - components: - - pos: 77.5,21.5 - parent: 0 - type: Transform -- uid: 29240 - type: BedsheetSpawner - components: - - pos: 77.5,24.5 - parent: 0 - type: Transform -- uid: 29241 - type: BedsheetSpawner - components: - - pos: 87.5,24.5 - parent: 0 - type: Transform -- uid: 29242 - type: BedsheetSpawner - components: - - pos: 87.5,21.5 - parent: 0 - type: Transform -- uid: 29243 - type: BedsheetSpawner - components: - - pos: 87.5,18.5 - parent: 0 - type: Transform -- uid: 29244 - type: Dresser - components: - - pos: 87.5,22.5 - parent: 0 - type: Transform -- uid: 29245 - type: Dresser - components: - - pos: 77.5,19.5 - parent: 0 - type: Transform -- uid: 29246 - type: Dresser - components: - - pos: 77.5,25.5 - parent: 0 - type: Transform -- uid: 29247 - type: TableWood - components: - - pos: 77.5,22.5 - parent: 0 - type: Transform -- uid: 29248 - type: TableWood - components: - - pos: 87.5,19.5 - parent: 0 - type: Transform -- uid: 29249 - type: TableWood - components: - - pos: 87.5,25.5 - parent: 0 - type: Transform -- uid: 29250 - type: WardrobeGreenFilled - components: - - pos: 85.5,25.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29251 - type: WardrobeYellowFilled - components: - - pos: 85.5,19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29252 - type: WardrobePinkFilled - components: - - pos: 79.5,19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29253 - type: WardrobeGreyFilled - components: - - pos: 79.5,22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29254 - type: TableWood - components: - - pos: 85.5,22.5 - parent: 0 - type: Transform -- uid: 29255 - type: TableCarpet - components: - - pos: 79.5,25.5 - parent: 0 - type: Transform -- uid: 29256 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 78.5,25.5 - parent: 0 - type: Transform -- uid: 29257 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 86.5,22.5 - parent: 0 - type: Transform -- uid: 29258 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 86.5,25.5 - parent: 0 - type: Transform -- uid: 29259 - type: RandomPosterAny - components: - - pos: 84.5,20.5 - parent: 0 - type: Transform -- uid: 29260 - type: RandomPosterAny - components: - - pos: 76.5,22.5 - parent: 0 - type: Transform -- uid: 29261 - type: RandomPosterAny - components: - - pos: 78.5,26.5 - parent: 0 - type: Transform -- uid: 29262 - type: RandomPosterAny - components: - - pos: 88.5,22.5 - parent: 0 - type: Transform -- uid: 29263 - type: RandomPosterAny - components: - - pos: 88.5,19.5 - parent: 0 - type: Transform -- uid: 29264 - type: RandomPosterAny - components: - - pos: 76.5,18.5 - parent: 0 - type: Transform -- uid: 29265 - type: PoweredSmallLightEmpty - components: - - rot: 3.141592653589793 rad - pos: 78.5,18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29266 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 78.5,21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29267 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 78.5,24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29268 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 86.5,24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29269 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 86.5,21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29270 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 86.5,18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29271 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 81.5,20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29272 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29273 - type: ClosetFireFilled - components: - - pos: 80.5,28.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29274 - type: ClosetEmergencyFilledRandom - components: - - pos: 80.5,27.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29275 - type: ToyRubberDuck - components: - - pos: 68.5141,19.456623 - parent: 0 - type: Transform -- uid: 29276 - type: FloorWaterEntity - components: - - pos: 67.5,11.5 - parent: 0 - type: Transform -- uid: 29277 - type: FloorWaterEntity - components: - - pos: 73.5,8.5 - parent: 0 - type: Transform -- uid: 29278 - type: FloorWaterEntity - components: - - pos: 67.5,9.5 - parent: 0 - type: Transform -- uid: 29279 - type: FloorWaterEntity - components: - - pos: 70.5,10.5 - parent: 0 - type: Transform -- uid: 29280 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 65.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29281 - type: FloorWaterEntity - components: - - pos: 68.5,10.5 - parent: 0 - type: Transform -- uid: 29282 - type: ClothingNeckTieRed - components: - - pos: 62.42601,7.4528885 - parent: 0 - type: Transform -- uid: 29283 - type: MaintenanceFluffSpawner - components: - - pos: 62.5,5.5 - parent: 0 - type: Transform -- uid: 29284 - type: Windoor - components: - - pos: 71.5,17.5 - parent: 0 - type: Transform -- uid: 29285 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 73.5,9.5 - parent: 0 - type: Transform -- uid: 29286 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 74.5,11.5 - parent: 0 - type: Transform -- uid: 29287 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 74.5,10.5 - parent: 0 - type: Transform -- uid: 29288 - type: ClothingHeadHatGreensoft - components: - - pos: 100.47445,18.649193 - parent: 0 - type: Transform -- uid: 29289 - type: ClothingShoesColorGreen - components: - - pos: 100.53695,19.164818 - parent: 0 - type: Transform -- uid: 29290 - type: FloorWaterEntity - components: - - pos: 71.5,9.5 - parent: 0 - type: Transform -- uid: 29291 - type: FloorWaterEntity - components: - - pos: 72.5,10.5 - parent: 0 - type: Transform -- uid: 29292 - type: FloorWaterEntity - components: - - pos: 71.5,10.5 - parent: 0 - type: Transform -- uid: 29293 - type: FloorWaterEntity - components: - - pos: 69.5,9.5 - parent: 0 - type: Transform -- uid: 29294 - type: SpaceMedipen - components: - - pos: 74.614944,6.1718864 - parent: 0 - type: Transform -- uid: 29295 - type: FloorWaterEntity - components: - - pos: 67.5,10.5 - parent: 0 - type: Transform -- uid: 29296 - type: GasPipeTJunction - components: - - pos: 73.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29297 - type: GasPipeStraight - components: - - pos: 73.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29298 - type: GasPipeStraight - components: - - pos: 73.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29299 - type: GasPipeStraight - components: - - pos: 73.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29300 - type: GasPipeStraight - components: - - pos: 73.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29301 - type: GasPipeStraight - components: - - pos: 73.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29302 - type: DrinkWaterCup - components: - - pos: 69.50117,16.524094 - parent: 0 - type: Transform -- uid: 29303 - type: Table - components: - - pos: 66.5,4.5 - parent: 0 - type: Transform -- uid: 29304 - type: WaterCooler - components: - - pos: 68.5,16.5 - parent: 0 - type: Transform -- uid: 29305 - type: Table - components: - - pos: 66.5,5.5 - parent: 0 - type: Transform -- uid: 29306 - type: PottedPlantRandom - components: - - pos: 65.5,4.5 - parent: 0 - type: Transform -- uid: 29307 - type: DrinkWaterCup - components: - - pos: 69.39179,16.664719 - parent: 0 - type: Transform -- uid: 29308 - type: AirlockMaintLocked - components: - - pos: 82.5,11.5 - parent: 0 - type: Transform -- uid: 29309 - type: DrinkWaterCup - components: - - pos: 69.59492,16.649094 - parent: 0 - type: Transform -- uid: 29310 - type: DrinkWaterCup - components: - - pos: 69.31367,16.539719 - parent: 0 - type: Transform -- uid: 29311 - type: WardrobeBlueFilled - components: - - pos: 58.5,9.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29312 - type: WardrobePinkFilled - components: - - pos: 58.5,8.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29313 - type: ClosetEmergencyFilledRandom - components: - - pos: 70.5,6.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29314 - type: ClosetFireFilled - components: - - pos: 71.5,6.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29315 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 66.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29316 - type: GasPipeBend - components: - - pos: 69.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29317 - type: GasPipeTJunction - components: - - pos: 68.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29318 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 67.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29319 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29320 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 66.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29321 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 68.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29322 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 69.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29323 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 73.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29324 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 72.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29325 - type: GasPressurePump - components: - - pos: 72.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29326 - type: GasPressurePump - components: - - pos: 73.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29327 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 72.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 29328 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 73.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 29329 - type: PortableScrubber - components: - - pos: 68.5,6.5 - parent: 0 - type: Transform -- uid: 29330 - type: PortableScrubber - components: - - pos: 69.5,6.5 - parent: 0 - type: Transform -- uid: 29331 - type: AirCanister - components: - - pos: 72.5,6.5 - parent: 0 - type: Transform -- uid: 29332 - type: AirCanister - components: - - pos: 73.5,6.5 - parent: 0 - type: Transform -- uid: 29333 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: 70.5,19.5 - parent: 0 - type: Transform -- uid: 29334 - type: WardrobeMixedFilled - components: - - pos: 72.5,19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29335 - type: WardrobeMixedFilled - components: - - pos: 71.5,19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29336 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 74.5,6.5 - parent: 0 - type: Transform -- uid: 29337 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 67.5,6.5 - parent: 0 - type: Transform -- uid: 29338 - type: WardrobeBlueFilled - components: - - pos: 64.5,16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 3.0603204 - - 11.512634 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29339 - type: WardrobeBlackFilled - components: - - pos: 64.5,15.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 3.0603204 - - 11.512634 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29340 - type: WardrobePinkFilled - components: - - pos: 64.5,14.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 3.0603204 - - 11.512634 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29341 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 74.5,9.5 - parent: 0 - type: Transform -- uid: 29342 - type: FloorWaterEntity - components: - - pos: 68.5,8.5 - parent: 0 - type: Transform -- uid: 29343 - type: FloorWaterEntity - components: - - pos: 73.5,10.5 - parent: 0 - type: Transform -- uid: 29344 - type: FloorWaterEntity - components: - - pos: 73.5,11.5 - parent: 0 - type: Transform -- uid: 29345 - type: FloorWaterEntity - components: - - pos: 72.5,11.5 - parent: 0 - type: Transform -- uid: 29346 - type: FloorWaterEntity - components: - - pos: 68.5,9.5 - parent: 0 - type: Transform -- uid: 29347 - type: FloorWaterEntity - components: - - pos: 69.5,10.5 - parent: 0 - type: Transform -- uid: 29348 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 74.5,8.5 - parent: 0 - type: Transform -- uid: 29349 - type: FloorWaterEntity - components: - - pos: 72.5,8.5 - parent: 0 - type: Transform -- uid: 29350 - type: FloorWaterEntity - components: - - pos: 69.5,8.5 - parent: 0 - type: Transform -- uid: 29351 - type: Table - components: - - pos: 73.5,4.5 - parent: 0 - type: Transform -- uid: 29352 - type: FloorWaterEntity - components: - - pos: 71.5,8.5 - parent: 0 - type: Transform -- uid: 29353 - type: FloorWaterEntity - components: - - pos: 71.5,11.5 - parent: 0 - type: Transform -- uid: 29354 - type: FloorWaterEntity - components: - - pos: 70.5,11.5 - parent: 0 - type: Transform -- uid: 29355 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 67.5,19.5 - parent: 0 - type: Transform -- uid: 29356 - type: FloorWaterEntity - components: - - pos: 69.5,11.5 - parent: 0 - type: Transform -- uid: 29357 - type: TableWood - components: - - pos: 67.5,13.5 - parent: 0 - type: Transform -- uid: 29358 - type: FloorWaterEntity - components: - - pos: 68.5,11.5 - parent: 0 - type: Transform -- uid: 29359 - type: FloorWaterEntity - components: - - pos: 70.5,9.5 - parent: 0 - type: Transform -- uid: 29360 - type: FloorWaterEntity - components: - - pos: 70.5,8.5 - parent: 0 - type: Transform -- uid: 29361 - type: ClosetEmergencyFilledRandom - components: - - pos: 75.5,18.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.2184362 - - 12.107451 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29362 - type: ClosetEmergencyFilledRandom - components: - - pos: 75.5,19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.2184362 - - 12.107451 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29363 - type: ToySpawner - components: - - pos: 66.5,4.5 - parent: 0 - type: Transform -- uid: 29364 - type: Rack - components: - - pos: 62.5,7.5 - parent: 0 - type: Transform -- uid: 29365 - type: Rack - components: - - pos: 62.5,6.5 - parent: 0 - type: Transform -- uid: 29366 - type: ClothingHeadHatBeaverHat - components: - - pos: 62.441635,6.5778885 - parent: 0 - type: Transform -- uid: 29367 - type: Rack - components: - - pos: 62.5,5.5 - parent: 0 - type: Transform -- uid: 29368 - type: FloorWaterEntity - components: - - pos: 72.5,9.5 - parent: 0 - type: Transform -- uid: 29369 - type: WindowDirectional - components: - - pos: 70.5,17.5 - parent: 0 - type: Transform -- uid: 29370 - type: WindowDirectional - components: - - pos: 72.5,17.5 - parent: 0 - type: Transform -- uid: 29371 - type: SignDirectionalDorms - components: - - rot: 1.5707963267948966 rad - pos: 57.5,13.5 - parent: 0 - type: Transform -- uid: 29372 - type: SignDirectionalDorms - components: - - pos: 84.5,37.5 - parent: 0 - type: Transform -- uid: 29373 - type: MedkitFilled - components: - - pos: 66.53919,5.4330745 - parent: 0 - type: Transform -- uid: 29374 - type: CableHV - components: - - pos: 82.5,13.5 - parent: 0 - type: Transform -- uid: 29375 - type: ClothingBackpackDuffelScience - components: - - pos: 76.55065,10.666498 - parent: 0 - type: Transform -- uid: 29376 - type: ClothingHeadHatAnimalCatBrown - components: - - pos: 78.3319,10.572748 - parent: 0 - type: Transform -- uid: 29377 - type: MachineFrame - components: - - pos: 76.5,8.5 - parent: 0 - type: Transform -- uid: 29378 - type: ClothingHeadHatAnimalCatBlack - components: - - pos: 78.61315,10.572748 - parent: 0 - type: Transform -- uid: 29379 - type: SalvagePartsT2Spawner - components: - - pos: 79.5,10.5 - parent: 0 - type: Transform -- uid: 29380 - type: RandomPosterAny - components: - - pos: 78.5,5.5 - parent: 0 - type: Transform -- uid: 29381 - type: PottedPlantRandom - components: - - pos: 63.5,12.5 - parent: 0 - type: Transform -- uid: 29382 - type: PottedPlantRandom - components: - - pos: 73.5,16.5 - parent: 0 - type: Transform -- uid: 29383 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 72.5,4.5 - parent: 0 - type: Transform -- uid: 29384 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 74.5,4.5 - parent: 0 - type: Transform -- uid: 29385 - type: TargetStrange - components: - - pos: 69.5,4.5 - parent: 0 - type: Transform -- uid: 29386 - type: ShowcaseRobotWhite - components: - - pos: 59.5,20.5 - parent: 0 - type: Transform -- uid: 29387 - type: Rack - components: - - rot: -1.5707963267948966 rad - pos: 58.5,23.5 - parent: 0 - type: Transform -- uid: 29388 - type: FlashlightLantern - components: - - pos: 69.429634,22.67682 - parent: 0 - type: Transform -- uid: 29389 - type: UnfinishedMachineFrame - components: - - pos: 68.5,23.5 - parent: 0 - type: Transform -- uid: 29390 - type: WetFloorSign - components: - - pos: 67.28901,23.30182 - parent: 0 - type: Transform -- uid: 29391 - type: AirlockEngineeringLocked - components: - - pos: 73.5,22.5 - parent: 0 - type: Transform -- uid: 29392 - type: SignElectricalMed - components: - - pos: 73.5,21.5 - parent: 0 - type: Transform -- uid: 29393 - type: CrateEngineeringElectricalSupplies - components: - - pos: 71.5,21.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29394 - type: FloorDrain - components: - - pos: -4.5,28.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 29395 - type: AirlockGlass - components: - - pos: 57.5,28.5 - parent: 0 - type: Transform -- uid: 29396 - type: AirlockGlass - components: - - pos: 57.5,32.5 - parent: 0 - type: Transform -- uid: 29397 - type: AirlockBrigLocked - components: - - pos: 69.5,25.5 - parent: 0 - type: Transform -- uid: 29398 - type: AirlockBrigLocked - components: - - name: Court Backroom - type: MetaData - - pos: 67.5,28.5 - parent: 0 - type: Transform -- uid: 29399 - type: AirlockBrigLocked - components: - - name: Court Backroom - type: MetaData - - pos: 69.5,30.5 - parent: 0 - type: Transform -- uid: 29400 - type: AirlockBrigLocked - components: - - pos: 67.5,33.5 - parent: 0 - type: Transform -- uid: 29401 - type: AirlockBrigLocked - components: - - name: Lawyer's Office - type: MetaData - - pos: 70.5,37.5 - parent: 0 - type: Transform -- uid: 29402 - type: AirlockBrigGlassLocked - components: - - name: Court Room - type: MetaData - - pos: 61.5,30.5 - parent: 0 - type: Transform -- uid: 29403 - type: Airlock - components: - - pos: 66.5,35.5 - parent: 0 - type: Transform -- uid: 29404 - type: WindowReinforcedDirectional - components: - - pos: 65.5,35.5 - parent: 0 - type: Transform -- uid: 29405 - type: WindowReinforcedDirectional - components: - - pos: 64.5,35.5 - parent: 0 - type: Transform -- uid: 29406 - type: WindowReinforcedDirectional - components: - - pos: 63.5,35.5 - parent: 0 - type: Transform -- uid: 29407 - type: WindowReinforcedDirectional - components: - - pos: 62.5,35.5 - parent: 0 - type: Transform -- uid: 29408 - type: TableWood - components: - - pos: 62.5,32.5 - parent: 0 - type: Transform -- uid: 29409 - type: TableWood - components: - - pos: 63.5,32.5 - parent: 0 - type: Transform -- uid: 29410 - type: TableWood - components: - - pos: 62.5,28.5 - parent: 0 - type: Transform -- uid: 29411 - type: TableWood - components: - - pos: 63.5,28.5 - parent: 0 - type: Transform -- uid: 29412 - type: TableWood - components: - - pos: 65.5,29.5 - parent: 0 - type: Transform -- uid: 29413 - type: TableWood - components: - - pos: 65.5,30.5 - parent: 0 - type: Transform -- uid: 29414 - type: TableWood - components: - - pos: 65.5,31.5 - parent: 0 - type: Transform -- uid: 29415 - type: TableWood - components: - - pos: 62.5,35.5 - parent: 0 - type: Transform -- uid: 29416 - type: TableWood - components: - - pos: 63.5,35.5 - parent: 0 - type: Transform -- uid: 29417 - type: TableWood - components: - - pos: 64.5,35.5 - parent: 0 - type: Transform -- uid: 29418 - type: TableWood - components: - - pos: 65.5,35.5 - parent: 0 - type: Transform -- uid: 29419 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 63.5,34.5 - parent: 0 - type: Transform -- uid: 29420 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 63.5,32.5 - parent: 0 - type: Transform -- uid: 29421 - type: WindowReinforcedDirectional - components: - - pos: 63.5,32.5 - parent: 0 - type: Transform -- uid: 29422 - type: WindowReinforcedDirectional - components: - - pos: 62.5,32.5 - parent: 0 - type: Transform -- uid: 29423 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 62.5,28.5 - parent: 0 - type: Transform -- uid: 29424 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 63.5,28.5 - parent: 0 - type: Transform -- uid: 29425 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 63.5,28.5 - parent: 0 - type: Transform -- uid: 29426 - type: filingCabinetDrawerRandom - components: - - pos: 62.5,34.5 - parent: 0 - type: Transform -- uid: 29427 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 65.5,27.5 - parent: 0 - type: Transform -- uid: 29428 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 65.5,27.5 - parent: 0 - type: Transform -- uid: 29429 - type: filingCabinetDrawerRandom - components: - - pos: 62.5,26.5 - parent: 0 - type: Transform -- uid: 29430 - type: PottedPlantRandom - components: - - pos: 63.5,26.5 - parent: 0 - type: Transform -- uid: 29431 - type: PottedPlantRandom - components: - - pos: 63.5,34.5 - parent: 0 - type: Transform -- uid: 29432 - type: ChairWood - components: - - pos: 62.5,33.5 - parent: 0 - type: Transform -- uid: 29433 - type: ChairWood - components: - - pos: 63.5,33.5 - parent: 0 - type: Transform -- uid: 29434 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 63.5,27.5 - parent: 0 - type: Transform -- uid: 29435 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 62.5,27.5 - parent: 0 - type: Transform -- uid: 29436 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 66.5,30.5 - parent: 0 - type: Transform -- uid: 29437 - type: ChairWood - components: - - pos: 62.5,36.5 - parent: 0 - type: Transform -- uid: 29438 - type: ChairWood - components: - - pos: 63.5,36.5 - parent: 0 - type: Transform -- uid: 29439 - type: ChairWood - components: - - pos: 64.5,36.5 - parent: 0 - type: Transform -- uid: 29440 - type: ChairWood - components: - - pos: 65.5,36.5 - parent: 0 - type: Transform -- uid: 29441 - type: Intercom - components: - - pos: 63.5,32.5 - parent: 0 - type: Transform -- uid: 29442 - type: Intercom - components: - - pos: 63.5,28.5 - parent: 0 - type: Transform -- uid: 29443 - type: BoxFolderRed - components: - - pos: 62.52481,28.566063 - parent: 0 - type: Transform -- uid: 29444 - type: BoxFolderBlue - components: - - pos: 62.477936,32.581688 - parent: 0 - type: Transform -- uid: 29445 - type: CarpetGreen - components: - - pos: 65.5,29.5 - parent: 0 - type: Transform -- uid: 29446 - type: CarpetGreen - components: - - pos: 65.5,30.5 - parent: 0 - type: Transform -- uid: 29447 - type: CarpetGreen - components: - - pos: 65.5,31.5 - parent: 0 - type: Transform -- uid: 29448 - type: CarpetGreen - components: - - pos: 66.5,29.5 - parent: 0 - type: Transform -- uid: 29449 - type: CarpetGreen - components: - - pos: 66.5,30.5 - parent: 0 - type: Transform -- uid: 29450 - type: CarpetGreen - components: - - pos: 66.5,31.5 - parent: 0 - type: Transform -- uid: 29451 - type: WindoorBrigLocked - components: - - rot: -1.5707963267948966 rad - pos: 65.5,26.5 - parent: 0 - type: Transform -- uid: 29452 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 66.5,26.5 - parent: 0 - type: Transform -- uid: 29453 - type: Table - components: - - pos: 58.5,29.5 - parent: 0 - type: Transform -- uid: 29454 - type: WaterCooler - components: - - pos: 58.5,31.5 - parent: 0 - type: Transform -- uid: 29455 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 58.5,34.5 - parent: 0 - type: Transform -- uid: 29456 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 58.5,30.5 - parent: 0 - type: Transform -- uid: 29457 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 60.5,34.5 - parent: 0 - type: Transform -- uid: 29458 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 60.5,33.5 - parent: 0 - type: Transform -- uid: 29459 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 60.5,32.5 - parent: 0 - type: Transform -- uid: 29460 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 60.5,31.5 - parent: 0 - type: Transform -- uid: 29461 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 60.5,27.5 - parent: 0 - type: Transform -- uid: 29462 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 60.5,26.5 - parent: 0 - type: Transform -- uid: 29463 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 58.5,27.5 - parent: 0 - type: Transform -- uid: 29464 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 58.5,26.5 - parent: 0 - type: Transform -- uid: 29465 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 58.5,33.5 - parent: 0 - type: Transform -- uid: 29466 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 60.5,28.5 - parent: 0 - type: Transform -- uid: 29467 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 60.5,29.5 - parent: 0 - type: Transform -- uid: 29468 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 66.5,27.5 - parent: 0 - type: Transform -- uid: 29469 - type: Table - components: - - pos: 66.5,27.5 - parent: 0 - type: Transform -- uid: 29470 - type: Table - components: - - pos: 65.5,27.5 - parent: 0 - type: Transform -- uid: 29471 - type: DrinkWaterBottleFull - components: - - pos: 65.5974,27.691063 - parent: 0 - type: Transform -- uid: 29472 - type: DrinkGlass - components: - - pos: 65.89427,27.550438 - parent: 0 - type: Transform -- uid: 29473 - type: DrinkWaterCup - components: - - pos: 58.39427,29.597313 - parent: 0 - type: Transform -- uid: 29474 - type: DrinkWaterCup - components: - - pos: 58.55052,29.659813 - parent: 0 - type: Transform -- uid: 29475 - type: DrinkWaterCup - components: - - pos: 58.722397,29.737938 - parent: 0 - type: Transform -- uid: 29476 - type: PaperBin10 - components: - - pos: 63.5,35.5 - parent: 0 - type: Transform -- uid: 29477 - type: BoxFolderGrey - components: - - pos: 62.574814,35.573833 - parent: 0 - type: Transform -- uid: 29478 - type: BoxFolderYellow - components: - - pos: 64.512314,35.55821 - parent: 0 - type: Transform -- uid: 29479 - type: Pen - components: - - pos: 65.34044,35.71446 - parent: 0 - type: Transform -- uid: 29480 - type: PoweredSmallLight - components: - - pos: 59.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29481 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 64.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29482 - type: Poweredlight - components: - - pos: 64.5,36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29483 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 66.5,30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29484 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 59.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29485 - type: ExtinguisherCabinetFilled - components: - - pos: 58.5,35.5 - parent: 0 - type: Transform -- uid: 29486 - type: ExtinguisherCabinetFilled - components: - - pos: 57.5,19.5 - parent: 0 - type: Transform -- uid: 29487 - type: ExtinguisherCabinetFilled - components: - - pos: 57.5,-2.5 - parent: 0 - type: Transform -- uid: 29488 - type: ExtinguisherCabinetFilled - components: - - pos: 26.5,-4.5 - parent: 0 - type: Transform -- uid: 29489 - type: ExtinguisherCabinetFilled - components: - - pos: 44.5,0.5 - parent: 0 - type: Transform -- uid: 29490 - type: ExtinguisherCabinetFilled - components: - - pos: 26.5,-22.5 - parent: 0 - type: Transform -- uid: 29491 - type: ExtinguisherCabinetFilled - components: - - pos: 44.5,-21.5 - parent: 0 - type: Transform -- uid: 29492 - type: ExtinguisherCabinetFilled - components: - - pos: 57.5,-18.5 - parent: 0 - type: Transform -- uid: 29493 - type: ExtinguisherCabinetFilled - components: - - pos: 58.5,-34.5 - parent: 0 - type: Transform -- uid: 29494 - type: ExtinguisherCabinetFilled - components: - - pos: 40.5,-35.5 - parent: 0 - type: Transform -- uid: 29495 - type: ExtinguisherCabinetFilled - components: - - pos: 37.5,-40.5 - parent: 0 - type: Transform -- uid: 29496 - type: ExtinguisherCabinetFilled - components: - - pos: 26.5,-50.5 - parent: 0 - type: Transform -- uid: 29497 - type: ExtinguisherCabinetFilled - components: - - pos: 52.5,-44.5 - parent: 0 - type: Transform -- uid: 29498 - type: ExtinguisherCabinetFilled - components: - - pos: 70.5,-12.5 - parent: 0 - type: Transform -- uid: 29499 - type: ExtinguisherCabinetFilled - components: - - pos: 66.5,-32.5 - parent: 0 - type: Transform -- uid: 29500 - type: ExtinguisherCabinetFilled - components: - - pos: 82.5,-24.5 - parent: 0 - type: Transform -- uid: 29501 - type: ExtinguisherCabinetFilled - components: - - pos: 75.5,1.5 - parent: 0 - type: Transform -- uid: 29502 - type: ExtinguisherCabinetFilled - components: - - pos: 88.5,-1.5 - parent: 0 - type: Transform -- uid: 29503 - type: ExtinguisherCabinetFilled - components: - - pos: 61.5,6.5 - parent: 0 - type: Transform -- uid: 29504 - type: ExtinguisherCabinetFilled - components: - - pos: 95.5,16.5 - parent: 0 - type: Transform -- uid: 29505 - type: ExtinguisherCabinetFilled - components: - - pos: 85.5,17.5 - parent: 0 - type: Transform -- uid: 29506 - type: WallmountTelevision - components: - - pos: 20.5,0.5 - parent: 0 - type: Transform -- uid: 29507 - type: WallmountTelevision - components: - - pos: 9.5,-3.5 - parent: 0 - type: Transform -- uid: 29508 - type: ComputerTelevision - components: - - pos: -19.5,25.5 - parent: 0 - type: Transform -- uid: 29509 - type: ClothingHeadHatTophat - components: - - pos: -12.487169,28.434443 - parent: 0 - type: Transform -- uid: 29510 - type: BoxBeanbag - components: - - pos: -14.455919,30.684443 - parent: 0 - type: Transform -- uid: 29511 - type: SurveillanceWirelessCameraMovableEntertainment - components: - - rot: -1.5707963267948966 rad - pos: -16.5,12.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: Channel 13 - type: SurveillanceCamera -- uid: 29512 - type: SurveillanceWirelessCameraMovableEntertainment - components: - - pos: 65.5,34.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: Courtroom Camera - type: SurveillanceCamera -- uid: 29513 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 63.5,26.5 - parent: 0 - type: Transform -- uid: 29514 - type: PosterLegitReportCrimes - components: - - pos: 59.5,35.5 - parent: 0 - type: Transform -- uid: 29515 - type: PosterLegitSafetyReport - components: - - pos: 59.5,25.5 - parent: 0 - type: Transform -- uid: 29516 - type: Rack - components: - - pos: 68.5,29.5 - parent: 0 - type: Transform -- uid: 29517 - type: VendingMachineLawDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 72.5,36.5 - parent: 0 - type: Transform -- uid: 29518 - type: TableWood - components: - - pos: 70.5,31.5 - parent: 0 - type: Transform -- uid: 29519 - type: TableWood - components: - - pos: 70.5,32.5 - parent: 0 - type: Transform -- uid: 29520 - type: TableWood - components: - - pos: 70.5,33.5 - parent: 0 - type: Transform -- uid: 29521 - type: TableWood - components: - - pos: 71.5,33.5 - parent: 0 - type: Transform -- uid: 29522 - type: TableWood - components: - - pos: 68.5,35.5 - parent: 0 - type: Transform -- uid: 29523 - type: TableWood - components: - - pos: 68.5,36.5 - parent: 0 - type: Transform -- uid: 29524 - type: ChairOfficeDark - components: - - pos: 70.5,34.5 - parent: 0 - type: Transform -- uid: 29525 - type: ChairOfficeDark - components: - - pos: 71.5,34.5 - parent: 0 - type: Transform -- uid: 29526 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 71.5,32.5 - parent: 0 - type: Transform -- uid: 29527 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 69.5,36.5 - parent: 0 - type: Transform -- uid: 29528 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29529 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29530 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29531 - type: FaxMachineBase - components: - - pos: 70.5,31.5 - parent: 0 - type: Transform - - name: Lawyer's Office - type: FaxMachine -- uid: 29532 - type: filingCabinetRandom - components: - - pos: 71.5,31.5 - parent: 0 - type: Transform -- uid: 29533 - type: DisposalUnit - components: - - pos: 68.5,31.5 - parent: 0 - type: Transform -- uid: 29534 - type: WaterCooler - components: - - pos: 72.5,31.5 - parent: 0 - type: Transform -- uid: 29535 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 68.5,31.5 - parent: 0 - type: Transform -- uid: 29536 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 69.5,31.5 - parent: 0 - type: Transform -- uid: 29537 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 69.5,36.5 - parent: 0 - type: Transform -- uid: 29538 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 70.5,36.5 - parent: 0 - type: Transform -- uid: 29539 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 69.5,32.5 - parent: 0 - type: Transform -- uid: 29540 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 69.5,33.5 - parent: 0 - type: Transform -- uid: 29541 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 69.5,34.5 - parent: 0 - type: Transform -- uid: 29542 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 69.5,35.5 - parent: 0 - type: Transform -- uid: 29543 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 70.5,37.5 - parent: 0 - type: Transform -- uid: 29544 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 70.5,38.5 - parent: 0 - type: Transform -- uid: 29545 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 69.5,34.5 - parent: 0 - type: Transform -- uid: 29546 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 69.5,35.5 - parent: 0 - type: Transform -- uid: 29547 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 70.5,34.5 - parent: 0 - type: Transform -- uid: 29548 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 70.5,35.5 - parent: 0 - type: Transform -- uid: 29549 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 71.5,34.5 - parent: 0 - type: Transform -- uid: 29550 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 71.5,35.5 - parent: 0 - type: Transform -- uid: 29551 - type: filingCabinetDrawerRandom - components: - - pos: 68.5,32.5 - parent: 0 - type: Transform -- uid: 29552 - type: PottedPlantRandom - components: - - pos: 68.5,34.5 - parent: 0 - type: Transform -- uid: 29553 - type: PottedPlantRandom - components: - - pos: 71.5,36.5 - parent: 0 - type: Transform -- uid: 29554 - type: PaperBin5 - components: - - pos: 70.5,32.5 - parent: 0 - type: Transform -- uid: 29555 - type: BookEscalationSecurity - components: - - pos: 68.60332,36.470818 - parent: 0 - type: Transform -- uid: 29556 - type: BookEscalation - components: - - pos: 68.47832,36.611443 - parent: 0 - type: Transform -- uid: 29557 - type: BriefcaseBrownFilled - components: - - pos: 68.41582,35.705193 - parent: 0 - type: Transform -- uid: 29558 - type: BriefcaseBrownFilled - components: - - pos: 68.44707,29.729555 - parent: 0 - type: Transform -- uid: 29559 - type: BriefcaseBrownFilled - components: - - pos: 68.54082,29.58893 - parent: 0 - type: Transform -- uid: 29560 - type: BoxFolderRed - components: - - pos: 71.27519,33.604553 - parent: 0 - type: Transform -- uid: 29561 - type: BoxFolderBlue - components: - - pos: 71.43144,33.49518 - parent: 0 - type: Transform -- uid: 29562 - type: Lamp - components: - - pos: 70.49394,33.77643 - parent: 0 - type: Transform -- uid: 29563 - type: CarpetGreen - components: - - pos: 71.5,31.5 - parent: 0 - type: Transform -- uid: 29564 - type: CarpetGreen - components: - - pos: 71.5,32.5 - parent: 0 - type: Transform -- uid: 29565 - type: CarpetGreen - components: - - pos: 72.5,31.5 - parent: 0 - type: Transform -- uid: 29566 - type: CarpetGreen - components: - - pos: 72.5,32.5 - parent: 0 - type: Transform -- uid: 29567 - type: ClosetEmergencyFilledRandom - components: - - pos: 75.5,37.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29568 - type: ClosetFireFilled - components: - - pos: 74.5,37.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29569 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 66.5,31.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Courtroom - type: SurveillanceCamera -- uid: 29570 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 72.5,33.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Lawyer Office - type: SurveillanceCamera -- uid: 29571 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 74.5,31.5 - parent: 0 - type: Transform -- uid: 29572 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 74.5,32.5 - parent: 0 - type: Transform -- uid: 29573 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 74.5,33.5 - parent: 0 - type: Transform -- uid: 29574 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 75.5,31.5 - parent: 0 - type: Transform -- uid: 29575 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 75.5,32.5 - parent: 0 - type: Transform -- uid: 29576 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 75.5,33.5 - parent: 0 - type: Transform -- uid: 29577 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 76.5,31.5 - parent: 0 - type: Transform -- uid: 29578 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 76.5,32.5 - parent: 0 - type: Transform -- uid: 29579 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 76.5,33.5 - parent: 0 - type: Transform -- uid: 29580 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 78.5,33.5 - parent: 0 - type: Transform -- uid: 29581 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 78.5,32.5 - parent: 0 - type: Transform -- uid: 29582 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 78.5,31.5 - parent: 0 - type: Transform -- uid: 29583 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 79.5,33.5 - parent: 0 - type: Transform -- uid: 29584 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 79.5,32.5 - parent: 0 - type: Transform -- uid: 29585 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 79.5,31.5 - parent: 0 - type: Transform -- uid: 29586 - type: filingCabinetDrawerRandom - components: - - pos: 74.5,35.5 - parent: 0 - type: Transform -- uid: 29587 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 76.5,35.5 - parent: 0 - type: Transform -- uid: 29588 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 78.5,36.5 - parent: 0 - type: Transform -- uid: 29589 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 78.5,35.5 - parent: 0 - type: Transform -- uid: 29590 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 78.5,31.5 - parent: 0 - type: Transform -- uid: 29591 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 78.5,33.5 - parent: 0 - type: Transform -- uid: 29592 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 79.5,33.5 - parent: 0 - type: Transform -- uid: 29593 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 75.5,33.5 - parent: 0 - type: Transform -- uid: 29594 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 76.5,33.5 - parent: 0 - type: Transform -- uid: 29595 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 74.5,33.5 - parent: 0 - type: Transform -- uid: 29596 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 76.5,31.5 - parent: 0 - type: Transform -- uid: 29597 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,36.5 - parent: 0 - type: Transform -- uid: 29598 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 79.5,32.5 - parent: 0 - type: Transform -- uid: 29599 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 75.5,32.5 - parent: 0 - type: Transform -- uid: 29600 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 74.5,32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29601 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29602 - type: FaxMachineBase - components: - - pos: 76.5,35.5 - parent: 0 - type: Transform - - name: Spare Office - type: FaxMachine -- uid: 29603 - type: Lamp - components: - - pos: 74.57699,33.89336 - parent: 0 - type: Transform -- uid: 29604 - type: ComputerFrame - components: - - rot: 3.141592653589793 rad - pos: 74.5,31.5 - parent: 0 - type: Transform -- uid: 29605 - type: BriefcaseBrownFilled - components: - - pos: 76.43636,31.658985 - parent: 0 - type: Transform -- uid: 29606 - type: PaperBin5 - components: - - pos: 76.5,33.5 - parent: 0 - type: Transform -- uid: 29607 - type: PaperBin5 - components: - - pos: 78.5,33.5 - parent: 0 - type: Transform -- uid: 29608 - type: HandLabeler - components: - - pos: 75.46761,33.48711 - parent: 0 - type: Transform -- uid: 29609 - type: BoxFolderYellow - components: - - pos: 79.48324,33.54961 - parent: 0 - type: Transform -- uid: 29610 - type: BoxFolderBlue - components: - - pos: 78.46761,36.346485 - parent: 0 - type: Transform -- uid: 29611 - type: BoxFolderGrey - components: - - pos: 78.49886,35.627735 - parent: 0 - type: Transform -- uid: 29612 - type: PottedPlantRandom - components: - - pos: 79.5,31.5 - parent: 0 - type: Transform -- uid: 29613 - type: Airlock - components: - - pos: 77.5,37.5 - parent: 0 - type: Transform -- uid: 29614 - type: SignSmoking - components: - - pos: 75.5,36.5 - parent: 0 - type: Transform -- uid: 29615 - type: RandomPosterLegit - components: - - pos: 79.5,30.5 - parent: 0 - type: Transform -- uid: 29616 - type: RandomPosterLegit - components: - - pos: 73.5,32.5 - parent: 0 - type: Transform -- uid: 29617 - type: RandomPosterLegit - components: - - pos: 75.5,10.5 - parent: 0 - type: Transform -- uid: 29619 - type: RandomPosterLegit - components: - - pos: 57.5,0.5 - parent: 0 - type: Transform -- uid: 29620 - type: RandomPosterLegit - components: - - pos: 15.5,1.5 - parent: 0 - type: Transform -- uid: 29621 - type: RandomPosterLegit - components: - - pos: -7.5,-2.5 - parent: 0 - type: Transform -- uid: 29622 - type: RandomPosterLegit - components: - - pos: -38.5,-3.5 - parent: 0 - type: Transform -- uid: 29623 - type: DisposalUnit - components: - - pos: 103.5,40.5 - parent: 0 - type: Transform -- uid: 29624 - type: DisposalTrunk - components: - - pos: 103.5,40.5 - parent: 0 - type: Transform -- uid: 29625 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 103.5,39.5 - parent: 0 - type: Transform -- uid: 29626 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 102.5,39.5 - parent: 0 - type: Transform -- uid: 29627 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 101.5,39.5 - parent: 0 - type: Transform -- uid: 29628 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 100.5,39.5 - parent: 0 - type: Transform -- uid: 29629 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 99.5,39.5 - parent: 0 - type: Transform -- uid: 29630 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 98.5,39.5 - parent: 0 - type: Transform -- uid: 29631 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 97.5,39.5 - parent: 0 - type: Transform -- uid: 29632 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 96.5,39.5 - parent: 0 - type: Transform -- uid: 29633 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 95.5,39.5 - parent: 0 - type: Transform -- uid: 29634 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 94.5,39.5 - parent: 0 - type: Transform -- uid: 29635 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 93.5,39.5 - parent: 0 - type: Transform -- uid: 29636 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 92.5,39.5 - parent: 0 - type: Transform -- uid: 29637 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 91.5,39.5 - parent: 0 - type: Transform -- uid: 29638 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 90.5,39.5 - parent: 0 - type: Transform -- uid: 29639 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 89.5,39.5 - parent: 0 - type: Transform -- uid: 29640 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 88.5,39.5 - parent: 0 - type: Transform -- uid: 29641 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 87.5,39.5 - parent: 0 - type: Transform -- uid: 29642 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 86.5,39.5 - parent: 0 - type: Transform -- uid: 29643 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 85.5,39.5 - parent: 0 - type: Transform -- uid: 29644 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 84.5,39.5 - parent: 0 - type: Transform -- uid: 29645 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 83.5,39.5 - parent: 0 - type: Transform -- uid: 29646 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 72.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29647 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 72.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29648 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 72.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29649 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 72.5,50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29650 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 72.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29651 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 72.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29652 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 72.5,53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29653 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 72.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29654 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 72.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29655 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 73.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29656 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 74.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29657 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 75.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29658 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 76.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29659 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 77.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29660 - type: GasPipeTJunction - components: - - pos: 78.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29661 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 80.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29662 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 80.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29663 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 81.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29664 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 82.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29665 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 83.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29666 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 84.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29667 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 85.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29668 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 86.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29669 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 87.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29670 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 88.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29671 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 89.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29672 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 90.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29673 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 91.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29674 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 92.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29675 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 93.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29676 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 94.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29677 - type: GasPipeStraight - components: - - pos: 95.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29678 - type: GasPipeStraight - components: - - pos: 95.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29679 - type: GasPipeStraight - components: - - pos: 95.5,53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29680 - type: GasPipeStraight - components: - - pos: 95.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29681 - type: GasPipeStraight - components: - - pos: 95.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29682 - type: GasPipeStraight - components: - - pos: 95.5,50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29683 - type: GasPipeStraight - components: - - pos: 95.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29684 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 97.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29685 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 97.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29686 - type: GasPipeStraight - components: - - pos: 95.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29687 - type: GasPipeStraight - components: - - pos: 95.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29688 - type: GasPipeStraight - components: - - pos: 95.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29689 - type: GasPipeStraight - components: - - pos: 95.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29690 - type: GasPipeStraight - components: - - pos: 95.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29691 - type: GasPipeStraight - components: - - pos: 95.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29692 - type: GasPipeStraight - components: - - pos: 97.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29693 - type: GasPipeStraight - components: - - pos: 97.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29694 - type: GasPipeStraight - components: - - pos: 97.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29695 - type: GasPipeStraight - components: - - pos: 97.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29696 - type: GasPipeStraight - components: - - pos: 97.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29697 - type: GasPipeStraight - components: - - pos: 97.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29698 - type: GasPipeStraight - components: - - pos: 97.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29699 - type: GasPipeStraight - components: - - pos: 97.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29700 - type: GasPipeStraight - components: - - pos: 97.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29701 - type: GasPipeStraight - components: - - pos: 97.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29702 - type: GasPipeStraight - components: - - pos: 97.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29703 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 95.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29704 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 95.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29705 - type: GasPipeStraight - components: - - pos: 97.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29706 - type: GasPipeStraight - components: - - pos: 97.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29707 - type: GasPipeStraight - components: - - pos: 97.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29708 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 96.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29709 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 95.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29710 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 94.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29711 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 93.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29712 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 92.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29713 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 91.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29714 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 90.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29715 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 89.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29716 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 88.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29717 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 87.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29718 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 86.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29719 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 85.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29720 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 84.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29721 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29722 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 82.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29723 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 81.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29724 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 79.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29725 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29726 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 78.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29727 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 77.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29728 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 76.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29729 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29730 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29731 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 73.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29732 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 73.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29733 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 73.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29734 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 73.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29735 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 73.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29736 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 73.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29737 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 73.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29738 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 73.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29739 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 73.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29740 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 72.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29741 - type: GasPipeBend - components: - - pos: 95.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29742 - type: GasPipeBend - components: - - pos: 97.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29743 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 97.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29744 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 98.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29745 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 94.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29746 - type: GasVentScrubber - components: - - pos: 98.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29747 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 73.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29748 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 74.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29749 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 60.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29750 - type: GasVentScrubber - components: - - pos: 59.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29751 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 96.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29752 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 96.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29753 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 96.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29754 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 97.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29755 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 98.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29756 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 99.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29757 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 100.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29758 - type: GasPipeFourway - components: - - pos: 101.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29759 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 102.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29760 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 103.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29761 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 104.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29762 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 105.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29763 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 106.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29764 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 107.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29765 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 108.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29766 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 109.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29767 - type: GasPipeTJunction - components: - - pos: 110.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29768 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 111.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29769 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 112.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29770 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 113.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29771 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 114.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29772 - type: GasPipeTJunction - components: - - pos: 112.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29773 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 115.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29774 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 117.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29775 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 118.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29776 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 119.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29777 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 119.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29778 - type: GasPipeBend - components: - - pos: 119.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29779 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 126.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29780 - type: GasPipeBend - components: - - pos: 126.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29781 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 118.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29782 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 117.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29783 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 116.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29784 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 115.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29785 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 114.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29786 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 116.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29787 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 113.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29788 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 111.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29789 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 110.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29790 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 109.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29791 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 108.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29792 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 107.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29793 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 106.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29794 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 105.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29795 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 104.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29796 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 103.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29797 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 102.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29798 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 101.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29799 - type: GasPipeFourway - components: - - pos: 100.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29800 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 99.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29801 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 98.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29802 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 100.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29803 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 101.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29804 - type: GasPipeStraight - components: - - pos: 101.5,50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29805 - type: GasPipeStraight - components: - - pos: 101.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29806 - type: GasPipeStraight - components: - - pos: 101.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29807 - type: GasPipeStraight - components: - - pos: 101.5,53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29808 - type: GasPipeStraight - components: - - pos: 101.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29809 - type: GasPipeStraight - components: - - pos: 100.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29810 - type: GasPipeStraight - components: - - pos: 100.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29811 - type: GasPipeStraight - components: - - pos: 100.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29812 - type: GasPipeStraight - components: - - pos: 100.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29813 - type: GasPipeStraight - components: - - pos: 100.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29814 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 101.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29815 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 102.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29816 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 103.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29817 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 104.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29818 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 105.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29819 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 106.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29820 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 107.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29821 - type: GasPipeBend - components: - - pos: 107.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29822 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 101.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29823 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 101.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29824 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 101.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29825 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 101.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29826 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 101.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29827 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 102.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29828 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 103.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29829 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 104.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29830 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 105.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29831 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 106.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29832 - type: GasPipeStraight - components: - - pos: 100.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29833 - type: GasPipeStraight - components: - - pos: 100.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29834 - type: GasPipeStraight - components: - - pos: 100.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29835 - type: GasPipeStraight - components: - - pos: 100.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29836 - type: GasPipeStraight - components: - - pos: 100.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29837 - type: GasPipeStraight - components: - - pos: 100.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29838 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 99.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29839 - type: GasVentScrubber - components: - - pos: 100.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29840 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 100.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29841 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 107.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29842 - type: GasVentPump - components: - - pos: 107.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29843 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 102.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29844 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 110.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29845 - type: GasVentScrubber - components: - - pos: 110.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29846 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 112.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29847 - type: GasVentPump - components: - - pos: 116.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29848 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 119.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29849 - type: GasPipeStraight - components: - - pos: 119.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29850 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 120.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29851 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 121.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29852 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 122.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29853 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 123.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29854 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 124.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29855 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 125.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29856 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 119.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29857 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 120.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29858 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 121.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29859 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 122.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29860 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 123.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29861 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 124.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29862 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 125.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29863 - type: GasVentScrubber - components: - - pos: 119.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29864 - type: GasVentScrubber - components: - - pos: 126.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29865 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 119.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29866 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 126.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29867 - type: WallReinforced - components: - - pos: 124.5,48.5 - parent: 0 - type: Transform -- uid: 29868 - type: WallReinforced - components: - - pos: 125.5,48.5 - parent: 0 - type: Transform -- uid: 29869 - type: WallReinforced - components: - - pos: 125.5,49.5 - parent: 0 - type: Transform -- uid: 29870 - type: WallReinforced - components: - - pos: 125.5,50.5 - parent: 0 - type: Transform -- uid: 29871 - type: WallReinforced - components: - - pos: 124.5,50.5 - parent: 0 - type: Transform -- uid: 29872 - type: WallReinforced - components: - - pos: 122.5,48.5 - parent: 0 - type: Transform -- uid: 29873 - type: WallReinforced - components: - - pos: 122.5,50.5 - parent: 0 - type: Transform -- uid: 29874 - type: ReinforcedPlasmaWindow - components: - - pos: 122.5,49.5 - parent: 0 - type: Transform -- uid: 29875 - type: BlastDoorOpen - components: - - pos: 97.5,53.5 - parent: 0 - type: Transform -- uid: 29876 - type: BlastDoorOpen - components: - - pos: 96.5,53.5 - parent: 0 - type: Transform -- uid: 29877 - type: BlastDoorOpen - components: - - pos: 95.5,53.5 - parent: 0 - type: Transform -- uid: 29878 - type: SMESBasic - components: - - pos: 112.5,42.5 - parent: 0 - type: Transform -- uid: 29879 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 112.5,41.5 - parent: 0 - type: Transform -- uid: 29880 - type: CableHV - components: - - pos: 110.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29881 - type: CableHV - components: - - pos: 111.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29882 - type: CableHV - components: - - pos: 112.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29883 - type: CableHV - components: - - pos: 112.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29884 - type: CableHV - components: - - pos: 112.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29885 - type: CableHV - components: - - pos: 112.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29886 - type: CableHV - components: - - pos: 112.5,39.5 - parent: 0 - type: Transform -- uid: 29887 - type: CableHV - components: - - pos: 112.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29888 - type: CableHV - components: - - pos: 112.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29889 - type: CableHV - components: - - pos: 112.5,42.5 - parent: 0 - type: Transform -- uid: 29890 - type: CableHV - components: - - pos: 113.5,42.5 - parent: 0 - type: Transform -- uid: 29891 - type: CableMV - components: - - pos: 113.5,43.5 - parent: 0 - type: Transform -- uid: 29892 - type: CableMV - components: - - pos: 113.5,42.5 - parent: 0 - type: Transform -- uid: 29893 - type: CableHV - components: - - pos: 113.5,43.5 - parent: 0 - type: Transform -- uid: 29894 - type: SubstationBasic - components: - - pos: 113.5,42.5 - parent: 0 - type: Transform -- uid: 29895 - type: CableMV - components: - - pos: 112.5,43.5 - parent: 0 - type: Transform -- uid: 29896 - type: CableMV - components: - - pos: 111.5,43.5 - parent: 0 - type: Transform -- uid: 29897 - type: CableMV - components: - - pos: 110.5,43.5 - parent: 0 - type: Transform -- uid: 29898 - type: CableMV - components: - - pos: 109.5,43.5 - parent: 0 - type: Transform -- uid: 29899 - type: CableMV - components: - - pos: 108.5,43.5 - parent: 0 - type: Transform -- uid: 29900 - type: CableMV - components: - - pos: 107.5,43.5 - parent: 0 - type: Transform -- uid: 29901 - type: CableMV - components: - - pos: 106.5,43.5 - parent: 0 - type: Transform -- uid: 29902 - type: CableMV - components: - - pos: 105.5,43.5 - parent: 0 - type: Transform -- uid: 29903 - type: CableMV - components: - - pos: 104.5,43.5 - parent: 0 - type: Transform -- uid: 29904 - type: CableMV - components: - - pos: 104.5,44.5 - parent: 0 - type: Transform -- uid: 29905 - type: CableMV - components: - - pos: 104.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29906 - type: CableMV - components: - - pos: 103.5,44.5 - parent: 0 - type: Transform -- uid: 29907 - type: CableMV - components: - - pos: 102.5,44.5 - parent: 0 - type: Transform -- uid: 29908 - type: CableMV - components: - - pos: 101.5,44.5 - parent: 0 - type: Transform -- uid: 29909 - type: CableMV - components: - - pos: 101.5,45.5 - parent: 0 - type: Transform -- uid: 29910 - type: CableMV - components: - - pos: 101.5,46.5 - parent: 0 - type: Transform -- uid: 29911 - type: CableMV - components: - - pos: 101.5,47.5 - parent: 0 - type: Transform -- uid: 29912 - type: CableMV - components: - - pos: 101.5,48.5 - parent: 0 - type: Transform -- uid: 29913 - type: CableMV - components: - - pos: 101.5,49.5 - parent: 0 - type: Transform -- uid: 29914 - type: CableMV - components: - - pos: 101.5,50.5 - parent: 0 - type: Transform -- uid: 29915 - type: CableMV - components: - - pos: 101.5,51.5 - parent: 0 - type: Transform -- uid: 29916 - type: CableMV - components: - - pos: 101.5,52.5 - parent: 0 - type: Transform -- uid: 29917 - type: CableMV - components: - - pos: 101.5,53.5 - parent: 0 - type: Transform -- uid: 29918 - type: CableMV - components: - - pos: 101.5,54.5 - parent: 0 - type: Transform -- uid: 29919 - type: CableMV - components: - - pos: 101.5,55.5 - parent: 0 - type: Transform -- uid: 29920 - type: CableMV - components: - - pos: 102.5,55.5 - parent: 0 - type: Transform -- uid: 29921 - type: CableMV - components: - - pos: 103.5,55.5 - parent: 0 - type: Transform -- uid: 29922 - type: CableMV - components: - - pos: 104.5,55.5 - parent: 0 - type: Transform -- uid: 29923 - type: CableMV - components: - - pos: 104.5,56.5 - parent: 0 - type: Transform -- uid: 29924 - type: CableMV - components: - - pos: 104.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29925 - type: CableMV - components: - - pos: 100.5,49.5 - parent: 0 - type: Transform -- uid: 29926 - type: CableMV - components: - - pos: 99.5,49.5 - parent: 0 - type: Transform -- uid: 29927 - type: CableMV - components: - - pos: 98.5,49.5 - parent: 0 - type: Transform -- uid: 29928 - type: CableMV - components: - - pos: 97.5,49.5 - parent: 0 - type: Transform -- uid: 29929 - type: CableMV - components: - - pos: 96.5,49.5 - parent: 0 - type: Transform -- uid: 29930 - type: CableMV - components: - - pos: 95.5,49.5 - parent: 0 - type: Transform -- uid: 29931 - type: CableMV - components: - - pos: 94.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29932 - type: CableMV - components: - - pos: 102.5,49.5 - parent: 0 - type: Transform -- uid: 29933 - type: CableMV - components: - - pos: 103.5,49.5 - parent: 0 - type: Transform -- uid: 29934 - type: CableMV - components: - - pos: 104.5,49.5 - parent: 0 - type: Transform -- uid: 29935 - type: CableMV - components: - - pos: 105.5,49.5 - parent: 0 - type: Transform -- uid: 29936 - type: CableMV - components: - - pos: 106.5,49.5 - parent: 0 - type: Transform -- uid: 29937 - type: CableMV - components: - - pos: 107.5,49.5 - parent: 0 - type: Transform -- uid: 29938 - type: CableMV - components: - - pos: 108.5,49.5 - parent: 0 - type: Transform -- uid: 29939 - type: CableMV - components: - - pos: 109.5,49.5 - parent: 0 - type: Transform -- uid: 29940 - type: CableMV - components: - - pos: 110.5,49.5 - parent: 0 - type: Transform -- uid: 29941 - type: CableMV - components: - - pos: 111.5,49.5 - parent: 0 - type: Transform -- uid: 29942 - type: CableMV - components: - - pos: 112.5,49.5 - parent: 0 - type: Transform -- uid: 29943 - type: CableMV - components: - - pos: 113.5,49.5 - parent: 0 - type: Transform -- uid: 29944 - type: CableMV - components: - - pos: 114.5,49.5 - parent: 0 - type: Transform -- uid: 29945 - type: CableMV - components: - - pos: 115.5,49.5 - parent: 0 - type: Transform -- uid: 29946 - type: CableMV - components: - - pos: 116.5,49.5 - parent: 0 - type: Transform -- uid: 29947 - type: CableMV - components: - - pos: 117.5,49.5 - parent: 0 - type: Transform -- uid: 29948 - type: CableMV - components: - - pos: 118.5,49.5 - parent: 0 - type: Transform -- uid: 29949 - type: CableMV - components: - - pos: 119.5,49.5 - parent: 0 - type: Transform -- uid: 29950 - type: CableMV - components: - - pos: 120.5,49.5 - parent: 0 - type: Transform -- uid: 29951 - type: CableMV - components: - - pos: 121.5,49.5 - parent: 0 - type: Transform -- uid: 29952 - type: CableMV - components: - - pos: 122.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29953 - type: CableMV - components: - - pos: 123.5,49.5 - parent: 0 - type: Transform -- uid: 29954 - type: CableMV - components: - - pos: 124.5,49.5 - parent: 0 - type: Transform -- uid: 29955 - type: CableMV - components: - - pos: 125.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29956 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 94.5,49.5 - parent: 0 - type: Transform -- uid: 29957 - type: APCBasic - components: - - pos: 104.5,57.5 - parent: 0 - type: Transform -- uid: 29958 - type: APCBasic - components: - - pos: 104.5,45.5 - parent: 0 - type: Transform -- uid: 29959 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 125.5,49.5 - parent: 0 - type: Transform -- uid: 29960 - type: CableApcExtension - components: - - pos: 125.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29961 - type: CableApcExtension - components: - - pos: 126.5,49.5 - parent: 0 - type: Transform -- uid: 29962 - type: CableApcExtension - components: - - pos: 126.5,50.5 - parent: 0 - type: Transform -- uid: 29963 - type: CableApcExtension - components: - - pos: 126.5,51.5 - parent: 0 - type: Transform -- uid: 29964 - type: CableApcExtension - components: - - pos: 126.5,52.5 - parent: 0 - type: Transform -- uid: 29965 - type: CableApcExtension - components: - - pos: 125.5,52.5 - parent: 0 - type: Transform -- uid: 29966 - type: CableApcExtension - components: - - pos: 124.5,52.5 - parent: 0 - type: Transform -- uid: 29967 - type: CableApcExtension - components: - - pos: 123.5,52.5 - parent: 0 - type: Transform -- uid: 29968 - type: CableApcExtension - components: - - pos: 122.5,52.5 - parent: 0 - type: Transform -- uid: 29969 - type: CableApcExtension - components: - - pos: 121.5,52.5 - parent: 0 - type: Transform -- uid: 29970 - type: CableApcExtension - components: - - pos: 120.5,52.5 - parent: 0 - type: Transform -- uid: 29971 - type: CableApcExtension - components: - - pos: 119.5,52.5 - parent: 0 - type: Transform -- uid: 29972 - type: CableApcExtension - components: - - pos: 126.5,48.5 - parent: 0 - type: Transform -- uid: 29973 - type: CableApcExtension - components: - - pos: 126.5,47.5 - parent: 0 - type: Transform -- uid: 29974 - type: CableApcExtension - components: - - pos: 126.5,46.5 - parent: 0 - type: Transform -- uid: 29975 - type: CableApcExtension - components: - - pos: 125.5,46.5 - parent: 0 - type: Transform -- uid: 29976 - type: CableApcExtension - components: - - pos: 124.5,46.5 - parent: 0 - type: Transform -- uid: 29977 - type: CableApcExtension - components: - - pos: 123.5,46.5 - parent: 0 - type: Transform -- uid: 29978 - type: CableApcExtension - components: - - pos: 122.5,46.5 - parent: 0 - type: Transform -- uid: 29979 - type: CableApcExtension - components: - - pos: 121.5,46.5 - parent: 0 - type: Transform -- uid: 29980 - type: CableApcExtension - components: - - pos: 120.5,46.5 - parent: 0 - type: Transform -- uid: 29981 - type: CableApcExtension - components: - - pos: 119.5,46.5 - parent: 0 - type: Transform -- uid: 29982 - type: CableApcExtension - components: - - pos: 119.5,47.5 - parent: 0 - type: Transform -- uid: 29983 - type: CableApcExtension - components: - - pos: 119.5,48.5 - parent: 0 - type: Transform -- uid: 29984 - type: CableApcExtension - components: - - pos: 119.5,49.5 - parent: 0 - type: Transform -- uid: 29985 - type: CableApcExtension - components: - - pos: 119.5,50.5 - parent: 0 - type: Transform -- uid: 29986 - type: CableApcExtension - components: - - pos: 119.5,51.5 - parent: 0 - type: Transform -- uid: 29987 - type: CableApcExtension - components: - - pos: 120.5,49.5 - parent: 0 - type: Transform -- uid: 29988 - type: CableApcExtension - components: - - pos: 121.5,49.5 - parent: 0 - type: Transform -- uid: 29989 - type: CableApcExtension - components: - - pos: 122.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29990 - type: CableApcExtension - components: - - pos: 123.5,49.5 - parent: 0 - type: Transform -- uid: 29991 - type: CableApcExtension - components: - - pos: 124.5,49.5 - parent: 0 - type: Transform -- uid: 29992 - type: CableApcExtension - components: - - pos: 118.5,49.5 - parent: 0 - type: Transform -- uid: 29993 - type: CableApcExtension - components: - - pos: 117.5,49.5 - parent: 0 - type: Transform -- uid: 29994 - type: CableApcExtension - components: - - pos: 116.5,49.5 - parent: 0 - type: Transform -- uid: 29995 - type: CableApcExtension - components: - - pos: 115.5,49.5 - parent: 0 - type: Transform -- uid: 29996 - type: CableApcExtension - components: - - pos: 114.5,49.5 - parent: 0 - type: Transform -- uid: 29997 - type: CableApcExtension - components: - - pos: 113.5,49.5 - parent: 0 - type: Transform -- uid: 29998 - type: CableApcExtension - components: - - pos: 112.5,49.5 - parent: 0 - type: Transform -- uid: 29999 - type: CableApcExtension - components: - - pos: 94.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30000 - type: CableApcExtension - components: - - pos: 95.5,49.5 - parent: 0 - type: Transform -- uid: 30001 - type: CableApcExtension - components: - - pos: 96.5,49.5 - parent: 0 - type: Transform -- uid: 30002 - type: CableApcExtension - components: - - pos: 96.5,48.5 - parent: 0 - type: Transform -- uid: 30003 - type: CableApcExtension - components: - - pos: 96.5,47.5 - parent: 0 - type: Transform -- uid: 30004 - type: CableApcExtension - components: - - pos: 96.5,46.5 - parent: 0 - type: Transform -- uid: 30005 - type: CableApcExtension - components: - - pos: 96.5,45.5 - parent: 0 - type: Transform -- uid: 30006 - type: CableApcExtension - components: - - pos: 96.5,44.5 - parent: 0 - type: Transform -- uid: 30007 - type: CableApcExtension - components: - - pos: 96.5,43.5 - parent: 0 - type: Transform -- uid: 30008 - type: CableApcExtension - components: - - pos: 96.5,42.5 - parent: 0 - type: Transform -- uid: 30009 - type: CableApcExtension - components: - - pos: 96.5,41.5 - parent: 0 - type: Transform -- uid: 30010 - type: CableApcExtension - components: - - pos: 96.5,50.5 - parent: 0 - type: Transform -- uid: 30011 - type: CableApcExtension - components: - - pos: 96.5,51.5 - parent: 0 - type: Transform -- uid: 30012 - type: CableApcExtension - components: - - pos: 96.5,52.5 - parent: 0 - type: Transform -- uid: 30013 - type: CableApcExtension - components: - - pos: 96.5,53.5 - parent: 0 - type: Transform -- uid: 30014 - type: CableApcExtension - components: - - pos: 96.5,54.5 - parent: 0 - type: Transform -- uid: 30015 - type: CableApcExtension - components: - - pos: 96.5,55.5 - parent: 0 - type: Transform -- uid: 30016 - type: CableApcExtension - components: - - pos: 96.5,56.5 - parent: 0 - type: Transform -- uid: 30017 - type: CableApcExtension - components: - - pos: 97.5,49.5 - parent: 0 - type: Transform -- uid: 30018 - type: CableApcExtension - components: - - pos: 98.5,49.5 - parent: 0 - type: Transform -- uid: 30019 - type: CableApcExtension - components: - - pos: 99.5,49.5 - parent: 0 - type: Transform -- uid: 30020 - type: CableApcExtension - components: - - pos: 100.5,49.5 - parent: 0 - type: Transform -- uid: 30021 - type: CableApcExtension - components: - - pos: 101.5,49.5 - parent: 0 - type: Transform -- uid: 30022 - type: CableApcExtension - components: - - pos: 102.5,49.5 - parent: 0 - type: Transform -- uid: 30023 - type: CableApcExtension - components: - - pos: 101.5,48.5 - parent: 0 - type: Transform -- uid: 30024 - type: CableApcExtension - components: - - pos: 101.5,47.5 - parent: 0 - type: Transform -- uid: 30025 - type: CableApcExtension - components: - - pos: 101.5,46.5 - parent: 0 - type: Transform -- uid: 30026 - type: CableApcExtension - components: - - pos: 101.5,50.5 - parent: 0 - type: Transform -- uid: 30027 - type: CableApcExtension - components: - - pos: 101.5,51.5 - parent: 0 - type: Transform -- uid: 30028 - type: CableApcExtension - components: - - pos: 101.5,52.5 - parent: 0 - type: Transform -- uid: 30029 - type: CableApcExtension - components: - - pos: 104.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30030 - type: CableApcExtension - components: - - pos: 104.5,56.5 - parent: 0 - type: Transform -- uid: 30031 - type: CableApcExtension - components: - - pos: 104.5,55.5 - parent: 0 - type: Transform -- uid: 30032 - type: CableApcExtension - components: - - pos: 103.5,55.5 - parent: 0 - type: Transform -- uid: 30033 - type: CableApcExtension - components: - - pos: 102.5,55.5 - parent: 0 - type: Transform -- uid: 30034 - type: CableApcExtension - components: - - pos: 101.5,55.5 - parent: 0 - type: Transform -- uid: 30035 - type: CableApcExtension - components: - - pos: 100.5,55.5 - parent: 0 - type: Transform -- uid: 30036 - type: CableApcExtension - components: - - pos: 105.5,55.5 - parent: 0 - type: Transform -- uid: 30037 - type: CableApcExtension - components: - - pos: 106.5,55.5 - parent: 0 - type: Transform -- uid: 30038 - type: CableApcExtension - components: - - pos: 107.5,55.5 - parent: 0 - type: Transform -- uid: 30039 - type: CableApcExtension - components: - - pos: 108.5,55.5 - parent: 0 - type: Transform -- uid: 30040 - type: CableApcExtension - components: - - pos: 104.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30041 - type: CableApcExtension - components: - - pos: 104.5,44.5 - parent: 0 - type: Transform -- uid: 30042 - type: CableApcExtension - components: - - pos: 104.5,43.5 - parent: 0 - type: Transform -- uid: 30043 - type: CableApcExtension - components: - - pos: 103.5,43.5 - parent: 0 - type: Transform -- uid: 30044 - type: CableApcExtension - components: - - pos: 102.5,43.5 - parent: 0 - type: Transform -- uid: 30045 - type: CableApcExtension - components: - - pos: 101.5,43.5 - parent: 0 - type: Transform -- uid: 30046 - type: CableApcExtension - components: - - pos: 100.5,43.5 - parent: 0 - type: Transform -- uid: 30047 - type: CableApcExtension - components: - - pos: 105.5,43.5 - parent: 0 - type: Transform -- uid: 30048 - type: CableApcExtension - components: - - pos: 106.5,43.5 - parent: 0 - type: Transform -- uid: 30049 - type: CableApcExtension - components: - - pos: 107.5,43.5 - parent: 0 - type: Transform -- uid: 30050 - type: CableApcExtension - components: - - pos: 108.5,43.5 - parent: 0 - type: Transform -- uid: 30051 - type: CableApcExtension - components: - - pos: 109.5,43.5 - parent: 0 - type: Transform -- uid: 30052 - type: CableApcExtension - components: - - pos: 110.5,43.5 - parent: 0 - type: Transform -- uid: 30053 - type: CableApcExtension - components: - - pos: 111.5,43.5 - parent: 0 - type: Transform -- uid: 30054 - type: CableApcExtension - components: - - pos: 112.5,43.5 - parent: 0 - type: Transform -- uid: 30055 - type: CableApcExtension - components: - - pos: 104.5,46.5 - parent: 0 - type: Transform -- uid: 30056 - type: CableApcExtension - components: - - pos: 104.5,47.5 - parent: 0 - type: Transform -- uid: 30057 - type: CableApcExtension - components: - - pos: 104.5,48.5 - parent: 0 - type: Transform -- uid: 30058 - type: CableApcExtension - components: - - pos: 104.5,49.5 - parent: 0 - type: Transform -- uid: 30059 - type: CableApcExtension - components: - - pos: 105.5,49.5 - parent: 0 - type: Transform -- uid: 30060 - type: CableApcExtension - components: - - pos: 106.5,49.5 - parent: 0 - type: Transform -- uid: 30061 - type: CableApcExtension - components: - - pos: 107.5,49.5 - parent: 0 - type: Transform -- uid: 30062 - type: CableApcExtension - components: - - pos: 108.5,49.5 - parent: 0 - type: Transform -- uid: 30063 - type: CableApcExtension - components: - - pos: 109.5,49.5 - parent: 0 - type: Transform -- uid: 30064 - type: CableApcExtension - components: - - pos: 110.5,49.5 - parent: 0 - type: Transform -- uid: 30065 - type: CableApcExtension - components: - - pos: 108.5,48.5 - parent: 0 - type: Transform -- uid: 30066 - type: CableApcExtension - components: - - pos: 108.5,47.5 - parent: 0 - type: Transform -- uid: 30067 - type: CableApcExtension - components: - - pos: 108.5,50.5 - parent: 0 - type: Transform -- uid: 30068 - type: CableApcExtension - components: - - pos: 108.5,51.5 - parent: 0 - type: Transform -- uid: 30069 - type: CableApcExtension - components: - - pos: 127.5,49.5 - parent: 0 - type: Transform -- uid: 30070 - type: Grille - components: - - pos: 103.5,46.5 - parent: 0 - type: Transform -- uid: 30071 - type: Grille - components: - - pos: 103.5,47.5 - parent: 0 - type: Transform -- uid: 30072 - type: Grille - components: - - pos: 103.5,48.5 - parent: 0 - type: Transform -- uid: 30073 - type: Grille - components: - - pos: 103.5,50.5 - parent: 0 - type: Transform -- uid: 30074 - type: Grille - components: - - pos: 103.5,51.5 - parent: 0 - type: Transform -- uid: 30075 - type: Grille - components: - - pos: 103.5,52.5 - parent: 0 - type: Transform -- uid: 30076 - type: Grille - components: - - pos: 122.5,49.5 - parent: 0 - type: Transform -- uid: 30077 - type: PosterLegitNanotrasenLogo - components: - - pos: 95.5,45.5 - parent: 0 - type: Transform -- uid: 30078 - type: PosterLegitNanotrasenLogo - components: - - pos: 97.5,45.5 - parent: 0 - type: Transform -- uid: 30079 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 95.5,41.5 - parent: 0 - type: Transform -- uid: 30080 - type: ClosetEmergencyFilledRandom - components: - - pos: 95.5,42.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 30081 - type: ClosetEmergencyFilledRandom - components: - - pos: 95.5,44.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 30082 - type: ClosetFireFilled - components: - - pos: 95.5,43.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 30083 - type: AirlockMaintCommandLocked - components: - - pos: 112.5,37.5 - parent: 0 - type: Transform -- uid: 30084 - type: CableApcExtension - components: - - pos: 96.5,40.5 - parent: 0 - type: Transform -- uid: 30085 - type: CableApcExtension - components: - - pos: 96.5,39.5 - parent: 0 - type: Transform -- uid: 30086 - type: CableApcExtension - components: - - pos: 95.5,39.5 - parent: 0 - type: Transform -- uid: 30087 - type: CableApcExtension - components: - - pos: 94.5,39.5 - parent: 0 - type: Transform -- uid: 30088 - type: CableApcExtension - components: - - pos: 93.5,39.5 - parent: 0 - type: Transform -- uid: 30089 - type: CableApcExtension - components: - - pos: 92.5,39.5 - parent: 0 - type: Transform -- uid: 30090 - type: CableApcExtension - components: - - pos: 91.5,39.5 - parent: 0 - type: Transform -- uid: 30091 - type: CableApcExtension - components: - - pos: 90.5,39.5 - parent: 0 - type: Transform -- uid: 30092 - type: CableApcExtension - components: - - pos: 89.5,39.5 - parent: 0 - type: Transform -- uid: 30093 - type: CableApcExtension - components: - - pos: 88.5,39.5 - parent: 0 - type: Transform -- uid: 30094 - type: CableApcExtension - components: - - pos: 87.5,39.5 - parent: 0 - type: Transform -- uid: 30095 - type: CableApcExtension - components: - - pos: 86.5,39.5 - parent: 0 - type: Transform -- uid: 30096 - type: CableApcExtension - components: - - pos: 85.5,39.5 - parent: 0 - type: Transform -- uid: 30097 - type: CableApcExtension - components: - - pos: 97.5,39.5 - parent: 0 - type: Transform -- uid: 30098 - type: CableApcExtension - components: - - pos: 98.5,39.5 - parent: 0 - type: Transform -- uid: 30099 - type: CableApcExtension - components: - - pos: 99.5,39.5 - parent: 0 - type: Transform -- uid: 30100 - type: CableApcExtension - components: - - pos: 100.5,39.5 - parent: 0 - type: Transform -- uid: 30101 - type: CableApcExtension - components: - - pos: 101.5,39.5 - parent: 0 - type: Transform -- uid: 30102 - type: CableApcExtension - components: - - pos: 102.5,39.5 - parent: 0 - type: Transform -- uid: 30103 - type: CableApcExtension - components: - - pos: 102.5,38.5 - parent: 0 - type: Transform -- uid: 30104 - type: CableApcExtension - components: - - pos: 102.5,37.5 - parent: 0 - type: Transform -- uid: 30105 - type: CableApcExtension - components: - - pos: 102.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30106 - type: CableApcExtension - components: - - pos: 102.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30107 - type: CableApcExtension - components: - - pos: 102.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30108 - type: CableApcExtension - components: - - pos: 103.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30109 - type: CableApcExtension - components: - - pos: 104.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30110 - type: CableApcExtension - components: - - pos: 105.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30111 - type: CableApcExtension - components: - - pos: 106.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30112 - type: CableApcExtension - components: - - pos: 107.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30113 - type: CableApcExtension - components: - - pos: 108.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30114 - type: CableApcExtension - components: - - pos: 109.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30115 - type: CableApcExtension - components: - - pos: 110.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30116 - type: CableApcExtension - components: - - pos: 111.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30117 - type: CableApcExtension - components: - - pos: 112.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30118 - type: CableApcExtension - components: - - pos: 112.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30119 - type: CableApcExtension - components: - - pos: 112.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30120 - type: CableApcExtension - components: - - pos: 112.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30121 - type: CableApcExtension - components: - - pos: 112.5,39.5 - parent: 0 - type: Transform -- uid: 30122 - type: CableApcExtension - components: - - pos: 109.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30123 - type: CableApcExtension - components: - - pos: 109.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30124 - type: CableApcExtension - components: - - pos: 109.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30125 - type: CableApcExtension - components: - - pos: 109.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30126 - type: CableApcExtension - components: - - pos: 110.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30127 - type: CableApcExtension - components: - - pos: 111.5,31.5 - parent: 0 - type: Transform -- uid: 30128 - type: CableApcExtension - components: - - pos: 112.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30129 - type: CableApcExtension - components: - - pos: 113.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30130 - type: CableApcExtension - components: - - pos: 114.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30131 - type: CableApcExtension - components: - - pos: 115.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30132 - type: CableApcExtension - components: - - pos: 116.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30133 - type: CableApcExtension - components: - - pos: 109.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30134 - type: CableApcExtension - components: - - pos: 108.5,30.5 - parent: 0 - type: Transform -- uid: 30135 - type: CableApcExtension - components: - - pos: 107.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30136 - type: CableApcExtension - components: - - pos: 106.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30137 - type: CableApcExtension - components: - - pos: 105.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30138 - type: CableApcExtension - components: - - pos: 104.5,30.5 - parent: 0 - type: Transform -- uid: 30139 - type: CableApcExtension - components: - - pos: 103.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30140 - type: CableApcExtension - components: - - pos: 102.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30141 - type: CableApcExtension - components: - - pos: 102.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30142 - type: CableApcExtension - components: - - pos: 102.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30143 - type: CableApcExtension - components: - - pos: 102.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30144 - type: Catwalk - components: - - pos: 111.5,40.5 - parent: 0 - type: Transform -- uid: 30145 - type: Catwalk - components: - - pos: 111.5,39.5 - parent: 0 - type: Transform -- uid: 30146 - type: Catwalk - components: - - pos: 111.5,38.5 - parent: 0 - type: Transform -- uid: 30147 - type: Catwalk - components: - - pos: 112.5,38.5 - parent: 0 - type: Transform -- uid: 30148 - type: Catwalk - components: - - pos: 113.5,38.5 - parent: 0 - type: Transform -- uid: 30149 - type: Catwalk - components: - - pos: 113.5,39.5 - parent: 0 - type: Transform -- uid: 30150 - type: Catwalk - components: - - pos: 113.5,40.5 - parent: 0 - type: Transform -- uid: 30151 - type: Grille - components: - - pos: 109.5,42.5 - parent: 0 - type: Transform -- uid: 30152 - type: Grille - components: - - pos: 109.5,44.5 - parent: 0 - type: Transform -- uid: 30153 - type: ReinforcedWindow - components: - - pos: 109.5,42.5 - parent: 0 - type: Transform -- uid: 30154 - type: ReinforcedWindow - components: - - pos: 109.5,44.5 - parent: 0 - type: Transform -- uid: 30155 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 88.5,38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30156 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 94.5,38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30157 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 100.5,38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30158 - type: PoweredSmallLight - components: - - pos: 106.5,40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30159 - type: Poweredlight - components: - - pos: 99.5,52.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30160 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 99.5,46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30161 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 97.5,43.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30162 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 95.5,47.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30163 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 95.5,51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30164 - type: Poweredlight - components: - - pos: 108.5,52.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30165 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 108.5,46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30166 - type: Poweredlight - components: - - pos: 108.5,56.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30167 - type: Poweredlight - components: - - pos: 101.5,56.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30168 - type: Poweredlight - components: - - pos: 122.5,54.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30169 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 122.5,44.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30170 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 128.5,49.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30171 - type: PottedPlantRandom - components: - - pos: 122.5,44.5 - parent: 0 - type: Transform -- uid: 30172 - type: PottedPlantRandom - components: - - pos: 122.5,54.5 - parent: 0 - type: Transform -- uid: 30173 - type: PoweredSmallLight - components: - - pos: 113.5,50.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30174 - type: WeaponTurretSyndicateBroken - components: - - pos: 118.5,53.5 - parent: 0 - type: Transform -- uid: 30175 - type: WeaponTurretSyndicateBroken - components: - - pos: 127.5,53.5 - parent: 0 - type: Transform -- uid: 30176 - type: WeaponTurretSyndicateBroken - components: - - pos: 127.5,45.5 - parent: 0 - type: Transform -- uid: 30177 - type: WeaponTurretSyndicateBroken - components: - - pos: 118.5,45.5 - parent: 0 - type: Transform -- uid: 30178 - type: WeaponTurretSyndicateBroken - components: - - pos: 116.5,48.5 - parent: 0 - type: Transform -- uid: 30179 - type: WeaponTurretSyndicateBroken - components: - - pos: 116.5,50.5 - parent: 0 - type: Transform -- uid: 30180 - type: WeaponTurretSyndicateBroken - components: - - pos: 110.5,46.5 - parent: 0 - type: Transform -- uid: 30181 - type: WeaponTurretSyndicateBroken - components: - - pos: 110.5,52.5 - parent: 0 - type: Transform -- uid: 30182 - type: WeaponTurretSyndicateBroken - components: - - pos: 99.5,52.5 - parent: 0 - type: Transform -- uid: 30183 - type: WeaponTurretSyndicateBroken - components: - - pos: 104.5,52.5 - parent: 0 - type: Transform -- uid: 30184 - type: WeaponTurretSyndicateBroken - components: - - pos: 104.5,46.5 - parent: 0 - type: Transform -- uid: 30185 - type: WeaponTurretSyndicateBroken - components: - - pos: 99.5,46.5 - parent: 0 - type: Transform -- uid: 30186 - type: HighSecCommandLocked - components: - - pos: 117.5,49.5 - parent: 0 - type: Transform -- uid: 30187 - type: HighSecCommandLocked - components: - - pos: 111.5,49.5 - parent: 0 - type: Transform -- uid: 30188 - type: HighSecCommandLocked - components: - - pos: 103.5,49.5 - parent: 0 - type: Transform -- uid: 30189 - type: AirlockCommandLocked - components: - - pos: 98.5,49.5 - parent: 0 - type: Transform -- uid: 30190 - type: AirlockCommandLocked - components: - - pos: 101.5,45.5 - parent: 0 - type: Transform -- uid: 30191 - type: AirlockCommandLocked - components: - - pos: 101.5,53.5 - parent: 0 - type: Transform -- uid: 30192 - type: AirlockCommandLocked - components: - - pos: 96.5,45.5 - parent: 0 - type: Transform -- uid: 30193 - type: AirlockCommandLocked - components: - - pos: 94.5,55.5 - parent: 0 - type: Transform -- uid: 30194 - type: PottedPlantRandom - components: - - pos: 95.5,56.5 - parent: 0 - type: Transform -- uid: 30195 - type: PottedPlantRandom - components: - - pos: 97.5,46.5 - parent: 0 - type: Transform -- uid: 30196 - type: PottedPlantRandom - components: - - pos: 95.5,46.5 - parent: 0 - type: Transform -- uid: 30197 - type: PottedPlantRandom - components: - - pos: 106.5,52.5 - parent: 0 - type: Transform -- uid: 30198 - type: PottedPlantRandom - components: - - pos: 106.5,46.5 - parent: 0 - type: Transform -- uid: 30199 - type: Table - components: - - pos: 108.5,52.5 - parent: 0 - type: Transform -- uid: 30200 - type: Table - components: - - pos: 109.5,52.5 - parent: 0 - type: Transform -- uid: 30201 - type: Table - components: - - pos: 107.5,52.5 - parent: 0 - type: Transform -- uid: 30202 - type: Table - components: - - pos: 109.5,46.5 - parent: 0 - type: Transform -- uid: 30203 - type: Table - components: - - pos: 108.5,46.5 - parent: 0 - type: Transform -- uid: 30204 - type: Table - components: - - pos: 107.5,46.5 - parent: 0 - type: Transform -- uid: 30205 - type: Table - components: - - pos: 105.5,46.5 - parent: 0 - type: Transform -- uid: 30206 - type: Table - components: - - pos: 105.5,52.5 - parent: 0 - type: Transform -- uid: 30207 - type: Table - components: - - pos: 128.5,48.5 - parent: 0 - type: Transform -- uid: 30208 - type: Table - components: - - pos: 128.5,50.5 - parent: 0 - type: Transform -- uid: 30209 - type: SMESBasic - components: - - pos: 128.5,49.5 - parent: 0 - type: Transform -- uid: 30210 - type: WindoorCommandLocked - components: - - pos: 123.5,48.5 - parent: 0 - type: Transform -- uid: 30211 - type: WindoorCommandLocked - components: - - rot: 3.141592653589793 rad - pos: 123.5,50.5 - parent: 0 - type: Transform -- uid: 30212 - type: ToyAi - components: - - pos: 124.491325,49.6419 - parent: 0 - type: Transform -- uid: 30213 - type: ComputerFrame - components: - - pos: 108.5,50.5 - parent: 0 - type: Transform -- uid: 30214 - type: ComputerFrame - components: - - rot: 3.141592653589793 rad - pos: 108.5,48.5 - parent: 0 - type: Transform -- uid: 30215 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 107.5,46.5 - parent: 0 - type: Transform -- uid: 30216 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 109.5,46.5 - parent: 0 - type: Transform -- uid: 30217 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 109.5,52.5 - parent: 0 - type: Transform -- uid: 30218 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 107.5,52.5 - parent: 0 - type: Transform -- uid: 30219 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 108.5,50.5 - parent: 0 - type: Transform -- uid: 30220 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 108.5,48.5 - parent: 0 - type: Transform -- uid: 30221 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 108.5,48.5 - parent: 0 - type: Transform -- uid: 30222 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 108.5,50.5 - parent: 0 - type: Transform -- uid: 30223 - type: GeneratorPlasma - components: - - pos: 113.5,43.5 - parent: 0 - type: Transform -- uid: 30224 - type: WindowReinforcedDirectional - components: - - pos: 108.5,48.5 - parent: 0 - type: Transform -- uid: 30225 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 108.5,50.5 - parent: 0 - type: Transform -- uid: 30226 - type: CableHV - components: - - pos: 113.5,44.5 - parent: 0 - type: Transform -- uid: 30227 - type: CableHV - components: - - pos: 112.5,44.5 - parent: 0 - type: Transform -- uid: 30228 - type: CableHV - components: - - pos: 111.5,44.5 - parent: 0 - type: Transform -- uid: 30229 - type: CableHV - components: - - pos: 110.5,44.5 - parent: 0 - type: Transform -- uid: 30230 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 113.5,44.5 - parent: 0 - type: Transform -- uid: 30231 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 110.5,42.5 - parent: 0 - type: Transform -- uid: 30232 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 99.5,42.5 - parent: 0 - type: Transform -- uid: 30233 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 99.5,55.5 - parent: 0 - type: Transform -- uid: 30234 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 99.5,56.5 - parent: 0 - type: Transform -- uid: 30235 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 107.5,54.5 - parent: 0 - type: Transform -- uid: 30236 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 105.5,54.5 - parent: 0 - type: Transform -- uid: 30237 - type: ComputerPowerMonitoring - components: - - rot: 1.5707963267948966 rad - pos: 110.5,44.5 - parent: 0 - type: Transform -- uid: 30238 - type: AirlockCommandLocked - components: - - rot: 1.5707963267948966 rad - pos: 109.5,43.5 - parent: 0 - type: Transform -- uid: 30239 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 104.5,42.5 - parent: 0 - type: Transform -- uid: 30240 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 105.5,42.5 - parent: 0 - type: Transform -- uid: 30241 - type: ToolboxMechanicalFilled - components: - - pos: 104.59976,42.765907 - parent: 0 - type: Transform -- uid: 30242 - type: ToolboxElectricalFilled - components: - - pos: 104.80289,42.547157 - parent: 0 - type: Transform -- uid: 30243 - type: SheetGlass - components: - - pos: 105.52164,42.531532 - parent: 0 - type: Transform -- uid: 30244 - type: WindowReinforcedDirectional - components: - - pos: 107.5,52.5 - parent: 0 - type: Transform -- uid: 30245 - type: WindowReinforcedDirectional - components: - - pos: 109.5,52.5 - parent: 0 - type: Transform -- uid: 30246 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 107.5,46.5 - parent: 0 - type: Transform -- uid: 30247 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 109.5,46.5 - parent: 0 - type: Transform -- uid: 30248 - type: WindoorCommandLocked - components: - - rot: 3.141592653589793 rad - pos: 108.5,46.5 - parent: 0 - type: Transform -- uid: 30249 - type: WindoorCommandLocked - components: - - pos: 108.5,52.5 - parent: 0 - type: Transform -- uid: 30250 - type: PoweredSmallLight - components: - - pos: 115.5,50.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30251 - type: WallReinforced - components: - - pos: 56.5,52.5 - parent: 0 - type: Transform -- uid: 30252 - type: WallReinforced - components: - - pos: 56.5,51.5 - parent: 0 - type: Transform -- uid: 30253 - type: SubstationBasic - components: - - name: West Bridge Sub - type: MetaData - - pos: 57.5,51.5 - parent: 0 - type: Transform -- uid: 30254 - type: AirlockEngineeringLocked - components: - - pos: 56.5,50.5 - parent: 0 - type: Transform -- uid: 30255 - type: CableHV - components: - - pos: 54.5,33.5 - parent: 0 - type: Transform -- uid: 30256 - type: CableHV - components: - - pos: 54.5,34.5 - parent: 0 - type: Transform -- uid: 30257 - type: CableHV - components: - - pos: 54.5,35.5 - parent: 0 - type: Transform -- uid: 30258 - type: CableHV - components: - - pos: 54.5,36.5 - parent: 0 - type: Transform -- uid: 30259 - type: CableHV - components: - - pos: 54.5,37.5 - parent: 0 - type: Transform -- uid: 30260 - type: CableHV - components: - - pos: 54.5,38.5 - parent: 0 - type: Transform -- uid: 30261 - type: CableHV - components: - - pos: 54.5,39.5 - parent: 0 - type: Transform -- uid: 30262 - type: CableHV - components: - - pos: 54.5,40.5 - parent: 0 - type: Transform -- uid: 30263 - type: CableHV - components: - - pos: 54.5,41.5 - parent: 0 - type: Transform -- uid: 30264 - type: CableHV - components: - - pos: 54.5,42.5 - parent: 0 - type: Transform -- uid: 30265 - type: CableHV - components: - - pos: 54.5,43.5 - parent: 0 - type: Transform -- uid: 30266 - type: CableHV - components: - - pos: 55.5,43.5 - parent: 0 - type: Transform -- uid: 30267 - type: CableHV - components: - - pos: 55.5,44.5 - parent: 0 - type: Transform -- uid: 30268 - type: CableHV - components: - - pos: 55.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30269 - type: CableHV - components: - - pos: 55.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30270 - type: CableHV - components: - - pos: 55.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30271 - type: CableHV - components: - - pos: 55.5,48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30272 - type: CableHV - components: - - pos: 55.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30273 - type: CableHV - components: - - pos: 55.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30274 - type: CableHV - components: - - pos: 56.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30275 - type: CableHV - components: - - pos: 57.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30276 - type: CableHV - components: - - pos: 57.5,51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30277 - type: CableHV - components: - - pos: 54.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30278 - type: CableHV - components: - - pos: 53.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30279 - type: CableHV - components: - - pos: 52.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30280 - type: CableHV - components: - - pos: 51.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30281 - type: CableHV - components: - - pos: 50.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30282 - type: CableHV - components: - - pos: 49.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30283 - type: CableHV - components: - - pos: 48.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30284 - type: CableHV - components: - - pos: 47.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30285 - type: CableHV - components: - - pos: 46.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30286 - type: CableHV - components: - - pos: 45.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30287 - type: CableHV - components: - - pos: 44.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30288 - type: CableHV - components: - - pos: 43.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30289 - type: CableHV - components: - - pos: 42.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30290 - type: CableHV - components: - - pos: 41.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30291 - type: CableHV - components: - - pos: 40.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30292 - type: CableHV - components: - - pos: 39.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30293 - type: GasPipeBend - components: - - pos: 79.5,53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 30294 - type: GasPipeStraight - components: - - pos: 78.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30295 - type: GasPipeStraight - components: - - pos: 78.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30296 - type: GasPipeStraight - components: - - pos: 79.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30297 - type: GasPipeStraight - components: - - pos: 79.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30298 - type: GasPipeStraight - components: - - pos: 79.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30299 - type: GasPipeStraight - components: - - pos: 79.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 30300 - type: GasPipeStraight - components: - - pos: 79.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30301 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 79.5,50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30302 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 79.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30303 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 80.5,50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30304 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 73.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30305 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 74.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30306 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 75.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30307 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 76.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30308 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 77.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30309 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 78.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30310 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 79.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30311 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 80.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30312 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 80.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30313 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 80.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30314 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 80.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30315 - type: GasVentScrubber - components: - - pos: 80.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30316 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 81.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30317 - type: CarpetChapel - components: - - pos: 80.5,51.5 - parent: 0 - type: Transform -- uid: 30318 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 81.5,51.5 - parent: 0 - type: Transform -- uid: 30319 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 79.5,43.5 - parent: 0 - type: Transform -- uid: 30320 - type: SubstationBasic - components: - - name: Vault Sub - type: MetaData - - pos: 91.5,49.5 - parent: 0 - type: Transform -- uid: 30321 - type: CableHV - components: - - pos: 82.5,33.5 - parent: 0 - type: Transform -- uid: 30322 - type: CableHV - components: - - pos: 82.5,34.5 - parent: 0 - type: Transform -- uid: 30323 - type: CableHV - components: - - pos: 82.5,35.5 - parent: 0 - type: Transform -- uid: 30324 - type: CableHV - components: - - pos: 82.5,36.5 - parent: 0 - type: Transform -- uid: 30325 - type: CableHV - components: - - pos: 82.5,37.5 - parent: 0 - type: Transform -- uid: 30326 - type: CableHV - components: - - pos: 82.5,38.5 - parent: 0 - type: Transform -- uid: 30327 - type: CableHV - components: - - pos: 83.5,38.5 - parent: 0 - type: Transform -- uid: 30328 - type: CableHV - components: - - pos: 84.5,38.5 - parent: 0 - type: Transform -- uid: 30329 - type: CableHV - components: - - pos: 85.5,38.5 - parent: 0 - type: Transform -- uid: 30330 - type: CableHV - components: - - pos: 86.5,38.5 - parent: 0 - type: Transform -- uid: 30331 - type: CableHV - components: - - pos: 87.5,38.5 - parent: 0 - type: Transform -- uid: 30332 - type: CableHV - components: - - pos: 88.5,38.5 - parent: 0 - type: Transform -- uid: 30333 - type: CableHV - components: - - pos: 89.5,38.5 - parent: 0 - type: Transform -- uid: 30334 - type: CableHV - components: - - pos: 89.5,39.5 - parent: 0 - type: Transform -- uid: 30335 - type: CableHV - components: - - pos: 89.5,40.5 - parent: 0 - type: Transform -- uid: 30336 - type: CableHV - components: - - pos: 89.5,41.5 - parent: 0 - type: Transform -- uid: 30337 - type: CableHV - components: - - pos: 89.5,42.5 - parent: 0 - type: Transform -- uid: 30338 - type: CableHV - components: - - pos: 89.5,43.5 - parent: 0 - type: Transform -- uid: 30339 - type: CableHV - components: - - pos: 89.5,44.5 - parent: 0 - type: Transform -- uid: 30340 - type: CableHV - components: - - pos: 89.5,45.5 - parent: 0 - type: Transform -- uid: 30341 - type: CableHV - components: - - pos: 89.5,46.5 - parent: 0 - type: Transform -- uid: 30342 - type: CableHV - components: - - pos: 89.5,47.5 - parent: 0 - type: Transform -- uid: 30343 - type: CableHV - components: - - pos: 89.5,48.5 - parent: 0 - type: Transform -- uid: 30344 - type: CableHV - components: - - pos: 89.5,49.5 - parent: 0 - type: Transform -- uid: 30345 - type: CableHV - components: - - pos: 90.5,49.5 - parent: 0 - type: Transform -- uid: 30346 - type: CableHV - components: - - pos: 91.5,49.5 - parent: 0 - type: Transform -- uid: 30347 - type: CableHV - components: - - pos: 89.5,50.5 - parent: 0 - type: Transform -- uid: 30348 - type: CableHV - components: - - pos: 89.5,51.5 - parent: 0 - type: Transform -- uid: 30349 - type: CableHV - components: - - pos: 89.5,52.5 - parent: 0 - type: Transform -- uid: 30350 - type: CableHV - components: - - pos: 89.5,53.5 - parent: 0 - type: Transform -- uid: 30351 - type: CableHV - components: - - pos: 89.5,54.5 - parent: 0 - type: Transform -- uid: 30352 - type: CableHV - components: - - pos: 89.5,55.5 - parent: 0 - type: Transform -- uid: 30353 - type: CableHV - components: - - pos: 88.5,55.5 - parent: 0 - type: Transform -- uid: 30354 - type: CableHV - components: - - pos: 87.5,55.5 - parent: 0 - type: Transform -- uid: 30355 - type: CableHV - components: - - pos: 86.5,55.5 - parent: 0 - type: Transform -- uid: 30356 - type: CableHV - components: - - pos: 85.5,55.5 - parent: 0 - type: Transform -- uid: 30357 - type: CableHV - components: - - pos: 84.5,55.5 - parent: 0 - type: Transform -- uid: 30358 - type: CableHV - components: - - pos: 83.5,55.5 - parent: 0 - type: Transform -- uid: 30359 - type: CableHV - components: - - pos: 82.5,55.5 - parent: 0 - type: Transform -- uid: 30360 - type: CableHV - components: - - pos: 81.5,55.5 - parent: 0 - type: Transform -- uid: 30361 - type: CableHV - components: - - pos: 80.5,55.5 - parent: 0 - type: Transform -- uid: 30362 - type: CableHV - components: - - pos: 79.5,55.5 - parent: 0 - type: Transform -- uid: 30363 - type: CableHV - components: - - pos: 78.5,55.5 - parent: 0 - type: Transform -- uid: 30364 - type: CableHV - components: - - pos: 77.5,55.5 - parent: 0 - type: Transform -- uid: 30365 - type: CableHV - components: - - pos: 76.5,55.5 - parent: 0 - type: Transform -- uid: 30366 - type: CableHV - components: - - pos: 75.5,55.5 - parent: 0 - type: Transform -- uid: 30367 - type: CableHV - components: - - pos: 74.5,55.5 - parent: 0 - type: Transform -- uid: 30368 - type: CableHV - components: - - pos: 73.5,55.5 - parent: 0 - type: Transform -- uid: 30369 - type: CableHV - components: - - pos: 55.5,51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30370 - type: CableHV - components: - - pos: 55.5,52.5 - parent: 0 - type: Transform -- uid: 30371 - type: CableHV - components: - - pos: 55.5,53.5 - parent: 0 - type: Transform -- uid: 30372 - type: CableHV - components: - - pos: 55.5,54.5 - parent: 0 - type: Transform -- uid: 30373 - type: CableHV - components: - - pos: 55.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30374 - type: CableHV - components: - - pos: 55.5,56.5 - parent: 0 - type: Transform -- uid: 30375 - type: CableHV - components: - - pos: 56.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30376 - type: CableHV - components: - - pos: 57.5,56.5 - parent: 0 - type: Transform -- uid: 30377 - type: CableHV - components: - - pos: 58.5,56.5 - parent: 0 - type: Transform -- uid: 30378 - type: CableHV - components: - - pos: 59.5,56.5 - parent: 0 - type: Transform -- uid: 30379 - type: CableHV - components: - - pos: 60.5,56.5 - parent: 0 - type: Transform -- uid: 30380 - type: CableHV - components: - - pos: 61.5,56.5 - parent: 0 - type: Transform -- uid: 30381 - type: CableHV - components: - - pos: 62.5,56.5 - parent: 0 - type: Transform -- uid: 30382 - type: CableHV - components: - - pos: 63.5,56.5 - parent: 0 - type: Transform -- uid: 30383 - type: CableHV - components: - - pos: 64.5,56.5 - parent: 0 - type: Transform -- uid: 30384 - type: CableHV - components: - - pos: 65.5,56.5 - parent: 0 - type: Transform -- uid: 30385 - type: CableHV - components: - - pos: 66.5,56.5 - parent: 0 - type: Transform -- uid: 30386 - type: CableHV - components: - - pos: 67.5,56.5 - parent: 0 - type: Transform -- uid: 30387 - type: CableHV - components: - - pos: 68.5,56.5 - parent: 0 - type: Transform -- uid: 30388 - type: CableHV - components: - - pos: 69.5,56.5 - parent: 0 - type: Transform -- uid: 30389 - type: CableHV - components: - - pos: 70.5,56.5 - parent: 0 - type: Transform -- uid: 30390 - type: CableHV - components: - - pos: 71.5,56.5 - parent: 0 - type: Transform -- uid: 30391 - type: CableHV - components: - - pos: 72.5,56.5 - parent: 0 - type: Transform -- uid: 30392 - type: CableHV - components: - - pos: 73.5,56.5 - parent: 0 - type: Transform -- uid: 30393 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 92.5,48.5 - parent: 0 - type: Transform -- uid: 30394 - type: APCBasic - components: - - pos: 85.5,57.5 - parent: 0 - type: Transform -- uid: 30395 - type: APCBasic - components: - - pos: 82.5,48.5 - parent: 0 - type: Transform -- uid: 30396 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 79.5,48.5 - parent: 0 - type: Transform -- uid: 30397 - type: CableMV - components: - - pos: 91.5,49.5 - parent: 0 - type: Transform -- uid: 30398 - type: CableMV - components: - - pos: 91.5,48.5 - parent: 0 - type: Transform -- uid: 30399 - type: CableMV - components: - - pos: 92.5,48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30400 - type: CableMV - components: - - pos: 90.5,49.5 - parent: 0 - type: Transform -- uid: 30401 - type: CableMV - components: - - pos: 89.5,49.5 - parent: 0 - type: Transform -- uid: 30402 - type: CableMV - components: - - pos: 89.5,50.5 - parent: 0 - type: Transform -- uid: 30403 - type: CableMV - components: - - pos: 89.5,51.5 - parent: 0 - type: Transform -- uid: 30404 - type: CableMV - components: - - pos: 89.5,52.5 - parent: 0 - type: Transform -- uid: 30405 - type: CableMV - components: - - pos: 89.5,53.5 - parent: 0 - type: Transform -- uid: 30406 - type: CableMV - components: - - pos: 89.5,54.5 - parent: 0 - type: Transform -- uid: 30407 - type: CableMV - components: - - pos: 89.5,55.5 - parent: 0 - type: Transform -- uid: 30408 - type: CableMV - components: - - pos: 89.5,56.5 - parent: 0 - type: Transform -- uid: 30409 - type: CableMV - components: - - pos: 88.5,56.5 - parent: 0 - type: Transform -- uid: 30410 - type: CableMV - components: - - pos: 87.5,56.5 - parent: 0 - type: Transform -- uid: 30411 - type: CableMV - components: - - pos: 86.5,56.5 - parent: 0 - type: Transform -- uid: 30412 - type: CableMV - components: - - pos: 85.5,56.5 - parent: 0 - type: Transform -- uid: 30413 - type: CableMV - components: - - pos: 85.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30414 - type: CableMV - components: - - pos: 85.5,55.5 - parent: 0 - type: Transform -- uid: 30415 - type: CableMV - components: - - pos: 84.5,55.5 - parent: 0 - type: Transform -- uid: 30416 - type: CableMV - components: - - pos: 83.5,55.5 - parent: 0 - type: Transform -- uid: 30417 - type: CableMV - components: - - pos: 82.5,55.5 - parent: 0 - type: Transform -- uid: 30418 - type: CableMV - components: - - pos: 81.5,55.5 - parent: 0 - type: Transform -- uid: 30419 - type: CableMV - components: - - pos: 80.5,55.5 - parent: 0 - type: Transform -- uid: 30420 - type: CableMV - components: - - pos: 79.5,55.5 - parent: 0 - type: Transform -- uid: 30421 - type: CableMV - components: - - pos: 78.5,55.5 - parent: 0 - type: Transform -- uid: 30422 - type: CableMV - components: - - pos: 78.5,54.5 - parent: 0 - type: Transform -- uid: 30423 - type: CableMV - components: - - pos: 78.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30424 - type: CableMV - components: - - pos: 79.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30425 - type: CableMV - components: - - pos: 79.5,52.5 - parent: 0 - type: Transform -- uid: 30426 - type: CableMV - components: - - pos: 79.5,51.5 - parent: 0 - type: Transform -- uid: 30427 - type: CableMV - components: - - pos: 79.5,50.5 - parent: 0 - type: Transform -- uid: 30428 - type: CableMV - components: - - pos: 79.5,49.5 - parent: 0 - type: Transform -- uid: 30429 - type: CableMV - components: - - pos: 79.5,48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30430 - type: CableMV - components: - - pos: 80.5,48.5 - parent: 0 - type: Transform -- uid: 30431 - type: CableMV - components: - - pos: 80.5,47.5 - parent: 0 - type: Transform -- uid: 30432 - type: CableMV - components: - - pos: 81.5,47.5 - parent: 0 - type: Transform -- uid: 30433 - type: CableMV - components: - - pos: 82.5,47.5 - parent: 0 - type: Transform -- uid: 30434 - type: CableMV - components: - - pos: 82.5,48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30435 - type: CableMV - components: - - pos: 89.5,48.5 - parent: 0 - type: Transform -- uid: 30436 - type: CableMV - components: - - pos: 89.5,47.5 - parent: 0 - type: Transform -- uid: 30437 - type: CableMV - components: - - pos: 89.5,46.5 - parent: 0 - type: Transform -- uid: 30438 - type: CableMV - components: - - pos: 89.5,45.5 - parent: 0 - type: Transform -- uid: 30439 - type: CableMV - components: - - pos: 89.5,44.5 - parent: 0 - type: Transform -- uid: 30440 - type: CableMV - components: - - pos: 89.5,43.5 - parent: 0 - type: Transform -- uid: 30441 - type: CableMV - components: - - pos: 89.5,42.5 - parent: 0 - type: Transform -- uid: 30442 - type: CableMV - components: - - pos: 89.5,41.5 - parent: 0 - type: Transform -- uid: 30443 - type: CableMV - components: - - pos: 89.5,40.5 - parent: 0 - type: Transform -- uid: 30444 - type: CableMV - components: - - pos: 88.5,40.5 - parent: 0 - type: Transform -- uid: 30445 - type: CableMV - components: - - pos: 87.5,40.5 - parent: 0 - type: Transform -- uid: 30446 - type: CableMV - components: - - pos: 86.5,40.5 - parent: 0 - type: Transform -- uid: 30447 - type: CableMV - components: - - pos: 85.5,40.5 - parent: 0 - type: Transform -- uid: 30448 - type: CableMV - components: - - pos: 84.5,40.5 - parent: 0 - type: Transform -- uid: 30449 - type: CableMV - components: - - pos: 83.5,40.5 - parent: 0 - type: Transform -- uid: 30450 - type: CableMV - components: - - pos: 82.5,40.5 - parent: 0 - type: Transform -- uid: 30451 - type: CableMV - components: - - pos: 81.5,40.5 - parent: 0 - type: Transform -- uid: 30452 - type: CableMV - components: - - pos: 80.5,40.5 - parent: 0 - type: Transform -- uid: 30453 - type: CableMV - components: - - pos: 79.5,40.5 - parent: 0 - type: Transform -- uid: 30454 - type: CableMV - components: - - pos: 78.5,40.5 - parent: 0 - type: Transform -- uid: 30455 - type: CableMV - components: - - pos: 77.5,40.5 - parent: 0 - type: Transform -- uid: 30456 - type: CableMV - components: - - pos: 76.5,40.5 - parent: 0 - type: Transform -- uid: 30457 - type: CableMV - components: - - pos: 75.5,40.5 - parent: 0 - type: Transform -- uid: 30458 - type: CableMV - components: - - pos: 74.5,40.5 - parent: 0 - type: Transform -- uid: 30459 - type: HospitalCurtainsOpen - components: - - pos: 81.5,53.5 - parent: 0 - type: Transform -- uid: 30460 - type: CableMV - components: - - pos: 73.5,41.5 - parent: 0 - type: Transform -- uid: 30461 - type: CableMV - components: - - pos: 73.5,42.5 - parent: 0 - type: Transform -- uid: 30462 - type: CableMV - components: - - pos: 73.5,43.5 - parent: 0 - type: Transform -- uid: 30463 - type: CableMV - components: - - pos: 73.5,44.5 - parent: 0 - type: Transform -- uid: 30464 - type: FloorDrain - components: - - pos: 81.5,53.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 30465 - type: CableMV - components: - - pos: 74.5,45.5 - parent: 0 - type: Transform -- uid: 30466 - type: CableMV - components: - - pos: 75.5,45.5 - parent: 0 - type: Transform -- uid: 30467 - type: CableMV - components: - - pos: 76.5,45.5 - parent: 0 - type: Transform -- uid: 30468 - type: CableMV - components: - - pos: 77.5,45.5 - parent: 0 - type: Transform -- uid: 30469 - type: CableMV - components: - - pos: 78.5,45.5 - parent: 0 - type: Transform -- uid: 30470 - type: CableMV - components: - - pos: 79.5,45.5 - parent: 0 - type: Transform -- uid: 30471 - type: CableMV - components: - - pos: 80.5,45.5 - parent: 0 - type: Transform -- uid: 30472 - type: CableMV - components: - - pos: 80.5,46.5 - parent: 0 - type: Transform -- uid: 30473 - type: CableApcExtension - components: - - pos: 82.5,48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30474 - type: CableApcExtension - components: - - pos: 82.5,47.5 - parent: 0 - type: Transform -- uid: 30475 - type: CableApcExtension - components: - - pos: 82.5,46.5 - parent: 0 - type: Transform -- uid: 30476 - type: CableApcExtension - components: - - pos: 82.5,45.5 - parent: 0 - type: Transform -- uid: 30477 - type: CableApcExtension - components: - - pos: 82.5,44.5 - parent: 0 - type: Transform -- uid: 30478 - type: CableApcExtension - components: - - pos: 82.5,43.5 - parent: 0 - type: Transform -- uid: 30479 - type: CableApcExtension - components: - - pos: 82.5,42.5 - parent: 0 - type: Transform -- uid: 30480 - type: CableApcExtension - components: - - pos: 81.5,44.5 - parent: 0 - type: Transform -- uid: 30481 - type: CableApcExtension - components: - - pos: 80.5,44.5 - parent: 0 - type: Transform -- uid: 30482 - type: CableApcExtension - components: - - pos: 79.5,44.5 - parent: 0 - type: Transform -- uid: 30483 - type: CableApcExtension - components: - - pos: 78.5,44.5 - parent: 0 - type: Transform -- uid: 30484 - type: CableApcExtension - components: - - pos: 77.5,44.5 - parent: 0 - type: Transform -- uid: 30485 - type: CableApcExtension - components: - - pos: 77.5,43.5 - parent: 0 - type: Transform -- uid: 30486 - type: CableApcExtension - components: - - pos: 77.5,45.5 - parent: 0 - type: Transform -- uid: 30487 - type: CableApcExtension - components: - - pos: 79.5,48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30488 - type: CableApcExtension - components: - - pos: 79.5,49.5 - parent: 0 - type: Transform -- uid: 30489 - type: CableApcExtension - components: - - pos: 79.5,50.5 - parent: 0 - type: Transform -- uid: 30490 - type: CableApcExtension - components: - - pos: 78.5,50.5 - parent: 0 - type: Transform -- uid: 30491 - type: CableApcExtension - components: - - pos: 77.5,50.5 - parent: 0 - type: Transform -- uid: 30492 - type: CableApcExtension - components: - - pos: 80.5,50.5 - parent: 0 - type: Transform -- uid: 30493 - type: CableApcExtension - components: - - pos: 81.5,50.5 - parent: 0 - type: Transform -- uid: 30494 - type: CableApcExtension - components: - - pos: 82.5,50.5 - parent: 0 - type: Transform -- uid: 30495 - type: CableApcExtension - components: - - pos: 83.5,50.5 - parent: 0 - type: Transform -- uid: 30496 - type: CableApcExtension - components: - - pos: 82.5,51.5 - parent: 0 - type: Transform -- uid: 30497 - type: CableApcExtension - components: - - pos: 82.5,52.5 - parent: 0 - type: Transform -- uid: 30498 - type: CableApcExtension - components: - - pos: 82.5,53.5 - parent: 0 - type: Transform -- uid: 30499 - type: CableApcExtension - components: - - pos: 79.5,51.5 - parent: 0 - type: Transform -- uid: 30500 - type: CableApcExtension - components: - - pos: 79.5,52.5 - parent: 0 - type: Transform -- uid: 30501 - type: CableApcExtension - components: - - pos: 79.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30502 - type: CableApcExtension - components: - - pos: 78.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30503 - type: CableApcExtension - components: - - pos: 85.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30504 - type: CableApcExtension - components: - - pos: 85.5,56.5 - parent: 0 - type: Transform -- uid: 30505 - type: CableApcExtension - components: - - pos: 84.5,56.5 - parent: 0 - type: Transform -- uid: 30506 - type: CableApcExtension - components: - - pos: 83.5,56.5 - parent: 0 - type: Transform -- uid: 30507 - type: CableApcExtension - components: - - pos: 82.5,56.5 - parent: 0 - type: Transform -- uid: 30508 - type: CableApcExtension - components: - - pos: 81.5,56.5 - parent: 0 - type: Transform -- uid: 30509 - type: CableApcExtension - components: - - pos: 80.5,56.5 - parent: 0 - type: Transform -- uid: 30510 - type: CableApcExtension - components: - - pos: 79.5,56.5 - parent: 0 - type: Transform -- uid: 30511 - type: CableApcExtension - components: - - pos: 78.5,56.5 - parent: 0 - type: Transform -- uid: 30512 - type: CableApcExtension - components: - - pos: 77.5,56.5 - parent: 0 - type: Transform -- uid: 30513 - type: CableApcExtension - components: - - pos: 76.5,56.5 - parent: 0 - type: Transform -- uid: 30514 - type: CableApcExtension - components: - - pos: 76.5,57.5 - parent: 0 - type: Transform -- uid: 30515 - type: CableApcExtension - components: - - pos: 76.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30516 - type: CableApcExtension - components: - - pos: 77.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30517 - type: CableApcExtension - components: - - pos: 79.5,57.5 - parent: 0 - type: Transform -- uid: 30518 - type: CableApcExtension - components: - - pos: 79.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30519 - type: CableApcExtension - components: - - pos: 80.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30520 - type: CableApcExtension - components: - - pos: 82.5,57.5 - parent: 0 - type: Transform -- uid: 30521 - type: CableApcExtension - components: - - pos: 75.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30522 - type: CableApcExtension - components: - - pos: 82.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30523 - type: CableApcExtension - components: - - pos: 83.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30524 - type: CableApcExtension - components: - - pos: 86.5,56.5 - parent: 0 - type: Transform -- uid: 30525 - type: CableApcExtension - components: - - pos: 86.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30526 - type: CableApcExtension - components: - - pos: 87.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30527 - type: CableApcExtension - components: - - pos: 88.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30528 - type: CableApcExtension - components: - - pos: 87.5,56.5 - parent: 0 - type: Transform -- uid: 30529 - type: CableApcExtension - components: - - pos: 88.5,56.5 - parent: 0 - type: Transform -- uid: 30530 - type: CableApcExtension - components: - - pos: 89.5,56.5 - parent: 0 - type: Transform -- uid: 30531 - type: CableApcExtension - components: - - pos: 90.5,56.5 - parent: 0 - type: Transform -- uid: 30532 - type: CableApcExtension - components: - - pos: 91.5,56.5 - parent: 0 - type: Transform -- uid: 30533 - type: CableApcExtension - components: - - pos: 92.5,56.5 - parent: 0 - type: Transform -- uid: 30534 - type: CableApcExtension - components: - - pos: 92.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30535 - type: CableApcExtension - components: - - pos: 90.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30536 - type: CableApcExtension - components: - - pos: 95.5,56.5 - parent: 0 - type: Transform -- uid: 30537 - type: CableApcExtension - components: - - pos: 94.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30538 - type: CableApcExtension - components: - - pos: 96.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30539 - type: CableApcExtension - components: - - pos: 92.5,48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30540 - type: CableApcExtension - components: - - pos: 91.5,48.5 - parent: 0 - type: Transform -- uid: 30541 - type: CableApcExtension - components: - - pos: 90.5,48.5 - parent: 0 - type: Transform -- uid: 30542 - type: CableApcExtension - components: - - pos: 89.5,48.5 - parent: 0 - type: Transform -- uid: 30543 - type: CableApcExtension - components: - - pos: 89.5,47.5 - parent: 0 - type: Transform -- uid: 30544 - type: CableApcExtension - components: - - pos: 89.5,46.5 - parent: 0 - type: Transform -- uid: 30545 - type: CableApcExtension - components: - - pos: 89.5,45.5 - parent: 0 - type: Transform -- uid: 30546 - type: CableApcExtension - components: - - pos: 89.5,44.5 - parent: 0 - type: Transform -- uid: 30547 - type: CableApcExtension - components: - - pos: 89.5,43.5 - parent: 0 - type: Transform -- uid: 30548 - type: CableApcExtension - components: - - pos: 89.5,42.5 - parent: 0 - type: Transform -- uid: 30549 - type: CableApcExtension - components: - - pos: 89.5,41.5 - parent: 0 - type: Transform -- uid: 30550 - type: CableApcExtension - components: - - pos: 88.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30551 - type: CableApcExtension - components: - - pos: 90.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30552 - type: CableApcExtension - components: - - pos: 89.5,49.5 - parent: 0 - type: Transform -- uid: 30553 - type: CableApcExtension - components: - - pos: 89.5,50.5 - parent: 0 - type: Transform -- uid: 30554 - type: CableApcExtension - components: - - pos: 89.5,51.5 - parent: 0 - type: Transform -- uid: 30555 - type: CableApcExtension - components: - - pos: 89.5,52.5 - parent: 0 - type: Transform -- uid: 30556 - type: CableApcExtension - components: - - pos: 89.5,53.5 - parent: 0 - type: Transform -- uid: 30557 - type: CableApcExtension - components: - - pos: 89.5,54.5 - parent: 0 - type: Transform -- uid: 30558 - type: CableApcExtension - components: - - pos: 90.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30559 - type: CableApcExtension - components: - - pos: 88.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30560 - type: CableApcExtension - components: - - pos: 90.5,46.5 - parent: 0 - type: Transform -- uid: 30561 - type: CableApcExtension - components: - - pos: 91.5,46.5 - parent: 0 - type: Transform -- uid: 30562 - type: CableApcExtension - components: - - pos: 92.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30563 - type: CableApcExtension - components: - - pos: 92.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30564 - type: CableApcExtension - components: - - pos: 91.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30565 - type: CableApcExtension - components: - - pos: 92.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30566 - type: CableApcExtension - components: - - pos: 88.5,46.5 - parent: 0 - type: Transform -- uid: 30567 - type: CableApcExtension - components: - - pos: 87.5,46.5 - parent: 0 - type: Transform -- uid: 30568 - type: CableApcExtension - components: - - pos: 86.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30569 - type: CableApcExtension - components: - - pos: 86.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30570 - type: CableApcExtension - components: - - pos: 86.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30571 - type: CableApcExtension - components: - - pos: 87.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30572 - type: CableApcExtension - components: - - pos: 88.5,51.5 - parent: 0 - type: Transform -- uid: 30573 - type: CableApcExtension - components: - - pos: 87.5,51.5 - parent: 0 - type: Transform -- uid: 30574 - type: CableApcExtension - components: - - pos: 86.5,51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30575 - type: CableApcExtension - components: - - pos: 86.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30576 - type: CableApcExtension - components: - - pos: 86.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30577 - type: CableApcExtension - components: - - pos: 87.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30578 - type: CableApcExtension - components: - - pos: 90.5,51.5 - parent: 0 - type: Transform -- uid: 30579 - type: CableApcExtension - components: - - pos: 91.5,51.5 - parent: 0 - type: Transform -- uid: 30580 - type: CableApcExtension - components: - - pos: 91.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30581 - type: CableApcExtension - components: - - pos: 92.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30582 - type: CableApcExtension - components: - - pos: 92.5,51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30583 - type: CableApcExtension - components: - - pos: 92.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30584 - type: CableMV - components: - - pos: 74.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30585 - type: CableMV - components: - - pos: 72.5,44.5 - parent: 0 - type: Transform -- uid: 30586 - type: CableMV - components: - - pos: 74.5,44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30587 - type: CableMV - components: - - pos: 71.5,44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30588 - type: CableMV - components: - - pos: 72.5,41.5 - parent: 0 - type: Transform -- uid: 30589 - type: CableMV - components: - - pos: 71.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30590 - type: SoapNT - components: - - pos: 81.47995,53.57306 - parent: 0 - type: Transform -- uid: 30591 - type: ToyRubberDuck - components: - - pos: 81.526825,53.41681 - parent: 0 - type: Transform -- uid: 30592 - type: ToiletDirtyWater - components: - - pos: 83.5,53.5 - parent: 0 - type: Transform -- uid: 30593 - type: Sink - components: - - pos: 82.5,53.5 - parent: 0 - type: Transform -- uid: 30594 - type: AirlockFreezer - components: - - pos: 82.5,52.5 - parent: 0 - type: Transform -- uid: 30595 - type: AirlockCaptainLocked - components: - - pos: 79.5,52.5 - parent: 0 - type: Transform -- uid: 30596 - type: AirlockCommandLocked - components: - - pos: 78.5,54.5 - parent: 0 - type: Transform -- uid: 30597 - type: FireAxeCabinetFilled - components: - - pos: 79.5,54.5 - parent: 0 - type: Transform -- uid: 30598 - type: PoweredSmallLight - components: - - pos: 79.5,53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30599 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30600 - type: Mirror - components: - - pos: 82.5,54.5 - parent: 0 - type: Transform -- uid: 30601 - type: CarpetBlue - components: - - pos: 78.5,49.5 - parent: 0 - type: Transform -- uid: 30602 - type: CarpetBlue - components: - - pos: 78.5,50.5 - parent: 0 - type: Transform -- uid: 30603 - type: CarpetBlue - components: - - pos: 78.5,51.5 - parent: 0 - type: Transform -- uid: 30604 - type: CarpetBlue - components: - - pos: 77.5,49.5 - parent: 0 - type: Transform -- uid: 30605 - type: CarpetBlue - components: - - pos: 77.5,50.5 - parent: 0 - type: Transform -- uid: 30606 - type: CarpetBlue - components: - - pos: 77.5,51.5 - parent: 0 - type: Transform -- uid: 30607 - type: CarpetBlue - components: - - pos: 76.5,49.5 - parent: 0 - type: Transform -- uid: 30608 - type: CarpetBlue - components: - - pos: 76.5,50.5 - parent: 0 - type: Transform -- uid: 30609 - type: CarpetBlue - components: - - pos: 76.5,51.5 - parent: 0 - type: Transform -- uid: 30610 - type: CarpetBlue - components: - - pos: 82.5,49.5 - parent: 0 - type: Transform -- uid: 30611 - type: CarpetBlue - components: - - pos: 82.5,50.5 - parent: 0 - type: Transform -- uid: 30612 - type: CarpetBlue - components: - - pos: 82.5,51.5 - parent: 0 - type: Transform -- uid: 30613 - type: CarpetBlue - components: - - pos: 83.5,49.5 - parent: 0 - type: Transform -- uid: 30614 - type: CarpetBlue - components: - - pos: 83.5,50.5 - parent: 0 - type: Transform -- uid: 30615 - type: CarpetBlue - components: - - pos: 83.5,51.5 - parent: 0 - type: Transform -- uid: 30616 - type: CarpetBlue - components: - - pos: 78.5,43.5 - parent: 0 - type: Transform -- uid: 30617 - type: CarpetBlue - components: - - pos: 78.5,42.5 - parent: 0 - type: Transform -- uid: 30618 - type: CarpetBlue - components: - - pos: 77.5,43.5 - parent: 0 - type: Transform -- uid: 30619 - type: CarpetBlue - components: - - pos: 77.5,42.5 - parent: 0 - type: Transform -- uid: 30620 - type: CarpetBlue - components: - - pos: 76.5,43.5 - parent: 0 - type: Transform -- uid: 30621 - type: CarpetBlue - components: - - pos: 76.5,42.5 - parent: 0 - type: Transform -- uid: 30622 - type: Fireplace - components: - - pos: 77.5,47.5 - parent: 0 - type: Transform -- uid: 30623 - type: AirlockCaptainLocked - components: - - pos: 75.5,45.5 - parent: 0 - type: Transform -- uid: 30624 - type: AirlockCaptainLocked - components: - - pos: 80.5,48.5 - parent: 0 - type: Transform -- uid: 30625 - type: PottedPlant22 - components: - - pos: 78.495056,47.209904 - parent: 0 - type: Transform -- uid: 30626 - type: filingCabinetRandom - components: - - pos: 79.5,47.5 - parent: 0 - type: Transform -- uid: 30627 - type: TableWood - components: - - pos: 77.5,42.5 - parent: 0 - type: Transform -- uid: 30628 - type: TableWood - components: - - pos: 77.5,43.5 - parent: 0 - type: Transform -- uid: 30629 - type: TableWood - components: - - pos: 83.5,44.5 - parent: 0 - type: Transform -- uid: 30630 - type: TableWood - components: - - pos: 82.5,44.5 - parent: 0 - type: Transform -- uid: 30631 - type: TableWood - components: - - pos: 81.5,44.5 - parent: 0 - type: Transform -- uid: 30632 - type: TableWood - components: - - pos: 81.5,43.5 - parent: 0 - type: Transform -- uid: 30633 - type: DisposalUnit - components: - - pos: 81.5,47.5 - parent: 0 - type: Transform -- uid: 30634 - type: DisposalUnit - components: - - pos: 81.5,49.5 - parent: 0 - type: Transform -- uid: 30635 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 81.5,49.5 - parent: 0 - type: Transform -- uid: 30636 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 81.5,47.5 - parent: 0 - type: Transform -- uid: 30637 - type: DisposalYJunction - components: - - pos: 80.5,49.5 - parent: 0 - type: Transform -- uid: 30638 - type: DisposalPipe - components: - - pos: 80.5,48.5 - parent: 0 - type: Transform -- uid: 30639 - type: DisposalJunctionFlipped - components: - - pos: 80.5,47.5 - parent: 0 - type: Transform -- uid: 30640 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 80.5,45.5 - parent: 0 - type: Transform -- uid: 30641 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 80.5,46.5 - parent: 0 - type: Transform -- uid: 30642 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 79.5,45.5 - parent: 0 - type: Transform -- uid: 30643 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 78.5,45.5 - parent: 0 - type: Transform -- uid: 30644 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 77.5,45.5 - parent: 0 - type: Transform -- uid: 30645 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 76.5,45.5 - parent: 0 - type: Transform -- uid: 30646 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 75.5,45.5 - parent: 0 - type: Transform -- uid: 30647 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 74.5,45.5 - parent: 0 - type: Transform -- uid: 30648 - type: DisposalJunctionFlipped - components: - - pos: 73.5,45.5 - parent: 0 - type: Transform -- uid: 30649 - type: DisposalPipe - components: - - pos: 73.5,44.5 - parent: 0 - type: Transform -- uid: 30650 - type: DisposalPipe - components: - - pos: 73.5,43.5 - parent: 0 - type: Transform -- uid: 30651 - type: DisposalPipe - components: - - pos: 73.5,42.5 - parent: 0 - type: Transform -- uid: 30652 - type: DisposalPipe - components: - - pos: 73.5,41.5 - parent: 0 - type: Transform -- uid: 30653 - type: DisposalPipe - components: - - pos: 73.5,40.5 - parent: 0 - type: Transform -- uid: 30654 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 76.5,53.5 - parent: 0 - type: Transform -- uid: 30655 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 77.5,53.5 - parent: 0 - type: Transform -- uid: 30656 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 78.5,53.5 - parent: 0 - type: Transform -- uid: 30657 - type: DisposalPipe - components: - - pos: 79.5,52.5 - parent: 0 - type: Transform -- uid: 30658 - type: DisposalPipe - components: - - pos: 79.5,51.5 - parent: 0 - type: Transform -- uid: 30659 - type: DisposalPipe - components: - - pos: 79.5,50.5 - parent: 0 - type: Transform -- uid: 30660 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 79.5,49.5 - parent: 0 - type: Transform -- uid: 30661 - type: DisposalBend - components: - - pos: 79.5,53.5 - parent: 0 - type: Transform -- uid: 30662 - type: TableWood - components: - - pos: 76.5,47.5 - parent: 0 - type: Transform -- uid: 30663 - type: ComputerId - components: - - rot: -1.5707963267948966 rad - pos: 83.5,42.5 - parent: 0 - type: Transform -- uid: 30664 - type: ComputerComms - components: - - rot: -1.5707963267948966 rad - pos: 83.5,43.5 - parent: 0 - type: Transform -- uid: 30665 - type: FaxMachineBase - components: - - pos: 83.5,44.5 - parent: 0 - type: Transform - - name: Captain's Quarters - type: FaxMachine -- uid: 30666 - type: LampGold - components: - - pos: 81.5319,44.921772 - parent: 0 - type: Transform -- uid: 30667 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 82.5,43.5 - parent: 0 - type: Transform -- uid: 30668 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 77.5,50.5 - parent: 0 - type: Transform -- uid: 30669 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 77.5,49.5 - parent: 0 - type: Transform -- uid: 30670 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 76.5,49.5 - parent: 0 - type: Transform -- uid: 30671 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 76.5,50.5 - parent: 0 - type: Transform -- uid: 30672 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 76.5,51.5 - parent: 0 - type: Transform -- uid: 30673 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 77.5,51.5 - parent: 0 - type: Transform -- uid: 30674 - type: AirAlarm - components: - - pos: 81.5,48.5 - parent: 0 - type: Transform - - devices: - - 30316 - - 30302 - type: DeviceList -- uid: 30675 - type: AirAlarm - components: - - pos: 77.5,52.5 - parent: 0 - type: Transform - - devices: - - 30315 - - 30303 - type: DeviceList -- uid: 30676 - type: CarpetGreen - components: - - pos: 83.5,43.5 - parent: 0 - type: Transform -- uid: 30677 - type: CarpetGreen - components: - - pos: 83.5,42.5 - parent: 0 - type: Transform -- uid: 30678 - type: CarpetGreen - components: - - pos: 82.5,43.5 - parent: 0 - type: Transform -- uid: 30679 - type: CarpetGreen - components: - - pos: 82.5,42.5 - parent: 0 - type: Transform -- uid: 30680 - type: CarpetGreen - components: - - pos: 81.5,43.5 - parent: 0 - type: Transform -- uid: 30681 - type: CarpetGreen - components: - - pos: 81.5,42.5 - parent: 0 - type: Transform -- uid: 30682 - type: CarpetGreen - components: - - pos: 81.5,44.5 - parent: 0 - type: Transform -- uid: 30683 - type: CarpetGreen - components: - - pos: 82.5,44.5 - parent: 0 - type: Transform -- uid: 30684 - type: CarpetGreen - components: - - pos: 83.5,44.5 - parent: 0 - type: Transform -- uid: 30685 - type: DogBed - components: - - pos: 83.5,45.5 - parent: 0 - type: Transform -- uid: 30686 - type: SpawnMobFoxRenault - components: - - pos: 83.5,45.5 - parent: 0 - type: Transform -- uid: 30687 - type: Bed - components: - - pos: 83.5,51.5 - parent: 0 - type: Transform -- uid: 30688 - type: BedsheetCaptain - components: - - pos: 83.5,51.5 - parent: 0 - type: Transform -- uid: 30689 - type: TableWood - components: - - pos: 83.5,50.5 - parent: 0 - type: Transform -- uid: 30690 - type: Dresser - components: - - pos: 83.5,49.5 - parent: 0 - type: Transform -- uid: 30691 - type: LockerCaptainFilled - components: - - pos: 80.5,51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 30692 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 82.5,49.5 - parent: 0 - type: Transform -- uid: 30693 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 82.5,51.5 - parent: 0 - type: Transform -- uid: 30694 - type: WindoorCommandLocked - components: - - rot: -1.5707963267948966 rad - pos: 82.5,50.5 - parent: 0 - type: Transform -- uid: 30695 - type: LampGold - components: - - pos: 83.32115,51.08296 - parent: 0 - type: Transform -- uid: 30696 - type: LampGold - components: - - pos: 76.50865,51.973583 - parent: 0 - type: Transform -- uid: 30697 - type: ComputerTelevision - components: - - pos: 78.5,51.5 - parent: 0 - type: Transform -- uid: 30698 - type: PottedPlantRandom - components: - - pos: 78.5,49.5 - parent: 0 - type: Transform -- uid: 30699 - type: PottedPlantRandom - components: - - pos: 82.5,47.5 - parent: 0 - type: Transform -- uid: 30700 - type: ShowcaseRobot - components: - - pos: 83.5,47.5 - parent: 0 - type: Transform -- uid: 30701 - type: Railing - components: - - pos: 79.5,44.5 - parent: 0 - type: Transform -- uid: 30702 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 79.5,47.5 - parent: 0 - type: Transform -- uid: 30703 - type: RailingCorner - components: - - rot: -1.5707963267948966 rad - pos: 79.5,46.5 - parent: 0 - type: Transform -- uid: 30704 - type: Rack - components: - - rot: -1.5707963267948966 rad - pos: 81.5,51.5 - parent: 0 - type: Transform -- uid: 30705 - type: PaperBin - components: - - rot: -1.5707963267948966 rad - pos: 81.5,43.5 - parent: 0 - type: Transform -- uid: 30706 - type: BoxFolderBlue - components: - - pos: 82.49595,44.532063 - parent: 0 - type: Transform -- uid: 30707 - type: DrinkShaker - components: - - pos: 76.48032,47.516438 - parent: 0 - type: Transform -- uid: 30708 - type: BriefcaseBrown - components: - - pos: 76.4647,47.750813 - parent: 0 - type: Transform -- uid: 30709 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 78.5,42.5 - parent: 0 - type: Transform -- uid: 30710 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 78.5,43.5 - parent: 0 - type: Transform -- uid: 30711 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 76.5,42.5 - parent: 0 - type: Transform -- uid: 30712 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 76.5,43.5 - parent: 0 - type: Transform -- uid: 30713 - type: SpawnPointCaptain - components: - - pos: 79.5,50.5 - parent: 0 - type: Transform -- uid: 30714 - type: FoodBoxDonut - components: - - pos: 77.536644,43.56503 - parent: 0 - type: Transform -- uid: 30715 - type: CigarGold - components: - - pos: 77.411644,42.736904 - parent: 0 - type: Transform -- uid: 30716 - type: CigarGold - components: - - pos: 77.630394,42.736904 - parent: 0 - type: Transform -- uid: 30717 - type: DrinkFlask - components: - - pos: 77.411644,49.493114 - parent: 0 - type: Transform -- uid: 30718 - type: PinpointerNuclear - components: - - pos: 76.47271,49.528774 - parent: 0 - type: Transform -- uid: 30719 - type: WeaponCapacitorRecharger - components: - - pos: 77.5,51.5 - parent: 0 - type: Transform -- uid: 30720 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30721 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 77.5,42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30722 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 76.5,50.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30723 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,50.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30724 - type: WallmountTelescreen - components: - - rot: 1.5707963267948966 rad - pos: 76.5,50.5 - parent: 0 - type: Transform -- uid: 30725 - type: IntercomCommand - components: - - pos: 83.5,52.5 - parent: 0 - type: Transform -- uid: 30726 - type: PosterLegitNanotrasenLogo - components: - - pos: 75.5,41.5 - parent: 0 - type: Transform -- uid: 30727 - type: PosterLegitNanotrasenLogo - components: - - pos: 80.5,52.5 - parent: 0 - type: Transform -- uid: 30728 - type: PosterLegitNanotrasenLogo - components: - - pos: 84.5,43.5 - parent: 0 - type: Transform -- uid: 30729 - type: PhoneInstrument - components: - - pos: 81.43642,44.078407 - parent: 0 - type: Transform -- uid: 30730 - type: NuclearBomb - components: - - pos: 89.5,49.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 30731 - type: filingCabinetRandom - components: - - pos: 87.5,51.5 - parent: 0 - type: Transform -- uid: 30732 - type: LockerFreezer - components: - - pos: 87.5,46.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 30733 - - 30734 - - 30735 - type: ContainerContainer -- uid: 30733 - type: BikeHorn - components: - - flags: InContainer - type: MetaData - - parent: 30732 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 30734 - type: WeaponRevolverDeckard - components: - - flags: InContainer - type: MetaData - - parent: 30732 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 30735 - type: JetpackBlueFilled - components: - - flags: InContainer - type: MetaData - - parent: 30732 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 30736 - type: TableReinforced - components: - - pos: 91.5,46.5 - parent: 0 - type: Transform -- uid: 30737 - type: TableReinforced - components: - - pos: 91.5,47.5 - parent: 0 - type: Transform -- uid: 30738 - type: TableReinforced - components: - - pos: 90.5,46.5 - parent: 0 - type: Transform -- uid: 30739 - type: TableReinforced - components: - - pos: 87.5,50.5 - parent: 0 - type: Transform -- uid: 30740 - type: TableReinforced - components: - - pos: 87.5,47.5 - parent: 0 - type: Transform -- uid: 30741 - type: TableReinforced - components: - - pos: 91.5,51.5 - parent: 0 - type: Transform -- uid: 30742 - type: CratePrivateSecure - components: - - pos: 87.5,49.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 30743 - - 30744 - - 30745 - - 30746 - - 30747 - - 30748 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 30743 - type: FoodTinBeans - components: - - flags: InContainer - type: MetaData - - parent: 30742 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 30744 - type: FoodTinBeans - components: - - flags: InContainer - type: MetaData - - parent: 30742 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 30745 - type: FoodTinBeans - components: - - flags: InContainer - type: MetaData - - parent: 30742 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 30746 - type: FoodTinBeans - components: - - flags: InContainer - type: MetaData - - parent: 30742 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 30747 - type: FoodTinBeans - components: - - flags: InContainer - type: MetaData - - parent: 30742 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 30748 - type: FoodTinBeans - components: - - flags: InContainer - type: MetaData - - parent: 30742 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 30749 - type: CratePrivateSecure - components: - - pos: 87.5,48.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 30750 - - 30751 - - 30752 - - 30753 - - 30754 - - 30755 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 30750 - type: DrinkWaterBottleFull - components: - - flags: InContainer - type: MetaData - - parent: 30749 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 30751 - type: DrinkWaterBottleFull - components: - - flags: InContainer - type: MetaData - - parent: 30749 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 30752 - type: DrinkWaterBottleFull - components: - - flags: InContainer - type: MetaData - - parent: 30749 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 30753 - type: DrinkWaterBottleFull - components: - - flags: InContainer - type: MetaData - - parent: 30749 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 30754 - type: DrinkWaterBottleFull - components: - - flags: InContainer - type: MetaData - - parent: 30749 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 30755 - type: DrinkWaterBottleFull - components: - - flags: InContainer - type: MetaData - - parent: 30749 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 30756 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 81.5,47.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Office - type: SurveillanceCamera -- uid: 30757 - type: Screwdriver - components: - - pos: 87.51236,50.539215 - parent: 0 - type: Transform -- uid: 30758 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 91.5,48.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - type: SurveillanceCamera -- uid: 30759 - type: IngotGold - components: - - pos: 91.45959,46.60248 - parent: 0 - type: Transform -- uid: 30760 - type: CrowbarRed - components: - - pos: 87.590485,50.445465 - parent: 0 - type: Transform -- uid: 30761 - type: SurveillanceCameraCommand - components: - - pos: 79.5,49.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Bedroom - type: SurveillanceCamera -- uid: 30762 - type: ToolboxGoldFilled - components: - - pos: 91.50646,47.368107 - parent: 0 - type: Transform -- uid: 30763 - type: SignPlaque - components: - - pos: 86.5,49.5 - parent: 0 - type: Transform -- uid: 30764 - type: DrinkGoldschlagerBottleFull - components: - - pos: 91.60021,47.211857 - parent: 0 - type: Transform -- uid: 30765 - type: CigarGoldCase - components: - - pos: 91.49084,51.63373 - parent: 0 - type: Transform -- uid: 30766 - type: IngotSilver - components: - - pos: 87.49084,47.66498 - parent: 0 - type: Transform -- uid: 30767 - type: PinpointerNuclear - components: - - pos: 91.55334,51.50873 - parent: 0 - type: Transform -- uid: 30768 - type: ClothingHeadHatHairflower - components: - - pos: 91.85021,46.88373 - parent: 0 - type: Transform -- uid: 30769 - type: ClothingBeltChampion - components: - - pos: 90.74084,46.35248 - parent: 0 - type: Transform -- uid: 30770 - type: DrinkGoldenCup - components: - - pos: 90.63146,46.774357 - parent: 0 - type: Transform -- uid: 30771 - type: TableReinforced - components: - - pos: 91.5,50.5 - parent: 0 - type: Transform -- uid: 30772 - type: PosterContrabandNuclearDeviceInformational - components: - - pos: 92.5,49.5 - parent: 0 - type: Transform -- uid: 30773 - type: PaintingOlympia - components: - - pos: 86.5,48.5 - parent: 0 - type: Transform -- uid: 30774 - type: HighSecCommandLocked - components: - - pos: 89.5,52.5 - parent: 0 - type: Transform -- uid: 30775 - type: HighSecCommandLocked - components: - - pos: 89.5,54.5 - parent: 0 - type: Transform -- uid: 30776 - type: HighSecCommandLocked - components: - - pos: 89.5,43.5 - parent: 0 - type: Transform -- uid: 30777 - type: HighSecCommandLocked - components: - - pos: 89.5,45.5 - parent: 0 - type: Transform -- uid: 30778 - type: SignSecureMed - components: - - pos: 90.5,43.5 - parent: 0 - type: Transform -- uid: 30779 - type: SignSecureMed - components: - - pos: 88.5,52.5 - parent: 0 - type: Transform -- uid: 30780 - type: SignShock - components: - - pos: 88.5,43.5 - parent: 0 - type: Transform -- uid: 30781 - type: SignShock - components: - - pos: 90.5,52.5 - parent: 0 - type: Transform -- uid: 30782 - type: IntercomCommand - components: - - rot: 3.141592653589793 rad - pos: 88.5,45.5 - parent: 0 - type: Transform -- uid: 30783 - type: BoxFolderBlack - components: - - pos: 91.50646,50.640324 - parent: 0 - type: Transform -- uid: 30784 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 90.5,46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30785 - type: PoweredSmallLight - components: - - pos: 88.5,51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30786 - type: APCBasic - components: - - pos: 57.5,49.5 - parent: 0 - type: Transform -- uid: 30787 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 66.5,55.5 - parent: 0 - type: Transform -- uid: 30788 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 74.5,58.5 - parent: 0 - type: Transform -- uid: 30789 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 75.5,48.5 - parent: 0 - type: Transform -- uid: 30790 - type: CableMV - components: - - pos: 57.5,51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30791 - type: CableMV - components: - - pos: 57.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30792 - type: CableMV - components: - - pos: 57.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30793 - type: CableMV - components: - - pos: 57.5,48.5 - parent: 0 - type: Transform -- uid: 30794 - type: CableMV - components: - - pos: 57.5,47.5 - parent: 0 - type: Transform -- uid: 30795 - type: CableMV - components: - - pos: 57.5,46.5 - parent: 0 - type: Transform -- uid: 30796 - type: CableMV - components: - - pos: 58.5,46.5 - parent: 0 - type: Transform -- uid: 30797 - type: CableMV - components: - - pos: 59.5,46.5 - parent: 0 - type: Transform -- uid: 30798 - type: CableMV - components: - - pos: 60.5,46.5 - parent: 0 - type: Transform -- uid: 30799 - type: CableMV - components: - - pos: 61.5,46.5 - parent: 0 - type: Transform -- uid: 30800 - type: CableMV - components: - - pos: 62.5,46.5 - parent: 0 - type: Transform -- uid: 30801 - type: CableMV - components: - - pos: 63.5,46.5 - parent: 0 - type: Transform -- uid: 30802 - type: CableMV - components: - - pos: 64.5,46.5 - parent: 0 - type: Transform -- uid: 30803 - type: CableMV - components: - - pos: 65.5,46.5 - parent: 0 - type: Transform -- uid: 30804 - type: CableMV - components: - - pos: 65.5,45.5 - parent: 0 - type: Transform -- uid: 30805 - type: CableMV - components: - - pos: 67.5,46.5 - parent: 0 - type: Transform -- uid: 30806 - type: CableMV - components: - - pos: 68.5,46.5 - parent: 0 - type: Transform -- uid: 30807 - type: CableMV - components: - - pos: 69.5,46.5 - parent: 0 - type: Transform -- uid: 30808 - type: CableMV - components: - - pos: 70.5,46.5 - parent: 0 - type: Transform -- uid: 30809 - type: CableMV - components: - - pos: 71.5,46.5 - parent: 0 - type: Transform -- uid: 30810 - type: CableMV - components: - - pos: 72.5,46.5 - parent: 0 - type: Transform -- uid: 30811 - type: CableMV - components: - - pos: 72.5,47.5 - parent: 0 - type: Transform -- uid: 30812 - type: CableMV - components: - - pos: 73.5,47.5 - parent: 0 - type: Transform -- uid: 30813 - type: CableMV - components: - - pos: 74.5,47.5 - parent: 0 - type: Transform -- uid: 30814 - type: CableMV - components: - - pos: 74.5,48.5 - parent: 0 - type: Transform -- uid: 30815 - type: CableMV - components: - - pos: 75.5,48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30816 - type: CableMV - components: - - pos: 73.5,48.5 - parent: 0 - type: Transform -- uid: 30817 - type: CableMV - components: - - pos: 73.5,49.5 - parent: 0 - type: Transform -- uid: 30818 - type: CableMV - components: - - pos: 73.5,50.5 - parent: 0 - type: Transform -- uid: 30819 - type: CableMV - components: - - pos: 73.5,51.5 - parent: 0 - type: Transform -- uid: 30820 - type: CableMV - components: - - pos: 73.5,52.5 - parent: 0 - type: Transform -- uid: 30821 - type: CableMV - components: - - pos: 73.5,53.5 - parent: 0 - type: Transform -- uid: 30822 - type: CableMV - components: - - pos: 73.5,54.5 - parent: 0 - type: Transform -- uid: 30823 - type: CableMV - components: - - pos: 73.5,55.5 - parent: 0 - type: Transform -- uid: 30824 - type: CableMV - components: - - pos: 73.5,56.5 - parent: 0 - type: Transform -- uid: 30825 - type: CableMV - components: - - pos: 73.5,57.5 - parent: 0 - type: Transform -- uid: 30826 - type: CableMV - components: - - pos: 73.5,58.5 - parent: 0 - type: Transform -- uid: 30827 - type: CableMV - components: - - pos: 74.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30828 - type: CableMV - components: - - pos: 72.5,56.5 - parent: 0 - type: Transform -- uid: 30829 - type: CableMV - components: - - pos: 71.5,56.5 - parent: 0 - type: Transform -- uid: 30830 - type: CableMV - components: - - pos: 70.5,56.5 - parent: 0 - type: Transform -- uid: 30831 - type: CableMV - components: - - pos: 69.5,56.5 - parent: 0 - type: Transform -- uid: 30832 - type: CableMV - components: - - pos: 68.5,56.5 - parent: 0 - type: Transform -- uid: 30833 - type: CableMV - components: - - pos: 67.5,56.5 - parent: 0 - type: Transform -- uid: 30834 - type: CableMV - components: - - pos: 66.5,56.5 - parent: 0 - type: Transform -- uid: 30835 - type: CableMV - components: - - pos: 65.5,56.5 - parent: 0 - type: Transform -- uid: 30836 - type: CableMV - components: - - pos: 65.5,55.5 - parent: 0 - type: Transform -- uid: 30837 - type: CableMV - components: - - pos: 66.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30838 - type: CableMV - components: - - pos: 64.5,56.5 - parent: 0 - type: Transform -- uid: 30839 - type: CableMV - components: - - pos: 63.5,56.5 - parent: 0 - type: Transform -- uid: 30840 - type: CableMV - components: - - pos: 62.5,56.5 - parent: 0 - type: Transform -- uid: 30841 - type: CableMV - components: - - pos: 61.5,56.5 - parent: 0 - type: Transform -- uid: 30842 - type: CableMV - components: - - pos: 60.5,56.5 - parent: 0 - type: Transform -- uid: 30843 - type: CableMV - components: - - pos: 59.5,56.5 - parent: 0 - type: Transform -- uid: 30844 - type: CableMV - components: - - pos: 58.5,56.5 - parent: 0 - type: Transform -- uid: 30845 - type: CableMV - components: - - pos: 57.5,56.5 - parent: 0 - type: Transform -- uid: 30846 - type: CableMV - components: - - pos: 56.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30847 - type: CableMV - components: - - pos: 55.5,56.5 - parent: 0 - type: Transform -- uid: 30848 - type: CableMV - components: - - pos: 55.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30849 - type: CableMV - components: - - pos: 55.5,54.5 - parent: 0 - type: Transform -- uid: 30850 - type: CableMV - components: - - pos: 55.5,53.5 - parent: 0 - type: Transform -- uid: 30851 - type: CableMV - components: - - pos: 55.5,52.5 - parent: 0 - type: Transform -- uid: 30852 - type: CableMV - components: - - pos: 55.5,51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30853 - type: CableMV - components: - - pos: 55.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30854 - type: CableMV - components: - - pos: 56.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30855 - type: CableMV - components: - - pos: 55.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30856 - type: CableMV - components: - - pos: 55.5,48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30857 - type: CableMV - components: - - pos: 55.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30858 - type: CableMV - components: - - pos: 55.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30859 - type: CableMV - components: - - pos: 55.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30860 - type: CableMV - components: - - pos: 55.5,44.5 - parent: 0 - type: Transform -- uid: 30861 - type: CableMV - components: - - pos: 55.5,43.5 - parent: 0 - type: Transform -- uid: 30862 - type: CableMV - components: - - pos: 55.5,42.5 - parent: 0 - type: Transform -- uid: 30863 - type: CableMV - components: - - pos: 56.5,42.5 - parent: 0 - type: Transform -- uid: 30864 - type: CableMV - components: - - pos: 57.5,42.5 - parent: 0 - type: Transform -- uid: 30865 - type: CableApcExtension - components: - - pos: 57.5,48.5 - parent: 0 - type: Transform -- uid: 30866 - type: CableMV - components: - - pos: 58.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30867 - type: CableMV - components: - - pos: 58.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30868 - type: CableMV - components: - - pos: 58.5,44.5 - parent: 0 - type: Transform -- uid: 30869 - type: CableMV - components: - - pos: 58.5,45.5 - parent: 0 - type: Transform -- uid: 30870 - type: CableMV - components: - - pos: 57.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30871 - type: CableMV - components: - - pos: 58.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30872 - type: CableMV - components: - - pos: 59.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30873 - type: CableMV - components: - - pos: 59.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30874 - type: CableMV - components: - - pos: 60.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30875 - type: CableApcExtension - components: - - pos: 57.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30876 - type: CableMV - components: - - pos: 60.5,42.5 - parent: 0 - type: Transform -- uid: 30877 - type: CableMV - components: - - pos: 61.5,42.5 - parent: 0 - type: Transform -- uid: 30878 - type: CableMV - components: - - pos: 59.5,42.5 - parent: 0 - type: Transform -- uid: 30879 - type: CableMV - components: - - pos: 63.5,42.5 - parent: 0 - type: Transform -- uid: 30880 - type: CableMV - components: - - pos: 64.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30881 - type: CableMV - components: - - pos: 63.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30882 - type: CableMV - components: - - pos: 62.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30883 - type: CableMV - components: - - pos: 63.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30884 - type: CableMV - components: - - pos: 62.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30885 - type: CableMV - components: - - pos: 61.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30886 - type: CableApcExtension - components: - - pos: 57.5,47.5 - parent: 0 - type: Transform -- uid: 30887 - type: CableApcExtension - components: - - pos: 57.5,46.5 - parent: 0 - type: Transform -- uid: 30888 - type: CableApcExtension - components: - - pos: 57.5,45.5 - parent: 0 - type: Transform -- uid: 30889 - type: CableApcExtension - components: - - pos: 58.5,45.5 - parent: 0 - type: Transform -- uid: 30890 - type: CableApcExtension - components: - - pos: 59.5,45.5 - parent: 0 - type: Transform -- uid: 30891 - type: CableApcExtension - components: - - pos: 60.5,45.5 - parent: 0 - type: Transform -- uid: 30892 - type: CableApcExtension - components: - - pos: 61.5,45.5 - parent: 0 - type: Transform -- uid: 30893 - type: CableApcExtension - components: - - pos: 62.5,45.5 - parent: 0 - type: Transform -- uid: 30894 - type: CableApcExtension - components: - - pos: 63.5,45.5 - parent: 0 - type: Transform -- uid: 30895 - type: CableApcExtension - components: - - pos: 64.5,45.5 - parent: 0 - type: Transform -- uid: 30896 - type: CableApcExtension - components: - - pos: 60.5,46.5 - parent: 0 - type: Transform -- uid: 30897 - type: CableApcExtension - components: - - pos: 60.5,47.5 - parent: 0 - type: Transform -- uid: 30898 - type: CableApcExtension - components: - - pos: 60.5,48.5 - parent: 0 - type: Transform -- uid: 30899 - type: CableApcExtension - components: - - pos: 60.5,49.5 - parent: 0 - type: Transform -- uid: 30900 - type: CableApcExtension - components: - - pos: 60.5,50.5 - parent: 0 - type: Transform -- uid: 30901 - type: CableApcExtension - components: - - pos: 60.5,51.5 - parent: 0 - type: Transform -- uid: 30902 - type: CableApcExtension - components: - - pos: 61.5,50.5 - parent: 0 - type: Transform -- uid: 30903 - type: CableApcExtension - components: - - pos: 62.5,50.5 - parent: 0 - type: Transform -- uid: 30904 - type: CableApcExtension - components: - - pos: 63.5,50.5 - parent: 0 - type: Transform -- uid: 30905 - type: CableApcExtension - components: - - pos: 64.5,50.5 - parent: 0 - type: Transform -- uid: 30906 - type: CableApcExtension - components: - - pos: 58.5,44.5 - parent: 0 - type: Transform -- uid: 30907 - type: CableApcExtension - components: - - pos: 58.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30908 - type: CableApcExtension - components: - - pos: 58.5,42.5 - parent: 0 - type: Transform -- uid: 30909 - type: CableApcExtension - components: - - pos: 59.5,42.5 - parent: 0 - type: Transform -- uid: 30910 - type: CableApcExtension - components: - - pos: 60.5,42.5 - parent: 0 - type: Transform -- uid: 30911 - type: CableApcExtension - components: - - pos: 61.5,42.5 - parent: 0 - type: Transform -- uid: 30912 - type: CableApcExtension - components: - - pos: 62.5,42.5 - parent: 0 - type: Transform -- uid: 30913 - type: CableApcExtension - components: - - pos: 63.5,42.5 - parent: 0 - type: Transform -- uid: 30914 - type: CableApcExtension - components: - - pos: 64.5,42.5 - parent: 0 - type: Transform -- uid: 30915 - type: CableApcExtension - components: - - pos: 65.5,42.5 - parent: 0 - type: Transform -- uid: 30916 - type: CableApcExtension - components: - - pos: 65.5,41.5 - parent: 0 - type: Transform -- uid: 30917 - type: CableApcExtension - components: - - pos: 65.5,40.5 - parent: 0 - type: Transform -- uid: 30918 - type: CableApcExtension - components: - - pos: 65.5,39.5 - parent: 0 - type: Transform -- uid: 30919 - type: CableApcExtension - components: - - pos: 65.5,38.5 - parent: 0 - type: Transform -- uid: 30920 - type: CableApcExtension - components: - - pos: 64.5,39.5 - parent: 0 - type: Transform -- uid: 30921 - type: CableApcExtension - components: - - pos: 63.5,39.5 - parent: 0 - type: Transform -- uid: 30922 - type: CableApcExtension - components: - - pos: 62.5,39.5 - parent: 0 - type: Transform -- uid: 30923 - type: CableApcExtension - components: - - pos: 61.5,39.5 - parent: 0 - type: Transform -- uid: 30924 - type: CableApcExtension - components: - - pos: 60.5,39.5 - parent: 0 - type: Transform -- uid: 30925 - type: CableApcExtension - components: - - pos: 59.5,39.5 - parent: 0 - type: Transform -- uid: 30926 - type: CableApcExtension - components: - - pos: 58.5,39.5 - parent: 0 - type: Transform -- uid: 30927 - type: CableApcExtension - components: - - pos: 57.5,39.5 - parent: 0 - type: Transform -- uid: 30928 - type: CableApcExtension - components: - - pos: 56.5,39.5 - parent: 0 - type: Transform -- uid: 30929 - type: CableApcExtension - components: - - pos: 55.5,39.5 - parent: 0 - type: Transform -- uid: 30930 - type: CableApcExtension - components: - - pos: 55.5,40.5 - parent: 0 - type: Transform -- uid: 30931 - type: CableApcExtension - components: - - pos: 55.5,41.5 - parent: 0 - type: Transform -- uid: 30932 - type: CableApcExtension - components: - - pos: 55.5,42.5 - parent: 0 - type: Transform -- uid: 30933 - type: CableApcExtension - components: - - pos: 56.5,42.5 - parent: 0 - type: Transform -- uid: 30934 - type: CableApcExtension - components: - - pos: 57.5,42.5 - parent: 0 - type: Transform -- uid: 30935 - type: APCBasic - components: - - pos: 51.5,41.5 - parent: 0 - type: Transform -- uid: 30936 - type: CableMV - components: - - pos: 51.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30937 - type: CableMV - components: - - pos: 51.5,40.5 - parent: 0 - type: Transform -- uid: 30938 - type: CableMV - components: - - pos: 51.5,39.5 - parent: 0 - type: Transform -- uid: 30939 - type: CableMV - components: - - pos: 52.5,39.5 - parent: 0 - type: Transform -- uid: 30940 - type: CableMV - components: - - pos: 53.5,39.5 - parent: 0 - type: Transform -- uid: 30941 - type: CableMV - components: - - pos: 54.5,39.5 - parent: 0 - type: Transform -- uid: 30942 - type: CableMV - components: - - pos: 55.5,39.5 - parent: 0 - type: Transform -- uid: 30943 - type: CableMV - components: - - pos: 55.5,40.5 - parent: 0 - type: Transform -- uid: 30944 - type: CableMV - components: - - pos: 55.5,41.5 - parent: 0 - type: Transform -- uid: 30945 - type: CableApcExtension - components: - - pos: 51.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30946 - type: CableApcExtension - components: - - pos: 51.5,40.5 - parent: 0 - type: Transform -- uid: 30947 - type: CableApcExtension - components: - - pos: 51.5,39.5 - parent: 0 - type: Transform -- uid: 30948 - type: CableApcExtension - components: - - pos: 51.5,38.5 - parent: 0 - type: Transform -- uid: 30949 - type: CableApcExtension - components: - - pos: 51.5,37.5 - parent: 0 - type: Transform -- uid: 30950 - type: CableApcExtension - components: - - pos: 51.5,36.5 - parent: 0 - type: Transform -- uid: 30951 - type: CableApcExtension - components: - - pos: 50.5,37.5 - parent: 0 - type: Transform -- uid: 30952 - type: CableApcExtension - components: - - pos: 49.5,37.5 - parent: 0 - type: Transform -- uid: 30953 - type: CableApcExtension - components: - - pos: 48.5,37.5 - parent: 0 - type: Transform -- uid: 30954 - type: CableApcExtension - components: - - pos: 50.5,39.5 - parent: 0 - type: Transform -- uid: 30955 - type: CableApcExtension - components: - - pos: 49.5,39.5 - parent: 0 - type: Transform -- uid: 30956 - type: CableApcExtension - components: - - pos: 48.5,39.5 - parent: 0 - type: Transform -- uid: 30957 - type: CableApcExtension - components: - - pos: 51.5,42.5 - parent: 0 - type: Transform -- uid: 30958 - type: CableApcExtension - components: - - pos: 51.5,43.5 - parent: 0 - type: Transform -- uid: 30959 - type: CableApcExtension - components: - - pos: 50.5,43.5 - parent: 0 - type: Transform -- uid: 30960 - type: CableApcExtension - components: - - pos: 49.5,43.5 - parent: 0 - type: Transform -- uid: 30961 - type: CableApcExtension - components: - - pos: 48.5,43.5 - parent: 0 - type: Transform -- uid: 30962 - type: CableApcExtension - components: - - pos: 50.5,44.5 - parent: 0 - type: Transform -- uid: 30963 - type: CableApcExtension - components: - - pos: 50.5,44.5 - parent: 0 - type: Transform -- uid: 30964 - type: CableApcExtension - components: - - pos: 50.5,45.5 - parent: 0 - type: Transform -- uid: 30965 - type: CableApcExtension - components: - - pos: 50.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30966 - type: CableApcExtension - components: - - pos: 51.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30967 - type: CableApcExtension - components: - - pos: 52.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30968 - type: CableApcExtension - components: - - pos: 53.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30969 - type: CableApcExtension - components: - - pos: 54.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30970 - type: CableApcExtension - components: - - pos: 55.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30971 - type: CableApcExtension - components: - - pos: 55.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30972 - type: CableApcExtension - components: - - pos: 55.5,48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30973 - type: CableApcExtension - components: - - pos: 55.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30974 - type: CableApcExtension - components: - - pos: 55.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30975 - type: CableApcExtension - components: - - pos: 66.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30976 - type: CableApcExtension - components: - - pos: 65.5,55.5 - parent: 0 - type: Transform -- uid: 30977 - type: CableApcExtension - components: - - pos: 65.5,54.5 - parent: 0 - type: Transform -- uid: 30978 - type: CableApcExtension - components: - - pos: 64.5,54.5 - parent: 0 - type: Transform -- uid: 30979 - type: CableApcExtension - components: - - pos: 63.5,54.5 - parent: 0 - type: Transform -- uid: 30980 - type: CableApcExtension - components: - - pos: 62.5,54.5 - parent: 0 - type: Transform -- uid: 30981 - type: CableApcExtension - components: - - pos: 61.5,54.5 - parent: 0 - type: Transform -- uid: 30982 - type: CableApcExtension - components: - - pos: 60.5,54.5 - parent: 0 - type: Transform -- uid: 30983 - type: CableApcExtension - components: - - pos: 59.5,54.5 - parent: 0 - type: Transform -- uid: 30984 - type: CableApcExtension - components: - - pos: 58.5,54.5 - parent: 0 - type: Transform -- uid: 30985 - type: CableApcExtension - components: - - pos: 59.5,55.5 - parent: 0 - type: Transform -- uid: 30986 - type: CableApcExtension - components: - - pos: 59.5,56.5 - parent: 0 - type: Transform -- uid: 30987 - type: CableApcExtension - components: - - pos: 59.5,57.5 - parent: 0 - type: Transform -- uid: 30988 - type: CableApcExtension - components: - - pos: 59.5,58.5 - parent: 0 - type: Transform -- uid: 30989 - type: CableApcExtension - components: - - pos: 59.5,59.5 - parent: 0 - type: Transform -- uid: 30990 - type: CableApcExtension - components: - - pos: 59.5,60.5 - parent: 0 - type: Transform -- uid: 30991 - type: CableApcExtension - components: - - pos: 60.5,60.5 - parent: 0 - type: Transform -- uid: 30992 - type: CableApcExtension - components: - - pos: 61.5,60.5 - parent: 0 - type: Transform -- uid: 30993 - type: CableApcExtension - components: - - pos: 62.5,60.5 - parent: 0 - type: Transform -- uid: 30994 - type: CableApcExtension - components: - - pos: 63.5,60.5 - parent: 0 - type: Transform -- uid: 30995 - type: CableApcExtension - components: - - pos: 64.5,60.5 - parent: 0 - type: Transform -- uid: 30996 - type: CableApcExtension - components: - - pos: 65.5,60.5 - parent: 0 - type: Transform -- uid: 30997 - type: CableApcExtension - components: - - pos: 65.5,59.5 - parent: 0 - type: Transform -- uid: 30998 - type: CableApcExtension - components: - - pos: 65.5,58.5 - parent: 0 - type: Transform -- uid: 30999 - type: CableApcExtension - components: - - pos: 65.5,57.5 - parent: 0 - type: Transform -- uid: 31000 - type: CableApcExtension - components: - - pos: 65.5,56.5 - parent: 0 - type: Transform -- uid: 31001 - type: CableApcExtension - components: - - pos: 62.5,55.5 - parent: 0 - type: Transform -- uid: 31002 - type: CableApcExtension - components: - - pos: 62.5,56.5 - parent: 0 - type: Transform -- uid: 31003 - type: WallReinforced - components: - - pos: 59.5,61.5 - parent: 0 - type: Transform -- uid: 31004 - type: CableApcExtension - components: - - pos: 60.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31005 - type: CableApcExtension - components: - - pos: 61.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31006 - type: CableApcExtension - components: - - pos: 62.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31007 - type: CableApcExtension - components: - - pos: 63.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31008 - type: CableApcExtension - components: - - pos: 66.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31009 - type: CableApcExtension - components: - - pos: 74.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31010 - type: CableApcExtension - components: - - pos: 73.5,58.5 - parent: 0 - type: Transform -- uid: 31011 - type: CableApcExtension - components: - - pos: 72.5,58.5 - parent: 0 - type: Transform -- uid: 31012 - type: CableApcExtension - components: - - pos: 71.5,58.5 - parent: 0 - type: Transform -- uid: 31013 - type: CableApcExtension - components: - - pos: 70.5,58.5 - parent: 0 - type: Transform -- uid: 31014 - type: CableApcExtension - components: - - pos: 69.5,58.5 - parent: 0 - type: Transform -- uid: 31015 - type: CableApcExtension - components: - - pos: 68.5,58.5 - parent: 0 - type: Transform -- uid: 31016 - type: CableApcExtension - components: - - pos: 68.5,59.5 - parent: 0 - type: Transform -- uid: 31017 - type: CableApcExtension - components: - - pos: 68.5,60.5 - parent: 0 - type: Transform -- uid: 31018 - type: CableApcExtension - components: - - pos: 67.5,60.5 - parent: 0 - type: Transform -- uid: 31019 - type: CableApcExtension - components: - - pos: 67.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31020 - type: CableApcExtension - components: - - pos: 70.5,59.5 - parent: 0 - type: Transform -- uid: 31021 - type: CableApcExtension - components: - - pos: 70.5,60.5 - parent: 0 - type: Transform -- uid: 31022 - type: CableApcExtension - components: - - pos: 70.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31023 - type: CableApcExtension - components: - - pos: 69.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31024 - type: CableApcExtension - components: - - pos: 71.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31025 - type: CableApcExtension - components: - - pos: 73.5,59.5 - parent: 0 - type: Transform -- uid: 31026 - type: CableApcExtension - components: - - pos: 73.5,60.5 - parent: 0 - type: Transform -- uid: 31027 - type: CableApcExtension - components: - - pos: 73.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31028 - type: CableApcExtension - components: - - pos: 74.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31029 - type: CableApcExtension - components: - - pos: 74.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31030 - type: CableApcExtension - components: - - pos: 75.5,48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31031 - type: CableApcExtension - components: - - pos: 74.5,48.5 - parent: 0 - type: Transform -- uid: 31032 - type: CableApcExtension - components: - - pos: 73.5,48.5 - parent: 0 - type: Transform -- uid: 31033 - type: CableApcExtension - components: - - pos: 72.5,48.5 - parent: 0 - type: Transform -- uid: 31034 - type: CableApcExtension - components: - - pos: 72.5,47.5 - parent: 0 - type: Transform -- uid: 31035 - type: CableApcExtension - components: - - pos: 72.5,46.5 - parent: 0 - type: Transform -- uid: 31036 - type: CableApcExtension - components: - - pos: 72.5,45.5 - parent: 0 - type: Transform -- uid: 31037 - type: CableApcExtension - components: - - pos: 72.5,44.5 - parent: 0 - type: Transform -- uid: 31038 - type: CableApcExtension - components: - - pos: 72.5,43.5 - parent: 0 - type: Transform -- uid: 31039 - type: CableApcExtension - components: - - pos: 72.5,42.5 - parent: 0 - type: Transform -- uid: 31040 - type: CableApcExtension - components: - - pos: 72.5,41.5 - parent: 0 - type: Transform -- uid: 31041 - type: CableApcExtension - components: - - pos: 72.5,40.5 - parent: 0 - type: Transform -- uid: 31042 - type: CableApcExtension - components: - - pos: 72.5,39.5 - parent: 0 - type: Transform -- uid: 31043 - type: CableApcExtension - components: - - pos: 71.5,39.5 - parent: 0 - type: Transform -- uid: 31044 - type: CableApcExtension - components: - - pos: 70.5,39.5 - parent: 0 - type: Transform -- uid: 31045 - type: CableApcExtension - components: - - pos: 69.5,39.5 - parent: 0 - type: Transform -- uid: 31046 - type: CableApcExtension - components: - - pos: 68.5,39.5 - parent: 0 - type: Transform -- uid: 31047 - type: CableApcExtension - components: - - pos: 67.5,39.5 - parent: 0 - type: Transform -- uid: 31048 - type: CableApcExtension - components: - - pos: 73.5,39.5 - parent: 0 - type: Transform -- uid: 31049 - type: CableApcExtension - components: - - pos: 74.5,39.5 - parent: 0 - type: Transform -- uid: 31050 - type: CableApcExtension - components: - - pos: 75.5,39.5 - parent: 0 - type: Transform -- uid: 31051 - type: CableApcExtension - components: - - pos: 76.5,39.5 - parent: 0 - type: Transform -- uid: 31052 - type: CableApcExtension - components: - - pos: 77.5,39.5 - parent: 0 - type: Transform -- uid: 31053 - type: CableApcExtension - components: - - pos: 78.5,39.5 - parent: 0 - type: Transform -- uid: 31054 - type: CableApcExtension - components: - - pos: 79.5,39.5 - parent: 0 - type: Transform -- uid: 31055 - type: CableApcExtension - components: - - pos: 68.5,40.5 - parent: 0 - type: Transform -- uid: 31056 - type: CableApcExtension - components: - - pos: 68.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31057 - type: CableApcExtension - components: - - pos: 67.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31058 - type: CableApcExtension - components: - - pos: 69.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31059 - type: CableApcExtension - components: - - pos: 71.5,46.5 - parent: 0 - type: Transform -- uid: 31060 - type: CableApcExtension - components: - - pos: 70.5,46.5 - parent: 0 - type: Transform -- uid: 31061 - type: CableApcExtension - components: - - pos: 69.5,46.5 - parent: 0 - type: Transform -- uid: 31062 - type: CableApcExtension - components: - - pos: 68.5,46.5 - parent: 0 - type: Transform -- uid: 31063 - type: CableApcExtension - components: - - pos: 67.5,46.5 - parent: 0 - type: Transform -- uid: 31064 - type: CableApcExtension - components: - - pos: 72.5,49.5 - parent: 0 - type: Transform -- uid: 31065 - type: CableApcExtension - components: - - pos: 72.5,50.5 - parent: 0 - type: Transform -- uid: 31066 - type: CableApcExtension - components: - - pos: 71.5,50.5 - parent: 0 - type: Transform -- uid: 31067 - type: CableApcExtension - components: - - pos: 70.5,50.5 - parent: 0 - type: Transform -- uid: 31068 - type: CableApcExtension - components: - - pos: 69.5,50.5 - parent: 0 - type: Transform -- uid: 31069 - type: CableApcExtension - components: - - pos: 68.5,50.5 - parent: 0 - type: Transform -- uid: 31070 - type: CableApcExtension - components: - - pos: 72.5,51.5 - parent: 0 - type: Transform -- uid: 31071 - type: CableApcExtension - components: - - pos: 72.5,52.5 - parent: 0 - type: Transform -- uid: 31072 - type: CableApcExtension - components: - - pos: 72.5,53.5 - parent: 0 - type: Transform -- uid: 31073 - type: CableApcExtension - components: - - pos: 71.5,53.5 - parent: 0 - type: Transform -- uid: 31074 - type: CableApcExtension - components: - - pos: 70.5,53.5 - parent: 0 - type: Transform -- uid: 31075 - type: CableApcExtension - components: - - pos: 69.5,53.5 - parent: 0 - type: Transform -- uid: 31076 - type: CableApcExtension - components: - - pos: 68.5,53.5 - parent: 0 - type: Transform -- uid: 31077 - type: CableApcExtension - components: - - pos: 72.5,54.5 - parent: 0 - type: Transform -- uid: 31078 - type: CableApcExtension - components: - - pos: 72.5,55.5 - parent: 0 - type: Transform -- uid: 31079 - type: CableApcExtension - components: - - pos: 72.5,57.5 - parent: 0 - type: Transform -- uid: 31080 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 67.5,55.5 - parent: 0 - type: Transform -- uid: 31081 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 68.5,55.5 - parent: 0 - type: Transform -- uid: 31082 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 69.5,55.5 - parent: 0 - type: Transform -- uid: 31083 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 70.5,55.5 - parent: 0 - type: Transform -- uid: 31084 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 71.5,55.5 - parent: 0 - type: Transform -- uid: 31085 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 71.5,52.5 - parent: 0 - type: Transform -- uid: 31086 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 70.5,52.5 - parent: 0 - type: Transform -- uid: 31087 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 69.5,52.5 - parent: 0 - type: Transform -- uid: 31088 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 68.5,52.5 - parent: 0 - type: Transform -- uid: 31089 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 67.5,52.5 - parent: 0 - type: Transform -- uid: 31090 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 67.5,49.5 - parent: 0 - type: Transform -- uid: 31091 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 68.5,49.5 - parent: 0 - type: Transform -- uid: 31092 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 69.5,49.5 - parent: 0 - type: Transform -- uid: 31093 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 70.5,49.5 - parent: 0 - type: Transform -- uid: 31094 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 71.5,49.5 - parent: 0 - type: Transform -- uid: 31095 - type: WindowReinforcedDirectional - components: - - pos: 71.5,49.5 - parent: 0 - type: Transform -- uid: 31096 - type: WindowReinforcedDirectional - components: - - pos: 70.5,49.5 - parent: 0 - type: Transform -- uid: 31097 - type: WindowReinforcedDirectional - components: - - pos: 69.5,49.5 - parent: 0 - type: Transform -- uid: 31098 - type: WindowReinforcedDirectional - components: - - pos: 68.5,49.5 - parent: 0 - type: Transform -- uid: 31099 - type: WindowReinforcedDirectional - components: - - pos: 67.5,49.5 - parent: 0 - type: Transform -- uid: 31100 - type: WindowReinforcedDirectional - components: - - pos: 67.5,52.5 - parent: 0 - type: Transform -- uid: 31101 - type: WindowReinforcedDirectional - components: - - pos: 68.5,52.5 - parent: 0 - type: Transform -- uid: 31102 - type: WindowReinforcedDirectional - components: - - pos: 69.5,52.5 - parent: 0 - type: Transform -- uid: 31103 - type: WindowReinforcedDirectional - components: - - pos: 70.5,52.5 - parent: 0 - type: Transform -- uid: 31104 - type: WindowReinforcedDirectional - components: - - pos: 71.5,52.5 - parent: 0 - type: Transform -- uid: 31105 - type: WindowReinforcedDirectional - components: - - pos: 68.5,55.5 - parent: 0 - type: Transform -- uid: 31106 - type: WindowReinforcedDirectional - components: - - pos: 67.5,55.5 - parent: 0 - type: Transform -- uid: 31107 - type: WindowReinforcedDirectional - components: - - pos: 69.5,55.5 - parent: 0 - type: Transform -- uid: 31108 - type: WindowReinforcedDirectional - components: - - pos: 70.5,55.5 - parent: 0 - type: Transform -- uid: 31109 - type: WindowReinforcedDirectional - components: - - pos: 71.5,55.5 - parent: 0 - type: Transform -- uid: 31110 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 71.5,55.5 - parent: 0 - type: Transform -- uid: 31111 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 71.5,52.5 - parent: 0 - type: Transform -- uid: 31112 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 71.5,49.5 - parent: 0 - type: Transform -- uid: 31113 - type: WindowReinforcedDirectional - components: - - pos: 67.5,57.5 - parent: 0 - type: Transform -- uid: 31114 - type: WindowReinforcedDirectional - components: - - pos: 68.5,57.5 - parent: 0 - type: Transform -- uid: 31115 - type: WindowReinforcedDirectional - components: - - pos: 69.5,57.5 - parent: 0 - type: Transform -- uid: 31116 - type: WindowReinforcedDirectional - components: - - pos: 70.5,57.5 - parent: 0 - type: Transform -- uid: 31117 - type: WindowReinforcedDirectional - components: - - pos: 71.5,57.5 - parent: 0 - type: Transform -- uid: 31118 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 74.5,57.5 - parent: 0 - type: Transform -- uid: 31119 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 78.5,57.5 - parent: 0 - type: Transform -- uid: 31120 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 81.5,57.5 - parent: 0 - type: Transform -- uid: 31121 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 84.5,57.5 - parent: 0 - type: Transform -- uid: 31122 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 71.5,51.5 - parent: 0 - type: Transform -- uid: 31123 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 71.5,54.5 - parent: 0 - type: Transform -- uid: 31124 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 71.5,48.5 - parent: 0 - type: Transform -- uid: 31125 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 71.5,46.5 - parent: 0 - type: Transform -- uid: 31126 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 70.5,46.5 - parent: 0 - type: Transform -- uid: 31127 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 69.5,46.5 - parent: 0 - type: Transform -- uid: 31128 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 68.5,46.5 - parent: 0 - type: Transform -- uid: 31129 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 67.5,46.5 - parent: 0 - type: Transform -- uid: 31130 - type: CableMV - components: - - pos: 67.5,45.5 - parent: 0 - type: Transform -- uid: 31131 - type: WallSolid - components: - - pos: 66.5,46.5 - parent: 0 - type: Transform -- uid: 31132 - type: GasVentScrubber - components: - - pos: 80.5,57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31133 - type: GasPipeStraight - components: - - pos: 80.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31134 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 73.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31135 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 72.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31136 - type: GasVentPump - components: - - pos: 79.5,57.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31137 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 71.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31138 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31139 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31140 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 68.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31141 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 67.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31142 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 66.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31143 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31144 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31145 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31146 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31147 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 61.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31148 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 61.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31149 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31150 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31151 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31152 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31153 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31154 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31155 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 31156 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31157 - type: GasPipeBend - components: - - pos: 61.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31158 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 59.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31159 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31160 - type: GasPipeStraight - components: - - pos: 59.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31161 - type: GasPipeStraight - components: - - pos: 59.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31162 - type: GasPipeStraight - components: - - pos: 59.5,57.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31163 - type: GasPipeStraight - components: - - pos: 59.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31164 - type: GasVentPump - components: - - pos: 59.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31165 - type: GasVentScrubber - components: - - pos: 65.5,59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31166 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 58.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31167 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31168 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31169 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31170 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31171 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31172 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31173 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31174 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 31175 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 31176 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 31177 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 31178 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 31179 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 31180 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 31181 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31182 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31183 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31184 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 31185 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 56.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 31186 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31187 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31188 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31189 - type: GasPipeTJunction - components: - - pos: 60.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31190 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 61.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31191 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31192 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31193 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 64.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31194 - type: GasPipeStraight - components: - - pos: 65.5,57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31195 - type: GasPipeStraight - components: - - pos: 65.5,58.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31196 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 65.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31197 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 55.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31198 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 58.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31199 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 60.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31200 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 58.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31201 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31202 - type: GasPipeStraight - components: - - pos: 60.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31203 - type: GasPipeStraight - components: - - pos: 60.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31204 - type: GasPipeStraight - components: - - pos: 60.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31205 - type: GasPipeStraight - components: - - pos: 60.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31206 - type: GasPipeStraight - components: - - pos: 60.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31207 - type: GasPipeStraight - components: - - pos: 60.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31208 - type: GasPipeStraight - components: - - pos: 60.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 31209 - type: DisposalUnit - components: - - pos: 58.5,57.5 - parent: 0 - type: Transform -- uid: 31210 - type: DisposalUnit - components: - - pos: 57.5,48.5 - parent: 0 - type: Transform -- uid: 31211 - type: DisposalUnit - components: - - pos: 74.5,57.5 - parent: 0 - type: Transform -- uid: 31212 - type: DisposalTrunk - components: - - pos: 58.5,57.5 - parent: 0 - type: Transform -- uid: 31213 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 57.5,48.5 - parent: 0 - type: Transform -- uid: 31214 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 60.5,48.5 - parent: 0 - type: Transform -- uid: 31215 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 58.5,48.5 - parent: 0 - type: Transform -- uid: 31216 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 59.5,48.5 - parent: 0 - type: Transform -- uid: 31217 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 60.5,49.5 - parent: 0 - type: Transform -- uid: 31218 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 60.5,50.5 - parent: 0 - type: Transform -- uid: 31219 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 60.5,51.5 - parent: 0 - type: Transform -- uid: 31220 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 60.5,52.5 - parent: 0 - type: Transform -- uid: 31221 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 60.5,53.5 - parent: 0 - type: Transform -- uid: 31222 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 60.5,54.5 - parent: 0 - type: Transform -- uid: 31223 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 60.5,55.5 - parent: 0 - type: Transform -- uid: 31224 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 59.5,56.5 - parent: 0 - type: Transform -- uid: 31225 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 61.5,56.5 - parent: 0 - type: Transform -- uid: 31226 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 62.5,56.5 - parent: 0 - type: Transform -- uid: 31227 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 63.5,56.5 - parent: 0 - type: Transform -- uid: 31228 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 64.5,56.5 - parent: 0 - type: Transform -- uid: 31229 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 65.5,56.5 - parent: 0 - type: Transform -- uid: 31230 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 66.5,56.5 - parent: 0 - type: Transform -- uid: 31231 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 67.5,56.5 - parent: 0 - type: Transform -- uid: 31232 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 68.5,56.5 - parent: 0 - type: Transform -- uid: 31233 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 69.5,56.5 - parent: 0 - type: Transform -- uid: 31234 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 70.5,56.5 - parent: 0 - type: Transform -- uid: 31235 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 71.5,56.5 - parent: 0 - type: Transform -- uid: 31236 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 72.5,56.5 - parent: 0 - type: Transform -- uid: 31237 - type: DisposalTrunk - components: - - pos: 74.5,57.5 - parent: 0 - type: Transform -- uid: 31238 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 74.5,56.5 - parent: 0 - type: Transform -- uid: 31239 - type: DisposalYJunction - components: - - pos: 73.5,56.5 - parent: 0 - type: Transform -- uid: 31240 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 58.5,56.5 - parent: 0 - type: Transform -- uid: 31241 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: 60.5,56.5 - parent: 0 - type: Transform -- uid: 31242 - type: DisposalPipe - components: - - pos: 73.5,55.5 - parent: 0 - type: Transform -- uid: 31243 - type: DisposalPipe - components: - - pos: 73.5,54.5 - parent: 0 - type: Transform -- uid: 31244 - type: DisposalPipe - components: - - pos: 73.5,53.5 - parent: 0 - type: Transform -- uid: 31245 - type: DisposalPipe - components: - - pos: 73.5,52.5 - parent: 0 - type: Transform -- uid: 31246 - type: DisposalPipe - components: - - pos: 73.5,51.5 - parent: 0 - type: Transform -- uid: 31247 - type: DisposalPipe - components: - - pos: 73.5,50.5 - parent: 0 - type: Transform -- uid: 31248 - type: DisposalPipe - components: - - pos: 73.5,49.5 - parent: 0 - type: Transform -- uid: 31249 - type: DisposalPipe - components: - - pos: 73.5,48.5 - parent: 0 - type: Transform -- uid: 31250 - type: DisposalPipe - components: - - pos: 73.5,47.5 - parent: 0 - type: Transform -- uid: 31251 - type: DisposalPipe - components: - - pos: 73.5,46.5 - parent: 0 - type: Transform -- uid: 31252 - type: FirelockGlass - components: - - pos: 73.5,41.5 - parent: 0 - type: Transform -- uid: 31253 - type: FirelockGlass - components: - - pos: 72.5,41.5 - parent: 0 - type: Transform -- uid: 31254 - type: FirelockGlass - components: - - pos: 73.5,44.5 - parent: 0 - type: Transform -- uid: 31255 - type: FirelockGlass - components: - - pos: 72.5,44.5 - parent: 0 - type: Transform -- uid: 31256 - type: FirelockGlass - components: - - pos: 75.5,55.5 - parent: 0 - type: Transform -- uid: 31257 - type: AirSensor - components: - - pos: 73.5,50.5 - parent: 0 - type: Transform -- uid: 31258 - type: AirSensor - components: - - pos: 64.5,46.5 - parent: 0 - type: Transform -- uid: 31259 - type: AirSensor - components: - - pos: 66.5,39.5 - parent: 0 - type: Transform -- uid: 31260 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 75.5,52.5 - parent: 0 - type: Transform - - devices: - - 31255 - - 31254 - - 31257 - - 31256 - - 31134 - - 31135 - type: DeviceList -- uid: 31261 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 75.5,53.5 - parent: 0 - type: Transform - - devices: - - 31255 - - 31254 - - 31257 - - 31256 - type: DeviceList -- uid: 31262 - type: AirAlarm - components: - - pos: 70.5,41.5 - parent: 0 - type: Transform - - devices: - - 21363 - - 21364 - - 21365 - - 21415 - - 21416 - - 31259 - - 31252 - - 31253 - - 21407 - - 21408 - - 21409 - - 29749 - - 29750 - - 16742 - - 29748 - type: DeviceList -- uid: 31263 - type: FireAlarm - components: - - pos: 56.5,41.5 - parent: 0 - type: Transform - - devices: - - 21363 - - 21364 - - 21365 - - 21415 - - 21416 - - 31259 - - 31252 - - 31253 - - 21407 - - 21408 - - 21409 - type: DeviceList -- uid: 31264 - type: AirAlarm - components: - - pos: 58.5,49.5 - parent: 0 - type: Transform - - devices: - - 31166 - - 31148 - - 31258 - type: DeviceList -- uid: 31265 - type: AirAlarm - components: - - pos: 65.5,61.5 - parent: 0 - type: Transform - - devices: - - 31165 - - 31164 - type: DeviceList -- uid: 31266 - type: AirAlarm - components: - - pos: 89.5,57.5 - parent: 0 - type: Transform - - devices: - - 31136 - - 31132 - type: DeviceList -- uid: 31267 - type: FirelockGlass - components: - - pos: 58.5,43.5 - parent: 0 - type: Transform -- uid: 31268 - type: AirlockCommandGlassLocked - components: - - pos: 73.5,41.5 - parent: 0 - type: Transform -- uid: 31269 - type: AirlockCommandGlassLocked - components: - - pos: 72.5,41.5 - parent: 0 - type: Transform -- uid: 31270 - type: AirlockCommandGlassLocked - components: - - pos: 72.5,44.5 - parent: 0 - type: Transform -- uid: 31271 - type: AirlockCommandGlassLocked - components: - - pos: 73.5,44.5 - parent: 0 - type: Transform -- uid: 31272 - type: AirlockCommandGlassLocked - components: - - pos: 75.5,55.5 - parent: 0 - type: Transform -- uid: 31273 - type: WindoorCommandLocked - components: - - pos: 72.5,57.5 - parent: 0 - type: Transform -- uid: 31274 - type: WindoorCommandLocked - components: - - pos: 73.5,57.5 - parent: 0 - type: Transform -- uid: 31275 - type: TableReinforced - components: - - pos: 67.5,47.5 - parent: 0 - type: Transform -- uid: 31276 - type: TableReinforced - components: - - pos: 67.5,48.5 - parent: 0 - type: Transform -- uid: 31277 - type: TableReinforced - components: - - pos: 67.5,50.5 - parent: 0 - type: Transform -- uid: 31278 - type: TableReinforced - components: - - pos: 67.5,51.5 - parent: 0 - type: Transform -- uid: 31279 - type: TableReinforced - components: - - pos: 67.5,53.5 - parent: 0 - type: Transform -- uid: 31280 - type: TableReinforced - components: - - pos: 67.5,54.5 - parent: 0 - type: Transform -- uid: 31281 - type: TableReinforced - components: - - pos: 68.5,60.5 - parent: 0 - type: Transform -- uid: 31282 - type: TableReinforced - components: - - pos: 67.5,60.5 - parent: 0 - type: Transform -- uid: 31283 - type: TableReinforced - components: - - pos: 67.5,59.5 - parent: 0 - type: Transform -- uid: 31284 - type: TableReinforced - components: - - pos: 73.5,60.5 - parent: 0 - type: Transform -- uid: 31285 - type: TableReinforced - components: - - pos: 71.5,57.5 - parent: 0 - type: Transform -- uid: 31286 - type: TableReinforced - components: - - pos: 70.5,57.5 - parent: 0 - type: Transform -- uid: 31287 - type: TableReinforced - components: - - pos: 69.5,57.5 - parent: 0 - type: Transform -- uid: 31288 - type: TableReinforced - components: - - pos: 68.5,57.5 - parent: 0 - type: Transform -- uid: 31289 - type: TableReinforced - components: - - pos: 67.5,57.5 - parent: 0 - type: Transform -- uid: 31290 - type: ComputerComms - components: - - pos: 70.5,60.5 - parent: 0 - type: Transform -- uid: 31291 - type: ComputerStationRecords - components: - - pos: 69.5,60.5 - parent: 0 - type: Transform -- uid: 31292 - type: ComputerSurveillanceCameraMonitor - components: - - pos: 71.5,60.5 - parent: 0 - type: Transform -- uid: 31293 - type: Lamp - components: - - pos: 68.56759,60.835133 - parent: 0 - type: Transform -- uid: 31294 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,59.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31295 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 73.5,59.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31296 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 77.5,55.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31297 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 83.5,55.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31298 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,47.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31299 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,47.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31300 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31301 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31302 - type: Poweredlight - components: - - pos: 68.5,42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31303 - type: Poweredlight - components: - - pos: 65.5,42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31304 - type: Poweredlight - components: - - pos: 57.5,42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31305 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31306 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 61.5,44.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31307 - type: Poweredlight - components: - - pos: 62.5,48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31308 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,50.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31309 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 64.5,50.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31310 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,58.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31311 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,59.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31312 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 62.5,53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31313 - type: CarpetSBlue - components: - - pos: 60.5,55.5 - parent: 0 - type: Transform -- uid: 31314 - type: CarpetSBlue - components: - - pos: 60.5,56.5 - parent: 0 - type: Transform -- uid: 31315 - type: CarpetSBlue - components: - - pos: 60.5,57.5 - parent: 0 - type: Transform -- uid: 31316 - type: CarpetSBlue - components: - - pos: 60.5,58.5 - parent: 0 - type: Transform -- uid: 31317 - type: CarpetSBlue - components: - - pos: 60.5,59.5 - parent: 0 - type: Transform -- uid: 31318 - type: CarpetSBlue - components: - - pos: 61.5,55.5 - parent: 0 - type: Transform -- uid: 31319 - type: CarpetSBlue - components: - - pos: 61.5,56.5 - parent: 0 - type: Transform -- uid: 31320 - type: CarpetSBlue - components: - - pos: 61.5,57.5 - parent: 0 - type: Transform -- uid: 31321 - type: CarpetSBlue - components: - - pos: 61.5,58.5 - parent: 0 - type: Transform -- uid: 31322 - type: CarpetSBlue - components: - - pos: 61.5,59.5 - parent: 0 - type: Transform -- uid: 31323 - type: CarpetSBlue - components: - - pos: 62.5,58.5 - parent: 0 - type: Transform -- uid: 31324 - type: CarpetSBlue - components: - - pos: 62.5,59.5 - parent: 0 - type: Transform -- uid: 31325 - type: CarpetSBlue - components: - - pos: 63.5,58.5 - parent: 0 - type: Transform -- uid: 31326 - type: CarpetSBlue - components: - - pos: 63.5,59.5 - parent: 0 - type: Transform -- uid: 31327 - type: CarpetSBlue - components: - - pos: 64.5,58.5 - parent: 0 - type: Transform -- uid: 31328 - type: CarpetSBlue - components: - - pos: 64.5,59.5 - parent: 0 - type: Transform -- uid: 31329 - type: CarpetSBlue - components: - - pos: 63.5,57.5 - parent: 0 - type: Transform -- uid: 31330 - type: CarpetSBlue - components: - - pos: 63.5,56.5 - parent: 0 - type: Transform -- uid: 31331 - type: CarpetSBlue - components: - - pos: 63.5,55.5 - parent: 0 - type: Transform -- uid: 31332 - type: CarpetSBlue - components: - - pos: 64.5,57.5 - parent: 0 - type: Transform -- uid: 31333 - type: CarpetSBlue - components: - - pos: 64.5,56.5 - parent: 0 - type: Transform -- uid: 31334 - type: CarpetSBlue - components: - - pos: 64.5,55.5 - parent: 0 - type: Transform -- uid: 31335 - type: CarpetSBlue - components: - - pos: 63.5,50.5 - parent: 0 - type: Transform -- uid: 31336 - type: CarpetSBlue - components: - - pos: 63.5,51.5 - parent: 0 - type: Transform -- uid: 31337 - type: CarpetSBlue - components: - - pos: 64.5,50.5 - parent: 0 - type: Transform -- uid: 31338 - type: CarpetSBlue - components: - - pos: 64.5,51.5 - parent: 0 - type: Transform -- uid: 31339 - type: CarpetSBlue - components: - - pos: 65.5,50.5 - parent: 0 - type: Transform -- uid: 31340 - type: CarpetSBlue - components: - - pos: 65.5,51.5 - parent: 0 - type: Transform -- uid: 31341 - type: CarpetSBlue - components: - - pos: 59.5,45.5 - parent: 0 - type: Transform -- uid: 31342 - type: CarpetSBlue - components: - - pos: 59.5,46.5 - parent: 0 - type: Transform -- uid: 31343 - type: CarpetSBlue - components: - - pos: 59.5,47.5 - parent: 0 - type: Transform -- uid: 31344 - type: CarpetSBlue - components: - - pos: 60.5,45.5 - parent: 0 - type: Transform -- uid: 31345 - type: CarpetSBlue - components: - - pos: 60.5,46.5 - parent: 0 - type: Transform -- uid: 31346 - type: CarpetSBlue - components: - - pos: 60.5,47.5 - parent: 0 - type: Transform -- uid: 31347 - type: CarpetSBlue - components: - - pos: 61.5,45.5 - parent: 0 - type: Transform -- uid: 31348 - type: CarpetSBlue - components: - - pos: 61.5,46.5 - parent: 0 - type: Transform -- uid: 31349 - type: CarpetSBlue - components: - - pos: 61.5,47.5 - parent: 0 - type: Transform -- uid: 31350 - type: CarpetSBlue - components: - - pos: 62.5,45.5 - parent: 0 - type: Transform -- uid: 31351 - type: CarpetSBlue - components: - - pos: 62.5,46.5 - parent: 0 - type: Transform -- uid: 31352 - type: CarpetSBlue - components: - - pos: 62.5,47.5 - parent: 0 - type: Transform -- uid: 31353 - type: CarpetSBlue - components: - - pos: 63.5,45.5 - parent: 0 - type: Transform -- uid: 31354 - type: CarpetSBlue - components: - - pos: 63.5,46.5 - parent: 0 - type: Transform -- uid: 31355 - type: CarpetSBlue - components: - - pos: 63.5,47.5 - parent: 0 - type: Transform -- uid: 31356 - type: AirlockHeadOfPersonnelLocked - components: - - pos: 62.5,50.5 - parent: 0 - type: Transform -- uid: 31357 - type: AirlockHeadOfPersonnelLocked - components: - - pos: 60.5,52.5 - parent: 0 - type: Transform -- uid: 31358 - type: AirlockHeadOfPersonnelLocked - components: - - pos: 66.5,45.5 - parent: 0 - type: Transform -- uid: 31359 - type: AirlockMaintCommandLocked - components: - - pos: 57.5,56.5 - parent: 0 - type: Transform -- uid: 31360 - type: AirlockCommandLocked - components: - - pos: 66.5,56.5 - parent: 0 - type: Transform -- uid: 31361 - type: AirlockCommandGlassLocked - components: - - pos: 91.5,57.5 - parent: 0 - type: Transform -- uid: 31362 - type: AirlockCommandGlassLocked - components: - - pos: 93.5,61.5 - parent: 0 - type: Transform -- uid: 31363 - type: AirlockCommandGlassLocked - components: - - pos: 93.5,66.5 - parent: 0 - type: Transform -- uid: 31366 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 3.141592653589793 rad - pos: 91.5,74.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 31367 - type: Catwalk - components: - - pos: 94.5,66.5 - parent: 0 - type: Transform -- uid: 31368 - type: Catwalk - components: - - pos: 91.5,72.5 - parent: 0 - type: Transform -- uid: 31369 - type: Catwalk - components: - - pos: 91.5,73.5 - parent: 0 - type: Transform -- uid: 31370 - type: CableApcExtension - components: - - pos: 91.5,57.5 - parent: 0 - type: Transform -- uid: 31371 - type: CableApcExtension - components: - - pos: 91.5,58.5 - parent: 0 - type: Transform -- uid: 31372 - type: CableApcExtension - components: - - pos: 91.5,59.5 - parent: 0 - type: Transform -- uid: 31373 - type: CableApcExtension - components: - - pos: 91.5,60.5 - parent: 0 - type: Transform -- uid: 31374 - type: CableApcExtension - components: - - pos: 91.5,61.5 - parent: 0 - type: Transform -- uid: 31375 - type: CableApcExtension - components: - - pos: 91.5,62.5 - parent: 0 - type: Transform -- uid: 31376 - type: CableApcExtension - components: - - pos: 91.5,63.5 - parent: 0 - type: Transform -- uid: 31377 - type: CableApcExtension - components: - - pos: 91.5,64.5 - parent: 0 - type: Transform -- uid: 31378 - type: CableApcExtension - components: - - pos: 91.5,65.5 - parent: 0 - type: Transform -- uid: 31379 - type: CableApcExtension - components: - - pos: 91.5,66.5 - parent: 0 - type: Transform -- uid: 31380 - type: CableApcExtension - components: - - pos: 91.5,67.5 - parent: 0 - type: Transform -- uid: 31381 - type: CableApcExtension - components: - - pos: 91.5,68.5 - parent: 0 - type: Transform -- uid: 31382 - type: CableApcExtension - components: - - pos: 91.5,69.5 - parent: 0 - type: Transform -- uid: 31383 - type: CableApcExtension - components: - - pos: 91.5,70.5 - parent: 0 - type: Transform -- uid: 31384 - type: CableApcExtension - components: - - pos: 91.5,71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31385 - type: CableApcExtension - components: - - pos: 91.5,72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31386 - type: CableApcExtension - components: - - pos: 91.5,73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31387 - type: CableApcExtension - components: - - pos: 90.5,73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31388 - type: CableApcExtension - components: - - pos: 90.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31389 - type: CableApcExtension - components: - - pos: 92.5,73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31390 - type: CableApcExtension - components: - - pos: 92.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31391 - type: CableApcExtension - components: - - pos: 92.5,71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31392 - type: CableApcExtension - components: - - pos: 90.5,71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31393 - type: CableApcExtension - components: - - pos: 90.5,68.5 - parent: 0 - type: Transform -- uid: 31394 - type: CableApcExtension - components: - - pos: 89.5,68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31395 - type: CableApcExtension - components: - - pos: 89.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31396 - type: CableApcExtension - components: - - pos: 89.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31397 - type: CableApcExtension - components: - - pos: 90.5,62.5 - parent: 0 - type: Transform -- uid: 31398 - type: CableApcExtension - components: - - pos: 89.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31399 - type: CableApcExtension - components: - - pos: 89.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31400 - type: CableApcExtension - components: - - pos: 89.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31401 - type: CableApcExtension - components: - - pos: 92.5,64.5 - parent: 0 - type: Transform -- uid: 31402 - type: CableApcExtension - components: - - pos: 93.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31403 - type: CableApcExtension - components: - - pos: 93.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31404 - type: CableApcExtension - components: - - pos: 92.5,61.5 - parent: 0 - type: Transform -- uid: 31405 - type: CableApcExtension - components: - - pos: 93.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31406 - type: CableApcExtension - components: - - pos: 94.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31407 - type: CableApcExtension - components: - - pos: 94.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31408 - type: CableApcExtension - components: - - pos: 92.5,66.5 - parent: 0 - type: Transform -- uid: 31409 - type: CableApcExtension - components: - - pos: 93.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31410 - type: CableApcExtension - components: - - pos: 94.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31411 - type: CableApcExtension - components: - - pos: 94.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31412 - type: CableApcExtension - components: - - pos: 92.5,69.5 - parent: 0 - type: Transform -- uid: 31413 - type: CableApcExtension - components: - - pos: 93.5,69.5 - parent: 0 - type: Transform -- uid: 31414 - type: CableApcExtension - components: - - pos: 94.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31415 - type: CableApcExtension - components: - - pos: 94.5,68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31416 - type: CableApcExtension - components: - - pos: 94.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31417 - type: SignShipDock - components: - - pos: 93.5,57.5 - parent: 0 - type: Transform -- uid: 31418 - type: PoweredSmallLight - components: - - pos: 94.5,66.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31419 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 94.5,61.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31420 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 90.5,73.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31421 - type: ClosetEmergencyFilledRandom - components: - - pos: 92.5,73.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 31422 - type: OxygenCanister - components: - - pos: 92.5,72.5 - parent: 0 - type: Transform -- uid: 31423 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 93.5,68.5 - parent: 0 - type: Transform -- uid: 31424 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 93.5,69.5 - parent: 0 - type: Transform -- uid: 31425 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 93.5,70.5 - parent: 0 - type: Transform -- uid: 31426 - type: Table - components: - - pos: 93.5,58.5 - parent: 0 - type: Transform -- uid: 31427 - type: Table - components: - - pos: 93.5,59.5 - parent: 0 - type: Transform -- uid: 31428 - type: CableHV - components: - - pos: 73.5,54.5 - parent: 0 - type: Transform -- uid: 31429 - type: CableHV - components: - - pos: 73.5,53.5 - parent: 0 - type: Transform -- uid: 31430 - type: CableHV - components: - - pos: 73.5,52.5 - parent: 0 - type: Transform -- uid: 31431 - type: CableHV - components: - - pos: 73.5,51.5 - parent: 0 - type: Transform -- uid: 31432 - type: CableHV - components: - - pos: 73.5,50.5 - parent: 0 - type: Transform -- uid: 31433 - type: CableHV - components: - - pos: 73.5,49.5 - parent: 0 - type: Transform -- uid: 31434 - type: CableHV - components: - - pos: 73.5,48.5 - parent: 0 - type: Transform -- uid: 31435 - type: CableHV - components: - - pos: 73.5,47.5 - parent: 0 - type: Transform -- uid: 31436 - type: CableHV - components: - - pos: 72.5,47.5 - parent: 0 - type: Transform -- uid: 31437 - type: CableHV - components: - - pos: 71.5,47.5 - parent: 0 - type: Transform -- uid: 31438 - type: ComputerPowerMonitoring - components: - - pos: 70.5,48.5 - parent: 0 - type: Transform -- uid: 31439 - type: CableHV - components: - - pos: 70.5,47.5 - parent: 0 - type: Transform -- uid: 31440 - type: CableHV - components: - - pos: 70.5,48.5 - parent: 0 - type: Transform -- uid: 31441 - type: ComputerAlert - components: - - pos: 69.5,48.5 - parent: 0 - type: Transform -- uid: 31442 - type: ComputerSolarControl - components: - - pos: 68.5,48.5 - parent: 0 - type: Transform -- uid: 31443 - type: ComputerCrewMonitoring - components: - - pos: 69.5,51.5 - parent: 0 - type: Transform -- uid: 31444 - type: ComputerMedicalRecords - components: - - pos: 70.5,51.5 - parent: 0 - type: Transform -- uid: 31445 - type: filingCabinetDrawerRandom - components: - - pos: 71.5,48.5 - parent: 0 - type: Transform -- uid: 31446 - type: filingCabinetDrawerRandom - components: - - pos: 71.5,51.5 - parent: 0 - type: Transform -- uid: 31447 - type: filingCabinetDrawerRandom - components: - - pos: 71.5,54.5 - parent: 0 - type: Transform -- uid: 31448 - type: ComputerId - components: - - pos: 68.5,51.5 - parent: 0 - type: Transform -- uid: 31449 - type: ComputerCriminalRecords - components: - - pos: 68.5,54.5 - parent: 0 - type: Transform -- uid: 31450 - type: ComputerSurveillanceCameraMonitor - components: - - pos: 69.5,54.5 - parent: 0 - type: Transform -- uid: 31451 - type: ComputerRadar - components: - - pos: 70.5,54.5 - parent: 0 - type: Transform -- uid: 31452 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 69.5,50.5 - parent: 0 - type: Transform -- uid: 31453 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 69.5,47.5 - parent: 0 - type: Transform -- uid: 31454 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 69.5,53.5 - parent: 0 - type: Transform -- uid: 31455 - type: ToolboxMechanicalFilled - components: - - pos: 67.507256,48.56189 - parent: 0 - type: Transform -- uid: 31456 - type: BoxFolderYellow - components: - - pos: 67.507256,47.56189 - parent: 0 - type: Transform -- uid: 31457 - type: BoxFolderWhite - components: - - pos: 67.55413,50.546265 - parent: 0 - type: Transform -- uid: 31458 - type: BoxFolderRed - components: - - pos: 67.52288,53.53064 - parent: 0 - type: Transform -- uid: 31459 - type: MedkitAdvancedFilled - components: - - pos: 67.52077,51.494457 - parent: 0 - type: Transform -- uid: 31460 - type: CigarGold - components: - - pos: 67.52623,54.478832 - parent: 0 - type: Transform -- uid: 31461 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 74.5,48.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge South - type: SurveillanceCamera -- uid: 31462 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 73.5,58.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge North - type: SurveillanceCamera -- uid: 31463 - type: PottedPlantRandom - components: - - pos: 72.5,60.5 - parent: 0 - type: Transform -- uid: 31464 - type: PottedPlantRandom - components: - - pos: 67.5,58.5 - parent: 0 - type: Transform -- uid: 31465 - type: PottedPlantRandom - components: - - pos: 74.5,49.5 - parent: 0 - type: Transform -- uid: 31466 - type: PottedPlantRandom - components: - - pos: 74.5,42.5 - parent: 0 - type: Transform -- uid: 31467 - type: PottedPlantRandom - components: - - pos: 71.5,42.5 - parent: 0 - type: Transform -- uid: 31468 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 67.5,44.5 - parent: 0 - type: Transform -- uid: 31469 - type: WaterCooler - components: - - pos: 69.5,44.5 - parent: 0 - type: Transform -- uid: 31470 - type: TableGlass - components: - - pos: 68.5,44.5 - parent: 0 - type: Transform -- uid: 31471 - type: DrinkMugMetal - components: - - pos: 68.35971,44.462242 - parent: 0 - type: Transform -- uid: 31472 - type: DrinkMugHeart - components: - - pos: 68.625336,44.618492 - parent: 0 - type: Transform -- uid: 31473 - type: DrinkMugOne - components: - - pos: 68.375336,44.712242 - parent: 0 - type: Transform -- uid: 31474 - type: TableReinforced - components: - - pos: 74.5,54.5 - parent: 0 - type: Transform -- uid: 31475 - type: TableReinforced - components: - - pos: 74.5,53.5 - parent: 0 - type: Transform -- uid: 31476 - type: TableReinforced - components: - - pos: 74.5,52.5 - parent: 0 - type: Transform -- uid: 31477 - type: TableReinforced - components: - - pos: 74.5,51.5 - parent: 0 - type: Transform -- uid: 31478 - type: Rack - components: - - pos: 74.5,50.5 - parent: 0 - type: Transform -- uid: 31479 - type: PowerCellRecharger - components: - - pos: 74.5,51.5 - parent: 0 - type: Transform -- uid: 31480 - type: WeaponCapacitorRecharger - components: - - pos: 74.5,54.5 - parent: 0 - type: Transform -- uid: 31481 - type: FaxMachineBase - components: - - pos: 74.5,53.5 - parent: 0 - type: Transform - - name: Bridge - type: FaxMachine -- uid: 31482 - type: PaperBin5 - components: - - pos: 74.5,52.5 - parent: 0 - type: Transform -- uid: 31483 - type: ClothingBackpackSatchelLeather - components: - - pos: 74.551636,50.67245 - parent: 0 - type: Transform -- uid: 31484 - type: BlastDoorOpen - components: - - pos: 71.5,43.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 31488 - type: SignalReceiver -- uid: 31485 - type: BlastDoorOpen - components: - - pos: 72.5,43.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 31488 - type: SignalReceiver -- uid: 31486 - type: BlastDoorOpen - components: - - pos: 73.5,43.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 31488 - type: SignalReceiver -- uid: 31487 - type: BlastDoorOpen - components: - - pos: 74.5,43.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 31488 - type: SignalReceiver -- uid: 31488 - type: SignalButton - components: - - pos: 70.5,44.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 31484 - - port: Toggle - uid: 31485 - - port: Toggle - uid: 31486 - - port: Toggle - uid: 31487 - type: SignalTransmitter -- uid: 31489 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 70.5,59.5 - parent: 0 - type: Transform -- uid: 31490 - type: ToolboxEmergencyFilled - components: - - pos: 73.48685,60.60861 - parent: 0 - type: Transform -- uid: 31491 - type: BoxFolderBlue - components: - - pos: 67.5181,59.67111 - parent: 0 - type: Transform -- uid: 31492 - type: Handcuffs - components: - - pos: 67.54935,57.561733 - parent: 0 - type: Transform -- uid: 31493 - type: Flash - components: - - pos: 68.47122,57.57736 - parent: 0 - type: Transform -- uid: 31494 - type: Multitool - components: - - pos: 67.48685,60.561733 - parent: 0 - type: Transform -- uid: 31495 - type: PaperBin5 - components: - - pos: 70.5,57.5 - parent: 0 - type: Transform -- uid: 31496 - type: WindowReinforcedDirectional - components: - - pos: 59.5,49.5 - parent: 0 - type: Transform -- uid: 31497 - type: WindowReinforcedDirectional - components: - - pos: 61.5,49.5 - parent: 0 - type: Transform -- uid: 31498 - type: TableWood - components: - - pos: 57.5,44.5 - parent: 0 - type: Transform -- uid: 31499 - type: TableWood - components: - - pos: 57.5,45.5 - parent: 0 - type: Transform -- uid: 31500 - type: TableWood - components: - - pos: 61.5,45.5 - parent: 0 - type: Transform -- uid: 31501 - type: TableWood - components: - - pos: 61.5,46.5 - parent: 0 - type: Transform -- uid: 31502 - type: TableWood - components: - - pos: 61.5,47.5 - parent: 0 - type: Transform -- uid: 31503 - type: TableWood - components: - - pos: 59.5,48.5 - parent: 0 - type: Transform -- uid: 31504 - type: TableWood - components: - - pos: 61.5,56.5 - parent: 0 - type: Transform -- uid: 31505 - type: TableWood - components: - - pos: 61.5,57.5 - parent: 0 - type: Transform -- uid: 31506 - type: TableWood - components: - - pos: 61.5,58.5 - parent: 0 - type: Transform -- uid: 31507 - type: TableWood - components: - - pos: 62.5,58.5 - parent: 0 - type: Transform -- uid: 31508 - type: TableWood - components: - - pos: 63.5,58.5 - parent: 0 - type: Transform -- uid: 31509 - type: TableWood - components: - - pos: 63.5,57.5 - parent: 0 - type: Transform -- uid: 31510 - type: TableWood - components: - - pos: 63.5,56.5 - parent: 0 - type: Transform -- uid: 31511 - type: WaterCooler - components: - - pos: 63.5,53.5 - parent: 0 - type: Transform -- uid: 31512 - type: Table - components: - - pos: 58.5,58.5 - parent: 0 - type: Transform -- uid: 31513 - type: Table - components: - - pos: 58.5,59.5 - parent: 0 - type: Transform -- uid: 31514 - type: Table - components: - - pos: 58.5,60.5 - parent: 0 - type: Transform -- uid: 31515 - type: FaxMachineBase - components: - - pos: 58.5,60.5 - parent: 0 - type: Transform - - name: Bridge Conference - type: FaxMachine -- uid: 31516 - type: WeaponCapacitorRecharger - components: - - pos: 58.5,59.5 - parent: 0 - type: Transform -- uid: 31517 - type: HandLabeler - components: - - pos: 58.537926,58.612976 - parent: 0 - type: Transform -- uid: 31518 - type: Bookshelf - components: - - pos: 65.5,53.5 - parent: 0 - type: Transform -- uid: 31519 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 61.5,53.5 - parent: 0 - type: Transform -- uid: 31520 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 64.5,53.5 - parent: 0 - type: Transform -- uid: 31521 - type: TableGlass - components: - - pos: 62.5,53.5 - parent: 0 - type: Transform -- uid: 31522 - type: DrinkWaterCup - components: - - pos: 62.350426,53.58837 - parent: 0 - type: Transform -- uid: 31523 - type: DrinkWaterCup - components: - - pos: 62.506676,53.74462 - parent: 0 - type: Transform -- uid: 31524 - type: DrinkWaterCup - components: - - pos: 62.631676,53.572746 - parent: 0 - type: Transform -- uid: 31525 - type: IntercomCommand - components: - - pos: 62.5,58.5 - parent: 0 - type: Transform -- uid: 31526 - type: ComfyChair - components: - - pos: 61.5,59.5 - parent: 0 - type: Transform -- uid: 31527 - type: ComfyChair - components: - - pos: 62.5,59.5 - parent: 0 - type: Transform -- uid: 31528 - type: ComfyChair - components: - - pos: 63.5,59.5 - parent: 0 - type: Transform -- uid: 31529 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 64.5,58.5 - parent: 0 - type: Transform -- uid: 31530 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 64.5,57.5 - parent: 0 - type: Transform -- uid: 31531 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 64.5,56.5 - parent: 0 - type: Transform -- uid: 31532 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 60.5,56.5 - parent: 0 - type: Transform -- uid: 31533 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 60.5,57.5 - parent: 0 - type: Transform -- uid: 31534 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 60.5,58.5 - parent: 0 - type: Transform -- uid: 31535 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 63.5,55.5 - parent: 0 - type: Transform -- uid: 31536 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 61.5,55.5 - parent: 0 - type: Transform -- uid: 31537 - type: PaperBin5 - components: - - pos: 61.5,58.5 - parent: 0 - type: Transform -- uid: 31538 - type: PhoneInstrument - components: - - pos: 61.381676,57.322746 - parent: 0 - type: Transform -- uid: 31539 - type: FoodBoxDonut - components: - - pos: 63.496136,57.510246 - parent: 0 - type: Transform -- uid: 31540 - type: CigarGoldSpent - components: - - pos: 61.60551,56.68212 - parent: 0 - type: Transform -- uid: 31541 - type: BoxFolderBlue - components: - - pos: 63.464886,58.291496 - parent: 0 - type: Transform -- uid: 31542 - type: PottedPlantRandom - components: - - pos: 58.5,53.5 - parent: 0 - type: Transform -- uid: 31543 - type: PottedPlantRandom - components: - - pos: 65.5,60.5 - parent: 0 - type: Transform -- uid: 31544 - type: SignConference - components: - - pos: 66.5,57.5 - parent: 0 - type: Transform -- uid: 31545 - type: SignBridge - components: - - pos: 75.5,42.5 - parent: 0 - type: Transform -- uid: 31546 - type: SignDoors - components: - - pos: 70.5,42.5 - parent: 0 - type: Transform -- uid: 31547 - type: TableReinforced - components: - - pos: 58.5,43.5 - parent: 0 - type: Transform -- uid: 31548 - type: WindoorHeadOfPersonnelLocked - components: - - rot: 3.141592653589793 rad - pos: 58.5,43.5 - parent: 0 - type: Transform -- uid: 31549 - type: Windoor - components: - - pos: 58.5,43.5 - parent: 0 - type: Transform -- uid: 31550 - type: ShuttersNormalOpen - components: - - pos: 65.5,41.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 31552 - type: SignalReceiver -- uid: 31551 - type: ShuttersNormalOpen - components: - - pos: 56.5,42.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 31552 - type: SignalReceiver -- uid: 31552 - type: SignalButton - components: - - pos: 62.5,49.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 31551 - - port: Toggle - uid: 31550 - type: SignalTransmitter -- uid: 31553 - type: PosterLegitWorkForAFuture - components: - - pos: 65.5,43.5 - parent: 0 - type: Transform -- uid: 31554 - type: VendingMachineCart - components: - - flags: SessionSpecific - type: MetaData - - pos: 65.5,48.5 - parent: 0 - type: Transform -- uid: 31555 - type: Dresser - components: - - pos: 64.5,51.5 - parent: 0 - type: Transform -- uid: 31556 - type: LockerHeadOfPersonnelFilled - components: - - pos: 63.5,51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 31557 - type: Bed - components: - - pos: 65.5,50.5 - parent: 0 - type: Transform -- uid: 31558 - type: BedsheetHOP - components: - - pos: 65.5,50.5 - parent: 0 - type: Transform -- uid: 31559 - type: TableWood - components: - - pos: 65.5,51.5 - parent: 0 - type: Transform -- uid: 31560 - type: LampGold - components: - - pos: 65.38527,51.90269 - parent: 0 - type: Transform -- uid: 31561 - type: WallmountTelescreen - components: - - rot: 3.141592653589793 rad - pos: 64.5,49.5 - parent: 0 - type: Transform -- uid: 31562 - type: DisposalUnit - components: - - pos: 54.5,43.5 - parent: 0 - type: Transform -- uid: 31563 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 54.5,39.5 - parent: 0 - type: Transform -- uid: 31564 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 54.5,40.5 - parent: 0 - type: Transform -- uid: 31565 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 54.5,41.5 - parent: 0 - type: Transform -- uid: 31566 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 54.5,42.5 - parent: 0 - type: Transform -- uid: 31567 - type: DisposalTrunk - components: - - pos: 54.5,43.5 - parent: 0 - type: Transform -- uid: 31569 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 51.5,40.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EVA Storage - type: SurveillanceCamera -- uid: 31570 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 62.5,48.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP Office - type: SurveillanceCamera -- uid: 31571 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 65.5,57.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference Room - type: SurveillanceCamera -- uid: 31572 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 90.5,65.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Command Dock - type: SurveillanceCamera -- uid: 31573 - type: FirelockEdge - components: - - pos: 90.5,58.5 - parent: 0 - type: Transform -- uid: 31574 - type: FirelockEdge - components: - - pos: 91.5,58.5 - parent: 0 - type: Transform -- uid: 31575 - type: FirelockEdge - components: - - pos: 92.5,58.5 - parent: 0 - type: Transform -- uid: 31576 - type: TableReinforced - components: - - pos: 78.5,57.5 - parent: 0 - type: Transform -- uid: 31577 - type: TableReinforced - components: - - pos: 79.5,57.5 - parent: 0 - type: Transform -- uid: 31578 - type: TableReinforced - components: - - pos: 80.5,57.5 - parent: 0 - type: Transform -- uid: 31579 - type: TableReinforced - components: - - pos: 81.5,57.5 - parent: 0 - type: Transform -- uid: 31580 - type: ComputerResearchAndDevelopment - components: - - pos: 77.5,57.5 - parent: 0 - type: Transform -- uid: 31581 - type: ComputerAnalysisConsole - components: - - pos: 76.5,57.5 - parent: 0 - type: Transform -- uid: 31582 - type: ComputerCargoOrders - components: - - pos: 82.5,57.5 - parent: 0 - type: Transform -- uid: 31583 - type: PottedPlantBioluminscent - components: - - pos: 84.5,57.5 - parent: 0 - type: Transform -- uid: 31584 - type: Wrench - components: - - pos: 80.55667,57.55615 - parent: 0 - type: Transform -- uid: 31585 - type: RemoteSignaller - components: - - pos: 81.384796,57.5874 - parent: 0 - type: Transform -- uid: 31586 - type: BaseComputer - components: - - pos: 83.5,57.5 - parent: 0 - type: Transform -- uid: 31587 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 82.5,56.5 - parent: 0 - type: Transform -- uid: 31588 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 77.5,56.5 - parent: 0 - type: Transform -- uid: 31589 - type: WallmountTelescreen - components: - - pos: 78.5,58.5 - parent: 0 - type: Transform -- uid: 31590 - type: PosterLegitNanotrasenLogo - components: - - pos: 84.5,54.5 - parent: 0 - type: Transform -- uid: 31591 - type: PosterLegitLoveIan - components: - - pos: 63.5,49.5 - parent: 0 - type: Transform -- uid: 31592 - type: PosterLegitDoNotQuestion - components: - - pos: 53.5,16.5 - parent: 0 - type: Transform -- uid: 31593 - type: PosterLegitGetYourLEGS - components: - - pos: 63.5,-6.5 - parent: 0 - type: Transform -- uid: 31594 - type: PosterLegitHereForYourSafety - components: - - pos: 18.5,0.5 - parent: 0 - type: Transform -- uid: 31595 - type: PosterLegitHighClassMartini - components: - - pos: -12.5,23.5 - parent: 0 - type: Transform -- uid: 31596 - type: PosterContrabandGreyTide - components: - - pos: 7.5,21.5 - parent: 0 - type: Transform -- uid: 31597 - type: PosterContrabandHighEffectEngineering - components: - - pos: 81.5,2.5 - parent: 0 - type: Transform -- uid: 31598 - type: PosterLegitIan - components: - - pos: 58.5,50.5 - parent: 0 - type: Transform -- uid: 31599 - type: PosterLegitIonRifle - components: - - pos: 16.5,16.5 - parent: 0 - type: Transform -- uid: 31600 - type: PosterContrabandRevolver - components: - - pos: 18.5,16.5 - parent: 0 - type: Transform -- uid: 31601 - type: TableCarpet - components: - - pos: 29.5,-7.5 - parent: 0 - type: Transform -- uid: 31602 - type: PosterContrabandVoteWeh - components: - - pos: 33.5,26.5 - parent: 0 - type: Transform -- uid: 31603 - type: PosterLegitWalk - components: - - pos: 51.5,35.5 - parent: 0 - type: Transform -- uid: 31604 - type: filingCabinetDrawerRandom - components: - - pos: 59.5,45.5 - parent: 0 - type: Transform -- uid: 31605 - type: ComputerId - components: - - rot: -1.5707963267948966 rad - pos: 59.5,44.5 - parent: 0 - type: Transform -- uid: 31606 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: 57.5,46.5 - parent: 0 - type: Transform -- uid: 31607 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 57.5,47.5 - parent: 0 - type: Transform -- uid: 31608 - type: FaxMachineBase - components: - - pos: 57.5,47.5 - parent: 0 - type: Transform - - name: HoP Office - type: FaxMachine -- uid: 31609 - type: DogBed - components: - - pos: 64.5,44.5 - parent: 0 - type: Transform -- uid: 31610 - type: SpawnMobCorgi - components: - - pos: 64.5,46.5 - parent: 0 - type: Transform -- uid: 31611 - type: TableWood - components: - - pos: 65.5,44.5 - parent: 0 - type: Transform -- uid: 31612 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 60.5,46.5 - parent: 0 - type: Transform -- uid: 31613 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 62.5,46.5 - parent: 0 - type: Transform -- uid: 31614 - type: WeaponCapacitorRecharger - components: - - pos: 61.5,45.5 - parent: 0 - type: Transform -- uid: 31615 - type: BoxFolderBlue - components: - - pos: 61.37949,46.65781 - parent: 0 - type: Transform -- uid: 31616 - type: BoxFolderRed - components: - - pos: 61.47324,46.579685 - parent: 0 - type: Transform -- uid: 31617 - type: BoxFolderYellow - components: - - pos: 61.59824,46.454685 - parent: 0 - type: Transform -- uid: 31618 - type: PaperBin5 - components: - - pos: 61.5,47.5 - parent: 0 - type: Transform -- uid: 31619 - type: UniformPrinter - components: - - pos: 64.5,48.5 - parent: 0 - type: Transform -- uid: 31620 - type: MaterialDurathread - components: - - pos: 59.457615,48.59531 - parent: 0 - type: Transform -- uid: 31621 - type: MaterialCloth - components: - - pos: 65.504486,44.56406 - parent: 0 - type: Transform -- uid: 31622 - type: PaperBin5 - components: - - pos: 57.5,44.5 - parent: 0 - type: Transform -- uid: 31623 - type: BriefcaseBrown - components: - - pos: 59.47324,51.641235 - parent: 0 - type: Transform -- uid: 31624 - type: TableCarpet - components: - - pos: 59.5,51.5 - parent: 0 - type: Transform -- uid: 31625 - type: filingCabinetRandom - components: - - pos: 59.5,50.5 - parent: 0 - type: Transform -- uid: 31626 - type: ComputerCargoOrders - components: - - rot: 1.5707963267948966 rad - pos: 59.5,49.5 - parent: 0 - type: Transform -- uid: 31627 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 60.5,50.5 - parent: 0 - type: Transform -- uid: 31628 - type: IntercomCommand - components: - - pos: 62.5,51.5 - parent: 0 - type: Transform -- uid: 31629 - type: ChairOfficeDark - components: - - pos: 58.5,44.5 - parent: 0 - type: Transform -- uid: 31630 - type: SpawnPointHeadOfPersonnel - components: - - pos: 64.5,50.5 - parent: 0 - type: Transform -- uid: 31631 - type: WarpPoint - components: - - pos: 72.5,55.5 - parent: 0 - type: Transform - - location: Bridge - type: WarpPoint -- uid: 31632 - type: WarpPoint - components: - - pos: 89.5,48.5 - parent: 0 - type: Transform - - location: Vault - type: WarpPoint -- uid: 31633 - type: WarpPoint - components: - - pos: 59.5,30.5 - parent: 0 - type: Transform - - location: Court - type: WarpPoint -- uid: 31634 - type: WarpPoint - components: - - pos: 46.5,21.5 - parent: 0 - type: Transform - - location: Perma - type: WarpPoint -- uid: 31635 - type: WarpPoint - components: - - pos: 24.5,6.5 - parent: 0 - type: Transform - - location: Security - type: WarpPoint -- uid: 31636 - type: WarpPoint - components: - - pos: 18.5,44.5 - parent: 0 - type: Transform - - location: Medbay - type: WarpPoint -- uid: 31637 - type: WarpPoint - components: - - pos: 6.5,-11.5 - parent: 0 - type: Transform - - location: Cargo - type: WarpPoint -- uid: 31638 - type: WarpPoint - components: - - pos: 44.5,-16.5 - parent: 0 - type: Transform - - location: Sci - type: WarpPoint -- uid: 31639 - type: WarpPoint - components: - - pos: 67.5,-10.5 - parent: 0 - type: Transform - - location: Engi - type: WarpPoint -- uid: 31640 - type: WarpPoint - components: - - pos: -38.5,-53.5 - parent: 0 - type: Transform - - location: Rock Dock - type: WarpPoint -- uid: 31641 - type: AirlockMaintGlassLocked - components: - - pos: -35.5,62.5 - parent: 0 - type: Transform -- uid: 31642 - type: Bed - components: - - pos: -39.5,61.5 - parent: 0 - type: Transform -- uid: 31643 - type: Bed - components: - - pos: -37.5,61.5 - parent: 0 - type: Transform -- uid: 31644 - type: BedsheetSpawner - components: - - pos: -39.5,61.5 - parent: 0 - type: Transform -- uid: 31645 - type: BedsheetSpawner - components: - - pos: -37.5,61.5 - parent: 0 - type: Transform -- uid: 31646 - type: Table - components: - - pos: -36.5,61.5 - parent: 0 - type: Transform -- uid: 31647 - type: Barricade - components: - - pos: -36.5,62.5 - parent: 0 - type: Transform -- uid: 31648 - type: MachineFrame - components: - - pos: -37.5,64.5 - parent: 0 - type: Transform -- uid: 31649 - type: LockerMedicineFilled - components: - - pos: -39.5,64.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 31650 - type: ClothingNeckStethoscope - components: - - pos: -36.494015,61.50336 - parent: 0 - type: Transform -- uid: 31651 - type: ClothingHeadNurseHat - components: - - pos: -36.38464,63.44086 - parent: 0 - type: Transform -- uid: 31652 - type: CheapRollerBedSpawnFolded - components: - - pos: -36.57214,64.58148 - parent: 0 - type: Transform -- uid: 31653 - type: DrinkAleBottleFull - components: - - rot: 1.5707963267948966 rad - pos: -40.1168,62.05758 - parent: 0 - type: Transform -- uid: 31654 - type: MaterialCloth1 - components: - - pos: -39.42424,63.432648 - parent: 0 - type: Transform -- uid: 31655 - type: PuddleVomit - components: - - pos: -39.5,62.5 - parent: 0 - type: Transform -- uid: 31656 - type: RandomSpawner - components: - - pos: -37.5,63.5 - parent: 0 - type: Transform -- uid: 31657 - type: SoapDeluxe - components: - - pos: -37.462765,62.393986 - parent: 0 - type: Transform -- uid: 31658 - type: SinkWide - components: - - pos: -38.5,64.5 - parent: 0 - type: Transform -- uid: 31659 - type: NitrousOxideTankFilled - components: - - pos: -40.35339,61.37836 - parent: 0 - type: Transform -- uid: 31660 - type: ClothingMaskBreathMedical - components: - - pos: -40.619015,61.518986 - parent: 0 - type: Transform -- uid: 31661 - type: PuddleSmear - components: - - pos: -38.5,62.5 - parent: 0 - type: Transform - - solutions: - puddle: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 1000 - reagents: - - Quantity: 50 - ReagentId: Ale - type: SolutionContainerManager -- uid: 31662 - type: ClosetMaintenanceFilledRandom - components: - - pos: -35.5,69.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 31663 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: -35.5,70.5 - parent: 0 - type: Transform -- uid: 31664 - type: MaintenanceFluffSpawner - components: - - pos: -35.5,70.5 - parent: 0 - type: Transform -- uid: 31665 - type: RandomSpawner - components: - - pos: -25.5,68.5 - parent: 0 - type: Transform -- uid: 31666 - type: RandomSpawner - components: - - pos: -32.5,64.5 - parent: 0 - type: Transform -- uid: 31667 - type: Girder - components: - - pos: -24.5,66.5 - parent: 0 - type: Transform -- uid: 31668 - type: Girder - components: - - pos: -26.5,69.5 - parent: 0 - type: Transform -- uid: 31669 - type: ClosetMaintenanceFilledRandom - components: - - pos: -26.5,70.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 31670 - type: WeldingFuelTankFull - components: - - pos: -26.5,74.5 - parent: 0 - type: Transform -- uid: 31671 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -23.5,74.5 - parent: 0 - type: Transform -- uid: 31672 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -24.5,73.5 - parent: 0 - type: Transform -- uid: 31673 - type: Table - components: - - pos: -24.5,74.5 - parent: 0 - type: Transform -- uid: 31674 - type: RandomFoodSingle - components: - - pos: -24.5,74.5 - parent: 0 - type: Transform -- uid: 31675 - type: Airlock - components: - - pos: -30.5,66.5 - parent: 0 - type: Transform -- uid: 31676 - type: Airlock - components: - - pos: -33.5,69.5 - parent: 0 - type: Transform -- uid: 31677 - type: PoweredSmallLight - components: - - pos: -28.5,65.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31678 - type: Rack - components: - - pos: -28.5,72.5 - parent: 0 - type: Transform -- uid: 31679 - type: Welder - components: - - pos: -28.480883,72.62065 - parent: 0 - type: Transform -- uid: 31680 - type: ClothingShoesBootsSalvage - components: - - pos: -24.502268,67.30815 - parent: 0 - type: Transform -- uid: 31681 - type: OperatingTable - components: - - pos: -38.5,63.5 - parent: 0 - type: Transform -- uid: 31682 - type: ScalpelLaser - components: - - pos: -38.14877,63.825123 - parent: 0 - type: Transform -- uid: 31683 - type: Lamp - components: - - pos: -30.364374,69.61503 - parent: 0 - type: Transform -- uid: 31684 - type: TableWood - components: - - pos: -28.5,68.5 - parent: 0 - type: Transform -- uid: 31685 - type: TableWood - components: - - pos: -29.5,68.5 - parent: 0 - type: Transform -- uid: 31686 - type: TableWood - components: - - pos: -30.5,68.5 - parent: 0 - type: Transform -- uid: 31687 - type: TableWood - components: - - pos: -30.5,69.5 - parent: 0 - type: Transform -- uid: 31688 - type: ClosetBase - components: - - pos: -28.5,70.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 31689 - type: ContainerContainer -- uid: 31689 - type: SheetPlasma - components: - - flags: InContainer - type: MetaData - - parent: 31688 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 31690 - type: ClothingNeckTieRed - components: - - pos: -29.523962,68.53419 - parent: 0 - type: Transform -- uid: 31691 - type: ChairWood - components: - - pos: -29.5,69.5 - parent: 0 - type: Transform -- uid: 31692 - type: ClothingHeadHatFedoraBrown - components: - - pos: -30.458124,68.65072 - parent: 0 - type: Transform -- uid: 31693 - type: ClothingShoeSlippersDuck - components: - - pos: -29.364374,67.35384 - parent: 0 - type: Transform -- uid: 31694 - type: ClothingOuterCoatInspector - components: - - pos: -28.586462,68.64356 - parent: 0 - type: Transform -- uid: 31695 - type: DrinkDetFlask - components: - - pos: -30.555212,69.75294 - parent: 0 - type: Transform -- uid: 31696 - type: Rack - components: - - pos: -32.5,70.5 - parent: 0 - type: Transform -- uid: 31697 - type: MaintenanceWeaponSpawner - components: - - pos: -32.5,70.5 - parent: 0 - type: Transform -- uid: 31698 - type: PosterLegitDickGumshue - components: - - pos: -29.5,66.5 - parent: 0 - type: Transform -- uid: 31699 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,68.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31700 - type: DrinkWhiskeyBottleFull - components: - - pos: -30.352087,69.87794 - parent: 0 - type: Transform -- uid: 31701 - type: ClothingUniformJumpskirtDetective - components: - - pos: -28.711462,68.76856 - parent: 0 - type: Transform -- uid: 31702 - type: ClothingUniformJumpsuitDetective - components: - - pos: -28.680212,68.75294 - parent: 0 - type: Transform -- uid: 31703 - type: ClothingEyesEyepatch - components: - - pos: 91.510735,50.964035 - parent: 0 - type: Transform -- uid: 31704 - type: Window - components: - - pos: 9.5,21.5 - parent: 0 - type: Transform -- uid: 31705 - type: Window - components: - - pos: 11.5,19.5 - parent: 0 - type: Transform -- uid: 31706 - type: Grille - components: - - pos: 11.5,19.5 - parent: 0 - type: Transform -- uid: 31707 - type: Grille - components: - - pos: 9.5,21.5 - parent: 0 - type: Transform -- uid: 31708 - type: Barricade - components: - - pos: 9.5,17.5 - parent: 0 - type: Transform -- uid: 31709 - type: Bed - components: - - pos: 10.5,18.5 - parent: 0 - type: Transform -- uid: 31710 - type: Bed - components: - - pos: 10.5,20.5 - parent: 0 - type: Transform -- uid: 31711 - type: BedsheetSpawner - components: - - pos: 10.5,18.5 - parent: 0 - type: Transform -- uid: 31712 - type: BedsheetSpawner - components: - - pos: 10.5,20.5 - parent: 0 - type: Transform -- uid: 31713 - type: Dresser - components: - - pos: 8.5,20.5 - parent: 0 - type: Transform -- uid: 31714 - type: TableCarpet - components: - - pos: 10.5,19.5 - parent: 0 - type: Transform -- uid: 31715 - type: PlushieLamp - components: - - pos: 10.520601,19.828375 - parent: 0 - type: Transform -- uid: 31716 - type: CarpetBlack - components: - - pos: 9.5,19.5 - parent: 0 - type: Transform -- uid: 31717 - type: ClosetMaintenanceFilledRandom - components: - - pos: 8.5,18.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 31718 - type: ClosetFireFilled - components: - - pos: 11.5,11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 31719 - type: Girder - components: - - pos: 10.5,8.5 - parent: 0 - type: Transform -- uid: 31720 - type: Girder - components: - - pos: 8.5,7.5 - parent: 0 - type: Transform -- uid: 31721 - type: GrilleBroken - components: - - pos: 7.5,8.5 - parent: 0 - type: Transform -- uid: 31722 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 8.5,14.5 - parent: 0 - type: Transform -- uid: 31723 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 8.5,14.5 - parent: 0 - type: Transform -- uid: 31724 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 10.5,14.5 - parent: 0 - type: Transform -- uid: 31725 - type: Rack - components: - - pos: 7.5,8.5 - parent: 0 - type: Transform -- uid: 31726 - type: CrateFilledSpawner - components: - - pos: 7.5,9.5 - parent: 0 - type: Transform -- uid: 31727 - type: Catwalk - components: - - pos: 8.5,10.5 - parent: 0 - type: Transform -- uid: 31728 - type: Catwalk - components: - - pos: 7.5,10.5 - parent: 0 - type: Transform -- uid: 31729 - type: RandomSpawner - components: - - pos: 10.5,12.5 - parent: 0 - type: Transform -- uid: 31730 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31731 - type: ClothingEyesGlassesBeer - components: - - pos: 17.531033,5.1811686 - parent: 0 - type: Transform -- uid: 31732 - type: ClothingEyesGlassesThermal - components: - - pos: 65.539406,-14.949457 - parent: 0 - type: Transform -- uid: 31733 - type: ClothingEyesGlassesThermal - components: - - pos: 70.49054,-5.808993 - parent: 0 - type: Transform -- uid: 31734 - type: ClothingEyesGlassesThermal - components: - - pos: 70.47884,-26.373547 - parent: 0 - type: Transform -- uid: 31735 - type: ClothingEyesGlassesThermal - components: - - pos: 70.57259,-26.498547 - parent: 0 - type: Transform -- uid: 31736 - type: GrilleBroken - components: - - pos: 17.5,30.5 - parent: 0 - type: Transform -- uid: 31737 - type: ClosetMaintenanceFilledRandom - components: - - pos: 17.5,30.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 31738 - type: Girder - components: - - pos: 20.5,28.5 - parent: 0 - type: Transform -- uid: 31739 - type: CrateEmergencyO2Kit - components: - - pos: 21.5,28.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 31740 - type: ClosetFireFilled - components: - - pos: 21.5,30.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 31741 - type: PoweredSmallLight - components: - - pos: 20.5,30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31742 - type: Girder - components: - - pos: 13.5,28.5 - parent: 0 - type: Transform -- uid: 31743 - type: ClosetEmergencyFilledRandom - components: - - pos: 10.5,30.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 31744 - type: BaseBigBox - components: - - pos: 8.478264,30.481892 - parent: 0 - type: Transform -- uid: 31745 - type: Table - components: - - pos: 9.5,25.5 - parent: 0 - type: Transform -- uid: 31746 - type: Table - components: - - pos: 9.5,26.5 - parent: 0 - type: Transform -- uid: 31747 - type: Rack - components: - - pos: 10.5,25.5 - parent: 0 - type: Transform -- uid: 31748 - type: GrilleBroken - components: - - pos: 10.5,25.5 - parent: 0 - type: Transform -- uid: 31749 - type: ClothingHandsGlovesColorBlue - components: - - pos: 9.462639,26.481892 - parent: 0 - type: Transform -- uid: 31750 - type: ToolboxMechanicalFilled - components: - - pos: 9.462639,25.591267 - parent: 0 - type: Transform -- uid: 31751 - type: CrowbarRed - components: - - pos: 10.556389,25.419392 - parent: 0 - type: Transform -- uid: 31752 - type: IngotSilver1 - components: - - pos: 10.353264,25.591267 - parent: 0 - type: Transform -- uid: 31753 - type: IngotSilver1 - components: - - pos: 10.353264,25.591267 - parent: 0 - type: Transform -- uid: 31754 - type: IngotSilver1 - components: - - pos: 10.353264,25.591267 - parent: 0 - type: Transform -- uid: 31755 - type: CrateEmptySpawner - components: - - pos: 9.5,27.5 - parent: 0 - type: Transform -- uid: 31756 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 13.5,23.5 - parent: 0 - type: Transform -- uid: 31757 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 13.5,20.5 - parent: 0 - type: Transform -- uid: 31758 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 13.5,17.5 - parent: 0 - type: Transform -- uid: 31759 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 15.5,17.5 - parent: 0 - type: Transform -- uid: 31760 - type: NitrogenCanister - components: - - pos: 12.5,15.5 - parent: 0 - type: Transform -- uid: 31761 - type: ClothingOuterVestHazard - components: - - pos: 11.457507,9.538525 - parent: 0 - type: Transform -- uid: 31762 - type: Girder - components: - - pos: 31.5,-12.5 - parent: 0 - type: Transform -- uid: 31763 - type: Rack - components: - - pos: -10.5,-28.5 - parent: 0 - type: Transform -- uid: 31764 - type: TableCarpet - components: - - pos: -8.5,-29.5 - parent: 0 - type: Transform -- uid: 31765 - type: MaintenanceFluffSpawner - components: - - pos: -10.5,-28.5 - parent: 0 - type: Transform -- uid: 31766 - type: TableCarpet - components: - - pos: -7.5,-29.5 - parent: 0 - type: Transform -- uid: 31767 - type: VendingMachineChefDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,29.5 - parent: 0 - type: Transform -- uid: 31768 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,-27.5 - parent: 0 - type: Transform -- uid: 31769 - type: TableCarpet - components: - - pos: -7.5,-28.5 - parent: 0 - type: Transform -- uid: 31770 - type: DrinkVodkaBottleFull - components: - - rot: -1.5707963267948966 rad - pos: -7.5374193,-29.470884 - parent: 0 - type: Transform -- uid: 31771 - type: DrinkVodkaBottleFull - components: - - rot: -1.5707963267948966 rad - pos: -7.4905443,-29.33026 - parent: 0 - type: Transform -- uid: 31772 - type: DrinkVodkaBottleFull - components: - - rot: -1.5707963267948966 rad - pos: -7.5686693,-29.26776 - parent: 0 - type: Transform -- uid: 31773 - type: ClothingHeadHatUshanka - components: - - pos: -8.347151,-29.514557 - parent: 0 - type: Transform -- uid: 31774 - type: TargetClown - components: - - pos: -10.5,-27.5 - parent: 0 - type: Transform -- uid: 31775 - type: FoodMeatClown - components: - - pos: -7.503401,-28.467682 - parent: 0 - type: Transform -- uid: 31776 - type: RandomSpawner - components: - - pos: -8.5,-27.5 - parent: 0 - type: Transform -- uid: 31777 - type: Gyroscope - components: - - pos: -36.5,-43.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 31778 - type: ClosetToolFilled - components: - - pos: -44.5,-3.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 31779 - type: ClosetToolFilled - components: - - pos: -44.5,-2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 31780 - type: SignElectricalMed - components: - - pos: -43.5,2.5 - parent: 0 - type: Transform -- uid: 31781 - type: Table - components: - - pos: -46.5,-1.5 - parent: 0 - type: Transform -- uid: 31782 - type: Rack - components: - - pos: -44.5,-1.5 - parent: 0 - type: Transform -- uid: 31783 - type: Rack - components: - - pos: -46.5,-2.5 - parent: 0 - type: Transform -- uid: 31784 - type: NitrogenCanister - components: - - pos: -46.5,-3.5 - parent: 0 - type: Transform -- uid: 31785 - type: Pickaxe - components: - - pos: -44.54539,-1.4730512 - parent: 0 - type: Transform -- uid: 31786 - type: Shovel - components: - - pos: -44.54539,-1.6449262 - parent: 0 - type: Transform -- uid: 31787 - type: ToolboxEmergencyFilled - components: - - pos: -46.48289,-2.285551 - parent: 0 - type: Transform -- uid: 31788 - type: Wrench - components: - - pos: -46.404766,-1.4146414 - parent: 0 - type: Transform -- uid: 31789 - type: ComputerSolarControl - components: - - rot: 1.5707963267948966 rad - pos: -46.5,0.5 - parent: 0 - type: Transform -- uid: 31790 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-2.5 - parent: 0 - type: Transform -- uid: 31791 - type: LockerElectricalSuppliesFilled - components: - - pos: -39.5,-0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 31792 - type: Table - components: - - pos: -37.5,-2.5 - parent: 0 - type: Transform -- uid: 31793 - type: Rack - components: - - pos: -37.5,-0.5 - parent: 0 - type: Transform -- uid: 31794 - type: CableApcStack - components: - - pos: -37.63204,-0.35214144 - parent: 0 - type: Transform -- uid: 31795 - type: PoweredSmallLight - components: - - pos: -38.5,-0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31796 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -45.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31797 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31798 - type: PoweredSmallLight - components: - - pos: -44.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31799 - type: PoweredSmallLight - components: - - pos: -40.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 31800 - type: ClosetEmergencyFilledRandom - components: - - pos: -39.5,3.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 31801 - type: RandomSpawner - components: - - pos: -37.5,1.5 - parent: 0 - type: Transform -- uid: 31802 - type: Catwalk - components: - - pos: -42.5,1.5 - parent: 0 - type: Transform -- uid: 31803 - type: Catwalk - components: - - pos: -41.5,1.5 - parent: 0 - type: Transform -- uid: 31804 - type: Catwalk - components: - - pos: -40.5,1.5 - parent: 0 - type: Transform -- uid: 31805 - type: Catwalk - components: - - pos: -39.5,1.5 - parent: 0 - type: Transform -- uid: 31806 - type: Catwalk - components: - - pos: -38.5,1.5 - parent: 0 - type: Transform -- uid: 31807 - type: Catwalk - components: - - pos: -37.5,1.5 - parent: 0 - type: Transform -- uid: 31808 - type: Catwalk - components: - - pos: -36.5,1.5 - parent: 0 - type: Transform -- uid: 31809 - type: Catwalk - components: - - pos: -35.5,1.5 - parent: 0 - type: Transform -- uid: 31810 - type: Catwalk - components: - - pos: -35.5,0.5 - parent: 0 - type: Transform -- uid: 31811 - type: Catwalk - components: - - pos: -35.5,-0.5 - parent: 0 - type: Transform -- uid: 31812 - type: Catwalk - components: - - pos: -35.5,-1.5 - parent: 0 - type: Transform -- uid: 31813 - type: Catwalk - components: - - pos: -35.5,-2.5 - parent: 0 - type: Transform -- uid: 31814 - type: Table - components: - - pos: -42.5,2.5 - parent: 0 - type: Transform -- uid: 31815 - type: Rack - components: - - pos: -41.5,2.5 - parent: 0 - type: Transform -- uid: 31816 - type: Rack - components: - - pos: -42.5,-0.5 - parent: 0 - type: Transform -- uid: 31817 - type: MaintenanceToolSpawner - components: - - pos: -42.5,-0.5 - parent: 0 - type: Transform -- uid: 31818 - type: MaintenanceFluffSpawner - components: - - pos: -41.5,2.5 - parent: 0 - type: Transform -- uid: 31819 - type: Girder - components: - - pos: -36.5,2.5 - parent: 0 - type: Transform -- uid: 31820 - type: GrilleBroken - components: - - pos: -36.5,3.5 - parent: 0 - type: Transform -- uid: 31821 - type: WallSolidRust - components: - - pos: -33.5,-1.5 - parent: 0 - type: Transform -- uid: 31822 - type: WallSolid - components: - - pos: -32.5,-1.5 - parent: 0 - type: Transform -- uid: 31823 - type: WallSolid - components: - - pos: -31.5,-1.5 - parent: 0 - type: Transform -- uid: 31824 - type: WallSolid - components: - - pos: -30.5,-1.5 - parent: 0 - type: Transform -- uid: 31825 - type: WallSolid - components: - - pos: -29.5,-1.5 - parent: 0 - type: Transform -- uid: 31826 - type: WallSolid - components: - - pos: -28.5,-1.5 - parent: 0 - type: Transform -- uid: 31827 - type: WallSolidRust - components: - - pos: -27.5,-1.5 - parent: 0 - type: Transform -- uid: 31828 - type: WallSolid - components: - - pos: -26.5,-1.5 - parent: 0 - type: Transform -- uid: 31829 - type: TintedWindow - components: - - pos: -28.5,9.5 - parent: 0 - type: Transform -- uid: 31830 - type: TintedWindow - components: - - pos: -27.5,9.5 - parent: 0 - type: Transform -- uid: 31831 - type: TintedWindow - components: - - pos: -26.5,1.5 - parent: 0 - type: Transform -- uid: 31832 - type: WallSolid - components: - - pos: -26.5,2.5 - parent: 0 - type: Transform -- uid: 31833 - type: WallSolid - components: - - pos: -26.5,3.5 - parent: 0 - type: Transform -- uid: 31834 - type: WallSolid - components: - - pos: -26.5,4.5 - parent: 0 - type: Transform -- uid: 31835 - type: WallSolid - components: - - pos: -26.5,5.5 - parent: 0 - type: Transform -- uid: 31836 - type: WallSolidRust - components: - - pos: -33.5,9.5 - parent: 0 - type: Transform -- uid: 31837 - type: WallSolid - components: - - pos: -26.5,7.5 - parent: 0 - type: Transform -- uid: 31838 - type: WallSolid - components: - - pos: -26.5,8.5 - parent: 0 - type: Transform -- uid: 31839 - type: WallSolid - components: - - pos: -30.5,10.5 - parent: 0 - type: Transform -- uid: 31840 - type: WallSolid - components: - - pos: -29.5,10.5 - parent: 0 - type: Transform -- uid: 31841 - type: WallSolid - components: - - pos: -29.5,9.5 - parent: 0 - type: Transform -- uid: 31842 - type: TintedWindow - components: - - pos: -26.5,0.5 - parent: 0 - type: Transform -- uid: 31843 - type: TintedWindow - components: - - pos: -26.5,-0.5 - parent: 0 - type: Transform -- uid: 31844 - type: WallSolid - components: - - pos: -26.5,9.5 - parent: 0 - type: Transform -- uid: 31845 - type: WallSolid - components: - - pos: -33.5,8.5 - parent: 0 - type: Transform -- uid: 31846 - type: WallSolid - components: - - pos: -33.5,7.5 - parent: 0 - type: Transform -- uid: 31847 - type: WallSolid - components: - - pos: -33.5,6.5 - parent: 0 - type: Transform -- uid: 31848 - type: WallSolid - components: - - pos: -33.5,5.5 - parent: 0 - type: Transform -- uid: 31849 - type: TintedWindow - components: - - pos: -33.5,2.5 - parent: 0 - type: Transform -- uid: 31850 - type: AirlockMaintGlassLocked - components: - - pos: -33.5,3.5 - parent: 0 - type: Transform -- uid: 31851 - type: TintedWindow - components: - - pos: -33.5,4.5 - parent: 0 - type: Transform -- uid: 31852 - type: WallSolid - components: - - pos: -33.5,1.5 - parent: 0 - type: Transform -- uid: 31853 - type: WallSolidRust - components: - - pos: -33.5,0.5 - parent: 0 - type: Transform -- uid: 31854 - type: WallSolid - components: - - pos: -33.5,-0.5 - parent: 0 - type: Transform -- uid: 31855 - type: WallSolid - components: - - pos: -32.5,10.5 - parent: 0 - type: Transform -- uid: 31856 - type: WallSolidRust - components: - - pos: -33.5,11.5 - parent: 0 - type: Transform -- uid: 31857 - type: WallSolidRust - components: - - pos: -33.5,10.5 - parent: 0 - type: Transform -- uid: 31858 - type: Grille - components: - - pos: -28.5,9.5 - parent: 0 - type: Transform -- uid: 31859 - type: Grille - components: - - pos: -27.5,9.5 - parent: 0 - type: Transform -- uid: 31860 - type: Grille - components: - - pos: -26.5,-0.5 - parent: 0 - type: Transform -- uid: 31861 - type: Grille - components: - - pos: -26.5,0.5 - parent: 0 - type: Transform -- uid: 31862 - type: Grille - components: - - pos: -26.5,1.5 - parent: 0 - type: Transform -- uid: 31863 - type: Grille - components: - - pos: -33.5,2.5 - parent: 0 - type: Transform -- uid: 31864 - type: Grille - components: - - pos: -33.5,4.5 - parent: 0 - type: Transform -- uid: 31865 - type: AirlockMaintGlassLocked - components: - - pos: -31.5,10.5 - parent: 0 - type: Transform -- uid: 31866 - type: Barricade - components: - - pos: -31.5,10.5 - parent: 0 - type: Transform -- uid: 31867 - type: Grille - components: - - pos: -32.5,11.5 - parent: 0 - type: Transform -- uid: 31868 - type: Grille - components: - - pos: -31.5,11.5 - parent: 0 - type: Transform -- uid: 31869 - type: Grille - components: - - pos: -30.5,11.5 - parent: 0 - type: Transform -- uid: 31870 - type: Barricade - components: - - pos: -33.5,3.5 - parent: 0 - type: Transform -- uid: 31871 - type: WallSolid - components: - - pos: -29.5,11.5 - parent: 0 - type: Transform -- uid: 31872 - type: WallSolidRust - components: - - pos: -26.5,6.5 - parent: 0 - type: Transform -- uid: 31873 - type: TableReinforced - components: - - pos: -28.5,8.5 - parent: 0 - type: Transform -- uid: 31874 - type: TableReinforced - components: - - pos: -27.5,8.5 - parent: 0 - type: Transform -- uid: 31875 - type: TableReinforced - components: - - pos: -27.5,7.5 - parent: 0 - type: Transform -- uid: 31876 - type: TableReinforced - components: - - pos: -28.5,-0.5 - parent: 0 - type: Transform -- uid: 31877 - type: TableReinforced - components: - - pos: -29.5,-0.5 - parent: 0 - type: Transform -- uid: 31878 - type: TableReinforced - components: - - pos: -30.5,-0.5 - parent: 0 - type: Transform -- uid: 31879 - type: TableReinforced - components: - - pos: -31.5,-0.5 - parent: 0 - type: Transform -- uid: 31880 - type: TableReinforced - components: - - pos: -27.5,1.5 - parent: 0 - type: Transform -- uid: 31881 - type: TableReinforced - components: - - pos: -27.5,2.5 - parent: 0 - type: Transform -- uid: 31882 - type: TableReinforced - components: - - pos: -27.5,3.5 - parent: 0 - type: Transform -- uid: 31883 - type: Lamp - components: - - pos: -28.419106,8.921024 - parent: 0 - type: Transform -- uid: 31884 - type: UnfinishedMachineFrame - components: - - pos: -30.5,3.5 - parent: 0 - type: Transform -- uid: 31885 - type: UnfinishedMachineFrame - components: - - pos: -29.5,3.5 - parent: 0 - type: Transform -- uid: 31886 - type: UnfinishedMachineFrame - components: - - pos: -29.5,1.5 - parent: 0 - type: Transform -- uid: 31887 - type: ComputerFrame - components: - - rot: -1.5707963267948966 rad - pos: -30.5,1.5 - parent: 0 - type: Transform -- uid: 31888 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: -28.5,7.5 - parent: 0 - type: Transform -- uid: 31889 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: -27.5,6.5 - parent: 0 - type: Transform -- uid: 31890 - type: PottedPlant1 - components: - - pos: -32.5,6.5 - parent: 0 - type: Transform -- uid: 31891 - type: PottedPlant1 - components: - - pos: -32.5,7.5 - parent: 0 - type: Transform -- uid: 31892 - type: PottedPlant1 - components: - - pos: -32.5,0.5 - parent: 0 - type: Transform -- uid: 31893 - type: PottedPlant2 - components: - - pos: -32.5,1.5 - parent: 0 - type: Transform -- uid: 31894 - type: PottedPlant2 - components: - - pos: -27.5,-0.5 - parent: 0 - type: Transform -- uid: 31895 - type: PottedPlant2 - components: - - pos: -32.5,8.5 - parent: 0 - type: Transform -- uid: 31896 - type: filingCabinetDrawerRandom - components: - - pos: -32.5,-0.5 - parent: 0 - type: Transform -- uid: 31897 - type: BoxFolderBlack - components: - - pos: -27.533854,2.561223 - parent: 0 - type: Transform -- uid: 31898 - type: MatterBinStockPart - components: - - pos: -29.51641,-0.22505236 - parent: 0 - type: Transform -- uid: 31899 - type: MatterBinStockPart - components: - - pos: -29.39141,-0.38130236 - parent: 0 - type: Transform -- uid: 31900 - type: MicroManipulatorStockPart - components: - - pos: -27.54766,3.4780726 - parent: 0 - type: Transform -- uid: 31901 - type: MicroLaserStockPart - components: - - pos: -27.469536,6.4936976 - parent: 0 - type: Transform -- uid: 31902 - type: CableApcStack - components: - - pos: -30.51641,2.4936976 - parent: 0 - type: Transform -- uid: 31903 - type: LargeBeaker - components: - - pos: -27.563286,7.6811976 - parent: 0 - type: Transform -- uid: 31904 - type: PowerCellRecharger - components: - - pos: -27.5,1.5 - parent: 0 - type: Transform -- uid: 31905 - type: ClothingMaskGas - components: - - pos: -31.438286,-0.3973428 - parent: 0 - type: Transform -- uid: 31906 - type: FlashlightSeclite - components: - - pos: -30.35275,-0.51212716 - parent: 0 - type: Transform -- uid: 31907 - type: CableHV - components: - - pos: -34.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31908 - type: CableHV - components: - - pos: -33.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31909 - type: CableHV - components: - - pos: -32.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31910 - type: CableHV - components: - - pos: -31.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31911 - type: CableHV - components: - - pos: -30.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31912 - type: CableHV - components: - - pos: -29.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31913 - type: CableHV - components: - - pos: -28.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31914 - type: CableHV - components: - - pos: -27.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31915 - type: CableHV - components: - - pos: -26.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31916 - type: CableHV - components: - - pos: -25.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31917 - type: CableHV - components: - - pos: -24.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31918 - type: CableHV - components: - - pos: -23.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31919 - type: CableHV - components: - - pos: -22.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31920 - type: CableHV - components: - - pos: -22.5,-3.5 - parent: 0 - type: Transform -- uid: 31921 - type: CableHV - components: - - pos: -22.5,-4.5 - parent: 0 - type: Transform -- uid: 31922 - type: CableHV - components: - - pos: -24.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31923 - type: CableHV - components: - - pos: -24.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31924 - type: CableHV - components: - - pos: -24.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31925 - type: CableHV - components: - - pos: -24.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31926 - type: CableHV - components: - - pos: -24.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31927 - type: CableHV - components: - - pos: -24.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31928 - type: CableHV - components: - - pos: -24.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31929 - type: CableHV - components: - - pos: -24.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31930 - type: CableHV - components: - - pos: -23.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31931 - type: CableHV - components: - - pos: -22.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31932 - type: Catwalk - components: - - pos: -34.5,-2.5 - parent: 0 - type: Transform -- uid: 31933 - type: Catwalk - components: - - pos: -32.5,-2.5 - parent: 0 - type: Transform -- uid: 31934 - type: Catwalk - components: - - pos: -31.5,-2.5 - parent: 0 - type: Transform -- uid: 31935 - type: Catwalk - components: - - pos: -30.5,-2.5 - parent: 0 - type: Transform -- uid: 31936 - type: Catwalk - components: - - pos: -29.5,-2.5 - parent: 0 - type: Transform -- uid: 31937 - type: Catwalk - components: - - pos: -28.5,-2.5 - parent: 0 - type: Transform -- uid: 31938 - type: Catwalk - components: - - pos: -27.5,-2.5 - parent: 0 - type: Transform -- uid: 31939 - type: Catwalk - components: - - pos: -25.5,-2.5 - parent: 0 - type: Transform -- uid: 31940 - type: Catwalk - components: - - pos: -23.5,-2.5 - parent: 0 - type: Transform -- uid: 31941 - type: Catwalk - components: - - pos: -22.5,-2.5 - parent: 0 - type: Transform -- uid: 31942 - type: Catwalk - components: - - pos: -24.5,-2.5 - parent: 0 - type: Transform -- uid: 31943 - type: Catwalk - components: - - pos: -24.5,-1.5 - parent: 0 - type: Transform -- uid: 31944 - type: Catwalk - components: - - pos: -24.5,-0.5 - parent: 0 - type: Transform -- uid: 31945 - type: Catwalk - components: - - pos: -24.5,0.5 - parent: 0 - type: Transform -- uid: 31946 - type: Catwalk - components: - - pos: -24.5,1.5 - parent: 0 - type: Transform -- uid: 31947 - type: Catwalk - components: - - pos: -24.5,2.5 - parent: 0 - type: Transform -- uid: 31948 - type: Catwalk - components: - - pos: -24.5,3.5 - parent: 0 - type: Transform -- uid: 31949 - type: Catwalk - components: - - pos: -24.5,4.5 - parent: 0 - type: Transform -- uid: 31950 - type: Catwalk - components: - - pos: -24.5,5.5 - parent: 0 - type: Transform -- uid: 31951 - type: Catwalk - components: - - pos: -23.5,5.5 - parent: 0 - type: Transform -- uid: 31952 - type: Catwalk - components: - - pos: -22.5,5.5 - parent: 0 - type: Transform -- uid: 31953 - type: WallSolid - components: - - pos: -25.5,6.5 - parent: 0 - type: Transform -- uid: 31954 - type: GoldDoor - components: - - name: The Porcelain Throne - type: MetaData - - pos: -24.5,6.5 - parent: 0 - type: Transform -- uid: 31955 - type: WallSolid - components: - - pos: -23.5,6.5 - parent: 0 - type: Transform -- uid: 31956 - type: WallSolid - components: - - pos: -22.5,6.5 - parent: 0 - type: Transform -- uid: 31957 - type: WallSolid - components: - - pos: -22.5,7.5 - parent: 0 - type: Transform -- uid: 31958 - type: WallSolid - components: - - pos: -22.5,8.5 - parent: 0 - type: Transform -- uid: 31959 - type: WallSolid - components: - - pos: -22.5,9.5 - parent: 0 - type: Transform -- uid: 31960 - type: WallSolid - components: - - pos: -22.5,10.5 - parent: 0 - type: Transform -- uid: 31961 - type: WallSolid - components: - - pos: -22.5,11.5 - parent: 0 - type: Transform -- uid: 31962 - type: WallSolid - components: - - pos: -26.5,10.5 - parent: 0 - type: Transform -- uid: 31963 - type: WallSolid - components: - - pos: -26.5,11.5 - parent: 0 - type: Transform -- uid: 31964 - type: WallSolid - components: - - pos: -25.5,11.5 - parent: 0 - type: Transform -- uid: 31965 - type: WallSolid - components: - - pos: -23.5,11.5 - parent: 0 - type: Transform -- uid: 31966 - type: AirlockMaintLocked - components: - - pos: -34.5,11.5 - parent: 0 - type: Transform -- uid: 31967 - type: FirelockGlass - components: - - pos: -33.5,-2.5 - parent: 0 - type: Transform -- uid: 31968 - type: FirelockGlass - components: - - pos: -26.5,-2.5 - parent: 0 - type: Transform -- uid: 31969 - type: APCBasic - components: - - pos: -35.5,11.5 - parent: 0 - type: Transform -- uid: 31970 - type: CableMV - components: - - pos: -35.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31971 - type: CableMV - components: - - pos: -35.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31972 - type: CableMV - components: - - pos: -35.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31973 - type: CableMV - components: - - pos: -35.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31974 - type: CableMV - components: - - pos: -35.5,3.5 - parent: 0 - type: Transform -- uid: 31975 - type: CableMV - components: - - pos: -35.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31976 - type: CableMV - components: - - pos: -35.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31977 - type: CableMV - components: - - pos: -35.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31978 - type: CableMV - components: - - pos: -35.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31979 - type: CableMV - components: - - pos: -35.5,8.5 - parent: 0 - type: Transform -- uid: 31980 - type: CableMV - components: - - pos: -35.5,9.5 - parent: 0 - type: Transform -- uid: 31981 - type: CableMV - components: - - pos: -35.5,10.5 - parent: 0 - type: Transform -- uid: 31982 - type: CableMV - components: - - pos: -35.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31983 - type: CableApcExtension - components: - - pos: -35.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31984 - type: CableApcExtension - components: - - pos: -35.5,10.5 - parent: 0 - type: Transform -- uid: 31985 - type: CableApcExtension - components: - - pos: -35.5,9.5 - parent: 0 - type: Transform -- uid: 31986 - type: CableApcExtension - components: - - pos: -34.5,9.5 - parent: 0 - type: Transform -- uid: 31987 - type: CableApcExtension - components: - - pos: -34.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31988 - type: CableApcExtension - components: - - pos: -34.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31989 - type: CableApcExtension - components: - - pos: -34.5,6.5 - parent: 0 - type: Transform -- uid: 31990 - type: CableApcExtension - components: - - pos: -34.5,5.5 - parent: 0 - type: Transform -- uid: 31991 - type: CableApcExtension - components: - - pos: -34.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31992 - type: CableApcExtension - components: - - pos: -34.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31993 - type: CableApcExtension - components: - - pos: -33.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 31994 - type: CableApcExtension - components: - - pos: -32.5,3.5 - parent: 0 - type: Transform -- uid: 31995 - type: CableApcExtension - components: - - pos: -31.5,3.5 - parent: 0 - type: Transform -- uid: 31996 - type: CableApcExtension - components: - - pos: -30.5,3.5 - parent: 0 - type: Transform -- uid: 31997 - type: CableApcExtension - components: - - pos: -29.5,3.5 - parent: 0 - type: Transform -- uid: 31998 - type: CableApcExtension - components: - - pos: -29.5,4.5 - parent: 0 - type: Transform -- uid: 31999 - type: CableApcExtension - components: - - pos: -29.5,5.5 - parent: 0 - type: Transform -- uid: 32000 - type: CableApcExtension - components: - - pos: -29.5,6.5 - parent: 0 - type: Transform -- uid: 32001 - type: CableApcExtension - components: - - pos: -29.5,7.5 - parent: 0 - type: Transform -- uid: 32002 - type: CableApcExtension - components: - - pos: -29.5,2.5 - parent: 0 - type: Transform -- uid: 32003 - type: CableApcExtension - components: - - pos: -29.5,0.5 - parent: 0 - type: Transform -- uid: 32004 - type: CableApcExtension - components: - - pos: -29.5,1.5 - parent: 0 - type: Transform -- uid: 32005 - type: CableApcExtension - components: - - pos: -30.5,7.5 - parent: 0 - type: Transform -- uid: 32006 - type: CableApcExtension - components: - - pos: -31.5,7.5 - parent: 0 - type: Transform -- uid: 32007 - type: CableApcExtension - components: - - pos: -31.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32008 - type: CableApcExtension - components: - - pos: -35.5,12.5 - parent: 0 - type: Transform -- uid: 32009 - type: CableApcExtension - components: - - pos: -36.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32010 - type: CableApcExtension - components: - - pos: -37.5,12.5 - parent: 0 - type: Transform -- uid: 32011 - type: CableApcExtension - components: - - pos: -38.5,12.5 - parent: 0 - type: Transform -- uid: 32012 - type: CableApcExtension - components: - - pos: -38.5,13.5 - parent: 0 - type: Transform -- uid: 32013 - type: CableApcExtension - components: - - pos: -38.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32014 - type: CableApcExtension - components: - - pos: -38.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32015 - type: CableApcExtension - components: - - pos: -34.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32016 - type: CableApcExtension - components: - - pos: -33.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32017 - type: CableApcExtension - components: - - pos: -32.5,12.5 - parent: 0 - type: Transform -- uid: 32018 - type: CableApcExtension - components: - - pos: -31.5,12.5 - parent: 0 - type: Transform -- uid: 32019 - type: CableApcExtension - components: - - pos: -30.5,12.5 - parent: 0 - type: Transform -- uid: 32020 - type: CableApcExtension - components: - - pos: -29.5,12.5 - parent: 0 - type: Transform -- uid: 32021 - type: CableApcExtension - components: - - pos: -28.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32022 - type: CableApcExtension - components: - - pos: -27.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32023 - type: CableApcExtension - components: - - pos: -26.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32024 - type: CableApcExtension - components: - - pos: -25.5,12.5 - parent: 0 - type: Transform -- uid: 32025 - type: CableApcExtension - components: - - pos: -24.5,12.5 - parent: 0 - type: Transform -- uid: 32026 - type: CableApcExtension - components: - - pos: -24.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32027 - type: CableApcExtension - components: - - pos: -24.5,10.5 - parent: 0 - type: Transform -- uid: 32028 - type: CableApcExtension - components: - - pos: -24.5,9.5 - parent: 0 - type: Transform -- uid: 32029 - type: CableApcExtension - components: - - pos: -24.5,8.5 - parent: 0 - type: Transform -- uid: 32030 - type: CableApcExtension - components: - - pos: -16.5,0.5 - parent: 0 - type: Transform -- uid: 32031 - type: CableApcExtension - components: - - pos: -17.5,0.5 - parent: 0 - type: Transform -- uid: 32032 - type: CableApcExtension - components: - - pos: -17.5,1.5 - parent: 0 - type: Transform -- uid: 32033 - type: CableApcExtension - components: - - pos: -17.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32034 - type: CableApcExtension - components: - - pos: -17.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32035 - type: CableApcExtension - components: - - pos: -17.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32036 - type: CableApcExtension - components: - - pos: -17.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32037 - type: CableApcExtension - components: - - pos: -18.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32038 - type: CableApcExtension - components: - - pos: -19.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32039 - type: CableApcExtension - components: - - pos: -20.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32040 - type: CableApcExtension - components: - - pos: -21.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32041 - type: CableApcExtension - components: - - pos: -21.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32042 - type: CableApcExtension - components: - - pos: -21.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32043 - type: CableApcExtension - components: - - pos: -21.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32044 - type: CableApcExtension - components: - - pos: -16.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32045 - type: CableApcExtension - components: - - pos: -15.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32046 - type: CableApcExtension - components: - - pos: -14.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32047 - type: CableApcExtension - components: - - pos: -13.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32048 - type: CableApcExtension - components: - - pos: -12.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32049 - type: CableApcExtension - components: - - pos: -11.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32050 - type: CableApcExtension - components: - - pos: -22.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32051 - type: CableApcExtension - components: - - pos: -23.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32052 - type: CableApcExtension - components: - - pos: -24.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32053 - type: CableApcExtension - components: - - pos: -25.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32054 - type: CableApcExtension - components: - - pos: -25.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32055 - type: CableApcExtension - components: - - pos: -25.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32056 - type: CableApcExtension - components: - - pos: -25.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32057 - type: CableApcExtension - components: - - pos: -25.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32058 - type: CableApcExtension - components: - - pos: -25.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32059 - type: CableApcExtension - components: - - pos: -25.5,-0.5 - parent: 0 - type: Transform -- uid: 32060 - type: CableApcExtension - components: - - pos: -24.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32061 - type: CableApcExtension - components: - - pos: -23.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32062 - type: CableApcExtension - components: - - pos: -22.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32063 - type: CableApcExtension - components: - - pos: -22.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32064 - type: CableApcExtension - components: - - pos: -21.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32065 - type: CableApcExtension - components: - - pos: -21.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32066 - type: CableApcExtension - components: - - pos: -24.5,13.5 - parent: 0 - type: Transform -- uid: 32067 - type: CableApcExtension - components: - - pos: -24.5,14.5 - parent: 0 - type: Transform -- uid: 32068 - type: CableApcExtension - components: - - pos: -24.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32069 - type: CableApcExtension - components: - - pos: -24.5,16.5 - parent: 0 - type: Transform -- uid: 32070 - type: CableApcExtension - components: - - pos: -24.5,17.5 - parent: 0 - type: Transform -- uid: 32071 - type: CableApcExtension - components: - - pos: -24.5,18.5 - parent: 0 - type: Transform -- uid: 32072 - type: CableApcExtension - components: - - pos: -24.5,19.5 - parent: 0 - type: Transform -- uid: 32073 - type: CableApcExtension - components: - - pos: -24.5,20.5 - parent: 0 - type: Transform -- uid: 32074 - type: CableApcExtension - components: - - pos: -24.5,21.5 - parent: 0 - type: Transform -- uid: 32075 - type: CableApcExtension - components: - - pos: -24.5,22.5 - parent: 0 - type: Transform -- uid: 32076 - type: VehicleKeySkeletonMotorcycle - components: - - pos: -38.580223,10.456278 - parent: 0 - type: Transform -- uid: 32077 - type: CableHV - components: - - pos: -34.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32078 - type: CableHV - components: - - pos: -34.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32079 - type: CableHV - components: - - pos: -34.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32080 - type: CableHV - components: - - pos: -34.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32081 - type: CableHV - components: - - pos: -34.5,5.5 - parent: 0 - type: Transform -- uid: 32082 - type: CableHV - components: - - pos: -34.5,6.5 - parent: 0 - type: Transform -- uid: 32083 - type: CableHV - components: - - pos: -34.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32084 - type: CableHV - components: - - pos: -34.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32085 - type: CableHV - components: - - pos: -34.5,9.5 - parent: 0 - type: Transform -- uid: 32086 - type: CableHV - components: - - pos: -34.5,10.5 - parent: 0 - type: Transform -- uid: 32087 - type: CableHV - components: - - pos: -34.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32088 - type: CableHV - components: - - pos: -34.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32089 - type: CableHV - components: - - pos: -33.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32090 - type: CableHV - components: - - pos: -32.5,12.5 - parent: 0 - type: Transform -- uid: 32091 - type: CableHV - components: - - pos: -31.5,12.5 - parent: 0 - type: Transform -- uid: 32092 - type: CableHV - components: - - pos: -30.5,12.5 - parent: 0 - type: Transform -- uid: 32093 - type: CableHV - components: - - pos: -29.5,12.5 - parent: 0 - type: Transform -- uid: 32094 - type: CableHV - components: - - pos: -28.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32095 - type: CableHV - components: - - pos: -27.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32096 - type: CableHV - components: - - pos: -26.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32097 - type: CableHV - components: - - pos: -25.5,12.5 - parent: 0 - type: Transform -- uid: 32098 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 32099 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 32100 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 32101 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 32102 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 32103 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 32104 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 32105 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 32106 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 32107 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 32108 - type: Rack - components: - - pos: -27.5,10.5 - parent: 0 - type: Transform -- uid: 32109 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -27.5,11.5 - parent: 0 - type: Transform -- uid: 32110 - type: MaintenanceToolSpawner - components: - - pos: -27.5,10.5 - parent: 0 - type: Transform -- uid: 32111 - type: FirelockGlass - components: - - pos: -24.5,23.5 - parent: 0 - type: Transform -- uid: 32112 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32113 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32114 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32115 - type: PoweredSmallLight - components: - - pos: -15.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32116 - type: CrateEngineeringCableHV - components: - - pos: -20.5,1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32117 - type: Table - components: - - pos: -20.5,3.5 - parent: 0 - type: Transform -- uid: 32118 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: -20.5,2.5 - parent: 0 - type: Transform -- uid: 32119 - type: SignElectricalMed - components: - - pos: -22.5,4.5 - parent: 0 - type: Transform -- uid: 32120 - type: RandomSpawner - components: - - pos: -23.5,21.5 - parent: 0 - type: Transform -- uid: 32121 - type: PoweredlightSodium - components: - - pos: -24.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32122 - type: ToiletDirtyWater - components: - - pos: -24.5,9.5 - parent: 0 - type: Transform -- uid: 32123 - type: ClothingHeadHatAnimalMonkey - components: - - pos: -24.5,9.5 - parent: 0 - type: Transform -- uid: 32124 - type: Paper - components: - - pos: -25.5,9.5 - parent: 0 - type: Transform - - content: > - this is toilet paper - - for your ass - - disregard - type: Paper -- uid: 32125 - type: RandomSpawner - components: - - pos: -18.5,36.5 - parent: 0 - type: Transform -- uid: 32126 - type: ClothingHandsGlovesFingerless - components: - - pos: 16.46268,-19.418653 - parent: 0 - type: Transform -- uid: 32127 - type: ClothingNeckCloakGoliathCloak - components: - - pos: -23.522526,76.500786 - parent: 0 - type: Transform -- uid: 32128 - type: SpawnMobBearSalvage - components: - - pos: -38.5,77.5 - parent: 0 - type: Transform -- uid: 32129 - type: RandomArtifactSpawner20 - components: - - pos: -38.5,82.5 - parent: 0 - type: Transform -- uid: 32130 - type: RandomSnacks - components: - - pos: -35.5,9.5 - parent: 0 - type: Transform -- uid: 32131 - type: SpawnMobCleanBot - components: - - pos: 1.5,-3.5 - parent: 0 - type: Transform -- uid: 32132 - type: SpawnMobMedibot - components: - - pos: 23.5,44.5 - parent: 0 - type: Transform -- uid: 32133 - type: RandomPainting - components: - - pos: 76.5,52.5 - parent: 0 - type: Transform -- uid: 32134 - type: RandomPainting - components: - - pos: 78.5,48.5 - parent: 0 - type: Transform -- uid: 32135 - type: FoodCakeBatter - components: - - pos: 51.492767,24.946735 - parent: 0 - type: Transform -- uid: 32136 - type: Rack - components: - - pos: -22.5,-0.5 - parent: 0 - type: Transform -- uid: 32137 - type: MaintenanceToolSpawner - components: - - pos: -22.5,-0.5 - parent: 0 - type: Transform -- uid: 32138 - type: ClosetMaintenanceFilledRandom - components: - - pos: -21.5,-0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32139 - type: RandomPosterLegit - components: - - pos: -32.5,-3.5 - parent: 0 - type: Transform -- uid: 32140 - type: RandomPosterLegit - components: - - pos: -26.5,-3.5 - parent: 0 - type: Transform -- uid: 32141 - type: WallSolidRust - components: - - pos: -32.5,18.5 - parent: 0 - type: Transform -- uid: 32142 - type: TintedWindow - components: - - pos: -35.5,14.5 - parent: 0 - type: Transform -- uid: 32143 - type: WallSolid - components: - - pos: -32.5,17.5 - parent: 0 - type: Transform -- uid: 32144 - type: WallSolidRust - components: - - pos: -33.5,14.5 - parent: 0 - type: Transform -- uid: 32145 - type: WallSolid - components: - - pos: -32.5,14.5 - parent: 0 - type: Transform -- uid: 32146 - type: TintedWindow - components: - - pos: -27.5,14.5 - parent: 0 - type: Transform -- uid: 32147 - type: TintedWindow - components: - - pos: -26.5,14.5 - parent: 0 - type: Transform -- uid: 32148 - type: WallSolid - components: - - pos: -29.5,14.5 - parent: 0 - type: Transform -- uid: 32149 - type: WallSolidRust - components: - - pos: -28.5,14.5 - parent: 0 - type: Transform -- uid: 32150 - type: TintedWindow - components: - - pos: -31.5,14.5 - parent: 0 - type: Transform -- uid: 32151 - type: TintedWindow - components: - - pos: -30.5,14.5 - parent: 0 - type: Transform -- uid: 32152 - type: WallSolid - components: - - pos: -25.5,14.5 - parent: 0 - type: Transform -- uid: 32153 - type: WallSolid - components: - - pos: -25.5,15.5 - parent: 0 - type: Transform -- uid: 32154 - type: WallSolid - components: - - pos: -25.5,16.5 - parent: 0 - type: Transform -- uid: 32155 - type: WallSolidRust - components: - - pos: -25.5,18.5 - parent: 0 - type: Transform -- uid: 32156 - type: WallSolid - components: - - pos: -25.5,19.5 - parent: 0 - type: Transform -- uid: 32157 - type: WallSolid - components: - - pos: -29.5,19.5 - parent: 0 - type: Transform -- uid: 32158 - type: WallSolid - components: - - pos: -29.5,18.5 - parent: 0 - type: Transform -- uid: 32159 - type: WallSolid - components: - - pos: -29.5,17.5 - parent: 0 - type: Transform -- uid: 32160 - type: WallSolidRust - components: - - pos: -33.5,16.5 - parent: 0 - type: Transform -- uid: 32161 - type: WallSolid - components: - - pos: -32.5,16.5 - parent: 0 - type: Transform -- uid: 32162 - type: WallSolidRust - components: - - pos: -29.5,16.5 - parent: 0 - type: Transform -- uid: 32163 - type: WallSolid - components: - - pos: -34.5,16.5 - parent: 0 - type: Transform -- uid: 32164 - type: WallSolid - components: - - pos: -35.5,16.5 - parent: 0 - type: Transform -- uid: 32165 - type: WallSolid - components: - - pos: -32.5,19.5 - parent: 0 - type: Transform -- uid: 32166 - type: Bed - components: - - pos: -30.5,19.5 - parent: 0 - type: Transform -- uid: 32167 - type: MaterialWoodPlank - components: - - pos: -28.382505,16.527803 - parent: 0 - type: Transform -- uid: 32168 - type: filingCabinetDrawerRandom - components: - - pos: -28.5,17.5 - parent: 0 - type: Transform -- uid: 32169 - type: TableWood - components: - - pos: -27.5,17.5 - parent: 0 - type: Transform -- uid: 32170 - type: TableWood - components: - - pos: -27.5,18.5 - parent: 0 - type: Transform -- uid: 32171 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -28.5,18.5 - parent: 0 - type: Transform -- uid: 32172 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: -26.5,15.5 - parent: 0 - type: Transform -- uid: 32173 - type: SinkEmpty - components: - - rot: 1.5707963267948966 rad - pos: -31.5,16.5 - parent: 0 - type: Transform -- uid: 32174 - type: HandLabeler - components: - - pos: -26.48617,15.559053 - parent: 0 - type: Transform -- uid: 32175 - type: Wrench - components: - - pos: -26.45492,15.684053 - parent: 0 - type: Transform -- uid: 32176 - type: ClothingShoesFlippers - components: - - pos: -34.47776,17.448305 - parent: 0 - type: Transform -- uid: 32177 - type: ClothingHeadHatFez - components: - - pos: -33.493385,19.65143 - parent: 0 - type: Transform -- uid: 32178 - type: ClothingOuterPonchoClassic - components: - - pos: -33.44651,19.229555 - parent: 0 - type: Transform -- uid: 32179 - type: Grille - components: - - pos: -36.5,16.5 - parent: 0 - type: Transform -- uid: 32180 - type: Girder - components: - - pos: -36.5,14.5 - parent: 0 - type: Transform -- uid: 32181 - type: Barricade - components: - - pos: -30.5,16.5 - parent: 0 - type: Transform -- uid: 32182 - type: Barricade - components: - - pos: -25.5,17.5 - parent: 0 - type: Transform -- uid: 32183 - type: ComputerTelevision - components: - - pos: -31.5,19.5 - parent: 0 - type: Transform -- uid: 32184 - type: BedsheetSpawner - components: - - pos: -30.5,19.5 - parent: 0 - type: Transform -- uid: 32185 - type: Bed - components: - - pos: -30.5,17.5 - parent: 0 - type: Transform -- uid: 32186 - type: BedsheetSpawner - components: - - pos: -30.5,17.5 - parent: 0 - type: Transform -- uid: 32187 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -34.5,14.5 - parent: 0 - type: Transform -- uid: 32188 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -34.5,14.5 - parent: 0 - type: Transform -- uid: 32189 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -26.5,17.5 - parent: 0 - type: Transform -- uid: 32190 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32191 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -33.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32192 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32193 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32194 - type: CableApcExtension - components: - - pos: -19.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32195 - type: CableApcExtension - components: - - pos: -19.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32196 - type: CableApcExtension - components: - - pos: -19.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32197 - type: CableApcExtension - components: - - pos: -19.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32198 - type: ClothingBeltHolster - components: - - pos: -27.488775,18.580524 - parent: 0 - type: Transform -- uid: 32199 - type: ClothingShoesBootsJack - components: - - pos: -27.516737,17.6716 - parent: 0 - type: Transform -- uid: 32200 - type: Rack - components: - - pos: -33.5,19.5 - parent: 0 - type: Transform -- uid: 32201 - type: GlowstickBase - components: - - pos: -36.55174,19.49518 - parent: 0 - type: Transform -- uid: 32202 - type: GlowstickPurple - components: - - pos: -33.45799,18.46393 - parent: 0 - type: Transform -- uid: 32203 - type: WardrobeBlackFilled - components: - - pos: -35.5,19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32204 - type: ClosetWallAtmospherics - components: - - pos: 73.5,-32.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32205 - type: WardrobeAtmospherics - components: - - pos: 77.5,-24.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32206 - type: PosterLegitCohibaRobustoAd - components: - - pos: 26.5,-28.5 - parent: 0 - type: Transform -- uid: 32207 - type: ClothingHeadsetRobotics - components: - - pos: 36.660496,-23.34851 - parent: 0 - type: Transform -- uid: 32208 - type: ClothingHeadsetMining - components: - - pos: 21.242035,-35.10825 - parent: 0 - type: Transform -- uid: 32209 - type: ClothingHeadsetMining - components: - - pos: 12.429535,-32.530125 - parent: 0 - type: Transform -- uid: 32210 - type: Table - components: - - pos: 27.5,-37.5 - parent: 0 - type: Transform -- uid: 32211 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-37.5 - parent: 0 - type: Transform -- uid: 32212 - type: ClosetToolFilled - components: - - pos: 27.5,-39.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32213 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32214 - type: MaintenanceToolSpawner - components: - - pos: 27.5,-37.5 - parent: 0 - type: Transform -- uid: 32215 - type: MaintenanceToolSpawner - components: - - pos: 30.5,-54.5 - parent: 0 - type: Transform -- uid: 32216 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32217 - type: Table - components: - - pos: 52.5,-50.5 - parent: 0 - type: Transform -- uid: 32218 - type: Table - components: - - pos: 52.5,-49.5 - parent: 0 - type: Transform -- uid: 32219 - type: ClosetToolFilled - components: - - pos: 50.5,-51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32220 - type: CrateEngineeringCableMV - components: - - pos: 50.5,-49.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32221 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-50.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32222 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-49.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32223 - type: Grille - components: - - pos: 47.5,-55.5 - parent: 0 - type: Transform -- uid: 32224 - type: RandomPosterLegit - components: - - pos: 21.5,-19.5 - parent: 0 - type: Transform -- uid: 32225 - type: RandomPosterLegit - components: - - pos: 39.5,-5.5 - parent: 0 - type: Transform -- uid: 32226 - type: RandomPosterLegit - components: - - pos: 57.5,-5.5 - parent: 0 - type: Transform -- uid: 32227 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-54.5 - parent: 0 - type: Transform -- uid: 32228 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-54.5 - parent: 0 - type: Transform -- uid: 32229 - type: RandomPosterLegit - components: - - pos: 48.5,-44.5 - parent: 0 - type: Transform -- uid: 32230 - type: RandomPosterAny - components: - - pos: 52.5,-53.5 - parent: 0 - type: Transform -- uid: 32231 - type: ClothingUniformJumpsuitAncient - components: - - pos: 44.5,-54.5 - parent: 0 - type: Transform -- uid: 32232 - type: PosterContrabandMissingGloves - components: - - pos: 45.5,-52.5 - parent: 0 - type: Transform -- uid: 32233 - type: RandomPosterAny - components: - - pos: 31.5,-9.5 - parent: 0 - type: Transform -- uid: 32234 - type: RandomPosterLegit - components: - - pos: 26.5,-7.5 - parent: 0 - type: Transform -- uid: 32235 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-54.5 - parent: 0 - type: Transform -- uid: 32236 - type: Girder - components: - - pos: 18.5,-19.5 - parent: 0 - type: Transform -- uid: 32237 - type: Girder - components: - - pos: 20.5,-19.5 - parent: 0 - type: Transform -- uid: 32238 - type: RandomPosterAny - components: - - pos: 42.5,-54.5 - parent: 0 - type: Transform -- uid: 32239 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 50.5,-54.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32240 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-54.5 - parent: 0 - type: Transform -- uid: 32241 - type: RandomPosterLegit - components: - - pos: 31.5,-40.5 - parent: 0 - type: Transform -- uid: 32242 - type: RandomPosterLegit - components: - - pos: 43.5,-40.5 - parent: 0 - type: Transform -- uid: 32243 - type: RandomPosterLegit - components: - - pos: 34.5,-36.5 - parent: 0 - type: Transform -- uid: 32244 - type: ClothingShoesLeather - components: - - pos: 80.54938,42.151398 - parent: 0 - type: Transform -- uid: 32245 - type: ClothingShoesBootsLaceup - components: - - pos: 91.477356,48.123116 - parent: 0 - type: Transform -- uid: 32246 - type: ClothingShoesTourist - components: - - pos: -25.48154,-27.826488 - parent: 0 - type: Transform -- uid: 32247 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-54.5 - parent: 0 - type: Transform -- uid: 32248 - type: AltarConvertMaint - components: - - pos: 47.5,-54.5 - parent: 0 - type: Transform -- uid: 32249 - type: RandomPosterLegit - components: - - pos: 34.5,-13.5 - parent: 0 - type: Transform -- uid: 32250 - type: RandomPosterAny - components: - - pos: 50.5,-52.5 - parent: 0 - type: Transform -- uid: 32251 - type: SpawnMobMouse - components: - - pos: 47.5,-46.5 - parent: 0 - type: Transform -- uid: 32252 - type: SpawnMobMouse - components: - - pos: -8.5,-21.5 - parent: 0 - type: Transform -- uid: 32253 - type: MouseTimedSpawner - components: - - pos: 12.5,22.5 - parent: 0 - type: Transform -- uid: 32254 - type: SpawnMobMouse - components: - - pos: -34.5,26.5 - parent: 0 - type: Transform -- uid: 32255 - type: SpawnMobMouse - components: - - pos: -26.5,67.5 - parent: 0 - type: Transform -- uid: 32256 - type: Table - components: - - pos: -31.5,60.5 - parent: 0 - type: Transform -- uid: 32257 - type: ComputerPowerMonitoring - components: - - pos: -31.5,62.5 - parent: 0 - type: Transform -- uid: 32258 - type: CableHV - components: - - pos: -31.5,62.5 - parent: 0 - type: Transform -- uid: 32259 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: -31.5,61.5 - parent: 0 - type: Transform -- uid: 32260 - type: CrateEngineeringCableBulk - components: - - pos: -29.5,62.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32261 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,61.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32262 - type: FlashlightLantern - components: - - pos: -31.524748,13.681012 - parent: 0 - type: Transform -- uid: 32263 - type: FlashlightLantern - components: - - pos: -42.514347,2.6634603 - parent: 0 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 32264 - type: Girder - components: - - pos: 25.5,-28.5 - parent: 0 - type: Transform -- uid: 32265 - type: Barricade - components: - - pos: 25.5,-29.5 - parent: 0 - type: Transform -- uid: 32266 - type: TableCarpet - components: - - pos: 26.5,-32.5 - parent: 0 - type: Transform -- uid: 32267 - type: TableCarpet - components: - - pos: 25.5,-32.5 - parent: 0 - type: Transform -- uid: 32268 - type: TableCarpet - components: - - pos: 25.5,-31.5 - parent: 0 - type: Transform -- uid: 32269 - type: TableCarpet - components: - - pos: 25.5,-30.5 - parent: 0 - type: Transform -- uid: 32270 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 26.5,-33.5 - parent: 0 - type: Transform -- uid: 32271 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 25.5,-33.5 - parent: 0 - type: Transform -- uid: 32272 - type: SpaceCash - components: - - pos: 28.784489,-29.733091 - parent: 0 - type: Transform -- uid: 32273 - type: SpaceCash - components: - - pos: 28.862614,-29.592466 - parent: 0 - type: Transform -- uid: 32274 - type: SpaceCash - components: - - pos: 29.159489,-29.748716 - parent: 0 - type: Transform -- uid: 32275 - type: SpaceCash - components: - - pos: 29.315739,-29.592466 - parent: 0 - type: Transform -- uid: 32276 - type: SpaceCash - components: - - pos: 29.034489,-29.404966 - parent: 0 - type: Transform -- uid: 32277 - type: SpaceCash - components: - - pos: 29.690739,-29.764341 - parent: 0 - type: Transform -- uid: 32278 - type: SpaceCash - components: - - pos: 29.565739,-29.545591 - parent: 0 - type: Transform -- uid: 32279 - type: SpaceCash - components: - - pos: 29.409489,-29.373716 - parent: 0 - type: Transform -- uid: 32280 - type: SpaceCash - components: - - pos: 29.221989,-29.186216 - parent: 0 - type: Transform -- uid: 32281 - type: d6Dice - components: - - pos: 25.371542,-30.342466 - parent: 0 - type: Transform -- uid: 32282 - type: d6Dice - components: - - pos: 25.512167,-30.498716 - parent: 0 - type: Transform -- uid: 32283 - type: IngotGold1 - components: - - pos: 26.449667,-32.40497 - parent: 0 - type: Transform -- uid: 32284 - type: IngotGold1 - components: - - pos: 25.512167,-31.326841 - parent: 0 - type: Transform -- uid: 32285 - type: IngotGold1 - components: - - pos: 25.652792,-32.34247 - parent: 0 - type: Transform -- uid: 32286 - type: ClothingUniformJumpsuitDetectiveGrey - components: - - pos: 29.230917,-31.311216 - parent: 0 - type: Transform -- uid: 32287 - type: ClothingUniformJumpskirtDetectiveGrey - components: - - pos: 29.434042,-31.389341 - parent: 0 - type: Transform -- uid: 32288 - type: Dresser - components: - - pos: 27.5,-29.5 - parent: 0 - type: Transform -- uid: 32289 - type: Table - components: - - pos: 29.5,-31.5 - parent: 0 - type: Transform -- uid: 32290 - type: MaterialWoodPlank - components: - - pos: 26.512167,-29.514341 - parent: 0 - type: Transform -- uid: 32291 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32292 - type: ComputerSolarControl - components: - - pos: 102.5,-52.5 - parent: 0 - type: Transform -- uid: 32293 - type: Table - components: - - pos: 101.5,-52.5 - parent: 0 - type: Transform -- uid: 32294 - type: Catwalk - components: - - pos: 106.5,-46.5 - parent: 0 - type: Transform -- uid: 32295 - type: Table - components: - - pos: 100.5,-52.5 - parent: 0 - type: Transform -- uid: 32296 - type: Table - components: - - pos: 100.5,-53.5 - parent: 0 - type: Transform -- uid: 32297 - type: Rack - components: - - pos: 100.5,-54.5 - parent: 0 - type: Transform -- uid: 32298 - type: Catwalk - components: - - pos: 107.5,-46.5 - parent: 0 - type: Transform -- uid: 32299 - type: Catwalk - components: - - pos: 103.5,-50.5 - parent: 0 - type: Transform -- uid: 32300 - type: Catwalk - components: - - pos: 103.5,-49.5 - parent: 0 - type: Transform -- uid: 32301 - type: Catwalk - components: - - pos: 103.5,-48.5 - parent: 0 - type: Transform -- uid: 32302 - type: Catwalk - components: - - pos: 103.5,-47.5 - parent: 0 - type: Transform -- uid: 32303 - type: Catwalk - components: - - pos: 103.5,-46.5 - parent: 0 - type: Transform -- uid: 32304 - type: Catwalk - components: - - pos: 102.5,-46.5 - parent: 0 - type: Transform -- uid: 32305 - type: AirlockMaintGlassLocked - components: - - pos: 101.5,-46.5 - parent: 0 - type: Transform -- uid: 32306 - type: Rack - components: - - pos: 101.5,-50.5 - parent: 0 - type: Transform -- uid: 32307 - type: FoodMealCornedbeef - components: - - pos: 101.42757,-52.412685 - parent: 0 - type: Transform -- uid: 32308 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 101.5,-53.5 - parent: 0 - type: Transform -- uid: 32309 - type: DrinkSodaWaterCan - components: - - pos: 100.81819,-52.412685 - parent: 0 - type: Transform -- uid: 32310 - type: ClosetToolFilled - components: - - pos: 104.5,-52.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32311 - type: OxygenCanister - components: - - pos: 104.5,-53.5 - parent: 0 - type: Transform -- uid: 32312 - type: Catwalk - components: - - pos: 106.5,-63.5 - parent: 0 - type: Transform -- uid: 32313 - type: Catwalk - components: - - pos: 106.5,-62.5 - parent: 0 - type: Transform -- uid: 32314 - type: Catwalk - components: - - pos: 106.5,-61.5 - parent: 0 - type: Transform -- uid: 32315 - type: Catwalk - components: - - pos: 106.5,-60.5 - parent: 0 - type: Transform -- uid: 32316 - type: Catwalk - components: - - pos: 105.5,-60.5 - parent: 0 - type: Transform -- uid: 32317 - type: Catwalk - components: - - pos: 104.5,-60.5 - parent: 0 - type: Transform -- uid: 32318 - type: Catwalk - components: - - pos: 103.5,-60.5 - parent: 0 - type: Transform -- uid: 32319 - type: Catwalk - components: - - pos: 102.5,-60.5 - parent: 0 - type: Transform -- uid: 32320 - type: Catwalk - components: - - pos: 102.5,-59.5 - parent: 0 - type: Transform -- uid: 32321 - type: Catwalk - components: - - pos: 102.5,-58.5 - parent: 0 - type: Transform -- uid: 32322 - type: WallSolidRust - components: - - pos: 40.5,69.5 - parent: 0 - type: Transform -- uid: 32323 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 100.5,-53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32324 - type: Screwdriver - components: - - pos: 100.56355,-54.340363 - parent: 0 - type: Transform -- uid: 32325 - type: WaterTankFull - components: - - pos: 104.5,-50.5 - parent: 0 - type: Transform -- uid: 32326 - type: ClosetEmergencyFilledRandom - components: - - pos: 102.5,-47.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32327 - type: ClosetFireFilled - components: - - pos: 102.5,-48.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32328 - type: CigaretteSpent - components: - - pos: 104.46981,-49.532803 - parent: 0 - type: Transform -- uid: 32329 - type: CigaretteSpent - components: - - pos: 104.672935,-49.392178 - parent: 0 - type: Transform -- uid: 32330 - type: CigaretteSpent - components: - - pos: 102.43856,-45.626553 - parent: 0 - type: Transform -- uid: 32331 - type: Ash - components: - - pos: 104.43856,-49.314053 - parent: 0 - type: Transform -- uid: 32332 - type: PoweredSmallLight - components: - - pos: 106.5,-45.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32333 - type: PoweredSmallLight - components: - - pos: 103.5,-45.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32334 - type: ContainmentFieldGenerator - components: - - pos: 101.5,-41.5 - parent: 0 - type: Transform -- uid: 32335 - type: ContainmentFieldGenerator - components: - - pos: 100.5,-41.5 - parent: 0 - type: Transform -- uid: 32336 - type: Rack - components: - - pos: 100.5,-43.5 - parent: 0 - type: Transform -- uid: 32337 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: 100.508484,-43.45028 - parent: 0 - type: Transform -- uid: 32338 - type: WindoorCommandLocked - components: - - rot: 3.141592653589793 rad - pos: 27.5,-9.5 - parent: 0 - type: Transform -- uid: 32339 - type: ComfyChair - components: - - pos: 29.5,-6.5 - parent: 0 - type: Transform -- uid: 32340 - type: WindowReinforcedDirectional - components: - - pos: 28.5,-5.5 - parent: 0 - type: Transform -- uid: 32341 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 28.5,-9.5 - parent: 0 - type: Transform -- uid: 32342 - type: Bookshelf - components: - - pos: 30.5,-7.5 - parent: 0 - type: Transform -- uid: 32343 - type: ComfyChair - components: - - pos: 28.5,-6.5 - parent: 0 - type: Transform -- uid: 32344 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 30.5,-9.5 - parent: 0 - type: Transform -- uid: 32345 - type: TableCarpet - components: - - pos: 28.5,-7.5 - parent: 0 - type: Transform -- uid: 32346 - type: Bookshelf - components: - - pos: 30.5,-6.5 - parent: 0 - type: Transform -- uid: 32347 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 29.5,-9.5 - parent: 0 - type: Transform -- uid: 32348 - type: CableApcExtension - components: - - pos: 29.5,-10.5 - parent: 0 - type: Transform -- uid: 32349 - type: CableApcExtension - components: - - pos: 30.5,-10.5 - parent: 0 - type: Transform -- uid: 32350 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 28.5,-8.5 - parent: 0 - type: Transform -- uid: 32351 - type: SignalButton - components: - - pos: 30.5,-11.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 32360 - - port: Toggle - uid: 32358 - - port: Toggle - uid: 32359 - - port: Toggle - uid: 32361 - - port: Toggle - uid: 32362 - type: SignalTransmitter -- uid: 32352 - type: WeaponCapacitorRecharger - components: - - pos: 27.5,-4.5 - parent: 0 - type: Transform -- uid: 32353 - type: WindowReinforcedDirectional - components: - - pos: 29.5,-5.5 - parent: 0 - type: Transform -- uid: 32354 - type: CableApcExtension - components: - - pos: 31.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32355 - type: Bookshelf - components: - - pos: 30.5,-8.5 - parent: 0 - type: Transform -- uid: 32356 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 29.5,-8.5 - parent: 0 - type: Transform -- uid: 32357 - type: WindowReinforcedDirectional - components: - - pos: 30.5,-5.5 - parent: 0 - type: Transform -- uid: 32358 - type: BlastDoorOpen - components: - - pos: 26.5,-9.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 32351 - type: SignalReceiver -- uid: 32359 - type: BlastDoorOpen - components: - - pos: 26.5,-5.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 32351 - type: SignalReceiver -- uid: 32360 - type: BlastDoorOpen - components: - - pos: 27.5,-14.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 32351 - type: SignalReceiver -- uid: 32361 - type: BlastDoorOpen - components: - - pos: 28.5,-3.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 32351 - type: SignalReceiver -- uid: 32362 - type: BlastDoorOpen - components: - - pos: 29.5,-14.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 32351 - type: SignalReceiver -- uid: 32363 - type: ReinforcedWindow - components: - - pos: 27.5,-14.5 - parent: 0 - type: Transform -- uid: 32364 - type: ReinforcedWindow - components: - - pos: 26.5,-5.5 - parent: 0 - type: Transform -- uid: 32365 - type: AirlockCommandGlassLocked - components: - - name: Command Panic Bunker - type: MetaData - - pos: 28.5,-3.5 - parent: 0 - type: Transform -- uid: 32366 - type: ReinforcedWindow - components: - - pos: 26.5,-9.5 - parent: 0 - type: Transform -- uid: 32367 - type: BookChemistryInsane - components: - - pos: -19.428053,56.613403 - parent: 0 - type: Transform -- uid: 32368 - type: BookGnominomicon - components: - - pos: -21.394863,58.590874 - parent: 0 - type: Transform -- uid: 32369 - type: DrinkGlass - components: - - pos: 28.514648,-7.3215036 - parent: 0 - type: Transform -- uid: 32370 - type: WindoorCommandLocked - components: - - rot: 3.141592653589793 rad - pos: 29.5,-12.5 - parent: 0 - type: Transform -- uid: 32371 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32372 - type: TableReinforced - components: - - pos: 27.5,-4.5 - parent: 0 - type: Transform -- uid: 32373 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-13.5 - parent: 0 - type: Transform -- uid: 32374 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-12.5 - parent: 0 - type: Transform -- uid: 32375 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32376 - type: TableReinforced - components: - - pos: 28.5,-12.5 - parent: 0 - type: Transform -- uid: 32377 - type: TableReinforced - components: - - pos: 28.5,-13.5 - parent: 0 - type: Transform -- uid: 32378 - type: TableReinforced - components: - - pos: 27.5,-13.5 - parent: 0 - type: Transform -- uid: 32379 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-12.5 - parent: 0 - type: Transform -- uid: 32380 - type: PortableScrubber - components: - - pos: 30.5,-10.5 - parent: 0 - type: Transform -- uid: 32381 - type: AirCanister - components: - - pos: 30.5,-9.5 - parent: 0 - type: Transform -- uid: 32382 - type: Rack - components: - - pos: 34.5,-11.5 - parent: 0 - type: Transform -- uid: 32383 - type: WallSolid - components: - - pos: 35.5,-9.5 - parent: 0 - type: Transform -- uid: 32384 - type: Table - components: - - pos: 38.5,-4.5 - parent: 0 - type: Transform -- uid: 32385 - type: AirlockMaintLocked - components: - - pos: 34.5,-7.5 - parent: 0 - type: Transform -- uid: 32386 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-12.5 - parent: 0 - type: Transform -- uid: 32387 - type: WallSolid - components: - - pos: 34.5,-9.5 - parent: 0 - type: Transform -- uid: 32388 - type: WallSolid - components: - - pos: 34.5,-8.5 - parent: 0 - type: Transform -- uid: 32389 - type: WallSolid - components: - - pos: 34.5,-6.5 - parent: 0 - type: Transform -- uid: 32390 - type: WallSolid - components: - - pos: 34.5,-5.5 - parent: 0 - type: Transform -- uid: 32391 - type: Table - components: - - pos: 37.5,-4.5 - parent: 0 - type: Transform -- uid: 32392 - type: Table - components: - - pos: 38.5,-9.5 - parent: 0 - type: Transform -- uid: 32393 - type: Table - components: - - pos: 37.5,-9.5 - parent: 0 - type: Transform -- uid: 32394 - type: WeldingFuelTankFull - components: - - pos: 38.5,-5.5 - parent: 0 - type: Transform -- uid: 32395 - type: PottedPlant2 - components: - - pos: 35.5,-6.5 - parent: 0 - type: Transform -- uid: 32396 - type: PottedPlant1 - components: - - pos: 36.5,-4.5 - parent: 0 - type: Transform -- uid: 32397 - type: WaterTankFull - components: - - pos: 38.5,-7.5 - parent: 0 - type: Transform -- uid: 32398 - type: Rack - components: - - pos: 35.5,-5.5 - parent: 0 - type: Transform -- uid: 32399 - type: OxygenCanister - components: - - pos: 38.5,-6.5 - parent: 0 - type: Transform -- uid: 32400 - type: FlashlightLantern - components: - - pos: 35.394306,-5.3188667 - parent: 0 - type: Transform -- uid: 32401 - type: FlashlightLantern - components: - - pos: 35.581806,-5.5063667 - parent: 0 - type: Transform -- uid: 32402 - type: HandLabeler - components: - - pos: 37.581806,-4.4282417 - parent: 0 - type: Transform -- uid: 32403 - type: SignSmoking - components: - - pos: 34.5,-6.5 - parent: 0 - type: Transform -- uid: 32404 - type: CableApcExtension - components: - - pos: 34.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32405 - type: CableApcExtension - components: - - pos: 35.5,-7.5 - parent: 0 - type: Transform -- uid: 32406 - type: CableApcExtension - components: - - pos: 36.5,-7.5 - parent: 0 - type: Transform -- uid: 32407 - type: CableApcExtension - components: - - pos: 37.5,-7.5 - parent: 0 - type: Transform -- uid: 32408 - type: CableApcExtension - components: - - pos: 37.5,-6.5 - parent: 0 - type: Transform -- uid: 32409 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32410 - type: PoweredSmallLight - components: - - pos: 37.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32411 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32412 - type: Wirecutter - components: - - pos: 37.553375,-9.334492 - parent: 0 - type: Transform -- uid: 32413 - type: ClosetToolFilled - components: - - pos: 36.5,-11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32414 - type: Rack - components: - - pos: 38.5,-11.5 - parent: 0 - type: Transform -- uid: 32415 - type: DrinkGinBottleFull - components: - - pos: 34.508083,-11.213395 - parent: 0 - type: Transform -- uid: 32416 - type: WallSolid - components: - - pos: 32.5,-6.5 - parent: 0 - type: Transform -- uid: 32417 - type: ClosetMaintenanceFilledRandom - components: - - pos: 32.5,-5.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32418 - type: ClosetEmergencyFilledRandom - components: - - pos: 34.5,-3.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32419 - type: ClosetFireFilled - components: - - pos: 32.5,-3.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32420 - type: RandomPosterContraband - components: - - pos: 32.5,-6.5 - parent: 0 - type: Transform -- uid: 32421 - type: ClosetFireFilled - components: - - pos: 33.5,-14.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32422 - type: ClosetEmergencyFilledRandom - components: - - pos: 34.5,-14.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32423 - type: SignDisposalSpace - components: - - pos: 123.5,-9.5 - parent: 0 - type: Transform -- uid: 32424 - type: SignalButton - components: - - pos: 127.5,-5.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 34659 - type: SignalTransmitter -- uid: 32425 - type: Table - components: - - pos: 122.5,-4.5 - parent: 0 - type: Transform -- uid: 32426 - type: Table - components: - - pos: 126.5,-1.5 - parent: 0 - type: Transform -- uid: 32427 - type: Stool - components: - - pos: 122.5,-3.5 - parent: 0 - type: Transform -- uid: 32428 - type: BoxLightMixed - components: - - pos: 122.54931,-2.3429494 - parent: 0 - type: Transform -- uid: 32429 - type: ClosetEmergencyFilledRandom - components: - - pos: 120.5,-1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32430 - type: ClosetFireFilled - components: - - pos: 120.5,-3.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32431 - type: Catwalk - components: - - pos: 120.5,-7.5 - parent: 0 - type: Transform -- uid: 32432 - type: Catwalk - components: - - pos: 121.5,-7.5 - parent: 0 - type: Transform -- uid: 32433 - type: CrateEmptySpawner - components: - - pos: 121.5,-8.5 - parent: 0 - type: Transform -- uid: 32434 - type: ClosetMaintenanceFilledRandom - components: - - pos: 120.5,-8.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32435 - type: Rack - components: - - pos: 116.5,-15.5 - parent: 0 - type: Transform -- uid: 32436 - type: WaterTankFull - components: - - pos: 116.5,-17.5 - parent: 0 - type: Transform -- uid: 32437 - type: CigaretteSpent - components: - - pos: 116.79363,-16.70225 - parent: 0 - type: Transform -- uid: 32438 - type: CigaretteSpent - components: - - pos: 116.98113,-16.311625 - parent: 0 - type: Transform -- uid: 32439 - type: CigaretteSpent - components: - - pos: 117.44988,-16.82725 - parent: 0 - type: Transform -- uid: 32440 - type: ComfyChair - components: - - pos: 124.5,3.5 - parent: 0 - type: Transform -- uid: 32441 - type: TableCarpet - components: - - pos: 124.5,2.5 - parent: 0 - type: Transform -- uid: 32442 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: 126.5,2.5 - parent: 0 - type: Transform -- uid: 32443 - type: Catwalk - components: - - pos: 124.5,6.5 - parent: 0 - type: Transform -- uid: 32444 - type: Catwalk - components: - - pos: 125.5,6.5 - parent: 0 - type: Transform -- uid: 32445 - type: ClosetEmergencyFilledRandom - components: - - pos: 125.5,7.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32446 - type: WallSolidRust - components: - - pos: 115.5,7.5 - parent: 0 - type: Transform -- uid: 32447 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 122.5,7.5 - parent: 0 - type: Transform -- uid: 32448 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 121.5,7.5 - parent: 0 - type: Transform -- uid: 32449 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 119.5,7.5 - parent: 0 - type: Transform -- uid: 32450 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 118.5,7.5 - parent: 0 - type: Transform -- uid: 32451 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 117.5,7.5 - parent: 0 - type: Transform -- uid: 32452 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 116.5,7.5 - parent: 0 - type: Transform -- uid: 32453 - type: Rack - components: - - pos: 121.5,5.5 - parent: 0 - type: Transform -- uid: 32454 - type: Rack - components: - - pos: 121.5,4.5 - parent: 0 - type: Transform -- uid: 32455 - type: RandomSpawner - components: - - pos: 122.5,0.5 - parent: 0 - type: Transform -- uid: 32456 - type: VehicleJanicartDestroyed - components: - - pos: 125.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 32457 - type: MaintenanceWeaponSpawner - components: - - pos: 121.5,4.5 - parent: 0 - type: Transform -- uid: 32458 - type: MaintenanceToolSpawner - components: - - pos: 121.5,5.5 - parent: 0 - type: Transform -- uid: 32459 - type: WallSolid - components: - - pos: 104.5,11.5 - parent: 0 - type: Transform -- uid: 32460 - type: TintedWindow - components: - - pos: 103.5,11.5 - parent: 0 - type: Transform -- uid: 32461 - type: TintedWindow - components: - - pos: 102.5,11.5 - parent: 0 - type: Transform -- uid: 32462 - type: TintedWindow - components: - - pos: 101.5,11.5 - parent: 0 - type: Transform -- uid: 32463 - type: WallSolid - components: - - pos: 100.5,11.5 - parent: 0 - type: Transform -- uid: 32464 - type: WallSolid - components: - - pos: 99.5,11.5 - parent: 0 - type: Transform -- uid: 32465 - type: WallSolid - components: - - pos: 105.5,14.5 - parent: 0 - type: Transform -- uid: 32466 - type: WallSolidRust - components: - - pos: 111.5,18.5 - parent: 0 - type: Transform -- uid: 32467 - type: WallSolid - components: - - pos: 105.5,16.5 - parent: 0 - type: Transform -- uid: 32468 - type: WallSolid - components: - - pos: 99.5,16.5 - parent: 0 - type: Transform -- uid: 32469 - type: WallSolid - components: - - pos: 99.5,15.5 - parent: 0 - type: Transform -- uid: 32470 - type: WallSolid - components: - - pos: 99.5,12.5 - parent: 0 - type: Transform -- uid: 32471 - type: WallSolid - components: - - pos: 99.5,13.5 - parent: 0 - type: Transform -- uid: 32472 - type: Catwalk - components: - - pos: 98.5,11.5 - parent: 0 - type: Transform -- uid: 32473 - type: Catwalk - components: - - pos: 98.5,12.5 - parent: 0 - type: Transform -- uid: 32474 - type: Catwalk - components: - - pos: 98.5,13.5 - parent: 0 - type: Transform -- uid: 32475 - type: Catwalk - components: - - pos: 98.5,14.5 - parent: 0 - type: Transform -- uid: 32476 - type: Catwalk - components: - - pos: 97.5,14.5 - parent: 0 - type: Transform -- uid: 32477 - type: Catwalk - components: - - pos: 96.5,14.5 - parent: 0 - type: Transform -- uid: 32478 - type: WallSolid - components: - - pos: 76.5,5.5 - parent: 0 - type: Transform -- uid: 32479 - type: WallSolid - components: - - pos: 77.5,5.5 - parent: 0 - type: Transform -- uid: 32480 - type: WallSolid - components: - - pos: 78.5,5.5 - parent: 0 - type: Transform -- uid: 32481 - type: WallSolid - components: - - pos: 79.5,5.5 - parent: 0 - type: Transform -- uid: 32482 - type: WallSolid - components: - - pos: 80.5,5.5 - parent: 0 - type: Transform -- uid: 32483 - type: WallSolid - components: - - pos: 80.5,6.5 - parent: 0 - type: Transform -- uid: 32484 - type: WallSolid - components: - - pos: 80.5,7.5 - parent: 0 - type: Transform -- uid: 32485 - type: WallSolid - components: - - pos: 80.5,9.5 - parent: 0 - type: Transform -- uid: 32486 - type: WallSolid - components: - - pos: 80.5,10.5 - parent: 0 - type: Transform -- uid: 32487 - type: Rack - components: - - pos: 79.5,6.5 - parent: 0 - type: Transform -- uid: 32488 - type: Rack - components: - - pos: 78.5,6.5 - parent: 0 - type: Transform -- uid: 32489 - type: Rack - components: - - pos: 77.5,6.5 - parent: 0 - type: Transform -- uid: 32490 - type: CrateEmergencyRadiation - components: - - pos: 76.5,6.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32491 - type: Table - components: - - pos: 76.5,9.5 - parent: 0 - type: Transform -- uid: 32492 - type: Table - components: - - pos: 76.5,10.5 - parent: 0 - type: Transform -- uid: 32493 - type: Table - components: - - pos: 77.5,10.5 - parent: 0 - type: Transform -- uid: 32494 - type: Table - components: - - pos: 78.5,10.5 - parent: 0 - type: Transform -- uid: 32495 - type: BoxCardboard - components: - - pos: 77.550606,10.605696 - parent: 0 - type: Transform -- uid: 32496 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 77.5,9.5 - parent: 0 - type: Transform -- uid: 32497 - type: MaintenanceFluffSpawner - components: - - pos: 78.5,6.5 - parent: 0 - type: Transform -- uid: 32498 - type: MaintenanceFluffSpawner - components: - - pos: 79.5,6.5 - parent: 0 - type: Transform -- uid: 32499 - type: MaintenanceFluffSpawner - components: - - pos: 77.5,6.5 - parent: 0 - type: Transform -- uid: 32500 - type: PoweredSmallLight - components: - - pos: 67.5,0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32501 - type: DrinkLithiumFlask - components: - - pos: 76.51208,10.037497 - parent: 0 - type: Transform -- uid: 32502 - type: PoweredSmallLight - components: - - pos: 67.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32503 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 106.5,11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32504 - type: PoweredSmallLight - components: - - pos: 115.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32505 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 72.5,3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32506 - type: Girder - components: - - pos: 104.5,9.5 - parent: 0 - type: Transform -- uid: 32507 - type: ClosetMaintenanceFilledRandom - components: - - pos: 104.5,10.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32508 - type: Rack - components: - - pos: 102.5,10.5 - parent: 0 - type: Transform -- uid: 32509 - type: MaintenanceToolSpawner - components: - - pos: 102.5,10.5 - parent: 0 - type: Transform -- uid: 32510 - type: TableCarpet - components: - - pos: 104.5,13.5 - parent: 0 - type: Transform -- uid: 32511 - type: TableCarpet - components: - - pos: 103.5,13.5 - parent: 0 - type: Transform -- uid: 32512 - type: TableCarpet - components: - - pos: 102.5,13.5 - parent: 0 - type: Transform -- uid: 32513 - type: TableWood - components: - - pos: 101.5,16.5 - parent: 0 - type: Transform -- uid: 32514 - type: TableWood - components: - - pos: 100.5,13.5 - parent: 0 - type: Transform -- uid: 32515 - type: StoolBar - components: - - pos: 102.5,14.5 - parent: 0 - type: Transform -- uid: 32516 - type: StoolBar - components: - - pos: 103.5,14.5 - parent: 0 - type: Transform -- uid: 32517 - type: StoolBar - components: - - pos: 104.5,14.5 - parent: 0 - type: Transform -- uid: 32518 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 102.5,16.5 - parent: 0 - type: Transform -- uid: 32519 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 100.5,16.5 - parent: 0 - type: Transform -- uid: 32520 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 100.5,12.5 - parent: 0 - type: Transform -- uid: 32521 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 104.5,16.5 - parent: 0 - type: Transform -- uid: 32522 - type: CableApcExtension - components: - - pos: 99.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32523 - type: CableApcExtension - components: - - pos: 100.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32524 - type: CableApcExtension - components: - - pos: 101.5,14.5 - parent: 0 - type: Transform -- uid: 32525 - type: CableApcExtension - components: - - pos: 102.5,14.5 - parent: 0 - type: Transform -- uid: 32526 - type: CarpetGreen - components: - - pos: 102.5,12.5 - parent: 0 - type: Transform -- uid: 32527 - type: CarpetGreen - components: - - pos: 102.5,13.5 - parent: 0 - type: Transform -- uid: 32528 - type: CarpetGreen - components: - - pos: 102.5,14.5 - parent: 0 - type: Transform -- uid: 32529 - type: CarpetGreen - components: - - pos: 103.5,12.5 - parent: 0 - type: Transform -- uid: 32530 - type: CarpetGreen - components: - - pos: 103.5,13.5 - parent: 0 - type: Transform -- uid: 32531 - type: CarpetGreen - components: - - pos: 103.5,14.5 - parent: 0 - type: Transform -- uid: 32532 - type: CarpetGreen - components: - - pos: 104.5,12.5 - parent: 0 - type: Transform -- uid: 32533 - type: CarpetGreen - components: - - pos: 104.5,13.5 - parent: 0 - type: Transform -- uid: 32534 - type: CarpetGreen - components: - - pos: 104.5,14.5 - parent: 0 - type: Transform -- uid: 32535 - type: ClothingEyesGlassesSunglasses - components: - - pos: 102.52885,13.515509 - parent: 0 - type: Transform -- uid: 32536 - type: MaintenanceFluffSpawner - components: - - pos: 100.5,13.5 - parent: 0 - type: Transform -- uid: 32537 - type: PoweredSmallLight - components: - - pos: 103.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32538 - type: ClosetEmergencyFilledRandom - components: - - pos: 110.5,16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32539 - type: WeldingFuelTankFull - components: - - pos: 109.5,16.5 - parent: 0 - type: Transform -- uid: 32540 - type: StorageCanister - components: - - pos: 107.5,16.5 - parent: 0 - type: Transform -- uid: 32541 - type: StorageCanister - components: - - pos: 106.5,16.5 - parent: 0 - type: Transform -- uid: 32542 - type: AirCanister - components: - - pos: 107.5,14.5 - parent: 0 - type: Transform -- uid: 32543 - type: OxygenCanister - components: - - pos: 106.5,14.5 - parent: 0 - type: Transform -- uid: 32544 - type: Table - components: - - pos: 110.5,14.5 - parent: 0 - type: Transform -- uid: 32545 - type: Table - components: - - pos: 109.5,14.5 - parent: 0 - type: Transform -- uid: 32546 - type: ClothingMaskGas - components: - - pos: 109.56931,14.620563 - parent: 0 - type: Transform -- uid: 32547 - type: ToolboxEmergencyFilled - components: - - pos: 110.44431,14.604938 - parent: 0 - type: Transform -- uid: 32548 - type: WallSolidRust - components: - - pos: 111.5,14.5 - parent: 0 - type: Transform -- uid: 32549 - type: WallSolidRust - components: - - pos: 111.5,16.5 - parent: 0 - type: Transform -- uid: 32550 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 108.5,16.5 - parent: 0 - type: Transform -- uid: 32551 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 108.5,14.5 - parent: 0 - type: Transform -- uid: 32552 - type: AirlockMaintLocked - components: - - pos: 111.5,15.5 - parent: 0 - type: Transform -- uid: 32553 - type: WallSolid - components: - - pos: 105.5,21.5 - parent: 0 - type: Transform -- uid: 32554 - type: WallSolid - components: - - pos: 106.5,21.5 - parent: 0 - type: Transform -- uid: 32555 - type: WallSolid - components: - - pos: 104.5,21.5 - parent: 0 - type: Transform -- uid: 32556 - type: WallSolid - components: - - pos: 104.5,24.5 - parent: 0 - type: Transform -- uid: 32557 - type: WallSolid - components: - - pos: 104.5,25.5 - parent: 0 - type: Transform -- uid: 32558 - type: WallSolid - components: - - pos: 104.5,26.5 - parent: 0 - type: Transform -- uid: 32559 - type: WallSolid - components: - - pos: 103.5,24.5 - parent: 0 - type: Transform -- uid: 32560 - type: WallSolid - components: - - pos: 103.5,21.5 - parent: 0 - type: Transform -- uid: 32561 - type: AirlockMaintGlassLocked - components: - - pos: 103.5,22.5 - parent: 0 - type: Transform -- uid: 32562 - type: AirlockMaintGlassLocked - components: - - pos: 103.5,23.5 - parent: 0 - type: Transform -- uid: 32563 - type: Bookshelf - components: - - pos: 109.5,28.5 - parent: 0 - type: Transform -- uid: 32564 - type: Bookshelf - components: - - pos: 109.5,27.5 - parent: 0 - type: Transform -- uid: 32565 - type: Bookshelf - components: - - pos: 109.5,26.5 - parent: 0 - type: Transform -- uid: 32566 - type: Bookshelf - components: - - pos: 109.5,25.5 - parent: 0 - type: Transform -- uid: 32567 - type: Bookshelf - components: - - pos: 110.5,25.5 - parent: 0 - type: Transform -- uid: 32568 - type: Bookshelf - components: - - pos: 110.5,24.5 - parent: 0 - type: Transform -- uid: 32569 - type: Bookshelf - components: - - pos: 113.5,22.5 - parent: 0 - type: Transform -- uid: 32570 - type: Bookshelf - components: - - pos: 112.5,22.5 - parent: 0 - type: Transform -- uid: 32571 - type: Bookshelf - components: - - pos: 113.5,24.5 - parent: 0 - type: Transform -- uid: 32572 - type: Bookshelf - components: - - pos: 113.5,26.5 - parent: 0 - type: Transform -- uid: 32573 - type: Bookshelf - components: - - pos: 105.5,25.5 - parent: 0 - type: Transform -- uid: 32574 - type: Bookshelf - components: - - pos: 106.5,25.5 - parent: 0 - type: Transform -- uid: 32575 - type: CableApcExtension - components: - - pos: 103.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32576 - type: CableApcExtension - components: - - pos: 104.5,23.5 - parent: 0 - type: Transform -- uid: 32577 - type: CableApcExtension - components: - - pos: 105.5,23.5 - parent: 0 - type: Transform -- uid: 32578 - type: CableApcExtension - components: - - pos: 106.5,23.5 - parent: 0 - type: Transform -- uid: 32579 - type: CableApcExtension - components: - - pos: 107.5,23.5 - parent: 0 - type: Transform -- uid: 32580 - type: CableApcExtension - components: - - pos: 108.5,23.5 - parent: 0 - type: Transform -- uid: 32581 - type: CableApcExtension - components: - - pos: 109.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32582 - type: CableApcExtension - components: - - pos: 110.5,23.5 - parent: 0 - type: Transform -- uid: 32583 - type: CableApcExtension - components: - - pos: 111.5,23.5 - parent: 0 - type: Transform -- uid: 32584 - type: CableApcExtension - components: - - pos: 111.5,24.5 - parent: 0 - type: Transform -- uid: 32585 - type: CableApcExtension - components: - - pos: 111.5,25.5 - parent: 0 - type: Transform -- uid: 32586 - type: CableApcExtension - components: - - pos: 111.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32587 - type: CableApcExtension - components: - - pos: 110.5,26.5 - parent: 0 - type: Transform -- uid: 32588 - type: CableApcExtension - components: - - pos: 110.5,27.5 - parent: 0 - type: Transform -- uid: 32589 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 107.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32590 - type: PoweredSmallLight - components: - - pos: 111.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32591 - type: TableCarpet - components: - - pos: 113.5,23.5 - parent: 0 - type: Transform -- uid: 32592 - type: TableWood - components: - - pos: 105.5,26.5 - parent: 0 - type: Transform -- uid: 32593 - type: TableWood - components: - - pos: 110.5,28.5 - parent: 0 - type: Transform -- uid: 32594 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 106.5,26.5 - parent: 0 - type: Transform -- uid: 32595 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 112.5,23.5 - parent: 0 - type: Transform -- uid: 32596 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 110.5,27.5 - parent: 0 - type: Transform -- uid: 32597 - type: Dresser - components: - - pos: 113.5,25.5 - parent: 0 - type: Transform -- uid: 32598 - type: PottedPlantRandom - components: - - pos: 105.5,24.5 - parent: 0 - type: Transform -- uid: 32599 - type: PottedPlantRandom - components: - - pos: 106.5,24.5 - parent: 0 - type: Transform -- uid: 32600 - type: TableWood - components: - - pos: 109.5,24.5 - parent: 0 - type: Transform -- uid: 32601 - type: Lamp - components: - - pos: 109.44788,24.948565 - parent: 0 - type: Transform -- uid: 32602 - type: TableFrame - components: - - pos: 110.5,20.5 - parent: 0 - type: Transform -- uid: 32603 - type: ClosetEmergencyFilledRandom - components: - - pos: 108.5,18.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32604 - type: AirlockMaintLocked - components: - - pos: 113.5,9.5 - parent: 0 - type: Transform -- uid: 32605 - type: AirlockMaintLocked - components: - - pos: 113.5,13.5 - parent: 0 - type: Transform -- uid: 32606 - type: Catwalk - components: - - pos: 113.5,14.5 - parent: 0 - type: Transform -- uid: 32607 - type: Catwalk - components: - - pos: 113.5,15.5 - parent: 0 - type: Transform -- uid: 32608 - type: Catwalk - components: - - pos: 113.5,16.5 - parent: 0 - type: Transform -- uid: 32609 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 103.5,16.5 - parent: 0 - type: Transform -- uid: 32610 - type: MopItem - components: - - pos: 114.39373,20.545967 - parent: 0 - type: Transform -- uid: 32611 - type: MopBucket - components: - - pos: 114.471855,20.467842 - parent: 0 - type: Transform -- uid: 32612 - type: WaterTankFull - components: - - pos: 112.5,20.5 - parent: 0 - type: Transform -- uid: 32613 - type: FirelockGlass - components: - - pos: 113.5,17.5 - parent: 0 - type: Transform -- uid: 32614 - type: DrinkShaker - components: - - pos: 104.377365,13.730023 - parent: 0 - type: Transform -- uid: 32615 - type: ClosetL3JanitorFilled - components: - - pos: 110.5,18.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.2184362 - - 12.107451 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32616 - type: AirlockMaintGlass - components: - - pos: 107.5,19.5 - parent: 0 - type: Transform -- uid: 32617 - type: AirlockMaintGlass - components: - - pos: 113.5,17.5 - parent: 0 - type: Transform -- uid: 32618 - type: Catwalk - components: - - pos: 106.5,19.5 - parent: 0 - type: Transform -- uid: 32619 - type: Catwalk - components: - - pos: 105.5,19.5 - parent: 0 - type: Transform -- uid: 32620 - type: Catwalk - components: - - pos: 104.5,19.5 - parent: 0 - type: Transform -- uid: 32621 - type: Catwalk - components: - - pos: 103.5,19.5 - parent: 0 - type: Transform -- uid: 32622 - type: Catwalk - components: - - pos: 102.5,19.5 - parent: 0 - type: Transform -- uid: 32623 - type: Catwalk - components: - - pos: 102.5,20.5 - parent: 0 - type: Transform -- uid: 32624 - type: FirelockGlass - components: - - pos: 102.5,21.5 - parent: 0 - type: Transform -- uid: 32625 - type: Catwalk - components: - - pos: 102.5,22.5 - parent: 0 - type: Transform -- uid: 32626 - type: Catwalk - components: - - pos: 102.5,23.5 - parent: 0 - type: Transform -- uid: 32627 - type: Catwalk - components: - - pos: 102.5,24.5 - parent: 0 - type: Transform -- uid: 32628 - type: Catwalk - components: - - pos: 102.5,25.5 - parent: 0 - type: Transform -- uid: 32629 - type: Catwalk - components: - - pos: 102.5,26.5 - parent: 0 - type: Transform -- uid: 32630 - type: Catwalk - components: - - pos: 102.5,27.5 - parent: 0 - type: Transform -- uid: 32631 - type: Catwalk - components: - - pos: 102.5,28.5 - parent: 0 - type: Transform -- uid: 32632 - type: Catwalk - components: - - pos: 102.5,29.5 - parent: 0 - type: Transform -- uid: 32633 - type: Catwalk - components: - - pos: 102.5,30.5 - parent: 0 - type: Transform -- uid: 32634 - type: Catwalk - components: - - pos: 102.5,31.5 - parent: 0 - type: Transform -- uid: 32635 - type: Catwalk - components: - - pos: 102.5,32.5 - parent: 0 - type: Transform -- uid: 32636 - type: FirelockGlass - components: - - pos: 102.5,33.5 - parent: 0 - type: Transform -- uid: 32637 - type: Catwalk - components: - - pos: 102.5,34.5 - parent: 0 - type: Transform -- uid: 32638 - type: Catwalk - components: - - pos: 102.5,35.5 - parent: 0 - type: Transform -- uid: 32639 - type: Catwalk - components: - - pos: 101.5,35.5 - parent: 0 - type: Transform -- uid: 32640 - type: Catwalk - components: - - pos: 103.5,35.5 - parent: 0 - type: Transform -- uid: 32641 - type: Catwalk - components: - - pos: 104.5,35.5 - parent: 0 - type: Transform -- uid: 32642 - type: Catwalk - components: - - pos: 105.5,35.5 - parent: 0 - type: Transform -- uid: 32643 - type: Catwalk - components: - - pos: 106.5,35.5 - parent: 0 - type: Transform -- uid: 32644 - type: Catwalk - components: - - pos: 107.5,35.5 - parent: 0 - type: Transform -- uid: 32645 - type: Catwalk - components: - - pos: 108.5,35.5 - parent: 0 - type: Transform -- uid: 32646 - type: Catwalk - components: - - pos: 109.5,35.5 - parent: 0 - type: Transform -- uid: 32647 - type: Catwalk - components: - - pos: 110.5,35.5 - parent: 0 - type: Transform -- uid: 32648 - type: Catwalk - components: - - pos: 111.5,35.5 - parent: 0 - type: Transform -- uid: 32649 - type: Catwalk - components: - - pos: 112.5,35.5 - parent: 0 - type: Transform -- uid: 32650 - type: Catwalk - components: - - pos: 112.5,36.5 - parent: 0 - type: Transform -- uid: 32651 - type: Catwalk - components: - - pos: 110.5,31.5 - parent: 0 - type: Transform -- uid: 32652 - type: Catwalk - components: - - pos: 109.5,31.5 - parent: 0 - type: Transform -- uid: 32653 - type: Catwalk - components: - - pos: 109.5,32.5 - parent: 0 - type: Transform -- uid: 32654 - type: FirelockGlass - components: - - pos: 109.5,33.5 - parent: 0 - type: Transform -- uid: 32655 - type: Catwalk - components: - - pos: 109.5,34.5 - parent: 0 - type: Transform -- uid: 32656 - type: Catwalk - components: - - pos: 101.5,26.5 - parent: 0 - type: Transform -- uid: 32657 - type: Catwalk - components: - - pos: 100.5,26.5 - parent: 0 - type: Transform -- uid: 32658 - type: Catwalk - components: - - pos: 99.5,26.5 - parent: 0 - type: Transform -- uid: 32659 - type: Catwalk - components: - - pos: 98.5,26.5 - parent: 0 - type: Transform -- uid: 32660 - type: Catwalk - components: - - pos: 97.5,26.5 - parent: 0 - type: Transform -- uid: 32661 - type: Catwalk - components: - - pos: 96.5,26.5 - parent: 0 - type: Transform -- uid: 32662 - type: Catwalk - components: - - pos: 95.5,26.5 - parent: 0 - type: Transform -- uid: 32663 - type: Catwalk - components: - - pos: 94.5,26.5 - parent: 0 - type: Transform -- uid: 32664 - type: Catwalk - components: - - pos: 93.5,26.5 - parent: 0 - type: Transform -- uid: 32665 - type: Catwalk - components: - - pos: 92.5,26.5 - parent: 0 - type: Transform -- uid: 32666 - type: Catwalk - components: - - pos: 91.5,26.5 - parent: 0 - type: Transform -- uid: 32667 - type: Catwalk - components: - - pos: 90.5,26.5 - parent: 0 - type: Transform -- uid: 32668 - type: Catwalk - components: - - pos: 90.5,27.5 - parent: 0 - type: Transform -- uid: 32669 - type: Catwalk - components: - - pos: 89.5,27.5 - parent: 0 - type: Transform -- uid: 32670 - type: Catwalk - components: - - pos: 88.5,27.5 - parent: 0 - type: Transform -- uid: 32671 - type: Catwalk - components: - - pos: 87.5,27.5 - parent: 0 - type: Transform -- uid: 32672 - type: Catwalk - components: - - pos: 86.5,27.5 - parent: 0 - type: Transform -- uid: 32673 - type: Catwalk - components: - - pos: 85.5,27.5 - parent: 0 - type: Transform -- uid: 32674 - type: Girder - components: - - pos: 101.5,23.5 - parent: 0 - type: Transform -- uid: 32675 - type: ClothingHandsGlovesColorOrange - components: - - pos: 112.565605,18.530342 - parent: 0 - type: Transform -- uid: 32676 - type: Table - components: - - pos: 114.5,14.5 - parent: 0 - type: Transform -- uid: 32677 - type: Table - components: - - pos: 112.5,14.5 - parent: 0 - type: Transform -- uid: 32678 - type: Table - components: - - pos: 112.5,16.5 - parent: 0 - type: Transform -- uid: 32679 - type: Lamp - components: - - pos: 112.45623,14.923637 - parent: 0 - type: Transform -- uid: 32680 - type: Stool - components: - - pos: 114.5,15.5 - parent: 0 - type: Transform -- uid: 32681 - type: CrateMousetrapBoxes - components: - - pos: 114.5,16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32682 - type: PaperBin5 - components: - - pos: 112.5,16.5 - parent: 0 - type: Transform -- uid: 32683 - type: TableWood - components: - - pos: 98.5,23.5 - parent: 0 - type: Transform -- uid: 32684 - type: TableWood - components: - - pos: 98.5,24.5 - parent: 0 - type: Transform -- uid: 32685 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 99.5,23.5 - parent: 0 - type: Transform -- uid: 32686 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 99.5,24.5 - parent: 0 - type: Transform -- uid: 32687 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 97.5,24.5 - parent: 0 - type: Transform -- uid: 32688 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 97.5,23.5 - parent: 0 - type: Transform -- uid: 32689 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 97.5,24.5 - parent: 0 - type: Transform -- uid: 32690 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 98.5,23.5 - parent: 0 - type: Transform -- uid: 32691 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 98.5,24.5 - parent: 0 - type: Transform -- uid: 32692 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 99.5,23.5 - parent: 0 - type: Transform -- uid: 32693 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 99.5,24.5 - parent: 0 - type: Transform -- uid: 32694 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: 96.5,23.5 - parent: 0 - type: Transform -- uid: 32695 - type: RandomInstruments - components: - - pos: 96.5,23.5 - parent: 0 - type: Transform -- uid: 32696 - type: RandomInstruments - components: - - pos: 87.5,19.5 - parent: 0 - type: Transform -- uid: 32697 - type: RandomInstruments - components: - - pos: 77.5,22.5 - parent: 0 - type: Transform -- uid: 32698 - type: MaintenanceFluffSpawner - components: - - pos: 85.5,22.5 - parent: 0 - type: Transform -- uid: 32699 - type: MaintenanceFluffSpawner - components: - - pos: 87.5,25.5 - parent: 0 - type: Transform -- uid: 32700 - type: ToySpawner - components: - - pos: 79.5,25.5 - parent: 0 - type: Transform -- uid: 32701 - type: ClothingUniformJumpskirtColorDarkGreen - components: - - pos: 97.552574,18.524193 - parent: 0 - type: Transform -- uid: 32702 - type: BedsheetSpawner - components: - - pos: 96.5,21.5 - parent: 0 - type: Transform -- uid: 32703 - type: BedsheetSpawner - components: - - pos: 97.5,21.5 - parent: 0 - type: Transform -- uid: 32704 - type: PoweredSmallLight - components: - - pos: 65.5,24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32705 - type: PoweredSmallLight - components: - - pos: 72.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32706 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32707 - type: Rack - components: - - rot: -1.5707963267948966 rad - pos: 96.5,16.5 - parent: 0 - type: Transform -- uid: 32708 - type: CrowbarRed - components: - - pos: 96.55489,16.509943 - parent: 0 - type: Transform -- uid: 32709 - type: ClothingOuterVest - components: - - pos: 103.57052,13.603693 - parent: 0 - type: Transform -- uid: 32710 - type: PottedPlantRandomPlastic - components: - - pos: 98.5,16.5 - parent: 0 - type: Transform -- uid: 32711 - type: ChairFolding - components: - - pos: 106.5,20.5 - parent: 0 - type: Transform -- uid: 32712 - type: ChairFolding - components: - - pos: 105.5,20.5 - parent: 0 - type: Transform -- uid: 32713 - type: ChairFolding - components: - - pos: 104.5,20.5 - parent: 0 - type: Transform -- uid: 32714 - type: ClosetMaintenanceFilledRandom - components: - - pos: 103.5,20.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32715 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 104.5,18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32716 - type: RandomArcade - components: - - pos: 110.5,12.5 - parent: 0 - type: Transform -- uid: 32717 - type: RandomArcade - components: - - pos: 111.5,12.5 - parent: 0 - type: Transform -- uid: 32718 - type: RandomArcade - components: - - pos: 112.5,12.5 - parent: 0 - type: Transform -- uid: 32719 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 110.5,11.5 - parent: 0 - type: Transform -- uid: 32720 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 111.5,11.5 - parent: 0 - type: Transform -- uid: 32721 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 112.5,11.5 - parent: 0 - type: Transform -- uid: 32722 - type: PlushieRGBee - components: - - pos: 116.4777,12.51419 - parent: 0 - type: Transform -- uid: 32723 - type: ClothingEyesGlassesGarGiga - components: - - pos: 117.368324,10.592315 - parent: 0 - type: Transform -- uid: 32724 - type: SynthesizerInstrument - components: - - pos: 115.1027,10.623565 - parent: 0 - type: Transform -- uid: 32725 - type: ChairFoldingSpawnFolded - components: - - pos: 115.43746,12.669756 - parent: 0 - type: Transform -- uid: 32726 - type: ChairFoldingSpawnFolded - components: - - pos: 115.43746,12.810381 - parent: 0 - type: Transform -- uid: 32727 - type: ChairFoldingSpawnFolded - components: - - pos: 115.43746,12.935381 - parent: 0 - type: Transform -- uid: 32728 - type: CrateEngineeringCableBulk - components: - - pos: 108.5,12.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32729 - type: CrateEngineeringSingularityEmitter - components: - - pos: 106.5,12.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32730 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 108.5,10.5 - parent: 0 - type: Transform -- uid: 32731 - type: WoodDoor - components: - - pos: 99.5,14.5 - parent: 0 - type: Transform -- uid: 32732 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 96.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32733 - type: AirlockMaintLocked - components: - - pos: 102.5,37.5 - parent: 0 - type: Transform -- uid: 32734 - type: ClosetMaintenanceFilledRandom - components: - - pos: 89.5,25.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32735 - type: FirelockGlass - components: - - pos: 103.5,33.5 - parent: 0 - type: Transform -- uid: 32736 - type: FirelockGlass - components: - - pos: 110.5,33.5 - parent: 0 - type: Transform -- uid: 32737 - type: AirlockMaintLocked - components: - - pos: 104.5,30.5 - parent: 0 - type: Transform -- uid: 32738 - type: AirlockMaintLocked - components: - - pos: 108.5,30.5 - parent: 0 - type: Transform -- uid: 32739 - type: Rack - components: - - pos: 107.5,29.5 - parent: 0 - type: Transform -- uid: 32740 - type: lantern - components: - - pos: 107.51552,29.738718 - parent: 0 - type: Transform -- uid: 32741 - type: CrateFilledSpawner - components: - - pos: 105.5,29.5 - parent: 0 - type: Transform -- uid: 32742 - type: CrateFilledSpawner - components: - - pos: 107.5,31.5 - parent: 0 - type: Transform -- uid: 32743 - type: CrateEmptySpawner - components: - - pos: 105.5,28.5 - parent: 0 - type: Transform -- uid: 32744 - type: CrateEmptySpawner - components: - - pos: 105.5,31.5 - parent: 0 - type: Transform -- uid: 32745 - type: CrateEmptySpawner - components: - - pos: 105.5,32.5 - parent: 0 - type: Transform -- uid: 32746 - type: CrateEmptySpawner - components: - - pos: 107.5,32.5 - parent: 0 - type: Transform -- uid: 32747 - type: Catwalk - components: - - pos: 102.5,36.5 - parent: 0 - type: Transform -- uid: 32748 - type: NitrogenCanister - components: - - pos: 106.5,36.5 - parent: 0 - type: Transform -- uid: 32749 - type: OxygenCanister - components: - - pos: 105.5,36.5 - parent: 0 - type: Transform -- uid: 32750 - type: AirCanister - components: - - pos: 107.5,36.5 - parent: 0 - type: Transform -- uid: 32751 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 108.5,36.5 - parent: 0 - type: Transform -- uid: 32752 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 104.5,36.5 - parent: 0 - type: Transform -- uid: 32753 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: 108.5,36.5 - parent: 0 - type: Transform -- uid: 32754 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: 109.5,36.5 - parent: 0 - type: Transform -- uid: 32755 - type: ClothingHeadHatUshanka - components: - - pos: 108.489624,36.67262 - parent: 0 - type: Transform -- uid: 32756 - type: ClothingHeadHatUshanka - components: - - pos: 108.6615,36.51637 - parent: 0 - type: Transform -- uid: 32757 - type: MaintenanceFluffSpawner - components: - - pos: 112.5,34.5 - parent: 0 - type: Transform -- uid: 32758 - type: GrilleBroken - components: - - pos: 101.5,25.5 - parent: 0 - type: Transform -- uid: 32759 - type: LampGold - components: - - pos: 98.42219,24.980545 - parent: 0 - type: Transform -- uid: 32760 - type: ClosetFireFilled - components: - - pos: 103.5,25.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32761 - type: ClosetEmergencyFilledRandom - components: - - pos: 103.5,26.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32762 - type: ComputerSolarControl - components: - - pos: 113.5,32.5 - parent: 0 - type: Transform -- uid: 32763 - type: Catwalk - components: - - pos: 119.5,25.5 - parent: 0 - type: Transform -- uid: 32764 - type: Catwalk - components: - - pos: 118.5,25.5 - parent: 0 - type: Transform -- uid: 32765 - type: Catwalk - components: - - pos: 118.5,26.5 - parent: 0 - type: Transform -- uid: 32766 - type: Catwalk - components: - - pos: 118.5,27.5 - parent: 0 - type: Transform -- uid: 32767 - type: Catwalk - components: - - pos: 118.5,28.5 - parent: 0 - type: Transform -- uid: 32768 - type: Catwalk - components: - - pos: 118.5,29.5 - parent: 0 - type: Transform -- uid: 32769 - type: Catwalk - components: - - pos: 118.5,30.5 - parent: 0 - type: Transform -- uid: 32770 - type: Catwalk - components: - - pos: 118.5,31.5 - parent: 0 - type: Transform -- uid: 32771 - type: Catwalk - components: - - pos: 116.5,31.5 - parent: 0 - type: Transform -- uid: 32772 - type: OxygenCanister - components: - - pos: 116.5,32.5 - parent: 0 - type: Transform -- uid: 32773 - type: ClosetEmergencyFilledRandom - components: - - pos: 112.5,32.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32774 - type: ToySpawner - components: - - pos: 105.5,26.5 - parent: 0 - type: Transform -- uid: 32775 - type: ToySpawner - components: - - pos: 110.5,28.5 - parent: 0 - type: Transform -- uid: 32776 - type: FigureSpawner - components: - - pos: 113.5,23.5 - parent: 0 - type: Transform -- uid: 32777 - type: PoweredSmallLight - components: - - pos: 94.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32778 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 106.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32779 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 106.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32780 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 113.5,30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32781 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 116.5,30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32782 - type: Poweredlight - components: - - pos: 103.5,44.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32783 - type: Poweredlight - components: - - pos: 108.5,44.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32784 - type: Poweredlight - components: - - pos: 112.5,44.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 32785 - type: WeldingFuelTankFull - components: - - pos: 72.5,29.5 - parent: 0 - type: Transform -- uid: 32786 - type: WaterTankFull - components: - - pos: 72.5,27.5 - parent: 0 - type: Transform -- uid: 32787 - type: Rack - components: - - pos: 72.5,28.5 - parent: 0 - type: Transform -- uid: 32788 - type: MaintenanceToolSpawner - components: - - pos: 72.5,28.5 - parent: 0 - type: Transform -- uid: 32789 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 75.5,22.5 - parent: 0 - type: Transform -- uid: 32790 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 75.5,23.5 - parent: 0 - type: Transform -- uid: 32791 - type: ClosetRadiationSuitFilled - components: - - pos: 68.5,0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32792 - type: CrateEngineeringElectricalSupplies - components: - - pos: 68.5,-1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 3.0603204 - - 11.512634 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 32793 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: 66.5,0.5 - parent: 0 - type: Transform -- uid: 32794 - type: TableCarpet - components: - - pos: 66.5,-1.5 - parent: 0 - type: Transform -- uid: 32795 - type: d20Dice - components: - - pos: 66.42997,-1.41395 - parent: 0 - type: Transform -- uid: 32796 - type: MaintenanceFluffSpawner - components: - - pos: 71.5,4.5 - parent: 0 - type: Transform -- uid: 32797 - type: ClothingUniformJumpsuitColorDarkGreen - components: - - pos: 97.3807,18.664818 - parent: 0 - type: Transform -- uid: 32798 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 96.5,4.5 - parent: 0 - type: Transform -- uid: 32799 - type: CableMV - components: - - pos: 95.5,1.5 - parent: 0 - type: Transform -- uid: 32800 - type: CableMV - components: - - pos: 95.5,2.5 - parent: 0 - type: Transform -- uid: 32801 - type: CableMV - components: - - pos: 95.5,3.5 - parent: 0 - type: Transform -- uid: 32802 - type: CableMV - components: - - pos: 95.5,4.5 - parent: 0 - type: Transform -- uid: 32803 - type: CableMV - components: - - pos: 96.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32804 - type: CableApcExtension - components: - - pos: 96.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32805 - type: CableApcExtension - components: - - pos: 96.5,5.5 - parent: 0 - type: Transform -- uid: 32806 - type: CableApcExtension - components: - - pos: 96.5,6.5 - parent: 0 - type: Transform -- uid: 32807 - type: CableApcExtension - components: - - pos: 97.5,5.5 - parent: 0 - type: Transform -- uid: 32808 - type: CableApcExtension - components: - - pos: 98.5,5.5 - parent: 0 - type: Transform -- uid: 32809 - type: CableApcExtension - components: - - pos: 99.5,5.5 - parent: 0 - type: Transform -- uid: 32810 - type: CableApcExtension - components: - - pos: 100.5,5.5 - parent: 0 - type: Transform -- uid: 32811 - type: CableApcExtension - components: - - pos: 101.5,5.5 - parent: 0 - type: Transform -- uid: 32812 - type: CableApcExtension - components: - - pos: 102.5,5.5 - parent: 0 - type: Transform -- uid: 32813 - type: CableApcExtension - components: - - pos: 103.5,5.5 - parent: 0 - type: Transform -- uid: 32814 - type: CableApcExtension - components: - - pos: 104.5,5.5 - parent: 0 - type: Transform -- uid: 32815 - type: CableApcExtension - components: - - pos: 105.5,5.5 - parent: 0 - type: Transform -- uid: 32816 - type: CableApcExtension - components: - - pos: 106.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32817 - type: CableApcExtension - components: - - pos: 107.5,5.5 - parent: 0 - type: Transform -- uid: 32818 - type: CableApcExtension - components: - - pos: 108.5,5.5 - parent: 0 - type: Transform -- uid: 32819 - type: CableApcExtension - components: - - pos: 109.5,5.5 - parent: 0 - type: Transform -- uid: 32820 - type: CableApcExtension - components: - - pos: 110.5,5.5 - parent: 0 - type: Transform -- uid: 32821 - type: CableHV - components: - - pos: 28.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32822 - type: CableHV - components: - - pos: 29.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32823 - type: CableHV - components: - - pos: 30.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32824 - type: CableHV - components: - - pos: 31.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32825 - type: CableMV - components: - - pos: 31.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32826 - type: CableMV - components: - - pos: 30.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32827 - type: CableMV - components: - - pos: 29.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32828 - type: CableMV - components: - - pos: 28.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32829 - type: CableMV - components: - - pos: 27.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32830 - type: CableMV - components: - - pos: 26.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32831 - type: CableMV - components: - - pos: 25.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32832 - type: CableMV - components: - - pos: 24.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32833 - type: CableMV - components: - - pos: 23.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32834 - type: CableMV - components: - - pos: 22.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32835 - type: CableMV - components: - - pos: 22.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32836 - type: CableMV - components: - - pos: 22.5,68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32837 - type: CableMV - components: - - pos: 22.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32838 - type: Catwalk - components: - - pos: 51.5,76.5 - parent: 0 - type: Transform -- uid: 32839 - type: Catwalk - components: - - pos: 51.5,80.5 - parent: 0 - type: Transform -- uid: 32840 - type: Catwalk - components: - - pos: 53.5,80.5 - parent: 0 - type: Transform -- uid: 32841 - type: Catwalk - components: - - pos: 53.5,84.5 - parent: 0 - type: Transform -- uid: 32842 - type: Catwalk - components: - - pos: 51.5,84.5 - parent: 0 - type: Transform -- uid: 32843 - type: Catwalk - components: - - pos: 42.5,76.5 - parent: 0 - type: Transform -- uid: 32844 - type: Catwalk - components: - - pos: 43.5,76.5 - parent: 0 - type: Transform -- uid: 32845 - type: Catwalk - components: - - pos: 44.5,76.5 - parent: 0 - type: Transform -- uid: 32846 - type: Catwalk - components: - - pos: 45.5,76.5 - parent: 0 - type: Transform -- uid: 32847 - type: Catwalk - components: - - pos: 46.5,76.5 - parent: 0 - type: Transform -- uid: 32848 - type: Catwalk - components: - - pos: 47.5,76.5 - parent: 0 - type: Transform -- uid: 32849 - type: Catwalk - components: - - pos: 48.5,76.5 - parent: 0 - type: Transform -- uid: 32850 - type: Catwalk - components: - - pos: 49.5,76.5 - parent: 0 - type: Transform -- uid: 32851 - type: Catwalk - components: - - pos: 50.5,76.5 - parent: 0 - type: Transform -- uid: 32852 - type: Catwalk - components: - - pos: 54.5,76.5 - parent: 0 - type: Transform -- uid: 32853 - type: Catwalk - components: - - pos: 55.5,76.5 - parent: 0 - type: Transform -- uid: 32854 - type: Catwalk - components: - - pos: 56.5,76.5 - parent: 0 - type: Transform -- uid: 32855 - type: Catwalk - components: - - pos: 57.5,76.5 - parent: 0 - type: Transform -- uid: 32856 - type: Catwalk - components: - - pos: 58.5,76.5 - parent: 0 - type: Transform -- uid: 32857 - type: Catwalk - components: - - pos: 59.5,76.5 - parent: 0 - type: Transform -- uid: 32858 - type: Catwalk - components: - - pos: 60.5,76.5 - parent: 0 - type: Transform -- uid: 32859 - type: Catwalk - components: - - pos: 61.5,76.5 - parent: 0 - type: Transform -- uid: 32860 - type: Catwalk - components: - - pos: 62.5,76.5 - parent: 0 - type: Transform -- uid: 32861 - type: Catwalk - components: - - pos: 62.5,80.5 - parent: 0 - type: Transform -- uid: 32862 - type: Catwalk - components: - - pos: 61.5,80.5 - parent: 0 - type: Transform -- uid: 32863 - type: Catwalk - components: - - pos: 60.5,80.5 - parent: 0 - type: Transform -- uid: 32864 - type: Catwalk - components: - - pos: 59.5,80.5 - parent: 0 - type: Transform -- uid: 32865 - type: Catwalk - components: - - pos: 58.5,80.5 - parent: 0 - type: Transform -- uid: 32866 - type: Catwalk - components: - - pos: 57.5,80.5 - parent: 0 - type: Transform -- uid: 32867 - type: Catwalk - components: - - pos: 56.5,80.5 - parent: 0 - type: Transform -- uid: 32868 - type: Catwalk - components: - - pos: 55.5,80.5 - parent: 0 - type: Transform -- uid: 32869 - type: Catwalk - components: - - pos: 54.5,80.5 - parent: 0 - type: Transform -- uid: 32870 - type: Catwalk - components: - - pos: 50.5,80.5 - parent: 0 - type: Transform -- uid: 32871 - type: Catwalk - components: - - pos: 49.5,80.5 - parent: 0 - type: Transform -- uid: 32872 - type: Catwalk - components: - - pos: 48.5,80.5 - parent: 0 - type: Transform -- uid: 32873 - type: Catwalk - components: - - pos: 47.5,80.5 - parent: 0 - type: Transform -- uid: 32874 - type: Catwalk - components: - - pos: 46.5,80.5 - parent: 0 - type: Transform -- uid: 32875 - type: Catwalk - components: - - pos: 45.5,80.5 - parent: 0 - type: Transform -- uid: 32876 - type: Catwalk - components: - - pos: 44.5,80.5 - parent: 0 - type: Transform -- uid: 32877 - type: Catwalk - components: - - pos: 43.5,80.5 - parent: 0 - type: Transform -- uid: 32878 - type: Catwalk - components: - - pos: 42.5,80.5 - parent: 0 - type: Transform -- uid: 32879 - type: Catwalk - components: - - pos: 42.5,84.5 - parent: 0 - type: Transform -- uid: 32880 - type: Catwalk - components: - - pos: 43.5,84.5 - parent: 0 - type: Transform -- uid: 32881 - type: Catwalk - components: - - pos: 44.5,84.5 - parent: 0 - type: Transform -- uid: 32882 - type: Catwalk - components: - - pos: 45.5,84.5 - parent: 0 - type: Transform -- uid: 32883 - type: Catwalk - components: - - pos: 46.5,84.5 - parent: 0 - type: Transform -- uid: 32884 - type: Catwalk - components: - - pos: 47.5,84.5 - parent: 0 - type: Transform -- uid: 32885 - type: Catwalk - components: - - pos: 48.5,84.5 - parent: 0 - type: Transform -- uid: 32886 - type: Catwalk - components: - - pos: 49.5,84.5 - parent: 0 - type: Transform -- uid: 32887 - type: Catwalk - components: - - pos: 50.5,84.5 - parent: 0 - type: Transform -- uid: 32888 - type: Catwalk - components: - - pos: 54.5,84.5 - parent: 0 - type: Transform -- uid: 32889 - type: Catwalk - components: - - pos: 55.5,84.5 - parent: 0 - type: Transform -- uid: 32890 - type: Catwalk - components: - - pos: 56.5,84.5 - parent: 0 - type: Transform -- uid: 32891 - type: Catwalk - components: - - pos: 57.5,84.5 - parent: 0 - type: Transform -- uid: 32892 - type: Catwalk - components: - - pos: 58.5,84.5 - parent: 0 - type: Transform -- uid: 32893 - type: Catwalk - components: - - pos: 59.5,84.5 - parent: 0 - type: Transform -- uid: 32894 - type: Catwalk - components: - - pos: 60.5,84.5 - parent: 0 - type: Transform -- uid: 32895 - type: Catwalk - components: - - pos: 61.5,84.5 - parent: 0 - type: Transform -- uid: 32896 - type: Catwalk - components: - - pos: 62.5,84.5 - parent: 0 - type: Transform -- uid: 32897 - type: Catwalk - components: - - pos: 40.5,73.5 - parent: 0 - type: Transform -- uid: 32898 - type: Grille - components: - - pos: 63.5,73.5 - parent: 0 - type: Transform -- uid: 32899 - type: Catwalk - components: - - pos: 40.5,87.5 - parent: 0 - type: Transform -- uid: 32900 - type: Catwalk - components: - - pos: 64.5,87.5 - parent: 0 - type: Transform -- uid: 32901 - type: Catwalk - components: - - pos: 52.5,86.5 - parent: 0 - type: Transform -- uid: 32902 - type: Catwalk - components: - - pos: 52.5,87.5 - parent: 0 - type: Transform -- uid: 32903 - type: Catwalk - components: - - pos: 52.5,90.5 - parent: 0 - type: Transform -- uid: 32904 - type: Catwalk - components: - - pos: 64.5,73.5 - parent: 0 - type: Transform -- uid: 32905 - type: Grille - components: - - pos: 50.5,89.5 - parent: 0 - type: Transform -- uid: 32906 - type: Grille - components: - - pos: 50.5,90.5 - parent: 0 - type: Transform -- uid: 32907 - type: Grille - components: - - pos: 51.5,90.5 - parent: 0 - type: Transform -- uid: 32908 - type: Grille - components: - - pos: 53.5,90.5 - parent: 0 - type: Transform -- uid: 32909 - type: Grille - components: - - pos: 54.5,90.5 - parent: 0 - type: Transform -- uid: 32910 - type: Grille - components: - - pos: 54.5,89.5 - parent: 0 - type: Transform -- uid: 32911 - type: Grille - components: - - pos: 49.5,87.5 - parent: 0 - type: Transform -- uid: 32912 - type: Grille - components: - - pos: 48.5,87.5 - parent: 0 - type: Transform -- uid: 32913 - type: Grille - components: - - pos: 47.5,87.5 - parent: 0 - type: Transform -- uid: 32914 - type: Grille - components: - - pos: 46.5,87.5 - parent: 0 - type: Transform -- uid: 32915 - type: Grille - components: - - pos: 45.5,87.5 - parent: 0 - type: Transform -- uid: 32916 - type: Grille - components: - - pos: 44.5,87.5 - parent: 0 - type: Transform -- uid: 32917 - type: Grille - components: - - pos: 43.5,87.5 - parent: 0 - type: Transform -- uid: 32918 - type: Grille - components: - - pos: 42.5,87.5 - parent: 0 - type: Transform -- uid: 32919 - type: Grille - components: - - pos: 41.5,87.5 - parent: 0 - type: Transform -- uid: 32920 - type: Grille - components: - - pos: 40.5,86.5 - parent: 0 - type: Transform -- uid: 32921 - type: Grille - components: - - pos: 40.5,85.5 - parent: 0 - type: Transform -- uid: 32922 - type: Grille - components: - - pos: 40.5,84.5 - parent: 0 - type: Transform -- uid: 32923 - type: Grille - components: - - pos: 40.5,83.5 - parent: 0 - type: Transform -- uid: 32924 - type: Grille - components: - - pos: 55.5,87.5 - parent: 0 - type: Transform -- uid: 32925 - type: Grille - components: - - pos: 56.5,87.5 - parent: 0 - type: Transform -- uid: 32926 - type: Grille - components: - - pos: 57.5,87.5 - parent: 0 - type: Transform -- uid: 32927 - type: Grille - components: - - pos: 58.5,87.5 - parent: 0 - type: Transform -- uid: 32928 - type: Grille - components: - - pos: 59.5,87.5 - parent: 0 - type: Transform -- uid: 32929 - type: Grille - components: - - pos: 60.5,87.5 - parent: 0 - type: Transform -- uid: 32930 - type: Grille - components: - - pos: 61.5,87.5 - parent: 0 - type: Transform -- uid: 32931 - type: Grille - components: - - pos: 62.5,87.5 - parent: 0 - type: Transform -- uid: 32932 - type: Grille - components: - - pos: 63.5,87.5 - parent: 0 - type: Transform -- uid: 32933 - type: Grille - components: - - pos: 64.5,86.5 - parent: 0 - type: Transform -- uid: 32934 - type: Grille - components: - - pos: 64.5,85.5 - parent: 0 - type: Transform -- uid: 32935 - type: Grille - components: - - pos: 64.5,84.5 - parent: 0 - type: Transform -- uid: 32936 - type: Grille - components: - - pos: 64.5,83.5 - parent: 0 - type: Transform -- uid: 32937 - type: Grille - components: - - pos: 40.5,80.5 - parent: 0 - type: Transform -- uid: 32938 - type: Grille - components: - - pos: 40.5,79.5 - parent: 0 - type: Transform -- uid: 32939 - type: Grille - components: - - pos: 40.5,78.5 - parent: 0 - type: Transform -- uid: 32940 - type: Grille - components: - - pos: 40.5,77.5 - parent: 0 - type: Transform -- uid: 32941 - type: Grille - components: - - pos: 40.5,76.5 - parent: 0 - type: Transform -- uid: 32942 - type: Grille - components: - - pos: 40.5,75.5 - parent: 0 - type: Transform -- uid: 32943 - type: Grille - components: - - pos: 40.5,74.5 - parent: 0 - type: Transform -- uid: 32944 - type: Grille - components: - - pos: 64.5,80.5 - parent: 0 - type: Transform -- uid: 32945 - type: Grille - components: - - pos: 64.5,79.5 - parent: 0 - type: Transform -- uid: 32946 - type: Grille - components: - - pos: 64.5,78.5 - parent: 0 - type: Transform -- uid: 32947 - type: Grille - components: - - pos: 64.5,77.5 - parent: 0 - type: Transform -- uid: 32948 - type: Grille - components: - - pos: 64.5,76.5 - parent: 0 - type: Transform -- uid: 32949 - type: Grille - components: - - pos: 64.5,75.5 - parent: 0 - type: Transform -- uid: 32950 - type: Grille - components: - - pos: 64.5,74.5 - parent: 0 - type: Transform -- uid: 32951 - type: Grille - components: - - pos: 62.5,73.5 - parent: 0 - type: Transform -- uid: 32952 - type: Grille - components: - - pos: 61.5,73.5 - parent: 0 - type: Transform -- uid: 32953 - type: Grille - components: - - pos: 60.5,73.5 - parent: 0 - type: Transform -- uid: 32954 - type: Grille - components: - - pos: 59.5,73.5 - parent: 0 - type: Transform -- uid: 32955 - type: Grille - components: - - pos: 58.5,73.5 - parent: 0 - type: Transform -- uid: 32956 - type: Grille - components: - - pos: 57.5,73.5 - parent: 0 - type: Transform -- uid: 32957 - type: Grille - components: - - pos: 56.5,73.5 - parent: 0 - type: Transform -- uid: 32958 - type: Grille - components: - - pos: 55.5,73.5 - parent: 0 - type: Transform -- uid: 32959 - type: Grille - components: - - pos: 54.5,73.5 - parent: 0 - type: Transform -- uid: 32960 - type: Grille - components: - - pos: 48.5,73.5 - parent: 0 - type: Transform -- uid: 32961 - type: Grille - components: - - pos: 47.5,73.5 - parent: 0 - type: Transform -- uid: 32962 - type: Grille - components: - - pos: 46.5,73.5 - parent: 0 - type: Transform -- uid: 32963 - type: Grille - components: - - pos: 45.5,73.5 - parent: 0 - type: Transform -- uid: 32964 - type: Grille - components: - - pos: 44.5,73.5 - parent: 0 - type: Transform -- uid: 32965 - type: Grille - components: - - pos: 43.5,73.5 - parent: 0 - type: Transform -- uid: 32966 - type: Grille - components: - - pos: 42.5,73.5 - parent: 0 - type: Transform -- uid: 32967 - type: Grille - components: - - pos: 41.5,73.5 - parent: 0 - type: Transform -- uid: 32968 - type: Grille - components: - - pos: 49.5,73.5 - parent: 0 - type: Transform -- uid: 32969 - type: Grille - components: - - pos: 50.5,73.5 - parent: 0 - type: Transform -- uid: 32970 - type: AlwaysPoweredLightSodium - components: - - rot: 3.141592653589793 rad - pos: 40.5,70.5 - parent: 0 - type: Transform -- uid: 32971 - type: CableHV - components: - - pos: 50.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32972 - type: CableHV - components: - - pos: 49.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32973 - type: CableHV - components: - - pos: 48.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32974 - type: CableHV - components: - - pos: 47.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32975 - type: CableHV - components: - - pos: 46.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32976 - type: CableHV - components: - - pos: 45.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32977 - type: CableHV - components: - - pos: 44.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32978 - type: CableHV - components: - - pos: 43.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32979 - type: CableHV - components: - - pos: 42.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32980 - type: CableHV - components: - - pos: 42.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32981 - type: CableHV - components: - - pos: 43.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32982 - type: CableHV - components: - - pos: 44.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32983 - type: CableHV - components: - - pos: 45.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32984 - type: CableHV - components: - - pos: 46.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32985 - type: CableHV - components: - - pos: 47.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32986 - type: CableHV - components: - - pos: 48.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32987 - type: CableHV - components: - - pos: 49.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32988 - type: CableHV - components: - - pos: 50.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32989 - type: CableHV - components: - - pos: 50.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32990 - type: CableHV - components: - - pos: 49.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32991 - type: CableHV - components: - - pos: 48.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32992 - type: CableHV - components: - - pos: 47.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32993 - type: CableHV - components: - - pos: 46.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32994 - type: CableHV - components: - - pos: 45.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32995 - type: CableHV - components: - - pos: 44.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32996 - type: CableHV - components: - - pos: 43.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32997 - type: CableHV - components: - - pos: 42.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32998 - type: CableHV - components: - - pos: 42.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 32999 - type: CableHV - components: - - pos: 43.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33000 - type: CableHV - components: - - pos: 44.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33001 - type: CableHV - components: - - pos: 45.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33002 - type: CableHV - components: - - pos: 46.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33003 - type: CableHV - components: - - pos: 47.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33004 - type: CableHV - components: - - pos: 48.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33005 - type: CableHV - components: - - pos: 49.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33006 - type: CableHV - components: - - pos: 50.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33007 - type: CableHV - components: - - pos: 50.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33008 - type: CableHV - components: - - pos: 49.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33009 - type: CableHV - components: - - pos: 48.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33010 - type: CableHV - components: - - pos: 47.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33011 - type: CableHV - components: - - pos: 46.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33012 - type: CableHV - components: - - pos: 45.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33013 - type: CableHV - components: - - pos: 44.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33014 - type: CableHV - components: - - pos: 43.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33015 - type: CableHV - components: - - pos: 42.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33016 - type: CableHV - components: - - pos: 42.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33017 - type: CableHV - components: - - pos: 43.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33018 - type: CableHV - components: - - pos: 44.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33019 - type: CableHV - components: - - pos: 45.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33020 - type: CableHV - components: - - pos: 46.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33021 - type: CableHV - components: - - pos: 47.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33022 - type: CableHV - components: - - pos: 48.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33023 - type: CableHV - components: - - pos: 49.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33024 - type: CableHV - components: - - pos: 50.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33025 - type: CableHV - components: - - pos: 54.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33026 - type: CableHV - components: - - pos: 55.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33027 - type: CableHV - components: - - pos: 56.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33028 - type: CableHV - components: - - pos: 57.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33029 - type: CableHV - components: - - pos: 58.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33030 - type: CableHV - components: - - pos: 59.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33031 - type: CableHV - components: - - pos: 60.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33032 - type: CableHV - components: - - pos: 61.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33033 - type: CableHV - components: - - pos: 62.5,85.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33034 - type: CableHV - components: - - pos: 62.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33035 - type: CableHV - components: - - pos: 61.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33036 - type: CableHV - components: - - pos: 60.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33037 - type: CableHV - components: - - pos: 59.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33038 - type: CableHV - components: - - pos: 58.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33039 - type: CableHV - components: - - pos: 57.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33040 - type: CableHV - components: - - pos: 56.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33041 - type: CableHV - components: - - pos: 55.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33042 - type: CableHV - components: - - pos: 54.5,83.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33043 - type: CableHV - components: - - pos: 54.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33044 - type: CableHV - components: - - pos: 55.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33045 - type: CableHV - components: - - pos: 56.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33046 - type: CableHV - components: - - pos: 57.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33047 - type: CableHV - components: - - pos: 58.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33048 - type: CableHV - components: - - pos: 59.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33049 - type: CableHV - components: - - pos: 60.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33050 - type: CableHV - components: - - pos: 61.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33051 - type: CableHV - components: - - pos: 62.5,81.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33052 - type: CableHV - components: - - pos: 62.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33053 - type: CableHV - components: - - pos: 61.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33054 - type: CableHV - components: - - pos: 60.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33055 - type: CableHV - components: - - pos: 59.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33056 - type: CableHV - components: - - pos: 58.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33057 - type: CableHV - components: - - pos: 57.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33058 - type: CableHV - components: - - pos: 56.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33059 - type: CableHV - components: - - pos: 55.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33060 - type: CableHV - components: - - pos: 54.5,79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33061 - type: CableHV - components: - - pos: 62.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33062 - type: CableHV - components: - - pos: 61.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33063 - type: CableHV - components: - - pos: 60.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33064 - type: CableHV - components: - - pos: 59.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33065 - type: CableHV - components: - - pos: 58.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33066 - type: CableHV - components: - - pos: 57.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33067 - type: CableHV - components: - - pos: 56.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33068 - type: CableHV - components: - - pos: 55.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33069 - type: CableHV - components: - - pos: 54.5,77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33070 - type: CableHV - components: - - pos: 62.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33071 - type: CableHV - components: - - pos: 61.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33072 - type: CableHV - components: - - pos: 60.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33073 - type: CableHV - components: - - pos: 59.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33074 - type: CableHV - components: - - pos: 58.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33075 - type: CableHV - components: - - pos: 57.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33076 - type: CableHV - components: - - pos: 56.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33077 - type: CableHV - components: - - pos: 55.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33078 - type: CableHV - components: - - pos: 54.5,75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33079 - type: CableHV - components: - - pos: 54.5,76.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33080 - type: CableHV - components: - - pos: 53.5,76.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33081 - type: CableHV - components: - - pos: 51.5,76.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33082 - type: CableHV - components: - - pos: 50.5,76.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33083 - type: CableHV - components: - - pos: 50.5,80.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33084 - type: CableHV - components: - - pos: 51.5,80.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33085 - type: CableHV - components: - - pos: 53.5,80.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33086 - type: CableHV - components: - - pos: 54.5,80.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33087 - type: CableHV - components: - - pos: 54.5,84.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33088 - type: CableHV - components: - - pos: 53.5,84.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33089 - type: CableHV - components: - - pos: 50.5,84.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33090 - type: CableHV - components: - - pos: 51.5,84.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33091 - type: CableHV - components: - - pos: 52.5,87.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33092 - type: CableHV - components: - - pos: 52.5,88.5 - parent: 0 - type: Transform -- uid: 33093 - type: CableHV - components: - - pos: 52.5,86.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33094 - type: SolarTracker - components: - - pos: 52.5,88.5 - parent: 0 - type: Transform -- uid: 33095 - type: SolarPanel - components: - - pos: 42.5,85.5 - parent: 0 - type: Transform -- uid: 33096 - type: SolarPanel - components: - - pos: 43.5,85.5 - parent: 0 - type: Transform -- uid: 33097 - type: SolarPanel - components: - - pos: 44.5,85.5 - parent: 0 - type: Transform -- uid: 33098 - type: SolarPanel - components: - - pos: 45.5,85.5 - parent: 0 - type: Transform -- uid: 33099 - type: SolarPanel - components: - - pos: 46.5,85.5 - parent: 0 - type: Transform -- uid: 33100 - type: SolarPanel - components: - - pos: 47.5,85.5 - parent: 0 - type: Transform -- uid: 33101 - type: SolarPanel - components: - - pos: 48.5,85.5 - parent: 0 - type: Transform -- uid: 33102 - type: SolarPanel - components: - - pos: 49.5,85.5 - parent: 0 - type: Transform -- uid: 33103 - type: SolarPanel - components: - - pos: 50.5,85.5 - parent: 0 - type: Transform -- uid: 33104 - type: SolarPanel - components: - - pos: 42.5,83.5 - parent: 0 - type: Transform -- uid: 33105 - type: SolarPanel - components: - - pos: 43.5,83.5 - parent: 0 - type: Transform -- uid: 33106 - type: SolarPanel - components: - - pos: 44.5,83.5 - parent: 0 - type: Transform -- uid: 33107 - type: SolarPanel - components: - - pos: 45.5,83.5 - parent: 0 - type: Transform -- uid: 33108 - type: SolarPanel - components: - - pos: 46.5,83.5 - parent: 0 - type: Transform -- uid: 33109 - type: SolarPanel - components: - - pos: 47.5,83.5 - parent: 0 - type: Transform -- uid: 33110 - type: SolarPanel - components: - - pos: 48.5,83.5 - parent: 0 - type: Transform -- uid: 33111 - type: SolarPanel - components: - - pos: 49.5,83.5 - parent: 0 - type: Transform -- uid: 33112 - type: SolarPanel - components: - - pos: 50.5,83.5 - parent: 0 - type: Transform -- uid: 33113 - type: SolarPanel - components: - - pos: 54.5,85.5 - parent: 0 - type: Transform -- uid: 33114 - type: SolarPanel - components: - - pos: 55.5,85.5 - parent: 0 - type: Transform -- uid: 33115 - type: SolarPanel - components: - - pos: 56.5,85.5 - parent: 0 - type: Transform -- uid: 33116 - type: SolarPanel - components: - - pos: 57.5,85.5 - parent: 0 - type: Transform -- uid: 33117 - type: SolarPanel - components: - - pos: 58.5,85.5 - parent: 0 - type: Transform -- uid: 33118 - type: SolarPanel - components: - - pos: 59.5,85.5 - parent: 0 - type: Transform -- uid: 33119 - type: SolarPanel - components: - - pos: 60.5,85.5 - parent: 0 - type: Transform -- uid: 33120 - type: SolarPanel - components: - - pos: 61.5,85.5 - parent: 0 - type: Transform -- uid: 33121 - type: SolarPanel - components: - - pos: 62.5,85.5 - parent: 0 - type: Transform -- uid: 33122 - type: SolarPanel - components: - - pos: 62.5,83.5 - parent: 0 - type: Transform -- uid: 33123 - type: SolarPanel - components: - - pos: 61.5,83.5 - parent: 0 - type: Transform -- uid: 33124 - type: SolarPanel - components: - - pos: 60.5,83.5 - parent: 0 - type: Transform -- uid: 33125 - type: SolarPanel - components: - - pos: 59.5,83.5 - parent: 0 - type: Transform -- uid: 33126 - type: SolarPanel - components: - - pos: 58.5,83.5 - parent: 0 - type: Transform -- uid: 33127 - type: SolarPanel - components: - - pos: 57.5,83.5 - parent: 0 - type: Transform -- uid: 33128 - type: SolarPanel - components: - - pos: 56.5,83.5 - parent: 0 - type: Transform -- uid: 33129 - type: SolarPanel - components: - - pos: 55.5,83.5 - parent: 0 - type: Transform -- uid: 33130 - type: SolarPanel - components: - - pos: 54.5,83.5 - parent: 0 - type: Transform -- uid: 33131 - type: SolarPanel - components: - - pos: 62.5,81.5 - parent: 0 - type: Transform -- uid: 33132 - type: SolarPanel - components: - - pos: 61.5,81.5 - parent: 0 - type: Transform -- uid: 33133 - type: SolarPanel - components: - - pos: 60.5,81.5 - parent: 0 - type: Transform -- uid: 33134 - type: SolarPanel - components: - - pos: 59.5,81.5 - parent: 0 - type: Transform -- uid: 33135 - type: SolarPanel - components: - - pos: 58.5,81.5 - parent: 0 - type: Transform -- uid: 33136 - type: SolarPanel - components: - - pos: 57.5,81.5 - parent: 0 - type: Transform -- uid: 33137 - type: SolarPanel - components: - - pos: 56.5,81.5 - parent: 0 - type: Transform -- uid: 33138 - type: SolarPanel - components: - - pos: 55.5,81.5 - parent: 0 - type: Transform -- uid: 33139 - type: SolarPanel - components: - - pos: 54.5,81.5 - parent: 0 - type: Transform -- uid: 33140 - type: SolarPanel - components: - - pos: 54.5,79.5 - parent: 0 - type: Transform -- uid: 33141 - type: SolarPanel - components: - - pos: 55.5,79.5 - parent: 0 - type: Transform -- uid: 33142 - type: SolarPanel - components: - - pos: 56.5,79.5 - parent: 0 - type: Transform -- uid: 33143 - type: SolarPanel - components: - - pos: 57.5,79.5 - parent: 0 - type: Transform -- uid: 33144 - type: SolarPanel - components: - - pos: 58.5,79.5 - parent: 0 - type: Transform -- uid: 33145 - type: SolarPanel - components: - - pos: 59.5,79.5 - parent: 0 - type: Transform -- uid: 33146 - type: SolarPanel - components: - - pos: 60.5,79.5 - parent: 0 - type: Transform -- uid: 33147 - type: SolarPanel - components: - - pos: 61.5,79.5 - parent: 0 - type: Transform -- uid: 33148 - type: SolarPanel - components: - - pos: 62.5,79.5 - parent: 0 - type: Transform -- uid: 33149 - type: SolarPanel - components: - - pos: 50.5,81.5 - parent: 0 - type: Transform -- uid: 33150 - type: SolarPanel - components: - - pos: 49.5,81.5 - parent: 0 - type: Transform -- uid: 33151 - type: SolarPanel - components: - - pos: 48.5,81.5 - parent: 0 - type: Transform -- uid: 33152 - type: SolarPanel - components: - - pos: 47.5,81.5 - parent: 0 - type: Transform -- uid: 33153 - type: SolarPanel - components: - - pos: 46.5,81.5 - parent: 0 - type: Transform -- uid: 33154 - type: SolarPanel - components: - - pos: 45.5,81.5 - parent: 0 - type: Transform -- uid: 33155 - type: SolarPanel - components: - - pos: 44.5,81.5 - parent: 0 - type: Transform -- uid: 33156 - type: SolarPanel - components: - - pos: 43.5,81.5 - parent: 0 - type: Transform -- uid: 33157 - type: SolarPanel - components: - - pos: 42.5,81.5 - parent: 0 - type: Transform -- uid: 33158 - type: SolarPanel - components: - - pos: 42.5,79.5 - parent: 0 - type: Transform -- uid: 33159 - type: SolarPanel - components: - - pos: 43.5,79.5 - parent: 0 - type: Transform -- uid: 33160 - type: SolarPanel - components: - - pos: 44.5,79.5 - parent: 0 - type: Transform -- uid: 33161 - type: SolarPanel - components: - - pos: 45.5,79.5 - parent: 0 - type: Transform -- uid: 33162 - type: SolarPanel - components: - - pos: 46.5,79.5 - parent: 0 - type: Transform -- uid: 33163 - type: SolarPanel - components: - - pos: 47.5,79.5 - parent: 0 - type: Transform -- uid: 33164 - type: SolarPanel - components: - - pos: 48.5,79.5 - parent: 0 - type: Transform -- uid: 33165 - type: SolarPanel - components: - - pos: 49.5,79.5 - parent: 0 - type: Transform -- uid: 33166 - type: SolarPanel - components: - - pos: 50.5,79.5 - parent: 0 - type: Transform -- uid: 33167 - type: SolarPanel - components: - - pos: 42.5,77.5 - parent: 0 - type: Transform -- uid: 33168 - type: SolarPanel - components: - - pos: 43.5,77.5 - parent: 0 - type: Transform -- uid: 33169 - type: SolarPanel - components: - - pos: 44.5,77.5 - parent: 0 - type: Transform -- uid: 33170 - type: SolarPanel - components: - - pos: 45.5,77.5 - parent: 0 - type: Transform -- uid: 33171 - type: SolarPanel - components: - - pos: 46.5,77.5 - parent: 0 - type: Transform -- uid: 33172 - type: SolarPanel - components: - - pos: 47.5,77.5 - parent: 0 - type: Transform -- uid: 33173 - type: SolarPanel - components: - - pos: 48.5,77.5 - parent: 0 - type: Transform -- uid: 33174 - type: SolarPanel - components: - - pos: 49.5,77.5 - parent: 0 - type: Transform -- uid: 33175 - type: SolarPanel - components: - - pos: 50.5,77.5 - parent: 0 - type: Transform -- uid: 33176 - type: SolarPanel - components: - - pos: 50.5,75.5 - parent: 0 - type: Transform -- uid: 33177 - type: SolarPanel - components: - - pos: 49.5,75.5 - parent: 0 - type: Transform -- uid: 33178 - type: SolarPanel - components: - - pos: 48.5,75.5 - parent: 0 - type: Transform -- uid: 33179 - type: SolarPanel - components: - - pos: 47.5,75.5 - parent: 0 - type: Transform -- uid: 33180 - type: SolarPanel - components: - - pos: 46.5,75.5 - parent: 0 - type: Transform -- uid: 33181 - type: SolarPanel - components: - - pos: 45.5,75.5 - parent: 0 - type: Transform -- uid: 33182 - type: SolarPanel - components: - - pos: 44.5,75.5 - parent: 0 - type: Transform -- uid: 33183 - type: SolarPanel - components: - - pos: 43.5,75.5 - parent: 0 - type: Transform -- uid: 33184 - type: SolarPanel - components: - - pos: 42.5,75.5 - parent: 0 - type: Transform -- uid: 33185 - type: SolarPanel - components: - - pos: 54.5,75.5 - parent: 0 - type: Transform -- uid: 33186 - type: SolarPanel - components: - - pos: 55.5,75.5 - parent: 0 - type: Transform -- uid: 33187 - type: SolarPanel - components: - - pos: 56.5,75.5 - parent: 0 - type: Transform -- uid: 33188 - type: SolarPanel - components: - - pos: 57.5,75.5 - parent: 0 - type: Transform -- uid: 33189 - type: SolarPanel - components: - - pos: 58.5,75.5 - parent: 0 - type: Transform -- uid: 33190 - type: SolarPanel - components: - - pos: 59.5,75.5 - parent: 0 - type: Transform -- uid: 33191 - type: SolarPanel - components: - - pos: 60.5,75.5 - parent: 0 - type: Transform -- uid: 33192 - type: SolarPanel - components: - - pos: 61.5,75.5 - parent: 0 - type: Transform -- uid: 33193 - type: SolarPanel - components: - - pos: 62.5,75.5 - parent: 0 - type: Transform -- uid: 33194 - type: SolarPanel - components: - - pos: 62.5,77.5 - parent: 0 - type: Transform -- uid: 33195 - type: SolarPanel - components: - - pos: 61.5,77.5 - parent: 0 - type: Transform -- uid: 33196 - type: SolarPanel - components: - - pos: 60.5,77.5 - parent: 0 - type: Transform -- uid: 33197 - type: SolarPanel - components: - - pos: 59.5,77.5 - parent: 0 - type: Transform -- uid: 33198 - type: SolarPanel - components: - - pos: 58.5,77.5 - parent: 0 - type: Transform -- uid: 33199 - type: SolarPanel - components: - - pos: 57.5,77.5 - parent: 0 - type: Transform -- uid: 33200 - type: SolarPanel - components: - - pos: 56.5,77.5 - parent: 0 - type: Transform -- uid: 33201 - type: SolarPanel - components: - - pos: 55.5,77.5 - parent: 0 - type: Transform -- uid: 33202 - type: SolarPanel - components: - - pos: 54.5,77.5 - parent: 0 - type: Transform -- uid: 33203 - type: CableHV - components: - - pos: 52.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33204 - type: CableHV - components: - - pos: 52.5,73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33205 - type: CableHV - components: - - pos: 52.5,72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33206 - type: CableHV - components: - - pos: 52.5,71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33207 - type: CableHV - components: - - pos: 52.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33208 - type: CableHV - components: - - pos: 52.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33209 - type: CableHV - components: - - pos: 52.5,68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33210 - type: CableHV - components: - - pos: 51.5,68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33211 - type: CableHV - components: - - pos: 51.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33212 - type: CableHV - components: - - pos: 51.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33213 - type: CableHV - components: - - pos: 52.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33214 - type: CableHV - components: - - pos: 52.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33215 - type: CableHV - components: - - pos: 52.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33216 - type: CableHV - components: - - pos: 55.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33217 - type: CableHV - components: - - pos: 55.5,58.5 - parent: 0 - type: Transform -- uid: 33218 - type: CableHV - components: - - pos: 55.5,59.5 - parent: 0 - type: Transform -- uid: 33219 - type: CableHV - components: - - pos: 55.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33220 - type: CableHV - components: - - pos: 55.5,61.5 - parent: 0 - type: Transform -- uid: 33221 - type: CableHV - components: - - pos: 55.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33222 - type: CableHV - components: - - pos: 55.5,63.5 - parent: 0 - type: Transform -- uid: 33223 - type: CableHV - components: - - pos: 54.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33224 - type: CableHV - components: - - pos: 53.5,63.5 - parent: 0 - type: Transform -- uid: 33225 - type: CableHV - components: - - pos: 52.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33226 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 52.5,68.5 - parent: 0 - type: Transform -- uid: 33227 - type: SMESBasic - components: - - pos: 51.5,68.5 - parent: 0 - type: Transform -- uid: 33228 - type: Grille - components: - - pos: 51.5,69.5 - parent: 0 - type: Transform -- uid: 33229 - type: Grille - components: - - pos: 51.5,70.5 - parent: 0 - type: Transform -- uid: 33230 - type: Grille - components: - - pos: 51.5,71.5 - parent: 0 - type: Transform -- uid: 33231 - type: Grille - components: - - pos: 53.5,69.5 - parent: 0 - type: Transform -- uid: 33232 - type: Grille - components: - - pos: 53.5,70.5 - parent: 0 - type: Transform -- uid: 33233 - type: Grille - components: - - pos: 53.5,71.5 - parent: 0 - type: Transform -- uid: 33234 - type: Grille - components: - - pos: 58.5,67.5 - parent: 0 - type: Transform -- uid: 33235 - type: Grille - components: - - pos: 58.5,68.5 - parent: 0 - type: Transform -- uid: 33236 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 52.5,71.5 - parent: 0 - type: Transform -- uid: 33237 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 52.5,69.5 - parent: 0 - type: Transform -- uid: 33238 - type: AirlockExternalGlassLocked - components: - - pos: 56.5,67.5 - parent: 0 - type: Transform -- uid: 33239 - type: AirlockExternalGlassLocked - components: - - pos: 57.5,69.5 - parent: 0 - type: Transform -- uid: 33240 - type: AirlockEngineeringLocked - components: - - pos: 52.5,65.5 - parent: 0 - type: Transform -- uid: 33241 - type: ReinforcedWindow - components: - - pos: 38.5,67.5 - parent: 0 - type: Transform -- uid: 33242 - type: WallReinforced - components: - - pos: 39.5,67.5 - parent: 0 - type: Transform -- uid: 33243 - type: WallReinforced - components: - - pos: 37.5,67.5 - parent: 0 - type: Transform -- uid: 33244 - type: WallReinforced - components: - - pos: 37.5,68.5 - parent: 0 - type: Transform -- uid: 33245 - type: WallReinforced - components: - - pos: 37.5,69.5 - parent: 0 - type: Transform -- uid: 33246 - type: WallReinforced - components: - - pos: 36.5,69.5 - parent: 0 - type: Transform -- uid: 33247 - type: WallReinforced - components: - - pos: 35.5,69.5 - parent: 0 - type: Transform -- uid: 33248 - type: WallReinforced - components: - - pos: 34.5,69.5 - parent: 0 - type: Transform -- uid: 33249 - type: WallReinforced - components: - - pos: 33.5,69.5 - parent: 0 - type: Transform -- uid: 33250 - type: WallReinforced - components: - - pos: 32.5,69.5 - parent: 0 - type: Transform -- uid: 33251 - type: WallReinforced - components: - - pos: 31.5,69.5 - parent: 0 - type: Transform -- uid: 33252 - type: WallReinforced - components: - - pos: 30.5,69.5 - parent: 0 - type: Transform -- uid: 33253 - type: WallReinforced - components: - - pos: 29.5,69.5 - parent: 0 - type: Transform -- uid: 33254 - type: WallReinforced - components: - - pos: 28.5,69.5 - parent: 0 - type: Transform -- uid: 33255 - type: WallReinforced - components: - - pos: 27.5,69.5 - parent: 0 - type: Transform -- uid: 33256 - type: WallReinforced - components: - - pos: 26.5,69.5 - parent: 0 - type: Transform -- uid: 33257 - type: WallReinforced - components: - - pos: 25.5,69.5 - parent: 0 - type: Transform -- uid: 33258 - type: WallReinforced - components: - - pos: 25.5,70.5 - parent: 0 - type: Transform -- uid: 33259 - type: WallReinforced - components: - - pos: 25.5,71.5 - parent: 0 - type: Transform -- uid: 33260 - type: WallReinforced - components: - - pos: 25.5,71.5 - parent: 0 - type: Transform -- uid: 33261 - type: WallReinforced - components: - - pos: 24.5,71.5 - parent: 0 - type: Transform -- uid: 33262 - type: WallReinforced - components: - - pos: 23.5,71.5 - parent: 0 - type: Transform -- uid: 33263 - type: WallReinforced - components: - - pos: 22.5,71.5 - parent: 0 - type: Transform -- uid: 33264 - type: WallReinforced - components: - - pos: 21.5,71.5 - parent: 0 - type: Transform -- uid: 33265 - type: WallReinforced - components: - - pos: 20.5,71.5 - parent: 0 - type: Transform -- uid: 33266 - type: WallReinforced - components: - - pos: 19.5,71.5 - parent: 0 - type: Transform -- uid: 33267 - type: WallReinforced - components: - - pos: 18.5,71.5 - parent: 0 - type: Transform -- uid: 33268 - type: WallReinforced - components: - - pos: 17.5,71.5 - parent: 0 - type: Transform -- uid: 33269 - type: WallReinforced - components: - - pos: 16.5,71.5 - parent: 0 - type: Transform -- uid: 33270 - type: WallReinforced - components: - - pos: 15.5,71.5 - parent: 0 - type: Transform -- uid: 33271 - type: WallReinforced - components: - - pos: 14.5,71.5 - parent: 0 - type: Transform -- uid: 33272 - type: WallReinforced - components: - - pos: 13.5,71.5 - parent: 0 - type: Transform -- uid: 33273 - type: WallReinforced - components: - - pos: 12.5,71.5 - parent: 0 - type: Transform -- uid: 33274 - type: WallReinforced - components: - - pos: 11.5,71.5 - parent: 0 - type: Transform -- uid: 33275 - type: WallReinforced - components: - - pos: 10.5,71.5 - parent: 0 - type: Transform -- uid: 33276 - type: WallReinforced - components: - - pos: 10.5,72.5 - parent: 0 - type: Transform -- uid: 33277 - type: WallReinforced - components: - - pos: 10.5,73.5 - parent: 0 - type: Transform -- uid: 33278 - type: WallReinforced - components: - - pos: 10.5,74.5 - parent: 0 - type: Transform -- uid: 33279 - type: WallReinforced - components: - - pos: 10.5,75.5 - parent: 0 - type: Transform -- uid: 33280 - type: WallReinforced - components: - - pos: 10.5,76.5 - parent: 0 - type: Transform -- uid: 33281 - type: WallReinforced - components: - - pos: 10.5,77.5 - parent: 0 - type: Transform -- uid: 33282 - type: WallReinforced - components: - - pos: 9.5,77.5 - parent: 0 - type: Transform -- uid: 33283 - type: WallReinforced - components: - - pos: 8.5,77.5 - parent: 0 - type: Transform -- uid: 33284 - type: WallReinforced - components: - - pos: 7.5,77.5 - parent: 0 - type: Transform -- uid: 33285 - type: WallReinforced - components: - - pos: 6.5,77.5 - parent: 0 - type: Transform -- uid: 33286 - type: WallReinforced - components: - - pos: 5.5,77.5 - parent: 0 - type: Transform -- uid: 33287 - type: WallReinforced - components: - - pos: 4.5,77.5 - parent: 0 - type: Transform -- uid: 33288 - type: WallReinforced - components: - - pos: 3.5,77.5 - parent: 0 - type: Transform -- uid: 33289 - type: WallReinforced - components: - - pos: 2.5,77.5 - parent: 0 - type: Transform -- uid: 33290 - type: WallReinforced - components: - - pos: 1.5,77.5 - parent: 0 - type: Transform -- uid: 33291 - type: WallReinforced - components: - - pos: 0.5,77.5 - parent: 0 - type: Transform -- uid: 33292 - type: WallReinforced - components: - - pos: 0.5,76.5 - parent: 0 - type: Transform -- uid: 33293 - type: WallReinforced - components: - - pos: 0.5,75.5 - parent: 0 - type: Transform -- uid: 33294 - type: WallReinforced - components: - - pos: -0.5,75.5 - parent: 0 - type: Transform -- uid: 33295 - type: WallReinforced - components: - - pos: -1.5,75.5 - parent: 0 - type: Transform -- uid: 33296 - type: AsteroidRock - components: - - pos: -1.5,76.5 - parent: 0 - type: Transform -- uid: 33297 - type: AsteroidRock - components: - - pos: -0.5,76.5 - parent: 0 - type: Transform -- uid: 33298 - type: AsteroidRock - components: - - pos: -0.5,77.5 - parent: 0 - type: Transform -- uid: 33299 - type: AsteroidRock - components: - - pos: -0.5,78.5 - parent: 0 - type: Transform -- uid: 33300 - type: AsteroidRock - components: - - pos: 0.5,78.5 - parent: 0 - type: Transform -- uid: 33301 - type: AsteroidRock - components: - - pos: 0.5,79.5 - parent: 0 - type: Transform -- uid: 33302 - type: AsteroidRock - components: - - pos: 1.5,78.5 - parent: 0 - type: Transform -- uid: 33303 - type: AsteroidRock - components: - - pos: 1.5,79.5 - parent: 0 - type: Transform -- uid: 33304 - type: AsteroidRock - components: - - pos: 2.5,78.5 - parent: 0 - type: Transform -- uid: 33305 - type: AsteroidRock - components: - - pos: 2.5,79.5 - parent: 0 - type: Transform -- uid: 33306 - type: AsteroidRock - components: - - pos: 3.5,78.5 - parent: 0 - type: Transform -- uid: 33307 - type: AsteroidRock - components: - - pos: 3.5,79.5 - parent: 0 - type: Transform -- uid: 33308 - type: AsteroidRock - components: - - pos: 4.5,78.5 - parent: 0 - type: Transform -- uid: 33309 - type: AsteroidRock - components: - - pos: 4.5,79.5 - parent: 0 - type: Transform -- uid: 33310 - type: AsteroidRock - components: - - pos: 5.5,78.5 - parent: 0 - type: Transform -- uid: 33311 - type: ClothingUnderSocksBee - components: - - pos: 5.4999647,79.450584 - parent: 0 - type: Transform -- uid: 33312 - type: AsteroidRock - components: - - pos: 6.5,78.5 - parent: 0 - type: Transform -- uid: 33313 - type: AsteroidRock - components: - - pos: 6.5,79.5 - parent: 0 - type: Transform -- uid: 33314 - type: AsteroidRock - components: - - pos: 7.5,78.5 - parent: 0 - type: Transform -- uid: 33315 - type: AsteroidRock - components: - - pos: 7.5,79.5 - parent: 0 - type: Transform -- uid: 33316 - type: AsteroidRock - components: - - pos: 8.5,78.5 - parent: 0 - type: Transform -- uid: 33317 - type: AsteroidRock - components: - - pos: 8.5,79.5 - parent: 0 - type: Transform -- uid: 33318 - type: AsteroidRock - components: - - pos: 3.5,80.5 - parent: 0 - type: Transform -- uid: 33319 - type: AsteroidRock - components: - - pos: 4.5,80.5 - parent: 0 - type: Transform -- uid: 33320 - type: AsteroidRock - components: - - pos: 5.5,80.5 - parent: 0 - type: Transform -- uid: 33321 - type: AsteroidRock - components: - - pos: 6.5,80.5 - parent: 0 - type: Transform -- uid: 33322 - type: AsteroidRock - components: - - pos: 7.5,80.5 - parent: 0 - type: Transform -- uid: 33323 - type: AsteroidRock - components: - - pos: 6.5,81.5 - parent: 0 - type: Transform -- uid: 33324 - type: AsteroidRock - components: - - pos: 5.5,81.5 - parent: 0 - type: Transform -- uid: 33325 - type: AsteroidRock - components: - - pos: 9.5,78.5 - parent: 0 - type: Transform -- uid: 33326 - type: AsteroidRock - components: - - pos: 10.5,78.5 - parent: 0 - type: Transform -- uid: 33327 - type: AsteroidRock - components: - - pos: 11.5,78.5 - parent: 0 - type: Transform -- uid: 33328 - type: AsteroidRock - components: - - pos: 11.5,77.5 - parent: 0 - type: Transform -- uid: 33329 - type: AsteroidRock - components: - - pos: 11.5,76.5 - parent: 0 - type: Transform -- uid: 33330 - type: AsteroidRock - components: - - pos: 11.5,75.5 - parent: 0 - type: Transform -- uid: 33331 - type: AsteroidRock - components: - - pos: 11.5,74.5 - parent: 0 - type: Transform -- uid: 33332 - type: AsteroidRock - components: - - pos: 11.5,73.5 - parent: 0 - type: Transform -- uid: 33333 - type: AsteroidRock - components: - - pos: 11.5,72.5 - parent: 0 - type: Transform -- uid: 33334 - type: AsteroidRock - components: - - pos: 12.5,72.5 - parent: 0 - type: Transform -- uid: 33335 - type: ClothingNeckCloakMiner - components: - - pos: 12.603026,74.274254 - parent: 0 - type: Transform -- uid: 33336 - type: MiningDrill - components: - - pos: 13.412859,73.39978 - parent: 0 - type: Transform -- uid: 33337 - type: AsteroidRock - components: - - pos: 13.5,72.5 - parent: 0 - type: Transform -- uid: 33338 - type: ClothingUnderSocksBee - components: - - pos: 11.5237665,-2.4679627 - parent: 0 - type: Transform -- uid: 33339 - type: AsteroidRock - components: - - pos: 13.5,74.5 - parent: 0 - type: Transform -- uid: 33340 - type: AsteroidRock - components: - - pos: 14.5,72.5 - parent: 0 - type: Transform -- uid: 33341 - type: AsteroidRock - components: - - pos: 14.5,73.5 - parent: 0 - type: Transform -- uid: 33342 - type: AsteroidRock - components: - - pos: 14.5,74.5 - parent: 0 - type: Transform -- uid: 33343 - type: AsteroidRock - components: - - pos: 15.5,72.5 - parent: 0 - type: Transform -- uid: 33344 - type: AsteroidRock - components: - - pos: 15.5,73.5 - parent: 0 - type: Transform -- uid: 33345 - type: AsteroidRock - components: - - pos: 15.5,74.5 - parent: 0 - type: Transform -- uid: 33346 - type: AsteroidRock - components: - - pos: 16.5,72.5 - parent: 0 - type: Transform -- uid: 33347 - type: AsteroidRock - components: - - pos: 16.5,73.5 - parent: 0 - type: Transform -- uid: 33348 - type: AsteroidRock - components: - - pos: 16.5,74.5 - parent: 0 - type: Transform -- uid: 33349 - type: AsteroidRock - components: - - pos: 17.5,72.5 - parent: 0 - type: Transform -- uid: 33350 - type: AsteroidRock - components: - - pos: 17.5,73.5 - parent: 0 - type: Transform -- uid: 33351 - type: AsteroidRock - components: - - pos: 18.5,72.5 - parent: 0 - type: Transform -- uid: 33352 - type: AsteroidRock - components: - - pos: 18.5,73.5 - parent: 0 - type: Transform -- uid: 33353 - type: AsteroidRock - components: - - pos: 19.5,72.5 - parent: 0 - type: Transform -- uid: 33354 - type: AsteroidRock - components: - - pos: 19.5,73.5 - parent: 0 - type: Transform -- uid: 33355 - type: AsteroidRock - components: - - pos: 20.5,72.5 - parent: 0 - type: Transform -- uid: 33356 - type: AsteroidRock - components: - - pos: 20.5,73.5 - parent: 0 - type: Transform -- uid: 33357 - type: AsteroidRock - components: - - pos: 21.5,72.5 - parent: 0 - type: Transform -- uid: 33358 - type: AsteroidRock - components: - - pos: 22.5,72.5 - parent: 0 - type: Transform -- uid: 33359 - type: AsteroidRock - components: - - pos: 23.5,72.5 - parent: 0 - type: Transform -- uid: 33360 - type: AsteroidRock - components: - - pos: 24.5,72.5 - parent: 0 - type: Transform -- uid: 33361 - type: AsteroidRock - components: - - pos: 25.5,72.5 - parent: 0 - type: Transform -- uid: 33362 - type: AsteroidRock - components: - - pos: 26.5,72.5 - parent: 0 - type: Transform -- uid: 33363 - type: AsteroidRock - components: - - pos: 27.5,72.5 - parent: 0 - type: Transform -- uid: 33364 - type: AsteroidRock - components: - - pos: 28.5,72.5 - parent: 0 - type: Transform -- uid: 33365 - type: AsteroidRock - components: - - pos: 29.5,72.5 - parent: 0 - type: Transform -- uid: 33366 - type: AsteroidRock - components: - - pos: 30.5,72.5 - parent: 0 - type: Transform -- uid: 33367 - type: AsteroidRock - components: - - pos: 26.5,71.5 - parent: 0 - type: Transform -- uid: 33368 - type: AsteroidRock - components: - - pos: 26.5,70.5 - parent: 0 - type: Transform -- uid: 33369 - type: AsteroidRock - components: - - pos: 27.5,71.5 - parent: 0 - type: Transform -- uid: 33370 - type: AsteroidRock - components: - - pos: 27.5,70.5 - parent: 0 - type: Transform -- uid: 33371 - type: AsteroidRock - components: - - pos: 28.5,71.5 - parent: 0 - type: Transform -- uid: 33372 - type: AsteroidRock - components: - - pos: 28.5,70.5 - parent: 0 - type: Transform -- uid: 33373 - type: AsteroidRock - components: - - pos: 29.5,71.5 - parent: 0 - type: Transform -- uid: 33374 - type: AsteroidRock - components: - - pos: 29.5,70.5 - parent: 0 - type: Transform -- uid: 33375 - type: AsteroidRock - components: - - pos: 30.5,71.5 - parent: 0 - type: Transform -- uid: 33376 - type: AsteroidRock - components: - - pos: 30.5,70.5 - parent: 0 - type: Transform -- uid: 33377 - type: AsteroidRock - components: - - pos: 31.5,71.5 - parent: 0 - type: Transform -- uid: 33378 - type: AsteroidRock - components: - - pos: 31.5,70.5 - parent: 0 - type: Transform -- uid: 33379 - type: AsteroidRock - components: - - pos: 32.5,71.5 - parent: 0 - type: Transform -- uid: 33380 - type: AsteroidRock - components: - - pos: 32.5,70.5 - parent: 0 - type: Transform -- uid: 33381 - type: AsteroidRock - components: - - pos: 33.5,70.5 - parent: 0 - type: Transform -- uid: 33382 - type: AsteroidRock - components: - - pos: 34.5,70.5 - parent: 0 - type: Transform -- uid: 33383 - type: AsteroidRock - components: - - pos: 35.5,70.5 - parent: 0 - type: Transform -- uid: 33384 - type: AsteroidRock - components: - - pos: 36.5,70.5 - parent: 0 - type: Transform -- uid: 33385 - type: AsteroidRock - components: - - pos: 40.5,66.5 - parent: 0 - type: Transform -- uid: 33386 - type: AsteroidRock - components: - - pos: 41.5,66.5 - parent: 0 - type: Transform -- uid: 33387 - type: AsteroidRock - components: - - pos: 42.5,66.5 - parent: 0 - type: Transform -- uid: 33388 - type: AsteroidRock - components: - - pos: 43.5,66.5 - parent: 0 - type: Transform -- uid: 33389 - type: AsteroidRock - components: - - pos: 44.5,66.5 - parent: 0 - type: Transform -- uid: 33390 - type: AsteroidRock - components: - - pos: 43.5,67.5 - parent: 0 - type: Transform -- uid: 33391 - type: AsteroidRock - components: - - pos: 42.5,67.5 - parent: 0 - type: Transform -- uid: 33392 - type: AsteroidRock - components: - - pos: 41.5,67.5 - parent: 0 - type: Transform -- uid: 33393 - type: AsteroidRock - components: - - pos: 47.5,67.5 - parent: 0 - type: Transform -- uid: 33394 - type: AsteroidRock - components: - - pos: 48.5,67.5 - parent: 0 - type: Transform -- uid: 33395 - type: AsteroidRock - components: - - pos: 49.5,67.5 - parent: 0 - type: Transform -- uid: 33396 - type: AsteroidRock - components: - - pos: 48.5,68.5 - parent: 0 - type: Transform -- uid: 33397 - type: AsteroidRock - components: - - pos: 49.5,68.5 - parent: 0 - type: Transform -- uid: 33398 - type: AsteroidRock - components: - - pos: 49.5,69.5 - parent: 0 - type: Transform -- uid: 33399 - type: WallSolidRust - components: - - pos: 5.5,83.5 - parent: 0 - type: Transform -- uid: 33400 - type: WallSolidRust - components: - - pos: 22.5,76.5 - parent: 0 - type: Transform -- uid: 33401 - type: AsteroidRock - components: - - pos: 12.5,75.5 - parent: 0 - type: Transform -- uid: 33402 - type: AsteroidRock - components: - - pos: 12.5,76.5 - parent: 0 - type: Transform -- uid: 33403 - type: AsteroidRock - components: - - pos: 12.5,77.5 - parent: 0 - type: Transform -- uid: 33404 - type: AsteroidRock - components: - - pos: 13.5,75.5 - parent: 0 - type: Transform -- uid: 33405 - type: AsteroidRock - components: - - pos: 13.5,76.5 - parent: 0 - type: Transform -- uid: 33406 - type: AsteroidRock - components: - - pos: 14.5,75.5 - parent: 0 - type: Transform -- uid: 33407 - type: AsteroidRock - components: - - pos: 15.5,75.5 - parent: 0 - type: Transform -- uid: 33408 - type: MountainRock - components: - - pos: 26.5,68.5 - parent: 0 - type: Transform -- uid: 33409 - type: MountainRock - components: - - pos: 27.5,68.5 - parent: 0 - type: Transform -- uid: 33410 - type: MountainRock - components: - - pos: 28.5,68.5 - parent: 0 - type: Transform -- uid: 33411 - type: MountainRock - components: - - pos: 29.5,68.5 - parent: 0 - type: Transform -- uid: 33412 - type: MountainRock - components: - - pos: 30.5,68.5 - parent: 0 - type: Transform -- uid: 33413 - type: MountainRock - components: - - pos: 31.5,68.5 - parent: 0 - type: Transform -- uid: 33414 - type: MountainRock - components: - - pos: 32.5,68.5 - parent: 0 - type: Transform -- uid: 33415 - type: MountainRock - components: - - pos: 33.5,68.5 - parent: 0 - type: Transform -- uid: 33416 - type: WallSolid - components: - - pos: 25.5,68.5 - parent: 0 - type: Transform -- uid: 33417 - type: WallSolid - components: - - pos: 34.5,68.5 - parent: 0 - type: Transform -- uid: 33418 - type: MountainRock - components: - - pos: 2.5,76.5 - parent: 0 - type: Transform -- uid: 33419 - type: MountainRock - components: - - pos: 3.5,76.5 - parent: 0 - type: Transform -- uid: 33420 - type: MountainRock - components: - - pos: 4.5,76.5 - parent: 0 - type: Transform -- uid: 33421 - type: MountainRock - components: - - pos: 5.5,76.5 - parent: 0 - type: Transform -- uid: 33422 - type: MountainRock - components: - - pos: 6.5,76.5 - parent: 0 - type: Transform -- uid: 33423 - type: MountainRock - components: - - pos: 7.5,76.5 - parent: 0 - type: Transform -- uid: 33424 - type: MountainRock - components: - - pos: 8.5,76.5 - parent: 0 - type: Transform -- uid: 33425 - type: MountainRock - components: - - pos: 1.5,76.5 - parent: 0 - type: Transform -- uid: 33426 - type: MountainRock - components: - - pos: 9.5,76.5 - parent: 0 - type: Transform -- uid: 33427 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 1.5,75.5 - parent: 0 - type: Transform -- uid: 33428 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 2.5,75.5 - parent: 0 - type: Transform -- uid: 33429 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 3.5,75.5 - parent: 0 - type: Transform -- uid: 33430 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 4.5,75.5 - parent: 0 - type: Transform -- uid: 33431 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 5.5,75.5 - parent: 0 - type: Transform -- uid: 33432 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 6.5,75.5 - parent: 0 - type: Transform -- uid: 33433 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 7.5,75.5 - parent: 0 - type: Transform -- uid: 33434 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 8.5,75.5 - parent: 0 - type: Transform -- uid: 33435 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 9.5,75.5 - parent: 0 - type: Transform -- uid: 33436 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 26.5,67.5 - parent: 0 - type: Transform -- uid: 33437 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 27.5,67.5 - parent: 0 - type: Transform -- uid: 33438 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 28.5,67.5 - parent: 0 - type: Transform -- uid: 33439 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 29.5,67.5 - parent: 0 - type: Transform -- uid: 33440 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 30.5,67.5 - parent: 0 - type: Transform -- uid: 33441 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 31.5,67.5 - parent: 0 - type: Transform -- uid: 33442 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 32.5,67.5 - parent: 0 - type: Transform -- uid: 33443 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 33.5,67.5 - parent: 0 - type: Transform -- uid: 33444 - type: WallSolid - components: - - pos: 34.5,67.5 - parent: 0 - type: Transform -- uid: 33445 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: 25.5,67.5 - parent: 0 - type: Transform -- uid: 33446 - type: FirelockGlass - components: - - pos: 20.5,70.5 - parent: 0 - type: Transform -- uid: 33447 - type: Catwalk - components: - - pos: -1.5,69.5 - parent: 0 - type: Transform -- uid: 33448 - type: Catwalk - components: - - pos: -0.5,69.5 - parent: 0 - type: Transform -- uid: 33449 - type: Catwalk - components: - - pos: 0.5,69.5 - parent: 0 - type: Transform -- uid: 33450 - type: Catwalk - components: - - pos: 1.5,69.5 - parent: 0 - type: Transform -- uid: 33451 - type: Catwalk - components: - - pos: 2.5,69.5 - parent: 0 - type: Transform -- uid: 33452 - type: Catwalk - components: - - pos: 2.5,70.5 - parent: 0 - type: Transform -- uid: 33453 - type: Catwalk - components: - - pos: 2.5,71.5 - parent: 0 - type: Transform -- uid: 33454 - type: Catwalk - components: - - pos: 2.5,72.5 - parent: 0 - type: Transform -- uid: 33455 - type: Catwalk - components: - - pos: 2.5,73.5 - parent: 0 - type: Transform -- uid: 33456 - type: Catwalk - components: - - pos: 2.5,74.5 - parent: 0 - type: Transform -- uid: 33457 - type: Catwalk - components: - - pos: 3.5,74.5 - parent: 0 - type: Transform -- uid: 33458 - type: Catwalk - components: - - pos: 4.5,74.5 - parent: 0 - type: Transform -- uid: 33459 - type: Catwalk - components: - - pos: 5.5,74.5 - parent: 0 - type: Transform -- uid: 33460 - type: Catwalk - components: - - pos: 6.5,74.5 - parent: 0 - type: Transform -- uid: 33461 - type: Catwalk - components: - - pos: 7.5,74.5 - parent: 0 - type: Transform -- uid: 33462 - type: Catwalk - components: - - pos: 8.5,74.5 - parent: 0 - type: Transform -- uid: 33463 - type: Catwalk - components: - - pos: 9.5,74.5 - parent: 0 - type: Transform -- uid: 33464 - type: Catwalk - components: - - pos: 9.5,73.5 - parent: 0 - type: Transform -- uid: 33465 - type: Catwalk - components: - - pos: 9.5,72.5 - parent: 0 - type: Transform -- uid: 33466 - type: Catwalk - components: - - pos: 9.5,71.5 - parent: 0 - type: Transform -- uid: 33467 - type: Catwalk - components: - - pos: 9.5,70.5 - parent: 0 - type: Transform -- uid: 33468 - type: Catwalk - components: - - pos: 10.5,70.5 - parent: 0 - type: Transform -- uid: 33469 - type: Catwalk - components: - - pos: 11.5,70.5 - parent: 0 - type: Transform -- uid: 33470 - type: Catwalk - components: - - pos: 12.5,70.5 - parent: 0 - type: Transform -- uid: 33471 - type: Catwalk - components: - - pos: 13.5,70.5 - parent: 0 - type: Transform -- uid: 33472 - type: Catwalk - components: - - pos: 14.5,70.5 - parent: 0 - type: Transform -- uid: 33473 - type: Catwalk - components: - - pos: 15.5,70.5 - parent: 0 - type: Transform -- uid: 33474 - type: Catwalk - components: - - pos: 16.5,70.5 - parent: 0 - type: Transform -- uid: 33475 - type: Catwalk - components: - - pos: 17.5,70.5 - parent: 0 - type: Transform -- uid: 33476 - type: Catwalk - components: - - pos: 18.5,70.5 - parent: 0 - type: Transform -- uid: 33477 - type: Catwalk - components: - - pos: 19.5,70.5 - parent: 0 - type: Transform -- uid: 33478 - type: Catwalk - components: - - pos: 21.5,70.5 - parent: 0 - type: Transform -- uid: 33479 - type: Catwalk - components: - - pos: 22.5,70.5 - parent: 0 - type: Transform -- uid: 33480 - type: Catwalk - components: - - pos: 22.5,69.5 - parent: 0 - type: Transform -- uid: 33481 - type: Catwalk - components: - - pos: 22.5,68.5 - parent: 0 - type: Transform -- uid: 33482 - type: Catwalk - components: - - pos: 22.5,67.5 - parent: 0 - type: Transform -- uid: 33483 - type: Catwalk - components: - - pos: 22.5,66.5 - parent: 0 - type: Transform -- uid: 33484 - type: Catwalk - components: - - pos: 23.5,66.5 - parent: 0 - type: Transform -- uid: 33485 - type: Catwalk - components: - - pos: 24.5,66.5 - parent: 0 - type: Transform -- uid: 33486 - type: Catwalk - components: - - pos: 25.5,66.5 - parent: 0 - type: Transform -- uid: 33487 - type: Catwalk - components: - - pos: 26.5,66.5 - parent: 0 - type: Transform -- uid: 33488 - type: Catwalk - components: - - pos: 27.5,66.5 - parent: 0 - type: Transform -- uid: 33489 - type: Catwalk - components: - - pos: 28.5,66.5 - parent: 0 - type: Transform -- uid: 33490 - type: Catwalk - components: - - pos: 29.5,66.5 - parent: 0 - type: Transform -- uid: 33491 - type: Catwalk - components: - - pos: 30.5,66.5 - parent: 0 - type: Transform -- uid: 33492 - type: Catwalk - components: - - pos: 31.5,66.5 - parent: 0 - type: Transform -- uid: 33493 - type: Catwalk - components: - - pos: 32.5,66.5 - parent: 0 - type: Transform -- uid: 33494 - type: Catwalk - components: - - pos: 32.5,65.5 - parent: 0 - type: Transform -- uid: 33495 - type: Catwalk - components: - - pos: 32.5,64.5 - parent: 0 - type: Transform -- uid: 33496 - type: Catwalk - components: - - pos: 32.5,63.5 - parent: 0 - type: Transform -- uid: 33497 - type: Catwalk - components: - - pos: 32.5,62.5 - parent: 0 - type: Transform -- uid: 33498 - type: AirlockMaintGlassLocked - components: - - pos: 32.5,61.5 - parent: 0 - type: Transform -- uid: 33499 - type: Catwalk - components: - - pos: 32.5,60.5 - parent: 0 - type: Transform -- uid: 33500 - type: Catwalk - components: - - pos: 32.5,59.5 - parent: 0 - type: Transform -- uid: 33501 - type: Catwalk - components: - - pos: 32.5,58.5 - parent: 0 - type: Transform -- uid: 33502 - type: Catwalk - components: - - pos: 32.5,57.5 - parent: 0 - type: Transform -- uid: 33503 - type: Catwalk - components: - - pos: 32.5,56.5 - parent: 0 - type: Transform -- uid: 33504 - type: Catwalk - components: - - pos: 32.5,55.5 - parent: 0 - type: Transform -- uid: 33505 - type: Catwalk - components: - - pos: 32.5,54.5 - parent: 0 - type: Transform -- uid: 33506 - type: Catwalk - components: - - pos: 33.5,54.5 - parent: 0 - type: Transform -- uid: 33507 - type: Catwalk - components: - - pos: 34.5,54.5 - parent: 0 - type: Transform -- uid: 33508 - type: Catwalk - components: - - pos: 35.5,54.5 - parent: 0 - type: Transform -- uid: 33509 - type: Catwalk - components: - - pos: 36.5,54.5 - parent: 0 - type: Transform -- uid: 33510 - type: Catwalk - components: - - pos: 37.5,54.5 - parent: 0 - type: Transform -- uid: 33511 - type: Catwalk - components: - - pos: 38.5,54.5 - parent: 0 - type: Transform -- uid: 33512 - type: Catwalk - components: - - pos: 38.5,53.5 - parent: 0 - type: Transform -- uid: 33513 - type: Catwalk - components: - - pos: 38.5,52.5 - parent: 0 - type: Transform -- uid: 33514 - type: Catwalk - components: - - pos: 38.5,51.5 - parent: 0 - type: Transform -- uid: 33515 - type: Catwalk - components: - - pos: 38.5,50.5 - parent: 0 - type: Transform -- uid: 33516 - type: Catwalk - components: - - pos: 38.5,49.5 - parent: 0 - type: Transform -- uid: 33517 - type: Catwalk - components: - - pos: 38.5,48.5 - parent: 0 - type: Transform -- uid: 33518 - type: Catwalk - components: - - pos: 38.5,47.5 - parent: 0 - type: Transform -- uid: 33519 - type: Catwalk - components: - - pos: 38.5,46.5 - parent: 0 - type: Transform -- uid: 33520 - type: Catwalk - components: - - pos: 38.5,45.5 - parent: 0 - type: Transform -- uid: 33521 - type: Catwalk - components: - - pos: 38.5,44.5 - parent: 0 - type: Transform -- uid: 33522 - type: Catwalk - components: - - pos: 38.5,43.5 - parent: 0 - type: Transform -- uid: 33523 - type: Catwalk - components: - - pos: 38.5,42.5 - parent: 0 - type: Transform -- uid: 33524 - type: Catwalk - components: - - pos: 38.5,41.5 - parent: 0 - type: Transform -- uid: 33525 - type: Catwalk - components: - - pos: 38.5,40.5 - parent: 0 - type: Transform -- uid: 33526 - type: Catwalk - components: - - pos: 37.5,40.5 - parent: 0 - type: Transform -- uid: 33527 - type: Catwalk - components: - - pos: 36.5,40.5 - parent: 0 - type: Transform -- uid: 33528 - type: Catwalk - components: - - pos: 35.5,40.5 - parent: 0 - type: Transform -- uid: 33529 - type: Catwalk - components: - - pos: 34.5,40.5 - parent: 0 - type: Transform -- uid: 33530 - type: Catwalk - components: - - pos: 33.5,40.5 - parent: 0 - type: Transform -- uid: 33531 - type: Catwalk - components: - - pos: 32.5,40.5 - parent: 0 - type: Transform -- uid: 33532 - type: Catwalk - components: - - pos: 32.5,38.5 - parent: 0 - type: Transform -- uid: 33533 - type: Catwalk - components: - - pos: 32.5,37.5 - parent: 0 - type: Transform -- uid: 33534 - type: Catwalk - components: - - pos: 32.5,39.5 - parent: 0 - type: Transform -- uid: 33535 - type: ClosetMaintenanceFilledRandom - components: - - pos: 10.5,69.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 33536 - type: WallReinforced - components: - - pos: 40.5,35.5 - parent: 0 - type: Transform -- uid: 33537 - type: ReinforcedWindow - components: - - pos: 44.5,39.5 - parent: 0 - type: Transform -- uid: 33538 - type: ReinforcedWindow - components: - - pos: 45.5,39.5 - parent: 0 - type: Transform -- uid: 33539 - type: Grille - components: - - pos: 44.5,35.5 - parent: 0 - type: Transform -- uid: 33540 - type: Grille - components: - - pos: 41.5,35.5 - parent: 0 - type: Transform -- uid: 33541 - type: ReinforcedWindow - components: - - pos: 41.5,39.5 - parent: 0 - type: Transform -- uid: 33542 - type: Grille - components: - - pos: 40.5,37.5 - parent: 0 - type: Transform -- uid: 33543 - type: ReinforcedWindow - components: - - pos: 43.5,39.5 - parent: 0 - type: Transform -- uid: 33544 - type: ReinforcedWindow - components: - - pos: 42.5,39.5 - parent: 0 - type: Transform -- uid: 33545 - type: Grille - components: - - pos: 42.5,35.5 - parent: 0 - type: Transform -- uid: 33546 - type: Grille - components: - - pos: 43.5,35.5 - parent: 0 - type: Transform -- uid: 33547 - type: WallReinforced - components: - - pos: 40.5,38.5 - parent: 0 - type: Transform -- uid: 33548 - type: WallReinforced - components: - - pos: 40.5,36.5 - parent: 0 - type: Transform -- uid: 33549 - type: ReinforcedWindow - components: - - pos: 40.5,37.5 - parent: 0 - type: Transform -- uid: 33550 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 52.5,36.5 - parent: 0 - type: Transform -- uid: 33551 - type: Table - components: - - pos: 52.5,38.5 - parent: 0 - type: Transform -- uid: 33552 - type: Table - components: - - pos: 47.5,38.5 - parent: 0 - type: Transform -- uid: 33553 - type: Table - components: - - pos: 50.5,38.5 - parent: 0 - type: Transform -- uid: 33554 - type: Table - components: - - pos: 49.5,38.5 - parent: 0 - type: Transform -- uid: 33555 - type: TableReinforced - components: - - pos: 48.5,40.5 - parent: 0 - type: Transform -- uid: 33556 - type: TableReinforced - components: - - pos: 51.5,40.5 - parent: 0 - type: Transform -- uid: 33557 - type: Rack - components: - - pos: 47.5,40.5 - parent: 0 - type: Transform -- uid: 33558 - type: CrateEngineeringCableBulk - components: - - pos: 47.5,37.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 33559 - type: PottedPlantRandom - components: - - pos: 47.5,36.5 - parent: 0 - type: Transform -- uid: 33560 - type: PottedPlantRandom - components: - - pos: 52.5,40.5 - parent: 0 - type: Transform -- uid: 33561 - type: WindoorHeadOfPersonnelLocked - components: - - rot: 3.141592653589793 rad - pos: 51.5,42.5 - parent: 0 - type: Transform -- uid: 33562 - type: WindoorHeadOfPersonnelLocked - components: - - rot: 3.141592653589793 rad - pos: 52.5,42.5 - parent: 0 - type: Transform -- uid: 33563 - type: PowerCellRecharger - components: - - pos: 51.5,40.5 - parent: 0 - type: Transform -- uid: 33564 - type: SheetGlass - components: - - pos: 49.558956,38.53593 - parent: 0 - type: Transform -- uid: 33565 - type: SheetPlasteel - components: - - pos: 50.527706,38.59843 - parent: 0 - type: Transform -- uid: 33566 - type: Wrench - components: - - pos: 52.527706,38.53593 - parent: 0 - type: Transform -- uid: 33567 - type: PartRodMetal - components: - - pos: 52.54333,38.56718 - parent: 0 - type: Transform -- uid: 33568 - type: FireExtinguisher - components: - - pos: 47.308956,38.832806 - parent: 0 - type: Transform -- uid: 33569 - type: FireExtinguisher - components: - - pos: 47.496456,38.59843 - parent: 0 - type: Transform -- uid: 33570 - type: FireExtinguisher - components: - - pos: 47.63708,38.801556 - parent: 0 - type: Transform -- uid: 33571 - type: Pickaxe - components: - - pos: 47.48083,40.62968 - parent: 0 - type: Transform -- uid: 33572 - type: Pickaxe - components: - - pos: 47.590206,40.53593 - parent: 0 - type: Transform -- uid: 33573 - type: HandheldGPSBasic - components: - - pos: 47.57458,40.426556 - parent: 0 - type: Transform -- uid: 33574 - type: HandheldGPSBasic - components: - - pos: 47.57458,40.426556 - parent: 0 - type: Transform -- uid: 33575 - type: SignEVA - components: - - pos: 53.5,40.5 - parent: 0 - type: Transform -- uid: 33576 - type: PosterLegitNanotrasenLogo - components: - - pos: 48.5,41.5 - parent: 0 - type: Transform -- uid: 33577 - type: PosterLegitNanotrasenLogo - components: - - pos: 66.5,41.5 - parent: 0 - type: Transform -- uid: 33578 - type: AsteroidRock - components: - - pos: 41.5,50.5 - parent: 0 - type: Transform -- uid: 33579 - type: AsteroidRock - components: - - pos: 41.5,51.5 - parent: 0 - type: Transform -- uid: 33580 - type: AsteroidRock - components: - - pos: 41.5,52.5 - parent: 0 - type: Transform -- uid: 33581 - type: AirlockExternalGlass - components: - - pos: 40.5,54.5 - parent: 0 - type: Transform -- uid: 33582 - type: WallReinforced - components: - - pos: 41.5,55.5 - parent: 0 - type: Transform -- uid: 33583 - type: WallReinforced - components: - - pos: 41.5,53.5 - parent: 0 - type: Transform -- uid: 33584 - type: AsteroidRock - components: - - pos: 41.5,56.5 - parent: 0 - type: Transform -- uid: 33585 - type: WallReinforced - components: - - pos: 40.5,53.5 - parent: 0 - type: Transform -- uid: 33586 - type: AsteroidRock - components: - - pos: 42.5,56.5 - parent: 0 - type: Transform -- uid: 33587 - type: AsteroidRock - components: - - pos: 42.5,57.5 - parent: 0 - type: Transform -- uid: 33588 - type: ClothingBeltChampion - components: - - pos: 42.568176,58.49704 - parent: 0 - type: Transform -- uid: 33589 - type: AsteroidRock - components: - - pos: 42.5,59.5 - parent: 0 - type: Transform -- uid: 33590 - type: AsteroidRock - components: - - pos: 43.5,58.5 - parent: 0 - type: Transform -- uid: 33591 - type: AsteroidRock - components: - - pos: 43.5,59.5 - parent: 0 - type: Transform -- uid: 33592 - type: AsteroidRock - components: - - pos: 44.5,59.5 - parent: 0 - type: Transform -- uid: 33593 - type: AsteroidRock - components: - - pos: 42.5,51.5 - parent: 0 - type: Transform -- uid: 33594 - type: AsteroidRock - components: - - pos: 43.5,50.5 - parent: 0 - type: Transform -- uid: 33595 - type: AsteroidRock - components: - - pos: 42.5,52.5 - parent: 0 - type: Transform -- uid: 33596 - type: AsteroidRock - components: - - pos: 48.5,59.5 - parent: 0 - type: Transform -- uid: 33597 - type: AsteroidRock - components: - - pos: 49.5,59.5 - parent: 0 - type: Transform -- uid: 33598 - type: AsteroidRock - components: - - pos: 50.5,59.5 - parent: 0 - type: Transform -- uid: 33599 - type: AsteroidRock - components: - - pos: 49.5,58.5 - parent: 0 - type: Transform -- uid: 33600 - type: AsteroidRock - components: - - pos: 49.5,57.5 - parent: 0 - type: Transform -- uid: 33601 - type: AsteroidRock - components: - - pos: 50.5,58.5 - parent: 0 - type: Transform -- uid: 33602 - type: AsteroidRock - components: - - pos: 50.5,57.5 - parent: 0 - type: Transform -- uid: 33603 - type: AsteroidRock - components: - - pos: 50.5,56.5 - parent: 0 - type: Transform -- uid: 33604 - type: AsteroidRock - components: - - pos: 50.5,55.5 - parent: 0 - type: Transform -- uid: 33605 - type: AsteroidRock - components: - - pos: 51.5,56.5 - parent: 0 - type: Transform -- uid: 33606 - type: AsteroidRock - components: - - pos: 51.5,55.5 - parent: 0 - type: Transform -- uid: 33607 - type: AsteroidRock - components: - - pos: 51.5,54.5 - parent: 0 - type: Transform -- uid: 33608 - type: Grille - components: - - pos: 52.5,53.5 - parent: 0 - type: Transform -- uid: 33609 - type: AsteroidRock - components: - - pos: 51.5,52.5 - parent: 0 - type: Transform -- uid: 33610 - type: AsteroidRock - components: - - pos: 51.5,51.5 - parent: 0 - type: Transform -- uid: 33611 - type: AsteroidRock - components: - - pos: 50.5,51.5 - parent: 0 - type: Transform -- uid: 33612 - type: AsteroidRock - components: - - pos: 50.5,50.5 - parent: 0 - type: Transform -- uid: 33613 - type: AsteroidRock - components: - - pos: 49.5,50.5 - parent: 0 - type: Transform -- uid: 33614 - type: AsteroidRock - components: - - pos: 49.5,49.5 - parent: 0 - type: Transform -- uid: 33615 - type: AsteroidRock - components: - - pos: 48.5,49.5 - parent: 0 - type: Transform -- uid: 33616 - type: AsteroidRock - components: - - pos: 43.5,57.5 - parent: 0 - type: Transform -- uid: 33617 - type: WallReinforced - components: - - pos: 44.5,48.5 - parent: 0 - type: Transform -- uid: 33618 - type: WallReinforced - components: - - pos: 43.5,48.5 - parent: 0 - type: Transform -- uid: 33619 - type: AsteroidRock - components: - - pos: 44.5,49.5 - parent: 0 - type: Transform -- uid: 33620 - type: AsteroidRock - components: - - pos: 43.5,49.5 - parent: 0 - type: Transform -- uid: 33621 - type: AsteroidRock - components: - - pos: 42.5,49.5 - parent: 0 - type: Transform -- uid: 33622 - type: AsteroidRock - components: - - pos: 42.5,50.5 - parent: 0 - type: Transform -- uid: 33623 - type: WallReinforced - components: - - pos: 42.5,48.5 - parent: 0 - type: Transform -- uid: 33624 - type: WallReinforced - components: - - pos: 41.5,48.5 - parent: 0 - type: Transform -- uid: 33625 - type: WallReinforced - components: - - pos: 41.5,49.5 - parent: 0 - type: Transform -- uid: 33626 - type: WallReinforced - components: - - pos: 40.5,49.5 - parent: 0 - type: Transform -- uid: 33627 - type: WallReinforced - components: - - pos: 40.5,50.5 - parent: 0 - type: Transform -- uid: 33628 - type: WallReinforced - components: - - pos: 40.5,51.5 - parent: 0 - type: Transform -- uid: 33629 - type: WallReinforced - components: - - pos: 40.5,52.5 - parent: 0 - type: Transform -- uid: 33630 - type: WallReinforced - components: - - pos: 40.5,55.5 - parent: 0 - type: Transform -- uid: 33631 - type: WallReinforced - components: - - pos: 42.5,55.5 - parent: 0 - type: Transform -- uid: 33632 - type: WallReinforced - components: - - pos: 42.5,53.5 - parent: 0 - type: Transform -- uid: 33633 - type: WallReinforced - components: - - pos: 40.5,56.5 - parent: 0 - type: Transform -- uid: 33634 - type: WallReinforced - components: - - pos: 40.5,57.5 - parent: 0 - type: Transform -- uid: 33635 - type: WallReinforced - components: - - pos: 41.5,57.5 - parent: 0 - type: Transform -- uid: 33636 - type: WallReinforced - components: - - pos: 41.5,58.5 - parent: 0 - type: Transform -- uid: 33637 - type: WallReinforced - components: - - pos: 41.5,59.5 - parent: 0 - type: Transform -- uid: 33638 - type: WallReinforced - components: - - pos: 41.5,60.5 - parent: 0 - type: Transform -- uid: 33639 - type: WallReinforced - components: - - pos: 42.5,60.5 - parent: 0 - type: Transform -- uid: 33640 - type: WallReinforced - components: - - pos: 43.5,60.5 - parent: 0 - type: Transform -- uid: 33641 - type: WallReinforced - components: - - pos: 44.5,60.5 - parent: 0 - type: Transform -- uid: 33642 - type: WallReinforced - components: - - pos: 48.5,60.5 - parent: 0 - type: Transform -- uid: 33643 - type: WallReinforced - components: - - pos: 49.5,60.5 - parent: 0 - type: Transform -- uid: 33644 - type: WallReinforced - components: - - pos: 50.5,60.5 - parent: 0 - type: Transform -- uid: 33645 - type: WallReinforced - components: - - pos: 51.5,60.5 - parent: 0 - type: Transform -- uid: 33646 - type: WallReinforced - components: - - pos: 51.5,59.5 - parent: 0 - type: Transform -- uid: 33647 - type: WallReinforced - components: - - pos: 51.5,58.5 - parent: 0 - type: Transform -- uid: 33648 - type: WallReinforced - components: - - pos: 51.5,57.5 - parent: 0 - type: Transform -- uid: 33649 - type: WallReinforced - components: - - pos: 52.5,57.5 - parent: 0 - type: Transform -- uid: 33650 - type: WallReinforced - components: - - pos: 52.5,56.5 - parent: 0 - type: Transform -- uid: 33651 - type: WallReinforced - components: - - pos: 52.5,55.5 - parent: 0 - type: Transform -- uid: 33652 - type: WallReinforced - components: - - pos: 52.5,54.5 - parent: 0 - type: Transform -- uid: 33653 - type: ReinforcedWindow - components: - - pos: 52.5,53.5 - parent: 0 - type: Transform -- uid: 33654 - type: WallReinforced - components: - - pos: 52.5,52.5 - parent: 0 - type: Transform -- uid: 33655 - type: WallReinforced - components: - - pos: 52.5,51.5 - parent: 0 - type: Transform -- uid: 33656 - type: WallReinforced - components: - - pos: 52.5,50.5 - parent: 0 - type: Transform -- uid: 33657 - type: WallReinforced - components: - - pos: 51.5,50.5 - parent: 0 - type: Transform -- uid: 33658 - type: WallReinforced - components: - - pos: 51.5,49.5 - parent: 0 - type: Transform -- uid: 33659 - type: WallReinforced - components: - - pos: 50.5,49.5 - parent: 0 - type: Transform -- uid: 33660 - type: WallReinforced - components: - - pos: 50.5,48.5 - parent: 0 - type: Transform -- uid: 33661 - type: WallReinforced - components: - - pos: 49.5,48.5 - parent: 0 - type: Transform -- uid: 33662 - type: WallReinforced - components: - - pos: 48.5,48.5 - parent: 0 - type: Transform -- uid: 33663 - type: ReinforcedWindow - components: - - pos: 47.5,48.5 - parent: 0 - type: Transform -- uid: 33664 - type: ReinforcedWindow - components: - - pos: 46.5,48.5 - parent: 0 - type: Transform -- uid: 33665 - type: ReinforcedWindow - components: - - pos: 45.5,48.5 - parent: 0 - type: Transform -- uid: 33666 - type: ReinforcedWindow - components: - - pos: 46.5,60.5 - parent: 0 - type: Transform -- uid: 33667 - type: Grille - components: - - pos: 47.5,48.5 - parent: 0 - type: Transform -- uid: 33668 - type: ReinforcedWindow - components: - - pos: 45.5,60.5 - parent: 0 - type: Transform -- uid: 33669 - type: ReinforcedWindow - components: - - pos: 47.5,60.5 - parent: 0 - type: Transform -- uid: 33670 - type: Grille - components: - - pos: 46.5,48.5 - parent: 0 - type: Transform -- uid: 33671 - type: Grille - components: - - pos: 45.5,48.5 - parent: 0 - type: Transform -- uid: 33672 - type: Grille - components: - - pos: 47.5,60.5 - parent: 0 - type: Transform -- uid: 33673 - type: Grille - components: - - pos: 46.5,60.5 - parent: 0 - type: Transform -- uid: 33674 - type: Grille - components: - - pos: 45.5,60.5 - parent: 0 - type: Transform -- uid: 33675 - type: FloraRockSolid03 - components: - - pos: 47.55255,49.48299 - parent: 0 - type: Transform -- uid: 33676 - type: FloraRockSolid01 - components: - - pos: 44.49005,58.51424 - parent: 0 - type: Transform -- uid: 33677 - type: WallSolid - components: - - pos: 31.5,57.5 - parent: 0 - type: Transform -- uid: 33678 - type: WallSolidRust - components: - - pos: 31.5,58.5 - parent: 0 - type: Transform -- uid: 33679 - type: WallSolid - components: - - pos: 31.5,59.5 - parent: 0 - type: Transform -- uid: 33680 - type: WallSolid - components: - - pos: 31.5,60.5 - parent: 0 - type: Transform -- uid: 33681 - type: WallSolidRust - components: - - pos: 31.5,61.5 - parent: 0 - type: Transform -- uid: 33682 - type: WallSolid - components: - - pos: 30.5,61.5 - parent: 0 - type: Transform -- uid: 33683 - type: ClosetMaintenanceFilledRandom - components: - - pos: 30.5,57.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 33684 - type: NitrogenCanister - components: - - pos: 28.5,60.5 - parent: 0 - type: Transform -- uid: 33685 - type: NitrogenCanister - components: - - pos: 28.5,59.5 - parent: 0 - type: Transform -- uid: 33686 - type: Rack - components: - - pos: 30.5,60.5 - parent: 0 - type: Transform -- uid: 33687 - type: PartRodMetal - components: - - pos: 30.507694,60.555336 - parent: 0 - type: Transform -- uid: 33688 - type: WallSolid - components: - - pos: 39.5,57.5 - parent: 0 - type: Transform -- uid: 33689 - type: WallSolid - components: - - pos: 38.5,57.5 - parent: 0 - type: Transform -- uid: 33690 - type: WallSolid - components: - - pos: 37.5,57.5 - parent: 0 - type: Transform -- uid: 33691 - type: WallSolid - components: - - pos: 36.5,57.5 - parent: 0 - type: Transform -- uid: 33692 - type: WallSolid - components: - - pos: 35.5,57.5 - parent: 0 - type: Transform -- uid: 33693 - type: WallSolid - components: - - pos: 34.5,57.5 - parent: 0 - type: Transform -- uid: 33694 - type: WallSolid - components: - - pos: 34.5,58.5 - parent: 0 - type: Transform -- uid: 33695 - type: WallSolid - components: - - pos: 34.5,59.5 - parent: 0 - type: Transform -- uid: 33696 - type: WallSolid - components: - - pos: 34.5,60.5 - parent: 0 - type: Transform -- uid: 33697 - type: WallSolid - components: - - pos: 34.5,61.5 - parent: 0 - type: Transform -- uid: 33698 - type: WallSolid - components: - - pos: 33.5,61.5 - parent: 0 - type: Transform -- uid: 33699 - type: CableApcExtension - components: - - pos: 2.5,64.5 - parent: 0 - type: Transform -- uid: 33700 - type: CableApcExtension - components: - - pos: 2.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33701 - type: CableApcExtension - components: - - pos: 2.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33702 - type: CableApcExtension - components: - - pos: 2.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33703 - type: CableApcExtension - components: - - pos: 2.5,68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33704 - type: CableApcExtension - components: - - pos: 2.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33705 - type: CableApcExtension - components: - - pos: 1.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33706 - type: CableApcExtension - components: - - pos: 0.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33707 - type: CableApcExtension - components: - - pos: -0.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33708 - type: CableApcExtension - components: - - pos: -1.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33709 - type: CableApcExtension - components: - - pos: 2.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33710 - type: CableApcExtension - components: - - pos: 2.5,71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33711 - type: CableApcExtension - components: - - pos: 2.5,72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33712 - type: CableApcExtension - components: - - pos: 2.5,73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33713 - type: CableApcExtension - components: - - pos: 2.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33714 - type: CableApcExtension - components: - - pos: 3.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33715 - type: CableApcExtension - components: - - pos: 4.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33716 - type: CableApcExtension - components: - - pos: 5.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33717 - type: CableApcExtension - components: - - pos: 6.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33718 - type: CableApcExtension - components: - - pos: 7.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33719 - type: CableApcExtension - components: - - pos: 8.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33720 - type: CableApcExtension - components: - - pos: 9.5,74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33721 - type: CableApcExtension - components: - - pos: 9.5,73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33722 - type: CableApcExtension - components: - - pos: 9.5,72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33723 - type: CableApcExtension - components: - - pos: 9.5,71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33724 - type: CableApcExtension - components: - - pos: 9.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33725 - type: CableApcExtension - components: - - pos: 8.5,71.5 - parent: 0 - type: Transform -- uid: 33726 - type: CableApcExtension - components: - - pos: 7.5,71.5 - parent: 0 - type: Transform -- uid: 33727 - type: CableApcExtension - components: - - pos: 6.5,71.5 - parent: 0 - type: Transform -- uid: 33728 - type: CableApcExtension - components: - - pos: 10.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33729 - type: CableApcExtension - components: - - pos: 11.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33730 - type: CableApcExtension - components: - - pos: 12.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33731 - type: CableApcExtension - components: - - pos: 13.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33732 - type: CableApcExtension - components: - - pos: 14.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33733 - type: CableApcExtension - components: - - pos: 15.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33734 - type: CableApcExtension - components: - - pos: 16.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33735 - type: CableApcExtension - components: - - pos: 17.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33736 - type: CableApcExtension - components: - - pos: 18.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33737 - type: CableApcExtension - components: - - pos: 19.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33738 - type: CableApcExtension - components: - - pos: 20.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33739 - type: CableApcExtension - components: - - pos: 21.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33740 - type: CableApcExtension - components: - - pos: 22.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33741 - type: CableApcExtension - components: - - pos: 22.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33742 - type: CableApcExtension - components: - - pos: 22.5,68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33743 - type: CableApcExtension - components: - - pos: 22.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33744 - type: CableApcExtension - components: - - pos: 22.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33745 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 31.5,56.5 - parent: 0 - type: Transform -- uid: 33746 - type: CableMV - components: - - pos: 31.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33747 - type: CableApcExtension - components: - - pos: 31.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33748 - type: CableApcExtension - components: - - pos: 32.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33749 - type: CableApcExtension - components: - - pos: 32.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33750 - type: CableApcExtension - components: - - pos: 32.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33751 - type: CableApcExtension - components: - - pos: 32.5,59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33752 - type: CableApcExtension - components: - - pos: 32.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33753 - type: CableApcExtension - components: - - pos: 32.5,61.5 - parent: 0 - type: Transform -- uid: 33754 - type: CableApcExtension - components: - - pos: 32.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33755 - type: CableApcExtension - components: - - pos: 32.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33756 - type: CableApcExtension - components: - - pos: 32.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33757 - type: CableApcExtension - components: - - pos: 32.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33758 - type: CableApcExtension - components: - - pos: 32.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33759 - type: CableApcExtension - components: - - pos: 31.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33760 - type: CableApcExtension - components: - - pos: 30.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33761 - type: CableApcExtension - components: - - pos: 29.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33762 - type: CableApcExtension - components: - - pos: 28.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33763 - type: CableApcExtension - components: - - pos: 27.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33764 - type: CableApcExtension - components: - - pos: 26.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33765 - type: CableApcExtension - components: - - pos: 32.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33766 - type: CableApcExtension - components: - - pos: 32.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33767 - type: CableApcExtension - components: - - pos: 33.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33768 - type: CableApcExtension - components: - - pos: 34.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33769 - type: CableApcExtension - components: - - pos: 35.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33770 - type: CableApcExtension - components: - - pos: 36.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33771 - type: CableApcExtension - components: - - pos: 37.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33772 - type: CableApcExtension - components: - - pos: 38.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33773 - type: CableApcExtension - components: - - pos: 38.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33774 - type: CableApcExtension - components: - - pos: 38.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33775 - type: CableApcExtension - components: - - pos: 38.5,51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33776 - type: CableApcExtension - components: - - pos: 38.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33777 - type: CableApcExtension - components: - - pos: 38.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33778 - type: CableApcExtension - components: - - pos: 38.5,48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33779 - type: CableApcExtension - components: - - pos: 38.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33780 - type: CableApcExtension - components: - - pos: 38.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33781 - type: CableApcExtension - components: - - pos: 39.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33782 - type: CableApcExtension - components: - - pos: 40.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33783 - type: CableApcExtension - components: - - pos: 41.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33784 - type: CableApcExtension - components: - - pos: 42.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33785 - type: CableApcExtension - components: - - pos: 43.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33786 - type: CableApcExtension - components: - - pos: 44.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33787 - type: CableApcExtension - components: - - pos: 45.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33788 - type: CableApcExtension - components: - - pos: 46.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33789 - type: CableApcExtension - components: - - pos: 47.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33790 - type: CableApcExtension - components: - - pos: 31.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33791 - type: CableApcExtension - components: - - pos: 30.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33792 - type: CableApcExtension - components: - - pos: 29.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33793 - type: CableApcExtension - components: - - pos: 29.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33794 - type: CableApcExtension - components: - - pos: 29.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33795 - type: CableApcExtension - components: - - pos: 29.5,59.5 - parent: 0 - type: Transform -- uid: 33796 - type: CableApcExtension - components: - - pos: 29.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33797 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 29.5,61.5 - parent: 0 - type: Transform -- uid: 33798 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 29.5,61.5 - parent: 0 - type: Transform -- uid: 33799 - type: MachineFrame - components: - - pos: 30.5,58.5 - parent: 0 - type: Transform -- uid: 33800 - type: MachineFrameDestroyed - components: - - pos: 28.5,58.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 33801 - type: SignSecureMed - components: - - pos: 40.5,69.5 - parent: 0 - type: Transform -- uid: 33802 - type: SignSecureMed - components: - - pos: 22.5,76.5 - parent: 0 - type: Transform -- uid: 33803 - type: AlwaysPoweredLightSodium - components: - - rot: 3.141592653589793 rad - pos: 22.5,77.5 - parent: 0 - type: Transform -- uid: 33804 - type: ClothingHeadHatRichard - components: - - pos: -11.686735,-29.622452 - parent: 0 - type: Transform -- uid: 33805 - type: Rack - components: - - pos: 37.5,36.5 - parent: 0 - type: Transform -- uid: 33806 - type: Rack - components: - - pos: 37.5,37.5 - parent: 0 - type: Transform -- uid: 33807 - type: Rack - components: - - pos: 37.5,38.5 - parent: 0 - type: Transform -- uid: 33808 - type: Rack - components: - - pos: 39.5,36.5 - parent: 0 - type: Transform -- uid: 33809 - type: Wrench - components: - - pos: 37.49601,38.54368 - parent: 0 - type: Transform -- uid: 33810 - type: CableMVStack - components: - - pos: 37.52726,37.528053 - parent: 0 - type: Transform -- uid: 33811 - type: ClothingMaskGasExplorer - components: - - pos: 39.480385,36.559303 - parent: 0 - type: Transform -- uid: 33812 - type: ClothingHandsGlovesCombat - components: - - pos: 37.542885,36.57493 - parent: 0 - type: Transform -- uid: 33813 - type: PoweredSmallLight - components: - - pos: 29.5,37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 33814 - type: AirlockMaintChemLocked - components: - - pos: 31.5,37.5 - parent: 0 - type: Transform -- uid: 33815 - type: Grille - components: - - pos: 35.5,39.5 - parent: 0 - type: Transform -- uid: 33816 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 32.5,35.5 - parent: 0 - type: Transform -- uid: 33817 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 33.5,35.5 - parent: 0 - type: Transform -- uid: 33818 - type: ClosetEmergencyFilledRandom - components: - - pos: 35.5,38.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 33819 - type: Rack - components: - - pos: 93.5,56.5 - parent: 0 - type: Transform -- uid: 33820 - type: CrowbarRed - components: - - pos: 93.53844,56.395863 - parent: 0 - type: Transform -- uid: 33821 - type: PottedPlantRandom - components: - - pos: 97.5,56.5 - parent: 0 - type: Transform -- uid: 33822 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 33823 - type: ClosetFireFilled - components: - - pos: 34.5,38.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 33824 - type: Grille - components: - - pos: 38.5,39.5 - parent: 0 - type: Transform -- uid: 33825 - type: Table - components: - - pos: 38.5,38.5 - parent: 0 - type: Transform -- uid: 33826 - type: Table - components: - - pos: 39.5,38.5 - parent: 0 - type: Transform -- uid: 33827 - type: RandomPosterLegit - components: - - pos: 6.5,35.5 - parent: 0 - type: Transform -- uid: 33828 - type: RandomPosterLegit - components: - - pos: 1.5,42.5 - parent: 0 - type: Transform -- uid: 33829 - type: RandomPosterLegit - components: - - pos: 31.5,35.5 - parent: 0 - type: Transform -- uid: 33830 - type: RandomPosterLegit - components: - - pos: 40.5,35.5 - parent: 0 - type: Transform -- uid: 33831 - type: RandomPosterLegit - components: - - pos: 67.5,37.5 - parent: 0 - type: Transform -- uid: 33832 - type: RandomPosterLegit - components: - - pos: 61.5,37.5 - parent: 0 - type: Transform -- uid: 33833 - type: Carpet - components: - - pos: 58.5,36.5 - parent: 0 - type: Transform -- uid: 33834 - type: Carpet - components: - - pos: 58.5,37.5 - parent: 0 - type: Transform -- uid: 33835 - type: Carpet - components: - - pos: 59.5,36.5 - parent: 0 - type: Transform -- uid: 33836 - type: Carpet - components: - - pos: 59.5,37.5 - parent: 0 - type: Transform -- uid: 33837 - type: Carpet - components: - - pos: 60.5,36.5 - parent: 0 - type: Transform -- uid: 33838 - type: Carpet - components: - - pos: 60.5,37.5 - parent: 0 - type: Transform -- uid: 33839 - type: TableWood - components: - - pos: 59.5,36.5 - parent: 0 - type: Transform -- uid: 33840 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 60.5,36.5 - parent: 0 - type: Transform -- uid: 33841 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 58.5,36.5 - parent: 0 - type: Transform -- uid: 33842 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 59.48666,36.510437 - parent: 0 - type: Transform -- uid: 33843 - type: Poweredlight - components: - - pos: 60.5,40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 33844 - type: Grille - components: - - pos: 46.5,37.5 - parent: 0 - type: Transform -- uid: 33845 - type: Grille - components: - - pos: 45.5,35.5 - parent: 0 - type: Transform -- uid: 33846 - type: Grille - components: - - pos: 45.5,39.5 - parent: 0 - type: Transform -- uid: 33847 - type: Grille - components: - - pos: 44.5,39.5 - parent: 0 - type: Transform -- uid: 33848 - type: Grille - components: - - pos: 43.5,39.5 - parent: 0 - type: Transform -- uid: 33849 - type: Grille - components: - - pos: 42.5,39.5 - parent: 0 - type: Transform -- uid: 33850 - type: Grille - components: - - pos: 41.5,39.5 - parent: 0 - type: Transform -- uid: 33851 - type: WallSolid - components: - - pos: 1.5,66.5 - parent: 0 - type: Transform -- uid: 33852 - type: WallSolid - components: - - pos: 1.5,67.5 - parent: 0 - type: Transform -- uid: 33853 - type: WallSolid - components: - - pos: -1.5,70.5 - parent: 0 - type: Transform -- uid: 33854 - type: WallSolid - components: - - pos: -0.5,70.5 - parent: 0 - type: Transform -- uid: 33855 - type: WallSolid - components: - - pos: 0.5,70.5 - parent: 0 - type: Transform -- uid: 33856 - type: WallSolid - components: - - pos: 1.5,70.5 - parent: 0 - type: Transform -- uid: 33857 - type: WallSolid - components: - - pos: 1.5,73.5 - parent: 0 - type: Transform -- uid: 33858 - type: WallSolid - components: - - pos: 1.5,74.5 - parent: 0 - type: Transform -- uid: 33859 - type: WallSolid - components: - - pos: 0.5,74.5 - parent: 0 - type: Transform -- uid: 33860 - type: WallSolid - components: - - pos: 1.5,72.5 - parent: 0 - type: Transform -- uid: 33861 - type: Rack - components: - - pos: 0.5,67.5 - parent: 0 - type: Transform -- uid: 33862 - type: ClosetEmergencyFilledRandom - components: - - pos: 0.5,66.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 33863 - type: Airlock - components: - - pos: 1.5,71.5 - parent: 0 - type: Transform -- uid: 33864 - type: ClosetMaintenanceFilledRandom - components: - - pos: -1.5,74.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 33865 - type: Rack - components: - - pos: -0.5,74.5 - parent: 0 - type: Transform -- uid: 33866 - type: Girder - components: - - pos: 1.5,68.5 - parent: 0 - type: Transform -- uid: 33867 - type: MaintenanceFluffSpawner - components: - - pos: -0.5,74.5 - parent: 0 - type: Transform -- uid: 33868 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: -1.5,71.5 - parent: 0 - type: Transform -- uid: 33869 - type: Catwalk - components: - - pos: 2.5,65.5 - parent: 0 - type: Transform -- uid: 33870 - type: Catwalk - components: - - pos: 2.5,66.5 - parent: 0 - type: Transform -- uid: 33871 - type: Catwalk - components: - - pos: 2.5,67.5 - parent: 0 - type: Transform -- uid: 33872 - type: Catwalk - components: - - pos: 2.5,68.5 - parent: 0 - type: Transform -- uid: 33873 - type: PoweredSmallLight - components: - - pos: -0.5,69.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 33874 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 5.5,74.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 33875 - type: AlwaysPoweredLightSodium - components: - - rot: 3.141592653589793 rad - pos: 5.5,84.5 - parent: 0 - type: Transform -- uid: 33876 - type: SignSecureMed - components: - - pos: 5.5,83.5 - parent: 0 - type: Transform -- uid: 33877 - type: PoweredSmallLight - components: - - pos: 22.5,70.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 33878 - type: PoweredSmallLight - components: - - pos: 30.5,55.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 33879 - type: Table - components: - - pos: 29.5,55.5 - parent: 0 - type: Transform -- uid: 33880 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 30.5,55.5 - parent: 0 - type: Transform -- uid: 33881 - type: LockerElectricalSuppliesFilled - components: - - pos: 29.5,53.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 33882 - type: FoodSoupElectron - components: - - pos: 29.46402,55.518375 - parent: 0 - type: Transform -- uid: 33883 - type: AirlockExternalGlass - components: - - pos: 42.5,54.5 - parent: 0 - type: Transform -- uid: 33884 - type: PoweredlightLED - components: - - rot: 1.5707963267948966 rad - pos: 43.5,55.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 33885 - type: CableApcExtension - components: - - pos: 39.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33886 - type: CableApcExtension - components: - - pos: 40.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33887 - type: CableApcExtension - components: - - pos: 41.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33888 - type: WallSolid - components: - - pos: 54.5,52.5 - parent: 0 - type: Transform -- uid: 33889 - type: WallSolid - components: - - pos: 53.5,52.5 - parent: 0 - type: Transform -- uid: 33890 - type: AirlockMaintLocked - components: - - pos: 55.5,52.5 - parent: 0 - type: Transform -- uid: 33891 - type: WallSolid - components: - - pos: 54.5,51.5 - parent: 0 - type: Transform -- uid: 33892 - type: WallSolid - components: - - pos: 54.5,50.5 - parent: 0 - type: Transform -- uid: 33893 - type: Girder - components: - - pos: 54.5,49.5 - parent: 0 - type: Transform -- uid: 33894 - type: WallSolid - components: - - pos: 54.5,48.5 - parent: 0 - type: Transform -- uid: 33895 - type: WallSolid - components: - - pos: 40.5,40.5 - parent: 0 - type: Transform -- uid: 33896 - type: WallSolid - components: - - pos: 40.5,41.5 - parent: 0 - type: Transform -- uid: 33897 - type: WallSolid - components: - - pos: 40.5,42.5 - parent: 0 - type: Transform -- uid: 33898 - type: WallSolid - components: - - pos: 40.5,43.5 - parent: 0 - type: Transform -- uid: 33899 - type: WallSolid - components: - - pos: 40.5,44.5 - parent: 0 - type: Transform -- uid: 33900 - type: WallSolidRust - components: - - pos: 40.5,45.5 - parent: 0 - type: Transform -- uid: 33901 - type: WallSolid - components: - - pos: 41.5,45.5 - parent: 0 - type: Transform -- uid: 33902 - type: WallSolid - components: - - pos: 45.5,45.5 - parent: 0 - type: Transform -- uid: 33903 - type: WallSolid - components: - - pos: 44.5,45.5 - parent: 0 - type: Transform -- uid: 33904 - type: WallSolid - components: - - pos: 43.5,45.5 - parent: 0 - type: Transform -- uid: 33905 - type: ChairOfficeDark - components: - - pos: 44.5,43.5 - parent: 0 - type: Transform -- uid: 33906 - type: TableWood - components: - - pos: 43.5,41.5 - parent: 0 - type: Transform -- uid: 33907 - type: TableWood - components: - - pos: 43.5,42.5 - parent: 0 - type: Transform -- uid: 33908 - type: TableWood - components: - - pos: 44.5,42.5 - parent: 0 - type: Transform -- uid: 33909 - type: TableWood - components: - - pos: 45.5,42.5 - parent: 0 - type: Transform -- uid: 33910 - type: ChairOfficeDark - components: - - pos: 43.5,43.5 - parent: 0 - type: Transform -- uid: 33911 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 44.5,41.5 - parent: 0 - type: Transform -- uid: 33912 - type: filingCabinetRandom - components: - - pos: 41.5,42.5 - parent: 0 - type: Transform -- uid: 33913 - type: PottedPlant21 - components: - - pos: 41.5,41.5 - parent: 0 - type: Transform -- uid: 33914 - type: Dresser - components: - - pos: 41.5,40.5 - parent: 0 - type: Transform -- uid: 33915 - type: Lamp - components: - - pos: 43.517506,42.783016 - parent: 0 - type: Transform -- uid: 33916 - type: CableApcExtension - components: - - pos: 42.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 33917 - type: CableApcExtension - components: - - pos: 42.5,44.5 - parent: 0 - type: Transform -- uid: 33918 - type: CableApcExtension - components: - - pos: 42.5,43.5 - parent: 0 - type: Transform -- uid: 33919 - type: CableApcExtension - components: - - pos: 42.5,42.5 - parent: 0 - type: Transform -- uid: 33920 - type: CableApcExtension - components: - - pos: 42.5,41.5 - parent: 0 - type: Transform -- uid: 33921 - type: TableWood - components: - - pos: 41.5,43.5 - parent: 0 - type: Transform -- uid: 33922 - type: ComputerFrame - components: - - rot: -1.5707963267948966 rad - pos: 45.5,41.5 - parent: 0 - type: Transform -- uid: 33923 - type: ComputerFrame - components: - - rot: -1.5707963267948966 rad - pos: 45.5,40.5 - parent: 0 - type: Transform -- uid: 33924 - type: PoweredSmallLight - components: - - pos: 43.5,44.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 33925 - type: Rack - components: - - pos: 45.5,44.5 - parent: 0 - type: Transform -- uid: 33926 - type: PaperBin5 - components: - - pos: 45.5,42.5 - parent: 0 - type: Transform -- uid: 33927 - type: PottedPlantRandom - components: - - pos: 41.5,44.5 - parent: 0 - type: Transform -- uid: 33928 - type: Catwalk - components: - - pos: 39.5,46.5 - parent: 0 - type: Transform -- uid: 33929 - type: Catwalk - components: - - pos: 40.5,46.5 - parent: 0 - type: Transform -- uid: 33930 - type: Catwalk - components: - - pos: 41.5,46.5 - parent: 0 - type: Transform -- uid: 33931 - type: Catwalk - components: - - pos: 42.5,46.5 - parent: 0 - type: Transform -- uid: 33932 - type: Catwalk - components: - - pos: 43.5,46.5 - parent: 0 - type: Transform -- uid: 33933 - type: Catwalk - components: - - pos: 44.5,46.5 - parent: 0 - type: Transform -- uid: 33934 - type: Catwalk - components: - - pos: 45.5,46.5 - parent: 0 - type: Transform -- uid: 33935 - type: Catwalk - components: - - pos: 46.5,46.5 - parent: 0 - type: Transform -- uid: 33936 - type: Catwalk - components: - - pos: 47.5,46.5 - parent: 0 - type: Transform -- uid: 33937 - type: FirelockGlass - components: - - pos: 48.5,46.5 - parent: 0 - type: Transform -- uid: 33938 - type: Catwalk - components: - - pos: 49.5,46.5 - parent: 0 - type: Transform -- uid: 33939 - type: Catwalk - components: - - pos: 50.5,46.5 - parent: 0 - type: Transform -- uid: 33940 - type: Catwalk - components: - - pos: 51.5,46.5 - parent: 0 - type: Transform -- uid: 33941 - type: Catwalk - components: - - pos: 52.5,46.5 - parent: 0 - type: Transform -- uid: 33942 - type: Catwalk - components: - - pos: 53.5,46.5 - parent: 0 - type: Transform -- uid: 33943 - type: Catwalk - components: - - pos: 54.5,46.5 - parent: 0 - type: Transform -- uid: 33944 - type: Catwalk - components: - - pos: 55.5,46.5 - parent: 0 - type: Transform -- uid: 33945 - type: Catwalk - components: - - pos: 55.5,45.5 - parent: 0 - type: Transform -- uid: 33946 - type: Catwalk - components: - - pos: 55.5,47.5 - parent: 0 - type: Transform -- uid: 33947 - type: Catwalk - components: - - pos: 55.5,48.5 - parent: 0 - type: Transform -- uid: 33948 - type: Catwalk - components: - - pos: 55.5,49.5 - parent: 0 - type: Transform -- uid: 33949 - type: Catwalk - components: - - pos: 55.5,50.5 - parent: 0 - type: Transform -- uid: 33950 - type: Catwalk - components: - - pos: 55.5,51.5 - parent: 0 - type: Transform -- uid: 33951 - type: Girder - components: - - pos: 39.5,45.5 - parent: 0 - type: Transform -- uid: 33952 - type: ClosetBase - components: - - pos: 39.5,44.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 33953 - type: ClosetBase - components: - - pos: 39.5,43.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 33954 - type: ClosetMaintenanceFilledRandom - components: - - pos: 39.5,42.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 33955 - type: FoodTinPeachesMaint - components: - - pos: 39.457935,40.641968 - parent: 0 - type: Transform -- uid: 33956 - type: Lighter - components: - - pos: 41.301685,43.638096 - parent: 0 - type: Transform -- uid: 33957 - type: Lighter - components: - - pos: 41.551685,43.638096 - parent: 0 - type: Transform -- uid: 33958 - type: Lighter - components: - - pos: 41.41106,43.52872 - parent: 0 - type: Transform -- uid: 33959 - type: WoodDoor - components: - - pos: 42.5,45.5 - parent: 0 - type: Transform -- uid: 33960 - type: GeneratorBasic - components: - - pos: 53.5,51.5 - parent: 0 - type: Transform -- uid: 33961 - type: Grille - components: - - pos: 53.5,50.5 - parent: 0 - type: Transform -- uid: 33962 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,47.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 33963 - type: MaintenanceFluffSpawner - components: - - pos: 45.5,44.5 - parent: 0 - type: Transform -- uid: 33964 - type: WallSolidRust - components: - - pos: 34.5,56.5 - parent: 0 - type: Transform -- uid: 33965 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 39.5,56.5 - parent: 0 - type: Transform -- uid: 33966 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 35.5,56.5 - parent: 0 - type: Transform -- uid: 33967 - type: NitrogenCanister - components: - - pos: 37.5,56.5 - parent: 0 - type: Transform -- uid: 33968 - type: AirCanister - components: - - pos: 38.5,56.5 - parent: 0 - type: Transform -- uid: 33969 - type: OxygenCanister - components: - - pos: 36.5,56.5 - parent: 0 - type: Transform -- uid: 33970 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,58.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 33971 - type: PoweredSmallLightEmpty - components: - - pos: 50.5,47.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 33972 - type: PoweredSmallLightEmpty - components: - - rot: -1.5707963267948966 rad - pos: 55.5,48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 33973 - type: PoweredSmallLightEmpty - components: - - rot: 1.5707963267948966 rad - pos: 38.5,43.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 33974 - type: PoweredSmallLightEmpty - components: - - pos: 33.5,40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 33975 - type: ClosetEmergencyFilledRandom - components: - - pos: 24.5,70.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 33976 - type: ClosetFireFilled - components: - - pos: 24.5,69.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 33977 - type: Girder - components: - - pos: 24.5,68.5 - parent: 0 - type: Transform -- uid: 33978 - type: WallSolid - components: - - pos: 35.5,61.5 - parent: 0 - type: Transform -- uid: 33979 - type: WallSolid - components: - - pos: 36.5,67.5 - parent: 0 - type: Transform -- uid: 33980 - type: WallSolid - components: - - pos: 36.5,66.5 - parent: 0 - type: Transform -- uid: 33981 - type: WallSolid - components: - - pos: 36.5,65.5 - parent: 0 - type: Transform -- uid: 33982 - type: WallSolid - components: - - pos: 36.5,61.5 - parent: 0 - type: Transform -- uid: 33983 - type: WallSolid - components: - - pos: 36.5,62.5 - parent: 0 - type: Transform -- uid: 33984 - type: WallSolid - components: - - pos: 50.5,61.5 - parent: 0 - type: Transform -- uid: 33985 - type: WallSolid - components: - - pos: 50.5,62.5 - parent: 0 - type: Transform -- uid: 33986 - type: WallSolid - components: - - pos: 50.5,64.5 - parent: 0 - type: Transform -- uid: 33987 - type: RandomSpawner - components: - - pos: 44.5,47.5 - parent: 0 - type: Transform -- uid: 33988 - type: RandomSpawner - components: - - pos: 40.5,34.5 - parent: 0 - type: Transform -- uid: 33989 - type: RandomSpawner - components: - - pos: 56.5,33.5 - parent: 0 - type: Transform -- uid: 33990 - type: RandomSpawner - components: - - pos: 55.5,14.5 - parent: 0 - type: Transform -- uid: 33991 - type: RandomSpawner - components: - - pos: 53.5,-0.5 - parent: 0 - type: Transform -- uid: 33992 - type: RandomSpawner - components: - - pos: 42.5,-10.5 - parent: 0 - type: Transform -- uid: 33993 - type: RandomSpawner - components: - - pos: 29.5,-15.5 - parent: 0 - type: Transform -- uid: 33994 - type: RandomSpawner - components: - - pos: 21.5,-5.5 - parent: 0 - type: Transform -- uid: 33995 - type: RandomSpawner - components: - - pos: 0.5,-7.5 - parent: 0 - type: Transform -- uid: 33996 - type: RandomSpawner - components: - - pos: -6.5,4.5 - parent: 0 - type: Transform -- uid: 33997 - type: RandomSpawner - components: - - pos: 0.5,20.5 - parent: 0 - type: Transform -- uid: 33998 - type: RandomSpawner - components: - - pos: -10.5,15.5 - parent: 0 - type: Transform -- uid: 33999 - type: RandomSpawner - components: - - pos: -20.5,20.5 - parent: 0 - type: Transform -- uid: 34000 - type: RandomSpawner - components: - - pos: -4.5,21.5 - parent: 0 - type: Transform -- uid: 34001 - type: RandomSpawner - components: - - pos: -1.5,34.5 - parent: 0 - type: Transform -- uid: 34002 - type: RandomSpawner - components: - - pos: 50.5,25.5 - parent: 0 - type: Transform -- uid: 34003 - type: RandomSpawner - components: - - pos: -20.5,46.5 - parent: 0 - type: Transform -- uid: 34004 - type: RandomSpawner - components: - - pos: -28.5,34.5 - parent: 0 - type: Transform -- uid: 34005 - type: RandomSpawner - components: - - pos: -36.5,40.5 - parent: 0 - type: Transform -- uid: 34006 - type: RandomSpawner - components: - - pos: -30.5,58.5 - parent: 0 - type: Transform -- uid: 34007 - type: RandomSpawner - components: - - pos: -5.5,65.5 - parent: 0 - type: Transform -- uid: 34008 - type: RandomSpawner - components: - - pos: 45.5,26.5 - parent: 0 - type: Transform -- uid: 34009 - type: Table - components: - - pos: 69.5,16.5 - parent: 0 - type: Transform -- uid: 34010 - type: RandomSpawner - components: - - pos: 72.5,14.5 - parent: 0 - type: Transform -- uid: 34011 - type: RandomSpawner - components: - - pos: 90.5,12.5 - parent: 0 - type: Transform -- uid: 34012 - type: RandomSpawner - components: - - pos: 81.5,29.5 - parent: 0 - type: Transform -- uid: 34013 - type: RandomSpawner - components: - - pos: 94.5,40.5 - parent: 0 - type: Transform -- uid: 34014 - type: RandomSpawner - components: - - pos: 65.5,38.5 - parent: 0 - type: Transform -- uid: 34015 - type: RandomSpawner - components: - - pos: 13.5,17.5 - parent: 0 - type: Transform -- uid: 34016 - type: RandomSpawner - components: - - pos: 15.5,27.5 - parent: 0 - type: Transform -- uid: 34017 - type: APCBasic - components: - - pos: 54.5,65.5 - parent: 0 - type: Transform -- uid: 34018 - type: CableMV - components: - - pos: 55.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34019 - type: CableMV - components: - - pos: 55.5,58.5 - parent: 0 - type: Transform -- uid: 34020 - type: CableMV - components: - - pos: 55.5,59.5 - parent: 0 - type: Transform -- uid: 34021 - type: CableMV - components: - - pos: 55.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34022 - type: CableMV - components: - - pos: 55.5,61.5 - parent: 0 - type: Transform -- uid: 34023 - type: CableMV - components: - - pos: 55.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34024 - type: CableMV - components: - - pos: 55.5,63.5 - parent: 0 - type: Transform -- uid: 34025 - type: CableMV - components: - - pos: 54.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34026 - type: CableMV - components: - - pos: 54.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34027 - type: CableMV - components: - - pos: 54.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34028 - type: CableApcExtension - components: - - pos: 54.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34029 - type: CableApcExtension - components: - - pos: 55.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34030 - type: CableApcExtension - components: - - pos: 55.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34031 - type: CableApcExtension - components: - - pos: 55.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34032 - type: CableApcExtension - components: - - pos: 56.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34033 - type: CableApcExtension - components: - - pos: 57.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34034 - type: CableApcExtension - components: - - pos: 57.5,68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34035 - type: CableApcExtension - components: - - pos: 54.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34036 - type: CableApcExtension - components: - - pos: 53.5,64.5 - parent: 0 - type: Transform -- uid: 34037 - type: CableApcExtension - components: - - pos: 52.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34038 - type: CableApcExtension - components: - - pos: 52.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34039 - type: CableApcExtension - components: - - pos: 52.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34040 - type: CableApcExtension - components: - - pos: 52.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34041 - type: CableApcExtension - components: - - pos: 52.5,68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34042 - type: CableApcExtension - components: - - pos: 52.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34043 - type: CableApcExtension - components: - - pos: 52.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34044 - type: CableApcExtension - components: - - pos: 54.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34045 - type: CableApcExtension - components: - - pos: 55.5,63.5 - parent: 0 - type: Transform -- uid: 34046 - type: CableApcExtension - components: - - pos: 55.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34047 - type: CableApcExtension - components: - - pos: 55.5,61.5 - parent: 0 - type: Transform -- uid: 34048 - type: CableApcExtension - components: - - pos: 55.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34049 - type: CableApcExtension - components: - - pos: 55.5,59.5 - parent: 0 - type: Transform -- uid: 34050 - type: CableApcExtension - components: - - pos: 55.5,58.5 - parent: 0 - type: Transform -- uid: 34051 - type: CableApcExtension - components: - - pos: 55.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34052 - type: CableApcExtension - components: - - pos: 55.5,56.5 - parent: 0 - type: Transform -- uid: 34053 - type: CableApcExtension - components: - - pos: 55.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34054 - type: ComputerSolarControl - components: - - pos: 53.5,68.5 - parent: 0 - type: Transform -- uid: 34055 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 53.5,67.5 - parent: 0 - type: Transform -- uid: 34056 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 53.5,66.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34057 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,68.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34058 - type: CrateEngineeringCableHV - components: - - pos: 53.5,66.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 34059 - type: ChairOfficeDark - components: - - pos: 54.5,62.5 - parent: 0 - type: Transform -- uid: 34060 - type: ClosetEmergencyFilledRandom - components: - - pos: 55.5,68.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 34061 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 54.5,60.5 - parent: 0 - type: Transform -- uid: 34062 - type: HatBandRed - components: - - pos: 33.403896,58.463535 - parent: 0 - type: Transform -- uid: 34063 - type: Bookshelf - components: - - pos: 53.5,55.5 - parent: 0 - type: Transform -- uid: 34064 - type: Bookshelf - components: - - pos: 53.5,54.5 - parent: 0 - type: Transform -- uid: 34065 - type: RandomDrinkBottle - components: - - pos: 47.5,65.5 - parent: 0 - type: Transform -- uid: 34066 - type: RandomFoodSingle - components: - - pos: 46.5,61.5 - parent: 0 - type: Transform -- uid: 34067 - type: RandomFoodSingle - components: - - pos: 40.5,62.5 - parent: 0 - type: Transform -- uid: 34068 - type: RandomFoodSingle - components: - - pos: 38.5,58.5 - parent: 0 - type: Transform -- uid: 34069 - type: ClothingEyesBlindfold - components: - - pos: -45.47419,-8.439227 - parent: 0 - type: Transform -- uid: 34070 - type: ClothingNeckBling - components: - - pos: 90.33867,46.51819 - parent: 0 - type: Transform -- uid: 34071 - type: ClothingHeadHatBunny - components: - - pos: 38.380043,-9.49547 - parent: 0 - type: Transform -- uid: 34072 - type: ClothingHeadHatChickenhead - components: - - pos: 23.453465,65.9071 - parent: 0 - type: Transform -- uid: 34073 - type: ClothingOuterSuitChicken - components: - - pos: 23.46909,65.56335 - parent: 0 - type: Transform -- uid: 34074 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 55.5,60.5 - parent: 0 - type: Transform -- uid: 34075 - type: Bookshelf - components: - - pos: 56.5,65.5 - parent: 0 - type: Transform -- uid: 34076 - type: Bookshelf - components: - - pos: 51.5,61.5 - parent: 0 - type: Transform -- uid: 34077 - type: Bookshelf - components: - - pos: 51.5,62.5 - parent: 0 - type: Transform -- uid: 34078 - type: HatBandRed - components: - - pos: 33.435146,58.088535 - parent: 0 - type: Transform -- uid: 34079 - type: Catwalk - components: - - pos: 57.5,67.5 - parent: 0 - type: Transform -- uid: 34080 - type: Catwalk - components: - - pos: 57.5,68.5 - parent: 0 - type: Transform -- uid: 34081 - type: Catwalk - components: - - pos: 60.5,70.5 - parent: 0 - type: Transform -- uid: 34082 - type: Catwalk - components: - - pos: 61.5,70.5 - parent: 0 - type: Transform -- uid: 34083 - type: Catwalk - components: - - pos: 62.5,70.5 - parent: 0 - type: Transform -- uid: 34084 - type: Catwalk - components: - - pos: 63.5,70.5 - parent: 0 - type: Transform -- uid: 34085 - type: Catwalk - components: - - pos: 64.5,70.5 - parent: 0 - type: Transform -- uid: 34086 - type: Catwalk - components: - - pos: 64.5,69.5 - parent: 0 - type: Transform -- uid: 34087 - type: Catwalk - components: - - pos: 64.5,68.5 - parent: 0 - type: Transform -- uid: 34088 - type: Catwalk - components: - - pos: 64.5,67.5 - parent: 0 - type: Transform -- uid: 34089 - type: TableGlass - components: - - pos: 47.5,61.5 - parent: 0 - type: Transform -- uid: 34090 - type: TableGlass - components: - - pos: 46.5,61.5 - parent: 0 - type: Transform -- uid: 34091 - type: TableGlass - components: - - pos: 45.5,61.5 - parent: 0 - type: Transform -- uid: 34092 - type: StoolBar - components: - - pos: 47.5,62.5 - parent: 0 - type: Transform -- uid: 34093 - type: StoolBar - components: - - pos: 46.5,62.5 - parent: 0 - type: Transform -- uid: 34094 - type: StoolBar - components: - - pos: 45.5,62.5 - parent: 0 - type: Transform -- uid: 34095 - type: WallSolid - components: - - pos: 41.5,62.5 - parent: 0 - type: Transform -- uid: 34096 - type: Table - components: - - pos: 40.5,62.5 - parent: 0 - type: Transform -- uid: 34097 - type: Table - components: - - pos: 39.5,62.5 - parent: 0 - type: Transform -- uid: 34098 - type: WallSolid - components: - - pos: 38.5,62.5 - parent: 0 - type: Transform -- uid: 34099 - type: WoodDoor - components: - - pos: 37.5,62.5 - parent: 0 - type: Transform -- uid: 34100 - type: Table - components: - - pos: 41.5,61.5 - parent: 0 - type: Transform -- uid: 34101 - type: Airlock - components: - - pos: 36.5,64.5 - parent: 0 - type: Transform -- uid: 34102 - type: Airlock - components: - - pos: 50.5,63.5 - parent: 0 - type: Transform -- uid: 34103 - type: WallSolidRust - components: - - pos: 36.5,63.5 - parent: 0 - type: Transform -- uid: 34104 - type: Table - components: - - pos: 36.5,60.5 - parent: 0 - type: Transform -- uid: 34105 - type: Table - components: - - pos: 35.5,60.5 - parent: 0 - type: Transform -- uid: 34106 - type: Table - components: - - pos: 35.5,59.5 - parent: 0 - type: Transform -- uid: 34107 - type: Table - components: - - pos: 35.5,58.5 - parent: 0 - type: Transform -- uid: 34108 - type: Table - components: - - pos: 36.5,58.5 - parent: 0 - type: Transform -- uid: 34109 - type: Table - components: - - pos: 37.5,58.5 - parent: 0 - type: Transform -- uid: 34110 - type: Table - components: - - pos: 38.5,58.5 - parent: 0 - type: Transform -- uid: 34111 - type: KitchenMicrowave - components: - - pos: 36.5,60.5 - parent: 0 - type: Transform -- uid: 34112 - type: KitchenReagentGrinder - components: - - pos: 35.5,60.5 - parent: 0 - type: Transform -- uid: 34113 - type: KitchenSpike - components: - - pos: 40.5,58.5 - parent: 0 - type: Transform -- uid: 34114 - type: FoodCondimentBottleEnzyme - components: - - pos: 36.329525,58.730663 - parent: 0 - type: Transform -- uid: 34115 - type: ReagentContainerFlour - components: - - pos: 36.579525,58.574413 - parent: 0 - type: Transform -- uid: 34116 - type: LockerFreezer - components: - - pos: 39.5,58.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 34117 - type: ClothingOuterApronChef - components: - - pos: 37.78265,58.574413 - parent: 0 - type: Transform -- uid: 34118 - type: Lamp - components: - - pos: 35.579525,58.918163 - parent: 0 - type: Transform -- uid: 34119 - type: CableApcExtension - components: - - pos: 33.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34120 - type: CableApcExtension - components: - - pos: 34.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34121 - type: CableApcExtension - components: - - pos: 35.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34122 - type: CableApcExtension - components: - - pos: 36.5,64.5 - parent: 0 - type: Transform -- uid: 34123 - type: CableApcExtension - components: - - pos: 37.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34124 - type: CableApcExtension - components: - - pos: 38.5,64.5 - parent: 0 - type: Transform -- uid: 34125 - type: CableApcExtension - components: - - pos: 37.5,63.5 - parent: 0 - type: Transform -- uid: 34126 - type: CableApcExtension - components: - - pos: 37.5,62.5 - parent: 0 - type: Transform -- uid: 34127 - type: CableApcExtension - components: - - pos: 37.5,61.5 - parent: 0 - type: Transform -- uid: 34128 - type: CableApcExtension - components: - - pos: 37.5,60.5 - parent: 0 - type: Transform -- uid: 34129 - type: CableApcExtension - components: - - pos: 37.5,59.5 - parent: 0 - type: Transform -- uid: 34130 - type: CableApcExtension - components: - - pos: 38.5,59.5 - parent: 0 - type: Transform -- uid: 34131 - type: CableApcExtension - components: - - pos: 52.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34132 - type: CableApcExtension - components: - - pos: 51.5,63.5 - parent: 0 - type: Transform -- uid: 34133 - type: CableApcExtension - components: - - pos: 50.5,63.5 - parent: 0 - type: Transform -- uid: 34134 - type: CableApcExtension - components: - - pos: 49.5,63.5 - parent: 0 - type: Transform -- uid: 34135 - type: CableApcExtension - components: - - pos: 48.5,63.5 - parent: 0 - type: Transform -- uid: 34136 - type: CableApcExtension - components: - - pos: 47.5,63.5 - parent: 0 - type: Transform -- uid: 34137 - type: CableApcExtension - components: - - pos: 46.5,63.5 - parent: 0 - type: Transform -- uid: 34138 - type: CableApcExtension - components: - - pos: 45.5,63.5 - parent: 0 - type: Transform -- uid: 34139 - type: CableApcExtension - components: - - pos: 44.5,63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34140 - type: CableApcExtension - components: - - pos: 44.5,62.5 - parent: 0 - type: Transform -- uid: 34141 - type: CableApcExtension - components: - - pos: 44.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34142 - type: CableApcExtension - components: - - pos: 43.5,63.5 - parent: 0 - type: Transform -- uid: 34143 - type: CableApcExtension - components: - - pos: 42.5,63.5 - parent: 0 - type: Transform -- uid: 34144 - type: CableApcExtension - components: - - pos: 41.5,63.5 - parent: 0 - type: Transform -- uid: 34145 - type: CableApcExtension - components: - - pos: 47.5,64.5 - parent: 0 - type: Transform -- uid: 34146 - type: CableApcExtension - components: - - pos: 39.5,59.5 - parent: 0 - type: Transform -- uid: 34147 - type: CableApcExtension - components: - - pos: 39.5,64.5 - parent: 0 - type: Transform -- uid: 34148 - type: Stool - components: - - pos: 40.5,63.5 - parent: 0 - type: Transform -- uid: 34149 - type: Stool - components: - - pos: 39.5,63.5 - parent: 0 - type: Transform -- uid: 34150 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: 40.5,59.5 - parent: 0 - type: Transform -- uid: 34151 - type: Beaker - components: - - pos: 35.422684,59.61687 - parent: 0 - type: Transform -- uid: 34152 - type: Beaker - components: - - pos: 35.547684,59.74187 - parent: 0 - type: Transform -- uid: 34153 - type: PianoInstrument - components: - - rot: -1.5707963267948966 rad - pos: 42.5,64.5 - parent: 0 - type: Transform -- uid: 34154 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 43.5,64.5 - parent: 0 - type: Transform -- uid: 34155 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 48.5,65.5 - parent: 0 - type: Transform -- uid: 34156 - type: RandomSpawner - components: - - pos: 44.5,62.5 - parent: 0 - type: Transform -- uid: 34157 - type: RandomSpawner - components: - - pos: 38.5,64.5 - parent: 0 - type: Transform -- uid: 34158 - type: RandomSpawner - components: - - pos: 35.5,55.5 - parent: 0 - type: Transform -- uid: 34159 - type: RandomSpawner - components: - - pos: 33.5,60.5 - parent: 0 - type: Transform -- uid: 34160 - type: PartRodMetal - components: - - pos: 38.44597,65.37185 - parent: 0 - type: Transform -- uid: 34161 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34162 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34163 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34164 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34165 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34166 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34167 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34168 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34169 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34170 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34171 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34172 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34173 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34174 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34175 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34176 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34177 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34178 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34179 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34180 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34181 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34182 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34183 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34184 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34185 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34186 - type: FloorTileItemBar - components: - - pos: 45.48264,64.53698 - parent: 0 - type: Transform -- uid: 34187 - type: SignBar - components: - - pos: 36.5,65.5 - parent: 0 - type: Transform -- uid: 34188 - type: SignBar - components: - - pos: 50.5,61.5 - parent: 0 - type: Transform -- uid: 34189 - type: RandomPosterContraband - components: - - pos: 34.5,58.5 - parent: 0 - type: Transform -- uid: 34190 - type: RandomPosterContraband - components: - - pos: 36.5,66.5 - parent: 0 - type: Transform -- uid: 34191 - type: RandomPosterContraband - components: - - pos: 50.5,64.5 - parent: 0 - type: Transform -- uid: 34192 - type: BarSignTheBirdCage - components: - - pos: 42.5,65.5 - parent: 0 - type: Transform -- uid: 34193 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 38.5,58.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34194 - type: Rack - components: - - pos: 34.5,66.5 - parent: 0 - type: Transform -- uid: 34195 - type: RandomSpawner - components: - - pos: 39.5,60.5 - parent: 0 - type: Transform -- uid: 34196 - type: GrilleBroken - components: - - pos: 42.5,61.5 - parent: 0 - type: Transform -- uid: 34197 - type: Barricade - components: - - pos: 49.5,63.5 - parent: 0 - type: Transform -- uid: 34198 - type: WallSolidRust - components: - - pos: 33.5,62.5 - parent: 0 - type: Transform -- uid: 34199 - type: TableCarpet - components: - - pos: 47.5,65.5 - parent: 0 - type: Transform -- uid: 34200 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 46.5,65.5 - parent: 0 - type: Transform -- uid: 34201 - type: WallSolidRust - components: - - pos: 33.5,63.5 - parent: 0 - type: Transform -- uid: 34202 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 47.5,64.5 - parent: 0 - type: Transform -- uid: 34203 - type: Rack - components: - - pos: 36.5,68.5 - parent: 0 - type: Transform -- uid: 34204 - type: Grille - components: - - pos: 35.5,67.5 - parent: 0 - type: Transform -- uid: 34205 - type: ClothingOuterHardsuitEVA - components: - - pos: 36.407623,68.61223 - parent: 0 - type: Transform -- uid: 34206 - type: Girder - components: - - pos: 35.5,66.5 - parent: 0 - type: Transform -- uid: 34207 - type: ClosetL3Filled - components: - - pos: 34.5,62.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 34208 - type: Rack - components: - - pos: 35.5,62.5 - parent: 0 - type: Transform -- uid: 34209 - type: ClothingNeckScarfStripedBlue - components: - - pos: 35.511284,62.43416 - parent: 0 - type: Transform -- uid: 34210 - type: WallSolid - components: - - pos: 29.5,65.5 - parent: 0 - type: Transform -- uid: 34211 - type: Girder - components: - - pos: 30.5,65.5 - parent: 0 - type: Transform -- uid: 34212 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 28.5,66.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34213 - type: Grille - components: - - pos: 38.5,67.5 - parent: 0 - type: Transform -- uid: 34214 - type: Grille - components: - - pos: 46.5,66.5 - parent: 0 - type: Transform -- uid: 34215 - type: MaintenanceFluffSpawner - components: - - pos: 34.5,66.5 - parent: 0 - type: Transform -- uid: 34216 - type: MaintenanceToolSpawner - components: - - pos: 28.5,57.5 - parent: 0 - type: Transform -- uid: 34217 - type: MaintenanceToolSpawner - components: - - pos: 30.5,59.5 - parent: 0 - type: Transform -- uid: 34218 - type: RandomPosterContraband - components: - - pos: 20.5,67.5 - parent: 0 - type: Transform -- uid: 34219 - type: Rack - components: - - pos: 21.5,65.5 - parent: 0 - type: Transform -- uid: 34220 - type: MaintenanceWeaponSpawner - components: - - pos: 21.5,65.5 - parent: 0 - type: Transform -- uid: 34221 - type: TableGlass - components: - - pos: 23.5,65.5 - parent: 0 - type: Transform -- uid: 34222 - type: ClosetMaintenanceFilledRandom - components: - - pos: 39.5,56.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 34223 - type: ClothingShoesBootsCombatFilled - components: - - pos: 50.62725,52.303474 - parent: 0 - type: Transform -- uid: 34224 - type: ClothingHeadHatCorpsoft - components: - - pos: 0.5132092,67.523384 - parent: 0 - type: Transform -- uid: 34225 - type: ClothingUniformJumpsuitMonasticRobeDark - components: - - pos: -21.503763,73.529175 - parent: 0 - type: Transform -- uid: 34226 - type: ClothingEyesHudDiagnostic - components: - - pos: 76.599434,-10.249322 - parent: 0 - type: Transform -- uid: 34227 - type: ClothingEyesHudDiagnostic - components: - - pos: 76.67756,-10.374322 - parent: 0 - type: Transform -- uid: 34228 - type: ClothingHeadHatBeretEngineering - components: - - pos: 77.581795,-9.247614 - parent: 0 - type: Transform -- uid: 34229 - type: Catwalk - components: - - pos: 32.5,-12.5 - parent: 0 - type: Transform -- uid: 34230 - type: Catwalk - components: - - pos: 33.5,-12.5 - parent: 0 - type: Transform -- uid: 34231 - type: Catwalk - components: - - pos: 33.5,-11.5 - parent: 0 - type: Transform -- uid: 34232 - type: Catwalk - components: - - pos: 33.5,-10.5 - parent: 0 - type: Transform -- uid: 34233 - type: Catwalk - components: - - pos: 33.5,-9.5 - parent: 0 - type: Transform -- uid: 34234 - type: Catwalk - components: - - pos: 33.5,-8.5 - parent: 0 - type: Transform -- uid: 34235 - type: Catwalk - components: - - pos: 33.5,-7.5 - parent: 0 - type: Transform -- uid: 34236 - type: Catwalk - components: - - pos: 33.5,-6.5 - parent: 0 - type: Transform -- uid: 34237 - type: Catwalk - components: - - pos: 33.5,-5.5 - parent: 0 - type: Transform -- uid: 34238 - type: ClothingHeadFishCap - components: - - pos: 29.559826,64.387115 - parent: 0 - type: Transform -- uid: 34239 - type: BookFishing - components: - - pos: 29.341076,64.574615 - parent: 0 - type: Transform -- uid: 34240 - type: ClothingShoesFlippers - components: - - pos: 52.524323,49.62126 - parent: 0 - type: Transform -- uid: 34241 - type: ClothingHeadHatFlowerCrown - components: - - pos: -11.331056,68.58379 - parent: 0 - type: Transform -- uid: 34242 - type: ClothingOuterGhostSheet - components: - - pos: 78.48971,19.483404 - parent: 0 - type: Transform -- uid: 34243 - type: ChairWood - components: - - pos: 78.5,19.5 - parent: 0 - type: Transform -- uid: 34244 - type: ClothingHeadsetRobotics - components: - - pos: 36.64324,-23.319489 - parent: 0 - type: Transform -- uid: 34245 - type: ClothingBeltHolster - components: - - pos: 44.375267,-49.502228 - parent: 0 - type: Transform -- uid: 34246 - type: Rack - components: - - pos: 44.5,-49.5 - parent: 0 - type: Transform -- uid: 34247 - type: ClothingHeadHatPaper - components: - - pos: 46.47809,19.997993 - parent: 0 - type: Transform -- uid: 34248 - type: ClothingUniformOveralls - components: - - pos: -7.5013504,38.408726 - parent: 0 - type: Transform -- uid: 34249 - type: ClothingHeadHatPwig - components: - - pos: 66.430885,30.450542 - parent: 0 - type: Transform -- uid: 34250 - type: ClothingHeadHatFlowerCrown - components: - - pos: 18.454435,-0.50476944 - parent: 0 - type: Transform -- uid: 34251 - type: ClothingHeadHatHairflower - components: - - pos: 18.62631,-0.28601944 - parent: 0 - type: Transform -- uid: 34252 - type: ClothingUniformColorRainbow - components: - - pos: 0.48642015,73.50092 - parent: 0 - type: Transform -- uid: 34253 - type: ClothingUniformJumpsuitReporter - components: - - pos: 41.590683,43.383884 - parent: 0 - type: Transform -- uid: 34254 - type: ClothingHeadHatTrucker - components: - - pos: -7.510195,38.688744 - parent: 0 - type: Transform -- uid: 34255 - type: ClothingNeckCloakTrans - components: - - pos: -35.53245,36.540043 - parent: 0 - type: Transform -- uid: 34256 - type: ClothingHeadHatXmasCrown - components: - - pos: 112.55392,23.481916 - parent: 0 - type: Transform -- uid: 34257 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-6.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Show Room - type: SurveillanceCamera -- uid: 34258 - type: MountainRock - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-14.5 - parent: 0 - type: Transform -- uid: 34259 - type: MountainRock - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-15.5 - parent: 0 - type: Transform -- uid: 34260 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-24.5 - parent: 0 - type: Transform -- uid: 34261 - type: MaintenanceFluffSpawner - components: - - pos: 58.5,-24.5 - parent: 0 - type: Transform -- uid: 34262 - type: RandomArtifactSpawner20 - components: - - pos: 51.5,-29.5 - parent: 0 - type: Transform -- uid: 34263 - type: RandomArtifactSpawner20 - components: - - pos: 51.5,-31.5 - parent: 0 - type: Transform -- uid: 34264 - type: Grille - components: - - pos: 56.5,-59.5 - parent: 0 - type: Transform -- uid: 34265 - type: Grille - components: - - pos: 57.5,-59.5 - parent: 0 - type: Transform -- uid: 34266 - type: Grille - components: - - pos: 58.5,-59.5 - parent: 0 - type: Transform -- uid: 34267 - type: WallSolid - components: - - pos: 59.5,-51.5 - parent: 0 - type: Transform -- uid: 34268 - type: WallSolid - components: - - pos: 59.5,-52.5 - parent: 0 - type: Transform -- uid: 34269 - type: WallSolid - components: - - pos: 59.5,-54.5 - parent: 0 - type: Transform -- uid: 34270 - type: Grille - components: - - pos: 75.5,-53.5 - parent: 0 - type: Transform -- uid: 34271 - type: Grille - components: - - pos: 75.5,-54.5 - parent: 0 - type: Transform -- uid: 34272 - type: Grille - components: - - pos: 75.5,-55.5 - parent: 0 - type: Transform -- uid: 34273 - type: Grille - components: - - pos: 76.5,-55.5 - parent: 0 - type: Transform -- uid: 34274 - type: Grille - components: - - pos: 77.5,-55.5 - parent: 0 - type: Transform -- uid: 34275 - type: Grille - components: - - pos: 78.5,-55.5 - parent: 0 - type: Transform -- uid: 34276 - type: Grille - components: - - pos: 79.5,-55.5 - parent: 0 - type: Transform -- uid: 34277 - type: Grille - components: - - pos: 79.5,-54.5 - parent: 0 - type: Transform -- uid: 34278 - type: Grille - components: - - pos: 79.5,-53.5 - parent: 0 - type: Transform -- uid: 34279 - type: Grille - components: - - pos: 79.5,-52.5 - parent: 0 - type: Transform -- uid: 34280 - type: Grille - components: - - pos: 79.5,-51.5 - parent: 0 - type: Transform -- uid: 34281 - type: Grille - components: - - pos: 80.5,-50.5 - parent: 0 - type: Transform -- uid: 34282 - type: Grille - components: - - pos: 81.5,-50.5 - parent: 0 - type: Transform -- uid: 34283 - type: Grille - components: - - pos: 81.5,-51.5 - parent: 0 - type: Transform -- uid: 34284 - type: Grille - components: - - pos: 82.5,-51.5 - parent: 0 - type: Transform -- uid: 34285 - type: Grille - components: - - pos: 82.5,-52.5 - parent: 0 - type: Transform -- uid: 34286 - type: Grille - components: - - pos: 83.5,-53.5 - parent: 0 - type: Transform -- uid: 34287 - type: Grille - components: - - pos: 83.5,-54.5 - parent: 0 - type: Transform -- uid: 34288 - type: WallSolid - components: - - pos: 68.5,-45.5 - parent: 0 - type: Transform -- uid: 34289 - type: WallSolid - components: - - pos: 91.5,-50.5 - parent: 0 - type: Transform -- uid: 34290 - type: WallSolid - components: - - pos: 68.5,-47.5 - parent: 0 - type: Transform -- uid: 34291 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 94.5,-49.5 - parent: 0 - type: Transform -- uid: 34292 - type: Stool - components: - - pos: 93.5,-48.5 - parent: 0 - type: Transform -- uid: 34293 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 88.5,-48.5 - parent: 0 - type: Transform -- uid: 34294 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 90.5,-49.5 - parent: 0 - type: Transform -- uid: 34295 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 92.5,-49.5 - parent: 0 - type: Transform -- uid: 34296 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 88.5,-49.5 - parent: 0 - type: Transform -- uid: 34297 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 90.5,-48.5 - parent: 0 - type: Transform -- uid: 34298 - type: TableCarpet - components: - - pos: 89.5,-48.5 - parent: 0 - type: Transform -- uid: 34299 - type: TableCarpet - components: - - pos: 89.5,-49.5 - parent: 0 - type: Transform -- uid: 34300 - type: WallSolid - components: - - pos: 95.5,-47.5 - parent: 0 - type: Transform -- uid: 34301 - type: WallSolidRust - components: - - pos: 95.5,-48.5 - parent: 0 - type: Transform -- uid: 34302 - type: WallSolid - components: - - pos: 95.5,-49.5 - parent: 0 - type: Transform -- uid: 34303 - type: WallSolid - components: - - pos: 92.5,-50.5 - parent: 0 - type: Transform -- uid: 34304 - type: WallSolid - components: - - pos: 95.5,-50.5 - parent: 0 - type: Transform -- uid: 34305 - type: WallSolidRust - components: - - pos: 94.5,-50.5 - parent: 0 - type: Transform -- uid: 34306 - type: WallSolidRust - components: - - pos: 93.5,-50.5 - parent: 0 - type: Transform -- uid: 34307 - type: PoweredlightExterior - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-55.5 - parent: 0 - type: Transform -- uid: 34308 - type: WallSolid - components: - - pos: 66.5,-47.5 - parent: 0 - type: Transform -- uid: 34309 - type: WallSolid - components: - - pos: 67.5,-47.5 - parent: 0 - type: Transform -- uid: 34310 - type: WallSolid - components: - - pos: 67.5,-48.5 - parent: 0 - type: Transform -- uid: 34311 - type: WallSolid - components: - - pos: 67.5,-49.5 - parent: 0 - type: Transform -- uid: 34312 - type: WallSolid - components: - - pos: 67.5,-50.5 - parent: 0 - type: Transform -- uid: 34313 - type: WallSolid - components: - - pos: 67.5,-51.5 - parent: 0 - type: Transform -- uid: 34314 - type: WallSolid - components: - - pos: 67.5,-52.5 - parent: 0 - type: Transform -- uid: 34315 - type: WallSolid - components: - - pos: 67.5,-53.5 - parent: 0 - type: Transform -- uid: 34316 - type: WallSolid - components: - - pos: 67.5,-54.5 - parent: 0 - type: Transform -- uid: 34317 - type: WallSolid - components: - - pos: 88.5,-50.5 - parent: 0 - type: Transform -- uid: 34318 - type: WallSolid - components: - - pos: 89.5,-50.5 - parent: 0 - type: Transform -- uid: 34319 - type: WallSolid - components: - - pos: 90.5,-50.5 - parent: 0 - type: Transform -- uid: 34320 - type: WallSolid - components: - - pos: 87.5,-50.5 - parent: 0 - type: Transform -- uid: 34321 - type: WallSolidRust - components: - - pos: 87.5,-51.5 - parent: 0 - type: Transform -- uid: 34322 - type: WallSolid - components: - - pos: 87.5,-52.5 - parent: 0 - type: Transform -- uid: 34323 - type: WallSolid - components: - - pos: 87.5,-53.5 - parent: 0 - type: Transform -- uid: 34324 - type: WallSolid - components: - - pos: 87.5,-54.5 - parent: 0 - type: Transform -- uid: 34325 - type: TableCarpet - components: - - pos: 77.5,-52.5 - parent: 0 - type: Transform -- uid: 34326 - type: TableCarpet - components: - - pos: 77.5,-53.5 - parent: 0 - type: Transform -- uid: 34327 - type: TableWood - components: - - pos: 82.5,-50.5 - parent: 0 - type: Transform -- uid: 34328 - type: TableWood - components: - - pos: 83.5,-50.5 - parent: 0 - type: Transform -- uid: 34329 - type: TableWood - components: - - pos: 84.5,-50.5 - parent: 0 - type: Transform -- uid: 34330 - type: TableWood - components: - - pos: 85.5,-50.5 - parent: 0 - type: Transform -- uid: 34331 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 86.5,-54.5 - parent: 0 - type: Transform -- uid: 34332 - type: TableWood - components: - - pos: 86.5,-53.5 - parent: 0 - type: Transform -- uid: 34333 - type: TableWood - components: - - pos: 86.5,-52.5 - parent: 0 - type: Transform -- uid: 34334 - type: BoozeDispenser - components: - - rot: -1.5707963267948966 rad - pos: 86.5,-52.5 - parent: 0 - type: Transform -- uid: 34335 - type: soda_dispenser - components: - - rot: -1.5707963267948966 rad - pos: 86.5,-53.5 - parent: 0 - type: Transform -- uid: 34336 - type: Barricade - components: - - pos: 86.5,-50.5 - parent: 0 - type: Transform -- uid: 34337 - type: StoolBar - components: - - pos: 82.5,-49.5 - parent: 0 - type: Transform -- uid: 34338 - type: StoolBar - components: - - pos: 83.5,-49.5 - parent: 0 - type: Transform -- uid: 34339 - type: StoolBar - components: - - pos: 84.5,-49.5 - parent: 0 - type: Transform -- uid: 34340 - type: StoolBar - components: - - pos: 85.5,-49.5 - parent: 0 - type: Transform -- uid: 34341 - type: LockerBoozeFilled - components: - - pos: 84.5,-54.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 34342 - type: TableCarpet - components: - - pos: 77.5,-54.5 - parent: 0 - type: Transform -- uid: 34343 - type: TableCarpet - components: - - rot: 3.141592653589793 rad - pos: 93.5,-49.5 - parent: 0 - type: Transform -- uid: 34344 - type: MountainRock - components: - - pos: 70.5,-45.5 - parent: 0 - type: Transform -- uid: 34345 - type: MountainRock - components: - - pos: 69.5,-45.5 - parent: 0 - type: Transform -- uid: 34346 - type: PoweredSmallLight - components: - - pos: 71.5,-46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34347 - type: PoweredSmallLight - components: - - pos: 87.5,-46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34348 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-54.5 - parent: 0 - type: Transform -- uid: 34349 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-53.5 - parent: 0 - type: Transform -- uid: 34350 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-52.5 - parent: 0 - type: Transform -- uid: 34351 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 76.5,-54.5 - parent: 0 - type: Transform -- uid: 34352 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 76.5,-53.5 - parent: 0 - type: Transform -- uid: 34353 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 76.5,-52.5 - parent: 0 - type: Transform -- uid: 34354 - type: MaterialWoodPlank - components: - - pos: 82.56347,-50.45035 - parent: 0 - type: Transform -- uid: 34355 - type: AirlockMaintGlassLocked - components: - - pos: 68.5,-46.5 - parent: 0 - type: Transform -- uid: 34356 - type: AirlockMaintGlassLocked - components: - - pos: 95.5,-46.5 - parent: 0 - type: Transform -- uid: 34357 - type: Catwalk - components: - - pos: 96.5,-46.5 - parent: 0 - type: Transform -- uid: 34358 - type: Catwalk - components: - - pos: 97.5,-46.5 - parent: 0 - type: Transform -- uid: 34359 - type: Catwalk - components: - - pos: 98.5,-46.5 - parent: 0 - type: Transform -- uid: 34360 - type: Catwalk - components: - - pos: 99.5,-46.5 - parent: 0 - type: Transform -- uid: 34361 - type: Catwalk - components: - - pos: 100.5,-46.5 - parent: 0 - type: Transform -- uid: 34362 - type: Catwalk - components: - - pos: 97.5,-45.5 - parent: 0 - type: Transform -- uid: 34363 - type: Catwalk - components: - - pos: 97.5,-44.5 - parent: 0 - type: Transform -- uid: 34364 - type: Catwalk - components: - - pos: 97.5,-43.5 - parent: 0 - type: Transform -- uid: 34365 - type: Catwalk - components: - - pos: 97.5,-42.5 - parent: 0 - type: Transform -- uid: 34366 - type: Catwalk - components: - - pos: 97.5,-41.5 - parent: 0 - type: Transform -- uid: 34367 - type: Catwalk - components: - - pos: 98.5,-42.5 - parent: 0 - type: Transform -- uid: 34368 - type: Catwalk - components: - - pos: 100.5,-42.5 - parent: 0 - type: Transform -- uid: 34369 - type: Catwalk - components: - - pos: 101.5,-42.5 - parent: 0 - type: Transform -- uid: 34370 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 68.5,-48.5 - parent: 0 - type: Transform -- uid: 34371 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 68.5,-49.5 - parent: 0 - type: Transform -- uid: 34372 - type: CableApcStack1 - components: - - pos: 85.44932,-47.4796 - parent: 0 - type: Transform -- uid: 34373 - type: CableApcStack1 - components: - - pos: 85.46494,-48.432724 - parent: 0 - type: Transform -- uid: 34374 - type: CableApcStack1 - components: - - pos: 85.48057,-49.495224 - parent: 0 - type: Transform -- uid: 34375 - type: CableApcStack1 - components: - - pos: 85.44932,-50.4796 - parent: 0 - type: Transform -- uid: 34376 - type: CableApcStack1 - components: - - pos: 85.41807,-51.370224 - parent: 0 - type: Transform -- uid: 34377 - type: CableApcStack1 - components: - - pos: 85.51182,-52.432724 - parent: 0 - type: Transform -- uid: 34378 - type: CableApcStack1 - components: - - pos: 85.44932,-53.495224 - parent: 0 - type: Transform -- uid: 34379 - type: CableApcStack1 - components: - - pos: 70.41864,-47.5421 - parent: 0 - type: Transform -- uid: 34380 - type: CableApcStack1 - components: - - pos: 70.496765,-48.245224 - parent: 0 - type: Transform -- uid: 34381 - type: CableApcStack1 - components: - - pos: 70.41864,-49.5421 - parent: 0 - type: Transform -- uid: 34382 - type: CableApcStack1 - components: - - pos: 70.54364,-50.6046 - parent: 0 - type: Transform -- uid: 34383 - type: CableApcStack1 - components: - - pos: 70.35614,-51.557724 - parent: 0 - type: Transform -- uid: 34384 - type: CableApcStack1 - components: - - pos: 69.66864,-51.495224 - parent: 0 - type: Transform -- uid: 34385 - type: CableApcStack1 - components: - - pos: 69.653015,-52.44835 - parent: 0 - type: Transform -- uid: 34386 - type: CableApcStack1 - components: - - pos: 69.48114,-53.2296 - parent: 0 - type: Transform -- uid: 34387 - type: CableApcStack1 - components: - - pos: 85.3566,-54.53678 - parent: 0 - type: Transform -- uid: 34388 - type: CableApcStack1 - components: - - pos: 84.6066,-54.44303 - parent: 0 - type: Transform -- uid: 34389 - type: CableApcStack1 - components: - - pos: 69.606155,-54.50553 - parent: 0 - type: Transform -- uid: 34390 - type: CableApcStack1 - components: - - pos: 70.449905,-54.50553 - parent: 0 - type: Transform -- uid: 34391 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 86.5,-51.5 - parent: 0 - type: Transform -- uid: 34392 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-51.5 - parent: 0 - type: Transform -- uid: 34393 - type: BlockGameArcade - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-51.5 - parent: 0 - type: Transform -- uid: 34394 - type: SpaceVillainArcadeFilled - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-52.5 - parent: 0 - type: Transform -- uid: 34395 - type: SpaceVillainArcadeFilled - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-53.5 - parent: 0 - type: Transform -- uid: 34396 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-53.5 - parent: 0 - type: Transform -- uid: 34397 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-52.5 - parent: 0 - type: Transform -- uid: 34398 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-51.5 - parent: 0 - type: Transform -- uid: 34399 - type: TableWood - components: - - pos: 80.5,-47.5 - parent: 0 - type: Transform -- uid: 34400 - type: TableWood - components: - - pos: 73.5,-48.5 - parent: 0 - type: Transform -- uid: 34401 - type: PianoInstrument - components: - - pos: 77.5,-47.5 - parent: 0 - type: Transform -- uid: 34402 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 77.5,-48.5 - parent: 0 - type: Transform -- uid: 34403 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 78.5,-48.5 - parent: 0 - type: Transform -- uid: 34404 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 76.5,-48.5 - parent: 0 - type: Transform -- uid: 34405 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 79.5,-47.5 - parent: 0 - type: Transform -- uid: 34406 - type: RailingCornerSmall - components: - - pos: 79.5,-48.5 - parent: 0 - type: Transform -- uid: 34407 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-47.5 - parent: 0 - type: Transform -- uid: 34408 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-48.5 - parent: 0 - type: Transform -- uid: 34409 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.43527 - parent: 0 - type: Transform -- uid: 34410 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.43527 - parent: 0 - type: Transform -- uid: 34411 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.43527 - parent: 0 - type: Transform -- uid: 34412 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.43527 - parent: 0 - type: Transform -- uid: 34413 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.43527 - parent: 0 - type: Transform -- uid: 34414 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.43527 - parent: 0 - type: Transform -- uid: 34415 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.43527 - parent: 0 - type: Transform -- uid: 34416 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.43527 - parent: 0 - type: Transform -- uid: 34417 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.43527 - parent: 0 - type: Transform -- uid: 34418 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.43527 - parent: 0 - type: Transform -- uid: 34419 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.43527 - parent: 0 - type: Transform -- uid: 34420 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.43527 - parent: 0 - type: Transform -- uid: 34421 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.43527 - parent: 0 - type: Transform -- uid: 34422 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.43527 - parent: 0 - type: Transform -- uid: 34423 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.43527 - parent: 0 - type: Transform -- uid: 34424 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.43527 - parent: 0 - type: Transform -- uid: 34425 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.450893 - parent: 0 - type: Transform -- uid: 34426 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.450893 - parent: 0 - type: Transform -- uid: 34427 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.450893 - parent: 0 - type: Transform -- uid: 34428 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.450893 - parent: 0 - type: Transform -- uid: 34429 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.450893 - parent: 0 - type: Transform -- uid: 34430 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.450893 - parent: 0 - type: Transform -- uid: 34431 - type: FloorCarpetItemGreen - components: - - pos: 73.52757,-48.450893 - parent: 0 - type: Transform -- uid: 34432 - type: FloorCarpetItemGreen - components: - - pos: 73.5432,-48.419643 - parent: 0 - type: Transform -- uid: 34433 - type: ChairWood - components: - - pos: 73.5,-47.5 - parent: 0 - type: Transform -- uid: 34434 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-48.5 - parent: 0 - type: Transform -- uid: 34435 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-48.5 - parent: 0 - type: Transform -- uid: 34436 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 81.5,-47.5 - parent: 0 - type: Transform -- uid: 34437 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 80.5,-48.5 - parent: 0 - type: Transform -- uid: 34438 - type: TableCarpet - components: - - rot: 3.141592653589793 rad - pos: 83.5,-46.5 - parent: 0 - type: Transform -- uid: 34439 - type: TableCarpet - components: - - rot: 3.141592653589793 rad - pos: 84.5,-46.5 - parent: 0 - type: Transform -- uid: 34440 - type: TableCarpet - components: - - rot: 3.141592653589793 rad - pos: 85.5,-46.5 - parent: 0 - type: Transform -- uid: 34441 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 83.5,-47.5 - parent: 0 - type: Transform -- uid: 34442 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 84.5,-47.5 - parent: 0 - type: Transform -- uid: 34443 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 85.5,-47.5 - parent: 0 - type: Transform -- uid: 34444 - type: d6Dice - components: - - pos: 83.560326,-46.40402 - parent: 0 - type: Transform -- uid: 34445 - type: d6Dice - components: - - pos: 84.497826,-46.43527 - parent: 0 - type: Transform -- uid: 34446 - type: d6Dice - components: - - pos: 85.435326,-46.513393 - parent: 0 - type: Transform -- uid: 34447 - type: PoweredSmallLightEmpty - components: - - pos: 79.5,-46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34448 - type: PoweredSmallLightEmpty - components: - - rot: -1.5707963267948966 rad - pos: 94.5,-47.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34449 - type: TableWood - components: - - pos: 68.5,-54.5 - parent: 0 - type: Transform -- uid: 34450 - type: Barricade - components: - - pos: 69.5,-46.5 - parent: 0 - type: Transform -- uid: 34451 - type: Barricade - components: - - pos: 94.5,-46.5 - parent: 0 - type: Transform -- uid: 34452 - type: ClothingShoesBootsJack - components: - - pos: 71.52196,-51.663803 - parent: 0 - type: Transform -- uid: 34453 - type: BarSignOfficerBeersky - components: - - pos: 85.5,-55.5 - parent: 0 - type: Transform -- uid: 34454 - type: MaintenanceWeaponSpawner - components: - - pos: 101.5,-50.5 - parent: 0 - type: Transform -- uid: 34455 - type: NitrogenCanister - components: - - pos: 106.5,-45.5 - parent: 0 - type: Transform -- uid: 34456 - type: OxygenCanister - components: - - pos: 107.5,-45.5 - parent: 0 - type: Transform -- uid: 34457 - type: Catwalk - components: - - pos: 67.5,-46.5 - parent: 0 - type: Transform -- uid: 34458 - type: Catwalk - components: - - pos: 66.5,-46.5 - parent: 0 - type: Transform -- uid: 34459 - type: Catwalk - components: - - pos: 65.5,-46.5 - parent: 0 - type: Transform -- uid: 34460 - type: FloraRockSolid03 - components: - - pos: 84.508354,-58.45454 - parent: 0 - type: Transform -- uid: 34461 - type: FloraRockSolid02 - components: - - pos: 72.133354,-56.970165 - parent: 0 - type: Transform -- uid: 34462 - type: FloraRockSolid01 - components: - - pos: 81.58648,-54.126415 - parent: 0 - type: Transform -- uid: 34463 - type: WallSolid - components: - - pos: 65.5,-47.5 - parent: 0 - type: Transform -- uid: 34464 - type: PoweredlightExterior - components: - - rot: -1.5707963267948966 rad - pos: 82.5,-55.5 - parent: 0 - type: Transform -- uid: 34465 - type: WallSolid - components: - - pos: 64.5,-47.5 - parent: 0 - type: Transform -- uid: 34466 - type: WallSolid - components: - - pos: 63.5,-47.5 - parent: 0 - type: Transform -- uid: 34467 - type: WallSolid - components: - - pos: 62.5,-47.5 - parent: 0 - type: Transform -- uid: 34468 - type: WallSolid - components: - - pos: 61.5,-47.5 - parent: 0 - type: Transform -- uid: 34469 - type: computerBodyScanner - components: - - pos: 62.5,-52.5 - parent: 0 - type: Transform -- uid: 34470 - type: WallSolid - components: - - pos: 61.5,-49.5 - parent: 0 - type: Transform -- uid: 34471 - type: WallSolid - components: - - pos: 61.5,-50.5 - parent: 0 - type: Transform -- uid: 34472 - type: WallSolid - components: - - pos: 61.5,-51.5 - parent: 0 - type: Transform -- uid: 34473 - type: WallSolid - components: - - pos: 61.5,-52.5 - parent: 0 - type: Transform -- uid: 34474 - type: WallSolid - components: - - pos: 61.5,-53.5 - parent: 0 - type: Transform -- uid: 34475 - type: WallSolid - components: - - pos: 61.5,-54.5 - parent: 0 - type: Transform -- uid: 34476 - type: WallSolid - components: - - pos: 62.5,-49.5 - parent: 0 - type: Transform -- uid: 34477 - type: WallSolid - components: - - pos: 63.5,-49.5 - parent: 0 - type: Transform -- uid: 34478 - type: WallSolid - components: - - pos: 64.5,-49.5 - parent: 0 - type: Transform -- uid: 34479 - type: WallSolid - components: - - pos: 66.5,-49.5 - parent: 0 - type: Transform -- uid: 34480 - type: OperatingTable - components: - - pos: 63.5,-52.5 - parent: 0 - type: Transform -- uid: 34481 - type: Barricade - components: - - pos: 65.5,-49.5 - parent: 0 - type: Transform -- uid: 34482 - type: AirlockMaintLocked - components: - - pos: 61.5,-48.5 - parent: 0 - type: Transform -- uid: 34483 - type: SignExamroom - components: - - pos: 64.5,-49.5 - parent: 0 - type: Transform -- uid: 34484 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-48.5 - parent: 0 - type: Transform -- uid: 34485 - type: CheapRollerBed - components: - - pos: 66.50708,-54.273266 - parent: 0 - type: Transform -- uid: 34486 - type: CheapRollerBed - components: - - pos: 65.47583,-54.28889 - parent: 0 - type: Transform -- uid: 34487 - type: Bed - components: - - pos: 66.5,-52.5 - parent: 0 - type: Transform -- uid: 34488 - type: Bed - components: - - pos: 66.5,-51.5 - parent: 0 - type: Transform -- uid: 34489 - type: BedsheetMedical - components: - - pos: 66.5,-52.5 - parent: 0 - type: Transform -- uid: 34490 - type: BedsheetMedical - components: - - pos: 66.5,-51.5 - parent: 0 - type: Transform -- uid: 34491 - type: TableReinforced - components: - - pos: 66.5,-50.5 - parent: 0 - type: Transform -- uid: 34492 - type: TableReinforced - components: - - pos: 66.5,-53.5 - parent: 0 - type: Transform -- uid: 34493 - type: MedkitFilled - components: - - pos: 66.522705,-50.44514 - parent: 0 - type: Transform -- uid: 34494 - type: PuddleVomit - components: - - pos: 63.5,-51.5 - parent: 0 - type: Transform -- uid: 34495 - type: CableApcExtension - components: - - pos: 60.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34496 - type: CableApcExtension - components: - - pos: 60.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34497 - type: CableApcExtension - components: - - pos: 59.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34498 - type: CableApcExtension - components: - - pos: 58.5,-46.5 - parent: 0 - type: Transform -- uid: 34499 - type: CableApcExtension - components: - - pos: 60.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34500 - type: CableApcExtension - components: - - pos: 61.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34501 - type: CableApcExtension - components: - - pos: 63.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34502 - type: CableApcExtension - components: - - pos: 62.5,-48.5 - parent: 0 - type: Transform -- uid: 34503 - type: CableApcExtension - components: - - pos: 64.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34504 - type: CableApcExtension - components: - - pos: 65.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34505 - type: CableApcExtension - components: - - pos: 65.5,-49.5 - parent: 0 - type: Transform -- uid: 34506 - type: CableApcExtension - components: - - pos: 65.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34507 - type: CableApcExtension - components: - - pos: 65.5,-51.5 - parent: 0 - type: Transform -- uid: 34508 - type: CableApcExtension - components: - - pos: 65.5,-52.5 - parent: 0 - type: Transform -- uid: 34509 - type: CableApcExtension - components: - - pos: 65.5,-53.5 - parent: 0 - type: Transform -- uid: 34510 - type: CableApcExtension - components: - - pos: 64.5,-53.5 - parent: 0 - type: Transform -- uid: 34511 - type: CableApcExtension - components: - - pos: 60.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34512 - type: CableApcExtension - components: - - pos: 60.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34513 - type: CableApcExtension - components: - - pos: 60.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34514 - type: CableApcExtension - components: - - pos: 60.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34515 - type: CableApcExtension - components: - - pos: 60.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34516 - type: CableApcExtension - components: - - pos: 59.5,-53.5 - parent: 0 - type: Transform -- uid: 34517 - type: CableApcExtension - components: - - pos: 57.5,-53.5 - parent: 0 - type: Transform -- uid: 34518 - type: CableApcExtension - components: - - pos: 58.5,-53.5 - parent: 0 - type: Transform -- uid: 34519 - type: CableApcExtension - components: - - pos: 57.5,-54.5 - parent: 0 - type: Transform -- uid: 34520 - type: CableApcExtension - components: - - pos: 57.5,-55.5 - parent: 0 - type: Transform -- uid: 34521 - type: CableApcExtension - components: - - pos: 57.5,-56.5 - parent: 0 - type: Transform -- uid: 34522 - type: CableApcExtension - components: - - pos: 57.5,-57.5 - parent: 0 - type: Transform -- uid: 34523 - type: CableApcExtension - components: - - pos: 57.5,-58.5 - parent: 0 - type: Transform -- uid: 34524 - type: CableApcExtension - components: - - pos: 57.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34525 - type: CableApcExtension - components: - - pos: 56.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34526 - type: CableApcExtension - components: - - pos: 58.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34527 - type: PoweredSmallLight - components: - - pos: 64.5,-48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34528 - type: PoweredSmallLightEmpty - components: - - rot: 3.141592653589793 rad - pos: 64.5,-54.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34529 - type: CrateMedicalSupplies - components: - - pos: 62.5,-50.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 34530 - type: Table - components: - - pos: 63.5,-54.5 - parent: 0 - type: Transform -- uid: 34531 - type: Table - components: - - pos: 62.5,-54.5 - parent: 0 - type: Transform -- uid: 34532 - type: ClothingHeadHatSurgcapBlue - components: - - pos: 62.454132,-54.234493 - parent: 0 - type: Transform -- uid: 34533 - type: ClothingMaskSterile - components: - - pos: 62.563507,-54.453243 - parent: 0 - type: Transform -- uid: 34534 - type: AirlockMaintGlassLocked - components: - - pos: 59.5,-53.5 - parent: 0 - type: Transform -- uid: 34535 - type: Catwalk - components: - - pos: 60.5,-47.5 - parent: 0 - type: Transform -- uid: 34536 - type: Catwalk - components: - - pos: 60.5,-48.5 - parent: 0 - type: Transform -- uid: 34537 - type: Catwalk - components: - - pos: 60.5,-49.5 - parent: 0 - type: Transform -- uid: 34538 - type: Catwalk - components: - - pos: 60.5,-50.5 - parent: 0 - type: Transform -- uid: 34539 - type: Catwalk - components: - - pos: 60.5,-51.5 - parent: 0 - type: Transform -- uid: 34540 - type: Catwalk - components: - - pos: 60.5,-52.5 - parent: 0 - type: Transform -- uid: 34541 - type: Catwalk - components: - - pos: 60.5,-53.5 - parent: 0 - type: Transform -- uid: 34542 - type: Girder - components: - - pos: 63.5,-44.5 - parent: 0 - type: Transform -- uid: 34543 - type: Rack - components: - - pos: 65.5,-23.5 - parent: 0 - type: Transform -- uid: 34544 - type: WeldingFuelTankFull - components: - - pos: 60.5,-21.5 - parent: 0 - type: Transform -- uid: 34545 - type: MaintenanceFluffSpawner - components: - - pos: 65.5,-23.5 - parent: 0 - type: Transform -- uid: 34546 - type: ClosetMaintenanceFilledRandom - components: - - pos: 59.5,-24.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 34547 - type: MountainRock - components: - - pos: 59.5,-44.5 - parent: 0 - type: Transform -- uid: 34548 - type: MountainRock - components: - - pos: 60.5,-44.5 - parent: 0 - type: Transform -- uid: 34549 - type: MountainRock - components: - - pos: 61.5,-44.5 - parent: 0 - type: Transform -- uid: 34550 - type: MountainRock - components: - - pos: 62.5,-44.5 - parent: 0 - type: Transform -- uid: 34551 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 59.5,-45.5 - parent: 0 - type: Transform -- uid: 34552 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 60.5,-45.5 - parent: 0 - type: Transform -- uid: 34553 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 61.5,-45.5 - parent: 0 - type: Transform -- uid: 34554 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 62.5,-45.5 - parent: 0 - type: Transform -- uid: 34555 - type: RailingCornerSmall - components: - - pos: 63.5,-45.5 - parent: 0 - type: Transform -- uid: 34556 - type: WallSolid - components: - - pos: 67.5,-43.5 - parent: 0 - type: Transform -- uid: 34557 - type: WallSolid - components: - - pos: 66.5,-43.5 - parent: 0 - type: Transform -- uid: 34558 - type: WallSolid - components: - - pos: 66.5,-42.5 - parent: 0 - type: Transform -- uid: 34559 - type: WallSolid - components: - - pos: 66.5,-41.5 - parent: 0 - type: Transform -- uid: 34560 - type: WallSolid - components: - - pos: 66.5,-40.5 - parent: 0 - type: Transform -- uid: 34561 - type: ClothingBeltMilitaryWebbing - components: - - pos: 67.49193,-41.442646 - parent: 0 - type: Transform -- uid: 34562 - type: Basketball - components: - - pos: 65.49193,-41.512466 - parent: 0 - type: Transform -- uid: 34563 - type: PlushieSharkGrey - components: - - pos: 67.4763,-40.661396 - parent: 0 - type: Transform -- uid: 34564 - type: Rack - components: - - pos: 65.5,-40.5 - parent: 0 - type: Transform -- uid: 34565 - type: Pickaxe - components: - - pos: 65.6013,-40.46559 - parent: 0 - type: Transform -- uid: 34566 - type: OxygenTankFilled - components: - - pos: 65.38255,-40.418716 - parent: 0 - type: Transform -- uid: 34567 - type: ClothingMaskBreath - components: - - pos: 65.50755,-40.606216 - parent: 0 - type: Transform -- uid: 34568 - type: SignNosmoking - components: - - pos: 67.5,-39.5 - parent: 0 - type: Transform -- uid: 34569 - type: WaterTankFull - components: - - pos: 67.5,-44.5 - parent: 0 - type: Transform -- uid: 34570 - type: ClothingShoesBootsJack - components: - - pos: 60.58367,-54.699615 - parent: 0 - type: Transform -- uid: 34571 - type: Bed - components: - - pos: 58.5,-57.5 - parent: 0 - type: Transform -- uid: 34572 - type: PosterContrabandClown - components: - - pos: 59.5,-52.5 - parent: 0 - type: Transform -- uid: 34573 - type: FoodSoupClown - components: - - pos: 58.48048,-56.53266 - parent: 0 - type: Transform -- uid: 34574 - type: ClothingBackpackClown - components: - - pos: 58.469105,-52.32907 - parent: 0 - type: Transform -- uid: 34575 - type: BedsheetClown - components: - - pos: 58.5,-57.5 - parent: 0 - type: Transform -- uid: 34576 - type: Table - components: - - pos: 56.5,-57.5 - parent: 0 - type: Transform -- uid: 34577 - type: Table - components: - - pos: 56.5,-58.5 - parent: 0 - type: Transform -- uid: 34578 - type: Table - components: - - pos: 57.5,-58.5 - parent: 0 - type: Transform -- uid: 34579 - type: Table - components: - - pos: 58.5,-52.5 - parent: 0 - type: Transform -- uid: 34580 - type: Table - components: - - pos: 57.5,-52.5 - parent: 0 - type: Transform -- uid: 34581 - type: FoodPieBananaCream - components: - - pos: 56.48048,-58.235786 - parent: 0 - type: Transform -- uid: 34582 - type: FoodPieBananaCream - components: - - pos: 56.621105,-58.392036 - parent: 0 - type: Transform -- uid: 34583 - type: FoodPieBananaCream - components: - - pos: 56.69923,-58.235786 - parent: 0 - type: Transform -- uid: 34584 - type: FoodBanana - components: - - pos: 56.35548,-57.50141 - parent: 0 - type: Transform -- uid: 34585 - type: FoodBanana - components: - - pos: 56.51173,-57.673286 - parent: 0 - type: Transform -- uid: 34586 - type: DrinkBananaHonkGlass - components: - - pos: 57.464855,-58.31391 - parent: 0 - type: Transform -- uid: 34587 - type: ClothingMaskClown - components: - - pos: 54.5,-54.5 - parent: 0 - type: Transform -- uid: 34588 - type: TargetClown - components: - - pos: 57.5,-54.5 - parent: 0 - type: Transform -- uid: 34589 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-55.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34590 - type: WallSolid - components: - - pos: 98.5,-49.5 - parent: 0 - type: Transform -- uid: 34591 - type: WallSolid - components: - - pos: 96.5,-49.5 - parent: 0 - type: Transform -- uid: 34592 - type: FloraTree02 - components: - - pos: 90.28094,-53.392754 - parent: 0 - type: Transform -- uid: 34593 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-54.5 - parent: 0 - type: Transform -- uid: 34594 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-53.5 - parent: 0 - type: Transform -- uid: 34595 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-51.5 - parent: 0 - type: Transform -- uid: 34596 - type: Barricade - components: - - pos: 97.5,-49.5 - parent: 0 - type: Transform -- uid: 34597 - type: AlwaysPoweredLightLED - components: - - rot: 3.141592653589793 rad - pos: 91.5,-54.5 - parent: 0 - type: Transform -- uid: 34598 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-52.5 - parent: 0 - type: Transform -- uid: 34599 - type: SpawnMobCatGeneric - components: - - pos: 93.5,-52.5 - parent: 0 - type: Transform -- uid: 34600 - type: SpawnMobCatException - components: - - pos: 22.5,59.5 - parent: 0 - type: Transform -- uid: 34601 - type: SpawnMobMouse - components: - - pos: 118.5,5.5 - parent: 0 - type: Transform -- uid: 34602 - type: SpawnMobMouse - components: - - pos: 123.5,1.5 - parent: 0 - type: Transform -- uid: 34603 - type: SpawnMobMouse - components: - - pos: 124.5,-3.5 - parent: 0 - type: Transform -- uid: 34604 - type: SpawnMobMouse - components: - - pos: 102.5,27.5 - parent: 0 - type: Transform -- uid: 34605 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,35.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34606 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34607 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,43.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34608 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34609 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 51.5,36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34610 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 91.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 34611 - type: LockerSecurityFilled - components: - - pos: 27.5,23.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 34612 - type: ClosetRadiationSuitFilled - components: - - pos: 98.5,3.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.2184362 - - 12.107451 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 34613 - type: ClosetRadiationSuitFilled - components: - - pos: 97.5,3.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.2184362 - - 12.107451 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 34614 - type: Table - components: - - pos: 98.5,8.5 - parent: 0 - type: Transform -- uid: 34615 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 93.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34616 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 93.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34617 - type: SpawnPointLawyer - components: - - pos: 71.5,34.5 - parent: 0 - type: Transform -- uid: 34618 - type: SpawnPointLawyer - components: - - pos: 70.5,34.5 - parent: 0 - type: Transform -- uid: 34619 - type: SpawnPointAtmos - components: - - pos: 74.5,-25.5 - parent: 0 - type: Transform -- uid: 34620 - type: SpawnPointAtmos - components: - - pos: 73.5,-25.5 - parent: 0 - type: Transform -- uid: 34621 - type: SpawnPointAtmos - components: - - pos: 75.5,-25.5 - parent: 0 - type: Transform -- uid: 34622 - type: CableApcExtension - components: - - pos: -34.5,-24.5 - parent: 0 - type: Transform -- uid: 34623 - type: CableApcExtension - components: - - pos: -34.5,-23.5 - parent: 0 - type: Transform -- uid: 34624 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 75.5,3.5 - parent: 0 - type: Transform -- uid: 34625 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 68.5,2.5 - parent: 0 - type: Transform -- uid: 34626 - type: ClothingHeadHelmetEVA - components: - - pos: 36.680786,68.70615 - parent: 0 - type: Transform -- uid: 34627 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 89.5,44.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34628 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 89.5,53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34629 - type: Poweredlight - components: - - pos: 89.5,56.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34630 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 90.5,65.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34631 - type: PoweredSmallLight - components: - - pos: 17.5,-34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34632 - type: FirelockGlass - components: - - pos: 56.5,57.5 - parent: 0 - type: Transform -- uid: 34633 - type: FirelockGlass - components: - - pos: 54.5,57.5 - parent: 0 - type: Transform -- uid: 34634 - type: FirelockGlass - components: - - pos: 53.5,57.5 - parent: 0 - type: Transform -- uid: 34635 - type: FirelockGlass - components: - - pos: 48.5,47.5 - parent: 0 - type: Transform -- uid: 34636 - type: MedicalBed - components: - - pos: 36.5,49.5 - parent: 0 - type: Transform -- uid: 34637 - type: MedicalBed - components: - - pos: 32.5,49.5 - parent: 0 - type: Transform -- uid: 34638 - type: BedsheetPurple - components: - - pos: 32.5,49.5 - parent: 0 - type: Transform -- uid: 34639 - type: BedsheetPurple - components: - - pos: 36.5,49.5 - parent: 0 - type: Transform -- uid: 34640 - type: Bed - components: - - pos: 28.5,46.5 - parent: 0 - type: Transform -- uid: 34641 - type: SurveillanceCameraSupply - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-13.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Supply Storage - type: SurveillanceCamera -- uid: 34642 - type: SurveillanceCameraService - components: - - rot: -1.5707963267948966 rad - pos: -8.5,22.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - type: SurveillanceCamera -- uid: 34643 - type: SurveillanceCameraService - components: - - rot: -1.5707963267948966 rad - pos: -10.5,31.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Service Hall - type: SurveillanceCamera -- uid: 34644 - type: WindoorHeadOfPersonnelLocked - components: - - pos: 60.5,49.5 - parent: 0 - type: Transform -- uid: 34645 - type: BedsheetSpawner - components: - - pos: 100.5,21.5 - parent: 0 - type: Transform -- uid: 34646 - type: BedsheetSpawner - components: - - pos: 99.5,21.5 - parent: 0 - type: Transform -- uid: 34647 - type: ChairFoldingSpawnFolded - components: - - pos: 116.21007,10.6560335 - parent: 0 - type: Transform -- uid: 34648 - type: ChairFoldingSpawnFolded - components: - - pos: 116.21007,10.7966585 - parent: 0 - type: Transform -- uid: 34649 - type: Catwalk - components: - - pos: 119.5,11.5 - parent: 0 - type: Transform -- uid: 34650 - type: Catwalk - components: - - pos: 120.5,11.5 - parent: 0 - type: Transform -- uid: 34651 - type: Catwalk - components: - - pos: 121.5,11.5 - parent: 0 - type: Transform -- uid: 34652 - type: PoweredSmallLight - components: - - pos: 120.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34653 - type: PlushieSharkPink - components: - - pos: 110.72576,10.415595 - parent: 0 - type: Transform -- uid: 34654 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 124.5,-8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34655 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 131.5,-3.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27080 - Forward: - - port: Left - uid: 27080 - Off: - - port: Middle - uid: 27080 - type: SignalReceiver -- uid: 34656 - type: CableApcExtension - components: - - pos: 128.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34657 - type: CableApcExtension - components: - - pos: 129.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 34658 - type: PlasticFlapsAirtightClear - components: - - pos: 129.5,-3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 34659 - type: BlastDoor - components: - - pos: 129.5,-3.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 32424 - type: SignalReceiver -- uid: 34660 - type: Grille - components: - - pos: 127.5,-1.5 - parent: 0 - type: Transform -- uid: 34661 - type: RandomSpawner - components: - - pos: 130.5,-1.5 - parent: 0 - type: Transform -- uid: 34662 - type: PoweredlightExterior - components: - - rot: 1.5707963267948966 rad - pos: 130.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34663 - type: RandomSpawner - components: - - pos: 131.5,-0.5 - parent: 0 - type: Transform -- uid: 34664 - type: RandomSpawner - components: - - pos: 131.5,-5.5 - parent: 0 - type: Transform -- uid: 34665 - type: RandomSpawner - components: - - pos: 132.5,-4.5 - parent: 0 - type: Transform -- uid: 34666 - type: RandomSpawner - components: - - pos: 124.5,-7.5 - parent: 0 - type: Transform -- uid: 34667 - type: RandomSpawner - components: - - pos: 125.5,-5.5 - parent: 0 - type: Transform -- uid: 34668 - type: RandomSpawner - components: - - pos: 125.5,-2.5 - parent: 0 - type: Transform -- uid: 34669 - type: TableCarpet - components: - - pos: 123.5,2.5 - parent: 0 - type: Transform -- uid: 34670 - type: TableCarpet - components: - - pos: 123.5,3.5 - parent: 0 - type: Transform -- uid: 34671 - type: TableCarpet - components: - - pos: 125.5,2.5 - parent: 0 - type: Transform -- uid: 34672 - type: LampGold - components: - - pos: 123.55489,3.5750852 - parent: 0 - type: Transform -- uid: 34673 - type: MaterialWoodPlank - components: - - pos: 126.32052,0.51258504 - parent: 0 - type: Transform -- uid: 34674 - type: Barricade - components: - - pos: 121.5,3.5 - parent: 0 - type: Transform -- uid: 34675 - type: BoxFolderYellow - components: - - pos: 123.86739,2.5907102 - parent: 0 - type: Transform -- uid: 34676 - type: ShuttersRadiationOpen - components: - - rot: 1.5707963267948966 rad - pos: 117.5,-7.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34695 - type: SignalReceiver -- uid: 34677 - type: ShuttersRadiationOpen - components: - - rot: 1.5707963267948966 rad - pos: 117.5,-6.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34695 - type: SignalReceiver -- uid: 34678 - type: ShuttersRadiationOpen - components: - - rot: 1.5707963267948966 rad - pos: 117.5,-5.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34695 - type: SignalReceiver -- uid: 34679 - type: ShuttersRadiationOpen - components: - - rot: 1.5707963267948966 rad - pos: 117.5,-4.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34695 - type: SignalReceiver -- uid: 34680 - type: ShuttersRadiationOpen - components: - - rot: 1.5707963267948966 rad - pos: 117.5,-3.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34695 - type: SignalReceiver -- uid: 34681 - type: ShuttersRadiationOpen - components: - - pos: 110.5,3.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34692 - type: SignalReceiver -- uid: 34682 - type: ShuttersRadiationOpen - components: - - pos: 109.5,3.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34692 - type: SignalReceiver -- uid: 34683 - type: ShuttersRadiationOpen - components: - - pos: 108.5,3.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34692 - type: SignalReceiver -- uid: 34684 - type: ShuttersRadiationOpen - components: - - pos: 107.5,3.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34692 - type: SignalReceiver -- uid: 34685 - type: ShuttersRadiationOpen - components: - - pos: 106.5,3.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34692 - type: SignalReceiver -- uid: 34686 - type: ShuttersRadiationOpen - components: - - pos: 110.5,-14.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34691 - type: SignalReceiver -- uid: 34687 - type: ShuttersRadiationOpen - components: - - pos: 109.5,-14.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34691 - type: SignalReceiver -- uid: 34688 - type: ShuttersRadiationOpen - components: - - pos: 108.5,-14.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34691 - type: SignalReceiver -- uid: 34689 - type: ShuttersRadiationOpen - components: - - pos: 107.5,-14.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34691 - type: SignalReceiver -- uid: 34690 - type: ShuttersRadiationOpen - components: - - pos: 106.5,-14.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 34691 - type: SignalReceiver -- uid: 34691 - type: SignalButton - components: - - name: South Window Shutters - type: MetaData - - pos: 105.5,-15.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 34690 - - port: Toggle - uid: 34689 - - port: Toggle - uid: 34688 - - port: Toggle - uid: 34687 - - port: Toggle - uid: 34686 - type: SignalTransmitter -- uid: 34692 - type: SignalButton - components: - - name: North Window Shutters - type: MetaData - - pos: 99.5,2.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 34685 - - port: Toggle - uid: 34684 - - port: Toggle - uid: 34683 - - port: Toggle - uid: 34682 - - port: Toggle - uid: 34681 - type: SignalTransmitter -- uid: 34693 - type: Grille - components: - - pos: 99.5,-18.5 - parent: 0 - type: Transform -- uid: 34694 - type: Grille - components: - - pos: 100.5,-18.5 - parent: 0 - type: Transform -- uid: 34695 - type: SignalButton - components: - - name: East Rad Shutters - type: MetaData - - pos: 117.5,-2.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 34680 - - port: Toggle - uid: 34679 - - port: Toggle - uid: 34678 - - port: Toggle - uid: 34677 - - port: Toggle - uid: 34676 - type: SignalTransmitter -- uid: 34696 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 88.5,-10.5 - parent: 0 - type: Transform -- uid: 34697 - type: Table - components: - - pos: 98.5,7.5 - parent: 0 - type: Transform -- uid: 34698 - type: Table - components: - - pos: 97.5,7.5 - parent: 0 - type: Transform -- uid: 34699 - type: Table - components: - - pos: 96.5,7.5 - parent: 0 - type: Transform -- uid: 34700 - type: Barricade - components: - - pos: 93.5,5.5 - parent: 0 - type: Transform -- uid: 34701 - type: Barricade - components: - - pos: 94.5,5.5 - parent: 0 - type: Transform -- uid: 34702 - type: Barricade - components: - - pos: 95.5,5.5 - parent: 0 - type: Transform -- uid: 34703 - type: PoweredSmallLight - components: - - pos: 107.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34704 - type: PoweredSmallLight - components: - - pos: 95.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34705 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 104.5,6.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Project Room - type: SurveillanceCamera -- uid: 34706 - type: ClothingHeadHatTophat - components: - - pos: 102.5009,13.734259 - parent: 0 - type: Transform -- uid: 34707 - type: RandomPosterAny - components: - - pos: 99.5,12.5 - parent: 0 - type: Transform -- uid: 34708 - type: RandomPosterAny - components: - - pos: 105.5,16.5 - parent: 0 - type: Transform -- uid: 34709 - type: RandomPosterAny - components: - - pos: 109.5,21.5 - parent: 0 - type: Transform -- uid: 34710 - type: RandomPosterAny - components: - - pos: 105.5,21.5 - parent: 0 - type: Transform -- uid: 34711 - type: RandomPosterAny - components: - - pos: 101.5,18.5 - parent: 0 - type: Transform -- uid: 34712 - type: RandomPosterAny - components: - - pos: 93.5,24.5 - parent: 0 - type: Transform -- uid: 34713 - type: RandomPosterAny - components: - - pos: 92.5,11.5 - parent: 0 - type: Transform -- uid: 34714 - type: RandomPosterAny - components: - - pos: 85.5,11.5 - parent: 0 - type: Transform -- uid: 34715 - type: RandomPosterAny - components: - - pos: 78.5,11.5 - parent: 0 - type: Transform -- uid: 34716 - type: ClosetMaintenanceFilledRandom - components: - - pos: 66.5,-3.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.2184362 - - 12.107451 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 34717 - type: Rack - components: - - pos: 68.5,-3.5 - parent: 0 - type: Transform -- uid: 34718 - type: PortableScrubber - components: - - pos: 67.5,-3.5 - parent: 0 - type: Transform -- uid: 34719 - type: ToolboxEmergencyFilled - components: - - pos: 68.53162,-3.3974104 - parent: 0 - type: Transform -- uid: 34720 - type: ChairFoldingSpawnFolded - components: - - pos: 67.450096,0.607226 - parent: 0 - type: Transform -- uid: 34721 - type: BoxHugHealing - components: - - pos: 68.46572,-5.6161604 - parent: 0 - type: Transform -- uid: 34722 - type: ChairFoldingSpawnFolded - components: - - pos: 67.450096,0.763476 - parent: 0 - type: Transform -- uid: 34723 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-1.5 - parent: 0 - type: Transform -- uid: 34724 - type: Grille - components: - - pos: 103.5,11.5 - parent: 0 - type: Transform -- uid: 34725 - type: Grille - components: - - pos: 102.5,11.5 - parent: 0 - type: Transform -- uid: 34726 - type: Grille - components: - - pos: 101.5,11.5 - parent: 0 - type: Transform -- uid: 34727 - type: Girder - components: - - pos: 97.5,12.5 - parent: 0 - type: Transform -- uid: 34728 - type: Rack - components: - - pos: 96.5,12.5 - parent: 0 - type: Transform -- uid: 34729 - type: MaintenanceToolSpawner - components: - - pos: 96.5,12.5 - parent: 0 - type: Transform -- uid: 34730 - type: Table - components: - - pos: 115.5,4.5 - parent: 0 - type: Transform -- uid: 34731 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 116.5,4.5 - parent: 0 - type: Transform -- uid: 34732 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 114.5,4.5 - parent: 0 - type: Transform -- uid: 34733 - type: ReinforcedWindow - components: - - pos: 128.5,-5.5 - parent: 0 - type: Transform -- uid: 34734 - type: ReinforcedWindow - components: - - pos: 128.5,-2.5 - parent: 0 - type: Transform -- uid: 34735 - type: Floodlight - components: - - pos: 131.03375,-8.551992 - parent: 0 - type: Transform -- uid: 34736 - type: Floodlight - components: - - pos: 132.84602,3.5240808 - parent: 0 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 34737 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 130.5,0.5 - parent: 0 - type: Transform -- uid: 34738 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: 132.5,0.5 - parent: 0 - type: Transform -- uid: 34739 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 133.5,-2.5 - parent: 0 - type: Transform -- uid: 34740 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 133.5,-1.5 - parent: 0 - type: Transform -- uid: 34741 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 133.5,-0.5 - parent: 0 - type: Transform -- uid: 34742 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 133.5,-3.5 - parent: 0 - type: Transform -- uid: 34743 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 133.5,-4.5 - parent: 0 - type: Transform -- uid: 34744 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 133.5,-5.5 - parent: 0 - type: Transform -- uid: 34745 - type: Railing - components: - - pos: 132.5,-6.5 - parent: 0 - type: Transform -- uid: 34746 - type: Railing - components: - - pos: 131.5,-6.5 - parent: 0 - type: Transform -- uid: 34747 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: 130.5,-6.5 - parent: 0 - type: Transform -- uid: 34748 - type: RailingCorner - components: - - pos: 133.5,-6.5 - parent: 0 - type: Transform -- uid: 34749 - type: RailingCorner - components: - - rot: 1.5707963267948966 rad - pos: 133.5,0.5 - parent: 0 - type: Transform -- uid: 34750 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: 130.5,-7.5 - parent: 0 - type: Transform -- uid: 34751 - type: RailingCornerSmall - components: - - pos: 131.5,-7.5 - parent: 0 - type: Transform -- uid: 34752 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: 132.5,1.5 - parent: 0 - type: Transform -- uid: 34753 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: 133.5,1.5 - parent: 0 - type: Transform -- uid: 34754 - type: RailingCornerSmall - components: - - pos: 131.5,0.5 - parent: 0 - type: Transform -- uid: 34755 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: 131.5,1.5 - parent: 0 - type: Transform -- uid: 34756 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 128.5,-7.5 - parent: 0 - type: Transform -- uid: 34757 - type: FoodBowlBigTrash - components: - - pos: 131.71098,-3.6476665 - parent: 0 - type: Transform -- uid: 34758 - type: FoodBowlBigTrash - components: - - pos: 131.32036,-3.2101665 - parent: 0 - type: Transform -- uid: 34759 - type: TrashBananaPeel - components: - - pos: 131.99223,0.75858355 - parent: 0 - type: Transform -- uid: 34760 - type: TrashBananaPeel - components: - - pos: 132.28911,-3.4132915 - parent: 0 - type: Transform -- uid: 34761 - type: FoodPlateTrash - components: - - pos: 130.88286,-4.4914165 - parent: 0 - type: Transform -- uid: 34762 - type: FoodFrozenSnowconeTrash - components: - - pos: 130.92973,-2.4757915 - parent: 0 - type: Transform -- uid: 34763 - type: FoodCornTrash - components: - - pos: 133.00786,-2.4914165 - parent: 0 - type: Transform -- uid: 34764 - type: FoodCornTrash - components: - - pos: 133.02348,-5.7570415 - parent: 0 - type: Transform -- uid: 34765 - type: FoodTinBeansTrash - components: - - rot: -1.5707963267948966 rad - pos: 130.64848,-3.0851665 - parent: 0 - type: Transform -- uid: 34766 - type: FoodTinMRETrash - components: - - pos: 133.24223,-4.2726665 - parent: 0 - type: Transform -- uid: 34767 - type: Catwalk - components: - - pos: 99.5,-36.5 - parent: 0 - type: Transform -- uid: 34768 - type: Catwalk - components: - - pos: 100.5,-36.5 - parent: 0 - type: Transform -- uid: 34769 - type: Catwalk - components: - - pos: 101.5,-36.5 - parent: 0 - type: Transform -- uid: 34770 - type: Catwalk - components: - - pos: 102.5,-36.5 - parent: 0 - type: Transform -- uid: 34771 - type: Catwalk - components: - - pos: 103.5,-36.5 - parent: 0 - type: Transform -- uid: 34772 - type: Catwalk - components: - - pos: 99.5,-35.5 - parent: 0 - type: Transform -- uid: 34773 - type: Catwalk - components: - - pos: 99.5,-34.5 - parent: 0 - type: Transform -- uid: 34774 - type: Catwalk - components: - - pos: 98.5,-34.5 - parent: 0 - type: Transform -- uid: 34775 - type: VendingMachineTankDispenserEngineering - components: - - flags: SessionSpecific - type: MetaData - - pos: 96.5,-33.5 - parent: 0 - type: Transform -- uid: 34776 - type: StorageCanister - components: - - pos: 99.5,-38.5 - parent: 0 - type: Transform -- uid: 34777 - type: StorageCanister - components: - - pos: 100.5,-38.5 - parent: 0 - type: Transform -- uid: 34778 - type: StorageCanister - components: - - pos: 96.5,-35.5 - parent: 0 - type: Transform -- uid: 34779 - type: ComputerAlert - components: - - pos: 100.5,-33.5 - parent: 0 - type: Transform -- uid: 34780 - type: Table - components: - - pos: 99.5,-33.5 - parent: 0 - type: Transform -- uid: 34781 - type: Table - components: - - pos: 101.5,-33.5 - parent: 0 - type: Transform -- uid: 34782 - type: PartRodMetal - components: - - pos: 101.47788,-33.457737 - parent: 0 - type: Transform -- uid: 34783 - type: SheetSteel - components: - - pos: 99.47788,-33.442112 - parent: 0 - type: Transform -- uid: 34784 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 105.5,-36.5 - parent: 0 - type: Transform -- uid: 34785 - type: DisposalTrunk - components: - - pos: 103.5,-34.5 - parent: 0 - type: Transform -- uid: 34786 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 103.5,-36.5 - parent: 0 - type: Transform -- uid: 34787 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 104.5,-36.5 - parent: 0 - type: Transform -- uid: 34788 - type: DisposalPipe - components: - - pos: 103.5,-35.5 - parent: 0 - type: Transform -- uid: 34789 - type: DisposalUnit - components: - - pos: 103.5,-34.5 - parent: 0 - type: Transform -- uid: 34790 - type: Rack - components: - - pos: 103.5,-33.5 - parent: 0 - type: Transform -- uid: 34791 - type: WelderMini - components: - - pos: 103.58446,-33.539734 - parent: 0 - type: Transform -- uid: 34792 - type: ChairOfficeDark - components: - - pos: 83.5,-41.5 - parent: 0 - type: Transform -- uid: 34793 - type: ClothingShoesBootsMagSyndie - components: - - pos: 67.44477,-42.60581 - parent: 0 - type: Transform -- uid: 34794 - type: AsteroidRockMining - components: - - pos: 61.5,-57.5 - parent: 0 - type: Transform -- uid: 34795 - type: AsteroidRockMining - components: - - pos: 63.5,-57.5 - parent: 0 - type: Transform -- uid: 34796 - type: FoodFrozenSnowconeClown - components: - - pos: 57.5,-52.5 - parent: 0 - type: Transform -- uid: 34797 - type: Table - components: - - pos: 36.5,-45.5 - parent: 0 - type: Transform -- uid: 34798 - type: Table - components: - - pos: 35.5,-45.5 - parent: 0 - type: Transform -- uid: 34799 - type: Table - components: - - pos: 34.5,-45.5 - parent: 0 - type: Transform -- uid: 34800 - type: Table - components: - - pos: 34.5,-46.5 - parent: 0 - type: Transform -- uid: 34801 - type: Catwalk - components: - - pos: 19.5,-20.5 - parent: 0 - type: Transform -- uid: 34802 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 34803 - type: DisposalUnit - components: - - pos: 22.5,-22.5 - parent: 0 - type: Transform -- uid: 34804 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-22.5 - parent: 0 - type: Transform -- uid: 34805 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-22.5 - parent: 0 - type: Transform -- uid: 34806 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 0 - type: Transform -- uid: 34807 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-21.5 - parent: 0 - type: Transform -- uid: 34808 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-20.5 - parent: 0 - type: Transform -- uid: 34809 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-19.5 - parent: 0 - type: Transform -- uid: 34810 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-18.5 - parent: 0 - type: Transform -- uid: 34811 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-17.5 - parent: 0 - type: Transform -- uid: 34812 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-16.5 - parent: 0 - type: Transform -- uid: 34813 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-15.5 - parent: 0 - type: Transform -- uid: 34814 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-14.5 - parent: 0 - type: Transform -- uid: 34815 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-13.5 - parent: 0 - type: Transform -- uid: 34816 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-12.5 - parent: 0 - type: Transform -- uid: 34817 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-11.5 - parent: 0 - type: Transform -- uid: 34818 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-10.5 - parent: 0 - type: Transform -- uid: 34819 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-9.5 - parent: 0 - type: Transform -- uid: 34820 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-8.5 - parent: 0 - type: Transform -- uid: 34821 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-7.5 - parent: 0 - type: Transform -- uid: 34822 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 24.5,-6.5 - parent: 0 - type: Transform -- uid: 34823 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: 22.5,-19.5 - parent: 0 - type: Transform -- uid: 34824 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-20.5 - parent: 0 - type: Transform -- uid: 34825 - type: SignShock - components: - - pos: 26.5,-21.5 - parent: 0 - type: Transform -- uid: 34826 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 0 - type: Transform -- uid: 34827 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-14.5 - parent: 0 - type: Transform -- uid: 34828 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-13.5 - parent: 0 - type: Transform -- uid: 34829 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-12.5 - parent: 0 - type: Transform -- uid: 34830 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-11.5 - parent: 0 - type: Transform -- uid: 34831 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-10.5 - parent: 0 - type: Transform -- uid: 34832 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 0 - type: Transform -- uid: 34833 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-8.5 - parent: 0 - type: Transform -- uid: 34834 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 0 - type: Transform -- uid: 34835 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-6.5 - parent: 0 - type: Transform -- uid: 34836 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-5.5 - parent: 0 - type: Transform -- uid: 34837 - type: DisposalBend - components: - - pos: 12.5,-4.5 - parent: 0 - type: Transform -- uid: 34838 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 5.5,-4.5 - parent: 0 - type: Transform -- uid: 34839 - type: DisposalBend - components: - - pos: 5.5,6.5 - parent: 0 - type: Transform -- uid: 34840 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 0.5,6.5 - parent: 0 - type: Transform -- uid: 34841 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-4.5 - parent: 0 - type: Transform -- uid: 34842 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-4.5 - parent: 0 - type: Transform -- uid: 34843 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-4.5 - parent: 0 - type: Transform -- uid: 34844 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-4.5 - parent: 0 - type: Transform -- uid: 34845 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-4.5 - parent: 0 - type: Transform -- uid: 34846 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 0 - type: Transform -- uid: 34847 - type: DisposalPipe - components: - - pos: 5.5,-3.5 - parent: 0 - type: Transform -- uid: 34848 - type: DisposalPipe - components: - - pos: 5.5,-2.5 - parent: 0 - type: Transform -- uid: 34849 - type: DisposalPipe - components: - - pos: 5.5,-1.5 - parent: 0 - type: Transform -- uid: 34850 - type: DisposalPipe - components: - - pos: 5.5,-0.5 - parent: 0 - type: Transform -- uid: 34851 - type: DisposalPipe - components: - - pos: 5.5,0.5 - parent: 0 - type: Transform -- uid: 34852 - type: DisposalPipe - components: - - pos: 5.5,1.5 - parent: 0 - type: Transform -- uid: 34853 - type: DisposalPipe - components: - - pos: 5.5,2.5 - parent: 0 - type: Transform -- uid: 34854 - type: DisposalPipe - components: - - pos: 5.5,3.5 - parent: 0 - type: Transform -- uid: 34855 - type: DisposalPipe - components: - - pos: 5.5,4.5 - parent: 0 - type: Transform -- uid: 34856 - type: DisposalPipe - components: - - pos: 5.5,5.5 - parent: 0 - type: Transform -- uid: 34857 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,6.5 - parent: 0 - type: Transform -- uid: 34858 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,6.5 - parent: 0 - type: Transform -- uid: 34859 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,6.5 - parent: 0 - type: Transform -- uid: 34860 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 0 - type: Transform -- uid: 34861 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,7.5 - parent: 0 - type: Transform -- uid: 34862 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,8.5 - parent: 0 - type: Transform -- uid: 34863 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,9.5 - parent: 0 - type: Transform -- uid: 34864 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,10.5 - parent: 0 - type: Transform -- uid: 34865 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,11.5 - parent: 0 - type: Transform -- uid: 34866 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,12.5 - parent: 0 - type: Transform -- uid: 34867 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 0 - type: Transform -- uid: 34868 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,14.5 - parent: 0 - type: Transform -- uid: 34869 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,15.5 - parent: 0 - type: Transform -- uid: 34870 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,16.5 - parent: 0 - type: Transform -- uid: 34871 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 0 - type: Transform -- uid: 34872 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,18.5 - parent: 0 - type: Transform -- uid: 34873 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,19.5 - parent: 0 - type: Transform -- uid: 34874 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,20.5 - parent: 0 - type: Transform -- uid: 34875 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,21.5 - parent: 0 - type: Transform -- uid: 34876 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,22.5 - parent: 0 - type: Transform -- uid: 34877 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,23.5 - parent: 0 - type: Transform -- uid: 34878 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,24.5 - parent: 0 - type: Transform -- uid: 34879 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,25.5 - parent: 0 - type: Transform -- uid: 34880 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,26.5 - parent: 0 - type: Transform -- uid: 34881 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,27.5 - parent: 0 - type: Transform -- uid: 34882 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,28.5 - parent: 0 - type: Transform -- uid: 34883 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,29.5 - parent: 0 - type: Transform -- uid: 34884 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,30.5 - parent: 0 - type: Transform -- uid: 34885 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,31.5 - parent: 0 - type: Transform -- uid: 34886 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,32.5 - parent: 0 - type: Transform -- uid: 34887 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,33.5 - parent: 0 - type: Transform -- uid: 34888 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,34.5 - parent: 0 - type: Transform -- uid: 34889 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,35.5 - parent: 0 - type: Transform -- uid: 34890 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,36.5 - parent: 0 - type: Transform -- uid: 34891 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,37.5 - parent: 0 - type: Transform -- uid: 34892 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,38.5 - parent: 0 - type: Transform -- uid: 34893 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,39.5 - parent: 0 - type: Transform -- uid: 34894 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,40.5 - parent: 0 - type: Transform -- uid: 34895 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,41.5 - parent: 0 - type: Transform -- uid: 34896 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,42.5 - parent: 0 - type: Transform -- uid: 34897 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,43.5 - parent: 0 - type: Transform -- uid: 34898 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,44.5 - parent: 0 - type: Transform -- uid: 34899 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 0.5,45.5 - parent: 0 - type: Transform -- uid: 34900 - type: DisposalBend - components: - - pos: 0.5,46.5 - parent: 0 - type: Transform -- uid: 34901 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -0.5,46.5 - parent: 0 - type: Transform -- uid: 34902 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -0.5,49.5 - parent: 0 - type: Transform -- uid: 34903 - type: DisposalBend - components: - - pos: 5.5,49.5 - parent: 0 - type: Transform -- uid: 34904 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,49.5 - parent: 0 - type: Transform -- uid: 34905 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,49.5 - parent: 0 - type: Transform -- uid: 34906 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,49.5 - parent: 0 - type: Transform -- uid: 34907 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,49.5 - parent: 0 - type: Transform -- uid: 34908 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,49.5 - parent: 0 - type: Transform -- uid: 34909 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,48.5 - parent: 0 - type: Transform -- uid: 34910 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 5.5,47.5 - parent: 0 - type: Transform -- uid: 34911 - type: DisposalUnit - components: - - name: Mail to Cargo - type: MetaData - - pos: 5.5,47.5 - parent: 0 - type: Transform -- uid: 34912 - type: DisposalUnit - components: - - name: Mail to Cargo - type: MetaData - - pos: 21.5,7.5 - parent: 0 - type: Transform -- uid: 34913 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 16.5,-17.5 - parent: 0 - type: Transform -- uid: 34914 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-16.5 - parent: 0 - type: Transform -- uid: 34915 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-15.5 - parent: 0 - type: Transform -- uid: 34916 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-14.5 - parent: 0 - type: Transform -- uid: 34917 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-13.5 - parent: 0 - type: Transform -- uid: 34918 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-12.5 - parent: 0 - type: Transform -- uid: 34919 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-11.5 - parent: 0 - type: Transform -- uid: 34920 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-10.5 - parent: 0 - type: Transform -- uid: 34921 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-9.5 - parent: 0 - type: Transform -- uid: 34922 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-8.5 - parent: 0 - type: Transform -- uid: 34923 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-7.5 - parent: 0 - type: Transform -- uid: 34924 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-6.5 - parent: 0 - type: Transform -- uid: 34925 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-5.5 - parent: 0 - type: Transform -- uid: 34926 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-4.5 - parent: 0 - type: Transform -- uid: 34927 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-3.5 - parent: 0 - type: Transform -- uid: 34928 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-2.5 - parent: 0 - type: Transform -- uid: 34929 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-1.5 - parent: 0 - type: Transform -- uid: 34930 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-1.5 - parent: 0 - type: Transform -- uid: 34931 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-1.5 - parent: 0 - type: Transform -- uid: 34932 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-0.5 - parent: 0 - type: Transform -- uid: 34933 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-0.5 - parent: 0 - type: Transform -- uid: 34934 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 0 - type: Transform -- uid: 34935 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-1.5 - parent: 0 - type: Transform -- uid: 34936 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-0.5 - parent: 0 - type: Transform -- uid: 34937 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 0 - type: Transform -- uid: 34938 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 23.5,0.5 - parent: 0 - type: Transform -- uid: 34939 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 23.5,1.5 - parent: 0 - type: Transform -- uid: 34940 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 23.5,2.5 - parent: 0 - type: Transform -- uid: 34941 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 23.5,3.5 - parent: 0 - type: Transform -- uid: 34942 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 23.5,4.5 - parent: 0 - type: Transform -- uid: 34943 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 23.5,5.5 - parent: 0 - type: Transform -- uid: 34944 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,6.5 - parent: 0 - type: Transform -- uid: 34945 - type: DisposalBend - components: - - pos: 23.5,6.5 - parent: 0 - type: Transform -- uid: 34946 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 21.5,6.5 - parent: 0 - type: Transform -- uid: 34947 - type: DisposalTrunk - components: - - pos: 21.5,7.5 - parent: 0 - type: Transform -- uid: 34948 - type: DisposalUnit - components: - - name: Mail to Cargo - type: MetaData - - pos: 50.5,-18.5 - parent: 0 - type: Transform -- uid: 34949 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 17.5,-17.5 - parent: 0 - type: Transform -- uid: 34950 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 17.5,-16.5 - parent: 0 - type: Transform -- uid: 34951 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 17.5,-15.5 - parent: 0 - type: Transform -- uid: 34952 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 20.5,-15.5 - parent: 0 - type: Transform -- uid: 34953 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-16.5 - parent: 0 - type: Transform -- uid: 34954 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-16.5 - parent: 0 - type: Transform -- uid: 34955 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-16.5 - parent: 0 - type: Transform -- uid: 34956 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 0 - type: Transform -- uid: 34957 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-16.5 - parent: 0 - type: Transform -- uid: 34958 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-16.5 - parent: 0 - type: Transform -- uid: 34959 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-16.5 - parent: 0 - type: Transform -- uid: 34960 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-16.5 - parent: 0 - type: Transform -- uid: 34961 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-16.5 - parent: 0 - type: Transform -- uid: 34962 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-16.5 - parent: 0 - type: Transform -- uid: 34963 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-16.5 - parent: 0 - type: Transform -- uid: 34964 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-16.5 - parent: 0 - type: Transform -- uid: 34965 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-16.5 - parent: 0 - type: Transform -- uid: 34966 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-16.5 - parent: 0 - type: Transform -- uid: 34967 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-16.5 - parent: 0 - type: Transform -- uid: 34968 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-16.5 - parent: 0 - type: Transform -- uid: 34969 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-16.5 - parent: 0 - type: Transform -- uid: 34970 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-16.5 - parent: 0 - type: Transform -- uid: 34971 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-16.5 - parent: 0 - type: Transform -- uid: 34972 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-16.5 - parent: 0 - type: Transform -- uid: 34973 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-16.5 - parent: 0 - type: Transform -- uid: 34974 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-16.5 - parent: 0 - type: Transform -- uid: 34975 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-16.5 - parent: 0 - type: Transform -- uid: 34976 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-16.5 - parent: 0 - type: Transform -- uid: 34977 - type: DisposalPipe - components: - - pos: 45.5,-17.5 - parent: 0 - type: Transform -- uid: 34978 - type: DisposalPipe - components: - - pos: 45.5,-18.5 - parent: 0 - type: Transform -- uid: 34979 - type: DisposalPipe - components: - - pos: 45.5,-19.5 - parent: 0 - type: Transform -- uid: 34980 - type: DisposalPipe - components: - - pos: 45.5,-20.5 - parent: 0 - type: Transform -- uid: 34981 - type: DisposalPipe - components: - - pos: 45.5,-21.5 - parent: 0 - type: Transform -- uid: 34982 - type: DisposalPipe - components: - - pos: 45.5,-22.5 - parent: 0 - type: Transform -- uid: 34983 - type: DisposalPipe - components: - - pos: 45.5,-23.5 - parent: 0 - type: Transform -- uid: 34984 - type: DisposalPipe - components: - - pos: 45.5,-24.5 - parent: 0 - type: Transform -- uid: 34985 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-25.5 - parent: 0 - type: Transform -- uid: 34986 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-25.5 - parent: 0 - type: Transform -- uid: 34987 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-25.5 - parent: 0 - type: Transform -- uid: 34988 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-25.5 - parent: 0 - type: Transform -- uid: 34989 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 50.5,-24.5 - parent: 0 - type: Transform -- uid: 34990 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 50.5,-23.5 - parent: 0 - type: Transform -- uid: 34991 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 50.5,-22.5 - parent: 0 - type: Transform -- uid: 34992 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 50.5,-21.5 - parent: 0 - type: Transform -- uid: 34993 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 50.5,-20.5 - parent: 0 - type: Transform -- uid: 34994 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 50.5,-19.5 - parent: 0 - type: Transform -- uid: 34995 - type: DisposalTrunk - components: - - pos: 50.5,-18.5 - parent: 0 - type: Transform -- uid: 34996 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-25.5 - parent: 0 - type: Transform -- uid: 34997 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 45.5,-25.5 - parent: 0 - type: Transform -- uid: 34998 - type: DisposalBend - components: - - pos: 45.5,-16.5 - parent: 0 - type: Transform -- uid: 34999 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 20.5,-16.5 - parent: 0 - type: Transform -- uid: 35000 - type: DisposalBend - components: - - pos: 20.5,-14.5 - parent: 0 - type: Transform -- uid: 35001 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-14.5 - parent: 0 - type: Transform -- uid: 35002 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-14.5 - parent: 0 - type: Transform -- uid: 35003 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-14.5 - parent: 0 - type: Transform -- uid: 35004 - type: DisposalUnit - components: - - name: Mail To Cargo - type: MetaData - - pos: 76.5,-3.5 - parent: 0 - type: Transform -- uid: 35005 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 76.5,-3.5 - parent: 0 - type: Transform -- uid: 35006 - type: DisposalBend - components: - - pos: 79.5,-3.5 - parent: 0 - type: Transform -- uid: 35007 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 79.5,-14.5 - parent: 0 - type: Transform -- uid: 35008 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 72.5,-14.5 - parent: 0 - type: Transform -- uid: 35009 - type: DisposalBend - components: - - pos: 72.5,-9.5 - parent: 0 - type: Transform -- uid: 35010 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-14.5 - parent: 0 - type: Transform -- uid: 35011 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-14.5 - parent: 0 - type: Transform -- uid: 35012 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-14.5 - parent: 0 - type: Transform -- uid: 35013 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-14.5 - parent: 0 - type: Transform -- uid: 35014 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-14.5 - parent: 0 - type: Transform -- uid: 35015 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 78.5,-14.5 - parent: 0 - type: Transform -- uid: 35016 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 79.5,-13.5 - parent: 0 - type: Transform -- uid: 35017 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 79.5,-12.5 - parent: 0 - type: Transform -- uid: 35018 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 79.5,-11.5 - parent: 0 - type: Transform -- uid: 35019 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 79.5,-10.5 - parent: 0 - type: Transform -- uid: 35020 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 79.5,-9.5 - parent: 0 - type: Transform -- uid: 35021 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 79.5,-8.5 - parent: 0 - type: Transform -- uid: 35022 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 79.5,-7.5 - parent: 0 - type: Transform -- uid: 35023 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 79.5,-6.5 - parent: 0 - type: Transform -- uid: 35024 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 79.5,-5.5 - parent: 0 - type: Transform -- uid: 35025 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 79.5,-4.5 - parent: 0 - type: Transform -- uid: 35026 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 78.5,-3.5 - parent: 0 - type: Transform -- uid: 35027 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 77.5,-3.5 - parent: 0 - type: Transform -- uid: 35028 - type: DisposalPipe - components: - - pos: 72.5,-13.5 - parent: 0 - type: Transform -- uid: 35029 - type: DisposalPipe - components: - - pos: 72.5,-12.5 - parent: 0 - type: Transform -- uid: 35030 - type: DisposalPipe - components: - - pos: 72.5,-11.5 - parent: 0 - type: Transform -- uid: 35031 - type: DisposalPipe - components: - - pos: 72.5,-10.5 - parent: 0 - type: Transform -- uid: 35032 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-9.5 - parent: 0 - type: Transform -- uid: 35033 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-9.5 - parent: 0 - type: Transform -- uid: 35034 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-9.5 - parent: 0 - type: Transform -- uid: 35035 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-9.5 - parent: 0 - type: Transform -- uid: 35036 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-9.5 - parent: 0 - type: Transform -- uid: 35037 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-9.5 - parent: 0 - type: Transform -- uid: 35038 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-9.5 - parent: 0 - type: Transform -- uid: 35039 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-9.5 - parent: 0 - type: Transform -- uid: 35040 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-9.5 - parent: 0 - type: Transform -- uid: 35041 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-9.5 - parent: 0 - type: Transform -- uid: 35042 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-9.5 - parent: 0 - type: Transform -- uid: 35043 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-9.5 - parent: 0 - type: Transform -- uid: 35044 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-9.5 - parent: 0 - type: Transform -- uid: 35045 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-9.5 - parent: 0 - type: Transform -- uid: 35046 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-9.5 - parent: 0 - type: Transform -- uid: 35047 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-9.5 - parent: 0 - type: Transform -- uid: 35048 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-9.5 - parent: 0 - type: Transform -- uid: 35049 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-9.5 - parent: 0 - type: Transform -- uid: 35050 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-9.5 - parent: 0 - type: Transform -- uid: 35051 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-9.5 - parent: 0 - type: Transform -- uid: 35052 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-9.5 - parent: 0 - type: Transform -- uid: 35053 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-9.5 - parent: 0 - type: Transform -- uid: 35054 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-9.5 - parent: 0 - type: Transform -- uid: 35055 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-9.5 - parent: 0 - type: Transform -- uid: 35056 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-9.5 - parent: 0 - type: Transform -- uid: 35057 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-9.5 - parent: 0 - type: Transform -- uid: 35058 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-9.5 - parent: 0 - type: Transform -- uid: 35059 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-9.5 - parent: 0 - type: Transform -- uid: 35060 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,-8.5 - parent: 0 - type: Transform -- uid: 35061 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,-7.5 - parent: 0 - type: Transform -- uid: 35062 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,-6.5 - parent: 0 - type: Transform -- uid: 35063 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,-5.5 - parent: 0 - type: Transform -- uid: 35064 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,-4.5 - parent: 0 - type: Transform -- uid: 35065 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,-3.5 - parent: 0 - type: Transform -- uid: 35066 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 43.5,-9.5 - parent: 0 - type: Transform -- uid: 35067 - type: DisposalBend - components: - - pos: 43.5,-2.5 - parent: 0 - type: Transform -- uid: 35068 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-2.5 - parent: 0 - type: Transform -- uid: 35069 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-2.5 - parent: 0 - type: Transform -- uid: 35070 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-2.5 - parent: 0 - type: Transform -- uid: 35071 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-2.5 - parent: 0 - type: Transform -- uid: 35072 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-2.5 - parent: 0 - type: Transform -- uid: 35073 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-2.5 - parent: 0 - type: Transform -- uid: 35074 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-2.5 - parent: 0 - type: Transform -- uid: 35075 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-2.5 - parent: 0 - type: Transform -- uid: 35076 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-2.5 - parent: 0 - type: Transform -- uid: 35077 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-2.5 - parent: 0 - type: Transform -- uid: 35078 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 0 - type: Transform -- uid: 35079 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 0 - type: Transform -- uid: 35080 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-2.5 - parent: 0 - type: Transform -- uid: 35081 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 0 - type: Transform -- uid: 35082 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-2.5 - parent: 0 - type: Transform -- uid: 35083 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 0 - type: Transform -- uid: 35084 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-2.5 - parent: 0 - type: Transform -- uid: 35085 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-3.5 - parent: 0 - type: Transform -- uid: 35086 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-4.5 - parent: 0 - type: Transform -- uid: 35087 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-5.5 - parent: 0 - type: Transform -- uid: 35088 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-6.5 - parent: 0 - type: Transform -- uid: 35089 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-7.5 - parent: 0 - type: Transform -- uid: 35090 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-8.5 - parent: 0 - type: Transform -- uid: 35091 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-9.5 - parent: 0 - type: Transform -- uid: 35092 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-10.5 - parent: 0 - type: Transform -- uid: 35093 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 0 - type: Transform -- uid: 35094 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-10.5 - parent: 0 - type: Transform -- uid: 35095 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-10.5 - parent: 0 - type: Transform -- uid: 35096 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-10.5 - parent: 0 - type: Transform -- uid: 35097 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-10.5 - parent: 0 - type: Transform -- uid: 35098 - type: DisposalPipe - components: - - pos: 18.5,-11.5 - parent: 0 - type: Transform -- uid: 35099 - type: DisposalPipe - components: - - pos: 18.5,-12.5 - parent: 0 - type: Transform -- uid: 35100 - type: DisposalPipe - components: - - pos: 18.5,-13.5 - parent: 0 - type: Transform -- uid: 35101 - type: DisposalPipe - components: - - pos: 18.5,-14.5 - parent: 0 - type: Transform -- uid: 35102 - type: DisposalPipe - components: - - pos: 18.5,-15.5 - parent: 0 - type: Transform -- uid: 35103 - type: DisposalPipe - components: - - pos: 18.5,-16.5 - parent: 0 - type: Transform -- uid: 35104 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-10.5 - parent: 0 - type: Transform -- uid: 35105 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-10.5 - parent: 0 - type: Transform -- uid: 35106 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-2.5 - parent: 0 - type: Transform -- uid: 35107 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 18.5,-17.5 - parent: 0 - type: Transform -- uid: 35108 - type: SheetGlass - components: - - pos: 93.5,-49.5 - parent: 0 - type: Transform -- uid: 35109 - type: TableReinforced - components: - - pos: 98.5,-52.5 - parent: 0 - type: Transform -- uid: 35110 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 98.5,-53.5 - parent: 0 - type: Transform -- uid: 35111 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 98.5,-51.5 - parent: 0 - type: Transform -- uid: 35112 - type: BoxFolderGrey - components: - - pos: 98.5,-52.5 - parent: 0 - type: Transform -- uid: 35113 - type: CrateNPCHamlet - components: - - pos: 74.5,48.5 - parent: 0 - type: Transform -- uid: 35114 - type: SpawnMobMouse - components: - - pos: 92.5,-53.5 - parent: 0 - type: Transform -- uid: 35115 - type: PottedPlantRandom - components: - - pos: 98.5,-54.5 - parent: 0 - type: Transform -- uid: 35116 - type: RandomFoodBakedSingle - components: - - pos: 80.5,-47.5 - parent: 0 - type: Transform -- uid: 35117 - type: RandomDrinkGlass - components: - - pos: 84.5,-50.5 - parent: 0 - type: Transform -- uid: 35118 - type: RandomFoodSingle - components: - - pos: 77.5,-53.5 - parent: 0 - type: Transform -- uid: 35119 - type: RandomInstruments - components: - - pos: 68.5,-54.5 - parent: 0 - type: Transform -- uid: 35120 - type: PottedPlantRandom - components: - - pos: 71.5,-46.5 - parent: 0 - type: Transform -- uid: 35121 - type: PottedPlantRandom - components: - - pos: 87.5,-46.5 - parent: 0 - type: Transform -- uid: 35122 - type: PottedPlantRandom - components: - - pos: 91.5,-46.5 - parent: 0 - type: Transform -- uid: 35123 - type: RandomSnacks - components: - - pos: 89.5,-48.5 - parent: 0 - type: Transform -- uid: 35124 - type: RandomPainting - components: - - pos: 79.5,-45.5 - parent: 0 - type: Transform -- uid: 35125 - type: RandomPainting - components: - - pos: 71.5,-45.5 - parent: 0 - type: Transform -- uid: 35126 - type: RandomPainting - components: - - pos: 87.5,-45.5 - parent: 0 - type: Transform -- uid: 35127 - type: RandomPosterAny - components: - - pos: 67.5,-49.5 - parent: 0 - type: Transform -- uid: 35128 - type: RandomPosterAny - components: - - pos: 87.5,-50.5 - parent: 0 - type: Transform -- uid: 35129 - type: RandomPosterAny - components: - - pos: 101.5,-45.5 - parent: 0 - type: Transform -- uid: 35130 - type: RandomPosterAny - components: - - pos: 95.5,-49.5 - parent: 0 - type: Transform -- uid: 35131 - type: Stool - components: - - pos: 46.5,-52.5 - parent: 0 - type: Transform -- uid: 35132 - type: Stool - components: - - pos: 46.5,-51.5 - parent: 0 - type: Transform -- uid: 35133 - type: Stool - components: - - pos: 48.5,-52.5 - parent: 0 - type: Transform -- uid: 35134 - type: Stool - components: - - pos: 48.5,-51.5 - parent: 0 - type: Transform -- uid: 35135 - type: Stool - components: - - pos: 48.5,-50.5 - parent: 0 - type: Transform -- uid: 35136 - type: PoweredSmallLight - components: - - pos: 43.5,-53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 35137 - type: PoweredSmallLight - components: - - pos: 51.5,-53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 35138 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 35139 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 35140 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 35141 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 35142 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 35143 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 35144 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 35145 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 35146 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 35147 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 35148 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 35149 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 35150 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 35151 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 35152 - type: FloorTileItemGold - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 35153 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35154 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35155 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35156 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35157 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35158 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35159 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35160 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35161 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35162 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35163 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35164 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35165 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35166 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35167 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35168 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35169 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35170 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35171 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35172 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35173 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35174 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35175 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35176 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35177 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35178 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35179 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35180 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35181 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35182 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35183 - type: FloorTileItemSilver - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 35184 - type: RandomSpawner - components: - - pos: -24.5,13.5 - parent: 0 - type: Transform -- uid: 35185 - type: RandomSpawner - components: - - pos: -31.5,12.5 - parent: 0 - type: Transform -- uid: 35186 - type: RandomSpawner - components: - - pos: -33.5,15.5 - parent: 0 - type: Transform -- uid: 35187 - type: RandomSpawner - components: - - pos: -37.5,27.5 - parent: 0 - type: Transform -- uid: 35188 - type: RandomSpawner - components: - - pos: -35.5,30.5 - parent: 0 - type: Transform -- uid: 35189 - type: BoxCardboard - components: - - pos: 15.3551655,-8.529171 - parent: 0 - type: Transform -- uid: 35190 - type: BoxCardboard - components: - - pos: 15.4957905,-8.357296 - parent: 0 - type: Transform -- uid: 35191 - type: BoxCardboard - components: - - pos: 15.6051655,-8.560421 - parent: 0 - type: Transform -- uid: 35192 - type: BoxCardboard - components: - - pos: 15.4645405,-8.841671 - parent: 0 - type: Transform -- uid: 35193 - type: filingCabinetRandom - components: - - pos: 15.5,-11.5 - parent: 0 - type: Transform -- uid: 35194 - type: filingCabinetDrawerRandom - components: - - pos: 15.5,-12.5 - parent: 0 - type: Transform -- uid: 35195 - type: PaperBin - components: - - pos: 15.5,-10.5 - parent: 0 - type: Transform -- uid: 35196 - type: RubberStampTrader - components: - - pos: 21.482563,-11.35629 - parent: 0 - type: Transform -- uid: 35197 - type: PosterContrabandDDayPromo - components: - - pos: 66.5,-42.5 - parent: 0 - type: Transform -- uid: 35198 - type: PosterContrabandTheBigGasTruth - components: - - pos: 101.5,-48.5 - parent: 0 - type: Transform -- uid: 35199 - type: PosterContrabandUnreadableAnnouncement - components: - - pos: 99.5,-51.5 - parent: 0 - type: Transform -- uid: 35200 - type: Rack - components: - - pos: 96.5,-41.5 - parent: 0 - type: Transform -- uid: 35201 - type: Rack - components: - - pos: 96.5,-43.5 - parent: 0 - type: Transform -- uid: 35202 - type: ClosetMaintenanceFilledRandom - components: - - pos: 96.5,-42.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.2184362 - - 12.107451 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 35203 - type: MaintenanceFluffSpawner - components: - - pos: 96.5,-43.5 - parent: 0 - type: Transform -- uid: 35204 - type: MaintenanceToolSpawner - components: - - pos: 96.5,-41.5 - parent: 0 - type: Transform -- uid: 35205 - type: ClothingUniformJumpsuitLibrarian - components: - - pos: 106.4992,26.471043 - parent: 0 - type: Transform -- uid: 35206 - type: SignLibrary - components: - - pos: 103.5,24.5 - parent: 0 - type: Transform -- uid: 35207 - type: BookEscalation - components: - - pos: 112.421074,26.314793 - parent: 0 - type: Transform -- uid: 35208 - type: BookAtmosWaste - components: - - pos: 108.514824,25.955418 - parent: 0 - type: Transform -- uid: 35209 - type: BookAtmosVentsMore - components: - - pos: 108.358574,26.111668 - parent: 0 - type: Transform -- uid: 35210 - type: BookAtmosDistro - components: - - pos: 111.5617,22.361668 - parent: 0 - type: Transform -- uid: 35211 - type: BookAtmosAirAlarms - components: - - pos: 104.9992,23.455418 - parent: 0 - type: Transform -- uid: 35212 - type: PaintingSkeletonCigarette - components: - - pos: 108.5,27.5 - parent: 0 - type: Transform -- uid: 35213 - type: PaintingSkeletonBoof - components: - - pos: 27.5,-45.5 - parent: 0 - type: Transform -- uid: 35214 - type: Rack - components: - - pos: 58.5,-18.5 - parent: 0 - type: Transform -- uid: 35215 - type: Rack - components: - - pos: 58.5,-17.5 - parent: 0 - type: Transform -- uid: 35216 - type: MaintenanceFluffSpawner - components: - - pos: 58.5,-18.5 - parent: 0 - type: Transform -- uid: 35217 - type: FoodTinPeachesMaint - components: - - pos: 58.439167,-17.39435 - parent: 0 - type: Transform -- uid: 35218 - type: FoodTinPeachesMaint - components: - - pos: 58.657917,-17.2381 - parent: 0 - type: Transform -- uid: 35219 - type: Table - components: - - pos: 58.5,-14.5 - parent: 0 - type: Transform -- uid: 35220 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-15.5 - parent: 0 - type: Transform -- uid: 35221 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-14.5 - parent: 0 - type: Transform -- uid: 35222 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-16.5 - parent: 0 - type: Transform -- uid: 35223 - type: ClosetEmergencyFilledRandom - components: - - pos: 60.5,-17.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.2184362 - - 12.107451 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 35224 - type: ClosetFireFilled - components: - - pos: 60.5,-18.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.2184362 - - 12.107451 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 35225 - type: Girder - components: - - pos: 60.5,-22.5 - parent: 0 - type: Transform -- uid: 35226 - type: DrinkBlueCuracaoGlass - components: - - pos: 58.463543,-14.235533 - parent: 0 - type: Transform -- uid: 35227 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 58.5,-15.5 - parent: 0 - type: Transform -- uid: 35228 - type: PottedPlantRandom - components: - - pos: 58.5,55.5 - parent: 0 - type: Transform -- uid: 35229 - type: Table - components: - - pos: 55.5,62.5 - parent: 0 - type: Transform -- uid: 35230 - type: Table - components: - - pos: 55.5,61.5 - parent: 0 - type: Transform -- uid: 35231 - type: Table - components: - - pos: 54.5,61.5 - parent: 0 - type: Transform -- uid: 35232 - type: Table - components: - - pos: 53.5,61.5 - parent: 0 - type: Transform -- uid: 35233 - type: Table - components: - - pos: 53.5,62.5 - parent: 0 - type: Transform -- uid: 35234 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 53.5,60.5 - parent: 0 - type: Transform -- uid: 35235 - type: Lamp - components: - - pos: 53.58467,62.40574 - parent: 0 - type: Transform -- uid: 35236 - type: ClothingHeadHatFez - components: - - pos: 55.569046,62.59324 - parent: 0 - type: Transform -- uid: 35237 - type: ClothingHeadHatFez - components: - - pos: 55.52217,61.640114 - parent: 0 - type: Transform -- uid: 35238 - type: ClothingHeadHatFez - components: - - pos: 55.45967,61.81199 - parent: 0 - type: Transform -- uid: 35239 - type: ClothingHeadHatFez - components: - - pos: 55.350296,61.608864 - parent: 0 - type: Transform -- uid: 35240 - type: ClothingUniformJumpsuitMonasticRobeLight - components: - - pos: 53.631546,61.59324 - parent: 0 - type: Transform -- uid: 35241 - type: ClothingUniformJumpsuitMonasticRobeLight - components: - - pos: 53.80342,61.49949 - parent: 0 - type: Transform -- uid: 35242 - type: ClothingUniformJumpsuitMonasticRobeLight - components: - - pos: 53.506546,61.49949 - parent: 0 - type: Transform -- uid: 35243 - type: ClothingUniformJumpsuitMonasticRobeLight - components: - - pos: 53.569046,62.640114 - parent: 0 - type: Transform -- uid: 35244 - type: ClothingShoesTourist - components: - - pos: 52.49092,58.28074 - parent: 0 - type: Transform -- uid: 35245 - type: ClothingShoesTourist - components: - - pos: 52.475296,58.483864 - parent: 0 - type: Transform -- uid: 35246 - type: ClothingShoesTourist - components: - - pos: 52.49092,58.671364 - parent: 0 - type: Transform -- uid: 35247 - type: ClothingShoesTourist - components: - - pos: 52.506546,58.858864 - parent: 0 - type: Transform -- uid: 35248 - type: lantern - components: - - pos: 52.27217,59.40574 - parent: 0 - type: Transform -- uid: 35249 - type: lantern - components: - - pos: 52.27217,59.93699 - parent: 0 - type: Transform -- uid: 35250 - type: lantern - components: - - pos: 52.662796,59.90574 - parent: 0 - type: Transform -- uid: 35251 - type: lantern - components: - - pos: 52.662796,59.43699 - parent: 0 - type: Transform -- uid: 35252 - type: HatBandRed - components: - - pos: 33.685146,57.94791 - parent: 0 - type: Transform -- uid: 35253 - type: HatBandRed - components: - - pos: 33.685146,58.276035 - parent: 0 - type: Transform -- uid: 35254 - type: Rack - components: - - pos: 52.5,49.5 - parent: 0 - type: Transform -- uid: 35255 - type: Railing - components: - - pos: 45.5,52.5 - parent: 0 - type: Transform -- uid: 35256 - type: Railing - components: - - pos: 46.5,52.5 - parent: 0 - type: Transform -- uid: 35257 - type: Railing - components: - - pos: 47.5,52.5 - parent: 0 - type: Transform -- uid: 35258 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 45.5,56.5 - parent: 0 - type: Transform -- uid: 35259 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 46.5,56.5 - parent: 0 - type: Transform -- uid: 35260 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 47.5,56.5 - parent: 0 - type: Transform -- uid: 35261 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 48.5,55.5 - parent: 0 - type: Transform -- uid: 35262 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 48.5,54.5 - parent: 0 - type: Transform -- uid: 35263 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 48.5,53.5 - parent: 0 - type: Transform -- uid: 35264 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 44.5,53.5 - parent: 0 - type: Transform -- uid: 35265 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 44.5,54.5 - parent: 0 - type: Transform -- uid: 35266 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 44.5,55.5 - parent: 0 - type: Transform -- uid: 35267 - type: ClothingHandsGlovesBoxingGreen - components: - - pos: 48.556934,56.416527 - parent: 0 - type: Transform -- uid: 35268 - type: ClothingHandsGlovesBoxingYellow - components: - - pos: 44.51006,52.354027 - parent: 0 - type: Transform -- uid: 35269 - type: Chair - components: - - pos: 45.5,58.5 - parent: 0 - type: Transform -- uid: 35270 - type: Chair - components: - - pos: 46.5,58.5 - parent: 0 - type: Transform -- uid: 35271 - type: MaterialHideBear - components: - - pos: 46.429523,54.487045 - parent: 0 - type: Transform -- uid: 35272 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 50.5,54.5 - parent: 0 - type: Transform -- uid: 35273 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 46.5,50.5 - parent: 0 - type: Transform -- uid: 35274 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 47.5,50.5 - parent: 0 - type: Transform -- uid: 35275 - type: ClothingHandsGlovesBoxingBlue - components: - - pos: 44.505676,56.404865 - parent: 0 - type: Transform -- uid: 35276 - type: ClothingHandsGlovesBoxingRed - components: - - pos: 48.6463,52.342365 - parent: 0 - type: Transform -- uid: 35277 - type: ClothingHandsGlovesPowerglove - components: - - pos: 35.399933,56.487957 - parent: 0 - type: Transform -- uid: 35278 - type: EmergencyMedipen - components: - - pos: -21.492176,73.83237 - parent: 0 - type: Transform -- uid: 35279 - type: SpaceMedipen - components: - - pos: 2.509602,47.560272 - parent: 0 - type: Transform -- uid: 35280 - type: SpaceMedipen - components: - - pos: 2.587727,47.435272 - parent: 0 - type: Transform -- uid: 35281 - type: EmergencyMedipen - components: - - pos: 2.509602,47.841522 - parent: 0 - type: Transform -- uid: 35282 - type: EmergencyMedipen - components: - - pos: 2.572102,47.716522 - parent: 0 - type: Transform -- uid: 35283 - type: AntiPoisonMedipen - components: - - pos: 2.525227,47.294647 - parent: 0 - type: Transform -- uid: 35284 - type: AntiPoisonMedipen - components: - - pos: 2.618977,47.154022 - parent: 0 - type: Transform -- uid: 35285 - type: SignMail - components: - - pos: 14.5,-14.5 - parent: 0 - type: Transform -- uid: 35286 - type: SignCargo - components: - - pos: 10.5,-15.5 - parent: 0 - type: Transform -- uid: 35287 - type: Grille - components: - - pos: 19.5,-17.5 - parent: 0 - type: Transform -- uid: 35288 - type: Grille - components: - - pos: 19.5,-16.5 - parent: 0 - type: Transform -- uid: 35289 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 35290 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 6.5,-3.5 - parent: 0 - type: Transform -- uid: 35291 - type: SignDirectionalEvac - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-3.5 - parent: 0 - type: Transform -- uid: 35292 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 57.5,1.5 - parent: 0 - type: Transform -- uid: 35293 - type: SignDirectionalEvac - components: - - rot: -1.5707963267948966 rad - pos: 53.5,35.5 - parent: 0 - type: Transform -- uid: 35294 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: 53.498528,35.69145 - parent: 0 - type: Transform -- uid: 35295 - type: SignDirectionalMed - components: - - rot: -1.5707963267948966 rad - pos: 53.498528,35.31645 - parent: 0 - type: Transform -- uid: 35296 - type: SignDirectionalSec - components: - - pos: 57.5,35.5 - parent: 0 - type: Transform -- uid: 35297 - type: SignDirectionalDorms - components: - - pos: 57.492706,35.707073 - parent: 0 - type: Transform -- uid: 35298 - type: SignDirectionalEng - components: - - pos: 57.492706,35.31645 - parent: 0 - type: Transform -- uid: 35299 - type: SignDirectionalSci - components: - - pos: 57.492706,35.113323 - parent: 0 - type: Transform -- uid: 35300 - type: SignDirectionalSupply - components: - - pos: 6.4953637,-3.6914644 - parent: 0 - type: Transform -- uid: 35301 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: 6.4969177,-3.3008394 - parent: 0 - type: Transform -- uid: 35302 - type: SpawnPointObserver - components: - - pos: -0.5,-3.5 - parent: 0 - type: Transform -- uid: 35303 - type: SubstationBasic - components: - - name: Singulo Sub - type: MetaData - - pos: 98.5,1.5 - parent: 0 - type: Transform -- uid: 35304 - type: CableHV - components: - - pos: 98.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35305 - type: CableMV - components: - - pos: 98.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35306 - type: ReinforcedPlasmaWindow - components: - - pos: 99.5,-0.5 - parent: 0 - type: Transform -- uid: 35307 - type: PlasticFlapsAirtightOpaque - components: - - pos: 96.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 35308 - type: Grille - components: - - pos: 96.5,-0.5 - parent: 0 - type: Transform -- uid: 35309 - type: Grille - components: - - pos: 99.5,-0.5 - parent: 0 - type: Transform -- uid: 35310 - type: ShuttersRadiationOpen - components: - - pos: 96.5,-0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 35312 - type: SignalReceiver -- uid: 35311 - type: ShuttersRadiationOpen - components: - - pos: 99.5,-0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 35312 - type: SignalReceiver -- uid: 35312 - type: SignalButton - components: - - name: Airlock Shutters - type: MetaData - - pos: 96.5,2.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 35310 - - port: Toggle - uid: 35311 - type: SignalTransmitter -- uid: 35313 - type: Catwalk - components: - - pos: 97.5,0.5 - parent: 0 - type: Transform -- uid: 35314 - type: Catwalk - components: - - pos: 98.5,0.5 - parent: 0 - type: Transform -- uid: 35315 - type: CableHV - components: - - pos: 106.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35316 - type: CableHV - components: - - pos: 105.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35317 - type: CableHV - components: - - pos: 104.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35318 - type: CableHV - components: - - pos: 103.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35319 - type: CableHV - components: - - pos: 102.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35320 - type: CableHV - components: - - pos: 101.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35321 - type: CableHV - components: - - pos: 100.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35322 - type: CableHV - components: - - pos: 100.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35323 - type: CableHV - components: - - pos: 100.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35324 - type: CableHV - components: - - pos: 100.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35325 - type: CableHV - components: - - pos: 100.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35326 - type: CableHV - components: - - pos: 100.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35327 - type: CableHV - components: - - pos: 100.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35328 - type: CableHV - components: - - pos: 100.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35329 - type: CableHV - components: - - pos: 100.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35330 - type: CableHV - components: - - pos: 100.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35331 - type: CableHV - components: - - pos: 100.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35332 - type: CableHV - components: - - pos: 100.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35333 - type: CableHV - components: - - pos: 100.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35334 - type: PosterLegitBlessThisSpess - components: - - pos: 122.5,-0.5 - parent: 0 - type: Transform -- uid: 35335 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 22.5,7.5 - parent: 0 - type: Transform -- uid: 35336 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,7.5 - parent: 0 - type: Transform -- uid: 35337 - type: Table - components: - - pos: 33.5,7.5 - parent: 0 - type: Transform -- uid: 35338 - type: Table - components: - - pos: 32.5,7.5 - parent: 0 - type: Transform -- uid: 35339 - type: ChairOfficeDark - components: - - pos: 31.5,7.5 - parent: 0 - type: Transform -- uid: 35340 - type: HydroponicsToolMiniHoe - components: - - pos: 50.485313,18.484766 - parent: 0 - type: Transform -- uid: 35341 - type: Catwalk - components: - - pos: -4.5,73.5 - parent: 0 - type: Transform -- uid: 35342 - type: Catwalk - components: - - pos: -4.5,74.5 - parent: 0 - type: Transform -- uid: 35343 - type: Catwalk - components: - - pos: -4.5,75.5 - parent: 0 - type: Transform -- uid: 35345 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -31.5,-4.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals North - type: SurveillanceCamera -- uid: 35346 - type: SurveillanceCameraGeneral - components: - - pos: -32.5,-26.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals South - type: SurveillanceCamera -- uid: 35347 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-35.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Rock Dock Hall - type: SurveillanceCamera -- uid: 35348 - type: SurveillanceCameraGeneral - components: - - pos: -15.5,-26.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals South East - type: SurveillanceCamera -- uid: 35349 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -13.5,-4.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals North East - type: SurveillanceCamera -- uid: 35350 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 14.5,-4.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Cargo - type: SurveillanceCamera -- uid: 35351 - type: SurveillanceCameraGeneral - components: - - pos: 35.5,-2.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Mail Hall Security - type: SurveillanceCamera -- uid: 35352 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 58.5,-9.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Engineering - type: SurveillanceCamera -- uid: 35353 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-5.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Showroom West - type: SurveillanceCamera -- uid: 35354 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-6.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Showroom East - type: SurveillanceCamera -- uid: 35355 - type: SurveillanceCameraGeneral - components: - - pos: 30.5,-17.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Science - type: SurveillanceCamera -- uid: 35356 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-11.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Mailroom - type: SurveillanceCamera -- uid: 35357 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-7.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Panic Bunker - type: SurveillanceCamera -- uid: 35358 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 62.5,12.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm Entrance - type: SurveillanceCamera -- uid: 35359 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 84.5,16.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm Game Room - type: SurveillanceCamera -- uid: 35360 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 81.5,23.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm Hall - type: SurveillanceCamera -- uid: 35361 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 94.5,13.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm East - type: SurveillanceCamera -- uid: 35362 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 92.5,23.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm Arcade - type: SurveillanceCamera -- uid: 35363 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 70.5,40.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Bridge - type: SurveillanceCamera -- uid: 35364 - type: SurveillanceCameraGeneral - components: - - pos: 61.5,38.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall HoP - type: SurveillanceCamera -- uid: 35365 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 58.5,30.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Court Room Public Seating - type: SurveillanceCamera -- uid: 35366 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 16.5,34.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Medical - type: SurveillanceCamera -- uid: 35367 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -5.5,56.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Chapel - type: SurveillanceCamera -- uid: 35368 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -18.5,46.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Library - type: SurveillanceCamera -- uid: 35369 - type: SurveillanceCameraGeneral - components: - - pos: -34.5,52.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arboretum - type: SurveillanceCamera -- uid: 35370 - type: SurveillanceCameraMedical - components: - - pos: 4.5,47.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical West Room - type: SurveillanceCamera -- uid: 35371 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 35372 - type: SurveillanceCameraCommand - components: - - pos: 80.5,55.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge East - type: SurveillanceCamera -- uid: 35373 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 91.5,40.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault Exterior South - type: SurveillanceCamera -- uid: 35374 - type: SurveillanceCameraCommand - components: - - pos: 90.5,55.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault Exterior North - type: SurveillanceCamera -- uid: 35375 - type: TableReinforced - components: - - pos: 73.5,-10.5 - parent: 0 - type: Transform -- uid: 35376 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-9.5 - parent: 0 - type: Transform -- uid: 35377 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-10.5 - parent: 0 - type: Transform -- uid: 35378 - type: SignHead - components: - - pos: 75.5,46.5 - parent: 0 - type: Transform -- uid: 35379 - type: SignHead - components: - - pos: 66.5,46.5 - parent: 0 - type: Transform -- uid: 35380 - type: IntercomAll - components: - - pos: 124.5,50.5 - parent: 0 - type: Transform -- uid: 35381 - type: WallmountTelescreen - components: - - rot: 3.141592653589793 rad - pos: 124.5,48.5 - parent: 0 - type: Transform -- uid: 35382 - type: CableApcExtension - components: - - pos: 34.5,37.5 - parent: 0 - type: Transform -- uid: 35383 - type: CableApcExtension - components: - - pos: 33.5,37.5 - parent: 0 - type: Transform -- uid: 35384 - type: CableApcExtension - components: - - pos: 32.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35385 - type: CableApcExtension - components: - - pos: 32.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35386 - type: CableApcExtension - components: - - pos: 32.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35387 - type: CableApcExtension - components: - - pos: 31.5,37.5 - parent: 0 - type: Transform -- uid: 35388 - type: CableApcExtension - components: - - pos: 30.5,37.5 - parent: 0 - type: Transform -- uid: 35389 - type: CableApcExtension - components: - - pos: 29.5,37.5 - parent: 0 - type: Transform -- uid: 35390 - type: CableApcExtension - components: - - pos: 28.5,37.5 - parent: 0 - type: Transform -- uid: 35391 - type: CableMV - components: - - pos: 102.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35392 - type: CableMV - components: - - pos: 114.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35393 - type: CableMV - components: - - pos: 114.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35394 - type: CableMV - components: - - pos: 102.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35395 - type: CableMV - components: - - pos: 102.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35396 - type: CableMV - components: - - pos: 114.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35397 - type: CableMV - components: - - pos: 115.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35398 - type: CableMV - components: - - pos: 115.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35399 - type: CableMV - components: - - pos: 114.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35400 - type: CableMV - components: - - pos: 102.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35401 - type: CableMV - components: - - pos: 101.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 35402 - type: OxygenCanister - components: - - pos: 49.5,36.5 - parent: 0 - type: Transform -- uid: 35403 - type: NitrogenCanister - components: - - pos: 50.5,36.5 - parent: 0 - type: Transform -- uid: 35404 - type: CarpetBlue - components: - - pos: 48.5,-6.5 - parent: 0 - type: Transform -- uid: 35405 - type: CarpetBlue - components: - - pos: 48.5,-5.5 - parent: 0 - type: Transform -- uid: 35406 - type: CarpetBlue - components: - - pos: 49.5,-6.5 - parent: 0 - type: Transform -- uid: 35407 - type: CarpetBlue - components: - - pos: 49.5,-5.5 - parent: 0 - type: Transform -- uid: 35408 - type: CarpetBlue - components: - - pos: 47.5,-6.5 - parent: 0 - type: Transform -- uid: 35409 - type: CarpetBlue - components: - - pos: 47.5,-5.5 - parent: 0 - type: Transform -- uid: 35410 - type: CarpetBlue - components: - - pos: 50.5,-6.5 - parent: 0 - type: Transform -- uid: 35411 - type: CarpetBlue - components: - - pos: 50.5,-5.5 - parent: 0 - type: Transform -- uid: 35412 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,36.5 - parent: 0 - type: Transform -- uid: 35413 - type: Rack - components: - - pos: 19.5,38.5 - parent: 0 - type: Transform -- uid: 35414 - type: Table - components: - - pos: 27.5,36.5 - parent: 0 - type: Transform -- uid: 35415 - type: TelecomServer - components: - - pos: 94.5,30.5 - parent: 0 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 35416 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 35416 - type: EncryptionKeyCargo - components: - - flags: InContainer - type: MetaData - - parent: 35415 - type: Transform - - canCollide: False - type: Physics -- uid: 35417 - type: TelecomServer - components: - - pos: 94.5,31.5 - parent: 0 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 35418 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 35418 - type: EncryptionKeyEngineering - components: - - flags: InContainer - type: MetaData - - parent: 35417 - type: Transform - - canCollide: False - type: Physics -- uid: 35419 - type: SurveillanceCameraWirelessRouterEntertainment - components: - - pos: 100.5,30.5 - parent: 0 - type: Transform -- uid: 35420 - type: TelecomServer - components: - - pos: 96.5,31.5 - parent: 0 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 35421 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 35421 - type: EncryptionKeyMedical - components: - - flags: InContainer - type: MetaData - - parent: 35420 - type: Transform - - canCollide: False - type: Physics -- uid: 35422 - type: TelecomServer - components: - - pos: 96.5,30.5 - parent: 0 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 35423 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 35423 - type: EncryptionKeyScience - components: - - flags: InContainer - type: MetaData - - parent: 35422 - type: Transform - - canCollide: False - type: Physics -- uid: 35424 - type: TelecomServer - components: - - pos: 98.5,30.5 - parent: 0 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 35425 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 35425 - type: EncryptionKeySecurity - components: - - flags: InContainer - type: MetaData - - parent: 35424 - type: Transform - - canCollide: False - type: Physics -- uid: 35426 - type: TelecomServer - components: - - pos: 98.5,31.5 - parent: 0 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 35427 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 35427 - type: EncryptionKeyCommand - components: - - flags: InContainer - type: MetaData - - parent: 35426 - type: Transform - - canCollide: False - type: Physics -- uid: 35428 - type: SurveillanceCameraWirelessRouterConstructed - components: - - pos: 98.5,33.5 - parent: 0 - type: Transform -- uid: 35429 - type: TelecomServer - components: - - pos: 93.5,33.5 - parent: 0 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 35430 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 35430 - type: EncryptionKeyService - components: - - flags: InContainer - type: MetaData - - parent: 35429 - type: Transform - - canCollide: False - type: Physics -- uid: 35431 - type: TelecomServer - components: - - pos: 95.5,33.5 - parent: 0 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 35432 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 35432 - type: EncryptionKeyCommon - components: - - flags: InContainer - type: MetaData - - parent: 35431 - type: Transform - - canCollide: False - type: Physics -- uid: 35433 - type: ChairFolding - components: - - pos: 68.5,13.5 - parent: 0 - type: Transform -- uid: 35434 - type: ChairFolding - components: - - pos: 70.5,13.5 - parent: 0 - type: Transform -- uid: 35435 - type: ChairFolding - components: - - pos: 72.5,13.5 - parent: 0 - type: Transform -- uid: 35436 - type: TableWood - components: - - pos: 71.5,13.5 - parent: 0 - type: Transform -- uid: 35437 - type: ClothingEyesGlassesBeer - components: - - pos: 67.49108,13.573626 - parent: 0 - type: Transform -- uid: 35438 - type: MaterialCloth1 - components: - - pos: 71.5,13.5 - parent: 0 - type: Transform -- uid: 35439 - type: ClothingShoesTourist - components: - - pos: 73.32944,13.108924 - parent: 0 - type: Transform -- uid: 35440 - type: DrinkBahamaMama - components: - - pos: 67.49108,13.870501 - parent: 0 - type: Transform -- uid: 35441 - type: CarpetOrange - components: - - pos: 65.5,8.5 - parent: 0 - type: Transform -- uid: 35442 - type: CarpetOrange - components: - - pos: 64.5,8.5 - parent: 0 - type: Transform -- uid: 35443 - type: ComputerStationRecords - components: - - pos: 63.5,48.5 - parent: 0 - type: Transform -- uid: 35444 - type: ComputerStationRecords - components: - - rot: 3.141592653589793 rad - pos: -23.5,37.5 - parent: 0 - type: Transform -- uid: 35445 - type: CarpetGreen - components: - - pos: 65.5,10.5 - parent: 0 - type: Transform -- uid: 35446 - type: CarpetGreen - components: - - pos: 64.5,10.5 - parent: 0 - type: Transform -- uid: 35447 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: 65.5,7.5 - parent: 0 - type: Transform -- uid: 35448 - type: MedkitOxygenFilled - components: - - pos: 74.58742,6.549864 - parent: 0 - type: Transform -... diff --git a/Resources/Maps/infiltrator.yml b/Resources/Maps/infiltrator.yml deleted file mode 100644 index 78851ce001..0000000000 --- a/Resources/Maps/infiltrator.yml +++ /dev/null @@ -1,6397 +0,0 @@ -meta: - format: 3 - name: DemoStation - author: Space-Wizards - postmapinit: false -tilemap: - 0: Space - 3: FloorArcadeRed - 22: FloorDark - 58: FloorReinforced - 64: FloorShuttleRed - 65: FloorShuttleWhite - 68: FloorSteel - 74: FloorSteelMono - 91: FloorWood - 93: Lattice - 94: Plating -entities: -- uid: 0 - type: WallPlastitanium - components: - - pos: 5.5,-3.5 - parent: 73 - type: Transform -- uid: 1 - type: WallPlastitanium - components: - - pos: 2.5,-2.5 - parent: 73 - type: Transform -- uid: 2 - type: ReinforcedPlasmaWindow - components: - - pos: 3.5,-2.5 - parent: 73 - type: Transform -- uid: 3 - type: WallPlastitanium - components: - - pos: 4.5,-3.5 - parent: 73 - type: Transform -- uid: 4 - type: ShuttersNormalOpen - components: - - pos: -6.5,-4.5 - parent: 73 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 238 - type: SignalReceiver -- uid: 5 - type: WallPlastitanium - components: - - pos: -3.5,-11.5 - parent: 73 - type: Transform -- uid: 6 - type: WallPlastitanium - components: - - pos: 2.5,-14.5 - parent: 73 - type: Transform -- uid: 7 - type: WallPlastitanium - components: - - pos: 4.5,-14.5 - parent: 73 - type: Transform -- uid: 8 - type: WallPlastitanium - components: - - pos: -2.5,-14.5 - parent: 73 - type: Transform -- uid: 9 - type: Grille - components: - - pos: 2.5,-12.5 - parent: 73 - type: Transform -- uid: 10 - type: WallPlastitanium - components: - - pos: 2.5,-18.5 - parent: 73 - type: Transform -- uid: 11 - type: WallPlastitanium - components: - - pos: 1.5,-25.5 - parent: 73 - type: Transform -- uid: 12 - type: WallPlastitanium - components: - - pos: 1.5,-18.5 - parent: 73 - type: Transform -- uid: 13 - type: WallPlastitanium - components: - - pos: 7.5,-17.5 - parent: 73 - type: Transform -- uid: 14 - type: WallPlastitanium - components: - - pos: -3.5,-26.5 - parent: 73 - type: Transform -- uid: 15 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 73 - type: Transform -- uid: 16 - type: Grille - components: - - pos: -3.5,-12.5 - parent: 73 - type: Transform -- uid: 17 - type: WallPlastitanium - components: - - pos: 2.5,-13.5 - parent: 73 - type: Transform -- uid: 18 - type: WallPlastitanium - components: - - pos: -3.5,-28.5 - parent: 73 - type: Transform -- uid: 19 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-13.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20 - type: WallPlastitanium - components: - - pos: 2.5,-10.5 - parent: 73 - type: Transform -- uid: 21 - type: WallPlastitanium - components: - - pos: 4.5,-18.5 - parent: 73 - type: Transform -- uid: 22 - type: WallPlastitanium - components: - - pos: -2.5,-10.5 - parent: 73 - type: Transform -- uid: 23 - type: WallPlastitanium - components: - - pos: -3.5,-10.5 - parent: 73 - type: Transform -- uid: 24 - type: WallPlastitanium - components: - - pos: -6.5,-11.5 - parent: 73 - type: Transform -- uid: 25 - type: WallPlastitanium - components: - - pos: 4.5,-10.5 - parent: 73 - type: Transform -- uid: 26 - type: WallPlastitanium - components: - - pos: 4.5,-2.5 - parent: 73 - type: Transform -- uid: 27 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 73 - type: Transform -- uid: 28 - type: Brutepack - components: - - pos: -3.292087,-4.1600046 - parent: 73 - type: Transform -- uid: 29 - type: WallPlastitanium - components: - - pos: -6.5,-6.5 - parent: 73 - type: Transform -- uid: 30 - type: WallPlastitanium - components: - - pos: -5.5,-6.5 - parent: 73 - type: Transform -- uid: 31 - type: WallPlastitanium - components: - - pos: 4.5,-6.5 - parent: 73 - type: Transform -- uid: 32 - type: WallPlastitanium - components: - - pos: -6.5,-5.5 - parent: 73 - type: Transform -- uid: 33 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-8.5 - parent: 73 - type: Transform -- uid: 34 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 73 - type: Transform -- uid: 35 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-8.5 - parent: 73 - type: Transform -- uid: 36 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 37 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 73 - type: Transform -- uid: 38 - type: ShuttersNormalOpen - components: - - pos: 5.5,-4.5 - parent: 73 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 630 - type: SignalReceiver -- uid: 39 - type: WallPlastitanium - components: - - pos: 2.5,-11.5 - parent: 73 - type: Transform -- uid: 40 - type: WallPlastitanium - components: - - pos: 5.5,-18.5 - parent: 73 - type: Transform -- uid: 41 - type: WallPlastitanium - components: - - pos: -8.5,-15.5 - parent: 73 - type: Transform -- uid: 42 - type: WallPlastitanium - components: - - pos: -8.5,-17.5 - parent: 73 - type: Transform -- uid: 43 - type: WallPlastitanium - components: - - pos: -7.5,-17.5 - parent: 73 - type: Transform -- uid: 44 - type: WallPlastitanium - components: - - pos: -5.5,-10.5 - parent: 73 - type: Transform -- uid: 45 - type: WallPlastitanium - components: - - pos: -3.5,-13.5 - parent: 73 - type: Transform -- uid: 46 - type: WallPlastitanium - components: - - pos: 3.5,-18.5 - parent: 73 - type: Transform -- uid: 47 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-6.5 - parent: 73 - type: Transform -- uid: 48 - type: ShuttersNormalOpen - components: - - pos: 1.5,-9.5 - parent: 73 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 143 - type: SignalReceiver -- uid: 49 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 73 - type: Transform -- uid: 50 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 73 - type: Transform -- uid: 51 - type: Brutepack - components: - - pos: -3.354587,-4.4256296 - parent: 73 - type: Transform -- uid: 52 - type: TablePlasmaGlass - components: - - pos: -3.5,-4.5 - parent: 73 - type: Transform -- uid: 53 - type: WallPlastitanium - components: - - pos: 5.5,-14.5 - parent: 73 - type: Transform -- uid: 54 - type: WallPlastitanium - components: - - pos: 7.5,-15.5 - parent: 73 - type: Transform -- uid: 55 - type: WallPlastitanium - components: - - pos: -6.5,-19.5 - parent: 73 - type: Transform -- uid: 56 - type: WallPlastitanium - components: - - pos: -6.5,-18.5 - parent: 73 - type: Transform -- uid: 57 - type: WallPlastitanium - components: - - pos: -3.5,-25.5 - parent: 73 - type: Transform -- uid: 58 - type: WallPlastitanium - components: - - pos: 2.5,-25.5 - parent: 73 - type: Transform -- uid: 59 - type: WallPlastitanium - components: - - pos: 2.5,-27.5 - parent: 73 - type: Transform -- uid: 60 - type: WallPlastitanium - components: - - pos: 4.5,-17.5 - parent: 73 - type: Transform -- uid: 61 - type: WallPlastitanium - components: - - pos: -7.5,-21.5 - parent: 73 - type: Transform -- uid: 62 - type: WallPlastitanium - components: - - pos: -7.5,-27.5 - parent: 73 - type: Transform -- uid: 63 - type: WallPlastitanium - components: - - pos: -7.5,-24.5 - parent: 73 - type: Transform -- uid: 64 - type: WallPlastitanium - components: - - pos: 6.5,-21.5 - parent: 73 - type: Transform -- uid: 65 - type: CableHV - components: - - pos: -2.5,-21.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 66 - type: OxygenTankFilled - components: - - pos: -5.600447,-12.569441 - parent: 73 - type: Transform -- uid: 67 - type: Catwalk - components: - - pos: -2.5,-26.5 - parent: 73 - type: Transform -- uid: 68 - type: Catwalk - components: - - pos: -2.5,-28.5 - parent: 73 - type: Transform -- uid: 69 - type: AMEShielding - components: - - pos: -6.5,-26.5 - parent: 73 - type: Transform -- uid: 70 - type: Wrench - components: - - pos: -6.522632,-21.426788 - parent: 73 - type: Transform - - nextAttack: 781.8510677 - type: MeleeWeapon -- uid: 71 - type: WallPlastitanium - components: - - pos: 6.5,-24.5 - parent: 73 - type: Transform -- uid: 72 - type: WallPlastitanium - components: - - pos: 6.5,-26.5 - parent: 73 - type: Transform -- uid: 73 - components: - - name: GX-13 Infiltrator - type: MetaData - - pos: 0.64252126,4.1776605 - parent: invalid - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAARYAAAIWAAABFgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAQAAAABYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEAAAAAWAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABAAAAAFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAWAAABFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAFgAAAhYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAWAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAkAAAAAWAAACFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACSgAAAEEAAAAWAAADFgAAABYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAA0EAAABKAAABQAAAABYAAAAWAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABEAAAARAAAA0AAAAAWAAACFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,-1: - ind: 0,-1 - tiles: FgAAARYAAAEWAAABFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACQAAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAkAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAFAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAV4AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAANeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAUAAAABbAAADXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAAAFgAAAFsAAANbAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAQAAAAFsAAAADAAAAWwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAA0AAAABeAAAAAwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,-2: - ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAMWAAABFgAAAV4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAADXgAAABYAAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAV4AAAAWAAACXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAFeAAAAFgAAAUAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAACXgAAABYAAANAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAhYAAAEWAAABQAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAAWAAAAFgAAAEAAAABeAAAAFgAAABYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFgAAAxYAAABAAAAAFgAAAxYAAAAWAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEAAAAAWAAAAQAAAAF4AAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAABFgAAABYAAAMWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAV4AAABeAAAAXgAAAA== - 0,-2: - ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAADoAAABeAAAAOgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAAA6AAAAXgAAADoAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAOgAAAF4AAAA6AAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAFgAAAV4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAEWAAADFgAAARYAAAMWAAABQAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADFgAAAhYAAAAWAAACFgAAA14AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAIWAAAAFgAAAxYAAAFeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABFgAAABYAAAEWAAADXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAWAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - version: 2 - data: - tiles: - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - -1,-1: - 0: 61439 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 0,-1: - 0: 65535 - 1,-4: - 0: 30591 - 1,-3: - 0: 21879 - 4: 512 - 1,-2: - 0: 30581 - 1,-1: - 0: 55 - 0,-5: - 0: 65535 - 1,-5: - 0: 65399 - -1,-5: - 0: 65535 - -3,-4: - 0: 12 - -2,-4: - 0: 61439 - -2,-2: - 0: 65516 - -2,-1: - 0: 2287 - -2,-3: - 0: 35054 - 4: 1536 - -1,0: - 0: 8 - -3,-5: - 0: 52224 - -2,-8: - 0: 65504 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-8: - 0: 65526 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - 0,-8: - 0: 65523 - 0,-7: - 0: 61303 - 1: 4096 - 2: 136 - 0,-6: - 1: 1 - 0: 65534 - 1,-8: - 0: 30512 - 1,-7: - 0: 30549 - 3: 34 - 1,-6: - 0: 30583 - -1,-9: - 0: 26112 - 0,-9: - 0: 13056 - 2,-4: - 0: 1 - 2,-5: - 0: 4352 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 20.619795 - - 77.56971 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - chunkCollection: - version: 2 - nodes: - - node: - color: '#DE3A3A96' - id: BrickTileSteelCornerNe - decals: - 10: 0,-4 - 43: 0,-9 - 51: 4,-20 - - node: - color: '#DE3A3A96' - id: BrickTileSteelCornerNw - decals: - 11: -2,-4 - 42: -2,-9 - 45: -2,-20 - - node: - color: '#DE3A3A96' - id: BrickTileSteelCornerSe - decals: - 36: 0,-14 - 50: 4,-22 - 76: 3,-18 - - node: - color: '#DE3A3A96' - id: BrickTileSteelCornerSw - decals: - 37: -2,-14 - 46: -2,-22 - 75: -5,-18 - - node: - color: '#DE3A3A96' - id: BrickTileSteelLineE - decals: - 6: 0,-7 - 9: 0,-5 - 32: 0,-11 - 33: 0,-10 - 34: 0,-12 - 35: 0,-13 - 52: 4,-21 - - node: - color: '#DE3A3A96' - id: BrickTileSteelLineN - decals: - 12: -1,-4 - 53: 3,-20 - 54: 2,-20 - 55: 1,-20 - 56: 0,-20 - 63: 0,-16 - 64: 1,-16 - 65: 2,-16 - 66: -2,-16 - 67: -3,-16 - 68: -4,-16 - - node: - color: '#DE3A3A96' - id: BrickTileSteelLineS - decals: - 47: 0,-22 - 48: 1,-22 - 49: 2,-22 - 69: 2,-18 - 70: 1,-18 - 71: 0,-18 - 72: -2,-18 - 73: -3,-18 - 74: -4,-18 - - node: - color: '#DE3A3A96' - id: BrickTileSteelLineW - decals: - 7: -2,-7 - 8: -2,-5 - 38: -2,-13 - 39: -2,-12 - 40: -2,-11 - 41: -2,-10 - - node: - color: '#DE3A3A96' - id: DeliveryGreyscale - decals: - 13: 1,-6 - 31: -3,-6 - 83: -1,-19 - 84: -3,-21 - 85: -1,-15 - 86: 4,-17 - 87: -6,-17 - 88: -5,-15 - 89: 3,-15 - 90: -1,-8 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 29: -4,-7 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 25: -4,-4 - 26: -5,-4 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 27: -6,-6 - 28: -6,-5 - - node: - color: '#DE3A3A96' - id: MonoOverlay - decals: - 23: -5,-6 - 24: -4,-5 - - node: - color: '#DE3A3A96' - id: WarnCornerGreyscaleNE - decals: - 81: 3,-16 - - node: - color: '#DE3A3A96' - id: WarnCornerGreyscaleNW - decals: - 80: -5,-16 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 3: -4,-23 - 4: -4,-24 - 5: -4,-25 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleE - decals: - 78: 3,-17 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleN - decals: - 44: -1,-9 - 59: -1,-20 - 82: -1,-16 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleS - decals: - 57: -1,-22 - 60: 3,-22 - 77: -1,-18 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleW - decals: - 58: -2,-21 - 79: -5,-17 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 0: -4,-22 - 1: -4,-21 - 2: -4,-20 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinEndN - decals: - 62: 3,-4 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinEndS - decals: - 61: 3,-5 - - node: - color: '#FFFFFFFF' - id: syndlogo10 - decals: - 20: -2,-7 - - node: - color: '#FFFFFFFF' - id: syndlogo11 - decals: - 21: -1,-7 - - node: - color: '#FFFFFFFF' - id: syndlogo12 - decals: - 22: 0,-7 - - node: - color: '#FFFFFFFF' - id: syndlogo2 - decals: - 14: -2,-5 - - node: - color: '#FFFFFFFF' - id: syndlogo3 - decals: - 15: -1,-5 - - node: - color: '#FFFFFFFF' - id: syndlogo4 - decals: - 16: 0,-5 - - node: - color: '#FFFFFFFF' - id: syndlogo5 - decals: - 30: -3,-6 - - node: - color: '#FFFFFFFF' - id: syndlogo6 - decals: - 17: -2,-6 - - node: - color: '#FFFFFFFF' - id: syndlogo7 - decals: - 18: -1,-6 - - node: - color: '#FFFFFFFF' - id: syndlogo8 - decals: - 19: 0,-6 - type: DecalGrid - - color: '#FFC000FF' - flags: Hide - type: IFF - - type: OccluderTree - - type: Shuttle - - nextUpdate: 2319.9379624 - type: GridPathfinding - - type: RadiationGridResistance - - nextShake: 0 - shakeTimes: 10 - type: GravityShake - - type: GasTileOverlay -- uid: 74 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 73 - type: Transform -- uid: 75 - type: WallPlastitanium - components: - - pos: 1.5,-10.5 - parent: 73 - type: Transform -- uid: 76 - type: NuclearBombUnanchored - components: - - pos: -2.5,-12.5 - parent: 73 - type: Transform -- uid: 77 - type: WallPlastitanium - components: - - pos: -3.5,-27.5 - parent: 73 - type: Transform -- uid: 78 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: -6.5,-21.5 - parent: 73 - type: Transform -- uid: 79 - type: WallPlastitanium - components: - - pos: -6.5,-12.5 - parent: 73 - type: Transform -- uid: 80 - type: WallPlastitanium - components: - - pos: 5.5,-12.5 - parent: 73 - type: Transform -- uid: 81 - type: WallPlastitanium - components: - - pos: 5.5,-11.5 - parent: 73 - type: Transform -- uid: 82 - type: WallPlastitanium - components: - - pos: -5.5,-11.5 - parent: 73 - type: Transform -- uid: 83 - type: WallPlastitanium - components: - - pos: -6.5,-20.5 - parent: 73 - type: Transform -- uid: 84 - type: WallPlastitanium - components: - - pos: 0.5,-14.5 - parent: 73 - type: Transform -- uid: 85 - type: WallPlastitanium - components: - - pos: -1.5,-14.5 - parent: 73 - type: Transform -- uid: 86 - type: WallPlastitanium - components: - - pos: 5.5,-20.5 - parent: 73 - type: Transform -- uid: 87 - type: TableReinforced - components: - - pos: -2.5,-11.5 - parent: 73 - type: Transform -- uid: 88 - type: Lamp - components: - - pos: -1.483297,-2.2444057 - parent: 73 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 89 - type: WallPlastitanium - components: - - pos: -5.5,-14.5 - parent: 73 - type: Transform -- uid: 90 - type: Table - components: - - pos: 5.5,-21.5 - parent: 73 - type: Transform -- uid: 91 - type: WallPlastitanium - components: - - pos: 6.5,-17.5 - parent: 73 - type: Transform -- uid: 92 - type: PlushieNuke - components: - - pos: -2.4227936,-2.3320491 - parent: 73 - type: Transform - - nextAttack: 1689.1141067 - type: MeleeWeapon -- uid: 93 - type: WallPlastitanium - components: - - pos: -3.5,-14.5 - parent: 73 - type: Transform -- uid: 94 - type: WallPlastitanium - components: - - pos: -2.5,-18.5 - parent: 73 - type: Transform -- uid: 95 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-19.5 - parent: 73 - type: Transform -- uid: 96 - type: WallPlastitanium - components: - - pos: 2.5,-26.5 - parent: 73 - type: Transform -- uid: 97 - type: WallPlastitanium - components: - - pos: 2.5,-28.5 - parent: 73 - type: Transform -- uid: 98 - type: WallPlastitanium - components: - - pos: 6.5,-25.5 - parent: 73 - type: Transform -- uid: 99 - type: WallPlastitanium - components: - - pos: 6.5,-22.5 - parent: 73 - type: Transform -- uid: 100 - type: WallPlastitanium - components: - - pos: -7.5,-23.5 - parent: 73 - type: Transform -- uid: 101 - type: WallPlastitanium - components: - - pos: -7.5,-26.5 - parent: 73 - type: Transform -- uid: 102 - type: WallPlastitanium - components: - - pos: -7.5,-22.5 - parent: 73 - type: Transform -- uid: 103 - type: WallPlastitanium - components: - - pos: -7.5,-20.5 - parent: 73 - type: Transform -- uid: 104 - type: WallPlastitanium - components: - - pos: 4.5,-15.5 - parent: 73 - type: Transform -- uid: 105 - type: WallPlastitanium - components: - - pos: 6.5,-28.5 - parent: 73 - type: Transform -- uid: 106 - type: WallPlastitanium - components: - - pos: 6.5,-27.5 - parent: 73 - type: Transform -- uid: 107 - type: WallPlastitanium - components: - - pos: 6.5,-23.5 - parent: 73 - type: Transform -- uid: 108 - type: WallPlastitanium - components: - - pos: 6.5,-20.5 - parent: 73 - type: Transform -- uid: 109 - type: WallPlastitanium - components: - - pos: -7.5,-25.5 - parent: 73 - type: Transform -- uid: 110 - type: WallPlastitanium - components: - - pos: -7.5,-28.5 - parent: 73 - type: Transform -- uid: 111 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: -5.5,-15.5 - parent: 73 - type: Transform -- uid: 112 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-21.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 113 - type: WallPlastitanium - components: - - pos: -5.5,-18.5 - parent: 73 - type: Transform -- uid: 114 - type: Grille - components: - - pos: -2.5,-1.5 - parent: 73 - type: Transform -- uid: 115 - type: ReinforcedPlasmaWindow - components: - - pos: -0.5,-1.5 - parent: 73 - type: Transform -- uid: 116 - type: ReinforcedPlasmaWindow - components: - - pos: -6.5,-4.5 - parent: 73 - type: Transform -- uid: 117 - type: Grille - components: - - pos: -0.5,-1.5 - parent: 73 - type: Transform -- uid: 118 - type: Grille - components: - - pos: -4.5,-2.5 - parent: 73 - type: Transform -- uid: 119 - type: Grille - components: - - pos: -6.5,-4.5 - parent: 73 - type: Transform -- uid: 120 - type: WallPlastitanium - components: - - pos: -5.5,-3.5 - parent: 73 - type: Transform -- uid: 121 - type: WallPlastitanium - components: - - pos: 5.5,-5.5 - parent: 73 - type: Transform -- uid: 122 - type: WallPlastitanium - components: - - pos: -3.5,-2.5 - parent: 73 - type: Transform -- uid: 123 - type: Grille - components: - - pos: 3.5,-2.5 - parent: 73 - type: Transform -- uid: 124 - type: WallPlastitanium - components: - - pos: -6.5,-3.5 - parent: 73 - type: Transform -- uid: 125 - type: Grille - components: - - pos: -1.5,-1.5 - parent: 73 - type: Transform -- uid: 126 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-1.5 - parent: 73 - type: Transform -- uid: 127 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 73 - type: Transform -- uid: 128 - type: WallPlastitanium - components: - - pos: -3.5,-18.5 - parent: 73 - type: Transform -- uid: 129 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 130 - type: WallPlastitanium - components: - - pos: -3.5,-1.5 - parent: 73 - type: Transform -- uid: 131 - type: WallPlastitanium - components: - - pos: 2.5,-1.5 - parent: 73 - type: Transform -- uid: 132 - type: Grille - components: - - pos: 5.5,-4.5 - parent: 73 - type: Transform -- uid: 133 - type: WallPlastitanium - components: - - pos: -6.5,-14.5 - parent: 73 - type: Transform -- uid: 134 - type: ReinforcedPlasmaWindow - components: - - pos: -4.5,-2.5 - parent: 73 - type: Transform -- uid: 135 - type: WallPlastitanium - components: - - pos: -5.5,-2.5 - parent: 73 - type: Transform -- uid: 136 - type: WallPlastitanium - components: - - pos: 5.5,-6.5 - parent: 73 - type: Transform -- uid: 137 - type: Grille - components: - - pos: 0.5,-1.5 - parent: 73 - type: Transform -- uid: 138 - type: AirlockSecurityGlass - components: - - pos: 2.5,-5.5 - parent: 73 - type: Transform -- uid: 139 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 140 - type: ShuttersNormalOpen - components: - - pos: -2.5,-9.5 - parent: 73 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 143 - type: SignalReceiver -- uid: 141 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 73 - type: Transform -- uid: 142 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 73 - type: Transform -- uid: 143 - type: SignalButton - components: - - pos: -2.5,-10.5 - parent: 73 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 140 - - port: Toggle - uid: 48 - type: SignalTransmitter -- uid: 144 - type: WallPlastitanium - components: - - pos: 4.5,-11.5 - parent: 73 - type: Transform -- uid: 145 - type: ReinforcedPlasmaWindow - components: - - pos: 5.5,-4.5 - parent: 73 - type: Transform -- uid: 146 - type: Grille - components: - - pos: 1.5,-9.5 - parent: 73 - type: Transform -- uid: 147 - type: WallPlastitanium - components: - - pos: -6.5,-13.5 - parent: 73 - type: Transform -- uid: 148 - type: Grille - components: - - pos: -2.5,-9.5 - parent: 73 - type: Transform -- uid: 149 - type: ReinforcedPlasmaWindow - components: - - pos: -1.5,-1.5 - parent: 73 - type: Transform -- uid: 150 - type: WallPlastitanium - components: - - pos: -3.5,-30.5 - parent: 73 - type: Transform -- uid: 151 - type: WallPlastitanium - components: - - pos: 6.5,-15.5 - parent: 73 - type: Transform -- uid: 152 - type: WallPlastitanium - components: - - pos: 5.5,-13.5 - parent: 73 - type: Transform -- uid: 153 - type: ReinforcedPlasmaWindow - components: - - pos: 0.5,-1.5 - parent: 73 - type: Transform -- uid: 154 - type: WallPlastitanium - components: - - pos: -7.5,-15.5 - parent: 73 - type: Transform -- uid: 155 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,-1.5 - parent: 73 - type: Transform -- uid: 156 - type: Grille - components: - - pos: 1.5,-1.5 - parent: 73 - type: Transform -- uid: 157 - type: WallPlastitanium - components: - - pos: 1.5,-14.5 - parent: 73 - type: Transform -- uid: 158 - type: WallPlastitanium - components: - - pos: -4.5,-18.5 - parent: 73 - type: Transform -- uid: 159 - type: ReinforcedPlasmaWindow - components: - - pos: -1.5,-7.5 - parent: 73 - type: Transform -- uid: 160 - type: ShuttersNormalOpen - components: - - pos: -4.5,-2.5 - parent: 73 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 238 - type: SignalReceiver -- uid: 161 - type: WallPlastitanium - components: - - pos: -2.5,-25.5 - parent: 73 - type: Transform -- uid: 162 - type: WallPlastitanium - components: - - pos: 0.5,-25.5 - parent: 73 - type: Transform -- uid: 163 - type: WallPlastitanium - components: - - pos: -1.5,-25.5 - parent: 73 - type: Transform -- uid: 164 - type: WallPlastitanium - components: - - pos: -1.5,-22.5 - parent: 73 - type: Transform -- uid: 165 - type: WallPlastitanium - components: - - pos: 0.5,-22.5 - parent: 73 - type: Transform -- uid: 166 - type: WallPlastitanium - components: - - pos: 1.5,-24.5 - parent: 73 - type: Transform -- uid: 167 - type: WallPlastitanium - components: - - pos: 1.5,-23.5 - parent: 73 - type: Transform -- uid: 168 - type: WallPlastitanium - components: - - pos: 1.5,-22.5 - parent: 73 - type: Transform -- uid: 169 - type: WallPlastitanium - components: - - pos: -2.5,-24.5 - parent: 73 - type: Transform -- uid: 170 - type: WallPlastitanium - components: - - pos: -2.5,-23.5 - parent: 73 - type: Transform -- uid: 171 - type: WallPlastitanium - components: - - pos: -2.5,-22.5 - parent: 73 - type: Transform -- uid: 172 - type: ReinforcedPlasmaWindow - components: - - pos: 4.5,-22.5 - parent: 73 - type: Transform -- uid: 173 - type: ReinforcedPlasmaWindow - components: - - pos: 2.5,-22.5 - parent: 73 - type: Transform -- uid: 174 - type: WallPlastitanium - components: - - pos: 5.5,-22.5 - parent: 73 - type: Transform -- uid: 175 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-21.5 - parent: 73 - type: Transform -- uid: 176 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-19.5 - parent: 73 - type: Transform -- uid: 177 - type: Grille - components: - - pos: -2.5,-21.5 - parent: 73 - type: Transform -- uid: 178 - type: Grille - components: - - pos: -2.5,-19.5 - parent: 73 - type: Transform -- uid: 179 - type: Grille - components: - - pos: 2.5,-22.5 - parent: 73 - type: Transform -- uid: 180 - type: Grille - components: - - pos: 4.5,-22.5 - parent: 73 - type: Transform -- uid: 181 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,-9.5 - parent: 73 - type: Transform -- uid: 182 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,-9.5 - parent: 73 - type: Transform -- uid: 183 - type: WallPlastitanium - components: - - pos: -7.5,-14.5 - parent: 73 - type: Transform -- uid: 184 - type: ComfyChair - components: - - pos: 4.5,-4.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 185 - type: WallPlastitanium - components: - - pos: -7.5,-18.5 - parent: 73 - type: Transform -- uid: 186 - type: Grille - components: - - pos: -1.5,-18.5 - parent: 73 - type: Transform -- uid: 187 - type: Thruster - components: - - pos: -6.5,-2.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 188 - type: Thruster - components: - - pos: 5.5,-2.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 189 - type: ShuttersNormalOpen - components: - - pos: 3.5,-2.5 - parent: 73 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 630 - type: SignalReceiver -- uid: 190 - type: TableReinforced - components: - - pos: -2.5,-13.5 - parent: 73 - type: Transform -- uid: 191 - type: Thruster - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-7.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 192 - type: Thruster - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 193 - type: ShuttersNormalOpen - components: - - pos: 1.5,-1.5 - parent: 73 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 238 - type: SignalReceiver -- uid: 194 - type: BedsheetSyndie - components: - - pos: 3.5,-3.5 - parent: 73 - type: Transform -- uid: 195 - type: WallPlastitanium - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 73 - type: Transform -- uid: 196 - type: WallPlastitanium - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-28.5 - parent: 73 - type: Transform -- uid: 197 - type: WallPlastitanium - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-28.5 - parent: 73 - type: Transform -- uid: 198 - type: WallPlastitanium - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 73 - type: Transform -- uid: 199 - type: WallPlastitanium - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-28.5 - parent: 73 - type: Transform -- uid: 200 - type: WallPlastitanium - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-28.5 - parent: 73 - type: Transform -- uid: 201 - type: AMEShielding - components: - - pos: -6.5,-27.5 - parent: 73 - type: Transform -- uid: 202 - type: AMEShielding - components: - - pos: -5.5,-27.5 - parent: 73 - type: Transform -- uid: 203 - type: AMEShielding - components: - - pos: -4.5,-27.5 - parent: 73 - type: Transform -- uid: 204 - type: CableHV - components: - - pos: -5.5,-27.5 - parent: 73 - type: Transform -- uid: 205 - type: CableHV - components: - - pos: -5.5,-26.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 206 - type: CableHV - components: - - pos: -5.5,-25.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 207 - type: CableHV - components: - - pos: -5.5,-24.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 208 - type: CableHV - components: - - pos: -5.5,-23.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 209 - type: CableHV - components: - - pos: -5.5,-22.5 - parent: 73 - type: Transform -- uid: 210 - type: SMESBasic - components: - - pos: -5.5,-19.5 - parent: 73 - type: Transform -- uid: 211 - type: SMESBasic - components: - - pos: -4.5,-19.5 - parent: 73 - type: Transform -- uid: 212 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: -5.5,-20.5 - parent: 73 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 213 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: -4.5,-20.5 - parent: 73 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 214 - type: CableHV - components: - - pos: -5.5,-20.5 - parent: 73 - type: Transform -- uid: 215 - type: CableHV - components: - - pos: -4.5,-20.5 - parent: 73 - type: Transform -- uid: 216 - type: CableHV - components: - - pos: -5.5,-19.5 - parent: 73 - type: Transform -- uid: 217 - type: CableHV - components: - - pos: -4.5,-19.5 - parent: 73 - type: Transform -- uid: 218 - type: CableHV - components: - - pos: -3.5,-19.5 - parent: 73 - type: Transform -- uid: 219 - type: SubstationBasic - components: - - pos: -3.5,-19.5 - parent: 73 - type: Transform -- uid: 220 - type: APCBasic - components: - - pos: -3.5,-18.5 - parent: 73 - type: Transform -- uid: 221 - type: Grille - components: - - pos: 0.5,-7.5 - parent: 73 - type: Transform -- uid: 222 - type: CableMV - components: - - pos: -3.5,-19.5 - parent: 73 - type: Transform -- uid: 223 - type: CableMV - components: - - pos: -3.5,-18.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 224 - type: CableMV - components: - - pos: -3.5,-17.5 - parent: 73 - type: Transform -- uid: 225 - type: CableMV - components: - - pos: -3.5,-16.5 - parent: 73 - type: Transform -- uid: 226 - type: CableMV - components: - - pos: -2.5,-16.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 227 - type: CableMV - components: - - pos: -0.5,-16.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 228 - type: CableMV - components: - - pos: -1.5,-16.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 229 - type: CableMV - components: - - pos: -0.5,-15.5 - parent: 73 - type: Transform -- uid: 230 - type: CableMV - components: - - pos: -0.5,-14.5 - parent: 73 - type: Transform -- uid: 231 - type: CableMV - components: - - pos: -0.5,-13.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 232 - type: CableMV - components: - - pos: -0.5,-12.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 233 - type: CableMV - components: - - pos: -0.5,-11.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 234 - type: CableMV - components: - - pos: -0.5,-10.5 - parent: 73 - type: Transform -- uid: 235 - type: CableMV - components: - - pos: -0.5,-9.5 - parent: 73 - type: Transform -- uid: 236 - type: CableMV - components: - - pos: -0.5,-8.5 - parent: 73 - type: Transform -- uid: 237 - type: AirlockSecurity - components: - - pos: -0.5,-7.5 - parent: 73 - type: Transform -- uid: 238 - type: SignalButton - components: - - pos: -2.5,-7.5 - parent: 73 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4 - - port: Toggle - uid: 160 - - port: Toggle - uid: 693 - - port: Toggle - uid: 670 - - port: Toggle - uid: 511 - - port: Toggle - uid: 687 - - port: Toggle - uid: 193 - type: SignalTransmitter -- uid: 239 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-21.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 240 - type: CableMV - components: - - pos: -3.5,-20.5 - parent: 73 - type: Transform -- uid: 241 - type: CableMV - components: - - pos: -3.5,-21.5 - parent: 73 - type: Transform -- uid: 242 - type: CableMV - components: - - pos: -4.5,-21.5 - parent: 73 - type: Transform -- uid: 243 - type: CableMV - components: - - pos: -4.5,-22.5 - parent: 73 - type: Transform -- uid: 244 - type: CableMV - components: - - pos: -4.5,-23.5 - parent: 73 - type: Transform -- uid: 245 - type: CableMV - components: - - pos: -4.5,-24.5 - parent: 73 - type: Transform -- uid: 246 - type: CableMV - components: - - pos: -4.5,-25.5 - parent: 73 - type: Transform -- uid: 247 - type: CableMV - components: - - pos: -4.5,-26.5 - parent: 73 - type: Transform -- uid: 248 - type: CableMV - components: - - pos: -4.5,-27.5 - parent: 73 - type: Transform -- uid: 249 - type: CableApcExtension - components: - - pos: -3.5,-18.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 250 - type: CableApcExtension - components: - - pos: -3.5,-17.5 - parent: 73 - type: Transform -- uid: 251 - type: CableApcExtension - components: - - pos: -3.5,-16.5 - parent: 73 - type: Transform -- uid: 252 - type: CableApcExtension - components: - - pos: -4.5,-16.5 - parent: 73 - type: Transform -- uid: 253 - type: CableApcExtension - components: - - pos: -5.5,-16.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 254 - type: CableApcExtension - components: - - pos: -6.5,-16.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 255 - type: CableApcExtension - components: - - pos: -7.5,-16.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 256 - type: CableApcExtension - components: - - pos: -8.5,-16.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 257 - type: CableApcExtension - components: - - pos: -6.5,-15.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 258 - type: CableApcExtension - components: - - pos: -6.5,-17.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 259 - type: CableApcExtension - components: - - pos: -4.5,-15.5 - parent: 73 - type: Transform -- uid: 260 - type: CableApcExtension - components: - - pos: -4.5,-14.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 261 - type: CableApcExtension - components: - - pos: -4.5,-13.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 262 - type: CableApcExtension - components: - - pos: -4.5,-12.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 263 - type: CableApcExtension - components: - - pos: -4.5,-11.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 264 - type: CableApcExtension - components: - - pos: -4.5,-10.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 265 - type: CableApcExtension - components: - - pos: -5.5,-12.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 266 - type: CableApcExtension - components: - - pos: -6.5,-12.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 267 - type: CableApcExtension - components: - - pos: -2.5,-16.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 268 - type: CableApcExtension - components: - - pos: -1.5,-16.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 269 - type: CableApcExtension - components: - - pos: -0.5,-16.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 270 - type: CableApcExtension - components: - - pos: 0.5,-16.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 271 - type: CableApcExtension - components: - - pos: 1.5,-16.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 272 - type: CableApcExtension - components: - - pos: 2.5,-16.5 - parent: 73 - type: Transform -- uid: 273 - type: CableApcExtension - components: - - pos: 3.5,-16.5 - parent: 73 - type: Transform -- uid: 274 - type: CableApcExtension - components: - - pos: 4.5,-16.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 275 - type: CableApcExtension - components: - - pos: 5.5,-16.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 276 - type: CableApcExtension - components: - - pos: 5.5,-15.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 277 - type: CableApcExtension - components: - - pos: 5.5,-17.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 278 - type: CableApcExtension - components: - - pos: 6.5,-16.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 279 - type: CableApcExtension - components: - - pos: 7.5,-16.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 280 - type: CableApcExtension - components: - - pos: 3.5,-15.5 - parent: 73 - type: Transform -- uid: 281 - type: CableApcExtension - components: - - pos: 3.5,-14.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 282 - type: CableApcExtension - components: - - pos: 3.5,-13.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 283 - type: CableApcExtension - components: - - pos: 3.5,-12.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 284 - type: CableApcExtension - components: - - pos: 3.5,-11.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 285 - type: CableApcExtension - components: - - pos: 3.5,-11.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 286 - type: CableApcExtension - components: - - pos: 3.5,-10.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 287 - type: CableApcExtension - components: - - pos: 4.5,-12.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 288 - type: CableApcExtension - components: - - pos: 5.5,-12.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 289 - type: ReinforcedPlasmaWindow - components: - - pos: 0.5,-18.5 - parent: 73 - type: Transform -- uid: 290 - type: CableApcExtension - components: - - pos: -0.5,-6.5 - parent: 73 - type: Transform -- uid: 291 - type: CableApcExtension - components: - - pos: -0.5,-7.5 - parent: 73 - type: Transform -- uid: 292 - type: CableApcExtension - components: - - pos: -0.5,-8.5 - parent: 73 - type: Transform -- uid: 293 - type: CableApcExtension - components: - - pos: -0.5,-9.5 - parent: 73 - type: Transform -- uid: 294 - type: CableApcExtension - components: - - pos: -0.5,-10.5 - parent: 73 - type: Transform -- uid: 295 - type: CableApcExtension - components: - - pos: -0.5,-11.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 296 - type: CableApcExtension - components: - - pos: -0.5,-12.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 297 - type: CableApcExtension - components: - - pos: -0.5,-13.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 298 - type: CableApcExtension - components: - - pos: -0.5,-14.5 - parent: 73 - type: Transform -- uid: 299 - type: CableApcExtension - components: - - pos: -1.5,-12.5 - parent: 73 - type: Transform -- uid: 300 - type: CableApcExtension - components: - - pos: 0.5,-12.5 - parent: 73 - type: Transform -- uid: 301 - type: CableApcExtension - components: - - pos: -0.5,-5.5 - parent: 73 - type: Transform -- uid: 302 - type: CableApcExtension - components: - - pos: 0.5,-5.5 - parent: 73 - type: Transform -- uid: 303 - type: CableApcExtension - components: - - pos: 1.5,-5.5 - parent: 73 - type: Transform -- uid: 304 - type: CableApcExtension - components: - - pos: 2.5,-5.5 - parent: 73 - type: Transform -- uid: 305 - type: CableApcExtension - components: - - pos: 3.5,-5.5 - parent: 73 - type: Transform -- uid: 306 - type: CableApcExtension - components: - - pos: 3.5,-4.5 - parent: 73 - type: Transform -- uid: 307 - type: CableApcExtension - components: - - pos: -0.5,-4.5 - parent: 73 - type: Transform -- uid: 308 - type: CableApcExtension - components: - - pos: -0.5,-3.5 - parent: 73 - type: Transform -- uid: 309 - type: CableApcExtension - components: - - pos: -0.5,-2.5 - parent: 73 - type: Transform -- uid: 310 - type: CableApcExtension - components: - - pos: 0.5,-2.5 - parent: 73 - type: Transform -- uid: 311 - type: CableApcExtension - components: - - pos: 1.5,-2.5 - parent: 73 - type: Transform -- uid: 312 - type: CableApcExtension - components: - - pos: -1.5,-2.5 - parent: 73 - type: Transform -- uid: 313 - type: CableApcExtension - components: - - pos: -2.5,-2.5 - parent: 73 - type: Transform -- uid: 314 - type: CableApcExtension - components: - - pos: -1.5,-4.5 - parent: 73 - type: Transform -- uid: 315 - type: CableApcExtension - components: - - pos: -3.5,-4.5 - parent: 73 - type: Transform -- uid: 316 - type: CableApcExtension - components: - - pos: -2.5,-4.5 - parent: 73 - type: Transform -- uid: 317 - type: CableApcExtension - components: - - pos: -4.5,-4.5 - parent: 73 - type: Transform -- uid: 318 - type: CableApcExtension - components: - - pos: -5.5,-4.5 - parent: 73 - type: Transform -- uid: 319 - type: CableApcExtension - components: - - pos: -5.5,-5.5 - parent: 73 - type: Transform -- uid: 320 - type: CableApcExtension - components: - - pos: -5.5,-6.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 321 - type: CableApcExtension - components: - - pos: -5.5,-3.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 322 - type: CableApcExtension - components: - - pos: 4.5,-4.5 - parent: 73 - type: Transform -- uid: 323 - type: CableApcExtension - components: - - pos: 4.5,-3.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 324 - type: CableApcExtension - components: - - pos: 3.5,-6.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 325 - type: CableApcExtension - components: - - pos: -0.5,-17.5 - parent: 73 - type: Transform -- uid: 326 - type: CableApcExtension - components: - - pos: -3.5,-20.5 - parent: 73 - type: Transform -- uid: 327 - type: CableApcExtension - components: - - pos: -3.5,-19.5 - parent: 73 - type: Transform -- uid: 328 - type: CableApcExtension - components: - - pos: -3.5,-21.5 - parent: 73 - type: Transform -- uid: 329 - type: CableApcExtension - components: - - pos: -4.5,-21.5 - parent: 73 - type: Transform -- uid: 330 - type: CableApcExtension - components: - - pos: -4.5,-22.5 - parent: 73 - type: Transform -- uid: 331 - type: CableApcExtension - components: - - pos: -4.5,-23.5 - parent: 73 - type: Transform -- uid: 332 - type: CableApcExtension - components: - - pos: -4.5,-24.5 - parent: 73 - type: Transform -- uid: 333 - type: CableApcExtension - components: - - pos: -4.5,-25.5 - parent: 73 - type: Transform -- uid: 334 - type: CableApcExtension - components: - - pos: -4.5,-25.5 - parent: 73 - type: Transform -- uid: 335 - type: CableApcExtension - components: - - pos: -4.5,-26.5 - parent: 73 - type: Transform -- uid: 336 - type: CableApcExtension - components: - - pos: -4.5,-27.5 - parent: 73 - type: Transform -- uid: 337 - type: CableApcExtension - components: - - pos: -5.5,-27.5 - parent: 73 - type: Transform -- uid: 338 - type: CableApcExtension - components: - - pos: -6.5,-27.5 - parent: 73 - type: Transform -- uid: 339 - type: CableApcExtension - components: - - pos: -6.5,-26.5 - parent: 73 - type: Transform -- uid: 340 - type: CableApcExtension - components: - - pos: -6.5,-25.5 - parent: 73 - type: Transform -- uid: 341 - type: CableApcExtension - components: - - pos: -6.5,-24.5 - parent: 73 - type: Transform -- uid: 342 - type: CableApcExtension - components: - - pos: -6.5,-23.5 - parent: 73 - type: Transform -- uid: 343 - type: CableApcExtension - components: - - pos: -6.5,-22.5 - parent: 73 - type: Transform -- uid: 344 - type: CableApcExtension - components: - - pos: -2.5,-20.5 - parent: 73 - type: Transform -- uid: 345 - type: CableApcExtension - components: - - pos: -1.5,-20.5 - parent: 73 - type: Transform -- uid: 346 - type: CableApcExtension - components: - - pos: -0.5,-20.5 - parent: 73 - type: Transform -- uid: 347 - type: CableApcExtension - components: - - pos: -0.5,-21.5 - parent: 73 - type: Transform -- uid: 348 - type: CableApcExtension - components: - - pos: -0.5,-23.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 349 - type: CableApcExtension - components: - - pos: -0.5,-22.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 350 - type: CableApcExtension - components: - - pos: -0.5,-24.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 351 - type: CableApcExtension - components: - - pos: -0.5,-25.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 352 - type: CableApcExtension - components: - - pos: -0.5,-19.5 - parent: 73 - type: Transform -- uid: 353 - type: CableApcExtension - components: - - pos: 0.5,-20.5 - parent: 73 - type: Transform -- uid: 354 - type: CableApcExtension - components: - - pos: 1.5,-20.5 - parent: 73 - type: Transform -- uid: 355 - type: CableApcExtension - components: - - pos: 2.5,-20.5 - parent: 73 - type: Transform -- uid: 356 - type: CableApcExtension - components: - - pos: 3.5,-20.5 - parent: 73 - type: Transform -- uid: 357 - type: CableApcExtension - components: - - pos: 4.5,-20.5 - parent: 73 - type: Transform -- uid: 358 - type: CableApcExtension - components: - - pos: 3.5,-21.5 - parent: 73 - type: Transform -- uid: 359 - type: CableApcExtension - components: - - pos: 3.5,-22.5 - parent: 73 - type: Transform -- uid: 360 - type: CableApcExtension - components: - - pos: 3.5,-23.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 361 - type: CableApcExtension - components: - - pos: 3.5,-24.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 362 - type: CableApcExtension - components: - - pos: 3.5,-25.5 - parent: 73 - type: Transform -- uid: 363 - type: CableApcExtension - components: - - pos: 3.5,-26.5 - parent: 73 - type: Transform -- uid: 364 - type: CableApcExtension - components: - - pos: 3.5,-27.5 - parent: 73 - type: Transform -- uid: 365 - type: CableApcExtension - components: - - pos: 4.5,-27.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 366 - type: CableApcExtension - components: - - pos: 5.5,-27.5 - parent: 73 - type: Transform -- uid: 367 - type: CableApcExtension - components: - - pos: 5.5,-26.5 - parent: 73 - type: Transform -- uid: 368 - type: CableApcExtension - components: - - pos: 5.5,-25.5 - parent: 73 - type: Transform -- uid: 369 - type: CableApcExtension - components: - - pos: 5.5,-24.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 370 - type: CableApcExtension - components: - - pos: 5.5,-23.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 371 - type: AirlockSecurityGlass - components: - - name: syndicate airlock - type: MetaData - - pos: -2.5,-20.5 - parent: 73 - type: Transform -- uid: 372 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-23.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 373 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-26.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 374 - type: Poweredlight - components: - - pos: -4.5,-19.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 375 - type: AirlockSecurity - components: - - pos: -0.5,-14.5 - parent: 73 - type: Transform -- uid: 376 - type: NitrogenTankFilled - components: - - pos: 4.633928,-12.616316 - parent: 73 - type: Transform -- uid: 377 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-13.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 378 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 379 - type: WallPlastitanium - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 73 - type: Transform -- uid: 380 - type: WallPlastitanium - components: - - pos: 4.5,-27.5 - parent: 73 - type: Transform -- uid: 381 - type: WallPlastitanium - components: - - pos: 4.5,-26.5 - parent: 73 - type: Transform -- uid: 382 - type: WallPlastitanium - components: - - pos: 4.5,-25.5 - parent: 73 - type: Transform -- uid: 383 - type: ReinforcedPlasmaWindow - components: - - pos: 3.5,-25.5 - parent: 73 - type: Transform -- uid: 384 - type: ReinforcedPlasmaWindow - components: - - pos: 5.5,-25.5 - parent: 73 - type: Transform -- uid: 385 - type: Grille - components: - - pos: 3.5,-25.5 - parent: 73 - type: Transform -- uid: 386 - type: Grille - components: - - pos: 5.5,-25.5 - parent: 73 - type: Transform -- uid: 387 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 3.5,-26.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 388 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 5.5,-26.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 389 - type: GasMinerOxygen - components: - - rot: 3.141592653589793 rad - pos: 3.5,-27.5 - parent: 73 - type: Transform -- uid: 390 - type: GasMinerNitrogen - components: - - rot: 3.141592653589793 rad - pos: 5.5,-27.5 - parent: 73 - type: Transform -- uid: 391 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-25.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 392 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-25.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 393 - type: GasPipeBend - components: - - pos: 5.5,-24.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 394 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-24.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 395 - type: GasMixer - components: - - name: O2+N2 mixer - type: MetaData - - rot: 3.141592653589793 rad - pos: 3.5,-24.5 - parent: 73 - type: Transform - - inletTwoConcentration: 0.78 - inletOneConcentration: 0.22 - type: GasMixer - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 396 - type: GasPipeFourway - components: - - pos: 3.5,-23.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 397 - type: GasPipeStraight - components: - - pos: 3.5,-22.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 398 - type: GasPipeStraight - components: - - pos: 3.5,-21.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 399 - type: GasPipeBend - components: - - pos: 3.5,-20.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 400 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-20.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 401 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 402 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-20.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 403 - type: GasPipeFourway - components: - - pos: -0.5,-20.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 404 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-20.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 405 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-20.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 406 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-20.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 407 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-20.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 408 - type: GasPipeStraight - components: - - pos: -0.5,-19.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 409 - type: GasPipeStraight - components: - - pos: -0.5,-18.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 410 - type: GasPipeStraight - components: - - pos: -0.5,-17.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 411 - type: GasPipeFourway - components: - - pos: -0.5,-16.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 412 - type: GasPipeStraight - components: - - pos: -0.5,-15.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 413 - type: GasPipeStraight - components: - - pos: -0.5,-14.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 414 - type: GasPipeStraight - components: - - pos: -0.5,-13.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 415 - type: GasPipeStraight - components: - - pos: -0.5,-12.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 416 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-11.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 417 - type: GasPipeStraight - components: - - pos: -0.5,-10.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 418 - type: GasPipeStraight - components: - - pos: -0.5,-9.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 419 - type: GasPipeStraight - components: - - pos: -0.5,-8.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 420 - type: GasPipeStraight - components: - - pos: -0.5,-7.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 421 - type: GasPipeStraight - components: - - pos: -0.5,-6.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 422 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 73 - type: Transform -- uid: 423 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-5.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 424 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 425 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 426 - type: ClothingOuterHardsuitSyndicate - components: - - pos: -6.5,-17.5 - parent: 73 - type: Transform -- uid: 427 - type: GasPipeStraight - components: - - pos: 0.5,-18.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 428 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-11.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 429 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-16.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 430 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -0.5,-21.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 431 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-23.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 432 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -4.5,-21.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 433 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 434 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-16.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 435 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-16.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 436 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-16.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 437 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-16.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 438 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-16.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 439 - type: AirlockShuttle - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-16.5 - parent: 73 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 440 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-16.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 441 - type: Catwalk - components: - - pos: -8.5,-16.5 - parent: 73 - type: Transform -- uid: 442 - type: AirlockExternal - components: - - pos: -0.5,-25.5 - parent: 73 - type: Transform -- uid: 443 - type: AirlockExternal - components: - - pos: 3.5,-10.5 - parent: 73 - type: Transform -- uid: 444 - type: AirlockExternal - components: - - pos: -4.5,-10.5 - parent: 73 - type: Transform -- uid: 445 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 1.5,-21.5 - parent: 73 - type: Transform -- uid: 446 - type: AirlockExternalGlass - components: - - pos: 4.5,-16.5 - parent: 73 - type: Transform -- uid: 447 - type: AirlockExternalGlass - components: - - pos: -4.5,-14.5 - parent: 73 - type: Transform -- uid: 448 - type: AirlockExternalGlass - components: - - pos: -0.5,-22.5 - parent: 73 - type: Transform -- uid: 449 - type: AirlockExternalGlass - components: - - pos: 3.5,-14.5 - parent: 73 - type: Transform -- uid: 450 - type: OxygenTankFilled - components: - - pos: 4.399553,-12.522566 - parent: 73 - type: Transform -- uid: 451 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-19.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 452 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-19.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 453 - type: GasPressurePump - components: - - name: waste pump - type: MetaData - - rot: 1.5707963267948966 rad - pos: 4.5,-19.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 454 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-19.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 455 - type: GasPipeTJunction - components: - - pos: 2.5,-19.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 456 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-19.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 457 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-19.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 458 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-6.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 459 - type: GasPipeFourway - components: - - pos: 0.5,-17.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 460 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-17.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 461 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-17.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 462 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-17.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 463 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-17.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 464 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-17.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 465 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-17.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 466 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-16.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 467 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-15.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 468 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 469 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 470 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-12.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 471 - type: GasPipeStraight - components: - - pos: 0.5,-11.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 472 - type: GasPipeStraight - components: - - pos: 0.5,-10.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 473 - type: GasPipeStraight - components: - - pos: 0.5,-9.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 474 - type: GasPipeBend - components: - - pos: 0.5,-8.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 475 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 476 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -1.5,-8.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 477 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-7.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 478 - type: FoodPizzaMeat - components: - - pos: 1.4768602,-21.281406 - parent: 73 - type: Transform -- uid: 479 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,-15.5 - parent: 73 - type: Transform -- uid: 480 - type: AtmosDeviceFanTiny - components: - - pos: 8.5,-16.5 - parent: 73 - type: Transform -- uid: 481 - type: WallPlastitanium - components: - - pos: 2.5,-4.5 - parent: 73 - type: Transform -- uid: 482 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 483 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 484 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-12.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 485 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-17.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 486 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 2.5,-20.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 487 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-17.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 488 - type: GasPipeStraight - components: - - pos: 0.5,-20.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 489 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-21.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 490 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-21.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 491 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 492 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 493 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 494 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-19.5 - parent: 73 - type: Transform -- uid: 495 - type: AirlockSecurityGlass - components: - - pos: 3.5,-22.5 - parent: 73 - type: Transform -- uid: 496 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-27.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 497 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-27.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 498 - type: StorageCanister - components: - - pos: 2.5,-23.5 - parent: 73 - type: Transform -- uid: 499 - type: TableWood - components: - - pos: 4.5,-5.5 - parent: 73 - type: Transform -- uid: 500 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-8.5 - parent: 73 - type: Transform -- uid: 501 - type: AtmosDeviceFanTiny - components: - - pos: 3.5,-10.5 - parent: 73 - type: Transform -- uid: 502 - type: PoweredSmallLight - components: - - pos: 6.5,-16.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 503 - type: Poweredlight - components: - - pos: 2.5,-15.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 504 - type: Poweredlight - components: - - pos: -3.5,-15.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 505 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-13.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 506 - type: ReinforcedPlasmaWindow - components: - - pos: 2.5,-12.5 - parent: 73 - type: Transform -- uid: 507 - type: PoweredSmallLight - components: - - pos: -7.5,-16.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 508 - type: TableReinforced - components: - - pos: -1.5,-3.5 - parent: 73 - type: Transform -- uid: 509 - type: ReinforcedPlasmaWindow - components: - - pos: -3.5,-12.5 - parent: 73 - type: Transform -- uid: 510 - type: ReinforcedPlasmaWindow - components: - - pos: 0.5,-7.5 - parent: 73 - type: Transform -- uid: 511 - type: ShuttersNormalOpen - components: - - pos: -0.5,-1.5 - parent: 73 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 238 - type: SignalReceiver -- uid: 512 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-5.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 513 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-24.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 514 - type: WallPlastitanium - components: - - pos: 3.5,-6.5 - parent: 73 - type: Transform -- uid: 515 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 516 - type: AtmosFixOxygenMarker - components: - - pos: 3.5,-26.5 - parent: 73 - type: Transform -- uid: 517 - type: AtmosFixNitrogenMarker - components: - - pos: 5.5,-26.5 - parent: 73 - type: Transform -- uid: 518 - type: WarningO2 - components: - - pos: 2.5,-25.5 - parent: 73 - type: Transform -- uid: 519 - type: WarningN2 - components: - - pos: 4.5,-25.5 - parent: 73 - type: Transform -- uid: 520 - type: WarningWaste - components: - - pos: 4.5,-18.5 - parent: 73 - type: Transform -- uid: 521 - type: SignElectricalMed - components: - - pos: -2.5,-18.5 - parent: 73 - type: Transform -- uid: 522 - type: SignNosmoking - components: - - pos: 5.5,-22.5 - parent: 73 - type: Transform -- uid: 523 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-23.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 524 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 2.5,-24.5 - parent: 73 - type: Transform -- uid: 525 - type: Rack - components: - - pos: 5.5,-23.5 - parent: 73 - type: Transform -- uid: 526 - type: SyringeInaprovaline - components: - - pos: -3.510837,-4.3787546 - parent: 73 - type: Transform -- uid: 527 - type: Table - components: - - pos: 3.5,-19.5 - parent: 73 - type: Transform -- uid: 528 - type: Table - components: - - pos: 2.5,-19.5 - parent: 73 - type: Transform -- uid: 529 - type: Table - components: - - pos: 1.5,-19.5 - parent: 73 - type: Transform -- uid: 530 - type: KitchenMicrowave - components: - - pos: 3.5,-19.5 - parent: 73 - type: Transform -- uid: 531 - type: FoodBoxDonkpocketPizza - components: - - pos: 2.7185502,-19.320925 - parent: 73 - type: Transform -- uid: 532 - type: TableReinforced - components: - - pos: -2.5,-2.5 - parent: 73 - type: Transform -- uid: 533 - type: MedkitCombatFilled - components: - - pos: -3.401462,-3.5350046 - parent: 73 - type: Transform -- uid: 534 - type: PosterContrabandEnergySwords - components: - - pos: 2.5,-18.5 - parent: 73 - type: Transform -- uid: 535 - type: soda_dispenser - components: - - pos: 1.5,-19.5 - parent: 73 - type: Transform -- uid: 536 - type: SyringeInaprovaline - components: - - pos: -3.510837,-4.0193796 - parent: 73 - type: Transform -- uid: 537 - type: DrinkGlass - components: - - pos: 2.0779252,-19.21155 - parent: 73 - type: Transform -- uid: 538 - type: DrinkGlass - components: - - pos: 2.3123002,-19.21155 - parent: 73 - type: Transform -- uid: 539 - type: DrinkMugDog - components: - - pos: 2.2843437,-19.542192 - parent: 73 - type: Transform -- uid: 540 - type: DrinkMugMetal - components: - - pos: 2.0968437,-19.526567 - parent: 73 - type: Transform -- uid: 541 - type: DrinkVacuumFlask - components: - - pos: 5.6435027,-21.180143 - parent: 73 - type: Transform -- uid: 542 - type: DrinkVacuumFlask - components: - - pos: 5.7372527,-21.398893 - parent: 73 - type: Transform -- uid: 543 - type: Catwalk - components: - - pos: -1.5,-16.5 - parent: 73 - type: Transform -- uid: 544 - type: KnifePlastic - components: - - pos: 5.3509636,-21.445768 - parent: 73 - type: Transform -- uid: 545 - type: Wrench - components: - - pos: 5.4749,-23.512577 - parent: 73 - type: Transform -- uid: 546 - type: Wrench - components: - - pos: 5.63115,-23.481327 - parent: 73 - type: Transform -- uid: 547 - type: Grille - components: - - pos: 0.5,-18.5 - parent: 73 - type: Transform -- uid: 548 - type: Catwalk - components: - - pos: -2.5,-16.5 - parent: 73 - type: Transform -- uid: 549 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 73 - type: Transform -- uid: 550 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: 4.5,-12.5 - parent: 73 - type: Transform -- uid: 551 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: -1.6924903,-23.407444 - parent: 73 - type: Transform -- uid: 552 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: -1.4112403,-23.458082 - parent: 73 - type: Transform -- uid: 553 - type: OxygenCanister - components: - - pos: -1.5,-24.5 - parent: 73 - type: Transform -- uid: 554 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: -5.5,-12.5 - parent: 73 - type: Transform -- uid: 555 - type: AtmosDeviceFanTiny - components: - - pos: -9.5,-16.5 - parent: 73 - type: Transform -- uid: 556 - type: SyndicateComputerComms - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 73 - type: Transform -- uid: 557 - type: ReinforcedPlasmaWindow - components: - - pos: -1.5,-18.5 - parent: 73 - type: Transform -- uid: 558 - type: Rack - components: - - pos: -1.5,-23.5 - parent: 73 - type: Transform -- uid: 559 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 73 - type: Transform -- uid: 560 - type: Gyroscope - components: - - pos: -5.5,-13.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 561 - type: AtmosDeviceFanTiny - components: - - pos: -4.5,-10.5 - parent: 73 - type: Transform -- uid: 562 - type: Gyroscope - components: - - pos: 4.5,-13.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 563 - type: ClothingNeckMantleHOS - components: - - desc: Looted from a fallen enemy, the commander earned this in battle. - name: commander mantle - type: MetaData - - pos: 4.5259347,-5.370554 - parent: 73 - type: Transform -- uid: 564 - type: Bed - components: - - pos: 3.5,-3.5 - parent: 73 - type: Transform -- uid: 565 - type: WeaponTurretSyndicate - components: - - flags: SessionSpecific - type: MetaData - - pos: -1.5,-19.5 - parent: 73 - type: Transform -- uid: 566 - type: WallPlastitanium - components: - - pos: 2.5,-30.5 - parent: 73 - type: Transform -- uid: 567 - type: Rack - components: - - pos: 5.5,-17.5 - parent: 73 - type: Transform -- uid: 568 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 2.5,-14.5 - parent: 73 - type: Transform -- uid: 569 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: -5.5,-17.5 - parent: 73 - type: Transform -- uid: 570 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: -3.5,-14.5 - parent: 73 - type: Transform -- uid: 571 - type: AtmosDeviceFanTiny - components: - - pos: -0.5,-25.5 - parent: 73 - type: Transform -- uid: 572 - type: SignDirectionalEvac - components: - - pos: 0.5,-22.5 - parent: 73 - type: Transform -- uid: 573 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 73 - type: Transform -- uid: 574 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-15.5 - parent: 73 - type: Transform -- uid: 575 - type: Ointment - components: - - pos: -3.651462,-4.5193796 - parent: 73 - type: Transform -- uid: 576 - type: Rack - components: - - pos: -6.5,-17.5 - parent: 73 - type: Transform -- uid: 577 - type: ShuttersNormalOpen - components: - - pos: 5.5,-19.5 - parent: 73 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 578 - type: SignalReceiver -- uid: 578 - type: SignalButton - components: - - pos: 5.5,-20.5 - parent: 73 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 577 - type: SignalTransmitter -- uid: 579 - type: Catwalk - components: - - pos: -5.5,-25.5 - parent: 73 - type: Transform -- uid: 580 - type: Catwalk - components: - - pos: -5.5,-24.5 - parent: 73 - type: Transform -- uid: 581 - type: Catwalk - components: - - pos: -5.5,-23.5 - parent: 73 - type: Transform -- uid: 582 - type: Catwalk - components: - - pos: 4.5,-24.5 - parent: 73 - type: Transform -- uid: 583 - type: Catwalk - components: - - pos: 5.5,-24.5 - parent: 73 - type: Transform -- uid: 584 - type: MedkitCombatFilled - components: - - pos: -3.557712,-3.4256296 - parent: 73 - type: Transform -- uid: 585 - type: Ointment - components: - - pos: -3.667087,-4.2225046 - parent: 73 - type: Transform -- uid: 586 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-19.5 - parent: 73 - type: Transform -- uid: 587 - type: Catwalk - components: - - pos: -6.5,-16.5 - parent: 73 - type: Transform -- uid: 588 - type: Catwalk - components: - - pos: -7.5,-16.5 - parent: 73 - type: Transform -- uid: 589 - type: Catwalk - components: - - pos: -4.5,-13.5 - parent: 73 - type: Transform -- uid: 590 - type: Catwalk - components: - - pos: -4.5,-12.5 - parent: 73 - type: Transform -- uid: 591 - type: Catwalk - components: - - pos: -4.5,-11.5 - parent: 73 - type: Transform -- uid: 592 - type: Catwalk - components: - - pos: 3.5,-13.5 - parent: 73 - type: Transform -- uid: 593 - type: Catwalk - components: - - pos: 3.5,-12.5 - parent: 73 - type: Transform -- uid: 594 - type: Catwalk - components: - - pos: 3.5,-11.5 - parent: 73 - type: Transform -- uid: 595 - type: Catwalk - components: - - pos: 5.5,-16.5 - parent: 73 - type: Transform -- uid: 596 - type: Catwalk - components: - - pos: 6.5,-16.5 - parent: 73 - type: Transform -- uid: 597 - type: Catwalk - components: - - pos: -0.5,-24.5 - parent: 73 - type: Transform -- uid: 598 - type: Catwalk - components: - - pos: -0.5,-23.5 - parent: 73 - type: Transform -- uid: 599 - type: ClosetEmergencyFilledRandom - components: - - pos: 0.5,-23.5 - parent: 73 - type: Transform -- uid: 600 - type: ClosetEmergencyFilledRandom - components: - - pos: 0.5,-24.5 - parent: 73 - type: Transform -- uid: 601 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 602 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-9.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 603 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 604 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 605 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 606 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 607 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 73 - type: Transform -- uid: 608 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 73 - type: Transform -- uid: 609 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 73 - type: Transform -- uid: 610 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-19.5 - parent: 73 - type: Transform -- uid: 611 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-19.5 - parent: 73 - type: Transform -- uid: 612 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-19.5 - parent: 73 - type: Transform -- uid: 613 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-19.5 - parent: 73 - type: Transform -- uid: 614 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-19.5 - parent: 73 - type: Transform -- uid: 615 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-19.5 - parent: 73 - type: Transform -- uid: 616 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-19.5 - parent: 73 - type: Transform -- uid: 617 - type: DisposalPipe - components: - - pos: -0.5,-18.5 - parent: 73 - type: Transform -- uid: 618 - type: DisposalPipe - components: - - pos: -0.5,-17.5 - parent: 73 - type: Transform -- uid: 619 - type: DisposalPipe - components: - - pos: -0.5,-16.5 - parent: 73 - type: Transform -- uid: 620 - type: DisposalPipe - components: - - pos: -0.5,-15.5 - parent: 73 - type: Transform -- uid: 621 - type: DisposalPipe - components: - - pos: -0.5,-14.5 - parent: 73 - type: Transform -- uid: 622 - type: DisposalPipe - components: - - pos: -0.5,-13.5 - parent: 73 - type: Transform -- uid: 623 - type: DisposalPipe - components: - - pos: -0.5,-12.5 - parent: 73 - type: Transform -- uid: 624 - type: DisposalPipe - components: - - pos: -0.5,-11.5 - parent: 73 - type: Transform -- uid: 625 - type: DisposalPipe - components: - - pos: -0.5,-10.5 - parent: 73 - type: Transform -- uid: 626 - type: DisposalPipe - components: - - pos: -0.5,-9.5 - parent: 73 - type: Transform -- uid: 627 - type: DisposalPipe - components: - - pos: -0.5,-8.5 - parent: 73 - type: Transform -- uid: 628 - type: DisposalPipe - components: - - pos: -0.5,-7.5 - parent: 73 - type: Transform -- uid: 629 - type: DisposalUnit - components: - - pos: 1.5,-6.5 - parent: 73 - type: Transform -- uid: 630 - type: SignalButton - components: - - pos: 3.5,-6.5 - parent: 73 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 189 - - port: Toggle - uid: 38 - type: SignalTransmitter -- uid: 631 - type: Catwalk - components: - - pos: -0.5,-16.5 - parent: 73 - type: Transform -- uid: 632 - type: CableApcExtension - components: - - pos: 0.5,-8.5 - parent: 73 - type: Transform -- uid: 633 - type: Rack - components: - - pos: -6.5,-22.5 - parent: 73 - type: Transform -- uid: 634 - type: Catwalk - components: - - pos: 5.5,-9.5 - parent: 73 - type: Transform -- uid: 635 - type: Multitool - components: - - pos: -6.585132,-21.443342 - parent: 73 - type: Transform -- uid: 636 - type: WallPlastitanium - components: - - pos: 3.5,-29.5 - parent: 73 - type: Transform -- uid: 637 - type: WallPlastitanium - components: - - pos: -5.5,-29.5 - parent: 73 - type: Transform -- uid: 638 - type: WallPlastitanium - components: - - pos: 4.5,-29.5 - parent: 73 - type: Transform -- uid: 639 - type: WallPlastitanium - components: - - pos: -4.5,-29.5 - parent: 73 - type: Transform -- uid: 640 - type: Catwalk - components: - - pos: 3.5,-9.5 - parent: 73 - type: Transform -- uid: 641 - type: WallPlastitanium - components: - - pos: 5.5,-29.5 - parent: 73 - type: Transform -- uid: 642 - type: Catwalk - components: - - pos: 0.5,-16.5 - parent: 73 - type: Transform -- uid: 643 - type: CableMV - components: - - pos: 1.5,-8.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 644 - type: Catwalk - components: - - pos: -2.5,-30.5 - parent: 73 - type: Transform -- uid: 645 - type: Catwalk - components: - - pos: 0.5,-26.5 - parent: 73 - type: Transform -- uid: 646 - type: AirlockSecurityGlass - components: - - pos: -0.5,-18.5 - parent: 73 - type: Transform -- uid: 647 - type: Catwalk - components: - - pos: 1.5,-27.5 - parent: 73 - type: Transform -- uid: 648 - type: Catwalk - components: - - pos: -2.5,-27.5 - parent: 73 - type: Transform -- uid: 649 - type: Catwalk - components: - - pos: -2.5,-29.5 - parent: 73 - type: Transform -- uid: 650 - type: CableApcExtension - components: - - pos: 1.5,-26.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 651 - type: AMEJar - components: - - pos: -6.7039676,-22.42969 - parent: 73 - type: Transform -- uid: 652 - type: AMEJar - components: - - pos: -6.5633426,-22.42969 - parent: 73 - type: Transform -- uid: 653 - type: AMEJar - components: - - pos: -6.4070926,-22.42969 - parent: 73 - type: Transform -- uid: 654 - type: Catwalk - components: - - pos: 1.5,-26.5 - parent: 73 - type: Transform -- uid: 655 - type: AMEJar - components: - - pos: -6.2820926,-22.42969 - parent: 73 - type: Transform -- uid: 656 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,-15.5 - parent: 73 - type: Transform -- uid: 657 - type: Thruster - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 658 - type: Thruster - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 659 - type: CableApcExtension - components: - - pos: 1.5,-8.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 660 - type: HospitalCurtainsOpen - components: - - pos: 3.5,-3.5 - parent: 73 - type: Transform -- uid: 661 - type: CableMV - components: - - pos: 0.5,-8.5 - parent: 73 - type: Transform -- uid: 662 - type: Catwalk - components: - - pos: 4.5,-9.5 - parent: 73 - type: Transform -- uid: 663 - type: CableHV - components: - - pos: -2.5,-20.5 - parent: 73 - type: Transform -- uid: 664 - type: CableHV - components: - - pos: -2.5,-19.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 665 - type: ComputerIFFSyndicate - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 73 - type: Transform -- uid: 666 - type: Catwalk - components: - - pos: -0.5,-26.5 - parent: 73 - type: Transform -- uid: 667 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 - parent: 73 - type: Transform -- uid: 668 - type: ComputerPowerMonitoring - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 73 - type: Transform -- uid: 669 - type: ClothingBackpackDuffelSyndicateFilledMedical - components: - - pos: -3.5044222,-6.293252 - parent: 73 - type: Transform -- uid: 670 - type: ShuttersNormalOpen - components: - - pos: -1.5,-1.5 - parent: 73 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 238 - type: SignalReceiver -- uid: 671 - type: CableApcExtension - components: - - pos: -0.5,-26.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 672 - type: TablePlasmaGlass - components: - - pos: -3.5,-6.5 - parent: 73 - type: Transform -- uid: 673 - type: MedicalBed - components: - - pos: -4.5,-3.5 - parent: 73 - type: Transform -- uid: 674 - type: Catwalk - components: - - pos: 1.5,-28.5 - parent: 73 - type: Transform -- uid: 675 - type: Catwalk - components: - - pos: 1.5,-29.5 - parent: 73 - type: Transform -- uid: 676 - type: BedsheetMedical - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-3.5 - parent: 73 - type: Transform -- uid: 677 - type: WallPlastitanium - components: - - pos: -3.5,-29.5 - parent: 73 - type: Transform -- uid: 678 - type: WallPlastitanium - components: - - pos: 2.5,-29.5 - parent: 73 - type: Transform -- uid: 679 - type: WeaponTurretSyndicate - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,-17.5 - parent: 73 - type: Transform -- uid: 680 - type: Catwalk - components: - - pos: 1.5,-30.5 - parent: 73 - type: Transform -- uid: 681 - type: Catwalk - components: - - pos: -1.5,-26.5 - parent: 73 - type: Transform -- uid: 682 - type: DisposalUnit - components: - - pos: 0.5,-19.5 - parent: 73 - type: Transform -- uid: 683 - type: WallPlastitanium - components: - - pos: 6.5,-14.5 - parent: 73 - type: Transform -- uid: 684 - type: NitrogenTankFilled - components: - - pos: -5.397322,-12.569441 - parent: 73 - type: Transform -- uid: 685 - type: Catwalk - components: - - pos: -3.5,-9.5 - parent: 73 - type: Transform -- uid: 686 - type: Catwalk - components: - - pos: 1.5,-16.5 - parent: 73 - type: Transform -- uid: 687 - type: ShuttersNormalOpen - components: - - pos: 0.5,-1.5 - parent: 73 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 238 - type: SignalReceiver -- uid: 688 - type: GravityGeneratorMini - components: - - pos: -3.5,-24.5 - parent: 73 - type: Transform -- uid: 689 - type: ClothingHeadHelmetSyndicate - components: - - pos: -6.5,-17.5 - parent: 73 - type: Transform -- uid: 690 - type: WeaponTurretSyndicate - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,-3.5 - parent: 73 - type: Transform -- uid: 691 - type: CableApcExtension - components: - - pos: -1.5,-26.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 692 - type: ClothingHeadHelmetSyndicate - components: - - pos: 5.5,-17.5 - parent: 73 - type: Transform -- uid: 693 - type: ShuttersNormalOpen - components: - - pos: -2.5,-1.5 - parent: 73 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 238 - type: SignalReceiver -- uid: 694 - type: AirlockExternalGlass - components: - - pos: -5.5,-16.5 - parent: 73 - type: Transform -- uid: 695 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-22.5 - parent: 73 - type: Transform -- uid: 696 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-21.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 697 - type: ClothingOuterHardsuitSyndicate - components: - - pos: 5.5,-17.5 - parent: 73 - type: Transform -- uid: 698 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 73 - type: Transform -- uid: 699 - type: AMEShielding - components: - - pos: -5.5,-26.5 - parent: 73 - type: Transform -- uid: 700 - type: AMEShielding - components: - - pos: -4.5,-26.5 - parent: 73 - type: Transform -- uid: 701 - type: Catwalk - components: - - pos: 2.5,-9.5 - parent: 73 - type: Transform -- uid: 702 - type: TablePlasmaGlass - components: - - pos: -3.5,-3.5 - parent: 73 - type: Transform -- uid: 703 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: -5.678572,-12.319441 - parent: 73 - type: Transform -- uid: 704 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-5.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 705 - type: ClothingMaskGasSyndicate - components: - - pos: 0.94071925,-13.482027 - parent: 73 - type: Transform -- uid: 706 - type: ClothingHeadsetAltSyndicate - components: - - pos: 1.3157192,-13.513277 - parent: 73 - type: Transform -- uid: 707 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: 4.305803,-12.272566 - parent: 73 - type: Transform -- uid: 708 - type: GasVentPump - components: - - pos: 0.5,-3.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 709 - type: AMEShielding - components: - - pos: -4.5,-25.5 - parent: 73 - type: Transform -- uid: 710 - type: AMEShielding - components: - - pos: -5.5,-25.5 - parent: 73 - type: Transform -- uid: 711 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-4.5 - parent: 73 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 712 - type: CableHV - components: - - pos: -6.5,-23.5 - parent: 73 - type: Transform -- uid: 713 - type: WindoorSecure - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 73 - type: Transform -- uid: 714 - type: GasVentScrubber - components: - - pos: -0.5,-3.5 - parent: 73 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 715 - type: AMEShielding - components: - - pos: -6.5,-25.5 - parent: 73 - type: Transform -- uid: 716 - type: AMEShielding - components: - - pos: -6.5,-24.5 - parent: 73 - type: Transform -- uid: 717 - type: AMEShielding - components: - - pos: -5.5,-24.5 - parent: 73 - type: Transform -- uid: 718 - type: WeaponTurretSyndicate - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,-17.5 - parent: 73 - type: Transform -- uid: 719 - type: GeneratorUranium - components: - - pos: -6.5,-23.5 - parent: 73 - type: Transform -- uid: 720 - type: OperatingTable - components: - - pos: -5.5,-4.5 - parent: 73 - type: Transform -- uid: 721 - type: computerBodyScanner - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 73 - type: Transform -- uid: 722 - type: AMEShielding - components: - - pos: -4.5,-24.5 - parent: 73 - type: Transform -- uid: 723 - type: SyndieMiniBomb - components: - - pos: 1.4127003,-11.973867 - parent: 73 - type: Transform -- uid: 724 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 725 - type: AMEController - components: - - pos: -5.5,-23.5 - parent: 73 - type: Transform -- uid: 726 - type: SyndieMiniBomb - components: - - pos: 1.6939503,-11.973867 - parent: 73 - type: Transform -- uid: 727 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 73 - type: Transform -- uid: 728 - type: Catwalk - components: - - pos: -6.5,-9.5 - parent: 73 - type: Transform -- uid: 729 - type: C4 - components: - - pos: 1.7857682,-12.631323 - parent: 73 - type: Transform -- uid: 730 - type: C4 - components: - - pos: 1.5045182,-12.646948 - parent: 73 - type: Transform -- uid: 731 - type: Catwalk - components: - - pos: -5.5,-9.5 - parent: 73 - type: Transform -- uid: 732 - type: Catwalk - components: - - pos: -4.5,-9.5 - parent: 73 - type: Transform -- uid: 733 - type: Catwalk - components: - - pos: 7.5,-16.5 - parent: 73 - type: Transform -- uid: 734 - type: AirlockShuttle - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-16.5 - parent: 73 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 735 - type: TableReinforced - components: - - pos: 0.5,-13.5 - parent: 73 - type: Transform -- uid: 736 - type: TableReinforced - components: - - pos: 1.5,-13.5 - parent: 73 - type: Transform -- uid: 737 - type: TableReinforced - components: - - pos: 1.5,-12.5 - parent: 73 - type: Transform -- uid: 738 - type: TableReinforced - components: - - pos: 1.5,-11.5 - parent: 73 - type: Transform -- uid: 739 - type: WallPlastitanium - components: - - pos: 6.5,-18.5 - parent: 73 - type: Transform -- uid: 740 - type: PoweredSmallLight - components: - - pos: 2.5,-19.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 741 - type: PoweredSmallLight - components: - - pos: -1.5,-26.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 742 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-9.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 743 - type: Wrench - components: - - pos: 1.6061028,-13.284962 - parent: 73 - type: Transform -- uid: 744 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-9.5 - parent: 73 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 745 - type: SignSecureSmallRed - components: - - pos: -3.5,-11.5 - parent: 73 - type: Transform -- uid: 746 - type: SignSecureSmallRed - components: - - pos: 4.5,-17.5 - parent: 73 - type: Transform -- uid: 747 - type: SignSecureSmallRed - components: - - pos: 2.5,-11.5 - parent: 73 - type: Transform -- uid: 748 - type: ToolboxSyndicateFilled - components: - - pos: 1.5034143,-11.298322 - parent: 73 - type: Transform -- uid: 749 - type: C4 - components: - - pos: 1.5982682,-12.646948 - parent: 73 - type: Transform -- uid: 750 - type: C4 - components: - - pos: 1.4107682,-12.646948 - parent: 73 - type: Transform -- uid: 751 - type: CableApcExtension - components: - - pos: 0.5,-26.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 752 - type: CableApcExtension - components: - - pos: -2.5,-26.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 759 - type: Catwalk - components: - - pos: -0.5,-13.5 - parent: 73 - type: Transform -- uid: 760 - type: Catwalk - components: - - pos: -0.5,-12.5 - parent: 73 - type: Transform -- uid: 761 - type: Catwalk - components: - - pos: -0.5,-11.5 - parent: 73 - type: Transform -- uid: 766 - type: ComputerShuttleSyndie - components: - - pos: -0.5,-2.5 - parent: 73 - type: Transform -- uid: 767 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: -0.5,-3.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 770 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 73 - type: Transform -- uid: 771 - type: ComputerRadar - components: - - pos: 0.5,-2.5 - parent: 73 - type: Transform -- uid: 773 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 73 - type: Transform -- uid: 775 - type: BoxHandcuff - components: - - pos: 1.4510483,-2.399527 - parent: 73 - type: Transform -- uid: 776 - type: PosterContrabandSyndicatePistol - components: - - pos: 1.5,-10.5 - parent: 73 - type: Transform -- uid: 777 - type: PosterContrabandSyndicateRecruitment - components: - - pos: -1.5,-14.5 - parent: 73 - type: Transform -- uid: 778 - type: PosterContrabandC20r - components: - - pos: 1.5,-14.5 - parent: 73 - type: Transform -- uid: 779 - type: PosterContrabandFreeSyndicateEncryptionKey - components: - - pos: -2.5,-8.5 - parent: 73 - type: Transform -- uid: 780 - type: PosterContrabandKosmicheskayaStantsiya - components: - - pos: -2.5,-22.5 - parent: 73 - type: Transform -- uid: 781 - type: WallPlastitanium - components: - - pos: -6.5,-29.5 - parent: 73 - type: Transform -- uid: 787 - type: AtmosFixNitrogenMarker - components: - - pos: 5.5,-27.5 - parent: 73 - type: Transform -- uid: 789 - type: AtmosFixOxygenMarker - components: - - pos: 3.5,-27.5 - parent: 73 - type: Transform -- uid: 791 - type: PosterContrabandNuclearDeviceInformational - components: - - pos: 0.5,-14.5 - parent: 73 - type: Transform -- uid: 814 - type: CableApcExtension - components: - - pos: -2.5,-27.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 816 - type: CableApcExtension - components: - - pos: 1.5,-27.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 819 - type: Thruster - components: - - rot: 3.141592653589793 rad - pos: -5.5,-30.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 820 - type: Thruster - components: - - rot: 3.141592653589793 rad - pos: -4.5,-30.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 821 - type: Thruster - components: - - rot: 3.141592653589793 rad - pos: 4.5,-30.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 822 - type: Thruster - components: - - rot: 3.141592653589793 rad - pos: 3.5,-30.5 - parent: 73 - type: Transform - - bodyType: Static - type: Physics -- uid: 823 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: -6.5,-30.5 - parent: 73 - type: Transform -- uid: 824 - type: WallPlastitanium - components: - - rot: 3.141592653589793 rad - pos: 5.5,-30.5 - parent: 73 - type: Transform -- uid: 825 - type: CableApcExtension - components: - - pos: -6.5,-28.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 826 - type: CableApcExtension - components: - - pos: -6.5,-29.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 827 - type: CableApcExtension - components: - - pos: -2.5,-28.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 828 - type: CableApcExtension - components: - - pos: -2.5,-29.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 829 - type: CableApcExtension - components: - - pos: -2.5,-30.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 830 - type: CableApcExtension - components: - - pos: -3.5,-30.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 831 - type: CableApcExtension - components: - - pos: -4.5,-30.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 832 - type: CableApcExtension - components: - - pos: -5.5,-30.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 833 - type: CableApcExtension - components: - - pos: 1.5,-28.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 834 - type: CableApcExtension - components: - - pos: 1.5,-29.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 835 - type: CableApcExtension - components: - - pos: 1.5,-30.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 836 - type: CableApcExtension - components: - - pos: 2.5,-30.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 837 - type: CableApcExtension - components: - - pos: 3.5,-30.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 838 - type: CableApcExtension - components: - - pos: 4.5,-30.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 839 - type: CableApcExtension - components: - - pos: 5.5,-28.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 840 - type: CableApcExtension - components: - - pos: 5.5,-29.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 843 - type: C4 - components: - - pos: 1.6920182,-12.631323 - parent: 73 - type: Transform -- uid: 844 - type: BoxFlashbang - components: - - pos: 0.49331844,-13.366474 - parent: 73 - type: Transform -- uid: 846 - type: NukeCodePaper - components: - - pos: -2.5286522,-11.44479 - parent: 73 - type: Transform -- uid: 847 - type: WallPlastitanium - components: - - pos: 8.5,-15.5 - parent: 73 - type: Transform -- uid: 848 - type: WallPlastitanium - components: - - pos: 8.5,-17.5 - parent: 73 - type: Transform -- uid: 849 - type: WallPlastitanium - components: - - pos: -9.5,-17.5 - parent: 73 - type: Transform -- uid: 850 - type: WallPlastitanium - components: - - pos: -9.5,-15.5 - parent: 73 - type: Transform -- uid: 853 - type: CableHV - components: - - pos: -5.5,-18.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 854 - type: CableHV - components: - - pos: -4.5,-18.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 855 - type: CableHV - components: - - pos: -3.5,-18.5 - parent: 73 - type: Transform - - enabled: True - type: AmbientSound -- uid: 856 - type: CableHV - components: - - pos: -3.5,-21.5 - parent: 73 - type: Transform -- uid: 857 - type: CableHV - components: - - pos: -4.5,-21.5 - parent: 73 - type: Transform -- uid: 858 - type: CableHV - components: - - pos: -4.5,-22.5 - parent: 73 - type: Transform -- uid: 872 - type: PinpointerNuclear - components: - - pos: -2.4942985,-13.37949 - parent: 73 - type: Transform -- uid: 884 - type: Mirror - components: - - pos: 4.5,-3.5 - parent: 73 - type: Transform -... diff --git a/Resources/Maps/kettle.yml b/Resources/Maps/kettle.yml deleted file mode 100644 index 3a539adfc1..0000000000 --- a/Resources/Maps/kettle.yml +++ /dev/null @@ -1,203269 +0,0 @@ -meta: - format: 3 - name: DemoStation - author: Space-Wizards - postmapinit: false -tilemap: - 0: Space - 1: FloorArcadeBlue - 2: FloorArcadeBlue2 - 3: FloorArcadeRed - 4: FloorAsteroidCoarseSand0 - 5: FloorAsteroidCoarseSandDug - 6: FloorAsteroidIronsand1 - 7: FloorAsteroidIronsand2 - 8: FloorAsteroidIronsand3 - 9: FloorAsteroidIronsand4 - 10: FloorAsteroidSand - 11: FloorAsteroidTile - 12: FloorBar - 13: FloorBasalt - 14: FloorBlue - 15: FloorBlueCircuit - 16: FloorBoxing - 17: FloorCarpetClown - 18: FloorCarpetOffice - 19: FloorCave - 20: FloorCaveDrought - 21: FloorClown - 22: FloorDark - 23: FloorDarkDiagonal - 24: FloorDarkDiagonalMini - 25: FloorDarkHerringbone - 26: FloorDarkMini - 27: FloorDarkMono - 28: FloorDarkOffset - 29: FloorDarkPavement - 30: FloorDarkPavementVertical - 31: FloorDarkPlastic - 32: FloorDesert - 33: FloorDirt - 34: FloorEighties - 35: FloorElevatorShaft - 36: FloorFlesh - 37: FloorFreezer - 38: FloorGlass - 39: FloorGold - 40: FloorGrass - 41: FloorGrassDark - 42: FloorGrassJungle - 43: FloorGrassLight - 44: FloorGreenCircuit - 45: FloorGym - 46: FloorHydro - 47: FloorKitchen - 48: FloorLaundry - 49: FloorLino - 50: FloorLowDesert - 51: FloorMetalDiamond - 52: FloorMime - 53: FloorMono - 54: FloorPlanetDirt - 55: FloorPlanetGrass - 56: FloorPlastic - 57: FloorRGlass - 58: FloorReinforced - 59: FloorRockVault - 60: FloorShowroom - 61: FloorShuttleBlue - 62: FloorShuttleOrange - 63: FloorShuttlePurple - 64: FloorShuttleRed - 65: FloorShuttleWhite - 66: FloorSilver - 67: FloorSnow - 68: FloorSteel - 69: FloorSteelDiagonal - 70: FloorSteelDiagonalMini - 71: FloorSteelDirty - 72: FloorSteelHerringbone - 73: FloorSteelMini - 74: FloorSteelMono - 75: FloorSteelOffset - 76: FloorSteelPavement - 77: FloorSteelPavementVertical - 78: FloorTechMaint - 79: FloorTechMaint2 - 80: FloorTechMaint3 - 81: FloorWhite - 82: FloorWhiteDiagonal - 83: FloorWhiteDiagonalMini - 84: FloorWhiteHerringbone - 85: FloorWhiteMini - 86: FloorWhiteMono - 87: FloorWhiteOffset - 88: FloorWhitePavement - 89: FloorWhitePavementVertical - 90: FloorWhitePlastic - 91: FloorWood - 92: FloorWoodTile - 93: Lattice - 94: Plating -entities: -- uid: 0 - type: ReinforcedPlasmaWindow - components: - - pos: 9.5,4.5 - parent: 82 - type: Transform -- uid: 1 - type: ReinforcedPlasmaWindow - components: - - pos: 9.5,5.5 - parent: 82 - type: Transform -- uid: 2 - type: ReinforcedPlasmaWindow - components: - - pos: 5.5,3.5 - parent: 82 - type: Transform -- uid: 3 - type: ReinforcedPlasmaWindow - components: - - pos: 5.5,4.5 - parent: 82 - type: Transform -- uid: 4 - type: ReinforcedPlasmaWindow - components: - - pos: 5.5,5.5 - parent: 82 - type: Transform -- uid: 5 - type: ReinforcedPlasmaWindow - components: - - pos: 8.5,6.5 - parent: 82 - type: Transform -- uid: 6 - type: ReinforcedPlasmaWindow - components: - - pos: 6.5,6.5 - parent: 82 - type: Transform -- uid: 7 - type: ReinforcedPlasmaWindow - components: - - pos: 3.5,3.5 - parent: 82 - type: Transform -- uid: 8 - type: ReinforcedPlasmaWindow - components: - - pos: 3.5,4.5 - parent: 82 - type: Transform -- uid: 9 - type: ReinforcedPlasmaWindow - components: - - pos: 3.5,5.5 - parent: 82 - type: Transform -- uid: 10 - type: ReinforcedPlasmaWindow - components: - - pos: -0.5,3.5 - parent: 82 - type: Transform -- uid: 11 - type: ReinforcedPlasmaWindow - components: - - pos: -0.5,4.5 - parent: 82 - type: Transform -- uid: 12 - type: ReinforcedPlasmaWindow - components: - - pos: -0.5,5.5 - parent: 82 - type: Transform -- uid: 13 - type: WallReinforced - components: - - pos: 15.5,2.5 - parent: 82 - type: Transform -- uid: 14 - type: WallReinforced - components: - - pos: 11.5,2.5 - parent: 82 - type: Transform -- uid: 15 - type: WallReinforced - components: - - pos: 15.5,6.5 - parent: 82 - type: Transform -- uid: 16 - type: WallReinforced - components: - - pos: 11.5,6.5 - parent: 82 - type: Transform -- uid: 17 - type: BlastDoor - components: - - pos: 13.5,6.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25191 - type: SignalReceiver -- uid: 18 - type: Grille - components: - - pos: 15.5,3.5 - parent: 82 - type: Transform -- uid: 19 - type: Grille - components: - - pos: 15.5,4.5 - parent: 82 - type: Transform -- uid: 20 - type: Grille - components: - - pos: 15.5,5.5 - parent: 82 - type: Transform -- uid: 21 - type: Grille - components: - - pos: 14.5,6.5 - parent: 82 - type: Transform -- uid: 22 - type: Grille - components: - - pos: 12.5,6.5 - parent: 82 - type: Transform -- uid: 23 - type: Grille - components: - - pos: 11.5,5.5 - parent: 82 - type: Transform -- uid: 24 - type: Grille - components: - - pos: 11.5,4.5 - parent: 82 - type: Transform -- uid: 25 - type: Grille - components: - - pos: 11.5,3.5 - parent: 82 - type: Transform -- uid: 26 - type: Grille - components: - - pos: 14.5,2.5 - parent: 82 - type: Transform -- uid: 27 - type: BlastDoor - components: - - pos: 7.5,6.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25190 - type: SignalReceiver -- uid: 28 - type: BlastDoor - components: - - pos: 1.5,6.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25189 - type: SignalReceiver -- uid: 29 - type: SignShipDock - components: - - pos: 49.5,22.5 - parent: 82 - type: Transform -- uid: 30 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 49.5,23.5 - parent: 82 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 31 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 49.5,21.5 - parent: 82 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 32 - type: PlasticFlapsAirtightClear - components: - - pos: 49.5,20.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 33 - type: PlasticFlapsAirtightClear - components: - - pos: 49.5,24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 34 - type: PlasticFlapsAirtightClear - components: - - pos: 46.5,24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 35 - type: WallReinforced - components: - - pos: 4.5,-1.5 - parent: 82 - type: Transform -- uid: 36 - type: Grille - components: - - pos: 12.5,2.5 - parent: 82 - type: Transform -- uid: 37 - type: WallReinforced - components: - - pos: 10.5,-0.5 - parent: 82 - type: Transform -- uid: 38 - type: WallReinforced - components: - - pos: 9.5,6.5 - parent: 82 - type: Transform -- uid: 39 - type: WallReinforced - components: - - pos: 5.5,6.5 - parent: 82 - type: Transform -- uid: 40 - type: WallReinforced - components: - - pos: 3.5,6.5 - parent: 82 - type: Transform -- uid: 41 - type: WallReinforced - components: - - pos: -0.5,6.5 - parent: 82 - type: Transform -- uid: 42 - type: Grille - components: - - pos: 9.5,3.5 - parent: 82 - type: Transform -- uid: 43 - type: Grille - components: - - pos: 9.5,4.5 - parent: 82 - type: Transform -- uid: 44 - type: Grille - components: - - pos: 9.5,5.5 - parent: 82 - type: Transform -- uid: 45 - type: Grille - components: - - pos: 8.5,6.5 - parent: 82 - type: Transform -- uid: 46 - type: Grille - components: - - pos: 6.5,6.5 - parent: 82 - type: Transform -- uid: 47 - type: Grille - components: - - pos: 2.5,6.5 - parent: 82 - type: Transform -- uid: 48 - type: Grille - components: - - pos: 0.5,6.5 - parent: 82 - type: Transform -- uid: 49 - type: Grille - components: - - pos: 5.5,3.5 - parent: 82 - type: Transform -- uid: 50 - type: Grille - components: - - pos: 5.5,4.5 - parent: 82 - type: Transform -- uid: 51 - type: Grille - components: - - pos: 5.5,5.5 - parent: 82 - type: Transform -- uid: 52 - type: Grille - components: - - pos: 3.5,5.5 - parent: 82 - type: Transform -- uid: 53 - type: Grille - components: - - pos: 3.5,4.5 - parent: 82 - type: Transform -- uid: 54 - type: Grille - components: - - pos: 3.5,3.5 - parent: 82 - type: Transform -- uid: 55 - type: Grille - components: - - pos: -0.5,5.5 - parent: 82 - type: Transform -- uid: 56 - type: Grille - components: - - pos: -0.5,4.5 - parent: 82 - type: Transform -- uid: 57 - type: Grille - components: - - pos: -0.5,3.5 - parent: 82 - type: Transform -- uid: 58 - type: WallReinforced - components: - - pos: 10.5,-1.5 - parent: 82 - type: Transform -- uid: 59 - type: Grille - components: - - pos: 13.5,2.5 - parent: 82 - type: Transform -- uid: 60 - type: ReinforcedPlasmaWindow - components: - - pos: 8.5,2.5 - parent: 82 - type: Transform -- uid: 61 - type: ReinforcedPlasmaWindow - components: - - pos: 7.5,2.5 - parent: 82 - type: Transform -- uid: 62 - type: ReinforcedPlasmaWindow - components: - - pos: 6.5,2.5 - parent: 82 - type: Transform -- uid: 63 - type: ReinforcedPlasmaWindow - components: - - pos: 2.5,2.5 - parent: 82 - type: Transform -- uid: 64 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,2.5 - parent: 82 - type: Transform -- uid: 65 - type: ReinforcedPlasmaWindow - components: - - pos: 0.5,2.5 - parent: 82 - type: Transform -- uid: 66 - type: WallReinforced - components: - - pos: 4.5,-0.5 - parent: 82 - type: Transform -- uid: 67 - type: WallReinforced - components: - - pos: 9.5,2.5 - parent: 82 - type: Transform -- uid: 68 - type: WallReinforced - components: - - pos: 5.5,2.5 - parent: 82 - type: Transform -- uid: 69 - type: WallReinforced - components: - - pos: 3.5,2.5 - parent: 82 - type: Transform -- uid: 70 - type: WallReinforced - components: - - pos: -0.5,2.5 - parent: 82 - type: Transform -- uid: 71 - type: Grille - components: - - pos: 6.5,2.5 - parent: 82 - type: Transform -- uid: 72 - type: Grille - components: - - pos: 8.5,2.5 - parent: 82 - type: Transform -- uid: 73 - type: Grille - components: - - pos: 1.5,2.5 - parent: 82 - type: Transform -- uid: 74 - type: Grille - components: - - pos: 1.5,-5.5 - parent: 82 - type: Transform -- uid: 75 - type: Grille - components: - - pos: 0.5,-5.5 - parent: 82 - type: Transform -- uid: 76 - type: Grille - components: - - pos: -0.5,-5.5 - parent: 82 - type: Transform -- uid: 77 - type: WallReinforced - components: - - pos: 18.5,6.5 - parent: 82 - type: Transform -- uid: 78 - type: WallReinforced - components: - - pos: 19.5,6.5 - parent: 82 - type: Transform -- uid: 79 - type: Grille - components: - - pos: 3.5,-5.5 - parent: 82 - type: Transform -- uid: 80 - type: Grille - components: - - pos: 5.5,-5.5 - parent: 82 - type: Transform -- uid: 81 - type: Grille - components: - - pos: 2.5,-5.5 - parent: 82 - type: Transform -- uid: 82 - components: - - type: MetaData - - pos: -2.5833297,4.1527777 - parent: 84 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: TgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAAJeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAARAAAAkQAAAJEAAABTgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAABEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAAEbAAABFgAAAhsAAAISAAAAXgAAAF4AAAAsAAAALAAAACwAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAABGwAAARYAAAEbAAABEgAAAF4AAABeAAAAXgAAADwAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAAxYAAAMWAAACFgAAAhIAAABeAAAAPAAAADwAAAA8AAAAPAAAADwAAABeAAAAXgAAAF4AAABEAAADRAAAAEQAAAFeAAAAXQAAAF4AAAASAAAAXgAAADwAAAA8AAAAPAAAADwAAAA8AAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAAAXgAAAF0AAABdAAAAEgAAAF4AAAA8AAAAPAAAADwAAAA8AAAAPAAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAV4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAAA8AAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAACRAAAAUQAAAFEAAADXgAAAF4AAABEAAADRAAAAEQAAANEAAACRAAAAkQAAABEAAACRAAAA0QAAANEAAABRAAAAkQAAANEAAACRAAAAEQAAAFEAAAARAAAA0QAAABEAAAARAAAAkQAAABEAAADRAAAAUQAAAFEAAAARAAAAUQAAANEAAACRAAAAEQAAANEAAADRAAAAUQAAAJEAAACRAAAAUQAAABEAAAARAAAAkQAAAFEAAACRAAAAkQAAAFEAAABRAAAA0QAAAFEAAAARAAAAEQAAAFeAAAATgAAAF4AAABbAAACXgAAAF4AAABeAAAASgAAAikAAAMpAAADKQAAAkoAAANeAAAAXgAAAF4AAAAdAAACXgAAAF4AAABeAAAAWwAAAlsAAABbAAABXgAAAEoAAANKAAADSgAAAEoAAABKAAACXgAAAF0AAABeAAAAXgAAAA== - 0,-1: - ind: 0,-1 - tiles: TgAAADEAAAAxAAAAMQAAADEAAAAxAAAAXgAAAFUAAABeAAAAWwAAA14AAAAaAAAAGgAAAhoAAAJeAAAAXgAAAF4AAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGgAAABoAAAEaAAACXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAXgAAABsAAAAbAAACGwAAABsAAAAbAAABXgAAABoAAAAaAAADGgAAAl4AAABeAAAAXgAAAF4AAABeAAAAFgAAAV4AAAAbAAADHgAAAB4AAAAeAAAAGwAAA14AAAAaAAADXgAAAF4AAABeAAAAXgAAABsAAAAbAAACGwAAAxsAAAAbAAAAGwAAABkAAAMeAAACGQAAAxsAAAEbAAAAGwAAAxsAAAIbAAAAGwAAAhsAAAEbAAAAHQAAAB0AAAEdAAAAHQAAAh0AAAAdAAAAHgAAAh0AAAEdAAABHQAAAx0AAAEdAAAAHQAAAhsAAAIbAAADGwAAAhsAAAMbAAACGwAAABsAAAAbAAABGwAAABsAAAIbAAADGwAAAhsAAAEbAAAAGwAAARsAAAAbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAkQAAAFEAAACRAAAAkQAAAFEAAADRAAAA0QAAAFEAAACRAAAA0QAAAFEAAADRAAAA0QAAAJEAAAARAAAAEQAAAJEAAADRAAAAUQAAABEAAAARAAAAkQAAANEAAABRAAAAkQAAANEAAACRAAAAUQAAABEAAAARAAAAEQAAAJEAAACRAAAA0QAAAJEAAABRAAAAEQAAANEAAAARAAAAkQAAANEAAACRAAAAUQAAABEAAADRAAAA0QAAAIdAAACHQAAAR0AAAIdAAAAXgAAAB0AAAMdAAAAHQAAAx0AAAIdAAADXgAAAB0AAAMdAAADHQAAAR0AAAEdAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -1,0: - ind: -1,0 - tiles: XgAAAF4AAABeAAAAWwAAAVsAAAFbAAABXgAAAF4AAABeAAAAXgAAADEAAABeAAAAXgAAAAAAAABdAAAAAAAAAF4AAABOAAAAXgAAAFsAAANbAAABWwAAAFsAAAAxAAAAMQAAADEAAAAxAAAAMQAAAF4AAAAAAAAAXQAAAF0AAABeAAAATgAAAF4AAABbAAADWwAAA1sAAAJeAAAAMQAAADEAAAAxAAAAMQAAADEAAABeAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAxAAAAXgAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF4AAABOAAAAXgAAAE4AAABOAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAATgAAAF4AAABeAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAAAfAAADHwAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABbAAADWwAAA1sAAANeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAWwAAAVsAAABbAAACXgAAAE4AAABeAAAAXgAAAEQAAANEAAACRAAAA0QAAAFEAAACRAAAA14AAABeAAAAXgAAAFsAAABbAAACWwAAA14AAABOAAAAXgAAAF4AAABEAAABRAAAAkQAAAFEAAACRAAAAkQAAAJEAAACXgAAAF4AAABbAAAAWwAAAFsAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAABRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAACYAAAAmAAAAFgAAAxYAAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAASYAAAAWAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAAmAAAAFgAAAV4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 0,0: - ind: 0,0 - tiles: AAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 1,-1: - ind: 1,-1 - tiles: TgAAAF4AAABEAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAGwAAAxsAAAMmAAAAGgAAAl4AAABeAAAARAAAAEQAAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAABsAAAIbAAACJgAAABoAAAFeAAAAXgAAAEQAAAFEAAAARAAAAl4AAABeAAAATgAAAE4AAABeAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEbAAADRAAAAkQAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAGwAAAUQAAABEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAANeAAAARAAAA0QAAAFEAAAARAAAA0QAAAJEAAACRAAAAEQAAAFeAAAAXgAAAF0AAABeAAAARAAAAUQAAABEAAADXgAAAEQAAAFLAAAASwAAAEsAAABLAAAASwAAAEsAAABEAAACXgAAAF4AAABdAAAAXgAAAEQAAAFEAAAARAAAAF4AAABEAAABSwAAAEsAAABLAAAASwAAAEsAAABLAAAARAAAAV4AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAANeAAAARAAAAkQAAAJEAAACRAAAAEQAAANEAAABRAAAAEQAAABeAAAAXgAAAF4AAABEAAADRAAAAkQAAABEAAABXgAAAF4AAABEAAADXgAAAF4AAABeAAAAXgAAAEQAAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAANEAAADRAAAAEQAAANEAAAARAAAAUQAAABEAAAARAAAAkQAAANEAAAARAAAA04AAABeAAAARAAAAkQAAAFEAAAARAAAAkQAAANEAAADRAAAAkQAAANEAAACRAAAAUQAAAJEAAABRAAAAkQAAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAANEAAADRAAAAUQAAAJEAAABRAAAAkQAAAFEAAACRAAAAkQAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAl4AAABdAAAAXgAAAF0AAABeAAAAXgAAAE4AAABeAAAANQAAADUAAABJAAACSQAAAV4AAABEAAADRAAAA0QAAAJeAAAAAAAAAA== - 1,0: - ind: 1,0 - tiles: XQAAAAAAAABeAAAAXgAAAE4AAABeAAAANQAAADUAAABJAAAASQAAAV4AAABEAAACRAAAAEQAAABeAAAAXQAAAF0AAAAAAAAAXgAAAF4AAABOAAAAXgAAADUAAAA1AAAASQAAA0kAAABeAAAARAAAA0QAAAJEAAACXgAAAF4AAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAJEAAACRAAAA0QAAANEAAACXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABEAAACRAAAA0QAAAFEAAABRAAAA10AAAAAAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAABRAAAA0QAAANdAAAAAAAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAEQAAABeAAAARAAAAF4AAABEAAABXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAACRAAAAUQAAAJeAAAARAAAAl0AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFeAAAARAAAA0QAAANEAAABRAAAAkQAAABEAAACXgAAAEQAAAJdAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAUQAAABEAAAARAAAAUQAAAJEAAADRAAAAEQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAkQAAANEAAADRAAAAkQAAANEAAAARAAAAEQAAABEAAACRAAAAl4AAABeAAAAXgAAAF4AAABEAAACRAAAA0QAAABeAAAARAAAA0QAAABEAAAARAAAAEQAAANEAAABXgAAAEQAAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAToAAAAaAAAAGgAAAhoAAAAaAAAAGgAAARYAAANOAAAARAAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAUQAAAM6AAAAGgAAAxoAAAAaAAACGgAAABoAAAEWAAADTgAAAEQAAANeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAAAOgAAABoAAAIaAAABGgAAAhoAAAIaAAABFgAAABYAAAFEAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACTgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAARAAAAQ== - -1,1: - ind: -1,1 - tiles: JgAAACYAAAAWAAACFgAAAl4AAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAACYAAAAmAAAAFgAAAxYAAABbAAADWwAAAl4AAABeAAAATgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAmAAAAJgAAABYAAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAJgAAACYAAAAWAAAAFgAAA1sAAABbAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAABYAAAIWAAAAFgAAAhYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAAAWAAADFgAAARYAAAIWAAADXgAAAF4AAABHAAAAXgAAAEcAAABeAAAAXgAAAF4AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAADEAAAAxAAAAMQAAADEAAABeAAAARwAAAEcAAABeAAAARwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAAAxAAAAMQAAADEAAAAxAAAAXgAAAF4AAABHAAAARwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAMQAAADEAAAAxAAAAMQAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABeAAAAXgAAABoAAAAaAAABGgAAARoAAAJeAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAAAaAAAAGgAAARoAAAMaAAABXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXgAAABoAAAMaAAAAGgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACRAAAAEQAAAFEAAAARAAAA0QAAAJEAAACRAAAAkQAAAJEAAACRAAAAEQAAABEAAACHQAAAx0AAAJEAAADRAAAAUQAAAJEAAABRAAAAEQAAABEAAABRAAAA0QAAABEAAABRAAAA0QAAABEAAABRAAAAkQAAAJEAAAARAAAAEQAAABEAAABRAAAA0QAAAFEAAAARAAAAUQAAANEAAACRAAAAEQAAABEAAAARAAAAEQAAAJEAAACRAAAAA== - 0,1: - ind: 0,1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAB0AAABEAAABHQAAAh0AAAMdAAADRAAAAUQAAANEAAACHQAAAx0AAAAdAAAARAAAAUQAAAFEAAABRAAAAh0AAAJEAAACRAAAAkQAAAFEAAABRAAAAUQAAAJEAAAARAAAAUQAAAJEAAAARAAAAkQAAABEAAACRAAAAEQAAANEAAABRAAAAUQAAABEAAACRAAAAUQAAABEAAAARAAAA0QAAAJEAAAARAAAAkQAAAJEAAAARAAAA0QAAAJEAAABRAAAAQ== - 1,1: - ind: 1,1 - tiles: XgAAAF4AAABeAAAAXgAAAEQAAAJEAAAATgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAk4AAABeAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAARAAAA10AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAEQAAANeAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAAFsAAAFeAAAARAAAAV4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAWwAAA1sAAANbAAAAXgAAAEQAAAJeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABbAAABWwAAA1sAAANbAAABWwAAA14AAABEAAACXgAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAFsAAANbAAABWwAAAFsAAAJbAAADRAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAADEAAAAxAAAAMQAAAFsAAAFbAAACWwAAAVsAAANbAAADXgAAAEQAAAFdAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAxAAAAMQAAAF4AAABbAAACWwAAAVsAAAJbAAACWwAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFbAAACWwAAAlsAAABeAAAARAAAAh0AAAMdAAAAHQAAA14AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAA0QAAAFOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABEAAACRAAAAEQAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAQ== - 0,-2: - ind: 0,-2 - tiles: EgAAABIAAAASAAAAEgAAAF4AAAAxAAAAMQAAADEAAAAxAAAAMQAAAF4AAAAXAAAAFwAAAxcAAAMXAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABHQAAAh0AAAMdAAAAHQAAAh0AAAAdAAAAXgAAAB0AAAEdAAACHQAAAR0AAAEdAAACHQAAAxYAAAAdAAABRAAAAEQAAABEAAABRAAAAUQAAAFEAAADRAAAAUQAAABEAAADRAAAAkQAAAFEAAABRAAAAEQAAABEAAABRAAAAUQAAAFEAAABRAAAAkQAAAJEAAACRAAAA0QAAANEAAAARAAAAkQAAANEAAADRAAAA0QAAAJEAAAARAAAAkQAAAFEAAACRAAAA0QAAABEAAACRAAAA0QAAABEAAADRAAAA0QAAANEAAACRAAAAkQAAAFEAAADRAAAAEQAAAJEAAADTgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAxAAAAMQAAADEAAAAxAAAAMQAAAF4AAABaAAAAXgAAAFsAAAFbAAAAWwAAAVsAAABbAAABTgAAAF4AAABeAAAAMQAAADEAAAAxAAAAMQAAADEAAABeAAAAWgAAA14AAABbAAACWwAAA1sAAAFbAAACWwAAAV4AAABOAAAAXgAAADEAAAAxAAAAMQAAADEAAAAxAAAAXgAAAFUAAAFbAAABWwAAA14AAABeAAAAGgAAAF4AAABeAAAATgAAAA== - 2,0: - ind: 2,0 - tiles: AAAAAF0AAABeAAAAMwAAADMAAAAzAAAAXgAAABwAAAAcAAAAHAAAAF4AAABEAAADRAAAAEQAAANEAAACRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAAAXgAAABsAAAFeAAAARAAAA0QAAANEAAABRAAAAUQAAABEAAAARAAAA0QAAANEAAADRAAAAUQAAAFEAAADRAAAAUQAAANEAAACRAAAAUQAAANEAAAARAAAAEQAAANEAAACRAAAAUQAAAFEAAACRAAAA0QAAABEAAADRAAAAkQAAABEAAADRAAAAkQAAABEAAADRAAAA0QAAANEAAADRAAAAEQAAAFEAAABRAAAA0QAAABEAAACRAAAAkQAAANEAAAARAAAAUQAAANEAAADRAAAAEQAAAJEAAAARAAAAUQAAANEAAACRAAAAl4AAABeAAAAXgAAAB0AAAIdAAADXgAAAB0AAAEdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAACTgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABEAAAARAAAA14AAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAAbAAACFgAAABYAAAIWAAAAFgAAAhYAAAAWAAACRAAAA0QAAABEAAABXgAAADEAAAAxAAAAMQAAAEQAAAFEAAACGwAAARYAAAEWAAABFgAAABYAAAAWAAABFgAAAkQAAABEAAADRAAAAF4AAAAxAAAAMQAAADEAAABEAAAARAAAAhsAAAAWAAADFgAAARYAAAMWAAABFgAAAhYAAAFEAAACRAAAA0QAAANeAAAAMQAAADEAAAAxAAAARAAAAEQAAAJeAAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAARAAAA0QAAAJEAAABXgAAAF4AAAAxAAAAMQAAAA== - 2,1: - ind: 2,1 - tiles: RAAAAEQAAANeAAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAARAAAAEQAAABEAAACRAAAAl4AAAAxAAAAMQAAAEQAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAA0QAAAFeAAAAXgAAAEQAAAJEAAAARAAAAF4AAAAcAAAAHAAAABwAAAAcAAAAXgAAAEQAAANEAAAARAAAAUQAAANEAAAARAAAAUQAAAFEAAABRAAAAEQAAAFEAAADHAAAABwAAAAcAAAAHAAAAEQAAAJEAAABRAAAA0QAAANEAAACRAAAAEQAAAJeAAAAXgAAAEQAAABEAAABRAAAABwAAAAcAAAAHAAAABwAAABEAAABRAAAA0QAAABEAAADRAAAAkQAAABEAAADXgAAAF4AAABEAAADRAAAAl4AAAAcAAAAHAAAABwAAAAcAAAAXgAAAEQAAANEAAACRAAAAUQAAAJEAAADRAAAA04AAABOAAAARAAAAkQAAANeAAAAXgAAAEQAAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAAARAAAAkQAAANeAAAAXgAAAEQAAAFEAAACXgAAAEQAAANEAAABRAAAAF4AAABEAAAARAAAA0QAAANEAAAARAAAAEQAAANEAAAATgAAAE4AAABEAAACRAAAAEQAAANEAAAARAAAAEQAAABEAAABRAAAAEQAAAFEAAABRAAAAkQAAANEAAABRAAAAl4AAABeAAAARAAAA0QAAANEAAABRAAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAAFeAAAAXgAAAEQAAANEAAADXgAAAEQAAAJEAAABRAAAAUQAAAFLAAAASwAAAF4AAABEAAACRAAAA0QAAAJEAAABRAAAAkQAAANEAAAARAAAAl4AAABEAAADRAAAA0QAAAJeAAAASwAAAEsAAABeAAAARAAAAkQAAABEAAACRAAAAEQAAANEAAABRAAAAUQAAANEAAABRAAAAUQAAAJEAAACXgAAAEsAAABLAAAARAAAAkQAAAFEAAAARAAAA0QAAAFEAAADRAAAAkQAAABEAAADRAAAAUQAAABEAAACRAAAAEQAAABLAAAASwAAAF4AAABEAAAARAAAAkQAAABEAAABRAAAA0QAAAFEAAABRAAAAF4AAABEAAACRAAAAkQAAAFEAAADSwAAAEsAAABeAAAARAAAA0QAAANEAAAARAAAAkQAAANEAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAxYAAANeAAAAXgAAAA== - 2,-1: - ind: 2,-1 - tiles: GgAAABoAAABeAAAAXgAAAEQAAAJEAAADRAAAA0QAAAJEAAABRAAAAkQAAAFEAAAARAAAAEQAAABEAAADXgAAABoAAAAaAAADGgAAA0QAAAJEAAABRAAAA0QAAABEAAAARAAAAEQAAABEAAADRAAAA0QAAAJEAAABRAAAAzoAAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAABEAAACRAAAAUQAAAFEAAACRAAAAEQAAAJEAAAARAAAA0QAAAI6AAAATgAAAF4AAABEAAABRAAAA0QAAAJEAAAARAAAA0QAAAFEAAADRAAAA0QAAAJEAAABRAAAA0QAAAFEAAACXgAAAE4AAABeAAAARAAAAUQAAANEAAACRAAAAEQAAAJEAAADRAAAA0QAAANEAAADRAAAAUQAAANEAAACRAAAAF4AAABOAAAAXgAAAEQAAAFEAAACRAAAAV4AAABeAAAARAAAA14AAABEAAADXgAAAF4AAABEAAACRAAAAEQAAANeAAAATgAAAF4AAABEAAABRAAAAUQAAANeAAAARAAAAUQAAAFEAAABRAAAAEQAAAJeAAAARAAAA0QAAAFEAAACXgAAAF4AAABeAAAARAAAAUQAAAJEAAACXgAAAEQAAAFFAAAARQAAAEUAAAJEAAABXgAAAEQAAANEAAAARAAAA1EAAABeAAAARAAAA0QAAAJEAAACRAAAAl4AAABEAAAARAAAAEQAAAJEAAAARAAAAl4AAABEAAADRAAAAUQAAAJeAAAAXgAAAEQAAAJEAAAARAAAAUQAAANeAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAARAAAAUQAAABEAAADXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAAEQAAABEAAAARAAAAEQAAANEAAABRAAAAEQAAAFEAAAARAAAAUQAAAJOAAAATgAAAF4AAABEAAACRAAAAUQAAABEAAABRAAAAEQAAAJEAAABRAAAAEQAAAFEAAABRAAAAEQAAABEAAACTgAAAE4AAABOAAAARAAAAkQAAAFEAAABRAAAAUQAAAJEAAAARAAAAkQAAAAWAAABFgAAARYAAAIWAAABFgAAAV4AAABeAAAAXgAAAEQAAANEAAAARAAAA0QAAABEAAABRAAAAUQAAANEAAADFgAAABYAAAIWAAABFgAAABYAAAEAAAAAXQAAAF4AAABOAAAATgAAAE4AAABeAAAAGwAAAF4AAAAbAAACXgAAAF4AAABEAAACRAAAAEQAAAJeAAAAAAAAAAAAAABeAAAAMwAAADMAAAAzAAAAXgAAABwAAAAcAAAAHAAAAF4AAABEAAABRAAAA0QAAABEAAACRAAAAw== - -1,2: - ind: -1,2 - tiles: GgAAARoAAAAaAAABGgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAAl4AAABeAAAAXgAAABoAAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAAJbAAABWwAAAF4AAABEAAACRAAAAUQAAAJeAAAALgAAAA4AAAAWAAAAXgAAABYAAAIWAAABXgAAAFsAAAA5AAAAOQAAAFsAAANeAAAARAAAA0QAAAJEAAABXgAAAA4AAAAuAAAARAAAAEQAAABEAAACRAAAAFsAAANbAAADOQAAADkAAABbAAADXgAAAEQAAANEAAAARAAAAl4AAAAuAAAADgAAAEQAAAJEAAABRAAAAUQAAAJeAAAAWwAAA1sAAANbAAABWwAAAV4AAABEAAADRAAAAUQAAAFeAAAADgAAAC4AAABEAAABRAAAAEQAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAACXgAAAC4AAAAOAAAARAAAAEQAAAJEAAACRAAAA0QAAANEAAADRAAAAxYAAAFeAAAAGgAAAUQAAABEAAAARAAAAV4AAAAOAAAALgAAAEQAAAFEAAABRAAAAkQAAANEAAADRAAAAEQAAAAWAAACXgAAABoAAANEAAABRAAAAEQAAAFeAAAALgAAAA4AAABEAAACRAAAA0QAAAFEAAADRAAAAUQAAANEAAACXgAAAF4AAAAaAAACRAAAAkQAAANEAAABXgAAAF4AAABeAAAARAAAA0QAAAJEAAABRAAAAEQAAAJEAAAARAAAAl4AAAAaAAAAGgAAAEQAAAJEAAACRAAAA14AAAAPAAAADwAAAF4AAABeAAAARAAAAUQAAANeAAAAXgAAAF4AAABeAAAAGgAAARoAAANEAAABRAAAAkQAAABeAAAADwAAAA8AAABEAAADRAAAAkQAAAJEAAACRAAAAEQAAANEAAADRAAAAUQAAAJEAAADRAAAAEQAAABEAAADFgAAAhoAAAEPAAAARAAAAkQAAANEAAACRAAAAUQAAAJEAAAARAAAAkQAAABEAAACRAAAA0QAAABEAAAARAAAA14AAAAaAAACGgAAA0QAAANEAAACRAAAAEQAAAFEAAABRAAAAEQAAAFEAAACRAAAAUQAAAJEAAABRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABXgAAAF4AAABeAAAAXgAAABoAAAMaAAAARAAAA0QAAAFEAAAAKwAAACsAAAMrAAADRAAAAkQAAAFEAAACRAAAAkQAAAJEAAACRAAAAl4AAAAaAAACGgAAAkQAAAFEAAADRAAAACsAAAErAAACKwAAAA== - 0,2: - ind: 0,2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAABkAAAJeAAAAXgAAAF4AAABeAAAAXgAAAC4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAGQAAAhkAAAIZAAAAGQAAAV4AAABdAAAAXQAAAAAAAAAOAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAABkAAAIZAAADGQAAARkAAAFeAAAAXQAAAAAAAAAAAAAALgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAZAAACGQAAAxkAAAIZAAABXgAAAF0AAAAAAAAAAAAAAA4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGQAAARkAAAIZAAACXgAAAF4AAABeAAAAXgAAAAAAAAAuAAAADgAAAC4AAAAOAAAAXgAAAE4AAABeAAAAXgAAABkAAAAZAAAAGQAAAF4AAAAZAAADGQAAAV4AAAAAAAAADgAAAC4AAAAOAAAALgAAAF4AAABOAAAAXgAAAF4AAAAZAAADGQAAABkAAAMZAAADGQAAAhkAAANeAAAAAAAAAC4AAAAOAAAALgAAAA4AAABOAAAAXgAAAF4AAABeAAAAGQAAARkAAAAZAAACXgAAABkAAAIZAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAADwAAAA8AAAAPAAAADwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAA8AAAAPAAAADwAAAA8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAPAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAATgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAGgAAABoAAAAaAAADGgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAaAAACGgAAAxoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABoAAAFeAAAAGgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAdAAACHQAAAB0AAABeAAAAHQAAAQ== - 1,2: - ind: 1,2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAAwAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABMAAAATAAAEEwAAAxMAAAZeAAAAXgAAAEQAAAEAAAAAAAAAAF0AAABeAAAAXgAAAEcAAABeAAAAXgAAABMAAAEZAAAAGQAAABkAAAIZAAACEwAAAl4AAABEAAABAAAAAAAAAAAAAAAAXgAAAF4AAABHAAAAXgAAAF4AAAATAAABGQAAARkAAAIZAAAAGQAAAhMAAAReAAAARAAAAgAAAAAAAAAAAAAAAF4AAABHAAAAXgAAAF4AAABeAAAAEwAABRkAAAIZAAACGQAAABkAAAETAAAAXgAAAEQAAAMAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAABMAAAYZAAADGQAAARkAAAEZAAACEwAAA14AAABEAAACAAAAAAAAAAAAAAAAXgAAAEcAAABeAAAARwAAAF4AAABeAAAAEwAABhMAAAITAAAGEwAAAF4AAABeAAAARAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAIAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAFsAAABbAAABXgAAAB4AAABEAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABHAAAARwAAAF4AAABeAAAAWwAAAlsAAAFeAAAAXgAAAF4AAAAeAAABRAAAAQAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFbAAABXgAAAFsAAABeAAAAXgAAAEQAAAAAAAAAAAAAAF0AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANeAAAAXgAAAB4AAAJEAAABXgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAWwAAA14AAABeAAAAXgAAAF4AAAAeAAAARAAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAEQAAABeAAAAXgAAAF4AAABbAAABXgAAAFsAAAJeAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAARwAAAF4AAABbAAACWwAAAlsAAAFeAAAAXgAAAB4AAANEAAADHQAAAx0AAABeAAAAXgAAAF4AAABeAAAARwAAAEQAAANeAAAAWwAAAVsAAAFeAAAAXgAAAF4AAAAeAAAARAAAAQ== - 2,2: - ind: 2,2 - tiles: RAAAA0QAAAIWAAAAFgAAABYAAAAWAAABFgAAAxYAAAAWAAADFgAAAxYAAAIWAAACFgAAARYAAAAWAAACFgAAA0QAAABEAAABXgAAABYAAAIWAAABFgAAAxYAAAEWAAADFgAAARYAAAMWAAAAHAAAABwAAAAcAAAAHAAAABYAAAJEAAAARAAAABYAAAAWAAACFgAAABYAAAEWAAADFgAAARYAAAAWAAADFgAAAhwAAAAcAAAAHAAAABwAAAAWAAAARAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEcAAAAHAAAABwAAAAcAAAAFgAAAEQAAANEAAABXgAAAF0AAABdAAAAXQAAAF4AAABOAAAATgAAAF4AAAAWAAAAHAAAABwAAAAcAAAAHAAAABYAAANEAAABRAAAAl4AAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAIWAAABFgAAABYAAAAWAAAARAAAAEQAAAFeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAJEAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA14AAAAAAAAAAAAAAAAAAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAl4AAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAAJEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAARAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAA== - 3,2: - ind: 3,2 - tiles: XgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAABAAAAQQAAAEEAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAQAAAAEAAACBAAAAV0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAEAAABBAAAAgQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAABAAAAgQAAAEEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAQAAAIEAAACBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAEAAACBAAAAAQAAAAEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAABAAAAAQAAAEEAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAQAAAEEAAACBAAAAQQAAAAEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,1: - ind: 3,1 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,0: - ind: 3,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABXgAAAEQAAAJEAAAARAAAA0QAAAJEAAABXgAAAF4AAAAdAAAAHQAAAV4AAAAdAAABHQAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAAFEAAADRAAAAEQAAAJEAAADRAAAAkQAAABEAAADRAAAAkQAAANEAAAARAAAA0QAAAJEAAADRAAAA0QAAAJEAAABRAAAAkQAAANEAAABRAAAAUQAAAJEAAABRAAAAUQAAABEAAADRAAAAkQAAANEAAABRAAAAEQAAANEAAABRAAAAEQAAANEAAAARAAAA0QAAAJEAAABRAAAAkQAAABEAAAARAAAAkQAAAJEAAAARAAAAUQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABOAAAAXgAAAF4AAABOAAAATgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,-1: - ind: 3,-1 - tiles: OgAAADoAAAA6AAAAOgAAADoAAABeAAAASwAAAEsAAABLAAAASwAAAEsAAABeAAAAWwAAAlsAAAFbAAABXgAAADoAAAA6AAAAXgAAAF4AAABeAAAAXgAAAEsAAABLAAAASwAAAEsAAABLAAAAXgAAAFsAAAJbAAABWwAAA14AAAA6AAAAOgAAAF4AAABEAAADRAAAAEQAAANLAAAASwAAAEsAAABLAAAASwAAAF4AAABbAAACWwAAAlsAAAJeAAAAOgAAADoAAABeAAAARAAAAkQAAANEAAAASwAAAEsAAABLAAAAXgAAAF4AAABeAAAARAAAA14AAABeAAAAXgAAADoAAAA6AAAAXgAAAEQAAANEAAADRAAAAksAAABLAAAASwAAAF4AAAATAAAGEwAABhMAAAITAAACEwAABl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABLAAAASwAAAEsAAABeAAAAEwAAABkAAAAZAAACGQAAAhMAAAZeAAAAVQAAA1UAAAJVAAADHwAAAh8AAAFeAAAASwAAAEsAAABLAAAARAAAAhMAAAEZAAADGQAAAxkAAAMTAAAFXgAAAFUAAAJVAAACVQAAAh8AAAIfAAABHwAAA0sAAABLAAAASwAAAF4AAAATAAAEGQAAAhkAAAMZAAADEwAABF4AAABVAAABVQAAA1UAAAMfAAAAHwAAAV4AAABLAAAASwAAAEsAAABeAAAAEwAABhMAAAETAAAGEwAABBMAAAVeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAASwAAAEsAAABLAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAF4AAABEAAACSwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAEQAAABeAAAAXgAAAF4AAABEAAADRAAAA0QAAANEAAAARAAAAUQAAANEAAAARAAAA14AAABEAAACRAAAAUQAAABEAAACRAAAAF4AAABeAAAARAAAAkQAAANEAAACRAAAAkQAAAFEAAACRAAAA0QAAABeAAAARAAAAEQAAABEAAABRAAAA0QAAAJeAAAAXgAAAEQAAANEAAABRAAAA0QAAAJEAAABRAAAA0QAAANEAAADXgAAAEQAAABEAAADRAAAAUQAAAJEAAACXgAAAA== - 4,0: - ind: 4,0 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADRAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAABEAAADRAAAAEQAAAFEAAAARAAAA0QAAAJEAAAARAAAAEQAAAFEAAABRAAAAEQAAABEAAABRAAAAEQAAANEAAAARAAAAkQAAAJEAAAARAAAAUQAAANEAAAARAAAAkQAAAJEAAADRAAAAkQAAAJEAAADRAAAAUQAAANEAAAARAAAAUQAAAFEAAADRAAAAkQAAABEAAABRAAAAEQAAAFEAAADRAAAAEQAAAFEAAABRAAAAUQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAJEAAABXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAE4AAABeAAAAXgAAAEQAAANEAAABRAAAA0QAAABEAAAARAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABOAAAAXgAAAE4AAABEAAACRAAAAkQAAAFLAAAASwAAAEsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANEAAADSwAAACkAAAEpAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAA0sAAABLAAAASwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAAJEAAAARAAAAUQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAARAAAAkQAAAJEAAAARAAAAl4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAB4AAAJEAAADRAAAAh4AAAJeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAAAeAAAARAAAA0QAAAMeAAABXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAHgAAAUQAAAFEAAABHgAAAV4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAB4AAAFEAAAARAAAAx4AAAFeAAAAXQAAAA== - 3,-3: - ind: 3,-3 - tiles: RAAAA14AAABeAAAAXgAAAEQAAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAEQAAAJEAAADRAAAAkQAAABEAAAARAAAAl4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAApAAACIQAAASkAAAFEAAACRAAAAUQAAAFeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAKQAAACEAAAEpAAADRAAAAUQAAABEAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAACkAAAIhAAADKQAAAkQAAABEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABEAAADRAAAAEQAAAJEAAACRAAAAUQAAAJeAAAAWwAAA1sAAAFbAAAAWwAAAlsAAABeAAAAAAAAAF0AAAAAAAAARAAAAEQAAAJEAAADRAAAAUQAAAJEAAACRAAAAVsAAABbAAABWwAAAlsAAAJbAAAAXgAAAAAAAABdAAAAAAAAAF4AAABeAAAARAAAAEQAAABEAAACRAAAAV4AAABbAAACWwAAAVsAAAFbAAAAWwAAA14AAAAAAAAAXQAAAAAAAABdAAAAXgAAAEQAAAJEAAADRAAAAkQAAAJeAAAAXgAAAF4AAABbAAABWwAAA1sAAANeAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABEAAABRAAAAkQAAAJEAAABRAAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAABeAAAARAAAAEQAAABEAAABRAAAAUQAAAFEAAACRAAAAl4AAABTAAACUwAAA14AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAEQAAABEAAAARAAAAEQAAAJEAAACRAAAAkQAAABRAAACUwAAAlMAAAJeAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAA== - 3,3: - ind: 3,3 - tiles: XgAAAAQAAAIEAAAABAAAAgQAAAIEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAEAAAABAAAAAQAAAIEAAABBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAABAAAAAQAAAIEAAACBAAAAAQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAQAAAEEAAABBAAAAgQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAIEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAACBAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAABBAAAAgQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAgQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,3: - ind: 2,3 - tiles: RAAAAEQAAAMWAAACFgAAAhYAAAMWAAACFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAAFEAAADXgAAABYAAAAWAAACFgAAAhYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAAEWAAADFgAAARYAAAIWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAABFgAAARYAAAAWAAACFgAAA14AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABTgAAAF4AAABOAAAATgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAACBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAQQAAAJeAAAAXgAAAF4AAABbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAEEAAACXgAAAF4AAABeAAAAXgAAAFsAAABbAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAABBAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAgQAAABeAAAAXgAAAF4AAAAEAAACBAAAAAQAAAAEAAAABAAAAgQAAAEEAAACBAAAAAQAAAEEAAACBAAAAQQAAAAEAAACXgAAAF4AAABeAAAABAAAAQQAAAEEAAAABAAAAgQAAAAEAAAABAAAAgQAAAAEAAAABAAAAAQAAAAEAAACBAAAAV4AAABeAAAAXgAAAAQAAAEEAAABBAAAAQQAAAIEAAACBAAAAQQAAAIEAAACBAAAAQQAAAAEAAACBAAAAgQAAABeAAAAXgAAAF4AAAAEAAACBAAAAgQAAAAEAAAABAAAAAQAAAEEAAACBAAAAgQAAAEEAAAABAAAAQQAAAEEAAACTgAAAE4AAABeAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAABBAAAAQQAAAIEAAACBAAAAQQAAAEEAAAAAAAAAA== - 1,3: - ind: 1,3 - tiles: HQAAAh0AAANeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAADRAAAAEQAAAFEAAADRAAAAEQAAABEAAACRAAAAUQAAAFEAAACRAAAAkQAAAJEAAAARAAAAUQAAAFEAAABRAAAAUQAAAJEAAADRAAAAkQAAAJEAAADRAAAAkQAAABEAAABRAAAAkQAAABEAAACRAAAAEQAAABEAAABRAAAAEQAAANEAAACRAAAA0QAAAJEAAAARAAAAkQAAAFEAAABRAAAA0QAAABEAAAARAAAA0QAAAJEAAACRAAAAF4AAABeAAAAHQAAAh0AAAEdAAABXgAAAF4AAABeAAAAXgAAAF4AAABKAAABRAAAAkQAAANKAAAAFgAAAF4AAAAaAAACXgAAAF4AAABeAAAAXgAAAF4AAABRAAACUQAAAFEAAAJeAAAASgAAAUQAAABEAAABSgAAAF4AAABeAAAAGgAAA14AAABEAAACRAAAAEQAAAMbAAAAGgAAAxoAAAIaAAAAGwAAAkoAAANEAAACRAAAAkoAAABeAAAAXgAAABoAAAAWAAABRAAAA0QAAAFEAAAAGwAAABoAAAMaAAAAGgAAARsAAAFKAAACRAAAAEQAAABKAAACXgAAAF4AAAAaAAABFgAAAkQAAABEAAACRAAAAl4AAABRAAAAUQAAA1EAAABeAAAASgAAAEoAAANKAAADSgAAAV4AAABeAAAARAAAAV4AAABEAAADRAAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAJRAAACXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAARAAAA0QAAANEAAAAXgAAAFIAAAJSAAADUgAAA1IAAANSAAABUgAAAlIAAANSAAADXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAV4AAABSAAADUgAAAFIAAAJSAAAAUgAAA1IAAANSAAADUgAAAF4AAABeAAAAXQAAAF4AAABEAAABRAAAA0QAAABEAAACUgAAAVIAAAFSAAABUgAAAVIAAAJSAAACUgAAAlIAAANOAAAAXgAAAF0AAABeAAAARAAAA0QAAANEAAABXgAAAFIAAANSAAAAUgAAAVIAAANSAAAAUgAAAFIAAAJSAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAB4AAANEAAABRAAAA0QAAAMWAAADFgAAAhYAAAEWAAACXgAAAFsAAAFbAAABWwAAAFsAAAJeAAAAXgAAAA== - 0,3: - ind: 0,3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAdAAADHQAAAx0AAAIdAAADHQAAAkQAAAFEAAABRAAAAEQAAABEAAADRAAAAUQAAAFEAAADRAAAA0QAAAFEAAABRAAAAkQAAAFEAAACRAAAAEQAAABEAAABRAAAAEQAAAJEAAAARAAAAkQAAANEAAAARAAAAUQAAAFEAAADRAAAAkQAAAJEAAABRAAAAUQAAAFEAAACRAAAAkQAAABEAAAARAAAA0QAAAFEAAAARAAAAUQAAANEAAADRAAAAUQAAAJEAAAARAAAAkQAAABEAAABRAAAAR4AAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAARYAAAEeAAAAXgAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXgAAAEQAAABEAAABMwAAADMAAAAzAAAAFgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABEAAABRAAAADMAAAAzAAAAMwAAAEQAAAFEAAABRAAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABeAAAARAAAAEQAAAAzAAAAMwAAADMAAABEAAAARAAAAkQAAAJeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXgAAAEQAAABEAAACGgAAARoAAAAaAAAAGwAAABsAAAAbAAABXgAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAF4AAABEAAADRAAAAkQAAABEAAACRAAAADoAAAA6AAAAGwAAA14AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABeAAAARAAAAUQAAAFEAAACRAAAA0QAAAA6AAAAOgAAABsAAAFeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAAAbAAACXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAABsAAAIbAAABGwAAAV4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXgAAAA8AAAAPAAAADwAAAF4AAABeAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAF4AAAAPAAAADwAAAA8AAAAaAAADGgAAAA== - -2,-1: - ind: -2,-1 - tiles: UQAAA1EAAANeAAAAXgAAAF4AAABeAAAAFgAAABYAAAIWAAADFgAAAxYAAAJbAAAAWwAAAlsAAAI5AAAAOQAAAFEAAAJRAAADUQAAA1EAAAJRAAABFgAAAzkAAAAWAAACFgAAAzkAAAAWAAABWwAAAFsAAAFbAAAAOQAAADkAAAAXAAADFwAAARcAAAAXAAADUQAAARYAAAEWAAABFgAAABYAAAEWAAABFgAAAlsAAABbAAABWwAAAzkAAAA5AAAAFwAAAxcAAAAXAAAAFwAAAlEAAAFeAAAAOQAAABYAAAIWAAACOQAAABYAAANbAAABWwAAAVsAAAI5AAAAOQAAABcAAAAXAAABFwAAABcAAANRAAAAFgAAAxYAAAAWAAAAFgAAAxYAAAIWAAABFgAAAV4AAABeAAAAXgAAABIAAABRAAADUQAAAFEAAANRAAADUQAAARYAAAI5AAAAFgAAAxYAAAM5AAAAFgAAABYAAAM5AAAAFgAAAl4AAAASAAAAFgAAARYAAAIWAAADFgAAAF4AAABeAAAAFgAAAxYAAAAWAAABFgAAABYAAAIWAAABFgAAAxYAAAJeAAAAEgAAADkAAAAWAAADFgAAATkAAAAWAAACFgAAAjkAAAAWAAACFgAAAzkAAAAWAAADFgAAADkAAAAWAAACXgAAABIAAAAWAAABFgAAABYAAAIWAAACFgAAABYAAAIWAAAAFgAAAxYAAAIWAAADFgAAAhYAAAMWAAABFgAAAF4AAAASAAAAOQAAABYAAAMWAAAAOQAAABYAAAMWAAABOQAAABYAAAEWAAAAOQAAABYAAAMWAAABOQAAABYAAAJeAAAAEgAAAF4AAABeAAAAFgAAARYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAFeAAAAXgAAAF4AAABEAAAARAAAA0QAAABEAAAARAAAAUQAAAFEAAACRAAAA0QAAABEAAACRAAAAkQAAAFEAAADRAAAA0QAAABEAAACRAAAA0QAAABEAAADRAAAAEQAAAJEAAADRAAAAUQAAAJEAAADRAAAA0QAAANEAAADRAAAAUQAAABEAAADRAAAAUQAAABEAAAARAAAA0QAAAFEAAADRAAAA0QAAABEAAACRAAAAEQAAAJEAAADRAAAAkQAAANEAAADRAAAAEQAAAJeAAAAHQAAAh0AAAMdAAACXgAAAB0AAAMdAAADXgAAAEQAAABEAAABRAAAAV4AAAAdAAABHQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -2,0: - ind: -2,0 - tiles: XgAAAEQAAABEAAACRAAAAkQAAABEAAABRAAAAV4AAABEAAAARAAAAUQAAAIrAAAAKwAAAisAAAFeAAAAXgAAAF4AAABEAAADSwAAAEsAAABLAAAASwAAAEQAAAJEAAACRAAAAUQAAAFEAAACKwAAAysAAAArAAAAXgAAAF4AAABeAAAARAAAAUsAAABLAAAASwAAAEsAAABEAAADXgAAAEQAAAJEAAAARAAAAysAAAMrAAABKwAAA14AAABeAAAAXgAAAEQAAANLAAAASwAAAEsAAABLAAAARAAAAl4AAABEAAAARAAAA0QAAAIrAAAAKwAAAysAAAFeAAAAXgAAAF4AAABEAAADSwAAAEsAAABLAAAASwAAAEQAAAJEAAAARAAAAkQAAANEAAAAXgAAACsAAAIrAAADXgAAAF4AAABeAAAARAAAAkQAAAFEAAADRAAAAkQAAABEAAAAXgAAAEQAAAFEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAAJOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAARAAAA0QAAABEAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACRAAAAV4AAAAaAAACGgAAAhoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABEAAABRAAAA0QAAAFeAAAAGgAAAxoAAAMaAAABGgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAABEAAACXgAAABoAAAIaAAABGgAAA14AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAEQAAABEAAACRAAAA14AAAAaAAABGgAAAhoAAANeAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABEAAABRAAAA0QAAANeAAAAXgAAAB0AAAJeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAARAAAAkQAAABEAAAAXgAAABYAAAIWAAADFgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAEQAAABEAAABRAAAA14AAABeAAAAFgAAARYAAAAmAAAAGwAAAA8AAAAWAAAATgAAAE4AAABeAAAAXQAAAF4AAABEAAACRAAAAUQAAAMWAAABXgAAAF4AAAAWAAADJgAAAA== - -1,-2: - ind: -1,-2 - tiles: XgAAAF4AAABeAAAAXgAAAFsAAAJeAAAAXgAAAF4AAABeAAAARAAAAUQAAABEAAACXgAAAEcAAABHAAAAXgAAAF4AAABbAAABWwAAAlsAAABbAAABWwAAAFsAAANbAAAAXgAAAEQAAAFEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAA1sAAAJbAAAAWwAAAlsAAAFbAAABWwAAAl4AAABEAAACRAAAAEQAAANeAAAAXQAAAF0AAABdAAAAXgAAAFsAAANbAAACWwAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAABXgAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAADRAAAAkQAAABEAAACRAAAAV4AAABdAAAAXgAAAF4AAABEAAACRAAAAkQAAAJEAAADRAAAA0QAAABEAAACRAAAAkQAAANEAAACRAAAAkQAAANeAAAAXgAAAF4AAAAdAAAARAAAAEQAAAJEAAABRAAAAUQAAAJEAAACRAAAAkQAAANEAAACRAAAA0QAAAFEAAADRAAAAUQAAAJEAAACRAAAA0QAAABEAAABRAAAA0QAAANEAAABRAAAAUQAAAJEAAADRAAAAEQAAAFEAAACRAAAAEQAAABEAAAARAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAKQAAACkAAAEpAAABRAAAAkQAAAFEAAADRAAAAEQAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACkAAAApAAADKQAAAEQAAABEAAAARAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAAApAAADKQAAAikAAAFEAAAARAAAAEQAAAFeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAABXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADRAAAAV4AAABeAAAATgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAANeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAACXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAAV4AAABeAAAAXgAAAA== - -2,-2: - ind: -2,-2 - tiles: UQAAAVEAAABRAAAAUQAAAFEAAAFRAAACUQAAA1EAAABRAAABUQAAAVEAAANeAAAAXgAAAF4AAABeAAAAXgAAAFEAAANRAAACUQAAA1EAAANRAAAAUQAAA1EAAABRAAADUQAAAVEAAANRAAAAUQAAA1IAAABSAAACUgAAAlIAAANRAAABXgAAAF4AAABeAAAAUQAAAVEAAANRAAACUQAAAFEAAAJRAAADUQAAAlEAAAJSAAADUgAAAFIAAABSAAACUQAAAlEAAABRAAABXgAAAFEAAABRAAAAUQAAAFEAAABRAAACUQAAAlEAAAFeAAAAUgAAA1IAAAFSAAABUgAAAFEAAABRAAABUQAAAl4AAABRAAACUQAAAVEAAAJRAAACUQAAAFEAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAUQAAAFEAAABeAAAAUQAAAlEAAANRAAADUQAAAFEAAABRAAAAUQAAAFEAAABEAAACRAAAA0QAAAFEAAABUQAAA1EAAAJRAAADUQAAAVEAAAJRAAAAUQAAA1EAAAFRAAACUQAAAVEAAAJRAAABRAAAAUQAAAFEAAACRAAAA14AAABRAAAAUQAAAF4AAABRAAABUQAAA1EAAANRAAACUQAAAlEAAAFRAAAAUQAAAEQAAANEAAADRAAAAkQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAALgAAABYAAANeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAATgAAAE4AAABeAAAAXgAAABYAAAMuAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAuAAAAFgAAAV4AAABdAAAAXgAAAFsAAABbAAADWwAAAxYAAAM5AAAAFgAAACIAAAAiAAAAIgAAACIAAAAiAAAAFgAAAS4AAABeAAAAAAAAAF4AAABbAAAAWwAAAVsAAAEWAAACFgAAAxYAAABeAAAAIgAAACIAAAAiAAAAIgAAAC4AAAAWAAADXgAAAAAAAABeAAAAWwAAAlsAAAJbAAADFgAAADkAAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABLgAAAF4AAAAAAAAAXgAAABYAAAAWAAAAFgAAARYAAAEWAAAAFgAAAlsAAANbAAACWwAAAzkAAAA5AAAAUQAAA1EAAAJeAAAAXQAAAF4AAAAWAAADOQAAABYAAAMWAAAAOQAAABYAAAFbAAACWwAAAFsAAAM5AAAAOQAAAA== - -3,-2: - ind: -3,-2 - tiles: UQAAAFEAAAJRAAACUQAAA1EAAANRAAABUQAAAlEAAABRAAADUQAAAVEAAANRAAABUQAAAlEAAAJRAAABUQAAAlEAAANRAAACUQAAAFEAAABRAAAAUQAAAFEAAAFRAAAAUQAAAFEAAAJRAAADUQAAA1EAAAJRAAAAUQAAA1EAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAA14AAABeAAAAXgAAAFEAAAFeAAAAXgAAAF4AAABRAAADXgAAABcAAAAXAAADFwAAABcAAAIXAAABXgAAAFUAAAAWAAAAXgAAAFEAAAFRAAACUQAAAVEAAABRAAABUQAAAl4AAAAXAAABFwAAAxcAAAMXAAABFwAAA14AAABVAAAAFgAAAV4AAABRAAABUQAAA1EAAAJRAAABUQAAAlEAAANeAAAAUQAAA1EAAAJRAAADUQAAA1EAAAJRAAADVQAAAhYAAAJeAAAAUQAAAFEAAAFRAAADUQAAAVEAAAFRAAAAXgAAAFEAAAJRAAABUQAAAVEAAANRAAABXgAAABYAAAFeAAAAXgAAAF4AAAAuAAAAXgAAAF4AAABRAAACUQAAAV4AAABRAAAAUQAAAlEAAAFRAAADUQAAAV4AAABeAAAAXgAAAF4AAAAuAAAAFgAAAi4AAABeAAAAXgAAAF4AAABeAAAAUQAAAlEAAAFRAAABXgAAAF4AAABeAAAAKQAAASkAAABeAAAAXgAAAC4AAAAWAAACLgAAABYAAAEuAAAAXgAAAF4AAABeAAAAXgAAAF4AAAApAAABKQAAASkAAAEpAAACFgAAAi4AAAAWAAABLgAAABYAAAAuAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAKQAAAikAAAEpAAACKQAAAF4AAAAWAAAALgAAABYAAAMuAAAAFgAAAy4AAABeAAAAXgAAAF4AAABeAAAAXgAAACkAAAAhAAACIQAAACEAAAAWAAABLgAAABYAAAIuAAAAFgAAAi4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAAApAAACIQAAAiEAAAIhAAADFgAAAhYAAAIuAAAAFgAAAC4AAAAWAAACLgAAAF4AAABeAAAAXgAAAF4AAABeAAAAKQAAAiEAAAEpAAABKQAAAF4AAAAuAAAAFgAAAS4AAAAWAAAALgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAACkAAAEhAAABKQAAAikAAANeAAAAFgAAAi4AAAAWAAAALgAAABYAAAAuAAAAAAAAAF0AAABeAAAAXgAAAF4AAAAWAAABFgAAARYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABXgAAAA== - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAAABeAAAAXgAAAF4AAAAWAAACFgAAAhYAAANeAAAAJQAAACUAAAAlAAAAJQAAAF4AAABRAAADUQAAAgAAAAAAAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAABXgAAACUAAAAlAAAAJQAAACUAAABRAAADUQAAAVEAAAEAAAAAXQAAAF4AAABeAAAATgAAAEQAAANEAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAABcAAAMXAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAAFeAAAAUQAAAFEAAAMXAAAAFwAAABcAAAAXAAAAFwAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAACXgAAAFEAAAFRAAACFwAAAxcAAAMXAAACFwAAAhcAAANeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAAV4AAABRAAAAUQAAAFEAAANRAAABUQAAAVEAAABRAAABXgAAAF4AAABeAAAATgAAAF4AAABEAAADRAAAAUQAAAJeAAAAUQAAAFEAAAFRAAADUQAAAV4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAARAAAAkQAAANEAAABXgAAAEkAAANeAAAASQAAAl4AAABeAAAAFgAAARYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAAl4AAABJAAAASQAAAUkAAAFJAAABXgAAABYAAAIWAAACXgAAAF4AAABeAAAAXgAAAE4AAABEAAACRAAAAkQAAANeAAAASQAAAEkAAABJAAACSQAAAF4AAAAWAAAAFgAAA14AAABeAAAATgAAAE4AAABeAAAARAAAAkQAAAJEAAABRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAkQAAAJEAAABRAAAAEQAAABEAAACRAAAAUQAAANEAAADXgAAAF4AAAAEAAABBAAAAl4AAABEAAACRAAAAEQAAANEAAABRAAAAkQAAAJEAAABRAAAAUQAAABEAAABRAAAAV4AAABeAAAABAAAAgQAAAJeAAAARAAAAEQAAABEAAABRAAAA0QAAANEAAADRAAAA0QAAABEAAADRAAAAUQAAAJeAAAAXgAAAAQAAAIEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAACXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA== - -2,1: - ind: -2,1 - tiles: GwAAAg8AAAAWAAABTgAAAE4AAABeAAAAXgAAAF4AAABEAAACRAAAAEQAAAAdAAAAHQAAA14AAAAWAAAAFgAAAhoAAAIaAAABFgAAABYAAAIWAAAAGwAAAxsAAAAbAAACRAAAAEQAAANEAAADHQAAAh0AAAJeAAAAFgAAABYAAAIaAAACGgAAABYAAAEWAAAAFgAAARsAAAIbAAABGwAAA0QAAANEAAADRAAAA0QAAAFEAAADFgAAARYAAAMWAAABGwAAAQ8AAAAWAAABTgAAAE4AAABeAAAAXgAAAF4AAABEAAACRAAAAkQAAAJEAAACRAAAAhYAAAAWAAADFgAAAxsAAAIPAAAAFgAAAE4AAABOAAAAXgAAAF0AAABeAAAARAAAAUQAAAFEAAAAHQAAAB0AAABeAAAAFgAAAhYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAEQAAABEAAACRAAAAB0AAAAdAAABXgAAABYAAAIWAAABXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABEAAADRAAAAEQAAAAWAAACXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAAUQAAABEAAADXgAAAF4AAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAA14AAAAxAAAAMQAAADEAAAAxAAAAFgAAARYAAAAWAAABFgAAAxYAAAEWAAABFgAAAEQAAABEAAACRAAAAkQAAAEaAAAAGgAAAhoAAAMaAAAAGgAAAhYAAAIWAAACFgAAAhYAAAAWAAAAFgAAABYAAAFeAAAARAAAAkQAAABEAAABGgAAAxoAAAAaAAABGgAAAhoAAAEWAAAAFgAAAxYAAAJeAAAAFgAAAhYAAAMWAAADXgAAAEQAAAFEAAABRAAAARoAAAMaAAAAGgAAARoAAAIaAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAV4AAABEAAACRAAAAEQAAABeAAAAGgAAAhoAAAMaAAADXgAAAEQAAAJEAAABRAAAA0QAAANEAAADRAAAA0QAAANEAAAARAAAAUQAAAJEAAAARAAAAUQAAABEAAADRAAAAUQAAAJEAAADRAAAAEQAAANEAAAARAAAAUQAAABEAAAARAAAAUQAAAFEAAAARAAAAEQAAAJEAAABRAAAA0QAAAFEAAADRAAAA0QAAABEAAACRAAAAUQAAAJEAAABRAAAAEQAAANEAAABRAAAA0QAAABEAAAARAAAAkQAAANEAAADRAAAAg== - -3,-3: - ind: -3,-3 - tiles: XgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFcAAABXAAAAVwAAAFEAAANXAAAAVwAAAFcAAABeAAAAUQAAA1EAAAJRAAADUQAAA14AAABeAAAAXgAAAF4AAABXAAAAVwAAAF4AAABRAAAAXgAAAFcAAABXAAAAXgAAAFEAAANXAAAAVwAAAFEAAANeAAAAXgAAAF4AAABeAAAAVwAAAFcAAABXAAAAUQAAA1cAAABXAAAAVwAAAF4AAABRAAADVwAAAFcAAABRAAABXgAAAF4AAABeAAAAXgAAAFcAAABXAAAAXgAAAFEAAABeAAAAVwAAAFcAAABeAAAAUQAAAVEAAANRAAACUQAAA14AAABOAAAAXgAAAF4AAABXAAAAVwAAAFcAAABRAAABUQAAA1EAAABRAAABXgAAAF4AAABRAAABXgAAAF4AAABOAAAATgAAAF4AAABeAAAAVwAAAFcAAABeAAAAUQAAA1EAAAFRAAAAUQAAAl4AAABRAAAAUQAAA1EAAAJeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAJRAAACUQAAAVEAAABRAAABUQAAAlEAAANeAAAAUQAAAFEAAABRAAAAXgAAABYAAANeAAAATgAAAF4AAABbAAADWwAAAlsAAANRAAADUQAAA1EAAAJRAAABXgAAAF4AAABRAAAAXgAAAF4AAAAWAAADXgAAAF4AAABeAAAAWwAAAFsAAANbAAAAXgAAAFEAAAFRAAAAUQAAA1EAAAFRAAABUQAAAFEAAANRAAAAFgAAAl4AAAAWAAABFgAAABYAAAMWAAAAFgAAA14AAABRAAACUQAAAFEAAAFRAAADUQAAAVEAAANRAAACUQAAAhYAAAFeAAAAFgAAAhYAAAEWAAAAFgAAAxYAAABeAAAAUQAAAlEAAAJRAAAAUQAAAVEAAAFRAAACUQAAAFEAAAFeAAAAXgAAAF4AAABeAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAUQAAAFEAAAFeAAAAXgAAAF4AAABRAAABUQAAAFEAAABRAAADUQAAAVEAAAJRAAACUQAAAVEAAAFRAAAAUQAAAlEAAAJRAAAAUQAAA1EAAAFRAAABUQAAAg== - -2,-3: - ind: -2,-3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAFgAAAhYAAAEWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAABYAAAMWAAACFgAAAU4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAB0AAAEdAAABHQAAAh0AAAAWAAADFgAAABYAAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAAAdAAACHQAAAB0AAAMdAAADFgAAAhYAAAMWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAHQAAADkAAAAdAAACHQAAAV4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAl4AAAAWAAACFgAAARYAAAIWAAADXgAAAB0AAAIdAAAAMgAAADIAAAJRAAAAUQAAAlEAAAJeAAAAFgAAAhYAAAAWAAAAFgAAABYAAAIWAAABFgAAABYAAAMdAAAAOQAAADIAAAQyAAACUQAAAVEAAANRAAADFgAAABYAAAAWAAAAFgAAAhYAAAEWAAACFgAAARYAAAAWAAACHQAAAh0AAAAyAAABMgAABVEAAAJRAAAAUQAAA14AAAAWAAADFgAAAhYAAAMWAAABFgAAABYAAAIWAAADXgAAAB0AAAEdAAABKwAAAysAAANRAAADUQAAAlEAAAFeAAAAXgAAAF4AAABeAAAAFgAAAl4AAABeAAAAXgAAAF4AAAAdAAAAOQAAACsAAAIrAAACUQAAA1EAAAFRAAADXgAAAFEAAAJRAAABUQAAAVEAAAJRAAADUQAAAFEAAAJeAAAAHQAAAR0AAAErAAAAKwAAAlEAAAFRAAABUQAAAV4AAABRAAAAUQAAAlEAAAJRAAACUQAAAFEAAANRAAAAUQAAAx0AAAM5AAAAHQAAAB0AAANRAAABXgAAAF4AAABeAAAAUQAAA1EAAAFRAAABUQAAA1EAAANRAAAAUQAAA1EAAAMdAAADHQAAAB0AAAIdAAADUQAAAVEAAANRAAACUQAAA1EAAABRAAACUQAAAFEAAABRAAADUQAAAFEAAAFeAAAAHQAAADkAAAAdAAACHQAAAA== - -1,-3: - ind: -1,-3 - tiles: XgAAAF4AAABeAAAAFQAAABUAAAAVAAAAFQAAABUAAABeAAAARAAAAEQAAABEAAADHgAAA1sAAAJbAAADWwAAAE4AAABOAAAAXgAAABUAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAB4AAABbAAACWwAAA1sAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABEAAAARAAAA0QAAAIeAAADWwAAAVsAAAJbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAAAHgAAAV4AAABeAAAAXgAAADkAAAAdAAACHQAAATkAAAAdAAABHQAAAjkAAAAdAAABHQAAAUQAAABEAAADRAAAAR4AAAFbAAABWwAAAVsAAAAdAAAAHQAAAx0AAAIdAAABHQAAAB0AAAAdAAACHQAAAx0AAABEAAADRAAAAUQAAAEeAAACWwAAAFsAAANbAAABOQAAAB0AAAEdAAAAOQAAAB0AAAEdAAADOQAAAB0AAAIdAAACRAAAAUQAAABEAAACHgAAA1sAAAFbAAAAWwAAADIAAAQyAAAAKAAAACgAAAAoAAAAKAAAAB0AAAEdAAACXgAAAEQAAABEAAAARAAAA14AAABeAAAAXgAAAF4AAAAyAAACMgAAAigAAAAoAAAAKAAAACgAAAA5AAAAHQAAAl4AAABEAAADRAAAAEQAAANeAAAAFgAAAhYAAAEWAAABMgAAAjIAAAIoAAAAKAAAACgAAAAoAAAAHQAAAh0AAANeAAAARAAAAEQAAAFEAAADXgAAABYAAAEWAAACFgAAAisAAAArAAAAQwAABUMAAANDAAAGQwAABx0AAAMdAAADXgAAAEQAAANEAAAARAAAAV4AAAAWAAABFgAAABYAAAIrAAAAKwAAAkMAAAtDAAAGQwAAC0MAAAA5AAAAHQAAAF4AAABEAAACRAAAAUQAAAFeAAAAXgAAABYAAABeAAAAKwAAAisAAAFDAAALQwAADEMAAANDAAAEHQAAAB0AAAFeAAAARAAAA0QAAAFEAAADTAAAA0wAAAFMAAABTAAAAzkAAAAdAAADHQAAAjkAAAAdAAAAHQAAATkAAAAdAAACHQAAAkQAAABEAAADRAAAAkwAAAFMAAADTAAAAEwAAAEdAAADHQAAAh0AAAAdAAAAHQAAAx0AAAMdAAADHQAAAB0AAAJEAAACRAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAOQAAAB0AAAIdAAAAOQAAAB0AAAEdAAABOQAAAB0AAAIdAAAARAAAAUQAAABEAAADXgAAAEcAAABHAAAAXgAAAA== - 1,-2: - ind: 1,-2 - tiles: RwAAAEcAAABeAAAARAAAAEQAAABEAAADRAAAA0QAAABEAAAASwAAAEkAAABJAAAASQAAAUkAAAFJAAADSwAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAAUQAAANEAAABRAAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEsAAABdAAAAXQAAAF4AAABEAAABRAAAAkQAAAAcAAAAHAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABeAAAARAAAA0QAAAFEAAABHAAAABwAAABeAAAAFgAAAhYAAAEWAAABFgAAAhYAAAMWAAADFgAAAF4AAABdAAAAXgAAAEQAAANEAAADRAAAAxwAAAAcAAAAFgAAABYAAAAWAAABFgAAAxYAAAEWAAAAFgAAAhYAAANeAAAAXgAAAF4AAABEAAAARAAAAkQAAAFeAAAAXgAAAF4AAAAWAAADFgAAAhYAAAMWAAACFgAAAxYAAAEWAAAARAAAAkQAAAJEAAAARAAAAkQAAABEAAACXgAAAF4AAABeAAAAFgAAABYAAAMWAAAAFgAAAhYAAAMWAAACFgAAAUQAAANEAAAARAAAA0QAAAJEAAABRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAV4AAABEAAABRAAAAUQAAANEAAADRAAAAEQAAABeAAAASgAAAUoAAAFKAAACSgAAAUoAAAEbAAADGwAAAyYAAAAmAAAAXgAAAEQAAABEAAABRAAAAUQAAAFEAAADXgAAAF4AAABKAAACRAAAAkQAAANEAAABGwAAABsAAANbAAADWwAAAl4AAABeAAAARAAAA0QAAAJEAAACRAAAAR0AAAFeAAAASgAAA0QAAAFEAAACRAAAAxsAAAAbAAAAWwAAAVsAAANeAAAAXgAAAEQAAAJEAAAARAAAAUQAAAAdAAACHQAAAUoAAABKAAAASgAAAUoAAAEbAAAAGwAAAVsAAABbAAAAXgAAAF4AAABEAAACRAAAAkQAAABEAAAAHQAAAR0AAANKAAABSgAAA0oAAANKAAADGwAAAhsAAANbAAABWwAAAF4AAABeAAAARAAAA0QAAAFEAAABRAAAAB0AAABeAAAASgAAAkQAAABEAAADRAAAABsAAAIbAAAAWwAAAFsAAAFeAAAAXgAAAEQAAAFEAAACRAAAAEQAAAFeAAAAXgAAAEoAAANEAAADRAAAAkQAAAMbAAADGwAAAVsAAAFbAAADXgAAAF4AAABEAAABRAAAAUQAAANEAAABXgAAAEoAAABKAAABSgAAAkoAAAJKAAAAGwAAAhsAAAEmAAAAJgAAAA== - 0,-3: - ind: 0,-3 - tiles: WwAAAVsAAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAAIAAAACAAAAAgAAAFsAAAJbAAADXgAAAEcAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAADWwAAAE4AAABeAAAAXgAAAE4AAABeAAAAJQAAACUAAAAlAAAATgAAAF4AAABeAAAAXgAAAF4AAABaAAAAXgAAAF4AAABeAAAARwAAAF4AAABOAAAAXgAAACUAAAAlAAAAJQAAAF4AAABeAAAAXgAAAF4AAABeAAAAWgAAA1sAAANbAAAATgAAAF4AAABeAAAAXgAAAF4AAAAlAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAFoAAAFbAAAAWwAAA14AAABeAAAAXgAAAFUAAAJRAAADUQAAAlEAAAJVAAACXgAAAF4AAABOAAAATgAAAF4AAABaAAABWwAAAlsAAAFeAAAAXgAAAF4AAABeAAAAUQAAAVIAAAFRAAADXgAAAF4AAABeAAAATgAAAE4AAABeAAAAWgAAAV4AAABeAAAAXgAAAE4AAABeAAAAVQAAAFEAAABSAAAAUQAAA1UAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAANbAAACXgAAAF4AAABRAAAAUgAAA1EAAANeAAAAXgAAABEAAAARAAAAEQAAAF4AAAAiAAAAXgAAAF4AAABbAAABWwAAAVsAAAJeAAAAUQAAAVIAAAFRAAADXgAAABEAAAARAAAAEQAAAF4AAABeAAAAIgAAABYAAAFeAAAAWwAAAlsAAAFbAAAAXgAAAFEAAANRAAACUQAAAF4AAAARAAAAEQAAABEAAABeAAAAIgAAACIAAABeAAAAXgAAAF4AAABbAAAAXgAAAF4AAABeAAAAUQAAAF4AAABeAAAAXgAAABEAAABeAAAAXgAAAF4AAABeAAAATAAAAEwAAAJMAAAATAAAA0wAAAJMAAAATAAAAkwAAABMAAABTAAAA0wAAANMAAAATAAAAEwAAAJMAAADTAAAAUwAAANMAAACTAAAAkwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAAJMAAADTAAAAEwAAANMAAABTAAAAkwAAAJeAAAAEgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAAF4AAABeAAAAXgAAAF4AAABeAAAAFwAAAV4AAABeAAAAEgAAABIAAAASAAAAEgAAAF4AAAAxAAAAMQAAADEAAAAxAAAAMQAAAF4AAAAXAAABFwAAARcAAAMXAAACXgAAAA== - 1,-3: - ind: 1,-3 - tiles: AgAAAAIAAAACAAAARAAAAUQAAANEAAACXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAABEAAADRAAAAV4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAACWgAAAF4AAABEAAACRAAAAUQAAANeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAVoAAAJeAAAARAAAAkQAAABEAAABXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAADWgAAAUQAAABEAAABRAAAA14AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAADWgAAAF4AAABEAAADRAAAAkQAAANeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAA1oAAAFeAAAARAAAAEQAAAFEAAABXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAAl4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAIgAAAF4AAABEAAACRAAAAkQAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAIgAAACIAAABeAAAARAAAAkQAAAJEAAABXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIAAAAiAAAAXgAAAEQAAANEAAACRAAAAl4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAXgAAAF4AAABEAAAARAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATAAAAUwAAAFMAAADRAAAA0QAAABEAAABRAAAAUQAAAFEAAABSwAAAEsAAABLAAAASwAAAEsAAABLAAAASwAAAEwAAAFMAAACTAAAAUQAAAJEAAACRAAAAUQAAAJEAAADRAAAAUsAAABJAAABSQAAAEkAAAFJAAADSQAAA0sAAAAwAAAAMAAAAF4AAABEAAAARAAAAEQAAAJEAAABRAAAAikAAAFLAAAASQAAAEkAAAJJAAACSQAAAEkAAAJLAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAADRAAAA0QAAAApAAADSwAAAEkAAAJJAAADSQAAAUkAAAJJAAACSwAAAA== - -1,-5: - ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAA== - -1,-4: - ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAFgAAAhYAAAAWAAACFgAAAhYAAAFeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAFgAAAhYAAAEcAAAAHAAAABwAAAAWAAABFgAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAABYAAAMWAAABHAAAABwAAAAcAAAAFgAAABYAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAFgAAAhYAAAMWAAADFgAAAhYAAAJeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF4AAAAWAAABFgAAARYAAABeAAAAXgAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAA0QAAAJEAAADXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEQAAAJEAAABRAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABEAAABRAAAAkQAAABeAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFEAAAJRAAACNAAAADQAAAA0AAAAXgAAAEQAAANEAAADRAAAA14AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABRAAABUQAAAzQAAAA0AAAANAAAAF4AAABEAAADRAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAUQAAAVEAAAM0AAAANAAAADQAAABEAAAARAAAAUQAAANEAAAATgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAA14AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAAAVAAAAFQAAABUAAAAVAAAAFQAAAEQAAAFEAAABRAAAAkQAAANeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAFQAAABUAAAAVAAAAFQAAABUAAABeAAAARAAAAEQAAAJEAAABHgAAAV4AAABeAAAAXgAAAA== - -4,-3: - ind: -4,-3 - tiles: BAAAAQQAAAIEAAABBAAAAAQAAAEEAAABBAAAAgQAAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAACBAAAAgQAAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAAAEAAAABAAAAgQAAAEEAAABBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABOAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAABYAAAFeAAAAXgAAAF4AAABHAAAARwAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAhYAAAMWAAABRwAAAEcAAABOAAAAXgAAAE4AAABOAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAFgAAAhsAAAIWAAADGwAAA0cAAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAACFgAAABYAAAFHAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAAAWAAABRwAAAEcAAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAABEAAABRAAAAV4AAABRAAAAUQAAAlEAAABRAAAAUQAAAw== - -4,-2: - ind: -4,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAAFFAAADRAAAAFEAAANRAAACUQAAAlEAAAJRAAACUQAAAAAAAAAAAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAADRAAAAUQAAAFeAAAAUQAAAlEAAAFRAAAAUQAAAVEAAAMEAAABBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAEkAAANeAAAABAAAAgQAAAFeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAACRAAAAEQAAAJeAAAASQAAAEkAAANJAAABSQAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACRQAAAUQAAAJEAAADXgAAAEkAAAFJAAADSQAAAEkAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAkUAAAFEAAACRAAAAl4AAABJAAAASQAAAUkAAABJAAADXgAAAF4AAABOAAAAXgAAAF4AAABeAAAARAAAAkQAAAFFAAACRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAFEAAACRAAAA0QAAAJEAAACXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAOQAAADkAAABOAAAABAAAAgQAAAFeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGQAAATkAAAA5AAAAGQAAAQQAAAIEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABkAAAMZAAABGQAAAhkAAAMFAAAABAAAAQQAAAIEAAAABAAAAgQAAAIEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAAEAAABBAAAAQQAAAEEAAABBAAAAQQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAAABAAAAQQAAAIEAAABBAAAAAQAAAEEAAABXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAAAFAAAABAAAAgQAAAEFAAAABAAAAgQAAAAEAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAEEAAAABAAAAgQAAAEEAAACBAAAAQQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAA== - -3,-4: - ind: -3,-4 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAACBAAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAEEAAAABAAAAgAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAQQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAABAAAAQUAAAAEAAACBAAAAQQAAAEEAAABBAAAAgQAAAAEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAAQAAAAEAAABBAAAAQQAAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAA== - -4,-4: - ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAAEAAAABAAAAAQAAAEEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAAEAAACBAAAAAQAAAEEAAAABAAAAgQAAAEEAAABBAAAAAQAAAEEAAABBAAAAgQAAAIAAAAABAAAAQQAAAAEAAAABAAAAgQAAAIEAAACBAAAAQQAAAAEAAAABAAAAgQAAAAEAAACBAAAAAQAAAAEAAAABAAAAgQAAAIEAAAABAAAAAQAAAIEAAABBAAAAQQAAAIEAAABBAAAAgQAAAIEAAABBAAAAQQAAAEEAAAABAAAAgQAAAIEAAABBAAAAgQAAAEEAAAABAAAAAQAAAIEAAACBAAAAAQAAAEEAAAABAAAAgQAAAAEAAABBAAAAgQAAAAEAAACBAAAAQQAAAAEAAAABAAAAgQAAAEEAAABBAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 0,-4: - ind: 0,-4 - tiles: AAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAAIAAABdAAAAXQAAAF4AAABHAAAARwAAAEcAAABHAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAAACAAAAAAAAAF0AAABeAAAARwAAAEcAAABHAAAARwAAAF4AAABdAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAAgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXQAAAF0AAABdAAAAXQAAAF4AAAACAAAAAgAAAAIAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAgAAAAIAAAACAAAAXgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAAIAAAACAAAAAgAAAA== - 1,-4: - ind: 1,-4 - tiles: XQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFgAAAhYAAAAWAAAAFgAAAxYAAAJeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAFgAAABYAAAIWAAABFgAAABYAAAMWAAABFgAAAl4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAEWAAACFgAAARYAAAMWAAAAFgAAAhYAAAFeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFgAAARYAAAIWAAACFgAAABYAAAFeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAA0QAAAJEAAAAXgAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANEAAACRAAAAl4AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAABRAAAA0QAAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAABXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAACAAAAXgAAAEQAAAJEAAABRAAAA14AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAgAAAF4AAABEAAADRAAAAUQAAAJeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAIAAAACAAAARAAAA0QAAANEAAADXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAACAAAAXgAAAEQAAAJEAAACRAAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAgAAAF4AAABEAAADRAAAAkQAAAJeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAIAAABeAAAARAAAAkQAAAFEAAABXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-2: - ind: 2,-2 - tiles: HgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmAAAAJgAAACYAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAWwAAAFsAAAFbAAADXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFsAAAFbAAACWwAAAl4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABbAAABWwAAA1sAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAAJbAAADXgAAADoAAAA6AAAAXgAAADoAAAA6AAAAXgAAADoAAAA6AAAAXgAAADoAAAA6AAAAXgAAAFsAAANbAAADWwAAA14AAAA6AAAAOgAAAF4AAAA6AAAAOgAAAF4AAAA6AAAAOgAAAF4AAAA6AAAAOgAAAF4AAABbAAACWwAAAlsAAABeAAAAXgAAAEQAAAFeAAAAXgAAAEQAAANeAAAAXgAAAEQAAAJeAAAAXgAAAEQAAABeAAAAJgAAACYAAAAmAAAAXgAAAEQAAANEAAABRAAAA0QAAABEAAABRAAAAUQAAAFEAAAARAAAAkQAAANEAAADXgAAAA== - 2,-3: - ind: 2,-3 - tiles: XQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAARAAAA14AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABeAAAARAAAA0QAAANEAAAARAAAA0QAAAJdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAEQAAAFEAAABRAAAAkQAAANEAAADXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA10AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABeAAAAWwAAAVsAAABeAAAARAAAAEQAAAJdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAFsAAANbAAABRAAAAkQAAABEAAACXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABbAAADWwAAA14AAABEAAABRAAAAl0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAB4AAAJeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAeAAACXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAHgAAAV4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,-2: - ind: 3,-2 - tiles: AAAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAFgAAARYAAAEWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAABYAAAMWAAACFgAAA14AAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAABEAAADRAAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAAxYAAAEWAAACOgAAADoAAAA6AAAAOgAAADoAAABeAAAASwAAAEsAAABLAAAASwAAAEsAAAAWAAABFgAAAhYAAAAWAAABXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAEsAAABLAAAASwAAAEsAAABLAAAAFgAAAhYAAAAWAAADFgAAA14AAABeAAAAXgAAADoAAABeAAAAXgAAAF4AAABLAAAASwAAAEsAAABLAAAASwAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAASwAAAEsAAABLAAAASwAAAEsAAABeAAAAWwAAAFsAAAJbAAACXgAAAA== - 4,-2: - ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAEaAAABGgAAARoAAABeAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRAAABUQAAAlEAAANRAAACXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAARoAAAMaAAACGgAAAxoAAANdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAABeAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,-3: - ind: 4,-3 - tiles: AAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-4: - ind: 2,-4 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAFsAAAJbAAACWwAAAl4AAABbAAABXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABbAAADWwAAAVsAAABeAAAAWwAAAQ== - 3,-4: - ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABbAAADWwAAA14AAABbAAAAWwAAA1sAAANeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAWwAAAVsAAAFeAAAAWwAAAFsAAANbAAACXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAA== - -2,2: - ind: -2,2 - tiles: TgAAAF4AAABeAAAAXgAAAF4AAAAaAAAAGgAAARoAAAAaAAAAGgAAAxoAAABEAAABRAAAAkQAAAEaAAADGgAAA14AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAGgAAAxoAAAIaAAACRAAAA0QAAABEAAABGgAAABoAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAV4AAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAAF4AAABEAAAARAAAAEQAAANeAAAARAAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAFEAAAARAAAAkQAAAFeAAAARAAAAUQAAANEAAABXgAAAEQAAAFeAAAAXgAAAF4AAABOAAAARAAAAkUAAAJFAAAARQAAAUUAAAFEAAACRAAAAkQAAANEAAADRAAAAV4AAABEAAACXgAAAF4AAABOAAAAXgAAAEQAAABFAAABRQAAAEUAAAFFAAABRAAAAUQAAABEAAACRAAAAUQAAABeAAAARAAAAF4AAABeAAAATgAAAF4AAABEAAAARAAAA0QAAABEAAADRAAAA0QAAABeAAAARAAAA0QAAABEAAADRAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAkQAAABEAAAAXgAAAF4AAABeAAAAHQAAAh0AAAAdAAADHQAAAR0AAAAdAAACHQAAAR0AAABEAAACRAAAAkQAAANeAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAdAAACRAAAAEQAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAABeAAAAOgAAADoAAABeAAAAXgAAAEQAAANEAAACRAAAA0QAAABEAAADXgAAAF4AAABeAAAAXgAAADoAAAA6AAAAXgAAADoAAAA6AAAAXgAAAF4AAABEAAABRAAAA0QAAANEAAADRAAAA14AAABeAAAAXgAAAB0AAAEdAAADHQAAAx0AAAAdAAAAHQAAAB0AAABeAAAARAAAA0QAAABEAAADRAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAl4AAABeAAAATgAAAF4AAABeAAAAGgAAABoAAAIaAAAAGgAAAhoAAAMaAAACGgAAABsAAABEAAAARAAAAUQAAAFeAAAARAAAAQ== - -1,3: - ind: -1,3 - tiles: RAAAAkQAAAJEAAABRAAAA0QAAABEAAABRAAAAF4AAAAWAAABGgAAAEQAAAFEAAACRAAAASsAAAErAAACKwAAAR0AAAIdAAACXgAAAB0AAAEdAAAAHQAAAB0AAABEAAABXgAAABoAAABEAAACRAAAA0QAAABEAAADRAAAA0QAAAMzAAAAMwAAAF4AAAAzAAAAMwAAADMAAAAdAAACRAAAAF4AAAAaAAACRAAAAkQAAABEAAACRAAAAUQAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAHQAAAEQAAABeAAAAGgAAAEQAAAJEAAABRAAAAkQAAAJEAAABRAAAAjMAAAAzAAAAMwAAADMAAAAzAAAAMwAAAB0AAAJEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAdAAABHQAAAx0AAAIdAAACHQAAAx0AAAEdAAADRAAAAl4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAEQAAAFEAAABXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAAAbAAACGwAAAV0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAGwAAAjoAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAABsAAAI6AAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAAAbAAADOgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAGwAAAhsAAABdAAAAXQAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAXQAAAA== - -2,3: - ind: -2,3 - tiles: TgAAAF4AAABeAAAAGgAAARoAAAAaAAADGgAAAxoAAAMaAAAAGgAAAhsAAABEAAADRAAAAUQAAAJeAAAARAAAAE4AAABeAAAAXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAABoAAAIbAAACRAAAAUQAAAJEAAACXgAAAB0AAAJeAAAAXgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAaAAADGwAAAUQAAANEAAABRAAAAl4AAAAdAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAkQAAAFeAAAAHQAAAk4AAABOAAAAXgAAAEQAAABEAAADRAAAAUQAAANEAAABRAAAA0QAAABeAAAARAAAA0QAAAFEAAAAXgAAAB0AAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAAFEAAACRAAAAEQAAAFEAAADRAAAAEQAAAFEAAAARAAAA14AAAAdAAACXQAAAF0AAABeAAAARAAAA0QAAABEAAABRAAAAUQAAABEAAACRAAAAUQAAABEAAABRAAAAEQAAABeAAAAXgAAAAAAAABdAAAAXgAAABYAAAMWAAADTgAAAE4AAABOAAAAFgAAAhYAAAJeAAAAFgAAABYAAAFeAAAAXgAAAF0AAAAAAAAAAAAAAF4AAAAWAAADFgAAAE4AAABOAAAATgAAABYAAAAWAAACXgAAABYAAAIWAAADXgAAAF0AAAAAAAAAXQAAAF0AAABeAAAAXgAAABYAAABOAAAATgAAAE4AAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF4AAAAWAAACTgAAAE4AAABOAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAARYAAAMWAAABFgAAAxYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - -3,2: - ind: -3,2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAARwAAAEcAAABeAAAAXgAAAF4AAAAAAAAAXgAAAEcAAABHAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAARwAAAEcAAABHAAAAXgAAAEcAAABeAAAAAAAAAF4AAABHAAAARwAAAF4AAABHAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAARwAAAEcAAABeAAAAXgAAAAAAAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAARwAAAEcAAABeAAAARwAAAEcAAABeAAAAXgAAAF4AAABdAAAAXgAAAEcAAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAA== - -3,3: - ind: -3,3 - tiles: XQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABHAAAAXgAAAEcAAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAAEAAAABAAAAAQAAAF4AAABeAAAARwAAAF4AAABHAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAABAAAAAwAAAAMAAABeAAAAXgAAAEcAAABHAAAAXgAAAEcAAABHAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAAwAAAAMAAAADAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - -3,1: - ind: -3,1 - tiles: XgAAAF4AAABeAAAAXgAAAAQAAAIEAAACXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF4AAAAbAAABDwAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAGwAAABoAAANeAAAAXgAAAAQAAAAEAAABBAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAABsAAAIaAAAAXgAAAF4AAAAEAAAABQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAbAAADDwAAAF4AAABeAAAABAAAAgQAAAJdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAA8AAABeAAAAXgAAAF4AAABeAAAABAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAE4AAABEAAACRAAAAkQAAAJEAAACRAAAAkQAAAFEAAAARAAAA14AAABeAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAPAAAADwAAAA8AAAARAAAAEQAAAE8AAAAPAAAADwAAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAADwAAAA8AAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAJEAAAARAAAA0QAAABEAAADRAAAA0QAAANEAAABRAAAA0QAAAJEAAABRAAAAUQAAAJEAAAARAAAA0QAAABEAAABRAAAAEQAAABEAAACRAAAAEQAAAJEAAAARAAAAkQAAABEAAABRAAAAUQAAAFEAAAARAAAAkQAAABEAAAARAAAAUQAAABEAAADRAAAAUQAAAJEAAADRAAAAEQAAAJEAAAARAAAAEQAAANEAAADRAAAAEQAAAFEAAACRAAAAA== - -4,-1: - ind: -4,-1 - tiles: BAAAAgQAAAEEAAACBAAAAQQAAAEEAAACBQAAAAQAAAFeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAUAAAAEAAAABAAAAAQAAAEEAAAABAAAAQQAAAIEAAACXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAIEAAAABAAAAQQAAAIEAAAABAAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAABBAAAAAQAAAEEAAAABAAAAgQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAABBQAAAAQAAAIEAAACBQAAAAQAAAIEAAAAXgAAAF4AAABeAAAAQwAAAEMAAAZDAAACQwAACl4AAAAEAAACBAAAAQQAAAIEAAAABAAAAQQAAAEEAAAABAAAAV4AAABeAAAAXgAAAEMAAAhDAAAAQwAABUMAAAFeAAAABAAAAQQAAAIFAAAABAAAAAQAAAAEAAABBAAAAQQAAAJeAAAAXgAAAF4AAABeAAAAQwAACEMAAAtDAAAJXgAAAAQAAAAEAAACBAAAAQQAAAIEAAAABAAAAQQAAAEEAAACXgAAAF4AAABOAAAAXgAAAEMAAAVDAAAGQwAACl4AAAAEAAAABAAAAAQAAAIEAAACBAAAAQQAAAEFAAAABAAAAl4AAABeAAAATgAAAF4AAABDAAAAQwAAA0MAAANeAAAABAAAAQQAAAAEAAABBAAAAQQAAAAEAAABBAAAAAQAAAFeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAABAAAAAQAAAIEAAABBAAAAQQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAIEAAACBAAAAl4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAABAAAAQQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAQAAAIEAAABXgAAAFsAAANbAAABWwAAAVsAAAJbAAABXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABbAAABXgAAAFsAAANbAAAAWwAAAl4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABbAAAAWwAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -2,4: - ind: -2,4 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF0AAAAAAAAAXQAAAF4AAABdAAAAAAAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAABeAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAA== - -3,4: - ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF0AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXQAAAF0AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF0AAABdAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABdAAAAXQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXQAAAF0AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF0AAABdAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXQAAAF0AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF0AAABdAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABdAAAAXQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAA== - -3,5: - ind: -3,5 - tiles: AAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,5: - ind: -2,5 - tiles: XQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAAAAAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,5: - ind: -1,5 - tiles: XQAAAF0AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,4: - ind: -1,4 - tiles: XQAAAF0AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,0: - ind: -4,0 - tiles: XQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABbAAAAWwAAA1sAAAFbAAADWwAAAV4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAWwAAAVsAAANbAAACWwAAA1sAAANbAAACTgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABbAAADWwAAAlsAAANbAAADXgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABeAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAATgAAAA== - -3,0: - ind: -3,0 - tiles: XgAAAAQAAAEEAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAAAEAAAABAAAAAQAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAABAAAAQQAAAAEAAAABAAAAAQAAAIEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAAEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAAQAAAIEAAACBAAAAgQAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAAAEAAABBAAAAQQAAAAEAAACBAAAAAQAAAJdAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAAABAAAAAQAAAAEAAABBAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAgQAAAEEAAAABAAAAQQAAAIEAAABBAAAAAQAAAAEAAAABAAAAQQAAABdAAAAXQAAAF4AAABeAAAABAAAAgQAAAIEAAABBAAAAQQAAAEEAAACBAAAAgQAAAIEAAABBAAAAQQAAAAEAAAAAAAAAAAAAABdAAAAXgAAAAQAAAAEAAACBAAAAQQAAAEFAAAABAAAAgQAAAIEAAAABAAAAgQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAABAAAAQQAAAIEAAABBAAAAAQAAAEEAAACBAAAAQQAAAEEAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAQAAAAEAAABBAAAAAQAAAAEAAACBAAAAAQAAAEEAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAABAAAAQQAAAIEAAAABAAAAgAAAAAAAAAAAAAAAF4AAABeAAAADwAAAA== - -4,1: - ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAQAAAFeAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAQAAAIEAAACXgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAV4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAFeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAACBAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAQAAAIEAAACBAAAAgQAAAFeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAIEAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAACBAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAAQAAABeAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAEAAACBAAAAQQAAAAEAAABBAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAQAAAIEAAACBAAAAgQAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAABAAAAQQAAAEEAAABAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAEQAAANEAAAARAAAA0QAAAJEAAABRAAAA0QAAABEAAABRAAAAkQAAAMAAAAAXQAAAF0AAAAAAAAAAAAAAF4AAABEAAABRAAAAEQAAANEAAAARAAAAEQAAAFEAAABRAAAAEQAAAJEAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAARAAAAUQAAABEAAACRAAAA0QAAAFEAAAARAAAAEQAAAFEAAADRAAAAA== - -4,2: - ind: -4,2 - tiles: AAAAAAAAAABdAAAAXQAAAF0AAABeAAAARAAAAEQAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAEQAAAFEAAADRAAAAV4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAkQAAANeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAARAAAAkQAAAFEAAACRAAAAkQAAAJEAAABRAAAA0QAAABEAAACXgAAAF0AAABdAAAAXQAAAF4AAABdAAAAAAAAAEQAAAJEAAAARAAAAEQAAANEAAADRAAAAUQAAANEAAADRAAAAl4AAABdAAAAXQAAAF4AAABBAAAAXgAAAF0AAABEAAAARAAAAksAAABLAAAASwAAAEsAAABLAAAARAAAAEQAAAJeAAAAXgAAAF4AAABBAAAAQAAAAEEAAABeAAAARAAAAEQAAAJLAAAASwAAACkAAAFLAAAASwAAAEQAAANEAAAAXgAAAF4AAABBAAAAQAAAAEEAAABAAAAAQQAAAEQAAAJEAAACSwAAAEsAAAApAAACSwAAAEsAAABEAAAARAAAAV4AAABeAAAAXgAAAEEAAABAAAAAQQAAAF4AAABEAAADRAAAAEsAAABLAAAAKQAAAUsAAABLAAAARAAAAUQAAABeAAAAXQAAAF0AAABeAAAAQQAAAF4AAABdAAAARAAAAkQAAAFLAAAASwAAACkAAANLAAAASwAAAEQAAAFEAAAAXgAAAAAAAABdAAAAXQAAAF4AAABdAAAAAAAAAEQAAABEAAADSwAAAEsAAAApAAADSwAAAEsAAABEAAABRAAAAl4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAAUsAAABLAAAAKQAAA0sAAABLAAAARAAAAkQAAAFeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAAJLAAAASwAAAEsAAABLAAAASwAAAEQAAABEAAADXgAAAAAAAABdAAAAXQAAAF4AAABdAAAAAAAAAEQAAABEAAADRAAAAUQAAAFEAAACRAAAA0QAAAFEAAABRAAAAF4AAABdAAAAXQAAAF4AAABBAAAAXgAAAF0AAABEAAABRAAAA0QAAABEAAABRAAAAEQAAANEAAADRAAAAUQAAAFeAAAAXgAAAF4AAABBAAAAQAAAAEEAAABeAAAAXgAAAF4AAAAWAAABXgAAAF4AAABEAAAARAAAA0QAAAJEAAABXgAAAF4AAABBAAAAQAAAAEEAAABAAAAAQQAAAA== - -4,3: - ind: -4,3 - tiles: FgAAABYAAAMWAAACFgAAAEQAAAFEAAADRAAAAkQAAAFEAAACXgAAAF4AAABeAAAAQQAAAEAAAABBAAAAXgAAABYAAAAWAAABFgAAAhYAAAFEAAADRAAAAkQAAABEAAACRAAAA14AAABdAAAAXQAAAF4AAABBAAAAXgAAAF0AAAAWAAABFgAAARYAAAEWAAABXgAAAEQAAABEAAACRAAAAUQAAANEAAACXgAAAAAAAABdAAAAXgAAAF0AAAAAAAAAFgAAARYAAAMWAAADFgAAAF4AAABEAAADRAAAAEQAAAJEAAABRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAA14AAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAFgAAABYAAAMZAAADGQAAAxkAAAMWAAACFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAADGQAAAxkAAAIZAAADFgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAFgAAAxYAAAMWAAACFgAAAhYAAAJeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,4: - ind: 0,4 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAF4AAAA8AAAAPAAAADwAAAAaAAADGgAAAwAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAPAAAADwAAAA8AAAAGgAAAxoAAAIAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAADwAAAA8AAAAPAAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAAAzAAAAMwAAABwAAAAcAAAAHAAAABwAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAMwAAADMAAAAcAAAAHAAAABwAAAAcAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAADMAAAAzAAAAHAAAABwAAAAcAAAAHAAAABwAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAAAzAAAAMwAAAF4AAABeAAAAXgAAABwAAAAcAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAMwAAADMAAABeAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - 1,4: - ind: 1,4 - tiles: GwAAAx4AAAJEAAACRAAAAEQAAAAWAAABFgAAAhYAAAMWAAACXgAAAFsAAANbAAACWwAAAlsAAANeAAAAXgAAAF4AAAAeAAACRAAAA0QAAAJEAAADFgAAARYAAAIWAAABFgAAAl4AAABbAAAAWwAAA1sAAAJbAAABXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAAUQAAANEAAABRAAAAEQAAANeAAAAWwAAAFsAAABbAAABWwAAA14AAABeAAAAXQAAAF4AAABEAAADRAAAAUQAAAFEAAACRAAAAUQAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAGwAAABsAAAFeAAAAXgAAAF4AAABEAAAARAAAAl4AAABEAAAARAAAAEQAAABEAAABTgAAAF4AAABeAAAAXgAAABoAAAAaAAADGgAAAhoAAAJeAAAARAAAAUQAAABEAAABRAAAA0sAAABLAAAARAAAAF4AAABOAAAAXgAAAF4AAAAWAAADFgAAAxYAAAEWAAADXgAAAEQAAAFEAAADXgAAAEQAAANLAAAASwAAAEQAAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAMWAAABFgAAAV4AAABEAAABRAAAAl4AAABEAAADRAAAAUQAAANEAAABXgAAAF4AAAAcAAAAHAAAABwAAAAcAAAAGwAAABsAAAJeAAAAGwAAARsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAHAAAABwAAAAcAAAAHAAAABsAAAAbAAADXgAAABoAAAMaAAACGgAAAxoAAAEaAAAAGgAAABoAAAIaAAACGgAAAhwAAAAcAAAAHAAAABwAAAAbAAAAGwAAA14AAAAaAAABGgAAARoAAAMaAAADGgAAAxoAAAMaAAABGgAAARoAAAMcAAAAXgAAAF4AAABeAAAAGwAAARsAAANeAAAAGgAAABoAAAAaAAACGgAAAxoAAAAaAAAAGgAAABoAAAMaAAABXgAAAF4AAABdAAAAXgAAABsAAAIbAAABXgAAABoAAAEaAAAAGgAAARoAAAIaAAACXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAaAAACGgAAAF4AAABeAAAAXgAAAF4AAAA6AAAAOgAAADoAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAABeAAAAGgAAABoAAAEbAAAAHQAAAx0AAAMbAAADOgAAADoAAAA6AAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAABoAAAMaAAABGwAAAR0AAAIdAAABGwAAAzoAAAA6AAAAOgAAAA== - 2,4: - ind: 2,4 - tiles: TgAAAE4AAABeAAAABAAAAgQAAAAEAAABBAAAAgQAAAIEAAABBAAAAQQAAAEEAAABBAAAAF0AAAAAAAAAAAAAAE4AAABOAAAAXgAAAAQAAAEEAAAABAAAAgQAAAIEAAABBAAAAAQAAAIEAAAAXQAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAEAAAABAAAAQQAAAAEAAACBAAAAgQAAAJdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAARAAAAV4AAABeAAAABAAAAAQAAAAEAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAF4AAAAAAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABeAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,-1: - ind: 4,-1 - tiles: AAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABEAAAARAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAACRAAAAEQAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAEQAAAFEAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAANEAAACRAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAADRAAAAEQAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAEQAAAJEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADRAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAJEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF4AAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,0: - ind: 5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAkQAAAFEAAAARAAAA0QAAANEAAACXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAANEAAADRAAAAUQAAANEAAAARAAAA14AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAJEAAABRAAAAUQAAAJEAAAARAAAAUQAAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAEQAAABEAAACXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAABEAAADRAAAA0QAAABeAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEsAAABLAAAARAAAAUQAAAJEAAADXgAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApAAABSwAAAEQAAABEAAABRAAAAF4AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASwAAAEsAAABEAAAARAAAAUQAAANeAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAABRAAAAUQAAAJEAAABXgAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAABEAAADRAAAA14AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAB4AAAJEAAABRAAAAB4AAAFeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAeAAABRAAAAUQAAAIeAAADXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAHgAAAkQAAAFEAAABHgAAAV4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAB4AAAFEAAACRAAAAx4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,-1: - ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADRAAAA14AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAEQAAAMWAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFEAAADFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAABYAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAA0QAAAAWAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAJEAAADXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANEAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,1: - ind: 4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABEAAAARAAAA14AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,1: - ind: 5,1 - tiles: XgAAAF4AAABEAAAARAAAA14AAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,-2: - ind: -5,-2 - tiles: XQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAABAAAAl0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAABAAAAl0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAQAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAACBAAAAA== - -5,-3: - ind: -5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAAEAAAABAAAAQQAAAIEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAABAAAAQQAAAFeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAgQAAAAEAAABXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAV4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAABBAAAAAQAAAJeAAAARwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAQAAAEEAAABXgAAAEcAAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAIEAAAABAAAAl4AAABeAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABBAAAAAQAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAAEAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAJeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAEAAAAXQAAAF4AAABHAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAARwAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAEcAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABHAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARwAAAA== - -5,2: - ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAE4AAABOAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAATgAAAE4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAATgAAAE4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAA== - -5,3: - ind: -5,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAE4AAABOAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,-1: - ind: -5,-1 - tiles: XQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAl0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,-4: - ind: -5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAQQAAAIEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAgQAAAEEAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAIEAAABBAAAAgQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAIEAAABBAAAAAQAAAIEAAABBAAAAQ== - -2,-4: - ind: -2,-4 - tiles: XQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAABAAAAAQAAAAEAAACBAAAAgQAAAAAAAAAAAAAAAQAAAEEAAAABAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAXQAAAAQAAAAEAAAABAAAAAQAAAEEAAABBAAAAgQAAAEEAAAABAAAAAQAAAIEAAACBAAAAQQAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQUAAAAEAAACBAAAAgQAAAIEAAABBAAAAAQAAAEFAAAABAAAAAQAAAIEAAAABAAAAAQAAAFdAAAABAAAAQQAAAIEAAACBAAAAAQAAAAEAAACBAAAAgQAAAAEAAACBAAAAQQAAAIEAAACBAAAAAQAAAIEAAAABAAAAg== - 1,-5: - ind: 1,-5 - tiles: AAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,-5: - ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAA== - 1,-6: - ind: 1,-6 - tiles: AAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAAAsAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAAAFgAAABYAAAAWAAADFgAAABYAAAAWAAADFgAAABYAAABeAAAARAAAAEQAAAFEAAABXgAAABYAAAAWAAAAFgAAABYAAAEWAAACWwAAA1sAAABbAAACFgAAAhYAAAMWAAABXgAAAEQAAANEAAADRAAAAl4AAAAWAAAAFgAAA14AAABeAAAAFgAAA1sAAAJbAAAAWwAAARYAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANeAAAAFgAAAhYAAAMWAAADXgAAABYAAANbAAAAWwAAAFsAAAMWAAABXgAAABYAAAMWAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAABFgAAAF4AAAAWAAADFgAAAxYAAAMWAAABFgAAAl4AAAAWAAAAFgAAABYAAAEWAAAAFgAAAxYAAAMWAAAAFgAAARYAAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAFgAAARYAAAAWAAAAFgAAAhYAAAAWAAADFgAAAxYAAAMWAAACFgAAABYAAAAWAAABFgAAARYAAAEWAAABFgAAARYAAAEWAAADXgAAABYAAAEWAAACFgAAABYAAAEWAAABFgAAAxYAAAIWAAABFgAAAxYAAAMWAAABFgAAAhYAAAIWAAACFgAAAl4AAAAsAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAABYAAAIWAAACFgAAAywAAAAsAAAALAAAACwAAABeAAAALAAAACwAAABeAAAAXgAAAF4AAAAsAAAALAAAACwAAAAWAAAAFgAAAhYAAAIsAAAALAAAACwAAAAsAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAFgAAAF4AAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,-6: - ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAACwAAAAWAAABFgAAASwAAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAFgAAARYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAATgAAABYAAAEWAAAAFgAAAl4AAABEAAAARAAAA0QAAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAE4AAAAWAAAAFgAAAhYAAABeAAAARAAAA0QAAAJEAAABXgAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABOAAAAFgAAAxYAAAEWAAAAXgAAAEQAAAJEAAABXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAATgAAABYAAAAWAAAAFgAAAV4AAABeAAAAXgAAAF4AAAAWAAADAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAE4AAAAWAAAAFgAAABYAAAMWAAADFgAAABYAAAMWAAAAFgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABOAAAAFgAAARYAAAEWAAABFgAAAhYAAAAWAAABFgAAAxYAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAATgAAABYAAAAWAAADFgAAAhYAAAIWAAACFgAAAl4AAAAWAAACAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAALAAAACwAAAAsAAAALAAAACwAAABeAAAAFgAAAgAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAACwAAAAsAAAAXgAAACwAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAsAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAA== - 2,-6: - ind: 2,-6 - tiles: FgAAACwAAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAJeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAATgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAA04AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAANOAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADTgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAk4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABOAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADTgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,-7: - ind: 0,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAABYAAAMWAAAAFgAAAxYAAAAWAAABFgAAAhYAAAEWAAADAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAAAWAAAAFgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAAAsAAAAFgAAABYAAAAsAAAAXgAAAF0AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAALAAAABYAAAIWAAACLAAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAACwAAAAWAAAAFgAAAiwAAABeAAAAXQAAAAAAAAAAAAAAAAAAAA== - 1,-7: - ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAsAAAAFgAAARYAAAAWAAACFgAAABYAAAMWAAAAFgAAAywAAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAALAAAABYAAAEWAAABFgAAARYAAAEWAAAAFgAAAxYAAAAsAAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAACwAAAAWAAADFgAAA14AAABeAAAAXgAAABYAAAIWAAACLAAAAF4AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAsAAAAFgAAABYAAABeAAAALAAAAF4AAAAWAAADFgAAASwAAABeAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAALAAAABYAAAMWAAABUQAAA1EAAANRAAACFgAAAxYAAAEsAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAABYAAAEWAAADFgAAA14AAABeAAAAXgAAABYAAAMWAAACFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAxYAAAAWAAABFgAAAxYAAAMWAAACFgAAABYAAAAWAAADFgAAAhYAAAEWAAADFgAAAxYAAAEWAAADFgAAARYAAAEsAAAALAAAACwAAAAsAAAALAAAABYAAAEWAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABeAAAALAAAABYAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAXgAAACwAAAAWAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAAAsAAAAFgAAAQ== - 2,-7: - ind: 2,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAEsAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACLAAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAACwAAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-8: - ind: 1,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,-8: - ind: 0,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA== - -5,0: - ind: -5,0 - tiles: AAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAA== - -5,1: - ind: -5,1 - tiles: AAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAA== - 2,-5: - ind: 2,-5 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,-4: - ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,5: - ind: 2,5 - tiles: XgAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,5: - ind: 1,5 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,5: - ind: 0,5 - tiles: AAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,4: - ind: 3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -6,-2: - ind: -6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAA== - -6,-3: - ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAA== - -6,-1: - ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,-5: - ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,-5: - ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-5: - ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - id: Kettle - type: BecomesStation - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 0: 33,6 - 1: 33,8 - 2: 33,9 - 3: 33,10 - 4: 33,11 - 5: 33,15 - 6: 33,16 - 7: 33,17 - 8: 33,21 - 9: 33,22 - 10: 33,31 - 11: 33,32 - 12: 33,33 - 13: 33,34 - 14: 33,36 - 15: 33,37 - 16: 33,38 - 17: 33,39 - 18: 33,40 - 19: 33,41 - 20: 33,42 - 21: 33,20 - 22: 33,19 - 90: 33,7 - 1463: 33,23 - 1464: 33,24 - 1465: 33,25 - 1466: 33,26 - 1467: 33,27 - 1468: 33,28 - 1469: 33,29 - 1470: 33,30 - 4107: 33,35 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 60: 30,2 - 61: 31,2 - 62: 32,2 - 63: 33,2 - 64: 34,2 - 65: 35,2 - 66: 36,2 - 67: 37,2 - 68: 38,2 - 69: 39,2 - 70: 40,2 - 71: 41,2 - 72: 42,2 - 73: 48,2 - 74: 49,2 - 75: 51,2 - 76: 50,2 - 77: 52,2 - 78: 53,2 - 79: 54,2 - 80: 55,2 - 81: 56,2 - 82: 57,2 - 83: 58,2 - 84: 59,2 - 85: 60,2 - 86: 61,2 - 87: 62,2 - 88: 63,2 - 89: 64,2 - 237: -25,-40 - 349: 47,-1 - 387: 47,-6 - 399: 35,-13 - 400: 36,-15 - 401: 34,-8 - 412: 37,-6 - 413: 38,-6 - 414: 39,-6 - 415: 40,-6 - 416: 41,-6 - 417: 42,-6 - 418: 43,-6 - 419: 44,-6 - 420: 44,-7 - 421: 44,-8 - 422: 44,-9 - 423: 44,-10 - 424: 44,-11 - 439: 49,-3 - 440: 50,-3 - 441: 51,-3 - 442: 52,-3 - 443: 53,-3 - 444: 54,-3 - 445: 55,-3 - 446: 56,-3 - 458: 49,-1 - 459: 49,-2 - 460: 55,0 - 461: 58,0 - 462: 58,-1 - 463: 58,-2 - 464: 58,-3 - 465: 59,-3 - 466: 60,-3 - 467: 61,-3 - 468: 62,-3 - 541: -28,27 - 542: -32,27 - 1241: -64,51 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 247: -22,-40 - 248: -22,-39 - 339: 47,1 - 340: 47,0 - 341: 47,-1 - 375: 46,-11 - 376: 46,-10 - 377: 46,-9 - 378: 46,-8 - 379: 46,-7 - 380: 47,-6 - 381: 47,-5 - 382: 47,-4 - 532: -26,26 - 1235: -61,50 - 1236: -61,49 - 1478: 38,51 - 1479: 38,50 - 1480: 38,49 - 1631: 46,-16 - 1632: 46,-13 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 245: -28,-40 - 246: -28,-39 - 342: 43,1 - 343: 43,0 - 344: 43,-1 - 360: 35,-3 - 361: 35,-4 - 362: 35,-5 - 363: 35,-6 - 364: 33,-7 - 365: 33,-8 - 366: 34,-9 - 367: 34,-10 - 368: 34,-11 - 369: 34,-12 - 370: 34,-13 - 371: 35,-14 - 372: 35,-15 - 373: 36,-16 - 374: 36,-17 - 533: -32,26 - 1239: -64,49 - 1240: -64,50 - 1484: 35,49 - 1485: 35,50 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 359: 37,-3 - 388: 46,-12 - 402: 33,-7 - 406: 36,-12 - 407: 36,-11 - 408: 36,-10 - 409: 36,-9 - 410: 36,-8 - 411: 36,-7 - 425: 43,-12 - 426: 42,-12 - 427: 41,-12 - 428: 40,-12 - 429: 39,-12 - 430: 38,-12 - 431: 37,-12 - 447: 56,-3 - 448: 56,-2 - 449: 56,-1 - 450: 56,0 - 451: 55,0 - 452: 54,-1 - 453: 53,-1 - 454: 52,-1 - 455: 51,-1 - 456: 50,-1 - 457: 49,-1 - 469: 62,-3 - 470: 62,-2 - 471: 62,-1 - 472: 62,0 - 473: 61,0 - 474: 60,0 - 475: 59,0 - 476: 58,0 - 536: -26,25 - 537: -30,26 - 1634: 46,-17 - - node: - color: '#EFB34196' - id: Bot - decals: - 480: 35,0 - 481: 36,0 - 482: 37,0 - 483: 35,-1 - 484: 36,-1 - 485: 37,-1 - 1103: 35,11 - 1104: 35,10 - 1105: 36,11 - 1106: 36,10 - 1107: 37,11 - 1108: 37,10 - 1109: 38,11 - 1110: 38,10 - 1111: 39,11 - 1112: 39,10 - 4025: 28,61 - - node: - color: '#D4D4D433' - id: HalfTileOverlayGreyscale - decals: - 793: -11,-25 - 794: -10,-25 - 795: -9,-25 - 796: -8,-25 - 797: -7,-25 - 832: -16,-3 - 833: -14,-3 - 834: -12,-3 - 835: -11,-3 - 840: 17,-3 - 841: 18,-3 - 842: 20,-3 - 843: 21,-3 - 844: 23,-3 - 845: 24,-3 - 846: 25,-3 - 847: 26,-3 - 886: 22,-31 - 887: 23,-31 - 888: 24,-31 - 922: 35,4 - 923: 36,4 - 924: 37,4 - 925: 38,4 - 926: 39,4 - 927: 40,4 - 928: 41,4 - 929: 42,4 - 930: 43,4 - 931: 44,4 - 932: 45,4 - 933: 46,4 - 934: 47,4 - 935: 48,4 - 936: 49,4 - 937: 50,4 - 938: 51,4 - 939: 52,4 - 940: 53,4 - 941: 55,4 - 942: 56,4 - 943: 57,4 - 944: 58,4 - 945: 59,4 - 946: 60,4 - 947: 61,4 - 948: 62,4 - 949: 63,4 - 950: 64,4 - 951: 65,4 - 952: 66,4 - 953: 67,4 - 954: 68,4 - 955: 69,4 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 1059: 35,23 - 1060: 36,23 - 1061: 37,23 - 1078: 47,26 - 1079: 46,26 - 1543: 44,32 - 1544: 45,32 - 1545: 43,32 - 1546: 42,32 - 1547: 41,32 - 1548: 40,32 - 1549: 39,32 - 1550: 38,32 - 1551: 37,32 - 1552: 36,32 - 1553: 35,32 - 1554: 46,32 - 1555: 47,32 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 1062: 35,30 - 1063: 36,30 - 1064: 37,30 - 1071: 39,24 - 1072: 40,24 - 1073: 41,24 - 1074: 42,30 - 1075: 43,30 - 1076: 46,30 - 1077: 47,30 - 1084: 44,30 - 1085: 45,30 - 1530: 35,34 - 1531: 36,34 - 1532: 37,34 - 1533: 38,34 - 1534: 39,34 - 1535: 40,34 - 1536: 41,34 - 1537: 42,37 - 1538: 43,37 - 1539: 44,37 - 1540: 45,37 - 1541: 46,37 - 1542: 47,37 - - node: - color: '#EFB34196' - id: Box - decals: - 1065: 37,26 - - node: - color: '#EFB34196' - id: StandClear - decals: - 477: 35,-2 - 478: 36,-2 - 479: 37,-2 - 742: 23,14 - 743: 23,13 - 744: 23,12 - 1066: 37,26 - 1574: 34,14 - 1575: 34,13 - 1576: 34,12 - 1577: 53,-26 - 1578: 53,-27 - 1579: 53,-28 - 1580: 53,-29 - 1581: 53,-30 - 1582: 53,-31 - 1583: 56,-31 - 1584: 56,-30 - 1585: 56,-29 - 1586: 56,-28 - 1587: 56,-27 - 1588: 56,-26 - 1653: -22,50 - 1654: -22,49 - 1655: -22,48 - 1656: -22,47 - - node: - color: '#EFB34196' - id: BotLeft - decals: - 1067: 37,27 - 1068: 37,28 - - node: - color: '#EFB34196' - id: Delivery - decals: - 1069: 37,29 - 1230: -64,39 - - node: - angle: 4.71238898038469 rad - color: '#EFB34196' - id: LoadingArea - decals: - 1070: 36,29 - 1227: -64,46 - 1228: -64,40 - 1229: -64,38 - 1243: -64,48 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 1080: 40,21 - 1081: 40,18 - 1082: 40,19 - 1083: 40,20 - 1093: 41,17 - 1094: 41,16 - 1095: 41,15 - 1096: 41,14 - 1097: 41,13 - 1098: 41,12 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 1086: 45,25 - 1087: 45,24 - 1088: 45,21 - 1089: 45,20 - 1090: 45,19 - 1091: 44,17 - 1092: 44,16 - 1099: 43,12 - 1100: 43,14 - 1101: 43,13 - 1102: 43,15 - 1648: 45,22 - 1649: 45,23 - - node: - color: '#EFB34196' - id: BotRight - decals: - 724: 24,17 - 725: 24,16 - 726: 24,15 - 727: 25,17 - 728: 25,16 - 729: 25,15 - 730: 26,17 - 731: 26,16 - 732: 26,15 - 733: 27,17 - 734: 27,16 - 735: 27,15 - 736: 28,17 - 737: 28,16 - 738: 28,15 - 739: 29,17 - 740: 29,16 - 741: 29,15 - 1113: 35,15 - 1114: 35,16 - 1115: 36,15 - 1116: 37,15 - 1117: 37,16 - 1118: 38,15 - 1119: 38,16 - 1120: 39,15 - 1121: 39,16 - 1573: 36,16 - - node: - color: '#EFB34196' - id: WarnCornerNW - decals: - 750: 24,14 - 1122: 35,14 - - node: - color: '#EFB34196' - id: WarnCornerSE - decals: - 1123: 39,12 - 1282: -22,32 - 1441: -7,46 - 3299: -2,43 - - node: - color: '#EFB34196' - id: WarnCornerSW - decals: - 1124: 35,12 - 1283: -18,32 - - node: - color: '#EFB34196' - id: WarnCornerNE - decals: - 1026: 16,56 - 1125: 39,14 - 1447: -7,42 - - node: - color: '#EFB34196' - id: WarnLineW - decals: - 486: 35,-2 - 487: 36,-2 - 488: 37,-2 - 570: -21,33 - 571: -20,33 - 572: -19,33 - 642: -21,56 - 643: -20,56 - 644: -29,48 - 645: -28,48 - 646: -27,48 - 647: -26,48 - 648: -25,48 - 649: -24,48 - 720: 25,14 - 721: 26,14 - 722: 27,14 - 723: 28,14 - 1004: 18,69 - 1005: 19,69 - 1006: 20,69 - 1007: 21,69 - 1010: 18,67 - 1011: 19,67 - 1012: 23,71 - 1013: 24,71 - 1024: 14,56 - 1025: 15,56 - 1047: 18,67 - 1048: 19,67 - 1049: 23,71 - 1050: 24,71 - 1126: 36,14 - 1127: 37,14 - 1128: 38,14 - 1244: -62,51 - 1284: -21,33 - 1285: -20,33 - 1286: -19,33 - 1446: -8,42 - 1497: 0,53 - 1499: -1,57 - 1513: 23,55 - 1514: 24,55 - 1617: 64,-20 - 1618: 65,-20 - 1619: 66,-20 - 1620: 67,-20 - 1645: 50,-19 - 3336: 22,55 - 3959: 0,57 - 3960: 1,57 - - node: - color: '#EFB34196' - id: WarnLineN - decals: - 323: -41,-26 - 638: -21,55 - 639: -20,55 - 1008: 18,69 - 1009: 19,69 - 1020: 15,56 - 1021: 14,56 - 1129: 36,12 - 1130: 37,12 - 1131: 38,12 - 1245: -62,53 - 1246: -58,53 - 1289: -27,32 - 1290: -26,32 - 1291: -25,32 - 1292: -24,32 - 1293: -23,32 - 1294: -17,32 - 1295: -16,32 - 1296: -15,32 - 1297: -14,32 - 1298: -13,32 - 1442: -8,46 - 1471: -23,55 - 1472: -24,55 - 1473: -25,55 - 1474: -26,55 - 1475: -27,55 - 1476: -28,55 - 1477: -29,55 - 1498: 0,52 - 1503: -1,61 - 1504: 0,61 - 1505: 1,61 - 1515: 23,54 - 1516: 24,54 - 1613: 64,-22 - 1614: 65,-22 - 1615: 66,-22 - 1616: 67,-22 - 1644: 50,-17 - 1687: -43,-17 - 1688: -42,-17 - 1689: -41,-17 - 3285: 50,-20 - 3294: 2,44 - 3295: 3,44 - 3296: 1,44 - 3297: 0,44 - 3298: -1,44 - 3335: 22,54 - - node: - color: '#EFB34196' - id: WarnLineS - decals: - 320: -40,-27 - 321: -40,-28 - 322: -40,-29 - 496: 77,14 - 497: 77,13 - 498: 77,12 - 499: 84,15 - 500: 84,13 - 501: 84,12 - 503: 77,15 - 573: -8,45 - 574: -8,44 - 575: -8,43 - 650: -23,49 - 651: -23,50 - 748: 24,13 - 749: 24,12 - 1016: 18,55 - 1017: 18,56 - 1018: 16,53 - 1019: 16,55 - 1028: 16,54 - 1046: 17,64 - 1052: 18,56 - 1053: 18,55 - 1056: 14,63 - 1057: 14,64 - 1058: 14,65 - 1132: 35,13 - 1288: -18,33 - 1443: -8,45 - 1444: -8,44 - 1445: -8,43 - 1506: 2,60 - 1507: 2,59 - 1508: 2,58 - 1639: 48,-15 - 1640: 48,-14 - 3290: 49,-20 - 3291: 49,-19 - 3292: 30,66 - 3293: 30,66 - 3345: 84,14 - 4019: 22,55 - 4020: 22,54 - 4603: 29,79 - 4604: 29,79 - 4605: 29,78 - 4606: 29,78 - 4619: 26,79 - 4620: 26,79 - 4621: 26,78 - 4622: 26,78 - 4664: 26,54 - 4665: 26,55 - - node: - color: '#EFB34196' - id: WarnLineE - decals: - 489: 74,14 - 490: 74,13 - 491: 74,12 - 492: 81,15 - 493: 81,14 - 494: 81,13 - 495: 81,12 - 502: 74,15 - 652: -23,50 - 653: -23,49 - 654: -23,48 - 655: -23,47 - 698: -10,38 - 699: -10,39 - 745: 22,14 - 746: 22,13 - 747: 22,12 - 1014: 24,69 - 1015: 20,60 - 1027: 16,55 - 1043: 17,65 - 1044: 17,64 - 1045: 17,63 - 1051: 24,69 - 1054: 20,60 - 1055: 15,64 - 1133: 39,13 - 1287: -22,33 - 1432: -7,38 - 1433: -7,39 - 1434: -7,40 - 1435: -7,41 - 1436: -7,47 - 1437: -7,48 - 1438: -7,49 - 1439: -7,50 - 1440: -7,51 - 1491: 33,12 - 1492: 33,13 - 1493: 33,14 - 1494: 33,12 - 1495: 33,13 - 1496: 33,14 - 1500: -2,58 - 1501: -2,59 - 1502: -2,60 - 1556: 47,33 - 1557: 47,34 - 1621: 62,-21 - 1635: 46,-14 - 1636: 46,-15 - 1637: 46,-14 - 1638: 46,-15 - 1646: 51,-17 - 1647: 51,-16 - 3288: 51,-20 - 3289: 51,-19 - 4017: 24,54 - 4018: 24,55 - 4021: 20,54 - 4022: 20,55 - 4023: 20,54 - 4024: 20,55 - 4599: 24,79 - 4600: 24,79 - 4601: 24,78 - 4602: 24,78 - 4615: 27,79 - 4616: 27,79 - 4617: 27,78 - 4618: 27,78 - - node: - color: '#EFB34196' - id: DeliveryGreyscale - decals: - 1134: 36,13 - 1135: 37,13 - 1136: 38,13 - 1141: 42,22 - 1142: 43,22 - 1145: 42,20 - 1146: 43,20 - - node: - color: '#EFB34196' - id: BoxGreyscale - decals: - 1137: 42,23 - 1138: 43,23 - 1139: 42,21 - 1140: 43,21 - 1143: 42,19 - 1144: 43,19 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 1650: 45,26 - 1651: 43,16 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 1652: 44,16 - - node: - color: '#EFB34196' - id: BotGreyscale - decals: - 1657: -55,-33 - 1658: -49,-29 - 1659: -44,-25 - 1660: -24,-33 - 1661: -3,-23 - 1662: 6,-27 - 1663: 17,-23 - 1664: 19,-58 - 1665: 32,-32 - 1666: 17,-6 - 1667: 40,5 - 1668: 43,-12 - 1669: 62,-3 - 1670: 22,7 - 1671: 35,30 - 1672: 43,12 - 1673: 25,25 - 1674: 30,40 - 1675: 14,48 - 1676: 26,68 - 1677: 3,38 - 1678: -20,24 - 1679: -20,21 - 1680: -27,-17 - 1681: -31,1 - 1682: 5,-2 - 1683: -3,-6 - 1684: -26,-2 - 1685: -43,-3 - 1686: -32,-23 - 1690: -23,52 - 1691: -15,41 - 1693: -61,43 - 1694: -39,31 - 1695: -18,-44 - 1696: -4,-63 - 1697: 26,-10 - - node: - color: '#DE3A3A96' - id: StandClearGreyscale - decals: - 1641: 47,-14 - 1642: 47,-15 - 1643: 50,-18 - 1699: 41,1 - 1700: 39,1 - 1701: 39,-2 - 1702: 41,-2 - - node: - cleanable: True - color: '#A4610696' - id: Dirt - decals: - 1730: -5,50 - 1731: -6,46 - 1732: -7,44 - 1733: -4,48 - 1734: -1,50 - 1735: 2,49 - 1736: 5,49 - 1737: 6,51 - 1738: 7,49 - 1739: 9,50 - 1740: 13,49 - 1741: 16,51 - 1742: 19,49 - 1743: 23,50 - 1744: 23,49 - 1745: 29,51 - 1746: 31,51 - 1747: 32,49 - 1748: 33,47 - 1749: 31,48 - 1750: 34,53 - 1751: 33,49 - 1752: 30,49 - 1753: 32,42 - 1754: 33,40 - 1755: 33,36 - 1756: 32,34 - 1757: 32,32 - 1758: 33,33 - 1759: 32,29 - 1760: 31,27 - 1761: 32,28 - 1762: 33,24 - 1763: 32,22 - 1764: 33,23 - 1765: 31,21 - 1766: 33,19 - 1767: 32,17 - 1768: 31,16 - 1769: 32,15 - 1770: 33,14 - 1771: 31,12 - 1772: 31,11 - 1773: 33,9 - 1774: 32,8 - 1775: 31,7 - 1776: 33,4 - 1777: 30,3 - 1778: 30,2 - 1779: 30,2 - 1780: 28,1 - 1781: 28,0 - 1782: 29,0 - 1783: 27,-1 - 1784: 27,-2 - 1785: 28,-4 - 1786: 26,-4 - 1787: 25,-4 - 1788: 24,-5 - 1789: 22,-5 - 1790: 21,-4 - 1791: 20,-3 - 1792: 18,-4 - 1793: 12,-4 - 1794: 9,-4 - 1795: 7,-4 - 1796: 3,-4 - 1797: 0,-4 - 1798: 1,-4 - 1799: -5,-4 - 1800: -6,-5 - 1801: -7,-5 - 1802: -6,-4 - 1803: -10,-4 - 1804: -12,-5 - 1805: -14,-5 - 1806: -14,-4 - 1807: -16,-4 - 1808: -17,-5 - 1809: -18,-5 - 1810: -23,-5 - 1811: -24,-5 - 1812: -32,-4 - 1813: -38,-4 - 1814: -39,-4 - 1815: -40,-5 - 1816: -42,-5 - 1817: -42,-6 - 1818: -42,-7 - 1819: -42,-10 - 1820: -42,-12 - 1821: -42,-14 - 1822: -40,-16 - 1823: -42,-17 - 1824: -38,-7 - 1825: -38,-8 - 1826: -37,-7 - 1827: -33,-7 - 1828: -26,-4 - 1829: -24,-1 - 1830: -23,0 - 1831: -23,2 - 1832: -24,3 - 1833: -23,5 - 1834: -23,6 - 1835: -24,6 - 1836: -23,7 - 1837: -23,10 - 1838: -30,5 - 1839: -31,1 - 1840: -31,4 - 1841: -26,1 - 1842: -26,2 - 1843: -22,8 - 1844: -24,9 - 1845: -22,10 - 1846: -24,8 - 1847: -23,9 - 1848: -22,13 - 1849: -24,15 - 1850: -23,16 - 1851: -22,17 - 1852: -25,18 - 1853: -23,18 - 1854: -23,19 - 1855: -25,22 - 1856: -23,23 - 1857: -23,24 - 1858: -24,25 - 1859: -22,26 - 1860: -23,27 - 1861: -24,28 - 1862: -22,30 - 1863: -23,30 - 1864: -24,31 - 1865: -26,29 - 1866: -27,30 - 1867: -29,30 - 1868: -27,29 - 1869: -31,29 - 1870: -32,30 - 1871: -34,29 - 1872: -36,29 - 1873: -37,30 - 1874: -39,29 - 1875: -40,29 - 1876: -42,30 - 1877: -43,30 - 1878: -45,29 - 1879: -46,30 - 1880: -47,30 - 1881: -46,29 - 1882: -51,30 - 1883: -52,31 - 1884: -53,29 - 1885: -54,30 - 1886: -55,31 - 1887: -57,29 - 1888: -58,30 - 1889: -57,32 - 1890: -58,34 - 1891: -56,36 - 1892: -57,39 - 1893: -56,40 - 1894: -57,45 - 1895: -57,46 - 1896: -59,48 - 1897: -57,49 - 1898: -59,50 - 1899: -58,49 - 1900: -59,47 - 1901: -58,45 - 1902: -62,49 - 1903: -64,49 - 1904: -64,49 - 1905: -64,48 - 1906: -62,48 - 1907: -61,54 - 1908: -59,54 - 1909: -59,54 - 1910: -59,53 - 1911: -62,45 - 1912: -63,43 - 1913: -63,40 - 1914: -63,40 - 1915: -62,36 - 1916: -61,35 - 1917: -56,35 - 1918: -45,29 - 1919: -40,30 - 1920: -43,26 - 1921: -41,26 - 1922: -40,26 - 1923: -38,26 - 1924: -37,26 - 1925: -40,27 - 1926: -20,34 - 1927: -20,35 - 1928: -21,41 - 1929: -20,43 - 1930: -20,44 - 1931: -21,46 - 1932: -20,47 - 1933: -20,49 - 1934: -21,50 - 1935: -21,51 - 1936: -20,53 - 1937: -20,54 - 1938: -24,53 - 1939: -26,53 - 1940: -27,53 - 1941: -28,54 - 1942: -29,54 - 1943: -28,56 - 1944: -28,57 - 1945: -28,58 - 1946: -27,59 - 1947: -25,59 - 1948: -24,58 - 1949: -24,56 - 1950: -21,55 - 1951: -20,52 - 1952: -19,51 - 1953: -20,42 - 1954: -20,40 - 1955: -16,44 - 1956: -14,43 - 1957: -13,44 - 1958: -11,45 - 1959: -10,44 - 1960: -12,48 - 1961: -13,47 - 1962: -14,48 - 1963: -11,47 - 1964: -10,48 - 1965: -10,52 - 1966: -11,53 - 1967: -14,53 - 1968: -15,53 - 1969: -17,53 - 1970: -17,51 - 1971: -10,39 - 1972: -11,38 - 1973: -14,38 - 1974: -14,37 - 1975: -15,36 - 1976: -16,38 - 1977: -16,40 - 1978: -14,41 - 1979: -11,39 - 1980: -17,39 - 1981: -8,44 - 1982: -8,45 - 1983: -7,42 - 1984: -6,41 - 1985: -5,46 - 1986: -6,49 - 1987: -7,49 - 1988: 2,44 - 1989: -6,29 - 1990: -4,31 - 1991: -2,31 - 1992: 0,30 - 1993: 2,30 - 1994: 4,31 - 1995: 5,31 - 1996: 7,30 - 1997: 9,30 - 1998: 10,31 - 1999: 11,31 - 2000: 10,30 - 2001: 14,31 - 2002: 15,31 - 2003: 17,30 - 2004: 18,31 - 2005: 22,23 - 2006: 23,23 - 2007: 23,22 - 2008: 22,22 - 2009: 21,23 - 2010: 21,23 - 2011: 20,24 - 2012: 20,23 - 2013: 21,21 - 2014: 20,20 - 2015: 20,19 - 2016: 22,19 - 2017: 24,19 - 2018: 27,19 - 2019: 29,19 - 2020: 29,19 - 2021: 24,19 - 2022: 22,21 - 2023: 20,23 - 2024: 20,26 - 2025: 20,29 - 2026: 20,31 - 2027: 23,31 - 2028: 27,31 - 2029: 29,31 - 2030: 29,30 - 2031: 27,30 - 2032: 24,30 - 2033: 21,31 - 2034: 20,33 - 2035: 21,35 - 2036: 22,35 - 2037: 26,37 - 2038: 25,35 - 2039: 25,36 - 2040: 26,34 - 2041: 27,34 - 2042: 28,36 - 2043: 28,37 - 2044: 27,34 - 2045: 28,35 - 2046: 26,34 - 2047: 25,33 - 2048: 24,34 - 2049: 24,36 - 2050: 25,38 - 2051: 27,38 - 2052: 29,37 - 2053: 29,35 - 2054: 20,38 - 2055: 21,40 - 2056: 22,41 - 2057: 23,40 - 2058: 21,41 - 2059: 21,43 - 2060: 21,43 - 2061: 20,45 - 2062: 17,45 - 2063: 20,46 - 2064: 14,45 - 2065: 12,45 - 2066: 11,41 - 2067: 10,41 - 2068: 8,41 - 2069: 6,41 - 2070: 5,39 - 2071: 5,38 - 2072: 4,43 - 2073: 5,45 - 2074: 5,47 - 2075: 6,47 - 2076: 9,47 - 2077: 25,47 - 2078: 25,46 - 2079: 26,45 - 2080: 26,45 - 2081: 22,8 - 2082: 21,8 - 2083: 22,9 - 2084: 21,10 - 2085: 20,10 - 2086: 21,13 - 2087: 20,14 - 2088: 21,15 - 2089: 19,14 - 2090: 18,16 - 2091: 18,16 - 2092: 17,15 - 2093: -4,11 - 2094: -4,10 - 2095: -5,10 - 2096: -6,10 - 2097: -7,10 - 2098: -7,8 - 2099: -7,7 - 2100: -9,8 - 2101: -6,12 - 2102: -6,16 - 2103: 29,7 - 2104: 29,8 - 2105: 29,9 - 2106: 28,10 - 2107: 26,9 - 2108: 25,8 - 2109: 25,7 - 2110: 29,8 - 2111: 27,8 - 2112: 47,29 - 2113: 45,29 - 2114: 43,29 - 2115: 42,29 - 2116: 42,28 - 2117: 44,28 - 2118: 46,27 - 2119: 46,27 - 2120: 44,27 - 2121: 43,27 - 2122: 45,26 - 2123: 44,25 - 2124: 43,25 - 2125: 44,24 - 2126: 41,23 - 2127: 43,22 - 2128: 43,22 - 2129: 42,21 - 2130: 43,20 - 2131: 42,19 - 2132: 43,19 - 2133: 41,18 - 2134: 43,17 - 2135: 42,17 - 2136: 43,20 - 2137: 42,21 - 2138: 43,21 - 2139: 45,20 - 2140: 43,20 - 2141: 45,21 - 2142: 46,21 - 2143: 45,22 - 2144: 44,22 - 2145: 44,21 - 2146: 45,21 - 2147: 44,23 - 2148: 44,23 - 2149: 47,23 - 2150: 48,23 - 2151: 48,23 - 2152: 48,23 - 2153: 47,23 - 2154: 48,22 - 2155: 48,21 - 2156: 47,21 - 2157: 47,21 - 2158: 47,21 - 2159: 48,21 - 2160: 45,22 - 2161: 45,23 - 2162: 44,23 - 2163: 45,24 - 2164: 43,18 - 2165: 41,17 - 2166: 42,16 - 2167: 43,15 - 2168: 43,15 - 2169: 42,14 - 2170: 41,13 - 2171: 42,12 - 2172: 43,14 - 2173: 43,13 - 2174: 39,14 - 2175: 39,12 - 2176: 37,12 - 2177: 36,13 - 2178: 35,14 - 2179: 34,13 - 2180: 38,33 - 2181: 39,33 - 2182: 41,33 - 2183: 42,33 - 2184: 44,33 - 2185: 45,36 - 2186: 46,36 - 2187: 46,35 - 2188: 46,33 - 2189: 44,32 - 2190: 43,33 - 2191: 40,33 - 2192: 43,34 - 2193: 45,37 - 2194: 46,36 - 2195: 47,33 - 2196: 47,33 - 2197: 39,33 - 2198: 43,33 - 2199: 37,33 - 2200: 35,33 - 2201: 34,34 - 2202: 32,37 - 2203: 32,42 - 2204: 33,44 - 2205: 32,47 - 2206: 33,48 - 2207: 33,50 - 2208: 13,55 - 2209: 14,55 - 2210: 15,55 - 2211: 15,54 - 2212: 15,54 - 2213: 14,54 - 2214: 13,54 - 2215: 14,53 - 2216: 15,53 - 2217: 14,53 - 2218: 13,53 - 2219: 16,53 - 2220: 16,53 - 2221: 16,55 - 2222: 16,56 - 2223: 14,56 - 2224: 14,56 - 2225: 16,57 - 2226: 14,57 - 2227: 13,57 - 2228: 12,57 - 2229: 11,55 - 2230: 12,54 - 2231: 11,53 - 2232: 19,60 - 2233: 19,57 - 2234: 18,60 - 2235: 18,64 - 2236: 20,65 - 2237: 22,66 - 2238: 21,66 - 2239: 22,64 - 2240: 21,64 - 2241: 23,65 - 2242: 24,66 - 2243: 23,67 - 2244: 23,69 - 2245: 24,71 - 2246: 26,71 - 2247: 26,69 - 2248: 27,68 - 2249: 29,69 - 2250: 11,72 - 2251: 20,74 - 2252: 20,73 - 2253: 23,47 - 2254: 23,47 - 2255: 23,47 - 2256: 23,46 - 2257: 23,46 - 2258: 22,47 - 2259: 35,57 - 2260: 36,56 - 2261: 36,56 - 2262: 37,56 - 2263: 36,56 - 2264: 36,55 - 2265: 36,54 - 2266: 36,53 - 2267: 38,53 - 2268: 40,53 - 2269: 40,55 - 2270: 40,56 - 2271: 41,57 - 2272: 41,56 - 2273: 39,56 - 2274: 40,55 - 2275: 41,53 - 2276: 41,53 - 2277: 43,54 - 2278: 43,55 - 2279: 43,57 - 2280: 43,55 - 2281: 43,53 - 2282: 43,52 - 2283: 43,50 - 2284: 45,50 - 2285: 46,50 - 2286: 47,50 - 2287: 47,49 - 2288: 47,47 - 2289: 47,46 - 2290: 47,46 - 2291: 46,44 - 2292: 46,44 - 2293: 46,45 - 2294: 46,46 - 2295: 46,47 - 2296: 40,50 - 2297: 40,48 - 2298: 40,46 - 2299: 39,45 - 2300: 37,46 - 2301: 35,46 - 2302: 40,50 - 2303: 40,52 - 2304: 40,51 - 2305: 40,50 - 2306: 40,43 - 2307: 40,43 - 2308: 40,44 - 2309: 39,44 - 2310: 39,44 - 2311: 39,43 - 2312: 39,42 - 2313: 39,40 - 2314: 39,39 - 2315: 40,39 - 2316: 43,39 - 2317: 45,39 - 2318: 46,39 - 2319: 47,39 - 2320: 47,40 - 2321: 46,41 - 2322: 47,42 - 2323: 47,44 - 2324: 47,46 - 2325: 47,48 - 2326: 43,44 - 2327: 44,44 - 2328: 42,43 - 2329: 42,42 - 2330: 43,41 - 2331: 44,41 - 2332: 44,43 - 2333: 43,45 - 2334: 43,47 - 2335: 44,48 - 2336: 44,48 - 2337: 49,33 - 2338: 49,34 - 2339: 50,35 - 2340: 50,36 - 2341: 50,36 - 2342: 35,7 - 2343: 35,8 - 2344: 36,8 - 2345: 37,8 - 2346: 40,8 - 2347: 40,8 - 2348: 40,7 - 2349: 38,7 - 2350: 38,7 - 2351: 41,9 - 2352: 44,9 - 2353: 42,9 - 2354: 46,9 - 2355: 47,9 - 2356: 49,9 - 2357: 49,9 - 2358: 50,9 - 2359: 38,4 - 2360: 35,4 - 2361: 39,2 - 2362: 43,3 - 2363: 45,3 - 2364: 44,0 - 2365: 44,-1 - 2366: 47,-1 - 2367: 44,-1 - 2368: 46,-1 - 2369: 46,-1 - 2370: 45,-1 - 2371: 46,0 - 2372: 45,0 - 2373: 46,3 - 2374: 47,3 - 2375: 45,3 - 2376: 46,4 - 2377: 49,3 - 2378: 51,3 - 2379: 48,2 - 2380: 53,3 - 2381: 55,3 - 2382: 57,2 - 2383: 59,3 - 2384: 61,2 - 2385: 63,4 - 2386: 64,2 - 2387: 65,3 - 2388: 66,3 - 2389: 69,3 - 2390: 69,3 - 2391: 72,4 - 2392: 73,3 - 2393: 75,3 - 2394: 76,3 - 2395: 78,3 - 2396: 79,3 - 2397: 81,3 - 2398: 83,4 - 2399: 84,2 - 2400: 85,3 - 2401: 86,4 - 2402: 83,7 - 2403: 80,7 - 2404: 78,6 - 2405: 76,8 - 2406: 77,9 - 2407: 80,9 - 2408: 83,9 - 2409: 82,12 - 2410: 82,13 - 2411: 83,14 - 2412: 83,14 - 2413: 83,13 - 2414: 75,13 - 2415: 75,15 - 2416: 76,15 - 2417: 76,14 - 2418: 76,9 - 2419: 76,6 - 2420: 77,6 - 2421: 83,6 - 2422: 83,8 - 2423: 84,3 - 2429: 67,2 - 2430: 66,4 - 2431: 61,2 - 2432: 58,4 - 2433: 57,3 - 2434: 56,2 - 2435: 52,4 - 2436: 51,3 - 2437: 53,-13 - 2438: 60,-20 - 2439: 62,-21 - 2440: 61,-22 - 2441: 60,-19 - 2442: 43,-16 - 2443: 41,-16 - 2444: 38,-16 - 2445: 37,-16 - 2446: 37,-19 - 2447: 37,-20 - 2448: 37,-20 - 2449: 36,-20 - 2450: 37,-20 - 2451: 37,-20 - 2452: 40,-19 - 2453: 40,-19 - 2454: 39,-19 - 2455: 40,-20 - 2456: 43,-19 - 2457: 43,-20 - 2458: 42,-20 - 2459: 45,-19 - 2460: 45,-20 - 2461: 45,-20 - 2462: 46,-20 - 2463: 38,-16 - 2464: 36,-14 - 2465: 35,-13 - 2466: 35,-11 - 2467: 34,-9 - 2468: 35,-7 - 2469: 36,-6 - 2470: 36,-4 - 2471: 36,-3 - 2472: 38,-5 - 2473: 40,-3 - 2474: 39,-3 - 2475: 41,-3 - 2476: 39,2 - 2477: 41,2 - 2478: 31,2 - 2479: 30,3 - 2480: 28,1 - 2481: 28,3 - 2482: 29,0 - 2483: 23,-7 - 2484: 28,-7 - 2485: 7,-16 - 2486: 7,-16 - 2487: 7,-17 - 2488: -9,-2 - 2489: -9,-1 - 2490: -8,-1 - 2491: -7,-1 - 2492: -6,-1 - 2493: -5,-2 - 2494: -5,-6 - 2495: -5,-15 - 2496: -4,-15 - 2497: -6,-19 - 2498: -5,-17 - 2499: -6,-20 - 2500: -4,-22 - 2501: -4,-24 - 2502: -5,-26 - 2503: -8,-26 - 2504: -9,-26 - 2505: -10,-25 - 2506: -11,-27 - 2507: -10,-28 - 2508: -7,-28 - 2509: -13,-25 - 2510: -14,-26 - 2511: -17,-26 - 2512: -19,-25 - 2513: -20,-27 - 2514: -22,-26 - 2515: -25,-26 - 2516: -26,-29 - 2517: -27,-30 - 2518: -26,-31 - 2519: -27,-31 - 2520: -27,-33 - 2521: -25,-34 - 2522: -26,-35 - 2523: -24,-35 - 2524: -23,-35 - 2525: -23,-34 - 2526: -27,-26 - 2527: -28,-26 - 2528: -31,-28 - 2529: -33,-28 - 2530: -37,-28 - 2531: -31,-28 - 2532: -31,-27 - 2533: -37,-28 - 2534: -31,-31 - 2535: -33,-32 - 2536: -34,-33 - 2537: -36,-32 - 2538: -37,-32 - 2539: -39,-33 - 2540: -37,-32 - 2541: -41,-31 - 2542: -42,-32 - 2543: -43,-32 - 2544: -45,-31 - 2545: -46,-32 - 2546: -46,-32 - 2547: -48,-31 - 2548: -49,-32 - 2549: -49,-32 - 2550: -50,-31 - 2551: -51,-32 - 2552: -52,-32 - 2553: -44,-33 - 2554: -42,-32 - 2555: -41,-31 - 2556: -39,-32 - 2557: -38,-33 - 2558: -37,-33 - 2559: -32,-33 - 2560: -37,-36 - 2561: -38,-37 - 2562: -39,-38 - 2563: -39,-39 - 2564: -40,-40 - 2565: -41,-39 - 2566: -40,-42 - 2567: -40,-44 - 2568: -35,-36 - 2569: -32,-37 - 2570: -31,-37 - 2571: -30,-38 - 2572: -31,-38 - 2573: -31,-39 - 2574: -30,-39 - 2575: -27,-41 - 2576: -27,-39 - 2577: -26,-39 - 2578: -23,-40 - 2579: -24,-41 - 2580: -26,-39 - 2581: -23,-39 - 2582: -24,-39 - 2583: -25,-39 - 2584: -25,-38 - 2585: -35,-41 - 2586: -35,-40 - 2587: -35,-39 - 2588: -39,-39 - 2589: -39,-37 - 2590: -37,-36 - 2591: -32,-36 - 2592: -32,-36 - 2593: -39,-36 - 2594: -49,-28 - 2595: -50,-27 - 2596: -52,-27 - 2597: -52,-28 - 2598: -51,-29 - 2599: -50,-29 - 2600: -50,-28 - 2601: -55,-32 - 2602: -56,-31 - 2603: -57,-31 - 2604: -57,-29 - 2605: -56,-29 - 2606: -55,-29 - 2607: -56,-25 - 2608: -55,-28 - 2609: -57,-27 - 2610: -57,-25 - 2611: -55,-26 - 2612: -55,-27 - 2613: -54,-22 - 2614: -55,-23 - 2615: -55,-23 - 2616: -56,-22 - 2617: -57,-23 - 2618: -59,-23 - 2619: -59,-23 - 2620: -60,-24 - 2621: -60,-25 - 2622: -61,-26 - 2623: -66,-26 - 2624: -64,-26 - 2625: -63,-26 - 2626: -61,-27 - 2627: -61,-29 - 2628: -60,-29 - 2629: -60,-31 - 2630: -60,-33 - 2631: -61,-33 - 2632: -61,-34 - 2633: -61,-36 - 2634: -61,-38 - 2635: -63,-36 - 2636: -64,-36 - 2637: -65,-36 - 2638: -65,-35 - 2639: -64,-34 - 2640: -63,-34 - 2641: -65,-34 - 2642: -65,-34 - 2643: -64,-35 - 2644: -64,-37 - 2645: -64,-37 - 2646: -64,-38 - 2647: -63,-37 - 2648: -63,-37 - 2649: -63,-38 - 2650: -64,-38 - 2651: -64,-37 - 2652: -65,-37 - 2653: -65,-36 - 2654: -64,-36 - 2655: -63,-36 - 2656: -64,-35 - 2657: -63,-34 - 2658: -64,-34 - 2659: -63,-34 - 2660: -64,-34 - 2661: -65,-36 - 2662: -65,-37 - 2663: -63,-37 - 2664: -63,-38 - 2665: -65,-35 - 2666: -63,-35 - 2667: -64,-35 - 2668: -64,-35 - 2669: -63,-35 - 2670: -65,-35 - 2671: -61,-41 - 2672: -62,-41 - 2673: -63,-41 - 2674: -63,-43 - 2675: -63,-44 - 2676: -64,-45 - 2677: -66,-44 - 2678: -66,-44 - 2679: -66,-44 - 2680: -66,-43 - 2681: -59,-41 - 2682: -58,-41 - 2683: -58,-40 - 2684: -58,-39 - 2685: -57,-40 - 2686: -57,-43 - 2687: -59,-43 - 2688: -59,-43 - 2689: -60,-44 - 2690: -61,-44 - 2691: -36,-8 - 2692: -32,-12 - 2693: -37,-15 - 2694: -37,-16 - 2695: -38,-16 - 2696: -38,-16 - 2697: -36,-14 - 2698: -36,-16 - 2699: -37,-14 - 2700: -36,-15 - 2701: -32,-19 - 2702: -36,-19 - 2703: -37,-19 - 2704: -37,-21 - 2705: -35,-21 - 2706: -32,-22 - 2707: -33,-22 - 2708: -35,-23 - 2709: -36,-24 - 2710: -21,-8 - 2711: -20,-9 - 2712: -20,-10 - 2713: -24,-11 - 2714: -24,-13 - 2715: -21,-13 - 2716: -22,-16 - 2717: -24,-16 - 2718: -24,-17 - 2719: -23,-18 - 2720: -22,-18 - 2721: -24,-19 - 2722: -24,-20 - 2723: -23,-21 - 2724: -22,-21 - 2725: -26,-20 - 2726: -25,-18 - 2727: -25,-16 - 2728: -25,-15 - 2729: -21,-13 - 2730: -21,-15 - 2731: -21,-17 - 2732: -21,-18 - 2733: -22,-8 - 2734: -25,-10 - 2735: -25,-12 - 2736: -24,-12 - 2737: -24,-8 - 2738: -21,-10 - 2739: -22,-10 - 2740: -22,-13 - 2741: -8,-8 - 2742: -8,-10 - 2743: -8,-11 - 2744: -8,-13 - 2745: -8,-19 - 2746: -9,-17 - 2747: -11,-18 - 2748: -11,-18 - 2749: -11,-17 - 2750: -10,-16 - 2751: -8,-16 - 2752: -8,-17 - 2753: -10,-17 - 2754: -9,-18 - 2755: -8,-19 - 2756: -9,-20 - 2757: -8,-18 - 2758: -9,-17 - 2759: -10,-17 - 2760: -10,-18 - 2761: -9,-17 - 2762: -8,-18 - 2763: -9,-19 - 2764: -9,-19 - 2765: -4,-9 - 2766: -5,-11 - 2767: -4,-10 - 2768: -5,-12 - 2769: -5,-14 - 2770: -7,-25 - 2771: -7,-26 - 2772: -6,-28 - 2773: 18,-35 - 2774: -2,-34 - 2775: 12,-32 - 2776: 11,-32 - 2777: 11,-33 - 2778: 12,-33 - 2779: 13,-32 - 2780: 16,-32 - 2781: 17,-32 - 2782: 16,-32 - 2783: 17,-32 - 2784: 16,-32 - 2785: 17,-32 - 2786: 6,-32 - 2787: 7,-33 - 2788: 8,-32 - 2789: -3,-39 - 2790: -3,-39 - 2791: -2,-40 - 2792: -1,-39 - 2793: -1,-38 - 2794: -2,-33 - 2795: -3,-33 - 2796: -3,-32 - 2797: -2,-32 - 2798: -2,-33 - 2799: -3,-33 - 2800: -3,-32 - 2801: -2,-32 - 2802: 7,-45 - 2803: 7,-46 - 2804: 8,-46 - 2805: 9,-46 - 2806: 9,-45 - 2807: 8,-45 - 2808: 8,-46 - 2809: 9,-45 - 2810: 8,-46 - 2811: 13,-43 - 2812: 12,-43 - 2813: 13,-43 - 2814: 12,-43 - 2815: 11,-45 - 2816: 11,-43 - 2817: 11,-46 - 2818: 13,-45 - 2819: 13,-46 - 2820: 13,-45 - 2821: 13,-46 - 2822: 13,-48 - 2823: 14,-49 - 2824: 14,-50 - 2825: 15,-51 - 2826: 16,-50 - 2827: 17,-49 - 2828: 17,-49 - 2829: 16,-48 - 2830: 14,-48 - 2831: 16,-51 - 2832: 16,-52 - 2833: 20,-58 - 2834: 21,-58 - 2835: 20,-57 - 2836: 19,-56 - 2837: 20,-56 - 2838: 20,-54 - 2839: 19,-54 - 2840: 20,-52 - 2841: 19,-51 - 2842: 20,-50 - 2843: 21,-49 - 2844: 19,-48 - 2845: 21,-46 - 2846: 21,-45 - 2847: 19,-44 - 2848: 21,-46 - 2849: 20,-42 - 2850: 19,-41 - 2851: 21,-40 - 2852: 19,-39 - 2853: 21,-38 - 2854: 20,-37 - 2855: 19,-36 - 2856: 21,-35 - 2857: 19,-34 - 2858: 20,-41 - 2859: 20,-38 - 2860: 20,-38 - 2861: 23,-28 - 2862: 21,-29 - 2863: 20,-29 - 2864: 19,-28 - 2865: 25,-28 - 2866: 28,-28 - 2867: 30,-26 - 2868: 31,-26 - 2869: 18,-25 - 2870: 20,-26 - 2871: 21,-24 - 2872: 20,-21 - 2873: 19,-20 - 2874: 21,-21 - 2875: 18,-22 - 2876: 19,-23 - 2877: 20,-24 - 2878: 17,-24 - 2879: 17,-26 - 2880: 12,-24 - 2881: 13,-26 - 2882: 14,-24 - 2883: 10,-24 - 2884: 9,-25 - 2885: 7,-25 - 2886: 8,-26 - 2887: 6,-24 - 2888: 5,-27 - 2889: 4,-25 - 2890: 2,-26 - 2891: 2,-27 - 2892: -2,-24 - 2893: -3,-26 - 2894: -4,-26 - 2895: -5,-24 - 2896: 2,-24 - 2897: 0,-24 - 2898: 0,-26 - 2899: 2,-26 - 2900: 9,-26 - 2901: 11,-26 - 2902: 15,-24 - 2903: 14,-25 - 2904: 21,-26 - 2905: 20,-21 - 2906: 19,-20 - 2907: 19,-19 - 2908: 19,-18 - 2909: 19,-17 - 2910: 19,-11 - 2911: 20,-11 - 2912: 19,-11 - 2913: 20,-12 - 2914: 19,-11 - 2915: 18,-10 - 2916: 19,-7 - 2917: 19,-6 - 2918: 18,-5 - 2919: 22,-15 - 2920: 23,-15 - 2921: 25,-15 - 2922: 25,-14 - 2923: 25,-13 - 2924: 23,-12 - 2925: 22,-12 - 2926: 25,-12 - 2927: 27,-12 - 2928: 28,-13 - 2929: 30,-13 - 2930: 31,-13 - 2931: 31,-12 - 2932: 31,-11 - 2933: 31,-10 - 2934: 31,-8 - 2935: 31,-8 - 2936: 31,-7 - 2937: 31,-4 - 2938: 33,-4 - 2939: 33,-4 - 2940: 32,-5 - 2941: 30,-16 - 2942: 30,-18 - 2943: 31,-15 - 2944: 31,-16 - 2945: 33,-16 - 2946: 33,-15 - 2947: 32,-16 - 2948: 32,-15 - 2949: 51,9 - 2950: 48,9 - 2951: 45,9 - 2952: 42,9 - 2953: 42,8 - 2954: 38,8 - 2955: 35,24 - 2956: 37,24 - 2957: 35,27 - 2958: 35,28 - 2959: 36,30 - 2960: 31,31 - 2961: 32,32 - 2962: 31,35 - 2963: 32,35 - 2964: 33,36 - 2965: 31,39 - 2966: 31,42 - 2967: 33,41 - 2968: 32,40 - 2969: 32,39 - 2970: 0,53 - 2971: 0,52 - 2972: 0,51 - 2973: 0,49 - 2974: 2,51 - 2975: 0,55 - 2976: 1,55 - 2977: 1,59 - 2978: 2,61 - 2979: 1,61 - 2980: -2,61 - 2981: -2,59 - 2982: -1,56 - 2983: -38,51 - 2984: -42,51 - 2985: -45,48 - 2986: -45,45 - 2987: -41,46 - 2988: -37,46 - 2989: -38,44 - 2990: -42,44 - 2991: -44,43 - 2992: -41,41 - 2993: -36,41 - 2994: -35,41 - 2995: -42,40 - 2996: -46,40 - 2997: -39,40 - 2998: -35,41 - 2999: -39,42 - 3000: -45,43 - 3001: -35,44 - 3002: -34,45 - 3003: -42,45 - 3004: -37,47 - 3005: -34,47 - 3006: -44,48 - 3007: -38,49 - 3008: -35,50 - 3009: -43,50 - 3010: -33,51 - 3011: -36,49 - 3012: -43,48 - 3013: -39,48 - 3014: -33,47 - 3015: -39,46 - 3016: -45,45 - 3017: -39,44 - 3018: -34,43 - 3019: -36,41 - 3020: -41,41 - 3021: -41,41 - 3022: -34,40 - 3023: -36,41 - 3024: -39,41 - 3025: -32,41 - 3026: -32,41 - 3027: -31,44 - 3028: -31,48 - 3029: -31,51 - 3030: -28,45 - 3031: -26,45 - 3032: -28,41 - 3033: -26,41 - 3034: -24,41 - 3035: -23,39 - 3177: 50,-37 - 3178: 53,-37 - 3179: 56,-38 - 3180: 55,-38 - 3181: 54,-39 - 3182: 53,-40 - 3183: 53,-42 - 3184: 51,-45 - 3185: 51,-46 - 3186: 46,-47 - 3187: 46,-46 - 3188: 48,-43 - 3189: 46,-45 - 3190: 45,-46 - 3191: 43,-46 - 3192: 47,-43 - 3193: 52,-46 - 3194: 52,-42 - 3195: 53,-42 - 3196: 50,-42 - 3197: 50,-40 - 3198: 50,-37 - 3199: 52,-36 - 3200: 55,-37 - 3201: 55,-38 - 3202: 53,-40 - 3203: 53,-42 - 3204: 52,-45 - 3205: 50,-45 - 3206: 54,-47 - 3207: 51,-47 - 3208: 46,-47 - 3209: 45,-47 - 3210: 44,-46 - 3211: 44,-44 - 3695: -5,-1 - 4666: 28,54 - 4667: 27,55 - 4668: 27,56 - 4669: 26,56 - 4670: 26,55 - 4671: 26,54 - 4672: 27,54 - 4673: 28,52 - 4674: 27,51 - 4675: 28,53 - - node: - cleanable: True - color: '#A4610696' - id: DirtHeavy - decals: - 3036: -20,45 - 3037: -20,52 - 3038: -21,35 - 3039: -19,37 - 3040: -19,35 - 3041: -20,35 - 3042: -11,40 - 3043: -10,44 - 3044: -10,48 - 3045: -15,48 - 3046: -5,43 - 3047: -2,50 - 3048: 5,50 - 3049: 12,50 - 3050: 15,55 - 3051: 18,58 - 3052: 19,63 - 3053: 23,67 - 3054: 33,47 - 3055: 31,40 - 3056: 26,35 - 3057: 33,31 - 3058: 32,25 - 3059: 31,22 - 3060: 36,23 - 3061: 37,27 - 3062: 42,30 - 3063: 43,27 - 3064: 44,21 - 3065: 42,16 - 3066: 41,13 - 3067: 43,15 - 3068: 44,19 - 3069: 32,8 - 3070: 27,7 - 3071: 40,3 - 3072: 46,3 - 3073: 56,3 - 3074: 64,3 - 3075: 70,3 - 3076: 73,3 - 3077: 83,3 - 3078: 83,10 - 3079: 76,9 - 3080: 80,6 - 3081: 53,-2 - 3082: 46,-16 - 3083: 38,-12 - 3084: 35,-6 - 3085: 32,-4 - 3086: 26,-5 - 3087: 21,-4 - 3088: 12,-4 - 3089: -5,-4 - 3090: -34,-4 - 3091: -41,-5 - 3092: -46,-33 - 3093: -36,-33 - 3094: -32,-36 - 3095: -39,-39 - 3096: -29,-38 - 3097: -26,-39 - 3098: -24,-35 - 3099: -26,-30 - 3100: -23,-26 - 3101: -17,-26 - 3102: -8,-27 - 3103: -5,-31 - 3104: -6,-37 - 3105: -6,-43 - 3106: -6,-48 - 3107: -6,-53 - 3108: -5,-57 - 3109: 5,-53 - 3110: 3,-53 - 3111: 6,-52 - 3112: 5,-52 - 3113: 4,-52 - 3114: 5,-53 - 3115: 6,-53 - 3116: 28,-27 - 3117: -8,-1 - 3118: -31,-4 - 3119: -25,-17 - 3120: -26,1 - 3121: -23,13 - 3122: -21,19 - 3123: -17,20 - 3124: -13,20 - 3125: -18,14 - 3126: -13,14 - 3127: -23,26 - 3128: -23,30 - 3129: -31,30 - 3130: -42,29 - 3131: -50,30 - 3132: -50,29 - 3133: -56,29 - 3134: -58,35 - 3135: -57,44 - 3136: -58,49 - 3137: -64,43 - 3138: -63,38 - 3139: -52,31 - 3140: -40,29 - 3141: -29,30 - 3142: -22,30 - 3143: -21,32 - 3144: -20,37 - 3145: -20,42 - 3146: -19,51 - 3147: -25,54 - 3148: -27,53 - 3149: -11,47 - 3150: -9,45 - 3151: -5,47 - 3152: 4,50 - 3153: 7,49 - 3154: 16,49 - 3155: 23,50 - 3156: 26,50 - 3157: 19,54 - 3158: 19,63 - 3159: 23,68 - 3160: 32,43 - 3161: 32,36 - 3162: 32,29 - 3163: 32,22 - 3164: 32,19 - 3165: 33,9 - 3166: 33,20 - 3167: 31,26 - 3168: 33,35 - 3169: 15,30 - 3170: 8,30 - 3171: 0,30 - 3172: -8,9 - 3173: -4,10 - 3174: 20,15 - 3175: 21,9 - 3176: 29,4 - 3212: 52,-43 - 3213: 50,-47 - 3214: 45,-46 - 3215: 46,-43 - 3216: 52,-40 - 3217: 55,-37 - 3218: 55,-38 - 3219: 47,-45 - 3220: 44,-47 - 3221: 54,-47 - 3222: 53,-47 - 4676: 27,55 - 4677: 28,52 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 3718: 25,-35 - 3719: 25,-34 - 3720: 25,-33 - 3721: 25,-32 - 3726: 31,-35 - 3727: 31,-34 - 3728: 31,-33 - 3729: 31,-32 - 3910: -21,27 - 3911: -21,26 - 3917: -21,25 - 4043: 39,27 - 4044: 39,28 - 4045: 39,29 - 4189: -56,-27 - 4316: 54,-19 - 4317: 54,-18 - 4318: 54,-17 - 4319: 54,-16 - 4320: 54,-15 - 4321: 54,-14 - 4322: 54,-13 - 4323: 54,-12 - 4324: 54,-11 - 4325: 54,-10 - 4326: 54,-9 - 4327: 54,-8 - 4328: 54,-7 - 4421: -62,43 - 4422: -62,42 - 4423: -62,41 - 4424: -62,40 - 4425: -62,39 - 4426: -62,38 - 4488: -30,2 - 4489: -30,3 - 4511: 77,8 - 4640: 29,52 - 4641: 29,53 - 4642: 29,54 - 4643: 29,55 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 3707: 31,-32 - 3708: 31,-33 - 3709: 31,-34 - 3710: 31,-35 - 3722: 25,-34 - 3723: 25,-33 - 3724: 25,-32 - 3725: 25,-35 - 4046: 40,29 - 4047: 40,28 - 4048: 40,27 - 4188: -56,-27 - 4295: 56,-7 - 4297: 56,-9 - 4298: 56,-8 - 4299: 56,-10 - 4300: 56,-11 - 4301: 56,-12 - 4302: 56,-13 - 4306: 58,-15 - 4307: 58,-16 - 4308: 58,-17 - 4309: 58,-18 - 4310: 58,-19 - 4411: -58,38 - 4412: -58,39 - 4413: -58,40 - 4414: -58,41 - 4415: -58,39 - 4416: -58,42 - 4417: -58,43 - 4490: -27,2 - 4491: -27,3 - 4505: 81,8 - 4648: 26,53 - 4649: 26,52 - 4662: 26,55 - 4663: 26,54 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSw - decals: - 3717: 25,-36 - 3894: 23,-9 - 3923: -27,37 - 4029: 27,69 - 4049: 39,26 - 4275: 49,-6 - 4315: 54,-20 - 4407: -62,37 - 4487: -30,1 - 4510: 77,7 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSe - decals: - 3711: 31,-36 - 3895: 28,-9 - 3925: -24,37 - 4028: 28,69 - 4050: 40,26 - 4290: 62,-6 - 4311: 58,-20 - 4410: -58,37 - 4486: -27,1 - 4503: 81,7 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNe - decals: - 3706: 31,-31 - 3892: 28,-8 - 3926: -24,38 - 4027: 28,70 - 4051: 40,30 - 4289: 62,-5 - 4305: 58,-14 - 4409: -58,44 - 4485: -27,4 - 4504: 81,9 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNw - decals: - 3700: 25,-31 - 3893: 23,-8 - 3924: -27,38 - 4030: 27,70 - 4052: 39,30 - 4274: 49,-5 - 4408: -62,44 - 4484: -30,4 - 4509: 77,9 - - node: - color: '#A4610696' - id: BrickTileWhiteLineW - decals: - 4053: 39,28 - 4054: 39,29 - 4055: 39,27 - 4091: 35,19 - 4092: 35,20 - 5002: -32,19 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerSw - decals: - 4056: 39,26 - 4090: 35,18 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerNw - decals: - 4057: 39,30 - 4093: 35,21 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerSe - decals: - 4058: 40,26 - 4087: 38,18 - - node: - color: '#A4610696' - id: BrickTileWhiteLineE - decals: - 4059: 40,27 - 4060: 40,28 - 4061: 40,29 - 4097: 38,20 - 4098: 38,19 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerNe - decals: - 4062: 40,30 - 4096: 38,21 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 3644: 0,-12 - 3676: 5,-14 - 3696: 22,-30 - 3792: 28,-24 - 3943: -2,57 - 4042: 43,33 - 4063: 35,18 - 4085: 36,19 - 4483: -7,-62 - 4562: 23,73 - 4906: 11,72 - 4984: -33,17 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 3645: 0,-11 - 3675: 5,-13 - 3697: 22,-29 - 3698: 22,-28 - 3784: 28,-23 - 3785: 28,-22 - 3786: 28,-21 - 3787: 28,-20 - 3788: 28,-19 - 3789: 28,-18 - 3790: 28,-17 - 3791: 28,-16 - 3829: 29,-16 - 3830: 29,-17 - 3831: 29,-18 - 3832: 29,-19 - 3833: 29,-20 - 3834: 29,-21 - 3835: 29,-22 - 3836: 29,-23 - 3956: -2,60 - 3957: -2,59 - 3958: -2,58 - 4031: 43,34 - 4032: 43,35 - 4064: 35,19 - 4065: 35,20 - 4077: 38,20 - 4078: 38,19 - 4398: 39,0 - 4399: 39,-1 - 4443: -61,53 - 4563: 23,74 - 4564: 23,75 - 4565: 23,76 - 4566: 23,77 - 4567: 23,78 - 4630: 26,52 - 4631: 26,53 - 4660: 26,54 - 4661: 26,55 - 4774: -52,-38 - 4775: -52,-37 - 4776: -52,-35 - 4814: -52,-36 - 4908: 11,73 - 4988: -32,20 - 4989: -32,19 - 4990: -32,16 - 4991: -32,15 - 5021: -28,18 - 5022: -28,17 - 5039: -24,17 - 5040: -24,18 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 3646: 0,-10 - 3803: 28,-15 - 3944: -2,61 - 4041: 43,36 - 4066: 35,21 - 4086: 36,20 - 4442: -61,54 - 4482: -7,-61 - 4568: 23,79 - 4632: 26,56 - 4901: 11,74 - 4902: 14,75 - 4982: -33,18 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 3647: 1,-10 - 3648: 2,-10 - 3649: 3,-10 - 3650: 4,-10 - 3651: 5,-10 - 3652: 6,-10 - 3653: 7,-10 - 3654: 8,-10 - 3655: 9,-10 - 3656: 10,-10 - 3657: 11,-10 - 3658: 12,-10 - 3659: 13,-10 - 3953: 1,61 - 3954: 0,61 - 3955: -1,61 - 4037: 44,36 - 4038: 45,36 - 4067: 36,21 - 4068: 37,21 - 4081: 36,18 - 4082: 37,18 - 4441: -60,54 - 4479: -6,-61 - 4569: 24,79 - 4609: 26,79 - 4610: 27,79 - 4633: 27,56 - 4634: 28,56 - 4916: 12,74 - 4917: 13,74 - 4918: 15,75 - 4919: 17,74 - 4951: 18,74 - 4987: -32,18 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 3660: 14,-10 - 3802: 29,-15 - 3946: 2,61 - 4039: 46,36 - 4069: 38,21 - 4083: 37,20 - 4440: -59,54 - 4480: -5,-61 - 4635: 29,56 - 4903: 16,75 - 4904: 19,74 - 4985: -31,18 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 3661: 14,-11 - 3674: 9,-13 - 3794: 29,-23 - 3795: 29,-22 - 3796: 29,-21 - 3797: 29,-20 - 3798: 29,-19 - 3799: 29,-18 - 3800: 29,-17 - 3801: 29,-16 - 3821: 28,-23 - 3822: 28,-22 - 3823: 28,-21 - 3824: 28,-20 - 3825: 28,-19 - 3826: 28,-18 - 3827: 28,-17 - 3828: 28,-16 - 3950: 2,58 - 3951: 2,59 - 3952: 2,60 - 4033: 46,34 - 4034: 46,35 - 4070: 38,20 - 4071: 38,19 - 4079: 35,19 - 4080: 35,20 - 4396: 41,0 - 4397: 41,-1 - 4439: -59,53 - 4579: 31,74 - 4580: 31,75 - 4636: 29,55 - 4637: 29,54 - 4638: 29,53 - 4639: 29,52 - 4770: -48,-35 - 4771: -48,-36 - 4772: -48,-37 - 4773: -48,-38 - 4793: -30,-28 - 4794: -30,-27 - 4795: -30,-26 - 4796: -30,-25 - 4907: 19,73 - 4992: -32,15 - 4993: -32,16 - 4994: -32,19 - 4995: -32,20 - 5005: -34,17 - 5006: -34,18 - 5007: -34,19 - 5008: -34,16 - 5017: -28,18 - 5018: -28,17 - 5025: -29,17 - 5026: -29,18 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 3662: 14,-12 - 3680: 9,-14 - 3793: 29,-24 - 3912: -17,25 - 3945: 2,57 - 4040: 46,33 - 4072: 38,18 - 4084: 37,19 - 4481: -5,-62 - 4578: 31,73 - 4792: -30,-29 - 4905: 19,72 - 4983: -31,17 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 3664: 13,-12 - 3665: 12,-12 - 3666: 11,-12 - 3667: 10,-12 - 3668: 1,-12 - 3669: 2,-12 - 3670: 3,-12 - 3671: 4,-12 - 3677: 6,-14 - 3678: 7,-14 - 3679: 8,-14 - 3699: 23,-30 - 3913: -18,25 - 3914: -19,25 - 3915: -20,25 - 3916: -21,25 - 3919: -16,26 - 3920: -15,26 - 3921: -14,26 - 3922: -13,26 - 3947: -1,57 - 3948: 0,57 - 3949: 1,57 - 4035: 44,33 - 4036: 45,33 - 4073: 37,18 - 4074: 36,18 - 4075: 36,21 - 4076: 37,21 - 4478: -6,-62 - 4570: 24,73 - 4571: 25,73 - 4572: 26,73 - 4573: 27,73 - 4574: 28,73 - 4575: 29,73 - 4576: 30,73 - 4577: 31,73 - 4607: 26,78 - 4608: 27,78 - 4784: -38,-29 - 4785: -37,-29 - 4786: -36,-29 - 4787: -35,-29 - 4788: -34,-29 - 4789: -33,-29 - 4790: -32,-29 - 4791: -31,-29 - 4909: 12,72 - 4910: 13,72 - 4911: 14,72 - 4912: 15,72 - 4913: 16,72 - 4914: 17,72 - 4915: 18,72 - 4986: -32,17 - - node: - color: '#A4610696' - id: BrickTileWhiteLineS - decals: - 4088: 37,18 - 4089: 36,18 - - node: - color: '#A4610696' - id: BrickTileWhiteLineN - decals: - 4094: 36,21 - 4095: 37,21 - - node: - color: '#A4610696' - id: StandClear - decals: - 4099: 34,20 - 4100: 34,19 - 4101: 34,20 - 4102: 34,19 - 4103: 39,20 - 4104: 39,19 - 4105: 39,20 - 4106: 39,19 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 4382: 54,-19 - 4383: 54,-18 - 4384: 54,-17 - 4385: 54,-16 - 4386: 54,-15 - 4387: 54,-14 - 4388: 54,-13 - 4389: 54,-12 - 4390: 54,-11 - 4391: 54,-10 - 4392: 54,-9 - 4393: 54,-8 - 4394: 54,-7 - 4400: 39,0 - 4401: 39,-1 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 4362: 56,-7 - 4363: 56,-8 - 4364: 56,-9 - 4365: 56,-10 - 4366: 56,-11 - 4367: 56,-12 - 4368: 56,-13 - 4372: 58,-15 - 4373: 58,-16 - 4374: 58,-17 - 4375: 58,-18 - 4376: 58,-19 - 4402: 41,0 - 4403: 41,-1 - 5000: -32,15 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 235: -27,-41 - 241: -22,-41 - 1237: -61,48 - 1481: 38,48 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 236: -25,-41 - 242: -28,-41 - 1482: 35,48 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 243: -28,-38 - 1483: 35,51 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 249: -27,-38 - 250: -26,-38 - 251: -25,-38 - 252: -24,-38 - 253: -23,-38 - 350: 38,-3 - 351: 39,-3 - 352: 40,-3 - 353: 41,-3 - 354: 42,-3 - 355: 43,-3 - 356: 44,-3 - 357: 45,-3 - 358: 46,-3 - 403: 34,-7 - 519: -32,27 - 520: -31,27 - 521: -30,27 - 522: -28,27 - 523: -27,27 - 524: -26,27 - 534: -29,26 - 1231: -64,51 - 1232: -63,51 - 1233: -61,51 - 1486: 36,51 - 1487: 37,51 - 1625: 60,-19 - 1626: 61,-19 - 1627: 62,-19 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 404: 35,-7 - 535: -32,25 - 538: -28,26 - 1488: 38,51 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 239: -26,-40 - 240: -23,-41 - 254: -24,-41 - 345: 44,-1 - 346: 45,-1 - 347: 46,-1 - 389: 46,-17 - 390: 45,-17 - 391: 44,-17 - 392: 43,-17 - 393: 42,-17 - 394: 41,-17 - 395: 40,-17 - 396: 39,-17 - 397: 38,-17 - 398: 37,-17 - 525: -32,25 - 526: -31,25 - 527: -30,25 - 528: -29,25 - 529: -28,25 - 530: -27,25 - 531: -26,25 - 1238: -63,48 - 1242: -62,48 - 1489: 36,48 - 1490: 37,48 - 1628: 60,-23 - 1629: 61,-23 - 1630: 62,-23 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkCornerSw - decals: - 3482: 43,33 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkCornerNw - decals: - 3483: 43,36 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkCornerSe - decals: - 3484: 46,33 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkCornerNe - decals: - 3485: 46,36 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkLineN - decals: - 3486: 44,36 - 3487: 45,36 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkLineE - decals: - 3488: 46,35 - 3489: 46,34 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkLineS - decals: - 3490: 44,33 - 3491: 45,33 - 3596: -25,-18 - 3597: -26,-18 - 3598: -27,-18 - 3606: 25,-1 - 3607: 25,-1 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkLineW - decals: - 3492: 43,34 - 3493: 43,35 - 3592: -24,-21 - 3593: -24,-20 - 3594: -24,-19 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 23: 31,10 - 24: 31,11 - 25: 31,12 - 26: 31,13 - 27: 31,14 - 28: 31,15 - 29: 31,16 - 30: 31,17 - 31: 31,9 - 32: 31,8 - 33: 31,7 - 34: 31,6 - 35: 31,5 - 36: 31,4 - 37: 30,4 - 38: 29,4 - 39: 28,4 - 40: 27,4 - 41: 27,3 - 42: 27,2 - 43: 27,1 - 44: 27,0 - 45: 27,-1 - 46: 27,-2 - 543: -33,31 - 544: -32,31 - 545: -31,31 - 546: -30,31 - 547: -29,31 - 548: -28,31 - 549: -27,31 - 550: -26,31 - 551: -25,31 - 552: -24,31 - 553: -23,31 - 554: -22,31 - 555: -21,31 - 556: -21,32 - 640: -19,54 - 657: -28,39 - 658: -27,39 - 659: -26,39 - 660: -25,39 - 661: -24,39 - 662: -23,39 - 663: -28,38 - 664: -28,37 - 665: -28,36 - 674: -10,41 - 675: -11,41 - 676: -12,41 - 677: -13,41 - 678: -14,41 - 679: -15,41 - 680: -16,41 - 681: -17,41 - 682: -17,40 - 683: -17,39 - 684: -17,38 - 685: -17,37 - 686: -17,36 - 687: -17,35 - 700: 24,10 - 701: 26,10 - 702: 28,10 - 709: 24,8 - 1427: -6,37 - 1428: -6,36 - 1429: -6,35 - 1430: -6,34 - 1431: -6,33 - 1454: -6,38 - 1455: -6,39 - 1456: -6,40 - 1457: -6,41 - 1458: -6,42 - - node: - angle: 3.141592653589793 rad - color: '#EFB34196' - id: Box - decals: - 508: 23,1 - 509: 23,0 - 510: 22,1 - 511: 22,0 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 637: -19,43 - 666: -28,36 - 667: -27,36 - 668: -26,36 - 669: -25,36 - 670: -24,36 - 671: -23,36 - 672: -10,40 - 673: -10,41 - 688: -17,35 - 689: -16,35 - 690: -15,35 - 691: -14,35 - 692: -13,35 - 693: -13,36 - 694: -13,37 - 695: -13,38 - 696: -12,38 - 697: -11,38 - 703: 29,10 - 704: 29,8 - 705: 29,6 - 706: 27,6 - 707: 25,6 - 708: 24,7 - 1459: -7,43 - 1460: -8,43 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 171: -20,-25 - 172: -19,-25 - 173: -18,-25 - 174: -17,-25 - 175: -16,-25 - 176: -15,-25 - 177: -14,-25 - 178: -13,-25 - 187: -22,-25 - 188: -23,-25 - 189: -24,-25 - 190: -25,-25 - 191: -26,-25 - 192: -27,-25 - 193: -28,-25 - 194: -28,-26 - 195: -28,-27 - 196: -28,-27 - 197: -28,-28 - 198: -28,-29 - 199: -28,-30 - 200: -28,-31 - 201: -28,-32 - 202: -28,-33 - 203: -28,-34 - 204: -28,-35 - 205: -28,-36 - 216: -22,-33 - 217: -23,-33 - 218: -24,-33 - 231: -26,-34 - 710: 25,10 - 711: 27,10 - 712: 29,10 - 717: 25,6 - 718: 24,7 - 719: 24,9 - 3324: -26,-27 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 206: -28,-36 - 207: -27,-36 - 208: -26,-36 - 209: -25,-36 - 210: -24,-36 - 211: -23,-36 - 212: -22,-36 - 213: -22,-35 - 214: -22,-34 - 215: -22,-33 - 219: -25,-32 - 220: -25,-31 - 221: -25,-30 - 222: -25,-29 - 223: -25,-28 - 224: -24,-27 - 225: -23,-27 - 226: -22,-27 - 228: -26,-26 - 229: -27,-26 - 713: 29,9 - 714: 29,7 - 715: 28,6 - 716: 26,6 - 3325: -25,-27 - - node: - color: '#D4D4D433' - id: HalfTileOverlayGreyscale90 - decals: - 771: -5,-58 - 772: -5,-57 - 773: -5,-56 - 774: -5,-55 - 775: -5,-54 - 776: -5,-53 - 777: -5,-51 - 778: -5,-50 - 779: -5,-28 - 780: -5,-27 - 830: -41,-11 - 849: 29,-3 - 850: 29,-4 - 861: 20,-6 - 862: 20,-8 - 863: 20,-9 - 864: 20,-10 - 865: 20,-11 - 866: 20,-12 - 867: 20,-14 - 868: 20,-15 - 869: 20,-16 - 872: 21,-18 - 873: 21,-19 - 874: 21,-20 - 875: 21,-21 - 876: 21,-22 - 877: 21,-23 - 878: 21,-24 - 879: 21,-25 - 880: 21,-26 - 881: 21,-27 - 882: 21,-28 - 883: 21,-29 - 884: 21,-30 - 893: 21,-38 - 894: 21,-39 - 895: 21,-40 - 896: 21,-41 - 897: 21,-42 - 898: 21,-43 - 899: 21,-44 - 900: 21,-45 - 901: 21,-46 - 902: 21,-47 - 903: 21,-48 - 904: 21,-49 - 905: 21,-50 - 906: 21,-51 - 907: 21,-52 - 908: 21,-53 - 909: 21,-54 - 910: 21,-55 - 911: 21,-56 - 912: 21,-57 - 919: 29,-1 - 920: 29,0 - 921: 29,1 - - node: - color: '#D4D4D419' - id: HalfTileOverlayGreyscale180 - decals: - 1193: -25,29 - 1194: -26,29 - 1195: -27,29 - 1196: -28,29 - 1197: -29,29 - 1198: -30,29 - 1199: -31,29 - 1200: -32,29 - 1201: -33,29 - 1202: -36,29 - 1203: -37,29 - 1204: -38,29 - 1205: -39,29 - 1206: -42,29 - 1207: -43,29 - 1208: -44,29 - 1209: -45,29 - 1210: -46,29 - 1211: -48,29 - 1212: -49,29 - 1213: -50,29 - 1214: -51,29 - 1215: -52,29 - 1216: -53,29 - 1217: -54,29 - 1218: -56,29 - 1219: -57,29 - 1299: -21,29 - 1300: -20,29 - 1301: -19,29 - 1302: -18,29 - 1303: -17,29 - 1304: -16,29 - 1305: -15,29 - 1306: -14,29 - 1307: -13,29 - 1308: -12,29 - 1309: -11,29 - 1310: -10,29 - 1311: -9,29 - 1312: -8,29 - 1313: -5,29 - 1314: -3,30 - 1315: -2,30 - 1316: -1,30 - 1317: 0,30 - 1318: 1,30 - 1319: 2,30 - 1320: 3,30 - 1321: 4,30 - 1322: 5,30 - 1323: 6,30 - 1324: 7,30 - 1325: 8,30 - 1326: 9,30 - 1327: 10,30 - 1328: 11,30 - 1329: 12,30 - 1330: 13,30 - 1331: 14,30 - 1332: 15,30 - 1333: 16,30 - 1334: 17,30 - 1371: -3,49 - 1372: -2,49 - 1373: -1,49 - 1374: 0,49 - 1375: 1,49 - 1376: 2,49 - 1377: 4,49 - 1378: 5,49 - 1379: 6,49 - 1380: 7,49 - 1381: 8,49 - 1382: 9,49 - 1383: 10,49 - 1384: 11,49 - 1385: 12,49 - 1386: 13,49 - 1387: 11,49 - 1388: 13,49 - 1389: 14,49 - 1390: 15,49 - 1391: 16,49 - 1392: 17,49 - 1393: 18,49 - 1394: 19,49 - 1395: 21,49 - 1396: 22,49 - 1397: 23,49 - 1398: 25,49 - 1399: 26,49 - 1400: 24,49 - 1401: 27,49 - 1402: 29,49 - 1403: 28,49 - 1404: 20,49 - - node: - color: '#D4D4D419' - id: QuarterTileOverlayGreyscale270 - decals: - 1191: -24,29 - 1335: 18,30 - - node: - color: '#D4D4D419' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1336: 18,31 - - node: - color: '#D4D4D419' - id: HalfTileOverlayGreyscale - decals: - 1262: -54,31 - 1263: -53,31 - 1264: -52,31 - 1265: -51,31 - 1266: -50,31 - 1267: -49,31 - 1268: -48,31 - 1269: -47,31 - 1270: -46,31 - 1271: -45,31 - 1272: -44,31 - 1273: -43,31 - 1274: -42,31 - 1275: -41,31 - 1276: -40,31 - 1277: -39,31 - 1278: -38,31 - 1279: -37,31 - 1280: -36,31 - 1281: -35,31 - 1337: 17,31 - 1338: 16,31 - 1339: 15,31 - 1340: 14,31 - 1341: 13,31 - 1342: 12,31 - 1343: 11,31 - 1344: 9,31 - 1345: 8,31 - 1346: 7,31 - 1347: 5,31 - 1348: 4,31 - 1349: 3,31 - 1350: 2,31 - 1351: 1,31 - 1352: 0,31 - 1353: -1,31 - 1354: -2,31 - 1355: -3,31 - - node: - color: '#52B4E996' - id: BotGreyscale - decals: - 1692: -15,39 - 1698: 29,10 - 1705: 42,-6 - 5035: -27,18 - 5036: -27,17 - 5037: -25,18 - 5038: -25,17 - - node: - color: '#52B4E996' - id: WarnBoxGreyscale - decals: - 1519: -49,-25 - 1520: -49,-24 - 3307: 22,17 - 3308: 22,16 - 3309: 22,15 - - node: - color: '#79150096' - id: WarnBox - decals: - 1517: -52,-24 - 1518: -52,-25 - 3301: -6,13 - 3302: -6,13 - 3303: -6,14 - 3304: -6,14 - 3305: -6,15 - 3306: -6,15 - 3310: 30,13 - 3311: 30,12 - 3312: 30,13 - 3313: 30,12 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 4706: 19,15 - 4707: 19,16 - 4708: 19,17 - 4957: 10,73 - 4958: 10,74 - 4959: 10,75 - 4960: 10,76 - 5107: 73,-11 - 5108: 73,-4 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 91: 17,-23 - 92: 18,-23 - 93: 18,-22 - 94: 18,-21 - 95: 18,-20 - 96: 18,-19 - 97: 18,-18 - 98: 18,-17 - 99: 18,-16 - 100: 18,-15 - 101: 18,-14 - 102: 18,-13 - 103: 18,-12 - 104: 18,-10 - 105: 18,-11 - 106: 18,-9 - 107: 18,-8 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 141: 19,-27 - 142: 19,-28 - 143: 19,-29 - 144: 19,-30 - 145: 19,-31 - 146: 19,-32 - 147: 19,-33 - 148: 19,-34 - 149: 19,-35 - 150: 19,-36 - 151: 19,-37 - 152: 19,-38 - 153: 19,-39 - 154: 19,-40 - 155: 19,-41 - 156: 19,-42 - 157: 19,-43 - 158: 19,-44 - 159: 19,-45 - 160: 19,-46 - 161: 19,-47 - 162: 19,-48 - 163: 19,-49 - 164: 19,-50 - 165: 19,-51 - 166: 19,-52 - 167: 19,-53 - - node: - color: '#D4D4D433' - id: HalfTileOverlayGreyscale180 - decals: - 782: -4,-26 - 783: -3,-26 - 784: 17,-26 - 785: 18,-26 - 786: -8,-28 - 787: -9,-28 - 788: -10,-28 - 789: -11,-28 - 815: -7,-5 - 816: -9,-5 - 817: -10,-5 - 818: -11,-5 - 819: -13,-5 - 820: -14,-5 - 821: -15,-5 - 822: -16,-5 - 823: -17,-5 - 824: -19,-5 - 825: -22,-5 - 826: -23,-5 - 827: -24,-5 - 828: -40,-5 - 852: 28,-5 - 853: 27,-5 - 854: 26,-5 - 855: 25,-5 - 856: 24,-5 - 857: 23,-5 - 858: 22,-5 - 859: 21,-5 - 889: 24,-36 - 890: 23,-36 - 891: 22,-36 - 956: 65,2 - 957: 66,2 - 958: 67,2 - 959: 68,2 - 960: 69,2 - - node: - color: '#D4D4D433' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 837: 17,-6 - - node: - color: '#D4D4D433' - id: QuarterTileOverlayGreyscale270 - decals: - 790: -7,-28 - 792: -11,-27 - 814: -6,-5 - 838: 17,-5 - 839: 18,-6 - 851: 29,-5 - - node: - color: '#D4D4D433' - id: QuarterTileOverlayGreyscale - decals: - 791: -11,-28 - 798: -6,-25 - 848: 27,-3 - 914: 19,-58 - - node: - color: '#D4D4D433' - id: QuarterTileOverlayGreyscale180 - decals: - 781: -5,-26 - 829: -41,-5 - 860: 20,-5 - 892: 21,-36 - - node: - color: '#D4D4D433' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 870: 21,-17 - - node: - color: '#D4D4D433' - id: QuarterTileOverlayGreyscale90 - decals: - 871: 20,-17 - 885: 21,-31 - 913: 21,-58 - - node: - color: '#B78FB4FF' - id: SpaceStationSign1 - decals: - 1566: 4,-4 - - node: - color: '#B78FB4FF' - id: SpaceStationSign2 - decals: - 1567: 5,-4 - - node: - color: '#B78FB4FF' - id: SpaceStationSign3 - decals: - 1568: 6,-4 - - node: - color: '#B78FB4FF' - id: SpaceStationSign4 - decals: - 1569: 7,-4 - - node: - color: '#B78FB4FF' - id: SpaceStationSign5 - decals: - 1570: 8,-4 - - node: - color: '#B78FB4FF' - id: SpaceStationSign6 - decals: - 1571: 9,-4 - - node: - color: '#B78FB4FF' - id: SpaceStationSign7 - decals: - 1572: 10,-4 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNe - decals: - 3609: 5,-12 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 3610: 4,-12 - 3611: 3,-12 - 3612: 2,-12 - 3613: 1,-12 - 3632: 13,-12 - 3633: 12,-12 - 3634: 11,-12 - 3635: 10,-12 - 3639: 8,-14 - 3640: 7,-14 - 3641: 6,-14 - 3689: -8,-3 - 3690: -7,-3 - 3691: -6,-3 - 4430: -58,51 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNe - decals: - 3614: 0,-12 - 3642: 5,-14 - 3692: -10,-3 - 4431: -59,51 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineE - decals: - 3615: 0,-11 - 3643: 5,-13 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSe - decals: - 3616: 0,-10 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineS - decals: - 3617: 1,-10 - 3618: 2,-10 - 3619: 3,-10 - 3620: 4,-10 - 3621: 5,-10 - 3622: 6,-10 - 3623: 7,-10 - 3624: 8,-10 - 3625: 9,-10 - 3626: 10,-10 - 3627: 11,-10 - 3628: 12,-10 - 3629: 13,-10 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSw - decals: - 3630: 14,-10 - 5045: -24,19 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineW - decals: - 3631: 14,-11 - 3637: 9,-13 - 4996: -32,20 - 5043: -24,17 - 5044: -24,18 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNw - decals: - 3636: 9,-12 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNw - decals: - 3638: 9,-14 - 3663: 14,-12 - 3693: -4,-3 - 4432: -57,51 - 5046: -24,16 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - decals: - 3672: 5,-12 - 3837: 29,-15 - 5041: -24,19 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSe - decals: - 3673: 9,-12 - 3838: 28,-15 - 3918: -17,26 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - decals: - 3681: 13,-19 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - decals: - 3587: -25,-19 - 3682: 13,-18 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 3462: -2,-46 - 3463: -1,-46 - 3464: 0,-46 - 3465: 1,-46 - 3466: -3,-42 - 3467: -2,-42 - 3468: -1,-42 - 3469: 0,-42 - 3470: 1,-42 - 3588: -26,-19 - 3589: -27,-19 - 3605: -21,-13 - 3683: 12,-18 - 3810: 31,-18 - 3811: 32,-18 - 3812: 33,-18 - 3813: 34,-18 - 3931: -10,33 - 3932: -9,33 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinEndN - decals: - 3684: 9,-17 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 3456: -3,-42 - 3457: -3,-43 - 3458: -3,-44 - 3459: -3,-46 - 3460: -3,-47 - 3461: -3,-48 - 3599: -21,-13 - 3600: -21,-14 - 3601: -21,-15 - 3602: -21,-16 - 3603: -21,-17 - 3604: -21,-18 - 3685: 9,-18 - 3804: 30,-22 - 3805: 30,-21 - 3806: 30,-20 - 3807: 30,-19 - 3808: 23,-21 - 3935: -8,34 - 3936: -8,35 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - decals: - 3686: 9,-19 - 3814: 30,-23 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 3471: -3,-44 - 3472: -2,-44 - 3473: -1,-44 - 3474: 0,-44 - 3475: 1,-44 - 3476: -3,-48 - 3477: -2,-48 - 3478: -1,-48 - 3479: 0,-48 - 3480: 1,-48 - 3481: -12,-32 - 3687: 12,-19 - 3815: 31,-23 - 3816: 32,-23 - 3817: 33,-23 - 3818: 34,-23 - 3937: -10,36 - 3938: -9,36 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 3688: 9,-18 - 3942: -11,33 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 3701: 26,-31 - 3702: 27,-31 - 3703: 28,-31 - 3704: 29,-31 - 3705: 30,-31 - 3735: 30,-36 - 3736: 29,-36 - 3737: 28,-36 - 3738: 27,-36 - 3739: 26,-36 - 3874: 16,-3 - 3875: 15,-3 - 3876: 14,-3 - 3877: 13,-3 - 3878: 12,-3 - 3879: 11,-3 - 3880: 10,-3 - 3881: 9,-3 - 3882: 8,-3 - 3883: 7,-3 - 3884: 6,-3 - 3885: 5,-3 - 3886: 4,-3 - 3887: 3,-3 - 3888: 2,-3 - 3889: 1,-3 - 3890: 0,-3 - 3891: -1,-3 - 3900: 24,-8 - 3901: 25,-8 - 3902: 26,-8 - 3903: 27,-8 - 3904: -20,28 - 3905: -19,28 - 3906: -18,28 - 3907: -15,28 - 3908: -14,28 - 3909: -13,28 - 3927: -26,38 - 3928: -25,38 - 4276: 50,-5 - 4277: 51,-5 - 4278: 52,-5 - 4279: 53,-5 - 4280: 54,-5 - 4281: 55,-5 - 4282: 56,-5 - 4283: 57,-5 - 4284: 58,-5 - 4285: 58,-5 - 4286: 59,-5 - 4287: 60,-5 - 4288: 61,-5 - 4304: 57,-14 - 4418: -61,44 - 4419: -60,44 - 4420: -59,44 - 4427: -58,51 - 4433: -62,46 - 4461: 15,-24 - 4462: 14,-24 - 4463: 13,-24 - 4464: 12,-24 - 4465: 11,-24 - 4466: 10,-24 - 4467: 9,-24 - 4468: 8,-24 - 4469: 7,-24 - 4470: 6,-24 - 4471: 5,-24 - 4472: 4,-24 - 4473: 3,-24 - 4474: 2,-24 - 4475: 1,-24 - 4476: 0,-24 - 4477: -1,-24 - 4494: -29,4 - 4495: -28,4 - 4506: 80,9 - 4507: 79,9 - 4508: 78,9 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - decals: - 3712: 30,-36 - 3713: 29,-36 - 3714: 28,-36 - 3715: 27,-36 - 3716: 26,-36 - 3730: 30,-31 - 3731: 29,-31 - 3732: 28,-31 - 3733: 27,-31 - 3734: 26,-31 - 3856: -1,-5 - 3857: 0,-5 - 3858: 1,-5 - 3859: 16,-5 - 3860: 14,-5 - 3861: 15,-5 - 3862: 13,-5 - 3863: 12,-5 - 3864: 11,-5 - 3865: 10,-5 - 3866: 9,-5 - 3867: 8,-5 - 3868: 7,-5 - 3869: 6,-5 - 3870: 5,-5 - 3871: 4,-5 - 3872: 3,-5 - 3873: 2,-5 - 3896: 24,-9 - 3897: 25,-9 - 3898: 26,-9 - 3899: 27,-9 - 3929: -26,37 - 3930: -25,37 - 4291: 61,-6 - 4292: 60,-6 - 4293: 58,-6 - 4294: 57,-6 - 4312: 57,-20 - 4313: 56,-20 - 4314: 55,-20 - 4331: 53,-6 - 4332: 52,-6 - 4333: 50,-6 - 4334: 51,-6 - 4356: 59,-6 - 4404: -61,37 - 4405: -60,37 - 4406: -59,37 - 4444: -1,-26 - 4445: 0,-26 - 4446: 1,-26 - 4447: 2,-26 - 4448: 3,-26 - 4449: 4,-26 - 4450: 5,-26 - 4451: 6,-26 - 4452: 7,-26 - 4453: 8,-26 - 4454: 9,-26 - 4455: 10,-26 - 4456: 11,-26 - 4457: 12,-26 - 4458: 13,-26 - 4459: 14,-26 - 4460: 15,-26 - 4492: -29,1 - 4493: -28,1 - 4500: 78,7 - 4501: 79,7 - 4502: 80,7 - 4645: 28,56 - 4646: 27,56 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSw - decals: - 3742: 31,-31 - 4329: 54,-6 - 4330: 54,-6 - 4644: 29,56 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSe - decals: - 3743: 25,-31 - 4296: 56,-6 - 4647: 26,56 - - node: - color: '#52B4E996' - id: MiniTileCheckerAOverlay - decals: - 3744: 26,-35 - 3745: 27,-35 - 3746: 28,-35 - 3747: 29,-35 - 3748: 30,-35 - 3749: 30,-34 - 3750: 29,-34 - 3751: 28,-34 - 3752: 27,-34 - 3753: 26,-34 - 3754: 26,-33 - 3755: 26,-32 - 3756: 27,-32 - 3757: 28,-32 - 3758: 29,-32 - 3759: 30,-32 - 3760: 30,-33 - 3761: 29,-33 - 3762: 28,-33 - 3763: 27,-33 - - node: - color: '#FFFFFFFF' - id: MiniTileCheckerBOverlay - decals: - 3764: 26,-32 - 3765: 26,-33 - 3766: 26,-34 - 3767: 26,-35 - 3768: 27,-35 - 3769: 28,-35 - 3770: 29,-35 - 3771: 30,-35 - 3772: 30,-34 - 3773: 30,-33 - 3774: 30,-32 - 3775: 29,-32 - 3776: 28,-32 - 3777: 27,-32 - 3778: 27,-33 - 3779: 27,-34 - 3780: 28,-34 - 3781: 28,-33 - 3782: 29,-33 - 3783: 29,-34 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - decals: - 3809: 30,-18 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - decals: - 3819: 29,-24 - 4921: 14,74 - 5042: -24,16 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNe - decals: - 3820: 28,-24 - 4920: 16,74 - - node: - color: '#52B4E996' - id: StandClearGreyscale - decals: - 4266: -3,-11 - 4267: -3,-12 - 4268: -1,-11 - 4269: -1,-12 - 4270: 15,-11 - 4271: 15,-12 - 4272: 17,-11 - 4273: 17,-12 - 5031: -27,17 - 5032: -27,18 - 5033: -25,18 - 5034: -25,17 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 47: 31,36 - 48: 31,37 - 49: 31,38 - 50: 31,39 - 51: 31,40 - 52: 31,41 - 53: 31,42 - 54: 31,43 - 55: 31,44 - 56: 31,45 - 57: 31,46 - 58: 31,47 - 59: 31,48 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 576: 25,51 - 577: 24,51 - 578: 23,51 - 579: 22,51 - 580: 21,51 - 999: 24,66 - 1029: 16,57 - 1030: 16,58 - 1031: 15,58 - 1032: 14,58 - 1033: 13,58 - 1034: 12,58 - 1035: 11,58 - 1405: 20,51 - 1406: 19,51 - 1407: 18,51 - 1408: 17,51 - 1409: 16,51 - 1410: 12,51 - 1411: 11,51 - 1412: 10,51 - 1413: 9,51 - 1414: 8,51 - 1415: 7,51 - 1416: 6,51 - 1417: 5,51 - 1418: 4,51 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 961: 20,56 - 962: 20,57 - 963: 20,58 - 964: 20,59 - 965: 20,61 - 966: 20,62 - 967: 20,63 - 968: 20,64 - 969: 20,65 - 1000: 24,67 - 1001: 24,68 - 1002: 24,70 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 970: 18,54 - 971: 18,57 - 972: 18,58 - 973: 18,59 - 974: 18,60 - 975: 18,61 - 976: 18,62 - 977: 18,63 - 978: 18,64 - 979: 18,65 - 980: 18,66 - - node: - color: '#D381C996' - id: CheckerNWSE - decals: - 985: 21,65 - 986: 21,64 - 987: 21,63 - 988: 22,65 - 989: 22,64 - 990: 22,63 - 991: 23,65 - 992: 23,64 - 993: 23,63 - 994: 24,65 - 995: 24,64 - 996: 24,63 - - node: - color: '#EFB34196' - id: WarnCornerSmallSW - decals: - 1022: 16,56 - 1510: 2,61 - 3287: 51,-20 - - node: - color: '#EFB34196' - id: WarnEndW - decals: - 1023: 13,56 - 1703: -20,-23 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 981: 18,67 - 1036: 11,58 - 1037: 11,57 - 1038: 11,56 - 1039: 11,55 - 1040: 11,54 - 1041: 11,53 - 1042: 12,53 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 557: -19,32 - 558: -19,31 - 559: -18,31 - 560: -17,31 - 561: -16,31 - 562: -15,31 - 563: -14,31 - 564: -13,31 - 565: -12,31 - 566: -11,31 - 567: -10,31 - 568: -9,31 - 569: -8,31 - 636: -19,45 - 641: -20,54 - 1419: 2,51 - 1420: 1,51 - 1421: -1,51 - 1422: -2,51 - 1423: -3,51 - 1424: -4,51 - 1425: -5,51 - 1426: -6,51 - 1461: -7,45 - 1462: -8,45 - - node: - color: '#EFB34196' - id: WarnCornerSmallNW - decals: - 656: -23,48 - 1511: 2,57 - - node: - color: '#D381C996' - id: DiagonalCheckerBOverlay - decals: - 3961: 22,58 - 3962: 22,59 - 3963: 22,61 - 3964: 22,60 - 3965: 23,61 - 3966: 23,60 - 3967: 23,59 - 3968: 23,58 - 3969: 24,58 - 3970: 24,59 - 3971: 24,60 - 3972: 24,61 - 3973: 25,61 - 3974: 25,60 - 3975: 25,59 - 3976: 25,58 - 3977: 26,58 - 3978: 26,59 - 3979: 26,60 - 3980: 26,61 - 3981: 27,61 - 3982: 27,60 - 3983: 27,59 - 3984: 27,58 - 3985: 28,58 - 3986: 28,59 - 3987: 28,60 - 3988: 28,61 - 3989: 29,61 - 3990: 29,60 - 3991: 29,59 - 3992: 29,58 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSe - decals: - 3993: 29,58 - 4120: -43,-45 - 4121: -43,-43 - 4122: -43,-41 - 4123: -38,-45 - 4124: -38,-43 - 4172: -34,-44 - 4184: -34,-44 - 4252: -17,-31 - 4691: -29,-14 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - decals: - 3994: 22,61 - 4114: -44,-40 - 4128: -44,-44 - 4129: -44,-42 - 4130: -39,-42 - 4131: -39,-44 - 4174: -35,-43 - 4181: -35,-43 - 4183: -35,-43 - 4251: -20,-29 - 4701: -37,-12 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSw - decals: - 3995: 22,58 - 4115: -44,-41 - 4116: -44,-43 - 4117: -44,-45 - 4118: -39,-45 - 4119: -39,-43 - 4173: -35,-44 - 4182: -35,-44 - 4250: -20,-31 - 4702: -37,-13 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - decals: - 3996: 29,61 - 4113: -43,-40 - 4125: -38,-42 - 4126: -43,-42 - 4127: -43,-44 - 4175: -34,-43 - 4180: -34,-43 - 4253: -17,-29 - 4693: -29,-12 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - decals: - 3997: 28,61 - 3998: 27,61 - 3999: 26,61 - 4000: 25,61 - 4001: 24,61 - 4002: 23,61 - 4156: -42,-41 - 4157: -42,-43 - 4158: -42,-45 - 4159: -40,-45 - 4160: -40,-43 - 4214: -53,-31 - 4215: -52,-31 - 4216: -51,-31 - 4217: -50,-31 - 4218: -49,-31 - 4219: -48,-31 - 4220: -47,-31 - 4221: -46,-31 - 4222: -45,-31 - 4223: -44,-31 - 4224: -43,-31 - 4225: -42,-31 - 4226: -41,-31 - 4227: -40,-31 - 4228: -39,-31 - 4229: -38,-31 - 4230: -37,-31 - 4231: -36,-31 - 4232: -35,-31 - 4233: -34,-31 - 4234: -33,-31 - 4235: -32,-31 - 4236: -31,-31 - 4237: -30,-31 - 4254: -19,-29 - 4255: -18,-29 - 4694: -30,-12 - 4695: -31,-12 - 4696: -32,-12 - 4697: -33,-12 - 4698: -34,-12 - 4699: -35,-12 - 4700: -36,-12 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 4003: 23,58 - 4004: 24,58 - 4005: 25,58 - 4006: 26,58 - 4007: 27,58 - 4008: 28,58 - 4151: -42,-43 - 4152: -42,-45 - 4153: -42,-41 - 4154: -40,-43 - 4155: -40,-45 - 4190: -30,-33 - 4191: -31,-33 - 4192: -32,-33 - 4193: -33,-33 - 4194: -34,-33 - 4195: -35,-33 - 4196: -36,-33 - 4197: -37,-33 - 4198: -38,-33 - 4199: -39,-33 - 4200: -40,-33 - 4201: -41,-33 - 4202: -42,-33 - 4203: -43,-33 - 4204: -44,-33 - 4205: -45,-33 - 4206: -46,-33 - 4207: -47,-33 - 4208: -48,-33 - 4209: -49,-33 - 4210: -50,-33 - 4211: -51,-33 - 4212: -52,-33 - 4213: -53,-33 - 4256: -19,-31 - 4257: -18,-31 - 4686: -34,-14 - 4687: -33,-14 - 4688: -32,-14 - 4689: -31,-14 - 4690: -30,-14 - 4703: -36,-13 - 4704: -35,-13 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineW - decals: - 3855: -34,-14 - 4009: 22,59 - 4010: 22,60 - 4258: -20,-30 - 4264: 7,-40 - 4265: 7,-41 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineE - decals: - 4011: 29,59 - 4012: 29,60 - 4259: -17,-30 - 4262: 7,-40 - 4263: 7,-41 - 4692: -29,-13 - 5004: -45,15 - - node: - color: '#D381C996' - id: StandClearGreyscale - decals: - 4013: 25,54 - 4014: 25,55 - 4015: 21,55 - 4016: 21,54 - 4108: 16,64 - 4109: 18,68 - 4110: 19,68 - 4111: 23,72 - 4112: 24,72 - 4623: 25,79 - 4624: 25,78 - 4625: 28,79 - 4626: 28,78 - 4627: 32,79 - 4628: 32,78 - 4629: 32,77 - - node: - color: '#52B4E996' - id: Bot - decals: - 4026: 26,61 - - node: - color: '#D381C996' - id: BrickTileWhiteLineW - decals: - 4585: 23,78 - 4586: 23,77 - 4587: 23,76 - 4588: 23,75 - 4589: 23,74 - 4650: 26,52 - 4651: 26,53 - 4934: 11,73 - 5001: -32,16 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNw - decals: - 4583: 23,79 - 4652: 26,56 - 4936: 14,75 - 4937: 11,74 - - node: - color: '#D381C996' - id: BrickTileWhiteLineN - decals: - 4584: 24,79 - 4613: 26,79 - 4614: 27,79 - 4653: 27,56 - 4654: 28,56 - 4929: 12,74 - 4930: 13,74 - 4931: 15,75 - 4932: 17,74 - 4952: 18,74 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNe - decals: - 4655: 29,56 - 4938: 16,75 - 4939: 19,74 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 4597: 31,74 - 4598: 31,75 - 4656: 29,55 - 4657: 29,54 - 4658: 29,53 - 4659: 29,52 - 4933: 19,73 - - node: - color: '#EFB34196' - id: LoadingArea - decals: - 504: 75,10 - 505: 76,10 - - node: - angle: 3.141592653589793 rad - color: '#EFB34196' - id: LoadingArea - decals: - 506: 82,10 - 507: 83,10 - - node: - color: '#79150096' - id: Delivery - decals: - 3337: 81,16 - 3338: 82,16 - 3339: 83,16 - 3340: 84,16 - 3341: 74,16 - 3342: 75,16 - 3343: 76,16 - 3344: 77,16 - - node: - color: '#9FED5896' - id: Bushb2 - decals: - 3346: 78.083496,7.9973173 - 3347: 79.00016,7.900096 - 3348: 79.84738,7.8862066 - - node: - color: '#9FED5896' - id: grasssnow07 - decals: - 3349: 78.19461,7.941762 - 3350: 79.52794,7.9139843 - - node: - color: '#9FED5873' - id: Rock02 - decals: - 3351: 78.26405,7.9695406 - 3352: 79.31961,7.983429 - 3353: 79.93072,7.941762 - 3354: 78.26405,7.9556513 - - node: - color: '#9FED5873' - id: Flowersbr1 - decals: - 3355: 78.72238,7.9556513 - 3356: 79.69461,7.9278736 - - node: - color: '#FED83D79' - id: CheckerNWSE - decals: - 5077: 85,-1 - 5078: 85,0 - 5079: 86,0 - 5080: 86,-1 - 5081: 72,-1 - 5082: 72,0 - 5083: 73,0 - 5084: 73,-1 - - node: - color: '#52B4E95A' - id: CheckerNESW - decals: - 5085: 73,-1 - 5086: 72,-1 - 5087: 72,0 - 5088: 73,0 - 5089: 85,-1 - 5090: 85,0 - 5091: 86,0 - 5092: 86,-1 - - node: - color: '#D4D4D428' - id: FullTileOverlayGreyscale - decals: - 5093: 86,-2 - 5094: 85,-2 - 5095: 85,1 - 5096: 86,1 - 5097: 73,1 - 5098: 72,1 - 5099: 72,-2 - 5100: 73,-2 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 108: -4,-8 - 109: -4,-9 - 110: -4,-10 - 111: -4,-11 - 112: -4,-12 - 113: -4,-13 - 114: -4,-14 - 115: -4,-15 - 116: -4,-16 - 117: -4,-17 - 118: -4,-18 - 119: -4,-19 - 120: -4,-20 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 121: -5,-30 - 122: -5,-31 - 123: -5,-32 - 124: -5,-33 - 125: -5,-34 - 126: -5,-35 - 127: -5,-36 - 128: -5,-37 - 129: -5,-38 - 130: -5,-39 - 131: -5,-40 - 132: -5,-41 - 133: -5,-42 - 134: -5,-43 - 135: -5,-44 - 136: -5,-45 - 137: -5,-46 - 138: -5,-47 - 139: -5,-48 - 140: -5,-49 - 329: -43,-26 - 330: -43,-25 - 331: -44,-25 - 332: -45,-25 - 333: -45,-24 - 334: -46,-24 - 335: -47,-24 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 179: -20,-27 - 180: -19,-27 - 181: -18,-27 - 182: -17,-27 - 183: -16,-27 - 184: -15,-27 - 185: -14,-27 - 186: -13,-27 - 230: -26,-33 - 232: -26,-34 - 437: 51,-13 - 438: 51,-12 - 1622: 53,-14 - 1623: 52,-14 - 1624: 51,-14 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 227: -26,-26 - 310: -36,-39 - 311: -36,-40 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - decals: - 270: -30,-31 - 271: -31,-31 - 272: -32,-31 - 273: -33,-31 - 274: -34,-31 - 275: -35,-31 - 276: -36,-31 - 277: -37,-31 - 278: -38,-31 - 279: -39,-31 - 280: -40,-31 - 281: -41,-31 - 282: -42,-31 - 283: -43,-31 - 284: -44,-31 - 285: -45,-31 - 286: -46,-31 - 287: -47,-31 - 288: -48,-31 - 289: -49,-31 - 290: -50,-31 - 291: -51,-31 - 292: -52,-31 - 293: -53,-31 - 301: -36,-42 - 302: -35,-42 - 303: -34,-42 - 304: -33,-42 - 305: -32,-42 - 306: -31,-42 - 307: -30,-42 - 518: -41,-38 - - node: - color: '#334E6DC8' - id: Delivery - decals: - 512: -6,-1 - - node: - color: '#334E6DC8' - id: LoadingAreaGreyscale - decals: - 513: -5,-2 - - node: - angle: 3.141592653589793 rad - color: '#334E6DC8' - id: LoadingAreaGreyscale - decals: - 514: -9,-2 - - node: - angle: 3.141592653589793 rad - color: '#334E6DC8' - id: BotLeftGreyscale - decals: - 515: -9,-1 - 516: -8,-1 - 517: -7,-1 - - node: - color: '#D4D4D433' - id: HalfTileOverlayGreyscale270 - decals: - 751: -7,-30 - 752: -7,-31 - 753: -7,-32 - 754: -7,-36 - 755: -7,-37 - 756: -7,-38 - 757: -7,-39 - 758: -7,-40 - 759: -7,-41 - 760: -7,-45 - 761: -7,-47 - 762: -7,-48 - 763: -7,-49 - 764: -7,-51 - 765: -7,-53 - 766: -7,-54 - 767: -7,-55 - 768: -7,-56 - 769: -7,-57 - 770: -7,-58 - 799: -6,-24 - 800: -6,-23 - 801: -6,-22 - 802: -6,-20 - 803: -6,-19 - 804: -6,-18 - 805: -6,-16 - 806: -6,-15 - 807: -6,-13 - 808: -6,-12 - 809: -6,-11 - 810: -6,-10 - 811: -6,-9 - 812: -6,-8 - 813: -6,-6 - 915: 19,-57 - 916: 19,-56 - 917: 19,-55 - 918: 19,-54 - - node: - color: '#D4D4D433' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 836: -3,-6 - - node: - color: '#D4D4D419' - id: HalfTileOverlayGreyscale270 - decals: - 1165: -24,-1 - 1166: -24,0 - 1167: -24,1 - 1168: -24,2 - 1169: -24,3 - 1170: -24,4 - 1171: -24,5 - 1172: -24,6 - 1173: -24,7 - 1174: -24,8 - 1175: -24,10 - 1176: -24,11 - 1177: -24,12 - 1178: -24,13 - 1179: -24,14 - 1180: -24,15 - 1181: -24,16 - 1182: -24,18 - 1183: -24,19 - 1184: -24,20 - 1185: -24,21 - 1186: -24,22 - 1187: -24,23 - 1188: -24,24 - 1189: -24,26 - 1190: -24,27 - 1221: -58,30 - 1222: -58,31 - 1223: -58,32 - - node: - color: '#EFB34196' - id: WarnEndE - decals: - 1704: -19,-23 - - node: - color: '#A4DF8296' - id: Grassa4 - decals: - 1706: -7.8109317,-1.9877326 - - node: - color: '#A4DF8296' - id: grasssnow10 - decals: - 1707: -7.4220443,-1.9321766 - - node: - color: '#A4DF8296' - id: grasssnowc1 - decals: - 1708: -6.4220433,-1.9599552 - - node: - color: '#A4DF8296' - id: Busha3 - decals: - 1709: -7.8109317,-1.9599552 - - node: - color: '#A4DF8296' - id: Bushb2 - decals: - 1710: -6.2553773,-1.9043994 - - node: - color: '#A4DF8296' - id: Bushk1 - decals: - 1711: -8.284664,-23.526455 - 1716: -7.340218,-22.970898 - - node: - color: '#A4DF8296' - id: Bushj3 - decals: - 1712: -7.4513307,-22.276455 - 1713: -9.062441,-22.720898 - 1714: -8.867998,-23.748676 - 1715: -7.340218,-23.748676 - - node: - color: '#A4DF8296' - id: bushsnowb3 - decals: - 1717: -7.3679967,-22.387566 - 1718: -9.20133,-22.69312 - 1719: -9.062441,-23.859787 - 1720: -7.2291064,-23.637566 - 1721: -8.423552,-23.276455 - - node: - color: '#A4DF8296' - id: Flowersy1 - decals: - 1722: -7.4791064,-22.526455 - 1723: -9.145773,-22.720898 - 1724: -8.673552,-23.748676 - - node: - color: '#A4DF8296' - id: Flowerspv1 - decals: - 1725: -7.423552,-22.998676 - 1726: -8.506886,-23.19312 - 1727: -8.8402195,-23.776455 - 1728: -7.2846637,-23.80423 - 1729: -7.3957734,-22.05423 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 3590: -25,-20 - 3591: -25,-21 - 3933: -11,34 - 3934: -11,35 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkInnerSw - decals: - 3595: -24,-18 - - node: - color: '#FFFFFFFF' - id: VentSmall - decals: - 3694: -5,-1 - - node: - color: '#FFFFFFFF' - id: DiagonalCheckerBOverlay - decals: - 3839: -34,-14 - 3840: -33,-14 - 3841: -33,-13 - 3842: -29,-14 - 3843: -30,-14 - 3844: -31,-14 - 3845: -32,-14 - 3846: -32,-13 - 3847: -32,-12 - 3848: -33,-12 - 3849: -31,-12 - 3850: -31,-13 - 3851: -30,-12 - 3852: -30,-13 - 3853: -29,-13 - 3854: -29,-12 - 4678: -34,-13 - 4679: -34,-12 - 4680: -35,-12 - 4681: -35,-13 - 4682: -36,-13 - 4683: -36,-12 - 4684: -37,-13 - 4685: -37,-12 - - node: - color: '#52B4E996' - id: DiagonalCheckerBOverlay - decals: - 4238: -20,-29 - 4239: -20,-30 - 4240: -20,-31 - 4241: -19,-29 - 4242: -19,-30 - 4243: -19,-31 - 4244: -18,-29 - 4245: -18,-30 - 4246: -18,-31 - 4247: -17,-29 - 4248: -17,-30 - 4249: -17,-31 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 3941: -11,36 - 4560: -18,-10 - 4561: -18,-9 - - node: - color: '#FFFFFFC0' - id: Busha2 - decals: - 4713: -19.715633,-0.08040953 - 4714: -18.948898,1.7076702 - 4715: -19.360664,4.00663 - - node: - color: '#FFFFFF85' - id: Grassd3 - decals: - 4725: -19.488453,1.96311 - 4726: -18.70752,2.7436213 - 4727: -18.892103,0.898777 - 4728: -19.829224,-0.023644924 - 4729: -20.0848,2.4456081 - 4730: -20.311981,-0.37842274 - - node: - color: '#FFFFFFE3' - id: Flowersbr3 - decals: - 4739: -19.886019,-0.0094537735 - 4740: -18.82111,0.8136306 - - node: - color: '#FFFFFFE3' - id: Flowerspv2 - decals: - 4741: -19.04829,0.0047369003 - 4743: -18.877905,2.8429594 - 4746: -18.82111,1.3387012 - 4751: -20.028008,-0.22232056 - - node: - color: '#F9801DFF' - id: BrickTileWhiteLineS - decals: - 4797: -32,-29 - 4798: -33,-29 - 4799: -34,-29 - 4800: -35,-29 - 4801: -36,-29 - 4802: -37,-29 - 4803: -38,-29 - 4804: -31,-29 - - node: - color: '#F9801DFF' - id: BrickTileWhiteCornerSe - decals: - 4805: -30,-29 - - node: - color: '#F9801DFF' - id: BrickTileWhiteLineE - decals: - 4806: -30,-28 - 4807: -30,-27 - 4808: -30,-26 - 4809: -30,-25 - - node: - cleanable: True - color: '#835432B7' - id: DirtHeavy - decals: - 4816: -28,-13 - 4817: -31,-11 - 4818: -30,-11 - 4819: -37,-10 - 4820: -37,-8 - 4821: -39,-8 - 4822: -38,-12 - 4823: -38,-11 - 4824: -36,-11 - 4825: -34,-15 - 4826: -34,-16 - 4827: -33,-15 - 4828: -32,-16 - 4829: -31,-16 - 4830: -31,-15 - 4831: -30,-15 - - node: - cleanable: True - color: '#835432B7' - id: DirtMedium - decals: - 4832: -31,-15 - 4833: -29,-15 - 4834: -28,-14 - 4835: -30,-11 - 4836: -32,-11 - 4837: -38,-13 - 4838: -38,-11 - 4839: -39,-8 - 4840: -28,-12 - - node: - cleanable: True - color: '#8354328B' - id: Dirt - decals: - 4841: -38,-10 - 4842: -38,-13 - 4843: -32,-12 - 4844: -34,-13 - 4845: -34,-12 - 4846: -35,-12 - 4847: -36,-12 - 4848: -37,-13 - 4849: -35,-13 - 4850: -34,-13 - 4851: -33,-14 - 4852: -32,-14 - 4853: -31,-14 - 4854: -31,-12 - 4855: -30,-12 - 4856: -29,-14 - 4857: -29,-13 - 4858: -29,-12 - 4859: -31,-12 - 4860: -31,-14 - 4861: -29,-14 - 4862: -32,-16 - 4863: -33,-16 - 4864: -34,-16 - 4865: -37,-10 - 4866: -28,-12 - 4867: -32,-8 - 4868: -34,-9 - 4869: -31,-8 - 4870: -30,-7 - 4871: -33,-8 - 4872: -33,-8 - 4873: -34,-7 - 4889: -51,-35 - 4890: -51,-36 - 4891: -51,-37 - 4892: -49,-37 - 4893: -49,-36 - 4894: -49,-35 - 4895: -48,-38 - 4896: -52,-38 - 4897: -48,-38 - 4898: -52,-37 - 4899: -48,-37 - 4900: -52,-37 - - node: - cleanable: True - color: '#8354328B' - id: DirtLight - decals: - 4874: -33,-8 - 4875: -32,-8 - 4876: -30,-7 - 4877: -29,-8 - 4884: -51,-35 - 4885: -49,-35 - 4886: -49,-37 - - node: - cleanable: True - color: '#8354328B' - id: DirtMedium - decals: - 4878: -28,-8 - 4879: -28,-9 - 4880: -30,-9 - 4887: -51,-37 - 4888: -49,-35 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 233: -26,-34 - 234: -27,-34 - 432: 53,-12 - 433: 52,-12 - 434: 51,-12 - 435: 53,-13 - 436: 53,-14 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 238: -27,-40 - 348: 43,-1 - 383: 34,-13 - 384: 35,-15 - 385: 36,-17 - 386: 33,-8 - 405: 46,-6 - 539: -26,27 - 540: -30,27 - 1234: -61,51 - 1633: 46,-12 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 244: -22,-38 - 3608: 47,-3 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 255: -30,-33 - 256: -31,-33 - 257: -34,-33 - 258: -35,-33 - 259: -36,-33 - 260: -39,-33 - 261: -40,-33 - 262: -41,-33 - 263: -42,-33 - 264: -45,-33 - 265: -46,-33 - 266: -47,-33 - 267: -48,-33 - 268: -50,-33 - 269: -52,-33 - 294: -33,-45 - 295: -34,-45 - 296: -35,-45 - 297: -36,-45 - 298: -32,-45 - 299: -31,-45 - 300: -30,-45 - 312: -32,-33 - 313: -33,-33 - 314: -37,-33 - 315: -38,-33 - 316: -44,-33 - 317: -49,-33 - 318: -51,-33 - 319: -53,-33 - 1521: -43,-33 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - decals: - 1522: -8,-60 - 1523: -9,-61 - 1524: -9,-62 - 1525: -8,-63 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 1526: -4,-60 - 1527: -3,-61 - 1528: -3,-62 - 1529: -4,-63 - - node: - color: '#9FED5896' - id: shop - decals: - 3326: -4,-42 - 3327: -4,-48 - - node: - color: '#FFFFFFFF' - id: Rock07 - decals: - 3357: -16.459831,-40.314075 - - node: - color: '#FFFFFFFF' - id: Remains - decals: - 3358: -29.994413,-49.927315 - - node: - color: '#9FED587C' - id: grasssnow10 - decals: - 3359: -13.5907955,-40.670277 - 3360: -12.229685,-40.475834 - 3361: -11.354685,-39.475834 - 3362: -13.813017,-39.350834 - 3363: -12.826906,-39.614723 - 3364: -11.271351,-40.698055 - 3365: -11.41024,-38.989723 - 3366: -12.979685,-38.961945 - - node: - color: '#9FED587C' - id: grasssnow09 - decals: - 3367: -13.604685,-40.086945 - - node: - color: '#60AC5863' - id: grasssnow09 - decals: - 3368: -12.979685,-40.336945 - 3369: -11.368574,-40.225834 - 3370: -11.4657955,-39.059166 - 3371: -13.701906,-39.198055 - 3372: -12.507462,-39.503613 - 3373: -12.799128,-40.614723 - - node: - color: '#60E25863' - id: Bushb2 - decals: - 3374: -17.64635,-37.739723 - - node: - color: '#60E258BA' - id: Bushb2 - decals: - 3375: -16.049128,-37.545277 - 3376: -15.201906,-36.309166 - 3377: -15.313017,-37.7675 - 3378: -17.03524,-36.392498 - 3379: -17.868574,-36.281387 - 3380: -17.715796,-37.948055 - 3381: -16.118574,-38.059166 - 3382: -15.243574,-36.920277 - 3383: -16.826906,-36.850834 - 3384: -17.563017,-36.809166 - 3385: -16.701906,-37.670277 - 3386: -16.688017,-36.295277 - 3387: -15.729685,-36.670277 - - node: - color: '#60E2588B' - id: grasssnowc3 - decals: - 3388: -15.396351,-36.573055 - 3389: -17.549128,-36.656387 - 3390: -17.604685,-37.795277 - 3391: -16.007462,-37.8925 - 3392: -16.354685,-36.698055 - 3393: -15.299128,-37.6425 - 3394: -16.118574,-37.031387 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 3395: -17.368574,-37.531387 - - node: - color: '#FFFFFFFF' - id: Flowerspv2 - decals: - 3396: -15.688017,-37.836945 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 3397: -17.27135,-36.48972 - 3422: -60.00724,38.321278 - 3423: -59.965576,40.001835 - 3424: -59.965576,41.821278 - - node: - color: '#FFFFFFFF' - id: Flowersbr2 - decals: - 3398: -15.424128,-36.586945 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 3399: -16.14635,-36.989723 - 3425: -60.04891,40.960167 - 3426: -60.00724,39.210167 - 3427: -60.02113,42.890724 - - node: - color: '#60E25873' - id: Grasse1 - decals: - 3400: -17.39635,-36.50361 - 3401: -15.813017,-36.434166 - 3402: -15.2157955,-36.545277 - 3403: -15.729685,-37.656387 - 3404: -17.590796,-37.531387 - 3405: -16.063017,-36.961945 - 3406: -15.674128,-37.948055 - 3407: -14.951906,-37.128613 - 3408: -15.229685,-38.073055 - - node: - color: '#A4610696' - id: Dirt - decals: - 3435: -3,-35 - 3436: 1,-36 - 3437: -1,-36 - 3438: 2,-35 - 3439: 4,-36 - 3440: 8,-36 - 3441: 10,-35 - 3442: 11,-36 - 3443: 13,-36 - 3444: 15,-35 - 3445: 17,-36 - 3446: 7,-35 - 3447: 6,-35 - 3448: 4,-35 - 3449: 6,-36 - 3450: 2,-36 - 3451: 1,-35 - 3452: 3,-35 - 3453: 9,-36 - 3454: 11,-36 - 3455: 14,-36 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineE - decals: - 3501: -38,-38 - 3502: -38,-39 - 3503: -38,-40 - 3504: -38,-41 - 3505: -30,-36 - 3506: -30,-37 - 3507: -30,-38 - 3508: -30,-39 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineW - decals: - 3509: -32,-39 - 3510: -32,-38 - 3515: -40,-36 - 3516: -40,-37 - 3517: -40,-36 - 3518: -40,-38 - 3519: -40,-37 - 3520: -40,-39 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteInnerSw - decals: - 3511: -32,-37 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteCornerNe - decals: - 3514: -30,-35 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineN - decals: - 3522: -41,-40 - 3534: -39,-35 - 3535: -38,-35 - 3536: -37,-35 - 3537: -36,-35 - 3538: -35,-35 - 3539: -34,-35 - 3540: -33,-35 - 3541: -32,-35 - 3542: -31,-35 - - node: - color: '#52B4E996' - id: MiniTileWhiteLineN - decals: - 3543: -39,-35 - 3544: -38,-35 - 3545: -37,-35 - 3546: -36,-35 - 3547: -35,-35 - 3548: -34,-35 - 3549: -33,-35 - 3550: -32,-35 - 3551: -31,-35 - 3552: -30,-35 - 3553: -40,-35 - 3579: -41,-40 - - node: - color: '#52B4E996' - id: MiniTileWhiteInnerSw - decals: - 3555: -32,-37 - - node: - color: '#52B4E996' - id: MiniTileWhiteLineW - decals: - 3556: -32,-38 - 3557: -32,-39 - 3574: -40,-35 - 3575: -40,-36 - 3576: -40,-37 - 3577: -40,-38 - 3578: -40,-39 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteCornerSw - decals: - 3558: -32,-40 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteCornerSe - decals: - 3559: -30,-40 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineS - decals: - 3523: -41,-45 - 3524: -37,-37 - 3525: -36,-37 - 3526: -35,-37 - 3527: -34,-37 - 3528: -33,-37 - 3560: -31,-40 - - node: - color: '#52B4E996' - id: MiniTileWhiteCornerSw - decals: - 3561: -32,-40 - - node: - color: '#52B4E996' - id: MiniTileWhiteCornerSe - decals: - 3562: -30,-40 - - node: - color: '#52B4E996' - id: MiniTileWhiteLineS - decals: - 3529: -37,-37 - 3530: -36,-37 - 3531: -35,-37 - 3532: -34,-37 - 3533: -33,-37 - 3563: -31,-40 - 3569: -41,-45 - - node: - color: '#52B4E996' - id: MiniTileWhiteLineE - decals: - 3564: -30,-39 - 3565: -30,-38 - 3566: -30,-37 - 3567: -30,-36 - 3568: -30,-35 - 3570: -38,-38 - 3571: -38,-39 - 3572: -38,-40 - 3573: -38,-41 - - node: - color: '#FFFFFFFF' - id: Bushg3 - decals: - 5069: -14.888399,-39.371437 - - node: - color: '#FFFFFFFF' - id: Bushg4 - decals: - 5070: -15.484749,-39.442383 - - node: - color: '#FFFFFFFF' - id: Bushg2 - decals: - 5071: -17.983753,-40.59182 - - node: - color: '#FFFFFFFF' - id: Bushg1 - decals: - 5072: -16.08111,-40.251266 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 168: 19,-58 - 169: 21,-58 - 170: 20,-58 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 1254: -57,54 - 1255: -57,53 - 1558: 23,-61 - 1559: 23,-62 - 1560: 22,-63 - 1561: 22,-60 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 1252: -63,54 - 1253: -63,53 - 1562: 18,-60 - 1563: 17,-61 - 1564: 17,-62 - 1565: 18,-63 - - node: - color: '#9FED5896' - id: Rock05 - decals: - 3581: 23.909931,-33.22499 - 3582: 24.007153,-33.9611 - - node: - color: '#9FED5896' - id: bushsnowb3 - decals: - 3583: 24.076597,-33.183323 - 3584: 23.937708,-34.09999 - - node: - color: '#9FED5896' - id: Rock01 - decals: - 3585: 24.034931,-33.3361 - 3586: 23.951597,-33.863876 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNe - decals: - 3740: 25,-36 - 4303: 56,-14 - 4429: -59,51 - 4435: -63,46 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNw - decals: - 3741: 31,-36 - 4428: -57,51 - 4434: -61,46 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteEndS - decals: - 4260: 7,-42 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteEndN - decals: - 4261: 7,-39 - - node: - cleanable: True - color: '#800080FF' - id: prolizard - decals: - 4969: 27.413673,-33.665314 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 308: -34,-39 - 309: -34,-40 - - node: - color: '#52B4E996' - id: CheckerNWSE - decals: - 3314: -46,-35 - 3315: -46,-36 - 3316: -45,-35 - 3317: -45,-36 - 3318: -44,-35 - 3319: -44,-36 - 3320: -43,-35 - 3321: -43,-36 - 3322: -42,-35 - 3323: -42,-36 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 3328: -65,-33 - 3329: -64,-33 - 3330: -63,-33 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Rust - decals: - 3332: -64,-33 - 3333: -65,-33 - 3334: -63,-33 - - node: - color: '#52B4E9FF' - id: MiniTileWhiteLineN - decals: - 3498: -43,-44 - 3499: -43,-42 - 3500: -39,-44 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteInnerSe - decals: - 3512: -38,-37 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteCornerNw - decals: - 3513: -40,-35 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteInnerNw - decals: - 3521: -40,-40 - - node: - color: '#52B4E996' - id: MiniTileWhiteInnerSe - decals: - 3554: -38,-37 - - node: - color: '#52B4E996' - id: MiniTileWhiteInnerNw - decals: - 3580: -40,-40 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNw - decals: - 4132: -44,-40 - 4133: -44,-42 - 4134: -44,-44 - 4135: -39,-44 - 4136: -39,-42 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNe - decals: - 4137: -43,-42 - 4138: -43,-40 - 4139: -43,-44 - 4140: -38,-44 - 4141: -38,-42 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSe - decals: - 4142: -43,-41 - 4143: -43,-43 - 4144: -43,-45 - 4145: -38,-45 - 4171: -38,-43 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSw - decals: - 4146: -44,-45 - 4147: -39,-45 - 4148: -39,-43 - 4149: -44,-41 - 4150: -44,-43 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 4161: -42,-41 - 4162: -42,-43 - 4163: -42,-45 - 4164: -40,-45 - 4165: -40,-43 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 4166: -42,-41 - 4167: -42,-43 - 4168: -42,-45 - 4169: -40,-45 - 4170: -40,-43 - - node: - color: '#52B4E996' - id: OffsetCheckerBOverlay - decals: - 4176: -35,-44 - 4177: -35,-43 - 4178: -34,-43 - 4179: -34,-44 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineW - decals: - 4777: -52,-38 - 4778: -52,-37 - 4779: -52,-35 - 4815: -52,-36 - 4997: -32,15 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineE - decals: - 4780: -48,-38 - 4781: -48,-37 - 4782: -48,-36 - 4783: -48,-35 - - node: - angle: 3.141592653589793 rad - color: '#B02E26FF' - id: Arrows - decals: - 4810: -49.237755,-36.012096 - 4811: -48.818893,-36.01919 - - node: - color: '#3AB3DAFF' - id: ArrowsGreyscale - decals: - 4812: -51.210106,-36.005 - 4813: -50.777042,-36.005 - - node: - cleanable: True - color: '#8354328B' - id: DirtHeavy - decals: - 4881: -49,-35 - 4882: -49,-37 - 4883: -51,-37 - - node: - color: '#D381C996' - id: WarnLineGreyscaleS - decals: - 324: -47,-27 - 325: -46,-27 - 326: -45,-27 - 327: -44,-27 - 328: -43,-27 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - decals: - 336: -47,-24 - 337: -47,-25 - 338: -47,-26 - - node: - color: '#D4D4D433' - id: ThreeQuarterTileOverlayGreyscale - decals: - 831: -43,-3 - - node: - color: '#9FED5896' - id: bushsnowa1 - decals: - 3223: -41.436035,-22.25985 - 3224: -41.283257,-23.079292 - 3225: -40.255478,-23.398739 - 3226: -40.019367,-18.10707 - 3227: -41.005478,-18.926516 - 3228: -43.061035,-18.00985 - 3229: -43.130478,-18.718182 - 3230: -43.07492,-19.940405 - 3231: -43.1027,-21.551517 - 3232: -41.880478,-23.204292 - 3233: -40.172146,-23.787628 - 3234: -41.11659,-23.75985 - 3235: -39.880478,-22.273739 - 3236: -40.130478,-19.079292 - - node: - color: '#9FED5896' - id: Rock02 - decals: - 3237: -40.422146,-22.63485 - 3238: -41.797146,-22.468182 - 3239: -42.797146,-21.815403 - 3240: -42.297146,-22.87096 - 3241: -43.158257,-18.593182 - 3242: -43.047146,-19.73207 - 3243: -40.61659,-18.329292 - 3244: -39.922146,-18.940403 - 3245: -39.797146,-22.565403 - 3246: -39.86659,-23.50985 - 3247: -41.283257,-21.787628 - 3248: -42.797146,-20.87096 - 3249: -42.7277,-17.940403 - 3250: -41.061035,-18.12096 - 3251: -41.21381,-19.176516 - - node: - color: '#9FED5896' - id: Flowersy4 - decals: - 3252: -40.24159,-18.343182 - 3253: -41.172146,-18.63485 - 3254: -40.283257,-19.10707 - - node: - color: '#9FED5896' - id: Flowersy3 - decals: - 3255: -41.672146,-22.10707 - 3256: -40.172146,-23.204292 - - node: - color: '#9FED5896' - id: Flowersy1 - decals: - 3257: -42.811035,-21.551517 - 3258: -42.99159,-18.176516 - 3259: -40.811035,-22.218182 - 3260: -42.894367,-22.87096 - - node: - color: '#9FED5896' - id: Flowerspv2 - decals: - 3261: -40.505478,-22.24596 - 3262: -40.186035,-23.329292 - 3263: -41.505478,-22.968182 - - node: - color: '#9FED5896' - id: Flowerspv3 - decals: - 3264: -43.172146,-21.537628 - 3265: -40.94992,-18.676516 - 3266: -40.061035,-18.162628 - 3267: -40.436035,-19.176516 - 3268: -43.061035,-17.85707 - 3269: -43.158257,-19.662628 - 3270: -40.99159,-23.49596 - - node: - color: '#9FED5896' - id: Busha3 - decals: - 3271: -40.3527,-18.329292 - 3272: -43.1027,-18.48207 - 3273: -42.922146,-21.50985 - 3274: -41.408257,-22.968182 - 3275: -39.96381,-23.48207 - 3276: -39.99159,-21.829292 - 3277: -41.19992,-21.815403 - 3278: -40.86659,-18.565403 - 3279: -39.811035,-17.926516 - 3280: -41.11659,-17.75985 - 3281: -42.853085,-20.88498 - - node: - color: '#9FED5896' - id: Bushc3 - decals: - 3282: -43.038807,-18.0765 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelBox - decals: - 4185: -56,-32 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndN - decals: - 4186: -56,-26 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelEndS - decals: - 4187: -56,-28 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteInnerSw - decals: - 4705: -34,-13 - - node: - color: '#EFB34196' - id: WarnEndS - decals: - 3283: 49,-21 - 3284: 51,-21 - - node: - color: '#EFB34196' - id: WarnCornerSmallSE - decals: - 1509: -2,61 - 3286: 49,-20 - 3300: -2,44 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelEndW - decals: - 3494: 39,-9 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelEndE - decals: - 3495: 41,-9 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineN - decals: - 3496: 40,-9 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineS - decals: - 3497: 40,-9 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineS - decals: - 4335: 51,-6 - 4336: 50,-6 - 4337: 52,-6 - 4338: 53,-6 - 4355: 61,-6 - 4357: 60,-6 - 4358: 59,-6 - 4359: 58,-6 - 4360: 57,-6 - 4378: 57,-20 - 4379: 56,-20 - 4380: 55,-20 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSw - decals: - 4339: 49,-6 - 4381: 54,-20 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNw - decals: - 4340: 49,-5 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 4341: 50,-5 - 4342: 51,-5 - 4343: 52,-5 - 4344: 53,-5 - 4345: 54,-5 - 4346: 55,-5 - 4347: 56,-5 - 4348: 57,-5 - 4349: 58,-5 - 4350: 59,-5 - 4351: 60,-5 - 4352: 61,-5 - 4370: 57,-14 - 4438: -62,46 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNe - decals: - 4353: 62,-5 - 4371: 58,-14 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSe - decals: - 4354: 62,-6 - 4377: 58,-20 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSe - decals: - 4361: 56,-6 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerNe - decals: - 4369: 56,-14 - 4436: -63,46 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSw - decals: - 4395: 54,-6 - - node: - color: '#D4D4D419' - id: HalfTileOverlayGreyscale90 - decals: - 1147: -22,5 - 1148: -22,7 - 1149: -22,8 - 1150: -22,9 - 1151: -22,10 - 1152: -22,11 - 1153: -22,12 - 1154: -22,13 - 1155: -22,14 - 1156: -22,15 - 1157: -22,17 - 1158: -22,20 - 1159: -22,22 - 1160: -22,23 - 1161: -22,24 - 1162: -22,25 - 1163: -22,26 - 1164: -22,27 - 1225: -56,32 - 1226: -56,33 - 1356: -4,33 - 1357: -4,34 - 1358: -4,36 - 1359: -4,37 - 1360: -4,38 - 1361: -4,39 - 1362: -4,40 - 1363: -4,41 - 1364: -4,42 - 1365: -4,44 - 1366: -4,45 - 1367: -4,46 - 1368: -4,47 - 1369: -4,48 - 5009: -28,18 - 5010: -28,17 - - node: - color: '#D4D4D419' - id: QuarterTileOverlayGreyscale180 - decals: - 1192: -22,29 - 1370: -4,49 - - node: - color: '#FFFFFF6C' - id: Bushk1 - decals: - 4709: -18.991495,3.5808964 - - node: - color: '#FFFFFFC0' - id: Bushk1 - decals: - 4710: -19.062489,2.7720032 - - node: - color: '#FFFFFFC0' - id: Bushc1 - decals: - 4711: -20.013807,2.6159015 - 4712: -20.042206,1.2393641 - - node: - color: '#FFFFFFC0' - id: Bushb2 - decals: - 4716: -19.999609,3.2545013 - 4717: -19.85762,1.8637729 - 4718: -18.920502,0.8420129 - 4719: -20.184193,0.5156174 - 4720: -19.062489,3.4531765 - 4721: -20.212591,4.3046427 - - node: - color: '#FFFFFF85' - id: Grasse2 - decals: - 4722: -19.034092,3.6092787 - 4723: -19.729832,3.0700169 - 4724: -20.0848,2.1475945 - - node: - color: '#FFFFFF85' - id: Grasse1 - decals: - 4731: -20.269386,0.16083956 - 4732: -18.792713,3.3112655 - 4733: -19.147682,2.431417 - 4734: -18.806911,4.205305 - - node: - color: '#FFFFFFE3' - id: Flowersbr1 - decals: - 4735: -19.119284,3.6234694 - 4736: -19.829224,1.4664211 - - node: - color: '#FFFFFFE3' - id: Flowersbr2 - decals: - 4737: -19.900217,3.027443 - 4738: -19.005693,2.0766392 - - node: - color: '#FFFFFFE3' - id: Flowerspv1 - decals: - 4742: -19.928616,2.0766392 - - node: - color: '#FFFFFFE3' - id: Flowerspv3 - decals: - 4744: -20.0848,3.8505278 - 4745: -19.786627,0.6575284 - - node: - color: '#FFFFFFE3' - id: Flowersy1 - decals: - 4747: -19.005693,3.8079538 - - node: - color: '#FFFFFFE3' - id: Flowersy2 - decals: - 4748: -19.729832,2.999061 - - node: - color: '#FFFFFFE3' - id: Flowersy3 - decals: - 4749: -19.332266,2.1475945 - - node: - color: '#FFFFFFE3' - id: Flowersy4 - decals: - 4750: -19.687237,1.0832615 - - node: - color: '#60FF5D92' - id: Grasse2 - decals: - 4752: -20.0848,0.047310352 - 4753: -19.729832,0.99811506 - 4754: -18.906303,2.4172258 - 4755: -18.9347,3.7937632 - 4756: -19.985409,4.077585 - 4757: -20.028008,2.6726656 - 4758: -19.062489,1.1967907 - 4759: -19.957012,0.88458633 - - node: - color: '#60FF5D92' - id: grasssnow10 - decals: - 4760: -19.105085,3.5241327 - 4761: -19.957012,2.1050215 - 4762: -19.829224,0.3878975 - - node: - color: '#60BC5DB1' - id: Bushb3 - decals: - 4763: -19.247074,3.6518526 - 4764: -19.871819,1.7928166 - 4765: -19.829224,0.13245726 - 4769: -18.948898,3.5241327 - - node: - color: '#60BC5DB1' - id: Bushb2 - decals: - 4766: -19.928616,2.0482564 - 4768: -19.786627,0.2601776 - - node: - color: '#60BC5DB1' - id: Busha3 - decals: - 4767: -19.190277,3.2119274 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 4970: -29,16 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 4971: -29,15 - 4972: -29,20 - 5105: 85,-11 - 5106: 85,-4 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 4973: -29,19 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 4956: 9,72 - 4974: -28,19 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 4961: 18,71 - 4962: 19,71 - 4963: 20,71 - 4964: 21,71 - 4965: 18,69 - 4966: 19,69 - 4967: 20,69 - 4968: 21,69 - 4975: -28,16 - 5073: 86,-3 - 5074: 85,-3 - 5075: 73,-3 - 5076: 72,-3 - - node: - color: '#334E6DC8' - id: MiniTileCheckerBOverlay - decals: - 4976: -33,18 - 4977: -33,17 - 4978: -32,17 - 4979: -31,17 - 4980: -31,18 - 4981: -32,18 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineE - decals: - 4998: -32,16 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineE - decals: - 4999: -32,20 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineE - decals: - 5003: -32,19 - - node: - color: '#D4D4D40F' - id: HalfTileOverlayGreyscale270 - decals: - 5011: -28,18 - 5012: -28,17 - - node: - color: '#D4D4D405' - id: HalfTileOverlayGreyscale90 - decals: - 5013: -29,18 - 5014: -29,17 - - node: - color: '#D4D4D40C' - id: BrickTileWhiteLineE - decals: - 5015: -28,18 - 5016: -28,17 - - node: - color: '#D4D4D426' - id: BrickTileWhiteLineE - decals: - 5019: -28,18 - 5020: -28,17 - - node: - color: '#D4D4D407' - id: BrickTileWhiteLineW - decals: - 5023: -28,17 - 5024: -28,18 - - node: - color: '#D4D4D405' - id: BrickTileWhiteLineE - decals: - 5027: -29,18 - 5028: -29,17 - - node: - color: '#334E6DC8' - id: WarnFullGreyscale - decals: - 5029: -26,17 - 5030: -26,18 - - node: - color: '#D4D4D419' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1220: -58,29 - - node: - color: '#D4D4D419' - id: QuarterTileOverlayGreyscale90 - decals: - 1224: -56,31 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 581: -19,35 - 582: -19,36 - 583: -19,37 - 584: -19,38 - 585: -19,39 - 586: -19,40 - 587: -19,41 - 588: -19,42 - 589: -19,46 - 590: -19,47 - 591: -19,48 - 592: -19,49 - 593: -19,50 - 594: -19,51 - 595: -19,52 - 596: -19,53 - 597: -19,54 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 598: -21,54 - 599: -21,53 - 600: -21,52 - 601: -21,51 - 602: -21,50 - 603: -21,49 - 604: -21,48 - 605: -21,47 - 606: -21,46 - 607: -21,45 - 608: -21,44 - 609: -21,43 - 610: -21,42 - 611: -21,41 - 612: -21,40 - 613: -21,39 - 614: -21,38 - 615: -21,37 - 616: -21,36 - 617: -21,35 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale - decals: - 618: -18,45 - 619: -17,45 - 620: -16,45 - 621: -15,45 - 622: -14,45 - 623: -13,45 - 624: -12,45 - 625: -11,45 - 626: -10,45 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 627: -10,43 - 628: -11,43 - 629: -12,43 - 630: -13,43 - 631: -14,43 - 632: -15,43 - 633: -16,43 - 634: -17,43 - 635: -18,43 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 1448: -6,51 - 1449: -6,50 - 1450: -6,49 - 1451: -6,48 - 1452: -6,47 - 1453: -6,46 - - node: - color: '#EFB34196' - id: WarnCornerSmallNE - decals: - 1512: -2,57 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - decals: - 3939: -8,36 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 3940: -8,33 - - node: - color: '#9FED5888' - id: Busha2 - decals: - 5047: -1.1858082,47.7461 - 5051: -2.0945249,48.15766 - 5052: -3.1452603,46.53989 - 5054: -1.0012178,48.11507 - - node: - color: '#9FED5888' - id: Bushb3 - decals: - 5048: -3.0174766,46.241875 - 5053: -3.1594381,47.859665 - - node: - color: '#9FED5888' - id: Bushb2 - decals: - 5049: -2.932261,47.646793 - 5055: -0.98705816,45.801918 - - node: - color: '#9FED5888' - id: Bushb1 - decals: - 5050: -2.7476902,46.8379 - - node: - color: '#9FED5888' - id: Bushc1 - decals: - 5056: -2.8187013,45.81614 - - node: - color: '#9FED5888' - id: Busha1 - decals: - 5057: -3.0174823,45.91548 - - node: - color: '#9FED58B7' - id: Flowerspv1 - decals: - 5058: -2.7477016,46.156727 - 5061: -2.7050896,47.10753 - 5062: -1.4556177,45.858692 - - node: - color: '#9FED58B7' - id: Flowersbr3 - decals: - 5059: -1.1716373,46.099934 - - node: - color: '#9FED58B7' - id: FlowersBROne - decals: - 5060: -2.6908832,47.53326 - - node: - color: '#FFFFFFFF' - id: Rock05 - decals: - 5063: -1.8656068,46.688976 - - node: - color: '#9FED58B7' - id: Bushb2 - decals: - 5064: -1.9508109,45.96523 - 5066: -0.9142871,46.774105 - - node: - color: '#9FED58B7' - id: BushATwo - decals: - 5065: -1.8939891,47.625587 - - node: - color: '#9FED58B7' - id: Bushb3 - decals: - 5067: -1.666812,47.42691 - - node: - color: '#9FED58B7' - id: BushAThree - decals: - 5068: -1.3686488,46.73154 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 982: 21,66 - 983: 22,66 - 997: 23,66 - 998: 24,66 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 984: 20,66 - 1003: 24,71 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSe - decals: - 4581: 31,73 - 4935: 19,72 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSw - decals: - 4582: 23,73 - 4940: 11,72 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 4590: 24,73 - 4591: 25,73 - 4592: 26,73 - 4593: 27,73 - 4594: 28,73 - 4595: 29,73 - 4596: 30,73 - 4611: 26,78 - 4612: 27,78 - 4922: 12,72 - 4923: 13,72 - 4924: 14,72 - 4925: 15,72 - 4926: 16,72 - 4927: 17,72 - 4928: 18,72 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerNe - decals: - 4941: 16,74 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerNw - decals: - 4942: 14,74 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 4943: 20,76 - 4944: 21,76 - 4945: 21,75 - 4946: 20,75 - 4947: 20,73 - 4948: 21,73 - 4949: 21,72 - 4950: 20,72 - - node: - color: '#FFFFFFFF' - id: WarnEndW - decals: - 4953: 20,74 - - node: - color: '#FFFFFFFF' - id: WarnEndE - decals: - 4954: 21,74 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 4955: 10,72 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - decals: - 1247: -62,55 - 1248: -61,55 - 1249: -60,55 - 1250: -59,55 - 1251: -58,55 - - node: - angle: 1.5707963267948966 rad - color: '#EFB34196' - id: Arrows - decals: - 1256: -56,47 - 1257: -56,38 - - node: - angle: 1.5707963267948966 rad - color: '#EFB34196' - id: StandClear - decals: - 1258: -56,39 - 1259: -56,37 - 1260: -56,46 - 1261: -56,48 - - node: - color: '#60E25873' - id: Flowersy4 - decals: - 3409: -59.937798,42.696278 - 3410: -59.99335,41.751835 - 3411: -60.00724,40.571278 - 3412: -60.062798,39.418503 - 3413: -59.965576,38.085167 - - node: - color: '#60E25873' - id: Flowersy1 - decals: - 3414: -60.062798,38.779613 - 3415: -59.965576,40.112946 - 3416: -59.97946,41.404613 - - node: - color: '#60E25873' - id: Rock01 - decals: - 3417: -59.92391,38.210167 - 3418: -59.99335,38.974056 - 3419: -59.99335,39.946278 - 3420: -59.965576,41.015724 - 3421: -59.965576,42.321278 - - node: - color: '#60E25873' - id: Bushm1 - decals: - 3428: -59.97946,38.265724 - 3429: -60.02113,39.390724 - 3430: -59.99335,40.724056 - 3431: -59.91002,42.335167 - 3432: -60.090576,43.071278 - 3433: -60.10446,41.279613 - 3434: -60.04891,39.765724 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerNw - decals: - 4437: -61,46 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleS - decals: - 1589: 64,-20 - 1590: 65,-20 - 1591: 66,-20 - 1592: 67,-20 - 1605: 64,-21 - 1606: 64,-21 - 1607: 65,-21 - 1608: 65,-21 - 1609: 66,-21 - 1610: 66,-21 - 1611: 67,-21 - 1612: 67,-21 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleN - decals: - 1593: 64,-22 - 1594: 65,-22 - 1595: 66,-22 - 1596: 67,-22 - 1597: 64,-21 - 1598: 64,-21 - 1599: 65,-21 - 1600: 65,-21 - 1601: 66,-21 - 1602: 66,-21 - 1603: 67,-21 - 1604: 67,-21 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 5111: 73,-5 - 5112: 73,-12 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 5113: 85,-5 - 5114: 85,-12 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 5115: 85,-10 - 5116: 85,-3 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 5109: 73,-3 - 5110: 73,-10 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 3331: -65,-33 - - node: - color: '#666C6CA4' - id: MiniTileDiagonalCheckerBOverlay - decals: - 4496: 58,-37 - 4497: 58,-38 - 4498: 59,-38 - 4499: 59,-37 - type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 65535 - 0,-1: - 0: 65535 - 1,-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: 65535 - -2,-1: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65407 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65295 - 1,-4: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65311 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65359 - 2,-1: - 0: 65535 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65295 - 3,-1: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -4,2: - 0: 65535 - -4,3: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 65535 - -2,0: - 0: 65535 - -2,1: - 0: 65535 - -2,2: - 0: 65535 - -2,3: - 0: 65535 - -1,0: - 0: 56789 - -1,1: - 0: 65501 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - 0,0: - 0: 36848 - 1: 28672 - 0,1: - 1: 119 - 0: 65416 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,0: - 0: 16369 - 1: 49152 - 1,1: - 0: 65331 - 1: 204 - 1,2: - 0: 65535 - 1,3: - 0: 65535 - 2,0: - 0: 61428 - 1: 4096 - 2,1: - 1: 17 - 0: 65518 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,0: - 0: 36848 - 1: 28672 - 3,1: - 1: 119 - 0: 65416 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 4,-4: - 0: 65535 - 5,-4: - 0: 65535 - 5,-3: - 0: 65535 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-4: - 0: 65535 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 65535 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - 4,0: - 0: 56797 - 4,1: - 0: 65501 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - -4,4: - 0: 65535 - -4,5: - 0: 65535 - -4,6: - 0: 65535 - -4,7: - 0: 65535 - -3,4: - 0: 65535 - -3,5: - 0: 65535 - -3,6: - 0: 65535 - -3,7: - 0: 65535 - -2,4: - 0: 65535 - -2,5: - 0: 65535 - -2,6: - 0: 65535 - -2,7: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 17647 - 2: 34816 - -1,6: - 0: 65508 - 2: 8 - -1,7: - 0: 65535 - 0,4: - 0: 65535 - 0,5: - 0: 22015 - 1: 43520 - 0,6: - 0: 65525 - 1: 10 - 0,7: - 0: 65535 - 1,4: - 0: 65535 - 1,5: - 0: 22015 - 1: 43520 - 1,6: - 0: 65525 - 1: 10 - 1,7: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 22015 - 3: 8704 - 4: 34816 - 2,6: - 0: 65525 - 3: 2 - 4: 8 - 2,7: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 65535 - 4,4: - 0: 65535 - 4,5: - 0: 39359 - 4,6: - 0: 65465 - 4,7: - 0: 65535 - 5,4: - 0: 65535 - 5,5: - 0: 65535 - 5,6: - 0: 65535 - 5,7: - 0: 65535 - 6,4: - 0: 65535 - 6,5: - 0: 65535 - 6,6: - 0: 65535 - 6,7: - 0: 65535 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 65535 - 7,7: - 0: 65535 - 0,-5: - 0: 65535 - 1,-5: - 0: 65535 - 2,-5: - 0: 65535 - 3,-5: - 0: 65535 - 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: 65535 - 11,0: - 0: 65535 - 11,1: - 0: 255 - 11,2: - 0: 65535 - 11,3: - 0: 65535 - 8,4: - 0: 65535 - 8,5: - 0: 65535 - 8,6: - 0: 65535 - 8,7: - 0: 65535 - 9,4: - 0: 65535 - 9,5: - 0: 65535 - 9,6: - 0: 65535 - 9,7: - 0: 65535 - 10,4: - 0: 65535 - 10,5: - 0: 65535 - 10,6: - 0: 65535 - 10,7: - 0: 65535 - 11,4: - 0: 65535 - 11,5: - 0: 65535 - 11,6: - 0: 65535 - 11,7: - 0: 65535 - 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 - 11,-4: - 0: 65535 - 11,-3: - 0: 65535 - 11,-2: - 0: 65535 - 11,-1: - 0: 65535 - -4,8: - 0: 65535 - -4,9: - 0: 65535 - -4,10: - 0: 65535 - -3,8: - 0: 65535 - -3,9: - 0: 65535 - -3,10: - 0: 65535 - -2,8: - 0: 65535 - -2,9: - 0: 65535 - -2,10: - 0: 65535 - -1,8: - 0: 65535 - -1,9: - 0: 65535 - -1,10: - 0: 65535 - 0,8: - 0: 65535 - 0,9: - 0: 65535 - 0,10: - 0: 65535 - 1,8: - 0: 65535 - 1,9: - 0: 65535 - 1,10: - 0: 65535 - 1,11: - 0: 65535 - 2,8: - 0: 65535 - 2,9: - 0: 65535 - 2,10: - 0: 65535 - 2,11: - 0: 65535 - 3,8: - 0: 13183 - 3,9: - 0: 30583 - 3,10: - 0: 29495 - 3,11: - 0: 65535 - 4,8: - 0: 36047 - 4,11: - 0: 65535 - 4,9: - 0: 34952 - 4,10: - 0: 52360 - 5,8: - 0: 65535 - 5,9: - 0: 65535 - 5,10: - 0: 65535 - 5,11: - 0: 65535 - 6,8: - 0: 65535 - 6,9: - 0: 65535 - 6,10: - 0: 65535 - 6,11: - 0: 65535 - 7,8: - 0: 65535 - 7,9: - 0: 65535 - 7,10: - 0: 65535 - 7,11: - 0: 65535 - 8,8: - 0: 65535 - 8,9: - 0: 30719 - 8,10: - 0: 63351 - 8,11: - 0: 65535 - 9,8: - 0: 65535 - 9,9: - 0: 52463 - 9,11: - 0: 65535 - 9,10: - 0: 60620 - 10,8: - 0: 65535 - 10,9: - 0: 65535 - 10,10: - 0: 65535 - 10,11: - 0: 65535 - 11,8: - 0: 65535 - 11,9: - 0: 65535 - 11,10: - 0: 65535 - 11,11: - 0: 65535 - 12,8: - 0: 65535 - 12,9: - 0: 65535 - 12,10: - 0: 65535 - 12,11: - 0: 65535 - 13,8: - 0: 63232 - 13,9: - 0: 32767 - 14,9: - 0: 273 - 12,4: - 0: 13105 - 12,5: - 0: 13107 - 12,6: - 0: 13107 - 12,7: - 0: 28945 - 12,0: - 0: 65535 - 12,1: - 0: 51455 - 12,2: - 0: 16383 - 12,3: - 0: 4369 - 13,0: - 0: 65535 - 13,1: - 0: 65535 - 13,2: - 0: 4095 - 14,0: - 0: 65535 - 14,1: - 0: 65535 - 14,2: - 0: 20479 - 15,0: - 0: 65535 - 15,1: - 0: 65535 - 15,2: - 0: 36863 - 12,-4: - 0: 65535 - 12,-3: - 0: 65535 - 12,-2: - 0: 65535 - 12,-1: - 0: 65535 - 13,-1: - 0: 65535 - 14,-1: - 0: 65535 - 15,-1: - 0: 65535 - 16,0: - 0: 65521 - 16,1: - 0: 61951 - 16,2: - 0: 4095 - 16,-1: - 0: 62002 - 12,12: - 0: 65535 - 12,13: - 0: 65527 - 2: 8 - 8,12: - 0: 65535 - 8,13: - 0: 65535 - 9,12: - 0: 65535 - 9,13: - 0: 65535 - 10,12: - 0: 65535 - 10,13: - 0: 65535 - 11,12: - 0: 65535 - 11,13: - 0: 65535 - 4,12: - 0: 65535 - 4,13: - 0: 65535 - 5,12: - 0: 65535 - 5,13: - 0: 65535 - 6,12: - 0: 65535 - 6,13: - 0: 65535 - 7,12: - 0: 65535 - 7,13: - 0: 65535 - 2,12: - 0: 65535 - 2,13: - 0: 57327 - 3,12: - 0: 65535 - 3,13: - 0: 65535 - -8,-4: - 0: 65535 - -8,-3: - 0: 65535 - -8,-2: - 0: 65535 - -7,-4: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 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 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -5,1: - 0: 65535 - -5,0: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 65535 - -3,-6: - 0: 65535 - -3,-5: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 - -8,-7: - 0: 65535 - -8,-6: - 0: 63359 - -8,-5: - 0: 63351 - -7,-6: - 0: 65327 - -7,-5: - 0: 65535 - -6,-6: - 0: 65487 - -6,-5: - 0: 65535 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 - -11,-7: - 0: 65535 - -11,-6: - 0: 65535 - -11,-5: - 0: 65535 - -10,-7: - 0: 65535 - -10,-6: - 0: 65535 - -10,-5: - 0: 65535 - -9,-7: - 0: 65535 - -9,-6: - 0: 65535 - -9,-5: - 0: 65535 - -11,-4: - 0: 65535 - -11,-3: - 0: 65535 - -11,-2: - 0: 65535 - -10,-4: - 0: 65297 - 5: 238 - -10,-3: - 0: 65535 - -10,-2: - 0: 65535 - -9,-4: - 5: 17 - 0: 65518 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -6,7: - 0: 65535 - -5,7: - 0: 65535 - 0,-8: - 0: 8191 - 0,-7: - 0: 65535 - 0,-6: - 0: 62463 - 1,-8: - 0: 20479 - 1,-7: - 0: 65535 - 1,-6: - 0: 64767 - 2,-8: - 0: 8191 - 2,-7: - 0: 65535 - 2,-6: - 0: 61951 - 3,-8: - 0: 20479 - 3,-7: - 0: 65535 - 3,-6: - 0: 65279 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -1,-8: - 0: 16383 - -1,-7: - 0: 65535 - -8,-8: - 0: 65535 - -7,-8: - 0: 65535 - -7,-7: - 0: 65535 - -6,-8: - 0: 65535 - -6,-7: - 0: 65535 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 - -11,-8: - 0: 65535 - -10,-8: - 0: 65535 - -9,-8: - 0: 65535 - -11,-10: - 0: 65535 - -11,-9: - 0: 65535 - -10,-10: - 0: 65535 - -10,-9: - 0: 65535 - -9,-10: - 0: 65535 - -9,-9: - 0: 65535 - -8,-10: - 0: 65535 - -8,-9: - 0: 65535 - -7,-10: - 0: 65535 - -7,-9: - 0: 65535 - -6,-10: - 0: 65535 - -6,-9: - 0: 65535 - -6,-12: - 0: 65535 - -6,-11: - 0: 65535 - -5,-12: - 0: 65535 - -5,-11: - 0: 65535 - -5,-10: - 0: 65535 - -5,-9: - 0: 65535 - -4,-12: - 0: 65535 - -4,-11: - 0: 65535 - -4,-10: - 0: 65535 - -4,-9: - 0: 65535 - -3,-12: - 0: 65535 - -3,-11: - 0: 65535 - -3,-10: - 0: 65535 - -3,-9: - 0: 65535 - -2,-12: - 0: 65535 - -2,-11: - 0: 65535 - -2,-10: - 0: 65535 - -2,-9: - 0: 65535 - -1,-12: - 0: 65535 - -1,-11: - 0: 65535 - -1,-10: - 0: 65535 - -1,-9: - 0: 65535 - 4,-8: - 0: 61439 - 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-8: - 0: 65535 - 5,-7: - 0: 65535 - 5,-6: - 0: 65535 - 5,-5: - 0: 65535 - 0,-12: - 0: 65535 - 0,-11: - 0: 65535 - 0,-10: - 0: 65535 - 0,-9: - 0: 65535 - 1,-12: - 0: 65535 - 1,-11: - 0: 65535 - 1,-10: - 0: 65535 - 1,-9: - 0: 65535 - 2,-12: - 0: 65535 - 2,-11: - 0: 65535 - 2,-10: - 0: 65535 - 2,-9: - 0: 65535 - 3,-12: - 0: 65535 - 3,-11: - 0: 65535 - 3,-10: - 0: 65535 - 3,-9: - 0: 65535 - 4,-12: - 0: 65535 - 4,-11: - 0: 65535 - 4,-10: - 0: 65535 - 4,-9: - 0: 65535 - 5,-10: - 0: 65535 - 5,-9: - 0: 65535 - -6,-14: - 0: 32768 - -6,-13: - 0: 65535 - -5,-14: - 0: 63624 - -5,-13: - 0: 65535 - -4,-14: - 0: 64756 - -4,-13: - 0: 65535 - -3,-14: - 0: 65532 - -3,-13: - 0: 65535 - -2,-14: - 0: 65535 - -2,-13: - 0: 65535 - -4,11: - 0: 65535 - 13,-4: - 0: 65535 - 13,-3: - 0: 65535 - 13,-2: - 0: 65535 - 14,-4: - 0: 65535 - 14,-3: - 0: 65535 - 14,-2: - 0: 65535 - 15,-4: - 0: 65535 - 15,-3: - 0: 65535 - 15,-2: - 0: 65535 - 12,-12: - 0: 65535 - 12,-11: - 0: 65535 - 12,-10: - 0: 61183 - 12,-9: - 0: 11263 - 13,-12: - 0: 65399 - 13,-11: - 0: 65535 - 13,-10: - 0: 65535 - 13,-9: - 0: 65535 - 14,-12: - 0: 7953 - 14,-11: - 0: 65535 - 14,-10: - 0: 65535 - 14,-9: - 0: 14335 - 15,-12: - 0: 30481 - 15,-11: - 0: 21855 - 15,-10: - 0: 22005 - 15,-9: - 0: 62847 - -8,-1: - 0: 65535 - -8,0: - 0: 65535 - -8,1: - 0: 65535 - -7,2: - 0: 61439 - -7,3: - 0: 65519 - -6,2: - 0: 65535 - -6,3: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -12,-8: - 0: 65535 - -12,-7: - 0: 65535 - -12,-6: - 0: 65535 - -12,-5: - 0: 65535 - -12,-4: - 0: 65535 - -12,-3: - 0: 65535 - -12,-2: - 0: 65535 - -12,-1: - 0: 65535 - -11,-1: - 0: 16383 - -10,-1: - 0: 20479 - -9,-1: - 0: 36863 - -8,7: - 0: 65535 - -7,7: - 0: 65535 - -7,4: - 0: 65535 - -7,5: - 0: 53247 - -7,6: - 0: 65535 - -6,4: - 0: 65535 - -6,5: - 0: 65535 - -6,6: - 0: 65535 - -5,4: - 0: 65535 - -5,5: - 0: 65535 - -5,6: - 0: 65535 - -12,-12: - 0: 65535 - -12,-11: - 0: 65535 - -12,-10: - 0: 65535 - -12,-9: - 0: 65535 - -11,-12: - 0: 65535 - -11,-11: - 0: 65535 - -10,-12: - 0: 65535 - -10,-11: - 0: 65535 - -9,-12: - 0: 65535 - -9,-11: - 0: 65535 - -8,-12: - 0: 65535 - -8,-11: - 0: 65535 - -7,-12: - 0: 65535 - -7,-11: - 0: 65535 - 6,-8: - 0: 65535 - 6,-7: - 0: 65535 - 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-8: - 0: 65535 - 7,-7: - 0: 65535 - 7,-6: - 0: 65535 - 7,-5: - 0: 65535 - 6,-9: - 0: 65535 - 7,-9: - 0: 65535 - -8,-13: - 0: 65535 - -7,-13: - 0: 65529 - -1,-14: - 0: 62225 - -1,-13: - 0: 65535 - -15,-12: - 0: 65535 - -15,-11: - 0: 65535 - -15,-10: - 0: 65535 - -15,-9: - 0: 65535 - -14,-12: - 0: 65535 - -14,-11: - 0: 65535 - -14,-10: - 0: 65535 - -14,-9: - 0: 65535 - -13,-12: - 0: 65535 - -13,-11: - 0: 65535 - -13,-10: - 0: 65535 - -13,-9: - 0: 65535 - -15,-8: - 0: 65535 - -15,-7: - 0: 65535 - -15,-6: - 0: 65535 - -15,-5: - 0: 65535 - -14,-8: - 0: 65535 - -14,-7: - 0: 65535 - -14,-6: - 0: 65535 - -14,-5: - 0: 65535 - -13,-8: - 0: 65535 - -13,-7: - 0: 65535 - -13,-6: - 0: 65535 - -13,-5: - 0: 65535 - -12,-13: - 0: 65535 - -11,-13: - 0: 65535 - -10,-13: - 0: 65535 - -9,-13: - 0: 65521 - -15,-13: - 0: 65535 - -14,-13: - 0: 65535 - -13,-13: - 0: 65535 - 0,-14: - 0: 65070 - 0,-13: - 0: 65535 - 1,-14: - 0: 65295 - 1,-13: - 0: 65535 - 2,-14: - 0: 61455 - 2,-13: - 0: 65535 - 3,-14: - 0: 65251 - 3,-13: - 0: 65535 - 4,-14: - 0: 65532 - 4,-13: - 0: 65535 - 8,-8: - 0: 39931 - 8,-7: - 0: 64409 - 8,-6: - 0: 65535 - 8,-5: - 0: 65535 - 9,-6: - 0: 65311 - 9,-5: - 0: 65535 - 10,-6: - 0: 65327 - 10,-5: - 0: 65535 - 11,-6: - 0: 65423 - 11,-5: - 0: 65535 - 8,-9: - 0: 48063 - 10,-12: - 0: 56797 - 10,-11: - 0: 64989 - 10,-10: - 0: 247 - 11,-12: - 0: 65535 - 11,-11: - 0: 65535 - 11,-10: - 0: 35064 - 11,-9: - 0: 2184 - 12,-6: - 0: 65535 - 12,-5: - 0: 65535 - 12,-8: - 0: 8750 - 12,-7: - 0: 59950 - 13,-8: - 0: 65535 - 13,-7: - 0: 65535 - 13,-6: - 0: 65535 - 13,-5: - 0: 65535 - 14,-8: - 0: 13119 - 14,-7: - 0: 63295 - 14,-6: - 0: 65535 - 14,-5: - 0: 65535 - 15,-8: - 0: 40857 - 15,-7: - 0: 63903 - 15,-6: - 0: 65535 - 15,-5: - 0: 65535 - 16,-8: - 0: 3840 - 16,-7: - 0: 61455 - 16,-6: - 0: 65535 - 16,-5: - 0: 65535 - 17,-8: - 0: 8994 - 17,-7: - 0: 47651 - 17,-6: - 0: 48063 - 17,-5: - 0: 49083 - 16,-9: - 0: 61987 - 17,-9: - 0: 12288 - 10,-14: - 0: 61713 - 10,-13: - 0: 56823 - 11,-14: - 0: 62532 - 11,-13: - 0: 65524 - 12,-14: - 0: 62532 - 12,-13: - 0: 65524 - 13,-14: - 0: 61440 - 13,-13: - 0: 30716 - 14,-14: - 0: 61713 - 14,-13: - 0: 4369 - -8,8: - 0: 65535 - -8,9: - 0: 65535 - -8,10: - 0: 65535 - -8,11: - 0: 65535 - -7,8: - 0: 65535 - -7,9: - 0: 65535 - -7,10: - 0: 65535 - -7,11: - 0: 65535 - -6,8: - 0: 65535 - -6,9: - 0: 65535 - -6,10: - 0: 65535 - -6,11: - 0: 65535 - -5,8: - 0: 65535 - -5,9: - 0: 65535 - -5,10: - 0: 65535 - -5,11: - 0: 65535 - -4,12: - 0: 65535 - -8,12: - 0: 65535 - -7,12: - 0: 65535 - -6,12: - 0: 65535 - -5,12: - 0: 65535 - -9,8: - 0: 40943 - -9,9: - 0: 65535 - -9,10: - 0: 65535 - -9,11: - 0: 65535 - -9,12: - 0: 65535 - -9,7: - 0: 65535 - -15,-4: - 0: 65535 - -15,-3: - 0: 65535 - -15,-2: - 0: 65535 - -15,-1: - 0: 57343 - -14,-4: - 0: 65535 - -14,-3: - 0: 65535 - -14,-2: - 0: 65535 - -14,-1: - 0: 65535 - -13,-4: - 0: 65535 - -13,-3: - 0: 65535 - -13,-2: - 0: 65535 - -13,-1: - 0: 65535 - -3,11: - 0: 65535 - -2,11: - 0: 65535 - -1,11: - 0: 65535 - 0,11: - 0: 65535 - 14,8: - 0: 4096 - 17,0: - 0: 65532 - 17,1: - 0: 64767 - 18,0: - 0: 65527 - 18,1: - 0: 65535 - 18,2: - 0: 65535 - 18,3: - 0: 61166 - 19,0: - 0: 65520 - 19,1: - 0: 65535 - 19,2: - 0: 65535 - 19,3: - 0: 65535 - 8,14: - 0: 65535 - 8,15: - 0: 65535 - 9,14: - 0: 65535 - 10,14: - 0: 65535 - 11,14: - 0: 65535 - 4,14: - 0: 65535 - 4,15: - 0: 65535 - 5,14: - 0: 65535 - 5,15: - 0: 65535 - 6,14: - 0: 65535 - 6,15: - 0: 65535 - 7,14: - 0: 65535 - 7,15: - 0: 65535 - 0,12: - 0: 65535 - 0,13: - 0: 65535 - 0,14: - 0: 65535 - 0,15: - 0: 65535 - 1,12: - 0: 65535 - 1,13: - 0: 11839 - 1,14: - 0: 13107 - 1,15: - 0: 13107 - 2,15: - 0: 65518 - 2,14: - 0: 61405 - 3,14: - 0: 65535 - 3,15: - 0: 65535 - -8,2: - 0: 16383 - -8,3: - 0: 65326 - -8,4: - 0: 65535 - -8,5: - 0: 8191 - -8,6: - 0: 65535 - 5,-12: - 0: 30583 - 5,-11: - 0: 63351 - 6,-10: - 0: 61727 - 7,-10: - 0: 61455 - -4,-17: - 0: 32768 - -2,-17: - 0: 65520 - -1,-17: - 0: 4368 - -4,-15: - 0: 20360 - -4,-16: - 0: 34952 - -3,-16: - 0: 52476 - -3,-15: - 0: 35023 - -2,-16: - 0: 65535 - -2,-15: - 0: 65535 - -1,-16: - 0: 30707 - -1,-15: - 0: 4991 - -16,-12: - 0: 65535 - -16,-11: - 0: 65535 - -16,-10: - 0: 65535 - -16,-9: - 0: 65535 - -16,-8: - 0: 65487 - -16,-7: - 0: 65535 - -16,-6: - 0: 65535 - -16,-5: - 0: 65535 - -11,-14: - 0: 65518 - -10,-14: - 0: 12544 - -16,-14: - 0: 61440 - -16,-13: - 0: 65535 - -15,-14: - 0: 65280 - -14,-14: - 0: 65280 - -13,-14: - 0: 28672 - 0,-16: - 0: 8766 - 0,-15: - 0: 8739 - 1,-16: - 0: 15 - 2,-16: - 0: 15 - 3,-16: - 0: 8931 - 3,-15: - 0: 8750 - 4,-16: - 0: 65535 - 4,-15: - 0: 52991 - 5,-16: - 0: 65535 - 5,-15: - 0: 30719 - 5,-14: - 0: 30711 - 5,-13: - 0: 30583 - 6,-16: - 0: 22005 - 6,-15: - 0: 30071 - 8,-10: - 0: 29457 - -4,13: - 0: 4095 - -4,14: - 0: 4592 - -4,15: - 0: 65535 - -3,12: - 0: 65535 - -3,13: - 0: 4095 - -3,14: - 0: 17520 - -3,15: - 0: 29764 - -2,12: - 0: 65535 - -2,13: - 0: 36863 - -2,14: - 0: 34952 - -2,15: - 0: 34952 - -1,12: - 0: 65535 - -1,13: - 0: 61183 - -1,14: - 0: 65535 - -1,15: - 0: 65535 - -8,13: - 0: 61439 - -8,14: - 0: 35068 - -8,15: - 0: 13311 - -7,13: - 0: 65535 - -7,14: - 0: 65535 - -7,15: - 0: 61183 - -6,13: - 0: 65535 - -6,14: - 0: 65535 - -6,15: - 0: 35071 - -5,13: - 0: 65535 - -5,14: - 0: 13303 - -5,15: - 0: 65535 - -12,8: - 0: 3967 - -12,9: - 0: 65406 - -12,11: - 0: 65518 - -12,10: - 0: 61166 - -11,8: - 0: 36815 - -11,9: - 0: 65487 - -11,10: - 0: 65535 - -11,11: - 0: 65535 - -10,8: - 0: 16191 - -10,9: - 0: 65535 - -10,10: - 0: 65535 - -10,11: - 0: 65535 - -12,12: - 0: 65263 - -12,13: - 0: 65535 - -11,12: - 0: 65535 - -11,13: - 0: 65535 - -11,14: - 0: 17616 - -11,15: - 0: 50244 - -10,12: - 0: 65535 - -10,13: - 0: 13311 - -10,14: - 0: 240 - -10,15: - 0: 65262 - -9,13: - 0: 767 - -9,14: - 0: 4592 - -9,15: - 0: 65535 - -12,4: - 0: 65535 - -12,5: - 0: 65535 - -12,6: - 0: 65535 - -12,7: - 0: 65535 - -11,4: - 0: 4607 - -11,5: - 0: 65521 - -11,6: - 0: 65535 - -11,7: - 0: 65535 - -10,4: - 0: 4371 - -10,5: - 0: 65521 - -10,6: - 0: 65535 - -10,7: - 0: 65535 - -9,5: - 0: 65534 - -9,6: - 0: 65535 - -16,-4: - 0: 65407 - 5: 128 - -16,-3: - 0: 65535 - -16,-2: - 0: 36095 - -8,16: - 0: 35055 - -8,18: - 0: 30462 - -8,17: - 0: 30334 - -8,19: - 0: 52910 - -7,16: - 0: 61167 - -7,17: - 0: 17487 - -7,18: - 0: 17663 - -7,19: - 0: 65519 - -6,16: - 0: 8943 - -6,17: - 0: 52431 - -6,18: - 0: 52479 - -6,19: - 0: 32687 - -5,16: - 0: 34959 - -5,18: - 0: 64764 - -5,17: - 0: 64764 - -5,19: - 0: 36044 - -12,16: - 0: 34944 - -12,17: - 0: 34952 - -12,18: - 0: 34952 - -12,19: - 0: 34952 - -11,17: - 0: 17487 - -11,19: - 0: 20292 - -11,16: - 0: 17476 - -11,18: - 0: 17604 - -10,17: - 0: 61167 - -10,18: - 0: 61182 - -10,19: - 0: 61422 - -10,16: - 0: 61166 - -9,16: - 0: 13119 - -9,17: - 0: 63479 - -9,18: - 0: 63479 - -9,19: - 0: 14199 - -12,20: - 0: 8 - -12,22: - 0: 34952 - -12,23: - 0: 8 - -11,23: - 0: 15 - -11,20: - 0: 58436 - -11,21: - 0: 50244 - -11,22: - 0: 4036 - -10,20: - 0: 65262 - -10,22: - 0: 4080 - -10,23: - 0: 15 - -10,21: - 0: 65262 - -9,20: - 0: 65343 - -9,21: - 0: 65535 - -9,22: - 0: 8177 - -9,23: - 0: 15 - -8,20: - 0: 65519 - -8,21: - 0: 65535 - -8,22: - 0: 12274 - -8,23: - 0: 15 - -7,20: - 0: 65535 - -7,21: - 0: 65535 - -7,22: - 0: 4080 - -7,23: - 0: 15 - -6,20: - 0: 65535 - -6,21: - 0: 65535 - -6,22: - 0: 36856 - -6,23: - 0: 15 - -5,20: - 0: 65423 - -5,21: - 0: 65535 - -5,22: - 0: 4080 - -5,23: - 0: 15 - -4,20: - 0: 65535 - -4,21: - 0: 65535 - -4,22: - 0: 8177 - -4,23: - 0: 15 - -3,20: - 0: 29812 - -3,22: - 0: 3956 - -3,21: - 0: 62532 - -2,20: - 0: 8738 - -2,21: - 0: 8738 - -4,16: - 0: 65535 - -4,17: - 0: 65535 - -4,18: - 0: 65535 - -4,19: - 0: 65535 - -3,17: - 0: 17487 - -3,18: - 0: 17524 - -3,19: - 0: 20292 - -3,16: - 0: 17476 - -2,17: - 0: 8739 - -2,19: - 0: 8994 - -2,16: - 0: 57352 - -2,18: - 0: 8738 - -1,16: - 0: 62543 - -15,0: - 0: 40445 - -14,0: - 0: 65535 - -14,2: - 0: 65522 - -14,3: - 0: 767 - -13,0: - 0: 65535 - -13,1: - 0: 65279 - -13,2: - 0: 65535 - -13,3: - 0: 65535 - -12,0: - 0: 65535 - -12,1: - 0: 65535 - -12,2: - 0: 65535 - -12,3: - 0: 65535 - -11,0: - 0: 65328 - -11,1: - 0: 65535 - -11,2: - 0: 65535 - -11,3: - 0: 65535 - -10,1: - 0: 65527 - -10,2: - 0: 65535 - -10,3: - 0: 14335 - -9,1: - 0: 65424 - -9,2: - 0: 40959 - -16,7: - 0: 65228 - -15,7: - 0: 65535 - -15,6: - 0: 58108 - -14,6: - 0: 63736 - -14,7: - 0: 65535 - -14,5: - 0: 34952 - -13,4: - 0: 65535 - -13,5: - 0: 65535 - -13,6: - 0: 65535 - -13,7: - 0: 65535 - -16,8: - 0: 65532 - -16,9: - 0: 65535 - -16,10: - 0: 65535 - -16,11: - 0: 65535 - -15,8: - 0: 65535 - -15,9: - 0: 65535 - -15,10: - 0: 65535 - -15,11: - 0: 65535 - -14,8: - 0: 65535 - -14,9: - 0: 65535 - -14,10: - 0: 48063 - -14,11: - 0: 65531 - -13,8: - 0: 32767 - -13,9: - 0: 65535 - -13,10: - 0: 127 - -13,11: - 0: 65527 - -16,12: - 0: 65535 - -16,13: - 0: 65535 - -16,14: - 0: 3647 - -15,12: - 0: 65535 - -15,13: - 0: 65535 - -15,14: - 0: 3983 - -14,12: - 0: 63487 - -14,13: - 0: 16383 - -13,12: - 0: 63487 - 0,16: - 0: 62543 - 1,16: - 0: 12291 - 1,17: - 0: 43758 - 1,18: - 0: 43694 - 1,19: - 0: 65530 - 2,17: - 0: 65535 - 2,18: - 0: 65535 - 2,19: - 0: 63999 - 2,16: - 0: 61439 - 3,16: - 0: 65535 - 3,17: - 0: 65535 - 3,18: - 0: 65535 - 3,19: - 0: 65535 - 4,16: - 0: 65535 - 4,17: - 0: 65535 - 4,18: - 0: 65535 - 4,19: - 0: 65535 - 5,16: - 0: 65535 - 5,17: - 0: 65535 - 5,18: - 0: 65535 - 5,19: - 0: 64767 - 6,16: - 0: 65535 - 6,17: - 0: 65535 - 6,18: - 0: 65535 - 6,19: - 0: 65535 - 7,16: - 0: 65535 - 7,17: - 0: 65535 - 7,18: - 0: 65535 - 7,19: - 0: 65535 - 8,16: - 0: 65535 - 8,17: - 0: 65535 - 9,16: - 0: 32767 - 9,17: - 0: 65535 - 9,18: - 0: 12815 - 10,17: - 0: 65521 - 10,18: - 0: 1 - 17,-3: - 0: 43694 - 17,-2: - 0: 43694 - 17,-1: - 0: 47790 - 18,-3: - 0: 65527 - 18,-2: - 0: 63487 - 18,-1: - 0: 30719 - 19,-3: - 0: 65535 - 19,-2: - 0: 65535 - 19,-1: - 0: 61439 - 20,0: - 0: 65520 - 20,1: - 0: 65535 - 20,2: - 0: 65535 - 20,3: - 0: 65535 - 21,0: - 0: 65535 - 21,1: - 0: 64511 - 21,2: - 0: 65467 - 21,3: - 0: 48059 - 22,0: - 0: 65395 - 22,1: - 0: 63103 - 23,0: - 0: 12832 - 23,1: - 0: 12834 - 20,-3: - 0: 65527 - 20,-2: - 0: 63487 - 20,-1: - 0: 14335 - 21,-3: - 0: 65535 - 21,-2: - 0: 65535 - 21,-1: - 0: 65535 - 18,4: - 0: 15 - 19,4: - 0: 15 - 20,4: - 0: 15 - 21,4: - 0: 15 - -17,-7: - 0: 65535 - -17,-6: - 0: 52462 - -17,-5: - 0: 61164 - -17,-8: - 0: 57356 - -18,-12: - 0: 65535 - -18,-11: - 0: 65535 - -18,-10: - 0: 7374 - -17,-12: - 0: 65535 - -17,-11: - 0: 65535 - -17,-10: - 0: 65535 - -17,-9: - 0: 61439 - -17,9: - 0: 65535 - -17,10: - 0: 53247 - -17,11: - 0: 65535 - -17,8: - 0: 44714 - -17,12: - 0: 61439 - -17,13: - 0: 52430 - -17,-4: - 0: 52462 - -17,-3: - 0: 2184 - -18,-13: - 0: 65260 - -17,-13: - 0: 65535 - -5,-15: - 0: 34816 - 4,-17: - 0: 61167 - 4,-20: - 0: 52428 - 4,-19: - 0: 53196 - 4,-18: - 0: 52428 - 5,-20: - 0: 30583 - 5,-19: - 0: 32631 - 5,-18: - 0: 30583 - 5,-17: - 0: 65535 - 0,-17: - 0: 61440 - 1,-17: - 0: 61440 - 2,-17: - 0: 61727 - 3,-17: - 0: 29775 - 4,-24: - 0: 65532 - 4,-23: - 0: 65535 - 4,-22: - 0: 65535 - 4,-21: - 0: 64719 - 5,-24: - 0: 65527 - 5,-23: - 0: 65535 - 5,-22: - 0: 65535 - 5,-21: - 0: 63359 - 6,-24: - 0: 65532 - 6,-23: - 0: 65535 - 6,-22: - 0: 65535 - 6,-21: - 0: 31815 - 7,-24: - 0: 65535 - 7,-23: - 0: 65535 - 7,-22: - 0: 16383 - 7,-21: - 0: 994 - 0,-24: - 0: 34952 - 0,-23: - 0: 34952 - 0,-22: - 0: 34952 - 0,-21: - 0: 8 - 1,-24: - 0: 52476 - 1,-23: - 0: 52431 - 1,-22: - 0: 252 - 1,-21: - 0: 15 - 2,-24: - 0: 65535 - 2,-23: - 0: 65535 - 2,-22: - 0: 40959 - 2,-21: - 0: 6649 - 3,-24: - 0: 65527 - 3,-23: - 0: 65535 - 3,-22: - 0: 65535 - 3,-21: - 0: 51020 - 8,-24: - 0: 30711 - 8,-23: - 0: 30591 - 8,-22: - 0: 4599 - 8,-21: - 0: 4383 - 9,-24: - 0: 8754 - 9,-23: - 0: 8739 - 9,-22: - 0: 8754 - 9,-21: - 0: 3 - 0,-26: - 0: 34816 - 0,-25: - 0: 34952 - 1,-28: - 0: 4592 - 1,-27: - 0: 61727 - 1,-26: - 0: 36761 - 1,-25: - 0: 52431 - 2,-28: - 0: 8944 - 2,-27: - 0: 61987 - 2,-26: - 0: 65280 - 2,-25: - 0: 65535 - 3,-28: - 0: 39416 - 3,-27: - 0: 56735 - 3,-26: - 0: 65437 - 3,-25: - 0: 6559 - 4,-28: - 0: 24816 - 4,-27: - 0: 65535 - 4,-26: - 0: 65535 - 4,-25: - 0: 4095 - 5,-28: - 0: 53745 - 5,-27: - 0: 65535 - 5,-26: - 0: 65535 - 5,-25: - 0: 4095 - 6,-28: - 0: 8946 - 6,-27: - 0: 30527 - 6,-26: - 0: 65335 - 6,-25: - 0: 831 - 7,-28: - 0: 39408 - 7,-27: - 0: 63897 - 7,-26: - 0: 65297 - 7,-25: - 0: 65535 - 8,-28: - 0: 240 - 8,-27: - 0: 61455 - 8,-26: - 0: 16162 - 8,-25: - 0: 30591 - 9,-28: - 0: 4368 - 9,-27: - 0: 4369 - 9,-26: - 0: 8977 - 9,-25: - 0: 8739 - 4,-29: - 0: 3840 - 5,-29: - 0: 7936 - 6,-29: - 0: 12032 - 7,-29: - 0: 256 - 3,-29: - 0: 36608 - 8,18: - 0: 65535 - 8,19: - 0: 65535 - 13,10: - 0: 4369 - 13,11: - 0: 29489 - 12,14: - 0: 4919 - 13,12: - 0: 14199 - 13,13: - 0: 4915 - 9,15: - 0: 65535 - 10,15: - 0: 65535 - 11,15: - 0: 32767 - 6,-14: - 0: 4369 - 7,-16: - 0: 240 - 8,-12: - 0: 4593 - 8,-11: - 0: 4383 - 9,-12: - 0: 4593 - 9,-11: - 0: 4383 - 9,-10: - 0: 241 - 16,-11: - 0: 8739 - 16,-10: - 0: 8754 - 16,-12: - 0: 8738 - 8,-16: - 0: 4369 - 8,-15: - 0: 61713 - 8,-14: - 0: 4369 - 8,-13: - 0: 4369 - 9,-15: - 0: 61440 - 9,-14: - 0: 61713 - 9,-13: - 0: 4369 - 10,-15: - 0: 61440 - 11,-15: - 0: 61440 - 12,-15: - 0: 61440 - 13,-15: - 0: 61440 - 14,-15: - 0: 61440 - 15,-15: - 0: 4096 - 15,-14: - 0: 4369 - 15,-13: - 0: 61713 - -16,0: - 0: 7 - -16,2: - 0: 65280 - -16,3: - 0: 15 - -15,1: - 0: 17649 - -15,2: - 0: 65348 - -15,3: - 0: 17487 - -14,1: - 0: 61169 - -10,0: - 0: 12288 - -16,5: - 0: 1792 - -16,6: - 0: 17600 - -15,4: - 0: 52428 - -15,5: - 0: 52428 - -14,4: - 0: 143 - 10,16: - 0: 1023 - 11,16: - 0: 8739 - 11,17: - 0: 65522 - 11,18: - 0: 14130 - 6,-19: - 0: 20292 - 6,-17: - 0: 17487 - 6,-20: - 0: 17476 - 6,-18: - 0: 17476 - 7,-19: - 0: 3840 - 7,-17: - 0: 15 - 2,-20: - 0: 4369 - 2,-19: - 0: 7953 - 2,-18: - 0: 4369 - 3,-19: - 0: 20292 - 3,-20: - 0: 17476 - 3,-18: - 0: 17476 - -20,2: - 0: 55639 - -20,3: - 0: 18265 - -20,0: - 0: 17484 - -20,1: - 0: 17476 - -19,0: - 0: 30559 - -19,1: - 0: 30583 - -19,2: - 0: 65399 - -19,3: - 0: 30591 - -18,0: - 0: 30559 - -18,1: - 0: 30583 - -18,2: - 0: 65399 - -18,3: - 0: 30591 - -17,0: - 0: 30559 - -17,1: - 0: 30583 - -17,2: - 0: 65399 - -17,3: - 0: 30591 - -20,4: - 0: 17476 - -20,5: - 0: 3140 - -19,4: - 0: 30583 - -19,5: - 0: 3927 - -18,4: - 0: 30583 - -18,5: - 0: 3927 - -17,4: - 0: 30583 - -17,5: - 0: 3927 - -17,7: - 0: 57344 - 8,-20: - 0: 4369 - 8,-19: - 0: 4369 - 8,-18: - 0: 4369 - 8,-17: - 0: 4369 - 16,-13: - 0: 12288 - 8,20: - 0: 65535 - 4,20: - 0: 35743 - 5,20: - 0: 65535 - 6,20: - 0: 65343 - 7,20: - 0: 65311 - 1,20: - 0: 3887 - 2,20: - 0: 3983 - 3,20: - 0: 3855 - 11,19: - 0: 2 - 12,17: - 0: 13168 - 6,-12: - 0: 4369 - 6,-11: - 0: 4369 - 6,-13: - 0: 4369 - 17,2: - 0: 53247 - 17,3: - 0: 34952 - -12,-16: - 0: 4095 - -12,-14: - 0: 32768 - -11,-16: - 0: 61439 - -11,-15: - 0: 61166 - -10,-16: - 0: 4095 - -9,-16: - 0: 4095 - -14,-16: - 0: 34952 - -14,-15: - 0: 136 - -13,-16: - 0: 4079 - 16,-4: - 0: 12834 - 16,-2: - 0: 8755 - 16,-3: - 0: 13107 - 17,-4: - 0: 44552 - 18,-4: - 0: 18176 - 22,2: - 0: 4898 - 21,-4: - 0: 40704 - 17,4: - 0: 12 - 22,4: - 0: 1 - -20,-8: - 0: 30583 - -20,-7: - 0: 65527 - -20,-6: - 0: 30583 - -20,-5: - 0: 30583 - -19,-8: - 0: 30583 - -19,-7: - 0: 65527 - -19,-6: - 0: 30583 - -19,-5: - 0: 30583 - -18,-7: - 0: 65520 - -20,-10: - 0: 61440 - -20,-9: - 0: 30581 - -19,-10: - 0: 61440 - -19,-9: - 0: 30581 - -20,-4: - 0: 245 - -19,-4: - 0: 245 - -18,-4: - 0: 48 - -8,-16: - 0: 8995 - -8,-15: - 0: 34 - -22,-8: - 0: 29764 - -22,-7: - 0: 35989 - -22,-6: - 0: 17525 - -22,-5: - 0: 17476 - -21,-8: - 0: 30583 - -21,-7: - 0: 65527 - -21,-6: - 0: 30583 - -21,-5: - 0: 30583 - -22,-10: - 0: 49152 - -22,-9: - 0: 17476 - -21,-10: - 0: 61440 - -21,-9: - 0: 30581 - -22,-4: - 0: 196 - -21,-4: - 0: 245 - -12,-19: - 0: 3976 - -12,-18: - 0: 4095 - -12,-17: - 0: 4095 - -11,-19: - 0: 58639 - -11,-18: - 0: 61439 - -11,-17: - 0: 61439 - -10,-19: - 0: 3875 - -10,-18: - 0: 4095 - -10,-17: - 0: 4095 - -9,-19: - 0: 3840 - -9,-18: - 0: 4095 - -9,-17: - 0: 4095 - -14,-19: - 0: 34816 - -14,-18: - 0: 34952 - -14,-17: - 0: 34952 - -13,-19: - 0: 3840 - -13,-18: - 0: 4079 - -13,-17: - 0: 4079 - -8,-19: - 0: 8960 - -8,-18: - 0: 8995 - -8,-17: - 0: 8995 - -9,4: - 0: 61166 - -12,21: - 0: 32768 - -3,23: - 0: 1 - -2,22: - 0: 290 - -9,3: - 0: 60416 - -9,0: - 0: 8 - -14,14: - 0: 209 - 12,15: - 0: 1 - 14,3: - 0: 14 - 15,3: - 0: 15 - 16,3: - 0: 1 - -12,14: - 0: 252 - -13,13: - 0: 61439 - -13,14: - 0: 246 - 0,18: - 0: 16384 - 0,19: - 0: 50372 - 9,19: - 0: 8738 - 22,-4: - 0: 8960 - 22,-3: - 0: 12835 - 22,-2: - 0: 12834 - 22,-1: - 0: 8738 - -17,14: - 0: 3140 - 8,21: - 0: 242 - 9,20: - 0: 8754 - 9,21: - 0: 50 - 4,21: - 0: 192 - 5,21: - 0: 248 - 6,21: - 0: 240 - 7,21: - 0: 241 - 0,20: - 0: 3140 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 235 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - type: OccluderTree - - type: Shuttle - - nextUpdate: 11187.3402708 - type: GridPathfinding - - type: RadiationGridResistance - - nextShake: 0 - shakeTimes: 10 - type: GravityShake - - type: GasTileOverlay -- uid: 83 - type: BlastDoor - components: - - pos: 34.5,12.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -469043.84 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11588 - type: SignalReceiver -- uid: 84 - components: - - type: MetaData - - type: Transform - - index: 1 - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - parallax: KettleStation - type: Parallax -- uid: 85 - type: WallSolid - components: - - pos: -7.5,-20.5 - parent: 82 - type: Transform -- uid: 86 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 81.5,16.5 - parent: 82 - type: Transform -- uid: 87 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -51.5,9.5 - parent: 82 - type: Transform -- uid: 88 - type: WallSolid - components: - - pos: 36.5,7.5 - parent: 82 - type: Transform -- uid: 89 - type: WallSolid - components: - - pos: 36.5,6.5 - parent: 82 - type: Transform -- uid: 90 - type: WallSolid - components: - - pos: 14.5,47.5 - parent: 82 - type: Transform -- uid: 91 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-6.5 - parent: 82 - type: Transform -- uid: 92 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -23.5,-14.5 - parent: 82 - type: Transform -- uid: 93 - type: WallReinforced - components: - - pos: -8.5,-5.5 - parent: 82 - type: Transform -- uid: 94 - type: WallReinforced - components: - - pos: -9.5,-5.5 - parent: 82 - type: Transform -- uid: 95 - type: WallReinforced - components: - - pos: -10.5,-5.5 - parent: 82 - type: Transform -- uid: 96 - type: WallSolid - components: - - pos: 11.5,46.5 - parent: 82 - type: Transform -- uid: 97 - type: WallSolid - components: - - pos: 10.5,46.5 - parent: 82 - type: Transform -- uid: 98 - type: PlasticFlapsAirtightClear - components: - - pos: 46.5,20.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 99 - type: Grille - components: - - pos: 7.5,2.5 - parent: 82 - type: Transform -- uid: 100 - type: Grille - components: - - pos: 2.5,2.5 - parent: 82 - type: Transform -- uid: 101 - type: Grille - components: - - pos: 0.5,2.5 - parent: 82 - type: Transform -- uid: 102 - type: AirlockExternalGlassCargoLocked - components: - - pos: 46.5,21.5 - parent: 82 - type: Transform -- uid: 103 - type: BlastDoor - components: - - pos: 34.5,14.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -469043.84 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11588 - type: SignalReceiver -- uid: 104 - type: ReinforcedWindow - components: - - pos: -52.5,-48.5 - parent: 82 - type: Transform -- uid: 105 - type: Bookshelf - components: - - pos: 29.5,26.5 - parent: 82 - type: Transform -- uid: 106 - type: MaterialDiamond1 - components: - - pos: -35.506065,-50.51528 - parent: 82 - type: Transform -- uid: 107 - type: ReinforcedWindow - components: - - pos: -18.5,-47.5 - parent: 82 - type: Transform -- uid: 108 - type: ReinforcedWindow - components: - - pos: -27.5,-17.5 - parent: 82 - type: Transform -- uid: 109 - type: ReinforcedWindow - components: - - pos: -22.5,-21.5 - parent: 82 - type: Transform -- uid: 110 - type: ReinforcedWindow - components: - - pos: -23.5,-21.5 - parent: 82 - type: Transform -- uid: 111 - type: ReinforcedWindow - components: - - pos: -24.5,-21.5 - parent: 82 - type: Transform -- uid: 112 - type: ReinforcedPlasmaWindow - components: - - pos: 9.5,3.5 - parent: 82 - type: Transform -- uid: 113 - type: ReinforcedPlasmaWindow - components: - - pos: 11.5,5.5 - parent: 82 - type: Transform -- uid: 114 - type: ReinforcedPlasmaWindow - components: - - pos: 11.5,4.5 - parent: 82 - type: Transform -- uid: 115 - type: ReinforcedPlasmaWindow - components: - - pos: 11.5,3.5 - parent: 82 - type: Transform -- uid: 116 - type: ReinforcedPlasmaWindow - components: - - pos: 12.5,6.5 - parent: 82 - type: Transform -- uid: 117 - type: ReinforcedPlasmaWindow - components: - - pos: 14.5,6.5 - parent: 82 - type: Transform -- uid: 118 - type: ReinforcedPlasmaWindow - components: - - pos: 15.5,5.5 - parent: 82 - type: Transform -- uid: 119 - type: ReinforcedPlasmaWindow - components: - - pos: 15.5,4.5 - parent: 82 - type: Transform -- uid: 120 - type: ReinforcedPlasmaWindow - components: - - pos: 15.5,3.5 - parent: 82 - type: Transform -- uid: 121 - type: ReinforcedPlasmaWindow - components: - - pos: 14.5,2.5 - parent: 82 - type: Transform -- uid: 122 - type: ReinforcedPlasmaWindow - components: - - pos: 13.5,2.5 - parent: 82 - type: Transform -- uid: 123 - type: ReinforcedPlasmaWindow - components: - - pos: 12.5,2.5 - parent: 82 - type: Transform -- uid: 124 - type: ReinforcedPlasmaWindow - components: - - pos: 0.5,6.5 - parent: 82 - type: Transform -- uid: 125 - type: ReinforcedPlasmaWindow - components: - - pos: 2.5,6.5 - parent: 82 - type: Transform -- uid: 126 - type: WallReinforced - components: - - pos: -1.5,-0.5 - parent: 82 - type: Transform -- uid: 127 - type: WallReinforced - components: - - pos: -1.5,-1.5 - parent: 82 - type: Transform -- uid: 128 - type: WallReinforced - components: - - pos: 16.5,-0.5 - parent: 82 - type: Transform -- uid: 129 - type: WallReinforced - components: - - pos: 16.5,-1.5 - parent: 82 - type: Transform -- uid: 130 - type: Grille - components: - - pos: 11.5,-0.5 - parent: 82 - type: Transform -- uid: 131 - type: Grille - components: - - pos: 12.5,-0.5 - parent: 82 - type: Transform -- uid: 132 - type: Grille - components: - - pos: 13.5,-0.5 - parent: 82 - type: Transform -- uid: 133 - type: Grille - components: - - pos: 14.5,-0.5 - parent: 82 - type: Transform -- uid: 134 - type: Grille - components: - - pos: 15.5,-0.5 - parent: 82 - type: Transform -- uid: 135 - type: Grille - components: - - pos: 9.5,-0.5 - parent: 82 - type: Transform -- uid: 136 - type: Grille - components: - - pos: 8.5,-0.5 - parent: 82 - type: Transform -- uid: 137 - type: Grille - components: - - pos: 7.5,-0.5 - parent: 82 - type: Transform -- uid: 138 - type: Grille - components: - - pos: 6.5,-0.5 - parent: 82 - type: Transform -- uid: 139 - type: Grille - components: - - pos: 5.5,-0.5 - parent: 82 - type: Transform -- uid: 140 - type: Grille - components: - - pos: -0.5,-0.5 - parent: 82 - type: Transform -- uid: 141 - type: Grille - components: - - pos: 0.5,-0.5 - parent: 82 - type: Transform -- uid: 142 - type: Grille - components: - - pos: 1.5,-0.5 - parent: 82 - type: Transform -- uid: 143 - type: Grille - components: - - pos: 2.5,-0.5 - parent: 82 - type: Transform -- uid: 144 - type: Grille - components: - - pos: 3.5,-0.5 - parent: 82 - type: Transform -- uid: 145 - type: ReinforcedWindow - components: - - pos: -0.5,-0.5 - parent: 82 - type: Transform -- uid: 146 - type: ReinforcedWindow - components: - - pos: 0.5,-0.5 - parent: 82 - type: Transform -- uid: 147 - type: ReinforcedWindow - components: - - pos: 1.5,-0.5 - parent: 82 - type: Transform -- uid: 148 - type: ReinforcedWindow - components: - - pos: 2.5,-0.5 - parent: 82 - type: Transform -- uid: 149 - type: ReinforcedWindow - components: - - pos: 3.5,-0.5 - parent: 82 - type: Transform -- uid: 150 - type: ReinforcedWindow - components: - - pos: 5.5,-0.5 - parent: 82 - type: Transform -- uid: 151 - type: ReinforcedWindow - components: - - pos: 6.5,-0.5 - parent: 82 - type: Transform -- uid: 152 - type: ReinforcedWindow - components: - - pos: 7.5,-0.5 - parent: 82 - type: Transform -- uid: 153 - type: ReinforcedWindow - components: - - pos: 8.5,-0.5 - parent: 82 - type: Transform -- uid: 154 - type: ReinforcedWindow - components: - - pos: 9.5,-0.5 - parent: 82 - type: Transform -- uid: 155 - type: ReinforcedWindow - components: - - pos: 11.5,-0.5 - parent: 82 - type: Transform -- uid: 156 - type: ReinforcedWindow - components: - - pos: 12.5,-0.5 - parent: 82 - type: Transform -- uid: 157 - type: ReinforcedWindow - components: - - pos: 13.5,-0.5 - parent: 82 - type: Transform -- uid: 158 - type: ReinforcedWindow - components: - - pos: 14.5,-0.5 - parent: 82 - type: Transform -- uid: 159 - type: ReinforcedWindow - components: - - pos: 15.5,-0.5 - parent: 82 - type: Transform -- uid: 160 - type: ReinforcedWindow - components: - - pos: 2.5,-5.5 - parent: 82 - type: Transform -- uid: 161 - type: ReinforcedWindow - components: - - pos: 13.5,-5.5 - parent: 82 - type: Transform -- uid: 162 - type: ReinforcedWindow - components: - - pos: 11.5,-5.5 - parent: 82 - type: Transform -- uid: 163 - type: ReinforcedWindow - components: - - pos: 8.5,-5.5 - parent: 82 - type: Transform -- uid: 164 - type: WallReinforced - components: - - pos: 4.5,-5.5 - parent: 82 - type: Transform -- uid: 165 - type: WallReinforced - components: - - pos: -1.5,-5.5 - parent: 82 - type: Transform -- uid: 166 - type: ReinforcedWindow - components: - - pos: -0.5,-5.5 - parent: 82 - type: Transform -- uid: 167 - type: Grille - components: - - pos: 15.5,-5.5 - parent: 82 - type: Transform -- uid: 168 - type: Grille - components: - - pos: 14.5,-5.5 - parent: 82 - type: Transform -- uid: 169 - type: Grille - components: - - pos: 12.5,-5.5 - parent: 82 - type: Transform -- uid: 170 - type: Grille - components: - - pos: 11.5,-5.5 - parent: 82 - type: Transform -- uid: 171 - type: Grille - components: - - pos: 9.5,-5.5 - parent: 82 - type: Transform -- uid: 172 - type: Grille - components: - - pos: 8.5,-5.5 - parent: 82 - type: Transform -- uid: 173 - type: Grille - components: - - pos: 7.5,-5.5 - parent: 82 - type: Transform -- uid: 174 - type: WallReinforced - components: - - pos: 16.5,-5.5 - parent: 82 - type: Transform -- uid: 175 - type: WallReinforced - components: - - pos: 10.5,-5.5 - parent: 82 - type: Transform -- uid: 176 - type: Grille - components: - - pos: 13.5,-5.5 - parent: 82 - type: Transform -- uid: 177 - type: Grille - components: - - pos: 6.5,-5.5 - parent: 82 - type: Transform -- uid: 178 - type: ReinforcedWindow - components: - - pos: 1.5,-5.5 - parent: 82 - type: Transform -- uid: 179 - type: ReinforcedWindow - components: - - pos: 12.5,-5.5 - parent: 82 - type: Transform -- uid: 180 - type: ReinforcedWindow - components: - - pos: 0.5,-5.5 - parent: 82 - type: Transform -- uid: 181 - type: ReinforcedWindow - components: - - pos: 9.5,-5.5 - parent: 82 - type: Transform -- uid: 182 - type: ReinforcedWindow - components: - - pos: 7.5,-5.5 - parent: 82 - type: Transform -- uid: 183 - type: WallReinforced - components: - - pos: 17.5,6.5 - parent: 82 - type: Transform -- uid: 184 - type: WallReinforced - components: - - pos: -2.5,9.5 - parent: 82 - type: Transform -- uid: 185 - type: ReinforcedWindow - components: - - pos: 3.5,-5.5 - parent: 82 - type: Transform -- uid: 186 - type: WallReinforced - components: - - pos: 17.5,9.5 - parent: 82 - type: Transform -- uid: 187 - type: ReinforcedWindow - components: - - pos: 5.5,-5.5 - parent: 82 - type: Transform -- uid: 188 - type: WallReinforced - components: - - pos: -3.5,6.5 - parent: 82 - type: Transform -- uid: 189 - type: ReinforcedWindow - components: - - pos: 6.5,-5.5 - parent: 82 - type: Transform -- uid: 190 - type: WallReinforced - components: - - pos: -4.5,8.5 - parent: 82 - type: Transform -- uid: 191 - type: WallReinforced - components: - - pos: -3.5,8.5 - parent: 82 - type: Transform -- uid: 192 - type: WallReinforced - components: - - pos: -2.5,8.5 - parent: 82 - type: Transform -- uid: 193 - type: WallReinforced - components: - - pos: -2.5,6.5 - parent: 82 - type: Transform -- uid: 194 - type: WallReinforced - components: - - pos: 17.5,8.5 - parent: 82 - type: Transform -- uid: 195 - type: WallReinforced - components: - - pos: 20.5,6.5 - parent: 82 - type: Transform -- uid: 196 - type: WallReinforced - components: - - pos: -5.5,8.5 - parent: 82 - type: Transform -- uid: 197 - type: WallReinforced - components: - - pos: 49.5,22.5 - parent: 82 - type: Transform -- uid: 198 - type: WallReinforced - components: - - pos: 46.5,25.5 - parent: 82 - type: Transform -- uid: 199 - type: ReinforcedWindow - components: - - pos: 15.5,-5.5 - parent: 82 - type: Transform -- uid: 200 - type: WallReinforced - components: - - pos: -5.5,6.5 - parent: 82 - type: Transform -- uid: 201 - type: WallReinforced - components: - - pos: 19.5,8.5 - parent: 82 - type: Transform -- uid: 202 - type: WallReinforced - components: - - pos: 20.5,8.5 - parent: 82 - type: Transform -- uid: 203 - type: WallReinforced - components: - - pos: -4.5,6.5 - parent: 82 - type: Transform -- uid: 204 - type: WallReinforced - components: - - pos: 18.5,8.5 - parent: 82 - type: Transform -- uid: 205 - type: ReinforcedWindow - components: - - pos: 14.5,-5.5 - parent: 82 - type: Transform -- uid: 206 - type: WallReinforced - components: - - pos: 10.5,9.5 - parent: 82 - type: Transform -- uid: 207 - type: WallReinforced - components: - - pos: 4.5,9.5 - parent: 82 - type: Transform -- uid: 208 - type: WallReinforced - components: - - pos: 16.5,9.5 - parent: 82 - type: Transform -- uid: 209 - type: WallReinforced - components: - - pos: -1.5,9.5 - parent: 82 - type: Transform -- uid: 210 - type: Grille - components: - - pos: -0.5,9.5 - parent: 82 - type: Transform -- uid: 211 - type: Grille - components: - - pos: 0.5,9.5 - parent: 82 - type: Transform -- uid: 212 - type: Grille - components: - - pos: 1.5,9.5 - parent: 82 - type: Transform -- uid: 213 - type: Grille - components: - - pos: 2.5,9.5 - parent: 82 - type: Transform -- uid: 214 - type: Grille - components: - - pos: 3.5,9.5 - parent: 82 - type: Transform -- uid: 215 - type: Grille - components: - - pos: 5.5,9.5 - parent: 82 - type: Transform -- uid: 216 - type: Grille - components: - - pos: 6.5,9.5 - parent: 82 - type: Transform -- uid: 217 - type: Grille - components: - - pos: 7.5,9.5 - parent: 82 - type: Transform -- uid: 218 - type: Grille - components: - - pos: 8.5,9.5 - parent: 82 - type: Transform -- uid: 219 - type: Grille - components: - - pos: 9.5,9.5 - parent: 82 - type: Transform -- uid: 220 - type: Grille - components: - - pos: 11.5,9.5 - parent: 82 - type: Transform -- uid: 221 - type: Grille - components: - - pos: 12.5,9.5 - parent: 82 - type: Transform -- uid: 222 - type: Grille - components: - - pos: 13.5,9.5 - parent: 82 - type: Transform -- uid: 223 - type: Grille - components: - - pos: 14.5,9.5 - parent: 82 - type: Transform -- uid: 224 - type: Grille - components: - - pos: 15.5,9.5 - parent: 82 - type: Transform -- uid: 225 - type: ReinforcedWindow - components: - - pos: -0.5,9.5 - parent: 82 - type: Transform -- uid: 226 - type: ReinforcedWindow - components: - - pos: 0.5,9.5 - parent: 82 - type: Transform -- uid: 227 - type: ReinforcedWindow - components: - - pos: 1.5,9.5 - parent: 82 - type: Transform -- uid: 228 - type: ReinforcedWindow - components: - - pos: 2.5,9.5 - parent: 82 - type: Transform -- uid: 229 - type: ReinforcedWindow - components: - - pos: 3.5,9.5 - parent: 82 - type: Transform -- uid: 230 - type: ReinforcedWindow - components: - - pos: 5.5,9.5 - parent: 82 - type: Transform -- uid: 231 - type: ReinforcedWindow - components: - - pos: 6.5,9.5 - parent: 82 - type: Transform -- uid: 232 - type: ReinforcedWindow - components: - - pos: 7.5,9.5 - parent: 82 - type: Transform -- uid: 233 - type: ReinforcedWindow - components: - - pos: 8.5,9.5 - parent: 82 - type: Transform -- uid: 234 - type: ReinforcedWindow - components: - - pos: 9.5,9.5 - parent: 82 - type: Transform -- uid: 235 - type: ReinforcedWindow - components: - - pos: 11.5,9.5 - parent: 82 - type: Transform -- uid: 236 - type: ReinforcedWindow - components: - - pos: 12.5,9.5 - parent: 82 - type: Transform -- uid: 237 - type: ReinforcedWindow - components: - - pos: 13.5,9.5 - parent: 82 - type: Transform -- uid: 238 - type: ReinforcedWindow - components: - - pos: 14.5,9.5 - parent: 82 - type: Transform -- uid: 239 - type: ReinforcedWindow - components: - - pos: 15.5,9.5 - parent: 82 - type: Transform -- uid: 240 - type: WallReinforced - components: - - pos: 4.5,-8.5 - parent: 82 - type: Transform -- uid: 241 - type: WallReinforced - components: - - pos: 10.5,-8.5 - parent: 82 - type: Transform -- uid: 242 - type: WallReinforced - components: - - pos: 16.5,-6.5 - parent: 82 - type: Transform -- uid: 243 - type: WallReinforced - components: - - pos: 15.5,-8.5 - parent: 82 - type: Transform -- uid: 244 - type: WindoorSecurityLocked - components: - - pos: 46.5,-3.5 - parent: 82 - type: Transform -- uid: 245 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,57.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 246 - type: AirlockMaintLocked - components: - - pos: -5.5,28.5 - parent: 82 - type: Transform -- uid: 247 - type: WallReinforced - components: - - pos: 17.5,-8.5 - parent: 82 - type: Transform -- uid: 248 - type: WallReinforced - components: - - pos: 17.5,-7.5 - parent: 82 - type: Transform -- uid: 249 - type: WallReinforced - components: - - pos: 17.5,-6.5 - parent: 82 - type: Transform -- uid: 250 - type: RandomFoodBakedSingle - components: - - pos: -19.5,26.5 - parent: 82 - type: Transform -- uid: 251 - type: WallReinforced - components: - - pos: 17.5,-1.5 - parent: 82 - type: Transform -- uid: 252 - type: WallReinforced - components: - - pos: 18.5,-1.5 - parent: 82 - type: Transform -- uid: 253 - type: WallReinforced - components: - - pos: 18.5,-0.5 - parent: 82 - type: Transform -- uid: 254 - type: WallReinforced - components: - - pos: 18.5,0.5 - parent: 82 - type: Transform -- uid: 255 - type: WallReinforced - components: - - pos: -2.5,-1.5 - parent: 82 - type: Transform -- uid: 256 - type: WallReinforced - components: - - pos: -3.5,-1.5 - parent: 82 - type: Transform -- uid: 257 - type: WallReinforced - components: - - pos: -3.5,-0.5 - parent: 82 - type: Transform -- uid: 258 - type: WallReinforced - components: - - pos: -3.5,0.5 - parent: 82 - type: Transform -- uid: 259 - type: WallReinforced - components: - - pos: -3.5,1.5 - parent: 82 - type: Transform -- uid: 260 - type: WallReinforced - components: - - pos: -3.5,2.5 - parent: 82 - type: Transform -- uid: 261 - type: WallReinforced - components: - - pos: -3.5,3.5 - parent: 82 - type: Transform -- uid: 262 - type: WallReinforced - components: - - pos: -3.5,4.5 - parent: 82 - type: Transform -- uid: 263 - type: WallReinforced - components: - - pos: -3.5,5.5 - parent: 82 - type: Transform -- uid: 264 - type: WallReinforced - components: - - pos: 18.5,1.5 - parent: 82 - type: Transform -- uid: 265 - type: WallReinforced - components: - - pos: 18.5,2.5 - parent: 82 - type: Transform -- uid: 266 - type: WallReinforced - components: - - pos: 18.5,3.5 - parent: 82 - type: Transform -- uid: 267 - type: WallReinforced - components: - - pos: 18.5,4.5 - parent: 82 - type: Transform -- uid: 268 - type: WallReinforced - components: - - pos: 18.5,5.5 - parent: 82 - type: Transform -- uid: 269 - type: FoodDonutSpaceman - components: - - pos: -15.479506,25.725517 - parent: 82 - type: Transform -- uid: 270 - type: WallReinforced - components: - - pos: -2.5,-6.5 - parent: 82 - type: Transform -- uid: 271 - type: WallReinforced - components: - - pos: -2.5,-7.5 - parent: 82 - type: Transform -- uid: 272 - type: WallReinforced - components: - - pos: -2.5,-8.5 - parent: 82 - type: Transform -- uid: 273 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -2.5,48.5 - parent: 82 - type: Transform -- uid: 274 - type: WallReinforced - components: - - pos: -0.5,-8.5 - parent: 82 - type: Transform -- uid: 275 - type: SheetSteel - components: - - pos: 22.393505,-7.3101788 - parent: 82 - type: Transform -- uid: 276 - type: GasPipeStraight - components: - - pos: 33.5,33.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 277 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -0.5,48.5 - parent: 82 - type: Transform -- uid: 278 - type: WallReinforced - components: - - pos: -2.5,-12.5 - parent: 82 - type: Transform -- uid: 279 - type: WallReinforced - components: - - pos: 17.5,-12.5 - parent: 82 - type: Transform -- uid: 280 - type: FloraTree02 - components: - - pos: -7.91202,-22.458336 - parent: 82 - type: Transform -- uid: 281 - type: WallReinforced - components: - - pos: 14.5,-12.5 - parent: 82 - type: Transform -- uid: 282 - type: AirlockMaintCaptainLocked - components: - - pos: 14.5,-18.5 - parent: 82 - type: Transform -- uid: 283 - type: WallReinforced - components: - - pos: 13.5,-21.5 - parent: 82 - type: Transform -- uid: 284 - type: GasPipeStraight - components: - - pos: 33.5,37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 285 - type: WallReinforced - components: - - pos: 0.5,-12.5 - parent: 82 - type: Transform -- uid: 286 - type: RandomSpawner - components: - - pos: 15.5,-14.5 - parent: 82 - type: Transform -- uid: 287 - type: Rack - components: - - pos: 16.5,-13.5 - parent: 82 - type: Transform -- uid: 288 - type: WallReinforced - components: - - pos: 13.5,-12.5 - parent: 82 - type: Transform -- uid: 289 - type: PosterContrabandNuclearDeviceInformational - components: - - pos: -11.5,-11.5 - parent: 82 - type: Transform -- uid: 290 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -52.5,9.5 - parent: 82 - type: Transform -- uid: 291 - type: GasPipeStraight - components: - - pos: 33.5,36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 292 - type: WallSolid - components: - - pos: 4.5,-12.5 - parent: 82 - type: Transform -- uid: 293 - type: WallSolid - components: - - pos: 4.5,-13.5 - parent: 82 - type: Transform -- uid: 294 - type: Grille - components: - - pos: 2.5,-19.5 - parent: 82 - type: Transform -- uid: 295 - type: Grille - components: - - pos: 3.5,-19.5 - parent: 82 - type: Transform -- uid: 296 - type: WallReinforced - components: - - pos: 12.5,-12.5 - parent: 82 - type: Transform -- uid: 297 - type: GasPipeStraight - components: - - pos: 33.5,35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 298 - type: WallReinforced - components: - - pos: 10.5,-12.5 - parent: 82 - type: Transform -- uid: 299 - type: WallReinforced - components: - - pos: 10.5,-13.5 - parent: 82 - type: Transform -- uid: 300 - type: PlasticFlapsAirtightClear - components: - - pos: 38.5,26.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 301 - type: Grille - components: - - pos: 38.5,27.5 - parent: 82 - type: Transform -- uid: 302 - type: WallSolid - components: - - pos: 5.5,-14.5 - parent: 82 - type: Transform -- uid: 303 - type: WallSolid - components: - - pos: 4.5,-14.5 - parent: 82 - type: Transform -- uid: 304 - type: WallSolid - components: - - pos: 10.5,47.5 - parent: 82 - type: Transform -- uid: 305 - type: Grille - components: - - pos: 0.5,-8.5 - parent: 82 - type: Transform -- uid: 306 - type: Grille - components: - - pos: 1.5,-8.5 - parent: 82 - type: Transform -- uid: 307 - type: Grille - components: - - pos: 2.5,-8.5 - parent: 82 - type: Transform -- uid: 308 - type: Grille - components: - - pos: 3.5,-8.5 - parent: 82 - type: Transform -- uid: 309 - type: Grille - components: - - pos: 5.5,-8.5 - parent: 82 - type: Transform -- uid: 310 - type: Grille - components: - - pos: 6.5,-8.5 - parent: 82 - type: Transform -- uid: 311 - type: Grille - components: - - pos: 7.5,-8.5 - parent: 82 - type: Transform -- uid: 312 - type: Grille - components: - - pos: 8.5,-8.5 - parent: 82 - type: Transform -- uid: 313 - type: Grille - components: - - pos: 9.5,-8.5 - parent: 82 - type: Transform -- uid: 314 - type: Grille - components: - - pos: 11.5,-8.5 - parent: 82 - type: Transform -- uid: 315 - type: Grille - components: - - pos: 12.5,-8.5 - parent: 82 - type: Transform -- uid: 316 - type: Grille - components: - - pos: 13.5,-8.5 - parent: 82 - type: Transform -- uid: 317 - type: Grille - components: - - pos: 14.5,-8.5 - parent: 82 - type: Transform -- uid: 318 - type: ReinforcedPlasmaWindow - components: - - pos: 0.5,-8.5 - parent: 82 - type: Transform -- uid: 319 - type: ReinforcedPlasmaWindow - components: - - pos: 1.5,-8.5 - parent: 82 - type: Transform -- uid: 320 - type: ReinforcedPlasmaWindow - components: - - pos: 2.5,-8.5 - parent: 82 - type: Transform -- uid: 321 - type: ReinforcedPlasmaWindow - components: - - pos: 3.5,-8.5 - parent: 82 - type: Transform -- uid: 322 - type: ReinforcedPlasmaWindow - components: - - pos: 5.5,-8.5 - parent: 82 - type: Transform -- uid: 323 - type: ReinforcedPlasmaWindow - components: - - pos: 6.5,-8.5 - parent: 82 - type: Transform -- uid: 324 - type: ReinforcedPlasmaWindow - components: - - pos: 7.5,-8.5 - parent: 82 - type: Transform -- uid: 325 - type: ReinforcedPlasmaWindow - components: - - pos: 8.5,-8.5 - parent: 82 - type: Transform -- uid: 326 - type: ReinforcedPlasmaWindow - components: - - pos: 9.5,-8.5 - parent: 82 - type: Transform -- uid: 327 - type: ReinforcedPlasmaWindow - components: - - pos: 11.5,-8.5 - parent: 82 - type: Transform -- uid: 328 - type: ReinforcedPlasmaWindow - components: - - pos: 12.5,-8.5 - parent: 82 - type: Transform -- uid: 329 - type: ReinforcedPlasmaWindow - components: - - pos: 13.5,-8.5 - parent: 82 - type: Transform -- uid: 330 - type: ReinforcedPlasmaWindow - components: - - pos: 14.5,-8.5 - parent: 82 - type: Transform -- uid: 331 - type: Grille - components: - - pos: 47.5,22.5 - parent: 82 - type: Transform -- uid: 332 - type: WallReinforced - components: - - pos: 47.5,25.5 - parent: 82 - type: Transform -- uid: 333 - type: ReinforcedWindow - components: - - pos: 48.5,12.5 - parent: 82 - type: Transform -- uid: 334 - type: ReinforcedWindow - components: - - pos: 48.5,13.5 - parent: 82 - type: Transform -- uid: 335 - type: ReinforcedWindow - components: - - pos: 48.5,14.5 - parent: 82 - type: Transform -- uid: 336 - type: WallReinforced - components: - - pos: 10.5,-15.5 - parent: 82 - type: Transform -- uid: 337 - type: WallReinforced - components: - - pos: 8.5,-18.5 - parent: 82 - type: Transform -- uid: 338 - type: WallReinforced - components: - - pos: 8.5,-17.5 - parent: 82 - type: Transform -- uid: 339 - type: WallReinforced - components: - - pos: 10.5,-14.5 - parent: 82 - type: Transform -- uid: 340 - type: WallReinforced - components: - - pos: 9.5,-14.5 - parent: 82 - type: Transform -- uid: 341 - type: GasPipeStraight - components: - - pos: 33.5,34.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 342 - type: Table - components: - - pos: 5.5,-13.5 - parent: 82 - type: Transform -- uid: 343 - type: TableReinforcedGlass - components: - - pos: 16.5,58.5 - parent: 82 - type: Transform -- uid: 344 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 18.5,59.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 345 - type: FirelockGlass - components: - - pos: -17.5,39.5 - parent: 82 - type: Transform -- uid: 346 - type: Table - components: - - pos: 5.5,-12.5 - parent: 82 - type: Transform -- uid: 347 - type: Table - components: - - pos: 5.5,-9.5 - parent: 82 - type: Transform -- uid: 348 - type: Table - components: - - pos: 9.5,-13.5 - parent: 82 - type: Transform -- uid: 349 - type: Table - components: - - pos: 9.5,-12.5 - parent: 82 - type: Transform -- uid: 350 - type: Table - components: - - pos: 9.5,-9.5 - parent: 82 - type: Transform -- uid: 351 - type: WallSolid - components: - - pos: -16.5,-1.5 - parent: 82 - type: Transform -- uid: 352 - type: AirlockEngineeringLocked - components: - - pos: 16.5,-15.5 - parent: 82 - type: Transform -- uid: 353 - type: CableHV - components: - - pos: 14.5,-18.5 - parent: 82 - type: Transform -- uid: 354 - type: CableHV - components: - - pos: 16.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 355 - type: WallReinforced - components: - - pos: 10.5,-16.5 - parent: 82 - type: Transform -- uid: 356 - type: WallReinforced - components: - - pos: 11.5,-16.5 - parent: 82 - type: Transform -- uid: 357 - type: WallReinforced - components: - - pos: 6.5,-16.5 - parent: 82 - type: Transform -- uid: 358 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 0.5,-19.5 - parent: 82 - type: Transform -- uid: 359 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 82 - type: Transform -- uid: 360 - type: MaintenanceFluffSpawner - components: - - pos: 29.5,-6.5 - parent: 82 - type: Transform -- uid: 361 - type: CableHV - components: - - pos: 16.5,-17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 362 - type: Window - components: - - pos: 34.5,23.5 - parent: 82 - type: Transform -- uid: 363 - type: Window - components: - - pos: 34.5,26.5 - parent: 82 - type: Transform -- uid: 364 - type: Window - components: - - pos: 34.5,27.5 - parent: 82 - type: Transform -- uid: 365 - type: WallReinforced - components: - - pos: 5.5,-19.5 - parent: 82 - type: Transform -- uid: 366 - type: WallReinforced - components: - - pos: 6.5,-19.5 - parent: 82 - type: Transform -- uid: 367 - type: WallReinforced - components: - - pos: 7.5,-19.5 - parent: 82 - type: Transform -- uid: 368 - type: WallReinforced - components: - - pos: 8.5,-19.5 - parent: 82 - type: Transform -- uid: 369 - type: WallReinforced - components: - - pos: 9.5,-19.5 - parent: 82 - type: Transform -- uid: 370 - type: ReinforcedPlasmaWindow - components: - - pos: 10.5,-19.5 - parent: 82 - type: Transform -- uid: 371 - type: ReinforcedPlasmaWindow - components: - - pos: 11.5,-19.5 - parent: 82 - type: Transform -- uid: 372 - type: ReinforcedPlasmaWindow - components: - - pos: 12.5,-19.5 - parent: 82 - type: Transform -- uid: 373 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,16.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 374 - type: Wrench - components: - - pos: 29.532396,-7.4351788 - parent: 82 - type: Transform -- uid: 375 - type: GasPassiveGate - components: - - rot: 3.141592653589793 rad - pos: 16.5,17.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 376 - type: GasValve - components: - - pos: 0.5,8.5 - parent: 82 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 377 - type: GasValve - components: - - pos: 2.5,8.5 - parent: 82 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 378 - type: GasValve - components: - - pos: 6.5,8.5 - parent: 82 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 379 - type: GasValve - components: - - pos: 8.5,8.5 - parent: 82 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 380 - type: GasValve - components: - - pos: 12.5,8.5 - parent: 82 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 381 - type: GasValve - components: - - pos: 14.5,8.5 - parent: 82 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 382 - type: GasPipeStraight - components: - - pos: 0.5,7.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 383 - type: GasPipeStraight - components: - - pos: 0.5,6.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 384 - type: GasPipeStraight - components: - - pos: 2.5,6.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 385 - type: GasPipeStraight - components: - - pos: 2.5,7.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 386 - type: GasPipeStraight - components: - - pos: 1.5,3.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 387 - type: GasPipeStraight - components: - - pos: 1.5,2.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 388 - type: GasPipeStraight - components: - - pos: 7.5,3.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 389 - type: GasPipeStraight - components: - - pos: 7.5,2.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 390 - type: GasPipeStraight - components: - - pos: 13.5,3.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 391 - type: GasPipeStraight - components: - - pos: 13.5,2.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 392 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 1.5,1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 393 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 7.5,1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 394 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 13.5,1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 395 - type: GasVentScrubber - components: - - pos: 1.5,4.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 396 - type: GasVentScrubber - components: - - pos: 7.5,4.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 397 - type: GasVentScrubber - components: - - pos: 13.5,4.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 398 - type: GasPipeStraight - components: - - pos: 6.5,7.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 399 - type: GasPipeStraight - components: - - pos: 6.5,6.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 400 - type: GasPipeStraight - components: - - pos: 8.5,7.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 401 - type: GasPipeStraight - components: - - pos: 8.5,6.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 402 - type: GasPipeStraight - components: - - pos: 12.5,7.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 403 - type: GasPipeStraight - components: - - pos: 12.5,6.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 404 - type: GasPipeStraight - components: - - pos: 14.5,7.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 405 - type: GasPipeStraight - components: - - pos: 14.5,6.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 406 - type: GasPipeStraight - components: - - pos: 14.5,5.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 407 - type: GasPipeStraight - components: - - pos: 12.5,5.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 408 - type: GasPipeStraight - components: - - pos: 8.5,5.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 409 - type: GasPipeStraight - components: - - pos: 6.5,5.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 410 - type: GasPipeStraight - components: - - pos: 2.5,5.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 411 - type: GasPipeStraight - components: - - pos: 0.5,5.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 412 - type: GasOutletInjector - components: - - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 413 - type: GasOutletInjector - components: - - rot: 3.141592653589793 rad - pos: 6.5,4.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 414 - type: GasOutletInjector - components: - - rot: 3.141592653589793 rad - pos: 12.5,4.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 415 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 2.5,4.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 416 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 8.5,4.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 417 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 14.5,4.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 418 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 8.5,10.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 419 - type: GasPressurePump - components: - - pos: 12.5,10.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 420 - type: GasPressurePump - components: - - pos: 6.5,10.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 421 - type: GasPressurePump - components: - - pos: 0.5,10.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 422 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,9.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 423 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,9.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 424 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,9.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 425 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,9.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 426 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,9.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 427 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,9.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 428 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 429 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,15.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 430 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 431 - type: Grille - components: - - pos: 16.5,18.5 - parent: 82 - type: Transform -- uid: 432 - type: Grille - components: - - pos: -1.5,18.5 - parent: 82 - type: Transform -- uid: 433 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -0.5,18.5 - parent: 82 - type: Transform -- uid: 434 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 0.5,18.5 - parent: 82 - type: Transform -- uid: 435 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 1.5,18.5 - parent: 82 - type: Transform -- uid: 436 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 2.5,18.5 - parent: 82 - type: Transform -- uid: 437 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 3.5,18.5 - parent: 82 - type: Transform -- uid: 438 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 4.5,18.5 - parent: 82 - type: Transform -- uid: 439 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 5.5,18.5 - parent: 82 - type: Transform -- uid: 440 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 6.5,18.5 - parent: 82 - type: Transform -- uid: 441 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 7.5,18.5 - parent: 82 - type: Transform -- uid: 442 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 8.5,18.5 - parent: 82 - type: Transform -- uid: 443 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 9.5,18.5 - parent: 82 - type: Transform -- uid: 444 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 10.5,18.5 - parent: 82 - type: Transform -- uid: 445 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 11.5,18.5 - parent: 82 - type: Transform -- uid: 446 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 12.5,18.5 - parent: 82 - type: Transform -- uid: 447 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 13.5,18.5 - parent: 82 - type: Transform -- uid: 448 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 14.5,18.5 - parent: 82 - type: Transform -- uid: 449 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 15.5,18.5 - parent: 82 - type: Transform -- uid: 450 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -0.5,18.5 - parent: 82 - type: Transform -- uid: 451 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 0.5,18.5 - parent: 82 - type: Transform -- uid: 452 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 1.5,18.5 - parent: 82 - type: Transform -- uid: 453 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 2.5,18.5 - parent: 82 - type: Transform -- uid: 454 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 3.5,18.5 - parent: 82 - type: Transform -- uid: 455 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 4.5,18.5 - parent: 82 - type: Transform -- uid: 456 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 5.5,18.5 - parent: 82 - type: Transform -- uid: 457 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 6.5,18.5 - parent: 82 - type: Transform -- uid: 458 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 7.5,18.5 - parent: 82 - type: Transform -- uid: 459 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 8.5,18.5 - parent: 82 - type: Transform -- uid: 460 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 9.5,18.5 - parent: 82 - type: Transform -- uid: 461 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 10.5,18.5 - parent: 82 - type: Transform -- uid: 462 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 11.5,18.5 - parent: 82 - type: Transform -- uid: 463 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 12.5,18.5 - parent: 82 - type: Transform -- uid: 464 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 13.5,18.5 - parent: 82 - type: Transform -- uid: 465 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 14.5,18.5 - parent: 82 - type: Transform -- uid: 466 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 15.5,18.5 - parent: 82 - type: Transform -- uid: 467 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 16.5,21.5 - parent: 82 - type: Transform -- uid: 468 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 16.5,22.5 - parent: 82 - type: Transform -- uid: 469 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 16.5,23.5 - parent: 82 - type: Transform -- uid: 470 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 16.5,24.5 - parent: 82 - type: Transform -- uid: 471 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 16.5,25.5 - parent: 82 - type: Transform -- uid: 472 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -1.5,25.5 - parent: 82 - type: Transform -- uid: 473 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -0.5,25.5 - parent: 82 - type: Transform -- uid: 474 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 0.5,25.5 - parent: 82 - type: Transform -- uid: 475 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 1.5,25.5 - parent: 82 - type: Transform -- uid: 476 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 2.5,25.5 - parent: 82 - type: Transform -- uid: 477 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 3.5,25.5 - parent: 82 - type: Transform -- uid: 478 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 4.5,25.5 - parent: 82 - type: Transform -- uid: 479 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 5.5,25.5 - parent: 82 - type: Transform -- uid: 480 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 6.5,25.5 - parent: 82 - type: Transform -- uid: 481 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 7.5,25.5 - parent: 82 - type: Transform -- uid: 482 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 8.5,25.5 - parent: 82 - type: Transform -- uid: 483 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 9.5,25.5 - parent: 82 - type: Transform -- uid: 484 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 10.5,25.5 - parent: 82 - type: Transform -- uid: 485 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 11.5,25.5 - parent: 82 - type: Transform -- uid: 486 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 12.5,25.5 - parent: 82 - type: Transform -- uid: 487 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 13.5,25.5 - parent: 82 - type: Transform -- uid: 488 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,25.5 - parent: 82 - type: Transform -- uid: 489 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 15.5,25.5 - parent: 82 - type: Transform -- uid: 490 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -1.5,24.5 - parent: 82 - type: Transform -- uid: 491 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -1.5,23.5 - parent: 82 - type: Transform -- uid: 492 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -1.5,22.5 - parent: 82 - type: Transform -- uid: 493 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -1.5,21.5 - parent: 82 - type: Transform -- uid: 494 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 0.5,21.5 - parent: 82 - type: Transform -- uid: 495 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 0.5,22.5 - parent: 82 - type: Transform -- uid: 496 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 0.5,23.5 - parent: 82 - type: Transform -- uid: 497 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 0.5,24.5 - parent: 82 - type: Transform -- uid: 498 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 2.5,21.5 - parent: 82 - type: Transform -- uid: 499 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 2.5,22.5 - parent: 82 - type: Transform -- uid: 500 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 2.5,23.5 - parent: 82 - type: Transform -- uid: 501 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 2.5,24.5 - parent: 82 - type: Transform -- uid: 502 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 12.5,21.5 - parent: 82 - type: Transform -- uid: 503 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 12.5,22.5 - parent: 82 - type: Transform -- uid: 504 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 12.5,23.5 - parent: 82 - type: Transform -- uid: 505 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 12.5,24.5 - parent: 82 - type: Transform -- uid: 506 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 10.5,21.5 - parent: 82 - type: Transform -- uid: 507 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 10.5,22.5 - parent: 82 - type: Transform -- uid: 508 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 10.5,23.5 - parent: 82 - type: Transform -- uid: 509 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 10.5,24.5 - parent: 82 - type: Transform -- uid: 510 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 8.5,21.5 - parent: 82 - type: Transform -- uid: 511 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 8.5,22.5 - parent: 82 - type: Transform -- uid: 512 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 8.5,23.5 - parent: 82 - type: Transform -- uid: 513 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 8.5,24.5 - parent: 82 - type: Transform -- uid: 514 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 6.5,21.5 - parent: 82 - type: Transform -- uid: 515 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 6.5,22.5 - parent: 82 - type: Transform -- uid: 516 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 6.5,23.5 - parent: 82 - type: Transform -- uid: 517 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 6.5,24.5 - parent: 82 - type: Transform -- uid: 518 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 4.5,21.5 - parent: 82 - type: Transform -- uid: 519 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 4.5,22.5 - parent: 82 - type: Transform -- uid: 520 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 4.5,23.5 - parent: 82 - type: Transform -- uid: 521 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 4.5,24.5 - parent: 82 - type: Transform -- uid: 522 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 11.5,21.5 - parent: 82 - type: Transform -- uid: 523 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 9.5,21.5 - parent: 82 - type: Transform -- uid: 524 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 7.5,21.5 - parent: 82 - type: Transform -- uid: 525 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 5.5,21.5 - parent: 82 - type: Transform -- uid: 526 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 3.5,21.5 - parent: 82 - type: Transform -- uid: 527 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 1.5,21.5 - parent: 82 - type: Transform -- uid: 528 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -0.5,21.5 - parent: 82 - type: Transform -- uid: 529 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -0.5,21.5 - parent: 82 - type: Transform -- uid: 530 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 1.5,21.5 - parent: 82 - type: Transform -- uid: 531 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 3.5,21.5 - parent: 82 - type: Transform -- uid: 532 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 5.5,21.5 - parent: 82 - type: Transform -- uid: 533 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 7.5,21.5 - parent: 82 - type: Transform -- uid: 534 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 9.5,21.5 - parent: 82 - type: Transform -- uid: 535 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 11.5,21.5 - parent: 82 - type: Transform -- uid: 536 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 13.5,21.5 - parent: 82 - type: Transform -- uid: 537 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 14.5,21.5 - parent: 82 - type: Transform -- uid: 538 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: 15.5,21.5 - parent: 82 - type: Transform -- uid: 539 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 13.5,21.5 - parent: 82 - type: Transform -- uid: 540 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 14.5,21.5 - parent: 82 - type: Transform -- uid: 541 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 15.5,21.5 - parent: 82 - type: Transform -- uid: 542 - type: AirCanister - components: - - pos: 14.5,23.5 - parent: 82 - type: Transform -- uid: 543 - type: OxygenCanister - components: - - pos: 9.5,23.5 - parent: 82 - type: Transform -- uid: 544 - type: NitrogenCanister - components: - - pos: 11.5,23.5 - parent: 82 - type: Transform -- uid: 545 - type: CarbonDioxideCanister - components: - - pos: 7.5,23.5 - parent: 82 - type: Transform -- uid: 546 - type: NitrousOxideCanister - components: - - pos: 5.5,23.5 - parent: 82 - type: Transform -- uid: 547 - type: BedsheetClown - components: - - pos: -12.5,-48.5 - parent: 82 - type: Transform -- uid: 548 - type: WaterVaporCanister - components: - - pos: 1.5,23.5 - parent: 82 - type: Transform -- uid: 549 - type: PlasmaCanister - components: - - pos: -0.5,23.5 - parent: 82 - type: Transform -- uid: 550 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -0.5,24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 551 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: 1.5,24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 552 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: 3.5,24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 553 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: 5.5,24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 554 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: 7.5,24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 555 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: 9.5,24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 556 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: 11.5,24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 557 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: 15.5,24.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 558 - type: GasPassiveVent - components: - - pos: -0.5,22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 559 - type: GasPassiveVent - components: - - pos: 1.5,22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 560 - type: GasPassiveVent - components: - - pos: 3.5,22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 561 - type: GasPassiveVent - components: - - pos: 5.5,22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 562 - type: GasPassiveVent - components: - - pos: 7.5,22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 563 - type: GasPassiveVent - components: - - pos: 9.5,22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 564 - type: GasPassiveVent - components: - - pos: 11.5,22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 565 - type: GasPassiveVent - components: - - pos: 15.5,22.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 566 - type: WallReinforced - components: - - pos: 17.5,18.5 - parent: 82 - type: Transform -- uid: 567 - type: WallReinforced - components: - - pos: 18.5,18.5 - parent: 82 - type: Transform -- uid: 568 - type: WallReinforced - components: - - pos: 19.5,18.5 - parent: 82 - type: Transform -- uid: 569 - type: WallReinforced - components: - - pos: 19.5,19.5 - parent: 82 - type: Transform -- uid: 570 - type: WallReinforced - components: - - pos: 19.5,20.5 - parent: 82 - type: Transform -- uid: 571 - type: WallReinforced - components: - - pos: 19.5,21.5 - parent: 82 - type: Transform -- uid: 572 - type: WallReinforced - components: - - pos: 19.5,22.5 - parent: 82 - type: Transform -- uid: 573 - type: WallReinforced - components: - - pos: 19.5,23.5 - parent: 82 - type: Transform -- uid: 574 - type: WallReinforced - components: - - pos: 19.5,24.5 - parent: 82 - type: Transform -- uid: 575 - type: WallReinforced - components: - - pos: 19.5,25.5 - parent: 82 - type: Transform -- uid: 576 - type: WallReinforced - components: - - pos: 19.5,26.5 - parent: 82 - type: Transform -- uid: 577 - type: WallReinforced - components: - - pos: 19.5,27.5 - parent: 82 - type: Transform -- uid: 578 - type: WallReinforced - components: - - pos: -2.5,18.5 - parent: 82 - type: Transform -- uid: 579 - type: WallReinforced - components: - - pos: -3.5,18.5 - parent: 82 - type: Transform -- uid: 580 - type: WallReinforced - components: - - pos: -4.5,18.5 - parent: 82 - type: Transform -- uid: 581 - type: WallReinforced - components: - - pos: -4.5,19.5 - parent: 82 - type: Transform -- uid: 582 - type: WallReinforced - components: - - pos: -4.5,20.5 - parent: 82 - type: Transform -- uid: 583 - type: WallReinforced - components: - - pos: -4.5,21.5 - parent: 82 - type: Transform -- uid: 584 - type: WallReinforced - components: - - pos: -4.5,22.5 - parent: 82 - type: Transform -- uid: 585 - type: WallReinforced - components: - - pos: -4.5,23.5 - parent: 82 - type: Transform -- uid: 586 - type: WallReinforced - components: - - pos: -4.5,24.5 - parent: 82 - type: Transform -- uid: 587 - type: WallReinforced - components: - - pos: -4.5,25.5 - parent: 82 - type: Transform -- uid: 588 - type: WallReinforced - components: - - pos: -4.5,26.5 - parent: 82 - type: Transform -- uid: 589 - type: WallReinforced - components: - - pos: -4.5,27.5 - parent: 82 - type: Transform -- uid: 590 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 36.5,19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 591 - type: WallReinforced - components: - - pos: -6.5,6.5 - parent: 82 - type: Transform -- uid: 592 - type: WallReinforced - components: - - pos: -7.5,6.5 - parent: 82 - type: Transform -- uid: 593 - type: GasPipeStraight - components: - - pos: 0.5,23.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 594 - type: GasPipeStraight - components: - - pos: 0.5,22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 595 - type: GasPipeStraight - components: - - pos: 0.5,21.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 596 - type: GasPipeStraight - components: - - pos: 2.5,23.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 597 - type: GasPipeStraight - components: - - pos: 2.5,22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 598 - type: GasPipeStraight - components: - - pos: 2.5,21.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 599 - type: GasPipeStraight - components: - - pos: 4.5,23.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 600 - type: GasPipeStraight - components: - - pos: 4.5,22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 601 - type: GasPipeStraight - components: - - pos: 4.5,21.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 602 - type: GasPipeStraight - components: - - pos: 6.5,23.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 603 - type: GasPipeStraight - components: - - pos: 6.5,22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 604 - type: GasPipeStraight - components: - - pos: 6.5,21.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 605 - type: GasPipeStraight - components: - - pos: 8.5,23.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 606 - type: GasPipeStraight - components: - - pos: 8.5,22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 607 - type: GasPipeStraight - components: - - pos: 8.5,21.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 608 - type: GasPipeStraight - components: - - pos: 10.5,23.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 609 - type: GasPipeStraight - components: - - pos: 10.5,22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 610 - type: GasPipeStraight - components: - - pos: 10.5,21.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 611 - type: GasPipeStraight - components: - - pos: 12.5,23.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 612 - type: GasPipeStraight - components: - - pos: 12.5,22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 613 - type: GasPipeStraight - components: - - pos: 12.5,21.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 614 - type: GasPipeStraight - components: - - pos: 16.5,23.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 615 - type: GasPipeStraight - components: - - pos: 16.5,22.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 616 - type: GasPipeStraight - components: - - pos: 16.5,21.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 617 - type: GasPipeStraight - components: - - pos: 15.5,21.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 618 - type: GasPipeStraight - components: - - pos: 11.5,21.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 619 - type: GasPipeStraight - components: - - pos: 9.5,21.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 620 - type: GasPipeStraight - components: - - pos: 7.5,21.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 621 - type: GasPipeStraight - components: - - pos: 5.5,21.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 622 - type: GasPipeStraight - components: - - pos: 3.5,21.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 623 - type: GasPipeStraight - components: - - pos: 1.5,21.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 624 - type: GasPipeStraight - components: - - pos: -0.5,21.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 625 - type: GasPipeStraight - components: - - pos: 0.5,20.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 626 - type: GasPipeStraight - components: - - pos: -0.5,20.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 627 - type: GasPipeStraight - components: - - pos: -0.5,19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 628 - type: GasPipeStraight - components: - - pos: 0.5,19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 629 - type: GasPipeStraight - components: - - pos: 1.5,20.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 630 - type: GasPipeStraight - components: - - pos: 1.5,19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 631 - type: GasPipeStraight - components: - - pos: 2.5,20.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 632 - type: GasPipeStraight - components: - - pos: 2.5,19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 633 - type: GasPipeStraight - components: - - pos: 3.5,20.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 634 - type: GasPipeStraight - components: - - pos: 3.5,19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 635 - type: GasPipeStraight - components: - - pos: 4.5,20.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 636 - type: GasPipeStraight - components: - - pos: 4.5,19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 637 - type: GasPipeStraight - components: - - pos: 5.5,20.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 638 - type: GasPipeStraight - components: - - pos: 5.5,19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 639 - type: GasPipeStraight - components: - - pos: 6.5,20.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 640 - type: GasPipeStraight - components: - - pos: 6.5,19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 641 - type: GasPipeStraight - components: - - pos: 7.5,20.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 642 - type: GasPipeStraight - components: - - pos: 7.5,19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 643 - type: GasPipeStraight - components: - - pos: 8.5,20.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 644 - type: GasPipeStraight - components: - - pos: 8.5,19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 645 - type: GasPipeStraight - components: - - pos: 9.5,20.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 646 - type: GasPipeStraight - components: - - pos: 9.5,19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 647 - type: GasPipeStraight - components: - - pos: 10.5,20.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 648 - type: GasPipeStraight - components: - - pos: 10.5,19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 649 - type: GasPipeStraight - components: - - pos: 11.5,20.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 650 - type: GasPipeStraight - components: - - pos: 11.5,19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 651 - type: GasPipeStraight - components: - - pos: 12.5,20.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 652 - type: GasPipeStraight - components: - - pos: 12.5,19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 653 - type: GasPipeStraight - components: - - pos: 15.5,20.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 654 - type: GasPipeStraight - components: - - pos: 15.5,19.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 655 - type: GasPipeStraight - components: - - pos: 16.5,20.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 656 - type: GasPipeStraight - components: - - pos: 16.5,19.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 657 - type: GasPipeStraight - components: - - pos: 16.5,18.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 658 - type: GasPipeStraight - components: - - pos: 15.5,18.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 659 - type: GasPipeBend - components: - - pos: 0.5,24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 660 - type: GasPipeBend - components: - - pos: 2.5,24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 661 - type: GasPipeBend - components: - - pos: 4.5,24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 662 - type: GasPipeBend - components: - - pos: 6.5,24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 663 - type: GasPipeBend - components: - - pos: 8.5,24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 664 - type: GasPipeBend - components: - - pos: 10.5,24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 665 - type: GasPipeBend - components: - - pos: 12.5,24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 666 - type: GasPipeBend - components: - - pos: 16.5,24.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 667 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 668 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 669 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 670 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 671 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 672 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 673 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 674 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 675 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 676 - type: GasPassiveVent - components: - - pos: 13.5,19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 677 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 678 - type: GasValve - components: - - pos: -1.5,17.5 - parent: 82 - type: Transform - - open: False - type: GasValve - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 679 - type: GasPipeStraight - components: - - pos: -1.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 680 - type: ReinforcedWindow - components: - - pos: -1.5,18.5 - parent: 82 - type: Transform -- uid: 681 - type: ReinforcedWindow - components: - - pos: 16.5,18.5 - parent: 82 - type: Transform -- uid: 682 - type: WallReinforced - components: - - pos: -8.5,6.5 - parent: 82 - type: Transform -- uid: 683 - type: GasPassiveVent - components: - - pos: -1.5,19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 684 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 685 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 686 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 687 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 688 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 689 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 690 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 691 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 692 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 693 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 694 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 695 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 696 - type: WallReinforced - components: - - pos: 47.5,19.5 - parent: 82 - type: Transform -- uid: 697 - type: AirlockExternalGlassCargoLocked - components: - - pos: 46.5,23.5 - parent: 82 - type: Transform -- uid: 698 - type: WallSolid - components: - - pos: -37.5,-5.5 - parent: 82 - type: Transform -- uid: 699 - type: BlastDoor - components: - - pos: 46.5,20.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25321 - type: SignalReceiver -- uid: 700 - type: BlastDoor - components: - - pos: 46.5,24.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25323 - type: SignalReceiver -- uid: 701 - type: ReinforcedWindow - components: - - pos: 46.5,22.5 - parent: 82 - type: Transform -- uid: 702 - type: ReinforcedWindow - components: - - pos: 47.5,22.5 - parent: 82 - type: Transform -- uid: 703 - type: ReinforcedWindow - components: - - pos: 48.5,22.5 - parent: 82 - type: Transform -- uid: 704 - type: Grille - components: - - pos: 46.5,22.5 - parent: 82 - type: Transform -- uid: 705 - type: GasPressurePump - components: - - pos: -0.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 706 - type: GasPressurePump - components: - - pos: 1.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 707 - type: GasPressurePump - components: - - pos: 3.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 708 - type: GasPressurePump - components: - - pos: 5.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 709 - type: GasPressurePump - components: - - pos: 7.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 710 - type: GasPressurePump - components: - - pos: 11.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 711 - type: GasPressurePump - components: - - pos: 9.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 712 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -30.5,10.5 - parent: 82 - type: Transform -- uid: 713 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 15.5,16.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 714 - type: GasPipeStraight - components: - - pos: 16.5,16.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 715 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 74.5,16.5 - parent: 82 - type: Transform -- uid: 716 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 75.5,16.5 - parent: 82 - type: Transform -- uid: 717 - type: CarpetBlack - components: - - pos: -13.5,10.5 - parent: 82 - type: Transform -- uid: 718 - type: GasMixer - components: - - rot: -1.5707963267948966 rad - pos: 9.5,14.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 719 - type: GasPressurePump - components: - - pos: 18.5,15.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 720 - type: GasPipeStraight - components: - - pos: 18.5,12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 721 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 18.5,11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 722 - type: GasPipeStraight - components: - - pos: 18.5,10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 723 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,15.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 724 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 14.5,10.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 725 - type: GasMixer - components: - - rot: -1.5707963267948966 rad - pos: 7.5,14.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 726 - type: GasMixer - components: - - rot: -1.5707963267948966 rad - pos: 5.5,14.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 727 - type: GasMixer - components: - - rot: -1.5707963267948966 rad - pos: 3.5,14.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 728 - type: GasMixer - components: - - rot: -1.5707963267948966 rad - pos: 1.5,14.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 729 - type: GasFilterFlipped - components: - - rot: -1.5707963267948966 rad - pos: 0.5,16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 730 - type: GasFilterFlipped - components: - - rot: -1.5707963267948966 rad - pos: 2.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 731 - type: GasFilterFlipped - components: - - rot: -1.5707963267948966 rad - pos: 4.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 732 - type: GasFilterFlipped - components: - - rot: -1.5707963267948966 rad - pos: 6.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 733 - type: GasFilterFlipped - components: - - rot: -1.5707963267948966 rad - pos: 8.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 734 - type: GasFilterFlipped - components: - - rot: -1.5707963267948966 rad - pos: 10.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 735 - type: GasFilterFlipped - components: - - rot: -1.5707963267948966 rad - pos: 12.5,16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 736 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 13.5,16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 737 - type: GasMixer - components: - - rot: -1.5707963267948966 rad - pos: -0.5,14.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 738 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 2.5,10.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 739 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,15.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 740 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 741 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,15.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 742 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 743 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,15.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 744 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 745 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,15.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 746 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 747 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 11.5,14.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 748 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 749 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 9.5,15.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 750 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,14.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 751 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,15.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 752 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,15.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 753 - type: GasPipeBend - components: - - pos: 12.5,15.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 754 - type: GasMixerFlipped - components: - - rot: -1.5707963267948966 rad - pos: 12.5,14.5 - parent: 82 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 755 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,14.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 756 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 76.5,16.5 - parent: 82 - type: Transform -- uid: 757 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 77.5,16.5 - parent: 82 - type: Transform -- uid: 758 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 16.5,14.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 759 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,15.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 760 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -58.5,33.5 - parent: 82 - type: Transform -- uid: 761 - type: WallSolid - components: - - pos: -61.5,-32.5 - parent: 82 - type: Transform -- uid: 762 - type: WallReinforced - components: - - pos: 20.5,18.5 - parent: 82 - type: Transform -- uid: 763 - type: GasValve - components: - - rot: 3.141592653589793 rad - pos: 13.5,15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 764 - type: GasValve - components: - - rot: 3.141592653589793 rad - pos: 13.5,17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 765 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,14.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 766 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 18.5,13.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 767 - type: Grille - components: - - pos: -58.5,30.5 - parent: 82 - type: Transform -- uid: 768 - type: WallReinforced - components: - - pos: -9.5,6.5 - parent: 82 - type: Transform -- uid: 769 - type: WallReinforced - components: - - pos: -9.5,8.5 - parent: 82 - type: Transform -- uid: 770 - type: WallReinforced - components: - - pos: -9.5,7.5 - parent: 82 - type: Transform -- uid: 771 - type: WallReinforced - components: - - pos: -9.5,9.5 - parent: 82 - type: Transform -- uid: 772 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,16.5 - parent: 82 - type: Transform -- uid: 773 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,17.5 - parent: 82 - type: Transform -- uid: 774 - type: WallReinforced - components: - - pos: -9.5,10.5 - parent: 82 - type: Transform -- uid: 775 - type: WallReinforced - components: - - pos: 30.5,18.5 - parent: 82 - type: Transform -- uid: 776 - type: WallReinforced - components: - - pos: 22.5,18.5 - parent: 82 - type: Transform -- uid: 777 - type: WallReinforced - components: - - pos: -7.5,11.5 - parent: 82 - type: Transform -- uid: 778 - type: WallSolid - components: - - pos: -9.5,20.5 - parent: 82 - type: Transform -- uid: 779 - type: WallSolid - components: - - pos: -11.5,16.5 - parent: 82 - type: Transform -- uid: 780 - type: WallSolid - components: - - pos: -11.5,15.5 - parent: 82 - type: Transform -- uid: 781 - type: WallSolid - components: - - pos: -9.5,19.5 - parent: 82 - type: Transform -- uid: 782 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -9.5,16.5 - parent: 82 - type: Transform -- uid: 783 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -9.5,17.5 - parent: 82 - type: Transform -- uid: 784 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -9.5,18.5 - parent: 82 - type: Transform -- uid: 785 - type: WallSolid - components: - - pos: -10.5,16.5 - parent: 82 - type: Transform -- uid: 786 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -7.5,18.5 - parent: 82 - type: Transform -- uid: 787 - type: Grille - components: - - pos: 26.5,11.5 - parent: 82 - type: Transform -- uid: 788 - type: GasPipeStraight - components: - - pos: -5.5,18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 789 - type: WallSolid - components: - - pos: 20.5,5.5 - parent: 82 - type: Transform -- uid: 790 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,14.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 791 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,14.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 792 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 793 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 794 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 795 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 796 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 797 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 798 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 799 - type: GasPipeTJunction - components: - - pos: 8.5,11.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 800 - type: GasPipeTJunction - components: - - pos: 6.5,11.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 801 - type: GasPipeTJunction - components: - - pos: 0.5,11.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 802 - type: GasPipeTJunction - components: - - pos: 2.5,11.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 803 - type: WallReinforced - components: - - pos: -13.5,-50.5 - parent: 82 - type: Transform -- uid: 804 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-15.5 - parent: 82 - type: Transform -- uid: 805 - type: AirlockEngineeringLocked - components: - - pos: -5.5,5.5 - parent: 82 - type: Transform -- uid: 806 - type: WallReinforced - components: - - pos: -6.5,11.5 - parent: 82 - type: Transform -- uid: 807 - type: Grille - components: - - pos: -61.5,34.5 - parent: 82 - type: Transform -- uid: 808 - type: Grille - components: - - pos: -58.5,31.5 - parent: 82 - type: Transform -- uid: 809 - type: GasPipeTJunction - components: - - pos: 12.5,11.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 810 - type: GasPipeTJunction - components: - - pos: 14.5,11.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 811 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 812 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 9.5,11.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 813 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 5.5,11.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 814 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,11.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 815 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -1.5,14.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 816 - type: GasPipeStraight - components: - - pos: -1.5,13.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 817 - type: GasPipeStraight - components: - - pos: -1.5,12.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 818 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -1.5,11.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 819 - type: GasPipeTJunction - components: - - pos: -0.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 820 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 821 - type: CarpetPurple - components: - - pos: 19.5,-91.5 - parent: 82 - type: Transform -- uid: 822 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 15.5,11.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 823 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 15.5,12.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 824 - type: GasPipeTJunction - components: - - pos: 15.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 825 - type: GasPressurePump - components: - - pos: 11.5,12.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 826 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 827 - type: GasPipeStraight - components: - - pos: 13.5,14.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 828 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,14.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 829 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,14.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 830 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,14.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 831 - type: ReinforcedWindow - components: - - pos: -61.5,34.5 - parent: 82 - type: Transform -- uid: 832 - type: WallReinforced - components: - - pos: -8.5,11.5 - parent: 82 - type: Transform -- uid: 833 - type: WallReinforced - components: - - pos: -9.5,11.5 - parent: 82 - type: Transform -- uid: 834 - type: WallReinforced - components: - - pos: -6.5,18.5 - parent: 82 - type: Transform -- uid: 835 - type: WallReinforced - components: - - pos: -6.5,17.5 - parent: 82 - type: Transform -- uid: 836 - type: WallReinforced - components: - - pos: -6.5,16.5 - parent: 82 - type: Transform -- uid: 837 - type: WallReinforced - components: - - pos: -6.5,15.5 - parent: 82 - type: Transform -- uid: 838 - type: WallReinforced - components: - - pos: -6.5,14.5 - parent: 82 - type: Transform -- uid: 839 - type: WallReinforced - components: - - pos: -6.5,13.5 - parent: 82 - type: Transform -- uid: 840 - type: WallReinforced - components: - - pos: -9.5,-9.5 - parent: 82 - type: Transform -- uid: 841 - type: TableReinforced - components: - - pos: -5.5,0.5 - parent: 82 - type: Transform -- uid: 842 - type: WallSolid - components: - - pos: -26.5,-15.5 - parent: 82 - type: Transform -- uid: 843 - type: WallSolid - components: - - pos: -17.5,-1.5 - parent: 82 - type: Transform -- uid: 844 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -24.5,-23.5 - parent: 82 - type: Transform -- uid: 845 - type: WallReinforced - components: - - pos: -12.5,-12.5 - parent: 82 - type: Transform -- uid: 846 - type: WallReinforced - components: - - pos: -13.5,-12.5 - parent: 82 - type: Transform -- uid: 847 - type: Window - components: - - pos: 34.5,30.5 - parent: 82 - type: Transform -- uid: 848 - type: WallReinforced - components: - - pos: -13.5,-11.5 - parent: 82 - type: Transform -- uid: 849 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 23.5,15.5 - parent: 82 - type: Transform -- uid: 850 - type: CableMV - components: - - pos: 15.5,-13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 851 - type: WarningN2 - components: - - pos: 12.5,21.5 - parent: 82 - type: Transform -- uid: 852 - type: WarningN2O - components: - - pos: 6.5,21.5 - parent: 82 - type: Transform -- uid: 853 - type: WarningO2 - components: - - pos: 10.5,21.5 - parent: 82 - type: Transform -- uid: 854 - type: WarningCO2 - components: - - pos: 8.5,21.5 - parent: 82 - type: Transform -- uid: 855 - type: WallReinforced - components: - - pos: -6.5,12.5 - parent: 82 - type: Transform -- uid: 856 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 21.5,6.5 - parent: 82 - type: Transform -- uid: 857 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 22.5,6.5 - parent: 82 - type: Transform -- uid: 858 - type: Window - components: - - pos: 23.5,7.5 - parent: 82 - type: Transform -- uid: 859 - type: Grille - components: - - pos: 23.5,7.5 - parent: 82 - type: Transform -- uid: 860 - type: SignBiohazardMed - components: - - pos: 4.5,21.5 - parent: 82 - type: Transform -- uid: 861 - type: WarningPlasma - components: - - pos: 0.5,21.5 - parent: 82 - type: Transform -- uid: 862 - type: WarningWaste - components: - - pos: 2.5,21.5 - parent: 82 - type: Transform -- uid: 863 - type: CarpetPurple - components: - - pos: 19.5,-90.5 - parent: 82 - type: Transform -- uid: 864 - type: GasPressurePump - components: - - pos: -0.5,12.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 865 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 3.5,12.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 866 - type: GasPressurePump - components: - - pos: 5.5,12.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 867 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 9.5,12.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 868 - type: CarpetPurple - components: - - pos: 21.5,-91.5 - parent: 82 - type: Transform -- uid: 869 - type: CarpetPurple - components: - - pos: 21.5,-90.5 - parent: 82 - type: Transform -- uid: 870 - type: CarpetPurple - components: - - pos: 20.5,-92.5 - parent: 82 - type: Transform -- uid: 871 - type: CarpetPurple - components: - - pos: 20.5,-91.5 - parent: 82 - type: Transform -- uid: 872 - type: CarpetPurple - components: - - pos: 20.5,-90.5 - parent: 82 - type: Transform -- uid: 873 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -0.5,11.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 874 - type: GasPipeTJunction - components: - - pos: 3.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 875 - type: GasPipeTJunction - components: - - pos: 5.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 876 - type: GasPipeTJunction - components: - - pos: 11.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 877 - type: GasPipeTJunction - components: - - pos: 9.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 878 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 879 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 880 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 881 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 882 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 883 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 884 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 885 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 886 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 887 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 13.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 888 - type: WallReinforced - components: - - pos: 21.5,-0.5 - parent: 82 - type: Transform -- uid: 889 - type: WallReinforced - components: - - pos: -14.5,-9.5 - parent: 82 - type: Transform -- uid: 890 - type: WallReinforced - components: - - pos: -14.5,-8.5 - parent: 82 - type: Transform -- uid: 891 - type: WallReinforced - components: - - pos: -14.5,-5.5 - parent: 82 - type: Transform -- uid: 892 - type: WallReinforced - components: - - pos: -14.5,-7.5 - parent: 82 - type: Transform -- uid: 893 - type: WallReinforced - components: - - pos: -13.5,-5.5 - parent: 82 - type: Transform -- uid: 894 - type: WallReinforced - components: - - pos: -12.5,-5.5 - parent: 82 - type: Transform -- uid: 895 - type: WallReinforced - components: - - pos: -14.5,-6.5 - parent: 82 - type: Transform -- uid: 896 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -22.5,-14.5 - parent: 82 - type: Transform -- uid: 897 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 898 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 899 - type: GasPipeTJunction - components: - - pos: -4.5,16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 900 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -5.5,16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 901 - type: GasVolumePump - components: - - pos: -5.5,17.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 902 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -4.5,15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 903 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -4.5,14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 904 - type: GasPipeFourway - components: - - pos: -4.5,13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 905 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -5.5,15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 906 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -5.5,14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 907 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -5.5,13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 908 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -3.5,13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 909 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 910 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 911 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -4.5,15.5 - parent: 82 - type: Transform -- uid: 912 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -3.5,15.5 - parent: 82 - type: Transform -- uid: 913 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -3.5,14.5 - parent: 82 - type: Transform -- uid: 914 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -4.5,14.5 - parent: 82 - type: Transform -- uid: 915 - type: GasPipeStraight - components: - - pos: -4.5,12.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 916 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -3.5,13.5 - parent: 82 - type: Transform -- uid: 917 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -4.5,12.5 - parent: 82 - type: Transform -- uid: 918 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -3.5,12.5 - parent: 82 - type: Transform -- uid: 919 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -4.5,16.5 - parent: 82 - type: Transform -- uid: 920 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -4.5,17.5 - parent: 82 - type: Transform -- uid: 921 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -3.5,17.5 - parent: 82 - type: Transform -- uid: 922 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -3.5,16.5 - parent: 82 - type: Transform -- uid: 923 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -2.5,17.5 - parent: 82 - type: Transform -- uid: 924 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -2.5,16.5 - parent: 82 - type: Transform -- uid: 925 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -2.5,15.5 - parent: 82 - type: Transform -- uid: 926 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -2.5,14.5 - parent: 82 - type: Transform -- uid: 927 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 18.5,11.5 - parent: 82 - type: Transform -- uid: 928 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -2.5,13.5 - parent: 82 - type: Transform -- uid: 929 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -2.5,12.5 - parent: 82 - type: Transform -- uid: 930 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 931 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 17.5,11.5 - parent: 82 - type: Transform -- uid: 932 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 19.5,11.5 - parent: 82 - type: Transform -- uid: 933 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 19.5,9.5 - parent: 82 - type: Transform -- uid: 934 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 18.5,9.5 - parent: 82 - type: Transform -- uid: 935 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 18.5,10.5 - parent: 82 - type: Transform -- uid: 936 - type: CarpetPurple - components: - - pos: 19.5,-92.5 - parent: 82 - type: Transform -- uid: 937 - type: WallReinforced - components: - - pos: -32.5,21.5 - parent: 82 - type: Transform -- uid: 938 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 17.5,12.5 - parent: 82 - type: Transform -- uid: 939 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 18.5,12.5 - parent: 82 - type: Transform -- uid: 940 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 19.5,12.5 - parent: 82 - type: Transform -- uid: 941 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 19.5,13.5 - parent: 82 - type: Transform -- uid: 942 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 18.5,13.5 - parent: 82 - type: Transform -- uid: 943 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 17.5,13.5 - parent: 82 - type: Transform -- uid: 944 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 17.5,14.5 - parent: 82 - type: Transform -- uid: 945 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 18.5,14.5 - parent: 82 - type: Transform -- uid: 946 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 19.5,14.5 - parent: 82 - type: Transform -- uid: 947 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 17.5,10.5 - parent: 82 - type: Transform -- uid: 948 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,13.5 - parent: 82 - type: Transform - - color: '#680285FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 949 - type: GasThermoMachineFreezer - components: - - pos: 19.5,17.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor -- uid: 950 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: 17.5,13.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 951 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 18.5,9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 952 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 953 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 954 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 955 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 956 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 957 - type: BlastDoorOpen - components: - - pos: 23.5,14.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -469105.1 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22394 - type: SignalReceiver -- uid: 958 - type: BlastDoorOpen - components: - - pos: 23.5,13.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -469105.1 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22394 - type: SignalReceiver -- uid: 959 - type: BlastDoorOpen - components: - - pos: 23.5,12.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -469105.1 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22394 - type: SignalReceiver -- uid: 960 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 24.5,6.5 - parent: 82 - type: Transform -- uid: 961 - type: Catwalk - components: - - pos: -1.5,7.5 - parent: 82 - type: Transform -- uid: 962 - type: Catwalk - components: - - pos: -0.5,7.5 - parent: 82 - type: Transform -- uid: 963 - type: Catwalk - components: - - pos: 0.5,7.5 - parent: 82 - type: Transform -- uid: 964 - type: Catwalk - components: - - pos: 1.5,7.5 - parent: 82 - type: Transform -- uid: 965 - type: Catwalk - components: - - pos: 2.5,7.5 - parent: 82 - type: Transform -- uid: 966 - type: Catwalk - components: - - pos: 3.5,7.5 - parent: 82 - type: Transform -- uid: 967 - type: Catwalk - components: - - pos: 4.5,7.5 - parent: 82 - type: Transform -- uid: 968 - type: Catwalk - components: - - pos: 5.5,7.5 - parent: 82 - type: Transform -- uid: 969 - type: Catwalk - components: - - pos: 6.5,7.5 - parent: 82 - type: Transform -- uid: 970 - type: Catwalk - components: - - pos: 7.5,7.5 - parent: 82 - type: Transform -- uid: 971 - type: Catwalk - components: - - pos: 8.5,7.5 - parent: 82 - type: Transform -- uid: 972 - type: Catwalk - components: - - pos: 9.5,7.5 - parent: 82 - type: Transform -- uid: 973 - type: Catwalk - components: - - pos: 10.5,7.5 - parent: 82 - type: Transform -- uid: 974 - type: Catwalk - components: - - pos: 11.5,7.5 - parent: 82 - type: Transform -- uid: 975 - type: Catwalk - components: - - pos: 12.5,7.5 - parent: 82 - type: Transform -- uid: 976 - type: Catwalk - components: - - pos: 13.5,7.5 - parent: 82 - type: Transform -- uid: 977 - type: Catwalk - components: - - pos: 14.5,7.5 - parent: 82 - type: Transform -- uid: 978 - type: Catwalk - components: - - pos: 15.5,7.5 - parent: 82 - type: Transform -- uid: 979 - type: Catwalk - components: - - pos: 16.5,7.5 - parent: 82 - type: Transform -- uid: 980 - type: Catwalk - components: - - pos: 10.5,6.5 - parent: 82 - type: Transform -- uid: 981 - type: Catwalk - components: - - pos: 10.5,5.5 - parent: 82 - type: Transform -- uid: 982 - type: Catwalk - components: - - pos: 10.5,4.5 - parent: 82 - type: Transform -- uid: 983 - type: Catwalk - components: - - pos: 10.5,3.5 - parent: 82 - type: Transform -- uid: 984 - type: Catwalk - components: - - pos: 10.5,2.5 - parent: 82 - type: Transform -- uid: 985 - type: Catwalk - components: - - pos: 4.5,6.5 - parent: 82 - type: Transform -- uid: 986 - type: Catwalk - components: - - pos: 4.5,5.5 - parent: 82 - type: Transform -- uid: 987 - type: Catwalk - components: - - pos: 4.5,4.5 - parent: 82 - type: Transform -- uid: 988 - type: Catwalk - components: - - pos: 4.5,3.5 - parent: 82 - type: Transform -- uid: 989 - type: Catwalk - components: - - pos: 4.5,2.5 - parent: 82 - type: Transform -- uid: 990 - type: Catwalk - components: - - pos: -1.5,6.5 - parent: 82 - type: Transform -- uid: 991 - type: Catwalk - components: - - pos: -1.5,5.5 - parent: 82 - type: Transform -- uid: 992 - type: Catwalk - components: - - pos: -1.5,4.5 - parent: 82 - type: Transform -- uid: 993 - type: Catwalk - components: - - pos: -1.5,3.5 - parent: 82 - type: Transform -- uid: 994 - type: Catwalk - components: - - pos: -1.5,2.5 - parent: 82 - type: Transform -- uid: 995 - type: Catwalk - components: - - pos: 16.5,6.5 - parent: 82 - type: Transform -- uid: 996 - type: Catwalk - components: - - pos: 16.5,5.5 - parent: 82 - type: Transform -- uid: 997 - type: Catwalk - components: - - pos: 16.5,4.5 - parent: 82 - type: Transform -- uid: 998 - type: Catwalk - components: - - pos: 16.5,3.5 - parent: 82 - type: Transform -- uid: 999 - type: Catwalk - components: - - pos: 16.5,2.5 - parent: 82 - type: Transform -- uid: 1000 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -4.5,11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1001 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 19.5,10.5 - parent: 82 - type: Transform -- uid: 1002 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 20.5,11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1003 - type: AirlockExternalGlassAtmosphericsLocked - components: - - pos: -2.5,7.5 - parent: 82 - type: Transform -- uid: 1004 - type: AirlockExternalGlassAtmosphericsLocked - components: - - pos: -5.5,7.5 - parent: 82 - type: Transform -- uid: 1005 - type: AirlockExternalGlassAtmosphericsLocked - components: - - pos: 20.5,7.5 - parent: 82 - type: Transform -- uid: 1006 - type: AirlockExternalGlassAtmosphericsLocked - components: - - pos: 17.5,7.5 - parent: 82 - type: Transform -- uid: 1007 - type: Catwalk - components: - - pos: -4.5,13.5 - parent: 82 - type: Transform -- uid: 1008 - type: Grille - components: - - pos: 25.5,11.5 - parent: 82 - type: Transform -- uid: 1009 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 24.5,5.5 - parent: 82 - type: Transform -- uid: 1010 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 23.5,6.5 - parent: 82 - type: Transform -- uid: 1011 - type: WallSolid - components: - - pos: 23.5,11.5 - parent: 82 - type: Transform -- uid: 1012 - type: WallSolid - components: - - pos: 24.5,11.5 - parent: 82 - type: Transform -- uid: 1013 - type: ReinforcedWindow - components: - - pos: 30.5,7.5 - parent: 82 - type: Transform -- uid: 1014 - type: WallReinforced - components: - - pos: 38.5,9.5 - parent: 82 - type: Transform -- uid: 1015 - type: WallReinforced - components: - - pos: 34.5,10.5 - parent: 82 - type: Transform -- uid: 1016 - type: WallReinforced - components: - - pos: 8.5,-14.5 - parent: 82 - type: Transform -- uid: 1017 - type: ReinforcedWindow - components: - - pos: 28.5,5.5 - parent: 82 - type: Transform -- uid: 1018 - type: SheetGlass - components: - - pos: 46.707012,62.30493 - parent: 82 - type: Transform -- uid: 1019 - type: WallSolid - components: - - pos: 23.5,10.5 - parent: 82 - type: Transform -- uid: 1020 - type: WallReinforced - components: - - pos: 34.5,11.5 - parent: 82 - type: Transform -- uid: 1021 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 25.5,5.5 - parent: 82 - type: Transform -- uid: 1022 - type: Grille - components: - - pos: 28.5,5.5 - parent: 82 - type: Transform -- uid: 1023 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 26.5,5.5 - parent: 82 - type: Transform -- uid: 1024 - type: WallReinforced - components: - - pos: 30.5,6.5 - parent: 82 - type: Transform -- uid: 1025 - type: Grille - components: - - pos: 30.5,7.5 - parent: 82 - type: Transform -- uid: 1026 - type: WallReinforced - components: - - pos: 34.5,15.5 - parent: 82 - type: Transform -- uid: 1027 - type: WallSolid - components: - - pos: -39.5,-8.5 - parent: 82 - type: Transform -- uid: 1028 - type: BlastDoor - components: - - pos: 34.5,13.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -469043.84 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11588 - type: SignalReceiver -- uid: 1029 - type: WallSolid - components: - - pos: -15.5,-1.5 - parent: 82 - type: Transform -- uid: 1030 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-6.5 - parent: 82 - type: Transform -- uid: 1031 - type: WallSolid - components: - - pos: -6.5,-14.5 - parent: 82 - type: Transform -- uid: 1032 - type: WallSolid - components: - - pos: -7.5,-14.5 - parent: 82 - type: Transform -- uid: 1033 - type: WallSolid - components: - - pos: -8.5,-14.5 - parent: 82 - type: Transform -- uid: 1034 - type: WallSolid - components: - - pos: -9.5,-14.5 - parent: 82 - type: Transform -- uid: 1035 - type: WallSolid - components: - - pos: -10.5,-14.5 - parent: 82 - type: Transform -- uid: 1036 - type: HospitalCurtainsOpen - components: - - pos: 9.5,-18.5 - parent: 82 - type: Transform -- uid: 1037 - type: WallReinforced - components: - - pos: 34.5,18.5 - parent: 82 - type: Transform -- uid: 1038 - type: WallReinforced - components: - - pos: -4.5,28.5 - parent: 82 - type: Transform -- uid: 1039 - type: WallReinforced - components: - - pos: -3.5,28.5 - parent: 82 - type: Transform -- uid: 1040 - type: WallReinforced - components: - - pos: -2.5,28.5 - parent: 82 - type: Transform -- uid: 1041 - type: WallReinforced - components: - - pos: -1.5,28.5 - parent: 82 - type: Transform -- uid: 1042 - type: WallReinforced - components: - - pos: -0.5,28.5 - parent: 82 - type: Transform -- uid: 1043 - type: WallReinforced - components: - - pos: 0.5,28.5 - parent: 82 - type: Transform -- uid: 1044 - type: WallReinforced - components: - - pos: 1.5,28.5 - parent: 82 - type: Transform -- uid: 1045 - type: WallReinforced - components: - - pos: 2.5,28.5 - parent: 82 - type: Transform -- uid: 1046 - type: WallReinforced - components: - - pos: 3.5,28.5 - parent: 82 - type: Transform -- uid: 1047 - type: WallReinforced - components: - - pos: 4.5,28.5 - parent: 82 - type: Transform -- uid: 1048 - type: WallReinforced - components: - - pos: 5.5,28.5 - parent: 82 - type: Transform -- uid: 1049 - type: WallReinforced - components: - - pos: 6.5,28.5 - parent: 82 - type: Transform -- uid: 1050 - type: WallReinforced - components: - - pos: 7.5,28.5 - parent: 82 - type: Transform -- uid: 1051 - type: WallReinforced - components: - - pos: 8.5,28.5 - parent: 82 - type: Transform -- uid: 1052 - type: WallReinforced - components: - - pos: 9.5,28.5 - parent: 82 - type: Transform -- uid: 1053 - type: WallReinforced - components: - - pos: 10.5,28.5 - parent: 82 - type: Transform -- uid: 1054 - type: WallReinforced - components: - - pos: 11.5,28.5 - parent: 82 - type: Transform -- uid: 1055 - type: WallReinforced - components: - - pos: 12.5,28.5 - parent: 82 - type: Transform -- uid: 1056 - type: WallReinforced - components: - - pos: 13.5,28.5 - parent: 82 - type: Transform -- uid: 1057 - type: WallReinforced - components: - - pos: 14.5,28.5 - parent: 82 - type: Transform -- uid: 1058 - type: WallReinforced - components: - - pos: 15.5,28.5 - parent: 82 - type: Transform -- uid: 1059 - type: WallReinforced - components: - - pos: 16.5,28.5 - parent: 82 - type: Transform -- uid: 1060 - type: WallReinforced - components: - - pos: 17.5,28.5 - parent: 82 - type: Transform -- uid: 1061 - type: WallReinforced - components: - - pos: 18.5,28.5 - parent: 82 - type: Transform -- uid: 1062 - type: WallReinforced - components: - - pos: 19.5,28.5 - parent: 82 - type: Transform -- uid: 1063 - type: SignCargoDock - components: - - pos: 49.5,25.5 - parent: 82 - type: Transform -- uid: 1064 - type: WallReinforced - components: - - pos: 46.5,19.5 - parent: 82 - type: Transform -- uid: 1065 - type: ReinforcedWindow - components: - - pos: -25.5,-21.5 - parent: 82 - type: Transform -- uid: 1066 - type: HighSecCommandLocked - components: - - pos: -24.5,17.5 - parent: 82 - type: Transform -- uid: 1067 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 22.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1068 - type: Grille - components: - - pos: 30.5,10.5 - parent: 82 - type: Transform -- uid: 1069 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 30.5,11.5 - parent: 82 - type: Transform -- uid: 1070 - type: WallReinforced - components: - - pos: 23.5,18.5 - parent: 82 - type: Transform -- uid: 1071 - type: WallReinforced - components: - - pos: 24.5,18.5 - parent: 82 - type: Transform -- uid: 1072 - type: WallReinforced - components: - - pos: 25.5,18.5 - parent: 82 - type: Transform -- uid: 1073 - type: WallReinforced - components: - - pos: 26.5,18.5 - parent: 82 - type: Transform -- uid: 1074 - type: WallReinforced - components: - - pos: 27.5,18.5 - parent: 82 - type: Transform -- uid: 1075 - type: WallReinforced - components: - - pos: 28.5,18.5 - parent: 82 - type: Transform -- uid: 1076 - type: WallReinforced - components: - - pos: 6.5,-18.5 - parent: 82 - type: Transform -- uid: 1077 - type: WallReinforced - components: - - pos: 6.5,-17.5 - parent: 82 - type: Transform -- uid: 1078 - type: WallReinforced - components: - - pos: 6.5,-15.5 - parent: 82 - type: Transform -- uid: 1079 - type: WallReinforced - components: - - pos: 6.5,-14.5 - parent: 82 - type: Transform -- uid: 1080 - type: WallReinforced - components: - - pos: 7.5,-14.5 - parent: 82 - type: Transform -- uid: 1081 - type: CableHV - components: - - pos: 14.5,-21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1082 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-25.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1083 - type: WallSolid - components: - - pos: -24.5,-1.5 - parent: 82 - type: Transform -- uid: 1084 - type: TableWood - components: - - pos: 2.5,-16.5 - parent: 82 - type: Transform -- uid: 1085 - type: TableWood - components: - - pos: 3.5,-16.5 - parent: 82 - type: Transform -- uid: 1086 - type: TableWood - components: - - pos: 4.5,-16.5 - parent: 82 - type: Transform -- uid: 1087 - type: TableWood - components: - - pos: 4.5,-17.5 - parent: 82 - type: Transform -- uid: 1088 - type: TableWood - components: - - pos: 3.5,-17.5 - parent: 82 - type: Transform -- uid: 1089 - type: TableWood - components: - - pos: 2.5,-17.5 - parent: 82 - type: Transform -- uid: 1090 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1091 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1092 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 2.5,-18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1093 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 3.5,-18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1094 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 4.5,-18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1095 - type: WallSolid - components: - - pos: -11.5,-14.5 - parent: 82 - type: Transform -- uid: 1096 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1097 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1098 - type: PhoneInstrument - components: - - pos: 3.493454,-16.85247 - parent: 82 - type: Transform -- uid: 1099 - type: BoxFolderBlack - components: - - pos: 2.8545647,-17.36636 - parent: 82 - type: Transform -- uid: 1100 - type: BoxFolderYellow - components: - - pos: 4.437898,-17.324692 - parent: 82 - type: Transform -- uid: 1101 - type: Pen - components: - - pos: 3.0073419,-17.380249 - parent: 82 - type: Transform -- uid: 1102 - type: RubberStampDenied - components: - - pos: 3.2156754,-16.435804 - parent: 82 - type: Transform -- uid: 1103 - type: RubberStampApproved - components: - - pos: 3.6323419,-16.35247 - parent: 82 - type: Transform -- uid: 1104 - type: CigarGold - components: - - pos: 4.4795647,-16.560804 - parent: 82 - type: Transform -- uid: 1105 - type: AirCanister - components: - - pos: 29.5,17.5 - parent: 82 - type: Transform -- uid: 1106 - type: AirCanister - components: - - pos: 29.5,16.5 - parent: 82 - type: Transform -- uid: 1107 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-5.5 - parent: 82 - type: Transform -- uid: 1108 - type: OxygenCanister - components: - - pos: 28.5,17.5 - parent: 82 - type: Transform -- uid: 1109 - type: OxygenCanister - components: - - pos: 28.5,16.5 - parent: 82 - type: Transform -- uid: 1110 - type: WallReinforced - components: - - pos: -55.5,-2.5 - parent: 82 - type: Transform -- uid: 1111 - type: NitrogenCanister - components: - - pos: 27.5,17.5 - parent: 82 - type: Transform -- uid: 1112 - type: NitrogenCanister - components: - - pos: 27.5,16.5 - parent: 82 - type: Transform -- uid: 1113 - type: NitrogenCanister - components: - - pos: 27.5,15.5 - parent: 82 - type: Transform -- uid: 1114 - type: StorageCanister - components: - - pos: 24.5,17.5 - parent: 82 - type: Transform -- uid: 1115 - type: StorageCanister - components: - - pos: 24.5,16.5 - parent: 82 - type: Transform -- uid: 1116 - type: StorageCanister - components: - - pos: 24.5,15.5 - parent: 82 - type: Transform -- uid: 1117 - type: NitrousOxideCanister - components: - - pos: 26.5,16.5 - parent: 82 - type: Transform -- uid: 1118 - type: PlasmaCanister - components: - - pos: 26.5,17.5 - parent: 82 - type: Transform -- uid: 1119 - type: WaterVaporCanister - components: - - pos: 26.5,15.5 - parent: 82 - type: Transform -- uid: 1120 - type: CarbonDioxideCanister - components: - - pos: 25.5,17.5 - parent: 82 - type: Transform -- uid: 1121 - type: CarbonDioxideCanister - components: - - pos: 25.5,16.5 - parent: 82 - type: Transform -- uid: 1122 - type: Grille - components: - - pos: -50.5,0.5 - parent: 82 - type: Transform -- uid: 1123 - type: Grille - components: - - pos: 4.5,-19.5 - parent: 82 - type: Transform -- uid: 1124 - type: ReinforcedPlasmaWindow - components: - - pos: 4.5,-19.5 - parent: 82 - type: Transform -- uid: 1125 - type: ReinforcedPlasmaWindow - components: - - pos: 3.5,-19.5 - parent: 82 - type: Transform -- uid: 1126 - type: ReinforcedPlasmaWindow - components: - - pos: 2.5,-19.5 - parent: 82 - type: Transform -- uid: 1127 - type: CableApcExtension - components: - - pos: 16.5,-14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1128 - type: CableApcExtension - components: - - pos: 16.5,-15.5 - parent: 82 - type: Transform -- uid: 1129 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-25.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1130 - type: TableReinforced - components: - - pos: 27.5,5.5 - parent: 82 - type: Transform -- uid: 1131 - type: WallReinforced - components: - - pos: 21.5,1.5 - parent: 82 - type: Transform -- uid: 1132 - type: WallReinforced - components: - - pos: 29.5,18.5 - parent: 82 - type: Transform -- uid: 1133 - type: WallReinforced - components: - - pos: 30.5,5.5 - parent: 82 - type: Transform -- uid: 1134 - type: Grille - components: - - pos: 27.5,11.5 - parent: 82 - type: Transform -- uid: 1135 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 29.5,11.5 - parent: 82 - type: Transform -- uid: 1136 - type: WallSolid - components: - - pos: 34.5,8.5 - parent: 82 - type: Transform -- uid: 1137 - type: WallReinforced - components: - - pos: -56.5,-1.5 - parent: 82 - type: Transform -- uid: 1138 - type: WallSolid - components: - - pos: 34.5,6.5 - parent: 82 - type: Transform -- uid: 1139 - type: WallSolid - components: - - pos: 34.5,5.5 - parent: 82 - type: Transform -- uid: 1140 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 21.5,15.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1141 - type: LockerAtmosphericsFilled - components: - - pos: 24.5,10.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1142 - type: LockerAtmosphericsFilled - components: - - pos: 25.5,10.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1143 - type: LockerAtmosphericsFilled - components: - - pos: 26.5,10.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1144 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,17.5 - parent: 82 - type: Transform -- uid: 1145 - type: Table - components: - - pos: 26.5,6.5 - parent: 82 - type: Transform -- uid: 1146 - type: Table - components: - - pos: 26.5,7.5 - parent: 82 - type: Transform -- uid: 1147 - type: Rack - components: - - pos: 25.5,6.5 - parent: 82 - type: Transform -- uid: 1148 - type: WallReinforced - components: - - pos: 21.5,2.5 - parent: 82 - type: Transform -- uid: 1149 - type: PlasticFlapsAirtightClear - components: - - pos: 29.5,5.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1150 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 28.5,6.5 - parent: 82 - type: Transform -- uid: 1151 - type: WeldingFuelTankFull - components: - - pos: -8.5,10.5 - parent: 82 - type: Transform -- uid: 1152 - type: Table - components: - - pos: -8.5,8.5 - parent: 82 - type: Transform -- uid: 1153 - type: Table - components: - - pos: -8.5,7.5 - parent: 82 - type: Transform -- uid: 1154 - type: Rack - components: - - pos: -8.5,9.5 - parent: 82 - type: Transform -- uid: 1155 - type: WelderIndustrial - components: - - pos: -8.55374,9.601187 - parent: 82 - type: Transform -- uid: 1156 - type: NetProbeCartridge - components: - - pos: -8.383099,9.429077 - parent: 82 - type: Transform -- uid: 1157 - type: SheetSteel - components: - - pos: -8.5047035,8.53811 - parent: 82 - type: Transform -- uid: 1158 - type: SheetRGlass - components: - - pos: -8.5047035,8.183943 - parent: 82 - type: Transform -- uid: 1159 - type: PartRodMetal - components: - - pos: -8.48387,8.329777 - parent: 82 - type: Transform -- uid: 1160 - type: AirAlarmElectronics - components: - - pos: -8.6922035,7.454777 - parent: 82 - type: Transform - - tags: - - DroneUsable - type: Tag -- uid: 1161 - type: AirAlarmElectronics - components: - - pos: -8.5047035,7.683943 - parent: 82 - type: Transform - - tags: - - DroneUsable - type: Tag -- uid: 1162 - type: ThermomachineFreezerMachineCircuitBoard - components: - - pos: -8.3172035,7.392277 - parent: 82 - type: Transform -- uid: 1163 - type: GasPipeTJunction - components: - - pos: 37.5,20.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1164 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1165 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 23.5,8.5 - parent: 82 - type: Transform -- uid: 1166 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 23.5,9.5 - parent: 82 - type: Transform -- uid: 1167 - type: AirlockAtmosphericsLocked - components: - - pos: 28.5,11.5 - parent: 82 - type: Transform -- uid: 1168 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -22.5,-23.5 - parent: 82 - type: Transform -- uid: 1169 - type: WallSolid - components: - - pos: 23.5,38.5 - parent: 82 - type: Transform -- uid: 1170 - type: WallReinforced - components: - - pos: -55.5,2.5 - parent: 82 - type: Transform -- uid: 1171 - type: WallSolid - components: - - pos: 24.5,38.5 - parent: 82 - type: Transform -- uid: 1172 - type: WallSolid - components: - - pos: 30.5,29.5 - parent: 82 - type: Transform -- uid: 1173 - type: WallSolid - components: - - pos: 29.5,29.5 - parent: 82 - type: Transform -- uid: 1174 - type: WallSolid - components: - - pos: 28.5,29.5 - parent: 82 - type: Transform -- uid: 1175 - type: WallSolid - components: - - pos: 19.5,31.5 - parent: 82 - type: Transform -- uid: 1176 - type: WallSolid - components: - - pos: 25.5,29.5 - parent: 82 - type: Transform -- uid: 1177 - type: WallReinforced - components: - - pos: 23.5,2.5 - parent: 82 - type: Transform -- uid: 1178 - type: VendingMachineAtmosDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,10.5 - parent: 82 - type: Transform -- uid: 1179 - type: WallReinforced - components: - - pos: 21.5,-1.5 - parent: 82 - type: Transform -- uid: 1180 - type: ReinforcedWindow - components: - - pos: 30.5,10.5 - parent: 82 - type: Transform -- uid: 1181 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,12.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1182 - type: WallReinforced - components: - - pos: 21.5,0.5 - parent: 82 - type: Transform -- uid: 1183 - type: WallReinforced - components: - - pos: 22.5,2.5 - parent: 82 - type: Transform -- uid: 1184 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-28.5 - parent: 82 - type: Transform -- uid: 1185 - type: Firelock - components: - - pos: 43.5,31.5 - parent: 82 - type: Transform -- uid: 1186 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 46.5,-1.5 - parent: 82 - type: Transform -- uid: 1187 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 44.5,-1.5 - parent: 82 - type: Transform -- uid: 1188 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 45.5,-1.5 - parent: 82 - type: Transform -- uid: 1189 - type: WallSolid - components: - - pos: 20.5,4.5 - parent: 82 - type: Transform -- uid: 1190 - type: CableMV - components: - - pos: -34.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1191 - type: WallSolid - components: - - pos: 21.5,-5.5 - parent: 82 - type: Transform -- uid: 1192 - type: Table - components: - - pos: -38.5,-10.5 - parent: 82 - type: Transform -- uid: 1193 - type: Table - components: - - pos: -29.5,-12.5 - parent: 82 - type: Transform -- uid: 1194 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 21.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1195 - type: WallReinforced - components: - - pos: -2.5,-15.5 - parent: 82 - type: Transform -- uid: 1196 - type: WallReinforced - components: - - pos: -2.5,-14.5 - parent: 82 - type: Transform -- uid: 1197 - type: WallSolid - components: - - pos: 20.5,-1.5 - parent: 82 - type: Transform -- uid: 1198 - type: WallSolid - components: - - pos: 19.5,29.5 - parent: 82 - type: Transform -- uid: 1199 - type: WallReinforced - components: - - pos: -2.5,-17.5 - parent: 82 - type: Transform -- uid: 1200 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 27.5,-5.5 - parent: 82 - type: Transform -- uid: 1201 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 25.5,-5.5 - parent: 82 - type: Transform -- uid: 1202 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 29.5,-5.5 - parent: 82 - type: Transform -- uid: 1203 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 24.5,-5.5 - parent: 82 - type: Transform -- uid: 1204 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 22.5,-5.5 - parent: 82 - type: Transform -- uid: 1205 - type: WallReinforced - components: - - pos: -55.5,-1.5 - parent: 82 - type: Transform -- uid: 1206 - type: SmokingPipe - components: - - pos: 2.6852295,-16.479258 - parent: 82 - type: Transform -- uid: 1207 - type: TableCarpet - components: - - pos: 27.5,36.5 - parent: 82 - type: Transform -- uid: 1208 - type: SheetGlass - components: - - pos: 22.657394,-7.365735 - parent: 82 - type: Transform -- uid: 1209 - type: MaintenanceToolSpawner - components: - - pos: 24.5,-6.5 - parent: 82 - type: Transform -- uid: 1210 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 43.5,15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1211 - type: ReagentContainerMilkSoy - components: - - pos: -12.998632,23.692276 - parent: 82 - type: Transform -- uid: 1212 - type: ReagentContainerMilkSoy - components: - - pos: -12.798634,23.558945 - parent: 82 - type: Transform -- uid: 1213 - type: WallReinforced - components: - - pos: 34.5,37.5 - parent: 82 - type: Transform -- uid: 1214 - type: WallReinforced - components: - - pos: 34.5,38.5 - parent: 82 - type: Transform -- uid: 1215 - type: PortableScrubber - components: - - pos: -5.5,13.5 - parent: 82 - type: Transform -- uid: 1216 - type: PortableScrubber - components: - - pos: -5.5,14.5 - parent: 82 - type: Transform -- uid: 1217 - type: PortableScrubber - components: - - pos: -5.5,15.5 - parent: 82 - type: Transform -- uid: 1218 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1219 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1220 - type: GasPipeTJunction - components: - - pos: 26.5,9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1221 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1222 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1223 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1224 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1225 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 31.5,9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1226 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1227 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1228 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 31.5,12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1229 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 31.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1230 - type: GasPipeTJunction - components: - - pos: 28.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1231 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 33.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1232 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 32.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1233 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1234 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1235 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1236 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,6.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1237 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,7.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1238 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 33.5,8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1239 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1240 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1241 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1242 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1243 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 26.5,4.5 - parent: 82 - type: Transform -- uid: 1244 - type: GasPipeStraight - components: - - pos: 31.5,8.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1245 - type: GasPipeStraight - components: - - pos: 31.5,7.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1246 - type: GasPipeStraight - components: - - pos: 31.5,6.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1247 - type: GasPipeStraight - components: - - pos: 31.5,5.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1248 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1249 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1250 - type: WallSolid - components: - - pos: 7.5,35.5 - parent: 82 - type: Transform -- uid: 1251 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: -32.5,-16.5 - parent: 82 - type: Transform -- uid: 1252 - type: WallSolid - components: - - pos: -24.5,-0.5 - parent: 82 - type: Transform -- uid: 1253 - type: WallReinforced - components: - - pos: -29.5,-16.5 - parent: 82 - type: Transform -- uid: 1254 - type: Grille - components: - - pos: -29.5,-17.5 - parent: 82 - type: Transform -- uid: 1255 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -23.5,-23.5 - parent: 82 - type: Transform -- uid: 1256 - type: TableCarpet - components: - - pos: 26.5,35.5 - parent: 82 - type: Transform -- uid: 1257 - type: WallSolid - components: - - pos: 21.5,33.5 - parent: 82 - type: Transform -- uid: 1258 - type: WallSolid - components: - - pos: 7.5,37.5 - parent: 82 - type: Transform -- uid: 1259 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 28.5,3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1260 - type: GasVentScrubber - components: - - pos: 32.5,3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1261 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 27.5,8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1262 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 32.5,12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1263 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 26.5,8.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1264 - type: SubstationBasic - components: - - pos: 19.5,5.5 - parent: 82 - type: Transform -- uid: 1265 - type: WallSolid - components: - - pos: 7.5,36.5 - parent: 82 - type: Transform -- uid: 1266 - type: WallReinforced - components: - - pos: 19.5,44.5 - parent: 82 - type: Transform -- uid: 1267 - type: WallSolid - components: - - pos: 7.5,34.5 - parent: 82 - type: Transform -- uid: 1268 - type: WallSolid - components: - - pos: 7.5,33.5 - parent: 82 - type: Transform -- uid: 1269 - type: WallSolid - components: - - pos: 7.5,32.5 - parent: 82 - type: Transform -- uid: 1270 - type: WallSolid - components: - - pos: 8.5,32.5 - parent: 82 - type: Transform -- uid: 1271 - type: WallSolid - components: - - pos: 9.5,32.5 - parent: 82 - type: Transform -- uid: 1272 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 38.5,6.5 - parent: 82 - type: Transform -- uid: 1273 - type: WallSolid - components: - - pos: 11.5,32.5 - parent: 82 - type: Transform -- uid: 1274 - type: WallReinforced - components: - - pos: 19.5,42.5 - parent: 82 - type: Transform -- uid: 1275 - type: Grille - components: - - pos: -4.5,0.5 - parent: 82 - type: Transform -- uid: 1276 - type: ClothingHeadHatBeaverHat - components: - - pos: -16.273523,-16.322647 - parent: 82 - type: Transform -- uid: 1277 - type: MonkeyCubeWrapped - components: - - pos: -16.677195,-16.530981 - parent: 82 - type: Transform -- uid: 1278 - type: DrinkLean - components: - - flags: InContainer - type: MetaData - - parent: 25099 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 1279 - type: WallReinforced - components: - - pos: -4.5,4.5 - parent: 82 - type: Transform -- uid: 1280 - type: WallReinforced - components: - - pos: -5.5,4.5 - parent: 82 - type: Transform -- uid: 1281 - type: WallReinforced - components: - - pos: -8.5,3.5 - parent: 82 - type: Transform -- uid: 1282 - type: WallReinforced - components: - - pos: -6.5,3.5 - parent: 82 - type: Transform -- uid: 1283 - type: WallReinforced - components: - - pos: -5.5,3.5 - parent: 82 - type: Transform -- uid: 1284 - type: WallReinforced - components: - - pos: -9.5,3.5 - parent: 82 - type: Transform -- uid: 1285 - type: WallReinforced - components: - - pos: -10.5,3.5 - parent: 82 - type: Transform -- uid: 1286 - type: WallReinforced - components: - - pos: -13.5,3.5 - parent: 82 - type: Transform -- uid: 1287 - type: WallReinforced - components: - - pos: -12.5,3.5 - parent: 82 - type: Transform -- uid: 1288 - type: WallReinforced - components: - - pos: -11.5,3.5 - parent: 82 - type: Transform -- uid: 1289 - type: WallReinforced - components: - - pos: -13.5,2.5 - parent: 82 - type: Transform -- uid: 1290 - type: WallReinforced - components: - - pos: -13.5,1.5 - parent: 82 - type: Transform -- uid: 1291 - type: WallReinforced - components: - - pos: -13.5,0.5 - parent: 82 - type: Transform -- uid: 1292 - type: WallReinforced - components: - - pos: -13.5,-0.5 - parent: 82 - type: Transform -- uid: 1293 - type: WallReinforced - components: - - pos: -13.5,-1.5 - parent: 82 - type: Transform -- uid: 1294 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 48.5,24.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 25325 - Forward: - - port: Left - uid: 25325 - Off: - - port: Middle - uid: 25325 - type: SignalReceiver -- uid: 1295 - type: WallReinforced - components: - - pos: -11.5,-1.5 - parent: 82 - type: Transform -- uid: 1296 - type: WallReinforced - components: - - pos: -10.5,-1.5 - parent: 82 - type: Transform -- uid: 1297 - type: WallReinforced - components: - - pos: -9.5,-1.5 - parent: 82 - type: Transform -- uid: 1298 - type: WallReinforced - components: - - pos: -9.5,-0.5 - parent: 82 - type: Transform -- uid: 1299 - type: WallReinforced - components: - - pos: -9.5,0.5 - parent: 82 - type: Transform -- uid: 1300 - type: Grille - components: - - pos: -6.5,0.5 - parent: 82 - type: Transform -- uid: 1301 - type: Grille - components: - - pos: -7.5,0.5 - parent: 82 - type: Transform -- uid: 1302 - type: Grille - components: - - pos: -8.5,0.5 - parent: 82 - type: Transform -- uid: 1303 - type: ReinforcedWindow - components: - - pos: -8.5,0.5 - parent: 82 - type: Transform -- uid: 1304 - type: ReinforcedWindow - components: - - pos: -7.5,0.5 - parent: 82 - type: Transform -- uid: 1305 - type: ReinforcedWindow - components: - - pos: -6.5,0.5 - parent: 82 - type: Transform -- uid: 1306 - type: ReinforcedWindow - components: - - pos: -4.5,0.5 - parent: 82 - type: Transform -- uid: 1307 - type: WallReinforced - components: - - pos: 19.5,43.5 - parent: 82 - type: Transform -- uid: 1308 - type: WallReinforced - components: - - pos: -9.5,2.5 - parent: 82 - type: Transform -- uid: 1309 - type: WallSolid - components: - - pos: 5.5,32.5 - parent: 82 - type: Transform -- uid: 1310 - type: WallSolid - components: - - pos: 3.5,36.5 - parent: 82 - type: Transform -- uid: 1311 - type: WallSolid - components: - - pos: 4.5,36.5 - parent: 82 - type: Transform -- uid: 1312 - type: WallSolid - components: - - pos: 5.5,36.5 - parent: 82 - type: Transform -- uid: 1313 - type: WallSolid - components: - - pos: 2.5,32.5 - parent: 82 - type: Transform -- uid: 1314 - type: WallSolid - components: - - pos: 3.5,32.5 - parent: 82 - type: Transform -- uid: 1315 - type: WallSolid - components: - - pos: 4.5,32.5 - parent: 82 - type: Transform -- uid: 1316 - type: WallSolid - components: - - pos: 5.5,35.5 - parent: 82 - type: Transform -- uid: 1317 - type: WallSolid - components: - - pos: 24.5,41.5 - parent: 82 - type: Transform -- uid: 1318 - type: WallSolid - components: - - pos: -11.5,6.5 - parent: 82 - type: Transform -- uid: 1319 - type: WallSolid - components: - - pos: -12.5,6.5 - parent: 82 - type: Transform -- uid: 1320 - type: WallSolid - components: - - pos: -12.5,7.5 - parent: 82 - type: Transform -- uid: 1321 - type: WallSolid - components: - - pos: -12.5,8.5 - parent: 82 - type: Transform -- uid: 1322 - type: WallSolid - components: - - pos: -12.5,9.5 - parent: 82 - type: Transform -- uid: 1323 - type: WallSolid - components: - - pos: -12.5,10.5 - parent: 82 - type: Transform -- uid: 1324 - type: WallSolid - components: - - pos: -12.5,11.5 - parent: 82 - type: Transform -- uid: 1325 - type: WallSolid - components: - - pos: -12.5,12.5 - parent: 82 - type: Transform -- uid: 1326 - type: GasPipeStraight - components: - - pos: -4.5,-27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1327 - type: WallSolid - components: - - pos: -11.5,13.5 - parent: 82 - type: Transform -- uid: 1328 - type: WallSolid - components: - - pos: -8.5,20.5 - parent: 82 - type: Transform -- uid: 1329 - type: WallSolid - components: - - pos: -7.5,20.5 - parent: 82 - type: Transform -- uid: 1330 - type: WallSolid - components: - - pos: -6.5,20.5 - parent: 82 - type: Transform -- uid: 1331 - type: WallSolid - components: - - pos: -6.5,21.5 - parent: 82 - type: Transform -- uid: 1332 - type: WallSolid - components: - - pos: -10.5,20.5 - parent: 82 - type: Transform -- uid: 1333 - type: WallSolid - components: - - pos: -6.5,23.5 - parent: 82 - type: Transform -- uid: 1334 - type: WallSolid - components: - - pos: -6.5,24.5 - parent: 82 - type: Transform -- uid: 1335 - type: WallSolid - components: - - pos: -7.5,24.5 - parent: 82 - type: Transform -- uid: 1336 - type: WallSolid - components: - - pos: -7.5,25.5 - parent: 82 - type: Transform -- uid: 1337 - type: WallSolid - components: - - pos: -7.5,26.5 - parent: 82 - type: Transform -- uid: 1338 - type: WallSolid - components: - - pos: -7.5,27.5 - parent: 82 - type: Transform -- uid: 1339 - type: WallSolid - components: - - pos: -7.5,28.5 - parent: 82 - type: Transform -- uid: 1340 - type: WallSolid - components: - - pos: -6.5,28.5 - parent: 82 - type: Transform -- uid: 1341 - type: WallSolid - components: - - pos: -11.5,20.5 - parent: 82 - type: Transform -- uid: 1342 - type: TableCarpet - components: - - pos: 27.5,35.5 - parent: 82 - type: Transform -- uid: 1343 - type: Grille - components: - - pos: 2.5,-12.5 - parent: 82 - type: Transform -- uid: 1344 - type: Grille - components: - - pos: 1.5,-12.5 - parent: 82 - type: Transform -- uid: 1345 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1346 - type: WallSolid - components: - - pos: -13.5,6.5 - parent: 82 - type: Transform -- uid: 1347 - type: WallSolid - components: - - pos: -14.5,6.5 - parent: 82 - type: Transform -- uid: 1348 - type: WallSolid - components: - - pos: -15.5,6.5 - parent: 82 - type: Transform -- uid: 1349 - type: WallSolid - components: - - pos: 5.5,33.5 - parent: 82 - type: Transform -- uid: 1350 - type: WallSolid - components: - - pos: -13.5,12.5 - parent: 82 - type: Transform -- uid: 1351 - type: WallSolid - components: - - pos: -14.5,12.5 - parent: 82 - type: Transform -- uid: 1352 - type: WallSolid - components: - - pos: -15.5,12.5 - parent: 82 - type: Transform -- uid: 1353 - type: WallSolid - components: - - pos: -8.5,28.5 - parent: 82 - type: Transform -- uid: 1354 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-4.5 - parent: 82 - type: Transform -- uid: 1355 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-5.5 - parent: 82 - type: Transform -- uid: 1356 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-78.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1357 - type: WallSolid - components: - - pos: 19.5,48.5 - parent: 82 - type: Transform -- uid: 1358 - type: ReinforcedWindow - components: - - pos: -27.5,-19.5 - parent: 82 - type: Transform -- uid: 1359 - type: Grille - components: - - pos: 26.5,39.5 - parent: 82 - type: Transform -- uid: 1360 - type: WallSolid - components: - - pos: -11.5,28.5 - parent: 82 - type: Transform -- uid: 1361 - type: WallSolid - components: - - pos: -10.5,28.5 - parent: 82 - type: Transform -- uid: 1362 - type: WallSolid - components: - - pos: 35.5,17.5 - parent: 82 - type: Transform -- uid: 1363 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 28.5,8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1364 - type: WallReinforced - components: - - pos: 34.5,16.5 - parent: 82 - type: Transform -- uid: 1365 - type: Grille - components: - - pos: 34.5,23.5 - parent: 82 - type: Transform -- uid: 1366 - type: WallReinforced - components: - - pos: 34.5,17.5 - parent: 82 - type: Transform -- uid: 1367 - type: WallReinforced - components: - - pos: 34.5,21.5 - parent: 82 - type: Transform -- uid: 1368 - type: WallSolid - components: - - pos: 40.5,16.5 - parent: 82 - type: Transform -- uid: 1369 - type: WallSolid - components: - - pos: 36.5,17.5 - parent: 82 - type: Transform -- uid: 1370 - type: WallSolid - components: - - pos: 37.5,17.5 - parent: 82 - type: Transform -- uid: 1371 - type: WallSolid - components: - - pos: 38.5,17.5 - parent: 82 - type: Transform -- uid: 1372 - type: WallSolid - components: - - pos: 39.5,17.5 - parent: 82 - type: Transform -- uid: 1373 - type: WallSolid - components: - - pos: 40.5,17.5 - parent: 82 - type: Transform -- uid: 1374 - type: WallSolid - components: - - pos: 39.5,18.5 - parent: 82 - type: Transform -- uid: 1375 - type: WallSolid - components: - - pos: 39.5,21.5 - parent: 82 - type: Transform -- uid: 1376 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -65.5,58.5 - parent: 82 - type: Transform -- uid: 1377 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1378 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 43.5,18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1379 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1380 - type: WallSolid - components: - - pos: 39.5,22.5 - parent: 82 - type: Transform -- uid: 1381 - type: WallSolid - components: - - pos: 40.5,22.5 - parent: 82 - type: Transform -- uid: 1382 - type: WallReinforced - components: - - pos: 34.5,22.5 - parent: 82 - type: Transform -- uid: 1383 - type: WallReinforced - components: - - pos: 37.5,9.5 - parent: 82 - type: Transform -- uid: 1384 - type: WallReinforced - components: - - pos: 36.5,9.5 - parent: 82 - type: Transform -- uid: 1385 - type: WallReinforced - components: - - pos: 35.5,9.5 - parent: 82 - type: Transform -- uid: 1386 - type: WallReinforced - components: - - pos: 34.5,9.5 - parent: 82 - type: Transform -- uid: 1387 - type: WallReinforced - components: - - pos: 39.5,9.5 - parent: 82 - type: Transform -- uid: 1388 - type: WallReinforced - components: - - pos: 40.5,11.5 - parent: 82 - type: Transform -- uid: 1389 - type: WallReinforced - components: - - pos: 40.5,10.5 - parent: 82 - type: Transform -- uid: 1390 - type: WallSolid - components: - - pos: 40.5,15.5 - parent: 82 - type: Transform -- uid: 1391 - type: WallSolid - components: - - pos: -26.5,-9.5 - parent: 82 - type: Transform -- uid: 1392 - type: Catwalk - components: - - pos: -49.5,53.5 - parent: 82 - type: Transform -- uid: 1393 - type: Grille - components: - - pos: 34.5,26.5 - parent: 82 - type: Transform -- uid: 1394 - type: Grille - components: - - pos: 34.5,27.5 - parent: 82 - type: Transform -- uid: 1395 - type: Grille - components: - - pos: 34.5,30.5 - parent: 82 - type: Transform -- uid: 1396 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 43.5,19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1397 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1398 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1399 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1400 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1401 - type: WallSolid - components: - - pos: 39.5,31.5 - parent: 82 - type: Transform -- uid: 1402 - type: WallSolid - components: - - pos: 40.5,31.5 - parent: 82 - type: Transform -- uid: 1403 - type: CableApcExtension - components: - - pos: 26.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1404 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: 45.5,31.5 - parent: 82 - type: Transform -- uid: 1405 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,23.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1406 - type: WallReinforced - components: - - pos: 40.5,9.5 - parent: 82 - type: Transform -- uid: 1407 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 34.5,42.5 - parent: 82 - type: Transform -- uid: 1408 - type: WallReinforced - components: - - pos: 41.5,11.5 - parent: 82 - type: Transform -- uid: 1409 - type: WallReinforced - components: - - pos: 44.5,11.5 - parent: 82 - type: Transform -- uid: 1410 - type: WallReinforced - components: - - pos: 43.5,11.5 - parent: 82 - type: Transform -- uid: 1411 - type: WallReinforced - components: - - pos: 43.5,10.5 - parent: 82 - type: Transform -- uid: 1412 - type: CableApcExtension - components: - - pos: 16.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1413 - type: WallReinforced - components: - - pos: 48.5,11.5 - parent: 82 - type: Transform -- uid: 1414 - type: Grille - components: - - pos: 48.5,14.5 - parent: 82 - type: Transform -- uid: 1415 - type: Grille - components: - - pos: 48.5,13.5 - parent: 82 - type: Transform -- uid: 1416 - type: Grille - components: - - pos: 48.5,12.5 - parent: 82 - type: Transform -- uid: 1417 - type: WallReinforced - components: - - pos: 48.5,15.5 - parent: 82 - type: Transform -- uid: 1418 - type: WallReinforced - components: - - pos: 48.5,16.5 - parent: 82 - type: Transform -- uid: 1419 - type: WallReinforced - components: - - pos: 48.5,17.5 - parent: 82 - type: Transform -- uid: 1420 - type: WallReinforced - components: - - pos: 48.5,18.5 - parent: 82 - type: Transform -- uid: 1421 - type: Grille - components: - - pos: 48.5,22.5 - parent: 82 - type: Transform -- uid: 1422 - type: WallReinforced - components: - - pos: 48.5,19.5 - parent: 82 - type: Transform -- uid: 1423 - type: WallReinforced - components: - - pos: 49.5,19.5 - parent: 82 - type: Transform -- uid: 1424 - type: BlastDoor - components: - - pos: 49.5,20.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25322 - type: SignalReceiver -- uid: 1425 - type: BlastDoor - components: - - pos: 49.5,24.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25324 - type: SignalReceiver -- uid: 1426 - type: WallReinforced - components: - - pos: 49.5,25.5 - parent: 82 - type: Transform -- uid: 1427 - type: WallReinforced - components: - - pos: 48.5,25.5 - parent: 82 - type: Transform -- uid: 1428 - type: WallReinforced - components: - - pos: 48.5,26.5 - parent: 82 - type: Transform -- uid: 1429 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 48.5,29.5 - parent: 82 - type: Transform -- uid: 1430 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 48.5,28.5 - parent: 82 - type: Transform -- uid: 1431 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 48.5,27.5 - parent: 82 - type: Transform -- uid: 1432 - type: WallReinforced - components: - - pos: 48.5,30.5 - parent: 82 - type: Transform -- uid: 1433 - type: WallReinforced - components: - - pos: 48.5,31.5 - parent: 82 - type: Transform -- uid: 1434 - type: Grille - components: - - pos: 44.5,14.5 - parent: 82 - type: Transform -- uid: 1435 - type: Grille - components: - - pos: 44.5,13.5 - parent: 82 - type: Transform -- uid: 1436 - type: Grille - components: - - pos: 44.5,12.5 - parent: 82 - type: Transform -- uid: 1437 - type: WallSolid - components: - - pos: 44.5,15.5 - parent: 82 - type: Transform -- uid: 1438 - type: WallSolid - components: - - pos: 45.5,15.5 - parent: 82 - type: Transform -- uid: 1439 - type: WallSolid - components: - - pos: 45.5,16.5 - parent: 82 - type: Transform -- uid: 1440 - type: WallSolid - components: - - pos: 45.5,17.5 - parent: 82 - type: Transform -- uid: 1441 - type: WallSolid - components: - - pos: 46.5,17.5 - parent: 82 - type: Transform -- uid: 1442 - type: WallSolid - components: - - pos: -9.5,28.5 - parent: 82 - type: Transform -- uid: 1443 - type: Window - components: - - pos: 44.5,14.5 - parent: 82 - type: Transform -- uid: 1444 - type: Window - components: - - pos: 44.5,13.5 - parent: 82 - type: Transform -- uid: 1445 - type: Window - components: - - pos: 44.5,12.5 - parent: 82 - type: Transform -- uid: 1446 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,24.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1447 - type: WallReinforced - components: - - pos: -56.5,2.5 - parent: 82 - type: Transform -- uid: 1448 - type: WallSolid - components: - - pos: -50.5,-0.5 - parent: 82 - type: Transform -- uid: 1449 - type: WallSolid - components: - - pos: -50.5,2.5 - parent: 82 - type: Transform -- uid: 1450 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -50.5,5.5 - parent: 82 - type: Transform -- uid: 1451 - type: GasPipeTJunction - components: - - pos: -6.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1452 - type: Grille - components: - - pos: -52.5,3.5 - parent: 82 - type: Transform -- uid: 1453 - type: Grille - components: - - pos: -53.5,3.5 - parent: 82 - type: Transform -- uid: 1454 - type: Grille - components: - - pos: -54.5,3.5 - parent: 82 - type: Transform -- uid: 1455 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 49.5,24.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 25325 - Forward: - - port: Left - uid: 25325 - Off: - - port: Middle - uid: 25325 - type: SignalReceiver -- uid: 1456 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 47.5,24.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 25325 - Forward: - - port: Left - uid: 25325 - Off: - - port: Middle - uid: 25325 - type: SignalReceiver -- uid: 1457 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 46.5,24.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 25325 - Forward: - - port: Left - uid: 25325 - Off: - - port: Middle - uid: 25325 - type: SignalReceiver -- uid: 1458 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 45.5,24.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 25325 - Forward: - - port: Left - uid: 25325 - Off: - - port: Middle - uid: 25325 - type: SignalReceiver -- uid: 1459 - type: WallReinforced - components: - - pos: 34.5,1.5 - parent: 82 - type: Transform -- uid: 1460 - type: ClothingOuterApronChef - components: - - pos: -36.492474,-6.500478 - parent: 82 - type: Transform -- uid: 1461 - type: WallSolid - components: - - pos: -11.5,-18.5 - parent: 82 - type: Transform -- uid: 1462 - type: WallSolid - components: - - pos: -6.5,-19.5 - parent: 82 - type: Transform -- uid: 1463 - type: WallSolid - components: - - pos: -11.5,-16.5 - parent: 82 - type: Transform -- uid: 1464 - type: WallSolid - components: - - pos: -11.5,-15.5 - parent: 82 - type: Transform -- uid: 1465 - type: WallSolid - components: - - pos: -6.5,-17.5 - parent: 82 - type: Transform -- uid: 1466 - type: WallSolid - components: - - pos: -6.5,-18.5 - parent: 82 - type: Transform -- uid: 1467 - type: WallSolid - components: - - pos: -8.5,-20.5 - parent: 82 - type: Transform -- uid: 1468 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-6.5 - parent: 82 - type: Transform -- uid: 1469 - type: Grille - components: - - pos: 33.5,1.5 - parent: 82 - type: Transform -- uid: 1470 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 45.5,20.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 25326 - Forward: - - port: Left - uid: 25326 - Off: - - port: Middle - uid: 25326 - type: SignalReceiver -- uid: 1471 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 46.5,20.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 25326 - Forward: - - port: Left - uid: 25326 - Off: - - port: Middle - uid: 25326 - type: SignalReceiver -- uid: 1472 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 47.5,20.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 25326 - Forward: - - port: Left - uid: 25326 - Off: - - port: Middle - uid: 25326 - type: SignalReceiver -- uid: 1473 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 48.5,20.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 25326 - Forward: - - port: Left - uid: 25326 - Off: - - port: Middle - uid: 25326 - type: SignalReceiver -- uid: 1474 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 49.5,20.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 25326 - Forward: - - port: Left - uid: 25326 - Off: - - port: Middle - uid: 25326 - type: SignalReceiver -- uid: 1475 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 42.5,31.5 - parent: 82 - type: Transform -- uid: 1476 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 41.5,31.5 - parent: 82 - type: Transform -- uid: 1477 - type: Grille - components: - - pos: 32.5,1.5 - parent: 82 - type: Transform -- uid: 1478 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-25.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1479 - type: Grille - components: - - pos: 31.5,1.5 - parent: 82 - type: Transform -- uid: 1480 - type: Grille - components: - - pos: 30.5,-1.5 - parent: 82 - type: Transform -- uid: 1481 - type: Grille - components: - - pos: 30.5,-0.5 - parent: 82 - type: Transform -- uid: 1482 - type: Grille - components: - - pos: 30.5,0.5 - parent: 82 - type: Transform -- uid: 1483 - type: WallReinforced - components: - - pos: 30.5,1.5 - parent: 82 - type: Transform -- uid: 1484 - type: WallSolid - components: - - pos: -14.5,22.5 - parent: 82 - type: Transform -- uid: 1485 - type: WallSolid - components: - - pos: -13.5,22.5 - parent: 82 - type: Transform -- uid: 1486 - type: WallSolid - components: - - pos: -12.5,22.5 - parent: 82 - type: Transform -- uid: 1487 - type: WallSolid - components: - - pos: -15.5,22.5 - parent: 82 - type: Transform -- uid: 1488 - type: Window - components: - - pos: -16.5,28.5 - parent: 82 - type: Transform -- uid: 1489 - type: AirAlarm - components: - - pos: 7.5,-22.5 - parent: 82 - type: Transform - - devices: - - 14567 - - 14576 - - 13884 - - 13885 - - 10993 - - 14600 - - 22513 - - 22625 - - 22620 - - 22597 - - 22598 - - 22596 - type: DeviceList -- uid: 1490 - type: AirSensor - components: - - pos: -5.5,-30.5 - parent: 82 - type: Transform -- uid: 1491 - type: WallSolid - components: - - pos: -20.5,-0.5 - parent: 82 - type: Transform -- uid: 1492 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 47.5,31.5 - parent: 82 - type: Transform -- uid: 1493 - type: CableApcExtension - components: - - pos: 14.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1494 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 48.5,32.5 - parent: 82 - type: Transform -- uid: 1495 - type: Window - components: - - pos: -18.5,5.5 - parent: 82 - type: Transform -- uid: 1496 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 46.5,31.5 - parent: 82 - type: Transform -- uid: 1497 - type: WallSolid - components: - - pos: 44.5,40.5 - parent: 82 - type: Transform -- uid: 1498 - type: WallReinforced - components: - - pos: 38.5,35.5 - parent: 82 - type: Transform -- uid: 1499 - type: WallReinforced - components: - - pos: 37.5,35.5 - parent: 82 - type: Transform -- uid: 1500 - type: WallReinforced - components: - - pos: 36.5,35.5 - parent: 82 - type: Transform -- uid: 1501 - type: WallReinforced - components: - - pos: 35.5,35.5 - parent: 82 - type: Transform -- uid: 1502 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 39.5,35.5 - parent: 82 - type: Transform -- uid: 1503 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 40.5,35.5 - parent: 82 - type: Transform -- uid: 1504 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,-6.5 - parent: 82 - type: Transform -- uid: 1505 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,-7.5 - parent: 82 - type: Transform -- uid: 1506 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,-8.5 - parent: 82 - type: Transform -- uid: 1507 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,-9.5 - parent: 82 - type: Transform -- uid: 1508 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,-10.5 - parent: 82 - type: Transform -- uid: 1509 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,-11.5 - parent: 82 - type: Transform -- uid: 1510 - type: Window - components: - - pos: -19.5,5.5 - parent: 82 - type: Transform -- uid: 1511 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,-13.5 - parent: 82 - type: Transform -- uid: 1512 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 35.5,5.5 - parent: 82 - type: Transform -- uid: 1513 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 36.5,5.5 - parent: 82 - type: Transform -- uid: 1514 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 34.5,41.5 - parent: 82 - type: Transform -- uid: 1515 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 39.5,5.5 - parent: 82 - type: Transform -- uid: 1516 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 41.5,6.5 - parent: 82 - type: Transform -- uid: 1517 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 40.5,6.5 - parent: 82 - type: Transform -- uid: 1518 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 37.5,6.5 - parent: 82 - type: Transform -- uid: 1519 - type: WallReinforced - components: - - pos: -55.5,3.5 - parent: 82 - type: Transform -- uid: 1520 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 21.5,-79.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1521 - type: WallSolid - components: - - pos: -49.5,-0.5 - parent: 82 - type: Transform -- uid: 1522 - type: WallSolid - components: - - pos: -17.5,0.5 - parent: 82 - type: Transform -- uid: 1523 - type: AirlockServiceLocked - components: - - pos: -17.5,4.5 - parent: 82 - type: Transform -- uid: 1524 - type: WallSolid - components: - - pos: -17.5,5.5 - parent: 82 - type: Transform -- uid: 1525 - type: Grille - components: - - pos: -18.5,5.5 - parent: 82 - type: Transform -- uid: 1526 - type: Grille - components: - - pos: -19.5,5.5 - parent: 82 - type: Transform -- uid: 1527 - type: Window - components: - - pos: -19.5,-0.5 - parent: 82 - type: Transform -- uid: 1528 - type: Window - components: - - pos: -18.5,-0.5 - parent: 82 - type: Transform -- uid: 1529 - type: WallSolid - components: - - pos: 39.5,25.5 - parent: 82 - type: Transform -- uid: 1530 - type: WallSolid - components: - - pos: 40.5,25.5 - parent: 82 - type: Transform -- uid: 1531 - type: WallSolid - components: - - pos: 41.5,25.5 - parent: 82 - type: Transform -- uid: 1532 - type: BookEscalationSecurity - components: - - pos: 60.669884,-1.3675354 - parent: 82 - type: Transform -- uid: 1533 - type: WallSolid - components: - - pos: -6.5,-20.5 - parent: 82 - type: Transform -- uid: 1534 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -6.5,-5.5 - parent: 82 - type: Transform -- uid: 1535 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -6.5,-6.5 - parent: 82 - type: Transform -- uid: 1536 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -6.5,-7.5 - parent: 82 - type: Transform -- uid: 1537 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -6.5,-8.5 - parent: 82 - type: Transform -- uid: 1538 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -6.5,-9.5 - parent: 82 - type: Transform -- uid: 1539 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -6.5,-10.5 - parent: 82 - type: Transform -- uid: 1540 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -6.5,-11.5 - parent: 82 - type: Transform -- uid: 1541 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -6.5,-12.5 - parent: 82 - type: Transform -- uid: 1542 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 47.5,8.5 - parent: 82 - type: Transform -- uid: 1543 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 46.5,8.5 - parent: 82 - type: Transform -- uid: 1544 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 45.5,8.5 - parent: 82 - type: Transform -- uid: 1545 - type: Grille - components: - - pos: -56.5,-0.5 - parent: 82 - type: Transform -- uid: 1546 - type: Grille - components: - - pos: 51.5,33.5 - parent: 82 - type: Transform -- uid: 1547 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-24.5 - parent: 82 - type: Transform -- uid: 1548 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 36.5,1.5 - parent: 82 - type: Transform -- uid: 1549 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: 44.5,31.5 - parent: 82 - type: Transform -- uid: 1550 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 41.5,35.5 - parent: 82 - type: Transform -- uid: 1551 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 41.5,36.5 - parent: 82 - type: Transform -- uid: 1552 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 41.5,37.5 - parent: 82 - type: Transform -- uid: 1553 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 41.5,38.5 - parent: 82 - type: Transform -- uid: 1554 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 42.5,38.5 - parent: 82 - type: Transform -- uid: 1555 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 43.5,38.5 - parent: 82 - type: Transform -- uid: 1556 - type: Grille - components: - - pos: -56.5,0.5 - parent: 82 - type: Transform -- uid: 1557 - type: Grille - components: - - pos: -56.5,1.5 - parent: 82 - type: Transform -- uid: 1558 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 47.5,38.5 - parent: 82 - type: Transform -- uid: 1559 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 48.5,38.5 - parent: 82 - type: Transform -- uid: 1560 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 48.5,37.5 - parent: 82 - type: Transform -- uid: 1561 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 48.5,36.5 - parent: 82 - type: Transform -- uid: 1562 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-1.5 - parent: 82 - type: Transform -- uid: 1563 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,19.5 - parent: 82 - type: Transform -- uid: 1564 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,21.5 - parent: 82 - type: Transform -- uid: 1565 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 25.5,21.5 - parent: 82 - type: Transform -- uid: 1566 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 26.5,21.5 - parent: 82 - type: Transform -- uid: 1567 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 27.5,21.5 - parent: 82 - type: Transform -- uid: 1568 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 28.5,21.5 - parent: 82 - type: Transform -- uid: 1569 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 29.5,21.5 - parent: 82 - type: Transform -- uid: 1570 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,21.5 - parent: 82 - type: Transform -- uid: 1571 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,22.5 - parent: 82 - type: Transform -- uid: 1572 - type: PoweredSmallLight - components: - - pos: 58.5,-36.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1573 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 66.5,-22.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1574 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 39.5,6.5 - parent: 82 - type: Transform -- uid: 1575 - type: FirelockGlass - components: - - pos: 47.5,-13.5 - parent: 82 - type: Transform -- uid: 1576 - type: FirelockGlass - components: - - pos: 47.5,-14.5 - parent: 82 - type: Transform -- uid: 1577 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,28.5 - parent: 82 - type: Transform -- uid: 1578 - type: WallReinforced - components: - - pos: 12.5,34.5 - parent: 82 - type: Transform -- uid: 1579 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,25.5 - parent: 82 - type: Transform -- uid: 1580 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 22.5,25.5 - parent: 82 - type: Transform -- uid: 1581 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,25.5 - parent: 82 - type: Transform -- uid: 1582 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,25.5 - parent: 82 - type: Transform -- uid: 1583 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,24.5 - parent: 82 - type: Transform -- uid: 1584 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,23.5 - parent: 82 - type: Transform -- uid: 1585 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-13.5 - parent: 82 - type: Transform -- uid: 1586 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,26.5 - parent: 82 - type: Transform -- uid: 1587 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,28.5 - parent: 82 - type: Transform -- uid: 1588 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,27.5 - parent: 82 - type: Transform -- uid: 1589 - type: WallReinforced - components: - - pos: 19.5,33.5 - parent: 82 - type: Transform -- uid: 1590 - type: WallReinforced - components: - - pos: 19.5,32.5 - parent: 82 - type: Transform -- uid: 1591 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -25.5,-23.5 - parent: 82 - type: Transform -- uid: 1592 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 25.5,28.5 - parent: 82 - type: Transform -- uid: 1593 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,28.5 - parent: 82 - type: Transform -- uid: 1594 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,28.5 - parent: 82 - type: Transform -- uid: 1595 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 22.5,28.5 - parent: 82 - type: Transform -- uid: 1596 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,32.5 - parent: 82 - type: Transform -- uid: 1597 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,33.5 - parent: 82 - type: Transform -- uid: 1598 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,34.5 - parent: 82 - type: Transform -- uid: 1599 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,35.5 - parent: 82 - type: Transform -- uid: 1600 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 29.5,32.5 - parent: 82 - type: Transform -- uid: 1601 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 28.5,32.5 - parent: 82 - type: Transform -- uid: 1602 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 27.5,32.5 - parent: 82 - type: Transform -- uid: 1603 - type: WallSolid - components: - - pos: 9.5,42.5 - parent: 82 - type: Transform -- uid: 1604 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 25.5,32.5 - parent: 82 - type: Transform -- uid: 1605 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,32.5 - parent: 82 - type: Transform -- uid: 1606 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,32.5 - parent: 82 - type: Transform -- uid: 1607 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 22.5,32.5 - parent: 82 - type: Transform -- uid: 1608 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,32.5 - parent: 82 - type: Transform -- uid: 1609 - type: WallSolid - components: - - pos: 30.5,31.5 - parent: 82 - type: Transform -- uid: 1610 - type: WallReinforced - components: - - pos: 12.5,35.5 - parent: 82 - type: Transform -- uid: 1611 - type: WallReinforced - components: - - pos: 13.5,32.5 - parent: 82 - type: Transform -- uid: 1612 - type: WallReinforced - components: - - pos: 14.5,32.5 - parent: 82 - type: Transform -- uid: 1613 - type: Grille - components: - - pos: 17.5,32.5 - parent: 82 - type: Transform -- uid: 1614 - type: WallReinforced - components: - - pos: 12.5,32.5 - parent: 82 - type: Transform -- uid: 1615 - type: WallReinforced - components: - - pos: 12.5,33.5 - parent: 82 - type: Transform -- uid: 1616 - type: WallSolid - components: - - pos: 27.5,29.5 - parent: 82 - type: Transform -- uid: 1617 - type: ButchCleaver - components: - - pos: -29.62266,-12.477288 - parent: 82 - type: Transform -- uid: 1618 - type: WallSolid - components: - - pos: 26.5,22.5 - parent: 82 - type: Transform -- uid: 1619 - type: WallSolid - components: - - pos: 26.5,23.5 - parent: 82 - type: Transform -- uid: 1620 - type: WallSolid - components: - - pos: 25.5,23.5 - parent: 82 - type: Transform -- uid: 1621 - type: TableReinforced - components: - - pos: -19.5,-16.5 - parent: 82 - type: Transform -- uid: 1622 - type: BarSign - components: - - pos: -24.5,-5.5 - parent: 82 - type: Transform -- uid: 1623 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -25.5,-23.5 - parent: 82 - type: Transform -- uid: 1624 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -24.5,-23.5 - parent: 82 - type: Transform -- uid: 1625 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -23.5,-23.5 - parent: 82 - type: Transform -- uid: 1626 - type: WallReinforced - components: - - pos: 51.5,32.5 - parent: 82 - type: Transform -- uid: 1627 - type: WallSolid - components: - - pos: 43.5,40.5 - parent: 82 - type: Transform -- uid: 1628 - type: WallReinforced - components: - - pos: 50.5,32.5 - parent: 82 - type: Transform -- uid: 1629 - type: WallReinforced - components: - - pos: 49.5,32.5 - parent: 82 - type: Transform -- uid: 1630 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 35.5,1.5 - parent: 82 - type: Transform -- uid: 1631 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-0.5 - parent: 82 - type: Transform -- uid: 1632 - type: WallReinforced - components: - - pos: 49.5,10.5 - parent: 82 - type: Transform -- uid: 1633 - type: WallReinforced - components: - - pos: 49.5,0.5 - parent: 82 - type: Transform -- uid: 1634 - type: WallReinforced - components: - - pos: 48.5,39.5 - parent: 82 - type: Transform -- uid: 1635 - type: WallReinforced - components: - - pos: 49.5,39.5 - parent: 82 - type: Transform -- uid: 1636 - type: WallReinforced - components: - - pos: 50.5,39.5 - parent: 82 - type: Transform -- uid: 1637 - type: WallReinforced - components: - - pos: 51.5,39.5 - parent: 82 - type: Transform -- uid: 1638 - type: WallReinforced - components: - - pos: 51.5,35.5 - parent: 82 - type: Transform -- uid: 1639 - type: WallReinforced - components: - - pos: 48.5,10.5 - parent: 82 - type: Transform -- uid: 1640 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-0.5 - parent: 82 - type: Transform -- uid: 1641 - type: WallWood - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-0.5 - parent: 82 - type: Transform -- uid: 1642 - type: WallReinforced - components: - - pos: 53.5,10.5 - parent: 82 - type: Transform -- uid: 1643 - type: WallReinforced - components: - - pos: 54.5,10.5 - parent: 82 - type: Transform -- uid: 1644 - type: WallReinforced - components: - - pos: 55.5,10.5 - parent: 82 - type: Transform -- uid: 1645 - type: ReinforcedWindow - components: - - pos: 66.5,8.5 - parent: 82 - type: Transform -- uid: 1646 - type: CableApcExtension - components: - - pos: 72.5,-8.5 - parent: 82 - type: Transform -- uid: 1647 - type: WeaponTurretSyndicateBroken - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-98.5 - parent: 82 - type: Transform -- uid: 1648 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-62.5 - parent: 82 - type: Transform -- uid: 1649 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-63.5 - parent: 82 - type: Transform -- uid: 1650 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-63.5 - parent: 82 - type: Transform -- uid: 1651 - type: WallSolid - components: - - pos: 29.5,33.5 - parent: 82 - type: Transform -- uid: 1652 - type: WallReinforced - components: - - pos: 50.5,0.5 - parent: 82 - type: Transform -- uid: 1653 - type: WallSolid - components: - - pos: 23.5,34.5 - parent: 82 - type: Transform -- uid: 1654 - type: WallSolid - components: - - pos: 23.5,33.5 - parent: 82 - type: Transform -- uid: 1655 - type: WallSolid - components: - - pos: 24.5,33.5 - parent: 82 - type: Transform -- uid: 1656 - type: WallSolid - components: - - pos: 24.5,39.5 - parent: 82 - type: Transform -- uid: 1657 - type: WallSolid - components: - - pos: 23.5,37.5 - parent: 82 - type: Transform -- uid: 1658 - type: WallSolid - components: - - pos: 29.5,38.5 - parent: 82 - type: Transform -- uid: 1659 - type: WallSolid - components: - - pos: 28.5,39.5 - parent: 82 - type: Transform -- uid: 1660 - type: Grille - components: - - pos: -18.5,-0.5 - parent: 82 - type: Transform -- uid: 1661 - type: WallReinforced - components: - - pos: 48.5,-0.5 - parent: 82 - type: Transform -- uid: 1662 - type: ReinforcedWindow - components: - - pos: 38.5,40.5 - parent: 82 - type: Transform -- uid: 1663 - type: Grille - components: - - pos: 38.5,42.5 - parent: 82 - type: Transform -- uid: 1664 - type: WallReinforced - components: - - pos: 34.5,35.5 - parent: 82 - type: Transform -- uid: 1665 - type: WallReinforced - components: - - pos: 34.5,36.5 - parent: 82 - type: Transform -- uid: 1666 - type: WallSolid - components: - - pos: 29.5,39.5 - parent: 82 - type: Transform -- uid: 1667 - type: WallSolid - components: - - pos: 30.5,39.5 - parent: 82 - type: Transform -- uid: 1668 - type: WallReinforced - components: - - pos: 50.5,-12.5 - parent: 82 - type: Transform -- uid: 1669 - type: WallSolid - components: - - pos: 30.5,38.5 - parent: 82 - type: Transform -- uid: 1670 - type: WallSolid - components: - - pos: 30.5,37.5 - parent: 82 - type: Transform -- uid: 1671 - type: WallSolid - components: - - pos: 30.5,36.5 - parent: 82 - type: Transform -- uid: 1672 - type: WallReinforced - components: - - pos: 50.5,-11.5 - parent: 82 - type: Transform -- uid: 1673 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-18.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1674 - type: WallSolid - components: - - pos: 25.5,39.5 - parent: 82 - type: Transform -- uid: 1675 - type: Grille - components: - - pos: -19.5,-0.5 - parent: 82 - type: Transform -- uid: 1676 - type: ReinforcedWindow - components: - - pos: 38.5,28.5 - parent: 82 - type: Transform -- uid: 1677 - type: Grille - components: - - pos: 38.5,28.5 - parent: 82 - type: Transform -- uid: 1678 - type: ReinforcedWindow - components: - - pos: 38.5,27.5 - parent: 82 - type: Transform -- uid: 1679 - type: WallReinforced - components: - - pos: 18.5,32.5 - parent: 82 - type: Transform -- uid: 1680 - type: Grille - components: - - pos: 15.5,32.5 - parent: 82 - type: Transform -- uid: 1681 - type: Grille - components: - - pos: 16.5,32.5 - parent: 82 - type: Transform -- uid: 1682 - type: WallReinforced - components: - - pos: 12.5,36.5 - parent: 82 - type: Transform -- uid: 1683 - type: WallReinforced - components: - - pos: 13.5,36.5 - parent: 82 - type: Transform -- uid: 1684 - type: WallReinforced - components: - - pos: 12.5,40.5 - parent: 82 - type: Transform -- uid: 1685 - type: WallReinforced - components: - - pos: 13.5,40.5 - parent: 82 - type: Transform -- uid: 1686 - type: Grille - components: - - pos: 14.5,40.5 - parent: 82 - type: Transform -- uid: 1687 - type: Grille - components: - - pos: 14.5,39.5 - parent: 82 - type: Transform -- uid: 1688 - type: Grille - components: - - pos: 14.5,38.5 - parent: 82 - type: Transform -- uid: 1689 - type: Grille - components: - - pos: 14.5,37.5 - parent: 82 - type: Transform -- uid: 1690 - type: Grille - components: - - pos: 14.5,36.5 - parent: 82 - type: Transform -- uid: 1691 - type: WallReinforced - components: - - pos: 19.5,34.5 - parent: 82 - type: Transform -- uid: 1692 - type: Grille - components: - - pos: 19.5,35.5 - parent: 82 - type: Transform -- uid: 1693 - type: Grille - components: - - pos: 19.5,36.5 - parent: 82 - type: Transform -- uid: 1694 - type: Grille - components: - - pos: 19.5,37.5 - parent: 82 - type: Transform -- uid: 1695 - type: Grille - components: - - pos: 19.5,38.5 - parent: 82 - type: Transform -- uid: 1696 - type: Grille - components: - - pos: 19.5,39.5 - parent: 82 - type: Transform -- uid: 1697 - type: Grille - components: - - pos: 19.5,40.5 - parent: 82 - type: Transform -- uid: 1698 - type: Grille - components: - - pos: 19.5,41.5 - parent: 82 - type: Transform -- uid: 1699 - type: ReinforcedWindow - components: - - pos: 14.5,40.5 - parent: 82 - type: Transform -- uid: 1700 - type: ReinforcedWindow - components: - - pos: 14.5,39.5 - parent: 82 - type: Transform -- uid: 1701 - type: ReinforcedWindow - components: - - pos: 14.5,38.5 - parent: 82 - type: Transform -- uid: 1702 - type: ReinforcedWindow - components: - - pos: 14.5,37.5 - parent: 82 - type: Transform -- uid: 1703 - type: ReinforcedWindow - components: - - pos: 14.5,36.5 - parent: 82 - type: Transform -- uid: 1704 - type: WallReinforced - components: - - pos: 11.5,36.5 - parent: 82 - type: Transform -- uid: 1705 - type: WallReinforced - components: - - pos: 11.5,37.5 - parent: 82 - type: Transform -- uid: 1706 - type: WallReinforced - components: - - pos: 11.5,40.5 - parent: 82 - type: Transform -- uid: 1707 - type: WallReinforced - components: - - pos: 11.5,39.5 - parent: 82 - type: Transform -- uid: 1708 - type: Rack - components: - - pos: 13.5,37.5 - parent: 82 - type: Transform -- uid: 1709 - type: Rack - components: - - pos: 13.5,39.5 - parent: 82 - type: Transform -- uid: 1710 - type: Rack - components: - - pos: 13.5,38.5 - parent: 82 - type: Transform -- uid: 1711 - type: WallReinforced - components: - - pos: 34.5,39.5 - parent: 82 - type: Transform -- uid: 1712 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 34.5,42.5 - parent: 82 - type: Transform -- uid: 1713 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 34.5,41.5 - parent: 82 - type: Transform -- uid: 1714 - type: WallSolid - components: - - pos: 41.5,40.5 - parent: 82 - type: Transform -- uid: 1715 - type: WallSolid - components: - - pos: 42.5,40.5 - parent: 82 - type: Transform -- uid: 1716 - type: WallReinforced - components: - - pos: 38.5,36.5 - parent: 82 - type: Transform -- uid: 1717 - type: WallReinforced - components: - - pos: 38.5,37.5 - parent: 82 - type: Transform -- uid: 1718 - type: WallReinforced - components: - - pos: 38.5,38.5 - parent: 82 - type: Transform -- uid: 1719 - type: WallReinforced - components: - - pos: 38.5,39.5 - parent: 82 - type: Transform -- uid: 1720 - type: Grille - components: - - pos: 38.5,40.5 - parent: 82 - type: Transform -- uid: 1721 - type: Grille - components: - - pos: 38.5,41.5 - parent: 82 - type: Transform -- uid: 1722 - type: ReinforcedWindow - components: - - pos: 38.5,41.5 - parent: 82 - type: Transform -- uid: 1723 - type: ReinforcedWindow - components: - - pos: 38.5,42.5 - parent: 82 - type: Transform -- uid: 1724 - type: WallReinforced - components: - - pos: 38.5,43.5 - parent: 82 - type: Transform -- uid: 1725 - type: WallReinforced - components: - - pos: 38.5,44.5 - parent: 82 - type: Transform -- uid: 1726 - type: WallReinforced - components: - - pos: 38.5,45.5 - parent: 82 - type: Transform -- uid: 1727 - type: WallReinforced - components: - - pos: 37.5,45.5 - parent: 82 - type: Transform -- uid: 1728 - type: WallReinforced - components: - - pos: 36.5,45.5 - parent: 82 - type: Transform -- uid: 1729 - type: WallReinforced - components: - - pos: 35.5,45.5 - parent: 82 - type: Transform -- uid: 1730 - type: WallReinforced - components: - - pos: 34.5,45.5 - parent: 82 - type: Transform -- uid: 1731 - type: WallReinforced - components: - - pos: 34.5,44.5 - parent: 82 - type: Transform -- uid: 1732 - type: WallReinforced - components: - - pos: 34.5,43.5 - parent: 82 - type: Transform -- uid: 1733 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 34.5,40.5 - parent: 82 - type: Transform -- uid: 1734 - type: WallSolid - components: - - pos: 45.5,40.5 - parent: 82 - type: Transform -- uid: 1735 - type: WallSolid - components: - - pos: 41.5,41.5 - parent: 82 - type: Transform -- uid: 1736 - type: WallSolid - components: - - pos: 41.5,42.5 - parent: 82 - type: Transform -- uid: 1737 - type: WallSolid - components: - - pos: 41.5,43.5 - parent: 82 - type: Transform -- uid: 1738 - type: WallSolid - components: - - pos: 45.5,41.5 - parent: 82 - type: Transform -- uid: 1739 - type: WallSolid - components: - - pos: 45.5,42.5 - parent: 82 - type: Transform -- uid: 1740 - type: WallSolid - components: - - pos: 45.5,43.5 - parent: 82 - type: Transform -- uid: 1741 - type: WallSolid - components: - - pos: 45.5,44.5 - parent: 82 - type: Transform -- uid: 1742 - type: WallSolid - components: - - pos: 45.5,45.5 - parent: 82 - type: Transform -- uid: 1743 - type: WallSolid - components: - - pos: 45.5,46.5 - parent: 82 - type: Transform -- uid: 1744 - type: WallSolid - components: - - pos: 44.5,46.5 - parent: 82 - type: Transform -- uid: 1745 - type: WallSolid - components: - - pos: 43.5,46.5 - parent: 82 - type: Transform -- uid: 1746 - type: Catwalk - components: - - pos: 44.5,39.5 - parent: 82 - type: Transform -- uid: 1747 - type: WallSolid - components: - - pos: 41.5,46.5 - parent: 82 - type: Transform -- uid: 1748 - type: WallSolid - components: - - pos: 41.5,45.5 - parent: 82 - type: Transform -- uid: 1749 - type: ReinforcedWindow - components: - - pos: 19.5,41.5 - parent: 82 - type: Transform -- uid: 1750 - type: ReinforcedWindow - components: - - pos: 19.5,40.5 - parent: 82 - type: Transform -- uid: 1751 - type: ReinforcedWindow - components: - - pos: 19.5,39.5 - parent: 82 - type: Transform -- uid: 1752 - type: ReinforcedWindow - components: - - pos: 19.5,38.5 - parent: 82 - type: Transform -- uid: 1753 - type: ReinforcedWindow - components: - - pos: 19.5,37.5 - parent: 82 - type: Transform -- uid: 1754 - type: ReinforcedWindow - components: - - pos: 19.5,36.5 - parent: 82 - type: Transform -- uid: 1755 - type: ReinforcedWindow - components: - - pos: 19.5,35.5 - parent: 82 - type: Transform -- uid: 1756 - type: WallReinforced - components: - - pos: 12.5,41.5 - parent: 82 - type: Transform -- uid: 1757 - type: WallReinforced - components: - - pos: 12.5,42.5 - parent: 82 - type: Transform -- uid: 1758 - type: WallReinforced - components: - - pos: 12.5,43.5 - parent: 82 - type: Transform -- uid: 1759 - type: WallReinforced - components: - - pos: 12.5,44.5 - parent: 82 - type: Transform -- uid: 1760 - type: WallReinforced - components: - - pos: 13.5,44.5 - parent: 82 - type: Transform -- uid: 1761 - type: WallReinforced - components: - - pos: 14.5,44.5 - parent: 82 - type: Transform -- uid: 1762 - type: Grille - components: - - pos: 15.5,44.5 - parent: 82 - type: Transform -- uid: 1763 - type: Grille - components: - - pos: 16.5,44.5 - parent: 82 - type: Transform -- uid: 1764 - type: Grille - components: - - pos: 17.5,44.5 - parent: 82 - type: Transform -- uid: 1765 - type: WallReinforced - components: - - pos: 18.5,44.5 - parent: 82 - type: Transform -- uid: 1766 - type: WallSolid - components: - - pos: 7.5,38.5 - parent: 82 - type: Transform -- uid: 1767 - type: WallSolid - components: - - pos: 7.5,39.5 - parent: 82 - type: Transform -- uid: 1768 - type: WallSolid - components: - - pos: 7.5,40.5 - parent: 82 - type: Transform -- uid: 1769 - type: WallSolid - components: - - pos: 8.5,40.5 - parent: 82 - type: Transform -- uid: 1770 - type: WallSolid - components: - - pos: 10.5,40.5 - parent: 82 - type: Transform -- uid: 1771 - type: ReinforcedWindow - components: - - pos: 17.5,32.5 - parent: 82 - type: Transform -- uid: 1772 - type: ReinforcedWindow - components: - - pos: 16.5,32.5 - parent: 82 - type: Transform -- uid: 1773 - type: ReinforcedWindow - components: - - pos: 15.5,32.5 - parent: 82 - type: Transform -- uid: 1774 - type: ReinforcedWindow - components: - - pos: 17.5,44.5 - parent: 82 - type: Transform -- uid: 1775 - type: ReinforcedWindow - components: - - pos: 16.5,44.5 - parent: 82 - type: Transform -- uid: 1776 - type: ReinforcedWindow - components: - - pos: 15.5,44.5 - parent: 82 - type: Transform -- uid: 1777 - type: WallSolid - components: - - pos: 2.5,36.5 - parent: 82 - type: Transform -- uid: 1778 - type: WallSolid - components: - - pos: 1.5,32.5 - parent: 82 - type: Transform -- uid: 1779 - type: WallSolid - components: - - pos: 1.5,33.5 - parent: 82 - type: Transform -- uid: 1780 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -22.5,-23.5 - parent: 82 - type: Transform -- uid: 1781 - type: WallSolid - components: - - pos: 1.5,34.5 - parent: 82 - type: Transform -- uid: 1782 - type: WallSolid - components: - - pos: 1.5,35.5 - parent: 82 - type: Transform -- uid: 1783 - type: WallSolid - components: - - pos: 1.5,36.5 - parent: 82 - type: Transform -- uid: 1784 - type: WallSolid - components: - - pos: 24.5,42.5 - parent: 82 - type: Transform -- uid: 1785 - type: WallSolid - components: - - pos: 24.5,43.5 - parent: 82 - type: Transform -- uid: 1786 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-1.5 - parent: 82 - type: Transform -- uid: 1787 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-3.5 - parent: 82 - type: Transform -- uid: 1788 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 38.5,0.5 - parent: 82 - type: Transform -- uid: 1789 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 42.5,0.5 - parent: 82 - type: Transform -- uid: 1790 - type: WallSolid - components: - - pos: 24.5,44.5 - parent: 82 - type: Transform -- uid: 1791 - type: WallSolid - components: - - pos: 21.5,48.5 - parent: 82 - type: Transform -- uid: 1792 - type: WallSolid - components: - - pos: 22.5,48.5 - parent: 82 - type: Transform -- uid: 1793 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-62.5 - parent: 82 - type: Transform -- uid: 1794 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-62.5 - parent: 82 - type: Transform -- uid: 1795 - type: FirelockGlass - components: - - pos: -17.5,40.5 - parent: 82 - type: Transform -- uid: 1796 - type: WallSolid - components: - - pos: -21.5,35.5 - parent: 82 - type: Transform -- uid: 1797 - type: WallSolid - components: - - pos: 18.5,46.5 - parent: 82 - type: Transform -- uid: 1798 - type: WallSolid - components: - - pos: 17.5,46.5 - parent: 82 - type: Transform -- uid: 1799 - type: WallSolid - components: - - pos: 16.5,46.5 - parent: 82 - type: Transform -- uid: 1800 - type: WallSolid - components: - - pos: 15.5,46.5 - parent: 82 - type: Transform -- uid: 1801 - type: WallSolid - components: - - pos: 14.5,46.5 - parent: 82 - type: Transform -- uid: 1802 - type: WallSolid - components: - - pos: 13.5,46.5 - parent: 82 - type: Transform -- uid: 1803 - type: WallSolid - components: - - pos: 12.5,46.5 - parent: 82 - type: Transform -- uid: 1804 - type: WallSolid - components: - - pos: 23.5,44.5 - parent: 82 - type: Transform -- uid: 1805 - type: WallSolid - components: - - pos: 22.5,44.5 - parent: 82 - type: Transform -- uid: 1806 - type: WallSolid - components: - - pos: 21.5,44.5 - parent: 82 - type: Transform -- uid: 1807 - type: WallSolid - components: - - pos: 21.5,45.5 - parent: 82 - type: Transform -- uid: 1808 - type: WallSolid - components: - - pos: 21.5,46.5 - parent: 82 - type: Transform -- uid: 1809 - type: WallSolid - components: - - pos: 23.5,48.5 - parent: 82 - type: Transform -- uid: 1810 - type: WallSolid - components: - - pos: 18.5,48.5 - parent: 82 - type: Transform -- uid: 1811 - type: WallSolid - components: - - pos: 21.5,47.5 - parent: 82 - type: Transform -- uid: 1812 - type: WallSolid - components: - - pos: 18.5,47.5 - parent: 82 - type: Transform -- uid: 1813 - type: WallSolid - components: - - pos: 24.5,48.5 - parent: 82 - type: Transform -- uid: 1814 - type: WallSolid - components: - - pos: 25.5,48.5 - parent: 82 - type: Transform -- uid: 1815 - type: WallSolid - components: - - pos: 26.5,48.5 - parent: 82 - type: Transform -- uid: 1816 - type: WallSolid - components: - - pos: 27.5,48.5 - parent: 82 - type: Transform -- uid: 1817 - type: WallSolid - components: - - pos: 28.5,48.5 - parent: 82 - type: Transform -- uid: 1818 - type: WallSolid - components: - - pos: 29.5,48.5 - parent: 82 - type: Transform -- uid: 1819 - type: WallSolid - components: - - pos: 30.5,48.5 - parent: 82 - type: Transform -- uid: 1820 - type: WallReinforced - components: - - pos: -2.5,-16.5 - parent: 82 - type: Transform -- uid: 1821 - type: WallReinforced - components: - - pos: -2.5,-18.5 - parent: 82 - type: Transform -- uid: 1822 - type: Grille - components: - - pos: 51.5,34.5 - parent: 82 - type: Transform -- uid: 1823 - type: AirSensor - components: - - pos: -21.5,-14.5 - parent: 82 - type: Transform -- uid: 1824 - type: TableReinforced - components: - - pos: -19.5,-15.5 - parent: 82 - type: Transform -- uid: 1825 - type: TableReinforced - components: - - pos: -19.5,-14.5 - parent: 82 - type: Transform -- uid: 1826 - type: TableReinforced - components: - - pos: -19.5,-13.5 - parent: 82 - type: Transform -- uid: 1827 - type: TableReinforced - components: - - pos: -19.5,-12.5 - parent: 82 - type: Transform -- uid: 1828 - type: WallSolid - components: - - pos: -19.5,-11.5 - parent: 82 - type: Transform -- uid: 1829 - type: WallSolid - components: - - pos: -18.5,-11.5 - parent: 82 - type: Transform -- uid: 1830 - type: ChairWood - components: - - pos: -22.5,-12.5 - parent: 82 - type: Transform -- uid: 1831 - type: ReinforcedWindow - components: - - pos: -27.5,-18.5 - parent: 82 - type: Transform -- uid: 1832 - type: WallReinforced - components: - - pos: 48.5,40.5 - parent: 82 - type: Transform -- uid: 1833 - type: WallReinforced - components: - - pos: 48.5,41.5 - parent: 82 - type: Transform -- uid: 1834 - type: WallReinforced - components: - - pos: 48.5,42.5 - parent: 82 - type: Transform -- uid: 1835 - type: WallReinforced - components: - - pos: 48.5,43.5 - parent: 82 - type: Transform -- uid: 1836 - type: WallReinforced - components: - - pos: 48.5,44.5 - parent: 82 - type: Transform -- uid: 1837 - type: WallReinforced - components: - - pos: 52.5,7.5 - parent: 82 - type: Transform -- uid: 1838 - type: WallReinforced - components: - - pos: 52.5,6.5 - parent: 82 - type: Transform -- uid: 1839 - type: WallSolid - components: - - pos: 41.5,47.5 - parent: 82 - type: Transform -- uid: 1840 - type: WallSolid - components: - - pos: 41.5,48.5 - parent: 82 - type: Transform -- uid: 1841 - type: WallSolid - components: - - pos: 41.5,49.5 - parent: 82 - type: Transform -- uid: 1842 - type: WallSolid - components: - - pos: 42.5,49.5 - parent: 82 - type: Transform -- uid: 1843 - type: WallSolid - components: - - pos: 43.5,49.5 - parent: 82 - type: Transform -- uid: 1844 - type: WallSolid - components: - - pos: 44.5,49.5 - parent: 82 - type: Transform -- uid: 1845 - type: WallSolid - components: - - pos: 45.5,49.5 - parent: 82 - type: Transform -- uid: 1846 - type: WallSolid - components: - - pos: 45.5,48.5 - parent: 82 - type: Transform -- uid: 1847 - type: WallSolid - components: - - pos: 45.5,47.5 - parent: 82 - type: Transform -- uid: 1848 - type: WallSolid - components: - - pos: 0.5,32.5 - parent: 82 - type: Transform -- uid: 1849 - type: WallSolid - components: - - pos: -0.5,32.5 - parent: 82 - type: Transform -- uid: 1850 - type: WallSolid - components: - - pos: -1.5,32.5 - parent: 82 - type: Transform -- uid: 1851 - type: WallSolid - components: - - pos: -2.5,32.5 - parent: 82 - type: Transform -- uid: 1852 - type: Grille - components: - - pos: -2.5,33.5 - parent: 82 - type: Transform -- uid: 1853 - type: Grille - components: - - pos: -2.5,34.5 - parent: 82 - type: Transform -- uid: 1854 - type: WallReinforced - components: - - pos: -28.5,28.5 - parent: 82 - type: Transform -- uid: 1855 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1856 - type: GasValve - components: - - rot: 3.141592653589793 rad - pos: 15.5,17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1857 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,14.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1858 - type: GasPipeFourway - components: - - pos: 18.5,16.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1859 - type: Catwalk - components: - - pos: 1.5,12.5 - parent: 82 - type: Transform -- uid: 1860 - type: Catwalk - components: - - pos: 0.5,12.5 - parent: 82 - type: Transform -- uid: 1861 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,14.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1862 - type: Catwalk - components: - - pos: 8.5,12.5 - parent: 82 - type: Transform -- uid: 1863 - type: Catwalk - components: - - pos: 6.5,12.5 - parent: 82 - type: Transform -- uid: 1864 - type: Catwalk - components: - - pos: 13.5,12.5 - parent: 82 - type: Transform -- uid: 1865 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 4.5,11.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1866 - type: GasPort - components: - - pos: 10.5,12.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1867 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 10.5,11.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1868 - type: GasValve - components: - - rot: 1.5707963267948966 rad - pos: 7.5,11.5 - parent: 82 - type: Transform - - open: False - type: GasValve - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1869 - type: GasValve - components: - - rot: 1.5707963267948966 rad - pos: 1.5,11.5 - parent: 82 - type: Transform - - open: False - type: GasValve - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1870 - type: Catwalk - components: - - pos: 2.5,12.5 - parent: 82 - type: Transform -- uid: 1871 - type: Catwalk - components: - - pos: 14.5,12.5 - parent: 82 - type: Transform -- uid: 1872 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 47.5,5.5 - parent: 82 - type: Transform -- uid: 1873 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 46.5,5.5 - parent: 82 - type: Transform -- uid: 1874 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 45.5,5.5 - parent: 82 - type: Transform -- uid: 1875 - type: GasPort - components: - - pos: 4.5,12.5 - parent: 82 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1876 - type: Catwalk - components: - - pos: 12.5,12.5 - parent: 82 - type: Transform -- uid: 1877 - type: Catwalk - components: - - pos: 7.5,12.5 - parent: 82 - type: Transform -- uid: 1878 - type: GasValve - components: - - rot: 1.5707963267948966 rad - pos: 13.5,11.5 - parent: 82 - type: Transform - - open: False - type: GasValve - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1879 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 19.5,16.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1880 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -6.5,33.5 - parent: 82 - type: Transform -- uid: 1881 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -19.5,60.5 - parent: 82 - type: Transform -- uid: 1882 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -20.5,57.5 - parent: 82 - type: Transform -- uid: 1883 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -19.5,57.5 - parent: 82 - type: Transform -- uid: 1884 - type: Grille - components: - - pos: -27.5,28.5 - parent: 82 - type: Transform -- uid: 1885 - type: ReinforcedWindow - components: - - pos: -27.5,28.5 - parent: 82 - type: Transform -- uid: 1886 - type: ReinforcedWindow - components: - - pos: -24.5,27.5 - parent: 82 - type: Transform -- uid: 1887 - type: TableCounterWood - components: - - pos: 29.5,23.5 - parent: 82 - type: Transform -- uid: 1888 - type: TableCounterWood - components: - - pos: 28.5,23.5 - parent: 82 - type: Transform -- uid: 1889 - type: Bookshelf - components: - - pos: 28.5,26.5 - parent: 82 - type: Transform -- uid: 1890 - type: Bookshelf - components: - - pos: 27.5,26.5 - parent: 82 - type: Transform -- uid: 1891 - type: WallSolid - components: - - pos: 24.5,27.5 - parent: 82 - type: Transform -- uid: 1892 - type: WallSolid - components: - - pos: 23.5,39.5 - parent: 82 - type: Transform -- uid: 1893 - type: WallSolid - components: - - pos: 8.5,42.5 - parent: 82 - type: Transform -- uid: 1894 - type: WallSolid - components: - - pos: 7.5,42.5 - parent: 82 - type: Transform -- uid: 1895 - type: WallSolid - components: - - pos: 4.5,37.5 - parent: 82 - type: Transform -- uid: 1896 - type: WallSolid - components: - - pos: 4.5,38.5 - parent: 82 - type: Transform -- uid: 1897 - type: WallReinforced - components: - - pos: 10.5,54.5 - parent: 82 - type: Transform -- uid: 1898 - type: WallReinforced - components: - - pos: 4.5,40.5 - parent: 82 - type: Transform -- uid: 1899 - type: WallReinforced - components: - - pos: 4.5,41.5 - parent: 82 - type: Transform -- uid: 1900 - type: WallSolid - components: - - pos: -24.5,-5.5 - parent: 82 - type: Transform -- uid: 1901 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-13.5 - parent: 82 - type: Transform -- uid: 1902 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-14.5 - parent: 82 - type: Transform -- uid: 1903 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 82 - type: Transform -- uid: 1904 - type: DisposalUnit - components: - - pos: -27.5,-10.5 - parent: 82 - type: Transform -- uid: 1905 - type: WallSolid - components: - - pos: 34.5,47.5 - parent: 82 - type: Transform -- uid: 1906 - type: WallSolid - components: - - pos: 35.5,47.5 - parent: 82 - type: Transform -- uid: 1907 - type: WallSolid - components: - - pos: 36.5,47.5 - parent: 82 - type: Transform -- uid: 1908 - type: WallSolid - components: - - pos: 37.5,47.5 - parent: 82 - type: Transform -- uid: 1909 - type: WallSolid - components: - - pos: 38.5,47.5 - parent: 82 - type: Transform -- uid: 1910 - type: WallSolid - components: - - pos: 39.5,47.5 - parent: 82 - type: Transform -- uid: 1911 - type: WallSolid - components: - - pos: 39.5,48.5 - parent: 82 - type: Transform -- uid: 1912 - type: WallSolid - components: - - pos: 39.5,49.5 - parent: 82 - type: Transform -- uid: 1913 - type: WallSolid - components: - - pos: 39.5,50.5 - parent: 82 - type: Transform -- uid: 1914 - type: WallSolid - components: - - pos: 39.5,51.5 - parent: 82 - type: Transform -- uid: 1915 - type: WallSolid - components: - - pos: 39.5,52.5 - parent: 82 - type: Transform -- uid: 1916 - type: WallSolid - components: - - pos: 38.5,52.5 - parent: 82 - type: Transform -- uid: 1917 - type: WallSolid - components: - - pos: 37.5,52.5 - parent: 82 - type: Transform -- uid: 1918 - type: WallSolid - components: - - pos: 36.5,52.5 - parent: 82 - type: Transform -- uid: 1919 - type: WallSolid - components: - - pos: 35.5,52.5 - parent: 82 - type: Transform -- uid: 1920 - type: WallSolid - components: - - pos: 34.5,52.5 - parent: 82 - type: Transform -- uid: 1921 - type: WallReinforced - components: - - pos: 10.5,58.5 - parent: 82 - type: Transform -- uid: 1922 - type: WallReinforced - components: - - pos: 10.5,59.5 - parent: 82 - type: Transform -- uid: 1923 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -8.5,32.5 - parent: 82 - type: Transform -- uid: 1924 - type: WallReinforced - components: - - pos: -9.5,-11.5 - parent: 82 - type: Transform -- uid: 1925 - type: WallReinforced - components: - - pos: -13.5,-9.5 - parent: 82 - type: Transform -- uid: 1926 - type: WallReinforced - components: - - pos: -12.5,-9.5 - parent: 82 - type: Transform -- uid: 1927 - type: WallReinforced - components: - - pos: -8.5,-9.5 - parent: 82 - type: Transform -- uid: 1928 - type: WallReinforced - components: - - pos: -10.5,-11.5 - parent: 82 - type: Transform -- uid: 1929 - type: WallReinforced - components: - - pos: -12.5,-11.5 - parent: 82 - type: Transform -- uid: 1930 - type: WallReinforced - components: - - pos: -13.5,-10.5 - parent: 82 - type: Transform -- uid: 1931 - type: WallReinforced - components: - - pos: -9.5,-10.5 - parent: 82 - type: Transform -- uid: 1932 - type: WallReinforced - components: - - pos: -11.5,-11.5 - parent: 82 - type: Transform -- uid: 1933 - type: WallReinforced - components: - - pos: -10.5,-9.5 - parent: 82 - type: Transform -- uid: 1934 - type: WallReinforced - components: - - pos: -8.5,-8.5 - parent: 82 - type: Transform -- uid: 1935 - type: WallReinforced - components: - - pos: -8.5,-7.5 - parent: 82 - type: Transform -- uid: 1936 - type: WallReinforced - components: - - pos: -8.5,-6.5 - parent: 82 - type: Transform -- uid: 1937 - type: WallReinforced - components: - - pos: -8.5,-10.5 - parent: 82 - type: Transform -- uid: 1938 - type: WallReinforced - components: - - pos: -8.5,-11.5 - parent: 82 - type: Transform -- uid: 1939 - type: WallReinforced - components: - - pos: -14.5,-10.5 - parent: 82 - type: Transform -- uid: 1940 - type: WallReinforced - components: - - pos: -14.5,-11.5 - parent: 82 - type: Transform -- uid: 1941 - type: WallSolid - components: - - pos: -12.5,-14.5 - parent: 82 - type: Transform -- uid: 1942 - type: WallSolid - components: - - pos: -13.5,-14.5 - parent: 82 - type: Transform -- uid: 1943 - type: WallSolid - components: - - pos: -15.5,-14.5 - parent: 82 - type: Transform -- uid: 1944 - type: WallSolid - components: - - pos: -38.5,-25.5 - parent: 82 - type: Transform -- uid: 1945 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-14.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1946 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-15.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1947 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-13.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1948 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1949 - type: StoolBar - components: - - pos: -28.5,-8.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1950 - type: StoolBar - components: - - pos: -29.5,-8.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1951 - type: StoolBar - components: - - pos: -30.5,-8.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1952 - type: StoolBar - components: - - pos: -31.5,-8.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 1953 - type: WallSolid - components: - - pos: -15.5,-13.5 - parent: 82 - type: Transform -- uid: 1954 - type: WallSolid - components: - - pos: -15.5,-12.5 - parent: 82 - type: Transform -- uid: 1955 - type: WallSolid - components: - - pos: -15.5,-11.5 - parent: 82 - type: Transform -- uid: 1956 - type: AirlockGlass - components: - - pos: -28.5,-5.5 - parent: 82 - type: Transform -- uid: 1957 - type: WallSolid - components: - - pos: -17.5,-11.5 - parent: 82 - type: Transform -- uid: 1958 - type: WallSolid - components: - - pos: -17.5,-10.5 - parent: 82 - type: Transform -- uid: 1959 - type: WallSolid - components: - - pos: -17.5,-9.5 - parent: 82 - type: Transform -- uid: 1960 - type: WallSolid - components: - - pos: -17.5,-8.5 - parent: 82 - type: Transform -- uid: 1961 - type: WallSolid - components: - - pos: -17.5,-7.5 - parent: 82 - type: Transform -- uid: 1962 - type: WallSolid - components: - - pos: -15.5,-5.5 - parent: 82 - type: Transform -- uid: 1963 - type: WallSolid - components: - - pos: -16.5,-5.5 - parent: 82 - type: Transform -- uid: 1964 - type: WallSolid - components: - - pos: -17.5,-5.5 - parent: 82 - type: Transform -- uid: 1965 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1966 - type: WallSolid - components: - - pos: -17.5,-6.5 - parent: 82 - type: Transform -- uid: 1967 - type: WallSolid - components: - - pos: -15.5,-16.5 - parent: 82 - type: Transform -- uid: 1968 - type: WallSolid - components: - - pos: -15.5,-17.5 - parent: 82 - type: Transform -- uid: 1969 - type: WallSolid - components: - - pos: -15.5,-18.5 - parent: 82 - type: Transform -- uid: 1970 - type: WallSolid - components: - - pos: -16.5,-18.5 - parent: 82 - type: Transform -- uid: 1971 - type: WallSolid - components: - - pos: -17.5,-18.5 - parent: 82 - type: Transform -- uid: 1972 - type: WallSolid - components: - - pos: -18.5,-18.5 - parent: 82 - type: Transform -- uid: 1973 - type: WallSolid - components: - - pos: -19.5,-18.5 - parent: 82 - type: Transform -- uid: 1974 - type: WallSolid - components: - - pos: -20.5,-18.5 - parent: 82 - type: Transform -- uid: 1975 - type: WallSolid - components: - - pos: -15.5,-20.5 - parent: 82 - type: Transform -- uid: 1976 - type: WallSolid - components: - - pos: -15.5,-21.5 - parent: 82 - type: Transform -- uid: 1977 - type: WallSolid - components: - - pos: -16.5,-21.5 - parent: 82 - type: Transform -- uid: 1978 - type: WallSolid - components: - - pos: -17.5,-21.5 - parent: 82 - type: Transform -- uid: 1979 - type: WallSolid - components: - - pos: -18.5,-21.5 - parent: 82 - type: Transform -- uid: 1980 - type: WallSolid - components: - - pos: -19.5,-21.5 - parent: 82 - type: Transform -- uid: 1981 - type: WallReinforced - components: - - pos: -20.5,-21.5 - parent: 82 - type: Transform -- uid: 1982 - type: WallmountTelevision - components: - - rot: 3.141592653589793 rad - pos: -36.5,-5.5 - parent: 82 - type: Transform -- uid: 1983 - type: Grille - components: - - pos: -33.5,-9.5 - parent: 82 - type: Transform -- uid: 1984 - type: ChairFolding - components: - - pos: -36.5,-6.5 - parent: 82 - type: Transform -- uid: 1985 - type: WallSolid - components: - - pos: -34.5,-7.5 - parent: 82 - type: Transform -- uid: 1986 - type: ChairWood - components: - - pos: -23.5,-12.5 - parent: 82 - type: Transform -- uid: 1987 - type: WallSolid - components: - - pos: -34.5,-8.5 - parent: 82 - type: Transform -- uid: 1988 - type: WallReinforced - components: - - pos: -9.5,-12.5 - parent: 82 - type: Transform -- uid: 1989 - type: WallReinforced - components: - - pos: -10.5,-12.5 - parent: 82 - type: Transform -- uid: 1990 - type: WallReinforced - components: - - pos: -11.5,-12.5 - parent: 82 - type: Transform -- uid: 1991 - type: WallSolid - components: - - pos: -10.5,-18.5 - parent: 82 - type: Transform -- uid: 1992 - type: Catwalk - components: - - pos: -52.5,53.5 - parent: 82 - type: Transform -- uid: 1993 - type: WallReinforced - components: - - pos: -27.5,-16.5 - parent: 82 - type: Transform -- uid: 1994 - type: Grille - components: - - pos: -25.5,-21.5 - parent: 82 - type: Transform -- uid: 1995 - type: Grille - components: - - pos: -24.5,-21.5 - parent: 82 - type: Transform -- uid: 1996 - type: Grille - components: - - pos: -23.5,-21.5 - parent: 82 - type: Transform -- uid: 1997 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -27.5,-20.5 - parent: 82 - type: Transform -- uid: 1998 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -27.5,-21.5 - parent: 82 - type: Transform -- uid: 1999 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -26.5,-21.5 - parent: 82 - type: Transform -- uid: 2000 - type: Grille - components: - - pos: -27.5,-19.5 - parent: 82 - type: Transform -- uid: 2001 - type: Grille - components: - - pos: -27.5,-18.5 - parent: 82 - type: Transform -- uid: 2002 - type: Grille - components: - - pos: -27.5,-17.5 - parent: 82 - type: Transform -- uid: 2003 - type: Grille - components: - - pos: -22.5,-21.5 - parent: 82 - type: Transform -- uid: 2004 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -21.5,-21.5 - parent: 82 - type: Transform -- uid: 2005 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2006 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2007 - type: WallSolid - components: - - pos: -22.5,-5.5 - parent: 82 - type: Transform -- uid: 2008 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2009 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2010 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2011 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -9.5,32.5 - parent: 82 - type: Transform -- uid: 2012 - type: WallReinforced - components: - - pos: -20.5,-23.5 - parent: 82 - type: Transform -- uid: 2013 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -20.5,-22.5 - parent: 82 - type: Transform -- uid: 2014 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -21.5,-23.5 - parent: 82 - type: Transform -- uid: 2015 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-9.5 - parent: 82 - type: Transform -- uid: 2016 - type: FoodBoxPizzaFilled - components: - - pos: -32.689598,-10.291857 - parent: 82 - type: Transform -- uid: 2017 - type: WallSolid - components: - - pos: -20.5,-1.5 - parent: 82 - type: Transform -- uid: 2018 - type: WallSolid - components: - - pos: -25.5,-0.5 - parent: 82 - type: Transform -- uid: 2019 - type: WallSolid - components: - - pos: -26.5,-0.5 - parent: 82 - type: Transform -- uid: 2020 - type: WallSolid - components: - - pos: -27.5,-0.5 - parent: 82 - type: Transform -- uid: 2021 - type: WallSolid - components: - - pos: -27.5,-1.5 - parent: 82 - type: Transform -- uid: 2022 - type: CableApcExtension - components: - - pos: 15.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2023 - type: Table - components: - - pos: -35.5,-6.5 - parent: 82 - type: Transform -- uid: 2024 - type: SpawnMobMouse - components: - - pos: -36.5,-7.5 - parent: 82 - type: Transform -- uid: 2025 - type: KitchenMicrowave - components: - - pos: -38.5,-11.5 - parent: 82 - type: Transform -- uid: 2026 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-6.5 - parent: 82 - type: Transform -- uid: 2027 - type: WallSolid - components: - - pos: -34.5,-25.5 - parent: 82 - type: Transform -- uid: 2028 - type: Grille - components: - - pos: -37.5,-25.5 - parent: 82 - type: Transform -- uid: 2029 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-13.5 - parent: 82 - type: Transform -- uid: 2030 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 82 - type: Transform -- uid: 2031 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-16.5 - parent: 82 - type: Transform -- uid: 2032 - type: Grille - components: - - pos: 27.5,39.5 - parent: 82 - type: Transform -- uid: 2033 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-6.5 - parent: 82 - type: Transform -- uid: 2034 - type: CigPackBlack - components: - - pos: -35.64055,-6.40114 - parent: 82 - type: Transform -- uid: 2035 - type: ChairFolding - components: - - pos: -37.5,-6.5 - parent: 82 - type: Transform -- uid: 2036 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-6.5 - parent: 82 - type: Transform -- uid: 2037 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-6.5 - parent: 82 - type: Transform -- uid: 2038 - type: WallSolid - components: - - pos: -27.5,-9.5 - parent: 82 - type: Transform -- uid: 2039 - type: CableApcExtension - components: - - pos: 14.5,-21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2040 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -29.5,-20.5 - parent: 82 - type: Transform -- uid: 2041 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -29.5,-21.5 - parent: 82 - type: Transform -- uid: 2042 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -29.5,-22.5 - parent: 82 - type: Transform -- uid: 2043 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -29.5,-23.5 - parent: 82 - type: Transform -- uid: 2044 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -28.5,-23.5 - parent: 82 - type: Transform -- uid: 2045 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -27.5,-23.5 - parent: 82 - type: Transform -- uid: 2046 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -26.5,-23.5 - parent: 82 - type: Transform -- uid: 2047 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 34.5,40.5 - parent: 82 - type: Transform -- uid: 2048 - type: WallSolid - components: - - pos: -9.5,-20.5 - parent: 82 - type: Transform -- uid: 2049 - type: WallSolid - components: - - pos: -9.5,-19.5 - parent: 82 - type: Transform -- uid: 2050 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 26.5,-5.5 - parent: 82 - type: Transform -- uid: 2051 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 22.5,-10.5 - parent: 82 - type: Transform -- uid: 2052 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,-10.5 - parent: 82 - type: Transform -- uid: 2053 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 24.5,-10.5 - parent: 82 - type: Transform -- uid: 2054 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 25.5,-10.5 - parent: 82 - type: Transform -- uid: 2055 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 26.5,-10.5 - parent: 82 - type: Transform -- uid: 2056 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 27.5,-10.5 - parent: 82 - type: Transform -- uid: 2057 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 28.5,-10.5 - parent: 82 - type: Transform -- uid: 2058 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,-5.5 - parent: 82 - type: Transform -- uid: 2059 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,-6.5 - parent: 82 - type: Transform -- uid: 2060 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,-7.5 - parent: 82 - type: Transform -- uid: 2061 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 82 - type: Transform -- uid: 2062 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,-9.5 - parent: 82 - type: Transform -- uid: 2063 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,-10.5 - parent: 82 - type: Transform -- uid: 2064 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: 22.5,-9.5 - parent: 82 - type: Transform -- uid: 2065 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: 25.5,-9.5 - parent: 82 - type: Transform -- uid: 2066 - type: AirAlarm - components: - - pos: -9.5,-23.5 - parent: 82 - type: Transform - - devices: - - 14600 - - 10993 - - 14567 - - 14576 - - 2263 - - 14822 - - 14823 - - 1490 - - 6896 - - 6897 - - 6898 - - 6893 - - 6894 - - 6895 - - 10479 - - 22600 - - 22770 - - 22513 - - 22625 - - 22620 - type: DeviceList -- uid: 2067 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: 22.5,-8.5 - parent: 82 - type: Transform -- uid: 2068 - type: Table - components: - - pos: 23.5,-9.5 - parent: 82 - type: Transform -- uid: 2069 - type: Table - components: - - pos: 24.5,-9.5 - parent: 82 - type: Transform -- uid: 2070 - type: Table - components: - - pos: 27.5,-9.5 - parent: 82 - type: Transform -- uid: 2071 - type: Table - components: - - pos: 28.5,-9.5 - parent: 82 - type: Transform -- uid: 2072 - type: Rack - components: - - pos: 22.5,-6.5 - parent: 82 - type: Transform -- uid: 2073 - type: Rack - components: - - pos: 22.5,-7.5 - parent: 82 - type: Transform -- uid: 2074 - type: WallSolid - components: - - pos: -9.5,-18.5 - parent: 82 - type: Transform -- uid: 2075 - type: Window - components: - - pos: -33.5,-9.5 - parent: 82 - type: Transform -- uid: 2076 - type: FoodCondimentBottleEnzyme - components: - - pos: -30.611586,-12.247635 - parent: 82 - type: Transform -- uid: 2077 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-12.5 - parent: 82 - type: Transform - - devices: - - 5599 - - 5598 - - 11339 - - 11338 - - 5597 - - 5596 - - 11360 - - 11362 - - 11358 - - 2080 - type: DeviceList -- uid: 2078 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-6.5 - parent: 82 - type: Transform -- uid: 2079 - type: VendingMachineHappyHonk - components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,-10.5 - parent: 82 - type: Transform -- uid: 2080 - type: FirelockGlass - components: - - pos: -28.5,-9.5 - parent: 82 - type: Transform -- uid: 2081 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-9.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 2082 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -19.5,-10.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 2083 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -18.5,-10.5 - parent: 82 - type: Transform -- uid: 2084 - type: RandomFoodMeal - components: - - pos: -26.5,-6.5 - parent: 82 - type: Transform -- uid: 2085 - type: RandomFoodMeal - components: - - pos: -30.5,-9.5 - parent: 82 - type: Transform -- uid: 2086 - type: TableReinforced - components: - - pos: -30.5,-16.5 - parent: 82 - type: Transform -- uid: 2087 - type: TableReinforced - components: - - pos: -31.5,-16.5 - parent: 82 - type: Transform -- uid: 2088 - type: Table - components: - - pos: 25.5,-6.5 - parent: 82 - type: Transform -- uid: 2089 - type: Table - components: - - pos: 26.5,-6.5 - parent: 82 - type: Transform -- uid: 2090 - type: WallSolid - components: - - pos: -38.5,-13.5 - parent: 82 - type: Transform -- uid: 2091 - type: WallSolid - components: - - pos: -37.5,-13.5 - parent: 82 - type: Transform -- uid: 2092 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -0.5,-16.5 - parent: 82 - type: Transform -- uid: 2093 - type: WallSolid - components: - - pos: -43.5,-20.5 - parent: 82 - type: Transform -- uid: 2094 - type: WallSolid - components: - - pos: -45.5,-20.5 - parent: 82 - type: Transform -- uid: 2095 - type: WallSolid - components: - - pos: -39.5,-24.5 - parent: 82 - type: Transform -- uid: 2096 - type: WallSolid - components: - - pos: -39.5,-25.5 - parent: 82 - type: Transform -- uid: 2097 - type: BookRandom - components: - - pos: 62.251648,8.63554 - parent: 82 - type: Transform -- uid: 2098 - type: WallSolid - components: - - pos: -17.5,-0.5 - parent: 82 - type: Transform -- uid: 2099 - type: BookAtmosWaste - components: - - pos: -8.303806,9.664098 - parent: 82 - type: Transform -- uid: 2100 - type: BookAtmosVentsMore - components: - - pos: 26.130068,12.69451 - parent: 82 - type: Transform -- uid: 2101 - type: WallSolid - components: - - pos: 29.5,40.5 - parent: 82 - type: Transform -- uid: 2102 - type: Grille - components: - - pos: 23.5,35.5 - parent: 82 - type: Transform -- uid: 2103 - type: Grille - components: - - pos: 23.5,36.5 - parent: 82 - type: Transform -- uid: 2104 - type: WallSolid - components: - - pos: 29.5,41.5 - parent: 82 - type: Transform -- uid: 2105 - type: WallSolid - components: - - pos: 29.5,42.5 - parent: 82 - type: Transform -- uid: 2106 - type: WallSolid - components: - - pos: 29.5,43.5 - parent: 82 - type: Transform -- uid: 2107 - type: WallSolid - components: - - pos: 29.5,44.5 - parent: 82 - type: Transform -- uid: 2108 - type: Grille - components: - - pos: -29.5,-18.5 - parent: 82 - type: Transform -- uid: 2109 - type: Grille - components: - - pos: -29.5,-19.5 - parent: 82 - type: Transform -- uid: 2110 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -10.5,32.5 - parent: 82 - type: Transform -- uid: 2111 - type: ReinforcedWindow - components: - - pos: -29.5,-17.5 - parent: 82 - type: Transform -- uid: 2112 - type: ReinforcedWindow - components: - - pos: -29.5,-18.5 - parent: 82 - type: Transform -- uid: 2113 - type: ReinforcedWindow - components: - - pos: -29.5,-19.5 - parent: 82 - type: Transform -- uid: 2114 - type: WallSolid - components: - - pos: -34.5,-9.5 - parent: 82 - type: Transform -- uid: 2115 - type: DonkpocketBoxSpawner - components: - - pos: -38.5,-10.5 - parent: 82 - type: Transform -- uid: 2116 - type: VendingMachineDinnerware - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,-9.5 - parent: 82 - type: Transform -- uid: 2117 - type: WallSolid - components: - - pos: -34.5,-13.5 - parent: 82 - type: Transform -- uid: 2118 - type: WallSolid - components: - - pos: -34.5,-15.5 - parent: 82 - type: Transform -- uid: 2119 - type: WallSolid - components: - - pos: -34.5,-16.5 - parent: 82 - type: Transform -- uid: 2120 - type: FirelockGlass - components: - - pos: -28.5,-5.5 - parent: 82 - type: Transform -- uid: 2121 - type: Table - components: - - pos: -30.5,-13.5 - parent: 82 - type: Transform -- uid: 2122 - type: Table - components: - - pos: -29.5,-13.5 - parent: 82 - type: Transform -- uid: 2123 - type: Window - components: - - pos: -27.5,-5.5 - parent: 82 - type: Transform -- uid: 2124 - type: TableWood - components: - - pos: -23.5,-9.5 - parent: 82 - type: Transform -- uid: 2125 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -17.5,46.5 - parent: 82 - type: Transform -- uid: 2126 - type: WallSolid - components: - - pos: -6.5,-15.5 - parent: 82 - type: Transform -- uid: 2127 - type: WallSolid - components: - - pos: -35.5,-16.5 - parent: 82 - type: Transform -- uid: 2128 - type: WallSolid - components: - - pos: -36.5,-16.5 - parent: 82 - type: Transform -- uid: 2129 - type: WallSolid - components: - - pos: -37.5,-16.5 - parent: 82 - type: Transform -- uid: 2130 - type: WallSolid - components: - - pos: -38.5,-16.5 - parent: 82 - type: Transform -- uid: 2131 - type: WallSolid - components: - - pos: -39.5,-16.5 - parent: 82 - type: Transform -- uid: 2132 - type: BedsheetHOP - components: - - pos: -12.5,2.5 - parent: 82 - type: Transform -- uid: 2133 - type: LockerHeadOfPersonnelFilled - components: - - pos: -10.5,2.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2134 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2135 - type: Bed - components: - - pos: -12.5,2.5 - parent: 82 - type: Transform -- uid: 2136 - type: Window - components: - - pos: 22.5,-5.5 - parent: 82 - type: Transform -- uid: 2137 - type: Window - components: - - pos: 24.5,-5.5 - parent: 82 - type: Transform -- uid: 2138 - type: Window - components: - - pos: 27.5,-5.5 - parent: 82 - type: Transform -- uid: 2139 - type: Window - components: - - pos: 29.5,-5.5 - parent: 82 - type: Transform -- uid: 2140 - type: WallSolid - components: - - pos: -30.5,-23.5 - parent: 82 - type: Transform -- uid: 2141 - type: WallSolid - components: - - pos: -31.5,-23.5 - parent: 82 - type: Transform -- uid: 2142 - type: WallSolid - components: - - pos: -31.5,-24.5 - parent: 82 - type: Transform -- uid: 2143 - type: WallSolid - components: - - pos: -32.5,-24.5 - parent: 82 - type: Transform -- uid: 2144 - type: WallSolid - components: - - pos: -33.5,-24.5 - parent: 82 - type: Transform -- uid: 2145 - type: Grille - components: - - pos: -35.5,-25.5 - parent: 82 - type: Transform -- uid: 2146 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-20.5 - parent: 82 - type: Transform -- uid: 2147 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-19.5 - parent: 82 - type: Transform -- uid: 2148 - type: SurveillanceCameraService - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-13.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - type: SurveillanceCamera -- uid: 2149 - type: WallSolid - components: - - pos: -36.5,-13.5 - parent: 82 - type: Transform -- uid: 2150 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,35.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2151 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-25.5 - parent: 82 - type: Transform -- uid: 2152 - type: GasMixer - components: - - rot: 1.5707963267948966 rad - pos: 3.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2153 - type: DisposalUnit - components: - - pos: -32.5,-25.5 - parent: 82 - type: Transform -- uid: 2154 - type: chem_dispenser - components: - - pos: -33.5,-27.5 - parent: 82 - type: Transform -- uid: 2155 - type: TableReinforcedGlass - components: - - pos: -34.5,-28.5 - parent: 82 - type: Transform -- uid: 2156 - type: chem_master - components: - - pos: -33.5,-28.5 - parent: 82 - type: Transform -- uid: 2157 - type: WallReinforced - components: - - pos: -2.5,-19.5 - parent: 82 - type: Transform -- uid: 2158 - type: WallReinforced - components: - - pos: -2.5,-20.5 - parent: 82 - type: Transform -- uid: 2159 - type: WallReinforced - components: - - pos: -2.5,-21.5 - parent: 82 - type: Transform -- uid: 2160 - type: WallSolid - components: - - pos: -39.5,-13.5 - parent: 82 - type: Transform -- uid: 2161 - type: WallSolid - components: - - pos: -39.5,-14.5 - parent: 82 - type: Transform -- uid: 2162 - type: WallSolid - components: - - pos: -39.5,-15.5 - parent: 82 - type: Transform -- uid: 2163 - type: WallSolid - components: - - pos: -20.5,5.5 - parent: 82 - type: Transform -- uid: 2164 - type: WallSolid - components: - - pos: -20.5,4.5 - parent: 82 - type: Transform -- uid: 2165 - type: WindoorServiceLocked - components: - - pos: -14.5,-40.5 - parent: 82 - type: Transform -- uid: 2166 - type: WallSolid - components: - - pos: -40.5,-24.5 - parent: 82 - type: Transform -- uid: 2167 - type: WallSolid - components: - - pos: 29.5,47.5 - parent: 82 - type: Transform -- uid: 2168 - type: WallSolid - components: - - pos: 29.5,46.5 - parent: 82 - type: Transform -- uid: 2169 - type: WallSolid - components: - - pos: 29.5,45.5 - parent: 82 - type: Transform -- uid: 2170 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -6.5,36.5 - parent: 82 - type: Transform -- uid: 2171 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: -16.5,-17.5 - parent: 82 - type: Transform -- uid: 2172 - type: CableApcExtension - components: - - pos: 13.5,-18.5 - parent: 82 - type: Transform -- uid: 2173 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 17.5,-14.5 - parent: 82 - type: Transform -- uid: 2174 - type: WallSolid - components: - - pos: -43.5,-17.5 - parent: 82 - type: Transform -- uid: 2175 - type: WallSolid - components: - - pos: -43.5,-16.5 - parent: 82 - type: Transform -- uid: 2176 - type: WallSolid - components: - - pos: -43.5,-18.5 - parent: 82 - type: Transform -- uid: 2177 - type: WallSolid - components: - - pos: -43.5,-19.5 - parent: 82 - type: Transform -- uid: 2178 - type: GasThermoMachineFreezer - components: - - pos: -38.5,-14.5 - parent: 82 - type: Transform -- uid: 2179 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -38.5,-15.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 2180 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -38.5,-17.5 - parent: 82 - type: Transform -- uid: 2181 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -38.5,-18.5 - parent: 82 - type: Transform -- uid: 2182 - type: WindoorServiceLocked - components: - - rot: 3.141592653589793 rad - pos: -14.5,-35.5 - parent: 82 - type: Transform -- uid: 2183 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -38.5,-21.5 - parent: 82 - type: Transform -- uid: 2184 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2185 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -38.5,-17.5 - parent: 82 - type: Transform -- uid: 2186 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -38.5,-18.5 - parent: 82 - type: Transform -- uid: 2187 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -38.5,-21.5 - parent: 82 - type: Transform -- uid: 2188 - type: WindowTintedDirectional - components: - - pos: -13.5,-37.5 - parent: 82 - type: Transform -- uid: 2189 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2190 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 1.5,-20.5 - parent: 82 - type: Transform -- uid: 2191 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 13.5,-22.5 - parent: 82 - type: Transform -- uid: 2192 - type: WallSolid - components: - - pos: -38.5,-8.5 - parent: 82 - type: Transform -- uid: 2193 - type: WallSolid - components: - - pos: -35.5,-8.5 - parent: 82 - type: Transform -- uid: 2194 - type: WallSolid - components: - - pos: -26.5,-12.5 - parent: 82 - type: Transform -- uid: 2195 - type: WallSolid - components: - - pos: -37.5,-8.5 - parent: 82 - type: Transform -- uid: 2196 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -39.5,-9.5 - parent: 82 - type: Transform -- uid: 2197 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -39.5,-10.5 - parent: 82 - type: Transform -- uid: 2198 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -39.5,-11.5 - parent: 82 - type: Transform -- uid: 2199 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 1.5,-21.5 - parent: 82 - type: Transform -- uid: 2200 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 13.5,-19.5 - parent: 82 - type: Transform -- uid: 2201 - type: Railing - components: - - pos: -26.5,-17.5 - parent: 82 - type: Transform -- uid: 2202 - type: Railing - components: - - pos: -25.5,-17.5 - parent: 82 - type: Transform -- uid: 2203 - type: Railing - components: - - pos: -24.5,-17.5 - parent: 82 - type: Transform -- uid: 2204 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-17.5 - parent: 82 - type: Transform -- uid: 2205 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-18.5 - parent: 82 - type: Transform -- uid: 2206 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-19.5 - parent: 82 - type: Transform -- uid: 2207 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-20.5 - parent: 82 - type: Transform -- uid: 2208 - type: Table - components: - - pos: -48.5,54.5 - parent: 82 - type: Transform -- uid: 2209 - type: Catwalk - components: - - pos: -50.5,53.5 - parent: 82 - type: Transform -- uid: 2210 - type: ClosetChefFilled - components: - - pos: -38.5,-6.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2211 - type: Catwalk - components: - - pos: -51.5,53.5 - parent: 82 - type: Transform -- uid: 2212 - type: FloorDrain - components: - - pos: -36.5,-14.5 - parent: 82 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 2213 - type: TableReinforced - components: - - pos: 38.5,29.5 - parent: 82 - type: Transform -- uid: 2214 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 2.5,34.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2215 - type: TableReinforced - components: - - pos: 38.5,30.5 - parent: 82 - type: Transform -- uid: 2216 - type: SmokingPipeFilledCannabis - components: - - pos: -18.599516,-10.280319 - parent: 82 - type: Transform -- uid: 2217 - type: WallSolid - components: - - pos: -38.5,-26.5 - parent: 82 - type: Transform -- uid: 2218 - type: Window - components: - - pos: -37.5,-25.5 - parent: 82 - type: Transform -- uid: 2219 - type: Window - components: - - pos: -35.5,-25.5 - parent: 82 - type: Transform -- uid: 2220 - type: CableHV - components: - - pos: 16.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2221 - type: WallSolid - components: - - pos: -38.5,-27.5 - parent: 82 - type: Transform -- uid: 2222 - type: WallSolid - components: - - pos: -38.5,-28.5 - parent: 82 - type: Transform -- uid: 2223 - type: WallSolid - components: - - pos: -38.5,-29.5 - parent: 82 - type: Transform -- uid: 2224 - type: WallSolid - components: - - pos: -37.5,-29.5 - parent: 82 - type: Transform -- uid: 2225 - type: CableHV - components: - - pos: 16.5,-13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2226 - type: WallSolid - components: - - pos: -35.5,-29.5 - parent: 82 - type: Transform -- uid: 2227 - type: WallSolid - components: - - pos: -34.5,-29.5 - parent: 82 - type: Transform -- uid: 2228 - type: Grille - components: - - pos: -24.5,5.5 - parent: 82 - type: Transform -- uid: 2229 - type: GasPipeStraight - components: - - pos: 6.5,32.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2230 - type: CableHV - components: - - pos: 16.5,-15.5 - parent: 82 - type: Transform -- uid: 2231 - type: WallSolid - components: - - pos: -25.5,6.5 - parent: 82 - type: Transform -- uid: 2232 - type: WallSolid - components: - - pos: -29.5,-29.5 - parent: 82 - type: Transform -- uid: 2233 - type: WallSolid - components: - - pos: -28.5,-29.5 - parent: 82 - type: Transform -- uid: 2234 - type: WallSolid - components: - - pos: -28.5,-28.5 - parent: 82 - type: Transform -- uid: 2235 - type: Grille - components: - - pos: -24.5,3.5 - parent: 82 - type: Transform -- uid: 2236 - type: Grille - components: - - pos: -24.5,2.5 - parent: 82 - type: Transform -- uid: 2237 - type: WallSolid - components: - - pos: -24.5,6.5 - parent: 82 - type: Transform -- uid: 2238 - type: GasPipeStraight - components: - - pos: 6.5,33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2239 - type: chem_master - components: - - pos: -29.5,-24.5 - parent: 82 - type: Transform -- uid: 2240 - type: chem_dispenser - components: - - pos: -30.5,-24.5 - parent: 82 - type: Transform -- uid: 2241 - type: WindoorChemistryLocked - components: - - rot: 3.141592653589793 rad - pos: -32.5,-29.5 - parent: 82 - type: Transform -- uid: 2242 - type: WindoorChemistryLocked - components: - - rot: 3.141592653589793 rad - pos: -31.5,-29.5 - parent: 82 - type: Transform -- uid: 2243 - type: WindoorChemistryLocked - components: - - pos: -36.5,-25.5 - parent: 82 - type: Transform -- uid: 2244 - type: WindoorChemistryLocked - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-25.5 - parent: 82 - type: Transform -- uid: 2245 - type: LockerChemistryFilled - components: - - pos: -37.5,-26.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2246 - type: LockerChemistryFilled - components: - - pos: -37.5,-27.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2247 - type: TableReinforcedGlass - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-25.5 - parent: 82 - type: Transform -- uid: 2248 - type: chem_master - components: - - pos: -29.5,-28.5 - parent: 82 - type: Transform -- uid: 2249 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 17.5,-18.5 - parent: 82 - type: Transform -- uid: 2250 - type: TableReinforcedGlass - components: - - pos: -29.5,-26.5 - parent: 82 - type: Transform -- uid: 2251 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 17.5,-16.5 - parent: 82 - type: Transform -- uid: 2252 - type: TableReinforced - components: - - pos: -20.5,-39.5 - parent: 82 - type: Transform -- uid: 2253 - type: TableReinforcedGlass - components: - - pos: -35.5,-28.5 - parent: 82 - type: Transform -- uid: 2254 - type: WallSolid - components: - - pos: -23.5,-31.5 - parent: 82 - type: Transform -- uid: 2255 - type: GasPipeBend - components: - - pos: 6.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2256 - type: WallReinforced - components: - - pos: -1.5,-22.5 - parent: 82 - type: Transform -- uid: 2257 - type: WallReinforced - components: - - pos: -0.5,-22.5 - parent: 82 - type: Transform -- uid: 2258 - type: TableReinforced - components: - - pos: -20.5,-38.5 - parent: 82 - type: Transform -- uid: 2259 - type: WallReinforced - components: - - pos: 15.5,-22.5 - parent: 82 - type: Transform -- uid: 2260 - type: LockerSecurity - components: - - pos: -27.5,-40.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2261 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2262 - type: WallReinforced - components: - - pos: 16.5,-22.5 - parent: 82 - type: Transform -- uid: 2263 - type: AirSensor - components: - - pos: -4.5,-18.5 - parent: 82 - type: Transform -- uid: 2264 - type: WallReinforced - components: - - pos: 17.5,-20.5 - parent: 82 - type: Transform -- uid: 2265 - type: WallReinforced - components: - - pos: 17.5,-19.5 - parent: 82 - type: Transform -- uid: 2266 - type: Grille - components: - - pos: -24.5,0.5 - parent: 82 - type: Transform -- uid: 2267 - type: WallReinforced - components: - - pos: -41.5,-24.5 - parent: 82 - type: Transform -- uid: 2268 - type: WallReinforced - components: - - pos: -41.5,-23.5 - parent: 82 - type: Transform -- uid: 2269 - type: WallReinforced - components: - - pos: -42.5,-23.5 - parent: 82 - type: Transform -- uid: 2270 - type: WallReinforced - components: - - pos: -43.5,-23.5 - parent: 82 - type: Transform -- uid: 2271 - type: WallSolid - components: - - pos: -40.5,-37.5 - parent: 82 - type: Transform -- uid: 2272 - type: Grille - components: - - pos: 10.5,-19.5 - parent: 82 - type: Transform -- uid: 2273 - type: Grille - components: - - pos: 11.5,-19.5 - parent: 82 - type: Transform -- uid: 2274 - type: Grille - components: - - pos: 12.5,-19.5 - parent: 82 - type: Transform -- uid: 2275 - type: WallSolid - components: - - pos: -40.5,-38.5 - parent: 82 - type: Transform -- uid: 2276 - type: Grille - components: - - pos: 2.5,-22.5 - parent: 82 - type: Transform -- uid: 2277 - type: Grille - components: - - pos: 3.5,-22.5 - parent: 82 - type: Transform -- uid: 2278 - type: Grille - components: - - pos: 4.5,-22.5 - parent: 82 - type: Transform -- uid: 2279 - type: Grille - components: - - pos: 5.5,-22.5 - parent: 82 - type: Transform -- uid: 2280 - type: WallSolid - components: - - pos: -42.5,-38.5 - parent: 82 - type: Transform -- uid: 2281 - type: Grille - components: - - pos: 12.5,-22.5 - parent: 82 - type: Transform -- uid: 2282 - type: Grille - components: - - pos: 11.5,-22.5 - parent: 82 - type: Transform -- uid: 2283 - type: Grille - components: - - pos: 10.5,-22.5 - parent: 82 - type: Transform -- uid: 2284 - type: Grille - components: - - pos: 9.5,-22.5 - parent: 82 - type: Transform -- uid: 2285 - type: WallReinforced - components: - - pos: 6.5,-22.5 - parent: 82 - type: Transform -- uid: 2286 - type: WallReinforced - components: - - pos: 7.5,-22.5 - parent: 82 - type: Transform -- uid: 2287 - type: WallReinforced - components: - - pos: 8.5,-22.5 - parent: 82 - type: Transform -- uid: 2288 - type: CarpetBlue - components: - - pos: -42.5,-36.5 - parent: 82 - type: Transform -- uid: 2289 - type: ReinforcedWindow - components: - - pos: 2.5,-22.5 - parent: 82 - type: Transform -- uid: 2290 - type: ReinforcedWindow - components: - - pos: 3.5,-22.5 - parent: 82 - type: Transform -- uid: 2291 - type: ReinforcedWindow - components: - - pos: 4.5,-22.5 - parent: 82 - type: Transform -- uid: 2292 - type: ReinforcedWindow - components: - - pos: 5.5,-22.5 - parent: 82 - type: Transform -- uid: 2293 - type: ReinforcedWindow - components: - - pos: 9.5,-22.5 - parent: 82 - type: Transform -- uid: 2294 - type: ReinforcedWindow - components: - - pos: 10.5,-22.5 - parent: 82 - type: Transform -- uid: 2295 - type: ReinforcedWindow - components: - - pos: 11.5,-22.5 - parent: 82 - type: Transform -- uid: 2296 - type: ReinforcedWindow - components: - - pos: 12.5,-22.5 - parent: 82 - type: Transform -- uid: 2297 - type: TintedWindow - components: - - pos: -41.5,-39.5 - parent: 82 - type: Transform -- uid: 2298 - type: WallReinforced - components: - - pos: 0.5,-27.5 - parent: 82 - type: Transform -- uid: 2299 - type: WallReinforced - components: - - pos: -0.5,-27.5 - parent: 82 - type: Transform -- uid: 2300 - type: WallReinforced - components: - - pos: -2.5,-26.5 - parent: 82 - type: Transform -- uid: 2301 - type: WallReinforced - components: - - pos: -3.5,-26.5 - parent: 82 - type: Transform -- uid: 2302 - type: WallReinforced - components: - - pos: -1.5,-26.5 - parent: 82 - type: Transform -- uid: 2303 - type: WallReinforced - components: - - pos: -3.5,-27.5 - parent: 82 - type: Transform -- uid: 2304 - type: WallReinforced - components: - - pos: -1.5,-27.5 - parent: 82 - type: Transform -- uid: 2305 - type: WallReinforced - components: - - pos: -3.5,-28.5 - parent: 82 - type: Transform -- uid: 2306 - type: WallReinforced - components: - - pos: -3.5,-29.5 - parent: 82 - type: Transform -- uid: 2307 - type: WallReinforced - components: - - pos: -3.5,-30.5 - parent: 82 - type: Transform -- uid: 2308 - type: WallSolid - components: - - pos: -3.5,-32.5 - parent: 82 - type: Transform -- uid: 2309 - type: Grille - components: - - pos: 1.5,-27.5 - parent: 82 - type: Transform -- uid: 2310 - type: Grille - components: - - pos: 2.5,-27.5 - parent: 82 - type: Transform -- uid: 2311 - type: Grille - components: - - pos: 3.5,-27.5 - parent: 82 - type: Transform -- uid: 2312 - type: Grille - components: - - pos: 4.5,-27.5 - parent: 82 - type: Transform -- uid: 2313 - type: Grille - components: - - pos: 5.5,-27.5 - parent: 82 - type: Transform -- uid: 2314 - type: Grille - components: - - pos: 9.5,-27.5 - parent: 82 - type: Transform -- uid: 2315 - type: Grille - components: - - pos: 10.5,-27.5 - parent: 82 - type: Transform -- uid: 2316 - type: Grille - components: - - pos: 11.5,-27.5 - parent: 82 - type: Transform -- uid: 2317 - type: Grille - components: - - pos: 12.5,-27.5 - parent: 82 - type: Transform -- uid: 2318 - type: Grille - components: - - pos: 13.5,-27.5 - parent: 82 - type: Transform -- uid: 2319 - type: WallReinforced - components: - - pos: 6.5,-27.5 - parent: 82 - type: Transform -- uid: 2320 - type: WallReinforced - components: - - pos: 7.5,-27.5 - parent: 82 - type: Transform -- uid: 2321 - type: WallReinforced - components: - - pos: 8.5,-27.5 - parent: 82 - type: Transform -- uid: 2322 - type: ReinforcedWindow - components: - - pos: 1.5,-27.5 - parent: 82 - type: Transform -- uid: 2323 - type: ReinforcedWindow - components: - - pos: 2.5,-27.5 - parent: 82 - type: Transform -- uid: 2324 - type: ReinforcedWindow - components: - - pos: 3.5,-27.5 - parent: 82 - type: Transform -- uid: 2325 - type: ReinforcedWindow - components: - - pos: 4.5,-27.5 - parent: 82 - type: Transform -- uid: 2326 - type: ReinforcedWindow - components: - - pos: 5.5,-27.5 - parent: 82 - type: Transform -- uid: 2327 - type: ReinforcedWindow - components: - - pos: 9.5,-27.5 - parent: 82 - type: Transform -- uid: 2328 - type: ReinforcedWindow - components: - - pos: 10.5,-27.5 - parent: 82 - type: Transform -- uid: 2329 - type: ReinforcedWindow - components: - - pos: 11.5,-27.5 - parent: 82 - type: Transform -- uid: 2330 - type: ReinforcedWindow - components: - - pos: 12.5,-27.5 - parent: 82 - type: Transform -- uid: 2331 - type: ReinforcedWindow - components: - - pos: 13.5,-27.5 - parent: 82 - type: Transform -- uid: 2332 - type: WallReinforced - components: - - pos: 14.5,-27.5 - parent: 82 - type: Transform -- uid: 2333 - type: WallReinforced - components: - - pos: 15.5,-27.5 - parent: 82 - type: Transform -- uid: 2334 - type: WallReinforced - components: - - pos: 16.5,-27.5 - parent: 82 - type: Transform -- uid: 2335 - type: WallReinforced - components: - - pos: 16.5,-26.5 - parent: 82 - type: Transform -- uid: 2336 - type: WallReinforced - components: - - pos: 17.5,-26.5 - parent: 82 - type: Transform -- uid: 2337 - type: WallReinforced - components: - - pos: 18.5,-26.5 - parent: 82 - type: Transform -- uid: 2338 - type: WallReinforced - components: - - pos: 18.5,-27.5 - parent: 82 - type: Transform -- uid: 2339 - type: WallReinforced - components: - - pos: 7.5,-26.5 - parent: 82 - type: Transform -- uid: 2340 - type: WallReinforced - components: - - pos: 18.5,-28.5 - parent: 82 - type: Transform -- uid: 2341 - type: WallReinforced - components: - - pos: 18.5,-29.5 - parent: 82 - type: Transform -- uid: 2342 - type: WallReinforced - components: - - pos: -2.5,-30.5 - parent: 82 - type: Transform -- uid: 2343 - type: WallReinforced - components: - - pos: -1.5,-30.5 - parent: 82 - type: Transform -- uid: 2344 - type: WallReinforced - components: - - pos: -0.5,-30.5 - parent: 82 - type: Transform -- uid: 2345 - type: WallReinforced - components: - - pos: 3.5,-30.5 - parent: 82 - type: Transform -- uid: 2346 - type: WallReinforced - components: - - pos: 4.5,-30.5 - parent: 82 - type: Transform -- uid: 2347 - type: WallReinforced - components: - - pos: 5.5,-30.5 - parent: 82 - type: Transform -- uid: 2348 - type: WallReinforced - components: - - pos: 9.5,-30.5 - parent: 82 - type: Transform -- uid: 2349 - type: WallReinforced - components: - - pos: 10.5,-30.5 - parent: 82 - type: Transform -- uid: 2350 - type: WallReinforced - components: - - pos: 11.5,-30.5 - parent: 82 - type: Transform -- uid: 2351 - type: WallReinforced - components: - - pos: 15.5,-30.5 - parent: 82 - type: Transform -- uid: 2352 - type: WallReinforced - components: - - pos: 16.5,-30.5 - parent: 82 - type: Transform -- uid: 2353 - type: WallReinforced - components: - - pos: 17.5,-30.5 - parent: 82 - type: Transform -- uid: 2354 - type: WallReinforced - components: - - pos: 18.5,-30.5 - parent: 82 - type: Transform -- uid: 2355 - type: WallSolid - components: - - pos: 4.5,-31.5 - parent: 82 - type: Transform -- uid: 2356 - type: WallSolid - components: - - pos: -0.5,-31.5 - parent: 82 - type: Transform -- uid: 2357 - type: WallSolid - components: - - pos: 10.5,-31.5 - parent: 82 - type: Transform -- uid: 2358 - type: WallSolid - components: - - pos: 15.5,-31.5 - parent: 82 - type: Transform -- uid: 2359 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -6.5,35.5 - parent: 82 - type: Transform -- uid: 2360 - type: WallSolid - components: - - pos: -8.5,-28.5 - parent: 82 - type: Transform -- uid: 2361 - type: WallSolid - components: - - pos: -7.5,-28.5 - parent: 82 - type: Transform -- uid: 2362 - type: WallSolid - components: - - pos: -7.5,-29.5 - parent: 82 - type: Transform -- uid: 2363 - type: WallSolid - components: - - pos: -7.5,-30.5 - parent: 82 - type: Transform -- uid: 2364 - type: WallSolid - components: - - pos: -7.5,-31.5 - parent: 82 - type: Transform -- uid: 2365 - type: WallSolid - components: - - pos: -14.5,-21.5 - parent: 82 - type: Transform -- uid: 2366 - type: WallSolid - components: - - pos: -13.5,-21.5 - parent: 82 - type: Transform -- uid: 2367 - type: WallSolid - components: - - pos: -12.5,-21.5 - parent: 82 - type: Transform -- uid: 2368 - type: WallSolid - components: - - pos: -12.5,-20.5 - parent: 82 - type: Transform -- uid: 2369 - type: WallSolid - components: - - pos: -3.5,-33.5 - parent: 82 - type: Transform -- uid: 2370 - type: ReinforcedWindow - components: - - pos: 0.5,-30.5 - parent: 82 - type: Transform -- uid: 2371 - type: WallSolid - components: - - pos: -18.5,-23.5 - parent: 82 - type: Transform -- uid: 2372 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -43.5,-22.5 - parent: 82 - type: Transform -- uid: 2373 - type: WallSolid - components: - - pos: -16.5,-23.5 - parent: 82 - type: Transform -- uid: 2374 - type: WallSolid - components: - - pos: -15.5,-23.5 - parent: 82 - type: Transform -- uid: 2375 - type: WallSolid - components: - - pos: -14.5,-23.5 - parent: 82 - type: Transform -- uid: 2376 - type: WallSolid - components: - - pos: -13.5,-23.5 - parent: 82 - type: Transform -- uid: 2377 - type: WallSolid - components: - - pos: -12.5,-23.5 - parent: 82 - type: Transform -- uid: 2378 - type: WallSolid - components: - - pos: -11.5,-23.5 - parent: 82 - type: Transform -- uid: 2379 - type: WallSolid - components: - - pos: -10.5,-23.5 - parent: 82 - type: Transform -- uid: 2380 - type: WallSolid - components: - - pos: -9.5,-23.5 - parent: 82 - type: Transform -- uid: 2381 - type: WallSolid - components: - - pos: -9.5,-22.5 - parent: 82 - type: Transform -- uid: 2382 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -6.5,34.5 - parent: 82 - type: Transform -- uid: 2383 - type: WallSolid - components: - - pos: -11.5,-28.5 - parent: 82 - type: Transform -- uid: 2384 - type: WallSolid - components: - - pos: -11.5,-27.5 - parent: 82 - type: Transform -- uid: 2385 - type: WallSolid - components: - - pos: 53.5,5.5 - parent: 82 - type: Transform -- uid: 2386 - type: WallReinforced - components: - - pos: 42.5,5.5 - parent: 82 - type: Transform -- uid: 2387 - type: WallSolid - components: - - pos: -14.5,-27.5 - parent: 82 - type: Transform -- uid: 2388 - type: WallSolid - components: - - pos: -15.5,-27.5 - parent: 82 - type: Transform -- uid: 2389 - type: WallSolid - components: - - pos: -16.5,-27.5 - parent: 82 - type: Transform -- uid: 2390 - type: WallSolid - components: - - pos: -17.5,-27.5 - parent: 82 - type: Transform -- uid: 2391 - type: WallSolid - components: - - pos: -18.5,-27.5 - parent: 82 - type: Transform -- uid: 2392 - type: WallSolid - components: - - pos: -19.5,-27.5 - parent: 82 - type: Transform -- uid: 2393 - type: WallSolid - components: - - pos: -20.5,-27.5 - parent: 82 - type: Transform -- uid: 2394 - type: Grille - components: - - pos: -38.5,-23.5 - parent: 82 - type: Transform -- uid: 2395 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-28.5 - parent: 82 - type: Transform -- uid: 2396 - type: WallSolid - components: - - pos: 30.5,-3.5 - parent: 82 - type: Transform -- uid: 2397 - type: WallSolid - components: - - pos: -3.5,-31.5 - parent: 82 - type: Transform -- uid: 2398 - type: WallSolid - components: - - pos: -2.5,-33.5 - parent: 82 - type: Transform -- uid: 2399 - type: WallSolid - components: - - pos: -0.5,-33.5 - parent: 82 - type: Transform -- uid: 2400 - type: WallSolid - components: - - pos: -1.5,-33.5 - parent: 82 - type: Transform -- uid: 2401 - type: WallSolid - components: - - pos: -0.5,-32.5 - parent: 82 - type: Transform -- uid: 2402 - type: WallSolid - components: - - pos: 4.5,-32.5 - parent: 82 - type: Transform -- uid: 2403 - type: WallSolid - components: - - pos: 4.5,-33.5 - parent: 82 - type: Transform -- uid: 2404 - type: WallSolid - components: - - pos: 3.5,-33.5 - parent: 82 - type: Transform -- uid: 2405 - type: WallSolid - components: - - pos: 2.5,-33.5 - parent: 82 - type: Transform -- uid: 2406 - type: WallSolid - components: - - pos: 10.5,-32.5 - parent: 82 - type: Transform -- uid: 2407 - type: WallSolid - components: - - pos: 10.5,-33.5 - parent: 82 - type: Transform -- uid: 2408 - type: WallSolid - components: - - pos: 9.5,-33.5 - parent: 82 - type: Transform -- uid: 2409 - type: WallSolid - components: - - pos: 8.5,-33.5 - parent: 82 - type: Transform -- uid: 2410 - type: WallSolid - components: - - pos: 5.5,-33.5 - parent: 82 - type: Transform -- uid: 2411 - type: WallSolid - components: - - pos: 11.5,-33.5 - parent: 82 - type: Transform -- uid: 2412 - type: WallSolid - components: - - pos: 12.5,-33.5 - parent: 82 - type: Transform -- uid: 2413 - type: WallSolid - components: - - pos: 15.5,-32.5 - parent: 82 - type: Transform -- uid: 2414 - type: WallSolid - components: - - pos: 15.5,-33.5 - parent: 82 - type: Transform -- uid: 2415 - type: WallSolid - components: - - pos: 18.5,-33.5 - parent: 82 - type: Transform -- uid: 2416 - type: WallSolid - components: - - pos: 18.5,-32.5 - parent: 82 - type: Transform -- uid: 2417 - type: WallSolid - components: - - pos: 18.5,-31.5 - parent: 82 - type: Transform -- uid: 2418 - type: ReinforcedWindow - components: - - pos: 1.5,-30.5 - parent: 82 - type: Transform -- uid: 2419 - type: ReinforcedWindow - components: - - pos: 2.5,-30.5 - parent: 82 - type: Transform -- uid: 2420 - type: ReinforcedWindow - components: - - pos: 6.5,-30.5 - parent: 82 - type: Transform -- uid: 2421 - type: ReinforcedWindow - components: - - pos: 7.5,-30.5 - parent: 82 - type: Transform -- uid: 2422 - type: ReinforcedWindow - components: - - pos: 8.5,-30.5 - parent: 82 - type: Transform -- uid: 2423 - type: ReinforcedWindow - components: - - pos: 12.5,-30.5 - parent: 82 - type: Transform -- uid: 2424 - type: ReinforcedWindow - components: - - pos: 13.5,-30.5 - parent: 82 - type: Transform -- uid: 2425 - type: ReinforcedWindow - components: - - pos: 14.5,-30.5 - parent: 82 - type: Transform -- uid: 2426 - type: Grille - components: - - pos: 0.5,-30.5 - parent: 82 - type: Transform -- uid: 2427 - type: Grille - components: - - pos: 1.5,-30.5 - parent: 82 - type: Transform -- uid: 2428 - type: Grille - components: - - pos: 2.5,-30.5 - parent: 82 - type: Transform -- uid: 2429 - type: Grille - components: - - pos: 6.5,-30.5 - parent: 82 - type: Transform -- uid: 2430 - type: Grille - components: - - pos: 7.5,-30.5 - parent: 82 - type: Transform -- uid: 2431 - type: Grille - components: - - pos: 8.5,-30.5 - parent: 82 - type: Transform -- uid: 2432 - type: Grille - components: - - pos: 12.5,-30.5 - parent: 82 - type: Transform -- uid: 2433 - type: Grille - components: - - pos: 13.5,-30.5 - parent: 82 - type: Transform -- uid: 2434 - type: Grille - components: - - pos: 14.5,-30.5 - parent: 82 - type: Transform -- uid: 2435 - type: WallSolid - components: - - pos: -3.5,-36.5 - parent: 82 - type: Transform -- uid: 2436 - type: WallSolid - components: - - pos: -2.5,-36.5 - parent: 82 - type: Transform -- uid: 2437 - type: WallSolid - components: - - pos: 0.5,-36.5 - parent: 82 - type: Transform -- uid: 2438 - type: WallSolid - components: - - pos: 1.5,-36.5 - parent: 82 - type: Transform -- uid: 2439 - type: WallSolid - components: - - pos: 2.5,-36.5 - parent: 82 - type: Transform -- uid: 2440 - type: WallSolid - components: - - pos: 6.5,-36.5 - parent: 82 - type: Transform -- uid: 2441 - type: WallSolid - components: - - pos: 5.5,-36.5 - parent: 82 - type: Transform -- uid: 2442 - type: WallSolid - components: - - pos: 18.5,-37.5 - parent: 82 - type: Transform -- uid: 2443 - type: WallSolid - components: - - pos: 8.5,-36.5 - parent: 82 - type: Transform -- uid: 2444 - type: WallSolid - components: - - pos: 9.5,-36.5 - parent: 82 - type: Transform -- uid: 2445 - type: WallSolid - components: - - pos: 18.5,-38.5 - parent: 82 - type: Transform -- uid: 2446 - type: WallSolid - components: - - pos: 18.5,-39.5 - parent: 82 - type: Transform -- uid: 2447 - type: WallSolid - components: - - pos: 17.5,-36.5 - parent: 82 - type: Transform -- uid: 2448 - type: WallSolid - components: - - pos: 18.5,-36.5 - parent: 82 - type: Transform -- uid: 2449 - type: WallSolid - components: - - pos: 14.5,-36.5 - parent: 82 - type: Transform -- uid: 2450 - type: WallSolid - components: - - pos: 13.5,-36.5 - parent: 82 - type: Transform -- uid: 2451 - type: WallSolid - components: - - pos: 12.5,-36.5 - parent: 82 - type: Transform -- uid: 2452 - type: WallSolid - components: - - pos: 18.5,-40.5 - parent: 82 - type: Transform -- uid: 2453 - type: WallSolid - components: - - pos: 17.5,-40.5 - parent: 82 - type: Transform -- uid: 2454 - type: WallSolid - components: - - pos: 16.5,-40.5 - parent: 82 - type: Transform -- uid: 2455 - type: WallSolid - components: - - pos: 15.5,-40.5 - parent: 82 - type: Transform -- uid: 2456 - type: WallSolid - components: - - pos: 14.5,-40.5 - parent: 82 - type: Transform -- uid: 2457 - type: WallSolid - components: - - pos: 14.5,-39.5 - parent: 82 - type: Transform -- uid: 2458 - type: WallSolid - components: - - pos: 14.5,-38.5 - parent: 82 - type: Transform -- uid: 2459 - type: WallSolid - components: - - pos: 13.5,-38.5 - parent: 82 - type: Transform -- uid: 2460 - type: WallSolid - components: - - pos: 13.5,-37.5 - parent: 82 - type: Transform -- uid: 2461 - type: WallSolid - components: - - pos: 13.5,-40.5 - parent: 82 - type: Transform -- uid: 2462 - type: WallSolid - components: - - pos: 9.5,-37.5 - parent: 82 - type: Transform -- uid: 2463 - type: WallSolid - components: - - pos: 9.5,-38.5 - parent: 82 - type: Transform -- uid: 2464 - type: WallSolid - components: - - pos: 9.5,-39.5 - parent: 82 - type: Transform -- uid: 2465 - type: WallSolid - components: - - pos: 10.5,-39.5 - parent: 82 - type: Transform -- uid: 2466 - type: WallSolid - components: - - pos: 10.5,-40.5 - parent: 82 - type: Transform -- uid: 2467 - type: WallSolid - components: - - pos: 11.5,-40.5 - parent: 82 - type: Transform -- uid: 2468 - type: WallSolid - components: - - pos: 12.5,-40.5 - parent: 82 - type: Transform -- uid: 2469 - type: WallSolid - components: - - pos: 5.5,-37.5 - parent: 82 - type: Transform -- uid: 2470 - type: WallSolid - components: - - pos: 5.5,-38.5 - parent: 82 - type: Transform -- uid: 2471 - type: WallSolid - components: - - pos: 5.5,-39.5 - parent: 82 - type: Transform -- uid: 2472 - type: WallSolid - components: - - pos: 4.5,-39.5 - parent: 82 - type: Transform -- uid: 2473 - type: WallSolid - components: - - pos: 4.5,-40.5 - parent: 82 - type: Transform -- uid: 2474 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -15.5,-35.5 - parent: 82 - type: Transform -- uid: 2475 - type: WallSolid - components: - - pos: 2.5,-40.5 - parent: 82 - type: Transform -- uid: 2476 - type: WallSolid - components: - - pos: 1.5,-40.5 - parent: 82 - type: Transform -- uid: 2477 - type: WallSolid - components: - - pos: 0.5,-40.5 - parent: 82 - type: Transform -- uid: 2478 - type: WallSolid - components: - - pos: -0.5,-40.5 - parent: 82 - type: Transform -- uid: 2479 - type: WallSolid - components: - - pos: -1.5,-40.5 - parent: 82 - type: Transform -- uid: 2480 - type: WallSolid - components: - - pos: -2.5,-40.5 - parent: 82 - type: Transform -- uid: 2481 - type: WallSolid - components: - - pos: -3.5,-40.5 - parent: 82 - type: Transform -- uid: 2482 - type: WallSolid - components: - - pos: -3.5,-39.5 - parent: 82 - type: Transform -- uid: 2483 - type: WallSolid - components: - - pos: -3.5,-38.5 - parent: 82 - type: Transform -- uid: 2484 - type: WallSolid - components: - - pos: -3.5,-37.5 - parent: 82 - type: Transform -- uid: 2485 - type: WallSolid - components: - - pos: 1.5,-37.5 - parent: 82 - type: Transform -- uid: 2486 - type: WallSolid - components: - - pos: 1.5,-38.5 - parent: 82 - type: Transform -- uid: 2487 - type: WallSolid - components: - - pos: 0.5,-38.5 - parent: 82 - type: Transform -- uid: 2488 - type: WallSolid - components: - - pos: 0.5,-39.5 - parent: 82 - type: Transform -- uid: 2489 - type: WallSolid - components: - - pos: 16.5,-32.5 - parent: 82 - type: Transform -- uid: 2490 - type: WallSolid - components: - - pos: 17.5,-32.5 - parent: 82 - type: Transform -- uid: 2491 - type: WallSolid - components: - - pos: 4.5,-41.5 - parent: 82 - type: Transform -- uid: 2492 - type: WallSolid - components: - - pos: 4.5,-42.5 - parent: 82 - type: Transform -- uid: 2493 - type: WallSolid - components: - - pos: 4.5,-43.5 - parent: 82 - type: Transform -- uid: 2494 - type: WallSolid - components: - - pos: 5.5,-43.5 - parent: 82 - type: Transform -- uid: 2495 - type: WallSolid - components: - - pos: 6.5,-43.5 - parent: 82 - type: Transform -- uid: 2496 - type: ToiletEmpty - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-42.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 2497 - type: WallSolid - components: - - pos: 8.5,-43.5 - parent: 82 - type: Transform -- uid: 2498 - type: WallSolid - components: - - pos: 9.5,-43.5 - parent: 82 - type: Transform -- uid: 2499 - type: WallSolid - components: - - pos: 10.5,-43.5 - parent: 82 - type: Transform -- uid: 2500 - type: WallSolid - components: - - pos: 10.5,-42.5 - parent: 82 - type: Transform -- uid: 2501 - type: WallSolid - components: - - pos: 10.5,-41.5 - parent: 82 - type: Transform -- uid: 2502 - type: WallSolid - components: - - pos: 6.5,-44.5 - parent: 82 - type: Transform -- uid: 2503 - type: WallSolid - components: - - pos: 6.5,-45.5 - parent: 82 - type: Transform -- uid: 2504 - type: WallSolid - components: - - pos: 6.5,-46.5 - parent: 82 - type: Transform -- uid: 2505 - type: WallSolid - components: - - pos: 7.5,-46.5 - parent: 82 - type: Transform -- uid: 2506 - type: WallSolid - components: - - pos: 8.5,-46.5 - parent: 82 - type: Transform -- uid: 2507 - type: WallSolid - components: - - pos: 9.5,-46.5 - parent: 82 - type: Transform -- uid: 2508 - type: WallSolid - components: - - pos: 10.5,-46.5 - parent: 82 - type: Transform -- uid: 2509 - type: Grille - components: - - pos: -33.5,-29.5 - parent: 82 - type: Transform -- uid: 2510 - type: ToiletEmpty - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-40.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 2511 - type: ToiletEmpty - components: - - pos: 9.5,-40.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 2512 - type: ToiletEmpty - components: - - rot: 3.141592653589793 rad - pos: 9.5,-42.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 2513 - type: TintedWindow - components: - - rot: 3.141592653589793 rad - pos: 5.5,-41.5 - parent: 82 - type: Transform -- uid: 2514 - type: WindowTintedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-41.5 - parent: 82 - type: Transform -- uid: 2515 - type: WindowDirectional - components: - - pos: 9.5,-41.5 - parent: 82 - type: Transform -- uid: 2516 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 9.5,-41.5 - parent: 82 - type: Transform -- uid: 2517 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-42.5 - parent: 82 - type: Transform -- uid: 2518 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-40.5 - parent: 82 - type: Transform -- uid: 2519 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-40.5 - parent: 82 - type: Transform -- uid: 2520 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-42.5 - parent: 82 - type: Transform -- uid: 2521 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 48.5,29.5 - parent: 82 - type: Transform -- uid: 2522 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 48.5,28.5 - parent: 82 - type: Transform -- uid: 2523 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 48.5,27.5 - parent: 82 - type: Transform -- uid: 2524 - type: CableApcExtension - components: - - pos: -37.5,-40.5 - parent: 82 - type: Transform -- uid: 2525 - type: Grille - components: - - pos: -30.5,-29.5 - parent: 82 - type: Transform -- uid: 2526 - type: Grille - components: - - pos: -28.5,-27.5 - parent: 82 - type: Transform -- uid: 2527 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-11.5 - parent: 82 - type: Transform - - devices: - - 22656 - - 14636 - - 13648 - - 13647 - - 2263 - - 8208 - - 8207 - - 22770 - - 22600 - - 10479 - - 22515 - - 22514 - - 22587 - type: DeviceList -- uid: 2528 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-12.5 - parent: 82 - type: Transform -- uid: 2529 - type: ComputerCargoOrders - components: - - rot: -1.5707963267948966 rad - pos: 40.5,30.5 - parent: 82 - type: Transform -- uid: 2530 - type: CableApcExtension - components: - - pos: -38.5,-40.5 - parent: 82 - type: Transform -- uid: 2531 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-31.5 - parent: 82 - type: Transform -- uid: 2532 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-31.5 - parent: 82 - type: Transform -- uid: 2533 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-31.5 - parent: 82 - type: Transform -- uid: 2534 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-31.5 - parent: 82 - type: Transform -- uid: 2535 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-31.5 - parent: 82 - type: Transform -- uid: 2536 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-31.5 - parent: 82 - type: Transform -- uid: 2537 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-31.5 - parent: 82 - type: Transform -- uid: 2538 - type: Grille - components: - - pos: -28.5,-24.5 - parent: 82 - type: Transform -- uid: 2539 - type: Grille - components: - - pos: -28.5,-26.5 - parent: 82 - type: Transform -- uid: 2540 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -38.5,-43.5 - parent: 82 - type: Transform -- uid: 2541 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -43.565845,-36.70192 - parent: 82 - type: Transform -- uid: 2542 - type: TableReinforcedGlass - components: - - pos: -42.5,-34.5 - parent: 82 - type: Transform -- uid: 2543 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-31.5 - parent: 82 - type: Transform -- uid: 2544 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-29.5 - parent: 82 - type: Transform -- uid: 2545 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-30.5 - parent: 82 - type: Transform -- uid: 2546 - type: HandheldCrewMonitor - components: - - rot: 1.5707963267948966 rad - pos: -43.63529,-37.29914 - parent: 82 - type: Transform -- uid: 2547 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-27.5 - parent: 82 - type: Transform -- uid: 2548 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-35.5 - parent: 82 - type: Transform -- uid: 2549 - type: WallReinforced - components: - - pos: 43.5,5.5 - parent: 82 - type: Transform -- uid: 2550 - type: WallReinforced - components: - - pos: 44.5,5.5 - parent: 82 - type: Transform -- uid: 2551 - type: Window - components: - - pos: -21.5,-31.5 - parent: 82 - type: Transform -- uid: 2552 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-32.5 - parent: 82 - type: Transform -- uid: 2553 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-27.5 - parent: 82 - type: Transform -- uid: 2554 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-28.5 - parent: 82 - type: Transform -- uid: 2555 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-29.5 - parent: 82 - type: Transform -- uid: 2556 - type: Window - components: - - pos: -22.5,-31.5 - parent: 82 - type: Transform -- uid: 2557 - type: Grille - components: - - pos: -22.5,-31.5 - parent: 82 - type: Transform -- uid: 2558 - type: WallSolid - components: - - pos: 46.5,38.5 - parent: 82 - type: Transform -- uid: 2559 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-36.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2560 - type: WallSolid - components: - - pos: -19.5,-23.5 - parent: 82 - type: Transform -- uid: 2561 - type: Grille - components: - - pos: -20.5,-28.5 - parent: 82 - type: Transform -- uid: 2562 - type: WallSolid - components: - - pos: 44.5,38.5 - parent: 82 - type: Transform -- uid: 2563 - type: WallReinforced - components: - - pos: 48.5,35.5 - parent: 82 - type: Transform -- uid: 2564 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-33.5 - parent: 82 - type: Transform -- uid: 2565 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-34.5 - parent: 82 - type: Transform -- uid: 2566 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-35.5 - parent: 82 - type: Transform -- uid: 2567 - type: Grille - components: - - pos: 50.5,10.5 - parent: 82 - type: Transform -- uid: 2568 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-33.5 - parent: 82 - type: Transform -- uid: 2569 - type: AirlockChiefMedicalOfficerLocked - components: - - pos: -43.5,-33.5 - parent: 82 - type: Transform -- uid: 2570 - type: WallSolid - components: - - pos: 10.5,-44.5 - parent: 82 - type: Transform -- uid: 2571 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-4.5 - parent: 82 - type: Transform - - devices: - - 2528 - - 13606 - - 13597 - - 13599 - - 13598 - - 3852 - - 22615 - - 5607 - - 5606 - - invalid - - 5603 - - 5604 - - 5605 - type: DeviceList -- uid: 2572 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-9.5 - parent: 82 - type: Transform -- uid: 2573 - type: Window - components: - - pos: -13.5,-31.5 - parent: 82 - type: Transform -- uid: 2574 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-33.5 - parent: 82 - type: Transform -- uid: 2575 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-33.5 - parent: 82 - type: Transform -- uid: 2576 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-34.5 - parent: 82 - type: Transform -- uid: 2577 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-35.5 - parent: 82 - type: Transform -- uid: 2578 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-36.5 - parent: 82 - type: Transform -- uid: 2579 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-29.5 - parent: 82 - type: Transform -- uid: 2580 - type: Grille - components: - - pos: -10.5,-31.5 - parent: 82 - type: Transform -- uid: 2581 - type: Grille - components: - - pos: -9.5,-31.5 - parent: 82 - type: Transform -- uid: 2582 - type: Grille - components: - - pos: -12.5,-31.5 - parent: 82 - type: Transform -- uid: 2583 - type: Grille - components: - - pos: -13.5,-31.5 - parent: 82 - type: Transform -- uid: 2584 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-27.5 - parent: 82 - type: Transform -- uid: 2585 - type: Grille - components: - - pos: -25.5,-36.5 - parent: 82 - type: Transform -- uid: 2586 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-16.5 - parent: 82 - type: Transform -- uid: 2587 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-16.5 - parent: 82 - type: Transform -- uid: 2588 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-39.5 - parent: 82 - type: Transform -- uid: 2589 - type: WindowDirectional - components: - - pos: -12.5,-40.5 - parent: 82 - type: Transform -- uid: 2590 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-39.5 - parent: 82 - type: Transform -- uid: 2591 - type: WindowDirectional - components: - - pos: -17.5,-40.5 - parent: 82 - type: Transform -- uid: 2592 - type: WindowDirectional - components: - - pos: -15.5,-40.5 - parent: 82 - type: Transform -- uid: 2593 - type: WindowDirectional - components: - - pos: -11.5,-40.5 - parent: 82 - type: Transform -- uid: 2594 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-40.5 - parent: 82 - type: Transform -- uid: 2595 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -12.5,-35.5 - parent: 82 - type: Transform -- uid: 2596 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-38.5 - parent: 82 - type: Transform -- uid: 2597 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -16.5,-35.5 - parent: 82 - type: Transform -- uid: 2598 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-40.5 - parent: 82 - type: Transform -- uid: 2599 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-38.5 - parent: 82 - type: Transform -- uid: 2600 - type: WindowDirectional - components: - - pos: -10.5,-40.5 - parent: 82 - type: Transform -- uid: 2601 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-37.5 - parent: 82 - type: Transform -- uid: 2602 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-35.5 - parent: 82 - type: Transform -- uid: 2603 - type: WindowTintedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-39.5 - parent: 82 - type: Transform -- uid: 2604 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-21.5 - parent: 82 - type: Transform -- uid: 2605 - type: PlushieSharkPink - components: - - pos: -16.395447,-43.417328 - parent: 82 - type: Transform -- uid: 2606 - type: FloraRockSolid01 - components: - - pos: -14.830088,-38.859528 - parent: 82 - type: Transform -- uid: 2607 - type: WindowDirectional - components: - - pos: -16.5,-40.5 - parent: 82 - type: Transform -- uid: 2608 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -14.5,-38.5 - parent: 82 - type: Transform -- uid: 2609 - type: WindoorServiceLocked - components: - - rot: 3.141592653589793 rad - pos: -13.5,-35.5 - parent: 82 - type: Transform -- uid: 2610 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-36.5 - parent: 82 - type: Transform -- uid: 2611 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -10.5,-35.5 - parent: 82 - type: Transform -- uid: 2612 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-40.5 - parent: 82 - type: Transform -- uid: 2613 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-38.5 - parent: 82 - type: Transform -- uid: 2614 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-36.5 - parent: 82 - type: Transform -- uid: 2615 - type: WindoorServiceLocked - components: - - pos: -13.5,-40.5 - parent: 82 - type: Transform -- uid: 2616 - type: Grille - components: - - pos: 51.5,10.5 - parent: 82 - type: Transform -- uid: 2617 - type: Grille - components: - - pos: 52.5,10.5 - parent: 82 - type: Transform -- uid: 2618 - type: Grille - components: - - pos: -23.5,-36.5 - parent: 82 - type: Transform -- uid: 2619 - type: KitchenMicrowave - components: - - pos: 49.5,-41.5 - parent: 82 - type: Transform -- uid: 2620 - type: WallSolid - components: - - pos: 55.5,6.5 - parent: 82 - type: Transform -- uid: 2621 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -20.5,-42.5 - parent: 82 - type: Transform -- uid: 2622 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -20.5,-43.5 - parent: 82 - type: Transform -- uid: 2623 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -20.5,-44.5 - parent: 82 - type: Transform -- uid: 2624 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -19.5,-44.5 - parent: 82 - type: Transform -- uid: 2625 - type: WallReinforced - components: - - pos: 58.5,5.5 - parent: 82 - type: Transform -- uid: 2626 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -17.5,-44.5 - parent: 82 - type: Transform -- uid: 2627 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -16.5,-44.5 - parent: 82 - type: Transform -- uid: 2628 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -15.5,-44.5 - parent: 82 - type: Transform -- uid: 2629 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -14.5,-44.5 - parent: 82 - type: Transform -- uid: 2630 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -13.5,-44.5 - parent: 82 - type: Transform -- uid: 2631 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -12.5,-44.5 - parent: 82 - type: Transform -- uid: 2632 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -11.5,-44.5 - parent: 82 - type: Transform -- uid: 2633 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -10.5,-44.5 - parent: 82 - type: Transform -- uid: 2634 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -9.5,-44.5 - parent: 82 - type: Transform -- uid: 2635 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -8.5,-44.5 - parent: 82 - type: Transform -- uid: 2636 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -7.5,-44.5 - parent: 82 - type: Transform -- uid: 2637 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 2.5,-41.5 - parent: 82 - type: Transform -- uid: 2638 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 2.5,-42.5 - parent: 82 - type: Transform -- uid: 2639 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-35.5 - parent: 82 - type: Transform -- uid: 2640 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 2.5,-44.5 - parent: 82 - type: Transform -- uid: 2641 - type: Grille - components: - - pos: -38.5,-33.5 - parent: 82 - type: Transform -- uid: 2642 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 2.5,-46.5 - parent: 82 - type: Transform -- uid: 2643 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -0.5,-44.5 - parent: 82 - type: Transform -- uid: 2644 - type: Grille - components: - - pos: -35.5,-33.5 - parent: 82 - type: Transform -- uid: 2645 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -2.5,-44.5 - parent: 82 - type: Transform -- uid: 2646 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -1.5,-44.5 - parent: 82 - type: Transform -- uid: 2647 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 0.5,-44.5 - parent: 82 - type: Transform -- uid: 2648 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 1.5,-44.5 - parent: 82 - type: Transform -- uid: 2649 - type: Grille - components: - - pos: -34.5,-33.5 - parent: 82 - type: Transform -- uid: 2650 - type: Grille - components: - - pos: -33.5,-33.5 - parent: 82 - type: Transform -- uid: 2651 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -11.5,-35.5 - parent: 82 - type: Transform -- uid: 2652 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-39.5 - parent: 82 - type: Transform -- uid: 2653 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-37.5 - parent: 82 - type: Transform -- uid: 2654 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-35.5 - parent: 82 - type: Transform -- uid: 2655 - type: Window - components: - - pos: -17.5,1.5 - parent: 82 - type: Transform -- uid: 2656 - type: Window - components: - - pos: -17.5,2.5 - parent: 82 - type: Transform -- uid: 2657 - type: Window - components: - - pos: -17.5,3.5 - parent: 82 - type: Transform -- uid: 2658 - type: hydroponicsSoil - components: - - pos: -11.5,-38.5 - parent: 82 - type: Transform -- uid: 2659 - type: AirlockGlass - components: - - pos: -7.5,-42.5 - parent: 82 - type: Transform -- uid: 2660 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -16.5,-43.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 2661 - type: Bed - components: - - pos: 3.5,-31.5 - parent: 82 - type: Transform -- uid: 2662 - type: Bed - components: - - pos: 11.5,-31.5 - parent: 82 - type: Transform -- uid: 2663 - type: Bed - components: - - pos: 9.5,-32.5 - parent: 82 - type: Transform -- uid: 2664 - type: Bed - components: - - pos: 1.5,-39.5 - parent: 82 - type: Transform -- uid: 2665 - type: Bed - components: - - pos: 0.5,-37.5 - parent: 82 - type: Transform -- uid: 2666 - type: Bed - components: - - pos: 13.5,-39.5 - parent: 82 - type: Transform -- uid: 2667 - type: Bed - components: - - pos: 14.5,-37.5 - parent: 82 - type: Transform -- uid: 2668 - type: Grille - components: - - pos: -30.5,-33.5 - parent: 82 - type: Transform -- uid: 2669 - type: WallReinforced - components: - - pos: -41.5,-27.5 - parent: 82 - type: Transform -- uid: 2670 - type: WallReinforced - components: - - pos: -41.5,-25.5 - parent: 82 - type: Transform -- uid: 2671 - type: WallReinforced - components: - - pos: -41.5,-29.5 - parent: 82 - type: Transform -- uid: 2672 - type: WallReinforced - components: - - pos: -41.5,-28.5 - parent: 82 - type: Transform -- uid: 2673 - type: Grille - components: - - pos: -42.5,-29.5 - parent: 82 - type: Transform -- uid: 2674 - type: Grille - components: - - pos: -44.5,-29.5 - parent: 82 - type: Transform -- uid: 2675 - type: WallSolid - components: - - pos: 57.5,5.5 - parent: 82 - type: Transform -- uid: 2676 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 17.5,52.5 - parent: 82 - type: Transform -- uid: 2677 - type: WallSolid - components: - - pos: 2.5,-47.5 - parent: 82 - type: Transform -- uid: 2678 - type: TableReinforced - components: - - pos: -2.5,-47.5 - parent: 82 - type: Transform -- uid: 2679 - type: TableReinforced - components: - - pos: -2.5,-41.5 - parent: 82 - type: Transform -- uid: 2680 - type: TableReinforced - components: - - pos: -2.5,-42.5 - parent: 82 - type: Transform -- uid: 2681 - type: NuclearBomb - components: - - pos: -12.5,-10.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 2682 - type: TableReinforcedGlass - components: - - pos: -10.5,-10.5 - parent: 82 - type: Transform -- uid: 2683 - type: MaterialDiamond1 - components: - - name: Quantum Gemerald - type: MetaData - - pos: -10.526169,-10.42016 - parent: 82 - type: Transform -- uid: 2684 - type: TableReinforced - components: - - pos: -12.5,-8.5 - parent: 82 - type: Transform -- uid: 2685 - type: TableReinforced - components: - - pos: -13.5,-8.5 - parent: 82 - type: Transform -- uid: 2686 - type: TableReinforced - components: - - pos: -13.5,-7.5 - parent: 82 - type: Transform -- uid: 2687 - type: TableReinforced - components: - - pos: -13.5,-6.5 - parent: 82 - type: Transform -- uid: 2688 - type: TableReinforced - components: - - pos: -10.5,-8.5 - parent: 82 - type: Transform -- uid: 2689 - type: TableReinforced - components: - - pos: -9.5,-8.5 - parent: 82 - type: Transform -- uid: 2690 - type: TableReinforced - components: - - pos: -9.5,-7.5 - parent: 82 - type: Transform -- uid: 2691 - type: TableReinforced - components: - - pos: -9.5,-6.5 - parent: 82 - type: Transform -- uid: 2692 - type: HighSecCommandLocked - components: - - pos: -11.5,-5.5 - parent: 82 - type: Transform -- uid: 2693 - type: HighSecCaptainLocked - components: - - pos: -11.5,-9.5 - parent: 82 - type: Transform -- uid: 2694 - type: Window - components: - - pos: -12.5,-31.5 - parent: 82 - type: Transform -- uid: 2695 - type: Window - components: - - pos: -10.5,-31.5 - parent: 82 - type: Transform -- uid: 2696 - type: Window - components: - - pos: -9.5,-31.5 - parent: 82 - type: Transform -- uid: 2697 - type: TableWood - components: - - pos: -13.5,-28.5 - parent: 82 - type: Transform -- uid: 2698 - type: TableWood - components: - - pos: -14.5,-28.5 - parent: 82 - type: Transform -- uid: 2699 - type: TableWood - components: - - pos: -14.5,-29.5 - parent: 82 - type: Transform -- uid: 2700 - type: WallReinforced - components: - - pos: 15.5,59.5 - parent: 82 - type: Transform -- uid: 2701 - type: WallSolid - components: - - pos: 17.5,54.5 - parent: 82 - type: Transform -- uid: 2702 - type: WallReinforced - components: - - pos: 12.5,52.5 - parent: 82 - type: Transform -- uid: 2703 - type: Grille - components: - - pos: 48.5,45.5 - parent: 82 - type: Transform -- uid: 2704 - type: Grille - components: - - pos: 48.5,46.5 - parent: 82 - type: Transform -- uid: 2705 - type: Grille - components: - - pos: -28.5,-37.5 - parent: 82 - type: Transform -- uid: 2706 - type: Grille - components: - - pos: -28.5,-39.5 - parent: 82 - type: Transform -- uid: 2707 - type: ClothingNeckStethoscope - components: - - pos: -42.43948,-39.42413 - parent: 82 - type: Transform -- uid: 2708 - type: MedicalBed - components: - - pos: -37.5,-41.5 - parent: 82 - type: Transform -- uid: 2709 - type: AirlockSecurityGlassLocked - components: - - pos: -24.5,-36.5 - parent: 82 - type: Transform -- uid: 2710 - type: AirlockSecurityGlassLocked - components: - - pos: -28.5,-38.5 - parent: 82 - type: Transform -- uid: 2711 - type: AirlockMaintSecLocked - components: - - pos: -23.5,-41.5 - parent: 82 - type: Transform -- uid: 2712 - type: WeaponCapacitorRecharger - components: - - pos: -22.5,-37.5 - parent: 82 - type: Transform -- uid: 2713 - type: WallSolid - components: - - pos: -25.5,-40.5 - parent: 82 - type: Transform -- uid: 2714 - type: CableApcExtension - components: - - pos: -40.5,-45.5 - parent: 82 - type: Transform -- uid: 2715 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -7.5,32.5 - parent: 82 - type: Transform -- uid: 2716 - type: TableReinforced - components: - - pos: -22.5,-40.5 - parent: 82 - type: Transform -- uid: 2717 - type: ClothingHeadHatSecsoftFlipped - components: - - pos: -22.54174,-40.39464 - parent: 82 - type: Transform -- uid: 2718 - type: TableReinforced - components: - - pos: -22.5,-37.5 - parent: 82 - type: Transform -- uid: 2719 - type: AirlockExternalGlassLocked - components: - - pos: 51.5,37.5 - parent: 82 - type: Transform -- uid: 2720 - type: ComputerCriminalRecords - components: - - pos: -21.5,-37.5 - parent: 82 - type: Transform -- uid: 2721 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 3.141592653589793 rad - pos: -21.5,-40.5 - parent: 82 - type: Transform -- uid: 2722 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-38.5 - parent: 82 - type: Transform -- uid: 2723 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-39.5 - parent: 82 - type: Transform -- uid: 2724 - type: LockerEvidence - components: - - pos: -26.5,-40.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2725 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-40.5 - parent: 82 - type: Transform -- uid: 2726 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-40.5 - parent: 82 - type: Transform -- uid: 2727 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-40.5 - parent: 82 - type: Transform -- uid: 2728 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-40.5 - parent: 82 - type: Transform -- uid: 2729 - type: TintedWindow - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-40.5 - parent: 82 - type: Transform -- uid: 2730 - type: TintedWindow - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-37.5 - parent: 82 - type: Transform -- uid: 2731 - type: TintedWindow - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-40.5 - parent: 82 - type: Transform -- uid: 2732 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-40.5 - parent: 82 - type: Transform -- uid: 2733 - type: WallSolid - components: - - pos: -36.5,-41.5 - parent: 82 - type: Transform -- uid: 2734 - type: WallSolid - components: - - pos: -36.5,-42.5 - parent: 82 - type: Transform -- uid: 2735 - type: WallSolid - components: - - pos: -36.5,-43.5 - parent: 82 - type: Transform -- uid: 2736 - type: WallSolid - components: - - pos: -36.5,-44.5 - parent: 82 - type: Transform -- uid: 2737 - type: WallSolid - components: - - pos: -36.5,-45.5 - parent: 82 - type: Transform -- uid: 2738 - type: WallSolid - components: - - pos: -35.5,-45.5 - parent: 82 - type: Transform -- uid: 2739 - type: WallSolid - components: - - pos: -34.5,-45.5 - parent: 82 - type: Transform -- uid: 2740 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-39.5 - parent: 82 - type: Transform -- uid: 2741 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-38.5 - parent: 82 - type: Transform -- uid: 2742 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-37.5 - parent: 82 - type: Transform -- uid: 2743 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-37.5 - parent: 82 - type: Transform -- uid: 2744 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-38.5 - parent: 82 - type: Transform -- uid: 2745 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-39.5 - parent: 82 - type: Transform -- uid: 2746 - type: TableReinforcedGlass - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-39.5 - parent: 82 - type: Transform -- uid: 2747 - type: TableReinforcedGlass - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-40.5 - parent: 82 - type: Transform -- uid: 2748 - type: GasRecyclerMachineCircuitboard - components: - - pos: -8.222298,7.6356516 - parent: 82 - type: Transform -- uid: 2749 - type: TintedWindow - components: - - pos: 0.5,-33.5 - parent: 82 - type: Transform -- uid: 2750 - type: TintedWindow - components: - - pos: 6.5,-33.5 - parent: 82 - type: Transform -- uid: 2751 - type: TintedWindow - components: - - pos: 14.5,-33.5 - parent: 82 - type: Transform -- uid: 2752 - type: TintedWindow - components: - - pos: 10.5,-36.5 - parent: 82 - type: Transform -- uid: 2753 - type: TintedWindow - components: - - pos: 15.5,-36.5 - parent: 82 - type: Transform -- uid: 2754 - type: TintedWindow - components: - - pos: -0.5,-36.5 - parent: 82 - type: Transform -- uid: 2755 - type: TintedWindow - components: - - pos: 4.5,-36.5 - parent: 82 - type: Transform -- uid: 2756 - type: MedicalBed - components: - - pos: -37.5,-43.5 - parent: 82 - type: Transform -- uid: 2757 - type: Grille - components: - - pos: -41.5,-39.5 - parent: 82 - type: Transform -- uid: 2758 - type: DrinkDoctorsDelightGlass - components: - - pos: -43.3714,-37.43803 - parent: 82 - type: Transform -- uid: 2759 - type: WallSolid - components: - - pos: -44.5,-36.5 - parent: 82 - type: Transform -- uid: 2760 - type: WallSolid - components: - - pos: -44.5,-37.5 - parent: 82 - type: Transform -- uid: 2761 - type: WallSolid - components: - - pos: -44.5,-38.5 - parent: 82 - type: Transform -- uid: 2762 - type: WallSolid - components: - - pos: -44.5,-39.5 - parent: 82 - type: Transform -- uid: 2763 - type: WallSolid - components: - - pos: -44.5,-40.5 - parent: 82 - type: Transform -- uid: 2764 - type: WallSolid - components: - - pos: -44.5,-41.5 - parent: 82 - type: Transform -- uid: 2765 - type: WallSolid - components: - - pos: -44.5,-42.5 - parent: 82 - type: Transform -- uid: 2766 - type: WallSolid - components: - - pos: -44.5,-43.5 - parent: 82 - type: Transform -- uid: 2767 - type: WallSolid - components: - - pos: -33.5,-45.5 - parent: 82 - type: Transform -- uid: 2768 - type: WallSolid - components: - - pos: -32.5,-45.5 - parent: 82 - type: Transform -- uid: 2769 - type: WallSolid - components: - - pos: -32.5,-45.5 - parent: 82 - type: Transform -- uid: 2770 - type: WallSolid - components: - - pos: -31.5,-45.5 - parent: 82 - type: Transform -- uid: 2771 - type: WallSolid - components: - - pos: -30.5,-45.5 - parent: 82 - type: Transform -- uid: 2772 - type: WallSolid - components: - - pos: -29.5,-45.5 - parent: 82 - type: Transform -- uid: 2773 - type: WallSolid - components: - - pos: -28.5,-45.5 - parent: 82 - type: Transform -- uid: 2774 - type: WallSolid - components: - - pos: -28.5,-44.5 - parent: 82 - type: Transform -- uid: 2775 - type: WallSolid - components: - - pos: -28.5,-42.5 - parent: 82 - type: Transform -- uid: 2776 - type: WallSolid - components: - - pos: 17.5,53.5 - parent: 82 - type: Transform -- uid: 2777 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 16.5,52.5 - parent: 82 - type: Transform -- uid: 2778 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,52.5 - parent: 82 - type: Transform -- uid: 2779 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 25.5,52.5 - parent: 82 - type: Transform -- uid: 2780 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 25.5,53.5 - parent: 82 - type: Transform -- uid: 2781 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 25.5,56.5 - parent: 82 - type: Transform -- uid: 2782 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 25.5,57.5 - parent: 82 - type: Transform -- uid: 2783 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,57.5 - parent: 82 - type: Transform -- uid: 2784 - type: LockerScienceFilled - components: - - pos: 22.5,63.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2785 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,58.5 - parent: 82 - type: Transform -- uid: 2786 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,-36.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2787 - type: CableApcExtension - components: - - pos: 26.5,27.5 - parent: 82 - type: Transform -- uid: 2788 - type: WallReinforced - components: - - pos: 51.5,7.5 - parent: 82 - type: Transform -- uid: 2789 - type: WallReinforced - components: - - pos: 51.5,8.5 - parent: 82 - type: Transform -- uid: 2790 - type: WallReinforced - components: - - pos: 50.5,8.5 - parent: 82 - type: Transform -- uid: 2791 - type: WallReinforced - components: - - pos: 49.5,8.5 - parent: 82 - type: Transform -- uid: 2792 - type: WallSolid - components: - - pos: -22.5,-42.5 - parent: 82 - type: Transform -- uid: 2793 - type: WallSolid - components: - - pos: -22.5,-43.5 - parent: 82 - type: Transform -- uid: 2794 - type: WallReinforced - components: - - pos: 48.5,8.5 - parent: 82 - type: Transform -- uid: 2795 - type: WallReinforced - components: - - pos: 44.5,8.5 - parent: 82 - type: Transform -- uid: 2796 - type: WallReinforced - components: - - pos: 43.5,8.5 - parent: 82 - type: Transform -- uid: 2797 - type: WallReinforced - components: - - pos: 48.5,5.5 - parent: 82 - type: Transform -- uid: 2798 - type: WallReinforced - components: - - pos: 49.5,5.5 - parent: 82 - type: Transform -- uid: 2799 - type: WallReinforced - components: - - pos: 50.5,5.5 - parent: 82 - type: Transform -- uid: 2800 - type: WallReinforced - components: - - pos: 51.5,5.5 - parent: 82 - type: Transform -- uid: 2801 - type: WallReinforced - components: - - pos: 52.5,5.5 - parent: 82 - type: Transform -- uid: 2802 - type: WallReinforced - components: - - pos: 42.5,6.5 - parent: 82 - type: Transform -- uid: 2803 - type: WallSolid - components: - - pos: -13.5,-46.5 - parent: 82 - type: Transform -- uid: 2804 - type: WallReinforced - components: - - pos: 42.5,7.5 - parent: 82 - type: Transform -- uid: 2805 - type: WallSolid - components: - - pos: -11.5,-46.5 - parent: 82 - type: Transform -- uid: 2806 - type: WallSolid - components: - - pos: -10.5,-46.5 - parent: 82 - type: Transform -- uid: 2807 - type: WallSolid - components: - - pos: -9.5,-46.5 - parent: 82 - type: Transform -- uid: 2808 - type: WallSolid - components: - - pos: -8.5,-46.5 - parent: 82 - type: Transform -- uid: 2809 - type: WallSolid - components: - - pos: -7.5,-46.5 - parent: 82 - type: Transform -- uid: 2810 - type: WallSolid - components: - - pos: -7.5,-47.5 - parent: 82 - type: Transform -- uid: 2811 - type: WallSolid - components: - - pos: -7.5,-48.5 - parent: 82 - type: Transform -- uid: 2812 - type: RandomSpawner - components: - - pos: -46.5,4.5 - parent: 82 - type: Transform -- uid: 2813 - type: WallSolid - components: - - pos: -7.5,-50.5 - parent: 82 - type: Transform -- uid: 2814 - type: WallSolid - components: - - pos: -26.5,-46.5 - parent: 82 - type: Transform -- uid: 2815 - type: WallSolid - components: - - pos: -26.5,-45.5 - parent: 82 - type: Transform -- uid: 2816 - type: WallSolid - components: - - pos: -25.5,-45.5 - parent: 82 - type: Transform -- uid: 2817 - type: WallSolid - components: - - pos: -24.5,-45.5 - parent: 82 - type: Transform -- uid: 2818 - type: WallSolid - components: - - pos: -23.5,-45.5 - parent: 82 - type: Transform -- uid: 2819 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-39.5 - parent: 82 - type: Transform -- uid: 2820 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-39.5 - parent: 82 - type: Transform -- uid: 2821 - type: HospitalCurtains - components: - - pos: -41.5,-42.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -356072.53 - state: Opening - type: Door -- uid: 2822 - type: HospitalCurtains - components: - - pos: -41.5,-44.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -356070.3 - state: Opening - type: Door -- uid: 2823 - type: WallSolid - components: - - pos: -41.5,-45.5 - parent: 82 - type: Transform -- uid: 2824 - type: WallSolid - components: - - pos: -42.5,-45.5 - parent: 82 - type: Transform -- uid: 2825 - type: WallSolid - components: - - pos: -43.5,-45.5 - parent: 82 - type: Transform -- uid: 2826 - type: WallSolid - components: - - pos: -44.5,-45.5 - parent: 82 - type: Transform -- uid: 2827 - type: WallSolid - components: - - pos: -44.5,-44.5 - parent: 82 - type: Transform -- uid: 2828 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-41.5 - parent: 82 - type: Transform -- uid: 2829 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-42.5 - parent: 82 - type: Transform -- uid: 2830 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-43.5 - parent: 82 - type: Transform -- uid: 2831 - type: TintedWindow - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-37.5 - parent: 82 - type: Transform -- uid: 2832 - type: TintedWindow - components: - - pos: -41.5,-43.5 - parent: 82 - type: Transform -- uid: 2833 - type: TintedWindow - components: - - pos: -41.5,-41.5 - parent: 82 - type: Transform -- uid: 2834 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-44.5 - parent: 82 - type: Transform -- uid: 2835 - type: ComputerMedicalRecords - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-35.5 - parent: 82 - type: Transform -- uid: 2836 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -42.5,-43.5 - parent: 82 - type: Transform -- uid: 2837 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -43.5,-43.5 - parent: 82 - type: Transform -- uid: 2838 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -42.5,-41.5 - parent: 82 - type: Transform -- uid: 2839 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -43.5,-41.5 - parent: 82 - type: Transform -- uid: 2840 - type: MedicalBed - components: - - pos: -41.5,-37.5 - parent: 82 - type: Transform -- uid: 2841 - type: CarpetBlue - components: - - pos: -41.5,-37.5 - parent: 82 - type: Transform -- uid: 2842 - type: MedicalBed - components: - - pos: -43.5,-43.5 - parent: 82 - type: Transform -- uid: 2843 - type: MedicalBed - components: - - pos: -43.5,-41.5 - parent: 82 - type: Transform -- uid: 2844 - type: AirlockExternalGlassLocked - components: - - pos: 31.5,70.5 - parent: 82 - type: Transform -- uid: 2845 - type: Grille - components: - - pos: -53.5,-30.5 - parent: 82 - type: Transform -- uid: 2846 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-44.5 - parent: 82 - type: Transform -- uid: 2847 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-42.5 - parent: 82 - type: Transform -- uid: 2848 - type: Rack - components: - - pos: -31.5,-37.5 - parent: 82 - type: Transform -- uid: 2849 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -37.5,-41.5 - parent: 82 - type: Transform -- uid: 2850 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-43.5 - parent: 82 - type: Transform -- uid: 2851 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-41.5 - parent: 82 - type: Transform -- uid: 2852 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -38.5,-41.5 - parent: 82 - type: Transform -- uid: 2853 - type: TableReinforcedGlass - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-38.5 - parent: 82 - type: Transform -- uid: 2854 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-26.5 - parent: 82 - type: Transform -- uid: 2855 - type: TableReinforcedGlass - components: - - pos: -27.5,-27.5 - parent: 82 - type: Transform -- uid: 2856 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-45.5 - parent: 82 - type: Transform -- uid: 2857 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-45.5 - parent: 82 - type: Transform -- uid: 2858 - type: ClothingHeadHelmetVoidParamed - components: - - pos: -31.647936,-37.270805 - parent: 82 - type: Transform -- uid: 2859 - type: CheapRollerBed - components: - - pos: -39.493538,-40.522873 - parent: 82 - type: Transform -- uid: 2860 - type: EmergencyRollerBed - components: - - pos: -34.5,-32.5 - parent: 82 - type: Transform -- uid: 2861 - type: CheapRollerBed - components: - - pos: -38.48993,-40.508984 - parent: 82 - type: Transform -- uid: 2862 - type: SpawnMobWalter - components: - - pos: -32.5,-28.5 - parent: 82 - type: Transform -- uid: 2863 - type: SinkWide - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-41.5 - parent: 82 - type: Transform -- uid: 2864 - type: TableReinforcedGlass - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-43.5 - parent: 82 - type: Transform -- uid: 2865 - type: TableReinforcedGlass - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-44.5 - parent: 82 - type: Transform -- uid: 2866 - type: CrateMedicalSurgery - components: - - pos: -35.5,-42.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2867 - type: SinkWide - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-38.5 - parent: 82 - type: Transform -- uid: 2868 - type: TableReinforcedGlass - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-39.5 - parent: 82 - type: Transform -- uid: 2869 - type: ClothingHeadHatSurgcapPurple - components: - - pos: -35.69385,-39.40979 - parent: 82 - type: Transform -- uid: 2870 - type: ClothingBackpackDuffelSurgeryFilled - components: - - pos: -35.49941,-43.281456 - parent: 82 - type: Transform -- uid: 2871 - type: SignSurgery - components: - - pos: -32.5,-37.5 - parent: 82 - type: Transform -- uid: 2872 - type: ReinforcedWindow - components: - - pos: 45.5,8.5 - parent: 82 - type: Transform -- uid: 2873 - type: ReinforcedWindow - components: - - pos: 46.5,8.5 - parent: 82 - type: Transform -- uid: 2874 - type: ReinforcedWindow - components: - - pos: 47.5,8.5 - parent: 82 - type: Transform -- uid: 2875 - type: ReinforcedWindow - components: - - pos: 45.5,5.5 - parent: 82 - type: Transform -- uid: 2876 - type: WallReinforced - components: - - pos: 34.5,-2.5 - parent: 82 - type: Transform -- uid: 2877 - type: ReinforcedWindow - components: - - pos: 46.5,5.5 - parent: 82 - type: Transform -- uid: 2878 - type: ReinforcedWindow - components: - - pos: 47.5,5.5 - parent: 82 - type: Transform -- uid: 2879 - type: WallReinforced - components: - - pos: 30.5,-2.5 - parent: 82 - type: Transform -- uid: 2880 - type: Grille - components: - - pos: 34.5,0.5 - parent: 82 - type: Transform -- uid: 2881 - type: Grille - components: - - pos: 34.5,-0.5 - parent: 82 - type: Transform -- uid: 2882 - type: Grille - components: - - pos: 34.5,-1.5 - parent: 82 - type: Transform -- uid: 2883 - type: Grille - components: - - pos: 33.5,-2.5 - parent: 82 - type: Transform -- uid: 2884 - type: Grille - components: - - pos: 32.5,-2.5 - parent: 82 - type: Transform -- uid: 2885 - type: Grille - components: - - pos: 31.5,-2.5 - parent: 82 - type: Transform -- uid: 2886 - type: ReinforcedWindow - components: - - pos: 30.5,0.5 - parent: 82 - type: Transform -- uid: 2887 - type: ReinforcedWindow - components: - - pos: 30.5,-0.5 - parent: 82 - type: Transform -- uid: 2888 - type: ReinforcedWindow - components: - - pos: 30.5,-1.5 - parent: 82 - type: Transform -- uid: 2889 - type: ReinforcedWindow - components: - - pos: 31.5,1.5 - parent: 82 - type: Transform -- uid: 2890 - type: ReinforcedWindow - components: - - pos: 32.5,1.5 - parent: 82 - type: Transform -- uid: 2891 - type: ReinforcedWindow - components: - - pos: 33.5,1.5 - parent: 82 - type: Transform -- uid: 2892 - type: ReinforcedWindow - components: - - pos: 34.5,0.5 - parent: 82 - type: Transform -- uid: 2893 - type: ReinforcedWindow - components: - - pos: 34.5,-0.5 - parent: 82 - type: Transform -- uid: 2894 - type: ReinforcedWindow - components: - - pos: 34.5,-1.5 - parent: 82 - type: Transform -- uid: 2895 - type: ReinforcedWindow - components: - - pos: 33.5,-2.5 - parent: 82 - type: Transform -- uid: 2896 - type: ReinforcedWindow - components: - - pos: 32.5,-2.5 - parent: 82 - type: Transform -- uid: 2897 - type: ReinforcedWindow - components: - - pos: 31.5,-2.5 - parent: 82 - type: Transform -- uid: 2898 - type: ReinforcedWindow - components: - - pos: 51.5,34.5 - parent: 82 - type: Transform -- uid: 2899 - type: ReinforcedWindow - components: - - pos: 51.5,33.5 - parent: 82 - type: Transform -- uid: 2900 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,62.5 - parent: 82 - type: Transform -- uid: 2901 - type: ComputerSurveillanceWirelessCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-13.5 - parent: 82 - type: Transform -- uid: 2902 - type: Grille - components: - - pos: 41.5,30.5 - parent: 82 - type: Transform -- uid: 2903 - type: Grille - components: - - pos: 41.5,29.5 - parent: 82 - type: Transform -- uid: 2904 - type: Grille - components: - - pos: 41.5,27.5 - parent: 82 - type: Transform -- uid: 2905 - type: Window - components: - - pos: 41.5,27.5 - parent: 82 - type: Transform -- uid: 2906 - type: Window - components: - - pos: 41.5,29.5 - parent: 82 - type: Transform -- uid: 2907 - type: Window - components: - - pos: 41.5,30.5 - parent: 82 - type: Transform -- uid: 2908 - type: Grille - components: - - pos: -17.5,3.5 - parent: 82 - type: Transform -- uid: 2909 - type: Grille - components: - - pos: -17.5,2.5 - parent: 82 - type: Transform -- uid: 2910 - type: Grille - components: - - pos: -17.5,1.5 - parent: 82 - type: Transform -- uid: 2911 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -15.5,-43.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 2912 - type: FloraTreeSnow01 - components: - - pos: -13.190781,-37.351818 - parent: 82 - type: Transform -- uid: 2913 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -12.5,-43.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 2914 - type: Window - components: - - pos: -20.5,-28.5 - parent: 82 - type: Transform -- uid: 2915 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -45.5,-27.5 - parent: 82 - type: Transform -- uid: 2916 - type: OperatingTable - components: - - pos: -33.5,-42.5 - parent: 82 - type: Transform -- uid: 2917 - type: computerBodyScanner - components: - - pos: -33.5,-43.5 - parent: 82 - type: Transform -- uid: 2918 - type: BodyBag_Folded - components: - - pos: -35.591175,-43.576096 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2919 - type: BodyBag_Folded - components: - - pos: -35.368954,-43.728874 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 1.5176169 - - 5.709131 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2920 - type: SawElectric - components: - - pos: -35.591175,-44.228874 - parent: 82 - type: Transform -- uid: 2921 - type: Cautery - components: - - pos: -35.730064,-44.451096 - parent: 82 - type: Transform -- uid: 2922 - type: Scalpel - components: - - pos: -35.4384,-44.576096 - parent: 82 - type: Transform -- uid: 2923 - type: Drill - components: - - pos: -35.452286,-44.437206 - parent: 82 - type: Transform -- uid: 2924 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-41.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 2925 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-42.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 2926 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-43.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 2927 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-44.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 2928 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -29.5,-41.5 - parent: 82 - type: Transform -- uid: 2929 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: -29.5,-42.5 - parent: 82 - type: Transform -- uid: 2930 - type: KitchenReagentGrinder - components: - - pos: -31.5,-25.5 - parent: 82 - type: Transform -- uid: 2931 - type: Grille - components: - - pos: -41.5,-33.5 - parent: 82 - type: Transform -- uid: 2932 - type: Grille - components: - - pos: -42.5,-33.5 - parent: 82 - type: Transform -- uid: 2933 - type: Grille - components: - - pos: -44.5,-33.5 - parent: 82 - type: Transform -- uid: 2934 - type: Grille - components: - - pos: -45.5,-33.5 - parent: 82 - type: Transform -- uid: 2935 - type: WallSolid - components: - - pos: -46.5,-33.5 - parent: 82 - type: Transform -- uid: 2936 - type: WallSolid - components: - - pos: -45.5,-36.5 - parent: 82 - type: Transform -- uid: 2937 - type: WallSolid - components: - - pos: -46.5,-36.5 - parent: 82 - type: Transform -- uid: 2938 - type: Grille - components: - - pos: -46.5,-34.5 - parent: 82 - type: Transform -- uid: 2939 - type: Grille - components: - - pos: -46.5,-35.5 - parent: 82 - type: Transform -- uid: 2940 - type: ReinforcedWindow - components: - - pos: -46.5,-34.5 - parent: 82 - type: Transform -- uid: 2941 - type: ReinforcedWindow - components: - - pos: -46.5,-35.5 - parent: 82 - type: Transform -- uid: 2942 - type: ReinforcedWindow - components: - - pos: -45.5,-33.5 - parent: 82 - type: Transform -- uid: 2943 - type: ReinforcedWindow - components: - - pos: -44.5,-33.5 - parent: 82 - type: Transform -- uid: 2944 - type: ReinforcedWindow - components: - - pos: -42.5,-33.5 - parent: 82 - type: Transform -- uid: 2945 - type: ReinforcedWindow - components: - - pos: -41.5,-33.5 - parent: 82 - type: Transform -- uid: 2946 - type: Grille - components: - - pos: -46.5,-29.5 - parent: 82 - type: Transform -- uid: 2947 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -47.5,-29.5 - parent: 82 - type: Transform -- uid: 2948 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -47.5,-28.5 - parent: 82 - type: Transform -- uid: 2949 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -47.5,-27.5 - parent: 82 - type: Transform -- uid: 2950 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -47.5,-26.5 - parent: 82 - type: Transform -- uid: 2951 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -47.5,-25.5 - parent: 82 - type: Transform -- uid: 2952 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -47.5,-24.5 - parent: 82 - type: Transform -- uid: 2953 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -47.5,-23.5 - parent: 82 - type: Transform -- uid: 2954 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -47.5,-22.5 - parent: 82 - type: Transform -- uid: 2955 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -46.5,-22.5 - parent: 82 - type: Transform -- uid: 2956 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -45.5,-22.5 - parent: 82 - type: Transform -- uid: 2957 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -44.5,-22.5 - parent: 82 - type: Transform -- uid: 2958 - type: ReinforcedPlasmaWindow - components: - - pos: -46.5,-29.5 - parent: 82 - type: Transform -- uid: 2959 - type: ReinforcedPlasmaWindow - components: - - pos: -44.5,-29.5 - parent: 82 - type: Transform -- uid: 2960 - type: ReinforcedPlasmaWindow - components: - - pos: -42.5,-29.5 - parent: 82 - type: Transform -- uid: 2961 - type: WallReinforced - components: - - pos: -43.5,-29.5 - parent: 82 - type: Transform -- uid: 2962 - type: WallReinforced - components: - - pos: -45.5,-29.5 - parent: 82 - type: Transform -- uid: 2963 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -46.5,-27.5 - parent: 82 - type: Transform -- uid: 2964 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -43.5,-27.5 - parent: 82 - type: Transform -- uid: 2965 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -42.5,-27.5 - parent: 82 - type: Transform -- uid: 2966 - type: TablePlasmaGlass - components: - - rot: 3.141592653589793 rad - pos: -46.5,-23.5 - parent: 82 - type: Transform -- uid: 2967 - type: MedicalBed - components: - - pos: -46.5,-28.5 - parent: 82 - type: Transform -- uid: 2968 - type: MedicalBed - components: - - pos: -44.5,-28.5 - parent: 82 - type: Transform -- uid: 2969 - type: MedicalBed - components: - - pos: -42.5,-28.5 - parent: 82 - type: Transform -- uid: 2970 - type: BedsheetMedical - components: - - rot: 3.141592653589793 rad - pos: -46.5,-28.5 - parent: 82 - type: Transform -- uid: 2971 - type: BedsheetMedical - components: - - rot: 3.141592653589793 rad - pos: -44.5,-28.5 - parent: 82 - type: Transform -- uid: 2972 - type: BedsheetMedical - components: - - rot: 3.141592653589793 rad - pos: -42.5,-28.5 - parent: 82 - type: Transform -- uid: 2973 - type: DiseaseDiagnoser - components: - - pos: -42.5,-24.5 - parent: 82 - type: Transform -- uid: 2974 - type: Vaccinator - components: - - pos: -42.5,-25.5 - parent: 82 - type: Transform -- uid: 2975 - type: TablePlasmaGlass - components: - - rot: 3.141592653589793 rad - pos: -45.5,-23.5 - parent: 82 - type: Transform -- uid: 2976 - type: TablePlasmaGlass - components: - - rot: 3.141592653589793 rad - pos: -46.5,-24.5 - parent: 82 - type: Transform -- uid: 2977 - type: VendingMachineViroDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -44.5,-23.5 - parent: 82 - type: Transform -- uid: 2978 - type: TablePlasmaGlass - components: - - rot: 3.141592653589793 rad - pos: -46.5,-25.5 - parent: 82 - type: Transform -- uid: 2979 - type: Grille - components: - - pos: -21.5,-31.5 - parent: 82 - type: Transform -- uid: 2980 - type: WindoorMedicalLocked - components: - - rot: 3.141592653589793 rad - pos: -44.5,-27.5 - parent: 82 - type: Transform -- uid: 2981 - type: CrateMedicalSupplies - components: - - pos: -37.5,-37.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2982 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -39.5,-34.5 - parent: 82 - type: Transform -- uid: 2983 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -16.5,-28.5 - parent: 82 - type: Transform -- uid: 2984 - type: LockerChiefMedicalOfficerFilled - components: - - pos: -41.5,-34.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2985 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-34.5 - parent: 82 - type: Transform -- uid: 2986 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-26.5 - parent: 82 - type: Transform -- uid: 2987 - type: MagazinePistol - components: - - pos: 48.638668,-20.522121 - parent: 82 - type: Transform -- uid: 2988 - type: WeaponPistolMk58 - components: - - pos: 48.36089,-20.2999 - parent: 82 - type: Transform -- uid: 2989 - type: ComputerMedicalRecords - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-28.5 - parent: 82 - type: Transform -- uid: 2990 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-34.5 - parent: 82 - type: Transform -- uid: 2991 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-35.5 - parent: 82 - type: Transform -- uid: 2992 - type: ComputerCrewMonitoring - components: - - rot: 3.141592653589793 rad - pos: -27.5,-35.5 - parent: 82 - type: Transform -- uid: 2993 - type: WindoorMedicalLocked - components: - - rot: 3.141592653589793 rad - pos: -27.5,-34.5 - parent: 82 - type: Transform -- uid: 2994 - type: CableApcExtension - components: - - pos: 14.5,-18.5 - parent: 82 - type: Transform -- uid: 2995 - type: MedicalTechFab - components: - - pos: -29.5,-34.5 - parent: 82 - type: Transform -- uid: 2996 - type: AirAlarm - components: - - pos: -35.5,-16.5 - parent: 82 - type: Transform - - devices: - - 14940 - - 13610 - - 13545 - - 13553 - - 13596 - - 13595 - - 2528 - - 5599 - - 5598 - - 5601 - - 5602 - - 3591 - - 5600 - type: DeviceList -- uid: 2997 - type: TableReinforcedGlass - components: - - pos: -30.5,-34.5 - parent: 82 - type: Transform -- uid: 2998 - type: TableReinforcedGlass - components: - - pos: -35.5,-34.5 - parent: 82 - type: Transform -- uid: 2999 - type: TableReinforcedGlass - components: - - pos: -34.5,-34.5 - parent: 82 - type: Transform -- uid: 3000 - type: TableReinforcedGlass - components: - - pos: -33.5,-34.5 - parent: 82 - type: Transform -- uid: 3001 - type: LockerWallMedicalFilled - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-29.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3002 - type: LockerWallMedicalFilled - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-30.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3003 - type: VendingMachineMediDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,-28.5 - parent: 82 - type: Transform -- uid: 3004 - type: LockerMedicalFilled - components: - - pos: -18.5,-28.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3005 - type: LockerMedicalFilled - components: - - pos: -17.5,-28.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3006 - type: LockerMedicineFilled - components: - - pos: -31.5,-38.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3007 - type: LockerMedicine - components: - - pos: -31.5,-39.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3008 - type: WallSolid - components: - - pos: -44.5,-20.5 - parent: 82 - type: Transform -- uid: 3009 - type: WallSolid - components: - - pos: -46.5,-20.5 - parent: 82 - type: Transform -- uid: 3010 - type: WallSolid - components: - - pos: -43.5,-21.5 - parent: 82 - type: Transform -- uid: 3011 - type: ClosetWallEmergencyFilledRandom - components: - - rot: 3.141592653589793 rad - pos: -25.5,-40.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3012 - type: WallReinforced - components: - - pos: 50.5,52.5 - parent: 82 - type: Transform -- uid: 3013 - type: ClosetL3VirologyFilled - components: - - pos: -39.5,-26.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3014 - type: ClosetL3VirologyFilled - components: - - pos: -39.5,-27.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3015 - type: ClosetL3VirologyFilled - components: - - pos: -39.5,-28.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3016 - type: RandomPainting - components: - - pos: 11.5,-33.5 - parent: 82 - type: Transform -- uid: 3017 - type: RandomPainting - components: - - pos: 2.5,-33.5 - parent: 82 - type: Transform -- uid: 3018 - type: WallSolid - components: - - pos: -47.5,-20.5 - parent: 82 - type: Transform -- uid: 3019 - type: ClosetWallPink - components: - - rot: 3.141592653589793 rad - pos: 13.5,-36.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3020 - type: ClosetBase - components: - - pos: 0.5,-31.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3021 - type: ClosetBase - components: - - pos: 5.5,-31.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3022 - type: ClosetBase - components: - - pos: 14.5,-31.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3023 - type: ClosetBase - components: - - pos: 10.5,-38.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3024 - type: ClosetBase - components: - - pos: 17.5,-39.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3025 - type: ClosetBase - components: - - pos: 4.5,-38.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3026 - type: ClosetBase - components: - - pos: -2.5,-37.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3027 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 9.5,-41.5 - parent: 82 - type: Transform -- uid: 3028 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 5.5,-41.5 - parent: 82 - type: Transform -- uid: 3029 - type: ClosetL3Filled - components: - - pos: -56.5,-32.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3030 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -46.5,-37.5 - parent: 82 - type: Transform -- uid: 3031 - type: WallSolid - components: - - pos: -46.5,-38.5 - parent: 82 - type: Transform -- uid: 3032 - type: GasPressurePump - components: - - pos: -50.5,-35.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3033 - type: Grille - components: - - pos: -48.5,57.5 - parent: 82 - type: Transform -- uid: 3034 - type: WallSolid - components: - - pos: -47.5,-38.5 - parent: 82 - type: Transform -- uid: 3035 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -47.5,-40.5 - parent: 82 - type: Transform -- uid: 3036 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -48.5,-40.5 - parent: 82 - type: Transform -- uid: 3037 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -49.5,-40.5 - parent: 82 - type: Transform -- uid: 3038 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -49.5,-39.5 - parent: 82 - type: Transform -- uid: 3039 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -47.5,-41.5 - parent: 82 - type: Transform -- uid: 3040 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -46.5,-41.5 - parent: 82 - type: Transform -- uid: 3041 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -46.5,-42.5 - parent: 82 - type: Transform -- uid: 3042 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -46.5,-43.5 - parent: 82 - type: Transform -- uid: 3043 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -46.5,-44.5 - parent: 82 - type: Transform -- uid: 3044 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -46.5,-45.5 - parent: 82 - type: Transform -- uid: 3045 - type: WallSolid - components: - - pos: -47.5,-45.5 - parent: 82 - type: Transform -- uid: 3046 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -46.5,-47.5 - parent: 82 - type: Transform -- uid: 3047 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 34.5,51.5 - parent: 82 - type: Transform -- uid: 3048 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 34.5,49.5 - parent: 82 - type: Transform -- uid: 3049 - type: LockerEvidence - components: - - pos: 38.5,49.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3050 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-19.5 - parent: 82 - type: Transform -- uid: 3051 - type: ChairWood - components: - - pos: -23.5,-8.5 - parent: 82 - type: Transform -- uid: 3052 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -11.5,-43.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3053 - type: WallReinforced - components: - - pos: -29.5,28.5 - parent: 82 - type: Transform -- uid: 3054 - type: Grille - components: - - pos: -10.5,-28.5 - parent: 82 - type: Transform -- uid: 3055 - type: Grille - components: - - pos: -9.5,-28.5 - parent: 82 - type: Transform -- uid: 3056 - type: Grille - components: - - pos: -13.5,-27.5 - parent: 82 - type: Transform -- uid: 3057 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -51.5,-39.5 - parent: 82 - type: Transform -- uid: 3058 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -51.5,-40.5 - parent: 82 - type: Transform -- uid: 3059 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -49.5,-41.5 - parent: 82 - type: Transform -- uid: 3060 - type: FirelockGlass - components: - - pos: -14.5,28.5 - parent: 82 - type: Transform -- uid: 3061 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -51.5,-41.5 - parent: 82 - type: Transform -- uid: 3062 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -49.5,-37.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3063 - type: Grille - components: - - pos: -51.5,57.5 - parent: 82 - type: Transform -- uid: 3064 - type: IntercomMedical - components: - - rot: 3.141592653589793 rad - pos: -49.5,-38.5 - parent: 82 - type: Transform -- uid: 3065 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -47.5,-33.5 - parent: 82 - type: Transform -- uid: 3066 - type: WallSolid - components: - - pos: -49.5,-33.5 - parent: 82 - type: Transform -- uid: 3067 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -51.5,-33.5 - parent: 82 - type: Transform -- uid: 3068 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -52.5,-37.5 - parent: 82 - type: Transform -- uid: 3069 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -52.5,-36.5 - parent: 82 - type: Transform -- uid: 3070 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -52.5,-35.5 - parent: 82 - type: Transform -- uid: 3071 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -52.5,-34.5 - parent: 82 - type: Transform -- uid: 3072 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -52.5,-33.5 - parent: 82 - type: Transform -- uid: 3073 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -51.5,-33.5 - parent: 82 - type: Transform -- uid: 3074 - type: SignCryogenicsMed - components: - - pos: -49.5,-33.5 - parent: 82 - type: Transform -- uid: 3075 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -47.5,-33.5 - parent: 82 - type: Transform -- uid: 3076 - type: MedicalScanner - components: - - pos: -51.5,-37.5 - parent: 82 - type: Transform -- uid: 3077 - type: WallSolid - components: - - pos: -48.5,-25.5 - parent: 82 - type: Transform -- uid: 3078 - type: WallSolid - components: - - pos: -49.5,-25.5 - parent: 82 - type: Transform -- uid: 3079 - type: WallSolid - components: - - pos: -50.5,-25.5 - parent: 82 - type: Transform -- uid: 3080 - type: WallSolid - components: - - pos: -51.5,-25.5 - parent: 82 - type: Transform -- uid: 3081 - type: WallSolid - components: - - pos: -52.5,-25.5 - parent: 82 - type: Transform -- uid: 3082 - type: WallSolid - components: - - pos: -52.5,-26.5 - parent: 82 - type: Transform -- uid: 3083 - type: WallSolid - components: - - pos: -52.5,-27.5 - parent: 82 - type: Transform -- uid: 3084 - type: WallSolid - components: - - pos: -52.5,-28.5 - parent: 82 - type: Transform -- uid: 3085 - type: WallSolid - components: - - pos: -52.5,-29.5 - parent: 82 - type: Transform -- uid: 3086 - type: Grille - components: - - pos: -51.5,-29.5 - parent: 82 - type: Transform -- uid: 3087 - type: Grille - components: - - pos: -50.5,-29.5 - parent: 82 - type: Transform -- uid: 3088 - type: Grille - components: - - pos: -48.5,-29.5 - parent: 82 - type: Transform -- uid: 3089 - type: Window - components: - - pos: -51.5,-29.5 - parent: 82 - type: Transform -- uid: 3090 - type: Window - components: - - pos: -50.5,-29.5 - parent: 82 - type: Transform -- uid: 3091 - type: Window - components: - - pos: -48.5,-29.5 - parent: 82 - type: Transform -- uid: 3092 - type: KitchenMicrowave - components: - - pos: -48.5,-26.5 - parent: 82 - type: Transform -- uid: 3093 - type: TableReinforcedGlass - components: - - pos: -49.5,-26.5 - parent: 82 - type: Transform -- uid: 3094 - type: TableWood - components: - - pos: -51.5,-28.5 - parent: 82 - type: Transform -- uid: 3095 - type: TableWood - components: - - pos: -51.5,-27.5 - parent: 82 - type: Transform -- uid: 3096 - type: TableReinforcedGlass - components: - - pos: -48.5,-26.5 - parent: 82 - type: Transform -- uid: 3097 - type: RandomVending - components: - - pos: -51.5,-26.5 - parent: 82 - type: Transform -- uid: 3098 - type: WallSolid - components: - - pos: -53.5,-33.5 - parent: 82 - type: Transform -- uid: 3099 - type: WallSolid - components: - - pos: -53.5,-32.5 - parent: 82 - type: Transform -- uid: 3100 - type: CableApcExtension - components: - - pos: 16.5,-17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3101 - type: WallSolid - components: - - pos: -53.5,-29.5 - parent: 82 - type: Transform -- uid: 3102 - type: WallSolid - components: - - pos: -52.5,-24.5 - parent: 82 - type: Transform -- uid: 3103 - type: WallSolid - components: - - pos: -52.5,-23.5 - parent: 82 - type: Transform -- uid: 3104 - type: WallSolid - components: - - pos: -53.5,-23.5 - parent: 82 - type: Transform -- uid: 3105 - type: WallSolid - components: - - pos: -54.5,-23.5 - parent: 82 - type: Transform -- uid: 3106 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-30.5 - parent: 82 - type: Transform -- uid: 3107 - type: WallSolid - components: - - pos: -56.5,-23.5 - parent: 82 - type: Transform -- uid: 3108 - type: WallSolid - components: - - pos: -57.5,-23.5 - parent: 82 - type: Transform -- uid: 3109 - type: WallSolid - components: - - pos: -58.5,-23.5 - parent: 82 - type: Transform -- uid: 3110 - type: WallSolid - components: - - pos: -58.5,-24.5 - parent: 82 - type: Transform -- uid: 3111 - type: WallSolid - components: - - pos: -58.5,-25.5 - parent: 82 - type: Transform -- uid: 3112 - type: WallSolid - components: - - pos: -58.5,-26.5 - parent: 82 - type: Transform -- uid: 3113 - type: WallSolid - components: - - pos: -58.5,-27.5 - parent: 82 - type: Transform -- uid: 3114 - type: WallSolid - components: - - pos: -58.5,-28.5 - parent: 82 - type: Transform -- uid: 3115 - type: WallSolid - components: - - pos: -56.5,-29.5 - parent: 82 - type: Transform -- uid: 3116 - type: WallSolid - components: - - pos: -58.5,-29.5 - parent: 82 - type: Transform -- uid: 3117 - type: WallSolid - components: - - pos: -57.5,-29.5 - parent: 82 - type: Transform -- uid: 3118 - type: WallSolid - components: - - pos: -54.5,-29.5 - parent: 82 - type: Transform -- uid: 3119 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-24.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3120 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-25.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3121 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-26.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3122 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-27.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3123 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-28.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3124 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-24.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3125 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-25.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3126 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-26.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3127 - type: TableReinforcedGlass - components: - - pos: -53.5,-28.5 - parent: 82 - type: Transform -- uid: 3128 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-31.5 - parent: 82 - type: Transform -- uid: 3129 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-32.5 - parent: 82 - type: Transform -- uid: 3130 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-33.5 - parent: 82 - type: Transform -- uid: 3131 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-33.5 - parent: 82 - type: Transform -- uid: 3132 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-27.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3133 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-33.5 - parent: 82 - type: Transform -- uid: 3134 - type: TableReinforcedGlass - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-25.5 - parent: 82 - type: Transform -- uid: 3135 - type: TableReinforcedGlass - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-26.5 - parent: 82 - type: Transform -- uid: 3136 - type: TableReinforcedGlass - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-30.5 - parent: 82 - type: Transform -- uid: 3137 - type: BiomassReclaimer - components: - - pos: -56.5,-30.5 - parent: 82 - type: Transform -- uid: 3138 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -50.5,-37.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3139 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 1.5,-22.5 - parent: 82 - type: Transform -- uid: 3140 - type: WardrobeSecurityFilled - components: - - pos: -23.5,-37.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3141 - type: WardrobeVirology - components: - - pos: -40.5,-25.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3142 - type: SpawnMobAlexander - components: - - pos: -33.5,-13.5 - parent: 82 - type: Transform -- uid: 3143 - type: ReinforcedWindow - components: - - pos: 8.5,73.5 - parent: 82 - type: Transform -- uid: 3144 - type: Window - components: - - pos: -35.5,-33.5 - parent: 82 - type: Transform -- uid: 3145 - type: Window - components: - - pos: -34.5,-33.5 - parent: 82 - type: Transform -- uid: 3146 - type: Window - components: - - pos: -33.5,-33.5 - parent: 82 - type: Transform -- uid: 3147 - type: Window - components: - - pos: -38.5,-33.5 - parent: 82 - type: Transform -- uid: 3148 - type: Window - components: - - pos: -30.5,-33.5 - parent: 82 - type: Transform -- uid: 3149 - type: WallSolid - components: - - pos: -26.5,6.5 - parent: 82 - type: Transform -- uid: 3150 - type: WallSolid - components: - - pos: -27.5,6.5 - parent: 82 - type: Transform -- uid: 3151 - type: WallSolid - components: - - pos: -28.5,6.5 - parent: 82 - type: Transform -- uid: 3152 - type: WallSolid - components: - - pos: -29.5,6.5 - parent: 82 - type: Transform -- uid: 3153 - type: WallSolid - components: - - pos: -30.5,6.5 - parent: 82 - type: Transform -- uid: 3154 - type: Grille - components: - - pos: -12.5,-27.5 - parent: 82 - type: Transform -- uid: 3155 - type: WallReinforced - components: - - pos: -27.5,-41.5 - parent: 82 - type: Transform -- uid: 3156 - type: WallReinforced - components: - - pos: -28.5,-41.5 - parent: 82 - type: Transform -- uid: 3157 - type: WallReinforced - components: - - pos: -28.5,-40.5 - parent: 82 - type: Transform -- uid: 3158 - type: WallReinforced - components: - - pos: -28.5,-36.5 - parent: 82 - type: Transform -- uid: 3159 - type: WallReinforced - components: - - pos: -27.5,-36.5 - parent: 82 - type: Transform -- uid: 3160 - type: WallReinforced - components: - - pos: -26.5,-36.5 - parent: 82 - type: Transform -- uid: 3161 - type: WallReinforced - components: - - pos: -26.5,-41.5 - parent: 82 - type: Transform -- uid: 3162 - type: WallSolid - components: - - pos: -30.5,-0.5 - parent: 82 - type: Transform -- uid: 3163 - type: WallSolid - components: - - pos: -29.5,-0.5 - parent: 82 - type: Transform -- uid: 3164 - type: WallSolid - components: - - pos: -28.5,-0.5 - parent: 82 - type: Transform -- uid: 3165 - type: Window - components: - - pos: -24.5,5.5 - parent: 82 - type: Transform -- uid: 3166 - type: Window - components: - - pos: -24.5,3.5 - parent: 82 - type: Transform -- uid: 3167 - type: Window - components: - - pos: -24.5,2.5 - parent: 82 - type: Transform -- uid: 3168 - type: Window - components: - - pos: -24.5,0.5 - parent: 82 - type: Transform -- uid: 3169 - type: Table - components: - - pos: -26.5,0.5 - parent: 82 - type: Transform -- uid: 3170 - type: Table - components: - - pos: -27.5,0.5 - parent: 82 - type: Transform -- uid: 3171 - type: Table - components: - - pos: -28.5,0.5 - parent: 82 - type: Transform -- uid: 3172 - type: Table - components: - - pos: -26.5,5.5 - parent: 82 - type: Transform -- uid: 3173 - type: Table - components: - - pos: -27.5,5.5 - parent: 82 - type: Transform -- uid: 3174 - type: Table - components: - - pos: -28.5,5.5 - parent: 82 - type: Transform -- uid: 3175 - type: Table - components: - - pos: -30.5,3.5 - parent: 82 - type: Transform -- uid: 3176 - type: Table - components: - - pos: -30.5,2.5 - parent: 82 - type: Transform -- uid: 3177 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: -30.5,5.5 - parent: 82 - type: Transform -- uid: 3178 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: -29.5,5.5 - parent: 82 - type: Transform -- uid: 3179 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,0.5 - parent: 82 - type: Transform -- uid: 3180 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,5.5 - parent: 82 - type: Transform -- uid: 3181 - type: CableApcExtension - components: - - pos: 27.5,24.5 - parent: 82 - type: Transform -- uid: 3182 - type: MedkitAdvancedFilled - components: - - pos: -37.363197,-38.382984 - parent: 82 - type: Transform -- uid: 3183 - type: MedkitBruteFilled - components: - - pos: -37.377087,-38.702427 - parent: 82 - type: Transform -- uid: 3184 - type: MedkitBurnFilled - components: - - pos: -37.363197,-39.035763 - parent: 82 - type: Transform -- uid: 3185 - type: MedkitOxygenFilled - components: - - pos: -37.363197,-39.369095 - parent: 82 - type: Transform -- uid: 3186 - type: MedkitRadiationFilled - components: - - pos: -37.363197,-39.688538 - parent: 82 - type: Transform -- uid: 3187 - type: MedkitToxinFilled - components: - - pos: -37.363197,-40.007984 - parent: 82 - type: Transform -- uid: 3188 - type: MedkitFilled - components: - - pos: -37.363197,-40.313538 - parent: 82 - type: Transform -- uid: 3189 - type: PillHyronalin - components: - - pos: -46.589233,-24.397758 - parent: 82 - type: Transform -- uid: 3190 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: 59.5,-12.5 - parent: 82 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 25274 - - port: Toggle - uid: 25276 - - port: Toggle - uid: 25277 - - port: Toggle - uid: 25273 - - port: Toggle - uid: 25275 - - port: Toggle - uid: 25272 - - port: Toggle - uid: 25271 - - port: Toggle - uid: 3262 - - port: Toggle - uid: 6316 - - port: Toggle - uid: 13991 - - port: Toggle - uid: 25268 - - port: Toggle - uid: 10424 - type: SignalTransmitter -- uid: 3191 - type: WallReinforced - components: - - pos: 58.5,-12.5 - parent: 82 - type: Transform -- uid: 3192 - type: WindowFrostedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-34.5 - parent: 82 - type: Transform -- uid: 3193 - type: WindowFrostedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-34.5 - parent: 82 - type: Transform -- uid: 3194 - type: MachineAnomalyVessel - components: - - rot: 1.5707963267948966 rad - pos: 21.5,73.5 - parent: 82 - type: Transform -- uid: 3195 - type: VendingMachineHydrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -37.5,-17.5 - parent: 82 - type: Transform -- uid: 3196 - type: LockerBotanistFilled - components: - - pos: -36.5,-17.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3197 - type: LockerBotanistFilled - components: - - pos: -35.5,-17.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3198 - type: LockerBotanistFilled - components: - - pos: -34.5,-17.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3199 - type: WallReinforced - components: - - pos: 59.5,-12.5 - parent: 82 - type: Transform -- uid: 3200 - type: WallReinforced - components: - - pos: -20.5,-41.5 - parent: 82 - type: Transform -- uid: 3201 - type: SeedExtractor - components: - - pos: -33.5,-23.5 - parent: 82 - type: Transform -- uid: 3202 - type: VendingMachineNutri - components: - - flags: SessionSpecific - type: MetaData - - pos: -32.5,-23.5 - parent: 82 - type: Transform -- uid: 3203 - type: hydroponicsTray - components: - - pos: -35.5,-19.5 - parent: 82 - type: Transform -- uid: 3204 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-21.5 - parent: 82 - type: Transform -- uid: 3205 - type: hydroponicsTray - components: - - pos: -35.5,-21.5 - parent: 82 - type: Transform -- uid: 3206 - type: hydroponicsTray - components: - - pos: -34.5,-19.5 - parent: 82 - type: Transform -- uid: 3207 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-22.5 - parent: 82 - type: Transform -- uid: 3208 - type: hydroponicsTray - components: - - pos: -34.5,-21.5 - parent: 82 - type: Transform -- uid: 3209 - type: hydroponicsTray - components: - - pos: -32.5,-19.5 - parent: 82 - type: Transform -- uid: 3210 - type: hydroponicsTray - components: - - pos: -33.5,-21.5 - parent: 82 - type: Transform -- uid: 3211 - type: hydroponicsTray - components: - - pos: -32.5,-21.5 - parent: 82 - type: Transform -- uid: 3212 - type: hydroponicsTray - components: - - pos: -31.5,-19.5 - parent: 82 - type: Transform -- uid: 3213 - type: hydroponicsTray - components: - - pos: -33.5,-19.5 - parent: 82 - type: Transform -- uid: 3214 - type: hydroponicsTray - components: - - pos: -31.5,-21.5 - parent: 82 - type: Transform -- uid: 3215 - type: hydroponicsTray - components: - - pos: -36.5,-19.5 - parent: 82 - type: Transform -- uid: 3216 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-19.5 - parent: 82 - type: Transform -- uid: 3217 - type: hydroponicsTray - components: - - pos: -36.5,-21.5 - parent: 82 - type: Transform -- uid: 3218 - type: WaterTankHighCapacity - components: - - pos: -30.5,-22.5 - parent: 82 - type: Transform -- uid: 3219 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-18.5 - parent: 82 - type: Transform -- uid: 3220 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-17.5 - parent: 82 - type: Transform -- uid: 3221 - type: Railing - components: - - pos: -42.5,-17.5 - parent: 82 - type: Transform -- uid: 3222 - type: hydroponicsSoil - components: - - pos: -42.5,-22.5 - parent: 82 - type: Transform -- uid: 3223 - type: hydroponicsSoil - components: - - pos: -42.5,-21.5 - parent: 82 - type: Transform -- uid: 3224 - type: hydroponicsSoil - components: - - pos: -42.5,-18.5 - parent: 82 - type: Transform -- uid: 3225 - type: hydroponicsSoil - components: - - pos: -42.5,-19.5 - parent: 82 - type: Transform -- uid: 3226 - type: hydroponicsSoil - components: - - pos: -39.5,-23.5 - parent: 82 - type: Transform -- uid: 3227 - type: hydroponicsSoil - components: - - pos: -40.5,-23.5 - parent: 82 - type: Transform -- uid: 3228 - type: Window - components: - - pos: -38.5,-23.5 - parent: 82 - type: Transform -- uid: 3229 - type: TableGlass - components: - - pos: -37.5,-24.5 - parent: 82 - type: Transform -- uid: 3230 - type: TableGlass - components: - - pos: -37.5,-23.5 - parent: 82 - type: Transform -- uid: 3231 - type: HydroponicsToolHatchet - components: - - pos: -37.60096,-23.27671 - parent: 82 - type: Transform -- uid: 3232 - type: HydroponicsToolMiniHoe - components: - - pos: -37.60096,-23.818378 - parent: 82 - type: Transform -- uid: 3233 - type: HydroponicsToolClippers - components: - - pos: -37.54679,-23.547543 - parent: 82 - type: Transform -- uid: 3234 - type: HydroponicsToolScythe - components: - - pos: -37.474567,-23.962822 - parent: 82 - type: Transform -- uid: 3235 - type: HydroponicsToolSpade - components: - - pos: -37.31207,-24.107265 - parent: 82 - type: Transform -- uid: 3236 - type: PlantBag - components: - - pos: -37.51068,-24.558655 - parent: 82 - type: Transform -- uid: 3237 - type: Bucket - components: - - pos: -30.300417,-21.711071 - parent: 82 - type: Transform - - tags: [] - type: Tag -- uid: 3238 - type: Bucket - components: - - pos: -30.607363,-21.34996 - parent: 82 - type: Transform - - tags: [] - type: Tag -- uid: 3239 - type: CableApcExtension - components: - - pos: 27.5,27.5 - parent: 82 - type: Transform -- uid: 3240 - type: CableApcExtension - components: - - pos: 28.5,25.5 - parent: 82 - type: Transform -- uid: 3241 - type: CableApcExtension - components: - - pos: 23.5,26.5 - parent: 82 - type: Transform -- uid: 3242 - type: CableApcExtension - components: - - pos: 26.5,25.5 - parent: 82 - type: Transform -- uid: 3243 - type: CableApcExtension - components: - - pos: 25.5,26.5 - parent: 82 - type: Transform -- uid: 3244 - type: CableApcExtension - components: - - pos: 26.5,26.5 - parent: 82 - type: Transform -- uid: 3245 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 20.5,58.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3246 - type: Rack - components: - - pos: 29.5,-6.5 - parent: 82 - type: Transform -- uid: 3247 - type: Rack - components: - - pos: 24.5,-6.5 - parent: 82 - type: Transform -- uid: 3248 - type: Rack - components: - - pos: 27.5,-6.5 - parent: 82 - type: Transform -- uid: 3249 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3250 - type: MaintenanceToolSpawner - components: - - pos: 22.5,-6.5 - parent: 82 - type: Transform -- uid: 3251 - type: WallSolid - components: - - pos: 32.5,-13.5 - parent: 82 - type: Transform -- uid: 3252 - type: WallSolid - components: - - pos: 31.5,-13.5 - parent: 82 - type: Transform -- uid: 3253 - type: WallSolid - components: - - pos: 30.5,-13.5 - parent: 82 - type: Transform -- uid: 3254 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3255 - type: WallSolid - components: - - pos: 28.5,-13.5 - parent: 82 - type: Transform -- uid: 3256 - type: WallSolid - components: - - pos: 27.5,-13.5 - parent: 82 - type: Transform -- uid: 3257 - type: WallSolid - components: - - pos: 27.5,-12.5 - parent: 82 - type: Transform -- uid: 3258 - type: WallSolid - components: - - pos: 26.5,-12.5 - parent: 82 - type: Transform -- uid: 3259 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3260 - type: WallSolid - components: - - pos: 24.5,-12.5 - parent: 82 - type: Transform -- uid: 3261 - type: WallSolid - components: - - pos: 23.5,-12.5 - parent: 82 - type: Transform -- uid: 3262 - type: ShuttersNormal - components: - - pos: 58.5,-6.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -352141.03 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver -- uid: 3263 - type: HospitalCurtainsOpen - components: - - pos: 44.5,-43.5 - parent: 82 - type: Transform -- uid: 3264 - type: WallReinforced - components: - - pos: 32.5,69.5 - parent: 82 - type: Transform -- uid: 3265 - type: TableReinforcedGlass - components: - - pos: -21.5,-35.5 - parent: 82 - type: Transform -- uid: 3266 - type: TableReinforcedGlass - components: - - pos: -22.5,-35.5 - parent: 82 - type: Transform -- uid: 3267 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-21.5 - parent: 82 - type: Transform -- uid: 3268 - type: MedkitBruteFilled - components: - - pos: -23.13993,-27.463104 - parent: 82 - type: Transform -- uid: 3269 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-21.5 - parent: 82 - type: Transform -- uid: 3270 - type: DonkpocketBoxSpawner - components: - - pos: -49.5,-26.5 - parent: 82 - type: Transform -- uid: 3271 - type: BoxBeaker - components: - - pos: -35.667805,-28.252876 - parent: 82 - type: Transform -- uid: 3272 - type: BoxBodyBag - components: - - pos: -55.588173,-25.310688 - parent: 82 - type: Transform -- uid: 3273 - type: BoxBottle - components: - - pos: -35.402004,-28.429878 - parent: 82 - type: Transform -- uid: 3274 - type: EmergencyRollerBed - components: - - pos: -35.5,-32.5 - parent: 82 - type: Transform -- uid: 3275 - type: BoxLatexGloves - components: - - pos: -35.321823,-34.391674 - parent: 82 - type: Transform -- uid: 3276 - type: BoxMouthSwab - components: - - pos: -45.256046,-23.16621 - parent: 82 - type: Transform -- uid: 3277 - type: BoxMouthSwab - components: - - pos: -45.56299,-23.310654 - parent: 82 - type: Transform -- uid: 3278 - type: GasPipeStraight - components: - - pos: -50.5,-33.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3279 - type: BoxSterileMask - components: - - pos: -27.590513,-28.300278 - parent: 82 - type: Transform -- uid: 3280 - type: BoxSterileMask - components: - - pos: -35.022633,-34.322704 - parent: 82 - type: Transform -- uid: 3281 - type: BoxSyringe - components: - - pos: -35.575672,-34.238083 - parent: 82 - type: Transform -- uid: 3282 - type: GasPipeStraight - components: - - pos: -50.5,-34.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3283 - type: ChemistryHotplate - components: - - pos: -29.5,-26.5 - parent: 82 - type: Transform -- uid: 3284 - type: WindowTintedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-40.5 - parent: 82 - type: Transform -- uid: 3285 - type: AirlockGlass - components: - - pos: -7.5,-43.5 - parent: 82 - type: Transform -- uid: 3286 - type: AirlockGlass - components: - - pos: -7.5,-33.5 - parent: 82 - type: Transform -- uid: 3287 - type: AirlockGlass - components: - - pos: -7.5,-34.5 - parent: 82 - type: Transform -- uid: 3288 - type: AirlockGlass - components: - - pos: -7.5,-41.5 - parent: 82 - type: Transform -- uid: 3289 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: -7.5,-32.5 - parent: 82 - type: Transform -- uid: 3290 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 77.5,5.5 - parent: 82 - type: Transform -- uid: 3291 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 74.5,5.5 - parent: 82 - type: Transform -- uid: 3292 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 84.5,5.5 - parent: 82 - type: Transform -- uid: 3293 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 81.5,5.5 - parent: 82 - type: Transform -- uid: 3294 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 81.5,11.5 - parent: 82 - type: Transform -- uid: 3295 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 84.5,11.5 - parent: 82 - type: Transform -- uid: 3296 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 74.5,11.5 - parent: 82 - type: Transform -- uid: 3297 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 77.5,11.5 - parent: 82 - type: Transform -- uid: 3298 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-22.5 - parent: 82 - type: Transform -- uid: 3299 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-25.5 - parent: 82 - type: Transform -- uid: 3300 - type: CableApcExtension - components: - - pos: -9.5,-38.5 - parent: 82 - type: Transform -- uid: 3301 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-22.5 - parent: 82 - type: Transform -- uid: 3302 - type: ReinforcedWindow - components: - - pos: -28.5,-24.5 - parent: 82 - type: Transform -- uid: 3303 - type: ReinforcedWindow - components: - - pos: -28.5,-26.5 - parent: 82 - type: Transform -- uid: 3304 - type: ReinforcedWindow - components: - - pos: -28.5,-27.5 - parent: 82 - type: Transform -- uid: 3305 - type: ReinforcedWindow - components: - - pos: -30.5,-29.5 - parent: 82 - type: Transform -- uid: 3306 - type: ReinforcedWindow - components: - - pos: -33.5,-29.5 - parent: 82 - type: Transform -- uid: 3307 - type: WallSolid - components: - - pos: 21.5,-14.5 - parent: 82 - type: Transform -- uid: 3308 - type: WallSolid - components: - - pos: 21.5,-15.5 - parent: 82 - type: Transform -- uid: 3309 - type: WallSolid - components: - - pos: 22.5,-15.5 - parent: 82 - type: Transform -- uid: 3310 - type: WallSolid - components: - - pos: 22.5,-16.5 - parent: 82 - type: Transform -- uid: 3311 - type: WallSolid - components: - - pos: 22.5,-17.5 - parent: 82 - type: Transform -- uid: 3312 - type: WallSolid - components: - - pos: 23.5,-17.5 - parent: 82 - type: Transform -- uid: 3313 - type: Grille - components: - - pos: 23.5,-18.5 - parent: 82 - type: Transform -- uid: 3314 - type: Grille - components: - - pos: 23.5,-21.5 - parent: 82 - type: Transform -- uid: 3315 - type: WallSolid - components: - - pos: 23.5,-22.5 - parent: 82 - type: Transform -- uid: 3316 - type: WallSolid - components: - - pos: 22.5,-22.5 - parent: 82 - type: Transform -- uid: 3317 - type: WallSolid - components: - - pos: 22.5,-23.5 - parent: 82 - type: Transform -- uid: 3318 - type: WallSolid - components: - - pos: 22.5,-24.5 - parent: 82 - type: Transform -- uid: 3319 - type: TintedWindow - components: - - pos: 23.5,-18.5 - parent: 82 - type: Transform -- uid: 3320 - type: WallSolid - components: - - pos: 27.5,-29.5 - parent: 82 - type: Transform -- uid: 3321 - type: Grille - components: - - pos: 31.5,-29.5 - parent: 82 - type: Transform -- uid: 3322 - type: TintedWindow - components: - - pos: 23.5,-21.5 - parent: 82 - type: Transform -- uid: 3323 - type: WallSolid - components: - - pos: 23.5,-15.5 - parent: 82 - type: Transform -- uid: 3324 - type: WallSolid - components: - - pos: 24.5,-15.5 - parent: 82 - type: Transform -- uid: 3325 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-24.5 - parent: 82 - type: Transform -- uid: 3326 - type: WallSolid - components: - - pos: 26.5,-15.5 - parent: 82 - type: Transform -- uid: 3327 - type: WallSolid - components: - - pos: 27.5,-15.5 - parent: 82 - type: Transform -- uid: 3328 - type: WallSolid - components: - - pos: 27.5,-14.5 - parent: 82 - type: Transform -- uid: 3329 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3330 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3331 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-21.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3332 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3333 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3334 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-21.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3335 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3336 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3337 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-21.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3338 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3339 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3340 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3341 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 82 - type: Transform -- uid: 3342 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-24.5 - parent: 82 - type: Transform -- uid: 3343 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-24.5 - parent: 82 - type: Transform -- uid: 3344 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-24.5 - parent: 82 - type: Transform -- uid: 3345 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-24.5 - parent: 82 - type: Transform -- uid: 3346 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-23.5 - parent: 82 - type: Transform -- uid: 3347 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-22.5 - parent: 82 - type: Transform -- uid: 3348 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-21.5 - parent: 82 - type: Transform -- uid: 3349 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-18.5 - parent: 82 - type: Transform -- uid: 3350 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-17.5 - parent: 82 - type: Transform -- uid: 3351 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-16.5 - parent: 82 - type: Transform -- uid: 3352 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-24.5 - parent: 82 - type: Transform -- uid: 3353 - type: WallReinforced - components: - - pos: -25.5,-41.5 - parent: 82 - type: Transform -- uid: 3354 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-21.5 - parent: 82 - type: Transform -- uid: 3355 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-22.5 - parent: 82 - type: Transform -- uid: 3356 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-18.5 - parent: 82 - type: Transform -- uid: 3357 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-17.5 - parent: 82 - type: Transform -- uid: 3358 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-21.5 - parent: 82 - type: Transform -- uid: 3359 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-22.5 - parent: 82 - type: Transform -- uid: 3360 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-17.5 - parent: 82 - type: Transform -- uid: 3361 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-18.5 - parent: 82 - type: Transform -- uid: 3362 - type: WindowReinforcedDirectional - components: - - pos: 32.5,-15.5 - parent: 82 - type: Transform -- uid: 3363 - type: WindowReinforcedDirectional - components: - - pos: 33.5,-15.5 - parent: 82 - type: Transform -- uid: 3364 - type: CrowbarRed - components: - - pos: 29.449062,-7.4768457 - parent: 82 - type: Transform -- uid: 3365 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-18.5 - parent: 82 - type: Transform -- uid: 3366 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-31.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3367 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-19.5 - parent: 82 - type: Transform -- uid: 3368 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-20.5 - parent: 82 - type: Transform -- uid: 3369 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-21.5 - parent: 82 - type: Transform -- uid: 3370 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-18.5 - parent: 82 - type: Transform -- uid: 3371 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-21.5 - parent: 82 - type: Transform -- uid: 3372 - type: WallReinforced - components: - - pos: 35.5,-15.5 - parent: 82 - type: Transform -- uid: 3373 - type: WallReinforced - components: - - pos: 35.5,-16.5 - parent: 82 - type: Transform -- uid: 3374 - type: WallReinforced - components: - - pos: 35.5,-17.5 - parent: 82 - type: Transform -- uid: 3375 - type: WallReinforced - components: - - pos: 35.5,-18.5 - parent: 82 - type: Transform -- uid: 3376 - type: WallReinforced - components: - - pos: 35.5,-19.5 - parent: 82 - type: Transform -- uid: 3377 - type: WallReinforced - components: - - pos: 35.5,-20.5 - parent: 82 - type: Transform -- uid: 3378 - type: WallReinforced - components: - - pos: 35.5,-21.5 - parent: 82 - type: Transform -- uid: 3379 - type: WallReinforced - components: - - pos: 35.5,-22.5 - parent: 82 - type: Transform -- uid: 3380 - type: WallReinforced - components: - - pos: 35.5,-23.5 - parent: 82 - type: Transform -- uid: 3381 - type: WallReinforced - components: - - pos: -24.5,-41.5 - parent: 82 - type: Transform -- uid: 3382 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-45.5 - parent: 82 - type: Transform -- uid: 3383 - type: WallReinforced - components: - - pos: -21.5,-41.5 - parent: 82 - type: Transform -- uid: 3384 - type: WindowReinforcedDirectional - components: - - pos: 31.5,-15.5 - parent: 82 - type: Transform -- uid: 3385 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-15.5 - parent: 82 - type: Transform -- uid: 3386 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-14.5 - parent: 82 - type: Transform -- uid: 3387 - type: Chair - components: - - pos: 32.5,-14.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3388 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-20.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3389 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3390 - type: PlasticFlapsAirtightClear - components: - - pos: 41.5,26.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 3391 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 42.5,26.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 21634 - Forward: - - port: Left - uid: 21634 - Off: - - port: Middle - uid: 21634 - type: SignalReceiver -- uid: 3392 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 41.5,26.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 21634 - Forward: - - port: Left - uid: 21634 - Off: - - port: Middle - uid: 21634 - type: SignalReceiver -- uid: 3393 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 40.5,26.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 21634 - Forward: - - port: Left - uid: 21634 - Off: - - port: Middle - uid: 21634 - type: SignalReceiver -- uid: 3394 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 39.5,26.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 21634 - Forward: - - port: Left - uid: 21634 - Off: - - port: Middle - uid: 21634 - type: SignalReceiver -- uid: 3395 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 38.5,26.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 21634 - Forward: - - port: Left - uid: 21634 - Off: - - port: Middle - uid: 21634 - type: SignalReceiver -- uid: 3396 - type: Table - components: - - pos: 40.5,18.5 - parent: 82 - type: Transform -- uid: 3397 - type: RandomPosterLegit - components: - - pos: 73.5,10.5 - parent: 82 - type: Transform -- uid: 3398 - type: Table - components: - - pos: 44.5,16.5 - parent: 82 - type: Transform -- uid: 3399 - type: Table - components: - - pos: 44.5,17.5 - parent: 82 - type: Transform -- uid: 3400 - type: Table - components: - - pos: 47.5,26.5 - parent: 82 - type: Transform -- uid: 3401 - type: Table - components: - - pos: 46.5,26.5 - parent: 82 - type: Transform -- uid: 3402 - type: ComputerShuttleCargo - components: - - pos: 47.5,30.5 - parent: 82 - type: Transform -- uid: 3403 - type: ComputerCargoShuttle - components: - - pos: 46.5,30.5 - parent: 82 - type: Transform -- uid: 3404 - type: Table - components: - - pos: 38.5,18.5 - parent: 82 - type: Transform -- uid: 3405 - type: Table - components: - - pos: 37.5,18.5 - parent: 82 - type: Transform -- uid: 3406 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-7.5 - parent: 82 - type: Transform - - devices: - - invalid - - 13504 - - 13546 - - 13513 - - 14942 - - 14941 - - 13359 - - 13358 - - 13545 - - 13553 - - 22393 - - 22392 - - 11338 - - 11339 - - 11345 - - 11344 - - 11343 - - 11342 - - 11341 - - 11340 - - 11360 - - 11362 - - 11358 - - 2080 - - 23297 - - 2120 - type: DeviceList -- uid: 3407 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 8.5,78.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3408 - type: Grille - components: - - pos: 29.5,-29.5 - parent: 82 - type: Transform -- uid: 3409 - type: TableWood - components: - - pos: 31.5,-27.5 - parent: 82 - type: Transform -- uid: 3410 - type: FirelockGlass - components: - - pos: -12.5,42.5 - parent: 82 - type: Transform -- uid: 3411 - type: Window - components: - - pos: 24.5,-28.5 - parent: 82 - type: Transform -- uid: 3412 - type: FirelockGlass - components: - - pos: -13.5,42.5 - parent: 82 - type: Transform -- uid: 3413 - type: Window - components: - - pos: 29.5,-29.5 - parent: 82 - type: Transform -- uid: 3414 - type: Window - components: - - pos: 25.5,-29.5 - parent: 82 - type: Transform -- uid: 3415 - type: Window - components: - - pos: 28.5,-29.5 - parent: 82 - type: Transform -- uid: 3416 - type: WallReinforced - components: - - pos: -22.5,-41.5 - parent: 82 - type: Transform -- uid: 3417 - type: WallReinforced - components: - - pos: -20.5,-40.5 - parent: 82 - type: Transform -- uid: 3418 - type: WallReinforced - components: - - pos: -20.5,-37.5 - parent: 82 - type: Transform -- uid: 3419 - type: WallReinforced - components: - - pos: -20.5,-36.5 - parent: 82 - type: Transform -- uid: 3420 - type: Window - components: - - pos: 26.5,-29.5 - parent: 82 - type: Transform -- uid: 3421 - type: TableWood - components: - - pos: 31.5,-28.5 - parent: 82 - type: Transform -- uid: 3422 - type: Window - components: - - pos: 31.5,-29.5 - parent: 82 - type: Transform -- uid: 3423 - type: WallSolid - components: - - pos: 24.5,-29.5 - parent: 82 - type: Transform -- uid: 3424 - type: WallReinforced - components: - - pos: -21.5,-36.5 - parent: 82 - type: Transform -- uid: 3425 - type: WallSolid - components: - - pos: 30.5,-29.5 - parent: 82 - type: Transform -- uid: 3426 - type: Grille - components: - - pos: 24.5,-28.5 - parent: 82 - type: Transform -- uid: 3427 - type: Grille - components: - - pos: 26.5,-29.5 - parent: 82 - type: Transform -- uid: 3428 - type: Grille - components: - - pos: 28.5,-29.5 - parent: 82 - type: Transform -- uid: 3429 - type: Grille - components: - - pos: 25.5,-29.5 - parent: 82 - type: Transform -- uid: 3430 - type: FirelockGlass - components: - - pos: -21.5,54.5 - parent: 82 - type: Transform -- uid: 3431 - type: FirelockGlass - components: - - pos: -21.5,53.5 - parent: 82 - type: Transform -- uid: 3432 - type: TableWood - components: - - pos: 30.5,-28.5 - parent: 82 - type: Transform -- uid: 3433 - type: TableWood - components: - - pos: 25.5,-26.5 - parent: 82 - type: Transform -- uid: 3434 - type: TableWood - components: - - pos: 25.5,-25.5 - parent: 82 - type: Transform -- uid: 3435 - type: TableWood - components: - - pos: 26.5,-25.5 - parent: 82 - type: Transform -- uid: 3436 - type: VendingMachineLawDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,-25.5 - parent: 82 - type: Transform -- uid: 3437 - type: FoodNoodlesSpesslaw - components: - - pos: 30.589573,-28.400047 - parent: 82 - type: Transform -- uid: 3438 - type: Rack - components: - - pos: 29.5,-28.5 - parent: 82 - type: Transform -- uid: 3439 - type: Rack - components: - - pos: 28.5,-28.5 - parent: 82 - type: Transform -- uid: 3440 - type: filingCabinetRandom - components: - - pos: 31.5,-26.5 - parent: 82 - type: Transform -- uid: 3441 - type: filingCabinetRandom - components: - - pos: 28.5,-25.5 - parent: 82 - type: Transform -- uid: 3442 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,33.5 - parent: 82 - type: Transform -- uid: 3443 - type: LampGold - components: - - pos: 25.443739,-25.240326 - parent: 82 - type: Transform -- uid: 3444 - type: LampGold - components: - - rot: -1.5707963267948966 rad - pos: 31.745129,-27.190327 - parent: 82 - type: Transform -- uid: 3445 - type: BriefcaseBrownFilled - components: - - pos: 29.361795,-28.18338 - parent: 82 - type: Transform -- uid: 3446 - type: BriefcaseBrownFilled - components: - - pos: 29.614573,-28.418102 - parent: 82 - type: Transform -- uid: 3447 - type: ClothingEyesGlassesSunglasses - components: - - pos: 28.386795,-28.273659 - parent: 82 - type: Transform -- uid: 3448 - type: ClothingNeckTieRed - components: - - pos: 28.513184,-28.418102 - parent: 82 - type: Transform -- uid: 3449 - type: ClothingUniformJumpsuitSecBlue - components: - - pos: 28.590425,-28.406395 - parent: 82 - type: Transform -- uid: 3450 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 26.5,-26.5 - parent: 82 - type: Transform -- uid: 3451 - type: ChairOfficeDark - components: - - pos: 30.5,-27.5 - parent: 82 - type: Transform -- uid: 3452 - type: CarpetBlue - components: - - pos: 25.5,-25.5 - parent: 82 - type: Transform -- uid: 3453 - type: CarpetBlue - components: - - pos: 25.5,-26.5 - parent: 82 - type: Transform -- uid: 3454 - type: CarpetBlue - components: - - pos: 26.5,-26.5 - parent: 82 - type: Transform -- uid: 3455 - type: CarpetBlue - components: - - pos: 26.5,-25.5 - parent: 82 - type: Transform -- uid: 3456 - type: CarpetBlue - components: - - pos: 27.5,-25.5 - parent: 82 - type: Transform -- uid: 3457 - type: CarpetBlue - components: - - pos: 27.5,-26.5 - parent: 82 - type: Transform -- uid: 3458 - type: CarpetBlue - components: - - pos: 31.5,-27.5 - parent: 82 - type: Transform -- uid: 3459 - type: CarpetBlue - components: - - pos: 31.5,-28.5 - parent: 82 - type: Transform -- uid: 3460 - type: CarpetBlue - components: - - pos: 30.5,-28.5 - parent: 82 - type: Transform -- uid: 3461 - type: CarpetBlue - components: - - pos: 30.5,-27.5 - parent: 82 - type: Transform -- uid: 3462 - type: CarpetBlue - components: - - pos: 30.5,-26.5 - parent: 82 - type: Transform -- uid: 3463 - type: CarpetBlue - components: - - pos: 31.5,-26.5 - parent: 82 - type: Transform -- uid: 3464 - type: CarpetOrange - components: - - pos: 31.5,-18.5 - parent: 82 - type: Transform -- uid: 3465 - type: CarpetOrange - components: - - pos: 31.5,-19.5 - parent: 82 - type: Transform -- uid: 3466 - type: CarpetOrange - components: - - pos: 31.5,-20.5 - parent: 82 - type: Transform -- uid: 3467 - type: CarpetOrange - components: - - pos: 31.5,-21.5 - parent: 82 - type: Transform -- uid: 3468 - type: CarpetOrange - components: - - pos: 32.5,-21.5 - parent: 82 - type: Transform -- uid: 3469 - type: CarpetOrange - components: - - pos: 33.5,-21.5 - parent: 82 - type: Transform -- uid: 3470 - type: CarpetOrange - components: - - pos: 33.5,-20.5 - parent: 82 - type: Transform -- uid: 3471 - type: CarpetOrange - components: - - pos: 33.5,-19.5 - parent: 82 - type: Transform -- uid: 3472 - type: CarpetOrange - components: - - pos: 33.5,-18.5 - parent: 82 - type: Transform -- uid: 3473 - type: CarpetOrange - components: - - pos: 32.5,-18.5 - parent: 82 - type: Transform -- uid: 3474 - type: CarpetOrange - components: - - pos: 32.5,-19.5 - parent: 82 - type: Transform -- uid: 3475 - type: CarpetOrange - components: - - pos: 32.5,-20.5 - parent: 82 - type: Transform -- uid: 3476 - type: WallReinforced - components: - - pos: 54.5,0.5 - parent: 82 - type: Transform -- uid: 3477 - type: WallReinforced - components: - - pos: 53.5,0.5 - parent: 82 - type: Transform -- uid: 3478 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-3.5 - parent: 82 - type: Transform -- uid: 3479 - type: WallReinforced - components: - - pos: 51.5,0.5 - parent: 82 - type: Transform -- uid: 3480 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-3.5 - parent: 82 - type: Transform -- uid: 3481 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-0.5 - parent: 82 - type: Transform -- uid: 3482 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 51.5,1.5 - parent: 82 - type: Transform -- uid: 3483 - type: WallReinforced - components: - - pos: 52.5,0.5 - parent: 82 - type: Transform -- uid: 3484 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 48.5,1.5 - parent: 82 - type: Transform -- uid: 3485 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-3.5 - parent: 82 - type: Transform -- uid: 3486 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-0.5 - parent: 82 - type: Transform -- uid: 3487 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-1.5 - parent: 82 - type: Transform -- uid: 3488 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-0.5 - parent: 82 - type: Transform -- uid: 3489 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 38.5,0.5 - parent: 82 - type: Transform -- uid: 3490 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-1.5 - parent: 82 - type: Transform -- uid: 3491 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-1.5 - parent: 82 - type: Transform -- uid: 3492 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 42.5,1.5 - parent: 82 - type: Transform -- uid: 3493 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 38.5,1.5 - parent: 82 - type: Transform -- uid: 3494 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 37.5,1.5 - parent: 82 - type: Transform -- uid: 3495 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-1.5 - parent: 82 - type: Transform -- uid: 3496 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-1.5 - parent: 82 - type: Transform -- uid: 3497 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-1.5 - parent: 82 - type: Transform -- uid: 3498 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 40.5,1.5 - parent: 82 - type: Transform -- uid: 3499 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-1.5 - parent: 82 - type: Transform -- uid: 3500 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-1.5 - parent: 82 - type: Transform -- uid: 3501 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 40.5,1.5 - parent: 82 - type: Transform -- uid: 3502 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-0.5 - parent: 82 - type: Transform -- uid: 3503 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 42.5,0.5 - parent: 82 - type: Transform -- uid: 3504 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-2.5 - parent: 82 - type: Transform -- uid: 3505 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-6.5 - parent: 82 - type: Transform -- uid: 3506 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-6.5 - parent: 82 - type: Transform -- uid: 3507 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-6.5 - parent: 82 - type: Transform -- uid: 3508 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-6.5 - parent: 82 - type: Transform -- uid: 3509 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-6.5 - parent: 82 - type: Transform -- uid: 3510 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-10.5 - parent: 82 - type: Transform -- uid: 3511 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-6.5 - parent: 82 - type: Transform -- uid: 3512 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-10.5 - parent: 82 - type: Transform -- uid: 3513 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3514 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3515 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-7.5 - parent: 82 - type: Transform -- uid: 3516 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-8.5 - parent: 82 - type: Transform -- uid: 3517 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-9.5 - parent: 82 - type: Transform -- uid: 3518 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-10.5 - parent: 82 - type: Transform -- uid: 3519 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-10.5 - parent: 82 - type: Transform -- uid: 3520 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-10.5 - parent: 82 - type: Transform -- uid: 3521 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-9.5 - parent: 82 - type: Transform -- uid: 3522 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-8.5 - parent: 82 - type: Transform -- uid: 3523 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-7.5 - parent: 82 - type: Transform -- uid: 3524 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-7.5 - parent: 82 - type: Transform -- uid: 3525 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-8.5 - parent: 82 - type: Transform -- uid: 3526 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-9.5 - parent: 82 - type: Transform -- uid: 3527 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-6.5 - parent: 82 - type: Transform -- uid: 3528 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-6.5 - parent: 82 - type: Transform -- uid: 3529 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-6.5 - parent: 82 - type: Transform -- uid: 3530 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-6.5 - parent: 82 - type: Transform -- uid: 3531 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-7.5 - parent: 82 - type: Transform -- uid: 3532 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-8.5 - parent: 82 - type: Transform -- uid: 3533 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-9.5 - parent: 82 - type: Transform -- uid: 3534 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-10.5 - parent: 82 - type: Transform -- uid: 3535 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-10.5 - parent: 82 - type: Transform -- uid: 3536 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-10.5 - parent: 82 - type: Transform -- uid: 3537 - type: WallReinforced - components: - - pos: 48.5,0.5 - parent: 82 - type: Transform -- uid: 3538 - type: Grille - components: - - pos: 61.5,1.5 - parent: 82 - type: Transform -- uid: 3539 - type: WallReinforced - components: - - pos: 58.5,1.5 - parent: 82 - type: Transform -- uid: 3540 - type: WallReinforced - components: - - pos: 57.5,1.5 - parent: 82 - type: Transform -- uid: 3541 - type: WallReinforced - components: - - pos: 56.5,1.5 - parent: 82 - type: Transform -- uid: 3542 - type: WallReinforced - components: - - pos: 55.5,1.5 - parent: 82 - type: Transform -- uid: 3543 - type: WallReinforced - components: - - pos: 54.5,1.5 - parent: 82 - type: Transform -- uid: 3544 - type: ComputerCriminalRecords - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-2.5 - parent: 82 - type: Transform -- uid: 3545 - type: ComputerSurveillanceCameraMonitor - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-2.5 - parent: 82 - type: Transform -- uid: 3546 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-2.5 - parent: 82 - type: Transform -- uid: 3547 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-3.5 - parent: 82 - type: Transform -- uid: 3548 - type: WindowReinforcedDirectional - components: - - pos: 43.5,-3.5 - parent: 82 - type: Transform -- uid: 3549 - type: WindowReinforcedDirectional - components: - - pos: 45.5,-3.5 - parent: 82 - type: Transform -- uid: 3550 - type: WindowReinforcedDirectional - components: - - pos: 47.5,-3.5 - parent: 82 - type: Transform -- uid: 3551 - type: Table - components: - - pos: 43.5,-3.5 - parent: 82 - type: Transform -- uid: 3552 - type: Table - components: - - pos: 47.5,-3.5 - parent: 82 - type: Transform -- uid: 3553 - type: Grille - components: - - pos: 37.5,-20.5 - parent: 82 - type: Transform -- uid: 3554 - type: Grille - components: - - pos: 45.5,-20.5 - parent: 82 - type: Transform -- uid: 3555 - type: Grille - components: - - pos: 40.5,-20.5 - parent: 82 - type: Transform -- uid: 3556 - type: Grille - components: - - pos: 42.5,-20.5 - parent: 82 - type: Transform -- uid: 3557 - type: Grille - components: - - pos: 43.5,-20.5 - parent: 82 - type: Transform -- uid: 3558 - type: Grille - components: - - pos: 39.5,-20.5 - parent: 82 - type: Transform -- uid: 3559 - type: Grille - components: - - pos: 46.5,-20.5 - parent: 82 - type: Transform -- uid: 3560 - type: Grille - components: - - pos: 36.5,-20.5 - parent: 82 - type: Transform -- uid: 3561 - type: OreProcessor - components: - - pos: 43.5,31.5 - parent: 82 - type: Transform -- uid: 3562 - type: ReinforcedWindow - components: - - pos: 36.5,-20.5 - parent: 82 - type: Transform -- uid: 3563 - type: ReinforcedWindow - components: - - pos: 37.5,-20.5 - parent: 82 - type: Transform -- uid: 3564 - type: ReinforcedWindow - components: - - pos: 39.5,-20.5 - parent: 82 - type: Transform -- uid: 3565 - type: ReinforcedWindow - components: - - pos: 40.5,-20.5 - parent: 82 - type: Transform -- uid: 3566 - type: ReinforcedWindow - components: - - pos: 42.5,-20.5 - parent: 82 - type: Transform -- uid: 3567 - type: ReinforcedWindow - components: - - pos: 43.5,-20.5 - parent: 82 - type: Transform -- uid: 3568 - type: ReinforcedWindow - components: - - pos: 45.5,-20.5 - parent: 82 - type: Transform -- uid: 3569 - type: ReinforcedWindow - components: - - pos: 46.5,-20.5 - parent: 82 - type: Transform -- uid: 3570 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-14.5 - parent: 82 - type: Transform -- uid: 3571 - type: WeaponCapacitorRecharger - components: - - pos: 42.5,-14.5 - parent: 82 - type: Transform -- uid: 3572 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-15.5 - parent: 82 - type: Transform -- uid: 3573 - type: WallReinforced - components: - - pos: 38.5,-20.5 - parent: 82 - type: Transform -- uid: 3574 - type: WallReinforced - components: - - pos: 38.5,-19.5 - parent: 82 - type: Transform -- uid: 3575 - type: WallReinforced - components: - - pos: 38.5,-18.5 - parent: 82 - type: Transform -- uid: 3576 - type: WallReinforced - components: - - pos: 38.5,-17.5 - parent: 82 - type: Transform -- uid: 3577 - type: WallReinforced - components: - - pos: 41.5,-20.5 - parent: 82 - type: Transform -- uid: 3578 - type: WallReinforced - components: - - pos: 41.5,-19.5 - parent: 82 - type: Transform -- uid: 3579 - type: WallReinforced - components: - - pos: 41.5,-18.5 - parent: 82 - type: Transform -- uid: 3580 - type: WallReinforced - components: - - pos: 41.5,-17.5 - parent: 82 - type: Transform -- uid: 3581 - type: WallReinforced - components: - - pos: 44.5,-20.5 - parent: 82 - type: Transform -- uid: 3582 - type: WallReinforced - components: - - pos: 44.5,-19.5 - parent: 82 - type: Transform -- uid: 3583 - type: WallReinforced - components: - - pos: 44.5,-18.5 - parent: 82 - type: Transform -- uid: 3584 - type: WallReinforced - components: - - pos: 44.5,-17.5 - parent: 82 - type: Transform -- uid: 3585 - type: WallReinforced - components: - - pos: 47.5,-20.5 - parent: 82 - type: Transform -- uid: 3586 - type: WallReinforced - components: - - pos: 47.5,-19.5 - parent: 82 - type: Transform -- uid: 3587 - type: WallReinforced - components: - - pos: 47.5,-18.5 - parent: 82 - type: Transform -- uid: 3588 - type: WallReinforced - components: - - pos: 47.5,-17.5 - parent: 82 - type: Transform -- uid: 3589 - type: AirlockMaintLocked - components: - - pos: -17.5,-23.5 - parent: 82 - type: Transform -- uid: 3590 - type: Paper - components: - - pos: 37.520905,18.369751 - parent: 82 - type: Transform -- uid: 3591 - type: FirelockGlass - components: - - pos: -36.5,-25.5 - parent: 82 - type: Transform -- uid: 3592 - type: FirelockGlass - components: - - pos: -32.5,-29.5 - parent: 82 - type: Transform -- uid: 3593 - type: Grille - components: - - pos: 36.5,-17.5 - parent: 82 - type: Transform -- uid: 3594 - type: Grille - components: - - pos: 39.5,-17.5 - parent: 82 - type: Transform -- uid: 3595 - type: Grille - components: - - pos: 42.5,-17.5 - parent: 82 - type: Transform -- uid: 3596 - type: Grille - components: - - pos: 45.5,-17.5 - parent: 82 - type: Transform -- uid: 3597 - type: FirelockGlass - components: - - pos: -31.5,-29.5 - parent: 82 - type: Transform -- uid: 3598 - type: ReinforcedWindow - components: - - pos: 36.5,-17.5 - parent: 82 - type: Transform -- uid: 3599 - type: ReinforcedWindow - components: - - pos: 39.5,-17.5 - parent: 82 - type: Transform -- uid: 3600 - type: ReinforcedWindow - components: - - pos: 42.5,-17.5 - parent: 82 - type: Transform -- uid: 3601 - type: ReinforcedWindow - components: - - pos: 45.5,-17.5 - parent: 82 - type: Transform -- uid: 3602 - type: FirelockGlass - components: - - pos: -28.5,-25.5 - parent: 82 - type: Transform -- uid: 3603 - type: Table - components: - - pos: 38.5,-13.5 - parent: 82 - type: Transform -- uid: 3604 - type: Table - components: - - pos: 38.5,-14.5 - parent: 82 - type: Transform -- uid: 3605 - type: Table - components: - - pos: 39.5,-14.5 - parent: 82 - type: Transform -- uid: 3606 - type: Table - components: - - pos: 40.5,-14.5 - parent: 82 - type: Transform -- uid: 3607 - type: FirelockEdge - components: - - pos: -40.5,-28.5 - parent: 82 - type: Transform -- uid: 3608 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-26.5 - parent: 82 - type: Transform -- uid: 3609 - type: WallSolid - components: - - pos: -47.5,-21.5 - parent: 82 - type: Transform -- uid: 3610 - type: WallReinforced - components: - - pos: 51.5,53.5 - parent: 82 - type: Transform -- uid: 3611 - type: Poweredlight - components: - - pos: 7.5,-20.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3612 - type: WallReinforced - components: - - pos: 52.5,52.5 - parent: 82 - type: Transform -- uid: 3613 - type: WallReinforced - components: - - pos: 52.5,51.5 - parent: 82 - type: Transform -- uid: 3614 - type: WallReinforced - components: - - pos: 50.5,-13.5 - parent: 82 - type: Transform -- uid: 3615 - type: WallReinforced - components: - - pos: 50.5,-10.5 - parent: 82 - type: Transform -- uid: 3616 - type: WallReinforced - components: - - pos: 49.5,-10.5 - parent: 82 - type: Transform -- uid: 3617 - type: WallReinforced - components: - - pos: 48.5,-10.5 - parent: 82 - type: Transform -- uid: 3618 - type: WallReinforced - components: - - pos: 47.5,-10.5 - parent: 82 - type: Transform -- uid: 3619 - type: WallReinforced - components: - - pos: 47.5,-9.5 - parent: 82 - type: Transform -- uid: 3620 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 49.5,-8.5 - parent: 82 - type: Transform -- uid: 3621 - type: WallReinforced - components: - - pos: 51.5,-10.5 - parent: 82 - type: Transform -- uid: 3622 - type: WallReinforced - components: - - pos: 52.5,-10.5 - parent: 82 - type: Transform -- uid: 3623 - type: WallReinforced - components: - - pos: 53.5,-10.5 - parent: 82 - type: Transform -- uid: 3624 - type: WallReinforced - components: - - pos: 53.5,-9.5 - parent: 82 - type: Transform -- uid: 3625 - type: WallReinforced - components: - - pos: 57.5,-6.5 - parent: 82 - type: Transform -- uid: 3626 - type: WallReinforced - components: - - pos: 53.5,-7.5 - parent: 82 - type: Transform -- uid: 3627 - type: WallReinforced - components: - - pos: 53.5,-6.5 - parent: 82 - type: Transform -- uid: 3628 - type: WallReinforced - components: - - pos: 52.5,-6.5 - parent: 82 - type: Transform -- uid: 3629 - type: WallReinforced - components: - - pos: 51.5,-6.5 - parent: 82 - type: Transform -- uid: 3630 - type: WallReinforced - components: - - pos: 50.5,-6.5 - parent: 82 - type: Transform -- uid: 3631 - type: WallReinforced - components: - - pos: 49.5,-6.5 - parent: 82 - type: Transform -- uid: 3632 - type: WallReinforced - components: - - pos: 48.5,-6.5 - parent: 82 - type: Transform -- uid: 3633 - type: WallReinforced - components: - - pos: 47.5,-6.5 - parent: 82 - type: Transform -- uid: 3634 - type: WallReinforced - components: - - pos: 47.5,-7.5 - parent: 82 - type: Transform -- uid: 3635 - type: WindowTintedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-7.5 - parent: 82 - type: Transform -- uid: 3636 - type: WindowTintedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-8.5 - parent: 82 - type: Transform -- uid: 3637 - type: WindowTintedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-9.5 - parent: 82 - type: Transform -- uid: 3638 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 44.5,-2.5 - parent: 82 - type: Transform -- uid: 3639 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 46.5,-2.5 - parent: 82 - type: Transform -- uid: 3640 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-7.5 - parent: 82 - type: Transform -- uid: 3641 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-8.5 - parent: 82 - type: Transform -- uid: 3642 - type: ChairOfficeDark - components: - - pos: 49.5,-7.5 - parent: 82 - type: Transform -- uid: 3643 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 49.5,-9.5 - parent: 82 - type: Transform -- uid: 3644 - type: LampGold - components: - - rot: 1.5707963267948966 rad - pos: 49.39902,-8.044899 - parent: 82 - type: Transform -- uid: 3645 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-3.5 - parent: 82 - type: Transform -- uid: 3646 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-3.5 - parent: 82 - type: Transform -- uid: 3647 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-3.5 - parent: 82 - type: Transform -- uid: 3648 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-2.5 - parent: 82 - type: Transform -- uid: 3649 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-1.5 - parent: 82 - type: Transform -- uid: 3650 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-0.5 - parent: 82 - type: Transform -- uid: 3651 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 57.5,0.5 - parent: 82 - type: Transform -- uid: 3652 - type: VendingMachineSec - components: - - flags: SessionSpecific - type: MetaData - - pos: 55.5,0.5 - parent: 82 - type: Transform -- uid: 3653 - type: VendingMachineSecDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 56.5,0.5 - parent: 82 - type: Transform -- uid: 3654 - type: WallReinforced - components: - - pos: 57.5,-3.5 - parent: 82 - type: Transform -- uid: 3655 - type: Table - components: - - pos: 56.5,-2.5 - parent: 82 - type: Transform -- uid: 3656 - type: Table - components: - - pos: 55.5,-2.5 - parent: 82 - type: Transform -- uid: 3657 - type: Grille - components: - - pos: 58.5,-6.5 - parent: 82 - type: Transform -- uid: 3658 - type: LockerEvidence - components: - - pos: 38.5,-16.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3659 - type: LockerEvidence - components: - - pos: 41.5,-16.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3660 - type: LockerEvidence - components: - - pos: 44.5,-16.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3661 - type: WallReinforced - components: - - pos: 22.5,79.5 - parent: 82 - type: Transform -- uid: 3662 - type: ReinforcedWindow - components: - - pos: 49.5,-3.5 - parent: 82 - type: Transform -- uid: 3663 - type: ReinforcedWindow - components: - - pos: 51.5,-3.5 - parent: 82 - type: Transform -- uid: 3664 - type: ReinforcedWindow - components: - - pos: 52.5,-3.5 - parent: 82 - type: Transform -- uid: 3665 - type: ReinforcedWindow - components: - - pos: 54.5,-3.5 - parent: 82 - type: Transform -- uid: 3666 - type: ReinforcedWindow - components: - - pos: 55.5,-3.5 - parent: 82 - type: Transform -- uid: 3667 - type: ReinforcedWindow - components: - - pos: 56.5,-3.5 - parent: 82 - type: Transform -- uid: 3668 - type: ReinforcedWindow - components: - - pos: 57.5,-2.5 - parent: 82 - type: Transform -- uid: 3669 - type: ReinforcedWindow - components: - - pos: 57.5,-1.5 - parent: 82 - type: Transform -- uid: 3670 - type: ReinforcedWindow - components: - - pos: 57.5,-0.5 - parent: 82 - type: Transform -- uid: 3671 - type: ReinforcedWindow - components: - - pos: 57.5,0.5 - parent: 82 - type: Transform -- uid: 3672 - type: WallReinforced - components: - - pos: 57.5,-12.5 - parent: 82 - type: Transform -- uid: 3673 - type: Grille - components: - - pos: 57.5,-7.5 - parent: 82 - type: Transform -- uid: 3674 - type: Grille - components: - - pos: 57.5,-8.5 - parent: 82 - type: Transform -- uid: 3675 - type: Grille - components: - - pos: 59.5,-6.5 - parent: 82 - type: Transform -- uid: 3676 - type: Grille - components: - - pos: 57.5,-11.5 - parent: 82 - type: Transform -- uid: 3677 - type: Grille - components: - - pos: 57.5,-10.5 - parent: 82 - type: Transform -- uid: 3678 - type: Grille - components: - - pos: 60.5,-6.5 - parent: 82 - type: Transform -- uid: 3679 - type: Grille - components: - - pos: 61.5,-6.5 - parent: 82 - type: Transform -- uid: 3680 - type: Grille - components: - - pos: 62.5,-6.5 - parent: 82 - type: Transform -- uid: 3681 - type: WallReinforced - components: - - pos: 63.5,-6.5 - parent: 82 - type: Transform -- uid: 3682 - type: WallReinforced - components: - - pos: 63.5,-12.5 - parent: 82 - type: Transform -- uid: 3683 - type: CrateEngineeringSolar - components: - - pos: 46.50347,63.5036 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3684 - type: CableHV - components: - - pos: 15.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3685 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-13.5 - parent: 82 - type: Transform -- uid: 3686 - type: Grille - components: - - pos: 61.5,-12.5 - parent: 82 - type: Transform -- uid: 3687 - type: Grille - components: - - pos: 62.5,-12.5 - parent: 82 - type: Transform -- uid: 3688 - type: Grille - components: - - pos: 63.5,-11.5 - parent: 82 - type: Transform -- uid: 3689 - type: Grille - components: - - pos: 63.5,-10.5 - parent: 82 - type: Transform -- uid: 3690 - type: Grille - components: - - pos: 63.5,-9.5 - parent: 82 - type: Transform -- uid: 3691 - type: Grille - components: - - pos: 63.5,-8.5 - parent: 82 - type: Transform -- uid: 3692 - type: Grille - components: - - pos: 63.5,-7.5 - parent: 82 - type: Transform -- uid: 3693 - type: ReinforcedWindow - components: - - pos: 58.5,-6.5 - parent: 82 - type: Transform -- uid: 3694 - type: FirelockGlass - components: - - pos: -29.5,31.5 - parent: 82 - type: Transform -- uid: 3695 - type: ReinforcedWindow - components: - - pos: 60.5,-6.5 - parent: 82 - type: Transform -- uid: 3696 - type: ReinforcedWindow - components: - - pos: 61.5,-6.5 - parent: 82 - type: Transform -- uid: 3697 - type: ReinforcedWindow - components: - - pos: 62.5,-6.5 - parent: 82 - type: Transform -- uid: 3698 - type: ReinforcedWindow - components: - - pos: 63.5,-7.5 - parent: 82 - type: Transform -- uid: 3699 - type: ReinforcedWindow - components: - - pos: 63.5,-8.5 - parent: 82 - type: Transform -- uid: 3700 - type: ReinforcedWindow - components: - - pos: 63.5,-9.5 - parent: 82 - type: Transform -- uid: 3701 - type: ReinforcedWindow - components: - - pos: 63.5,-10.5 - parent: 82 - type: Transform -- uid: 3702 - type: ReinforcedWindow - components: - - pos: 63.5,-11.5 - parent: 82 - type: Transform -- uid: 3703 - type: ReinforcedWindow - components: - - pos: 62.5,-12.5 - parent: 82 - type: Transform -- uid: 3704 - type: ReinforcedWindow - components: - - pos: 61.5,-12.5 - parent: 82 - type: Transform -- uid: 3705 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-14.5 - parent: 82 - type: Transform -- uid: 3706 - type: CarpetBlack - components: - - pos: -13.5,9.5 - parent: 82 - type: Transform -- uid: 3707 - type: Morgue - components: - - rot: 3.141592653589793 rad - pos: -13.5,7.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3708 - type: ReinforcedWindow - components: - - pos: 57.5,-11.5 - parent: 82 - type: Transform -- uid: 3709 - type: ReinforcedWindow - components: - - pos: 57.5,-10.5 - parent: 82 - type: Transform -- uid: 3710 - type: ReinforcedWindow - components: - - pos: 57.5,-8.5 - parent: 82 - type: Transform -- uid: 3711 - type: ReinforcedWindow - components: - - pos: 57.5,-7.5 - parent: 82 - type: Transform -- uid: 3712 - type: LockerHeadOfSecurityFilled - components: - - pos: 62.5,-7.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3713 - type: WallReinforced - components: - - pos: 63.5,-5.5 - parent: 82 - type: Transform -- uid: 3714 - type: WallReinforced - components: - - pos: 63.5,-4.5 - parent: 82 - type: Transform -- uid: 3715 - type: WallReinforced - components: - - pos: 63.5,-3.5 - parent: 82 - type: Transform -- uid: 3716 - type: WallReinforced - components: - - pos: 63.5,-2.5 - parent: 82 - type: Transform -- uid: 3717 - type: Grille - components: - - pos: 63.5,-0.5 - parent: 82 - type: Transform -- uid: 3718 - type: Grille - components: - - pos: 63.5,-1.5 - parent: 82 - type: Transform -- uid: 3719 - type: WallReinforced - components: - - pos: 63.5,0.5 - parent: 82 - type: Transform -- uid: 3720 - type: WallReinforced - components: - - pos: 63.5,1.5 - parent: 82 - type: Transform -- uid: 3721 - type: Grille - components: - - pos: 59.5,1.5 - parent: 82 - type: Transform -- uid: 3722 - type: Grille - components: - - pos: 60.5,1.5 - parent: 82 - type: Transform -- uid: 3723 - type: WallReinforced - components: - - pos: 62.5,1.5 - parent: 82 - type: Transform -- uid: 3724 - type: Grille - components: - - pos: 58.5,-3.5 - parent: 82 - type: Transform -- uid: 3725 - type: Grille - components: - - pos: 62.5,-3.5 - parent: 82 - type: Transform -- uid: 3726 - type: Grille - components: - - pos: 60.5,-3.5 - parent: 82 - type: Transform -- uid: 3727 - type: ReinforcedWindow - components: - - pos: 58.5,-3.5 - parent: 82 - type: Transform -- uid: 3728 - type: ReinforcedWindow - components: - - pos: 60.5,-3.5 - parent: 82 - type: Transform -- uid: 3729 - type: ReinforcedWindow - components: - - pos: 62.5,-3.5 - parent: 82 - type: Transform -- uid: 3730 - type: ReinforcedWindow - components: - - pos: 63.5,-0.5 - parent: 82 - type: Transform -- uid: 3731 - type: ReinforcedWindow - components: - - pos: 63.5,-1.5 - parent: 82 - type: Transform -- uid: 3732 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-11.5 - parent: 82 - type: Transform -- uid: 3733 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-12.5 - parent: 82 - type: Transform -- uid: 3734 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 53.5,-11.5 - parent: 82 - type: Transform -- uid: 3735 - type: WallReinforced - components: - - pos: 22.5,78.5 - parent: 82 - type: Transform -- uid: 3736 - type: WallReinforced - components: - - pos: 22.5,80.5 - parent: 82 - type: Transform -- uid: 3737 - type: Grille - components: - - pos: 8.5,73.5 - parent: 82 - type: Transform -- uid: 3738 - type: WallReinforced - components: - - pos: 8.5,70.5 - parent: 82 - type: Transform -- uid: 3739 - type: Table - components: - - pos: 52.5,-11.5 - parent: 82 - type: Transform -- uid: 3740 - type: Table - components: - - pos: 51.5,-11.5 - parent: 82 - type: Transform -- uid: 3741 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-15.5 - parent: 82 - type: Transform -- uid: 3742 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-13.5 - parent: 82 - type: Transform -- uid: 3743 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-17.5 - parent: 82 - type: Transform -- uid: 3744 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-17.5 - parent: 82 - type: Transform -- uid: 3745 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-16.5 - parent: 82 - type: Transform -- uid: 3746 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-17.5 - parent: 82 - type: Transform -- uid: 3747 - type: AirlockHeadOfSecurityLocked - components: - - pos: 60.5,-12.5 - parent: 82 - type: Transform -- uid: 3748 - type: AirlockHeadOfSecurityGlassLocked - components: - - pos: 57.5,-9.5 - parent: 82 - type: Transform -- uid: 3749 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-20.5 - parent: 82 - type: Transform -- uid: 3750 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-20.5 - parent: 82 - type: Transform -- uid: 3751 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-20.5 - parent: 82 - type: Transform -- uid: 3752 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-15.5 - parent: 82 - type: Transform -- uid: 3753 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-16.5 - parent: 82 - type: Transform -- uid: 3754 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-13.5 - parent: 82 - type: Transform -- uid: 3755 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-14.5 - parent: 82 - type: Transform -- uid: 3756 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-15.5 - parent: 82 - type: Transform -- uid: 3757 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-16.5 - parent: 82 - type: Transform -- uid: 3758 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-17.5 - parent: 82 - type: Transform -- uid: 3759 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-17.5 - parent: 82 - type: Transform -- uid: 3760 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-14.5 - parent: 82 - type: Transform -- uid: 3761 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-15.5 - parent: 82 - type: Transform -- uid: 3762 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-14.5 - parent: 82 - type: Transform -- uid: 3763 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-15.5 - parent: 82 - type: Transform -- uid: 3764 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 0.5,-17.5 - parent: 82 - type: Transform -- uid: 3765 - type: CableApcExtension - components: - - pos: 31.5,71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3766 - type: Wrench - components: - - pos: 18.05567,74.54088 - parent: 82 - type: Transform -- uid: 3767 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,65.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3768 - type: WallReinforced - components: - - pos: -26.5,15.5 - parent: 82 - type: Transform -- uid: 3769 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-20.5 - parent: 82 - type: Transform -- uid: 3770 - type: DogBed - components: - - pos: 12.5,-18.5 - parent: 82 - type: Transform -- uid: 3771 - type: AtmosDeviceFanTiny - components: - - pos: -34.5,-14.5 - parent: 82 - type: Transform -- uid: 3772 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,26.5 - parent: 82 - type: Transform -- uid: 3773 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,27.5 - parent: 82 - type: Transform -- uid: 3774 - type: SignLibrary - components: - - pos: 30.5,28.5 - parent: 82 - type: Transform -- uid: 3775 - type: CableApcExtension - components: - - pos: 16.5,17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3776 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-20.5 - parent: 82 - type: Transform -- uid: 3777 - type: CableHV - components: - - pos: 15.5,-13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3778 - type: CableHV - components: - - pos: 16.5,-14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3779 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-21.5 - parent: 82 - type: Transform -- uid: 3780 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-22.5 - parent: 82 - type: Transform -- uid: 3781 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-23.5 - parent: 82 - type: Transform -- uid: 3782 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-24.5 - parent: 82 - type: Transform -- uid: 3783 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-23.5 - parent: 82 - type: Transform -- uid: 3784 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-24.5 - parent: 82 - type: Transform -- uid: 3785 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 17.5,-13.5 - parent: 82 - type: Transform -- uid: 3786 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 17.5,-17.5 - parent: 82 - type: Transform -- uid: 3787 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-21.5 - parent: 82 - type: Transform -- uid: 3788 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-22.5 - parent: 82 - type: Transform -- uid: 3789 - type: BlastDoor - components: - - pos: 53.5,-25.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -467308.78 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver -- uid: 3790 - type: BlastDoor - components: - - pos: 53.5,-26.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -467308.78 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver -- uid: 3791 - type: BlastDoor - components: - - pos: 53.5,-27.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -467308.78 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver -- uid: 3792 - type: BlastDoor - components: - - pos: 53.5,-28.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -467308.78 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver -- uid: 3793 - type: BlastDoor - components: - - pos: 53.5,-29.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -467308.78 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver -- uid: 3794 - type: BlastDoor - components: - - pos: 53.5,-30.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -467308.78 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver -- uid: 3795 - type: BlastDoor - components: - - pos: 56.5,-25.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -467308.78 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver -- uid: 3796 - type: BlastDoor - components: - - pos: 56.5,-26.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -467308.78 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver -- uid: 3797 - type: BlastDoor - components: - - pos: 56.5,-27.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -467308.78 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver -- uid: 3798 - type: BlastDoor - components: - - pos: 56.5,-28.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -467308.78 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver -- uid: 3799 - type: BlastDoor - components: - - pos: 56.5,-29.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -467308.78 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver -- uid: 3800 - type: BlastDoor - components: - - pos: 56.5,-30.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -467308.78 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8852 - type: SignalReceiver -- uid: 3801 - type: WallReinforced - components: - - pos: 56.5,-31.5 - parent: 82 - type: Transform -- uid: 3802 - type: WallReinforced - components: - - pos: 56.5,-32.5 - parent: 82 - type: Transform -- uid: 3803 - type: WallReinforced - components: - - pos: 53.5,-31.5 - parent: 82 - type: Transform -- uid: 3804 - type: WallReinforced - components: - - pos: 53.5,-32.5 - parent: 82 - type: Transform -- uid: 3805 - type: Grille - components: - - pos: 53.5,-33.5 - parent: 82 - type: Transform -- uid: 3806 - type: Grille - components: - - pos: 53.5,-34.5 - parent: 82 - type: Transform -- uid: 3807 - type: Grille - components: - - pos: 56.5,-33.5 - parent: 82 - type: Transform -- uid: 3808 - type: Grille - components: - - pos: 56.5,-34.5 - parent: 82 - type: Transform -- uid: 3809 - type: WallReinforced - components: - - pos: 53.5,-35.5 - parent: 82 - type: Transform -- uid: 3810 - type: WallReinforced - components: - - pos: 56.5,-35.5 - parent: 82 - type: Transform -- uid: 3811 - type: WallReinforced - components: - - pos: 52.5,-35.5 - parent: 82 - type: Transform -- uid: 3812 - type: WallReinforced - components: - - pos: 51.5,-35.5 - parent: 82 - type: Transform -- uid: 3813 - type: WallReinforced - components: - - pos: 50.5,-35.5 - parent: 82 - type: Transform -- uid: 3814 - type: WallReinforced - components: - - pos: 49.5,-35.5 - parent: 82 - type: Transform -- uid: 3815 - type: WallReinforced - components: - - pos: 57.5,-35.5 - parent: 82 - type: Transform -- uid: 3816 - type: WallReinforced - components: - - pos: 58.5,-35.5 - parent: 82 - type: Transform -- uid: 3817 - type: WallReinforced - components: - - pos: 59.5,-35.5 - parent: 82 - type: Transform -- uid: 3818 - type: WallReinforced - components: - - pos: 60.5,-35.5 - parent: 82 - type: Transform -- uid: 3819 - type: ReinforcedWindow - components: - - pos: 53.5,-33.5 - parent: 82 - type: Transform -- uid: 3820 - type: ReinforcedWindow - components: - - pos: 53.5,-34.5 - parent: 82 - type: Transform -- uid: 3821 - type: ReinforcedWindow - components: - - pos: 56.5,-33.5 - parent: 82 - type: Transform -- uid: 3822 - type: ReinforcedWindow - components: - - pos: 56.5,-34.5 - parent: 82 - type: Transform -- uid: 3823 - type: CableApcExtension - components: - - pos: 16.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3824 - type: CableApcExtension - components: - - pos: 16.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3825 - type: CableApcExtension - components: - - pos: 16.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3826 - type: CableApcExtension - components: - - pos: 16.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3827 - type: CableApcExtension - components: - - pos: 16.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3828 - type: CableApcExtension - components: - - pos: 16.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3829 - type: CableApcExtension - components: - - pos: 16.5,24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3830 - type: CableApcExtension - components: - - pos: 16.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3831 - type: WallReinforced - components: - - pos: 68.5,-17.5 - parent: 82 - type: Transform -- uid: 3832 - type: CableApcExtension - components: - - pos: 8.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3833 - type: CableApcExtension - components: - - pos: 9.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3834 - type: CableApcExtension - components: - - pos: 10.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3835 - type: CableApcExtension - components: - - pos: 11.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3836 - type: CableApcExtension - components: - - pos: 12.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3837 - type: WallReinforced - components: - - pos: 68.5,-23.5 - parent: 82 - type: Transform -- uid: 3838 - type: CableApcExtension - components: - - pos: 13.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3839 - type: CableApcExtension - components: - - pos: 14.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3840 - type: CableApcExtension - components: - - pos: 15.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3841 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 33.5,68.5 - parent: 82 - type: Transform -- uid: 3842 - type: WallReinforced - components: - - pos: 23.5,80.5 - parent: 82 - type: Transform -- uid: 3843 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -22.5,-37.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Checkpoint: Medbay' - type: SurveillanceCamera -- uid: 3844 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -63.5,51.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Checkpoint: Evac' - type: SurveillanceCamera -- uid: 3845 - type: SurveillanceCameraEngineering - components: - - pos: -22.5,41.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES - type: SurveillanceCamera -- uid: 3846 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -27.5,57.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: PA - type: SurveillanceCamera -- uid: 3847 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -16.5,49.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME - type: SurveillanceCamera -- uid: 3848 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: -12.5,37.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - type: SurveillanceCamera -- uid: 3849 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 6.5,20.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos 1 - type: SurveillanceCamera -- uid: 3850 - type: SurveillanceCameraEngineering - components: - - pos: 9.5,7.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos 2 - type: SurveillanceCamera -- uid: 3851 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 25.5,6.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Lobby - type: SurveillanceCamera -- uid: 3852 - type: AirSensor - components: - - pos: -29.5,-3.5 - parent: 82 - type: Transform -- uid: 3853 - type: SurveillanceCameraSupply - components: - - pos: 40.5,26.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Lobby - type: SurveillanceCamera -- uid: 3854 - type: SurveillanceCameraSupply - components: - - rot: -1.5707963267948966 rad - pos: 41.5,22.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Loading Bay - type: SurveillanceCamera -- uid: 3855 - type: SurveillanceCameraSupply - components: - - rot: 3.141592653589793 rad - pos: 38.5,16.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Warehouse - type: SurveillanceCamera -- uid: 3856 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -45.5,-15.5 - parent: 82 - type: Transform -- uid: 3857 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: -12.5,16.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Church - type: SurveillanceCamera -- uid: 3858 - type: WallSolid - components: - - pos: -32.5,-9.5 - parent: 82 - type: Transform -- uid: 3859 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -45.5,-13.5 - parent: 82 - type: Transform -- uid: 3860 - type: SurveillanceCameraService - components: - - pos: -31.5,-22.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany - type: SurveillanceCamera -- uid: 3861 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-11.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Cafeteria - type: SurveillanceCamera -- uid: 3862 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: 0.5,36.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitors Closet - type: SurveillanceCamera -- uid: 3863 - type: SurveillanceCameraService - components: - - rot: -1.5707963267948966 rad - pos: 25.5,25.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Library - type: SurveillanceCamera -- uid: 3864 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: 29.5,-25.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Lawyer's Office - type: SurveillanceCamera -- uid: 3865 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 12.5,37.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Tech Vault - type: SurveillanceCamera -- uid: 3866 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 8.5,36.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Tech Storage - type: SurveillanceCamera -- uid: 3867 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -5.5,2.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP Office - type: SurveillanceCamera -- uid: 3868 - type: SurveillanceCameraCommand - components: - - pos: -10.5,-8.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - type: SurveillanceCamera -- uid: 3869 - type: CableMV - components: - - pos: -11.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3870 - type: CableMV - components: - - pos: -12.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3871 - type: CableMV - components: - - pos: -13.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3872 - type: CableMV - components: - - pos: -14.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3873 - type: CableMV - components: - - pos: -15.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3874 - type: CableMV - components: - - pos: -16.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3875 - type: CableMV - components: - - pos: -16.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3876 - type: CableMV - components: - - pos: -16.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3877 - type: CableMV - components: - - pos: -16.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3878 - type: CableMV - components: - - pos: -16.5,0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3879 - type: CableMV - components: - - pos: -16.5,-0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3880 - type: CableMV - components: - - pos: -15.5,-0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3881 - type: CableMV - components: - - pos: -14.5,-0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3882 - type: CableMV - components: - - pos: -14.5,-1.5 - parent: 82 - type: Transform -- uid: 3883 - type: CableMV - components: - - pos: -14.5,-2.5 - parent: 82 - type: Transform -- uid: 3884 - type: CableMV - components: - - pos: -13.5,-2.5 - parent: 82 - type: Transform -- uid: 3885 - type: CableMV - components: - - pos: -12.5,-2.5 - parent: 82 - type: Transform -- uid: 3886 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-23.5 - parent: 82 - type: Transform -- uid: 3887 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-21.5 - parent: 82 - type: Transform -- uid: 3888 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-22.5 - parent: 82 - type: Transform -- uid: 3889 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-23.5 - parent: 82 - type: Transform -- uid: 3890 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-23.5 - parent: 82 - type: Transform -- uid: 3891 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-23.5 - parent: 82 - type: Transform -- uid: 3892 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-23.5 - parent: 82 - type: Transform -- uid: 3893 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-21.5 - parent: 82 - type: Transform -- uid: 3894 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-22.5 - parent: 82 - type: Transform -- uid: 3895 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-23.5 - parent: 82 - type: Transform -- uid: 3896 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-23.5 - parent: 82 - type: Transform -- uid: 3897 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-23.5 - parent: 82 - type: Transform -- uid: 3898 - type: AirlockSecurityGlassLocked - components: - - pos: 48.5,-4.5 - parent: 82 - type: Transform -- uid: 3899 - type: AirlockSecurityGlassLocked - components: - - pos: 48.5,-5.5 - parent: 82 - type: Transform -- uid: 3900 - type: AirlockSecurityGlassLocked - components: - - pos: 34.5,-14.5 - parent: 82 - type: Transform -- uid: 3901 - type: AirlockSecurityGlassLocked - components: - - pos: 37.5,-17.5 - parent: 82 - type: Transform -- uid: 3902 - type: AirlockSecurityGlassLocked - components: - - pos: 40.5,-17.5 - parent: 82 - type: Transform -- uid: 3903 - type: AirlockSecurityGlassLocked - components: - - pos: 43.5,-17.5 - parent: 82 - type: Transform -- uid: 3904 - type: AirlockSecurityGlassLocked - components: - - pos: 46.5,-17.5 - parent: 82 - type: Transform -- uid: 3905 - type: CableMV - components: - - pos: -12.5,-3.5 - parent: 82 - type: Transform -- uid: 3906 - type: CableMV - components: - - pos: -12.5,-4.5 - parent: 82 - type: Transform -- uid: 3907 - type: AirlockSecurityGlassLocked - components: - - pos: 59.5,-18.5 - parent: 82 - type: Transform -- uid: 3908 - type: AirlockSecurityGlassLocked - components: - - pos: 59.5,-19.5 - parent: 82 - type: Transform -- uid: 3909 - type: AirlockSecurityGlassLocked - components: - - pos: 54.5,-35.5 - parent: 82 - type: Transform -- uid: 3910 - type: AirlockSecurityGlassLocked - components: - - pos: 55.5,-35.5 - parent: 82 - type: Transform -- uid: 3911 - type: AirlockSecurityGlassLocked - components: - - pos: 54.5,-20.5 - parent: 82 - type: Transform -- uid: 3912 - type: AirlockSecurityGlassLocked - components: - - pos: 55.5,-20.5 - parent: 82 - type: Transform -- uid: 3913 - type: LockerSecurityFilled - components: - - pos: 49.5,-0.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3914 - type: LockerSecurityFilled - components: - - pos: 50.5,-0.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3915 - type: LockerSecurityFilled - components: - - pos: 51.5,-0.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3916 - type: LockerSecurityFilled - components: - - pos: 52.5,-0.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3917 - type: SpawnPointAssistant - components: - - pos: 12.5,-38.5 - parent: 82 - type: Transform -- uid: 3918 - type: BookRandom - components: - - pos: -27.21846,0.47276735 - parent: 82 - type: Transform -- uid: 3919 - type: AirlockSecurityGlassLocked - components: - - pos: 50.5,-3.5 - parent: 82 - type: Transform -- uid: 3920 - type: AirlockSecurityGlassLocked - components: - - pos: 53.5,-3.5 - parent: 82 - type: Transform -- uid: 3921 - type: AirlockSecurityGlassLocked - components: - - pos: 59.5,-3.5 - parent: 82 - type: Transform -- uid: 3922 - type: AirlockSecurityGlassLocked - components: - - pos: 61.5,-3.5 - parent: 82 - type: Transform -- uid: 3923 - type: Table - components: - - pos: 58.5,0.5 - parent: 82 - type: Transform -- uid: 3924 - type: Table - components: - - pos: 59.5,0.5 - parent: 82 - type: Transform -- uid: 3925 - type: WallReinforced - components: - - pos: 46.5,-48.5 - parent: 82 - type: Transform -- uid: 3926 - type: WallReinforced - components: - - pos: 46.5,-49.5 - parent: 82 - type: Transform -- uid: 3927 - type: WallReinforced - components: - - pos: 46.5,-50.5 - parent: 82 - type: Transform -- uid: 3928 - type: WallReinforced - components: - - pos: 46.5,-47.5 - parent: 82 - type: Transform -- uid: 3929 - type: WallReinforced - components: - - pos: 42.5,-47.5 - parent: 82 - type: Transform -- uid: 3930 - type: Grille - components: - - pos: 52.5,-50.5 - parent: 82 - type: Transform -- uid: 3931 - type: WallReinforced - components: - - pos: 42.5,-49.5 - parent: 82 - type: Transform -- uid: 3932 - type: WallReinforced - components: - - pos: 42.5,-50.5 - parent: 82 - type: Transform -- uid: 3933 - type: WallReinforced - components: - - pos: 43.5,-50.5 - parent: 82 - type: Transform -- uid: 3934 - type: Grille - components: - - pos: 54.5,-48.5 - parent: 82 - type: Transform -- uid: 3935 - type: WallReinforced - components: - - pos: 45.5,-50.5 - parent: 82 - type: Transform -- uid: 3936 - type: WallReinforced - components: - - pos: 50.5,-47.5 - parent: 82 - type: Transform -- uid: 3937 - type: WallReinforced - components: - - pos: 50.5,-48.5 - parent: 82 - type: Transform -- uid: 3938 - type: WallReinforced - components: - - pos: 50.5,-49.5 - parent: 82 - type: Transform -- uid: 3939 - type: WallReinforced - components: - - pos: 50.5,-50.5 - parent: 82 - type: Transform -- uid: 3940 - type: WallReinforced - components: - - pos: 49.5,-50.5 - parent: 82 - type: Transform -- uid: 3941 - type: Grille - components: - - pos: 48.5,-50.5 - parent: 82 - type: Transform -- uid: 3942 - type: WallReinforced - components: - - pos: 47.5,-50.5 - parent: 82 - type: Transform -- uid: 3943 - type: WallReinforced - components: - - pos: 54.5,-47.5 - parent: 82 - type: Transform -- uid: 3944 - type: Grille - components: - - pos: 42.5,-48.5 - parent: 82 - type: Transform -- uid: 3945 - type: WallReinforced - components: - - pos: 54.5,-49.5 - parent: 82 - type: Transform -- uid: 3946 - type: WallReinforced - components: - - pos: 54.5,-50.5 - parent: 82 - type: Transform -- uid: 3947 - type: WallReinforced - components: - - pos: 53.5,-50.5 - parent: 82 - type: Transform -- uid: 3948 - type: Grille - components: - - pos: 44.5,-50.5 - parent: 82 - type: Transform -- uid: 3949 - type: WallReinforced - components: - - pos: 51.5,-50.5 - parent: 82 - type: Transform -- uid: 3950 - type: WallReinforced - components: - - pos: 53.5,-47.5 - parent: 82 - type: Transform -- uid: 3951 - type: WallReinforced - components: - - pos: 49.5,-47.5 - parent: 82 - type: Transform -- uid: 3952 - type: WallReinforced - components: - - pos: 45.5,-47.5 - parent: 82 - type: Transform -- uid: 3953 - type: Grille - components: - - pos: 42.5,-46.5 - parent: 82 - type: Transform -- uid: 3954 - type: Grille - components: - - pos: 42.5,-45.5 - parent: 82 - type: Transform -- uid: 3955 - type: WallReinforced - components: - - pos: 42.5,-44.5 - parent: 82 - type: Transform -- uid: 3956 - type: WallReinforced - components: - - pos: 42.5,-43.5 - parent: 82 - type: Transform -- uid: 3957 - type: Grille - components: - - pos: 44.5,-40.5 - parent: 82 - type: Transform -- uid: 3958 - type: WallReinforced - components: - - pos: 42.5,-41.5 - parent: 82 - type: Transform -- uid: 3959 - type: WallReinforced - components: - - pos: 42.5,-40.5 - parent: 82 - type: Transform -- uid: 3960 - type: WallReinforced - components: - - pos: 43.5,-40.5 - parent: 82 - type: Transform -- uid: 3961 - type: Grille - components: - - pos: 42.5,-42.5 - parent: 82 - type: Transform -- uid: 3962 - type: WallReinforced - components: - - pos: 45.5,-40.5 - parent: 82 - type: Transform -- uid: 3963 - type: ReinforcedWindow - components: - - pos: 44.5,-40.5 - parent: 82 - type: Transform -- uid: 3964 - type: Grille - components: - - pos: 49.5,-38.5 - parent: 82 - type: Transform -- uid: 3965 - type: Grille - components: - - pos: 49.5,-37.5 - parent: 82 - type: Transform -- uid: 3966 - type: WallReinforced - components: - - pos: 49.5,-40.5 - parent: 82 - type: Transform -- uid: 3967 - type: WallReinforced - components: - - pos: 49.5,-39.5 - parent: 82 - type: Transform -- uid: 3968 - type: Grille - components: - - pos: 46.5,-40.5 - parent: 82 - type: Transform -- uid: 3969 - type: Grille - components: - - pos: 47.5,-40.5 - parent: 82 - type: Transform -- uid: 3970 - type: WallReinforced - components: - - pos: 49.5,-36.5 - parent: 82 - type: Transform -- uid: 3971 - type: WallReinforced - components: - - pos: 43.5,-44.5 - parent: 82 - type: Transform -- uid: 3972 - type: WallReinforced - components: - - pos: 44.5,-44.5 - parent: 82 - type: Transform -- uid: 3973 - type: WallReinforced - components: - - pos: 45.5,-44.5 - parent: 82 - type: Transform -- uid: 3974 - type: WallReinforced - components: - - pos: 45.5,-43.5 - parent: 82 - type: Transform -- uid: 3975 - type: WallReinforced - components: - - pos: 57.5,-37.5 - parent: 82 - type: Transform -- uid: 3976 - type: WallReinforced - components: - - pos: 57.5,-38.5 - parent: 82 - type: Transform -- uid: 3977 - type: WallReinforced - components: - - pos: 58.5,-38.5 - parent: 82 - type: Transform -- uid: 3978 - type: WallReinforced - components: - - pos: 59.5,-38.5 - parent: 82 - type: Transform -- uid: 3979 - type: WallReinforced - components: - - pos: 60.5,-38.5 - parent: 82 - type: Transform -- uid: 3980 - type: WallReinforced - components: - - pos: 60.5,-36.5 - parent: 82 - type: Transform -- uid: 3981 - type: WallReinforced - components: - - pos: 60.5,-37.5 - parent: 82 - type: Transform -- uid: 3982 - type: WallReinforced - components: - - pos: 56.5,-38.5 - parent: 82 - type: Transform -- uid: 3983 - type: WallReinforced - components: - - pos: 56.5,-39.5 - parent: 82 - type: Transform -- uid: 3984 - type: WallReinforced - components: - - pos: 54.5,-40.5 - parent: 82 - type: Transform -- uid: 3985 - type: WallReinforced - components: - - pos: 54.5,-39.5 - parent: 82 - type: Transform -- uid: 3986 - type: WallReinforced - components: - - pos: 55.5,-39.5 - parent: 82 - type: Transform -- uid: 3987 - type: Grille - components: - - pos: 60.5,-41.5 - parent: 82 - type: Transform -- uid: 3988 - type: Grille - components: - - pos: 60.5,-40.5 - parent: 82 - type: Transform -- uid: 3989 - type: Grille - components: - - pos: 58.5,-43.5 - parent: 82 - type: Transform -- uid: 3990 - type: WallReinforced - components: - - pos: 59.5,-43.5 - parent: 82 - type: Transform -- uid: 3991 - type: WallReinforced - components: - - pos: 60.5,-43.5 - parent: 82 - type: Transform -- uid: 3992 - type: WallReinforced - components: - - pos: 60.5,-42.5 - parent: 82 - type: Transform -- uid: 3993 - type: Grille - components: - - pos: 57.5,-43.5 - parent: 82 - type: Transform -- uid: 3994 - type: Grille - components: - - pos: 56.5,-43.5 - parent: 82 - type: Transform -- uid: 3995 - type: WallReinforced - components: - - pos: 60.5,-39.5 - parent: 82 - type: Transform -- uid: 3996 - type: hydroponicsTray - components: - - pos: 48.5,-43.5 - parent: 82 - type: Transform -- uid: 3997 - type: hydroponicsTray - components: - - pos: 50.5,-43.5 - parent: 82 - type: Transform -- uid: 3998 - type: Grille - components: - - pos: 48.5,-40.5 - parent: 82 - type: Transform -- uid: 3999 - type: WallReinforced - components: - - pos: 54.5,-42.5 - parent: 82 - type: Transform -- uid: 4000 - type: WallReinforced - components: - - pos: 54.5,-43.5 - parent: 82 - type: Transform -- uid: 4001 - type: WallReinforced - components: - - pos: 54.5,-44.5 - parent: 82 - type: Transform -- uid: 4002 - type: Grille - components: - - pos: 54.5,-45.5 - parent: 82 - type: Transform -- uid: 4003 - type: WallReinforced - components: - - pos: 54.5,-46.5 - parent: 82 - type: Transform -- uid: 4004 - type: WallReinforced - components: - - pos: 55.5,-43.5 - parent: 82 - type: Transform -- uid: 4005 - type: hydroponicsTray - components: - - pos: 48.5,-44.5 - parent: 82 - type: Transform -- uid: 4006 - type: hydroponicsTray - components: - - pos: 50.5,-44.5 - parent: 82 - type: Transform -- uid: 4007 - type: hydroponicsTray - components: - - pos: 48.5,-45.5 - parent: 82 - type: Transform -- uid: 4008 - type: hydroponicsTray - components: - - pos: 50.5,-45.5 - parent: 82 - type: Transform -- uid: 4009 - type: Table - components: - - pos: 47.5,-41.5 - parent: 82 - type: Transform -- uid: 4010 - type: Table - components: - - pos: 48.5,-41.5 - parent: 82 - type: Transform -- uid: 4011 - type: Table - components: - - pos: 49.5,-41.5 - parent: 82 - type: Transform -- uid: 4012 - type: TintedWindow - components: - - pos: 45.5,-41.5 - parent: 82 - type: Transform -- uid: 4013 - type: TintedWindow - components: - - pos: 43.5,-47.5 - parent: 82 - type: Transform -- uid: 4014 - type: TintedWindow - components: - - pos: 47.5,-47.5 - parent: 82 - type: Transform -- uid: 4015 - type: TintedWindow - components: - - pos: 51.5,-47.5 - parent: 82 - type: Transform -- uid: 4016 - type: ReinforcedWindow - components: - - pos: 46.5,-40.5 - parent: 82 - type: Transform -- uid: 4017 - type: ReinforcedWindow - components: - - pos: 47.5,-40.5 - parent: 82 - type: Transform -- uid: 4018 - type: ReinforcedWindow - components: - - pos: 48.5,-40.5 - parent: 82 - type: Transform -- uid: 4019 - type: ReinforcedWindow - components: - - pos: 49.5,-37.5 - parent: 82 - type: Transform -- uid: 4020 - type: ReinforcedWindow - components: - - pos: 49.5,-38.5 - parent: 82 - type: Transform -- uid: 4021 - type: ReinforcedWindow - components: - - pos: 60.5,-40.5 - parent: 82 - type: Transform -- uid: 4022 - type: ReinforcedWindow - components: - - pos: 60.5,-41.5 - parent: 82 - type: Transform -- uid: 4023 - type: ReinforcedWindow - components: - - pos: 58.5,-43.5 - parent: 82 - type: Transform -- uid: 4024 - type: ReinforcedWindow - components: - - pos: 57.5,-43.5 - parent: 82 - type: Transform -- uid: 4025 - type: ReinforcedWindow - components: - - pos: 56.5,-43.5 - parent: 82 - type: Transform -- uid: 4026 - type: ReinforcedWindow - components: - - pos: 54.5,-45.5 - parent: 82 - type: Transform -- uid: 4027 - type: ReinforcedWindow - components: - - pos: 54.5,-48.5 - parent: 82 - type: Transform -- uid: 4028 - type: ReinforcedWindow - components: - - pos: 52.5,-50.5 - parent: 82 - type: Transform -- uid: 4029 - type: ReinforcedWindow - components: - - pos: 48.5,-50.5 - parent: 82 - type: Transform -- uid: 4030 - type: ReinforcedWindow - components: - - pos: 44.5,-50.5 - parent: 82 - type: Transform -- uid: 4031 - type: ReinforcedWindow - components: - - pos: 42.5,-48.5 - parent: 82 - type: Transform -- uid: 4032 - type: ReinforcedWindow - components: - - pos: 42.5,-42.5 - parent: 82 - type: Transform -- uid: 4033 - type: ReinforcedWindow - components: - - pos: 42.5,-45.5 - parent: 82 - type: Transform -- uid: 4034 - type: ReinforcedWindow - components: - - pos: 42.5,-46.5 - parent: 82 - type: Transform -- uid: 4035 - type: WallSolid - components: - - pos: -20.5,7.5 - parent: 82 - type: Transform -- uid: 4036 - type: WallSolid - components: - - pos: -20.5,8.5 - parent: 82 - type: Transform -- uid: 4037 - type: WallSolid - components: - - pos: -20.5,9.5 - parent: 82 - type: Transform -- uid: 4038 - type: WallSolid - components: - - pos: -20.5,10.5 - parent: 82 - type: Transform -- uid: 4039 - type: WallSolid - components: - - pos: -20.5,11.5 - parent: 82 - type: Transform -- uid: 4040 - type: WallSolid - components: - - pos: -24.5,7.5 - parent: 82 - type: Transform -- uid: 4041 - type: WallSolid - components: - - pos: -24.5,8.5 - parent: 82 - type: Transform -- uid: 4042 - type: WallReinforced - components: - - pos: -22.5,-36.5 - parent: 82 - type: Transform -- uid: 4043 - type: WallSolid - components: - - pos: -24.5,10.5 - parent: 82 - type: Transform -- uid: 4044 - type: WindowDirectional - components: - - pos: 80.5,8.5 - parent: 82 - type: Transform -- uid: 4045 - type: WindowDirectional - components: - - pos: 78.5,8.5 - parent: 82 - type: Transform -- uid: 4046 - type: ReinforcedWindow - components: - - pos: -53.5,-48.5 - parent: 82 - type: Transform -- uid: 4047 - type: ReinforcedWindow - components: - - pos: -30.5,-47.5 - parent: 82 - type: Transform -- uid: 4048 - type: SignDirectionalDorms - components: - - pos: 34.49941,5.747898 - parent: 82 - type: Transform -- uid: 4049 - type: WallReinforced - components: - - pos: -21.5,-47.5 - parent: 82 - type: Transform -- uid: 4050 - type: WallReinforced - components: - - pos: -22.5,-47.5 - parent: 82 - type: Transform -- uid: 4051 - type: WallReinforced - components: - - pos: -23.5,-47.5 - parent: 82 - type: Transform -- uid: 4052 - type: WallReinforced - components: - - pos: -24.5,-47.5 - parent: 82 - type: Transform -- uid: 4053 - type: WallReinforced - components: - - pos: -25.5,-47.5 - parent: 82 - type: Transform -- uid: 4054 - type: WallReinforced - components: - - pos: -26.5,-47.5 - parent: 82 - type: Transform -- uid: 4055 - type: WallReinforced - components: - - pos: -27.5,-47.5 - parent: 82 - type: Transform -- uid: 4056 - type: WallReinforced - components: - - pos: -28.5,-47.5 - parent: 82 - type: Transform -- uid: 4057 - type: ReinforcedWindow - components: - - pos: -20.5,-47.5 - parent: 82 - type: Transform -- uid: 4058 - type: SignDirectionalSci - components: - - rot: 3.141592653589793 rad - pos: 34.501583,6.2514505 - parent: 82 - type: Transform -- uid: 4059 - type: SignDirectionalSupply - components: - - rot: 1.5707963267948966 rad - pos: 30.5,22 - parent: 82 - type: Transform -- uid: 4060 - type: WallReinforced - components: - - pos: -32.5,-47.5 - parent: 82 - type: Transform -- uid: 4061 - type: WallReinforced - components: - - pos: -33.5,-47.5 - parent: 82 - type: Transform -- uid: 4062 - type: WallSolid - components: - - pos: -20.5,28.5 - parent: 82 - type: Transform -- uid: 4063 - type: DrinkMilkCarton - components: - - pos: -13.798634,23.7145 - parent: 82 - type: Transform -- uid: 4064 - type: ReagentContainerMilkOat - components: - - pos: -13.154188,23.53672 - parent: 82 - type: Transform -- uid: 4065 - type: ReagentContainerMilkOat - components: - - pos: -13.354187,23.692276 - parent: 82 - type: Transform -- uid: 4066 - type: WallSolid - components: - - pos: -20.5,24.5 - parent: 82 - type: Transform -- uid: 4067 - type: WallSolid - components: - - pos: -20.5,23.5 - parent: 82 - type: Transform -- uid: 4068 - type: WallSolid - components: - - pos: -19.5,14.5 - parent: 82 - type: Transform -- uid: 4069 - type: WallSolid - components: - - pos: -19.5,15.5 - parent: 82 - type: Transform -- uid: 4070 - type: WallSolid - components: - - pos: -19.5,23.5 - parent: 82 - type: Transform -- uid: 4071 - type: WallSolid - components: - - pos: -19.5,22.5 - parent: 82 - type: Transform -- uid: 4072 - type: ClothingMaskBreathMedical - components: - - pos: -18.410582,-30.483757 - parent: 82 - type: Transform -- uid: 4073 - type: WallSolid - components: - - pos: -18.5,15.5 - parent: 82 - type: Transform -- uid: 4074 - type: Spoon - components: - - pos: 44.437706,41.79847 - parent: 82 - type: Transform -- uid: 4075 - type: WallSolid - components: - - pos: -18.5,22.5 - parent: 82 - type: Transform -- uid: 4076 - type: WallSolid - components: - - pos: -20.5,14.5 - parent: 82 - type: Transform -- uid: 4077 - type: WallSolid - components: - - pos: -20.5,13.5 - parent: 82 - type: Transform -- uid: 4078 - type: WallSolid - components: - - pos: -20.5,12.5 - parent: 82 - type: Transform -- uid: 4079 - type: WallSolid - components: - - pos: 30.5,45.5 - parent: 82 - type: Transform -- uid: 4080 - type: WallSolid - components: - - pos: -11.5,27.5 - parent: 82 - type: Transform -- uid: 4081 - type: WallSolid - components: - - pos: -11.5,26.5 - parent: 82 - type: Transform -- uid: 4082 - type: Grille - components: - - pos: -16.5,28.5 - parent: 82 - type: Transform -- uid: 4083 - type: Grille - components: - - pos: -15.5,28.5 - parent: 82 - type: Transform -- uid: 4084 - type: DrinkMilkCarton - components: - - pos: -13.598633,23.581165 - parent: 82 - type: Transform -- uid: 4085 - type: Window - components: - - pos: -15.5,28.5 - parent: 82 - type: Transform -- uid: 4086 - type: WallReinforced - components: - - pos: -17.5,-47.5 - parent: 82 - type: Transform -- uid: 4087 - type: WallSolid - components: - - pos: -15.5,7.5 - parent: 82 - type: Transform -- uid: 4088 - type: WallSolid - components: - - pos: -16.5,7.5 - parent: 82 - type: Transform -- uid: 4089 - type: WallSolid - components: - - pos: -17.5,7.5 - parent: 82 - type: Transform -- uid: 4090 - type: WallSolid - components: - - pos: -19.5,7.5 - parent: 82 - type: Transform -- uid: 4091 - type: WallSolid - components: - - pos: -14.5,3.5 - parent: 82 - type: Transform -- uid: 4092 - type: WallSolid - components: - - pos: -14.5,0.5 - parent: 82 - type: Transform -- uid: 4093 - type: WallSolid - components: - - pos: -11.5,5.5 - parent: 82 - type: Transform -- uid: 4094 - type: WallSolid - components: - - pos: -14.5,5.5 - parent: 82 - type: Transform -- uid: 4095 - type: WallSolid - components: - - pos: -16.5,12.5 - parent: 82 - type: Transform -- uid: 4096 - type: WallSolid - components: - - pos: -16.5,11.5 - parent: 82 - type: Transform -- uid: 4097 - type: TintedWindow - components: - - rot: -1.5707963267948966 rad - pos: -16.5,8.5 - parent: 82 - type: Transform -- uid: 4098 - type: TintedWindow - components: - - rot: -1.5707963267948966 rad - pos: -16.5,10.5 - parent: 82 - type: Transform -- uid: 4099 - type: WallSolid - components: - - pos: -19.5,12.5 - parent: 82 - type: Transform -- uid: 4100 - type: WallSolid - components: - - pos: -17.5,12.5 - parent: 82 - type: Transform -- uid: 4101 - type: WallSolid - components: - - pos: -18.5,21.5 - parent: 82 - type: Transform -- uid: 4102 - type: WallSolid - components: - - pos: -18.5,20.5 - parent: 82 - type: Transform -- uid: 4103 - type: WallReinforced - components: - - pos: -16.5,-47.5 - parent: 82 - type: Transform -- uid: 4104 - type: WallReinforced - components: - - pos: -15.5,-47.5 - parent: 82 - type: Transform -- uid: 4105 - type: WallReinforced - components: - - pos: -14.5,-47.5 - parent: 82 - type: Transform -- uid: 4106 - type: WallReinforced - components: - - pos: -54.5,-48.5 - parent: 82 - type: Transform -- uid: 4107 - type: SignDirectionalSalvage - components: - - rot: 3.141592653589793 rad - pos: 30.5,22.5 - parent: 82 - type: Transform -- uid: 4108 - type: Grille - components: - - pos: 88.5,-8.5 - parent: 82 - type: Transform -- uid: 4109 - type: WallSolid - components: - - pos: -53.5,-19.5 - parent: 82 - type: Transform -- uid: 4110 - type: WallSolid - components: - - pos: -53.5,-20.5 - parent: 82 - type: Transform -- uid: 4111 - type: WallSolid - components: - - pos: -48.5,-20.5 - parent: 82 - type: Transform -- uid: 4112 - type: SignDirectionalSupply - components: - - pos: 30.49341,34.739174 - parent: 82 - type: Transform -- uid: 4113 - type: WallReinforced - components: - - pos: -13.5,-47.5 - parent: 82 - type: Transform -- uid: 4114 - type: AirlockMaintRnDLocked - components: - - pos: 30.5,60.5 - parent: 82 - type: Transform -- uid: 4115 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,56.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 4116 - type: WallReinforced - components: - - pos: 30.5,59.5 - parent: 82 - type: Transform -- uid: 4117 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -53.5,-13.5 - parent: 82 - type: Transform -- uid: 4118 - type: WallSolid - components: - - pos: -52.5,-20.5 - parent: 82 - type: Transform -- uid: 4119 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -53.5,-14.5 - parent: 82 - type: Transform -- uid: 4120 - type: WallSolid - components: - - pos: -49.5,-20.5 - parent: 82 - type: Transform -- uid: 4121 - type: WallSolid - components: - - pos: -50.5,-20.5 - parent: 82 - type: Transform -- uid: 4122 - type: WallSolid - components: - - pos: -51.5,-20.5 - parent: 82 - type: Transform -- uid: 4123 - type: WallSolid - components: - - pos: -52.5,-21.5 - parent: 82 - type: Transform -- uid: 4124 - type: FirelockGlass - components: - - pos: -29.5,30.5 - parent: 82 - type: Transform -- uid: 4125 - type: BedsheetSpawner - components: - - pos: 23.5,27.5 - parent: 82 - type: Transform -- uid: 4126 - type: ClothingNeckScarfStripedGreen - components: - - pos: 22.490013,27.553314 - parent: 82 - type: Transform -- uid: 4127 - type: CarpetGreen - components: - - pos: 29.5,26.5 - parent: 82 - type: Transform -- uid: 4128 - type: CarpetGreen - components: - - pos: 28.5,26.5 - parent: 82 - type: Transform -- uid: 4129 - type: WallSolid - components: - - pos: -43.5,-15.5 - parent: 82 - type: Transform -- uid: 4130 - type: WallSolid - components: - - pos: -43.5,-14.5 - parent: 82 - type: Transform -- uid: 4131 - type: WallSolid - components: - - pos: -43.5,-12.5 - parent: 82 - type: Transform -- uid: 4132 - type: WallSolid - components: - - pos: -43.5,-11.5 - parent: 82 - type: Transform -- uid: 4133 - type: WallSolid - components: - - pos: -43.5,-10.5 - parent: 82 - type: Transform -- uid: 4134 - type: WallSolid - components: - - pos: -43.5,-9.5 - parent: 82 - type: Transform -- uid: 4135 - type: WallSolid - components: - - pos: -43.5,-8.5 - parent: 82 - type: Transform -- uid: 4136 - type: WallSolid - components: - - pos: -43.5,-7.5 - parent: 82 - type: Transform -- uid: 4137 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -53.5,-15.5 - parent: 82 - type: Transform -- uid: 4138 - type: WallSolid - components: - - pos: -43.5,-5.5 - parent: 82 - type: Transform -- uid: 4139 - type: WallReinforced - components: - - pos: -39.5,24.5 - parent: 82 - type: Transform -- uid: 4140 - type: WallReinforced - components: - - pos: -44.5,25.5 - parent: 82 - type: Transform -- uid: 4141 - type: Grille - components: - - pos: 51.5,38.5 - parent: 82 - type: Transform -- uid: 4142 - type: Grille - components: - - pos: -42.5,-52.5 - parent: 82 - type: Transform -- uid: 4143 - type: WallReinforced - components: - - pos: -42.5,-48.5 - parent: 82 - type: Transform -- uid: 4144 - type: WallReinforced - components: - - pos: -43.5,-48.5 - parent: 82 - type: Transform -- uid: 4145 - type: WallReinforced - components: - - pos: -44.5,-48.5 - parent: 82 - type: Transform -- uid: 4146 - type: Girder - components: - - pos: 22.5,20.5 - parent: 82 - type: Transform -- uid: 4147 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: 28.5,22.5 - parent: 82 - type: Transform -- uid: 4148 - type: ClothingEyesGlasses - components: - - pos: 28.549417,23.61998 - parent: 82 - type: Transform -- uid: 4149 - type: BookRandom - components: - - pos: 29.171638,23.575535 - parent: 82 - type: Transform -- uid: 4150 - type: Catwalk - components: - - pos: 29.5,20.5 - parent: 82 - type: Transform -- uid: 4151 - type: WallSolid - components: - - pos: 21.5,20.5 - parent: 82 - type: Transform -- uid: 4152 - type: GrilleBroken - components: - - pos: 22.5,21.5 - parent: 82 - type: Transform -- uid: 4153 - type: Catwalk - components: - - pos: 39.5,44.5 - parent: 82 - type: Transform -- uid: 4154 - type: BookRandom - components: - - pos: 29.549417,23.4422 - parent: 82 - type: Transform -- uid: 4155 - type: Girder - components: - - pos: 42.5,46.5 - parent: 82 - type: Transform -- uid: 4156 - type: WallSolid - components: - - pos: -45.5,-18.5 - parent: 82 - type: Transform -- uid: 4157 - type: WallSolid - components: - - pos: -48.5,-18.5 - parent: 82 - type: Transform -- uid: 4158 - type: Bookshelf - components: - - pos: -19.5,11.5 - parent: 82 - type: Transform -- uid: 4159 - type: Bookshelf - components: - - pos: -19.5,8.5 - parent: 82 - type: Transform -- uid: 4160 - type: TableWood - components: - - pos: -19.5,10.5 - parent: 82 - type: Transform -- uid: 4161 - type: TableWood - components: - - pos: -19.5,9.5 - parent: 82 - type: Transform -- uid: 4162 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -18.5,10.5 - parent: 82 - type: Transform -- uid: 4163 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -34.5,84.5 - parent: 82 - type: Transform -- uid: 4164 - type: CableHV - components: - - pos: -19.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4165 - type: HospitalCurtainsOpen - components: - - pos: -12.5,2.5 - parent: 82 - type: Transform -- uid: 4166 - type: Table - components: - - pos: 11.5,35.5 - parent: 82 - type: Transform -- uid: 4167 - type: Table - components: - - pos: 11.5,34.5 - parent: 82 - type: Transform -- uid: 4168 - type: filingCabinetDrawerRandom - components: - - pos: -14.5,-30.5 - parent: 82 - type: Transform -- uid: 4169 - type: SheetSteel - components: - - pos: 11.31822,35.63377 - parent: 82 - type: Transform -- uid: 4170 - type: SheetGlass - components: - - pos: 11.551554,35.594883 - parent: 82 - type: Transform -- uid: 4171 - type: PartRodMetal - components: - - pos: 11.687664,35.555992 - parent: 82 - type: Transform -- uid: 4172 - type: CableHVStack - components: - - pos: 11.279329,35.128216 - parent: 82 - type: Transform -- uid: 4173 - type: CableApcStack - components: - - pos: 11.45433,35.030994 - parent: 82 - type: Transform -- uid: 4174 - type: CableMVStack - components: - - pos: 11.62933,34.914326 - parent: 82 - type: Transform -- uid: 4175 - type: RandomArtifactSpawner - components: - - pos: 30.5,79.5 - parent: 82 - type: Transform -- uid: 4176 - type: AdvancedMatterBinStockPart - components: - - pos: 11.6682205,34.66155 - parent: 82 - type: Transform -- uid: 4177 - type: filingCabinetRandom - components: - - pos: -46.5,-26.5 - parent: 82 - type: Transform -- uid: 4178 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: -30.5,0.5 - parent: 82 - type: Transform -- uid: 4179 - type: filingCabinetTallRandom - components: - - pos: 36.5,18.5 - parent: 82 - type: Transform -- uid: 4180 - type: filingCabinetTallRandom - components: - - pos: 35.5,18.5 - parent: 82 - type: Transform -- uid: 4181 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -28.5,14.5 - parent: 82 - type: Transform -- uid: 4182 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -27.5,14.5 - parent: 82 - type: Transform -- uid: 4183 - type: ReinforcedWindow - components: - - pos: -34.5,16.5 - parent: 82 - type: Transform -- uid: 4184 - type: ReinforcedWindow - components: - - pos: -34.5,17.5 - parent: 82 - type: Transform -- uid: 4185 - type: MatterBinStockPart - components: - - pos: 11.486116,34.716286 - parent: 82 - type: Transform -- uid: 4186 - type: AirlockExternalGlass - components: - - pos: -6.5,-63.5 - parent: 82 - type: Transform -- uid: 4187 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -28.5,21.5 - parent: 82 - type: Transform -- uid: 4188 - type: Rack - components: - - pos: 8.5,33.5 - parent: 82 - type: Transform -- uid: 4189 - type: Rack - components: - - pos: 8.5,34.5 - parent: 82 - type: Transform -- uid: 4190 - type: Rack - components: - - pos: 8.5,39.5 - parent: 82 - type: Transform -- uid: 4191 - type: Rack - components: - - pos: 8.5,38.5 - parent: 82 - type: Transform -- uid: 4192 - type: Rack - components: - - pos: 10.5,37.5 - parent: 82 - type: Transform -- uid: 4193 - type: Rack - components: - - pos: 10.5,36.5 - parent: 82 - type: Transform -- uid: 4194 - type: Rack - components: - - pos: 8.5,35.5 - parent: 82 - type: Transform -- uid: 4195 - type: APCElectronics - components: - - pos: 8.401554,33.66988 - parent: 82 - type: Transform -- uid: 4196 - type: APCElectronics - components: - - pos: 8.47933,33.475437 - parent: 82 - type: Transform -- uid: 4197 - type: DoorElectronics - components: - - pos: 8.712664,33.630993 - parent: 82 - type: Transform - - tags: - - DroneUsable - type: Tag -- uid: 4198 - type: DoorElectronics - components: - - pos: 8.7904415,33.378216 - parent: 82 - type: Transform - - tags: - - DroneUsable - type: Tag -- uid: 4199 - type: FireAlarmElectronics - components: - - pos: 8.362663,34.622658 - parent: 82 - type: Transform - - tags: - - DroneUsable - type: Tag -- uid: 4200 - type: FirelockElectronics - components: - - pos: 8.634887,34.311546 - parent: 82 - type: Transform -- uid: 4201 - type: FirelockElectronics - components: - - pos: 8.69322,34.58377 - parent: 82 - type: Transform -- uid: 4202 - type: SMESMachineCircuitboard - components: - - pos: 8.362663,35.75044 - parent: 82 - type: Transform -- uid: 4203 - type: ReagentGrinderMachineCircuitboard - components: - - pos: 10.715443,37.811546 - parent: 82 - type: Transform -- uid: 4204 - type: ProtolatheMachineCircuitboard - components: - - pos: 10.676554,36.68377 - parent: 82 - type: Transform -- uid: 4205 - type: ComputerTelevisionCircuitboard - components: - - pos: 8.382109,39.69766 - parent: 82 - type: Transform - - tags: - - DroneUsable - type: Tag -- uid: 4206 - type: SubstationMachineCircuitboard - components: - - pos: 8.420997,35.45877 - parent: 82 - type: Transform -- uid: 4207 - type: OreProcessorMachineCircuitboard - components: - - pos: 8.401554,38.705994 - parent: 82 - type: Transform -- uid: 4208 - type: MicrowaveMachineCircuitboard - components: - - pos: 10.637663,37.55877 - parent: 82 - type: Transform -- uid: 4209 - type: HydroponicsTrayMachineCircuitboard - components: - - pos: 10.423775,37.69488 - parent: 82 - type: Transform -- uid: 4210 - type: GeneratorUraniumMachineCircuitboard - components: - - pos: 8.69322,35.45877 - parent: 82 - type: Transform -- uid: 4211 - type: GeneratorPlasmaMachineCircuitboard - components: - - pos: 8.69322,35.711548 - parent: 82 - type: Transform -- uid: 4212 - type: DawInstrumentMachineCircuitboard - components: - - pos: 13.515442,37.617104 - parent: 82 - type: Transform -- uid: 4213 - type: CircuitImprinterMachineCircuitboard - components: - - pos: 13.647984,38.49309 - parent: 82 - type: Transform -- uid: 4214 - type: AutolatheMachineCircuitboard - components: - - pos: 10.423775,36.489326 - parent: 82 - type: Transform -- uid: 4215 - type: StasisBedMachineCircuitboard - components: - - pos: 8.654329,38.492104 - parent: 82 - type: Transform -- uid: 4216 - type: BlockGameArcadeComputerCircuitboard - components: - - pos: 8.634887,39.52266 - parent: 82 - type: Transform -- uid: 4217 - type: ChemDispenserMachineCircuitboard - components: - - pos: 13.634094,39.423656 - parent: 82 - type: Transform -- uid: 4218 - type: WallReinforced - components: - - pos: 16.5,-21.5 - parent: 82 - type: Transform -- uid: 4219 - type: WallReinforced - components: - - pos: -1.5,-6.5 - parent: 82 - type: Transform -- uid: 4220 - type: WallReinforced - components: - - pos: 16.5,-12.5 - parent: 82 - type: Transform -- uid: 4221 - type: SpawnPointAssistant - components: - - pos: 15.5,-38.5 - parent: 82 - type: Transform -- uid: 4222 - type: ToiletDirtyWater - components: - - pos: 7.5,-15.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 4223 - type: WallReinforced - components: - - pos: -45.5,-48.5 - parent: 82 - type: Transform -- uid: 4224 - type: WallReinforced - components: - - pos: -46.5,-48.5 - parent: 82 - type: Transform -- uid: 4225 - type: AirlockCargoGlassLocked - components: - - pos: 39.5,19.5 - parent: 82 - type: Transform -- uid: 4226 - type: FoodSoupBungo - components: - - pos: -28.500982,-16.449272 - parent: 82 - type: Transform -- uid: 4227 - type: AtmosFixFreezerMarker - components: - - pos: -36.5,-15.5 - parent: 82 - type: Transform -- uid: 4228 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 3.141592653589793 rad - pos: 7.5,-13.5 - parent: 82 - type: Transform -- uid: 4229 - type: FaxMachineCaptain - components: - - pos: 11.5,-18.5 - parent: 82 - type: Transform -- uid: 4230 - type: ComputerCrewMonitoring - components: - - rot: 3.141592653589793 rad - pos: 8.5,-13.5 - parent: 82 - type: Transform -- uid: 4231 - type: ComputerId - components: - - pos: 8.5,-9.5 - parent: 82 - type: Transform -- uid: 4232 - type: ComputerAlert - components: - - pos: 6.5,-9.5 - parent: 82 - type: Transform -- uid: 4233 - type: ComputerComms - components: - - pos: 7.5,-9.5 - parent: 82 - type: Transform -- uid: 4234 - type: CableMV - components: - - pos: -29.5,65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4235 - type: AirlockGlass - components: - - pos: 16.5,-4.5 - parent: 82 - type: Transform -- uid: 4236 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 34.5,66.5 - parent: 82 - type: Transform -- uid: 4237 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 30.5,8.5 - parent: 82 - type: Transform -- uid: 4238 - type: VendingMachineChapel - components: - - flags: SessionSpecific - type: MetaData - - pos: -13.5,11.5 - parent: 82 - type: Transform -- uid: 4239 - type: TintedWindow - components: - - pos: -10.5,18.5 - parent: 82 - type: Transform -- uid: 4240 - type: TintedWindow - components: - - pos: -11.5,18.5 - parent: 82 - type: Transform -- uid: 4241 - type: Grille - components: - - pos: -10.5,18.5 - parent: 82 - type: Transform -- uid: 4242 - type: Grille - components: - - pos: -11.5,18.5 - parent: 82 - type: Transform -- uid: 4243 - type: Grille - components: - - pos: -16.5,10.5 - parent: 82 - type: Transform -- uid: 4244 - type: Grille - components: - - pos: -16.5,8.5 - parent: 82 - type: Transform -- uid: 4245 - type: WoodDoor - components: - - pos: -11.5,17.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -533084.5 - state: Opening - type: Door -- uid: 4246 - type: WoodDoor - components: - - pos: -11.5,19.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -533082.75 - state: Opening - type: Door -- uid: 4247 - type: WallSolid - components: - - pos: -11.5,21.5 - parent: 82 - type: Transform -- uid: 4248 - type: WallSolid - components: - - pos: -11.5,22.5 - parent: 82 - type: Transform -- uid: 4249 - type: WallSolid - components: - - pos: -11.5,23.5 - parent: 82 - type: Transform -- uid: 4250 - type: WallSolid - components: - - pos: -11.5,24.5 - parent: 82 - type: Transform -- uid: 4251 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 30.5,9.5 - parent: 82 - type: Transform -- uid: 4252 - type: VendingBarDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -15.5,-10.5 - parent: 82 - type: Transform -- uid: 4253 - type: Rack - components: - - pos: -15.5,-9.5 - parent: 82 - type: Transform -- uid: 4254 - type: WardrobeChapelFilled - components: - - pos: -15.5,11.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4255 - type: Girder - components: - - pos: -50.5,-41.5 - parent: 82 - type: Transform -- uid: 4256 - type: Table - components: - - pos: -15.5,-8.5 - parent: 82 - type: Transform -- uid: 4257 - type: Bed - components: - - pos: -16.5,-6.5 - parent: 82 - type: Transform -- uid: 4258 - type: WallReinforced - components: - - pos: -47.5,-48.5 - parent: 82 - type: Transform -- uid: 4259 - type: WallReinforced - components: - - pos: -48.5,-48.5 - parent: 82 - type: Transform -- uid: 4260 - type: WallReinforced - components: - - pos: -49.5,-48.5 - parent: 82 - type: Transform -- uid: 4261 - type: WallReinforced - components: - - pos: -50.5,-48.5 - parent: 82 - type: Transform -- uid: 4262 - type: WallReinforced - components: - - pos: -31.5,5.5 - parent: 82 - type: Transform -- uid: 4263 - type: WallReinforced - components: - - pos: -31.5,6.5 - parent: 82 - type: Transform -- uid: 4264 - type: WallReinforced - components: - - pos: -31.5,0.5 - parent: 82 - type: Transform -- uid: 4265 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -31.5,4.5 - parent: 82 - type: Transform -- uid: 4266 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -31.5,3.5 - parent: 82 - type: Transform -- uid: 4267 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -31.5,2.5 - parent: 82 - type: Transform -- uid: 4268 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -31.5,1.5 - parent: 82 - type: Transform -- uid: 4269 - type: WallReinforced - components: - - pos: -31.5,-0.5 - parent: 82 - type: Transform -- uid: 4270 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-24.5 - parent: 82 - type: Transform -- uid: 4271 - type: WallSolid - components: - - pos: -55.5,-43.5 - parent: 82 - type: Transform -- uid: 4272 - type: WallSolid - components: - - pos: -55.5,-42.5 - parent: 82 - type: Transform -- uid: 4273 - type: WallSolid - components: - - pos: -55.5,-41.5 - parent: 82 - type: Transform -- uid: 4274 - type: WallSolid - components: - - pos: -55.5,-40.5 - parent: 82 - type: Transform -- uid: 4275 - type: WallSolid - components: - - pos: -55.5,-39.5 - parent: 82 - type: Transform -- uid: 4276 - type: WallSolid - components: - - pos: -55.5,-38.5 - parent: 82 - type: Transform -- uid: 4277 - type: WallSolid - components: - - pos: -55.5,-37.5 - parent: 82 - type: Transform -- uid: 4278 - type: WallSolid - components: - - pos: -55.5,-36.5 - parent: 82 - type: Transform -- uid: 4279 - type: WallSolid - components: - - pos: -56.5,-36.5 - parent: 82 - type: Transform -- uid: 4280 - type: WallSolid - components: - - pos: -57.5,-36.5 - parent: 82 - type: Transform -- uid: 4281 - type: WallSolid - components: - - pos: -58.5,-36.5 - parent: 82 - type: Transform -- uid: 4282 - type: WallSolid - components: - - pos: -48.5,-45.5 - parent: 82 - type: Transform -- uid: 4283 - type: WallSolid - components: - - pos: -49.5,-45.5 - parent: 82 - type: Transform -- uid: 4284 - type: Girder - components: - - pos: -50.5,-45.5 - parent: 82 - type: Transform -- uid: 4285 - type: WallSolid - components: - - pos: -51.5,-45.5 - parent: 82 - type: Transform -- uid: 4286 - type: WallSolid - components: - - pos: -52.5,-45.5 - parent: 82 - type: Transform -- uid: 4287 - type: WallSolid - components: - - pos: -53.5,-45.5 - parent: 82 - type: Transform -- uid: 4288 - type: WallSolid - components: - - pos: -52.5,-44.5 - parent: 82 - type: Transform -- uid: 4289 - type: WallSolid - components: - - pos: -52.5,-43.5 - parent: 82 - type: Transform -- uid: 4290 - type: WallSolid - components: - - pos: -52.5,-42.5 - parent: 82 - type: Transform -- uid: 4291 - type: WallSolid - components: - - pos: -52.5,-41.5 - parent: 82 - type: Transform -- uid: 4292 - type: WallSolid - components: - - pos: -53.5,-41.5 - parent: 82 - type: Transform -- uid: 4293 - type: WallSolid - components: - - pos: -56.5,-35.5 - parent: 82 - type: Transform -- uid: 4294 - type: WallSolid - components: - - pos: 2.5,-48.5 - parent: 82 - type: Transform -- uid: 4295 - type: WallSolid - components: - - pos: 1.5,-48.5 - parent: 82 - type: Transform -- uid: 4296 - type: WallSolid - components: - - pos: 0.5,-48.5 - parent: 82 - type: Transform -- uid: 4297 - type: WallSolid - components: - - pos: -0.5,-48.5 - parent: 82 - type: Transform -- uid: 4298 - type: WallSolid - components: - - pos: -1.5,-48.5 - parent: 82 - type: Transform -- uid: 4299 - type: WallSolid - components: - - pos: -2.5,-48.5 - parent: 82 - type: Transform -- uid: 4300 - type: WallSolid - components: - - pos: -3.5,-48.5 - parent: 82 - type: Transform -- uid: 4301 - type: TableReinforced - components: - - pos: -2.5,-46.5 - parent: 82 - type: Transform -- uid: 4302 - type: ReinforcedWindow - components: - - pos: 59.5,1.5 - parent: 82 - type: Transform -- uid: 4303 - type: ReinforcedWindow - components: - - pos: 60.5,1.5 - parent: 82 - type: Transform -- uid: 4304 - type: ReinforcedWindow - components: - - pos: 61.5,1.5 - parent: 82 - type: Transform -- uid: 4305 - type: WallSolid - components: - - pos: -3.5,-49.5 - parent: 82 - type: Transform -- uid: 4306 - type: WallSolid - components: - - pos: -3.5,-50.5 - parent: 82 - type: Transform -- uid: 4307 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-24.5 - parent: 82 - type: Transform -- uid: 4308 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-24.5 - parent: 82 - type: Transform -- uid: 4309 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-24.5 - parent: 82 - type: Transform -- uid: 4310 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-26.5 - parent: 82 - type: Transform -- uid: 4311 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-25.5 - parent: 82 - type: Transform -- uid: 4312 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-27.5 - parent: 82 - type: Transform -- uid: 4313 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-28.5 - parent: 82 - type: Transform -- uid: 4314 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-29.5 - parent: 82 - type: Transform -- uid: 4315 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -50.5,6.5 - parent: 82 - type: Transform -- uid: 4316 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -24.5,11.5 - parent: 82 - type: Transform -- uid: 4317 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -24.5,12.5 - parent: 82 - type: Transform -- uid: 4318 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -24.5,13.5 - parent: 82 - type: Transform -- uid: 4319 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -24.5,14.5 - parent: 82 - type: Transform -- uid: 4320 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -24.5,15.5 - parent: 82 - type: Transform -- uid: 4321 - type: BikeHornInstrument - components: - - rot: 3.141592653589793 rad - pos: -32.49298,23.464588 - parent: 82 - type: Transform -- uid: 4322 - type: TableReinforced - components: - - pos: -27.5,15.5 - parent: 82 - type: Transform -- uid: 4323 - type: CrateNPCGoose - components: - - pos: -10.5,-40.5 - parent: 82 - type: Transform - - open: True - removedMasks: 28 - type: EntityStorage - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - - -0.4,-0.4 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 135 - hard: True - restitution: 0 - friction: 0.4 - id: null - type: Fixtures -- uid: 4324 - type: WallReinforced - components: - - pos: -24.5,19.5 - parent: 82 - type: Transform -- uid: 4325 - type: WallReinforced - components: - - pos: -24.5,20.5 - parent: 82 - type: Transform -- uid: 4326 - type: WallReinforced - components: - - pos: -24.5,21.5 - parent: 82 - type: Transform -- uid: 4327 - type: WallReinforced - components: - - pos: -24.5,22.5 - parent: 82 - type: Transform -- uid: 4328 - type: WallSolid - components: - - pos: 12.5,-46.5 - parent: 82 - type: Transform -- uid: 4329 - type: WallSolid - components: - - pos: 12.5,-45.5 - parent: 82 - type: Transform -- uid: 4330 - type: WallSolid - components: - - pos: 12.5,-44.5 - parent: 82 - type: Transform -- uid: 4331 - type: WallSolid - components: - - pos: 12.5,-43.5 - parent: 82 - type: Transform -- uid: 4332 - type: WallSolid - components: - - pos: 13.5,-43.5 - parent: 82 - type: Transform -- uid: 4333 - type: WallSolid - components: - - pos: 14.5,-43.5 - parent: 82 - type: Transform -- uid: 4334 - type: WallSolid - components: - - pos: 14.5,-42.5 - parent: 82 - type: Transform -- uid: 4335 - type: WallSolid - components: - - pos: 14.5,-41.5 - parent: 82 - type: Transform -- uid: 4336 - type: WallReinforced - components: - - pos: -51.5,-17.5 - parent: 82 - type: Transform -- uid: 4337 - type: WallSolid - components: - - pos: -46.5,-10.5 - parent: 82 - type: Transform -- uid: 4338 - type: WallSolid - components: - - pos: -46.5,-9.5 - parent: 82 - type: Transform -- uid: 4339 - type: WallSolid - components: - - pos: -46.5,-8.5 - parent: 82 - type: Transform -- uid: 4340 - type: WallSolid - components: - - pos: -46.5,-7.5 - parent: 82 - type: Transform -- uid: 4341 - type: WallSolid - components: - - pos: -46.5,-6.5 - parent: 82 - type: Transform -- uid: 4342 - type: WallSolid - components: - - pos: -46.5,-5.5 - parent: 82 - type: Transform -- uid: 4343 - type: WallReinforced - components: - - pos: -24.5,23.5 - parent: 82 - type: Transform -- uid: 4344 - type: WallReinforced - components: - - pos: -24.5,24.5 - parent: 82 - type: Transform -- uid: 4345 - type: ReinforcedWindow - components: - - pos: -24.5,26.5 - parent: 82 - type: Transform -- uid: 4346 - type: VendingMachineSeeds - components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,-23.5 - parent: 82 - type: Transform -- uid: 4347 - type: CableMV - components: - - pos: -31.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4348 - type: CableMV - components: - - pos: -33.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4349 - type: CableMV - components: - - pos: -35.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4350 - type: PianoInstrument - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-19.5 - parent: 82 - type: Transform -- uid: 4351 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-19.5 - parent: 82 - type: Transform -- uid: 4352 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 4353 - type: Bed - components: - - pos: -16.5,-20.5 - parent: 82 - type: Transform -- uid: 4354 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-19.5 - parent: 82 - type: Transform -- uid: 4355 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-19.5 - parent: 82 - type: Transform -- uid: 4356 - type: BedsheetCosmos - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-20.5 - parent: 82 - type: Transform -- uid: 4357 - type: IngotGold - components: - - pos: -9.470345,-6.544166 - parent: 82 - type: Transform -- uid: 4358 - type: DrinkGoldenCup - components: - - pos: -13.470343,-6.5886097 - parent: 82 - type: Transform -- uid: 4359 - type: ToolboxGoldFilled - components: - - pos: -9.51479,-7.144166 - parent: 82 - type: Transform -- uid: 4360 - type: DrinkGoldschlagerBottleFull - components: - - pos: -13.670343,-6.8330545 - parent: 82 - type: Transform -- uid: 4361 - type: CigarGoldCase - components: - - pos: -13.479664,-8.291014 - parent: 82 - type: Transform -- uid: 4362 - type: PinpointerNuclear - components: - - pos: -9.51479,-7.78861 - parent: 82 - type: Transform -- uid: 4363 - type: ToyNuke - components: - - pos: -12.848696,-8.428736 - parent: 82 - type: Transform -- uid: 4364 - type: PlushieNuke - components: - - pos: -12.487585,-8.220404 - parent: 82 - type: Transform -- uid: 4365 - type: ClothingBeltChampion - components: - - pos: -9.915806,-8.334283 - parent: 82 - type: Transform -- uid: 4366 - type: ClothingHeadHatHairflower - components: - - pos: -13.307543,-7.139986 - parent: 82 - type: Transform -- uid: 4367 - type: PenCap - components: - - pos: -10.522747,-8.344166 - parent: 82 - type: Transform -- uid: 4368 - type: AirlockCaptainGlassLocked - components: - - pos: 12.5,-16.5 - parent: 82 - type: Transform -- uid: 4369 - type: AirlockCaptainLocked - components: - - pos: 11.5,-12.5 - parent: 82 - type: Transform -- uid: 4370 - type: AirlockServiceCaptainLocked - components: - - pos: 8.5,-16.5 - parent: 82 - type: Transform -- uid: 4371 - type: Catwalk - components: - - pos: -34.5,80.5 - parent: 82 - type: Transform -- uid: 4372 - type: AirlockCommandGlassLocked - components: - - pos: 3.5,-12.5 - parent: 82 - type: Transform -- uid: 4373 - type: Catwalk - components: - - pos: -41.5,54.5 - parent: 82 - type: Transform -- uid: 4374 - type: AtmosFixFreezerMarker - components: - - pos: -35.5,-14.5 - parent: 82 - type: Transform -- uid: 4375 - type: Catwalk - components: - - pos: -40.5,54.5 - parent: 82 - type: Transform -- uid: 4376 - type: Catwalk - components: - - pos: -54.5,53.5 - parent: 82 - type: Transform -- uid: 4377 - type: AirlockMaint - components: - - pos: -20.5,6.5 - parent: 82 - type: Transform -- uid: 4378 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,31.5 - parent: 82 - type: Transform -- uid: 4379 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 35.5,31.5 - parent: 82 - type: Transform -- uid: 4380 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 34.5,31.5 - parent: 82 - type: Transform -- uid: 4381 - type: Window - components: - - pos: 2.5,-12.5 - parent: 82 - type: Transform -- uid: 4382 - type: Window - components: - - pos: 1.5,-12.5 - parent: 82 - type: Transform -- uid: 4383 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-13.5 - parent: 82 - type: Transform -- uid: 4384 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,-13.5 - parent: 82 - type: Transform -- uid: 4385 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 38.5,31.5 - parent: 82 - type: Transform -- uid: 4386 - type: TableWood - components: - - pos: 13.5,-13.5 - parent: 82 - type: Transform -- uid: 4387 - type: TableWood - components: - - pos: 13.5,-14.5 - parent: 82 - type: Transform -- uid: 4388 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 38.5,23.5 - parent: 82 - type: Transform -- uid: 4389 - type: WallSolid - components: - - pos: -16.5,22.5 - parent: 82 - type: Transform -- uid: 4390 - type: WallSolid - components: - - pos: -17.5,22.5 - parent: 82 - type: Transform -- uid: 4391 - type: WallSolid - components: - - pos: -11.5,25.5 - parent: 82 - type: Transform -- uid: 4392 - type: Table - components: - - pos: -12.5,25.5 - parent: 82 - type: Transform -- uid: 4393 - type: Table - components: - - pos: -13.5,25.5 - parent: 82 - type: Transform -- uid: 4394 - type: Table - components: - - pos: -14.5,25.5 - parent: 82 - type: Transform -- uid: 4395 - type: Table - components: - - pos: -15.5,25.5 - parent: 82 - type: Transform -- uid: 4396 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -16.5,23.5 - parent: 82 - type: Transform -- uid: 4397 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,23.5 - parent: 82 - type: Transform -- uid: 4398 - type: Table - components: - - pos: -12.5,23.5 - parent: 82 - type: Transform -- uid: 4399 - type: Table - components: - - pos: -13.5,23.5 - parent: 82 - type: Transform -- uid: 4400 - type: Table - components: - - pos: -14.5,23.5 - parent: 82 - type: Transform -- uid: 4401 - type: DrinkCreamCarton - components: - - pos: -12.687521,23.803387 - parent: 82 - type: Transform -- uid: 4402 - type: DrinkCreamCarton - components: - - pos: -12.443077,23.62561 - parent: 82 - type: Transform -- uid: 4403 - type: WallSolid - components: - - pos: 30.5,42.5 - parent: 82 - type: Transform -- uid: 4404 - type: TableCarpet - components: - - pos: 26.5,36.5 - parent: 82 - type: Transform -- uid: 4405 - type: Chair - components: - - pos: 26.5,37.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 4406 - type: Chair - components: - - pos: 27.5,37.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 4407 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 28.5,36.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 4408 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 25.5,36.5 - parent: 82 - type: Transform -- uid: 4409 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: 25.5,35.5 - parent: 82 - type: Transform -- uid: 4410 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 28.5,35.5 - parent: 82 - type: Transform -- uid: 4411 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: 28.5,33.5 - parent: 82 - type: Transform -- uid: 4412 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,34.5 - parent: 82 - type: Transform -- uid: 4413 - type: Window - components: - - pos: 23.5,36.5 - parent: 82 - type: Transform -- uid: 4414 - type: Window - components: - - pos: 23.5,35.5 - parent: 82 - type: Transform -- uid: 4415 - type: Window - components: - - pos: 27.5,39.5 - parent: 82 - type: Transform -- uid: 4416 - type: Window - components: - - pos: 26.5,39.5 - parent: 82 - type: Transform -- uid: 4417 - type: WallSolid - components: - - pos: 40.5,38.5 - parent: 82 - type: Transform -- uid: 4418 - type: Grille - components: - - pos: -24.5,26.5 - parent: 82 - type: Transform -- uid: 4419 - type: Grille - components: - - pos: -24.5,27.5 - parent: 82 - type: Transform -- uid: 4420 - type: WallReinforced - components: - - pos: -24.5,28.5 - parent: 82 - type: Transform -- uid: 4421 - type: WallReinforced - components: - - pos: -30.5,28.5 - parent: 82 - type: Transform -- uid: 4422 - type: WallReinforced - components: - - pos: -61.5,-23.5 - parent: 82 - type: Transform -- uid: 4423 - type: WallReinforced - components: - - pos: -58.5,-21.5 - parent: 82 - type: Transform -- uid: 4424 - type: WallReinforced - components: - - pos: -57.5,-21.5 - parent: 82 - type: Transform -- uid: 4425 - type: WallReinforced - components: - - pos: -56.5,-21.5 - parent: 82 - type: Transform -- uid: 4426 - type: WallReinforced - components: - - pos: -56.5,-20.5 - parent: 82 - type: Transform -- uid: 4427 - type: WallReinforced - components: - - pos: -55.5,-20.5 - parent: 82 - type: Transform -- uid: 4428 - type: WallReinforced - components: - - pos: -55.5,-17.5 - parent: 82 - type: Transform -- uid: 4429 - type: WallReinforced - components: - - pos: -55.5,-19.5 - parent: 82 - type: Transform -- uid: 4430 - type: WallReinforced - components: - - pos: -46.5,-3.5 - parent: 82 - type: Transform -- uid: 4431 - type: WallReinforced - components: - - pos: -46.5,-2.5 - parent: 82 - type: Transform -- uid: 4432 - type: WallReinforced - components: - - pos: -46.5,-1.5 - parent: 82 - type: Transform -- uid: 4433 - type: WallReinforced - components: - - pos: -43.5,-1.5 - parent: 82 - type: Transform -- uid: 4434 - type: WallReinforced - components: - - pos: -55.5,-18.5 - parent: 82 - type: Transform -- uid: 4435 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-11.5 - parent: 82 - type: Transform -- uid: 4436 - type: WallReinforced - components: - - pos: -55.5,-8.5 - parent: 82 - type: Transform -- uid: 4437 - type: AirlockEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: -8.5,45.5 - parent: 82 - type: Transform -- uid: 4438 - type: AirlockEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: -8.5,44.5 - parent: 82 - type: Transform -- uid: 4439 - type: WallReinforced - components: - - pos: -40.5,-48.5 - parent: 82 - type: Transform -- uid: 4440 - type: WallReinforced - components: - - pos: -39.5,-48.5 - parent: 82 - type: Transform -- uid: 4441 - type: WallReinforced - components: - - pos: -38.5,-48.5 - parent: 82 - type: Transform -- uid: 4442 - type: WallReinforced - components: - - pos: -37.5,-48.5 - parent: 82 - type: Transform -- uid: 4443 - type: WallReinforced - components: - - pos: -36.5,-48.5 - parent: 82 - type: Transform -- uid: 4444 - type: WallReinforced - components: - - pos: -35.5,-48.5 - parent: 82 - type: Transform -- uid: 4445 - type: WallReinforced - components: - - pos: -34.5,-48.5 - parent: 82 - type: Transform -- uid: 4446 - type: WallReinforced - components: - - pos: -33.5,-48.5 - parent: 82 - type: Transform -- uid: 4447 - type: ReinforcedWindow - components: - - pos: -42.5,-52.5 - parent: 82 - type: Transform -- uid: 4448 - type: WallReinforced - components: - - pos: -55.5,-47.5 - parent: 82 - type: Transform -- uid: 4449 - type: WallReinforced - components: - - pos: -55.5,-46.5 - parent: 82 - type: Transform -- uid: 4450 - type: WallReinforced - components: - - pos: -55.5,-45.5 - parent: 82 - type: Transform -- uid: 4451 - type: WallReinforced - components: - - pos: -55.5,-44.5 - parent: 82 - type: Transform -- uid: 4452 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-50.5 - parent: 82 - type: Transform -- uid: 4453 - type: Table - components: - - pos: -9.5,-47.5 - parent: 82 - type: Transform -- uid: 4454 - type: Table - components: - - pos: -8.5,-47.5 - parent: 82 - type: Transform -- uid: 4455 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4456 - type: AirlockEngineeringLocked - components: - - pos: 55.5,7.5 - parent: 82 - type: Transform -- uid: 4457 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-50.5 - parent: 82 - type: Transform -- uid: 4458 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-50.5 - parent: 82 - type: Transform -- uid: 4459 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-50.5 - parent: 82 - type: Transform -- uid: 4460 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-50.5 - parent: 82 - type: Transform -- uid: 4461 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-51.5 - parent: 82 - type: Transform -- uid: 4462 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-52.5 - parent: 82 - type: Transform -- uid: 4463 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-52.5 - parent: 82 - type: Transform -- uid: 4464 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-52.5 - parent: 82 - type: Transform -- uid: 4465 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-52.5 - parent: 82 - type: Transform -- uid: 4466 - type: AirCanister - components: - - pos: 16.5,-92.5 - parent: 82 - type: Transform -- uid: 4467 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-49.5 - parent: 82 - type: Transform -- uid: 4468 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-49.5 - parent: 82 - type: Transform -- uid: 4469 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-49.5 - parent: 82 - type: Transform -- uid: 4470 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-49.5 - parent: 82 - type: Transform -- uid: 4471 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-56.5 - parent: 82 - type: Transform -- uid: 4472 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-49.5 - parent: 82 - type: Transform -- uid: 4473 - type: WallReinforced - components: - - pos: -45.5,-4.5 - parent: 82 - type: Transform -- uid: 4474 - type: WallReinforced - components: - - pos: -44.5,-4.5 - parent: 82 - type: Transform -- uid: 4475 - type: WallReinforced - components: - - pos: -46.5,-4.5 - parent: 82 - type: Transform -- uid: 4476 - type: WallSolid - components: - - pos: -22.5,40.5 - parent: 82 - type: Transform -- uid: 4477 - type: WallSolid - components: - - pos: -21.5,36.5 - parent: 82 - type: Transform -- uid: 4478 - type: WallSolid - components: - - pos: -21.5,40.5 - parent: 82 - type: Transform -- uid: 4479 - type: WallSolid - components: - - pos: -21.5,39.5 - parent: 82 - type: Transform -- uid: 4480 - type: WallSolid - components: - - pos: -17.5,35.5 - parent: 82 - type: Transform -- uid: 4481 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -17.5,38.5 - parent: 82 - type: Transform -- uid: 4482 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -17.5,37.5 - parent: 82 - type: Transform -- uid: 4483 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -17.5,36.5 - parent: 82 - type: Transform -- uid: 4484 - type: AirlockEngineeringGlassLocked - components: - - pos: -17.5,39.5 - parent: 82 - type: Transform -- uid: 4485 - type: WallSolid - components: - - pos: -17.5,42.5 - parent: 82 - type: Transform -- uid: 4486 - type: WallSolid - components: - - pos: -23.5,40.5 - parent: 82 - type: Transform -- uid: 4487 - type: CableHV - components: - - pos: -22.5,45.5 - parent: 82 - type: Transform -- uid: 4488 - type: SMESBasic - components: - - pos: -27.5,43.5 - parent: 82 - type: Transform -- uid: 4489 - type: WallSolid - components: - - pos: -26.5,40.5 - parent: 82 - type: Transform -- uid: 4490 - type: WallSolid - components: - - pos: -27.5,40.5 - parent: 82 - type: Transform -- uid: 4491 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 38.5,22.5 - parent: 82 - type: Transform -- uid: 4492 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 37.5,22.5 - parent: 82 - type: Transform -- uid: 4493 - type: AirAlarm - components: - - pos: -25.5,-0.5 - parent: 82 - type: Transform - - devices: - - 13455 - - 13456 - - 13618 - - 13617 - - 13358 - - 13359 - - 4495 - - 3852 - - invalid - - 5606 - - 5607 - - 22615 - - 22392 - - 22393 - - 22516 - - 22517 - - 22518 - - 23297 - - 2120 - type: DeviceList -- uid: 4494 - type: WallReinforced - components: - - pos: -31.5,-1.5 - parent: 82 - type: Transform -- uid: 4495 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: -15.5,-3.5 - parent: 82 - type: Transform -- uid: 4496 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 37.5,31.5 - parent: 82 - type: Transform -- uid: 4497 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 38.5,25.5 - parent: 82 - type: Transform -- uid: 4498 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -59.5,39.5 - parent: 82 - type: Transform -- uid: 4499 - type: WallReinforced - components: - - pos: -8.5,41.5 - parent: 82 - type: Transform -- uid: 4500 - type: WindoorHydroponicsLocked - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-19.5 - parent: 82 - type: Transform -- uid: 4501 - type: WallReinforced - components: - - pos: -32.5,-1.5 - parent: 82 - type: Transform -- uid: 4502 - type: Grille - components: - - pos: -41.5,-1.5 - parent: 82 - type: Transform -- uid: 4503 - type: Grille - components: - - pos: -40.5,-1.5 - parent: 82 - type: Transform -- uid: 4504 - type: Grille - components: - - pos: -39.5,-1.5 - parent: 82 - type: Transform -- uid: 4505 - type: Grille - components: - - pos: -33.5,-1.5 - parent: 82 - type: Transform -- uid: 4506 - type: ReinforcedWindow - components: - - pos: -34.5,-1.5 - parent: 82 - type: Transform -- uid: 4507 - type: Grille - components: - - pos: -35.5,-1.5 - parent: 82 - type: Transform -- uid: 4508 - type: Grille - components: - - pos: -38.5,-1.5 - parent: 82 - type: Transform -- uid: 4509 - type: Grille - components: - - pos: -36.5,-1.5 - parent: 82 - type: Transform -- uid: 4510 - type: WallReinforced - components: - - pos: -37.5,-1.5 - parent: 82 - type: Transform -- uid: 4511 - type: WallReinforced - components: - - pos: -42.5,-1.5 - parent: 82 - type: Transform -- uid: 4512 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -47.5,12.5 - parent: 82 - type: Transform -- uid: 4513 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -56.5,28.5 - parent: 82 - type: Transform -- uid: 4514 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -55.5,28.5 - parent: 82 - type: Transform -- uid: 4515 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -54.5,28.5 - parent: 82 - type: Transform -- uid: 4516 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -52.5,28.5 - parent: 82 - type: Transform -- uid: 4517 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -51.5,28.5 - parent: 82 - type: Transform -- uid: 4518 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -50.5,28.5 - parent: 82 - type: Transform -- uid: 4519 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -56.5,28.5 - parent: 82 - type: Transform -- uid: 4520 - type: SMESBasic - components: - - pos: -23.5,43.5 - parent: 82 - type: Transform -- uid: 4521 - type: WallReinforced - components: - - pos: -14.5,34.5 - parent: 82 - type: Transform -- uid: 4522 - type: AirlockGlass - components: - - pos: -29.5,-5.5 - parent: 82 - type: Transform -- uid: 4523 - type: CableHV - components: - - pos: -28.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4524 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -21.5,46.5 - parent: 82 - type: Transform -- uid: 4525 - type: Poweredlight - components: - - pos: -40.5,31.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4526 - type: SMESBasic - components: - - pos: -23.5,44.5 - parent: 82 - type: Transform -- uid: 4527 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -39.5,25.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4528 - type: SMESBasic - components: - - pos: -27.5,44.5 - parent: 82 - type: Transform -- uid: 4529 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: -22.5,44.5 - parent: 82 - type: Transform -- uid: 4530 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: -28.5,44.5 - parent: 82 - type: Transform -- uid: 4531 - type: Fireplace - components: - - pos: 61.5,-13.5 - parent: 82 - type: Transform -- uid: 4532 - type: CableHV - components: - - pos: -22.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4533 - type: CableHV - components: - - pos: -28.5,45.5 - parent: 82 - type: Transform -- uid: 4534 - type: WallReinforced - components: - - pos: -42.5,53.5 - parent: 82 - type: Transform -- uid: 4535 - type: Dresser - components: - - pos: 62.5,-13.5 - parent: 82 - type: Transform -- uid: 4536 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: -28.5,43.5 - parent: 82 - type: Transform -- uid: 4537 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: -22.5,43.5 - parent: 82 - type: Transform -- uid: 4538 - type: WallReinforced - components: - - pos: -43.5,53.5 - parent: 82 - type: Transform -- uid: 4539 - type: CableHV - components: - - pos: -25.5,41.5 - parent: 82 - type: Transform -- uid: 4540 - type: CableHV - components: - - pos: -25.5,40.5 - parent: 82 - type: Transform -- uid: 4541 - type: CableHV - components: - - pos: -25.5,39.5 - parent: 82 - type: Transform -- uid: 4542 - type: CableHV - components: - - pos: -25.5,38.5 - parent: 82 - type: Transform -- uid: 4543 - type: CableHV - components: - - pos: -24.5,38.5 - parent: 82 - type: Transform -- uid: 4544 - type: CableHV - components: - - pos: -23.5,38.5 - parent: 82 - type: Transform -- uid: 4545 - type: CableHV - components: - - pos: -22.5,38.5 - parent: 82 - type: Transform -- uid: 4546 - type: CableHV - components: - - pos: -21.5,38.5 - parent: 82 - type: Transform -- uid: 4547 - type: CableHV - components: - - pos: -20.5,38.5 - parent: 82 - type: Transform -- uid: 4548 - type: CableHV - components: - - pos: -19.5,38.5 - parent: 82 - type: Transform -- uid: 4549 - type: CableHV - components: - - pos: -19.5,37.5 - parent: 82 - type: Transform -- uid: 4550 - type: CableHV - components: - - pos: -19.5,36.5 - parent: 82 - type: Transform -- uid: 4551 - type: CableHV - components: - - pos: -19.5,35.5 - parent: 82 - type: Transform -- uid: 4552 - type: CableHV - components: - - pos: -19.5,34.5 - parent: 82 - type: Transform -- uid: 4553 - type: CableHV - components: - - pos: -19.5,39.5 - parent: 82 - type: Transform -- uid: 4554 - type: CableHV - components: - - pos: -19.5,40.5 - parent: 82 - type: Transform -- uid: 4555 - type: CableHV - components: - - pos: -18.5,40.5 - parent: 82 - type: Transform -- uid: 4556 - type: CableHV - components: - - pos: -17.5,40.5 - parent: 82 - type: Transform -- uid: 4557 - type: CableHV - components: - - pos: -16.5,40.5 - parent: 82 - type: Transform -- uid: 4558 - type: CableHV - components: - - pos: -15.5,40.5 - parent: 82 - type: Transform -- uid: 4559 - type: CableHV - components: - - pos: -14.5,40.5 - parent: 82 - type: Transform -- uid: 4560 - type: CableHV - components: - - pos: -13.5,40.5 - parent: 82 - type: Transform -- uid: 4561 - type: CableHV - components: - - pos: -19.5,33.5 - parent: 82 - type: Transform -- uid: 4562 - type: CableHV - components: - - pos: -19.5,32.5 - parent: 82 - type: Transform -- uid: 4563 - type: CableHV - components: - - pos: -19.5,31.5 - parent: 82 - type: Transform -- uid: 4564 - type: CableHV - components: - - pos: -20.5,31.5 - parent: 82 - type: Transform -- uid: 4565 - type: CableHV - components: - - pos: -21.5,31.5 - parent: 82 - type: Transform -- uid: 4566 - type: CableHV - components: - - pos: -22.5,31.5 - parent: 82 - type: Transform -- uid: 4567 - type: CableHV - components: - - pos: -23.5,31.5 - parent: 82 - type: Transform -- uid: 4568 - type: CableHV - components: - - pos: -23.5,30.5 - parent: 82 - type: Transform -- uid: 4569 - type: CableHV - components: - - pos: -23.5,29.5 - parent: 82 - type: Transform -- uid: 4570 - type: CableHV - components: - - pos: -23.5,28.5 - parent: 82 - type: Transform -- uid: 4571 - type: CableHV - components: - - pos: -23.5,27.5 - parent: 82 - type: Transform -- uid: 4572 - type: CableHV - components: - - pos: -23.5,26.5 - parent: 82 - type: Transform -- uid: 4573 - type: CableHV - components: - - pos: -23.5,25.5 - parent: 82 - type: Transform -- uid: 4574 - type: CableHV - components: - - pos: -23.5,24.5 - parent: 82 - type: Transform -- uid: 4575 - type: CableHV - components: - - pos: -23.5,23.5 - parent: 82 - type: Transform -- uid: 4576 - type: CableHV - components: - - pos: -23.5,22.5 - parent: 82 - type: Transform -- uid: 4577 - type: CableHV - components: - - pos: -23.5,21.5 - parent: 82 - type: Transform -- uid: 4578 - type: CableHV - components: - - pos: -23.5,20.5 - parent: 82 - type: Transform -- uid: 4579 - type: CableHV - components: - - pos: -23.5,19.5 - parent: 82 - type: Transform -- uid: 4580 - type: CableHV - components: - - pos: -23.5,18.5 - parent: 82 - type: Transform -- uid: 4581 - type: CableHV - components: - - pos: -23.5,17.5 - parent: 82 - type: Transform -- uid: 4582 - type: CableHV - components: - - pos: -23.5,16.5 - parent: 82 - type: Transform -- uid: 4583 - type: CableHV - components: - - pos: -23.5,15.5 - parent: 82 - type: Transform -- uid: 4584 - type: CableHV - components: - - pos: -23.5,14.5 - parent: 82 - type: Transform -- uid: 4585 - type: CableHV - components: - - pos: -23.5,13.5 - parent: 82 - type: Transform -- uid: 4586 - type: CableHV - components: - - pos: -23.5,12.5 - parent: 82 - type: Transform -- uid: 4587 - type: CableHV - components: - - pos: -23.5,11.5 - parent: 82 - type: Transform -- uid: 4588 - type: CableHV - components: - - pos: -23.5,10.5 - parent: 82 - type: Transform -- uid: 4589 - type: CableHV - components: - - pos: -23.5,9.5 - parent: 82 - type: Transform -- uid: 4590 - type: CableHV - components: - - pos: -23.5,8.5 - parent: 82 - type: Transform -- uid: 4591 - type: CableHV - components: - - pos: -23.5,7.5 - parent: 82 - type: Transform -- uid: 4592 - type: CableHV - components: - - pos: -23.5,6.5 - parent: 82 - type: Transform -- uid: 4593 - type: CableHV - components: - - pos: -23.5,5.5 - parent: 82 - type: Transform -- uid: 4594 - type: CableHV - components: - - pos: -23.5,4.5 - parent: 82 - type: Transform -- uid: 4595 - type: CableHV - components: - - pos: -23.5,3.5 - parent: 82 - type: Transform -- uid: 4596 - type: CableHV - components: - - pos: -23.5,2.5 - parent: 82 - type: Transform -- uid: 4597 - type: CableHV - components: - - pos: -23.5,1.5 - parent: 82 - type: Transform -- uid: 4598 - type: CableHV - components: - - pos: -23.5,0.5 - parent: 82 - type: Transform -- uid: 4599 - type: CableHV - components: - - pos: -23.5,-0.5 - parent: 82 - type: Transform -- uid: 4600 - type: CableHV - components: - - pos: -23.5,-1.5 - parent: 82 - type: Transform -- uid: 4601 - type: CableHV - components: - - pos: -23.5,-2.5 - parent: 82 - type: Transform -- uid: 4602 - type: CableHV - components: - - pos: -22.5,-2.5 - parent: 82 - type: Transform -- uid: 4603 - type: CableHV - components: - - pos: -21.5,-2.5 - parent: 82 - type: Transform -- uid: 4604 - type: CableHV - components: - - pos: -20.5,-2.5 - parent: 82 - type: Transform -- uid: 4605 - type: CableHV - components: - - pos: -19.5,-2.5 - parent: 82 - type: Transform -- uid: 4606 - type: CableHV - components: - - pos: -18.5,-2.5 - parent: 82 - type: Transform -- uid: 4607 - type: CableHV - components: - - pos: -17.5,-2.5 - parent: 82 - type: Transform -- uid: 4608 - type: CableHV - components: - - pos: -16.5,-2.5 - parent: 82 - type: Transform -- uid: 4609 - type: CableHV - components: - - pos: -15.5,-2.5 - parent: 82 - type: Transform -- uid: 4610 - type: CableHV - components: - - pos: -14.5,-2.5 - parent: 82 - type: Transform -- uid: 4611 - type: CableHV - components: - - pos: -13.5,-2.5 - parent: 82 - type: Transform -- uid: 4612 - type: CableHV - components: - - pos: -12.5,-2.5 - parent: 82 - type: Transform -- uid: 4613 - type: CableHV - components: - - pos: -11.5,-2.5 - parent: 82 - type: Transform -- uid: 4614 - type: CableHV - components: - - pos: -10.5,-2.5 - parent: 82 - type: Transform -- uid: 4615 - type: CableHV - components: - - pos: -9.5,-2.5 - parent: 82 - type: Transform -- uid: 4616 - type: CableHV - components: - - pos: -8.5,-2.5 - parent: 82 - type: Transform -- uid: 4617 - type: CableHV - components: - - pos: -7.5,-2.5 - parent: 82 - type: Transform -- uid: 4618 - type: CableHV - components: - - pos: -6.5,-2.5 - parent: 82 - type: Transform -- uid: 4619 - type: CableHV - components: - - pos: -5.5,-2.5 - parent: 82 - type: Transform -- uid: 4620 - type: CableHV - components: - - pos: -4.5,-2.5 - parent: 82 - type: Transform -- uid: 4621 - type: CableHV - components: - - pos: -3.5,-2.5 - parent: 82 - type: Transform -- uid: 4622 - type: CableHV - components: - - pos: -2.5,-2.5 - parent: 82 - type: Transform -- uid: 4623 - type: CableHV - components: - - pos: -1.5,-2.5 - parent: 82 - type: Transform -- uid: 4624 - type: CableHV - components: - - pos: -0.5,-2.5 - parent: 82 - type: Transform -- uid: 4625 - type: CableHV - components: - - pos: 0.5,-2.5 - parent: 82 - type: Transform -- uid: 4626 - type: CableHV - components: - - pos: 1.5,-2.5 - parent: 82 - type: Transform -- uid: 4627 - type: CableHV - components: - - pos: 2.5,-2.5 - parent: 82 - type: Transform -- uid: 4628 - type: CableHV - components: - - pos: 3.5,-2.5 - parent: 82 - type: Transform -- uid: 4629 - type: CableHV - components: - - pos: 4.5,-2.5 - parent: 82 - type: Transform -- uid: 4630 - type: CableHV - components: - - pos: 5.5,-2.5 - parent: 82 - type: Transform -- uid: 4631 - type: CableHV - components: - - pos: 6.5,-2.5 - parent: 82 - type: Transform -- uid: 4632 - type: CableHV - components: - - pos: 7.5,-2.5 - parent: 82 - type: Transform -- uid: 4633 - type: CableHV - components: - - pos: -5.5,-35.5 - parent: 82 - type: Transform -- uid: 4634 - type: CableHV - components: - - pos: -5.5,-36.5 - parent: 82 - type: Transform -- uid: 4635 - type: CableHV - components: - - pos: -5.5,-37.5 - parent: 82 - type: Transform -- uid: 4636 - type: CableHV - components: - - pos: -5.5,-38.5 - parent: 82 - type: Transform -- uid: 4637 - type: CableHV - components: - - pos: -5.5,-39.5 - parent: 82 - type: Transform -- uid: 4638 - type: CableHV - components: - - pos: -5.5,-40.5 - parent: 82 - type: Transform -- uid: 4639 - type: CableHV - components: - - pos: -5.5,-41.5 - parent: 82 - type: Transform -- uid: 4640 - type: CableHV - components: - - pos: -5.5,-42.5 - parent: 82 - type: Transform -- uid: 4641 - type: CableHV - components: - - pos: -5.5,-43.5 - parent: 82 - type: Transform -- uid: 4642 - type: CableHV - components: - - pos: -5.5,-44.5 - parent: 82 - type: Transform -- uid: 4643 - type: CableHV - components: - - pos: -5.5,-45.5 - parent: 82 - type: Transform -- uid: 4644 - type: CableHV - components: - - pos: -5.5,-46.5 - parent: 82 - type: Transform -- uid: 4645 - type: CableHV - components: - - pos: -5.5,-47.5 - parent: 82 - type: Transform -- uid: 4646 - type: CableHV - components: - - pos: -5.5,-48.5 - parent: 82 - type: Transform -- uid: 4647 - type: CableHV - components: - - pos: -5.5,-49.5 - parent: 82 - type: Transform -- uid: 4648 - type: CableHV - components: - - pos: -5.5,-50.5 - parent: 82 - type: Transform -- uid: 4649 - type: CableHV - components: - - pos: -5.5,-51.5 - parent: 82 - type: Transform -- uid: 4650 - type: CableHV - components: - - pos: -5.5,-3.5 - parent: 82 - type: Transform -- uid: 4651 - type: CableHV - components: - - pos: -5.5,-4.5 - parent: 82 - type: Transform -- uid: 4652 - type: CableHV - components: - - pos: -5.5,-5.5 - parent: 82 - type: Transform -- uid: 4653 - type: CableHV - components: - - pos: -5.5,-6.5 - parent: 82 - type: Transform -- uid: 4654 - type: CableHV - components: - - pos: -5.5,-7.5 - parent: 82 - type: Transform -- uid: 4655 - type: CableHV - components: - - pos: -5.5,-8.5 - parent: 82 - type: Transform -- uid: 4656 - type: CableHV - components: - - pos: -5.5,-9.5 - parent: 82 - type: Transform -- uid: 4657 - type: CableHV - components: - - pos: -5.5,-10.5 - parent: 82 - type: Transform -- uid: 4658 - type: CableHV - components: - - pos: -5.5,-11.5 - parent: 82 - type: Transform -- uid: 4659 - type: CableHV - components: - - pos: -5.5,-12.5 - parent: 82 - type: Transform -- uid: 4660 - type: CableHV - components: - - pos: -5.5,-13.5 - parent: 82 - type: Transform -- uid: 4661 - type: CableHV - components: - - pos: -5.5,-14.5 - parent: 82 - type: Transform -- uid: 4662 - type: CableHV - components: - - pos: -5.5,-15.5 - parent: 82 - type: Transform -- uid: 4663 - type: CableHV - components: - - pos: -5.5,-16.5 - parent: 82 - type: Transform -- uid: 4664 - type: CableHV - components: - - pos: -5.5,-17.5 - parent: 82 - type: Transform -- uid: 4665 - type: CableHV - components: - - pos: -5.5,-18.5 - parent: 82 - type: Transform -- uid: 4666 - type: CableHV - components: - - pos: -5.5,-19.5 - parent: 82 - type: Transform -- uid: 4667 - type: CableHV - components: - - pos: -5.5,-20.5 - parent: 82 - type: Transform -- uid: 4668 - type: CableHV - components: - - pos: -5.5,-21.5 - parent: 82 - type: Transform -- uid: 4669 - type: CableHV - components: - - pos: -5.5,-22.5 - parent: 82 - type: Transform -- uid: 4670 - type: CableHV - components: - - pos: -5.5,-23.5 - parent: 82 - type: Transform -- uid: 4671 - type: CableHV - components: - - pos: -5.5,-24.5 - parent: 82 - type: Transform -- uid: 4672 - type: CableHV - components: - - pos: -5.5,-25.5 - parent: 82 - type: Transform -- uid: 4673 - type: CableHV - components: - - pos: -5.5,-26.5 - parent: 82 - type: Transform -- uid: 4674 - type: CableHV - components: - - pos: -5.5,-27.5 - parent: 82 - type: Transform -- uid: 4675 - type: CableHV - components: - - pos: -5.5,-28.5 - parent: 82 - type: Transform -- uid: 4676 - type: CableHV - components: - - pos: -5.5,-29.5 - parent: 82 - type: Transform -- uid: 4677 - type: CableHV - components: - - pos: -5.5,-30.5 - parent: 82 - type: Transform -- uid: 4678 - type: CableHV - components: - - pos: -5.5,-31.5 - parent: 82 - type: Transform -- uid: 4679 - type: CableHV - components: - - pos: -5.5,-32.5 - parent: 82 - type: Transform -- uid: 4680 - type: CableHV - components: - - pos: -5.5,-33.5 - parent: 82 - type: Transform -- uid: 4681 - type: CableHV - components: - - pos: -5.5,-34.5 - parent: 82 - type: Transform -- uid: 4682 - type: CableHV - components: - - pos: 8.5,-2.5 - parent: 82 - type: Transform -- uid: 4683 - type: CableHV - components: - - pos: 9.5,-2.5 - parent: 82 - type: Transform -- uid: 4684 - type: CableHV - components: - - pos: 10.5,-2.5 - parent: 82 - type: Transform -- uid: 4685 - type: CableHV - components: - - pos: 11.5,-2.5 - parent: 82 - type: Transform -- uid: 4686 - type: CableHV - components: - - pos: 12.5,-2.5 - parent: 82 - type: Transform -- uid: 4687 - type: CableHV - components: - - pos: 13.5,-2.5 - parent: 82 - type: Transform -- uid: 4688 - type: CableHV - components: - - pos: 14.5,-2.5 - parent: 82 - type: Transform -- uid: 4689 - type: CableHV - components: - - pos: 15.5,-2.5 - parent: 82 - type: Transform -- uid: 4690 - type: CableHV - components: - - pos: 16.5,-2.5 - parent: 82 - type: Transform -- uid: 4691 - type: CableHV - components: - - pos: 17.5,-2.5 - parent: 82 - type: Transform -- uid: 4692 - type: CableHV - components: - - pos: 18.5,-2.5 - parent: 82 - type: Transform -- uid: 4693 - type: CableHV - components: - - pos: 19.5,-2.5 - parent: 82 - type: Transform -- uid: 4694 - type: CableHV - components: - - pos: 20.5,-2.5 - parent: 82 - type: Transform -- uid: 4695 - type: CableHV - components: - - pos: 21.5,-2.5 - parent: 82 - type: Transform -- uid: 4696 - type: CableHV - components: - - pos: 22.5,-2.5 - parent: 82 - type: Transform -- uid: 4697 - type: CableHV - components: - - pos: 23.5,-2.5 - parent: 82 - type: Transform -- uid: 4698 - type: CableHV - components: - - pos: 24.5,-2.5 - parent: 82 - type: Transform -- uid: 4699 - type: CableHV - components: - - pos: 25.5,-2.5 - parent: 82 - type: Transform -- uid: 4700 - type: CableHV - components: - - pos: 26.5,-2.5 - parent: 82 - type: Transform -- uid: 4701 - type: CableHV - components: - - pos: 27.5,-2.5 - parent: 82 - type: Transform -- uid: 4702 - type: CableHV - components: - - pos: 27.5,-2.5 - parent: 82 - type: Transform -- uid: 4703 - type: CableHV - components: - - pos: 27.5,-1.5 - parent: 82 - type: Transform -- uid: 4704 - type: CableHV - components: - - pos: 27.5,-0.5 - parent: 82 - type: Transform -- uid: 4705 - type: CableHV - components: - - pos: 27.5,0.5 - parent: 82 - type: Transform -- uid: 4706 - type: CableHV - components: - - pos: 27.5,1.5 - parent: 82 - type: Transform -- uid: 4707 - type: CableHV - components: - - pos: 27.5,2.5 - parent: 82 - type: Transform -- uid: 4708 - type: CableHV - components: - - pos: 27.5,3.5 - parent: 82 - type: Transform -- uid: 4709 - type: CableHV - components: - - pos: 27.5,4.5 - parent: 82 - type: Transform -- uid: 4710 - type: CableHV - components: - - pos: 28.5,4.5 - parent: 82 - type: Transform -- uid: 4711 - type: CableHV - components: - - pos: 29.5,4.5 - parent: 82 - type: Transform -- uid: 4712 - type: CableHV - components: - - pos: 30.5,4.5 - parent: 82 - type: Transform -- uid: 4713 - type: CableHV - components: - - pos: 31.5,4.5 - parent: 82 - type: Transform -- uid: 4714 - type: CableHV - components: - - pos: 31.5,4.5 - parent: 82 - type: Transform -- uid: 4715 - type: CableHV - components: - - pos: 31.5,5.5 - parent: 82 - type: Transform -- uid: 4716 - type: CableHV - components: - - pos: 31.5,6.5 - parent: 82 - type: Transform -- uid: 4717 - type: CableHV - components: - - pos: 31.5,7.5 - parent: 82 - type: Transform -- uid: 4718 - type: CableHV - components: - - pos: 31.5,8.5 - parent: 82 - type: Transform -- uid: 4719 - type: CableHV - components: - - pos: 31.5,9.5 - parent: 82 - type: Transform -- uid: 4720 - type: CableHV - components: - - pos: 31.5,10.5 - parent: 82 - type: Transform -- uid: 4721 - type: CableHV - components: - - pos: 31.5,11.5 - parent: 82 - type: Transform -- uid: 4722 - type: CableHV - components: - - pos: 31.5,12.5 - parent: 82 - type: Transform -- uid: 4723 - type: CableHV - components: - - pos: 31.5,13.5 - parent: 82 - type: Transform -- uid: 4724 - type: CableHV - components: - - pos: 31.5,14.5 - parent: 82 - type: Transform -- uid: 4725 - type: CableHV - components: - - pos: 31.5,15.5 - parent: 82 - type: Transform -- uid: 4726 - type: CableHV - components: - - pos: 31.5,16.5 - parent: 82 - type: Transform -- uid: 4727 - type: CableHV - components: - - pos: 31.5,17.5 - parent: 82 - type: Transform -- uid: 4728 - type: CableHV - components: - - pos: 31.5,18.5 - parent: 82 - type: Transform -- uid: 4729 - type: CableHV - components: - - pos: 31.5,19.5 - parent: 82 - type: Transform -- uid: 4730 - type: CableHV - components: - - pos: 31.5,20.5 - parent: 82 - type: Transform -- uid: 4731 - type: CableHV - components: - - pos: 31.5,21.5 - parent: 82 - type: Transform -- uid: 4732 - type: CableHV - components: - - pos: 31.5,22.5 - parent: 82 - type: Transform -- uid: 4733 - type: CableHV - components: - - pos: 31.5,23.5 - parent: 82 - type: Transform -- uid: 4734 - type: CableHV - components: - - pos: 31.5,24.5 - parent: 82 - type: Transform -- uid: 4735 - type: CableHV - components: - - pos: 31.5,25.5 - parent: 82 - type: Transform -- uid: 4736 - type: CableHV - components: - - pos: 31.5,26.5 - parent: 82 - type: Transform -- uid: 4737 - type: CableHV - components: - - pos: 31.5,27.5 - parent: 82 - type: Transform -- uid: 4738 - type: CableHV - components: - - pos: 31.5,28.5 - parent: 82 - type: Transform -- uid: 4739 - type: CableHV - components: - - pos: 31.5,29.5 - parent: 82 - type: Transform -- uid: 4740 - type: CableHV - components: - - pos: 31.5,30.5 - parent: 82 - type: Transform -- uid: 4741 - type: CableHV - components: - - pos: 31.5,31.5 - parent: 82 - type: Transform -- uid: 4742 - type: CableHV - components: - - pos: 31.5,32.5 - parent: 82 - type: Transform -- uid: 4743 - type: CableHV - components: - - pos: 31.5,33.5 - parent: 82 - type: Transform -- uid: 4744 - type: CableHV - components: - - pos: 31.5,34.5 - parent: 82 - type: Transform -- uid: 4745 - type: CableHV - components: - - pos: 31.5,35.5 - parent: 82 - type: Transform -- uid: 4746 - type: CableHV - components: - - pos: 31.5,36.5 - parent: 82 - type: Transform -- uid: 4747 - type: CableHV - components: - - pos: 31.5,37.5 - parent: 82 - type: Transform -- uid: 4748 - type: CableHV - components: - - pos: 31.5,38.5 - parent: 82 - type: Transform -- uid: 4749 - type: CableHV - components: - - pos: 31.5,39.5 - parent: 82 - type: Transform -- uid: 4750 - type: CableHV - components: - - pos: 31.5,40.5 - parent: 82 - type: Transform -- uid: 4751 - type: CableHV - components: - - pos: 31.5,41.5 - parent: 82 - type: Transform -- uid: 4752 - type: CableHV - components: - - pos: 31.5,42.5 - parent: 82 - type: Transform -- uid: 4753 - type: CableHV - components: - - pos: 31.5,43.5 - parent: 82 - type: Transform -- uid: 4754 - type: CableHV - components: - - pos: 31.5,44.5 - parent: 82 - type: Transform -- uid: 4755 - type: CableHV - components: - - pos: 31.5,45.5 - parent: 82 - type: Transform -- uid: 4756 - type: CableHV - components: - - pos: 31.5,46.5 - parent: 82 - type: Transform -- uid: 4757 - type: CableHV - components: - - pos: 31.5,47.5 - parent: 82 - type: Transform -- uid: 4758 - type: CableHV - components: - - pos: 31.5,48.5 - parent: 82 - type: Transform -- uid: 4759 - type: CableHV - components: - - pos: 31.5,49.5 - parent: 82 - type: Transform -- uid: 4760 - type: CableHV - components: - - pos: 31.5,50.5 - parent: 82 - type: Transform -- uid: 4761 - type: CableHV - components: - - pos: 31.5,51.5 - parent: 82 - type: Transform -- uid: 4762 - type: CableHV - components: - - pos: 30.5,51.5 - parent: 82 - type: Transform -- uid: 4763 - type: CableHV - components: - - pos: 29.5,51.5 - parent: 82 - type: Transform -- uid: 4764 - type: CableHV - components: - - pos: 28.5,51.5 - parent: 82 - type: Transform -- uid: 4765 - type: CableHV - components: - - pos: 27.5,51.5 - parent: 82 - type: Transform -- uid: 4766 - type: CableHV - components: - - pos: 26.5,51.5 - parent: 82 - type: Transform -- uid: 4767 - type: CableHV - components: - - pos: 25.5,51.5 - parent: 82 - type: Transform -- uid: 4768 - type: CableHV - components: - - pos: 24.5,51.5 - parent: 82 - type: Transform -- uid: 4769 - type: CableHV - components: - - pos: 23.5,51.5 - parent: 82 - type: Transform -- uid: 4770 - type: CableHV - components: - - pos: 22.5,51.5 - parent: 82 - type: Transform -- uid: 4771 - type: CableHV - components: - - pos: 21.5,51.5 - parent: 82 - type: Transform -- uid: 4772 - type: CableHV - components: - - pos: 20.5,51.5 - parent: 82 - type: Transform -- uid: 4773 - type: CableHV - components: - - pos: 19.5,51.5 - parent: 82 - type: Transform -- uid: 4774 - type: CableHV - components: - - pos: 18.5,51.5 - parent: 82 - type: Transform -- uid: 4775 - type: CableHV - components: - - pos: 17.5,51.5 - parent: 82 - type: Transform -- uid: 4776 - type: CableHV - components: - - pos: 16.5,51.5 - parent: 82 - type: Transform -- uid: 4777 - type: CableHV - components: - - pos: 15.5,51.5 - parent: 82 - type: Transform -- uid: 4778 - type: CableHV - components: - - pos: 14.5,51.5 - parent: 82 - type: Transform -- uid: 4779 - type: CableHV - components: - - pos: 13.5,51.5 - parent: 82 - type: Transform -- uid: 4780 - type: CableHV - components: - - pos: 12.5,51.5 - parent: 82 - type: Transform -- uid: 4781 - type: CableHV - components: - - pos: 11.5,51.5 - parent: 82 - type: Transform -- uid: 4782 - type: CableHV - components: - - pos: 30.5,30.5 - parent: 82 - type: Transform -- uid: 4783 - type: CableHV - components: - - pos: 29.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4784 - type: CableHV - components: - - pos: 28.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4785 - type: CableHV - components: - - pos: 27.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4786 - type: CableHV - components: - - pos: 26.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4787 - type: CableHV - components: - - pos: 25.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4788 - type: CableHV - components: - - pos: 24.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4789 - type: CableHV - components: - - pos: 23.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4790 - type: CableHV - components: - - pos: 22.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4791 - type: CableHV - components: - - pos: 21.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4792 - type: CableHV - components: - - pos: 20.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4793 - type: CableHV - components: - - pos: 19.5,30.5 - parent: 82 - type: Transform -- uid: 4794 - type: CableHV - components: - - pos: 18.5,30.5 - parent: 82 - type: Transform -- uid: 4795 - type: CableHV - components: - - pos: 18.5,31.5 - parent: 82 - type: Transform -- uid: 4796 - type: CableHV - components: - - pos: 17.5,31.5 - parent: 82 - type: Transform -- uid: 4797 - type: CableHV - components: - - pos: 16.5,31.5 - parent: 82 - type: Transform -- uid: 4798 - type: CableHV - components: - - pos: 15.5,31.5 - parent: 82 - type: Transform -- uid: 4799 - type: CableHV - components: - - pos: 14.5,31.5 - parent: 82 - type: Transform -- uid: 4800 - type: CableHV - components: - - pos: 13.5,31.5 - parent: 82 - type: Transform -- uid: 4801 - type: CableHV - components: - - pos: 12.5,31.5 - parent: 82 - type: Transform -- uid: 4802 - type: CableHV - components: - - pos: 11.5,31.5 - parent: 82 - type: Transform -- uid: 4803 - type: CableHV - components: - - pos: 10.5,31.5 - parent: 82 - type: Transform -- uid: 4804 - type: CableHV - components: - - pos: 9.5,31.5 - parent: 82 - type: Transform -- uid: 4805 - type: CableHV - components: - - pos: 8.5,31.5 - parent: 82 - type: Transform -- uid: 4806 - type: CableHV - components: - - pos: 7.5,31.5 - parent: 82 - type: Transform -- uid: 4807 - type: CableHV - components: - - pos: 6.5,31.5 - parent: 82 - type: Transform -- uid: 4808 - type: CableHV - components: - - pos: 5.5,31.5 - parent: 82 - type: Transform -- uid: 4809 - type: CableHV - components: - - pos: 4.5,31.5 - parent: 82 - type: Transform -- uid: 4810 - type: CableHV - components: - - pos: 3.5,31.5 - parent: 82 - type: Transform -- uid: 4811 - type: CableHV - components: - - pos: 2.5,31.5 - parent: 82 - type: Transform -- uid: 4812 - type: CableHV - components: - - pos: 1.5,31.5 - parent: 82 - type: Transform -- uid: 4813 - type: CableHV - components: - - pos: 0.5,31.5 - parent: 82 - type: Transform -- uid: 4814 - type: CableHV - components: - - pos: -0.5,31.5 - parent: 82 - type: Transform -- uid: 4815 - type: CableHV - components: - - pos: -1.5,31.5 - parent: 82 - type: Transform -- uid: 4816 - type: CableHV - components: - - pos: -2.5,31.5 - parent: 82 - type: Transform -- uid: 4817 - type: CableHV - components: - - pos: -3.5,31.5 - parent: 82 - type: Transform -- uid: 4818 - type: CableHV - components: - - pos: -4.5,31.5 - parent: 82 - type: Transform -- uid: 4819 - type: CableHV - components: - - pos: -5.5,31.5 - parent: 82 - type: Transform -- uid: 4820 - type: CableHV - components: - - pos: -6.5,31.5 - parent: 82 - type: Transform -- uid: 4821 - type: CableHV - components: - - pos: -7.5,31.5 - parent: 82 - type: Transform -- uid: 4822 - type: CableHV - components: - - pos: -8.5,31.5 - parent: 82 - type: Transform -- uid: 4823 - type: CableHV - components: - - pos: -9.5,31.5 - parent: 82 - type: Transform -- uid: 4824 - type: CableHV - components: - - pos: -10.5,31.5 - parent: 82 - type: Transform -- uid: 4825 - type: CableHV - components: - - pos: -11.5,31.5 - parent: 82 - type: Transform -- uid: 4826 - type: CableHV - components: - - pos: -12.5,31.5 - parent: 82 - type: Transform -- uid: 4827 - type: CableHV - components: - - pos: -13.5,31.5 - parent: 82 - type: Transform -- uid: 4828 - type: CableHV - components: - - pos: -14.5,31.5 - parent: 82 - type: Transform -- uid: 4829 - type: CableHV - components: - - pos: -15.5,31.5 - parent: 82 - type: Transform -- uid: 4830 - type: CableHV - components: - - pos: -16.5,31.5 - parent: 82 - type: Transform -- uid: 4831 - type: CableHV - components: - - pos: -17.5,31.5 - parent: 82 - type: Transform -- uid: 4832 - type: CableHV - components: - - pos: -18.5,31.5 - parent: 82 - type: Transform -- uid: 4833 - type: CableHV - components: - - pos: -5.5,30.5 - parent: 82 - type: Transform -- uid: 4834 - type: CableHV - components: - - pos: -5.5,29.5 - parent: 82 - type: Transform -- uid: 4835 - type: CableHV - components: - - pos: -5.5,28.5 - parent: 82 - type: Transform -- uid: 4836 - type: CableHV - components: - - pos: -5.5,27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4837 - type: CableHV - components: - - pos: -5.5,26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4838 - type: CableHV - components: - - pos: -5.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4839 - type: CableHV - components: - - pos: -5.5,24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4840 - type: CableHV - components: - - pos: -5.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4841 - type: CableHV - components: - - pos: -5.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4842 - type: CableHV - components: - - pos: -5.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4843 - type: CableHV - components: - - pos: -5.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4844 - type: CableHV - components: - - pos: -5.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4845 - type: CableHV - components: - - pos: -6.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4846 - type: CableHV - components: - - pos: -7.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4847 - type: CableHV - components: - - pos: -8.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4848 - type: CableHV - components: - - pos: -8.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4849 - type: CableHV - components: - - pos: -8.5,17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4850 - type: CableHV - components: - - pos: -8.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4851 - type: CableHV - components: - - pos: -8.5,15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4852 - type: CableHV - components: - - pos: -8.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4853 - type: CableHV - components: - - pos: -8.5,13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4854 - type: CableHV - components: - - pos: -8.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4855 - type: CableHV - components: - - pos: -9.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4856 - type: CableHV - components: - - pos: -10.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4857 - type: CableHV - components: - - pos: -10.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4858 - type: CableHV - components: - - pos: -10.5,10.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4859 - type: CableHV - components: - - pos: -10.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4860 - type: CableHV - components: - - pos: -10.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4861 - type: CableHV - components: - - pos: -10.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4862 - type: CableHV - components: - - pos: -10.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4863 - type: CableHV - components: - - pos: -10.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4864 - type: CableHV - components: - - pos: -10.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4865 - type: CableHV - components: - - pos: -11.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4866 - type: CableHV - components: - - pos: -12.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4867 - type: CableHV - components: - - pos: -13.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4868 - type: CableHV - components: - - pos: -14.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4869 - type: CableHV - components: - - pos: -15.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4870 - type: CableHV - components: - - pos: -16.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4871 - type: CableHV - components: - - pos: -16.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4872 - type: CableHV - components: - - pos: -16.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4873 - type: CableHV - components: - - pos: -16.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4874 - type: CableHV - components: - - pos: -16.5,0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4875 - type: CableHV - components: - - pos: -16.5,-0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4876 - type: CableHV - components: - - pos: -15.5,-0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4877 - type: CableHV - components: - - pos: -14.5,-0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4878 - type: CableHV - components: - - pos: -14.5,-1.5 - parent: 82 - type: Transform -- uid: 4879 - type: CableHV - components: - - pos: -6.5,-13.5 - parent: 82 - type: Transform -- uid: 4880 - type: CableHV - components: - - pos: -7.5,-13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4881 - type: CableHV - components: - - pos: -8.5,-13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4882 - type: CableHV - components: - - pos: -9.5,-13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4883 - type: CableHV - components: - - pos: -10.5,-13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4884 - type: CableHV - components: - - pos: -11.5,-13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4885 - type: CableHV - components: - - pos: -12.5,-13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4886 - type: CableHV - components: - - pos: -13.5,-13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4887 - type: CableHV - components: - - pos: -14.5,-13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4888 - type: CableHV - components: - - pos: -14.5,-14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4889 - type: CableHV - components: - - pos: -14.5,-15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4890 - type: CableHV - components: - - pos: -14.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4891 - type: CableHV - components: - - pos: -14.5,-17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4892 - type: CableHV - components: - - pos: -14.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4893 - type: CableHV - components: - - pos: -14.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4894 - type: CableHV - components: - - pos: -13.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4895 - type: CableHV - components: - - pos: -12.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4896 - type: CableHV - components: - - pos: -11.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4897 - type: CableHV - components: - - pos: -10.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4898 - type: CableHV - components: - - pos: -10.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4899 - type: CableHV - components: - - pos: -10.5,-21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4900 - type: AirlockGlass - components: - - pos: -19.5,-5.5 - parent: 82 - type: Transform -- uid: 4901 - type: Grille - components: - - pos: -18.5,-5.5 - parent: 82 - type: Transform -- uid: 4902 - type: Grille - components: - - pos: -21.5,-5.5 - parent: 82 - type: Transform -- uid: 4903 - type: MaterialCloth - components: - - pos: -8.655991,2.6881032 - parent: 82 - type: Transform -- uid: 4904 - type: CableHV - components: - - pos: -6.5,-45.5 - parent: 82 - type: Transform -- uid: 4905 - type: CableHV - components: - - pos: -13.5,-15.5 - parent: 82 - type: Transform -- uid: 4906 - type: CableHV - components: - - pos: -12.5,-15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4907 - type: CableHV - components: - - pos: -7.5,-45.5 - parent: 82 - type: Transform -- uid: 4908 - type: CableHV - components: - - pos: -8.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4909 - type: CableHV - components: - - pos: -9.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4910 - type: CableHV - components: - - pos: -10.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4911 - type: CableHV - components: - - pos: -11.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4912 - type: CableHV - components: - - pos: -12.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4913 - type: CableHV - components: - - pos: -13.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4914 - type: CableHV - components: - - pos: -14.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4915 - type: CableHV - components: - - pos: -15.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4916 - type: CableHV - components: - - pos: -16.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4917 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-24.5 - parent: 82 - type: Transform -- uid: 4918 - type: WallReinforced - components: - - pos: -51.5,-16.5 - parent: 82 - type: Transform -- uid: 4919 - type: CableMV - components: - - pos: -23.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4920 - type: WallReinforced - components: - - pos: -53.5,-16.5 - parent: 82 - type: Transform -- uid: 4921 - type: CableMV - components: - - pos: -15.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4922 - type: CableHV - components: - - pos: -22.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4923 - type: CableHV - components: - - pos: -22.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4924 - type: CableHV - components: - - pos: -23.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4925 - type: CableHV - components: - - pos: -24.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4926 - type: CableHV - components: - - pos: -25.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4927 - type: CableHV - components: - - pos: -26.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4928 - type: CableHV - components: - - pos: -27.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4929 - type: CableHV - components: - - pos: -27.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4930 - type: CableHV - components: - - pos: -27.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4931 - type: CableHV - components: - - pos: -28.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4932 - type: CableHV - components: - - pos: -29.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4933 - type: CableHV - components: - - pos: -30.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4934 - type: CableHV - components: - - pos: -31.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4935 - type: CableHV - components: - - pos: -32.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4936 - type: CableHV - components: - - pos: -33.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4937 - type: CableHV - components: - - pos: -34.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4938 - type: CableHV - components: - - pos: -35.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4939 - type: CableHV - components: - - pos: -36.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4940 - type: CableHV - components: - - pos: -37.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4941 - type: CableHV - components: - - pos: -38.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4942 - type: CableHV - components: - - pos: -39.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4943 - type: CableHV - components: - - pos: -40.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4944 - type: CableHV - components: - - pos: -41.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4945 - type: CableHV - components: - - pos: -42.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4946 - type: CableHV - components: - - pos: -43.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4947 - type: CableHV - components: - - pos: -44.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4948 - type: CableHV - components: - - pos: -45.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4949 - type: CableHV - components: - - pos: -46.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4950 - type: CableHV - components: - - pos: -47.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4951 - type: CableHV - components: - - pos: -48.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4952 - type: CableHV - components: - - pos: -49.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4953 - type: CableHV - components: - - pos: -50.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4954 - type: CableHV - components: - - pos: -51.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4955 - type: CableHV - components: - - pos: -52.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4956 - type: CableHV - components: - - pos: -53.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4957 - type: CableHV - components: - - pos: -54.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4958 - type: CableHV - components: - - pos: -54.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4959 - type: CableHV - components: - - pos: -54.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4960 - type: CableHV - components: - - pos: -54.5,-43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4961 - type: CableHV - components: - - pos: -54.5,-42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4962 - type: CableHV - components: - - pos: -54.5,-41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4963 - type: CableHV - components: - - pos: -54.5,-40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4964 - type: CableHV - components: - - pos: -54.5,-39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4965 - type: CableHV - components: - - pos: -54.5,-38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4966 - type: CableHV - components: - - pos: -54.5,-37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4967 - type: CableHV - components: - - pos: -54.5,-36.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4968 - type: CableHV - components: - - pos: -54.5,-35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4969 - type: CableHV - components: - - pos: -54.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4970 - type: CableHV - components: - - pos: -55.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4971 - type: CableHV - components: - - pos: -56.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4972 - type: CableHV - components: - - pos: -57.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4973 - type: CableHV - components: - - pos: -4.5,-51.5 - parent: 82 - type: Transform -- uid: 4974 - type: CableHV - components: - - pos: -3.5,-51.5 - parent: 82 - type: Transform -- uid: 4975 - type: CableHV - components: - - pos: -2.5,-51.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4976 - type: CableHV - components: - - pos: -2.5,-50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4977 - type: CableHV - components: - - pos: -2.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4978 - type: CableHV - components: - - pos: -1.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4979 - type: CableHV - components: - - pos: -0.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4980 - type: CableHV - components: - - pos: 0.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4981 - type: CableHV - components: - - pos: 1.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4982 - type: CableHV - components: - - pos: 2.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4983 - type: CableHV - components: - - pos: 3.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4984 - type: CableHV - components: - - pos: 4.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4985 - type: CableHV - components: - - pos: 5.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4986 - type: CableHV - components: - - pos: 6.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4987 - type: WallReinforced - components: - - pos: -64.5,-27.5 - parent: 82 - type: Transform -- uid: 4988 - type: WallReinforced - components: - - pos: -61.5,-31.5 - parent: 82 - type: Transform -- uid: 4989 - type: WallReinforced - components: - - pos: -61.5,-30.5 - parent: 82 - type: Transform -- uid: 4990 - type: WallReinforced - components: - - pos: -61.5,-29.5 - parent: 82 - type: Transform -- uid: 4991 - type: WallReinforced - components: - - pos: -61.5,-28.5 - parent: 82 - type: Transform -- uid: 4992 - type: WallReinforced - components: - - pos: -61.5,-27.5 - parent: 82 - type: Transform -- uid: 4993 - type: WallReinforced - components: - - pos: -62.5,-27.5 - parent: 82 - type: Transform -- uid: 4994 - type: WallReinforced - components: - - pos: -63.5,-27.5 - parent: 82 - type: Transform -- uid: 4995 - type: CableHV - components: - - pos: 6.5,-48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4996 - type: CableHV - components: - - pos: 6.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4997 - type: CableHV - components: - - pos: 7.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4998 - type: CableHV - components: - - pos: 8.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4999 - type: CableHV - components: - - pos: 9.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5000 - type: CableHV - components: - - pos: 10.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5001 - type: CableHV - components: - - pos: 11.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5002 - type: CableHV - components: - - pos: 12.5,-47.5 - parent: 82 - type: Transform -- uid: 5003 - type: CableHV - components: - - pos: 32.5,4.5 - parent: 82 - type: Transform -- uid: 5004 - type: CableHV - components: - - pos: 33.5,4.5 - parent: 82 - type: Transform -- uid: 5005 - type: CableHV - components: - - pos: 34.5,4.5 - parent: 82 - type: Transform -- uid: 5006 - type: CableHV - components: - - pos: 35.5,4.5 - parent: 82 - type: Transform -- uid: 5007 - type: CableHV - components: - - pos: 36.5,4.5 - parent: 82 - type: Transform -- uid: 5008 - type: CableHV - components: - - pos: 37.5,4.5 - parent: 82 - type: Transform -- uid: 5009 - type: CableHV - components: - - pos: 38.5,4.5 - parent: 82 - type: Transform -- uid: 5010 - type: CableHV - components: - - pos: 39.5,4.5 - parent: 82 - type: Transform -- uid: 5011 - type: CableHV - components: - - pos: 40.5,4.5 - parent: 82 - type: Transform -- uid: 5012 - type: CableHV - components: - - pos: 41.5,4.5 - parent: 82 - type: Transform -- uid: 5013 - type: CableHV - components: - - pos: 42.5,4.5 - parent: 82 - type: Transform -- uid: 5014 - type: CableHV - components: - - pos: 43.5,4.5 - parent: 82 - type: Transform -- uid: 5015 - type: CableHV - components: - - pos: 44.5,4.5 - parent: 82 - type: Transform -- uid: 5016 - type: CableHV - components: - - pos: 45.5,4.5 - parent: 82 - type: Transform -- uid: 5017 - type: CableHV - components: - - pos: 46.5,4.5 - parent: 82 - type: Transform -- uid: 5018 - type: CableHV - components: - - pos: 47.5,4.5 - parent: 82 - type: Transform -- uid: 5019 - type: CableHV - components: - - pos: 48.5,4.5 - parent: 82 - type: Transform -- uid: 5020 - type: CableHV - components: - - pos: 49.5,4.5 - parent: 82 - type: Transform -- uid: 5021 - type: CableHV - components: - - pos: 50.5,4.5 - parent: 82 - type: Transform -- uid: 5022 - type: CableHV - components: - - pos: 51.5,4.5 - parent: 82 - type: Transform -- uid: 5023 - type: CableHV - components: - - pos: 52.5,4.5 - parent: 82 - type: Transform -- uid: 5024 - type: CableHV - components: - - pos: 53.5,4.5 - parent: 82 - type: Transform -- uid: 5025 - type: CableHV - components: - - pos: 54.5,4.5 - parent: 82 - type: Transform -- uid: 5026 - type: CableHV - components: - - pos: 55.5,4.5 - parent: 82 - type: Transform -- uid: 5027 - type: CableHV - components: - - pos: 56.5,4.5 - parent: 82 - type: Transform -- uid: 5028 - type: CableHV - components: - - pos: 57.5,4.5 - parent: 82 - type: Transform -- uid: 5029 - type: CableHV - components: - - pos: 58.5,4.5 - parent: 82 - type: Transform -- uid: 5030 - type: CableHV - components: - - pos: 59.5,4.5 - parent: 82 - type: Transform -- uid: 5031 - type: CableHV - components: - - pos: 60.5,4.5 - parent: 82 - type: Transform -- uid: 5032 - type: CableHV - components: - - pos: 54.5,5.5 - parent: 82 - type: Transform -- uid: 5033 - type: CableHV - components: - - pos: 54.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5034 - type: CableHV - components: - - pos: 54.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5035 - type: CableHV - components: - - pos: 54.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5036 - type: CableHV - components: - - pos: 54.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5037 - type: CableHV - components: - - pos: 53.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5038 - type: CableHV - components: - - pos: 52.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5039 - type: CableHV - components: - - pos: 51.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5040 - type: CableHV - components: - - pos: 50.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5041 - type: CableHV - components: - - pos: 49.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5042 - type: CableHV - components: - - pos: 48.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5043 - type: CableHV - components: - - pos: 47.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5044 - type: CableHV - components: - - pos: 46.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5045 - type: CableHV - components: - - pos: 45.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5046 - type: CableHV - components: - - pos: 44.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5047 - type: CableHV - components: - - pos: 43.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5048 - type: CableHV - components: - - pos: 42.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5049 - type: CableHV - components: - - pos: 41.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5050 - type: CableHV - components: - - pos: 41.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5051 - type: CableHV - components: - - pos: 40.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5052 - type: CableHV - components: - - pos: 39.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5053 - type: CableHV - components: - - pos: 38.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5054 - type: CableHV - components: - - pos: 37.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5055 - type: CableHV - components: - - pos: 36.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5056 - type: CableHV - components: - - pos: 35.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5057 - type: CableHV - components: - - pos: 35.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5058 - type: CableHV - components: - - pos: 34.5,7.5 - parent: 82 - type: Transform -- uid: 5059 - type: CableHV - components: - - pos: 33.5,7.5 - parent: 82 - type: Transform -- uid: 5060 - type: CableHV - components: - - pos: 32.5,7.5 - parent: 82 - type: Transform -- uid: 5061 - type: CableHV - components: - - pos: 27.5,-3.5 - parent: 82 - type: Transform -- uid: 5062 - type: CableHV - components: - - pos: 27.5,-4.5 - parent: 82 - type: Transform -- uid: 5063 - type: CableHV - components: - - pos: 28.5,-4.5 - parent: 82 - type: Transform -- uid: 5064 - type: CableHV - components: - - pos: 29.5,-4.5 - parent: 82 - type: Transform -- uid: 5065 - type: CableHV - components: - - pos: 30.5,-4.5 - parent: 82 - type: Transform -- uid: 5066 - type: CableHV - components: - - pos: 31.5,-4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5067 - type: CableHV - components: - - pos: 31.5,-5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5068 - type: CableHV - components: - - pos: 31.5,-6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5069 - type: CableHV - components: - - pos: 31.5,-7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5070 - type: CableHV - components: - - pos: 31.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5071 - type: CableHV - components: - - pos: 31.5,-9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5072 - type: CableHV - components: - - pos: 31.5,-10.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5073 - type: CableHV - components: - - pos: 31.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5074 - type: CableHV - components: - - pos: 30.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5075 - type: CableHV - components: - - pos: 29.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5076 - type: CableHV - components: - - pos: 28.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5077 - type: CableHV - components: - - pos: 27.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5078 - type: CableHV - components: - - pos: 26.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5079 - type: CableHV - components: - - pos: 25.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5080 - type: CableHV - components: - - pos: 24.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5081 - type: CableHV - components: - - pos: 23.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5082 - type: CableHV - components: - - pos: 22.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5083 - type: CableHV - components: - - pos: 22.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5084 - type: CableHV - components: - - pos: 21.5,-12.5 - parent: 82 - type: Transform -- uid: 5085 - type: CableHV - components: - - pos: 20.5,-12.5 - parent: 82 - type: Transform -- uid: 5086 - type: CableHV - components: - - pos: 19.5,-12.5 - parent: 82 - type: Transform -- uid: 5087 - type: CableHV - components: - - pos: 18.5,-12.5 - parent: 82 - type: Transform -- uid: 5088 - type: CableHV - components: - - pos: 18.5,-3.5 - parent: 82 - type: Transform -- uid: 5089 - type: CableHV - components: - - pos: 18.5,-4.5 - parent: 82 - type: Transform -- uid: 5090 - type: CableHV - components: - - pos: 18.5,-5.5 - parent: 82 - type: Transform -- uid: 5091 - type: CableHV - components: - - pos: 18.5,-6.5 - parent: 82 - type: Transform -- uid: 5092 - type: CableHV - components: - - pos: 18.5,-7.5 - parent: 82 - type: Transform -- uid: 5093 - type: CableHV - components: - - pos: 18.5,-8.5 - parent: 82 - type: Transform -- uid: 5094 - type: CableHV - components: - - pos: 18.5,-9.5 - parent: 82 - type: Transform -- uid: 5095 - type: CableHV - components: - - pos: 18.5,-10.5 - parent: 82 - type: Transform -- uid: 5096 - type: CableHV - components: - - pos: 18.5,-11.5 - parent: 82 - type: Transform -- uid: 5097 - type: CableHV - components: - - pos: 18.5,-12.5 - parent: 82 - type: Transform -- uid: 5098 - type: CableHV - components: - - pos: 18.5,-13.5 - parent: 82 - type: Transform -- uid: 5099 - type: CableHV - components: - - pos: 18.5,-14.5 - parent: 82 - type: Transform -- uid: 5100 - type: CableHV - components: - - pos: 18.5,-15.5 - parent: 82 - type: Transform -- uid: 5101 - type: CableHV - components: - - pos: 18.5,-16.5 - parent: 82 - type: Transform -- uid: 5102 - type: CableHV - components: - - pos: 18.5,-17.5 - parent: 82 - type: Transform -- uid: 5103 - type: CableHV - components: - - pos: 18.5,-18.5 - parent: 82 - type: Transform -- uid: 5104 - type: CableHV - components: - - pos: 18.5,-19.5 - parent: 82 - type: Transform -- uid: 5105 - type: CableHV - components: - - pos: 18.5,-20.5 - parent: 82 - type: Transform -- uid: 5106 - type: CableHV - components: - - pos: 18.5,-21.5 - parent: 82 - type: Transform -- uid: 5107 - type: CableHV - components: - - pos: 18.5,-22.5 - parent: 82 - type: Transform -- uid: 5108 - type: CableHV - components: - - pos: 18.5,-23.5 - parent: 82 - type: Transform -- uid: 5109 - type: CableHV - components: - - pos: 17.5,-23.5 - parent: 82 - type: Transform -- uid: 5110 - type: CableHV - components: - - pos: 16.5,-23.5 - parent: 82 - type: Transform -- uid: 5111 - type: CableHV - components: - - pos: 15.5,-23.5 - parent: 82 - type: Transform -- uid: 5112 - type: CableHV - components: - - pos: 14.5,-23.5 - parent: 82 - type: Transform -- uid: 5113 - type: CableHV - components: - - pos: 13.5,-23.5 - parent: 82 - type: Transform -- uid: 5114 - type: CableHV - components: - - pos: 12.5,-23.5 - parent: 82 - type: Transform -- uid: 5115 - type: CableHV - components: - - pos: 11.5,-23.5 - parent: 82 - type: Transform -- uid: 5116 - type: CableHV - components: - - pos: 10.5,-23.5 - parent: 82 - type: Transform -- uid: 5117 - type: CableHV - components: - - pos: 9.5,-23.5 - parent: 82 - type: Transform -- uid: 5118 - type: CableHV - components: - - pos: 8.5,-23.5 - parent: 82 - type: Transform -- uid: 5119 - type: CableHV - components: - - pos: 7.5,-23.5 - parent: 82 - type: Transform -- uid: 5120 - type: CableHV - components: - - pos: 6.5,-23.5 - parent: 82 - type: Transform -- uid: 5121 - type: CableHV - components: - - pos: 5.5,-23.5 - parent: 82 - type: Transform -- uid: 5122 - type: CableHV - components: - - pos: 4.5,-23.5 - parent: 82 - type: Transform -- uid: 5123 - type: CableHV - components: - - pos: 3.5,-23.5 - parent: 82 - type: Transform -- uid: 5124 - type: CableHV - components: - - pos: 2.5,-23.5 - parent: 82 - type: Transform -- uid: 5125 - type: CableHV - components: - - pos: 1.5,-23.5 - parent: 82 - type: Transform -- uid: 5126 - type: CableHV - components: - - pos: 0.5,-23.5 - parent: 82 - type: Transform -- uid: 5127 - type: CableHV - components: - - pos: -0.5,-23.5 - parent: 82 - type: Transform -- uid: 5128 - type: CableHV - components: - - pos: -1.5,-23.5 - parent: 82 - type: Transform -- uid: 5129 - type: CableHV - components: - - pos: -2.5,-23.5 - parent: 82 - type: Transform -- uid: 5130 - type: CableHV - components: - - pos: -3.5,-23.5 - parent: 82 - type: Transform -- uid: 5131 - type: CableHV - components: - - pos: -4.5,-23.5 - parent: 82 - type: Transform -- uid: 5132 - type: CableHV - components: - - pos: 19.5,-23.5 - parent: 82 - type: Transform -- uid: 5133 - type: CableHV - components: - - pos: 19.5,-24.5 - parent: 82 - type: Transform -- uid: 5134 - type: CableHV - components: - - pos: 19.5,-25.5 - parent: 82 - type: Transform -- uid: 5135 - type: CableHV - components: - - pos: 19.5,-26.5 - parent: 82 - type: Transform -- uid: 5136 - type: CableHV - components: - - pos: 19.5,-27.5 - parent: 82 - type: Transform -- uid: 5137 - type: CableHV - components: - - pos: 19.5,-28.5 - parent: 82 - type: Transform -- uid: 5138 - type: CableHV - components: - - pos: 19.5,-29.5 - parent: 82 - type: Transform -- uid: 5139 - type: CableHV - components: - - pos: 19.5,-30.5 - parent: 82 - type: Transform -- uid: 5140 - type: CableHV - components: - - pos: 19.5,-31.5 - parent: 82 - type: Transform -- uid: 5141 - type: CableHV - components: - - pos: 19.5,-32.5 - parent: 82 - type: Transform -- uid: 5142 - type: CableHV - components: - - pos: 19.5,-33.5 - parent: 82 - type: Transform -- uid: 5143 - type: CableHV - components: - - pos: 32.5,46.5 - parent: 82 - type: Transform -- uid: 5144 - type: CableHV - components: - - pos: 33.5,46.5 - parent: 82 - type: Transform -- uid: 5145 - type: CableHV - components: - - pos: 34.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5146 - type: CableHV - components: - - pos: 35.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5147 - type: CableHV - components: - - pos: 36.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5148 - type: CableHV - components: - - pos: 37.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5149 - type: CableHV - components: - - pos: 38.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5150 - type: CableHV - components: - - pos: 39.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5151 - type: CableHV - components: - - pos: 39.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5152 - type: CableHV - components: - - pos: 39.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5153 - type: CableHV - components: - - pos: 39.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5154 - type: CableHV - components: - - pos: 39.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5155 - type: CableHV - components: - - pos: 39.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5156 - type: CableHV - components: - - pos: 39.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5157 - type: CableHV - components: - - pos: 39.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5158 - type: CableHV - components: - - pos: 39.5,38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5159 - type: CableHV - components: - - pos: 39.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5160 - type: CableHV - components: - - pos: 40.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5161 - type: CableHV - components: - - pos: 41.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5162 - type: CableHV - components: - - pos: 42.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5163 - type: CableHV - components: - - pos: 43.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5164 - type: CableHV - components: - - pos: 44.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5165 - type: CableHV - components: - - pos: 45.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5166 - type: CableHV - components: - - pos: 46.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5167 - type: CableHV - components: - - pos: 47.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5168 - type: CableHV - components: - - pos: 47.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5169 - type: CableHV - components: - - pos: 47.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5170 - type: CableHV - components: - - pos: 47.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5171 - type: CableHV - components: - - pos: 47.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5172 - type: CableHV - components: - - pos: 47.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5173 - type: CableHV - components: - - pos: 47.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5174 - type: CableHV - components: - - pos: 47.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5175 - type: CableHV - components: - - pos: 47.5,47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5176 - type: CableHV - components: - - pos: 11.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5177 - type: CableHV - components: - - pos: 11.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5178 - type: CableHV - components: - - pos: 11.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5179 - type: CableHV - components: - - pos: 11.5,-43.5 - parent: 82 - type: Transform -- uid: 5180 - type: CableHV - components: - - pos: 11.5,-42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5181 - type: CableHV - components: - - pos: 11.5,-41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5182 - type: CableHV - components: - - pos: 12.5,-41.5 - parent: 82 - type: Transform -- uid: 5183 - type: CableHV - components: - - pos: 13.5,-41.5 - parent: 82 - type: Transform -- uid: 5184 - type: ReinforcedWindow - components: - - pos: -48.5,55.5 - parent: 82 - type: Transform -- uid: 5185 - type: CrowbarRed - components: - - pos: 55.591724,-2.4452503 - parent: 82 - type: Transform -- uid: 5186 - type: CrowbarRed - components: - - pos: 61.09163,-8.47197 - parent: 82 - type: Transform -- uid: 5187 - type: WallReinforced - components: - - pos: 58.5,7.5 - parent: 82 - type: Transform -- uid: 5188 - type: WallReinforced - components: - - pos: 58.5,6.5 - parent: 82 - type: Transform -- uid: 5189 - type: WallSolid - components: - - pos: 55.5,5.5 - parent: 82 - type: Transform -- uid: 5190 - type: WallSolid - components: - - pos: 56.5,5.5 - parent: 82 - type: Transform -- uid: 5191 - type: KitchenReagentGrinder - components: - - pos: 48.5,-41.5 - parent: 82 - type: Transform -- uid: 5192 - type: Bed - components: - - pos: 45.5,-49.5 - parent: 82 - type: Transform -- uid: 5193 - type: Bed - components: - - pos: 49.5,-49.5 - parent: 82 - type: Transform -- uid: 5194 - type: Bed - components: - - pos: 53.5,-49.5 - parent: 82 - type: Transform -- uid: 5195 - type: Bed - components: - - pos: 44.5,-43.5 - parent: 82 - type: Transform -- uid: 5196 - type: BedsheetSyndie - components: - - pos: 44.5,-43.5 - parent: 82 - type: Transform -- uid: 5197 - type: BedsheetSpawner - components: - - pos: 45.5,-49.5 - parent: 82 - type: Transform -- uid: 5198 - type: BedsheetSpawner - components: - - pos: 49.5,-49.5 - parent: 82 - type: Transform -- uid: 5199 - type: BedsheetSpawner - components: - - pos: 53.5,-49.5 - parent: 82 - type: Transform -- uid: 5200 - type: CableHV - components: - - pos: 55.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5201 - type: CableHV - components: - - pos: 56.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5202 - type: CableHV - components: - - pos: 57.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5203 - type: CableHV - components: - - pos: 57.5,6.5 - parent: 82 - type: Transform -- uid: 5204 - type: CableHV - components: - - pos: 26.5,3.5 - parent: 82 - type: Transform -- uid: 5205 - type: CableHV - components: - - pos: 25.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5206 - type: CableHV - components: - - pos: 24.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5207 - type: CableHV - components: - - pos: 23.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5208 - type: CableHV - components: - - pos: 22.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5209 - type: CableHV - components: - - pos: 21.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5210 - type: CableHV - components: - - pos: 20.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5211 - type: CableHV - components: - - pos: 19.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5212 - type: CableHV - components: - - pos: 19.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5213 - type: CableHV - components: - - pos: 19.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5214 - type: CableHV - components: - - pos: 19.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5215 - type: CableHV - components: - - pos: 19.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5216 - type: CableHV - components: - - pos: 19.5,0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5217 - type: CableHV - components: - - pos: 19.5,-0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5218 - type: CableHV - components: - - pos: 19.5,-1.5 - parent: 82 - type: Transform -- uid: 5219 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -26.5,46.5 - parent: 82 - type: Transform -- uid: 5220 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,46.5 - parent: 82 - type: Transform -- uid: 5221 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -28.5,46.5 - parent: 82 - type: Transform -- uid: 5222 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -29.5,43.5 - parent: 82 - type: Transform -- uid: 5223 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -29.5,44.5 - parent: 82 - type: Transform -- uid: 5224 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -29.5,45.5 - parent: 82 - type: Transform -- uid: 5225 - type: CableHV - components: - - pos: -25.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5226 - type: CableHV - components: - - pos: -23.5,44.5 - parent: 82 - type: Transform -- uid: 5227 - type: CableHV - components: - - pos: -20.5,44.5 - parent: 82 - type: Transform -- uid: 5228 - type: CableHV - components: - - pos: -21.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5229 - type: CableHV - components: - - pos: -22.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5230 - type: CableHV - components: - - pos: -22.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5231 - type: CableHV - components: - - pos: -28.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5232 - type: CableHV - components: - - pos: -16.5,39.5 - parent: 82 - type: Transform -- uid: 5233 - type: CableHV - components: - - pos: -16.5,38.5 - parent: 82 - type: Transform -- uid: 5234 - type: CableHV - components: - - pos: -16.5,37.5 - parent: 82 - type: Transform -- uid: 5235 - type: ComputerAlert - components: - - rot: -1.5707963267948966 rad - pos: -14.5,35.5 - parent: 82 - type: Transform -- uid: 5236 - type: CableHV - components: - - pos: -26.5,44.5 - parent: 82 - type: Transform -- uid: 5237 - type: CableHV - components: - - pos: -27.5,43.5 - parent: 82 - type: Transform -- uid: 5238 - type: CableHV - components: - - pos: -24.5,44.5 - parent: 82 - type: Transform -- uid: 5239 - type: CableHV - components: - - pos: -23.5,43.5 - parent: 82 - type: Transform -- uid: 5240 - type: CableHV - components: - - pos: -28.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5241 - type: CableHV - components: - - pos: -27.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5242 - type: CableHV - components: - - pos: -26.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5243 - type: CableHV - components: - - pos: -25.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5244 - type: CableHV - components: - - pos: -24.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5245 - type: CableHV - components: - - pos: -23.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5246 - type: CableHV - components: - - pos: -25.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5247 - type: CableHV - components: - - pos: -18.5,44.5 - parent: 82 - type: Transform -- uid: 5248 - type: CableHV - components: - - pos: -16.5,44.5 - parent: 82 - type: Transform -- uid: 5249 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -21.5,45.5 - parent: 82 - type: Transform -- uid: 5250 - type: CableHV - components: - - pos: -19.5,44.5 - parent: 82 - type: Transform -- uid: 5251 - type: CableHV - components: - - pos: -17.5,44.5 - parent: 82 - type: Transform -- uid: 5252 - type: CableHV - components: - - pos: -15.5,44.5 - parent: 82 - type: Transform -- uid: 5253 - type: CableHV - components: - - pos: -24.5,43.5 - parent: 82 - type: Transform -- uid: 5254 - type: CableHV - components: - - pos: -26.5,43.5 - parent: 82 - type: Transform -- uid: 5255 - type: CableHV - components: - - pos: -27.5,44.5 - parent: 82 - type: Transform -- uid: 5256 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -44.5,9.5 - parent: 82 - type: Transform -- uid: 5257 - type: TintedWindow - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-19.5 - parent: 82 - type: Transform -- uid: 5258 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -49.5,15.5 - parent: 82 - type: Transform -- uid: 5259 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -49.5,16.5 - parent: 82 - type: Transform -- uid: 5260 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -49.5,17.5 - parent: 82 - type: Transform -- uid: 5261 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -50.5,5.5 - parent: 82 - type: Transform -- uid: 5262 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -50.5,6.5 - parent: 82 - type: Transform -- uid: 5263 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -50.5,7.5 - parent: 82 - type: Transform -- uid: 5264 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -45.5,9.5 - parent: 82 - type: Transform -- uid: 5265 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -21.5,44.5 - parent: 82 - type: Transform -- uid: 5266 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -21.5,43.5 - parent: 82 - type: Transform -- uid: 5267 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -25.5,46.5 - parent: 82 - type: Transform -- uid: 5268 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -24.5,46.5 - parent: 82 - type: Transform -- uid: 5269 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -23.5,46.5 - parent: 82 - type: Transform -- uid: 5270 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -22.5,46.5 - parent: 82 - type: Transform -- uid: 5271 - type: SignBiohazardMed - components: - - pos: -39.5,-25.5 - parent: 82 - type: Transform -- uid: 5272 - type: AirlockMaintLocked - components: - - pos: -54.5,52.5 - parent: 82 - type: Transform -- uid: 5273 - type: AirlockGlass - components: - - pos: -20.5,-5.5 - parent: 82 - type: Transform -- uid: 5274 - type: TableReinforced - components: - - pos: -31.5,-29.5 - parent: 82 - type: Transform -- uid: 5275 - type: TableReinforced - components: - - pos: -32.5,-29.5 - parent: 82 - type: Transform -- uid: 5276 - type: TableReinforced - components: - - pos: -28.5,-25.5 - parent: 82 - type: Transform -- uid: 5277 - type: WallReinforced - components: - - pos: -1.5,-21.5 - parent: 82 - type: Transform -- uid: 5278 - type: AirlockGlass - components: - - pos: 18.5,-34.5 - parent: 82 - type: Transform -- uid: 5279 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -33.5,68.5 - parent: 82 - type: Transform -- uid: 5280 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -22.5,84.5 - parent: 82 - type: Transform -- uid: 5281 - type: ClosetToolFilled - components: - - pos: -29.5,0.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5282 - type: WallReinforced - components: - - pos: 34.5,-4.5 - parent: 82 - type: Transform -- uid: 5283 - type: WallReinforced - components: - - pos: 34.5,-5.5 - parent: 82 - type: Transform -- uid: 5284 - type: WallReinforced - components: - - pos: 33.5,-5.5 - parent: 82 - type: Transform -- uid: 5285 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -16.5,42.5 - parent: 82 - type: Transform -- uid: 5286 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -15.5,42.5 - parent: 82 - type: Transform -- uid: 5287 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -14.5,42.5 - parent: 82 - type: Transform -- uid: 5288 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -11.5,42.5 - parent: 82 - type: Transform -- uid: 5289 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -10.5,42.5 - parent: 82 - type: Transform -- uid: 5290 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -9.5,42.5 - parent: 82 - type: Transform -- uid: 5291 - type: CableHV - components: - - pos: -25.5,37.5 - parent: 82 - type: Transform -- uid: 5292 - type: CableHV - components: - - pos: -26.5,37.5 - parent: 82 - type: Transform -- uid: 5293 - type: CableHV - components: - - pos: -27.5,37.5 - parent: 82 - type: Transform -- uid: 5294 - type: CableHV - components: - - pos: -28.5,37.5 - parent: 82 - type: Transform -- uid: 5295 - type: CableHV - components: - - pos: -29.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5296 - type: CableHV - components: - - pos: -12.5,40.5 - parent: 82 - type: Transform -- uid: 5297 - type: CableHV - components: - - pos: -11.5,40.5 - parent: 82 - type: Transform -- uid: 5298 - type: CableHV - components: - - pos: -10.5,40.5 - parent: 82 - type: Transform -- uid: 5299 - type: CableHV - components: - - pos: -9.5,40.5 - parent: 82 - type: Transform -- uid: 5300 - type: CableHV - components: - - pos: -9.5,39.5 - parent: 82 - type: Transform -- uid: 5301 - type: CableHV - components: - - pos: -8.5,39.5 - parent: 82 - type: Transform -- uid: 5302 - type: CableHV - components: - - pos: -8.5,38.5 - parent: 82 - type: Transform -- uid: 5303 - type: Window - components: - - pos: -13.5,-27.5 - parent: 82 - type: Transform -- uid: 5304 - type: Window - components: - - pos: -12.5,-27.5 - parent: 82 - type: Transform -- uid: 5305 - type: TableWood - components: - - pos: -12.5,-28.5 - parent: 82 - type: Transform -- uid: 5306 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -16.5,46.5 - parent: 82 - type: Transform -- uid: 5307 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -15.5,46.5 - parent: 82 - type: Transform -- uid: 5308 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -14.5,46.5 - parent: 82 - type: Transform -- uid: 5309 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -11.5,46.5 - parent: 82 - type: Transform -- uid: 5310 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -10.5,46.5 - parent: 82 - type: Transform -- uid: 5311 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -9.5,46.5 - parent: 82 - type: Transform -- uid: 5312 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -17.5,47.5 - parent: 82 - type: Transform -- uid: 5313 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -17.5,48.5 - parent: 82 - type: Transform -- uid: 5314 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -17.5,49.5 - parent: 82 - type: Transform -- uid: 5315 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -27.5,46.5 - parent: 82 - type: Transform -- uid: 5316 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -28.5,46.5 - parent: 82 - type: Transform -- uid: 5317 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -21.5,51.5 - parent: 82 - type: Transform -- uid: 5318 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -22.5,51.5 - parent: 82 - type: Transform -- uid: 5319 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -23.5,51.5 - parent: 82 - type: Transform -- uid: 5320 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -24.5,51.5 - parent: 82 - type: Transform -- uid: 5321 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -25.5,51.5 - parent: 82 - type: Transform -- uid: 5322 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -26.5,51.5 - parent: 82 - type: Transform -- uid: 5323 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -27.5,51.5 - parent: 82 - type: Transform -- uid: 5324 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -28.5,51.5 - parent: 82 - type: Transform -- uid: 5325 - type: WallReinforced - components: - - pos: 32.5,-5.5 - parent: 82 - type: Transform -- uid: 5326 - type: WallReinforced - components: - - pos: 32.5,-8.5 - parent: 82 - type: Transform -- uid: 5327 - type: WallReinforced - components: - - pos: 32.5,-7.5 - parent: 82 - type: Transform -- uid: 5328 - type: WallReinforced - components: - - pos: 32.5,-6.5 - parent: 82 - type: Transform -- uid: 5329 - type: WallReinforced - components: - - pos: 33.5,-11.5 - parent: 82 - type: Transform -- uid: 5330 - type: WallReinforced - components: - - pos: 33.5,-10.5 - parent: 82 - type: Transform -- uid: 5331 - type: WallReinforced - components: - - pos: 33.5,-9.5 - parent: 82 - type: Transform -- uid: 5332 - type: WallReinforced - components: - - pos: 33.5,-8.5 - parent: 82 - type: Transform -- uid: 5333 - type: WallReinforced - components: - - pos: 33.5,-13.5 - parent: 82 - type: Transform -- uid: 5334 - type: WallReinforced - components: - - pos: 34.5,-13.5 - parent: 82 - type: Transform -- uid: 5335 - type: WallReinforced - components: - - pos: 34.5,-15.5 - parent: 82 - type: Transform -- uid: 5336 - type: WallReinforced - components: - - pos: -7.5,52.5 - parent: 82 - type: Transform -- uid: 5337 - type: WallReinforced - components: - - pos: -6.5,52.5 - parent: 82 - type: Transform -- uid: 5338 - type: WallReinforced - components: - - pos: -5.5,52.5 - parent: 82 - type: Transform -- uid: 5339 - type: WallReinforced - components: - - pos: -4.5,52.5 - parent: 82 - type: Transform -- uid: 5340 - type: WallReinforced - components: - - pos: -3.5,52.5 - parent: 82 - type: Transform -- uid: 5341 - type: WallReinforced - components: - - pos: -2.5,52.5 - parent: 82 - type: Transform -- uid: 5342 - type: Grille - components: - - pos: 2.5,52.5 - parent: 82 - type: Transform -- uid: 5343 - type: Grille - components: - - pos: -0.5,53.5 - parent: 82 - type: Transform -- uid: 5344 - type: Grille - components: - - pos: 1.5,53.5 - parent: 82 - type: Transform -- uid: 5345 - type: Grille - components: - - pos: 1.5,52.5 - parent: 82 - type: Transform -- uid: 5346 - type: Grille - components: - - pos: -1.5,52.5 - parent: 82 - type: Transform -- uid: 5347 - type: Grille - components: - - pos: 6.5,52.5 - parent: 82 - type: Transform -- uid: 5348 - type: WallReinforced - components: - - pos: 10.5,53.5 - parent: 82 - type: Transform -- uid: 5349 - type: WallReinforced - components: - - pos: 9.5,52.5 - parent: 82 - type: Transform -- uid: 5350 - type: WallReinforced - components: - - pos: 5.5,52.5 - parent: 82 - type: Transform -- uid: 5351 - type: WallReinforced - components: - - pos: 4.5,52.5 - parent: 82 - type: Transform -- uid: 5352 - type: WallReinforced - components: - - pos: 3.5,52.5 - parent: 82 - type: Transform -- uid: 5353 - type: Grille - components: - - pos: 7.5,52.5 - parent: 82 - type: Transform -- uid: 5354 - type: WallReinforced - components: - - pos: 10.5,52.5 - parent: 82 - type: Transform -- uid: 5355 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 10.5,48.5 - parent: 82 - type: Transform -- uid: 5356 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 9.5,48.5 - parent: 82 - type: Transform -- uid: 5357 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 8.5,48.5 - parent: 82 - type: Transform -- uid: 5358 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 7.5,48.5 - parent: 82 - type: Transform -- uid: 5359 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 6.5,48.5 - parent: 82 - type: Transform -- uid: 5360 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 5.5,48.5 - parent: 82 - type: Transform -- uid: 5361 - type: WallReinforced - components: - - pos: 4.5,48.5 - parent: 82 - type: Transform -- uid: 5362 - type: WallReinforced - components: - - pos: 3.5,48.5 - parent: 82 - type: Transform -- uid: 5363 - type: WallReinforced - components: - - pos: 2.5,48.5 - parent: 82 - type: Transform -- uid: 5364 - type: WallReinforced - components: - - pos: 0.5,48.5 - parent: 82 - type: Transform -- uid: 5365 - type: WallReinforced - components: - - pos: 1.5,48.5 - parent: 82 - type: Transform -- uid: 5366 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -2.5,37.5 - parent: 82 - type: Transform -- uid: 5367 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -2.5,38.5 - parent: 82 - type: Transform -- uid: 5368 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -2.5,39.5 - parent: 82 - type: Transform -- uid: 5369 - type: WallReinforced - components: - - pos: -2.5,40.5 - parent: 82 - type: Transform -- uid: 5370 - type: WallReinforced - components: - - pos: -2.5,41.5 - parent: 82 - type: Transform -- uid: 5371 - type: WallReinforced - components: - - pos: -2.5,42.5 - parent: 82 - type: Transform -- uid: 5372 - type: WallSolid - components: - - pos: 6.5,42.5 - parent: 82 - type: Transform -- uid: 5373 - type: WallReinforced - components: - - pos: -2.5,45.5 - parent: 82 - type: Transform -- uid: 5374 - type: WallReinforced - components: - - pos: -2.5,44.5 - parent: 82 - type: Transform -- uid: 5375 - type: WallReinforced - components: - - pos: -1.5,45.5 - parent: 82 - type: Transform -- uid: 5376 - type: WallReinforced - components: - - pos: -0.5,45.5 - parent: 82 - type: Transform -- uid: 5377 - type: WallReinforced - components: - - pos: 0.5,45.5 - parent: 82 - type: Transform -- uid: 5378 - type: WallReinforced - components: - - pos: 0.5,46.5 - parent: 82 - type: Transform -- uid: 5379 - type: WallReinforced - components: - - pos: 0.5,47.5 - parent: 82 - type: Transform -- uid: 5380 - type: WallReinforced - components: - - pos: 33.5,-12.5 - parent: 82 - type: Transform -- uid: 5381 - type: TableReinforced - components: - - pos: 39.5,-10.5 - parent: 82 - type: Transform -- uid: 5382 - type: TableReinforced - components: - - pos: 41.5,-6.5 - parent: 82 - type: Transform -- uid: 5383 - type: CableMV - components: - - pos: -11.5,-4.5 - parent: 82 - type: Transform -- uid: 5384 - type: CableMV - components: - - pos: -11.5,-5.5 - parent: 82 - type: Transform -- uid: 5385 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -31.5,84.5 - parent: 82 - type: Transform -- uid: 5386 - type: ClosetBombFilled - components: - - pos: 54.5,-0.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5387 - type: WallReinforced - components: - - pos: -14.5,33.5 - parent: 82 - type: Transform -- uid: 5388 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -26.5,46.5 - parent: 82 - type: Transform -- uid: 5389 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -25.5,46.5 - parent: 82 - type: Transform -- uid: 5390 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -24.5,46.5 - parent: 82 - type: Transform -- uid: 5391 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -23.5,46.5 - parent: 82 - type: Transform -- uid: 5392 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -22.5,46.5 - parent: 82 - type: Transform -- uid: 5393 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -21.5,45.5 - parent: 82 - type: Transform -- uid: 5394 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -21.5,44.5 - parent: 82 - type: Transform -- uid: 5395 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -21.5,43.5 - parent: 82 - type: Transform -- uid: 5396 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -29.5,45.5 - parent: 82 - type: Transform -- uid: 5397 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -29.5,44.5 - parent: 82 - type: Transform -- uid: 5398 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -29.5,43.5 - parent: 82 - type: Transform -- uid: 5399 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -17.5,38.5 - parent: 82 - type: Transform -- uid: 5400 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -17.5,37.5 - parent: 82 - type: Transform -- uid: 5401 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -17.5,36.5 - parent: 82 - type: Transform -- uid: 5402 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -16.5,42.5 - parent: 82 - type: Transform -- uid: 5403 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -15.5,42.5 - parent: 82 - type: Transform -- uid: 5404 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -14.5,42.5 - parent: 82 - type: Transform -- uid: 5405 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -11.5,42.5 - parent: 82 - type: Transform -- uid: 5406 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -10.5,42.5 - parent: 82 - type: Transform -- uid: 5407 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -9.5,42.5 - parent: 82 - type: Transform -- uid: 5408 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -16.5,46.5 - parent: 82 - type: Transform -- uid: 5409 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -15.5,46.5 - parent: 82 - type: Transform -- uid: 5410 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -14.5,46.5 - parent: 82 - type: Transform -- uid: 5411 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -11.5,46.5 - parent: 82 - type: Transform -- uid: 5412 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -10.5,46.5 - parent: 82 - type: Transform -- uid: 5413 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -9.5,46.5 - parent: 82 - type: Transform -- uid: 5414 - type: CableHV - components: - - pos: -14.5,44.5 - parent: 82 - type: Transform -- uid: 5415 - type: CableHV - components: - - pos: -13.5,44.5 - parent: 82 - type: Transform -- uid: 5416 - type: CableHV - components: - - pos: -13.5,45.5 - parent: 82 - type: Transform -- uid: 5417 - type: CableHV - components: - - pos: -13.5,46.5 - parent: 82 - type: Transform -- uid: 5418 - type: CableHV - components: - - pos: -13.5,47.5 - parent: 82 - type: Transform -- uid: 5419 - type: CableHV - components: - - pos: -13.5,48.5 - parent: 82 - type: Transform -- uid: 5420 - type: CableHV - components: - - pos: -13.5,49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5421 - type: CableHV - components: - - pos: -13.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5422 - type: CableHV - components: - - pos: -15.5,51.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5423 - type: CableHV - components: - - pos: -14.5,51.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5424 - type: CableHV - components: - - pos: -13.5,51.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5425 - type: CableHV - components: - - pos: -12.5,51.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5426 - type: CableHV - components: - - pos: -11.5,51.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5427 - type: CableHV - components: - - pos: -10.5,51.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5428 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -17.5,50.5 - parent: 82 - type: Transform -- uid: 5429 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -17.5,51.5 - parent: 82 - type: Transform -- uid: 5430 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -17.5,52.5 - parent: 82 - type: Transform -- uid: 5431 - type: DawInstrumentMachineCircuitboard - components: - - pos: -19.032625,-19.430998 - parent: 82 - type: Transform -- uid: 5432 - type: HelicopterInstrument - components: - - pos: 10.857313,-37.59446 - parent: 82 - type: Transform -- uid: 5433 - type: WallReinforced - components: - - pos: -7.5,53.5 - parent: 82 - type: Transform -- uid: 5434 - type: VibraphoneInstrument - components: - - pos: 17.5,-37.5 - parent: 82 - type: Transform -- uid: 5435 - type: WallReinforced - components: - - pos: -7.5,54.5 - parent: 82 - type: Transform -- uid: 5436 - type: WallReinforced - components: - - pos: -17.5,54.5 - parent: 82 - type: Transform -- uid: 5437 - type: WallSolid - components: - - pos: -17.5,53.5 - parent: 82 - type: Transform -- uid: 5438 - type: WallReinforced - components: - - pos: -16.5,54.5 - parent: 82 - type: Transform -- uid: 5439 - type: WallReinforced - components: - - pos: -8.5,54.5 - parent: 82 - type: Transform -- uid: 5440 - type: Grille - components: - - pos: -15.5,54.5 - parent: 82 - type: Transform -- uid: 5441 - type: Grille - components: - - pos: -14.5,54.5 - parent: 82 - type: Transform -- uid: 5442 - type: Grille - components: - - pos: -13.5,54.5 - parent: 82 - type: Transform -- uid: 5443 - type: Grille - components: - - pos: -12.5,54.5 - parent: 82 - type: Transform -- uid: 5444 - type: Grille - components: - - pos: -11.5,54.5 - parent: 82 - type: Transform -- uid: 5445 - type: Grille - components: - - pos: -10.5,54.5 - parent: 82 - type: Transform -- uid: 5446 - type: Grille - components: - - pos: -9.5,54.5 - parent: 82 - type: Transform -- uid: 5447 - type: ReinforcedWindow - components: - - pos: -15.5,54.5 - parent: 82 - type: Transform -- uid: 5448 - type: ReinforcedWindow - components: - - pos: -14.5,54.5 - parent: 82 - type: Transform -- uid: 5449 - type: ReinforcedWindow - components: - - pos: -13.5,54.5 - parent: 82 - type: Transform -- uid: 5450 - type: ReinforcedWindow - components: - - pos: -12.5,54.5 - parent: 82 - type: Transform -- uid: 5451 - type: ReinforcedWindow - components: - - pos: -11.5,54.5 - parent: 82 - type: Transform -- uid: 5452 - type: ReinforcedWindow - components: - - pos: -10.5,54.5 - parent: 82 - type: Transform -- uid: 5453 - type: ReinforcedWindow - components: - - pos: -9.5,54.5 - parent: 82 - type: Transform -- uid: 5454 - type: ParticleAcceleratorEmitterLeftUnfinished - components: - - rot: 3.141592653589793 rad - pos: -24.5,58.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 5455 - type: ParticleAcceleratorEmitterCenterUnfinished - components: - - rot: 3.141592653589793 rad - pos: -25.5,58.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 5456 - type: ParticleAcceleratorEmitterRightUnfinished - components: - - rot: 3.141592653589793 rad - pos: -26.5,58.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 5457 - type: ParticleAcceleratorControlBoxUnfinished - components: - - pos: -24.5,56.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 5458 - type: ParticleAcceleratorEndCapUnfinished - components: - - rot: 3.141592653589793 rad - pos: -25.5,55.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 5459 - type: ParticleAcceleratorFuelChamberUnfinished - components: - - rot: 3.141592653589793 rad - pos: -25.5,56.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 5460 - type: ParticleAcceleratorPowerBoxUnfinished - components: - - rot: 3.141592653589793 rad - pos: -25.5,57.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 5461 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -23.5,60.5 - parent: 82 - type: Transform -- uid: 5462 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -24.5,60.5 - parent: 82 - type: Transform -- uid: 5463 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -25.5,60.5 - parent: 82 - type: Transform -- uid: 5464 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -26.5,60.5 - parent: 82 - type: Transform -- uid: 5465 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -27.5,60.5 - parent: 82 - type: Transform -- uid: 5466 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -23.5,60.5 - parent: 82 - type: Transform -- uid: 5467 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -24.5,60.5 - parent: 82 - type: Transform -- uid: 5468 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -25.5,60.5 - parent: 82 - type: Transform -- uid: 5469 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -26.5,60.5 - parent: 82 - type: Transform -- uid: 5470 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -27.5,60.5 - parent: 82 - type: Transform -- uid: 5471 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -28.5,60.5 - parent: 82 - type: Transform -- uid: 5472 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -28.5,59.5 - parent: 82 - type: Transform -- uid: 5473 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -28.5,58.5 - parent: 82 - type: Transform -- uid: 5474 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -28.5,57.5 - parent: 82 - type: Transform -- uid: 5475 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -29.5,57.5 - parent: 82 - type: Transform -- uid: 5476 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -29.5,56.5 - parent: 82 - type: Transform -- uid: 5477 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -29.5,55.5 - parent: 82 - type: Transform -- uid: 5478 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -29.5,54.5 - parent: 82 - type: Transform -- uid: 5479 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -29.5,53.5 - parent: 82 - type: Transform -- uid: 5480 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -29.5,52.5 - parent: 82 - type: Transform -- uid: 5481 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -22.5,60.5 - parent: 82 - type: Transform -- uid: 5482 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -22.5,59.5 - parent: 82 - type: Transform -- uid: 5483 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -22.5,58.5 - parent: 82 - type: Transform -- uid: 5484 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -22.5,57.5 - parent: 82 - type: Transform -- uid: 5485 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -21.5,57.5 - parent: 82 - type: Transform -- uid: 5486 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -21.5,56.5 - parent: 82 - type: Transform -- uid: 5487 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -21.5,55.5 - parent: 82 - type: Transform -- uid: 5488 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -21.5,52.5 - parent: 82 - type: Transform -- uid: 5489 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -21.5,60.5 - parent: 82 - type: Transform -- uid: 5490 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -18.5,60.5 - parent: 82 - type: Transform -- uid: 5491 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -18.5,57.5 - parent: 82 - type: Transform -- uid: 5492 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -18.5,56.5 - parent: 82 - type: Transform -- uid: 5493 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -18.5,55.5 - parent: 82 - type: Transform -- uid: 5494 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -17.5,55.5 - parent: 82 - type: Transform -- uid: 5495 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -18.5,59.5 - parent: 82 - type: Transform -- uid: 5496 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -18.5,58.5 - parent: 82 - type: Transform -- uid: 5497 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -18.5,59.5 - parent: 82 - type: Transform -- uid: 5498 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -18.5,58.5 - parent: 82 - type: Transform -- uid: 5499 - type: CableHV - components: - - pos: -20.5,45.5 - parent: 82 - type: Transform -- uid: 5500 - type: CableHV - components: - - pos: -20.5,46.5 - parent: 82 - type: Transform -- uid: 5501 - type: CableHV - components: - - pos: -20.5,47.5 - parent: 82 - type: Transform -- uid: 5502 - type: CableHV - components: - - pos: -20.5,48.5 - parent: 82 - type: Transform -- uid: 5503 - type: CableHV - components: - - pos: -20.5,49.5 - parent: 82 - type: Transform -- uid: 5504 - type: CableHV - components: - - pos: -20.5,50.5 - parent: 82 - type: Transform -- uid: 5505 - type: CableHV - components: - - pos: -20.5,51.5 - parent: 82 - type: Transform -- uid: 5506 - type: CableHV - components: - - pos: -20.5,52.5 - parent: 82 - type: Transform -- uid: 5507 - type: CableHV - components: - - pos: -20.5,53.5 - parent: 82 - type: Transform -- uid: 5508 - type: CableHV - components: - - pos: -20.5,54.5 - parent: 82 - type: Transform -- uid: 5509 - type: CableHV - components: - - pos: -21.5,54.5 - parent: 82 - type: Transform -- uid: 5510 - type: CableHV - components: - - pos: -22.5,54.5 - parent: 82 - type: Transform -- uid: 5511 - type: WallReinforced - components: - - pos: -61.5,-22.5 - parent: 82 - type: Transform -- uid: 5512 - type: WallReinforced - components: - - pos: -61.5,-21.5 - parent: 82 - type: Transform -- uid: 5513 - type: WallReinforced - components: - - pos: -60.5,-21.5 - parent: 82 - type: Transform -- uid: 5514 - type: WallReinforced - components: - - pos: -59.5,-21.5 - parent: 82 - type: Transform -- uid: 5515 - type: PottedPlantRandom - components: - - pos: -11.5,-29.5 - parent: 82 - type: Transform -- uid: 5516 - type: ComputerSurveillanceCameraMonitor - components: - - rot: -1.5707963267948966 rad - pos: 36.5,50.5 - parent: 82 - type: Transform -- uid: 5517 - type: CableApcExtension - components: - - pos: -43.5,-35.5 - parent: 82 - type: Transform -- uid: 5518 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -12.5,-29.5 - parent: 82 - type: Transform -- uid: 5519 - type: FirelockGlass - components: - - pos: -29.5,29.5 - parent: 82 - type: Transform -- uid: 5520 - type: Window - components: - - rot: 3.141592653589793 rad - pos: 24.5,-32.5 - parent: 82 - type: Transform -- uid: 5521 - type: FirelockGlass - components: - - pos: 21.5,-26.5 - parent: 82 - type: Transform -- uid: 5522 - type: FirelockGlass - components: - - pos: 20.5,-26.5 - parent: 82 - type: Transform -- uid: 5523 - type: FirelockGlass - components: - - pos: 19.5,-26.5 - parent: 82 - type: Transform -- uid: 5524 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 29.5,-33.5 - parent: 82 - type: Transform -- uid: 5525 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 27.5,-31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5526 - type: Chair - components: - - pos: 29.5,-25.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 5527 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 27.5,-28.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 5528 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-17.5 - parent: 82 - type: Transform -- uid: 5529 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 29.5,-32.5 - parent: 82 - type: Transform -- uid: 5530 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-25.5 - parent: 82 - type: Transform -- uid: 5531 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-26.5 - parent: 82 - type: Transform -- uid: 5532 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-26.5 - parent: 82 - type: Transform -- uid: 5533 - type: ClothingOuterWinterMiner - components: - - pos: 51.56051,42.47173 - parent: 82 - type: Transform -- uid: 5534 - type: ClothingShoesBootsPerformer - components: - - pos: -17.417383,-19.535236 - parent: 82 - type: Transform -- uid: 5535 - type: WallReinforced - components: - - pos: -47.5,-12.5 - parent: 82 - type: Transform -- uid: 5536 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -32.5,84.5 - parent: 82 - type: Transform -- uid: 5537 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -14.5,84.5 - parent: 82 - type: Transform -- uid: 5538 - type: Grille - components: - - pos: -50.5,-12.5 - parent: 82 - type: Transform -- uid: 5539 - type: Grille - components: - - pos: -51.5,-12.5 - parent: 82 - type: Transform -- uid: 5540 - type: CableHV - components: - - pos: -33.5,72.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5541 - type: WallReinforced - components: - - pos: -45.5,-17.5 - parent: 82 - type: Transform -- uid: 5542 - type: WallReinforced - components: - - pos: -46.5,-17.5 - parent: 82 - type: Transform -- uid: 5543 - type: WallReinforced - components: - - pos: -47.5,-17.5 - parent: 82 - type: Transform -- uid: 5544 - type: WallReinforced - components: - - pos: -48.5,-17.5 - parent: 82 - type: Transform -- uid: 5545 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-12.5 - parent: 82 - type: Transform -- uid: 5546 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-14.5 - parent: 82 - type: Transform -- uid: 5547 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-15.5 - parent: 82 - type: Transform -- uid: 5548 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-11.5 - parent: 82 - type: Transform -- uid: 5549 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-10.5 - parent: 82 - type: Transform -- uid: 5550 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-9.5 - parent: 82 - type: Transform -- uid: 5551 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-10.5 - parent: 82 - type: Transform -- uid: 5552 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: -50.5,-6.5 - parent: 82 - type: Transform -- uid: 5553 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -51.5,-6.5 - parent: 82 - type: Transform -- uid: 5554 - type: BookRandom - components: - - pos: -12.623812,25.607292 - parent: 82 - type: Transform -- uid: 5555 - type: Grille - components: - - pos: 84.5,-5.5 - parent: 82 - type: Transform -- uid: 5556 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -53.5,-10.5 - parent: 82 - type: Transform -- uid: 5557 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-6.5 - parent: 82 - type: Transform -- uid: 5558 - type: BookRandom - components: - - pos: 29.642609,-6.448577 - parent: 82 - type: Transform -- uid: 5559 - type: BookRandom - components: - - pos: 17.690247,47.55316 - parent: 82 - type: Transform -- uid: 5560 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -52.5,-8.5 - parent: 82 - type: Transform -- uid: 5561 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-4.5 - parent: 82 - type: Transform -- uid: 5562 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-3.5 - parent: 82 - type: Transform -- uid: 5563 - type: WallReinforced - components: - - pos: -43.5,-4.5 - parent: 82 - type: Transform -- uid: 5564 - type: WallReinforced - components: - - pos: -43.5,-3.5 - parent: 82 - type: Transform -- uid: 5565 - type: WallReinforced - components: - - pos: -43.5,-2.5 - parent: 82 - type: Transform -- uid: 5566 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-6.5 - parent: 82 - type: Transform -- uid: 5567 - type: WelderIndustrial - components: - - pos: 18.55567,74.58254 - parent: 82 - type: Transform -- uid: 5568 - type: CableApcExtension - components: - - pos: 17.5,74.5 - parent: 82 - type: Transform -- uid: 5569 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-9.5 - parent: 82 - type: Transform -- uid: 5570 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-9.5 - parent: 82 - type: Transform -- uid: 5571 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -48.5,-8.5 - parent: 82 - type: Transform -- uid: 5572 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -48.5,-7.5 - parent: 82 - type: Transform -- uid: 5573 - type: WallReinforced - components: - - pos: -55.5,-7.5 - parent: 82 - type: Transform -- uid: 5574 - type: WallReinforced - components: - - pos: -55.5,-6.5 - parent: 82 - type: Transform -- uid: 5575 - type: WallReinforced - components: - - pos: -55.5,-5.5 - parent: 82 - type: Transform -- uid: 5576 - type: WallReinforced - components: - - pos: -55.5,-4.5 - parent: 82 - type: Transform -- uid: 5577 - type: WallReinforced - components: - - pos: -55.5,-3.5 - parent: 82 - type: Transform -- uid: 5578 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-3.5 - parent: 82 - type: Transform -- uid: 5579 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-3.5 - parent: 82 - type: Transform -- uid: 5580 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-3.5 - parent: 82 - type: Transform -- uid: 5581 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-3.5 - parent: 82 - type: Transform -- uid: 5582 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-3.5 - parent: 82 - type: Transform -- uid: 5583 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-2.5 - parent: 82 - type: Transform -- uid: 5584 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-1.5 - parent: 82 - type: Transform -- uid: 5585 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -47.5,13.5 - parent: 82 - type: Transform -- uid: 5586 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -44.5,24.5 - parent: 82 - type: Transform -- uid: 5587 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -44.5,22.5 - parent: 82 - type: Transform -- uid: 5588 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -44.5,21.5 - parent: 82 - type: Transform -- uid: 5589 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -45.5,21.5 - parent: 82 - type: Transform -- uid: 5590 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -46.5,21.5 - parent: 82 - type: Transform -- uid: 5591 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -46.5,20.5 - parent: 82 - type: Transform -- uid: 5592 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -46.5,17.5 - parent: 82 - type: Transform -- uid: 5593 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -46.5,13.5 - parent: 82 - type: Transform -- uid: 5594 - type: ClothingUniformJumpskirtPerformer - components: - - pos: -17.736828,-19.660236 - parent: 82 - type: Transform -- uid: 5595 - type: Chair - components: - - pos: -17.5,-19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 5596 - type: Firelock - components: - - pos: -32.5,-16.5 - parent: 82 - type: Transform -- uid: 5597 - type: FirelockGlass - components: - - pos: -33.5,-16.5 - parent: 82 - type: Transform -- uid: 5598 - type: FirelockGlass - components: - - pos: -30.5,-16.5 - parent: 82 - type: Transform -- uid: 5599 - type: FirelockGlass - components: - - pos: -31.5,-16.5 - parent: 82 - type: Transform -- uid: 5600 - type: FirelockGlass - components: - - pos: -38.5,-22.5 - parent: 82 - type: Transform -- uid: 5601 - type: FirelockGlass - components: - - pos: -38.5,-19.5 - parent: 82 - type: Transform -- uid: 5602 - type: FirelockGlass - components: - - pos: -38.5,-20.5 - parent: 82 - type: Transform -- uid: 5603 - type: FirelockGlass - components: - - pos: -42.5,-10.5 - parent: 82 - type: Transform -- uid: 5604 - type: FirelockGlass - components: - - pos: -41.5,-10.5 - parent: 82 - type: Transform -- uid: 5605 - type: FirelockGlass - components: - - pos: -40.5,-10.5 - parent: 82 - type: Transform -- uid: 5606 - type: FirelockGlass - components: - - pos: -31.5,-2.5 - parent: 82 - type: Transform -- uid: 5607 - type: FirelockGlass - components: - - pos: -31.5,-3.5 - parent: 82 - type: Transform -- uid: 5608 - type: GasPipeBend - components: - - pos: 13.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5609 - type: FirelockGlass - components: - - pos: 83.5,5.5 - parent: 82 - type: Transform -- uid: 5610 - type: FirelockGlass - components: - - pos: 82.5,5.5 - parent: 82 - type: Transform -- uid: 5611 - type: FirelockGlass - components: - - pos: 76.5,5.5 - parent: 82 - type: Transform -- uid: 5612 - type: CableHV - components: - - pos: -20.5,55.5 - parent: 82 - type: Transform -- uid: 5613 - type: CableHV - components: - - pos: -20.5,56.5 - parent: 82 - type: Transform -- uid: 5614 - type: CableHV - components: - - pos: -20.5,57.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5615 - type: CableHV - components: - - pos: -20.5,58.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5616 - type: CableHV - components: - - pos: -20.5,59.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5617 - type: CableHV - components: - - pos: -20.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5618 - type: FirelockGlass - components: - - pos: 75.5,5.5 - parent: 82 - type: Transform -- uid: 5619 - type: FirelockGlass - components: - - pos: 71.5,2.5 - parent: 82 - type: Transform -- uid: 5620 - type: RadiationCollector - components: - - pos: -33.5,73.5 - parent: 82 - type: Transform -- uid: 5621 - type: Grille - components: - - pos: -14.5,80.5 - parent: 82 - type: Transform -- uid: 5622 - type: FirelockGlass - components: - - pos: 71.5,3.5 - parent: 82 - type: Transform -- uid: 5623 - type: FirelockGlass - components: - - pos: 71.5,4.5 - parent: 82 - type: Transform -- uid: 5624 - type: Grille - components: - - pos: -30.5,82.5 - parent: 82 - type: Transform -- uid: 5625 - type: WallReinforced - components: - - pos: -21.5,82.5 - parent: 82 - type: Transform -- uid: 5626 - type: ContainmentFieldGenerator - components: - - pos: -21.5,76.5 - parent: 82 - type: Transform -- uid: 5627 - type: CableHV - components: - - pos: -37.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5628 - type: CableHV - components: - - pos: -30.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5629 - type: CableHV - components: - - pos: -21.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5630 - type: CableHV - components: - - pos: -20.5,61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5631 - type: CableHV - components: - - pos: -20.5,62.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5632 - type: CableHV - components: - - pos: -20.5,63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5633 - type: CableHV - components: - - pos: -20.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5634 - type: CableHV - components: - - pos: -21.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5635 - type: CableHV - components: - - pos: -22.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5636 - type: CableHV - components: - - pos: -23.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5637 - type: CableHV - components: - - pos: -24.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5638 - type: CableHV - components: - - pos: -25.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5639 - type: CableHV - components: - - pos: -26.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5640 - type: CableHV - components: - - pos: -27.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5641 - type: CableHV - components: - - pos: -28.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5642 - type: CableHV - components: - - pos: -29.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5643 - type: CableHV - components: - - pos: -30.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5644 - type: CableMV - components: - - pos: -34.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5645 - type: CableMV - components: - - pos: -33.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5646 - type: CableMV - components: - - pos: -32.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5647 - type: CableMV - components: - - pos: -31.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5648 - type: CableMV - components: - - pos: -30.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5649 - type: CableMV - components: - - pos: -29.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5650 - type: CableMV - components: - - pos: -28.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5651 - type: CableMV - components: - - pos: -27.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5652 - type: CableMV - components: - - pos: -26.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5653 - type: CableMV - components: - - pos: -25.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5654 - type: CableMV - components: - - pos: -24.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5655 - type: CableMV - components: - - pos: -23.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5656 - type: CableMV - components: - - pos: -22.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5657 - type: CableMV - components: - - pos: -21.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5658 - type: CableMV - components: - - pos: -20.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5659 - type: CableMV - components: - - pos: -19.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5660 - type: CableMV - components: - - pos: -18.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5661 - type: CableMV - components: - - pos: -17.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5662 - type: CableMV - components: - - pos: -16.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5663 - type: CableMV - components: - - pos: -15.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5664 - type: CableMV - components: - - pos: -15.5,65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5665 - type: CableMV - components: - - pos: -15.5,66.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5666 - type: CableMV - components: - - pos: -15.5,67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5667 - type: CableMV - components: - - pos: -15.5,68.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5668 - type: CableMV - components: - - pos: -15.5,69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5669 - type: CableMV - components: - - pos: -15.5,70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5670 - type: CableMV - components: - - pos: -15.5,71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5671 - type: CableMV - components: - - pos: -15.5,72.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5672 - type: CableMV - components: - - pos: -15.5,73.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5673 - type: CableMV - components: - - pos: -15.5,74.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5674 - type: CableMV - components: - - pos: -15.5,75.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5675 - type: CableMV - components: - - pos: -15.5,76.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5676 - type: CableMV - components: - - pos: -15.5,77.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5677 - type: CableMV - components: - - pos: -15.5,78.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5678 - type: CableMV - components: - - pos: -15.5,79.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5679 - type: CableHV - components: - - pos: -22.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5680 - type: CableHV - components: - - pos: -12.5,83.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5681 - type: SignElectrical - components: - - pos: -35.5,84.5 - parent: 82 - type: Transform -- uid: 5682 - type: Catwalk - components: - - pos: -44.5,90.5 - parent: 82 - type: Transform -- uid: 5683 - type: Catwalk - components: - - pos: -36.5,90.5 - parent: 82 - type: Transform -- uid: 5684 - type: Catwalk - components: - - pos: -28.5,90.5 - parent: 82 - type: Transform -- uid: 5685 - type: Catwalk - components: - - pos: -26.5,90.5 - parent: 82 - type: Transform -- uid: 5686 - type: Catwalk - components: - - pos: -24.5,90.5 - parent: 82 - type: Transform -- uid: 5687 - type: Catwalk - components: - - pos: -22.5,90.5 - parent: 82 - type: Transform -- uid: 5688 - type: CableMV - components: - - pos: -21.5,65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5689 - type: CableHV - components: - - pos: -20.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5690 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -33.5,84.5 - parent: 82 - type: Transform -- uid: 5691 - type: Grille - components: - - pos: -9.5,87.5 - parent: 82 - type: Transform -- uid: 5692 - type: Grille - components: - - pos: -9.5,86.5 - parent: 82 - type: Transform -- uid: 5693 - type: Grille - components: - - pos: -9.5,82.5 - parent: 82 - type: Transform -- uid: 5694 - type: Grille - components: - - pos: -9.5,81.5 - parent: 82 - type: Transform -- uid: 5695 - type: Grille - components: - - pos: -9.5,80.5 - parent: 82 - type: Transform -- uid: 5696 - type: Catwalk - components: - - pos: -17.5,90.5 - parent: 82 - type: Transform -- uid: 5697 - type: Catwalk - components: - - pos: -31.5,90.5 - parent: 82 - type: Transform -- uid: 5698 - type: Catwalk - components: - - pos: -39.5,90.5 - parent: 82 - type: Transform -- uid: 5699 - type: CableApcStack1 - components: - - pos: 27.489916,41.437256 - parent: 82 - type: Transform -- uid: 5700 - type: SignElectrical - components: - - pos: -15.5,84.5 - parent: 82 - type: Transform -- uid: 5701 - type: CableHV - components: - - pos: -14.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5702 - type: CableHV - components: - - pos: -25.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5703 - type: CableHV - components: - - pos: -32.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5704 - type: CableHV - components: - - pos: -38.5,83.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5705 - type: Grille - components: - - pos: -16.5,82.5 - parent: 82 - type: Transform -- uid: 5706 - type: Grille - components: - - pos: -23.5,82.5 - parent: 82 - type: Transform -- uid: 5707 - type: Grille - components: - - pos: -32.5,82.5 - parent: 82 - type: Transform -- uid: 5708 - type: CableMV - components: - - pos: -35.5,79.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5709 - type: CableMV - components: - - pos: -35.5,78.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5710 - type: CableMV - components: - - pos: -35.5,77.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5711 - type: CableMV - components: - - pos: -35.5,76.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5712 - type: CableMV - components: - - pos: -35.5,75.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5713 - type: CableMV - components: - - pos: -35.5,74.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5714 - type: CableMV - components: - - pos: -35.5,73.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5715 - type: CableMV - components: - - pos: -35.5,72.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5716 - type: CableMV - components: - - pos: -35.5,71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5717 - type: CableMV - components: - - pos: -35.5,70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5718 - type: CableMV - components: - - pos: -35.5,69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5719 - type: CableMV - components: - - pos: -35.5,68.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5720 - type: CableMV - components: - - pos: -35.5,67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5721 - type: CableMV - components: - - pos: -35.5,66.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5722 - type: CableMV - components: - - pos: -35.5,65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5723 - type: CableMV - components: - - pos: -35.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5724 - type: GasPipeStraight - components: - - pos: 85.5,-1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 5725 - type: GasPipeStraight - components: - - pos: 85.5,-2.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 5726 - type: ReinforcedWindow - components: - - pos: 70.5,-5.5 - parent: 82 - type: Transform -- uid: 5727 - type: CableApcExtension - components: - - pos: 86.5,-7.5 - parent: 82 - type: Transform -- uid: 5728 - type: Grille - components: - - pos: -36.5,80.5 - parent: 82 - type: Transform -- uid: 5729 - type: RadiationCollector - components: - - pos: -33.5,75.5 - parent: 82 - type: Transform -- uid: 5730 - type: CableHV - components: - - pos: -33.5,73.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5731 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -37.5,84.5 - parent: 82 - type: Transform -- uid: 5732 - type: CableMV - components: - - pos: -22.5,56.5 - parent: 82 - type: Transform -- uid: 5733 - type: CableMV - components: - - pos: -22.5,55.5 - parent: 82 - type: Transform -- uid: 5734 - type: CableMV - components: - - pos: -22.5,54.5 - parent: 82 - type: Transform -- uid: 5735 - type: CableMV - components: - - pos: -21.5,54.5 - parent: 82 - type: Transform -- uid: 5736 - type: CableMV - components: - - pos: -20.5,54.5 - parent: 82 - type: Transform -- uid: 5737 - type: CableMV - components: - - pos: -20.5,55.5 - parent: 82 - type: Transform -- uid: 5738 - type: CableMV - components: - - pos: -20.5,56.5 - parent: 82 - type: Transform -- uid: 5739 - type: CableMV - components: - - pos: -20.5,57.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5740 - type: CableMV - components: - - pos: -20.5,58.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5741 - type: CableMV - components: - - pos: -20.5,59.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5742 - type: AsteroidRock - components: - - pos: 51.5,54.5 - parent: 82 - type: Transform -- uid: 5743 - type: AsteroidRock - components: - - pos: 52.5,54.5 - parent: 82 - type: Transform -- uid: 5744 - type: Catwalk - components: - - pos: -20.5,61.5 - parent: 82 - type: Transform -- uid: 5745 - type: Catwalk - components: - - pos: -19.5,61.5 - parent: 82 - type: Transform -- uid: 5746 - type: WallReinforced - components: - - pos: -29.5,60.5 - parent: 82 - type: Transform -- uid: 5747 - type: WallReinforced - components: - - pos: -29.5,61.5 - parent: 82 - type: Transform -- uid: 5748 - type: WallReinforced - components: - - pos: -37.5,61.5 - parent: 82 - type: Transform -- uid: 5749 - type: WallReinforced - components: - - pos: -36.5,61.5 - parent: 82 - type: Transform -- uid: 5750 - type: WallReinforced - components: - - pos: -35.5,61.5 - parent: 82 - type: Transform -- uid: 5751 - type: WallReinforced - components: - - pos: -34.5,61.5 - parent: 82 - type: Transform -- uid: 5752 - type: WallReinforced - components: - - pos: -33.5,61.5 - parent: 82 - type: Transform -- uid: 5753 - type: WallReinforced - components: - - pos: -32.5,61.5 - parent: 82 - type: Transform -- uid: 5754 - type: WallReinforced - components: - - pos: -31.5,61.5 - parent: 82 - type: Transform -- uid: 5755 - type: WallReinforced - components: - - pos: -30.5,61.5 - parent: 82 - type: Transform -- uid: 5756 - type: WallReinforced - components: - - pos: -37.5,62.5 - parent: 82 - type: Transform -- uid: 5757 - type: WallReinforced - components: - - pos: -37.5,63.5 - parent: 82 - type: Transform -- uid: 5758 - type: WallReinforced - components: - - pos: -37.5,64.5 - parent: 82 - type: Transform -- uid: 5759 - type: WallReinforced - components: - - pos: -37.5,65.5 - parent: 82 - type: Transform -- uid: 5760 - type: WallReinforced - components: - - pos: -37.5,66.5 - parent: 82 - type: Transform -- uid: 5761 - type: WallReinforced - components: - - pos: -37.5,67.5 - parent: 82 - type: Transform -- uid: 5762 - type: WallReinforced - components: - - pos: -37.5,68.5 - parent: 82 - type: Transform -- uid: 5763 - type: WallReinforced - components: - - pos: -37.5,69.5 - parent: 82 - type: Transform -- uid: 5764 - type: WallReinforced - components: - - pos: -37.5,70.5 - parent: 82 - type: Transform -- uid: 5765 - type: WallReinforced - components: - - pos: -37.5,71.5 - parent: 82 - type: Transform -- uid: 5766 - type: WallReinforced - components: - - pos: -37.5,72.5 - parent: 82 - type: Transform -- uid: 5767 - type: WallReinforced - components: - - pos: -37.5,73.5 - parent: 82 - type: Transform -- uid: 5768 - type: WallReinforced - components: - - pos: -37.5,74.5 - parent: 82 - type: Transform -- uid: 5769 - type: WallReinforced - components: - - pos: -37.5,75.5 - parent: 82 - type: Transform -- uid: 5770 - type: WallReinforced - components: - - pos: -37.5,76.5 - parent: 82 - type: Transform -- uid: 5771 - type: WallReinforced - components: - - pos: -37.5,77.5 - parent: 82 - type: Transform -- uid: 5772 - type: WallReinforced - components: - - pos: -37.5,78.5 - parent: 82 - type: Transform -- uid: 5773 - type: WallReinforced - components: - - pos: -37.5,79.5 - parent: 82 - type: Transform -- uid: 5774 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,84.5 - parent: 82 - type: Transform -- uid: 5775 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -18.5,84.5 - parent: 82 - type: Transform -- uid: 5776 - type: CableMV - components: - - pos: -17.5,68.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5777 - type: CableMV - components: - - pos: -18.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5778 - type: CableMV - components: - - pos: -26.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5779 - type: Catwalk - components: - - pos: -31.5,80.5 - parent: 82 - type: Transform -- uid: 5780 - type: Catwalk - components: - - pos: -21.5,80.5 - parent: 82 - type: Transform -- uid: 5781 - type: WallReinforced - components: - - pos: -35.5,84.5 - parent: 82 - type: Transform -- uid: 5782 - type: WallReinforced - components: - - pos: -15.5,84.5 - parent: 82 - type: Transform -- uid: 5783 - type: WallReinforced - components: - - pos: -12.5,81.5 - parent: 82 - type: Transform -- uid: 5784 - type: Grille - components: - - pos: -12.5,80.5 - parent: 82 - type: Transform -- uid: 5785 - type: Catwalk - components: - - pos: -15.5,80.5 - parent: 82 - type: Transform -- uid: 5786 - type: Catwalk - components: - - pos: -16.5,80.5 - parent: 82 - type: Transform -- uid: 5787 - type: Grille - components: - - pos: -19.5,87.5 - parent: 82 - type: Transform -- uid: 5788 - type: Catwalk - components: - - pos: -32.5,90.5 - parent: 82 - type: Transform -- uid: 5789 - type: CableHV - components: - - pos: -26.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5790 - type: WallReinforced - components: - - pos: -37.5,80.5 - parent: 82 - type: Transform -- uid: 5791 - type: Catwalk - components: - - pos: -30.5,80.5 - parent: 82 - type: Transform -- uid: 5792 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -26.5,84.5 - parent: 82 - type: Transform -- uid: 5793 - type: Catwalk - components: - - pos: -23.5,80.5 - parent: 82 - type: Transform -- uid: 5794 - type: Catwalk - components: - - pos: -32.5,80.5 - parent: 82 - type: Transform -- uid: 5795 - type: Catwalk - components: - - pos: -22.5,80.5 - parent: 82 - type: Transform -- uid: 5796 - type: Catwalk - components: - - pos: -15.5,90.5 - parent: 82 - type: Transform -- uid: 5797 - type: Catwalk - components: - - pos: -16.5,90.5 - parent: 82 - type: Transform -- uid: 5798 - type: Catwalk - components: - - pos: -30.5,90.5 - parent: 82 - type: Transform -- uid: 5799 - type: CableHV - components: - - pos: -24.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5800 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -28.5,84.5 - parent: 82 - type: Transform -- uid: 5801 - type: Catwalk - components: - - pos: -14.5,90.5 - parent: 82 - type: Transform -- uid: 5802 - type: Catwalk - components: - - pos: -13.5,90.5 - parent: 82 - type: Transform -- uid: 5803 - type: Catwalk - components: - - pos: -12.5,90.5 - parent: 82 - type: Transform -- uid: 5804 - type: Catwalk - components: - - pos: -26.5,80.5 - parent: 82 - type: Transform -- uid: 5805 - type: Catwalk - components: - - pos: -25.5,80.5 - parent: 82 - type: Transform -- uid: 5806 - type: Catwalk - components: - - pos: -24.5,80.5 - parent: 82 - type: Transform -- uid: 5807 - type: CableMV - components: - - pos: -25.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5808 - type: CableMV - components: - - pos: -17.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5809 - type: WallReinforced - components: - - pos: -13.5,79.5 - parent: 82 - type: Transform -- uid: 5810 - type: WallReinforced - components: - - pos: -13.5,78.5 - parent: 82 - type: Transform -- uid: 5811 - type: WallReinforced - components: - - pos: -13.5,77.5 - parent: 82 - type: Transform -- uid: 5812 - type: WallReinforced - components: - - pos: -13.5,76.5 - parent: 82 - type: Transform -- uid: 5813 - type: WallReinforced - components: - - pos: -13.5,75.5 - parent: 82 - type: Transform -- uid: 5814 - type: WallReinforced - components: - - pos: -13.5,74.5 - parent: 82 - type: Transform -- uid: 5815 - type: WallReinforced - components: - - pos: -13.5,73.5 - parent: 82 - type: Transform -- uid: 5816 - type: WallReinforced - components: - - pos: -13.5,72.5 - parent: 82 - type: Transform -- uid: 5817 - type: WallReinforced - components: - - pos: -13.5,71.5 - parent: 82 - type: Transform -- uid: 5818 - type: WallReinforced - components: - - pos: -13.5,70.5 - parent: 82 - type: Transform -- uid: 5819 - type: WallReinforced - components: - - pos: -13.5,69.5 - parent: 82 - type: Transform -- uid: 5820 - type: WallReinforced - components: - - pos: -13.5,68.5 - parent: 82 - type: Transform -- uid: 5821 - type: WallReinforced - components: - - pos: -13.5,67.5 - parent: 82 - type: Transform -- uid: 5822 - type: WallReinforced - components: - - pos: -13.5,66.5 - parent: 82 - type: Transform -- uid: 5823 - type: WallReinforced - components: - - pos: -13.5,65.5 - parent: 82 - type: Transform -- uid: 5824 - type: WallReinforced - components: - - pos: -13.5,64.5 - parent: 82 - type: Transform -- uid: 5825 - type: WallReinforced - components: - - pos: -13.5,63.5 - parent: 82 - type: Transform -- uid: 5826 - type: WallReinforced - components: - - pos: -13.5,62.5 - parent: 82 - type: Transform -- uid: 5827 - type: WallReinforced - components: - - pos: -13.5,61.5 - parent: 82 - type: Transform -- uid: 5828 - type: WallReinforced - components: - - pos: -14.5,61.5 - parent: 82 - type: Transform -- uid: 5829 - type: WallReinforced - components: - - pos: -15.5,61.5 - parent: 82 - type: Transform -- uid: 5830 - type: WallReinforced - components: - - pos: -16.5,61.5 - parent: 82 - type: Transform -- uid: 5831 - type: WallReinforced - components: - - pos: -17.5,61.5 - parent: 82 - type: Transform -- uid: 5832 - type: WallReinforced - components: - - pos: -17.5,60.5 - parent: 82 - type: Transform -- uid: 5833 - type: CableMV - components: - - pos: -16.5,68.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5834 - type: WallReinforced - components: - - pos: -38.5,78.5 - parent: 82 - type: Transform -- uid: 5835 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -19.5,84.5 - parent: 82 - type: Transform -- uid: 5836 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -36.5,84.5 - parent: 82 - type: Transform -- uid: 5837 - type: WallReinforced - components: - - pos: -38.5,73.5 - parent: 82 - type: Transform -- uid: 5838 - type: WallReinforced - components: - - pos: -38.5,68.5 - parent: 82 - type: Transform -- uid: 5839 - type: WallReinforced - components: - - pos: -38.5,63.5 - parent: 82 - type: Transform -- uid: 5840 - type: WallReinforced - components: - - pos: -35.5,60.5 - parent: 82 - type: Transform -- uid: 5841 - type: WallReinforced - components: - - pos: -30.5,60.5 - parent: 82 - type: Transform -- uid: 5842 - type: WallReinforced - components: - - pos: -15.5,60.5 - parent: 82 - type: Transform -- uid: 5843 - type: WallReinforced - components: - - pos: -12.5,63.5 - parent: 82 - type: Transform -- uid: 5844 - type: WallReinforced - components: - - pos: -12.5,68.5 - parent: 82 - type: Transform -- uid: 5845 - type: WallReinforced - components: - - pos: -12.5,73.5 - parent: 82 - type: Transform -- uid: 5846 - type: WallReinforced - components: - - pos: -12.5,78.5 - parent: 82 - type: Transform -- uid: 5847 - type: RadiationCollector - components: - - pos: -33.5,74.5 - parent: 82 - type: Transform -- uid: 5848 - type: Grille - components: - - pos: -35.5,81.5 - parent: 82 - type: Transform -- uid: 5849 - type: Grille - components: - - pos: -31.5,82.5 - parent: 82 - type: Transform -- uid: 5850 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -48.5,23.5 - parent: 82 - type: Transform -- uid: 5851 - type: FirelockGlass - components: - - pos: 20.5,-6.5 - parent: 82 - type: Transform -- uid: 5852 - type: FirelockGlass - components: - - pos: 19.5,-6.5 - parent: 82 - type: Transform -- uid: 5853 - type: FirelockGlass - components: - - pos: 18.5,-6.5 - parent: 82 - type: Transform -- uid: 5854 - type: Grille - components: - - pos: -22.5,82.5 - parent: 82 - type: Transform -- uid: 5855 - type: Grille - components: - - pos: -16.5,81.5 - parent: 82 - type: Transform -- uid: 5856 - type: CableHV - components: - - pos: -38.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5857 - type: WallReinforced - components: - - pos: -14.5,78.5 - parent: 82 - type: Transform -- uid: 5858 - type: WallReinforced - components: - - pos: -14.5,73.5 - parent: 82 - type: Transform -- uid: 5859 - type: WallReinforced - components: - - pos: -14.5,68.5 - parent: 82 - type: Transform -- uid: 5860 - type: WallReinforced - components: - - pos: -14.5,63.5 - parent: 82 - type: Transform -- uid: 5861 - type: WallReinforced - components: - - pos: -15.5,62.5 - parent: 82 - type: Transform -- uid: 5862 - type: WallReinforced - components: - - pos: -14.5,62.5 - parent: 82 - type: Transform -- uid: 5863 - type: WallReinforced - components: - - pos: -35.5,62.5 - parent: 82 - type: Transform -- uid: 5864 - type: WallReinforced - components: - - pos: -36.5,62.5 - parent: 82 - type: Transform -- uid: 5865 - type: WallReinforced - components: - - pos: -36.5,63.5 - parent: 82 - type: Transform -- uid: 5866 - type: WallReinforced - components: - - pos: -36.5,68.5 - parent: 82 - type: Transform -- uid: 5867 - type: WallReinforced - components: - - pos: -36.5,73.5 - parent: 82 - type: Transform -- uid: 5868 - type: WallReinforced - components: - - pos: -36.5,78.5 - parent: 82 - type: Transform -- uid: 5869 - type: CableHV - components: - - pos: -31.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5870 - type: CableHV - components: - - pos: -13.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5871 - type: SignElectrical - components: - - pos: -21.5,84.5 - parent: 82 - type: Transform -- uid: 5872 - type: Catwalk - components: - - pos: -44.5,88.5 - parent: 82 - type: Transform -- uid: 5873 - type: Catwalk - components: - - pos: -38.5,90.5 - parent: 82 - type: Transform -- uid: 5874 - type: Catwalk - components: - - pos: -18.5,90.5 - parent: 82 - type: Transform -- uid: 5875 - type: Catwalk - components: - - pos: -8.5,90.5 - parent: 82 - type: Transform -- uid: 5876 - type: Grille - components: - - pos: -13.5,87.5 - parent: 82 - type: Transform -- uid: 5877 - type: Grille - components: - - pos: -36.5,79.5 - parent: 82 - type: Transform -- uid: 5878 - type: Grille - components: - - pos: -36.5,77.5 - parent: 82 - type: Transform -- uid: 5879 - type: Grille - components: - - pos: -36.5,76.5 - parent: 82 - type: Transform -- uid: 5880 - type: Grille - components: - - pos: -36.5,75.5 - parent: 82 - type: Transform -- uid: 5881 - type: Grille - components: - - pos: -36.5,74.5 - parent: 82 - type: Transform -- uid: 5882 - type: Grille - components: - - pos: -36.5,72.5 - parent: 82 - type: Transform -- uid: 5883 - type: Grille - components: - - pos: -36.5,71.5 - parent: 82 - type: Transform -- uid: 5884 - type: Grille - components: - - pos: -36.5,70.5 - parent: 82 - type: Transform -- uid: 5885 - type: Grille - components: - - pos: -36.5,69.5 - parent: 82 - type: Transform -- uid: 5886 - type: Grille - components: - - pos: -36.5,67.5 - parent: 82 - type: Transform -- uid: 5887 - type: Grille - components: - - pos: -36.5,66.5 - parent: 82 - type: Transform -- uid: 5888 - type: Grille - components: - - pos: -36.5,65.5 - parent: 82 - type: Transform -- uid: 5889 - type: Grille - components: - - pos: -36.5,64.5 - parent: 82 - type: Transform -- uid: 5890 - type: Grille - components: - - pos: -14.5,69.5 - parent: 82 - type: Transform -- uid: 5891 - type: Grille - components: - - pos: -14.5,67.5 - parent: 82 - type: Transform -- uid: 5892 - type: Grille - components: - - pos: -14.5,66.5 - parent: 82 - type: Transform -- uid: 5893 - type: Grille - components: - - pos: -14.5,65.5 - parent: 82 - type: Transform -- uid: 5894 - type: Grille - components: - - pos: -14.5,64.5 - parent: 82 - type: Transform -- uid: 5895 - type: Grille - components: - - pos: -14.5,70.5 - parent: 82 - type: Transform -- uid: 5896 - type: Grille - components: - - pos: -14.5,71.5 - parent: 82 - type: Transform -- uid: 5897 - type: Grille - components: - - pos: -14.5,72.5 - parent: 82 - type: Transform -- uid: 5898 - type: Grille - components: - - pos: -14.5,74.5 - parent: 82 - type: Transform -- uid: 5899 - type: Grille - components: - - pos: -14.5,75.5 - parent: 82 - type: Transform -- uid: 5900 - type: Grille - components: - - pos: -14.5,76.5 - parent: 82 - type: Transform -- uid: 5901 - type: Grille - components: - - pos: -14.5,77.5 - parent: 82 - type: Transform -- uid: 5902 - type: Grille - components: - - pos: -14.5,79.5 - parent: 82 - type: Transform -- uid: 5903 - type: Grille - components: - - pos: -17.5,87.5 - parent: 82 - type: Transform -- uid: 5904 - type: Grille - components: - - pos: -15.5,87.5 - parent: 82 - type: Transform -- uid: 5905 - type: Grille - components: - - pos: -21.5,87.5 - parent: 82 - type: Transform -- uid: 5906 - type: Grille - components: - - pos: -23.5,87.5 - parent: 82 - type: Transform -- uid: 5907 - type: Grille - components: - - pos: -25.5,87.5 - parent: 82 - type: Transform -- uid: 5908 - type: WallReinforced - components: - - pos: -14.5,81.5 - parent: 82 - type: Transform -- uid: 5909 - type: WallReinforced - components: - - pos: -14.5,82.5 - parent: 82 - type: Transform -- uid: 5910 - type: WallReinforced - components: - - pos: -13.5,81.5 - parent: 82 - type: Transform -- uid: 5911 - type: WallReinforced - components: - - pos: -37.5,82.5 - parent: 82 - type: Transform -- uid: 5912 - type: WallReinforced - components: - - pos: -14.5,83.5 - parent: 82 - type: Transform -- uid: 5913 - type: WallReinforced - components: - - pos: -16.5,83.5 - parent: 82 - type: Transform -- uid: 5914 - type: WallReinforced - components: - - pos: -38.5,81.5 - parent: 82 - type: Transform -- uid: 5915 - type: Catwalk - components: - - pos: -20.5,80.5 - parent: 82 - type: Transform -- uid: 5916 - type: CableMV - components: - - pos: -27.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5917 - type: CableMV - components: - - pos: -19.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5918 - type: CableMV - components: - - pos: -34.5,68.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5919 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -17.5,84.5 - parent: 82 - type: Transform -- uid: 5920 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -38.5,84.5 - parent: 82 - type: Transform -- uid: 5921 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -12.5,82.5 - parent: 82 - type: Transform -- uid: 5922 - type: CableHV - components: - - pos: -33.5,75.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5923 - type: CableMV - components: - - pos: -29.5,79.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5924 - type: Grille - components: - - pos: -33.5,82.5 - parent: 82 - type: Transform -- uid: 5925 - type: Grille - components: - - pos: -24.5,82.5 - parent: 82 - type: Transform -- uid: 5926 - type: Grille - components: - - pos: -17.5,82.5 - parent: 82 - type: Transform -- uid: 5927 - type: CableHV - components: - - pos: -38.5,82.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5928 - type: CableHV - components: - - pos: -33.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5929 - type: CableHV - components: - - pos: -15.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5930 - type: SignElectrical - components: - - pos: -12.5,81.5 - parent: 82 - type: Transform -- uid: 5931 - type: Grille - components: - - pos: -38.5,79.5 - parent: 82 - type: Transform -- uid: 5932 - type: Grille - components: - - pos: -38.5,77.5 - parent: 82 - type: Transform -- uid: 5933 - type: Grille - components: - - pos: -38.5,76.5 - parent: 82 - type: Transform -- uid: 5934 - type: Grille - components: - - pos: -38.5,75.5 - parent: 82 - type: Transform -- uid: 5935 - type: Grille - components: - - pos: -38.5,74.5 - parent: 82 - type: Transform -- uid: 5936 - type: Grille - components: - - pos: -38.5,72.5 - parent: 82 - type: Transform -- uid: 5937 - type: Grille - components: - - pos: -38.5,71.5 - parent: 82 - type: Transform -- uid: 5938 - type: Grille - components: - - pos: -38.5,70.5 - parent: 82 - type: Transform -- uid: 5939 - type: Grille - components: - - pos: -38.5,69.5 - parent: 82 - type: Transform -- uid: 5940 - type: Grille - components: - - pos: -38.5,67.5 - parent: 82 - type: Transform -- uid: 5941 - type: Grille - components: - - pos: -38.5,66.5 - parent: 82 - type: Transform -- uid: 5942 - type: Grille - components: - - pos: -38.5,65.5 - parent: 82 - type: Transform -- uid: 5943 - type: Grille - components: - - pos: -38.5,64.5 - parent: 82 - type: Transform -- uid: 5944 - type: Grille - components: - - pos: -38.5,62.5 - parent: 82 - type: Transform -- uid: 5945 - type: Grille - components: - - pos: -38.5,61.5 - parent: 82 - type: Transform -- uid: 5946 - type: Grille - components: - - pos: -38.5,60.5 - parent: 82 - type: Transform -- uid: 5947 - type: Grille - components: - - pos: -37.5,60.5 - parent: 82 - type: Transform -- uid: 5948 - type: Grille - components: - - pos: -36.5,60.5 - parent: 82 - type: Transform -- uid: 5949 - type: Grille - components: - - pos: -34.5,60.5 - parent: 82 - type: Transform -- uid: 5950 - type: Grille - components: - - pos: -33.5,60.5 - parent: 82 - type: Transform -- uid: 5951 - type: Grille - components: - - pos: -32.5,60.5 - parent: 82 - type: Transform -- uid: 5952 - type: Grille - components: - - pos: -31.5,60.5 - parent: 82 - type: Transform -- uid: 5953 - type: Grille - components: - - pos: -16.5,60.5 - parent: 82 - type: Transform -- uid: 5954 - type: Grille - components: - - pos: -14.5,60.5 - parent: 82 - type: Transform -- uid: 5955 - type: Grille - components: - - pos: -13.5,60.5 - parent: 82 - type: Transform -- uid: 5956 - type: Grille - components: - - pos: -12.5,60.5 - parent: 82 - type: Transform -- uid: 5957 - type: Grille - components: - - pos: -12.5,61.5 - parent: 82 - type: Transform -- uid: 5958 - type: Grille - components: - - pos: -12.5,62.5 - parent: 82 - type: Transform -- uid: 5959 - type: Grille - components: - - pos: -12.5,64.5 - parent: 82 - type: Transform -- uid: 5960 - type: Grille - components: - - pos: -12.5,65.5 - parent: 82 - type: Transform -- uid: 5961 - type: Grille - components: - - pos: -12.5,66.5 - parent: 82 - type: Transform -- uid: 5962 - type: Grille - components: - - pos: -12.5,67.5 - parent: 82 - type: Transform -- uid: 5963 - type: Grille - components: - - pos: -12.5,69.5 - parent: 82 - type: Transform -- uid: 5964 - type: Grille - components: - - pos: -12.5,70.5 - parent: 82 - type: Transform -- uid: 5965 - type: Grille - components: - - pos: -12.5,71.5 - parent: 82 - type: Transform -- uid: 5966 - type: Grille - components: - - pos: -12.5,72.5 - parent: 82 - type: Transform -- uid: 5967 - type: Grille - components: - - pos: -12.5,74.5 - parent: 82 - type: Transform -- uid: 5968 - type: Grille - components: - - pos: -12.5,75.5 - parent: 82 - type: Transform -- uid: 5969 - type: Grille - components: - - pos: -12.5,76.5 - parent: 82 - type: Transform -- uid: 5970 - type: Grille - components: - - pos: -12.5,77.5 - parent: 82 - type: Transform -- uid: 5971 - type: Grille - components: - - pos: -12.5,79.5 - parent: 82 - type: Transform -- uid: 5972 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,44.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5973 - type: Catwalk - components: - - pos: -40.5,90.5 - parent: 82 - type: Transform -- uid: 5974 - type: WallReinforced - components: - - pos: -30.5,83.5 - parent: 82 - type: Transform -- uid: 5975 - type: Grille - components: - - pos: -31.5,87.5 - parent: 82 - type: Transform -- uid: 5976 - type: Grille - components: - - pos: -29.5,87.5 - parent: 82 - type: Transform -- uid: 5977 - type: Grille - components: - - pos: -27.5,87.5 - parent: 82 - type: Transform -- uid: 5978 - type: Grille - components: - - pos: -11.5,87.5 - parent: 82 - type: Transform -- uid: 5979 - type: Catwalk - components: - - pos: -10.5,90.5 - parent: 82 - type: Transform -- uid: 5980 - type: Catwalk - components: - - pos: -20.5,90.5 - parent: 82 - type: Transform -- uid: 5981 - type: Catwalk - components: - - pos: -34.5,90.5 - parent: 82 - type: Transform -- uid: 5982 - type: Catwalk - components: - - pos: -42.5,90.5 - parent: 82 - type: Transform -- uid: 5983 - type: CableApcExtension - components: - - pos: -41.5,-36.5 - parent: 82 - type: Transform -- uid: 5984 - type: CableHV - components: - - pos: -12.5,81.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5985 - type: CableHV - components: - - pos: -17.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5986 - type: CableHV - components: - - pos: -28.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5987 - type: CableHV - components: - - pos: -35.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5988 - type: CableHV - components: - - pos: -38.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5989 - type: Grille - components: - - pos: -19.5,82.5 - parent: 82 - type: Transform -- uid: 5990 - type: Grille - components: - - pos: -26.5,82.5 - parent: 82 - type: Transform -- uid: 5991 - type: Grille - components: - - pos: -34.5,81.5 - parent: 82 - type: Transform -- uid: 5992 - type: RadiationCollector - components: - - pos: -33.5,70.5 - parent: 82 - type: Transform -- uid: 5993 - type: CableHV - components: - - pos: -33.5,69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5994 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -12.5,84.5 - parent: 82 - type: Transform -- uid: 5995 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -38.5,82.5 - parent: 82 - type: Transform -- uid: 5996 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -24.5,84.5 - parent: 82 - type: Transform -- uid: 5997 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -49.5,28.5 - parent: 82 - type: Transform -- uid: 5998 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -48.5,28.5 - parent: 82 - type: Transform -- uid: 5999 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -47.5,28.5 - parent: 82 - type: Transform -- uid: 6000 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -47.5,27.5 - parent: 82 - type: Transform -- uid: 6001 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -47.5,26.5 - parent: 82 - type: Transform -- uid: 6002 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -47.5,25.5 - parent: 82 - type: Transform -- uid: 6003 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -47.5,24.5 - parent: 82 - type: Transform -- uid: 6004 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -48.5,24.5 - parent: 82 - type: Transform -- uid: 6005 - type: SurveillanceWirelessCameraMovableEntertainment - components: - - pos: -8.5,-29.5 - parent: 82 - type: Transform -- uid: 6006 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -13.5,-29.5 - parent: 82 - type: Transform -- uid: 6007 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.516483,-29.255516 - parent: 82 - type: Transform -- uid: 6008 - type: ClothingHeadSafari - components: - - pos: -14.6152,-29.168224 - parent: 82 - type: Transform -- uid: 6009 - type: BoxFolderYellow - components: - - pos: -14.341282,-28.693317 - parent: 82 - type: Transform -- uid: 6010 - type: BoxFolderBlue - components: - - pos: -14.585726,-28.493317 - parent: 82 - type: Transform -- uid: 6011 - type: WallmountTelescreen - components: - - pos: -13.5,-28.5 - parent: 82 - type: Transform -- uid: 6012 - type: AirlockServiceGlassLocked - components: - - pos: -11.5,-31.5 - parent: 82 - type: Transform -- uid: 6013 - type: SurveillanceWirelessCameraMovableEntertainment - components: - - pos: -8.5,-30.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEntertainment - type: SurveillanceCamera -- uid: 6014 - type: WallReinforced - components: - - pos: -36.5,9.5 - parent: 82 - type: Transform -- uid: 6015 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -46.5,18.5 - parent: 82 - type: Transform -- uid: 6016 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -46.5,19.5 - parent: 82 - type: Transform -- uid: 6017 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -46.5,20.5 - parent: 82 - type: Transform -- uid: 6018 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -46.5,14.5 - parent: 82 - type: Transform -- uid: 6019 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -46.5,14.5 - parent: 82 - type: Transform -- uid: 6020 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -46.5,18.5 - parent: 82 - type: Transform -- uid: 6021 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -46.5,19.5 - parent: 82 - type: Transform -- uid: 6022 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -46.5,15.5 - parent: 82 - type: Transform -- uid: 6023 - type: GeneratorBasic - components: - - pos: -28.5,50.5 - parent: 82 - type: Transform -- uid: 6024 - type: GeneratorBasic - components: - - pos: -28.5,49.5 - parent: 82 - type: Transform -- uid: 6025 - type: GeneratorUranium - components: - - pos: -27.5,50.5 - parent: 82 - type: Transform -- uid: 6026 - type: GeneratorPlasma - components: - - pos: -27.5,49.5 - parent: 82 - type: Transform -- uid: 6027 - type: Emitter - components: - - pos: -26.5,50.5 - parent: 82 - type: Transform -- uid: 6028 - type: Emitter - components: - - pos: -26.5,49.5 - parent: 82 - type: Transform -- uid: 6029 - type: Emitter - components: - - pos: -25.5,50.5 - parent: 82 - type: Transform -- uid: 6030 - type: Emitter - components: - - pos: -25.5,49.5 - parent: 82 - type: Transform -- uid: 6031 - type: ContainmentFieldGenerator - components: - - pos: -24.5,50.5 - parent: 82 - type: Transform -- uid: 6032 - type: ContainmentFieldGenerator - components: - - pos: -24.5,49.5 - parent: 82 - type: Transform -- uid: 6033 - type: SingularityGenerator - components: - - pos: -23.5,50.5 - parent: 82 - type: Transform -- uid: 6034 - type: SingularityGenerator - components: - - pos: -23.5,49.5 - parent: 82 - type: Transform -- uid: 6035 - type: TableReinforced - components: - - pos: -26.5,47.5 - parent: 82 - type: Transform -- uid: 6036 - type: TableReinforced - components: - - pos: -25.5,47.5 - parent: 82 - type: Transform -- uid: 6037 - type: TableReinforced - components: - - pos: -24.5,47.5 - parent: 82 - type: Transform -- uid: 6038 - type: AMEController - components: - - pos: -28.5,47.5 - parent: 82 - type: Transform -- uid: 6039 - type: CrateEngineeringCableBulk - components: - - pos: -27.5,47.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6040 - type: CrateEngineeringSecure - components: - - pos: -23.5,47.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6041 - type: WallReinforced - components: - - pos: -41.5,24.5 - parent: 82 - type: Transform -- uid: 6042 - type: WallReinforced - components: - - pos: -33.5,24.5 - parent: 82 - type: Transform -- uid: 6043 - type: WallReinforced - components: - - pos: -33.5,23.5 - parent: 82 - type: Transform -- uid: 6044 - type: WallReinforced - components: - - pos: -33.5,22.5 - parent: 82 - type: Transform -- uid: 6045 - type: WallReinforced - components: - - pos: -44.5,27.5 - parent: 82 - type: Transform -- uid: 6046 - type: WallReinforced - components: - - pos: -44.5,28.5 - parent: 82 - type: Transform -- uid: 6047 - type: WallReinforced - components: - - pos: -43.5,28.5 - parent: 82 - type: Transform -- uid: 6048 - type: WallReinforced - components: - - pos: -43.5,24.5 - parent: 82 - type: Transform -- uid: 6049 - type: WallReinforced - components: - - pos: -42.5,24.5 - parent: 82 - type: Transform -- uid: 6050 - type: AMEController - components: - - pos: -8.5,50.5 - parent: 82 - type: Transform -- uid: 6051 - type: CrateEngineeringAMEShielding - components: - - pos: -8.5,53.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6052 - type: CrateEngineeringAMEShielding - components: - - pos: -8.5,52.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6053 - type: CrateEngineeringAMEJar - components: - - pos: -8.5,51.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6054 - type: Catwalk - components: - - pos: -15.5,51.5 - parent: 82 - type: Transform -- uid: 6055 - type: Catwalk - components: - - pos: -14.5,51.5 - parent: 82 - type: Transform -- uid: 6056 - type: Catwalk - components: - - pos: -13.5,51.5 - parent: 82 - type: Transform -- uid: 6057 - type: Catwalk - components: - - pos: -12.5,51.5 - parent: 82 - type: Transform -- uid: 6058 - type: Catwalk - components: - - pos: -11.5,51.5 - parent: 82 - type: Transform -- uid: 6059 - type: Catwalk - components: - - pos: -10.5,51.5 - parent: 82 - type: Transform -- uid: 6060 - type: Catwalk - components: - - pos: -13.5,50.5 - parent: 82 - type: Transform -- uid: 6061 - type: Catwalk - components: - - pos: -13.5,49.5 - parent: 82 - type: Transform -- uid: 6062 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -21.5,84.5 - parent: 82 - type: Transform -- uid: 6063 - type: CableMV - components: - - pos: -34.5,76.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6064 - type: CableMV - components: - - pos: -21.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6065 - type: CableMV - components: - - pos: -29.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6066 - type: Catwalk - components: - - pos: -28.5,80.5 - parent: 82 - type: Transform -- uid: 6067 - type: Catwalk - components: - - pos: -18.5,80.5 - parent: 82 - type: Transform -- uid: 6068 - type: WallReinforced - components: - - pos: -36.5,81.5 - parent: 82 - type: Transform -- uid: 6069 - type: WallReinforced - components: - - pos: -18.5,83.5 - parent: 82 - type: Transform -- uid: 6070 - type: WallReinforced - components: - - pos: -19.5,83.5 - parent: 82 - type: Transform -- uid: 6071 - type: WallReinforced - components: - - pos: -20.5,83.5 - parent: 82 - type: Transform -- uid: 6072 - type: WallReinforced - components: - - pos: -29.5,83.5 - parent: 82 - type: Transform -- uid: 6073 - type: WallReinforced - components: - - pos: -28.5,83.5 - parent: 82 - type: Transform -- uid: 6074 - type: WallReinforced - components: - - pos: -27.5,83.5 - parent: 82 - type: Transform -- uid: 6075 - type: WallReinforced - components: - - pos: -26.5,83.5 - parent: 82 - type: Transform -- uid: 6076 - type: WallReinforced - components: - - pos: -25.5,83.5 - parent: 82 - type: Transform -- uid: 6077 - type: WallReinforced - components: - - pos: -24.5,83.5 - parent: 82 - type: Transform -- uid: 6078 - type: WallReinforced - components: - - pos: -23.5,83.5 - parent: 82 - type: Transform -- uid: 6079 - type: WallReinforced - components: - - pos: -22.5,83.5 - parent: 82 - type: Transform -- uid: 6080 - type: WallReinforced - components: - - pos: -21.5,83.5 - parent: 82 - type: Transform -- uid: 6081 - type: Grille - components: - - pos: -40.5,87.5 - parent: 82 - type: Transform -- uid: 6082 - type: Grille - components: - - pos: -39.5,87.5 - parent: 82 - type: Transform -- uid: 6083 - type: Grille - components: - - pos: -38.5,87.5 - parent: 82 - type: Transform -- uid: 6084 - type: Grille - components: - - pos: -37.5,87.5 - parent: 82 - type: Transform -- uid: 6085 - type: Grille - components: - - pos: -36.5,87.5 - parent: 82 - type: Transform -- uid: 6086 - type: Grille - components: - - pos: -35.5,87.5 - parent: 82 - type: Transform -- uid: 6087 - type: Grille - components: - - pos: -34.5,87.5 - parent: 82 - type: Transform -- uid: 6088 - type: Grille - components: - - pos: -33.5,87.5 - parent: 82 - type: Transform -- uid: 6089 - type: Grille - components: - - pos: -32.5,87.5 - parent: 82 - type: Transform -- uid: 6090 - type: Grille - components: - - pos: -24.5,87.5 - parent: 82 - type: Transform -- uid: 6091 - type: Grille - components: - - pos: -22.5,87.5 - parent: 82 - type: Transform -- uid: 6092 - type: Grille - components: - - pos: -20.5,87.5 - parent: 82 - type: Transform -- uid: 6093 - type: Grille - components: - - pos: -18.5,87.5 - parent: 82 - type: Transform -- uid: 6094 - type: Grille - components: - - pos: -16.5,87.5 - parent: 82 - type: Transform -- uid: 6095 - type: Grille - components: - - pos: -14.5,87.5 - parent: 82 - type: Transform -- uid: 6096 - type: Grille - components: - - pos: -12.5,87.5 - parent: 82 - type: Transform -- uid: 6097 - type: Catwalk - components: - - pos: -9.5,90.5 - parent: 82 - type: Transform -- uid: 6098 - type: Catwalk - components: - - pos: -19.5,90.5 - parent: 82 - type: Transform -- uid: 6099 - type: Catwalk - components: - - pos: -33.5,90.5 - parent: 82 - type: Transform -- uid: 6100 - type: Catwalk - components: - - pos: -41.5,90.5 - parent: 82 - type: Transform -- uid: 6101 - type: CableApcExtension - components: - - pos: -42.5,-36.5 - parent: 82 - type: Transform -- uid: 6102 - type: CableHV - components: - - pos: -12.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6103 - type: CableHV - components: - - pos: -16.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6104 - type: Grille - components: - - pos: -9.5,79.5 - parent: 82 - type: Transform -- uid: 6105 - type: Grille - components: - - pos: -9.5,78.5 - parent: 82 - type: Transform -- uid: 6106 - type: Grille - components: - - pos: -9.5,77.5 - parent: 82 - type: Transform -- uid: 6107 - type: Grille - components: - - pos: -9.5,76.5 - parent: 82 - type: Transform -- uid: 6108 - type: Grille - components: - - pos: -9.5,75.5 - parent: 82 - type: Transform -- uid: 6109 - type: Grille - components: - - pos: -9.5,74.5 - parent: 82 - type: Transform -- uid: 6110 - type: Grille - components: - - pos: -9.5,73.5 - parent: 82 - type: Transform -- uid: 6111 - type: Grille - components: - - pos: -9.5,72.5 - parent: 82 - type: Transform -- uid: 6112 - type: Grille - components: - - pos: -9.5,71.5 - parent: 82 - type: Transform -- uid: 6113 - type: Grille - components: - - pos: -9.5,70.5 - parent: 82 - type: Transform -- uid: 6114 - type: Grille - components: - - pos: -9.5,69.5 - parent: 82 - type: Transform -- uid: 6115 - type: Grille - components: - - pos: -9.5,68.5 - parent: 82 - type: Transform -- uid: 6116 - type: Grille - components: - - pos: -9.5,67.5 - parent: 82 - type: Transform -- uid: 6117 - type: Grille - components: - - pos: -9.5,66.5 - parent: 82 - type: Transform -- uid: 6118 - type: Grille - components: - - pos: -9.5,65.5 - parent: 82 - type: Transform -- uid: 6119 - type: Grille - components: - - pos: -9.5,64.5 - parent: 82 - type: Transform -- uid: 6120 - type: Grille - components: - - pos: -9.5,63.5 - parent: 82 - type: Transform -- uid: 6121 - type: Grille - components: - - pos: -9.5,62.5 - parent: 82 - type: Transform -- uid: 6122 - type: Grille - components: - - pos: -9.5,61.5 - parent: 82 - type: Transform -- uid: 6123 - type: Grille - components: - - pos: -9.5,60.5 - parent: 82 - type: Transform -- uid: 6124 - type: Grille - components: - - pos: -9.5,59.5 - parent: 82 - type: Transform -- uid: 6125 - type: Grille - components: - - pos: -9.5,58.5 - parent: 82 - type: Transform -- uid: 6126 - type: Grille - components: - - pos: -9.5,57.5 - parent: 82 - type: Transform -- uid: 6127 - type: Grille - components: - - pos: -10.5,57.5 - parent: 82 - type: Transform -- uid: 6128 - type: Grille - components: - - pos: -11.5,57.5 - parent: 82 - type: Transform -- uid: 6129 - type: Grille - components: - - pos: -12.5,57.5 - parent: 82 - type: Transform -- uid: 6130 - type: Grille - components: - - pos: -13.5,57.5 - parent: 82 - type: Transform -- uid: 6131 - type: Grille - components: - - pos: -14.5,57.5 - parent: 82 - type: Transform -- uid: 6132 - type: Grille - components: - - pos: -15.5,57.5 - parent: 82 - type: Transform -- uid: 6133 - type: Grille - components: - - pos: -16.5,57.5 - parent: 82 - type: Transform -- uid: 6134 - type: Grille - components: - - pos: -17.5,57.5 - parent: 82 - type: Transform -- uid: 6135 - type: Grille - components: - - pos: -30.5,57.5 - parent: 82 - type: Transform -- uid: 6136 - type: Grille - components: - - pos: -31.5,57.5 - parent: 82 - type: Transform -- uid: 6137 - type: Grille - components: - - pos: -32.5,57.5 - parent: 82 - type: Transform -- uid: 6138 - type: Grille - components: - - pos: -33.5,57.5 - parent: 82 - type: Transform -- uid: 6139 - type: Grille - components: - - pos: -34.5,57.5 - parent: 82 - type: Transform -- uid: 6140 - type: Grille - components: - - pos: -35.5,57.5 - parent: 82 - type: Transform -- uid: 6141 - type: Grille - components: - - pos: -36.5,57.5 - parent: 82 - type: Transform -- uid: 6142 - type: Grille - components: - - pos: -37.5,57.5 - parent: 82 - type: Transform -- uid: 6143 - type: Grille - components: - - pos: -38.5,57.5 - parent: 82 - type: Transform -- uid: 6144 - type: Grille - components: - - pos: -39.5,57.5 - parent: 82 - type: Transform -- uid: 6145 - type: Grille - components: - - pos: -40.5,57.5 - parent: 82 - type: Transform -- uid: 6146 - type: Grille - components: - - pos: -41.5,57.5 - parent: 82 - type: Transform -- uid: 6147 - type: Grille - components: - - pos: -41.5,58.5 - parent: 82 - type: Transform -- uid: 6148 - type: Grille - components: - - pos: -41.5,59.5 - parent: 82 - type: Transform -- uid: 6149 - type: Grille - components: - - pos: -41.5,60.5 - parent: 82 - type: Transform -- uid: 6150 - type: Grille - components: - - pos: -41.5,61.5 - parent: 82 - type: Transform -- uid: 6151 - type: Grille - components: - - pos: -41.5,62.5 - parent: 82 - type: Transform -- uid: 6152 - type: Grille - components: - - pos: -41.5,63.5 - parent: 82 - type: Transform -- uid: 6153 - type: Grille - components: - - pos: -41.5,64.5 - parent: 82 - type: Transform -- uid: 6154 - type: Grille - components: - - pos: -41.5,65.5 - parent: 82 - type: Transform -- uid: 6155 - type: Grille - components: - - pos: -41.5,66.5 - parent: 82 - type: Transform -- uid: 6156 - type: Grille - components: - - pos: -41.5,67.5 - parent: 82 - type: Transform -- uid: 6157 - type: Grille - components: - - pos: -41.5,68.5 - parent: 82 - type: Transform -- uid: 6158 - type: Grille - components: - - pos: -41.5,69.5 - parent: 82 - type: Transform -- uid: 6159 - type: Grille - components: - - pos: -41.5,70.5 - parent: 82 - type: Transform -- uid: 6160 - type: Grille - components: - - pos: -41.5,71.5 - parent: 82 - type: Transform -- uid: 6161 - type: Grille - components: - - pos: -41.5,72.5 - parent: 82 - type: Transform -- uid: 6162 - type: Grille - components: - - pos: -41.5,73.5 - parent: 82 - type: Transform -- uid: 6163 - type: Grille - components: - - pos: -41.5,74.5 - parent: 82 - type: Transform -- uid: 6164 - type: Grille - components: - - pos: -41.5,75.5 - parent: 82 - type: Transform -- uid: 6165 - type: Grille - components: - - pos: -41.5,76.5 - parent: 82 - type: Transform -- uid: 6166 - type: Grille - components: - - pos: -41.5,77.5 - parent: 82 - type: Transform -- uid: 6167 - type: Grille - components: - - pos: -41.5,78.5 - parent: 82 - type: Transform -- uid: 6168 - type: Grille - components: - - pos: -41.5,79.5 - parent: 82 - type: Transform -- uid: 6169 - type: CableHV - components: - - pos: -27.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6170 - type: CableHV - components: - - pos: -34.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6171 - type: CableHV - components: - - pos: -38.5,81.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6172 - type: Grille - components: - - pos: -18.5,82.5 - parent: 82 - type: Transform -- uid: 6173 - type: Grille - components: - - pos: -25.5,82.5 - parent: 82 - type: Transform -- uid: 6174 - type: Grille - components: - - pos: -34.5,82.5 - parent: 82 - type: Transform -- uid: 6175 - type: RadiationCollector - components: - - pos: -33.5,69.5 - parent: 82 - type: Transform -- uid: 6176 - type: CableHV - components: - - pos: -33.5,74.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6177 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -12.5,83.5 - parent: 82 - type: Transform -- uid: 6178 - type: CableHV - components: - - pos: -15.5,73.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6179 - type: CableHV - components: - - pos: -14.5,73.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6180 - type: CableHV - components: - - pos: -13.5,73.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6181 - type: CableHV - components: - - pos: -12.5,73.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6182 - type: CableHV - components: - - pos: -35.5,73.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6183 - type: CableHV - components: - - pos: -36.5,73.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6184 - type: CableHV - components: - - pos: -37.5,73.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6185 - type: CableHV - components: - - pos: -38.5,73.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6186 - type: CableHV - components: - - pos: -38.5,73.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6187 - type: CableHV - components: - - pos: -38.5,74.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6188 - type: CableHV - components: - - pos: -38.5,75.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6189 - type: CableHV - components: - - pos: -38.5,76.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6190 - type: CableHV - components: - - pos: -38.5,77.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6191 - type: CableHV - components: - - pos: -38.5,78.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6192 - type: CableHV - components: - - pos: -38.5,79.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6193 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -38.5,83.5 - parent: 82 - type: Transform -- uid: 6194 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -25.5,84.5 - parent: 82 - type: Transform -- uid: 6195 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -16.5,84.5 - parent: 82 - type: Transform -- uid: 6196 - type: CableMV - components: - - pos: -33.5,68.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6197 - type: CableMV - components: - - pos: -20.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6198 - type: CableMV - components: - - pos: -28.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6199 - type: Catwalk - components: - - pos: -29.5,80.5 - parent: 82 - type: Transform -- uid: 6200 - type: Catwalk - components: - - pos: -19.5,80.5 - parent: 82 - type: Transform -- uid: 6201 - type: WallReinforced - components: - - pos: -35.5,82.5 - parent: 82 - type: Transform -- uid: 6202 - type: WallReinforced - components: - - pos: -17.5,83.5 - parent: 82 - type: Transform -- uid: 6203 - type: WallReinforced - components: - - pos: -15.5,83.5 - parent: 82 - type: Transform -- uid: 6204 - type: WallReinforced - components: - - pos: -13.5,83.5 - parent: 82 - type: Transform -- uid: 6205 - type: WallReinforced - components: - - pos: -37.5,81.5 - parent: 82 - type: Transform -- uid: 6206 - type: WallReinforced - components: - - pos: -13.5,82.5 - parent: 82 - type: Transform -- uid: 6207 - type: WallReinforced - components: - - pos: -13.5,80.5 - parent: 82 - type: Transform -- uid: 6208 - type: WallReinforced - components: - - pos: -15.5,82.5 - parent: 82 - type: Transform -- uid: 6209 - type: CableMV - components: - - pos: -32.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6210 - type: CableMV - components: - - pos: -34.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6211 - type: Catwalk - components: - - pos: -35.5,80.5 - parent: 82 - type: Transform -- uid: 6212 - type: Catwalk - components: - - pos: -33.5,80.5 - parent: 82 - type: Transform -- uid: 6213 - type: CableMV - components: - - pos: -24.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6214 - type: CableMV - components: - - pos: -16.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6215 - type: CableMV - components: - - pos: -21.5,79.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6216 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -20.5,84.5 - parent: 82 - type: Transform -- uid: 6217 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -30.5,84.5 - parent: 82 - type: Transform -- uid: 6218 - type: CableHV - components: - - pos: -23.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6219 - type: CableHV - components: - - pos: -12.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6220 - type: SignElectrical - components: - - pos: -29.5,84.5 - parent: 82 - type: Transform -- uid: 6221 - type: Catwalk - components: - - pos: -44.5,89.5 - parent: 82 - type: Transform -- uid: 6222 - type: Catwalk - components: - - pos: -37.5,90.5 - parent: 82 - type: Transform -- uid: 6223 - type: Catwalk - components: - - pos: -29.5,90.5 - parent: 82 - type: Transform -- uid: 6224 - type: Catwalk - components: - - pos: -27.5,90.5 - parent: 82 - type: Transform -- uid: 6225 - type: Catwalk - components: - - pos: -25.5,90.5 - parent: 82 - type: Transform -- uid: 6226 - type: Catwalk - components: - - pos: -23.5,90.5 - parent: 82 - type: Transform -- uid: 6227 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -15.5,34.5 - parent: 82 - type: Transform -- uid: 6228 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -16.5,34.5 - parent: 82 - type: Transform -- uid: 6229 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -32.5,47.5 - parent: 82 - type: Transform -- uid: 6230 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -32.5,48.5 - parent: 82 - type: Transform -- uid: 6231 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -32.5,49.5 - parent: 82 - type: Transform -- uid: 6232 - type: CableHV - components: - - pos: -12.5,79.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6233 - type: CableHV - components: - - pos: -12.5,78.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6234 - type: CableHV - components: - - pos: -12.5,77.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6235 - type: CableHV - components: - - pos: -12.5,76.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6236 - type: CableHV - components: - - pos: -12.5,75.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6237 - type: CableHV - components: - - pos: -12.5,74.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6238 - type: CableHV - components: - - pos: -12.5,72.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6239 - type: CableHV - components: - - pos: -12.5,71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6240 - type: CableHV - components: - - pos: -12.5,70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6241 - type: CableHV - components: - - pos: -12.5,69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6242 - type: CableHV - components: - - pos: -12.5,68.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6243 - type: CableHV - components: - - pos: -12.5,67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6244 - type: CableHV - components: - - pos: -12.5,66.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6245 - type: CableHV - components: - - pos: -12.5,65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6246 - type: CableHV - components: - - pos: -12.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6247 - type: CableHV - components: - - pos: -12.5,63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6248 - type: CableHV - components: - - pos: -12.5,62.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6249 - type: CableHV - components: - - pos: -12.5,61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6250 - type: CableHV - components: - - pos: -12.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6251 - type: CableHV - components: - - pos: -13.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6252 - type: CableHV - components: - - pos: -14.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6253 - type: CableHV - components: - - pos: -15.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6254 - type: CableHV - components: - - pos: -16.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6255 - type: CableHV - components: - - pos: -38.5,72.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6256 - type: CableHV - components: - - pos: -38.5,71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6257 - type: CableHV - components: - - pos: -38.5,70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6258 - type: CableHV - components: - - pos: -38.5,69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6259 - type: CableHV - components: - - pos: -38.5,68.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6260 - type: CableHV - components: - - pos: -38.5,67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6261 - type: CableHV - components: - - pos: -38.5,66.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6262 - type: CableHV - components: - - pos: -38.5,65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6263 - type: CableHV - components: - - pos: -38.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6264 - type: CableHV - components: - - pos: -38.5,63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6265 - type: CableHV - components: - - pos: -38.5,62.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6266 - type: CableHV - components: - - pos: -38.5,61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6267 - type: CableHV - components: - - pos: -38.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6268 - type: CableHV - components: - - pos: -37.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6269 - type: CableHV - components: - - pos: -36.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6270 - type: CableHV - components: - - pos: -35.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6271 - type: CableHV - components: - - pos: -34.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6272 - type: CableHV - components: - - pos: -33.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6273 - type: CableHV - components: - - pos: -32.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6274 - type: CableHV - components: - - pos: -31.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6275 - type: Catwalk - components: - - pos: -19.5,62.5 - parent: 82 - type: Transform -- uid: 6276 - type: Catwalk - components: - - pos: -20.5,62.5 - parent: 82 - type: Transform -- uid: 6277 - type: Catwalk - components: - - pos: -20.5,63.5 - parent: 82 - type: Transform -- uid: 6278 - type: Catwalk - components: - - pos: -19.5,63.5 - parent: 82 - type: Transform -- uid: 6279 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -25.5,61.5 - parent: 82 - type: Transform -- uid: 6280 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -23.5,61.5 - parent: 82 - type: Transform -- uid: 6281 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -21.5,61.5 - parent: 82 - type: Transform -- uid: 6282 - type: CableApcExtension - components: - - pos: -22.5,61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6283 - type: CableApcExtension - components: - - pos: -27.5,61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6284 - type: BlastDoor - components: - - pos: -21.5,50.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -407963.72 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23015 - type: SignalReceiver -- uid: 6285 - type: BlastDoor - components: - - pos: -21.5,48.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -407963.72 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23015 - type: SignalReceiver -- uid: 6286 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -27.5,61.5 - parent: 82 - type: Transform -- uid: 6287 - type: Catwalk - components: - - pos: -18.5,63.5 - parent: 82 - type: Transform -- uid: 6288 - type: Catwalk - components: - - pos: -17.5,63.5 - parent: 82 - type: Transform -- uid: 6289 - type: Catwalk - components: - - pos: -16.5,63.5 - parent: 82 - type: Transform -- uid: 6290 - type: Catwalk - components: - - pos: -15.5,63.5 - parent: 82 - type: Transform -- uid: 6291 - type: Catwalk - components: - - pos: -15.5,64.5 - parent: 82 - type: Transform -- uid: 6292 - type: Catwalk - components: - - pos: -15.5,65.5 - parent: 82 - type: Transform -- uid: 6293 - type: Catwalk - components: - - pos: -15.5,66.5 - parent: 82 - type: Transform -- uid: 6294 - type: Catwalk - components: - - pos: -15.5,67.5 - parent: 82 - type: Transform -- uid: 6295 - type: Catwalk - components: - - pos: -15.5,68.5 - parent: 82 - type: Transform -- uid: 6296 - type: Catwalk - components: - - pos: -15.5,69.5 - parent: 82 - type: Transform -- uid: 6297 - type: Catwalk - components: - - pos: -15.5,70.5 - parent: 82 - type: Transform -- uid: 6298 - type: Catwalk - components: - - pos: -15.5,71.5 - parent: 82 - type: Transform -- uid: 6299 - type: Catwalk - components: - - pos: -15.5,72.5 - parent: 82 - type: Transform -- uid: 6300 - type: Catwalk - components: - - pos: -15.5,73.5 - parent: 82 - type: Transform -- uid: 6301 - type: Catwalk - components: - - pos: -15.5,74.5 - parent: 82 - type: Transform -- uid: 6302 - type: Catwalk - components: - - pos: -15.5,75.5 - parent: 82 - type: Transform -- uid: 6303 - type: Catwalk - components: - - pos: -15.5,76.5 - parent: 82 - type: Transform -- uid: 6304 - type: Catwalk - components: - - pos: -15.5,77.5 - parent: 82 - type: Transform -- uid: 6305 - type: Catwalk - components: - - pos: -15.5,78.5 - parent: 82 - type: Transform -- uid: 6306 - type: Catwalk - components: - - pos: -15.5,79.5 - parent: 82 - type: Transform -- uid: 6307 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -41.5,43.5 - parent: 82 - type: Transform -- uid: 6308 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -37.5,43.5 - parent: 82 - type: Transform -- uid: 6309 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -37.5,46.5 - parent: 82 - type: Transform -- uid: 6310 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -41.5,46.5 - parent: 82 - type: Transform -- uid: 6311 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -38.5,42.5 - parent: 82 - type: Transform -- uid: 6312 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -40.5,42.5 - parent: 82 - type: Transform -- uid: 6313 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -41.5,44.5 - parent: 82 - type: Transform -- uid: 6314 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -37.5,44.5 - parent: 82 - type: Transform -- uid: 6315 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -49.5,-17.5 - parent: 82 - type: Transform -- uid: 6316 - type: ShuttersNormal - components: - - pos: 59.5,-6.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -352141.03 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver -- uid: 6317 - type: TableReinforced - components: - - pos: 34.5,34.5 - parent: 82 - type: Transform -- uid: 6318 - type: AirlockMaintCommandLocked - components: - - rot: 3.141592653589793 rad - pos: 0.5,-15.5 - parent: 82 - type: Transform -- uid: 6319 - type: CableApcExtension - components: - - pos: 16.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6320 - type: CableApcExtension - components: - - pos: 16.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6321 - type: WallSolid - components: - - pos: 33.5,55.5 - parent: 82 - type: Transform -- uid: 6322 - type: WallSolid - components: - - pos: 33.5,54.5 - parent: 82 - type: Transform -- uid: 6323 - type: TableReinforced - components: - - pos: 27.5,57.5 - parent: 82 - type: Transform -- uid: 6324 - type: TableReinforced - components: - - pos: 26.5,57.5 - parent: 82 - type: Transform -- uid: 6325 - type: Catwalk - components: - - pos: -35.5,79.5 - parent: 82 - type: Transform -- uid: 6326 - type: Catwalk - components: - - pos: -35.5,78.5 - parent: 82 - type: Transform -- uid: 6327 - type: Catwalk - components: - - pos: -35.5,77.5 - parent: 82 - type: Transform -- uid: 6328 - type: Catwalk - components: - - pos: -35.5,76.5 - parent: 82 - type: Transform -- uid: 6329 - type: Catwalk - components: - - pos: -35.5,75.5 - parent: 82 - type: Transform -- uid: 6330 - type: Catwalk - components: - - pos: -35.5,74.5 - parent: 82 - type: Transform -- uid: 6331 - type: Catwalk - components: - - pos: -35.5,73.5 - parent: 82 - type: Transform -- uid: 6332 - type: Catwalk - components: - - pos: -35.5,72.5 - parent: 82 - type: Transform -- uid: 6333 - type: Catwalk - components: - - pos: -35.5,71.5 - parent: 82 - type: Transform -- uid: 6334 - type: Catwalk - components: - - pos: -35.5,70.5 - parent: 82 - type: Transform -- uid: 6335 - type: Catwalk - components: - - pos: -35.5,69.5 - parent: 82 - type: Transform -- uid: 6336 - type: Catwalk - components: - - pos: -35.5,68.5 - parent: 82 - type: Transform -- uid: 6337 - type: Catwalk - components: - - pos: -35.5,67.5 - parent: 82 - type: Transform -- uid: 6338 - type: Catwalk - components: - - pos: -35.5,66.5 - parent: 82 - type: Transform -- uid: 6339 - type: Catwalk - components: - - pos: -35.5,65.5 - parent: 82 - type: Transform -- uid: 6340 - type: Catwalk - components: - - pos: -35.5,64.5 - parent: 82 - type: Transform -- uid: 6341 - type: Catwalk - components: - - pos: -35.5,63.5 - parent: 82 - type: Transform -- uid: 6342 - type: Catwalk - components: - - pos: -34.5,63.5 - parent: 82 - type: Transform -- uid: 6343 - type: Catwalk - components: - - pos: -33.5,63.5 - parent: 82 - type: Transform -- uid: 6344 - type: Catwalk - components: - - pos: -32.5,63.5 - parent: 82 - type: Transform -- uid: 6345 - type: Catwalk - components: - - pos: -31.5,63.5 - parent: 82 - type: Transform -- uid: 6346 - type: Catwalk - components: - - pos: -30.5,63.5 - parent: 82 - type: Transform -- uid: 6347 - type: Catwalk - components: - - pos: -30.5,62.5 - parent: 82 - type: Transform -- uid: 6348 - type: Catwalk - components: - - pos: -31.5,62.5 - parent: 82 - type: Transform -- uid: 6349 - type: WallReinforced - components: - - pos: -12.5,33.5 - parent: 82 - type: Transform -- uid: 6350 - type: AirlockEngineeringLocked - components: - - pos: -20.5,34.5 - parent: 82 - type: Transform -- uid: 6351 - type: AirlockEngineeringLocked - components: - - pos: -19.5,34.5 - parent: 82 - type: Transform -- uid: 6352 - type: AirlockEngineeringLocked - components: - - pos: -18.5,34.5 - parent: 82 - type: Transform -- uid: 6353 - type: SignEngineering - components: - - pos: -21.5,34.5 - parent: 82 - type: Transform -- uid: 6354 - type: AirlockEngineeringLocked - components: - - pos: -21.5,37.5 - parent: 82 - type: Transform -- uid: 6355 - type: AirlockEngineeringLocked - components: - - pos: -21.5,38.5 - parent: 82 - type: Transform -- uid: 6356 - type: AirlockEngineeringGlassLocked - components: - - pos: -25.5,40.5 - parent: 82 - type: Transform -- uid: 6357 - type: AirlockEngineeringGlassLocked - components: - - pos: -24.5,40.5 - parent: 82 - type: Transform -- uid: 6358 - type: AirlockEngineeringGlassLocked - components: - - pos: -21.5,42.5 - parent: 82 - type: Transform -- uid: 6359 - type: AirlockEngineeringGlassLocked - components: - - pos: -21.5,41.5 - parent: 82 - type: Transform -- uid: 6360 - type: AirlockEngineeringGlassLocked - components: - - pos: -17.5,40.5 - parent: 82 - type: Transform -- uid: 6361 - type: WallSolid - components: - - pos: -17.5,41.5 - parent: 82 - type: Transform -- uid: 6362 - type: AirlockEngineeringGlassLocked - components: - - pos: -12.5,42.5 - parent: 82 - type: Transform -- uid: 6363 - type: AirlockEngineeringGlassLocked - components: - - pos: -13.5,42.5 - parent: 82 - type: Transform -- uid: 6364 - type: AirlockEngineeringGlassLocked - components: - - pos: -12.5,46.5 - parent: 82 - type: Transform -- uid: 6365 - type: AirlockEngineeringGlassLocked - components: - - pos: -13.5,46.5 - parent: 82 - type: Transform -- uid: 6366 - type: AirlockEngineeringGlassLocked - components: - - pos: -21.5,54.5 - parent: 82 - type: Transform -- uid: 6367 - type: AirlockEngineeringGlassLocked - components: - - pos: -21.5,53.5 - parent: 82 - type: Transform -- uid: 6368 - type: AirlockMaintEngiLocked - components: - - pos: -28.5,37.5 - parent: 82 - type: Transform -- uid: 6369 - type: WindoorEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: -16.5,34.5 - parent: 82 - type: Transform -- uid: 6370 - type: WindoorEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: -15.5,34.5 - parent: 82 - type: Transform -- uid: 6371 - type: AirlockEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: -8.5,43.5 - parent: 82 - type: Transform -- uid: 6372 - type: LockerEngineerFilled - components: - - pos: -27.5,36.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6373 - type: LockerEngineerFilled - components: - - pos: -26.5,36.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6374 - type: LockerEngineerFilled - components: - - pos: -25.5,36.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6375 - type: LockerEngineerFilled - components: - - pos: -24.5,36.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6376 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -27.5,39.5 - parent: 82 - type: Transform -- uid: 6377 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -27.5,38.5 - parent: 82 - type: Transform -- uid: 6378 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -26.5,39.5 - parent: 82 - type: Transform -- uid: 6379 - type: LockerWeldingSuppliesFilled - components: - - pos: -22.5,39.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6380 - type: LockerEngineerFilled - components: - - pos: -9.5,41.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6381 - type: LockerEngineerFilled - components: - - pos: -10.5,41.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6382 - type: LockerChiefEngineerFilled - components: - - pos: -7.5,36.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6383 - type: WardrobeEngineeringFilled - components: - - pos: -11.5,41.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6384 - type: RandomVending - components: - - pos: -23.5,35.5 - parent: 82 - type: Transform -- uid: 6385 - type: VendingMachineEngiDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -22.5,35.5 - parent: 82 - type: Transform -- uid: 6386 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -39.5,9.5 - parent: 82 - type: Transform -- uid: 6387 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -47.5,9.5 - parent: 82 - type: Transform -- uid: 6388 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -46.5,9.5 - parent: 82 - type: Transform -- uid: 6389 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -33.5,9.5 - parent: 82 - type: Transform -- uid: 6390 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -34.5,9.5 - parent: 82 - type: Transform -- uid: 6391 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -35.5,9.5 - parent: 82 - type: Transform -- uid: 6392 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -37.5,9.5 - parent: 82 - type: Transform -- uid: 6393 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -38.5,9.5 - parent: 82 - type: Transform -- uid: 6394 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -39.5,9.5 - parent: 82 - type: Transform -- uid: 6395 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: -13.5,34.5 - parent: 82 - type: Transform -- uid: 6396 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,34.5 - parent: 82 - type: Transform -- uid: 6397 - type: SurveillanceCameraRouterConstructed - components: - - pos: 0.5,43.5 - parent: 82 - type: Transform -- uid: 6398 - type: SurveillanceCameraWirelessRouterEntertainment - components: - - pos: -1.5,41.5 - parent: 82 - type: Transform -- uid: 6399 - type: ComputerPowerMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -16.5,37.5 - parent: 82 - type: Transform -- uid: 6400 - type: ComputerSolarControl - components: - - rot: 1.5707963267948966 rad - pos: -16.5,38.5 - parent: 82 - type: Transform -- uid: 6401 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -16.5,36.5 - parent: 82 - type: Transform -- uid: 6402 - type: ChairOfficeDark - components: - - pos: -16.5,35.5 - parent: 82 - type: Transform -- uid: 6403 - type: ChairOfficeDark - components: - - pos: -15.5,35.5 - parent: 82 - type: Transform -- uid: 6404 - type: HospitalCurtainsOpen - components: - - pos: -7.5,33.5 - parent: 82 - type: Transform -- uid: 6405 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -15.5,38.5 - parent: 82 - type: Transform -- uid: 6406 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -15.5,37.5 - parent: 82 - type: Transform -- uid: 6407 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -13.5,39.5 - parent: 82 - type: Transform -- uid: 6408 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -12.5,39.5 - parent: 82 - type: Transform -- uid: 6409 - type: CrateEngineeringCableBulk - components: - - pos: -11.5,39.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6410 - type: ClothingEyesGlassesMeson - components: - - pos: -16.359737,36.5778 - parent: 82 - type: Transform -- uid: 6411 - type: ClothingEyesGlassesMeson - components: - - pos: -16.65341,36.484146 - parent: 82 - type: Transform -- uid: 6412 - type: ClothingBeltUtilityFilled - components: - - pos: -16.466818,36.706783 - parent: 82 - type: Transform -- uid: 6413 - type: BoxFolderGrey - components: - - pos: 37.609863,18.658398 - parent: 82 - type: Transform -- uid: 6414 - type: Bed - components: - - pos: -7.5,33.5 - parent: 82 - type: Transform -- uid: 6415 - type: WallReinforced - components: - - pos: -11.5,33.5 - parent: 82 - type: Transform -- uid: 6416 - type: WallReinforced - components: - - pos: -11.5,34.5 - parent: 82 - type: Transform -- uid: 6417 - type: trayScanner - components: - - pos: -26.3365,39.764072 - parent: 82 - type: Transform -- uid: 6418 - type: ToolboxElectricalFilled - components: - - pos: -26.736502,39.73907 - parent: 82 - type: Transform -- uid: 6419 - type: ToolboxMechanicalFilled - components: - - pos: -26.9115,39.53907 - parent: 82 - type: Transform -- uid: 6420 - type: ClosetToolFilled - components: - - pos: -23.5,39.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6421 - type: WeldingFuelTankFull - components: - - pos: -12.5,37.5 - parent: 82 - type: Transform -- uid: 6422 - type: WaterTankFull - components: - - pos: -12.5,36.5 - parent: 82 - type: Transform -- uid: 6423 - type: Catwalk - components: - - pos: -28.5,44.5 - parent: 82 - type: Transform -- uid: 6424 - type: Catwalk - components: - - pos: -28.5,43.5 - parent: 82 - type: Transform -- uid: 6425 - type: Catwalk - components: - - pos: -28.5,42.5 - parent: 82 - type: Transform -- uid: 6426 - type: Catwalk - components: - - pos: -27.5,42.5 - parent: 82 - type: Transform -- uid: 6427 - type: Catwalk - components: - - pos: -26.5,42.5 - parent: 82 - type: Transform -- uid: 6428 - type: Catwalk - components: - - pos: -25.5,42.5 - parent: 82 - type: Transform -- uid: 6429 - type: Catwalk - components: - - pos: -24.5,42.5 - parent: 82 - type: Transform -- uid: 6430 - type: Catwalk - components: - - pos: -23.5,42.5 - parent: 82 - type: Transform -- uid: 6431 - type: Catwalk - components: - - pos: -22.5,42.5 - parent: 82 - type: Transform -- uid: 6432 - type: Catwalk - components: - - pos: -25.5,43.5 - parent: 82 - type: Transform -- uid: 6433 - type: Catwalk - components: - - pos: -25.5,44.5 - parent: 82 - type: Transform -- uid: 6434 - type: Catwalk - components: - - pos: -22.5,43.5 - parent: 82 - type: Transform -- uid: 6435 - type: Catwalk - components: - - pos: -22.5,44.5 - parent: 82 - type: Transform -- uid: 6436 - type: PartRodMetal - components: - - pos: -27.464884,38.63537 - parent: 82 - type: Transform -- uid: 6437 - type: SheetSteel - components: - - pos: -27.489885,39.46037 - parent: 82 - type: Transform -- uid: 6438 - type: SheetSteel - components: - - pos: -24.846443,47.53965 - parent: 82 - type: Transform -- uid: 6439 - type: SheetPlasteel - components: - - pos: -25.271444,47.58965 - parent: 82 - type: Transform -- uid: 6440 - type: SheetGlass - components: - - pos: -27.489885,39.03537 - parent: 82 - type: Transform -- uid: 6441 - type: SheetGlass - components: - - pos: -25.739885,47.610367 - parent: 82 - type: Transform -- uid: 6442 - type: SheetRGlass - components: - - pos: -26.639883,47.58537 - parent: 82 - type: Transform -- uid: 6443 - type: SheetRPGlass - components: - - pos: -26.214886,47.610367 - parent: 82 - type: Transform -- uid: 6444 - type: SheetSteel - components: - - pos: -24.346445,47.53965 - parent: 82 - type: Transform -- uid: 6445 - type: WallReinforced - components: - - pos: -32.5,25.5 - parent: 82 - type: Transform -- uid: 6446 - type: ReinforcedWindow - components: - - pos: -44.5,17.5 - parent: 82 - type: Transform -- uid: 6447 - type: WallReinforced - components: - - pos: -28.5,27.5 - parent: 82 - type: Transform -- uid: 6448 - type: WallReinforced - components: - - pos: -32.5,27.5 - parent: 82 - type: Transform -- uid: 6449 - type: WallReinforced - components: - - pos: -32.5,28.5 - parent: 82 - type: Transform -- uid: 6450 - type: WallReinforced - components: - - pos: -31.5,28.5 - parent: 82 - type: Transform -- uid: 6451 - type: WallReinforced - components: - - pos: -25.5,24.5 - parent: 82 - type: Transform -- uid: 6452 - type: WallReinforced - components: - - pos: -31.5,24.5 - parent: 82 - type: Transform -- uid: 6453 - type: WallReinforced - components: - - pos: -32.5,24.5 - parent: 82 - type: Transform -- uid: 6454 - type: TableWood - components: - - pos: -7.5,35.5 - parent: 82 - type: Transform -- uid: 6455 - type: TableWood - components: - - pos: -7.5,34.5 - parent: 82 - type: Transform -- uid: 6456 - type: TableWood - components: - - pos: -9.5,35.5 - parent: 82 - type: Transform -- uid: 6457 - type: TableWood - components: - - pos: -9.5,34.5 - parent: 82 - type: Transform -- uid: 6458 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -8.5,35.5 - parent: 82 - type: Transform -- uid: 6459 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -8.5,34.5 - parent: 82 - type: Transform -- uid: 6460 - type: BedsheetCE - components: - - rot: -1.5707963267948966 rad - pos: -7.5,33.5 - parent: 82 - type: Transform -- uid: 6461 - type: AcousticGuitarInstrument - components: - - pos: -9.519083,35.601566 - parent: 82 - type: Transform -- uid: 6462 - type: RCD - components: - - pos: -9.494085,35.126568 - parent: 82 - type: Transform -- uid: 6463 - type: RCDAmmo - components: - - pos: -9.719086,34.851566 - parent: 82 - type: Transform -- uid: 6464 - type: RCDAmmo - components: - - pos: -9.519083,34.701565 - parent: 82 - type: Transform -- uid: 6465 - type: Dropper - components: - - pos: -34.35063,-28.573547 - parent: 82 - type: Transform -- uid: 6466 - type: Grille - components: - - pos: 3.5,60.5 - parent: 82 - type: Transform -- uid: 6467 - type: Grille - components: - - pos: -0.5,52.5 - parent: 82 - type: Transform -- uid: 6468 - type: ReinforcedWindow - components: - - pos: -0.5,53.5 - parent: 82 - type: Transform -- uid: 6469 - type: ReinforcedWindow - components: - - pos: -0.5,52.5 - parent: 82 - type: Transform -- uid: 6470 - type: ReinforcedWindow - components: - - pos: 1.5,53.5 - parent: 82 - type: Transform -- uid: 6471 - type: ReinforcedWindow - components: - - pos: 1.5,52.5 - parent: 82 - type: Transform -- uid: 6472 - type: WallReinforced - components: - - pos: -0.5,54.5 - parent: 82 - type: Transform -- uid: 6473 - type: WallReinforced - components: - - pos: -1.5,54.5 - parent: 82 - type: Transform -- uid: 6474 - type: WallReinforced - components: - - pos: -2.5,54.5 - parent: 82 - type: Transform -- uid: 6475 - type: WallReinforced - components: - - pos: -2.5,55.5 - parent: 82 - type: Transform -- uid: 6476 - type: Grille - components: - - pos: -2.5,60.5 - parent: 82 - type: Transform -- uid: 6477 - type: Grille - components: - - pos: -2.5,59.5 - parent: 82 - type: Transform -- uid: 6478 - type: WallReinforced - components: - - pos: -2.5,56.5 - parent: 82 - type: Transform -- uid: 6479 - type: WallReinforced - components: - - pos: 1.5,54.5 - parent: 82 - type: Transform -- uid: 6480 - type: WallReinforced - components: - - pos: 2.5,54.5 - parent: 82 - type: Transform -- uid: 6481 - type: WallReinforced - components: - - pos: 3.5,54.5 - parent: 82 - type: Transform -- uid: 6482 - type: WallReinforced - components: - - pos: 3.5,55.5 - parent: 82 - type: Transform -- uid: 6483 - type: WallReinforced - components: - - pos: 3.5,56.5 - parent: 82 - type: Transform -- uid: 6484 - type: Grille - components: - - pos: -2.5,58.5 - parent: 82 - type: Transform -- uid: 6485 - type: Grille - components: - - pos: -2.5,57.5 - parent: 82 - type: Transform -- uid: 6486 - type: Grille - components: - - pos: 3.5,59.5 - parent: 82 - type: Transform -- uid: 6487 - type: Grille - components: - - pos: 3.5,58.5 - parent: 82 - type: Transform -- uid: 6488 - type: Grille - components: - - pos: 3.5,57.5 - parent: 82 - type: Transform -- uid: 6489 - type: Grille - components: - - pos: -0.5,62.5 - parent: 82 - type: Transform -- uid: 6490 - type: Grille - components: - - pos: 0.5,62.5 - parent: 82 - type: Transform -- uid: 6491 - type: Grille - components: - - pos: 1.5,62.5 - parent: 82 - type: Transform -- uid: 6492 - type: ReinforcedWindow - components: - - pos: -0.5,62.5 - parent: 82 - type: Transform -- uid: 6493 - type: ReinforcedWindow - components: - - pos: 0.5,62.5 - parent: 82 - type: Transform -- uid: 6494 - type: ReinforcedWindow - components: - - pos: 1.5,62.5 - parent: 82 - type: Transform -- uid: 6495 - type: ReinforcedWindow - components: - - pos: -2.5,60.5 - parent: 82 - type: Transform -- uid: 6496 - type: ReinforcedWindow - components: - - pos: -2.5,59.5 - parent: 82 - type: Transform -- uid: 6497 - type: ReinforcedWindow - components: - - pos: -2.5,58.5 - parent: 82 - type: Transform -- uid: 6498 - type: ReinforcedWindow - components: - - pos: -2.5,57.5 - parent: 82 - type: Transform -- uid: 6499 - type: ReinforcedWindow - components: - - pos: 3.5,60.5 - parent: 82 - type: Transform -- uid: 6500 - type: ReinforcedWindow - components: - - pos: 3.5,59.5 - parent: 82 - type: Transform -- uid: 6501 - type: ReinforcedWindow - components: - - pos: 3.5,58.5 - parent: 82 - type: Transform -- uid: 6502 - type: ReinforcedWindow - components: - - pos: 3.5,57.5 - parent: 82 - type: Transform -- uid: 6503 - type: WallReinforced - components: - - pos: -1.5,62.5 - parent: 82 - type: Transform -- uid: 6504 - type: WallReinforced - components: - - pos: -2.5,62.5 - parent: 82 - type: Transform -- uid: 6505 - type: WallReinforced - components: - - pos: -2.5,61.5 - parent: 82 - type: Transform -- uid: 6506 - type: WallReinforced - components: - - pos: 2.5,62.5 - parent: 82 - type: Transform -- uid: 6507 - type: WallReinforced - components: - - pos: 3.5,62.5 - parent: 82 - type: Transform -- uid: 6508 - type: WallReinforced - components: - - pos: 3.5,61.5 - parent: 82 - type: Transform -- uid: 6509 - type: GravityGenerator - components: - - pos: 0.5,59.5 - parent: 82 - type: Transform -- uid: 6510 - type: WindowReinforcedDirectional - components: - - pos: -1.5,57.5 - parent: 82 - type: Transform -- uid: 6511 - type: WindowReinforcedDirectional - components: - - pos: -0.5,57.5 - parent: 82 - type: Transform -- uid: 6512 - type: WindowReinforcedDirectional - components: - - pos: 1.5,57.5 - parent: 82 - type: Transform -- uid: 6513 - type: WindowReinforcedDirectional - components: - - pos: 2.5,57.5 - parent: 82 - type: Transform -- uid: 6514 - type: ReinforcedWindow - components: - - pos: -1.5,52.5 - parent: 82 - type: Transform -- uid: 6515 - type: ReinforcedWindow - components: - - pos: 2.5,52.5 - parent: 82 - type: Transform -- uid: 6516 - type: Grille - components: - - pos: -53.5,54.5 - parent: 82 - type: Transform -- uid: 6517 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -31.5,10.5 - parent: 82 - type: Transform -- uid: 6518 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -32.5,10.5 - parent: 82 - type: Transform -- uid: 6519 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -32.5,9.5 - parent: 82 - type: Transform -- uid: 6520 - type: filingCabinetTall - components: - - pos: -55.5,1.5 - parent: 82 - type: Transform -- uid: 6521 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -34.5,20.5 - parent: 82 - type: Transform -- uid: 6522 - type: Grille - components: - - pos: -34.5,19.5 - parent: 82 - type: Transform -- uid: 6523 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,16.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6524 - type: Table - components: - - pos: -32.5,-10.5 - parent: 82 - type: Transform -- uid: 6525 - type: VendingMachineChefDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,-12.5 - parent: 82 - type: Transform -- uid: 6526 - type: WallSolid - components: - - pos: -39.5,-12.5 - parent: 82 - type: Transform -- uid: 6527 - type: WallReinforced - components: - - pos: -11.5,32.5 - parent: 82 - type: Transform -- uid: 6528 - type: SpawnPointAssistant - components: - - pos: -0.5,-37.5 - parent: 82 - type: Transform -- uid: 6529 - type: ShuttersNormalOpen - components: - - pos: -30.5,-9.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26135 - type: SignalReceiver -- uid: 6530 - type: WallReinforced - components: - - pos: -47.5,-0.5 - parent: 82 - type: Transform -- uid: 6531 - type: WallReinforced - components: - - pos: -47.5,-1.5 - parent: 82 - type: Transform -- uid: 6532 - type: WallReinforced - components: - - pos: -47.5,0.5 - parent: 82 - type: Transform -- uid: 6533 - type: WallReinforced - components: - - pos: -47.5,1.5 - parent: 82 - type: Transform -- uid: 6534 - type: WallReinforced - components: - - pos: -47.5,2.5 - parent: 82 - type: Transform -- uid: 6535 - type: WallReinforced - components: - - pos: -47.5,3.5 - parent: 82 - type: Transform -- uid: 6536 - type: WallReinforced - components: - - pos: -46.5,3.5 - parent: 82 - type: Transform -- uid: 6537 - type: WallReinforced - components: - - pos: -42.5,3.5 - parent: 82 - type: Transform -- uid: 6538 - type: WallReinforced - components: - - pos: -42.5,7.5 - parent: 82 - type: Transform -- uid: 6539 - type: WallReinforced - components: - - pos: -41.5,7.5 - parent: 82 - type: Transform -- uid: 6540 - type: WallReinforced - components: - - pos: -40.5,7.5 - parent: 82 - type: Transform -- uid: 6541 - type: WallReinforced - components: - - pos: -36.5,7.5 - parent: 82 - type: Transform -- uid: 6542 - type: WallReinforced - components: - - pos: -32.5,7.5 - parent: 82 - type: Transform -- uid: 6543 - type: WallReinforced - components: - - pos: -31.5,7.5 - parent: 82 - type: Transform -- uid: 6544 - type: ReinforcedWindow - components: - - pos: -45.5,17.5 - parent: 82 - type: Transform -- uid: 6545 - type: Window - components: - - pos: -10.5,-28.5 - parent: 82 - type: Transform -- uid: 6546 - type: Window - components: - - pos: -9.5,-28.5 - parent: 82 - type: Transform -- uid: 6547 - type: ReinforcedWindow - components: - - pos: -23.5,-36.5 - parent: 82 - type: Transform -- uid: 6548 - type: ReinforcedWindow - components: - - pos: -25.5,-36.5 - parent: 82 - type: Transform -- uid: 6549 - type: ReinforcedWindow - components: - - pos: -28.5,-39.5 - parent: 82 - type: Transform -- uid: 6550 - type: ReinforcedWindow - components: - - pos: -28.5,-37.5 - parent: 82 - type: Transform -- uid: 6551 - type: ReinforcedWindow - components: - - pos: -44.5,15.5 - parent: 82 - type: Transform -- uid: 6552 - type: ReinforcedWindow - components: - - pos: -45.5,15.5 - parent: 82 - type: Transform -- uid: 6553 - type: WallSolid - components: - - pos: -39.5,-5.5 - parent: 82 - type: Transform -- uid: 6554 - type: CarpetPurple - components: - - pos: -22.5,-13.5 - parent: 82 - type: Transform -- uid: 6555 - type: CarpetPurple - components: - - pos: -23.5,-10.5 - parent: 82 - type: Transform -- uid: 6556 - type: CarpetPurple - components: - - pos: -23.5,-9.5 - parent: 82 - type: Transform -- uid: 6557 - type: CarpetPurple - components: - - pos: -22.5,-12.5 - parent: 82 - type: Transform -- uid: 6558 - type: Grille - components: - - pos: -33.5,7.5 - parent: 82 - type: Transform -- uid: 6559 - type: Grille - components: - - pos: -34.5,7.5 - parent: 82 - type: Transform -- uid: 6560 - type: Grille - components: - - pos: -35.5,7.5 - parent: 82 - type: Transform -- uid: 6561 - type: Grille - components: - - pos: -37.5,7.5 - parent: 82 - type: Transform -- uid: 6562 - type: Grille - components: - - pos: -38.5,7.5 - parent: 82 - type: Transform -- uid: 6563 - type: Grille - components: - - pos: -39.5,7.5 - parent: 82 - type: Transform -- uid: 6564 - type: Grille - components: - - pos: -42.5,6.5 - parent: 82 - type: Transform -- uid: 6565 - type: Grille - components: - - pos: -42.5,5.5 - parent: 82 - type: Transform -- uid: 6566 - type: Grille - components: - - pos: -42.5,4.5 - parent: 82 - type: Transform -- uid: 6567 - type: Grille - components: - - pos: -43.5,3.5 - parent: 82 - type: Transform -- uid: 6568 - type: Grille - components: - - pos: -44.5,3.5 - parent: 82 - type: Transform -- uid: 6569 - type: Grille - components: - - pos: -45.5,3.5 - parent: 82 - type: Transform -- uid: 6570 - type: ReinforcedWindow - components: - - pos: -41.5,-1.5 - parent: 82 - type: Transform -- uid: 6571 - type: ReinforcedWindow - components: - - pos: -40.5,-1.5 - parent: 82 - type: Transform -- uid: 6572 - type: ReinforcedWindow - components: - - pos: -39.5,-1.5 - parent: 82 - type: Transform -- uid: 6573 - type: ReinforcedWindow - components: - - pos: -38.5,-1.5 - parent: 82 - type: Transform -- uid: 6574 - type: ReinforcedWindow - components: - - pos: -36.5,-1.5 - parent: 82 - type: Transform -- uid: 6575 - type: ReinforcedWindow - components: - - pos: -35.5,-1.5 - parent: 82 - type: Transform -- uid: 6576 - type: Grille - components: - - pos: -34.5,-1.5 - parent: 82 - type: Transform -- uid: 6577 - type: ReinforcedWindow - components: - - pos: -33.5,-1.5 - parent: 82 - type: Transform -- uid: 6578 - type: ReinforcedWindow - components: - - pos: -39.5,7.5 - parent: 82 - type: Transform -- uid: 6579 - type: ReinforcedWindow - components: - - pos: -38.5,7.5 - parent: 82 - type: Transform -- uid: 6580 - type: ReinforcedWindow - components: - - pos: -37.5,7.5 - parent: 82 - type: Transform -- uid: 6581 - type: ReinforcedWindow - components: - - pos: -33.5,7.5 - parent: 82 - type: Transform -- uid: 6582 - type: ReinforcedWindow - components: - - pos: -34.5,7.5 - parent: 82 - type: Transform -- uid: 6583 - type: ReinforcedWindow - components: - - pos: -35.5,7.5 - parent: 82 - type: Transform -- uid: 6584 - type: ReinforcedWindow - components: - - pos: -42.5,6.5 - parent: 82 - type: Transform -- uid: 6585 - type: ReinforcedWindow - components: - - pos: -42.5,5.5 - parent: 82 - type: Transform -- uid: 6586 - type: ReinforcedWindow - components: - - pos: -42.5,4.5 - parent: 82 - type: Transform -- uid: 6587 - type: ReinforcedWindow - components: - - pos: -45.5,3.5 - parent: 82 - type: Transform -- uid: 6588 - type: ReinforcedWindow - components: - - pos: -44.5,3.5 - parent: 82 - type: Transform -- uid: 6589 - type: ReinforcedWindow - components: - - pos: -43.5,3.5 - parent: 82 - type: Transform -- uid: 6590 - type: ReinforcedWindow - components: - - pos: -31.5,4.5 - parent: 82 - type: Transform -- uid: 6591 - type: ReinforcedWindow - components: - - pos: -31.5,3.5 - parent: 82 - type: Transform -- uid: 6592 - type: ReinforcedWindow - components: - - pos: -31.5,2.5 - parent: 82 - type: Transform -- uid: 6593 - type: ReinforcedWindow - components: - - pos: -31.5,1.5 - parent: 82 - type: Transform -- uid: 6594 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 10.5,-5.5 - parent: 82 - type: Transform - - devices: - - 13724 - - 13725 - - 20671 - - 20547 - - 13647 - - 13648 - - 22460 - - 22511 - - 22396 - - 22465 - - 22468 - - 22469 - type: DeviceList -- uid: 6595 - type: CarpetPurple - components: - - pos: -23.5,-12.5 - parent: 82 - type: Transform -- uid: 6596 - type: WallReinforced - components: - - pos: -17.5,34.5 - parent: 82 - type: Transform -- uid: 6597 - type: CarpetPurple - components: - - pos: -26.5,-6.5 - parent: 82 - type: Transform -- uid: 6598 - type: CarpetPurple - components: - - pos: -31.5,-6.5 - parent: 82 - type: Transform -- uid: 6599 - type: CarpetPurple - components: - - pos: -22.5,-9.5 - parent: 82 - type: Transform -- uid: 6600 - type: AirlockKitchenLocked - components: - - pos: -39.5,-7.5 - parent: 82 - type: Transform -- uid: 6601 - type: CarpetPurple - components: - - pos: -23.5,-6.5 - parent: 82 - type: Transform -- uid: 6602 - type: CarpetPurple - components: - - pos: -23.5,-14.5 - parent: 82 - type: Transform -- uid: 6603 - type: CarpetPurple - components: - - pos: -23.5,-13.5 - parent: 82 - type: Transform -- uid: 6604 - type: WallReinforced - components: - - pos: -32.5,32.5 - parent: 82 - type: Transform -- uid: 6605 - type: WallReinforced - components: - - pos: -32.5,33.5 - parent: 82 - type: Transform -- uid: 6606 - type: WallReinforced - components: - - pos: -32.5,34.5 - parent: 82 - type: Transform -- uid: 6607 - type: WallReinforced - components: - - pos: -32.5,35.5 - parent: 82 - type: Transform -- uid: 6608 - type: WallReinforced - components: - - pos: -32.5,36.5 - parent: 82 - type: Transform -- uid: 6609 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -30.5,35.5 - parent: 82 - type: Transform -- uid: 6610 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -32.5,46.5 - parent: 82 - type: Transform -- uid: 6611 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -31.5,35.5 - parent: 82 - type: Transform -- uid: 6612 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -31.5,38.5 - parent: 82 - type: Transform -- uid: 6613 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -32.5,45.5 - parent: 82 - type: Transform -- uid: 6614 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -49.5,14.5 - parent: 82 - type: Transform -- uid: 6615 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -32.5,44.5 - parent: 82 - type: Transform -- uid: 6616 - type: ReinforcedGirder - components: - - pos: -32.5,43.5 - parent: 82 - type: Transform -- uid: 6617 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -32.5,44.5 - parent: 82 - type: Transform -- uid: 6618 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -32.5,45.5 - parent: 82 - type: Transform -- uid: 6619 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -32.5,46.5 - parent: 82 - type: Transform -- uid: 6620 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -49.5,13.5 - parent: 82 - type: Transform -- uid: 6621 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -50.5,12.5 - parent: 82 - type: Transform -- uid: 6622 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -50.5,10.5 - parent: 82 - type: Transform -- uid: 6623 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -54.5,10.5 - parent: 82 - type: Transform -- uid: 6624 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -54.5,12.5 - parent: 82 - type: Transform -- uid: 6625 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -43.5,9.5 - parent: 82 - type: Transform -- uid: 6626 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -33.5,38.5 - parent: 82 - type: Transform -- uid: 6627 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -34.5,38.5 - parent: 82 - type: Transform -- uid: 6628 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -38.5,38.5 - parent: 82 - type: Transform -- uid: 6629 - type: ComputerFrame - components: - - rot: 3.141592653589793 rad - pos: -41.5,39.5 - parent: 82 - type: Transform -- uid: 6630 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -46.5,38.5 - parent: 82 - type: Transform -- uid: 6631 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -45.5,38.5 - parent: 82 - type: Transform -- uid: 6632 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -40.5,38.5 - parent: 82 - type: Transform -- uid: 6633 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -41.5,38.5 - parent: 82 - type: Transform -- uid: 6634 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -46.5,39.5 - parent: 82 - type: Transform -- uid: 6635 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -46.5,43.5 - parent: 82 - type: Transform -- uid: 6636 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -46.5,44.5 - parent: 82 - type: Transform -- uid: 6637 - type: WallReinforced - components: - - pos: -46.5,53.5 - parent: 82 - type: Transform -- uid: 6638 - type: WallReinforced - components: - - pos: -49.5,55.5 - parent: 82 - type: Transform -- uid: 6639 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -46.5,48.5 - parent: 82 - type: Transform -- uid: 6640 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -36.5,49.5 - parent: 82 - type: Transform -- uid: 6641 - type: WallReinforced - components: - - pos: -45.5,53.5 - parent: 82 - type: Transform -- uid: 6642 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -41.5,53.5 - parent: 82 - type: Transform -- uid: 6643 - type: WallReinforced - components: - - pos: -44.5,55.5 - parent: 82 - type: Transform -- uid: 6644 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -39.5,53.5 - parent: 82 - type: Transform -- uid: 6645 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -38.5,53.5 - parent: 82 - type: Transform -- uid: 6646 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -34.5,53.5 - parent: 82 - type: Transform -- uid: 6647 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -33.5,53.5 - parent: 82 - type: Transform -- uid: 6648 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -32.5,53.5 - parent: 82 - type: Transform -- uid: 6649 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -32.5,52.5 - parent: 82 - type: Transform -- uid: 6650 - type: SurveillanceCameraRouterCommand - components: - - pos: 3.5,43.5 - parent: 82 - type: Transform -- uid: 6651 - type: SurveillanceCameraRouterSupply - components: - - pos: 1.5,43.5 - parent: 82 - type: Transform -- uid: 6652 - type: ComputerSurveillanceWirelessCameraMonitor - components: - - pos: 1.5,47.5 - parent: 82 - type: Transform -- uid: 6653 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -46.5,49.5 - parent: 82 - type: Transform -- uid: 6654 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -35.5,49.5 - parent: 82 - type: Transform -- uid: 6655 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -43.5,49.5 - parent: 82 - type: Transform -- uid: 6656 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -42.5,49.5 - parent: 82 - type: Transform -- uid: 6657 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -39.5,49.5 - parent: 82 - type: Transform -- uid: 6658 - type: ComputerSurveillanceCameraMonitor - components: - - pos: 3.5,47.5 - parent: 82 - type: Transform -- uid: 6659 - type: Girder - components: - - pos: 32.5,61.5 - parent: 82 - type: Transform -- uid: 6660 - type: WallReinforced - components: - - pos: 30.5,64.5 - parent: 82 - type: Transform -- uid: 6661 - type: Catwalk - components: - - pos: 31.5,68.5 - parent: 82 - type: Transform -- uid: 6662 - type: CableApcExtension - components: - - pos: 31.5,66.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6663 - type: CableApcExtension - components: - - pos: 31.5,67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6664 - type: WallReinforced - components: - - pos: 34.5,70.5 - parent: 82 - type: Transform -- uid: 6665 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -57.5,6.5 - parent: 82 - type: Transform -- uid: 6666 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -42.5,38.5 - parent: 82 - type: Transform -- uid: 6667 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -43.5,38.5 - parent: 82 - type: Transform -- uid: 6668 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -44.5,38.5 - parent: 82 - type: Transform -- uid: 6669 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -46.5,40.5 - parent: 82 - type: Transform -- uid: 6670 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -46.5,41.5 - parent: 82 - type: Transform -- uid: 6671 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -46.5,42.5 - parent: 82 - type: Transform -- uid: 6672 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -46.5,45.5 - parent: 82 - type: Transform -- uid: 6673 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -46.5,46.5 - parent: 82 - type: Transform -- uid: 6674 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -46.5,47.5 - parent: 82 - type: Transform -- uid: 6675 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -46.5,50.5 - parent: 82 - type: Transform -- uid: 6676 - type: WallReinforced - components: - - pos: -46.5,51.5 - parent: 82 - type: Transform -- uid: 6677 - type: WallReinforced - components: - - pos: -38.5,54.5 - parent: 82 - type: Transform -- uid: 6678 - type: WallReinforced - components: - - pos: -39.5,55.5 - parent: 82 - type: Transform -- uid: 6679 - type: WallReinforced - components: - - pos: -45.5,55.5 - parent: 82 - type: Transform -- uid: 6680 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -37.5,53.5 - parent: 82 - type: Transform -- uid: 6681 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -36.5,53.5 - parent: 82 - type: Transform -- uid: 6682 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -35.5,53.5 - parent: 82 - type: Transform -- uid: 6683 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -31.5,53.5 - parent: 82 - type: Transform -- uid: 6684 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -30.5,53.5 - parent: 82 - type: Transform -- uid: 6685 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -30.5,53.5 - parent: 82 - type: Transform -- uid: 6686 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -31.5,53.5 - parent: 82 - type: Transform -- uid: 6687 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -35.5,38.5 - parent: 82 - type: Transform -- uid: 6688 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -36.5,38.5 - parent: 82 - type: Transform -- uid: 6689 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -37.5,38.5 - parent: 82 - type: Transform -- uid: 6690 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -44.5,38.5 - parent: 82 - type: Transform -- uid: 6691 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -43.5,38.5 - parent: 82 - type: Transform -- uid: 6692 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -42.5,38.5 - parent: 82 - type: Transform -- uid: 6693 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -37.5,38.5 - parent: 82 - type: Transform -- uid: 6694 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -36.5,38.5 - parent: 82 - type: Transform -- uid: 6695 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -35.5,38.5 - parent: 82 - type: Transform -- uid: 6696 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -46.5,42.5 - parent: 82 - type: Transform -- uid: 6697 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -46.5,41.5 - parent: 82 - type: Transform -- uid: 6698 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -46.5,40.5 - parent: 82 - type: Transform -- uid: 6699 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -46.5,47.5 - parent: 82 - type: Transform -- uid: 6700 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -46.5,46.5 - parent: 82 - type: Transform -- uid: 6701 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -46.5,45.5 - parent: 82 - type: Transform -- uid: 6702 - type: WallReinforced - components: - - pos: -53.5,51.5 - parent: 82 - type: Transform -- uid: 6703 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -46.5,50.5 - parent: 82 - type: Transform -- uid: 6704 - type: WallReinforced - components: - - pos: -38.5,55.5 - parent: 82 - type: Transform -- uid: 6705 - type: WallReinforced - components: - - pos: -40.5,55.5 - parent: 82 - type: Transform -- uid: 6706 - type: WallReinforced - components: - - pos: -50.5,55.5 - parent: 82 - type: Transform -- uid: 6707 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -37.5,53.5 - parent: 82 - type: Transform -- uid: 6708 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -36.5,53.5 - parent: 82 - type: Transform -- uid: 6709 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -35.5,53.5 - parent: 82 - type: Transform -- uid: 6710 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -32.5,40.5 - parent: 82 - type: Transform -- uid: 6711 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -32.5,39.5 - parent: 82 - type: Transform -- uid: 6712 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -32.5,38.5 - parent: 82 - type: Transform -- uid: 6713 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -41.5,49.5 - parent: 82 - type: Transform -- uid: 6714 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -37.5,49.5 - parent: 82 - type: Transform -- uid: 6715 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -38.5,49.5 - parent: 82 - type: Transform -- uid: 6716 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: -42.5,44.5 - parent: 82 - type: Transform -- uid: 6717 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: -42.5,43.5 - parent: 82 - type: Transform -- uid: 6718 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: -44.5,43.5 - parent: 82 - type: Transform -- uid: 6719 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: -44.5,44.5 - parent: 82 - type: Transform -- uid: 6720 - type: ComputerBroken - components: - - rot: 3.141592653589793 rad - pos: -40.5,39.5 - parent: 82 - type: Transform -- uid: 6721 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -31.5,33.5 - parent: 82 - type: Transform -- uid: 6722 - type: CrateMaterialPlasteel - components: - - pos: -41.5,42.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6723 - type: CrateMaterialSteel - components: - - pos: -42.5,42.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6724 - type: CrateMaterialPlasma - components: - - pos: -37.5,42.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6725 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -45.5,17.5 - parent: 82 - type: Transform -- uid: 6726 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -38.5,9.5 - parent: 82 - type: Transform -- uid: 6727 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -37.5,9.5 - parent: 82 - type: Transform -- uid: 6728 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -35.5,9.5 - parent: 82 - type: Transform -- uid: 6729 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -34.5,9.5 - parent: 82 - type: Transform -- uid: 6730 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -33.5,9.5 - parent: 82 - type: Transform -- uid: 6731 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,15.5 - parent: 82 - type: Transform -- uid: 6732 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -45.5,15.5 - parent: 82 - type: Transform -- uid: 6733 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,17.5 - parent: 82 - type: Transform -- uid: 6734 - type: VendingMachineTankDispenserEngineering - components: - - flags: SessionSpecific - type: MetaData - - pos: -28.5,56.5 - parent: 82 - type: Transform -- uid: 6735 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: -22.5,54.5 - parent: 82 - type: Transform -- uid: 6736 - type: SMESBasicEmpty - components: - - pos: -22.5,55.5 - parent: 82 - type: Transform -- uid: 6737 - type: SubstationBasic - components: - - pos: -22.5,56.5 - parent: 82 - type: Transform -- uid: 6738 - type: CableMV - components: - - pos: -23.5,55.5 - parent: 82 - type: Transform -- uid: 6739 - type: CableMV - components: - - pos: -23.5,54.5 - parent: 82 - type: Transform -- uid: 6740 - type: CableMV - components: - - pos: -23.5,56.5 - parent: 82 - type: Transform -- uid: 6741 - type: CableMV - components: - - pos: -23.5,57.5 - parent: 82 - type: Transform -- uid: 6742 - type: CableMV - components: - - pos: -23.5,58.5 - parent: 82 - type: Transform -- uid: 6743 - type: CableMV - components: - - pos: -23.5,59.5 - parent: 82 - type: Transform -- uid: 6744 - type: CableMV - components: - - pos: -23.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6745 - type: CableMV - components: - - pos: -24.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6746 - type: CableMV - components: - - pos: -25.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6747 - type: CableMV - components: - - pos: -26.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6748 - type: CableMV - components: - - pos: -27.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6749 - type: CableMV - components: - - pos: -22.5,57.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6750 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -22.5,57.5 - parent: 82 - type: Transform -- uid: 6751 - type: CableApcExtension - components: - - pos: -22.5,57.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6752 - type: CableApcExtension - components: - - pos: -23.5,57.5 - parent: 82 - type: Transform -- uid: 6753 - type: CableApcExtension - components: - - pos: -23.5,56.5 - parent: 82 - type: Transform -- uid: 6754 - type: CableApcExtension - components: - - pos: -23.5,55.5 - parent: 82 - type: Transform -- uid: 6755 - type: CableApcExtension - components: - - pos: -23.5,54.5 - parent: 82 - type: Transform -- uid: 6756 - type: CableApcExtension - components: - - pos: -23.5,53.5 - parent: 82 - type: Transform -- uid: 6757 - type: CableApcExtension - components: - - pos: -24.5,53.5 - parent: 82 - type: Transform -- uid: 6758 - type: CableApcExtension - components: - - pos: -25.5,53.5 - parent: 82 - type: Transform -- uid: 6759 - type: CableApcExtension - components: - - pos: -26.5,53.5 - parent: 82 - type: Transform -- uid: 6760 - type: CableApcExtension - components: - - pos: -27.5,53.5 - parent: 82 - type: Transform -- uid: 6761 - type: CableApcExtension - components: - - pos: -27.5,54.5 - parent: 82 - type: Transform -- uid: 6762 - type: CableApcExtension - components: - - pos: -27.5,55.5 - parent: 82 - type: Transform -- uid: 6763 - type: CableApcExtension - components: - - pos: -27.5,56.5 - parent: 82 - type: Transform -- uid: 6764 - type: CableApcExtension - components: - - pos: -27.5,57.5 - parent: 82 - type: Transform -- uid: 6765 - type: CableApcExtension - components: - - pos: -27.5,58.5 - parent: 82 - type: Transform -- uid: 6766 - type: CableApcExtension - components: - - pos: -27.5,59.5 - parent: 82 - type: Transform -- uid: 6767 - type: CableApcExtension - components: - - pos: -27.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6768 - type: CableApcExtension - components: - - pos: -26.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6769 - type: CableApcExtension - components: - - pos: -25.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6770 - type: CableApcExtension - components: - - pos: -24.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6771 - type: CableApcExtension - components: - - pos: -23.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6772 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -22.5,61.5 - parent: 82 - type: Transform -- uid: 6773 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -24.5,61.5 - parent: 82 - type: Transform -- uid: 6774 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -26.5,61.5 - parent: 82 - type: Transform -- uid: 6775 - type: CableApcExtension - components: - - pos: -20.5,61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6776 - type: CableApcExtension - components: - - pos: -19.5,61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6777 - type: CableApcExtension - components: - - pos: -21.5,61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6778 - type: CableApcExtension - components: - - pos: -23.5,61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6779 - type: CableApcExtension - components: - - pos: -28.5,61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6780 - type: BlastDoor - components: - - pos: -21.5,49.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -407963.72 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23015 - type: SignalReceiver -- uid: 6781 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -28.5,61.5 - parent: 82 - type: Transform -- uid: 6782 - type: BlastDoor - components: - - pos: -21.5,47.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -407963.72 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23015 - type: SignalReceiver -- uid: 6783 - type: ReinforcedGirder - components: - - pos: -38.5,43.5 - parent: 82 - type: Transform -- uid: 6784 - type: ReinforcedGirder - components: - - pos: -38.5,41.5 - parent: 82 - type: Transform -- uid: 6785 - type: ReinforcedGirder - components: - - pos: -40.5,41.5 - parent: 82 - type: Transform -- uid: 6786 - type: DoorElectronics - components: - - pos: -42.66987,43.748577 - parent: 82 - type: Transform - - tags: - - DroneUsable - type: Tag -- uid: 6787 - type: DoorElectronics - components: - - pos: -42.494865,43.573578 - parent: 82 - type: Transform - - tags: - - DroneUsable - type: Tag -- uid: 6788 - type: APCElectronics - components: - - pos: -42.569866,43.423576 - parent: 82 - type: Transform -- uid: 6789 - type: SubstationMachineCircuitboard - components: - - pos: -42.29487,44.723576 - parent: 82 - type: Transform -- uid: 6790 - type: WallReinforced - components: - - pos: -65.5,-27.5 - parent: 82 - type: Transform -- uid: 6791 - type: WallReinforced - components: - - pos: -66.5,-27.5 - parent: 82 - type: Transform -- uid: 6792 - type: WallReinforced - components: - - pos: -66.5,-23.5 - parent: 82 - type: Transform -- uid: 6793 - type: WallReinforced - components: - - pos: -65.5,-23.5 - parent: 82 - type: Transform -- uid: 6794 - type: WallReinforced - components: - - pos: -64.5,-23.5 - parent: 82 - type: Transform -- uid: 6795 - type: WallReinforced - components: - - pos: -63.5,-23.5 - parent: 82 - type: Transform -- uid: 6796 - type: WallReinforced - components: - - pos: -62.5,-23.5 - parent: 82 - type: Transform -- uid: 6797 - type: CableHVStack - components: - - pos: -44.318325,43.400913 - parent: 82 - type: Transform -- uid: 6798 - type: CableApcStack - components: - - pos: -44.468327,43.50091 - parent: 82 - type: Transform -- uid: 6799 - type: WelderIndustrial - components: - - pos: -44.518326,43.700912 - parent: 82 - type: Transform -- uid: 6800 - type: ClothingHeadHatWelding - components: - - pos: -44.596603,44.714905 - parent: 82 - type: Transform -- uid: 6801 - type: ThermomachineFreezerMachineCircuitBoard - components: - - pos: -42.543327,44.450912 - parent: 82 - type: Transform -- uid: 6802 - type: SubstationBasic - components: - - pos: -1.5,55.5 - parent: 82 - type: Transform -- uid: 6803 - type: CrateEngineeringGear - components: - - pos: 2.5,55.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6804 - type: Rack - components: - - pos: 2.5,56.5 - parent: 82 - type: Transform -- uid: 6805 - type: CowToolboxFilled - components: - - pos: 2.6841784,56.699493 - parent: 82 - type: Transform -- uid: 6806 - type: FloodlightBroken - components: - - pos: -39.539314,47.978165 - parent: 82 - type: Transform -- uid: 6807 - type: Floodlight - components: - - pos: -43.499886,47.522858 - parent: 82 - type: Transform -- uid: 6808 - type: Floodlight - components: - - pos: -36.478657,44.624092 - parent: 82 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: Objects/Tools/flashlight.rsi/flashlight.png - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 6809 - type: Floodlight - components: - - pos: -35.57489,40.472855 - parent: 82 - type: Transform -- uid: 6810 - type: FloodlightBroken - components: - - pos: -43.54989,40.522858 - parent: 82 - type: Transform -- uid: 6811 - type: NitrogenCanister - components: - - pos: -45.5,39.5 - parent: 82 - type: Transform -- uid: 6812 - type: AirCanister - components: - - pos: -44.5,39.5 - parent: 82 - type: Transform -- uid: 6813 - type: StorageCanister - components: - - pos: -33.5,52.5 - parent: 82 - type: Transform -- uid: 6814 - type: StorageCanister - components: - - pos: -34.5,52.5 - parent: 82 - type: Transform -- uid: 6815 - type: EmitterCircuitboard - components: - - pos: -44.2466,44.739906 - parent: 82 - type: Transform -- uid: 6816 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -53.5,9.5 - parent: 82 - type: Transform -- uid: 6817 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -54.5,12.5 - parent: 82 - type: Transform -- uid: 6818 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -50.5,13.5 - parent: 82 - type: Transform -- uid: 6819 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -51.5,13.5 - parent: 82 - type: Transform -- uid: 6820 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -52.5,13.5 - parent: 82 - type: Transform -- uid: 6821 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -53.5,13.5 - parent: 82 - type: Transform -- uid: 6822 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -54.5,13.5 - parent: 82 - type: Transform -- uid: 6823 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -54.5,10.5 - parent: 82 - type: Transform -- uid: 6824 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -54.5,9.5 - parent: 82 - type: Transform -- uid: 6825 - type: Grille - components: - - pos: -3.5,-64.5 - parent: 82 - type: Transform -- uid: 6826 - type: Grille - components: - - pos: -5.5,-65.5 - parent: 82 - type: Transform -- uid: 6827 - type: Grille - components: - - pos: -5.5,-64.5 - parent: 82 - type: Transform -- uid: 6828 - type: WallReinforced - components: - - pos: -5.5,-66.5 - parent: 82 - type: Transform -- uid: 6829 - type: Grille - components: - - pos: -7.5,-65.5 - parent: 82 - type: Transform -- uid: 6830 - type: Grille - components: - - pos: -7.5,-64.5 - parent: 82 - type: Transform -- uid: 6831 - type: WallReinforced - components: - - pos: 20.5,-83.5 - parent: 82 - type: Transform -- uid: 6832 - type: WallReinforced - components: - - pos: 22.5,-80.5 - parent: 82 - type: Transform -- uid: 6833 - type: WallReinforced - components: - - pos: 20.5,-80.5 - parent: 82 - type: Transform -- uid: 6834 - type: WallReinforced - components: - - pos: 18.5,-80.5 - parent: 82 - type: Transform -- uid: 6835 - type: SalvageMagnet - components: - - rot: 1.5707963267948966 rad - pos: 47.5,37.5 - parent: 82 - type: Transform -- uid: 6836 - type: ComputerRadar - components: - - rot: -1.5707963267948966 rad - pos: 47.5,36.5 - parent: 82 - type: Transform -- uid: 6837 - type: AirlockSalvageLocked - components: - - pos: 34.5,32.5 - parent: 82 - type: Transform -- uid: 6838 - type: AirlockSalvageGlassLocked - components: - - pos: 45.5,31.5 - parent: 82 - type: Transform -- uid: 6839 - type: AirlockSalvageGlassLocked - components: - - pos: 44.5,31.5 - parent: 82 - type: Transform -- uid: 6840 - type: AirlockMaintSalvageLocked - components: - - pos: 45.5,38.5 - parent: 82 - type: Transform -- uid: 6841 - type: LockerSalvageSpecialistFilled - components: - - pos: 42.5,37.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6842 - type: LockerSalvageSpecialistFilled - components: - - pos: 42.5,36.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6843 - type: LockerSalvageSpecialistFilled - components: - - pos: 42.5,35.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6844 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,5.5 - parent: 82 - type: Transform -- uid: 6845 - type: Table - components: - - pos: 39.5,34.5 - parent: 82 - type: Transform -- uid: 6846 - type: Table - components: - - pos: 40.5,34.5 - parent: 82 - type: Transform -- uid: 6847 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -57.5,7.5 - parent: 82 - type: Transform -- uid: 6848 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,2.5 - parent: 82 - type: Transform -- uid: 6849 - type: WindoorSecureSalvageLocked - components: - - rot: 1.5707963267948966 rad - pos: 34.5,34.5 - parent: 82 - type: Transform -- uid: 6850 - type: VendingMachineSalvage - components: - - flags: SessionSpecific - type: MetaData - - pos: 41.5,34.5 - parent: 82 - type: Transform -- uid: 6851 - type: LockerSalvageSpecialistFilled - components: - - pos: 42.5,34.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6852 - type: Rack - components: - - pos: 47.5,32.5 - parent: 82 - type: Transform -- uid: 6853 - type: Rack - components: - - pos: 46.5,32.5 - parent: 82 - type: Transform -- uid: 6854 - type: AirlockExternalGlassLocked - components: - - pos: 48.5,33.5 - parent: 82 - type: Transform -- uid: 6855 - type: AirlockExternalGlassLocked - components: - - pos: 48.5,34.5 - parent: 82 - type: Transform -- uid: 6856 - type: AirlockExternalGlassLocked - components: - - pos: 51.5,36.5 - parent: 82 - type: Transform -- uid: 6857 - type: ReinforcedWindow - components: - - pos: 51.5,38.5 - parent: 82 - type: Transform -- uid: 6858 - type: NitrogenCanister - components: - - pos: 49.5,38.5 - parent: 82 - type: Transform -- uid: 6859 - type: OxygenCanister - components: - - pos: 50.5,38.5 - parent: 82 - type: Transform -- uid: 6860 - type: Catwalk - components: - - pos: 52.5,37.5 - parent: 82 - type: Transform -- uid: 6861 - type: Catwalk - components: - - pos: 52.5,36.5 - parent: 82 - type: Transform -- uid: 6862 - type: Catwalk - components: - - pos: 53.5,37.5 - parent: 82 - type: Transform -- uid: 6863 - type: Catwalk - components: - - pos: 53.5,36.5 - parent: 82 - type: Transform -- uid: 6864 - type: Catwalk - components: - - pos: 54.5,37.5 - parent: 82 - type: Transform -- uid: 6865 - type: Catwalk - components: - - pos: 54.5,36.5 - parent: 82 - type: Transform -- uid: 6866 - type: Catwalk - components: - - pos: 55.5,37.5 - parent: 82 - type: Transform -- uid: 6867 - type: Catwalk - components: - - pos: 55.5,36.5 - parent: 82 - type: Transform -- uid: 6868 - type: Catwalk - components: - - pos: 56.5,37.5 - parent: 82 - type: Transform -- uid: 6869 - type: Catwalk - components: - - pos: 56.5,36.5 - parent: 82 - type: Transform -- uid: 6870 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -50.5,9.5 - parent: 82 - type: Transform -- uid: 6871 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -50.5,4.5 - parent: 82 - type: Transform -- uid: 6872 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -50.5,8.5 - parent: 82 - type: Transform -- uid: 6873 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -50.5,7.5 - parent: 82 - type: Transform -- uid: 6874 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -25.5,10.5 - parent: 82 - type: Transform -- uid: 6875 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,10.5 - parent: 82 - type: Transform -- uid: 6876 - type: FirelockGlass - components: - - pos: 18.5,-15.5 - parent: 82 - type: Transform -- uid: 6877 - type: FirelockGlass - components: - - pos: 19.5,-15.5 - parent: 82 - type: Transform -- uid: 6878 - type: FirelockGlass - components: - - pos: 20.5,-15.5 - parent: 82 - type: Transform -- uid: 6879 - type: FirelockGlass - components: - - pos: 21.5,-39.5 - parent: 82 - type: Transform -- uid: 6880 - type: FirelockGlass - components: - - pos: 20.5,-39.5 - parent: 82 - type: Transform -- uid: 6881 - type: FirelockGlass - components: - - pos: 19.5,-39.5 - parent: 82 - type: Transform -- uid: 6882 - type: FirelockGlass - components: - - pos: 18.5,-34.5 - parent: 82 - type: Transform -- uid: 6883 - type: FirelockGlass - components: - - pos: 18.5,-35.5 - parent: 82 - type: Transform -- uid: 6884 - type: FirelockGlass - components: - - pos: -6.5,-54.5 - parent: 82 - type: Transform -- uid: 6885 - type: FirelockGlass - components: - - pos: -5.5,-54.5 - parent: 82 - type: Transform -- uid: 6886 - type: FirelockGlass - components: - - pos: -4.5,-54.5 - parent: 82 - type: Transform -- uid: 6887 - type: FirelockGlass - components: - - pos: -6.5,-44.5 - parent: 82 - type: Transform -- uid: 6888 - type: FirelockGlass - components: - - pos: -5.5,-44.5 - parent: 82 - type: Transform -- uid: 6889 - type: FirelockGlass - components: - - pos: -4.5,-44.5 - parent: 82 - type: Transform -- uid: 6890 - type: FirelockGlass - components: - - pos: -3.5,-44.5 - parent: 82 - type: Transform -- uid: 6891 - type: FirelockGlass - components: - - pos: -3.5,-34.5 - parent: 82 - type: Transform -- uid: 6892 - type: FirelockGlass - components: - - pos: -3.5,-35.5 - parent: 82 - type: Transform -- uid: 6893 - type: FirelockGlass - components: - - pos: -6.5,-31.5 - parent: 82 - type: Transform -- uid: 6894 - type: FirelockGlass - components: - - pos: -5.5,-31.5 - parent: 82 - type: Transform -- uid: 6895 - type: FirelockGlass - components: - - pos: -4.5,-31.5 - parent: 82 - type: Transform -- uid: 6896 - type: FirelockGlass - components: - - pos: -11.5,-24.5 - parent: 82 - type: Transform -- uid: 6897 - type: FirelockGlass - components: - - pos: -11.5,-25.5 - parent: 82 - type: Transform -- uid: 6898 - type: FirelockGlass - components: - - pos: -11.5,-26.5 - parent: 82 - type: Transform -- uid: 6899 - type: FirelockGlass - components: - - pos: -20.5,-24.5 - parent: 82 - type: Transform -- uid: 6900 - type: FirelockGlass - components: - - pos: -20.5,-25.5 - parent: 82 - type: Transform -- uid: 6901 - type: FirelockGlass - components: - - pos: -20.5,-26.5 - parent: 82 - type: Transform -- uid: 6902 - type: FirelockGlass - components: - - pos: -20.5,-33.5 - parent: 82 - type: Transform -- uid: 6903 - type: FirelockGlass - components: - - pos: -20.5,-34.5 - parent: 82 - type: Transform -- uid: 6904 - type: FirelockGlass - components: - - pos: -20.5,-38.5 - parent: 82 - type: Transform -- uid: 6905 - type: FirelockGlass - components: - - pos: -20.5,-39.5 - parent: 82 - type: Transform -- uid: 6906 - type: AirlockMaintMedLocked - components: - - pos: -48.5,-38.5 - parent: 82 - type: Transform -- uid: 6907 - type: Grille - components: - - pos: 8.5,52.5 - parent: 82 - type: Transform -- uid: 6908 - type: ReinforcedWindow - components: - - pos: 6.5,52.5 - parent: 82 - type: Transform -- uid: 6909 - type: ReinforcedWindow - components: - - pos: 7.5,52.5 - parent: 82 - type: Transform -- uid: 6910 - type: ReinforcedWindow - components: - - pos: 8.5,52.5 - parent: 82 - type: Transform -- uid: 6911 - type: CableMV - components: - - pos: -1.5,55.5 - parent: 82 - type: Transform -- uid: 6912 - type: CableMV - components: - - pos: -1.5,56.5 - parent: 82 - type: Transform -- uid: 6913 - type: CableMV - components: - - pos: -2.5,56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6914 - type: CableMV - components: - - pos: -0.5,56.5 - parent: 82 - type: Transform -- uid: 6915 - type: CableMV - components: - - pos: -3.5,56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6916 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: -60.5,-38.5 - parent: 82 - type: Transform -- uid: 6917 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: -59.5,-29.5 - parent: 82 - type: Transform -- uid: 6918 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 10.5,51.5 - parent: 82 - type: Transform -- uid: 6919 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 33.5,11.5 - parent: 82 - type: Transform -- uid: 6920 - type: WardrobeWhiteFilled - components: - - pos: 30.5,-35.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6921 - type: FirelockGlass - components: - - pos: -15.5,34.5 - parent: 82 - type: Transform -- uid: 6922 - type: FirelockGlass - components: - - pos: -16.5,34.5 - parent: 82 - type: Transform -- uid: 6923 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-90.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 6924 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-90.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 6925 - type: CableApcExtension - components: - - pos: 19.5,-88.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6926 - type: CableApcExtension - components: - - pos: 21.5,-88.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6927 - type: CableApcExtension - components: - - pos: 22.5,-90.5 - parent: 82 - type: Transform -- uid: 6928 - type: CableApcExtension - components: - - pos: 22.5,-89.5 - parent: 82 - type: Transform -- uid: 6929 - type: CableApcExtension - components: - - pos: 22.5,-88.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6930 - type: CableApcExtension - components: - - pos: 22.5,-87.5 - parent: 82 - type: Transform -- uid: 6931 - type: CableApcExtension - components: - - pos: 22.5,-86.5 - parent: 82 - type: Transform -- uid: 6932 - type: CableApcExtension - components: - - pos: 18.5,-90.5 - parent: 82 - type: Transform -- uid: 6933 - type: CableApcExtension - components: - - pos: 18.5,-89.5 - parent: 82 - type: Transform -- uid: 6934 - type: CableApcExtension - components: - - pos: 18.5,-88.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6935 - type: CableApcExtension - components: - - pos: 18.5,-87.5 - parent: 82 - type: Transform -- uid: 6936 - type: CableHV - components: - - pos: -28.5,15.5 - parent: 82 - type: Transform -- uid: 6937 - type: SignDirectionalChapel - components: - - rot: 1.5707963267948966 rad - pos: -19.5,22.5 - parent: 82 - type: Transform -- uid: 6938 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -27.5,12.5 - parent: 82 - type: Transform -- uid: 6939 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 16.5,56.5 - parent: 82 - type: Transform -- uid: 6940 - type: ShuttersNormal - components: - - rot: 3.141592653589793 rad - pos: 3.5,-19.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 6941 - type: ShuttersNormal - components: - - rot: 3.141592653589793 rad - pos: 2.5,-19.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 6942 - type: WallReinforced - components: - - pos: 30.5,65.5 - parent: 82 - type: Transform -- uid: 6943 - type: CableMV - components: - - pos: 4.5,56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6944 - type: CableMV - components: - - pos: 3.5,56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6945 - type: CableMV - components: - - pos: 2.5,56.5 - parent: 82 - type: Transform -- uid: 6946 - type: CableMV - components: - - pos: 1.5,56.5 - parent: 82 - type: Transform -- uid: 6947 - type: CableMV - components: - - pos: 0.5,56.5 - parent: 82 - type: Transform -- uid: 6948 - type: SignRND - components: - - pos: 25.5,57.5 - parent: 82 - type: Transform -- uid: 6949 - type: CableApcExtension - components: - - pos: 72.5,-9.5 - parent: 82 - type: Transform -- uid: 6950 - type: ShuttersNormal - components: - - pos: 1.5,-8.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 6951 - type: ShuttersNormal - components: - - pos: 2.5,-8.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 6952 - type: ShuttersNormal - components: - - pos: 3.5,-8.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 6953 - type: ShuttersNormal - components: - - pos: 5.5,-8.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 6954 - type: ShuttersNormal - components: - - pos: 6.5,-8.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 6955 - type: ShuttersNormal - components: - - pos: 7.5,-8.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 6956 - type: ShuttersNormal - components: - - pos: 8.5,-8.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 6957 - type: ShuttersNormal - components: - - pos: 9.5,-8.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 6958 - type: ShuttersNormal - components: - - pos: 11.5,-8.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 6959 - type: ShuttersNormal - components: - - pos: 12.5,-8.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 6960 - type: ShuttersNormal - components: - - pos: 13.5,-8.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 6961 - type: ShuttersNormal - components: - - pos: 14.5,-8.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 6962 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-11.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door -- uid: 6963 - type: WallReinforced - components: - - pos: -1.5,40.5 - parent: 82 - type: Transform -- uid: 6964 - type: WallReinforced - components: - - pos: 3.5,40.5 - parent: 82 - type: Transform -- uid: 6965 - type: WallReinforced - components: - - pos: 2.5,40.5 - parent: 82 - type: Transform -- uid: 6966 - type: WallReinforced - components: - - pos: 1.5,40.5 - parent: 82 - type: Transform -- uid: 6967 - type: WallReinforced - components: - - pos: 0.5,40.5 - parent: 82 - type: Transform -- uid: 6968 - type: WallReinforced - components: - - pos: -0.5,40.5 - parent: 82 - type: Transform -- uid: 6969 - type: WallReinforced - components: - - pos: 4.5,42.5 - parent: 82 - type: Transform -- uid: 6970 - type: WallReinforced - components: - - pos: 4.5,43.5 - parent: 82 - type: Transform -- uid: 6971 - type: WallReinforced - components: - - pos: 4.5,44.5 - parent: 82 - type: Transform -- uid: 6972 - type: WallReinforced - components: - - pos: 4.5,45.5 - parent: 82 - type: Transform -- uid: 6973 - type: WallReinforced - components: - - pos: 4.5,47.5 - parent: 82 - type: Transform -- uid: 6974 - type: WallSolid - components: - - pos: 6.5,43.5 - parent: 82 - type: Transform -- uid: 6975 - type: WallSolid - components: - - pos: 6.5,44.5 - parent: 82 - type: Transform -- uid: 6976 - type: WallSolid - components: - - pos: 6.5,45.5 - parent: 82 - type: Transform -- uid: 6977 - type: WallSolid - components: - - pos: 7.5,45.5 - parent: 82 - type: Transform -- uid: 6978 - type: WallSolid - components: - - pos: 8.5,45.5 - parent: 82 - type: Transform -- uid: 6979 - type: WallSolid - components: - - pos: 9.5,45.5 - parent: 82 - type: Transform -- uid: 6980 - type: WallSolid - components: - - pos: 9.5,46.5 - parent: 82 - type: Transform -- uid: 6981 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,61.5 - parent: 82 - type: Transform -- uid: 6982 - type: WallSolid - components: - - pos: 9.5,43.5 - parent: 82 - type: Transform -- uid: 6983 - type: Grille - components: - - pos: -2.5,36.5 - parent: 82 - type: Transform -- uid: 6984 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,63.5 - parent: 82 - type: Transform -- uid: 6985 - type: Grille - components: - - pos: 25.5,65.5 - parent: 82 - type: Transform -- uid: 6986 - type: Grille - components: - - pos: 25.5,64.5 - parent: 82 - type: Transform -- uid: 6987 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,66.5 - parent: 82 - type: Transform -- uid: 6988 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,67.5 - parent: 82 - type: Transform -- uid: 6989 - type: Grille - components: - - pos: 11.5,61.5 - parent: 82 - type: Transform -- uid: 6990 - type: Grille - components: - - pos: 11.5,59.5 - parent: 82 - type: Transform -- uid: 6991 - type: Grille - components: - - pos: 12.5,59.5 - parent: 82 - type: Transform -- uid: 6992 - type: Grille - components: - - pos: 13.5,59.5 - parent: 82 - type: Transform -- uid: 6993 - type: WallReinforced - components: - - pos: 17.5,59.5 - parent: 82 - type: Transform -- uid: 6994 - type: WallReinforced - components: - - pos: 16.5,59.5 - parent: 82 - type: Transform -- uid: 6995 - type: WallReinforced - components: - - pos: 14.5,59.5 - parent: 82 - type: Transform -- uid: 6996 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 86.5,-10.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6997 - type: CableApcExtension - components: - - pos: 86.5,-6.5 - parent: 82 - type: Transform -- uid: 6998 - type: WallSolid - components: - - pos: 34.5,55.5 - parent: 82 - type: Transform -- uid: 6999 - type: WallSolid - components: - - pos: 34.5,56.5 - parent: 82 - type: Transform -- uid: 7000 - type: WallSolid - components: - - pos: 34.5,57.5 - parent: 82 - type: Transform -- uid: 7001 - type: WallReinforced - components: - - pos: 34.5,58.5 - parent: 82 - type: Transform -- uid: 7002 - type: Grille - components: - - pos: 34.5,65.5 - parent: 82 - type: Transform -- uid: 7003 - type: Grille - components: - - pos: 34.5,64.5 - parent: 82 - type: Transform -- uid: 7004 - type: Grille - components: - - pos: 34.5,63.5 - parent: 82 - type: Transform -- uid: 7005 - type: WallReinforced - components: - - pos: 34.5,62.5 - parent: 82 - type: Transform -- uid: 7006 - type: Grille - components: - - pos: 34.5,61.5 - parent: 82 - type: Transform -- uid: 7007 - type: Grille - components: - - pos: 34.5,60.5 - parent: 82 - type: Transform -- uid: 7008 - type: Grille - components: - - pos: 34.5,59.5 - parent: 82 - type: Transform -- uid: 7009 - type: WallReinforced - components: - - pos: -21.5,34.5 - parent: 82 - type: Transform -- uid: 7010 - type: VendingMachineSciDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 24.5,63.5 - parent: 82 - type: Transform -- uid: 7011 - type: WallSolid - components: - - pos: 17.5,58.5 - parent: 82 - type: Transform -- uid: 7012 - type: WallSolid - components: - - pos: 17.5,57.5 - parent: 82 - type: Transform -- uid: 7013 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 23.5,52.5 - parent: 82 - type: Transform -- uid: 7014 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 21.5,52.5 - parent: 82 - type: Transform -- uid: 7015 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 22.5,52.5 - parent: 82 - type: Transform -- uid: 7016 - type: WallReinforced - components: - - pos: 10.5,61.5 - parent: 82 - type: Transform -- uid: 7017 - type: WallReinforced - components: - - pos: 10.5,62.5 - parent: 82 - type: Transform -- uid: 7018 - type: Grille - components: - - pos: 10.5,63.5 - parent: 82 - type: Transform -- uid: 7019 - type: Grille - components: - - pos: 10.5,64.5 - parent: 82 - type: Transform -- uid: 7020 - type: Grille - components: - - pos: 10.5,65.5 - parent: 82 - type: Transform -- uid: 7021 - type: WallReinforced - components: - - pos: 10.5,66.5 - parent: 82 - type: Transform -- uid: 7022 - type: WallReinforced - components: - - pos: 10.5,67.5 - parent: 82 - type: Transform -- uid: 7023 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 87.5,-7.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7024 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 87.5,-6.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7025 - type: Grille - components: - - pos: 29.5,57.5 - parent: 82 - type: Transform -- uid: 7026 - type: Grille - components: - - pos: 28.5,57.5 - parent: 82 - type: Transform -- uid: 7027 - type: ReinforcedWindow - components: - - pos: 29.5,57.5 - parent: 82 - type: Transform -- uid: 7028 - type: ReinforcedWindow - components: - - pos: 28.5,57.5 - parent: 82 - type: Transform -- uid: 7029 - type: LockerScienceFilled - components: - - pos: 23.5,63.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7030 - type: Grille - components: - - pos: 26.5,62.5 - parent: 82 - type: Transform -- uid: 7031 - type: WallSolid - components: - - pos: 24.5,57.5 - parent: 82 - type: Transform -- uid: 7032 - type: WallSolid - components: - - pos: 23.5,57.5 - parent: 82 - type: Transform -- uid: 7033 - type: WallSolid - components: - - pos: 22.5,57.5 - parent: 82 - type: Transform -- uid: 7034 - type: CrowbarRed - components: - - pos: 54.53304,-15.453253 - parent: 82 - type: Transform -- uid: 7035 - type: ReinforcedWindow - components: - - pos: 65.5,8.5 - parent: 82 - type: Transform -- uid: 7036 - type: Grille - components: - - pos: 12.5,61.5 - parent: 82 - type: Transform -- uid: 7037 - type: Grille - components: - - pos: 13.5,61.5 - parent: 82 - type: Transform -- uid: 7038 - type: ReinforcedWindow - components: - - pos: 11.5,61.5 - parent: 82 - type: Transform -- uid: 7039 - type: ReinforcedWindow - components: - - pos: 12.5,61.5 - parent: 82 - type: Transform -- uid: 7040 - type: ReinforcedWindow - components: - - pos: 13.5,61.5 - parent: 82 - type: Transform -- uid: 7041 - type: WallReinforced - components: - - pos: 14.5,61.5 - parent: 82 - type: Transform -- uid: 7042 - type: WallReinforced - components: - - pos: 14.5,62.5 - parent: 82 - type: Transform -- uid: 7043 - type: WallReinforced - components: - - pos: 15.5,62.5 - parent: 82 - type: Transform -- uid: 7044 - type: WallReinforced - components: - - pos: 16.5,62.5 - parent: 82 - type: Transform -- uid: 7045 - type: WallReinforced - components: - - pos: 16.5,63.5 - parent: 82 - type: Transform -- uid: 7046 - type: WallReinforced - components: - - pos: 16.5,65.5 - parent: 82 - type: Transform -- uid: 7047 - type: GasThermoMachineHeater - components: - - pos: 18.5,17.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor -- uid: 7048 - type: HighSecCommandLocked - components: - - pos: -24.5,18.5 - parent: 82 - type: Transform -- uid: 7049 - type: WallReinforced - components: - - pos: -54.5,48.5 - parent: 82 - type: Transform -- uid: 7050 - type: WallReinforced - components: - - pos: -54.5,45.5 - parent: 82 - type: Transform -- uid: 7051 - type: WallReinforced - components: - - pos: -54.5,40.5 - parent: 82 - type: Transform -- uid: 7052 - type: WallReinforced - components: - - pos: -54.5,39.5 - parent: 82 - type: Transform -- uid: 7053 - type: WallReinforced - components: - - pos: -54.5,37.5 - parent: 82 - type: Transform -- uid: 7054 - type: WallReinforced - components: - - pos: -53.5,49.5 - parent: 82 - type: Transform -- uid: 7055 - type: CableApcExtension - components: - - pos: 73.5,-10.5 - parent: 82 - type: Transform -- uid: 7056 - type: SurveillanceCameraRouterMedical - components: - - pos: 3.5,42.5 - parent: 82 - type: Transform -- uid: 7057 - type: SurveillanceCameraRouterService - components: - - pos: 3.5,41.5 - parent: 82 - type: Transform -- uid: 7058 - type: CableApcExtension - components: - - pos: 85.5,-10.5 - parent: 82 - type: Transform -- uid: 7059 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -45.5,-15.5 - parent: 82 - type: Transform -- uid: 7060 - type: SurveillanceCameraRouterScience - components: - - pos: 1.5,42.5 - parent: 82 - type: Transform -- uid: 7061 - type: SurveillanceCameraRouterSecurity - components: - - pos: 1.5,41.5 - parent: 82 - type: Transform -- uid: 7062 - type: SurveillanceCameraRouterEngineering - components: - - pos: 0.5,42.5 - parent: 82 - type: Transform -- uid: 7063 - type: SurveillanceCameraRouterGeneral - components: - - pos: 0.5,41.5 - parent: 82 - type: Transform -- uid: 7064 - type: SignSpace - components: - - pos: 32.5,72.5 - parent: 82 - type: Transform -- uid: 7065 - type: SpaceVillainArcadeComputerCircuitboard - components: - - pos: 13.43965,39.63199 - parent: 82 - type: Transform -- uid: 7066 - type: ClothingUniformJumpskirtHoSParadeMale - components: - - pos: 60.58285,-16.256115 - parent: 82 - type: Transform -- uid: 7067 - type: WallReinforced - components: - - pos: 70.5,-4.5 - parent: 82 - type: Transform -- uid: 7068 - type: GasThermoMachineFreezer - components: - - pos: 2.5,47.5 - parent: 82 - type: Transform -- uid: 7069 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 2.5,45.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7070 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,46.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7071 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: 1.5,45.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7072 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 3.5,45.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7073 - type: SpawnPointLatejoin - components: - - pos: 78.5,9.5 - parent: 82 - type: Transform -- uid: 7074 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 1.5,46.5 - parent: 82 - type: Transform -- uid: 7075 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 2.5,46.5 - parent: 82 - type: Transform -- uid: 7076 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 2.5,47.5 - parent: 82 - type: Transform -- uid: 7077 - type: ResearchComputerCircuitboard - components: - - pos: 13.655897,37.451424 - parent: 82 - type: Transform -- uid: 7078 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 3.5,46.5 - parent: 82 - type: Transform -- uid: 7079 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -27.5,52.5 - parent: 82 - type: Transform -- uid: 7080 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,52.5 - parent: 82 - type: Transform -- uid: 7081 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -25.5,52.5 - parent: 82 - type: Transform -- uid: 7082 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -24.5,52.5 - parent: 82 - type: Transform -- uid: 7083 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -23.5,52.5 - parent: 82 - type: Transform -- uid: 7084 - type: CableHV - components: - - pos: -23.5,55.5 - parent: 82 - type: Transform -- uid: 7085 - type: CableHV - components: - - pos: -24.5,55.5 - parent: 82 - type: Transform -- uid: 7086 - type: CableHV - components: - - pos: -25.5,55.5 - parent: 82 - type: Transform -- uid: 7087 - type: CableHV - components: - - pos: -25.5,56.5 - parent: 82 - type: Transform -- uid: 7088 - type: CableHV - components: - - pos: -25.5,57.5 - parent: 82 - type: Transform -- uid: 7089 - type: trayScanner - components: - - pos: -23.41999,52.78666 - parent: 82 - type: Transform -- uid: 7090 - type: CableHV - components: - - pos: -23.5,55.5 - parent: 82 - type: Transform -- uid: 7091 - type: CableHV - components: - - pos: -22.5,55.5 - parent: 82 - type: Transform -- uid: 7092 - type: CableApcStack - components: - - pos: -24.16999,52.79569 - parent: 82 - type: Transform -- uid: 7093 - type: CableMVStack - components: - - pos: -24.06999,52.645687 - parent: 82 - type: Transform -- uid: 7094 - type: CableHVStack - components: - - pos: -23.99499,52.52069 - parent: 82 - type: Transform -- uid: 7095 - type: ToolboxElectricalFilled - components: - - pos: -24.91999,52.816387 - parent: 82 - type: Transform -- uid: 7096 - type: ToolboxMechanicalFilled - components: - - pos: -24.911139,52.53595 - parent: 82 - type: Transform -- uid: 7097 - type: RadiationCollector - components: - - pos: -28.5,52.5 - parent: 82 - type: Transform -- uid: 7098 - type: MedkitRadiationFilled - components: - - pos: -25.761139,52.61095 - parent: 82 - type: Transform -- uid: 7099 - type: MedkitRadiationFilled - components: - - pos: -26.336138,52.61095 - parent: 82 - type: Transform -- uid: 7100 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-10.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 7101 - type: ShuttersNormal - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-11.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 7102 - type: FloraTreeStump - components: - - pos: -7.0278096,-23.209808 - parent: 82 - type: Transform -- uid: 7103 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -33.5,21.5 - parent: 82 - type: Transform -- uid: 7104 - type: CableApcExtension - components: - - pos: -9.5,-40.5 - parent: 82 - type: Transform -- uid: 7105 - type: CableApcExtension - components: - - pos: -9.5,-36.5 - parent: 82 - type: Transform -- uid: 7106 - type: WallReinforced - components: - - pos: -38.5,24.5 - parent: 82 - type: Transform -- uid: 7107 - type: WallReinforced - components: - - pos: -37.5,24.5 - parent: 82 - type: Transform -- uid: 7108 - type: WallReinforced - components: - - pos: -36.5,24.5 - parent: 82 - type: Transform -- uid: 7109 - type: WallReinforced - components: - - pos: -35.5,24.5 - parent: 82 - type: Transform -- uid: 7110 - type: WallReinforced - components: - - pos: -34.5,22.5 - parent: 82 - type: Transform -- uid: 7111 - type: WallReinforced - components: - - pos: 16.5,66.5 - parent: 82 - type: Transform -- uid: 7112 - type: WallReinforced - components: - - pos: 15.5,66.5 - parent: 82 - type: Transform -- uid: 7113 - type: WallReinforced - components: - - pos: 14.5,66.5 - parent: 82 - type: Transform -- uid: 7114 - type: WallReinforced - components: - - pos: 14.5,67.5 - parent: 82 - type: Transform -- uid: 7115 - type: ReinforcedWindow - components: - - pos: 10.5,65.5 - parent: 82 - type: Transform -- uid: 7116 - type: ReinforcedWindow - components: - - pos: 10.5,64.5 - parent: 82 - type: Transform -- uid: 7117 - type: ReinforcedWindow - components: - - pos: 10.5,63.5 - parent: 82 - type: Transform -- uid: 7118 - type: ReinforcedWindow - components: - - pos: 13.5,67.5 - parent: 82 - type: Transform -- uid: 7119 - type: ReinforcedWindow - components: - - pos: 12.5,67.5 - parent: 82 - type: Transform -- uid: 7120 - type: ReinforcedWindow - components: - - pos: 11.5,67.5 - parent: 82 - type: Transform -- uid: 7121 - type: Grille - components: - - pos: 13.5,67.5 - parent: 82 - type: Transform -- uid: 7122 - type: Grille - components: - - pos: 12.5,67.5 - parent: 82 - type: Transform -- uid: 7123 - type: Grille - components: - - pos: 11.5,67.5 - parent: 82 - type: Transform -- uid: 7124 - type: WallReinforced - components: - - pos: 17.5,60.5 - parent: 82 - type: Transform -- uid: 7125 - type: WallReinforced - components: - - pos: 17.5,61.5 - parent: 82 - type: Transform -- uid: 7126 - type: WallReinforced - components: - - pos: 17.5,62.5 - parent: 82 - type: Transform -- uid: 7127 - type: WallReinforced - components: - - pos: 17.5,66.5 - parent: 82 - type: Transform -- uid: 7128 - type: WallReinforced - components: - - pos: 17.5,67.5 - parent: 82 - type: Transform -- uid: 7129 - type: WallReinforced - components: - - pos: 17.5,68.5 - parent: 82 - type: Transform -- uid: 7130 - type: MachineAnomalyVessel - components: - - rot: 1.5707963267948966 rad - pos: 21.5,72.5 - parent: 82 - type: Transform -- uid: 7131 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 15.5,73.5 - parent: 82 - type: Transform -- uid: 7132 - type: Poweredlight - components: - - pos: 17.5,74.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7133 - type: ClothingNeckAsexualPin - components: - - pos: -0.7473192,-39.581512 - parent: 82 - type: Transform -- uid: 7134 - type: ClothingNeckBisexualPin - components: - - pos: -51.733475,-28.012512 - parent: 82 - type: Transform -- uid: 7135 - type: ClothingNeckTransPin - components: - - pos: -29.219229,-1.5939128 - parent: 82 - type: Transform -- uid: 7136 - type: RandomFoodSingle - components: - - pos: -29.5,-1.5 - parent: 82 - type: Transform -- uid: 7137 - type: BookRandom - components: - - pos: 16.337374,29.572113 - parent: 82 - type: Transform -- uid: 7138 - type: NitrogenCanister - components: - - pos: 10.5,75.5 - parent: 82 - type: Transform -- uid: 7139 - type: WallReinforced - components: - - pos: 11.5,76.5 - parent: 82 - type: Transform -- uid: 7140 - type: WallReinforced - components: - - pos: 8.5,76.5 - parent: 82 - type: Transform -- uid: 7141 - type: Grille - components: - - pos: 12.5,75.5 - parent: 82 - type: Transform -- uid: 7142 - type: WallReinforced - components: - - pos: 20.5,68.5 - parent: 82 - type: Transform -- uid: 7143 - type: WallReinforced - components: - - pos: 21.5,68.5 - parent: 82 - type: Transform -- uid: 7144 - type: WallReinforced - components: - - pos: 17.5,75.5 - parent: 82 - type: Transform -- uid: 7145 - type: ReinforcedWindow - components: - - pos: 14.5,76.5 - parent: 82 - type: Transform -- uid: 7146 - type: ReinforcedWindow - components: - - pos: 18.5,75.5 - parent: 82 - type: Transform -- uid: 7147 - type: WallReinforced - components: - - pos: 8.5,75.5 - parent: 82 - type: Transform -- uid: 7148 - type: Grille - components: - - pos: 18.5,75.5 - parent: 82 - type: Transform -- uid: 7149 - type: Grille - components: - - pos: 14.5,76.5 - parent: 82 - type: Transform -- uid: 7150 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -45.5,9.5 - parent: 82 - type: Transform -- uid: 7151 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,9.5 - parent: 82 - type: Transform -- uid: 7152 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -43.5,9.5 - parent: 82 - type: Transform -- uid: 7153 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -42.5,9.5 - parent: 82 - type: Transform -- uid: 7154 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -41.5,9.5 - parent: 82 - type: Transform -- uid: 7155 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -40.5,9.5 - parent: 82 - type: Transform -- uid: 7156 - type: WallReinforced - components: - - pos: -54.5,46.5 - parent: 82 - type: Transform -- uid: 7157 - type: LockerWeldingSuppliesFilled - components: - - pos: -8.5,49.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7158 - type: TintedWindow - components: - - pos: -2.5,36.5 - parent: 82 - type: Transform -- uid: 7159 - type: TintedWindow - components: - - pos: -2.5,34.5 - parent: 82 - type: Transform -- uid: 7160 - type: TintedWindow - components: - - pos: -2.5,33.5 - parent: 82 - type: Transform -- uid: 7161 - type: AirlockJanitorLocked - components: - - pos: -2.5,35.5 - parent: 82 - type: Transform -- uid: 7162 - type: ClosetJanitorFilled - components: - - pos: 0.5,33.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7163 - type: ClosetJanitorFilled - components: - - pos: 0.5,34.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7164 - type: CrateServiceJanitorialSupplies - components: - - pos: 0.5,35.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7165 - type: JanitorialTrolley - components: - - pos: -1.5,39.5 - parent: 82 - type: Transform -- uid: 7166 - type: JanitorialTrolley - components: - - pos: -1.5,38.5 - parent: 82 - type: Transform -- uid: 7167 - type: AirlockMaintJanitorLocked - components: - - pos: 4.5,39.5 - parent: 82 - type: Transform -- uid: 7168 - type: ClosetL3JanitorFilled - components: - - pos: 0.5,36.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7169 - type: Table - components: - - pos: 3.5,37.5 - parent: 82 - type: Transform -- uid: 7170 - type: Table - components: - - pos: 2.5,37.5 - parent: 82 - type: Transform -- uid: 7171 - type: Table - components: - - pos: 1.5,37.5 - parent: 82 - type: Transform -- uid: 7172 - type: VendingMachineJaniDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,37.5 - parent: 82 - type: Transform -- uid: 7173 - type: Bed - components: - - pos: -50.5,-2.5 - parent: 82 - type: Transform -- uid: 7174 - type: VehicleKeyJanicart - components: - - pos: 1.9728081,37.62823 - parent: 82 - type: Transform -- uid: 7175 - type: RevolverCapGun - components: - - pos: -50.547672,-1.2422137 - parent: 82 - type: Transform -- uid: 7176 - type: DrinkShotGlass - components: - - pos: -50.369892,-1.4644368 - parent: 82 - type: Transform -- uid: 7177 - type: MopBucket - components: - - pos: -1.5189242,37.502773 - parent: 82 - type: Transform -- uid: 7178 - type: MopItem - components: - - pos: 2.0310738,37.552773 - parent: 82 - type: Transform -- uid: 7179 - type: TrashBag - components: - - pos: 3.75332,37.75924 - parent: 82 - type: Transform -- uid: 7180 - type: TrashBag - components: - - pos: 3.553321,37.58424 - parent: 82 - type: Transform -- uid: 7181 - type: BoxTrashbag - components: - - pos: 3.2783194,37.609238 - parent: 82 - type: Transform -- uid: 7182 - type: SprayBottleSpaceCleaner - components: - - pos: 2.8783207,37.784237 - parent: 82 - type: Transform -- uid: 7183 - type: SprayBottleSpaceCleaner - components: - - pos: 2.7283208,37.534237 - parent: 82 - type: Transform -- uid: 7184 - type: SprayBottleSpaceCleaner - components: - - pos: 2.5283194,37.75924 - parent: 82 - type: Transform -- uid: 7185 - type: WetFloorSign - components: - - pos: 2.32832,37.63424 - parent: 82 - type: Transform -- uid: 7186 - type: WetFloorSign - components: - - pos: 2.203321,37.834236 - parent: 82 - type: Transform -- uid: 7187 - type: Table - components: - - pos: -33.5,-10.5 - parent: 82 - type: Transform -- uid: 7188 - type: LockerBoozeFilled - components: - - pos: -15.5,-7.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7189 - type: LockerBoozeFilled - components: - - pos: 22.5,47.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7190 - type: WallReinforced - components: - - pos: -22.5,34.5 - parent: 82 - type: Transform -- uid: 7191 - type: WallSolid - components: - - pos: -33.5,-5.5 - parent: 82 - type: Transform -- uid: 7192 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-11.5 - parent: 82 - type: Transform -- uid: 7193 - type: WallmountTelevision - components: - - rot: 3.141592653589793 rad - pos: 26.5,48.5 - parent: 82 - type: Transform -- uid: 7194 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -53.5,28.5 - parent: 82 - type: Transform -- uid: 7195 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -55.5,28.5 - parent: 82 - type: Transform -- uid: 7196 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -54.5,28.5 - parent: 82 - type: Transform -- uid: 7197 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -52.5,28.5 - parent: 82 - type: Transform -- uid: 7198 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -51.5,28.5 - parent: 82 - type: Transform -- uid: 7199 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -50.5,28.5 - parent: 82 - type: Transform -- uid: 7200 - type: WallReinforced - components: - - pos: -58.5,32.5 - parent: 82 - type: Transform -- uid: 7201 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,28.5 - parent: 82 - type: Transform -- uid: 7202 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -57.5,28.5 - parent: 82 - type: Transform -- uid: 7203 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 1.5,29.5 - parent: 82 - type: Transform -- uid: 7204 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 5.5,29.5 - parent: 82 - type: Transform -- uid: 7205 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 6.5,29.5 - parent: 82 - type: Transform -- uid: 7206 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 7.5,29.5 - parent: 82 - type: Transform -- uid: 7207 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 11.5,29.5 - parent: 82 - type: Transform -- uid: 7208 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 12.5,29.5 - parent: 82 - type: Transform -- uid: 7209 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 13.5,29.5 - parent: 82 - type: Transform -- uid: 7210 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 14.5,29.5 - parent: 82 - type: Transform -- uid: 7211 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -2.5,29.5 - parent: 82 - type: Transform -- uid: 7212 - type: ClosetL3ScienceFilled - components: - - pos: 24.5,56.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7213 - type: ClosetL3ScienceFilled - components: - - pos: 23.5,56.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7214 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 21.5,57.5 - parent: 82 - type: Transform -- uid: 7215 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 21.5,58.5 - parent: 82 - type: Transform -- uid: 7216 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 21.5,59.5 - parent: 82 - type: Transform -- uid: 7217 - type: WallReinforced - components: - - pos: 13.5,75.5 - parent: 82 - type: Transform -- uid: 7218 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 21.5,61.5 - parent: 82 - type: Transform -- uid: 7219 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 21.5,62.5 - parent: 82 - type: Transform -- uid: 7220 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 22.5,62.5 - parent: 82 - type: Transform -- uid: 7221 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 23.5,62.5 - parent: 82 - type: Transform -- uid: 7222 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 24.5,62.5 - parent: 82 - type: Transform -- uid: 7223 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 25.5,62.5 - parent: 82 - type: Transform -- uid: 7224 - type: Grille - components: - - pos: 28.5,62.5 - parent: 82 - type: Transform -- uid: 7225 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,68.5 - parent: 82 - type: Transform -- uid: 7226 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,69.5 - parent: 82 - type: Transform -- uid: 7227 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,70.5 - parent: 82 - type: Transform -- uid: 7228 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,71.5 - parent: 82 - type: Transform -- uid: 7229 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,72.5 - parent: 82 - type: Transform -- uid: 7230 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 14.5,69.5 - parent: 82 - type: Transform -- uid: 7231 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 10.5,69.5 - parent: 82 - type: Transform -- uid: 7232 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 9.5,69.5 - parent: 82 - type: Transform -- uid: 7233 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 8.5,69.5 - parent: 82 - type: Transform -- uid: 7234 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,77.5 - parent: 82 - type: Transform -- uid: 7235 - type: WallReinforced - components: - - pos: 8.5,77.5 - parent: 82 - type: Transform -- uid: 7236 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 11.5,77.5 - parent: 82 - type: Transform -- uid: 7237 - type: WallReinforced - components: - - pos: 19.5,77.5 - parent: 82 - type: Transform -- uid: 7238 - type: ClothingNeckIntersexPin - components: - - pos: -28.35835,5.4578533 - parent: 82 - type: Transform -- uid: 7239 - type: CableApcExtension - components: - - pos: 19.5,74.5 - parent: 82 - type: Transform -- uid: 7240 - type: CableApcExtension - components: - - pos: 20.5,74.5 - parent: 82 - type: Transform -- uid: 7241 - type: CableApcExtension - components: - - pos: 18.5,74.5 - parent: 82 - type: Transform -- uid: 7242 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 15.5,69.5 - parent: 82 - type: Transform -- uid: 7243 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 16.5,69.5 - parent: 82 - type: Transform -- uid: 7244 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 17.5,69.5 - parent: 82 - type: Transform -- uid: 7245 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 13.5,77.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7246 - type: ClothingNeckLesbianPin - components: - - pos: 16.717562,29.681984 - parent: 82 - type: Transform -- uid: 7247 - type: WallReinforced - components: - - pos: 11.5,75.5 - parent: 82 - type: Transform -- uid: 7248 - type: ReinforcedWindow - components: - - pos: 16.5,76.5 - parent: 82 - type: Transform -- uid: 7249 - type: WallReinforced - components: - - pos: 8.5,71.5 - parent: 82 - type: Transform -- uid: 7250 - type: Grille - components: - - pos: 15.5,76.5 - parent: 82 - type: Transform -- uid: 7251 - type: Grille - components: - - pos: 16.5,76.5 - parent: 82 - type: Transform -- uid: 7252 - type: WallReinforced - components: - - pos: 17.5,76.5 - parent: 82 - type: Transform -- uid: 7253 - type: ClothingNeckPansexualPin - components: - - pos: 24.309896,47.73986 - parent: 82 - type: Transform -- uid: 7254 - type: PlasmaCanister - components: - - pos: 9.5,75.5 - parent: 82 - type: Transform -- uid: 7255 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 16.5,70.5 - parent: 82 - type: Transform -- uid: 7256 - type: CableApcExtension - components: - - pos: 12.5,72.5 - parent: 82 - type: Transform -- uid: 7257 - type: CableApcExtension - components: - - pos: 11.5,72.5 - parent: 82 - type: Transform -- uid: 7258 - type: CableApcExtension - components: - - pos: 10.5,72.5 - parent: 82 - type: Transform -- uid: 7259 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 15.5,70.5 - parent: 82 - type: Transform -- uid: 7260 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 10.5,77.5 - parent: 82 - type: Transform -- uid: 7261 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 9.5,77.5 - parent: 82 - type: Transform -- uid: 7262 - type: StorageCanister - components: - - pos: 10.5,74.5 - parent: 82 - type: Transform -- uid: 7263 - type: StorageCanister - components: - - pos: 9.5,73.5 - parent: 82 - type: Transform -- uid: 7264 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 20.5,77.5 - parent: 82 - type: Transform -- uid: 7265 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 21.5,77.5 - parent: 82 - type: Transform -- uid: 7266 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,76.5 - parent: 82 - type: Transform -- uid: 7267 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,75.5 - parent: 82 - type: Transform -- uid: 7268 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,74.5 - parent: 82 - type: Transform -- uid: 7269 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,73.5 - parent: 82 - type: Transform -- uid: 7270 - type: CableApcExtension - components: - - pos: 13.5,71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7271 - type: CableApcExtension - components: - - pos: 13.5,72.5 - parent: 82 - type: Transform -- uid: 7272 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 17.5,77.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7273 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,71.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7274 - type: MachineAPE - components: - - rot: -1.5707963267948966 rad - pos: 21.5,76.5 - parent: 82 - type: Transform -- uid: 7275 - type: ReinforcedWindow - components: - - pos: 8.5,72.5 - parent: 82 - type: Transform -- uid: 7276 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 9.5,70.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7277 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,70.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7278 - type: GasVentPump - components: - - pos: 18.5,72.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7279 - type: ClothingNeckNonBinaryPin - components: - - pos: -60.491737,42.509815 - parent: 82 - type: Transform -- uid: 7280 - type: ClothingNeckAromanticPin - components: - - pos: 29.412611,-17.30906 - parent: 82 - type: Transform -- uid: 7281 - type: ClothingNeckLGBTPin - components: - - pos: 78.38637,7.410472 - parent: 82 - type: Transform -- uid: 7282 - type: Poweredlight - components: - - pos: 13.5,74.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7283 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 20.5,77.5 - parent: 82 - type: Transform -- uid: 7284 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 21.5,77.5 - parent: 82 - type: Transform -- uid: 7285 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,76.5 - parent: 82 - type: Transform -- uid: 7286 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,75.5 - parent: 82 - type: Transform -- uid: 7287 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,74.5 - parent: 82 - type: Transform -- uid: 7288 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,73.5 - parent: 82 - type: Transform -- uid: 7289 - type: ComputerTechnologyDiskTerminal - components: - - pos: 11.5,62.5 - parent: 82 - type: Transform -- uid: 7290 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 9.5,77.5 - parent: 82 - type: Transform -- uid: 7291 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 10.5,77.5 - parent: 82 - type: Transform -- uid: 7292 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 11.5,70.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7293 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,71.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7294 - type: WaterVaporCanister - components: - - pos: 9.5,74.5 - parent: 82 - type: Transform -- uid: 7295 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -20.5,60.5 - parent: 82 - type: Transform -- uid: 7296 - type: WindoorHeadOfPersonnelLocked - components: - - rot: 3.141592653589793 rad - pos: -5.5,0.5 - parent: 82 - type: Transform -- uid: 7297 - type: SignAnomaly2 - components: - - pos: 20.5,68.5 - parent: 82 - type: Transform -- uid: 7298 - type: DoorElectronics - components: - - pos: -26.395086,0.43726826 - parent: 82 - type: Transform -- uid: 7299 - type: DoorElectronics - components: - - pos: -26.645086,0.7081022 - parent: 82 - type: Transform -- uid: 7300 - type: AtmosFixFreezerMarker - components: - - pos: -35.5,-15.5 - parent: 82 - type: Transform -- uid: 7301 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-14.5 - parent: 82 - type: Transform -- uid: 7302 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 72.5,8.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7303 - type: AsteroidRock - components: - - pos: 53.5,50.5 - parent: 82 - type: Transform -- uid: 7304 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -60.5,-14.5 - parent: 82 - type: Transform -- uid: 7305 - type: SpawnPointAssistant - components: - - pos: 6.5,-32.5 - parent: 82 - type: Transform -- uid: 7306 - type: DoorElectronics - components: - - pos: 25.55816,-6.599265 - parent: 82 - type: Transform -- uid: 7307 - type: DoorElectronics - components: - - pos: 25.349829,-6.328432 - parent: 82 - type: Transform -- uid: 7308 - type: ReinforcedWindow - components: - - pos: 15.5,76.5 - parent: 82 - type: Transform -- uid: 7309 - type: WallReinforced - components: - - pos: 13.5,76.5 - parent: 82 - type: Transform -- uid: 7310 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 16.5,71.5 - parent: 82 - type: Transform -- uid: 7311 - type: BookBase - components: - - desc: Nearly illegible scribbles and crude doodles fill this book cover to cover with incomprehensible ramblings - name: RD's Diary - type: MetaData - - pos: 15.490507,75.56723 - parent: 82 - type: Transform -- uid: 7312 - type: Grille - components: - - pos: 8.5,74.5 - parent: 82 - type: Transform -- uid: 7313 - type: MachineAPE - components: - - rot: -1.5707963267948966 rad - pos: 21.5,75.5 - parent: 82 - type: Transform -- uid: 7314 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 10.5,70.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7315 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 12.5,71.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7316 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 9.5,71.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7317 - type: CableApcExtension - components: - - pos: 21.5,69.5 - parent: 82 - type: Transform -- uid: 7318 - type: CableApcExtension - components: - - pos: 21.5,70.5 - parent: 82 - type: Transform -- uid: 7319 - type: MachineAPE - components: - - rot: -1.5707963267948966 rad - pos: 20.5,76.5 - parent: 82 - type: Transform -- uid: 7320 - type: MachineAnomalyGenerator - components: - - pos: 15.5,74.5 - parent: 82 - type: Transform - - enabled: False - type: AmbientSound -- uid: 7321 - type: TablePlasmaGlass - components: - - pos: 13.5,74.5 - parent: 82 - type: Transform -- uid: 7322 - type: TablePlasmaGlass - components: - - pos: 12.5,74.5 - parent: 82 - type: Transform -- uid: 7323 - type: TablePlasmaGlass - components: - - pos: 17.5,74.5 - parent: 82 - type: Transform -- uid: 7324 - type: OxygenCanister - components: - - pos: 10.5,76.5 - parent: 82 - type: Transform -- uid: 7325 - type: AnomalyScanner - components: - - pos: 12.561699,74.71864 - parent: 82 - type: Transform -- uid: 7326 - type: AnomalyScanner - components: - - pos: 12.832531,74.42697 - parent: 82 - type: Transform -- uid: 7327 - type: Grille - components: - - pos: 13.5,69.5 - parent: 82 - type: Transform -- uid: 7328 - type: Grille - components: - - pos: 11.5,69.5 - parent: 82 - type: Transform -- uid: 7329 - type: Grille - components: - - pos: 12.5,69.5 - parent: 82 - type: Transform -- uid: 7330 - type: ReinforcedWindow - components: - - pos: 13.5,69.5 - parent: 82 - type: Transform -- uid: 7331 - type: ReinforcedWindow - components: - - pos: 12.5,69.5 - parent: 82 - type: Transform -- uid: 7332 - type: ReinforcedWindow - components: - - pos: 11.5,69.5 - parent: 82 - type: Transform -- uid: 7333 - type: GasAnalyzer - components: - - pos: 13.478365,74.57281 - parent: 82 - type: Transform -- uid: 7334 - type: HandheldHealthAnalyzer - components: - - pos: 17.561699,74.71864 - parent: 82 - type: Transform -- uid: 7335 - type: GasPipeStraight - components: - - pos: 19.5,70.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7336 - type: GasPipeStraight - components: - - pos: 19.5,71.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7337 - type: GasVentScrubber - components: - - pos: 19.5,72.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7338 - type: CableApcExtension - components: - - pos: 18.5,70.5 - parent: 82 - type: Transform -- uid: 7339 - type: WallSolid - components: - - pos: 29.5,62.5 - parent: 82 - type: Transform -- uid: 7340 - type: WallReinforced - components: - - pos: 30.5,70.5 - parent: 82 - type: Transform -- uid: 7341 - type: WallSolid - components: - - pos: 25.5,63.5 - parent: 82 - type: Transform -- uid: 7342 - type: ShuttleConsoleCircuitboard - components: - - pos: 13.411871,38.673645 - parent: 82 - type: Transform -- uid: 7343 - type: CableApcExtension - components: - - pos: 86.5,-5.5 - parent: 82 - type: Transform -- uid: 7344 - type: WallSolid - components: - - pos: 25.5,66.5 - parent: 82 - type: Transform -- uid: 7345 - type: WallSolid - components: - - pos: 25.5,67.5 - parent: 82 - type: Transform -- uid: 7346 - type: WallSolid - components: - - pos: 26.5,67.5 - parent: 82 - type: Transform -- uid: 7347 - type: Grille - components: - - pos: 27.5,67.5 - parent: 82 - type: Transform -- uid: 7348 - type: Grille - components: - - pos: 28.5,67.5 - parent: 82 - type: Transform -- uid: 7349 - type: WallSolid - components: - - pos: 29.5,67.5 - parent: 82 - type: Transform -- uid: 7350 - type: CableApcExtension - components: - - pos: 86.5,-4.5 - parent: 82 - type: Transform -- uid: 7351 - type: WallReinforced - components: - - pos: 32.5,67.5 - parent: 82 - type: Transform -- uid: 7352 - type: WallReinforced - components: - - pos: -23.5,34.5 - parent: 82 - type: Transform -- uid: 7353 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,71.5 - parent: 82 - type: Transform -- uid: 7354 - type: LockerSecurity - components: - - pos: 38.5,50.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7355 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 29.5,53.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7356 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -45.5,-14.5 - parent: 82 - type: Transform -- uid: 7357 - type: Grille - components: - - pos: 87.5,4.5 - parent: 82 - type: Transform -- uid: 7358 - type: Grille - components: - - pos: 87.5,3.5 - parent: 82 - type: Transform -- uid: 7359 - type: PottedPlantRandom - components: - - pos: 29.5,56.5 - parent: 82 - type: Transform -- uid: 7360 - type: ReinforcedWindow - components: - - pos: 87.5,4.5 - parent: 82 - type: Transform -- uid: 7361 - type: Grille - components: - - pos: 87.5,2.5 - parent: 82 - type: Transform -- uid: 7362 - type: AirlockExternalGlassLocked - components: - - pos: -41.5,-52.5 - parent: 82 - type: Transform -- uid: 7363 - type: ComputerPowerMonitoring - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-49.5 - parent: 82 - type: Transform -- uid: 7364 - type: ReinforcedWindow - components: - - pos: 87.5,3.5 - parent: 82 - type: Transform -- uid: 7365 - type: AirlockExternalGlassLocked - components: - - pos: -41.5,-48.5 - parent: 82 - type: Transform -- uid: 7366 - type: SMESBasic - components: - - pos: -40.5,-51.5 - parent: 82 - type: Transform -- uid: 7367 - type: ReinforcedWindow - components: - - pos: 87.5,2.5 - parent: 82 - type: Transform -- uid: 7368 - type: WallReinforced - components: - - pos: 30.5,15.5 - parent: 82 - type: Transform -- uid: 7369 - type: Dresser - components: - - pos: -14.5,11.5 - parent: 82 - type: Transform -- uid: 7370 - type: CableApcExtension - components: - - pos: -63.5,-39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7371 - type: ReinforcedWindow - components: - - pos: -58.5,29.5 - parent: 82 - type: Transform -- uid: 7372 - type: Grille - components: - - pos: -61.5,-34.5 - parent: 82 - type: Transform -- uid: 7373 - type: ReinforcedWindow - components: - - pos: -58.5,30.5 - parent: 82 - type: Transform -- uid: 7374 - type: ReinforcedWindow - components: - - pos: -58.5,31.5 - parent: 82 - type: Transform -- uid: 7375 - type: LockerQuarterMasterFilled - components: - - pos: 45.5,14.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7376 - type: Grille - components: - - pos: -58.5,29.5 - parent: 82 - type: Transform -- uid: 7377 - type: WallReinforced - components: - - pos: -60.5,34.5 - parent: 82 - type: Transform -- uid: 7378 - type: WallReinforced - components: - - pos: -24.5,34.5 - parent: 82 - type: Transform -- uid: 7379 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -49.5,15.5 - parent: 82 - type: Transform -- uid: 7380 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -48.5,22.5 - parent: 82 - type: Transform -- uid: 7381 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -48.5,21.5 - parent: 82 - type: Transform -- uid: 7382 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -48.5,20.5 - parent: 82 - type: Transform -- uid: 7383 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -48.5,19.5 - parent: 82 - type: Transform -- uid: 7384 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -49.5,19.5 - parent: 82 - type: Transform -- uid: 7385 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -49.5,18.5 - parent: 82 - type: Transform -- uid: 7386 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -49.5,17.5 - parent: 82 - type: Transform -- uid: 7387 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -49.5,16.5 - parent: 82 - type: Transform -- uid: 7388 - type: Grille - components: - - pos: 10.5,55.5 - parent: 82 - type: Transform -- uid: 7389 - type: Grille - components: - - pos: 10.5,56.5 - parent: 82 - type: Transform -- uid: 7390 - type: Grille - components: - - pos: 10.5,57.5 - parent: 82 - type: Transform -- uid: 7391 - type: ReinforcedWindow - components: - - pos: 10.5,57.5 - parent: 82 - type: Transform -- uid: 7392 - type: ReinforcedWindow - components: - - pos: 10.5,56.5 - parent: 82 - type: Transform -- uid: 7393 - type: ReinforcedWindow - components: - - pos: 10.5,55.5 - parent: 82 - type: Transform -- uid: 7394 - type: ReinforcedWindow - components: - - pos: 11.5,59.5 - parent: 82 - type: Transform -- uid: 7395 - type: ReinforcedWindow - components: - - pos: 12.5,59.5 - parent: 82 - type: Transform -- uid: 7396 - type: ReinforcedWindow - components: - - pos: 13.5,59.5 - parent: 82 - type: Transform -- uid: 7397 - type: GasThermoMachineFreezer - components: - - pos: 12.5,66.5 - parent: 82 - type: Transform -- uid: 7398 - type: CableApcExtension - components: - - pos: 17.5,70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7399 - type: CableApcExtension - components: - - pos: 16.5,70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7400 - type: CableApcExtension - components: - - pos: 15.5,70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7401 - type: GasPipeStraight - components: - - pos: 12.5,65.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7402 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 12.5,64.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7403 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: 11.5,64.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7404 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 13.5,64.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7405 - type: CableApcExtension - components: - - pos: 14.5,70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7406 - type: CableApcExtension - components: - - pos: 13.5,70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7407 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 13.5,71.5 - parent: 82 - type: Transform -- uid: 7408 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 14.5,63.5 - parent: 82 - type: Transform -- uid: 7409 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 14.5,65.5 - parent: 82 - type: Transform -- uid: 7410 - type: LockerResearchDirectorFilled - components: - - pos: 26.5,66.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7411 - type: LockerScienceFilled - components: - - pos: 21.5,63.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7412 - type: AtmosFixPlasmaMarker - components: - - pos: 51.5,52.5 - parent: 82 - type: Transform -- uid: 7413 - type: WindoorScienceLocked - components: - - rot: -1.5707963267948966 rad - pos: 14.5,64.5 - parent: 82 - type: Transform -- uid: 7414 - type: Rack - components: - - pos: 15.5,65.5 - parent: 82 - type: Transform -- uid: 7415 - type: ClothingBeltUtilityFilled - components: - - pos: 15.528378,65.693535 - parent: 82 - type: Transform -- uid: 7416 - type: CrateScienceSecure - components: - - pos: 15.5,63.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7417 - type: Protolathe - components: - - pos: 23.5,61.5 - parent: 82 - type: Transform -- uid: 7418 - type: Autolathe - components: - - pos: 24.5,61.5 - parent: 82 - type: Transform -- uid: 7419 - type: CircuitImprinter - components: - - pos: 25.5,61.5 - parent: 82 - type: Transform -- uid: 7420 - type: TableReinforcedGlass - components: - - pos: 22.5,58.5 - parent: 82 - type: Transform -- uid: 7421 - type: TableReinforcedGlass - components: - - pos: 23.5,58.5 - parent: 82 - type: Transform -- uid: 7422 - type: TableReinforcedGlass - components: - - pos: 24.5,58.5 - parent: 82 - type: Transform -- uid: 7423 - type: TableReinforcedGlass - components: - - pos: 25.5,58.5 - parent: 82 - type: Transform -- uid: 7424 - type: ComputerResearchAndDevelopment - components: - - rot: -1.5707963267948966 rad - pos: 28.5,58.5 - parent: 82 - type: Transform -- uid: 7425 - type: TableReinforcedGlass - components: - - rot: -1.5707963267948966 rad - pos: 29.5,58.5 - parent: 82 - type: Transform -- uid: 7426 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 25.5,68.5 - parent: 82 - type: Transform -- uid: 7427 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 25.5,70.5 - parent: 82 - type: Transform -- uid: 7428 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 25.5,71.5 - parent: 82 - type: Transform -- uid: 7429 - type: Catwalk - components: - - pos: 20.5,81.5 - parent: 82 - type: Transform -- uid: 7430 - type: Catwalk - components: - - pos: 20.5,82.5 - parent: 82 - type: Transform -- uid: 7431 - type: WallReinforced - components: - - pos: 33.5,72.5 - parent: 82 - type: Transform -- uid: 7432 - type: WallReinforced - components: - - pos: 25.5,77.5 - parent: 82 - type: Transform -- uid: 7433 - type: WallReinforced - components: - - pos: 33.5,70.5 - parent: 82 - type: Transform -- uid: 7434 - type: Grille - components: - - pos: -44.5,32.5 - parent: 82 - type: Transform -- uid: 7435 - type: WallReinforced - components: - - pos: -40.5,32.5 - parent: 82 - type: Transform -- uid: 7436 - type: WallReinforced - components: - - pos: -39.5,32.5 - parent: 82 - type: Transform -- uid: 7437 - type: WallReinforced - components: - - pos: -38.5,32.5 - parent: 82 - type: Transform -- uid: 7438 - type: WallReinforced - components: - - pos: -34.5,32.5 - parent: 82 - type: Transform -- uid: 7439 - type: WallReinforced - components: - - pos: -33.5,32.5 - parent: 82 - type: Transform -- uid: 7440 - type: Grille - components: - - pos: -42.5,32.5 - parent: 82 - type: Transform -- uid: 7441 - type: Grille - components: - - pos: -43.5,32.5 - parent: 82 - type: Transform -- uid: 7442 - type: WallReinforced - components: - - pos: -41.5,32.5 - parent: 82 - type: Transform -- uid: 7443 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 30.5,72.5 - parent: 82 - type: Transform -- uid: 7444 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 29.5,72.5 - parent: 82 - type: Transform -- uid: 7445 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 28.5,72.5 - parent: 82 - type: Transform -- uid: 7446 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 27.5,72.5 - parent: 82 - type: Transform -- uid: 7447 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 26.5,72.5 - parent: 82 - type: Transform -- uid: 7448 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 25.5,72.5 - parent: 82 - type: Transform -- uid: 7449 - type: Grille - components: - - pos: 32.5,75.5 - parent: 82 - type: Transform -- uid: 7450 - type: ReinforcedWindow - components: - - pos: 32.5,73.5 - parent: 82 - type: Transform -- uid: 7451 - type: Grille - components: - - pos: 31.5,76.5 - parent: 82 - type: Transform -- uid: 7452 - type: ReinforcedWindow - components: - - pos: 32.5,75.5 - parent: 82 - type: Transform -- uid: 7453 - type: ReinforcedWindow - components: - - pos: 32.5,74.5 - parent: 82 - type: Transform -- uid: 7454 - type: Grille - components: - - pos: 29.5,76.5 - parent: 82 - type: Transform -- uid: 7455 - type: Grille - components: - - pos: 30.5,76.5 - parent: 82 - type: Transform -- uid: 7456 - type: Catwalk - components: - - pos: 22.5,82.5 - parent: 82 - type: Transform -- uid: 7457 - type: Catwalk - components: - - pos: 23.5,82.5 - parent: 82 - type: Transform -- uid: 7458 - type: Catwalk - components: - - pos: 26.5,82.5 - parent: 82 - type: Transform -- uid: 7459 - type: Catwalk - components: - - pos: 27.5,82.5 - parent: 82 - type: Transform -- uid: 7460 - type: Catwalk - components: - - pos: 24.5,82.5 - parent: 82 - type: Transform -- uid: 7461 - type: Catwalk - components: - - pos: 25.5,82.5 - parent: 82 - type: Transform -- uid: 7462 - type: Catwalk - components: - - pos: 28.5,82.5 - parent: 82 - type: Transform -- uid: 7463 - type: Catwalk - components: - - pos: 29.5,82.5 - parent: 82 - type: Transform -- uid: 7464 - type: WallReinforced - components: - - pos: 34.5,69.5 - parent: 82 - type: Transform -- uid: 7465 - type: WallReinforced - components: - - pos: 34.5,68.5 - parent: 82 - type: Transform -- uid: 7466 - type: Catwalk - components: - - pos: 20.5,80.5 - parent: 82 - type: Transform -- uid: 7467 - type: ReinforcedWindow - components: - - pos: 28.5,67.5 - parent: 82 - type: Transform -- uid: 7468 - type: ReinforcedWindow - components: - - pos: 27.5,67.5 - parent: 82 - type: Transform -- uid: 7469 - type: ReinforcedWindow - components: - - pos: 25.5,65.5 - parent: 82 - type: Transform -- uid: 7470 - type: ReinforcedWindow - components: - - pos: 25.5,64.5 - parent: 82 - type: Transform -- uid: 7471 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -59.5,49.5 - parent: 82 - type: Transform -- uid: 7472 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -59.5,48.5 - parent: 82 - type: Transform -- uid: 7473 - type: ReinforcedWindow - components: - - pos: 25.5,68.5 - parent: 82 - type: Transform -- uid: 7474 - type: ReinforcedWindow - components: - - pos: 25.5,70.5 - parent: 82 - type: Transform -- uid: 7475 - type: ReinforcedWindow - components: - - pos: 25.5,71.5 - parent: 82 - type: Transform -- uid: 7476 - type: FoamBlade - components: - - pos: 8.420156,47.440678 - parent: 82 - type: Transform -- uid: 7477 - type: PottedPlantRandom - components: - - pos: -10.5,-27.5 - parent: 82 - type: Transform -- uid: 7478 - type: TableReinforcedGlass - components: - - pos: 26.5,71.5 - parent: 82 - type: Transform -- uid: 7479 - type: TableReinforcedGlass - components: - - pos: 27.5,71.5 - parent: 82 - type: Transform -- uid: 7480 - type: KitchenMicrowave - components: - - pos: 26.5,71.5 - parent: 82 - type: Transform -- uid: 7481 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 28.5,71.5 - parent: 82 - type: Transform -- uid: 7482 - type: RandomVending - components: - - pos: 29.5,71.5 - parent: 82 - type: Transform -- uid: 7483 - type: Table - components: - - pos: 27.5,69.5 - parent: 82 - type: Transform -- uid: 7484 - type: Table - components: - - pos: 28.5,69.5 - parent: 82 - type: Transform -- uid: 7485 - type: Chair - components: - - pos: 27.5,70.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7486 - type: Chair - components: - - pos: 28.5,70.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7487 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 27.5,68.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7488 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 28.5,68.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7489 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 22.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7490 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 22.5,15.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7491 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -26.5,28.5 - parent: 82 - type: Transform -- uid: 7492 - type: WallReinforced - components: - - pos: 70.5,8.5 - parent: 82 - type: Transform -- uid: 7493 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,52.5 - parent: 82 - type: Transform -- uid: 7494 - type: VendingMachineRoboDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,58.5 - parent: 82 - type: Transform -- uid: 7495 - type: WardrobeRobotics - components: - - pos: 12.5,58.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7496 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 12.5,53.5 - parent: 82 - type: Transform -- uid: 7497 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 12.5,54.5 - parent: 82 - type: Transform -- uid: 7498 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 12.5,55.5 - parent: 82 - type: Transform -- uid: 7499 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 13.5,70.5 - parent: 82 - type: Transform -- uid: 7500 - type: ResearchAndDevelopmentServer - components: - - pos: 13.5,62.5 - parent: 82 - type: Transform -- uid: 7501 - type: ReinforcedWindow - components: - - pos: 34.5,65.5 - parent: 82 - type: Transform -- uid: 7502 - type: ReinforcedWindow - components: - - pos: 34.5,64.5 - parent: 82 - type: Transform -- uid: 7503 - type: ReinforcedWindow - components: - - pos: 34.5,63.5 - parent: 82 - type: Transform -- uid: 7504 - type: ReinforcedWindow - components: - - pos: 34.5,61.5 - parent: 82 - type: Transform -- uid: 7505 - type: ReinforcedWindow - components: - - pos: 34.5,60.5 - parent: 82 - type: Transform -- uid: 7506 - type: ReinforcedWindow - components: - - pos: 34.5,59.5 - parent: 82 - type: Transform -- uid: 7507 - type: Grille - components: - - pos: 48.5,47.5 - parent: 82 - type: Transform -- uid: 7508 - type: Grille - components: - - pos: 48.5,48.5 - parent: 82 - type: Transform -- uid: 7509 - type: Grille - components: - - pos: 48.5,49.5 - parent: 82 - type: Transform -- uid: 7510 - type: WallReinforced - components: - - pos: 48.5,50.5 - parent: 82 - type: Transform -- uid: 7511 - type: WallReinforced - components: - - pos: 48.5,51.5 - parent: 82 - type: Transform -- uid: 7512 - type: Grille - components: - - pos: 47.5,51.5 - parent: 82 - type: Transform -- uid: 7513 - type: WallReinforced - components: - - pos: -24.5,33.5 - parent: 82 - type: Transform -- uid: 7514 - type: WallReinforced - components: - - pos: -25.5,33.5 - parent: 82 - type: Transform -- uid: 7515 - type: WallReinforced - components: - - pos: 44.5,51.5 - parent: 82 - type: Transform -- uid: 7516 - type: ShuttersNormal - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 7517 - type: WallReinforced - components: - - pos: 44.5,53.5 - parent: 82 - type: Transform -- uid: 7518 - type: WallReinforced - components: - - pos: 44.5,54.5 - parent: 82 - type: Transform -- uid: 7519 - type: WallReinforced - components: - - pos: 44.5,55.5 - parent: 82 - type: Transform -- uid: 7520 - type: WallReinforced - components: - - pos: 44.5,56.5 - parent: 82 - type: Transform -- uid: 7521 - type: WallReinforced - components: - - pos: 44.5,57.5 - parent: 82 - type: Transform -- uid: 7522 - type: WallReinforced - components: - - pos: 44.5,58.5 - parent: 82 - type: Transform -- uid: 7523 - type: WallSolid - components: - - pos: 35.5,55.5 - parent: 82 - type: Transform -- uid: 7524 - type: WallSolid - components: - - pos: 37.5,55.5 - parent: 82 - type: Transform -- uid: 7525 - type: WallSolid - components: - - pos: 38.5,56.5 - parent: 82 - type: Transform -- uid: 7526 - type: WallSolid - components: - - pos: 38.5,55.5 - parent: 82 - type: Transform -- uid: 7527 - type: WallSolid - components: - - pos: 38.5,57.5 - parent: 82 - type: Transform -- uid: 7528 - type: WallSolid - components: - - pos: 39.5,55.5 - parent: 82 - type: Transform -- uid: 7529 - type: WallSolid - components: - - pos: 41.5,55.5 - parent: 82 - type: Transform -- uid: 7530 - type: WallSolid - components: - - pos: 42.5,55.5 - parent: 82 - type: Transform -- uid: 7531 - type: WallSolid - components: - - pos: 42.5,56.5 - parent: 82 - type: Transform -- uid: 7532 - type: WallSolid - components: - - pos: 42.5,57.5 - parent: 82 - type: Transform -- uid: 7533 - type: WallReinforced - components: - - pos: 43.5,58.5 - parent: 82 - type: Transform -- uid: 7534 - type: WallReinforced - components: - - pos: 42.5,58.5 - parent: 82 - type: Transform -- uid: 7535 - type: WallReinforced - components: - - pos: 38.5,58.5 - parent: 82 - type: Transform -- uid: 7536 - type: Grille - components: - - pos: 35.5,58.5 - parent: 82 - type: Transform -- uid: 7537 - type: Grille - components: - - pos: 36.5,58.5 - parent: 82 - type: Transform -- uid: 7538 - type: Grille - components: - - pos: 37.5,58.5 - parent: 82 - type: Transform -- uid: 7539 - type: Grille - components: - - pos: 39.5,58.5 - parent: 82 - type: Transform -- uid: 7540 - type: Grille - components: - - pos: 40.5,58.5 - parent: 82 - type: Transform -- uid: 7541 - type: Grille - components: - - pos: 41.5,58.5 - parent: 82 - type: Transform -- uid: 7542 - type: ReinforcedWindow - components: - - pos: 35.5,58.5 - parent: 82 - type: Transform -- uid: 7543 - type: ReinforcedWindow - components: - - pos: 36.5,58.5 - parent: 82 - type: Transform -- uid: 7544 - type: ReinforcedWindow - components: - - pos: 37.5,58.5 - parent: 82 - type: Transform -- uid: 7545 - type: ReinforcedWindow - components: - - pos: 39.5,58.5 - parent: 82 - type: Transform -- uid: 7546 - type: ReinforcedWindow - components: - - pos: 40.5,58.5 - parent: 82 - type: Transform -- uid: 7547 - type: ReinforcedWindow - components: - - pos: 41.5,58.5 - parent: 82 - type: Transform -- uid: 7548 - type: Bed - components: - - pos: 37.5,57.5 - parent: 82 - type: Transform -- uid: 7549 - type: Bed - components: - - pos: 39.5,57.5 - parent: 82 - type: Transform -- uid: 7550 - type: WallSolid - components: - - pos: 37.5,54.5 - parent: 82 - type: Transform -- uid: 7551 - type: WallSolid - components: - - pos: 42.5,52.5 - parent: 82 - type: Transform -- uid: 7552 - type: WallSolid - components: - - pos: 41.5,52.5 - parent: 82 - type: Transform -- uid: 7553 - type: WallSolid - components: - - pos: 42.5,54.5 - parent: 82 - type: Transform -- uid: 7554 - type: ReinforcedWindow - components: - - pos: 47.5,51.5 - parent: 82 - type: Transform -- uid: 7555 - type: WallReinforced - components: - - pos: -26.5,33.5 - parent: 82 - type: Transform -- uid: 7556 - type: WallReinforced - components: - - pos: -27.5,33.5 - parent: 82 - type: Transform -- uid: 7557 - type: ReinforcedWindow - components: - - pos: 48.5,49.5 - parent: 82 - type: Transform -- uid: 7558 - type: ReinforcedWindow - components: - - pos: 48.5,48.5 - parent: 82 - type: Transform -- uid: 7559 - type: ReinforcedWindow - components: - - pos: 48.5,47.5 - parent: 82 - type: Transform -- uid: 7560 - type: ReinforcedWindow - components: - - pos: 48.5,46.5 - parent: 82 - type: Transform -- uid: 7561 - type: ReinforcedWindow - components: - - pos: 48.5,45.5 - parent: 82 - type: Transform -- uid: 7562 - type: ReinforcedWindow - components: - - pos: 52.5,10.5 - parent: 82 - type: Transform -- uid: 7563 - type: ReinforcedWindow - components: - - pos: 51.5,10.5 - parent: 82 - type: Transform -- uid: 7564 - type: ReinforcedWindow - components: - - pos: 50.5,10.5 - parent: 82 - type: Transform -- uid: 7565 - type: SpawnPointLatejoin - components: - - pos: 79.5,7.5 - parent: 82 - type: Transform -- uid: 7566 - type: WallReinforced - components: - - pos: 74.5,1.5 - parent: 82 - type: Transform -- uid: 7567 - type: WallReinforced - components: - - pos: 75.5,1.5 - parent: 82 - type: Transform -- uid: 7568 - type: SpawnPointLatejoin - components: - - pos: 80.5,9.5 - parent: 82 - type: Transform -- uid: 7569 - type: WallReinforced - components: - - pos: 84.5,1.5 - parent: 82 - type: Transform -- uid: 7570 - type: WallReinforced - components: - - pos: 83.5,1.5 - parent: 82 - type: Transform -- uid: 7571 - type: WallReinforced - components: - - pos: 79.5,1.5 - parent: 82 - type: Transform -- uid: 7572 - type: SpawnPointLatejoin - components: - - pos: 78.5,7.5 - parent: 82 - type: Transform -- uid: 7573 - type: CableApcExtension - components: - - pos: 86.5,-3.5 - parent: 82 - type: Transform -- uid: 7574 - type: CableApcExtension - components: - - pos: 86.5,-2.5 - parent: 82 - type: Transform -- uid: 7575 - type: CableApcExtension - components: - - pos: 86.5,-1.5 - parent: 82 - type: Transform -- uid: 7576 - type: CableApcExtension - components: - - pos: 86.5,0.5 - parent: 82 - type: Transform -- uid: 7577 - type: SpawnPointLatejoin - components: - - pos: 80.5,7.5 - parent: 82 - type: Transform -- uid: 7578 - type: Grille - components: - - pos: 76.5,1.5 - parent: 82 - type: Transform -- uid: 7579 - type: Grille - components: - - pos: 77.5,1.5 - parent: 82 - type: Transform -- uid: 7580 - type: Grille - components: - - pos: 78.5,1.5 - parent: 82 - type: Transform -- uid: 7581 - type: Grille - components: - - pos: 80.5,1.5 - parent: 82 - type: Transform -- uid: 7582 - type: Grille - components: - - pos: 81.5,1.5 - parent: 82 - type: Transform -- uid: 7583 - type: Grille - components: - - pos: 82.5,1.5 - parent: 82 - type: Transform -- uid: 7584 - type: CableApcExtension - components: - - pos: 86.5,-10.5 - parent: 82 - type: Transform -- uid: 7585 - type: CableApcExtension - components: - - pos: 86.5,-9.5 - parent: 82 - type: Transform -- uid: 7586 - type: CableApcExtension - components: - - pos: 86.5,-8.5 - parent: 82 - type: Transform -- uid: 7587 - type: SignDirectionalSci - components: - - rot: 3.141592653589793 rad - pos: 30.5,35 - parent: 82 - type: Transform -- uid: 7588 - type: Grille - components: - - pos: -31.5,-47.5 - parent: 82 - type: Transform -- uid: 7589 - type: SignDirectionalSalvage - components: - - rot: 1.5707963267948966 rad - pos: 30.5,35.5 - parent: 82 - type: Transform -- uid: 7590 - type: CableApcExtension - components: - - pos: 72.5,-10.5 - parent: 82 - type: Transform -- uid: 7591 - type: CableApcExtension - components: - - pos: 86.5,-0.5 - parent: 82 - type: Transform -- uid: 7592 - type: SpawnPointLatejoin - components: - - pos: 79.5,9.5 - parent: 82 - type: Transform -- uid: 7593 - type: ReinforcedWindow - components: - - pos: 70.5,-6.5 - parent: 82 - type: Transform -- uid: 7594 - type: ReinforcedWindow - components: - - pos: 70.5,-7.5 - parent: 82 - type: Transform -- uid: 7595 - type: ReinforcedWindow - components: - - pos: 84.5,-8.5 - parent: 82 - type: Transform -- uid: 7596 - type: ReinforcedWindow - components: - - pos: 74.5,-0.5 - parent: 82 - type: Transform -- uid: 7597 - type: ReinforcedWindow - components: - - pos: 74.5,0.5 - parent: 82 - type: Transform -- uid: 7598 - type: Grille - components: - - pos: 85.5,-12.5 - parent: 82 - type: Transform -- uid: 7599 - type: WallReinforced - components: - - pos: 74.5,-9.5 - parent: 82 - type: Transform -- uid: 7600 - type: Grille - components: - - pos: 74.5,0.5 - parent: 82 - type: Transform -- uid: 7601 - type: WallReinforced - components: - - pos: 74.5,-4.5 - parent: 82 - type: Transform -- uid: 7602 - type: WallReinforced - components: - - pos: 71.5,1.5 - parent: 82 - type: Transform -- uid: 7603 - type: WallReinforced - components: - - pos: 70.5,1.5 - parent: 82 - type: Transform -- uid: 7604 - type: WallReinforced - components: - - pos: 84.5,-4.5 - parent: 82 - type: Transform -- uid: 7605 - type: ReinforcedWindow - components: - - pos: 74.5,-6.5 - parent: 82 - type: Transform -- uid: 7606 - type: ReinforcedWindow - components: - - pos: 74.5,-7.5 - parent: 82 - type: Transform -- uid: 7607 - type: ReinforcedWindow - components: - - pos: 74.5,-5.5 - parent: 82 - type: Transform -- uid: 7608 - type: ReinforcedWindow - components: - - pos: 71.5,-0.5 - parent: 82 - type: Transform -- uid: 7609 - type: WallReinforced - components: - - pos: 74.5,-2.5 - parent: 82 - type: Transform -- uid: 7610 - type: WallReinforced - components: - - pos: 84.5,-2.5 - parent: 82 - type: Transform -- uid: 7611 - type: SignDirectionalBrig - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-6.5 - parent: 82 - type: Transform -- uid: 7612 - type: RandomSpawner - components: - - pos: -41.5,52.5 - parent: 82 - type: Transform -- uid: 7613 - type: SignDirectionalBrig - components: - - pos: 53.5,-19.5 - parent: 82 - type: Transform -- uid: 7614 - type: WallReinforced - components: - - pos: 71.5,-10.5 - parent: 82 - type: Transform -- uid: 7615 - type: WallReinforced - components: - - pos: 71.5,-9.5 - parent: 82 - type: Transform -- uid: 7616 - type: WallReinforced - components: - - pos: 71.5,-12.5 - parent: 82 - type: Transform -- uid: 7617 - type: WallReinforced - components: - - pos: 87.5,-10.5 - parent: 82 - type: Transform -- uid: 7618 - type: ReinforcedWindow - components: - - pos: 84.5,-6.5 - parent: 82 - type: Transform -- uid: 7619 - type: ReinforcedWindow - components: - - pos: 84.5,-7.5 - parent: 82 - type: Transform -- uid: 7620 - type: WallReinforced - components: - - pos: 84.5,-11.5 - parent: 82 - type: Transform -- uid: 7621 - type: WallReinforced - components: - - pos: 84.5,-9.5 - parent: 82 - type: Transform -- uid: 7622 - type: WallReinforced - components: - - pos: 74.5,-12.5 - parent: 82 - type: Transform -- uid: 7623 - type: WallReinforced - components: - - pos: 87.5,-11.5 - parent: 82 - type: Transform -- uid: 7624 - type: WallReinforced - components: - - pos: 78.5,11.5 - parent: 82 - type: Transform -- uid: 7625 - type: WallReinforced - components: - - pos: 79.5,11.5 - parent: 82 - type: Transform -- uid: 7626 - type: WallReinforced - components: - - pos: 80.5,11.5 - parent: 82 - type: Transform -- uid: 7627 - type: Grille - components: - - pos: 78.5,12.5 - parent: 82 - type: Transform -- uid: 7628 - type: Grille - components: - - pos: 78.5,13.5 - parent: 82 - type: Transform -- uid: 7629 - type: Grille - components: - - pos: 78.5,14.5 - parent: 82 - type: Transform -- uid: 7630 - type: Grille - components: - - pos: 78.5,15.5 - parent: 82 - type: Transform -- uid: 7631 - type: Grille - components: - - pos: 80.5,15.5 - parent: 82 - type: Transform -- uid: 7632 - type: Grille - components: - - pos: 80.5,14.5 - parent: 82 - type: Transform -- uid: 7633 - type: Grille - components: - - pos: 80.5,13.5 - parent: 82 - type: Transform -- uid: 7634 - type: Grille - components: - - pos: 80.5,12.5 - parent: 82 - type: Transform -- uid: 7635 - type: Grille - components: - - pos: 85.5,15.5 - parent: 82 - type: Transform -- uid: 7636 - type: Grille - components: - - pos: 85.5,14.5 - parent: 82 - type: Transform -- uid: 7637 - type: Grille - components: - - pos: 85.5,13.5 - parent: 82 - type: Transform -- uid: 7638 - type: Grille - components: - - pos: 85.5,12.5 - parent: 82 - type: Transform -- uid: 7639 - type: Grille - components: - - pos: 73.5,15.5 - parent: 82 - type: Transform -- uid: 7640 - type: Grille - components: - - pos: 73.5,14.5 - parent: 82 - type: Transform -- uid: 7641 - type: Grille - components: - - pos: 73.5,13.5 - parent: 82 - type: Transform -- uid: 7642 - type: Grille - components: - - pos: 73.5,12.5 - parent: 82 - type: Transform -- uid: 7643 - type: WallReinforced - components: - - pos: 73.5,16.5 - parent: 82 - type: Transform -- uid: 7644 - type: WallReinforced - components: - - pos: 78.5,16.5 - parent: 82 - type: Transform -- uid: 7645 - type: WallReinforced - components: - - pos: 80.5,16.5 - parent: 82 - type: Transform -- uid: 7646 - type: WallReinforced - components: - - pos: 85.5,16.5 - parent: 82 - type: Transform -- uid: 7647 - type: WallReinforced - components: - - pos: 85.5,11.5 - parent: 82 - type: Transform -- uid: 7648 - type: WallReinforced - components: - - pos: 85.5,10.5 - parent: 82 - type: Transform -- uid: 7649 - type: WallReinforced - components: - - pos: 73.5,11.5 - parent: 82 - type: Transform -- uid: 7650 - type: WallReinforced - components: - - pos: 73.5,10.5 - parent: 82 - type: Transform -- uid: 7651 - type: ClothingHeadHatAnimalHeadslime - components: - - pos: 59.496258,8.638671 - parent: 82 - type: Transform -- uid: 7652 - type: ClosetRadiationSuitFilled - components: - - pos: 22.5,56.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7653 - type: ClosetBase - components: - - pos: 22.5,53.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7654 - type: WallSolid - components: - - pos: 21.5,56.5 - parent: 82 - type: Transform -- uid: 7655 - type: Grille - components: - - pos: 85.5,9.5 - parent: 82 - type: Transform -- uid: 7656 - type: Grille - components: - - pos: 85.5,8.5 - parent: 82 - type: Transform -- uid: 7657 - type: Grille - components: - - pos: 85.5,7.5 - parent: 82 - type: Transform -- uid: 7658 - type: Grille - components: - - pos: 85.5,6.5 - parent: 82 - type: Transform -- uid: 7659 - type: WallReinforced - components: - - pos: 52.5,53.5 - parent: 82 - type: Transform -- uid: 7660 - type: WallSolid - components: - - pos: 78.5,5.5 - parent: 82 - type: Transform -- uid: 7661 - type: WallSolid - components: - - pos: 79.5,5.5 - parent: 82 - type: Transform -- uid: 7662 - type: WallSolid - components: - - pos: 80.5,5.5 - parent: 82 - type: Transform -- uid: 7663 - type: Grille - components: - - pos: 74.5,5.5 - parent: 82 - type: Transform -- uid: 7664 - type: Grille - components: - - pos: 77.5,5.5 - parent: 82 - type: Transform -- uid: 7665 - type: Grille - components: - - pos: 81.5,5.5 - parent: 82 - type: Transform -- uid: 7666 - type: Grille - components: - - pos: 84.5,5.5 - parent: 82 - type: Transform -- uid: 7667 - type: WallReinforced - components: - - pos: 85.5,5.5 - parent: 82 - type: Transform -- uid: 7668 - type: WallReinforced - components: - - pos: 86.5,5.5 - parent: 82 - type: Transform -- uid: 7669 - type: WallReinforced - components: - - pos: 87.5,5.5 - parent: 82 - type: Transform -- uid: 7670 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -25.5,28.5 - parent: 82 - type: Transform -- uid: 7671 - type: LockerSecurity - components: - - pos: -31.5,27.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7672 - type: WallReinforced - components: - - pos: 87.5,1.5 - parent: 82 - type: Transform -- uid: 7673 - type: WallReinforced - components: - - pos: 87.5,-9.5 - parent: 82 - type: Transform -- uid: 7674 - type: ReinforcedWindow - components: - - pos: 73.5,15.5 - parent: 82 - type: Transform -- uid: 7675 - type: ReinforcedWindow - components: - - pos: 73.5,14.5 - parent: 82 - type: Transform -- uid: 7676 - type: ReinforcedWindow - components: - - pos: 73.5,13.5 - parent: 82 - type: Transform -- uid: 7677 - type: ReinforcedWindow - components: - - pos: 78.5,15.5 - parent: 82 - type: Transform -- uid: 7678 - type: ReinforcedWindow - components: - - pos: 78.5,14.5 - parent: 82 - type: Transform -- uid: 7679 - type: ReinforcedWindow - components: - - pos: 78.5,13.5 - parent: 82 - type: Transform -- uid: 7680 - type: ReinforcedWindow - components: - - pos: 80.5,15.5 - parent: 82 - type: Transform -- uid: 7681 - type: ReinforcedWindow - components: - - pos: 80.5,14.5 - parent: 82 - type: Transform -- uid: 7682 - type: ReinforcedWindow - components: - - pos: 80.5,13.5 - parent: 82 - type: Transform -- uid: 7683 - type: ReinforcedWindow - components: - - pos: 85.5,15.5 - parent: 82 - type: Transform -- uid: 7684 - type: ReinforcedWindow - components: - - pos: 85.5,14.5 - parent: 82 - type: Transform -- uid: 7685 - type: ReinforcedWindow - components: - - pos: 85.5,13.5 - parent: 82 - type: Transform -- uid: 7686 - type: ReinforcedWindow - components: - - pos: 85.5,12.5 - parent: 82 - type: Transform -- uid: 7687 - type: ReinforcedWindow - components: - - pos: 80.5,12.5 - parent: 82 - type: Transform -- uid: 7688 - type: ReinforcedWindow - components: - - pos: 78.5,12.5 - parent: 82 - type: Transform -- uid: 7689 - type: ReinforcedWindow - components: - - pos: 73.5,12.5 - parent: 82 - type: Transform -- uid: 7690 - type: WallSolid - components: - - pos: 21.5,53.5 - parent: 82 - type: Transform -- uid: 7691 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 29.5,52.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7692 - type: Poweredlight - components: - - pos: 73.5,4.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7693 - type: ClosetEmergencyFilledRandom - components: - - pos: 71.5,7.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7694 - type: GasPipeStraight - components: - - pos: -9.5,-37.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7695 - type: GasPipeStraight - components: - - pos: -9.5,-40.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7696 - type: CableApcExtension - components: - - pos: -9.5,-37.5 - parent: 82 - type: Transform -- uid: 7697 - type: CableApcExtension - components: - - pos: -9.5,-35.5 - parent: 82 - type: Transform -- uid: 7698 - type: ReinforcedWindow - components: - - pos: 85.5,6.5 - parent: 82 - type: Transform -- uid: 7699 - type: ReinforcedWindow - components: - - pos: 85.5,7.5 - parent: 82 - type: Transform -- uid: 7700 - type: ReinforcedWindow - components: - - pos: 85.5,8.5 - parent: 82 - type: Transform -- uid: 7701 - type: ReinforcedWindow - components: - - pos: 85.5,9.5 - parent: 82 - type: Transform -- uid: 7702 - type: BlastDoor - components: - - pos: 74.5,16.5 - parent: 82 - type: Transform -- uid: 7703 - type: BlastDoor - components: - - pos: 77.5,16.5 - parent: 82 - type: Transform -- uid: 7704 - type: BlastDoor - components: - - pos: 81.5,16.5 - parent: 82 - type: Transform -- uid: 7705 - type: BlastDoor - components: - - pos: 84.5,16.5 - parent: 82 - type: Transform -- uid: 7706 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 3.141592653589793 rad - pos: 75.5,16.5 - parent: 82 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 7707 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 3.141592653589793 rad - pos: 76.5,16.5 - parent: 82 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 7708 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 3.141592653589793 rad - pos: 82.5,16.5 - parent: 82 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 7709 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 3.141592653589793 rad - pos: 83.5,16.5 - parent: 82 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 7710 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 82.5,16.5 - parent: 82 - type: Transform -- uid: 7711 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 83.5,16.5 - parent: 82 - type: Transform -- uid: 7712 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 84.5,16.5 - parent: 82 - type: Transform -- uid: 7713 - type: WallReinforced - components: - - pos: 8.5,-15.5 - parent: 82 - type: Transform -- uid: 7714 - type: FigureSpawner - components: - - pos: 16.5,-52.5 - parent: 82 - type: Transform -- uid: 7715 - type: ShuttersNormal - components: - - rot: -1.5707963267948966 rad - pos: 25.5,64.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -363293.28 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25178 - type: SignalReceiver -- uid: 7716 - type: TableReinforced - components: - - pos: 17.5,-52.5 - parent: 82 - type: Transform -- uid: 7717 - type: SignShipDock - components: - - pos: 78.5,16.5 - parent: 82 - type: Transform -- uid: 7718 - type: SignShipDock - components: - - pos: 80.5,16.5 - parent: 82 - type: Transform -- uid: 7719 - type: ReinforcedWindow - components: - - pos: 24.5,-36.5 - parent: 82 - type: Transform -- uid: 7720 - type: TableReinforced - components: - - pos: 16.5,-52.5 - parent: 82 - type: Transform -- uid: 7721 - type: WallReinforced - components: - - pos: 71.5,-11.5 - parent: 82 - type: Transform -- uid: 7722 - type: WallReinforced - components: - - pos: 87.5,-12.5 - parent: 82 - type: Transform -- uid: 7723 - type: WallReinforced - components: - - pos: 84.5,-12.5 - parent: 82 - type: Transform -- uid: 7724 - type: SignSpace - components: - - pos: 51.5,35.5 - parent: 82 - type: Transform -- uid: 7725 - type: SignDirectionalSec - components: - - pos: 30.5,34.5 - parent: 82 - type: Transform -- uid: 7726 - type: SpawnPointAssistant - components: - - pos: 12.5,-32.5 - parent: 82 - type: Transform -- uid: 7727 - type: WallReinforced - components: - - pos: 87.5,-3.5 - parent: 82 - type: Transform -- uid: 7728 - type: WallReinforced - components: - - pos: 87.5,-4.5 - parent: 82 - type: Transform -- uid: 7729 - type: ReinforcedWindow - components: - - pos: 74.5,-8.5 - parent: 82 - type: Transform -- uid: 7730 - type: ReinforcedWindow - components: - - pos: 84.5,-5.5 - parent: 82 - type: Transform -- uid: 7731 - type: WallReinforced - components: - - pos: 74.5,-11.5 - parent: 82 - type: Transform -- uid: 7732 - type: Grille - components: - - pos: 84.5,-8.5 - parent: 82 - type: Transform -- uid: 7733 - type: Grille - components: - - pos: 84.5,-7.5 - parent: 82 - type: Transform -- uid: 7734 - type: Grille - components: - - pos: 84.5,-6.5 - parent: 82 - type: Transform -- uid: 7735 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 72.5,-6.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7736 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 85.5,-6.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7737 - type: Grille - components: - - pos: 74.5,-8.5 - parent: 82 - type: Transform -- uid: 7738 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 73.5,-7.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7739 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 86.5,-7.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7740 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 1.5707963267948966 rad - pos: 74.5,-10.5 - parent: 82 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 7741 - type: TintedWindow - components: - - pos: -50.5,0.5 - parent: 82 - type: Transform -- uid: 7742 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -52.5,1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7743 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -52.5,2.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7744 - type: BoxForensicPad - components: - - pos: -55.407227,-0.4614148 - parent: 82 - type: Transform -- uid: 7745 - type: RandomDrinkBottle - components: - - pos: -53.5,1.5 - parent: 82 - type: Transform -- uid: 7746 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-53.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7747 - type: SmokingPipe - components: - - pos: -55.645393,-0.17400408 - parent: 82 - type: Transform -- uid: 7748 - type: AirlockSecurityGlassLocked - components: - - pos: -50.5,1.5 - parent: 82 - type: Transform -- uid: 7749 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 76.5,1.5 - parent: 82 - type: Transform -- uid: 7750 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 77.5,1.5 - parent: 82 - type: Transform -- uid: 7751 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 78.5,1.5 - parent: 82 - type: Transform -- uid: 7752 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 80.5,1.5 - parent: 82 - type: Transform -- uid: 7753 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 81.5,1.5 - parent: 82 - type: Transform -- uid: 7754 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 82.5,1.5 - parent: 82 - type: Transform -- uid: 7755 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 86.5,-3.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7756 - type: GasPipeStraight - components: - - pos: 73.5,-1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7757 - type: GasPipeStraight - components: - - pos: 73.5,-2.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7758 - type: GasPipeStraight - components: - - pos: 73.5,0.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7759 - type: GasPipeStraight - components: - - pos: 73.5,-0.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7760 - type: GasPipeStraight - components: - - pos: 73.5,-5.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7761 - type: GasPipeStraight - components: - - pos: 73.5,-6.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7762 - type: GasPipeStraight - components: - - pos: 73.5,-3.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7763 - type: GasPipeStraight - components: - - pos: 73.5,-4.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7764 - type: GasPipeStraight - components: - - pos: 72.5,0.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7765 - type: GasPipeStraight - components: - - pos: 72.5,-0.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7766 - type: SignSecureMed - components: - - pos: 16.5,63.5 - parent: 82 - type: Transform -- uid: 7767 - type: SignDoors - components: - - pos: 32.5,70.5 - parent: 82 - type: Transform -- uid: 7768 - type: SignSomethingOld2 - components: - - pos: 16.5,65.5 - parent: 82 - type: Transform -- uid: 7769 - type: GasPipeStraight - components: - - pos: 72.5,-1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7770 - type: GasPipeStraight - components: - - pos: 72.5,-3.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7771 - type: GasPipeStraight - components: - - pos: 72.5,-4.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7772 - type: ReinforcedWindow - components: - - pos: 87.5,0.5 - parent: 82 - type: Transform -- uid: 7773 - type: CableApcExtension - components: - - pos: 32.5,71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7774 - type: AirlockExternalGlassLocked - components: - - pos: 33.5,71.5 - parent: 82 - type: Transform -- uid: 7775 - type: WallReinforced - components: - - pos: 71.5,-1.5 - parent: 82 - type: Transform -- uid: 7776 - type: ReinforcedWindow - components: - - pos: 84.5,-0.5 - parent: 82 - type: Transform -- uid: 7777 - type: WallReinforced - components: - - pos: 84.5,-1.5 - parent: 82 - type: Transform -- uid: 7778 - type: ReinforcedWindow - components: - - pos: 87.5,-0.5 - parent: 82 - type: Transform -- uid: 7779 - type: Grille - components: - - pos: 88.5,-7.5 - parent: 82 - type: Transform -- uid: 7780 - type: WaterTankFull - components: - - pos: -0.5,33.5 - parent: 82 - type: Transform -- uid: 7781 - type: Catwalk - components: - - pos: 30.5,82.5 - parent: 82 - type: Transform -- uid: 7782 - type: WallReinforced - components: - - pos: 32.5,68.5 - parent: 82 - type: Transform -- uid: 7783 - type: VendingMachineChemDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -33.5,-25.5 - parent: 82 - type: Transform -- uid: 7784 - type: Grille - components: - - pos: 70.5,-7.5 - parent: 82 - type: Transform -- uid: 7785 - type: AtmosDeviceFanTiny - components: - - pos: 74.5,-3.5 - parent: 82 - type: Transform -- uid: 7786 - type: ReinforcedWindow - components: - - pos: 86.5,-12.5 - parent: 82 - type: Transform -- uid: 7787 - type: ReinforcedWindow - components: - - pos: 73.5,-12.5 - parent: 82 - type: Transform -- uid: 7788 - type: AtmosDeviceFanTiny - components: - - pos: 84.5,-3.5 - parent: 82 - type: Transform -- uid: 7789 - type: AtmosDeviceFanTiny - components: - - pos: 84.5,-10.5 - parent: 82 - type: Transform -- uid: 7790 - type: ReinforcedWindow - components: - - pos: 85.5,-12.5 - parent: 82 - type: Transform -- uid: 7791 - type: Grille - components: - - pos: 88.5,-5.5 - parent: 82 - type: Transform -- uid: 7792 - type: GasPipeStraight - components: - - pos: 85.5,-5.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7793 - type: WallReinforced - components: - - pos: 87.5,-2.5 - parent: 82 - type: Transform -- uid: 7794 - type: Grille - components: - - pos: 70.5,-6.5 - parent: 82 - type: Transform -- uid: 7795 - type: Grille - components: - - pos: 70.5,-8.5 - parent: 82 - type: Transform -- uid: 7796 - type: WallReinforced - components: - - pos: 87.5,-1.5 - parent: 82 - type: Transform -- uid: 7797 - type: WallReinforced - components: - - pos: 74.5,-1.5 - parent: 82 - type: Transform -- uid: 7798 - type: Grille - components: - - pos: 84.5,-0.5 - parent: 82 - type: Transform -- uid: 7799 - type: CableApcExtension - components: - - pos: 72.5,0.5 - parent: 82 - type: Transform -- uid: 7800 - type: CableApcExtension - components: - - pos: 72.5,-0.5 - parent: 82 - type: Transform -- uid: 7801 - type: CableApcExtension - components: - - pos: 72.5,-1.5 - parent: 82 - type: Transform -- uid: 7802 - type: CableApcExtension - components: - - pos: 72.5,-2.5 - parent: 82 - type: Transform -- uid: 7803 - type: Grille - components: - - pos: 71.5,0.5 - parent: 82 - type: Transform -- uid: 7804 - type: Grille - components: - - pos: 74.5,-0.5 - parent: 82 - type: Transform -- uid: 7805 - type: Grille - components: - - pos: 84.5,0.5 - parent: 82 - type: Transform -- uid: 7806 - type: Grille - components: - - pos: 71.5,-0.5 - parent: 82 - type: Transform -- uid: 7807 - type: Grille - components: - - pos: 88.5,-6.5 - parent: 82 - type: Transform -- uid: 7808 - type: Grille - components: - - pos: 74.5,-7.5 - parent: 82 - type: Transform -- uid: 7809 - type: Grille - components: - - pos: 72.5,-12.5 - parent: 82 - type: Transform -- uid: 7810 - type: Grille - components: - - pos: 86.5,-12.5 - parent: 82 - type: Transform -- uid: 7811 - type: GasPipeStraight - components: - - pos: 86.5,0.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7812 - type: GasPipeStraight - components: - - pos: 86.5,-0.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7813 - type: GasPipeStraight - components: - - pos: 86.5,-1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7814 - type: GasPipeStraight - components: - - pos: 86.5,-2.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7815 - type: GasPipeStraight - components: - - pos: 85.5,-0.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7816 - type: GasPipeStraight - components: - - pos: 86.5,-3.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7817 - type: GasPipeStraight - components: - - pos: 86.5,-4.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7818 - type: GasPipeStraight - components: - - pos: 86.5,-5.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7819 - type: GasPipeStraight - components: - - pos: 86.5,-6.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7820 - type: Grille - components: - - pos: 73.5,-12.5 - parent: 82 - type: Transform -- uid: 7821 - type: WallReinforced - components: - - pos: 88.5,-4.5 - parent: 82 - type: Transform -- uid: 7822 - type: CableApcExtension - components: - - pos: 72.5,-3.5 - parent: 82 - type: Transform -- uid: 7823 - type: CableApcExtension - components: - - pos: 72.5,-4.5 - parent: 82 - type: Transform -- uid: 7824 - type: Grille - components: - - pos: 70.5,-5.5 - parent: 82 - type: Transform -- uid: 7825 - type: GasPipeStraight - components: - - pos: 85.5,-4.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7826 - type: WallReinforced - components: - - pos: 70.5,-9.5 - parent: 82 - type: Transform -- uid: 7827 - type: Grille - components: - - pos: 74.5,-6.5 - parent: 82 - type: Transform -- uid: 7828 - type: ReinforcedWindow - components: - - pos: 72.5,-12.5 - parent: 82 - type: Transform -- uid: 7829 - type: GasPipeStraight - components: - - pos: 72.5,-5.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7830 - type: ReinforcedWindow - components: - - pos: 88.5,-8.5 - parent: 82 - type: Transform -- uid: 7831 - type: WallReinforced - components: - - pos: 88.5,-9.5 - parent: 82 - type: Transform -- uid: 7832 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 1.5707963267948966 rad - pos: 74.5,-3.5 - parent: 82 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 7833 - type: ReinforcedWindow - components: - - pos: 71.5,0.5 - parent: 82 - type: Transform -- uid: 7834 - type: WallReinforced - components: - - pos: 71.5,-4.5 - parent: 82 - type: Transform -- uid: 7835 - type: WallReinforced - components: - - pos: 71.5,-3.5 - parent: 82 - type: Transform -- uid: 7836 - type: WallReinforced - components: - - pos: 71.5,-2.5 - parent: 82 - type: Transform -- uid: 7837 - type: ReinforcedWindow - components: - - pos: 88.5,-6.5 - parent: 82 - type: Transform -- uid: 7838 - type: ReinforcedWindow - components: - - pos: 70.5,-8.5 - parent: 82 - type: Transform -- uid: 7839 - type: ReinforcedWindow - components: - - pos: 88.5,-5.5 - parent: 82 - type: Transform -- uid: 7840 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: -1.5707963267948966 rad - pos: 84.5,-3.5 - parent: 82 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 7841 - type: GasPipeStraight - components: - - pos: 72.5,-2.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7842 - type: AtmosDeviceFanTiny - components: - - pos: 74.5,-10.5 - parent: 82 - type: Transform -- uid: 7843 - type: GasPipeStraight - components: - - pos: 85.5,-3.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7844 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: -1.5707963267948966 rad - pos: 84.5,-10.5 - parent: 82 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 7845 - type: RandomPosterLegit - components: - - pos: 71.5,-9.5 - parent: 82 - type: Transform -- uid: 7846 - type: RandomPosterLegit - components: - - pos: 87.5,-3.5 - parent: 82 - type: Transform -- uid: 7847 - type: GasPipeStraight - components: - - pos: 85.5,0.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7848 - type: Grille - components: - - pos: 74.5,-5.5 - parent: 82 - type: Transform -- uid: 7849 - type: ReinforcedWindow - components: - - pos: 88.5,-7.5 - parent: 82 - type: Transform -- uid: 7850 - type: Grille - components: - - pos: 87.5,-0.5 - parent: 82 - type: Transform -- uid: 7851 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-5.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7852 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-7.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7853 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 71.5,-8.5 - parent: 82 - type: Transform -- uid: 7854 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 87.5,-5.5 - parent: 82 - type: Transform -- uid: 7855 - type: PottedPlantRandom - components: - - pos: 71.5,-6.5 - parent: 82 - type: Transform -- uid: 7856 - type: PottedPlantRandom - components: - - pos: 87.5,-8.5 - parent: 82 - type: Transform -- uid: 7857 - type: AirlockGlass - components: - - pos: 73.5,-1.5 - parent: 82 - type: Transform -- uid: 7858 - type: AirlockGlass - components: - - pos: 72.5,-1.5 - parent: 82 - type: Transform -- uid: 7859 - type: CableApcExtension - components: - - pos: 72.5,-5.5 - parent: 82 - type: Transform -- uid: 7860 - type: AirlockMedicalGlassLocked - components: - - pos: -53.5,-31.5 - parent: 82 - type: Transform -- uid: 7861 - type: AirlockGlass - components: - - pos: 85.5,-1.5 - parent: 82 - type: Transform -- uid: 7862 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-10.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7863 - type: AirlockGlass - components: - - pos: 86.5,-1.5 - parent: 82 - type: Transform -- uid: 7864 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-3.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7865 - type: Grille - components: - - pos: 87.5,0.5 - parent: 82 - type: Transform -- uid: 7866 - type: CableApcExtension - components: - - pos: 72.5,-7.5 - parent: 82 - type: Transform -- uid: 7867 - type: CableApcExtension - components: - - pos: 72.5,-6.5 - parent: 82 - type: Transform -- uid: 7868 - type: ReinforcedWindow - components: - - pos: 84.5,0.5 - parent: 82 - type: Transform -- uid: 7900 - type: WeaponCapacitorRecharger - components: - - pos: 38.5,48.5 - parent: 82 - type: Transform -- uid: 7907 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: 36.5,51.5 - parent: 82 - type: Transform -- uid: 7917 - type: AirlockMaint - components: - - pos: 32.5,52.5 - parent: 82 - type: Transform -- uid: 7918 - type: CableApcExtension - components: - - pos: -42.5,-35.5 - parent: 82 - type: Transform -- uid: 7923 - type: AirlockSecurityGlassLocked - components: - - pos: 34.5,48.5 - parent: 82 - type: Transform -- uid: 7924 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 34.5,49.5 - parent: 82 - type: Transform -- uid: 7925 - type: WallSolid - components: - - pos: 30.5,53.5 - parent: 82 - type: Transform -- uid: 7926 - type: CableApcExtension - components: - - pos: -44.5,-35.5 - parent: 82 - type: Transform -- uid: 7927 - type: WindowDirectional - components: - - pos: 79.5,8.5 - parent: 82 - type: Transform -- uid: 7928 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 35.5,51.5 - parent: 82 - type: Transform -- uid: 7929 - type: ClosetBombFilled - components: - - pos: 38.5,51.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7930 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: 38.5,48.5 - parent: 82 - type: Transform -- uid: 7931 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 34.5,50.5 - parent: 82 - type: Transform -- uid: 7932 - type: WallReinforced - components: - - pos: -50.5,3.5 - parent: 82 - type: Transform -- uid: 7933 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-6.5 - parent: 82 - type: Transform -- uid: 7934 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-6.5 - parent: 82 - type: Transform -- uid: 7935 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-6.5 - parent: 82 - type: Transform -- uid: 7936 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-7.5 - parent: 82 - type: Transform -- uid: 7937 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-7.5 - parent: 82 - type: Transform -- uid: 7938 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-4.5 - parent: 82 - type: Transform -- uid: 7939 - type: AirlockMaintGlass - components: - - pos: -61.5,-35.5 - parent: 82 - type: Transform -- uid: 7940 - type: WallReinforced - components: - - pos: -51.5,3.5 - parent: 82 - type: Transform -- uid: 7941 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 35.5,50.5 - parent: 82 - type: Transform -- uid: 7942 - type: SubstationBasic - components: - - pos: -28.5,15.5 - parent: 82 - type: Transform -- uid: 7943 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 67.5,1.5 - parent: 82 - type: Transform -- uid: 7944 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-37.5 - parent: 82 - type: Transform -- uid: 7945 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-37.5 - parent: 82 - type: Transform -- uid: 7946 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 68.5,1.5 - parent: 82 - type: Transform -- uid: 7947 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 69.5,1.5 - parent: 82 - type: Transform -- uid: 7948 - type: ClosetBombFilled - components: - - pos: -24.5,-40.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7949 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 69.5,5.5 - parent: 82 - type: Transform -- uid: 7950 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-38.5 - parent: 82 - type: Transform -- uid: 7951 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-39.5 - parent: 82 - type: Transform -- uid: 7952 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 66.5,1.5 - parent: 82 - type: Transform -- uid: 7953 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 65.5,1.5 - parent: 82 - type: Transform -- uid: 7954 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,1.5 - parent: 82 - type: Transform -- uid: 7955 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 69.5,1.5 - parent: 82 - type: Transform -- uid: 7956 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 68.5,1.5 - parent: 82 - type: Transform -- uid: 7957 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 67.5,1.5 - parent: 82 - type: Transform -- uid: 7958 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 66.5,1.5 - parent: 82 - type: Transform -- uid: 7959 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 65.5,1.5 - parent: 82 - type: Transform -- uid: 7960 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 69.5,5.5 - parent: 82 - type: Transform -- uid: 7961 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 68.5,5.5 - parent: 82 - type: Transform -- uid: 7962 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 67.5,5.5 - parent: 82 - type: Transform -- uid: 7963 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 66.5,5.5 - parent: 82 - type: Transform -- uid: 7964 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 65.5,5.5 - parent: 82 - type: Transform -- uid: 7965 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 65.5,5.5 - parent: 82 - type: Transform -- uid: 7966 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 66.5,5.5 - parent: 82 - type: Transform -- uid: 7967 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 67.5,5.5 - parent: 82 - type: Transform -- uid: 7968 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 68.5,5.5 - parent: 82 - type: Transform -- uid: 7969 - type: Grille - components: - - pos: 67.5,8.5 - parent: 82 - type: Transform -- uid: 7970 - type: RandomPainting - components: - - pos: 1.5,-36.5 - parent: 82 - type: Transform -- uid: 7971 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 70.5,5.5 - parent: 82 - type: Transform -- uid: 7972 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,5.5 - parent: 82 - type: Transform -- uid: 7973 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 63.5,5.5 - parent: 82 - type: Transform -- uid: 7974 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 62.5,5.5 - parent: 82 - type: Transform -- uid: 7975 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 61.5,5.5 - parent: 82 - type: Transform -- uid: 7976 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 60.5,5.5 - parent: 82 - type: Transform -- uid: 7977 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 59.5,5.5 - parent: 82 - type: Transform -- uid: 7978 - type: AirlockBrigGlassLocked - components: - - pos: 39.5,1.5 - parent: 82 - type: Transform -- uid: 7979 - type: AirlockBrigGlassLocked - components: - - pos: 41.5,1.5 - parent: 82 - type: Transform -- uid: 7980 - type: AirlockBrigGlassLocked - components: - - pos: 39.5,-1.5 - parent: 82 - type: Transform -- uid: 7981 - type: AirlockBrigGlassLocked - components: - - pos: 41.5,-1.5 - parent: 82 - type: Transform -- uid: 7982 - type: Grille - components: - - pos: 69.5,8.5 - parent: 82 - type: Transform -- uid: 7983 - type: ClothingOuterCardborg - components: - - pos: 16.648516,58.666462 - parent: 82 - type: Transform -- uid: 7984 - type: ClosetFireFilled - components: - - pos: 71.5,6.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7985 - type: Grille - components: - - pos: 66.5,8.5 - parent: 82 - type: Transform -- uid: 7986 - type: Grille - components: - - pos: 68.5,8.5 - parent: 82 - type: Transform -- uid: 7987 - type: ClothingHeadHatCardborg - components: - - pos: 16.167076,58.597015 - parent: 82 - type: Transform -- uid: 7988 - type: ShuttersNormal - components: - - pos: 13.5,52.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22677 - type: SignalReceiver -- uid: 7989 - type: ShuttersNormal - components: - - pos: 14.5,52.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22677 - type: SignalReceiver -- uid: 7990 - type: ShuttersNormal - components: - - pos: 15.5,52.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22677 - type: SignalReceiver -- uid: 7991 - type: WallReinforced - components: - - pos: 11.5,52.5 - parent: 82 - type: Transform -- uid: 7992 - type: Chair - components: - - pos: 79.5,7.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7993 - type: Chair - components: - - pos: 78.5,7.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7994 - type: Chair - components: - - pos: 80.5,7.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7995 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 80.5,9.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7996 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 79.5,9.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7997 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 78.5,9.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7998 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 84.5,9.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 7999 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 84.5,7.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 8000 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 74.5,9.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 8001 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,36.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 8002 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 74.5,8.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 8003 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 84.5,6.5 - parent: 82 - type: Transform -- uid: 8004 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 84.5,8.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 8005 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 74.5,6.5 - parent: 82 - type: Transform -- uid: 8006 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: 74.5,10.5 - parent: 82 - type: Transform -- uid: 8007 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: 84.5,10.5 - parent: 82 - type: Transform -- uid: 8008 - type: TableWood - components: - - pos: -53.5,2.5 - parent: 82 - type: Transform -- uid: 8009 - type: BedsheetBrown - components: - - pos: -50.5,-2.5 - parent: 82 - type: Transform -- uid: 8010 - type: TableWood - components: - - pos: -50.5,-1.5 - parent: 82 - type: Transform -- uid: 8011 - type: VendingMachineDetDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -51.5,-1.5 - parent: 82 - type: Transform -- uid: 8012 - type: LockerDetectiveFilled - components: - - pos: -52.5,-1.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8013 - type: WoodDoor - components: - - pos: -53.5,-2.5 - parent: 82 - type: Transform -- uid: 8014 - type: TableWood - components: - - pos: -55.5,-0.5 - parent: 82 - type: Transform -- uid: 8015 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -55.5,0.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 8016 - type: TableWood - components: - - pos: -53.5,1.5 - parent: 82 - type: Transform -- uid: 8017 - type: CableMV - components: - - pos: -11.5,-6.5 - parent: 82 - type: Transform -- uid: 8018 - type: CableMV - components: - - pos: -11.5,-7.5 - parent: 82 - type: Transform -- uid: 8019 - type: CableMV - components: - - pos: -11.5,-8.5 - parent: 82 - type: Transform -- uid: 8020 - type: ClothingHeadHatFedoraGrey - components: - - pos: -53.60167,1.7941461 - parent: 82 - type: Transform -- uid: 8021 - type: TableWood - components: - - pos: -54.5,2.5 - parent: 82 - type: Transform -- uid: 8022 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-0.5 - parent: 82 - type: Transform -- uid: 8023 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -56.5,0.5 - parent: 82 - type: Transform -- uid: 8024 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -56.5,1.5 - parent: 82 - type: Transform -- uid: 8025 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -54.5,3.5 - parent: 82 - type: Transform -- uid: 8026 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -53.5,3.5 - parent: 82 - type: Transform -- uid: 8027 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -52.5,3.5 - parent: 82 - type: Transform -- uid: 8028 - type: ClothingEyesGlasses - components: - - pos: -6.468838,1.7992163 - parent: 82 - type: Transform -- uid: 8029 - type: BedsheetMedical - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-39.5 - parent: 82 - type: Transform -- uid: 8030 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-28.5 - parent: 82 - type: Transform -- uid: 8031 - type: FirelockGlass - components: - - pos: 33.5,53.5 - parent: 82 - type: Transform -- uid: 8032 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -49.5,-17.5 - parent: 82 - type: Transform -- uid: 8033 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -50.5,-17.5 - parent: 82 - type: Transform -- uid: 8034 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 29.5,12.5 - parent: 82 - type: Transform -- uid: 8035 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 29.5,14.5 - parent: 82 - type: Transform -- uid: 8036 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8037 - type: FaxMachineBase - components: - - pos: -53.5,2.5 - parent: 82 - type: Transform - - name: Detective - type: FaxMachine -- uid: 8038 - type: WallReinforced - components: - - pos: -40.5,24.5 - parent: 82 - type: Transform -- uid: 8039 - type: WallSolid - components: - - pos: -8.5,-50.5 - parent: 82 - type: Transform -- uid: 8040 - type: WallSolid - components: - - pos: -9.5,-50.5 - parent: 82 - type: Transform -- uid: 8041 - type: WallSolid - components: - - pos: -10.5,-50.5 - parent: 82 - type: Transform -- uid: 8042 - type: WallSolid - components: - - pos: -11.5,-50.5 - parent: 82 - type: Transform -- uid: 8043 - type: WallSolid - components: - - pos: -12.5,-50.5 - parent: 82 - type: Transform -- uid: 8044 - type: Grille - components: - - pos: -13.5,-49.5 - parent: 82 - type: Transform -- uid: 8045 - type: Grille - components: - - pos: -13.5,-48.5 - parent: 82 - type: Transform -- uid: 8046 - type: CarpetBlue - components: - - pos: -14.5,-28.5 - parent: 82 - type: Transform -- uid: 8047 - type: WallmountTelevision - components: - - pos: -16.5,-31.5 - parent: 82 - type: Transform -- uid: 8048 - type: CarpetBlue - components: - - pos: -12.5,-28.5 - parent: 82 - type: Transform -- uid: 8049 - type: RadioHandheld - components: - - pos: -12.605272,-28.385258 - parent: 82 - type: Transform -- uid: 8050 - type: RadioHandheld - components: - - pos: -12.316383,-28.185257 - parent: 82 - type: Transform -- uid: 8051 - type: CarpetBlue - components: - - pos: -13.5,-29.5 - parent: 82 - type: Transform -- uid: 8052 - type: CarpetBlue - components: - - pos: -13.5,-28.5 - parent: 82 - type: Transform -- uid: 8053 - type: CarpetBlue - components: - - pos: -12.5,-29.5 - parent: 82 - type: Transform -- uid: 8054 - type: CarpetBlue - components: - - pos: -14.5,-29.5 - parent: 82 - type: Transform -- uid: 8057 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -26.5,16.5 - parent: 82 - type: Transform -- uid: 8058 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -25.5,16.5 - parent: 82 - type: Transform -- uid: 8059 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -26.5,19.5 - parent: 82 - type: Transform -- uid: 8060 - type: SMESBasic - components: - - pos: -27.5,20.5 - parent: 82 - type: Transform -- uid: 8061 - type: ReinforcedWindow - components: - - pos: -29.5,21.5 - parent: 82 - type: Transform -- uid: 8062 - type: ToyAi - components: - - pos: -25.550753,11.71935 - parent: 82 - type: Transform -- uid: 8063 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -26.5,19.5 - parent: 82 - type: Transform -- uid: 8064 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -24.5,16.5 - parent: 82 - type: Transform -- uid: 8065 - type: Grille - components: - - pos: -34.5,18.5 - parent: 82 - type: Transform -- uid: 8066 - type: Grille - components: - - pos: -34.5,17.5 - parent: 82 - type: Transform -- uid: 8067 - type: WallReinforced - components: - - pos: -31.5,14.5 - parent: 82 - type: Transform -- uid: 8068 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -33.5,20.5 - parent: 82 - type: Transform -- uid: 8069 - type: WallReinforced - components: - - pos: -30.5,14.5 - parent: 82 - type: Transform -- uid: 8070 - type: WallReinforced - components: - - pos: -26.5,14.5 - parent: 82 - type: Transform -- uid: 8071 - type: WallReinforced - components: - - pos: -26.5,20.5 - parent: 82 - type: Transform -- uid: 8072 - type: Grille - components: - - pos: -34.5,16.5 - parent: 82 - type: Transform -- uid: 8073 - type: ReinforcedWindow - components: - - pos: -28.5,21.5 - parent: 82 - type: Transform -- uid: 8074 - type: GeneratorPlasma - components: - - pos: -28.5,20.5 - parent: 82 - type: Transform -- uid: 8075 - type: SignDirectionalChapel - components: - - rot: 1.5707963267948966 rad - pos: -19.5,15.5 - parent: 82 - type: Transform -- uid: 8076 - type: ReinforcedWindow - components: - - pos: -27.5,21.5 - parent: 82 - type: Transform -- uid: 8077 - type: PortableScrubber - components: - - pos: -51.5,-24.5 - parent: 82 - type: Transform -- uid: 8078 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -51.334064,39.467022 - parent: 82 - type: Transform -- uid: 8079 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -29.5,14.5 - parent: 82 - type: Transform -- uid: 8080 - type: PortableScrubber - components: - - pos: -51.5,-23.5 - parent: 82 - type: Transform -- uid: 8081 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-26.5 - parent: 82 - type: Transform -- uid: 8082 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-26.5 - parent: 82 - type: Transform -- uid: 8083 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-32.5 - parent: 82 - type: Transform -- uid: 8084 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-33.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 8133 - Forward: - - port: Left - uid: 8133 - Off: - - port: Middle - uid: 8133 - type: SignalReceiver -- uid: 8085 - type: LampGold - components: - - rot: 3.141592653589793 rad - pos: -53.212517,1.8548789 - parent: 82 - type: Transform -- uid: 8086 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -61.5,-35.5 - parent: 82 - type: Transform -- uid: 8087 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -62.5,-35.5 - parent: 82 - type: Transform -- uid: 8088 - type: DisposalPipe - components: - - pos: -62.5,-34.5 - parent: 82 - type: Transform -- uid: 8089 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -62.5,-33.5 - parent: 82 - type: Transform -- uid: 8090 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -28.5,14.5 - parent: 82 - type: Transform -- uid: 8091 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -27.5,14.5 - parent: 82 - type: Transform -- uid: 8092 - type: ComputerSurveillanceCameraMonitor - components: - - pos: -60.5,50.5 - parent: 82 - type: Transform -- uid: 8093 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -30.5,24.5 - parent: 82 - type: Transform -- uid: 8094 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -26.5,21.5 - parent: 82 - type: Transform -- uid: 8095 - type: ClothingHeadHatCorpsoftFlipped - components: - - pos: -28.54818,25.530823 - parent: 82 - type: Transform -- uid: 8096 - type: ClothingMaskGasAtmos - components: - - pos: 26.421373,7.395466 - parent: 82 - type: Transform -- uid: 8097 - type: FloraTree03 - components: - - pos: -0.9538336,47.685658 - parent: 82 - type: Transform -- uid: 8098 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 8099 - type: WallReinforced - components: - - pos: -61.5,-26.5 - parent: 82 - type: Transform -- uid: 8100 - type: WallReinforced - components: - - pos: -61.5,-24.5 - parent: 82 - type: Transform -- uid: 8101 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-32.5 - parent: 82 - type: Transform -- uid: 8102 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-33.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 8133 - Forward: - - port: Left - uid: 8133 - Off: - - port: Middle - uid: 8133 - type: SignalReceiver -- uid: 8103 - type: WallReinforced - components: - - pos: -65.5,-36.5 - parent: 82 - type: Transform -- uid: 8104 - type: WallReinforced - components: - - pos: -65.5,-37.5 - parent: 82 - type: Transform -- uid: 8105 - type: WallReinforced - components: - - pos: -66.5,-37.5 - parent: 82 - type: Transform -- uid: 8106 - type: WallReinforced - components: - - pos: -66.5,-38.5 - parent: 82 - type: Transform -- uid: 8107 - type: WallReinforced - components: - - pos: -66.5,-39.5 - parent: 82 - type: Transform -- uid: 8108 - type: WallSolid - components: - - pos: -61.5,-33.5 - parent: 82 - type: Transform -- uid: 8109 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -45.5,-16.5 - parent: 82 - type: Transform -- uid: 8110 - type: WallSolid - components: - - pos: -61.5,-36.5 - parent: 82 - type: Transform -- uid: 8111 - type: WallSolid - components: - - pos: -61.5,-37.5 - parent: 82 - type: Transform -- uid: 8112 - type: WallSolid - components: - - pos: -61.5,-38.5 - parent: 82 - type: Transform -- uid: 8113 - type: WallSolid - components: - - pos: -62.5,-38.5 - parent: 82 - type: Transform -- uid: 8114 - type: WallSolid - components: - - pos: -63.5,-38.5 - parent: 82 - type: Transform -- uid: 8115 - type: WallSolid - components: - - pos: -64.5,-38.5 - parent: 82 - type: Transform -- uid: 8116 - type: WallSolid - components: - - pos: -64.5,-37.5 - parent: 82 - type: Transform -- uid: 8117 - type: ConveyorBelt - components: - - pos: -62.5,-32.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 8133 - Forward: - - port: Left - uid: 8133 - Off: - - port: Middle - uid: 8133 - type: SignalReceiver -- uid: 8118 - type: BlastDoor - components: - - pos: -65.5,-33.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11472 - type: SignalReceiver -- uid: 8119 - type: Recycler - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-33.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Left - uid: 8133 - Forward: - - port: Right - uid: 8133 - Off: - - port: Middle - uid: 8133 - type: SignalReceiver -- uid: 8120 - type: Grille - components: - - pos: -65.5,-35.5 - parent: 82 - type: Transform -- uid: 8121 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-33.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 8133 - Forward: - - port: Left - uid: 8133 - Off: - - port: Middle - uid: 8133 - type: SignalReceiver -- uid: 8122 - type: PlasticFlapsAirtightClear - components: - - pos: -65.5,-33.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 8123 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-33.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 8133 - Forward: - - port: Left - uid: 8133 - Off: - - port: Middle - uid: 8133 - type: SignalReceiver -- uid: 8124 - type: ReinforcedWindow - components: - - pos: -65.5,-35.5 - parent: 82 - type: Transform -- uid: 8125 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-34.5 - parent: 82 - type: Transform -- uid: 8126 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-34.5 - parent: 82 - type: Transform -- uid: 8127 - type: AirlockMedicalLocked - components: - - pos: -34.5,-37.5 - parent: 82 - type: Transform -- uid: 8128 - type: AirlockMedicalLocked - components: - - pos: -55.5,-29.5 - parent: 82 - type: Transform -- uid: 8129 - type: AirlockMedicalGlassLocked - components: - - pos: -20.5,-29.5 - parent: 82 - type: Transform -- uid: 8130 - type: WindowDirectional - components: - - pos: -62.5,-34.5 - parent: 82 - type: Transform -- uid: 8131 - type: WindowDirectional - components: - - pos: -63.5,-34.5 - parent: 82 - type: Transform -- uid: 8132 - type: Windoor - components: - - pos: -64.5,-34.5 - parent: 82 - type: Transform -- uid: 8133 - type: TwoWayLever - components: - - pos: -62.5,-36.5 - parent: 82 - type: Transform - - outputs: - Left: - - port: Forward - uid: 8117 - - port: Forward - uid: 8084 - - port: Forward - uid: 8102 - - port: Forward - uid: 8121 - - port: Forward - uid: 8123 - - port: Reverse - uid: 8119 - - port: Forward - uid: 25695 - Right: - - port: Reverse - uid: 8117 - - port: Reverse - uid: 8084 - - port: Reverse - uid: 8102 - - port: Reverse - uid: 8121 - - port: Reverse - uid: 8123 - - port: Forward - uid: 8119 - - port: Reverse - uid: 25695 - Middle: - - port: Off - uid: 8117 - - port: Off - uid: 8084 - - port: Off - uid: 8119 - - port: Off - uid: 8102 - - port: Off - uid: 8121 - - port: Off - uid: 8123 - - port: Off - uid: 25695 - type: SignalTransmitter -- uid: 8134 - type: GasCanisterBrokenBase - components: - - pos: -62.5,-37.5 - parent: 82 - type: Transform -- uid: 8135 - type: WallReinforced - components: - - pos: -66.5,-40.5 - parent: 82 - type: Transform -- uid: 8136 - type: WallReinforced - components: - - pos: -66.5,-41.5 - parent: 82 - type: Transform -- uid: 8137 - type: Grille - components: - - pos: -66.5,-42.5 - parent: 82 - type: Transform -- uid: 8138 - type: WallSolid - components: - - pos: -64.5,-40.5 - parent: 82 - type: Transform -- uid: 8139 - type: WallSolid - components: - - pos: -65.5,-40.5 - parent: 82 - type: Transform -- uid: 8140 - type: WallSolid - components: - - pos: -63.5,-40.5 - parent: 82 - type: Transform -- uid: 8141 - type: WallSolid - components: - - pos: -63.5,-41.5 - parent: 82 - type: Transform -- uid: 8142 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-8.5 - parent: 82 - type: Transform -- uid: 8143 - type: WallSolid - components: - - pos: -61.5,-41.5 - parent: 82 - type: Transform -- uid: 8144 - type: WallSolid - components: - - pos: -60.5,-41.5 - parent: 82 - type: Transform -- uid: 8145 - type: WallSolid - components: - - pos: -59.5,-41.5 - parent: 82 - type: Transform -- uid: 8146 - type: WallReinforced - components: - - pos: -27.5,32.5 - parent: 82 - type: Transform -- uid: 8147 - type: WallSolid - components: - - pos: -59.5,-39.5 - parent: 82 - type: Transform -- uid: 8148 - type: WallSolid - components: - - pos: -59.5,-38.5 - parent: 82 - type: Transform -- uid: 8149 - type: WallSolid - components: - - pos: -59.5,-37.5 - parent: 82 - type: Transform -- uid: 8150 - type: WallSolid - components: - - pos: -58.5,-37.5 - parent: 82 - type: Transform -- uid: 8151 - type: Grille - components: - - pos: -66.5,-43.5 - parent: 82 - type: Transform -- uid: 8152 - type: Grille - components: - - pos: -66.5,-44.5 - parent: 82 - type: Transform -- uid: 8153 - type: WallReinforced - components: - - pos: -66.5,-45.5 - parent: 82 - type: Transform -- uid: 8154 - type: WallReinforced - components: - - pos: -66.5,-46.5 - parent: 82 - type: Transform -- uid: 8155 - type: WallReinforced - components: - - pos: -65.5,-46.5 - parent: 82 - type: Transform -- uid: 8156 - type: WallReinforced - components: - - pos: -64.5,-46.5 - parent: 82 - type: Transform -- uid: 8157 - type: WallReinforced - components: - - pos: -63.5,-46.5 - parent: 82 - type: Transform -- uid: 8158 - type: WallReinforced - components: - - pos: -62.5,-46.5 - parent: 82 - type: Transform -- uid: 8159 - type: WallReinforced - components: - - pos: -61.5,-46.5 - parent: 82 - type: Transform -- uid: 8160 - type: WallReinforced - components: - - pos: -61.5,-44.5 - parent: 82 - type: Transform -- uid: 8161 - type: WallReinforced - components: - - pos: -61.5,-45.5 - parent: 82 - type: Transform -- uid: 8162 - type: WallSolid - components: - - pos: -61.5,-43.5 - parent: 82 - type: Transform -- uid: 8163 - type: WallSolid - components: - - pos: -61.5,-42.5 - parent: 82 - type: Transform -- uid: 8164 - type: WallReinforced - components: - - pos: -60.5,-44.5 - parent: 82 - type: Transform -- uid: 8165 - type: WallReinforced - components: - - pos: -56.5,-44.5 - parent: 82 - type: Transform -- uid: 8166 - type: WallSolid - components: - - pos: -58.5,-33.5 - parent: 82 - type: Transform -- uid: 8167 - type: WallReinforced - components: - - pos: -36.5,28.5 - parent: 82 - type: Transform -- uid: 8168 - type: WallReinforced - components: - - pos: -35.5,28.5 - parent: 82 - type: Transform -- uid: 8169 - type: WallReinforced - components: - - pos: -35.5,27.5 - parent: 82 - type: Transform -- uid: 8170 - type: WallSolid - components: - - pos: -33.5,28.5 - parent: 82 - type: Transform -- uid: 8171 - type: WallReinforced - components: - - pos: -35.5,26.5 - parent: 82 - type: Transform -- uid: 8172 - type: WallReinforced - components: - - pos: -35.5,25.5 - parent: 82 - type: Transform -- uid: 8173 - type: WallReinforced - components: - - pos: -35.5,22.5 - parent: 82 - type: Transform -- uid: 8174 - type: WallReinforced - components: - - pos: -43.5,22.5 - parent: 82 - type: Transform -- uid: 8175 - type: WallReinforced - components: - - pos: -42.5,22.5 - parent: 82 - type: Transform -- uid: 8176 - type: WallReinforced - components: - - pos: -36.5,22.5 - parent: 82 - type: Transform -- uid: 8177 - type: Grille - components: - - pos: -41.5,22.5 - parent: 82 - type: Transform -- uid: 8178 - type: Grille - components: - - pos: -40.5,22.5 - parent: 82 - type: Transform -- uid: 8179 - type: Grille - components: - - pos: -39.5,22.5 - parent: 82 - type: Transform -- uid: 8180 - type: Grille - components: - - pos: -38.5,22.5 - parent: 82 - type: Transform -- uid: 8181 - type: Grille - components: - - pos: -37.5,22.5 - parent: 82 - type: Transform -- uid: 8182 - type: ReinforcedWindow - components: - - pos: -41.5,22.5 - parent: 82 - type: Transform -- uid: 8183 - type: ReinforcedWindow - components: - - pos: -40.5,22.5 - parent: 82 - type: Transform -- uid: 8184 - type: ReinforcedWindow - components: - - pos: -39.5,22.5 - parent: 82 - type: Transform -- uid: 8185 - type: ReinforcedWindow - components: - - pos: -38.5,22.5 - parent: 82 - type: Transform -- uid: 8186 - type: ReinforcedWindow - components: - - pos: -37.5,22.5 - parent: 82 - type: Transform -- uid: 8187 - type: Grille - components: - - pos: -37.5,32.5 - parent: 82 - type: Transform -- uid: 8188 - type: Grille - components: - - pos: -36.5,32.5 - parent: 82 - type: Transform -- uid: 8189 - type: Grille - components: - - pos: -35.5,32.5 - parent: 82 - type: Transform -- uid: 8190 - type: ReinforcedWindow - components: - - pos: -35.5,32.5 - parent: 82 - type: Transform -- uid: 8191 - type: ReinforcedWindow - components: - - pos: -36.5,32.5 - parent: 82 - type: Transform -- uid: 8192 - type: ReinforcedWindow - components: - - pos: -37.5,32.5 - parent: 82 - type: Transform -- uid: 8193 - type: ReinforcedWindow - components: - - pos: -42.5,32.5 - parent: 82 - type: Transform -- uid: 8194 - type: ReinforcedWindow - components: - - pos: -43.5,32.5 - parent: 82 - type: Transform -- uid: 8195 - type: ReinforcedWindow - components: - - pos: -44.5,32.5 - parent: 82 - type: Transform -- uid: 8196 - type: ReinforcedWindow - components: - - pos: -50.5,32.5 - parent: 82 - type: Transform -- uid: 8197 - type: ReinforcedWindow - components: - - pos: -51.5,32.5 - parent: 82 - type: Transform -- uid: 8198 - type: ReinforcedWindow - components: - - pos: -52.5,32.5 - parent: 82 - type: Transform -- uid: 8199 - type: Grille - components: - - pos: -50.5,32.5 - parent: 82 - type: Transform -- uid: 8200 - type: Grille - components: - - pos: -51.5,32.5 - parent: 82 - type: Transform -- uid: 8201 - type: Grille - components: - - pos: -52.5,32.5 - parent: 82 - type: Transform -- uid: 8202 - type: WallReinforced - components: - - pos: -49.5,32.5 - parent: 82 - type: Transform -- uid: 8203 - type: WallReinforced - components: - - pos: -48.5,32.5 - parent: 82 - type: Transform -- uid: 8204 - type: WallReinforced - components: - - pos: -47.5,32.5 - parent: 82 - type: Transform -- uid: 8205 - type: WallReinforced - components: - - pos: -46.5,32.5 - parent: 82 - type: Transform -- uid: 8206 - type: WallReinforced - components: - - pos: -45.5,32.5 - parent: 82 - type: Transform -- uid: 8207 - type: FirelockGlass - components: - - pos: -1.5,-11.5 - parent: 82 - type: Transform -- uid: 8208 - type: FirelockGlass - components: - - pos: -1.5,-10.5 - parent: 82 - type: Transform -- uid: 8209 - type: FirelockGlass - components: - - pos: 16.5,-11.5 - parent: 82 - type: Transform -- uid: 8210 - type: Window - components: - - pos: 27.5,11.5 - parent: 82 - type: Transform -- uid: 8211 - type: Window - components: - - pos: 26.5,11.5 - parent: 82 - type: Transform -- uid: 8212 - type: Window - components: - - pos: 25.5,11.5 - parent: 82 - type: Transform -- uid: 8213 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 29.5,13.5 - parent: 82 - type: Transform -- uid: 8214 - type: Grille - components: - - pos: -54.5,34.5 - parent: 82 - type: Transform -- uid: 8215 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 30.5,12.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8216 - type: WallReinforced - components: - - pos: -53.5,32.5 - parent: 82 - type: Transform -- uid: 8217 - type: WallReinforced - components: - - pos: -54.5,32.5 - parent: 82 - type: Transform -- uid: 8218 - type: WallReinforced - components: - - pos: -54.5,33.5 - parent: 82 - type: Transform -- uid: 8219 - type: Grille - components: - - pos: -54.5,35.5 - parent: 82 - type: Transform -- uid: 8220 - type: Grille - components: - - pos: -54.5,36.5 - parent: 82 - type: Transform -- uid: 8221 - type: WallReinforced - components: - - pos: -59.5,34.5 - parent: 82 - type: Transform -- uid: 8222 - type: WallReinforced - components: - - pos: -58.5,34.5 - parent: 82 - type: Transform -- uid: 8223 - type: WallShuttleDiagonal - components: - - pos: -52.5,49.5 - parent: 82 - type: Transform -- uid: 8224 - type: WallShuttleDiagonal - components: - - rot: 1.5707963267948966 rad - pos: -52.5,45.5 - parent: 82 - type: Transform -- uid: 8225 - type: WallShuttleDiagonal - components: - - rot: 1.5707963267948966 rad - pos: -51.5,44.5 - parent: 82 - type: Transform -- uid: 8226 - type: WallShuttleDiagonal - components: - - rot: 3.141592653589793 rad - pos: -49.5,44.5 - parent: 82 - type: Transform -- uid: 8227 - type: WallShuttleDiagonal - components: - - rot: 3.141592653589793 rad - pos: -48.5,45.5 - parent: 82 - type: Transform -- uid: 8228 - type: WallShuttleDiagonal - components: - - rot: 3.141592653589793 rad - pos: -47.5,46.5 - parent: 82 - type: Transform -- uid: 8229 - type: WallShuttleDiagonal - components: - - rot: -1.5707963267948966 rad - pos: -47.5,48.5 - parent: 82 - type: Transform -- uid: 8230 - type: WallShuttleDiagonal - components: - - rot: -1.5707963267948966 rad - pos: -48.5,49.5 - parent: 82 - type: Transform -- uid: 8231 - type: WallShuttleDiagonal - components: - - rot: -1.5707963267948966 rad - pos: -49.5,50.5 - parent: 82 - type: Transform -- uid: 8232 - type: WallShuttleDiagonal - components: - - pos: -51.5,50.5 - parent: 82 - type: Transform -- uid: 8233 - type: WallShuttle - components: - - pos: -50.5,50.5 - parent: 82 - type: Transform -- uid: 8234 - type: WallShuttle - components: - - rot: 3.141592653589793 rad - pos: -51.5,49.5 - parent: 82 - type: Transform -- uid: 8235 - type: WallShuttle - components: - - rot: 3.141592653589793 rad - pos: -49.5,49.5 - parent: 82 - type: Transform -- uid: 8236 - type: WallShuttle - components: - - rot: 3.141592653589793 rad - pos: -48.5,48.5 - parent: 82 - type: Transform -- uid: 8237 - type: WallShuttle - components: - - rot: 3.141592653589793 rad - pos: -48.5,46.5 - parent: 82 - type: Transform -- uid: 8238 - type: WallShuttle - components: - - rot: 3.141592653589793 rad - pos: -49.5,45.5 - parent: 82 - type: Transform -- uid: 8239 - type: WallShuttle - components: - - rot: 3.141592653589793 rad - pos: -50.5,44.5 - parent: 82 - type: Transform -- uid: 8240 - type: WallShuttle - components: - - rot: 3.141592653589793 rad - pos: -51.5,45.5 - parent: 82 - type: Transform -- uid: 8241 - type: WallShuttle - components: - - rot: 3.141592653589793 rad - pos: -52.5,46.5 - parent: 82 - type: Transform -- uid: 8242 - type: WallShuttle - components: - - pos: -53.5,48.5 - parent: 82 - type: Transform -- uid: 8243 - type: WallShuttle - components: - - rot: 3.141592653589793 rad - pos: -52.5,48.5 - parent: 82 - type: Transform -- uid: 8244 - type: WallShuttle - components: - - pos: -53.5,39.5 - parent: 82 - type: Transform -- uid: 8245 - type: WallShuttle - components: - - rot: 3.141592653589793 rad - pos: -47.5,47.5 - parent: 82 - type: Transform -- uid: 8246 - type: WallShuttleDiagonal - components: - - rot: 1.5707963267948966 rad - pos: -52.5,36.5 - parent: 82 - type: Transform -- uid: 8247 - type: WallShuttleDiagonal - components: - - rot: 1.5707963267948966 rad - pos: -51.5,35.5 - parent: 82 - type: Transform -- uid: 8248 - type: WallShuttleDiagonal - components: - - rot: 3.141592653589793 rad - pos: -49.5,35.5 - parent: 82 - type: Transform -- uid: 8249 - type: WallShuttleDiagonal - components: - - rot: 3.141592653589793 rad - pos: -48.5,36.5 - parent: 82 - type: Transform -- uid: 8250 - type: WallShuttleDiagonal - components: - - rot: 3.141592653589793 rad - pos: -47.5,37.5 - parent: 82 - type: Transform -- uid: 8251 - type: WallShuttleDiagonal - components: - - rot: -1.5707963267948966 rad - pos: -47.5,39.5 - parent: 82 - type: Transform -- uid: 8252 - type: WallShuttleDiagonal - components: - - rot: -1.5707963267948966 rad - pos: -48.5,40.5 - parent: 82 - type: Transform -- uid: 8253 - type: WallShuttleDiagonal - components: - - rot: -1.5707963267948966 rad - pos: -49.5,41.5 - parent: 82 - type: Transform -- uid: 8254 - type: WallShuttleDiagonal - components: - - pos: -51.5,41.5 - parent: 82 - type: Transform -- uid: 8255 - type: WallShuttleDiagonal - components: - - pos: -52.5,40.5 - parent: 82 - type: Transform -- uid: 8256 - type: WallShuttle - components: - - pos: -50.5,41.5 - parent: 82 - type: Transform -- uid: 8257 - type: WallShuttle - components: - - pos: -51.5,40.5 - parent: 82 - type: Transform -- uid: 8258 - type: WallShuttle - components: - - pos: -49.5,40.5 - parent: 82 - type: Transform -- uid: 8259 - type: WallShuttle - components: - - pos: -52.5,39.5 - parent: 82 - type: Transform -- uid: 8260 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: -1.5707963267948966 rad - pos: -67.5,38.5 - parent: 82 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 8261 - type: WallShuttle - components: - - pos: -53.5,46.5 - parent: 82 - type: Transform -- uid: 8262 - type: WallShuttle - components: - - pos: -52.5,37.5 - parent: 82 - type: Transform -- uid: 8263 - type: WallShuttle - components: - - pos: -51.5,36.5 - parent: 82 - type: Transform -- uid: 8264 - type: WallShuttle - components: - - pos: -50.5,35.5 - parent: 82 - type: Transform -- uid: 8265 - type: WallShuttle - components: - - pos: -49.5,36.5 - parent: 82 - type: Transform -- uid: 8266 - type: WallShuttle - components: - - pos: -48.5,37.5 - parent: 82 - type: Transform -- uid: 8267 - type: WallShuttle - components: - - pos: -47.5,38.5 - parent: 82 - type: Transform -- uid: 8268 - type: WallShuttle - components: - - pos: -48.5,39.5 - parent: 82 - type: Transform -- uid: 8269 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 30.5,13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8270 - type: Grille - components: - - pos: -62.5,34.5 - parent: 82 - type: Transform -- uid: 8271 - type: WallReinforced - components: - - pos: -63.5,34.5 - parent: 82 - type: Transform -- uid: 8272 - type: WallReinforced - components: - - pos: -64.5,34.5 - parent: 82 - type: Transform -- uid: 8273 - type: Grille - components: - - pos: -64.5,36.5 - parent: 82 - type: Transform -- uid: 8274 - type: Grille - components: - - pos: -64.5,35.5 - parent: 82 - type: Transform -- uid: 8275 - type: WallReinforced - components: - - pos: -64.5,37.5 - parent: 82 - type: Transform -- uid: 8276 - type: WallReinforced - components: - - pos: -64.5,41.5 - parent: 82 - type: Transform -- uid: 8277 - type: WallReinforced - components: - - pos: -67.5,45.5 - parent: 82 - type: Transform -- uid: 8278 - type: WallReinforced - components: - - pos: -64.5,39.5 - parent: 82 - type: Transform -- uid: 8279 - type: WallReinforced - components: - - pos: -67.5,47.5 - parent: 82 - type: Transform -- uid: 8280 - type: Grille - components: - - pos: -64.5,42.5 - parent: 82 - type: Transform -- uid: 8281 - type: Grille - components: - - pos: -64.5,43.5 - parent: 82 - type: Transform -- uid: 8282 - type: Grille - components: - - pos: -64.5,44.5 - parent: 82 - type: Transform -- uid: 8283 - type: WallReinforced - components: - - pos: -64.5,45.5 - parent: 82 - type: Transform -- uid: 8284 - type: WallReinforced - components: - - pos: -64.5,47.5 - parent: 82 - type: Transform -- uid: 8285 - type: WallReinforced - components: - - pos: -64.5,49.5 - parent: 82 - type: Transform -- uid: 8286 - type: Grille - components: - - pos: -64.5,50.5 - parent: 82 - type: Transform -- uid: 8287 - type: Grille - components: - - pos: -64.5,51.5 - parent: 82 - type: Transform -- uid: 8288 - type: ReinforcedWindow - components: - - pos: -51.5,54.5 - parent: 82 - type: Transform -- uid: 8289 - type: Grille - components: - - pos: -65.5,41.5 - parent: 82 - type: Transform -- uid: 8290 - type: Grille - components: - - pos: -66.5,41.5 - parent: 82 - type: Transform -- uid: 8291 - type: Grille - components: - - pos: -65.5,39.5 - parent: 82 - type: Transform -- uid: 8292 - type: Grille - components: - - pos: -66.5,39.5 - parent: 82 - type: Transform -- uid: 8293 - type: WallReinforced - components: - - pos: -67.5,39.5 - parent: 82 - type: Transform -- uid: 8294 - type: WallReinforced - components: - - pos: -67.5,49.5 - parent: 82 - type: Transform -- uid: 8295 - type: Grille - components: - - pos: -65.5,47.5 - parent: 82 - type: Transform -- uid: 8296 - type: Grille - components: - - pos: -66.5,47.5 - parent: 82 - type: Transform -- uid: 8297 - type: Grille - components: - - pos: -65.5,49.5 - parent: 82 - type: Transform -- uid: 8298 - type: Grille - components: - - pos: -66.5,49.5 - parent: 82 - type: Transform -- uid: 8299 - type: Grille - components: - - pos: -65.5,45.5 - parent: 82 - type: Transform -- uid: 8300 - type: Grille - components: - - pos: -66.5,45.5 - parent: 82 - type: Transform -- uid: 8301 - type: Grille - components: - - pos: -65.5,37.5 - parent: 82 - type: Transform -- uid: 8302 - type: Grille - components: - - pos: -66.5,37.5 - parent: 82 - type: Transform -- uid: 8303 - type: WallReinforced - components: - - pos: -67.5,41.5 - parent: 82 - type: Transform -- uid: 8304 - type: WallReinforced - components: - - pos: -67.5,37.5 - parent: 82 - type: Transform -- uid: 8305 - type: ReinforcedWindow - components: - - pos: -66.5,49.5 - parent: 82 - type: Transform -- uid: 8306 - type: ReinforcedWindow - components: - - pos: -65.5,49.5 - parent: 82 - type: Transform -- uid: 8307 - type: ReinforcedWindow - components: - - pos: -66.5,47.5 - parent: 82 - type: Transform -- uid: 8308 - type: ReinforcedWindow - components: - - pos: -65.5,47.5 - parent: 82 - type: Transform -- uid: 8309 - type: ReinforcedWindow - components: - - pos: -66.5,45.5 - parent: 82 - type: Transform -- uid: 8310 - type: ReinforcedWindow - components: - - pos: -65.5,45.5 - parent: 82 - type: Transform -- uid: 8311 - type: ReinforcedWindow - components: - - pos: -64.5,44.5 - parent: 82 - type: Transform -- uid: 8312 - type: ReinforcedWindow - components: - - pos: -64.5,43.5 - parent: 82 - type: Transform -- uid: 8313 - type: ReinforcedWindow - components: - - pos: -64.5,42.5 - parent: 82 - type: Transform -- uid: 8314 - type: ReinforcedWindow - components: - - pos: -66.5,41.5 - parent: 82 - type: Transform -- uid: 8315 - type: ReinforcedWindow - components: - - pos: -65.5,41.5 - parent: 82 - type: Transform -- uid: 8316 - type: ReinforcedWindow - components: - - pos: -66.5,39.5 - parent: 82 - type: Transform -- uid: 8317 - type: ReinforcedWindow - components: - - pos: -65.5,39.5 - parent: 82 - type: Transform -- uid: 8318 - type: ReinforcedWindow - components: - - pos: -66.5,37.5 - parent: 82 - type: Transform -- uid: 8319 - type: ReinforcedWindow - components: - - pos: -65.5,37.5 - parent: 82 - type: Transform -- uid: 8320 - type: ReinforcedWindow - components: - - pos: -62.5,34.5 - parent: 82 - type: Transform -- uid: 8321 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 28.5,13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8322 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 28.5,12.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8323 - type: ReinforcedWindow - components: - - pos: -64.5,50.5 - parent: 82 - type: Transform -- uid: 8324 - type: ReinforcedWindow - components: - - pos: -64.5,51.5 - parent: 82 - type: Transform -- uid: 8325 - type: WallReinforced - components: - - pos: -55.5,52.5 - parent: 82 - type: Transform -- uid: 8326 - type: Grille - components: - - pos: -63.5,53.5 - parent: 82 - type: Transform -- uid: 8327 - type: WallReinforced - components: - - pos: -64.5,52.5 - parent: 82 - type: Transform -- uid: 8328 - type: WallReinforced - components: - - pos: -63.5,52.5 - parent: 82 - type: Transform -- uid: 8329 - type: WallReinforced - components: - - pos: -55.5,53.5 - parent: 82 - type: Transform -- uid: 8330 - type: WallReinforced - components: - - pos: -63.5,55.5 - parent: 82 - type: Transform -- uid: 8331 - type: WallReinforced - components: - - pos: -62.5,55.5 - parent: 82 - type: Transform -- uid: 8332 - type: WallReinforced - components: - - pos: -62.5,56.5 - parent: 82 - type: Transform -- uid: 8333 - type: WallReinforced - components: - - pos: -56.5,56.5 - parent: 82 - type: Transform -- uid: 8334 - type: WallReinforced - components: - - pos: -56.5,55.5 - parent: 82 - type: Transform -- uid: 8335 - type: WallReinforced - components: - - pos: -55.5,55.5 - parent: 82 - type: Transform -- uid: 8336 - type: Grille - components: - - pos: -63.5,54.5 - parent: 82 - type: Transform -- uid: 8337 - type: WallReinforced - components: - - pos: -55.5,54.5 - parent: 82 - type: Transform -- uid: 8338 - type: ReinforcedWindow - components: - - pos: -63.5,54.5 - parent: 82 - type: Transform -- uid: 8339 - type: ReinforcedWindow - components: - - pos: -53.5,54.5 - parent: 82 - type: Transform -- uid: 8340 - type: Grille - components: - - pos: -52.5,54.5 - parent: 82 - type: Transform -- uid: 8341 - type: WallReinforced - components: - - pos: -53.5,50.5 - parent: 82 - type: Transform -- uid: 8342 - type: WallReinforced - components: - - pos: -54.5,49.5 - parent: 82 - type: Transform -- uid: 8343 - type: RandomSpawner - components: - - pos: -44.5,45.5 - parent: 82 - type: Transform -- uid: 8344 - type: ReinforcedWindow - components: - - pos: -54.5,43.5 - parent: 82 - type: Transform -- uid: 8345 - type: ReinforcedWindow - components: - - pos: -54.5,42.5 - parent: 82 - type: Transform -- uid: 8346 - type: ReinforcedWindow - components: - - pos: -54.5,41.5 - parent: 82 - type: Transform -- uid: 8347 - type: ReinforcedWindow - components: - - pos: -54.5,36.5 - parent: 82 - type: Transform -- uid: 8348 - type: ReinforcedWindow - components: - - pos: -54.5,35.5 - parent: 82 - type: Transform -- uid: 8349 - type: ReinforcedWindow - components: - - pos: -54.5,34.5 - parent: 82 - type: Transform -- uid: 8350 - type: ReinforcedWindow - components: - - pos: -64.5,36.5 - parent: 82 - type: Transform -- uid: 8351 - type: ReinforcedWindow - components: - - pos: -64.5,35.5 - parent: 82 - type: Transform -- uid: 8352 - type: WallReinforced - components: - - pos: -30.5,32.5 - parent: 82 - type: Transform -- uid: 8353 - type: Grille - components: - - pos: -62.5,47.5 - parent: 82 - type: Transform -- uid: 8354 - type: AirlockSecurityGlassLocked - components: - - pos: -61.5,47.5 - parent: 82 - type: Transform -- uid: 8355 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -57.5,9.5 - parent: 82 - type: Transform -- uid: 8356 - type: WallSolid - components: - - pos: -59.5,47.5 - parent: 82 - type: Transform -- uid: 8357 - type: ReinforcedWindow - components: - - pos: -59.5,51.5 - parent: 82 - type: Transform -- uid: 8358 - type: Grille - components: - - pos: -59.5,50.5 - parent: 82 - type: Transform -- uid: 8359 - type: Grille - components: - - pos: -59.5,51.5 - parent: 82 - type: Transform -- uid: 8360 - type: WallSolid - components: - - pos: -59.5,52.5 - parent: 82 - type: Transform -- uid: 8361 - type: Grille - components: - - pos: -62.5,52.5 - parent: 82 - type: Transform -- uid: 8362 - type: Grille - components: - - pos: -60.5,52.5 - parent: 82 - type: Transform -- uid: 8363 - type: Grille - components: - - pos: -58.5,52.5 - parent: 82 - type: Transform -- uid: 8364 - type: Grille - components: - - pos: -56.5,52.5 - parent: 82 - type: Transform -- uid: 8365 - type: ReinforcedWindow - components: - - pos: -58.5,52.5 - parent: 82 - type: Transform -- uid: 8366 - type: ReinforcedWindow - components: - - pos: -56.5,52.5 - parent: 82 - type: Transform -- uid: 8367 - type: ReinforcedWindow - components: - - pos: -62.5,52.5 - parent: 82 - type: Transform -- uid: 8368 - type: ReinforcedWindow - components: - - pos: -59.5,50.5 - parent: 82 - type: Transform -- uid: 8369 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -57.5,10.5 - parent: 82 - type: Transform -- uid: 8370 - type: LockerEvidence - components: - - pos: -63.5,51.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8371 - type: ReinforcedWindow - components: - - pos: -60.5,47.5 - parent: 82 - type: Transform -- uid: 8372 - type: ReinforcedWindow - components: - - pos: -62.5,47.5 - parent: 82 - type: Transform -- uid: 8373 - type: WallReinforced - components: - - pos: -28.5,32.5 - parent: 82 - type: Transform -- uid: 8374 - type: Grille - components: - - pos: 27.5,-84.5 - parent: 82 - type: Transform -- uid: 8375 - type: WallReinforced - components: - - pos: 8.5,-85.5 - parent: 82 - type: Transform -- uid: 8376 - type: WallReinforced - components: - - pos: 34.5,-86.5 - parent: 82 - type: Transform -- uid: 8377 - type: Grille - components: - - pos: 30.5,-85.5 - parent: 82 - type: Transform -- uid: 8378 - type: WallReinforced - components: - - pos: 32.5,-86.5 - parent: 82 - type: Transform -- uid: 8379 - type: WallReinforced - components: - - pos: 32.5,-85.5 - parent: 82 - type: Transform -- uid: 8380 - type: WallReinforced - components: - - pos: 29.5,-85.5 - parent: 82 - type: Transform -- uid: 8381 - type: WallReinforced - components: - - pos: 29.5,-84.5 - parent: 82 - type: Transform -- uid: 8382 - type: Grille - components: - - pos: 28.5,-84.5 - parent: 82 - type: Transform -- uid: 8383 - type: Grille - components: - - pos: -54.5,44.5 - parent: 82 - type: Transform -- uid: 8384 - type: Grille - components: - - pos: -54.5,43.5 - parent: 82 - type: Transform -- uid: 8385 - type: Grille - components: - - pos: -54.5,42.5 - parent: 82 - type: Transform -- uid: 8386 - type: Grille - components: - - pos: -54.5,41.5 - parent: 82 - type: Transform -- uid: 8387 - type: AtmosDeviceFanTiny - components: - - rot: -1.5707963267948966 rad - pos: -67.5,48.5 - parent: 82 - type: Transform -- uid: 8388 - type: WallShuttle - components: - - pos: -53.5,37.5 - parent: 82 - type: Transform -- uid: 8389 - type: AirlockExternalGlass - components: - - pos: -64.5,38.5 - parent: 82 - type: Transform -- uid: 8390 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: -1.5707963267948966 rad - pos: -67.5,40.5 - parent: 82 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 8391 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: -1.5707963267948966 rad - pos: -67.5,46.5 - parent: 82 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 8392 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: -1.5707963267948966 rad - pos: -67.5,48.5 - parent: 82 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 8393 - type: AtmosDeviceFanTiny - components: - - rot: -1.5707963267948966 rad - pos: -67.5,38.5 - parent: 82 - type: Transform -- uid: 8394 - type: AtmosDeviceFanTiny - components: - - rot: -1.5707963267948966 rad - pos: -67.5,40.5 - parent: 82 - type: Transform -- uid: 8395 - type: AtmosDeviceFanTiny - components: - - rot: -1.5707963267948966 rad - pos: -67.5,46.5 - parent: 82 - type: Transform -- uid: 8396 - type: ReinforcedWindow - components: - - pos: -57.5,56.5 - parent: 82 - type: Transform -- uid: 8397 - type: AirlockExternalGlass - components: - - pos: -54.5,38.5 - parent: 82 - type: Transform -- uid: 8398 - type: AirlockExternalGlass - components: - - pos: -64.5,40.5 - parent: 82 - type: Transform -- uid: 8399 - type: AirlockExternalGlass - components: - - pos: -64.5,46.5 - parent: 82 - type: Transform -- uid: 8400 - type: AirlockExternalGlass - components: - - pos: -64.5,48.5 - parent: 82 - type: Transform -- uid: 8401 - type: Grille - components: - - pos: -60.5,47.5 - parent: 82 - type: Transform -- uid: 8402 - type: AirlockCommandGlassLocked - components: - - pos: -57.5,52.5 - parent: 82 - type: Transform -- uid: 8403 - type: ReinforcedWindow - components: - - pos: -60.5,52.5 - parent: 82 - type: Transform -- uid: 8404 - type: ReinforcedWindow - components: - - pos: -58.5,56.5 - parent: 82 - type: Transform -- uid: 8405 - type: ReinforcedWindow - components: - - pos: -59.5,56.5 - parent: 82 - type: Transform -- uid: 8406 - type: ReinforcedWindow - components: - - pos: -60.5,56.5 - parent: 82 - type: Transform -- uid: 8407 - type: ReinforcedWindow - components: - - pos: -61.5,56.5 - parent: 82 - type: Transform -- uid: 8408 - type: Grille - components: - - pos: -61.5,56.5 - parent: 82 - type: Transform -- uid: 8409 - type: Grille - components: - - pos: -60.5,56.5 - parent: 82 - type: Transform -- uid: 8410 - type: Grille - components: - - pos: -59.5,56.5 - parent: 82 - type: Transform -- uid: 8411 - type: Grille - components: - - pos: -58.5,56.5 - parent: 82 - type: Transform -- uid: 8412 - type: Grille - components: - - pos: -57.5,56.5 - parent: 82 - type: Transform -- uid: 8413 - type: AirlockExternalGlass - components: - - pos: -53.5,38.5 - parent: 82 - type: Transform -- uid: 8414 - type: AirlockExternalGlass - components: - - pos: -54.5,47.5 - parent: 82 - type: Transform -- uid: 8415 - type: AirlockExternalGlass - components: - - pos: -53.5,47.5 - parent: 82 - type: Transform -- uid: 8416 - type: AirlockCommandGlassLocked - components: - - pos: -61.5,52.5 - parent: 82 - type: Transform -- uid: 8417 - type: ReinforcedWindow - components: - - pos: -63.5,53.5 - parent: 82 - type: Transform -- uid: 8418 - type: ReinforcedWindow - components: - - pos: -52.5,54.5 - parent: 82 - type: Transform -- uid: 8419 - type: WallReinforced - components: - - pos: -29.5,32.5 - parent: 82 - type: Transform -- uid: 8420 - type: ClosetFireFilled - components: - - pos: -52.5,52.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8421 - type: ComputerCriminalRecords - components: - - rot: 3.141592653589793 rad - pos: -27.5,25.5 - parent: 82 - type: Transform -- uid: 8422 - type: Table - components: - - pos: -60.5,51.5 - parent: 82 - type: Transform -- uid: 8423 - type: SubstationWallBasic - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-91.5 - parent: 82 - type: Transform -- uid: 8424 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-81.5 - parent: 82 - type: Transform -- uid: 8425 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-82.5 - parent: 82 - type: Transform -- uid: 8426 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-81.5 - parent: 82 - type: Transform -- uid: 8427 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-82.5 - parent: 82 - type: Transform -- uid: 8428 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-81.5 - parent: 82 - type: Transform -- uid: 8429 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-92.5 - parent: 82 - type: Transform -- uid: 8430 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-92.5 - parent: 82 - type: Transform -- uid: 8431 - type: SubstationWallBasic - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-91.5 - parent: 82 - type: Transform -- uid: 8432 - type: WeaponCapacitorRecharger - components: - - pos: -60.5,51.5 - parent: 82 - type: Transform -- uid: 8433 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-8.5 - parent: 82 - type: Transform -- uid: 8434 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -60.5,49.5 - parent: 82 - type: Transform -- uid: 8435 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -60.5,48.5 - parent: 82 - type: Transform -- uid: 8436 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -59.5,48.5 - parent: 82 - type: Transform -- uid: 8437 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -59.5,49.5 - parent: 82 - type: Transform -- uid: 8438 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-44.5 - parent: 82 - type: Transform -- uid: 8439 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-44.5 - parent: 82 - type: Transform -- uid: 8440 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-44.5 - parent: 82 - type: Transform -- uid: 8441 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-44.5 - parent: 82 - type: Transform -- uid: 8442 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-44.5 - parent: 82 - type: Transform -- uid: 8443 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-44.5 - parent: 82 - type: Transform -- uid: 8444 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-9.5 - parent: 82 - type: Transform -- uid: 8445 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-8.5 - parent: 82 - type: Transform -- uid: 8446 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-8.5 - parent: 82 - type: Transform -- uid: 8447 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-9.5 - parent: 82 - type: Transform -- uid: 8448 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-10.5 - parent: 82 - type: Transform -- uid: 8449 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-10.5 - parent: 82 - type: Transform -- uid: 8450 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-10.5 - parent: 82 - type: Transform -- uid: 8451 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-11.5 - parent: 82 - type: Transform -- uid: 8452 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-11.5 - parent: 82 - type: Transform -- uid: 8453 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-12.5 - parent: 82 - type: Transform -- uid: 8454 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-12.5 - parent: 82 - type: Transform -- uid: 8455 - type: AtmosFixFreezerMarker - components: - - pos: -38.5,-14.5 - parent: 82 - type: Transform -- uid: 8456 - type: SpawnPointAssistant - components: - - pos: 2.5,-38.5 - parent: 82 - type: Transform -- uid: 8457 - type: AtmosFixFreezerMarker - components: - - pos: -36.5,-14.5 - parent: 82 - type: Transform -- uid: 8458 - type: AtmosFixFreezerMarker - components: - - pos: -37.5,-15.5 - parent: 82 - type: Transform -- uid: 8459 - type: AtmosFixFreezerMarker - components: - - pos: -37.5,-14.5 - parent: 82 - type: Transform -- uid: 8460 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-15.5 - parent: 82 - type: Transform -- uid: 8461 - type: AtmosFixFreezerMarker - components: - - pos: -38.5,-15.5 - parent: 82 - type: Transform -- uid: 8462 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-15.5 - parent: 82 - type: Transform -- uid: 8463 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-16.5 - parent: 82 - type: Transform -- uid: 8464 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-16.5 - parent: 82 - type: Transform -- uid: 8465 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-17.5 - parent: 82 - type: Transform -- uid: 8466 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-18.5 - parent: 82 - type: Transform -- uid: 8467 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-18.5 - parent: 82 - type: Transform -- uid: 8468 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-18.5 - parent: 82 - type: Transform -- uid: 8469 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-18.5 - parent: 82 - type: Transform -- uid: 8470 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-19.5 - parent: 82 - type: Transform -- uid: 8471 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-19.5 - parent: 82 - type: Transform -- uid: 8472 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-13.5 - parent: 82 - type: Transform -- uid: 8473 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-14.5 - parent: 82 - type: Transform -- uid: 8474 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-15.5 - parent: 82 - type: Transform -- uid: 8475 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-16.5 - parent: 82 - type: Transform -- uid: 8476 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: -1.4907212,-1.0312121 - parent: 82 - type: Transform -- uid: 8477 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-16.5 - parent: 82 - type: Transform -- uid: 8478 - type: SignDirectionalEng - components: - - rot: 3.141592653589793 rad - pos: 34.495323,6.7355976 - parent: 82 - type: Transform -- uid: 8479 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-16.5 - parent: 82 - type: Transform -- uid: 8480 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-16.5 - parent: 82 - type: Transform -- uid: 8481 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-17.5 - parent: 82 - type: Transform -- uid: 8482 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-17.5 - parent: 82 - type: Transform -- uid: 8483 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-17.5 - parent: 82 - type: Transform -- uid: 8484 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-18.5 - parent: 82 - type: Transform -- uid: 8485 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-17.5 - parent: 82 - type: Transform -- uid: 8486 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-18.5 - parent: 82 - type: Transform -- uid: 8487 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-17.5 - parent: 82 - type: Transform -- uid: 8488 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-18.5 - parent: 82 - type: Transform -- uid: 8489 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-17.5 - parent: 82 - type: Transform -- uid: 8490 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-18.5 - parent: 82 - type: Transform -- uid: 8491 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-19.5 - parent: 82 - type: Transform -- uid: 8492 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-22.5 - parent: 82 - type: Transform -- uid: 8493 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-19.5 - parent: 82 - type: Transform -- uid: 8494 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-9.5 - parent: 82 - type: Transform -- uid: 8495 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-12.5 - parent: 82 - type: Transform -- uid: 8496 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-12.5 - parent: 82 - type: Transform -- uid: 8497 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-13.5 - parent: 82 - type: Transform -- uid: 8498 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-14.5 - parent: 82 - type: Transform -- uid: 8499 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-13.5 - parent: 82 - type: Transform -- uid: 8500 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-14.5 - parent: 82 - type: Transform -- uid: 8501 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-15.5 - parent: 82 - type: Transform -- uid: 8502 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-16.5 - parent: 82 - type: Transform -- uid: 8503 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-17.5 - parent: 82 - type: Transform -- uid: 8504 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-17.5 - parent: 82 - type: Transform -- uid: 8505 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-16.5 - parent: 82 - type: Transform -- uid: 8506 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-15.5 - parent: 82 - type: Transform -- uid: 8507 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-16.5 - parent: 82 - type: Transform -- uid: 8508 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-15.5 - parent: 82 - type: Transform -- uid: 8509 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-14.5 - parent: 82 - type: Transform -- uid: 8510 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-13.5 - parent: 82 - type: Transform -- uid: 8511 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-14.5 - parent: 82 - type: Transform -- uid: 8512 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-13.5 - parent: 82 - type: Transform -- uid: 8513 - type: SpawnPointAssistant - components: - - pos: 2.5,-32.5 - parent: 82 - type: Transform -- uid: 8514 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-12.5 - parent: 82 - type: Transform -- uid: 8515 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-12.5 - parent: 82 - type: Transform -- uid: 8516 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-11.5 - parent: 82 - type: Transform -- uid: 8517 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-11.5 - parent: 82 - type: Transform -- uid: 8518 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-12.5 - parent: 82 - type: Transform -- uid: 8519 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-11.5 - parent: 82 - type: Transform -- uid: 8520 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-10.5 - parent: 82 - type: Transform -- uid: 8521 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-10.5 - parent: 82 - type: Transform -- uid: 8522 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-9.5 - parent: 82 - type: Transform -- uid: 8523 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-8.5 - parent: 82 - type: Transform -- uid: 8524 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-7.5 - parent: 82 - type: Transform -- uid: 8525 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-7.5 - parent: 82 - type: Transform -- uid: 8526 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-7.5 - parent: 82 - type: Transform -- uid: 8527 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-6.5 - parent: 82 - type: Transform -- uid: 8528 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-6.5 - parent: 82 - type: Transform -- uid: 8529 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-6.5 - parent: 82 - type: Transform -- uid: 8530 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-5.5 - parent: 82 - type: Transform -- uid: 8531 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-5.5 - parent: 82 - type: Transform -- uid: 8532 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-4.5 - parent: 82 - type: Transform -- uid: 8533 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-4.5 - parent: 82 - type: Transform -- uid: 8534 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-3.5 - parent: 82 - type: Transform -- uid: 8535 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-2.5 - parent: 82 - type: Transform -- uid: 8536 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-5.5 - parent: 82 - type: Transform -- uid: 8537 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-5.5 - parent: 82 - type: Transform -- uid: 8538 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-6.5 - parent: 82 - type: Transform -- uid: 8539 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-6.5 - parent: 82 - type: Transform -- uid: 8540 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-7.5 - parent: 82 - type: Transform -- uid: 8541 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-8.5 - parent: 82 - type: Transform -- uid: 8542 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-8.5 - parent: 82 - type: Transform -- uid: 8543 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-8.5 - parent: 82 - type: Transform -- uid: 8544 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-9.5 - parent: 82 - type: Transform -- uid: 8545 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-9.5 - parent: 82 - type: Transform -- uid: 8546 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-10.5 - parent: 82 - type: Transform -- uid: 8547 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-10.5 - parent: 82 - type: Transform -- uid: 8548 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-10.5 - parent: 82 - type: Transform -- uid: 8549 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-11.5 - parent: 82 - type: Transform -- uid: 8550 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-12.5 - parent: 82 - type: Transform -- uid: 8551 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-13.5 - parent: 82 - type: Transform -- uid: 8552 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-16.5 - parent: 82 - type: Transform -- uid: 8553 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-12.5 - parent: 82 - type: Transform -- uid: 8554 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-99.5 - parent: 82 - type: Transform -- uid: 8555 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-99.5 - parent: 82 - type: Transform -- uid: 8556 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-101.5 - parent: 82 - type: Transform -- uid: 8557 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-101.5 - parent: 82 - type: Transform -- uid: 8558 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-101.5 - parent: 82 - type: Transform -- uid: 8559 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-101.5 - parent: 82 - type: Transform -- uid: 8560 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-99.5 - parent: 82 - type: Transform -- uid: 8561 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-99.5 - parent: 82 - type: Transform -- uid: 8562 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-99.5 - parent: 82 - type: Transform -- uid: 8563 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-14.5 - parent: 82 - type: Transform -- uid: 8564 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-15.5 - parent: 82 - type: Transform -- uid: 8565 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-16.5 - parent: 82 - type: Transform -- uid: 8566 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-13.5 - parent: 82 - type: Transform -- uid: 8567 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -49.5,24.5 - parent: 82 - type: Transform -- uid: 8568 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-19.5 - parent: 82 - type: Transform -- uid: 8569 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-20.5 - parent: 82 - type: Transform -- uid: 8570 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-20.5 - parent: 82 - type: Transform -- uid: 8571 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-19.5 - parent: 82 - type: Transform -- uid: 8572 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-20.5 - parent: 82 - type: Transform -- uid: 8573 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-20.5 - parent: 82 - type: Transform -- uid: 8574 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-20.5 - parent: 82 - type: Transform -- uid: 8575 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-19.5 - parent: 82 - type: Transform -- uid: 8576 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-19.5 - parent: 82 - type: Transform -- uid: 8577 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-20.5 - parent: 82 - type: Transform -- uid: 8578 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-21.5 - parent: 82 - type: Transform -- uid: 8579 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-21.5 - parent: 82 - type: Transform -- uid: 8580 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-21.5 - parent: 82 - type: Transform -- uid: 8581 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-22.5 - parent: 82 - type: Transform -- uid: 8582 - type: NuclearBombKeg - components: - - pos: -61.5,-9.5 - parent: 82 - type: Transform -- uid: 8583 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -48.5,26.5 - parent: 82 - type: Transform -- uid: 8584 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -49.5,23.5 - parent: 82 - type: Transform -- uid: 8585 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -49.5,22.5 - parent: 82 - type: Transform -- uid: 8586 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -49.5,21.5 - parent: 82 - type: Transform -- uid: 8587 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -50.5,21.5 - parent: 82 - type: Transform -- uid: 8588 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -50.5,22.5 - parent: 82 - type: Transform -- uid: 8589 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -50.5,23.5 - parent: 82 - type: Transform -- uid: 8590 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -50.5,24.5 - parent: 82 - type: Transform -- uid: 8591 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -51.5,24.5 - parent: 82 - type: Transform -- uid: 8592 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -51.5,23.5 - parent: 82 - type: Transform -- uid: 8593 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -51.5,22.5 - parent: 82 - type: Transform -- uid: 8594 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -51.5,21.5 - parent: 82 - type: Transform -- uid: 8595 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -50.5,25.5 - parent: 82 - type: Transform -- uid: 8596 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -49.5,25.5 - parent: 82 - type: Transform -- uid: 8597 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -49.5,26.5 - parent: 82 - type: Transform -- uid: 8598 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -48.5,25.5 - parent: 82 - type: Transform -- uid: 8599 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -48.5,27.5 - parent: 82 - type: Transform -- uid: 8600 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -49.5,27.5 - parent: 82 - type: Transform -- uid: 8601 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -52.5,23.5 - parent: 82 - type: Transform -- uid: 8602 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -52.5,22.5 - parent: 82 - type: Transform -- uid: 8603 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -52.5,21.5 - parent: 82 - type: Transform -- uid: 8604 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -52.5,24.5 - parent: 82 - type: Transform -- uid: 8605 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -52.5,20.5 - parent: 82 - type: Transform -- uid: 8606 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -51.5,20.5 - parent: 82 - type: Transform -- uid: 8607 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -50.5,20.5 - parent: 82 - type: Transform -- uid: 8608 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -49.5,20.5 - parent: 82 - type: Transform -- uid: 8609 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -50.5,19.5 - parent: 82 - type: Transform -- uid: 8610 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -50.5,18.5 - parent: 82 - type: Transform -- uid: 8611 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: -51.5,19.5 - parent: 82 - type: Transform -- uid: 8612 - type: TimpaniInstrument - components: - - pos: -63.5,-14.5 - parent: 82 - type: Transform -- uid: 8613 - type: HeadSkeleton - components: - - flags: SessionSpecific - type: MetaData - - pos: 48.439938,56.562828 - parent: 82 - type: Transform - - tags: [] - type: Tag -- uid: 8614 - type: ClothingNeckCloakMiner - components: - - pos: -60.509342,-18.394539 - parent: 82 - type: Transform -- uid: 8615 - type: ClothingOuterWinterMiner - components: - - pos: -64.420456,-9.505651 - parent: 82 - type: Transform -- uid: 8616 - type: VendingMachineMagivend - components: - - flags: SessionSpecific - type: MetaData - - pos: -61.5,-11.5 - parent: 82 - type: Transform -- uid: 8617 - type: ClothingHeadHelmetSyndicate - components: - - pos: -62.531563,-20.483429 - parent: 82 - type: Transform -- uid: 8618 - type: VehicleKeySyndicateSegway - components: - - pos: -42.48091,12.587237 - parent: 82 - type: Transform -- uid: 8619 - type: RubberStampSyndicate - components: - - pos: -63.2649,-19.79454 - parent: 82 - type: Transform -- uid: 8620 - type: ClothingUniformJumpsuitNanotrasen - components: - - pos: -58.509342,-7.527873 - parent: 82 - type: Transform -- uid: 8621 - type: ClothingUniformJumpsuitColorMaroon - components: - - pos: -22.435818,-49.512173 - parent: 82 - type: Transform -- uid: 8622 - type: AsteroidRock - components: - - pos: -62.5,-28.5 - parent: 82 - type: Transform -- uid: 8623 - type: AsteroidRock - components: - - pos: -63.5,-28.5 - parent: 82 - type: Transform -- uid: 8624 - type: AsteroidRock - components: - - pos: -62.5,-29.5 - parent: 82 - type: Transform -- uid: 8625 - type: WeaponTurretSyndicateBroken - components: - - pos: 24.5,-102.5 - parent: 82 - type: Transform -- uid: 8626 - type: WeaponTurretSyndicateBroken - components: - - pos: 16.5,-106.5 - parent: 82 - type: Transform -- uid: 8627 - type: WeaponTurretSyndicateBroken - components: - - pos: 16.5,-102.5 - parent: 82 - type: Transform -- uid: 8628 - type: ReinforcedPlasmaWindow - components: - - pos: 20.5,-101.5 - parent: 82 - type: Transform -- uid: 8629 - type: WeaponTurretSyndicateBroken - components: - - pos: 7.5,-98.5 - parent: 82 - type: Transform -- uid: 8630 - type: ComputerFrame - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-90.5 - parent: 82 - type: Transform -- uid: 8631 - type: ComputerFrame - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-93.5 - parent: 82 - type: Transform -- uid: 8632 - type: ComputerFrame - components: - - pos: 31.5,-86.5 - parent: 82 - type: Transform -- uid: 8633 - type: ComputerFrame - components: - - pos: 28.5,-85.5 - parent: 82 - type: Transform -- uid: 8634 - type: ComputerFrame - components: - - pos: 9.5,-86.5 - parent: 82 - type: Transform -- uid: 8635 - type: ComputerFrame - components: - - pos: 12.5,-85.5 - parent: 82 - type: Transform -- uid: 8636 - type: WeaponTurretSyndicateBroken - components: - - pos: 33.5,-87.5 - parent: 82 - type: Transform -- uid: 8637 - type: WeaponTurretSyndicateBroken - components: - - pos: 7.5,-87.5 - parent: 82 - type: Transform -- uid: 8638 - type: Grille - components: - - pos: -66.5,-24.5 - parent: 82 - type: Transform -- uid: 8639 - type: Grille - components: - - pos: -66.5,-26.5 - parent: 82 - type: Transform -- uid: 8640 - type: ReinforcedWindow - components: - - pos: -66.5,-24.5 - parent: 82 - type: Transform -- uid: 8641 - type: ReinforcedWindow - components: - - pos: -66.5,-26.5 - parent: 82 - type: Transform -- uid: 8642 - type: WallReinforced - components: - - pos: -55.5,-48.5 - parent: 82 - type: Transform -- uid: 8643 - type: Grille - components: - - pos: -40.5,-52.5 - parent: 82 - type: Transform -- uid: 8644 - type: WallSolid - components: - - pos: -49.5,-47.5 - parent: 82 - type: Transform -- uid: 8645 - type: WallReinforced - components: - - pos: -43.5,-49.5 - parent: 82 - type: Transform -- uid: 8646 - type: WallReinforced - components: - - pos: -43.5,-50.5 - parent: 82 - type: Transform -- uid: 8647 - type: WallReinforced - components: - - pos: -43.5,-51.5 - parent: 82 - type: Transform -- uid: 8648 - type: WallReinforced - components: - - pos: -43.5,-52.5 - parent: 82 - type: Transform -- uid: 8649 - type: WallReinforced - components: - - pos: -39.5,-52.5 - parent: 82 - type: Transform -- uid: 8650 - type: WallReinforced - components: - - pos: -39.5,-51.5 - parent: 82 - type: Transform -- uid: 8651 - type: WallReinforced - components: - - pos: -39.5,-50.5 - parent: 82 - type: Transform -- uid: 8652 - type: WallReinforced - components: - - pos: -39.5,-49.5 - parent: 82 - type: Transform -- uid: 8653 - type: ReinforcedWindow - components: - - pos: -40.5,-52.5 - parent: 82 - type: Transform -- uid: 8654 - type: AsteroidRock - components: - - pos: -67.5,-38.5 - parent: 82 - type: Transform -- uid: 8655 - type: AsteroidRock - components: - - pos: -67.5,-39.5 - parent: 82 - type: Transform -- uid: 8656 - type: AsteroidRock - components: - - pos: -68.5,-39.5 - parent: 82 - type: Transform -- uid: 8657 - type: AsteroidRock - components: - - pos: -68.5,-38.5 - parent: 82 - type: Transform -- uid: 8658 - type: AsteroidRock - components: - - pos: -68.5,-40.5 - parent: 82 - type: Transform -- uid: 8659 - type: AsteroidRock - components: - - pos: -69.5,-40.5 - parent: 82 - type: Transform -- uid: 8660 - type: AsteroidRock - components: - - pos: -69.5,-42.5 - parent: 82 - type: Transform -- uid: 8661 - type: AsteroidRock - components: - - pos: -70.5,-42.5 - parent: 82 - type: Transform -- uid: 8662 - type: AsteroidRock - components: - - pos: -70.5,-43.5 - parent: 82 - type: Transform -- uid: 8663 - type: AsteroidRock - components: - - pos: -69.5,-44.5 - parent: 82 - type: Transform -- uid: 8664 - type: AsteroidRock - components: - - pos: -70.5,-44.5 - parent: 82 - type: Transform -- uid: 8665 - type: AsteroidRock - components: - - pos: -69.5,-45.5 - parent: 82 - type: Transform -- uid: 8666 - type: AsteroidRock - components: - - pos: -69.5,-46.5 - parent: 82 - type: Transform -- uid: 8667 - type: AsteroidRock - components: - - pos: -70.5,-46.5 - parent: 82 - type: Transform -- uid: 8668 - type: AsteroidRock - components: - - pos: -71.5,-46.5 - parent: 82 - type: Transform -- uid: 8669 - type: AsteroidRock - components: - - pos: -71.5,-47.5 - parent: 82 - type: Transform -- uid: 8670 - type: AsteroidRock - components: - - pos: -70.5,-47.5 - parent: 82 - type: Transform -- uid: 8671 - type: AsteroidRock - components: - - pos: -69.5,-48.5 - parent: 82 - type: Transform -- uid: 8672 - type: AsteroidRock - components: - - pos: -68.5,-48.5 - parent: 82 - type: Transform -- uid: 8673 - type: AsteroidRock - components: - - pos: -68.5,-49.5 - parent: 82 - type: Transform -- uid: 8674 - type: AsteroidRock - components: - - pos: -67.5,-49.5 - parent: 82 - type: Transform -- uid: 8675 - type: AsteroidRock - components: - - pos: -67.5,-50.5 - parent: 82 - type: Transform -- uid: 8676 - type: AsteroidRock - components: - - pos: -67.5,-51.5 - parent: 82 - type: Transform -- uid: 8677 - type: AsteroidRock - components: - - pos: -66.5,-50.5 - parent: 82 - type: Transform -- uid: 8678 - type: AsteroidRock - components: - - pos: -66.5,-49.5 - parent: 82 - type: Transform -- uid: 8679 - type: AsteroidRock - components: - - pos: -65.5,-49.5 - parent: 82 - type: Transform -- uid: 8680 - type: AsteroidRock - components: - - pos: -65.5,-48.5 - parent: 82 - type: Transform -- uid: 8681 - type: AsteroidRock - components: - - pos: -64.5,-48.5 - parent: 82 - type: Transform -- uid: 8682 - type: AsteroidRock - components: - - pos: -63.5,-48.5 - parent: 82 - type: Transform -- uid: 8683 - type: AsteroidRock - components: - - pos: -63.5,-49.5 - parent: 82 - type: Transform -- uid: 8684 - type: AsteroidRock - components: - - pos: -62.5,-51.5 - parent: 82 - type: Transform -- uid: 8685 - type: AsteroidRock - components: - - pos: -61.5,-51.5 - parent: 82 - type: Transform -- uid: 8686 - type: AsteroidRock - components: - - pos: -59.5,-48.5 - parent: 82 - type: Transform -- uid: 8687 - type: AsteroidRock - components: - - pos: -57.5,-50.5 - parent: 82 - type: Transform -- uid: 8688 - type: AsteroidRock - components: - - pos: -53.5,-53.5 - parent: 82 - type: Transform -- uid: 8689 - type: AsteroidRock - components: - - pos: -52.5,-53.5 - parent: 82 - type: Transform -- uid: 8690 - type: AsteroidRock - components: - - pos: -52.5,-52.5 - parent: 82 - type: Transform -- uid: 8691 - type: AsteroidRock - components: - - pos: -51.5,-52.5 - parent: 82 - type: Transform -- uid: 8692 - type: AsteroidRock - components: - - pos: -52.5,-51.5 - parent: 82 - type: Transform -- uid: 8693 - type: AsteroidRock - components: - - pos: -53.5,-51.5 - parent: 82 - type: Transform -- uid: 8694 - type: AsteroidRock - components: - - pos: -53.5,-50.5 - parent: 82 - type: Transform -- uid: 8695 - type: AsteroidRock - components: - - pos: -50.5,-51.5 - parent: 82 - type: Transform -- uid: 8696 - type: AsteroidRock - components: - - pos: -48.5,-50.5 - parent: 82 - type: Transform -- uid: 8697 - type: AsteroidRock - components: - - pos: -47.5,-51.5 - parent: 82 - type: Transform -- uid: 8698 - type: AsteroidRock - components: - - pos: -47.5,-50.5 - parent: 82 - type: Transform -- uid: 8699 - type: AsteroidRock - components: - - pos: -44.5,-50.5 - parent: 82 - type: Transform -- uid: 8700 - type: AsteroidRock - components: - - pos: -45.5,-51.5 - parent: 82 - type: Transform -- uid: 8701 - type: AsteroidRock - components: - - pos: -46.5,-51.5 - parent: 82 - type: Transform -- uid: 8702 - type: AsteroidRock - components: - - pos: -46.5,-50.5 - parent: 82 - type: Transform -- uid: 8703 - type: AsteroidRock - components: - - pos: -45.5,-50.5 - parent: 82 - type: Transform -- uid: 8704 - type: AsteroidRock - components: - - pos: -45.5,-49.5 - parent: 82 - type: Transform -- uid: 8705 - type: AsteroidRock - components: - - pos: -44.5,-49.5 - parent: 82 - type: Transform -- uid: 8706 - type: AsteroidRock - components: - - pos: -46.5,-49.5 - parent: 82 - type: Transform -- uid: 8707 - type: AsteroidRock - components: - - pos: -46.5,-49.5 - parent: 82 - type: Transform -- uid: 8708 - type: AsteroidRock - components: - - pos: -47.5,-49.5 - parent: 82 - type: Transform -- uid: 8709 - type: AsteroidRock - components: - - pos: -52.5,-50.5 - parent: 82 - type: Transform -- uid: 8710 - type: AsteroidRock - components: - - pos: -51.5,-51.5 - parent: 82 - type: Transform -- uid: 8711 - type: AsteroidRock - components: - - pos: -51.5,-50.5 - parent: 82 - type: Transform -- uid: 8712 - type: AsteroidRock - components: - - pos: -50.5,-50.5 - parent: 82 - type: Transform -- uid: 8713 - type: AsteroidRock - components: - - pos: -50.5,-52.5 - parent: 82 - type: Transform -- uid: 8714 - type: AsteroidRock - components: - - pos: -53.5,-52.5 - parent: 82 - type: Transform -- uid: 8715 - type: AsteroidRock - components: - - pos: -57.5,-49.5 - parent: 82 - type: Transform -- uid: 8716 - type: AsteroidRock - components: - - pos: -58.5,-50.5 - parent: 82 - type: Transform -- uid: 8717 - type: AsteroidRock - components: - - pos: -58.5,-49.5 - parent: 82 - type: Transform -- uid: 8718 - type: AsteroidRock - components: - - pos: -59.5,-49.5 - parent: 82 - type: Transform -- uid: 8719 - type: AsteroidRock - components: - - pos: -60.5,-48.5 - parent: 82 - type: Transform -- uid: 8720 - type: AsteroidRock - components: - - pos: -60.5,-49.5 - parent: 82 - type: Transform -- uid: 8721 - type: AsteroidRock - components: - - pos: -58.5,-48.5 - parent: 82 - type: Transform -- uid: 8722 - type: AsteroidRock - components: - - pos: -59.5,-50.5 - parent: 82 - type: Transform -- uid: 8723 - type: AsteroidRock - components: - - pos: -62.5,-50.5 - parent: 82 - type: Transform -- uid: 8724 - type: AsteroidRock - components: - - pos: -63.5,-50.5 - parent: 82 - type: Transform -- uid: 8725 - type: AsteroidRock - components: - - pos: -62.5,-49.5 - parent: 82 - type: Transform -- uid: 8726 - type: AsteroidRock - components: - - pos: -61.5,-49.5 - parent: 82 - type: Transform -- uid: 8727 - type: AsteroidRock - components: - - pos: -61.5,-51.5 - parent: 82 - type: Transform -- uid: 8728 - type: AsteroidRock - components: - - pos: -60.5,-51.5 - parent: 82 - type: Transform -- uid: 8729 - type: AsteroidRock - components: - - pos: -59.5,-51.5 - parent: 82 - type: Transform -- uid: 8730 - type: AsteroidRock - components: - - pos: -64.5,-50.5 - parent: 82 - type: Transform -- uid: 8731 - type: AsteroidRock - components: - - pos: -64.5,-49.5 - parent: 82 - type: Transform -- uid: 8732 - type: AsteroidRock - components: - - pos: -65.5,-50.5 - parent: 82 - type: Transform -- uid: 8733 - type: AsteroidRock - components: - - pos: -66.5,-51.5 - parent: 82 - type: Transform -- uid: 8734 - type: AsteroidRock - components: - - pos: -65.5,-51.5 - parent: 82 - type: Transform -- uid: 8735 - type: AsteroidRock - components: - - pos: -63.5,-52.5 - parent: 82 - type: Transform -- uid: 8736 - type: AsteroidRock - components: - - pos: -62.5,-52.5 - parent: 82 - type: Transform -- uid: 8737 - type: AsteroidRock - components: - - pos: -61.5,-52.5 - parent: 82 - type: Transform -- uid: 8738 - type: AsteroidRock - components: - - pos: -58.5,-51.5 - parent: 82 - type: Transform -- uid: 8739 - type: AsteroidRock - components: - - pos: -58.5,-52.5 - parent: 82 - type: Transform -- uid: 8740 - type: AsteroidRock - components: - - pos: -58.5,-53.5 - parent: 82 - type: Transform -- uid: 8741 - type: AsteroidRock - components: - - pos: -59.5,-53.5 - parent: 82 - type: Transform -- uid: 8742 - type: AsteroidRock - components: - - pos: -60.5,-52.5 - parent: 82 - type: Transform -- uid: 8743 - type: AsteroidRock - components: - - pos: -56.5,-50.5 - parent: 82 - type: Transform -- uid: 8744 - type: AsteroidRock - components: - - pos: -55.5,-50.5 - parent: 82 - type: Transform -- uid: 8745 - type: AsteroidRock - components: - - pos: -57.5,-51.5 - parent: 82 - type: Transform -- uid: 8746 - type: AsteroidRock - components: - - pos: -57.5,-52.5 - parent: 82 - type: Transform -- uid: 8747 - type: AsteroidRock - components: - - pos: -56.5,-51.5 - parent: 82 - type: Transform -- uid: 8748 - type: AsteroidRock - components: - - pos: -56.5,-52.5 - parent: 82 - type: Transform -- uid: 8749 - type: AsteroidRock - components: - - pos: -55.5,-51.5 - parent: 82 - type: Transform -- uid: 8750 - type: AsteroidRock - components: - - pos: -55.5,-52.5 - parent: 82 - type: Transform -- uid: 8751 - type: AsteroidRock - components: - - pos: -54.5,-52.5 - parent: 82 - type: Transform -- uid: 8752 - type: AsteroidRock - components: - - pos: -54.5,-50.5 - parent: 82 - type: Transform -- uid: 8753 - type: AsteroidRock - components: - - pos: -60.5,-47.5 - parent: 82 - type: Transform -- uid: 8754 - type: AsteroidRock - components: - - pos: -59.5,-47.5 - parent: 82 - type: Transform -- uid: 8755 - type: AsteroidRock - components: - - pos: -58.5,-47.5 - parent: 82 - type: Transform -- uid: 8756 - type: AsteroidRock - components: - - pos: -57.5,-47.5 - parent: 82 - type: Transform -- uid: 8757 - type: AsteroidRock - components: - - pos: -56.5,-47.5 - parent: 82 - type: Transform -- uid: 8758 - type: AsteroidRock - components: - - pos: -59.5,-46.5 - parent: 82 - type: Transform -- uid: 8759 - type: AsteroidRock - components: - - pos: -60.5,-45.5 - parent: 82 - type: Transform -- uid: 8760 - type: AsteroidRock - components: - - pos: -60.5,-46.5 - parent: 82 - type: Transform -- uid: 8761 - type: AsteroidRock - components: - - pos: -56.5,-48.5 - parent: 82 - type: Transform -- uid: 8762 - type: AsteroidRock - components: - - pos: -56.5,-49.5 - parent: 82 - type: Transform -- uid: 8763 - type: AsteroidRock - components: - - pos: -55.5,-49.5 - parent: 82 - type: Transform -- uid: 8764 - type: AsteroidRock - components: - - pos: -54.5,-49.5 - parent: 82 - type: Transform -- uid: 8765 - type: SignScience1 - components: - - pos: 21.5,58.5 - parent: 82 - type: Transform -- uid: 8766 - type: SignMagneticsMed - components: - - pos: 1.5,54.5 - parent: 82 - type: Transform -- uid: 8767 - type: AsteroidRock - components: - - pos: -50.5,-49.5 - parent: 82 - type: Transform -- uid: 8768 - type: AsteroidRock - components: - - pos: -49.5,-49.5 - parent: 82 - type: Transform -- uid: 8769 - type: AsteroidRock - components: - - pos: -48.5,-49.5 - parent: 82 - type: Transform -- uid: 8770 - type: AsteroidRock - components: - - pos: -62.5,-48.5 - parent: 82 - type: Transform -- uid: 8771 - type: AsteroidRock - components: - - pos: -62.5,-47.5 - parent: 82 - type: Transform -- uid: 8772 - type: AsteroidRock - components: - - pos: -63.5,-47.5 - parent: 82 - type: Transform -- uid: 8773 - type: AsteroidRock - components: - - pos: -64.5,-47.5 - parent: 82 - type: Transform -- uid: 8774 - type: AsteroidRock - components: - - pos: -65.5,-47.5 - parent: 82 - type: Transform -- uid: 8775 - type: AsteroidRock - components: - - pos: -66.5,-47.5 - parent: 82 - type: Transform -- uid: 8776 - type: AsteroidRock - components: - - pos: -67.5,-47.5 - parent: 82 - type: Transform -- uid: 8777 - type: AsteroidRock - components: - - pos: -68.5,-46.5 - parent: 82 - type: Transform -- uid: 8778 - type: AsteroidRock - components: - - pos: -68.5,-45.5 - parent: 82 - type: Transform -- uid: 8779 - type: AsteroidRock - components: - - pos: -68.5,-44.5 - parent: 82 - type: Transform -- uid: 8780 - type: AsteroidRock - components: - - pos: -68.5,-42.5 - parent: 82 - type: Transform -- uid: 8781 - type: AsteroidRock - components: - - pos: -68.5,-41.5 - parent: 82 - type: Transform -- uid: 8782 - type: AsteroidRock - components: - - pos: -69.5,-41.5 - parent: 82 - type: Transform -- uid: 8783 - type: AsteroidRock - components: - - pos: -70.5,-41.5 - parent: 82 - type: Transform -- uid: 8784 - type: AsteroidRock - components: - - pos: -71.5,-41.5 - parent: 82 - type: Transform -- uid: 8785 - type: AsteroidRock - components: - - pos: -71.5,-42.5 - parent: 82 - type: Transform -- uid: 8786 - type: AsteroidRock - components: - - pos: -71.5,-43.5 - parent: 82 - type: Transform -- uid: 8787 - type: AsteroidRock - components: - - pos: -71.5,-44.5 - parent: 82 - type: Transform -- uid: 8788 - type: AsteroidRock - components: - - pos: -70.5,-48.5 - parent: 82 - type: Transform -- uid: 8789 - type: AsteroidRock - components: - - pos: -69.5,-49.5 - parent: 82 - type: Transform -- uid: 8790 - type: AsteroidRock - components: - - pos: -69.5,-50.5 - parent: 82 - type: Transform -- uid: 8791 - type: AsteroidRock - components: - - pos: -69.5,-51.5 - parent: 82 - type: Transform -- uid: 8792 - type: AsteroidRock - components: - - pos: -68.5,-50.5 - parent: 82 - type: Transform -- uid: 8793 - type: ReinforcedWindow - components: - - pos: -66.5,-42.5 - parent: 82 - type: Transform -- uid: 8794 - type: ReinforcedWindow - components: - - pos: -66.5,-43.5 - parent: 82 - type: Transform -- uid: 8795 - type: ReinforcedWindow - components: - - pos: -66.5,-44.5 - parent: 82 - type: Transform -- uid: 8796 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 14.5,71.5 - parent: 82 - type: Transform -- uid: 8797 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 14.5,70.5 - parent: 82 - type: Transform -- uid: 8798 - type: GasPipeStraight - components: - - pos: 28.5,11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8799 - type: GasPipeStraight - components: - - pos: 28.5,10.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8800 - type: WallReinforced - components: - - pos: -45.5,28.5 - parent: 82 - type: Transform -- uid: 8801 - type: Grille - components: - - pos: -26.5,24.5 - parent: 82 - type: Transform -- uid: 8802 - type: Grille - components: - - pos: -27.5,24.5 - parent: 82 - type: Transform -- uid: 8803 - type: Grille - components: - - pos: -28.5,24.5 - parent: 82 - type: Transform -- uid: 8804 - type: Grille - components: - - pos: -29.5,24.5 - parent: 82 - type: Transform -- uid: 8805 - type: RandomFoodSingle - components: - - pos: -28.5,25.5 - parent: 82 - type: Transform -- uid: 8806 - type: ReinforcedWindow - components: - - pos: -26.5,24.5 - parent: 82 - type: Transform -- uid: 8807 - type: ReinforcedWindow - components: - - pos: -27.5,24.5 - parent: 82 - type: Transform -- uid: 8808 - type: ReinforcedWindow - components: - - pos: -28.5,24.5 - parent: 82 - type: Transform -- uid: 8809 - type: ReinforcedWindow - components: - - pos: -29.5,24.5 - parent: 82 - type: Transform -- uid: 8810 - type: PowerCellRecharger - components: - - pos: -2.5,-61.5 - parent: 82 - type: Transform -- uid: 8811 - type: AirlockSecurityGlassLocked - components: - - pos: -24.5,25.5 - parent: 82 - type: Transform -- uid: 8812 - type: AirlockMaintSecLocked - components: - - pos: -32.5,26.5 - parent: 82 - type: Transform -- uid: 8813 - type: Gauze - components: - - pos: -38.48513,-41.45896 - parent: 82 - type: Transform -- uid: 8814 - type: MedicalBed - components: - - pos: -43.5,-39.5 - parent: 82 - type: Transform -- uid: 8815 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 3.5,44.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Server Room - type: SurveillanceCamera -- uid: 8816 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -26.5,27.5 - parent: 82 - type: Transform -- uid: 8817 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -25.5,27.5 - parent: 82 - type: Transform -- uid: 8818 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -29.5,27.5 - parent: 82 - type: Transform -- uid: 8819 - type: LockerEvidence - components: - - pos: -30.5,27.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8820 - type: ComfyChair - components: - - pos: -43.5,-36.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 8821 - type: WindoorSecurityLocked - components: - - pos: -26.5,28.5 - parent: 82 - type: Transform -- uid: 8822 - type: WindoorSecurityLocked - components: - - pos: -25.5,28.5 - parent: 82 - type: Transform -- uid: 8823 - type: WallReinforced - components: - - pos: 15.5,-12.5 - parent: 82 - type: Transform -- uid: 8824 - type: CarpetBlue - components: - - pos: -41.5,-36.5 - parent: 82 - type: Transform -- uid: 8825 - type: Rack - components: - - pos: -43.5,25.5 - parent: 82 - type: Transform -- uid: 8826 - type: Rack - components: - - pos: -42.5,25.5 - parent: 82 - type: Transform -- uid: 8827 - type: Grille - components: - - pos: 67.5,-29.5 - parent: 82 - type: Transform -- uid: 8828 - type: Grille - components: - - pos: 65.5,-29.5 - parent: 82 - type: Transform -- uid: 8829 - type: Rack - components: - - pos: -37.5,25.5 - parent: 82 - type: Transform -- uid: 8830 - type: Rack - components: - - pos: -36.5,25.5 - parent: 82 - type: Transform -- uid: 8831 - type: Grille - components: - - pos: 63.5,-29.5 - parent: 82 - type: Transform -- uid: 8832 - type: Grille - components: - - pos: 61.5,-29.5 - parent: 82 - type: Transform -- uid: 8833 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -36.5,27.5 - parent: 82 - type: Transform -- uid: 8834 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -43.5,27.5 - parent: 82 - type: Transform -- uid: 8835 - type: Grille - components: - - pos: -41.5,28.5 - parent: 82 - type: Transform -- uid: 8836 - type: Grille - components: - - pos: -42.5,28.5 - parent: 82 - type: Transform -- uid: 8837 - type: Grille - components: - - pos: -37.5,28.5 - parent: 82 - type: Transform -- uid: 8838 - type: Grille - components: - - pos: -38.5,28.5 - parent: 82 - type: Transform -- uid: 8839 - type: ReinforcedWindow - components: - - pos: -42.5,28.5 - parent: 82 - type: Transform -- uid: 8840 - type: ReinforcedWindow - components: - - pos: -41.5,28.5 - parent: 82 - type: Transform -- uid: 8841 - type: ReinforcedWindow - components: - - pos: -37.5,28.5 - parent: 82 - type: Transform -- uid: 8842 - type: ReinforcedWindow - components: - - pos: -38.5,28.5 - parent: 82 - type: Transform -- uid: 8843 - type: AirlockMaintCommandLocked - components: - - pos: -44.5,26.5 - parent: 82 - type: Transform -- uid: 8844 - type: Grille - components: - - pos: 60.5,-31.5 - parent: 82 - type: Transform -- uid: 8845 - type: Grille - components: - - pos: 60.5,-29.5 - parent: 82 - type: Transform -- uid: 8846 - type: Grille - components: - - pos: 49.5,-31.5 - parent: 82 - type: Transform -- uid: 8847 - type: Grille - components: - - pos: 49.5,-29.5 - parent: 82 - type: Transform -- uid: 8848 - type: Grille - components: - - pos: 49.5,-27.5 - parent: 82 - type: Transform -- uid: 8849 - type: FirelockGlass - components: - - pos: 52.5,-40.5 - parent: 82 - type: Transform -- uid: 8850 - type: FirelockGlass - components: - - pos: 50.5,-40.5 - parent: 82 - type: Transform -- uid: 8851 - type: Grille - components: - - pos: 49.5,-26.5 - parent: 82 - type: Transform -- uid: 8852 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-23.5 - parent: 82 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 3789 - - port: Toggle - uid: 3790 - - port: Toggle - uid: 3791 - - port: Toggle - uid: 3792 - - port: Toggle - uid: 3793 - - port: Toggle - uid: 3794 - - port: Toggle - uid: 3795 - - port: Toggle - uid: 3796 - - port: Toggle - uid: 3797 - - port: Toggle - uid: 3798 - - port: Toggle - uid: 3799 - - port: Toggle - uid: 3800 - type: SignalTransmitter -- uid: 8853 - type: CarrotSeeds - components: - - pos: 49.335472,-44.647827 - parent: 82 - type: Transform -- uid: 8854 - type: DogBed - components: - - pos: 62.5,-14.5 - parent: 82 - type: Transform -- uid: 8855 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-10.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 8856 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-8.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 8857 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-8.5 - parent: 82 - type: Transform -- uid: 8858 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-10.5 - parent: 82 - type: Transform -- uid: 8859 - type: FirelockGlass - components: - - pos: 57.5,-9.5 - parent: 82 - type: Transform -- uid: 8860 - type: WallReinforced - components: - - pos: -0.5,-9.5 - parent: 82 - type: Transform -- uid: 8861 - type: WallReinforced - components: - - pos: 17.5,-9.5 - parent: 82 - type: Transform -- uid: 8862 - type: AirlockCommandGlassLocked - components: - - pos: -2.5,-10.5 - parent: 82 - type: Transform -- uid: 8863 - type: WallReinforced - components: - - pos: 15.5,-9.5 - parent: 82 - type: Transform -- uid: 8864 - type: WallReinforced - components: - - pos: -7.5,-58.5 - parent: 82 - type: Transform -- uid: 8865 - type: WallReinforced - components: - - pos: -8.5,-58.5 - parent: 82 - type: Transform -- uid: 8866 - type: WallReinforced - components: - - pos: -8.5,-59.5 - parent: 82 - type: Transform -- uid: 8867 - type: WallReinforced - components: - - pos: -9.5,-59.5 - parent: 82 - type: Transform -- uid: 8868 - type: WallReinforced - components: - - pos: -3.5,-58.5 - parent: 82 - type: Transform -- uid: 8869 - type: WallReinforced - components: - - pos: -2.5,-58.5 - parent: 82 - type: Transform -- uid: 8870 - type: WallReinforced - components: - - pos: -2.5,-59.5 - parent: 82 - type: Transform -- uid: 8871 - type: WallReinforced - components: - - pos: -1.5,-59.5 - parent: 82 - type: Transform -- uid: 8872 - type: WallReinforced - components: - - pos: -5.5,-63.5 - parent: 82 - type: Transform -- uid: 8873 - type: Grille - components: - - pos: -7.5,-63.5 - parent: 82 - type: Transform -- uid: 8874 - type: WallReinforced - components: - - pos: -8.5,-63.5 - parent: 82 - type: Transform -- uid: 8875 - type: WallReinforced - components: - - pos: -8.5,-62.5 - parent: 82 - type: Transform -- uid: 8876 - type: WallReinforced - components: - - pos: -9.5,-62.5 - parent: 82 - type: Transform -- uid: 8877 - type: WallReinforced - components: - - pos: -2.5,-63.5 - parent: 82 - type: Transform -- uid: 8878 - type: WallReinforced - components: - - pos: -2.5,-62.5 - parent: 82 - type: Transform -- uid: 8879 - type: WallReinforced - components: - - pos: -1.5,-62.5 - parent: 82 - type: Transform -- uid: 8880 - type: Grille - components: - - pos: -3.5,-63.5 - parent: 82 - type: Transform -- uid: 8881 - type: Grille - components: - - pos: -9.5,-60.5 - parent: 82 - type: Transform -- uid: 8882 - type: Grille - components: - - pos: -9.5,-61.5 - parent: 82 - type: Transform -- uid: 8883 - type: Grille - components: - - pos: -1.5,-60.5 - parent: 82 - type: Transform -- uid: 8884 - type: Grille - components: - - pos: -1.5,-61.5 - parent: 82 - type: Transform -- uid: 8885 - type: ReinforcedWindow - components: - - pos: -9.5,-60.5 - parent: 82 - type: Transform -- uid: 8886 - type: ReinforcedWindow - components: - - pos: -9.5,-61.5 - parent: 82 - type: Transform -- uid: 8887 - type: ReinforcedWindow - components: - - pos: -1.5,-60.5 - parent: 82 - type: Transform -- uid: 8888 - type: ReinforcedWindow - components: - - pos: -1.5,-61.5 - parent: 82 - type: Transform -- uid: 8889 - type: ReinforcedWindow - components: - - pos: -3.5,-63.5 - parent: 82 - type: Transform -- uid: 8890 - type: ReinforcedWindow - components: - - pos: -7.5,-63.5 - parent: 82 - type: Transform -- uid: 8891 - type: Grille - components: - - pos: -3.5,-65.5 - parent: 82 - type: Transform -- uid: 8892 - type: WallReinforced - components: - - pos: -7.5,-66.5 - parent: 82 - type: Transform -- uid: 8893 - type: WallReinforced - components: - - pos: -3.5,-66.5 - parent: 82 - type: Transform -- uid: 8894 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-62.5 - parent: 82 - type: Transform -- uid: 8895 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-58.5 - parent: 82 - type: Transform -- uid: 8896 - type: HospitalCurtains - components: - - rot: 3.141592653589793 rad - pos: -39.5,-42.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -356244.56 - state: Opening - type: Door -- uid: 8897 - type: WallSolid - components: - - pos: 14.5,-44.5 - parent: 82 - type: Transform -- uid: 8898 - type: WallSolid - components: - - pos: 14.5,-45.5 - parent: 82 - type: Transform -- uid: 8899 - type: WallSolid - components: - - pos: 14.5,-46.5 - parent: 82 - type: Transform -- uid: 8900 - type: WallSolid - components: - - pos: 13.5,-46.5 - parent: 82 - type: Transform -- uid: 8901 - type: ReinforcedWindow - components: - - pos: -7.5,-64.5 - parent: 82 - type: Transform -- uid: 8902 - type: ReinforcedWindow - components: - - pos: -7.5,-65.5 - parent: 82 - type: Transform -- uid: 8903 - type: ReinforcedWindow - components: - - pos: -5.5,-64.5 - parent: 82 - type: Transform -- uid: 8904 - type: ReinforcedWindow - components: - - pos: -5.5,-65.5 - parent: 82 - type: Transform -- uid: 8905 - type: ReinforcedWindow - components: - - pos: -3.5,-64.5 - parent: 82 - type: Transform -- uid: 8906 - type: ReinforcedWindow - components: - - pos: -3.5,-65.5 - parent: 82 - type: Transform -- uid: 8907 - type: Grille - components: - - pos: -7.5,-57.5 - parent: 82 - type: Transform -- uid: 8908 - type: Grille - components: - - pos: -3.5,-55.5 - parent: 82 - type: Transform -- uid: 8909 - type: Grille - components: - - pos: -3.5,-56.5 - parent: 82 - type: Transform -- uid: 8910 - type: WallReinforced - components: - - pos: -7.5,-54.5 - parent: 82 - type: Transform -- uid: 8911 - type: WallReinforced - components: - - pos: -8.5,-54.5 - parent: 82 - type: Transform -- uid: 8912 - type: WallReinforced - components: - - pos: -9.5,-54.5 - parent: 82 - type: Transform -- uid: 8913 - type: WallReinforced - components: - - pos: -10.5,-54.5 - parent: 82 - type: Transform -- uid: 8914 - type: WallReinforced - components: - - pos: -11.5,-54.5 - parent: 82 - type: Transform -- uid: 8915 - type: WallReinforced - components: - - pos: -12.5,-54.5 - parent: 82 - type: Transform -- uid: 8916 - type: WallReinforced - components: - - pos: -13.5,-54.5 - parent: 82 - type: Transform -- uid: 8917 - type: WallReinforced - components: - - pos: -13.5,-51.5 - parent: 82 - type: Transform -- uid: 8918 - type: Grille - components: - - pos: -13.5,-52.5 - parent: 82 - type: Transform -- uid: 8919 - type: Grille - components: - - pos: -13.5,-53.5 - parent: 82 - type: Transform -- uid: 8920 - type: ReinforcedWindow - components: - - pos: -13.5,-52.5 - parent: 82 - type: Transform -- uid: 8921 - type: WallSolid - components: - - pos: -7.5,-52.5 - parent: 82 - type: Transform -- uid: 8922 - type: WallSolid - components: - - pos: -7.5,-53.5 - parent: 82 - type: Transform -- uid: 8923 - type: ReinforcedWindow - components: - - pos: -13.5,-53.5 - parent: 82 - type: Transform -- uid: 8924 - type: ReinforcedWindow - components: - - pos: -13.5,-48.5 - parent: 82 - type: Transform -- uid: 8925 - type: ReinforcedWindow - components: - - pos: -13.5,-49.5 - parent: 82 - type: Transform -- uid: 8926 - type: AsteroidRock - components: - - pos: -30.5,-49.5 - parent: 82 - type: Transform -- uid: 8927 - type: AsteroidRock - components: - - pos: -30.5,-50.5 - parent: 82 - type: Transform -- uid: 8928 - type: AsteroidRock - components: - - pos: -29.5,-50.5 - parent: 82 - type: Transform -- uid: 8929 - type: AsteroidRock - components: - - pos: -28.5,-50.5 - parent: 82 - type: Transform -- uid: 8930 - type: AsteroidRock - components: - - pos: -28.5,-49.5 - parent: 82 - type: Transform -- uid: 8931 - type: AsteroidRock - components: - - pos: -28.5,-48.5 - parent: 82 - type: Transform -- uid: 8932 - type: SignDirectionalBrig - components: - - pos: 53.5,-6.5 - parent: 82 - type: Transform -- uid: 8933 - type: SignSpace - components: - - pos: 46.5,53.5 - parent: 82 - type: Transform -- uid: 8934 - type: SignLaserMed - components: - - pos: 29.5,62.5 - parent: 82 - type: Transform -- uid: 8935 - type: AsteroidRock - components: - - pos: -23.5,-50.5 - parent: 82 - type: Transform -- uid: 8936 - type: AsteroidRock - components: - - pos: -22.5,-51.5 - parent: 82 - type: Transform -- uid: 8937 - type: AsteroidRock - components: - - pos: -21.5,-50.5 - parent: 82 - type: Transform -- uid: 8938 - type: AsteroidRock - components: - - pos: -21.5,-49.5 - parent: 82 - type: Transform -- uid: 8939 - type: AsteroidRock - components: - - pos: -20.5,-49.5 - parent: 82 - type: Transform -- uid: 8940 - type: AsteroidRock - components: - - pos: -30.5,-51.5 - parent: 82 - type: Transform -- uid: 8941 - type: AsteroidRock - components: - - pos: -31.5,-50.5 - parent: 82 - type: Transform -- uid: 8942 - type: AsteroidRock - components: - - pos: -31.5,-49.5 - parent: 82 - type: Transform -- uid: 8943 - type: AsteroidRock - components: - - pos: -32.5,-49.5 - parent: 82 - type: Transform -- uid: 8944 - type: AsteroidRock - components: - - pos: -33.5,-49.5 - parent: 82 - type: Transform -- uid: 8945 - type: AsteroidRock - components: - - pos: -34.5,-49.5 - parent: 82 - type: Transform -- uid: 8946 - type: AsteroidRock - components: - - pos: -34.5,-50.5 - parent: 82 - type: Transform -- uid: 8947 - type: AsteroidRock - components: - - pos: -35.5,-49.5 - parent: 82 - type: Transform -- uid: 8948 - type: AsteroidRock - components: - - pos: -35.5,-51.5 - parent: 82 - type: Transform -- uid: 8949 - type: AsteroidRock - components: - - pos: -36.5,-51.5 - parent: 82 - type: Transform -- uid: 8950 - type: AsteroidRock - components: - - pos: -36.5,-50.5 - parent: 82 - type: Transform -- uid: 8951 - type: AsteroidRock - components: - - pos: -37.5,-50.5 - parent: 82 - type: Transform -- uid: 8952 - type: AsteroidRock - components: - - pos: -38.5,-50.5 - parent: 82 - type: Transform -- uid: 8953 - type: AsteroidRock - components: - - pos: -38.5,-49.5 - parent: 82 - type: Transform -- uid: 8954 - type: AsteroidRock - components: - - pos: -37.5,-49.5 - parent: 82 - type: Transform -- uid: 8955 - type: AsteroidRock - components: - - pos: -36.5,-49.5 - parent: 82 - type: Transform -- uid: 8956 - type: AsteroidRock - components: - - pos: -32.5,-48.5 - parent: 82 - type: Transform -- uid: 8957 - type: AsteroidRock - components: - - pos: -27.5,-49.5 - parent: 82 - type: Transform -- uid: 8958 - type: AsteroidRock - components: - - pos: -27.5,-48.5 - parent: 82 - type: Transform -- uid: 8959 - type: AsteroidRock - components: - - pos: -26.5,-49.5 - parent: 82 - type: Transform -- uid: 8960 - type: AsteroidRock - components: - - pos: -26.5,-48.5 - parent: 82 - type: Transform -- uid: 8961 - type: AsteroidRock - components: - - pos: -25.5,-49.5 - parent: 82 - type: Transform -- uid: 8962 - type: AsteroidRock - components: - - pos: -25.5,-48.5 - parent: 82 - type: Transform -- uid: 8963 - type: AsteroidRock - components: - - pos: -24.5,-49.5 - parent: 82 - type: Transform -- uid: 8964 - type: AsteroidRock - components: - - pos: -24.5,-48.5 - parent: 82 - type: Transform -- uid: 8965 - type: AsteroidRock - components: - - pos: -23.5,-49.5 - parent: 82 - type: Transform -- uid: 8966 - type: AsteroidRock - components: - - pos: -23.5,-48.5 - parent: 82 - type: Transform -- uid: 8967 - type: AsteroidRock - components: - - pos: -25.5,-50.5 - parent: 82 - type: Transform -- uid: 8968 - type: AsteroidRock - components: - - pos: -26.5,-50.5 - parent: 82 - type: Transform -- uid: 8969 - type: AsteroidRock - components: - - pos: -22.5,-50.5 - parent: 82 - type: Transform -- uid: 8970 - type: AsteroidRock - components: - - pos: -22.5,-48.5 - parent: 82 - type: Transform -- uid: 8971 - type: AsteroidRock - components: - - pos: -21.5,-48.5 - parent: 82 - type: Transform -- uid: 8972 - type: Bed - components: - - pos: 9.5,-18.5 - parent: 82 - type: Transform -- uid: 8973 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 15.5,71.5 - parent: 82 - type: Transform -- uid: 8974 - type: SignDoors - components: - - pos: 46.5,19.5 - parent: 82 - type: Transform -- uid: 8975 - type: AsteroidRock - components: - - pos: -17.5,-48.5 - parent: 82 - type: Transform -- uid: 8976 - type: AsteroidRock - components: - - pos: -19.5,-49.5 - parent: 82 - type: Transform -- uid: 8977 - type: AsteroidRock - components: - - pos: -19.5,-50.5 - parent: 82 - type: Transform -- uid: 8978 - type: AsteroidRock - components: - - pos: -20.5,-50.5 - parent: 82 - type: Transform -- uid: 8979 - type: WallReinforced - components: - - pos: -3.5,-53.5 - parent: 82 - type: Transform -- uid: 8980 - type: Grille - components: - - pos: -3.5,-57.5 - parent: 82 - type: Transform -- uid: 8981 - type: ReinforcedWindow - components: - - pos: -7.5,-57.5 - parent: 82 - type: Transform -- uid: 8982 - type: ReinforcedWindow - components: - - pos: -7.5,-55.5 - parent: 82 - type: Transform -- uid: 8983 - type: Grille - components: - - pos: -7.5,-56.5 - parent: 82 - type: Transform -- uid: 8984 - type: ReinforcedWindow - components: - - pos: -3.5,-55.5 - parent: 82 - type: Transform -- uid: 8985 - type: ReinforcedWindow - components: - - pos: -7.5,-56.5 - parent: 82 - type: Transform -- uid: 8986 - type: Grille - components: - - pos: -7.5,-55.5 - parent: 82 - type: Transform -- uid: 8987 - type: ReinforcedWindow - components: - - pos: -3.5,-56.5 - parent: 82 - type: Transform -- uid: 8988 - type: ReinforcedWindow - components: - - pos: -3.5,-57.5 - parent: 82 - type: Transform -- uid: 8989 - type: WallReinforced - components: - - pos: -3.5,-54.5 - parent: 82 - type: Transform -- uid: 8990 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -4.5,-66.5 - parent: 82 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 8991 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -6.5,-66.5 - parent: 82 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 8992 - type: AirlockExternalGlass - components: - - pos: -4.5,-63.5 - parent: 82 - type: Transform -- uid: 8993 - type: ExosuitFabricator - components: - - pos: 11.5,54.5 - parent: 82 - type: Transform -- uid: 8994 - type: AtmosDeviceFanTiny - components: - - pos: -6.5,-66.5 - parent: 82 - type: Transform -- uid: 8995 - type: AtmosDeviceFanTiny - components: - - pos: -4.5,-66.5 - parent: 82 - type: Transform -- uid: 8996 - type: WallSolid - components: - - pos: 15.5,-46.5 - parent: 82 - type: Transform -- uid: 8997 - type: WallSolid - components: - - pos: 16.5,-46.5 - parent: 82 - type: Transform -- uid: 8998 - type: WallSolid - components: - - pos: 17.5,-46.5 - parent: 82 - type: Transform -- uid: 8999 - type: WallSolid - components: - - pos: 18.5,-46.5 - parent: 82 - type: Transform -- uid: 9000 - type: Grille - components: - - pos: 18.5,-41.5 - parent: 82 - type: Transform -- uid: 9001 - type: Grille - components: - - pos: 18.5,-42.5 - parent: 82 - type: Transform -- uid: 9002 - type: Grille - components: - - pos: 18.5,-45.5 - parent: 82 - type: Transform -- uid: 9003 - type: Grille - components: - - pos: 18.5,-44.5 - parent: 82 - type: Transform -- uid: 9004 - type: Window - components: - - pos: 18.5,-41.5 - parent: 82 - type: Transform -- uid: 9005 - type: Window - components: - - pos: 18.5,-42.5 - parent: 82 - type: Transform -- uid: 9006 - type: Window - components: - - pos: 18.5,-44.5 - parent: 82 - type: Transform -- uid: 9007 - type: Window - components: - - pos: 18.5,-45.5 - parent: 82 - type: Transform -- uid: 9008 - type: Bed - components: - - pos: 15.5,-41.5 - parent: 82 - type: Transform -- uid: 9009 - type: Bed - components: - - pos: 16.5,-41.5 - parent: 82 - type: Transform -- uid: 9010 - type: Bed - components: - - pos: 17.5,-41.5 - parent: 82 - type: Transform -- uid: 9011 - type: Bed - components: - - pos: 15.5,-45.5 - parent: 82 - type: Transform -- uid: 9012 - type: Bed - components: - - pos: 16.5,-45.5 - parent: 82 - type: Transform -- uid: 9013 - type: Bed - components: - - pos: 17.5,-45.5 - parent: 82 - type: Transform -- uid: 9014 - type: BedsheetSpawner - components: - - pos: 15.5,-45.5 - parent: 82 - type: Transform -- uid: 9015 - type: BedsheetSpawner - components: - - pos: 16.5,-45.5 - parent: 82 - type: Transform -- uid: 9016 - type: BedsheetSpawner - components: - - pos: 17.5,-45.5 - parent: 82 - type: Transform -- uid: 9017 - type: BedsheetSpawner - components: - - pos: 15.5,-41.5 - parent: 82 - type: Transform -- uid: 9018 - type: BedsheetSpawner - components: - - pos: 16.5,-41.5 - parent: 82 - type: Transform -- uid: 9019 - type: BedsheetSpawner - components: - - pos: 17.5,-41.5 - parent: 82 - type: Transform -- uid: 9020 - type: BedsheetSpawner - components: - - pos: 14.5,-37.5 - parent: 82 - type: Transform -- uid: 9021 - type: BedsheetSpawner - components: - - pos: 1.5,-39.5 - parent: 82 - type: Transform -- uid: 9022 - type: BedsheetSpawner - components: - - pos: 3.5,-31.5 - parent: 82 - type: Transform -- uid: 9023 - type: BedsheetSpawner - components: - - pos: 9.5,-32.5 - parent: 82 - type: Transform -- uid: 9024 - type: BedsheetSpawner - components: - - pos: 11.5,-31.5 - parent: 82 - type: Transform -- uid: 9025 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-49.5 - parent: 82 - type: Transform -- uid: 9026 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-50.5 - parent: 82 - type: Transform -- uid: 9027 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-51.5 - parent: 82 - type: Transform -- uid: 9028 - type: AirlockMaintCommandLocked - components: - - pos: 14.5,-22.5 - parent: 82 - type: Transform -- uid: 9029 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-51.5 - parent: 82 - type: Transform -- uid: 9030 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-51.5 - parent: 82 - type: Transform -- uid: 9031 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-59.5 - parent: 82 - type: Transform -- uid: 9032 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-58.5 - parent: 82 - type: Transform -- uid: 9033 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-59.5 - parent: 82 - type: Transform -- uid: 9034 - type: Grille - components: - - pos: 18.5,-48.5 - parent: 82 - type: Transform -- uid: 9035 - type: Grille - components: - - pos: 18.5,-49.5 - parent: 82 - type: Transform -- uid: 9036 - type: Window - components: - - pos: 18.5,-48.5 - parent: 82 - type: Transform -- uid: 9037 - type: Window - components: - - pos: 18.5,-49.5 - parent: 82 - type: Transform -- uid: 9038 - type: RandomPosterLegit - components: - - pos: 30.5,1.5 - parent: 82 - type: Transform -- uid: 9039 - type: RandomSpawner - components: - - pos: -44.5,23.5 - parent: 82 - type: Transform -- uid: 9040 - type: RandomSpawner - components: - - pos: -34.5,23.5 - parent: 82 - type: Transform -- uid: 9041 - type: RandomSpawner - components: - - pos: -48.5,13.5 - parent: 82 - type: Transform -- uid: 9042 - type: WetFloorSign - components: - - pos: -18.752478,-22.312683 - parent: 82 - type: Transform -- uid: 9043 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-28.5 - parent: 82 - type: Transform -- uid: 9044 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-27.5 - parent: 82 - type: Transform -- uid: 9045 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-30.5 - parent: 82 - type: Transform -- uid: 9046 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-30.5 - parent: 82 - type: Transform -- uid: 9047 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-35.5 - parent: 82 - type: Transform -- uid: 9048 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-35.5 - parent: 82 - type: Transform -- uid: 9049 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-36.5 - parent: 82 - type: Transform -- uid: 9050 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-36.5 - parent: 82 - type: Transform -- uid: 9051 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-37.5 - parent: 82 - type: Transform -- uid: 9052 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-38.5 - parent: 82 - type: Transform -- uid: 9053 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-39.5 - parent: 82 - type: Transform -- uid: 9054 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-40.5 - parent: 82 - type: Transform -- uid: 9055 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-46.5 - parent: 82 - type: Transform -- uid: 9056 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-51.5 - parent: 82 - type: Transform -- uid: 9057 - type: Autolathe - components: - - pos: 40.5,21.5 - parent: 82 - type: Transform -- uid: 9058 - type: LockerCaptainFilled - components: - - pos: 13.5,-17.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9059 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-36.5 - parent: 82 - type: Transform -- uid: 9060 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-36.5 - parent: 82 - type: Transform -- uid: 9061 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-36.5 - parent: 82 - type: Transform -- uid: 9062 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-36.5 - parent: 82 - type: Transform -- uid: 9063 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-36.5 - parent: 82 - type: Transform -- uid: 9064 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-36.5 - parent: 82 - type: Transform -- uid: 9065 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-36.5 - parent: 82 - type: Transform -- uid: 9066 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-41.5 - parent: 82 - type: Transform -- uid: 9067 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-42.5 - parent: 82 - type: Transform -- uid: 9068 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-43.5 - parent: 82 - type: Transform -- uid: 9069 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-44.5 - parent: 82 - type: Transform -- uid: 9070 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-45.5 - parent: 82 - type: Transform -- uid: 9071 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-47.5 - parent: 82 - type: Transform -- uid: 9072 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-48.5 - parent: 82 - type: Transform -- uid: 9073 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-49.5 - parent: 82 - type: Transform -- uid: 9074 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-50.5 - parent: 82 - type: Transform -- uid: 9075 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-41.5 - parent: 82 - type: Transform -- uid: 9076 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-42.5 - parent: 82 - type: Transform -- uid: 9077 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-43.5 - parent: 82 - type: Transform -- uid: 9078 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-44.5 - parent: 82 - type: Transform -- uid: 9079 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-45.5 - parent: 82 - type: Transform -- uid: 9080 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-47.5 - parent: 82 - type: Transform -- uid: 9081 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-48.5 - parent: 82 - type: Transform -- uid: 9082 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-49.5 - parent: 82 - type: Transform -- uid: 9083 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-50.5 - parent: 82 - type: Transform -- uid: 9084 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-36.5 - parent: 82 - type: Transform -- uid: 9085 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-36.5 - parent: 82 - type: Transform -- uid: 9086 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-36.5 - parent: 82 - type: Transform -- uid: 9087 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-36.5 - parent: 82 - type: Transform -- uid: 9088 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-36.5 - parent: 82 - type: Transform -- uid: 9089 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-36.5 - parent: 82 - type: Transform -- uid: 9090 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-34.5 - parent: 82 - type: Transform -- uid: 9091 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-33.5 - parent: 82 - type: Transform -- uid: 9092 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-32.5 - parent: 82 - type: Transform -- uid: 9093 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-31.5 - parent: 82 - type: Transform -- uid: 9094 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-34.5 - parent: 82 - type: Transform -- uid: 9095 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-33.5 - parent: 82 - type: Transform -- uid: 9096 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-32.5 - parent: 82 - type: Transform -- uid: 9097 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-31.5 - parent: 82 - type: Transform -- uid: 9098 - type: BoxForensicPad - components: - - pos: 39.50097,-7.3897834 - parent: 82 - type: Transform -- uid: 9099 - type: WindowReinforcedDirectional - components: - - pos: 52.5,-19.5 - parent: 82 - type: Transform -- uid: 9100 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-59.5 - parent: 82 - type: Transform -- uid: 9101 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-59.5 - parent: 82 - type: Transform -- uid: 9102 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-58.5 - parent: 82 - type: Transform -- uid: 9103 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-58.5 - parent: 82 - type: Transform -- uid: 9104 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-54.5 - parent: 82 - type: Transform -- uid: 9105 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-53.5 - parent: 82 - type: Transform -- uid: 9106 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-54.5 - parent: 82 - type: Transform -- uid: 9107 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-53.5 - parent: 82 - type: Transform -- uid: 9108 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-52.5 - parent: 82 - type: Transform -- uid: 9109 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-50.5 - parent: 82 - type: Transform -- uid: 9110 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-50.5 - parent: 82 - type: Transform -- uid: 9111 - type: MopItem - components: - - pos: -19.47632,-22.537434 - parent: 82 - type: Transform -- uid: 9112 - type: WeaponTurretSyndicateBroken - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-98.5 - parent: 82 - type: Transform -- uid: 9113 - type: AirCanister - components: - - pos: 24.5,-93.5 - parent: 82 - type: Transform -- uid: 9114 - type: AirCanister - components: - - pos: 24.5,-92.5 - parent: 82 - type: Transform -- uid: 9115 - type: AirCanister - components: - - pos: 16.5,-93.5 - parent: 82 - type: Transform -- uid: 9116 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-55.5 - parent: 82 - type: Transform -- uid: 9117 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-57.5 - parent: 82 - type: Transform -- uid: 9118 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-55.5 - parent: 82 - type: Transform -- uid: 9119 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-56.5 - parent: 82 - type: Transform -- uid: 9120 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-57.5 - parent: 82 - type: Transform -- uid: 9121 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-55.5 - parent: 82 - type: Transform -- uid: 9122 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-56.5 - parent: 82 - type: Transform -- uid: 9123 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-57.5 - parent: 82 - type: Transform -- uid: 9124 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-55.5 - parent: 82 - type: Transform -- uid: 9125 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-56.5 - parent: 82 - type: Transform -- uid: 9126 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-57.5 - parent: 82 - type: Transform -- uid: 9127 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-60.5 - parent: 82 - type: Transform -- uid: 9128 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-61.5 - parent: 82 - type: Transform -- uid: 9129 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-60.5 - parent: 82 - type: Transform -- uid: 9130 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-61.5 - parent: 82 - type: Transform -- uid: 9131 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-63.5 - parent: 82 - type: Transform -- uid: 9132 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-64.5 - parent: 82 - type: Transform -- uid: 9133 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-65.5 - parent: 82 - type: Transform -- uid: 9134 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-64.5 - parent: 82 - type: Transform -- uid: 9135 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-65.5 - parent: 82 - type: Transform -- uid: 9136 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-63.5 - parent: 82 - type: Transform -- uid: 9137 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-64.5 - parent: 82 - type: Transform -- uid: 9138 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-65.5 - parent: 82 - type: Transform -- uid: 9139 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-66.5 - parent: 82 - type: Transform -- uid: 9140 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-66.5 - parent: 82 - type: Transform -- uid: 9141 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-66.5 - parent: 82 - type: Transform -- uid: 9142 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-60.5 - parent: 82 - type: Transform -- uid: 9143 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-61.5 - parent: 82 - type: Transform -- uid: 9144 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-63.5 - parent: 82 - type: Transform -- uid: 9145 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-64.5 - parent: 82 - type: Transform -- uid: 9146 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-65.5 - parent: 82 - type: Transform -- uid: 9147 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-64.5 - parent: 82 - type: Transform -- uid: 9148 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-65.5 - parent: 82 - type: Transform -- uid: 9149 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-63.5 - parent: 82 - type: Transform -- uid: 9150 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-64.5 - parent: 82 - type: Transform -- uid: 9151 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-65.5 - parent: 82 - type: Transform -- uid: 9152 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-60.5 - parent: 82 - type: Transform -- uid: 9153 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-61.5 - parent: 82 - type: Transform -- uid: 9154 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-63.5 - parent: 82 - type: Transform -- uid: 9155 - type: AirlockExternalGlassLocked - components: - - pos: 19.5,-63.5 - parent: 82 - type: Transform -- uid: 9156 - type: AirlockExternalGlassLocked - components: - - pos: 21.5,-63.5 - parent: 82 - type: Transform -- uid: 9157 - type: AirlockExternalGlassLocked - components: - - pos: 19.5,-66.5 - parent: 82 - type: Transform -- uid: 9158 - type: AirlockExternalGlassLocked - components: - - pos: 21.5,-66.5 - parent: 82 - type: Transform -- uid: 9159 - type: AirlockCommandLocked - components: - - pos: 20.5,-58.5 - parent: 82 - type: Transform -- uid: 9160 - type: Grille - components: - - pos: 21.5,-58.5 - parent: 82 - type: Transform -- uid: 9161 - type: Grille - components: - - pos: 19.5,-58.5 - parent: 82 - type: Transform -- uid: 9162 - type: WallReinforced - components: - - pos: 22.5,-52.5 - parent: 82 - type: Transform -- uid: 9163 - type: TintedWindow - components: - - pos: 19.5,-58.5 - parent: 82 - type: Transform -- uid: 9164 - type: TintedWindow - components: - - pos: 21.5,-58.5 - parent: 82 - type: Transform -- uid: 9165 - type: Grille - components: - - pos: 0.5,-64.5 - parent: 82 - type: Transform -- uid: 9166 - type: Grille - components: - - pos: 1.5,-64.5 - parent: 82 - type: Transform -- uid: 9167 - type: Grille - components: - - pos: 2.5,-64.5 - parent: 82 - type: Transform -- uid: 9168 - type: Grille - components: - - pos: 3.5,-64.5 - parent: 82 - type: Transform -- uid: 9169 - type: Grille - components: - - pos: 4.5,-64.5 - parent: 82 - type: Transform -- uid: 9170 - type: Grille - components: - - pos: 5.5,-64.5 - parent: 82 - type: Transform -- uid: 9171 - type: Grille - components: - - pos: 6.5,-64.5 - parent: 82 - type: Transform -- uid: 9172 - type: Grille - components: - - pos: 7.5,-64.5 - parent: 82 - type: Transform -- uid: 9173 - type: Grille - components: - - pos: 8.5,-64.5 - parent: 82 - type: Transform -- uid: 9174 - type: Grille - components: - - pos: 9.5,-64.5 - parent: 82 - type: Transform -- uid: 9175 - type: Grille - components: - - pos: 10.5,-64.5 - parent: 82 - type: Transform -- uid: 9176 - type: Grille - components: - - pos: 11.5,-64.5 - parent: 82 - type: Transform -- uid: 9177 - type: Grille - components: - - pos: 12.5,-64.5 - parent: 82 - type: Transform -- uid: 9178 - type: Grille - components: - - pos: 13.5,-64.5 - parent: 82 - type: Transform -- uid: 9179 - type: Grille - components: - - pos: 14.5,-64.5 - parent: 82 - type: Transform -- uid: 9180 - type: Grille - components: - - pos: 1.5,-55.5 - parent: 82 - type: Transform -- uid: 9181 - type: Grille - components: - - pos: 2.5,-55.5 - parent: 82 - type: Transform -- uid: 9182 - type: Grille - components: - - pos: 3.5,-55.5 - parent: 82 - type: Transform -- uid: 9183 - type: Grille - components: - - pos: 4.5,-55.5 - parent: 82 - type: Transform -- uid: 9184 - type: Grille - components: - - pos: 5.5,-55.5 - parent: 82 - type: Transform -- uid: 9185 - type: Grille - components: - - pos: 6.5,-55.5 - parent: 82 - type: Transform -- uid: 9186 - type: Grille - components: - - pos: 7.5,-55.5 - parent: 82 - type: Transform -- uid: 9187 - type: Grille - components: - - pos: 8.5,-55.5 - parent: 82 - type: Transform -- uid: 9188 - type: Grille - components: - - pos: 9.5,-55.5 - parent: 82 - type: Transform -- uid: 9189 - type: Grille - components: - - pos: 10.5,-55.5 - parent: 82 - type: Transform -- uid: 9190 - type: Grille - components: - - pos: 11.5,-55.5 - parent: 82 - type: Transform -- uid: 9191 - type: Grille - components: - - pos: 12.5,-55.5 - parent: 82 - type: Transform -- uid: 9192 - type: Grille - components: - - pos: 13.5,-55.5 - parent: 82 - type: Transform -- uid: 9193 - type: Catwalk - components: - - pos: 19.5,-67.5 - parent: 82 - type: Transform -- uid: 9194 - type: Catwalk - components: - - pos: 19.5,-68.5 - parent: 82 - type: Transform -- uid: 9195 - type: Catwalk - components: - - pos: 19.5,-69.5 - parent: 82 - type: Transform -- uid: 9196 - type: Catwalk - components: - - pos: 19.5,-70.5 - parent: 82 - type: Transform -- uid: 9197 - type: Catwalk - components: - - pos: 19.5,-71.5 - parent: 82 - type: Transform -- uid: 9198 - type: Catwalk - components: - - pos: 19.5,-72.5 - parent: 82 - type: Transform -- uid: 9199 - type: Catwalk - components: - - pos: 19.5,-73.5 - parent: 82 - type: Transform -- uid: 9200 - type: Catwalk - components: - - pos: 19.5,-74.5 - parent: 82 - type: Transform -- uid: 9201 - type: Catwalk - components: - - pos: 19.5,-75.5 - parent: 82 - type: Transform -- uid: 9202 - type: Catwalk - components: - - pos: 19.5,-76.5 - parent: 82 - type: Transform -- uid: 9203 - type: Catwalk - components: - - pos: 19.5,-77.5 - parent: 82 - type: Transform -- uid: 9204 - type: Catwalk - components: - - pos: 19.5,-78.5 - parent: 82 - type: Transform -- uid: 9205 - type: Catwalk - components: - - pos: 19.5,-79.5 - parent: 82 - type: Transform -- uid: 9206 - type: WallReinforced - components: - - pos: 11.5,-84.5 - parent: 82 - type: Transform -- uid: 9207 - type: WallReinforced - components: - - pos: 11.5,-85.5 - parent: 82 - type: Transform -- uid: 9208 - type: WallReinforced - components: - - pos: 8.5,-86.5 - parent: 82 - type: Transform -- uid: 9209 - type: WallReinforced - components: - - pos: 7.5,-86.5 - parent: 82 - type: Transform -- uid: 9210 - type: WallReinforced - components: - - pos: 6.5,-86.5 - parent: 82 - type: Transform -- uid: 9211 - type: WallReinforced - components: - - pos: 26.5,-84.5 - parent: 82 - type: Transform -- uid: 9212 - type: Catwalk - components: - - pos: 21.5,-67.5 - parent: 82 - type: Transform -- uid: 9213 - type: Catwalk - components: - - pos: 21.5,-68.5 - parent: 82 - type: Transform -- uid: 9214 - type: Catwalk - components: - - pos: 21.5,-69.5 - parent: 82 - type: Transform -- uid: 9215 - type: Catwalk - components: - - pos: 21.5,-70.5 - parent: 82 - type: Transform -- uid: 9216 - type: Catwalk - components: - - pos: 21.5,-71.5 - parent: 82 - type: Transform -- uid: 9217 - type: Catwalk - components: - - pos: 21.5,-72.5 - parent: 82 - type: Transform -- uid: 9218 - type: Catwalk - components: - - pos: 21.5,-73.5 - parent: 82 - type: Transform -- uid: 9219 - type: Catwalk - components: - - pos: 21.5,-74.5 - parent: 82 - type: Transform -- uid: 9220 - type: Catwalk - components: - - pos: 21.5,-75.5 - parent: 82 - type: Transform -- uid: 9221 - type: Catwalk - components: - - pos: 21.5,-76.5 - parent: 82 - type: Transform -- uid: 9222 - type: Catwalk - components: - - pos: 21.5,-77.5 - parent: 82 - type: Transform -- uid: 9223 - type: Catwalk - components: - - pos: 21.5,-78.5 - parent: 82 - type: Transform -- uid: 9224 - type: Catwalk - components: - - pos: 21.5,-79.5 - parent: 82 - type: Transform -- uid: 9225 - type: WallReinforced - components: - - pos: 17.5,-83.5 - parent: 82 - type: Transform -- uid: 9226 - type: WallReinforced - components: - - pos: 23.5,-83.5 - parent: 82 - type: Transform -- uid: 9227 - type: WallReinforced - components: - - pos: 14.5,-83.5 - parent: 82 - type: Transform -- uid: 9228 - type: WallReinforced - components: - - pos: 14.5,-84.5 - parent: 82 - type: Transform -- uid: 9229 - type: WallReinforced - components: - - pos: 33.5,-86.5 - parent: 82 - type: Transform -- uid: 9230 - type: WallReinforced - components: - - pos: 6.5,-87.5 - parent: 82 - type: Transform -- uid: 9231 - type: WallReinforced - components: - - pos: 26.5,-83.5 - parent: 82 - type: Transform -- uid: 9232 - type: WallReinforced - components: - - pos: 34.5,-87.5 - parent: 82 - type: Transform -- uid: 9233 - type: Grille - components: - - pos: 31.5,-85.5 - parent: 82 - type: Transform -- uid: 9234 - type: Grille - components: - - pos: 10.5,-85.5 - parent: 82 - type: Transform -- uid: 9235 - type: Grille - components: - - pos: 9.5,-85.5 - parent: 82 - type: Transform -- uid: 9236 - type: Grille - components: - - pos: 13.5,-84.5 - parent: 82 - type: Transform -- uid: 9237 - type: Grille - components: - - pos: 12.5,-84.5 - parent: 82 - type: Transform -- uid: 9238 - type: Grille - components: - - pos: 16.5,-83.5 - parent: 82 - type: Transform -- uid: 9239 - type: Grille - components: - - pos: 6.5,-88.5 - parent: 82 - type: Transform -- uid: 9240 - type: Grille - components: - - pos: 15.5,-83.5 - parent: 82 - type: Transform -- uid: 9241 - type: Grille - components: - - pos: 24.5,-83.5 - parent: 82 - type: Transform -- uid: 9242 - type: Grille - components: - - pos: 6.5,-89.5 - parent: 82 - type: Transform -- uid: 9243 - type: Grille - components: - - pos: 25.5,-83.5 - parent: 82 - type: Transform -- uid: 9244 - type: Grille - components: - - pos: 6.5,-90.5 - parent: 82 - type: Transform -- uid: 9245 - type: Grille - components: - - pos: 34.5,-88.5 - parent: 82 - type: Transform -- uid: 9246 - type: Grille - components: - - pos: 34.5,-89.5 - parent: 82 - type: Transform -- uid: 9247 - type: Grille - components: - - pos: 34.5,-90.5 - parent: 82 - type: Transform -- uid: 9248 - type: Grille - components: - - pos: 6.5,-97.5 - parent: 82 - type: Transform -- uid: 9249 - type: Grille - components: - - pos: 6.5,-96.5 - parent: 82 - type: Transform -- uid: 9250 - type: Grille - components: - - pos: 6.5,-95.5 - parent: 82 - type: Transform -- uid: 9251 - type: Grille - components: - - pos: 34.5,-97.5 - parent: 82 - type: Transform -- uid: 9252 - type: Grille - components: - - pos: 34.5,-96.5 - parent: 82 - type: Transform -- uid: 9253 - type: Grille - components: - - pos: 34.5,-95.5 - parent: 82 - type: Transform -- uid: 9254 - type: Grille - components: - - pos: 29.5,-95.5 - parent: 82 - type: Transform -- uid: 9255 - type: Grille - components: - - pos: 29.5,-96.5 - parent: 82 - type: Transform -- uid: 9256 - type: Grille - components: - - pos: 29.5,-97.5 - parent: 82 - type: Transform -- uid: 9257 - type: Grille - components: - - pos: 29.5,-98.5 - parent: 82 - type: Transform -- uid: 9258 - type: Grille - components: - - pos: 11.5,-95.5 - parent: 82 - type: Transform -- uid: 9259 - type: Grille - components: - - pos: 11.5,-96.5 - parent: 82 - type: Transform -- uid: 9260 - type: Grille - components: - - pos: 11.5,-97.5 - parent: 82 - type: Transform -- uid: 9261 - type: Grille - components: - - pos: 11.5,-98.5 - parent: 82 - type: Transform -- uid: 9262 - type: Grille - components: - - pos: 13.5,-94.5 - parent: 82 - type: Transform -- uid: 9263 - type: Grille - components: - - pos: 14.5,-94.5 - parent: 82 - type: Transform -- uid: 9264 - type: WallReinforced - components: - - pos: 16.5,-94.5 - parent: 82 - type: Transform -- uid: 9265 - type: WallReinforced - components: - - pos: 15.5,-94.5 - parent: 82 - type: Transform -- uid: 9266 - type: Grille - components: - - pos: 26.5,-94.5 - parent: 82 - type: Transform -- uid: 9267 - type: Grille - components: - - pos: 27.5,-94.5 - parent: 82 - type: Transform -- uid: 9268 - type: Grille - components: - - pos: 19.5,-94.5 - parent: 82 - type: Transform -- uid: 9269 - type: Grille - components: - - pos: 20.5,-94.5 - parent: 82 - type: Transform -- uid: 9270 - type: Grille - components: - - pos: 21.5,-94.5 - parent: 82 - type: Transform -- uid: 9271 - type: Grille - components: - - pos: 18.5,-94.5 - parent: 82 - type: Transform -- uid: 9272 - type: Grille - components: - - pos: 22.5,-94.5 - parent: 82 - type: Transform -- uid: 9273 - type: Grille - components: - - pos: 12.5,-94.5 - parent: 82 - type: Transform -- uid: 9274 - type: Grille - components: - - pos: 28.5,-94.5 - parent: 82 - type: Transform -- uid: 9275 - type: WallReinforced - components: - - pos: 17.5,-94.5 - parent: 82 - type: Transform -- uid: 9276 - type: WallReinforced - components: - - pos: 23.5,-94.5 - parent: 82 - type: Transform -- uid: 9277 - type: WallReinforced - components: - - pos: 24.5,-94.5 - parent: 82 - type: Transform -- uid: 9278 - type: WallReinforced - components: - - pos: 25.5,-94.5 - parent: 82 - type: Transform -- uid: 9279 - type: WallReinforced - components: - - pos: 6.5,-98.5 - parent: 82 - type: Transform -- uid: 9280 - type: WallReinforced - components: - - pos: 6.5,-99.5 - parent: 82 - type: Transform -- uid: 9281 - type: WallReinforced - components: - - pos: 7.5,-99.5 - parent: 82 - type: Transform -- uid: 9282 - type: WallReinforced - components: - - pos: 7.5,-100.5 - parent: 82 - type: Transform -- uid: 9283 - type: WallReinforced - components: - - pos: 7.5,-101.5 - parent: 82 - type: Transform -- uid: 9284 - type: Grille - components: - - pos: 8.5,-101.5 - parent: 82 - type: Transform -- uid: 9285 - type: Grille - components: - - pos: 9.5,-101.5 - parent: 82 - type: Transform -- uid: 9286 - type: Grille - components: - - pos: 10.5,-101.5 - parent: 82 - type: Transform -- uid: 9287 - type: Grille - components: - - pos: 30.5,-101.5 - parent: 82 - type: Transform -- uid: 9288 - type: Grille - components: - - pos: 31.5,-101.5 - parent: 82 - type: Transform -- uid: 9289 - type: Grille - components: - - pos: 32.5,-101.5 - parent: 82 - type: Transform -- uid: 9290 - type: WallReinforced - components: - - pos: 34.5,-98.5 - parent: 82 - type: Transform -- uid: 9291 - type: WallReinforced - components: - - pos: 34.5,-99.5 - parent: 82 - type: Transform -- uid: 9292 - type: WallReinforced - components: - - pos: 33.5,-99.5 - parent: 82 - type: Transform -- uid: 9293 - type: WallReinforced - components: - - pos: 33.5,-100.5 - parent: 82 - type: Transform -- uid: 9294 - type: WallReinforced - components: - - pos: 33.5,-101.5 - parent: 82 - type: Transform -- uid: 9295 - type: WallReinforced - components: - - pos: 29.5,-99.5 - parent: 82 - type: Transform -- uid: 9296 - type: WallReinforced - components: - - pos: 28.5,-99.5 - parent: 82 - type: Transform -- uid: 9297 - type: WallReinforced - components: - - pos: 27.5,-99.5 - parent: 82 - type: Transform -- uid: 9298 - type: WallReinforced - components: - - pos: 26.5,-99.5 - parent: 82 - type: Transform -- uid: 9299 - type: WallReinforced - components: - - pos: 29.5,-101.5 - parent: 82 - type: Transform -- uid: 9300 - type: WallReinforced - components: - - pos: 28.5,-101.5 - parent: 82 - type: Transform -- uid: 9301 - type: WallReinforced - components: - - pos: 27.5,-101.5 - parent: 82 - type: Transform -- uid: 9302 - type: WallReinforced - components: - - pos: 26.5,-101.5 - parent: 82 - type: Transform -- uid: 9303 - type: WallReinforced - components: - - pos: 29.5,-94.5 - parent: 82 - type: Transform -- uid: 9304 - type: WallReinforced - components: - - pos: 11.5,-94.5 - parent: 82 - type: Transform -- uid: 9305 - type: WallReinforced - components: - - pos: 6.5,-91.5 - parent: 82 - type: Transform -- uid: 9306 - type: WallReinforced - components: - - pos: 6.5,-92.5 - parent: 82 - type: Transform -- uid: 9307 - type: WallReinforced - components: - - pos: 6.5,-93.5 - parent: 82 - type: Transform -- uid: 9308 - type: WallReinforced - components: - - pos: 6.5,-94.5 - parent: 82 - type: Transform -- uid: 9309 - type: WallReinforced - components: - - pos: 34.5,-91.5 - parent: 82 - type: Transform -- uid: 9310 - type: WallReinforced - components: - - pos: 34.5,-92.5 - parent: 82 - type: Transform -- uid: 9311 - type: WallReinforced - components: - - pos: 34.5,-93.5 - parent: 82 - type: Transform -- uid: 9312 - type: WallReinforced - components: - - pos: 34.5,-94.5 - parent: 82 - type: Transform -- uid: 9313 - type: WallReinforced - components: - - pos: 30.5,-94.5 - parent: 82 - type: Transform -- uid: 9314 - type: WallReinforced - components: - - pos: 33.5,-94.5 - parent: 82 - type: Transform -- uid: 9315 - type: WallReinforced - components: - - pos: 14.5,-85.5 - parent: 82 - type: Transform -- uid: 9316 - type: WallReinforced - components: - - pos: 14.5,-86.5 - parent: 82 - type: Transform -- uid: 9317 - type: WallReinforced - components: - - pos: 14.5,-87.5 - parent: 82 - type: Transform -- uid: 9318 - type: WallReinforced - components: - - pos: 26.5,-85.5 - parent: 82 - type: Transform -- uid: 9319 - type: WallReinforced - components: - - pos: 26.5,-86.5 - parent: 82 - type: Transform -- uid: 9320 - type: WallReinforced - components: - - pos: 26.5,-87.5 - parent: 82 - type: Transform -- uid: 9321 - type: WallReinforced - components: - - pos: 14.5,-90.5 - parent: 82 - type: Transform -- uid: 9322 - type: WallReinforced - components: - - pos: 14.5,-91.5 - parent: 82 - type: Transform -- uid: 9323 - type: WallReinforced - components: - - pos: 15.5,-91.5 - parent: 82 - type: Transform -- uid: 9324 - type: WallReinforced - components: - - pos: 15.5,-92.5 - parent: 82 - type: Transform -- uid: 9325 - type: WallReinforced - components: - - pos: 15.5,-93.5 - parent: 82 - type: Transform -- uid: 9326 - type: WallReinforced - components: - - pos: 26.5,-90.5 - parent: 82 - type: Transform -- uid: 9327 - type: WallReinforced - components: - - pos: 26.5,-91.5 - parent: 82 - type: Transform -- uid: 9328 - type: WallReinforced - components: - - pos: 25.5,-91.5 - parent: 82 - type: Transform -- uid: 9329 - type: WallReinforced - components: - - pos: 25.5,-92.5 - parent: 82 - type: Transform -- uid: 9330 - type: WallReinforced - components: - - pos: 25.5,-93.5 - parent: 82 - type: Transform -- uid: 9331 - type: WallReinforced - components: - - pos: 16.5,-91.5 - parent: 82 - type: Transform -- uid: 9332 - type: WallReinforced - components: - - pos: 17.5,-91.5 - parent: 82 - type: Transform -- uid: 9333 - type: WallReinforced - components: - - pos: 17.5,-90.5 - parent: 82 - type: Transform -- uid: 9334 - type: WallReinforced - components: - - pos: 17.5,-89.5 - parent: 82 - type: Transform -- uid: 9335 - type: WallReinforced - components: - - pos: 17.5,-88.5 - parent: 82 - type: Transform -- uid: 9336 - type: Grille - components: - - pos: 18.5,-88.5 - parent: 82 - type: Transform -- uid: 9337 - type: Grille - components: - - pos: 19.5,-88.5 - parent: 82 - type: Transform -- uid: 9338 - type: Grille - components: - - pos: 21.5,-88.5 - parent: 82 - type: Transform -- uid: 9339 - type: Grille - components: - - pos: 22.5,-88.5 - parent: 82 - type: Transform -- uid: 9340 - type: WallReinforced - components: - - pos: 23.5,-88.5 - parent: 82 - type: Transform -- uid: 9341 - type: WallReinforced - components: - - pos: 23.5,-89.5 - parent: 82 - type: Transform -- uid: 9342 - type: WallReinforced - components: - - pos: 23.5,-90.5 - parent: 82 - type: Transform -- uid: 9343 - type: WallReinforced - components: - - pos: 23.5,-91.5 - parent: 82 - type: Transform -- uid: 9344 - type: WallReinforced - components: - - pos: 24.5,-91.5 - parent: 82 - type: Transform -- uid: 9345 - type: WallReinforced - components: - - pos: 13.5,-90.5 - parent: 82 - type: Transform -- uid: 9346 - type: WallReinforced - components: - - pos: 11.5,-90.5 - parent: 82 - type: Transform -- uid: 9347 - type: WallReinforced - components: - - pos: 11.5,-91.5 - parent: 82 - type: Transform -- uid: 9348 - type: WallReinforced - components: - - pos: 11.5,-92.5 - parent: 82 - type: Transform -- uid: 9349 - type: WallReinforced - components: - - pos: 11.5,-93.5 - parent: 82 - type: Transform -- uid: 9350 - type: WallReinforced - components: - - pos: 7.5,-94.5 - parent: 82 - type: Transform -- uid: 9351 - type: WallReinforced - components: - - pos: 10.5,-94.5 - parent: 82 - type: Transform -- uid: 9352 - type: WallReinforced - components: - - pos: 27.5,-90.5 - parent: 82 - type: Transform -- uid: 9353 - type: WallReinforced - components: - - pos: 29.5,-90.5 - parent: 82 - type: Transform -- uid: 9354 - type: WallReinforced - components: - - pos: 29.5,-91.5 - parent: 82 - type: Transform -- uid: 9355 - type: WallReinforced - components: - - pos: 29.5,-92.5 - parent: 82 - type: Transform -- uid: 9356 - type: WallReinforced - components: - - pos: 29.5,-93.5 - parent: 82 - type: Transform -- uid: 9357 - type: GeneratorPlasma - components: - - pos: 14.5,-93.5 - parent: 82 - type: Transform -- uid: 9358 - type: GeneratorPlasma - components: - - pos: 14.5,-92.5 - parent: 82 - type: Transform -- uid: 9359 - type: GeneratorPlasma - components: - - pos: 26.5,-93.5 - parent: 82 - type: Transform -- uid: 9360 - type: GeneratorPlasma - components: - - pos: 26.5,-92.5 - parent: 82 - type: Transform -- uid: 9361 - type: SMESBasic - components: - - pos: 13.5,-91.5 - parent: 82 - type: Transform -- uid: 9362 - type: SMESBasic - components: - - pos: 27.5,-91.5 - parent: 82 - type: Transform -- uid: 9363 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-82.5 - parent: 82 - type: Transform -- uid: 9364 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-83.5 - parent: 82 - type: Transform -- uid: 9365 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-83.5 - parent: 82 - type: Transform -- uid: 9366 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-81.5 - parent: 82 - type: Transform -- uid: 9367 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-82.5 - parent: 82 - type: Transform -- uid: 9368 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-83.5 - parent: 82 - type: Transform -- uid: 9369 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-81.5 - parent: 82 - type: Transform -- uid: 9370 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-82.5 - parent: 82 - type: Transform -- uid: 9371 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-83.5 - parent: 82 - type: Transform -- uid: 9372 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-83.5 - parent: 82 - type: Transform -- uid: 9373 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-83.5 - parent: 82 - type: Transform -- uid: 9374 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-83.5 - parent: 82 - type: Transform -- uid: 9375 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-83.5 - parent: 82 - type: Transform -- uid: 9376 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-84.5 - parent: 82 - type: Transform -- uid: 9377 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-84.5 - parent: 82 - type: Transform -- uid: 9378 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-85.5 - parent: 82 - type: Transform -- uid: 9379 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-85.5 - parent: 82 - type: Transform -- uid: 9380 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-84.5 - parent: 82 - type: Transform -- uid: 9381 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-84.5 - parent: 82 - type: Transform -- uid: 9382 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-85.5 - parent: 82 - type: Transform -- uid: 9383 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-85.5 - parent: 82 - type: Transform -- uid: 9384 - type: AirlockExternalGlassLocked - components: - - pos: -44.5,16.5 - parent: 82 - type: Transform -- uid: 9385 - type: AsteroidRock - components: - - pos: -45.5,13.5 - parent: 82 - type: Transform -- uid: 9386 - type: ReinforcedWindow - components: - - pos: -51.5,-12.5 - parent: 82 - type: Transform -- uid: 9387 - type: ReinforcedWindow - components: - - pos: -50.5,-12.5 - parent: 82 - type: Transform -- uid: 9388 - type: ReinforcedWindow - components: - - pos: -47.5,10.5 - parent: 82 - type: Transform -- uid: 9389 - type: ReinforcedWindow - components: - - pos: -47.5,11.5 - parent: 82 - type: Transform -- uid: 9390 - type: Grille - components: - - pos: -47.5,11.5 - parent: 82 - type: Transform -- uid: 9391 - type: Grille - components: - - pos: -47.5,10.5 - parent: 82 - type: Transform -- uid: 9392 - type: AirlockExternalGlassLocked - components: - - pos: -46.5,16.5 - parent: 82 - type: Transform -- uid: 9393 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-88.5 - parent: 82 - type: Transform -- uid: 9394 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-89.5 - parent: 82 - type: Transform -- uid: 9395 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-90.5 - parent: 82 - type: Transform -- uid: 9396 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-95.5 - parent: 82 - type: Transform -- uid: 9397 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-96.5 - parent: 82 - type: Transform -- uid: 9398 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-88.5 - parent: 82 - type: Transform -- uid: 9399 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-97.5 - parent: 82 - type: Transform -- uid: 9400 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-101.5 - parent: 82 - type: Transform -- uid: 9401 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-101.5 - parent: 82 - type: Transform -- uid: 9402 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-101.5 - parent: 82 - type: Transform -- uid: 9403 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-98.5 - parent: 82 - type: Transform -- uid: 9404 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-97.5 - parent: 82 - type: Transform -- uid: 9405 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-96.5 - parent: 82 - type: Transform -- uid: 9406 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-95.5 - parent: 82 - type: Transform -- uid: 9407 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-94.5 - parent: 82 - type: Transform -- uid: 9408 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-94.5 - parent: 82 - type: Transform -- uid: 9409 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-94.5 - parent: 82 - type: Transform -- uid: 9410 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-94.5 - parent: 82 - type: Transform -- uid: 9411 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-94.5 - parent: 82 - type: Transform -- uid: 9412 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-94.5 - parent: 82 - type: Transform -- uid: 9413 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-94.5 - parent: 82 - type: Transform -- uid: 9414 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-94.5 - parent: 82 - type: Transform -- uid: 9415 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-94.5 - parent: 82 - type: Transform -- uid: 9416 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-94.5 - parent: 82 - type: Transform -- uid: 9417 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-94.5 - parent: 82 - type: Transform -- uid: 9418 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-95.5 - parent: 82 - type: Transform -- uid: 9419 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-96.5 - parent: 82 - type: Transform -- uid: 9420 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-97.5 - parent: 82 - type: Transform -- uid: 9421 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-98.5 - parent: 82 - type: Transform -- uid: 9422 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-101.5 - parent: 82 - type: Transform -- uid: 9423 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-101.5 - parent: 82 - type: Transform -- uid: 9424 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-101.5 - parent: 82 - type: Transform -- uid: 9425 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-97.5 - parent: 82 - type: Transform -- uid: 9426 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-96.5 - parent: 82 - type: Transform -- uid: 9427 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-95.5 - parent: 82 - type: Transform -- uid: 9428 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-90.5 - parent: 82 - type: Transform -- uid: 9429 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-89.5 - parent: 82 - type: Transform -- uid: 9430 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-88.5 - parent: 82 - type: Transform -- uid: 9431 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-88.5 - parent: 82 - type: Transform -- uid: 9432 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-88.5 - parent: 82 - type: Transform -- uid: 9433 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-88.5 - parent: 82 - type: Transform -- uid: 9434 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-81.5 - parent: 82 - type: Transform -- uid: 9435 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-82.5 - parent: 82 - type: Transform -- uid: 9436 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-98.5 - parent: 82 - type: Transform -- uid: 9437 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-99.5 - parent: 82 - type: Transform -- uid: 9438 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-98.5 - parent: 82 - type: Transform -- uid: 9439 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-98.5 - parent: 82 - type: Transform -- uid: 9440 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-98.5 - parent: 82 - type: Transform -- uid: 9441 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-98.5 - parent: 82 - type: Transform -- uid: 9442 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-101.5 - parent: 82 - type: Transform -- uid: 9443 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-102.5 - parent: 82 - type: Transform -- uid: 9444 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-106.5 - parent: 82 - type: Transform -- uid: 9445 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-107.5 - parent: 82 - type: Transform -- uid: 9446 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-107.5 - parent: 82 - type: Transform -- uid: 9447 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-107.5 - parent: 82 - type: Transform -- uid: 9448 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-107.5 - parent: 82 - type: Transform -- uid: 9449 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-106.5 - parent: 82 - type: Transform -- uid: 9450 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-101.5 - parent: 82 - type: Transform -- uid: 9451 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-102.5 - parent: 82 - type: Transform -- uid: 9452 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-98.5 - parent: 82 - type: Transform -- uid: 9453 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-98.5 - parent: 82 - type: Transform -- uid: 9454 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-98.5 - parent: 82 - type: Transform -- uid: 9455 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-98.5 - parent: 82 - type: Transform -- uid: 9456 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-98.5 - parent: 82 - type: Transform -- uid: 9457 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-98.5 - parent: 82 - type: Transform -- uid: 9458 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-103.5 - parent: 82 - type: Transform -- uid: 9459 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-104.5 - parent: 82 - type: Transform -- uid: 9460 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-105.5 - parent: 82 - type: Transform -- uid: 9461 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-107.5 - parent: 82 - type: Transform -- uid: 9462 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-107.5 - parent: 82 - type: Transform -- uid: 9463 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-107.5 - parent: 82 - type: Transform -- uid: 9464 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-107.5 - parent: 82 - type: Transform -- uid: 9465 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-107.5 - parent: 82 - type: Transform -- uid: 9466 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-107.5 - parent: 82 - type: Transform -- uid: 9467 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-107.5 - parent: 82 - type: Transform -- uid: 9468 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-103.5 - parent: 82 - type: Transform -- uid: 9469 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-104.5 - parent: 82 - type: Transform -- uid: 9470 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-105.5 - parent: 82 - type: Transform -- uid: 9471 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-103.5 - parent: 82 - type: Transform -- uid: 9472 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-104.5 - parent: 82 - type: Transform -- uid: 9473 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-105.5 - parent: 82 - type: Transform -- uid: 9474 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-107.5 - parent: 82 - type: Transform -- uid: 9475 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-107.5 - parent: 82 - type: Transform -- uid: 9476 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-107.5 - parent: 82 - type: Transform -- uid: 9477 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-107.5 - parent: 82 - type: Transform -- uid: 9478 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-98.5 - parent: 82 - type: Transform -- uid: 9479 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-98.5 - parent: 82 - type: Transform -- uid: 9480 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-98.5 - parent: 82 - type: Transform -- uid: 9481 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-103.5 - parent: 82 - type: Transform -- uid: 9482 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-104.5 - parent: 82 - type: Transform -- uid: 9483 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-105.5 - parent: 82 - type: Transform -- uid: 9484 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-98.5 - parent: 82 - type: Transform -- uid: 9485 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-98.5 - parent: 82 - type: Transform -- uid: 9486 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-98.5 - parent: 82 - type: Transform -- uid: 9487 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-104.5 - parent: 82 - type: Transform -- uid: 9488 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-104.5 - parent: 82 - type: Transform -- uid: 9489 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-104.5 - parent: 82 - type: Transform -- uid: 9490 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-103.5 - parent: 82 - type: Transform -- uid: 9491 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-103.5 - parent: 82 - type: Transform -- uid: 9492 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-101.5 - parent: 82 - type: Transform -- uid: 9493 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-101.5 - parent: 82 - type: Transform -- uid: 9494 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-101.5 - parent: 82 - type: Transform -- uid: 9495 - type: WeaponTurretSyndicateBroken - components: - - pos: 24.5,-106.5 - parent: 82 - type: Transform -- uid: 9496 - type: WeaponTurretSyndicateBroken - components: - - pos: 33.5,-98.5 - parent: 82 - type: Transform -- uid: 9497 - type: ComputerFrame - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-90.5 - parent: 82 - type: Transform -- uid: 9498 - type: ComputerFrame - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-93.5 - parent: 82 - type: Transform -- uid: 9499 - type: MachineFrame - components: - - pos: 10.5,-92.5 - parent: 82 - type: Transform -- uid: 9500 - type: MachineFrame - components: - - pos: 13.5,-85.5 - parent: 82 - type: Transform -- uid: 9501 - type: MachineFrame - components: - - pos: 30.5,-86.5 - parent: 82 - type: Transform -- uid: 9502 - type: UnfinishedMachineFrame - components: - - pos: 27.5,-85.5 - parent: 82 - type: Transform -- uid: 9503 - type: UnfinishedMachineFrame - components: - - pos: 10.5,-86.5 - parent: 82 - type: Transform -- uid: 9504 - type: UnfinishedMachineFrame - components: - - pos: 10.5,-91.5 - parent: 82 - type: Transform -- uid: 9505 - type: UnfinishedMachineFrame - components: - - pos: 30.5,-92.5 - parent: 82 - type: Transform -- uid: 9506 - type: UnfinishedMachineFrame - components: - - pos: 30.5,-91.5 - parent: 82 - type: Transform -- uid: 9507 - type: TablePlasmaGlass - components: - - pos: 11.5,-86.5 - parent: 82 - type: Transform -- uid: 9508 - type: TablePlasmaGlass - components: - - pos: 29.5,-86.5 - parent: 82 - type: Transform -- uid: 9509 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: 20.5,16.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9510 - type: GasPipeFourway - components: - - pos: 21.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9511 - type: TablePlasmaGlass - components: - - pos: 19.5,-106.5 - parent: 82 - type: Transform -- uid: 9512 - type: TablePlasmaGlass - components: - - pos: 20.5,-106.5 - parent: 82 - type: Transform -- uid: 9513 - type: TablePlasmaGlass - components: - - pos: 21.5,-106.5 - parent: 82 - type: Transform -- uid: 9514 - type: Grille - components: - - pos: 13.5,-113.5 - parent: 82 - type: Transform -- uid: 9515 - type: Grille - components: - - pos: 16.5,-113.5 - parent: 82 - type: Transform -- uid: 9516 - type: Grille - components: - - pos: 15.5,-113.5 - parent: 82 - type: Transform -- uid: 9517 - type: Grille - components: - - pos: 12.5,-113.5 - parent: 82 - type: Transform -- uid: 9518 - type: Grille - components: - - pos: 14.5,-113.5 - parent: 82 - type: Transform -- uid: 9519 - type: Grille - components: - - pos: 17.5,-113.5 - parent: 82 - type: Transform -- uid: 9520 - type: Grille - components: - - pos: 18.5,-113.5 - parent: 82 - type: Transform -- uid: 9521 - type: Grille - components: - - pos: 19.5,-113.5 - parent: 82 - type: Transform -- uid: 9522 - type: Grille - components: - - pos: 20.5,-113.5 - parent: 82 - type: Transform -- uid: 9523 - type: AirlockCommandGlassLocked - components: - - pos: 14.5,-89.5 - parent: 82 - type: Transform -- uid: 9524 - type: AirlockCommandGlassLocked - components: - - pos: 26.5,-88.5 - parent: 82 - type: Transform -- uid: 9525 - type: Grille - components: - - pos: 23.5,-113.5 - parent: 82 - type: Transform -- uid: 9526 - type: Grille - components: - - pos: 24.5,-113.5 - parent: 82 - type: Transform -- uid: 9527 - type: Grille - components: - - pos: 25.5,-113.5 - parent: 82 - type: Transform -- uid: 9528 - type: Grille - components: - - pos: 26.5,-113.5 - parent: 82 - type: Transform -- uid: 9529 - type: Grille - components: - - pos: 27.5,-113.5 - parent: 82 - type: Transform -- uid: 9530 - type: Grille - components: - - pos: 28.5,-113.5 - parent: 82 - type: Transform -- uid: 9531 - type: Grille - components: - - pos: 4.5,-110.5 - parent: 82 - type: Transform -- uid: 9532 - type: Grille - components: - - pos: 5.5,-110.5 - parent: 82 - type: Transform -- uid: 9533 - type: Grille - components: - - pos: 6.5,-110.5 - parent: 82 - type: Transform -- uid: 9534 - type: Grille - components: - - pos: 9.5,-110.5 - parent: 82 - type: Transform -- uid: 9535 - type: AirlockCommandGlassLocked - components: - - pos: 26.5,-89.5 - parent: 82 - type: Transform -- uid: 9536 - type: Grille - components: - - pos: 11.5,-110.5 - parent: 82 - type: Transform -- uid: 9537 - type: Grille - components: - - pos: 12.5,-110.5 - parent: 82 - type: Transform -- uid: 9538 - type: Grille - components: - - pos: 13.5,-110.5 - parent: 82 - type: Transform -- uid: 9539 - type: AirlockCommandGlassLocked - components: - - pos: 14.5,-88.5 - parent: 82 - type: Transform -- uid: 9540 - type: AirlockCommandGlassLocked - components: - - pos: 20.5,-88.5 - parent: 82 - type: Transform -- uid: 9541 - type: Grille - components: - - pos: 16.5,-110.5 - parent: 82 - type: Transform -- uid: 9542 - type: Grille - components: - - pos: 17.5,-110.5 - parent: 82 - type: Transform -- uid: 9543 - type: Grille - components: - - pos: 18.5,-110.5 - parent: 82 - type: Transform -- uid: 9544 - type: Grille - components: - - pos: 19.5,-110.5 - parent: 82 - type: Transform -- uid: 9545 - type: Grille - components: - - pos: 20.5,-110.5 - parent: 82 - type: Transform -- uid: 9546 - type: Grille - components: - - pos: 21.5,-110.5 - parent: 82 - type: Transform -- uid: 9547 - type: Grille - components: - - pos: 22.5,-110.5 - parent: 82 - type: Transform -- uid: 9548 - type: Grille - components: - - pos: 23.5,-110.5 - parent: 82 - type: Transform -- uid: 9549 - type: Grille - components: - - pos: 24.5,-110.5 - parent: 82 - type: Transform -- uid: 9550 - type: HighSecCommandLocked - components: - - pos: 11.5,-100.5 - parent: 82 - type: Transform -- uid: 9551 - type: Grille - components: - - pos: 26.5,-110.5 - parent: 82 - type: Transform -- uid: 9552 - type: Grille - components: - - pos: 27.5,-110.5 - parent: 82 - type: Transform -- uid: 9553 - type: Grille - components: - - pos: 28.5,-110.5 - parent: 82 - type: Transform -- uid: 9554 - type: Grille - components: - - pos: 29.5,-110.5 - parent: 82 - type: Transform -- uid: 9555 - type: Grille - components: - - pos: 30.5,-110.5 - parent: 82 - type: Transform -- uid: 9556 - type: AirlockExternalGlassLocked - components: - - pos: 19.5,-83.5 - parent: 82 - type: Transform -- uid: 9557 - type: Grille - components: - - pos: 32.5,-110.5 - parent: 82 - type: Transform -- uid: 9558 - type: HighSecCommandLocked - components: - - pos: 8.5,-94.5 - parent: 82 - type: Transform -- uid: 9559 - type: HighSecCommandLocked - components: - - pos: 9.5,-94.5 - parent: 82 - type: Transform -- uid: 9560 - type: Grille - components: - - pos: 35.5,-110.5 - parent: 82 - type: Transform -- uid: 9561 - type: Grille - components: - - pos: 36.5,-110.5 - parent: 82 - type: Transform -- uid: 9562 - type: HighSecCommandLocked - components: - - pos: 31.5,-94.5 - parent: 82 - type: Transform -- uid: 9563 - type: HighSecCommandLocked - components: - - pos: 32.5,-94.5 - parent: 82 - type: Transform -- uid: 9564 - type: Grille - components: - - pos: 36.5,-107.5 - parent: 82 - type: Transform -- uid: 9565 - type: Grille - components: - - pos: 36.5,-106.5 - parent: 82 - type: Transform -- uid: 9566 - type: Grille - components: - - pos: 36.5,-105.5 - parent: 82 - type: Transform -- uid: 9567 - type: Grille - components: - - pos: 36.5,-104.5 - parent: 82 - type: Transform -- uid: 9568 - type: AirlockExternalGlassLocked - components: - - pos: 21.5,-83.5 - parent: 82 - type: Transform -- uid: 9569 - type: Grille - components: - - pos: 36.5,-102.5 - parent: 82 - type: Transform -- uid: 9570 - type: Grille - components: - - pos: 36.5,-101.5 - parent: 82 - type: Transform -- uid: 9571 - type: Grille - components: - - pos: 37.5,-101.5 - parent: 82 - type: Transform -- uid: 9572 - type: Grille - components: - - pos: 37.5,-100.5 - parent: 82 - type: Transform -- uid: 9573 - type: Grille - components: - - pos: 37.5,-99.5 - parent: 82 - type: Transform -- uid: 9574 - type: Grille - components: - - pos: 37.5,-98.5 - parent: 82 - type: Transform -- uid: 9575 - type: AirlockExternalGlassLocked - components: - - pos: 19.5,-80.5 - parent: 82 - type: Transform -- uid: 9576 - type: AirlockExternalGlassLocked - components: - - pos: 21.5,-80.5 - parent: 82 - type: Transform -- uid: 9577 - type: Grille - components: - - pos: 37.5,-95.5 - parent: 82 - type: Transform -- uid: 9578 - type: Grille - components: - - pos: 37.5,-94.5 - parent: 82 - type: Transform -- uid: 9579 - type: Grille - components: - - pos: 37.5,-93.5 - parent: 82 - type: Transform -- uid: 9580 - type: Grille - components: - - pos: 37.5,-92.5 - parent: 82 - type: Transform -- uid: 9581 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-104.5 - parent: 82 - type: Transform -- uid: 9582 - type: Grille - components: - - pos: 37.5,-90.5 - parent: 82 - type: Transform -- uid: 9583 - type: Grille - components: - - pos: 37.5,-89.5 - parent: 82 - type: Transform -- uid: 9584 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-104.5 - parent: 82 - type: Transform -- uid: 9585 - type: Grille - components: - - pos: 37.5,-87.5 - parent: 82 - type: Transform -- uid: 9586 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 3.5,-88.5 - parent: 82 - type: Transform -- uid: 9587 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 6.5,-83.5 - parent: 82 - type: Transform -- uid: 9588 - type: Grille - components: - - pos: 37.5,-84.5 - parent: 82 - type: Transform -- uid: 9589 - type: Grille - components: - - pos: 37.5,-83.5 - parent: 82 - type: Transform -- uid: 9590 - type: Grille - components: - - pos: 36.5,-83.5 - parent: 82 - type: Transform -- uid: 9591 - type: Grille - components: - - pos: 35.5,-83.5 - parent: 82 - type: Transform -- uid: 9592 - type: Grille - components: - - pos: 34.5,-83.5 - parent: 82 - type: Transform -- uid: 9593 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 36.5,-108.5 - parent: 82 - type: Transform -- uid: 9594 - type: Grille - components: - - pos: 32.5,-83.5 - parent: 82 - type: Transform -- uid: 9595 - type: Grille - components: - - pos: 32.5,-82.5 - parent: 82 - type: Transform -- uid: 9596 - type: Grille - components: - - pos: 31.5,-82.5 - parent: 82 - type: Transform -- uid: 9597 - type: Grille - components: - - pos: 30.5,-82.5 - parent: 82 - type: Transform -- uid: 9598 - type: Grille - components: - - pos: 29.5,-82.5 - parent: 82 - type: Transform -- uid: 9599 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-110.5 - parent: 82 - type: Transform -- uid: 9600 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-103.5 - parent: 82 - type: Transform -- uid: 9601 - type: Grille - components: - - pos: 27.5,-81.5 - parent: 82 - type: Transform -- uid: 9602 - type: Grille - components: - - pos: 26.5,-81.5 - parent: 82 - type: Transform -- uid: 9603 - type: Grille - components: - - pos: 26.5,-80.5 - parent: 82 - type: Transform -- uid: 9604 - type: Grille - components: - - pos: 25.5,-80.5 - parent: 82 - type: Transform -- uid: 9605 - type: Grille - components: - - pos: 24.5,-80.5 - parent: 82 - type: Transform -- uid: 9606 - type: Grille - components: - - pos: 23.5,-80.5 - parent: 82 - type: Transform -- uid: 9607 - type: Grille - components: - - pos: 17.5,-80.5 - parent: 82 - type: Transform -- uid: 9608 - type: Grille - components: - - pos: 16.5,-80.5 - parent: 82 - type: Transform -- uid: 9609 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-91.5 - parent: 82 - type: Transform -- uid: 9610 - type: Grille - components: - - pos: 14.5,-80.5 - parent: 82 - type: Transform -- uid: 9611 - type: Grille - components: - - pos: 14.5,-81.5 - parent: 82 - type: Transform -- uid: 9612 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-83.5 - parent: 82 - type: Transform -- uid: 9613 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-82.5 - parent: 82 - type: Transform -- uid: 9614 - type: Grille - components: - - pos: 11.5,-81.5 - parent: 82 - type: Transform -- uid: 9615 - type: Grille - components: - - pos: 11.5,-82.5 - parent: 82 - type: Transform -- uid: 9616 - type: Grille - components: - - pos: 10.5,-82.5 - parent: 82 - type: Transform -- uid: 9617 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-80.5 - parent: 82 - type: Transform -- uid: 9618 - type: Grille - components: - - pos: 8.5,-82.5 - parent: 82 - type: Transform -- uid: 9619 - type: Grille - components: - - pos: 8.5,-83.5 - parent: 82 - type: Transform -- uid: 9620 - type: Grille - components: - - pos: 7.5,-83.5 - parent: 82 - type: Transform -- uid: 9621 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-95.5 - parent: 82 - type: Transform -- uid: 9622 - type: Grille - components: - - pos: 5.5,-83.5 - parent: 82 - type: Transform -- uid: 9623 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-113.5 - parent: 82 - type: Transform -- uid: 9624 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-110.5 - parent: 82 - type: Transform -- uid: 9625 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-110.5 - parent: 82 - type: Transform -- uid: 9626 - type: Grille - components: - - pos: 3.5,-85.5 - parent: 82 - type: Transform -- uid: 9627 - type: Grille - components: - - pos: 3.5,-86.5 - parent: 82 - type: Transform -- uid: 9628 - type: Grille - components: - - pos: 3.5,-87.5 - parent: 82 - type: Transform -- uid: 9629 - type: GrilleBroken - components: - - pos: 28.5,-107.5 - parent: 82 - type: Transform -- uid: 9630 - type: GrilleBroken - components: - - pos: 31.5,-104.5 - parent: 82 - type: Transform -- uid: 9631 - type: Grille - components: - - pos: 3.5,-90.5 - parent: 82 - type: Transform -- uid: 9632 - type: Grille - components: - - pos: 3.5,-91.5 - parent: 82 - type: Transform -- uid: 9633 - type: Grille - components: - - pos: 3.5,-92.5 - parent: 82 - type: Transform -- uid: 9634 - type: Grille - components: - - pos: 3.5,-93.5 - parent: 82 - type: Transform -- uid: 9635 - type: Grille - components: - - pos: 3.5,-94.5 - parent: 82 - type: Transform -- uid: 9636 - type: GrilleBroken - components: - - pos: 37.5,-97.5 - parent: 82 - type: Transform -- uid: 9637 - type: Grille - components: - - pos: 3.5,-96.5 - parent: 82 - type: Transform -- uid: 9638 - type: Grille - components: - - pos: 3.5,-97.5 - parent: 82 - type: Transform -- uid: 9639 - type: Grille - components: - - pos: 3.5,-98.5 - parent: 82 - type: Transform -- uid: 9640 - type: GrilleBroken - components: - - pos: 37.5,-86.5 - parent: 82 - type: Transform -- uid: 9641 - type: GrilleBroken - components: - - pos: 29.5,-81.5 - parent: 82 - type: Transform -- uid: 9642 - type: Grille - components: - - pos: 3.5,-101.5 - parent: 82 - type: Transform -- uid: 9643 - type: Grille - components: - - pos: 4.5,-101.5 - parent: 82 - type: Transform -- uid: 9644 - type: Grille - components: - - pos: 4.5,-102.5 - parent: 82 - type: Transform -- uid: 9645 - type: Grille - components: - - pos: 4.5,-103.5 - parent: 82 - type: Transform -- uid: 9646 - type: Grille - components: - - pos: 4.5,-104.5 - parent: 82 - type: Transform -- uid: 9647 - type: Grille - components: - - pos: 4.5,-105.5 - parent: 82 - type: Transform -- uid: 9648 - type: Grille - components: - - pos: 4.5,-106.5 - parent: 82 - type: Transform -- uid: 9649 - type: Grille - components: - - pos: 4.5,-107.5 - parent: 82 - type: Transform -- uid: 9650 - type: GrilleBroken - components: - - pos: 4.5,-108.5 - parent: 82 - type: Transform -- uid: 9651 - type: Grille - components: - - pos: 4.5,-109.5 - parent: 82 - type: Transform -- uid: 9652 - type: Grille - components: - - pos: 5.5,-104.5 - parent: 82 - type: Transform -- uid: 9653 - type: GrilleBroken - components: - - pos: 13.5,-81.5 - parent: 82 - type: Transform -- uid: 9654 - type: Grille - components: - - pos: 7.5,-104.5 - parent: 82 - type: Transform -- uid: 9655 - type: Grille - components: - - pos: 8.5,-104.5 - parent: 82 - type: Transform -- uid: 9656 - type: GrilleBroken - components: - - pos: 3.5,-84.5 - parent: 82 - type: Transform -- uid: 9657 - type: GrilleBroken - components: - - pos: 3.5,-100.5 - parent: 82 - type: Transform -- uid: 9658 - type: Grille - components: - - pos: 11.5,-104.5 - parent: 82 - type: Transform -- uid: 9659 - type: Grille - components: - - pos: 12.5,-104.5 - parent: 82 - type: Transform -- uid: 9660 - type: Grille - components: - - pos: 12.5,-105.5 - parent: 82 - type: Transform -- uid: 9661 - type: Grille - components: - - pos: 12.5,-106.5 - parent: 82 - type: Transform -- uid: 9662 - type: Grille - components: - - pos: 12.5,-107.5 - parent: 82 - type: Transform -- uid: 9663 - type: Grille - components: - - pos: 12.5,-108.5 - parent: 82 - type: Transform -- uid: 9664 - type: Grille - components: - - pos: 12.5,-109.5 - parent: 82 - type: Transform -- uid: 9665 - type: Grille - components: - - pos: 35.5,-104.5 - parent: 82 - type: Transform -- uid: 9666 - type: Grille - components: - - pos: 33.5,-104.5 - parent: 82 - type: Transform -- uid: 9667 - type: Grille - components: - - pos: 32.5,-104.5 - parent: 82 - type: Transform -- uid: 9668 - type: HighSecCommandLocked - components: - - pos: 29.5,-100.5 - parent: 82 - type: Transform -- uid: 9669 - type: Grille - components: - - pos: 30.5,-104.5 - parent: 82 - type: Transform -- uid: 9670 - type: Grille - components: - - pos: 29.5,-104.5 - parent: 82 - type: Transform -- uid: 9671 - type: Grille - components: - - pos: 28.5,-104.5 - parent: 82 - type: Transform -- uid: 9672 - type: Grille - components: - - pos: 28.5,-105.5 - parent: 82 - type: Transform -- uid: 9673 - type: HighSecCommandLocked - components: - - pos: 15.5,-100.5 - parent: 82 - type: Transform -- uid: 9674 - type: HighSecCommandLocked - components: - - pos: 25.5,-100.5 - parent: 82 - type: Transform -- uid: 9675 - type: Grille - components: - - pos: 28.5,-108.5 - parent: 82 - type: Transform -- uid: 9676 - type: Grille - components: - - pos: 28.5,-109.5 - parent: 82 - type: Transform -- uid: 9677 - type: WindoorCommandLocked - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-102.5 - parent: 82 - type: Transform -- uid: 9678 - type: WindoorCommandLocked - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-102.5 - parent: 82 - type: Transform -- uid: 9679 - type: AirlockMaintCommandLocked - components: - - pos: 12.5,-90.5 - parent: 82 - type: Transform -- uid: 9680 - type: AirlockMaintCommandLocked - components: - - pos: 28.5,-90.5 - parent: 82 - type: Transform -- uid: 9681 - type: TablePlasmaGlass - components: - - pos: 20.5,-103.5 - parent: 82 - type: Transform -- uid: 9682 - type: ToyAi - components: - - pos: 20.601238,-103.10646 - parent: 82 - type: Transform -- uid: 9683 - type: IntercomCommand - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-59.5 - parent: 82 - type: Transform -- uid: 9684 - type: CarpetPurple - components: - - pos: 21.5,-92.5 - parent: 82 - type: Transform -- uid: 9685 - type: TableWood - components: - - pos: 19.5,-91.5 - parent: 82 - type: Transform -- uid: 9686 - type: TableWood - components: - - pos: 20.5,-91.5 - parent: 82 - type: Transform -- uid: 9687 - type: TableWood - components: - - pos: 21.5,-91.5 - parent: 82 - type: Transform -- uid: 9688 - type: ChairWood - components: - - pos: 19.5,-90.5 - parent: 82 - type: Transform -- uid: 9689 - type: ChairWood - components: - - pos: 20.5,-90.5 - parent: 82 - type: Transform -- uid: 9690 - type: ChairWood - components: - - pos: 21.5,-90.5 - parent: 82 - type: Transform -- uid: 9691 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 19.5,-92.5 - parent: 82 - type: Transform -- uid: 9692 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 20.5,-92.5 - parent: 82 - type: Transform -- uid: 9693 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 21.5,-92.5 - parent: 82 - type: Transform -- uid: 9694 - type: ClothingHeadHatOutlawHat - components: - - pos: 20.866913,-91.44542 - parent: 82 - type: Transform -- uid: 9695 - type: PaperCaptainsThoughts - components: - - pos: 20.07479,-91.26229 - parent: 82 - type: Transform -- uid: 9696 - type: RandomDrinkBottle - components: - - pos: 21.5,-91.5 - parent: 82 - type: Transform -- uid: 9697 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-92.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9698 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-93.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9699 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-92.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9700 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-93.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9701 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 17.5,-93.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9702 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 23.5,-93.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9703 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 22.5,-93.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9704 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-92.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9705 - type: GasPipeBend - components: - - pos: 17.5,-92.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9706 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-93.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9707 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 18.5,-92.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9708 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 22.5,-92.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9709 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 20.5,-91.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9710 - type: GasPipeFourway - components: - - pos: 20.5,-90.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9711 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-90.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9712 - type: GasPipeBend - components: - - pos: 22.5,-90.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9713 - type: GasPipeStraight - components: - - pos: 18.5,-91.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9714 - type: GasPipeStraight - components: - - pos: 22.5,-91.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9715 - type: GasPipeStraight - components: - - pos: 20.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9716 - type: GasPipeStraight - components: - - pos: 20.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9717 - type: GasPipeFourway - components: - - pos: 20.5,-87.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9718 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 19.5,-87.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9719 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-86.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9720 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-85.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9721 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-84.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9722 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-83.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9723 - type: GasPressurePump - components: - - pos: 19.5,-79.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9724 - type: GasPipeStraight - components: - - pos: 19.5,-80.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9725 - type: GasPipeStraight - components: - - pos: 19.5,-81.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9726 - type: GasPipeStraight - components: - - pos: 19.5,-82.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9727 - type: GasPipeStraight - components: - - pos: 19.5,-78.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9728 - type: GasPipeStraight - components: - - pos: 19.5,-77.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9729 - type: GasPipeStraight - components: - - pos: 19.5,-76.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9730 - type: GasPipeStraight - components: - - pos: 19.5,-75.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9731 - type: GasPipeStraight - components: - - pos: 19.5,-74.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9732 - type: GasPipeStraight - components: - - pos: 19.5,-73.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9733 - type: GasPipeStraight - components: - - pos: 19.5,-72.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9734 - type: GasPipeStraight - components: - - pos: 19.5,-71.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9735 - type: GasPipeStraight - components: - - pos: 19.5,-70.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9736 - type: GasPipeStraight - components: - - pos: 19.5,-69.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9737 - type: GasPipeStraight - components: - - pos: 19.5,-68.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9738 - type: GasPipeStraight - components: - - pos: 19.5,-67.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9739 - type: GasPipeStraight - components: - - pos: 19.5,-66.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9740 - type: GasPipeStraight - components: - - pos: 19.5,-65.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9741 - type: GasPipeStraight - components: - - pos: 19.5,-64.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9742 - type: GasPipeStraight - components: - - pos: 19.5,-63.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9743 - type: GasPipeStraight - components: - - pos: 19.5,-62.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9744 - type: ComputerComms - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-15.5 - parent: 82 - type: Transform -- uid: 9745 - type: GasPipeStraight - components: - - pos: 19.5,-60.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9746 - type: GasPipeStraight - components: - - pos: 19.5,-59.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9747 - type: GasPipeStraight - components: - - pos: 19.5,-58.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9748 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-87.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9749 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-87.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9750 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-87.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9751 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-87.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9752 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-87.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9753 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-87.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9754 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9755 - type: GasPipeBend - components: - - pos: 24.5,-87.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9756 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 24.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9757 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9758 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9759 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9760 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9761 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9762 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9763 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9764 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9765 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9766 - type: GasPipeStraight - components: - - pos: 8.5,-90.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9767 - type: GasPipeStraight - components: - - pos: 8.5,-91.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9768 - type: GasPipeStraight - components: - - pos: 8.5,-92.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9769 - type: GasPipeStraight - components: - - pos: 8.5,-93.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9770 - type: GasPipeStraight - components: - - pos: 8.5,-94.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9771 - type: GasPipeStraight - components: - - pos: 8.5,-95.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9772 - type: GasPipeStraight - components: - - pos: 8.5,-96.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9773 - type: GasPipeStraight - components: - - pos: 8.5,-97.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9774 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-98.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9775 - type: GasPipeStraight - components: - - pos: 8.5,-99.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9776 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 8.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9777 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9778 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9779 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9780 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9781 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9782 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9783 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9784 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9785 - type: GasPipeTJunction - components: - - pos: 17.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9786 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9787 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9788 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9789 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9790 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9791 - type: GasPipeBend - components: - - pos: 23.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9792 - type: GasPipeStraight - components: - - pos: 17.5,-101.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9793 - type: GasPipeStraight - components: - - pos: 17.5,-102.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9794 - type: GasPipeStraight - components: - - pos: 23.5,-101.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9795 - type: GasPipeStraight - components: - - pos: 23.5,-102.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9796 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9797 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9798 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9799 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9800 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9801 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9802 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9803 - type: GasPipeBend - components: - - pos: 32.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9804 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9805 - type: GasPipeTJunction - components: - - pos: 16.5,-86.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9806 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-90.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9807 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-91.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9808 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-92.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9809 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-93.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9810 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-94.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9811 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-95.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9812 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-96.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9813 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-97.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9814 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-98.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9815 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-86.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9816 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-86.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9817 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9818 - type: GasVentPump - components: - - pos: 20.5,-86.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9819 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9820 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-98.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9821 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-98.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9822 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 17.5,-103.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9823 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 23.5,-103.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9824 - type: GasPipeTJunction - components: - - pos: 24.5,-86.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9825 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-86.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9826 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-86.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9827 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-86.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9828 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-86.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9829 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 21.5,-86.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9830 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-86.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9831 - type: GasPipeBend - components: - - pos: 25.5,-86.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9832 - type: GasPipeStraight - components: - - pos: 15.5,-87.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9833 - type: GasPipeStraight - components: - - pos: 15.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9834 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9835 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 25.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9836 - type: GasPipeStraight - components: - - pos: 25.5,-87.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9837 - type: GasPipeStraight - components: - - pos: 25.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9838 - type: GasPipeStraight - components: - - pos: 21.5,-85.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9839 - type: GasPipeStraight - components: - - pos: 21.5,-84.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9840 - type: GasPipeStraight - components: - - pos: 21.5,-83.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9841 - type: GasPipeStraight - components: - - pos: 21.5,-82.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9842 - type: GasPipeStraight - components: - - pos: 21.5,-81.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9843 - type: GasPipeStraight - components: - - pos: 21.5,-80.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9844 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-78.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9845 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9846 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9847 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9848 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9849 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9850 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9851 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9852 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9853 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9854 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9855 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9856 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-89.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9857 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-90.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9858 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-91.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9859 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-92.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9860 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-93.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9861 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-94.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9862 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-95.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9863 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-96.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9864 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-97.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9865 - type: GasPipeStraight - components: - - pos: 9.5,-90.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9866 - type: GasPipeStraight - components: - - pos: 9.5,-91.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9867 - type: GasPipeStraight - components: - - pos: 9.5,-92.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9868 - type: GasPipeStraight - components: - - pos: 9.5,-93.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9869 - type: GasPipeStraight - components: - - pos: 9.5,-94.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9870 - type: GasPipeStraight - components: - - pos: 9.5,-95.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9871 - type: GasPipeStraight - components: - - pos: 9.5,-96.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9872 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9873 - type: GasPipeStraight - components: - - pos: 31.5,-98.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9874 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-97.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9875 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-99.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9876 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9877 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9878 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9879 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9880 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9881 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9882 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9883 - type: GasPipeBend - components: - - pos: 24.5,-99.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9884 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-99.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9885 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-105.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9886 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-101.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9887 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-102.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9888 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-103.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9889 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-104.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9890 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-105.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9891 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-105.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9892 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-105.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9893 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-99.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9894 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-99.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9895 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-99.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9896 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-97.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9897 - type: GasVentScrubber - components: - - pos: 9.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9898 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 16.5,-87.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9899 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 24.5,-87.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9900 - type: GasVentScrubber - components: - - pos: 31.5,-88.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9901 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-97.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9902 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 20.5,-100.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9903 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-105.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 9904 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 17.5,-97.5 - parent: 82 - type: Transform -- uid: 9905 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 16.5,-97.5 - parent: 82 - type: Transform -- uid: 9906 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 18.5,-97.5 - parent: 82 - type: Transform -- uid: 9907 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 22.5,-97.5 - parent: 82 - type: Transform -- uid: 9908 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 23.5,-97.5 - parent: 82 - type: Transform -- uid: 9909 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 24.5,-97.5 - parent: 82 - type: Transform -- uid: 9910 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-105.5 - parent: 82 - type: Transform -- uid: 9911 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-104.5 - parent: 82 - type: Transform -- uid: 9912 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-103.5 - parent: 82 - type: Transform -- uid: 9913 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-98.5 - parent: 82 - type: Transform -- uid: 9914 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-97.5 - parent: 82 - type: Transform -- uid: 9915 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-96.5 - parent: 82 - type: Transform -- uid: 9916 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-95.5 - parent: 82 - type: Transform -- uid: 9917 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 12.5,-95.5 - parent: 82 - type: Transform -- uid: 9918 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 13.5,-95.5 - parent: 82 - type: Transform -- uid: 9919 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 14.5,-95.5 - parent: 82 - type: Transform -- uid: 9920 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 18.5,-95.5 - parent: 82 - type: Transform -- uid: 9921 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 19.5,-95.5 - parent: 82 - type: Transform -- uid: 9922 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 20.5,-95.5 - parent: 82 - type: Transform -- uid: 9923 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 21.5,-95.5 - parent: 82 - type: Transform -- uid: 9924 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 22.5,-95.5 - parent: 82 - type: Transform -- uid: 9925 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 26.5,-95.5 - parent: 82 - type: Transform -- uid: 9926 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 27.5,-95.5 - parent: 82 - type: Transform -- uid: 9927 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 28.5,-95.5 - parent: 82 - type: Transform -- uid: 9928 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-95.5 - parent: 82 - type: Transform -- uid: 9929 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-96.5 - parent: 82 - type: Transform -- uid: 9930 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-97.5 - parent: 82 - type: Transform -- uid: 9931 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-98.5 - parent: 82 - type: Transform -- uid: 9932 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 22.5,-108.5 - parent: 82 - type: Transform -- uid: 9933 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 23.5,-108.5 - parent: 82 - type: Transform -- uid: 9934 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 17.5,-108.5 - parent: 82 - type: Transform -- uid: 9935 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 18.5,-108.5 - parent: 82 - type: Transform -- uid: 9936 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-105.5 - parent: 82 - type: Transform -- uid: 9937 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-104.5 - parent: 82 - type: Transform -- uid: 9938 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-103.5 - parent: 82 - type: Transform -- uid: 9939 - type: RandomInstruments - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-93.5 - parent: 82 - type: Transform -- uid: 9940 - type: PottedPlantRandomPlastic - components: - - pos: 15.5,-90.5 - parent: 82 - type: Transform -- uid: 9941 - type: PottedPlantRandomPlastic - components: - - pos: 16.5,-90.5 - parent: 82 - type: Transform -- uid: 9942 - type: PottedPlantRandomPlastic - components: - - pos: 25.5,-90.5 - parent: 82 - type: Transform -- uid: 9943 - type: PottedPlantRandomPlastic - components: - - pos: 24.5,-90.5 - parent: 82 - type: Transform -- uid: 9944 - type: TablePlasmaGlass - components: - - pos: 18.5,-84.5 - parent: 82 - type: Transform -- uid: 9945 - type: TablePlasmaGlass - components: - - pos: 18.5,-85.5 - parent: 82 - type: Transform -- uid: 9946 - type: TablePlasmaGlass - components: - - pos: 17.5,-85.5 - parent: 82 - type: Transform -- uid: 9947 - type: TablePlasmaGlass - components: - - pos: 22.5,-84.5 - parent: 82 - type: Transform -- uid: 9948 - type: TablePlasmaGlass - components: - - pos: 22.5,-85.5 - parent: 82 - type: Transform -- uid: 9949 - type: TablePlasmaGlass - components: - - pos: 23.5,-85.5 - parent: 82 - type: Transform -- uid: 9950 - type: PottedPlantRandom - components: - - pos: 17.5,-87.5 - parent: 82 - type: Transform -- uid: 9951 - type: PottedPlantRandom - components: - - pos: 23.5,-87.5 - parent: 82 - type: Transform -- uid: 9952 - type: PottedPlantRandom - components: - - pos: 7.5,-93.5 - parent: 82 - type: Transform -- uid: 9953 - type: PottedPlantRandom - components: - - pos: 7.5,-91.5 - parent: 82 - type: Transform -- uid: 9954 - type: PottedPlantRandom - components: - - pos: 33.5,-93.5 - parent: 82 - type: Transform -- uid: 9955 - type: PottedPlantRandom - components: - - pos: 33.5,-91.5 - parent: 82 - type: Transform -- uid: 9956 - type: PottedPlantRandomPlastic - components: - - pos: 30.5,-95.5 - parent: 82 - type: Transform -- uid: 9957 - type: PottedPlantRandomPlastic - components: - - pos: 7.5,-95.5 - parent: 82 - type: Transform -- uid: 9958 - type: PottedPlantRandom - components: - - pos: 10.5,-95.5 - parent: 82 - type: Transform -- uid: 9959 - type: PottedPlantRandom - components: - - pos: 33.5,-95.5 - parent: 82 - type: Transform -- uid: 9960 - type: PottedPlantRandom - components: - - pos: 22.5,-106.5 - parent: 82 - type: Transform -- uid: 9961 - type: PottedPlantRandomPlastic - components: - - pos: 18.5,-106.5 - parent: 82 - type: Transform -- uid: 9962 - type: Grille - components: - - pos: -27.5,10.5 - parent: 82 - type: Transform -- uid: 9963 - type: Grille - components: - - pos: -28.5,10.5 - parent: 82 - type: Transform -- uid: 9964 - type: Grille - components: - - pos: -29.5,10.5 - parent: 82 - type: Transform -- uid: 9965 - type: ReinforcedWindow - components: - - pos: -29.5,10.5 - parent: 82 - type: Transform -- uid: 9966 - type: ReinforcedWindow - components: - - pos: -28.5,10.5 - parent: 82 - type: Transform -- uid: 9967 - type: ReinforcedWindow - components: - - pos: -27.5,10.5 - parent: 82 - type: Transform -- uid: 9968 - type: AsteroidRock - components: - - pos: -45.5,12.5 - parent: 82 - type: Transform -- uid: 9969 - type: AsteroidRock - components: - - pos: -45.5,11.5 - parent: 82 - type: Transform -- uid: 9970 - type: AsteroidRock - components: - - pos: -44.5,11.5 - parent: 82 - type: Transform -- uid: 9971 - type: AsteroidRock - components: - - pos: -43.5,11.5 - parent: 82 - type: Transform -- uid: 9972 - type: AsteroidRock - components: - - pos: -42.5,10.5 - parent: 82 - type: Transform -- uid: 9973 - type: AsteroidRock - components: - - pos: -42.5,11.5 - parent: 82 - type: Transform -- uid: 9974 - type: AsteroidRock - components: - - pos: -44.5,12.5 - parent: 82 - type: Transform -- uid: 9975 - type: AsteroidRock - components: - - pos: -41.5,13.5 - parent: 82 - type: Transform -- uid: 9976 - type: AsteroidRock - components: - - pos: -40.5,12.5 - parent: 82 - type: Transform -- uid: 9977 - type: AsteroidRock - components: - - pos: -38.5,13.5 - parent: 82 - type: Transform -- uid: 9978 - type: AsteroidRock - components: - - pos: -39.5,14.5 - parent: 82 - type: Transform -- uid: 9979 - type: AsteroidRock - components: - - pos: -39.5,13.5 - parent: 82 - type: Transform -- uid: 9980 - type: AsteroidRock - components: - - pos: -45.5,-3.5 - parent: 82 - type: Transform -- uid: 9981 - type: AsteroidRock - components: - - pos: -40.5,13.5 - parent: 82 - type: Transform -- uid: 9982 - type: AsteroidRock - components: - - pos: -44.5,13.5 - parent: 82 - type: Transform -- uid: 9983 - type: AsteroidRock - components: - - pos: -43.5,13.5 - parent: 82 - type: Transform -- uid: 9984 - type: AsteroidRock - components: - - pos: -43.5,14.5 - parent: 82 - type: Transform -- uid: 9985 - type: AsteroidRock - components: - - pos: -41.5,11.5 - parent: 82 - type: Transform -- uid: 9986 - type: AsteroidRock - components: - - pos: -42.5,14.5 - parent: 82 - type: Transform -- uid: 9987 - type: AsteroidRock - components: - - pos: -43.5,15.5 - parent: 82 - type: Transform -- uid: 9988 - type: AsteroidRock - components: - - pos: -42.5,15.5 - parent: 82 - type: Transform -- uid: 9989 - type: AsteroidRock - components: - - pos: -41.5,14.5 - parent: 82 - type: Transform -- uid: 9990 - type: AsteroidRock - components: - - pos: -44.5,-2.5 - parent: 82 - type: Transform -- uid: 9991 - type: AsteroidRock - components: - - pos: -44.5,-3.5 - parent: 82 - type: Transform -- uid: 9992 - type: AsteroidRock - components: - - pos: -41.5,12.5 - parent: 82 - type: Transform -- uid: 9993 - type: AsteroidRock - components: - - pos: -43.5,12.5 - parent: 82 - type: Transform -- uid: 9994 - type: AsteroidRock - components: - - pos: -42.5,13.5 - parent: 82 - type: Transform -- uid: 9995 - type: AsteroidRock - components: - - pos: -39.5,12.5 - parent: 82 - type: Transform -- uid: 9996 - type: AsteroidRock - components: - - pos: -38.5,12.5 - parent: 82 - type: Transform -- uid: 9997 - type: AsteroidRock - components: - - pos: -40.5,11.5 - parent: 82 - type: Transform -- uid: 9998 - type: AsteroidRock - components: - - pos: -41.5,10.5 - parent: 82 - type: Transform -- uid: 9999 - type: AsteroidRock - components: - - pos: -40.5,10.5 - parent: 82 - type: Transform -- uid: 10000 - type: AsteroidRock - components: - - pos: -39.5,11.5 - parent: 82 - type: Transform -- uid: 10001 - type: AsteroidRock - components: - - pos: -38.5,11.5 - parent: 82 - type: Transform -- uid: 10002 - type: AsteroidRock - components: - - pos: -37.5,11.5 - parent: 82 - type: Transform -- uid: 10003 - type: AsteroidRock - components: - - pos: -36.5,10.5 - parent: 82 - type: Transform -- uid: 10004 - type: AsteroidRock - components: - - pos: -36.5,11.5 - parent: 82 - type: Transform -- uid: 10005 - type: AsteroidRock - components: - - pos: -45.5,-2.5 - parent: 82 - type: Transform -- uid: 10006 - type: AsteroidRock - components: - - pos: -45.5,-1.5 - parent: 82 - type: Transform -- uid: 10007 - type: AsteroidRock - components: - - pos: -46.5,-0.5 - parent: 82 - type: Transform -- uid: 10008 - type: DrinkCanPack - components: - - pos: -40.54229,14.452413 - parent: 82 - type: Transform -- uid: 10009 - type: AirCanister - components: - - pos: 22.5,17.5 - parent: 82 - type: Transform -- uid: 10010 - type: AirCanister - components: - - pos: 22.5,16.5 - parent: 82 - type: Transform -- uid: 10011 - type: AirCanister - components: - - pos: 22.5,15.5 - parent: 82 - type: Transform -- uid: 10012 - type: CableApcExtension - components: - - pos: 9.5,72.5 - parent: 82 - type: Transform -- uid: 10013 - type: OxygenCanister - components: - - pos: -21.5,59.5 - parent: 82 - type: Transform -- uid: 10014 - type: ClothingNeckGoldmedal - components: - - pos: -9.457472,-8.396783 - parent: 82 - type: Transform -- uid: 10015 - type: NitrogenCanister - components: - - pos: -21.5,58.5 - parent: 82 - type: Transform -- uid: 10016 - type: ClosetWallEmergencyFilledRandom - components: - - rot: 1.5707963267948966 rad - pos: -22.5,59.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10017 - type: ClosetWallFireFilledRandom - components: - - rot: 1.5707963267948966 rad - pos: -22.5,58.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10018 - type: GasPipeStraight - components: - - pos: 28.5,9.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10019 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 30.5,14.5 - parent: 82 - type: Transform -- uid: 10020 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: 26.5,12.5 - parent: 82 - type: Transform -- uid: 10021 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: 25.5,12.5 - parent: 82 - type: Transform -- uid: 10022 - type: RCD - components: - - pos: 25.617468,12.734517 - parent: 82 - type: Transform -- uid: 10023 - type: RCDAmmo - components: - - pos: 25.561913,12.470628 - parent: 82 - type: Transform -- uid: 10024 - type: RCDAmmo - components: - - pos: 25.325802,12.567851 - parent: 82 - type: Transform -- uid: 10025 - type: HydroponicsToolMiniHoe - components: - - pos: 51.611702,-43.500088 - parent: 82 - type: Transform -- uid: 10026 - type: Rack - components: - - pos: 62.5,-18.5 - parent: 82 - type: Transform -- uid: 10027 - type: SheetSteel - components: - - pos: 62.71001,-18.526855 - parent: 82 - type: Transform -- uid: 10028 - type: WeldingFuelTankFull - components: - - pos: -1.5,33.5 - parent: 82 - type: Transform -- uid: 10029 - type: WeaponPistolMk58 - components: - - pos: 48.49978,-20.53601 - parent: 82 - type: Transform -- uid: 10030 - type: FloorDrain - components: - - pos: -0.5,38.5 - parent: 82 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 10031 - type: WindoorArmoryLocked - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-20.5 - parent: 82 - type: Transform -- uid: 10032 - type: WindoorArmoryLocked - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-18.5 - parent: 82 - type: Transform -- uid: 10033 - type: AirlockScienceGlassLocked - components: - - pos: 25.5,69.5 - parent: 82 - type: Transform -- uid: 10034 - type: AirlockResearchDirectorGlassLocked - components: - - pos: 27.5,62.5 - parent: 82 - type: Transform -- uid: 10035 - type: ReinforcedWindow - components: - - pos: 26.5,62.5 - parent: 82 - type: Transform -- uid: 10036 - type: ReinforcedWindow - components: - - pos: 28.5,62.5 - parent: 82 - type: Transform -- uid: 10037 - type: WallReinforced - components: - - pos: -3.5,56.5 - parent: 82 - type: Transform -- uid: 10038 - type: WallReinforced - components: - - pos: -3.5,61.5 - parent: 82 - type: Transform -- uid: 10039 - type: WallReinforced - components: - - pos: -1.5,63.5 - parent: 82 - type: Transform -- uid: 10040 - type: WallReinforced - components: - - pos: 2.5,63.5 - parent: 82 - type: Transform -- uid: 10041 - type: WallReinforced - components: - - pos: 4.5,61.5 - parent: 82 - type: Transform -- uid: 10042 - type: WallReinforced - components: - - pos: 4.5,56.5 - parent: 82 - type: Transform -- uid: 10043 - type: SignElectrical - components: - - pos: -1.5,63.5 - parent: 82 - type: Transform -- uid: 10044 - type: SignElectrical - components: - - pos: 2.5,63.5 - parent: 82 - type: Transform -- uid: 10045 - type: SignElectrical - components: - - pos: 4.5,61.5 - parent: 82 - type: Transform -- uid: 10046 - type: SignElectrical - components: - - pos: 4.5,56.5 - parent: 82 - type: Transform -- uid: 10047 - type: SignElectrical - components: - - pos: -3.5,56.5 - parent: 82 - type: Transform -- uid: 10048 - type: SignElectrical - components: - - pos: -3.5,61.5 - parent: 82 - type: Transform -- uid: 10049 - type: WallSolid - components: - - pos: 21.5,39.5 - parent: 82 - type: Transform -- uid: 10050 - type: Girder - components: - - pos: 21.5,38.5 - parent: 82 - type: Transform -- uid: 10051 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 21.5,37.5 - parent: 82 - type: Transform -- uid: 10052 - type: ClosetToolFilled - components: - - pos: 21.5,69.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10053 - type: LockerWeldingSuppliesFilled - components: - - pos: 20.5,69.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10054 - type: WeldingFuelTankFull - components: - - pos: 24.5,7.5 - parent: 82 - type: Transform -- uid: 10055 - type: AirAlarm - components: - - pos: 20.5,-1.5 - parent: 82 - type: Transform - - devices: - - 13724 - - 13725 - - 14519 - - 14520 - - 10056 - - 20547 - - 20671 - - 5851 - - 5852 - - 5853 - - 22469 - - 22468 - - 22465 - type: DeviceList -- uid: 10056 - type: AirSensor - components: - - pos: 28.5,-3.5 - parent: 82 - type: Transform -- uid: 10057 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 26.5,2.5 - parent: 82 - type: Transform - - devices: - - 11152 - - 1260 - - 1259 - - 10056 - - 14520 - - 14519 - - 22614 - - 22613 - - 22612 - - 18999 - - 19245 - - 18986 - - 10297 - - 10298 - - 22458 - - 22623 - - 18914 - - 18971 - - 6919 - type: DeviceList -- uid: 10058 - type: GasAnalyzer - components: - - pos: 25.742336,6.8001347 - parent: 82 - type: Transform -- uid: 10059 - type: GasAnalyzer - components: - - pos: 25.284004,6.7584677 - parent: 82 - type: Transform -- uid: 10060 - type: AirSensor - components: - - pos: 7.5,12.5 - parent: 82 - type: Transform -- uid: 10061 - type: WallReinforced - components: - - pos: -25.5,19.5 - parent: 82 - type: Transform -- uid: 10062 - type: ClothingHandsGlovesColorYellow - components: - - pos: 26.645002,7.6640654 - parent: 82 - type: Transform -- uid: 10063 - type: BaseBigBox - components: - - pos: -38.501453,39.546505 - parent: 82 - type: Transform -- uid: 10064 - type: AsteroidRock - components: - - pos: 50.5,54.5 - parent: 82 - type: Transform -- uid: 10065 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: 30.5,9.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24529 - type: SignalReceiver -- uid: 10066 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: 30.5,8.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24529 - type: SignalReceiver -- uid: 10067 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: 30.5,7.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24529 - type: SignalReceiver -- uid: 10068 - type: ShuttersNormalOpen - components: - - pos: 29.5,5.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24529 - type: SignalReceiver -- uid: 10069 - type: ShuttersNormalOpen - components: - - pos: 28.5,5.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24529 - type: SignalReceiver -- uid: 10070 - type: ShuttersWindowOpen - components: - - pos: 27.5,5.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24529 - type: SignalReceiver -- uid: 10071 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: 30.5,10.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24529 - type: SignalReceiver -- uid: 10072 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -5.5,19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10073 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10074 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,21.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10075 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,22.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10076 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,23.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10077 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,24.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10078 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10079 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10080 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10081 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10082 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -5.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10083 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -5.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10084 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10085 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 2.5,-9.5 - parent: 82 - type: Transform -- uid: 10086 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10087 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10088 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10089 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10090 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10091 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10092 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10093 - type: WallReinforced - components: - - pos: -28.5,38.5 - parent: 82 - type: Transform -- uid: 10094 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10095 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10096 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10097 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10098 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10099 - type: WallReinforced - components: - - pos: -28.5,39.5 - parent: 82 - type: Transform -- uid: 10100 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10101 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10102 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10103 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 57.5,-6.5 - parent: 82 - type: Transform -- uid: 10104 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10105 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10106 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10107 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10108 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10109 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10110 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10111 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10112 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10113 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10114 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10115 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10116 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10117 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10118 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10119 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10120 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10121 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10122 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 33.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10123 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10124 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10125 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10126 - type: WallReinforced - components: - - pos: -28.5,40.5 - parent: 82 - type: Transform -- uid: 10127 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,24.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10128 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,23.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10129 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,22.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10130 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10131 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10132 - type: WallReinforced - components: - - pos: -28.5,35.5 - parent: 82 - type: Transform -- uid: 10133 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10134 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,17.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10135 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10136 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10137 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10138 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10139 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,12.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10140 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10141 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,10.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10142 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,9.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10143 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 27.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10144 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10145 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10146 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10147 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10148 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10149 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10150 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10151 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -18.5,17.5 - parent: 82 - type: Transform -- uid: 10152 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10153 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10154 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10155 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10156 - type: WarpPoint - components: - - pos: -15.5,18.5 - parent: 82 - type: Transform - - location: Chapel - type: WarpPoint -- uid: 10157 - type: WarpPoint - components: - - pos: -40.5,27.5 - parent: 82 - type: Transform - - location: EVA Room - type: WarpPoint -- uid: 10158 - type: GasPipeBend - components: - - pos: -9.5,-34.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10159 - type: GasPipeStraight - components: - - pos: -9.5,-39.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10160 - type: GasPipeStraight - components: - - pos: -9.5,-38.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10161 - type: GasPipeStraight - components: - - pos: -9.5,-36.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10162 - type: Grille - components: - - pos: 74.5,11.5 - parent: 82 - type: Transform -- uid: 10163 - type: Grille - components: - - pos: 77.5,11.5 - parent: 82 - type: Transform -- uid: 10164 - type: Grille - components: - - pos: 81.5,11.5 - parent: 82 - type: Transform -- uid: 10165 - type: Grille - components: - - pos: 84.5,11.5 - parent: 82 - type: Transform -- uid: 10166 - type: SignShipDock - components: - - pos: 85.5,16.5 - parent: 82 - type: Transform -- uid: 10167 - type: SignShipDock - components: - - pos: 73.5,16.5 - parent: 82 - type: Transform -- uid: 10168 - type: AirlockExternalGlass - components: - - pos: 82.5,11.5 - parent: 82 - type: Transform -- uid: 10169 - type: AirlockExternalGlass - components: - - pos: 83.5,11.5 - parent: 82 - type: Transform -- uid: 10170 - type: AirlockExternalGlass - components: - - pos: 75.5,11.5 - parent: 82 - type: Transform -- uid: 10171 - type: AirlockExternalGlass - components: - - pos: 76.5,11.5 - parent: 82 - type: Transform -- uid: 10172 - type: WallmountTelevision - components: - - pos: 79.5,5.5 - parent: 82 - type: Transform -- uid: 10173 - type: PottedPlantRandom - components: - - pos: 81.5,8.5 - parent: 82 - type: Transform -- uid: 10174 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-51.5 - parent: 82 - type: Transform -- uid: 10175 - type: CableHV - components: - - pos: -41.5,-51.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10176 - type: CableHV - components: - - pos: -41.5,-52.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10177 - type: CableHV - components: - - pos: -40.5,-51.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10178 - type: CableHV - components: - - pos: -40.5,-50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10179 - type: CableHV - components: - - pos: -40.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10180 - type: CableHV - components: - - pos: -41.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10181 - type: CableHV - components: - - pos: -41.5,-48.5 - parent: 82 - type: Transform -- uid: 10182 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-50.5 - parent: 82 - type: Transform -- uid: 10183 - type: ComputerSolarControl - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-51.5 - parent: 82 - type: Transform -- uid: 10184 - type: CableHV - components: - - pos: -42.5,-51.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10185 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: -42.620007,-49.304882 - parent: 82 - type: Transform -- uid: 10186 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: -42.41167,-49.429882 - parent: 82 - type: Transform -- uid: 10187 - type: Rack - components: - - pos: -42.5,-49.5 - parent: 82 - type: Transform -- uid: 10188 - type: CableHVStack - components: - - pos: -40.32834,-50.304882 - parent: 82 - type: Transform -- uid: 10189 - type: ClothingMaskGas - components: - - pos: -40.633896,-50.499325 - parent: 82 - type: Transform -- uid: 10190 - type: ClosetWallEmergencyFilledRandom - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-50.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10191 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-50.5 - parent: 82 - type: Transform -- uid: 10192 - type: RandomFoodBakedSingle - components: - - pos: -42.5,-50.5 - parent: 82 - type: Transform -- uid: 10193 - type: RandomDrinkGlass - components: - - pos: -42.5,-50.5 - parent: 82 - type: Transform -- uid: 10194 - type: CableHV - components: - - pos: -41.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10195 - type: CableHV - components: - - pos: -58.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10196 - type: CableHV - components: - - pos: -59.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10197 - type: CableHV - components: - - pos: -59.5,-33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10198 - type: CableHV - components: - - pos: -59.5,-32.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10199 - type: CableHV - components: - - pos: -59.5,-31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10200 - type: CableHV - components: - - pos: -59.5,-30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10201 - type: CableHV - components: - - pos: -59.5,-29.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10202 - type: CableHV - components: - - pos: -59.5,-28.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10203 - type: CableHV - components: - - pos: -59.5,-27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10204 - type: CableHV - components: - - pos: -59.5,-26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10205 - type: CableHV - components: - - pos: -59.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10206 - type: CableHV - components: - - pos: -60.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10207 - type: CableHV - components: - - pos: -61.5,-25.5 - parent: 82 - type: Transform -- uid: 10208 - type: CableHV - components: - - pos: -62.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10209 - type: CableHV - components: - - pos: -62.5,-26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10210 - type: SMESBasic - components: - - pos: -65.5,-26.5 - parent: 82 - type: Transform -- uid: 10211 - type: CableHV - components: - - pos: -63.5,-26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10212 - type: CableHV - components: - - pos: -64.5,-26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10213 - type: CableHV - components: - - pos: -65.5,-26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10214 - type: CableTerminal - components: - - pos: -65.5,-25.5 - parent: 82 - type: Transform -- uid: 10215 - type: CableHV - components: - - pos: -62.5,-24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10216 - type: CableHV - components: - - pos: -65.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10217 - type: CableHV - components: - - pos: -66.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10218 - type: AirlockExternalGlassLocked - components: - - pos: -61.5,-25.5 - parent: 82 - type: Transform -- uid: 10219 - type: AirlockExternalGlassLocked - components: - - pos: -66.5,-25.5 - parent: 82 - type: Transform -- uid: 10220 - type: Table - components: - - pos: -64.5,-26.5 - parent: 82 - type: Transform -- uid: 10221 - type: Table - components: - - pos: -63.5,-26.5 - parent: 82 - type: Transform -- uid: 10222 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: -63.629364,-24.270325 - parent: 82 - type: Transform -- uid: 10223 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: -63.43492,-24.436993 - parent: 82 - type: Transform -- uid: 10224 - type: Rack - components: - - pos: -63.5,-24.5 - parent: 82 - type: Transform -- uid: 10225 - type: CrateEngineeringCableBulk - components: - - pos: -64.5,-24.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10226 - type: CableHV - components: - - pos: -65.5,-24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10227 - type: ComputerSolarControl - components: - - pos: -65.5,-24.5 - parent: 82 - type: Transform -- uid: 10228 - type: ComputerPowerMonitoring - components: - - pos: -62.5,-24.5 - parent: 82 - type: Transform -- uid: 10229 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-26.5 - parent: 82 - type: Transform -- uid: 10230 - type: RandomFoodSingle - components: - - pos: -63.5,-26.5 - parent: 82 - type: Transform -- uid: 10231 - type: RandomDrinkGlass - components: - - pos: -63.5,-26.5 - parent: 82 - type: Transform -- uid: 10232 - type: SheetSteel - components: - - pos: -64.56591,-26.275623 - parent: 82 - type: Transform -- uid: 10233 - type: PartRodMetal - components: - - pos: -64.24647,-26.414513 - parent: 82 - type: Transform -- uid: 10234 - type: CrateChemistrySupplies - components: - - pos: -37.5,-28.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10235 - type: WindoorArmoryLocked - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-19.5 - parent: 82 - type: Transform -- uid: 10236 - type: WallReinforced - components: - - pos: -28.5,36.5 - parent: 82 - type: Transform -- uid: 10237 - type: AirlockMedicalGlassLocked - components: - - pos: -28.5,-30.5 - parent: 82 - type: Transform -- uid: 10238 - type: AirlockMedicalGlassLocked - components: - - pos: -28.5,-31.5 - parent: 82 - type: Transform -- uid: 10239 - type: AirlockMedicalGlassLocked - components: - - pos: -28.5,-32.5 - parent: 82 - type: Transform -- uid: 10240 - type: TableReinforced - components: - - pos: 34.5,51.5 - parent: 82 - type: Transform -- uid: 10241 - type: AirlockMedicalGlassLocked - components: - - pos: -37.5,-33.5 - parent: 82 - type: Transform -- uid: 10242 - type: AirlockMedicalGlassLocked - components: - - pos: -36.5,-33.5 - parent: 82 - type: Transform -- uid: 10243 - type: AirlockMedicalGlassLocked - components: - - pos: -32.5,-33.5 - parent: 82 - type: Transform -- uid: 10244 - type: AirlockMedicalGlassLocked - components: - - pos: -31.5,-33.5 - parent: 82 - type: Transform -- uid: 10245 - type: AirlockMaintMedLocked - components: - - pos: -55.5,-33.5 - parent: 82 - type: Transform -- uid: 10246 - type: WallReinforced - components: - - pos: -27.5,35.5 - parent: 82 - type: Transform -- uid: 10247 - type: AirlockMedicalGlass - components: - - pos: -28.5,-43.5 - parent: 82 - type: Transform -- uid: 10248 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-12.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10249 - type: HospitalCurtainsOpen - components: - - pos: -34.5,-40.5 - parent: 82 - type: Transform -- uid: 10250 - type: AirlockMedicalGlassLocked - components: - - pos: -49.5,-29.5 - parent: 82 - type: Transform -- uid: 10251 - type: AirlockMedicalGlassLocked - components: - - pos: -50.5,-33.5 - parent: 82 - type: Transform -- uid: 10252 - type: AirlockMedicalGlassLocked - components: - - pos: -48.5,-33.5 - parent: 82 - type: Transform -- uid: 10253 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 50.5,-20.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10254 - type: WallReinforced - components: - - pos: -62.5,-31.5 - parent: 82 - type: Transform -- uid: 10255 - type: AirlockVirologyGlassLocked - components: - - pos: -41.5,-26.5 - parent: 82 - type: Transform -- uid: 10256 - type: AirlockVirologyLocked - components: - - pos: -40.5,-29.5 - parent: 82 - type: Transform -- uid: 10257 - type: GasPipeFourway - components: - - pos: -21.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10258 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-24.5 - parent: 82 - type: Transform -- uid: 10259 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-25.5 - parent: 82 - type: Transform -- uid: 10260 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 82 - type: Transform -- uid: 10261 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 82 - type: Transform -- uid: 10262 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -18.5,16.5 - parent: 82 - type: Transform -- uid: 10263 - type: WallSolidRust - components: - - pos: 5.5,-49.5 - parent: 82 - type: Transform -- uid: 10264 - type: CultAltarSpawner - components: - - pos: 3.5,-51.5 - parent: 82 - type: Transform -- uid: 10265 - type: WallSolid - components: - - pos: 4.5,-50.5 - parent: 82 - type: Transform -- uid: 10266 - type: WallSolid - components: - - pos: 3.5,-50.5 - parent: 82 - type: Transform -- uid: 10267 - type: Rack - components: - - pos: -16.5,-30.5 - parent: 82 - type: Transform -- uid: 10268 - type: WallSolid - components: - - pos: 12.5,-48.5 - parent: 82 - type: Transform -- uid: 10269 - type: AirlockQuartermasterLocked - components: - - pos: 47.5,17.5 - parent: 82 - type: Transform -- uid: 10270 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 33.5,14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10271 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 32.5,14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10272 - type: GasPipeStraight - components: - - pos: 31.5,13.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10273 - type: GasPipeStraight - components: - - pos: 31.5,14.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10274 - type: GasPipeStraight - components: - - pos: 31.5,15.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10275 - type: GasPipeStraight - components: - - pos: 31.5,16.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10276 - type: GasPipeStraight - components: - - pos: 31.5,17.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10277 - type: GasPipeStraight - components: - - pos: 31.5,18.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10278 - type: GasPipeStraight - components: - - pos: 31.5,19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10279 - type: WallReinforced - components: - - pos: -26.5,35.5 - parent: 82 - type: Transform -- uid: 10280 - type: GasPipeStraight - components: - - pos: 31.5,21.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10281 - type: AirlockCommandGlassLocked - components: - - pos: -0.5,-10.5 - parent: 82 - type: Transform -- uid: 10282 - type: AirlockCommandGlassLocked - components: - - pos: 17.5,-10.5 - parent: 82 - type: Transform -- uid: 10283 - type: AirlockCargoGlassLocked - components: - - pos: 38.5,24.5 - parent: 82 - type: Transform -- uid: 10284 - type: CableMV - components: - - pos: -11.5,-9.5 - parent: 82 - type: Transform -- uid: 10285 - type: Grille - components: - - pos: 32.5,74.5 - parent: 82 - type: Transform -- uid: 10286 - type: CableMV - components: - - pos: -10.5,-9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10287 - type: Grille - components: - - pos: 27.5,77.5 - parent: 82 - type: Transform -- uid: 10288 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -10.5,-9.5 - parent: 82 - type: Transform -- uid: 10289 - type: CableApcExtension - components: - - pos: -10.5,-9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10290 - type: ReinforcedPlasmaWindow - components: - - pos: 27.5,80.5 - parent: 82 - type: Transform -- uid: 10291 - type: ReinforcedPlasmaWindow - components: - - pos: 31.5,80.5 - parent: 82 - type: Transform -- uid: 10292 - type: Grille - components: - - pos: 26.5,77.5 - parent: 82 - type: Transform -- uid: 10293 - type: Grille - components: - - pos: 29.5,80.5 - parent: 82 - type: Transform -- uid: 10294 - type: Catwalk - components: - - pos: 21.5,82.5 - parent: 82 - type: Transform -- uid: 10295 - type: Catwalk - components: - - pos: 34.5,79.5 - parent: 82 - type: Transform -- uid: 10296 - type: ReinforcedPlasmaWindow - components: - - pos: 26.5,80.5 - parent: 82 - type: Transform -- uid: 10297 - type: FirelockGlass - components: - - pos: 27.5,5.5 - parent: 82 - type: Transform -- uid: 10298 - type: FirelockGlass - components: - - pos: 29.5,5.5 - parent: 82 - type: Transform -- uid: 10299 - type: FirelockGlass - components: - - pos: 55.5,-6.5 - parent: 82 - type: Transform -- uid: 10300 - type: FirelockGlass - components: - - pos: 31.5,-8.5 - parent: 82 - type: Transform -- uid: 10301 - type: FirelockGlass - components: - - pos: 23.5,9.5 - parent: 82 - type: Transform -- uid: 10302 - type: FirelockGlass - components: - - pos: 23.5,8.5 - parent: 82 - type: Transform -- uid: 10303 - type: Firelock - components: - - pos: 28.5,11.5 - parent: 82 - type: Transform -- uid: 10304 - type: Firelock - components: - - pos: 23.5,14.5 - parent: 82 - type: Transform -- uid: 10305 - type: Firelock - components: - - pos: 23.5,13.5 - parent: 82 - type: Transform -- uid: 10306 - type: Firelock - components: - - pos: 23.5,12.5 - parent: 82 - type: Transform -- uid: 10307 - type: FirelockGlass - components: - - pos: 46.5,-10.5 - parent: 82 - type: Transform -- uid: 10308 - type: WallReinforced - components: - - pos: -25.5,35.5 - parent: 82 - type: Transform -- uid: 10309 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -1.5,17.5 - parent: 82 - type: Transform -- uid: 10310 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -1.5,16.5 - parent: 82 - type: Transform -- uid: 10311 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -1.5,15.5 - parent: 82 - type: Transform -- uid: 10312 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -1.5,14.5 - parent: 82 - type: Transform -- uid: 10313 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -1.5,13.5 - parent: 82 - type: Transform -- uid: 10314 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -1.5,12.5 - parent: 82 - type: Transform -- uid: 10315 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -1.5,11.5 - parent: 82 - type: Transform -- uid: 10316 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -1.5,10.5 - parent: 82 - type: Transform -- uid: 10317 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 16.5,10.5 - parent: 82 - type: Transform -- uid: 10318 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 16.5,11.5 - parent: 82 - type: Transform -- uid: 10319 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 16.5,12.5 - parent: 82 - type: Transform -- uid: 10320 - type: FirelockGlass - components: - - pos: 45.5,-10.5 - parent: 82 - type: Transform -- uid: 10321 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 16.5,13.5 - parent: 82 - type: Transform -- uid: 10322 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 16.5,14.5 - parent: 82 - type: Transform -- uid: 10323 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 16.5,15.5 - parent: 82 - type: Transform -- uid: 10324 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 16.5,16.5 - parent: 82 - type: Transform -- uid: 10325 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 16.5,17.5 - parent: 82 - type: Transform -- uid: 10326 - type: AirlockMaintAtmoLocked - components: - - pos: -5.5,18.5 - parent: 82 - type: Transform -- uid: 10327 - type: AirlockMaintAtmoLocked - components: - - pos: 21.5,18.5 - parent: 82 - type: Transform -- uid: 10328 - type: WallReinforced - components: - - pos: 45.5,11.5 - parent: 82 - type: Transform -- uid: 10329 - type: WallReinforced - components: - - pos: 46.5,11.5 - parent: 82 - type: Transform -- uid: 10330 - type: WallReinforced - components: - - pos: 47.5,11.5 - parent: 82 - type: Transform -- uid: 10331 - type: WallReinforced - components: - - pos: -24.5,35.5 - parent: 82 - type: Transform -- uid: 10332 - type: WallReinforced - components: - - pos: -29.5,46.5 - parent: 82 - type: Transform -- uid: 10333 - type: WallReinforced - components: - - pos: -29.5,41.5 - parent: 82 - type: Transform -- uid: 10334 - type: WallReinforced - components: - - pos: -29.5,40.5 - parent: 82 - type: Transform -- uid: 10335 - type: WallReinforced - components: - - pos: -29.5,42.5 - parent: 82 - type: Transform -- uid: 10336 - type: Catwalk - components: - - pos: -66.5,4.5 - parent: 82 - type: Transform -- uid: 10337 - type: Catwalk - components: - - pos: -66.5,3.5 - parent: 82 - type: Transform -- uid: 10338 - type: Catwalk - components: - - pos: -66.5,2.5 - parent: 82 - type: Transform -- uid: 10339 - type: Catwalk - components: - - pos: -66.5,10.5 - parent: 82 - type: Transform -- uid: 10340 - type: CableHV - components: - - pos: -16.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10341 - type: WallReinforced - components: - - pos: -8.5,40.5 - parent: 82 - type: Transform -- uid: 10342 - type: WallReinforced - components: - - pos: -9.5,37.5 - parent: 82 - type: Transform -- uid: 10343 - type: WallReinforced - components: - - pos: -8.5,37.5 - parent: 82 - type: Transform -- uid: 10344 - type: WallReinforced - components: - - pos: -6.5,37.5 - parent: 82 - type: Transform -- uid: 10345 - type: WallReinforced - components: - - pos: -11.5,36.5 - parent: 82 - type: Transform -- uid: 10346 - type: WallReinforced - components: - - pos: -11.5,37.5 - parent: 82 - type: Transform -- uid: 10347 - type: WallReinforced - components: - - pos: -10.5,37.5 - parent: 82 - type: Transform -- uid: 10348 - type: WallReinforced - components: - - pos: -7.5,51.5 - parent: 82 - type: Transform -- uid: 10349 - type: WallReinforced - components: - - pos: -7.5,40.5 - parent: 82 - type: Transform -- uid: 10350 - type: WallReinforced - components: - - pos: -7.5,39.5 - parent: 82 - type: Transform -- uid: 10351 - type: WallReinforced - components: - - pos: -7.5,38.5 - parent: 82 - type: Transform -- uid: 10352 - type: WallReinforced - components: - - pos: -7.5,37.5 - parent: 82 - type: Transform -- uid: 10353 - type: WallReinforced - components: - - pos: -8.5,42.5 - parent: 82 - type: Transform -- uid: 10354 - type: Bed - components: - - pos: 62.5,-16.5 - parent: 82 - type: Transform -- uid: 10355 - type: WallReinforced - components: - - pos: -29.5,51.5 - parent: 82 - type: Transform -- uid: 10356 - type: WallReinforced - components: - - pos: -29.5,50.5 - parent: 82 - type: Transform -- uid: 10357 - type: WallReinforced - components: - - pos: -29.5,49.5 - parent: 82 - type: Transform -- uid: 10358 - type: WallReinforced - components: - - pos: -29.5,48.5 - parent: 82 - type: Transform -- uid: 10359 - type: WallReinforced - components: - - pos: -29.5,47.5 - parent: 82 - type: Transform -- uid: 10360 - type: WallReinforced - components: - - pos: -7.5,50.5 - parent: 82 - type: Transform -- uid: 10361 - type: WallReinforced - components: - - pos: -7.5,49.5 - parent: 82 - type: Transform -- uid: 10362 - type: WallReinforced - components: - - pos: -7.5,48.5 - parent: 82 - type: Transform -- uid: 10363 - type: WallReinforced - components: - - pos: -8.5,46.5 - parent: 82 - type: Transform -- uid: 10364 - type: WallReinforced - components: - - pos: -8.5,47.5 - parent: 82 - type: Transform -- uid: 10365 - type: WallReinforced - components: - - pos: -8.5,48.5 - parent: 82 - type: Transform -- uid: 10366 - type: ReinforcedWindow - components: - - pos: -10.5,32.5 - parent: 82 - type: Transform -- uid: 10367 - type: ReinforcedWindow - components: - - pos: -9.5,32.5 - parent: 82 - type: Transform -- uid: 10368 - type: ReinforcedWindow - components: - - pos: -8.5,32.5 - parent: 82 - type: Transform -- uid: 10369 - type: ReinforcedWindow - components: - - pos: -7.5,32.5 - parent: 82 - type: Transform -- uid: 10370 - type: ReinforcedWindow - components: - - pos: -6.5,33.5 - parent: 82 - type: Transform -- uid: 10371 - type: ReinforcedWindow - components: - - pos: -6.5,34.5 - parent: 82 - type: Transform -- uid: 10372 - type: ReinforcedWindow - components: - - pos: -6.5,35.5 - parent: 82 - type: Transform -- uid: 10373 - type: ReinforcedWindow - components: - - pos: -6.5,36.5 - parent: 82 - type: Transform -- uid: 10374 - type: BannerEngineering - components: - - pos: -6.5,38.5 - parent: 82 - type: Transform -- uid: 10375 - type: PaperBin5 - components: - - pos: 29.5,27.5 - parent: 82 - type: Transform -- uid: 10376 - type: BoxFolderYellow - components: - - pos: -7.6244245,34.53366 - parent: 82 - type: Transform -- uid: 10377 - type: AirlockServiceGlassLocked - components: - - pos: -33.5,-16.5 - parent: 82 - type: Transform -- uid: 10378 - type: ChairWood - components: - - pos: -22.5,-8.5 - parent: 82 - type: Transform -- uid: 10379 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,67.5 - parent: 82 - type: Transform -- uid: 10380 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-21.5 - parent: 82 - type: Transform -- uid: 10381 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 34.5,67.5 - parent: 82 - type: Transform -- uid: 10382 - type: AirlockGlass - components: - - pos: 20.5,-6.5 - parent: 82 - type: Transform -- uid: 10383 - type: WallReinforced - components: - - pos: 46.5,51.5 - parent: 82 - type: Transform -- uid: 10384 - type: AirlockExternalGlassLocked - components: - - pos: 45.5,51.5 - parent: 82 - type: Transform -- uid: 10385 - type: WallReinforced - components: - - pos: 46.5,52.5 - parent: 82 - type: Transform -- uid: 10386 - type: CrateEmptySpawner - components: - - pos: -56.5,-37.5 - parent: 82 - type: Transform -- uid: 10387 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -63.5,47.5 - parent: 82 - type: Transform -- uid: 10388 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -63.5,36.5 - parent: 82 - type: Transform -- uid: 10389 - type: LockerSecurity - components: - - pos: -63.5,50.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10390 - type: DisposalUnit - components: - - pos: -60.5,43.5 - parent: 82 - type: Transform -- uid: 10391 - type: SignEVA - components: - - pos: -36.5,28.5 - parent: 82 - type: Transform -- uid: 10392 - type: SignEVA - components: - - pos: -43.5,28.5 - parent: 82 - type: Transform -- uid: 10393 - type: FirelockGlass - components: - - pos: 44.5,-10.5 - parent: 82 - type: Transform -- uid: 10394 - type: FirelockGlass - components: - - pos: 36.5,-10.5 - parent: 82 - type: Transform -- uid: 10395 - type: FirelockGlass - components: - - pos: 39.5,1.5 - parent: 82 - type: Transform -- uid: 10396 - type: FirelockGlass - components: - - pos: 45.5,-1.5 - parent: 82 - type: Transform -- uid: 10397 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-61.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10398 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -3.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10399 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 4.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10400 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 10.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10401 - type: GasPipeFourway - components: - - pos: 33.5,25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10402 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 33.5,19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10403 - type: WindoorMedicalLocked - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-30.5 - parent: 82 - type: Transform -- uid: 10404 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 31.5,20.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10405 - type: AirlockMaintHOPLocked - components: - - pos: -7.5,3.5 - parent: 82 - type: Transform -- uid: 10406 - type: AirlockGlass - components: - - pos: -3.5,-35.5 - parent: 82 - type: Transform -- uid: 10407 - type: AirlockGlass - components: - - pos: -3.5,-34.5 - parent: 82 - type: Transform -- uid: 10408 - type: AirlockGlass - components: - - pos: 20.5,-36.5 - parent: 82 - type: Transform -- uid: 10409 - type: AirlockGlass - components: - - pos: 21.5,-36.5 - parent: 82 - type: Transform -- uid: 10410 - type: AirlockGlass - components: - - pos: 18.5,-35.5 - parent: 82 - type: Transform -- uid: 10411 - type: WallReinforced - components: - - pos: -1.5,-9.5 - parent: 82 - type: Transform -- uid: 10412 - type: WallReinforced - components: - - pos: -2.5,-9.5 - parent: 82 - type: Transform -- uid: 10413 - type: AirlockCommandGlassLocked - components: - - pos: 15.5,-10.5 - parent: 82 - type: Transform -- uid: 10414 - type: WallReinforced - components: - - pos: 16.5,-9.5 - parent: 82 - type: Transform -- uid: 10415 - type: Firelock - components: - - pos: 11.5,-12.5 - parent: 82 - type: Transform -- uid: 10416 - type: Firelock - components: - - pos: 3.5,-12.5 - parent: 82 - type: Transform -- uid: 10417 - type: CarpetPurple - components: - - pos: -21.5,-6.5 - parent: 82 - type: Transform -- uid: 10418 - type: Window - components: - - pos: -21.5,-5.5 - parent: 82 - type: Transform -- uid: 10419 - type: Window - components: - - pos: -18.5,-5.5 - parent: 82 - type: Transform -- uid: 10420 - type: AirlockGlass - components: - - pos: 19.5,-36.5 - parent: 82 - type: Transform -- uid: 10421 - type: AirlockGlass - components: - - pos: 16.5,-23.5 - parent: 82 - type: Transform -- uid: 10422 - type: AirlockGlass - components: - - pos: 16.5,-24.5 - parent: 82 - type: Transform -- uid: 10423 - type: AirlockGlass - components: - - pos: 16.5,-25.5 - parent: 82 - type: Transform -- uid: 10424 - type: ShuttersNormal - components: - - pos: 62.5,-6.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -352141.03 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver -- uid: 10425 - type: AirlockGlass - components: - - pos: 16.5,-3.5 - parent: 82 - type: Transform -- uid: 10426 - type: AirlockGlass - components: - - pos: 16.5,-2.5 - parent: 82 - type: Transform -- uid: 10427 - type: AirlockGlass - components: - - pos: -1.5,-4.5 - parent: 82 - type: Transform -- uid: 10428 - type: AirlockGlass - components: - - pos: -1.5,-3.5 - parent: 82 - type: Transform -- uid: 10429 - type: AirlockGlass - components: - - pos: -1.5,-2.5 - parent: 82 - type: Transform -- uid: 10430 - type: AirlockGlass - components: - - pos: -23.5,-1.5 - parent: 82 - type: Transform -- uid: 10431 - type: AirlockGlass - components: - - pos: -22.5,-1.5 - parent: 82 - type: Transform -- uid: 10432 - type: AirlockGlass - components: - - pos: -21.5,-1.5 - parent: 82 - type: Transform -- uid: 10433 - type: AirlockGlass - components: - - pos: -24.5,1.5 - parent: 82 - type: Transform -- uid: 10434 - type: AirlockGlass - components: - - pos: -24.5,4.5 - parent: 82 - type: Transform -- uid: 10435 - type: ClosetEmergencyFilledRandom - components: - - pos: 42.5,29.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10436 - type: WallSolid - components: - - pos: 46.5,43.5 - parent: 82 - type: Transform -- uid: 10437 - type: AirlockGlass - components: - - pos: -40.5,-15.5 - parent: 82 - type: Transform -- uid: 10438 - type: AirlockGlass - components: - - pos: -41.5,-15.5 - parent: 82 - type: Transform -- uid: 10439 - type: CrateFilledSpawner - components: - - pos: 42.5,21.5 - parent: 82 - type: Transform -- uid: 10440 - type: AirlockGlass - components: - - pos: -42.5,-15.5 - parent: 82 - type: Transform -- uid: 10441 - type: AirlockGlass - components: - - pos: 18.5,-6.5 - parent: 82 - type: Transform -- uid: 10442 - type: FirelockGlass - components: - - pos: -5.5,37.5 - parent: 82 - type: Transform -- uid: 10443 - type: FirelockGlass - components: - - pos: -4.5,37.5 - parent: 82 - type: Transform -- uid: 10444 - type: Firelock - components: - - pos: 34.5,32.5 - parent: 82 - type: Transform -- uid: 10445 - type: FirelockGlass - components: - - pos: 34.5,29.5 - parent: 82 - type: Transform -- uid: 10446 - type: Firelock - components: - - pos: 38.5,30.5 - parent: 82 - type: Transform -- uid: 10447 - type: Firelock - components: - - pos: 38.5,29.5 - parent: 82 - type: Transform -- uid: 10448 - type: Firelock - components: - - pos: 38.5,24.5 - parent: 82 - type: Transform -- uid: 10449 - type: Firelock - components: - - pos: 38.5,26.5 - parent: 82 - type: Transform -- uid: 10450 - type: Firelock - components: - - pos: 39.5,20.5 - parent: 82 - type: Transform -- uid: 10451 - type: Firelock - components: - - pos: 39.5,19.5 - parent: 82 - type: Transform -- uid: 10452 - type: Firelock - components: - - pos: 47.5,17.5 - parent: 82 - type: Transform -- uid: 10453 - type: FirelockGlass - components: - - pos: -3.5,37.5 - parent: 82 - type: Transform -- uid: 10454 - type: FirelockGlass - components: - - pos: -23.5,23.5 - parent: 82 - type: Transform -- uid: 10455 - type: FirelockGlass - components: - - pos: -22.5,23.5 - parent: 82 - type: Transform -- uid: 10456 - type: FirelockGlass - components: - - pos: -21.5,23.5 - parent: 82 - type: Transform -- uid: 10457 - type: Firelock - components: - - pos: 41.5,28.5 - parent: 82 - type: Transform -- uid: 10458 - type: PosterLegitIonRifle - components: - - pos: 50.5,-11.5 - parent: 82 - type: Transform -- uid: 10459 - type: PosterLegitHelpOthers - components: - - pos: 37.5,-10.5 - parent: 82 - type: Transform -- uid: 10460 - type: CableApcExtension - components: - - pos: -10.5,-8.5 - parent: 82 - type: Transform -- uid: 10461 - type: HighSecCommandLocked - components: - - pos: 0.5,54.5 - parent: 82 - type: Transform -- uid: 10462 - type: Catwalk - components: - - pos: -70.5,16.5 - parent: 82 - type: Transform -- uid: 10463 - type: Catwalk - components: - - pos: -70.5,17.5 - parent: 82 - type: Transform -- uid: 10464 - type: Catwalk - components: - - pos: -70.5,13.5 - parent: 82 - type: Transform -- uid: 10465 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,22.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10466 - type: WallSolid - components: - - pos: -11.5,12.5 - parent: 82 - type: Transform -- uid: 10467 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -23.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10468 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10469 - type: FirelockGlass - components: - - pos: -23.5,14.5 - parent: 82 - type: Transform -- uid: 10470 - type: FirelockGlass - components: - - pos: -22.5,14.5 - parent: 82 - type: Transform -- uid: 10471 - type: Firelock - components: - - pos: 23.5,12.5 - parent: 82 - type: Transform -- uid: 10472 - type: Firelock - components: - - pos: 23.5,13.5 - parent: 82 - type: Transform -- uid: 10473 - type: Firelock - components: - - pos: 23.5,14.5 - parent: 82 - type: Transform -- uid: 10474 - type: Firelock - components: - - pos: 34.5,12.5 - parent: 82 - type: Transform -- uid: 10475 - type: Firelock - components: - - pos: 34.5,13.5 - parent: 82 - type: Transform -- uid: 10476 - type: Firelock - components: - - pos: 34.5,14.5 - parent: 82 - type: Transform -- uid: 10477 - type: FirelockGlass - components: - - pos: -21.5,14.5 - parent: 82 - type: Transform -- uid: 10478 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-44.5 - parent: 82 - type: Transform - - devices: - - 8850 - - 22370 - - 8849 - - 22369 - type: DeviceList -- uid: 10479 - type: FirelockGlass - components: - - pos: -5.5,-15.5 - parent: 82 - type: Transform -- uid: 10480 - type: FirelockGlass - components: - - pos: 34.5,28.5 - parent: 82 - type: Transform -- uid: 10481 - type: AirlockGlass - components: - - pos: 18.5,-51.5 - parent: 82 - type: Transform -- uid: 10482 - type: AirlockGlass - components: - - pos: 18.5,-47.5 - parent: 82 - type: Transform -- uid: 10483 - type: AirlockGlass - components: - - pos: 23.5,-19.5 - parent: 82 - type: Transform -- uid: 10484 - type: AirlockGlass - components: - - pos: 23.5,-20.5 - parent: 82 - type: Transform -- uid: 10485 - type: AirlockGlass - components: - - pos: 28.5,-5.5 - parent: 82 - type: Transform -- uid: 10486 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 34.5,48.5 - parent: 82 - type: Transform -- uid: 10487 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 34.5,50.5 - parent: 82 - type: Transform -- uid: 10488 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 34.5,51.5 - parent: 82 - type: Transform -- uid: 10489 - type: FirelockGlass - components: - - pos: 63.5,2.5 - parent: 82 - type: Transform -- uid: 10490 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 20.5,48.5 - parent: 82 - type: Transform -- uid: 10491 - type: AirlockGlass - components: - - pos: 18.5,-43.5 - parent: 82 - type: Transform -- uid: 10492 - type: FirelockGlass - components: - - pos: 34.5,25.5 - parent: 82 - type: Transform -- uid: 10493 - type: FirelockGlass - components: - - pos: 34.5,24.5 - parent: 82 - type: Transform -- uid: 10494 - type: AirlockGlass - components: - - pos: 23.5,-5.5 - parent: 82 - type: Transform -- uid: 10495 - type: AirlockGlass - components: - - pos: 19.5,-6.5 - parent: 82 - type: Transform -- uid: 10496 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 26.5,57.5 - parent: 82 - type: Transform -- uid: 10497 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 27.5,57.5 - parent: 82 - type: Transform -- uid: 10498 - type: CableApcExtension - components: - - pos: -10.5,-10.5 - parent: 82 - type: Transform -- uid: 10499 - type: CableApcExtension - components: - - pos: -11.5,-9.5 - parent: 82 - type: Transform -- uid: 10500 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -1.5,56.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Gravity Gen - type: SurveillanceCamera -- uid: 10501 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 10.5,-9.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge - type: SurveillanceCamera -- uid: 10502 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-17.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Bedroom - type: SurveillanceCamera -- uid: 10503 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-14.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference Room - type: SurveillanceCamera -- uid: 10504 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 13.5,52.5 - parent: 82 - type: Transform -- uid: 10505 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 14.5,52.5 - parent: 82 - type: Transform -- uid: 10506 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 15.5,52.5 - parent: 82 - type: Transform -- uid: 10507 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 21.5,60.5 - parent: 82 - type: Transform -- uid: 10508 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: -21.5,-24.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medbay Lobby 1 - type: SurveillanceCamera -- uid: 10509 - type: SurveillanceCameraMedical - components: - - pos: -22.5,-35.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medbay Lobby 2 - type: SurveillanceCamera -- uid: 10510 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: -41.5,-30.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medbay Hallway - type: SurveillanceCamera -- uid: 10511 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: -54.5,-24.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue - type: SurveillanceCamera -- uid: 10512 - type: Table - components: - - pos: 58.5,-0.5 - parent: 82 - type: Transform -- uid: 10513 - type: FirelockGlass - components: - - pos: -12.5,28.5 - parent: 82 - type: Transform -- uid: 10514 - type: AirlockGlass - components: - - pos: 83.5,5.5 - parent: 82 - type: Transform -- uid: 10515 - type: AirlockGlass - components: - - pos: 82.5,5.5 - parent: 82 - type: Transform -- uid: 10516 - type: AirlockGlass - components: - - pos: 85.5,1.5 - parent: 82 - type: Transform -- uid: 10517 - type: AirlockGlass - components: - - pos: 33.5,5.5 - parent: 82 - type: Transform -- uid: 10518 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 0.5,54.5 - parent: 82 - type: Transform -- uid: 10519 - type: ReinforcedWindow - components: - - pos: -42.5,55.5 - parent: 82 - type: Transform -- uid: 10520 - type: ReinforcedWindow - components: - - pos: -41.5,55.5 - parent: 82 - type: Transform -- uid: 10521 - type: WallReinforced - components: - - pos: -44.5,53.5 - parent: 82 - type: Transform -- uid: 10522 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 7.5,26.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10523 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,25.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10524 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,21.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10525 - type: AirlockCommandGlassLocked - components: - - pos: 15.5,-11.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 10526 - type: AirlockCommandGlassLocked - components: - - pos: 17.5,-11.5 - parent: 82 - type: Transform -- uid: 10527 - type: AirlockGlass - components: - - pos: 86.5,1.5 - parent: 82 - type: Transform -- uid: 10528 - type: Catwalk - components: - - pos: -8.5,-45.5 - parent: 82 - type: Transform -- uid: 10529 - type: AirlockGlass - components: - - pos: 31.5,5.5 - parent: 82 - type: Transform -- uid: 10530 - type: AirlockGlass - components: - - pos: 32.5,5.5 - parent: 82 - type: Transform -- uid: 10531 - type: AirlockGlass - components: - - pos: -17.5,-2.5 - parent: 82 - type: Transform -- uid: 10532 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 10.5,32.5 - parent: 82 - type: Transform -- uid: 10533 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: -2.5,35.5 - parent: 82 - type: Transform -- uid: 10534 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: -2.5,43.5 - parent: 82 - type: Transform -- uid: 10535 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 4.5,46.5 - parent: 82 - type: Transform -- uid: 10536 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 18.5,45.5 - parent: 82 - type: Transform -- uid: 10537 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 9.5,40.5 - parent: 82 - type: Transform -- uid: 10538 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 7.5,41.5 - parent: 82 - type: Transform -- uid: 10539 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 24.5,40.5 - parent: 82 - type: Transform -- uid: 10540 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 20.5,32.5 - parent: 82 - type: Transform -- uid: 10541 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 19.5,30.5 - parent: 82 - type: Transform -- uid: 10542 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 20.5,28.5 - parent: 82 - type: Transform -- uid: 10543 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 30.5,30.5 - parent: 82 - type: Transform -- uid: 10544 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 26.5,29.5 - parent: 82 - type: Transform -- uid: 10545 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 26.5,32.5 - parent: 82 - type: Transform -- uid: 10547 - type: AirlockGlass - components: - - pos: 30.5,51.5 - parent: 82 - type: Transform -- uid: 10548 - type: AirlockGlass - components: - - pos: 30.5,50.5 - parent: 82 - type: Transform -- uid: 10549 - type: AirlockGlass - components: - - pos: 30.5,49.5 - parent: 82 - type: Transform -- uid: 10550 - type: VendingMachineChefvend - components: - - flags: SessionSpecific - type: MetaData - - pos: -35.5,-9.5 - parent: 82 - type: Transform -- uid: 10551 - type: AirlockScienceLocked - components: - - pos: 25.5,55.5 - parent: 82 - type: Transform -- uid: 10552 - type: AirlockScienceLocked - components: - - pos: 25.5,54.5 - parent: 82 - type: Transform -- uid: 10553 - type: ReinforcedWindow - components: - - pos: -47.5,55.5 - parent: 82 - type: Transform -- uid: 10554 - type: ReinforcedWindow - components: - - pos: -46.5,55.5 - parent: 82 - type: Transform -- uid: 10555 - type: AirlockGlass - components: - - pos: 30.5,25.5 - parent: 82 - type: Transform -- uid: 10556 - type: WeaponLaserCarbine - components: - - pos: 52.347,-20.216564 - parent: 82 - type: Transform -- uid: 10557 - type: WindowReinforcedDirectional - components: - - pos: 48.5,-18.5 - parent: 82 - type: Transform -- uid: 10558 - type: AirlockGlass - components: - - pos: 76.5,5.5 - parent: 82 - type: Transform -- uid: 10559 - type: AirlockGlass - components: - - pos: 75.5,5.5 - parent: 82 - type: Transform -- uid: 10560 - type: ReinforcedWindow - components: - - pos: -43.5,55.5 - parent: 82 - type: Transform -- uid: 10561 - type: AirlockGlass - components: - - pos: 3.5,51.5 - parent: 82 - type: Transform -- uid: 10562 - type: AirlockGlass - components: - - pos: 3.5,50.5 - parent: 82 - type: Transform -- uid: 10563 - type: AirlockGlass - components: - - pos: 3.5,49.5 - parent: 82 - type: Transform -- uid: 10564 - type: AirlockGlass - components: - - pos: -17.5,-4.5 - parent: 82 - type: Transform -- uid: 10565 - type: FirelockGlass - components: - - pos: 55.5,4.5 - parent: 82 - type: Transform -- uid: 10566 - type: FirelockGlass - components: - - pos: -21.5,-1.5 - parent: 82 - type: Transform -- uid: 10567 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: -24.5,25.5 - parent: 82 - type: Transform -- uid: 10568 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: -32.5,26.5 - parent: 82 - type: Transform -- uid: 10569 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: -34.5,28.5 - parent: 82 - type: Transform -- uid: 10570 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: -44.5,23.5 - parent: 82 - type: Transform -- uid: 10571 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: -46.5,28.5 - parent: 82 - type: Transform -- uid: 10572 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: -48.5,13.5 - parent: 82 - type: Transform -- uid: 10573 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -49.5,11.5 - parent: 82 - type: Transform -- uid: 10574 - type: AirlockGlass - components: - - pos: -5.5,32.5 - parent: 82 - type: Transform -- uid: 10575 - type: AirlockGlass - components: - - pos: -4.5,32.5 - parent: 82 - type: Transform -- uid: 10576 - type: AirlockGlass - components: - - pos: -3.5,32.5 - parent: 82 - type: Transform -- uid: 10577 - type: Catwalk - components: - - pos: -10.5,-45.5 - parent: 82 - type: Transform -- uid: 10578 - type: FirelockGlass - components: - - pos: -22.5,-1.5 - parent: 82 - type: Transform -- uid: 10579 - type: Rack - components: - - pos: 56.5,6.5 - parent: 82 - type: Transform -- uid: 10580 - type: AirlockGlass - components: - - pos: -1.5,-23.5 - parent: 82 - type: Transform -- uid: 10581 - type: AirlockGlass - components: - - pos: -18.5,18.5 - parent: 82 - type: Transform -- uid: 10582 - type: AirlockGlass - components: - - pos: -18.5,19.5 - parent: 82 - type: Transform -- uid: 10583 - type: AirlockGlass - components: - - pos: -54.5,31.5 - parent: 82 - type: Transform -- uid: 10584 - type: AirlockGlass - components: - - pos: -54.5,30.5 - parent: 82 - type: Transform -- uid: 10585 - type: AirlockGlass - components: - - pos: -54.5,29.5 - parent: 82 - type: Transform -- uid: 10586 - type: AirlockGlass - components: - - pos: -1.5,-24.5 - parent: 82 - type: Transform -- uid: 10587 - type: AirlockGlass - components: - - pos: -1.5,-25.5 - parent: 82 - type: Transform -- uid: 10588 - type: AirlockGlass - components: - - pos: -6.5,-28.5 - parent: 82 - type: Transform -- uid: 10589 - type: Table - components: - - pos: -15.5,23.5 - parent: 82 - type: Transform -- uid: 10590 - type: AirlockGlass - components: - - pos: -5.5,-28.5 - parent: 82 - type: Transform -- uid: 10591 - type: AirlockGlass - components: - - pos: -4.5,-28.5 - parent: 82 - type: Transform -- uid: 10592 - type: soda_dispenser - components: - - rot: 3.141592653589793 rad - pos: -15.5,23.5 - parent: 82 - type: Transform -- uid: 10593 - type: StoolBar - components: - - pos: -15.5,26.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10594 - type: AirlockGlass - components: - - pos: -3.5,-20.5 - parent: 82 - type: Transform -- uid: 10595 - type: AirlockGlass - components: - - pos: -4.5,-20.5 - parent: 82 - type: Transform -- uid: 10596 - type: AirlockGlass - components: - - pos: -5.5,-20.5 - parent: 82 - type: Transform -- uid: 10597 - type: GasPipeStraight - components: - - pos: -9.5,-35.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10598 - type: CableApcExtension - components: - - pos: -9.5,-39.5 - parent: 82 - type: Transform -- uid: 10599 - type: Chair - components: - - pos: -16.5,-32.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10600 - type: Chair - components: - - pos: -17.5,-32.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10601 - type: FloraTreeStumpConifer - components: - - pos: -10.950781,-37.351818 - parent: 82 - type: Transform -- uid: 10602 - type: FloraTreeSnow03 - components: - - pos: -11.127623,-36.511936 - parent: 82 - type: Transform -- uid: 10603 - type: AirlockGlass - components: - - pos: -2.5,-45.5 - parent: 82 - type: Transform -- uid: 10604 - type: AirlockGlass - components: - - pos: -2.5,-43.5 - parent: 82 - type: Transform -- uid: 10605 - type: AirlockGlass - components: - - pos: -4.5,-58.5 - parent: 82 - type: Transform -- uid: 10606 - type: AirlockGlass - components: - - pos: -5.5,-58.5 - parent: 82 - type: Transform -- uid: 10607 - type: AirlockGlass - components: - - pos: -6.5,-58.5 - parent: 82 - type: Transform -- uid: 10608 - type: AirlockGlass - components: - - pos: -20.5,-33.5 - parent: 82 - type: Transform -- uid: 10609 - type: AirlockGlass - components: - - pos: -20.5,-34.5 - parent: 82 - type: Transform -- uid: 10610 - type: AirlockGlass - components: - - pos: -20.5,-24.5 - parent: 82 - type: Transform -- uid: 10611 - type: AirlockGlass - components: - - pos: -20.5,-25.5 - parent: 82 - type: Transform -- uid: 10612 - type: AirlockGlass - components: - - pos: -20.5,-26.5 - parent: 82 - type: Transform -- uid: 10613 - type: StoolBar - components: - - pos: -14.5,26.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10614 - type: StoolBar - components: - - pos: -13.5,26.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10615 - type: StoolBar - components: - - pos: -12.5,26.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10616 - type: TableWood - components: - - pos: -19.5,26.5 - parent: 82 - type: Transform -- uid: 10617 - type: TableWood - components: - - pos: -17.5,26.5 - parent: 82 - type: Transform -- uid: 10618 - type: ChairWood - components: - - pos: -19.5,27.5 - parent: 82 - type: Transform -- uid: 10619 - type: ChairWood - components: - - pos: -17.5,27.5 - parent: 82 - type: Transform -- uid: 10620 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -19.5,25.5 - parent: 82 - type: Transform -- uid: 10621 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -17.5,25.5 - parent: 82 - type: Transform -- uid: 10622 - type: AirSensor - components: - - pos: 12.5,3.5 - parent: 82 - type: Transform -- uid: 10623 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: -1.5,29.5 - parent: 82 - type: Transform -- uid: 10624 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,29.5 - parent: 82 - type: Transform -- uid: 10625 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 4.5,29.5 - parent: 82 - type: Transform -- uid: 10626 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 2.5,29.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10627 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 3.5,29.5 - parent: 82 - type: Transform -- uid: 10628 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 15.5,29.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10629 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 17.5,29.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10630 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 16.5,29.5 - parent: 82 - type: Transform -- uid: 10631 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,29.5 - parent: 82 - type: Transform -- uid: 10632 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,29.5 - parent: 82 - type: Transform -- uid: 10633 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,29.5 - parent: 82 - type: Transform -- uid: 10634 - type: BannerEngineering - components: - - pos: -26.5,32.5 - parent: 82 - type: Transform -- uid: 10635 - type: BannerEngineering - components: - - pos: -12.5,32.5 - parent: 82 - type: Transform -- uid: 10636 - type: ShowcaseRobotMarauder - components: - - pos: -23.5,33.5 - parent: 82 - type: Transform -- uid: 10637 - type: BannerEngineering - components: - - pos: -6.5,51.5 - parent: 82 - type: Transform -- uid: 10638 - type: ShowcaseRobotAntique - components: - - pos: -7.5,41.5 - parent: 82 - type: Transform -- uid: 10639 - type: ShowcaseRobotWhite - components: - - pos: -7.5,47.5 - parent: 82 - type: Transform -- uid: 10640 - type: WallReinforced - components: - - pos: -6.5,32.5 - parent: 82 - type: Transform -- uid: 10641 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -59.5,41.5 - parent: 82 - type: Transform -- uid: 10642 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -55.5,45.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10644 - type: ClosetFireFilled - components: - - pos: -61.5,35.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10645 - type: WindowDirectional - components: - - pos: -59.5,38.5 - parent: 82 - type: Transform -- uid: 10646 - type: Catwalk - components: - - pos: -70.5,14.5 - parent: 82 - type: Transform -- uid: 10647 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -59.5,38.5 - parent: 82 - type: Transform -- uid: 10648 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -59.5,40.5 - parent: 82 - type: Transform -- uid: 10649 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -59.5,42.5 - parent: 82 - type: Transform -- uid: 10650 - type: Grille - components: - - pos: -51.5,54.5 - parent: 82 - type: Transform -- uid: 10651 - type: ClosetEmergencyFilledRandom - components: - - pos: -62.5,35.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10652 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -60.5,42.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10653 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -60.5,41.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10654 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -60.5,40.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10655 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -60.5,39.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10656 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -58.5,42.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10657 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -58.5,41.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10658 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -58.5,40.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10659 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -58.5,39.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10660 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -60.5,35.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10661 - type: FirelockGlass - components: - - pos: -23.5,-1.5 - parent: 82 - type: Transform -- uid: 10662 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -58.5,35.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10663 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -55.5,40.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10664 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -55.5,41.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10665 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -55.5,42.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10666 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -55.5,43.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10667 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -55.5,44.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10668 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -63.5,42.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10669 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -63.5,43.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10670 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -63.5,44.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10671 - type: PottedPlantRandomPlastic - components: - - pos: -59.5,44.5 - parent: 82 - type: Transform -- uid: 10672 - type: PottedPlantRandom - components: - - pos: -59.5,37.5 - parent: 82 - type: Transform -- uid: 10673 - type: PottedPlantRandom - components: - - pos: -63.5,35.5 - parent: 82 - type: Transform -- uid: 10674 - type: PottedPlantRandom - components: - - pos: -62.5,45.5 - parent: 82 - type: Transform -- uid: 10675 - type: WallSolid - components: - - pos: -53.5,52.5 - parent: 82 - type: Transform -- uid: 10676 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -60.5,38.5 - parent: 82 - type: Transform -- uid: 10677 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -58.5,43.5 - parent: 82 - type: Transform -- uid: 10678 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -58.5,38.5 - parent: 82 - type: Transform -- uid: 10679 - type: PottedPlantRandomPlastic - components: - - pos: -58.5,51.5 - parent: 82 - type: Transform -- uid: 10680 - type: AirlockGlass - components: - - pos: -57.5,34.5 - parent: 82 - type: Transform -- uid: 10681 - type: AirlockGlass - components: - - pos: -56.5,34.5 - parent: 82 - type: Transform -- uid: 10682 - type: AirlockGlass - components: - - pos: -55.5,34.5 - parent: 82 - type: Transform -- uid: 10683 - type: AirlockGlass - components: - - pos: -33.5,29.5 - parent: 82 - type: Transform -- uid: 10684 - type: AirlockGlass - components: - - pos: -33.5,30.5 - parent: 82 - type: Transform -- uid: 10685 - type: AirlockGlass - components: - - pos: -33.5,31.5 - parent: 82 - type: Transform -- uid: 10686 - type: AirlockGlass - components: - - pos: -6.5,29.5 - parent: 82 - type: Transform -- uid: 10687 - type: AirlockGlass - components: - - pos: -6.5,30.5 - parent: 82 - type: Transform -- uid: 10688 - type: AirlockGlass - components: - - pos: -6.5,31.5 - parent: 82 - type: Transform -- uid: 10689 - type: WallSolid - components: - - pos: -34.5,-5.5 - parent: 82 - type: Transform -- uid: 10690 - type: WallSolid - components: - - pos: -34.5,-6.5 - parent: 82 - type: Transform -- uid: 10691 - type: WallSolid - components: - - pos: -35.5,-5.5 - parent: 82 - type: Transform -- uid: 10692 - type: ReagentContainerRice - components: - - pos: -33.601192,-10.245844 - parent: 82 - type: Transform -- uid: 10693 - type: FoodMealPigblanket - components: - - pos: -33.37114,-10.433768 - parent: 82 - type: Transform -- uid: 10694 - type: FirelockGlass - components: - - pos: -21.5,7.5 - parent: 82 - type: Transform -- uid: 10695 - type: FirelockGlass - components: - - pos: -18.5,19.5 - parent: 82 - type: Transform -- uid: 10696 - type: ComputerAlert - components: - - pos: 11.5,66.5 - parent: 82 - type: Transform -- uid: 10697 - type: FirelockGlass - components: - - pos: -18.5,18.5 - parent: 82 - type: Transform -- uid: 10698 - type: ComputerResearchAndDevelopment - components: - - pos: 13.5,66.5 - parent: 82 - type: Transform -- uid: 10699 - type: CableApcExtension - components: - - pos: 24.5,75.5 - parent: 82 - type: Transform -- uid: 10700 - type: CableApcExtension - components: - - pos: 24.5,76.5 - parent: 82 - type: Transform -- uid: 10701 - type: AirlockGlass - components: - - pos: -11.5,-26.5 - parent: 82 - type: Transform -- uid: 10702 - type: AirlockGlass - components: - - pos: -11.5,-25.5 - parent: 82 - type: Transform -- uid: 10703 - type: AirlockGlass - components: - - pos: -11.5,-24.5 - parent: 82 - type: Transform -- uid: 10704 - type: ClothingUniformJumpsuitSafari - components: - - pos: -14.379087,-29.473778 - parent: 82 - type: Transform -- uid: 10705 - type: BedsheetSpawner - components: - - pos: 0.5,-37.5 - parent: 82 - type: Transform -- uid: 10706 - type: BedsheetClown - components: - - pos: 13.5,-39.5 - parent: 82 - type: Transform -- uid: 10707 - type: Dresser - components: - - pos: -2.5,-39.5 - parent: 82 - type: Transform -- uid: 10708 - type: Dresser - components: - - pos: 0.5,-32.5 - parent: 82 - type: Transform -- uid: 10709 - type: Dresser - components: - - pos: 9.5,-31.5 - parent: 82 - type: Transform -- uid: 10710 - type: Dresser - components: - - pos: 11.5,-32.5 - parent: 82 - type: Transform -- uid: 10711 - type: Dresser - components: - - pos: 11.5,-39.5 - parent: 82 - type: Transform -- uid: 10712 - type: Dresser - components: - - pos: 15.5,-39.5 - parent: 82 - type: Transform -- uid: 10713 - type: Dresser - components: - - pos: 4.5,-37.5 - parent: 82 - type: Transform -- uid: 10714 - type: TableWood - components: - - pos: -0.5,-39.5 - parent: 82 - type: Transform -- uid: 10715 - type: TableWood - components: - - pos: 3.5,-32.5 - parent: 82 - type: Transform -- uid: 10716 - type: TableWood - components: - - pos: 5.5,-32.5 - parent: 82 - type: Transform -- uid: 10717 - type: TableWood - components: - - pos: 2.5,-37.5 - parent: 82 - type: Transform -- uid: 10718 - type: TableWood - components: - - pos: 14.5,-32.5 - parent: 82 - type: Transform -- uid: 10719 - type: TableWood - components: - - pos: 12.5,-37.5 - parent: 82 - type: Transform -- uid: 10720 - type: TableWood - components: - - pos: 17.5,-38.5 - parent: 82 - type: Transform -- uid: 10721 - type: SinkStemlessWater - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-38.5 - parent: 82 - type: Transform -- uid: 10722 - type: Mirror - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-38.5 - parent: 82 - type: Transform -- uid: 10723 - type: Mirror - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-39.5 - parent: 82 - type: Transform -- uid: 10724 - type: SinkStemlessWater - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-38.5 - parent: 82 - type: Transform -- uid: 10725 - type: SinkStemlessWater - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-39.5 - parent: 82 - type: Transform -- uid: 10726 - type: SinkStemlessWater - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-39.5 - parent: 82 - type: Transform -- uid: 10727 - type: Mirror - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-38.5 - parent: 82 - type: Transform -- uid: 10728 - type: Mirror - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-39.5 - parent: 82 - type: Transform -- uid: 10729 - type: RandomSoap - components: - - pos: 8.5,-44.5 - parent: 82 - type: Transform -- uid: 10730 - type: FloorDrain - components: - - pos: 8.5,-45.5 - parent: 82 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 10731 - type: AirlockGlass - components: - - pos: 7.5,-43.5 - parent: 82 - type: Transform -- uid: 10732 - type: Girder - components: - - pos: 4.5,-45.5 - parent: 82 - type: Transform -- uid: 10733 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 4.5,-46.5 - parent: 82 - type: Transform -- uid: 10734 - type: AirlockMaint - components: - - pos: 2.5,-45.5 - parent: 82 - type: Transform -- uid: 10735 - type: AirlockMaint - components: - - pos: 2.5,-43.5 - parent: 82 - type: Transform -- uid: 10736 - type: AirlockMaint - components: - - pos: 3.5,-40.5 - parent: 82 - type: Transform -- uid: 10737 - type: AirlockMaint - components: - - pos: 10.5,-45.5 - parent: 82 - type: Transform -- uid: 10738 - type: AirlockMaint - components: - - pos: 12.5,-47.5 - parent: 82 - type: Transform -- uid: 10739 - type: AirlockMaint - components: - - pos: -3.5,-51.5 - parent: 82 - type: Transform -- uid: 10740 - type: AirlockMaintTheatreLocked - components: - - pos: -12.5,-46.5 - parent: 82 - type: Transform -- uid: 10741 - type: AirlockMaint - components: - - pos: -7.5,-45.5 - parent: 82 - type: Transform -- uid: 10742 - type: AirlockMaint - components: - - pos: -18.5,-44.5 - parent: 82 - type: Transform -- uid: 10743 - type: WallReinforced - components: - - pos: 32.5,70.5 - parent: 82 - type: Transform -- uid: 10744 - type: AirlockMaint - components: - - pos: -46.5,-11.5 - parent: 82 - type: Transform -- uid: 10745 - type: AirlockMaint - components: - - pos: -43.5,-6.5 - parent: 82 - type: Transform -- uid: 10746 - type: AirlockMaint - components: - - pos: -43.5,-13.5 - parent: 82 - type: Transform -- uid: 10747 - type: AirlockExternalGlassLocked - components: - - pos: -50.5,11.5 - parent: 82 - type: Transform -- uid: 10748 - type: AirlockExternalGlassLocked - components: - - pos: -54.5,11.5 - parent: 82 - type: Transform -- uid: 10749 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -47.5,16.5 - parent: 82 - type: Transform -- uid: 10750 - type: AirlockMaint - components: - - pos: -24.5,9.5 - parent: 82 - type: Transform -- uid: 10751 - type: AirlockMaint - components: - - pos: -46.5,28.5 - parent: 82 - type: Transform -- uid: 10752 - type: AirlockMaint - components: - - pos: -34.5,28.5 - parent: 82 - type: Transform -- uid: 10753 - type: TableWood - components: - - pos: 24.5,47.5 - parent: 82 - type: Transform -- uid: 10754 - type: TableWood - components: - - pos: 24.5,46.5 - parent: 82 - type: Transform -- uid: 10755 - type: Table - components: - - pos: 22.5,46.5 - parent: 82 - type: Transform -- uid: 10756 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 22.5,45.5 - parent: 82 - type: Transform -- uid: 10757 - type: BoozeDispenser - components: - - rot: 1.5707963267948966 rad - pos: 22.5,46.5 - parent: 82 - type: Transform -- uid: 10758 - type: Barricade - components: - - rot: 1.5707963267948966 rad - pos: 27.5,47.5 - parent: 82 - type: Transform -- uid: 10759 - type: Barricade - components: - - rot: 1.5707963267948966 rad - pos: 26.5,43.5 - parent: 82 - type: Transform -- uid: 10760 - type: Barricade - components: - - rot: 1.5707963267948966 rad - pos: 24.5,40.5 - parent: 82 - type: Transform -- uid: 10761 - type: Barricade - components: - - rot: 1.5707963267948966 rad - pos: 24.5,45.5 - parent: 82 - type: Transform -- uid: 10762 - type: Barricade - components: - - rot: 1.5707963267948966 rad - pos: 28.5,41.5 - parent: 82 - type: Transform -- uid: 10763 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 28.5,43.5 - parent: 82 - type: Transform -- uid: 10764 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 26.5,46.5 - parent: 82 - type: Transform -- uid: 10765 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 26.5,42.5 - parent: 82 - type: Transform -- uid: 10766 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 26.5,41.5 - parent: 82 - type: Transform -- uid: 10767 - type: ChairWood - components: - - pos: 28.5,44.5 - parent: 82 - type: Transform -- uid: 10768 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 28.5,42.5 - parent: 82 - type: Transform -- uid: 10769 - type: ChairWood - components: - - pos: 26.5,47.5 - parent: 82 - type: Transform -- uid: 10770 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 26.5,45.5 - parent: 82 - type: Transform -- uid: 10771 - type: ClothingShoeSlippersDuck - components: - - pos: 24.548632,47.460842 - parent: 82 - type: Transform -- uid: 10772 - type: ClothingUniformJumpsuitDetectiveGrey - components: - - pos: 24.215298,46.821953 - parent: 82 - type: Transform -- uid: 10773 - type: ClothingUniformJumpskirtDetectiveGrey - components: - - pos: 24.465298,46.585842 - parent: 82 - type: Transform -- uid: 10774 - type: CrowbarRed - components: - - pos: 24.659742,46.558064 - parent: 82 - type: Transform -- uid: 10775 - type: AirlockMaint - components: - - pos: 26.5,32.5 - parent: 82 - type: Transform -- uid: 10776 - type: AirlockMaint - components: - - pos: 26.5,29.5 - parent: 82 - type: Transform -- uid: 10777 - type: Rack - components: - - pos: 1.5,-47.5 - parent: 82 - type: Transform -- uid: 10778 - type: Rack - components: - - pos: 0.5,-47.5 - parent: 82 - type: Transform -- uid: 10779 - type: Rack - components: - - pos: -0.5,-47.5 - parent: 82 - type: Transform -- uid: 10780 - type: Rack - components: - - pos: 0.5,-45.5 - parent: 82 - type: Transform -- uid: 10781 - type: Rack - components: - - pos: -0.5,-45.5 - parent: 82 - type: Transform -- uid: 10782 - type: Rack - components: - - pos: 0.5,-43.5 - parent: 82 - type: Transform -- uid: 10783 - type: Rack - components: - - pos: -0.5,-43.5 - parent: 82 - type: Transform -- uid: 10784 - type: Rack - components: - - pos: 1.5,-41.5 - parent: 82 - type: Transform -- uid: 10785 - type: Rack - components: - - pos: 0.5,-41.5 - parent: 82 - type: Transform -- uid: 10786 - type: Rack - components: - - pos: -0.5,-41.5 - parent: 82 - type: Transform -- uid: 10787 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,-26.5 - parent: 82 - type: Transform -- uid: 10788 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 15.5,-26.5 - parent: 82 - type: Transform -- uid: 10789 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,-1.5 - parent: 82 - type: Transform -- uid: 10790 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,-1.5 - parent: 82 - type: Transform -- uid: 10791 - type: ComfyChair - components: - - pos: 0.5,-1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10792 - type: ComfyChair - components: - - pos: 2.5,-1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10793 - type: ComfyChair - components: - - pos: 12.5,-1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10794 - type: ComfyChair - components: - - pos: 14.5,-1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10795 - type: ComfyChair - components: - - pos: 6.5,-1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10796 - type: ComfyChair - components: - - pos: 8.5,-1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10797 - type: TableGlass - components: - - pos: 1.5,-1.5 - parent: 82 - type: Transform -- uid: 10798 - type: TableGlass - components: - - pos: 7.5,-1.5 - parent: 82 - type: Transform -- uid: 10799 - type: TableGlass - components: - - pos: 13.5,-1.5 - parent: 82 - type: Transform -- uid: 10800 - type: DisposalUnit - components: - - pos: 5.5,-1.5 - parent: 82 - type: Transform -- uid: 10801 - type: ClosetWallFireFilledRandom - components: - - pos: 4.5,-1.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10802 - type: ClosetWallEmergencyFilledRandom - components: - - pos: 10.5,-1.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10803 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -1.5,48.5 - parent: 82 - type: Transform -- uid: 10804 - type: SolarPanel - components: - - pos: -75.5,18.5 - parent: 82 - type: Transform -- uid: 10805 - type: SolarPanel - components: - - pos: -75.5,19.5 - parent: 82 - type: Transform -- uid: 10806 - type: SolarPanel - components: - - pos: -75.5,20.5 - parent: 82 - type: Transform -- uid: 10807 - type: WindowDirectional - components: - - pos: -6.5,-23.5 - parent: 82 - type: Transform -- uid: 10808 - type: ClosetEmergencyFilledRandom - components: - - pos: -19.5,-42.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10809 - type: ClosetFireFilled - components: - - pos: -19.5,-43.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10810 - type: WindowDirectional - components: - - pos: -7.5,-23.5 - parent: 82 - type: Transform -- uid: 10811 - type: WindowDirectional - components: - - pos: -8.5,-23.5 - parent: 82 - type: Transform -- uid: 10812 - type: RandomInstruments - components: - - pos: -19.5,-19.5 - parent: 82 - type: Transform -- uid: 10813 - type: RandomInstruments - components: - - pos: -18.5,-19.5 - parent: 82 - type: Transform -- uid: 10814 - type: Barricade - components: - - pos: -9.5,22.5 - parent: 82 - type: Transform -- uid: 10815 - type: Barricade - components: - - pos: -8.5,26.5 - parent: 82 - type: Transform -- uid: 10816 - type: Barricade - components: - - pos: -10.5,27.5 - parent: 82 - type: Transform -- uid: 10817 - type: Barricade - components: - - pos: -8.5,21.5 - parent: 82 - type: Transform -- uid: 10818 - type: CrateEngineeringElectricalSupplies - components: - - pos: -9.5,21.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10819 - type: CrateEngineeringCableBulk - components: - - pos: -10.5,21.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10820 - type: Rack - components: - - pos: -10.5,25.5 - parent: 82 - type: Transform -- uid: 10821 - type: Rack - components: - - pos: -10.5,24.5 - parent: 82 - type: Transform -- uid: 10822 - type: MaintenanceToolSpawner - components: - - pos: -10.5,25.5 - parent: 82 - type: Transform -- uid: 10823 - type: MaintenanceToolSpawner - components: - - pos: -10.5,24.5 - parent: 82 - type: Transform -- uid: 10824 - type: MaintenanceWeaponSpawner - components: - - pos: -8.5,27.5 - parent: 82 - type: Transform -- uid: 10825 - type: Rack - components: - - pos: -9.5,27.5 - parent: 82 - type: Transform -- uid: 10826 - type: SheetSteel - components: - - pos: -9.4861355,27.619755 - parent: 82 - type: Transform -- uid: 10827 - type: MaterialDurathread - components: - - pos: -8.322657,2.410325 - parent: 82 - type: Transform -- uid: 10828 - type: VendingMachineCart - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,-0.5 - parent: 82 - type: Transform -- uid: 10829 - type: AirlockHeadOfPersonnelLocked - components: - - pos: -12.5,-1.5 - parent: 82 - type: Transform -- uid: 10830 - type: AirlockHeadOfPersonnelGlassLocked - components: - - pos: -9.5,1.5 - parent: 82 - type: Transform -- uid: 10831 - type: DogBed - components: - - pos: -7.5,1.5 - parent: 82 - type: Transform -- uid: 10832 - type: Table - components: - - pos: -6.5,1.5 - parent: 82 - type: Transform -- uid: 10833 - type: BrbSign - components: - - pos: -6.739324,1.660325 - parent: 82 - type: Transform -- uid: 10834 - type: RubberStampHop - components: - - pos: -6.5865464,1.3825479 - parent: 82 - type: Transform -- uid: 10835 - type: RubberStampDenied - components: - - pos: -6.392101,1.535325 - parent: 82 - type: Transform -- uid: 10836 - type: BoxFolderRed - components: - - rot: 1.5707963267948966 rad - pos: -6.40599,1.5908813 - parent: 82 - type: Transform -- uid: 10837 - type: Catwalk - components: - - pos: -70.5,15.5 - parent: 82 - type: Transform -- uid: 10838 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,58.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10839 - type: ComputerId - components: - - rot: -1.5707963267948966 rad - pos: -4.5,1.5 - parent: 82 - type: Transform -- uid: 10840 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -5.5,1.5 - parent: 82 - type: Transform -- uid: 10841 - type: CableApcExtension - components: - - pos: 9.5,73.5 - parent: 82 - type: Transform -- uid: 10842 - type: WindoorSecure - components: - - pos: -5.5,0.5 - parent: 82 - type: Transform -- uid: 10843 - type: UniformPrinter - components: - - pos: -4.5,3.5 - parent: 82 - type: Transform -- uid: 10844 - type: Table - components: - - pos: -8.5,2.5 - parent: 82 - type: Transform -- uid: 10845 - type: SpawnMobCorgi - components: - - pos: -7.5,1.5 - parent: 82 - type: Transform -- uid: 10846 - type: Fireplace - components: - - pos: -11.5,2.5 - parent: 82 - type: Transform -- uid: 10847 - type: PosterLegitIan - components: - - pos: -5.5,3.5 - parent: 82 - type: Transform -- uid: 10848 - type: TableWood - components: - - pos: -11.5,-0.5 - parent: 82 - type: Transform -- uid: 10849 - type: ChairWood - components: - - pos: -11.5,0.5 - parent: 82 - type: Transform -- uid: 10850 - type: CarpetBlue - components: - - pos: -12.5,1.5 - parent: 82 - type: Transform -- uid: 10851 - type: CarpetBlue - components: - - pos: -12.5,2.5 - parent: 82 - type: Transform -- uid: 10852 - type: CarpetBlue - components: - - pos: -11.5,1.5 - parent: 82 - type: Transform -- uid: 10853 - type: CarpetBlue - components: - - pos: -11.5,2.5 - parent: 82 - type: Transform -- uid: 10854 - type: CarpetBlue - components: - - pos: -10.5,1.5 - parent: 82 - type: Transform -- uid: 10855 - type: CarpetBlue - components: - - pos: -10.5,2.5 - parent: 82 - type: Transform -- uid: 10856 - type: AirlockMaintRnDLocked - components: - - pos: 30.5,68.5 - parent: 82 - type: Transform -- uid: 10857 - type: SpawnPointChef - components: - - pos: -31.5,-12.5 - parent: 82 - type: Transform -- uid: 10858 - type: AirlockMaintEngiLocked - components: - - pos: 9.5,40.5 - parent: 82 - type: Transform -- uid: 10859 - type: AirlockEngineeringGlassLocked - components: - - pos: 10.5,32.5 - parent: 82 - type: Transform -- uid: 10860 - type: Grille - components: - - pos: -50.5,57.5 - parent: 82 - type: Transform -- uid: 10861 - type: ClothingShoesBootsMag - components: - - pos: 26.279524,12.488322 - parent: 82 - type: Transform -- uid: 10862 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-11.5 - parent: 82 - type: Transform -- uid: 10863 - type: HighSecCommandLocked - components: - - pos: -26.5,17.5 - parent: 82 - type: Transform -- uid: 10864 - type: SignBridge - components: - - pos: -2.5,-8.5 - parent: 82 - type: Transform -- uid: 10865 - type: SignBridge - components: - - pos: 17.5,-8.5 - parent: 82 - type: Transform -- uid: 10866 - type: SignChapel - components: - - pos: -18.5,20.5 - parent: 82 - type: Transform -- uid: 10867 - type: SignChem - components: - - pos: -37.5,-29.5 - parent: 82 - type: Transform -- uid: 10868 - type: SignConference - components: - - pos: 4.5,-12.5 - parent: 82 - type: Transform -- uid: 10869 - type: SignAtmos - components: - - pos: 30.5,11.5 - parent: 82 - type: Transform -- uid: 10870 - type: SignArmory - components: - - pos: 59.5,-17.5 - parent: 82 - type: Transform -- uid: 10871 - type: SignCargo - components: - - pos: 34.5,31.5 - parent: 82 - type: Transform -- uid: 10872 - type: AirSensor - components: - - pos: 6.5,3.5 - parent: 82 - type: Transform -- uid: 10873 - type: SignDrones - components: - - pos: 23.5,-1.5 - parent: 82 - type: Transform -- uid: 10874 - type: SignEngineering - components: - - pos: -8.5,46.5 - parent: 82 - type: Transform -- uid: 10875 - type: SignFire - components: - - pos: 3.5,2.5 - parent: 82 - type: Transform -- uid: 10876 - type: SignFlammableMed - components: - - pos: -0.5,2.5 - parent: 82 - type: Transform -- uid: 10877 - type: SignFlammableMed - components: - - pos: 5.5,2.5 - parent: 82 - type: Transform -- uid: 10878 - type: SignFlammableMed - components: - - pos: 11.5,2.5 - parent: 82 - type: Transform -- uid: 10879 - type: SignFire - components: - - pos: 9.5,2.5 - parent: 82 - type: Transform -- uid: 10880 - type: SignFire - components: - - pos: 15.5,2.5 - parent: 82 - type: Transform -- uid: 10881 - type: SignGravity - components: - - pos: -0.5,54.5 - parent: 82 - type: Transform -- uid: 10882 - type: SignInterrogation - components: - - pos: 47.5,-7.5 - parent: 82 - type: Transform -- uid: 10883 - type: WallReinforced - components: - - pos: 30.5,69.5 - parent: 82 - type: Transform -- uid: 10884 - type: SignMedical - components: - - pos: -20.5,-23.5 - parent: 82 - type: Transform -- uid: 10885 - type: SignMedical - components: - - pos: -20.5,-27.5 - parent: 82 - type: Transform -- uid: 10886 - type: WallReinforced - components: - - pos: 32.5,72.5 - parent: 82 - type: Transform -- uid: 10887 - type: GyroscopeMachineCircuitboard - components: - - pos: 39.884926,34.580906 - parent: 82 - type: Transform -- uid: 10888 - type: ThrusterMachineCircuitboard - components: - - pos: 40.097908,34.467377 - parent: 82 - type: Transform -- uid: 10889 - type: ThrusterMachineCircuitboard - components: - - pos: 40.026913,34.680244 - parent: 82 - type: Transform -- uid: 10890 - type: FoodCondimentPacketSalt - components: - - pos: 48.001007,-41.332283 - parent: 82 - type: Transform -- uid: 10891 - type: FoodKebabSkewer - components: - - pos: 47.871353,-41.4544 - parent: 82 - type: Transform -- uid: 10892 - type: BoxFlashbang - components: - - pos: 56.24755,-2.2133627 - parent: 82 - type: Transform -- uid: 10893 - type: SignPrison - components: - - pos: 53.5,-20.5 - parent: 82 - type: Transform -- uid: 10894 - type: SignRobo - components: - - pos: 12.5,52.5 - parent: 82 - type: Transform -- uid: 10895 - type: SignRND - components: - - pos: 30.5,57.5 - parent: 82 - type: Transform -- uid: 10896 - type: SignToolStorage - components: - - pos: -24.5,6.5 - parent: 82 - type: Transform -- uid: 10897 - type: Grille - components: - - pos: 43.5,-47.5 - parent: 82 - type: Transform -- uid: 10898 - type: SignToolStorage - components: - - pos: 25.5,-5.5 - parent: 82 - type: Transform -- uid: 10899 - type: CableApcExtension - components: - - pos: 10.5,74.5 - parent: 82 - type: Transform -- uid: 10900 - type: SignVirology - components: - - pos: -41.5,-29.5 - parent: 82 - type: Transform -- uid: 10901 - type: SignXenolab - components: - - pos: 25.5,72.5 - parent: 82 - type: Transform -- uid: 10902 - type: SignTelecomms - components: - - pos: -2.5,44.5 - parent: 82 - type: Transform -- uid: 10903 - type: SignRadiationMed - components: - - pos: -21.5,52.5 - parent: 82 - type: Transform -- uid: 10904 - type: SignRadiationMed - components: - - pos: -21.5,55.5 - parent: 82 - type: Transform -- uid: 10905 - type: Wrench - components: - - pos: -27.292894,52.623566 - parent: 82 - type: Transform -- uid: 10906 - type: Screwdriver - components: - - pos: -27.34845,52.52634 - parent: 82 - type: Transform -- uid: 10907 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 11.5,48.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10908 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 12.5,47.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10909 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 16.5,47.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10910 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 17.5,48.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10911 - type: RandomFoodBakedSingle - components: - - pos: 17.5,47.5 - parent: 82 - type: Transform -- uid: 10912 - type: TableGlass - components: - - pos: 11.5,47.5 - parent: 82 - type: Transform -- uid: 10913 - type: Cigar - components: - - rot: -1.5707963267948966 rad - pos: 11.639151,47.60627 - parent: 82 - type: Transform -- uid: 10914 - type: CheapLighter - components: - - pos: 11.40304,47.550713 - parent: 82 - type: Transform -- uid: 10915 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,47.5 - parent: 82 - type: Transform -- uid: 10916 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: 15.5,47.5 - parent: 82 - type: Transform -- uid: 10917 - type: TableGlass - components: - - pos: 17.5,47.5 - parent: 82 - type: Transform -- uid: 10918 - type: DisposalUnit - components: - - pos: 14.5,48.5 - parent: 82 - type: Transform -- uid: 10919 - type: RandomFoodBakedWhole - components: - - pos: 26.5,46.5 - parent: 82 - type: Transform -- uid: 10920 - type: Barricade - components: - - pos: -45.5,49.5 - parent: 82 - type: Transform -- uid: 10921 - type: Barricade - components: - - pos: -44.5,49.5 - parent: 82 - type: Transform -- uid: 10922 - type: Barricade - components: - - pos: -41.5,51.5 - parent: 82 - type: Transform -- uid: 10923 - type: Bed - components: - - pos: -45.5,52.5 - parent: 82 - type: Transform -- uid: 10924 - type: Bed - components: - - pos: -45.5,50.5 - parent: 82 - type: Transform -- uid: 10925 - type: BedsheetWiz - components: - - pos: -45.5,52.5 - parent: 82 - type: Transform -- uid: 10926 - type: BedsheetRed - components: - - pos: -45.5,50.5 - parent: 82 - type: Transform -- uid: 10927 - type: Table - components: - - pos: -44.5,50.5 - parent: 82 - type: Transform -- uid: 10928 - type: Table - components: - - pos: -44.5,52.5 - parent: 82 - type: Transform -- uid: 10929 - type: ClothingHeadHatWizard - components: - - pos: -44.666927,52.757404 - parent: 82 - type: Transform -- uid: 10930 - type: ClothingOuterWizard - components: - - pos: -44.361374,52.632404 - parent: 82 - type: Transform -- uid: 10931 - type: ClothingShoesWizard - components: - - pos: -44.694706,52.340736 - parent: 82 - type: Transform -- uid: 10932 - type: ClothingShoesWizard - components: - - pos: -44.305817,50.410183 - parent: 82 - type: Transform -- uid: 10933 - type: ClothingHeadHatRedwizard - components: - - pos: -44.291927,50.840736 - parent: 82 - type: Transform -- uid: 10934 - type: ClothingOuterWizardRed - components: - - pos: -44.653038,50.799072 - parent: 82 - type: Transform -- uid: 10935 - type: Girder - components: - - pos: -42.5,50.5 - parent: 82 - type: Transform -- uid: 10936 - type: Barricade - components: - - pos: -42.5,51.5 - parent: 82 - type: Transform -- uid: 10937 - type: Girder - components: - - pos: -42.5,52.5 - parent: 82 - type: Transform -- uid: 10938 - type: SignRadiation - components: - - pos: -32.999043,61.487373 - parent: 82 - type: Transform -- uid: 10939 - type: AirlockEVAGlassLocked - components: - - pos: -40.5,28.5 - parent: 82 - type: Transform -- uid: 10940 - type: WindowReinforcedDirectional - components: - - pos: 48.5,-19.5 - parent: 82 - type: Transform -- uid: 10941 - type: CableMV - components: - - pos: -25.5,65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10942 - type: CableMV - components: - - pos: -34.5,72.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10943 - type: Rack - components: - - pos: -41.5,27.5 - parent: 82 - type: Transform -- uid: 10944 - type: Rack - components: - - pos: -37.5,27.5 - parent: 82 - type: Transform -- uid: 10945 - type: Rack - components: - - pos: -38.5,27.5 - parent: 82 - type: Transform -- uid: 10946 - type: CableApcExtension - components: - - pos: 24.5,74.5 - parent: 82 - type: Transform -- uid: 10947 - type: SignRadiation - components: - - pos: -37.5,61.5 - parent: 82 - type: Transform -- uid: 10948 - type: SignRadiation - components: - - pos: -13.5,61.5 - parent: 82 - type: Transform -- uid: 10949 - type: SignElectrical - components: - - pos: -12.5,73.5 - parent: 82 - type: Transform -- uid: 10950 - type: SignElectrical - components: - - pos: -12.5,68.5 - parent: 82 - type: Transform -- uid: 10951 - type: SignElectrical - components: - - pos: -12.5,63.5 - parent: 82 - type: Transform -- uid: 10952 - type: SignElectrical - components: - - pos: -12.5,78.5 - parent: 82 - type: Transform -- uid: 10953 - type: WindowReinforcedDirectional - components: - - pos: 52.5,-18.5 - parent: 82 - type: Transform -- uid: 10954 - type: HydroponicsToolSpade - components: - - pos: 51.695038,-43.500088 - parent: 82 - type: Transform -- uid: 10955 - type: WallReinforced - components: - - pos: -31.5,83.5 - parent: 82 - type: Transform -- uid: 10956 - type: WallReinforced - components: - - pos: -32.5,83.5 - parent: 82 - type: Transform -- uid: 10957 - type: WallReinforced - components: - - pos: -33.5,83.5 - parent: 82 - type: Transform -- uid: 10958 - type: WallReinforced - components: - - pos: -34.5,83.5 - parent: 82 - type: Transform -- uid: 10959 - type: SignElectrical - components: - - pos: -38.5,78.5 - parent: 82 - type: Transform -- uid: 10960 - type: SignElectrical - components: - - pos: -38.5,73.5 - parent: 82 - type: Transform -- uid: 10961 - type: SignElectrical - components: - - pos: -38.5,68.5 - parent: 82 - type: Transform -- uid: 10962 - type: SignElectrical - components: - - pos: -38.5,63.5 - parent: 82 - type: Transform -- uid: 10963 - type: SignElectrical - components: - - pos: -35.5,60.5 - parent: 82 - type: Transform -- uid: 10964 - type: SignElectrical - components: - - pos: -30.5,60.5 - parent: 82 - type: Transform -- uid: 10965 - type: SignRadiation - components: - - pos: -13.486628,65.9951 - parent: 82 - type: Transform -- uid: 10966 - type: SignElectrical - components: - - pos: -15.5,60.5 - parent: 82 - type: Transform -- uid: 10967 - type: SignRadiation - components: - - pos: -13.500517,70.968636 - parent: 82 - type: Transform -- uid: 10968 - type: SignRadiation - components: - - pos: -13.500517,75.97933 - parent: 82 - type: Transform -- uid: 10969 - type: WallReinforced - components: - - pos: -35.5,83.5 - parent: 82 - type: Transform -- uid: 10970 - type: AirlockEVAGlassLocked - components: - - pos: -39.5,28.5 - parent: 82 - type: Transform -- uid: 10971 - type: Rack - components: - - pos: -42.5,27.5 - parent: 82 - type: Transform -- uid: 10972 - type: WallReinforced - components: - - pos: -36.5,83.5 - parent: 82 - type: Transform -- uid: 10973 - type: SignRadiation - components: - - pos: -37.50445,75.96583 - parent: 82 - type: Transform -- uid: 10974 - type: SignRadiation - components: - - pos: -37.490562,70.98263 - parent: 82 - type: Transform -- uid: 10975 - type: SignRadiation - components: - - pos: -37.490562,65.98887 - parent: 82 - type: Transform -- uid: 10976 - type: FirelockEdge - components: - - pos: 24.5,73.5 - parent: 82 - type: Transform -- uid: 10977 - type: ClothingShoesBootsMag - components: - - pos: -42.71824,27.72612 - parent: 82 - type: Transform -- uid: 10978 - type: ClothingShoesBootsMag - components: - - pos: -42.42657,27.47612 - parent: 82 - type: Transform -- uid: 10979 - type: FirelockEdge - components: - - pos: 23.5,73.5 - parent: 82 - type: Transform -- uid: 10980 - type: FirelockEdge - components: - - pos: 19.5,69.5 - parent: 82 - type: Transform -- uid: 10981 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 45.5,37.5 - parent: 82 - type: Transform -- uid: 10982 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -58.5,36.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10983 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -57.5,37.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10984 - type: FirelockEdge - components: - - pos: 47.5,18.5 - parent: 82 - type: Transform -- uid: 10985 - type: GasVentScrubber - components: - - pos: 26.5,59.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10986 - type: AirSensor - components: - - pos: 0.5,3.5 - parent: 82 - type: Transform -- uid: 10987 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 16.5,9.5 - parent: 82 - type: Transform - - devices: - - 1002 - - 10060 - - 1000 - type: DeviceList -- uid: 10988 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,21.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10989 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 42.5,15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10990 - type: RandomDrinkGlass - components: - - pos: -14.5,25.5 - parent: 82 - type: Transform -- uid: 10991 - type: RandomDrinkGlass - components: - - pos: -13.5,25.5 - parent: 82 - type: Transform -- uid: 10992 - type: WallReinforced - components: - - pos: -31.5,21.5 - parent: 82 - type: Transform -- uid: 10993 - type: GasVentScrubber - components: - - pos: -4.5,-24.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10994 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: -51.5,39.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10995 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: -51.5,37.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10996 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: -49.5,39.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10997 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: -49.5,37.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10998 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: -48.5,38.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 10999 - type: ChairPilotSeat - components: - - pos: -50.5,40.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11000 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,36.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11001 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: -51.5,48.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11002 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: -51.5,46.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11003 - type: ChairPilotSeat - components: - - pos: -50.5,49.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11004 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: -49.5,48.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11005 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: -48.5,47.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11006 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: -49.5,46.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11007 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: -50.5,45.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11008 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-23.5 - parent: 82 - type: Transform -- uid: 11009 - type: SpawnMobDrone - components: - - pos: 22.5,0.5 - parent: 82 - type: Transform -- uid: 11010 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-34.5 - parent: 82 - type: Transform -- uid: 11011 - type: BoxFolderWhite - components: - - rot: -1.5707963267948966 rad - pos: -26.4877,-34.69294 - parent: 82 - type: Transform -- uid: 11012 - type: ClothingNeckStethoscope - components: - - pos: -26.4877,-35.33183 - parent: 82 - type: Transform -- uid: 11013 - type: SignMedical - components: - - pos: -20.5,-32.5 - parent: 82 - type: Transform -- uid: 11014 - type: SignMedical - components: - - pos: -20.5,-35.5 - parent: 82 - type: Transform -- uid: 11015 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-22.5 - parent: 82 - type: Transform -- uid: 11016 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -2.5,48.5 - parent: 82 - type: Transform -- uid: 11017 - type: SolarPanel - components: - - pos: -75.5,17.5 - parent: 82 - type: Transform -- uid: 11018 - type: WallReinforced - components: - - pos: -30.5,21.5 - parent: 82 - type: Transform -- uid: 11019 - type: ClothingMaskGasSecurity - components: - - pos: -30.396887,25.494938 - parent: 82 - type: Transform -- uid: 11020 - type: ClothingMaskGasSecurity - components: - - pos: -30.605223,25.633827 - parent: 82 - type: Transform -- uid: 11021 - type: NitrogenTankFilled - components: - - pos: -31.396887,25.481049 - parent: 82 - type: Transform -- uid: 11022 - type: OxygenTankFilled - components: - - pos: -31.632998,25.619938 - parent: 82 - type: Transform -- uid: 11023 - type: Rack - components: - - pos: -30.5,25.5 - parent: 82 - type: Transform -- uid: 11024 - type: Rack - components: - - pos: -31.5,25.5 - parent: 82 - type: Transform -- uid: 11025 - type: WeaponCapacitorRecharger - components: - - pos: -29.5,27.5 - parent: 82 - type: Transform -- uid: 11026 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -61.5,0.5 - parent: 82 - type: Transform -- uid: 11027 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -72.5,0.5 - parent: 82 - type: Transform -- uid: 11028 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -63.5,0.5 - parent: 82 - type: Transform -- uid: 11029 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -64.5,0.5 - parent: 82 - type: Transform -- uid: 11030 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -65.5,0.5 - parent: 82 - type: Transform -- uid: 11031 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -66.5,0.5 - parent: 82 - type: Transform -- uid: 11032 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -67.5,0.5 - parent: 82 - type: Transform -- uid: 11033 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -68.5,0.5 - parent: 82 - type: Transform -- uid: 11034 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -69.5,0.5 - parent: 82 - type: Transform -- uid: 11035 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -70.5,0.5 - parent: 82 - type: Transform -- uid: 11036 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -71.5,0.5 - parent: 82 - type: Transform -- uid: 11037 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -62.5,0.5 - parent: 82 - type: Transform -- uid: 11038 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -73.5,0.5 - parent: 82 - type: Transform -- uid: 11039 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -74.5,0.5 - parent: 82 - type: Transform -- uid: 11040 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -75.5,0.5 - parent: 82 - type: Transform -- uid: 11041 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -76.5,0.5 - parent: 82 - type: Transform -- uid: 11042 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -77.5,0.5 - parent: 82 - type: Transform -- uid: 11043 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -77.5,1.5 - parent: 82 - type: Transform -- uid: 11044 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -78.5,8.5 - parent: 82 - type: Transform -- uid: 11045 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -77.5,3.5 - parent: 82 - type: Transform -- uid: 11046 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -77.5,4.5 - parent: 82 - type: Transform -- uid: 11047 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -77.5,5.5 - parent: 82 - type: Transform -- uid: 11048 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -77.5,6.5 - parent: 82 - type: Transform -- uid: 11049 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -77.5,7.5 - parent: 82 - type: Transform -- uid: 11050 - type: GrilleBroken - components: - - pos: -79.5,12.5 - parent: 82 - type: Transform -- uid: 11051 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -79.5,13.5 - parent: 82 - type: Transform -- uid: 11052 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -79.5,8.5 - parent: 82 - type: Transform -- uid: 11053 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -79.5,9.5 - parent: 82 - type: Transform -- uid: 11054 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -79.5,10.5 - parent: 82 - type: Transform -- uid: 11055 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -79.5,11.5 - parent: 82 - type: Transform -- uid: 11056 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -77.5,19.5 - parent: 82 - type: Transform -- uid: 11057 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -77.5,16.5 - parent: 82 - type: Transform -- uid: 11058 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -79.5,14.5 - parent: 82 - type: Transform -- uid: 11059 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -78.5,14.5 - parent: 82 - type: Transform -- uid: 11060 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -77.5,14.5 - parent: 82 - type: Transform -- uid: 11061 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -77.5,15.5 - parent: 82 - type: Transform -- uid: 11062 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -73.5,22.5 - parent: 82 - type: Transform -- uid: 11063 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -77.5,17.5 - parent: 82 - type: Transform -- uid: 11064 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -77.5,18.5 - parent: 82 - type: Transform -- uid: 11065 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -74.5,22.5 - parent: 82 - type: Transform -- uid: 11066 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -77.5,20.5 - parent: 82 - type: Transform -- uid: 11067 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -77.5,21.5 - parent: 82 - type: Transform -- uid: 11068 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -77.5,22.5 - parent: 82 - type: Transform -- uid: 11069 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -76.5,22.5 - parent: 82 - type: Transform -- uid: 11070 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -75.5,22.5 - parent: 82 - type: Transform -- uid: 11071 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -64.5,22.5 - parent: 82 - type: Transform -- uid: 11072 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -76.5,11.5 - parent: 82 - type: Transform -- uid: 11073 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -72.5,22.5 - parent: 82 - type: Transform -- uid: 11074 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -71.5,22.5 - parent: 82 - type: Transform -- uid: 11075 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -70.5,22.5 - parent: 82 - type: Transform -- uid: 11076 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -69.5,22.5 - parent: 82 - type: Transform -- uid: 11077 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -68.5,22.5 - parent: 82 - type: Transform -- uid: 11078 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -67.5,22.5 - parent: 82 - type: Transform -- uid: 11079 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -66.5,22.5 - parent: 82 - type: Transform -- uid: 11080 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -65.5,22.5 - parent: 82 - type: Transform -- uid: 11081 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -75.5,11.5 - parent: 82 - type: Transform -- uid: 11082 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -63.5,22.5 - parent: 82 - type: Transform -- uid: 11083 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -62.5,22.5 - parent: 82 - type: Transform -- uid: 11084 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -61.5,22.5 - parent: 82 - type: Transform -- uid: 11085 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -74.5,11.5 - parent: 82 - type: Transform -- uid: 11086 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,11.5 - parent: 82 - type: Transform -- uid: 11087 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -72.5,11.5 - parent: 82 - type: Transform -- uid: 11088 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -71.5,11.5 - parent: 82 - type: Transform -- uid: 11089 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -70.5,11.5 - parent: 82 - type: Transform -- uid: 11090 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -69.5,11.5 - parent: 82 - type: Transform -- uid: 11091 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -68.5,11.5 - parent: 82 - type: Transform -- uid: 11092 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -67.5,11.5 - parent: 82 - type: Transform -- uid: 11093 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -66.5,11.5 - parent: 82 - type: Transform -- uid: 11094 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -65.5,11.5 - parent: 82 - type: Transform -- uid: 11095 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -64.5,11.5 - parent: 82 - type: Transform -- uid: 11096 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -63.5,11.5 - parent: 82 - type: Transform -- uid: 11097 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -62.5,11.5 - parent: 82 - type: Transform -- uid: 11098 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,11.5 - parent: 82 - type: Transform -- uid: 11099 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -60.5,11.5 - parent: 82 - type: Transform -- uid: 11100 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,11.5 - parent: 82 - type: Transform -- uid: 11101 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -58.5,11.5 - parent: 82 - type: Transform -- uid: 11102 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -57.5,11.5 - parent: 82 - type: Transform -- uid: 11103 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -56.5,11.5 - parent: 82 - type: Transform -- uid: 11104 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -55.5,11.5 - parent: 82 - type: Transform -- uid: 11105 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -57.5,12.5 - parent: 82 - type: Transform -- uid: 11106 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -57.5,13.5 - parent: 82 - type: Transform -- uid: 11107 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -57.5,14.5 - parent: 82 - type: Transform -- uid: 11108 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -57.5,15.5 - parent: 82 - type: Transform -- uid: 11109 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -57.5,16.5 - parent: 82 - type: Transform -- uid: 11110 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -57.5,17.5 - parent: 82 - type: Transform -- uid: 11111 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -57.5,18.5 - parent: 82 - type: Transform -- uid: 11112 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -57.5,19.5 - parent: 82 - type: Transform -- uid: 11113 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -57.5,20.5 - parent: 82 - type: Transform -- uid: 11114 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -57.5,21.5 - parent: 82 - type: Transform -- uid: 11115 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -57.5,22.5 - parent: 82 - type: Transform -- uid: 11116 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -57.5,23.5 - parent: 82 - type: Transform -- uid: 11117 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -57.5,24.5 - parent: 82 - type: Transform -- uid: 11118 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -57.5,25.5 - parent: 82 - type: Transform -- uid: 11119 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -58.5,25.5 - parent: 82 - type: Transform -- uid: 11120 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,25.5 - parent: 82 - type: Transform -- uid: 11121 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -60.5,25.5 - parent: 82 - type: Transform -- uid: 11122 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,25.5 - parent: 82 - type: Transform -- uid: 11123 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,26.5 - parent: 82 - type: Transform -- uid: 11124 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,27.5 - parent: 82 - type: Transform -- uid: 11125 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,28.5 - parent: 82 - type: Transform -- uid: 11126 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,29.5 - parent: 82 - type: Transform -- uid: 11127 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,30.5 - parent: 82 - type: Transform -- uid: 11128 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,31.5 - parent: 82 - type: Transform -- uid: 11129 - type: WallReinforced - components: - - pos: -37.5,83.5 - parent: 82 - type: Transform -- uid: 11130 - type: WallReinforced - components: - - pos: -36.5,82.5 - parent: 82 - type: Transform -- uid: 11131 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -62.5,31.5 - parent: 82 - type: Transform -- uid: 11132 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -63.5,31.5 - parent: 82 - type: Transform -- uid: 11133 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -64.5,31.5 - parent: 82 - type: Transform -- uid: 11134 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -65.5,31.5 - parent: 82 - type: Transform -- uid: 11135 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -66.5,31.5 - parent: 82 - type: Transform -- uid: 11136 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -66.5,32.5 - parent: 82 - type: Transform -- uid: 11137 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -66.5,33.5 - parent: 82 - type: Transform -- uid: 11138 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -66.5,34.5 - parent: 82 - type: Transform -- uid: 11139 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -66.5,35.5 - parent: 82 - type: Transform -- uid: 11140 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -66.5,36.5 - parent: 82 - type: Transform -- uid: 11141 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -63.5,41.5 - parent: 82 - type: Transform -- uid: 11142 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -63.5,37.5 - parent: 82 - type: Transform -- uid: 11143 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -63.5,45.5 - parent: 82 - type: Transform -- uid: 11144 - type: PottedPlantRandomPlastic - components: - - pos: -62.5,41.5 - parent: 82 - type: Transform -- uid: 11145 - type: Catwalk - components: - - pos: -66.5,15.5 - parent: 82 - type: Transform -- uid: 11146 - type: Catwalk - components: - - pos: -66.5,14.5 - parent: 82 - type: Transform -- uid: 11147 - type: Catwalk - components: - - pos: -66.5,13.5 - parent: 82 - type: Transform -- uid: 11148 - type: Catwalk - components: - - pos: -66.5,12.5 - parent: 82 - type: Transform -- uid: 11149 - type: Catwalk - components: - - pos: -70.5,19.5 - parent: 82 - type: Transform -- uid: 11150 - type: Catwalk - components: - - pos: -70.5,18.5 - parent: 82 - type: Transform -- uid: 11151 - type: Catwalk - components: - - pos: -70.5,12.5 - parent: 82 - type: Transform -- uid: 11152 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: 32.5,9.5 - parent: 82 - type: Transform -- uid: 11153 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -33.5,-5.5 - parent: 82 - type: Transform -- uid: 11154 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -10.5,-34.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11155 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -15.5,-38.5 - parent: 82 - type: Transform -- uid: 11156 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -16.5,-38.5 - parent: 82 - type: Transform -- uid: 11157 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -17.5,-38.5 - parent: 82 - type: Transform -- uid: 11158 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-37.5 - parent: 82 - type: Transform -- uid: 11159 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-36.5 - parent: 82 - type: Transform -- uid: 11160 - type: WindoorHydroponicsLocked - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-20.5 - parent: 82 - type: Transform -- uid: 11161 - type: Chair - components: - - pos: -25.5,-24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11162 - type: Chair - components: - - pos: -24.5,-24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11163 - type: Chair - components: - - pos: -23.5,-24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11164 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-28.5 - parent: 82 - type: Transform -- uid: 11165 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 82 - type: Transform - - devices: - - 1262 - - 10271 - - 11152 - - 12630 - - 12617 - - 10476 - - 10475 - - 10474 - - 6919 - - 18971 - - 18914 - - invalid - - 22462 - - 24542 - - 24543 - type: DeviceList -- uid: 11166 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -15.5,-26.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11167 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -17.5,-26.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11168 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -16.5,-26.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11169 - type: Chair - components: - - pos: -26.5,-24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11170 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -26.5,-34.5 - parent: 82 - type: Transform -- uid: 11171 - type: Chair - components: - - pos: -22.5,-32.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11172 - type: Chair - components: - - pos: -21.5,-32.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11173 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-29.5 - parent: 82 - type: Transform -- uid: 11174 - type: BoxFolderYellow - components: - - rot: 1.5707963267948966 rad - pos: -23.513903,-29.244576 - parent: 82 - type: Transform -- uid: 11175 - type: BoxFolderWhite - components: - - rot: 1.5707963267948966 rad - pos: -23.444458,-28.925129 - parent: 82 - type: Transform -- uid: 11176 - type: PaperOffice - components: - - pos: -23.372032,-28.192993 - parent: 82 - type: Transform -- uid: 11177 - type: PaperOffice - components: - - pos: -23.563612,-28.178257 - parent: 82 - type: Transform -- uid: 11178 - type: PaperOffice - components: - - pos: -23.475191,-28.487686 - parent: 82 - type: Transform -- uid: 11179 - type: ClothingEyesGlasses - components: - - pos: -23.500013,-27.77235 - parent: 82 - type: Transform -- uid: 11180 - type: WallReinforced - components: - - pos: -32.5,14.5 - parent: 82 - type: Transform -- uid: 11181 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11182 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -17.5,-35.5 - parent: 82 - type: Transform -- uid: 11183 - type: GasPipeStraight - components: - - pos: -9.5,-41.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11184 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-42.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11185 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -9.5,-42.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11186 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-35.5 - parent: 82 - type: Transform -- uid: 11187 - type: WindowTintedDirectional - components: - - pos: -12.5,-37.5 - parent: 82 - type: Transform -- uid: 11188 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-27.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11189 - type: Chair - components: - - pos: -39.5,-30.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11190 - type: Chair - components: - - pos: -38.5,-30.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11191 - type: Chair - components: - - pos: -34.5,-30.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11192 - type: Chair - components: - - pos: -35.5,-30.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11193 - type: Chair - components: - - pos: -51.5,-30.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11194 - type: Chair - components: - - pos: -50.5,-30.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11195 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-27.5 - parent: 82 - type: Transform -- uid: 11196 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-28.5 - parent: 82 - type: Transform -- uid: 11197 - type: WaterCooler - components: - - pos: -50.5,-26.5 - parent: 82 - type: Transform -- uid: 11198 - type: PottedPlantRandomPlastic - components: - - pos: -52.5,-30.5 - parent: 82 - type: Transform -- uid: 11199 - type: PottedPlantRandomPlastic - components: - - pos: -37.5,-30.5 - parent: 82 - type: Transform -- uid: 11200 - type: PottedPlantRandom - components: - - pos: -27.5,-24.5 - parent: 82 - type: Transform -- uid: 11201 - type: PottedPlantRandom - components: - - pos: -27.5,-26.5 - parent: 82 - type: Transform -- uid: 11202 - type: PottedPlantRandom - components: - - pos: -22.5,-24.5 - parent: 82 - type: Transform -- uid: 11203 - type: PottedPlantRandom - components: - - pos: -23.5,-35.5 - parent: 82 - type: Transform -- uid: 11204 - type: PottedPlantRandom - components: - - pos: -24.5,-31.5 - parent: 82 - type: Transform -- uid: 11205 - type: ClothingHandsGlovesNitrile - components: - - pos: -35.628624,-39.721123 - parent: 82 - type: Transform -- uid: 11206 - type: UniformScrubsColorPurple - components: - - pos: -35.323067,-39.42946 - parent: 82 - type: Transform -- uid: 11207 - type: LockerMedicalFilled - components: - - pos: -33.5,-38.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11208 - type: LockerMedicalFilled - components: - - pos: -33.5,-39.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11209 - type: ClothingHeadNurseHat - components: - - pos: -34.49878,-34.416466 - parent: 82 - type: Transform -- uid: 11210 - type: ClothingHeadNurseHat - components: - - pos: -34.290443,-34.20813 - parent: 82 - type: Transform -- uid: 11211 - type: Catwalk - components: - - pos: -17.5,80.5 - parent: 82 - type: Transform -- uid: 11212 - type: ClothingNeckStethoscope - components: - - pos: -42.49492,-43.470898 - parent: 82 - type: Transform -- uid: 11213 - type: SyringeSpaceacillin - components: - - pos: -46.46559,-23.62904 - parent: 82 - type: Transform -- uid: 11214 - type: ClothingHandsGlovesNitrile - components: - - pos: -46.47233,-24.114372 - parent: 82 - type: Transform -- uid: 11215 - type: Catwalk - components: - - pos: -27.5,80.5 - parent: 82 - type: Transform -- uid: 11216 - type: HandheldHealthAnalyzer - components: - - pos: -42.525234,-41.524086 - parent: 82 - type: Transform -- uid: 11217 - type: Grille - components: - - pos: -41.5,-41.5 - parent: 82 - type: Transform -- uid: 11218 - type: CableMV - components: - - pos: -30.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11219 - type: Grille - components: - - pos: -41.5,-43.5 - parent: 82 - type: Transform -- uid: 11220 - type: CableMV - components: - - pos: -22.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11221 - type: Grille - components: - - pos: -35.5,-37.5 - parent: 82 - type: Transform -- uid: 11222 - type: Grille - components: - - pos: -33.5,-37.5 - parent: 82 - type: Transform -- uid: 11223 - type: Grille - components: - - pos: -33.5,-40.5 - parent: 82 - type: Transform -- uid: 11224 - type: Grille - components: - - pos: -35.5,-40.5 - parent: 82 - type: Transform -- uid: 11225 - type: RadiationCollector - components: - - pos: -17.5,70.5 - parent: 82 - type: Transform -- uid: 11226 - type: WallSolid - components: - - pos: -49.5,-38.5 - parent: 82 - type: Transform -- uid: 11227 - type: ClothingEyesGlasses - components: - - pos: -33.885056,-34.490807 - parent: 82 - type: Transform -- uid: 11228 - type: ClothingHandsGlovesLatex - components: - - pos: -33.593388,-34.379696 - parent: 82 - type: Transform -- uid: 11229 - type: SheetSteel - components: - - pos: -30.483015,-34.43525 - parent: 82 - type: Transform -- uid: 11230 - type: Grille - components: - - pos: -49.5,57.5 - parent: 82 - type: Transform -- uid: 11231 - type: MedkitBruteFilled - components: - - pos: -21.596481,-35.44173 - parent: 82 - type: Transform -- uid: 11232 - type: Grille - components: - - pos: -46.5,57.5 - parent: 82 - type: Transform -- uid: 11233 - type: Brutepack - components: - - pos: -22.096481,-35.511173 - parent: 82 - type: Transform -- uid: 11234 - type: Brutepack - components: - - pos: -22.290926,-35.31673 - parent: 82 - type: Transform -- uid: 11235 - type: Gauze - components: - - pos: -22.596481,-35.42784 - parent: 82 - type: Transform -- uid: 11236 - type: WindowTintedDirectional - components: - - pos: -11.5,-37.5 - parent: 82 - type: Transform -- uid: 11237 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-37.5 - parent: 82 - type: Transform -- uid: 11238 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-36.5 - parent: 82 - type: Transform -- uid: 11239 - type: WindowTintedDirectional - components: - - pos: -10.5,-37.5 - parent: 82 - type: Transform -- uid: 11240 - type: AirlockServiceLocked - components: - - pos: -9.5,-21.5 - parent: 82 - type: Transform -- uid: 11241 - type: Catwalk - components: - - pos: -66.5,5.5 - parent: 82 - type: Transform -- uid: 11242 - type: Catwalk - components: - - pos: -66.5,6.5 - parent: 82 - type: Transform -- uid: 11243 - type: Catwalk - components: - - pos: -66.5,7.5 - parent: 82 - type: Transform -- uid: 11244 - type: Catwalk - components: - - pos: -66.5,8.5 - parent: 82 - type: Transform -- uid: 11245 - type: Catwalk - components: - - pos: -66.5,9.5 - parent: 82 - type: Transform -- uid: 11246 - type: SpaceCash10 - components: - - pos: -26.640448,-20.191494 - parent: 82 - type: Transform -- uid: 11247 - type: TableGlass - components: - - pos: -26.5,-20.5 - parent: 82 - type: Transform -- uid: 11248 - type: RandomDrinkGlass - components: - - pos: -19.5,-14.5 - parent: 82 - type: Transform -- uid: 11249 - type: ClosetEmergencyFilledRandom - components: - - pos: -51.5,52.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11250 - type: RandomDrinkGlass - components: - - pos: -26.5,-20.5 - parent: 82 - type: Transform -- uid: 11251 - type: RandomDrinkGlass - components: - - pos: -19.5,-13.5 - parent: 82 - type: Transform -- uid: 11252 - type: RandomDrinkGlass - components: - - pos: -19.5,-12.5 - parent: 82 - type: Transform -- uid: 11253 - type: WallSolid - components: - - pos: -36.5,-5.5 - parent: 82 - type: Transform -- uid: 11254 - type: SpaceCash10 - components: - - pos: -26.432114,-20.469273 - parent: 82 - type: Transform -- uid: 11255 - type: RandomDrinkGlass - components: - - pos: -19.5,-16.5 - parent: 82 - type: Transform -- uid: 11256 - type: Catwalk - components: - - pos: -44.5,54.5 - parent: 82 - type: Transform -- uid: 11257 - type: WallSolid - components: - - pos: -26.5,-10.5 - parent: 82 - type: Transform -- uid: 11258 - type: WallSolid - components: - - pos: -26.5,-5.5 - parent: 82 - type: Transform -- uid: 11259 - type: RandomFoodMeal - components: - - pos: -23.5,-13.5 - parent: 82 - type: Transform -- uid: 11260 - type: ClosetMaintenanceFilledRandom - components: - - pos: -50.5,52.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11261 - type: Catwalk - components: - - pos: -42.5,54.5 - parent: 82 - type: Transform -- uid: 11262 - type: Catwalk - components: - - pos: -43.5,54.5 - parent: 82 - type: Transform -- uid: 11263 - type: PottedPlantRandom - components: - - pos: -25.5,-15.5 - parent: 82 - type: Transform -- uid: 11264 - type: WallSolid - components: - - pos: -23.5,-5.5 - parent: 82 - type: Transform -- uid: 11265 - type: PottedPlantRandom - components: - - pos: -20.5,-11.5 - parent: 82 - type: Transform -- uid: 11266 - type: Rack - components: - - pos: -28.5,3.5 - parent: 82 - type: Transform -- uid: 11267 - type: Rack - components: - - pos: -27.5,3.5 - parent: 82 - type: Transform -- uid: 11268 - type: Rack - components: - - pos: -28.5,2.5 - parent: 82 - type: Transform -- uid: 11269 - type: Rack - components: - - pos: -27.5,2.5 - parent: 82 - type: Transform -- uid: 11270 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -29.5,21.5 - parent: 82 - type: Transform -- uid: 11271 - type: ToolboxEmergencyFilled - components: - - pos: -28.498892,3.7990332 - parent: 82 - type: Transform -- uid: 11272 - type: ToolboxEmergencyFilled - components: - - pos: -28.498892,3.5490332 - parent: 82 - type: Transform -- uid: 11273 - type: ToolboxMechanicalFilled - components: - - pos: -27.485003,3.771256 - parent: 82 - type: Transform -- uid: 11274 - type: ToolboxMechanicalFilled - components: - - pos: -27.485003,3.5073667 - parent: 82 - type: Transform -- uid: 11275 - type: ClothingHandsGlovesColorYellowBudget - components: - - pos: -30.457228,3.5351443 - parent: 82 - type: Transform -- uid: 11276 - type: PowerCellRecharger - components: - - pos: -30.5,2.5 - parent: 82 - type: Transform -- uid: 11277 - type: PowerCellMedium - components: - - pos: -30.512781,2.9379225 - parent: 82 - type: Transform -- uid: 11278 - type: Multitool - components: - - pos: -28.598854,5.6387434 - parent: 82 - type: Transform -- uid: 11279 - type: AirlockPainter - components: - - pos: -27.825413,5.523837 - parent: 82 - type: Transform -- uid: 11280 - type: CableApcExtension - components: - - pos: 11.5,74.5 - parent: 82 - type: Transform -- uid: 11281 - type: CableApcExtension - components: - - pos: 9.5,74.5 - parent: 82 - type: Transform -- uid: 11282 - type: Welder - components: - - pos: -28.613932,2.6480217 - parent: 82 - type: Transform -- uid: 11283 - type: ClothingHeadHatWelding - components: - - pos: -27.610003,2.8406997 - parent: 82 - type: Transform -- uid: 11284 - type: ClothingHeadHatWelding - components: - - pos: -27.360003,2.5629225 - parent: 82 - type: Transform -- uid: 11285 - type: Welder - components: - - pos: -28.294487,2.5091333 - parent: 82 - type: Transform -- uid: 11286 - type: GasAnalyzer - components: - - pos: -27.548931,0.5200691 - parent: 82 - type: Transform -- uid: 11287 - type: APCElectronics - components: - - pos: -28.285044,0.42284727 - parent: 82 - type: Transform -- uid: 11288 - type: CableApcStack - components: - - pos: -28.465597,0.70062447 - parent: 82 - type: Transform -- uid: 11289 - type: SheetSteel - components: - - pos: -27.104486,5.5675354 - parent: 82 - type: Transform -- uid: 11290 - type: SheetPlastic - components: - - pos: -26.479486,5.5397587 - parent: 82 - type: Transform -- uid: 11291 - type: WeaponCapacitorRecharger - components: - - pos: 58.5,-0.5 - parent: 82 - type: Transform -- uid: 11292 - type: DisposalUnit - components: - - pos: -2.5,-5.5 - parent: 82 - type: Transform -- uid: 11293 - type: ClothingUniformJumpskirtJanimaid - components: - - pos: 17.48354,-31.477547 - parent: 82 - type: Transform -- uid: 11294 - type: PottedPlantRandom - components: - - pos: 15.5,-1.5 - parent: 82 - type: Transform -- uid: 11295 - type: PottedPlantRandom - components: - - pos: 9.5,-1.5 - parent: 82 - type: Transform -- uid: 11296 - type: PottedPlantRandomPlastic - components: - - pos: -0.5,-1.5 - parent: 82 - type: Transform -- uid: 11297 - type: TableReinforced - components: - - pos: -15.5,47.5 - parent: 82 - type: Transform -- uid: 11298 - type: TableReinforced - components: - - pos: -16.5,47.5 - parent: 82 - type: Transform -- uid: 11299 - type: FoodMeat - components: - - pos: -36.69961,-15.622485 - parent: 82 - type: Transform -- uid: 11300 - type: FoodMeat - components: - - pos: -36.55731,-15.31693 - parent: 82 - type: Transform -- uid: 11301 - type: FoodMeat - components: - - pos: -36.421833,-15.580818 - parent: 82 - type: Transform -- uid: 11302 - type: MonkeyCubeWrapped - components: - - pos: -37.53092,-14.36485 - parent: 82 - type: Transform -- uid: 11303 - type: MonkeyCubeWrapped - components: - - pos: -37.294807,-14.656517 - parent: 82 - type: Transform -- uid: 11304 - type: MonkeyCubeWrapped - components: - - pos: -37.669807,-14.837072 - parent: 82 - type: Transform -- uid: 11305 - type: CarpetPink - components: - - pos: -19.5,-9.5 - parent: 82 - type: Transform -- uid: 11306 - type: PaperCaptainsThoughts - components: - - pos: 10.71187,-18.56514 - parent: 82 - type: Transform -- uid: 11307 - type: ClothingOuterJacketChef - components: - - pos: -30.690493,-13.383304 - parent: 82 - type: Transform -- uid: 11308 - type: Poweredlight - components: - - pos: -34.5,-10.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11309 - type: CarpetPink - components: - - pos: -19.5,-10.5 - parent: 82 - type: Transform -- uid: 11310 - type: ShuttersNormalOpen - components: - - pos: -28.5,-9.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26135 - type: SignalReceiver -- uid: 11311 - type: TableWood - components: - - pos: -22.5,-9.5 - parent: 82 - type: Transform -- uid: 11312 - type: FirelockGlass - components: - - pos: -45.5,54.5 - parent: 82 - type: Transform -- uid: 11313 - type: Catwalk - components: - - pos: -48.5,53.5 - parent: 82 - type: Transform -- uid: 11314 - type: CarpetPink - components: - - pos: -18.5,-10.5 - parent: 82 - type: Transform -- uid: 11315 - type: Matchbox - components: - - pos: -18.372335,-10.521568 - parent: 82 - type: Transform -- uid: 11316 - type: FoodCondimentPacketSalt - components: - - pos: -26.615099,-14.287328 - parent: 82 - type: Transform -- uid: 11317 - type: FoodCondimentPacketPepper - components: - - pos: -26.35121,-14.412328 - parent: 82 - type: Transform -- uid: 11318 - type: CarpetPink - components: - - pos: -18.5,-9.5 - parent: 82 - type: Transform -- uid: 11319 - type: RandomFoodMeal - components: - - pos: -22.5,-6.5 - parent: 82 - type: Transform -- uid: 11320 - type: ShuttersNormalOpen - components: - - pos: -29.5,-9.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26135 - type: SignalReceiver -- uid: 11321 - type: DisposalUnit - components: - - pos: -26.5,-16.5 - parent: 82 - type: Transform -- uid: 11322 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-14.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26135 - type: SignalReceiver -- uid: 11323 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26135 - type: SignalReceiver -- uid: 11324 - type: WallSolid - components: - - pos: -38.5,-5.5 - parent: 82 - type: Transform -- uid: 11325 - type: TableReinforced - components: - - pos: -30.5,-9.5 - parent: 82 - type: Transform -- uid: 11326 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-16.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11348 - type: SignalReceiver -- uid: 11327 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-15.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11348 - type: SignalReceiver -- uid: 11328 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-14.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11348 - type: SignalReceiver -- uid: 11329 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-13.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11348 - type: SignalReceiver -- uid: 11330 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-12.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11348 - type: SignalReceiver -- uid: 11331 - type: AirlockBarLocked - components: - - pos: -16.5,-11.5 - parent: 82 - type: Transform -- uid: 11332 - type: AirlockMaintBarLocked - components: - - pos: -15.5,-15.5 - parent: 82 - type: Transform -- uid: 11333 - type: WindoorBarLocked - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-17.5 - parent: 82 - type: Transform -- uid: 11334 - type: AirlockKitchenGlassLocked - components: - - pos: -26.5,-11.5 - parent: 82 - type: Transform -- uid: 11335 - type: WallSolid - components: - - pos: -39.5,-6.5 - parent: 82 - type: Transform -- uid: 11336 - type: TableReinforced - components: - - pos: -29.5,-9.5 - parent: 82 - type: Transform -- uid: 11337 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-6.5 - parent: 82 - type: Transform -- uid: 11338 - type: FirelockGlass - components: - - pos: -26.5,-13.5 - parent: 82 - type: Transform -- uid: 11339 - type: FirelockGlass - components: - - pos: -26.5,-14.5 - parent: 82 - type: Transform -- uid: 11340 - type: FirelockGlass - components: - - pos: -19.5,-12.5 - parent: 82 - type: Transform -- uid: 11341 - type: FirelockGlass - components: - - pos: -19.5,-13.5 - parent: 82 - type: Transform -- uid: 11342 - type: FirelockGlass - components: - - pos: -19.5,-14.5 - parent: 82 - type: Transform -- uid: 11343 - type: FirelockGlass - components: - - pos: -19.5,-15.5 - parent: 82 - type: Transform -- uid: 11344 - type: FirelockGlass - components: - - pos: -19.5,-16.5 - parent: 82 - type: Transform -- uid: 11345 - type: FirelockGlass - components: - - pos: -19.5,-17.5 - parent: 82 - type: Transform -- uid: 11346 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-17.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11348 - type: SignalReceiver -- uid: 11347 - type: IntercomSecurity - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-16.5 - parent: 82 - type: Transform -- uid: 11348 - type: SignalButton - components: - - pos: -17.5,-11.5 - parent: 82 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11330 - - port: Toggle - uid: 11329 - - port: Toggle - uid: 11328 - - port: Toggle - uid: 11327 - - port: Toggle - uid: 11326 - - port: Toggle - uid: 11346 - type: SignalTransmitter -- uid: 11349 - type: CableApcExtension - components: - - pos: 12.5,74.5 - parent: 82 - type: Transform -- uid: 11350 - type: ToolboxArtistic - components: - - pos: 28.553867,-9.532713 - parent: 82 - type: Transform -- uid: 11351 - type: ToolboxElectricalFilled - components: - - pos: 28.28998,-9.254935 - parent: 82 - type: Transform -- uid: 11352 - type: ToolboxMechanicalFilled - components: - - pos: 27.76554,-9.518825 - parent: 82 - type: Transform -- uid: 11353 - type: ToolboxEmergencyFilled - components: - - pos: 27.501652,-9.241047 - parent: 82 - type: Transform -- uid: 11354 - type: FirelockElectronics - components: - - pos: 26.607456,-6.317665 - parent: 82 - type: Transform -- uid: 11355 - type: FirelockElectronics - components: - - pos: 26.3019,-6.567665 - parent: 82 - type: Transform -- uid: 11356 - type: APCElectronics - components: - - pos: 26.0519,-6.2621098 - parent: 82 - type: Transform -- uid: 11357 - type: CableApcExtension - components: - - pos: 13.5,74.5 - parent: 82 - type: Transform -- uid: 11358 - type: FirelockGlass - components: - - pos: -29.5,-9.5 - parent: 82 - type: Transform -- uid: 11359 - type: AirlockTheatreLocked - components: - - pos: -20.5,-20.5 - parent: 82 - type: Transform -- uid: 11360 - type: FirelockGlass - components: - - pos: -31.5,-9.5 - parent: 82 - type: Transform -- uid: 11361 - type: AirlockHydroGlassLocked - components: - - pos: -38.5,-22.5 - parent: 82 - type: Transform -- uid: 11362 - type: FirelockGlass - components: - - pos: -30.5,-9.5 - parent: 82 - type: Transform -- uid: 11363 - type: FoodBowlBig - components: - - pos: -29.799189,-13.428027 - parent: 82 - type: Transform -- uid: 11364 - type: FoodBowlBig - components: - - pos: -29.674189,-13.122472 - parent: 82 - type: Transform -- uid: 11365 - type: FoodKebabSkewer - components: - - pos: -29.368635,-13.441916 - parent: 82 - type: Transform -- uid: 11366 - type: CarpetPurple - components: - - pos: -30.5,-6.5 - parent: 82 - type: Transform -- uid: 11367 - type: CarpetPurple - components: - - pos: -27.5,-6.5 - parent: 82 - type: Transform -- uid: 11368 - type: CarpetPurple - components: - - pos: -22.5,-6.5 - parent: 82 - type: Transform -- uid: 11369 - type: CarpetPurple - components: - - pos: -22.5,-8.5 - parent: 82 - type: Transform -- uid: 11370 - type: CarpetPurple - components: - - pos: -32.5,-6.5 - parent: 82 - type: Transform -- uid: 11371 - type: CarpetPurple - components: - - pos: -22.5,-10.5 - parent: 82 - type: Transform -- uid: 11372 - type: CarpetPurple - components: - - pos: -23.5,-8.5 - parent: 82 - type: Transform -- uid: 11373 - type: WallReinforced - components: - - pos: -1.5,-12.5 - parent: 82 - type: Transform -- uid: 11374 - type: WallReinforced - components: - - pos: -0.5,-12.5 - parent: 82 - type: Transform -- uid: 11375 - type: Mirror - components: - - pos: 7.5,-14.5 - parent: 82 - type: Transform -- uid: 11376 - type: SinkStemlessWater - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-16.5 - parent: 82 - type: Transform -- uid: 11377 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -29.5,84.5 - parent: 82 - type: Transform -- uid: 11378 - type: CarpetSBlue - components: - - pos: 10.5,-18.5 - parent: 82 - type: Transform -- uid: 11379 - type: CarpetSBlue - components: - - pos: 11.5,-18.5 - parent: 82 - type: Transform -- uid: 11380 - type: CarpetSBlue - components: - - pos: 11.5,-17.5 - parent: 82 - type: Transform -- uid: 11381 - type: CarpetSBlue - components: - - pos: 10.5,-17.5 - parent: 82 - type: Transform -- uid: 11382 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -23.5,84.5 - parent: 82 - type: Transform -- uid: 11383 - type: ComputerPowerMonitoring - components: - - pos: 10.5,-9.5 - parent: 82 - type: Transform -- uid: 11384 - type: ComputerCargoOrders - components: - - pos: 4.5,-9.5 - parent: 82 - type: Transform -- uid: 11385 - type: TableWood - components: - - pos: 11.5,-18.5 - parent: 82 - type: Transform -- uid: 11386 - type: TableWood - components: - - pos: 10.5,-18.5 - parent: 82 - type: Transform -- uid: 11387 - type: ComputerTelevision - components: - - pos: 12.5,-13.5 - parent: 82 - type: Transform -- uid: 11388 - type: SpawnMobFoxRenault - components: - - pos: 12.5,-18.5 - parent: 82 - type: Transform -- uid: 11389 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -38.5,80.5 - parent: 82 - type: Transform -- uid: 11390 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -13.5,84.5 - parent: 82 - type: Transform -- uid: 11391 - type: CigarGold - components: - - pos: 10.373456,-18.312618 - parent: 82 - type: Transform -- uid: 11392 - type: Matchbox - components: - - pos: 10.679012,-18.465397 - parent: 82 - type: Transform -- uid: 11393 - type: CaptainIDCard - components: - - pos: 13.663311,-13.406513 - parent: 82 - type: Transform -- uid: 11394 - type: ClosetFireFilled - components: - - pos: 0.5,-9.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11395 - type: FireAxeCabinetFilled - components: - - rot: 3.141592653589793 rad - pos: 10.5,-12.5 - parent: 82 - type: Transform -- uid: 11396 - type: ClosetEmergencyFilledRandom - components: - - pos: 1.5,-9.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11397 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 82 - type: Transform -- uid: 11398 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 82 - type: Transform -- uid: 11399 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 6.5,-10.5 - parent: 82 - type: Transform -- uid: 11400 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 8.5,-10.5 - parent: 82 - type: Transform -- uid: 11401 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 10.5,-10.5 - parent: 82 - type: Transform -- uid: 11402 - type: ChairOfficeDark - components: - - pos: 6.5,-12.5 - parent: 82 - type: Transform -- uid: 11403 - type: ChairOfficeDark - components: - - pos: 8.5,-12.5 - parent: 82 - type: Transform -- uid: 11404 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-14.5 - parent: 82 - type: Transform -- uid: 11405 - type: BoxFolderBlue - components: - - pos: 13.4272,-14.045403 - parent: 82 - type: Transform -- uid: 11406 - type: ChairWood - components: - - pos: 10.98517,-17.683071 - parent: 82 - type: Transform -- uid: 11407 - type: ComfyChair - components: - - pos: 3.5,-15.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11408 - type: DisposalUnit - components: - - pos: 13.5,-9.5 - parent: 82 - type: Transform -- uid: 11409 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,-9.5 - parent: 82 - type: Transform -- uid: 11410 - type: ComputerRadar - components: - - pos: 3.5,-9.5 - parent: 82 - type: Transform -- uid: 11411 - type: ComputerSolarControl - components: - - pos: 11.5,-9.5 - parent: 82 - type: Transform -- uid: 11412 - type: WallWeaponCapacitorRecharger - components: - - rot: 3.141592653589793 rad - pos: 12.5,-12.5 - parent: 82 - type: Transform -- uid: 11413 - type: ToolboxEmergencyFilled - components: - - pos: 5.3657513,-12.269557 - parent: 82 - type: Transform -- uid: 11414 - type: ToolboxMechanicalFilled - components: - - pos: 5.5740848,-12.561223 - parent: 82 - type: Transform -- uid: 11415 - type: MedkitFilled - components: - - pos: 9.326279,-12.380668 - parent: 82 - type: Transform -- uid: 11416 - type: MedkitFilled - components: - - pos: 9.604057,-12.630668 - parent: 82 - type: Transform -- uid: 11417 - type: Multitool - components: - - pos: 5.266355,-12.991779 - parent: 82 - type: Transform -- uid: 11418 - type: DrinkFlask - components: - - pos: 13.7681465,-14.1079645 - parent: 82 - type: Transform -- uid: 11419 - type: DrinkRumBottleFull - components: - - pos: 13.490368,-14.2329645 - parent: 82 - type: Transform -- uid: 11420 - type: AirlockArmoryGlassLocked - components: - - pos: 41.5,-10.5 - parent: 82 - type: Transform -- uid: 11421 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: 39.5,-10.5 - parent: 82 - type: Transform -- uid: 11422 - type: WindoorArmoryLocked - components: - - pos: 41.5,-6.5 - parent: 82 - type: Transform -- uid: 11423 - type: LockerWardenFilled - components: - - pos: 38.5,-7.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11424 - type: Table - components: - - pos: 39.5,-7.5 - parent: 82 - type: Transform -- uid: 11425 - type: Table - components: - - pos: 40.5,-7.5 - parent: 82 - type: Transform -- uid: 11426 - type: ComputerCriminalRecords - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-9.5 - parent: 82 - type: Transform -- uid: 11427 - type: ComputerSurveillanceCameraMonitor - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-7.5 - parent: 82 - type: Transform -- uid: 11428 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-9.5 - parent: 82 - type: Transform -- uid: 11429 - type: Rack - components: - - pos: 42.5,-8.5 - parent: 82 - type: Transform -- uid: 11430 - type: VehicleKeySecway - components: - - pos: 42.249912,-8.227156 - parent: 82 - type: Transform -- uid: 11431 - type: VehicleKeySecway - components: - - pos: 42.499912,-8.213266 - parent: 82 - type: Transform -- uid: 11432 - type: VehicleKeySecway - components: - - pos: 42.33325,-8.463266 - parent: 82 - type: Transform -- uid: 11433 - type: VehicleKeySecway - components: - - pos: 42.55547,-8.463266 - parent: 82 - type: Transform -- uid: 11434 - type: WeaponDisabler - components: - - pos: 40.56936,-7.28271 - parent: 82 - type: Transform -- uid: 11435 - type: WeaponDisabler - components: - - pos: 40.3888,-7.5049324 - parent: 82 - type: Transform -- uid: 11436 - type: CableHV - components: - - pos: -33.5,71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11437 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -29.5,-14.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11438 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-42.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery - type: SurveillanceCamera -- uid: 11439 - type: BoxMagazinePistolPractice - components: - - pos: 60.493004,-20.274715 - parent: 82 - type: Transform -- uid: 11440 - type: Rack - components: - - pos: 60.5,-21.5 - parent: 82 - type: Transform -- uid: 11441 - type: Rack - components: - - pos: 60.5,-20.5 - parent: 82 - type: Transform -- uid: 11442 - type: RadiationCollector - components: - - pos: -33.5,71.5 - parent: 82 - type: Transform -- uid: 11443 - type: Grille - components: - - pos: -15.5,81.5 - parent: 82 - type: Transform -- uid: 11444 - type: Grille - components: - - pos: -27.5,82.5 - parent: 82 - type: Transform -- uid: 11445 - type: Table - components: - - pos: 60.5,-22.5 - parent: 82 - type: Transform -- uid: 11446 - type: Table - components: - - pos: 61.5,-22.5 - parent: 82 - type: Transform -- uid: 11447 - type: Table - components: - - pos: 62.5,-22.5 - parent: 82 - type: Transform -- uid: 11448 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 41.5,12.5 - parent: 82 - type: Transform -- uid: 11449 - type: TableReinforcedGlass - components: - - pos: 60.5,-8.5 - parent: 82 - type: Transform -- uid: 11450 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-13.5 - parent: 82 - type: Transform -- uid: 11451 - type: TableReinforcedGlass - components: - - pos: 60.5,-9.5 - parent: 82 - type: Transform -- uid: 11452 - type: TableReinforcedGlass - components: - - pos: 60.5,-10.5 - parent: 82 - type: Transform -- uid: 11453 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 41.5,13.5 - parent: 82 - type: Transform -- uid: 11454 - type: WeaponDisabler - components: - - pos: 49.412758,-12.329793 - parent: 82 - type: Transform -- uid: 11455 - type: WeaponDisabler - components: - - pos: 49.53065,-12.432937 - parent: 82 - type: Transform -- uid: 11456 - type: WeaponDisabler - components: - - pos: 49.280125,-12.19718 - parent: 82 - type: Transform -- uid: 11457 - type: WeaponDisablerPractice - components: - - pos: 60.32648,-21.236729 - parent: 82 - type: Transform -- uid: 11458 - type: WeaponCapacitorRecharger - components: - - pos: 60.5,-22.5 - parent: 82 - type: Transform -- uid: 11459 - type: WeaponCapacitorRecharger - components: - - pos: 42.5,-9.5 - parent: 82 - type: Transform -- uid: 11460 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 66.5,-24.5 - parent: 82 - type: Transform -- uid: 11461 - type: WeaponCapacitorRecharger - components: - - pos: 43.5,-3.5 - parent: 82 - type: Transform -- uid: 11462 - type: LockerEvidence - components: - - pos: 34.5,-12.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11463 - type: AirlockExternalGlassLocked - components: - - pos: 54.5,-24.5 - parent: 82 - type: Transform -- uid: 11464 - type: AirlockExternalGlassLocked - components: - - pos: 55.5,-24.5 - parent: 82 - type: Transform -- uid: 11465 - type: AirlockExternalGlassLocked - components: - - pos: 55.5,-31.5 - parent: 82 - type: Transform -- uid: 11466 - type: AirlockExternalGlassLocked - components: - - pos: 54.5,-31.5 - parent: 82 - type: Transform -- uid: 11467 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-20.5 - parent: 82 - type: Transform -- uid: 11468 - type: CableApcExtension - components: - - pos: 65.5,-21.5 - parent: 82 - type: Transform -- uid: 11469 - type: Grille - components: - - pos: -20.5,82.5 - parent: 82 - type: Transform -- uid: 11470 - type: ContainmentFieldGenerator - components: - - pos: -29.5,76.5 - parent: 82 - type: Transform -- uid: 11471 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 47.5,-12.5 - parent: 82 - type: Transform -- uid: 11472 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: -64.5,-37.5 - parent: 82 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 8118 - type: SignalTransmitter -- uid: 11473 - type: FirelockGlass - components: - - pos: -50.5,1.5 - parent: 82 - type: Transform -- uid: 11474 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 50.5,-15.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - type: SurveillanceCamera -- uid: 11475 - type: SurveillanceCameraService - components: - - pos: -14.5,23.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Cafe - type: SurveillanceCamera -- uid: 11476 - type: WallReinforced - components: - - pos: 53.5,-16.5 - parent: 82 - type: Transform -- uid: 11477 - type: KitchenMicrowave - components: - - pos: 58.5,0.5 - parent: 82 - type: Transform -- uid: 11478 - type: DonkpocketBoxSpawner - components: - - pos: 59.5,0.5 - parent: 82 - type: Transform -- uid: 11479 - type: WaterCooler - components: - - pos: 60.5,0.5 - parent: 82 - type: Transform -- uid: 11480 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: 61.5,0.5 - parent: 82 - type: Transform -- uid: 11481 - type: RandomVending - components: - - pos: 62.5,0.5 - parent: 82 - type: Transform -- uid: 11482 - type: Table - components: - - pos: 60.5,-1.5 - parent: 82 - type: Transform -- uid: 11483 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-1.5 - parent: 82 - type: Transform -- uid: 11484 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-1.5 - parent: 82 - type: Transform -- uid: 11485 - type: RandomFoodSingle - components: - - pos: 60.5,-1.5 - parent: 82 - type: Transform -- uid: 11486 - type: SignCargoDock - components: - - pos: 49.5,19.5 - parent: 82 - type: Transform -- uid: 11487 - type: SignDoors - components: - - pos: 46.5,51.5 - parent: 82 - type: Transform -- uid: 11488 - type: RandomSpawner - components: - - pos: -61.5,43.5 - parent: 82 - type: Transform -- uid: 11489 - type: PottedPlantRandom - components: - - pos: 58.5,-2.5 - parent: 82 - type: Transform -- uid: 11490 - type: DisposalUnit - components: - - pos: 62.5,-2.5 - parent: 82 - type: Transform -- uid: 11491 - type: AirAlarm - components: - - pos: 44.5,38.5 - parent: 82 - type: Transform - - devices: - - 12678 - - 12671 - - 12665 - - 12657 - - 22470 - - 10444 - - 10981 - - invalid - - 1185 - - 1404 - - 1549 - type: DeviceList -- uid: 11492 - type: Table - components: - - pos: 38.5,-5.5 - parent: 82 - type: Transform -- uid: 11493 - type: Table - components: - - pos: 39.5,-5.5 - parent: 82 - type: Transform -- uid: 11494 - type: Table - components: - - pos: 40.5,-5.5 - parent: 82 - type: Transform -- uid: 11495 - type: PottedPlantRandomPlastic - components: - - pos: 38.5,-2.5 - parent: 82 - type: Transform -- uid: 11496 - type: PottedPlantRandom - components: - - pos: 42.5,-2.5 - parent: 82 - type: Transform -- uid: 11497 - type: SpawnVehicleSecway - components: - - pos: 35.5,0.5 - parent: 82 - type: Transform -- uid: 11498 - type: SpawnVehicleSecway - components: - - pos: 36.5,0.5 - parent: 82 - type: Transform -- uid: 11499 - type: SpawnVehicleSecway - components: - - pos: 37.5,0.5 - parent: 82 - type: Transform -- uid: 11500 - type: Poweredlight - components: - - pos: 66.5,-18.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11501 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -33.5,14.5 - parent: 82 - type: Transform -- uid: 11502 - type: DeployableBarrier - components: - - anchored: False - pos: 58.5,-13.5 - parent: 82 - type: Transform -- uid: 11503 - type: DeployableBarrier - components: - - anchored: False - pos: 57.5,-13.5 - parent: 82 - type: Transform -- uid: 11504 - type: DeployableBarrier - components: - - anchored: False - pos: 58.5,-14.5 - parent: 82 - type: Transform -- uid: 11505 - type: CableHV - components: - - pos: -36.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11506 - type: CableHV - components: - - pos: -29.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11507 - type: CableHV - components: - - pos: -18.5,84.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11508 - type: CableHV - components: - - pos: -12.5,82.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11509 - type: SignMedical - components: - - pos: 53.5,-10.5 - parent: 82 - type: Transform -- uid: 11510 - type: LockerMedicineFilled - components: - - pos: 51.5,-13.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11511 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,23.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11512 - type: PillTricordrazine - components: - - pos: 52.41162,-11.486832 - parent: 82 - type: Transform -- uid: 11513 - type: WindowReinforcedDirectional - components: - - pos: 52.5,-15.5 - parent: 82 - type: Transform -- uid: 11514 - type: MedkitBurnFilled - components: - - pos: 51.66197,-11.517933 - parent: 82 - type: Transform -- uid: 11515 - type: PillTricordrazine - components: - - pos: 52.624603,-11.60036 - parent: 82 - type: Transform -- uid: 11516 - type: Syringe - components: - - pos: 52.00274,-11.546314 - parent: 82 - type: Transform -- uid: 11517 - type: MedkitOxygenFilled - components: - - pos: 51.485634,-11.378353 - parent: 82 - type: Transform -- uid: 11518 - type: SignElectrical - components: - - pos: -38.5,81.5 - parent: 82 - type: Transform -- uid: 11519 - type: MedkitFilled - components: - - pos: 52.158924,-11.361831 - parent: 82 - type: Transform -- uid: 11520 - type: Gauze1 - components: - - pos: 52.709797,-11.273964 - parent: 82 - type: Transform -- uid: 11521 - type: Catwalk - components: - - pos: 54.5,-25.5 - parent: 82 - type: Transform -- uid: 11522 - type: Catwalk - components: - - pos: 54.5,-26.5 - parent: 82 - type: Transform -- uid: 11523 - type: Catwalk - components: - - pos: 54.5,-27.5 - parent: 82 - type: Transform -- uid: 11524 - type: Catwalk - components: - - pos: 54.5,-28.5 - parent: 82 - type: Transform -- uid: 11525 - type: Catwalk - components: - - pos: 54.5,-29.5 - parent: 82 - type: Transform -- uid: 11526 - type: Catwalk - components: - - pos: 54.5,-30.5 - parent: 82 - type: Transform -- uid: 11527 - type: Catwalk - components: - - pos: 55.5,-25.5 - parent: 82 - type: Transform -- uid: 11528 - type: Catwalk - components: - - pos: 55.5,-26.5 - parent: 82 - type: Transform -- uid: 11529 - type: Catwalk - components: - - pos: 55.5,-27.5 - parent: 82 - type: Transform -- uid: 11530 - type: Catwalk - components: - - pos: 55.5,-28.5 - parent: 82 - type: Transform -- uid: 11531 - type: Catwalk - components: - - pos: 55.5,-29.5 - parent: 82 - type: Transform -- uid: 11532 - type: Catwalk - components: - - pos: 55.5,-30.5 - parent: 82 - type: Transform -- uid: 11533 - type: BoxBeanbag - components: - - pos: -15.443222,-9.295948 - parent: 82 - type: Transform -- uid: 11534 - type: ClosetWallEmergencyFilledRandom - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-23.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11535 - type: Catwalk - components: - - pos: 34.5,74.5 - parent: 82 - type: Transform -- uid: 11536 - type: WindoorSecurityLocked - components: - - pos: 46.5,-1.5 - parent: 82 - type: Transform -- uid: 11537 - type: WindoorSecurityLocked - components: - - pos: 45.5,-1.5 - parent: 82 - type: Transform -- uid: 11538 - type: WindoorSecurityLocked - components: - - pos: 44.5,-3.5 - parent: 82 - type: Transform -- uid: 11539 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11540 - type: Catwalk - components: - - pos: 34.5,77.5 - parent: 82 - type: Transform -- uid: 11541 - type: Catwalk - components: - - pos: 34.5,76.5 - parent: 82 - type: Transform -- uid: 11542 - type: Catwalk - components: - - pos: 34.5,75.5 - parent: 82 - type: Transform -- uid: 11543 - type: Catwalk - components: - - pos: 34.5,78.5 - parent: 82 - type: Transform -- uid: 11544 - type: ClothingShoesBootsJack - components: - - pos: 55.26144,-2.2133627 - parent: 82 - type: Transform -- uid: 11545 - type: SignSpace - components: - - pos: 56.5,-20.5 - parent: 82 - type: Transform -- uid: 11546 - type: SignSpace - components: - - pos: 56.5,-24.5 - parent: 82 - type: Transform -- uid: 11547 - type: SignSpace - components: - - pos: 56.5,-31.5 - parent: 82 - type: Transform -- uid: 11548 - type: SignSpace - components: - - pos: 56.5,-35.5 - parent: 82 - type: Transform -- uid: 11549 - type: ClosetWallEmergencyFilledRandom - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-32.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11550 - type: Catwalk - components: - - pos: -43.5,90.5 - parent: 82 - type: Transform -- uid: 11551 - type: BoxHandcuff - components: - - pos: 56.60866,-2.4355845 - parent: 82 - type: Transform -- uid: 11552 - type: Flash - components: - - pos: 55.73366,-2.2272513 - parent: 82 - type: Transform -- uid: 11553 - type: Flash - components: - - pos: 55.566994,-2.5050292 - parent: 82 - type: Transform -- uid: 11554 - type: PottedPlantRandom - components: - - pos: 54.5,-2.5 - parent: 82 - type: Transform -- uid: 11555 - type: PottedPlantRandom - components: - - pos: 49.5,-2.5 - parent: 82 - type: Transform -- uid: 11556 - type: Catwalk - components: - - pos: -35.5,90.5 - parent: 82 - type: Transform -- uid: 11557 - type: BoxZiptie - components: - - pos: 38.41609,-5.5052686 - parent: 82 - type: Transform -- uid: 11558 - type: Stunbaton - components: - - pos: 48.245037,-11.248529 - parent: 82 - type: Transform -- uid: 11559 - type: Stunbaton - components: - - pos: 48.552124,-11.416245 - parent: 82 - type: Transform -- uid: 11560 - type: Stunbaton - components: - - pos: 48.385456,-11.374578 - parent: 82 - type: Transform -- uid: 11561 - type: BoxBeanbag - components: - - pos: 49.64829,-11.49612 - parent: 82 - type: Transform -- uid: 11562 - type: BoxBeanbag - components: - - pos: 49.308224,-11.280974 - parent: 82 - type: Transform -- uid: 11563 - type: BoxShellTranquilizer - components: - - pos: 49.69922,-11.210074 - parent: 82 - type: Transform -- uid: 11564 - type: BoxHandcuff - components: - - pos: 49.299644,-13.330981 - parent: 82 - type: Transform -- uid: 11565 - type: BoxFlashbang - components: - - pos: 49.67669,-13.725684 - parent: 82 - type: Transform -- uid: 11566 - type: WeaponShotgunKammerer - components: - - pos: 48.343956,-18.243336 - parent: 82 - type: Transform -- uid: 11567 - type: WeaponShotgunKammerer - components: - - pos: 48.50873,-18.39611 - parent: 82 - type: Transform -- uid: 11568 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,28.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11569 - type: WallReinforced - components: - - pos: 53.5,-19.5 - parent: 82 - type: Transform -- uid: 11570 - type: Catwalk - components: - - pos: -21.5,90.5 - parent: 82 - type: Transform -- uid: 11571 - type: LampGold - components: - - rot: -1.5707963267948966 rad - pos: 44.67974,-13.057472 - parent: 82 - type: Transform -- uid: 11572 - type: BoxFolderYellow - components: - - pos: 43.665855,-14.307472 - parent: 82 - type: Transform -- uid: 11573 - type: BoxFolderRed - components: - - pos: 43.30474,-14.474138 - parent: 82 - type: Transform -- uid: 11574 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-13.5 - parent: 82 - type: Transform -- uid: 11575 - type: HydroponicsToolHatchet - components: - - pos: -56.61471,-41.319878 - parent: 82 - type: Transform -- uid: 11576 - type: MagazineBoxPistolRubber - components: - - pos: 49.380165,-13.763298 - parent: 82 - type: Transform -- uid: 11577 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: 60.522236,-9.739233 - parent: 82 - type: Transform -- uid: 11578 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: 60.647236,-9.905901 - parent: 82 - type: Transform -- uid: 11579 - type: WeaponSubMachineGunWt550 - components: - - pos: 60.550014,-9.211455 - parent: 82 - type: Transform -- uid: 11580 - type: WeaponSubMachineGunVector - components: - - pos: 52.352043,-18.2571 - parent: 82 - type: Transform -- uid: 11581 - type: WeaponSubMachineGunVector - components: - - pos: 52.515106,-18.53 - parent: 82 - type: Transform -- uid: 11582 - type: FirelockGlass - components: - - pos: -19.5,28.5 - parent: 82 - type: Transform -- uid: 11583 - type: MagazineMagnumSubMachineGun - components: - - pos: 52.47789,-19.348854 - parent: 82 - type: Transform -- uid: 11584 - type: MagazineMagnumSubMachineGun - components: - - pos: 52.332584,-19.348854 - parent: 82 - type: Transform -- uid: 11585 - type: Catwalk - components: - - pos: -11.5,90.5 - parent: 82 - type: Transform -- uid: 11586 - type: FirelockGlass - components: - - pos: 30.5,25.5 - parent: 82 - type: Transform -- uid: 11587 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 41.5,14.5 - parent: 82 - type: Transform -- uid: 11588 - type: SignalButton - components: - - pos: 39.5,17.5 - parent: 82 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 103 - - port: Toggle - uid: 1028 - - port: Toggle - uid: 83 - type: SignalTransmitter -- uid: 11589 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 23.5,17.5 - parent: 82 - type: Transform - - devices: - - 10325 - - 10324 - - 10323 - - 10322 - - 10321 - - 10319 - - 10318 - - 10317 - - 10473 - - 10472 - - 10471 - - 10301 - - 10302 - - 22459 - type: DeviceList -- uid: 11590 - type: WindoorScienceLocked - components: - - rot: 3.141592653589793 rad - pos: 26.5,57.5 - parent: 82 - type: Transform -- uid: 11591 - type: FirelockGlass - components: - - pos: 7.5,31.5 - parent: 82 - type: Transform -- uid: 11592 - type: FirelockGlass - components: - - pos: 7.5,30.5 - parent: 82 - type: Transform -- uid: 11593 - type: FirelockGlass - components: - - pos: -3.5,32.5 - parent: 82 - type: Transform -- uid: 11594 - type: Catwalk - components: - - pos: 33.5,82.5 - parent: 82 - type: Transform -- uid: 11595 - type: Catwalk - components: - - pos: 31.5,82.5 - parent: 82 - type: Transform -- uid: 11596 - type: Catwalk - components: - - pos: 32.5,82.5 - parent: 82 - type: Transform -- uid: 11597 - type: Catwalk - components: - - pos: 34.5,81.5 - parent: 82 - type: Transform -- uid: 11598 - type: Catwalk - components: - - pos: 34.5,80.5 - parent: 82 - type: Transform -- uid: 11599 - type: Grille - components: - - pos: -10.5,87.5 - parent: 82 - type: Transform -- uid: 11600 - type: Grille - components: - - pos: -26.5,87.5 - parent: 82 - type: Transform -- uid: 11601 - type: Grille - components: - - pos: -28.5,87.5 - parent: 82 - type: Transform -- uid: 11602 - type: Grille - components: - - pos: -30.5,87.5 - parent: 82 - type: Transform -- uid: 11603 - type: Grille - components: - - pos: -41.5,87.5 - parent: 82 - type: Transform -- uid: 11604 - type: Poweredlight - components: - - pos: -50.5,-26.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11605 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -33.5,15.5 - parent: 82 - type: Transform -- uid: 11606 - type: Grille - components: - - pos: -41.5,86.5 - parent: 82 - type: Transform -- uid: 11607 - type: Firelock - components: - - pos: -42.5,8.5 - parent: 82 - type: Transform -- uid: 11608 - type: GrilleBroken - components: - - pos: -41.5,80.5 - parent: 82 - type: Transform -- uid: 11609 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -41.5,85.5 - parent: 82 - type: Transform -- uid: 11610 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -9.5,85.5 - parent: 82 - type: Transform -- uid: 11611 - type: GrilleBroken - components: - - pos: -9.5,83.5 - parent: 82 - type: Transform -- uid: 11612 - type: DisposalUnit - components: - - pos: 77.5,8.5 - parent: 82 - type: Transform -- uid: 11613 - type: TableReinforced - components: - - pos: 25.5,1.5 - parent: 82 - type: Transform -- uid: 11614 - type: TableReinforced - components: - - pos: 25.5,0.5 - parent: 82 - type: Transform -- uid: 11615 - type: TableReinforced - components: - - pos: 25.5,-0.5 - parent: 82 - type: Transform -- uid: 11616 - type: CableHVStack - components: - - pos: 25.301254,1.695756 - parent: 82 - type: Transform -- uid: 11617 - type: CableMVStack - components: - - pos: 25.426254,1.5429788 - parent: 82 - type: Transform -- uid: 11618 - type: CableApcStack - components: - - pos: 25.537365,1.3902006 - parent: 82 - type: Transform -- uid: 11619 - type: SheetSteel - components: - - pos: 25.440144,0.91797876 - parent: 82 - type: Transform -- uid: 11620 - type: SheetGlass - components: - - pos: 25.46792,0.5152006 - parent: 82 - type: Transform -- uid: 11621 - type: PartRodMetal - components: - - pos: 25.551254,0.20964527 - parent: 82 - type: Transform -- uid: 11622 - type: trayScanner - components: - - pos: 25.73181,-0.0681324 - parent: 82 - type: Transform -- uid: 11623 - type: ClothingHandsGlovesColorYellow - components: - - pos: 25.370699,-0.45702124 - parent: 82 - type: Transform -- uid: 11624 - type: SpawnMobDrone - components: - - pos: 22.5,1.5 - parent: 82 - type: Transform -- uid: 11625 - type: SpawnMobDrone - components: - - pos: 23.5,1.5 - parent: 82 - type: Transform -- uid: 11626 - type: Catwalk - components: - - pos: -66.5,16.5 - parent: 82 - type: Transform -- uid: 11627 - type: Catwalk - components: - - pos: -66.5,17.5 - parent: 82 - type: Transform -- uid: 11628 - type: Catwalk - components: - - pos: -66.5,18.5 - parent: 82 - type: Transform -- uid: 11629 - type: Catwalk - components: - - pos: -66.5,19.5 - parent: 82 - type: Transform -- uid: 11630 - type: Catwalk - components: - - pos: -66.5,20.5 - parent: 82 - type: Transform -- uid: 11631 - type: Catwalk - components: - - pos: -70.5,20.5 - parent: 82 - type: Transform -- uid: 11632 - type: Catwalk - components: - - pos: -74.5,20.5 - parent: 82 - type: Transform -- uid: 11633 - type: Catwalk - components: - - pos: -74.5,19.5 - parent: 82 - type: Transform -- uid: 11634 - type: Catwalk - components: - - pos: -74.5,18.5 - parent: 82 - type: Transform -- uid: 11635 - type: Catwalk - components: - - pos: -74.5,17.5 - parent: 82 - type: Transform -- uid: 11636 - type: Catwalk - components: - - pos: -74.5,16.5 - parent: 82 - type: Transform -- uid: 11637 - type: Catwalk - components: - - pos: -74.5,15.5 - parent: 82 - type: Transform -- uid: 11638 - type: Catwalk - components: - - pos: -74.5,14.5 - parent: 82 - type: Transform -- uid: 11639 - type: Catwalk - components: - - pos: -74.5,13.5 - parent: 82 - type: Transform -- uid: 11640 - type: Catwalk - components: - - pos: -74.5,12.5 - parent: 82 - type: Transform -- uid: 11641 - type: Catwalk - components: - - pos: -74.5,10.5 - parent: 82 - type: Transform -- uid: 11642 - type: Catwalk - components: - - pos: -74.5,9.5 - parent: 82 - type: Transform -- uid: 11643 - type: Catwalk - components: - - pos: -74.5,8.5 - parent: 82 - type: Transform -- uid: 11644 - type: Catwalk - components: - - pos: -74.5,7.5 - parent: 82 - type: Transform -- uid: 11645 - type: Catwalk - components: - - pos: -74.5,6.5 - parent: 82 - type: Transform -- uid: 11646 - type: Catwalk - components: - - pos: -74.5,5.5 - parent: 82 - type: Transform -- uid: 11647 - type: Catwalk - components: - - pos: -74.5,4.5 - parent: 82 - type: Transform -- uid: 11648 - type: Catwalk - components: - - pos: -74.5,3.5 - parent: 82 - type: Transform -- uid: 11649 - type: Catwalk - components: - - pos: -74.5,2.5 - parent: 82 - type: Transform -- uid: 11650 - type: Catwalk - components: - - pos: -70.5,2.5 - parent: 82 - type: Transform -- uid: 11651 - type: Catwalk - components: - - pos: -70.5,3.5 - parent: 82 - type: Transform -- uid: 11652 - type: Catwalk - components: - - pos: -70.5,4.5 - parent: 82 - type: Transform -- uid: 11653 - type: Catwalk - components: - - pos: -70.5,5.5 - parent: 82 - type: Transform -- uid: 11654 - type: Catwalk - components: - - pos: -70.5,6.5 - parent: 82 - type: Transform -- uid: 11655 - type: Catwalk - components: - - pos: -70.5,7.5 - parent: 82 - type: Transform -- uid: 11656 - type: Catwalk - components: - - pos: -70.5,8.5 - parent: 82 - type: Transform -- uid: 11657 - type: Catwalk - components: - - pos: -70.5,9.5 - parent: 82 - type: Transform -- uid: 11658 - type: Catwalk - components: - - pos: -70.5,10.5 - parent: 82 - type: Transform -- uid: 11659 - type: SolarPanel - components: - - pos: -75.5,16.5 - parent: 82 - type: Transform -- uid: 11660 - type: SolarPanel - components: - - pos: -75.5,15.5 - parent: 82 - type: Transform -- uid: 11661 - type: SolarPanel - components: - - pos: -75.5,14.5 - parent: 82 - type: Transform -- uid: 11662 - type: SolarPanel - components: - - pos: -75.5,13.5 - parent: 82 - type: Transform -- uid: 11663 - type: SolarPanel - components: - - pos: -73.5,13.5 - parent: 82 - type: Transform -- uid: 11664 - type: SolarPanel - components: - - pos: -73.5,14.5 - parent: 82 - type: Transform -- uid: 11665 - type: SolarPanel - components: - - pos: -73.5,15.5 - parent: 82 - type: Transform -- uid: 11666 - type: SolarPanel - components: - - pos: -73.5,16.5 - parent: 82 - type: Transform -- uid: 11667 - type: SolarPanel - components: - - pos: -73.5,17.5 - parent: 82 - type: Transform -- uid: 11668 - type: SolarPanel - components: - - pos: -73.5,18.5 - parent: 82 - type: Transform -- uid: 11669 - type: SolarPanel - components: - - pos: -73.5,19.5 - parent: 82 - type: Transform -- uid: 11670 - type: SolarPanel - components: - - pos: -73.5,20.5 - parent: 82 - type: Transform -- uid: 11671 - type: SolarPanel - components: - - pos: -71.5,20.5 - parent: 82 - type: Transform -- uid: 11672 - type: SolarPanel - components: - - pos: -71.5,19.5 - parent: 82 - type: Transform -- uid: 11673 - type: SolarPanel - components: - - pos: -71.5,18.5 - parent: 82 - type: Transform -- uid: 11674 - type: SolarPanel - components: - - pos: -71.5,17.5 - parent: 82 - type: Transform -- uid: 11675 - type: SolarPanel - components: - - pos: -71.5,16.5 - parent: 82 - type: Transform -- uid: 11676 - type: SolarPanel - components: - - pos: -71.5,15.5 - parent: 82 - type: Transform -- uid: 11677 - type: SolarPanel - components: - - pos: -71.5,14.5 - parent: 82 - type: Transform -- uid: 11678 - type: SolarPanel - components: - - pos: -71.5,13.5 - parent: 82 - type: Transform -- uid: 11679 - type: SolarPanel - components: - - pos: -69.5,13.5 - parent: 82 - type: Transform -- uid: 11680 - type: SolarPanel - components: - - pos: -69.5,14.5 - parent: 82 - type: Transform -- uid: 11681 - type: SolarPanel - components: - - pos: -69.5,15.5 - parent: 82 - type: Transform -- uid: 11682 - type: SolarPanel - components: - - pos: -69.5,16.5 - parent: 82 - type: Transform -- uid: 11683 - type: SolarPanel - components: - - pos: -69.5,17.5 - parent: 82 - type: Transform -- uid: 11684 - type: SolarPanel - components: - - pos: -69.5,18.5 - parent: 82 - type: Transform -- uid: 11685 - type: SolarPanel - components: - - pos: -69.5,19.5 - parent: 82 - type: Transform -- uid: 11686 - type: SolarPanel - components: - - pos: -69.5,20.5 - parent: 82 - type: Transform -- uid: 11687 - type: SolarPanel - components: - - pos: -67.5,20.5 - parent: 82 - type: Transform -- uid: 11688 - type: SolarPanel - components: - - pos: -67.5,19.5 - parent: 82 - type: Transform -- uid: 11689 - type: SolarPanel - components: - - pos: -67.5,18.5 - parent: 82 - type: Transform -- uid: 11690 - type: SolarPanel - components: - - pos: -67.5,17.5 - parent: 82 - type: Transform -- uid: 11691 - type: SolarPanel - components: - - pos: -67.5,16.5 - parent: 82 - type: Transform -- uid: 11692 - type: SolarPanel - components: - - pos: -67.5,15.5 - parent: 82 - type: Transform -- uid: 11693 - type: SolarPanel - components: - - pos: -67.5,14.5 - parent: 82 - type: Transform -- uid: 11694 - type: SolarPanel - components: - - pos: -67.5,13.5 - parent: 82 - type: Transform -- uid: 11695 - type: SolarPanel - components: - - pos: -65.5,20.5 - parent: 82 - type: Transform -- uid: 11696 - type: SolarPanel - components: - - pos: -65.5,19.5 - parent: 82 - type: Transform -- uid: 11697 - type: SolarPanel - components: - - pos: -65.5,18.5 - parent: 82 - type: Transform -- uid: 11698 - type: SolarPanel - components: - - pos: -65.5,17.5 - parent: 82 - type: Transform -- uid: 11699 - type: SolarPanel - components: - - pos: -65.5,16.5 - parent: 82 - type: Transform -- uid: 11700 - type: SolarPanel - components: - - pos: -65.5,15.5 - parent: 82 - type: Transform -- uid: 11701 - type: SolarPanel - components: - - pos: -65.5,14.5 - parent: 82 - type: Transform -- uid: 11702 - type: SolarPanel - components: - - pos: -65.5,13.5 - parent: 82 - type: Transform -- uid: 11703 - type: SolarPanel - components: - - pos: -75.5,9.5 - parent: 82 - type: Transform -- uid: 11704 - type: SolarPanel - components: - - pos: -75.5,8.5 - parent: 82 - type: Transform -- uid: 11705 - type: SolarPanel - components: - - pos: -75.5,7.5 - parent: 82 - type: Transform -- uid: 11706 - type: SolarPanel - components: - - pos: -75.5,6.5 - parent: 82 - type: Transform -- uid: 11707 - type: SolarPanel - components: - - pos: -75.5,5.5 - parent: 82 - type: Transform -- uid: 11708 - type: SolarPanel - components: - - pos: -75.5,4.5 - parent: 82 - type: Transform -- uid: 11709 - type: SolarPanel - components: - - pos: -75.5,3.5 - parent: 82 - type: Transform -- uid: 11710 - type: SolarPanel - components: - - pos: -75.5,2.5 - parent: 82 - type: Transform -- uid: 11711 - type: SolarPanel - components: - - pos: -73.5,9.5 - parent: 82 - type: Transform -- uid: 11712 - type: SolarPanel - components: - - pos: -73.5,8.5 - parent: 82 - type: Transform -- uid: 11713 - type: SolarPanel - components: - - pos: -73.5,7.5 - parent: 82 - type: Transform -- uid: 11714 - type: SolarPanel - components: - - pos: -73.5,6.5 - parent: 82 - type: Transform -- uid: 11715 - type: SolarPanel - components: - - pos: -73.5,5.5 - parent: 82 - type: Transform -- uid: 11716 - type: SolarPanel - components: - - pos: -73.5,4.5 - parent: 82 - type: Transform -- uid: 11717 - type: SolarPanel - components: - - pos: -73.5,3.5 - parent: 82 - type: Transform -- uid: 11718 - type: SolarPanel - components: - - pos: -73.5,2.5 - parent: 82 - type: Transform -- uid: 11719 - type: SolarPanel - components: - - pos: -71.5,9.5 - parent: 82 - type: Transform -- uid: 11720 - type: SolarPanel - components: - - pos: -71.5,8.5 - parent: 82 - type: Transform -- uid: 11721 - type: SolarPanel - components: - - pos: -71.5,7.5 - parent: 82 - type: Transform -- uid: 11722 - type: SolarPanel - components: - - pos: -71.5,6.5 - parent: 82 - type: Transform -- uid: 11723 - type: SolarPanel - components: - - pos: -71.5,5.5 - parent: 82 - type: Transform -- uid: 11724 - type: SolarPanel - components: - - pos: -71.5,4.5 - parent: 82 - type: Transform -- uid: 11725 - type: SolarPanel - components: - - pos: -71.5,3.5 - parent: 82 - type: Transform -- uid: 11726 - type: SolarPanel - components: - - pos: -71.5,2.5 - parent: 82 - type: Transform -- uid: 11727 - type: SolarPanel - components: - - pos: -69.5,9.5 - parent: 82 - type: Transform -- uid: 11728 - type: SolarPanel - components: - - pos: -69.5,8.5 - parent: 82 - type: Transform -- uid: 11729 - type: SolarPanel - components: - - pos: -69.5,7.5 - parent: 82 - type: Transform -- uid: 11730 - type: SolarPanel - components: - - pos: -69.5,6.5 - parent: 82 - type: Transform -- uid: 11731 - type: SolarPanel - components: - - pos: -69.5,5.5 - parent: 82 - type: Transform -- uid: 11732 - type: SolarPanel - components: - - pos: -69.5,4.5 - parent: 82 - type: Transform -- uid: 11733 - type: SolarPanel - components: - - pos: -69.5,3.5 - parent: 82 - type: Transform -- uid: 11734 - type: SolarPanel - components: - - pos: -69.5,2.5 - parent: 82 - type: Transform -- uid: 11735 - type: SolarPanel - components: - - pos: -67.5,9.5 - parent: 82 - type: Transform -- uid: 11736 - type: SolarPanel - components: - - pos: -67.5,8.5 - parent: 82 - type: Transform -- uid: 11737 - type: SolarPanel - components: - - pos: -67.5,7.5 - parent: 82 - type: Transform -- uid: 11738 - type: SolarPanel - components: - - pos: -67.5,6.5 - parent: 82 - type: Transform -- uid: 11739 - type: SolarPanel - components: - - pos: -67.5,5.5 - parent: 82 - type: Transform -- uid: 11740 - type: SolarPanel - components: - - pos: -67.5,4.5 - parent: 82 - type: Transform -- uid: 11741 - type: SolarPanel - components: - - pos: -67.5,3.5 - parent: 82 - type: Transform -- uid: 11742 - type: SolarPanel - components: - - pos: -67.5,2.5 - parent: 82 - type: Transform -- uid: 11743 - type: SolarPanel - components: - - pos: -65.5,9.5 - parent: 82 - type: Transform -- uid: 11744 - type: SolarPanel - components: - - pos: -65.5,8.5 - parent: 82 - type: Transform -- uid: 11745 - type: SolarPanel - components: - - pos: -65.5,7.5 - parent: 82 - type: Transform -- uid: 11746 - type: SolarPanel - components: - - pos: -65.5,6.5 - parent: 82 - type: Transform -- uid: 11747 - type: SolarPanel - components: - - pos: -65.5,5.5 - parent: 82 - type: Transform -- uid: 11748 - type: SolarPanel - components: - - pos: -65.5,4.5 - parent: 82 - type: Transform -- uid: 11749 - type: SolarPanel - components: - - pos: -65.5,3.5 - parent: 82 - type: Transform -- uid: 11750 - type: SolarPanel - components: - - pos: -65.5,2.5 - parent: 82 - type: Transform -- uid: 11751 - type: SolarTracker - components: - - pos: -77.5,11.5 - parent: 82 - type: Transform -- uid: 11752 - type: CableHV - components: - - pos: -75.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11753 - type: CableHV - components: - - pos: -75.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11754 - type: CableHV - components: - - pos: -75.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11755 - type: CableHV - components: - - pos: -75.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11756 - type: CableHV - components: - - pos: -75.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11757 - type: CableHV - components: - - pos: -75.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11758 - type: CableHV - components: - - pos: -75.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11759 - type: CableHV - components: - - pos: -75.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11760 - type: CableHV - components: - - pos: -73.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11761 - type: CableHV - components: - - pos: -73.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11762 - type: CableHV - components: - - pos: -73.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11763 - type: CableHV - components: - - pos: -73.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11764 - type: CableHV - components: - - pos: -73.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11765 - type: CableHV - components: - - pos: -73.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11766 - type: CableHV - components: - - pos: -73.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11767 - type: CableHV - components: - - pos: -73.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11768 - type: CableHV - components: - - pos: -74.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11769 - type: CableHV - components: - - pos: -74.5,10.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11770 - type: CableHV - components: - - pos: -74.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11771 - type: CableHV - components: - - pos: -74.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11772 - type: CableHV - components: - - pos: -74.5,13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11773 - type: CableHV - components: - - pos: -75.5,13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11774 - type: CableHV - components: - - pos: -75.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11775 - type: CableHV - components: - - pos: -75.5,15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11776 - type: CableHV - components: - - pos: -75.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11777 - type: CableHV - components: - - pos: -75.5,17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11778 - type: CableHV - components: - - pos: -75.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11779 - type: CableHV - components: - - pos: -75.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11780 - type: CableHV - components: - - pos: -75.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11781 - type: CableHV - components: - - pos: -73.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11782 - type: CableHV - components: - - pos: -73.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11783 - type: CableHV - components: - - pos: -73.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11784 - type: CableHV - components: - - pos: -73.5,17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11785 - type: CableHV - components: - - pos: -73.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11786 - type: CableHV - components: - - pos: -73.5,15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11787 - type: CableHV - components: - - pos: -73.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11788 - type: CableHV - components: - - pos: -73.5,13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11789 - type: CableHV - components: - - pos: -71.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11790 - type: CableHV - components: - - pos: -71.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11791 - type: CableHV - components: - - pos: -71.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11792 - type: CableHV - components: - - pos: -71.5,17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11793 - type: CableHV - components: - - pos: -71.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11794 - type: CableHV - components: - - pos: -71.5,15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11795 - type: CableHV - components: - - pos: -71.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11796 - type: CableHV - components: - - pos: -71.5,13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11797 - type: CableHV - components: - - pos: -70.5,13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11798 - type: CableHV - components: - - pos: -69.5,13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11799 - type: CableHV - components: - - pos: -69.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11800 - type: CableHV - components: - - pos: -69.5,15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11801 - type: CableHV - components: - - pos: -69.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11802 - type: CableHV - components: - - pos: -69.5,17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11803 - type: CableHV - components: - - pos: -69.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11804 - type: CableHV - components: - - pos: -69.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11805 - type: CableHV - components: - - pos: -69.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11806 - type: CableHV - components: - - pos: -67.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11807 - type: CableHV - components: - - pos: -67.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11808 - type: CableHV - components: - - pos: -67.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11809 - type: CableHV - components: - - pos: -67.5,17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11810 - type: CableHV - components: - - pos: -67.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11811 - type: CableHV - components: - - pos: -67.5,15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11812 - type: CableHV - components: - - pos: -67.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11813 - type: CableHV - components: - - pos: -67.5,13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11814 - type: CableHV - components: - - pos: -65.5,13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11815 - type: CableHV - components: - - pos: -65.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11816 - type: CableHV - components: - - pos: -65.5,15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11817 - type: CableHV - components: - - pos: -65.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11818 - type: CableHV - components: - - pos: -65.5,17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11819 - type: CableHV - components: - - pos: -65.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11820 - type: CableHV - components: - - pos: -65.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11821 - type: CableHV - components: - - pos: -65.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11822 - type: CableHV - components: - - pos: -66.5,13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11823 - type: CableHV - components: - - pos: -70.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11824 - type: CableHV - components: - - pos: -70.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11825 - type: CableHV - components: - - pos: -70.5,10.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11826 - type: CableHV - components: - - pos: -70.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11827 - type: CableHV - components: - - pos: -71.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11828 - type: CableHV - components: - - pos: -71.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11829 - type: CableHV - components: - - pos: -71.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11830 - type: CableHV - components: - - pos: -71.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11831 - type: CableHV - components: - - pos: -71.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11832 - type: CableHV - components: - - pos: -71.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11833 - type: CableHV - components: - - pos: -71.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11834 - type: CableHV - components: - - pos: -71.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11835 - type: CableHV - components: - - pos: -69.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11836 - type: CableHV - components: - - pos: -69.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11837 - type: CableHV - components: - - pos: -69.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11838 - type: CableHV - components: - - pos: -69.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11839 - type: CableHV - components: - - pos: -69.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11840 - type: CableHV - components: - - pos: -69.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11841 - type: CableHV - components: - - pos: -69.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11842 - type: CableHV - components: - - pos: -69.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11843 - type: CableHV - components: - - pos: -70.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11844 - type: CableHV - components: - - pos: -67.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11845 - type: CableHV - components: - - pos: -67.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11846 - type: CableHV - components: - - pos: -67.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11847 - type: CableHV - components: - - pos: -67.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11848 - type: CableHV - components: - - pos: -67.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11849 - type: CableHV - components: - - pos: -67.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11850 - type: CableHV - components: - - pos: -67.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11851 - type: CableHV - components: - - pos: -67.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11852 - type: CableHV - components: - - pos: -65.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11853 - type: CableHV - components: - - pos: -65.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11854 - type: CableHV - components: - - pos: -65.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11855 - type: CableHV - components: - - pos: -65.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11856 - type: CableHV - components: - - pos: -65.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11857 - type: CableHV - components: - - pos: -65.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11858 - type: CableHV - components: - - pos: -65.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11859 - type: CableHV - components: - - pos: -65.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11860 - type: CableHV - components: - - pos: -66.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11861 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: -53.5,11.5 - parent: 82 - type: Transform -- uid: 11862 - type: CableHV - components: - - pos: -53.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11863 - type: CableHV - components: - - pos: -54.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11864 - type: CableHV - components: - - pos: -55.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11865 - type: CableHV - components: - - pos: -56.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11866 - type: CableHV - components: - - pos: -57.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11867 - type: CableHV - components: - - pos: -58.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11868 - type: CableHV - components: - - pos: -59.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11869 - type: SMESBasic - components: - - pos: -53.5,12.5 - parent: 82 - type: Transform -- uid: 11870 - type: ComputerSolarControl - components: - - pos: -52.5,12.5 - parent: 82 - type: Transform -- uid: 11871 - type: DisposalUnit - components: - - pos: 17.5,-5.5 - parent: 82 - type: Transform -- uid: 11872 - type: ClothingHandsGlovesColorYellow - components: - - pos: 24.61089,-9.345444 - parent: 82 - type: Transform -- uid: 11873 - type: WallSolid - components: - - pos: 71.5,8.5 - parent: 82 - type: Transform -- uid: 11874 - type: TableReinforced - components: - - pos: -9.5,47.5 - parent: 82 - type: Transform -- uid: 11875 - type: CableHV - components: - - pos: -53.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11876 - type: CableHV - components: - - pos: -52.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11877 - type: CableHV - components: - - pos: -51.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11878 - type: CableHV - components: - - pos: -51.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11879 - type: CableHV - components: - - pos: -50.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11880 - type: ComputerPowerMonitoring - components: - - pos: -51.5,12.5 - parent: 82 - type: Transform -- uid: 11881 - type: OxygenCanister - components: - - pos: -51.5,10.5 - parent: 82 - type: Transform -- uid: 11882 - type: NitrogenCanister - components: - - pos: -52.5,10.5 - parent: 82 - type: Transform -- uid: 11883 - type: TableReinforced - components: - - pos: -53.5,10.5 - parent: 82 - type: Transform -- uid: 11884 - type: CableHVStack - components: - - pos: -53.624184,10.705735 - parent: 82 - type: Transform -- uid: 11885 - type: Multitool - components: - - pos: -53.374184,10.497402 - parent: 82 - type: Transform -- uid: 11886 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -52.5,11.5 - parent: 82 - type: Transform -- uid: 11887 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -40.5,4.5 - parent: 82 - type: Transform -- uid: 11888 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -41.5,3.5 - parent: 82 - type: Transform -- uid: 11889 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -39.5,5.5 - parent: 82 - type: Transform -- uid: 11890 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -40.5,5.5 - parent: 82 - type: Transform -- uid: 11891 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -39.5,4.5 - parent: 82 - type: Transform -- uid: 11892 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -40.5,3.5 - parent: 82 - type: Transform -- uid: 11893 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -38.5,5.5 - parent: 82 - type: Transform -- uid: 11894 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -37.5,5.5 - parent: 82 - type: Transform -- uid: 11895 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -36.5,6.5 - parent: 82 - type: Transform -- uid: 11896 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -36.5,5.5 - parent: 82 - type: Transform -- uid: 11897 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -38.5,4.5 - parent: 82 - type: Transform -- uid: 11898 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,2.5 - parent: 82 - type: Transform -- uid: 11899 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,1.5 - parent: 82 - type: Transform -- uid: 11900 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,0.5 - parent: 82 - type: Transform -- uid: 11901 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -45.5,1.5 - parent: 82 - type: Transform -- uid: 11902 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -45.5,0.5 - parent: 82 - type: Transform -- uid: 11903 - type: ClothingHeadHatFez - components: - - pos: -41.404736,6.339859 - parent: 82 - type: Transform -- uid: 11904 - type: XylophoneInstrument - components: - - pos: -46.48453,12.364093 - parent: 82 - type: Transform -- uid: 11905 - type: TableReinforced - components: - - pos: -10.5,47.5 - parent: 82 - type: Transform -- uid: 11906 - type: Multitool - components: - - pos: -16.538208,47.724583 - parent: 82 - type: Transform -- uid: 11907 - type: Welder - components: - - pos: -16.038208,47.599583 - parent: 82 - type: Transform -- uid: 11908 - type: Wrench - components: - - pos: -15.62154,47.54403 - parent: 82 - type: Transform -- uid: 11909 - type: CableHVStack - components: - - pos: -10.531263,47.51625 - parent: 82 - type: Transform -- uid: 11910 - type: PowerCellRecharger - components: - - pos: -9.5,47.5 - parent: 82 - type: Transform -- uid: 11911 - type: IntercomEngineering - components: - - pos: 30.5,5.5 - parent: 82 - type: Transform -- uid: 11912 - type: HospitalCurtainsOpen - components: - - pos: 62.5,-16.5 - parent: 82 - type: Transform -- uid: 11913 - type: VendingMachineTankDispenserEngineering - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,12.5 - parent: 82 - type: Transform -- uid: 11914 - type: Table - components: - - pos: -2.5,-31.5 - parent: 82 - type: Transform -- uid: 11915 - type: DrinkShotGlass - components: - - pos: -2.6368666,-31.505325 - parent: 82 - type: Transform -- uid: 11916 - type: DrinkBottleCognac - components: - - rot: 1.5707963267948966 rad - pos: -2.5256743,-31.29699 - parent: 82 - type: Transform -- uid: 11917 - type: GasPipeStraight - components: - - pos: 47.5,15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11918 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,36.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 11919 - type: GasPipeStraight - components: - - pos: 47.5,16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11920 - type: GasPipeStraight - components: - - pos: 47.5,17.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11921 - type: GasPipeBend - components: - - pos: 47.5,18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11922 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11923 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,56.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11924 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 47.5,14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11925 - type: DonkpocketBoxSpawner - components: - - pos: 0.5,-45.5 - parent: 82 - type: Transform -- uid: 11926 - type: ChairFolding - components: - - pos: -1.5,-31.5 - parent: 82 - type: Transform -- uid: 11927 - type: ToySpawner - components: - - pos: 0.5,-43.5 - parent: 82 - type: Transform -- uid: 11928 - type: Cigarette - components: - - pos: -2.3186393,-31.449768 - parent: 82 - type: Transform -- uid: 11929 - type: ToySpawner - components: - - pos: 0.5,-41.5 - parent: 82 - type: Transform -- uid: 11930 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: 17.5,-33.5 - parent: 82 - type: Transform -- uid: 11931 - type: PlushieSlime - components: - - pos: -0.38992095,-43.43959 - parent: 82 - type: Transform -- uid: 11932 - type: ToyAi - components: - - pos: -0.63992095,-43.147923 - parent: 82 - type: Transform -- uid: 11933 - type: ToySpawner - components: - - pos: -0.5,-41.5 - parent: 82 - type: Transform -- uid: 11934 - type: ToySpawner - components: - - pos: 1.5,-41.5 - parent: 82 - type: Transform -- uid: 11935 - type: MaintenanceToolSpawner - components: - - pos: -0.5,-45.5 - parent: 82 - type: Transform -- uid: 11936 - type: MaintenanceFluffSpawner - components: - - pos: 1.5,-47.5 - parent: 82 - type: Transform -- uid: 11937 - type: MaintenanceWeaponSpawner - components: - - pos: 0.5,-47.5 - parent: 82 - type: Transform -- uid: 11938 - type: RandomInstruments - components: - - pos: -0.5,-47.5 - parent: 82 - type: Transform -- uid: 11939 - type: RandomSnacks - components: - - pos: -2.5,-46.5 - parent: 82 - type: Transform -- uid: 11940 - type: RandomPosterLegit - components: - - pos: -1.5,-40.5 - parent: 82 - type: Transform -- uid: 11941 - type: RandomPosterLegit - components: - - pos: 1.5,-40.5 - parent: 82 - type: Transform -- uid: 11942 - type: RandomPosterLegit - components: - - pos: -1.5,-44.5 - parent: 82 - type: Transform -- uid: 11943 - type: RandomPosterLegit - components: - - pos: 1.5,-44.5 - parent: 82 - type: Transform -- uid: 11944 - type: RandomPosterLegit - components: - - pos: -1.5,-48.5 - parent: 82 - type: Transform -- uid: 11945 - type: RandomPosterContraband - components: - - pos: 1.5,-48.5 - parent: 82 - type: Transform -- uid: 11946 - type: RandomPainting - components: - - pos: 0.5,-39.5 - parent: 82 - type: Transform -- uid: 11947 - type: RandomPainting - components: - - pos: 4.5,-32.5 - parent: 82 - type: Transform -- uid: 11948 - type: RandomPainting - components: - - pos: 10.5,-32.5 - parent: 82 - type: Transform -- uid: 11949 - type: RandomPainting - components: - - pos: 14.5,-39.5 - parent: 82 - type: Transform -- uid: 11950 - type: RandomPosterContraband - components: - - pos: 15.5,-31.5 - parent: 82 - type: Transform -- uid: 11951 - type: RandomPosterLegit - components: - - pos: -0.5,-31.5 - parent: 82 - type: Transform -- uid: 11952 - type: RandomPosterLegit - components: - - pos: 13.5,-37.5 - parent: 82 - type: Transform -- uid: 11953 - type: LampBanana - components: - - pos: 12.6404,-37.163937 - parent: 82 - type: Transform -- uid: 11954 - type: TrashBananaPeel - components: - - pos: 11.473732,-39.108383 - parent: 82 - type: Transform -- uid: 11955 - type: RandomFoodBakedWhole - components: - - pos: 3.5,-32.5 - parent: 82 - type: Transform -- uid: 11956 - type: RandomInstruments - components: - - pos: 17.5,-38.5 - parent: 82 - type: Transform -- uid: 11957 - type: RandomSoap - components: - - pos: 5.5,-32.5 - parent: 82 - type: Transform -- uid: 11958 - type: Grille - components: - - pos: 14.5,-33.5 - parent: 82 - type: Transform -- uid: 11959 - type: Grille - components: - - pos: 15.5,-36.5 - parent: 82 - type: Transform -- uid: 11960 - type: Grille - components: - - pos: 10.5,-36.5 - parent: 82 - type: Transform -- uid: 11961 - type: Grille - components: - - pos: 6.5,-33.5 - parent: 82 - type: Transform -- uid: 11962 - type: Grille - components: - - pos: 4.5,-36.5 - parent: 82 - type: Transform -- uid: 11963 - type: Grille - components: - - pos: 0.5,-33.5 - parent: 82 - type: Transform -- uid: 11964 - type: Grille - components: - - pos: -0.5,-36.5 - parent: 82 - type: Transform -- uid: 11965 - type: Airlock - components: - - pos: -1.5,-36.5 - parent: 82 - type: Transform -- uid: 11966 - type: Airlock - components: - - pos: 1.5,-33.5 - parent: 82 - type: Transform -- uid: 11967 - type: Airlock - components: - - pos: 3.5,-36.5 - parent: 82 - type: Transform -- uid: 11968 - type: Airlock - components: - - pos: 7.5,-33.5 - parent: 82 - type: Transform -- uid: 11969 - type: Airlock - components: - - pos: 11.5,-36.5 - parent: 82 - type: Transform -- uid: 11970 - type: Airlock - components: - - pos: 13.5,-33.5 - parent: 82 - type: Transform -- uid: 11971 - type: Airlock - components: - - pos: 16.5,-36.5 - parent: 82 - type: Transform -- uid: 11972 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: 16.5,-33.5 - parent: 82 - type: Transform -- uid: 11973 - type: Airlock - components: - - pos: 7.5,-36.5 - parent: 82 - type: Transform -- uid: 11974 - type: TableGlass - components: - - rot: 3.141592653589793 rad - pos: 11.5,-26.5 - parent: 82 - type: Transform -- uid: 11975 - type: FirelockGlass - components: - - pos: -13.5,28.5 - parent: 82 - type: Transform -- uid: 11976 - type: ReinforcedWindow - components: - - pos: -37.5,36.5 - parent: 82 - type: Transform -- uid: 11977 - type: FirelockGlass - components: - - pos: -18.5,28.5 - parent: 82 - type: Transform -- uid: 11978 - type: ClothingOuterCoatJensen - components: - - pos: -0.33177376,-39.4206 - parent: 82 - type: Transform -- uid: 11979 - type: ClothingEyesGlassesSunglasses - components: - - pos: -0.6373298,-39.267822 - parent: 82 - type: Transform -- uid: 11980 - type: CigCartonRed - components: - - pos: -2.5401073,-39.0456 - parent: 82 - type: Transform -- uid: 11981 - type: RandomDrinkGlass - components: - - pos: 2.5,-37.5 - parent: 82 - type: Transform -- uid: 11982 - type: MaintenanceFluffSpawner - components: - - pos: 14.5,-32.5 - parent: 82 - type: Transform -- uid: 11983 - type: ClosetLegalFilled - components: - - pos: 28.5,-14.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11984 - type: FirelockGlass - components: - - pos: -17.5,28.5 - parent: 82 - type: Transform -- uid: 11985 - type: APCBasic - components: - - pos: 28.5,-24.5 - parent: 82 - type: Transform -- uid: 11986 - type: CableApcExtension - components: - - pos: 28.5,-24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11987 - type: CableApcExtension - components: - - pos: 28.5,-25.5 - parent: 82 - type: Transform -- uid: 11988 - type: CableApcExtension - components: - - pos: 28.5,-26.5 - parent: 82 - type: Transform -- uid: 11989 - type: CableApcExtension - components: - - pos: 27.5,-26.5 - parent: 82 - type: Transform -- uid: 11990 - type: CableApcExtension - components: - - pos: 26.5,-26.5 - parent: 82 - type: Transform -- uid: 11991 - type: CableApcExtension - components: - - pos: 29.5,-26.5 - parent: 82 - type: Transform -- uid: 11992 - type: CableApcExtension - components: - - pos: 30.5,-26.5 - parent: 82 - type: Transform -- uid: 11993 - type: CableApcExtension - components: - - pos: 31.5,-26.5 - parent: 82 - type: Transform -- uid: 11994 - type: CableApcExtension - components: - - pos: 31.5,-27.5 - parent: 82 - type: Transform -- uid: 11995 - type: CableApcExtension - components: - - pos: 25.5,-27.5 - parent: 82 - type: Transform -- uid: 11996 - type: CableApcExtension - components: - - pos: 25.5,-26.5 - parent: 82 - type: Transform -- uid: 11997 - type: CableApcExtension - components: - - pos: 28.5,-23.5 - parent: 82 - type: Transform -- uid: 11998 - type: CableApcExtension - components: - - pos: 28.5,-22.5 - parent: 82 - type: Transform -- uid: 11999 - type: CableApcExtension - components: - - pos: 28.5,-21.5 - parent: 82 - type: Transform -- uid: 12000 - type: CableApcExtension - components: - - pos: 28.5,-20.5 - parent: 82 - type: Transform -- uid: 12001 - type: CableApcExtension - components: - - pos: 28.5,-19.5 - parent: 82 - type: Transform -- uid: 12002 - type: CableApcExtension - components: - - pos: 28.5,-18.5 - parent: 82 - type: Transform -- uid: 12003 - type: CableApcExtension - components: - - pos: 28.5,-17.5 - parent: 82 - type: Transform -- uid: 12004 - type: CableApcExtension - components: - - pos: 28.5,-16.5 - parent: 82 - type: Transform -- uid: 12005 - type: CableApcExtension - components: - - pos: 28.5,-15.5 - parent: 82 - type: Transform -- uid: 12006 - type: CableApcExtension - components: - - pos: 28.5,-14.5 - parent: 82 - type: Transform -- uid: 12007 - type: CableApcExtension - components: - - pos: 29.5,-14.5 - parent: 82 - type: Transform -- uid: 12008 - type: CableApcExtension - components: - - pos: 30.5,-14.5 - parent: 82 - type: Transform -- uid: 12009 - type: CableApcExtension - components: - - pos: 31.5,-14.5 - parent: 82 - type: Transform -- uid: 12010 - type: CableApcExtension - components: - - pos: 32.5,-14.5 - parent: 82 - type: Transform -- uid: 12011 - type: CableApcExtension - components: - - pos: 24.5,-19.5 - parent: 82 - type: Transform -- uid: 12012 - type: CableApcExtension - components: - - pos: 25.5,-19.5 - parent: 82 - type: Transform -- uid: 12013 - type: CableApcExtension - components: - - pos: 26.5,-19.5 - parent: 82 - type: Transform -- uid: 12014 - type: CableApcExtension - components: - - pos: 27.5,-19.5 - parent: 82 - type: Transform -- uid: 12015 - type: CableApcExtension - components: - - pos: 28.5,-19.5 - parent: 82 - type: Transform -- uid: 12016 - type: CableApcExtension - components: - - pos: 29.5,-19.5 - parent: 82 - type: Transform -- uid: 12017 - type: CableApcExtension - components: - - pos: 30.5,-19.5 - parent: 82 - type: Transform -- uid: 12018 - type: CableApcExtension - components: - - pos: 31.5,-19.5 - parent: 82 - type: Transform -- uid: 12019 - type: CableApcExtension - components: - - pos: 32.5,-19.5 - parent: 82 - type: Transform -- uid: 12020 - type: CableApcExtension - components: - - pos: 33.5,-19.5 - parent: 82 - type: Transform -- uid: 12021 - type: CableApcExtension - components: - - pos: 34.5,-19.5 - parent: 82 - type: Transform -- uid: 12022 - type: CableApcExtension - components: - - pos: 34.5,-20.5 - parent: 82 - type: Transform -- uid: 12023 - type: CableApcExtension - components: - - pos: 34.5,-21.5 - parent: 82 - type: Transform -- uid: 12024 - type: CableApcExtension - components: - - pos: 34.5,-22.5 - parent: 82 - type: Transform -- uid: 12025 - type: CableApcExtension - components: - - pos: 34.5,-18.5 - parent: 82 - type: Transform -- uid: 12026 - type: CableApcExtension - components: - - pos: 32.5,-15.5 - parent: 82 - type: Transform -- uid: 12027 - type: CableApcExtension - components: - - pos: 32.5,-16.5 - parent: 82 - type: Transform -- uid: 12028 - type: CableApcExtension - components: - - pos: 32.5,-17.5 - parent: 82 - type: Transform -- uid: 12029 - type: CableApcExtension - components: - - pos: 31.5,-20.5 - parent: 82 - type: Transform -- uid: 12030 - type: CableApcExtension - components: - - pos: 31.5,-21.5 - parent: 82 - type: Transform -- uid: 12031 - type: CableApcExtension - components: - - pos: 31.5,-22.5 - parent: 82 - type: Transform -- uid: 12032 - type: CableApcExtension - components: - - pos: 25.5,-20.5 - parent: 82 - type: Transform -- uid: 12033 - type: CableApcExtension - components: - - pos: 25.5,-21.5 - parent: 82 - type: Transform -- uid: 12034 - type: CableApcExtension - components: - - pos: 25.5,-22.5 - parent: 82 - type: Transform -- uid: 12035 - type: CableApcExtension - components: - - pos: 25.5,-18.5 - parent: 82 - type: Transform -- uid: 12036 - type: CableApcExtension - components: - - pos: 25.5,-17.5 - parent: 82 - type: Transform -- uid: 12037 - type: CableApcExtension - components: - - pos: 25.5,-16.5 - parent: 82 - type: Transform -- uid: 12038 - type: SubstationBasic - components: - - pos: 13.5,-41.5 - parent: 82 - type: Transform -- uid: 12039 - type: CableMV - components: - - pos: 13.5,-41.5 - parent: 82 - type: Transform -- uid: 12040 - type: CableMV - components: - - pos: 12.5,-41.5 - parent: 82 - type: Transform -- uid: 12041 - type: CableMV - components: - - pos: 11.5,-41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12042 - type: CableMV - components: - - pos: 11.5,-42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12043 - type: CableMV - components: - - pos: 11.5,-43.5 - parent: 82 - type: Transform -- uid: 12044 - type: CableMV - components: - - pos: 11.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12045 - type: CableMV - components: - - pos: 11.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12046 - type: CableMV - components: - - pos: 11.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12047 - type: CableMV - components: - - pos: 19.5,-46.5 - parent: 82 - type: Transform -- uid: 12048 - type: CableMV - components: - - pos: 19.5,-47.5 - parent: 82 - type: Transform -- uid: 12049 - type: CableMV - components: - - pos: 18.5,-47.5 - parent: 82 - type: Transform -- uid: 12050 - type: CableMV - components: - - pos: 17.5,-47.5 - parent: 82 - type: Transform -- uid: 12051 - type: CableMV - components: - - pos: 16.5,-47.5 - parent: 82 - type: Transform -- uid: 12052 - type: CableMV - components: - - pos: 15.5,-47.5 - parent: 82 - type: Transform -- uid: 12053 - type: CableMV - components: - - pos: 14.5,-47.5 - parent: 82 - type: Transform -- uid: 12054 - type: CableMV - components: - - pos: 13.5,-47.5 - parent: 82 - type: Transform -- uid: 12055 - type: CableMV - components: - - pos: 12.5,-47.5 - parent: 82 - type: Transform -- uid: 12056 - type: CableMV - components: - - pos: 11.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12057 - type: CableMV - components: - - pos: 19.5,-45.5 - parent: 82 - type: Transform -- uid: 12058 - type: CableMV - components: - - pos: 19.5,-44.5 - parent: 82 - type: Transform -- uid: 12059 - type: CableMV - components: - - pos: 19.5,-43.5 - parent: 82 - type: Transform -- uid: 12060 - type: CableMV - components: - - pos: 19.5,-42.5 - parent: 82 - type: Transform -- uid: 12061 - type: CableMV - components: - - pos: 19.5,-41.5 - parent: 82 - type: Transform -- uid: 12062 - type: CableMV - components: - - pos: 19.5,-40.5 - parent: 82 - type: Transform -- uid: 12063 - type: CableMV - components: - - pos: 19.5,-39.5 - parent: 82 - type: Transform -- uid: 12064 - type: CableMV - components: - - pos: 19.5,-38.5 - parent: 82 - type: Transform -- uid: 12065 - type: CableMV - components: - - pos: 19.5,-37.5 - parent: 82 - type: Transform -- uid: 12066 - type: CableMV - components: - - pos: 19.5,-36.5 - parent: 82 - type: Transform -- uid: 12067 - type: CableMV - components: - - pos: 19.5,-35.5 - parent: 82 - type: Transform -- uid: 12068 - type: CableMV - components: - - pos: 19.5,-34.5 - parent: 82 - type: Transform -- uid: 12069 - type: CableMV - components: - - pos: 19.5,-33.5 - parent: 82 - type: Transform -- uid: 12070 - type: CableMV - components: - - pos: 19.5,-32.5 - parent: 82 - type: Transform -- uid: 12071 - type: CableMV - components: - - pos: 19.5,-31.5 - parent: 82 - type: Transform -- uid: 12072 - type: CableMV - components: - - pos: 19.5,-30.5 - parent: 82 - type: Transform -- uid: 12073 - type: CableMV - components: - - pos: 19.5,-29.5 - parent: 82 - type: Transform -- uid: 12074 - type: CableMV - components: - - pos: 19.5,-28.5 - parent: 82 - type: Transform -- uid: 12075 - type: CableMV - components: - - pos: 19.5,-27.5 - parent: 82 - type: Transform -- uid: 12076 - type: CableMV - components: - - pos: 20.5,-27.5 - parent: 82 - type: Transform -- uid: 12077 - type: CableMV - components: - - pos: 21.5,-27.5 - parent: 82 - type: Transform -- uid: 12078 - type: CableMV - components: - - pos: 22.5,-27.5 - parent: 82 - type: Transform -- uid: 12079 - type: CableMV - components: - - pos: 23.5,-27.5 - parent: 82 - type: Transform -- uid: 12080 - type: CableMV - components: - - pos: 24.5,-27.5 - parent: 82 - type: Transform -- uid: 12081 - type: CableMV - components: - - pos: 25.5,-27.5 - parent: 82 - type: Transform -- uid: 12082 - type: CableMV - components: - - pos: 26.5,-27.5 - parent: 82 - type: Transform -- uid: 12083 - type: CableMV - components: - - pos: 27.5,-27.5 - parent: 82 - type: Transform -- uid: 12084 - type: CableMV - components: - - pos: 28.5,-27.5 - parent: 82 - type: Transform -- uid: 12085 - type: CableMV - components: - - pos: 28.5,-26.5 - parent: 82 - type: Transform -- uid: 12086 - type: CableMV - components: - - pos: 28.5,-25.5 - parent: 82 - type: Transform -- uid: 12087 - type: CableMV - components: - - pos: 28.5,-24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12088 - type: APCBasic - components: - - pos: 5.5,-43.5 - parent: 82 - type: Transform -- uid: 12089 - type: CableMV - components: - - pos: 5.5,-43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12090 - type: CableMV - components: - - pos: 5.5,-44.5 - parent: 82 - type: Transform -- uid: 12091 - type: CableMV - components: - - pos: 5.5,-45.5 - parent: 82 - type: Transform -- uid: 12092 - type: CableMV - components: - - pos: 5.5,-46.5 - parent: 82 - type: Transform -- uid: 12093 - type: CableMV - components: - - pos: 5.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12094 - type: CableMV - components: - - pos: 6.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12095 - type: CableMV - components: - - pos: 7.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12096 - type: CableMV - components: - - pos: 8.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12097 - type: CableMV - components: - - pos: 9.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12098 - type: CableMV - components: - - pos: 10.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12099 - type: CableMV - components: - - pos: 11.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12100 - type: APCBasic - components: - - pos: 12.5,-40.5 - parent: 82 - type: Transform -- uid: 12101 - type: CableMV - components: - - pos: 12.5,-40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12102 - type: CableApcExtension - components: - - pos: 5.5,-43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12103 - type: CableApcExtension - components: - - pos: 5.5,-42.5 - parent: 82 - type: Transform -- uid: 12104 - type: CableApcExtension - components: - - pos: 6.5,-42.5 - parent: 82 - type: Transform -- uid: 12105 - type: CableApcExtension - components: - - pos: 6.5,-41.5 - parent: 82 - type: Transform -- uid: 12106 - type: CableApcExtension - components: - - pos: 6.5,-40.5 - parent: 82 - type: Transform -- uid: 12107 - type: CableApcExtension - components: - - pos: 6.5,-39.5 - parent: 82 - type: Transform -- uid: 12108 - type: CableApcExtension - components: - - pos: 5.5,-44.5 - parent: 82 - type: Transform -- uid: 12109 - type: CableApcExtension - components: - - pos: 4.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12110 - type: CableApcExtension - components: - - pos: 3.5,-44.5 - parent: 82 - type: Transform -- uid: 12111 - type: CableApcExtension - components: - - pos: 3.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12112 - type: CableApcExtension - components: - - pos: 2.5,-45.5 - parent: 82 - type: Transform -- uid: 12113 - type: CableApcExtension - components: - - pos: 1.5,-45.5 - parent: 82 - type: Transform -- uid: 12114 - type: CableApcExtension - components: - - pos: 1.5,-46.5 - parent: 82 - type: Transform -- uid: 12115 - type: CableApcExtension - components: - - pos: 0.5,-46.5 - parent: 82 - type: Transform -- uid: 12116 - type: CableApcExtension - components: - - pos: -0.5,-46.5 - parent: 82 - type: Transform -- uid: 12117 - type: CableApcExtension - components: - - pos: -1.5,-46.5 - parent: 82 - type: Transform -- uid: 12118 - type: CableApcExtension - components: - - pos: 3.5,-43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12119 - type: CableApcExtension - components: - - pos: 2.5,-43.5 - parent: 82 - type: Transform -- uid: 12120 - type: CableApcExtension - components: - - pos: 1.5,-43.5 - parent: 82 - type: Transform -- uid: 12121 - type: CableApcExtension - components: - - pos: 1.5,-42.5 - parent: 82 - type: Transform -- uid: 12122 - type: CableApcExtension - components: - - pos: 0.5,-42.5 - parent: 82 - type: Transform -- uid: 12123 - type: CableApcExtension - components: - - pos: -0.5,-42.5 - parent: 82 - type: Transform -- uid: 12124 - type: CableApcExtension - components: - - pos: -1.5,-42.5 - parent: 82 - type: Transform -- uid: 12125 - type: CableApcExtension - components: - - pos: 3.5,-42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12126 - type: CableApcExtension - components: - - pos: 3.5,-41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12127 - type: CableApcExtension - components: - - pos: 3.5,-40.5 - parent: 82 - type: Transform -- uid: 12128 - type: CableApcExtension - components: - - pos: 3.5,-39.5 - parent: 82 - type: Transform -- uid: 12129 - type: CableApcExtension - components: - - pos: 3.5,-38.5 - parent: 82 - type: Transform -- uid: 12130 - type: CableApcExtension - components: - - pos: 3.5,-37.5 - parent: 82 - type: Transform -- uid: 12131 - type: CableApcExtension - components: - - pos: 3.5,-36.5 - parent: 82 - type: Transform -- uid: 12132 - type: CableApcExtension - components: - - pos: 3.5,-35.5 - parent: 82 - type: Transform -- uid: 12133 - type: CableApcExtension - components: - - pos: 4.5,-35.5 - parent: 82 - type: Transform -- uid: 12134 - type: CableApcExtension - components: - - pos: 5.5,-35.5 - parent: 82 - type: Transform -- uid: 12135 - type: CableApcExtension - components: - - pos: 5.5,-34.5 - parent: 82 - type: Transform -- uid: 12136 - type: CableApcExtension - components: - - pos: 2.5,-35.5 - parent: 82 - type: Transform -- uid: 12137 - type: CableApcExtension - components: - - pos: 1.5,-35.5 - parent: 82 - type: Transform -- uid: 12138 - type: CableApcExtension - components: - - pos: 1.5,-34.5 - parent: 82 - type: Transform -- uid: 12139 - type: CableApcExtension - components: - - pos: 1.5,-33.5 - parent: 82 - type: Transform -- uid: 12140 - type: CableApcExtension - components: - - pos: 1.5,-32.5 - parent: 82 - type: Transform -- uid: 12141 - type: CableApcExtension - components: - - pos: 1.5,-31.5 - parent: 82 - type: Transform -- uid: 12142 - type: CableApcExtension - components: - - pos: 0.5,-35.5 - parent: 82 - type: Transform -- uid: 12143 - type: CableApcExtension - components: - - pos: -0.5,-35.5 - parent: 82 - type: Transform -- uid: 12144 - type: CableApcExtension - components: - - pos: -1.5,-35.5 - parent: 82 - type: Transform -- uid: 12145 - type: CableApcExtension - components: - - pos: -1.5,-36.5 - parent: 82 - type: Transform -- uid: 12146 - type: CableApcExtension - components: - - pos: -1.5,-37.5 - parent: 82 - type: Transform -- uid: 12147 - type: CableApcExtension - components: - - pos: -1.5,-38.5 - parent: 82 - type: Transform -- uid: 12148 - type: CableApcExtension - components: - - pos: -1.5,-39.5 - parent: 82 - type: Transform -- uid: 12149 - type: CableApcExtension - components: - - pos: 12.5,-39.5 - parent: 82 - type: Transform -- uid: 12150 - type: CableApcExtension - components: - - pos: 12.5,-38.5 - parent: 82 - type: Transform -- uid: 12151 - type: CableApcExtension - components: - - pos: 11.5,-38.5 - parent: 82 - type: Transform -- uid: 12152 - type: CableApcExtension - components: - - pos: 12.5,-40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12153 - type: CableApcExtension - components: - - pos: 12.5,-41.5 - parent: 82 - type: Transform -- uid: 12154 - type: CableApcExtension - components: - - pos: 11.5,-41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12155 - type: CableApcExtension - components: - - pos: 11.5,-42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12156 - type: CableApcExtension - components: - - pos: 11.5,-43.5 - parent: 82 - type: Transform -- uid: 12157 - type: CableApcExtension - components: - - pos: 6.5,-34.5 - parent: 82 - type: Transform -- uid: 12158 - type: CableApcExtension - components: - - pos: 7.5,-34.5 - parent: 82 - type: Transform -- uid: 12159 - type: CableApcExtension - components: - - pos: 7.5,-33.5 - parent: 82 - type: Transform -- uid: 12160 - type: CableApcExtension - components: - - pos: 7.5,-32.5 - parent: 82 - type: Transform -- uid: 12161 - type: CableApcExtension - components: - - pos: 7.5,-31.5 - parent: 82 - type: Transform -- uid: 12162 - type: CableApcExtension - components: - - pos: 11.5,-37.5 - parent: 82 - type: Transform -- uid: 12163 - type: CableApcExtension - components: - - pos: 11.5,-36.5 - parent: 82 - type: Transform -- uid: 12164 - type: CableApcExtension - components: - - pos: 11.5,-35.5 - parent: 82 - type: Transform -- uid: 12165 - type: CableApcExtension - components: - - pos: 10.5,-35.5 - parent: 82 - type: Transform -- uid: 12166 - type: CableApcExtension - components: - - pos: 9.5,-35.5 - parent: 82 - type: Transform -- uid: 12167 - type: CableApcExtension - components: - - pos: 12.5,-35.5 - parent: 82 - type: Transform -- uid: 12168 - type: CableApcExtension - components: - - pos: 13.5,-35.5 - parent: 82 - type: Transform -- uid: 12169 - type: CableApcExtension - components: - - pos: 13.5,-34.5 - parent: 82 - type: Transform -- uid: 12170 - type: CableApcExtension - components: - - pos: 13.5,-33.5 - parent: 82 - type: Transform -- uid: 12171 - type: CableApcExtension - components: - - pos: 13.5,-32.5 - parent: 82 - type: Transform -- uid: 12172 - type: CableApcExtension - components: - - pos: 13.5,-31.5 - parent: 82 - type: Transform -- uid: 12173 - type: CableApcExtension - components: - - pos: 14.5,-35.5 - parent: 82 - type: Transform -- uid: 12174 - type: CableApcExtension - components: - - pos: 15.5,-35.5 - parent: 82 - type: Transform -- uid: 12175 - type: CableApcExtension - components: - - pos: 16.5,-35.5 - parent: 82 - type: Transform -- uid: 12176 - type: CableApcExtension - components: - - pos: 16.5,-36.5 - parent: 82 - type: Transform -- uid: 12177 - type: CableApcExtension - components: - - pos: 16.5,-37.5 - parent: 82 - type: Transform -- uid: 12178 - type: CableApcExtension - components: - - pos: 16.5,-38.5 - parent: 82 - type: Transform -- uid: 12179 - type: CableApcExtension - components: - - pos: 16.5,-39.5 - parent: 82 - type: Transform -- uid: 12180 - type: CableApcExtension - components: - - pos: 16.5,-40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12181 - type: CableApcExtension - components: - - pos: 16.5,-41.5 - parent: 82 - type: Transform -- uid: 12182 - type: CableApcExtension - components: - - pos: 16.5,-42.5 - parent: 82 - type: Transform -- uid: 12183 - type: CableApcExtension - components: - - pos: 16.5,-43.5 - parent: 82 - type: Transform -- uid: 12184 - type: CableApcExtension - components: - - pos: 16.5,-44.5 - parent: 82 - type: Transform -- uid: 12185 - type: ClothingShoesBling - components: - - pos: 13.447912,-45.40127 - parent: 82 - type: Transform -- uid: 12186 - type: ClothingNeckBling - components: - - pos: 13.420134,-44.762383 - parent: 82 - type: Transform -- uid: 12187 - type: ClothingNeckBling - components: - - pos: 0.31434178,-47.350555 - parent: 82 - type: Transform -- uid: 12188 - type: ClothingEyesGlassesSunglasses - components: - - pos: -15.23489,-9.62928 - parent: 82 - type: Transform -- uid: 12189 - type: ChessBoard - components: - - rot: -1.5707963267948966 rad - pos: 3.5010571,-26.451584 - parent: 82 - type: Transform -- uid: 12190 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-26.5 - parent: 82 - type: Transform -- uid: 12191 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 12192 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 12193 - type: RandomVending - components: - - pos: 8.5,-26.5 - parent: 82 - type: Transform -- uid: 12194 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 12.5,-26.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 12195 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 10.5,-26.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 12196 - type: DrinkShaker - components: - - pos: -15.693222,-9.601503 - parent: 82 - type: Transform -- uid: 12197 - type: WallSolid - components: - - pos: 36.5,-43.5 - parent: 82 - type: Transform -- uid: 12198 - type: WallSolid - components: - - pos: 36.5,-46.5 - parent: 82 - type: Transform -- uid: 12199 - type: WallSolid - components: - - pos: 36.5,-38.5 - parent: 82 - type: Transform -- uid: 12200 - type: WallSolid - components: - - pos: 36.5,-52.5 - parent: 82 - type: Transform -- uid: 12201 - type: WallSolid - components: - - pos: 36.5,-56.5 - parent: 82 - type: Transform -- uid: 12202 - type: WallSolid - components: - - pos: 40.5,-56.5 - parent: 82 - type: Transform -- uid: 12203 - type: WallSolid - components: - - pos: 46.5,-56.5 - parent: 82 - type: Transform -- uid: 12204 - type: WallSolid - components: - - pos: 50.5,-56.5 - parent: 82 - type: Transform -- uid: 12205 - type: WallSolid - components: - - pos: 56.5,-56.5 - parent: 82 - type: Transform -- uid: 12206 - type: WallSolid - components: - - pos: 60.5,-52.5 - parent: 82 - type: Transform -- uid: 12207 - type: WallSolid - components: - - pos: 60.5,-48.5 - parent: 82 - type: Transform -- uid: 12208 - type: WallSolid - components: - - pos: 65.5,-48.5 - parent: 82 - type: Transform -- uid: 12209 - type: WallSolid - components: - - pos: 65.5,-43.5 - parent: 82 - type: Transform -- uid: 12210 - type: WallSolid - components: - - pos: 65.5,-38.5 - parent: 82 - type: Transform -- uid: 12211 - type: WallSolid - components: - - pos: 65.5,-35.5 - parent: 82 - type: Transform -- uid: 12212 - type: Catwalk - components: - - pos: 37.5,-23.5 - parent: 82 - type: Transform -- uid: 12213 - type: Catwalk - components: - - pos: 38.5,-23.5 - parent: 82 - type: Transform -- uid: 12214 - type: Catwalk - components: - - pos: 39.5,-23.5 - parent: 82 - type: Transform -- uid: 12215 - type: Catwalk - components: - - pos: 40.5,-23.5 - parent: 82 - type: Transform -- uid: 12216 - type: Catwalk - components: - - pos: 41.5,-23.5 - parent: 82 - type: Transform -- uid: 12217 - type: Catwalk - components: - - pos: 42.5,-23.5 - parent: 82 - type: Transform -- uid: 12218 - type: Catwalk - components: - - pos: 43.5,-23.5 - parent: 82 - type: Transform -- uid: 12219 - type: Catwalk - components: - - pos: 44.5,-23.5 - parent: 82 - type: Transform -- uid: 12220 - type: Catwalk - components: - - pos: 45.5,-23.5 - parent: 82 - type: Transform -- uid: 12221 - type: Catwalk - components: - - pos: 46.5,-23.5 - parent: 82 - type: Transform -- uid: 12222 - type: Catwalk - components: - - pos: 47.5,-23.5 - parent: 82 - type: Transform -- uid: 12223 - type: Catwalk - components: - - pos: 48.5,-23.5 - parent: 82 - type: Transform -- uid: 12224 - type: Catwalk - components: - - pos: 49.5,-23.5 - parent: 82 - type: Transform -- uid: 12225 - type: Catwalk - components: - - pos: 50.5,-23.5 - parent: 82 - type: Transform -- uid: 12226 - type: Catwalk - components: - - pos: 51.5,-23.5 - parent: 82 - type: Transform -- uid: 12227 - type: Catwalk - components: - - pos: 52.5,-23.5 - parent: 82 - type: Transform -- uid: 12228 - type: Catwalk - components: - - pos: 52.5,-24.5 - parent: 82 - type: Transform -- uid: 12229 - type: Catwalk - components: - - pos: 52.5,-25.5 - parent: 82 - type: Transform -- uid: 12230 - type: Catwalk - components: - - pos: 52.5,-26.5 - parent: 82 - type: Transform -- uid: 12231 - type: Catwalk - components: - - pos: 52.5,-27.5 - parent: 82 - type: Transform -- uid: 12232 - type: Catwalk - components: - - pos: 52.5,-28.5 - parent: 82 - type: Transform -- uid: 12233 - type: Catwalk - components: - - pos: 52.5,-29.5 - parent: 82 - type: Transform -- uid: 12234 - type: Catwalk - components: - - pos: 52.5,-30.5 - parent: 82 - type: Transform -- uid: 12235 - type: Catwalk - components: - - pos: 52.5,-31.5 - parent: 82 - type: Transform -- uid: 12236 - type: Catwalk - components: - - pos: 52.5,-32.5 - parent: 82 - type: Transform -- uid: 12237 - type: Catwalk - components: - - pos: 52.5,-33.5 - parent: 82 - type: Transform -- uid: 12238 - type: Catwalk - components: - - pos: 52.5,-34.5 - parent: 82 - type: Transform -- uid: 12239 - type: Catwalk - components: - - pos: 51.5,-34.5 - parent: 82 - type: Transform -- uid: 12240 - type: Catwalk - components: - - pos: 50.5,-34.5 - parent: 82 - type: Transform -- uid: 12241 - type: Catwalk - components: - - pos: 49.5,-34.5 - parent: 82 - type: Transform -- uid: 12242 - type: Catwalk - components: - - pos: 48.5,-34.5 - parent: 82 - type: Transform -- uid: 12243 - type: Catwalk - components: - - pos: 47.5,-34.5 - parent: 82 - type: Transform -- uid: 12244 - type: Catwalk - components: - - pos: 47.5,-35.5 - parent: 82 - type: Transform -- uid: 12245 - type: Catwalk - components: - - pos: 47.5,-36.5 - parent: 82 - type: Transform -- uid: 12246 - type: Catwalk - components: - - pos: 47.5,-37.5 - parent: 82 - type: Transform -- uid: 12247 - type: Catwalk - components: - - pos: 47.5,-38.5 - parent: 82 - type: Transform -- uid: 12248 - type: Catwalk - components: - - pos: 46.5,-38.5 - parent: 82 - type: Transform -- uid: 12249 - type: Catwalk - components: - - pos: 45.5,-38.5 - parent: 82 - type: Transform -- uid: 12250 - type: Catwalk - components: - - pos: 44.5,-38.5 - parent: 82 - type: Transform -- uid: 12251 - type: Catwalk - components: - - pos: 43.5,-38.5 - parent: 82 - type: Transform -- uid: 12252 - type: Catwalk - components: - - pos: 42.5,-38.5 - parent: 82 - type: Transform -- uid: 12253 - type: Catwalk - components: - - pos: 41.5,-38.5 - parent: 82 - type: Transform -- uid: 12254 - type: Catwalk - components: - - pos: 40.5,-38.5 - parent: 82 - type: Transform -- uid: 12255 - type: Catwalk - components: - - pos: 40.5,-39.5 - parent: 82 - type: Transform -- uid: 12256 - type: Catwalk - components: - - pos: 40.5,-40.5 - parent: 82 - type: Transform -- uid: 12257 - type: Catwalk - components: - - pos: 40.5,-41.5 - parent: 82 - type: Transform -- uid: 12258 - type: Catwalk - components: - - pos: 40.5,-42.5 - parent: 82 - type: Transform -- uid: 12259 - type: Catwalk - components: - - pos: 40.5,-43.5 - parent: 82 - type: Transform -- uid: 12260 - type: Catwalk - components: - - pos: 40.5,-44.5 - parent: 82 - type: Transform -- uid: 12261 - type: Catwalk - components: - - pos: 40.5,-45.5 - parent: 82 - type: Transform -- uid: 12262 - type: Catwalk - components: - - pos: 40.5,-46.5 - parent: 82 - type: Transform -- uid: 12263 - type: Catwalk - components: - - pos: 40.5,-47.5 - parent: 82 - type: Transform -- uid: 12264 - type: Catwalk - components: - - pos: 40.5,-48.5 - parent: 82 - type: Transform -- uid: 12265 - type: Catwalk - components: - - pos: 40.5,-49.5 - parent: 82 - type: Transform -- uid: 12266 - type: Catwalk - components: - - pos: 40.5,-50.5 - parent: 82 - type: Transform -- uid: 12267 - type: Catwalk - components: - - pos: 40.5,-51.5 - parent: 82 - type: Transform -- uid: 12268 - type: Catwalk - components: - - pos: 40.5,-52.5 - parent: 82 - type: Transform -- uid: 12269 - type: Catwalk - components: - - pos: 41.5,-52.5 - parent: 82 - type: Transform -- uid: 12270 - type: Catwalk - components: - - pos: 42.5,-52.5 - parent: 82 - type: Transform -- uid: 12271 - type: Catwalk - components: - - pos: 43.5,-52.5 - parent: 82 - type: Transform -- uid: 12272 - type: Catwalk - components: - - pos: 44.5,-52.5 - parent: 82 - type: Transform -- uid: 12273 - type: Catwalk - components: - - pos: 45.5,-52.5 - parent: 82 - type: Transform -- uid: 12274 - type: Catwalk - components: - - pos: 46.5,-52.5 - parent: 82 - type: Transform -- uid: 12275 - type: Catwalk - components: - - pos: 47.5,-52.5 - parent: 82 - type: Transform -- uid: 12276 - type: Catwalk - components: - - pos: 48.5,-52.5 - parent: 82 - type: Transform -- uid: 12277 - type: Catwalk - components: - - pos: 49.5,-52.5 - parent: 82 - type: Transform -- uid: 12278 - type: Catwalk - components: - - pos: 50.5,-52.5 - parent: 82 - type: Transform -- uid: 12279 - type: Catwalk - components: - - pos: 51.5,-52.5 - parent: 82 - type: Transform -- uid: 12280 - type: Catwalk - components: - - pos: 52.5,-52.5 - parent: 82 - type: Transform -- uid: 12281 - type: Catwalk - components: - - pos: 53.5,-52.5 - parent: 82 - type: Transform -- uid: 12282 - type: Catwalk - components: - - pos: 54.5,-52.5 - parent: 82 - type: Transform -- uid: 12283 - type: Catwalk - components: - - pos: 55.5,-52.5 - parent: 82 - type: Transform -- uid: 12284 - type: Catwalk - components: - - pos: 56.5,-52.5 - parent: 82 - type: Transform -- uid: 12285 - type: Catwalk - components: - - pos: 56.5,-51.5 - parent: 82 - type: Transform -- uid: 12286 - type: Catwalk - components: - - pos: 56.5,-50.5 - parent: 82 - type: Transform -- uid: 12287 - type: Catwalk - components: - - pos: 56.5,-49.5 - parent: 82 - type: Transform -- uid: 12288 - type: Catwalk - components: - - pos: 56.5,-48.5 - parent: 82 - type: Transform -- uid: 12289 - type: Catwalk - components: - - pos: 56.5,-47.5 - parent: 82 - type: Transform -- uid: 12290 - type: Catwalk - components: - - pos: 56.5,-46.5 - parent: 82 - type: Transform -- uid: 12291 - type: Catwalk - components: - - pos: 56.5,-45.5 - parent: 82 - type: Transform -- uid: 12292 - type: Catwalk - components: - - pos: 57.5,-45.5 - parent: 82 - type: Transform -- uid: 12293 - type: Catwalk - components: - - pos: 58.5,-45.5 - parent: 82 - type: Transform -- uid: 12294 - type: Catwalk - components: - - pos: 59.5,-45.5 - parent: 82 - type: Transform -- uid: 12295 - type: Catwalk - components: - - pos: 60.5,-45.5 - parent: 82 - type: Transform -- uid: 12296 - type: Catwalk - components: - - pos: 61.5,-45.5 - parent: 82 - type: Transform -- uid: 12297 - type: Catwalk - components: - - pos: 62.5,-45.5 - parent: 82 - type: Transform -- uid: 12298 - type: Catwalk - components: - - pos: 62.5,-44.5 - parent: 82 - type: Transform -- uid: 12299 - type: Catwalk - components: - - pos: 62.5,-43.5 - parent: 82 - type: Transform -- uid: 12300 - type: Catwalk - components: - - pos: 62.5,-42.5 - parent: 82 - type: Transform -- uid: 12301 - type: Catwalk - components: - - pos: 62.5,-41.5 - parent: 82 - type: Transform -- uid: 12302 - type: Catwalk - components: - - pos: 62.5,-40.5 - parent: 82 - type: Transform -- uid: 12303 - type: Catwalk - components: - - pos: 62.5,-39.5 - parent: 82 - type: Transform -- uid: 12304 - type: Catwalk - components: - - pos: 62.5,-38.5 - parent: 82 - type: Transform -- uid: 12305 - type: Catwalk - components: - - pos: 62.5,-37.5 - parent: 82 - type: Transform -- uid: 12306 - type: Catwalk - components: - - pos: 62.5,-36.5 - parent: 82 - type: Transform -- uid: 12307 - type: Catwalk - components: - - pos: 62.5,-35.5 - parent: 82 - type: Transform -- uid: 12308 - type: Catwalk - components: - - pos: 62.5,-34.5 - parent: 82 - type: Transform -- uid: 12309 - type: Catwalk - components: - - pos: 61.5,-34.5 - parent: 82 - type: Transform -- uid: 12310 - type: Catwalk - components: - - pos: 60.5,-34.5 - parent: 82 - type: Transform -- uid: 12311 - type: Catwalk - components: - - pos: 59.5,-34.5 - parent: 82 - type: Transform -- uid: 12312 - type: Catwalk - components: - - pos: 58.5,-34.5 - parent: 82 - type: Transform -- uid: 12313 - type: Catwalk - components: - - pos: 57.5,-34.5 - parent: 82 - type: Transform -- uid: 12314 - type: Catwalk - components: - - pos: 57.5,-33.5 - parent: 82 - type: Transform -- uid: 12315 - type: Catwalk - components: - - pos: 57.5,-32.5 - parent: 82 - type: Transform -- uid: 12316 - type: Catwalk - components: - - pos: 57.5,-31.5 - parent: 82 - type: Transform -- uid: 12317 - type: Catwalk - components: - - pos: 57.5,-30.5 - parent: 82 - type: Transform -- uid: 12318 - type: Catwalk - components: - - pos: 57.5,-29.5 - parent: 82 - type: Transform -- uid: 12319 - type: Catwalk - components: - - pos: 57.5,-28.5 - parent: 82 - type: Transform -- uid: 12320 - type: Catwalk - components: - - pos: 57.5,-27.5 - parent: 82 - type: Transform -- uid: 12321 - type: Catwalk - components: - - pos: 57.5,-26.5 - parent: 82 - type: Transform -- uid: 12322 - type: Catwalk - components: - - pos: 57.5,-25.5 - parent: 82 - type: Transform -- uid: 12323 - type: Catwalk - components: - - pos: 57.5,-24.5 - parent: 82 - type: Transform -- uid: 12324 - type: Catwalk - components: - - pos: 57.5,-23.5 - parent: 82 - type: Transform -- uid: 12325 - type: Catwalk - components: - - pos: 58.5,-27.5 - parent: 82 - type: Transform -- uid: 12326 - type: Catwalk - components: - - pos: 59.5,-27.5 - parent: 82 - type: Transform -- uid: 12327 - type: Catwalk - components: - - pos: 60.5,-27.5 - parent: 82 - type: Transform -- uid: 12328 - type: Catwalk - components: - - pos: 61.5,-27.5 - parent: 82 - type: Transform -- uid: 12329 - type: Catwalk - components: - - pos: 62.5,-27.5 - parent: 82 - type: Transform -- uid: 12330 - type: Catwalk - components: - - pos: 63.5,-27.5 - parent: 82 - type: Transform -- uid: 12331 - type: Catwalk - components: - - pos: 64.5,-27.5 - parent: 82 - type: Transform -- uid: 12332 - type: Catwalk - components: - - pos: 65.5,-27.5 - parent: 82 - type: Transform -- uid: 12333 - type: Catwalk - components: - - pos: 66.5,-27.5 - parent: 82 - type: Transform -- uid: 12334 - type: Catwalk - components: - - pos: 67.5,-27.5 - parent: 82 - type: Transform -- uid: 12335 - type: Catwalk - components: - - pos: 68.5,-27.5 - parent: 82 - type: Transform -- uid: 12336 - type: Catwalk - components: - - pos: 69.5,-27.5 - parent: 82 - type: Transform -- uid: 12337 - type: SignElectrical - components: - - pos: 65.5,-35.5 - parent: 82 - type: Transform -- uid: 12338 - type: SignElectrical - components: - - pos: 65.5,-38.5 - parent: 82 - type: Transform -- uid: 12339 - type: SignElectrical - components: - - pos: 65.5,-43.5 - parent: 82 - type: Transform -- uid: 12340 - type: SignElectrical - components: - - pos: 65.5,-48.5 - parent: 82 - type: Transform -- uid: 12341 - type: SignElectrical - components: - - pos: 60.5,-48.5 - parent: 82 - type: Transform -- uid: 12342 - type: SignElectrical - components: - - pos: 60.5,-52.5 - parent: 82 - type: Transform -- uid: 12343 - type: SignElectrical - components: - - pos: 56.5,-56.5 - parent: 82 - type: Transform -- uid: 12344 - type: SignElectrical - components: - - pos: 50.5,-56.5 - parent: 82 - type: Transform -- uid: 12345 - type: SignElectrical - components: - - pos: 46.5,-56.5 - parent: 82 - type: Transform -- uid: 12346 - type: SignElectrical - components: - - pos: 40.5,-56.5 - parent: 82 - type: Transform -- uid: 12347 - type: SignElectrical - components: - - pos: 36.5,-56.5 - parent: 82 - type: Transform -- uid: 12348 - type: SignElectrical - components: - - pos: 36.5,-52.5 - parent: 82 - type: Transform -- uid: 12349 - type: SignElectrical - components: - - pos: 36.5,-46.5 - parent: 82 - type: Transform -- uid: 12350 - type: SignElectrical - components: - - pos: 36.5,-43.5 - parent: 82 - type: Transform -- uid: 12351 - type: SignElectrical - components: - - pos: 36.5,-38.5 - parent: 82 - type: Transform -- uid: 12352 - type: Grille - components: - - pos: 36.5,-39.5 - parent: 82 - type: Transform -- uid: 12353 - type: Grille - components: - - pos: 36.5,-40.5 - parent: 82 - type: Transform -- uid: 12354 - type: Grille - components: - - pos: 36.5,-41.5 - parent: 82 - type: Transform -- uid: 12355 - type: Grille - components: - - pos: 36.5,-42.5 - parent: 82 - type: Transform -- uid: 12356 - type: Grille - components: - - pos: 36.5,-44.5 - parent: 82 - type: Transform -- uid: 12357 - type: Grille - components: - - pos: 36.5,-45.5 - parent: 82 - type: Transform -- uid: 12358 - type: Grille - components: - - pos: 36.5,-47.5 - parent: 82 - type: Transform -- uid: 12359 - type: Grille - components: - - pos: 36.5,-48.5 - parent: 82 - type: Transform -- uid: 12360 - type: Grille - components: - - pos: 36.5,-49.5 - parent: 82 - type: Transform -- uid: 12361 - type: Grille - components: - - pos: 36.5,-50.5 - parent: 82 - type: Transform -- uid: 12362 - type: Grille - components: - - pos: 36.5,-51.5 - parent: 82 - type: Transform -- uid: 12363 - type: Grille - components: - - pos: 36.5,-53.5 - parent: 82 - type: Transform -- uid: 12364 - type: Grille - components: - - pos: 36.5,-54.5 - parent: 82 - type: Transform -- uid: 12365 - type: Grille - components: - - pos: 36.5,-55.5 - parent: 82 - type: Transform -- uid: 12366 - type: Grille - components: - - pos: 37.5,-56.5 - parent: 82 - type: Transform -- uid: 12367 - type: Grille - components: - - pos: 38.5,-56.5 - parent: 82 - type: Transform -- uid: 12368 - type: Grille - components: - - pos: 39.5,-56.5 - parent: 82 - type: Transform -- uid: 12369 - type: Grille - components: - - pos: 41.5,-56.5 - parent: 82 - type: Transform -- uid: 12370 - type: Grille - components: - - pos: 42.5,-56.5 - parent: 82 - type: Transform -- uid: 12371 - type: Grille - components: - - pos: 43.5,-56.5 - parent: 82 - type: Transform -- uid: 12372 - type: Grille - components: - - pos: 44.5,-56.5 - parent: 82 - type: Transform -- uid: 12373 - type: Grille - components: - - pos: 45.5,-56.5 - parent: 82 - type: Transform -- uid: 12374 - type: Grille - components: - - pos: 47.5,-56.5 - parent: 82 - type: Transform -- uid: 12375 - type: Grille - components: - - pos: 48.5,-56.5 - parent: 82 - type: Transform -- uid: 12376 - type: Grille - components: - - pos: 49.5,-56.5 - parent: 82 - type: Transform -- uid: 12377 - type: Grille - components: - - pos: 51.5,-56.5 - parent: 82 - type: Transform -- uid: 12378 - type: Grille - components: - - pos: 52.5,-56.5 - parent: 82 - type: Transform -- uid: 12379 - type: Grille - components: - - pos: 53.5,-56.5 - parent: 82 - type: Transform -- uid: 12380 - type: Grille - components: - - pos: 54.5,-56.5 - parent: 82 - type: Transform -- uid: 12381 - type: Grille - components: - - pos: 55.5,-56.5 - parent: 82 - type: Transform -- uid: 12382 - type: Grille - components: - - pos: 57.5,-56.5 - parent: 82 - type: Transform -- uid: 12383 - type: Grille - components: - - pos: 58.5,-56.5 - parent: 82 - type: Transform -- uid: 12384 - type: Grille - components: - - pos: 59.5,-56.5 - parent: 82 - type: Transform -- uid: 12385 - type: Grille - components: - - pos: 60.5,-56.5 - parent: 82 - type: Transform -- uid: 12386 - type: Grille - components: - - pos: 60.5,-55.5 - parent: 82 - type: Transform -- uid: 12387 - type: Grille - components: - - pos: 60.5,-54.5 - parent: 82 - type: Transform -- uid: 12388 - type: Grille - components: - - pos: 60.5,-53.5 - parent: 82 - type: Transform -- uid: 12389 - type: Grille - components: - - pos: 60.5,-51.5 - parent: 82 - type: Transform -- uid: 12390 - type: Grille - components: - - pos: 60.5,-50.5 - parent: 82 - type: Transform -- uid: 12391 - type: Grille - components: - - pos: 60.5,-49.5 - parent: 82 - type: Transform -- uid: 12392 - type: Grille - components: - - pos: 61.5,-48.5 - parent: 82 - type: Transform -- uid: 12393 - type: Grille - components: - - pos: 62.5,-48.5 - parent: 82 - type: Transform -- uid: 12394 - type: Grille - components: - - pos: 63.5,-48.5 - parent: 82 - type: Transform -- uid: 12395 - type: Grille - components: - - pos: 64.5,-48.5 - parent: 82 - type: Transform -- uid: 12396 - type: Grille - components: - - pos: 65.5,-47.5 - parent: 82 - type: Transform -- uid: 12397 - type: Grille - components: - - pos: 65.5,-46.5 - parent: 82 - type: Transform -- uid: 12398 - type: Grille - components: - - pos: 65.5,-45.5 - parent: 82 - type: Transform -- uid: 12399 - type: Grille - components: - - pos: 65.5,-44.5 - parent: 82 - type: Transform -- uid: 12400 - type: Grille - components: - - pos: 65.5,-42.5 - parent: 82 - type: Transform -- uid: 12401 - type: Grille - components: - - pos: 65.5,-41.5 - parent: 82 - type: Transform -- uid: 12402 - type: Grille - components: - - pos: 65.5,-40.5 - parent: 82 - type: Transform -- uid: 12403 - type: Grille - components: - - pos: 65.5,-39.5 - parent: 82 - type: Transform -- uid: 12404 - type: Grille - components: - - pos: 65.5,-37.5 - parent: 82 - type: Transform -- uid: 12405 - type: Grille - components: - - pos: 65.5,-36.5 - parent: 82 - type: Transform -- uid: 12406 - type: FirelockGlass - components: - - pos: -4.5,32.5 - parent: 82 - type: Transform -- uid: 12407 - type: FirelockGlass - components: - - pos: -5.5,32.5 - parent: 82 - type: Transform -- uid: 12408 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -9.5,43.5 - parent: 82 - type: Transform -- uid: 12409 - type: FirelockGlass - components: - - pos: -17.5,43.5 - parent: 82 - type: Transform -- uid: 12410 - type: FirelockGlass - components: - - pos: -17.5,44.5 - parent: 82 - type: Transform -- uid: 12411 - type: FirelockGlass - components: - - pos: -17.5,45.5 - parent: 82 - type: Transform -- uid: 12412 - type: FirelockGlass - components: - - pos: -18.5,46.5 - parent: 82 - type: Transform -- uid: 12413 - type: FirelockGlass - components: - - pos: -19.5,46.5 - parent: 82 - type: Transform -- uid: 12414 - type: FirelockGlass - components: - - pos: -20.5,46.5 - parent: 82 - type: Transform -- uid: 12415 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -57.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12416 - type: WindoorSecurityLocked - components: - - pos: 44.5,-1.5 - parent: 82 - type: Transform -- uid: 12417 - type: DisposalUnit - components: - - pos: 40.5,5.5 - parent: 82 - type: Transform -- uid: 12418 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 41.5,5.5 - parent: 82 - type: Transform -- uid: 12419 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: 38.5,5.5 - parent: 82 - type: Transform -- uid: 12420 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 37.5,5.5 - parent: 82 - type: Transform -- uid: 12421 - type: CableApcExtension - components: - - pos: 24.5,77.5 - parent: 82 - type: Transform -- uid: 12422 - type: Catwalk - components: - - pos: 34.5,73.5 - parent: 82 - type: Transform -- uid: 12423 - type: Catwalk - components: - - pos: 34.5,72.5 - parent: 82 - type: Transform -- uid: 12424 - type: Catwalk - components: - - pos: 34.5,71.5 - parent: 82 - type: Transform -- uid: 12425 - type: CableApcExtension - components: - - pos: 25.5,79.5 - parent: 82 - type: Transform -- uid: 12426 - type: CableApcExtension - components: - - pos: 27.5,79.5 - parent: 82 - type: Transform -- uid: 12427 - type: CableApcExtension - components: - - pos: 24.5,78.5 - parent: 82 - type: Transform -- uid: 12428 - type: TablePlasmaGlass - components: - - pos: 25.5,76.5 - parent: 82 - type: Transform -- uid: 12429 - type: TablePlasmaGlass - components: - - pos: 26.5,76.5 - parent: 82 - type: Transform -- uid: 12430 - type: TablePlasmaGlass - components: - - pos: 27.5,76.5 - parent: 82 - type: Transform -- uid: 12431 - type: Catwalk - components: - - pos: 21.5,79.5 - parent: 82 - type: Transform -- uid: 12432 - type: Catwalk - components: - - pos: 20.5,79.5 - parent: 82 - type: Transform -- uid: 12433 - type: Catwalk - components: - - pos: 19.5,79.5 - parent: 82 - type: Transform -- uid: 12434 - type: Catwalk - components: - - pos: 18.5,79.5 - parent: 82 - type: Transform -- uid: 12435 - type: Catwalk - components: - - pos: 17.5,79.5 - parent: 82 - type: Transform -- uid: 12436 - type: Catwalk - components: - - pos: 16.5,79.5 - parent: 82 - type: Transform -- uid: 12437 - type: Catwalk - components: - - pos: 15.5,79.5 - parent: 82 - type: Transform -- uid: 12438 - type: Catwalk - components: - - pos: 14.5,79.5 - parent: 82 - type: Transform -- uid: 12439 - type: CableApcExtension - components: - - pos: 14.5,74.5 - parent: 82 - type: Transform -- uid: 12440 - type: CableApcExtension - components: - - pos: 21.5,76.5 - parent: 82 - type: Transform -- uid: 12441 - type: Catwalk - components: - - pos: 13.5,79.5 - parent: 82 - type: Transform -- uid: 12442 - type: Catwalk - components: - - pos: 12.5,79.5 - parent: 82 - type: Transform -- uid: 12443 - type: Catwalk - components: - - pos: 11.5,79.5 - parent: 82 - type: Transform -- uid: 12444 - type: Catwalk - components: - - pos: 10.5,79.5 - parent: 82 - type: Transform -- uid: 12445 - type: Catwalk - components: - - pos: 9.5,79.5 - parent: 82 - type: Transform -- uid: 12446 - type: Catwalk - components: - - pos: 8.5,79.5 - parent: 82 - type: Transform -- uid: 12447 - type: Catwalk - components: - - pos: 7.5,79.5 - parent: 82 - type: Transform -- uid: 12448 - type: Catwalk - components: - - pos: 6.5,79.5 - parent: 82 - type: Transform -- uid: 12449 - type: Catwalk - components: - - pos: 5.5,79.5 - parent: 82 - type: Transform -- uid: 12450 - type: Catwalk - components: - - pos: 5.5,78.5 - parent: 82 - type: Transform -- uid: 12451 - type: Catwalk - components: - - pos: 5.5,67.5 - parent: 82 - type: Transform -- uid: 12452 - type: Catwalk - components: - - pos: 5.5,68.5 - parent: 82 - type: Transform -- uid: 12453 - type: Catwalk - components: - - pos: 5.5,69.5 - parent: 82 - type: Transform -- uid: 12454 - type: Catwalk - components: - - pos: 5.5,70.5 - parent: 82 - type: Transform -- uid: 12455 - type: Catwalk - components: - - pos: 5.5,71.5 - parent: 82 - type: Transform -- uid: 12456 - type: Catwalk - components: - - pos: 5.5,72.5 - parent: 82 - type: Transform -- uid: 12457 - type: Catwalk - components: - - pos: 5.5,73.5 - parent: 82 - type: Transform -- uid: 12458 - type: Catwalk - components: - - pos: 5.5,74.5 - parent: 82 - type: Transform -- uid: 12459 - type: Catwalk - components: - - pos: 5.5,75.5 - parent: 82 - type: Transform -- uid: 12460 - type: Catwalk - components: - - pos: 5.5,76.5 - parent: 82 - type: Transform -- uid: 12461 - type: Catwalk - components: - - pos: 5.5,77.5 - parent: 82 - type: Transform -- uid: 12462 - type: Catwalk - components: - - pos: 4.5,67.5 - parent: 82 - type: Transform -- uid: 12463 - type: Catwalk - components: - - pos: 3.5,67.5 - parent: 82 - type: Transform -- uid: 12464 - type: Catwalk - components: - - pos: 2.5,67.5 - parent: 82 - type: Transform -- uid: 12465 - type: Catwalk - components: - - pos: 1.5,67.5 - parent: 82 - type: Transform -- uid: 12466 - type: Catwalk - components: - - pos: 0.5,67.5 - parent: 82 - type: Transform -- uid: 12467 - type: Catwalk - components: - - pos: -0.5,67.5 - parent: 82 - type: Transform -- uid: 12468 - type: Catwalk - components: - - pos: -1.5,67.5 - parent: 82 - type: Transform -- uid: 12469 - type: Catwalk - components: - - pos: -2.5,67.5 - parent: 82 - type: Transform -- uid: 12470 - type: Catwalk - components: - - pos: -3.5,67.5 - parent: 82 - type: Transform -- uid: 12471 - type: Catwalk - components: - - pos: -4.5,67.5 - parent: 82 - type: Transform -- uid: 12472 - type: Catwalk - components: - - pos: -5.5,67.5 - parent: 82 - type: Transform -- uid: 12473 - type: Catwalk - components: - - pos: -6.5,67.5 - parent: 82 - type: Transform -- uid: 12474 - type: Catwalk - components: - - pos: -6.5,68.5 - parent: 82 - type: Transform -- uid: 12475 - type: Catwalk - components: - - pos: -6.5,69.5 - parent: 82 - type: Transform -- uid: 12476 - type: Catwalk - components: - - pos: -6.5,70.5 - parent: 82 - type: Transform -- uid: 12477 - type: Catwalk - components: - - pos: -6.5,71.5 - parent: 82 - type: Transform -- uid: 12478 - type: Catwalk - components: - - pos: -6.5,72.5 - parent: 82 - type: Transform -- uid: 12479 - type: Catwalk - components: - - pos: -6.5,73.5 - parent: 82 - type: Transform -- uid: 12480 - type: Catwalk - components: - - pos: -6.5,74.5 - parent: 82 - type: Transform -- uid: 12481 - type: Catwalk - components: - - pos: -6.5,75.5 - parent: 82 - type: Transform -- uid: 12482 - type: Catwalk - components: - - pos: -6.5,76.5 - parent: 82 - type: Transform -- uid: 12483 - type: Catwalk - components: - - pos: -6.5,77.5 - parent: 82 - type: Transform -- uid: 12484 - type: Catwalk - components: - - pos: -6.5,78.5 - parent: 82 - type: Transform -- uid: 12485 - type: Catwalk - components: - - pos: -6.5,79.5 - parent: 82 - type: Transform -- uid: 12486 - type: GasPipeBend - components: - - pos: 33.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12487 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,56.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12488 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,50.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12489 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,51.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12490 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,52.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12491 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,53.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12492 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,54.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12493 - type: GasPipeBend - components: - - pos: 29.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12494 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 31.5,60.5 - parent: 82 - type: Transform -- uid: 12495 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 31.5,61.5 - parent: 82 - type: Transform -- uid: 12496 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 31.5,62.5 - parent: 82 - type: Transform -- uid: 12497 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 31.5,63.5 - parent: 82 - type: Transform -- uid: 12498 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 31.5,64.5 - parent: 82 - type: Transform -- uid: 12499 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 31.5,65.5 - parent: 82 - type: Transform -- uid: 12500 - type: WallSolidRust - components: - - pos: 32.5,57.5 - parent: 82 - type: Transform -- uid: 12501 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 32.5,55.5 - parent: 82 - type: Transform -- uid: 12502 - type: WallSolidRust - components: - - pos: 32.5,56.5 - parent: 82 - type: Transform -- uid: 12503 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 31.5,55.5 - parent: 82 - type: Transform -- uid: 12504 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,52.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12505 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 35.5,53.5 - parent: 82 - type: Transform -- uid: 12506 - type: CableApcExtension - components: - - pos: 31.5,56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12507 - type: CableApcExtension - components: - - pos: 31.5,58.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12508 - type: CableApcExtension - components: - - pos: 31.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12509 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 32.5,58.5 - parent: 82 - type: Transform -- uid: 12510 - type: ShuttersNormal - components: - - pos: -8.5,32.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -361985.2 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver -- uid: 12511 - type: ShuttersNormal - components: - - pos: -9.5,32.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -361985.2 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver -- uid: 12512 - type: ShuttersNormal - components: - - pos: -7.5,32.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -361985.2 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver -- uid: 12513 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 33.5,58.5 - parent: 82 - type: Transform -- uid: 12514 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: -6.5,34.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -361985.2 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver -- uid: 12515 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: -6.5,35.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -361985.2 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver -- uid: 12516 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 28.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12517 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,53.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12518 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,52.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12519 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 27.5,54.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12520 - type: GasPipeTJunction - components: - - pos: 27.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12521 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -45.5,-16.5 - parent: 82 - type: Transform -- uid: 12522 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 29.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12523 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 28.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12524 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 14.5,-13.5 - parent: 82 - type: Transform -- uid: 12525 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 14.5,-14.5 - parent: 82 - type: Transform -- uid: 12526 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 14.5,-15.5 - parent: 82 - type: Transform -- uid: 12527 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 14.5,-16.5 - parent: 82 - type: Transform -- uid: 12528 - type: Catwalk - components: - - pos: -44.5,79.5 - parent: 82 - type: Transform -- uid: 12529 - type: Catwalk - components: - - pos: -44.5,78.5 - parent: 82 - type: Transform -- uid: 12530 - type: Catwalk - components: - - pos: -44.5,77.5 - parent: 82 - type: Transform -- uid: 12531 - type: Catwalk - components: - - pos: -44.5,76.5 - parent: 82 - type: Transform -- uid: 12532 - type: Catwalk - components: - - pos: -44.5,75.5 - parent: 82 - type: Transform -- uid: 12533 - type: Catwalk - components: - - pos: -44.5,74.5 - parent: 82 - type: Transform -- uid: 12534 - type: Catwalk - components: - - pos: -44.5,73.5 - parent: 82 - type: Transform -- uid: 12535 - type: Catwalk - components: - - pos: -44.5,72.5 - parent: 82 - type: Transform -- uid: 12536 - type: Catwalk - components: - - pos: -44.5,71.5 - parent: 82 - type: Transform -- uid: 12537 - type: Catwalk - components: - - pos: -44.5,70.5 - parent: 82 - type: Transform -- uid: 12538 - type: Catwalk - components: - - pos: -44.5,69.5 - parent: 82 - type: Transform -- uid: 12539 - type: Catwalk - components: - - pos: -44.5,68.5 - parent: 82 - type: Transform -- uid: 12540 - type: Catwalk - components: - - pos: -44.5,67.5 - parent: 82 - type: Transform -- uid: 12541 - type: Catwalk - components: - - pos: -44.5,66.5 - parent: 82 - type: Transform -- uid: 12542 - type: Catwalk - components: - - pos: -44.5,65.5 - parent: 82 - type: Transform -- uid: 12543 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12544 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12545 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -55.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12546 - type: CryostasisBeaker - components: - - pos: -34.671455,-28.474209 - parent: 82 - type: Transform -- uid: 12547 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12548 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12549 - type: WindowTintedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-38.5 - parent: 82 - type: Transform -- uid: 12550 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12551 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12552 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,1.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12553 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 18.5,56.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12554 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 41.5,25.5 - parent: 82 - type: Transform - - devices: - - 12585 - - 12610 - - 12581 - - 12611 - - 19386 - - 10989 - - 12558 - - 12592 - - 12591 - - 10457 - - 10448 - - 1549 - - 1404 - - 10450 - - 10451 - - 11587 - - 11453 - - 11448 - - 22611 - - 10984 - - 1185 - - invalid - type: DeviceList -- uid: 12555 - type: AirAlarm - components: - - pos: 36.5,31.5 - parent: 82 - type: Transform - - devices: - - 12637 - - 12631 - - 12617 - - 12630 - - 22776 - - 22775 - - 22472 - - 10445 - - 10480 - - 10492 - - 10493 - - 10448 - - 10447 - - 10446 - - 10449 - - 22462 - - 24543 - - 24542 - - 10444 - - 24214 - type: DeviceList -- uid: 12556 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 34.5,43.5 - parent: 82 - type: Transform - - devices: - - 12684 - - 12685 - - 22877 - - 22776 - - 22775 - - 22472 - - 22470 - - 17824 - - 18912 - - 18913 - type: DeviceList -- uid: 12557 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 26.5,72.5 - parent: 82 - type: Transform - - devices: - - invalid - - 10976 - - 10979 - - 25724 - - 25723 - type: DeviceList -- uid: 12558 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 46.5,14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12559 - type: DisposalUnit - components: - - pos: 6.5,-26.5 - parent: 82 - type: Transform -- uid: 12560 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12561 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12562 - type: Catwalk - components: - - pos: -9.5,-45.5 - parent: 82 - type: Transform -- uid: 12563 - type: FirelockGlass - components: - - pos: -59.5,36.5 - parent: 82 - type: Transform -- uid: 12564 - type: FirelockGlass - components: - - pos: -59.5,37.5 - parent: 82 - type: Transform -- uid: 12565 - type: ReinforcedWindow - components: - - pos: -36.5,36.5 - parent: 82 - type: Transform -- uid: 12566 - type: ReinforcedWindow - components: - - pos: -35.5,36.5 - parent: 82 - type: Transform -- uid: 12567 - type: FirelockGlass - components: - - pos: -23.5,28.5 - parent: 82 - type: Transform -- uid: 12568 - type: FirelockGlass - components: - - pos: -22.5,28.5 - parent: 82 - type: Transform -- uid: 12569 - type: FirelockGlass - components: - - pos: -21.5,28.5 - parent: 82 - type: Transform -- uid: 12570 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12571 - type: MaintenanceToolSpawner - components: - - pos: 27.5,-6.5 - parent: 82 - type: Transform -- uid: 12572 - type: Rack - components: - - pos: 29.5,-7.5 - parent: 82 - type: Transform -- uid: 12573 - type: GasPipeStraight - components: - - pos: 20.5,57.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12574 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 18.5,60.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12575 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12576 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12577 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,17.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12578 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12579 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12580 - type: GasPipeTJunction - components: - - pos: 43.5,28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12581 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 44.5,28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12582 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12583 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12584 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12585 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 39.5,28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12586 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,20.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12587 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,20.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12588 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,20.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12589 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,20.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12590 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,20.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12591 - type: GasVentScrubber - components: - - pos: 36.5,20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12592 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 37.5,19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12593 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,20.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12594 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,20.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12595 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,20.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12596 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,20.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12597 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 42.5,20.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12598 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12599 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,18.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12600 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,17.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12601 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,21.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12602 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,22.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12603 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12604 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12605 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,25.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12606 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 42.5,26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12607 - type: GasPipeTJunction - components: - - pos: 42.5,27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12608 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12609 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12610 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 40.5,27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12611 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 44.5,27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12612 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,22.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12613 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12614 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 31.5,24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12615 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 31.5,26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12616 - type: GasPipeStraight - components: - - pos: 31.5,25.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12617 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 32.5,26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12618 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,56.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12619 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,56.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12620 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,56.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12621 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,56.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12622 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,56.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12623 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 12.5,56.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12624 - type: GasPipeStraight - components: - - pos: 20.5,56.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12625 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 19.5,58.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12626 - type: GasPipeStraight - components: - - pos: 18.5,57.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12627 - type: GasPipeStraight - components: - - pos: 18.5,58.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12628 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,60.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12629 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,60.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12630 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 32.5,25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12631 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 36.5,25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12632 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12633 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12634 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12635 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12636 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12637 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 36.5,28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12638 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 31.5,28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12639 - type: GasPipeStraight - components: - - pos: 31.5,27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12640 - type: GasPipeStraight - components: - - pos: 31.5,29.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12641 - type: GasPipeStraight - components: - - pos: 31.5,30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12642 - type: GasPipeStraight - components: - - pos: 31.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12643 - type: GasPipeStraight - components: - - pos: 31.5,32.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12644 - type: GasPipeStraight - components: - - pos: 31.5,33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12645 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12646 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,31.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12647 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 33.5,32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12648 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 31.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12649 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12650 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12651 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12652 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12653 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12654 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12655 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12656 - type: GasPipeTJunction - components: - - pos: 39.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12657 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 39.5,33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12658 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12659 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12660 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12661 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12662 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12663 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12664 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 40.5,32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12665 - type: GasVentScrubber - components: - - pos: 40.5,33.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12666 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12667 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12668 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12669 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12670 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 44.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12671 - type: GasVentPump - components: - - pos: 44.5,35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12672 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12673 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12674 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12675 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12676 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 45.5,32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12677 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,33.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12678 - type: GasVentScrubber - components: - - pos: 45.5,34.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12679 - type: GasPipeStraight - components: - - pos: 33.5,38.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12680 - type: GasPipeStraight - components: - - pos: 33.5,39.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12681 - type: GasPipeStraight - components: - - pos: 33.5,40.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12682 - type: GasPipeStraight - components: - - pos: 33.5,41.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12683 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 33.5,42.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12684 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 32.5,42.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12685 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 32.5,44.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12686 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 31.5,44.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12687 - type: GasPipeStraight - components: - - pos: 31.5,43.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12688 - type: GasPipeStraight - components: - - pos: 31.5,42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12689 - type: GasPipeStraight - components: - - pos: 31.5,41.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12690 - type: GasPipeStraight - components: - - pos: 31.5,40.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12691 - type: GasPipeStraight - components: - - pos: 31.5,39.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12692 - type: GasPipeStraight - components: - - pos: 31.5,38.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12693 - type: GasPipeStraight - components: - - pos: 31.5,37.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12694 - type: GasPipeStraight - components: - - pos: 31.5,36.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12695 - type: GasPipeStraight - components: - - pos: 31.5,35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12696 - type: GasPipeStraight - components: - - pos: 33.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12697 - type: GasPipeStraight - components: - - pos: 33.5,44.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12698 - type: GasPipeStraight - components: - - pos: 33.5,45.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12699 - type: GasPipeStraight - components: - - pos: 33.5,46.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12700 - type: GasPipeStraight - components: - - pos: 33.5,47.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12701 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 33.5,48.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12702 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 14.5,-17.5 - parent: 82 - type: Transform -- uid: 12703 - type: AirlockMaintLocked - components: - - pos: 0.5,-22.5 - parent: 82 - type: Transform -- uid: 12704 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,50.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12705 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,49.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12706 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,48.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12707 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,47.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12708 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,46.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12709 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12710 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 1.5,-19.5 - parent: 82 - type: Transform -- uid: 12711 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 0.5,-16.5 - parent: 82 - type: Transform -- uid: 12712 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 0.5,-18.5 - parent: 82 - type: Transform -- uid: 12713 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 82 - type: Transform -- uid: 12714 - type: CableHV - components: - - pos: 14.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12715 - type: CableHV - components: - - pos: 14.5,-22.5 - parent: 82 - type: Transform -- uid: 12716 - type: SubstationBasic - components: - - pos: 15.5,-13.5 - parent: 82 - type: Transform -- uid: 12717 - type: PlushieSpaceLizard - components: - - pos: 16.561422,-13.472472 - parent: 82 - type: Transform -- uid: 12718 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 14.5,-19.5 - parent: 82 - type: Transform -- uid: 12719 - type: WallReinforced - components: - - pos: 13.5,-20.5 - parent: 82 - type: Transform -- uid: 12720 - type: WallSolid - components: - - pos: 15.5,-15.5 - parent: 82 - type: Transform -- uid: 12721 - type: CableHV - components: - - pos: 13.5,-18.5 - parent: 82 - type: Transform -- uid: 12722 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,62.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12723 - type: CableHV - components: - - pos: 15.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12724 - type: CableHV - components: - - pos: 16.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12725 - type: BedsheetCaptain - components: - - pos: 9.5,-18.5 - parent: 82 - type: Transform -- uid: 12726 - type: WallSolid - components: - - pos: 30.5,54.5 - parent: 82 - type: Transform -- uid: 12727 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -45.5,-14.5 - parent: 82 - type: Transform -- uid: 12728 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -45.5,-13.5 - parent: 82 - type: Transform -- uid: 12729 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -52.5,-16.5 - parent: 82 - type: Transform -- uid: 12730 - type: WallReinforced - components: - - pos: 30.5,17.5 - parent: 82 - type: Transform -- uid: 12731 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 29.5,54.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 12732 - type: WallReinforced - components: - - pos: 30.5,16.5 - parent: 82 - type: Transform -- uid: 12733 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -58.5,5.5 - parent: 82 - type: Transform -- uid: 12734 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,4.5 - parent: 82 - type: Transform -- uid: 12735 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,3.5 - parent: 82 - type: Transform -- uid: 12736 - type: Catwalk - components: - - pos: 31.5,67.5 - parent: 82 - type: Transform -- uid: 12737 - type: CableApcExtension - components: - - pos: 31.5,61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12738 - type: CableApcExtension - components: - - pos: 31.5,59.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12739 - type: CableApcExtension - components: - - pos: 31.5,57.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12740 - type: CableApcExtension - components: - - pos: 31.5,55.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12741 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 34.5,53.5 - parent: 82 - type: Transform -- uid: 12742 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12743 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12744 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12745 - type: ClosetMaintenanceFilledRandom - components: - - pos: 32.5,54.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12746 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 26.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12747 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12748 - type: GasPipeTJunction - components: - - pos: 24.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12749 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12750 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12751 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 23.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12752 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12753 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12754 - type: GasVentPump - components: - - pos: 28.5,55.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12755 - type: GasVentPump - components: - - pos: 23.5,55.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12756 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 31.5,56.5 - parent: 82 - type: Transform -- uid: 12757 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 24.5,54.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12758 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12759 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12760 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 20.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12761 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12762 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12763 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12764 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12765 - type: BagpipeInstrument - components: - - pos: 33.488033,-25.54567 - parent: 82 - type: Transform -- uid: 12766 - type: WindowDirectional - components: - - pos: -6.5,-1.5 - parent: 82 - type: Transform -- uid: 12767 - type: FoodCondimentPacketAstrotame - components: - - pos: 38.49459,65.48353 - parent: 82 - type: Transform -- uid: 12768 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 12.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12769 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 18.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12770 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12771 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12772 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12773 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12774 - type: GasPipeStraight - components: - - pos: 18.5,55.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12775 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,60.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12776 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-21.5 - parent: 82 - type: Transform -- uid: 12777 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,60.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12778 - type: WallReinforced - components: - - pos: -52.5,-12.5 - parent: 82 - type: Transform -- uid: 12779 - type: GasPipeTJunction - components: - - pos: 25.5,60.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12780 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 27.5,60.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12781 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,60.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12782 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,61.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12783 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,62.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12784 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,63.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12785 - type: GasVentPump - components: - - pos: 27.5,64.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12786 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 25.5,59.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12787 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 19.5,59.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12788 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,59.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12789 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,60.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12790 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,61.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12791 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,62.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12792 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,63.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12793 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,64.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12794 - type: GasPipeTJunction - components: - - pos: 20.5,65.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12795 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 19.5,65.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12796 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,61.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12797 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,62.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12798 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,63.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12799 - type: GasPipeFourway - components: - - pos: 18.5,64.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12800 - type: GasPipeStraight - components: - - pos: 18.5,65.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12801 - type: GasPipeStraight - components: - - pos: 18.5,66.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12802 - type: GasPipeStraight - components: - - pos: 18.5,67.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12803 - type: GasPipeStraight - components: - - pos: 18.5,68.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12804 - type: GasPipeStraight - components: - - pos: 18.5,69.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12805 - type: GasMixer - components: - - rot: 1.5707963267948966 rad - pos: 10.5,71.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 12806 - type: GasMixer - components: - - rot: 1.5707963267948966 rad - pos: 11.5,71.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 12807 - type: GasPipeStraight - components: - - pos: 19.5,69.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12808 - type: GasPipeStraight - components: - - pos: 19.5,68.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12809 - type: GasPipeStraight - components: - - pos: 19.5,67.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12810 - type: GasPipeStraight - components: - - pos: 19.5,66.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12811 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,64.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12812 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,64.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12813 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,64.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12814 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 22.5,64.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12815 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 23.5,64.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12816 - type: GasPipeTJunction - components: - - pos: 21.5,65.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12817 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 21.5,64.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12818 - type: GasVentPump - components: - - pos: 22.5,65.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12819 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 24.5,65.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12820 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,66.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12821 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,67.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12822 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,68.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12823 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,65.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12824 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,65.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12825 - type: GasPipeStraight - components: - - pos: 24.5,69.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12826 - type: GasPipeStraight - components: - - pos: 24.5,70.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12827 - type: GasPipeStraight - components: - - pos: 24.5,71.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12828 - type: GasPipeStraight - components: - - pos: 24.5,72.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12829 - type: GasPipeStraight - components: - - pos: 24.5,73.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12830 - type: GasPipeStraight - components: - - pos: 23.5,73.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12831 - type: GasPipeStraight - components: - - pos: 23.5,72.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12832 - type: GasPipeStraight - components: - - pos: 23.5,71.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12833 - type: GasPipeStraight - components: - - pos: 23.5,70.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12834 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 23.5,69.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12835 - type: GasPipeStraight - components: - - pos: 23.5,68.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12836 - type: GasPipeStraight - components: - - pos: 23.5,67.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12837 - type: GasPipeStraight - components: - - pos: 23.5,66.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12838 - type: GasPipeStraight - components: - - pos: 23.5,65.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12839 - type: GasPipeTJunction - components: - - pos: -33.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12840 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12841 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12842 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12843 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12844 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12845 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12846 - type: GasPipeTJunction - components: - - pos: -41.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12847 - type: GasPipeTJunction - components: - - pos: -37.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12848 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,69.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12849 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,69.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12850 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,69.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12851 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,69.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12852 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,48.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12853 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 28.5,69.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12854 - type: WallReinforced - components: - - pos: 28.5,76.5 - parent: 82 - type: Transform -- uid: 12855 - type: ReinforcedPlasmaWindow - components: - - pos: 27.5,77.5 - parent: 82 - type: Transform -- uid: 12856 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,64.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12857 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,64.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12858 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,64.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12859 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 14.5,64.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12860 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,48.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12861 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 36.5,48.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12862 - type: GasVentScrubber - components: - - pos: 36.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12863 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12864 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12865 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12866 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-22.5 - parent: 82 - type: Transform -- uid: 12867 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12868 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12869 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12870 - type: SignDoors - components: - - pos: 46.5,25.5 - parent: 82 - type: Transform -- uid: 12871 - type: GasPipeTJunction - components: - - pos: 23.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12872 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12873 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12874 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-21.5 - parent: 82 - type: Transform -- uid: 12875 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12876 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12877 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12878 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12879 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 23.5,50.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12880 - type: Grille - components: - - pos: -13.5,33.5 - parent: 82 - type: Transform -- uid: 12881 - type: CableApcExtension - components: - - pos: 21.5,71.5 - parent: 82 - type: Transform -- uid: 12882 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12883 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12884 - type: PosterLegitObey - components: - - pos: 49.5,-36.5 - parent: 82 - type: Transform -- uid: 12885 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12886 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12887 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12888 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12889 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12890 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12891 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12892 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12893 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12894 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12895 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12896 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12897 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12898 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12899 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12900 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 6.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12901 - type: GasPipeTJunction - components: - - pos: 7.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12902 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 7.5,50.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12903 - type: GasVentScrubber - components: - - pos: 6.5,50.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12904 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12905 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12906 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12907 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12908 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12909 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12910 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12911 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12912 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12913 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12914 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12915 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12916 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12917 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12918 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12919 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12920 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12921 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12922 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12923 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12924 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12925 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12926 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12927 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12928 - type: GasPipeTJunction - components: - - pos: -3.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12929 - type: GasPipeStraight - components: - - pos: -3.5,48.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12930 - type: GasPipeStraight - components: - - pos: -3.5,47.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12931 - type: GasPipeStraight - components: - - pos: -3.5,46.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12932 - type: GasPipeStraight - components: - - pos: -3.5,45.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12933 - type: GasPipeStraight - components: - - pos: -3.5,44.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12934 - type: GasPipeFourway - components: - - pos: -3.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12935 - type: GasPipeStraight - components: - - pos: -3.5,42.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12936 - type: GasPipeStraight - components: - - pos: -3.5,41.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12937 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12938 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12939 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12940 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12941 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 1.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12942 - type: GasPipeBend - components: - - pos: 0.5,44.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12943 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,44.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12944 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,44.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12945 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,44.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12946 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,44.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12947 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,44.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12948 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -5.5,44.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12949 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -5.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12950 - type: GasPipeTJunction - components: - - pos: -3.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12951 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -5.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12952 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12953 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12954 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12955 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12956 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12957 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12958 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12959 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12960 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12961 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12962 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12963 - type: GasPipeStraight - components: - - pos: -5.5,50.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12964 - type: GasPipeStraight - components: - - pos: -5.5,49.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12965 - type: GasPipeStraight - components: - - pos: -5.5,48.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12966 - type: GasPipeStraight - components: - - pos: -5.5,47.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12967 - type: GasPipeStraight - components: - - pos: -5.5,46.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12968 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -3.5,50.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12969 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 0.5,43.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12970 - type: GasVentScrubber - components: - - pos: 1.5,44.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12971 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -4.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12972 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12973 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12974 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12975 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12976 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12977 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12978 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12979 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12980 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12981 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12982 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12983 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12984 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -18.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12985 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -14.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12986 - type: GasPipeFourway - components: - - pos: -12.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12987 - type: GasPipeStraight - components: - - pos: -12.5,42.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12988 - type: GasPipeStraight - components: - - pos: -12.5,41.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12989 - type: GasPipeStraight - components: - - pos: -12.5,40.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12990 - type: GasPipeStraight - components: - - pos: -12.5,39.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12991 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -12.5,38.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12992 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,39.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12993 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,40.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12994 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,41.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12995 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12996 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,43.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12997 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,44.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12998 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,44.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12999 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,45.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13000 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,46.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13001 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,47.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13002 - type: GasPipeFourway - components: - - pos: -13.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13003 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,46.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13004 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,47.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13005 - type: GasVentScrubber - components: - - pos: -12.5,48.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13006 - type: GasVentPump - components: - - pos: -13.5,48.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13007 - type: GasVentScrubber - components: - - pos: -14.5,44.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13008 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -11.5,44.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13009 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -13.5,38.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13010 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13011 - type: CableHV - components: - - pos: -23.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13012 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13013 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13014 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13015 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13016 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13017 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13018 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13019 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13020 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13021 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13022 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13023 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -20.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13024 - type: GasPipeStraight - components: - - pos: -20.5,46.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13025 - type: GasPipeStraight - components: - - pos: -20.5,47.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13026 - type: GasPipeStraight - components: - - pos: -20.5,48.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13027 - type: GasPipeStraight - components: - - pos: -20.5,49.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13028 - type: GasPipeFourway - components: - - pos: -20.5,50.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13029 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -18.5,47.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13030 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -19.5,47.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13031 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,44.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13032 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,45.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13033 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,46.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13034 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,48.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13035 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13036 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,50.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13037 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,51.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13038 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,52.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13039 - type: GasPipeBend - components: - - pos: -18.5,53.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13040 - type: GasPipeBend - components: - - pos: -20.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13041 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -19.5,50.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13042 - type: GasVentScrubber - components: - - pos: -19.5,48.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13043 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -25.5,53.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13044 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -25.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13045 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,50.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13046 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,47.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13047 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,47.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13048 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,47.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13049 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -22.5,50.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13050 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -22.5,48.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13051 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,49.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13052 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,48.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13053 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,47.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13054 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,47.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13055 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,47.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13056 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -26.5,47.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13057 - type: GasVentScrubber - components: - - pos: -26.5,48.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13058 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -24.5,48.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13059 - type: GasPipeStraight - components: - - pos: -20.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13060 - type: GasPipeStraight - components: - - pos: -20.5,52.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13061 - type: GasPipeStraight - components: - - pos: -20.5,53.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13062 - type: GasPipeStraight - components: - - pos: -20.5,44.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13063 - type: GasPipeStraight - components: - - pos: -20.5,43.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13064 - type: GasPipeStraight - components: - - pos: -18.5,42.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13065 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13066 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13067 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13068 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13069 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13070 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13071 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13072 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13073 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,53.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13074 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,53.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13075 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,53.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13076 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,53.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13077 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,53.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13078 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,53.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13079 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13080 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13081 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13082 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13083 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -18.5,41.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13084 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13085 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13086 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13087 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13088 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13089 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13090 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -26.5,42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13091 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -26.5,41.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13092 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,41.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13093 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,41.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13094 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,41.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13095 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,41.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13096 - type: GasPipeStraight - components: - - pos: -20.5,41.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13097 - type: GasPipeStraight - components: - - pos: -20.5,40.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13098 - type: GasPipeStraight - components: - - pos: -18.5,40.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13099 - type: GasPipeStraight - components: - - pos: -18.5,39.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13100 - type: GasPipeStraight - components: - - pos: -18.5,38.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13101 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -18.5,37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13102 - type: GasPipeFourway - components: - - pos: -20.5,38.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13103 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -23.5,41.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13104 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -24.5,37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13105 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -24.5,38.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13106 - type: GasPipeStraight - components: - - pos: -20.5,39.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13107 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,38.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13108 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,38.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13109 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,38.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13110 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13111 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13112 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13113 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13114 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13115 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -18.5,36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13116 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -19.5,36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13117 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -19.5,38.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13118 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,37.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13119 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,36.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13120 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13121 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13122 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13123 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,32.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13124 - type: GasPipeFourway - components: - - pos: -20.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13125 - type: GasPipeFourway - components: - - pos: -18.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13126 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -18.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13127 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,31.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13128 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13129 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,33.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13130 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,34.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13131 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13132 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13133 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13134 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -18.5,26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13135 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13136 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13137 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13138 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13139 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13140 - type: GasPipeTJunction - components: - - pos: -21.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13141 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -19.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13142 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -20.5,30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13143 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13144 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13145 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13146 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13147 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13148 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13149 - type: CableHV - components: - - pos: -22.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13150 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13151 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13152 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13153 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13154 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13155 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13156 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13157 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,43.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13158 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13159 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,41.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13160 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,40.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13161 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,39.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13162 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,38.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13163 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,37.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13164 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -5.5,36.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13165 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -5.5,35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13166 - type: FirelockGlass - components: - - pos: -59.5,44.5 - parent: 82 - type: Transform -- uid: 13167 - type: GasPipeStraight - components: - - pos: -3.5,40.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13168 - type: GasPipeStraight - components: - - pos: -3.5,39.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13169 - type: GasPipeStraight - components: - - pos: -3.5,38.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13170 - type: GasPipeStraight - components: - - pos: -3.5,36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13171 - type: GasPipeStraight - components: - - pos: -3.5,35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13172 - type: FirelockGlass - components: - - pos: -59.5,45.5 - parent: 82 - type: Transform -- uid: 13173 - type: GasPipeStraight - components: - - pos: -3.5,33.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13174 - type: GasPipeStraight - components: - - pos: -3.5,32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13175 - type: GasPipeStraight - components: - - pos: -3.5,31.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13176 - type: GasPipeTJunction - components: - - pos: 5.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13177 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 5.5,30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13178 - type: GasVentScrubber - components: - - pos: 4.5,31.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13179 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13180 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13181 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13182 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13183 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13184 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13185 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13186 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13187 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13188 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13189 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -5.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13190 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,32.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13191 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13192 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13193 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13194 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13195 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13196 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13197 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -0.5,35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13198 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -4.5,36.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13199 - type: FirelockGlass - components: - - pos: -59.5,46.5 - parent: 82 - type: Transform -- uid: 13200 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13201 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13202 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13203 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13204 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13205 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13206 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13207 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,31.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13208 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13209 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,33.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13210 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,34.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13211 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13212 - type: GasPipeBend - components: - - pos: 10.5,36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13213 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 9.5,36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13214 - type: GasVentPump - components: - - pos: 9.5,37.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13215 - type: GasPipeStraight - components: - - pos: 9.5,36.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13216 - type: GasPipeStraight - components: - - pos: 9.5,35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13217 - type: GasPipeStraight - components: - - pos: 9.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13218 - type: GasPipeStraight - components: - - pos: 9.5,33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13219 - type: GasPipeStraight - components: - - pos: 9.5,32.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13220 - type: FirelockGlass - components: - - pos: -47.5,31.5 - parent: 82 - type: Transform -- uid: 13221 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13222 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13223 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 6.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13224 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 2.5,33.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 13225 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 3.5,33.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 13226 - type: OxygenCanister - components: - - pos: 2.5,33.5 - parent: 82 - type: Transform -- uid: 13227 - type: NitrogenCanister - components: - - pos: 3.5,33.5 - parent: 82 - type: Transform -- uid: 13228 - type: AirCanister - components: - - pos: 4.5,33.5 - parent: 82 - type: Transform -- uid: 13229 - type: ClothingMaskGasAtmos - components: - - pos: 3.2607973,35.746716 - parent: 82 - type: Transform -- uid: 13230 - type: HolofanProjector - components: - - pos: 3.5941308,35.510605 - parent: 82 - type: Transform -- uid: 13231 - type: ChairFolding - components: - - pos: 4.5,35.5 - parent: 82 - type: Transform -- uid: 13232 - type: Rack - components: - - pos: 2.5,35.5 - parent: 82 - type: Transform -- uid: 13233 - type: Table - components: - - pos: 3.5,35.5 - parent: 82 - type: Transform -- uid: 13234 - type: SheetSteel - components: - - pos: 2.5107973,35.496716 - parent: 82 - type: Transform -- uid: 13235 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13236 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13237 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13238 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13239 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13240 - type: CableHV - components: - - pos: -24.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13241 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13242 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13243 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13244 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13245 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13246 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13247 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13248 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13249 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13250 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13251 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13252 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13253 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13254 - type: GasPipeFourway - components: - - pos: -39.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13255 - type: GasPipeTJunction - components: - - pos: -40.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13256 - type: GasPipeTJunction - components: - - pos: -41.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13257 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -41.5,30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13258 - type: GasVentScrubber - components: - - pos: -39.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13259 - type: GasPipeStraight - components: - - pos: -40.5,30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13260 - type: GasPipeStraight - components: - - pos: -40.5,29.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13261 - type: GasPipeStraight - components: - - pos: -40.5,28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13262 - type: GasPipeStraight - components: - - pos: -40.5,27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13263 - type: GasPipeStraight - components: - - pos: -39.5,28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13264 - type: GasPipeStraight - components: - - pos: -39.5,27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13265 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -40.5,26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13266 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -39.5,26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13267 - type: GasPipeTJunction - components: - - pos: -23.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13268 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13269 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13270 - type: CableHV - components: - - pos: -25.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13271 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13272 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13273 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13274 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13275 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13276 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13277 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13278 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13279 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13280 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13281 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13282 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13283 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13284 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13285 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13286 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13287 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13288 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13289 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13290 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13291 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13292 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13293 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13294 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13295 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13296 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13297 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13298 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13299 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -55.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13300 - type: FirelockGlass - components: - - pos: -47.5,30.5 - parent: 82 - type: Transform -- uid: 13301 - type: FirelockGlass - components: - - pos: -47.5,29.5 - parent: 82 - type: Transform -- uid: 13302 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -56.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13303 - type: GasPipeStraight - components: - - pos: -57.5,33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13304 - type: GasPipeStraight - components: - - pos: -57.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13305 - type: GasPipeStraight - components: - - pos: -57.5,35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13306 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,37.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 13307 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -57.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13308 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,46.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13309 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,47.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13310 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,48.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13311 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,49.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13312 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,50.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13313 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13314 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,52.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13315 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,53.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13316 - type: GasVentPump - components: - - pos: -57.5,54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13317 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13318 - type: GasVentScrubber - components: - - pos: -61.5,54.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13319 - type: GasPipeStraight - components: - - pos: -61.5,53.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13320 - type: GasPipeStraight - components: - - pos: -61.5,52.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13321 - type: GasPipeStraight - components: - - pos: -61.5,51.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13322 - type: GasPipeStraight - components: - - pos: -61.5,50.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13323 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -61.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13324 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -62.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13325 - type: GasPipeStraight - components: - - pos: -61.5,48.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13326 - type: GasPipeStraight - components: - - pos: -61.5,47.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13327 - type: GasPipeStraight - components: - - pos: -61.5,46.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13328 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -61.5,45.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13329 - type: GasPipeStraight - components: - - pos: -61.5,44.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13330 - type: GasPipeStraight - components: - - pos: -61.5,43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13331 - type: GasPipeStraight - components: - - pos: -61.5,42.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13332 - type: GasPipeStraight - components: - - pos: -61.5,41.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13333 - type: GasPipeStraight - components: - - pos: -61.5,40.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13334 - type: GasPipeStraight - components: - - pos: -61.5,39.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13335 - type: GasPipeStraight - components: - - pos: -61.5,38.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13336 - type: GasPipeStraight - components: - - pos: -61.5,37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13337 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -61.5,36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13338 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,37.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 13339 - type: GasPipeStraight - components: - - pos: -57.5,38.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13340 - type: GasPipeStraight - components: - - pos: -57.5,39.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13341 - type: GasPipeStraight - components: - - pos: -57.5,40.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13342 - type: GasPipeStraight - components: - - pos: -57.5,41.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13343 - type: GasPipeStraight - components: - - pos: -57.5,42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13344 - type: GasPipeStraight - components: - - pos: -57.5,43.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13345 - type: GasPipeStraight - components: - - pos: -57.5,44.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13346 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,0.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13347 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,-0.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13348 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,-1.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13349 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -23.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13350 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13351 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-5.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13352 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-6.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13353 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-7.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13354 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-8.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13355 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13356 - type: GasPipeTJunction - components: - - pos: -25.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13357 - type: GasPipeTJunction - components: - - pos: -24.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13358 - type: GasVentScrubber - components: - - pos: -20.5,-3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13359 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -24.5,-3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13360 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13361 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13362 - type: GasPipeFourway - components: - - pos: -25.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13363 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -61.5,35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13364 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -60.5,35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13365 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13366 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13367 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13368 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13369 - type: GasPipeBend - components: - - pos: -55.5,35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13370 - type: GasPipeStraight - components: - - pos: -55.5,34.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13371 - type: GasPipeStraight - components: - - pos: -55.5,33.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13372 - type: GasPipeStraight - components: - - pos: -55.5,32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13373 - type: GasPipeStraight - components: - - pos: -55.5,31.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13374 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -60.5,37.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 13375 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -60.5,45.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13376 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -58.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13377 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -60.5,36.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 13378 - type: CableHV - components: - - pos: -17.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13379 - type: CableHV - components: - - pos: -18.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13380 - type: GasPipeStraight - components: - - pos: -23.5,30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13381 - type: GasPipeStraight - components: - - pos: -23.5,29.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13382 - type: GasPipeStraight - components: - - pos: -23.5,28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13383 - type: GasPipeStraight - components: - - pos: -23.5,27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13384 - type: GasPipeStraight - components: - - pos: -23.5,26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13385 - type: GasPipeStraight - components: - - pos: -23.5,25.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13386 - type: GasPipeStraight - components: - - pos: -23.5,24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13387 - type: GasPipeStraight - components: - - pos: -23.5,23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13388 - type: GasPipeStraight - components: - - pos: -23.5,22.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13389 - type: GasPipeStraight - components: - - pos: -23.5,21.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13390 - type: GasPipeStraight - components: - - pos: -21.5,28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13391 - type: GasPipeStraight - components: - - pos: -21.5,27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13392 - type: GasPipeStraight - components: - - pos: -21.5,26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13393 - type: GasPipeStraight - components: - - pos: -21.5,25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13394 - type: GasPipeStraight - components: - - pos: -21.5,24.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13395 - type: GasPipeStraight - components: - - pos: -21.5,23.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13396 - type: GasPipeStraight - components: - - pos: -21.5,22.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13397 - type: GasPipeStraight - components: - - pos: -21.5,21.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13398 - type: GasPipeStraight - components: - - pos: -21.5,20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13399 - type: GasPipeStraight - components: - - pos: -21.5,19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13400 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -34.5,15.5 - parent: 82 - type: Transform -- uid: 13401 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -21.5,17.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13402 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -23.5,20.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13403 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -23.5,19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13404 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -22.5,17.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13405 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -22.5,20.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13406 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13407 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13408 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13409 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13410 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13411 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13412 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13413 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13414 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13415 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13416 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13417 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13418 - type: GasPipeBend - components: - - pos: -15.5,18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13419 - type: GasPipeStraight - components: - - pos: -15.5,17.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13420 - type: GasPipeStraight - components: - - pos: -15.5,16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13421 - type: GasPipeStraight - components: - - pos: -15.5,15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13422 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -15.5,14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13423 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -15.5,19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13424 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,18.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13425 - type: Firelock - components: - - pos: -25.5,17.5 - parent: 82 - type: Transform -- uid: 13426 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,16.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13427 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,15.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13428 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,14.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13429 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,13.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13430 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13431 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13432 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13433 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13434 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,8.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13435 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,7.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13436 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,6.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13437 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,5.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13438 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -23.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13439 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13440 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -23.5,2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13441 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -21.5,3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13442 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13443 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13444 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,6.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13445 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,7.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13446 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13447 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,9.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13448 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,10.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13449 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13450 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,12.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13451 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13452 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13453 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13454 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13455 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -22.5,3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13456 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -22.5,2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13457 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13458 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -21.5,1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13459 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,0.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13460 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-0.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13461 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13462 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13463 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13464 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -21.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13465 - type: GasPipeFourway - components: - - pos: -20.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13466 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-11.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 13467 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13468 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13469 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13470 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13471 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13472 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13473 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13474 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13475 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13476 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13477 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13478 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13479 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13480 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13481 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13482 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13483 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13484 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13485 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13486 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13487 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13488 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13489 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13490 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13491 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13492 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13493 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13494 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13495 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13496 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13497 - type: GasPipeStraight - components: - - pos: -20.5,-10.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13498 - type: GasPipeStraight - components: - - pos: -20.5,-9.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13499 - type: GasPipeStraight - components: - - pos: -20.5,-8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13500 - type: GasPipeStraight - components: - - pos: -20.5,-7.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13501 - type: GasPipeStraight - components: - - pos: -20.5,-6.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13502 - type: GasPipeStraight - components: - - pos: -20.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13503 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13504 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13505 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -20.5,-16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13506 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13507 - type: GasPipeBend - components: - - pos: -23.5,-16.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13508 - type: GasPipeStraight - components: - - pos: -20.5,-15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13509 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13510 - type: GasPipeStraight - components: - - pos: -20.5,-13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13511 - type: GasPipeStraight - components: - - pos: -20.5,-12.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13512 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13513 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13514 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13515 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13516 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13517 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13518 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13519 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13520 - type: GasPipeTJunction - components: - - pos: -31.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13521 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13522 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13523 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13524 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13525 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -36.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13526 - type: GasVentPump - components: - - pos: -36.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13527 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13528 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13529 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13530 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13531 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13532 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13533 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13534 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13535 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13536 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13537 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13538 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13539 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13540 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13541 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13542 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13543 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13544 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -31.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13545 - type: GasVentScrubber - components: - - pos: -31.5,-13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13546 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13547 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13548 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13549 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13550 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13551 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13552 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13553 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -31.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13554 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13555 - type: GasPipeTJunction - components: - - pos: -33.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13556 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13557 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13558 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13559 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -36.5,-15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13560 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13561 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13562 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13563 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13564 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13565 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -23.5,-10.5 - parent: 82 - type: Transform -- uid: 13566 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13567 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13568 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13569 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13570 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13571 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13572 - type: GasPipeStraight - components: - - pos: -42.5,-3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13573 - type: GasPipeStraight - components: - - pos: -42.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13574 - type: GasPipeStraight - components: - - pos: -42.5,-5.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13575 - type: GasPipeStraight - components: - - pos: -42.5,-6.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13576 - type: GasPipeStraight - components: - - pos: -42.5,-7.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13577 - type: GasPipeStraight - components: - - pos: -42.5,-8.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13578 - type: GasPipeStraight - components: - - pos: -42.5,-9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13579 - type: GasPipeStraight - components: - - pos: -42.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13580 - type: GasPipeStraight - components: - - pos: -42.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13581 - type: GasPipeStraight - components: - - pos: -40.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13582 - type: GasPipeStraight - components: - - pos: -40.5,-6.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13583 - type: GasPipeStraight - components: - - pos: -40.5,-7.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13584 - type: GasPipeStraight - components: - - pos: -40.5,-8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13585 - type: GasPipeStraight - components: - - pos: -40.5,-9.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13586 - type: GasPipeStraight - components: - - pos: -40.5,-10.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13587 - type: GasPipeStraight - components: - - pos: -40.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13588 - type: GasPipeStraight - components: - - pos: -40.5,-12.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13589 - type: GasPipeStraight - components: - - pos: -40.5,-13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13590 - type: GasPipeStraight - components: - - pos: -40.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13591 - type: GasPipeStraight - components: - - pos: -40.5,-15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13592 - type: GasPipeStraight - components: - - pos: -42.5,-13.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13593 - type: GasPipeStraight - components: - - pos: -42.5,-14.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13594 - type: GasPipeStraight - components: - - pos: -42.5,-15.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13595 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -42.5,-16.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13596 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -40.5,-16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13597 - type: GasVentScrubber - components: - - pos: -40.5,-3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13598 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -33.5,-7.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13599 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -37.5,-7.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13600 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,-6.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13601 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,-5.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13602 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13603 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,-3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13604 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -33.5,-6.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13605 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -33.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13606 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -41.5,-3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13607 - type: GasPipeStraight - components: - - pos: -33.5,-15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13608 - type: GasPipeStraight - components: - - pos: -33.5,-16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13609 - type: GasPipeStraight - components: - - pos: -33.5,-17.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13610 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -33.5,-18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13611 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13612 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13613 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13614 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13615 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13616 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13617 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -28.5,1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13618 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -27.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13619 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13620 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13621 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13622 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13623 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13624 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13625 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13626 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13627 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13628 - type: GasPipeFourway - components: - - pos: -8.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13629 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13630 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13631 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13632 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13633 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13634 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -4.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13635 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -8.5,-3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13636 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13637 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-1.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13638 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-0.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13639 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,0.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13640 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13641 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13642 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-0.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13643 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,0.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13644 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13645 - type: GasVentScrubber - components: - - pos: -4.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13646 - type: GasVentPump - components: - - pos: -8.5,1.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13647 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13648 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13649 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13650 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13651 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13652 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13653 - type: GasPipeTJunction - components: - - pos: -3.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13654 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13655 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13656 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13657 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13658 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13659 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13660 - type: HandLabeler - components: - - pos: 26.601795,12.771153 - parent: 82 - type: Transform -- uid: 13661 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13662 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13663 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13664 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13665 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13666 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13667 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13668 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13669 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13670 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13671 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13672 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13673 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13674 - type: AirlockScienceGlassLocked - components: - - pos: 21.5,60.5 - parent: 82 - type: Transform -- uid: 13675 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13676 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13677 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13678 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13679 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13680 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13681 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13682 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13683 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13684 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13685 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13686 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13687 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13688 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13689 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13690 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13691 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13692 - type: GasPipeTJunction - components: - - pos: -5.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13693 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13694 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13695 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13696 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13697 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-5.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13698 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-6.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13699 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-7.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13700 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-8.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13701 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13702 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13703 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13704 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13705 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13706 - type: GasPipeTJunction - components: - - pos: 11.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13707 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13708 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13709 - type: CarpetSBlue - components: - - pos: 12.5,-13.5 - parent: 82 - type: Transform -- uid: 13710 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13711 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13712 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13713 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13714 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13715 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13716 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13717 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13718 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13719 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13720 - type: GasPipeTJunction - components: - - pos: 18.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13721 - type: GasPipeTJunction - components: - - pos: 19.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13722 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13723 - type: GasPipeTJunction - components: - - pos: 20.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13724 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13725 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 19.5,-3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13726 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13727 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13728 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-5.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13729 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-6.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13730 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-7.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13731 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-8.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13732 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13733 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13734 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13735 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13736 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13737 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13738 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13739 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13740 - type: GasPipeTJunction - components: - - pos: 3.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13741 - type: GasPipeTJunction - components: - - pos: 4.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13742 - type: GasPipeTJunction - components: - - pos: 11.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13743 - type: GasPipeTJunction - components: - - pos: 10.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13744 - type: GasPipeFourway - components: - - pos: 2.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13745 - type: GasPipeFourway - components: - - pos: 12.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13746 - type: GasPipeStraight - components: - - pos: 2.5,-12.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13747 - type: GasPipeStraight - components: - - pos: 2.5,-13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13748 - type: GasPipeStraight - components: - - pos: 2.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13749 - type: GasPipeStraight - components: - - pos: 3.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13750 - type: GasPipeStraight - components: - - pos: 3.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13751 - type: GasPipeStraight - components: - - pos: 3.5,-13.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13752 - type: GasPipeStraight - components: - - pos: 3.5,-14.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13753 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13754 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13755 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13756 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13757 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13758 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13759 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13760 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13761 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13762 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13763 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13764 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13765 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13766 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13767 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 4.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13768 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 10.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13769 - type: GasVentScrubber - components: - - pos: 2.5,-10.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13770 - type: GasVentScrubber - components: - - pos: 12.5,-10.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13771 - type: GasPipeStraight - components: - - pos: 11.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13772 - type: GasPipeStraight - components: - - pos: 11.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13773 - type: GasPipeStraight - components: - - pos: 11.5,-13.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13774 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-14.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13775 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13776 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13777 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13778 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-12.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13779 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13780 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13781 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13782 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13783 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13784 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13785 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13786 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13787 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13788 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13789 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13790 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13791 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13792 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13793 - type: GasPipeTJunction - components: - - pos: 28.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13794 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13795 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13796 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13797 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13798 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-0.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13799 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,0.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13800 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13801 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13802 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13803 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13804 - type: GasPipeStraight - components: - - pos: 28.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13805 - type: GasPipeStraight - components: - - pos: 28.5,-6.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13806 - type: GasPipeStraight - components: - - pos: 23.5,-5.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13807 - type: GasPipeStraight - components: - - pos: 23.5,-6.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13808 - type: GasPipeStraight - components: - - pos: 23.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13809 - type: GasPipeStraight - components: - - pos: 23.5,-3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13810 - type: GasPipeTJunction - components: - - pos: 23.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13811 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13812 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13813 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13814 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13815 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13816 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13817 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13818 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-1.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13819 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-0.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13820 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,0.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13821 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,1.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13822 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13823 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13824 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13825 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13826 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13827 - type: GasPipeStraight - components: - - pos: 20.5,-6.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13828 - type: GasPipeStraight - components: - - pos: 20.5,-7.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13829 - type: GasPipeStraight - components: - - pos: 20.5,-8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13830 - type: GasPipeStraight - components: - - pos: 20.5,-9.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13831 - type: GasPipeStraight - components: - - pos: 20.5,-10.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13832 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13833 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-12.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13834 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13835 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13836 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-18.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13837 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13838 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13839 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13840 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13841 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13842 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13843 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13844 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13845 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13846 - type: GasPipeTJunction - components: - - pos: 24.5,-20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13847 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 24.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13848 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 24.5,-21.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13849 - type: GasVentPump - components: - - pos: 24.5,-18.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13850 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13851 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13852 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13853 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13854 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13855 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13856 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13857 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13858 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13859 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13860 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13861 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13862 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13863 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13864 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13865 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13866 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13867 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13868 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13869 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13870 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13871 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13872 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-17.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13873 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13874 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13875 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13876 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13877 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13878 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13879 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13880 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-14.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13881 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-15.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13882 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-16.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13883 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-17.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13884 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13885 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-18.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13886 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-22.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13887 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-23.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13888 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-24.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13889 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 20.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13890 - type: GasPipeBend - components: - - pos: 21.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13891 - type: GasPipeStraight - components: - - pos: 18.5,-20.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13892 - type: GasPipeStraight - components: - - pos: 18.5,-21.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13893 - type: GasPipeStraight - components: - - pos: 18.5,-22.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13894 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 18.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13895 - type: GasPipeBend - components: - - pos: 19.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13896 - type: GasPipeStraight - components: - - pos: 19.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13897 - type: GasPipeStraight - components: - - pos: 19.5,-25.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13898 - type: GasPipeStraight - components: - - pos: 19.5,-26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13899 - type: GasPipeStraight - components: - - pos: 19.5,-27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13900 - type: GasPipeStraight - components: - - pos: 19.5,-28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13901 - type: GasPipeStraight - components: - - pos: 19.5,-29.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13902 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13903 - type: GasPipeStraight - components: - - pos: 21.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13904 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13905 - type: GasPipeStraight - components: - - pos: 21.5,-28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13906 - type: GasPipeStraight - components: - - pos: 21.5,-29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13907 - type: GasPipeStraight - components: - - pos: 21.5,-30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13908 - type: GasPipeStraight - components: - - pos: 21.5,-31.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13909 - type: GasPipeStraight - components: - - pos: 21.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13910 - type: GasPipeStraight - components: - - pos: 21.5,-33.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13911 - type: GasPipeStraight - components: - - pos: 21.5,-34.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13912 - type: GasPipeFourway - components: - - pos: 21.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13913 - type: GasPipeStraight - components: - - pos: 19.5,-31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13914 - type: GasPipeStraight - components: - - pos: 19.5,-32.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13915 - type: GasPipeStraight - components: - - pos: 19.5,-33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13916 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13917 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13918 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13919 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13920 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13921 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13922 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13923 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13924 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13925 - type: CrateFilledSpawner - components: - - pos: -57.5,-37.5 - parent: 82 - type: Transform -- uid: 13926 - type: AirlockMaintLocked - components: - - pos: -6.5,-16.5 - parent: 82 - type: Transform -- uid: 13927 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 47.5,-11.5 - parent: 82 - type: Transform -- uid: 13928 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-36.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Gym - type: SurveillanceCamera -- uid: 13929 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-25.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology - type: SurveillanceCamera -- uid: 13930 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-28.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry Lab - type: SurveillanceCamera -- uid: 13931 - type: Rack - components: - - pos: 54.5,-14.5 - parent: 82 - type: Transform -- uid: 13932 - type: ClothingHeadHelmetEVA - components: - - pos: 54.33534,-14.213173 - parent: 82 - type: Transform -- uid: 13933 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13934 - type: GasVentScrubber - components: - - pos: 27.5,-34.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13935 - type: RandomPosterLegit - components: - - pos: -63.5,41.5 - parent: 82 - type: Transform -- uid: 13936 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13937 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-29.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13938 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13939 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13940 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13941 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13942 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13943 - type: GasVentPump - components: - - pos: 27.5,-27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13944 - type: GasPipeStraight - components: - - pos: 27.5,-28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13945 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13946 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13947 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-14.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13948 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 3.5,-15.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13949 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 2.5,-15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13950 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-15.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13951 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-16.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13952 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-17.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13953 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-17.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13954 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-17.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13955 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 12.5,-17.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13956 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13957 - type: CableHV - components: - - pos: 17.5,-11.5 - parent: 82 - type: Transform -- uid: 13958 - type: CableHV - components: - - pos: 16.5,-11.5 - parent: 82 - type: Transform -- uid: 13959 - type: CableHV - components: - - pos: 15.5,-11.5 - parent: 82 - type: Transform -- uid: 13960 - type: CableHV - components: - - pos: 14.5,-11.5 - parent: 82 - type: Transform -- uid: 13961 - type: CableHV - components: - - pos: 13.5,-11.5 - parent: 82 - type: Transform -- uid: 13962 - type: CableHV - components: - - pos: 12.5,-11.5 - parent: 82 - type: Transform -- uid: 13963 - type: CableHV - components: - - pos: 11.5,-11.5 - parent: 82 - type: Transform -- uid: 13964 - type: CableHV - components: - - pos: 11.5,-12.5 - parent: 82 - type: Transform -- uid: 13965 - type: CableHV - components: - - pos: 11.5,-13.5 - parent: 82 - type: Transform -- uid: 13966 - type: CableHV - components: - - pos: 11.5,-14.5 - parent: 82 - type: Transform -- uid: 13967 - type: CableHV - components: - - pos: 11.5,-15.5 - parent: 82 - type: Transform -- uid: 13968 - type: CableHV - components: - - pos: 12.5,-15.5 - parent: 82 - type: Transform -- uid: 13969 - type: CableHV - components: - - pos: 12.5,-16.5 - parent: 82 - type: Transform -- uid: 13970 - type: CableHV - components: - - pos: 12.5,-17.5 - parent: 82 - type: Transform -- uid: 13971 - type: CableHV - components: - - pos: 12.5,-18.5 - parent: 82 - type: Transform -- uid: 13972 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-22.5 - parent: 82 - type: Transform -- uid: 13973 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-22.5 - parent: 82 - type: Transform -- uid: 13974 - type: WindoorArmoryLocked - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-20.5 - parent: 82 - type: Transform -- uid: 13975 - type: WeaponLaserCarbine - components: - - pos: 52.638668,-20.633232 - parent: 82 - type: Transform -- uid: 13976 - type: Rack - components: - - pos: 52.5,-20.5 - parent: 82 - type: Transform -- uid: 13977 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-21.5 - parent: 82 - type: Transform -- uid: 13978 - type: CableMV - components: - - pos: 7.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13979 - type: CableMV - components: - - pos: 6.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13980 - type: CableMV - components: - - pos: 5.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13981 - type: CableMV - components: - - pos: 4.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13982 - type: CableMV - components: - - pos: 3.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13983 - type: CableMV - components: - - pos: 2.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13984 - type: CableApcExtension - components: - - pos: -34.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13985 - type: CableMV - components: - - pos: -33.5,-25.5 - parent: 82 - type: Transform -- uid: 13986 - type: TintedWindow - components: - - rot: 3.141592653589793 rad - pos: -39.5,-41.5 - parent: 82 - type: Transform -- uid: 13987 - type: CableApcExtension - components: - - pos: -38.5,-44.5 - parent: 82 - type: Transform -- uid: 13988 - type: CableApcExtension - components: - - pos: -37.5,-41.5 - parent: 82 - type: Transform -- uid: 13989 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -37.5,-45.5 - parent: 82 - type: Transform -- uid: 13990 - type: CableApcExtension - components: - - pos: -37.5,-42.5 - parent: 82 - type: Transform -- uid: 13991 - type: ShuttersNormal - components: - - pos: 60.5,-6.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -352141.03 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver -- uid: 13992 - type: CableMV - components: - - pos: 0.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13993 - type: CableMV - components: - - pos: -0.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13994 - type: CableMV - components: - - pos: -0.5,-11.5 - parent: 82 - type: Transform -- uid: 13995 - type: CableMV - components: - - pos: -0.5,-10.5 - parent: 82 - type: Transform -- uid: 13996 - type: CableMV - components: - - pos: -0.5,-9.5 - parent: 82 - type: Transform -- uid: 13997 - type: CableMV - components: - - pos: -0.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13998 - type: CableMV - components: - - pos: 0.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13999 - type: CableMV - components: - - pos: 1.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14000 - type: CableMV - components: - - pos: 2.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14001 - type: CableMV - components: - - pos: 3.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14002 - type: CableMV - components: - - pos: 4.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14003 - type: CableMV - components: - - pos: 5.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14004 - type: CableMV - components: - - pos: 6.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14005 - type: CableMV - components: - - pos: 7.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14006 - type: CableMV - components: - - pos: 8.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14007 - type: CableMV - components: - - pos: 9.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14008 - type: CableMV - components: - - pos: 10.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14009 - type: CableMV - components: - - pos: 11.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14010 - type: CableMV - components: - - pos: 12.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14011 - type: CableMV - components: - - pos: 13.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14012 - type: CableMV - components: - - pos: 14.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14013 - type: CableMV - components: - - pos: 15.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14014 - type: CableMV - components: - - pos: 15.5,-9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14015 - type: CableMV - components: - - pos: 15.5,-10.5 - parent: 82 - type: Transform -- uid: 14016 - type: CableMV - components: - - pos: 15.5,-11.5 - parent: 82 - type: Transform -- uid: 14017 - type: CableMV - components: - - pos: 15.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14018 - type: CableMV - components: - - pos: 14.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14019 - type: WindoorSecureSalvageLocked - components: - - pos: 43.5,31.5 - parent: 82 - type: Transform -- uid: 14020 - type: WallReinforced - components: - - pos: 23.5,-36.5 - parent: 82 - type: Transform -- uid: 14021 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: 44.5,12.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -51482.43 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14025 - type: SignalReceiver -- uid: 14022 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: 44.5,13.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -51482.43 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14025 - type: SignalReceiver -- uid: 14023 - type: PosterLegitCleanliness - components: - - pos: -2.5,37.5 - parent: 82 - type: Transform -- uid: 14024 - type: CableApcExtension - components: - - pos: 31.5,-35.5 - parent: 82 - type: Transform -- uid: 14025 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: 45.5,15.5 - parent: 82 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 22714 - - port: Toggle - uid: 14022 - - port: Toggle - uid: 14021 - type: SignalTransmitter -- uid: 14026 - type: Bed - components: - - pos: -13.5,10.5 - parent: 82 - type: Transform -- uid: 14027 - type: CableMV - components: - - pos: 12.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14028 - type: CableMV - components: - - pos: 11.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14029 - type: CableMV - components: - - pos: 10.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14030 - type: CableMV - components: - - pos: 9.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14031 - type: CableMV - components: - - pos: 8.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14032 - type: APCBasic - components: - - pos: 10.5,-8.5 - parent: 82 - type: Transform -- uid: 14033 - type: CarpetBlack - components: - - pos: -14.5,9.5 - parent: 82 - type: Transform -- uid: 14034 - type: CableMV - components: - - pos: 9.5,-18.5 - parent: 82 - type: Transform -- uid: 14035 - type: CableMV - components: - - pos: 9.5,-17.5 - parent: 82 - type: Transform -- uid: 14036 - type: CableMV - components: - - pos: 9.5,-16.5 - parent: 82 - type: Transform -- uid: 14037 - type: CableMV - components: - - pos: 9.5,-15.5 - parent: 82 - type: Transform -- uid: 14038 - type: CableMV - components: - - pos: 9.5,-14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14039 - type: CableMV - components: - - pos: 9.5,-13.5 - parent: 82 - type: Transform -- uid: 14040 - type: CableMV - components: - - pos: 9.5,-12.5 - parent: 82 - type: Transform -- uid: 14041 - type: CableMV - components: - - pos: 9.5,-11.5 - parent: 82 - type: Transform -- uid: 14042 - type: CableMV - components: - - pos: 10.5,-11.5 - parent: 82 - type: Transform -- uid: 14043 - type: CableMV - components: - - pos: 10.5,-10.5 - parent: 82 - type: Transform -- uid: 14044 - type: CableMV - components: - - pos: 10.5,-9.5 - parent: 82 - type: Transform -- uid: 14045 - type: CableApcExtension - components: - - pos: 10.5,-9.5 - parent: 82 - type: Transform -- uid: 14046 - type: CableApcExtension - components: - - pos: 9.5,-9.5 - parent: 82 - type: Transform -- uid: 14047 - type: CableApcExtension - components: - - pos: 8.5,-9.5 - parent: 82 - type: Transform -- uid: 14048 - type: CableApcExtension - components: - - pos: 7.5,-9.5 - parent: 82 - type: Transform -- uid: 14049 - type: CableApcExtension - components: - - pos: 6.5,-9.5 - parent: 82 - type: Transform -- uid: 14050 - type: CableApcExtension - components: - - pos: 5.5,-9.5 - parent: 82 - type: Transform -- uid: 14051 - type: CableApcExtension - components: - - pos: 4.5,-9.5 - parent: 82 - type: Transform -- uid: 14052 - type: CableApcExtension - components: - - pos: 3.5,-9.5 - parent: 82 - type: Transform -- uid: 14053 - type: CableApcExtension - components: - - pos: 2.5,-9.5 - parent: 82 - type: Transform -- uid: 14054 - type: CableApcExtension - components: - - pos: 1.5,-9.5 - parent: 82 - type: Transform -- uid: 14055 - type: CableApcExtension - components: - - pos: 0.5,-9.5 - parent: 82 - type: Transform -- uid: 14056 - type: CableApcExtension - components: - - pos: 0.5,-10.5 - parent: 82 - type: Transform -- uid: 14057 - type: CableApcExtension - components: - - pos: 0.5,-11.5 - parent: 82 - type: Transform -- uid: 14058 - type: CableApcExtension - components: - - pos: 1.5,-11.5 - parent: 82 - type: Transform -- uid: 14059 - type: CableApcExtension - components: - - pos: 1.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14060 - type: CableApcExtension - components: - - pos: 2.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14061 - type: CableApcExtension - components: - - pos: 1.5,-13.5 - parent: 82 - type: Transform -- uid: 14062 - type: CableApcExtension - components: - - pos: 1.5,-14.5 - parent: 82 - type: Transform -- uid: 14063 - type: CableApcExtension - components: - - pos: 1.5,-15.5 - parent: 82 - type: Transform -- uid: 14064 - type: CableApcExtension - components: - - pos: 1.5,-16.5 - parent: 82 - type: Transform -- uid: 14065 - type: CableApcExtension - components: - - pos: 1.5,-17.5 - parent: 82 - type: Transform -- uid: 14066 - type: CableApcExtension - components: - - pos: 2.5,-17.5 - parent: 82 - type: Transform -- uid: 14067 - type: CableApcExtension - components: - - pos: 2.5,-18.5 - parent: 82 - type: Transform -- uid: 14068 - type: CableApcExtension - components: - - pos: 3.5,-18.5 - parent: 82 - type: Transform -- uid: 14069 - type: CableApcExtension - components: - - pos: 4.5,-18.5 - parent: 82 - type: Transform -- uid: 14070 - type: CableApcExtension - components: - - pos: 5.5,-18.5 - parent: 82 - type: Transform -- uid: 14071 - type: CableApcExtension - components: - - pos: 5.5,-17.5 - parent: 82 - type: Transform -- uid: 14072 - type: CableApcExtension - components: - - pos: 5.5,-16.5 - parent: 82 - type: Transform -- uid: 14073 - type: CableApcExtension - components: - - pos: 5.5,-15.5 - parent: 82 - type: Transform -- uid: 14074 - type: CableApcExtension - components: - - pos: 4.5,-15.5 - parent: 82 - type: Transform -- uid: 14075 - type: CableApcExtension - components: - - pos: 3.5,-15.5 - parent: 82 - type: Transform -- uid: 14076 - type: CableApcExtension - components: - - pos: 3.5,-14.5 - parent: 82 - type: Transform -- uid: 14077 - type: CableApcExtension - components: - - pos: 3.5,-13.5 - parent: 82 - type: Transform -- uid: 14078 - type: CableApcExtension - components: - - pos: 3.5,-12.5 - parent: 82 - type: Transform -- uid: 14079 - type: CableApcExtension - components: - - pos: 3.5,-11.5 - parent: 82 - type: Transform -- uid: 14080 - type: CableApcExtension - components: - - pos: 4.5,-11.5 - parent: 82 - type: Transform -- uid: 14081 - type: CableApcExtension - components: - - pos: 5.5,-11.5 - parent: 82 - type: Transform -- uid: 14082 - type: CableApcExtension - components: - - pos: 6.5,-11.5 - parent: 82 - type: Transform -- uid: 14083 - type: CableApcExtension - components: - - pos: 7.5,-11.5 - parent: 82 - type: Transform -- uid: 14084 - type: CableApcExtension - components: - - pos: 8.5,-11.5 - parent: 82 - type: Transform -- uid: 14085 - type: CableApcExtension - components: - - pos: 9.5,-11.5 - parent: 82 - type: Transform -- uid: 14086 - type: CableApcExtension - components: - - pos: 9.5,-12.5 - parent: 82 - type: Transform -- uid: 14087 - type: CableApcExtension - components: - - pos: 9.5,-13.5 - parent: 82 - type: Transform -- uid: 14088 - type: CableApcExtension - components: - - pos: 9.5,-14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14089 - type: CableApcExtension - components: - - pos: 9.5,-15.5 - parent: 82 - type: Transform -- uid: 14090 - type: CableApcExtension - components: - - pos: 9.5,-16.5 - parent: 82 - type: Transform -- uid: 14091 - type: CableApcExtension - components: - - pos: 9.5,-17.5 - parent: 82 - type: Transform -- uid: 14092 - type: CableApcExtension - components: - - pos: 9.5,-18.5 - parent: 82 - type: Transform -- uid: 14093 - type: CableApcExtension - components: - - pos: 10.5,-18.5 - parent: 82 - type: Transform -- uid: 14094 - type: CableApcExtension - components: - - pos: 11.5,-18.5 - parent: 82 - type: Transform -- uid: 14095 - type: CableApcExtension - components: - - pos: 12.5,-18.5 - parent: 82 - type: Transform -- uid: 14096 - type: CableApcExtension - components: - - pos: 12.5,-17.5 - parent: 82 - type: Transform -- uid: 14097 - type: CableApcExtension - components: - - pos: 12.5,-16.5 - parent: 82 - type: Transform -- uid: 14098 - type: CableApcExtension - components: - - pos: 12.5,-15.5 - parent: 82 - type: Transform -- uid: 14099 - type: CableApcExtension - components: - - pos: 12.5,-14.5 - parent: 82 - type: Transform -- uid: 14100 - type: CableApcExtension - components: - - pos: 11.5,-14.5 - parent: 82 - type: Transform -- uid: 14101 - type: CableApcExtension - components: - - pos: 11.5,-13.5 - parent: 82 - type: Transform -- uid: 14102 - type: CableApcExtension - components: - - pos: 11.5,-12.5 - parent: 82 - type: Transform -- uid: 14103 - type: CableApcExtension - components: - - pos: 11.5,-11.5 - parent: 82 - type: Transform -- uid: 14104 - type: CableApcExtension - components: - - pos: 10.5,-11.5 - parent: 82 - type: Transform -- uid: 14105 - type: CableApcExtension - components: - - pos: 10.5,-10.5 - parent: 82 - type: Transform -- uid: 14106 - type: CableApcExtension - components: - - pos: 12.5,-11.5 - parent: 82 - type: Transform -- uid: 14107 - type: CableApcExtension - components: - - pos: 13.5,-11.5 - parent: 82 - type: Transform -- uid: 14108 - type: CableApcExtension - components: - - pos: 14.5,-11.5 - parent: 82 - type: Transform -- uid: 14109 - type: CableApcExtension - components: - - pos: 14.5,-10.5 - parent: 82 - type: Transform -- uid: 14110 - type: CableApcExtension - components: - - pos: 14.5,-9.5 - parent: 82 - type: Transform -- uid: 14111 - type: CableApcExtension - components: - - pos: 13.5,-9.5 - parent: 82 - type: Transform -- uid: 14112 - type: CableApcExtension - components: - - pos: 12.5,-9.5 - parent: 82 - type: Transform -- uid: 14113 - type: CableApcExtension - components: - - pos: 11.5,-9.5 - parent: 82 - type: Transform -- uid: 14114 - type: CableApcExtension - components: - - pos: 15.5,-11.5 - parent: 82 - type: Transform -- uid: 14115 - type: CableApcExtension - components: - - pos: -0.5,-11.5 - parent: 82 - type: Transform -- uid: 14116 - type: CableApcExtension - components: - - pos: 29.5,-13.5 - parent: 82 - type: Transform -- uid: 14117 - type: CableApcExtension - components: - - pos: 29.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14118 - type: CableApcExtension - components: - - pos: 29.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14119 - type: CableApcExtension - components: - - pos: 28.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14120 - type: CableApcExtension - components: - - pos: 27.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14121 - type: CableApcExtension - components: - - pos: 26.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14122 - type: CableApcExtension - components: - - pos: 25.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14123 - type: CableApcExtension - components: - - pos: 24.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14124 - type: CableApcExtension - components: - - pos: 23.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14125 - type: CableApcExtension - components: - - pos: 22.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14126 - type: CableApcExtension - components: - - pos: 22.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14127 - type: CableApcExtension - components: - - pos: 30.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14128 - type: CableApcExtension - components: - - pos: 31.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14129 - type: CableApcExtension - components: - - pos: 31.5,-10.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14130 - type: CableApcExtension - components: - - pos: 31.5,-9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14131 - type: CableApcExtension - components: - - pos: 28.5,27.5 - parent: 82 - type: Transform -- uid: 14132 - type: WaterTankFull - components: - - pos: -56.5,-43.5 - parent: 82 - type: Transform -- uid: 14133 - type: UnfinishedMachineFrame - components: - - pos: -65.5,-41.5 - parent: 82 - type: Transform -- uid: 14134 - type: Table - components: - - pos: -63.5,-42.5 - parent: 82 - type: Transform -- uid: 14135 - type: Barricade - components: - - pos: -62.5,-41.5 - parent: 82 - type: Transform -- uid: 14136 - type: CrateFilledSpawner - components: - - pos: -65.5,-45.5 - parent: 82 - type: Transform -- uid: 14137 - type: Bucket - components: - - pos: -60.30357,-43.309906 - parent: 82 - type: Transform - - tags: [] - type: Tag -- uid: 14138 - type: SheetPlastic - components: - - pos: 22.551168,58.678772 - parent: 82 - type: Transform -- uid: 14139 - type: CableApcExtension - components: - - pos: 26.5,28.5 - parent: 82 - type: Transform -- uid: 14140 - type: CableApcExtension - components: - - pos: 31.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14141 - type: CableApcExtension - components: - - pos: 31.5,-7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14142 - type: CableApcExtension - components: - - pos: 31.5,-6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14143 - type: CableApcExtension - components: - - pos: 31.5,-5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14144 - type: CableApcExtension - components: - - pos: 31.5,-4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14145 - type: GasPipeStraight - components: - - pos: 21.5,-37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14146 - type: CableApcExtension - components: - - pos: 29.5,-10.5 - parent: 82 - type: Transform -- uid: 14147 - type: CableApcExtension - components: - - pos: 29.5,-9.5 - parent: 82 - type: Transform -- uid: 14148 - type: CableApcExtension - components: - - pos: 29.5,-8.5 - parent: 82 - type: Transform -- uid: 14149 - type: CableApcExtension - components: - - pos: 29.5,-7.5 - parent: 82 - type: Transform -- uid: 14150 - type: CableApcExtension - components: - - pos: 29.5,-6.5 - parent: 82 - type: Transform -- uid: 14151 - type: CableApcExtension - components: - - pos: 28.5,-9.5 - parent: 82 - type: Transform -- uid: 14152 - type: CableApcExtension - components: - - pos: 27.5,-9.5 - parent: 82 - type: Transform -- uid: 14153 - type: CableApcExtension - components: - - pos: 26.5,-9.5 - parent: 82 - type: Transform -- uid: 14154 - type: CableApcExtension - components: - - pos: 25.5,-9.5 - parent: 82 - type: Transform -- uid: 14155 - type: CableApcExtension - components: - - pos: 24.5,-9.5 - parent: 82 - type: Transform -- uid: 14156 - type: CableApcExtension - components: - - pos: 23.5,-9.5 - parent: 82 - type: Transform -- uid: 14157 - type: CableApcExtension - components: - - pos: 22.5,-9.5 - parent: 82 - type: Transform -- uid: 14158 - type: CableApcExtension - components: - - pos: 22.5,-8.5 - parent: 82 - type: Transform -- uid: 14159 - type: GasPipeStraight - components: - - pos: 21.5,-36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14160 - type: CableApcExtension - components: - - pos: 22.5,-7.5 - parent: 82 - type: Transform -- uid: 14161 - type: CableApcExtension - components: - - pos: 22.5,-6.5 - parent: 82 - type: Transform -- uid: 14162 - type: CableApcExtension - components: - - pos: 25.5,-8.5 - parent: 82 - type: Transform -- uid: 14163 - type: CableApcExtension - components: - - pos: 25.5,-7.5 - parent: 82 - type: Transform -- uid: 14164 - type: GasPipeStraight - components: - - pos: 21.5,-38.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14165 - type: GasPipeStraight - components: - - pos: 21.5,-39.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14166 - type: GasPipeStraight - components: - - pos: 21.5,-40.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14167 - type: GasPipeStraight - components: - - pos: 21.5,-41.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14168 - type: GasPipeStraight - components: - - pos: 21.5,-42.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14169 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14170 - type: GasPipeStraight - components: - - pos: 21.5,-44.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14171 - type: GasPipeStraight - components: - - pos: 21.5,-46.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14172 - type: GasPipeStraight - components: - - pos: 21.5,-47.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14173 - type: GasPipeStraight - components: - - pos: 21.5,-48.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14174 - type: GasPipeStraight - components: - - pos: 21.5,-49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14175 - type: GasPipeStraight - components: - - pos: 21.5,-50.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14176 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-51.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14177 - type: GasPipeStraight - components: - - pos: 21.5,-52.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14178 - type: GasPipeStraight - components: - - pos: 21.5,-53.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14179 - type: GasPipeStraight - components: - - pos: 21.5,-54.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14180 - type: GasPipeStraight - components: - - pos: 21.5,-55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14181 - type: GasPipeStraight - components: - - pos: 21.5,-56.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14182 - type: GasPipeStraight - components: - - pos: 21.5,-57.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14183 - type: GasPipeStraight - components: - - pos: 21.5,-58.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14184 - type: GasPipeStraight - components: - - pos: 21.5,-59.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14185 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-60.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14186 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-45.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14187 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-46.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14188 - type: GasPipeStraight - components: - - pos: 19.5,-45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14189 - type: GasPipeStraight - components: - - pos: 19.5,-44.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14190 - type: GasPipeStraight - components: - - pos: 19.5,-43.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14191 - type: GasPipeStraight - components: - - pos: 19.5,-42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14192 - type: GasPipeStraight - components: - - pos: 19.5,-41.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14193 - type: GasPipeStraight - components: - - pos: 19.5,-40.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14194 - type: GasPipeStraight - components: - - pos: 19.5,-39.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14195 - type: GasPipeStraight - components: - - pos: 19.5,-38.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14196 - type: GasPipeStraight - components: - - pos: 19.5,-37.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14197 - type: GasPipeStraight - components: - - pos: 19.5,-36.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14198 - type: GasPipeStraight - components: - - pos: 19.5,-35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14199 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14200 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14201 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14202 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14203 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14204 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14205 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-47.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14206 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-51.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14207 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-51.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14208 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-51.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14209 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-51.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14210 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 16.5,-51.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14211 - type: GasPipeBend - components: - - pos: 16.5,-50.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14212 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 15.5,-50.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14213 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-47.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14214 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-47.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14215 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-47.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14216 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-47.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14217 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-46.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14218 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 15.5,-48.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14219 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14220 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14221 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14222 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14223 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14224 - type: GasVentScrubber - components: - - pos: 15.5,-49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14225 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-45.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14226 - type: GasPipeStraight - components: - - pos: 19.5,-48.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14227 - type: GasPipeStraight - components: - - pos: 19.5,-49.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14228 - type: GasPipeStraight - components: - - pos: 19.5,-50.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14229 - type: GasPipeStraight - components: - - pos: 19.5,-51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14230 - type: GasPipeStraight - components: - - pos: 19.5,-52.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14231 - type: GasPipeStraight - components: - - pos: 19.5,-53.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14232 - type: GasPipeStraight - components: - - pos: 19.5,-54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14233 - type: GasPipeStraight - components: - - pos: 19.5,-55.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14234 - type: GasPipeStraight - components: - - pos: 19.5,-56.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14235 - type: GasPipeStraight - components: - - pos: 19.5,-57.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14236 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-60.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14237 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-61.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14238 - type: CableHV - components: - - pos: 13.5,-47.5 - parent: 82 - type: Transform -- uid: 14239 - type: CableHV - components: - - pos: 14.5,-47.5 - parent: 82 - type: Transform -- uid: 14240 - type: CableHV - components: - - pos: 15.5,-47.5 - parent: 82 - type: Transform -- uid: 14241 - type: CableHV - components: - - pos: 16.5,-47.5 - parent: 82 - type: Transform -- uid: 14242 - type: CableHV - components: - - pos: 17.5,-47.5 - parent: 82 - type: Transform -- uid: 14243 - type: CableHV - components: - - pos: 18.5,-47.5 - parent: 82 - type: Transform -- uid: 14244 - type: CableHV - components: - - pos: 19.5,-47.5 - parent: 82 - type: Transform -- uid: 14245 - type: CableHV - components: - - pos: 19.5,-34.5 - parent: 82 - type: Transform -- uid: 14246 - type: CableHV - components: - - pos: 19.5,-35.5 - parent: 82 - type: Transform -- uid: 14247 - type: CableHV - components: - - pos: 19.5,-36.5 - parent: 82 - type: Transform -- uid: 14248 - type: CableHV - components: - - pos: 19.5,-37.5 - parent: 82 - type: Transform -- uid: 14249 - type: CableHV - components: - - pos: 19.5,-38.5 - parent: 82 - type: Transform -- uid: 14250 - type: CableHV - components: - - pos: 19.5,-39.5 - parent: 82 - type: Transform -- uid: 14251 - type: CableHV - components: - - pos: 19.5,-40.5 - parent: 82 - type: Transform -- uid: 14252 - type: CableHV - components: - - pos: 19.5,-41.5 - parent: 82 - type: Transform -- uid: 14253 - type: CableHV - components: - - pos: 19.5,-42.5 - parent: 82 - type: Transform -- uid: 14254 - type: CableHV - components: - - pos: 19.5,-43.5 - parent: 82 - type: Transform -- uid: 14255 - type: CableHV - components: - - pos: 19.5,-44.5 - parent: 82 - type: Transform -- uid: 14256 - type: CableHV - components: - - pos: 19.5,-45.5 - parent: 82 - type: Transform -- uid: 14257 - type: CableHV - components: - - pos: 19.5,-46.5 - parent: 82 - type: Transform -- uid: 14258 - type: CableHV - components: - - pos: 19.5,-48.5 - parent: 82 - type: Transform -- uid: 14259 - type: CableHV - components: - - pos: 19.5,-49.5 - parent: 82 - type: Transform -- uid: 14260 - type: CableHV - components: - - pos: 19.5,-50.5 - parent: 82 - type: Transform -- uid: 14261 - type: CableHV - components: - - pos: 19.5,-51.5 - parent: 82 - type: Transform -- uid: 14262 - type: CableHV - components: - - pos: 19.5,-52.5 - parent: 82 - type: Transform -- uid: 14263 - type: CableHV - components: - - pos: 19.5,-53.5 - parent: 82 - type: Transform -- uid: 14264 - type: CableHV - components: - - pos: 19.5,-54.5 - parent: 82 - type: Transform -- uid: 14265 - type: CableHV - components: - - pos: 19.5,-55.5 - parent: 82 - type: Transform -- uid: 14266 - type: CableHV - components: - - pos: 19.5,-56.5 - parent: 82 - type: Transform -- uid: 14267 - type: CableHV - components: - - pos: 19.5,-57.5 - parent: 82 - type: Transform -- uid: 14268 - type: CableHV - components: - - pos: 19.5,-58.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14269 - type: CableHV - components: - - pos: 19.5,-59.5 - parent: 82 - type: Transform -- uid: 14270 - type: CableHV - components: - - pos: 19.5,-60.5 - parent: 82 - type: Transform -- uid: 14271 - type: CableHV - components: - - pos: 19.5,-61.5 - parent: 82 - type: Transform -- uid: 14272 - type: CableHV - components: - - pos: 19.5,-62.5 - parent: 82 - type: Transform -- uid: 14273 - type: CableHV - components: - - pos: 19.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14274 - type: CableHV - components: - - pos: 19.5,-64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14275 - type: CableHV - components: - - pos: 19.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14276 - type: CableHV - components: - - pos: 19.5,-66.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14277 - type: CableHV - components: - - pos: 19.5,-67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14278 - type: CableHV - components: - - pos: 19.5,-68.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14279 - type: CableHV - components: - - pos: 19.5,-69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14280 - type: CableHV - components: - - pos: 19.5,-70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14281 - type: CableHV - components: - - pos: 19.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14282 - type: CableHV - components: - - pos: 19.5,-72.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14283 - type: CableHV - components: - - pos: 19.5,-73.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14284 - type: CableHV - components: - - pos: 19.5,-74.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14285 - type: CableHV - components: - - pos: 19.5,-75.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14286 - type: CableHV - components: - - pos: 19.5,-76.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14287 - type: CableHV - components: - - pos: 19.5,-77.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14288 - type: CableHV - components: - - pos: 19.5,-78.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14289 - type: CableHV - components: - - pos: 19.5,-79.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14290 - type: CableHV - components: - - pos: 19.5,-80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14291 - type: CableHV - components: - - pos: 19.5,-81.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14292 - type: CableHV - components: - - pos: 19.5,-82.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14293 - type: CableHV - components: - - pos: 19.5,-83.5 - parent: 82 - type: Transform -- uid: 14294 - type: APCBasic - components: - - pos: 23.5,32.5 - parent: 82 - type: Transform -- uid: 14295 - type: CableApcExtension - components: - - pos: 25.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14296 - type: CableApcExtension - components: - - pos: 24.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14297 - type: ForkPlastic - components: - - pos: 28.517502,69.63607 - parent: 82 - type: Transform -- uid: 14298 - type: DonkpocketBoxSpawner - components: - - pos: 27.5,71.5 - parent: 82 - type: Transform -- uid: 14299 - type: CableApcExtension - components: - - pos: 21.5,72.5 - parent: 82 - type: Transform -- uid: 14300 - type: CableApcExtension - components: - - pos: 21.5,73.5 - parent: 82 - type: Transform -- uid: 14301 - type: CableApcExtension - components: - - pos: 21.5,74.5 - parent: 82 - type: Transform -- uid: 14302 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 13.5,-92.5 - parent: 82 - type: Transform -- uid: 14303 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 27.5,-92.5 - parent: 82 - type: Transform -- uid: 14304 - type: CableHV - components: - - pos: 14.5,-93.5 - parent: 82 - type: Transform -- uid: 14305 - type: CableHV - components: - - pos: 14.5,-92.5 - parent: 82 - type: Transform -- uid: 14306 - type: CableHV - components: - - pos: 13.5,-92.5 - parent: 82 - type: Transform -- uid: 14307 - type: CableHV - components: - - pos: 26.5,-93.5 - parent: 82 - type: Transform -- uid: 14308 - type: CableHV - components: - - pos: 26.5,-92.5 - parent: 82 - type: Transform -- uid: 14309 - type: CableHV - components: - - pos: 27.5,-92.5 - parent: 82 - type: Transform -- uid: 14310 - type: CableHV - components: - - pos: 27.5,-91.5 - parent: 82 - type: Transform -- uid: 14311 - type: CableHV - components: - - pos: 28.5,-91.5 - parent: 82 - type: Transform -- uid: 14312 - type: CableHV - components: - - pos: 29.5,-91.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14313 - type: CableHV - components: - - pos: 13.5,-91.5 - parent: 82 - type: Transform -- uid: 14314 - type: CableHV - components: - - pos: 12.5,-91.5 - parent: 82 - type: Transform -- uid: 14315 - type: CableHV - components: - - pos: 11.5,-91.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14316 - type: CableMV - components: - - pos: 11.5,-91.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14317 - type: CableMV - components: - - pos: 11.5,-92.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14318 - type: CableMV - components: - - pos: 29.5,-91.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14319 - type: CableMV - components: - - pos: 29.5,-92.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14320 - type: APCBasic - components: - - pos: 20.5,-98.5 - parent: 82 - type: Transform -- uid: 14321 - type: CableApcExtension - components: - - pos: 20.5,-98.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14322 - type: CableApcExtension - components: - - pos: 20.5,-99.5 - parent: 82 - type: Transform -- uid: 14323 - type: CableApcExtension - components: - - pos: 19.5,-99.5 - parent: 82 - type: Transform -- uid: 14324 - type: CableApcExtension - components: - - pos: 18.5,-99.5 - parent: 82 - type: Transform -- uid: 14325 - type: CableApcExtension - components: - - pos: 17.5,-99.5 - parent: 82 - type: Transform -- uid: 14326 - type: CableApcExtension - components: - - pos: 16.5,-99.5 - parent: 82 - type: Transform -- uid: 14327 - type: CableApcExtension - components: - - pos: 16.5,-100.5 - parent: 82 - type: Transform -- uid: 14328 - type: CableApcExtension - components: - - pos: 16.5,-101.5 - parent: 82 - type: Transform -- uid: 14329 - type: CableApcExtension - components: - - pos: 16.5,-102.5 - parent: 82 - type: Transform -- uid: 14330 - type: CableApcExtension - components: - - pos: 16.5,-103.5 - parent: 82 - type: Transform -- uid: 14331 - type: CableApcExtension - components: - - pos: 16.5,-104.5 - parent: 82 - type: Transform -- uid: 14332 - type: CableApcExtension - components: - - pos: 16.5,-105.5 - parent: 82 - type: Transform -- uid: 14333 - type: CableApcExtension - components: - - pos: 16.5,-106.5 - parent: 82 - type: Transform -- uid: 14334 - type: CableApcExtension - components: - - pos: 17.5,-106.5 - parent: 82 - type: Transform -- uid: 14335 - type: CableApcExtension - components: - - pos: 18.5,-106.5 - parent: 82 - type: Transform -- uid: 14336 - type: CableApcExtension - components: - - pos: 19.5,-106.5 - parent: 82 - type: Transform -- uid: 14337 - type: CableApcExtension - components: - - pos: 20.5,-106.5 - parent: 82 - type: Transform -- uid: 14338 - type: CableApcExtension - components: - - pos: 21.5,-106.5 - parent: 82 - type: Transform -- uid: 14339 - type: CableApcExtension - components: - - pos: 22.5,-106.5 - parent: 82 - type: Transform -- uid: 14340 - type: CableApcExtension - components: - - pos: 23.5,-106.5 - parent: 82 - type: Transform -- uid: 14341 - type: CableApcExtension - components: - - pos: 24.5,-106.5 - parent: 82 - type: Transform -- uid: 14342 - type: CableApcExtension - components: - - pos: 24.5,-105.5 - parent: 82 - type: Transform -- uid: 14343 - type: CableApcExtension - components: - - pos: 24.5,-104.5 - parent: 82 - type: Transform -- uid: 14344 - type: CableApcExtension - components: - - pos: 24.5,-103.5 - parent: 82 - type: Transform -- uid: 14345 - type: CableApcExtension - components: - - pos: 24.5,-102.5 - parent: 82 - type: Transform -- uid: 14346 - type: CableApcExtension - components: - - pos: 24.5,-101.5 - parent: 82 - type: Transform -- uid: 14347 - type: CableApcExtension - components: - - pos: 24.5,-100.5 - parent: 82 - type: Transform -- uid: 14348 - type: CableApcExtension - components: - - pos: 24.5,-99.5 - parent: 82 - type: Transform -- uid: 14349 - type: CableApcExtension - components: - - pos: 23.5,-99.5 - parent: 82 - type: Transform -- uid: 14350 - type: CableApcExtension - components: - - pos: 22.5,-99.5 - parent: 82 - type: Transform -- uid: 14351 - type: CableApcExtension - components: - - pos: 21.5,-99.5 - parent: 82 - type: Transform -- uid: 14352 - type: CableApcExtension - components: - - pos: 15.5,-100.5 - parent: 82 - type: Transform -- uid: 14353 - type: CableApcExtension - components: - - pos: 14.5,-100.5 - parent: 82 - type: Transform -- uid: 14354 - type: CableApcExtension - components: - - pos: 13.5,-100.5 - parent: 82 - type: Transform -- uid: 14355 - type: CableApcExtension - components: - - pos: 12.5,-100.5 - parent: 82 - type: Transform -- uid: 14356 - type: CableApcExtension - components: - - pos: 25.5,-100.5 - parent: 82 - type: Transform -- uid: 14357 - type: CableApcExtension - components: - - pos: 26.5,-100.5 - parent: 82 - type: Transform -- uid: 14358 - type: CableApcExtension - components: - - pos: 27.5,-100.5 - parent: 82 - type: Transform -- uid: 14359 - type: CableApcExtension - components: - - pos: 28.5,-100.5 - parent: 82 - type: Transform -- uid: 14360 - type: CableApcExtension - components: - - pos: 20.5,-100.5 - parent: 82 - type: Transform -- uid: 14361 - type: CableApcExtension - components: - - pos: 20.5,-101.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14362 - type: CableApcExtension - components: - - pos: 20.5,-102.5 - parent: 82 - type: Transform -- uid: 14363 - type: CableApcExtension - components: - - pos: 20.5,-103.5 - parent: 82 - type: Transform -- uid: 14364 - type: CableApcExtension - components: - - pos: 18.5,-105.5 - parent: 82 - type: Transform -- uid: 14365 - type: CableApcExtension - components: - - pos: 18.5,-104.5 - parent: 82 - type: Transform -- uid: 14366 - type: CableApcExtension - components: - - pos: 22.5,-105.5 - parent: 82 - type: Transform -- uid: 14367 - type: CableApcExtension - components: - - pos: 22.5,-104.5 - parent: 82 - type: Transform -- uid: 14368 - type: CableApcExtension - components: - - pos: 18.5,-100.5 - parent: 82 - type: Transform -- uid: 14369 - type: CableApcExtension - components: - - pos: 22.5,-100.5 - parent: 82 - type: Transform -- uid: 14370 - type: CableApcExtension - components: - - pos: 18.5,-101.5 - parent: 82 - type: Transform -- uid: 14371 - type: CableApcExtension - components: - - pos: 22.5,-101.5 - parent: 82 - type: Transform -- uid: 14372 - type: CableMV - components: - - pos: 20.5,-98.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14373 - type: CableMV - components: - - pos: 20.5,-99.5 - parent: 82 - type: Transform -- uid: 14374 - type: CableMV - components: - - pos: 19.5,-99.5 - parent: 82 - type: Transform -- uid: 14375 - type: CableMV - components: - - pos: 18.5,-99.5 - parent: 82 - type: Transform -- uid: 14376 - type: CableMV - components: - - pos: 17.5,-99.5 - parent: 82 - type: Transform -- uid: 14377 - type: CableMV - components: - - pos: 16.5,-99.5 - parent: 82 - type: Transform -- uid: 14378 - type: CableMV - components: - - pos: 16.5,-100.5 - parent: 82 - type: Transform -- uid: 14379 - type: CableMV - components: - - pos: 15.5,-100.5 - parent: 82 - type: Transform -- uid: 14380 - type: CableMV - components: - - pos: 14.5,-100.5 - parent: 82 - type: Transform -- uid: 14381 - type: CableMV - components: - - pos: 13.5,-100.5 - parent: 82 - type: Transform -- uid: 14382 - type: CableMV - components: - - pos: 12.5,-100.5 - parent: 82 - type: Transform -- uid: 14383 - type: CableMV - components: - - pos: 11.5,-100.5 - parent: 82 - type: Transform -- uid: 14384 - type: CableMV - components: - - pos: 10.5,-100.5 - parent: 82 - type: Transform -- uid: 14385 - type: CableMV - components: - - pos: 9.5,-100.5 - parent: 82 - type: Transform -- uid: 14386 - type: CableMV - components: - - pos: 9.5,-99.5 - parent: 82 - type: Transform -- uid: 14387 - type: CableMV - components: - - pos: 9.5,-98.5 - parent: 82 - type: Transform -- uid: 14388 - type: CableMV - components: - - pos: 9.5,-97.5 - parent: 82 - type: Transform -- uid: 14389 - type: CableMV - components: - - pos: 9.5,-96.5 - parent: 82 - type: Transform -- uid: 14390 - type: CableMV - components: - - pos: 9.5,-95.5 - parent: 82 - type: Transform -- uid: 14391 - type: CableMV - components: - - pos: 9.5,-94.5 - parent: 82 - type: Transform -- uid: 14392 - type: CableMV - components: - - pos: 9.5,-93.5 - parent: 82 - type: Transform -- uid: 14393 - type: CableMV - components: - - pos: 9.5,-92.5 - parent: 82 - type: Transform -- uid: 14394 - type: CableMV - components: - - pos: 9.5,-91.5 - parent: 82 - type: Transform -- uid: 14395 - type: CableMV - components: - - pos: 10.5,-91.5 - parent: 82 - type: Transform -- uid: 14396 - type: CableMV - components: - - pos: 11.5,-91.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14397 - type: CableMV - components: - - pos: 30.5,-91.5 - parent: 82 - type: Transform -- uid: 14398 - type: CableMV - components: - - pos: 31.5,-91.5 - parent: 82 - type: Transform -- uid: 14399 - type: CableMV - components: - - pos: 31.5,-92.5 - parent: 82 - type: Transform -- uid: 14400 - type: CableMV - components: - - pos: 31.5,-93.5 - parent: 82 - type: Transform -- uid: 14401 - type: CableMV - components: - - pos: 31.5,-94.5 - parent: 82 - type: Transform -- uid: 14402 - type: CableMV - components: - - pos: 31.5,-95.5 - parent: 82 - type: Transform -- uid: 14403 - type: CableMV - components: - - pos: 31.5,-96.5 - parent: 82 - type: Transform -- uid: 14404 - type: CableMV - components: - - pos: 31.5,-97.5 - parent: 82 - type: Transform -- uid: 14405 - type: CableMV - components: - - pos: 31.5,-98.5 - parent: 82 - type: Transform -- uid: 14406 - type: CableMV - components: - - pos: 31.5,-99.5 - parent: 82 - type: Transform -- uid: 14407 - type: CableMV - components: - - pos: 31.5,-100.5 - parent: 82 - type: Transform -- uid: 14408 - type: CableMV - components: - - pos: 30.5,-100.5 - parent: 82 - type: Transform -- uid: 14409 - type: CableMV - components: - - pos: 29.5,-100.5 - parent: 82 - type: Transform -- uid: 14410 - type: CableMV - components: - - pos: 28.5,-100.5 - parent: 82 - type: Transform -- uid: 14411 - type: CableMV - components: - - pos: 27.5,-100.5 - parent: 82 - type: Transform -- uid: 14412 - type: CableMV - components: - - pos: 26.5,-100.5 - parent: 82 - type: Transform -- uid: 14413 - type: CableMV - components: - - pos: 25.5,-100.5 - parent: 82 - type: Transform -- uid: 14414 - type: CableMV - components: - - pos: 24.5,-100.5 - parent: 82 - type: Transform -- uid: 14415 - type: CableMV - components: - - pos: 24.5,-99.5 - parent: 82 - type: Transform -- uid: 14416 - type: CableMV - components: - - pos: 23.5,-99.5 - parent: 82 - type: Transform -- uid: 14417 - type: CableMV - components: - - pos: 22.5,-99.5 - parent: 82 - type: Transform -- uid: 14418 - type: CableMV - components: - - pos: 21.5,-99.5 - parent: 82 - type: Transform -- uid: 14419 - type: CableApcExtension - components: - - pos: 28.5,-92.5 - parent: 82 - type: Transform -- uid: 14420 - type: CableApcExtension - components: - - pos: 27.5,-92.5 - parent: 82 - type: Transform -- uid: 14421 - type: CableApcExtension - components: - - pos: 29.5,-92.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14422 - type: CableApcExtension - components: - - pos: 30.5,-92.5 - parent: 82 - type: Transform -- uid: 14423 - type: CableApcExtension - components: - - pos: 31.5,-92.5 - parent: 82 - type: Transform -- uid: 14424 - type: CableApcExtension - components: - - pos: 31.5,-93.5 - parent: 82 - type: Transform -- uid: 14425 - type: CableApcExtension - components: - - pos: 31.5,-94.5 - parent: 82 - type: Transform -- uid: 14426 - type: CableApcExtension - components: - - pos: 31.5,-95.5 - parent: 82 - type: Transform -- uid: 14427 - type: CableApcExtension - components: - - pos: 31.5,-96.5 - parent: 82 - type: Transform -- uid: 14428 - type: CableApcExtension - components: - - pos: 31.5,-97.5 - parent: 82 - type: Transform -- uid: 14429 - type: CableApcExtension - components: - - pos: 31.5,-98.5 - parent: 82 - type: Transform -- uid: 14430 - type: CableApcExtension - components: - - pos: 31.5,-99.5 - parent: 82 - type: Transform -- uid: 14431 - type: CableApcExtension - components: - - pos: 31.5,-100.5 - parent: 82 - type: Transform -- uid: 14432 - type: CableApcExtension - components: - - pos: 31.5,-91.5 - parent: 82 - type: Transform -- uid: 14433 - type: CableApcExtension - components: - - pos: 31.5,-90.5 - parent: 82 - type: Transform -- uid: 14434 - type: CableApcExtension - components: - - pos: 31.5,-89.5 - parent: 82 - type: Transform -- uid: 14435 - type: CableApcExtension - components: - - pos: 31.5,-88.5 - parent: 82 - type: Transform -- uid: 14436 - type: CableApcExtension - components: - - pos: 31.5,-87.5 - parent: 82 - type: Transform -- uid: 14437 - type: CableApcExtension - components: - - pos: 30.5,-87.5 - parent: 82 - type: Transform -- uid: 14438 - type: CableApcExtension - components: - - pos: 29.5,-87.5 - parent: 82 - type: Transform -- uid: 14439 - type: CableApcExtension - components: - - pos: 28.5,-87.5 - parent: 82 - type: Transform -- uid: 14440 - type: CableApcExtension - components: - - pos: 27.5,-87.5 - parent: 82 - type: Transform -- uid: 14441 - type: CableApcExtension - components: - - pos: 27.5,-88.5 - parent: 82 - type: Transform -- uid: 14442 - type: CableApcExtension - components: - - pos: 26.5,-88.5 - parent: 82 - type: Transform -- uid: 14443 - type: CableApcExtension - components: - - pos: 25.5,-88.5 - parent: 82 - type: Transform -- uid: 14444 - type: CableApcExtension - components: - - pos: 25.5,-87.5 - parent: 82 - type: Transform -- uid: 14445 - type: CableApcExtension - components: - - pos: 25.5,-86.5 - parent: 82 - type: Transform -- uid: 14446 - type: CableApcExtension - components: - - pos: 24.5,-86.5 - parent: 82 - type: Transform -- uid: 14447 - type: CableApcExtension - components: - - pos: 23.5,-86.5 - parent: 82 - type: Transform -- uid: 14448 - type: CableApcExtension - components: - - pos: 17.5,-86.5 - parent: 82 - type: Transform -- uid: 14449 - type: CableApcExtension - components: - - pos: 18.5,-86.5 - parent: 82 - type: Transform -- uid: 14450 - type: CableApcExtension - components: - - pos: 16.5,-86.5 - parent: 82 - type: Transform -- uid: 14451 - type: CableApcExtension - components: - - pos: 15.5,-86.5 - parent: 82 - type: Transform -- uid: 14452 - type: CableApcExtension - components: - - pos: 15.5,-87.5 - parent: 82 - type: Transform -- uid: 14453 - type: CableApcExtension - components: - - pos: 15.5,-88.5 - parent: 82 - type: Transform -- uid: 14454 - type: CableApcExtension - components: - - pos: 14.5,-88.5 - parent: 82 - type: Transform -- uid: 14455 - type: CableApcExtension - components: - - pos: 13.5,-88.5 - parent: 82 - type: Transform -- uid: 14456 - type: CableApcExtension - components: - - pos: 12.5,-88.5 - parent: 82 - type: Transform -- uid: 14457 - type: CableApcExtension - components: - - pos: 12.5,-87.5 - parent: 82 - type: Transform -- uid: 14458 - type: CableApcExtension - components: - - pos: 11.5,-88.5 - parent: 82 - type: Transform -- uid: 14459 - type: CableApcExtension - components: - - pos: 10.5,-88.5 - parent: 82 - type: Transform -- uid: 14460 - type: CableApcExtension - components: - - pos: 9.5,-88.5 - parent: 82 - type: Transform -- uid: 14461 - type: CableApcExtension - components: - - pos: 9.5,-89.5 - parent: 82 - type: Transform -- uid: 14462 - type: CableApcExtension - components: - - pos: 9.5,-90.5 - parent: 82 - type: Transform -- uid: 14463 - type: CableApcExtension - components: - - pos: 9.5,-91.5 - parent: 82 - type: Transform -- uid: 14464 - type: CableApcExtension - components: - - pos: 9.5,-92.5 - parent: 82 - type: Transform -- uid: 14465 - type: CableApcExtension - components: - - pos: 10.5,-92.5 - parent: 82 - type: Transform -- uid: 14466 - type: CableApcExtension - components: - - pos: 11.5,-92.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14467 - type: CableApcExtension - components: - - pos: 12.5,-92.5 - parent: 82 - type: Transform -- uid: 14468 - type: CableApcExtension - components: - - pos: 9.5,-93.5 - parent: 82 - type: Transform -- uid: 14469 - type: CableApcExtension - components: - - pos: 9.5,-94.5 - parent: 82 - type: Transform -- uid: 14470 - type: CableApcExtension - components: - - pos: 9.5,-95.5 - parent: 82 - type: Transform -- uid: 14471 - type: CableApcExtension - components: - - pos: 9.5,-96.5 - parent: 82 - type: Transform -- uid: 14472 - type: CableApcExtension - components: - - pos: 9.5,-97.5 - parent: 82 - type: Transform -- uid: 14473 - type: CableApcExtension - components: - - pos: 9.5,-98.5 - parent: 82 - type: Transform -- uid: 14474 - type: CableApcExtension - components: - - pos: 9.5,-99.5 - parent: 82 - type: Transform -- uid: 14475 - type: CableApcExtension - components: - - pos: 9.5,-100.5 - parent: 82 - type: Transform -- uid: 14476 - type: APCBasic - components: - - pos: 15.5,-46.5 - parent: 82 - type: Transform -- uid: 14477 - type: CableApcExtension - components: - - pos: 15.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14478 - type: CableMV - components: - - pos: 15.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14479 - type: CableApcExtension - components: - - pos: 15.5,-47.5 - parent: 82 - type: Transform -- uid: 14480 - type: CableApcExtension - components: - - pos: 15.5,-48.5 - parent: 82 - type: Transform -- uid: 14481 - type: CableApcExtension - components: - - pos: 15.5,-49.5 - parent: 82 - type: Transform -- uid: 14482 - type: CableApcExtension - components: - - pos: 15.5,-50.5 - parent: 82 - type: Transform -- uid: 14483 - type: CableApcExtension - components: - - pos: 16.5,-47.5 - parent: 82 - type: Transform -- uid: 14484 - type: CableApcExtension - components: - - pos: 17.5,-47.5 - parent: 82 - type: Transform -- uid: 14485 - type: CableApcExtension - components: - - pos: 18.5,-47.5 - parent: 82 - type: Transform -- uid: 14486 - type: CableApcExtension - components: - - pos: 19.5,-47.5 - parent: 82 - type: Transform -- uid: 14487 - type: CableApcExtension - components: - - pos: 19.5,-48.5 - parent: 82 - type: Transform -- uid: 14488 - type: CableApcExtension - components: - - pos: 19.5,-49.5 - parent: 82 - type: Transform -- uid: 14489 - type: CableApcExtension - components: - - pos: 19.5,-50.5 - parent: 82 - type: Transform -- uid: 14490 - type: CableApcExtension - components: - - pos: 19.5,-51.5 - parent: 82 - type: Transform -- uid: 14491 - type: CableApcExtension - components: - - pos: 19.5,-52.5 - parent: 82 - type: Transform -- uid: 14492 - type: CableApcExtension - components: - - pos: 19.5,-53.5 - parent: 82 - type: Transform -- uid: 14493 - type: CableApcExtension - components: - - pos: 19.5,-54.5 - parent: 82 - type: Transform -- uid: 14494 - type: CableApcExtension - components: - - pos: 19.5,-55.5 - parent: 82 - type: Transform -- uid: 14495 - type: CableApcExtension - components: - - pos: 19.5,-56.5 - parent: 82 - type: Transform -- uid: 14496 - type: CableApcExtension - components: - - pos: 19.5,-57.5 - parent: 82 - type: Transform -- uid: 14497 - type: CableApcExtension - components: - - pos: 20.5,-57.5 - parent: 82 - type: Transform -- uid: 14498 - type: CableApcExtension - components: - - pos: 20.5,-58.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14499 - type: CableApcExtension - components: - - pos: 20.5,-59.5 - parent: 82 - type: Transform -- uid: 14500 - type: CableApcExtension - components: - - pos: 20.5,-60.5 - parent: 82 - type: Transform -- uid: 14501 - type: CableApcExtension - components: - - pos: 20.5,-61.5 - parent: 82 - type: Transform -- uid: 14502 - type: CableApcExtension - components: - - pos: 19.5,-61.5 - parent: 82 - type: Transform -- uid: 14503 - type: CableApcExtension - components: - - pos: 18.5,-61.5 - parent: 82 - type: Transform -- uid: 14504 - type: CableApcExtension - components: - - pos: 21.5,-61.5 - parent: 82 - type: Transform -- uid: 14505 - type: CableApcExtension - components: - - pos: 22.5,-61.5 - parent: 82 - type: Transform -- uid: 14506 - type: CableApcExtension - components: - - pos: 19.5,-62.5 - parent: 82 - type: Transform -- uid: 14507 - type: CableApcExtension - components: - - pos: 19.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14508 - type: CableApcExtension - components: - - pos: 19.5,-64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14509 - type: CableApcExtension - components: - - pos: 21.5,-62.5 - parent: 82 - type: Transform -- uid: 14510 - type: CableApcExtension - components: - - pos: 21.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14511 - type: CableApcExtension - components: - - pos: 21.5,-64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14512 - type: CableApcExtension - components: - - pos: 21.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14513 - type: CableApcExtension - components: - - pos: 19.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14514 - type: CableApcExtension - components: - - pos: 14.5,-47.5 - parent: 82 - type: Transform -- uid: 14515 - type: CableApcExtension - components: - - pos: 11.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14516 - type: CableApcExtension - components: - - pos: 11.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14517 - type: CableApcExtension - components: - - pos: 10.5,-45.5 - parent: 82 - type: Transform -- uid: 14518 - type: CableApcExtension - components: - - pos: 9.5,-45.5 - parent: 82 - type: Transform -- uid: 14519 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 23.5,-7.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14520 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 28.5,-7.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14521 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14522 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14523 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14524 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14525 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14526 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14527 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14528 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14529 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14530 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14531 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14532 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14533 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14534 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14535 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14536 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14537 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14538 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14539 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14540 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14541 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14542 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14543 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14544 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14545 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14546 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14547 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14548 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14549 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14550 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14551 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14552 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14553 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14554 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14555 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14556 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14557 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14558 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14559 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14560 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14561 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14562 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14563 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14564 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14565 - type: GasPipeTJunction - components: - - pos: 6.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14566 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 8.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14567 - type: GasVentScrubber - components: - - pos: 8.5,-24.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14568 - type: CableApcExtension - components: - - pos: 20.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14569 - type: CableApcExtension - components: - - pos: 21.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14570 - type: CableApcExtension - components: - - pos: 23.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14571 - type: CableApcExtension - components: - - pos: 22.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14572 - type: CableApcExtension - components: - - pos: 23.5,31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14573 - type: CableApcExtension - components: - - pos: 23.5,32.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14574 - type: SubstationBasic - components: - - pos: 25.5,22.5 - parent: 82 - type: Transform -- uid: 14575 - type: BarSignComboCafe - components: - - pos: 22.5,44.5 - parent: 82 - type: Transform -- uid: 14576 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 6.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14577 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14578 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -3.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14579 - type: GasPipeStraight - components: - - pos: -6.5,-26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14580 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14581 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14582 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14583 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14584 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14585 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14586 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14587 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14588 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14589 - type: GasPipeStraight - components: - - pos: -6.5,-27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14590 - type: GasPipeStraight - components: - - pos: -6.5,-28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14591 - type: GasPipeStraight - components: - - pos: -6.5,-29.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14592 - type: GasPipeStraight - components: - - pos: -6.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14593 - type: GasPipeStraight - components: - - pos: -6.5,-31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14594 - type: GasPipeStraight - components: - - pos: -6.5,-32.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14595 - type: GasPipeStraight - components: - - pos: -4.5,-28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14596 - type: GasPipeStraight - components: - - pos: -4.5,-29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14597 - type: GasPipeStraight - components: - - pos: -4.5,-30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14598 - type: GasPipeStraight - components: - - pos: -4.5,-31.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14599 - type: GasPipeStraight - components: - - pos: -4.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14600 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14601 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-24.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14602 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-23.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14603 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-22.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14604 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-21.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14605 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14606 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14607 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14608 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-22.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14609 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-21.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14610 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-20.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14611 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14612 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-18.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14613 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-17.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14614 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-16.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14615 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-15.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14616 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-14.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14617 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-13.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14618 - type: Window - components: - - rot: 3.141592653589793 rad - pos: 24.5,-33.5 - parent: 82 - type: Transform -- uid: 14619 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14620 - type: GasPipeStraight - components: - - pos: -3.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14621 - type: GasPipeStraight - components: - - pos: -3.5,-6.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14622 - type: GasPipeStraight - components: - - pos: -3.5,-7.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14623 - type: GasPipeStraight - components: - - pos: -3.5,-8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14624 - type: GasPipeStraight - components: - - pos: -3.5,-9.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14625 - type: GasPipeStraight - components: - - pos: -3.5,-10.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14626 - type: DisgustingSweptSoup - components: - - pos: 15.582649,61.444702 - parent: 82 - type: Transform -- uid: 14627 - type: GasPipeStraight - components: - - pos: -3.5,-13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14628 - type: GasPipeStraight - components: - - pos: -3.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14629 - type: GasPipeStraight - components: - - pos: -3.5,-16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14630 - type: GasPipeStraight - components: - - pos: -3.5,-17.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14631 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14632 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14633 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14634 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14635 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14636 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-13.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14637 - type: FoodMealMilkape - components: - - pos: 15.800335,67.546036 - parent: 82 - type: Transform -- uid: 14638 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14639 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14640 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14641 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14642 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14643 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14644 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14645 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14646 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14647 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -14.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14648 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14649 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14650 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14651 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14652 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14653 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 0.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14654 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14655 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14656 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14657 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14658 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14659 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14660 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14661 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 14.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14662 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14663 - type: GasPipeTJunction - components: - - pos: 16.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14664 - type: GasPipeTJunction - components: - - pos: 11.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14665 - type: GasPipeTJunction - components: - - pos: 8.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14666 - type: GasPipeTJunction - components: - - pos: 3.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14667 - type: GasPipeTJunction - components: - - pos: -1.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14668 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 1.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14669 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 7.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14670 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 13.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14671 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-34.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14672 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-33.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14673 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-34.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14674 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-33.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14675 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-34.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14676 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-33.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14677 - type: GasVentScrubber - components: - - pos: 1.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14678 - type: GasVentScrubber - components: - - pos: 7.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14679 - type: GasVentScrubber - components: - - pos: 13.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14680 - type: GasPipeStraight - components: - - pos: 16.5,-36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14681 - type: GasPipeStraight - components: - - pos: 11.5,-36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14682 - type: GasPipeStraight - components: - - pos: 8.5,-36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14683 - type: GasPipeStraight - components: - - pos: 3.5,-36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14684 - type: GasPipeStraight - components: - - pos: -1.5,-36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14685 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -1.5,-37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14686 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 3.5,-37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14687 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 11.5,-37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14688 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 16.5,-37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14689 - type: GasVentScrubber - components: - - pos: 0.5,-34.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14690 - type: GasVentScrubber - components: - - pos: 14.5,-34.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14691 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 3.5,-35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14692 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 11.5,-35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14693 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 6.5,-40.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14694 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 8.5,-40.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14695 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,-39.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14696 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,-38.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14697 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,-37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14698 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-39.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14699 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-38.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14700 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-37.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14701 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-36.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14702 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14703 - type: GasPipeTJunction - components: - - pos: 6.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14704 - type: GasPipeTJunction - components: - - pos: 3.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14705 - type: GasPipeTJunction - components: - - pos: 11.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14706 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14707 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14708 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14709 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14710 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14711 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14712 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14713 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14714 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14715 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14716 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14717 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14718 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14719 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14720 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14721 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14722 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14723 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14724 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14725 - type: GasVentPump - components: - - pos: -11.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14726 - type: GasVentScrubber - components: - - pos: -10.5,-30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14727 - type: GasPipeStraight - components: - - pos: -11.5,-31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14728 - type: GasPipeStraight - components: - - pos: -11.5,-32.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14729 - type: GasPipeStraight - components: - - pos: -10.5,-31.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14730 - type: GasPipeStraight - components: - - pos: -10.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14731 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -11.5,-33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14732 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-33.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14733 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,47.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14734 - type: WindoorServiceLocked - components: - - rot: -1.5707963267948966 rad - pos: -2.5,46.5 - parent: 82 - type: Transform -- uid: 14735 - type: RandomPosterAny - components: - - pos: -20.5,-0.5 - parent: 82 - type: Transform -- uid: 14736 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -59.5,43.5 - parent: 82 - type: Transform -- uid: 14737 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -59.5,43.5 - parent: 82 - type: Transform -- uid: 14738 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -59.5,43.5 - parent: 82 - type: Transform -- uid: 14739 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -59.5,42.5 - parent: 82 - type: Transform -- uid: 14740 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -59.5,41.5 - parent: 82 - type: Transform -- uid: 14741 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -59.5,40.5 - parent: 82 - type: Transform -- uid: 14742 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-42.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14743 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-42.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14744 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-42.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14745 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -59.5,39.5 - parent: 82 - type: Transform -- uid: 14746 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-42.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14747 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-42.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14748 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-42.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14749 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14750 - type: GasPipeStraight - components: - - pos: -4.5,-34.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14751 - type: GasPipeStraight - components: - - pos: -4.5,-33.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14752 - type: GasPipeStraight - components: - - pos: -4.5,-36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14753 - type: GasPipeStraight - components: - - pos: -4.5,-38.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14754 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14755 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14756 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-38.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14757 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-42.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14758 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-42.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14759 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-41.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14760 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-40.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14761 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-39.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14762 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-37.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14763 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-36.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14764 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14765 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-39.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14766 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-40.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14767 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-41.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14768 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14769 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-43.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14770 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-44.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14771 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14772 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-46.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14773 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-47.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14774 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-48.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14775 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-49.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14776 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-50.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14777 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-48.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14778 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-47.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14779 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-46.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14780 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-45.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14781 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-44.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14782 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-43.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14783 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-38.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14784 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14785 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14786 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14787 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14788 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14789 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14790 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14791 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -10.5,-49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14792 - type: GasVentScrubber - components: - - pos: -10.5,-48.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14793 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -10.5,-52.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14794 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14795 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14796 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14797 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14798 - type: GasPipeStraight - components: - - pos: -4.5,-50.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14799 - type: GasPipeStraight - components: - - pos: -4.5,-51.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14800 - type: GasPipeStraight - components: - - pos: -4.5,-52.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14801 - type: GasPipeStraight - components: - - pos: -4.5,-53.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14802 - type: GasPipeStraight - components: - - pos: -4.5,-54.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14803 - type: GasPipeStraight - components: - - pos: -4.5,-55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14804 - type: GasPipeStraight - components: - - pos: -4.5,-56.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14805 - type: GasPipeStraight - components: - - pos: -4.5,-57.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14806 - type: GasPipeStraight - components: - - pos: -4.5,-58.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14807 - type: GasPipeStraight - components: - - pos: -4.5,-59.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14808 - type: GasPipeStraight - components: - - pos: -4.5,-60.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14809 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-61.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14810 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-61.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14811 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-60.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14812 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -6.5,-60.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14813 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-59.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14814 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-58.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14815 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-57.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14816 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-56.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14817 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-55.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14818 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-54.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14819 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-53.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14820 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-52.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14821 - type: GasPipeTJunction - components: - - pos: -17.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14822 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -17.5,-25.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14823 - type: GasVentScrubber - components: - - pos: -14.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14824 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14825 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14826 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14827 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14828 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14829 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14830 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14831 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14832 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14833 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-25.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14834 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14835 - type: GasPipeStraight - components: - - pos: -26.5,-26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14836 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14837 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-25.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14838 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-25.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14839 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-25.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14840 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-25.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14841 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14842 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -26.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14843 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14844 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14845 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14846 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14847 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14848 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14849 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14850 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14851 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14852 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14853 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-29.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14854 - type: GasVentPump - components: - - pos: -17.5,-29.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14855 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14856 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14857 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14858 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14859 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14860 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14861 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14862 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14863 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14864 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,-30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14865 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,-29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14866 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,-28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14867 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,-27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14868 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-31.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14869 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14870 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14871 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14872 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14873 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14874 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14875 - type: GasPipeFourway - components: - - pos: -31.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14876 - type: GasPipeStraight - components: - - pos: -31.5,-31.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14877 - type: GasPipeStraight - components: - - pos: -31.5,-30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14878 - type: GasPipeStraight - components: - - pos: -31.5,-29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14879 - type: GasPipeStraight - components: - - pos: -31.5,-28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14880 - type: GasVentScrubber - components: - - pos: -31.5,-27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14881 - type: GasPipeStraight - components: - - pos: -31.5,-33.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14882 - type: GasPipeStraight - components: - - pos: -31.5,-34.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14883 - type: GasPipeStraight - components: - - pos: -31.5,-35.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14884 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14885 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -31.5,-37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14886 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14887 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14888 - type: GasPipeTJunction - components: - - pos: -33.5,-36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14889 - type: GasPipeStraight - components: - - pos: -33.5,-37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14890 - type: GasPipeStraight - components: - - pos: -33.5,-38.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14891 - type: GasPipeStraight - components: - - pos: -33.5,-39.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14892 - type: GasPipeStraight - components: - - pos: -33.5,-40.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14893 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -33.5,-41.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14894 - type: GasPipeBend - components: - - pos: -32.5,-41.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14895 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -32.5,-42.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14896 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -34.5,-42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14897 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-41.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14898 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-40.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14899 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-39.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14900 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-38.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14901 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-37.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14902 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-36.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14903 - type: GasPipeTJunction - components: - - pos: -34.5,-35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14904 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14905 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14906 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14907 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14908 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14909 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14910 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14911 - type: GasPipeStraight - components: - - pos: -37.5,-34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14912 - type: GasPipeStraight - components: - - pos: -37.5,-33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14913 - type: GasPipeStraight - components: - - pos: -37.5,-32.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14914 - type: GasPipeStraight - components: - - pos: -37.5,-31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14915 - type: GasPipeTJunction - components: - - pos: -37.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14916 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -36.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14917 - type: GasPipeTJunction - components: - - pos: -35.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14918 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -33.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14919 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14920 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14921 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14922 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14923 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14924 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14925 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -40.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14926 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14927 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14928 - type: GasPipeStraight - components: - - pos: -36.5,-29.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14929 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14930 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -39.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14931 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14932 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14933 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14934 - type: GasPipeStraight - components: - - pos: -36.5,-28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14935 - type: GasPipeStraight - components: - - pos: -36.5,-27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14936 - type: GasPipeStraight - components: - - pos: -36.5,-26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14937 - type: GasPipeStraight - components: - - pos: -36.5,-25.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14938 - type: GasPipeStraight - components: - - pos: -36.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14939 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14940 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14941 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -23.5,-17.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14942 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -21.5,-17.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14943 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -25.5,-16.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14944 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-16.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14945 - type: GasPipeStraight - components: - - pos: -25.5,-15.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14946 - type: GasPipeStraight - components: - - pos: -25.5,-14.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14947 - type: GasPipeStraight - components: - - pos: -25.5,-13.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14948 - type: FloraTreeChristmas02 - components: - - pos: -50.538418,-8.533605 - parent: 82 - type: Transform -- uid: 14949 - type: CrayonRainbow - components: - - pos: -51.208218,-9.680082 - parent: 82 - type: Transform -- uid: 14950 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 27.5,6.5 - parent: 82 - type: Transform -- uid: 14951 - type: ClothingUniformColorRainbow - components: - - pos: -49.86655,-9.835638 - parent: 82 - type: Transform -- uid: 14952 - type: FoodFrozenSnowconeRainbow - components: - - pos: -50.547108,-9.777305 - parent: 82 - type: Transform -- uid: 14953 - type: CarpetSBlue - components: - - pos: 12.5,-14.5 - parent: 82 - type: Transform -- uid: 14954 - type: GasPipeStraight - components: - - pos: -39.5,-31.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14955 - type: CarpetSBlue - components: - - pos: 13.5,-14.5 - parent: 82 - type: Transform -- uid: 14956 - type: CarpetSBlue - components: - - pos: 13.5,-13.5 - parent: 82 - type: Transform -- uid: 14957 - type: CarpetBlack - components: - - pos: -14.5,10.5 - parent: 82 - type: Transform -- uid: 14958 - type: MachineFrame - components: - - pos: -64.5,-41.5 - parent: 82 - type: Transform -- uid: 14959 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14960 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14961 - type: GasPipeStraight - components: - - pos: -39.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14962 - type: AirlockMaintLocked - components: - - pos: -11.5,-17.5 - parent: 82 - type: Transform -- uid: 14963 - type: Grille - components: - - pos: -43.5,57.5 - parent: 82 - type: Transform -- uid: 14964 - type: RandomInstruments - components: - - pos: -50.5,-10.5 - parent: 82 - type: Transform -- uid: 14965 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -65.5,56.5 - parent: 82 - type: Transform -- uid: 14966 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14967 - type: GasPipeStraight - components: - - pos: -40.5,-27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14968 - type: GasPipeStraight - components: - - pos: -40.5,-28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14969 - type: GasPipeStraight - components: - - pos: -40.5,-29.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14970 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14971 - type: GasPipeStraight - components: - - pos: -44.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14972 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14973 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14974 - type: AirlockTheatreLocked - components: - - pos: -15.5,-19.5 - parent: 82 - type: Transform -- uid: 14975 - type: GasPipeBend - components: - - pos: -39.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14976 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14977 - type: GasPipeStraight - components: - - pos: -39.5,-28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14978 - type: GasPipeStraight - components: - - pos: -39.5,-29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14979 - type: GasPipeStraight - components: - - pos: -39.5,-30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14980 - type: CableApcExtension - components: - - pos: 27.5,25.5 - parent: 82 - type: Transform -- uid: 14981 - type: CableApcExtension - components: - - pos: 24.5,26.5 - parent: 82 - type: Transform -- uid: 14982 - type: CableApcExtension - components: - - pos: 26.5,29.5 - parent: 82 - type: Transform -- uid: 14983 - type: CableApcExtension - components: - - pos: 47.5,-14.5 - parent: 82 - type: Transform -- uid: 14984 - type: ClothingMaskBreath - components: - - pos: 54.349228,-15.62984 - parent: 82 - type: Transform -- uid: 14985 - type: LockerSecurityFilled - components: - - pos: 53.5,-0.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14986 - type: TableReinforcedGlass - components: - - pos: 15.5,58.5 - parent: 82 - type: Transform -- uid: 14987 - type: TableReinforcedGlass - components: - - pos: 14.5,58.5 - parent: 82 - type: Transform -- uid: 14988 - type: CableApcExtension - components: - - pos: 21.5,75.5 - parent: 82 - type: Transform -- uid: 14989 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -50.5,-37.5 - parent: 82 - type: Transform -- uid: 14990 - type: SheetGlass - components: - - pos: 23.115255,58.664883 - parent: 82 - type: Transform -- uid: 14991 - type: SheetSteel - components: - - pos: 23.67081,58.664883 - parent: 82 - type: Transform -- uid: 14992 - type: CableApcStack - components: - - pos: 24.197714,58.69266 - parent: 82 - type: Transform -- uid: 14993 - type: PowerCellRecharger - components: - - pos: 25.5,58.5 - parent: 82 - type: Transform -- uid: 14994 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14995 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14996 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14997 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-39.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14998 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-39.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14999 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-39.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15000 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,-38.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15001 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,-37.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15002 - type: AdvancedMatterBinStockPart - components: - - pos: 24.594795,58.886307 - parent: 82 - type: Transform -- uid: 15003 - type: AdvancedMatterBinStockPart - components: - - pos: 24.719795,58.60853 - parent: 82 - type: Transform -- uid: 15004 - type: HighPowerMicroLaserStockPart - components: - - pos: 24.905888,58.755814 - parent: 82 - type: Transform -- uid: 15005 - type: HighPowerMicroLaserStockPart - components: - - pos: 25.017,58.575256 - parent: 82 - type: Transform -- uid: 15006 - type: NanoManipulatorStockPart - components: - - pos: 29.584906,58.783592 - parent: 82 - type: Transform -- uid: 15007 - type: NanoManipulatorStockPart - components: - - pos: 29.588385,58.50606 - parent: 82 - type: Transform -- uid: 15008 - type: AdvancedCapacitorStockPart - components: - - pos: 29.388535,58.755814 - parent: 82 - type: Transform -- uid: 15009 - type: AdvancedCapacitorStockPart - components: - - pos: 29.277424,58.450256 - parent: 82 - type: Transform -- uid: 15010 - type: AdvancedScanningModuleStockPart - components: - - pos: 25.575817,58.709774 - parent: 82 - type: Transform -- uid: 15011 - type: CableApcExtension - components: - - pos: 27.5,23.5 - parent: 82 - type: Transform -- uid: 15012 - type: CableApcExtension - components: - - pos: 27.5,22.5 - parent: 82 - type: Transform -- uid: 15013 - type: CableApcExtension - components: - - pos: 20.5,29.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15014 - type: CableApcExtension - components: - - pos: 20.5,28.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15015 - type: CableApcExtension - components: - - pos: 20.5,27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15016 - type: CableApcExtension - components: - - pos: 20.5,26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15017 - type: CableApcExtension - components: - - pos: 20.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15018 - type: CableApcExtension - components: - - pos: 20.5,24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15019 - type: CableApcExtension - components: - - pos: 20.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15020 - type: CableApcExtension - components: - - pos: 20.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15021 - type: CableApcExtension - components: - - pos: 21.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15022 - type: CableApcExtension - components: - - pos: 22.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15023 - type: CableApcExtension - components: - - pos: 23.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15024 - type: CableApcExtension - components: - - pos: 23.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15025 - type: CableApcExtension - components: - - pos: 23.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15026 - type: CableApcExtension - components: - - pos: 24.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15027 - type: CableApcExtension - components: - - pos: 25.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15028 - type: CableApcExtension - components: - - pos: 26.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15029 - type: CableApcExtension - components: - - pos: 27.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15030 - type: CableApcExtension - components: - - pos: 28.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15031 - type: CableApcExtension - components: - - pos: 27.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15032 - type: CableApcExtension - components: - - pos: 28.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15033 - type: CableApcExtension - components: - - pos: 26.5,31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15034 - type: CableApcExtension - components: - - pos: 26.5,32.5 - parent: 82 - type: Transform -- uid: 15035 - type: CableApcExtension - components: - - pos: 26.5,33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15036 - type: CableApcExtension - components: - - pos: 26.5,34.5 - parent: 82 - type: Transform -- uid: 15037 - type: CableApcExtension - components: - - pos: 27.5,34.5 - parent: 82 - type: Transform -- uid: 15038 - type: CableApcExtension - components: - - pos: 28.5,34.5 - parent: 82 - type: Transform -- uid: 15039 - type: CableApcExtension - components: - - pos: 28.5,35.5 - parent: 82 - type: Transform -- uid: 15040 - type: CableApcExtension - components: - - pos: 28.5,36.5 - parent: 82 - type: Transform -- uid: 15041 - type: CableApcExtension - components: - - pos: 28.5,37.5 - parent: 82 - type: Transform -- uid: 15042 - type: CableApcExtension - components: - - pos: 27.5,37.5 - parent: 82 - type: Transform -- uid: 15043 - type: CableApcExtension - components: - - pos: 26.5,37.5 - parent: 82 - type: Transform -- uid: 15044 - type: CableApcExtension - components: - - pos: 25.5,37.5 - parent: 82 - type: Transform -- uid: 15045 - type: CableApcExtension - components: - - pos: 25.5,36.5 - parent: 82 - type: Transform -- uid: 15046 - type: CableApcExtension - components: - - pos: 25.5,35.5 - parent: 82 - type: Transform -- uid: 15047 - type: CableApcExtension - components: - - pos: 25.5,34.5 - parent: 82 - type: Transform -- uid: 15048 - type: CableApcExtension - components: - - pos: 20.5,31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15049 - type: CableApcExtension - components: - - pos: 20.5,32.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15050 - type: CableApcExtension - components: - - pos: 20.5,33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15051 - type: CableApcExtension - components: - - pos: 20.5,34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15052 - type: CableApcExtension - components: - - pos: 20.5,35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15053 - type: CableApcExtension - components: - - pos: 20.5,36.5 - parent: 82 - type: Transform -- uid: 15054 - type: CableApcExtension - components: - - pos: 20.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15055 - type: CableApcExtension - components: - - pos: 20.5,38.5 - parent: 82 - type: Transform -- uid: 15056 - type: CableApcExtension - components: - - pos: 20.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15057 - type: CableApcExtension - components: - - pos: 20.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15058 - type: CableApcExtension - components: - - pos: 21.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15059 - type: CableApcStack1 - components: - - pos: 22.523832,40.510193 - parent: 82 - type: Transform -- uid: 15060 - type: CableApcExtension - components: - - pos: 23.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15061 - type: CableApcExtension - components: - - pos: 24.5,40.5 - parent: 82 - type: Transform -- uid: 15062 - type: CableApcExtension - components: - - pos: 25.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15063 - type: CableApcExtension - components: - - pos: 26.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15064 - type: CableApcExtension - components: - - pos: 27.5,40.5 - parent: 82 - type: Transform -- uid: 15065 - type: TableReinforced - components: - - pos: 34.5,50.5 - parent: 82 - type: Transform -- uid: 15066 - type: CableApcExtension - components: - - pos: 27.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15067 - type: CableApcExtension - components: - - pos: 27.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15068 - type: CableApcExtension - components: - - pos: 27.5,46.5 - parent: 82 - type: Transform -- uid: 15069 - type: AirlockChemistryLocked - components: - - pos: -36.5,-29.5 - parent: 82 - type: Transform -- uid: 15070 - type: CableApcExtension - components: - - pos: 21.5,-86.5 - parent: 82 - type: Transform -- uid: 15071 - type: CableApcExtension - components: - - pos: 21.5,-85.5 - parent: 82 - type: Transform -- uid: 15072 - type: CableApcExtension - components: - - pos: 21.5,-84.5 - parent: 82 - type: Transform -- uid: 15073 - type: CableApcExtension - components: - - pos: 20.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15074 - type: CableApcExtension - components: - - pos: 20.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15075 - type: CableApcExtension - components: - - pos: 20.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15076 - type: CableApcExtension - components: - - pos: 21.5,43.5 - parent: 82 - type: Transform -- uid: 15077 - type: CableApcStack1 - components: - - pos: 27.472286,43.54264 - parent: 82 - type: Transform -- uid: 15078 - type: CableApcStack1 - components: - - pos: 27.416729,42.431526 - parent: 82 - type: Transform -- uid: 15079 - type: CableMV - components: - - pos: 25.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15080 - type: CableMV - components: - - pos: 24.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15081 - type: CableMV - components: - - pos: 23.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15082 - type: CableMV - components: - - pos: 21.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15083 - type: CableMV - components: - - pos: 22.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15084 - type: CableMV - components: - - pos: 20.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15085 - type: CableMV - components: - - pos: 20.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15086 - type: CableMV - components: - - pos: 20.5,24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15087 - type: CableMV - components: - - pos: 20.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15088 - type: CableMV - components: - - pos: 20.5,26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15089 - type: CableMV - components: - - pos: 20.5,27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15090 - type: CableMV - components: - - pos: 20.5,28.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15091 - type: CableMV - components: - - pos: 20.5,29.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15092 - type: CableMV - components: - - pos: 20.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15093 - type: CableMV - components: - - pos: 21.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15094 - type: CableMV - components: - - pos: 22.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15095 - type: CableMV - components: - - pos: 23.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15096 - type: CableMV - components: - - pos: 23.5,31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15097 - type: CableMV - components: - - pos: 23.5,32.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15098 - type: CableMV - components: - - pos: 23.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15099 - type: CableMV - components: - - pos: 23.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15100 - type: CableMV - components: - - pos: 24.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15101 - type: CableMV - components: - - pos: 25.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15102 - type: CableMV - components: - - pos: 26.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15103 - type: CableMV - components: - - pos: 27.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15104 - type: CableMV - components: - - pos: 28.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15105 - type: CableMV - components: - - pos: 29.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15106 - type: CableMV - components: - - pos: 30.5,20.5 - parent: 82 - type: Transform -- uid: 15107 - type: CableMV - components: - - pos: 31.5,20.5 - parent: 82 - type: Transform -- uid: 15108 - type: CableMV - components: - - pos: 31.5,20.5 - parent: 82 - type: Transform -- uid: 15109 - type: CableMV - components: - - pos: 32.5,20.5 - parent: 82 - type: Transform -- uid: 15110 - type: CableMV - components: - - pos: 33.5,20.5 - parent: 82 - type: Transform -- uid: 15111 - type: CableMV - components: - - pos: 34.5,20.5 - parent: 82 - type: Transform -- uid: 15112 - type: CableMV - components: - - pos: 35.5,20.5 - parent: 82 - type: Transform -- uid: 15113 - type: CableMV - components: - - pos: 36.5,20.5 - parent: 82 - type: Transform -- uid: 15114 - type: CableMV - components: - - pos: 37.5,20.5 - parent: 82 - type: Transform -- uid: 15115 - type: CableMV - components: - - pos: 37.5,21.5 - parent: 82 - type: Transform -- uid: 15116 - type: APCBasic - components: - - pos: 37.5,22.5 - parent: 82 - type: Transform -- uid: 15117 - type: CableMV - components: - - pos: 37.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15118 - type: CableMV - components: - - pos: 38.5,20.5 - parent: 82 - type: Transform -- uid: 15119 - type: CableMV - components: - - pos: 39.5,20.5 - parent: 82 - type: Transform -- uid: 15120 - type: CableMV - components: - - pos: 40.5,20.5 - parent: 82 - type: Transform -- uid: 15121 - type: CableMV - components: - - pos: 41.5,20.5 - parent: 82 - type: Transform -- uid: 15122 - type: CableMV - components: - - pos: 42.5,20.5 - parent: 82 - type: Transform -- uid: 15123 - type: CableMV - components: - - pos: 43.5,20.5 - parent: 82 - type: Transform -- uid: 15124 - type: CableMV - components: - - pos: 43.5,19.5 - parent: 82 - type: Transform -- uid: 15125 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 44.5,15.5 - parent: 82 - type: Transform -- uid: 15126 - type: CableMV - components: - - pos: 43.5,18.5 - parent: 82 - type: Transform -- uid: 15127 - type: CableMV - components: - - pos: 46.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15128 - type: CableMV - components: - - pos: 43.5,17.5 - parent: 82 - type: Transform -- uid: 15129 - type: CableMV - components: - - pos: 43.5,16.5 - parent: 82 - type: Transform -- uid: 15130 - type: CableMV - components: - - pos: 43.5,15.5 - parent: 82 - type: Transform -- uid: 15131 - type: CableMV - components: - - pos: 44.5,15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15132 - type: CableApcExtension - components: - - pos: 44.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15133 - type: CableApcExtension - components: - - pos: 44.5,15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15134 - type: CableApcExtension - components: - - pos: 44.5,13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15135 - type: CableApcExtension - components: - - pos: 44.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15136 - type: CableApcExtension - components: - - pos: 45.5,12.5 - parent: 82 - type: Transform -- uid: 15137 - type: CableApcExtension - components: - - pos: 46.5,12.5 - parent: 82 - type: Transform -- uid: 15138 - type: CableApcExtension - components: - - pos: 47.5,12.5 - parent: 82 - type: Transform -- uid: 15139 - type: CableApcExtension - components: - - pos: 48.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15140 - type: CableApcExtension - components: - - pos: 48.5,13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15141 - type: CableApcExtension - components: - - pos: 48.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15142 - type: CableApcExtension - components: - - pos: 47.5,14.5 - parent: 82 - type: Transform -- uid: 15143 - type: CableApcExtension - components: - - pos: 47.5,15.5 - parent: 82 - type: Transform -- uid: 15144 - type: CableApcExtension - components: - - pos: 47.5,16.5 - parent: 82 - type: Transform -- uid: 15145 - type: CableApcExtension - components: - - pos: 47.5,27.5 - parent: 82 - type: Transform -- uid: 15146 - type: CableApcExtension - components: - - pos: 47.5,17.5 - parent: 82 - type: Transform -- uid: 15147 - type: CableApcExtension - components: - - pos: 47.5,18.5 - parent: 82 - type: Transform -- uid: 15148 - type: CableApcExtension - components: - - pos: 46.5,18.5 - parent: 82 - type: Transform -- uid: 15149 - type: CableApcExtension - components: - - pos: 45.5,18.5 - parent: 82 - type: Transform -- uid: 15150 - type: CableApcExtension - components: - - pos: 44.5,18.5 - parent: 82 - type: Transform -- uid: 15151 - type: CableApcExtension - components: - - pos: 46.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15152 - type: CableApcExtension - components: - - pos: 43.5,18.5 - parent: 82 - type: Transform -- uid: 15153 - type: CableApcExtension - components: - - pos: 42.5,18.5 - parent: 82 - type: Transform -- uid: 15154 - type: CableApcExtension - components: - - pos: 43.5,15.5 - parent: 82 - type: Transform -- uid: 15155 - type: CableApcExtension - components: - - pos: 42.5,15.5 - parent: 82 - type: Transform -- uid: 15156 - type: CableApcExtension - components: - - pos: 41.5,15.5 - parent: 82 - type: Transform -- uid: 15157 - type: CableApcExtension - components: - - pos: 41.5,14.5 - parent: 82 - type: Transform -- uid: 15158 - type: CableApcExtension - components: - - pos: 41.5,13.5 - parent: 82 - type: Transform -- uid: 15159 - type: CableApcExtension - components: - - pos: 41.5,12.5 - parent: 82 - type: Transform -- uid: 15160 - type: CableApcExtension - components: - - pos: 42.5,12.5 - parent: 82 - type: Transform -- uid: 15161 - type: CableApcExtension - components: - - pos: 43.5,12.5 - parent: 82 - type: Transform -- uid: 15162 - type: CableApcExtension - components: - - pos: 40.5,14.5 - parent: 82 - type: Transform -- uid: 15163 - type: CableApcExtension - components: - - pos: 39.5,14.5 - parent: 82 - type: Transform -- uid: 15164 - type: CableApcExtension - components: - - pos: 38.5,14.5 - parent: 82 - type: Transform -- uid: 15165 - type: CableApcExtension - components: - - pos: 37.5,14.5 - parent: 82 - type: Transform -- uid: 15166 - type: CableApcExtension - components: - - pos: 37.5,13.5 - parent: 82 - type: Transform -- uid: 15167 - type: CableApcExtension - components: - - pos: 37.5,12.5 - parent: 82 - type: Transform -- uid: 15168 - type: CableApcExtension - components: - - pos: 38.5,12.5 - parent: 82 - type: Transform -- uid: 15169 - type: CableApcExtension - components: - - pos: 39.5,12.5 - parent: 82 - type: Transform -- uid: 15170 - type: CableHV - components: - - pos: -22.5,56.5 - parent: 82 - type: Transform -- uid: 15171 - type: CableApcExtension - components: - - pos: 41.5,16.5 - parent: 82 - type: Transform -- uid: 15172 - type: CableApcExtension - components: - - pos: 41.5,17.5 - parent: 82 - type: Transform -- uid: 15173 - type: CableApcExtension - components: - - pos: 41.5,18.5 - parent: 82 - type: Transform -- uid: 15174 - type: CableApcExtension - components: - - pos: 44.5,19.5 - parent: 82 - type: Transform -- uid: 15175 - type: CableApcExtension - components: - - pos: 44.5,20.5 - parent: 82 - type: Transform -- uid: 15176 - type: CableApcExtension - components: - - pos: 44.5,21.5 - parent: 82 - type: Transform -- uid: 15177 - type: CableApcExtension - components: - - pos: 44.5,22.5 - parent: 82 - type: Transform -- uid: 15178 - type: CableApcExtension - components: - - pos: 44.5,23.5 - parent: 82 - type: Transform -- uid: 15179 - type: CableApcExtension - components: - - pos: 44.5,24.5 - parent: 82 - type: Transform -- uid: 15180 - type: CableApcExtension - components: - - pos: 44.5,25.5 - parent: 82 - type: Transform -- uid: 15181 - type: CableApcExtension - components: - - pos: 44.5,26.5 - parent: 82 - type: Transform -- uid: 15182 - type: CableApcExtension - components: - - pos: 44.5,27.5 - parent: 82 - type: Transform -- uid: 15183 - type: CableApcExtension - components: - - pos: 45.5,27.5 - parent: 82 - type: Transform -- uid: 15184 - type: CableApcExtension - components: - - pos: 46.5,27.5 - parent: 82 - type: Transform -- uid: 15185 - type: CableApcExtension - components: - - pos: 44.5,28.5 - parent: 82 - type: Transform -- uid: 15186 - type: CableApcExtension - components: - - pos: 44.5,29.5 - parent: 82 - type: Transform -- uid: 15187 - type: CableApcExtension - components: - - pos: 45.5,29.5 - parent: 82 - type: Transform -- uid: 15188 - type: CableApcExtension - components: - - pos: 46.5,29.5 - parent: 82 - type: Transform -- uid: 15189 - type: CableApcExtension - components: - - pos: 47.5,29.5 - parent: 82 - type: Transform -- uid: 15190 - type: CableApcExtension - components: - - pos: 48.5,29.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15191 - type: CableApcExtension - components: - - pos: 48.5,28.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15192 - type: CableApcExtension - components: - - pos: 48.5,27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15193 - type: CableApcExtension - components: - - pos: 45.5,22.5 - parent: 82 - type: Transform -- uid: 15194 - type: CableApcExtension - components: - - pos: 47.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15195 - type: CableApcExtension - components: - - pos: 48.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15196 - type: CableApcExtension - components: - - pos: 48.5,23.5 - parent: 82 - type: Transform -- uid: 15197 - type: CableApcExtension - components: - - pos: 48.5,21.5 - parent: 82 - type: Transform -- uid: 15198 - type: CableApcExtension - components: - - pos: 37.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15199 - type: CableApcExtension - components: - - pos: 37.5,23.5 - parent: 82 - type: Transform -- uid: 15200 - type: CableApcExtension - components: - - pos: 37.5,24.5 - parent: 82 - type: Transform -- uid: 15201 - type: CableApcExtension - components: - - pos: 37.5,25.5 - parent: 82 - type: Transform -- uid: 15202 - type: CableApcExtension - components: - - pos: 37.5,26.5 - parent: 82 - type: Transform -- uid: 15203 - type: CableApcExtension - components: - - pos: 37.5,27.5 - parent: 82 - type: Transform -- uid: 15204 - type: CableApcExtension - components: - - pos: 37.5,28.5 - parent: 82 - type: Transform -- uid: 15205 - type: CableApcExtension - components: - - pos: 37.5,29.5 - parent: 82 - type: Transform -- uid: 15206 - type: CableApcExtension - components: - - pos: 37.5,30.5 - parent: 82 - type: Transform -- uid: 15207 - type: CableApcExtension - components: - - pos: 36.5,30.5 - parent: 82 - type: Transform -- uid: 15208 - type: CableApcExtension - components: - - pos: 35.5,30.5 - parent: 82 - type: Transform -- uid: 15209 - type: CableApcExtension - components: - - pos: 34.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15210 - type: CableApcExtension - components: - - pos: 34.5,29.5 - parent: 82 - type: Transform -- uid: 15211 - type: CableApcExtension - components: - - pos: 34.5,28.5 - parent: 82 - type: Transform -- uid: 15212 - type: CableApcExtension - components: - - pos: 34.5,27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15213 - type: CableApcExtension - components: - - pos: 34.5,26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15214 - type: CableApcExtension - components: - - pos: 34.5,25.5 - parent: 82 - type: Transform -- uid: 15215 - type: CableApcExtension - components: - - pos: 34.5,24.5 - parent: 82 - type: Transform -- uid: 15216 - type: CableApcExtension - components: - - pos: 34.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15217 - type: CableApcExtension - components: - - pos: 35.5,23.5 - parent: 82 - type: Transform -- uid: 15218 - type: CableApcExtension - components: - - pos: 36.5,23.5 - parent: 82 - type: Transform -- uid: 15219 - type: CableApcExtension - components: - - pos: 38.5,24.5 - parent: 82 - type: Transform -- uid: 15220 - type: CableApcExtension - components: - - pos: 39.5,24.5 - parent: 82 - type: Transform -- uid: 15221 - type: CableApcExtension - components: - - pos: 40.5,24.5 - parent: 82 - type: Transform -- uid: 15222 - type: CableApcExtension - components: - - pos: 41.5,24.5 - parent: 82 - type: Transform -- uid: 15223 - type: CableApcExtension - components: - - pos: 37.5,21.5 - parent: 82 - type: Transform -- uid: 15224 - type: CableApcExtension - components: - - pos: 37.5,20.5 - parent: 82 - type: Transform -- uid: 15225 - type: CableApcExtension - components: - - pos: 36.5,20.5 - parent: 82 - type: Transform -- uid: 15226 - type: CableApcExtension - components: - - pos: 35.5,20.5 - parent: 82 - type: Transform -- uid: 15227 - type: CableApcExtension - components: - - pos: 34.5,20.5 - parent: 82 - type: Transform -- uid: 15228 - type: CableApcExtension - components: - - pos: 33.5,20.5 - parent: 82 - type: Transform -- uid: 15229 - type: CableApcExtension - components: - - pos: 32.5,20.5 - parent: 82 - type: Transform -- uid: 15230 - type: CableApcExtension - components: - - pos: 32.5,19.5 - parent: 82 - type: Transform -- uid: 15231 - type: CableApcExtension - components: - - pos: 32.5,17.5 - parent: 82 - type: Transform -- uid: 15232 - type: CableApcExtension - components: - - pos: 32.5,16.5 - parent: 82 - type: Transform -- uid: 15233 - type: CableApcExtension - components: - - pos: 32.5,18.5 - parent: 82 - type: Transform -- uid: 15234 - type: CableApcExtension - components: - - pos: 32.5,15.5 - parent: 82 - type: Transform -- uid: 15235 - type: CableApcExtension - components: - - pos: 32.5,14.5 - parent: 82 - type: Transform -- uid: 15236 - type: CableApcExtension - components: - - pos: 32.5,13.5 - parent: 82 - type: Transform -- uid: 15237 - type: CableApcExtension - components: - - pos: 32.5,12.5 - parent: 82 - type: Transform -- uid: 15238 - type: CableApcExtension - components: - - pos: 32.5,21.5 - parent: 82 - type: Transform -- uid: 15239 - type: CableApcExtension - components: - - pos: 32.5,22.5 - parent: 82 - type: Transform -- uid: 15240 - type: CableApcExtension - components: - - pos: 32.5,23.5 - parent: 82 - type: Transform -- uid: 15241 - type: CableApcExtension - components: - - pos: 33.5,23.5 - parent: 82 - type: Transform -- uid: 15242 - type: CableApcExtension - components: - - pos: 32.5,24.5 - parent: 82 - type: Transform -- uid: 15243 - type: CableApcExtension - components: - - pos: 32.5,25.5 - parent: 82 - type: Transform -- uid: 15244 - type: CableApcExtension - components: - - pos: 32.5,26.5 - parent: 82 - type: Transform -- uid: 15245 - type: CableApcExtension - components: - - pos: 32.5,27.5 - parent: 82 - type: Transform -- uid: 15246 - type: CableApcExtension - components: - - pos: 32.5,28.5 - parent: 82 - type: Transform -- uid: 15247 - type: CableApcExtension - components: - - pos: 32.5,29.5 - parent: 82 - type: Transform -- uid: 15248 - type: CableApcExtension - components: - - pos: 32.5,30.5 - parent: 82 - type: Transform -- uid: 15249 - type: CableApcExtension - components: - - pos: 33.5,30.5 - parent: 82 - type: Transform -- uid: 15250 - type: CableApcExtension - components: - - pos: 38.5,30.5 - parent: 82 - type: Transform -- uid: 15251 - type: CableApcExtension - components: - - pos: 39.5,30.5 - parent: 82 - type: Transform -- uid: 15252 - type: CableApcExtension - components: - - pos: 40.5,30.5 - parent: 82 - type: Transform -- uid: 15253 - type: CableApcExtension - components: - - pos: 41.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15254 - type: CableApcExtension - components: - - pos: 42.5,30.5 - parent: 82 - type: Transform -- uid: 15255 - type: CableApcExtension - components: - - pos: 41.5,29.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15256 - type: CableApcExtension - components: - - pos: 41.5,28.5 - parent: 82 - type: Transform -- uid: 15257 - type: CableApcExtension - components: - - pos: 41.5,27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15258 - type: CableApcExtension - components: - - pos: 41.5,26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15259 - type: CableApcExtension - components: - - pos: 41.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15260 - type: CableApcExtension - components: - - pos: 41.5,23.5 - parent: 82 - type: Transform -- uid: 15261 - type: CableApcExtension - components: - - pos: 41.5,22.5 - parent: 82 - type: Transform -- uid: 15262 - type: CableApcExtension - components: - - pos: 41.5,21.5 - parent: 82 - type: Transform -- uid: 15263 - type: CableApcExtension - components: - - pos: 41.5,20.5 - parent: 82 - type: Transform -- uid: 15264 - type: CableApcExtension - components: - - pos: 40.5,20.5 - parent: 82 - type: Transform -- uid: 15265 - type: CableApcExtension - components: - - pos: 39.5,20.5 - parent: 82 - type: Transform -- uid: 15266 - type: CableApcExtension - components: - - pos: 38.5,20.5 - parent: 82 - type: Transform -- uid: 15267 - type: APCBasic - components: - - pos: 41.5,35.5 - parent: 82 - type: Transform -- uid: 15268 - type: WallReinforced - components: - - pos: 46.5,53.5 - parent: 82 - type: Transform -- uid: 15269 - type: AirlockExternalGlassLocked - components: - - pos: 45.5,53.5 - parent: 82 - type: Transform -- uid: 15270 - type: GasPipeBend - components: - - pos: -40.5,-26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15271 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15272 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15273 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15274 - type: Catwalk - components: - - pos: 36.5,68.5 - parent: 82 - type: Transform -- uid: 15275 - type: Catwalk - components: - - pos: 36.5,67.5 - parent: 82 - type: Transform -- uid: 15276 - type: Catwalk - components: - - pos: 36.5,66.5 - parent: 82 - type: Transform -- uid: 15277 - type: Catwalk - components: - - pos: 36.5,65.5 - parent: 82 - type: Transform -- uid: 15278 - type: Catwalk - components: - - pos: 36.5,64.5 - parent: 82 - type: Transform -- uid: 15279 - type: Catwalk - components: - - pos: 36.5,63.5 - parent: 82 - type: Transform -- uid: 15280 - type: Catwalk - components: - - pos: 36.5,62.5 - parent: 82 - type: Transform -- uid: 15281 - type: Catwalk - components: - - pos: 36.5,61.5 - parent: 82 - type: Transform -- uid: 15282 - type: Catwalk - components: - - pos: 36.5,60.5 - parent: 82 - type: Transform -- uid: 15283 - type: Catwalk - components: - - pos: 37.5,60.5 - parent: 82 - type: Transform -- uid: 15284 - type: Catwalk - components: - - pos: 38.5,60.5 - parent: 82 - type: Transform -- uid: 15285 - type: Catwalk - components: - - pos: 39.5,60.5 - parent: 82 - type: Transform -- uid: 15286 - type: Catwalk - components: - - pos: 40.5,60.5 - parent: 82 - type: Transform -- uid: 15287 - type: Catwalk - components: - - pos: 41.5,60.5 - parent: 82 - type: Transform -- uid: 15288 - type: Catwalk - components: - - pos: 42.5,60.5 - parent: 82 - type: Transform -- uid: 15289 - type: Catwalk - components: - - pos: 43.5,60.5 - parent: 82 - type: Transform -- uid: 15290 - type: Catwalk - components: - - pos: 44.5,60.5 - parent: 82 - type: Transform -- uid: 15291 - type: Catwalk - components: - - pos: 45.5,60.5 - parent: 82 - type: Transform -- uid: 15292 - type: Catwalk - components: - - pos: 45.5,59.5 - parent: 82 - type: Transform -- uid: 15293 - type: Catwalk - components: - - pos: 45.5,58.5 - parent: 82 - type: Transform -- uid: 15294 - type: Catwalk - components: - - pos: 45.5,57.5 - parent: 82 - type: Transform -- uid: 15295 - type: Catwalk - components: - - pos: 45.5,56.5 - parent: 82 - type: Transform -- uid: 15296 - type: Catwalk - components: - - pos: 45.5,55.5 - parent: 82 - type: Transform -- uid: 15297 - type: Catwalk - components: - - pos: 45.5,54.5 - parent: 82 - type: Transform -- uid: 15298 - type: AsteroidRock - components: - - pos: 37.5,66.5 - parent: 82 - type: Transform -- uid: 15299 - type: AsteroidRock - components: - - pos: 37.5,65.5 - parent: 82 - type: Transform -- uid: 15300 - type: AsteroidRock - components: - - pos: 37.5,64.5 - parent: 82 - type: Transform -- uid: 15301 - type: AsteroidRock - components: - - pos: 37.5,63.5 - parent: 82 - type: Transform -- uid: 15302 - type: AsteroidRock - components: - - pos: 37.5,62.5 - parent: 82 - type: Transform -- uid: 15303 - type: AsteroidRock - components: - - pos: 37.5,61.5 - parent: 82 - type: Transform -- uid: 15304 - type: AsteroidRock - components: - - pos: 38.5,59.5 - parent: 82 - type: Transform -- uid: 15305 - type: AsteroidRock - components: - - pos: 38.5,61.5 - parent: 82 - type: Transform -- uid: 15306 - type: AsteroidRock - components: - - pos: 39.5,61.5 - parent: 82 - type: Transform -- uid: 15307 - type: AsteroidRock - components: - - pos: 40.5,61.5 - parent: 82 - type: Transform -- uid: 15308 - type: AsteroidRock - components: - - pos: 41.5,61.5 - parent: 82 - type: Transform -- uid: 15309 - type: AsteroidRock - components: - - pos: 42.5,61.5 - parent: 82 - type: Transform -- uid: 15310 - type: AsteroidRock - components: - - pos: 43.5,61.5 - parent: 82 - type: Transform -- uid: 15311 - type: AsteroidRock - components: - - pos: 42.5,59.5 - parent: 82 - type: Transform -- uid: 15312 - type: AsteroidRock - components: - - pos: 43.5,59.5 - parent: 82 - type: Transform -- uid: 15313 - type: AsteroidRock - components: - - pos: 44.5,59.5 - parent: 82 - type: Transform -- uid: 15314 - type: AsteroidRock - components: - - pos: 44.5,61.5 - parent: 82 - type: Transform -- uid: 15315 - type: Catwalk - components: - - pos: 45.5,61.5 - parent: 82 - type: Transform -- uid: 15316 - type: Catwalk - components: - - pos: 45.5,62.5 - parent: 82 - type: Transform -- uid: 15317 - type: Catwalk - components: - - pos: 45.5,63.5 - parent: 82 - type: Transform -- uid: 15318 - type: AsteroidRock - components: - - pos: 39.5,64.5 - parent: 82 - type: Transform -- uid: 15319 - type: AsteroidRock - components: - - pos: 39.5,63.5 - parent: 82 - type: Transform -- uid: 15320 - type: AsteroidRock - components: - - pos: 38.5,64.5 - parent: 82 - type: Transform -- uid: 15321 - type: AsteroidRock - components: - - pos: 40.5,64.5 - parent: 82 - type: Transform -- uid: 15322 - type: AsteroidRock - components: - - pos: 41.5,64.5 - parent: 82 - type: Transform -- uid: 15323 - type: AsteroidRock - components: - - pos: 42.5,63.5 - parent: 82 - type: Transform -- uid: 15324 - type: AsteroidRock - components: - - pos: 38.5,63.5 - parent: 82 - type: Transform -- uid: 15325 - type: AsteroidRock - components: - - pos: 38.5,62.5 - parent: 82 - type: Transform -- uid: 15326 - type: AsteroidRock - components: - - pos: 40.5,62.5 - parent: 82 - type: Transform -- uid: 15327 - type: AsteroidRock - components: - - pos: 42.5,62.5 - parent: 82 - type: Transform -- uid: 15328 - type: AsteroidRock - components: - - pos: 41.5,62.5 - parent: 82 - type: Transform -- uid: 15329 - type: AsteroidRock - components: - - pos: 42.5,64.5 - parent: 82 - type: Transform -- uid: 15330 - type: AsteroidRock - components: - - pos: 40.5,65.5 - parent: 82 - type: Transform -- uid: 15331 - type: AsteroidRock - components: - - pos: 39.5,65.5 - parent: 82 - type: Transform -- uid: 15332 - type: AsteroidRock - components: - - pos: 39.5,66.5 - parent: 82 - type: Transform -- uid: 15333 - type: AsteroidRock - components: - - pos: 43.5,62.5 - parent: 82 - type: Transform -- uid: 15334 - type: AsteroidRock - components: - - pos: 44.5,62.5 - parent: 82 - type: Transform -- uid: 15335 - type: AsteroidRock - components: - - pos: 43.5,63.5 - parent: 82 - type: Transform -- uid: 15336 - type: AsteroidRock - components: - - pos: 43.5,64.5 - parent: 82 - type: Transform -- uid: 15337 - type: AsteroidRock - components: - - pos: 35.5,66.5 - parent: 82 - type: Transform -- uid: 15338 - type: AsteroidRock - components: - - pos: 35.5,67.5 - parent: 82 - type: Transform -- uid: 15339 - type: AsteroidRock - components: - - pos: 35.5,62.5 - parent: 82 - type: Transform -- uid: 15340 - type: AsteroidRock - components: - - pos: 46.5,61.5 - parent: 82 - type: Transform -- uid: 15341 - type: AsteroidRock - components: - - pos: 46.5,60.5 - parent: 82 - type: Transform -- uid: 15342 - type: AsteroidRock - components: - - pos: 46.5,59.5 - parent: 82 - type: Transform -- uid: 15343 - type: AsteroidRock - components: - - pos: 46.5,58.5 - parent: 82 - type: Transform -- uid: 15344 - type: AsteroidRock - components: - - pos: 46.5,57.5 - parent: 82 - type: Transform -- uid: 15345 - type: AsteroidRock - components: - - pos: 46.5,55.5 - parent: 82 - type: Transform -- uid: 15346 - type: AsteroidRock - components: - - pos: 46.5,54.5 - parent: 82 - type: Transform -- uid: 15347 - type: AsteroidRock - components: - - pos: 47.5,56.5 - parent: 82 - type: Transform -- uid: 15348 - type: AsteroidRock - components: - - pos: 47.5,57.5 - parent: 82 - type: Transform -- uid: 15349 - type: AsteroidRock - components: - - pos: 47.5,58.5 - parent: 82 - type: Transform -- uid: 15350 - type: AsteroidRock - components: - - pos: 47.5,59.5 - parent: 82 - type: Transform -- uid: 15351 - type: AsteroidRock - components: - - pos: 47.5,60.5 - parent: 82 - type: Transform -- uid: 15352 - type: AsteroidRock - components: - - pos: 47.5,55.5 - parent: 82 - type: Transform -- uid: 15353 - type: AsteroidRock - components: - - pos: 47.5,54.5 - parent: 82 - type: Transform -- uid: 15354 - type: AsteroidRock - components: - - pos: 47.5,53.5 - parent: 82 - type: Transform -- uid: 15355 - type: AsteroidRock - components: - - pos: 48.5,55.5 - parent: 82 - type: Transform -- uid: 15356 - type: AsteroidRock - components: - - pos: 48.5,54.5 - parent: 82 - type: Transform -- uid: 15357 - type: AsteroidRock - components: - - pos: 48.5,53.5 - parent: 82 - type: Transform -- uid: 15358 - type: AsteroidRock - components: - - pos: 49.5,54.5 - parent: 82 - type: Transform -- uid: 15359 - type: AsteroidRock - components: - - pos: 49.5,53.5 - parent: 82 - type: Transform -- uid: 15360 - type: AsteroidRock - components: - - pos: 50.5,50.5 - parent: 82 - type: Transform -- uid: 15361 - type: AsteroidRock - components: - - pos: 52.5,48.5 - parent: 82 - type: Transform -- uid: 15362 - type: AsteroidRock - components: - - pos: 50.5,48.5 - parent: 82 - type: Transform -- uid: 15363 - type: AsteroidRock - components: - - pos: 51.5,44.5 - parent: 82 - type: Transform -- uid: 15364 - type: AsteroidRock - components: - - pos: 50.5,43.5 - parent: 82 - type: Transform -- uid: 15365 - type: AsteroidRock - components: - - pos: 49.5,42.5 - parent: 82 - type: Transform -- uid: 15366 - type: AsteroidRock - components: - - pos: 50.5,41.5 - parent: 82 - type: Transform -- uid: 15367 - type: AsteroidRock - components: - - pos: 52.5,43.5 - parent: 82 - type: Transform -- uid: 15368 - type: AsteroidRock - components: - - pos: 52.5,46.5 - parent: 82 - type: Transform -- uid: 15369 - type: AsteroidRock - components: - - pos: 50.5,47.5 - parent: 82 - type: Transform -- uid: 15370 - type: AsteroidRock - components: - - pos: 51.5,48.5 - parent: 82 - type: Transform -- uid: 15371 - type: AsteroidRock - components: - - pos: 51.5,47.5 - parent: 82 - type: Transform -- uid: 15372 - type: AsteroidRock - components: - - pos: 52.5,47.5 - parent: 82 - type: Transform -- uid: 15373 - type: AsteroidRock - components: - - pos: 51.5,45.5 - parent: 82 - type: Transform -- uid: 15374 - type: AsteroidRock - components: - - pos: 51.5,46.5 - parent: 82 - type: Transform -- uid: 15375 - type: AsteroidRock - components: - - pos: 50.5,45.5 - parent: 82 - type: Transform -- uid: 15376 - type: AsteroidRock - components: - - pos: 50.5,46.5 - parent: 82 - type: Transform -- uid: 15377 - type: AsteroidRock - components: - - pos: 50.5,44.5 - parent: 82 - type: Transform -- uid: 15378 - type: AsteroidRock - components: - - pos: 49.5,44.5 - parent: 82 - type: Transform -- uid: 15379 - type: AsteroidRock - components: - - pos: 49.5,43.5 - parent: 82 - type: Transform -- uid: 15380 - type: AsteroidRock - components: - - pos: 51.5,49.5 - parent: 82 - type: Transform -- uid: 15381 - type: AsteroidRock - components: - - pos: 49.5,50.5 - parent: 82 - type: Transform -- uid: 15382 - type: AsteroidRock - components: - - pos: 49.5,51.5 - parent: 82 - type: Transform -- uid: 15383 - type: AsteroidRock - components: - - pos: 49.5,52.5 - parent: 82 - type: Transform -- uid: 15384 - type: WallSolid - components: - - pos: 73.5,5.5 - parent: 82 - type: Transform -- uid: 15385 - type: AsteroidRock - components: - - pos: 49.5,55.5 - parent: 82 - type: Transform -- uid: 15386 - type: AsteroidRock - components: - - pos: 48.5,57.5 - parent: 82 - type: Transform -- uid: 15387 - type: AsteroidRock - components: - - pos: 38.5,66.5 - parent: 82 - type: Transform -- uid: 15388 - type: WallSolid - components: - - pos: 71.5,5.5 - parent: 82 - type: Transform -- uid: 15389 - type: WallSolid - components: - - pos: 73.5,6.5 - parent: 82 - type: Transform -- uid: 15390 - type: AsteroidRock - components: - - pos: 52.5,50.5 - parent: 82 - type: Transform -- uid: 15391 - type: AsteroidRock - components: - - pos: 52.5,49.5 - parent: 82 - type: Transform -- uid: 15392 - type: AsteroidRock - components: - - pos: 53.5,47.5 - parent: 82 - type: Transform -- uid: 15393 - type: AsteroidRock - components: - - pos: 53.5,46.5 - parent: 82 - type: Transform -- uid: 15394 - type: AsteroidRock - components: - - pos: 50.5,42.5 - parent: 82 - type: Transform -- uid: 15395 - type: AsteroidRock - components: - - pos: 51.5,41.5 - parent: 82 - type: Transform -- uid: 15396 - type: AsteroidRock - components: - - pos: 52.5,42.5 - parent: 82 - type: Transform -- uid: 15397 - type: AsteroidRock - components: - - pos: 52.5,45.5 - parent: 82 - type: Transform -- uid: 15398 - type: AsteroidRock - components: - - pos: 52.5,44.5 - parent: 82 - type: Transform -- uid: 15399 - type: AsteroidRock - components: - - pos: 51.5,50.5 - parent: 82 - type: Transform -- uid: 15400 - type: GasVentScrubber - components: - - pos: -44.5,-24.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15401 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -44.5,-27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15402 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15403 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15404 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15405 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15406 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15407 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15408 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15409 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15410 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -35.5,-31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15411 - type: GasVentScrubber - components: - - pos: -33.5,-31.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15412 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15413 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15414 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15415 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15416 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15417 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -49.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15418 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -49.5,-29.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15419 - type: GasVentPump - components: - - pos: -49.5,-28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15420 - type: GasPipeTJunction - components: - - pos: -43.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15421 - type: GasPipeTJunction - components: - - pos: -48.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15422 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15423 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15424 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15425 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15426 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15427 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -54.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15428 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-31.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15429 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -54.5,-30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15430 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -54.5,-29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15431 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -54.5,-28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15432 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-27.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 15433 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -54.5,-26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15434 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -54.5,-25.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15435 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -54.5,-24.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15436 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -54.5,-23.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15437 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-22.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15438 - type: GasPipeBend - components: - - pos: -50.5,-22.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15439 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-22.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15440 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-22.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15441 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-22.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15442 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-23.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15443 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-24.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15444 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-24.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15445 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-23.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15446 - type: GasPipeStraight - components: - - pos: -48.5,-22.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15447 - type: GasPipeBend - components: - - pos: -48.5,-21.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15448 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-21.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15449 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-21.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15450 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-21.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15451 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-21.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15452 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-21.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15453 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-21.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15454 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-21.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15455 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-22.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15456 - type: AirlockMaintMedLocked - components: - - pos: -55.5,-23.5 - parent: 82 - type: Transform -- uid: 15457 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -48.5,-24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 15458 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-22.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15459 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: -48.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15460 - type: GasPipeStraight - components: - - pos: -56.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15461 - type: GasPipeStraight - components: - - pos: -56.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15462 - type: GasPipeStraight - components: - - pos: -56.5,-25.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15463 - type: GasPipeStraight - components: - - pos: -56.5,-26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15464 - type: GasPipeStraight - components: - - pos: -56.5,-27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15465 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15466 - type: GasPipeStraight - components: - - pos: -56.5,-29.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15467 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -56.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15468 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15469 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15470 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15471 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15472 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15473 - type: GasPipeTJunction - components: - - pos: -50.5,-30.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 15474 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15475 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-31.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15476 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15477 - type: TableGlass - components: - - rot: 3.141592653589793 rad - pos: -49.5,-24.5 - parent: 82 - type: Transform -- uid: 15478 - type: TableGlass - components: - - rot: 3.141592653589793 rad - pos: -50.5,-24.5 - parent: 82 - type: Transform -- uid: 15479 - type: Fireplace - components: - - pos: -50.5,-21.5 - parent: 82 - type: Transform -- uid: 15480 - type: ComfyChair - components: - - pos: -50.5,-23.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 15481 - type: ComfyChair - components: - - pos: -49.5,-23.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 15482 - type: OxygenCanister - components: - - pos: -51.5,-21.5 - parent: 82 - type: Transform -- uid: 15483 - type: NitrogenCanister - components: - - pos: -48.5,-21.5 - parent: 82 - type: Transform -- uid: 15484 - type: ClosetWallAtmospherics - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-22.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15485 - type: GasAnalyzer - components: - - pos: -49.578236,-21.34969 - parent: 82 - type: Transform -- uid: 15486 - type: ClothingHeadHatBunny - components: - - pos: -49.443916,-24.373142 - parent: 82 - type: Transform -- uid: 15487 - type: ClothingUnderSocksCoder - components: - - pos: -49.943916,-24.40092 - parent: 82 - type: Transform -- uid: 15488 - type: ClothingEyesGlassesSunglasses - components: - - pos: -50.499474,-24.3037 - parent: 82 - type: Transform -- uid: 15489 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15490 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15491 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15492 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15493 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-32.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15494 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -43.5,-33.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15495 - type: CrateFilledSpawner - components: - - pos: -64.5,-45.5 - parent: 82 - type: Transform -- uid: 15496 - type: CableApcStack - components: - - pos: -63.623222,-42.277126 - parent: 82 - type: Transform -- uid: 15497 - type: GeneratorPlasma - components: - - pos: -63.5,-45.5 - parent: 82 - type: Transform -- uid: 15498 - type: SubstationMachineCircuitboard - components: - - pos: -63.512108,-42.527126 - parent: 82 - type: Transform -- uid: 15499 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,-33.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15500 - type: GasThermoMachineFreezer - components: - - pos: -49.5,-36.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor -- uid: 15501 - type: Rack - components: - - pos: -51.5,-34.5 - parent: 82 - type: Transform -- uid: 15502 - type: CryoPod - components: - - pos: -47.5,-36.5 - parent: 82 - type: Transform -- uid: 15503 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -43.5,-34.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15504 - type: hydroponicsSoil - components: - - pos: -58.5,-43.5 - parent: 82 - type: Transform -- uid: 15505 - type: hydroponicsSoil - components: - - pos: -59.5,-43.5 - parent: 82 - type: Transform -- uid: 15506 - type: hydroponicsSoil - components: - - pos: -57.5,-43.5 - parent: 82 - type: Transform -- uid: 15507 - type: CannabisSeeds - components: - - pos: -60.6369,-42.337685 - parent: 82 - type: Transform -- uid: 15508 - type: NettleSeeds - components: - - pos: -60.27579,-42.657127 - parent: 82 - type: Transform -- uid: 15509 - type: PotatoSeeds - components: - - pos: -60.65079,-42.796017 - parent: 82 - type: Transform -- uid: 15510 - type: HydroponicsToolMiniHoe - components: - - pos: -58.595238,-41.323795 - parent: 82 - type: Transform -- uid: 15511 - type: HydroponicsToolSpade - components: - - pos: -58.52579,-41.296017 - parent: 82 - type: Transform -- uid: 15512 - type: WindowDirectional - components: - - pos: -58.5,-41.5 - parent: 82 - type: Transform -- uid: 15513 - type: WindowDirectional - components: - - pos: -56.5,-41.5 - parent: 82 - type: Transform -- uid: 15514 - type: ShardGlass - components: - - pos: -57.66468,-41.559906 - parent: 82 - type: Transform - - tags: - - Trash - type: Tag -- uid: 15515 - type: Table - components: - - pos: -58.5,-41.5 - parent: 82 - type: Transform -- uid: 15516 - type: Table - components: - - pos: -57.5,-41.5 - parent: 82 - type: Transform -- uid: 15517 - type: Table - components: - - pos: -56.5,-41.5 - parent: 82 - type: Transform -- uid: 15518 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15519 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15520 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-36.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15521 - type: GasPipeStraight - components: - - pos: -39.5,-37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15522 - type: MaintenanceToolSpawner - components: - - pos: -62.5,-45.5 - parent: 82 - type: Transform -- uid: 15523 - type: MaintenanceFluffSpawner - components: - - pos: -65.5,-42.5 - parent: 82 - type: Transform -- uid: 15524 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -64.5,-42.5 - parent: 82 - type: Transform -- uid: 15525 - type: ToiletDirtyWater - components: - - pos: -65.5,-38.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 15526 - type: Barricade - components: - - pos: -63.5,-39.5 - parent: 82 - type: Transform -- uid: 15527 - type: MaintenanceFluffSpawner - components: - - pos: -65.5,-38.5 - parent: 82 - type: Transform -- uid: 15528 - type: ClosetFireFilled - components: - - pos: -57.5,-35.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15529 - type: ClosetEmergencyFilledRandom - components: - - pos: -58.5,-35.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15530 - type: ClosetMaintenanceFilledRandom - components: - - pos: -59.5,-36.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15531 - type: OxygenCanister - components: - - pos: -58.5,-30.5 - parent: 82 - type: Transform -- uid: 15532 - type: NitrogenCanister - components: - - pos: -58.5,-31.5 - parent: 82 - type: Transform -- uid: 15533 - type: Rack - components: - - pos: -58.5,-32.5 - parent: 82 - type: Transform -- uid: 15534 - type: MaintenanceToolSpawner - components: - - pos: -58.5,-32.5 - parent: 82 - type: Transform -- uid: 15535 - type: ClosetFireFilled - components: - - pos: -53.5,-42.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15536 - type: ClosetEmergencyFilledRandom - components: - - pos: -53.5,-43.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15537 - type: Rack - components: - - pos: -53.5,-44.5 - parent: 82 - type: Transform -- uid: 15538 - type: MaintenanceFluffSpawner - components: - - pos: -53.5,-44.5 - parent: 82 - type: Transform -- uid: 15539 - type: Chair - components: - - pos: -52.5,-39.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 15540 - type: Table - components: - - pos: -52.5,-40.5 - parent: 82 - type: Transform -- uid: 15541 - type: Rack - components: - - pos: -53.5,-40.5 - parent: 82 - type: Transform -- uid: 15542 - type: MaintenanceToolSpawner - components: - - pos: -53.5,-40.5 - parent: 82 - type: Transform -- uid: 15543 - type: RandomFoodBakedSingle - components: - - pos: -52.5,-40.5 - parent: 82 - type: Transform -- uid: 15544 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -39.5,-38.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15545 - type: WallReinforced - components: - - pos: -53.5,-12.5 - parent: 82 - type: Transform -- uid: 15546 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-22.5 - parent: 82 - type: Transform -- uid: 15547 - type: WeaponLaserCarbine - components: - - pos: 52.49978,-20.397121 - parent: 82 - type: Transform -- uid: 15548 - type: WallReinforced - components: - - pos: -48.5,-12.5 - parent: 82 - type: Transform -- uid: 15549 - type: WallReinforced - components: - - pos: -49.5,-12.5 - parent: 82 - type: Transform -- uid: 15550 - type: WallSolid - components: - - pos: 30.5,56.5 - parent: 82 - type: Transform -- uid: 15551 - type: WallReinforced - components: - - pos: -45.5,-12.5 - parent: 82 - type: Transform -- uid: 15552 - type: WallReinforced - components: - - pos: -46.5,-12.5 - parent: 82 - type: Transform -- uid: 15553 - type: ClothingHeadsetMining - components: - - pos: 51.491062,43.22173 - parent: 82 - type: Transform -- uid: 15554 - type: CableMV - components: - - pos: 20.5,62.5 - parent: 82 - type: Transform -- uid: 15555 - type: CableMV - components: - - pos: 20.5,64.5 - parent: 82 - type: Transform -- uid: 15556 - type: GasPipeTJunction - components: - - pos: -11.5,45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15557 - type: GasPipeTJunction - components: - - pos: -13.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15558 - type: GasPipeTJunction - components: - - pos: -26.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15559 - type: GasPipeTJunction - components: - - pos: -25.5,29.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15560 - type: CableMV - components: - - pos: 40.5,34.5 - parent: 82 - type: Transform -- uid: 15561 - type: Catwalk - components: - - pos: 27.5,20.5 - parent: 82 - type: Transform -- uid: 15562 - type: APCBasic - components: - - pos: -6.5,3.5 - parent: 82 - type: Transform -- uid: 15563 - type: CableApcExtension - components: - - pos: -6.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15564 - type: CableApcExtension - components: - - pos: -6.5,2.5 - parent: 82 - type: Transform -- uid: 15565 - type: CableApcExtension - components: - - pos: -6.5,1.5 - parent: 82 - type: Transform -- uid: 15566 - type: CableApcExtension - components: - - pos: -5.5,1.5 - parent: 82 - type: Transform -- uid: 15567 - type: CableApcExtension - components: - - pos: -7.5,1.5 - parent: 82 - type: Transform -- uid: 15568 - type: CableApcExtension - components: - - pos: -8.5,1.5 - parent: 82 - type: Transform -- uid: 15569 - type: CableApcExtension - components: - - pos: -9.5,1.5 - parent: 82 - type: Transform -- uid: 15570 - type: CableApcExtension - components: - - pos: -10.5,1.5 - parent: 82 - type: Transform -- uid: 15571 - type: CableApcExtension - components: - - pos: -11.5,1.5 - parent: 82 - type: Transform -- uid: 15572 - type: CableApcExtension - components: - - pos: -12.5,1.5 - parent: 82 - type: Transform -- uid: 15573 - type: CableApcExtension - components: - - pos: -12.5,0.5 - parent: 82 - type: Transform -- uid: 15574 - type: CableApcExtension - components: - - pos: -12.5,-0.5 - parent: 82 - type: Transform -- uid: 15575 - type: CableApcExtension - components: - - pos: -12.5,-1.5 - parent: 82 - type: Transform -- uid: 15576 - type: CableApcExtension - components: - - pos: -12.5,-2.5 - parent: 82 - type: Transform -- uid: 15577 - type: CableApcExtension - components: - - pos: -12.5,-3.5 - parent: 82 - type: Transform -- uid: 15578 - type: CableApcExtension - components: - - pos: -12.5,-4.5 - parent: 82 - type: Transform -- uid: 15579 - type: CableApcExtension - components: - - pos: -11.5,-4.5 - parent: 82 - type: Transform -- uid: 15580 - type: CableApcExtension - components: - - pos: -10.5,-4.5 - parent: 82 - type: Transform -- uid: 15581 - type: CableApcExtension - components: - - pos: 16.5,-4.5 - parent: 82 - type: Transform -- uid: 15582 - type: CableApcExtension - components: - - pos: 17.5,-4.5 - parent: 82 - type: Transform -- uid: 15583 - type: CableApcExtension - components: - - pos: -9.5,-4.5 - parent: 82 - type: Transform -- uid: 15584 - type: CableApcExtension - components: - - pos: -8.5,-4.5 - parent: 82 - type: Transform -- uid: 15585 - type: CableApcExtension - components: - - pos: -7.5,-4.5 - parent: 82 - type: Transform -- uid: 15586 - type: CableApcExtension - components: - - pos: -6.5,-4.5 - parent: 82 - type: Transform -- uid: 15587 - type: CableApcExtension - components: - - pos: -5.5,-4.5 - parent: 82 - type: Transform -- uid: 15588 - type: CableApcExtension - components: - - pos: -4.5,-4.5 - parent: 82 - type: Transform -- uid: 15589 - type: CableApcExtension - components: - - pos: -3.5,-4.5 - parent: 82 - type: Transform -- uid: 15590 - type: CableApcExtension - components: - - pos: -2.5,-4.5 - parent: 82 - type: Transform -- uid: 15591 - type: CableApcExtension - components: - - pos: -1.5,-4.5 - parent: 82 - type: Transform -- uid: 15592 - type: CableApcExtension - components: - - pos: -0.5,-4.5 - parent: 82 - type: Transform -- uid: 15593 - type: CableApcExtension - components: - - pos: 0.5,-4.5 - parent: 82 - type: Transform -- uid: 15594 - type: CableApcExtension - components: - - pos: 1.5,-4.5 - parent: 82 - type: Transform -- uid: 15595 - type: CableApcExtension - components: - - pos: 2.5,-4.5 - parent: 82 - type: Transform -- uid: 15596 - type: CableApcExtension - components: - - pos: 3.5,-4.5 - parent: 82 - type: Transform -- uid: 15597 - type: CableApcExtension - components: - - pos: 4.5,-4.5 - parent: 82 - type: Transform -- uid: 15598 - type: CableApcExtension - components: - - pos: 5.5,-4.5 - parent: 82 - type: Transform -- uid: 15599 - type: CableApcExtension - components: - - pos: 6.5,-4.5 - parent: 82 - type: Transform -- uid: 15600 - type: CableApcExtension - components: - - pos: 7.5,-4.5 - parent: 82 - type: Transform -- uid: 15601 - type: CableApcExtension - components: - - pos: 8.5,-4.5 - parent: 82 - type: Transform -- uid: 15602 - type: CableApcExtension - components: - - pos: 9.5,-4.5 - parent: 82 - type: Transform -- uid: 15603 - type: CableApcExtension - components: - - pos: 10.5,-4.5 - parent: 82 - type: Transform -- uid: 15604 - type: CableApcExtension - components: - - pos: 11.5,-4.5 - parent: 82 - type: Transform -- uid: 15605 - type: CableApcExtension - components: - - pos: 12.5,-4.5 - parent: 82 - type: Transform -- uid: 15606 - type: CableApcExtension - components: - - pos: 13.5,-4.5 - parent: 82 - type: Transform -- uid: 15607 - type: CableApcExtension - components: - - pos: 14.5,-4.5 - parent: 82 - type: Transform -- uid: 15608 - type: CableApcExtension - components: - - pos: 15.5,-4.5 - parent: 82 - type: Transform -- uid: 15609 - type: CableApcExtension - components: - - pos: 17.5,-3.5 - parent: 82 - type: Transform -- uid: 15610 - type: CableApcExtension - components: - - pos: 17.5,-2.5 - parent: 82 - type: Transform -- uid: 15611 - type: CableApcExtension - components: - - pos: 16.5,-2.5 - parent: 82 - type: Transform -- uid: 15612 - type: CableApcExtension - components: - - pos: 15.5,-2.5 - parent: 82 - type: Transform -- uid: 15613 - type: CableApcExtension - components: - - pos: 14.5,-2.5 - parent: 82 - type: Transform -- uid: 15614 - type: CableApcExtension - components: - - pos: 13.5,-2.5 - parent: 82 - type: Transform -- uid: 15615 - type: CableApcExtension - components: - - pos: 12.5,-2.5 - parent: 82 - type: Transform -- uid: 15616 - type: CableApcExtension - components: - - pos: 11.5,-2.5 - parent: 82 - type: Transform -- uid: 15617 - type: CableApcExtension - components: - - pos: 10.5,-2.5 - parent: 82 - type: Transform -- uid: 15618 - type: CableApcExtension - components: - - pos: 9.5,-2.5 - parent: 82 - type: Transform -- uid: 15619 - type: CableApcExtension - components: - - pos: 8.5,-2.5 - parent: 82 - type: Transform -- uid: 15620 - type: CableApcExtension - components: - - pos: 7.5,-2.5 - parent: 82 - type: Transform -- uid: 15621 - type: CableApcExtension - components: - - pos: 6.5,-2.5 - parent: 82 - type: Transform -- uid: 15622 - type: CableApcExtension - components: - - pos: 5.5,-2.5 - parent: 82 - type: Transform -- uid: 15623 - type: CableApcExtension - components: - - pos: 4.5,-2.5 - parent: 82 - type: Transform -- uid: 15624 - type: CableApcExtension - components: - - pos: 3.5,-2.5 - parent: 82 - type: Transform -- uid: 15625 - type: CableApcExtension - components: - - pos: 2.5,-2.5 - parent: 82 - type: Transform -- uid: 15626 - type: CableApcExtension - components: - - pos: 1.5,-2.5 - parent: 82 - type: Transform -- uid: 15627 - type: CableApcExtension - components: - - pos: 0.5,-2.5 - parent: 82 - type: Transform -- uid: 15628 - type: CableApcExtension - components: - - pos: -0.5,-2.5 - parent: 82 - type: Transform -- uid: 15629 - type: CableApcExtension - components: - - pos: -1.5,-2.5 - parent: 82 - type: Transform -- uid: 15630 - type: CableApcExtension - components: - - pos: -2.5,-2.5 - parent: 82 - type: Transform -- uid: 15631 - type: CableApcExtension - components: - - pos: -3.5,-2.5 - parent: 82 - type: Transform -- uid: 15632 - type: CableApcExtension - components: - - pos: -4.5,-2.5 - parent: 82 - type: Transform -- uid: 15633 - type: CableApcExtension - components: - - pos: -5.5,-2.5 - parent: 82 - type: Transform -- uid: 15634 - type: CableApcExtension - components: - - pos: -6.5,-2.5 - parent: 82 - type: Transform -- uid: 15635 - type: CableApcExtension - components: - - pos: -7.5,-2.5 - parent: 82 - type: Transform -- uid: 15636 - type: CableApcExtension - components: - - pos: -8.5,-2.5 - parent: 82 - type: Transform -- uid: 15637 - type: CableApcExtension - components: - - pos: -9.5,-2.5 - parent: 82 - type: Transform -- uid: 15638 - type: CableApcExtension - components: - - pos: -10.5,-2.5 - parent: 82 - type: Transform -- uid: 15639 - type: CableApcExtension - components: - - pos: -11.5,-2.5 - parent: 82 - type: Transform -- uid: 15640 - type: CableApcExtension - components: - - pos: -12.5,-2.5 - parent: 82 - type: Transform -- uid: 15641 - type: CableApcExtension - components: - - pos: -8.5,-1.5 - parent: 82 - type: Transform -- uid: 15642 - type: CableApcExtension - components: - - pos: -8.5,-0.5 - parent: 82 - type: Transform -- uid: 15643 - type: CableApcExtension - components: - - pos: -4.5,-1.5 - parent: 82 - type: Transform -- uid: 15644 - type: CableApcExtension - components: - - pos: -4.5,-0.5 - parent: 82 - type: Transform -- uid: 15645 - type: CableApcExtension - components: - - pos: -6.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15646 - type: CableApcExtension - components: - - pos: -7.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15647 - type: CableApcExtension - components: - - pos: -8.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15648 - type: CableApcExtension - components: - - pos: -9.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15649 - type: CableApcExtension - components: - - pos: -10.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15650 - type: CableApcExtension - components: - - pos: -11.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15651 - type: CableApcExtension - components: - - pos: -12.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15652 - type: CableApcExtension - components: - - pos: -13.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15653 - type: CableApcExtension - components: - - pos: -14.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15654 - type: CableApcExtension - components: - - pos: -15.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15655 - type: CableApcExtension - components: - - pos: -16.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15656 - type: CableApcExtension - components: - - pos: -16.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15657 - type: CableApcExtension - components: - - pos: -16.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15658 - type: CableApcExtension - components: - - pos: -16.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15659 - type: CableApcExtension - components: - - pos: -16.5,0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15660 - type: CableApcExtension - components: - - pos: -16.5,-0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15661 - type: CableApcExtension - components: - - pos: -15.5,-0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15662 - type: CableApcExtension - components: - - pos: -14.5,-0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15663 - type: CableApcExtension - components: - - pos: -14.5,-1.5 - parent: 82 - type: Transform -- uid: 15664 - type: CableApcExtension - components: - - pos: -14.5,-2.5 - parent: 82 - type: Transform -- uid: 15665 - type: CableApcExtension - components: - - pos: -13.5,-2.5 - parent: 82 - type: Transform -- uid: 15666 - type: CableApcExtension - components: - - pos: -15.5,-2.5 - parent: 82 - type: Transform -- uid: 15667 - type: CableApcExtension - components: - - pos: -16.5,-2.5 - parent: 82 - type: Transform -- uid: 15668 - type: CableApcExtension - components: - - pos: -17.5,-2.5 - parent: 82 - type: Transform -- uid: 15669 - type: CableApcExtension - components: - - pos: -17.5,-3.5 - parent: 82 - type: Transform -- uid: 15670 - type: CableApcExtension - components: - - pos: -17.5,-4.5 - parent: 82 - type: Transform -- uid: 15671 - type: CableApcExtension - components: - - pos: -16.5,-4.5 - parent: 82 - type: Transform -- uid: 15672 - type: CableApcExtension - components: - - pos: -15.5,-4.5 - parent: 82 - type: Transform -- uid: 15673 - type: CableApcExtension - components: - - pos: -14.5,-4.5 - parent: 82 - type: Transform -- uid: 15674 - type: CableApcExtension - components: - - pos: -13.5,-4.5 - parent: 82 - type: Transform -- uid: 15675 - type: CableApcExtension - components: - - pos: -10.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15676 - type: CableApcExtension - components: - - pos: -10.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15677 - type: CableApcExtension - components: - - pos: -10.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15678 - type: CableApcExtension - components: - - pos: -10.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15679 - type: CableApcExtension - components: - - pos: -10.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15680 - type: CableApcExtension - components: - - pos: -10.5,10.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15681 - type: CableApcExtension - components: - - pos: -10.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15682 - type: SubstationBasic - components: - - pos: -4.5,5.5 - parent: 82 - type: Transform -- uid: 15683 - type: CableMV - components: - - pos: -4.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15684 - type: CableMV - components: - - pos: -5.5,5.5 - parent: 82 - type: Transform -- uid: 15685 - type: CableMV - components: - - pos: -6.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15686 - type: CableMV - components: - - pos: -6.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15687 - type: CableMV - components: - - pos: -6.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15688 - type: CableMV - components: - - pos: -7.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15689 - type: CableMV - components: - - pos: -8.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15690 - type: CableMV - components: - - pos: -9.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15691 - type: CableMV - components: - - pos: -10.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15692 - type: CableMV - components: - - pos: -10.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15693 - type: CableMV - components: - - pos: -10.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15694 - type: CableMV - components: - - pos: -10.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15695 - type: CableMV - components: - - pos: -10.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15696 - type: CableMV - components: - - pos: -10.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15697 - type: CableMV - components: - - pos: -10.5,10.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15698 - type: CableMV - components: - - pos: -10.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15699 - type: CableMV - components: - - pos: -10.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15700 - type: CableMV - components: - - pos: -9.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15701 - type: CableMV - components: - - pos: -8.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15702 - type: CableMV - components: - - pos: -8.5,13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15703 - type: CableMV - components: - - pos: -8.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15704 - type: CableMV - components: - - pos: -8.5,15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15705 - type: CableMV - components: - - pos: -8.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15706 - type: CableMV - components: - - pos: -8.5,17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15707 - type: CableMV - components: - - pos: -8.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15708 - type: CableMV - components: - - pos: -8.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15709 - type: CableMV - components: - - pos: -7.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15710 - type: CableMV - components: - - pos: -6.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15711 - type: CableMV - components: - - pos: -5.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15712 - type: CableMV - components: - - pos: -5.5,18.5 - parent: 82 - type: Transform -- uid: 15713 - type: CableMV - components: - - pos: -5.5,17.5 - parent: 82 - type: Transform -- uid: 15714 - type: CableMV - components: - - pos: -5.5,16.5 - parent: 82 - type: Transform -- uid: 15715 - type: CableMV - components: - - pos: -5.5,15.5 - parent: 82 - type: Transform -- uid: 15716 - type: CableMV - components: - - pos: -5.5,14.5 - parent: 82 - type: Transform -- uid: 15717 - type: CableMV - components: - - pos: -6.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15718 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -6.5,14.5 - parent: 82 - type: Transform -- uid: 15719 - type: CableApcExtension - components: - - pos: -6.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15720 - type: CableApcExtension - components: - - pos: -7.5,14.5 - parent: 82 - type: Transform -- uid: 15721 - type: CableApcExtension - components: - - pos: -8.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15722 - type: CableApcExtension - components: - - pos: -9.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15723 - type: CableApcExtension - components: - - pos: -8.5,15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15724 - type: CableApcExtension - components: - - pos: -8.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15725 - type: CableApcExtension - components: - - pos: -8.5,17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15726 - type: CableApcExtension - components: - - pos: -8.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15727 - type: CableApcExtension - components: - - pos: -8.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15728 - type: CableApcExtension - components: - - pos: -7.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15729 - type: CableApcExtension - components: - - pos: -6.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15730 - type: CableApcExtension - components: - - pos: -5.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15731 - type: CableApcExtension - components: - - pos: -5.5,18.5 - parent: 82 - type: Transform -- uid: 15732 - type: CableApcExtension - components: - - pos: -5.5,17.5 - parent: 82 - type: Transform -- uid: 15733 - type: CableApcExtension - components: - - pos: -5.5,16.5 - parent: 82 - type: Transform -- uid: 15734 - type: CableApcExtension - components: - - pos: -5.5,15.5 - parent: 82 - type: Transform -- uid: 15735 - type: CableApcExtension - components: - - pos: -5.5,14.5 - parent: 82 - type: Transform -- uid: 15736 - type: CableApcExtension - components: - - pos: -5.5,13.5 - parent: 82 - type: Transform -- uid: 15737 - type: CableApcExtension - components: - - pos: -5.5,12.5 - parent: 82 - type: Transform -- uid: 15738 - type: CableApcExtension - components: - - pos: -5.5,11.5 - parent: 82 - type: Transform -- uid: 15739 - type: CableApcExtension - components: - - pos: -5.5,10.5 - parent: 82 - type: Transform -- uid: 15740 - type: CableApcExtension - components: - - pos: -5.5,9.5 - parent: 82 - type: Transform -- uid: 15741 - type: CableApcExtension - components: - - pos: -6.5,9.5 - parent: 82 - type: Transform -- uid: 15742 - type: CableApcExtension - components: - - pos: -6.5,8.5 - parent: 82 - type: Transform -- uid: 15743 - type: CableApcExtension - components: - - pos: -6.5,7.5 - parent: 82 - type: Transform -- uid: 15744 - type: CableApcExtension - components: - - pos: -5.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15745 - type: CableApcExtension - components: - - pos: -4.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15746 - type: CableApcExtension - components: - - pos: -3.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15747 - type: CableApcExtension - components: - - pos: -2.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15748 - type: CableApcExtension - components: - - pos: -1.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15749 - type: CableApcExtension - components: - - pos: -0.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15750 - type: CableApcExtension - components: - - pos: 0.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15751 - type: CableApcExtension - components: - - pos: 1.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15752 - type: CableApcExtension - components: - - pos: 2.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15753 - type: CableApcExtension - components: - - pos: 3.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15754 - type: CableApcExtension - components: - - pos: 4.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15755 - type: CableApcExtension - components: - - pos: 5.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15756 - type: CableApcExtension - components: - - pos: -4.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15757 - type: CableApcExtension - components: - - pos: -1.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15758 - type: CableApcExtension - components: - - pos: -1.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15759 - type: CableApcExtension - components: - - pos: -1.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15760 - type: CableApcExtension - components: - - pos: -1.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15761 - type: CableApcExtension - components: - - pos: -1.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15762 - type: CableApcExtension - components: - - pos: -1.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15763 - type: CableApcExtension - components: - - pos: -0.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15764 - type: CableApcExtension - components: - - pos: 0.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15765 - type: CableApcExtension - components: - - pos: 1.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15766 - type: CableApcExtension - components: - - pos: 2.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15767 - type: CableApcExtension - components: - - pos: 3.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15768 - type: CableApcExtension - components: - - pos: 4.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15769 - type: CableApcExtension - components: - - pos: 5.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15770 - type: CableApcExtension - components: - - pos: 6.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15771 - type: CableApcExtension - components: - - pos: 4.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15772 - type: CableApcExtension - components: - - pos: 4.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15773 - type: CableApcExtension - components: - - pos: 4.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15774 - type: CableApcExtension - components: - - pos: 4.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15775 - type: CableApcExtension - components: - - pos: 4.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15776 - type: CableApcExtension - components: - - pos: 1.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15777 - type: CableApcExtension - components: - - pos: 7.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15778 - type: CableApcExtension - components: - - pos: 7.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15779 - type: CableApcExtension - components: - - pos: -3.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15780 - type: CableApcExtension - components: - - pos: -2.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15781 - type: CableApcExtension - components: - - pos: -1.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15782 - type: CableApcExtension - components: - - pos: -0.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15783 - type: CableApcExtension - components: - - pos: 0.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15784 - type: CableApcExtension - components: - - pos: 1.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15785 - type: CableApcExtension - components: - - pos: 2.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15786 - type: CableApcExtension - components: - - pos: 3.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15787 - type: CableApcExtension - components: - - pos: 4.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15788 - type: CableApcExtension - components: - - pos: 5.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15789 - type: CableApcExtension - components: - - pos: 6.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15790 - type: CableApcExtension - components: - - pos: -4.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15791 - type: CableApcExtension - components: - - pos: -3.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15792 - type: CableApcExtension - components: - - pos: -2.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15793 - type: CableApcExtension - components: - - pos: -1.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15794 - type: CableApcExtension - components: - - pos: -0.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15795 - type: CableApcExtension - components: - - pos: 0.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15796 - type: CableApcExtension - components: - - pos: 1.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15797 - type: CableApcExtension - components: - - pos: 2.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15798 - type: CableApcExtension - components: - - pos: 3.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15799 - type: CableApcExtension - components: - - pos: 4.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15800 - type: CableApcExtension - components: - - pos: 5.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15801 - type: CableApcExtension - components: - - pos: 6.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15802 - type: CableApcExtension - components: - - pos: -1.5,17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15803 - type: CableApcExtension - components: - - pos: -1.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15804 - type: CableApcExtension - components: - - pos: -0.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15805 - type: CableApcExtension - components: - - pos: 0.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15806 - type: CableApcExtension - components: - - pos: 1.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15807 - type: CableApcExtension - components: - - pos: 2.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15808 - type: CableApcExtension - components: - - pos: 3.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15809 - type: CableApcExtension - components: - - pos: 4.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15810 - type: CableApcExtension - components: - - pos: 5.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15811 - type: CableApcExtension - components: - - pos: 6.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15812 - type: CableApcExtension - components: - - pos: -1.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15813 - type: CableApcExtension - components: - - pos: -1.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15814 - type: CableApcExtension - components: - - pos: -1.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15815 - type: CableApcExtension - components: - - pos: -1.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15816 - type: CableApcExtension - components: - - pos: -1.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15817 - type: CableApcExtension - components: - - pos: -1.5,24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15818 - type: CableApcExtension - components: - - pos: -1.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15819 - type: CableApcExtension - components: - - pos: -0.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15820 - type: CableApcExtension - components: - - pos: 0.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15821 - type: CableApcExtension - components: - - pos: 1.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15822 - type: CableApcExtension - components: - - pos: 2.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15823 - type: CableApcExtension - components: - - pos: 3.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15824 - type: CableApcExtension - components: - - pos: 4.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15825 - type: CableApcExtension - components: - - pos: 5.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15826 - type: CableApcExtension - components: - - pos: 6.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15827 - type: CableApcExtension - components: - - pos: -0.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15828 - type: CableApcExtension - components: - - pos: 0.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15829 - type: CableApcExtension - components: - - pos: 1.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15830 - type: CableApcExtension - components: - - pos: 2.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15831 - type: CableApcExtension - components: - - pos: 3.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15832 - type: CableApcExtension - components: - - pos: 4.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15833 - type: CableApcExtension - components: - - pos: 5.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15834 - type: CableApcExtension - components: - - pos: 6.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15835 - type: CableApcExtension - components: - - pos: 8.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15836 - type: CableApcExtension - components: - - pos: 9.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15837 - type: CableApcExtension - components: - - pos: 10.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15838 - type: CableApcExtension - components: - - pos: 11.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15839 - type: CableApcExtension - components: - - pos: 12.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15840 - type: CableApcExtension - components: - - pos: 13.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15841 - type: CableApcExtension - components: - - pos: 14.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15842 - type: CableApcExtension - components: - - pos: 15.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15843 - type: CableApcExtension - components: - - pos: 16.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15844 - type: CableApcExtension - components: - - pos: 16.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15845 - type: CableApcExtension - components: - - pos: 16.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15846 - type: CableApcExtension - components: - - pos: 16.5,24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15847 - type: CableApcExtension - components: - - pos: 16.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15848 - type: CableApcExtension - components: - - pos: 15.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15849 - type: CableApcExtension - components: - - pos: 14.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15850 - type: CableApcExtension - components: - - pos: 13.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15851 - type: CableApcExtension - components: - - pos: 12.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15852 - type: CableApcExtension - components: - - pos: 11.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15853 - type: CableApcExtension - components: - - pos: 10.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15854 - type: CableApcExtension - components: - - pos: 9.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15855 - type: CableApcExtension - components: - - pos: 8.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15856 - type: CableApcExtension - components: - - pos: 8.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15857 - type: CableApcExtension - components: - - pos: 9.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15858 - type: CableApcExtension - components: - - pos: 10.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15859 - type: CableApcExtension - components: - - pos: 11.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15860 - type: CableApcExtension - components: - - pos: 12.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15861 - type: CableApcExtension - components: - - pos: 13.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15862 - type: CableApcExtension - components: - - pos: 14.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15863 - type: CableApcExtension - components: - - pos: 15.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15864 - type: CableApcExtension - components: - - pos: 16.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15865 - type: CableApcExtension - components: - - pos: 17.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15866 - type: CableApcExtension - components: - - pos: 18.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15867 - type: CableApcExtension - components: - - pos: 19.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15868 - type: CableApcExtension - components: - - pos: 20.5,12.5 - parent: 82 - type: Transform -- uid: 15869 - type: CableApcExtension - components: - - pos: 21.5,12.5 - parent: 82 - type: Transform -- uid: 15870 - type: CableApcExtension - components: - - pos: 22.5,12.5 - parent: 82 - type: Transform -- uid: 15871 - type: CableApcExtension - components: - - pos: 8.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15872 - type: CableApcExtension - components: - - pos: 9.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15873 - type: CableApcExtension - components: - - pos: 10.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15874 - type: CableApcExtension - components: - - pos: 11.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15875 - type: CableApcExtension - components: - - pos: 12.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15876 - type: CableApcExtension - components: - - pos: 13.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15877 - type: CableApcExtension - components: - - pos: 14.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15878 - type: CableApcExtension - components: - - pos: 15.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15879 - type: CableApcExtension - components: - - pos: 16.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15880 - type: CableApcExtension - components: - - pos: 17.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15881 - type: CableApcExtension - components: - - pos: 18.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15882 - type: CableApcExtension - components: - - pos: 19.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15883 - type: CableApcExtension - components: - - pos: 20.5,16.5 - parent: 82 - type: Transform -- uid: 15884 - type: CableApcExtension - components: - - pos: 21.5,16.5 - parent: 82 - type: Transform -- uid: 15885 - type: CableApcExtension - components: - - pos: 22.5,16.5 - parent: 82 - type: Transform -- uid: 15886 - type: CableApcExtension - components: - - pos: 22.5,13.5 - parent: 82 - type: Transform -- uid: 15887 - type: CableApcExtension - components: - - pos: 22.5,14.5 - parent: 82 - type: Transform -- uid: 15888 - type: CableApcExtension - components: - - pos: 22.5,15.5 - parent: 82 - type: Transform -- uid: 15889 - type: CableApcExtension - components: - - pos: 21.5,17.5 - parent: 82 - type: Transform -- uid: 15890 - type: CableApcExtension - components: - - pos: -5.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15891 - type: CableApcExtension - components: - - pos: -5.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15892 - type: CableApcExtension - components: - - pos: -5.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15893 - type: CableApcExtension - components: - - pos: -5.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15894 - type: CableApcExtension - components: - - pos: -5.5,24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15895 - type: CableApcExtension - components: - - pos: -5.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15896 - type: CableApcExtension - components: - - pos: -5.5,26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15897 - type: CableApcExtension - components: - - pos: -5.5,27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15898 - type: CableApcExtension - components: - - pos: -6.5,22.5 - parent: 82 - type: Transform -- uid: 15899 - type: CableApcExtension - components: - - pos: -7.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15900 - type: CableApcExtension - components: - - pos: -8.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15901 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 23.5,15.5 - parent: 82 - type: Transform -- uid: 15902 - type: PosterLegitReportCrimes - components: - - pos: 55.5,-39.5 - parent: 82 - type: Transform -- uid: 15903 - type: PosterLegitBlessThisSpess - components: - - pos: 40.5,31.5 - parent: 82 - type: Transform -- uid: 15904 - type: CableApcExtension - components: - - pos: 23.5,15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15905 - type: CableApcExtension - components: - - pos: 24.5,15.5 - parent: 82 - type: Transform -- uid: 15906 - type: CableApcExtension - components: - - pos: 25.5,15.5 - parent: 82 - type: Transform -- uid: 15907 - type: CableApcExtension - components: - - pos: 26.5,15.5 - parent: 82 - type: Transform -- uid: 15908 - type: CableApcExtension - components: - - pos: 27.5,15.5 - parent: 82 - type: Transform -- uid: 15909 - type: CableApcExtension - components: - - pos: 28.5,15.5 - parent: 82 - type: Transform -- uid: 15910 - type: CableApcExtension - components: - - pos: 29.5,15.5 - parent: 82 - type: Transform -- uid: 15911 - type: HospitalCurtains - components: - - rot: 3.141592653589793 rad - pos: -39.5,-44.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -356069.6 - state: Opening - type: Door -- uid: 15912 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -39.5,-41.5 - parent: 82 - type: Transform -- uid: 15913 - type: TintedWindow - components: - - rot: 3.141592653589793 rad - pos: -39.5,-43.5 - parent: 82 - type: Transform -- uid: 15914 - type: CableApcExtension - components: - - pos: 26.5,14.5 - parent: 82 - type: Transform -- uid: 15915 - type: CableApcExtension - components: - - pos: 26.5,13.5 - parent: 82 - type: Transform -- uid: 15916 - type: CableApcExtension - components: - - pos: 26.5,12.5 - parent: 82 - type: Transform -- uid: 15917 - type: CableApcExtension - components: - - pos: 25.5,12.5 - parent: 82 - type: Transform -- uid: 15918 - type: CableApcExtension - components: - - pos: 24.5,12.5 - parent: 82 - type: Transform -- uid: 15919 - type: CableApcExtension - components: - - pos: 23.5,12.5 - parent: 82 - type: Transform -- uid: 15920 - type: CableApcExtension - components: - - pos: 27.5,12.5 - parent: 82 - type: Transform -- uid: 15921 - type: CableApcExtension - components: - - pos: 28.5,12.5 - parent: 82 - type: Transform -- uid: 15922 - type: CableApcExtension - components: - - pos: 28.5,11.5 - parent: 82 - type: Transform -- uid: 15923 - type: CableApcExtension - components: - - pos: 28.5,10.5 - parent: 82 - type: Transform -- uid: 15924 - type: CableApcExtension - components: - - pos: 28.5,9.5 - parent: 82 - type: Transform -- uid: 15925 - type: CableApcExtension - components: - - pos: 28.5,8.5 - parent: 82 - type: Transform -- uid: 15926 - type: CableApcExtension - components: - - pos: 28.5,7.5 - parent: 82 - type: Transform -- uid: 15927 - type: CableApcExtension - components: - - pos: 28.5,6.5 - parent: 82 - type: Transform -- uid: 15928 - type: CableApcExtension - components: - - pos: 28.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15929 - type: CableApcExtension - components: - - pos: 28.5,4.5 - parent: 82 - type: Transform -- uid: 15930 - type: CableApcExtension - components: - - pos: 28.5,3.5 - parent: 82 - type: Transform -- uid: 15931 - type: CableApcExtension - components: - - pos: 27.5,3.5 - parent: 82 - type: Transform -- uid: 15932 - type: CableApcExtension - components: - - pos: 26.5,3.5 - parent: 82 - type: Transform -- uid: 15933 - type: CableApcExtension - components: - - pos: 25.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15934 - type: CableApcExtension - components: - - pos: 24.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15935 - type: CableApcExtension - components: - - pos: 24.5,2.5 - parent: 82 - type: Transform -- uid: 15936 - type: CableApcExtension - components: - - pos: 24.5,1.5 - parent: 82 - type: Transform -- uid: 15937 - type: CableApcExtension - components: - - pos: 24.5,0.5 - parent: 82 - type: Transform -- uid: 15938 - type: CableApcExtension - components: - - pos: 24.5,-0.5 - parent: 82 - type: Transform -- uid: 15939 - type: CableApcExtension - components: - - pos: 23.5,-0.5 - parent: 82 - type: Transform -- uid: 15940 - type: CableApcExtension - components: - - pos: 22.5,-0.5 - parent: 82 - type: Transform -- uid: 15941 - type: CableApcExtension - components: - - pos: 22.5,-1.5 - parent: 82 - type: Transform -- uid: 15942 - type: CableApcExtension - components: - - pos: 22.5,-2.5 - parent: 82 - type: Transform -- uid: 15943 - type: CableApcExtension - components: - - pos: 23.5,-2.5 - parent: 82 - type: Transform -- uid: 15944 - type: CableApcExtension - components: - - pos: 24.5,-2.5 - parent: 82 - type: Transform -- uid: 15945 - type: CableApcExtension - components: - - pos: 25.5,-2.5 - parent: 82 - type: Transform -- uid: 15946 - type: CableApcExtension - components: - - pos: 26.5,-2.5 - parent: 82 - type: Transform -- uid: 15947 - type: CableApcExtension - components: - - pos: 27.5,-2.5 - parent: 82 - type: Transform -- uid: 15948 - type: CableApcExtension - components: - - pos: 27.5,-1.5 - parent: 82 - type: Transform -- uid: 15949 - type: CableApcExtension - components: - - pos: 27.5,-0.5 - parent: 82 - type: Transform -- uid: 15950 - type: CableApcExtension - components: - - pos: 27.5,0.5 - parent: 82 - type: Transform -- uid: 15951 - type: CableApcExtension - components: - - pos: 27.5,1.5 - parent: 82 - type: Transform -- uid: 15952 - type: CableApcExtension - components: - - pos: 27.5,2.5 - parent: 82 - type: Transform -- uid: 15953 - type: CableApcExtension - components: - - pos: 23.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15954 - type: CableApcExtension - components: - - pos: 22.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15955 - type: CableApcExtension - components: - - pos: 21.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15956 - type: CableApcExtension - components: - - pos: 20.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15957 - type: CableApcExtension - components: - - pos: 19.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15958 - type: CableApcExtension - components: - - pos: 19.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15959 - type: CableApcExtension - components: - - pos: 19.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15960 - type: CableApcExtension - components: - - pos: 19.5,0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15961 - type: CableApcExtension - components: - - pos: 19.5,-0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15962 - type: CableApcExtension - components: - - pos: 19.5,-1.5 - parent: 82 - type: Transform -- uid: 15963 - type: CableApcExtension - components: - - pos: 19.5,-2.5 - parent: 82 - type: Transform -- uid: 15964 - type: CableApcExtension - components: - - pos: 20.5,-2.5 - parent: 82 - type: Transform -- uid: 15965 - type: CableApcExtension - components: - - pos: 21.5,-2.5 - parent: 82 - type: Transform -- uid: 15966 - type: CableApcExtension - components: - - pos: 19.5,-3.5 - parent: 82 - type: Transform -- uid: 15967 - type: CableApcExtension - components: - - pos: 19.5,-4.5 - parent: 82 - type: Transform -- uid: 15968 - type: CableApcExtension - components: - - pos: 20.5,-4.5 - parent: 82 - type: Transform -- uid: 15969 - type: CableApcExtension - components: - - pos: 21.5,-4.5 - parent: 82 - type: Transform -- uid: 15970 - type: CableApcExtension - components: - - pos: 22.5,-4.5 - parent: 82 - type: Transform -- uid: 15971 - type: CableApcExtension - components: - - pos: 23.5,-4.5 - parent: 82 - type: Transform -- uid: 15972 - type: CableApcExtension - components: - - pos: 24.5,-4.5 - parent: 82 - type: Transform -- uid: 15973 - type: CableApcExtension - components: - - pos: 25.5,-4.5 - parent: 82 - type: Transform -- uid: 15974 - type: CableApcExtension - components: - - pos: 26.5,-4.5 - parent: 82 - type: Transform -- uid: 15975 - type: CableApcExtension - components: - - pos: 27.5,-4.5 - parent: 82 - type: Transform -- uid: 15976 - type: CableApcExtension - components: - - pos: 28.5,-4.5 - parent: 82 - type: Transform -- uid: 15977 - type: CableApcExtension - components: - - pos: 29.5,-4.5 - parent: 82 - type: Transform -- uid: 15978 - type: CableApcExtension - components: - - pos: 29.5,-3.5 - parent: 82 - type: Transform -- uid: 15979 - type: CableApcExtension - components: - - pos: 29.5,-2.5 - parent: 82 - type: Transform -- uid: 15980 - type: CableApcExtension - components: - - pos: 29.5,-1.5 - parent: 82 - type: Transform -- uid: 15981 - type: CableApcExtension - components: - - pos: 29.5,-0.5 - parent: 82 - type: Transform -- uid: 15982 - type: CableApcExtension - components: - - pos: 29.5,0.5 - parent: 82 - type: Transform -- uid: 15983 - type: CableApcExtension - components: - - pos: 29.5,1.5 - parent: 82 - type: Transform -- uid: 15984 - type: CableApcExtension - components: - - pos: 29.5,2.5 - parent: 82 - type: Transform -- uid: 15985 - type: CableApcExtension - components: - - pos: 30.5,2.5 - parent: 82 - type: Transform -- uid: 15986 - type: CableApcExtension - components: - - pos: 31.5,2.5 - parent: 82 - type: Transform -- uid: 15987 - type: CableApcExtension - components: - - pos: 32.5,2.5 - parent: 82 - type: Transform -- uid: 15988 - type: CableApcExtension - components: - - pos: 33.5,2.5 - parent: 82 - type: Transform -- uid: 15989 - type: CableApcExtension - components: - - pos: 33.5,3.5 - parent: 82 - type: Transform -- uid: 15990 - type: CableApcExtension - components: - - pos: 33.5,4.5 - parent: 82 - type: Transform -- uid: 15991 - type: CableApcExtension - components: - - pos: 29.5,3.5 - parent: 82 - type: Transform -- uid: 15992 - type: CableMV - components: - - pos: 25.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15993 - type: Catwalk - components: - - pos: 26.5,30.5 - parent: 82 - type: Transform -- uid: 15994 - type: Catwalk - components: - - pos: 27.5,30.5 - parent: 82 - type: Transform -- uid: 15995 - type: Catwalk - components: - - pos: 28.5,30.5 - parent: 82 - type: Transform -- uid: 15996 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 10.5,50.5 - parent: 82 - type: Transform -- uid: 15997 - type: CableMV - components: - - pos: 30.5,30.5 - parent: 82 - type: Transform -- uid: 15998 - type: CableMV - components: - - pos: 29.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15999 - type: CableMV - components: - - pos: 28.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16000 - type: CableMV - components: - - pos: 27.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16001 - type: CableApcExtension - components: - - pos: 29.5,4.5 - parent: 82 - type: Transform -- uid: 16002 - type: CableApcExtension - components: - - pos: 30.5,4.5 - parent: 82 - type: Transform -- uid: 16003 - type: CableApcExtension - components: - - pos: 31.5,4.5 - parent: 82 - type: Transform -- uid: 16004 - type: CableApcExtension - components: - - pos: 31.5,5.5 - parent: 82 - type: Transform -- uid: 16005 - type: CableApcExtension - components: - - pos: 31.5,6.5 - parent: 82 - type: Transform -- uid: 16006 - type: CableApcExtension - components: - - pos: 32.5,4.5 - parent: 82 - type: Transform -- uid: 16007 - type: CableApcExtension - components: - - pos: 33.5,5.5 - parent: 82 - type: Transform -- uid: 16008 - type: CableApcExtension - components: - - pos: 33.5,6.5 - parent: 82 - type: Transform -- uid: 16009 - type: CableApcExtension - components: - - pos: 31.5,7.5 - parent: 82 - type: Transform -- uid: 16010 - type: CableApcExtension - components: - - pos: 31.5,8.5 - parent: 82 - type: Transform -- uid: 16011 - type: CableApcExtension - components: - - pos: 31.5,9.5 - parent: 82 - type: Transform -- uid: 16012 - type: CableApcExtension - components: - - pos: 30.5,9.5 - parent: 82 - type: Transform -- uid: 16013 - type: CableApcExtension - components: - - pos: 29.5,9.5 - parent: 82 - type: Transform -- uid: 16014 - type: CableApcExtension - components: - - pos: 33.5,7.5 - parent: 82 - type: Transform -- uid: 16015 - type: CableApcExtension - components: - - pos: 33.5,8.5 - parent: 82 - type: Transform -- uid: 16016 - type: CableApcExtension - components: - - pos: 33.5,9.5 - parent: 82 - type: Transform -- uid: 16017 - type: CableApcExtension - components: - - pos: 32.5,9.5 - parent: 82 - type: Transform -- uid: 16018 - type: CableApcExtension - components: - - pos: 33.5,10.5 - parent: 82 - type: Transform -- uid: 16019 - type: CableApcExtension - components: - - pos: 31.5,10.5 - parent: 82 - type: Transform -- uid: 16020 - type: CableMV - components: - - pos: 19.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16021 - type: CableMV - components: - - pos: 19.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16022 - type: CableMV - components: - - pos: 19.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16023 - type: CableMV - components: - - pos: 20.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16024 - type: CableMV - components: - - pos: 21.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16025 - type: CableMV - components: - - pos: 22.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16026 - type: CableMV - components: - - pos: 23.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16027 - type: CableMV - components: - - pos: 24.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16028 - type: CableMV - components: - - pos: 25.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16029 - type: CableMV - components: - - pos: 26.5,3.5 - parent: 82 - type: Transform -- uid: 16030 - type: CableMV - components: - - pos: 27.5,3.5 - parent: 82 - type: Transform -- uid: 16031 - type: CableMV - components: - - pos: 28.5,3.5 - parent: 82 - type: Transform -- uid: 16032 - type: CableMV - components: - - pos: 28.5,4.5 - parent: 82 - type: Transform -- uid: 16033 - type: CableMV - components: - - pos: 28.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16034 - type: CableMV - components: - - pos: 28.5,6.5 - parent: 82 - type: Transform -- uid: 16035 - type: CableMV - components: - - pos: 28.5,7.5 - parent: 82 - type: Transform -- uid: 16036 - type: CableMV - components: - - pos: 28.5,8.5 - parent: 82 - type: Transform -- uid: 16037 - type: CableMV - components: - - pos: 28.5,9.5 - parent: 82 - type: Transform -- uid: 16038 - type: CableMV - components: - - pos: 28.5,10.5 - parent: 82 - type: Transform -- uid: 16039 - type: CableMV - components: - - pos: 28.5,11.5 - parent: 82 - type: Transform -- uid: 16040 - type: CableMV - components: - - pos: 28.5,12.5 - parent: 82 - type: Transform -- uid: 16041 - type: CableMV - components: - - pos: 27.5,12.5 - parent: 82 - type: Transform -- uid: 16042 - type: CableMV - components: - - pos: 26.5,12.5 - parent: 82 - type: Transform -- uid: 16043 - type: CableMV - components: - - pos: 25.5,12.5 - parent: 82 - type: Transform -- uid: 16044 - type: CableMV - components: - - pos: 24.5,12.5 - parent: 82 - type: Transform -- uid: 16045 - type: CableMV - components: - - pos: 23.5,12.5 - parent: 82 - type: Transform -- uid: 16046 - type: CableMV - components: - - pos: 22.5,12.5 - parent: 82 - type: Transform -- uid: 16047 - type: CableMV - components: - - pos: 22.5,13.5 - parent: 82 - type: Transform -- uid: 16048 - type: CableMV - components: - - pos: 22.5,14.5 - parent: 82 - type: Transform -- uid: 16049 - type: CableMV - components: - - pos: 22.5,15.5 - parent: 82 - type: Transform -- uid: 16050 - type: CableMV - components: - - pos: 23.5,15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16051 - type: CableApcExtension - components: - - pos: 20.5,44.5 - parent: 82 - type: Transform -- uid: 16052 - type: CableApcExtension - components: - - pos: 20.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16053 - type: CableApcExtension - components: - - pos: 20.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16054 - type: APCBasic - components: - - pos: 0.5,40.5 - parent: 82 - type: Transform -- uid: 16055 - type: CableApcExtension - components: - - pos: 0.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16056 - type: CableApcExtension - components: - - pos: 0.5,39.5 - parent: 82 - type: Transform -- uid: 16057 - type: CableApcExtension - components: - - pos: 0.5,38.5 - parent: 82 - type: Transform -- uid: 16058 - type: CableApcExtension - components: - - pos: 0.5,37.5 - parent: 82 - type: Transform -- uid: 16059 - type: CableApcExtension - components: - - pos: 0.5,36.5 - parent: 82 - type: Transform -- uid: 16060 - type: CableApcExtension - components: - - pos: 0.5,35.5 - parent: 82 - type: Transform -- uid: 16061 - type: CableApcExtension - components: - - pos: 0.5,34.5 - parent: 82 - type: Transform -- uid: 16062 - type: CableApcExtension - components: - - pos: 0.5,33.5 - parent: 82 - type: Transform -- uid: 16063 - type: CableApcExtension - components: - - pos: -0.5,35.5 - parent: 82 - type: Transform -- uid: 16064 - type: CableApcExtension - components: - - pos: -1.5,35.5 - parent: 82 - type: Transform -- uid: 16065 - type: CableApcExtension - components: - - pos: -2.5,35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16066 - type: CableApcExtension - components: - - pos: -3.5,35.5 - parent: 82 - type: Transform -- uid: 16067 - type: CableApcExtension - components: - - pos: -3.5,36.5 - parent: 82 - type: Transform -- uid: 16068 - type: CableApcExtension - components: - - pos: -3.5,37.5 - parent: 82 - type: Transform -- uid: 16069 - type: CableApcExtension - components: - - pos: -3.5,38.5 - parent: 82 - type: Transform -- uid: 16070 - type: CableApcExtension - components: - - pos: -3.5,39.5 - parent: 82 - type: Transform -- uid: 16071 - type: CableApcExtension - components: - - pos: -3.5,40.5 - parent: 82 - type: Transform -- uid: 16072 - type: CableApcExtension - components: - - pos: -3.5,41.5 - parent: 82 - type: Transform -- uid: 16073 - type: CableApcExtension - components: - - pos: -3.5,42.5 - parent: 82 - type: Transform -- uid: 16074 - type: CableApcExtension - components: - - pos: -3.5,43.5 - parent: 82 - type: Transform -- uid: 16075 - type: CableApcExtension - components: - - pos: 0.5,41.5 - parent: 82 - type: Transform -- uid: 16076 - type: CableApcExtension - components: - - pos: 0.5,42.5 - parent: 82 - type: Transform -- uid: 16077 - type: CableApcExtension - components: - - pos: 0.5,43.5 - parent: 82 - type: Transform -- uid: 16078 - type: CableApcExtension - components: - - pos: -0.5,43.5 - parent: 82 - type: Transform -- uid: 16079 - type: CableApcExtension - components: - - pos: -1.5,43.5 - parent: 82 - type: Transform -- uid: 16080 - type: CableApcExtension - components: - - pos: -2.5,43.5 - parent: 82 - type: Transform -- uid: 16081 - type: CableApcExtension - components: - - pos: 1.5,43.5 - parent: 82 - type: Transform -- uid: 16082 - type: CableApcExtension - components: - - pos: 2.5,43.5 - parent: 82 - type: Transform -- uid: 16083 - type: CableApcExtension - components: - - pos: 2.5,44.5 - parent: 82 - type: Transform -- uid: 16084 - type: CableApcExtension - components: - - pos: 2.5,45.5 - parent: 82 - type: Transform -- uid: 16085 - type: CableApcExtension - components: - - pos: 2.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16086 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 10.5,49.5 - parent: 82 - type: Transform -- uid: 16087 - type: CableApcExtension - components: - - pos: -3.5,33.5 - parent: 82 - type: Transform -- uid: 16088 - type: CableApcExtension - components: - - pos: -3.5,32.5 - parent: 82 - type: Transform -- uid: 16089 - type: CableApcExtension - components: - - pos: -3.5,31.5 - parent: 82 - type: Transform -- uid: 16090 - type: CableApcExtension - components: - - pos: -2.5,31.5 - parent: 82 - type: Transform -- uid: 16091 - type: CableApcExtension - components: - - pos: -1.5,31.5 - parent: 82 - type: Transform -- uid: 16092 - type: CableApcExtension - components: - - pos: -0.5,31.5 - parent: 82 - type: Transform -- uid: 16093 - type: CableApcExtension - components: - - pos: 0.5,31.5 - parent: 82 - type: Transform -- uid: 16094 - type: CableApcExtension - components: - - pos: 1.5,31.5 - parent: 82 - type: Transform -- uid: 16095 - type: CableApcExtension - components: - - pos: 2.5,31.5 - parent: 82 - type: Transform -- uid: 16096 - type: CableApcExtension - components: - - pos: 3.5,31.5 - parent: 82 - type: Transform -- uid: 16097 - type: CableApcExtension - components: - - pos: 4.5,31.5 - parent: 82 - type: Transform -- uid: 16098 - type: CableApcExtension - components: - - pos: 5.5,31.5 - parent: 82 - type: Transform -- uid: 16099 - type: CableApcExtension - components: - - pos: 6.5,31.5 - parent: 82 - type: Transform -- uid: 16100 - type: CableApcExtension - components: - - pos: 6.5,32.5 - parent: 82 - type: Transform -- uid: 16101 - type: CableApcExtension - components: - - pos: 6.5,33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16102 - type: CableApcExtension - components: - - pos: 6.5,34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16103 - type: CableApcExtension - components: - - pos: 6.5,35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16104 - type: CableApcExtension - components: - - pos: 6.5,36.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16105 - type: CableApcExtension - components: - - pos: 6.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16106 - type: CableApcExtension - components: - - pos: 6.5,38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16107 - type: CableApcExtension - components: - - pos: 6.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16108 - type: CableApcExtension - components: - - pos: 6.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16109 - type: CableApcExtension - components: - - pos: 6.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16110 - type: CableApcExtension - components: - - pos: 5.5,34.5 - parent: 82 - type: Transform -- uid: 16111 - type: CableApcExtension - components: - - pos: 4.5,34.5 - parent: 82 - type: Transform -- uid: 16112 - type: CableApcExtension - components: - - pos: 3.5,34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16113 - type: CableApcExtension - components: - - pos: 5.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16114 - type: CableApcExtension - components: - - pos: 4.5,39.5 - parent: 82 - type: Transform -- uid: 16115 - type: CableApcExtension - components: - - pos: 3.5,39.5 - parent: 82 - type: Transform -- uid: 16116 - type: CableApcExtension - components: - - pos: 2.5,39.5 - parent: 82 - type: Transform -- uid: 16117 - type: CableApcExtension - components: - - pos: 1.5,39.5 - parent: 82 - type: Transform -- uid: 16118 - type: CableApcExtension - components: - - pos: 5.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16119 - type: CableApcExtension - components: - - pos: 5.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16120 - type: CableApcExtension - components: - - pos: 5.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16121 - type: CableApcExtension - components: - - pos: 5.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16122 - type: CableApcExtension - components: - - pos: 5.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16123 - type: CableApcExtension - components: - - pos: 5.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16124 - type: CableApcExtension - components: - - pos: 4.5,46.5 - parent: 82 - type: Transform -- uid: 16125 - type: CableApcExtension - components: - - pos: 3.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16126 - type: CableApcExtension - components: - - pos: 6.5,46.5 - parent: 82 - type: Transform -- uid: 16127 - type: CableApcExtension - components: - - pos: 7.5,46.5 - parent: 82 - type: Transform -- uid: 16128 - type: CableApcExtension - components: - - pos: 8.5,46.5 - parent: 82 - type: Transform -- uid: 16129 - type: CableApcExtension - components: - - pos: 7.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16130 - type: CableApcExtension - components: - - pos: 8.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16131 - type: CableApcExtension - components: - - pos: 9.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16132 - type: CableApcExtension - components: - - pos: 10.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16133 - type: CableApcExtension - components: - - pos: 11.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16134 - type: CableApcExtension - components: - - pos: 11.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16135 - type: CableApcExtension - components: - - pos: 11.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16136 - type: CableApcExtension - components: - - pos: 11.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16137 - type: CableApcExtension - components: - - pos: 11.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16138 - type: CableApcExtension - components: - - pos: 10.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16139 - type: CableApcExtension - components: - - pos: 9.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16140 - type: CableApcExtension - components: - - pos: 9.5,40.5 - parent: 82 - type: Transform -- uid: 16141 - type: CableApcExtension - components: - - pos: 9.5,39.5 - parent: 82 - type: Transform -- uid: 16142 - type: CableApcExtension - components: - - pos: 9.5,38.5 - parent: 82 - type: Transform -- uid: 16143 - type: CableApcExtension - components: - - pos: 9.5,37.5 - parent: 82 - type: Transform -- uid: 16144 - type: CableApcExtension - components: - - pos: 9.5,36.5 - parent: 82 - type: Transform -- uid: 16145 - type: CableApcExtension - components: - - pos: 9.5,35.5 - parent: 82 - type: Transform -- uid: 16146 - type: CableApcExtension - components: - - pos: 9.5,34.5 - parent: 82 - type: Transform -- uid: 16147 - type: CableApcExtension - components: - - pos: 9.5,33.5 - parent: 82 - type: Transform -- uid: 16148 - type: CableApcExtension - components: - - pos: 7.5,31.5 - parent: 82 - type: Transform -- uid: 16149 - type: CableApcExtension - components: - - pos: 8.5,31.5 - parent: 82 - type: Transform -- uid: 16150 - type: CableApcExtension - components: - - pos: 9.5,31.5 - parent: 82 - type: Transform -- uid: 16151 - type: CableApcExtension - components: - - pos: 10.5,31.5 - parent: 82 - type: Transform -- uid: 16152 - type: CableApcExtension - components: - - pos: 10.5,32.5 - parent: 82 - type: Transform -- uid: 16153 - type: CableApcExtension - components: - - pos: 10.5,33.5 - parent: 82 - type: Transform -- uid: 16154 - type: CableApcExtension - components: - - pos: 11.5,31.5 - parent: 82 - type: Transform -- uid: 16155 - type: CableApcExtension - components: - - pos: 12.5,31.5 - parent: 82 - type: Transform -- uid: 16156 - type: CableApcExtension - components: - - pos: 13.5,31.5 - parent: 82 - type: Transform -- uid: 16157 - type: CableApcExtension - components: - - pos: 14.5,31.5 - parent: 82 - type: Transform -- uid: 16158 - type: CableApcExtension - components: - - pos: 15.5,31.5 - parent: 82 - type: Transform -- uid: 16159 - type: CableApcExtension - components: - - pos: 16.5,31.5 - parent: 82 - type: Transform -- uid: 16160 - type: CableApcExtension - components: - - pos: 17.5,31.5 - parent: 82 - type: Transform -- uid: 16161 - type: CableApcExtension - components: - - pos: 12.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16162 - type: CableApcExtension - components: - - pos: 13.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16163 - type: CableApcExtension - components: - - pos: 14.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16164 - type: CableApcExtension - components: - - pos: 15.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16165 - type: CableApcExtension - components: - - pos: 16.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16166 - type: SubstationBasic - components: - - pos: -8.5,39.5 - parent: 82 - type: Transform -- uid: 16167 - type: SubstationBasic - components: - - pos: -8.5,38.5 - parent: 82 - type: Transform -- uid: 16168 - type: CableMV - components: - - pos: -8.5,38.5 - parent: 82 - type: Transform -- uid: 16169 - type: CableMV - components: - - pos: -8.5,39.5 - parent: 82 - type: Transform -- uid: 16170 - type: CableMV - components: - - pos: -9.5,39.5 - parent: 82 - type: Transform -- uid: 16171 - type: CableMV - components: - - pos: -9.5,40.5 - parent: 82 - type: Transform -- uid: 16172 - type: CableMV - components: - - pos: -10.5,40.5 - parent: 82 - type: Transform -- uid: 16173 - type: CableMV - components: - - pos: -11.5,40.5 - parent: 82 - type: Transform -- uid: 16174 - type: CableMV - components: - - pos: -12.5,40.5 - parent: 82 - type: Transform -- uid: 16175 - type: CableMV - components: - - pos: -12.5,41.5 - parent: 82 - type: Transform -- uid: 16176 - type: CableMV - components: - - pos: -12.5,42.5 - parent: 82 - type: Transform -- uid: 16177 - type: CableMV - components: - - pos: -12.5,43.5 - parent: 82 - type: Transform -- uid: 16178 - type: CableMV - components: - - pos: -12.5,44.5 - parent: 82 - type: Transform -- uid: 16179 - type: CableMV - components: - - pos: -12.5,45.5 - parent: 82 - type: Transform -- uid: 16180 - type: CableMV - components: - - pos: -12.5,46.5 - parent: 82 - type: Transform -- uid: 16181 - type: CableMV - components: - - pos: -12.5,47.5 - parent: 82 - type: Transform -- uid: 16182 - type: CableMV - components: - - pos: -12.5,48.5 - parent: 82 - type: Transform -- uid: 16183 - type: CableMV - components: - - pos: -11.5,48.5 - parent: 82 - type: Transform -- uid: 16184 - type: CableMV - components: - - pos: -10.5,48.5 - parent: 82 - type: Transform -- uid: 16185 - type: CableMV - components: - - pos: -9.5,48.5 - parent: 82 - type: Transform -- uid: 16186 - type: CableMV - components: - - pos: -8.5,48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16187 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -8.5,48.5 - parent: 82 - type: Transform -- uid: 16188 - type: CableApcExtension - components: - - pos: -8.5,48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16189 - type: CableApcExtension - components: - - pos: -9.5,48.5 - parent: 82 - type: Transform -- uid: 16190 - type: CableApcExtension - components: - - pos: -9.5,49.5 - parent: 82 - type: Transform -- uid: 16191 - type: CableApcExtension - components: - - pos: -9.5,50.5 - parent: 82 - type: Transform -- uid: 16192 - type: CableApcExtension - components: - - pos: -9.5,51.5 - parent: 82 - type: Transform -- uid: 16193 - type: CableApcExtension - components: - - pos: -9.5,52.5 - parent: 82 - type: Transform -- uid: 16194 - type: CableApcExtension - components: - - pos: -9.5,53.5 - parent: 82 - type: Transform -- uid: 16195 - type: CableApcExtension - components: - - pos: -10.5,53.5 - parent: 82 - type: Transform -- uid: 16196 - type: CableApcExtension - components: - - pos: -11.5,53.5 - parent: 82 - type: Transform -- uid: 16197 - type: CableApcExtension - components: - - pos: -12.5,53.5 - parent: 82 - type: Transform -- uid: 16198 - type: CableApcExtension - components: - - pos: -13.5,53.5 - parent: 82 - type: Transform -- uid: 16199 - type: CableApcExtension - components: - - pos: -14.5,53.5 - parent: 82 - type: Transform -- uid: 16200 - type: CableApcExtension - components: - - pos: -15.5,53.5 - parent: 82 - type: Transform -- uid: 16201 - type: CableApcExtension - components: - - pos: -16.5,53.5 - parent: 82 - type: Transform -- uid: 16202 - type: CableApcExtension - components: - - pos: -16.5,52.5 - parent: 82 - type: Transform -- uid: 16203 - type: CableApcExtension - components: - - pos: -16.5,51.5 - parent: 82 - type: Transform -- uid: 16204 - type: CableApcExtension - components: - - pos: -16.5,50.5 - parent: 82 - type: Transform -- uid: 16205 - type: CableApcExtension - components: - - pos: -16.5,49.5 - parent: 82 - type: Transform -- uid: 16206 - type: CableApcExtension - components: - - pos: -16.5,48.5 - parent: 82 - type: Transform -- uid: 16207 - type: CableApcExtension - components: - - pos: -15.5,48.5 - parent: 82 - type: Transform -- uid: 16208 - type: CableApcExtension - components: - - pos: -14.5,48.5 - parent: 82 - type: Transform -- uid: 16209 - type: CableApcExtension - components: - - pos: -13.5,48.5 - parent: 82 - type: Transform -- uid: 16210 - type: CableApcExtension - components: - - pos: -12.5,48.5 - parent: 82 - type: Transform -- uid: 16211 - type: CableApcExtension - components: - - pos: -11.5,48.5 - parent: 82 - type: Transform -- uid: 16212 - type: CableApcExtension - components: - - pos: -10.5,48.5 - parent: 82 - type: Transform -- uid: 16213 - type: CableApcExtension - components: - - pos: -12.5,47.5 - parent: 82 - type: Transform -- uid: 16214 - type: CableApcExtension - components: - - pos: -12.5,46.5 - parent: 82 - type: Transform -- uid: 16215 - type: CableApcExtension - components: - - pos: -12.5,45.5 - parent: 82 - type: Transform -- uid: 16216 - type: CableApcExtension - components: - - pos: -12.5,44.5 - parent: 82 - type: Transform -- uid: 16217 - type: CableApcExtension - components: - - pos: -11.5,44.5 - parent: 82 - type: Transform -- uid: 16218 - type: CableApcExtension - components: - - pos: -10.5,44.5 - parent: 82 - type: Transform -- uid: 16219 - type: CableApcExtension - components: - - pos: -9.5,44.5 - parent: 82 - type: Transform -- uid: 16220 - type: CableApcExtension - components: - - pos: -8.5,44.5 - parent: 82 - type: Transform -- uid: 16221 - type: CableApcExtension - components: - - pos: -7.5,44.5 - parent: 82 - type: Transform -- uid: 16222 - type: CableApcExtension - components: - - pos: -6.5,44.5 - parent: 82 - type: Transform -- uid: 16223 - type: CableApcExtension - components: - - pos: -5.5,44.5 - parent: 82 - type: Transform -- uid: 16224 - type: CableApcExtension - components: - - pos: -5.5,45.5 - parent: 82 - type: Transform -- uid: 16225 - type: CableApcExtension - components: - - pos: -5.5,46.5 - parent: 82 - type: Transform -- uid: 16226 - type: CableApcExtension - components: - - pos: -5.5,47.5 - parent: 82 - type: Transform -- uid: 16227 - type: CableApcExtension - components: - - pos: -5.5,48.5 - parent: 82 - type: Transform -- uid: 16228 - type: CableApcExtension - components: - - pos: -5.5,49.5 - parent: 82 - type: Transform -- uid: 16229 - type: CableApcExtension - components: - - pos: -5.5,50.5 - parent: 82 - type: Transform -- uid: 16230 - type: CableApcExtension - components: - - pos: -5.5,51.5 - parent: 82 - type: Transform -- uid: 16231 - type: CableApcExtension - components: - - pos: -5.5,43.5 - parent: 82 - type: Transform -- uid: 16232 - type: CableApcExtension - components: - - pos: -5.5,42.5 - parent: 82 - type: Transform -- uid: 16233 - type: CableApcExtension - components: - - pos: -5.5,41.5 - parent: 82 - type: Transform -- uid: 16234 - type: CableApcExtension - components: - - pos: -5.5,40.5 - parent: 82 - type: Transform -- uid: 16235 - type: CableApcExtension - components: - - pos: -5.5,39.5 - parent: 82 - type: Transform -- uid: 16236 - type: CableApcExtension - components: - - pos: -5.5,38.5 - parent: 82 - type: Transform -- uid: 16237 - type: CableApcExtension - components: - - pos: -13.5,44.5 - parent: 82 - type: Transform -- uid: 16238 - type: CableApcExtension - components: - - pos: -14.5,44.5 - parent: 82 - type: Transform -- uid: 16239 - type: CableApcExtension - components: - - pos: -15.5,44.5 - parent: 82 - type: Transform -- uid: 16240 - type: CableApcExtension - components: - - pos: -16.5,44.5 - parent: 82 - type: Transform -- uid: 16241 - type: CableApcExtension - components: - - pos: -17.5,44.5 - parent: 82 - type: Transform -- uid: 16242 - type: CableApcExtension - components: - - pos: -12.5,43.5 - parent: 82 - type: Transform -- uid: 16243 - type: CableApcExtension - components: - - pos: -12.5,42.5 - parent: 82 - type: Transform -- uid: 16244 - type: CableApcExtension - components: - - pos: -12.5,41.5 - parent: 82 - type: Transform -- uid: 16245 - type: CableApcExtension - components: - - pos: -12.5,40.5 - parent: 82 - type: Transform -- uid: 16246 - type: CableApcExtension - components: - - pos: -12.5,39.5 - parent: 82 - type: Transform -- uid: 16247 - type: CableApcExtension - components: - - pos: -12.5,38.5 - parent: 82 - type: Transform -- uid: 16248 - type: CableApcExtension - components: - - pos: -12.5,37.5 - parent: 82 - type: Transform -- uid: 16249 - type: CableApcExtension - components: - - pos: -12.5,36.5 - parent: 82 - type: Transform -- uid: 16250 - type: CableApcExtension - components: - - pos: -12.5,35.5 - parent: 82 - type: Transform -- uid: 16251 - type: CableApcExtension - components: - - pos: -11.5,35.5 - parent: 82 - type: Transform -- uid: 16252 - type: CableApcExtension - components: - - pos: -10.5,35.5 - parent: 82 - type: Transform -- uid: 16253 - type: CableApcExtension - components: - - pos: -9.5,35.5 - parent: 82 - type: Transform -- uid: 16254 - type: CableApcExtension - components: - - pos: -8.5,35.5 - parent: 82 - type: Transform -- uid: 16255 - type: CableApcExtension - components: - - pos: -8.5,34.5 - parent: 82 - type: Transform -- uid: 16256 - type: CableApcExtension - components: - - pos: -8.5,33.5 - parent: 82 - type: Transform -- uid: 16257 - type: CableApcExtension - components: - - pos: -9.5,33.5 - parent: 82 - type: Transform -- uid: 16258 - type: CableApcExtension - components: - - pos: -10.5,33.5 - parent: 82 - type: Transform -- uid: 16259 - type: CableApcExtension - components: - - pos: -10.5,34.5 - parent: 82 - type: Transform -- uid: 16260 - type: CableApcExtension - components: - - pos: -13.5,35.5 - parent: 82 - type: Transform -- uid: 16261 - type: CableApcExtension - components: - - pos: -14.5,35.5 - parent: 82 - type: Transform -- uid: 16262 - type: CableApcExtension - components: - - pos: -15.5,35.5 - parent: 82 - type: Transform -- uid: 16263 - type: CableApcExtension - components: - - pos: -16.5,35.5 - parent: 82 - type: Transform -- uid: 16264 - type: CableApcExtension - components: - - pos: -16.5,34.5 - parent: 82 - type: Transform -- uid: 16265 - type: CableApcExtension - components: - - pos: -16.5,33.5 - parent: 82 - type: Transform -- uid: 16266 - type: CableApcExtension - components: - - pos: -16.5,32.5 - parent: 82 - type: Transform -- uid: 16267 - type: CableApcExtension - components: - - pos: -16.5,31.5 - parent: 82 - type: Transform -- uid: 16268 - type: CableApcExtension - components: - - pos: -15.5,31.5 - parent: 82 - type: Transform -- uid: 16269 - type: CableApcExtension - components: - - pos: -14.5,31.5 - parent: 82 - type: Transform -- uid: 16270 - type: CableApcExtension - components: - - pos: -13.5,31.5 - parent: 82 - type: Transform -- uid: 16271 - type: CableApcExtension - components: - - pos: -12.5,31.5 - parent: 82 - type: Transform -- uid: 16272 - type: CableApcExtension - components: - - pos: -11.5,31.5 - parent: 82 - type: Transform -- uid: 16273 - type: CableApcExtension - components: - - pos: -10.5,31.5 - parent: 82 - type: Transform -- uid: 16274 - type: CableApcExtension - components: - - pos: -9.5,31.5 - parent: 82 - type: Transform -- uid: 16275 - type: CableApcExtension - components: - - pos: -8.5,31.5 - parent: 82 - type: Transform -- uid: 16276 - type: CableApcExtension - components: - - pos: -7.5,31.5 - parent: 82 - type: Transform -- uid: 16277 - type: CableApcExtension - components: - - pos: -6.5,31.5 - parent: 82 - type: Transform -- uid: 16278 - type: CableApcExtension - components: - - pos: -5.5,31.5 - parent: 82 - type: Transform -- uid: 16279 - type: CableApcExtension - components: - - pos: -5.5,32.5 - parent: 82 - type: Transform -- uid: 16280 - type: CableApcExtension - components: - - pos: -5.5,33.5 - parent: 82 - type: Transform -- uid: 16281 - type: CableApcExtension - components: - - pos: -5.5,34.5 - parent: 82 - type: Transform -- uid: 16282 - type: CableApcExtension - components: - - pos: -5.5,35.5 - parent: 82 - type: Transform -- uid: 16283 - type: CableApcExtension - components: - - pos: -5.5,36.5 - parent: 82 - type: Transform -- uid: 16284 - type: CableApcExtension - components: - - pos: -5.5,37.5 - parent: 82 - type: Transform -- uid: 16285 - type: CableApcExtension - components: - - pos: -5.5,38.5 - parent: 82 - type: Transform -- uid: 16286 - type: CableApcExtension - components: - - pos: -16.5,36.5 - parent: 82 - type: Transform -- uid: 16287 - type: CableApcExtension - components: - - pos: -16.5,37.5 - parent: 82 - type: Transform -- uid: 16288 - type: CableApcExtension - components: - - pos: -16.5,38.5 - parent: 82 - type: Transform -- uid: 16289 - type: CableApcExtension - components: - - pos: -16.5,39.5 - parent: 82 - type: Transform -- uid: 16290 - type: CableApcExtension - components: - - pos: -16.5,40.5 - parent: 82 - type: Transform -- uid: 16291 - type: CableApcExtension - components: - - pos: -15.5,40.5 - parent: 82 - type: Transform -- uid: 16292 - type: CableApcExtension - components: - - pos: -14.5,40.5 - parent: 82 - type: Transform -- uid: 16293 - type: CableApcExtension - components: - - pos: -13.5,40.5 - parent: 82 - type: Transform -- uid: 16294 - type: CableMV - components: - - pos: -13.5,40.5 - parent: 82 - type: Transform -- uid: 16295 - type: CableMV - components: - - pos: -14.5,40.5 - parent: 82 - type: Transform -- uid: 16296 - type: CableMV - components: - - pos: -15.5,40.5 - parent: 82 - type: Transform -- uid: 16297 - type: CableMV - components: - - pos: -16.5,40.5 - parent: 82 - type: Transform -- uid: 16298 - type: CableMV - components: - - pos: -17.5,40.5 - parent: 82 - type: Transform -- uid: 16299 - type: CableMV - components: - - pos: -18.5,40.5 - parent: 82 - type: Transform -- uid: 16300 - type: CableMV - components: - - pos: -19.5,40.5 - parent: 82 - type: Transform -- uid: 16301 - type: CableMV - components: - - pos: -19.5,41.5 - parent: 82 - type: Transform -- uid: 16302 - type: CableHV - components: - - pos: -21.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16303 - type: CableHV - components: - - pos: -21.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16304 - type: CableMV - components: - - pos: -19.5,42.5 - parent: 82 - type: Transform -- uid: 16305 - type: CableMV - components: - - pos: -19.5,43.5 - parent: 82 - type: Transform -- uid: 16306 - type: CableMV - components: - - pos: -19.5,44.5 - parent: 82 - type: Transform -- uid: 16307 - type: CableMV - components: - - pos: -20.5,44.5 - parent: 82 - type: Transform -- uid: 16308 - type: CableMV - components: - - pos: -21.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16309 - type: CableMV - components: - - pos: -22.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16310 - type: CableMV - components: - - pos: -22.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16311 - type: CableMV - components: - - pos: -22.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16312 - type: CableMV - components: - - pos: -22.5,41.5 - parent: 82 - type: Transform -- uid: 16313 - type: CableMV - components: - - pos: -22.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16314 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -22.5,40.5 - parent: 82 - type: Transform -- uid: 16315 - type: CableApcExtension - components: - - pos: -22.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16316 - type: CableApcExtension - components: - - pos: -22.5,39.5 - parent: 82 - type: Transform -- uid: 16317 - type: CableApcExtension - components: - - pos: -22.5,38.5 - parent: 82 - type: Transform -- uid: 16318 - type: CableApcExtension - components: - - pos: -22.5,37.5 - parent: 82 - type: Transform -- uid: 16319 - type: CableApcExtension - components: - - pos: -22.5,36.5 - parent: 82 - type: Transform -- uid: 16320 - type: CableApcExtension - components: - - pos: -23.5,36.5 - parent: 82 - type: Transform -- uid: 16321 - type: CableApcExtension - components: - - pos: -24.5,36.5 - parent: 82 - type: Transform -- uid: 16322 - type: CableApcExtension - components: - - pos: -25.5,36.5 - parent: 82 - type: Transform -- uid: 16323 - type: CableApcExtension - components: - - pos: -26.5,36.5 - parent: 82 - type: Transform -- uid: 16324 - type: CableApcExtension - components: - - pos: -27.5,36.5 - parent: 82 - type: Transform -- uid: 16325 - type: CableApcExtension - components: - - pos: -27.5,37.5 - parent: 82 - type: Transform -- uid: 16326 - type: CableApcExtension - components: - - pos: -27.5,38.5 - parent: 82 - type: Transform -- uid: 16327 - type: CableApcExtension - components: - - pos: -27.5,39.5 - parent: 82 - type: Transform -- uid: 16328 - type: CableApcExtension - components: - - pos: -26.5,39.5 - parent: 82 - type: Transform -- uid: 16329 - type: CableApcExtension - components: - - pos: -25.5,39.5 - parent: 82 - type: Transform -- uid: 16330 - type: CableApcExtension - components: - - pos: -24.5,39.5 - parent: 82 - type: Transform -- uid: 16331 - type: CableApcExtension - components: - - pos: -23.5,39.5 - parent: 82 - type: Transform -- uid: 16332 - type: CableApcExtension - components: - - pos: -22.5,41.5 - parent: 82 - type: Transform -- uid: 16333 - type: CableApcExtension - components: - - pos: -22.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16334 - type: CableApcExtension - components: - - pos: -22.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16335 - type: CableApcExtension - components: - - pos: -22.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16336 - type: CableApcExtension - components: - - pos: -22.5,45.5 - parent: 82 - type: Transform -- uid: 16337 - type: CableApcExtension - components: - - pos: -23.5,45.5 - parent: 82 - type: Transform -- uid: 16338 - type: CableApcExtension - components: - - pos: -24.5,45.5 - parent: 82 - type: Transform -- uid: 16339 - type: CableApcExtension - components: - - pos: -25.5,45.5 - parent: 82 - type: Transform -- uid: 16340 - type: CableApcExtension - components: - - pos: -26.5,45.5 - parent: 82 - type: Transform -- uid: 16341 - type: CableApcExtension - components: - - pos: -27.5,45.5 - parent: 82 - type: Transform -- uid: 16342 - type: CableApcExtension - components: - - pos: -28.5,45.5 - parent: 82 - type: Transform -- uid: 16343 - type: CableApcExtension - components: - - pos: -28.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16344 - type: CableApcExtension - components: - - pos: -28.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16345 - type: CableApcExtension - components: - - pos: -28.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16346 - type: CableApcExtension - components: - - pos: -28.5,41.5 - parent: 82 - type: Transform -- uid: 16347 - type: CableApcExtension - components: - - pos: -27.5,41.5 - parent: 82 - type: Transform -- uid: 16348 - type: CableApcExtension - components: - - pos: -26.5,41.5 - parent: 82 - type: Transform -- uid: 16349 - type: CableApcExtension - components: - - pos: -25.5,41.5 - parent: 82 - type: Transform -- uid: 16350 - type: CableApcExtension - components: - - pos: -24.5,41.5 - parent: 82 - type: Transform -- uid: 16351 - type: CableApcExtension - components: - - pos: -23.5,41.5 - parent: 82 - type: Transform -- uid: 16352 - type: CableApcExtension - components: - - pos: -21.5,41.5 - parent: 82 - type: Transform -- uid: 16353 - type: CableApcExtension - components: - - pos: -20.5,41.5 - parent: 82 - type: Transform -- uid: 16354 - type: CableApcExtension - components: - - pos: -20.5,42.5 - parent: 82 - type: Transform -- uid: 16355 - type: CableApcExtension - components: - - pos: -20.5,43.5 - parent: 82 - type: Transform -- uid: 16356 - type: CableApcExtension - components: - - pos: -20.5,44.5 - parent: 82 - type: Transform -- uid: 16357 - type: CableApcExtension - components: - - pos: -20.5,45.5 - parent: 82 - type: Transform -- uid: 16358 - type: CableApcExtension - components: - - pos: -20.5,46.5 - parent: 82 - type: Transform -- uid: 16359 - type: CableApcExtension - components: - - pos: -20.5,47.5 - parent: 82 - type: Transform -- uid: 16360 - type: CableApcExtension - components: - - pos: -20.5,48.5 - parent: 82 - type: Transform -- uid: 16361 - type: CableApcExtension - components: - - pos: -20.5,49.5 - parent: 82 - type: Transform -- uid: 16362 - type: CableApcExtension - components: - - pos: -20.5,50.5 - parent: 82 - type: Transform -- uid: 16363 - type: CableApcExtension - components: - - pos: -21.5,50.5 - parent: 82 - type: Transform -- uid: 16364 - type: CableApcExtension - components: - - pos: -22.5,50.5 - parent: 82 - type: Transform -- uid: 16365 - type: CableApcExtension - components: - - pos: -23.5,50.5 - parent: 82 - type: Transform -- uid: 16366 - type: CableApcExtension - components: - - pos: -24.5,50.5 - parent: 82 - type: Transform -- uid: 16367 - type: CableApcExtension - components: - - pos: -25.5,50.5 - parent: 82 - type: Transform -- uid: 16368 - type: CableApcExtension - components: - - pos: -26.5,50.5 - parent: 82 - type: Transform -- uid: 16369 - type: CableApcExtension - components: - - pos: -27.5,50.5 - parent: 82 - type: Transform -- uid: 16370 - type: CableApcExtension - components: - - pos: -28.5,50.5 - parent: 82 - type: Transform -- uid: 16371 - type: CableApcExtension - components: - - pos: -28.5,49.5 - parent: 82 - type: Transform -- uid: 16372 - type: CableApcExtension - components: - - pos: -28.5,48.5 - parent: 82 - type: Transform -- uid: 16373 - type: CableApcExtension - components: - - pos: -28.5,47.5 - parent: 82 - type: Transform -- uid: 16374 - type: CableApcExtension - components: - - pos: -27.5,47.5 - parent: 82 - type: Transform -- uid: 16375 - type: CableApcExtension - components: - - pos: -26.5,47.5 - parent: 82 - type: Transform -- uid: 16376 - type: CableApcExtension - components: - - pos: -25.5,47.5 - parent: 82 - type: Transform -- uid: 16377 - type: CableApcExtension - components: - - pos: -24.5,47.5 - parent: 82 - type: Transform -- uid: 16378 - type: CableApcExtension - components: - - pos: -23.5,47.5 - parent: 82 - type: Transform -- uid: 16379 - type: CableApcExtension - components: - - pos: -22.5,47.5 - parent: 82 - type: Transform -- uid: 16380 - type: CableApcExtension - components: - - pos: -21.5,47.5 - parent: 82 - type: Transform -- uid: 16381 - type: CableApcExtension - components: - - pos: -28.5,37.5 - parent: 82 - type: Transform -- uid: 16382 - type: CableApcExtension - components: - - pos: -29.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16383 - type: CableApcExtension - components: - - pos: -30.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16384 - type: CableApcExtension - components: - - pos: -30.5,38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16385 - type: CableApcExtension - components: - - pos: -30.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16386 - type: CableApcExtension - components: - - pos: -30.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16387 - type: CableApcExtension - components: - - pos: -30.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16388 - type: CableApcExtension - components: - - pos: -30.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16389 - type: CableApcExtension - components: - - pos: -30.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16390 - type: CableApcExtension - components: - - pos: -30.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16391 - type: CableApcExtension - components: - - pos: -30.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16392 - type: CableApcExtension - components: - - pos: -30.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16393 - type: CableApcExtension - components: - - pos: -30.5,47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16394 - type: CableApcExtension - components: - - pos: -30.5,48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16395 - type: CableApcExtension - components: - - pos: -30.5,49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16396 - type: CableApcExtension - components: - - pos: -30.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16397 - type: CableApcExtension - components: - - pos: -31.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16398 - type: CableApcExtension - components: - - pos: -31.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16399 - type: CableApcExtension - components: - - pos: -30.5,36.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16400 - type: CableApcExtension - components: - - pos: -30.5,35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16401 - type: CableApcExtension - components: - - pos: -30.5,34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16402 - type: CableApcExtension - components: - - pos: -31.5,34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16403 - type: CableApcExtension - components: - - pos: -31.5,33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16404 - type: CableApcExtension - components: - - pos: -31.5,32.5 - parent: 82 - type: Transform -- uid: 16405 - type: CableApcExtension - components: - - pos: -31.5,31.5 - parent: 82 - type: Transform -- uid: 16406 - type: CableApcExtension - components: - - pos: -30.5,31.5 - parent: 82 - type: Transform -- uid: 16407 - type: CableApcExtension - components: - - pos: -29.5,31.5 - parent: 82 - type: Transform -- uid: 16408 - type: CableApcExtension - components: - - pos: -28.5,31.5 - parent: 82 - type: Transform -- uid: 16409 - type: CableApcExtension - components: - - pos: -27.5,31.5 - parent: 82 - type: Transform -- uid: 16410 - type: CableApcExtension - components: - - pos: -26.5,31.5 - parent: 82 - type: Transform -- uid: 16411 - type: CableApcExtension - components: - - pos: -25.5,31.5 - parent: 82 - type: Transform -- uid: 16412 - type: CableApcExtension - components: - - pos: -24.5,31.5 - parent: 82 - type: Transform -- uid: 16413 - type: CableApcExtension - components: - - pos: -23.5,31.5 - parent: 82 - type: Transform -- uid: 16414 - type: CableApcExtension - components: - - pos: -22.5,31.5 - parent: 82 - type: Transform -- uid: 16415 - type: CableApcExtension - components: - - pos: -21.5,31.5 - parent: 82 - type: Transform -- uid: 16416 - type: CableApcExtension - components: - - pos: -20.5,31.5 - parent: 82 - type: Transform -- uid: 16417 - type: CableApcExtension - components: - - pos: -19.5,31.5 - parent: 82 - type: Transform -- uid: 16418 - type: CableApcExtension - components: - - pos: -19.5,32.5 - parent: 82 - type: Transform -- uid: 16419 - type: CableApcExtension - components: - - pos: -19.5,33.5 - parent: 82 - type: Transform -- uid: 16420 - type: CableApcExtension - components: - - pos: -19.5,34.5 - parent: 82 - type: Transform -- uid: 16421 - type: CableApcExtension - components: - - pos: -19.5,35.5 - parent: 82 - type: Transform -- uid: 16422 - type: CableApcExtension - components: - - pos: -19.5,36.5 - parent: 82 - type: Transform -- uid: 16423 - type: CableApcExtension - components: - - pos: -19.5,37.5 - parent: 82 - type: Transform -- uid: 16424 - type: CableApcExtension - components: - - pos: -19.5,38.5 - parent: 82 - type: Transform -- uid: 16425 - type: CableApcExtension - components: - - pos: -20.5,38.5 - parent: 82 - type: Transform -- uid: 16426 - type: CableApcExtension - components: - - pos: -21.5,38.5 - parent: 82 - type: Transform -- uid: 16427 - type: CableApcExtension - components: - - pos: -20.5,40.5 - parent: 82 - type: Transform -- uid: 16428 - type: CableApcExtension - components: - - pos: -20.5,39.5 - parent: 82 - type: Transform -- uid: 16429 - type: ToiletDirtyWater - components: - - rot: -1.5707963267948966 rad - pos: -25.5,34.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 16430 - type: CableApcExtension - components: - - pos: -29.5,34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16431 - type: CableApcExtension - components: - - pos: -28.5,34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16432 - type: CableApcExtension - components: - - pos: -27.5,34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16433 - type: AirlockMaint - components: - - pos: -27.5,34.5 - parent: 82 - type: Transform -- uid: 16434 - type: AirlockMaintLocked - components: - - pos: -31.5,32.5 - parent: 82 - type: Transform -- uid: 16435 - type: CableHV - components: - - pos: -30.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16436 - type: CableHV - components: - - pos: -30.5,36.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16437 - type: CableHV - components: - - pos: -30.5,35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16438 - type: CableHV - components: - - pos: -30.5,34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16439 - type: CableHV - components: - - pos: -31.5,34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16440 - type: CableHV - components: - - pos: -31.5,33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16441 - type: CableHV - components: - - pos: -30.5,38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16442 - type: CableHV - components: - - pos: -30.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16443 - type: CableHV - components: - - pos: -30.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16444 - type: CableHV - components: - - pos: -30.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16445 - type: CableHV - components: - - pos: -30.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16446 - type: CableHV - components: - - pos: -30.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16447 - type: CableHV - components: - - pos: -30.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16448 - type: CableHV - components: - - pos: -30.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16449 - type: CableHV - components: - - pos: -30.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16450 - type: CableHV - components: - - pos: -30.5,47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16451 - type: CableHV - components: - - pos: -30.5,48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16452 - type: CableHV - components: - - pos: -30.5,49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16453 - type: CableHV - components: - - pos: -30.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16454 - type: CableHV - components: - - pos: -31.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16455 - type: CableHV - components: - - pos: -31.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16456 - type: CableHV - components: - - pos: -31.5,32.5 - parent: 82 - type: Transform -- uid: 16457 - type: CableHV - components: - - pos: -31.5,31.5 - parent: 82 - type: Transform -- uid: 16458 - type: CableHV - components: - - pos: -30.5,31.5 - parent: 82 - type: Transform -- uid: 16459 - type: CableHV - components: - - pos: -29.5,31.5 - parent: 82 - type: Transform -- uid: 16460 - type: CableHV - components: - - pos: -28.5,31.5 - parent: 82 - type: Transform -- uid: 16461 - type: CableHV - components: - - pos: -27.5,31.5 - parent: 82 - type: Transform -- uid: 16462 - type: CableHV - components: - - pos: -26.5,31.5 - parent: 82 - type: Transform -- uid: 16463 - type: CableHV - components: - - pos: -25.5,31.5 - parent: 82 - type: Transform -- uid: 16464 - type: CableHV - components: - - pos: -24.5,31.5 - parent: 82 - type: Transform -- uid: 16465 - type: CableMV - components: - - pos: -23.5,41.5 - parent: 82 - type: Transform -- uid: 16466 - type: CableMV - components: - - pos: -24.5,41.5 - parent: 82 - type: Transform -- uid: 16467 - type: CableMV - components: - - pos: -25.5,41.5 - parent: 82 - type: Transform -- uid: 16468 - type: CableMV - components: - - pos: -25.5,40.5 - parent: 82 - type: Transform -- uid: 16469 - type: CableMV - components: - - pos: -25.5,39.5 - parent: 82 - type: Transform -- uid: 16470 - type: CableMV - components: - - pos: -25.5,38.5 - parent: 82 - type: Transform -- uid: 16471 - type: CableMV - components: - - pos: -25.5,37.5 - parent: 82 - type: Transform -- uid: 16472 - type: CableMV - components: - - pos: -26.5,37.5 - parent: 82 - type: Transform -- uid: 16473 - type: CableMV - components: - - pos: -27.5,37.5 - parent: 82 - type: Transform -- uid: 16474 - type: CableMV - components: - - pos: -28.5,37.5 - parent: 82 - type: Transform -- uid: 16475 - type: CableMV - components: - - pos: -29.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16476 - type: CableMV - components: - - pos: -30.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16477 - type: CableMV - components: - - pos: -30.5,36.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16478 - type: CableMV - components: - - pos: -30.5,35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16479 - type: CableMV - components: - - pos: -30.5,34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16480 - type: CableMV - components: - - pos: -31.5,34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16481 - type: CableMV - components: - - pos: -31.5,33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16482 - type: CableMV - components: - - pos: -31.5,32.5 - parent: 82 - type: Transform -- uid: 16483 - type: CableMV - components: - - pos: -31.5,31.5 - parent: 82 - type: Transform -- uid: 16484 - type: CableMV - components: - - pos: -32.5,31.5 - parent: 82 - type: Transform -- uid: 16485 - type: CableMV - components: - - pos: -33.5,31.5 - parent: 82 - type: Transform -- uid: 16486 - type: CableMV - components: - - pos: -34.5,31.5 - parent: 82 - type: Transform -- uid: 16487 - type: CableMV - components: - - pos: -35.5,31.5 - parent: 82 - type: Transform -- uid: 16488 - type: CableMV - components: - - pos: -36.5,31.5 - parent: 82 - type: Transform -- uid: 16489 - type: CableMV - components: - - pos: -37.5,31.5 - parent: 82 - type: Transform -- uid: 16490 - type: CableMV - components: - - pos: -38.5,31.5 - parent: 82 - type: Transform -- uid: 16491 - type: CableMV - components: - - pos: -39.5,31.5 - parent: 82 - type: Transform -- uid: 16492 - type: CableMV - components: - - pos: -39.5,31.5 - parent: 82 - type: Transform -- uid: 16493 - type: CableMV - components: - - pos: -39.5,30.5 - parent: 82 - type: Transform -- uid: 16494 - type: CableMV - components: - - pos: -39.5,29.5 - parent: 82 - type: Transform -- uid: 16495 - type: CableMV - components: - - pos: -39.5,28.5 - parent: 82 - type: Transform -- uid: 16496 - type: CableMV - components: - - pos: -39.5,27.5 - parent: 82 - type: Transform -- uid: 16497 - type: CableMV - components: - - pos: -39.5,26.5 - parent: 82 - type: Transform -- uid: 16498 - type: CableMV - components: - - pos: -38.5,26.5 - parent: 82 - type: Transform -- uid: 16499 - type: CableMV - components: - - pos: -37.5,26.5 - parent: 82 - type: Transform -- uid: 16500 - type: CableMV - components: - - pos: -36.5,26.5 - parent: 82 - type: Transform -- uid: 16501 - type: CableMV - components: - - pos: -35.5,26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16502 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -35.5,26.5 - parent: 82 - type: Transform -- uid: 16503 - type: CableApcExtension - components: - - pos: -35.5,26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16504 - type: CableApcExtension - components: - - pos: -34.5,26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16505 - type: CableApcExtension - components: - - pos: -33.5,26.5 - parent: 82 - type: Transform -- uid: 16506 - type: CableApcExtension - components: - - pos: -32.5,26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16507 - type: CableApcExtension - components: - - pos: -31.5,26.5 - parent: 82 - type: Transform -- uid: 16508 - type: CableApcExtension - components: - - pos: -30.5,26.5 - parent: 82 - type: Transform -- uid: 16509 - type: CableApcExtension - components: - - pos: -29.5,26.5 - parent: 82 - type: Transform -- uid: 16510 - type: CableApcExtension - components: - - pos: -28.5,26.5 - parent: 82 - type: Transform -- uid: 16511 - type: CableApcExtension - components: - - pos: -27.5,26.5 - parent: 82 - type: Transform -- uid: 16512 - type: CableApcExtension - components: - - pos: -26.5,26.5 - parent: 82 - type: Transform -- uid: 16513 - type: CableApcExtension - components: - - pos: -25.5,26.5 - parent: 82 - type: Transform -- uid: 16514 - type: CableApcExtension - components: - - pos: -25.5,27.5 - parent: 82 - type: Transform -- uid: 16515 - type: CableApcExtension - components: - - pos: -25.5,28.5 - parent: 82 - type: Transform -- uid: 16516 - type: CableApcExtension - components: - - pos: -25.5,29.5 - parent: 82 - type: Transform -- uid: 16517 - type: CableApcExtension - components: - - pos: -26.5,29.5 - parent: 82 - type: Transform -- uid: 16518 - type: CableApcExtension - components: - - pos: -27.5,29.5 - parent: 82 - type: Transform -- uid: 16519 - type: CableApcExtension - components: - - pos: -28.5,29.5 - parent: 82 - type: Transform -- uid: 16520 - type: CableApcExtension - components: - - pos: -29.5,29.5 - parent: 82 - type: Transform -- uid: 16521 - type: CableApcExtension - components: - - pos: -30.5,29.5 - parent: 82 - type: Transform -- uid: 16522 - type: CableApcExtension - components: - - pos: -31.5,29.5 - parent: 82 - type: Transform -- uid: 16523 - type: CableApcExtension - components: - - pos: -32.5,29.5 - parent: 82 - type: Transform -- uid: 16524 - type: CableApcExtension - components: - - pos: -33.5,29.5 - parent: 82 - type: Transform -- uid: 16525 - type: CableApcExtension - components: - - pos: -34.5,29.5 - parent: 82 - type: Transform -- uid: 16526 - type: CableApcExtension - components: - - pos: -35.5,29.5 - parent: 82 - type: Transform -- uid: 16527 - type: CableApcExtension - components: - - pos: -36.5,29.5 - parent: 82 - type: Transform -- uid: 16528 - type: CableApcExtension - components: - - pos: -37.5,29.5 - parent: 82 - type: Transform -- uid: 16529 - type: CableApcExtension - components: - - pos: -38.5,29.5 - parent: 82 - type: Transform -- uid: 16530 - type: CableApcExtension - components: - - pos: -39.5,29.5 - parent: 82 - type: Transform -- uid: 16531 - type: CableApcExtension - components: - - pos: -39.5,28.5 - parent: 82 - type: Transform -- uid: 16532 - type: CableApcExtension - components: - - pos: -39.5,27.5 - parent: 82 - type: Transform -- uid: 16533 - type: CableApcExtension - components: - - pos: -39.5,26.5 - parent: 82 - type: Transform -- uid: 16534 - type: CableApcExtension - components: - - pos: -37.5,26.5 - parent: 82 - type: Transform -- uid: 16535 - type: CableApcExtension - components: - - pos: -38.5,26.5 - parent: 82 - type: Transform -- uid: 16536 - type: CableApcExtension - components: - - pos: -36.5,26.5 - parent: 82 - type: Transform -- uid: 16537 - type: CableApcExtension - components: - - pos: -34.5,27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16538 - type: CableApcExtension - components: - - pos: -34.5,28.5 - parent: 82 - type: Transform -- uid: 16539 - type: CableApcExtension - components: - - pos: -34.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16540 - type: CableApcExtension - components: - - pos: -34.5,24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16541 - type: CableApcExtension - components: - - pos: -34.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16542 - type: CableApcExtension - components: - - pos: -35.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16543 - type: CableApcExtension - components: - - pos: -36.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16544 - type: CableApcExtension - components: - - pos: -37.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16545 - type: CableApcExtension - components: - - pos: -38.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16546 - type: CableApcExtension - components: - - pos: -39.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16547 - type: CableApcExtension - components: - - pos: -40.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16548 - type: CableApcExtension - components: - - pos: -41.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16549 - type: CableApcExtension - components: - - pos: -42.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16550 - type: CableApcExtension - components: - - pos: -43.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16551 - type: CableApcExtension - components: - - pos: -44.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16552 - type: CableApcExtension - components: - - pos: -45.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16553 - type: CableApcExtension - components: - - pos: -46.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16554 - type: CableApcExtension - components: - - pos: -47.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16555 - type: CableApcExtension - components: - - pos: -47.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16556 - type: CableApcExtension - components: - - pos: -47.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16557 - type: CableApcExtension - components: - - pos: -47.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16558 - type: CableApcExtension - components: - - pos: -47.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16559 - type: CableApcExtension - components: - - pos: -47.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16560 - type: CableApcExtension - components: - - pos: -47.5,17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16561 - type: CableApcExtension - components: - - pos: -47.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16562 - type: CableApcExtension - components: - - pos: -47.5,15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16563 - type: CableApcExtension - components: - - pos: -47.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16564 - type: CableApcExtension - components: - - pos: -48.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16565 - type: CableApcExtension - components: - - pos: -48.5,13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16566 - type: CableApcExtension - components: - - pos: -48.5,12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16567 - type: CableApcExtension - components: - - pos: -48.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16568 - type: CableApcExtension - components: - - pos: -48.5,10.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16569 - type: CableApcExtension - components: - - pos: -48.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16570 - type: CableApcExtension - components: - - pos: -48.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16571 - type: CableApcExtension - components: - - pos: -48.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16572 - type: CableApcExtension - components: - - pos: -46.5,24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16573 - type: CableApcExtension - components: - - pos: -46.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16574 - type: CableApcExtension - components: - - pos: -46.5,26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16575 - type: CableApcExtension - components: - - pos: -46.5,27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16576 - type: CableApcExtension - components: - - pos: -46.5,28.5 - parent: 82 - type: Transform -- uid: 16577 - type: CableApcExtension - components: - - pos: -46.5,29.5 - parent: 82 - type: Transform -- uid: 16578 - type: CableApcExtension - components: - - pos: -45.5,29.5 - parent: 82 - type: Transform -- uid: 16579 - type: CableApcExtension - components: - - pos: -44.5,29.5 - parent: 82 - type: Transform -- uid: 16580 - type: CableApcExtension - components: - - pos: -43.5,29.5 - parent: 82 - type: Transform -- uid: 16581 - type: CableApcExtension - components: - - pos: -42.5,29.5 - parent: 82 - type: Transform -- uid: 16582 - type: CableApcExtension - components: - - pos: -41.5,29.5 - parent: 82 - type: Transform -- uid: 16583 - type: CableApcExtension - components: - - pos: -40.5,29.5 - parent: 82 - type: Transform -- uid: 16584 - type: CableApcExtension - components: - - pos: -47.5,29.5 - parent: 82 - type: Transform -- uid: 16585 - type: CableApcExtension - components: - - pos: -48.5,29.5 - parent: 82 - type: Transform -- uid: 16586 - type: CableApcExtension - components: - - pos: -49.5,29.5 - parent: 82 - type: Transform -- uid: 16587 - type: CableApcExtension - components: - - pos: -50.5,29.5 - parent: 82 - type: Transform -- uid: 16588 - type: CableApcExtension - components: - - pos: -51.5,29.5 - parent: 82 - type: Transform -- uid: 16589 - type: CableApcExtension - components: - - pos: -52.5,29.5 - parent: 82 - type: Transform -- uid: 16590 - type: CableApcExtension - components: - - pos: -53.5,29.5 - parent: 82 - type: Transform -- uid: 16591 - type: CableApcExtension - components: - - pos: -54.5,29.5 - parent: 82 - type: Transform -- uid: 16592 - type: CableApcExtension - components: - - pos: -55.5,29.5 - parent: 82 - type: Transform -- uid: 16593 - type: CableApcExtension - components: - - pos: -56.5,29.5 - parent: 82 - type: Transform -- uid: 16594 - type: CableApcExtension - components: - - pos: -57.5,29.5 - parent: 82 - type: Transform -- uid: 16595 - type: CableApcExtension - components: - - pos: -57.5,30.5 - parent: 82 - type: Transform -- uid: 16596 - type: CableApcExtension - components: - - pos: -57.5,31.5 - parent: 82 - type: Transform -- uid: 16597 - type: CableApcExtension - components: - - pos: -57.5,32.5 - parent: 82 - type: Transform -- uid: 16598 - type: CableApcExtension - components: - - pos: -57.5,33.5 - parent: 82 - type: Transform -- uid: 16599 - type: CableApcExtension - components: - - pos: -57.5,34.5 - parent: 82 - type: Transform -- uid: 16600 - type: CableApcExtension - components: - - pos: -57.5,35.5 - parent: 82 - type: Transform -- uid: 16601 - type: CableApcExtension - components: - - pos: -57.5,36.5 - parent: 82 - type: Transform -- uid: 16602 - type: Window - components: - - pos: -61.5,-34.5 - parent: 82 - type: Transform -- uid: 16603 - type: AirlockMaint - components: - - pos: 30.5,55.5 - parent: 82 - type: Transform -- uid: 16604 - type: WallSolid - components: - - pos: 32.5,62.5 - parent: 82 - type: Transform -- uid: 16605 - type: CableApcExtension - components: - - pos: -57.5,37.5 - parent: 82 - type: Transform -- uid: 16606 - type: CableApcExtension - components: - - pos: -57.5,38.5 - parent: 82 - type: Transform -- uid: 16607 - type: CableApcExtension - components: - - pos: -57.5,39.5 - parent: 82 - type: Transform -- uid: 16608 - type: CableApcExtension - components: - - pos: -57.5,40.5 - parent: 82 - type: Transform -- uid: 16609 - type: CableApcExtension - components: - - pos: -57.5,41.5 - parent: 82 - type: Transform -- uid: 16610 - type: CableApcExtension - components: - - pos: -57.5,42.5 - parent: 82 - type: Transform -- uid: 16611 - type: CableApcExtension - components: - - pos: -57.5,43.5 - parent: 82 - type: Transform -- uid: 16612 - type: CableApcExtension - components: - - pos: -57.5,44.5 - parent: 82 - type: Transform -- uid: 16613 - type: CableApcExtension - components: - - pos: -57.5,45.5 - parent: 82 - type: Transform -- uid: 16614 - type: CableApcExtension - components: - - pos: -57.5,46.5 - parent: 82 - type: Transform -- uid: 16615 - type: CableApcExtension - components: - - pos: -57.5,47.5 - parent: 82 - type: Transform -- uid: 16616 - type: CableApcExtension - components: - - pos: -57.5,48.5 - parent: 82 - type: Transform -- uid: 16617 - type: CableApcExtension - components: - - pos: -57.5,49.5 - parent: 82 - type: Transform -- uid: 16618 - type: CableApcExtension - components: - - pos: -57.5,50.5 - parent: 82 - type: Transform -- uid: 16619 - type: CableApcExtension - components: - - pos: -57.5,51.5 - parent: 82 - type: Transform -- uid: 16620 - type: CableApcExtension - components: - - pos: -57.5,52.5 - parent: 82 - type: Transform -- uid: 16621 - type: CableApcExtension - components: - - pos: -57.5,53.5 - parent: 82 - type: Transform -- uid: 16622 - type: CableApcExtension - components: - - pos: -57.5,54.5 - parent: 82 - type: Transform -- uid: 16623 - type: CableApcExtension - components: - - pos: -58.5,54.5 - parent: 82 - type: Transform -- uid: 16624 - type: CableApcExtension - components: - - pos: -59.5,54.5 - parent: 82 - type: Transform -- uid: 16625 - type: CableApcExtension - components: - - pos: -60.5,54.5 - parent: 82 - type: Transform -- uid: 16626 - type: CableApcExtension - components: - - pos: -61.5,54.5 - parent: 82 - type: Transform -- uid: 16627 - type: CableApcExtension - components: - - pos: -61.5,53.5 - parent: 82 - type: Transform -- uid: 16628 - type: CableApcExtension - components: - - pos: -61.5,52.5 - parent: 82 - type: Transform -- uid: 16629 - type: CableApcExtension - components: - - pos: -61.5,51.5 - parent: 82 - type: Transform -- uid: 16630 - type: CableApcExtension - components: - - pos: -61.5,50.5 - parent: 82 - type: Transform -- uid: 16631 - type: CableApcExtension - components: - - pos: -61.5,49.5 - parent: 82 - type: Transform -- uid: 16632 - type: CableApcExtension - components: - - pos: -61.5,48.5 - parent: 82 - type: Transform -- uid: 16633 - type: CableApcExtension - components: - - pos: -61.5,47.5 - parent: 82 - type: Transform -- uid: 16634 - type: CableApcExtension - components: - - pos: -61.5,46.5 - parent: 82 - type: Transform -- uid: 16635 - type: CableApcExtension - components: - - pos: -61.5,45.5 - parent: 82 - type: Transform -- uid: 16636 - type: CableApcExtension - components: - - pos: -61.5,44.5 - parent: 82 - type: Transform -- uid: 16637 - type: CableApcExtension - components: - - pos: -61.5,43.5 - parent: 82 - type: Transform -- uid: 16638 - type: CableApcExtension - components: - - pos: -61.5,42.5 - parent: 82 - type: Transform -- uid: 16639 - type: CableApcExtension - components: - - pos: -61.5,41.5 - parent: 82 - type: Transform -- uid: 16640 - type: CableApcExtension - components: - - pos: -61.5,40.5 - parent: 82 - type: Transform -- uid: 16641 - type: CableApcExtension - components: - - pos: -61.5,39.5 - parent: 82 - type: Transform -- uid: 16642 - type: CableApcExtension - components: - - pos: -61.5,38.5 - parent: 82 - type: Transform -- uid: 16643 - type: CableApcExtension - components: - - pos: -61.5,37.5 - parent: 82 - type: Transform -- uid: 16644 - type: CableApcExtension - components: - - pos: -61.5,36.5 - parent: 82 - type: Transform -- uid: 16645 - type: CableApcExtension - components: - - pos: -61.5,35.5 - parent: 82 - type: Transform -- uid: 16646 - type: CableApcExtension - components: - - pos: -60.5,35.5 - parent: 82 - type: Transform -- uid: 16647 - type: CableApcExtension - components: - - pos: -59.5,35.5 - parent: 82 - type: Transform -- uid: 16648 - type: CableApcExtension - components: - - pos: -58.5,35.5 - parent: 82 - type: Transform -- uid: 16649 - type: CableApcExtension - components: - - pos: -62.5,39.5 - parent: 82 - type: Transform -- uid: 16650 - type: CableApcExtension - components: - - pos: -63.5,39.5 - parent: 82 - type: Transform -- uid: 16651 - type: CableApcExtension - components: - - pos: -63.5,38.5 - parent: 82 - type: Transform -- uid: 16652 - type: CableApcExtension - components: - - pos: -64.5,38.5 - parent: 82 - type: Transform -- uid: 16653 - type: CableApcExtension - components: - - pos: -65.5,38.5 - parent: 82 - type: Transform -- uid: 16654 - type: CableApcExtension - components: - - pos: -66.5,38.5 - parent: 82 - type: Transform -- uid: 16655 - type: CableApcExtension - components: - - pos: -63.5,40.5 - parent: 82 - type: Transform -- uid: 16656 - type: CableApcExtension - components: - - pos: -64.5,40.5 - parent: 82 - type: Transform -- uid: 16657 - type: CableApcExtension - components: - - pos: -65.5,40.5 - parent: 82 - type: Transform -- uid: 16658 - type: CableApcExtension - components: - - pos: -66.5,40.5 - parent: 82 - type: Transform -- uid: 16659 - type: CableApcExtension - components: - - pos: -62.5,46.5 - parent: 82 - type: Transform -- uid: 16660 - type: CableApcExtension - components: - - pos: -63.5,46.5 - parent: 82 - type: Transform -- uid: 16661 - type: CableApcExtension - components: - - pos: -64.5,46.5 - parent: 82 - type: Transform -- uid: 16662 - type: CableApcExtension - components: - - pos: -65.5,46.5 - parent: 82 - type: Transform -- uid: 16663 - type: CableApcExtension - components: - - pos: -66.5,46.5 - parent: 82 - type: Transform -- uid: 16664 - type: CableApcExtension - components: - - pos: -62.5,48.5 - parent: 82 - type: Transform -- uid: 16665 - type: CableApcExtension - components: - - pos: -63.5,48.5 - parent: 82 - type: Transform -- uid: 16666 - type: CableApcExtension - components: - - pos: -64.5,48.5 - parent: 82 - type: Transform -- uid: 16667 - type: CableApcExtension - components: - - pos: -65.5,48.5 - parent: 82 - type: Transform -- uid: 16668 - type: CableApcExtension - components: - - pos: -66.5,48.5 - parent: 82 - type: Transform -- uid: 16669 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -11.5,13.5 - parent: 82 - type: Transform -- uid: 16670 - type: CableMV - components: - - pos: -10.5,13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16671 - type: CableMV - components: - - pos: -11.5,13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16672 - type: CableApcExtension - components: - - pos: -12.5,13.5 - parent: 82 - type: Transform -- uid: 16673 - type: CableApcExtension - components: - - pos: -11.5,13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16674 - type: CableApcExtension - components: - - pos: -13.5,13.5 - parent: 82 - type: Transform -- uid: 16675 - type: CableApcExtension - components: - - pos: -14.5,13.5 - parent: 82 - type: Transform -- uid: 16676 - type: CableApcExtension - components: - - pos: -15.5,13.5 - parent: 82 - type: Transform -- uid: 16677 - type: CableApcExtension - components: - - pos: -16.5,13.5 - parent: 82 - type: Transform -- uid: 16678 - type: CableApcExtension - components: - - pos: -17.5,13.5 - parent: 82 - type: Transform -- uid: 16679 - type: CableApcExtension - components: - - pos: -18.5,13.5 - parent: 82 - type: Transform -- uid: 16680 - type: CableApcExtension - components: - - pos: -18.5,12.5 - parent: 82 - type: Transform -- uid: 16681 - type: CableApcExtension - components: - - pos: -18.5,11.5 - parent: 82 - type: Transform -- uid: 16682 - type: CableApcExtension - components: - - pos: -18.5,10.5 - parent: 82 - type: Transform -- uid: 16683 - type: CableApcExtension - components: - - pos: -18.5,9.5 - parent: 82 - type: Transform -- uid: 16684 - type: CableApcExtension - components: - - pos: -18.5,8.5 - parent: 82 - type: Transform -- uid: 16685 - type: CableApcExtension - components: - - pos: -18.5,7.5 - parent: 82 - type: Transform -- uid: 16686 - type: CableApcExtension - components: - - pos: -18.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16687 - type: CableApcExtension - components: - - pos: -17.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16688 - type: CableApcExtension - components: - - pos: -16.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16689 - type: CableApcExtension - components: - - pos: -17.5,14.5 - parent: 82 - type: Transform -- uid: 16690 - type: CableApcExtension - components: - - pos: -17.5,15.5 - parent: 82 - type: Transform -- uid: 16691 - type: CableApcExtension - components: - - pos: -17.5,16.5 - parent: 82 - type: Transform -- uid: 16692 - type: CableApcExtension - components: - - pos: -17.5,17.5 - parent: 82 - type: Transform -- uid: 16693 - type: CableApcExtension - components: - - pos: -17.5,18.5 - parent: 82 - type: Transform -- uid: 16694 - type: CableApcExtension - components: - - pos: -17.5,19.5 - parent: 82 - type: Transform -- uid: 16695 - type: CableApcExtension - components: - - pos: -17.5,20.5 - parent: 82 - type: Transform -- uid: 16696 - type: CableApcExtension - components: - - pos: -17.5,21.5 - parent: 82 - type: Transform -- uid: 16697 - type: CableApcExtension - components: - - pos: -16.5,21.5 - parent: 82 - type: Transform -- uid: 16698 - type: CableApcExtension - components: - - pos: -15.5,21.5 - parent: 82 - type: Transform -- uid: 16699 - type: CableApcExtension - components: - - pos: -14.5,21.5 - parent: 82 - type: Transform -- uid: 16700 - type: CableApcExtension - components: - - pos: -13.5,21.5 - parent: 82 - type: Transform -- uid: 16701 - type: CableApcExtension - components: - - pos: -12.5,21.5 - parent: 82 - type: Transform -- uid: 16702 - type: CableApcExtension - components: - - pos: -12.5,20.5 - parent: 82 - type: Transform -- uid: 16703 - type: CableApcExtension - components: - - pos: -12.5,19.5 - parent: 82 - type: Transform -- uid: 16704 - type: CableApcExtension - components: - - pos: -12.5,18.5 - parent: 82 - type: Transform -- uid: 16705 - type: CableApcExtension - components: - - pos: -12.5,17.5 - parent: 82 - type: Transform -- uid: 16706 - type: CableApcExtension - components: - - pos: -12.5,16.5 - parent: 82 - type: Transform -- uid: 16707 - type: CableApcExtension - components: - - pos: -12.5,15.5 - parent: 82 - type: Transform -- uid: 16708 - type: CableApcExtension - components: - - pos: -12.5,14.5 - parent: 82 - type: Transform -- uid: 16709 - type: CableApcExtension - components: - - pos: -18.5,18.5 - parent: 82 - type: Transform -- uid: 16710 - type: CableApcExtension - components: - - pos: -19.5,18.5 - parent: 82 - type: Transform -- uid: 16711 - type: CableApcExtension - components: - - pos: -20.5,18.5 - parent: 82 - type: Transform -- uid: 16712 - type: CableApcExtension - components: - - pos: -21.5,18.5 - parent: 82 - type: Transform -- uid: 16713 - type: CableApcExtension - components: - - pos: -21.5,17.5 - parent: 82 - type: Transform -- uid: 16714 - type: CableApcExtension - components: - - pos: -22.5,17.5 - parent: 82 - type: Transform -- uid: 16715 - type: CableApcExtension - components: - - pos: -23.5,17.5 - parent: 82 - type: Transform -- uid: 16716 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -27.5,21.5 - parent: 82 - type: Transform -- uid: 16717 - type: ComputerCriminalRecords - components: - - rot: 1.5707963267948966 rad - pos: -63.5,49.5 - parent: 82 - type: Transform -- uid: 16718 - type: Bola - components: - - pos: -26.568016,-37.447567 - parent: 82 - type: Transform -- uid: 16719 - type: PowerCellRecharger - components: - - pos: 38.5,29.5 - parent: 82 - type: Transform -- uid: 16720 - type: CableApcExtension - components: - - pos: -21.5,16.5 - parent: 82 - type: Transform -- uid: 16721 - type: CableApcExtension - components: - - pos: -21.5,15.5 - parent: 82 - type: Transform -- uid: 16722 - type: CableApcExtension - components: - - pos: -21.5,14.5 - parent: 82 - type: Transform -- uid: 16723 - type: CableApcExtension - components: - - pos: -21.5,13.5 - parent: 82 - type: Transform -- uid: 16724 - type: CableApcExtension - components: - - pos: -21.5,12.5 - parent: 82 - type: Transform -- uid: 16725 - type: CableApcExtension - components: - - pos: -21.5,11.5 - parent: 82 - type: Transform -- uid: 16726 - type: CableApcExtension - components: - - pos: -21.5,10.5 - parent: 82 - type: Transform -- uid: 16727 - type: CableApcExtension - components: - - pos: -21.5,9.5 - parent: 82 - type: Transform -- uid: 16728 - type: CableApcExtension - components: - - pos: -21.5,8.5 - parent: 82 - type: Transform -- uid: 16729 - type: CableApcExtension - components: - - pos: -21.5,7.5 - parent: 82 - type: Transform -- uid: 16730 - type: CableApcExtension - components: - - pos: -21.5,6.5 - parent: 82 - type: Transform -- uid: 16731 - type: CableApcExtension - components: - - pos: -20.5,6.5 - parent: 82 - type: Transform -- uid: 16732 - type: CableApcExtension - components: - - pos: -19.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16733 - type: CableApcExtension - components: - - pos: -21.5,5.5 - parent: 82 - type: Transform -- uid: 16734 - type: CableApcExtension - components: - - pos: -21.5,4.5 - parent: 82 - type: Transform -- uid: 16735 - type: CableApcExtension - components: - - pos: -21.5,3.5 - parent: 82 - type: Transform -- uid: 16736 - type: CableApcExtension - components: - - pos: -21.5,2.5 - parent: 82 - type: Transform -- uid: 16737 - type: CableApcExtension - components: - - pos: -21.5,1.5 - parent: 82 - type: Transform -- uid: 16738 - type: CableApcExtension - components: - - pos: -21.5,0.5 - parent: 82 - type: Transform -- uid: 16739 - type: CableApcExtension - components: - - pos: -22.5,0.5 - parent: 82 - type: Transform -- uid: 16740 - type: CableApcExtension - components: - - pos: -23.5,0.5 - parent: 82 - type: Transform -- uid: 16741 - type: CableApcExtension - components: - - pos: -23.5,1.5 - parent: 82 - type: Transform -- uid: 16742 - type: CableApcExtension - components: - - pos: -24.5,1.5 - parent: 82 - type: Transform -- uid: 16743 - type: CableApcExtension - components: - - pos: -25.5,1.5 - parent: 82 - type: Transform -- uid: 16744 - type: CableApcExtension - components: - - pos: -26.5,1.5 - parent: 82 - type: Transform -- uid: 16745 - type: CableApcExtension - components: - - pos: -27.5,1.5 - parent: 82 - type: Transform -- uid: 16746 - type: CableApcExtension - components: - - pos: -28.5,1.5 - parent: 82 - type: Transform -- uid: 16747 - type: CableApcExtension - components: - - pos: -29.5,1.5 - parent: 82 - type: Transform -- uid: 16748 - type: CableApcExtension - components: - - pos: -29.5,2.5 - parent: 82 - type: Transform -- uid: 16749 - type: CableApcExtension - components: - - pos: -29.5,3.5 - parent: 82 - type: Transform -- uid: 16750 - type: CableApcExtension - components: - - pos: -29.5,4.5 - parent: 82 - type: Transform -- uid: 16751 - type: CableApcExtension - components: - - pos: -28.5,4.5 - parent: 82 - type: Transform -- uid: 16752 - type: CableApcExtension - components: - - pos: -27.5,4.5 - parent: 82 - type: Transform -- uid: 16753 - type: CableApcExtension - components: - - pos: -26.5,4.5 - parent: 82 - type: Transform -- uid: 16754 - type: CableApcExtension - components: - - pos: -25.5,4.5 - parent: 82 - type: Transform -- uid: 16755 - type: CableApcExtension - components: - - pos: -24.5,4.5 - parent: 82 - type: Transform -- uid: 16756 - type: CableApcExtension - components: - - pos: -23.5,4.5 - parent: 82 - type: Transform -- uid: 16757 - type: CableApcExtension - components: - - pos: -23.5,5.5 - parent: 82 - type: Transform -- uid: 16758 - type: CableApcExtension - components: - - pos: -23.5,6.5 - parent: 82 - type: Transform -- uid: 16759 - type: CableApcExtension - components: - - pos: -23.5,7.5 - parent: 82 - type: Transform -- uid: 16760 - type: CableApcExtension - components: - - pos: -23.5,8.5 - parent: 82 - type: Transform -- uid: 16761 - type: CableApcExtension - components: - - pos: -23.5,9.5 - parent: 82 - type: Transform -- uid: 16762 - type: CableApcExtension - components: - - pos: -23.5,10.5 - parent: 82 - type: Transform -- uid: 16763 - type: CableApcExtension - components: - - pos: -23.5,11.5 - parent: 82 - type: Transform -- uid: 16764 - type: CableApcExtension - components: - - pos: -23.5,12.5 - parent: 82 - type: Transform -- uid: 16765 - type: CableApcExtension - components: - - pos: -23.5,13.5 - parent: 82 - type: Transform -- uid: 16766 - type: CableApcExtension - components: - - pos: -23.5,14.5 - parent: 82 - type: Transform -- uid: 16767 - type: CableApcExtension - components: - - pos: -23.5,15.5 - parent: 82 - type: Transform -- uid: 16768 - type: CableApcExtension - components: - - pos: -23.5,16.5 - parent: 82 - type: Transform -- uid: 16769 - type: CableApcExtension - components: - - pos: -23.5,17.5 - parent: 82 - type: Transform -- uid: 16770 - type: CableApcExtension - components: - - pos: -24.5,9.5 - parent: 82 - type: Transform -- uid: 16771 - type: CableApcExtension - components: - - pos: -25.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16772 - type: CableApcExtension - components: - - pos: -26.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16773 - type: CableApcExtension - components: - - pos: -27.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16774 - type: CableApcExtension - components: - - pos: -28.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16775 - type: CableApcExtension - components: - - pos: -29.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16776 - type: CableApcExtension - components: - - pos: -30.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16777 - type: CableApcExtension - components: - - pos: -31.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16778 - type: CableApcExtension - components: - - pos: -31.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16779 - type: CableApcExtension - components: - - pos: -32.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16780 - type: CableApcExtension - components: - - pos: -33.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16781 - type: CableApcExtension - components: - - pos: -34.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16782 - type: CableApcExtension - components: - - pos: -35.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16783 - type: CableApcExtension - components: - - pos: -36.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16784 - type: CableApcExtension - components: - - pos: -37.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16785 - type: CableApcExtension - components: - - pos: -38.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16786 - type: CableApcExtension - components: - - pos: -39.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16787 - type: CableApcExtension - components: - - pos: -40.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16788 - type: CableApcExtension - components: - - pos: -41.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16789 - type: CableApcExtension - components: - - pos: -42.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16790 - type: CableApcExtension - components: - - pos: -43.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16791 - type: CableApcExtension - components: - - pos: -44.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16792 - type: CableApcExtension - components: - - pos: -45.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16793 - type: CableApcExtension - components: - - pos: -45.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16794 - type: CableApcExtension - components: - - pos: -45.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16795 - type: CableApcExtension - components: - - pos: -45.5,5.5 - parent: 82 - type: Transform -- uid: 16796 - type: CableApcExtension - components: - - pos: -21.5,19.5 - parent: 82 - type: Transform -- uid: 16797 - type: CableApcExtension - components: - - pos: -21.5,20.5 - parent: 82 - type: Transform -- uid: 16798 - type: CableApcExtension - components: - - pos: -21.5,21.5 - parent: 82 - type: Transform -- uid: 16799 - type: CableApcExtension - components: - - pos: -21.5,22.5 - parent: 82 - type: Transform -- uid: 16800 - type: CableApcExtension - components: - - pos: -21.5,23.5 - parent: 82 - type: Transform -- uid: 16801 - type: CableApcExtension - components: - - pos: -21.5,24.5 - parent: 82 - type: Transform -- uid: 16802 - type: CableApcExtension - components: - - pos: -21.5,25.5 - parent: 82 - type: Transform -- uid: 16803 - type: CableApcExtension - components: - - pos: -21.5,26.5 - parent: 82 - type: Transform -- uid: 16804 - type: CableApcExtension - components: - - pos: -20.5,26.5 - parent: 82 - type: Transform -- uid: 16805 - type: CableApcExtension - components: - - pos: -19.5,26.5 - parent: 82 - type: Transform -- uid: 16806 - type: CableApcExtension - components: - - pos: -18.5,26.5 - parent: 82 - type: Transform -- uid: 16807 - type: CableApcExtension - components: - - pos: -17.5,26.5 - parent: 82 - type: Transform -- uid: 16808 - type: CableApcExtension - components: - - pos: -16.5,26.5 - parent: 82 - type: Transform -- uid: 16809 - type: CableApcExtension - components: - - pos: -15.5,26.5 - parent: 82 - type: Transform -- uid: 16810 - type: CableApcExtension - components: - - pos: -14.5,26.5 - parent: 82 - type: Transform -- uid: 16811 - type: CableApcExtension - components: - - pos: -13.5,26.5 - parent: 82 - type: Transform -- uid: 16812 - type: CableApcExtension - components: - - pos: -12.5,26.5 - parent: 82 - type: Transform -- uid: 16813 - type: CableApcExtension - components: - - pos: -16.5,25.5 - parent: 82 - type: Transform -- uid: 16814 - type: CableApcExtension - components: - - pos: -18.5,25.5 - parent: 82 - type: Transform -- uid: 16815 - type: CableApcExtension - components: - - pos: -14.5,25.5 - parent: 82 - type: Transform -- uid: 16816 - type: CableApcExtension - components: - - pos: -12.5,27.5 - parent: 82 - type: Transform -- uid: 16817 - type: CableApcExtension - components: - - pos: -12.5,28.5 - parent: 82 - type: Transform -- uid: 16818 - type: CableApcExtension - components: - - pos: -12.5,29.5 - parent: 82 - type: Transform -- uid: 16819 - type: CableApcExtension - components: - - pos: -11.5,29.5 - parent: 82 - type: Transform -- uid: 16820 - type: CableApcExtension - components: - - pos: -10.5,29.5 - parent: 82 - type: Transform -- uid: 16821 - type: CableApcExtension - components: - - pos: -9.5,29.5 - parent: 82 - type: Transform -- uid: 16822 - type: CableApcExtension - components: - - pos: -8.5,29.5 - parent: 82 - type: Transform -- uid: 16823 - type: CableApcExtension - components: - - pos: -13.5,29.5 - parent: 82 - type: Transform -- uid: 16824 - type: CableApcExtension - components: - - pos: -14.5,29.5 - parent: 82 - type: Transform -- uid: 16825 - type: CableApcExtension - components: - - pos: -15.5,29.5 - parent: 82 - type: Transform -- uid: 16826 - type: CableApcExtension - components: - - pos: -16.5,29.5 - parent: 82 - type: Transform -- uid: 16827 - type: CableApcExtension - components: - - pos: -17.5,29.5 - parent: 82 - type: Transform -- uid: 16828 - type: CableApcExtension - components: - - pos: -18.5,29.5 - parent: 82 - type: Transform -- uid: 16829 - type: CableApcExtension - components: - - pos: -19.5,29.5 - parent: 82 - type: Transform -- uid: 16830 - type: CableApcExtension - components: - - pos: -20.5,29.5 - parent: 82 - type: Transform -- uid: 16831 - type: CableApcExtension - components: - - pos: -21.5,29.5 - parent: 82 - type: Transform -- uid: 16832 - type: CableApcExtension - components: - - pos: -21.5,28.5 - parent: 82 - type: Transform -- uid: 16833 - type: CableApcExtension - components: - - pos: -21.5,27.5 - parent: 82 - type: Transform -- uid: 16834 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -2.5,56.5 - parent: 82 - type: Transform -- uid: 16835 - type: CableApcExtension - components: - - pos: -2.5,56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16836 - type: CableApcExtension - components: - - pos: -1.5,56.5 - parent: 82 - type: Transform -- uid: 16837 - type: CableApcExtension - components: - - pos: -0.5,56.5 - parent: 82 - type: Transform -- uid: 16838 - type: CableApcExtension - components: - - pos: 0.5,56.5 - parent: 82 - type: Transform -- uid: 16839 - type: CableApcExtension - components: - - pos: 0.5,57.5 - parent: 82 - type: Transform -- uid: 16840 - type: CableApcExtension - components: - - pos: 1.5,57.5 - parent: 82 - type: Transform -- uid: 16841 - type: CableApcExtension - components: - - pos: 2.5,57.5 - parent: 82 - type: Transform -- uid: 16842 - type: CableApcExtension - components: - - pos: 2.5,58.5 - parent: 82 - type: Transform -- uid: 16843 - type: CableApcExtension - components: - - pos: 2.5,59.5 - parent: 82 - type: Transform -- uid: 16844 - type: CableApcExtension - components: - - pos: 2.5,60.5 - parent: 82 - type: Transform -- uid: 16845 - type: CableApcExtension - components: - - pos: 2.5,61.5 - parent: 82 - type: Transform -- uid: 16846 - type: CableApcExtension - components: - - pos: 1.5,61.5 - parent: 82 - type: Transform -- uid: 16847 - type: CableApcExtension - components: - - pos: 0.5,61.5 - parent: 82 - type: Transform -- uid: 16848 - type: CableApcExtension - components: - - pos: -0.5,61.5 - parent: 82 - type: Transform -- uid: 16849 - type: CableApcExtension - components: - - pos: -1.5,61.5 - parent: 82 - type: Transform -- uid: 16850 - type: CableApcExtension - components: - - pos: -1.5,60.5 - parent: 82 - type: Transform -- uid: 16851 - type: CableApcExtension - components: - - pos: -1.5,59.5 - parent: 82 - type: Transform -- uid: 16852 - type: CableApcExtension - components: - - pos: -1.5,58.5 - parent: 82 - type: Transform -- uid: 16853 - type: CableApcExtension - components: - - pos: -1.5,57.5 - parent: 82 - type: Transform -- uid: 16854 - type: CableApcExtension - components: - - pos: -0.5,57.5 - parent: 82 - type: Transform -- uid: 16855 - type: CableApcExtension - components: - - pos: 0.5,55.5 - parent: 82 - type: Transform -- uid: 16856 - type: CableApcExtension - components: - - pos: 0.5,54.5 - parent: 82 - type: Transform -- uid: 16857 - type: CableApcExtension - components: - - pos: 0.5,53.5 - parent: 82 - type: Transform -- uid: 16858 - type: CableApcExtension - components: - - pos: 0.5,52.5 - parent: 82 - type: Transform -- uid: 16859 - type: CableApcExtension - components: - - pos: 0.5,51.5 - parent: 82 - type: Transform -- uid: 16860 - type: CableApcExtension - components: - - pos: -0.5,51.5 - parent: 82 - type: Transform -- uid: 16861 - type: CableApcExtension - components: - - pos: -1.5,51.5 - parent: 82 - type: Transform -- uid: 16862 - type: CableApcExtension - components: - - pos: -2.5,51.5 - parent: 82 - type: Transform -- uid: 16863 - type: CableApcExtension - components: - - pos: -3.5,51.5 - parent: 82 - type: Transform -- uid: 16864 - type: CableApcExtension - components: - - pos: 1.5,51.5 - parent: 82 - type: Transform -- uid: 16865 - type: CableApcExtension - components: - - pos: 2.5,51.5 - parent: 82 - type: Transform -- uid: 16866 - type: CableApcExtension - components: - - pos: 3.5,51.5 - parent: 82 - type: Transform -- uid: 16867 - type: CableApcExtension - components: - - pos: 4.5,51.5 - parent: 82 - type: Transform -- uid: 16868 - type: CableApcExtension - components: - - pos: 5.5,51.5 - parent: 82 - type: Transform -- uid: 16869 - type: CableApcExtension - components: - - pos: 6.5,51.5 - parent: 82 - type: Transform -- uid: 16870 - type: CableApcExtension - components: - - pos: 7.5,51.5 - parent: 82 - type: Transform -- uid: 16871 - type: CableApcExtension - components: - - pos: 8.5,51.5 - parent: 82 - type: Transform -- uid: 16872 - type: CableApcExtension - components: - - pos: 9.5,51.5 - parent: 82 - type: Transform -- uid: 16873 - type: CableApcExtension - components: - - pos: 10.5,51.5 - parent: 82 - type: Transform -- uid: 16874 - type: CableApcExtension - components: - - pos: 11.5,51.5 - parent: 82 - type: Transform -- uid: 16875 - type: CableApcExtension - components: - - pos: 3.5,50.5 - parent: 82 - type: Transform -- uid: 16876 - type: CableApcExtension - components: - - pos: 8.5,50.5 - parent: 82 - type: Transform -- uid: 16877 - type: WindoorCommandLocked - components: - - pos: 0.5,57.5 - parent: 82 - type: Transform -- uid: 16878 - type: GasPipeStraight - components: - - pos: -26.5,28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16879 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 17.5,57.5 - parent: 82 - type: Transform -- uid: 16880 - type: SubstationBasic - components: - - pos: 7.5,44.5 - parent: 82 - type: Transform -- uid: 16881 - type: CableMV - components: - - pos: 7.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16882 - type: CableMV - components: - - pos: 8.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16883 - type: CableMV - components: - - pos: 9.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16884 - type: CableMV - components: - - pos: 10.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16885 - type: CableMV - components: - - pos: 11.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16886 - type: CableMV - components: - - pos: 11.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16887 - type: CableMV - components: - - pos: 12.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16888 - type: CableMV - components: - - pos: 13.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16889 - type: CableMV - components: - - pos: 14.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16890 - type: CableMV - components: - - pos: 15.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16891 - type: CableMV - components: - - pos: 16.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16892 - type: CableMV - components: - - pos: 17.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16893 - type: CableMV - components: - - pos: 18.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16894 - type: CableMV - components: - - pos: 19.5,45.5 - parent: 82 - type: Transform -- uid: 16895 - type: CableMV - components: - - pos: 20.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16896 - type: CableMV - components: - - pos: 20.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16897 - type: CableMV - components: - - pos: 20.5,47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16898 - type: CableMV - components: - - pos: 20.5,48.5 - parent: 82 - type: Transform -- uid: 16899 - type: CableMV - components: - - pos: 20.5,49.5 - parent: 82 - type: Transform -- uid: 16900 - type: CableMV - components: - - pos: 20.5,50.5 - parent: 82 - type: Transform -- uid: 16901 - type: CableMV - components: - - pos: 20.5,51.5 - parent: 82 - type: Transform -- uid: 16902 - type: CableMV - components: - - pos: 20.5,52.5 - parent: 82 - type: Transform -- uid: 16903 - type: CableMV - components: - - pos: 20.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16904 - type: CableMV - components: - - pos: 20.5,54.5 - parent: 82 - type: Transform -- uid: 16905 - type: CableMV - components: - - pos: 20.5,55.5 - parent: 82 - type: Transform -- uid: 16906 - type: CableMV - components: - - pos: 20.5,56.5 - parent: 82 - type: Transform -- uid: 16907 - type: CableMV - components: - - pos: 20.5,57.5 - parent: 82 - type: Transform -- uid: 16908 - type: CableMV - components: - - pos: 19.5,57.5 - parent: 82 - type: Transform -- uid: 16909 - type: CableMV - components: - - pos: 18.5,57.5 - parent: 82 - type: Transform -- uid: 16910 - type: CableMV - components: - - pos: 17.5,57.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16911 - type: CableMV - components: - - pos: 20.5,58.5 - parent: 82 - type: Transform -- uid: 16912 - type: CableMV - components: - - pos: 20.5,59.5 - parent: 82 - type: Transform -- uid: 16913 - type: CableMV - components: - - pos: 20.5,60.5 - parent: 82 - type: Transform -- uid: 16914 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,60.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16915 - type: CableMV - components: - - pos: 20.5,61.5 - parent: 82 - type: Transform -- uid: 16916 - type: CableMV - components: - - pos: 20.5,63.5 - parent: 82 - type: Transform -- uid: 16917 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,60.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16918 - type: CableMV - components: - - pos: 20.5,65.5 - parent: 82 - type: Transform -- uid: 16919 - type: CableMV - components: - - pos: 20.5,66.5 - parent: 82 - type: Transform -- uid: 16920 - type: CableMV - components: - - pos: 20.5,67.5 - parent: 82 - type: Transform -- uid: 16921 - type: CableMV - components: - - pos: 21.5,67.5 - parent: 82 - type: Transform -- uid: 16922 - type: CableMV - components: - - pos: 21.5,68.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16923 - type: APCBasic - components: - - pos: 21.5,68.5 - parent: 82 - type: Transform -- uid: 16924 - type: CableApcExtension - components: - - pos: 21.5,68.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16925 - type: CableApcExtension - components: - - pos: 21.5,69.5 - parent: 82 - type: Transform -- uid: 16926 - type: CableApcExtension - components: - - pos: 16.5,74.5 - parent: 82 - type: Transform -- uid: 16927 - type: CableApcExtension - components: - - pos: 15.5,74.5 - parent: 82 - type: Transform -- uid: 16928 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 17.5,71.5 - parent: 82 - type: Transform -- uid: 16929 - type: BananaPhoneInstrument - components: - - pos: -8.55452,-48.344887 - parent: 82 - type: Transform -- uid: 16930 - type: CableApcExtension - components: - - pos: 19.5,70.5 - parent: 82 - type: Transform -- uid: 16931 - type: CableApcExtension - components: - - pos: 9.5,76.5 - parent: 82 - type: Transform -- uid: 16932 - type: NitrousOxideCanister - components: - - pos: 9.5,76.5 - parent: 82 - type: Transform -- uid: 16933 - type: CableApcExtension - components: - - pos: 9.5,75.5 - parent: 82 - type: Transform -- uid: 16934 - type: TablePlasmaGlass - components: - - pos: 18.5,74.5 - parent: 82 - type: Transform -- uid: 16935 - type: WallReinforced - components: - - pos: 19.5,76.5 - parent: 82 - type: Transform -- uid: 16936 - type: WallReinforced - components: - - pos: 19.5,75.5 - parent: 82 - type: Transform -- uid: 16937 - type: ReinforcedWindow - components: - - pos: 8.5,74.5 - parent: 82 - type: Transform -- uid: 16938 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 17.5,70.5 - parent: 82 - type: Transform -- uid: 16939 - type: Grille - components: - - pos: 8.5,72.5 - parent: 82 - type: Transform -- uid: 16940 - type: ReinforcedWindow - components: - - pos: 12.5,75.5 - parent: 82 - type: Transform -- uid: 16941 - type: CloningPod - components: - - pos: -51.5,-35.5 - parent: 82 - type: Transform -- uid: 16942 - type: ComputerCloningConsole - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-36.5 - parent: 82 - type: Transform -- uid: 16943 - type: CableApcExtension - components: - - pos: 20.5,70.5 - parent: 82 - type: Transform -- uid: 16944 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,4.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16945 - type: PaperOffice - components: - - pos: 31.397202,-28.299168 - parent: 82 - type: Transform -- uid: 16946 - type: CheapRollerBed - components: - - pos: -47.5,-32.5 - parent: 82 - type: Transform -- uid: 16947 - type: CheapRollerBed - components: - - pos: -51.5,-32.5 - parent: 82 - type: Transform -- uid: 16948 - type: SheetPlasma1 - components: - - pos: 17.613049,74.53184 - parent: 82 - type: Transform - - count: 10 - type: Stack -- uid: 16949 - type: PaperOffice - components: - - pos: 31.470886,-28.063412 - parent: 82 - type: Transform -- uid: 16950 - type: RollerBed - components: - - pos: 53.5,-13.5 - parent: 82 - type: Transform -- uid: 16951 - type: CrewMonitoringServer - components: - - pos: -1.5,42.5 - parent: 82 - type: Transform -- uid: 16952 - type: PaperOffice - components: - - pos: 27.68942,-33.28319 - parent: 82 - type: Transform -- uid: 16953 - type: EmergencyRollerBed - components: - - pos: -33.5,-32.5 - parent: 82 - type: Transform -- uid: 16954 - type: PaperOffice - components: - - pos: 27.64521,-33.194782 - parent: 82 - type: Transform -- uid: 16955 - type: PowerCellRecharger - components: - - pos: 38.5,34.5 - parent: 82 - type: Transform -- uid: 16956 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,65.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16957 - type: BoxLatexGloves - components: - - pos: -27.616243,-27.485722 - parent: 82 - type: Transform -- uid: 16958 - type: WeaponLaserCarbinePractice - components: - - pos: -35.20183,47.552357 - parent: 82 - type: Transform -- uid: 16959 - type: PaperCaptainsThoughts - components: - - pos: 10.8445015,-18.270445 - parent: 82 - type: Transform -- uid: 16960 - type: SpawnPointResearchAssistant - components: - - pos: 27.5,58.5 - parent: 82 - type: Transform -- uid: 16961 - type: PaperBin10 - components: - - pos: 5.5,-13.5 - parent: 82 - type: Transform -- uid: 16962 - type: FloraTreeLarge06 - components: - - pos: -16.28973,-36.95398 - parent: 82 - type: Transform -- uid: 16963 - type: HospitalCurtains - components: - - pos: 53.5,-49.5 - parent: 82 - type: Transform -- uid: 16964 - type: HospitalCurtains - components: - - pos: 49.5,-49.5 - parent: 82 - type: Transform -- uid: 16965 - type: HospitalCurtains - components: - - pos: 45.5,-49.5 - parent: 82 - type: Transform -- uid: 16966 - type: PaperOffice - components: - - pos: 25.380877,-26.228504 - parent: 82 - type: Transform -- uid: 16967 - type: PaperOffice - components: - - pos: 25.454561,-26.434792 - parent: 82 - type: Transform -- uid: 16968 - type: PaperOffice - components: - - pos: 25.572456,-26.287445 - parent: 82 - type: Transform -- uid: 16969 - type: PaperCaptainsThoughts - components: - - pos: 20.281105,-91.394905 - parent: 82 - type: Transform -- uid: 16970 - type: PaperCaptainsThoughts - components: - - pos: 20.060053,-91.52752 - parent: 82 - type: Transform -- uid: 16971 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-12.5 - parent: 82 - type: Transform -- uid: 16972 - type: CableApcExtension - components: - - pos: 21.5,67.5 - parent: 82 - type: Transform -- uid: 16973 - type: CableApcExtension - components: - - pos: 22.5,67.5 - parent: 82 - type: Transform -- uid: 16974 - type: CableApcExtension - components: - - pos: 23.5,67.5 - parent: 82 - type: Transform -- uid: 16975 - type: CableApcExtension - components: - - pos: 23.5,68.5 - parent: 82 - type: Transform -- uid: 16976 - type: CableApcExtension - components: - - pos: 23.5,69.5 - parent: 82 - type: Transform -- uid: 16977 - type: CableApcExtension - components: - - pos: 23.5,70.5 - parent: 82 - type: Transform -- uid: 16978 - type: CableApcExtension - components: - - pos: 23.5,71.5 - parent: 82 - type: Transform -- uid: 16979 - type: CableApcExtension - components: - - pos: 23.5,72.5 - parent: 82 - type: Transform -- uid: 16980 - type: CableApcExtension - components: - - pos: 23.5,73.5 - parent: 82 - type: Transform -- uid: 16981 - type: WallReinforced - components: - - pos: 28.5,77.5 - parent: 82 - type: Transform -- uid: 16982 - type: ReinforcedPlasmaWindow - components: - - pos: 29.5,80.5 - parent: 82 - type: Transform -- uid: 16983 - type: ReinforcedPlasmaWindow - components: - - pos: 30.5,80.5 - parent: 82 - type: Transform -- uid: 16984 - type: CableApcExtension - components: - - pos: 24.5,73.5 - parent: 82 - type: Transform -- uid: 16985 - type: CableApcExtension - components: - - pos: 25.5,73.5 - parent: 82 - type: Transform -- uid: 16986 - type: CableApcExtension - components: - - pos: 26.5,73.5 - parent: 82 - type: Transform -- uid: 16987 - type: CableApcExtension - components: - - pos: 30.5,73.5 - parent: 82 - type: Transform -- uid: 16988 - type: CableApcExtension - components: - - pos: 28.5,73.5 - parent: 82 - type: Transform -- uid: 16989 - type: CableApcExtension - components: - - pos: 27.5,73.5 - parent: 82 - type: Transform -- uid: 16990 - type: WallReinforced - components: - - pos: 25.5,80.5 - parent: 82 - type: Transform -- uid: 16991 - type: WallReinforced - components: - - pos: 32.5,80.5 - parent: 82 - type: Transform -- uid: 16992 - type: WallReinforced - components: - - pos: 28.5,80.5 - parent: 82 - type: Transform -- uid: 16993 - type: ReinforcedPlasmaWindow - components: - - pos: 26.5,77.5 - parent: 82 - type: Transform -- uid: 16994 - type: ReinforcedPlasmaWindow - components: - - pos: 29.5,76.5 - parent: 82 - type: Transform -- uid: 16995 - type: ReinforcedPlasmaWindow - components: - - pos: 30.5,76.5 - parent: 82 - type: Transform -- uid: 16996 - type: ReinforcedPlasmaWindow - components: - - pos: 31.5,76.5 - parent: 82 - type: Transform -- uid: 16997 - type: CableApcExtension - components: - - pos: 24.5,69.5 - parent: 82 - type: Transform -- uid: 16998 - type: CableApcExtension - components: - - pos: 25.5,69.5 - parent: 82 - type: Transform -- uid: 16999 - type: CableApcExtension - components: - - pos: 26.5,69.5 - parent: 82 - type: Transform -- uid: 17000 - type: CableApcExtension - components: - - pos: 27.5,69.5 - parent: 82 - type: Transform -- uid: 17001 - type: CableApcExtension - components: - - pos: 28.5,69.5 - parent: 82 - type: Transform -- uid: 17002 - type: CableApcExtension - components: - - pos: 29.5,69.5 - parent: 82 - type: Transform -- uid: 17003 - type: CableApcExtension - components: - - pos: 29.5,68.5 - parent: 82 - type: Transform -- uid: 17004 - type: WallSolid - components: - - pos: 33.5,62.5 - parent: 82 - type: Transform -- uid: 17005 - type: CableApcExtension - components: - - pos: 31.5,68.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17006 - type: CableApcExtension - components: - - pos: 31.5,69.5 - parent: 82 - type: Transform -- uid: 17007 - type: CableApcExtension - components: - - pos: 31.5,70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17008 - type: CableApcExtension - components: - - pos: 20.5,67.5 - parent: 82 - type: Transform -- uid: 17009 - type: CableApcExtension - components: - - pos: 19.5,67.5 - parent: 82 - type: Transform -- uid: 17010 - type: CableApcExtension - components: - - pos: 18.5,67.5 - parent: 82 - type: Transform -- uid: 17011 - type: CableApcExtension - components: - - pos: 18.5,66.5 - parent: 82 - type: Transform -- uid: 17012 - type: CableApcExtension - components: - - pos: 18.5,65.5 - parent: 82 - type: Transform -- uid: 17013 - type: CableApcExtension - components: - - pos: 18.5,64.5 - parent: 82 - type: Transform -- uid: 17014 - type: CableApcExtension - components: - - pos: 17.5,64.5 - parent: 82 - type: Transform -- uid: 17015 - type: CableApcExtension - components: - - pos: 16.5,64.5 - parent: 82 - type: Transform -- uid: 17016 - type: CableApcExtension - components: - - pos: 15.5,64.5 - parent: 82 - type: Transform -- uid: 17017 - type: CableApcExtension - components: - - pos: 14.5,64.5 - parent: 82 - type: Transform -- uid: 17018 - type: CableApcExtension - components: - - pos: 13.5,64.5 - parent: 82 - type: Transform -- uid: 17019 - type: CableApcExtension - components: - - pos: 12.5,64.5 - parent: 82 - type: Transform -- uid: 17020 - type: CableApcExtension - components: - - pos: 11.5,64.5 - parent: 82 - type: Transform -- uid: 17021 - type: CableApcExtension - components: - - pos: 12.5,63.5 - parent: 82 - type: Transform -- uid: 17022 - type: CableApcExtension - components: - - pos: 12.5,62.5 - parent: 82 - type: Transform -- uid: 17023 - type: CableApcExtension - components: - - pos: 12.5,65.5 - parent: 82 - type: Transform -- uid: 17024 - type: CableApcExtension - components: - - pos: 12.5,66.5 - parent: 82 - type: Transform -- uid: 17025 - type: CableApcExtension - components: - - pos: 17.5,57.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17026 - type: CableApcExtension - components: - - pos: 16.5,57.5 - parent: 82 - type: Transform -- uid: 17027 - type: CableApcExtension - components: - - pos: 15.5,57.5 - parent: 82 - type: Transform -- uid: 17028 - type: CableApcExtension - components: - - pos: 14.5,57.5 - parent: 82 - type: Transform -- uid: 17029 - type: CableApcExtension - components: - - pos: 13.5,57.5 - parent: 82 - type: Transform -- uid: 17030 - type: CableApcExtension - components: - - pos: 12.5,57.5 - parent: 82 - type: Transform -- uid: 17031 - type: CableApcExtension - components: - - pos: 12.5,56.5 - parent: 82 - type: Transform -- uid: 17032 - type: CableApcExtension - components: - - pos: 12.5,55.5 - parent: 82 - type: Transform -- uid: 17033 - type: CableApcExtension - components: - - pos: 12.5,54.5 - parent: 82 - type: Transform -- uid: 17034 - type: CableApcExtension - components: - - pos: 12.5,53.5 - parent: 82 - type: Transform -- uid: 17035 - type: FloodlightBroken - components: - - pos: -39.640717,17.489979 - parent: 82 - type: Transform -- uid: 17036 - type: DrinkLean - components: - - flags: InContainer - type: MetaData - - parent: 25099 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 17037 - type: FoodMeatBaconCooked - components: - - pos: 39.980137,-7.3897834 - parent: 82 - type: Transform -- uid: 17038 - type: CableApcExtension - components: - - pos: 16.5,53.5 - parent: 82 - type: Transform -- uid: 17039 - type: CableApcExtension - components: - - pos: 16.5,54.5 - parent: 82 - type: Transform -- uid: 17040 - type: CableApcExtension - components: - - pos: 16.5,55.5 - parent: 82 - type: Transform -- uid: 17041 - type: CableApcExtension - components: - - pos: 16.5,56.5 - parent: 82 - type: Transform -- uid: 17042 - type: CableApcExtension - components: - - pos: 18.5,57.5 - parent: 82 - type: Transform -- uid: 17043 - type: CableApcExtension - components: - - pos: 19.5,57.5 - parent: 82 - type: Transform -- uid: 17044 - type: CableApcExtension - components: - - pos: 20.5,57.5 - parent: 82 - type: Transform -- uid: 17045 - type: CableApcExtension - components: - - pos: 20.5,58.5 - parent: 82 - type: Transform -- uid: 17046 - type: CableApcExtension - components: - - pos: 20.5,59.5 - parent: 82 - type: Transform -- uid: 17047 - type: CableApcExtension - components: - - pos: 20.5,60.5 - parent: 82 - type: Transform -- uid: 17048 - type: CableApcExtension - components: - - pos: 20.5,61.5 - parent: 82 - type: Transform -- uid: 17049 - type: CableApcExtension - components: - - pos: 20.5,62.5 - parent: 82 - type: Transform -- uid: 17050 - type: CableApcExtension - components: - - pos: 20.5,63.5 - parent: 82 - type: Transform -- uid: 17051 - type: CableApcExtension - components: - - pos: 20.5,64.5 - parent: 82 - type: Transform -- uid: 17052 - type: CableApcExtension - components: - - pos: 20.5,65.5 - parent: 82 - type: Transform -- uid: 17053 - type: CableApcExtension - components: - - pos: 21.5,65.5 - parent: 82 - type: Transform -- uid: 17054 - type: CableApcExtension - components: - - pos: 22.5,65.5 - parent: 82 - type: Transform -- uid: 17055 - type: CableApcExtension - components: - - pos: 23.5,65.5 - parent: 82 - type: Transform -- uid: 17056 - type: CableApcExtension - components: - - pos: 24.5,65.5 - parent: 82 - type: Transform -- uid: 17057 - type: CableApcExtension - components: - - pos: 18.5,63.5 - parent: 82 - type: Transform -- uid: 17058 - type: CableApcExtension - components: - - pos: 18.5,62.5 - parent: 82 - type: Transform -- uid: 17059 - type: CableApcExtension - components: - - pos: 18.5,61.5 - parent: 82 - type: Transform -- uid: 17060 - type: CableApcExtension - components: - - pos: 21.5,60.5 - parent: 82 - type: Transform -- uid: 17061 - type: CableApcExtension - components: - - pos: 22.5,60.5 - parent: 82 - type: Transform -- uid: 17062 - type: CableApcExtension - components: - - pos: 23.5,60.5 - parent: 82 - type: Transform -- uid: 17063 - type: CableApcExtension - components: - - pos: 24.5,60.5 - parent: 82 - type: Transform -- uid: 17064 - type: CableApcExtension - components: - - pos: 25.5,60.5 - parent: 82 - type: Transform -- uid: 17065 - type: CableApcExtension - components: - - pos: 26.5,60.5 - parent: 82 - type: Transform -- uid: 17066 - type: CableApcExtension - components: - - pos: 27.5,60.5 - parent: 82 - type: Transform -- uid: 17067 - type: CableApcExtension - components: - - pos: 28.5,60.5 - parent: 82 - type: Transform -- uid: 17068 - type: CableApcExtension - components: - - pos: 29.5,60.5 - parent: 82 - type: Transform -- uid: 17069 - type: CableApcExtension - components: - - pos: 27.5,61.5 - parent: 82 - type: Transform -- uid: 17070 - type: CableApcExtension - components: - - pos: 27.5,62.5 - parent: 82 - type: Transform -- uid: 17071 - type: CableApcExtension - components: - - pos: 27.5,63.5 - parent: 82 - type: Transform -- uid: 17072 - type: CableApcExtension - components: - - pos: 27.5,64.5 - parent: 82 - type: Transform -- uid: 17073 - type: CableApcExtension - components: - - pos: 27.5,65.5 - parent: 82 - type: Transform -- uid: 17074 - type: CableApcExtension - components: - - pos: 28.5,65.5 - parent: 82 - type: Transform -- uid: 17075 - type: CableApcExtension - components: - - pos: 27.5,59.5 - parent: 82 - type: Transform -- uid: 17076 - type: CableApcExtension - components: - - pos: 27.5,58.5 - parent: 82 - type: Transform -- uid: 17077 - type: CableApcExtension - components: - - pos: 27.5,57.5 - parent: 82 - type: Transform -- uid: 17078 - type: CableApcExtension - components: - - pos: 27.5,56.5 - parent: 82 - type: Transform -- uid: 17079 - type: CableApcExtension - components: - - pos: 27.5,55.5 - parent: 82 - type: Transform -- uid: 17080 - type: CableApcExtension - components: - - pos: 26.5,55.5 - parent: 82 - type: Transform -- uid: 17081 - type: CableApcExtension - components: - - pos: 25.5,55.5 - parent: 82 - type: Transform -- uid: 17082 - type: CableApcExtension - components: - - pos: 24.5,55.5 - parent: 82 - type: Transform -- uid: 17083 - type: CableApcExtension - components: - - pos: 23.5,55.5 - parent: 82 - type: Transform -- uid: 17084 - type: CableApcExtension - components: - - pos: 22.5,55.5 - parent: 82 - type: Transform -- uid: 17085 - type: CableApcExtension - components: - - pos: 21.5,55.5 - parent: 82 - type: Transform -- uid: 17086 - type: CableApcExtension - components: - - pos: 20.5,55.5 - parent: 82 - type: Transform -- uid: 17087 - type: CableApcExtension - components: - - pos: 20.5,56.5 - parent: 82 - type: Transform -- uid: 17088 - type: CableApcExtension - components: - - pos: 18.5,55.5 - parent: 82 - type: Transform -- uid: 17089 - type: CableApcExtension - components: - - pos: 18.5,56.5 - parent: 82 - type: Transform -- uid: 17090 - type: CableApcExtension - components: - - pos: 18.5,54.5 - parent: 82 - type: Transform -- uid: 17091 - type: CableApcExtension - components: - - pos: 19.5,54.5 - parent: 82 - type: Transform -- uid: 17092 - type: CableApcExtension - components: - - pos: 20.5,54.5 - parent: 82 - type: Transform -- uid: 17093 - type: CableApcExtension - components: - - pos: 27.5,54.5 - parent: 82 - type: Transform -- uid: 17094 - type: CableApcExtension - components: - - pos: 27.5,53.5 - parent: 82 - type: Transform -- uid: 17095 - type: CableApcExtension - components: - - pos: 27.5,52.5 - parent: 82 - type: Transform -- uid: 17096 - type: CableApcExtension - components: - - pos: 27.5,51.5 - parent: 82 - type: Transform -- uid: 17097 - type: CableApcExtension - components: - - pos: 26.5,51.5 - parent: 82 - type: Transform -- uid: 17098 - type: CableApcExtension - components: - - pos: 25.5,51.5 - parent: 82 - type: Transform -- uid: 17099 - type: CableApcExtension - components: - - pos: 24.5,51.5 - parent: 82 - type: Transform -- uid: 17100 - type: CableApcExtension - components: - - pos: 23.5,51.5 - parent: 82 - type: Transform -- uid: 17101 - type: CableApcExtension - components: - - pos: 22.5,51.5 - parent: 82 - type: Transform -- uid: 17102 - type: CableApcExtension - components: - - pos: 21.5,51.5 - parent: 82 - type: Transform -- uid: 17103 - type: CableApcExtension - components: - - pos: 20.5,51.5 - parent: 82 - type: Transform -- uid: 17104 - type: CableApcExtension - components: - - pos: 19.5,51.5 - parent: 82 - type: Transform -- uid: 17105 - type: CableApcExtension - components: - - pos: 18.5,51.5 - parent: 82 - type: Transform -- uid: 17106 - type: CableApcExtension - components: - - pos: 17.5,51.5 - parent: 82 - type: Transform -- uid: 17107 - type: CableApcExtension - components: - - pos: 16.5,51.5 - parent: 82 - type: Transform -- uid: 17108 - type: CableApcExtension - components: - - pos: 15.5,51.5 - parent: 82 - type: Transform -- uid: 17109 - type: CableApcExtension - components: - - pos: 14.5,51.5 - parent: 82 - type: Transform -- uid: 17110 - type: CableApcExtension - components: - - pos: 28.5,51.5 - parent: 82 - type: Transform -- uid: 17111 - type: CableApcExtension - components: - - pos: 29.5,51.5 - parent: 82 - type: Transform -- uid: 17112 - type: CableApcExtension - components: - - pos: 30.5,51.5 - parent: 82 - type: Transform -- uid: 17113 - type: CableApcExtension - components: - - pos: 31.5,51.5 - parent: 82 - type: Transform -- uid: 17114 - type: CableApcExtension - components: - - pos: 31.5,52.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17115 - type: CableApcExtension - components: - - pos: 31.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17116 - type: CableApcExtension - components: - - pos: 31.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17117 - type: WarpPoint - components: - - pos: -22.5,-12.5 - parent: 82 - type: Transform - - location: Cafeteria - type: WarpPoint -- uid: 17118 - type: WarpPoint - components: - - pos: 39.5,-8.5 - parent: 82 - type: Transform - - location: Security - type: WarpPoint -- uid: 17119 - type: WallReinforced - components: - - pos: 13.5,-16.5 - parent: 82 - type: Transform -- uid: 17120 - type: WallSolid - components: - - pos: -34.5,-24.5 - parent: 82 - type: Transform -- uid: 17121 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-15.5 - parent: 82 - type: Transform -- uid: 17122 - type: Table - components: - - pos: -30.5,-12.5 - parent: 82 - type: Transform -- uid: 17123 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 31.5,66.5 - parent: 82 - type: Transform -- uid: 17124 - type: CableApcExtension - components: - - pos: 31.5,62.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17125 - type: CableApcExtension - components: - - pos: 31.5,63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17126 - type: CableApcExtension - components: - - pos: 31.5,64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17127 - type: CableApcExtension - components: - - pos: 31.5,65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17128 - type: SubstationBasic - components: - - pos: 40.5,37.5 - parent: 82 - type: Transform -- uid: 17129 - type: CableHV - components: - - pos: 40.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17130 - type: CableMV - components: - - pos: 41.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17131 - type: CableMV - components: - - pos: 41.5,36.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17132 - type: CableMV - components: - - pos: 41.5,35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17133 - type: CableMV - components: - - pos: 40.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17134 - type: CableApcExtension - components: - - pos: 41.5,34.5 - parent: 82 - type: Transform -- uid: 17135 - type: CableApcExtension - components: - - pos: 40.5,34.5 - parent: 82 - type: Transform -- uid: 17136 - type: CableApcExtension - components: - - pos: 39.5,34.5 - parent: 82 - type: Transform -- uid: 17137 - type: CableApcExtension - components: - - pos: 38.5,34.5 - parent: 82 - type: Transform -- uid: 17138 - type: CableApcExtension - components: - - pos: 37.5,34.5 - parent: 82 - type: Transform -- uid: 17139 - type: CableApcExtension - components: - - pos: 36.5,34.5 - parent: 82 - type: Transform -- uid: 17140 - type: CableApcExtension - components: - - pos: 35.5,34.5 - parent: 82 - type: Transform -- uid: 17141 - type: CableApcExtension - components: - - pos: 34.5,34.5 - parent: 82 - type: Transform -- uid: 17142 - type: CableApcExtension - components: - - pos: 33.5,34.5 - parent: 82 - type: Transform -- uid: 17143 - type: CableApcExtension - components: - - pos: 33.5,35.5 - parent: 82 - type: Transform -- uid: 17144 - type: CableApcExtension - components: - - pos: 33.5,36.5 - parent: 82 - type: Transform -- uid: 17145 - type: CableApcExtension - components: - - pos: 33.5,37.5 - parent: 82 - type: Transform -- uid: 17146 - type: CableApcExtension - components: - - pos: 33.5,38.5 - parent: 82 - type: Transform -- uid: 17147 - type: CableApcExtension - components: - - pos: 33.5,39.5 - parent: 82 - type: Transform -- uid: 17148 - type: CableApcExtension - components: - - pos: 33.5,40.5 - parent: 82 - type: Transform -- uid: 17149 - type: CableApcExtension - components: - - pos: 33.5,41.5 - parent: 82 - type: Transform -- uid: 17150 - type: CableApcExtension - components: - - pos: 33.5,42.5 - parent: 82 - type: Transform -- uid: 17151 - type: CableApcExtension - components: - - pos: 33.5,43.5 - parent: 82 - type: Transform -- uid: 17152 - type: CableApcExtension - components: - - pos: 33.5,44.5 - parent: 82 - type: Transform -- uid: 17153 - type: CableApcExtension - components: - - pos: 33.5,45.5 - parent: 82 - type: Transform -- uid: 17154 - type: CableApcExtension - components: - - pos: 33.5,46.5 - parent: 82 - type: Transform -- uid: 17155 - type: CableApcExtension - components: - - pos: 33.5,47.5 - parent: 82 - type: Transform -- uid: 17156 - type: CableApcExtension - components: - - pos: 33.5,48.5 - parent: 82 - type: Transform -- uid: 17157 - type: CableApcExtension - components: - - pos: 33.5,49.5 - parent: 82 - type: Transform -- uid: 17158 - type: CableApcExtension - components: - - pos: 33.5,50.5 - parent: 82 - type: Transform -- uid: 17159 - type: CableApcExtension - components: - - pos: 33.5,51.5 - parent: 82 - type: Transform -- uid: 17160 - type: CableApcExtension - components: - - pos: 34.5,48.5 - parent: 82 - type: Transform -- uid: 17161 - type: CableApcExtension - components: - - pos: 35.5,48.5 - parent: 82 - type: Transform -- uid: 17162 - type: CableApcExtension - components: - - pos: 36.5,48.5 - parent: 82 - type: Transform -- uid: 17163 - type: CableApcExtension - components: - - pos: 37.5,48.5 - parent: 82 - type: Transform -- uid: 17164 - type: CableApcExtension - components: - - pos: 37.5,48.5 - parent: 82 - type: Transform -- uid: 17165 - type: CableApcExtension - components: - - pos: 38.5,48.5 - parent: 82 - type: Transform -- uid: 17166 - type: CableApcExtension - components: - - pos: 38.5,49.5 - parent: 82 - type: Transform -- uid: 17167 - type: CableApcExtension - components: - - pos: 38.5,50.5 - parent: 82 - type: Transform -- uid: 17168 - type: CableApcExtension - components: - - pos: 38.5,51.5 - parent: 82 - type: Transform -- uid: 17169 - type: CableApcExtension - components: - - pos: 37.5,51.5 - parent: 82 - type: Transform -- uid: 17170 - type: CableApcExtension - components: - - pos: 36.5,51.5 - parent: 82 - type: Transform -- uid: 17171 - type: CableApcExtension - components: - - pos: 35.5,51.5 - parent: 82 - type: Transform -- uid: 17172 - type: CableApcExtension - components: - - pos: 34.5,51.5 - parent: 82 - type: Transform -- uid: 17173 - type: CableApcExtension - components: - - pos: 34.5,50.5 - parent: 82 - type: Transform -- uid: 17174 - type: CableApcExtension - components: - - pos: 34.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17175 - type: CableApcExtension - components: - - pos: 35.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17176 - type: CableApcExtension - components: - - pos: 36.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17177 - type: CableApcExtension - components: - - pos: 37.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17178 - type: CableApcExtension - components: - - pos: 38.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17179 - type: CableApcExtension - components: - - pos: 39.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17180 - type: CableApcExtension - components: - - pos: 39.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17181 - type: CableApcExtension - components: - - pos: 39.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17182 - type: CableApcExtension - components: - - pos: 39.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17183 - type: CableApcExtension - components: - - pos: 39.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17184 - type: CableApcExtension - components: - - pos: 39.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17185 - type: CableApcExtension - components: - - pos: 39.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17186 - type: CableApcExtension - components: - - pos: 39.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17187 - type: CableApcExtension - components: - - pos: 39.5,38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17188 - type: CableApcExtension - components: - - pos: 39.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17189 - type: CableApcExtension - components: - - pos: 40.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17190 - type: CableApcExtension - components: - - pos: 41.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17191 - type: CableApcExtension - components: - - pos: 42.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17192 - type: CableApcExtension - components: - - pos: 43.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17193 - type: CableApcExtension - components: - - pos: 44.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17194 - type: CableApcExtension - components: - - pos: 45.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17195 - type: CableApcExtension - components: - - pos: 45.5,38.5 - parent: 82 - type: Transform -- uid: 17196 - type: CableApcExtension - components: - - pos: 45.5,37.5 - parent: 82 - type: Transform -- uid: 17197 - type: CableApcExtension - components: - - pos: 45.5,36.5 - parent: 82 - type: Transform -- uid: 17198 - type: CableApcExtension - components: - - pos: 45.5,35.5 - parent: 82 - type: Transform -- uid: 17199 - type: CableApcExtension - components: - - pos: 44.5,35.5 - parent: 82 - type: Transform -- uid: 17200 - type: CableApcExtension - components: - - pos: 43.5,35.5 - parent: 82 - type: Transform -- uid: 17201 - type: CableApcExtension - components: - - pos: 42.5,35.5 - parent: 82 - type: Transform -- uid: 17202 - type: CableApcExtension - components: - - pos: 41.5,35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17203 - type: CableApcExtension - components: - - pos: 45.5,34.5 - parent: 82 - type: Transform -- uid: 17204 - type: CableApcExtension - components: - - pos: 45.5,33.5 - parent: 82 - type: Transform -- uid: 17205 - type: CableApcExtension - components: - - pos: 45.5,32.5 - parent: 82 - type: Transform -- uid: 17206 - type: CableApcExtension - components: - - pos: 44.5,32.5 - parent: 82 - type: Transform -- uid: 17207 - type: CableApcExtension - components: - - pos: 43.5,32.5 - parent: 82 - type: Transform -- uid: 17208 - type: CableApcExtension - components: - - pos: 42.5,32.5 - parent: 82 - type: Transform -- uid: 17209 - type: CableApcExtension - components: - - pos: 41.5,32.5 - parent: 82 - type: Transform -- uid: 17210 - type: CableApcExtension - components: - - pos: 40.5,32.5 - parent: 82 - type: Transform -- uid: 17211 - type: CableApcExtension - components: - - pos: 39.5,32.5 - parent: 82 - type: Transform -- uid: 17212 - type: CableApcExtension - components: - - pos: 38.5,32.5 - parent: 82 - type: Transform -- uid: 17213 - type: CableApcExtension - components: - - pos: 37.5,32.5 - parent: 82 - type: Transform -- uid: 17214 - type: CableApcExtension - components: - - pos: 36.5,32.5 - parent: 82 - type: Transform -- uid: 17215 - type: CableApcExtension - components: - - pos: 35.5,32.5 - parent: 82 - type: Transform -- uid: 17216 - type: CableApcExtension - components: - - pos: 35.5,33.5 - parent: 82 - type: Transform -- uid: 17217 - type: CableApcExtension - components: - - pos: 33.5,32.5 - parent: 82 - type: Transform -- uid: 17218 - type: CableApcExtension - components: - - pos: 32.5,32.5 - parent: 82 - type: Transform -- uid: 17219 - type: CableApcExtension - components: - - pos: 31.5,32.5 - parent: 82 - type: Transform -- uid: 17220 - type: CableApcExtension - components: - - pos: 31.5,33.5 - parent: 82 - type: Transform -- uid: 17221 - type: CableApcExtension - components: - - pos: 31.5,34.5 - parent: 82 - type: Transform -- uid: 17222 - type: CableApcExtension - components: - - pos: 31.5,35.5 - parent: 82 - type: Transform -- uid: 17223 - type: CableApcExtension - components: - - pos: 31.5,36.5 - parent: 82 - type: Transform -- uid: 17224 - type: CableApcExtension - components: - - pos: 31.5,37.5 - parent: 82 - type: Transform -- uid: 17225 - type: CableApcExtension - components: - - pos: 31.5,38.5 - parent: 82 - type: Transform -- uid: 17226 - type: CableApcExtension - components: - - pos: 32.5,41.5 - parent: 82 - type: Transform -- uid: 17227 - type: CableApcExtension - components: - - pos: 32.5,43.5 - parent: 82 - type: Transform -- uid: 17228 - type: CableApcExtension - components: - - pos: 32.5,47.5 - parent: 82 - type: Transform -- uid: 17229 - type: CableApcExtension - components: - - pos: 31.5,47.5 - parent: 82 - type: Transform -- uid: 17230 - type: CableApcExtension - components: - - pos: 31.5,43.5 - parent: 82 - type: Transform -- uid: 17231 - type: CableApcExtension - components: - - pos: 31.5,41.5 - parent: 82 - type: Transform -- uid: 17232 - type: CableApcExtension - components: - - pos: 46.5,33.5 - parent: 82 - type: Transform -- uid: 17233 - type: CableApcExtension - components: - - pos: 47.5,33.5 - parent: 82 - type: Transform -- uid: 17234 - type: CableApcExtension - components: - - pos: 48.5,33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17235 - type: CableApcExtension - components: - - pos: 49.5,33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17236 - type: CableApcExtension - components: - - pos: 50.5,33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17237 - type: CableApcExtension - components: - - pos: 50.5,34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17238 - type: CableApcExtension - components: - - pos: 50.5,35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17239 - type: CableApcExtension - components: - - pos: 50.5,36.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17240 - type: CableApcExtension - components: - - pos: 50.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17241 - type: CableApcExtension - components: - - pos: 51.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17242 - type: CableApcExtension - components: - - pos: 52.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17243 - type: CableApcExtension - components: - - pos: 53.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17244 - type: CableApcExtension - components: - - pos: 54.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17245 - type: CableApcExtension - components: - - pos: 55.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17246 - type: CableApcExtension - components: - - pos: 56.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17247 - type: CableApcExtension - components: - - pos: 46.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17248 - type: CableApcExtension - components: - - pos: 47.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17249 - type: CableApcExtension - components: - - pos: 47.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17250 - type: CableApcExtension - components: - - pos: 47.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17251 - type: CableApcExtension - components: - - pos: 47.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17252 - type: CableApcExtension - components: - - pos: 47.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17253 - type: CableApcExtension - components: - - pos: 47.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17254 - type: CableApcExtension - components: - - pos: 47.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17255 - type: CableApcExtension - components: - - pos: 47.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17256 - type: CableApcExtension - components: - - pos: 47.5,47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17257 - type: CableApcExtension - components: - - pos: 47.5,48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17258 - type: CableApcExtension - components: - - pos: 47.5,49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17259 - type: CableApcExtension - components: - - pos: 47.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17260 - type: CableApcExtension - components: - - pos: 46.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17261 - type: CableApcExtension - components: - - pos: 45.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17262 - type: CableApcExtension - components: - - pos: 44.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17263 - type: CableApcExtension - components: - - pos: 43.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17264 - type: CableApcExtension - components: - - pos: 42.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17265 - type: CableApcExtension - components: - - pos: 41.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17266 - type: CableApcExtension - components: - - pos: 40.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17267 - type: CableApcExtension - components: - - pos: 40.5,49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17268 - type: CableApcExtension - components: - - pos: 40.5,48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17269 - type: CableApcExtension - components: - - pos: 40.5,47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17270 - type: CableApcExtension - components: - - pos: 40.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17271 - type: CableApcExtension - components: - - pos: 45.5,51.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17272 - type: CableApcExtension - components: - - pos: 45.5,52.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17273 - type: CableApcExtension - components: - - pos: 45.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17274 - type: CableApcExtension - components: - - pos: 45.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17275 - type: CableApcExtension - components: - - pos: 43.5,51.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17276 - type: CableApcExtension - components: - - pos: 43.5,52.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17277 - type: CableApcExtension - components: - - pos: 43.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17278 - type: CableApcExtension - components: - - pos: 43.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17279 - type: CableApcExtension - components: - - pos: 43.5,55.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17280 - type: CableApcExtension - components: - - pos: 40.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17281 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 43.5,43.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 17282 - type: CableApcExtension - components: - - pos: 42.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17283 - type: CableApcExtension - components: - - pos: 43.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17284 - type: CableApcExtension - components: - - pos: 43.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17285 - type: CableApcExtension - components: - - pos: 43.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17286 - type: CableApcExtension - components: - - pos: 42.5,11.5 - parent: 82 - type: Transform -- uid: 17287 - type: CableApcExtension - components: - - pos: 42.5,10.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17288 - type: CableApcExtension - components: - - pos: 42.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17289 - type: CableApcExtension - components: - - pos: 41.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17290 - type: CableApcExtension - components: - - pos: 41.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17291 - type: CableApcExtension - components: - - pos: 40.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17292 - type: CableApcExtension - components: - - pos: 39.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17293 - type: CableApcExtension - components: - - pos: 38.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17294 - type: CableApcExtension - components: - - pos: 37.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17295 - type: CableApcExtension - components: - - pos: 36.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17296 - type: CableHV - components: - - pos: 47.5,48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17297 - type: CableHV - components: - - pos: 47.5,49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17298 - type: CableApcExtension - components: - - pos: 43.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17299 - type: CableApcExtension - components: - - pos: 44.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17300 - type: CableApcExtension - components: - - pos: 45.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17301 - type: CableApcExtension - components: - - pos: 46.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17302 - type: CableApcExtension - components: - - pos: 47.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17303 - type: CableApcExtension - components: - - pos: 48.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17304 - type: CableApcExtension - components: - - pos: 49.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17305 - type: CableApcExtension - components: - - pos: 50.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17306 - type: CableApcExtension - components: - - pos: 51.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17307 - type: CableApcExtension - components: - - pos: 52.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17308 - type: CableApcExtension - components: - - pos: 53.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17309 - type: CableApcExtension - components: - - pos: 54.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17310 - type: CableApcExtension - components: - - pos: 54.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17311 - type: CableApcExtension - components: - - pos: 54.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17312 - type: CableApcExtension - components: - - pos: 55.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17313 - type: CableApcExtension - components: - - pos: 56.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17314 - type: CableHV - components: - - pos: 47.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17315 - type: CableHV - components: - - pos: 46.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17316 - type: GasPipeTJunction - components: - - pos: 39.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17317 - type: CableHV - components: - - pos: 45.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17318 - type: CableHV - components: - - pos: 44.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17319 - type: CableHV - components: - - pos: 43.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17320 - type: CableHV - components: - - pos: 42.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17321 - type: CableHV - components: - - pos: 41.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17322 - type: CableHV - components: - - pos: 40.5,50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17323 - type: CableHV - components: - - pos: 40.5,49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17324 - type: CableHV - components: - - pos: 40.5,48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17325 - type: CableHV - components: - - pos: 40.5,47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17326 - type: CableHV - components: - - pos: 40.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17327 - type: CableHV - components: - - pos: 45.5,51.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17328 - type: CableHV - components: - - pos: 45.5,52.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17329 - type: CableHV - components: - - pos: 45.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17330 - type: CableHV - components: - - pos: 45.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17331 - type: CrateEngineeringSolar - components: - - pos: 44.5,63.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17332 - type: CrateEngineeringCableHV - components: - - pos: 44.5,64.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17333 - type: PartRodMetal - components: - - pos: 46.5106,62.535637 - parent: 82 - type: Transform -- uid: 17334 - type: SubstationBasic - components: - - pos: 57.5,6.5 - parent: 82 - type: Transform -- uid: 17335 - type: CableMV - components: - - pos: 57.5,6.5 - parent: 82 - type: Transform -- uid: 17336 - type: CableMV - components: - - pos: 57.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17337 - type: CableMV - components: - - pos: 56.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17338 - type: CableMV - components: - - pos: 55.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17339 - type: CableMV - components: - - pos: 54.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17340 - type: CableMV - components: - - pos: 54.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17341 - type: CableMV - components: - - pos: 54.5,5.5 - parent: 82 - type: Transform -- uid: 17342 - type: CableMV - components: - - pos: 54.5,4.5 - parent: 82 - type: Transform -- uid: 17343 - type: CableMV - components: - - pos: 55.5,4.5 - parent: 82 - type: Transform -- uid: 17344 - type: CableMV - components: - - pos: 56.5,4.5 - parent: 82 - type: Transform -- uid: 17345 - type: CableMV - components: - - pos: 57.5,4.5 - parent: 82 - type: Transform -- uid: 17346 - type: CableMV - components: - - pos: 58.5,4.5 - parent: 82 - type: Transform -- uid: 17347 - type: CableMV - components: - - pos: 59.5,4.5 - parent: 82 - type: Transform -- uid: 17348 - type: CableMV - components: - - pos: 60.5,4.5 - parent: 82 - type: Transform -- uid: 17349 - type: CableMV - components: - - pos: 61.5,4.5 - parent: 82 - type: Transform -- uid: 17350 - type: CableMV - components: - - pos: 62.5,4.5 - parent: 82 - type: Transform -- uid: 17351 - type: CableMV - components: - - pos: 63.5,4.5 - parent: 82 - type: Transform -- uid: 17352 - type: CableMV - components: - - pos: 64.5,4.5 - parent: 82 - type: Transform -- uid: 17353 - type: CableMV - components: - - pos: 65.5,4.5 - parent: 82 - type: Transform -- uid: 17354 - type: CableMV - components: - - pos: 66.5,4.5 - parent: 82 - type: Transform -- uid: 17355 - type: CableMV - components: - - pos: 67.5,4.5 - parent: 82 - type: Transform -- uid: 17356 - type: CableMV - components: - - pos: 68.5,4.5 - parent: 82 - type: Transform -- uid: 17357 - type: CableMV - components: - - pos: 69.5,4.5 - parent: 82 - type: Transform -- uid: 17358 - type: CableMV - components: - - pos: 70.5,4.5 - parent: 82 - type: Transform -- uid: 17359 - type: CableMV - components: - - pos: 71.5,4.5 - parent: 82 - type: Transform -- uid: 17360 - type: CableMV - components: - - pos: 72.5,4.5 - parent: 82 - type: Transform -- uid: 17361 - type: CableMV - components: - - pos: 73.5,4.5 - parent: 82 - type: Transform -- uid: 17362 - type: CableMV - components: - - pos: 74.5,4.5 - parent: 82 - type: Transform -- uid: 17363 - type: CableMV - components: - - pos: 75.5,4.5 - parent: 82 - type: Transform -- uid: 17364 - type: CableMV - components: - - pos: 76.5,4.5 - parent: 82 - type: Transform -- uid: 17365 - type: CableMV - components: - - pos: 77.5,4.5 - parent: 82 - type: Transform -- uid: 17366 - type: CableMV - components: - - pos: 78.5,4.5 - parent: 82 - type: Transform -- uid: 17367 - type: CableMV - components: - - pos: 79.5,4.5 - parent: 82 - type: Transform -- uid: 17368 - type: CableMV - components: - - pos: 79.5,3.5 - parent: 82 - type: Transform -- uid: 17369 - type: CableMV - components: - - pos: 79.5,2.5 - parent: 82 - type: Transform -- uid: 17370 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 79.5,1.5 - parent: 82 - type: Transform -- uid: 17371 - type: CableMV - components: - - pos: 79.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17372 - type: CableApcExtension - components: - - pos: 79.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17373 - type: CableApcExtension - components: - - pos: 79.5,2.5 - parent: 82 - type: Transform -- uid: 17374 - type: CableApcExtension - components: - - pos: 79.5,3.5 - parent: 82 - type: Transform -- uid: 17375 - type: CableApcExtension - components: - - pos: 79.5,4.5 - parent: 82 - type: Transform -- uid: 17376 - type: CableApcExtension - components: - - pos: 78.5,4.5 - parent: 82 - type: Transform -- uid: 17377 - type: CableApcExtension - components: - - pos: 77.5,4.5 - parent: 82 - type: Transform -- uid: 17378 - type: CableApcExtension - components: - - pos: 76.5,4.5 - parent: 82 - type: Transform -- uid: 17379 - type: CableApcExtension - components: - - pos: 75.5,4.5 - parent: 82 - type: Transform -- uid: 17380 - type: CableApcExtension - components: - - pos: 74.5,4.5 - parent: 82 - type: Transform -- uid: 17381 - type: CableApcExtension - components: - - pos: 73.5,4.5 - parent: 82 - type: Transform -- uid: 17382 - type: CableApcExtension - components: - - pos: 72.5,4.5 - parent: 82 - type: Transform -- uid: 17383 - type: CableApcExtension - components: - - pos: 71.5,4.5 - parent: 82 - type: Transform -- uid: 17384 - type: CableApcExtension - components: - - pos: 70.5,4.5 - parent: 82 - type: Transform -- uid: 17385 - type: CableApcExtension - components: - - pos: 69.5,4.5 - parent: 82 - type: Transform -- uid: 17386 - type: CableApcExtension - components: - - pos: 69.5,3.5 - parent: 82 - type: Transform -- uid: 17387 - type: CableApcExtension - components: - - pos: 69.5,2.5 - parent: 82 - type: Transform -- uid: 17388 - type: CableApcExtension - components: - - pos: 70.5,2.5 - parent: 82 - type: Transform -- uid: 17389 - type: CableApcExtension - components: - - pos: 71.5,2.5 - parent: 82 - type: Transform -- uid: 17390 - type: CableApcExtension - components: - - pos: 72.5,2.5 - parent: 82 - type: Transform -- uid: 17391 - type: CableApcExtension - components: - - pos: 72.5,1.5 - parent: 82 - type: Transform -- uid: 17405 - type: CableApcExtension - components: - - pos: 73.5,2.5 - parent: 82 - type: Transform -- uid: 17406 - type: CableApcExtension - components: - - pos: 74.5,2.5 - parent: 82 - type: Transform -- uid: 17407 - type: CableApcExtension - components: - - pos: 75.5,2.5 - parent: 82 - type: Transform -- uid: 17408 - type: CableApcExtension - components: - - pos: 76.5,2.5 - parent: 82 - type: Transform -- uid: 17409 - type: CableApcExtension - components: - - pos: 77.5,2.5 - parent: 82 - type: Transform -- uid: 17410 - type: CableApcExtension - components: - - pos: 78.5,2.5 - parent: 82 - type: Transform -- uid: 17411 - type: CableApcExtension - components: - - pos: 80.5,2.5 - parent: 82 - type: Transform -- uid: 17412 - type: CableApcExtension - components: - - pos: 81.5,2.5 - parent: 82 - type: Transform -- uid: 17413 - type: CableApcExtension - components: - - pos: 82.5,2.5 - parent: 82 - type: Transform -- uid: 17414 - type: CableApcExtension - components: - - pos: 83.5,2.5 - parent: 82 - type: Transform -- uid: 17415 - type: CableApcExtension - components: - - pos: 84.5,2.5 - parent: 82 - type: Transform -- uid: 17416 - type: CableApcExtension - components: - - pos: 85.5,2.5 - parent: 82 - type: Transform -- uid: 17417 - type: CableApcExtension - components: - - pos: 86.5,2.5 - parent: 82 - type: Transform -- uid: 17418 - type: CableApcExtension - components: - - pos: 86.5,1.5 - parent: 82 - type: Transform -- uid: 17434 - type: CableApcExtension - components: - - pos: 80.5,4.5 - parent: 82 - type: Transform -- uid: 17435 - type: CableApcExtension - components: - - pos: 81.5,4.5 - parent: 82 - type: Transform -- uid: 17436 - type: CableApcExtension - components: - - pos: 82.5,4.5 - parent: 82 - type: Transform -- uid: 17437 - type: CableApcExtension - components: - - pos: 83.5,4.5 - parent: 82 - type: Transform -- uid: 17438 - type: CableApcExtension - components: - - pos: 84.5,4.5 - parent: 82 - type: Transform -- uid: 17439 - type: CableApcExtension - components: - - pos: 85.5,4.5 - parent: 82 - type: Transform -- uid: 17440 - type: CableApcExtension - components: - - pos: 86.5,4.5 - parent: 82 - type: Transform -- uid: 17441 - type: CableApcExtension - components: - - pos: 86.5,3.5 - parent: 82 - type: Transform -- uid: 17442 - type: CableApcExtension - components: - - pos: 83.5,5.5 - parent: 82 - type: Transform -- uid: 17443 - type: CableApcExtension - components: - - pos: 83.5,6.5 - parent: 82 - type: Transform -- uid: 17444 - type: CableApcExtension - components: - - pos: 83.5,7.5 - parent: 82 - type: Transform -- uid: 17445 - type: CableApcExtension - components: - - pos: 83.5,8.5 - parent: 82 - type: Transform -- uid: 17446 - type: CableApcExtension - components: - - pos: 83.5,9.5 - parent: 82 - type: Transform -- uid: 17447 - type: CableApcExtension - components: - - pos: 83.5,10.5 - parent: 82 - type: Transform -- uid: 17448 - type: CableApcExtension - components: - - pos: 83.5,11.5 - parent: 82 - type: Transform -- uid: 17449 - type: CableApcExtension - components: - - pos: 83.5,12.5 - parent: 82 - type: Transform -- uid: 17450 - type: CableApcExtension - components: - - pos: 83.5,13.5 - parent: 82 - type: Transform -- uid: 17451 - type: CableApcExtension - components: - - pos: 83.5,14.5 - parent: 82 - type: Transform -- uid: 17452 - type: CableApcExtension - components: - - pos: 83.5,15.5 - parent: 82 - type: Transform -- uid: 17453 - type: CableApcExtension - components: - - pos: 75.5,5.5 - parent: 82 - type: Transform -- uid: 17454 - type: CableApcExtension - components: - - pos: 75.5,6.5 - parent: 82 - type: Transform -- uid: 17455 - type: CableApcExtension - components: - - pos: 75.5,7.5 - parent: 82 - type: Transform -- uid: 17456 - type: CableApcExtension - components: - - pos: 75.5,8.5 - parent: 82 - type: Transform -- uid: 17457 - type: CableApcExtension - components: - - pos: 75.5,9.5 - parent: 82 - type: Transform -- uid: 17458 - type: CableApcExtension - components: - - pos: 75.5,10.5 - parent: 82 - type: Transform -- uid: 17459 - type: CableApcExtension - components: - - pos: 75.5,11.5 - parent: 82 - type: Transform -- uid: 17460 - type: CableApcExtension - components: - - pos: 75.5,12.5 - parent: 82 - type: Transform -- uid: 17461 - type: CableApcExtension - components: - - pos: 75.5,13.5 - parent: 82 - type: Transform -- uid: 17462 - type: CableApcExtension - components: - - pos: 75.5,14.5 - parent: 82 - type: Transform -- uid: 17463 - type: CableApcExtension - components: - - pos: 75.5,15.5 - parent: 82 - type: Transform -- uid: 17464 - type: CableApcExtension - components: - - pos: 76.5,9.5 - parent: 82 - type: Transform -- uid: 17465 - type: CableApcExtension - components: - - pos: 77.5,9.5 - parent: 82 - type: Transform -- uid: 17466 - type: CableApcExtension - components: - - pos: 78.5,9.5 - parent: 82 - type: Transform -- uid: 17467 - type: CableApcExtension - components: - - pos: 79.5,9.5 - parent: 82 - type: Transform -- uid: 17468 - type: CableApcExtension - components: - - pos: 80.5,9.5 - parent: 82 - type: Transform -- uid: 17469 - type: CableApcExtension - components: - - pos: 81.5,9.5 - parent: 82 - type: Transform -- uid: 17470 - type: CableApcExtension - components: - - pos: 82.5,9.5 - parent: 82 - type: Transform -- uid: 17471 - type: CableApcExtension - components: - - pos: 68.5,4.5 - parent: 82 - type: Transform -- uid: 17472 - type: CableApcExtension - components: - - pos: 67.5,4.5 - parent: 82 - type: Transform -- uid: 17473 - type: CableApcExtension - components: - - pos: 66.5,4.5 - parent: 82 - type: Transform -- uid: 17474 - type: CableApcExtension - components: - - pos: 65.5,4.5 - parent: 82 - type: Transform -- uid: 17475 - type: CableMV - components: - - pos: 53.5,4.5 - parent: 82 - type: Transform -- uid: 17476 - type: CableMV - components: - - pos: 52.5,4.5 - parent: 82 - type: Transform -- uid: 17477 - type: CableMV - components: - - pos: 51.5,4.5 - parent: 82 - type: Transform -- uid: 17478 - type: CableMV - components: - - pos: 50.5,4.5 - parent: 82 - type: Transform -- uid: 17479 - type: CableMV - components: - - pos: 49.5,4.5 - parent: 82 - type: Transform -- uid: 17480 - type: CableMV - components: - - pos: 48.5,4.5 - parent: 82 - type: Transform -- uid: 17481 - type: CableMV - components: - - pos: 47.5,4.5 - parent: 82 - type: Transform -- uid: 17482 - type: CableMV - components: - - pos: 46.5,4.5 - parent: 82 - type: Transform -- uid: 17483 - type: CableMV - components: - - pos: 45.5,4.5 - parent: 82 - type: Transform -- uid: 17484 - type: CableMV - components: - - pos: 44.5,4.5 - parent: 82 - type: Transform -- uid: 17485 - type: CableMV - components: - - pos: 43.5,4.5 - parent: 82 - type: Transform -- uid: 17486 - type: CableMV - components: - - pos: 42.5,4.5 - parent: 82 - type: Transform -- uid: 17487 - type: CableMV - components: - - pos: 41.5,4.5 - parent: 82 - type: Transform -- uid: 17488 - type: CableMV - components: - - pos: 41.5,3.5 - parent: 82 - type: Transform -- uid: 17489 - type: CableMV - components: - - pos: 41.5,2.5 - parent: 82 - type: Transform -- uid: 17490 - type: CableMV - components: - - pos: 41.5,1.5 - parent: 82 - type: Transform -- uid: 17491 - type: CableMV - components: - - pos: 41.5,0.5 - parent: 82 - type: Transform -- uid: 17492 - type: CableMV - components: - - pos: 41.5,-0.5 - parent: 82 - type: Transform -- uid: 17493 - type: CableMV - components: - - pos: 41.5,-1.5 - parent: 82 - type: Transform -- uid: 17494 - type: CableMV - components: - - pos: 41.5,-2.5 - parent: 82 - type: Transform -- uid: 17495 - type: CableMV - components: - - pos: 41.5,-3.5 - parent: 82 - type: Transform -- uid: 17496 - type: CableMV - components: - - pos: 41.5,-4.5 - parent: 82 - type: Transform -- uid: 17497 - type: CableMV - components: - - pos: 41.5,-5.5 - parent: 82 - type: Transform -- uid: 17498 - type: CableMV - components: - - pos: 42.5,-5.5 - parent: 82 - type: Transform -- uid: 17499 - type: CableMV - components: - - pos: 43.5,-5.5 - parent: 82 - type: Transform -- uid: 17500 - type: CableMV - components: - - pos: 44.5,-5.5 - parent: 82 - type: Transform -- uid: 17501 - type: CableMV - components: - - pos: 45.5,-5.5 - parent: 82 - type: Transform -- uid: 17502 - type: CableMV - components: - - pos: 46.5,-5.5 - parent: 82 - type: Transform -- uid: 17503 - type: CableMV - components: - - pos: 47.5,-5.5 - parent: 82 - type: Transform -- uid: 17504 - type: CableMV - components: - - pos: 48.5,-5.5 - parent: 82 - type: Transform -- uid: 17505 - type: CableMV - components: - - pos: 49.5,-5.5 - parent: 82 - type: Transform -- uid: 17506 - type: CableMV - components: - - pos: 50.5,-5.5 - parent: 82 - type: Transform -- uid: 17507 - type: CableMV - components: - - pos: 51.5,-5.5 - parent: 82 - type: Transform -- uid: 17508 - type: CableMV - components: - - pos: 52.5,-5.5 - parent: 82 - type: Transform -- uid: 17509 - type: CableMV - components: - - pos: 53.5,-5.5 - parent: 82 - type: Transform -- uid: 17510 - type: CableMV - components: - - pos: 54.5,-5.5 - parent: 82 - type: Transform -- uid: 17511 - type: CableMV - components: - - pos: 55.5,-5.5 - parent: 82 - type: Transform -- uid: 17512 - type: CableMV - components: - - pos: 56.5,-5.5 - parent: 82 - type: Transform -- uid: 17513 - type: CableMV - components: - - pos: 56.5,-6.5 - parent: 82 - type: Transform -- uid: 17514 - type: CableMV - components: - - pos: 56.5,-7.5 - parent: 82 - type: Transform -- uid: 17515 - type: CableMV - components: - - pos: 56.5,-8.5 - parent: 82 - type: Transform -- uid: 17516 - type: CableMV - components: - - pos: 56.5,-9.5 - parent: 82 - type: Transform -- uid: 17517 - type: CableMV - components: - - pos: 56.5,-10.5 - parent: 82 - type: Transform -- uid: 17518 - type: CableMV - components: - - pos: 56.5,-11.5 - parent: 82 - type: Transform -- uid: 17519 - type: CableMV - components: - - pos: 56.5,-12.5 - parent: 82 - type: Transform -- uid: 17520 - type: CableMV - components: - - pos: 56.5,-13.5 - parent: 82 - type: Transform -- uid: 17521 - type: CableMV - components: - - pos: 56.5,-14.5 - parent: 82 - type: Transform -- uid: 17522 - type: CableMV - components: - - pos: 56.5,-15.5 - parent: 82 - type: Transform -- uid: 17523 - type: CableMV - components: - - pos: 56.5,-16.5 - parent: 82 - type: Transform -- uid: 17524 - type: CableMV - components: - - pos: 56.5,-17.5 - parent: 82 - type: Transform -- uid: 17525 - type: CableMV - components: - - pos: 56.5,-18.5 - parent: 82 - type: Transform -- uid: 17526 - type: CableMV - components: - - pos: 56.5,-19.5 - parent: 82 - type: Transform -- uid: 17527 - type: CableMV - components: - - pos: 57.5,-19.5 - parent: 82 - type: Transform -- uid: 17528 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 57.5,-20.5 - parent: 82 - type: Transform -- uid: 17529 - type: CableMV - components: - - pos: 57.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17530 - type: CableMV - components: - - pos: 55.5,-19.5 - parent: 82 - type: Transform -- uid: 17531 - type: CableMV - components: - - pos: 54.5,-19.5 - parent: 82 - type: Transform -- uid: 17532 - type: CableMV - components: - - pos: 54.5,-20.5 - parent: 82 - type: Transform -- uid: 17533 - type: CableMV - components: - - pos: 54.5,-21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17534 - type: CableMV - components: - - pos: 54.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17535 - type: CableMV - components: - - pos: 54.5,-23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17536 - type: CableMV - components: - - pos: 54.5,-24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17537 - type: CableMV - components: - - pos: 54.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17538 - type: CableMV - components: - - pos: 54.5,-26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17539 - type: CableMV - components: - - pos: 54.5,-27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17540 - type: CableMV - components: - - pos: 54.5,-28.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17541 - type: CableMV - components: - - pos: 54.5,-29.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17542 - type: CableMV - components: - - pos: 54.5,-30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17543 - type: CableMV - components: - - pos: 54.5,-31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17544 - type: CableMV - components: - - pos: 54.5,-32.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17545 - type: CableMV - components: - - pos: 54.5,-33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17546 - type: CableMV - components: - - pos: 54.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17547 - type: CableMV - components: - - pos: 54.5,-35.5 - parent: 82 - type: Transform -- uid: 17548 - type: APCBasic - components: - - pos: 53.5,-35.5 - parent: 82 - type: Transform -- uid: 17549 - type: CableMV - components: - - pos: 53.5,-35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17550 - type: CableApcExtension - components: - - pos: 53.5,-36.5 - parent: 82 - type: Transform -- uid: 17551 - type: CableApcExtension - components: - - pos: 52.5,-36.5 - parent: 82 - type: Transform -- uid: 17552 - type: CableApcExtension - components: - - pos: 51.5,-36.5 - parent: 82 - type: Transform -- uid: 17553 - type: CableApcExtension - components: - - pos: 51.5,-37.5 - parent: 82 - type: Transform -- uid: 17554 - type: CableApcExtension - components: - - pos: 51.5,-38.5 - parent: 82 - type: Transform -- uid: 17555 - type: CableApcExtension - components: - - pos: 51.5,-39.5 - parent: 82 - type: Transform -- uid: 17556 - type: CableApcExtension - components: - - pos: 51.5,-40.5 - parent: 82 - type: Transform -- uid: 17557 - type: CableApcExtension - components: - - pos: 51.5,-41.5 - parent: 82 - type: Transform -- uid: 17558 - type: CableApcExtension - components: - - pos: 51.5,-42.5 - parent: 82 - type: Transform -- uid: 17559 - type: CableApcExtension - components: - - pos: 51.5,-43.5 - parent: 82 - type: Transform -- uid: 17560 - type: CableApcExtension - components: - - pos: 51.5,-44.5 - parent: 82 - type: Transform -- uid: 17561 - type: CableApcExtension - components: - - pos: 51.5,-45.5 - parent: 82 - type: Transform -- uid: 17562 - type: CableApcExtension - components: - - pos: 51.5,-46.5 - parent: 82 - type: Transform -- uid: 17563 - type: CableApcExtension - components: - - pos: 52.5,-46.5 - parent: 82 - type: Transform -- uid: 17564 - type: CableApcExtension - components: - - pos: 52.5,-47.5 - parent: 82 - type: Transform -- uid: 17565 - type: CableApcExtension - components: - - pos: 52.5,-48.5 - parent: 82 - type: Transform -- uid: 17566 - type: CableApcExtension - components: - - pos: 52.5,-49.5 - parent: 82 - type: Transform -- uid: 17567 - type: CableApcExtension - components: - - pos: 52.5,-50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17568 - type: CableApcExtension - components: - - pos: 53.5,-48.5 - parent: 82 - type: Transform -- uid: 17569 - type: CableApcExtension - components: - - pos: 54.5,-48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17570 - type: CableApcExtension - components: - - pos: 52.5,-45.5 - parent: 82 - type: Transform -- uid: 17571 - type: CableApcExtension - components: - - pos: 53.5,-45.5 - parent: 82 - type: Transform -- uid: 17572 - type: CableApcExtension - components: - - pos: 54.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17573 - type: CableApcExtension - components: - - pos: 52.5,-41.5 - parent: 82 - type: Transform -- uid: 17574 - type: CableApcExtension - components: - - pos: 53.5,-41.5 - parent: 82 - type: Transform -- uid: 17575 - type: CableApcExtension - components: - - pos: 54.5,-41.5 - parent: 82 - type: Transform -- uid: 17576 - type: CableApcExtension - components: - - pos: 55.5,-41.5 - parent: 82 - type: Transform -- uid: 17577 - type: CableApcExtension - components: - - pos: 56.5,-41.5 - parent: 82 - type: Transform -- uid: 17578 - type: CableApcExtension - components: - - pos: 57.5,-41.5 - parent: 82 - type: Transform -- uid: 17579 - type: CableApcExtension - components: - - pos: 58.5,-41.5 - parent: 82 - type: Transform -- uid: 17580 - type: CableApcExtension - components: - - pos: 59.5,-41.5 - parent: 82 - type: Transform -- uid: 17581 - type: CableApcExtension - components: - - pos: 60.5,-41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17582 - type: CableApcExtension - components: - - pos: 60.5,-40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17583 - type: CableApcExtension - components: - - pos: 57.5,-42.5 - parent: 82 - type: Transform -- uid: 17584 - type: CableApcExtension - components: - - pos: 57.5,-43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17585 - type: CableApcExtension - components: - - pos: 56.5,-43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17586 - type: CableApcExtension - components: - - pos: 58.5,-43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17587 - type: CableApcExtension - components: - - pos: 58.5,-40.5 - parent: 82 - type: Transform -- uid: 17588 - type: CableApcExtension - components: - - pos: 58.5,-39.5 - parent: 82 - type: Transform -- uid: 17589 - type: CableApcExtension - components: - - pos: 54.5,-36.5 - parent: 82 - type: Transform -- uid: 17590 - type: CableApcExtension - components: - - pos: 55.5,-36.5 - parent: 82 - type: Transform -- uid: 17591 - type: CableApcExtension - components: - - pos: 56.5,-36.5 - parent: 82 - type: Transform -- uid: 17592 - type: CableApcExtension - components: - - pos: 57.5,-36.5 - parent: 82 - type: Transform -- uid: 17593 - type: CableApcExtension - components: - - pos: 58.5,-36.5 - parent: 82 - type: Transform -- uid: 17594 - type: CableApcExtension - components: - - pos: 53.5,-35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17595 - type: CableApcExtension - components: - - pos: 55.5,-35.5 - parent: 82 - type: Transform -- uid: 17596 - type: CableApcExtension - components: - - pos: 55.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17597 - type: CableApcExtension - components: - - pos: 55.5,-33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17598 - type: CableApcExtension - components: - - pos: 55.5,-32.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17599 - type: CableApcExtension - components: - - pos: 55.5,-31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17600 - type: CableApcExtension - components: - - pos: 55.5,-30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17601 - type: CableApcExtension - components: - - pos: 55.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17602 - type: CableApcExtension - components: - - pos: 55.5,-24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17603 - type: CableApcExtension - components: - - pos: 55.5,-23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17604 - type: CableApcExtension - components: - - pos: 55.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17605 - type: CableApcExtension - components: - - pos: 55.5,-21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17606 - type: CableApcExtension - components: - - pos: 55.5,-20.5 - parent: 82 - type: Transform -- uid: 17607 - type: CableApcExtension - components: - - pos: 55.5,-19.5 - parent: 82 - type: Transform -- uid: 17608 - type: CableApcExtension - components: - - pos: 56.5,-19.5 - parent: 82 - type: Transform -- uid: 17609 - type: CableApcExtension - components: - - pos: 57.5,-19.5 - parent: 82 - type: Transform -- uid: 17610 - type: CableApcExtension - components: - - pos: 57.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17611 - type: CableMV - components: - - pos: 53.5,-33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17612 - type: CableMV - components: - - pos: 53.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17613 - type: Catwalk - components: - - pos: 40.5,47.5 - parent: 82 - type: Transform -- uid: 17614 - type: CableMV - components: - - pos: 56.5,-33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17615 - type: CableMV - components: - - pos: 56.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17616 - type: Catwalk - components: - - pos: 40.5,48.5 - parent: 82 - type: Transform -- uid: 17617 - type: CableMV - components: - - pos: 52.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17618 - type: CableMV - components: - - pos: 51.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17619 - type: CableMV - components: - - pos: 50.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17620 - type: CableMV - components: - - pos: 49.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17621 - type: CableMV - components: - - pos: 48.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17622 - type: CableMV - components: - - pos: 47.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17623 - type: CableMV - components: - - pos: 47.5,-35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17624 - type: CableMV - components: - - pos: 47.5,-36.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17625 - type: CableMV - components: - - pos: 47.5,-37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17626 - type: CableMV - components: - - pos: 47.5,-38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17627 - type: CableMV - components: - - pos: 46.5,-38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17628 - type: CableMV - components: - - pos: 45.5,-38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17629 - type: CableMV - components: - - pos: 44.5,-38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17630 - type: CableMV - components: - - pos: 43.5,-38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17631 - type: CableMV - components: - - pos: 42.5,-38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17632 - type: CableMV - components: - - pos: 41.5,-38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17633 - type: CableMV - components: - - pos: 40.5,-38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17634 - type: CableMV - components: - - pos: 39.5,-38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17635 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -59.5,38.5 - parent: 82 - type: Transform -- uid: 17636 - type: CableMV - components: - - pos: 37.5,-38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17637 - type: CableMV - components: - - pos: 36.5,-38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17638 - type: CableMV - components: - - pos: 36.5,-39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17639 - type: CableMV - components: - - pos: 36.5,-40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17640 - type: CableMV - components: - - pos: 36.5,-41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17641 - type: CableMV - components: - - pos: 36.5,-42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17642 - type: CableMV - components: - - pos: 36.5,-43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17643 - type: CableMV - components: - - pos: 36.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17644 - type: CableMV - components: - - pos: 36.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17645 - type: CableMV - components: - - pos: 36.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17646 - type: CableMV - components: - - pos: 36.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17647 - type: CableMV - components: - - pos: 36.5,-48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17648 - type: CableMV - components: - - pos: 36.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17649 - type: CableMV - components: - - pos: 36.5,-50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17650 - type: CableMV - components: - - pos: 36.5,-51.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17651 - type: CableMV - components: - - pos: 36.5,-52.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17652 - type: CableMV - components: - - pos: 36.5,-53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17653 - type: CableMV - components: - - pos: 36.5,-54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17654 - type: CableMV - components: - - pos: 36.5,-55.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17655 - type: CableMV - components: - - pos: 36.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17656 - type: CableMV - components: - - pos: 37.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17657 - type: CableMV - components: - - pos: 38.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17658 - type: CableMV - components: - - pos: 39.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17659 - type: CableMV - components: - - pos: 40.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17660 - type: CableMV - components: - - pos: 41.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17661 - type: CableMV - components: - - pos: 42.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17662 - type: CableMV - components: - - pos: 43.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17663 - type: CableMV - components: - - pos: 44.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17664 - type: CableMV - components: - - pos: 45.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17665 - type: CableMV - components: - - pos: 46.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17666 - type: CableMV - components: - - pos: 47.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17667 - type: CableMV - components: - - pos: 48.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17668 - type: CableMV - components: - - pos: 49.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17669 - type: CableMV - components: - - pos: 50.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17670 - type: CableMV - components: - - pos: 51.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17671 - type: CableMV - components: - - pos: 52.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17672 - type: CableMV - components: - - pos: 53.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17673 - type: CableMV - components: - - pos: 54.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17674 - type: CableMV - components: - - pos: 55.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17675 - type: CableMV - components: - - pos: 56.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17676 - type: CableMV - components: - - pos: 57.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17677 - type: CableMV - components: - - pos: 58.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17678 - type: CableMV - components: - - pos: 59.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17679 - type: CableMV - components: - - pos: 60.5,-56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17680 - type: CableMV - components: - - pos: 60.5,-55.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17681 - type: CableMV - components: - - pos: 60.5,-54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17682 - type: CableMV - components: - - pos: 60.5,-53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17683 - type: CableMV - components: - - pos: 60.5,-52.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17684 - type: CableMV - components: - - pos: 60.5,-51.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17685 - type: CableMV - components: - - pos: 60.5,-50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17686 - type: CableMV - components: - - pos: 60.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17687 - type: CableMV - components: - - pos: 60.5,-48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17688 - type: CableMV - components: - - pos: 61.5,-48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17689 - type: CableMV - components: - - pos: 62.5,-48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17690 - type: CableMV - components: - - pos: 63.5,-48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17691 - type: CableMV - components: - - pos: 64.5,-48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17692 - type: CableMV - components: - - pos: 65.5,-48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17693 - type: CableMV - components: - - pos: 65.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17694 - type: CableMV - components: - - pos: 65.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17695 - type: CableMV - components: - - pos: 65.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17696 - type: CableMV - components: - - pos: 65.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17697 - type: CableMV - components: - - pos: 65.5,-43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17698 - type: CableMV - components: - - pos: 65.5,-42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17699 - type: CableMV - components: - - pos: 65.5,-41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17700 - type: CableMV - components: - - pos: 65.5,-40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17701 - type: CableMV - components: - - pos: 65.5,-39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17702 - type: CableMV - components: - - pos: 65.5,-38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17703 - type: CableMV - components: - - pos: 65.5,-37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17704 - type: CableMV - components: - - pos: 65.5,-36.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17705 - type: CableMV - components: - - pos: 65.5,-35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17706 - type: CableMV - components: - - pos: 64.5,-35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17707 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 53.5,53.5 - parent: 82 - type: Transform -- uid: 17708 - type: CableMV - components: - - pos: 62.5,-35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17709 - type: CableMV - components: - - pos: 62.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17710 - type: CableMV - components: - - pos: 61.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17711 - type: CableMV - components: - - pos: 60.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17712 - type: CableMV - components: - - pos: 59.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17713 - type: CableMV - components: - - pos: 58.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17714 - type: CableMV - components: - - pos: 57.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17715 - type: CableApcExtension - components: - - pos: 54.5,-37.5 - parent: 82 - type: Transform -- uid: 17716 - type: CableApcExtension - components: - - pos: 54.5,-38.5 - parent: 82 - type: Transform -- uid: 17717 - type: CableApcExtension - components: - - pos: 50.5,-42.5 - parent: 82 - type: Transform -- uid: 17718 - type: CableApcExtension - components: - - pos: 49.5,-42.5 - parent: 82 - type: Transform -- uid: 17719 - type: CableApcExtension - components: - - pos: 48.5,-42.5 - parent: 82 - type: Transform -- uid: 17720 - type: CableApcExtension - components: - - pos: 47.5,-42.5 - parent: 82 - type: Transform -- uid: 17721 - type: CableApcExtension - components: - - pos: 46.5,-42.5 - parent: 82 - type: Transform -- uid: 17722 - type: CableApcExtension - components: - - pos: 45.5,-42.5 - parent: 82 - type: Transform -- uid: 17723 - type: CableApcExtension - components: - - pos: 44.5,-42.5 - parent: 82 - type: Transform -- uid: 17724 - type: CableApcExtension - components: - - pos: 44.5,-41.5 - parent: 82 - type: Transform -- uid: 17725 - type: CableApcExtension - components: - - pos: 44.5,-40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17726 - type: CableApcExtension - components: - - pos: 43.5,-42.5 - parent: 82 - type: Transform -- uid: 17727 - type: CableApcExtension - components: - - pos: 42.5,-42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17728 - type: CableApcExtension - components: - - pos: 46.5,-41.5 - parent: 82 - type: Transform -- uid: 17729 - type: CableApcExtension - components: - - pos: 46.5,-40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17730 - type: CableApcExtension - components: - - pos: 47.5,-40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17731 - type: CableApcExtension - components: - - pos: 48.5,-40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17732 - type: CableApcExtension - components: - - pos: 48.5,-41.5 - parent: 82 - type: Transform -- uid: 17733 - type: CableApcExtension - components: - - pos: 46.5,-43.5 - parent: 82 - type: Transform -- uid: 17734 - type: CableApcExtension - components: - - pos: 46.5,-44.5 - parent: 82 - type: Transform -- uid: 17735 - type: CableApcExtension - components: - - pos: 46.5,-45.5 - parent: 82 - type: Transform -- uid: 17736 - type: CableApcExtension - components: - - pos: 46.5,-46.5 - parent: 82 - type: Transform -- uid: 17737 - type: CableApcExtension - components: - - pos: 45.5,-46.5 - parent: 82 - type: Transform -- uid: 17738 - type: CableApcExtension - components: - - pos: 44.5,-46.5 - parent: 82 - type: Transform -- uid: 17739 - type: CableApcExtension - components: - - pos: 43.5,-46.5 - parent: 82 - type: Transform -- uid: 17740 - type: CableApcExtension - components: - - pos: 42.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17741 - type: CableApcExtension - components: - - pos: 42.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17742 - type: CableApcExtension - components: - - pos: 44.5,-47.5 - parent: 82 - type: Transform -- uid: 17743 - type: CableApcExtension - components: - - pos: 44.5,-48.5 - parent: 82 - type: Transform -- uid: 17744 - type: CableApcExtension - components: - - pos: 44.5,-49.5 - parent: 82 - type: Transform -- uid: 17745 - type: CableApcExtension - components: - - pos: 44.5,-50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17746 - type: CableApcExtension - components: - - pos: 43.5,-48.5 - parent: 82 - type: Transform -- uid: 17747 - type: CableApcExtension - components: - - pos: 42.5,-48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17748 - type: CableApcExtension - components: - - pos: 47.5,-46.5 - parent: 82 - type: Transform -- uid: 17749 - type: CableApcExtension - components: - - pos: 48.5,-46.5 - parent: 82 - type: Transform -- uid: 17750 - type: CableApcExtension - components: - - pos: 48.5,-47.5 - parent: 82 - type: Transform -- uid: 17751 - type: CableApcExtension - components: - - pos: 48.5,-48.5 - parent: 82 - type: Transform -- uid: 17752 - type: CableApcExtension - components: - - pos: 48.5,-49.5 - parent: 82 - type: Transform -- uid: 17753 - type: CableApcExtension - components: - - pos: 48.5,-50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17754 - type: CableApcExtension - components: - - pos: 49.5,-46.5 - parent: 82 - type: Transform -- uid: 17755 - type: CableApcExtension - components: - - pos: 50.5,-46.5 - parent: 82 - type: Transform -- uid: 17756 - type: CableApcExtension - components: - - pos: 58.5,-19.5 - parent: 82 - type: Transform -- uid: 17757 - type: CableApcExtension - components: - - pos: 59.5,-19.5 - parent: 82 - type: Transform -- uid: 17758 - type: CableApcExtension - components: - - pos: 60.5,-19.5 - parent: 82 - type: Transform -- uid: 17759 - type: CableApcExtension - components: - - pos: 61.5,-19.5 - parent: 82 - type: Transform -- uid: 17760 - type: CableApcExtension - components: - - pos: 61.5,-20.5 - parent: 82 - type: Transform -- uid: 17761 - type: CableApcExtension - components: - - pos: 61.5,-21.5 - parent: 82 - type: Transform -- uid: 17762 - type: CableApcExtension - components: - - pos: 62.5,-20.5 - parent: 82 - type: Transform -- uid: 17763 - type: CableApcExtension - components: - - pos: 63.5,-20.5 - parent: 82 - type: Transform -- uid: 17764 - type: CableApcStack1 - components: - - pos: -60.556553,-39.51797 - parent: 82 - type: Transform -- uid: 17765 - type: CableApcStack1 - components: - - pos: -60.528774,-40.50408 - parent: 82 - type: Transform -- uid: 17766 - type: Grille - components: - - pos: 49.5,-17.5 - parent: 82 - type: Transform -- uid: 17767 - type: Grille - components: - - pos: 48.5,-17.5 - parent: 82 - type: Transform -- uid: 17768 - type: ReinforcedPlasmaWindow - components: - - pos: 52.5,-17.5 - parent: 82 - type: Transform -- uid: 17769 - type: ReinforcedPlasmaWindow - components: - - pos: 51.5,-17.5 - parent: 82 - type: Transform -- uid: 17770 - type: Grille - components: - - pos: 52.5,-17.5 - parent: 82 - type: Transform -- uid: 17771 - type: CableApcExtension - components: - - pos: 65.5,-20.5 - parent: 82 - type: Transform -- uid: 17772 - type: WindowReinforcedDirectional - components: - - pos: 64.5,-16.5 - parent: 82 - type: Transform -- uid: 17773 - type: MagazineMagnumSubMachineGunPractice - components: - - pos: 60.47745,-20.37328 - parent: 82 - type: Transform -- uid: 17774 - type: TableReinforced - components: - - pos: 63.5,-20.5 - parent: 82 - type: Transform -- uid: 17775 - type: ReinforcedWindow - components: - - pos: 66.5,-23.5 - parent: 82 - type: Transform -- uid: 17776 - type: ReinforcedWindow - components: - - pos: 65.5,-17.5 - parent: 82 - type: Transform -- uid: 17777 - type: ReinforcedWindow - components: - - pos: 68.5,-18.5 - parent: 82 - type: Transform -- uid: 17778 - type: ReinforcedWindow - components: - - pos: 68.5,-21.5 - parent: 82 - type: Transform -- uid: 17779 - type: MagazineBoxMagnumPractice - components: - - pos: 61.8193,-22.449226 - parent: 82 - type: Transform -- uid: 17780 - type: WindowReinforcedDirectional - components: - - pos: 67.5,-16.5 - parent: 82 - type: Transform -- uid: 17781 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 64.5,-24.5 - parent: 82 - type: Transform -- uid: 17782 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 65.5,-24.5 - parent: 82 - type: Transform -- uid: 17783 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-21.5 - parent: 82 - type: Transform -- uid: 17784 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-22.5 - parent: 82 - type: Transform -- uid: 17785 - type: LockerEvidence - components: - - pos: 34.5,-11.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17786 - type: Flash - components: - - pos: 49.30169,-14.197907 - parent: 82 - type: Transform -- uid: 17787 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-37.5 - parent: 82 - type: Transform -- uid: 17788 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -37.5,-43.5 - parent: 82 - type: Transform -- uid: 17789 - type: CableApcExtension - components: - - pos: 54.5,-19.5 - parent: 82 - type: Transform -- uid: 17790 - type: Flash - components: - - pos: 49.621136,-14.309018 - parent: 82 - type: Transform -- uid: 17791 - type: Table - components: - - pos: 49.5,-14.5 - parent: 82 - type: Transform -- uid: 17792 - type: Table - components: - - pos: 49.5,-13.5 - parent: 82 - type: Transform -- uid: 17793 - type: WallSolid - components: - - pos: -41.5,-38.5 - parent: 82 - type: Transform -- uid: 17794 - type: BoxZiptie - components: - - pos: 49.67669,-13.211796 - parent: 82 - type: Transform -- uid: 17795 - type: MagazineMagnumSubMachineGun - components: - - pos: 52.641285,-19.340649 - parent: 82 - type: Transform -- uid: 17796 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -36.5,-13.5 - parent: 82 - type: Transform -- uid: 17797 - type: CableApcExtension - components: - - pos: 52.5,-13.5 - parent: 82 - type: Transform -- uid: 17798 - type: CableApcExtension - components: - - pos: 52.5,-12.5 - parent: 82 - type: Transform -- uid: 17799 - type: CableApcExtension - components: - - pos: 53.5,-12.5 - parent: 82 - type: Transform -- uid: 17800 - type: CableApcExtension - components: - - pos: 54.5,-12.5 - parent: 82 - type: Transform -- uid: 17801 - type: CableApcExtension - components: - - pos: 55.5,-12.5 - parent: 82 - type: Transform -- uid: 17802 - type: CableApcExtension - components: - - pos: 56.5,-12.5 - parent: 82 - type: Transform -- uid: 17803 - type: CableApcExtension - components: - - pos: 56.5,-13.5 - parent: 82 - type: Transform -- uid: 17804 - type: CableApcExtension - components: - - pos: 56.5,-14.5 - parent: 82 - type: Transform -- uid: 17805 - type: CableApcExtension - components: - - pos: 56.5,-15.5 - parent: 82 - type: Transform -- uid: 17806 - type: CableApcExtension - components: - - pos: 56.5,-16.5 - parent: 82 - type: Transform -- uid: 17807 - type: CableApcExtension - components: - - pos: 56.5,-17.5 - parent: 82 - type: Transform -- uid: 17808 - type: CableApcExtension - components: - - pos: 56.5,-18.5 - parent: 82 - type: Transform -- uid: 17809 - type: CableApcExtension - components: - - pos: 58.5,-18.5 - parent: 82 - type: Transform -- uid: 17810 - type: CableApcExtension - components: - - pos: 58.5,-17.5 - parent: 82 - type: Transform -- uid: 17811 - type: CableApcExtension - components: - - pos: 58.5,-16.5 - parent: 82 - type: Transform -- uid: 17812 - type: CableApcExtension - components: - - pos: 58.5,-15.5 - parent: 82 - type: Transform -- uid: 17813 - type: CableApcExtension - components: - - pos: 58.5,-14.5 - parent: 82 - type: Transform -- uid: 17814 - type: CableApcExtension - components: - - pos: 58.5,-13.5 - parent: 82 - type: Transform -- uid: 17815 - type: CableApcExtension - components: - - pos: 59.5,-14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17816 - type: CableApcExtension - components: - - pos: 59.5,-15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17817 - type: CableApcExtension - components: - - pos: 60.5,-14.5 - parent: 82 - type: Transform -- uid: 17818 - type: CableApcExtension - components: - - pos: 61.5,-14.5 - parent: 82 - type: Transform -- uid: 17819 - type: CableApcExtension - components: - - pos: 62.5,-14.5 - parent: 82 - type: Transform -- uid: 17820 - type: CableApcExtension - components: - - pos: 61.5,-15.5 - parent: 82 - type: Transform -- uid: 17821 - type: CableApcExtension - components: - - pos: 61.5,-16.5 - parent: 82 - type: Transform -- uid: 17822 - type: CableApcExtension - components: - - pos: 61.5,-13.5 - parent: 82 - type: Transform -- uid: 17823 - type: CableApcExtension - components: - - pos: 60.5,-13.5 - parent: 82 - type: Transform -- uid: 17824 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 31.5,45.5 - parent: 82 - type: Transform -- uid: 17825 - type: CableApcExtension - components: - - pos: 57.5,-7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17826 - type: CableApcExtension - components: - - pos: 57.5,-6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17827 - type: CableMV - components: - - pos: 57.5,-6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17828 - type: CableApcExtension - components: - - pos: 57.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17829 - type: CableApcExtension - components: - - pos: 57.5,-9.5 - parent: 82 - type: Transform -- uid: 17830 - type: CableApcExtension - components: - - pos: 57.5,-10.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17831 - type: CableApcExtension - components: - - pos: 57.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17832 - type: CableApcExtension - components: - - pos: 58.5,-6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17833 - type: CableApcExtension - components: - - pos: 59.5,-6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17834 - type: CableApcExtension - components: - - pos: 60.5,-6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17835 - type: CableApcExtension - components: - - pos: 61.5,-6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17836 - type: CableApcExtension - components: - - pos: 62.5,-6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17837 - type: CableApcExtension - components: - - pos: 63.5,-6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17838 - type: CableApcExtension - components: - - pos: 63.5,-7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17839 - type: CableApcExtension - components: - - pos: 63.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17840 - type: CableApcExtension - components: - - pos: 63.5,-9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17841 - type: CableApcExtension - components: - - pos: 63.5,-10.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17842 - type: CableApcExtension - components: - - pos: 63.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17843 - type: CableApcExtension - components: - - pos: 63.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17844 - type: CableApcExtension - components: - - pos: 62.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17845 - type: CableApcExtension - components: - - pos: 57.5,-5.5 - parent: 82 - type: Transform -- uid: 17846 - type: CableApcExtension - components: - - pos: 57.5,-4.5 - parent: 82 - type: Transform -- uid: 17847 - type: CableApcExtension - components: - - pos: 58.5,-4.5 - parent: 82 - type: Transform -- uid: 17848 - type: CableApcExtension - components: - - pos: 59.5,-4.5 - parent: 82 - type: Transform -- uid: 17849 - type: CableApcExtension - components: - - pos: 59.5,-3.5 - parent: 82 - type: Transform -- uid: 17850 - type: CableApcExtension - components: - - pos: 59.5,-2.5 - parent: 82 - type: Transform -- uid: 17851 - type: CableApcExtension - components: - - pos: 59.5,-1.5 - parent: 82 - type: Transform -- uid: 17852 - type: CableApcExtension - components: - - pos: 59.5,-0.5 - parent: 82 - type: Transform -- uid: 17853 - type: CableApcExtension - components: - - pos: 59.5,0.5 - parent: 82 - type: Transform -- uid: 17854 - type: CableApcExtension - components: - - pos: 59.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17855 - type: CableApcExtension - components: - - pos: 60.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17856 - type: CableApcExtension - components: - - pos: 61.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17857 - type: CableApcExtension - components: - - pos: 61.5,0.5 - parent: 82 - type: Transform -- uid: 17858 - type: CableApcExtension - components: - - pos: 61.5,-0.5 - parent: 82 - type: Transform -- uid: 17859 - type: CableApcExtension - components: - - pos: 61.5,-1.5 - parent: 82 - type: Transform -- uid: 17860 - type: CableApcExtension - components: - - pos: 61.5,-2.5 - parent: 82 - type: Transform -- uid: 17861 - type: CableApcExtension - components: - - pos: 61.5,-3.5 - parent: 82 - type: Transform -- uid: 17862 - type: CableApcExtension - components: - - pos: 61.5,-4.5 - parent: 82 - type: Transform -- uid: 17863 - type: CableApcExtension - components: - - pos: 60.5,-4.5 - parent: 82 - type: Transform -- uid: 17864 - type: CableApcExtension - components: - - pos: 59.5,2.5 - parent: 82 - type: Transform -- uid: 17865 - type: CableApcExtension - components: - - pos: 58.5,2.5 - parent: 82 - type: Transform -- uid: 17866 - type: CableApcExtension - components: - - pos: 61.5,2.5 - parent: 82 - type: Transform -- uid: 17867 - type: CableApcExtension - components: - - pos: 62.5,2.5 - parent: 82 - type: Transform -- uid: 17868 - type: CableApcExtension - components: - - pos: 63.5,2.5 - parent: 82 - type: Transform -- uid: 17869 - type: CableApcExtension - components: - - pos: 64.5,2.5 - parent: 82 - type: Transform -- uid: 17870 - type: CableApcExtension - components: - - pos: 57.5,2.5 - parent: 82 - type: Transform -- uid: 17871 - type: CableApcExtension - components: - - pos: 56.5,2.5 - parent: 82 - type: Transform -- uid: 17872 - type: CableApcExtension - components: - - pos: 55.5,2.5 - parent: 82 - type: Transform -- uid: 17873 - type: CableApcExtension - components: - - pos: 54.5,2.5 - parent: 82 - type: Transform -- uid: 17874 - type: CableApcExtension - components: - - pos: 53.5,2.5 - parent: 82 - type: Transform -- uid: 17875 - type: CableApcExtension - components: - - pos: 52.5,2.5 - parent: 82 - type: Transform -- uid: 17876 - type: CableApcExtension - components: - - pos: 51.5,2.5 - parent: 82 - type: Transform -- uid: 17877 - type: CableApcExtension - components: - - pos: 50.5,2.5 - parent: 82 - type: Transform -- uid: 17878 - type: CableApcExtension - components: - - pos: 56.5,-6.5 - parent: 82 - type: Transform -- uid: 17879 - type: CableApcExtension - components: - - pos: 56.5,-7.5 - parent: 82 - type: Transform -- uid: 17880 - type: CableApcExtension - components: - - pos: 56.5,-8.5 - parent: 82 - type: Transform -- uid: 17881 - type: CableApcExtension - components: - - pos: 55.5,-8.5 - parent: 82 - type: Transform -- uid: 17882 - type: CableApcExtension - components: - - pos: 54.5,-8.5 - parent: 82 - type: Transform -- uid: 17883 - type: CableApcExtension - components: - - pos: 53.5,-8.5 - parent: 82 - type: Transform -- uid: 17884 - type: CableApcExtension - components: - - pos: 52.5,-8.5 - parent: 82 - type: Transform -- uid: 17885 - type: CableApcExtension - components: - - pos: 56.5,-5.5 - parent: 82 - type: Transform -- uid: 17886 - type: CableApcExtension - components: - - pos: 55.5,-5.5 - parent: 82 - type: Transform -- uid: 17887 - type: CableApcExtension - components: - - pos: 54.5,-5.5 - parent: 82 - type: Transform -- uid: 17888 - type: CableApcExtension - components: - - pos: 53.5,-5.5 - parent: 82 - type: Transform -- uid: 17889 - type: CableApcExtension - components: - - pos: 52.5,-5.5 - parent: 82 - type: Transform -- uid: 17890 - type: CableApcExtension - components: - - pos: 51.5,-5.5 - parent: 82 - type: Transform -- uid: 17891 - type: CableApcExtension - components: - - pos: 50.5,-5.5 - parent: 82 - type: Transform -- uid: 17892 - type: CableApcExtension - components: - - pos: 50.5,-4.5 - parent: 82 - type: Transform -- uid: 17893 - type: CableApcExtension - components: - - pos: 50.5,-3.5 - parent: 82 - type: Transform -- uid: 17894 - type: CableApcExtension - components: - - pos: 50.5,-2.5 - parent: 82 - type: Transform -- uid: 17895 - type: CableApcExtension - components: - - pos: 50.5,-1.5 - parent: 82 - type: Transform -- uid: 17896 - type: CableApcExtension - components: - - pos: 50.5,-0.5 - parent: 82 - type: Transform -- uid: 17897 - type: CableApcExtension - components: - - pos: 51.5,-0.5 - parent: 82 - type: Transform -- uid: 17898 - type: CableApcExtension - components: - - pos: 52.5,-0.5 - parent: 82 - type: Transform -- uid: 17899 - type: CableApcExtension - components: - - pos: 53.5,-0.5 - parent: 82 - type: Transform -- uid: 17900 - type: CableApcExtension - components: - - pos: 53.5,-1.5 - parent: 82 - type: Transform -- uid: 17901 - type: CableApcExtension - components: - - pos: 53.5,-2.5 - parent: 82 - type: Transform -- uid: 17902 - type: CableApcExtension - components: - - pos: 53.5,-3.5 - parent: 82 - type: Transform -- uid: 17903 - type: CableApcExtension - components: - - pos: 53.5,-4.5 - parent: 82 - type: Transform -- uid: 17904 - type: CableApcExtension - components: - - pos: 54.5,-0.5 - parent: 82 - type: Transform -- uid: 17905 - type: CableApcExtension - components: - - pos: 55.5,-0.5 - parent: 82 - type: Transform -- uid: 17906 - type: CableApcExtension - components: - - pos: 56.5,-0.5 - parent: 82 - type: Transform -- uid: 17907 - type: CableApcExtension - components: - - pos: 56.5,-1.5 - parent: 82 - type: Transform -- uid: 17908 - type: CableApcExtension - components: - - pos: 56.5,-2.5 - parent: 82 - type: Transform -- uid: 17909 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-5.5 - parent: 82 - type: Transform -- uid: 17910 - type: CableMV - components: - - pos: 40.5,-5.5 - parent: 82 - type: Transform -- uid: 17911 - type: CableMV - components: - - pos: 39.5,-5.5 - parent: 82 - type: Transform -- uid: 17912 - type: CableMV - components: - - pos: 38.5,-5.5 - parent: 82 - type: Transform -- uid: 17913 - type: CableMV - components: - - pos: 37.5,-5.5 - parent: 82 - type: Transform -- uid: 17914 - type: CableMV - components: - - pos: 36.5,-5.5 - parent: 82 - type: Transform -- uid: 17915 - type: CableMV - components: - - pos: 35.5,-5.5 - parent: 82 - type: Transform -- uid: 17916 - type: CableMV - components: - - pos: 34.5,-5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17917 - type: CableApcExtension - components: - - pos: 34.5,-5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17918 - type: CableApcExtension - components: - - pos: 35.5,-5.5 - parent: 82 - type: Transform -- uid: 17919 - type: CableApcExtension - components: - - pos: 36.5,-5.5 - parent: 82 - type: Transform -- uid: 17920 - type: CableApcExtension - components: - - pos: 37.5,-5.5 - parent: 82 - type: Transform -- uid: 17921 - type: CableApcExtension - components: - - pos: 38.5,-5.5 - parent: 82 - type: Transform -- uid: 17922 - type: CableApcExtension - components: - - pos: 39.5,-5.5 - parent: 82 - type: Transform -- uid: 17923 - type: CableApcExtension - components: - - pos: 40.5,-5.5 - parent: 82 - type: Transform -- uid: 17924 - type: CableApcExtension - components: - - pos: 41.5,-5.5 - parent: 82 - type: Transform -- uid: 17925 - type: CableApcExtension - components: - - pos: 42.5,-5.5 - parent: 82 - type: Transform -- uid: 17926 - type: CableApcExtension - components: - - pos: 43.5,-5.5 - parent: 82 - type: Transform -- uid: 17927 - type: CableApcExtension - components: - - pos: 44.5,-5.5 - parent: 82 - type: Transform -- uid: 17928 - type: CableApcExtension - components: - - pos: 45.5,-5.5 - parent: 82 - type: Transform -- uid: 17929 - type: CableApcExtension - components: - - pos: 46.5,-5.5 - parent: 82 - type: Transform -- uid: 17930 - type: CableApcExtension - components: - - pos: 46.5,-4.5 - parent: 82 - type: Transform -- uid: 17931 - type: CableApcExtension - components: - - pos: 46.5,-3.5 - parent: 82 - type: Transform -- uid: 17932 - type: CableApcExtension - components: - - pos: 46.5,-2.5 - parent: 82 - type: Transform -- uid: 17933 - type: CableApcExtension - components: - - pos: 46.5,-1.5 - parent: 82 - type: Transform -- uid: 17934 - type: CableApcExtension - components: - - pos: 46.5,-0.5 - parent: 82 - type: Transform -- uid: 17935 - type: CableApcExtension - components: - - pos: 46.5,0.5 - parent: 82 - type: Transform -- uid: 17936 - type: CableApcExtension - components: - - pos: 46.5,1.5 - parent: 82 - type: Transform -- uid: 17937 - type: CableApcExtension - components: - - pos: 46.5,2.5 - parent: 82 - type: Transform -- uid: 17938 - type: CableApcExtension - components: - - pos: 47.5,2.5 - parent: 82 - type: Transform -- uid: 17939 - type: CableApcExtension - components: - - pos: 48.5,2.5 - parent: 82 - type: Transform -- uid: 17940 - type: CableApcExtension - components: - - pos: 48.5,3.5 - parent: 82 - type: Transform -- uid: 17941 - type: CableApcExtension - components: - - pos: 48.5,4.5 - parent: 82 - type: Transform -- uid: 17942 - type: CableApcExtension - components: - - pos: 47.5,4.5 - parent: 82 - type: Transform -- uid: 17943 - type: CableApcExtension - components: - - pos: 46.5,4.5 - parent: 82 - type: Transform -- uid: 17944 - type: CableApcExtension - components: - - pos: 45.5,4.5 - parent: 82 - type: Transform -- uid: 17945 - type: CableApcExtension - components: - - pos: 44.5,4.5 - parent: 82 - type: Transform -- uid: 17946 - type: CableApcExtension - components: - - pos: 43.5,4.5 - parent: 82 - type: Transform -- uid: 17947 - type: CableApcExtension - components: - - pos: 42.5,4.5 - parent: 82 - type: Transform -- uid: 17948 - type: CableApcExtension - components: - - pos: 41.5,4.5 - parent: 82 - type: Transform -- uid: 17949 - type: CableApcExtension - components: - - pos: 40.5,4.5 - parent: 82 - type: Transform -- uid: 17950 - type: CableApcExtension - components: - - pos: 39.5,4.5 - parent: 82 - type: Transform -- uid: 17951 - type: CableApcExtension - components: - - pos: 38.5,4.5 - parent: 82 - type: Transform -- uid: 17952 - type: CableApcExtension - components: - - pos: 37.5,4.5 - parent: 82 - type: Transform -- uid: 17953 - type: CableApcExtension - components: - - pos: 36.5,4.5 - parent: 82 - type: Transform -- uid: 17954 - type: CableApcExtension - components: - - pos: 36.5,3.5 - parent: 82 - type: Transform -- uid: 17955 - type: CableApcExtension - components: - - pos: 36.5,2.5 - parent: 82 - type: Transform -- uid: 17956 - type: CableApcExtension - components: - - pos: 37.5,2.5 - parent: 82 - type: Transform -- uid: 17957 - type: CableApcExtension - components: - - pos: 38.5,2.5 - parent: 82 - type: Transform -- uid: 17958 - type: CableApcExtension - components: - - pos: 39.5,2.5 - parent: 82 - type: Transform -- uid: 17959 - type: CableApcExtension - components: - - pos: 40.5,2.5 - parent: 82 - type: Transform -- uid: 17960 - type: CableApcExtension - components: - - pos: 40.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17961 - type: CableApcExtension - components: - - pos: 40.5,0.5 - parent: 82 - type: Transform -- uid: 17962 - type: CableApcExtension - components: - - pos: 41.5,2.5 - parent: 82 - type: Transform -- uid: 17963 - type: CableApcExtension - components: - - pos: 42.5,2.5 - parent: 82 - type: Transform -- uid: 17964 - type: CableApcExtension - components: - - pos: 43.5,2.5 - parent: 82 - type: Transform -- uid: 17965 - type: CableApcExtension - components: - - pos: 44.5,2.5 - parent: 82 - type: Transform -- uid: 17966 - type: CableApcExtension - components: - - pos: 45.5,2.5 - parent: 82 - type: Transform -- uid: 17967 - type: CableApcExtension - components: - - pos: 43.5,1.5 - parent: 82 - type: Transform -- uid: 17968 - type: CableApcExtension - components: - - pos: 43.5,0.5 - parent: 82 - type: Transform -- uid: 17969 - type: CableApcExtension - components: - - pos: 43.5,-0.5 - parent: 82 - type: Transform -- uid: 17970 - type: CableApcExtension - components: - - pos: 43.5,-1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17971 - type: CableApcExtension - components: - - pos: 47.5,-1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17972 - type: CableApcExtension - components: - - pos: 40.5,-0.5 - parent: 82 - type: Transform -- uid: 17973 - type: CableApcExtension - components: - - pos: 40.5,-1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17974 - type: CableApcExtension - components: - - pos: 40.5,-2.5 - parent: 82 - type: Transform -- uid: 17975 - type: CableApcExtension - components: - - pos: 41.5,-2.5 - parent: 82 - type: Transform -- uid: 17976 - type: CableApcExtension - components: - - pos: 42.5,-2.5 - parent: 82 - type: Transform -- uid: 17977 - type: CableApcExtension - components: - - pos: 43.5,-2.5 - parent: 82 - type: Transform -- uid: 17978 - type: CableApcExtension - components: - - pos: 44.5,-2.5 - parent: 82 - type: Transform -- uid: 17979 - type: CableApcExtension - components: - - pos: 45.5,-2.5 - parent: 82 - type: Transform -- uid: 17980 - type: CableApcExtension - components: - - pos: 39.5,-2.5 - parent: 82 - type: Transform -- uid: 17981 - type: CableApcExtension - components: - - pos: 38.5,-2.5 - parent: 82 - type: Transform -- uid: 17982 - type: CableApcExtension - components: - - pos: 37.5,-2.5 - parent: 82 - type: Transform -- uid: 17983 - type: CableApcExtension - components: - - pos: 36.5,-2.5 - parent: 82 - type: Transform -- uid: 17984 - type: CableApcExtension - components: - - pos: 35.5,-2.5 - parent: 82 - type: Transform -- uid: 17985 - type: CableApcExtension - components: - - pos: 35.5,-3.5 - parent: 82 - type: Transform -- uid: 17986 - type: CableApcExtension - components: - - pos: 35.5,-4.5 - parent: 82 - type: Transform -- uid: 17987 - type: CableApcExtension - components: - - pos: 34.5,-3.5 - parent: 82 - type: Transform -- uid: 17988 - type: CableApcExtension - components: - - pos: 33.5,-3.5 - parent: 82 - type: Transform -- uid: 17989 - type: CableApcExtension - components: - - pos: 33.5,-4.5 - parent: 82 - type: Transform -- uid: 17990 - type: CableApcExtension - components: - - pos: 35.5,-6.5 - parent: 82 - type: Transform -- uid: 17991 - type: CableApcExtension - components: - - pos: 35.5,-7.5 - parent: 82 - type: Transform -- uid: 17992 - type: CableApcExtension - components: - - pos: 35.5,-8.5 - parent: 82 - type: Transform -- uid: 17993 - type: CableApcExtension - components: - - pos: 35.5,-9.5 - parent: 82 - type: Transform -- uid: 17994 - type: CableApcExtension - components: - - pos: 35.5,-10.5 - parent: 82 - type: Transform -- uid: 17995 - type: CableApcExtension - components: - - pos: 35.5,-11.5 - parent: 82 - type: Transform -- uid: 17996 - type: CableApcExtension - components: - - pos: 35.5,-12.5 - parent: 82 - type: Transform -- uid: 17997 - type: CableApcExtension - components: - - pos: 35.5,-13.5 - parent: 82 - type: Transform -- uid: 17998 - type: CableApcExtension - components: - - pos: 35.5,-14.5 - parent: 82 - type: Transform -- uid: 17999 - type: CableApcExtension - components: - - pos: 36.5,-14.5 - parent: 82 - type: Transform -- uid: 18000 - type: CableApcExtension - components: - - pos: 37.5,-14.5 - parent: 82 - type: Transform -- uid: 18001 - type: CableApcExtension - components: - - pos: 38.5,-14.5 - parent: 82 - type: Transform -- uid: 18002 - type: CableApcExtension - components: - - pos: 39.5,-14.5 - parent: 82 - type: Transform -- uid: 18003 - type: CableApcExtension - components: - - pos: 40.5,-14.5 - parent: 82 - type: Transform -- uid: 18004 - type: CableApcExtension - components: - - pos: 41.5,-14.5 - parent: 82 - type: Transform -- uid: 18005 - type: CableApcExtension - components: - - pos: 42.5,-14.5 - parent: 82 - type: Transform -- uid: 18006 - type: CableApcExtension - components: - - pos: 43.5,-14.5 - parent: 82 - type: Transform -- uid: 18007 - type: CableApcExtension - components: - - pos: 44.5,-14.5 - parent: 82 - type: Transform -- uid: 18008 - type: CableApcExtension - components: - - pos: 45.5,-14.5 - parent: 82 - type: Transform -- uid: 18009 - type: CableApcExtension - components: - - pos: 46.5,-14.5 - parent: 82 - type: Transform -- uid: 18010 - type: PottedPlantRD - components: - - pos: 26.5,64.5 - parent: 82 - type: Transform -- uid: 18011 - type: HospitalCurtains - components: - - pos: 29.5,63.5 - parent: 82 - type: Transform -- uid: 18012 - type: CableApcExtension - components: - - pos: 48.5,-13.5 - parent: 82 - type: Transform -- uid: 18013 - type: CableApcExtension - components: - - pos: 48.5,-12.5 - parent: 82 - type: Transform -- uid: 18014 - type: CableApcExtension - components: - - pos: 48.5,-11.5 - parent: 82 - type: Transform -- uid: 18015 - type: BoxLethalshot - components: - - pos: 48.689827,-19.493336 - parent: 82 - type: Transform -- uid: 18016 - type: CableApcExtension - components: - - pos: 46.5,-11.5 - parent: 82 - type: Transform -- uid: 18017 - type: CableApcExtension - components: - - pos: 46.5,-10.5 - parent: 82 - type: Transform -- uid: 18018 - type: CableApcExtension - components: - - pos: 46.5,-9.5 - parent: 82 - type: Transform -- uid: 18019 - type: CableApcExtension - components: - - pos: 46.5,-8.5 - parent: 82 - type: Transform -- uid: 18020 - type: CableApcExtension - components: - - pos: 47.5,-8.5 - parent: 82 - type: Transform -- uid: 18021 - type: CableApcExtension - components: - - pos: 48.5,-8.5 - parent: 82 - type: Transform -- uid: 18022 - type: CableApcExtension - components: - - pos: 49.5,-8.5 - parent: 82 - type: Transform -- uid: 18023 - type: CableApcExtension - components: - - pos: 46.5,-7.5 - parent: 82 - type: Transform -- uid: 18024 - type: CableApcExtension - components: - - pos: 46.5,-6.5 - parent: 82 - type: Transform -- uid: 18025 - type: CableApcExtension - components: - - pos: 45.5,-11.5 - parent: 82 - type: Transform -- uid: 18026 - type: CableApcExtension - components: - - pos: 44.5,-11.5 - parent: 82 - type: Transform -- uid: 18027 - type: CableApcExtension - components: - - pos: 43.5,-11.5 - parent: 82 - type: Transform -- uid: 18028 - type: CableApcExtension - components: - - pos: 42.5,-11.5 - parent: 82 - type: Transform -- uid: 18029 - type: CableApcExtension - components: - - pos: 41.5,-11.5 - parent: 82 - type: Transform -- uid: 18030 - type: CableApcExtension - components: - - pos: 40.5,-11.5 - parent: 82 - type: Transform -- uid: 18031 - type: CableApcExtension - components: - - pos: 39.5,-11.5 - parent: 82 - type: Transform -- uid: 18032 - type: CableApcExtension - components: - - pos: 38.5,-11.5 - parent: 82 - type: Transform -- uid: 18033 - type: CableApcExtension - components: - - pos: 37.5,-11.5 - parent: 82 - type: Transform -- uid: 18034 - type: CableApcExtension - components: - - pos: 36.5,-11.5 - parent: 82 - type: Transform -- uid: 18035 - type: CableApcExtension - components: - - pos: 41.5,-10.5 - parent: 82 - type: Transform -- uid: 18036 - type: CableApcExtension - components: - - pos: 41.5,-9.5 - parent: 82 - type: Transform -- uid: 18037 - type: CableApcExtension - components: - - pos: 41.5,-8.5 - parent: 82 - type: Transform -- uid: 18038 - type: CableApcExtension - components: - - pos: 41.5,-7.5 - parent: 82 - type: Transform -- uid: 18039 - type: CableApcExtension - components: - - pos: 41.5,-6.5 - parent: 82 - type: Transform -- uid: 18040 - type: CableApcExtension - components: - - pos: 38.5,-10.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18041 - type: CableApcExtension - components: - - pos: 38.5,-9.5 - parent: 82 - type: Transform -- uid: 18042 - type: CableApcExtension - components: - - pos: 38.5,-8.5 - parent: 82 - type: Transform -- uid: 18043 - type: CableApcExtension - components: - - pos: 38.5,-7.5 - parent: 82 - type: Transform -- uid: 18044 - type: CableApcExtension - components: - - pos: 38.5,-6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18045 - type: CableApcExtension - components: - - pos: 43.5,-9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18046 - type: CableApcExtension - components: - - pos: 43.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18047 - type: CableApcExtension - components: - - pos: 43.5,-7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18048 - type: CableApcExtension - components: - - pos: 42.5,-8.5 - parent: 82 - type: Transform -- uid: 18049 - type: CableApcExtension - components: - - pos: 44.5,-8.5 - parent: 82 - type: Transform -- uid: 18050 - type: CableApcExtension - components: - - pos: 45.5,-8.5 - parent: 82 - type: Transform -- uid: 18051 - type: CableApcExtension - components: - - pos: 41.5,-12.5 - parent: 82 - type: Transform -- uid: 18052 - type: CableApcExtension - components: - - pos: 41.5,-13.5 - parent: 82 - type: Transform -- uid: 18053 - type: CableApcExtension - components: - - pos: 41.5,-15.5 - parent: 82 - type: Transform -- uid: 18054 - type: CableApcExtension - components: - - pos: 41.5,-16.5 - parent: 82 - type: Transform -- uid: 18055 - type: CableApcExtension - components: - - pos: 40.5,-16.5 - parent: 82 - type: Transform -- uid: 18056 - type: CableApcExtension - components: - - pos: 40.5,-17.5 - parent: 82 - type: Transform -- uid: 18057 - type: CableApcExtension - components: - - pos: 40.5,-18.5 - parent: 82 - type: Transform -- uid: 18058 - type: CableApcExtension - components: - - pos: 39.5,-16.5 - parent: 82 - type: Transform -- uid: 18059 - type: CableApcExtension - components: - - pos: 38.5,-16.5 - parent: 82 - type: Transform -- uid: 18060 - type: CableApcExtension - components: - - pos: 37.5,-16.5 - parent: 82 - type: Transform -- uid: 18061 - type: CableApcExtension - components: - - pos: 37.5,-17.5 - parent: 82 - type: Transform -- uid: 18062 - type: CableApcExtension - components: - - pos: 37.5,-18.5 - parent: 82 - type: Transform -- uid: 18063 - type: CableApcExtension - components: - - pos: 42.5,-16.5 - parent: 82 - type: Transform -- uid: 18064 - type: CableApcExtension - components: - - pos: 43.5,-16.5 - parent: 82 - type: Transform -- uid: 18065 - type: CableApcExtension - components: - - pos: 43.5,-17.5 - parent: 82 - type: Transform -- uid: 18066 - type: CableApcExtension - components: - - pos: 43.5,-18.5 - parent: 82 - type: Transform -- uid: 18067 - type: CableApcExtension - components: - - pos: 44.5,-16.5 - parent: 82 - type: Transform -- uid: 18068 - type: CableApcExtension - components: - - pos: 45.5,-16.5 - parent: 82 - type: Transform -- uid: 18069 - type: CableApcExtension - components: - - pos: 46.5,-16.5 - parent: 82 - type: Transform -- uid: 18070 - type: CableApcExtension - components: - - pos: 46.5,-17.5 - parent: 82 - type: Transform -- uid: 18071 - type: CableApcExtension - components: - - pos: 46.5,-18.5 - parent: 82 - type: Transform -- uid: 18072 - type: ClothingOuterHardsuitSecurity - components: - - pos: 52.286816,-16.366283 - parent: 82 - type: Transform -- uid: 18073 - type: FoodBoxDonut - components: - - pos: 39.360455,-5.3765154 - parent: 82 - type: Transform -- uid: 18074 - type: DeployableBarrier - components: - - anchored: False - pos: 33.5,-6.5 - parent: 82 - type: Transform -- uid: 18075 - type: Rack - components: - - pos: 49.5,-12.5 - parent: 82 - type: Transform -- uid: 18076 - type: Rack - components: - - pos: 49.5,-11.5 - parent: 82 - type: Transform -- uid: 18077 - type: SpawnPointChemist - components: - - pos: -31.5,-28.5 - parent: 82 - type: Transform -- uid: 18078 - type: CableApcExtension - components: - - pos: 36.5,-1.5 - parent: 82 - type: Transform -- uid: 18079 - type: CableApcExtension - components: - - pos: 36.5,-0.5 - parent: 82 - type: Transform -- uid: 18080 - type: CableApcExtension - components: - - pos: 23.5,-19.5 - parent: 82 - type: Transform -- uid: 18081 - type: CableApcExtension - components: - - pos: 22.5,-19.5 - parent: 82 - type: Transform -- uid: 18082 - type: CableApcExtension - components: - - pos: 21.5,-19.5 - parent: 82 - type: Transform -- uid: 18083 - type: CableApcExtension - components: - - pos: 20.5,-19.5 - parent: 82 - type: Transform -- uid: 18084 - type: CableApcExtension - components: - - pos: 20.5,-18.5 - parent: 82 - type: Transform -- uid: 18085 - type: CableApcExtension - components: - - pos: 20.5,-17.5 - parent: 82 - type: Transform -- uid: 18086 - type: CableApcExtension - components: - - pos: 20.5,-16.5 - parent: 82 - type: Transform -- uid: 18087 - type: CableApcExtension - components: - - pos: 20.5,-15.5 - parent: 82 - type: Transform -- uid: 18088 - type: CableApcExtension - components: - - pos: 20.5,-14.5 - parent: 82 - type: Transform -- uid: 18089 - type: CableApcExtension - components: - - pos: 20.5,-13.5 - parent: 82 - type: Transform -- uid: 18090 - type: CableApcExtension - components: - - pos: 20.5,-12.5 - parent: 82 - type: Transform -- uid: 18091 - type: CableApcExtension - components: - - pos: 20.5,-11.5 - parent: 82 - type: Transform -- uid: 18092 - type: CableApcExtension - components: - - pos: 20.5,-10.5 - parent: 82 - type: Transform -- uid: 18093 - type: CableApcExtension - components: - - pos: 20.5,-9.5 - parent: 82 - type: Transform -- uid: 18094 - type: CableApcExtension - components: - - pos: 20.5,-8.5 - parent: 82 - type: Transform -- uid: 18095 - type: CableApcExtension - components: - - pos: 20.5,-20.5 - parent: 82 - type: Transform -- uid: 18096 - type: CableApcExtension - components: - - pos: 20.5,-21.5 - parent: 82 - type: Transform -- uid: 18097 - type: CableApcExtension - components: - - pos: 20.5,-22.5 - parent: 82 - type: Transform -- uid: 18098 - type: CableApcExtension - components: - - pos: 20.5,-23.5 - parent: 82 - type: Transform -- uid: 18099 - type: CableApcExtension - components: - - pos: 20.5,-24.5 - parent: 82 - type: Transform -- uid: 18100 - type: CableApcExtension - components: - - pos: 20.5,-25.5 - parent: 82 - type: Transform -- uid: 18101 - type: CableApcExtension - components: - - pos: 20.5,-26.5 - parent: 82 - type: Transform -- uid: 18102 - type: CableApcExtension - components: - - pos: 20.5,-27.5 - parent: 82 - type: Transform -- uid: 18103 - type: CableApcExtension - components: - - pos: 20.5,-28.5 - parent: 82 - type: Transform -- uid: 18104 - type: CableApcExtension - components: - - pos: 20.5,-29.5 - parent: 82 - type: Transform -- uid: 18105 - type: CableApcExtension - components: - - pos: 20.5,-30.5 - parent: 82 - type: Transform -- uid: 18106 - type: CableApcExtension - components: - - pos: 19.5,-24.5 - parent: 82 - type: Transform -- uid: 18107 - type: CableApcExtension - components: - - pos: 18.5,-24.5 - parent: 82 - type: Transform -- uid: 18108 - type: CableApcExtension - components: - - pos: 17.5,-24.5 - parent: 82 - type: Transform -- uid: 18109 - type: CableApcExtension - components: - - pos: 21.5,-30.5 - parent: 82 - type: Transform -- uid: 18110 - type: CableApcExtension - components: - - pos: 22.5,-30.5 - parent: 82 - type: Transform -- uid: 18111 - type: CableApcExtension - components: - - pos: 23.5,-30.5 - parent: 82 - type: Transform -- uid: 18112 - type: CableApcExtension - components: - - pos: 24.5,-30.5 - parent: 82 - type: Transform -- uid: 18113 - type: CableApcExtension - components: - - pos: 25.5,-30.5 - parent: 82 - type: Transform -- uid: 18114 - type: CableApcExtension - components: - - pos: 26.5,-30.5 - parent: 82 - type: Transform -- uid: 18115 - type: CableApcExtension - components: - - pos: 27.5,-30.5 - parent: 82 - type: Transform -- uid: 18116 - type: CableApcExtension - components: - - pos: 28.5,-30.5 - parent: 82 - type: Transform -- uid: 18117 - type: CableApcExtension - components: - - pos: 29.5,-30.5 - parent: 82 - type: Transform -- uid: 18118 - type: CableApcExtension - components: - - pos: 30.5,-30.5 - parent: 82 - type: Transform -- uid: 18119 - type: CableApcExtension - components: - - pos: 31.5,-30.5 - parent: 82 - type: Transform -- uid: 18120 - type: CableApcExtension - components: - - pos: 31.5,-31.5 - parent: 82 - type: Transform -- uid: 18121 - type: CableApcExtension - components: - - pos: 31.5,-32.5 - parent: 82 - type: Transform -- uid: 18122 - type: CableApcExtension - components: - - pos: 31.5,-33.5 - parent: 82 - type: Transform -- uid: 18123 - type: CableApcExtension - components: - - pos: 31.5,-34.5 - parent: 82 - type: Transform -- uid: 18124 - type: CableApcExtension - components: - - pos: 30.5,-34.5 - parent: 82 - type: Transform -- uid: 18125 - type: CableApcExtension - components: - - pos: 29.5,-34.5 - parent: 82 - type: Transform -- uid: 18126 - type: CableApcExtension - components: - - pos: 28.5,-34.5 - parent: 82 - type: Transform -- uid: 18127 - type: CableApcExtension - components: - - pos: 27.5,-34.5 - parent: 82 - type: Transform -- uid: 18128 - type: CableApcExtension - components: - - pos: 26.5,-34.5 - parent: 82 - type: Transform -- uid: 18129 - type: CableApcExtension - components: - - pos: 25.5,-34.5 - parent: 82 - type: Transform -- uid: 18130 - type: CableApcExtension - components: - - pos: 24.5,-34.5 - parent: 82 - type: Transform -- uid: 18131 - type: CableApcExtension - components: - - pos: 23.5,-34.5 - parent: 82 - type: Transform -- uid: 18132 - type: CableApcExtension - components: - - pos: 22.5,-34.5 - parent: 82 - type: Transform -- uid: 18133 - type: CableApcExtension - components: - - pos: 21.5,-34.5 - parent: 82 - type: Transform -- uid: 18134 - type: CableApcExtension - components: - - pos: 20.5,-34.5 - parent: 82 - type: Transform -- uid: 18135 - type: CableApcExtension - components: - - pos: 20.5,-33.5 - parent: 82 - type: Transform -- uid: 18136 - type: CableApcExtension - components: - - pos: 20.5,-32.5 - parent: 82 - type: Transform -- uid: 18137 - type: CableApcExtension - components: - - pos: 20.5,-31.5 - parent: 82 - type: Transform -- uid: 18138 - type: CableApcExtension - components: - - pos: 17.5,-35.5 - parent: 82 - type: Transform -- uid: 18139 - type: CableApcExtension - components: - - pos: 18.5,-35.5 - parent: 82 - type: Transform -- uid: 18140 - type: CableApcExtension - components: - - pos: 19.5,-35.5 - parent: 82 - type: Transform -- uid: 18141 - type: CableApcExtension - components: - - pos: 19.5,-36.5 - parent: 82 - type: Transform -- uid: 18142 - type: CableApcExtension - components: - - pos: 20.5,-36.5 - parent: 82 - type: Transform -- uid: 18143 - type: CableApcExtension - components: - - pos: 21.5,-36.5 - parent: 82 - type: Transform -- uid: 18144 - type: CableApcExtension - components: - - pos: 19.5,-37.5 - parent: 82 - type: Transform -- uid: 18145 - type: CableApcExtension - components: - - pos: 19.5,-38.5 - parent: 82 - type: Transform -- uid: 18146 - type: CableApcExtension - components: - - pos: 19.5,-39.5 - parent: 82 - type: Transform -- uid: 18147 - type: CableApcExtension - components: - - pos: 19.5,-40.5 - parent: 82 - type: Transform -- uid: 18148 - type: CableApcExtension - components: - - pos: 19.5,-41.5 - parent: 82 - type: Transform -- uid: 18149 - type: CableApcExtension - components: - - pos: 19.5,-42.5 - parent: 82 - type: Transform -- uid: 18150 - type: CableApcExtension - components: - - pos: 19.5,-43.5 - parent: 82 - type: Transform -- uid: 18151 - type: CableApcExtension - components: - - pos: 18.5,-43.5 - parent: 82 - type: Transform -- uid: 18152 - type: CableApcExtension - components: - - pos: 17.5,-43.5 - parent: 82 - type: Transform -- uid: 18153 - type: CableApcExtension - components: - - pos: 20.5,-43.5 - parent: 82 - type: Transform -- uid: 18154 - type: CableApcExtension - components: - - pos: 21.5,-43.5 - parent: 82 - type: Transform -- uid: 18155 - type: CableApcExtension - components: - - pos: 21.5,-42.5 - parent: 82 - type: Transform -- uid: 18156 - type: CableApcExtension - components: - - pos: 21.5,-41.5 - parent: 82 - type: Transform -- uid: 18157 - type: CableApcExtension - components: - - pos: 21.5,-40.5 - parent: 82 - type: Transform -- uid: 18158 - type: CableApcExtension - components: - - pos: 21.5,-39.5 - parent: 82 - type: Transform -- uid: 18159 - type: CableApcExtension - components: - - pos: 21.5,-38.5 - parent: 82 - type: Transform -- uid: 18160 - type: CableApcExtension - components: - - pos: 19.5,-44.5 - parent: 82 - type: Transform -- uid: 18161 - type: CableApcExtension - components: - - pos: 19.5,-45.5 - parent: 82 - type: Transform -- uid: 18162 - type: CableApcExtension - components: - - pos: 21.5,-44.5 - parent: 82 - type: Transform -- uid: 18163 - type: CableApcExtension - components: - - pos: 21.5,-45.5 - parent: 82 - type: Transform -- uid: 18164 - type: CableApcExtension - components: - - pos: 21.5,-46.5 - parent: 82 - type: Transform -- uid: 18165 - type: CableApcExtension - components: - - pos: -1.5,-23.5 - parent: 82 - type: Transform -- uid: 18166 - type: CableApcExtension - components: - - pos: -1.5,-24.5 - parent: 82 - type: Transform -- uid: 18167 - type: CableApcExtension - components: - - pos: -1.5,-25.5 - parent: 82 - type: Transform -- uid: 18168 - type: CableApcExtension - components: - - pos: -0.5,-24.5 - parent: 82 - type: Transform -- uid: 18169 - type: CableApcExtension - components: - - pos: 0.5,-24.5 - parent: 82 - type: Transform -- uid: 18170 - type: CableApcExtension - components: - - pos: 1.5,-24.5 - parent: 82 - type: Transform -- uid: 18171 - type: CableApcExtension - components: - - pos: 2.5,-24.5 - parent: 82 - type: Transform -- uid: 18172 - type: CableApcExtension - components: - - pos: 3.5,-24.5 - parent: 82 - type: Transform -- uid: 18173 - type: CableApcExtension - components: - - pos: 4.5,-24.5 - parent: 82 - type: Transform -- uid: 18174 - type: CableApcExtension - components: - - pos: 5.5,-24.5 - parent: 82 - type: Transform -- uid: 18175 - type: CableApcExtension - components: - - pos: 6.5,-24.5 - parent: 82 - type: Transform -- uid: 18176 - type: CableApcExtension - components: - - pos: 7.5,-24.5 - parent: 82 - type: Transform -- uid: 18177 - type: CableApcExtension - components: - - pos: 8.5,-24.5 - parent: 82 - type: Transform -- uid: 18178 - type: CableApcExtension - components: - - pos: 9.5,-24.5 - parent: 82 - type: Transform -- uid: 18179 - type: CableApcExtension - components: - - pos: 10.5,-24.5 - parent: 82 - type: Transform -- uid: 18180 - type: CableApcExtension - components: - - pos: 11.5,-24.5 - parent: 82 - type: Transform -- uid: 18181 - type: CableApcExtension - components: - - pos: 12.5,-24.5 - parent: 82 - type: Transform -- uid: 18182 - type: CableApcExtension - components: - - pos: 13.5,-24.5 - parent: 82 - type: Transform -- uid: 18183 - type: CableApcExtension - components: - - pos: 14.5,-24.5 - parent: 82 - type: Transform -- uid: 18184 - type: CableApcExtension - components: - - pos: 15.5,-24.5 - parent: 82 - type: Transform -- uid: 18185 - type: CableApcExtension - components: - - pos: 16.5,-24.5 - parent: 82 - type: Transform -- uid: 18186 - type: APCBasic - components: - - pos: -14.5,-31.5 - parent: 82 - type: Transform -- uid: 18187 - type: CableMV - components: - - pos: -14.5,-31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18188 - type: CableMV - components: - - pos: -14.5,-32.5 - parent: 82 - type: Transform -- uid: 18189 - type: CableMV - components: - - pos: -14.5,-33.5 - parent: 82 - type: Transform -- uid: 18190 - type: CableMV - components: - - pos: -13.5,-33.5 - parent: 82 - type: Transform -- uid: 18191 - type: CableMV - components: - - pos: -12.5,-33.5 - parent: 82 - type: Transform -- uid: 18192 - type: CableMV - components: - - pos: -11.5,-33.5 - parent: 82 - type: Transform -- uid: 18193 - type: CableMV - components: - - pos: -10.5,-33.5 - parent: 82 - type: Transform -- uid: 18194 - type: CableMV - components: - - pos: -9.5,-33.5 - parent: 82 - type: Transform -- uid: 18195 - type: CableMV - components: - - pos: -8.5,-33.5 - parent: 82 - type: Transform -- uid: 18196 - type: CableMV - components: - - pos: -7.5,-33.5 - parent: 82 - type: Transform -- uid: 18197 - type: CableMV - components: - - pos: -6.5,-33.5 - parent: 82 - type: Transform -- uid: 18198 - type: CableMV - components: - - pos: -6.5,-32.5 - parent: 82 - type: Transform -- uid: 18199 - type: CableMV - components: - - pos: -6.5,-31.5 - parent: 82 - type: Transform -- uid: 18200 - type: CableMV - components: - - pos: -6.5,-30.5 - parent: 82 - type: Transform -- uid: 18201 - type: CableMV - components: - - pos: -6.5,-29.5 - parent: 82 - type: Transform -- uid: 18202 - type: CableMV - components: - - pos: -6.5,-28.5 - parent: 82 - type: Transform -- uid: 18203 - type: CableMV - components: - - pos: -6.5,-27.5 - parent: 82 - type: Transform -- uid: 18204 - type: CableMV - components: - - pos: -6.5,-26.5 - parent: 82 - type: Transform -- uid: 18205 - type: CableMV - components: - - pos: -6.5,-25.5 - parent: 82 - type: Transform -- uid: 18206 - type: CableMV - components: - - pos: -6.5,-24.5 - parent: 82 - type: Transform -- uid: 18207 - type: CableMV - components: - - pos: -5.5,-24.5 - parent: 82 - type: Transform -- uid: 18208 - type: CableMV - components: - - pos: -5.5,-23.5 - parent: 82 - type: Transform -- uid: 18209 - type: CableMV - components: - - pos: -5.5,-22.5 - parent: 82 - type: Transform -- uid: 18210 - type: CableMV - components: - - pos: -5.5,-21.5 - parent: 82 - type: Transform -- uid: 18211 - type: CableMV - components: - - pos: -5.5,-20.5 - parent: 82 - type: Transform -- uid: 18212 - type: CableMV - components: - - pos: -5.5,-19.5 - parent: 82 - type: Transform -- uid: 18213 - type: CableMV - components: - - pos: -5.5,-18.5 - parent: 82 - type: Transform -- uid: 18214 - type: CableMV - components: - - pos: -5.5,-17.5 - parent: 82 - type: Transform -- uid: 18215 - type: CableMV - components: - - pos: -5.5,-16.5 - parent: 82 - type: Transform -- uid: 18216 - type: CableMV - components: - - pos: -6.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18217 - type: CableMV - components: - - pos: -7.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18218 - type: CableMV - components: - - pos: -8.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18219 - type: CableMV - components: - - pos: -9.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18220 - type: CableMV - components: - - pos: -10.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18221 - type: CableMV - components: - - pos: -10.5,-17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18222 - type: CableMV - components: - - pos: -11.5,-17.5 - parent: 82 - type: Transform -- uid: 18223 - type: CableMV - components: - - pos: -12.5,-17.5 - parent: 82 - type: Transform -- uid: 18224 - type: CableMV - components: - - pos: -13.5,-17.5 - parent: 82 - type: Transform -- uid: 18225 - type: CableMV - components: - - pos: -14.5,-17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18226 - type: CableMV - components: - - pos: -14.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18227 - type: CableMV - components: - - pos: -14.5,-15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18228 - type: CableMV - components: - - pos: -13.5,-15.5 - parent: 82 - type: Transform -- uid: 18229 - type: CableMV - components: - - pos: -12.5,-15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18230 - type: SubstationBasic - components: - - pos: -12.5,-15.5 - parent: 82 - type: Transform -- uid: 18231 - type: CableApcExtension - components: - - pos: -13.5,-31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18232 - type: CableApcExtension - components: - - pos: -12.5,-31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18233 - type: CableApcExtension - components: - - pos: -11.5,-31.5 - parent: 82 - type: Transform -- uid: 18234 - type: CableApcExtension - components: - - pos: -11.5,-30.5 - parent: 82 - type: Transform -- uid: 18235 - type: CableApcExtension - components: - - pos: -11.5,-29.5 - parent: 82 - type: Transform -- uid: 18236 - type: CableApcExtension - components: - - pos: -12.5,-29.5 - parent: 82 - type: Transform -- uid: 18237 - type: CableApcExtension - components: - - pos: -13.5,-29.5 - parent: 82 - type: Transform -- uid: 18238 - type: CableApcExtension - components: - - pos: -10.5,-29.5 - parent: 82 - type: Transform -- uid: 18239 - type: CableApcExtension - components: - - pos: -9.5,-29.5 - parent: 82 - type: Transform -- uid: 18240 - type: CableApcExtension - components: - - pos: -11.5,-32.5 - parent: 82 - type: Transform -- uid: 18241 - type: CableApcExtension - components: - - pos: -11.5,-33.5 - parent: 82 - type: Transform -- uid: 18242 - type: CableApcExtension - components: - - pos: -12.5,-33.5 - parent: 82 - type: Transform -- uid: 18243 - type: CableApcExtension - components: - - pos: -13.5,-33.5 - parent: 82 - type: Transform -- uid: 18244 - type: CableApcExtension - components: - - pos: -14.5,-33.5 - parent: 82 - type: Transform -- uid: 18245 - type: CableApcExtension - components: - - pos: -15.5,-33.5 - parent: 82 - type: Transform -- uid: 18246 - type: CableApcExtension - components: - - pos: -16.5,-33.5 - parent: 82 - type: Transform -- uid: 18247 - type: CableApcExtension - components: - - pos: -17.5,-33.5 - parent: 82 - type: Transform -- uid: 18248 - type: CableApcExtension - components: - - pos: -18.5,-33.5 - parent: 82 - type: Transform -- uid: 18249 - type: CableApcExtension - components: - - pos: -18.5,-34.5 - parent: 82 - type: Transform -- uid: 18250 - type: CableApcExtension - components: - - pos: -18.5,-35.5 - parent: 82 - type: Transform -- uid: 18251 - type: CableApcExtension - components: - - pos: -18.5,-36.5 - parent: 82 - type: Transform -- uid: 18252 - type: CableApcExtension - components: - - pos: -18.5,-37.5 - parent: 82 - type: Transform -- uid: 18253 - type: CableApcExtension - components: - - pos: -18.5,-38.5 - parent: 82 - type: Transform -- uid: 18254 - type: CableApcExtension - components: - - pos: -18.5,-39.5 - parent: 82 - type: Transform -- uid: 18255 - type: CableApcExtension - components: - - pos: -18.5,-40.5 - parent: 82 - type: Transform -- uid: 18256 - type: CableApcExtension - components: - - pos: -18.5,-41.5 - parent: 82 - type: Transform -- uid: 18257 - type: CableApcExtension - components: - - pos: -18.5,-42.5 - parent: 82 - type: Transform -- uid: 18258 - type: CableApcExtension - components: - - pos: -17.5,-42.5 - parent: 82 - type: Transform -- uid: 18259 - type: CableApcExtension - components: - - pos: -16.5,-42.5 - parent: 82 - type: Transform -- uid: 18260 - type: CableApcExtension - components: - - pos: -15.5,-42.5 - parent: 82 - type: Transform -- uid: 18261 - type: CableApcExtension - components: - - pos: -14.5,-42.5 - parent: 82 - type: Transform -- uid: 18262 - type: CableApcExtension - components: - - pos: -13.5,-42.5 - parent: 82 - type: Transform -- uid: 18263 - type: CableApcExtension - components: - - pos: -12.5,-42.5 - parent: 82 - type: Transform -- uid: 18264 - type: CableApcExtension - components: - - pos: -11.5,-42.5 - parent: 82 - type: Transform -- uid: 18265 - type: CableApcExtension - components: - - pos: -10.5,-42.5 - parent: 82 - type: Transform -- uid: 18266 - type: CableApcExtension - components: - - pos: -9.5,-42.5 - parent: 82 - type: Transform -- uid: 18267 - type: CableApcExtension - components: - - pos: -9.5,-41.5 - parent: 82 - type: Transform -- uid: 18268 - type: WallmountTelevision - components: - - rot: 3.141592653589793 rad - pos: 27.5,-10.5 - parent: 82 - type: Transform -- uid: 18269 - type: BookRandom - components: - - pos: 44.502953,42.617794 - parent: 82 - type: Transform -- uid: 18270 - type: Rack - components: - - pos: 17.5,17.5 - parent: 82 - type: Transform -- uid: 18271 - type: WallmountTelevision - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-10.5 - parent: 82 - type: Transform -- uid: 18272 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 80.5,8.5 - parent: 82 - type: Transform -- uid: 18273 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 79.5,8.5 - parent: 82 - type: Transform -- uid: 18274 - type: CableApcExtension - components: - - pos: -9.5,-34.5 - parent: 82 - type: Transform -- uid: 18275 - type: CableApcExtension - components: - - pos: -9.5,-33.5 - parent: 82 - type: Transform -- uid: 18276 - type: CableApcExtension - components: - - pos: -10.5,-33.5 - parent: 82 - type: Transform -- uid: 18277 - type: CableApcExtension - components: - - pos: -8.5,-33.5 - parent: 82 - type: Transform -- uid: 18278 - type: CableApcExtension - components: - - pos: -7.5,-32.5 - parent: 82 - type: Transform -- uid: 18279 - type: CableApcExtension - components: - - pos: -7.5,-33.5 - parent: 82 - type: Transform -- uid: 18280 - type: CableApcExtension - components: - - pos: -7.5,-34.5 - parent: 82 - type: Transform -- uid: 18281 - type: CableApcExtension - components: - - pos: -6.5,-33.5 - parent: 82 - type: Transform -- uid: 18282 - type: CableApcExtension - components: - - pos: -6.5,-32.5 - parent: 82 - type: Transform -- uid: 18283 - type: CableApcExtension - components: - - pos: -6.5,-31.5 - parent: 82 - type: Transform -- uid: 18284 - type: CableApcExtension - components: - - pos: -6.5,-30.5 - parent: 82 - type: Transform -- uid: 18285 - type: CableApcExtension - components: - - pos: -6.5,-29.5 - parent: 82 - type: Transform -- uid: 18286 - type: CableApcExtension - components: - - pos: -6.5,-28.5 - parent: 82 - type: Transform -- uid: 18287 - type: CableApcExtension - components: - - pos: -6.5,-27.5 - parent: 82 - type: Transform -- uid: 18288 - type: CableApcExtension - components: - - pos: -6.5,-26.5 - parent: 82 - type: Transform -- uid: 18289 - type: CableApcExtension - components: - - pos: -6.5,-25.5 - parent: 82 - type: Transform -- uid: 18290 - type: CableApcExtension - components: - - pos: -6.5,-24.5 - parent: 82 - type: Transform -- uid: 18291 - type: CableApcExtension - components: - - pos: -7.5,-24.5 - parent: 82 - type: Transform -- uid: 18292 - type: CableApcExtension - components: - - pos: -8.5,-24.5 - parent: 82 - type: Transform -- uid: 18293 - type: CableApcExtension - components: - - pos: -9.5,-24.5 - parent: 82 - type: Transform -- uid: 18294 - type: CableApcExtension - components: - - pos: -10.5,-24.5 - parent: 82 - type: Transform -- uid: 18295 - type: CableApcExtension - components: - - pos: -10.5,-25.5 - parent: 82 - type: Transform -- uid: 18296 - type: CableApcExtension - components: - - pos: -6.5,-34.5 - parent: 82 - type: Transform -- uid: 18297 - type: CableApcExtension - components: - - pos: -6.5,-35.5 - parent: 82 - type: Transform -- uid: 18298 - type: CableApcExtension - components: - - pos: -6.5,-36.5 - parent: 82 - type: Transform -- uid: 18299 - type: CableApcExtension - components: - - pos: -6.5,-37.5 - parent: 82 - type: Transform -- uid: 18300 - type: CableApcExtension - components: - - pos: -6.5,-38.5 - parent: 82 - type: Transform -- uid: 18301 - type: CableApcExtension - components: - - pos: -6.5,-39.5 - parent: 82 - type: Transform -- uid: 18302 - type: CableApcExtension - components: - - pos: -6.5,-40.5 - parent: 82 - type: Transform -- uid: 18303 - type: CableApcExtension - components: - - pos: -6.5,-41.5 - parent: 82 - type: Transform -- uid: 18304 - type: CableApcExtension - components: - - pos: -6.5,-42.5 - parent: 82 - type: Transform -- uid: 18305 - type: CableApcExtension - components: - - pos: -6.5,-43.5 - parent: 82 - type: Transform -- uid: 18306 - type: CableApcExtension - components: - - pos: -6.5,-44.5 - parent: 82 - type: Transform -- uid: 18307 - type: CableApcExtension - components: - - pos: -6.5,-45.5 - parent: 82 - type: Transform -- uid: 18308 - type: CableApcExtension - components: - - pos: -6.5,-46.5 - parent: 82 - type: Transform -- uid: 18309 - type: CableApcExtension - components: - - pos: -6.5,-47.5 - parent: 82 - type: Transform -- uid: 18310 - type: CableApcExtension - components: - - pos: -6.5,-48.5 - parent: 82 - type: Transform -- uid: 18311 - type: CableApcExtension - components: - - pos: -6.5,-49.5 - parent: 82 - type: Transform -- uid: 18312 - type: CableApcExtension - components: - - pos: -7.5,-49.5 - parent: 82 - type: Transform -- uid: 18313 - type: CableApcExtension - components: - - pos: -8.5,-49.5 - parent: 82 - type: Transform -- uid: 18314 - type: CableApcExtension - components: - - pos: -9.5,-49.5 - parent: 82 - type: Transform -- uid: 18315 - type: CableApcExtension - components: - - pos: -10.5,-49.5 - parent: 82 - type: Transform -- uid: 18316 - type: CableApcExtension - components: - - pos: -11.5,-49.5 - parent: 82 - type: Transform -- uid: 18317 - type: CableApcExtension - components: - - pos: -12.5,-49.5 - parent: 82 - type: Transform -- uid: 18318 - type: CableApcExtension - components: - - pos: -6.5,-50.5 - parent: 82 - type: Transform -- uid: 18319 - type: CableApcExtension - components: - - pos: -6.5,-51.5 - parent: 82 - type: Transform -- uid: 18320 - type: CableApcExtension - components: - - pos: -7.5,-51.5 - parent: 82 - type: Transform -- uid: 18321 - type: CableApcExtension - components: - - pos: -8.5,-51.5 - parent: 82 - type: Transform -- uid: 18322 - type: CableApcExtension - components: - - pos: -9.5,-51.5 - parent: 82 - type: Transform -- uid: 18323 - type: CableApcExtension - components: - - pos: -11.5,-51.5 - parent: 82 - type: Transform -- uid: 18324 - type: CableApcExtension - components: - - pos: -10.5,-51.5 - parent: 82 - type: Transform -- uid: 18325 - type: CableApcExtension - components: - - pos: -12.5,-51.5 - parent: 82 - type: Transform -- uid: 18326 - type: CableApcExtension - components: - - pos: 3.5,-46.5 - parent: 82 - type: Transform -- uid: 18327 - type: CableApcExtension - components: - - pos: 3.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18328 - type: CableApcExtension - components: - - pos: 3.5,-48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18329 - type: CableApcExtension - components: - - pos: 3.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18330 - type: CableApcExtension - components: - - pos: 2.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18331 - type: CableApcExtension - components: - - pos: 1.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18332 - type: CableApcExtension - components: - - pos: 0.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18333 - type: CableApcExtension - components: - - pos: -0.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18334 - type: CableApcExtension - components: - - pos: -1.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18335 - type: CableApcExtension - components: - - pos: -2.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18336 - type: CableApcExtension - components: - - pos: -2.5,-50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18337 - type: CableApcExtension - components: - - pos: 3.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18338 - type: CableApcExtension - components: - - pos: 4.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18339 - type: CableApcExtension - components: - - pos: 5.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18340 - type: CableApcExtension - components: - - pos: 6.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18341 - type: CableApcExtension - components: - - pos: 6.5,-48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18342 - type: CableApcExtension - components: - - pos: 6.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18343 - type: CableApcExtension - components: - - pos: 7.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18344 - type: CableApcExtension - components: - - pos: 8.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18345 - type: CableApcExtension - components: - - pos: 9.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18346 - type: CableApcExtension - components: - - pos: -7.5,-45.5 - parent: 82 - type: Transform -- uid: 18347 - type: CableApcExtension - components: - - pos: -8.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18348 - type: CableApcExtension - components: - - pos: -9.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18349 - type: CableApcExtension - components: - - pos: -10.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18350 - type: CableApcExtension - components: - - pos: -11.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18351 - type: CableApcExtension - components: - - pos: -12.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18352 - type: CableApcExtension - components: - - pos: -13.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18353 - type: CableApcExtension - components: - - pos: -14.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18354 - type: CableApcExtension - components: - - pos: -15.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18355 - type: CableApcExtension - components: - - pos: -16.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18356 - type: CableApcExtension - components: - - pos: -16.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18357 - type: CableApcExtension - components: - - pos: -17.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18358 - type: CableApcExtension - components: - - pos: -18.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18359 - type: CableApcExtension - components: - - pos: -18.5,-45.5 - parent: 82 - type: Transform -- uid: 18360 - type: CableApcExtension - components: - - pos: -18.5,-44.5 - parent: 82 - type: Transform -- uid: 18361 - type: CableApcExtension - components: - - pos: -18.5,-43.5 - parent: 82 - type: Transform -- uid: 18362 - type: CableMV - components: - - pos: 41.5,34.5 - parent: 82 - type: Transform -- uid: 18363 - type: CableMV - components: - - pos: 39.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18364 - type: CableMV - components: - - pos: 39.5,38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18365 - type: CableMV - components: - - pos: 39.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18366 - type: CableMV - components: - - pos: 39.5,36.5 - parent: 82 - type: Transform -- uid: 18367 - type: CableMV - components: - - pos: 40.5,36.5 - parent: 82 - type: Transform -- uid: 18368 - type: CableMV - components: - - pos: 40.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18369 - type: CableMV - components: - - pos: 41.5,35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18370 - type: SubstationBasic - components: - - pos: -25.5,-46.5 - parent: 82 - type: Transform -- uid: 18371 - type: CableHV - components: - - pos: -21.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18372 - type: CableHV - components: - - pos: -20.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18373 - type: CableHV - components: - - pos: -19.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18374 - type: CableMV - components: - - pos: -25.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18375 - type: CableMV - components: - - pos: -24.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18376 - type: CableMV - components: - - pos: -23.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18377 - type: CableMV - components: - - pos: -22.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18378 - type: CableMV - components: - - pos: -22.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18379 - type: CableMV - components: - - pos: -22.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18380 - type: CableMV - components: - - pos: -23.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18381 - type: CableMV - components: - - pos: -24.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18382 - type: CableMV - components: - - pos: -25.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18383 - type: CableMV - components: - - pos: -23.5,-43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18384 - type: CableMV - components: - - pos: -23.5,-42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18385 - type: CableMV - components: - - pos: -23.5,-41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18386 - type: CableMV - components: - - pos: -23.5,-40.5 - parent: 82 - type: Transform -- uid: 18387 - type: CableMV - components: - - pos: -23.5,-39.5 - parent: 82 - type: Transform -- uid: 18388 - type: CableMV - components: - - pos: -23.5,-38.5 - parent: 82 - type: Transform -- uid: 18389 - type: CableMV - components: - - pos: -24.5,-38.5 - parent: 82 - type: Transform -- uid: 18390 - type: CableMV - components: - - pos: -24.5,-37.5 - parent: 82 - type: Transform -- uid: 18391 - type: CableMV - components: - - pos: -24.5,-36.5 - parent: 82 - type: Transform -- uid: 18392 - type: CableMV - components: - - pos: -24.5,-35.5 - parent: 82 - type: Transform -- uid: 18393 - type: CableMV - components: - - pos: -24.5,-34.5 - parent: 82 - type: Transform -- uid: 18394 - type: CableMV - components: - - pos: -24.5,-33.5 - parent: 82 - type: Transform -- uid: 18395 - type: CableMV - components: - - pos: -25.5,-33.5 - parent: 82 - type: Transform -- uid: 18396 - type: CableMV - components: - - pos: -26.5,-33.5 - parent: 82 - type: Transform -- uid: 18397 - type: CableMV - components: - - pos: -27.5,-33.5 - parent: 82 - type: Transform -- uid: 18398 - type: CableMV - components: - - pos: -28.5,-33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18399 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-33.5 - parent: 82 - type: Transform -- uid: 18400 - type: CableApcExtension - components: - - pos: -28.5,-32.5 - parent: 82 - type: Transform -- uid: 18401 - type: CableApcExtension - components: - - pos: -28.5,-31.5 - parent: 82 - type: Transform -- uid: 18402 - type: CableApcExtension - components: - - pos: -28.5,-30.5 - parent: 82 - type: Transform -- uid: 18403 - type: CableApcExtension - components: - - pos: -27.5,-30.5 - parent: 82 - type: Transform -- uid: 18404 - type: CableApcExtension - components: - - pos: -26.5,-30.5 - parent: 82 - type: Transform -- uid: 18405 - type: CableApcExtension - components: - - pos: -25.5,-30.5 - parent: 82 - type: Transform -- uid: 18406 - type: CableApcExtension - components: - - pos: -25.5,-29.5 - parent: 82 - type: Transform -- uid: 18407 - type: CableApcExtension - components: - - pos: -25.5,-28.5 - parent: 82 - type: Transform -- uid: 18408 - type: CableApcExtension - components: - - pos: -25.5,-27.5 - parent: 82 - type: Transform -- uid: 18409 - type: CableApcExtension - components: - - pos: -25.5,-26.5 - parent: 82 - type: Transform -- uid: 18410 - type: CableApcExtension - components: - - pos: -25.5,-25.5 - parent: 82 - type: Transform -- uid: 18411 - type: CableApcExtension - components: - - pos: -25.5,-24.5 - parent: 82 - type: Transform -- uid: 18412 - type: CableApcExtension - components: - - pos: -24.5,-24.5 - parent: 82 - type: Transform -- uid: 18413 - type: CableApcExtension - components: - - pos: -23.5,-24.5 - parent: 82 - type: Transform -- uid: 18414 - type: CableApcExtension - components: - - pos: -22.5,-24.5 - parent: 82 - type: Transform -- uid: 18415 - type: CableApcExtension - components: - - pos: -21.5,-24.5 - parent: 82 - type: Transform -- uid: 18416 - type: CableApcExtension - components: - - pos: -20.5,-24.5 - parent: 82 - type: Transform -- uid: 18417 - type: CableApcExtension - components: - - pos: -19.5,-24.5 - parent: 82 - type: Transform -- uid: 18418 - type: CableApcExtension - components: - - pos: -18.5,-24.5 - parent: 82 - type: Transform -- uid: 18419 - type: CableApcExtension - components: - - pos: -17.5,-24.5 - parent: 82 - type: Transform -- uid: 18420 - type: CableApcExtension - components: - - pos: -16.5,-24.5 - parent: 82 - type: Transform -- uid: 18421 - type: CableApcExtension - components: - - pos: -15.5,-24.5 - parent: 82 - type: Transform -- uid: 18422 - type: CableApcExtension - components: - - pos: -14.5,-24.5 - parent: 82 - type: Transform -- uid: 18423 - type: CableApcExtension - components: - - pos: -13.5,-24.5 - parent: 82 - type: Transform -- uid: 18424 - type: CableApcExtension - components: - - pos: -13.5,-25.5 - parent: 82 - type: Transform -- uid: 18425 - type: CableApcExtension - components: - - pos: -13.5,-26.5 - parent: 82 - type: Transform -- uid: 18426 - type: CableApcExtension - components: - - pos: -14.5,-26.5 - parent: 82 - type: Transform -- uid: 18427 - type: CableApcExtension - components: - - pos: -15.5,-26.5 - parent: 82 - type: Transform -- uid: 18428 - type: CableApcExtension - components: - - pos: -16.5,-26.5 - parent: 82 - type: Transform -- uid: 18429 - type: CableApcExtension - components: - - pos: -17.5,-26.5 - parent: 82 - type: Transform -- uid: 18430 - type: CableApcExtension - components: - - pos: -18.5,-26.5 - parent: 82 - type: Transform -- uid: 18431 - type: CableApcExtension - components: - - pos: -19.5,-26.5 - parent: 82 - type: Transform -- uid: 18432 - type: CableApcExtension - components: - - pos: -20.5,-26.5 - parent: 82 - type: Transform -- uid: 18433 - type: CableApcExtension - components: - - pos: -21.5,-26.5 - parent: 82 - type: Transform -- uid: 18434 - type: CableApcExtension - components: - - pos: -22.5,-26.5 - parent: 82 - type: Transform -- uid: 18435 - type: CableApcExtension - components: - - pos: -23.5,-26.5 - parent: 82 - type: Transform -- uid: 18436 - type: CableApcExtension - components: - - pos: -23.5,-27.5 - parent: 82 - type: Transform -- uid: 18437 - type: CableApcExtension - components: - - pos: -23.5,-28.5 - parent: 82 - type: Transform -- uid: 18438 - type: CableApcExtension - components: - - pos: -23.5,-29.5 - parent: 82 - type: Transform -- uid: 18439 - type: CableApcExtension - components: - - pos: -22.5,-29.5 - parent: 82 - type: Transform -- uid: 18440 - type: CableApcExtension - components: - - pos: -21.5,-29.5 - parent: 82 - type: Transform -- uid: 18441 - type: CableApcExtension - components: - - pos: -20.5,-29.5 - parent: 82 - type: Transform -- uid: 18442 - type: CableApcExtension - components: - - pos: -19.5,-29.5 - parent: 82 - type: Transform -- uid: 18443 - type: CableApcExtension - components: - - pos: -18.5,-29.5 - parent: 82 - type: Transform -- uid: 18444 - type: CableApcExtension - components: - - pos: -17.5,-29.5 - parent: 82 - type: Transform -- uid: 18445 - type: CableApcExtension - components: - - pos: -23.5,-30.5 - parent: 82 - type: Transform -- uid: 18446 - type: CableApcExtension - components: - - pos: -23.5,-31.5 - parent: 82 - type: Transform -- uid: 18447 - type: CableApcExtension - components: - - pos: -23.5,-32.5 - parent: 82 - type: Transform -- uid: 18448 - type: CableApcExtension - components: - - pos: -23.5,-33.5 - parent: 82 - type: Transform -- uid: 18449 - type: CableApcExtension - components: - - pos: -23.5,-34.5 - parent: 82 - type: Transform -- uid: 18450 - type: CableApcExtension - components: - - pos: -22.5,-34.5 - parent: 82 - type: Transform -- uid: 18451 - type: CableApcExtension - components: - - pos: -23.5,-35.5 - parent: 82 - type: Transform -- uid: 18452 - type: CableApcExtension - components: - - pos: -24.5,-35.5 - parent: 82 - type: Transform -- uid: 18453 - type: CableApcExtension - components: - - pos: -25.5,-35.5 - parent: 82 - type: Transform -- uid: 18454 - type: CableApcExtension - components: - - pos: -26.5,-35.5 - parent: 82 - type: Transform -- uid: 18455 - type: CableApcExtension - components: - - pos: -27.5,-35.5 - parent: 82 - type: Transform -- uid: 18456 - type: CableApcExtension - components: - - pos: -27.5,-34.5 - parent: 82 - type: Transform -- uid: 18457 - type: CableApcExtension - components: - - pos: -27.5,-33.5 - parent: 82 - type: Transform -- uid: 18458 - type: CableApcExtension - components: - - pos: -28.5,-33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18459 - type: CableApcExtension - components: - - pos: -24.5,-36.5 - parent: 82 - type: Transform -- uid: 18460 - type: CableApcExtension - components: - - pos: -24.5,-37.5 - parent: 82 - type: Transform -- uid: 18461 - type: CableApcExtension - components: - - pos: -24.5,-38.5 - parent: 82 - type: Transform -- uid: 18462 - type: CableApcExtension - components: - - pos: -25.5,-38.5 - parent: 82 - type: Transform -- uid: 18463 - type: CableApcExtension - components: - - pos: -26.5,-38.5 - parent: 82 - type: Transform -- uid: 18464 - type: CableApcExtension - components: - - pos: -27.5,-38.5 - parent: 82 - type: Transform -- uid: 18465 - type: CableApcExtension - components: - - pos: -23.5,-38.5 - parent: 82 - type: Transform -- uid: 18466 - type: CableApcExtension - components: - - pos: -22.5,-38.5 - parent: 82 - type: Transform -- uid: 18467 - type: CableApcExtension - components: - - pos: -22.5,-38.5 - parent: 82 - type: Transform -- uid: 18468 - type: CableApcExtension - components: - - pos: -21.5,-38.5 - parent: 82 - type: Transform -- uid: 18469 - type: CableApcExtension - components: - - pos: -23.5,-39.5 - parent: 82 - type: Transform -- uid: 18470 - type: CableApcExtension - components: - - pos: -23.5,-40.5 - parent: 82 - type: Transform -- uid: 18471 - type: CableApcExtension - components: - - pos: -23.5,-41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18472 - type: CableApcExtension - components: - - pos: -23.5,-42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18473 - type: CableApcExtension - components: - - pos: -23.5,-43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18474 - type: CableApcExtension - components: - - pos: -23.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18475 - type: CableApcExtension - components: - - pos: -22.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18476 - type: CableApcExtension - components: - - pos: -21.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18477 - type: CableApcExtension - components: - - pos: -22.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18478 - type: CableApcExtension - components: - - pos: -22.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18479 - type: CableApcExtension - components: - - pos: -23.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18480 - type: chem_dispenser - components: - - pos: -29.5,-27.5 - parent: 82 - type: Transform -- uid: 18481 - type: CableMV - components: - - pos: -27.5,-32.5 - parent: 82 - type: Transform -- uid: 18482 - type: CableMV - components: - - pos: -28.5,-32.5 - parent: 82 - type: Transform -- uid: 18483 - type: CableMV - components: - - pos: -29.5,-32.5 - parent: 82 - type: Transform -- uid: 18484 - type: CableMV - components: - - pos: -30.5,-32.5 - parent: 82 - type: Transform -- uid: 18485 - type: CableMV - components: - - pos: -31.5,-32.5 - parent: 82 - type: Transform -- uid: 18486 - type: CableMV - components: - - pos: -32.5,-32.5 - parent: 82 - type: Transform -- uid: 18487 - type: CableMV - components: - - pos: -32.5,-31.5 - parent: 82 - type: Transform -- uid: 18488 - type: CableMV - components: - - pos: -32.5,-30.5 - parent: 82 - type: Transform -- uid: 18489 - type: CableMV - components: - - pos: -32.5,-29.5 - parent: 82 - type: Transform -- uid: 18490 - type: CableMV - components: - - pos: -32.5,-28.5 - parent: 82 - type: Transform -- uid: 18491 - type: CableMV - components: - - pos: -32.5,-27.5 - parent: 82 - type: Transform -- uid: 18492 - type: CableMV - components: - - pos: -32.5,-26.5 - parent: 82 - type: Transform -- uid: 18493 - type: CableMV - components: - - pos: -32.5,-25.5 - parent: 82 - type: Transform -- uid: 18494 - type: GasPipeBend - components: - - pos: 31.5,51.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18495 - type: CableApcExtension - components: - - pos: -33.5,-25.5 - parent: 82 - type: Transform -- uid: 18496 - type: CableApcExtension - components: - - pos: -32.5,-25.5 - parent: 82 - type: Transform -- uid: 18497 - type: CableApcExtension - components: - - pos: -31.5,-25.5 - parent: 82 - type: Transform -- uid: 18498 - type: CableApcExtension - components: - - pos: -30.5,-25.5 - parent: 82 - type: Transform -- uid: 18499 - type: CableApcExtension - components: - - pos: -29.5,-25.5 - parent: 82 - type: Transform -- uid: 18500 - type: CableApcExtension - components: - - pos: -29.5,-26.5 - parent: 82 - type: Transform -- uid: 18501 - type: CableApcExtension - components: - - pos: -29.5,-27.5 - parent: 82 - type: Transform -- uid: 18502 - type: CableApcExtension - components: - - pos: -29.5,-28.5 - parent: 82 - type: Transform -- uid: 18503 - type: CableApcExtension - components: - - pos: -30.5,-28.5 - parent: 82 - type: Transform -- uid: 18504 - type: CableApcExtension - components: - - pos: -31.5,-28.5 - parent: 82 - type: Transform -- uid: 18505 - type: CableApcExtension - components: - - pos: -32.5,-28.5 - parent: 82 - type: Transform -- uid: 18506 - type: CableApcExtension - components: - - pos: -33.5,-28.5 - parent: 82 - type: Transform -- uid: 18507 - type: CableApcExtension - components: - - pos: -34.5,-28.5 - parent: 82 - type: Transform -- uid: 18508 - type: CableApcExtension - components: - - pos: -35.5,-28.5 - parent: 82 - type: Transform -- uid: 18509 - type: CableApcExtension - components: - - pos: -36.5,-28.5 - parent: 82 - type: Transform -- uid: 18510 - type: CableApcExtension - components: - - pos: -37.5,-28.5 - parent: 82 - type: Transform -- uid: 18511 - type: CableApcExtension - components: - - pos: -37.5,-27.5 - parent: 82 - type: Transform -- uid: 18512 - type: CableApcExtension - components: - - pos: -37.5,-26.5 - parent: 82 - type: Transform -- uid: 18513 - type: CableApcExtension - components: - - pos: -36.5,-26.5 - parent: 82 - type: Transform -- uid: 18514 - type: CableApcExtension - components: - - pos: -35.5,-26.5 - parent: 82 - type: Transform -- uid: 18515 - type: CableApcExtension - components: - - pos: -34.5,-26.5 - parent: 82 - type: Transform -- uid: 18516 - type: CableApcExtension - components: - - pos: -33.5,-26.5 - parent: 82 - type: Transform -- uid: 18517 - type: CableApcExtension - components: - - pos: -36.5,-29.5 - parent: 82 - type: Transform -- uid: 18518 - type: CableApcExtension - components: - - pos: -36.5,-30.5 - parent: 82 - type: Transform -- uid: 18519 - type: CableApcExtension - components: - - pos: -36.5,-31.5 - parent: 82 - type: Transform -- uid: 18520 - type: CableApcExtension - components: - - pos: -35.5,-31.5 - parent: 82 - type: Transform -- uid: 18521 - type: CableApcExtension - components: - - pos: -34.5,-31.5 - parent: 82 - type: Transform -- uid: 18522 - type: CableApcExtension - components: - - pos: -33.5,-31.5 - parent: 82 - type: Transform -- uid: 18523 - type: CableApcExtension - components: - - pos: -32.5,-31.5 - parent: 82 - type: Transform -- uid: 18524 - type: CableApcExtension - components: - - pos: -31.5,-31.5 - parent: 82 - type: Transform -- uid: 18525 - type: CableApcExtension - components: - - pos: -30.5,-31.5 - parent: 82 - type: Transform -- uid: 18526 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-36.5 - parent: 82 - type: Transform -- uid: 18527 - type: CableMV - components: - - pos: -33.5,-32.5 - parent: 82 - type: Transform -- uid: 18528 - type: CableMV - components: - - pos: -34.5,-32.5 - parent: 82 - type: Transform -- uid: 18529 - type: CableMV - components: - - pos: -35.5,-32.5 - parent: 82 - type: Transform -- uid: 18530 - type: CableMV - components: - - pos: -36.5,-32.5 - parent: 82 - type: Transform -- uid: 18531 - type: CableMV - components: - - pos: -37.5,-32.5 - parent: 82 - type: Transform -- uid: 18532 - type: CableMV - components: - - pos: -37.5,-33.5 - parent: 82 - type: Transform -- uid: 18533 - type: CableMV - components: - - pos: -37.5,-34.5 - parent: 82 - type: Transform -- uid: 18534 - type: CableMV - components: - - pos: -37.5,-35.5 - parent: 82 - type: Transform -- uid: 18535 - type: CableMV - components: - - pos: -37.5,-36.5 - parent: 82 - type: Transform -- uid: 18536 - type: CableMV - components: - - pos: -38.5,-36.5 - parent: 82 - type: Transform -- uid: 18537 - type: CableMV - components: - - pos: -39.5,-36.5 - parent: 82 - type: Transform -- uid: 18538 - type: CableMV - components: - - pos: -40.5,-36.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18539 - type: CableApcExtension - components: - - pos: -40.5,-36.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18540 - type: CableApcExtension - components: - - pos: -39.5,-36.5 - parent: 82 - type: Transform -- uid: 18541 - type: CableApcExtension - components: - - pos: -38.5,-36.5 - parent: 82 - type: Transform -- uid: 18542 - type: CableApcExtension - components: - - pos: -37.5,-36.5 - parent: 82 - type: Transform -- uid: 18543 - type: CableApcExtension - components: - - pos: -36.5,-36.5 - parent: 82 - type: Transform -- uid: 18544 - type: CableApcExtension - components: - - pos: -35.5,-36.5 - parent: 82 - type: Transform -- uid: 18545 - type: CableApcExtension - components: - - pos: -34.5,-36.5 - parent: 82 - type: Transform -- uid: 18546 - type: CableApcExtension - components: - - pos: -33.5,-36.5 - parent: 82 - type: Transform -- uid: 18547 - type: CableApcExtension - components: - - pos: -32.5,-36.5 - parent: 82 - type: Transform -- uid: 18548 - type: CableApcExtension - components: - - pos: -31.5,-36.5 - parent: 82 - type: Transform -- uid: 18549 - type: CableApcExtension - components: - - pos: -30.5,-36.5 - parent: 82 - type: Transform -- uid: 18550 - type: CableApcExtension - components: - - pos: -29.5,-36.5 - parent: 82 - type: Transform -- uid: 18551 - type: CableApcExtension - components: - - pos: -34.5,-35.5 - parent: 82 - type: Transform -- uid: 18552 - type: CableApcExtension - components: - - pos: -34.5,-34.5 - parent: 82 - type: Transform -- uid: 18553 - type: CableApcExtension - components: - - pos: -35.5,-34.5 - parent: 82 - type: Transform -- uid: 18554 - type: CableApcExtension - components: - - pos: -33.5,-34.5 - parent: 82 - type: Transform -- uid: 18555 - type: CableApcExtension - components: - - pos: -39.5,-37.5 - parent: 82 - type: Transform -- uid: 18556 - type: CableApcExtension - components: - - pos: -39.5,-38.5 - parent: 82 - type: Transform -- uid: 18557 - type: CableApcExtension - components: - - pos: -39.5,-39.5 - parent: 82 - type: Transform -- uid: 18558 - type: CableApcExtension - components: - - pos: -39.5,-40.5 - parent: 82 - type: Transform -- uid: 18559 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-28.5 - parent: 82 - type: Transform -- uid: 18560 - type: HandLabeler - components: - - pos: -32.56519,-29.403221 - parent: 82 - type: Transform -- uid: 18561 - type: SecurityTechFab - components: - - pos: 50.5,-20.5 - parent: 82 - type: Transform -- uid: 18562 - type: CableApcExtension - components: - - pos: -39.5,-44.5 - parent: 82 - type: Transform -- uid: 18563 - type: CableApcExtension - components: - - pos: -40.5,-44.5 - parent: 82 - type: Transform -- uid: 18564 - type: CableApcExtension - components: - - pos: -40.5,-44.5 - parent: 82 - type: Transform -- uid: 18565 - type: CableApcExtension - components: - - pos: -41.5,-44.5 - parent: 82 - type: Transform -- uid: 18566 - type: CableApcExtension - components: - - pos: -42.5,-44.5 - parent: 82 - type: Transform -- uid: 18567 - type: CableApcExtension - components: - - pos: -42.5,-43.5 - parent: 82 - type: Transform -- uid: 18568 - type: CableApcExtension - components: - - pos: -42.5,-42.5 - parent: 82 - type: Transform -- uid: 18569 - type: CableApcExtension - components: - - pos: -42.5,-41.5 - parent: 82 - type: Transform -- uid: 18570 - type: CableApcExtension - components: - - pos: -42.5,-40.5 - parent: 82 - type: Transform -- uid: 18571 - type: CableApcExtension - components: - - pos: -42.5,-39.5 - parent: 82 - type: Transform -- uid: 18572 - type: CableApcExtension - components: - - pos: -42.5,-38.5 - parent: 82 - type: Transform -- uid: 18573 - type: CableApcExtension - components: - - pos: -42.5,-37.5 - parent: 82 - type: Transform -- uid: 18574 - type: CableApcExtension - components: - - pos: -41.5,-37.5 - parent: 82 - type: Transform -- uid: 18575 - type: CableApcExtension - components: - - pos: -40.5,-37.5 - parent: 82 - type: Transform -- uid: 18576 - type: CableApcExtension - components: - - pos: -29.5,-37.5 - parent: 82 - type: Transform -- uid: 18577 - type: CableApcExtension - components: - - pos: -29.5,-38.5 - parent: 82 - type: Transform -- uid: 18578 - type: CableApcExtension - components: - - pos: -29.5,-39.5 - parent: 82 - type: Transform -- uid: 18579 - type: CableApcExtension - components: - - pos: -34.5,-37.5 - parent: 82 - type: Transform -- uid: 18580 - type: CableApcExtension - components: - - pos: -34.5,-38.5 - parent: 82 - type: Transform -- uid: 18581 - type: CableApcExtension - components: - - pos: -34.5,-39.5 - parent: 82 - type: Transform -- uid: 18582 - type: CableApcExtension - components: - - pos: -34.5,-40.5 - parent: 82 - type: Transform -- uid: 18583 - type: CableApcExtension - components: - - pos: -34.5,-41.5 - parent: 82 - type: Transform -- uid: 18584 - type: CableApcExtension - components: - - pos: -34.5,-42.5 - parent: 82 - type: Transform -- uid: 18585 - type: CableApcExtension - components: - - pos: -34.5,-43.5 - parent: 82 - type: Transform -- uid: 18586 - type: CableApcExtension - components: - - pos: -34.5,-44.5 - parent: 82 - type: Transform -- uid: 18587 - type: CableApcExtension - components: - - pos: -33.5,-44.5 - parent: 82 - type: Transform -- uid: 18588 - type: CableApcExtension - components: - - pos: -33.5,-41.5 - parent: 82 - type: Transform -- uid: 18589 - type: CableApcExtension - components: - - pos: -32.5,-41.5 - parent: 82 - type: Transform -- uid: 18590 - type: CableApcExtension - components: - - pos: -32.5,-44.5 - parent: 82 - type: Transform -- uid: 18591 - type: CableApcExtension - components: - - pos: -31.5,-44.5 - parent: 82 - type: Transform -- uid: 18592 - type: CableApcExtension - components: - - pos: -30.5,-44.5 - parent: 82 - type: Transform -- uid: 18593 - type: CableApcExtension - components: - - pos: -30.5,-41.5 - parent: 82 - type: Transform -- uid: 18594 - type: CableApcExtension - components: - - pos: -31.5,-41.5 - parent: 82 - type: Transform -- uid: 18595 - type: CableApcExtension - components: - - pos: -29.5,-44.5 - parent: 82 - type: Transform -- uid: 18596 - type: CableApcExtension - components: - - pos: -29.5,-43.5 - parent: 82 - type: Transform -- uid: 18597 - type: CableApcExtension - components: - - pos: -28.5,-43.5 - parent: 82 - type: Transform -- uid: 18598 - type: CableApcExtension - components: - - pos: -29.5,-42.5 - parent: 82 - type: Transform -- uid: 18599 - type: CableApcExtension - components: - - pos: -29.5,-41.5 - parent: 82 - type: Transform -- uid: 18600 - type: CableApcExtension - components: - - pos: -27.5,-43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18601 - type: CableApcExtension - components: - - pos: -26.5,-43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18602 - type: CableApcExtension - components: - - pos: -27.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18603 - type: CableApcExtension - components: - - pos: -27.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18604 - type: CableApcExtension - components: - - pos: -27.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18605 - type: CableApcExtension - components: - - pos: -28.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18606 - type: CableApcExtension - components: - - pos: -29.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18607 - type: CableApcExtension - components: - - pos: -30.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18608 - type: CableApcExtension - components: - - pos: -31.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18609 - type: CableApcExtension - components: - - pos: -32.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18610 - type: CableApcExtension - components: - - pos: -33.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18611 - type: CableApcExtension - components: - - pos: -34.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18612 - type: CableApcExtension - components: - - pos: -35.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18613 - type: CableApcExtension - components: - - pos: -36.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18614 - type: CableApcExtension - components: - - pos: -37.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18615 - type: OxygenCanister - components: - - pos: 32.5,66.5 - parent: 82 - type: Transform -- uid: 18616 - type: CableApcExtension - components: - - pos: -37.5,-44.5 - parent: 82 - type: Transform -- uid: 18617 - type: CableApcExtension - components: - - pos: -37.5,-43.5 - parent: 82 - type: Transform -- uid: 18618 - type: AirAlarm - components: - - pos: 33.5,52.5 - parent: 82 - type: Transform - - devices: - - invalid - - 12754 - - 22877 - - 22474 - - 22475 - - 22476 - - 22485 - - 22484 - - 22483 - - 22491 - - 22490 - type: DeviceList -- uid: 18619 - type: CableApcExtension - components: - - pos: -38.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18620 - type: CableApcExtension - components: - - pos: -39.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18621 - type: CableApcExtension - components: - - pos: -40.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18622 - type: CableApcExtension - components: - - pos: -41.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18623 - type: CableApcExtension - components: - - pos: -41.5,-47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18624 - type: CableApcExtension - components: - - pos: -41.5,-48.5 - parent: 82 - type: Transform -- uid: 18625 - type: CableApcExtension - components: - - pos: -41.5,-49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18626 - type: CableApcExtension - components: - - pos: -41.5,-50.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18627 - type: CableApcExtension - components: - - pos: -41.5,-51.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18628 - type: CableApcExtension - components: - - pos: -41.5,-52.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18629 - type: CableApcExtension - components: - - pos: -42.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18630 - type: CableApcExtension - components: - - pos: -43.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18631 - type: CableApcExtension - components: - - pos: -44.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18632 - type: CableApcExtension - components: - - pos: -45.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18633 - type: CableApcExtension - components: - - pos: -45.5,-45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18634 - type: CableApcExtension - components: - - pos: -45.5,-44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18635 - type: CableApcExtension - components: - - pos: -45.5,-43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18636 - type: CableApcExtension - components: - - pos: -45.5,-42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18637 - type: CableApcExtension - components: - - pos: -45.5,-41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18638 - type: CableApcExtension - components: - - pos: -45.5,-40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18639 - type: CableApcExtension - components: - - pos: -46.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18640 - type: CableApcExtension - components: - - pos: -47.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18641 - type: CableApcExtension - components: - - pos: -48.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18642 - type: CableApcExtension - components: - - pos: -49.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18643 - type: CableApcExtension - components: - - pos: -50.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18644 - type: CableApcExtension - components: - - pos: -51.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18645 - type: CableApcExtension - components: - - pos: -52.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18646 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-40.5 - parent: 82 - type: Transform -- uid: 18647 - type: APCBasic - components: - - pos: -43.5,-23.5 - parent: 82 - type: Transform -- uid: 18648 - type: CableMV - components: - - pos: -38.5,-32.5 - parent: 82 - type: Transform -- uid: 18649 - type: CableMV - components: - - pos: -39.5,-32.5 - parent: 82 - type: Transform -- uid: 18650 - type: CableMV - components: - - pos: -40.5,-32.5 - parent: 82 - type: Transform -- uid: 18651 - type: CableMV - components: - - pos: -40.5,-31.5 - parent: 82 - type: Transform -- uid: 18652 - type: CableMV - components: - - pos: -40.5,-30.5 - parent: 82 - type: Transform -- uid: 18653 - type: CableMV - components: - - pos: -40.5,-29.5 - parent: 82 - type: Transform -- uid: 18654 - type: CableMV - components: - - pos: -40.5,-28.5 - parent: 82 - type: Transform -- uid: 18655 - type: CableMV - components: - - pos: -40.5,-27.5 - parent: 82 - type: Transform -- uid: 18656 - type: CableMV - components: - - pos: -40.5,-26.5 - parent: 82 - type: Transform -- uid: 18657 - type: CableMV - components: - - pos: -41.5,-26.5 - parent: 82 - type: Transform -- uid: 18658 - type: CableMV - components: - - pos: -42.5,-26.5 - parent: 82 - type: Transform -- uid: 18659 - type: CableMV - components: - - pos: -43.5,-26.5 - parent: 82 - type: Transform -- uid: 18660 - type: CableMV - components: - - pos: -43.5,-25.5 - parent: 82 - type: Transform -- uid: 18661 - type: CableMV - components: - - pos: -43.5,-24.5 - parent: 82 - type: Transform -- uid: 18662 - type: CableMV - components: - - pos: -43.5,-23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18663 - type: CableApcExtension - components: - - pos: -43.5,-23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18664 - type: CableApcExtension - components: - - pos: -43.5,-24.5 - parent: 82 - type: Transform -- uid: 18665 - type: CableApcExtension - components: - - pos: -44.5,-24.5 - parent: 82 - type: Transform -- uid: 18666 - type: CableApcExtension - components: - - pos: -45.5,-24.5 - parent: 82 - type: Transform -- uid: 18667 - type: CableApcExtension - components: - - pos: -46.5,-24.5 - parent: 82 - type: Transform -- uid: 18668 - type: CableApcExtension - components: - - pos: -46.5,-25.5 - parent: 82 - type: Transform -- uid: 18669 - type: CableApcExtension - components: - - pos: -46.5,-26.5 - parent: 82 - type: Transform -- uid: 18670 - type: CableApcExtension - components: - - pos: -46.5,-27.5 - parent: 82 - type: Transform -- uid: 18671 - type: CableApcExtension - components: - - pos: -46.5,-28.5 - parent: 82 - type: Transform -- uid: 18672 - type: CableApcExtension - components: - - pos: -45.5,-28.5 - parent: 82 - type: Transform -- uid: 18673 - type: CableApcExtension - components: - - pos: -44.5,-28.5 - parent: 82 - type: Transform -- uid: 18674 - type: CableApcExtension - components: - - pos: -43.5,-28.5 - parent: 82 - type: Transform -- uid: 18675 - type: CableApcExtension - components: - - pos: -42.5,-28.5 - parent: 82 - type: Transform -- uid: 18676 - type: CableApcExtension - components: - - pos: -42.5,-27.5 - parent: 82 - type: Transform -- uid: 18677 - type: CableApcExtension - components: - - pos: -42.5,-26.5 - parent: 82 - type: Transform -- uid: 18678 - type: CableApcExtension - components: - - pos: -42.5,-25.5 - parent: 82 - type: Transform -- uid: 18679 - type: CableApcExtension - components: - - pos: -42.5,-24.5 - parent: 82 - type: Transform -- uid: 18680 - type: CableApcExtension - components: - - pos: -41.5,-26.5 - parent: 82 - type: Transform -- uid: 18681 - type: CableApcExtension - components: - - pos: -40.5,-26.5 - parent: 82 - type: Transform -- uid: 18682 - type: CableApcExtension - components: - - pos: -40.5,-27.5 - parent: 82 - type: Transform -- uid: 18683 - type: CableApcExtension - components: - - pos: -40.5,-28.5 - parent: 82 - type: Transform -- uid: 18684 - type: CableApcExtension - components: - - pos: -40.5,-29.5 - parent: 82 - type: Transform -- uid: 18685 - type: CableApcExtension - components: - - pos: -40.5,-30.5 - parent: 82 - type: Transform -- uid: 18686 - type: CableApcExtension - components: - - pos: -40.5,-31.5 - parent: 82 - type: Transform -- uid: 18687 - type: CableApcExtension - components: - - pos: -41.5,-30.5 - parent: 82 - type: Transform -- uid: 18688 - type: CableMV - components: - - pos: -41.5,-32.5 - parent: 82 - type: Transform -- uid: 18689 - type: CableMV - components: - - pos: -42.5,-32.5 - parent: 82 - type: Transform -- uid: 18690 - type: CableMV - components: - - pos: -43.5,-32.5 - parent: 82 - type: Transform -- uid: 18691 - type: CableMV - components: - - pos: -44.5,-32.5 - parent: 82 - type: Transform -- uid: 18692 - type: CableMV - components: - - pos: -45.5,-32.5 - parent: 82 - type: Transform -- uid: 18693 - type: CableMV - components: - - pos: -46.5,-32.5 - parent: 82 - type: Transform -- uid: 18694 - type: CableMV - components: - - pos: -47.5,-32.5 - parent: 82 - type: Transform -- uid: 18695 - type: CableMV - components: - - pos: -48.5,-32.5 - parent: 82 - type: Transform -- uid: 18696 - type: CableMV - components: - - pos: -49.5,-32.5 - parent: 82 - type: Transform -- uid: 18697 - type: CableMV - components: - - pos: -50.5,-32.5 - parent: 82 - type: Transform -- uid: 18698 - type: CableMV - components: - - pos: -51.5,-32.5 - parent: 82 - type: Transform -- uid: 18699 - type: CableMV - components: - - pos: -52.5,-32.5 - parent: 82 - type: Transform -- uid: 18700 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-32.5 - parent: 82 - type: Transform -- uid: 18701 - type: CableMV - components: - - pos: -53.5,-32.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18702 - type: CableApcExtension - components: - - pos: -52.5,-32.5 - parent: 82 - type: Transform -- uid: 18703 - type: CableApcExtension - components: - - pos: -54.5,-32.5 - parent: 82 - type: Transform -- uid: 18704 - type: CableApcExtension - components: - - pos: -55.5,-32.5 - parent: 82 - type: Transform -- uid: 18705 - type: CableApcExtension - components: - - pos: -55.5,-32.5 - parent: 82 - type: Transform -- uid: 18706 - type: CableApcExtension - components: - - pos: -56.5,-32.5 - parent: 82 - type: Transform -- uid: 18707 - type: CableApcExtension - components: - - pos: -55.5,-31.5 - parent: 82 - type: Transform -- uid: 18708 - type: CableApcExtension - components: - - pos: -55.5,-30.5 - parent: 82 - type: Transform -- uid: 18709 - type: CableApcExtension - components: - - pos: -55.5,-29.5 - parent: 82 - type: Transform -- uid: 18710 - type: CableApcExtension - components: - - pos: -55.5,-28.5 - parent: 82 - type: Transform -- uid: 18711 - type: CableApcExtension - components: - - pos: -55.5,-27.5 - parent: 82 - type: Transform -- uid: 18712 - type: CableApcExtension - components: - - pos: -55.5,-26.5 - parent: 82 - type: Transform -- uid: 18713 - type: CableApcExtension - components: - - pos: -55.5,-25.5 - parent: 82 - type: Transform -- uid: 18714 - type: CableApcExtension - components: - - pos: -55.5,-24.5 - parent: 82 - type: Transform -- uid: 18715 - type: CableApcExtension - components: - - pos: -55.5,-23.5 - parent: 82 - type: Transform -- uid: 18716 - type: CableApcExtension - components: - - pos: -55.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18717 - type: CableApcExtension - components: - - pos: -54.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18718 - type: CableApcExtension - components: - - pos: -53.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18719 - type: CableApcExtension - components: - - pos: -52.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18720 - type: CableApcExtension - components: - - pos: -51.5,-22.5 - parent: 82 - type: Transform -- uid: 18721 - type: CableApcExtension - components: - - pos: -50.5,-22.5 - parent: 82 - type: Transform -- uid: 18722 - type: CableApcExtension - components: - - pos: -49.5,-22.5 - parent: 82 - type: Transform -- uid: 18723 - type: CableApcExtension - components: - - pos: -48.5,-22.5 - parent: 82 - type: Transform -- uid: 18724 - type: CableApcExtension - components: - - pos: -51.5,-32.5 - parent: 82 - type: Transform -- uid: 18725 - type: CableApcExtension - components: - - pos: -50.5,-32.5 - parent: 82 - type: Transform -- uid: 18726 - type: CableApcExtension - components: - - pos: -53.5,-32.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18727 - type: CableApcExtension - components: - - pos: -50.5,-33.5 - parent: 82 - type: Transform -- uid: 18728 - type: CableApcExtension - components: - - pos: -50.5,-34.5 - parent: 82 - type: Transform -- uid: 18729 - type: CableApcExtension - components: - - pos: -50.5,-35.5 - parent: 82 - type: Transform -- uid: 18730 - type: CableApcExtension - components: - - pos: -49.5,-35.5 - parent: 82 - type: Transform -- uid: 18731 - type: CableApcExtension - components: - - pos: -48.5,-35.5 - parent: 82 - type: Transform -- uid: 18732 - type: CableApcExtension - components: - - pos: -48.5,-34.5 - parent: 82 - type: Transform -- uid: 18733 - type: CableApcExtension - components: - - pos: -48.5,-33.5 - parent: 82 - type: Transform -- uid: 18734 - type: CableApcExtension - components: - - pos: -48.5,-32.5 - parent: 82 - type: Transform -- uid: 18735 - type: CableApcExtension - components: - - pos: -50.5,-36.5 - parent: 82 - type: Transform -- uid: 18736 - type: CableApcExtension - components: - - pos: -51.5,-36.5 - parent: 82 - type: Transform -- uid: 18737 - type: WallSolid - components: - - pos: -50.5,-38.5 - parent: 82 - type: Transform -- uid: 18738 - type: WallSolid - components: - - pos: -51.5,-38.5 - parent: 82 - type: Transform -- uid: 18739 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: -48.5,-35.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18740 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-34.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 18741 - type: Sink - components: - - pos: -37.5,-9.5 - parent: 82 - type: Transform -- uid: 18742 - type: Catwalk - components: - - pos: -48.5,-37.5 - parent: 82 - type: Transform -- uid: 18743 - type: WallSolid - components: - - pos: -52.5,-38.5 - parent: 82 - type: Transform -- uid: 18744 - type: CableApcExtension - components: - - pos: -53.5,-38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18745 - type: CableApcExtension - components: - - pos: -54.5,-38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18746 - type: CableApcExtension - components: - - pos: -54.5,-37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18747 - type: CableApcExtension - components: - - pos: -54.5,-36.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18748 - type: CableApcExtension - components: - - pos: -54.5,-35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18749 - type: CableApcExtension - components: - - pos: -54.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18750 - type: CableApcExtension - components: - - pos: -55.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18751 - type: CableApcExtension - components: - - pos: -55.5,-33.5 - parent: 82 - type: Transform -- uid: 18752 - type: CableApcExtension - components: - - pos: -56.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18753 - type: CableApcExtension - components: - - pos: -57.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18754 - type: CableApcExtension - components: - - pos: -58.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18755 - type: CableApcExtension - components: - - pos: -59.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18756 - type: CableApcExtension - components: - - pos: -60.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18757 - type: CableApcExtension - components: - - pos: -60.5,-35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18758 - type: CableApcExtension - components: - - pos: -61.5,-35.5 - parent: 82 - type: Transform -- uid: 18759 - type: CableApcExtension - components: - - pos: -62.5,-35.5 - parent: 82 - type: Transform -- uid: 18760 - type: CableApcExtension - components: - - pos: -63.5,-35.5 - parent: 82 - type: Transform -- uid: 18761 - type: CableApcExtension - components: - - pos: -63.5,-36.5 - parent: 82 - type: Transform -- uid: 18762 - type: CableApcExtension - components: - - pos: -59.5,-33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18763 - type: CableApcExtension - components: - - pos: -59.5,-32.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18764 - type: CableApcExtension - components: - - pos: -59.5,-31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18765 - type: CableApcExtension - components: - - pos: -59.5,-30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18766 - type: CableApcExtension - components: - - pos: -59.5,-29.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18767 - type: CableApcExtension - components: - - pos: -59.5,-28.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18768 - type: CableApcExtension - components: - - pos: -59.5,-27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18769 - type: CableApcExtension - components: - - pos: -59.5,-26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18770 - type: CableApcExtension - components: - - pos: -59.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18771 - type: CableApcExtension - components: - - pos: -60.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18772 - type: CableApcExtension - components: - - pos: -61.5,-25.5 - parent: 82 - type: Transform -- uid: 18773 - type: CableApcExtension - components: - - pos: -62.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18774 - type: CableApcExtension - components: - - pos: -63.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18775 - type: CableApcExtension - components: - - pos: -64.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18776 - type: CableApcExtension - components: - - pos: -65.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18777 - type: CableApcExtension - components: - - pos: -56.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18778 - type: CableApcExtension - components: - - pos: -57.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18779 - type: CableApcExtension - components: - - pos: -58.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18780 - type: CableApcExtension - components: - - pos: -59.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18781 - type: CableApcExtension - components: - - pos: -59.5,-23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18782 - type: CableApcExtension - components: - - pos: -59.5,-24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18783 - type: CableApcExtension - components: - - pos: -49.5,11.5 - parent: 82 - type: Transform -- uid: 18784 - type: CableApcExtension - components: - - pos: -50.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18785 - type: CableApcExtension - components: - - pos: -51.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18786 - type: CableApcExtension - components: - - pos: -51.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18787 - type: CableApcExtension - components: - - pos: -52.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18788 - type: CableApcExtension - components: - - pos: -53.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18789 - type: CableApcExtension - components: - - pos: -54.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18790 - type: CableMV - components: - - pos: 26.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18791 - type: Bed - components: - - pos: 23.5,27.5 - parent: 82 - type: Transform -- uid: 18792 - type: Airlock - components: - - pos: 24.5,26.5 - parent: 82 - type: Transform -- uid: 18793 - type: AirlockAtmosphericsLocked - components: - - pos: 5.5,34.5 - parent: 82 - type: Transform -- uid: 18794 - type: WeldingFuelTankFull - components: - - pos: 23.5,24.5 - parent: 82 - type: Transform -- uid: 18795 - type: WaterTankFull - components: - - pos: 22.5,24.5 - parent: 82 - type: Transform -- uid: 18796 - type: CableApcExtension - components: - - pos: -48.5,-31.5 - parent: 82 - type: Transform -- uid: 18797 - type: CableApcExtension - components: - - pos: -48.5,-30.5 - parent: 82 - type: Transform -- uid: 18798 - type: CableApcExtension - components: - - pos: -49.5,-30.5 - parent: 82 - type: Transform -- uid: 18799 - type: CableApcExtension - components: - - pos: -50.5,-30.5 - parent: 82 - type: Transform -- uid: 18800 - type: CableApcExtension - components: - - pos: -50.5,-31.5 - parent: 82 - type: Transform -- uid: 18801 - type: CableApcExtension - components: - - pos: -49.5,-29.5 - parent: 82 - type: Transform -- uid: 18802 - type: CableApcExtension - components: - - pos: -49.5,-28.5 - parent: 82 - type: Transform -- uid: 18803 - type: CableApcExtension - components: - - pos: -49.5,-27.5 - parent: 82 - type: Transform -- uid: 18804 - type: CableApcExtension - components: - - pos: -49.5,-26.5 - parent: 82 - type: Transform -- uid: 18805 - type: Catwalk - components: - - pos: 25.5,30.5 - parent: 82 - type: Transform -- uid: 18806 - type: CableMV - components: - - pos: 39.5,34.5 - parent: 82 - type: Transform -- uid: 18807 - type: Table - components: - - pos: 38.5,34.5 - parent: 82 - type: Transform -- uid: 18808 - type: ChairFolding - components: - - pos: 33.5,65.5 - parent: 82 - type: Transform -- uid: 18809 - type: Catwalk - components: - - pos: 28.5,20.5 - parent: 82 - type: Transform -- uid: 18810 - type: Catwalk - components: - - pos: 21.5,30.5 - parent: 82 - type: Transform -- uid: 18811 - type: Catwalk - components: - - pos: 23.5,30.5 - parent: 82 - type: Transform -- uid: 18812 - type: Catwalk - components: - - pos: 22.5,30.5 - parent: 82 - type: Transform -- uid: 18813 - type: Catwalk - components: - - pos: 24.5,30.5 - parent: 82 - type: Transform -- uid: 18814 - type: Catwalk - components: - - pos: 39.5,40.5 - parent: 82 - type: Transform -- uid: 18815 - type: CableMV - components: - - pos: 24.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18816 - type: CarpetGreen - components: - - pos: 27.5,26.5 - parent: 82 - type: Transform -- uid: 18817 - type: CarpetGreen - components: - - pos: 27.5,27.5 - parent: 82 - type: Transform -- uid: 18818 - type: CarpetGreen - components: - - pos: 27.5,28.5 - parent: 82 - type: Transform -- uid: 18819 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 29.5,22.5 - parent: 82 - type: Transform -- uid: 18820 - type: Dresser - components: - - pos: 22.5,27.5 - parent: 82 - type: Transform -- uid: 18821 - type: TableWood - components: - - pos: 25.5,24.5 - parent: 82 - type: Transform -- uid: 18822 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 26.5,24.5 - parent: 82 - type: Transform -- uid: 18823 - type: CarpetGreen - components: - - pos: 28.5,25.5 - parent: 82 - type: Transform -- uid: 18824 - type: CarpetGreen - components: - - pos: 29.5,25.5 - parent: 82 - type: Transform -- uid: 18825 - type: CarpetGreen - components: - - pos: 28.5,27.5 - parent: 82 - type: Transform -- uid: 18826 - type: CarpetGreen - components: - - pos: 28.5,28.5 - parent: 82 - type: Transform -- uid: 18827 - type: GasPipeStraight - components: - - pos: -26.5,29.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18828 - type: GasPipeStraight - components: - - pos: -26.5,30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18829 - type: CarpetGreen - components: - - pos: 29.5,28.5 - parent: 82 - type: Transform -- uid: 18830 - type: BookRandom - components: - - pos: 25.460527,24.708866 - parent: 82 - type: Transform -- uid: 18831 - type: Catwalk - components: - - pos: 39.5,41.5 - parent: 82 - type: Transform -- uid: 18832 - type: GasPipeStraight - components: - - pos: -13.5,27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18833 - type: Catwalk - components: - - pos: 39.5,42.5 - parent: 82 - type: Transform -- uid: 18834 - type: Catwalk - components: - - pos: 39.5,45.5 - parent: 82 - type: Transform -- uid: 18835 - type: CableHV - components: - - pos: -9.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18836 - type: CarpetGreen - components: - - pos: 27.5,25.5 - parent: 82 - type: Transform -- uid: 18837 - type: CarpetGreen - components: - - pos: 29.5,27.5 - parent: 82 - type: Transform -- uid: 18838 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -13.5,26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18839 - type: GasPipeStraight - components: - - pos: -13.5,30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18840 - type: GasPipeStraight - components: - - pos: -13.5,29.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18841 - type: GasPipeStraight - components: - - pos: -13.5,28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18842 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -25.5,26.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18843 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -26.5,26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18844 - type: GasPipeStraight - components: - - pos: -25.5,27.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18845 - type: GasPipeStraight - components: - - pos: -25.5,28.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18846 - type: GasPipeStraight - components: - - pos: -26.5,27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18847 - type: CableMV - components: - - pos: 40.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18848 - type: CableMV - components: - - pos: 44.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18849 - type: CableMV - components: - - pos: 42.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18850 - type: CableMV - components: - - pos: 41.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18851 - type: CableMV - components: - - pos: 43.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18852 - type: CableMV - components: - - pos: 45.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18853 - type: CableMV - components: - - pos: 45.5,38.5 - parent: 82 - type: Transform -- uid: 18854 - type: CableMV - components: - - pos: 45.5,37.5 - parent: 82 - type: Transform -- uid: 18855 - type: CableMV - components: - - pos: 45.5,36.5 - parent: 82 - type: Transform -- uid: 18856 - type: CableMV - components: - - pos: 45.5,35.5 - parent: 82 - type: Transform -- uid: 18857 - type: CableMV - components: - - pos: 45.5,34.5 - parent: 82 - type: Transform -- uid: 18858 - type: CableMV - components: - - pos: 44.5,34.5 - parent: 82 - type: Transform -- uid: 18859 - type: CableMV - components: - - pos: 43.5,34.5 - parent: 82 - type: Transform -- uid: 18860 - type: CableMV - components: - - pos: 42.5,34.5 - parent: 82 - type: Transform -- uid: 18861 - type: Catwalk - components: - - pos: 26.5,20.5 - parent: 82 - type: Transform -- uid: 18862 - type: Catwalk - components: - - pos: 25.5,20.5 - parent: 82 - type: Transform -- uid: 18863 - type: Catwalk - components: - - pos: 24.5,20.5 - parent: 82 - type: Transform -- uid: 18864 - type: Catwalk - components: - - pos: 23.5,20.5 - parent: 82 - type: Transform -- uid: 18865 - type: Chair - components: - - pos: 21.5,24.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 18866 - type: ClosetEmergencyFilledRandom - components: - - pos: 24.5,29.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18867 - type: ClosetFireFilled - components: - - pos: 23.5,29.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18868 - type: ClosetMaintenanceFilledRandom - components: - - pos: 22.5,29.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18869 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 29.5,31.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 18870 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 27.5,31.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 18871 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 28.5,31.5 - parent: 82 - type: Transform -- uid: 18872 - type: MaintenanceFluffSpawner - components: - - rot: 1.5707963267948966 rad - pos: 28.5,31.5 - parent: 82 - type: Transform -- uid: 18873 - type: MaintenanceFluffSpawner - components: - - pos: 28.5,31.5 - parent: 82 - type: Transform -- uid: 18874 - type: MaintenanceToolSpawner - components: - - pos: 22.5,33.5 - parent: 82 - type: Transform -- uid: 18875 - type: Rack - components: - - pos: 22.5,33.5 - parent: 82 - type: Transform -- uid: 18876 - type: Chair - components: - - pos: 22.5,43.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 18877 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 23.5,42.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 18878 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 22.5,42.5 - parent: 82 - type: Transform -- uid: 18879 - type: RandomFoodSingle - components: - - pos: 22.5,42.5 - parent: 82 - type: Transform -- uid: 18880 - type: ClosetFireFilled - components: - - pos: 19.5,47.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18881 - type: ClosetEmergencyFilledRandom - components: - - pos: 19.5,46.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18882 - type: Catwalk - components: - - pos: 17.5,45.5 - parent: 82 - type: Transform -- uid: 18883 - type: Catwalk - components: - - pos: 16.5,45.5 - parent: 82 - type: Transform -- uid: 18884 - type: NitrogenCanister - components: - - pos: 8.5,46.5 - parent: 82 - type: Transform -- uid: 18885 - type: OxygenCanister - components: - - pos: 7.5,46.5 - parent: 82 - type: Transform -- uid: 18886 - type: Catwalk - components: - - pos: 15.5,45.5 - parent: 82 - type: Transform -- uid: 18887 - type: Catwalk - components: - - pos: 14.5,45.5 - parent: 82 - type: Transform -- uid: 18888 - type: Catwalk - components: - - pos: 13.5,45.5 - parent: 82 - type: Transform -- uid: 18889 - type: Catwalk - components: - - pos: 12.5,45.5 - parent: 82 - type: Transform -- uid: 18890 - type: Catwalk - components: - - pos: 11.5,45.5 - parent: 82 - type: Transform -- uid: 18891 - type: Catwalk - components: - - pos: 11.5,44.5 - parent: 82 - type: Transform -- uid: 18892 - type: Catwalk - components: - - pos: 11.5,43.5 - parent: 82 - type: Transform -- uid: 18893 - type: Catwalk - components: - - pos: 11.5,42.5 - parent: 82 - type: Transform -- uid: 18894 - type: Catwalk - components: - - pos: 11.5,41.5 - parent: 82 - type: Transform -- uid: 18895 - type: Catwalk - components: - - pos: 5.5,41.5 - parent: 82 - type: Transform -- uid: 18896 - type: Catwalk - components: - - pos: 5.5,42.5 - parent: 82 - type: Transform -- uid: 18897 - type: Catwalk - components: - - pos: 5.5,43.5 - parent: 82 - type: Transform -- uid: 18898 - type: Catwalk - components: - - pos: 5.5,44.5 - parent: 82 - type: Transform -- uid: 18899 - type: Catwalk - components: - - pos: 5.5,45.5 - parent: 82 - type: Transform -- uid: 18900 - type: Catwalk - components: - - pos: 5.5,46.5 - parent: 82 - type: Transform -- uid: 18901 - type: ClosetMaintenance - components: - - pos: 9.5,47.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18902 - type: SpawnVehicleJanicart - components: - - pos: -0.5,39.5 - parent: 82 - type: Transform -- uid: 18903 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -29.5,7.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 18904 - type: AirlockEngineeringLocked - components: - - pos: 9.5,44.5 - parent: 82 - type: Transform -- uid: 18905 - type: OxygenCanister - components: - - pos: -30.5,7.5 - parent: 82 - type: Transform -- uid: 18906 - type: AirlockEngineeringLocked - components: - - pos: 24.5,22.5 - parent: 82 - type: Transform -- uid: 18907 - type: AirlockEngineeringLocked - components: - - pos: 39.5,38.5 - parent: 82 - type: Transform -- uid: 18908 - type: Table - components: - - pos: -28.5,7.5 - parent: 82 - type: Transform -- uid: 18909 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -27.5,7.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 18910 - type: ClosetFireFilled - components: - - pos: -25.5,7.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18911 - type: ClosetEmergencyFilledRandom - components: - - pos: -26.5,7.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18912 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 32.5,45.5 - parent: 82 - type: Transform -- uid: 18913 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 33.5,45.5 - parent: 82 - type: Transform -- uid: 18914 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 31.5,11.5 - parent: 82 - type: Transform -- uid: 18915 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -29.5,9.5 - parent: 82 - type: Transform -- uid: 18916 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -28.5,9.5 - parent: 82 - type: Transform -- uid: 18917 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -27.5,9.5 - parent: 82 - type: Transform -- uid: 18918 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -26.5,9.5 - parent: 82 - type: Transform -- uid: 18919 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -25.5,9.5 - parent: 82 - type: Transform -- uid: 18920 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -32.5,8.5 - parent: 82 - type: Transform -- uid: 18921 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,8.5 - parent: 82 - type: Transform -- uid: 18922 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -34.5,8.5 - parent: 82 - type: Transform -- uid: 18923 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -35.5,8.5 - parent: 82 - type: Transform -- uid: 18924 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -36.5,8.5 - parent: 82 - type: Transform -- uid: 18925 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -37.5,8.5 - parent: 82 - type: Transform -- uid: 18926 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -38.5,8.5 - parent: 82 - type: Transform -- uid: 18927 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -39.5,8.5 - parent: 82 - type: Transform -- uid: 18928 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -47.5,5.5 - parent: 82 - type: Transform -- uid: 18929 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -47.5,6.5 - parent: 82 - type: Transform -- uid: 18930 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -47.5,7.5 - parent: 82 - type: Transform -- uid: 18931 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -46.5,7.5 - parent: 82 - type: Transform -- uid: 18932 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -44.5,7.5 - parent: 82 - type: Transform -- uid: 18933 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -43.5,7.5 - parent: 82 - type: Transform -- uid: 18934 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: -43.5,6.5 - parent: 82 - type: Transform -- uid: 18935 - type: Table - components: - - pos: -44.5,6.5 - parent: 82 - type: Transform -- uid: 18936 - type: DrinkVodkaBottleFull - components: - - pos: -44.649815,6.926689 - parent: 82 - type: Transform -- uid: 18937 - type: DrinkVodkaBottleFull - components: - - pos: -44.40537,6.7711334 - parent: 82 - type: Transform -- uid: 18938 - type: TableCarpet - components: - - pos: -44.5,4.5 - parent: 82 - type: Transform -- uid: 18939 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -45.5,4.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 18940 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -43.5,4.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 18941 - type: ClothingHeadHatUshanka - components: - - pos: -44.738705,4.8155775 - parent: 82 - type: Transform -- uid: 18942 - type: ClothingHeadHatUshanka - components: - - pos: -44.227592,4.660022 - parent: 82 - type: Transform -- uid: 18943 - type: PlushieRouny - components: - - pos: -45.516483,4.660022 - parent: 82 - type: Transform -- uid: 18944 - type: ClosetMaintenanceFilledRandom - components: - - pos: -46.5,6.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18945 - type: Chair - components: - - pos: -49.5,4.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 18946 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -49.5,2.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 18947 - type: SpaceCash10 - components: - - pos: -44.627594,4.504467 - parent: 82 - type: Transform -- uid: 18948 - type: Barricade - components: - - pos: -47.5,4.5 - parent: 82 - type: Transform -- uid: 18949 - type: Table - components: - - pos: -49.5,3.5 - parent: 82 - type: Transform -- uid: 18950 - type: MaintenanceFluffSpawner - components: - - pos: -49.5,3.5 - parent: 82 - type: Transform -- uid: 18951 - type: Rack - components: - - pos: -48.5,18.5 - parent: 82 - type: Transform -- uid: 18952 - type: MaintenanceToolSpawner - components: - - pos: -48.5,18.5 - parent: 82 - type: Transform -- uid: 18953 - type: ClosetEmergencyFilledRandom - components: - - pos: -50.5,-4.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18954 - type: ClosetFireFilled - components: - - pos: -51.5,-4.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18955 - type: ClosetEmergencyFilledRandom - components: - - pos: 20.5,-0.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18956 - type: ClosetFireFilled - components: - - pos: 20.5,0.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18957 - type: WardrobeFormal - components: - - pos: 23.5,5.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18958 - type: AirlockEngineeringLocked - components: - - pos: 19.5,4.5 - parent: 82 - type: Transform -- uid: 18959 - type: Catwalk - components: - - pos: 22.5,-12.5 - parent: 82 - type: Transform -- uid: 18960 - type: Catwalk - components: - - pos: 22.5,-11.5 - parent: 82 - type: Transform -- uid: 18961 - type: Catwalk - components: - - pos: 23.5,-11.5 - parent: 82 - type: Transform -- uid: 18962 - type: Catwalk - components: - - pos: 24.5,-11.5 - parent: 82 - type: Transform -- uid: 18963 - type: Catwalk - components: - - pos: 25.5,-11.5 - parent: 82 - type: Transform -- uid: 18964 - type: Catwalk - components: - - pos: 26.5,-11.5 - parent: 82 - type: Transform -- uid: 18965 - type: Catwalk - components: - - pos: 27.5,-11.5 - parent: 82 - type: Transform -- uid: 18966 - type: Catwalk - components: - - pos: 28.5,-11.5 - parent: 82 - type: Transform -- uid: 18967 - type: Catwalk - components: - - pos: 29.5,-11.5 - parent: 82 - type: Transform -- uid: 18968 - type: Catwalk - components: - - pos: 30.5,-11.5 - parent: 82 - type: Transform -- uid: 18969 - type: Catwalk - components: - - pos: 31.5,-10.5 - parent: 82 - type: Transform -- uid: 18970 - type: Catwalk - components: - - pos: 31.5,-9.5 - parent: 82 - type: Transform -- uid: 18971 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 32.5,11.5 - parent: 82 - type: Transform -- uid: 18972 - type: Catwalk - components: - - pos: 31.5,-7.5 - parent: 82 - type: Transform -- uid: 18973 - type: Catwalk - components: - - pos: 31.5,-6.5 - parent: 82 - type: Transform -- uid: 18974 - type: Catwalk - components: - - pos: 31.5,-5.5 - parent: 82 - type: Transform -- uid: 18975 - type: Catwalk - components: - - pos: 31.5,-4.5 - parent: 82 - type: Transform -- uid: 18976 - type: AirCanister - components: - - pos: 26.5,-14.5 - parent: 82 - type: Transform -- uid: 18977 - type: Rack - components: - - pos: 26.5,-13.5 - parent: 82 - type: Transform -- uid: 18978 - type: MaintenanceToolSpawner - components: - - pos: 26.5,-13.5 - parent: 82 - type: Transform -- uid: 18979 - type: Catwalk - components: - - pos: 45.5,39.5 - parent: 82 - type: Transform -- uid: 18980 - type: Catwalk - components: - - pos: 46.5,39.5 - parent: 82 - type: Transform -- uid: 18981 - type: WaterTankFull - components: - - pos: 5.5,37.5 - parent: 82 - type: Transform -- uid: 18982 - type: WeldingFuelTankFull - components: - - pos: 5.5,38.5 - parent: 82 - type: Transform -- uid: 18983 - type: NitrogenCanister - components: - - pos: 46.5,48.5 - parent: 82 - type: Transform -- uid: 18984 - type: OxygenCanister - components: - - pos: 46.5,47.5 - parent: 82 - type: Transform -- uid: 18985 - type: WallSolid - components: - - pos: 46.5,49.5 - parent: 82 - type: Transform -- uid: 18986 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 36.5,4.5 - parent: 82 - type: Transform -- uid: 18987 - type: Catwalk - components: - - pos: 40.5,39.5 - parent: 82 - type: Transform -- uid: 18988 - type: Catwalk - components: - - pos: 41.5,39.5 - parent: 82 - type: Transform -- uid: 18989 - type: Catwalk - components: - - pos: 42.5,39.5 - parent: 82 - type: Transform -- uid: 18990 - type: Catwalk - components: - - pos: 43.5,39.5 - parent: 82 - type: Transform -- uid: 18991 - type: ClosetEmergencyFilledRandom - components: - - pos: 24.5,-13.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18992 - type: ClosetFireFilled - components: - - pos: 23.5,-13.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18993 - type: Catwalk - components: - - pos: 35.5,46.5 - parent: 82 - type: Transform -- uid: 18994 - type: Catwalk - components: - - pos: 36.5,46.5 - parent: 82 - type: Transform -- uid: 18995 - type: Catwalk - components: - - pos: 37.5,46.5 - parent: 82 - type: Transform -- uid: 18996 - type: Catwalk - components: - - pos: 38.5,46.5 - parent: 82 - type: Transform -- uid: 18997 - type: Catwalk - components: - - pos: 47.5,41.5 - parent: 82 - type: Transform -- uid: 18998 - type: Catwalk - components: - - pos: 47.5,42.5 - parent: 82 - type: Transform -- uid: 18999 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 36.5,2.5 - parent: 82 - type: Transform -- uid: 19000 - type: Catwalk - components: - - pos: 47.5,44.5 - parent: 82 - type: Transform -- uid: 19001 - type: Catwalk - components: - - pos: 47.5,45.5 - parent: 82 - type: Transform -- uid: 19002 - type: Catwalk - components: - - pos: 47.5,46.5 - parent: 82 - type: Transform -- uid: 19003 - type: Catwalk - components: - - pos: 46.5,50.5 - parent: 82 - type: Transform -- uid: 19004 - type: Catwalk - components: - - pos: 45.5,50.5 - parent: 82 - type: Transform -- uid: 19005 - type: Catwalk - components: - - pos: 44.5,50.5 - parent: 82 - type: Transform -- uid: 19006 - type: Catwalk - components: - - pos: 43.5,50.5 - parent: 82 - type: Transform -- uid: 19007 - type: Catwalk - components: - - pos: 42.5,50.5 - parent: 82 - type: Transform -- uid: 19008 - type: Catwalk - components: - - pos: 41.5,50.5 - parent: 82 - type: Transform -- uid: 19009 - type: GasPressurePump - components: - - pos: 54.5,-33.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19010 - type: Catwalk - components: - - pos: 47.5,47.5 - parent: 82 - type: Transform -- uid: 19011 - type: Catwalk - components: - - pos: 47.5,48.5 - parent: 82 - type: Transform -- uid: 19012 - type: Table - components: - - pos: 44.5,45.5 - parent: 82 - type: Transform -- uid: 19013 - type: Table - components: - - pos: 43.5,45.5 - parent: 82 - type: Transform -- uid: 19014 - type: KitchenMicrowave - components: - - pos: 44.5,45.5 - parent: 82 - type: Transform -- uid: 19015 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 43.5,41.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 19016 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 44.5,43.5 - parent: 82 - type: Transform -- uid: 19017 - type: CableApcStack1 - components: - - pos: 41.503998,44.54454 - parent: 82 - type: Transform -- uid: 19018 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 44.5,42.5 - parent: 82 - type: Transform -- uid: 19019 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 44.5,41.5 - parent: 82 - type: Transform -- uid: 19020 - type: InflatableWall - components: - - rot: 1.5707963267948966 rad - pos: 41.5,44.5 - parent: 82 - type: Transform -- uid: 19021 - type: GrilleBroken - components: - - pos: 42.5,47.5 - parent: 82 - type: Transform -- uid: 19022 - type: ClothingShoesFlippers - components: - - pos: 44.103996,47.65565 - parent: 82 - type: Transform -- uid: 19023 - type: ClothingHeadHatFez - components: - - pos: 44.43733,48.144543 - parent: 82 - type: Transform -- uid: 19024 - type: MaintenanceWeaponSpawner - components: - - pos: 43.5,47.5 - parent: 82 - type: Transform -- uid: 19025 - type: CableApcExtension - components: - - pos: 40.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19026 - type: CableApcExtension - components: - - pos: 39.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19027 - type: CableApcExtension - components: - - pos: 38.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19028 - type: CableApcExtension - components: - - pos: 37.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19029 - type: CableApcExtension - components: - - pos: 36.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19030 - type: CableApcExtension - components: - - pos: 36.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19031 - type: CableApcExtension - components: - - pos: 36.5,55.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19032 - type: CableApcExtension - components: - - pos: 36.5,56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19033 - type: CableApcExtension - components: - - pos: 40.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19034 - type: CableApcExtension - components: - - pos: 40.5,55.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19035 - type: CableApcExtension - components: - - pos: 40.5,56.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19036 - type: CableApcStack1 - components: - - pos: 41.548183,53.475468 - parent: 82 - type: Transform -- uid: 19037 - type: CableApcStack1 - components: - - pos: 42.481518,53.497692 - parent: 82 - type: Transform -- uid: 19038 - type: Girder - components: - - pos: 40.5,52.5 - parent: 82 - type: Transform -- uid: 19039 - type: InflatableWall - components: - - pos: 37.5,53.5 - parent: 82 - type: Transform -- uid: 19040 - type: ClothingShoeSlippersDuck - components: - - pos: 37.459297,56.564358 - parent: 82 - type: Transform -- uid: 19041 - type: ClothingHeadHatFedoraBrown - components: - - pos: 37.303738,57.497692 - parent: 82 - type: Transform -- uid: 19042 - type: ClothingOuterCoatInspector - components: - - pos: 37.370407,57.16436 - parent: 82 - type: Transform -- uid: 19043 - type: ClosetBase - components: - - pos: 35.5,57.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19044 - type: ContainerContainer -- uid: 19044 - type: SheetPlasma - components: - - flags: InContainer - type: MetaData - - parent: 19043 - type: Transform - - canCollide: False - type: Physics -- uid: 19045 - type: Lamp - components: - - pos: 35.462173,56.7035 - parent: 82 - type: Transform -- uid: 19046 - type: Lamp - components: - - pos: 43.51637,45.84372 - parent: 82 - type: Transform -- uid: 19047 - type: Rack - components: - - pos: -17.5,-30.5 - parent: 82 - type: Transform -- uid: 19048 - type: NitrogenTankFilled - components: - - pos: -17.430128,-30.483757 - parent: 82 - type: Transform -- uid: 19049 - type: NitrousOxideTankFilled - components: - - pos: -17.235683,-30.580982 - parent: 82 - type: Transform -- uid: 19050 - type: OxygenTankFilled - components: - - pos: -17.610683,-30.386536 - parent: 82 - type: Transform -- uid: 19051 - type: ToolboxEmergencyFilled - components: - - pos: -16.485683,-30.317093 - parent: 82 - type: Transform -- uid: 19052 - type: Dresser - components: - - pos: 51.5,-49.5 - parent: 82 - type: Transform -- uid: 19053 - type: RandomFoodMeal - components: - - pos: 44.5,43.5 - parent: 82 - type: Transform -- uid: 19054 - type: CableHV - components: - - pos: 20.5,50.5 - parent: 82 - type: Transform -- uid: 19055 - type: CableHV - components: - - pos: 20.5,49.5 - parent: 82 - type: Transform -- uid: 19056 - type: CableHV - components: - - pos: 20.5,48.5 - parent: 82 - type: Transform -- uid: 19057 - type: CableHV - components: - - pos: 20.5,47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19058 - type: CableHV - components: - - pos: 20.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19059 - type: CableHV - components: - - pos: 20.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19060 - type: CableHV - components: - - pos: 19.5,45.5 - parent: 82 - type: Transform -- uid: 19061 - type: CableHV - components: - - pos: 18.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19062 - type: CableHV - components: - - pos: 17.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19063 - type: CableHV - components: - - pos: 16.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19064 - type: CableHV - components: - - pos: 15.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19065 - type: CableHV - components: - - pos: 14.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19066 - type: CableHV - components: - - pos: 13.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19067 - type: CableHV - components: - - pos: 12.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19068 - type: CableHV - components: - - pos: 11.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19069 - type: CableHV - components: - - pos: 11.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19070 - type: CableHV - components: - - pos: 10.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19071 - type: CableHV - components: - - pos: 9.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19072 - type: CableHV - components: - - pos: 8.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19073 - type: CableHV - components: - - pos: 7.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19074 - type: CableHV - components: - - pos: -5.5,32.5 - parent: 82 - type: Transform -- uid: 19075 - type: CableHV - components: - - pos: -5.5,33.5 - parent: 82 - type: Transform -- uid: 19076 - type: CableHV - components: - - pos: -5.5,34.5 - parent: 82 - type: Transform -- uid: 19077 - type: CableHV - components: - - pos: -5.5,35.5 - parent: 82 - type: Transform -- uid: 19078 - type: CableHV - components: - - pos: -5.5,36.5 - parent: 82 - type: Transform -- uid: 19079 - type: CableHV - components: - - pos: -5.5,37.5 - parent: 82 - type: Transform -- uid: 19080 - type: CableHV - components: - - pos: -5.5,38.5 - parent: 82 - type: Transform -- uid: 19081 - type: CableHV - components: - - pos: -5.5,39.5 - parent: 82 - type: Transform -- uid: 19082 - type: CableHV - components: - - pos: -5.5,40.5 - parent: 82 - type: Transform -- uid: 19083 - type: CableHV - components: - - pos: -5.5,41.5 - parent: 82 - type: Transform -- uid: 19084 - type: CableHV - components: - - pos: -5.5,42.5 - parent: 82 - type: Transform -- uid: 19085 - type: CableHV - components: - - pos: -5.5,43.5 - parent: 82 - type: Transform -- uid: 19086 - type: CableHV - components: - - pos: -5.5,44.5 - parent: 82 - type: Transform -- uid: 19087 - type: CableHV - components: - - pos: -5.5,45.5 - parent: 82 - type: Transform -- uid: 19088 - type: CableHV - components: - - pos: -5.5,46.5 - parent: 82 - type: Transform -- uid: 19089 - type: CableHV - components: - - pos: -5.5,47.5 - parent: 82 - type: Transform -- uid: 19090 - type: CableHV - components: - - pos: -5.5,48.5 - parent: 82 - type: Transform -- uid: 19091 - type: CableHV - components: - - pos: -5.5,49.5 - parent: 82 - type: Transform -- uid: 19092 - type: CableHV - components: - - pos: -5.5,50.5 - parent: 82 - type: Transform -- uid: 19093 - type: CableHV - components: - - pos: -5.5,51.5 - parent: 82 - type: Transform -- uid: 19094 - type: CableHV - components: - - pos: -4.5,51.5 - parent: 82 - type: Transform -- uid: 19095 - type: CableHV - components: - - pos: -3.5,51.5 - parent: 82 - type: Transform -- uid: 19096 - type: CableHV - components: - - pos: -2.5,51.5 - parent: 82 - type: Transform -- uid: 19097 - type: CableHV - components: - - pos: -1.5,51.5 - parent: 82 - type: Transform -- uid: 19098 - type: CableHV - components: - - pos: -0.5,51.5 - parent: 82 - type: Transform -- uid: 19099 - type: CableHV - components: - - pos: 0.5,51.5 - parent: 82 - type: Transform -- uid: 19100 - type: CableHV - components: - - pos: 1.5,51.5 - parent: 82 - type: Transform -- uid: 19101 - type: CableHV - components: - - pos: 2.5,51.5 - parent: 82 - type: Transform -- uid: 19102 - type: CableHV - components: - - pos: 3.5,51.5 - parent: 82 - type: Transform -- uid: 19103 - type: CableHV - components: - - pos: 4.5,51.5 - parent: 82 - type: Transform -- uid: 19104 - type: CableHV - components: - - pos: 5.5,51.5 - parent: 82 - type: Transform -- uid: 19105 - type: CableHV - components: - - pos: 6.5,51.5 - parent: 82 - type: Transform -- uid: 19106 - type: CableHV - components: - - pos: 7.5,51.5 - parent: 82 - type: Transform -- uid: 19107 - type: CableHV - components: - - pos: 8.5,51.5 - parent: 82 - type: Transform -- uid: 19108 - type: CableHV - components: - - pos: 9.5,51.5 - parent: 82 - type: Transform -- uid: 19109 - type: CableHV - components: - - pos: 10.5,51.5 - parent: 82 - type: Transform -- uid: 19118 - type: ClothingMaskSterile - components: - - pos: 51.434788,-11.631462 - parent: 82 - type: Transform -- uid: 19121 - type: BoxFolderBlue - components: - - rot: -1.5707963267948966 rad - pos: 29.555525,-21.687809 - parent: 82 - type: Transform -- uid: 19122 - type: BoxFolderWhite - components: - - rot: -1.5707963267948966 rad - pos: 29.430525,-22.201698 - parent: 82 - type: Transform -- uid: 19123 - type: BoxFolderRed - components: - - rot: -1.5707963267948966 rad - pos: 29.583303,-17.67392 - parent: 82 - type: Transform -- uid: 19124 - type: BoxFolderGrey - components: - - rot: -1.5707963267948966 rad - pos: 29.472193,-17.854477 - parent: 82 - type: Transform -- uid: 19125 - type: BoxFolderBlack - components: - - rot: -1.5707963267948966 rad - pos: 29.402748,-18.42392 - parent: 82 - type: Transform -- uid: 19126 - type: ClothingEyesGlasses - components: - - pos: 32.47219,-20.53503 - parent: 82 - type: Transform -- uid: 19127 - type: FigureSpawner - components: - - pos: 32.5,-19.5 - parent: 82 - type: Transform -- uid: 19128 - type: Rack - components: - - pos: -10.5,26.5 - parent: 82 - type: Transform -- uid: 19129 - type: ClothingOuterPonchoClassic - components: - - pos: -10.559023,26.471874 - parent: 82 - type: Transform -- uid: 19130 - type: ClothingHeadHatSombrero - components: - - pos: -10.600691,26.638542 - parent: 82 - type: Transform -- uid: 19131 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19132 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19133 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19134 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19135 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19136 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19137 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19138 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19139 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19140 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19141 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19142 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19143 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19144 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19145 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19146 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19147 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19148 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19149 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19150 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19151 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19152 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19153 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19154 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19155 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 61.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19156 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19157 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19158 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19159 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19160 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 66.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19161 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 67.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19162 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 68.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19163 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19164 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 59.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19165 - type: GasPipeTJunction - components: - - pos: 46.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19166 - type: GasPipeFourway - components: - - pos: 41.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19167 - type: GasVentScrubber - components: - - pos: 41.5,3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19168 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 46.5,1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19169 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19170 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19171 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19172 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19173 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19174 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19175 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19176 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19177 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19178 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19179 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19180 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 56.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19181 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19182 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19183 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19184 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19185 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19186 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19187 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 64.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19188 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19189 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 66.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19190 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19191 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19192 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 69.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19193 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 70.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19194 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 70.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19195 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 71.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19196 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 71.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19197 - type: GasPipeTJunction - components: - - pos: 72.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19198 - type: GasPipeTJunction - components: - - pos: 73.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19199 - type: GasPipeTJunction - components: - - pos: 74.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19200 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 77.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19201 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 75.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19202 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 76.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19203 - type: GasPipeTJunction - components: - - pos: 44.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19204 - type: GasPipeStraight - components: - - pos: 44.5,3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19205 - type: GasPipeStraight - components: - - pos: 44.5,2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19206 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 44.5,1.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19207 - type: GasPipeStraight - components: - - pos: 39.5,3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19208 - type: GasPipeStraight - components: - - pos: 39.5,2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19209 - type: GasPipeStraight - components: - - pos: 39.5,1.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19210 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 39.5,0.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19211 - type: GasPipeStraight - components: - - pos: 39.5,-0.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19212 - type: GasPipeStraight - components: - - pos: 39.5,-1.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19213 - type: GasPipeStraight - components: - - pos: 39.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19214 - type: GasPipeStraight - components: - - pos: 39.5,-3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19215 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 39.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19216 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 38.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19217 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 41.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19218 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 42.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19219 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19220 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,0.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19221 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19222 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19223 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19224 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19225 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19226 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-0.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19227 - type: GasVentScrubber - components: - - pos: 42.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19228 - type: GasVentPump - components: - - pos: 38.5,-3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19229 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 40.5,0.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19230 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19231 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19232 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19233 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19234 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19235 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19236 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19237 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19238 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19239 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19240 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19241 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19242 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19243 - type: GasPipeTJunction - components: - - pos: 54.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19244 - type: GasPipeTJunction - components: - - pos: 55.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19245 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 36.5,3.5 - parent: 82 - type: Transform -- uid: 19246 - type: SignTelecomms - components: - - rot: 3.141592653589793 rad - pos: -24.5,19.5 - parent: 82 - type: Transform -- uid: 19247 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19248 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19249 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 50.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19250 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 53.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19251 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19252 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19253 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19254 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19255 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19256 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19257 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19258 - type: GasPipeTJunction - components: - - pos: 45.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19259 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19260 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19261 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19262 - type: GasPipeStraight - components: - - pos: 45.5,-9.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19263 - type: GasPipeStraight - components: - - pos: 45.5,-10.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19264 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 45.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19265 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19266 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19267 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19268 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-6.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19269 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-7.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19270 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19271 - type: GasPipeStraight - components: - - pos: 36.5,-5.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19272 - type: GasPipeStraight - components: - - pos: 36.5,-6.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19273 - type: GasPipeStraight - components: - - pos: 36.5,-7.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19274 - type: GasPipeStraight - components: - - pos: 36.5,-8.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19275 - type: GasPipeStraight - components: - - pos: 36.5,-9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19276 - type: GasPipeStraight - components: - - pos: 36.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19277 - type: GasPipeStraight - components: - - pos: 36.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19278 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 36.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19279 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19280 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,-3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19281 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19282 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19283 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19284 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19285 - type: GasVentScrubber - components: - - pos: 53.5,-1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19286 - type: GasVentPump - components: - - pos: 50.5,-1.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19287 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 55.5,-5.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19288 - type: ReinforcedWindow - components: - - pos: -34.5,18.5 - parent: 82 - type: Transform -- uid: 19289 - type: GasVentScrubber - components: - - pos: 61.5,-1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19290 - type: GasVentPump - components: - - pos: 59.5,-1.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19291 - type: GasPipeStraight - components: - - pos: 59.5,-2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19292 - type: GasPipeStraight - components: - - pos: 61.5,-2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19293 - type: GasPipeStraight - components: - - pos: 59.5,-3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19294 - type: GasPipeStraight - components: - - pos: 61.5,-3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19295 - type: GasPipeStraight - components: - - pos: 61.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19296 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19297 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19298 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19299 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19300 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19301 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19302 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19303 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-5.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19304 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-6.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19305 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-7.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19306 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-8.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19307 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19308 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19309 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19310 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19311 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-13.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19312 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-14.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19313 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-16.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19314 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-17.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19315 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-18.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19316 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-19.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19317 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-20.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19318 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-21.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19319 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-22.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19320 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19321 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19322 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-25.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19323 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19324 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19325 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19326 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-29.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19327 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19328 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19329 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-32.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19330 - type: ClosetMaintenanceFilledRandom - components: - - pos: 52.5,8.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19331 - type: NitrogenCanister - components: - - pos: 44.5,10.5 - parent: 82 - type: Transform -- uid: 19332 - type: ClosetFireFilled - components: - - pos: 53.5,7.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19333 - type: ClosetEmergencyFilledRandom - components: - - pos: 53.5,6.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19334 - type: BedsheetSpawner - components: - - pos: -12.5,-49.5 - parent: 82 - type: Transform -- uid: 19335 - type: OxygenCanister - components: - - pos: 45.5,10.5 - parent: 82 - type: Transform -- uid: 19336 - type: Rack - components: - - pos: 46.5,10.5 - parent: 82 - type: Transform -- uid: 19337 - type: ClosetToolFilled - components: - - pos: 47.5,10.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19338 - type: NitrogenTankFilled - components: - - pos: 46.31572,10.657564 - parent: 82 - type: Transform -- uid: 19339 - type: ClothingMaskGas - components: - - pos: 46.67683,10.5047865 - parent: 82 - type: Transform -- uid: 19340 - type: Table - components: - - pos: 41.5,7.5 - parent: 82 - type: Transform -- uid: 19341 - type: MaintenanceFluffSpawner - components: - - rot: 1.5707963267948966 rad - pos: 41.5,7.5 - parent: 82 - type: Transform -- uid: 19342 - type: Cigarette - components: - - pos: 41.342377,7.87599 - parent: 82 - type: Transform -- uid: 19343 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: 40.5,7.5 - parent: 82 - type: Transform -- uid: 19344 - type: CableApcExtension - components: - - pos: 9.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19345 - type: CableApcExtension - components: - - pos: 10.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19346 - type: CableApcExtension - components: - - pos: 10.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19347 - type: CableApcExtension - components: - - pos: 10.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19348 - type: CableApcExtension - components: - - pos: 10.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19349 - type: CableApcExtension - components: - - pos: 10.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19350 - type: CableApcExtension - components: - - pos: 10.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19351 - type: CableApcExtension - components: - - pos: 10.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19352 - type: CableApcExtension - components: - - pos: 8.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19353 - type: CableApcExtension - components: - - pos: 7.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19354 - type: CableApcExtension - components: - - pos: 7.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19355 - type: CableApcExtension - components: - - pos: 11.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19356 - type: CableApcExtension - components: - - pos: 12.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19357 - type: CableApcExtension - components: - - pos: 13.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19358 - type: CableApcExtension - components: - - pos: 14.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19359 - type: CableApcExtension - components: - - pos: 15.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19360 - type: CableApcExtension - components: - - pos: 16.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19361 - type: CableApcExtension - components: - - pos: 17.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19362 - type: CableApcExtension - components: - - pos: 18.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19363 - type: CableApcExtension - components: - - pos: 19.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19364 - type: CableApcExtension - components: - - pos: 20.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19365 - type: CableApcExtension - components: - - pos: 21.5,7.5 - parent: 82 - type: Transform -- uid: 19366 - type: CableApcExtension - components: - - pos: 22.5,7.5 - parent: 82 - type: Transform -- uid: 19367 - type: CableApcExtension - components: - - pos: 22.5,8.5 - parent: 82 - type: Transform -- uid: 19368 - type: CableApcExtension - components: - - pos: 22.5,9.5 - parent: 82 - type: Transform -- uid: 19369 - type: CableApcExtension - components: - - pos: 22.5,10.5 - parent: 82 - type: Transform -- uid: 19370 - type: CableApcExtension - components: - - pos: 22.5,11.5 - parent: 82 - type: Transform -- uid: 19371 - type: CableApcExtension - components: - - pos: 24.5,8.5 - parent: 82 - type: Transform -- uid: 19372 - type: CableApcExtension - components: - - pos: 23.5,8.5 - parent: 82 - type: Transform -- uid: 19373 - type: CableApcExtension - components: - - pos: 25.5,8.5 - parent: 82 - type: Transform -- uid: 19374 - type: CableApcExtension - components: - - pos: 25.5,7.5 - parent: 82 - type: Transform -- uid: 19375 - type: CableApcExtension - components: - - pos: 26.5,7.5 - parent: 82 - type: Transform -- uid: 19376 - type: CableApcExtension - components: - - pos: 27.5,7.5 - parent: 82 - type: Transform -- uid: 19377 - type: CableApcExtension - components: - - pos: -22.5,53.5 - parent: 82 - type: Transform -- uid: 19378 - type: CableApcExtension - components: - - pos: -21.5,53.5 - parent: 82 - type: Transform -- uid: 19379 - type: CableApcExtension - components: - - pos: -20.5,53.5 - parent: 82 - type: Transform -- uid: 19380 - type: CableApcExtension - components: - - pos: -20.5,54.5 - parent: 82 - type: Transform -- uid: 19381 - type: CableApcExtension - components: - - pos: -20.5,55.5 - parent: 82 - type: Transform -- uid: 19382 - type: CableApcExtension - components: - - pos: -20.5,56.5 - parent: 82 - type: Transform -- uid: 19383 - type: CableApcExtension - components: - - pos: -20.5,57.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19384 - type: CableApcExtension - components: - - pos: -20.5,58.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19385 - type: CableApcExtension - components: - - pos: -20.5,59.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19386 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 42.5,16.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19387 - type: ToolboxEmergencyFilled - components: - - pos: 40.395947,18.517696 - parent: 82 - type: Transform -- uid: 19388 - type: KitchenMicrowave - components: - - pos: 44.5,17.5 - parent: 82 - type: Transform -- uid: 19389 - type: DonkpocketBoxSpawner - components: - - pos: 44.5,16.5 - parent: 82 - type: Transform -- uid: 19390 - type: Table - components: - - pos: 40.5,29.5 - parent: 82 - type: Transform -- uid: 19391 - type: ClothingBeltUtilityFilled - components: - - pos: 47.152157,26.620766 - parent: 82 - type: Transform -- uid: 19392 - type: ClothingHeadHatCargosoftFlipped - components: - - pos: 47.589005,26.603626 - parent: 82 - type: Transform -- uid: 19393 - type: RubberStampApproved - components: - - pos: 40.646282,29.698788 - parent: 82 - type: Transform -- uid: 19394 - type: RubberStampDenied - components: - - pos: 40.42406,29.448788 - parent: 82 - type: Transform -- uid: 19395 - type: BoxFolderYellow - components: - - rot: -1.5707963267948966 rad - pos: 40.46573,29.54601 - parent: 82 - type: Transform -- uid: 19396 - type: WindoorSecureCargoLocked - components: - - rot: 1.5707963267948966 rad - pos: 38.5,29.5 - parent: 82 - type: Transform -- uid: 19397 - type: WindoorSecureCargoLocked - components: - - rot: 1.5707963267948966 rad - pos: 38.5,30.5 - parent: 82 - type: Transform -- uid: 19398 - type: ClosetFireFilled - components: - - pos: 42.5,30.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19399 - type: ShuttersNormal - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-34.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -354926.34 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25230 - type: SignalReceiver -- uid: 19400 - type: ClothingOuterWinterCargo - components: - - pos: 38.791737,21.674385 - parent: 82 - type: Transform -- uid: 19401 - type: AppraisalTool - components: - - pos: 38.31257,21.757717 - parent: 82 - type: Transform -- uid: 19402 - type: AppraisalTool - components: - - pos: 38.37507,21.549385 - parent: 82 - type: Transform -- uid: 19403 - type: SheetSteel - components: - - pos: 42.528893,20.47253 - parent: 82 - type: Transform -- uid: 19404 - type: SheetPlastic - components: - - pos: 42.497353,22.481289 - parent: 82 - type: Transform -- uid: 19405 - type: SheetGlass - components: - - pos: 43.497353,20.550732 - parent: 82 - type: Transform -- uid: 19406 - type: HandheldGPSBasic - components: - - pos: 47.38067,26.811962 - parent: 82 - type: Transform -- uid: 19407 - type: CigPackBlue - components: - - pos: 47.756485,26.731876 - parent: 82 - type: Transform -- uid: 19408 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 47.5,29.5 - parent: 82 - type: Transform -- uid: 19409 - type: HospitalCurtainsOpen - components: - - pos: -41.5,-37.5 - parent: 82 - type: Transform -- uid: 19410 - type: BedsheetCMO - components: - - pos: -41.5,-37.5 - parent: 82 - type: Transform -- uid: 19411 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-34.5 - parent: 82 - type: Transform -- uid: 19412 - type: CableMV - components: - - pos: -16.5,76.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19413 - type: CableApcExtension - components: - - pos: 23.5,-35.5 - parent: 82 - type: Transform -- uid: 19414 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -53.5,-15.5 - parent: 82 - type: Transform -- uid: 19415 - type: Emitter - components: - - pos: -29.5,79.5 - parent: 82 - type: Transform -- uid: 19416 - type: Catwalk - components: - - pos: -16.5,-0.5 - parent: 82 - type: Transform -- uid: 19417 - type: Catwalk - components: - - pos: -16.5,0.5 - parent: 82 - type: Transform -- uid: 19418 - type: Catwalk - components: - - pos: -16.5,1.5 - parent: 82 - type: Transform -- uid: 19419 - type: Catwalk - components: - - pos: -16.5,2.5 - parent: 82 - type: Transform -- uid: 19420 - type: Catwalk - components: - - pos: -16.5,3.5 - parent: 82 - type: Transform -- uid: 19421 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-34.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19422 - type: Catwalk - components: - - pos: -15.5,4.5 - parent: 82 - type: Transform -- uid: 19423 - type: Catwalk - components: - - pos: -14.5,4.5 - parent: 82 - type: Transform -- uid: 19424 - type: Catwalk - components: - - pos: -13.5,4.5 - parent: 82 - type: Transform -- uid: 19425 - type: Catwalk - components: - - pos: -12.5,4.5 - parent: 82 - type: Transform -- uid: 19426 - type: Catwalk - components: - - pos: -11.5,4.5 - parent: 82 - type: Transform -- uid: 19427 - type: Catwalk - components: - - pos: -10.5,6.5 - parent: 82 - type: Transform -- uid: 19428 - type: Catwalk - components: - - pos: -10.5,7.5 - parent: 82 - type: Transform -- uid: 19429 - type: Catwalk - components: - - pos: -10.5,8.5 - parent: 82 - type: Transform -- uid: 19430 - type: Catwalk - components: - - pos: -10.5,9.5 - parent: 82 - type: Transform -- uid: 19431 - type: Catwalk - components: - - pos: -10.5,10.5 - parent: 82 - type: Transform -- uid: 19432 - type: Catwalk - components: - - pos: -10.5,11.5 - parent: 82 - type: Transform -- uid: 19433 - type: Catwalk - components: - - pos: -10.5,12.5 - parent: 82 - type: Transform -- uid: 19434 - type: Catwalk - components: - - pos: -9.5,12.5 - parent: 82 - type: Transform -- uid: 19435 - type: Catwalk - components: - - pos: -8.5,12.5 - parent: 82 - type: Transform -- uid: 19436 - type: Catwalk - components: - - pos: -8.5,13.5 - parent: 82 - type: Transform -- uid: 19437 - type: Catwalk - components: - - pos: -8.5,14.5 - parent: 82 - type: Transform -- uid: 19438 - type: Catwalk - components: - - pos: -8.5,15.5 - parent: 82 - type: Transform -- uid: 19439 - type: Catwalk - components: - - pos: -8.5,16.5 - parent: 82 - type: Transform -- uid: 19440 - type: Catwalk - components: - - pos: -8.5,17.5 - parent: 82 - type: Transform -- uid: 19441 - type: Catwalk - components: - - pos: -8.5,18.5 - parent: 82 - type: Transform -- uid: 19442 - type: Catwalk - components: - - pos: -5.5,20.5 - parent: 82 - type: Transform -- uid: 19443 - type: Catwalk - components: - - pos: -5.5,21.5 - parent: 82 - type: Transform -- uid: 19444 - type: Catwalk - components: - - pos: -5.5,22.5 - parent: 82 - type: Transform -- uid: 19445 - type: Catwalk - components: - - pos: -5.5,23.5 - parent: 82 - type: Transform -- uid: 19446 - type: Catwalk - components: - - pos: -5.5,24.5 - parent: 82 - type: Transform -- uid: 19447 - type: Catwalk - components: - - pos: -5.5,25.5 - parent: 82 - type: Transform -- uid: 19448 - type: Catwalk - components: - - pos: -5.5,26.5 - parent: 82 - type: Transform -- uid: 19449 - type: Catwalk - components: - - pos: -5.5,27.5 - parent: 82 - type: Transform -- uid: 19450 - type: ToiletEmpty - components: - - pos: 43.5,57.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 19451 - type: Rack - components: - - pos: 6.5,46.5 - parent: 82 - type: Transform -- uid: 19452 - type: MaintenanceFluffSpawner - components: - - pos: 6.5,46.5 - parent: 82 - type: Transform -- uid: 19453 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-16.5 - parent: 82 - type: Transform -- uid: 19454 - type: CableMV - components: - - pos: -15.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19455 - type: CableApcExtension - components: - - pos: -15.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19456 - type: CableApcExtension - components: - - pos: -16.5,-16.5 - parent: 82 - type: Transform -- uid: 19457 - type: CableApcExtension - components: - - pos: -17.5,-16.5 - parent: 82 - type: Transform -- uid: 19458 - type: CableApcExtension - components: - - pos: -18.5,-16.5 - parent: 82 - type: Transform -- uid: 19459 - type: CableApcExtension - components: - - pos: -19.5,-16.5 - parent: 82 - type: Transform -- uid: 19460 - type: CableApcExtension - components: - - pos: -20.5,-16.5 - parent: 82 - type: Transform -- uid: 19461 - type: CableApcExtension - components: - - pos: -21.5,-16.5 - parent: 82 - type: Transform -- uid: 19462 - type: CableApcExtension - components: - - pos: -21.5,-17.5 - parent: 82 - type: Transform -- uid: 19463 - type: CableApcExtension - components: - - pos: -21.5,-18.5 - parent: 82 - type: Transform -- uid: 19464 - type: CableApcExtension - components: - - pos: -21.5,-19.5 - parent: 82 - type: Transform -- uid: 19465 - type: CableApcExtension - components: - - pos: -21.5,-20.5 - parent: 82 - type: Transform -- uid: 19466 - type: CableApcExtension - components: - - pos: -22.5,-20.5 - parent: 82 - type: Transform -- uid: 19467 - type: CableApcExtension - components: - - pos: -23.5,-20.5 - parent: 82 - type: Transform -- uid: 19468 - type: CableApcExtension - components: - - pos: -24.5,-20.5 - parent: 82 - type: Transform -- uid: 19469 - type: CableApcExtension - components: - - pos: -25.5,-20.5 - parent: 82 - type: Transform -- uid: 19470 - type: CableApcExtension - components: - - pos: -26.5,-20.5 - parent: 82 - type: Transform -- uid: 19471 - type: CableApcExtension - components: - - pos: -26.5,-19.5 - parent: 82 - type: Transform -- uid: 19472 - type: CableApcExtension - components: - - pos: -26.5,-18.5 - parent: 82 - type: Transform -- uid: 19473 - type: CableApcExtension - components: - - pos: -26.5,-17.5 - parent: 82 - type: Transform -- uid: 19474 - type: CableApcExtension - components: - - pos: -26.5,-16.5 - parent: 82 - type: Transform -- uid: 19475 - type: CableApcExtension - components: - - pos: -26.5,-15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19476 - type: CableApcExtension - components: - - pos: -26.5,-14.5 - parent: 82 - type: Transform -- uid: 19477 - type: CableApcExtension - components: - - pos: -26.5,-13.5 - parent: 82 - type: Transform -- uid: 19478 - type: CableApcExtension - components: - - pos: -26.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19479 - type: CableApcExtension - components: - - pos: -26.5,-11.5 - parent: 82 - type: Transform -- uid: 19480 - type: CableApcExtension - components: - - pos: -26.5,-10.5 - parent: 82 - type: Transform -- uid: 19481 - type: CableApcExtension - components: - - pos: -25.5,-10.5 - parent: 82 - type: Transform -- uid: 19482 - type: CableApcExtension - components: - - pos: -25.5,-9.5 - parent: 82 - type: Transform -- uid: 19483 - type: CableApcExtension - components: - - pos: -25.5,-8.5 - parent: 82 - type: Transform -- uid: 19484 - type: CableApcExtension - components: - - pos: -25.5,-7.5 - parent: 82 - type: Transform -- uid: 19485 - type: CableApcExtension - components: - - pos: -25.5,-6.5 - parent: 82 - type: Transform -- uid: 19486 - type: CableApcExtension - components: - - pos: -24.5,-6.5 - parent: 82 - type: Transform -- uid: 19487 - type: CableApcExtension - components: - - pos: -23.5,-6.5 - parent: 82 - type: Transform -- uid: 19488 - type: Catwalk - components: - - pos: -53.5,53.5 - parent: 82 - type: Transform -- uid: 19489 - type: CableApcExtension - components: - - pos: -21.5,-6.5 - parent: 82 - type: Transform -- uid: 19490 - type: CableApcExtension - components: - - pos: -20.5,-6.5 - parent: 82 - type: Transform -- uid: 19491 - type: CableApcExtension - components: - - pos: -19.5,-6.5 - parent: 82 - type: Transform -- uid: 19492 - type: CableApcExtension - components: - - pos: -18.5,-6.5 - parent: 82 - type: Transform -- uid: 19493 - type: CableApcExtension - components: - - pos: -18.5,-7.5 - parent: 82 - type: Transform -- uid: 19494 - type: CableApcExtension - components: - - pos: -18.5,-8.5 - parent: 82 - type: Transform -- uid: 19495 - type: CableApcExtension - components: - - pos: -18.5,-9.5 - parent: 82 - type: Transform -- uid: 19496 - type: CableApcExtension - components: - - pos: -18.5,-10.5 - parent: 82 - type: Transform -- uid: 19497 - type: CableApcExtension - components: - - pos: -19.5,-10.5 - parent: 82 - type: Transform -- uid: 19498 - type: CableApcExtension - components: - - pos: -20.5,-10.5 - parent: 82 - type: Transform -- uid: 19499 - type: CableApcExtension - components: - - pos: -21.5,-10.5 - parent: 82 - type: Transform -- uid: 19500 - type: CableApcExtension - components: - - pos: -22.5,-7.5 - parent: 82 - type: Transform -- uid: 19501 - type: CableApcExtension - components: - - pos: -21.5,-7.5 - parent: 82 - type: Transform -- uid: 19502 - type: CableApcExtension - components: - - pos: -23.5,-7.5 - parent: 82 - type: Transform -- uid: 19503 - type: CableApcExtension - components: - - pos: -22.5,-11.5 - parent: 82 - type: Transform -- uid: 19504 - type: CableApcExtension - components: - - pos: -22.5,-10.5 - parent: 82 - type: Transform -- uid: 19505 - type: CableApcExtension - components: - - pos: -22.5,-12.5 - parent: 82 - type: Transform -- uid: 19506 - type: CableApcExtension - components: - - pos: -21.5,-12.5 - parent: 82 - type: Transform -- uid: 19507 - type: CableApcExtension - components: - - pos: -20.5,-12.5 - parent: 82 - type: Transform -- uid: 19508 - type: CableApcExtension - components: - - pos: -19.5,-12.5 - parent: 82 - type: Transform -- uid: 19509 - type: CableApcExtension - components: - - pos: -21.5,-13.5 - parent: 82 - type: Transform -- uid: 19510 - type: CableApcExtension - components: - - pos: -21.5,-14.5 - parent: 82 - type: Transform -- uid: 19511 - type: CableApcExtension - components: - - pos: -21.5,-15.5 - parent: 82 - type: Transform -- uid: 19512 - type: CableApcExtension - components: - - pos: -18.5,-12.5 - parent: 82 - type: Transform -- uid: 19513 - type: CableApcExtension - components: - - pos: -17.5,-12.5 - parent: 82 - type: Transform -- uid: 19514 - type: CableApcExtension - components: - - pos: -16.5,-12.5 - parent: 82 - type: Transform -- uid: 19515 - type: CableApcExtension - components: - - pos: -16.5,-13.5 - parent: 82 - type: Transform -- uid: 19516 - type: CableApcExtension - components: - - pos: -16.5,-14.5 - parent: 82 - type: Transform -- uid: 19517 - type: CableApcExtension - components: - - pos: -16.5,-15.5 - parent: 82 - type: Transform -- uid: 19518 - type: CableApcExtension - components: - - pos: -16.5,-11.5 - parent: 82 - type: Transform -- uid: 19519 - type: CableApcExtension - components: - - pos: -16.5,-10.5 - parent: 82 - type: Transform -- uid: 19520 - type: CableApcExtension - components: - - pos: -16.5,-9.5 - parent: 82 - type: Transform -- uid: 19521 - type: CableApcExtension - components: - - pos: -16.5,-8.5 - parent: 82 - type: Transform -- uid: 19522 - type: CableApcExtension - components: - - pos: -16.5,-7.5 - parent: 82 - type: Transform -- uid: 19523 - type: CableApcExtension - components: - - pos: -20.5,-20.5 - parent: 82 - type: Transform -- uid: 19524 - type: CableApcExtension - components: - - pos: -19.5,-20.5 - parent: 82 - type: Transform -- uid: 19525 - type: CableApcExtension - components: - - pos: -18.5,-20.5 - parent: 82 - type: Transform -- uid: 19526 - type: CableApcExtension - components: - - pos: -17.5,-20.5 - parent: 82 - type: Transform -- uid: 19527 - type: CableApcExtension - components: - - pos: -16.5,-20.5 - parent: 82 - type: Transform -- uid: 19528 - type: CableApcExtension - components: - - pos: -16.5,-19.5 - parent: 82 - type: Transform -- uid: 19529 - type: CableApcExtension - components: - - pos: -15.5,-19.5 - parent: 82 - type: Transform -- uid: 19530 - type: CableApcExtension - components: - - pos: -14.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19531 - type: CableApcExtension - components: - - pos: -14.5,-15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19532 - type: CableApcExtension - components: - - pos: -14.5,-14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19533 - type: CableApcExtension - components: - - pos: -14.5,-13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19534 - type: CableApcExtension - components: - - pos: -14.5,-17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19535 - type: CableApcExtension - components: - - pos: -14.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19536 - type: CableApcExtension - components: - - pos: -14.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19537 - type: CableApcExtension - components: - - pos: -13.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19538 - type: CableApcExtension - components: - - pos: -12.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19539 - type: CableApcExtension - components: - - pos: -11.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19540 - type: CableApcExtension - components: - - pos: -10.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19541 - type: CableApcExtension - components: - - pos: -13.5,-17.5 - parent: 82 - type: Transform -- uid: 19542 - type: CableApcExtension - components: - - pos: -12.5,-17.5 - parent: 82 - type: Transform -- uid: 19543 - type: CableApcExtension - components: - - pos: -11.5,-17.5 - parent: 82 - type: Transform -- uid: 19544 - type: CableApcExtension - components: - - pos: -10.5,-17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19545 - type: CableApcExtension - components: - - pos: -10.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19546 - type: CableApcExtension - components: - - pos: -9.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19547 - type: CableApcExtension - components: - - pos: -8.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19548 - type: CableApcExtension - components: - - pos: -8.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19549 - type: CableApcExtension - components: - - pos: -7.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19550 - type: CableApcExtension - components: - - pos: -6.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19551 - type: CableApcExtension - components: - - pos: -5.5,-16.5 - parent: 82 - type: Transform -- uid: 19552 - type: CableApcExtension - components: - - pos: -5.5,-15.5 - parent: 82 - type: Transform -- uid: 19553 - type: CableApcExtension - components: - - pos: -5.5,-14.5 - parent: 82 - type: Transform -- uid: 19554 - type: CableApcExtension - components: - - pos: -5.5,-13.5 - parent: 82 - type: Transform -- uid: 19555 - type: CableApcExtension - components: - - pos: -5.5,-12.5 - parent: 82 - type: Transform -- uid: 19556 - type: CableApcExtension - components: - - pos: -5.5,-11.5 - parent: 82 - type: Transform -- uid: 19557 - type: CableApcExtension - components: - - pos: -5.5,-10.5 - parent: 82 - type: Transform -- uid: 19558 - type: CableApcExtension - components: - - pos: -5.5,-9.5 - parent: 82 - type: Transform -- uid: 19559 - type: CableApcExtension - components: - - pos: -5.5,-8.5 - parent: 82 - type: Transform -- uid: 19560 - type: CableApcExtension - components: - - pos: -5.5,-7.5 - parent: 82 - type: Transform -- uid: 19561 - type: CableApcExtension - components: - - pos: -4.5,-7.5 - parent: 82 - type: Transform -- uid: 19562 - type: CableApcExtension - components: - - pos: -5.5,-17.5 - parent: 82 - type: Transform -- uid: 19563 - type: CableApcExtension - components: - - pos: -5.5,-18.5 - parent: 82 - type: Transform -- uid: 19564 - type: CableApcExtension - components: - - pos: -5.5,-19.5 - parent: 82 - type: Transform -- uid: 19565 - type: CableApcExtension - components: - - pos: -5.5,-20.5 - parent: 82 - type: Transform -- uid: 19566 - type: CableApcExtension - components: - - pos: -5.5,-21.5 - parent: 82 - type: Transform -- uid: 19567 - type: CableApcExtension - components: - - pos: -5.5,-22.5 - parent: 82 - type: Transform -- uid: 19568 - type: CableApcExtension - components: - - pos: -4.5,-22.5 - parent: 82 - type: Transform -- uid: 19569 - type: CableApcExtension - components: - - pos: -3.5,-22.5 - parent: 82 - type: Transform -- uid: 19570 - type: CableApcExtension - components: - - pos: -3.5,-21.5 - parent: 82 - type: Transform -- uid: 19571 - type: CableApcExtension - components: - - pos: -3.5,-20.5 - parent: 82 - type: Transform -- uid: 19572 - type: CableApcExtension - components: - - pos: -3.5,-19.5 - parent: 82 - type: Transform -- uid: 19573 - type: CableApcExtension - components: - - pos: -3.5,-18.5 - parent: 82 - type: Transform -- uid: 19574 - type: CableApcExtension - components: - - pos: -3.5,-17.5 - parent: 82 - type: Transform -- uid: 19575 - type: CableApcExtension - components: - - pos: -3.5,-16.5 - parent: 82 - type: Transform -- uid: 19576 - type: CableApcExtension - components: - - pos: -3.5,-15.5 - parent: 82 - type: Transform -- uid: 19577 - type: CableApcExtension - components: - - pos: -3.5,-14.5 - parent: 82 - type: Transform -- uid: 19578 - type: CableApcExtension - components: - - pos: -3.5,-13.5 - parent: 82 - type: Transform -- uid: 19579 - type: CableApcExtension - components: - - pos: -3.5,-12.5 - parent: 82 - type: Transform -- uid: 19580 - type: CableApcExtension - components: - - pos: -3.5,-11.5 - parent: 82 - type: Transform -- uid: 19581 - type: CableApcExtension - components: - - pos: -3.5,-10.5 - parent: 82 - type: Transform -- uid: 19582 - type: CableApcExtension - components: - - pos: -3.5,-9.5 - parent: 82 - type: Transform -- uid: 19583 - type: CableApcExtension - components: - - pos: -3.5,-8.5 - parent: 82 - type: Transform -- uid: 19584 - type: CableApcExtension - components: - - pos: -3.5,-7.5 - parent: 82 - type: Transform -- uid: 19585 - type: CableApcExtension - components: - - pos: -10.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19586 - type: CableApcExtension - components: - - pos: -10.5,-21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19587 - type: CableApcExtension - components: - - pos: -10.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19588 - type: CableApcExtension - components: - - pos: -11.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19589 - type: CableApcExtension - components: - - pos: -12.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19590 - type: CableApcExtension - components: - - pos: -13.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19591 - type: CableApcExtension - components: - - pos: -14.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19592 - type: CableApcExtension - components: - - pos: -15.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19593 - type: CableApcExtension - components: - - pos: -16.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19594 - type: CableApcExtension - components: - - pos: -17.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19595 - type: CableApcExtension - components: - - pos: -20.5,-5.5 - parent: 82 - type: Transform -- uid: 19596 - type: CableApcExtension - components: - - pos: -20.5,-4.5 - parent: 82 - type: Transform -- uid: 19597 - type: CableApcExtension - components: - - pos: -20.5,-3.5 - parent: 82 - type: Transform -- uid: 19598 - type: CableApcExtension - components: - - pos: -20.5,-2.5 - parent: 82 - type: Transform -- uid: 19599 - type: CableApcExtension - components: - - pos: -22.5,-2.5 - parent: 82 - type: Transform -- uid: 19600 - type: CableApcExtension - components: - - pos: -21.5,-2.5 - parent: 82 - type: Transform -- uid: 19601 - type: CableApcExtension - components: - - pos: -23.5,-2.5 - parent: 82 - type: Transform -- uid: 19602 - type: CableApcExtension - components: - - pos: -24.5,-2.5 - parent: 82 - type: Transform -- uid: 19603 - type: CableApcExtension - components: - - pos: -24.5,-3.5 - parent: 82 - type: Transform -- uid: 19604 - type: CableApcExtension - components: - - pos: -24.5,-4.5 - parent: 82 - type: Transform -- uid: 19605 - type: CableApcExtension - components: - - pos: -24.5,-5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19606 - type: APCBasic - components: - - pos: -32.5,-9.5 - parent: 82 - type: Transform -- uid: 19607 - type: APCBasic - components: - - pos: -34.5,-16.5 - parent: 82 - type: Transform -- uid: 19608 - type: CableApcExtension - components: - - pos: -34.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19609 - type: CableApcExtension - components: - - pos: -34.5,-17.5 - parent: 82 - type: Transform -- uid: 19610 - type: CableApcExtension - components: - - pos: -34.5,-18.5 - parent: 82 - type: Transform -- uid: 19611 - type: CableApcExtension - components: - - pos: -34.5,-19.5 - parent: 82 - type: Transform -- uid: 19612 - type: CableApcExtension - components: - - pos: -33.5,-19.5 - parent: 82 - type: Transform -- uid: 19613 - type: CableApcExtension - components: - - pos: -32.5,-19.5 - parent: 82 - type: Transform -- uid: 19614 - type: CableApcExtension - components: - - pos: -31.5,-19.5 - parent: 82 - type: Transform -- uid: 19615 - type: CableApcExtension - components: - - pos: -30.5,-19.5 - parent: 82 - type: Transform -- uid: 19616 - type: CableApcExtension - components: - - pos: -35.5,-19.5 - parent: 82 - type: Transform -- uid: 19617 - type: CableApcExtension - components: - - pos: -36.5,-19.5 - parent: 82 - type: Transform -- uid: 19618 - type: CableApcExtension - components: - - pos: -37.5,-19.5 - parent: 82 - type: Transform -- uid: 19619 - type: CableApcExtension - components: - - pos: -38.5,-19.5 - parent: 82 - type: Transform -- uid: 19620 - type: CableApcExtension - components: - - pos: -37.5,-20.5 - parent: 82 - type: Transform -- uid: 19621 - type: CableApcExtension - components: - - pos: -37.5,-21.5 - parent: 82 - type: Transform -- uid: 19622 - type: CableApcExtension - components: - - pos: -37.5,-22.5 - parent: 82 - type: Transform -- uid: 19623 - type: CableApcExtension - components: - - pos: -36.5,-22.5 - parent: 82 - type: Transform -- uid: 19624 - type: CableApcExtension - components: - - pos: -36.5,-23.5 - parent: 82 - type: Transform -- uid: 19625 - type: CableApcExtension - components: - - pos: -36.5,-24.5 - parent: 82 - type: Transform -- uid: 19626 - type: CableApcExtension - components: - - pos: -35.5,-24.5 - parent: 82 - type: Transform -- uid: 19627 - type: CableApcExtension - components: - - pos: -34.5,-24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19628 - type: CableApcExtension - components: - - pos: -34.5,-23.5 - parent: 82 - type: Transform -- uid: 19629 - type: CableApcExtension - components: - - pos: -33.5,-23.5 - parent: 82 - type: Transform -- uid: 19630 - type: CableApcExtension - components: - - pos: -32.5,-23.5 - parent: 82 - type: Transform -- uid: 19631 - type: CableApcExtension - components: - - pos: -32.5,-22.5 - parent: 82 - type: Transform -- uid: 19632 - type: CableApcExtension - components: - - pos: -31.5,-22.5 - parent: 82 - type: Transform -- uid: 19633 - type: CableApcExtension - components: - - pos: -30.5,-22.5 - parent: 82 - type: Transform -- uid: 19634 - type: CableApcExtension - components: - - pos: -30.5,-21.5 - parent: 82 - type: Transform -- uid: 19635 - type: CableApcExtension - components: - - pos: -30.5,-20.5 - parent: 82 - type: Transform -- uid: 19636 - type: CableApcExtension - components: - - pos: -32.5,-9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19637 - type: CableApcExtension - components: - - pos: -32.5,-10.5 - parent: 82 - type: Transform -- uid: 19638 - type: CableApcExtension - components: - - pos: -33.5,-10.5 - parent: 82 - type: Transform -- uid: 19639 - type: CableApcExtension - components: - - pos: -33.5,-9.5 - parent: 82 - type: Transform -- uid: 19640 - type: CableApcExtension - components: - - pos: -33.5,-11.5 - parent: 82 - type: Transform -- uid: 19641 - type: CableApcExtension - components: - - pos: -34.5,-11.5 - parent: 82 - type: Transform -- uid: 19642 - type: CableApcExtension - components: - - pos: -35.5,-11.5 - parent: 82 - type: Transform -- uid: 19643 - type: CableApcExtension - components: - - pos: -36.5,-11.5 - parent: 82 - type: Transform -- uid: 19644 - type: CableApcExtension - components: - - pos: -37.5,-11.5 - parent: 82 - type: Transform -- uid: 19645 - type: CableApcExtension - components: - - pos: -38.5,-11.5 - parent: 82 - type: Transform -- uid: 19646 - type: CableApcExtension - components: - - pos: -38.5,-12.5 - parent: 82 - type: Transform -- uid: 19647 - type: CableApcExtension - components: - - pos: -39.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19648 - type: CableApcExtension - components: - - pos: -40.5,-12.5 - parent: 82 - type: Transform -- uid: 19649 - type: CableApcExtension - components: - - pos: -41.5,-12.5 - parent: 82 - type: Transform -- uid: 19650 - type: CableApcExtension - components: - - pos: -42.5,-12.5 - parent: 82 - type: Transform -- uid: 19651 - type: CableApcExtension - components: - - pos: -42.5,-13.5 - parent: 82 - type: Transform -- uid: 19652 - type: CableApcExtension - components: - - pos: -42.5,-14.5 - parent: 82 - type: Transform -- uid: 19653 - type: CableApcExtension - components: - - pos: -43.5,-13.5 - parent: 82 - type: Transform -- uid: 19654 - type: CableApcExtension - components: - - pos: -44.5,-13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19655 - type: CableApcExtension - components: - - pos: -44.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19656 - type: CableApcExtension - components: - - pos: -44.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19657 - type: CableApcExtension - components: - - pos: -45.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19658 - type: CableApcExtension - components: - - pos: -46.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19659 - type: CableApcExtension - components: - - pos: -47.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19660 - type: CableApcExtension - components: - - pos: -47.5,-10.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19661 - type: CableApcExtension - components: - - pos: -47.5,-9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19662 - type: CableApcExtension - components: - - pos: -47.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19663 - type: CableApcExtension - components: - - pos: -47.5,-7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19664 - type: CableApcExtension - components: - - pos: -47.5,-6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19665 - type: CableApcExtension - components: - - pos: -47.5,-5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19666 - type: CableApcExtension - components: - - pos: -47.5,-4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19667 - type: CableApcExtension - components: - - pos: -47.5,-3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19668 - type: CableApcExtension - components: - - pos: -47.5,-2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19669 - type: CableApcExtension - components: - - pos: -48.5,-2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19670 - type: CableApcExtension - components: - - pos: -48.5,-1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19671 - type: CableApcExtension - components: - - pos: -48.5,-0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19672 - type: CableApcExtension - components: - - pos: -48.5,0.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19673 - type: CableApcExtension - components: - - pos: -48.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19674 - type: CableApcExtension - components: - - pos: -49.5,1.5 - parent: 82 - type: Transform -- uid: 19675 - type: CableApcExtension - components: - - pos: -50.5,1.5 - parent: 82 - type: Transform -- uid: 19676 - type: CableApcExtension - components: - - pos: -51.5,1.5 - parent: 82 - type: Transform -- uid: 19677 - type: CableApcExtension - components: - - pos: -52.5,1.5 - parent: 82 - type: Transform -- uid: 19678 - type: CableApcExtension - components: - - pos: -53.5,1.5 - parent: 82 - type: Transform -- uid: 19679 - type: CableApcExtension - components: - - pos: -54.5,1.5 - parent: 82 - type: Transform -- uid: 19680 - type: CableApcExtension - components: - - pos: -54.5,0.5 - parent: 82 - type: Transform -- uid: 19681 - type: CableApcExtension - components: - - pos: -54.5,-0.5 - parent: 82 - type: Transform -- uid: 19682 - type: CableApcExtension - components: - - pos: -48.5,-5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19683 - type: CableApcExtension - components: - - pos: -49.5,-5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19684 - type: CableApcExtension - components: - - pos: -50.5,-5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19685 - type: CableApcExtension - components: - - pos: -51.5,-5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19686 - type: CableApcExtension - components: - - pos: -52.5,-5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19687 - type: CableApcExtension - components: - - pos: -53.5,-5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19688 - type: CableApcExtension - components: - - pos: -54.5,-5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19689 - type: CableApcExtension - components: - - pos: -54.5,-6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19690 - type: CableApcExtension - components: - - pos: -54.5,-7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19691 - type: CableApcExtension - components: - - pos: -54.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19692 - type: CableApcExtension - components: - - pos: -54.5,-9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19693 - type: CableApcExtension - components: - - pos: -54.5,-10.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19694 - type: CableApcExtension - components: - - pos: -54.5,-11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19695 - type: CableApcExtension - components: - - pos: -54.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19696 - type: CableApcExtension - components: - - pos: -54.5,-13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19697 - type: CableApcExtension - components: - - pos: -54.5,-14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19698 - type: CableApcExtension - components: - - pos: -54.5,-15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19699 - type: CableApcExtension - components: - - pos: -54.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19700 - type: CableApcExtension - components: - - pos: -54.5,-17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19701 - type: CableApcExtension - components: - - pos: -54.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19702 - type: CableApcExtension - components: - - pos: -54.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19703 - type: CableApcExtension - components: - - pos: -53.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19704 - type: CableApcExtension - components: - - pos: -52.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19705 - type: CableApcExtension - components: - - pos: -52.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19706 - type: CableApcExtension - components: - - pos: -51.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19707 - type: CableApcExtension - components: - - pos: -50.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19708 - type: CableApcExtension - components: - - pos: -49.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19709 - type: CableApcExtension - components: - - pos: -48.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19710 - type: CableApcExtension - components: - - pos: -47.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19711 - type: CableApcExtension - components: - - pos: -46.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19712 - type: CableApcExtension - components: - - pos: -45.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19713 - type: CableApcExtension - components: - - pos: -44.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19714 - type: CableApcExtension - components: - - pos: -44.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19715 - type: CableApcExtension - components: - - pos: -44.5,-17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19716 - type: CableApcExtension - components: - - pos: -44.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19717 - type: CableApcExtension - components: - - pos: -44.5,-15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19718 - type: CableApcExtension - components: - - pos: -44.5,-14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19719 - type: CableApcExtension - components: - - pos: -42.5,-11.5 - parent: 82 - type: Transform -- uid: 19720 - type: CableApcExtension - components: - - pos: -42.5,-10.5 - parent: 82 - type: Transform -- uid: 19721 - type: CableApcExtension - components: - - pos: -42.5,-9.5 - parent: 82 - type: Transform -- uid: 19722 - type: CableApcExtension - components: - - pos: -42.5,-8.5 - parent: 82 - type: Transform -- uid: 19723 - type: CableApcExtension - components: - - pos: -42.5,-7.5 - parent: 82 - type: Transform -- uid: 19724 - type: CableApcExtension - components: - - pos: -42.5,-6.5 - parent: 82 - type: Transform -- uid: 19725 - type: CableApcExtension - components: - - pos: -42.5,-5.5 - parent: 82 - type: Transform -- uid: 19726 - type: CableApcExtension - components: - - pos: -45.5,-10.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19727 - type: CableApcExtension - components: - - pos: -45.5,-9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19728 - type: CableApcExtension - components: - - pos: -45.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19729 - type: CableApcExtension - components: - - pos: -45.5,-7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19730 - type: CableApcExtension - components: - - pos: -45.5,-6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19731 - type: CableApcExtension - components: - - pos: -33.5,-8.5 - parent: 82 - type: Transform -- uid: 19732 - type: CableApcExtension - components: - - pos: -33.5,-7.5 - parent: 82 - type: Transform -- uid: 19733 - type: CableApcExtension - components: - - pos: -33.5,-6.5 - parent: 82 - type: Transform -- uid: 19734 - type: CableApcExtension - components: - - pos: -33.5,-5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19735 - type: CableApcExtension - components: - - pos: -33.5,-4.5 - parent: 82 - type: Transform -- uid: 19736 - type: CableApcExtension - components: - - pos: -33.5,-3.5 - parent: 82 - type: Transform -- uid: 19737 - type: CableApcExtension - components: - - pos: -33.5,-2.5 - parent: 82 - type: Transform -- uid: 19738 - type: CableApcExtension - components: - - pos: -34.5,-2.5 - parent: 82 - type: Transform -- uid: 19739 - type: CableApcExtension - components: - - pos: -35.5,-2.5 - parent: 82 - type: Transform -- uid: 19740 - type: CableApcExtension - components: - - pos: -36.5,-2.5 - parent: 82 - type: Transform -- uid: 19741 - type: CableApcExtension - components: - - pos: -37.5,-2.5 - parent: 82 - type: Transform -- uid: 19742 - type: CableApcExtension - components: - - pos: -38.5,-2.5 - parent: 82 - type: Transform -- uid: 19743 - type: CableApcExtension - components: - - pos: -39.5,-2.5 - parent: 82 - type: Transform -- uid: 19744 - type: CableApcExtension - components: - - pos: -40.5,-2.5 - parent: 82 - type: Transform -- uid: 19745 - type: CableApcExtension - components: - - pos: -41.5,-2.5 - parent: 82 - type: Transform -- uid: 19746 - type: CableApcExtension - components: - - pos: -42.5,-2.5 - parent: 82 - type: Transform -- uid: 19747 - type: CableApcExtension - components: - - pos: -42.5,-3.5 - parent: 82 - type: Transform -- uid: 19748 - type: CableApcExtension - components: - - pos: -42.5,-4.5 - parent: 82 - type: Transform -- uid: 19749 - type: CableApcExtension - components: - - pos: -34.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19750 - type: CableApcExtension - components: - - pos: -35.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19751 - type: CableApcExtension - components: - - pos: -36.5,-8.5 - parent: 82 - type: Transform -- uid: 19752 - type: CableApcExtension - components: - - pos: -37.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19753 - type: CableApcExtension - components: - - pos: -38.5,-8.5 - parent: 82 - type: Transform -- uid: 19754 - type: CableApcExtension - components: - - pos: -39.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19755 - type: CableApcExtension - components: - - pos: -40.5,-8.5 - parent: 82 - type: Transform -- uid: 19756 - type: CableApcExtension - components: - - pos: -41.5,-8.5 - parent: 82 - type: Transform -- uid: 19757 - type: CableApcExtension - components: - - pos: -32.5,-2.5 - parent: 82 - type: Transform -- uid: 19758 - type: CableApcExtension - components: - - pos: -31.5,-2.5 - parent: 82 - type: Transform -- uid: 19759 - type: CableApcExtension - components: - - pos: -30.5,-2.5 - parent: 82 - type: Transform -- uid: 19760 - type: CableApcExtension - components: - - pos: -29.5,-2.5 - parent: 82 - type: Transform -- uid: 19761 - type: CableApcExtension - components: - - pos: -29.5,-3.5 - parent: 82 - type: Transform -- uid: 19762 - type: CableApcExtension - components: - - pos: -29.5,-4.5 - parent: 82 - type: Transform -- uid: 19763 - type: CableApcExtension - components: - - pos: -31.5,-10.5 - parent: 82 - type: Transform -- uid: 19764 - type: CableApcExtension - components: - - pos: -30.5,-10.5 - parent: 82 - type: Transform -- uid: 19765 - type: CableApcExtension - components: - - pos: -29.5,-10.5 - parent: 82 - type: Transform -- uid: 19766 - type: CableApcExtension - components: - - pos: -28.5,-10.5 - parent: 82 - type: Transform -- uid: 19767 - type: CableApcExtension - components: - - pos: -28.5,-11.5 - parent: 82 - type: Transform -- uid: 19768 - type: CableApcExtension - components: - - pos: -28.5,-12.5 - parent: 82 - type: Transform -- uid: 19769 - type: CableApcExtension - components: - - pos: -28.5,-13.5 - parent: 82 - type: Transform -- uid: 19770 - type: CableApcExtension - components: - - pos: -28.5,-14.5 - parent: 82 - type: Transform -- uid: 19771 - type: CableApcExtension - components: - - pos: -29.5,-14.5 - parent: 82 - type: Transform -- uid: 19772 - type: CableApcExtension - components: - - pos: -30.5,-14.5 - parent: 82 - type: Transform -- uid: 19773 - type: CableApcExtension - components: - - pos: -31.5,-14.5 - parent: 82 - type: Transform -- uid: 19774 - type: CableApcExtension - components: - - pos: -32.5,-14.5 - parent: 82 - type: Transform -- uid: 19775 - type: CableApcExtension - components: - - pos: -33.5,-14.5 - parent: 82 - type: Transform -- uid: 19776 - type: CableApcExtension - components: - - pos: -34.5,-14.5 - parent: 82 - type: Transform -- uid: 19777 - type: CableApcExtension - components: - - pos: -35.5,-14.5 - parent: 82 - type: Transform -- uid: 19778 - type: CableApcExtension - components: - - pos: -36.5,-14.5 - parent: 82 - type: Transform -- uid: 19779 - type: CableApcExtension - components: - - pos: -37.5,-14.5 - parent: 82 - type: Transform -- uid: 19780 - type: Table - components: - - pos: -10.5,-47.5 - parent: 82 - type: Transform -- uid: 19781 - type: Bed - components: - - pos: -12.5,-49.5 - parent: 82 - type: Transform -- uid: 19782 - type: Bed - components: - - pos: -12.5,-48.5 - parent: 82 - type: Transform -- uid: 19783 - type: Table - components: - - pos: 40.5,42.5 - parent: 82 - type: Transform -- uid: 19784 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 40.5,41.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 19785 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: 40.5,36.5 - parent: 82 - type: Transform -- uid: 19786 - type: Rack - components: - - pos: 40.5,40.5 - parent: 82 - type: Transform -- uid: 19787 - type: MaintenanceFluffSpawner - components: - - pos: 40.5,42.5 - parent: 82 - type: Transform -- uid: 19788 - type: MaintenanceToolSpawner - components: - - pos: 40.5,40.5 - parent: 82 - type: Transform -- uid: 19789 - type: MaintenanceToolSpawner - components: - - pos: 40.5,36.5 - parent: 82 - type: Transform -- uid: 19790 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 39.5,36.5 - parent: 82 - type: Transform -- uid: 19791 - type: ClosetEmergencyFilledRandom - components: - - pos: 46.5,46.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19792 - type: ClosetFireFilled - components: - - pos: 46.5,45.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19793 - type: ClosetMaintenanceFilledRandom - components: - - pos: 46.5,44.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19794 - type: WaterTankFull - components: - - pos: 41.5,51.5 - parent: 82 - type: Transform -- uid: 19795 - type: WeldingFuelTankFull - components: - - pos: 42.5,51.5 - parent: 82 - type: Transform -- uid: 19796 - type: WeldingFuelTankFull - components: - - pos: 32.5,-9.5 - parent: 82 - type: Transform -- uid: 19797 - type: WaterTankFull - components: - - pos: 32.5,-10.5 - parent: 82 - type: Transform -- uid: 19798 - type: Rack - components: - - pos: 32.5,-11.5 - parent: 82 - type: Transform -- uid: 19799 - type: Rack - components: - - pos: 32.5,-12.5 - parent: 82 - type: Transform -- uid: 19800 - type: OxygenTankFilled - components: - - pos: 32.648174,-12.44736 - parent: 82 - type: Transform -- uid: 19801 - type: NitrogenTankFilled - components: - - pos: 32.34262,-12.336248 - parent: 82 - type: Transform -- uid: 19802 - type: GasPipeStraight - components: - - pos: 72.5,3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19803 - type: GasPipeStraight - components: - - pos: 72.5,2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19804 - type: GasPipeStraight - components: - - pos: 72.5,1.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19819 - type: GasPipeStraight - components: - - pos: 73.5,1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19827 - type: GasPipeStraight - components: - - pos: 85.5,1.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19828 - type: GasPipeStraight - components: - - pos: 86.5,1.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19836 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19837 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19838 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 74.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19839 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 73.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19840 - type: GasVentScrubber - components: - - pos: 59.5,3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19841 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 61.5,3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19842 - type: GasPipeTJunction - components: - - pos: 61.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19843 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 74.5,3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19844 - type: GasVentScrubber - components: - - pos: 77.5,3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19847 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19848 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19849 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19850 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 76.5,6.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19851 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 76.5,9.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19852 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 77.5,9.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19853 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 78.5,9.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19854 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 79.5,9.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19855 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 80.5,9.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19856 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 81.5,9.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19857 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 82.5,9.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19858 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 83.5,9.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19859 - type: GasPipeStraight - components: - - pos: 76.5,8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19860 - type: GasPipeStraight - components: - - pos: 76.5,7.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19861 - type: GasPipeStraight - components: - - pos: 75.5,5.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19862 - type: GasPipeStraight - components: - - pos: 75.5,6.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19863 - type: GasPipeStraight - components: - - pos: 75.5,7.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19864 - type: GasPipeStraight - components: - - pos: 75.5,8.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19865 - type: GasPipeStraight - components: - - pos: 75.5,9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19866 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 75.5,10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19867 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 76.5,10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19868 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 77.5,10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19869 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 78.5,10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19870 - type: GasPipeTJunction - components: - - pos: 79.5,10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19871 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 80.5,10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19872 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 81.5,10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19873 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 82.5,10.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19874 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 82.5,11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19875 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 82.5,12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19876 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,10.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19877 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19878 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 83.5,12.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19879 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 82.5,13.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19880 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 75.5,13.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19881 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 75.5,12.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19882 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,12.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19883 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19884 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 76.5,10.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19885 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 79.5,6.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19886 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 78.5,6.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19887 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 77.5,6.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19888 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 79.5,9.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19889 - type: GasVentPump - components: - - pos: 75.5,14.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19890 - type: GasVentPump - components: - - pos: 82.5,14.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19891 - type: GasVentScrubber - components: - - pos: 76.5,13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19892 - type: GasVentScrubber - components: - - pos: 83.5,13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19893 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 76.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19894 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 77.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19895 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 78.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19896 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19897 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19898 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 81.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19899 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 82.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19900 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19901 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 84.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19902 - type: GasPipeBend - components: - - pos: 85.5,4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19903 - type: GasPipeStraight - components: - - pos: 85.5,3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19904 - type: GasPipeStraight - components: - - pos: 85.5,2.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19905 - type: GasPipeBend - components: - - pos: 86.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19906 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 78.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19907 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 79.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19908 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 80.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19909 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 81.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19910 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 82.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19911 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 83.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19912 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 84.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19913 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 85.5,2.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19914 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-4.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19915 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-15.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19916 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-18.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19917 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 61.5,-20.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19918 - type: GasPipeBend - components: - - pos: 61.5,-19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19919 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19920 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19921 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19922 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19923 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-18.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19924 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-18.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19925 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-18.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19926 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-18.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19927 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-18.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19928 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-18.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19929 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-15.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19930 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 56.5,-19.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19931 - type: Dresser - components: - - pos: 47.5,-49.5 - parent: 82 - type: Transform -- uid: 19932 - type: Dresser - components: - - pos: 43.5,-49.5 - parent: 82 - type: Transform -- uid: 19933 - type: ClosetWallOrange - components: - - pos: 45.5,-47.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19934 - type: Dresser - components: - - pos: 43.5,-43.5 - parent: 82 - type: Transform -- uid: 19935 - type: ClosetWallOrange - components: - - pos: 49.5,-47.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19936 - type: ClosetWallOrange - components: - - pos: 53.5,-47.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19937 - type: ClosetWallOrange - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-43.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19938 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-49.5 - parent: 82 - type: Transform -- uid: 19939 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-48.5 - parent: 82 - type: Transform -- uid: 19940 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-49.5 - parent: 82 - type: Transform -- uid: 19941 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-48.5 - parent: 82 - type: Transform -- uid: 19942 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-49.5 - parent: 82 - type: Transform -- uid: 19943 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-48.5 - parent: 82 - type: Transform -- uid: 19944 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-49.5 - parent: 82 - type: Transform -- uid: 19945 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-48.5 - parent: 82 - type: Transform -- uid: 19946 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-49.5 - parent: 82 - type: Transform -- uid: 19947 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-48.5 - parent: 82 - type: Transform -- uid: 19948 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-49.5 - parent: 82 - type: Transform -- uid: 19949 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-48.5 - parent: 82 - type: Transform -- uid: 19950 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-43.5 - parent: 82 - type: Transform -- uid: 19951 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-42.5 - parent: 82 - type: Transform -- uid: 19952 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-43.5 - parent: 82 - type: Transform -- uid: 19953 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-42.5 - parent: 82 - type: Transform -- uid: 19954 - type: Fireplace - components: - - pos: 58.5,-39.5 - parent: 82 - type: Transform -- uid: 19955 - type: Bookshelf - components: - - pos: 57.5,-39.5 - parent: 82 - type: Transform -- uid: 19956 - type: Bookshelf - components: - - pos: 59.5,-39.5 - parent: 82 - type: Transform -- uid: 19957 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 58.5,-40.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 19958 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 59.5,-42.5 - parent: 82 - type: Transform -- uid: 19959 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-42.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 19960 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-42.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 19961 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-42.5 - parent: 82 - type: Transform -- uid: 19962 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-39.5 - parent: 82 - type: Transform -- uid: 19963 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-40.5 - parent: 82 - type: Transform -- uid: 19964 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-40.5 - parent: 82 - type: Transform -- uid: 19965 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-40.5 - parent: 82 - type: Transform -- uid: 19966 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-39.5 - parent: 82 - type: Transform -- uid: 19967 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-40.5 - parent: 82 - type: Transform -- uid: 19968 - type: CarpetBlack - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-39.5 - parent: 82 - type: Transform -- uid: 19969 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: 55.5,-40.5 - parent: 82 - type: Transform -- uid: 19970 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 56.5,-40.5 - parent: 82 - type: Transform -- uid: 19971 - type: BookRandom - components: - - pos: 59.47441,-42.36909 - parent: 82 - type: Transform -- uid: 19972 - type: BookRandom - components: - - pos: 55.41265,-42.39687 - parent: 82 - type: Transform -- uid: 19973 - type: Table - components: - - pos: 51.5,-38.5 - parent: 82 - type: Transform -- uid: 19974 - type: Table - components: - - pos: 51.5,-39.5 - parent: 82 - type: Transform -- uid: 19975 - type: Table - components: - - pos: 52.5,-39.5 - parent: 82 - type: Transform -- uid: 19976 - type: Table - components: - - pos: 52.5,-38.5 - parent: 82 - type: Transform -- uid: 19977 - type: Chair - components: - - pos: 52.5,-37.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 19978 - type: Chair - components: - - pos: 51.5,-37.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 19979 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-38.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 19980 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-39.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 19981 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-43.5 - parent: 82 - type: Transform -- uid: 19982 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-44.5 - parent: 82 - type: Transform -- uid: 19983 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-45.5 - parent: 82 - type: Transform -- uid: 19984 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-43.5 - parent: 82 - type: Transform -- uid: 19985 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-44.5 - parent: 82 - type: Transform -- uid: 19986 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-45.5 - parent: 82 - type: Transform -- uid: 19987 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-46.5 - parent: 82 - type: Transform -- uid: 19988 - type: Chair - components: - - pos: 43.5,-45.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 19989 - type: LampGold - components: - - pos: 43.392403,-46.063545 - parent: 82 - type: Transform -- uid: 19990 - type: KnifePlastic - components: - - pos: 47.947582,-41.424656 - parent: 82 - type: Transform -- uid: 19991 - type: ForkPlastic - components: - - pos: 47.753136,-41.645596 - parent: 82 - type: Transform -- uid: 19992 - type: SpoonPlastic - components: - - pos: 47.586468,-41.492817 - parent: 82 - type: Transform -- uid: 19993 - type: FoodBowlBig - components: - - pos: 47.385105,-41.223362 - parent: 82 - type: Transform -- uid: 19994 - type: FoodPlateSmall - components: - - pos: 47.565662,-41.459473 - parent: 82 - type: Transform -- uid: 19995 - type: FoodPlateSmall - components: - - pos: 47.760105,-41.25114 - parent: 82 - type: Transform -- uid: 19996 - type: ChessBoard - components: - - pos: 51.61178,-38.587048 - parent: 82 - type: Transform -- uid: 19997 - type: CrayonBox - components: - - pos: 52.44511,-38.600937 - parent: 82 - type: Transform -- uid: 19998 - type: RandomInstruments - components: - - pos: 51.5,-39.5 - parent: 82 - type: Transform -- uid: 19999 - type: AirlockSecurity - components: - - pos: 44.5,-47.5 - parent: 82 - type: Transform -- uid: 20000 - type: AirlockSecurity - components: - - pos: 48.5,-47.5 - parent: 82 - type: Transform -- uid: 20001 - type: AirlockSecurity - components: - - pos: 52.5,-47.5 - parent: 82 - type: Transform -- uid: 20002 - type: AirlockSecurity - components: - - pos: 45.5,-42.5 - parent: 82 - type: Transform -- uid: 20003 - type: AirlockSecurity - components: - - pos: 54.5,-41.5 - parent: 82 - type: Transform -- uid: 20004 - type: AirlockSecurity - components: - - pos: 57.5,-36.5 - parent: 82 - type: Transform -- uid: 20005 - type: WindowTintedDirectional - components: - - pos: 59.5,-36.5 - parent: 82 - type: Transform -- uid: 20006 - type: ToiletEmpty - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-36.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20007 - type: RandomSoap - components: - - pos: 59.5,-37.5 - parent: 82 - type: Transform -- uid: 20008 - type: ScalpelShiv - components: - - pos: 59.497196,-36.45737 - parent: 82 - type: Transform -- uid: 20009 - type: CannabisSeeds - components: - - pos: 58.456696,-37.53437 - parent: 82 - type: Transform -- uid: 20010 - type: VendingMachineSeedsUnlocked - components: - - flags: SessionSpecific - type: MetaData - - pos: 46.5,-41.5 - parent: 82 - type: Transform -- uid: 20011 - type: SeedExtractor - components: - - pos: 50.5,-41.5 - parent: 82 - type: Transform -- uid: 20012 - type: GasPipeStraight - components: - - pos: 54.5,-21.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20013 - type: GasPipeStraight - components: - - pos: 54.5,-22.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20014 - type: GasPipeStraight - components: - - pos: 54.5,-23.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20015 - type: GasPipeStraight - components: - - pos: 54.5,-24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20016 - type: GasPipeStraight - components: - - pos: 54.5,-25.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20017 - type: GasPipeStraight - components: - - pos: 54.5,-26.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20018 - type: GasPipeStraight - components: - - pos: 54.5,-27.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20019 - type: GasPipeStraight - components: - - pos: 54.5,-28.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20020 - type: GasPipeStraight - components: - - pos: 54.5,-29.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20021 - type: GasPipeStraight - components: - - pos: 54.5,-30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20022 - type: GasPipeStraight - components: - - pos: 54.5,-31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20023 - type: GasPipeStraight - components: - - pos: 54.5,-32.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20024 - type: ReinforcedWindow - components: - - pos: -34.5,19.5 - parent: 82 - type: Transform -- uid: 20025 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-48.5 - parent: 82 - type: Transform -- uid: 20026 - type: GasPipeStraight - components: - - pos: 54.5,-35.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20027 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-36.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20028 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-36.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20029 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-36.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20030 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-36.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20031 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-36.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20032 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 54.5,-37.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20033 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,-37.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20034 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,-38.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20035 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,-39.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20036 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,-40.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20037 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,-41.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20038 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20039 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20040 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20041 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20042 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-42.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20043 - type: GasPipeStraight - components: - - pos: 46.5,-43.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20044 - type: GasPipeStraight - components: - - pos: 46.5,-44.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20045 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 46.5,-45.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20046 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-30.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20047 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-30.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20048 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-30.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20049 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,-31.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20050 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,-32.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20051 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,-33.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20052 - type: AirlockMaintLocked - components: - - pos: 6.5,32.5 - parent: 82 - type: Transform -- uid: 20053 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,-35.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20054 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-36.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20055 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-38.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20056 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-38.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20057 - type: GasPipeStraight - components: - - pos: 55.5,-37.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20058 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-36.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20059 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-36.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20060 - type: GasPipeBend - components: - - pos: 58.5,-36.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20061 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 58.5,-37.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20062 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-37.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20063 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-38.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20064 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-39.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20065 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-40.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20066 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-41.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20067 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-42.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20068 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-42.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20069 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-41.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20070 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-41.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20071 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-41.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20072 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-41.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20073 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-41.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20074 - type: NitrousOxideCanister - components: - - pos: 51.5,-33.5 - parent: 82 - type: Transform -- uid: 20075 - type: AtmosFixBlockerMarker - components: - - rot: -1.5707963267948966 rad - pos: 0.5,5.5 - parent: 82 - type: Transform -- uid: 20076 - type: AtmosFixBlockerMarker - components: - - rot: -1.5707963267948966 rad - pos: 0.5,4.5 - parent: 82 - type: Transform -- uid: 20077 - type: AtmosFixBlockerMarker - components: - - rot: -1.5707963267948966 rad - pos: 0.5,3.5 - parent: 82 - type: Transform -- uid: 20078 - type: AtmosFixBlockerMarker - components: - - rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 82 - type: Transform -- uid: 20079 - type: AtmosFixBlockerMarker - components: - - rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 82 - type: Transform -- uid: 20080 - type: AtmosFixBlockerMarker - components: - - rot: -1.5707963267948966 rad - pos: 1.5,3.5 - parent: 82 - type: Transform -- uid: 20081 - type: AtmosFixBlockerMarker - components: - - rot: -1.5707963267948966 rad - pos: 2.5,5.5 - parent: 82 - type: Transform -- uid: 20082 - type: AtmosFixBlockerMarker - components: - - rot: -1.5707963267948966 rad - pos: 2.5,4.5 - parent: 82 - type: Transform -- uid: 20083 - type: AtmosFixBlockerMarker - components: - - rot: -1.5707963267948966 rad - pos: 2.5,3.5 - parent: 82 - type: Transform -- uid: 20084 - type: AtmosFixBlockerMarker - components: - - pos: 6.5,5.5 - parent: 82 - type: Transform -- uid: 20085 - type: AtmosFixBlockerMarker - components: - - pos: 6.5,4.5 - parent: 82 - type: Transform -- uid: 20086 - type: AtmosFixBlockerMarker - components: - - pos: 6.5,3.5 - parent: 82 - type: Transform -- uid: 20087 - type: AtmosFixBlockerMarker - components: - - pos: 7.5,5.5 - parent: 82 - type: Transform -- uid: 20088 - type: AtmosFixBlockerMarker - components: - - pos: 7.5,4.5 - parent: 82 - type: Transform -- uid: 20089 - type: AtmosFixBlockerMarker - components: - - pos: 7.5,3.5 - parent: 82 - type: Transform -- uid: 20090 - type: AtmosFixBlockerMarker - components: - - pos: 8.5,5.5 - parent: 82 - type: Transform -- uid: 20091 - type: AtmosFixBlockerMarker - components: - - pos: 8.5,4.5 - parent: 82 - type: Transform -- uid: 20092 - type: AtmosFixBlockerMarker - components: - - pos: 8.5,3.5 - parent: 82 - type: Transform -- uid: 20093 - type: AtmosFixBlockerMarker - components: - - pos: 12.5,5.5 - parent: 82 - type: Transform -- uid: 20094 - type: AtmosFixBlockerMarker - components: - - pos: 12.5,4.5 - parent: 82 - type: Transform -- uid: 20095 - type: AtmosFixBlockerMarker - components: - - pos: 12.5,3.5 - parent: 82 - type: Transform -- uid: 20096 - type: AtmosFixBlockerMarker - components: - - pos: 13.5,5.5 - parent: 82 - type: Transform -- uid: 20097 - type: AtmosFixBlockerMarker - components: - - pos: 13.5,4.5 - parent: 82 - type: Transform -- uid: 20098 - type: AtmosFixBlockerMarker - components: - - pos: 13.5,3.5 - parent: 82 - type: Transform -- uid: 20099 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,5.5 - parent: 82 - type: Transform -- uid: 20100 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,4.5 - parent: 82 - type: Transform -- uid: 20101 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,3.5 - parent: 82 - type: Transform -- uid: 20102 - type: AtmosFixBlockerMarker - components: - - pos: 3.5,24.5 - parent: 82 - type: Transform -- uid: 20103 - type: AtmosFixBlockerMarker - components: - - pos: 3.5,23.5 - parent: 82 - type: Transform -- uid: 20104 - type: AtmosFixBlockerMarker - components: - - pos: 3.5,22.5 - parent: 82 - type: Transform -- uid: 20105 - type: AtmosFixBlockerMarker - components: - - pos: 5.5,24.5 - parent: 82 - type: Transform -- uid: 20106 - type: AtmosFixBlockerMarker - components: - - pos: 5.5,23.5 - parent: 82 - type: Transform -- uid: 20107 - type: AtmosFixBlockerMarker - components: - - pos: 5.5,22.5 - parent: 82 - type: Transform -- uid: 20108 - type: AtmosFixPlasmaMarker - components: - - pos: -0.5,24.5 - parent: 82 - type: Transform -- uid: 20109 - type: AtmosFixPlasmaMarker - components: - - pos: -0.5,23.5 - parent: 82 - type: Transform -- uid: 20110 - type: AtmosFixPlasmaMarker - components: - - pos: -0.5,22.5 - parent: 82 - type: Transform -- uid: 20111 - type: AtmosFixBlockerMarker - components: - - pos: 1.5,24.5 - parent: 82 - type: Transform -- uid: 20112 - type: AtmosFixBlockerMarker - components: - - pos: 1.5,23.5 - parent: 82 - type: Transform -- uid: 20113 - type: AtmosFixBlockerMarker - components: - - pos: 1.5,22.5 - parent: 82 - type: Transform -- uid: 20114 - type: AtmosFixBlockerMarker - components: - - pos: 7.5,24.5 - parent: 82 - type: Transform -- uid: 20115 - type: AtmosFixBlockerMarker - components: - - pos: 7.5,23.5 - parent: 82 - type: Transform -- uid: 20116 - type: AtmosFixBlockerMarker - components: - - pos: 7.5,22.5 - parent: 82 - type: Transform -- uid: 20117 - type: AtmosFixNitrogenMarker - components: - - pos: 11.5,24.5 - parent: 82 - type: Transform -- uid: 20118 - type: AtmosFixNitrogenMarker - components: - - pos: 11.5,23.5 - parent: 82 - type: Transform -- uid: 20119 - type: AtmosFixNitrogenMarker - components: - - pos: 11.5,22.5 - parent: 82 - type: Transform -- uid: 20120 - type: AtmosFixOxygenMarker - components: - - pos: 9.5,24.5 - parent: 82 - type: Transform -- uid: 20121 - type: AtmosFixOxygenMarker - components: - - pos: 9.5,23.5 - parent: 82 - type: Transform -- uid: 20122 - type: AtmosFixOxygenMarker - components: - - pos: 9.5,22.5 - parent: 82 - type: Transform -- uid: 20123 - type: GasMinerCarbonDioxide - components: - - pos: 7.5,23.5 - parent: 82 - type: Transform -- uid: 20124 - type: GasMinerNitrogen - components: - - pos: 11.5,23.5 - parent: 82 - type: Transform - - maxExternalPressure: 4000 - type: GasMiner -- uid: 20125 - type: GasMinerOxygen - components: - - pos: 9.5,23.5 - parent: 82 - type: Transform - - maxExternalPressure: 4000 - type: GasMiner -- uid: 20126 - type: GasMinerPlasma - components: - - pos: -0.5,23.5 - parent: 82 - type: Transform -- uid: 20127 - type: GasMinerWaterVapor - components: - - pos: 1.5,23.5 - parent: 82 - type: Transform -- uid: 20128 - type: Rack - components: - - pos: 21.5,5.5 - parent: 82 - type: Transform -- uid: 20129 - type: ClosetToolFilled - components: - - pos: 22.5,5.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20130 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 - parent: 82 - type: Transform -- uid: 20131 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 19.5,0.5 - parent: 82 - type: Transform -- uid: 20132 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 19.5,1.5 - parent: 82 - type: Transform -- uid: 20133 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 19.5,2.5 - parent: 82 - type: Transform -- uid: 20134 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 20.5,3.5 - parent: 82 - type: Transform -- uid: 20135 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 21.5,3.5 - parent: 82 - type: Transform -- uid: 20136 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 22.5,3.5 - parent: 82 - type: Transform -- uid: 20137 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 23.5,3.5 - parent: 82 - type: Transform -- uid: 20138 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 24.5,3.5 - parent: 82 - type: Transform -- uid: 20139 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 25.5,3.5 - parent: 82 - type: Transform -- uid: 20140 - type: MaintenanceToolSpawner - components: - - pos: 21.5,5.5 - parent: 82 - type: Transform -- uid: 20141 - type: WeldingFuelTankFull - components: - - pos: 25.5,4.5 - parent: 82 - type: Transform -- uid: 20142 - type: WaterTankFull - components: - - pos: 24.5,4.5 - parent: 82 - type: Transform -- uid: 20143 - type: ClosetMaintenanceFilledRandom - components: - - pos: 20.5,1.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20144 - type: ClothingUniformColorRainbow - components: - - pos: 41.237076,57.105118 - parent: 82 - type: Transform -- uid: 20145 - type: BedsheetRainbow - components: - - pos: 39.5,57.5 - parent: 82 - type: Transform -- uid: 20146 - type: CrayonRainbow - components: - - pos: 40.708813,56.646786 - parent: 82 - type: Transform -- uid: 20147 - type: ClothingHeadHatWitch1 - components: - - pos: 41.25048,57.619007 - parent: 82 - type: Transform -- uid: 20148 - type: ClothingShoesSlippers - components: - - pos: 41.16715,56.605118 - parent: 82 - type: Transform -- uid: 20149 - type: ClothingShoesTourist - components: - - pos: 77.78009,6.9345493 - parent: 82 - type: Transform -- uid: 20150 - type: WallReinforced - components: - - pos: 2.5,-51.5 - parent: 82 - type: Transform -- uid: 20151 - type: WallReinforced - components: - - pos: 2.5,-52.5 - parent: 82 - type: Transform -- uid: 20152 - type: WallReinforced - components: - - pos: 7.5,-51.5 - parent: 82 - type: Transform -- uid: 20153 - type: WallReinforced - components: - - pos: 7.5,-52.5 - parent: 82 - type: Transform -- uid: 20154 - type: Grille - components: - - pos: 3.5,-53.5 - parent: 82 - type: Transform -- uid: 20155 - type: Grille - components: - - pos: 4.5,-53.5 - parent: 82 - type: Transform -- uid: 20156 - type: Grille - components: - - pos: 5.5,-53.5 - parent: 82 - type: Transform -- uid: 20157 - type: Grille - components: - - pos: 6.5,-53.5 - parent: 82 - type: Transform -- uid: 20158 - type: ReinforcedWindow - components: - - pos: 3.5,-53.5 - parent: 82 - type: Transform -- uid: 20159 - type: ReinforcedWindow - components: - - pos: 4.5,-53.5 - parent: 82 - type: Transform -- uid: 20160 - type: ReinforcedWindow - components: - - pos: 5.5,-53.5 - parent: 82 - type: Transform -- uid: 20161 - type: ReinforcedWindow - components: - - pos: 6.5,-53.5 - parent: 82 - type: Transform -- uid: 20162 - type: WallReinforced - components: - - pos: 2.5,-53.5 - parent: 82 - type: Transform -- uid: 20163 - type: WallReinforced - components: - - pos: 7.5,-53.5 - parent: 82 - type: Transform -- uid: 20164 - type: ClothingOuterRobesCult - components: - - pos: 6.1979327,-51.567287 - parent: 82 - type: Transform -- uid: 20165 - type: ClothingShoesCult - components: - - pos: 5.9340434,-51.817287 - parent: 82 - type: Transform -- uid: 20166 - type: WallSolidRust - components: - - pos: 5.5,-50.5 - parent: 82 - type: Transform -- uid: 20167 - type: WallSolidRust - components: - - pos: 6.5,-49.5 - parent: 82 - type: Transform -- uid: 20168 - type: Bed - components: - - pos: 6.5,-52.5 - parent: 82 - type: Transform -- uid: 20169 - type: Bed - components: - - pos: 6.5,-50.5 - parent: 82 - type: Transform -- uid: 20170 - type: AirlockMaintLocked - components: - - pos: 19.5,30.5 - parent: 82 - type: Transform -- uid: 20171 - type: BedsheetCult - components: - - pos: 6.5,-52.5 - parent: 82 - type: Transform -- uid: 20172 - type: ClothingHeadHatHoodCulthood - components: - - pos: 6.364599,-51.27562 - parent: 82 - type: Transform -- uid: 20173 - type: lantern - components: - - pos: 4.22571,-52.345066 - parent: 82 - type: Transform -- uid: 20174 - type: PlushieNar - components: - - pos: 5.0451555,-51.956177 - parent: 82 - type: Transform -- uid: 20175 - type: Catwalk - components: - - pos: -2.5,-51.5 - parent: 82 - type: Transform -- uid: 20176 - type: Catwalk - components: - - pos: -2.5,-50.5 - parent: 82 - type: Transform -- uid: 20177 - type: Catwalk - components: - - pos: -1.5,-49.5 - parent: 82 - type: Transform -- uid: 20178 - type: Catwalk - components: - - pos: -0.5,-49.5 - parent: 82 - type: Transform -- uid: 20179 - type: Catwalk - components: - - pos: 0.5,-49.5 - parent: 82 - type: Transform -- uid: 20180 - type: Catwalk - components: - - pos: 1.5,-49.5 - parent: 82 - type: Transform -- uid: 20181 - type: Catwalk - components: - - pos: 2.5,-49.5 - parent: 82 - type: Transform -- uid: 20182 - type: Catwalk - components: - - pos: 3.5,-49.5 - parent: 82 - type: Transform -- uid: 20183 - type: Catwalk - components: - - pos: 4.5,-49.5 - parent: 82 - type: Transform -- uid: 20184 - type: Catwalk - components: - - pos: 6.5,-48.5 - parent: 82 - type: Transform -- uid: 20185 - type: Catwalk - components: - - pos: 6.5,-47.5 - parent: 82 - type: Transform -- uid: 20186 - type: Catwalk - components: - - pos: 7.5,-47.5 - parent: 82 - type: Transform -- uid: 20187 - type: Catwalk - components: - - pos: 8.5,-47.5 - parent: 82 - type: Transform -- uid: 20188 - type: Catwalk - components: - - pos: 9.5,-47.5 - parent: 82 - type: Transform -- uid: 20189 - type: Catwalk - components: - - pos: 10.5,-47.5 - parent: 82 - type: Transform -- uid: 20190 - type: Catwalk - components: - - pos: 11.5,-46.5 - parent: 82 - type: Transform -- uid: 20191 - type: Catwalk - components: - - pos: 11.5,-45.5 - parent: 82 - type: Transform -- uid: 20192 - type: Catwalk - components: - - pos: 11.5,-44.5 - parent: 82 - type: Transform -- uid: 20193 - type: Table - components: - - pos: 12.5,-41.5 - parent: 82 - type: Transform -- uid: 20194 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 12.5,-42.5 - parent: 82 - type: Transform -- uid: 20195 - type: ClosetToolFilled - components: - - pos: 11.5,-41.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20196 - type: ChairWood - components: - - pos: -16.5,19.5 - parent: 82 - type: Transform -- uid: 20197 - type: ChairWood - components: - - pos: -13.5,19.5 - parent: 82 - type: Transform -- uid: 20198 - type: ChairWood - components: - - pos: -13.5,18.5 - parent: 82 - type: Transform -- uid: 20199 - type: ChairWood - components: - - pos: -16.5,18.5 - parent: 82 - type: Transform -- uid: 20200 - type: ChairWood - components: - - pos: -16.5,17.5 - parent: 82 - type: Transform -- uid: 20201 - type: ChairWood - components: - - pos: -13.5,17.5 - parent: 82 - type: Transform -- uid: 20202 - type: ChairWood - components: - - pos: -16.5,16.5 - parent: 82 - type: Transform -- uid: 20203 - type: ChairWood - components: - - pos: -13.5,16.5 - parent: 82 - type: Transform -- uid: 20204 - type: ConvertAltarSpawner - components: - - pos: -13.5,9.5 - parent: 82 - type: Transform -- uid: 20205 - type: AltarSpawner - components: - - pos: -14.5,14.5 - parent: 82 - type: Transform -- uid: 20206 - type: AltarSpawner - components: - - pos: -15.5,14.5 - parent: 82 - type: Transform -- uid: 20207 - type: ChairWood - components: - - pos: -10.5,19.5 - parent: 82 - type: Transform -- uid: 20208 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -10.5,17.5 - parent: 82 - type: Transform -- uid: 20209 - type: CarpetChapel - components: - - pos: -15.5,14.5 - parent: 82 - type: Transform -- uid: 20210 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -15.5,15.5 - parent: 82 - type: Transform -- uid: 20211 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -14.5,15.5 - parent: 82 - type: Transform -- uid: 20212 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -14.5,14.5 - parent: 82 - type: Transform -- uid: 20213 - type: CarpetChapel - components: - - pos: -13.5,16.5 - parent: 82 - type: Transform -- uid: 20214 - type: CarpetChapel - components: - - pos: -13.5,18.5 - parent: 82 - type: Transform -- uid: 20215 - type: CarpetChapel - components: - - pos: -17.5,16.5 - parent: 82 - type: Transform -- uid: 20216 - type: CarpetChapel - components: - - pos: -17.5,18.5 - parent: 82 - type: Transform -- uid: 20217 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -16.5,19.5 - parent: 82 - type: Transform -- uid: 20218 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -16.5,17.5 - parent: 82 - type: Transform -- uid: 20219 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -12.5,17.5 - parent: 82 - type: Transform -- uid: 20220 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -12.5,19.5 - parent: 82 - type: Transform -- uid: 20221 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -12.5,18.5 - parent: 82 - type: Transform -- uid: 20222 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -13.5,19.5 - parent: 82 - type: Transform -- uid: 20223 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -13.5,17.5 - parent: 82 - type: Transform -- uid: 20224 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -12.5,16.5 - parent: 82 - type: Transform -- uid: 20225 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -17.5,17.5 - parent: 82 - type: Transform -- uid: 20226 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -16.5,16.5 - parent: 82 - type: Transform -- uid: 20227 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -17.5,19.5 - parent: 82 - type: Transform -- uid: 20228 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -16.5,18.5 - parent: 82 - type: Transform -- uid: 20229 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -16.5,21.5 - parent: 82 - type: Transform -- uid: 20230 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -15.5,21.5 - parent: 82 - type: Transform -- uid: 20231 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -14.5,21.5 - parent: 82 - type: Transform -- uid: 20232 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -13.5,21.5 - parent: 82 - type: Transform -- uid: 20233 - type: ChurchOrganInstrument - components: - - rot: 1.5707963267948966 rad - pos: -12.5,13.5 - parent: 82 - type: Transform -- uid: 20234 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: -13.5,13.5 - parent: 82 - type: Transform -- uid: 20235 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: -18.5,17.5 - parent: 82 - type: Transform -- uid: 20236 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: -18.5,16.5 - parent: 82 - type: Transform -- uid: 20237 - type: FoodBreadPlain - components: - - pos: -14.521362,21.67146 - parent: 82 - type: Transform -- uid: 20238 - type: KnifePlastic - components: - - pos: -15.03525,21.629791 - parent: 82 - type: Transform -- uid: 20239 - type: DrinkWineBottleFull - components: - - pos: -15.684048,21.839611 - parent: 82 - type: Transform -- uid: 20240 - type: DrinkWineGlass - components: - - pos: -16.12849,21.881275 - parent: 82 - type: Transform -- uid: 20241 - type: DrinkWineGlass - components: - - pos: -16.51738,21.672943 - parent: 82 - type: Transform -- uid: 20242 - type: PlushieRatvar - components: - - pos: -13.64238,21.645164 - parent: 82 - type: Transform -- uid: 20243 - type: BookRandom - components: - - rot: 1.5707963267948966 rad - pos: -19.542685,10.617835 - parent: 82 - type: Transform -- uid: 20244 - type: BookRandom - components: - - rot: 1.5707963267948966 rad - pos: -19.47324,10.159501 - parent: 82 - type: Transform -- uid: 20245 - type: Bible - components: - - rot: 1.5707963267948966 rad - pos: -19.47324,9.54839 - parent: 82 - type: Transform -- uid: 20246 - type: DisposalTrunk - components: - - pos: -32.5,-25.5 - parent: 82 - type: Transform -- uid: 20247 - type: CarpetBlack - components: - - rot: 1.5707963267948966 rad - pos: -14.5,8.5 - parent: 82 - type: Transform -- uid: 20248 - type: Grille - components: - - pos: -28.5,82.5 - parent: 82 - type: Transform -- uid: 20249 - type: Emitter - components: - - rot: -1.5707963267948966 rad - pos: -17.5,68.5 - parent: 82 - type: Transform -- uid: 20250 - type: CarpetBlack - components: - - rot: 1.5707963267948966 rad - pos: -13.5,8.5 - parent: 82 - type: Transform -- uid: 20251 - type: ClosetEmergencyFilledRandom - components: - - pos: -14.5,2.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20252 - type: ClosetFireFilled - components: - - pos: -14.5,1.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20253 - type: ClosetToolFilled - components: - - pos: -13.5,5.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20254 - type: ClosetMaintenanceFilledRandom - components: - - pos: -12.5,5.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20255 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -11.5,10.5 - parent: 82 - type: Transform -- uid: 20256 - type: Chair - components: - - pos: -11.5,11.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20257 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -11.5,9.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20258 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,8.5 - parent: 82 - type: Transform -- uid: 20259 - type: Rack - components: - - pos: -11.5,7.5 - parent: 82 - type: Transform -- uid: 20260 - type: CigPackGreen - components: - - pos: -11.659637,10.713315 - parent: 82 - type: Transform -- uid: 20261 - type: CheapLighter - components: - - pos: -11.4929695,10.477204 - parent: 82 - type: Transform -- uid: 20262 - type: Cigarette - components: - - pos: -11.312414,10.852204 - parent: 82 - type: Transform -- uid: 20263 - type: MaintenanceFluffSpawner - components: - - pos: -11.5,7.5 - parent: 82 - type: Transform -- uid: 20264 - type: AirCanister - components: - - pos: -15.5,5.5 - parent: 82 - type: Transform -- uid: 20265 - type: WeldingFuelTankFull - components: - - pos: -6.5,27.5 - parent: 82 - type: Transform -- uid: 20266 - type: WaterTankFull - components: - - pos: -6.5,26.5 - parent: 82 - type: Transform -- uid: 20267 - type: LockerWeldingSuppliesFilled - components: - - pos: -6.5,25.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20268 - type: ClothingMaskBreathMedical - components: - - pos: -18.605026,-30.317093 - parent: 82 - type: Transform -- uid: 20269 - type: Table - components: - - pos: -8.5,-48.5 - parent: 82 - type: Transform -- uid: 20270 - type: CableApcExtension - components: - - pos: -56.5,38.5 - parent: 82 - type: Transform -- uid: 20271 - type: CableApcExtension - components: - - pos: -55.5,38.5 - parent: 82 - type: Transform -- uid: 20272 - type: CableApcExtension - components: - - pos: -54.5,38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20273 - type: CableApcExtension - components: - - pos: -56.5,47.5 - parent: 82 - type: Transform -- uid: 20274 - type: CableApcExtension - components: - - pos: -55.5,47.5 - parent: 82 - type: Transform -- uid: 20275 - type: CableApcExtension - components: - - pos: -54.5,47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20276 - type: ComfyChair - components: - - pos: -60.5,55.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20277 - type: ComfyChair - components: - - pos: -58.5,55.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20278 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -62.5,54.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20279 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -56.5,54.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20280 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: -59.5,55.5 - parent: 82 - type: Transform -- uid: 20281 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: -62.5,53.5 - parent: 82 - type: Transform -- uid: 20282 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: -56.5,53.5 - parent: 82 - type: Transform -- uid: 20283 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: -61.5,55.5 - parent: 82 - type: Transform -- uid: 20284 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -57.5,55.5 - parent: 82 - type: Transform -- uid: 20285 - type: CigarGold - components: - - pos: -59.65697,55.638012 - parent: 82 - type: Transform -- uid: 20286 - type: Lighter - components: - - pos: -59.379192,55.471344 - parent: 82 - type: Transform -- uid: 20287 - type: RandomDrinkGlass - components: - - pos: -62.5,53.5 - parent: 82 - type: Transform -- uid: 20288 - type: RandomFoodSingle - components: - - pos: -56.5,53.5 - parent: 82 - type: Transform -- uid: 20289 - type: PottedPlantRandomPlastic - components: - - pos: -59.5,53.5 - parent: 82 - type: Transform -- uid: 20290 - type: Rack - components: - - pos: -18.5,-30.5 - parent: 82 - type: Transform -- uid: 20291 - type: AirlockMaintLocked - components: - - pos: 30.5,30.5 - parent: 82 - type: Transform -- uid: 20292 - type: AirlockMaintLocked - components: - - pos: 20.5,48.5 - parent: 82 - type: Transform -- uid: 20293 - type: AirlockMaintLocked - components: - - pos: 30.5,20.5 - parent: 82 - type: Transform -- uid: 20294 - type: AirlockMaintLocked - components: - - pos: 34.5,7.5 - parent: 82 - type: Transform -- uid: 20295 - type: AirlockMaintLocked - components: - - pos: 54.5,5.5 - parent: 82 - type: Transform -- uid: 20296 - type: Catwalk - components: - - pos: 54.5,6.5 - parent: 82 - type: Transform -- uid: 20297 - type: Catwalk - components: - - pos: 54.5,7.5 - parent: 82 - type: Transform -- uid: 20298 - type: Catwalk - components: - - pos: 54.5,8.5 - parent: 82 - type: Transform -- uid: 20299 - type: Catwalk - components: - - pos: 53.5,9.5 - parent: 82 - type: Transform -- uid: 20300 - type: Catwalk - components: - - pos: 52.5,9.5 - parent: 82 - type: Transform -- uid: 20301 - type: Catwalk - components: - - pos: 51.5,9.5 - parent: 82 - type: Transform -- uid: 20302 - type: Catwalk - components: - - pos: 50.5,9.5 - parent: 82 - type: Transform -- uid: 20303 - type: Catwalk - components: - - pos: 49.5,9.5 - parent: 82 - type: Transform -- uid: 20304 - type: ClothingHeadHatSecsoftFlipped - components: - - pos: 47.595394,-3.2633111 - parent: 82 - type: Transform -- uid: 20305 - type: Catwalk - components: - - pos: 43.5,9.5 - parent: 82 - type: Transform -- uid: 20306 - type: Catwalk - components: - - pos: 42.5,9.5 - parent: 82 - type: Transform -- uid: 20307 - type: Catwalk - components: - - pos: 40.5,8.5 - parent: 82 - type: Transform -- uid: 20308 - type: Catwalk - components: - - pos: 39.5,8.5 - parent: 82 - type: Transform -- uid: 20309 - type: Catwalk - components: - - pos: 38.5,8.5 - parent: 82 - type: Transform -- uid: 20310 - type: Catwalk - components: - - pos: 37.5,8.5 - parent: 82 - type: Transform -- uid: 20311 - type: Catwalk - components: - - pos: 36.5,8.5 - parent: 82 - type: Transform -- uid: 20312 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: 39.5,7.5 - parent: 82 - type: Transform -- uid: 20313 - type: ClosetFireFilled - components: - - pos: 37.5,7.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20314 - type: ClosetEmergencyFilledRandom - components: - - pos: 38.5,7.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20315 - type: Rack - components: - - pos: 41.5,10.5 - parent: 82 - type: Transform -- uid: 20316 - type: WallReinforced - components: - - pos: 42.5,8.5 - parent: 82 - type: Transform -- uid: 20317 - type: MaintenanceToolSpawner - components: - - pos: 41.5,10.5 - parent: 82 - type: Transform -- uid: 20318 - type: Rack - components: - - pos: 35.5,6.5 - parent: 82 - type: Transform -- uid: 20319 - type: MaintenanceToolSpawner - components: - - pos: 35.5,6.5 - parent: 82 - type: Transform -- uid: 20320 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20321 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-10.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20322 - type: CableHV - components: - - pos: -16.5,72.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20323 - type: ClothingHeadHelmetEVA - components: - - pos: 54.738117,-14.50484 - parent: 82 - type: Transform -- uid: 20324 - type: ClothingOuterHardsuitEVAPrisoner - components: - - pos: 54.724228,-14.352061 - parent: 82 - type: Transform -- uid: 20325 - type: ClothingMaskBreath - components: - - pos: 54.71034,-15.421506 - parent: 82 - type: Transform -- uid: 20326 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 46.5,41.5 - parent: 82 - type: Transform -- uid: 20327 - type: Table - components: - - pos: 46.5,42.5 - parent: 82 - type: Transform -- uid: 20328 - type: AirlockMaintCargoLocked - components: - - pos: 42.5,11.5 - parent: 82 - type: Transform -- uid: 20329 - type: ToolboxElectricalFilled - components: - - pos: 56.46039,6.672532 - parent: 82 - type: Transform -- uid: 20330 - type: Rack - components: - - pos: 54.5,-15.5 - parent: 82 - type: Transform -- uid: 20331 - type: ClothingOuterHardsuitEVAPrisoner - components: - - pos: 54.363117,-14.143728 - parent: 82 - type: Transform -- uid: 20332 - type: ReinforcedWindow - components: - - pos: 47.5,-15.5 - parent: 82 - type: Transform -- uid: 20333 - type: Emitter - components: - - pos: -21.5,79.5 - parent: 82 - type: Transform -- uid: 20334 - type: Cigarette - components: - - rot: 3.141592653589793 rad - pos: 46.352066,42.567757 - parent: 82 - type: Transform -- uid: 20335 - type: Matchbox - components: - - pos: 46.643734,42.442757 - parent: 82 - type: Transform -- uid: 20336 - type: MaintenanceWeaponSpawner - components: - - pos: 46.5,40.5 - parent: 82 - type: Transform -- uid: 20337 - type: Catwalk - components: - - pos: 43.5,51.5 - parent: 82 - type: Transform -- uid: 20338 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -29.5,12.5 - parent: 82 - type: Transform -- uid: 20339 - type: Catwalk - components: - - pos: 43.5,53.5 - parent: 82 - type: Transform -- uid: 20340 - type: Catwalk - components: - - pos: 40.5,49.5 - parent: 82 - type: Transform -- uid: 20341 - type: WallSolid - components: - - pos: 40.5,43.5 - parent: 82 - type: Transform -- uid: 20342 - type: SpaceCash - components: - - pos: 44.273037,48.66398 - parent: 82 - type: Transform -- uid: 20343 - type: SpaceCash - components: - - pos: 43.898037,48.400093 - parent: 82 - type: Transform -- uid: 20344 - type: SpaceCash - components: - - pos: 43.509148,48.594536 - parent: 82 - type: Transform -- uid: 20345 - type: Rack - components: - - pos: 21.5,29.5 - parent: 82 - type: Transform -- uid: 20346 - type: MaintenanceToolSpawner - components: - - pos: 21.5,29.5 - parent: 82 - type: Transform -- uid: 20347 - type: MaintenanceFluffSpawner - components: - - pos: 21.5,24.5 - parent: 82 - type: Transform -- uid: 20348 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 30.5,47.5 - parent: 82 - type: Transform -- uid: 20349 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: 30.5,46.5 - parent: 82 - type: Transform -- uid: 20350 - type: PosterLegitNanotrasenLogo - components: - - pos: 54.5,-46.5 - parent: 82 - type: Transform -- uid: 20351 - type: DisposalUnit - components: - - pos: 30.5,40.5 - parent: 82 - type: Transform -- uid: 20352 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 30.5,43.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20353 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: 30.5,44.5 - parent: 82 - type: Transform -- uid: 20354 - type: RandomDrinkGlass - components: - - pos: 30.5,44.5 - parent: 82 - type: Transform -- uid: 20355 - type: AirlockMaintLocked - components: - - pos: 34.5,46.5 - parent: 82 - type: Transform -- uid: 20356 - type: Table - components: - - pos: 35.5,56.5 - parent: 82 - type: Transform -- uid: 20357 - type: ComfyChair - components: - - pos: -30.5,-1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20358 - type: ComfyChair - components: - - pos: -28.5,-1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20359 - type: TableGlass - components: - - pos: -29.5,-1.5 - parent: 82 - type: Transform -- uid: 20360 - type: DisposalUnit - components: - - pos: -25.5,-1.5 - parent: 82 - type: Transform -- uid: 20361 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -26.5,-1.5 - parent: 82 - type: Transform -- uid: 20362 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,-1.5 - parent: 82 - type: Transform -- uid: 20363 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,-1.5 - parent: 82 - type: Transform -- uid: 20364 - type: BoozeDispenser - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-13.5 - parent: 82 - type: Transform -- uid: 20365 - type: soda_dispenser - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 82 - type: Transform -- uid: 20366 - type: Dresser - components: - - pos: -15.5,-6.5 - parent: 82 - type: Transform -- uid: 20367 - type: BedsheetSpawner - components: - - pos: -16.5,-6.5 - parent: 82 - type: Transform -- uid: 20368 - type: FoodCakeBirthdaySlice - components: - - pos: -15.512669,-8.37928 - parent: 82 - type: Transform -- uid: 20369 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -22.5,-10.5 - parent: 82 - type: Transform -- uid: 20370 - type: WallReinforced - components: - - pos: -40.5,37.5 - parent: 82 - type: Transform -- uid: 20371 - type: WallReinforced - components: - - pos: -40.5,36.5 - parent: 82 - type: Transform -- uid: 20372 - type: WallReinforced - components: - - pos: -39.5,36.5 - parent: 82 - type: Transform -- uid: 20373 - type: WallReinforced - components: - - pos: -38.5,36.5 - parent: 82 - type: Transform -- uid: 20374 - type: Grille - components: - - pos: -37.5,36.5 - parent: 82 - type: Transform -- uid: 20375 - type: Grille - components: - - pos: -36.5,36.5 - parent: 82 - type: Transform -- uid: 20376 - type: Grille - components: - - pos: -35.5,36.5 - parent: 82 - type: Transform -- uid: 20377 - type: WallReinforced - components: - - pos: -34.5,36.5 - parent: 82 - type: Transform -- uid: 20378 - type: WallReinforced - components: - - pos: -33.5,36.5 - parent: 82 - type: Transform -- uid: 20379 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -30.5,36.5 - parent: 82 - type: Transform -- uid: 20380 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -30.5,38.5 - parent: 82 - type: Transform -- uid: 20381 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -30.5,39.5 - parent: 82 - type: Transform -- uid: 20382 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -30.5,40.5 - parent: 82 - type: Transform -- uid: 20383 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -30.5,41.5 - parent: 82 - type: Transform -- uid: 20384 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -30.5,43.5 - parent: 82 - type: Transform -- uid: 20385 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -30.5,44.5 - parent: 82 - type: Transform -- uid: 20386 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -30.5,45.5 - parent: 82 - type: Transform -- uid: 20387 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -30.5,46.5 - parent: 82 - type: Transform -- uid: 20388 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -30.5,47.5 - parent: 82 - type: Transform -- uid: 20389 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -30.5,48.5 - parent: 82 - type: Transform -- uid: 20390 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -30.5,49.5 - parent: 82 - type: Transform -- uid: 20391 - type: WeldingFuelTankFull - components: - - pos: -31.5,39.5 - parent: 82 - type: Transform -- uid: 20392 - type: WaterTankFull - components: - - pos: -31.5,40.5 - parent: 82 - type: Transform -- uid: 20393 - type: ClosetFireFilled - components: - - pos: -29.5,39.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20394 - type: ClosetEmergencyFilledRandom - components: - - pos: -29.5,38.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20395 - type: ClosetMaintenanceFilledRandom - components: - - pos: -28.5,33.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20396 - type: Rack - components: - - pos: -29.5,33.5 - parent: 82 - type: Transform -- uid: 20397 - type: MaintenanceToolSpawner - components: - - pos: -29.5,33.5 - parent: 82 - type: Transform -- uid: 20398 - type: Rack - components: - - pos: -31.5,36.5 - parent: 82 - type: Transform -- uid: 20399 - type: MaintenanceFluffSpawner - components: - - pos: -31.5,36.5 - parent: 82 - type: Transform -- uid: 20400 - type: MaintenanceWeaponSpawner - components: - - pos: -31.5,49.5 - parent: 82 - type: Transform -- uid: 20401 - type: Table - components: - - pos: -31.5,49.5 - parent: 82 - type: Transform -- uid: 20402 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -31.5,48.5 - parent: 82 - type: Transform -- uid: 20403 - type: NitrogenCanister - components: - - pos: -31.5,52.5 - parent: 82 - type: Transform -- uid: 20404 - type: OxygenCanister - components: - - pos: -30.5,52.5 - parent: 82 - type: Transform -- uid: 20405 - type: FirelockGlass - components: - - pos: -20.5,27.5 - parent: 82 - type: Transform -- uid: 20406 - type: FirelockGlass - components: - - pos: -20.5,26.5 - parent: 82 - type: Transform -- uid: 20407 - type: FirelockGlass - components: - - pos: -20.5,25.5 - parent: 82 - type: Transform -- uid: 20408 - type: Catwalk - components: - - pos: -11.5,-45.5 - parent: 82 - type: Transform -- uid: 20409 - type: Catwalk - components: - - pos: -12.5,-45.5 - parent: 82 - type: Transform -- uid: 20410 - type: Catwalk - components: - - pos: -13.5,-45.5 - parent: 82 - type: Transform -- uid: 20411 - type: Catwalk - components: - - pos: -14.5,-45.5 - parent: 82 - type: Transform -- uid: 20412 - type: Catwalk - components: - - pos: -15.5,-45.5 - parent: 82 - type: Transform -- uid: 20413 - type: Catwalk - components: - - pos: -17.5,-46.5 - parent: 82 - type: Transform -- uid: 20414 - type: Catwalk - components: - - pos: -18.5,-46.5 - parent: 82 - type: Transform -- uid: 20415 - type: Catwalk - components: - - pos: -19.5,-46.5 - parent: 82 - type: Transform -- uid: 20416 - type: Catwalk - components: - - pos: -20.5,-46.5 - parent: 82 - type: Transform -- uid: 20417 - type: Catwalk - components: - - pos: -21.5,-46.5 - parent: 82 - type: Transform -- uid: 20418 - type: Catwalk - components: - - pos: -23.5,-44.5 - parent: 82 - type: Transform -- uid: 20419 - type: Catwalk - components: - - pos: -24.5,-44.5 - parent: 82 - type: Transform -- uid: 20420 - type: Catwalk - components: - - pos: -25.5,-44.5 - parent: 82 - type: Transform -- uid: 20421 - type: Catwalk - components: - - pos: -26.5,-44.5 - parent: 82 - type: Transform -- uid: 20422 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -28.5,12.5 - parent: 82 - type: Transform -- uid: 20423 - type: Catwalk - components: - - pos: -29.5,-46.5 - parent: 82 - type: Transform -- uid: 20424 - type: Catwalk - components: - - pos: -30.5,-46.5 - parent: 82 - type: Transform -- uid: 20425 - type: Catwalk - components: - - pos: -31.5,-46.5 - parent: 82 - type: Transform -- uid: 20426 - type: Catwalk - components: - - pos: -32.5,-46.5 - parent: 82 - type: Transform -- uid: 20427 - type: Catwalk - components: - - pos: -33.5,-46.5 - parent: 82 - type: Transform -- uid: 20428 - type: Catwalk - components: - - pos: -34.5,-46.5 - parent: 82 - type: Transform -- uid: 20429 - type: Catwalk - components: - - pos: -35.5,-46.5 - parent: 82 - type: Transform -- uid: 20430 - type: Catwalk - components: - - pos: -36.5,-46.5 - parent: 82 - type: Transform -- uid: 20431 - type: Catwalk - components: - - pos: -37.5,-46.5 - parent: 82 - type: Transform -- uid: 20432 - type: Catwalk - components: - - pos: -38.5,-46.5 - parent: 82 - type: Transform -- uid: 20433 - type: Catwalk - components: - - pos: -39.5,-46.5 - parent: 82 - type: Transform -- uid: 20434 - type: Catwalk - components: - - pos: -40.5,-46.5 - parent: 82 - type: Transform -- uid: 20435 - type: Catwalk - components: - - pos: -42.5,-46.5 - parent: 82 - type: Transform -- uid: 20436 - type: Catwalk - components: - - pos: -43.5,-46.5 - parent: 82 - type: Transform -- uid: 20437 - type: Catwalk - components: - - pos: -44.5,-46.5 - parent: 82 - type: Transform -- uid: 20438 - type: Catwalk - components: - - pos: -45.5,-46.5 - parent: 82 - type: Transform -- uid: 20439 - type: Catwalk - components: - - pos: -46.5,-46.5 - parent: 82 - type: Transform -- uid: 20440 - type: Catwalk - components: - - pos: -47.5,-46.5 - parent: 82 - type: Transform -- uid: 20441 - type: Catwalk - components: - - pos: -48.5,-46.5 - parent: 82 - type: Transform -- uid: 20442 - type: FirelockGlass - components: - - pos: 20.5,62.5 - parent: 82 - type: Transform -- uid: 20443 - type: Catwalk - components: - - pos: -50.5,-46.5 - parent: 82 - type: Transform -- uid: 20444 - type: Catwalk - components: - - pos: -51.5,-46.5 - parent: 82 - type: Transform -- uid: 20445 - type: Catwalk - components: - - pos: -52.5,-46.5 - parent: 82 - type: Transform -- uid: 20446 - type: Catwalk - components: - - pos: -53.5,-46.5 - parent: 82 - type: Transform -- uid: 20447 - type: Catwalk - components: - - pos: -54.5,-45.5 - parent: 82 - type: Transform -- uid: 20448 - type: Catwalk - components: - - pos: -54.5,-44.5 - parent: 82 - type: Transform -- uid: 20449 - type: Catwalk - components: - - pos: -54.5,-43.5 - parent: 82 - type: Transform -- uid: 20450 - type: Catwalk - components: - - pos: -54.5,-42.5 - parent: 82 - type: Transform -- uid: 20451 - type: Catwalk - components: - - pos: -54.5,-41.5 - parent: 82 - type: Transform -- uid: 20452 - type: Catwalk - components: - - pos: -54.5,-40.5 - parent: 82 - type: Transform -- uid: 20453 - type: Catwalk - components: - - pos: -54.5,-39.5 - parent: 82 - type: Transform -- uid: 20454 - type: Catwalk - components: - - pos: -54.5,-37.5 - parent: 82 - type: Transform -- uid: 20455 - type: Catwalk - components: - - pos: -54.5,-36.5 - parent: 82 - type: Transform -- uid: 20456 - type: Catwalk - components: - - pos: -54.5,-35.5 - parent: 82 - type: Transform -- uid: 20457 - type: Catwalk - components: - - pos: -55.5,-34.5 - parent: 82 - type: Transform -- uid: 20458 - type: Catwalk - components: - - pos: -56.5,-34.5 - parent: 82 - type: Transform -- uid: 20459 - type: Catwalk - components: - - pos: -57.5,-34.5 - parent: 82 - type: Transform -- uid: 20460 - type: Catwalk - components: - - pos: -58.5,-34.5 - parent: 82 - type: Transform -- uid: 20461 - type: Catwalk - components: - - pos: -59.5,-33.5 - parent: 82 - type: Transform -- uid: 20462 - type: Catwalk - components: - - pos: -59.5,-32.5 - parent: 82 - type: Transform -- uid: 20463 - type: Catwalk - components: - - pos: -59.5,-31.5 - parent: 82 - type: Transform -- uid: 20464 - type: Catwalk - components: - - pos: -59.5,-30.5 - parent: 82 - type: Transform -- uid: 20465 - type: FirelockGlass - components: - - pos: 19.5,62.5 - parent: 82 - type: Transform -- uid: 20466 - type: Catwalk - components: - - pos: -59.5,-28.5 - parent: 82 - type: Transform -- uid: 20467 - type: Catwalk - components: - - pos: -59.5,-27.5 - parent: 82 - type: Transform -- uid: 20468 - type: Catwalk - components: - - pos: -59.5,-26.5 - parent: 82 - type: Transform -- uid: 20469 - type: AsteroidRock - components: - - pos: -70.5,-49.5 - parent: 82 - type: Transform -- uid: 20470 - type: AsteroidRock - components: - - pos: -70.5,-45.5 - parent: 82 - type: Transform -- uid: 20471 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 43.5,1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20472 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 43.5,0.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20473 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 47.5,1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20474 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 47.5,0.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20475 - type: PottedPlantRandom - components: - - pos: 43.5,-0.5 - parent: 82 - type: Transform -- uid: 20476 - type: PottedPlantRandomPlastic - components: - - pos: 47.5,-0.5 - parent: 82 - type: Transform -- uid: 20477 - type: AirlockBrigLocked - components: - - pos: 47.5,-8.5 - parent: 82 - type: Transform -- uid: 20478 - type: AirlockSecurityLocked - components: - - pos: 53.5,-8.5 - parent: 82 - type: Transform -- uid: 20479 - type: WardrobePrisonFilled - components: - - pos: 39.5,-18.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20480 - type: WardrobePrisonFilled - components: - - pos: 36.5,-18.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20481 - type: WardrobePrisonFilled - components: - - pos: 42.5,-18.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20482 - type: WardrobePrisonFilled - components: - - pos: 45.5,-18.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20483 - type: WallReinforced - components: - - pos: 53.5,-17.5 - parent: 82 - type: Transform -- uid: 20484 - type: BedsheetOrange - components: - - pos: 36.5,-19.5 - parent: 82 - type: Transform -- uid: 20485 - type: BedsheetOrange - components: - - pos: 39.5,-19.5 - parent: 82 - type: Transform -- uid: 20486 - type: BedsheetOrange - components: - - pos: 42.5,-19.5 - parent: 82 - type: Transform -- uid: 20487 - type: BedsheetOrange - components: - - pos: 45.5,-19.5 - parent: 82 - type: Transform -- uid: 20488 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 67.5,-24.5 - parent: 82 - type: Transform -- uid: 20489 - type: Bed - components: - - pos: 36.5,-19.5 - parent: 82 - type: Transform -- uid: 20490 - type: Bed - components: - - pos: 39.5,-19.5 - parent: 82 - type: Transform -- uid: 20491 - type: Bed - components: - - pos: 42.5,-19.5 - parent: 82 - type: Transform -- uid: 20492 - type: Bed - components: - - pos: 45.5,-19.5 - parent: 82 - type: Transform -- uid: 20493 - type: DeployableBarrier - components: - - anchored: False - pos: 33.5,-7.5 - parent: 82 - type: Transform -- uid: 20494 - type: EmergencyLight - components: - - pos: 79.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20495 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,25.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20496 - type: PoweredSmallLight - components: - - pos: -14.5,11.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20497 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20498 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,15.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20499 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,15.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20500 - type: WardrobeFormal - components: - - pos: -19.5,13.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20501 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,20.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20502 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,20.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20503 - type: EmergencyLight - components: - - pos: 79.5,10.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20506 - type: EmergencyLight - components: - - pos: 60.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20507 - type: EmergencyLight - components: - - pos: 44.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20508 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-7.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20509 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20510 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20511 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20512 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-6.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20513 - type: EmergencyLight - components: - - pos: 30.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20514 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20515 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,29.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20516 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20517 - type: WallSolid - components: - - pos: -35.5,-13.5 - parent: 82 - type: Transform -- uid: 20518 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,59.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20519 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,67.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20520 - type: EmergencyLight - components: - - pos: 16.5,51.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20521 - type: EmergencyLight - components: - - pos: -2.5,51.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20522 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20523 - type: EmergencyLight - components: - - pos: -11.5,31.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20524 - type: EmergencyLight - components: - - pos: 7.5,31.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20525 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -11.5,38.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20526 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20527 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -20.5,29.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20528 - type: EmergencyLight - components: - - pos: -16.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20529 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,57.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20530 - type: Autolathe - components: - - pos: -16.5,41.5 - parent: 82 - type: Transform -- uid: 20531 - type: TableReinforced - components: - - pos: -15.5,41.5 - parent: 82 - type: Transform -- uid: 20532 - type: LargeBeaker - components: - - pos: -30.52902,-12.800433 - parent: 82 - type: Transform -- uid: 20533 - type: PaperCaptainsThoughts - components: - - pos: 10.770817,-18.432528 - parent: 82 - type: Transform -- uid: 20534 - type: AirlockChiefEngineerGlassLocked - components: - - pos: -11.5,35.5 - parent: 82 - type: Transform -- uid: 20535 - type: ComputerPowerMonitoring - components: - - pos: -8.5,36.5 - parent: 82 - type: Transform -- uid: 20536 - type: ComputerAlert - components: - - pos: -9.5,36.5 - parent: 82 - type: Transform -- uid: 20537 - type: CableHV - components: - - pos: -8.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20538 - type: CableHV - components: - - pos: -8.5,36.5 - parent: 82 - type: Transform -- uid: 20539 - type: BoxFolderYellow - components: - - pos: -7.4054437,34.82456 - parent: 82 - type: Transform -- uid: 20540 - type: DogBed - components: - - pos: -10.5,36.5 - parent: 82 - type: Transform -- uid: 20541 - type: EmergencyLight - components: - - pos: -39.5,31.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20542 - type: CrateNPCLizard - components: - - pos: -17.5,-38.5 - parent: 82 - type: Transform - - open: True - removedMasks: 28 - type: EntityStorage - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - - -0.4,-0.4 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 135 - hard: True - restitution: 0 - friction: 0.4 - id: null - type: Fixtures -- uid: 20543 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20544 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -22.5,-4.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20545 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20546 - type: EmergencyLight - components: - - pos: -37.5,-2.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20547 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 11.5,-3.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20548 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-4.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20549 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-4.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20550 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-13.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20551 - type: EmergencyLight - components: - - pos: 7.5,-23.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20552 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20553 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20554 - type: EmergencyLight - components: - - pos: 23.5,-2.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20555 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-30.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20556 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20557 - type: EmergencyLight - components: - - pos: 8.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20558 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-46.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20559 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-62.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20560 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20561 - type: EmergencyLight - components: - - pos: -26.5,-24.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20562 - type: EmergencyLight - components: - - pos: -23.5,-32.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20563 - type: EmergencyLight - components: - - pos: -38.5,-30.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20564 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -33.5,76.5 - parent: 82 - type: Transform -- uid: 20565 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-36.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20566 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-38.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20567 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-62.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20568 - type: EmergencyLight - components: - - pos: -53.5,31.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20569 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -62.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20570 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -59.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20571 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,15.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20572 - type: EmergencyLight - components: - - pos: 44.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20575 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 75.5,11.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20576 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -17.5,-22.5 - parent: 82 - type: Transform -- uid: 20577 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -16.5,-22.5 - parent: 82 - type: Transform -- uid: 20578 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -15.5,-22.5 - parent: 82 - type: Transform -- uid: 20579 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -14.5,-22.5 - parent: 82 - type: Transform -- uid: 20580 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -13.5,-22.5 - parent: 82 - type: Transform -- uid: 20581 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -12.5,-22.5 - parent: 82 - type: Transform -- uid: 20582 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -10.5,-21.5 - parent: 82 - type: Transform -- uid: 20583 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -10.5,-20.5 - parent: 82 - type: Transform -- uid: 20584 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -11.5,-19.5 - parent: 82 - type: Transform -- uid: 20585 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -12.5,-19.5 - parent: 82 - type: Transform -- uid: 20586 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -13.5,-19.5 - parent: 82 - type: Transform -- uid: 20587 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -14.5,-18.5 - parent: 82 - type: Transform -- uid: 20588 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -14.5,-17.5 - parent: 82 - type: Transform -- uid: 20589 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -14.5,-16.5 - parent: 82 - type: Transform -- uid: 20590 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -13.5,-13.5 - parent: 82 - type: Transform -- uid: 20591 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -12.5,-13.5 - parent: 82 - type: Transform -- uid: 20592 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -11.5,-13.5 - parent: 82 - type: Transform -- uid: 20593 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -10.5,-13.5 - parent: 82 - type: Transform -- uid: 20594 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -9.5,-13.5 - parent: 82 - type: Transform -- uid: 20595 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -8.5,-13.5 - parent: 82 - type: Transform -- uid: 20596 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-13.5 - parent: 82 - type: Transform -- uid: 20597 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -14.5,-20.5 - parent: 82 - type: Transform -- uid: 20598 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-20.5 - parent: 82 - type: Transform -- uid: 20599 - type: ClosetEmergencyFilledRandom - components: - - pos: -11.5,-20.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20600 - type: ClosetFireFilled - components: - - pos: -11.5,-21.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20601 - type: ClosetMaintenanceFilledRandom - components: - - pos: -14.5,-12.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20602 - type: MaintenanceFluffSpawner - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-20.5 - parent: 82 - type: Transform -- uid: 20603 - type: BedsheetBlack - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-50.5 - parent: 82 - type: Transform -- uid: 20604 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-49.5 - parent: 82 - type: Transform -- uid: 20605 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-50.5 - parent: 82 - type: Transform -- uid: 20606 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-48.5 - parent: 82 - type: Transform -- uid: 20607 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-49.5 - parent: 82 - type: Transform -- uid: 20608 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-50.5 - parent: 82 - type: Transform -- uid: 20609 - type: RandomArcade - components: - - pos: -21.5,-42.5 - parent: 82 - type: Transform -- uid: 20610 - type: OxygenCanister - components: - - pos: -14.5,-46.5 - parent: 82 - type: Transform -- uid: 20611 - type: NitrogenCanister - components: - - pos: -15.5,-46.5 - parent: 82 - type: Transform -- uid: 20612 - type: Table - components: - - pos: -26.5,-42.5 - parent: 82 - type: Transform -- uid: 20613 - type: ChairFolding - components: - - pos: -27.5,-42.5 - parent: 82 - type: Transform -- uid: 20614 - type: ChairFolding - components: - - pos: -25.5,-42.5 - parent: 82 - type: Transform -- uid: 20615 - type: ClosetMaintenanceFilledRandom - components: - - pos: -24.5,-42.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20616 - type: Cigarette - components: - - pos: -26.622728,-42.410347 - parent: 82 - type: Transform -- uid: 20617 - type: CheapLighter - components: - - pos: -26.358839,-42.424236 - parent: 82 - type: Transform -- uid: 20618 - type: ToySpawner - components: - - pos: -21.5,-43.5 - parent: 82 - type: Transform -- uid: 20619 - type: CableMV - components: - - pos: -17.5,76.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20620 - type: KitchenSpike - components: - - pos: -36.5,-15.5 - parent: 82 - type: Transform -- uid: 20621 - type: ClosetEmergencyFilledRandom - components: - - pos: -34.5,-47.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20622 - type: ClosetFireFilled - components: - - pos: -35.5,-47.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20623 - type: ClosetToolFilled - components: - - pos: -36.5,-47.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20624 - type: Rack - components: - - pos: -37.5,-47.5 - parent: 82 - type: Transform -- uid: 20625 - type: Rack - components: - - pos: -38.5,-47.5 - parent: 82 - type: Transform -- uid: 20626 - type: MaintenanceFluffSpawner - components: - - pos: -38.5,-47.5 - parent: 82 - type: Transform -- uid: 20627 - type: MaintenanceFluffSpawner - components: - - pos: -37.5,-47.5 - parent: 82 - type: Transform -- uid: 20628 - type: Rack - components: - - pos: -19.5,-45.5 - parent: 82 - type: Transform -- uid: 20629 - type: Rack - components: - - pos: -20.5,-45.5 - parent: 82 - type: Transform -- uid: 20630 - type: MaintenanceWeaponSpawner - components: - - pos: -19.5,-45.5 - parent: 82 - type: Transform -- uid: 20631 - type: MaintenanceToolSpawner - components: - - pos: -20.5,-45.5 - parent: 82 - type: Transform -- uid: 20632 - type: WaterTankFull - components: - - pos: -48.5,-47.5 - parent: 82 - type: Transform -- uid: 20633 - type: WeldingFuelTankFull - components: - - pos: -47.5,-47.5 - parent: 82 - type: Transform -- uid: 20634 - type: Barricade - components: - - pos: -50.5,-39.5 - parent: 82 - type: Transform -- uid: 20635 - type: ClothingOuterCoatJensen - components: - - pos: -50.59886,-40.383614 - parent: 82 - type: Transform -- uid: 20636 - type: ClothingShoesBootsCombat - components: - - pos: -50.40442,-40.619724 - parent: 82 - type: Transform -- uid: 20637 - type: Rack - components: - - pos: -45.5,-37.5 - parent: 82 - type: Transform -- uid: 20638 - type: MaintenanceToolSpawner - components: - - pos: -45.5,-37.5 - parent: 82 - type: Transform -- uid: 20639 - type: ClosetMaintenanceFilledRandom - components: - - pos: -46.5,-40.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20640 - type: GasPipeStraight - components: - - pos: -50.5,-36.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20641 - type: GasPipeStraight - components: - - pos: -48.5,-36.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20642 - type: Rack - components: - - pos: -55.5,-35.5 - parent: 82 - type: Transform -- uid: 20643 - type: MaintenanceFluffSpawner - components: - - pos: -55.5,-35.5 - parent: 82 - type: Transform -- uid: 20644 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-47.5 - parent: 82 - type: Transform -- uid: 20645 - type: Table - components: - - pos: -44.5,-47.5 - parent: 82 - type: Transform -- uid: 20646 - type: RandomDrinkGlass - components: - - pos: -44.5,-47.5 - parent: 82 - type: Transform -- uid: 20647 - type: OxygenCanister - components: - - pos: -50.5,-47.5 - parent: 82 - type: Transform -- uid: 20648 - type: NitrogenCanister - components: - - pos: -51.5,-47.5 - parent: 82 - type: Transform -- uid: 20649 - type: NitrogenTankFilled - components: - - pos: -52.64665,-47.38337 - parent: 82 - type: Transform -- uid: 20650 - type: NitrogenTankFilled - components: - - pos: -52.35498,-47.5917 - parent: 82 - type: Transform -- uid: 20651 - type: Rack - components: - - pos: -52.5,-47.5 - parent: 82 - type: Transform -- uid: 20652 - type: MaintenanceWeaponSpawner - components: - - pos: -53.5,-47.5 - parent: 82 - type: Transform -- uid: 20653 - type: VendingMachineHydrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -58.5,-38.5 - parent: 82 - type: Transform -- uid: 20654 - type: VendingMachineSeedsUnlocked - components: - - flags: SessionSpecific - type: MetaData - - pos: -58.5,-39.5 - parent: 82 - type: Transform -- uid: 20655 - type: CapacitorStockPart - components: - - pos: -63.308983,-42.342358 - parent: 82 - type: Transform -- uid: 20656 - type: Rack - components: - - pos: -33.5,27.5 - parent: 82 - type: Transform -- uid: 20657 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -33.5,25.5 - parent: 82 - type: Transform -- uid: 20658 - type: ClosetEmergencyFilledRandom - components: - - pos: 29.5,19.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20659 - type: ClosetFireFilled - components: - - pos: 28.5,19.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20660 - type: ClosetMaintenanceFilledRandom - components: - - pos: 27.5,19.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20661 - type: Rack - components: - - pos: 26.5,19.5 - parent: 82 - type: Transform -- uid: 20662 - type: MaintenanceFluffSpawner - components: - - pos: 26.5,19.5 - parent: 82 - type: Transform -- uid: 20663 - type: Table - components: - - pos: 10.5,42.5 - parent: 82 - type: Transform -- uid: 20664 - type: Rack - components: - - pos: 7.5,43.5 - parent: 82 - type: Transform -- uid: 20665 - type: ToolboxElectricalFilled - components: - - pos: 7.4917583,43.59743 - parent: 82 - type: Transform -- uid: 20666 - type: Rack - components: - - pos: 22.5,61.5 - parent: 82 - type: Transform -- uid: 20667 - type: ClothingBeltUtilityFilled - components: - - pos: 22.492998,61.632133 - parent: 82 - type: Transform -- uid: 20668 - type: TableReinforcedGlass - components: - - pos: 29.5,61.5 - parent: 82 - type: Transform -- uid: 20669 - type: CableApcExtension - components: - - pos: 21.5,-83.5 - parent: 82 - type: Transform -- uid: 20670 - type: Wrench - components: - - pos: 29.503666,61.507133 - parent: 82 - type: Transform -- uid: 20671 - type: GasVentScrubber - components: - - pos: 3.5,-3.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20672 - type: ChairOfficeLight - components: - - pos: 27.5,58.5 - parent: 82 - type: Transform -- uid: 20673 - type: ChairOfficeLight - components: - - pos: 26.5,58.5 - parent: 82 - type: Transform -- uid: 20674 - type: AirlockChapelGlassLocked - components: - - pos: -18.5,12.5 - parent: 82 - type: Transform -- uid: 20675 - type: AirlockMaintChapelLocked - components: - - pos: -18.5,7.5 - parent: 82 - type: Transform -- uid: 20676 - type: AirlockChapelLocked - components: - - pos: -16.5,9.5 - parent: 82 - type: Transform -- uid: 20677 - type: AirlockMaintLocked - components: - - pos: -6.5,-13.5 - parent: 82 - type: Transform -- uid: 20678 - type: AirlockMaintLocked - components: - - pos: -7.5,-5.5 - parent: 82 - type: Transform -- uid: 20679 - type: AirlockEngineeringLocked - components: - - pos: -13.5,-15.5 - parent: 82 - type: Transform -- uid: 20680 - type: WeldingFuelTankFull - components: - - pos: -8.5,-12.5 - parent: 82 - type: Transform -- uid: 20681 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 78.5,8.5 - parent: 82 - type: Transform -- uid: 20682 - type: AirlockKitchenGlassLocked - components: - - pos: -36.5,-8.5 - parent: 82 - type: Transform -- uid: 20683 - type: DisposalTrunk - components: - - pos: -27.5,-10.5 - parent: 82 - type: Transform -- uid: 20684 - type: CarpetPurple - components: - - pos: -25.5,-6.5 - parent: 82 - type: Transform -- uid: 20685 - type: CarpetPurple - components: - - pos: -22.5,-14.5 - parent: 82 - type: Transform -- uid: 20686 - type: CableApcExtension - components: - - pos: -43.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20687 - type: AirlockAtmosphericsLocked - components: - - pos: -52.5,-22.5 - parent: 82 - type: Transform -- uid: 20688 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-22.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 20689 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-23.5 - parent: 82 - type: Transform -- uid: 20690 - type: ChairOfficeDark - components: - - pos: -63.5,-25.5 - parent: 82 - type: Transform -- uid: 20691 - type: ChairOfficeDark - components: - - pos: -64.5,-25.5 - parent: 82 - type: Transform -- uid: 20692 - type: Catwalk - components: - - pos: -84.5,-25.5 - parent: 82 - type: Transform -- uid: 20693 - type: Catwalk - components: - - pos: -83.5,-25.5 - parent: 82 - type: Transform -- uid: 20694 - type: Catwalk - components: - - pos: -82.5,-25.5 - parent: 82 - type: Transform -- uid: 20695 - type: Catwalk - components: - - pos: -81.5,-25.5 - parent: 82 - type: Transform -- uid: 20696 - type: Catwalk - components: - - pos: -80.5,-25.5 - parent: 82 - type: Transform -- uid: 20697 - type: Catwalk - components: - - pos: -79.5,-25.5 - parent: 82 - type: Transform -- uid: 20698 - type: Catwalk - components: - - pos: -78.5,-25.5 - parent: 82 - type: Transform -- uid: 20699 - type: Catwalk - components: - - pos: -77.5,-25.5 - parent: 82 - type: Transform -- uid: 20700 - type: Catwalk - components: - - pos: -76.5,-25.5 - parent: 82 - type: Transform -- uid: 20701 - type: Catwalk - components: - - pos: -75.5,-25.5 - parent: 82 - type: Transform -- uid: 20702 - type: Catwalk - components: - - pos: -74.5,-25.5 - parent: 82 - type: Transform -- uid: 20703 - type: Catwalk - components: - - pos: -73.5,-25.5 - parent: 82 - type: Transform -- uid: 20704 - type: Catwalk - components: - - pos: -72.5,-25.5 - parent: 82 - type: Transform -- uid: 20705 - type: Catwalk - components: - - pos: -71.5,-25.5 - parent: 82 - type: Transform -- uid: 20706 - type: Catwalk - components: - - pos: -70.5,-25.5 - parent: 82 - type: Transform -- uid: 20707 - type: Catwalk - components: - - pos: -69.5,-25.5 - parent: 82 - type: Transform -- uid: 20708 - type: Catwalk - components: - - pos: -68.5,-25.5 - parent: 82 - type: Transform -- uid: 20709 - type: Catwalk - components: - - pos: -67.5,-25.5 - parent: 82 - type: Transform -- uid: 20710 - type: Catwalk - components: - - pos: -74.5,-24.5 - parent: 82 - type: Transform -- uid: 20711 - type: Catwalk - components: - - pos: -74.5,-23.5 - parent: 82 - type: Transform -- uid: 20712 - type: Catwalk - components: - - pos: -74.5,-22.5 - parent: 82 - type: Transform -- uid: 20713 - type: Catwalk - components: - - pos: -74.5,-21.5 - parent: 82 - type: Transform -- uid: 20714 - type: Catwalk - components: - - pos: -74.5,-20.5 - parent: 82 - type: Transform -- uid: 20715 - type: Catwalk - components: - - pos: -74.5,-19.5 - parent: 82 - type: Transform -- uid: 20716 - type: Catwalk - components: - - pos: -74.5,-18.5 - parent: 82 - type: Transform -- uid: 20717 - type: Catwalk - components: - - pos: -74.5,-17.5 - parent: 82 - type: Transform -- uid: 20718 - type: Catwalk - components: - - pos: -74.5,-16.5 - parent: 82 - type: Transform -- uid: 20719 - type: Catwalk - components: - - pos: -78.5,-24.5 - parent: 82 - type: Transform -- uid: 20720 - type: Catwalk - components: - - pos: -78.5,-23.5 - parent: 82 - type: Transform -- uid: 20721 - type: Catwalk - components: - - pos: -78.5,-22.5 - parent: 82 - type: Transform -- uid: 20722 - type: Catwalk - components: - - pos: -78.5,-21.5 - parent: 82 - type: Transform -- uid: 20723 - type: Catwalk - components: - - pos: -78.5,-20.5 - parent: 82 - type: Transform -- uid: 20724 - type: Catwalk - components: - - pos: -78.5,-19.5 - parent: 82 - type: Transform -- uid: 20725 - type: Catwalk - components: - - pos: -78.5,-18.5 - parent: 82 - type: Transform -- uid: 20726 - type: Catwalk - components: - - pos: -78.5,-17.5 - parent: 82 - type: Transform -- uid: 20727 - type: Catwalk - components: - - pos: -78.5,-16.5 - parent: 82 - type: Transform -- uid: 20728 - type: Catwalk - components: - - pos: -82.5,-24.5 - parent: 82 - type: Transform -- uid: 20729 - type: Catwalk - components: - - pos: -82.5,-23.5 - parent: 82 - type: Transform -- uid: 20730 - type: Catwalk - components: - - pos: -82.5,-22.5 - parent: 82 - type: Transform -- uid: 20731 - type: Catwalk - components: - - pos: -82.5,-21.5 - parent: 82 - type: Transform -- uid: 20732 - type: Catwalk - components: - - pos: -82.5,-20.5 - parent: 82 - type: Transform -- uid: 20733 - type: Catwalk - components: - - pos: -82.5,-19.5 - parent: 82 - type: Transform -- uid: 20734 - type: Catwalk - components: - - pos: -82.5,-18.5 - parent: 82 - type: Transform -- uid: 20735 - type: Catwalk - components: - - pos: -82.5,-17.5 - parent: 82 - type: Transform -- uid: 20736 - type: Catwalk - components: - - pos: -82.5,-16.5 - parent: 82 - type: Transform -- uid: 20737 - type: Catwalk - components: - - pos: -82.5,-26.5 - parent: 82 - type: Transform -- uid: 20738 - type: Catwalk - components: - - pos: -82.5,-27.5 - parent: 82 - type: Transform -- uid: 20739 - type: Catwalk - components: - - pos: -82.5,-28.5 - parent: 82 - type: Transform -- uid: 20740 - type: Catwalk - components: - - pos: -82.5,-29.5 - parent: 82 - type: Transform -- uid: 20741 - type: Catwalk - components: - - pos: -82.5,-30.5 - parent: 82 - type: Transform -- uid: 20742 - type: Catwalk - components: - - pos: -82.5,-31.5 - parent: 82 - type: Transform -- uid: 20743 - type: Catwalk - components: - - pos: -82.5,-32.5 - parent: 82 - type: Transform -- uid: 20744 - type: Catwalk - components: - - pos: -82.5,-33.5 - parent: 82 - type: Transform -- uid: 20745 - type: Catwalk - components: - - pos: -82.5,-34.5 - parent: 82 - type: Transform -- uid: 20746 - type: Catwalk - components: - - pos: -78.5,-34.5 - parent: 82 - type: Transform -- uid: 20747 - type: Catwalk - components: - - pos: -78.5,-33.5 - parent: 82 - type: Transform -- uid: 20748 - type: Catwalk - components: - - pos: -78.5,-32.5 - parent: 82 - type: Transform -- uid: 20749 - type: Catwalk - components: - - pos: -78.5,-31.5 - parent: 82 - type: Transform -- uid: 20750 - type: Catwalk - components: - - pos: -78.5,-30.5 - parent: 82 - type: Transform -- uid: 20751 - type: Catwalk - components: - - pos: -78.5,-29.5 - parent: 82 - type: Transform -- uid: 20752 - type: Catwalk - components: - - pos: -78.5,-28.5 - parent: 82 - type: Transform -- uid: 20753 - type: Catwalk - components: - - pos: -78.5,-27.5 - parent: 82 - type: Transform -- uid: 20754 - type: Catwalk - components: - - pos: -78.5,-26.5 - parent: 82 - type: Transform -- uid: 20755 - type: Catwalk - components: - - pos: -74.5,-34.5 - parent: 82 - type: Transform -- uid: 20756 - type: Catwalk - components: - - pos: -74.5,-33.5 - parent: 82 - type: Transform -- uid: 20757 - type: Catwalk - components: - - pos: -74.5,-32.5 - parent: 82 - type: Transform -- uid: 20758 - type: Catwalk - components: - - pos: -74.5,-31.5 - parent: 82 - type: Transform -- uid: 20759 - type: Catwalk - components: - - pos: -74.5,-30.5 - parent: 82 - type: Transform -- uid: 20760 - type: Catwalk - components: - - pos: -74.5,-29.5 - parent: 82 - type: Transform -- uid: 20761 - type: Catwalk - components: - - pos: -74.5,-28.5 - parent: 82 - type: Transform -- uid: 20762 - type: Catwalk - components: - - pos: -74.5,-27.5 - parent: 82 - type: Transform -- uid: 20763 - type: Catwalk - components: - - pos: -74.5,-26.5 - parent: 82 - type: Transform -- uid: 20764 - type: Grille - components: - - pos: -71.5,-36.5 - parent: 82 - type: Transform -- uid: 20765 - type: Grille - components: - - pos: -72.5,-36.5 - parent: 82 - type: Transform -- uid: 20766 - type: Grille - components: - - pos: -73.5,-36.5 - parent: 82 - type: Transform -- uid: 20767 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -75.5,-36.5 - parent: 82 - type: Transform -- uid: 20768 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -80.5,-36.5 - parent: 82 - type: Transform -- uid: 20769 - type: Grille - components: - - pos: -76.5,-36.5 - parent: 82 - type: Transform -- uid: 20770 - type: Grille - components: - - pos: -77.5,-36.5 - parent: 82 - type: Transform -- uid: 20771 - type: Grille - components: - - pos: -78.5,-36.5 - parent: 82 - type: Transform -- uid: 20772 - type: Grille - components: - - pos: -79.5,-36.5 - parent: 82 - type: Transform -- uid: 20773 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -74.5,-36.5 - parent: 82 - type: Transform -- uid: 20774 - type: Grille - components: - - pos: -81.5,-36.5 - parent: 82 - type: Transform -- uid: 20775 - type: Grille - components: - - pos: -82.5,-36.5 - parent: 82 - type: Transform -- uid: 20776 - type: Grille - components: - - pos: -83.5,-36.5 - parent: 82 - type: Transform -- uid: 20777 - type: Grille - components: - - pos: -84.5,-36.5 - parent: 82 - type: Transform -- uid: 20778 - type: Grille - components: - - pos: -85.5,-36.5 - parent: 82 - type: Transform -- uid: 20779 - type: Grille - components: - - pos: -85.5,-35.5 - parent: 82 - type: Transform -- uid: 20780 - type: Grille - components: - - pos: -85.5,-34.5 - parent: 82 - type: Transform -- uid: 20781 - type: GrilleBroken - components: - - pos: -85.5,-33.5 - parent: 82 - type: Transform -- uid: 20782 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -85.5,-32.5 - parent: 82 - type: Transform -- uid: 20783 - type: Grille - components: - - pos: -85.5,-31.5 - parent: 82 - type: Transform -- uid: 20784 - type: Grille - components: - - pos: -85.5,-30.5 - parent: 82 - type: Transform -- uid: 20785 - type: Grille - components: - - pos: -85.5,-29.5 - parent: 82 - type: Transform -- uid: 20786 - type: Grille - components: - - pos: -85.5,-28.5 - parent: 82 - type: Transform -- uid: 20787 - type: Grille - components: - - pos: -86.5,-28.5 - parent: 82 - type: Transform -- uid: 20788 - type: Grille - components: - - pos: -87.5,-28.5 - parent: 82 - type: Transform -- uid: 20789 - type: Grille - components: - - pos: -87.5,-27.5 - parent: 82 - type: Transform -- uid: 20790 - type: GrilleBroken - components: - - pos: -87.5,-26.5 - parent: 82 - type: Transform -- uid: 20791 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -87.5,-23.5 - parent: 82 - type: Transform -- uid: 20792 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -85.5,-20.5 - parent: 82 - type: Transform -- uid: 20793 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -85.5,-15.5 - parent: 82 - type: Transform -- uid: 20794 - type: Grille - components: - - pos: -87.5,-22.5 - parent: 82 - type: Transform -- uid: 20795 - type: Grille - components: - - pos: -86.5,-22.5 - parent: 82 - type: Transform -- uid: 20796 - type: Grille - components: - - pos: -85.5,-22.5 - parent: 82 - type: Transform -- uid: 20797 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -80.5,-14.5 - parent: 82 - type: Transform -- uid: 20798 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -79.5,-14.5 - parent: 82 - type: Transform -- uid: 20799 - type: Grille - components: - - pos: -85.5,-19.5 - parent: 82 - type: Transform -- uid: 20800 - type: Grille - components: - - pos: -85.5,-18.5 - parent: 82 - type: Transform -- uid: 20801 - type: Grille - components: - - pos: -85.5,-17.5 - parent: 82 - type: Transform -- uid: 20802 - type: Grille - components: - - pos: -85.5,-16.5 - parent: 82 - type: Transform -- uid: 20803 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -75.5,-14.5 - parent: 82 - type: Transform -- uid: 20804 - type: Grille - components: - - pos: -85.5,-14.5 - parent: 82 - type: Transform -- uid: 20805 - type: Grille - components: - - pos: -84.5,-14.5 - parent: 82 - type: Transform -- uid: 20806 - type: Grille - components: - - pos: -83.5,-14.5 - parent: 82 - type: Transform -- uid: 20807 - type: Grille - components: - - pos: -82.5,-14.5 - parent: 82 - type: Transform -- uid: 20808 - type: Grille - components: - - pos: -81.5,-14.5 - parent: 82 - type: Transform -- uid: 20809 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-14.5 - parent: 82 - type: Transform -- uid: 20810 - type: GrilleBroken - components: - - pos: -30.5,-58.5 - parent: 82 - type: Transform -- uid: 20811 - type: Grille - components: - - pos: -78.5,-14.5 - parent: 82 - type: Transform -- uid: 20812 - type: Grille - components: - - pos: -77.5,-14.5 - parent: 82 - type: Transform -- uid: 20813 - type: Grille - components: - - pos: -76.5,-14.5 - parent: 82 - type: Transform -- uid: 20814 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-59.5 - parent: 82 - type: Transform -- uid: 20815 - type: Grille - components: - - pos: -74.5,-14.5 - parent: 82 - type: Transform -- uid: 20816 - type: Grille - components: - - pos: -73.5,-14.5 - parent: 82 - type: Transform -- uid: 20817 - type: Grille - components: - - pos: -72.5,-14.5 - parent: 82 - type: Transform -- uid: 20818 - type: Grille - components: - - pos: -71.5,-14.5 - parent: 82 - type: Transform -- uid: 20819 - type: SolarPanel - components: - - pos: -75.5,-16.5 - parent: 82 - type: Transform -- uid: 20820 - type: SolarPanel - components: - - pos: -75.5,-17.5 - parent: 82 - type: Transform -- uid: 20821 - type: SolarPanel - components: - - pos: -75.5,-18.5 - parent: 82 - type: Transform -- uid: 20822 - type: SolarPanel - components: - - pos: -75.5,-19.5 - parent: 82 - type: Transform -- uid: 20823 - type: SolarPanel - components: - - pos: -75.5,-20.5 - parent: 82 - type: Transform -- uid: 20824 - type: SolarPanel - components: - - pos: -75.5,-21.5 - parent: 82 - type: Transform -- uid: 20825 - type: SolarPanel - components: - - pos: -75.5,-22.5 - parent: 82 - type: Transform -- uid: 20826 - type: SolarPanel - components: - - pos: -75.5,-23.5 - parent: 82 - type: Transform -- uid: 20827 - type: SolarPanel - components: - - pos: -73.5,-16.5 - parent: 82 - type: Transform -- uid: 20828 - type: SolarPanel - components: - - pos: -73.5,-17.5 - parent: 82 - type: Transform -- uid: 20829 - type: SolarPanel - components: - - pos: -73.5,-18.5 - parent: 82 - type: Transform -- uid: 20830 - type: SolarPanel - components: - - pos: -73.5,-19.5 - parent: 82 - type: Transform -- uid: 20831 - type: SolarPanel - components: - - pos: -73.5,-20.5 - parent: 82 - type: Transform -- uid: 20832 - type: SolarPanel - components: - - pos: -73.5,-21.5 - parent: 82 - type: Transform -- uid: 20833 - type: SolarPanel - components: - - pos: -73.5,-22.5 - parent: 82 - type: Transform -- uid: 20834 - type: SolarPanel - components: - - pos: -73.5,-23.5 - parent: 82 - type: Transform -- uid: 20835 - type: SolarPanel - components: - - pos: -79.5,-16.5 - parent: 82 - type: Transform -- uid: 20836 - type: SolarPanel - components: - - pos: -79.5,-17.5 - parent: 82 - type: Transform -- uid: 20837 - type: SolarPanel - components: - - pos: -79.5,-18.5 - parent: 82 - type: Transform -- uid: 20838 - type: SolarPanel - components: - - pos: -79.5,-19.5 - parent: 82 - type: Transform -- uid: 20839 - type: SolarPanel - components: - - pos: -79.5,-20.5 - parent: 82 - type: Transform -- uid: 20840 - type: SolarPanel - components: - - pos: -79.5,-21.5 - parent: 82 - type: Transform -- uid: 20841 - type: SolarPanel - components: - - pos: -79.5,-22.5 - parent: 82 - type: Transform -- uid: 20842 - type: SolarPanel - components: - - pos: -79.5,-23.5 - parent: 82 - type: Transform -- uid: 20843 - type: SolarPanel - components: - - pos: -77.5,-16.5 - parent: 82 - type: Transform -- uid: 20844 - type: SolarPanel - components: - - pos: -77.5,-17.5 - parent: 82 - type: Transform -- uid: 20845 - type: SolarPanel - components: - - pos: -77.5,-18.5 - parent: 82 - type: Transform -- uid: 20846 - type: SolarPanel - components: - - pos: -77.5,-19.5 - parent: 82 - type: Transform -- uid: 20847 - type: SolarPanel - components: - - pos: -77.5,-20.5 - parent: 82 - type: Transform -- uid: 20848 - type: SolarPanel - components: - - pos: -77.5,-21.5 - parent: 82 - type: Transform -- uid: 20849 - type: SolarPanel - components: - - pos: -77.5,-22.5 - parent: 82 - type: Transform -- uid: 20850 - type: SolarPanel - components: - - pos: -77.5,-23.5 - parent: 82 - type: Transform -- uid: 20851 - type: SolarPanel - components: - - pos: -81.5,-16.5 - parent: 82 - type: Transform -- uid: 20852 - type: SolarPanel - components: - - pos: -81.5,-17.5 - parent: 82 - type: Transform -- uid: 20853 - type: SolarPanel - components: - - pos: -81.5,-18.5 - parent: 82 - type: Transform -- uid: 20854 - type: SolarPanel - components: - - pos: -81.5,-19.5 - parent: 82 - type: Transform -- uid: 20855 - type: SolarPanel - components: - - pos: -81.5,-20.5 - parent: 82 - type: Transform -- uid: 20856 - type: SolarPanel - components: - - pos: -81.5,-21.5 - parent: 82 - type: Transform -- uid: 20857 - type: SolarPanel - components: - - pos: -81.5,-22.5 - parent: 82 - type: Transform -- uid: 20858 - type: SolarPanel - components: - - pos: -81.5,-23.5 - parent: 82 - type: Transform -- uid: 20859 - type: SolarPanel - components: - - pos: -83.5,-16.5 - parent: 82 - type: Transform -- uid: 20860 - type: SolarPanel - components: - - pos: -83.5,-17.5 - parent: 82 - type: Transform -- uid: 20861 - type: SolarPanel - components: - - pos: -83.5,-18.5 - parent: 82 - type: Transform -- uid: 20862 - type: SolarPanel - components: - - pos: -83.5,-19.5 - parent: 82 - type: Transform -- uid: 20863 - type: SolarPanel - components: - - pos: -83.5,-20.5 - parent: 82 - type: Transform -- uid: 20864 - type: SolarPanel - components: - - pos: -83.5,-21.5 - parent: 82 - type: Transform -- uid: 20865 - type: SolarPanel - components: - - pos: -83.5,-22.5 - parent: 82 - type: Transform -- uid: 20866 - type: SolarPanel - components: - - pos: -83.5,-23.5 - parent: 82 - type: Transform -- uid: 20867 - type: SolarPanel - components: - - pos: -83.5,-27.5 - parent: 82 - type: Transform -- uid: 20868 - type: SolarPanel - components: - - pos: -83.5,-28.5 - parent: 82 - type: Transform -- uid: 20869 - type: SolarPanel - components: - - pos: -83.5,-29.5 - parent: 82 - type: Transform -- uid: 20870 - type: SolarPanel - components: - - pos: -83.5,-30.5 - parent: 82 - type: Transform -- uid: 20871 - type: SolarPanel - components: - - pos: -83.5,-31.5 - parent: 82 - type: Transform -- uid: 20872 - type: SolarPanel - components: - - pos: -83.5,-32.5 - parent: 82 - type: Transform -- uid: 20873 - type: SolarPanel - components: - - pos: -83.5,-33.5 - parent: 82 - type: Transform -- uid: 20874 - type: SolarPanel - components: - - pos: -83.5,-34.5 - parent: 82 - type: Transform -- uid: 20875 - type: SolarPanel - components: - - pos: -81.5,-27.5 - parent: 82 - type: Transform -- uid: 20876 - type: SolarPanel - components: - - pos: -81.5,-28.5 - parent: 82 - type: Transform -- uid: 20877 - type: SolarPanel - components: - - pos: -81.5,-29.5 - parent: 82 - type: Transform -- uid: 20878 - type: SolarPanel - components: - - pos: -81.5,-30.5 - parent: 82 - type: Transform -- uid: 20879 - type: SolarPanel - components: - - pos: -81.5,-31.5 - parent: 82 - type: Transform -- uid: 20880 - type: SolarPanel - components: - - pos: -81.5,-32.5 - parent: 82 - type: Transform -- uid: 20881 - type: SolarPanel - components: - - pos: -81.5,-33.5 - parent: 82 - type: Transform -- uid: 20882 - type: SolarPanel - components: - - pos: -81.5,-34.5 - parent: 82 - type: Transform -- uid: 20883 - type: SolarPanel - components: - - pos: -79.5,-27.5 - parent: 82 - type: Transform -- uid: 20884 - type: SolarPanel - components: - - pos: -79.5,-28.5 - parent: 82 - type: Transform -- uid: 20885 - type: SolarPanel - components: - - pos: -79.5,-29.5 - parent: 82 - type: Transform -- uid: 20886 - type: SolarPanel - components: - - pos: -79.5,-30.5 - parent: 82 - type: Transform -- uid: 20887 - type: SolarPanel - components: - - pos: -79.5,-31.5 - parent: 82 - type: Transform -- uid: 20888 - type: SolarPanel - components: - - pos: -79.5,-32.5 - parent: 82 - type: Transform -- uid: 20889 - type: SolarPanel - components: - - pos: -79.5,-33.5 - parent: 82 - type: Transform -- uid: 20890 - type: SolarPanel - components: - - pos: -79.5,-34.5 - parent: 82 - type: Transform -- uid: 20891 - type: SolarPanel - components: - - pos: -77.5,-27.5 - parent: 82 - type: Transform -- uid: 20892 - type: SolarPanel - components: - - pos: -77.5,-28.5 - parent: 82 - type: Transform -- uid: 20893 - type: SolarPanel - components: - - pos: -77.5,-29.5 - parent: 82 - type: Transform -- uid: 20894 - type: SolarPanel - components: - - pos: -77.5,-30.5 - parent: 82 - type: Transform -- uid: 20895 - type: SolarPanel - components: - - pos: -77.5,-31.5 - parent: 82 - type: Transform -- uid: 20896 - type: SolarPanel - components: - - pos: -77.5,-32.5 - parent: 82 - type: Transform -- uid: 20897 - type: SolarPanel - components: - - pos: -77.5,-33.5 - parent: 82 - type: Transform -- uid: 20898 - type: SolarPanel - components: - - pos: -77.5,-34.5 - parent: 82 - type: Transform -- uid: 20899 - type: SolarPanel - components: - - pos: -75.5,-27.5 - parent: 82 - type: Transform -- uid: 20900 - type: SolarPanel - components: - - pos: -75.5,-28.5 - parent: 82 - type: Transform -- uid: 20901 - type: SolarPanel - components: - - pos: -75.5,-29.5 - parent: 82 - type: Transform -- uid: 20902 - type: SolarPanel - components: - - pos: -75.5,-30.5 - parent: 82 - type: Transform -- uid: 20903 - type: SolarPanel - components: - - pos: -75.5,-31.5 - parent: 82 - type: Transform -- uid: 20904 - type: SolarPanel - components: - - pos: -75.5,-32.5 - parent: 82 - type: Transform -- uid: 20905 - type: SolarPanel - components: - - pos: -75.5,-33.5 - parent: 82 - type: Transform -- uid: 20906 - type: SolarPanel - components: - - pos: -75.5,-34.5 - parent: 82 - type: Transform -- uid: 20907 - type: SolarPanel - components: - - pos: -73.5,-27.5 - parent: 82 - type: Transform -- uid: 20908 - type: SolarPanel - components: - - pos: -73.5,-28.5 - parent: 82 - type: Transform -- uid: 20909 - type: SolarPanel - components: - - pos: -73.5,-29.5 - parent: 82 - type: Transform -- uid: 20910 - type: SolarPanel - components: - - pos: -73.5,-30.5 - parent: 82 - type: Transform -- uid: 20911 - type: SolarPanel - components: - - pos: -73.5,-31.5 - parent: 82 - type: Transform -- uid: 20912 - type: SolarPanel - components: - - pos: -73.5,-32.5 - parent: 82 - type: Transform -- uid: 20913 - type: SolarPanel - components: - - pos: -73.5,-33.5 - parent: 82 - type: Transform -- uid: 20914 - type: SolarPanel - components: - - pos: -73.5,-34.5 - parent: 82 - type: Transform -- uid: 20915 - type: SolarTracker - components: - - pos: -85.5,-25.5 - parent: 82 - type: Transform -- uid: 20916 - type: CableHV - components: - - pos: -67.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20917 - type: CableHV - components: - - pos: -68.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20918 - type: CableHV - components: - - pos: -83.5,-23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20919 - type: CableHV - components: - - pos: -83.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20920 - type: CableHV - components: - - pos: -83.5,-21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20921 - type: CableHV - components: - - pos: -83.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20922 - type: CableHV - components: - - pos: -83.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20923 - type: CableHV - components: - - pos: -83.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20924 - type: CableHV - components: - - pos: -83.5,-17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20925 - type: CableHV - components: - - pos: -83.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20926 - type: CableHV - components: - - pos: -81.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20927 - type: CableHV - components: - - pos: -81.5,-17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20928 - type: CableHV - components: - - pos: -81.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20929 - type: CableHV - components: - - pos: -81.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20930 - type: CableHV - components: - - pos: -81.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20931 - type: CableHV - components: - - pos: -81.5,-21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20932 - type: CableHV - components: - - pos: -81.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20933 - type: CableHV - components: - - pos: -81.5,-23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20934 - type: CableHV - components: - - pos: -79.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20935 - type: CableHV - components: - - pos: -79.5,-17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20936 - type: CableHV - components: - - pos: -79.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20937 - type: CableHV - components: - - pos: -79.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20938 - type: CableHV - components: - - pos: -79.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20939 - type: CableHV - components: - - pos: -79.5,-21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20940 - type: CableHV - components: - - pos: -79.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20941 - type: CableHV - components: - - pos: -79.5,-23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20942 - type: CableHV - components: - - pos: -77.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20943 - type: CableHV - components: - - pos: -77.5,-17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20944 - type: CableHV - components: - - pos: -77.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20945 - type: CableHV - components: - - pos: -77.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20946 - type: CableHV - components: - - pos: -77.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20947 - type: CableHV - components: - - pos: -77.5,-21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20948 - type: CableHV - components: - - pos: -77.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20949 - type: CableHV - components: - - pos: -77.5,-23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20950 - type: CableHV - components: - - pos: -75.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20951 - type: CableHV - components: - - pos: -75.5,-17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20952 - type: CableHV - components: - - pos: -75.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20953 - type: CableHV - components: - - pos: -75.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20954 - type: CableHV - components: - - pos: -75.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20955 - type: CableHV - components: - - pos: -75.5,-21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20956 - type: CableHV - components: - - pos: -75.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20957 - type: CableHV - components: - - pos: -75.5,-23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20958 - type: CableHV - components: - - pos: -85.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20959 - type: CableHV - components: - - pos: -84.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20960 - type: CableHV - components: - - pos: -83.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20961 - type: CableHV - components: - - pos: -82.5,-25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20962 - type: CableHV - components: - - pos: -82.5,-24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20963 - type: CableHV - components: - - pos: -82.5,-26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20964 - type: CableHV - components: - - pos: -82.5,-23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20965 - type: CableHV - components: - - pos: -82.5,-27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20966 - type: CableHV - components: - - pos: -83.5,-27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20967 - type: CableHV - components: - - pos: -83.5,-28.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20968 - type: CableHV - components: - - pos: -83.5,-29.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20969 - type: CableHV - components: - - pos: -83.5,-30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20970 - type: CableHV - components: - - pos: -83.5,-31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20971 - type: CableHV - components: - - pos: -83.5,-32.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20972 - type: CableHV - components: - - pos: -83.5,-33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20973 - type: CableHV - components: - - pos: -83.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20974 - type: CableHV - components: - - pos: -81.5,-27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20975 - type: CableHV - components: - - pos: -81.5,-28.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20976 - type: CableHV - components: - - pos: -81.5,-29.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20977 - type: CableHV - components: - - pos: -81.5,-30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20978 - type: CableHV - components: - - pos: -81.5,-31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20979 - type: CableHV - components: - - pos: -81.5,-32.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20980 - type: CableHV - components: - - pos: -81.5,-33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20981 - type: CableHV - components: - - pos: -81.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20982 - type: CableHV - components: - - pos: -79.5,-27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20983 - type: CableHV - components: - - pos: -79.5,-28.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20984 - type: CableHV - components: - - pos: -79.5,-29.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20985 - type: CableHV - components: - - pos: -79.5,-30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20986 - type: CableHV - components: - - pos: -79.5,-31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20987 - type: CableHV - components: - - pos: -79.5,-32.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20988 - type: CableHV - components: - - pos: -79.5,-33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20989 - type: CableHV - components: - - pos: -79.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20990 - type: CableHV - components: - - pos: -77.5,-27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20991 - type: CableHV - components: - - pos: -77.5,-28.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20992 - type: CableHV - components: - - pos: -77.5,-29.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20993 - type: CableHV - components: - - pos: -77.5,-30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20994 - type: CableHV - components: - - pos: -77.5,-31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20995 - type: CableHV - components: - - pos: -77.5,-32.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20996 - type: CableHV - components: - - pos: -77.5,-33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20997 - type: CableHV - components: - - pos: -77.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20998 - type: CableHV - components: - - pos: -78.5,-27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20999 - type: CableHV - components: - - pos: -75.5,-27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21000 - type: CableHV - components: - - pos: -75.5,-28.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21001 - type: CableHV - components: - - pos: -75.5,-29.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21002 - type: CableHV - components: - - pos: -75.5,-30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21003 - type: CableHV - components: - - pos: -75.5,-31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21004 - type: CableHV - components: - - pos: -75.5,-32.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21005 - type: CableHV - components: - - pos: -75.5,-33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21006 - type: CableHV - components: - - pos: -75.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21007 - type: CableHV - components: - - pos: -73.5,-27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21008 - type: CableHV - components: - - pos: -73.5,-28.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21009 - type: CableHV - components: - - pos: -73.5,-29.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21010 - type: CableHV - components: - - pos: -73.5,-30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21011 - type: CableHV - components: - - pos: -73.5,-31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21012 - type: CableHV - components: - - pos: -73.5,-32.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21013 - type: CableHV - components: - - pos: -73.5,-33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21014 - type: CableHV - components: - - pos: -73.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21015 - type: CableHV - components: - - pos: -74.5,-27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21016 - type: CableHV - components: - - pos: -73.5,-23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21017 - type: CableHV - components: - - pos: -73.5,-22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21018 - type: CableHV - components: - - pos: -73.5,-21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21019 - type: CableHV - components: - - pos: -73.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21020 - type: CableHV - components: - - pos: -73.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21021 - type: CableHV - components: - - pos: -73.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21022 - type: CableHV - components: - - pos: -73.5,-17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21023 - type: CableHV - components: - - pos: -73.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21024 - type: CableHV - components: - - pos: -74.5,-23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21025 - type: CableHV - components: - - pos: -78.5,-23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21026 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-60.5 - parent: 82 - type: Transform -- uid: 21027 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-61.5 - parent: 82 - type: Transform -- uid: 21028 - type: GrilleBroken - components: - - pos: -52.5,-58.5 - parent: 82 - type: Transform -- uid: 21029 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-63.5 - parent: 82 - type: Transform -- uid: 21030 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-64.5 - parent: 82 - type: Transform -- uid: 21031 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-65.5 - parent: 82 - type: Transform -- uid: 21032 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-66.5 - parent: 82 - type: Transform -- uid: 21033 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-67.5 - parent: 82 - type: Transform -- uid: 21034 - type: GrilleBroken - components: - - pos: -52.5,-62.5 - parent: 82 - type: Transform -- uid: 21035 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -52.5,-68.5 - parent: 82 - type: Transform -- uid: 21036 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-70.5 - parent: 82 - type: Transform -- uid: 21037 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-71.5 - parent: 82 - type: Transform -- uid: 21038 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-72.5 - parent: 82 - type: Transform -- uid: 21039 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-73.5 - parent: 82 - type: Transform -- uid: 21040 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-73.5 - parent: 82 - type: Transform -- uid: 21041 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-73.5 - parent: 82 - type: Transform -- uid: 21042 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-73.5 - parent: 82 - type: Transform -- uid: 21043 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-73.5 - parent: 82 - type: Transform -- uid: 21044 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-73.5 - parent: 82 - type: Transform -- uid: 21045 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-73.5 - parent: 82 - type: Transform -- uid: 21046 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-73.5 - parent: 82 - type: Transform -- uid: 21047 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-73.5 - parent: 82 - type: Transform -- uid: 21048 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-74.5 - parent: 82 - type: Transform -- uid: 21049 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-75.5 - parent: 82 - type: Transform -- uid: 21050 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-75.5 - parent: 82 - type: Transform -- uid: 21051 - type: GrilleBroken - components: - - pos: -52.5,-69.5 - parent: 82 - type: Transform -- uid: 21052 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-75.5 - parent: 82 - type: Transform -- uid: 21053 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-75.5 - parent: 82 - type: Transform -- uid: 21054 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-75.5 - parent: 82 - type: Transform -- uid: 21055 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-75.5 - parent: 82 - type: Transform -- uid: 21056 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-74.5 - parent: 82 - type: Transform -- uid: 21057 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-73.5 - parent: 82 - type: Transform -- uid: 21058 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-73.5 - parent: 82 - type: Transform -- uid: 21059 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -42.5,-75.5 - parent: 82 - type: Transform -- uid: 21060 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-73.5 - parent: 82 - type: Transform -- uid: 21061 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-73.5 - parent: 82 - type: Transform -- uid: 21062 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-73.5 - parent: 82 - type: Transform -- uid: 21063 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-73.5 - parent: 82 - type: Transform -- uid: 21064 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-73.5 - parent: 82 - type: Transform -- uid: 21065 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-73.5 - parent: 82 - type: Transform -- uid: 21066 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-72.5 - parent: 82 - type: Transform -- uid: 21067 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-71.5 - parent: 82 - type: Transform -- uid: 21068 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-70.5 - parent: 82 - type: Transform -- uid: 21069 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-69.5 - parent: 82 - type: Transform -- uid: 21070 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-68.5 - parent: 82 - type: Transform -- uid: 21071 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-73.5 - parent: 82 - type: Transform -- uid: 21072 - type: GrilleBroken - components: - - pos: -30.5,-67.5 - parent: 82 - type: Transform -- uid: 21073 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-65.5 - parent: 82 - type: Transform -- uid: 21074 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-64.5 - parent: 82 - type: Transform -- uid: 21075 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-63.5 - parent: 82 - type: Transform -- uid: 21076 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-62.5 - parent: 82 - type: Transform -- uid: 21077 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-61.5 - parent: 82 - type: Transform -- uid: 21078 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-60.5 - parent: 82 - type: Transform -- uid: 21079 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-59.5 - parent: 82 - type: Transform -- uid: 21080 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -30.5,-66.5 - parent: 82 - type: Transform -- uid: 21081 - type: Catwalk - components: - - pos: -50.5,-70.5 - parent: 82 - type: Transform -- uid: 21082 - type: Catwalk - components: - - pos: -49.5,-70.5 - parent: 82 - type: Transform -- uid: 21083 - type: Catwalk - components: - - pos: -48.5,-70.5 - parent: 82 - type: Transform -- uid: 21084 - type: Catwalk - components: - - pos: -47.5,-70.5 - parent: 82 - type: Transform -- uid: 21085 - type: Catwalk - components: - - pos: -46.5,-70.5 - parent: 82 - type: Transform -- uid: 21086 - type: Catwalk - components: - - pos: -45.5,-70.5 - parent: 82 - type: Transform -- uid: 21087 - type: Catwalk - components: - - pos: -44.5,-70.5 - parent: 82 - type: Transform -- uid: 21088 - type: Catwalk - components: - - pos: -43.5,-70.5 - parent: 82 - type: Transform -- uid: 21089 - type: Catwalk - components: - - pos: -42.5,-70.5 - parent: 82 - type: Transform -- uid: 21090 - type: Catwalk - components: - - pos: -41.5,-70.5 - parent: 82 - type: Transform -- uid: 21091 - type: Catwalk - components: - - pos: -40.5,-70.5 - parent: 82 - type: Transform -- uid: 21092 - type: Catwalk - components: - - pos: -39.5,-70.5 - parent: 82 - type: Transform -- uid: 21093 - type: Catwalk - components: - - pos: -38.5,-70.5 - parent: 82 - type: Transform -- uid: 21094 - type: Catwalk - components: - - pos: -37.5,-70.5 - parent: 82 - type: Transform -- uid: 21095 - type: Catwalk - components: - - pos: -36.5,-70.5 - parent: 82 - type: Transform -- uid: 21096 - type: Catwalk - components: - - pos: -35.5,-70.5 - parent: 82 - type: Transform -- uid: 21097 - type: Catwalk - components: - - pos: -34.5,-70.5 - parent: 82 - type: Transform -- uid: 21098 - type: Catwalk - components: - - pos: -33.5,-70.5 - parent: 82 - type: Transform -- uid: 21099 - type: Catwalk - components: - - pos: -32.5,-70.5 - parent: 82 - type: Transform -- uid: 21100 - type: Catwalk - components: - - pos: -50.5,-66.5 - parent: 82 - type: Transform -- uid: 21101 - type: Catwalk - components: - - pos: -49.5,-66.5 - parent: 82 - type: Transform -- uid: 21102 - type: Catwalk - components: - - pos: -48.5,-66.5 - parent: 82 - type: Transform -- uid: 21103 - type: Catwalk - components: - - pos: -47.5,-66.5 - parent: 82 - type: Transform -- uid: 21104 - type: Catwalk - components: - - pos: -46.5,-66.5 - parent: 82 - type: Transform -- uid: 21105 - type: Catwalk - components: - - pos: -45.5,-66.5 - parent: 82 - type: Transform -- uid: 21106 - type: Catwalk - components: - - pos: -44.5,-66.5 - parent: 82 - type: Transform -- uid: 21107 - type: Catwalk - components: - - pos: -43.5,-66.5 - parent: 82 - type: Transform -- uid: 21108 - type: Catwalk - components: - - pos: -42.5,-66.5 - parent: 82 - type: Transform -- uid: 21109 - type: Catwalk - components: - - pos: -41.5,-66.5 - parent: 82 - type: Transform -- uid: 21110 - type: Catwalk - components: - - pos: -40.5,-66.5 - parent: 82 - type: Transform -- uid: 21111 - type: Catwalk - components: - - pos: -39.5,-66.5 - parent: 82 - type: Transform -- uid: 21112 - type: Catwalk - components: - - pos: -38.5,-66.5 - parent: 82 - type: Transform -- uid: 21113 - type: Catwalk - components: - - pos: -37.5,-66.5 - parent: 82 - type: Transform -- uid: 21114 - type: Catwalk - components: - - pos: -36.5,-66.5 - parent: 82 - type: Transform -- uid: 21115 - type: Catwalk - components: - - pos: -35.5,-66.5 - parent: 82 - type: Transform -- uid: 21116 - type: Catwalk - components: - - pos: -34.5,-66.5 - parent: 82 - type: Transform -- uid: 21117 - type: Catwalk - components: - - pos: -33.5,-66.5 - parent: 82 - type: Transform -- uid: 21118 - type: Catwalk - components: - - pos: -32.5,-66.5 - parent: 82 - type: Transform -- uid: 21119 - type: Catwalk - components: - - pos: -50.5,-62.5 - parent: 82 - type: Transform -- uid: 21120 - type: Catwalk - components: - - pos: -49.5,-62.5 - parent: 82 - type: Transform -- uid: 21121 - type: Catwalk - components: - - pos: -48.5,-62.5 - parent: 82 - type: Transform -- uid: 21122 - type: Catwalk - components: - - pos: -47.5,-62.5 - parent: 82 - type: Transform -- uid: 21123 - type: Catwalk - components: - - pos: -46.5,-62.5 - parent: 82 - type: Transform -- uid: 21124 - type: Catwalk - components: - - pos: -45.5,-62.5 - parent: 82 - type: Transform -- uid: 21125 - type: Catwalk - components: - - pos: -44.5,-62.5 - parent: 82 - type: Transform -- uid: 21126 - type: Catwalk - components: - - pos: -43.5,-62.5 - parent: 82 - type: Transform -- uid: 21127 - type: Catwalk - components: - - pos: -42.5,-62.5 - parent: 82 - type: Transform -- uid: 21128 - type: Catwalk - components: - - pos: -41.5,-62.5 - parent: 82 - type: Transform -- uid: 21129 - type: Catwalk - components: - - pos: -40.5,-62.5 - parent: 82 - type: Transform -- uid: 21130 - type: Catwalk - components: - - pos: -39.5,-62.5 - parent: 82 - type: Transform -- uid: 21131 - type: Catwalk - components: - - pos: -38.5,-62.5 - parent: 82 - type: Transform -- uid: 21132 - type: Catwalk - components: - - pos: -37.5,-62.5 - parent: 82 - type: Transform -- uid: 21133 - type: Catwalk - components: - - pos: -36.5,-62.5 - parent: 82 - type: Transform -- uid: 21134 - type: Catwalk - components: - - pos: -35.5,-62.5 - parent: 82 - type: Transform -- uid: 21135 - type: Catwalk - components: - - pos: -34.5,-62.5 - parent: 82 - type: Transform -- uid: 21136 - type: Catwalk - components: - - pos: -33.5,-62.5 - parent: 82 - type: Transform -- uid: 21137 - type: Catwalk - components: - - pos: -32.5,-62.5 - parent: 82 - type: Transform -- uid: 21138 - type: Catwalk - components: - - pos: -41.5,-61.5 - parent: 82 - type: Transform -- uid: 21139 - type: Catwalk - components: - - pos: -41.5,-60.5 - parent: 82 - type: Transform -- uid: 21140 - type: Catwalk - components: - - pos: -41.5,-59.5 - parent: 82 - type: Transform -- uid: 21141 - type: Catwalk - components: - - pos: -41.5,-58.5 - parent: 82 - type: Transform -- uid: 21142 - type: Catwalk - components: - - pos: -41.5,-57.5 - parent: 82 - type: Transform -- uid: 21143 - type: Catwalk - components: - - pos: -41.5,-56.5 - parent: 82 - type: Transform -- uid: 21144 - type: Catwalk - components: - - pos: -41.5,-55.5 - parent: 82 - type: Transform -- uid: 21145 - type: Catwalk - components: - - pos: -41.5,-54.5 - parent: 82 - type: Transform -- uid: 21146 - type: Catwalk - components: - - pos: -41.5,-53.5 - parent: 82 - type: Transform -- uid: 21147 - type: Catwalk - components: - - pos: -41.5,-63.5 - parent: 82 - type: Transform -- uid: 21148 - type: Catwalk - components: - - pos: -41.5,-64.5 - parent: 82 - type: Transform -- uid: 21149 - type: Catwalk - components: - - pos: -41.5,-65.5 - parent: 82 - type: Transform -- uid: 21150 - type: Catwalk - components: - - pos: -41.5,-67.5 - parent: 82 - type: Transform -- uid: 21151 - type: Catwalk - components: - - pos: -41.5,-68.5 - parent: 82 - type: Transform -- uid: 21152 - type: Catwalk - components: - - pos: -41.5,-69.5 - parent: 82 - type: Transform -- uid: 21153 - type: Catwalk - components: - - pos: -41.5,-71.5 - parent: 82 - type: Transform -- uid: 21154 - type: Catwalk - components: - - pos: -41.5,-72.5 - parent: 82 - type: Transform -- uid: 21155 - type: SolarTracker - components: - - pos: -41.5,-73.5 - parent: 82 - type: Transform -- uid: 21156 - type: SolarPanel - components: - - pos: -43.5,-71.5 - parent: 82 - type: Transform -- uid: 21157 - type: SolarPanel - components: - - pos: -44.5,-71.5 - parent: 82 - type: Transform -- uid: 21158 - type: SolarPanel - components: - - pos: -45.5,-71.5 - parent: 82 - type: Transform -- uid: 21159 - type: SolarPanel - components: - - pos: -46.5,-71.5 - parent: 82 - type: Transform -- uid: 21160 - type: SolarPanel - components: - - pos: -47.5,-71.5 - parent: 82 - type: Transform -- uid: 21161 - type: SolarPanel - components: - - pos: -48.5,-71.5 - parent: 82 - type: Transform -- uid: 21162 - type: SolarPanel - components: - - pos: -49.5,-71.5 - parent: 82 - type: Transform -- uid: 21163 - type: SolarPanel - components: - - pos: -50.5,-71.5 - parent: 82 - type: Transform -- uid: 21164 - type: SolarPanel - components: - - pos: -43.5,-69.5 - parent: 82 - type: Transform -- uid: 21165 - type: SolarPanel - components: - - pos: -44.5,-69.5 - parent: 82 - type: Transform -- uid: 21166 - type: SolarPanel - components: - - pos: -45.5,-69.5 - parent: 82 - type: Transform -- uid: 21167 - type: SolarPanel - components: - - pos: -46.5,-69.5 - parent: 82 - type: Transform -- uid: 21168 - type: SolarPanel - components: - - pos: -47.5,-69.5 - parent: 82 - type: Transform -- uid: 21169 - type: SolarPanel - components: - - pos: -48.5,-69.5 - parent: 82 - type: Transform -- uid: 21170 - type: SolarPanel - components: - - pos: -49.5,-69.5 - parent: 82 - type: Transform -- uid: 21171 - type: SolarPanel - components: - - pos: -50.5,-69.5 - parent: 82 - type: Transform -- uid: 21172 - type: SolarPanel - components: - - pos: -43.5,-67.5 - parent: 82 - type: Transform -- uid: 21173 - type: SolarPanel - components: - - pos: -44.5,-67.5 - parent: 82 - type: Transform -- uid: 21174 - type: SolarPanel - components: - - pos: -45.5,-67.5 - parent: 82 - type: Transform -- uid: 21175 - type: SolarPanel - components: - - pos: -46.5,-67.5 - parent: 82 - type: Transform -- uid: 21176 - type: SolarPanel - components: - - pos: -47.5,-67.5 - parent: 82 - type: Transform -- uid: 21177 - type: SolarPanel - components: - - pos: -48.5,-67.5 - parent: 82 - type: Transform -- uid: 21178 - type: SolarPanel - components: - - pos: -49.5,-67.5 - parent: 82 - type: Transform -- uid: 21179 - type: SolarPanel - components: - - pos: -50.5,-67.5 - parent: 82 - type: Transform -- uid: 21180 - type: SolarPanel - components: - - pos: -50.5,-65.5 - parent: 82 - type: Transform -- uid: 21181 - type: SolarPanel - components: - - pos: -49.5,-65.5 - parent: 82 - type: Transform -- uid: 21182 - type: SolarPanel - components: - - pos: -48.5,-65.5 - parent: 82 - type: Transform -- uid: 21183 - type: SolarPanel - components: - - pos: -47.5,-65.5 - parent: 82 - type: Transform -- uid: 21184 - type: SolarPanel - components: - - pos: -46.5,-65.5 - parent: 82 - type: Transform -- uid: 21185 - type: SolarPanel - components: - - pos: -45.5,-65.5 - parent: 82 - type: Transform -- uid: 21186 - type: SolarPanel - components: - - pos: -44.5,-65.5 - parent: 82 - type: Transform -- uid: 21187 - type: SolarPanel - components: - - pos: -43.5,-65.5 - parent: 82 - type: Transform -- uid: 21188 - type: SolarPanel - components: - - pos: -43.5,-63.5 - parent: 82 - type: Transform -- uid: 21189 - type: SolarPanel - components: - - pos: -44.5,-63.5 - parent: 82 - type: Transform -- uid: 21190 - type: SolarPanel - components: - - pos: -45.5,-63.5 - parent: 82 - type: Transform -- uid: 21191 - type: SolarPanel - components: - - pos: -46.5,-63.5 - parent: 82 - type: Transform -- uid: 21192 - type: SolarPanel - components: - - pos: -47.5,-63.5 - parent: 82 - type: Transform -- uid: 21193 - type: SolarPanel - components: - - pos: -48.5,-63.5 - parent: 82 - type: Transform -- uid: 21194 - type: SolarPanel - components: - - pos: -49.5,-63.5 - parent: 82 - type: Transform -- uid: 21195 - type: SolarPanel - components: - - pos: -50.5,-63.5 - parent: 82 - type: Transform -- uid: 21196 - type: SolarPanel - components: - - pos: -50.5,-61.5 - parent: 82 - type: Transform -- uid: 21197 - type: SolarPanel - components: - - pos: -49.5,-61.5 - parent: 82 - type: Transform -- uid: 21198 - type: SolarPanel - components: - - pos: -48.5,-61.5 - parent: 82 - type: Transform -- uid: 21199 - type: SolarPanel - components: - - pos: -47.5,-61.5 - parent: 82 - type: Transform -- uid: 21200 - type: SolarPanel - components: - - pos: -46.5,-61.5 - parent: 82 - type: Transform -- uid: 21201 - type: SolarPanel - components: - - pos: -45.5,-61.5 - parent: 82 - type: Transform -- uid: 21202 - type: SolarPanel - components: - - pos: -44.5,-61.5 - parent: 82 - type: Transform -- uid: 21203 - type: SolarPanel - components: - - pos: -43.5,-61.5 - parent: 82 - type: Transform -- uid: 21204 - type: SolarPanel - components: - - pos: -39.5,-61.5 - parent: 82 - type: Transform -- uid: 21205 - type: SolarPanel - components: - - pos: -38.5,-61.5 - parent: 82 - type: Transform -- uid: 21206 - type: SolarPanel - components: - - pos: -37.5,-61.5 - parent: 82 - type: Transform -- uid: 21207 - type: SolarPanel - components: - - pos: -36.5,-61.5 - parent: 82 - type: Transform -- uid: 21208 - type: SolarPanel - components: - - pos: -35.5,-61.5 - parent: 82 - type: Transform -- uid: 21209 - type: SolarPanel - components: - - pos: -34.5,-61.5 - parent: 82 - type: Transform -- uid: 21210 - type: SolarPanel - components: - - pos: -33.5,-61.5 - parent: 82 - type: Transform -- uid: 21211 - type: SolarPanel - components: - - pos: -32.5,-61.5 - parent: 82 - type: Transform -- uid: 21212 - type: SolarPanel - components: - - pos: -32.5,-63.5 - parent: 82 - type: Transform -- uid: 21213 - type: SolarPanel - components: - - pos: -33.5,-63.5 - parent: 82 - type: Transform -- uid: 21214 - type: SolarPanel - components: - - pos: -34.5,-63.5 - parent: 82 - type: Transform -- uid: 21215 - type: SolarPanel - components: - - pos: -35.5,-63.5 - parent: 82 - type: Transform -- uid: 21216 - type: SolarPanel - components: - - pos: -36.5,-63.5 - parent: 82 - type: Transform -- uid: 21217 - type: SolarPanel - components: - - pos: -37.5,-63.5 - parent: 82 - type: Transform -- uid: 21218 - type: SolarPanel - components: - - pos: -38.5,-63.5 - parent: 82 - type: Transform -- uid: 21219 - type: SolarPanel - components: - - pos: -39.5,-63.5 - parent: 82 - type: Transform -- uid: 21220 - type: SolarPanel - components: - - pos: -39.5,-65.5 - parent: 82 - type: Transform -- uid: 21221 - type: SolarPanel - components: - - pos: -38.5,-65.5 - parent: 82 - type: Transform -- uid: 21222 - type: SolarPanel - components: - - pos: -37.5,-65.5 - parent: 82 - type: Transform -- uid: 21223 - type: SolarPanel - components: - - pos: -36.5,-65.5 - parent: 82 - type: Transform -- uid: 21224 - type: SolarPanel - components: - - pos: -35.5,-65.5 - parent: 82 - type: Transform -- uid: 21225 - type: SolarPanel - components: - - pos: -34.5,-65.5 - parent: 82 - type: Transform -- uid: 21226 - type: SolarPanel - components: - - pos: -33.5,-65.5 - parent: 82 - type: Transform -- uid: 21227 - type: SolarPanel - components: - - pos: -32.5,-65.5 - parent: 82 - type: Transform -- uid: 21228 - type: SolarPanel - components: - - pos: -32.5,-67.5 - parent: 82 - type: Transform -- uid: 21229 - type: SolarPanel - components: - - pos: -33.5,-67.5 - parent: 82 - type: Transform -- uid: 21230 - type: SolarPanel - components: - - pos: -34.5,-67.5 - parent: 82 - type: Transform -- uid: 21231 - type: SolarPanel - components: - - pos: -35.5,-67.5 - parent: 82 - type: Transform -- uid: 21232 - type: SolarPanel - components: - - pos: -36.5,-67.5 - parent: 82 - type: Transform -- uid: 21233 - type: SolarPanel - components: - - pos: -37.5,-67.5 - parent: 82 - type: Transform -- uid: 21234 - type: SolarPanel - components: - - pos: -38.5,-67.5 - parent: 82 - type: Transform -- uid: 21235 - type: SolarPanel - components: - - pos: -39.5,-67.5 - parent: 82 - type: Transform -- uid: 21236 - type: SolarPanel - components: - - pos: -39.5,-69.5 - parent: 82 - type: Transform -- uid: 21237 - type: SolarPanel - components: - - pos: -38.5,-69.5 - parent: 82 - type: Transform -- uid: 21238 - type: SolarPanel - components: - - pos: -37.5,-69.5 - parent: 82 - type: Transform -- uid: 21239 - type: SolarPanel - components: - - pos: -36.5,-69.5 - parent: 82 - type: Transform -- uid: 21240 - type: SolarPanel - components: - - pos: -35.5,-69.5 - parent: 82 - type: Transform -- uid: 21241 - type: SolarPanel - components: - - pos: -34.5,-69.5 - parent: 82 - type: Transform -- uid: 21242 - type: SolarPanel - components: - - pos: -33.5,-69.5 - parent: 82 - type: Transform -- uid: 21243 - type: SolarPanel - components: - - pos: -32.5,-69.5 - parent: 82 - type: Transform -- uid: 21244 - type: SolarPanel - components: - - pos: -32.5,-71.5 - parent: 82 - type: Transform -- uid: 21245 - type: SolarPanel - components: - - pos: -33.5,-71.5 - parent: 82 - type: Transform -- uid: 21246 - type: SolarPanel - components: - - pos: -34.5,-71.5 - parent: 82 - type: Transform -- uid: 21247 - type: SolarPanel - components: - - pos: -35.5,-71.5 - parent: 82 - type: Transform -- uid: 21248 - type: SolarPanel - components: - - pos: -36.5,-71.5 - parent: 82 - type: Transform -- uid: 21249 - type: SolarPanel - components: - - pos: -37.5,-71.5 - parent: 82 - type: Transform -- uid: 21250 - type: SolarPanel - components: - - pos: -38.5,-71.5 - parent: 82 - type: Transform -- uid: 21251 - type: SolarPanel - components: - - pos: -39.5,-71.5 - parent: 82 - type: Transform -- uid: 21252 - type: CableHV - components: - - pos: -41.5,-53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21253 - type: CableHV - components: - - pos: -41.5,-54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21254 - type: CableHV - components: - - pos: -41.5,-55.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21255 - type: CableHV - components: - - pos: -32.5,-61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21256 - type: CableHV - components: - - pos: -33.5,-61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21257 - type: CableHV - components: - - pos: -34.5,-61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21258 - type: CableHV - components: - - pos: -35.5,-61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21259 - type: CableHV - components: - - pos: -36.5,-61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21260 - type: CableHV - components: - - pos: -37.5,-61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21261 - type: CableHV - components: - - pos: -38.5,-61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21262 - type: CableHV - components: - - pos: -39.5,-61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21263 - type: CableHV - components: - - pos: -32.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21264 - type: CableHV - components: - - pos: -33.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21265 - type: CableHV - components: - - pos: -34.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21266 - type: CableHV - components: - - pos: -35.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21267 - type: CableHV - components: - - pos: -36.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21268 - type: CableHV - components: - - pos: -37.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21269 - type: CableHV - components: - - pos: -38.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21270 - type: CableHV - components: - - pos: -39.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21271 - type: CableHV - components: - - pos: -32.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21272 - type: CableHV - components: - - pos: -33.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21273 - type: CableHV - components: - - pos: -34.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21274 - type: CableHV - components: - - pos: -35.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21275 - type: CableHV - components: - - pos: -36.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21276 - type: CableHV - components: - - pos: -37.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21277 - type: CableHV - components: - - pos: -38.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21278 - type: CableHV - components: - - pos: -39.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21279 - type: CableHV - components: - - pos: -32.5,-67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21280 - type: CableHV - components: - - pos: -33.5,-67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21281 - type: CableHV - components: - - pos: -34.5,-67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21282 - type: CableHV - components: - - pos: -35.5,-67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21283 - type: CableHV - components: - - pos: -36.5,-67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21284 - type: CableHV - components: - - pos: -37.5,-67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21285 - type: CableHV - components: - - pos: -38.5,-67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21286 - type: CableHV - components: - - pos: -39.5,-67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21287 - type: CableHV - components: - - pos: -32.5,-69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21288 - type: CableHV - components: - - pos: -33.5,-69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21289 - type: CableHV - components: - - pos: -34.5,-69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21290 - type: CableHV - components: - - pos: -35.5,-69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21291 - type: CableHV - components: - - pos: -36.5,-69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21292 - type: CableHV - components: - - pos: -37.5,-69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21293 - type: CableHV - components: - - pos: -38.5,-69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21294 - type: CableHV - components: - - pos: -39.5,-69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21295 - type: CableHV - components: - - pos: -32.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21296 - type: CableHV - components: - - pos: -33.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21297 - type: CableHV - components: - - pos: -34.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21298 - type: CableHV - components: - - pos: -35.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21299 - type: CableHV - components: - - pos: -36.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21300 - type: CableHV - components: - - pos: -37.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21301 - type: CableHV - components: - - pos: -38.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21302 - type: CableHV - components: - - pos: -39.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21303 - type: CableHV - components: - - pos: -39.5,-70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21304 - type: CableHV - components: - - pos: -40.5,-70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21305 - type: CableHV - components: - - pos: -41.5,-70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21306 - type: CableHV - components: - - pos: -41.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21307 - type: CableHV - components: - - pos: -41.5,-72.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21308 - type: CableHV - components: - - pos: -41.5,-73.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21309 - type: CableHV - components: - - pos: -50.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21310 - type: CableHV - components: - - pos: -49.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21311 - type: CableHV - components: - - pos: -48.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21312 - type: CableHV - components: - - pos: -47.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21313 - type: CableHV - components: - - pos: -46.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21314 - type: CableHV - components: - - pos: -45.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21315 - type: CableHV - components: - - pos: -44.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21316 - type: CableHV - components: - - pos: -43.5,-71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21317 - type: CableHV - components: - - pos: -50.5,-69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21318 - type: CableHV - components: - - pos: -49.5,-69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21319 - type: CableHV - components: - - pos: -48.5,-69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21320 - type: CableHV - components: - - pos: -47.5,-69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21321 - type: CableHV - components: - - pos: -46.5,-69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21322 - type: CableHV - components: - - pos: -45.5,-69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21323 - type: CableHV - components: - - pos: -44.5,-69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21324 - type: CableHV - components: - - pos: -43.5,-69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21325 - type: CableHV - components: - - pos: -43.5,-70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21326 - type: CableHV - components: - - pos: -50.5,-67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21327 - type: CableHV - components: - - pos: -49.5,-67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21328 - type: CableHV - components: - - pos: -48.5,-67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21329 - type: CableHV - components: - - pos: -47.5,-67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21330 - type: CableHV - components: - - pos: -46.5,-67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21331 - type: CableHV - components: - - pos: -45.5,-67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21332 - type: CableHV - components: - - pos: -44.5,-67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21333 - type: CableHV - components: - - pos: -43.5,-67.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21334 - type: CableHV - components: - - pos: -50.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21335 - type: CableHV - components: - - pos: -49.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21336 - type: CableHV - components: - - pos: -48.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21337 - type: CableHV - components: - - pos: -47.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21338 - type: CableHV - components: - - pos: -46.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21339 - type: CableHV - components: - - pos: -45.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21340 - type: CableHV - components: - - pos: -44.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21341 - type: CableHV - components: - - pos: -43.5,-65.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21342 - type: CableHV - components: - - pos: -43.5,-66.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21343 - type: CableHV - components: - - pos: -39.5,-66.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21344 - type: CableHV - components: - - pos: -39.5,-62.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21345 - type: CableHV - components: - - pos: -43.5,-62.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21346 - type: CableHV - components: - - pos: -43.5,-61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21347 - type: CableHV - components: - - pos: -44.5,-61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21348 - type: CableHV - components: - - pos: -45.5,-61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21349 - type: CableHV - components: - - pos: -46.5,-61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21350 - type: CableHV - components: - - pos: -47.5,-61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21351 - type: CableHV - components: - - pos: -48.5,-61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21352 - type: CableHV - components: - - pos: -49.5,-61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21353 - type: CableHV - components: - - pos: -50.5,-61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21354 - type: CableHV - components: - - pos: -50.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21355 - type: CableHV - components: - - pos: -49.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21356 - type: CableHV - components: - - pos: -48.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21357 - type: CableHV - components: - - pos: -47.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21358 - type: CableHV - components: - - pos: -46.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21359 - type: CableHV - components: - - pos: -45.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21360 - type: CableHV - components: - - pos: -44.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21361 - type: CableHV - components: - - pos: -43.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21362 - type: CableHV - components: - - pos: -42.5,-70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21363 - type: AirlockEngineeringLocked - components: - - pos: -23.5,-46.5 - parent: 82 - type: Transform -- uid: 21364 - type: VendingMachineCondiments - components: - - flags: SessionSpecific - type: MetaData - - pos: -26.5,-13.5 - parent: 82 - type: Transform -- uid: 21365 - type: AirlockMaintLocked - components: - - pos: -6.5,22.5 - parent: 82 - type: Transform -- uid: 21366 - type: AirlockMaintLocked - components: - - pos: -14.5,-1.5 - parent: 82 - type: Transform -- uid: 21367 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,0.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21368 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,4.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21369 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -14.5,4.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21370 - type: HappyHonkNukie - components: - - pos: 51.475567,52.507065 - parent: 82 - type: Transform -- uid: 21371 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,15.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21372 - type: RollerBed - components: - - pos: 52.5,-13.5 - parent: 82 - type: Transform -- uid: 21373 - type: MinimoogInstrument - components: - - rot: 3.141592653589793 rad - pos: -53.5,-7.5 - parent: 82 - type: Transform -- uid: 21374 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: -53.5,-8.5 - parent: 82 - type: Transform -- uid: 21375 - type: RandomSnacks - components: - - rot: 3.141592653589793 rad - pos: -60.5,-23.5 - parent: 82 - type: Transform -- uid: 21376 - type: Grille - components: - - pos: -44.5,57.5 - parent: 82 - type: Transform -- uid: 21377 - type: WeldingFuelTankFull - components: - - pos: -46.5,-18.5 - parent: 82 - type: Transform -- uid: 21378 - type: WaterTankFull - components: - - pos: -47.5,-18.5 - parent: 82 - type: Transform -- uid: 21379 - type: AltarConvertMaint - components: - - pos: -48.5,-41.5 - parent: 82 - type: Transform -- uid: 21380 - type: ContainmentFieldGenerator - components: - - pos: -29.5,68.5 - parent: 82 - type: Transform -- uid: 21381 - type: SignDisposalSpace - components: - - pos: -65.5,-36.5 - parent: 82 - type: Transform -- uid: 21382 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -49.5,-43.5 - parent: 82 - type: Transform -- uid: 21383 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -47.5,-43.5 - parent: 82 - type: Transform -- uid: 21384 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -49.5,-44.5 - parent: 82 - type: Transform -- uid: 21385 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -47.5,-44.5 - parent: 82 - type: Transform -- uid: 21386 - type: FoodTinPeachesMaint - components: - - pos: -49.504677,-18.395603 - parent: 82 - type: Transform -- uid: 21387 - type: Table - components: - - pos: -51.5,-43.5 - parent: 82 - type: Transform -- uid: 21388 - type: Table - components: - - pos: -51.5,-44.5 - parent: 82 - type: Transform -- uid: 21389 - type: Rack - components: - - pos: -51.5,-42.5 - parent: 82 - type: Transform -- uid: 21390 - type: ClothingHandsGlovesColorYellow - components: - - pos: -51.487576,-42.454712 - parent: 82 - type: Transform -- uid: 21391 - type: ToolboxElectricalFilled - components: - - pos: -51.62091,-43.43249 - parent: 82 - type: Transform -- uid: 21392 - type: ToolboxMechanicalFilled - components: - - pos: -51.398685,-43.676937 - parent: 82 - type: Transform -- uid: 21393 - type: CarpetPink - components: - - pos: -49.5,-42.5 - parent: 82 - type: Transform -- uid: 21394 - type: CarpetPink - components: - - pos: -49.5,-43.5 - parent: 82 - type: Transform -- uid: 21395 - type: CarpetPink - components: - - pos: -49.5,-44.5 - parent: 82 - type: Transform -- uid: 21396 - type: CarpetPink - components: - - pos: -48.5,-42.5 - parent: 82 - type: Transform -- uid: 21397 - type: CarpetPink - components: - - pos: -48.5,-43.5 - parent: 82 - type: Transform -- uid: 21398 - type: CarpetPink - components: - - pos: -48.5,-44.5 - parent: 82 - type: Transform -- uid: 21399 - type: CarpetPink - components: - - pos: -47.5,-42.5 - parent: 82 - type: Transform -- uid: 21400 - type: CarpetPink - components: - - pos: -47.5,-43.5 - parent: 82 - type: Transform -- uid: 21401 - type: CarpetPink - components: - - pos: -47.5,-44.5 - parent: 82 - type: Transform -- uid: 21402 - type: ClothingOuterSkub - components: - - pos: -56.367218,-40.622715 - parent: 82 - type: Transform -- uid: 21403 - type: ClothingHeadHatSkub - components: - - pos: -56.67833,-40.55605 - parent: 82 - type: Transform -- uid: 21404 - type: Skub - components: - - pos: -56.877735,-40.692345 - parent: 82 - type: Transform -- uid: 21405 - type: Catwalk - components: - - pos: -58.5,-22.5 - parent: 82 - type: Transform -- uid: 21406 - type: Catwalk - components: - - pos: -57.5,-22.5 - parent: 82 - type: Transform -- uid: 21407 - type: Catwalk - components: - - pos: -56.5,-22.5 - parent: 82 - type: Transform -- uid: 21408 - type: Catwalk - components: - - pos: -54.5,-20.5 - parent: 82 - type: Transform -- uid: 21409 - type: FirelockGlass - components: - - pos: 18.5,62.5 - parent: 82 - type: Transform -- uid: 21410 - type: Catwalk - components: - - pos: -54.5,-16.5 - parent: 82 - type: Transform -- uid: 21411 - type: Catwalk - components: - - pos: -54.5,-15.5 - parent: 82 - type: Transform -- uid: 21412 - type: Catwalk - components: - - pos: -54.5,-14.5 - parent: 82 - type: Transform -- uid: 21413 - type: Catwalk - components: - - pos: -54.5,-13.5 - parent: 82 - type: Transform -- uid: 21414 - type: Catwalk - components: - - pos: -54.5,-12.5 - parent: 82 - type: Transform -- uid: 21415 - type: Catwalk - components: - - pos: -54.5,-11.5 - parent: 82 - type: Transform -- uid: 21416 - type: Catwalk - components: - - pos: -54.5,-10.5 - parent: 82 - type: Transform -- uid: 21417 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 15.5,64.5 - parent: 82 - type: Transform -- uid: 21418 - type: Catwalk - components: - - pos: -54.5,-8.5 - parent: 82 - type: Transform -- uid: 21419 - type: Catwalk - components: - - pos: -54.5,-7.5 - parent: 82 - type: Transform -- uid: 21420 - type: Catwalk - components: - - pos: -54.5,-6.5 - parent: 82 - type: Transform -- uid: 21421 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 16.5,55.5 - parent: 82 - type: Transform -- uid: 21422 - type: Catwalk - components: - - pos: -47.5,-7.5 - parent: 82 - type: Transform -- uid: 21423 - type: Catwalk - components: - - pos: -47.5,-8.5 - parent: 82 - type: Transform -- uid: 21424 - type: Catwalk - components: - - pos: -47.5,-9.5 - parent: 82 - type: Transform -- uid: 21425 - type: Catwalk - components: - - pos: -47.5,-10.5 - parent: 82 - type: Transform -- uid: 21426 - type: Catwalk - components: - - pos: -47.5,-11.5 - parent: 82 - type: Transform -- uid: 21427 - type: Catwalk - components: - - pos: -48.5,-1.5 - parent: 82 - type: Transform -- uid: 21428 - type: Catwalk - components: - - pos: -48.5,-0.5 - parent: 82 - type: Transform -- uid: 21429 - type: Catwalk - components: - - pos: -48.5,0.5 - parent: 82 - type: Transform -- uid: 21430 - type: Catwalk - components: - - pos: -48.5,1.5 - parent: 82 - type: Transform -- uid: 21431 - type: Catwalk - components: - - pos: -48.5,2.5 - parent: 82 - type: Transform -- uid: 21432 - type: Catwalk - components: - - pos: -48.5,3.5 - parent: 82 - type: Transform -- uid: 21433 - type: Catwalk - components: - - pos: -48.5,4.5 - parent: 82 - type: Transform -- uid: 21434 - type: Catwalk - components: - - pos: -48.5,5.5 - parent: 82 - type: Transform -- uid: 21435 - type: Catwalk - components: - - pos: -48.5,6.5 - parent: 82 - type: Transform -- uid: 21436 - type: Catwalk - components: - - pos: -48.5,7.5 - parent: 82 - type: Transform -- uid: 21437 - type: Catwalk - components: - - pos: -48.5,9.5 - parent: 82 - type: Transform -- uid: 21438 - type: Catwalk - components: - - pos: -48.5,10.5 - parent: 82 - type: Transform -- uid: 21439 - type: Catwalk - components: - - pos: -48.5,11.5 - parent: 82 - type: Transform -- uid: 21440 - type: Catwalk - components: - - pos: -48.5,12.5 - parent: 82 - type: Transform -- uid: 21441 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 30.5,23.5 - parent: 82 - type: Transform -- uid: 21442 - type: Catwalk - components: - - pos: -47.5,15.5 - parent: 82 - type: Transform -- uid: 21443 - type: Catwalk - components: - - pos: -47.5,16.5 - parent: 82 - type: Transform -- uid: 21444 - type: Catwalk - components: - - pos: -47.5,17.5 - parent: 82 - type: Transform -- uid: 21445 - type: Catwalk - components: - - pos: -47.5,18.5 - parent: 82 - type: Transform -- uid: 21446 - type: Catwalk - components: - - pos: -47.5,19.5 - parent: 82 - type: Transform -- uid: 21447 - type: Catwalk - components: - - pos: -47.5,20.5 - parent: 82 - type: Transform -- uid: 21448 - type: Catwalk - components: - - pos: -47.5,21.5 - parent: 82 - type: Transform -- uid: 21449 - type: Catwalk - components: - - pos: -47.5,22.5 - parent: 82 - type: Transform -- uid: 21450 - type: HighSecCommandLocked - components: - - pos: 11.5,38.5 - parent: 82 - type: Transform -- uid: 21451 - type: PaperCaptainsThoughts - components: - - pos: 45.447807,-49.560356 - parent: 82 - type: Transform -- uid: 21452 - type: Catwalk - components: - - pos: -43.5,23.5 - parent: 82 - type: Transform -- uid: 21453 - type: Catwalk - components: - - pos: -42.5,23.5 - parent: 82 - type: Transform -- uid: 21454 - type: Catwalk - components: - - pos: -41.5,23.5 - parent: 82 - type: Transform -- uid: 21455 - type: Catwalk - components: - - pos: -40.5,23.5 - parent: 82 - type: Transform -- uid: 21456 - type: Catwalk - components: - - pos: -39.5,23.5 - parent: 82 - type: Transform -- uid: 21457 - type: Catwalk - components: - - pos: -38.5,23.5 - parent: 82 - type: Transform -- uid: 21458 - type: Catwalk - components: - - pos: -37.5,23.5 - parent: 82 - type: Transform -- uid: 21459 - type: Catwalk - components: - - pos: -36.5,23.5 - parent: 82 - type: Transform -- uid: 21460 - type: Catwalk - components: - - pos: -35.5,23.5 - parent: 82 - type: Transform -- uid: 21461 - type: Catwalk - components: - - pos: -34.5,23.5 - parent: 82 - type: Transform -- uid: 21462 - type: KalimbaInstrument - components: - - pos: -50.45798,-18.555195 - parent: 82 - type: Transform -- uid: 21463 - type: Rack - components: - - pos: -50.5,-18.5 - parent: 82 - type: Transform -- uid: 21464 - type: Rack - components: - - pos: -49.5,-18.5 - parent: 82 - type: Transform -- uid: 21465 - type: Catwalk - components: - - pos: -44.5,-12.5 - parent: 82 - type: Transform -- uid: 21466 - type: Catwalk - components: - - pos: -44.5,-13.5 - parent: 82 - type: Transform -- uid: 21467 - type: Catwalk - components: - - pos: -44.5,-14.5 - parent: 82 - type: Transform -- uid: 21468 - type: Catwalk - components: - - pos: -44.5,-15.5 - parent: 82 - type: Transform -- uid: 21469 - type: Catwalk - components: - - pos: -44.5,-16.5 - parent: 82 - type: Transform -- uid: 21470 - type: Catwalk - components: - - pos: -44.5,-17.5 - parent: 82 - type: Transform -- uid: 21471 - type: Catwalk - components: - - pos: -44.5,-18.5 - parent: 82 - type: Transform -- uid: 21472 - type: Catwalk - components: - - pos: -46.5,-19.5 - parent: 82 - type: Transform -- uid: 21473 - type: Catwalk - components: - - pos: -47.5,-19.5 - parent: 82 - type: Transform -- uid: 21474 - type: Catwalk - components: - - pos: -48.5,-19.5 - parent: 82 - type: Transform -- uid: 21475 - type: Catwalk - components: - - pos: -49.5,-19.5 - parent: 82 - type: Transform -- uid: 21476 - type: Catwalk - components: - - pos: -50.5,-19.5 - parent: 82 - type: Transform -- uid: 21477 - type: WallSolid - components: - - pos: -44.5,-7.5 - parent: 82 - type: Transform -- uid: 21478 - type: WallSolid - components: - - pos: -44.5,-10.5 - parent: 82 - type: Transform -- uid: 21479 - type: ClosetMaintenanceFilledRandom - components: - - pos: -44.5,-8.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21480 - type: AirCanister - components: - - pos: -44.5,-9.5 - parent: 82 - type: Transform -- uid: 21481 - type: ClosetEmergencyFilledRandom - components: - - pos: -44.5,-5.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21482 - type: ClosetFireFilled - components: - - pos: -45.5,-5.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21483 - type: Rack - components: - - pos: -52.5,-4.5 - parent: 82 - type: Transform -- uid: 21484 - type: Rack - components: - - pos: -53.5,-4.5 - parent: 82 - type: Transform -- uid: 21485 - type: Table - components: - - pos: -53.5,-6.5 - parent: 82 - type: Transform -- uid: 21486 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: -53.52483,-4.443949 - parent: 82 - type: Transform -- uid: 21487 - type: NitrogenTankFilled - components: - - pos: -53.34705,-4.555061 - parent: 82 - type: Transform -- uid: 21488 - type: NitrogenTankFilled - components: - - pos: -49.5321,10.512132 - parent: 82 - type: Transform -- uid: 21489 - type: Rack - components: - - pos: -49.5,10.5 - parent: 82 - type: Transform -- uid: 21490 - type: WeldingFuelTankFull - components: - - pos: -49.5,12.5 - parent: 82 - type: Transform -- uid: 21491 - type: Rack - components: - - pos: -48.5,17.5 - parent: 82 - type: Transform -- uid: 21492 - type: Table - components: - - pos: -48.5,16.5 - parent: 82 - type: Transform -- uid: 21493 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -48.5,15.5 - parent: 82 - type: Transform -- uid: 21494 - type: NitrogenTankFilled - components: - - pos: -48.44766,17.55709 - parent: 82 - type: Transform -- uid: 21495 - type: ClosetEmergencyFilledRandom - components: - - pos: -45.5,25.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21496 - type: ClosetFireFilled - components: - - pos: -45.5,24.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21497 - type: ClosetMaintenanceFilledRandom - components: - - pos: -45.5,27.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21498 - type: CableApcExtension - components: - - pos: -46.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21499 - type: CableApcExtension - components: - - pos: -45.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21500 - type: ClosetToolFilled - components: - - pos: -45.5,22.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21501 - type: LockerElectricalSuppliesFilled - components: - - pos: -46.5,22.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21502 - type: FoodBanana - components: - - pos: -10.672058,-47.28746 - parent: 82 - type: Transform -- uid: 21503 - type: FoodBanana - components: - - pos: -10.538725,-47.42079 - parent: 82 - type: Transform -- uid: 21504 - type: FoodBanana - components: - - pos: -10.383169,-47.554127 - parent: 82 - type: Transform -- uid: 21505 - type: FoodPieBananaCream - components: - - pos: -10.027613,-47.220795 - parent: 82 - type: Transform -- uid: 21506 - type: FoodPieBananaCream - components: - - pos: -9.8942795,-47.42079 - parent: 82 - type: Transform -- uid: 21507 - type: FoodPieBananaCream - components: - - pos: -9.738726,-47.531902 - parent: 82 - type: Transform -- uid: 21508 - type: PaperCaptainsThoughts - components: - - pos: 45.565704,-49.63403 - parent: 82 - type: Transform -- uid: 21509 - type: TubaInstrument - components: - - pos: -11.5,-47.5 - parent: 82 - type: Transform -- uid: 21510 - type: LampBanana - components: - - pos: -8.538725,-47.17635 - parent: 82 - type: Transform -- uid: 21511 - type: LauncherCreamPie - components: - - pos: -9.294279,-47.42079 - parent: 82 - type: Transform -- uid: 21512 - type: TableReinforcedGlass - components: - - pos: -8.5,-52.5 - parent: 82 - type: Transform -- uid: 21513 - type: TableReinforcedGlass - components: - - pos: -8.5,-53.5 - parent: 82 - type: Transform -- uid: 21514 - type: TableReinforcedGlass - components: - - pos: -9.5,-53.5 - parent: 82 - type: Transform -- uid: 21515 - type: TableReinforcedGlass - components: - - pos: -10.5,-53.5 - parent: 82 - type: Transform -- uid: 21516 - type: Bed - components: - - pos: -12.5,-51.5 - parent: 82 - type: Transform -- uid: 21517 - type: Bed - components: - - pos: -12.5,-52.5 - parent: 82 - type: Transform -- uid: 21518 - type: Table - components: - - pos: -12.5,-53.5 - parent: 82 - type: Transform -- uid: 21519 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.432264,-53.35246 - parent: 82 - type: Transform -- uid: 21520 - type: Paper - components: - - pos: -10.610043,-53.330235 - parent: 82 - type: Transform -- uid: 21521 - type: Paper - components: - - pos: -10.410042,-53.5969 - parent: 82 - type: Transform -- uid: 21522 - type: Paper - components: - - pos: -10.232265,-53.396904 - parent: 82 - type: Transform -- uid: 21523 - type: ClothingHeadHatMimesoftFlipped - components: - - pos: -9.8989315,-53.441345 - parent: 82 - type: Transform -- uid: 21524 - type: FoodBurgerMime - components: - - pos: -9.587822,-53.396904 - parent: 82 - type: Transform -- uid: 21525 - type: CrayonMime - components: - - pos: -10.587822,-53.57468 - parent: 82 - type: Transform -- uid: 21526 - type: BedsheetMime - components: - - pos: -12.5,-52.5 - parent: 82 - type: Transform -- uid: 21527 - type: BedsheetSpawner - components: - - pos: -12.5,-51.5 - parent: 82 - type: Transform -- uid: 21528 - type: ClothingNeckScarfStripedZebra - components: - - pos: -9.032265,-53.46357 - parent: 82 - type: Transform -- uid: 21529 - type: CrayonBox - components: - - pos: -8.454489,-47.88579 - parent: 82 - type: Transform -- uid: 21530 - type: CrayonBox - components: - - pos: -8.498932,-53.396904 - parent: 82 - type: Transform -- uid: 21531 - type: DrinkBottleOfNothingFull - components: - - pos: -8.387821,-52.308014 - parent: 82 - type: Transform -- uid: 21532 - type: DrinkBottleOfNothingFull - components: - - pos: -8.610043,-52.68579 - parent: 82 - type: Transform -- uid: 21533 - type: AccordionInstrument - components: - - pos: -12.498932,-53.130238 - parent: 82 - type: Transform -- uid: 21534 - type: AirlockTheatreLocked - components: - - pos: -7.5,-51.5 - parent: 82 - type: Transform -- uid: 21535 - type: AirlockTheatreLocked - components: - - pos: -7.5,-49.5 - parent: 82 - type: Transform -- uid: 21536 - type: ToolboxElectricalFilled - components: - - pos: 12.5059185,-41.31955 - parent: 82 - type: Transform -- uid: 21537 - type: AirlockEngineeringLocked - components: - - pos: 11.5,-43.5 - parent: 82 - type: Transform -- uid: 21538 - type: WaterTankFull - components: - - pos: 5.5,-44.5 - parent: 82 - type: Transform -- uid: 21539 - type: WeldingFuelTankFull - components: - - pos: 5.5,-45.5 - parent: 82 - type: Transform -- uid: 21540 - type: AirCanister - components: - - pos: 5.5,-46.5 - parent: 82 - type: Transform -- uid: 21541 - type: ClosetEmergencyFilledRandom - components: - - pos: 11.5,-48.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21542 - type: ClosetFireFilled - components: - - pos: 10.5,-48.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21543 - type: ClosetMaintenanceFilledRandom - components: - - pos: 9.5,-48.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21544 - type: Table - components: - - pos: 8.5,-48.5 - parent: 82 - type: Transform -- uid: 21545 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 7.5,-48.5 - parent: 82 - type: Transform -- uid: 21546 - type: AirlockBrigGlassLocked - components: - - rot: 3.141592653589793 rad - pos: 30.5,-24.5 - parent: 82 - type: Transform -- uid: 21547 - type: AirlockBrigGlassLocked - components: - - rot: 3.141592653589793 rad - pos: 24.5,-27.5 - parent: 82 - type: Transform -- uid: 21548 - type: AirlockMaintLocked - components: - - pos: 25.5,-15.5 - parent: 82 - type: Transform -- uid: 21549 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-16.5 - parent: 82 - type: Transform -- uid: 21550 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-23.5 - parent: 82 - type: Transform -- uid: 21551 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 21552 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 21553 - type: WindoorBrigLocked - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-20.5 - parent: 82 - type: Transform -- uid: 21554 - type: WindoorBrigLocked - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-19.5 - parent: 82 - type: Transform -- uid: 21555 - type: AirlockMaintLocked - components: - - pos: 29.5,-13.5 - parent: 82 - type: Transform -- uid: 21556 - type: Ash - components: - - pos: -61.502815,-47.49047 - parent: 82 - type: Transform -- uid: 21557 - type: Rack - components: - - pos: -1.5,-50.5 - parent: 82 - type: Transform -- uid: 21558 - type: Rack - components: - - pos: -1.5,-51.5 - parent: 82 - type: Transform -- uid: 21559 - type: MaintenanceToolSpawner - components: - - pos: -1.5,-51.5 - parent: 82 - type: Transform -- uid: 21560 - type: MaintenanceToolSpawner - components: - - pos: -1.5,-50.5 - parent: 82 - type: Transform -- uid: 21561 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-60.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 21562 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-60.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 21563 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-61.5 - parent: 82 - type: Transform -- uid: 21564 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-61.5 - parent: 82 - type: Transform -- uid: 21565 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,-59.5 - parent: 82 - type: Transform -- uid: 21566 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-59.5 - parent: 82 - type: Transform -- uid: 21567 - type: SmokingPipe - components: - - pos: -8.418781,-61.47922 - parent: 82 - type: Transform -- uid: 21568 - type: Matchbox - components: - - pos: -8.5521145,-61.190334 - parent: 82 - type: Transform -- uid: 21569 - type: DrinkMartiniGlass - components: - - pos: -2.4131193,-61.123665 - parent: 82 - type: Transform -- uid: 21570 - type: DisposalUnit - components: - - pos: -3.5,-62.5 - parent: 82 - type: Transform -- uid: 21571 - type: SurveillanceCameraSecurity - components: - - pos: -25.5,25.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Checkpoint: Engi' - type: SurveillanceCamera -- uid: 21572 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-39.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21573 - type: AirlockMaintSecLocked - components: - - pos: 34.5,-3.5 - parent: 82 - type: Transform -- uid: 21574 - type: AirlockMaintLocked - components: - - pos: 30.5,-4.5 - parent: 82 - type: Transform -- uid: 21575 - type: AirlockMaintLocked - components: - - pos: 29.5,-10.5 - parent: 82 - type: Transform -- uid: 21576 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 50.5,1.5 - parent: 82 - type: Transform -- uid: 21577 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 49.5,1.5 - parent: 82 - type: Transform -- uid: 21578 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 52.5,1.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 21579 - type: TableGlass - components: - - rot: 3.141592653589793 rad - pos: 53.5,1.5 - parent: 82 - type: Transform -- uid: 21580 - type: MaintenanceFluffSpawner - components: - - pos: 53.5,1.5 - parent: 82 - type: Transform -- uid: 21581 - type: CableHV - components: - - pos: -6.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21582 - type: AirlockMaintChapelLocked - components: - - pos: -11.5,14.5 - parent: 82 - type: Transform -- uid: 21583 - type: CableHV - components: - - pos: -7.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21584 - type: CableHV - components: - - pos: -8.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21585 - type: Catwalk - components: - - pos: -10.5,5.5 - parent: 82 - type: Transform -- uid: 21586 - type: CableHV - components: - - pos: -6.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21587 - type: CableHV - components: - - pos: -5.5,5.5 - parent: 82 - type: Transform -- uid: 21588 - type: CableHV - components: - - pos: -4.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21589 - type: Catwalk - components: - - pos: -9.5,4.5 - parent: 82 - type: Transform -- uid: 21590 - type: Catwalk - components: - - pos: -8.5,4.5 - parent: 82 - type: Transform -- uid: 21591 - type: Catwalk - components: - - pos: -7.5,4.5 - parent: 82 - type: Transform -- uid: 21592 - type: WallSolid - components: - - pos: -7.5,15.5 - parent: 82 - type: Transform -- uid: 21593 - type: ClosetEmergencyFilledRandom - components: - - pos: -7.5,13.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21594 - type: ClosetFireFilled - components: - - pos: -7.5,12.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21595 - type: DisposalUnit - components: - - pos: 0.5,29.5 - parent: 82 - type: Transform -- uid: 21596 - type: Catwalk - components: - - pos: 6.5,33.5 - parent: 82 - type: Transform -- uid: 21597 - type: Catwalk - components: - - pos: 6.5,34.5 - parent: 82 - type: Transform -- uid: 21598 - type: Catwalk - components: - - pos: 6.5,35.5 - parent: 82 - type: Transform -- uid: 21599 - type: Catwalk - components: - - pos: 6.5,36.5 - parent: 82 - type: Transform -- uid: 21600 - type: Catwalk - components: - - pos: 6.5,37.5 - parent: 82 - type: Transform -- uid: 21601 - type: Catwalk - components: - - pos: 6.5,38.5 - parent: 82 - type: Transform -- uid: 21602 - type: MaintenanceFluffSpawner - components: - - pos: 10.5,42.5 - parent: 82 - type: Transform -- uid: 21603 - type: MaintenanceToolSpawner - components: - - pos: 10.5,45.5 - parent: 82 - type: Transform -- uid: 21604 - type: Rack - components: - - pos: 10.5,45.5 - parent: 82 - type: Transform -- uid: 21605 - type: ChairFolding - components: - - pos: 10.5,43.5 - parent: 82 - type: Transform -- uid: 21606 - type: Bed - components: - - pos: 47.5,12.5 - parent: 82 - type: Transform -- uid: 21607 - type: HospitalCurtainsOpen - components: - - pos: 47.5,12.5 - parent: 82 - type: Transform -- uid: 21608 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 46.5,13.5 - parent: 82 - type: Transform -- uid: 21609 - type: BedsheetQM - components: - - pos: 47.5,12.5 - parent: 82 - type: Transform -- uid: 21610 - type: ComputerCargoOrders - components: - - rot: 1.5707963267948966 rad - pos: 45.5,13.5 - parent: 82 - type: Transform -- uid: 21611 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 45.5,12.5 - parent: 82 - type: Transform -- uid: 21612 - type: AppraisalTool - components: - - pos: 45.483654,12.612563 - parent: 82 - type: Transform -- uid: 21613 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 26.5,69.5 - parent: 82 - type: Transform -- uid: 21614 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 46.5,16.5 - parent: 82 - type: Transform -- uid: 21615 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 46.5,15.5 - parent: 82 - type: Transform -- uid: 21616 - type: BoxFolderBlack - components: - - rot: 1.5707963267948966 rad - pos: 46.496506,15.679173 - parent: 82 - type: Transform -- uid: 21617 - type: ClothingBeltHolster - components: - - rot: 1.5707963267948966 rad - pos: 46.357616,16.331951 - parent: 82 - type: Transform -- uid: 21618 - type: GunpetInstrument - components: - - rot: 1.5707963267948966 rad - pos: 46.607616,16.206951 - parent: 82 - type: Transform -- uid: 21619 - type: CrateServiceBureaucracy - components: - - pos: 36.5,16.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21620 - type: CrateEmptySpawner - components: - - pos: 38.5,16.5 - parent: 82 - type: Transform -- uid: 21621 - type: CrateEmptySpawner - components: - - pos: 38.5,15.5 - parent: 82 - type: Transform -- uid: 21622 - type: CrateEmptySpawner - components: - - pos: 36.5,15.5 - parent: 82 - type: Transform -- uid: 21623 - type: ShuttersNormal - components: - - rot: 3.141592653589793 rad - pos: 12.5,-19.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 21624 - type: CrateEmptySpawner - components: - - pos: 38.5,11.5 - parent: 82 - type: Transform -- uid: 21625 - type: CrateEmptySpawner - components: - - pos: 36.5,11.5 - parent: 82 - type: Transform -- uid: 21626 - type: CrateEmptySpawner - components: - - pos: 37.5,11.5 - parent: 82 - type: Transform -- uid: 21627 - type: CrateFilledSpawner - components: - - pos: 43.5,23.5 - parent: 82 - type: Transform -- uid: 21628 - type: CrateEmptySpawner - components: - - pos: 42.5,23.5 - parent: 82 - type: Transform -- uid: 21629 - type: CrateEmptySpawner - components: - - pos: 43.5,19.5 - parent: 82 - type: Transform -- uid: 21630 - type: CrateEmptySpawner - components: - - pos: 42.5,19.5 - parent: 82 - type: Transform -- uid: 21631 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: -21.5,65.5 - parent: 82 - type: Transform -- uid: 21632 - type: WallReinforced - components: - - pos: -29.5,82.5 - parent: 82 - type: Transform -- uid: 21633 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: -29.5,65.5 - parent: 82 - type: Transform -- uid: 21634 - type: TwoWayLever - components: - - pos: 39.5,27.5 - parent: 82 - type: Transform - - outputs: - Left: - - port: Forward - uid: 3395 - - port: Forward - uid: 3394 - - port: Forward - uid: 3393 - - port: Forward - uid: 3392 - - port: Forward - uid: 3391 - Right: - - port: Reverse - uid: 3395 - - port: Reverse - uid: 3394 - - port: Reverse - uid: 3393 - - port: Reverse - uid: 3392 - - port: Reverse - uid: 3391 - Middle: - - port: Off - uid: 3395 - - port: Off - uid: 3394 - - port: Off - uid: 3393 - - port: Off - uid: 3392 - - port: Off - uid: 3391 - type: SignalTransmitter -- uid: 21635 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 39.5,30.5 - parent: 82 - type: Transform -- uid: 21636 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 39.5,29.5 - parent: 82 - type: Transform -- uid: 21637 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,22.5 - parent: 82 - type: Transform -- uid: 21638 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,15.5 - parent: 82 - type: Transform -- uid: 21639 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -19.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 21640 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -19.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 21641 - type: DisposalUnit - components: - - pos: -19.5,21.5 - parent: 82 - type: Transform -- uid: 21642 - type: PottedPlantRandom - components: - - pos: -19.5,20.5 - parent: 82 - type: Transform -- uid: 21643 - type: PottedPlantRandom - components: - - pos: -12.5,21.5 - parent: 82 - type: Transform -- uid: 21644 - type: PottedPlantRandom - components: - - pos: -17.5,21.5 - parent: 82 - type: Transform -- uid: 21645 - type: SpawnPointClown - components: - - pos: -9.5,-48.5 - parent: 82 - type: Transform -- uid: 21646 - type: CableHV - components: - - pos: -17.5,73.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21647 - type: ClothingBackpackDuffelSyndicateCostumeClown - components: - - pos: -9.140789,-47.293507 - parent: 82 - type: Transform -- uid: 21648 - type: RubberStampClown - components: - - pos: -8.755251,-48.022705 - parent: 82 - type: Transform - - tags: [] - type: Tag -- uid: 21649 - type: FoodSoupClown - components: - - pos: -8.641199,-53.172817 - parent: 82 - type: Transform -- uid: 21650 - type: PlushieSlime - components: - - pos: -7.595076,16.45195 - parent: 82 - type: Transform -- uid: 21651 - type: SpawnPointMime - components: - - pos: -9.5,-52.5 - parent: 82 - type: Transform -- uid: 21652 - type: Emitter - components: - - rot: -1.5707963267948966 rad - pos: -17.5,76.5 - parent: 82 - type: Transform -- uid: 21653 - type: PosterLegitCleanliness - components: - - pos: -7.5,-53.5 - parent: 82 - type: Transform -- uid: 21654 - type: PosterContrabandFreeDrone - components: - - pos: 22.5,2.5 - parent: 82 - type: Transform -- uid: 21655 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: -53.5,-11.5 - parent: 82 - type: Transform -- uid: 21656 - type: PosterContrabandMissingGloves - components: - - pos: -31.5,5.5 - parent: 82 - type: Transform -- uid: 21657 - type: PosterLegitNoERP - components: - - pos: 9.5,-36.5 - parent: 82 - type: Transform -- uid: 21658 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 7.5,10.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21659 - type: PosterContrabandAtmosiaDeclarationIndependence - components: - - pos: -6.5,15.5 - parent: 82 - type: Transform -- uid: 21660 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21661 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21662 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21663 - type: EmergencyLight - components: - - pos: 4.5,-2.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21664 - type: Poweredlight - components: - - pos: 3.5,1.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21665 - type: Poweredlight - components: - - pos: 11.5,1.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21666 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21667 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 7.5,3.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21668 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 13.5,3.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21669 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-14.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21670 - type: PoweredSmallLight - components: - - pos: 10.5,-17.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21671 - type: ContainmentFieldGenerator - components: - - pos: -21.5,68.5 - parent: 82 - type: Transform -- uid: 21672 - type: Poweredlight - components: - - pos: 4.5,-15.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21673 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21674 - type: Poweredlight - components: - - pos: -3.5,-2.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21675 - type: Poweredlight - components: - - pos: -6.5,2.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21676 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-0.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21677 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-4.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21678 - type: Poweredlight - components: - - pos: -20.5,-2.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21679 - type: Poweredlight - components: - - pos: -24.5,-2.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21680 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-4.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21681 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-5.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21682 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-7.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21683 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-11.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21684 - type: Poweredlight - components: - - pos: -39.5,-17.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21685 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-20.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21686 - type: FoodCakeChristmasSlice - components: - - pos: -49.522366,-10.729221 - parent: 82 - type: Transform -- uid: 21687 - type: ShuttersNormalOpen - components: - - pos: -31.5,-9.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 26135 - type: SignalReceiver -- uid: 21688 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -53.5,-13.5 - parent: 82 - type: Transform -- uid: 21689 - type: RadiationCollector - components: - - pos: -17.5,73.5 - parent: 82 - type: Transform -- uid: 21690 - type: PoweredSmallLight - components: - - pos: -37.5,-14.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21691 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-11.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21692 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-17.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21693 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21694 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-15.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21695 - type: WallSolid - components: - - pos: -25.5,-5.5 - parent: 82 - type: Transform -- uid: 21696 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-8.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21697 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-20.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21698 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -27.5,0.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21699 - type: Poweredlight - components: - - pos: -27.5,5.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21700 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,5.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21701 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,15.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21702 - type: ShuttersNormal - components: - - rot: 3.141592653589793 rad - pos: 11.5,-19.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 21703 - type: Poweredlight - components: - - pos: -17.5,33.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21704 - type: Poweredlight - components: - - pos: -21.5,33.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21705 - type: Poweredlight - components: - - pos: -27.5,31.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21706 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -11.5,29.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21707 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 38.5,49.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Checkpoint: Science' - type: SurveillanceCamera -- uid: 21708 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,30.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21709 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 6.5,30.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21710 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 13.5,30.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21711 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,37.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21712 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,42.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21713 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,46.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21714 - type: Poweredlight - components: - - pos: -4.5,51.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21715 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 6.5,49.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21716 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 14.5,48.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21717 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 22.5,49.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21718 - type: CableApcExtension - components: - - pos: 14.5,50.5 - parent: 82 - type: Transform -- uid: 21719 - type: CableApcExtension - components: - - pos: 14.5,49.5 - parent: 82 - type: Transform -- uid: 21720 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,53.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21721 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,48.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21722 - type: RadiationCollector - components: - - pos: -17.5,69.5 - parent: 82 - type: Transform -- uid: 21723 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,39.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21724 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,31.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21725 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,25.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21726 - type: Poweredlight - components: - - pos: 39.5,30.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21727 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,25.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21728 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,19.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21729 - type: Poweredlight - components: - - pos: 37.5,21.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21730 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,17.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21731 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,15.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21732 - type: Poweredlight - components: - - pos: 37.5,16.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21733 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 37.5,10.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21734 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,22.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21735 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,15.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21736 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,8.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21737 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21738 - type: Poweredlight - components: - - pos: 39.5,4.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21739 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,1.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21740 - type: Poweredlight - components: - - pos: 52.5,4.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21741 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 62.5,2.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21742 - type: BannerScience - components: - - pos: 20.5,52.5 - parent: 82 - type: Transform -- uid: 21743 - type: Poweredlight - components: - - pos: 85.5,4.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21750 - type: Poweredlight - components: - - pos: 52.5,-0.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21751 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-2.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21752 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-6.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21753 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-12.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21754 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-17.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21755 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-39.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Brig - type: SurveillanceCamera -- uid: 21756 - type: Poweredlight - components: - - pos: 61.5,-18.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21757 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-23.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21758 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-32.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21759 - type: Poweredlight - components: - - pos: 51.5,-36.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21760 - type: Poweredlight - components: - - pos: 49.5,-41.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21761 - type: PoweredSmallLight - components: - - pos: 43.5,-41.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21762 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-48.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21763 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-48.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21764 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-48.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21765 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 50.5,-46.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21766 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-16.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - type: SurveillanceCamera -- uid: 21767 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 55.5,-42.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21768 - type: ShuttersNormal - components: - - rot: 3.141592653589793 rad - pos: 10.5,-19.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 21769 - type: ShuttersNormal - components: - - rot: 3.141592653589793 rad - pos: 4.5,-19.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 21770 - type: ShuttersNormal - components: - - pos: 0.5,-8.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -463176.47 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25958 - type: SignalReceiver -- uid: 21771 - type: SurveillanceCameraSecurity - components: - - pos: 57.5,-5.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security 3 - type: SurveillanceCamera -- uid: 21772 - type: FirelockGlass - components: - - pos: 16.5,-10.5 - parent: 82 - type: Transform -- uid: 21773 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-19.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21774 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-19.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21775 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-19.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21776 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-19.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21777 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 42.5,-11.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security 2 - type: SurveillanceCamera -- uid: 21778 - type: PoweredSmallLight - components: - - pos: 32.5,-14.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21779 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-17.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21780 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-22.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21781 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-23.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21782 - type: Poweredlight - components: - - pos: 26.5,-16.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21783 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21784 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-22.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21785 - type: Poweredlight - components: - - pos: 28.5,-25.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21786 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-35.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21787 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-31.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21788 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-25.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21789 - type: Poweredlight - components: - - pos: -2.5,-22.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21790 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21791 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-27.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21792 - type: Poweredlight - components: - - pos: -16.5,-24.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21793 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-36.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21794 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-43.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21795 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-37.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21796 - type: Poweredlight - components: - - pos: -14.5,-32.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21797 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-7.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21798 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 26.5,6.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21799 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,8.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21800 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 17.5,10.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21801 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 19.5,7.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21802 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -4.5,7.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21803 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -5.5,9.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21804 - type: Poweredlight - components: - - pos: -2.5,17.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21805 - type: Poweredlight - components: - - pos: 17.5,17.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21806 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 10.5,10.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21807 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 4.5,10.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21808 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,8.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21809 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,8.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21810 - type: Poweredlight - components: - - pos: 10.5,8.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21811 - type: Poweredlight - components: - - pos: 4.5,8.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21812 - type: Poweredlight - components: - - pos: 12.5,20.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21813 - type: Poweredlight - components: - - pos: 8.5,20.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21814 - type: Poweredlight - components: - - pos: 4.5,20.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21815 - type: PoweredSmallLight - components: - - pos: 14.5,24.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21816 - type: PoweredSmallLight - components: - - pos: 11.5,24.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21817 - type: PoweredSmallLight - components: - - pos: 9.5,24.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21818 - type: PoweredSmallLight - components: - - pos: 7.5,24.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21819 - type: Poweredlight - components: - - pos: 0.5,20.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21820 - type: PoweredSmallLight - components: - - pos: 5.5,24.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21821 - type: PoweredSmallLight - components: - - pos: 3.5,24.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21822 - type: PoweredSmallLight - components: - - pos: 1.5,24.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21823 - type: PoweredSmallLight - components: - - pos: -0.5,24.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21824 - type: CableApcExtension - components: - - pos: 1.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21825 - type: SpawnPointResearchAssistant - components: - - pos: 26.5,58.5 - parent: 82 - type: Transform -- uid: 21826 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,50.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21827 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,50.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21828 - type: PoweredlightSodium - components: - - rot: 3.141592653589793 rad - pos: -17.5,62.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21829 - type: PoweredlightSodium - components: - - rot: 3.141592653589793 rad - pos: -30.5,62.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21830 - type: PoweredSmallLight - components: - - pos: -21.5,59.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21831 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,55.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21832 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,57.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21833 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,54.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21834 - type: Poweredlight - components: - - pos: -25.5,50.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21835 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,50.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21836 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -23.5,41.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21837 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,42.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21838 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -14.5,35.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21839 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -25.5,36.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21840 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,36.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21841 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,40.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21842 - type: Poweredlight - components: - - pos: -17.5,45.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21843 - type: CableMV - components: - - pos: 0.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21844 - type: CableMV - components: - - pos: 0.5,39.5 - parent: 82 - type: Transform -- uid: 21845 - type: CableMV - components: - - pos: 1.5,39.5 - parent: 82 - type: Transform -- uid: 21846 - type: CableMV - components: - - pos: 2.5,39.5 - parent: 82 - type: Transform -- uid: 21847 - type: CableMV - components: - - pos: 3.5,39.5 - parent: 82 - type: Transform -- uid: 21848 - type: CableMV - components: - - pos: 4.5,39.5 - parent: 82 - type: Transform -- uid: 21849 - type: CableMV - components: - - pos: 5.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21850 - type: CableMV - components: - - pos: 6.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21851 - type: CableMV - components: - - pos: 6.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21852 - type: CableMV - components: - - pos: 6.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21853 - type: CableMV - components: - - pos: 7.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21854 - type: CableMV - components: - - pos: 8.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21855 - type: CableMV - components: - - pos: 9.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21856 - type: CableMV - components: - - pos: 10.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21857 - type: CableMV - components: - - pos: 11.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21858 - type: CableMV - components: - - pos: 11.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21859 - type: CableMV - components: - - pos: 11.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21860 - type: CableMV - components: - - pos: 11.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21861 - type: CableMV - components: - - pos: 10.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21862 - type: CableMV - components: - - pos: 9.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21863 - type: CableMV - components: - - pos: 8.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21864 - type: CableMV - components: - - pos: 7.5,44.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21865 - type: BedsheetHOS - components: - - rot: 3.141592653589793 rad - pos: 62.5,-16.5 - parent: 82 - type: Transform -- uid: 21866 - type: CableMV - components: - - pos: -32.5,-9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21867 - type: CableMV - components: - - pos: -32.5,-10.5 - parent: 82 - type: Transform -- uid: 21868 - type: CableMV - components: - - pos: -31.5,-10.5 - parent: 82 - type: Transform -- uid: 21869 - type: CableMV - components: - - pos: -30.5,-10.5 - parent: 82 - type: Transform -- uid: 21870 - type: CableMV - components: - - pos: -29.5,-10.5 - parent: 82 - type: Transform -- uid: 21871 - type: CableMV - components: - - pos: -28.5,-10.5 - parent: 82 - type: Transform -- uid: 21872 - type: CableMV - components: - - pos: -28.5,-11.5 - parent: 82 - type: Transform -- uid: 21873 - type: CableMV - components: - - pos: -34.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21874 - type: CableMV - components: - - pos: -33.5,-16.5 - parent: 82 - type: Transform -- uid: 21875 - type: CableMV - components: - - pos: -33.5,-15.5 - parent: 82 - type: Transform -- uid: 21876 - type: CableMV - components: - - pos: -33.5,-14.5 - parent: 82 - type: Transform -- uid: 21877 - type: CableMV - components: - - pos: -32.5,-14.5 - parent: 82 - type: Transform -- uid: 21878 - type: CableMV - components: - - pos: -31.5,-14.5 - parent: 82 - type: Transform -- uid: 21879 - type: CableMV - components: - - pos: -30.5,-14.5 - parent: 82 - type: Transform -- uid: 21880 - type: CableMV - components: - - pos: -29.5,-14.5 - parent: 82 - type: Transform -- uid: 21881 - type: CableMV - components: - - pos: -28.5,-14.5 - parent: 82 - type: Transform -- uid: 21882 - type: CableMV - components: - - pos: -28.5,-13.5 - parent: 82 - type: Transform -- uid: 21883 - type: CableMV - components: - - pos: -28.5,-12.5 - parent: 82 - type: Transform -- uid: 21884 - type: CableMV - components: - - pos: -27.5,-12.5 - parent: 82 - type: Transform -- uid: 21885 - type: CableMV - components: - - pos: -26.5,-12.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21886 - type: CableMV - components: - - pos: -25.5,-12.5 - parent: 82 - type: Transform -- uid: 21887 - type: CableMV - components: - - pos: -24.5,-12.5 - parent: 82 - type: Transform -- uid: 21888 - type: CableMV - components: - - pos: -23.5,-12.5 - parent: 82 - type: Transform -- uid: 21889 - type: CableMV - components: - - pos: -22.5,-12.5 - parent: 82 - type: Transform -- uid: 21890 - type: CableMV - components: - - pos: -21.5,-12.5 - parent: 82 - type: Transform -- uid: 21891 - type: CableMV - components: - - pos: -20.5,-12.5 - parent: 82 - type: Transform -- uid: 21892 - type: CableMV - components: - - pos: -19.5,-12.5 - parent: 82 - type: Transform -- uid: 21893 - type: CableMV - components: - - pos: -18.5,-12.5 - parent: 82 - type: Transform -- uid: 21894 - type: CableMV - components: - - pos: -17.5,-12.5 - parent: 82 - type: Transform -- uid: 21895 - type: CableMV - components: - - pos: -16.5,-12.5 - parent: 82 - type: Transform -- uid: 21896 - type: CableMV - components: - - pos: -16.5,-13.5 - parent: 82 - type: Transform -- uid: 21897 - type: CableMV - components: - - pos: -16.5,-14.5 - parent: 82 - type: Transform -- uid: 21898 - type: CableMV - components: - - pos: -16.5,-15.5 - parent: 82 - type: Transform -- uid: 21899 - type: CableMV - components: - - pos: -15.5,-15.5 - parent: 82 - type: Transform -- uid: 21900 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-20.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21901 - type: Dresser - components: - - pos: 29.5,64.5 - parent: 82 - type: Transform -- uid: 21902 - type: Poweredlight - components: - - pos: -49.5,31.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21903 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,32.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21904 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,40.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21905 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -62.5,37.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21906 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -62.5,45.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21907 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,48.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21908 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -59.5,53.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21909 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -63.5,49.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21910 - type: FigureSpawner - components: - - pos: 26.5,36.5 - parent: 82 - type: Transform -- uid: 21911 - type: FigureSpawner - components: - - pos: 26.5,36.5 - parent: 82 - type: Transform -- uid: 21912 - type: FigureSpawner - components: - - pos: 27.5,35.5 - parent: 82 - type: Transform -- uid: 21913 - type: FigureSpawner - components: - - pos: 27.5,36.5 - parent: 82 - type: Transform -- uid: 21914 - type: DiceBag - components: - - pos: 26.445786,35.63603 - parent: 82 - type: Transform -- uid: 21915 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 26.334675,36.538807 - parent: 82 - type: Transform -- uid: 21916 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 26.362453,36.10825 - parent: 82 - type: Transform -- uid: 21917 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: 26.806898,36.62214 - parent: 82 - type: Transform -- uid: 21918 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: 27.501343,36.62214 - parent: 82 - type: Transform -- uid: 21919 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 27.681898,36.12214 - parent: 82 - type: Transform -- uid: 21920 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 27.598564,35.580475 - parent: 82 - type: Transform -- uid: 21921 - type: d20Dice - components: - - rot: 1.5707963267948966 rad - pos: 26.834675,35.76103 - parent: 82 - type: Transform -- uid: 21922 - type: d4Dice - components: - - rot: 1.5707963267948966 rad - pos: 27.15412,36.524918 - parent: 82 - type: Transform -- uid: 21923 - type: PosterContrabandLustyExomorph - components: - - pos: 24.5,38.5 - parent: 82 - type: Transform -- uid: 21924 - type: PosterLegitJustAWeekAway - components: - - pos: 29.5,38.5 - parent: 82 - type: Transform -- uid: 21925 - type: PosterContrabandPwrGame - components: - - pos: 24.5,33.5 - parent: 82 - type: Transform -- uid: 21926 - type: PosterContrabandTheBigGasTruth - components: - - pos: 29.5,33.5 - parent: 82 - type: Transform -- uid: 21927 - type: WaterCooler - components: - - pos: 28.5,38.5 - parent: 82 - type: Transform -- uid: 21928 - type: RandomPosterContraband - components: - - pos: 46.5,-48.5 - parent: 82 - type: Transform -- uid: 21929 - type: RandomPosterContraband - components: - - pos: 50.5,-48.5 - parent: 82 - type: Transform -- uid: 21930 - type: RandomSpawner - components: - - pos: 24.5,34.5 - parent: 82 - type: Transform -- uid: 21931 - type: RandomSpawner - components: - - pos: 24.5,37.5 - parent: 82 - type: Transform -- uid: 21932 - type: RandomSpawner - components: - - pos: 28.5,35.5 - parent: 82 - type: Transform -- uid: 21933 - type: RandomSpawner - components: - - pos: 23.5,43.5 - parent: 82 - type: Transform -- uid: 21934 - type: RandomSpawner - components: - - pos: 25.5,31.5 - parent: 82 - type: Transform -- uid: 21935 - type: RandomSpawner - components: - - pos: 23.5,23.5 - parent: 82 - type: Transform -- uid: 21936 - type: RandomSpawner - components: - - pos: 32.5,24.5 - parent: 82 - type: Transform -- uid: 21937 - type: RandomSpawner - components: - - pos: 31.5,41.5 - parent: 82 - type: Transform -- uid: 21938 - type: RandomSpawner - components: - - pos: 39.5,56.5 - parent: 82 - type: Transform -- uid: 21939 - type: RandomSpawner - components: - - pos: 43.5,52.5 - parent: 82 - type: Transform -- uid: 21940 - type: RandomSpawner - components: - - pos: 47.5,42.5 - parent: 82 - type: Transform -- uid: 21941 - type: RandomSpawner - components: - - pos: 40.5,45.5 - parent: 82 - type: Transform -- uid: 21942 - type: CableApcExtension - components: - - pos: 10.5,38.5 - parent: 82 - type: Transform -- uid: 21943 - type: CableApcExtension - components: - - pos: 11.5,38.5 - parent: 82 - type: Transform -- uid: 21944 - type: CableApcExtension - components: - - pos: 12.5,38.5 - parent: 82 - type: Transform -- uid: 21945 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,39.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21946 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21947 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-7.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21948 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-7.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21949 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-4.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21950 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-9.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21951 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-9.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21952 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-13.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21953 - type: PoweredSmallLight - components: - - pos: -13.5,-17.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21954 - type: Rack - components: - - pos: -7.5,-19.5 - parent: 82 - type: Transform -- uid: 21955 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-22.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21956 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -15.5,23.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21957 - type: Poweredlight - components: - - pos: 0.5,39.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21958 - type: PoweredSmallLight - components: - - pos: 3.5,35.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21959 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 38.5,-2.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security 1 - type: SurveillanceCamera -- uid: 21960 - type: PoweredSmallLight - components: - - pos: 8.5,44.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21961 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,44.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21962 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,36.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21963 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,42.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21964 - type: PoweredSmallLight - components: - - pos: 16.5,45.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21965 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,41.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21966 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,42.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21967 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,46.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21968 - type: PoweredSmallLight - components: - - pos: 25.5,38.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21969 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,14.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21970 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 21.5,34.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21971 - type: PoweredSmallLight - components: - - pos: 24.5,31.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21972 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,25.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21973 - type: PoweredSmallLight - components: - - pos: 24.5,20.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21974 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 25.5,24.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21975 - type: PoweredSmallLight - components: - - pos: 25.5,27.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21976 - type: MagazineMagnumSubMachineGunPractice - components: - - pos: 60.327774,-20.368805 - parent: 82 - type: Transform -- uid: 21977 - type: CableApcExtension - components: - - pos: 16.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21978 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-14.5 - parent: 82 - type: Transform -- uid: 21979 - type: AirlockResearchDirectorLocked - components: - - pos: 16.5,64.5 - parent: 82 - type: Transform -- uid: 21980 - type: AirlockCargoGlassLocked - components: - - pos: 41.5,28.5 - parent: 82 - type: Transform -- uid: 21981 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,35.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21982 - type: Poweredlight - components: - - pos: 39.5,34.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21983 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,35.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21984 - type: PoweredLightPostSmall - components: - - pos: 55.5,38.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21985 - type: Poweredlight - components: - - pos: -28.5,26.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21986 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,24.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21987 - type: PoweredSmallLight - components: - - pos: -42.5,23.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21988 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,24.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21989 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,17.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21990 - type: PaperOffice - components: - - pos: 52.197975,-39.02014 - parent: 82 - type: Transform -- uid: 21991 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -52.5,10.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21992 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,5.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21993 - type: PaperOffice - components: - - pos: 52.43376,-38.843327 - parent: 82 - type: Transform -- uid: 21994 - type: PoweredSmallLight - components: - - pos: -32.5,8.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21995 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,1.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21996 - type: PoweredSmallLight - components: - - pos: -49.5,-5.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21997 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-13.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21998 - type: Poweredlight - components: - - pos: -50.5,-7.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21999 - type: PoweredSmallLight - components: - - pos: -48.5,-19.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22000 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-12.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22001 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-7.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22002 - type: PoweredSmallLight - components: - - pos: -56.5,-22.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22003 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-31.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22004 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-36.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22005 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -64.5,-36.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22006 - type: PoweredLightPostSmall - components: - - pos: -67.5,-35.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22007 - type: CableApcExtension - components: - - pos: -64.5,-35.5 - parent: 82 - type: Transform -- uid: 22008 - type: CableApcExtension - components: - - pos: -65.5,-35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22009 - type: CableApcExtension - components: - - pos: -65.5,-34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22010 - type: CableApcExtension - components: - - pos: -65.5,-33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22011 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -53.5,-14.5 - parent: 82 - type: Transform -- uid: 22012 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -52.5,-16.5 - parent: 82 - type: Transform -- uid: 22013 - type: CableApcExtension - components: - - pos: -59.5,-40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22014 - type: CableApcExtension - components: - - pos: -58.5,-40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22015 - type: CableApcExtension - components: - - pos: -57.5,-40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22016 - type: CableApcStack1 - components: - - pos: -60.554848,-38.44122 - parent: 82 - type: Transform -- uid: 22017 - type: CableApcStack1 - components: - - pos: -60.582626,-37.413445 - parent: 82 - type: Transform -- uid: 22018 - type: CableApcStack1 - components: - - pos: -60.51318,-36.482887 - parent: 82 - type: Transform -- uid: 22019 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-43.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22020 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-39.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22021 - type: CableApcExtension - components: - - pos: -62.5,-40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22022 - type: CableApcExtension - components: - - pos: -62.5,-41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22023 - type: CableApcExtension - components: - - pos: -62.5,-42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22024 - type: CableApcStack1 - components: - - rot: -1.5707963267948966 rad - pos: -61.59651,-39.55233 - parent: 82 - type: Transform -- uid: 22025 - type: CableApcStack1 - components: - - rot: -1.5707963267948966 rad - pos: -62.513184,-39.496777 - parent: 82 - type: Transform -- uid: 22026 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-37.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22027 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-39.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22028 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-45.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22029 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -46.5,-46.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22030 - type: PoweredSmallLight - components: - - pos: -36.5,-46.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22031 - type: ClothingOuterHardsuitVoidParamed - components: - - pos: -31.3532,-37.388683 - parent: 82 - type: Transform -- uid: 22032 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-44.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22033 - type: PoweredSmallLight - components: - - pos: -24.5,-46.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22034 - type: PoweredSmallLight - components: - - pos: -17.5,-46.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22035 - type: Poweredlight - components: - - pos: -9.5,-47.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22036 - type: Poweredlight - components: - - pos: -9.5,-51.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22037 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-46.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22038 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-42.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22039 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-44.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22040 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-53.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22041 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-62.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22042 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-62.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22043 - type: PoweredSmallLight - components: - - pos: -0.5,-49.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22044 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-46.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22045 - type: PaperOffice - components: - - pos: 52.1685,-38.651775 - parent: 82 - type: Transform -- uid: 22046 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-42.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22047 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-52.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22048 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-40.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22049 - type: Poweredlight - components: - - pos: 12.5,-34.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22050 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-35.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22051 - type: Poweredlight - components: - - pos: 8.5,-37.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22052 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-42.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22053 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-44.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22054 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-39.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22055 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-39.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22056 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-32.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22057 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 8.5,-32.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22058 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-32.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22059 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-38.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22060 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-38.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22061 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-43.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22062 - type: FireAxeCabinetFilled - components: - - rot: 3.141592653589793 rad - pos: 19.5,8.5 - parent: 82 - type: Transform -- uid: 22063 - type: CableApcExtension - components: - - pos: 16.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22064 - type: CableApcExtension - components: - - pos: 16.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22065 - type: CableApcExtension - components: - - pos: 16.5,4.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22066 - type: CableApcExtension - components: - - pos: 16.5,3.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22067 - type: CableApcExtension - components: - - pos: 16.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22068 - type: CableApcExtension - components: - - pos: 16.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22069 - type: CableApcExtension - components: - - pos: 15.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22070 - type: CableApcExtension - components: - - pos: 14.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22071 - type: CableApcExtension - components: - - pos: 13.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22072 - type: CableApcExtension - components: - - pos: 12.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22073 - type: CableApcExtension - components: - - pos: 11.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22074 - type: CableApcExtension - components: - - pos: 10.5,1.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22075 - type: CableApcExtension - components: - - pos: 13.5,2.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22076 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,34.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22077 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-1.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22078 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,2.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22079 - type: PoweredSmallLight - components: - - pos: -56.5,-24.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22080 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -54.5,-28.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22081 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-31.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22082 - type: PoweredlightLED - components: - - rot: 3.141592653589793 rad - pos: -49.5,-37.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22083 - type: CableMV - components: - - pos: -33.5,76.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22084 - type: Poweredlight - components: - - pos: -47.5,-30.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22085 - type: Poweredlight - components: - - pos: -34.5,-30.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22086 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-22.5 - parent: 82 - type: Transform -- uid: 22087 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-21.5 - parent: 82 - type: Transform -- uid: 22088 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-40.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22089 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-42.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22090 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-44.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22091 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -36.5,-36.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22092 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -30.5,-39.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22093 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-39.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22094 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-34.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22095 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-30.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22096 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-28.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22097 - type: Poweredlight - components: - - pos: -31.5,-25.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22098 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 22099 - type: Poweredlight - components: - - pos: -43.5,-24.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22100 - type: PoweredSmallLight - components: - - pos: -11.5,-29.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22101 - type: TablePlasmaGlass - components: - - pos: 23.5,-61.5 - parent: 82 - type: Transform -- uid: 22102 - type: TablePlasmaGlass - components: - - pos: 23.5,-60.5 - parent: 82 - type: Transform -- uid: 22103 - type: TablePlasmaGlass - components: - - pos: 17.5,-61.5 - parent: 82 - type: Transform -- uid: 22104 - type: TablePlasmaGlass - components: - - pos: 17.5,-60.5 - parent: 82 - type: Transform -- uid: 22105 - type: Poweredlight - components: - - pos: 18.5,-59.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22106 - type: Poweredlight - components: - - pos: 22.5,-59.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22107 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-60.5 - parent: 82 - type: Transform -- uid: 22108 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-61.5 - parent: 82 - type: Transform -- uid: 22109 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-60.5 - parent: 82 - type: Transform -- uid: 22110 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-61.5 - parent: 82 - type: Transform -- uid: 22111 - type: BoxFolderBlue - components: - - rot: 1.5707963267948966 rad - pos: 17.514835,-61.310528 - parent: 82 - type: Transform -- uid: 22112 - type: BoxFolderBlue - components: - - rot: 1.5707963267948966 rad - pos: 17.514835,-60.560528 - parent: 82 - type: Transform -- uid: 22113 - type: BoxFolderBlue - components: - - rot: -1.5707963267948966 rad - pos: 23.584282,-60.65775 - parent: 82 - type: Transform -- uid: 22114 - type: BoxFolderBlue - components: - - rot: -1.5707963267948966 rad - pos: 23.570393,-61.338306 - parent: 82 - type: Transform -- uid: 22115 - type: SignAi - components: - - pos: 20.5,-63.5 - parent: 82 - type: Transform -- uid: 22116 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-92.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22117 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-92.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22118 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-87.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22119 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-87.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22120 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-87.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22121 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-87.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22122 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-91.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22123 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-91.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22124 - type: Poweredlight - components: - - pos: 20.5,-99.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22125 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-102.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22126 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-102.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22127 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-106.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22128 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-99.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22129 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-99.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22130 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-90.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Conf - type: SurveillanceCamera -- uid: 22131 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 21.5,-99.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI - type: SurveillanceCamera -- uid: 22132 - type: PoweredSmallLight - components: - - pos: -17.5,-19.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22133 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 43.5,50.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22134 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,43.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22135 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 40.5,39.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22136 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,44.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22137 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 39.5,36.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22138 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,50.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22139 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 25.5,58.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22140 - type: Poweredlight - components: - - pos: 14.5,58.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22141 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,57.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22142 - type: AirlockScienceLocked - components: - - pos: 17.5,56.5 - parent: 82 - type: Transform -- uid: 22143 - type: AirlockScienceLocked - components: - - pos: 17.5,55.5 - parent: 82 - type: Transform -- uid: 22144 - type: Poweredlight - components: - - pos: 22.5,67.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22145 - type: Poweredlight - components: - - pos: 27.5,71.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22146 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 26.5,73.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22147 - type: SpawnVendingMachineRestockFood - components: - - pos: -9.5,15.5 - parent: 82 - type: Transform -- uid: 22148 - type: SpawnVendingMachineRestockDrink - components: - - pos: -48.5,16.5 - parent: 82 - type: Transform -- uid: 22149 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: -45.5,50.5 - parent: 82 - type: Transform -- uid: 22150 - type: PoweredSmallLight - components: - - pos: 29.5,66.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22151 - type: WindoorArmoryLocked - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-19.5 - parent: 82 - type: Transform -- uid: 22152 - type: Rack - components: - - pos: 48.5,-20.5 - parent: 82 - type: Transform -- uid: 22153 - type: MagazinePistol - components: - - pos: 48.541447,-20.244343 - parent: 82 - type: Transform -- uid: 22154 - type: TableReinforcedGlass - components: - - pos: 27.5,66.5 - parent: 82 - type: Transform -- uid: 22155 - type: TableReinforcedGlass - components: - - pos: 28.5,66.5 - parent: 82 - type: Transform -- uid: 22156 - type: ComputerResearchAndDevelopment - components: - - pos: 29.5,66.5 - parent: 82 - type: Transform -- uid: 22157 - type: CarpetPurple - components: - - pos: 27.5,66.5 - parent: 82 - type: Transform -- uid: 22158 - type: CarpetPurple - components: - - pos: 27.5,65.5 - parent: 82 - type: Transform -- uid: 22159 - type: CarpetPurple - components: - - pos: 28.5,66.5 - parent: 82 - type: Transform -- uid: 22160 - type: CarpetPurple - components: - - pos: 28.5,65.5 - parent: 82 - type: Transform -- uid: 22161 - type: CarpetPurple - components: - - pos: 29.5,66.5 - parent: 82 - type: Transform -- uid: 22162 - type: CarpetPurple - components: - - pos: 29.5,65.5 - parent: 82 - type: Transform -- uid: 22163 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 28.5,65.5 - parent: 82 - type: Transform -- uid: 22164 - type: BoxFolderBlack - components: - - pos: 28.662447,66.601105 - parent: 82 - type: Transform -- uid: 22165 - type: BoxFolderGrey - components: - - pos: 28.398558,66.50388 - parent: 82 - type: Transform -- uid: 22166 - type: Multitool - components: - - pos: 27.926334,66.55944 - parent: 82 - type: Transform - - devices: - 'UID: 40816': 25437 - 'UID: 40817': 25438 - type: NetworkConfigurator -- uid: 22167 - type: Rack - components: - - pos: 26.5,63.5 - parent: 82 - type: Transform -- uid: 22168 - type: ClothingMaskGas - components: - - pos: 26.452557,63.65551 - parent: 82 - type: Transform -- uid: 22169 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: 26.67478,63.50273 - parent: 82 - type: Transform -- uid: 22170 - type: Screwdriver - components: - - pos: 29.45766,61.44059 - parent: 82 - type: Transform -- uid: 22171 - type: Poweredlight - components: - - pos: -1.5,61.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22172 - type: Poweredlight - components: - - pos: 2.5,61.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22173 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 1.5,55.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22174 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-11.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22175 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-11.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22176 - type: AirlockMaintLocked - components: - - pos: 21.5,-12.5 - parent: 82 - type: Transform -- uid: 22177 - type: AirlockCommandLocked - components: - - pos: -2.5,43.5 - parent: 82 - type: Transform -- uid: 22178 - type: AirlockMaintCommandLocked - components: - - pos: 4.5,46.5 - parent: 82 - type: Transform -- uid: 22179 - type: TableWood - components: - - pos: 60.5,-16.5 - parent: 82 - type: Transform -- uid: 22180 - type: LampGold - components: - - pos: 60.36763,-15.938589 - parent: 82 - type: Transform -- uid: 22181 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-9.5 - parent: 82 - type: Transform -- uid: 22182 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-16.5 - parent: 82 - type: Transform -- uid: 22183 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-16.5 - parent: 82 - type: Transform -- uid: 22184 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-15.5 - parent: 82 - type: Transform -- uid: 22185 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-16.5 - parent: 82 - type: Transform -- uid: 22186 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-15.5 - parent: 82 - type: Transform -- uid: 22187 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-16.5 - parent: 82 - type: Transform -- uid: 22188 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-15.5 - parent: 82 - type: Transform -- uid: 22189 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 61.5,-14.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 22190 - type: Grille - components: - - pos: 68.5,-29.5 - parent: 82 - type: Transform -- uid: 22191 - type: Grille - components: - - pos: 66.5,-29.5 - parent: 82 - type: Transform -- uid: 22192 - type: RubberStampDenied - components: - - pos: 60.38359,-8.403477 - parent: 82 - type: Transform -- uid: 22193 - type: ClothingNeckMantleHOS - components: - - pos: 60.7447,-16.379261 - parent: 82 - type: Transform -- uid: 22194 - type: RubberStampHos - components: - - pos: 60.647476,-8.593557 - parent: 82 - type: Transform -- uid: 22195 - type: ClosetEmergencyFilledRandom - components: - - pos: 33.5,-4.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22196 - type: PoweredlightLED - components: - - pos: 36.5,0.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22197 - type: ClosetFireFilled - components: - - pos: 32.5,-4.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22198 - type: ChairOfficeLight - components: - - pos: 39.5,-13.5 - parent: 82 - type: Transform -- uid: 22199 - type: Grille - components: - - pos: 32.5,73.5 - parent: 82 - type: Transform -- uid: 22200 - type: ComputerSurveillanceCameraMonitor - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-13.5 - parent: 82 - type: Transform -- uid: 22201 - type: MonkeyCubeBox - components: - - pos: 27.47666,76.58331 - parent: 82 - type: Transform -- uid: 22202 - type: BoxFolderBlack - components: - - rot: 3.141592653589793 rad - pos: 39.343395,-14.481611 - parent: 82 - type: Transform -- uid: 22203 - type: Grille - components: - - pos: 26.5,80.5 - parent: 82 - type: Transform -- uid: 22204 - type: Grille - components: - - pos: 31.5,80.5 - parent: 82 - type: Transform -- uid: 22205 - type: ClothingEyesGlasses - components: - - pos: 39.829994,-14.370501 - parent: 82 - type: Transform -- uid: 22206 - type: LampGold - components: - - pos: 38.44111,-13.189944 - parent: 82 - type: Transform -- uid: 22207 - type: Table - components: - - pos: 44.5,-14.5 - parent: 82 - type: Transform -- uid: 22208 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-7.5 - parent: 82 - type: Transform -- uid: 22209 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-9.5 - parent: 82 - type: Transform -- uid: 22210 - type: SpawnPointWarden - components: - - pos: 40.5,-8.5 - parent: 82 - type: Transform -- uid: 22211 - type: Grille - components: - - pos: 64.5,-29.5 - parent: 82 - type: Transform -- uid: 22212 - type: Grille - components: - - pos: 62.5,-29.5 - parent: 82 - type: Transform -- uid: 22218 - type: SpawnPointLawyer - components: - - pos: 30.5,-27.5 - parent: 82 - type: Transform -- uid: 22219 - type: SpawnPointLawyer - components: - - pos: 26.5,-26.5 - parent: 82 - type: Transform -- uid: 22220 - type: SpawnPointSecurityOfficer - components: - - pos: 49.5,-1.5 - parent: 82 - type: Transform -- uid: 22221 - type: SpawnPointSecurityOfficer - components: - - pos: 50.5,-1.5 - parent: 82 - type: Transform -- uid: 22222 - type: SpawnPointSecurityOfficer - components: - - pos: 51.5,-1.5 - parent: 82 - type: Transform -- uid: 22223 - type: SpawnPointSecurityOfficer - components: - - pos: 52.5,-1.5 - parent: 82 - type: Transform -- uid: 22224 - type: SpawnPointSecurityCadet - components: - - pos: 59.5,-1.5 - parent: 82 - type: Transform -- uid: 22225 - type: SpawnPointSecurityCadet - components: - - pos: 61.5,-1.5 - parent: 82 - type: Transform -- uid: 22226 - type: SpawnPointSecurityCadet - components: - - pos: 60.5,-0.5 - parent: 82 - type: Transform -- uid: 22227 - type: SpawnPointSecurityCadet - components: - - pos: 60.5,-2.5 - parent: 82 - type: Transform -- uid: 22228 - type: SpawnPointSalvageSpecialist - components: - - pos: 43.5,37.5 - parent: 82 - type: Transform -- uid: 22229 - type: SpawnPointSalvageSpecialist - components: - - pos: 43.5,36.5 - parent: 82 - type: Transform -- uid: 22230 - type: SpawnPointSalvageSpecialist - components: - - pos: 43.5,35.5 - parent: 82 - type: Transform -- uid: 22231 - type: SpawnPointAssistant - components: - - pos: 24.5,-7.5 - parent: 82 - type: Transform -- uid: 22232 - type: SpawnPointAssistant - components: - - pos: 27.5,-7.5 - parent: 82 - type: Transform -- uid: 22233 - type: AirlockScienceLocked - components: - - pos: 23.5,72.5 - parent: 82 - type: Transform -- uid: 22234 - type: AirlockScienceLocked - components: - - pos: 18.5,68.5 - parent: 82 - type: Transform -- uid: 22235 - type: AirlockScienceLocked - components: - - pos: 19.5,68.5 - parent: 82 - type: Transform -- uid: 22236 - type: SignDirectionalEng - components: - - rot: 3.141592653589793 rad - pos: 30.499617,35.256966 - parent: 82 - type: Transform -- uid: 22237 - type: SpawnPointMusician - components: - - pos: -18.5,-20.5 - parent: 82 - type: Transform -- uid: 22238 - type: SpawnPointMusician - components: - - pos: -17.5,-20.5 - parent: 82 - type: Transform -- uid: 22239 - type: SpawnPointMedicalDoctor - components: - - pos: -18.5,-29.5 - parent: 82 - type: Transform -- uid: 22240 - type: SpawnPointMedicalDoctor - components: - - pos: -17.5,-29.5 - parent: 82 - type: Transform -- uid: 22241 - type: SpawnPointMedicalDoctor - components: - - pos: -30.5,-38.5 - parent: 82 - type: Transform -- uid: 22242 - type: SpawnPointMedicalDoctor - components: - - pos: -30.5,-39.5 - parent: 82 - type: Transform -- uid: 22243 - type: SpawnPointMedicalIntern - components: - - pos: -50.5,-27.5 - parent: 82 - type: Transform -- uid: 22244 - type: SpawnPointMedicalIntern - components: - - pos: -50.5,-28.5 - parent: 82 - type: Transform -- uid: 22245 - type: SpawnPointMedicalIntern - components: - - pos: -22.5,-28.5 - parent: 82 - type: Transform -- uid: 22246 - type: SpawnPointMedicalIntern - components: - - pos: -22.5,-29.5 - parent: 82 - type: Transform -- uid: 22247 - type: SpawnPointLibrarian - components: - - pos: 29.5,22.5 - parent: 82 - type: Transform -- uid: 22248 - type: SpawnPointJanitor - components: - - pos: 2.5,39.5 - parent: 82 - type: Transform -- uid: 22249 - type: SpawnPointJanitor - components: - - pos: 1.5,39.5 - parent: 82 - type: Transform -- uid: 22250 - type: SpawnPointJanitor - components: - - pos: 0.5,39.5 - parent: 82 - type: Transform -- uid: 22251 - type: Table - components: - - pos: -30.5,-11.5 - parent: 82 - type: Transform -- uid: 22252 - type: Table - components: - - pos: -29.5,-11.5 - parent: 82 - type: Transform -- uid: 22253 - type: SpawnPointChemist - components: - - pos: -29.5,-25.5 - parent: 82 - type: Transform -- uid: 22254 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-21.5 - parent: 82 - type: Transform -- uid: 22255 - type: SpawnPointChaplain - components: - - pos: -14.5,9.5 - parent: 82 - type: Transform -- uid: 22256 - type: SpawnPointCargoTechnician - components: - - pos: 37.5,20.5 - parent: 82 - type: Transform -- uid: 22257 - type: SpawnPointCargoTechnician - components: - - pos: 36.5,20.5 - parent: 82 - type: Transform -- uid: 22258 - type: SpawnPointCargoTechnician - components: - - pos: 36.5,19.5 - parent: 82 - type: Transform -- uid: 22259 - type: SpawnPointCargoTechnician - components: - - pos: 37.5,19.5 - parent: 82 - type: Transform -- uid: 22260 - type: SpawnPointCaptain - components: - - pos: 3.5,-15.5 - parent: 82 - type: Transform -- uid: 22261 - type: SpawnPointBotanist - components: - - pos: -36.5,-18.5 - parent: 82 - type: Transform -- uid: 22262 - type: SpawnPointBotanist - components: - - pos: -35.5,-18.5 - parent: 82 - type: Transform -- uid: 22263 - type: SpawnPointBotanist - components: - - pos: -34.5,-18.5 - parent: 82 - type: Transform -- uid: 22264 - type: SpawnPointBartender - components: - - pos: -16.5,-8.5 - parent: 82 - type: Transform -- uid: 22265 - type: SpawnPointAtmos - components: - - pos: 24.5,9.5 - parent: 82 - type: Transform -- uid: 22266 - type: SpawnPointAtmos - components: - - pos: 25.5,9.5 - parent: 82 - type: Transform -- uid: 22267 - type: SpawnPointAtmos - components: - - pos: 26.5,9.5 - parent: 82 - type: Transform -- uid: 22268 - type: WindoorArmoryLocked - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-18.5 - parent: 82 - type: Transform -- uid: 22269 - type: IntercomSecurity - components: - - pos: 57.5,-3.5 - parent: 82 - type: Transform -- uid: 22270 - type: SpawnMobCatRuntime - components: - - pos: -44.5,-35.5 - parent: 82 - type: Transform -- uid: 22271 - type: SpawnMobRaccoonMorticia - components: - - pos: 46.5,14.5 - parent: 82 - type: Transform -- uid: 22272 - type: SpawnMobPossumMorty - components: - - pos: -10.5,36.5 - parent: 82 - type: Transform -- uid: 22273 - type: SpawnMobCatException - components: - - pos: 27.5,9.5 - parent: 82 - type: Transform -- uid: 22274 - type: RandomArcade - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-49.5 - parent: 82 - type: Transform -- uid: 22275 - type: SpawnPointQuartermaster - components: - - pos: 4.5,-18.5 - parent: 82 - type: Transform -- uid: 22276 - type: SpawnPointHeadOfSecurity - components: - - pos: 5.5,-16.5 - parent: 82 - type: Transform -- uid: 22277 - type: SpawnPointHeadOfPersonnel - components: - - pos: 1.5,-17.5 - parent: 82 - type: Transform -- uid: 22278 - type: SpawnPointChiefMedicalOfficer - components: - - pos: 2.5,-18.5 - parent: 82 - type: Transform -- uid: 22279 - type: SpawnPointChiefEngineer - components: - - pos: 1.5,-16.5 - parent: 82 - type: Transform -- uid: 22280 - type: SpawnPointResearchDirector - components: - - pos: 5.5,-17.5 - parent: 82 - type: Transform -- uid: 22281 - type: SpawnPointStationEngineer - components: - - pos: -27.5,37.5 - parent: 82 - type: Transform -- uid: 22282 - type: SpawnPointStationEngineer - components: - - pos: -26.5,37.5 - parent: 82 - type: Transform -- uid: 22283 - type: SpawnPointStationEngineer - components: - - pos: -25.5,37.5 - parent: 82 - type: Transform -- uid: 22284 - type: SpawnPointStationEngineer - components: - - pos: -24.5,37.5 - parent: 82 - type: Transform -- uid: 22285 - type: SpawnPointTechnicalAssistant - components: - - pos: -15.5,38.5 - parent: 82 - type: Transform -- uid: 22286 - type: SpawnPointTechnicalAssistant - components: - - pos: -15.5,37.5 - parent: 82 - type: Transform -- uid: 22287 - type: SpawnPointScientist - components: - - pos: 23.5,64.5 - parent: 82 - type: Transform -- uid: 22288 - type: SpawnPointScientist - components: - - pos: 22.5,64.5 - parent: 82 - type: Transform -- uid: 22289 - type: SpawnPointScientist - components: - - pos: 21.5,64.5 - parent: 82 - type: Transform -- uid: 22290 - type: Rack - components: - - pos: -8.5,-15.5 - parent: 82 - type: Transform -- uid: 22291 - type: Rack - components: - - pos: -7.5,-15.5 - parent: 82 - type: Transform -- uid: 22292 - type: MaintenanceToolSpawner - components: - - pos: -8.5,-15.5 - parent: 82 - type: Transform -- uid: 22293 - type: MaintenanceToolSpawner - components: - - pos: -7.5,-15.5 - parent: 82 - type: Transform -- uid: 22294 - type: MaintenanceFluffSpawner - components: - - pos: -7.5,-19.5 - parent: 82 - type: Transform -- uid: 22295 - type: Rack - components: - - pos: -9.5,-15.5 - parent: 82 - type: Transform -- uid: 22296 - type: Rack - components: - - pos: -10.5,-15.5 - parent: 82 - type: Transform -- uid: 22297 - type: Rack - components: - - pos: -8.5,-19.5 - parent: 82 - type: Transform -- uid: 22298 - type: PlushieRGBee - components: - - pos: -8.464796,-19.504696 - parent: 82 - type: Transform -- uid: 22299 - type: ClothingShoesChef - components: - - pos: -61.47151,-50.54892 - parent: 82 - type: Transform -- uid: 22300 - type: MedkitCombatFilled - components: - - pos: -54.540955,-51.5767 - parent: 82 - type: Transform -- uid: 22301 - type: CombatKnife - components: - - pos: -69.43708,-43.515503 - parent: 82 - type: Transform -- uid: 22302 - type: MaintenanceFluffSpawner - components: - - pos: -9.5,-15.5 - parent: 82 - type: Transform -- uid: 22303 - type: SignToolStorage - components: - - name: Tech Storage - type: MetaData - - pos: 9.5,32.5 - parent: 82 - type: Transform -- uid: 22304 - type: MaintenanceWeaponSpawner - components: - - pos: -10.5,-15.5 - parent: 82 - type: Transform -- uid: 22305 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-50.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22306 - type: DrinkTeacup - components: - - pos: 7.7344055,26.723408 - parent: 82 - type: Transform -- uid: 22307 - type: DrinkTeacup - components: - - pos: 7.345516,26.459518 - parent: 82 - type: Transform -- uid: 22308 - type: DrinkTeapot - components: - - pos: 7.345516,26.751186 - parent: 82 - type: Transform -- uid: 22309 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 8.5,26.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 22310 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 6.5,26.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 22311 - type: Table - components: - - pos: 7.5,26.5 - parent: 82 - type: Transform -- uid: 22312 - type: BassGuitarInstrument - components: - - pos: 17.470211,-0.54444814 - parent: 82 - type: Transform -- uid: 22313 - type: PowerCellPotato - components: - - pos: 86.385,11.510513 - parent: 82 - type: Transform -- uid: 22314 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,9.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22315 - type: PoweredSmallLight - components: - - pos: 57.5,7.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22316 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,2.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22317 - type: AirlockMaintLocked - components: - - pos: 19.5,-1.5 - parent: 82 - type: Transform -- uid: 22318 - type: AirlockMaintLocked - components: - - pos: 26.5,3.5 - parent: 82 - type: Transform -- uid: 22319 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,36.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22320 - type: NitrogenCanister - components: - - pos: 33.5,66.5 - parent: 82 - type: Transform -- uid: 22321 - type: ClosetBase - components: - - pos: 24.5,53.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22322 - type: ClosetBase - components: - - pos: 23.5,53.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22323 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 24.5,53.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22324 - type: Poweredlight - components: - - pos: 15.5,65.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22325 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,66.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22326 - type: ClothingHeadsetRobotics - components: - - pos: 15.708742,58.597015 - parent: 82 - type: Transform -- uid: 22327 - type: OrganHumanAppendix - components: - - pos: -44.49631,-51.486485 - parent: 82 - type: Transform -- uid: 22328 - type: FoodBurgerRobot - components: - - pos: 15.2337055,58.513683 - parent: 82 - type: Transform -- uid: 22329 - type: ClothingHandsGlovesRobohands - components: - - pos: 14.645449,58.52902 - parent: 82 - type: Transform -- uid: 22330 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: 29.5,35.5 - parent: 82 - type: Transform -- uid: 22331 - type: HandLabeler - components: - - pos: 40.54872,18.753807 - parent: 82 - type: Transform -- uid: 22332 - type: Table - components: - - pos: 43.5,-14.5 - parent: 82 - type: Transform -- uid: 22333 - type: HandLabeler - components: - - pos: 38.53549,-14.44644 - parent: 82 - type: Transform -- uid: 22334 - type: HandLabeler - components: - - pos: 9.466568,-13.284143 - parent: 82 - type: Transform -- uid: 22335 - type: Barricade - components: - - pos: 32.5,60.5 - parent: 82 - type: Transform -- uid: 22336 - type: FoodBanana - components: - - pos: 33.51797,57.558422 - parent: 82 - type: Transform -- uid: 22337 - type: HandLabeler - components: - - pos: -8.458134,2.5000072 - parent: 82 - type: Transform -- uid: 22338 - type: PlushieSpaceLizard - components: - - pos: -2.4641614,-0.5040889 - parent: 82 - type: Transform -- uid: 22339 - type: PlushieLizard - components: - - pos: -8.519886,24.533413 - parent: 82 - type: Transform -- uid: 22340 - type: PosterContrabandWehWatches - components: - - pos: -7.5,24.5 - parent: 82 - type: Transform -- uid: 22341 - type: Firelock - components: - - pos: -59.5,49.5 - parent: 82 - type: Transform -- uid: 22342 - type: Firelock - components: - - pos: -59.5,48.5 - parent: 82 - type: Transform -- uid: 22343 - type: ReinforcedWindow - components: - - pos: -13.5,33.5 - parent: 82 - type: Transform -- uid: 22344 - type: PlushieVox - components: - - pos: 79.54016,12.36062 - parent: 82 - type: Transform -- uid: 22345 - type: ToolboxEmergencyFilled - components: - - pos: 40.310272,-5.4070234 - parent: 82 - type: Transform -- uid: 22346 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-14.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22347 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: 37.5,16.5 - parent: 82 - type: Transform -- uid: 22348 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-5.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22349 - type: WallmountTelescreen - components: - - pos: -54.5,2.5 - parent: 82 - type: Transform -- uid: 22350 - type: PoweredSmallLight - components: - - pos: -64.5,-24.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22351 - type: MaintenanceFluffSpawner - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-32.5 - parent: 82 - type: Transform -- uid: 22352 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-32.5 - parent: 82 - type: Transform -- uid: 22353 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: 37.5,15.5 - parent: 82 - type: Transform -- uid: 22354 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-33.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 22355 - type: PottedPlantRandom - components: - - pos: 32.5,-34.5 - parent: 82 - type: Transform -- uid: 22356 - type: PottedPlantRandom - components: - - pos: 25.5,-28.5 - parent: 82 - type: Transform -- uid: 22357 - type: RadioHandheld - components: - - pos: 40.749607,-7.527618 - parent: 82 - type: Transform -- uid: 22358 - type: Grille - components: - - pos: 60.5,-32.5 - parent: 82 - type: Transform -- uid: 22359 - type: Grille - components: - - pos: 60.5,-30.5 - parent: 82 - type: Transform -- uid: 22360 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-44.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22361 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-43.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22362 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-39.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22363 - type: CableApcExtension - components: - - pos: 10.5,-8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22364 - type: CableApcExtension - components: - - pos: -14.5,-31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22365 - type: CableApcExtension - components: - - pos: -14.5,-32.5 - parent: 82 - type: Transform -- uid: 22366 - type: Grille - components: - - pos: 49.5,-32.5 - parent: 82 - type: Transform -- uid: 22367 - type: Grille - components: - - pos: 49.5,-30.5 - parent: 82 - type: Transform -- uid: 22368 - type: Grille - components: - - pos: 49.5,-28.5 - parent: 82 - type: Transform -- uid: 22369 - type: FirelockGlass - components: - - pos: 53.5,-40.5 - parent: 82 - type: Transform -- uid: 22370 - type: FirelockGlass - components: - - pos: 51.5,-40.5 - parent: 82 - type: Transform -- uid: 22371 - type: Grille - components: - - pos: 49.5,-25.5 - parent: 82 - type: Transform -- uid: 22372 - type: ClosetWallEmergencyFilledRandom - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-32.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22373 - type: CornSeeds - components: - - pos: 49.68216,-44.980404 - parent: 82 - type: Transform -- uid: 22374 - type: SpawnMobMcGriff - components: - - pos: 62.5,-14.5 - parent: 82 - type: Transform -- uid: 22375 - type: RadioHandheld - components: - - pos: 60.564903,-10.379502 - parent: 82 - type: Transform -- uid: 22376 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-9.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 22377 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-7.5 - parent: 82 - type: Transform -- uid: 22378 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-9.5 - parent: 82 - type: Transform -- uid: 22379 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-11.5 - parent: 82 - type: Transform -- uid: 22380 - type: FirelockGlass - components: - - pos: 59.5,-18.5 - parent: 82 - type: Transform -- uid: 22381 - type: FirelockGlass - components: - - pos: 56.5,-6.5 - parent: 82 - type: Transform -- uid: 22382 - type: FirelockGlass - components: - - pos: 35.5,-10.5 - parent: 82 - type: Transform -- uid: 22383 - type: FirelockGlass - components: - - pos: 34.5,-10.5 - parent: 82 - type: Transform -- uid: 22384 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-14.5 - parent: 82 - type: Transform -- uid: 22385 - type: FirelockGlass - components: - - pos: 41.5,-10.5 - parent: 82 - type: Transform -- uid: 22386 - type: FirelockGlass - components: - - pos: 39.5,-10.5 - parent: 82 - type: Transform -- uid: 22387 - type: FirelockGlass - components: - - pos: 41.5,-1.5 - parent: 82 - type: Transform -- uid: 22388 - type: FirelockGlass - components: - - pos: 41.5,-6.5 - parent: 82 - type: Transform -- uid: 22389 - type: FirelockGlass - components: - - pos: 39.5,-1.5 - parent: 82 - type: Transform -- uid: 22390 - type: FirelockGlass - components: - - pos: 41.5,1.5 - parent: 82 - type: Transform -- uid: 22391 - type: FirelockGlass - components: - - pos: 44.5,-1.5 - parent: 82 - type: Transform -- uid: 22392 - type: FirelockGlass - components: - - pos: -20.5,-5.5 - parent: 82 - type: Transform -- uid: 22393 - type: FirelockGlass - components: - - pos: -19.5,-5.5 - parent: 82 - type: Transform -- uid: 22394 - type: SignalButton - components: - - rot: -1.5707963267948966 rad - pos: 29.5,14.5 - parent: 82 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 957 - - port: Toggle - uid: 958 - - port: Toggle - uid: 959 - type: SignalTransmitter -- uid: 22395 - type: FireAlarm - components: - - pos: -3.5,18.5 - parent: 82 - type: Transform - - devices: - - 10309 - - 10310 - - 10311 - - 10312 - - 10313 - - 10314 - - 10315 - - 10316 - - 22622 - type: DeviceList -- uid: 22396 - type: FirelockGlass - components: - - pos: -1.5,-4.5 - parent: 82 - type: Transform -- uid: 22397 - type: WindoorScienceLocked - components: - - rot: 3.141592653589793 rad - pos: 27.5,57.5 - parent: 82 - type: Transform -- uid: 22398 - type: FirelockGlass - components: - - pos: -11.5,31.5 - parent: 82 - type: Transform -- uid: 22399 - type: FirelockEdge - components: - - pos: -20.5,35.5 - parent: 82 - type: Transform -- uid: 22400 - type: FirelockEdge - components: - - pos: -19.5,35.5 - parent: 82 - type: Transform -- uid: 22401 - type: FirelockEdge - components: - - pos: -18.5,35.5 - parent: 82 - type: Transform -- uid: 22402 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -9.5,45.5 - parent: 82 - type: Transform -- uid: 22403 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -9.5,44.5 - parent: 82 - type: Transform -- uid: 22404 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -57.5,30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22405 - type: FirelockGlass - components: - - pos: -55.5,32.5 - parent: 82 - type: Transform -- uid: 22406 - type: FirelockGlass - components: - - pos: -56.5,32.5 - parent: 82 - type: Transform -- uid: 22407 - type: FirelockGlass - components: - - pos: -59.5,35.5 - parent: 82 - type: Transform -- uid: 22408 - type: PottedPlantRandom - components: - - pos: 18.5,29.5 - parent: 82 - type: Transform -- uid: 22409 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 24.5,-31.5 - parent: 82 - type: Transform -- uid: 22410 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 24.5,-30.5 - parent: 82 - type: Transform -- uid: 22411 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 24.5,-35.5 - parent: 82 - type: Transform -- uid: 22412 - type: ClothingHeadHelmetTemplar - components: - - pos: -33.48017,40.534813 - parent: 82 - type: Transform -- uid: 22413 - type: CableHV - components: - - pos: -48.5,10.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22414 - type: CableHV - components: - - pos: -48.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22415 - type: CableHV - components: - - pos: -48.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22416 - type: CableHV - components: - - pos: -47.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22417 - type: CableHV - components: - - pos: -46.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22418 - type: CableHV - components: - - pos: -45.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22419 - type: CableHV - components: - - pos: -44.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22420 - type: CableHV - components: - - pos: -43.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22421 - type: CableHV - components: - - pos: -42.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22422 - type: CableHV - components: - - pos: -41.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22423 - type: CableHV - components: - - pos: -40.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22424 - type: CableHV - components: - - pos: -39.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22425 - type: CableHV - components: - - pos: -38.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22426 - type: CableHV - components: - - pos: -37.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22427 - type: CableHV - components: - - pos: -36.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22428 - type: CableHV - components: - - pos: -35.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22429 - type: CableHV - components: - - pos: -34.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22430 - type: CableHV - components: - - pos: -31.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22431 - type: CableHV - components: - - pos: -31.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22432 - type: CableHV - components: - - pos: -30.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22433 - type: CableHV - components: - - pos: -29.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22434 - type: CableHV - components: - - pos: -28.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22435 - type: CableHV - components: - - pos: -27.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22436 - type: CableHV - components: - - pos: -26.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22437 - type: CableHV - components: - - pos: -25.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22438 - type: CableHV - components: - - pos: -24.5,9.5 - parent: 82 - type: Transform -- uid: 22439 - type: CableHV - components: - - pos: -48.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22440 - type: CableHV - components: - - pos: -49.5,11.5 - parent: 82 - type: Transform -- uid: 22441 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22442 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-16.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22443 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 56.5,-18.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22444 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 56.5,-17.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22445 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 56.5,-15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22446 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 56.5,-14.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22447 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 56.5,-13.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22448 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 56.5,-12.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22449 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 56.5,-11.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22450 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 56.5,-10.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22451 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 56.5,-9.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22452 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 56.5,-8.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22453 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 56.5,-7.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22454 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22455 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22456 - type: Rack - components: - - pos: 52.5,-16.5 - parent: 82 - type: Transform -- uid: 22457 - type: PaintingMonkey - components: - - pos: 33.5,58.5 - parent: 82 - type: Transform -- uid: 22458 - type: FirelockGlass - components: - - pos: 30.5,8.5 - parent: 82 - type: Transform -- uid: 22459 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 21.5,17.5 - parent: 82 - type: Transform -- uid: 22460 - type: FirelockGlass - components: - - pos: -1.5,-2.5 - parent: 82 - type: Transform -- uid: 22461 - type: RandomPosterContraband - components: - - pos: 44.5,-44.5 - parent: 82 - type: Transform -- uid: 22462 - type: FirelockGlass - components: - - pos: 33.5,18.5 - parent: 82 - type: Transform -- uid: 22463 - type: PosterContrabandVoteWeh - components: - - pos: 33.5,-11.5 - parent: 82 - type: Transform -- uid: 22464 - type: PosterLegitWalk - components: - - pos: 32.5,-6.5 - parent: 82 - type: Transform -- uid: 22465 - type: FirelockGlass - components: - - pos: 16.5,-2.5 - parent: 82 - type: Transform -- uid: 22466 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22467 - type: Rack - components: - - pos: 52.5,-15.5 - parent: 82 - type: Transform -- uid: 22468 - type: FirelockGlass - components: - - pos: 16.5,-3.5 - parent: 82 - type: Transform -- uid: 22469 - type: FirelockGlass - components: - - pos: 16.5,-4.5 - parent: 82 - type: Transform -- uid: 22470 - type: FirelockGlass - components: - - pos: 34.5,34.5 - parent: 82 - type: Transform -- uid: 22471 - type: FirelockGlass - components: - - pos: 42.5,4.5 - parent: 82 - type: Transform -- uid: 22472 - type: FirelockGlass - components: - - pos: 33.5,33.5 - parent: 82 - type: Transform -- uid: 22473 - type: FirelockGlass - components: - - pos: 42.5,3.5 - parent: 82 - type: Transform -- uid: 22474 - type: FirelockGlass - components: - - pos: 30.5,49.5 - parent: 82 - type: Transform -- uid: 22475 - type: FirelockGlass - components: - - pos: 30.5,50.5 - parent: 82 - type: Transform -- uid: 22476 - type: FirelockGlass - components: - - pos: 30.5,51.5 - parent: 82 - type: Transform -- uid: 22477 - type: ClothingHeadHatAnimalMonkey - components: - - pos: 33.54575,57.0862 - parent: 82 - type: Transform -- uid: 22478 - type: ClothingOuterSuitMonkey - components: - - pos: 33.54575,56.683422 - parent: 82 - type: Transform -- uid: 22479 - type: d6Dice - components: - - pos: 33.70482,64.63014 - parent: 82 - type: Transform -- uid: 22480 - type: d6Dice - components: - - pos: 33.41315,64.47736 - parent: 82 - type: Transform -- uid: 22481 - type: IngotGold1 - components: - - pos: 33.39926,64.68569 - parent: 82 - type: Transform -- uid: 22482 - type: TableCarpet - components: - - pos: 33.5,64.5 - parent: 82 - type: Transform -- uid: 22483 - type: FirelockGlass - components: - - pos: 25.5,49.5 - parent: 82 - type: Transform -- uid: 22484 - type: FirelockGlass - components: - - pos: 25.5,50.5 - parent: 82 - type: Transform -- uid: 22485 - type: FirelockGlass - components: - - pos: 25.5,51.5 - parent: 82 - type: Transform -- uid: 22486 - type: PosterLegitNanotrasenLogo - components: - - pos: 59.5,-20.5 - parent: 82 - type: Transform -- uid: 22487 - type: SignDoors - components: - - pos: 48.5,35.5 - parent: 82 - type: Transform -- uid: 22488 - type: RandomPosterContraband - components: - - pos: 65.5,10.5 - parent: 82 - type: Transform -- uid: 22489 - type: Grille - components: - - pos: 65.5,8.5 - parent: 82 - type: Transform -- uid: 22490 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 26.5,55.5 - parent: 82 - type: Transform -- uid: 22491 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 26.5,54.5 - parent: 82 - type: Transform -- uid: 22492 - type: PosterLegitHereForYourSafety - components: - - pos: 34.5,-13.5 - parent: 82 - type: Transform -- uid: 22493 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 0.5,53.5 - parent: 82 - type: Transform -- uid: 22494 - type: GasVentScrubber - components: - - pos: 14.5,31.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22495 - type: Firelock - components: - - pos: -32.5,37.5 - parent: 82 - type: Transform -- uid: 22496 - type: FirelockGlass - components: - - pos: -11.5,30.5 - parent: 82 - type: Transform -- uid: 22497 - type: AirlockGlass - components: - - pos: -21.5,28.5 - parent: 82 - type: Transform -- uid: 22498 - type: Grille - components: - - pos: 64.5,-23.5 - parent: 82 - type: Transform -- uid: 22499 - type: Grille - components: - - pos: 63.5,-19.5 - parent: 82 - type: Transform -- uid: 22500 - type: FirelockGlass - components: - - pos: -24.5,4.5 - parent: 82 - type: Transform -- uid: 22501 - type: FirelockGlass - components: - - pos: -24.5,1.5 - parent: 82 - type: Transform -- uid: 22502 - type: Grille - components: - - pos: 63.5,-22.5 - parent: 82 - type: Transform -- uid: 22503 - type: FirelockGlass - components: - - pos: -22.5,7.5 - parent: 82 - type: Transform -- uid: 22504 - type: FirelockGlass - components: - - pos: -23.5,7.5 - parent: 82 - type: Transform -- uid: 22505 - type: Firelock - components: - - pos: -10.5,6.5 - parent: 82 - type: Transform -- uid: 22506 - type: Firelock - components: - - pos: -14.5,4.5 - parent: 82 - type: Transform -- uid: 22507 - type: FirelockGlass - components: - - pos: -5.5,0.5 - parent: 82 - type: Transform -- uid: 22508 - type: FirelockEdge - components: - - pos: -4.5,-1.5 - parent: 82 - type: Transform -- uid: 22509 - type: FirelockEdge - components: - - pos: -8.5,-1.5 - parent: 82 - type: Transform -- uid: 22510 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22511 - type: FirelockGlass - components: - - pos: -1.5,-3.5 - parent: 82 - type: Transform -- uid: 22512 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22513 - type: FirelockGlass - components: - - pos: -1.5,-23.5 - parent: 82 - type: Transform -- uid: 22514 - type: FirelockGlass - components: - - pos: -4.5,-6.5 - parent: 82 - type: Transform -- uid: 22515 - type: FirelockGlass - components: - - pos: -3.5,-6.5 - parent: 82 - type: Transform -- uid: 22516 - type: FirelockGlass - components: - - pos: -13.5,-4.5 - parent: 82 - type: Transform -- uid: 22517 - type: FirelockGlass - components: - - pos: -13.5,-3.5 - parent: 82 - type: Transform -- uid: 22518 - type: FirelockGlass - components: - - pos: -13.5,-2.5 - parent: 82 - type: Transform -- uid: 22519 - type: AirAlarm - components: - - pos: -9.5,-1.5 - parent: 82 - type: Transform - - devices: - - 13645 - - 13646 - - 13648 - - 13647 - - 20671 - - 20547 - - 4495 - - 22656 - - 14636 - - 22518 - - 22517 - - 22516 - - 22509 - - 22508 - - 22507 - - 22460 - - 22511 - - 22396 - - 22515 - - 22514 - - 22587 - type: DeviceList -- uid: 22520 - type: MaintenanceToolSpawner - components: - - pos: 32.5,-11.5 - parent: 82 - type: Transform -- uid: 22521 - type: ClothingHeadHelmetCosmonaut - components: - - pos: 14.587009,-48.46675 - parent: 82 - type: Transform -- uid: 22522 - type: MaintenanceFluffSpawner - components: - - pos: 8.5,-48.5 - parent: 82 - type: Transform -- uid: 22523 - type: ChairFolding - components: - - rot: 3.141592653589793 rad - pos: 33.5,63.5 - parent: 82 - type: Transform -- uid: 22524 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 31.5,52.5 - parent: 82 - type: Transform -- uid: 22525 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 33.5,52.5 - parent: 82 - type: Transform -- uid: 22526 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-26.5 - parent: 82 - type: Transform -- uid: 22527 - type: IntercomService - components: - - rot: -1.5707963267948966 rad - pos: -2.5,38.5 - parent: 82 - type: Transform -- uid: 22528 - type: ExtinguisherCabinetFilled - components: - - pos: 17.5,52.5 - parent: 82 - type: Transform -- uid: 22529 - type: ExtinguisherCabinetFilled - components: - - pos: 21.5,59.5 - parent: 82 - type: Transform -- uid: 22530 - type: ExtinguisherCabinetFilled - components: - - pos: 22.5,71.5 - parent: 82 - type: Transform -- uid: 22531 - type: ExtinguisherCabinetFilled - components: - - pos: 34.5,47.5 - parent: 82 - type: Transform -- uid: 22532 - type: ExtinguisherCabinetFilled - components: - - pos: 40.5,25.5 - parent: 82 - type: Transform -- uid: 22533 - type: ExtinguisherCabinetFilled - components: - - pos: 85.5,5.5 - parent: 82 - type: Transform -- uid: 22534 - type: FirelockGlass - components: - - pos: 46.5,-1.5 - parent: 82 - type: Transform -- uid: 22535 - type: ExtinguisherCabinetFilled - components: - - pos: 53.5,-9.5 - parent: 82 - type: Transform -- uid: 22536 - type: ExtinguisherCabinetFilled - components: - - pos: 47.5,-9.5 - parent: 82 - type: Transform -- uid: 22537 - type: ExtinguisherCabinetFilled - components: - - pos: 23.5,16.5 - parent: 82 - type: Transform -- uid: 22538 - type: ExtinguisherCabinetFilled - components: - - pos: 24.5,-10.5 - parent: 82 - type: Transform -- uid: 22539 - type: ExtinguisherCabinetFilled - components: - - pos: 23.5,-24.5 - parent: 82 - type: Transform -- uid: 22540 - type: ExtinguisherCabinetFilled - components: - - pos: 22.5,-53.5 - parent: 82 - type: Transform -- uid: 22541 - type: ExtinguisherCabinetFilled - components: - - pos: 4.5,-33.5 - parent: 82 - type: Transform -- uid: 22542 - type: ExtinguisherCabinetFilled - components: - - pos: -57.5,-23.5 - parent: 82 - type: Transform -- uid: 22543 - type: ExtinguisherCabinetFilled - components: - - pos: -20.5,-36.5 - parent: 82 - type: Transform -- uid: 22544 - type: ExtinguisherCabinetFilled - components: - - pos: -34.5,-29.5 - parent: 82 - type: Transform -- uid: 22545 - type: ExtinguisherCabinetFilled - components: - - pos: 4.5,-13.5 - parent: 82 - type: Transform -- uid: 22546 - type: ExtinguisherCabinetFilled - components: - - pos: -3.5,-0.5 - parent: 82 - type: Transform -- uid: 22547 - type: ExtinguisherCabinetFilled - components: - - pos: -27.5,-16.5 - parent: 82 - type: Transform -- uid: 22548 - type: ExtinguisherCabinetFilled - components: - - pos: -39.5,-14.5 - parent: 82 - type: Transform -- uid: 22549 - type: Intercom - components: - - rot: 3.141592653589793 rad - pos: -27.5,-0.5 - parent: 82 - type: Transform -- uid: 22550 - type: ToyAi - components: - - pos: -25.545343,15.588716 - parent: 82 - type: Transform -- uid: 22551 - type: CrateNPCBee - components: - - pos: -18.5,0.5 - parent: 82 - type: Transform - - open: True - removedMasks: 28 - type: EntityStorage - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - - -0.4,-0.4 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 135 - hard: True - restitution: 0 - friction: 0.4 - id: null - type: Fixtures -- uid: 22552 - type: PineappleSeeds - components: - - pos: 49.72436,-44.272827 - parent: 82 - type: Transform -- uid: 22553 - type: RandomArcade - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-48.5 - parent: 82 - type: Transform -- uid: 22554 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 59.5,-6.5 - parent: 82 - type: Transform -- uid: 22555 - type: RandomArcade - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-50.5 - parent: 82 - type: Transform -- uid: 22556 - type: Poweredlight - components: - - pos: 37.5,-11.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22557 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-6.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22558 - type: Poweredlight - components: - - pos: 42.5,-2.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22559 - type: Poweredlight - components: - - pos: 43.5,-11.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22560 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,24.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22561 - type: WallSolid - components: - - pos: 73.5,8.5 - parent: 82 - type: Transform -- uid: 22562 - type: ReinforcedWindow - components: - - pos: 63.5,-21.5 - parent: 82 - type: Transform -- uid: 22563 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: -47.5,-6.5 - parent: 82 - type: Transform -- uid: 22564 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: -54.5,-9.5 - parent: 82 - type: Transform -- uid: 22565 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: -54.5,-19.5 - parent: 82 - type: Transform -- uid: 22566 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -60.5,-29.5 - parent: 82 - type: Transform -- uid: 22567 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: -49.5,-46.5 - parent: 82 - type: Transform -- uid: 22568 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: -28.5,-46.5 - parent: 82 - type: Transform -- uid: 22569 - type: WallReinforced - components: - - pos: 44.5,52.5 - parent: 82 - type: Transform -- uid: 22570 - type: FirelockGlass - components: - - pos: 48.5,9.5 - parent: 82 - type: Transform -- uid: 22571 - type: GasFilterFlipped - components: - - pos: 55.5,-34.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 22572 - type: GasVentScrubber - components: - - pos: 56.5,-4.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22573 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 56.5,-6.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22574 - type: GasPipeFourway - components: - - pos: 56.5,-5.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22575 - type: FirelockGlass - components: - - pos: 47.5,43.5 - parent: 82 - type: Transform -- uid: 22576 - type: FirelockEdge - components: - - pos: 18.5,69.5 - parent: 82 - type: Transform -- uid: 22577 - type: FirelockGlass - components: - - pos: 54.5,-6.5 - parent: 82 - type: Transform -- uid: 22578 - type: CableHV - components: - - pos: -32.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22579 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -30.5,9.5 - parent: 82 - type: Transform -- uid: 22580 - type: CableHV - components: - - pos: -33.5,8.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22581 - type: FirelockGlass - components: - - pos: 59.5,-19.5 - parent: 82 - type: Transform -- uid: 22582 - type: CableApcExtension - components: - - pos: -3.5,34.5 - parent: 82 - type: Transform -- uid: 22583 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -20.5,1.5 - parent: 82 - type: Transform -- uid: 22584 - type: PosterContrabandGreyTide - components: - - pos: 25.5,-10.5 - parent: 82 - type: Transform -- uid: 22585 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -0.5,49.5 - parent: 82 - type: Transform -- uid: 22586 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-15.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22587 - type: FirelockGlass - components: - - pos: -5.5,-6.5 - parent: 82 - type: Transform -- uid: 22588 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 22589 - type: WardrobeYellowFilled - components: - - pos: 27.5,-35.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22590 - type: FirelockEdge - components: - - pos: -61.5,53.5 - parent: 82 - type: Transform -- uid: 22591 - type: GasPipeStraight - components: - - pos: -57.5,32.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22592 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 9.5,31.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22593 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -4.5,34.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22594 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -3.5,34.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22595 - type: GasPipeStraight - components: - - pos: -3.5,37.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22596 - type: FirelockGlass - components: - - pos: 16.5,-25.5 - parent: 82 - type: Transform -- uid: 22597 - type: FirelockGlass - components: - - pos: 16.5,-23.5 - parent: 82 - type: Transform -- uid: 22598 - type: FirelockGlass - components: - - pos: 16.5,-24.5 - parent: 82 - type: Transform -- uid: 22599 - type: FirelockGlass - components: - - pos: 21.5,-54.5 - parent: 82 - type: Transform -- uid: 22600 - type: FirelockGlass - components: - - pos: -4.5,-15.5 - parent: 82 - type: Transform -- uid: 22601 - type: FirelockGlass - components: - - pos: 20.5,-54.5 - parent: 82 - type: Transform -- uid: 22602 - type: FirelockGlass - components: - - pos: 19.5,-54.5 - parent: 82 - type: Transform -- uid: 22603 - type: TableReinforcedGlass - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-10.5 - parent: 82 - type: Transform -- uid: 22604 - type: OxygenCanister - components: - - pos: -40.5,25.5 - parent: 82 - type: Transform -- uid: 22605 - type: FirelockGlass - components: - - pos: 42.5,2.5 - parent: 82 - type: Transform -- uid: 22606 - type: FirelockGlass - components: - - pos: -57.5,32.5 - parent: 82 - type: Transform -- uid: 22607 - type: FirelockGlass - components: - - pos: -11.5,29.5 - parent: 82 - type: Transform -- uid: 22608 - type: FirelockGlass - components: - - pos: -26.5,28.5 - parent: 82 - type: Transform -- uid: 22609 - type: FirelockGlass - components: - - pos: -25.5,28.5 - parent: 82 - type: Transform -- uid: 22610 - type: AirlockGlass - components: - - pos: -23.5,28.5 - parent: 82 - type: Transform -- uid: 22611 - type: FirelockEdge - components: - - pos: 42.5,12.5 - parent: 82 - type: Transform -- uid: 22612 - type: FirelockGlass - components: - - pos: 25.5,-4.5 - parent: 82 - type: Transform -- uid: 22613 - type: FirelockGlass - components: - - pos: 25.5,-3.5 - parent: 82 - type: Transform -- uid: 22614 - type: FirelockGlass - components: - - pos: 25.5,-2.5 - parent: 82 - type: Transform -- uid: 22615 - type: FirelockGlass - components: - - pos: -31.5,-4.5 - parent: 82 - type: Transform -- uid: 22616 - type: AirlockCargoGlassLocked - components: - - pos: 40.5,14.5 - parent: 82 - type: Transform -- uid: 22617 - type: AirlockCargoGlassLocked - components: - - pos: 40.5,13.5 - parent: 82 - type: Transform -- uid: 22618 - type: AirlockCargoGlassLocked - components: - - pos: 40.5,12.5 - parent: 82 - type: Transform -- uid: 22619 - type: AirlockGlass - components: - - pos: -3.5,-6.5 - parent: 82 - type: Transform -- uid: 22620 - type: FirelockGlass - components: - - pos: -1.5,-25.5 - parent: 82 - type: Transform -- uid: 22621 - type: AirlockGlass - components: - - pos: -5.5,-6.5 - parent: 82 - type: Transform -- uid: 22622 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -5.5,17.5 - parent: 82 - type: Transform -- uid: 22623 - type: FirelockGlass - components: - - pos: 30.5,9.5 - parent: 82 - type: Transform -- uid: 22624 - type: AirlockGlass - components: - - pos: -4.5,-6.5 - parent: 82 - type: Transform -- uid: 22625 - type: FirelockGlass - components: - - pos: -1.5,-24.5 - parent: 82 - type: Transform -- uid: 22626 - type: Rack - components: - - pos: -38.5,25.5 - parent: 82 - type: Transform -- uid: 22627 - type: ClothingHeadHelmetEVA - components: - - pos: -43.655327,25.736305 - parent: 82 - type: Transform -- uid: 22628 - type: ClothingOuterHardsuitEVA - components: - - pos: -38.33588,25.597416 - parent: 82 - type: Transform -- uid: 22629 - type: ClothingOuterHardsuitEVA - components: - - pos: -41.33588,25.583527 - parent: 82 - type: Transform -- uid: 22630 - type: ClothingOuterHardsuitEVA - components: - - pos: -36.405327,25.611305 - parent: 82 - type: Transform -- uid: 22631 - type: ClothingMaskBreath - components: - - pos: -38.3081,27.347416 - parent: 82 - type: Transform -- uid: 22632 - type: ClothingHeadHelmetEVA - components: - - pos: -42.655327,25.736305 - parent: 82 - type: Transform -- uid: 22633 - type: ClothingOuterHardsuitEVA - components: - - pos: -37.34977,25.611305 - parent: 82 - type: Transform -- uid: 22634 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-27.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22635 - type: ClothingOuterHardsuitEVA - components: - - pos: -42.33588,25.583527 - parent: 82 - type: Transform -- uid: 22636 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: -41.6831,27.639084 - parent: 82 - type: Transform -- uid: 22637 - type: ClothingOuterHardsuitEVA - components: - - pos: -43.36366,25.597416 - parent: 82 - type: Transform -- uid: 22638 - type: CableApcExtension - components: - - pos: 40.5,12.5 - parent: 82 - type: Transform -- uid: 22639 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -0.5,50.5 - parent: 82 - type: Transform -- uid: 22640 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -0.5,51.5 - parent: 82 - type: Transform -- uid: 22641 - type: FirelockGlass - components: - - pos: 43.5,52.5 - parent: 82 - type: Transform -- uid: 22642 - type: ClosetRadiationSuitFilled - components: - - pos: -18.5,54.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22643 - type: ClosetRadiationSuitFilled - components: - - pos: -18.5,53.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22644 - type: WardrobePinkFilled - components: - - pos: 28.5,-35.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22645 - type: WardrobeGreyFilled - components: - - pos: 27.5,-30.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22646 - type: WardrobeGreenFilled - components: - - pos: 29.5,-30.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22647 - type: WardrobeBlueFilled - components: - - pos: 30.5,-30.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22648 - type: WardrobeBlackFilled - components: - - pos: 28.5,-30.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22649 - type: WardrobeMixedFilled - components: - - pos: 29.5,-35.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22650 - type: WardrobeMixedFilled - components: - - pos: 26.5,-30.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22651 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 68.5,-0.5 - parent: 82 - type: Transform -- uid: 22652 - type: TableReinforcedGlass - components: - - pos: 29.5,59.5 - parent: 82 - type: Transform -- uid: 22653 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 35.5,26.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 22654 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 22.5,70.5 - parent: 82 - type: Transform - - devices: - - invalid - - 7337 - - 22576 - - 10980 - type: DeviceList -- uid: 22655 - type: AirAlarm - components: - - pos: 25.5,62.5 - parent: 82 - type: Transform - - devices: - - 12786 - - 10985 - - 12785 - - 10497 - - 10496 - - 10507 - type: DeviceList -- uid: 22656 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22657 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 24.5,-34.5 - parent: 82 - type: Transform -- uid: 22658 - type: CableMV - components: - - pos: 4.5,57.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22659 - type: CableMV - components: - - pos: -3.5,57.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22660 - type: CableMV - components: - - pos: -3.5,59.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22661 - type: CableMV - components: - - pos: -3.5,61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22662 - type: CableMV - components: - - pos: -3.5,63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22663 - type: CableMV - components: - - pos: -1.5,63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22664 - type: CableMV - components: - - pos: 0.5,63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22665 - type: CableMV - components: - - pos: 2.5,63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22666 - type: CableMV - components: - - pos: 4.5,63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22667 - type: CableMV - components: - - pos: 4.5,61.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22668 - type: CableMV - components: - - pos: 4.5,59.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22669 - type: Grille - components: - - pos: 4.5,57.5 - parent: 82 - type: Transform -- uid: 22670 - type: Grille - components: - - pos: 4.5,59.5 - parent: 82 - type: Transform -- uid: 22671 - type: Grille - components: - - pos: 4.5,62.5 - parent: 82 - type: Transform -- uid: 22672 - type: Grille - components: - - pos: 4.5,63.5 - parent: 82 - type: Transform -- uid: 22673 - type: Grille - components: - - pos: 0.5,63.5 - parent: 82 - type: Transform -- uid: 22674 - type: Grille - components: - - pos: -2.5,63.5 - parent: 82 - type: Transform -- uid: 22675 - type: Grille - components: - - pos: -3.5,62.5 - parent: 82 - type: Transform -- uid: 22676 - type: Grille - components: - - pos: -3.5,59.5 - parent: 82 - type: Transform -- uid: 22677 - type: SignalButton - components: - - rot: -1.5707963267948966 rad - pos: 17.5,54.5 - parent: 82 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 7990 - - port: Toggle - uid: 7989 - - port: Toggle - uid: 7988 - type: SignalTransmitter -- uid: 22678 - type: UnfinishedMachineFrame - components: - - pos: 11.5,53.5 - parent: 82 - type: Transform -- uid: 22679 - type: ComputerFrame - components: - - pos: 13.5,58.5 - parent: 82 - type: Transform -- uid: 22680 - type: DisposalUnit - components: - - pos: 35.5,30.5 - parent: 82 - type: Transform -- uid: 22681 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 35.5,27.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 22682 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 17.5,58.5 - parent: 82 - type: Transform - - devices: - - 12625 - - 12787 - - 12768 - - 12623 - - 12757 - - 12755 - - 12818 - - 12817 - - 12853 - - 21421 - - 6939 - - invalid - - 21409 - - 20465 - - 20442 - - 21613 - - 25437 - - 25438 - - 10507 - type: DeviceList -- uid: 22683 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22684 - type: CableMV - components: - - pos: -3.5,62.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22685 - type: CableMV - components: - - pos: 3.5,63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22686 - type: CableMV - components: - - pos: 4.5,62.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22687 - type: CableMV - components: - - pos: 4.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22688 - type: CableMV - components: - - pos: 4.5,58.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22689 - type: Grille - components: - - pos: 4.5,58.5 - parent: 82 - type: Transform -- uid: 22690 - type: Grille - components: - - pos: 4.5,60.5 - parent: 82 - type: Transform -- uid: 22691 - type: Grille - components: - - pos: 3.5,63.5 - parent: 82 - type: Transform -- uid: 22692 - type: Grille - components: - - pos: 1.5,63.5 - parent: 82 - type: Transform -- uid: 22693 - type: Grille - components: - - pos: -0.5,63.5 - parent: 82 - type: Transform -- uid: 22694 - type: Grille - components: - - pos: -3.5,63.5 - parent: 82 - type: Transform -- uid: 22695 - type: Grille - components: - - pos: -3.5,60.5 - parent: 82 - type: Transform -- uid: 22696 - type: Grille - components: - - pos: -3.5,58.5 - parent: 82 - type: Transform -- uid: 22697 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-26.5 - parent: 82 - type: Transform -- uid: 22698 - type: PaperWrittenAMEScribbles - components: - - pos: -9.963232,47.588577 - parent: 82 - type: Transform -- uid: 22699 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -57.5,8.5 - parent: 82 - type: Transform -- uid: 22700 - type: TableReinforced - components: - - pos: 36.5,22.5 - parent: 82 - type: Transform -- uid: 22701 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -17.5,47.5 - parent: 82 - type: Transform -- uid: 22702 - type: ExtinguisherCabinetFilled - components: - - pos: -28.5,28.5 - parent: 82 - type: Transform -- uid: 22703 - type: CableApcExtension - components: - - pos: 15.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22704 - type: CableApcExtension - components: - - pos: 16.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22705 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-53.5 - parent: 82 - type: Transform -- uid: 22706 - type: WallSolid - components: - - pos: -43.5,-38.5 - parent: 82 - type: Transform -- uid: 22707 - type: RadiationCollector - components: - - pos: -17.5,71.5 - parent: 82 - type: Transform -- uid: 22708 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -50.5,-17.5 - parent: 82 - type: Transform -- uid: 22709 - type: CableHV - components: - - pos: -17.5,75.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22710 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-25.5 - parent: 82 - type: Transform -- uid: 22711 - type: CableHV - components: - - pos: -17.5,72.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22712 - type: RadiationCollector - components: - - pos: -17.5,75.5 - parent: 82 - type: Transform -- uid: 22713 - type: Grille - components: - - pos: 24.5,-36.5 - parent: 82 - type: Transform -- uid: 22714 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: 44.5,14.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -51482.43 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14025 - type: SignalReceiver -- uid: 22715 - type: CableHV - components: - - pos: 16.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22716 - type: AirlockMaintLocked - components: - - pos: -2.5,-13.5 - parent: 82 - type: Transform -- uid: 22717 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 17.5,-15.5 - parent: 82 - type: Transform -- uid: 22718 - type: Poweredlight - components: - - pos: 32.5,-37.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22719 - type: CableHV - components: - - pos: -33.5,70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22720 - type: WetFloorSign - components: - - pos: -3.4991837,34.924904 - parent: 82 - type: Transform -- uid: 22721 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -57.5,5.5 - parent: 82 - type: Transform -- uid: 22722 - type: CarpetBlue - components: - - pos: -42.5,-37.5 - parent: 82 - type: Transform -- uid: 22723 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 31.5,57.5 - parent: 82 - type: Transform -- uid: 22724 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 31.5,58.5 - parent: 82 - type: Transform -- uid: 22725 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 31.5,59.5 - parent: 82 - type: Transform -- uid: 22726 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: -6.5,33.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -361985.2 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver -- uid: 22727 - type: CableHV - components: - - pos: -17.5,74.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22728 - type: CableHV - components: - - pos: -17.5,71.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22729 - type: Rack - components: - - pos: 15.5,-21.5 - parent: 82 - type: Transform -- uid: 22730 - type: RandomInstruments - components: - - pos: 15.5,-21.5 - parent: 82 - type: Transform -- uid: 22731 - type: Catwalk - components: - - pos: 14.5,-21.5 - parent: 82 - type: Transform -- uid: 22732 - type: Catwalk - components: - - pos: 14.5,-20.5 - parent: 82 - type: Transform -- uid: 22733 - type: Catwalk - components: - - pos: 15.5,-20.5 - parent: 82 - type: Transform -- uid: 22734 - type: Catwalk - components: - - pos: 16.5,-20.5 - parent: 82 - type: Transform -- uid: 22735 - type: Catwalk - components: - - pos: 16.5,-19.5 - parent: 82 - type: Transform -- uid: 22736 - type: RadiationCollector - components: - - pos: -17.5,74.5 - parent: 82 - type: Transform -- uid: 22737 - type: AppleSeeds - components: - - pos: 49.40492,-43.897827 - parent: 82 - type: Transform -- uid: 22738 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-26.5 - parent: 82 - type: Transform -- uid: 22739 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 82 - type: Transform -- uid: 22740 - type: CableApcExtension - components: - - pos: -36.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22741 - type: ClothingNeckCloakHerald - components: - - pos: 39.48643,62.460007 - parent: 82 - type: Transform -- uid: 22742 - type: Catwalk - components: - - pos: 16.5,-17.5 - parent: 82 - type: Transform -- uid: 22743 - type: FirelockEdge - components: - - pos: -57.5,53.5 - parent: 82 - type: Transform -- uid: 22744 - type: ClothingMaskBreath - components: - - pos: -38.669212,27.722416 - parent: 82 - type: Transform -- uid: 22745 - type: ClothingMaskBreath - components: - - pos: -38.72477,27.472416 - parent: 82 - type: Transform -- uid: 22746 - type: ClothingMaskBreath - components: - - pos: -38.3081,27.569641 - parent: 82 - type: Transform -- uid: 22747 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: -41.37755,27.444641 - parent: 82 - type: Transform -- uid: 22748 - type: Rack - components: - - pos: -41.5,25.5 - parent: 82 - type: Transform -- uid: 22749 - type: ExtinguisherCabinetFilled - components: - - pos: -20.5,12.5 - parent: 82 - type: Transform -- uid: 22750 - type: AirlockGlass - components: - - pos: -22.5,28.5 - parent: 82 - type: Transform -- uid: 22751 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-32.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 22752 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 28.5,-32.5 - parent: 82 - type: Transform -- uid: 22753 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: 31.5,-30.5 - parent: 82 - type: Transform -- uid: 22754 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-33.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 22755 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 28.5,-33.5 - parent: 82 - type: Transform -- uid: 22756 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-33.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 22757 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-32.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 22758 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 27.5,-32.5 - parent: 82 - type: Transform -- uid: 22759 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 27.5,-33.5 - parent: 82 - type: Transform -- uid: 22760 - type: WardrobeMixedFilled - components: - - pos: 26.5,-35.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22761 - type: TableReinforcedGlass - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-8.5 - parent: 82 - type: Transform -- uid: 22762 - type: NitrogenCanister - components: - - pos: -39.5,25.5 - parent: 82 - type: Transform -- uid: 22763 - type: ClothingHeadHelmetEVA - components: - - pos: -37.655327,25.680752 - parent: 82 - type: Transform -- uid: 22764 - type: ClothingHeadHelmetEVA - components: - - pos: -36.655327,25.680752 - parent: 82 - type: Transform -- uid: 22765 - type: JetpackMiniFilled - components: - - pos: -37.517998,27.880928 - parent: 82 - type: Transform -- uid: 22766 - type: JetpackMiniFilled - components: - - pos: -37.50411,27.533707 - parent: 82 - type: Transform -- uid: 22767 - type: ClothingHeadHelmetEVA - components: - - pos: -38.655327,25.694641 - parent: 82 - type: Transform -- uid: 22768 - type: ClothingHeadHelmetEVA - components: - - pos: -41.655327,25.736305 - parent: 82 - type: Transform -- uid: 22769 - type: FirelockGlass - components: - - pos: 55.5,3.5 - parent: 82 - type: Transform -- uid: 22770 - type: FirelockGlass - components: - - pos: -3.5,-15.5 - parent: 82 - type: Transform -- uid: 22771 - type: AirlockGlass - components: - - pos: -17.5,-3.5 - parent: 82 - type: Transform -- uid: 22772 - type: FirelockGlass - components: - - pos: 63.5,3.5 - parent: 82 - type: Transform -- uid: 22773 - type: FirelockGlass - components: - - pos: 63.5,4.5 - parent: 82 - type: Transform -- uid: 22774 - type: FirelockGlass - components: - - pos: 55.5,2.5 - parent: 82 - type: Transform -- uid: 22775 - type: FirelockGlass - components: - - pos: 32.5,33.5 - parent: 82 - type: Transform -- uid: 22776 - type: FirelockGlass - components: - - pos: 31.5,33.5 - parent: 82 - type: Transform -- uid: 22777 - type: FirelockGlass - components: - - pos: 48.5,2.5 - parent: 82 - type: Transform -- uid: 22778 - type: FirelockGlass - components: - - pos: 48.5,3.5 - parent: 82 - type: Transform -- uid: 22779 - type: FirelockGlass - components: - - pos: 48.5,4.5 - parent: 82 - type: Transform -- uid: 22780 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 13.5,30.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22781 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 28.5,10.5 - parent: 82 - type: Transform -- uid: 22782 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 14.5,30.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22783 - type: CableMV - components: - - pos: -3.5,58.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22784 - type: CableMV - components: - - pos: -3.5,60.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22785 - type: CableMV - components: - - pos: -2.5,63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22786 - type: CableMV - components: - - pos: -0.5,63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22787 - type: CableMV - components: - - pos: 1.5,63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22788 - type: Grille - components: - - pos: -3.5,57.5 - parent: 82 - type: Transform -- uid: 22789 - type: Sink - components: - - rot: 3.141592653589793 rad - pos: -17.5,-17.5 - parent: 82 - type: Transform -- uid: 22790 - type: Catwalk - components: - - pos: 16.5,-16.5 - parent: 82 - type: Transform -- uid: 22791 - type: ClosetEmergencyFilledRandom - components: - - pos: 15.5,-16.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22792 - type: ExtinguisherCabinetFilled - components: - - pos: -10.5,37.5 - parent: 82 - type: Transform -- uid: 22793 - type: ClosetFireFilled - components: - - pos: 15.5,-17.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22794 - type: AirCanister - components: - - pos: 15.5,-19.5 - parent: 82 - type: Transform -- uid: 22795 - type: FirelockGlass - components: - - pos: 39.5,43.5 - parent: 82 - type: Transform -- uid: 22796 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 77.5,13.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22797 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 81.5,13.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22798 - type: Poweredlight - components: - - pos: 78.5,10.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22799 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 80.5,6.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22800 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22801 - type: LockerChemistryFilled - components: - - pos: -57.5,-48.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22802 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -28.5,25.5 - parent: 82 - type: Transform -- uid: 22803 - type: ClothingUniformJumpsuitAncient - components: - - pos: -1.6171393,-8.450615 - parent: 82 - type: Transform -- uid: 22804 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 25.5,3.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22805 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-0.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22806 - type: Grille - components: - - pos: 8.5,63.5 - parent: 82 - type: Transform -- uid: 22807 - type: Grille - components: - - pos: 8.5,64.5 - parent: 82 - type: Transform -- uid: 22808 - type: Grille - components: - - pos: 8.5,65.5 - parent: 82 - type: Transform -- uid: 22809 - type: Grille - components: - - pos: 8.5,55.5 - parent: 82 - type: Transform -- uid: 22810 - type: Grille - components: - - pos: 8.5,56.5 - parent: 82 - type: Transform -- uid: 22811 - type: Grille - components: - - pos: 8.5,57.5 - parent: 82 - type: Transform -- uid: 22812 - type: Catwalk - components: - - pos: -38.5,37.5 - parent: 82 - type: Transform -- uid: 22813 - type: Catwalk - components: - - pos: -34.5,37.5 - parent: 82 - type: Transform -- uid: 22814 - type: Catwalk - components: - - pos: -35.5,37.5 - parent: 82 - type: Transform -- uid: 22815 - type: Catwalk - components: - - pos: -36.5,37.5 - parent: 82 - type: Transform -- uid: 22816 - type: Catwalk - components: - - pos: -37.5,37.5 - parent: 82 - type: Transform -- uid: 22817 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,47.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22818 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,41.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22819 - type: PoweredSmallLight - components: - - pos: -33.5,37.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22820 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -30.5,33.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22821 - type: PoweredSmallLight - components: - - pos: -38.5,37.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22822 - type: CableApcExtension - components: - - pos: -31.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22823 - type: CableApcExtension - components: - - pos: -32.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22824 - type: CableApcExtension - components: - - pos: -33.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22825 - type: CableApcExtension - components: - - pos: -34.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22826 - type: CableApcExtension - components: - - pos: -35.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22827 - type: Catwalk - components: - - pos: -33.5,37.5 - parent: 82 - type: Transform -- uid: 22828 - type: Poweredlight - components: - - pos: -7.5,-21.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22829 - type: Poweredlight - components: - - pos: 18.5,-2.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22830 - type: Poweredlight - components: - - pos: -1.5,53.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22831 - type: Poweredlight - components: - - pos: 2.5,53.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22832 - type: CableHV - components: - - pos: -1.5,55.5 - parent: 82 - type: Transform -- uid: 22833 - type: CableHV - components: - - pos: -0.5,55.5 - parent: 82 - type: Transform -- uid: 22834 - type: CableHV - components: - - pos: 0.5,55.5 - parent: 82 - type: Transform -- uid: 22835 - type: CableHV - components: - - pos: 0.5,54.5 - parent: 82 - type: Transform -- uid: 22836 - type: CableHV - components: - - pos: 0.5,53.5 - parent: 82 - type: Transform -- uid: 22837 - type: CableHV - components: - - pos: 0.5,52.5 - parent: 82 - type: Transform -- uid: 22838 - type: CableHV - components: - - pos: 19.5,5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22839 - type: CableHV - components: - - pos: 20.5,31.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22840 - type: CableHV - components: - - pos: 20.5,32.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22841 - type: CableHV - components: - - pos: 20.5,33.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22842 - type: CableHV - components: - - pos: 20.5,34.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22843 - type: CableHV - components: - - pos: 20.5,35.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22844 - type: CableHV - components: - - pos: 20.5,36.5 - parent: 82 - type: Transform -- uid: 22845 - type: CableHV - components: - - pos: 20.5,37.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22846 - type: CableHV - components: - - pos: 20.5,38.5 - parent: 82 - type: Transform -- uid: 22847 - type: CableHV - components: - - pos: 20.5,39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22848 - type: CableHV - components: - - pos: 20.5,40.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22849 - type: CableHV - components: - - pos: 20.5,41.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22850 - type: CableHV - components: - - pos: 20.5,42.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22851 - type: CableHV - components: - - pos: 20.5,43.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22852 - type: CableHV - components: - - pos: 20.5,44.5 - parent: 82 - type: Transform -- uid: 22853 - type: CableHV - components: - - pos: 20.5,30.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22854 - type: CableHV - components: - - pos: 20.5,29.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22855 - type: CableHV - components: - - pos: 20.5,28.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22856 - type: CableHV - components: - - pos: 20.5,27.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22857 - type: CableHV - components: - - pos: 20.5,26.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22858 - type: CableHV - components: - - pos: 20.5,25.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22859 - type: CableHV - components: - - pos: 20.5,24.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22860 - type: CableHV - components: - - pos: 20.5,23.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22861 - type: CableHV - components: - - pos: 20.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22862 - type: CableHV - components: - - pos: 21.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22863 - type: CableHV - components: - - pos: 22.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22864 - type: CableHV - components: - - pos: 25.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22865 - type: CableHV - components: - - pos: 24.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22866 - type: CableHV - components: - - pos: 23.5,22.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22867 - type: CableHV - components: - - pos: 23.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22868 - type: CableHV - components: - - pos: 23.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22869 - type: CableHV - components: - - pos: 24.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22870 - type: CableHV - components: - - pos: 25.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22871 - type: CableHV - components: - - pos: 26.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22872 - type: CableHV - components: - - pos: 27.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22873 - type: CableHV - components: - - pos: 28.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22874 - type: CableHV - components: - - pos: 29.5,20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22875 - type: CableHV - components: - - pos: 30.5,20.5 - parent: 82 - type: Transform -- uid: 22876 - type: PoweredSmallLight - components: - - pos: 39.5,54.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22877 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: 32.5,48.5 - parent: 82 - type: Transform -- uid: 22878 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,54.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22879 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,47.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22880 - type: Poweredlight - components: - - pos: 1.5,31.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22881 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,42.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22882 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -29.5,14.5 - parent: 82 - type: Transform -- uid: 22883 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,45.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22884 - type: PlushieLizard - components: - - pos: 36.582268,60.613327 - parent: 82 - type: Transform -- uid: 22885 - type: ReinforcedWindow - components: - - pos: 63.5,-22.5 - parent: 82 - type: Transform -- uid: 22886 - type: WindowReinforcedDirectional - components: - - pos: 65.5,-16.5 - parent: 82 - type: Transform -- uid: 22887 - type: CableApcExtension - components: - - pos: 66.5,-20.5 - parent: 82 - type: Transform -- uid: 22888 - type: ReinforcedWindow - components: - - pos: 66.5,-17.5 - parent: 82 - type: Transform -- uid: 22889 - type: ReinforcedWindow - components: - - pos: 68.5,-19.5 - parent: 82 - type: Transform -- uid: 22890 - type: ReinforcedWindow - components: - - pos: 68.5,-22.5 - parent: 82 - type: Transform -- uid: 22891 - type: ReinforcedWindow - components: - - pos: 65.5,-23.5 - parent: 82 - type: Transform -- uid: 22892 - type: CableApcExtension - components: - - pos: 63.5,-20.5 - parent: 82 - type: Transform -- uid: 22893 - type: BoxShotgunPractice - components: - - pos: 62.526543,-22.444946 - parent: 82 - type: Transform -- uid: 22894 - type: Grille - components: - - pos: 68.5,-22.5 - parent: 82 - type: Transform -- uid: 22895 - type: Grille - components: - - pos: 67.5,-23.5 - parent: 82 - type: Transform -- uid: 22896 - type: Grille - components: - - pos: 66.5,-23.5 - parent: 82 - type: Transform -- uid: 22897 - type: Grille - components: - - pos: 65.5,-23.5 - parent: 82 - type: Transform -- uid: 22898 - type: ReinforcedWindow - components: - - pos: 64.5,-17.5 - parent: 82 - type: Transform -- uid: 22899 - type: Grille - components: - - pos: 67.5,-17.5 - parent: 82 - type: Transform -- uid: 22900 - type: Grille - components: - - pos: 66.5,-17.5 - parent: 82 - type: Transform -- uid: 22901 - type: Grille - components: - - pos: 65.5,-17.5 - parent: 82 - type: Transform -- uid: 22902 - type: Grille - components: - - pos: 64.5,-17.5 - parent: 82 - type: Transform -- uid: 22903 - type: Grille - components: - - pos: 68.5,-21.5 - parent: 82 - type: Transform -- uid: 22904 - type: Grille - components: - - pos: 68.5,-20.5 - parent: 82 - type: Transform -- uid: 22905 - type: Grille - components: - - pos: 68.5,-19.5 - parent: 82 - type: Transform -- uid: 22906 - type: Grille - components: - - pos: 68.5,-18.5 - parent: 82 - type: Transform -- uid: 22907 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-18.5 - parent: 82 - type: Transform -- uid: 22908 - type: BoxShotgunPractice - components: - - pos: 62.39121,-22.213467 - parent: 82 - type: Transform -- uid: 22909 - type: TargetClown - components: - - pos: 67.5,-20.5 - parent: 82 - type: Transform -- uid: 22910 - type: MagazineBoxMagnumRubber - components: - - pos: 49.75043,-14.0822 - parent: 82 - type: Transform -- uid: 22911 - type: CableApcExtension - components: - - pos: 65.5,-19.5 - parent: 82 - type: Transform -- uid: 22912 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-19.5 - parent: 82 - type: Transform -- uid: 22913 - type: ReinforcedWindow - components: - - pos: 63.5,-18.5 - parent: 82 - type: Transform -- uid: 22914 - type: ReinforcedWindow - components: - - pos: 63.5,-19.5 - parent: 82 - type: Transform -- uid: 22915 - type: Grille - components: - - pos: 63.5,-18.5 - parent: 82 - type: Transform -- uid: 22916 - type: Grille - components: - - pos: 63.5,-21.5 - parent: 82 - type: Transform -- uid: 22917 - type: CableApcExtension - components: - - pos: 64.5,-20.5 - parent: 82 - type: Transform -- uid: 22918 - type: MagazineMagnumSubMachineGunPractice - components: - - pos: 60.632725,-20.369614 - parent: 82 - type: Transform -- uid: 22919 - type: WindowReinforcedDirectional - components: - - pos: 66.5,-16.5 - parent: 82 - type: Transform -- uid: 22920 - type: ReinforcedWindow - components: - - pos: 67.5,-17.5 - parent: 82 - type: Transform -- uid: 22921 - type: ReinforcedWindow - components: - - pos: 67.5,-23.5 - parent: 82 - type: Transform -- uid: 22922 - type: CableApcExtension - components: - - pos: 67.5,-20.5 - parent: 82 - type: Transform -- uid: 22923 - type: ReinforcedWindow - components: - - pos: 68.5,-20.5 - parent: 82 - type: Transform -- uid: 22924 - type: ReinforcedWindow - components: - - pos: 64.5,-23.5 - parent: 82 - type: Transform -- uid: 22925 - type: Rack - components: - - pos: 52.5,-18.5 - parent: 82 - type: Transform -- uid: 22926 - type: WallReinforced - components: - - pos: 53.5,-14.5 - parent: 82 - type: Transform -- uid: 22927 - type: WallReinforced - components: - - pos: 53.5,-15.5 - parent: 82 - type: Transform -- uid: 22928 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 54.5,-16.5 - parent: 82 - type: Transform -- uid: 22929 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: 7.5,-17.5 - parent: 82 - type: Transform -- uid: 22930 - type: FloorDrain - components: - - rot: 3.141592653589793 rad - pos: 7.5,-18.5 - parent: 82 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 22931 - type: Rack - components: - - pos: 52.5,-19.5 - parent: 82 - type: Transform -- uid: 22932 - type: RandomSoap - components: - - rot: 3.141592653589793 rad - pos: 7.5,-18.5 - parent: 82 - type: Transform -- uid: 22933 - type: Rack - components: - - pos: 48.5,-19.5 - parent: 82 - type: Transform -- uid: 22934 - type: ClothingOuterHardsuitSecurity - components: - - pos: 52.675705,-15.449616 - parent: 82 - type: Transform -- uid: 22935 - type: ClothingOuterHardsuitSecurity - components: - - pos: 52.286816,-15.310727 - parent: 82 - type: Transform -- uid: 22936 - type: Rack - components: - - pos: 48.5,-18.5 - parent: 82 - type: Transform -- uid: 22937 - type: ClothingOuterHardsuitSecurity - components: - - pos: 52.731262,-16.546839 - parent: 82 - type: Transform -- uid: 22938 - type: WallReinforced - components: - - pos: 50.5,-14.5 - parent: 82 - type: Transform -- uid: 22939 - type: WallReinforced - components: - - pos: 52.5,-14.5 - parent: 82 - type: Transform -- uid: 22940 - type: HydroponicsToolClippers - components: - - pos: -56.975826,-41.38932 - parent: 82 - type: Transform -- uid: 22941 - type: HydroponicsToolScythe - components: - - pos: -57.78138,-41.361546 - parent: 82 - type: Transform -- uid: 22942 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-13.5 - parent: 82 - type: Transform -- uid: 22943 - type: Rack - components: - - pos: 48.5,-11.5 - parent: 82 - type: Transform -- uid: 22944 - type: ReinforcedWindow - components: - - pos: 47.5,-12.5 - parent: 82 - type: Transform -- uid: 22945 - type: WallReinforced - components: - - pos: 51.5,-14.5 - parent: 82 - type: Transform -- uid: 22946 - type: ReinforcedPlasmaWindow - components: - - pos: 48.5,-17.5 - parent: 82 - type: Transform -- uid: 22947 - type: ReinforcedPlasmaWindow - components: - - pos: 49.5,-17.5 - parent: 82 - type: Transform -- uid: 22948 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 47.5,-15.5 - parent: 82 - type: Transform -- uid: 22949 - type: WallReinforced - components: - - pos: 47.5,-16.5 - parent: 82 - type: Transform -- uid: 22950 - type: Grille - components: - - pos: 51.5,-17.5 - parent: 82 - type: Transform -- uid: 22951 - type: CableHV - components: - - pos: -4.5,-13.5 - parent: 82 - type: Transform -- uid: 22952 - type: CableHV - components: - - pos: -3.5,-13.5 - parent: 82 - type: Transform -- uid: 22953 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 30.5,24.5 - parent: 82 - type: Transform -- uid: 22954 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 30.5,26.5 - parent: 82 - type: Transform -- uid: 22955 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 30.5,27.5 - parent: 82 - type: Transform -- uid: 22956 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,23.5 - parent: 82 - type: Transform -- uid: 22957 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,24.5 - parent: 82 - type: Transform -- uid: 22958 - type: BoxShotgunIncendiary - components: - - pos: 48.356495,-19.16 - parent: 82 - type: Transform -- uid: 22959 - type: BoxLethalshot - components: - - pos: 48.52316,-19.326668 - parent: 82 - type: Transform -- uid: 22960 - type: WeaponShotgunKammerer - components: - - pos: 48.592068,-18.576668 - parent: 82 - type: Transform -- uid: 22961 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-15.5 - parent: 82 - type: Transform -- uid: 22962 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-16.5 - parent: 82 - type: Transform -- uid: 22963 - type: CableApcExtension - components: - - pos: 50.5,-18.5 - parent: 82 - type: Transform -- uid: 22964 - type: CableApcExtension - components: - - pos: 50.5,-17.5 - parent: 82 - type: Transform -- uid: 22965 - type: CableApcExtension - components: - - pos: 50.5,-16.5 - parent: 82 - type: Transform -- uid: 22966 - type: CableApcExtension - components: - - pos: 49.5,-16.5 - parent: 82 - type: Transform -- uid: 22967 - type: CableApcExtension - components: - - pos: 48.5,-16.5 - parent: 82 - type: Transform -- uid: 22968 - type: CableApcExtension - components: - - pos: 48.5,-15.5 - parent: 82 - type: Transform -- uid: 22969 - type: CableApcExtension - components: - - pos: 48.5,-14.5 - parent: 82 - type: Transform -- uid: 22970 - type: CableHV - components: - - pos: -2.5,-13.5 - parent: 82 - type: Transform -- uid: 22971 - type: Poweredlight - components: - - pos: 51.5,-15.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22972 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-13.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22973 - type: SignArmory - components: - - pos: 47.5,-11.5 - parent: 82 - type: Transform -- uid: 22974 - type: AirlockSecurityGlassLocked - components: - - pos: 47.5,-14.5 - parent: 82 - type: Transform -- uid: 22975 - type: AirlockSecurityGlassLocked - components: - - pos: 47.5,-13.5 - parent: 82 - type: Transform -- uid: 22976 - type: HighSecArmoryLocked - components: - - pos: 50.5,-17.5 - parent: 82 - type: Transform -- uid: 22977 - type: CableHV - components: - - pos: -1.5,-13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22978 - type: WallReinforced - components: - - pos: 53.5,-18.5 - parent: 82 - type: Transform -- uid: 22979 - type: PortableFlasher - components: - - pos: 48.5,-16.5 - parent: 82 - type: Transform -- uid: 22980 - type: ClothingMaskBreath - components: - - pos: 54.30756,-15.268728 - parent: 82 - type: Transform -- uid: 22981 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-9.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22982 - type: PhoneInstrument - components: - - pos: 61.41107,-8.485859 - parent: 82 - type: Transform -- uid: 22983 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-8.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22984 - type: WallmountTelevision - components: - - rot: 1.5707963267948966 rad - pos: 26.5,0.5 - parent: 82 - type: Transform -- uid: 22985 - type: WallmountTelevision - components: - - rot: -1.5707963267948966 rad - pos: 34.5,9.5 - parent: 82 - type: Transform -- uid: 22986 - type: WallmountTelevision - components: - - rot: 1.5707963267948966 rad - pos: 30.5,36.5 - parent: 82 - type: Transform -- uid: 22987 - type: ComputerTelevision - components: - - pos: 36.5,57.5 - parent: 82 - type: Transform -- uid: 22988 - type: ComputerTelevision - components: - - pos: 28.5,47.5 - parent: 82 - type: Transform -- uid: 22989 - type: WallmountTelevision - components: - - rot: 3.141592653589793 rad - pos: 16.5,46.5 - parent: 82 - type: Transform -- uid: 22990 - type: WallmountTelevision - components: - - pos: 3.5,32.5 - parent: 82 - type: Transform -- uid: 22991 - type: BarSignMaidCafe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,24.5 - parent: 82 - type: Transform -- uid: 22992 - type: WallmountTelevision - components: - - rot: -1.5707963267948966 rad - pos: -11.5,26.5 - parent: 82 - type: Transform -- uid: 22993 - type: WallmountTelevision - components: - - pos: -27.5,6.5 - parent: 82 - type: Transform -- uid: 22994 - type: WallSolid - components: - - pos: -31.5,-5.5 - parent: 82 - type: Transform -- uid: 22995 - type: WallmountTelevision - components: - - rot: 3.141592653589793 rad - pos: -15.5,-5.5 - parent: 82 - type: Transform -- uid: 22996 - type: WallmountTelevision - components: - - pos: 57.5,5.5 - parent: 82 - type: Transform -- uid: 22997 - type: WallmountTelevision - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-7.5 - parent: 82 - type: Transform -- uid: 22998 - type: CableApcExtension - components: - - pos: 29.5,73.5 - parent: 82 - type: Transform -- uid: 22999 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: 39.5,16.5 - parent: 82 - type: Transform -- uid: 23000 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 21.5,67.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Hallway - type: SurveillanceCamera -- uid: 23001 - type: SurveillanceCameraScience - components: - - rot: -1.5707963267948966 rad - pos: 11.5,62.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Server Room - type: SurveillanceCamera -- uid: 23002 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 25.5,61.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: R&D - type: SurveillanceCamera -- uid: 23003 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 15.5,58.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics Bay - type: SurveillanceCamera -- uid: 23004 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -62.5,41.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: EVAC - type: SurveillanceCamera -- uid: 23005 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -39.5,31.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: EVA Storage - type: SurveillanceCamera -- uid: 23006 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -27.5,5.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Tool Storage 1 - type: SurveillanceCamera -- uid: 23007 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 79.5,10.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Docking Bay - type: SurveillanceCamera -- uid: 23008 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 79.5,4.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals - type: SurveillanceCamera -- uid: 23009 - type: SurveillanceCameraGeneral - components: - - pos: 26.5,-9.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Tool Storage 2 - type: SurveillanceCamera -- uid: 23010 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-19.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Courtroom - type: SurveillanceCamera -- uid: 23011 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -3.5,-59.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Side Docking - type: SurveillanceCamera -- uid: 23012 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-46.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Cryo/Arcade - type: SurveillanceCamera -- uid: 23013 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 27.5,-30.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Laundry - type: SurveillanceCamera -- uid: 23014 - type: SurveillanceCameraGeneral - components: - - pos: 8.5,-35.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms - type: SurveillanceCamera -- uid: 23015 - type: SignalButton - components: - - rot: -1.5707963267948966 rad - pos: -17.5,48.5 - parent: 82 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6782 - - port: Toggle - uid: 6285 - - port: Toggle - uid: 6780 - - port: Toggle - uid: 6284 - type: SignalTransmitter -- uid: 23016 - type: CableApcExtension - components: - - pos: -6.5,-52.5 - parent: 82 - type: Transform -- uid: 23017 - type: CableApcExtension - components: - - pos: -6.5,-53.5 - parent: 82 - type: Transform -- uid: 23018 - type: CableApcExtension - components: - - pos: -6.5,-54.5 - parent: 82 - type: Transform -- uid: 23019 - type: CableApcExtension - components: - - pos: -6.5,-55.5 - parent: 82 - type: Transform -- uid: 23020 - type: CableApcExtension - components: - - pos: -6.5,-56.5 - parent: 82 - type: Transform -- uid: 23021 - type: CableApcExtension - components: - - pos: -6.5,-58.5 - parent: 82 - type: Transform -- uid: 23022 - type: CableApcExtension - components: - - pos: -6.5,-59.5 - parent: 82 - type: Transform -- uid: 23023 - type: CableApcExtension - components: - - pos: -6.5,-61.5 - parent: 82 - type: Transform -- uid: 23024 - type: CableApcExtension - components: - - pos: -5.5,-61.5 - parent: 82 - type: Transform -- uid: 23025 - type: CableApcExtension - components: - - pos: -4.5,-62.5 - parent: 82 - type: Transform -- uid: 23026 - type: CableApcExtension - components: - - pos: -4.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23027 - type: Grille - components: - - pos: 30.5,80.5 - parent: 82 - type: Transform -- uid: 23028 - type: Grille - components: - - pos: 27.5,80.5 - parent: 82 - type: Transform -- uid: 23029 - type: DiseaseSwab - components: - - pos: 26.965504,76.49816 - parent: 82 - type: Transform -- uid: 23030 - type: DiseaseSwab - components: - - pos: 26.866114,76.71103 - parent: 82 - type: Transform -- uid: 23031 - type: FireExtinguisher - components: - - pos: 26.422174,76.5975 - parent: 82 - type: Transform - - nextAttack: 839.8802189 - type: MeleeWeapon -- uid: 23032 - type: Syringe - components: - - pos: 25.5393,76.62676 - parent: 82 - type: Transform -- uid: 23033 - type: CableApcExtension - components: - - pos: 24.5,79.5 - parent: 82 - type: Transform -- uid: 23034 - type: CableApcExtension - components: - - pos: 26.5,79.5 - parent: 82 - type: Transform -- uid: 23035 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: 39.5,15.5 - parent: 82 - type: Transform -- uid: 23038 - type: CableApcExtension - components: - - pos: -6.5,-57.5 - parent: 82 - type: Transform -- uid: 23039 - type: CableApcExtension - components: - - pos: -6.5,-60.5 - parent: 82 - type: Transform -- uid: 23040 - type: CableApcExtension - components: - - pos: -6.5,-62.5 - parent: 82 - type: Transform -- uid: 23041 - type: CableApcExtension - components: - - pos: -6.5,-63.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23042 - type: CableApcExtension - components: - - pos: -6.5,-64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23043 - type: CableApcExtension - components: - - pos: -4.5,-61.5 - parent: 82 - type: Transform -- uid: 23044 - type: CableApcExtension - components: - - pos: -4.5,-64.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23045 - type: CableHV - components: - - pos: -1.5,-14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23046 - type: AirAlarm - components: - - pos: 16.5,52.5 - parent: 82 - type: Transform - - devices: - - 23047 - - 12903 - - 12902 - - invalid - - 12879 - - 12754 - - 24548 - - 10490 - - 22483 - - 22484 - - 22485 - - 6918 - - 15996 - - 16086 - - 10506 - - 10505 - - 10504 - type: DeviceList -- uid: 23047 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: 1.5,50.5 - parent: 82 - type: Transform -- uid: 23048 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -8.5,42.5 - parent: 82 - type: Transform - - devices: - - 13198 - - 22593 - - 12968 - - 12971 - - 23047 - - 23052 - - 22493 - - 22640 - - 22639 - - 22585 - - 10453 - - 10443 - - 10442 - - 10534 - type: DeviceList -- uid: 23049 - type: AirAlarm - components: - - pos: 5.5,32.5 - parent: 82 - type: Transform - - devices: - - 13178 - - 13177 - - 23052 - - 22780 - - 22494 - - 10541 - - 10532 - - 11591 - - 11592 - - 12407 - - 12406 - - 11593 - - 22398 - - 22496 - - 22607 - type: DeviceList -- uid: 23050 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: -19.5,43.5 - parent: 82 - type: Transform -- uid: 23051 - type: PosterLegitReportCrimes - components: - - pos: 48.5,0.5 - parent: 82 - type: Transform -- uid: 23052 - type: AirSensor - components: - - pos: -8.5,30.5 - parent: 82 - type: Transform -- uid: 23053 - type: AirAlarm - components: - - pos: -22.5,34.5 - parent: 82 - type: Transform - - devices: - - 24228 - - 18843 - - 18842 - - 13134 - - 18838 - - 13142 - - 13141 - - 23052 - - 24579 - - 22399 - - 22400 - - 22401 - - 3694 - - 4124 - - 5519 - - 22608 - - 22609 - - 12567 - - 12568 - - 12569 - - 11582 - - 11977 - - 11984 - - 3060 - - 11975 - - invalid - - 22607 - - 22496 - - 22398 - - 6922 - - 6921 - - 10513 - type: DeviceList -- uid: 23054 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,-5.5 - parent: 82 - type: Transform -- uid: 23055 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 82 - type: Transform -- uid: 23056 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,-7.5 - parent: 82 - type: Transform -- uid: 23057 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 82 - type: Transform -- uid: 23058 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 82 - type: Transform -- uid: 23059 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-8.5 - parent: 82 - type: Transform -- uid: 23060 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 26.5,-9.5 - parent: 82 - type: Transform -- uid: 23061 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -5.5,-27.5 - parent: 82 - type: Transform -- uid: 23062 - type: DisposalBend - components: - - pos: -4.5,-27.5 - parent: 82 - type: Transform -- uid: 23063 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-28.5 - parent: 82 - type: Transform -- uid: 23064 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-29.5 - parent: 82 - type: Transform -- uid: 23065 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-30.5 - parent: 82 - type: Transform -- uid: 23066 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-31.5 - parent: 82 - type: Transform -- uid: 23067 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-32.5 - parent: 82 - type: Transform -- uid: 23068 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-33.5 - parent: 82 - type: Transform -- uid: 23069 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-34.5 - parent: 82 - type: Transform -- uid: 23070 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-35.5 - parent: 82 - type: Transform -- uid: 23071 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-36.5 - parent: 82 - type: Transform -- uid: 23072 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-37.5 - parent: 82 - type: Transform -- uid: 23073 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-38.5 - parent: 82 - type: Transform -- uid: 23074 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-39.5 - parent: 82 - type: Transform -- uid: 23075 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-40.5 - parent: 82 - type: Transform -- uid: 23076 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-41.5 - parent: 82 - type: Transform -- uid: 23077 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-62.5 - parent: 82 - type: Transform -- uid: 23078 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -4.5,-62.5 - parent: 82 - type: Transform -- uid: 23079 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-61.5 - parent: 82 - type: Transform -- uid: 23080 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-60.5 - parent: 82 - type: Transform -- uid: 23081 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-59.5 - parent: 82 - type: Transform -- uid: 23082 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-58.5 - parent: 82 - type: Transform -- uid: 23083 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-57.5 - parent: 82 - type: Transform -- uid: 23084 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-56.5 - parent: 82 - type: Transform -- uid: 23085 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-55.5 - parent: 82 - type: Transform -- uid: 23086 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-54.5 - parent: 82 - type: Transform -- uid: 23087 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-53.5 - parent: 82 - type: Transform -- uid: 23088 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-52.5 - parent: 82 - type: Transform -- uid: 23089 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-51.5 - parent: 82 - type: Transform -- uid: 23090 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-50.5 - parent: 82 - type: Transform -- uid: 23091 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-49.5 - parent: 82 - type: Transform -- uid: 23092 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-48.5 - parent: 82 - type: Transform -- uid: 23093 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-47.5 - parent: 82 - type: Transform -- uid: 23094 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-45.5 - parent: 82 - type: Transform -- uid: 23095 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-43.5 - parent: 82 - type: Transform -- uid: 23096 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-42.5 - parent: 82 - type: Transform -- uid: 23097 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-42.5 - parent: 82 - type: Transform -- uid: 23098 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-42.5 - parent: 82 - type: Transform -- uid: 23099 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-42.5 - parent: 82 - type: Transform -- uid: 23100 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-42.5 - parent: 82 - type: Transform -- uid: 23101 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -60.5,44.5 - parent: 82 - type: Transform -- uid: 23102 - type: DisposalBend - components: - - pos: -55.5,44.5 - parent: 82 - type: Transform -- uid: 23103 - type: DisposalPipe - components: - - pos: -55.5,43.5 - parent: 82 - type: Transform -- uid: 23104 - type: DisposalPipe - components: - - pos: -55.5,41.5 - parent: 82 - type: Transform -- uid: 23105 - type: DisposalPipe - components: - - pos: -55.5,39.5 - parent: 82 - type: Transform -- uid: 23106 - type: DisposalPipe - components: - - pos: -55.5,37.5 - parent: 82 - type: Transform -- uid: 23107 - type: DisposalPipe - components: - - pos: -55.5,36.5 - parent: 82 - type: Transform -- uid: 23108 - type: DisposalPipe - components: - - pos: -55.5,35.5 - parent: 82 - type: Transform -- uid: 23109 - type: DisposalPipe - components: - - pos: -55.5,34.5 - parent: 82 - type: Transform -- uid: 23110 - type: DisposalPipe - components: - - pos: -55.5,33.5 - parent: 82 - type: Transform -- uid: 23111 - type: DisposalPipe - components: - - pos: -55.5,32.5 - parent: 82 - type: Transform -- uid: 23112 - type: DisposalPipe - components: - - pos: -55.5,31.5 - parent: 82 - type: Transform -- uid: 23113 - type: DisposalPipe - components: - - pos: -55.5,30.5 - parent: 82 - type: Transform -- uid: 23114 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -55.5,29.5 - parent: 82 - type: Transform -- uid: 23115 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -54.5,29.5 - parent: 82 - type: Transform -- uid: 23116 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -53.5,29.5 - parent: 82 - type: Transform -- uid: 23117 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -52.5,29.5 - parent: 82 - type: Transform -- uid: 23118 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -51.5,29.5 - parent: 82 - type: Transform -- uid: 23119 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -50.5,29.5 - parent: 82 - type: Transform -- uid: 23120 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -49.5,29.5 - parent: 82 - type: Transform -- uid: 23121 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -48.5,29.5 - parent: 82 - type: Transform -- uid: 23122 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -46.5,29.5 - parent: 82 - type: Transform -- uid: 23123 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -44.5,29.5 - parent: 82 - type: Transform -- uid: 23124 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -43.5,29.5 - parent: 82 - type: Transform -- uid: 23125 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -42.5,29.5 - parent: 82 - type: Transform -- uid: 23126 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -41.5,29.5 - parent: 82 - type: Transform -- uid: 23127 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -40.5,29.5 - parent: 82 - type: Transform -- uid: 23128 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -39.5,29.5 - parent: 82 - type: Transform -- uid: 23129 - type: DisposalPipe - components: - - pos: -38.5,30.5 - parent: 82 - type: Transform -- uid: 23130 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -38.5,29.5 - parent: 82 - type: Transform -- uid: 23131 - type: DisposalTrunk - components: - - pos: -38.5,31.5 - parent: 82 - type: Transform -- uid: 23132 - type: DisposalUnit - components: - - pos: -38.5,31.5 - parent: 82 - type: Transform -- uid: 23133 - type: Chair - components: - - pos: -39.5,31.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 23134 - type: Chair - components: - - pos: -40.5,31.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 23135 - type: RandomVending - components: - - pos: -41.5,31.5 - parent: 82 - type: Transform -- uid: 23136 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -37.5,29.5 - parent: 82 - type: Transform -- uid: 23137 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -36.5,29.5 - parent: 82 - type: Transform -- uid: 23138 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -35.5,29.5 - parent: 82 - type: Transform -- uid: 23139 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -34.5,29.5 - parent: 82 - type: Transform -- uid: 23140 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -33.5,29.5 - parent: 82 - type: Transform -- uid: 23141 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -32.5,29.5 - parent: 82 - type: Transform -- uid: 23142 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -31.5,29.5 - parent: 82 - type: Transform -- uid: 23143 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,29.5 - parent: 82 - type: Transform -- uid: 23144 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,29.5 - parent: 82 - type: Transform -- uid: 23145 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,29.5 - parent: 82 - type: Transform -- uid: 23146 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,29.5 - parent: 82 - type: Transform -- uid: 23147 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -26.5,29.5 - parent: 82 - type: Transform -- uid: 23148 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,29.5 - parent: 82 - type: Transform -- uid: 23149 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,29.5 - parent: 82 - type: Transform -- uid: 23150 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,29.5 - parent: 82 - type: Transform -- uid: 23151 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,29.5 - parent: 82 - type: Transform -- uid: 23152 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,29.5 - parent: 82 - type: Transform -- uid: 23153 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,31.5 - parent: 82 - type: Transform -- uid: 23154 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,32.5 - parent: 82 - type: Transform -- uid: 23155 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,33.5 - parent: 82 - type: Transform -- uid: 23156 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,34.5 - parent: 82 - type: Transform -- uid: 23157 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,35.5 - parent: 82 - type: Transform -- uid: 23158 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,36.5 - parent: 82 - type: Transform -- uid: 23159 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,37.5 - parent: 82 - type: Transform -- uid: 23160 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,38.5 - parent: 82 - type: Transform -- uid: 23161 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,39.5 - parent: 82 - type: Transform -- uid: 23162 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,40.5 - parent: 82 - type: Transform -- uid: 23163 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,40.5 - parent: 82 - type: Transform -- uid: 23164 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,40.5 - parent: 82 - type: Transform -- uid: 23165 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,40.5 - parent: 82 - type: Transform -- uid: 23166 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,40.5 - parent: 82 - type: Transform -- uid: 23167 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -14.5,40.5 - parent: 82 - type: Transform -- uid: 23168 - type: PowerCellRecharger - components: - - pos: -15.5,41.5 - parent: 82 - type: Transform -- uid: 23169 - type: DisposalJunctionFlipped - components: - - pos: -20.5,40.5 - parent: 82 - type: Transform -- uid: 23170 - type: DisposalPipe - components: - - pos: -20.5,41.5 - parent: 82 - type: Transform -- uid: 23171 - type: DisposalPipe - components: - - pos: -20.5,42.5 - parent: 82 - type: Transform -- uid: 23172 - type: DisposalPipe - components: - - pos: -20.5,43.5 - parent: 82 - type: Transform -- uid: 23173 - type: DisposalPipe - components: - - pos: -20.5,44.5 - parent: 82 - type: Transform -- uid: 23174 - type: DisposalPipe - components: - - pos: -20.5,45.5 - parent: 82 - type: Transform -- uid: 23175 - type: DisposalPipe - components: - - pos: -20.5,46.5 - parent: 82 - type: Transform -- uid: 23176 - type: DisposalPipe - components: - - pos: -20.5,47.5 - parent: 82 - type: Transform -- uid: 23177 - type: DisposalPipe - components: - - pos: -20.5,48.5 - parent: 82 - type: Transform -- uid: 23178 - type: DisposalPipe - components: - - pos: -20.5,49.5 - parent: 82 - type: Transform -- uid: 23179 - type: DisposalPipe - components: - - pos: -20.5,50.5 - parent: 82 - type: Transform -- uid: 23180 - type: DisposalPipe - components: - - pos: -20.5,51.5 - parent: 82 - type: Transform -- uid: 23181 - type: DisposalPipe - components: - - pos: -20.5,52.5 - parent: 82 - type: Transform -- uid: 23182 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,53.5 - parent: 82 - type: Transform -- uid: 23183 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -22.5,52.5 - parent: 82 - type: Transform -- uid: 23184 - type: DisposalBend - components: - - pos: -20.5,53.5 - parent: 82 - type: Transform -- uid: 23185 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -22.5,53.5 - parent: 82 - type: Transform -- uid: 23186 - type: DisposalUnit - components: - - pos: -22.5,52.5 - parent: 82 - type: Transform -- uid: 23187 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-22.5 - parent: 82 - type: Transform -- uid: 23188 - type: DisposalPipe - components: - - pos: -59.5,-33.5 - parent: 82 - type: Transform -- uid: 23189 - type: DisposalPipe - components: - - pos: -59.5,-33.5 - parent: 82 - type: Transform -- uid: 23190 - type: DisposalPipe - components: - - pos: -59.5,-32.5 - parent: 82 - type: Transform -- uid: 23191 - type: DisposalPipe - components: - - pos: -59.5,-31.5 - parent: 82 - type: Transform -- uid: 23192 - type: DisposalPipe - components: - - pos: -59.5,-30.5 - parent: 82 - type: Transform -- uid: 23193 - type: DisposalPipe - components: - - pos: -59.5,-29.5 - parent: 82 - type: Transform -- uid: 23194 - type: DisposalPipe - components: - - pos: -59.5,-28.5 - parent: 82 - type: Transform -- uid: 23195 - type: DisposalPipe - components: - - pos: -59.5,-27.5 - parent: 82 - type: Transform -- uid: 23196 - type: DisposalPipe - components: - - pos: -59.5,-26.5 - parent: 82 - type: Transform -- uid: 23197 - type: DisposalPipe - components: - - pos: -59.5,-25.5 - parent: 82 - type: Transform -- uid: 23198 - type: DisposalPipe - components: - - pos: -59.5,-24.5 - parent: 82 - type: Transform -- uid: 23199 - type: DisposalPipe - components: - - pos: -59.5,-23.5 - parent: 82 - type: Transform -- uid: 23200 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-22.5 - parent: 82 - type: Transform -- uid: 23201 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-22.5 - parent: 82 - type: Transform -- uid: 23202 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-22.5 - parent: 82 - type: Transform -- uid: 23203 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-22.5 - parent: 82 - type: Transform -- uid: 23204 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -54.5,-21.5 - parent: 82 - type: Transform -- uid: 23205 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -54.5,-20.5 - parent: 82 - type: Transform -- uid: 23206 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -54.5,-19.5 - parent: 82 - type: Transform -- uid: 23207 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-18.5 - parent: 82 - type: Transform -- uid: 23208 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-22.5 - parent: 82 - type: Transform -- uid: 23209 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-18.5 - parent: 82 - type: Transform -- uid: 23210 - type: DisposalBend - components: - - pos: -52.5,-18.5 - parent: 82 - type: Transform -- uid: 23211 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -52.5,-19.5 - parent: 82 - type: Transform -- uid: 23212 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-19.5 - parent: 82 - type: Transform -- uid: 23213 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-19.5 - parent: 82 - type: Transform -- uid: 23214 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-19.5 - parent: 82 - type: Transform -- uid: 23215 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-19.5 - parent: 82 - type: Transform -- uid: 23216 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-19.5 - parent: 82 - type: Transform -- uid: 23217 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-19.5 - parent: 82 - type: Transform -- uid: 23218 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-19.5 - parent: 82 - type: Transform -- uid: 23219 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-19.5 - parent: 82 - type: Transform -- uid: 23220 - type: DisposalPipe - components: - - pos: -44.5,-18.5 - parent: 82 - type: Transform -- uid: 23221 - type: DisposalPipe - components: - - pos: -44.5,-17.5 - parent: 82 - type: Transform -- uid: 23222 - type: DisposalPipe - components: - - pos: -44.5,-16.5 - parent: 82 - type: Transform -- uid: 23223 - type: DisposalPipe - components: - - pos: -44.5,-15.5 - parent: 82 - type: Transform -- uid: 23224 - type: DisposalPipe - components: - - pos: -44.5,-14.5 - parent: 82 - type: Transform -- uid: 23225 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-13.5 - parent: 82 - type: Transform -- uid: 23226 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-13.5 - parent: 82 - type: Transform -- uid: 23227 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-13.5 - parent: 82 - type: Transform -- uid: 23228 - type: DisposalPipe - components: - - pos: -42.5,-12.5 - parent: 82 - type: Transform -- uid: 23229 - type: DisposalPipe - components: - - pos: -42.5,-11.5 - parent: 82 - type: Transform -- uid: 23230 - type: DisposalPipe - components: - - pos: -42.5,-10.5 - parent: 82 - type: Transform -- uid: 23231 - type: DisposalPipe - components: - - pos: -42.5,-9.5 - parent: 82 - type: Transform -- uid: 23232 - type: DisposalPipe - components: - - pos: -42.5,-8.5 - parent: 82 - type: Transform -- uid: 23233 - type: DisposalPipe - components: - - pos: -42.5,-7.5 - parent: 82 - type: Transform -- uid: 23234 - type: DisposalPipe - components: - - pos: -42.5,-6.5 - parent: 82 - type: Transform -- uid: 23235 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-13.5 - parent: 82 - type: Transform -- uid: 23236 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-14.5 - parent: 82 - type: Transform -- uid: 23237 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-15.5 - parent: 82 - type: Transform -- uid: 23238 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-16.5 - parent: 82 - type: Transform -- uid: 23239 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-17.5 - parent: 82 - type: Transform -- uid: 23240 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-18.5 - parent: 82 - type: Transform -- uid: 23241 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-19.5 - parent: 82 - type: Transform -- uid: 23242 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-20.5 - parent: 82 - type: Transform -- uid: 23243 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-21.5 - parent: 82 - type: Transform -- uid: 23244 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -31.5,-22.5 - parent: 82 - type: Transform -- uid: 23245 - type: DisposalUnit - components: - - pos: -31.5,-22.5 - parent: 82 - type: Transform -- uid: 23246 - type: DisposalPipe - components: - - pos: -42.5,-3.5 - parent: 82 - type: Transform -- uid: 23247 - type: DisposalJunctionFlipped - components: - - pos: -42.5,-4.5 - parent: 82 - type: Transform -- uid: 23248 - type: DisposalTrunk - components: - - pos: -42.5,-2.5 - parent: 82 - type: Transform -- uid: 23249 - type: DisposalUnit - components: - - pos: -42.5,-2.5 - parent: 82 - type: Transform -- uid: 23250 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-2.5 - parent: 82 - type: Transform -- uid: 23251 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-3.5 - parent: 82 - type: Transform -- uid: 23252 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-4.5 - parent: 82 - type: Transform -- uid: 23253 - type: DisposalTrunk - components: - - pos: -25.5,-1.5 - parent: 82 - type: Transform -- uid: 23254 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-4.5 - parent: 82 - type: Transform -- uid: 23255 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-4.5 - parent: 82 - type: Transform -- uid: 23256 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-4.5 - parent: 82 - type: Transform -- uid: 23257 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-4.5 - parent: 82 - type: Transform -- uid: 23258 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-4.5 - parent: 82 - type: Transform -- uid: 23259 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-4.5 - parent: 82 - type: Transform -- uid: 23260 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-4.5 - parent: 82 - type: Transform -- uid: 23261 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-4.5 - parent: 82 - type: Transform -- uid: 23262 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-4.5 - parent: 82 - type: Transform -- uid: 23263 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-4.5 - parent: 82 - type: Transform -- uid: 23264 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-4.5 - parent: 82 - type: Transform -- uid: 23265 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-4.5 - parent: 82 - type: Transform -- uid: 23266 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-4.5 - parent: 82 - type: Transform -- uid: 23267 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-4.5 - parent: 82 - type: Transform -- uid: 23268 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-4.5 - parent: 82 - type: Transform -- uid: 23269 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-4.5 - parent: 82 - type: Transform -- uid: 23270 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 82 - type: Transform -- uid: 23271 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 82 - type: Transform -- uid: 23272 - type: DisposalTrunk - components: - - pos: 5.5,-1.5 - parent: 82 - type: Transform -- uid: 23273 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,-2.5 - parent: 82 - type: Transform -- uid: 23274 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 82 - type: Transform -- uid: 23275 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 82 - type: Transform -- uid: 23276 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 82 - type: Transform -- uid: 23277 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 82 - type: Transform -- uid: 23278 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 82 - type: Transform -- uid: 23279 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 82 - type: Transform -- uid: 23280 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 82 - type: Transform -- uid: 23281 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 82 - type: Transform -- uid: 23282 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 82 - type: Transform -- uid: 23283 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 82 - type: Transform -- uid: 23284 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 82 - type: Transform -- uid: 23285 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 82 - type: Transform -- uid: 23286 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-4.5 - parent: 82 - type: Transform -- uid: 23287 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-4.5 - parent: 82 - type: Transform -- uid: 23288 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-4.5 - parent: 82 - type: Transform -- uid: 23289 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-4.5 - parent: 82 - type: Transform -- uid: 23290 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-4.5 - parent: 82 - type: Transform -- uid: 23291 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-4.5 - parent: 82 - type: Transform -- uid: 23292 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-4.5 - parent: 82 - type: Transform -- uid: 23293 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-4.5 - parent: 82 - type: Transform -- uid: 23294 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-11.5 - parent: 82 - type: Transform -- uid: 23295 - type: Grille - components: - - pos: -27.5,-5.5 - parent: 82 - type: Transform -- uid: 23296 - type: Grille - components: - - pos: -30.5,-5.5 - parent: 82 - type: Transform -- uid: 23297 - type: FirelockGlass - components: - - pos: -29.5,-5.5 - parent: 82 - type: Transform -- uid: 23298 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-11.5 - parent: 82 - type: Transform -- uid: 23299 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-11.5 - parent: 82 - type: Transform -- uid: 23300 - type: WallReinforced - components: - - pos: -59.5,-13.5 - parent: 82 - type: Transform -- uid: 23301 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-16.5 - parent: 82 - type: Transform -- uid: 23302 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-16.5 - parent: 82 - type: Transform -- uid: 23303 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-16.5 - parent: 82 - type: Transform -- uid: 23304 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,-15.5 - parent: 82 - type: Transform -- uid: 23305 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,-14.5 - parent: 82 - type: Transform -- uid: 23306 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,-13.5 - parent: 82 - type: Transform -- uid: 23307 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: -24.5,-11.5 - parent: 82 - type: Transform -- uid: 23308 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,-10.5 - parent: 82 - type: Transform -- uid: 23309 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,-9.5 - parent: 82 - type: Transform -- uid: 23310 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,-8.5 - parent: 82 - type: Transform -- uid: 23311 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,-7.5 - parent: 82 - type: Transform -- uid: 23312 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,-6.5 - parent: 82 - type: Transform -- uid: 23313 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,-5.5 - parent: 82 - type: Transform -- uid: 23314 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-4.5 - parent: 82 - type: Transform -- uid: 23315 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-4.5 - parent: 82 - type: Transform -- uid: 23316 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-4.5 - parent: 82 - type: Transform -- uid: 23317 - type: DisposalPipe - components: - - pos: -21.5,-3.5 - parent: 82 - type: Transform -- uid: 23318 - type: DisposalPipe - components: - - pos: -21.5,-2.5 - parent: 82 - type: Transform -- uid: 23319 - type: DisposalPipe - components: - - pos: -21.5,-1.5 - parent: 82 - type: Transform -- uid: 23320 - type: DisposalPipe - components: - - pos: -21.5,-0.5 - parent: 82 - type: Transform -- uid: 23321 - type: DisposalPipe - components: - - pos: -21.5,0.5 - parent: 82 - type: Transform -- uid: 23322 - type: DisposalUnit - components: - - pos: -30.5,1.5 - parent: 82 - type: Transform -- uid: 23323 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -30.5,1.5 - parent: 82 - type: Transform -- uid: 23324 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,1.5 - parent: 82 - type: Transform -- uid: 23325 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,1.5 - parent: 82 - type: Transform -- uid: 23326 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,1.5 - parent: 82 - type: Transform -- uid: 23327 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,1.5 - parent: 82 - type: Transform -- uid: 23328 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,1.5 - parent: 82 - type: Transform -- uid: 23329 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,1.5 - parent: 82 - type: Transform -- uid: 23330 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,1.5 - parent: 82 - type: Transform -- uid: 23331 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,1.5 - parent: 82 - type: Transform -- uid: 23332 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-4.5 - parent: 82 - type: Transform -- uid: 23333 - type: DisposalJunction - components: - - pos: -21.5,1.5 - parent: 82 - type: Transform -- uid: 23334 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,2.5 - parent: 82 - type: Transform -- uid: 23335 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,3.5 - parent: 82 - type: Transform -- uid: 23336 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,4.5 - parent: 82 - type: Transform -- uid: 23337 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,5.5 - parent: 82 - type: Transform -- uid: 23338 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,6.5 - parent: 82 - type: Transform -- uid: 23339 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,7.5 - parent: 82 - type: Transform -- uid: 23340 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,8.5 - parent: 82 - type: Transform -- uid: 23341 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,9.5 - parent: 82 - type: Transform -- uid: 23342 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,10.5 - parent: 82 - type: Transform -- uid: 23343 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,11.5 - parent: 82 - type: Transform -- uid: 23344 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,12.5 - parent: 82 - type: Transform -- uid: 23345 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,13.5 - parent: 82 - type: Transform -- uid: 23346 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,14.5 - parent: 82 - type: Transform -- uid: 23347 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,15.5 - parent: 82 - type: Transform -- uid: 23348 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,16.5 - parent: 82 - type: Transform -- uid: 23349 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,17.5 - parent: 82 - type: Transform -- uid: 23350 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,18.5 - parent: 82 - type: Transform -- uid: 23351 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,19.5 - parent: 82 - type: Transform -- uid: 23352 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,20.5 - parent: 82 - type: Transform -- uid: 23353 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -19.5,21.5 - parent: 82 - type: Transform -- uid: 23354 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,21.5 - parent: 82 - type: Transform -- uid: 23355 - type: DisposalJunctionFlipped - components: - - pos: -21.5,21.5 - parent: 82 - type: Transform -- uid: 23356 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,22.5 - parent: 82 - type: Transform -- uid: 23357 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,23.5 - parent: 82 - type: Transform -- uid: 23358 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,24.5 - parent: 82 - type: Transform -- uid: 23359 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,25.5 - parent: 82 - type: Transform -- uid: 23360 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,26.5 - parent: 82 - type: Transform -- uid: 23361 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,27.5 - parent: 82 - type: Transform -- uid: 23362 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,28.5 - parent: 82 - type: Transform -- uid: 23363 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,30.5 - parent: 82 - type: Transform -- uid: 23364 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,29.5 - parent: 82 - type: Transform -- uid: 23365 - type: DisposalYJunction - components: - - pos: -21.5,29.5 - parent: 82 - type: Transform -- uid: 23366 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -17.5,24.5 - parent: 82 - type: Transform -- uid: 23367 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -19.5,24.5 - parent: 82 - type: Transform -- uid: 23368 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,28.5 - parent: 82 - type: Transform -- uid: 23369 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,27.5 - parent: 82 - type: Transform -- uid: 23370 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,26.5 - parent: 82 - type: Transform -- uid: 23371 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,25.5 - parent: 82 - type: Transform -- uid: 23372 - type: DisposalUnit - components: - - pos: -19.5,24.5 - parent: 82 - type: Transform -- uid: 23373 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,29.5 - parent: 82 - type: Transform -- uid: 23374 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -17.5,29.5 - parent: 82 - type: Transform -- uid: 23375 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,29.5 - parent: 82 - type: Transform -- uid: 23376 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,29.5 - parent: 82 - type: Transform -- uid: 23377 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,29.5 - parent: 82 - type: Transform -- uid: 23378 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,29.5 - parent: 82 - type: Transform -- uid: 23379 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,29.5 - parent: 82 - type: Transform -- uid: 23380 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,29.5 - parent: 82 - type: Transform -- uid: 23381 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,29.5 - parent: 82 - type: Transform -- uid: 23382 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,29.5 - parent: 82 - type: Transform -- uid: 23383 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,29.5 - parent: 82 - type: Transform -- uid: 23384 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,29.5 - parent: 82 - type: Transform -- uid: 23385 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,29.5 - parent: 82 - type: Transform -- uid: 23386 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,29.5 - parent: 82 - type: Transform -- uid: 23387 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,29.5 - parent: 82 - type: Transform -- uid: 23388 - type: DisposalPipe - components: - - pos: -3.5,31.5 - parent: 82 - type: Transform -- uid: 23389 - type: DisposalPipe - components: - - pos: -3.5,32.5 - parent: 82 - type: Transform -- uid: 23390 - type: DisposalPipe - components: - - pos: -3.5,33.5 - parent: 82 - type: Transform -- uid: 23391 - type: DisposalPipe - components: - - pos: -3.5,34.5 - parent: 82 - type: Transform -- uid: 23392 - type: DisposalJunctionFlipped - components: - - pos: -3.5,30.5 - parent: 82 - type: Transform -- uid: 23393 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -2.5,30.5 - parent: 82 - type: Transform -- uid: 23394 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,30.5 - parent: 82 - type: Transform -- uid: 23395 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,30.5 - parent: 82 - type: Transform -- uid: 23396 - type: DisposalBend - components: - - pos: 0.5,30.5 - parent: 82 - type: Transform -- uid: 23397 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 0.5,29.5 - parent: 82 - type: Transform -- uid: 23398 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -3.5,29.5 - parent: 82 - type: Transform -- uid: 23399 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -3.5,35.5 - parent: 82 - type: Transform -- uid: 23400 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,35.5 - parent: 82 - type: Transform -- uid: 23401 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -1.5,35.5 - parent: 82 - type: Transform -- uid: 23402 - type: DisposalPipe - components: - - pos: -1.5,36.5 - parent: 82 - type: Transform -- uid: 23403 - type: DisposalPipe - components: - - pos: -1.5,37.5 - parent: 82 - type: Transform -- uid: 23404 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -1.5,38.5 - parent: 82 - type: Transform -- uid: 23405 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,38.5 - parent: 82 - type: Transform -- uid: 23406 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,38.5 - parent: 82 - type: Transform -- uid: 23407 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,38.5 - parent: 82 - type: Transform -- uid: 23408 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,38.5 - parent: 82 - type: Transform -- uid: 23409 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 3.5,38.5 - parent: 82 - type: Transform -- uid: 23410 - type: DisposalUnit - components: - - pos: 3.5,38.5 - parent: 82 - type: Transform -- uid: 23411 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,54.5 - parent: 82 - type: Transform -- uid: 23412 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,54.5 - parent: 82 - type: Transform -- uid: 23413 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,54.5 - parent: 82 - type: Transform -- uid: 23414 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,54.5 - parent: 82 - type: Transform -- uid: 23415 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,54.5 - parent: 82 - type: Transform -- uid: 23416 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,54.5 - parent: 82 - type: Transform -- uid: 23417 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,54.5 - parent: 82 - type: Transform -- uid: 23418 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,54.5 - parent: 82 - type: Transform -- uid: 23419 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 19.5,54.5 - parent: 82 - type: Transform -- uid: 23420 - type: DisposalPipe - components: - - pos: 19.5,55.5 - parent: 82 - type: Transform -- uid: 23421 - type: DisposalPipe - components: - - pos: 19.5,56.5 - parent: 82 - type: Transform -- uid: 23422 - type: DisposalPipe - components: - - pos: 19.5,57.5 - parent: 82 - type: Transform -- uid: 23423 - type: DisposalPipe - components: - - pos: 19.5,58.5 - parent: 82 - type: Transform -- uid: 23424 - type: DisposalPipe - components: - - pos: 19.5,59.5 - parent: 82 - type: Transform -- uid: 23425 - type: DisposalPipe - components: - - pos: 19.5,60.5 - parent: 82 - type: Transform -- uid: 23426 - type: DisposalPipe - components: - - pos: 19.5,61.5 - parent: 82 - type: Transform -- uid: 23427 - type: DisposalPipe - components: - - pos: 19.5,62.5 - parent: 82 - type: Transform -- uid: 23428 - type: DisposalPipe - components: - - pos: 19.5,63.5 - parent: 82 - type: Transform -- uid: 23429 - type: DisposalPipe - components: - - pos: 19.5,64.5 - parent: 82 - type: Transform -- uid: 23430 - type: DisposalPipe - components: - - pos: 19.5,65.5 - parent: 82 - type: Transform -- uid: 23431 - type: DisposalPipe - components: - - pos: 19.5,66.5 - parent: 82 - type: Transform -- uid: 23432 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,67.5 - parent: 82 - type: Transform -- uid: 23433 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,67.5 - parent: 82 - type: Transform -- uid: 23434 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,67.5 - parent: 82 - type: Transform -- uid: 23435 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 19.5,67.5 - parent: 82 - type: Transform -- uid: 23436 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 23.5,67.5 - parent: 82 - type: Transform -- uid: 23437 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 23.5,68.5 - parent: 82 - type: Transform -- uid: 23438 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 26.5,68.5 - parent: 82 - type: Transform -- uid: 23439 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,69.5 - parent: 82 - type: Transform -- uid: 23440 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,69.5 - parent: 82 - type: Transform -- uid: 23441 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 23.5,69.5 - parent: 82 - type: Transform -- uid: 23442 - type: DisposalBend - components: - - pos: 26.5,69.5 - parent: 82 - type: Transform -- uid: 23443 - type: DisposalUnit - components: - - pos: 26.5,68.5 - parent: 82 - type: Transform -- uid: 23444 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 14.5,48.5 - parent: 82 - type: Transform -- uid: 23445 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 14.5,49.5 - parent: 82 - type: Transform -- uid: 23446 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,49.5 - parent: 82 - type: Transform -- uid: 23447 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,49.5 - parent: 82 - type: Transform -- uid: 23448 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,49.5 - parent: 82 - type: Transform -- uid: 23449 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,49.5 - parent: 82 - type: Transform -- uid: 23450 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,49.5 - parent: 82 - type: Transform -- uid: 23451 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,49.5 - parent: 82 - type: Transform -- uid: 23452 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,49.5 - parent: 82 - type: Transform -- uid: 23453 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 22.5,49.5 - parent: 82 - type: Transform -- uid: 23454 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,49.5 - parent: 82 - type: Transform -- uid: 23455 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,49.5 - parent: 82 - type: Transform -- uid: 23456 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,49.5 - parent: 82 - type: Transform -- uid: 23457 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,49.5 - parent: 82 - type: Transform -- uid: 23458 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,49.5 - parent: 82 - type: Transform -- uid: 23459 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,49.5 - parent: 82 - type: Transform -- uid: 23460 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,49.5 - parent: 82 - type: Transform -- uid: 23461 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,49.5 - parent: 82 - type: Transform -- uid: 23462 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,49.5 - parent: 82 - type: Transform -- uid: 23463 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: 28.5,49.5 - parent: 82 - type: Transform -- uid: 23464 - type: DisposalPipe - components: - - pos: 28.5,50.5 - parent: 82 - type: Transform -- uid: 23465 - type: DisposalPipe - components: - - pos: 28.5,51.5 - parent: 82 - type: Transform -- uid: 23466 - type: DisposalPipe - components: - - pos: 28.5,52.5 - parent: 82 - type: Transform -- uid: 23467 - type: DisposalPipe - components: - - pos: 28.5,53.5 - parent: 82 - type: Transform -- uid: 23468 - type: DisposalJunction - components: - - pos: 28.5,54.5 - parent: 82 - type: Transform -- uid: 23469 - type: DisposalPipe - components: - - pos: 28.5,55.5 - parent: 82 - type: Transform -- uid: 23470 - type: DisposalPipe - components: - - pos: 28.5,56.5 - parent: 82 - type: Transform -- uid: 23471 - type: DisposalPipe - components: - - pos: 28.5,57.5 - parent: 82 - type: Transform -- uid: 23472 - type: DisposalPipe - components: - - pos: 28.5,58.5 - parent: 82 - type: Transform -- uid: 23473 - type: DisposalPipe - components: - - pos: 28.5,59.5 - parent: 82 - type: Transform -- uid: 23474 - type: DisposalPipe - components: - - pos: 28.5,60.5 - parent: 82 - type: Transform -- uid: 23475 - type: DisposalTrunk - components: - - pos: 28.5,61.5 - parent: 82 - type: Transform -- uid: 23476 - type: DisposalUnit - components: - - pos: 28.5,61.5 - parent: 82 - type: Transform -- uid: 23477 - type: CableHV - components: - - pos: -1.5,-15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23478 - type: CableHV - components: - - pos: -1.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23479 - type: CableHV - components: - - pos: -1.5,-17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23480 - type: CableHV - components: - - pos: -1.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23481 - type: CableHV - components: - - pos: -1.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23482 - type: CableHV - components: - - pos: -1.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23483 - type: CableHV - components: - - pos: -0.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23484 - type: CableHV - components: - - pos: 0.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23485 - type: CableHV - components: - - pos: 0.5,-21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23486 - type: CableHV - components: - - pos: 0.5,-22.5 - parent: 82 - type: Transform -- uid: 23487 - type: CableApcExtension - components: - - pos: 0.5,-15.5 - parent: 82 - type: Transform -- uid: 23488 - type: CableApcExtension - components: - - pos: -0.5,-15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23489 - type: CableApcExtension - components: - - pos: -1.5,-15.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23490 - type: CableApcExtension - components: - - pos: -1.5,-14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23491 - type: CableApcExtension - components: - - pos: -1.5,-13.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23492 - type: CableApcExtension - components: - - pos: -1.5,-16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23493 - type: DisposalJunction - components: - - pos: 33.5,49.5 - parent: 82 - type: Transform -- uid: 23494 - type: DisposalPipe - components: - - pos: 33.5,48.5 - parent: 82 - type: Transform -- uid: 23495 - type: DisposalPipe - components: - - pos: 33.5,47.5 - parent: 82 - type: Transform -- uid: 23496 - type: DisposalPipe - components: - - pos: 33.5,46.5 - parent: 82 - type: Transform -- uid: 23497 - type: DisposalPipe - components: - - pos: 33.5,45.5 - parent: 82 - type: Transform -- uid: 23498 - type: DisposalPipe - components: - - pos: 33.5,44.5 - parent: 82 - type: Transform -- uid: 23499 - type: DisposalPipe - components: - - pos: 33.5,43.5 - parent: 82 - type: Transform -- uid: 23500 - type: DisposalPipe - components: - - pos: 33.5,42.5 - parent: 82 - type: Transform -- uid: 23501 - type: DisposalPipe - components: - - pos: 33.5,41.5 - parent: 82 - type: Transform -- uid: 23502 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,40.5 - parent: 82 - type: Transform -- uid: 23503 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,40.5 - parent: 82 - type: Transform -- uid: 23504 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 30.5,40.5 - parent: 82 - type: Transform -- uid: 23505 - type: DisposalJunction - components: - - pos: 33.5,40.5 - parent: 82 - type: Transform -- uid: 23506 - type: DisposalPipe - components: - - pos: 33.5,39.5 - parent: 82 - type: Transform -- uid: 23507 - type: DisposalPipe - components: - - pos: 33.5,38.5 - parent: 82 - type: Transform -- uid: 23508 - type: DisposalPipe - components: - - pos: 33.5,37.5 - parent: 82 - type: Transform -- uid: 23509 - type: DisposalPipe - components: - - pos: 33.5,36.5 - parent: 82 - type: Transform -- uid: 23510 - type: DisposalPipe - components: - - pos: 33.5,35.5 - parent: 82 - type: Transform -- uid: 23511 - type: DisposalPipe - components: - - pos: 33.5,34.5 - parent: 82 - type: Transform -- uid: 23512 - type: DisposalPipe - components: - - pos: 33.5,33.5 - parent: 82 - type: Transform -- uid: 23513 - type: DisposalPipe - components: - - pos: 33.5,32.5 - parent: 82 - type: Transform -- uid: 23514 - type: DisposalPipe - components: - - pos: 33.5,31.5 - parent: 82 - type: Transform -- uid: 23515 - type: DisposalPipe - components: - - pos: 33.5,30.5 - parent: 82 - type: Transform -- uid: 23516 - type: DisposalUnit - components: - - pos: 25.5,25.5 - parent: 82 - type: Transform -- uid: 23517 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 25.5,25.5 - parent: 82 - type: Transform -- uid: 23518 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,25.5 - parent: 82 - type: Transform -- uid: 23519 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,25.5 - parent: 82 - type: Transform -- uid: 23520 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,25.5 - parent: 82 - type: Transform -- uid: 23521 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,25.5 - parent: 82 - type: Transform -- uid: 23522 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,25.5 - parent: 82 - type: Transform -- uid: 23523 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,25.5 - parent: 82 - type: Transform -- uid: 23524 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,25.5 - parent: 82 - type: Transform -- uid: 23525 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 43.5,12.5 - parent: 82 - type: Transform -- uid: 23526 - type: DisposalUnit - components: - - pos: 43.5,12.5 - parent: 82 - type: Transform -- uid: 23527 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 43.5,12.5 - parent: 82 - type: Transform -- uid: 23528 - type: DisposalPipe - components: - - pos: 43.5,13.5 - parent: 82 - type: Transform -- uid: 23529 - type: DisposalPipe - components: - - pos: 43.5,14.5 - parent: 82 - type: Transform -- uid: 23530 - type: DisposalPipe - components: - - pos: 43.5,15.5 - parent: 82 - type: Transform -- uid: 23531 - type: DisposalPipe - components: - - pos: 43.5,16.5 - parent: 82 - type: Transform -- uid: 23532 - type: DisposalPipe - components: - - pos: 43.5,17.5 - parent: 82 - type: Transform -- uid: 23533 - type: DisposalPipe - components: - - pos: 43.5,18.5 - parent: 82 - type: Transform -- uid: 23534 - type: DisposalPipe - components: - - pos: 43.5,19.5 - parent: 82 - type: Transform -- uid: 23535 - type: DisposalPipe - components: - - pos: 43.5,20.5 - parent: 82 - type: Transform -- uid: 23536 - type: DisposalPipe - components: - - pos: 43.5,21.5 - parent: 82 - type: Transform -- uid: 23537 - type: DisposalPipe - components: - - pos: 43.5,22.5 - parent: 82 - type: Transform -- uid: 23538 - type: DisposalPipe - components: - - pos: 43.5,23.5 - parent: 82 - type: Transform -- uid: 23539 - type: DisposalBend - components: - - pos: 43.5,24.5 - parent: 82 - type: Transform -- uid: 23540 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 42.5,24.5 - parent: 82 - type: Transform -- uid: 23541 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 41.5,24.5 - parent: 82 - type: Transform -- uid: 23542 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 40.5,24.5 - parent: 82 - type: Transform -- uid: 23543 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,24.5 - parent: 82 - type: Transform -- uid: 23544 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,24.5 - parent: 82 - type: Transform -- uid: 23545 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,24.5 - parent: 82 - type: Transform -- uid: 23546 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,24.5 - parent: 82 - type: Transform -- uid: 23547 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,24.5 - parent: 82 - type: Transform -- uid: 23548 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,24.5 - parent: 82 - type: Transform -- uid: 23549 - type: DisposalJunction - components: - - pos: 33.5,25.5 - parent: 82 - type: Transform -- uid: 23550 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,26.5 - parent: 82 - type: Transform -- uid: 23551 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,27.5 - parent: 82 - type: Transform -- uid: 23552 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,28.5 - parent: 82 - type: Transform -- uid: 23553 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 34.5,29.5 - parent: 82 - type: Transform -- uid: 23554 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 35.5,29.5 - parent: 82 - type: Transform -- uid: 23555 - type: DisposalTrunk - components: - - pos: 35.5,30.5 - parent: 82 - type: Transform -- uid: 23556 - type: DisposalJunctionFlipped - components: - - pos: 33.5,29.5 - parent: 82 - type: Transform -- uid: 23557 - type: DisposalJunctionFlipped - components: - - pos: 33.5,24.5 - parent: 82 - type: Transform -- uid: 23558 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,23.5 - parent: 82 - type: Transform -- uid: 23559 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,22.5 - parent: 82 - type: Transform -- uid: 23560 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 82 - type: Transform -- uid: 23561 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,20.5 - parent: 82 - type: Transform -- uid: 23562 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 82 - type: Transform -- uid: 23563 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,12.5 - parent: 82 - type: Transform -- uid: 23564 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 22.5,8.5 - parent: 82 - type: Transform -- uid: 23565 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,8.5 - parent: 82 - type: Transform -- uid: 23566 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,8.5 - parent: 82 - type: Transform -- uid: 23567 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,5.5 - parent: 82 - type: Transform -- uid: 23568 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,4.5 - parent: 82 - type: Transform -- uid: 23569 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 45.5,2.5 - parent: 82 - type: Transform -- uid: 23570 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 44.5,-9.5 - parent: 82 - type: Transform -- uid: 23571 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 44.5,-7.5 - parent: 82 - type: Transform -- uid: 23572 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 44.5,-5.5 - parent: 82 - type: Transform -- uid: 23573 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-4.5 - parent: 82 - type: Transform -- uid: 23574 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-4.5 - parent: 82 - type: Transform -- uid: 23575 - type: DisposalPipe - components: - - pos: 41.5,1.5 - parent: 82 - type: Transform -- uid: 23576 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,2.5 - parent: 82 - type: Transform -- uid: 23577 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,2.5 - parent: 82 - type: Transform -- uid: 23578 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 82 - type: Transform -- uid: 23579 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 82 - type: Transform -- uid: 23580 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,2.5 - parent: 82 - type: Transform -- uid: 23581 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,2.5 - parent: 82 - type: Transform -- uid: 23582 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,2.5 - parent: 82 - type: Transform -- uid: 23583 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,2.5 - parent: 82 - type: Transform -- uid: 23584 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 82 - type: Transform -- uid: 23585 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 82 - type: Transform -- uid: 23586 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 33.5,2.5 - parent: 82 - type: Transform -- uid: 23587 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,1.5 - parent: 82 - type: Transform -- uid: 23588 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,0.5 - parent: 82 - type: Transform -- uid: 23589 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,-0.5 - parent: 82 - type: Transform -- uid: 23590 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,-1.5 - parent: 82 - type: Transform -- uid: 23591 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,-2.5 - parent: 82 - type: Transform -- uid: 23592 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 29.5,-3.5 - parent: 82 - type: Transform -- uid: 23593 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-4.5 - parent: 82 - type: Transform -- uid: 23594 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-4.5 - parent: 82 - type: Transform -- uid: 23595 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-4.5 - parent: 82 - type: Transform -- uid: 23596 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-4.5 - parent: 82 - type: Transform -- uid: 23597 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-4.5 - parent: 82 - type: Transform -- uid: 23598 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-4.5 - parent: 82 - type: Transform -- uid: 23599 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 82 - type: Transform -- uid: 23600 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 82 - type: Transform -- uid: 23601 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-4.5 - parent: 82 - type: Transform -- uid: 23602 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-4.5 - parent: 82 - type: Transform -- uid: 23603 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-5.5 - parent: 82 - type: Transform -- uid: 23604 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-5.5 - parent: 82 - type: Transform -- uid: 23605 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 82 - type: Transform -- uid: 23606 - type: DisposalJunction - components: - - pos: 19.5,-5.5 - parent: 82 - type: Transform -- uid: 23607 - type: DisposalPipe - components: - - pos: 19.5,-6.5 - parent: 82 - type: Transform -- uid: 23608 - type: DisposalPipe - components: - - pos: 19.5,-7.5 - parent: 82 - type: Transform -- uid: 23609 - type: DisposalPipe - components: - - pos: 19.5,-8.5 - parent: 82 - type: Transform -- uid: 23610 - type: DisposalPipe - components: - - pos: 19.5,-9.5 - parent: 82 - type: Transform -- uid: 23611 - type: DisposalJunction - components: - - pos: 19.5,-10.5 - parent: 82 - type: Transform -- uid: 23612 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-10.5 - parent: 82 - type: Transform -- uid: 23613 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-10.5 - parent: 82 - type: Transform -- uid: 23614 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-10.5 - parent: 82 - type: Transform -- uid: 23615 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-10.5 - parent: 82 - type: Transform -- uid: 23616 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-10.5 - parent: 82 - type: Transform -- uid: 23617 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 13.5,-10.5 - parent: 82 - type: Transform -- uid: 23618 - type: DisposalTrunk - components: - - pos: 13.5,-9.5 - parent: 82 - type: Transform -- uid: 23619 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-11.5 - parent: 82 - type: Transform -- uid: 23620 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-12.5 - parent: 82 - type: Transform -- uid: 23621 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-13.5 - parent: 82 - type: Transform -- uid: 23622 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-14.5 - parent: 82 - type: Transform -- uid: 23623 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-15.5 - parent: 82 - type: Transform -- uid: 23624 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-16.5 - parent: 82 - type: Transform -- uid: 23625 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-17.5 - parent: 82 - type: Transform -- uid: 23626 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-18.5 - parent: 82 - type: Transform -- uid: 23627 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-19.5 - parent: 82 - type: Transform -- uid: 23628 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-24.5 - parent: 82 - type: Transform -- uid: 23629 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-23.5 - parent: 82 - type: Transform -- uid: 23630 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-22.5 - parent: 82 - type: Transform -- uid: 23631 - type: DisposalYJunction - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-25.5 - parent: 82 - type: Transform -- uid: 23632 - type: DisposalJunctionFlipped - components: - - pos: 19.5,-20.5 - parent: 82 - type: Transform -- uid: 23633 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-20.5 - parent: 82 - type: Transform -- uid: 23634 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-20.5 - parent: 82 - type: Transform -- uid: 23635 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-20.5 - parent: 82 - type: Transform -- uid: 23636 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 82 - type: Transform -- uid: 23637 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-20.5 - parent: 82 - type: Transform -- uid: 23638 - type: DisposalUnit - components: - - pos: 27.5,-16.5 - parent: 82 - type: Transform -- uid: 23639 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-31.5 - parent: 82 - type: Transform -- uid: 23640 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-31.5 - parent: 82 - type: Transform -- uid: 23641 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-31.5 - parent: 82 - type: Transform -- uid: 23642 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-31.5 - parent: 82 - type: Transform -- uid: 23643 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-31.5 - parent: 82 - type: Transform -- uid: 23644 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-31.5 - parent: 82 - type: Transform -- uid: 23645 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-31.5 - parent: 82 - type: Transform -- uid: 23646 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-31.5 - parent: 82 - type: Transform -- uid: 23647 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-31.5 - parent: 82 - type: Transform -- uid: 23648 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-31.5 - parent: 82 - type: Transform -- uid: 23649 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-31.5 - parent: 82 - type: Transform -- uid: 23650 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-31.5 - parent: 82 - type: Transform -- uid: 23651 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-31.5 - parent: 82 - type: Transform -- uid: 23652 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-25.5 - parent: 82 - type: Transform -- uid: 23653 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-21.5 - parent: 82 - type: Transform -- uid: 23654 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-29.5 - parent: 82 - type: Transform -- uid: 23655 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-30.5 - parent: 82 - type: Transform -- uid: 23656 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 19.5,-31.5 - parent: 82 - type: Transform -- uid: 23657 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-32.5 - parent: 82 - type: Transform -- uid: 23658 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-33.5 - parent: 82 - type: Transform -- uid: 23659 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-34.5 - parent: 82 - type: Transform -- uid: 23660 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-35.5 - parent: 82 - type: Transform -- uid: 23661 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-36.5 - parent: 82 - type: Transform -- uid: 23662 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-37.5 - parent: 82 - type: Transform -- uid: 23663 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-38.5 - parent: 82 - type: Transform -- uid: 23664 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-39.5 - parent: 82 - type: Transform -- uid: 23665 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-40.5 - parent: 82 - type: Transform -- uid: 23666 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-41.5 - parent: 82 - type: Transform -- uid: 23667 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-42.5 - parent: 82 - type: Transform -- uid: 23668 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-43.5 - parent: 82 - type: Transform -- uid: 23669 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-44.5 - parent: 82 - type: Transform -- uid: 23670 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-45.5 - parent: 82 - type: Transform -- uid: 23671 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-46.5 - parent: 82 - type: Transform -- uid: 23672 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-47.5 - parent: 82 - type: Transform -- uid: 23673 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-48.5 - parent: 82 - type: Transform -- uid: 23674 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-49.5 - parent: 82 - type: Transform -- uid: 23675 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-50.5 - parent: 82 - type: Transform -- uid: 23676 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-51.5 - parent: 82 - type: Transform -- uid: 23677 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-52.5 - parent: 82 - type: Transform -- uid: 23678 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-53.5 - parent: 82 - type: Transform -- uid: 23679 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-54.5 - parent: 82 - type: Transform -- uid: 23680 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-55.5 - parent: 82 - type: Transform -- uid: 23681 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-56.5 - parent: 82 - type: Transform -- uid: 23682 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-25.5 - parent: 82 - type: Transform -- uid: 23683 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-26.5 - parent: 82 - type: Transform -- uid: 23684 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 82 - type: Transform -- uid: 23685 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-26.5 - parent: 82 - type: Transform -- uid: 23686 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-26.5 - parent: 82 - type: Transform -- uid: 23687 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 82 - type: Transform -- uid: 23688 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 82 - type: Transform -- uid: 23689 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-26.5 - parent: 82 - type: Transform -- uid: 23690 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-26.5 - parent: 82 - type: Transform -- uid: 23691 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-26.5 - parent: 82 - type: Transform -- uid: 23692 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-26.5 - parent: 82 - type: Transform -- uid: 23693 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-26.5 - parent: 82 - type: Transform -- uid: 23694 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-26.5 - parent: 82 - type: Transform -- uid: 23695 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-26.5 - parent: 82 - type: Transform -- uid: 23696 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-26.5 - parent: 82 - type: Transform -- uid: 23697 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-26.5 - parent: 82 - type: Transform -- uid: 23698 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-26.5 - parent: 82 - type: Transform -- uid: 23699 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-26.5 - parent: 82 - type: Transform -- uid: 23700 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-26.5 - parent: 82 - type: Transform -- uid: 23701 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-26.5 - parent: 82 - type: Transform -- uid: 23702 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-26.5 - parent: 82 - type: Transform -- uid: 23703 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-26.5 - parent: 82 - type: Transform -- uid: 23704 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,-27.5 - parent: 82 - type: Transform -- uid: 23705 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,-28.5 - parent: 82 - type: Transform -- uid: 23706 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,-29.5 - parent: 82 - type: Transform -- uid: 23707 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,-30.5 - parent: 82 - type: Transform -- uid: 23708 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -24.5,-32.5 - parent: 82 - type: Transform -- uid: 23709 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-32.5 - parent: 82 - type: Transform -- uid: 23710 - type: DisposalYJunction - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-31.5 - parent: 82 - type: Transform -- uid: 23711 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-31.5 - parent: 82 - type: Transform -- uid: 23712 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-31.5 - parent: 82 - type: Transform -- uid: 23713 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-31.5 - parent: 82 - type: Transform -- uid: 23714 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-31.5 - parent: 82 - type: Transform -- uid: 23715 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-31.5 - parent: 82 - type: Transform -- uid: 23716 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-31.5 - parent: 82 - type: Transform -- uid: 23717 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-39.5 - parent: 82 - type: Transform -- uid: 23718 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-39.5 - parent: 82 - type: Transform -- uid: 23719 - type: DisposalUnit - components: - - pos: -29.5,-39.5 - parent: 82 - type: Transform -- uid: 23720 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -31.5,-39.5 - parent: 82 - type: Transform -- uid: 23721 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-38.5 - parent: 82 - type: Transform -- uid: 23722 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-37.5 - parent: 82 - type: Transform -- uid: 23723 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-36.5 - parent: 82 - type: Transform -- uid: 23724 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-35.5 - parent: 82 - type: Transform -- uid: 23725 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-34.5 - parent: 82 - type: Transform -- uid: 23726 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-33.5 - parent: 82 - type: Transform -- uid: 23727 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-32.5 - parent: 82 - type: Transform -- uid: 23728 - type: CableApcExtension - components: - - pos: -1.5,-17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23729 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-26.5 - parent: 82 - type: Transform -- uid: 23730 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -36.5,-27.5 - parent: 82 - type: Transform -- uid: 23731 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -36.5,-28.5 - parent: 82 - type: Transform -- uid: 23732 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -36.5,-29.5 - parent: 82 - type: Transform -- uid: 23733 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -36.5,-30.5 - parent: 82 - type: Transform -- uid: 23734 - type: CableApcExtension - components: - - pos: -1.5,-18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23735 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-31.5 - parent: 82 - type: Transform -- uid: 23736 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-31.5 - parent: 82 - type: Transform -- uid: 23737 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-31.5 - parent: 82 - type: Transform -- uid: 23738 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-31.5 - parent: 82 - type: Transform -- uid: 23739 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-31.5 - parent: 82 - type: Transform -- uid: 23740 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-31.5 - parent: 82 - type: Transform -- uid: 23741 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-31.5 - parent: 82 - type: Transform -- uid: 23742 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-31.5 - parent: 82 - type: Transform -- uid: 23743 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-31.5 - parent: 82 - type: Transform -- uid: 23744 - type: DisposalBend - components: - - pos: -40.5,-26.5 - parent: 82 - type: Transform -- uid: 23745 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -43.5,-26.5 - parent: 82 - type: Transform -- uid: 23746 - type: DisposalTrunk - components: - - pos: -43.5,-24.5 - parent: 82 - type: Transform -- uid: 23747 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-26.5 - parent: 82 - type: Transform -- uid: 23748 - type: DisposalPipe - components: - - pos: -43.5,-25.5 - parent: 82 - type: Transform -- uid: 23749 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-26.5 - parent: 82 - type: Transform -- uid: 23750 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -40.5,-27.5 - parent: 82 - type: Transform -- uid: 23751 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -40.5,-28.5 - parent: 82 - type: Transform -- uid: 23752 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -40.5,-29.5 - parent: 82 - type: Transform -- uid: 23753 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -40.5,-30.5 - parent: 82 - type: Transform -- uid: 23754 - type: DisposalUnit - components: - - pos: -43.5,-24.5 - parent: 82 - type: Transform -- uid: 23755 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-31.5 - parent: 82 - type: Transform -- uid: 23756 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-31.5 - parent: 82 - type: Transform -- uid: 23757 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-31.5 - parent: 82 - type: Transform -- uid: 23758 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-31.5 - parent: 82 - type: Transform -- uid: 23759 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-31.5 - parent: 82 - type: Transform -- uid: 23760 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-31.5 - parent: 82 - type: Transform -- uid: 23761 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-31.5 - parent: 82 - type: Transform -- uid: 23762 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-31.5 - parent: 82 - type: Transform -- uid: 23763 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-31.5 - parent: 82 - type: Transform -- uid: 23764 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-31.5 - parent: 82 - type: Transform -- uid: 23765 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-31.5 - parent: 82 - type: Transform -- uid: 23766 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-31.5 - parent: 82 - type: Transform -- uid: 23767 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-31.5 - parent: 82 - type: Transform -- uid: 23768 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-31.5 - parent: 82 - type: Transform -- uid: 23769 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-31.5 - parent: 82 - type: Transform -- uid: 23770 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-31.5 - parent: 82 - type: Transform -- uid: 23771 - type: DisposalPipe - components: - - pos: -49.5,-30.5 - parent: 82 - type: Transform -- uid: 23772 - type: DisposalPipe - components: - - pos: -49.5,-29.5 - parent: 82 - type: Transform -- uid: 23773 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-28.5 - parent: 82 - type: Transform -- uid: 23774 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-28.5 - parent: 82 - type: Transform -- uid: 23775 - type: DisposalUnit - components: - - pos: -48.5,-28.5 - parent: 82 - type: Transform -- uid: 23776 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-35.5 - parent: 82 - type: Transform -- uid: 23777 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-34.5 - parent: 82 - type: Transform -- uid: 23778 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-34.5 - parent: 82 - type: Transform -- uid: 23779 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-34.5 - parent: 82 - type: Transform -- uid: 23780 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-34.5 - parent: 82 - type: Transform -- uid: 23781 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-34.5 - parent: 82 - type: Transform -- uid: 23782 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-34.5 - parent: 82 - type: Transform -- uid: 23783 - type: DisposalPipe - components: - - pos: -55.5,-33.5 - parent: 82 - type: Transform -- uid: 23784 - type: DisposalJunctionFlipped - components: - - pos: -55.5,-32.5 - parent: 82 - type: Transform -- uid: 23785 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-32.5 - parent: 82 - type: Transform -- uid: 23786 - type: DisposalUnit - components: - - pos: -54.5,-32.5 - parent: 82 - type: Transform -- uid: 23787 - type: MailingUnit - components: - - pos: -14.5,39.5 - parent: 82 - type: Transform - - tag: Engineering - type: MailingUnit - - config: - tag: Engineering - type: Configuration -- uid: 23788 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -14.5,39.5 - parent: 82 - type: Transform -- uid: 23789 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,39.5 - parent: 82 - type: Transform -- uid: 23790 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,39.5 - parent: 82 - type: Transform -- uid: 23791 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,39.5 - parent: 82 - type: Transform -- uid: 23792 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,39.5 - parent: 82 - type: Transform -- uid: 23793 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -19.5,39.5 - parent: 82 - type: Transform -- uid: 23794 - type: DisposalPipe - components: - - pos: -19.5,38.5 - parent: 82 - type: Transform -- uid: 23795 - type: DisposalPipe - components: - - pos: -19.5,37.5 - parent: 82 - type: Transform -- uid: 23796 - type: DisposalPipe - components: - - pos: -19.5,36.5 - parent: 82 - type: Transform -- uid: 23797 - type: DisposalPipe - components: - - pos: -19.5,35.5 - parent: 82 - type: Transform -- uid: 23798 - type: DisposalPipe - components: - - pos: -19.5,34.5 - parent: 82 - type: Transform -- uid: 23799 - type: DisposalPipe - components: - - pos: -19.5,33.5 - parent: 82 - type: Transform -- uid: 23800 - type: DisposalPipe - components: - - pos: -19.5,32.5 - parent: 82 - type: Transform -- uid: 23801 - type: DisposalPipe - components: - - pos: -19.5,31.5 - parent: 82 - type: Transform -- uid: 23802 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-34.5 - parent: 82 - type: Transform -- uid: 23803 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-34.5 - parent: 82 - type: Transform -- uid: 23804 - type: DisposalPipe - components: - - pos: -37.5,-33.5 - parent: 82 - type: Transform -- uid: 23805 - type: DisposalPipe - components: - - pos: -37.5,-32.5 - parent: 82 - type: Transform -- uid: 23806 - type: DisposalPipe - components: - - pos: -37.5,-31.5 - parent: 82 - type: Transform -- uid: 23807 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-30.5 - parent: 82 - type: Transform -- uid: 23808 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-30.5 - parent: 82 - type: Transform -- uid: 23809 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-30.5 - parent: 82 - type: Transform -- uid: 23810 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-30.5 - parent: 82 - type: Transform -- uid: 23811 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-30.5 - parent: 82 - type: Transform -- uid: 23812 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-30.5 - parent: 82 - type: Transform -- uid: 23813 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-30.5 - parent: 82 - type: Transform -- uid: 23814 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-30.5 - parent: 82 - type: Transform -- uid: 23815 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-30.5 - parent: 82 - type: Transform -- uid: 23816 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-30.5 - parent: 82 - type: Transform -- uid: 23817 - type: DisposalPipe - components: - - pos: -27.5,-29.5 - parent: 82 - type: Transform -- uid: 23818 - type: DisposalPipe - components: - - pos: -27.5,-28.5 - parent: 82 - type: Transform -- uid: 23819 - type: DisposalPipe - components: - - pos: -27.5,-27.5 - parent: 82 - type: Transform -- uid: 23820 - type: DisposalPipe - components: - - pos: -27.5,-26.5 - parent: 82 - type: Transform -- uid: 23821 - type: DisposalPipe - components: - - pos: -27.5,-25.5 - parent: 82 - type: Transform -- uid: 23822 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-24.5 - parent: 82 - type: Transform -- uid: 23823 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-24.5 - parent: 82 - type: Transform -- uid: 23824 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-24.5 - parent: 82 - type: Transform -- uid: 23825 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-24.5 - parent: 82 - type: Transform -- uid: 23826 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 82 - type: Transform -- uid: 23827 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-24.5 - parent: 82 - type: Transform -- uid: 23828 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-24.5 - parent: 82 - type: Transform -- uid: 23829 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-24.5 - parent: 82 - type: Transform -- uid: 23830 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-24.5 - parent: 82 - type: Transform -- uid: 23831 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-24.5 - parent: 82 - type: Transform -- uid: 23832 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-24.5 - parent: 82 - type: Transform -- uid: 23833 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-24.5 - parent: 82 - type: Transform -- uid: 23834 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-24.5 - parent: 82 - type: Transform -- uid: 23835 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 82 - type: Transform -- uid: 23836 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-24.5 - parent: 82 - type: Transform -- uid: 23837 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-24.5 - parent: 82 - type: Transform -- uid: 23838 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-24.5 - parent: 82 - type: Transform -- uid: 23839 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-24.5 - parent: 82 - type: Transform -- uid: 23840 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-24.5 - parent: 82 - type: Transform -- uid: 23841 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-24.5 - parent: 82 - type: Transform -- uid: 23842 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-24.5 - parent: 82 - type: Transform -- uid: 23843 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-24.5 - parent: 82 - type: Transform -- uid: 23844 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-24.5 - parent: 82 - type: Transform -- uid: 23845 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-24.5 - parent: 82 - type: Transform -- uid: 23846 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-23.5 - parent: 82 - type: Transform -- uid: 23847 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-22.5 - parent: 82 - type: Transform -- uid: 23848 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-21.5 - parent: 82 - type: Transform -- uid: 23849 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-20.5 - parent: 82 - type: Transform -- uid: 23850 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-19.5 - parent: 82 - type: Transform -- uid: 23851 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-18.5 - parent: 82 - type: Transform -- uid: 23852 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-17.5 - parent: 82 - type: Transform -- uid: 23853 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-16.5 - parent: 82 - type: Transform -- uid: 23854 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-15.5 - parent: 82 - type: Transform -- uid: 23855 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-14.5 - parent: 82 - type: Transform -- uid: 23856 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-13.5 - parent: 82 - type: Transform -- uid: 23857 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-12.5 - parent: 82 - type: Transform -- uid: 23858 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-11.5 - parent: 82 - type: Transform -- uid: 23859 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-10.5 - parent: 82 - type: Transform -- uid: 23860 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-9.5 - parent: 82 - type: Transform -- uid: 23861 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-8.5 - parent: 82 - type: Transform -- uid: 23862 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-7.5 - parent: 82 - type: Transform -- uid: 23863 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-6.5 - parent: 82 - type: Transform -- uid: 23864 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-5.5 - parent: 82 - type: Transform -- uid: 23865 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-4.5 - parent: 82 - type: Transform -- uid: 23866 - type: MailingUnit - components: - - pos: 42.5,-5.5 - parent: 82 - type: Transform - - tag: Security - type: MailingUnit - - config: - tag: Security - type: Configuration -- uid: 23867 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-5.5 - parent: 82 - type: Transform -- uid: 23868 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-5.5 - parent: 82 - type: Transform -- uid: 23869 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-5.5 - parent: 82 - type: Transform -- uid: 23870 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 39.5,-5.5 - parent: 82 - type: Transform -- uid: 23871 - type: DisposalPipe - components: - - pos: 39.5,-4.5 - parent: 82 - type: Transform -- uid: 23872 - type: DisposalPipe - components: - - pos: 39.5,-3.5 - parent: 82 - type: Transform -- uid: 23873 - type: DisposalPipe - components: - - pos: 39.5,-2.5 - parent: 82 - type: Transform -- uid: 23874 - type: DisposalPipe - components: - - pos: 39.5,-1.5 - parent: 82 - type: Transform -- uid: 23875 - type: DisposalPipe - components: - - pos: 39.5,-0.5 - parent: 82 - type: Transform -- uid: 23876 - type: DisposalPipe - components: - - pos: 39.5,0.5 - parent: 82 - type: Transform -- uid: 23877 - type: DisposalPipe - components: - - pos: 39.5,1.5 - parent: 82 - type: Transform -- uid: 23878 - type: DisposalPipe - components: - - pos: 39.5,2.5 - parent: 82 - type: Transform -- uid: 23879 - type: DisposalPipe - components: - - pos: 39.5,3.5 - parent: 82 - type: Transform -- uid: 23880 - type: DisposalBend - components: - - pos: 39.5,4.5 - parent: 82 - type: Transform -- uid: 23881 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,4.5 - parent: 82 - type: Transform -- uid: 23882 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,4.5 - parent: 82 - type: Transform -- uid: 23883 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,4.5 - parent: 82 - type: Transform -- uid: 23884 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 82 - type: Transform -- uid: 23885 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 82 - type: Transform -- uid: 23886 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,4.5 - parent: 82 - type: Transform -- uid: 23887 - type: DisposalTrunk - components: - - pos: 29.5,10.5 - parent: 82 - type: Transform -- uid: 23888 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 26.5,61.5 - parent: 82 - type: Transform -- uid: 23889 - type: MailingUnit - components: - - pos: 26.5,61.5 - parent: 82 - type: Transform - - tag: Science - type: MailingUnit - - config: - tag: Science - type: Configuration -- uid: 23890 - type: DisposalBend - components: - - pos: 27.5,61.5 - parent: 82 - type: Transform -- uid: 23891 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 27.5,60.5 - parent: 82 - type: Transform -- uid: 23892 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 22.5,54.5 - parent: 82 - type: Transform -- uid: 23893 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 27.5,59.5 - parent: 82 - type: Transform -- uid: 23894 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 27.5,58.5 - parent: 82 - type: Transform -- uid: 23895 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 27.5,56.5 - parent: 82 - type: Transform -- uid: 23896 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 27.5,55.5 - parent: 82 - type: Transform -- uid: 23897 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 27.5,54.5 - parent: 82 - type: Transform -- uid: 23898 - type: DisposalPipe - components: - - pos: 27.5,53.5 - parent: 82 - type: Transform -- uid: 23899 - type: DisposalPipe - components: - - pos: 27.5,52.5 - parent: 82 - type: Transform -- uid: 23900 - type: DisposalPipe - components: - - pos: 27.5,51.5 - parent: 82 - type: Transform -- uid: 23901 - type: DisposalPipe - components: - - pos: 32.5,21.5 - parent: 82 - type: Transform -- uid: 23902 - type: DisposalPipe - components: - - pos: 32.5,22.5 - parent: 82 - type: Transform -- uid: 23903 - type: DisposalPipe - components: - - pos: 32.5,23.5 - parent: 82 - type: Transform -- uid: 23904 - type: DisposalPipe - components: - - pos: 32.5,24.5 - parent: 82 - type: Transform -- uid: 23905 - type: DisposalPipe - components: - - pos: 32.5,25.5 - parent: 82 - type: Transform -- uid: 23906 - type: DisposalPipe - components: - - pos: 32.5,26.5 - parent: 82 - type: Transform -- uid: 23907 - type: DisposalPipe - components: - - pos: 32.5,27.5 - parent: 82 - type: Transform -- uid: 23908 - type: DisposalPipe - components: - - pos: 32.5,28.5 - parent: 82 - type: Transform -- uid: 23909 - type: DisposalPipe - components: - - pos: 32.5,29.5 - parent: 82 - type: Transform -- uid: 23910 - type: DisposalPipe - components: - - pos: 32.5,30.5 - parent: 82 - type: Transform -- uid: 23911 - type: DisposalPipe - components: - - pos: 32.5,31.5 - parent: 82 - type: Transform -- uid: 23912 - type: DisposalPipe - components: - - pos: 32.5,32.5 - parent: 82 - type: Transform -- uid: 23913 - type: DisposalPipe - components: - - pos: 32.5,33.5 - parent: 82 - type: Transform -- uid: 23914 - type: DisposalPipe - components: - - pos: 32.5,34.5 - parent: 82 - type: Transform -- uid: 23915 - type: DisposalPipe - components: - - pos: 32.5,35.5 - parent: 82 - type: Transform -- uid: 23916 - type: DisposalPipe - components: - - pos: 32.5,36.5 - parent: 82 - type: Transform -- uid: 23917 - type: DisposalPipe - components: - - pos: 32.5,37.5 - parent: 82 - type: Transform -- uid: 23918 - type: DisposalPipe - components: - - pos: 32.5,38.5 - parent: 82 - type: Transform -- uid: 23919 - type: DisposalPipe - components: - - pos: 32.5,39.5 - parent: 82 - type: Transform -- uid: 23920 - type: DisposalPipe - components: - - pos: 32.5,40.5 - parent: 82 - type: Transform -- uid: 23921 - type: DisposalPipe - components: - - pos: 32.5,41.5 - parent: 82 - type: Transform -- uid: 23922 - type: DisposalPipe - components: - - pos: 32.5,42.5 - parent: 82 - type: Transform -- uid: 23923 - type: DisposalPipe - components: - - pos: 32.5,43.5 - parent: 82 - type: Transform -- uid: 23924 - type: DisposalPipe - components: - - pos: 32.5,44.5 - parent: 82 - type: Transform -- uid: 23925 - type: DisposalPipe - components: - - pos: 32.5,45.5 - parent: 82 - type: Transform -- uid: 23926 - type: DisposalPipe - components: - - pos: 32.5,46.5 - parent: 82 - type: Transform -- uid: 23927 - type: DisposalPipe - components: - - pos: 32.5,47.5 - parent: 82 - type: Transform -- uid: 23928 - type: DisposalPipe - components: - - pos: 32.5,48.5 - parent: 82 - type: Transform -- uid: 23929 - type: DisposalPipe - components: - - pos: 32.5,49.5 - parent: 82 - type: Transform -- uid: 23930 - type: DisposalBend - components: - - pos: 32.5,50.5 - parent: 82 - type: Transform -- uid: 23931 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,50.5 - parent: 82 - type: Transform -- uid: 23932 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,50.5 - parent: 82 - type: Transform -- uid: 23933 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,50.5 - parent: 82 - type: Transform -- uid: 23934 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,50.5 - parent: 82 - type: Transform -- uid: 23935 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,50.5 - parent: 82 - type: Transform -- uid: 23936 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,50.5 - parent: 82 - type: Transform -- uid: 23937 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,50.5 - parent: 82 - type: Transform -- uid: 23938 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,50.5 - parent: 82 - type: Transform -- uid: 23939 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,50.5 - parent: 82 - type: Transform -- uid: 23940 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,50.5 - parent: 82 - type: Transform -- uid: 23941 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,50.5 - parent: 82 - type: Transform -- uid: 23942 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,50.5 - parent: 82 - type: Transform -- uid: 23943 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,50.5 - parent: 82 - type: Transform -- uid: 23944 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,50.5 - parent: 82 - type: Transform -- uid: 23945 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,50.5 - parent: 82 - type: Transform -- uid: 23946 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,50.5 - parent: 82 - type: Transform -- uid: 23947 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,50.5 - parent: 82 - type: Transform -- uid: 23948 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,50.5 - parent: 82 - type: Transform -- uid: 23949 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,50.5 - parent: 82 - type: Transform -- uid: 23950 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,50.5 - parent: 82 - type: Transform -- uid: 23951 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,50.5 - parent: 82 - type: Transform -- uid: 23952 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,50.5 - parent: 82 - type: Transform -- uid: 23953 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,50.5 - parent: 82 - type: Transform -- uid: 23954 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,50.5 - parent: 82 - type: Transform -- uid: 23955 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,50.5 - parent: 82 - type: Transform -- uid: 23956 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,50.5 - parent: 82 - type: Transform -- uid: 23957 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,50.5 - parent: 82 - type: Transform -- uid: 23958 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,50.5 - parent: 82 - type: Transform -- uid: 23959 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,50.5 - parent: 82 - type: Transform -- uid: 23960 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,50.5 - parent: 82 - type: Transform -- uid: 23961 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,50.5 - parent: 82 - type: Transform -- uid: 23962 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,50.5 - parent: 82 - type: Transform -- uid: 23963 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,50.5 - parent: 82 - type: Transform -- uid: 23964 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -4.5,50.5 - parent: 82 - type: Transform -- uid: 23965 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,49.5 - parent: 82 - type: Transform -- uid: 23966 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,48.5 - parent: 82 - type: Transform -- uid: 23967 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,47.5 - parent: 82 - type: Transform -- uid: 23968 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,46.5 - parent: 82 - type: Transform -- uid: 23969 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,45.5 - parent: 82 - type: Transform -- uid: 23970 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,44.5 - parent: 82 - type: Transform -- uid: 23971 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,43.5 - parent: 82 - type: Transform -- uid: 23972 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,42.5 - parent: 82 - type: Transform -- uid: 23973 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,41.5 - parent: 82 - type: Transform -- uid: 23974 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,40.5 - parent: 82 - type: Transform -- uid: 23975 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,39.5 - parent: 82 - type: Transform -- uid: 23976 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,38.5 - parent: 82 - type: Transform -- uid: 23977 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,37.5 - parent: 82 - type: Transform -- uid: 23978 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,36.5 - parent: 82 - type: Transform -- uid: 23979 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,35.5 - parent: 82 - type: Transform -- uid: 23980 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,34.5 - parent: 82 - type: Transform -- uid: 23981 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,33.5 - parent: 82 - type: Transform -- uid: 23982 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,32.5 - parent: 82 - type: Transform -- uid: 23983 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,31.5 - parent: 82 - type: Transform -- uid: 23984 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -4.5,30.5 - parent: 82 - type: Transform -- uid: 23985 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,30.5 - parent: 82 - type: Transform -- uid: 23986 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,30.5 - parent: 82 - type: Transform -- uid: 23987 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,30.5 - parent: 82 - type: Transform -- uid: 23988 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,30.5 - parent: 82 - type: Transform -- uid: 23989 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,30.5 - parent: 82 - type: Transform -- uid: 23990 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,30.5 - parent: 82 - type: Transform -- uid: 23991 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,30.5 - parent: 82 - type: Transform -- uid: 23992 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,30.5 - parent: 82 - type: Transform -- uid: 23993 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,30.5 - parent: 82 - type: Transform -- uid: 23994 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,30.5 - parent: 82 - type: Transform -- uid: 23995 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,30.5 - parent: 82 - type: Transform -- uid: 23996 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,30.5 - parent: 82 - type: Transform -- uid: 23997 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,30.5 - parent: 82 - type: Transform -- uid: 23998 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,30.5 - parent: 82 - type: Transform -- uid: 23999 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,30.5 - parent: 82 - type: Transform -- uid: 24000 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,30.5 - parent: 82 - type: Transform -- uid: 24001 - type: DisposalRouterFlipped - components: - - rot: 1.5707963267948966 rad - pos: -19.5,30.5 - parent: 82 - type: Transform - - tags: - - Engineering - type: DisposalRouter -- uid: 24002 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -22.5,30.5 - parent: 82 - type: Transform -- uid: 24003 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,24.5 - parent: 82 - type: Transform -- uid: 24004 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,23.5 - parent: 82 - type: Transform -- uid: 24005 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,22.5 - parent: 82 - type: Transform -- uid: 24006 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,21.5 - parent: 82 - type: Transform -- uid: 24007 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,20.5 - parent: 82 - type: Transform -- uid: 24008 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,19.5 - parent: 82 - type: Transform -- uid: 24009 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,18.5 - parent: 82 - type: Transform -- uid: 24010 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,17.5 - parent: 82 - type: Transform -- uid: 24011 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,16.5 - parent: 82 - type: Transform -- uid: 24012 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,15.5 - parent: 82 - type: Transform -- uid: 24013 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,14.5 - parent: 82 - type: Transform -- uid: 24014 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,13.5 - parent: 82 - type: Transform -- uid: 24015 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,12.5 - parent: 82 - type: Transform -- uid: 24016 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,11.5 - parent: 82 - type: Transform -- uid: 24017 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,10.5 - parent: 82 - type: Transform -- uid: 24018 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,9.5 - parent: 82 - type: Transform -- uid: 24019 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,8.5 - parent: 82 - type: Transform -- uid: 24020 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,7.5 - parent: 82 - type: Transform -- uid: 24021 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,6.5 - parent: 82 - type: Transform -- uid: 24022 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,5.5 - parent: 82 - type: Transform -- uid: 24023 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,4.5 - parent: 82 - type: Transform -- uid: 24024 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,3.5 - parent: 82 - type: Transform -- uid: 24025 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,2.5 - parent: 82 - type: Transform -- uid: 24026 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,1.5 - parent: 82 - type: Transform -- uid: 24027 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,0.5 - parent: 82 - type: Transform -- uid: 24028 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-0.5 - parent: 82 - type: Transform -- uid: 24029 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-1.5 - parent: 82 - type: Transform -- uid: 24030 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,-2.5 - parent: 82 - type: Transform -- uid: 24031 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,29.5 - parent: 82 - type: Transform -- uid: 24032 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,28.5 - parent: 82 - type: Transform -- uid: 24033 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,27.5 - parent: 82 - type: Transform -- uid: 24034 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,26.5 - parent: 82 - type: Transform -- uid: 24035 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,25.5 - parent: 82 - type: Transform -- uid: 24036 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -22.5,-3.5 - parent: 82 - type: Transform -- uid: 24037 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-3.5 - parent: 82 - type: Transform -- uid: 24038 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-3.5 - parent: 82 - type: Transform -- uid: 24039 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-3.5 - parent: 82 - type: Transform -- uid: 24040 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-3.5 - parent: 82 - type: Transform -- uid: 24041 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-3.5 - parent: 82 - type: Transform -- uid: 24042 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-3.5 - parent: 82 - type: Transform -- uid: 24043 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-3.5 - parent: 82 - type: Transform -- uid: 24044 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-3.5 - parent: 82 - type: Transform -- uid: 24045 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-3.5 - parent: 82 - type: Transform -- uid: 24046 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-3.5 - parent: 82 - type: Transform -- uid: 24047 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-3.5 - parent: 82 - type: Transform -- uid: 24048 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-3.5 - parent: 82 - type: Transform -- uid: 24049 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 - parent: 82 - type: Transform -- uid: 24050 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-3.5 - parent: 82 - type: Transform -- uid: 24051 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-3.5 - parent: 82 - type: Transform -- uid: 24052 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-3.5 - parent: 82 - type: Transform -- uid: 24053 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-3.5 - parent: 82 - type: Transform -- uid: 24054 - type: DisposalRouterFlipped - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-3.5 - parent: 82 - type: Transform - - tags: - - Medbay - type: DisposalRouter -- uid: 24055 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 82 - type: Transform -- uid: 24056 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 82 - type: Transform -- uid: 24057 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 82 - type: Transform -- uid: 24058 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 82 - type: Transform -- uid: 24059 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 82 - type: Transform -- uid: 24060 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 82 - type: Transform -- uid: 24061 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 82 - type: Transform -- uid: 24062 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-3.5 - parent: 82 - type: Transform -- uid: 24063 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-3.5 - parent: 82 - type: Transform -- uid: 24064 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 82 - type: Transform -- uid: 24065 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 82 - type: Transform -- uid: 24066 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 82 - type: Transform -- uid: 24067 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-3.5 - parent: 82 - type: Transform -- uid: 24068 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 82 - type: Transform -- uid: 24069 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 82 - type: Transform -- uid: 24070 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 82 - type: Transform -- uid: 24071 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 82 - type: Transform -- uid: 24072 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 82 - type: Transform -- uid: 24073 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-3.5 - parent: 82 - type: Transform -- uid: 24074 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 - parent: 82 - type: Transform -- uid: 24075 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-3.5 - parent: 82 - type: Transform -- uid: 24076 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 82 - type: Transform -- uid: 24077 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 82 - type: Transform -- uid: 24078 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 82 - type: Transform -- uid: 24079 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-3.5 - parent: 82 - type: Transform -- uid: 24080 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-3.5 - parent: 82 - type: Transform -- uid: 24081 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 82 - type: Transform -- uid: 24082 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-3.5 - parent: 82 - type: Transform -- uid: 24083 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-3.5 - parent: 82 - type: Transform -- uid: 24084 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-3.5 - parent: 82 - type: Transform -- uid: 24085 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-3.5 - parent: 82 - type: Transform -- uid: 24086 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 82 - type: Transform -- uid: 24087 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,-2.5 - parent: 82 - type: Transform -- uid: 24088 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,-1.5 - parent: 82 - type: Transform -- uid: 24089 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,-0.5 - parent: 82 - type: Transform -- uid: 24090 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,0.5 - parent: 82 - type: Transform -- uid: 24091 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,1.5 - parent: 82 - type: Transform -- uid: 24092 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,2.5 - parent: 82 - type: Transform -- uid: 24093 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,3.5 - parent: 82 - type: Transform -- uid: 24094 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,3.5 - parent: 82 - type: Transform -- uid: 24095 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,3.5 - parent: 82 - type: Transform -- uid: 24096 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-3.5 - parent: 82 - type: Transform -- uid: 24097 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 28.5,3.5 - parent: 82 - type: Transform -- uid: 24098 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 32.5,3.5 - parent: 82 - type: Transform -- uid: 24099 - type: DisposalRouterFlipped - components: - - pos: 32.5,4.5 - parent: 82 - type: Transform - - tags: - - Security - type: DisposalRouter -- uid: 24100 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 32.5,5.5 - parent: 82 - type: Transform -- uid: 24101 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 32.5,6.5 - parent: 82 - type: Transform -- uid: 24102 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 32.5,7.5 - parent: 82 - type: Transform -- uid: 24103 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 32.5,8.5 - parent: 82 - type: Transform -- uid: 24104 - type: MailingUnit - components: - - pos: 29.5,10.5 - parent: 82 - type: Transform - - tag: Atmos - type: MailingUnit - - config: - tag: Atmos - type: Configuration -- uid: 24105 - type: DisposalRouter - components: - - pos: 32.5,9.5 - parent: 82 - type: Transform - - tags: - - Atmos - type: DisposalRouter -- uid: 24106 - type: DisposalPipe - components: - - pos: 32.5,10.5 - parent: 82 - type: Transform -- uid: 24107 - type: DisposalPipe - components: - - pos: 32.5,11.5 - parent: 82 - type: Transform -- uid: 24108 - type: DisposalPipe - components: - - pos: 32.5,12.5 - parent: 82 - type: Transform -- uid: 24109 - type: DisposalPipe - components: - - pos: 32.5,13.5 - parent: 82 - type: Transform -- uid: 24110 - type: DisposalPipe - components: - - pos: 32.5,14.5 - parent: 82 - type: Transform -- uid: 24111 - type: DisposalPipe - components: - - pos: 32.5,15.5 - parent: 82 - type: Transform -- uid: 24112 - type: DisposalPipe - components: - - pos: 32.5,16.5 - parent: 82 - type: Transform -- uid: 24113 - type: DisposalPipe - components: - - pos: 32.5,17.5 - parent: 82 - type: Transform -- uid: 24114 - type: DisposalPipe - components: - - pos: 32.5,18.5 - parent: 82 - type: Transform -- uid: 24115 - type: DisposalPipe - components: - - pos: 32.5,19.5 - parent: 82 - type: Transform -- uid: 24116 - type: DisposalTrunk - components: - - pos: 37.5,21.5 - parent: 82 - type: Transform -- uid: 24117 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 37.5,20.5 - parent: 82 - type: Transform -- uid: 24118 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 36.5,20.5 - parent: 82 - type: Transform -- uid: 24119 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 35.5,20.5 - parent: 82 - type: Transform -- uid: 24120 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 34.5,20.5 - parent: 82 - type: Transform -- uid: 24121 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 33.5,20.5 - parent: 82 - type: Transform -- uid: 24122 - type: DisposalRouterFlipped - components: - - pos: 32.5,20.5 - parent: 82 - type: Transform - - tags: - - Mail Room - type: DisposalRouter -- uid: 24123 - type: Grille - components: - - pos: 6.5,54.5 - parent: 82 - type: Transform -- uid: 24124 - type: Grille - components: - - pos: 7.5,54.5 - parent: 82 - type: Transform -- uid: 24125 - type: Grille - components: - - pos: 8.5,54.5 - parent: 82 - type: Transform -- uid: 24126 - type: PoweredLightPostSmall - components: - - pos: -56.5,12.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24127 - type: CableApcExtension - components: - - pos: -56.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24128 - type: CableApcExtension - components: - - pos: -55.5,11.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24129 - type: Poweredlight - components: - - pos: -58.5,27.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24130 - type: CableApcExtension - components: - - pos: -1.5,-19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24131 - type: Poweredlight - components: - - pos: -64.5,33.5 - parent: 82 - type: Transform -- uid: 24132 - type: Poweredlight - components: - - pos: -67.5,36.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24133 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -62.5,57.5 - parent: 82 - type: Transform -- uid: 24134 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -56.5,57.5 - parent: 82 - type: Transform -- uid: 24136 - type: Poweredlight - components: - - anchored: False - rot: 3.141592653589793 rad - pos: -67.08333,57.65278 - parent: 84 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24137 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -67.5,50.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24138 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -67.5,42.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24139 - type: Poweredlight - components: - - pos: -67.5,44.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24140 - type: Grille - components: - - pos: -57.5,58.5 - parent: 82 - type: Transform -- uid: 24141 - type: Grille - components: - - pos: -58.5,58.5 - parent: 82 - type: Transform -- uid: 24142 - type: Grille - components: - - pos: -59.5,58.5 - parent: 82 - type: Transform -- uid: 24143 - type: Grille - components: - - pos: -60.5,58.5 - parent: 82 - type: Transform -- uid: 24144 - type: Grille - components: - - pos: -61.5,58.5 - parent: 82 - type: Transform -- uid: 24145 - type: WallReinforced - components: - - pos: 32.5,76.5 - parent: 82 - type: Transform -- uid: 24146 - type: SpawnMobMouse - components: - - pos: 43.5,50.5 - parent: 82 - type: Transform -- uid: 24147 - type: SpawnMobMouse - components: - - pos: 19.5,3.5 - parent: 82 - type: Transform -- uid: 24148 - type: SpawnMobMouse - components: - - pos: 49.5,9.5 - parent: 82 - type: Transform -- uid: 24149 - type: SpawnMobMouse - components: - - pos: 3.5,-18.5 - parent: 82 - type: Transform -- uid: 24150 - type: SpawnMobMouse - components: - - pos: 25.5,-13.5 - parent: 82 - type: Transform -- uid: 24151 - type: SpawnMobMouse - components: - - pos: 3.5,-41.5 - parent: 82 - type: Transform -- uid: 24152 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -65.5,53.5 - parent: 82 - type: Transform -- uid: 24153 - type: ClothingOuterWinterPara - components: - - pos: -51.67908,-34.378307 - parent: 82 - type: Transform -- uid: 24154 - type: SpawnMobMouse - components: - - pos: -49.5,-22.5 - parent: 82 - type: Transform -- uid: 24155 - type: SpawnMobMouse - components: - - pos: -49.5,0.5 - parent: 82 - type: Transform -- uid: 24156 - type: SpawnMobMouse - components: - - pos: -47.5,22.5 - parent: 82 - type: Transform -- uid: 24157 - type: SpawnMobMouse - components: - - pos: -40.5,45.5 - parent: 82 - type: Transform -- uid: 24158 - type: SpawnMobMouse - components: - - pos: -24.5,54.5 - parent: 82 - type: Transform -- uid: 24159 - type: SpawnMobMouse - components: - - pos: 20.5,40.5 - parent: 82 - type: Transform -- uid: 24160 - type: SpawnMobMouse - components: - - pos: 24.5,19.5 - parent: 82 - type: Transform -- uid: 24161 - type: FirelockEdge - components: - - pos: -19.5,55.5 - parent: 82 - type: Transform -- uid: 24162 - type: FirelockEdge - components: - - pos: -20.5,55.5 - parent: 82 - type: Transform -- uid: 24163 - type: CableMV - components: - - pos: -13.5,48.5 - parent: 82 - type: Transform -- uid: 24164 - type: CableMV - components: - - pos: -14.5,48.5 - parent: 82 - type: Transform -- uid: 24165 - type: CableMV - components: - - pos: -15.5,48.5 - parent: 82 - type: Transform -- uid: 24166 - type: CableMV - components: - - pos: -16.5,48.5 - parent: 82 - type: Transform -- uid: 24167 - type: CableMV - components: - - pos: -16.5,49.5 - parent: 82 - type: Transform -- uid: 24168 - type: CableMV - components: - - pos: -16.5,50.5 - parent: 82 - type: Transform -- uid: 24169 - type: CableMV - components: - - pos: -16.5,51.5 - parent: 82 - type: Transform -- uid: 24170 - type: CableMV - components: - - pos: -16.5,52.5 - parent: 82 - type: Transform -- uid: 24171 - type: CableMV - components: - - pos: -16.5,53.5 - parent: 82 - type: Transform -- uid: 24172 - type: CableMV - components: - - pos: -15.5,53.5 - parent: 82 - type: Transform -- uid: 24173 - type: CableMV - components: - - pos: -15.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24174 - type: CableMV - components: - - pos: -14.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24175 - type: CableMV - components: - - pos: -13.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24176 - type: CableMV - components: - - pos: -12.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24177 - type: CableMV - components: - - pos: -11.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24178 - type: CableMV - components: - - pos: -10.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24179 - type: CableMV - components: - - pos: -9.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24180 - type: CableMV - components: - - pos: -9.5,53.5 - parent: 82 - type: Transform -- uid: 24181 - type: CableMV - components: - - pos: -9.5,52.5 - parent: 82 - type: Transform -- uid: 24182 - type: CableMV - components: - - pos: -9.5,51.5 - parent: 82 - type: Transform -- uid: 24183 - type: CableMV - components: - - pos: -9.5,50.5 - parent: 82 - type: Transform -- uid: 24184 - type: CableMV - components: - - pos: -9.5,49.5 - parent: 82 - type: Transform -- uid: 24185 - type: Rack - components: - - pos: 38.5,21.5 - parent: 82 - type: Transform -- uid: 24186 - type: EphedrineChemistryBottle - components: - - pos: -61.605972,-48.389294 - parent: 82 - type: Transform -- uid: 24187 - type: SyringeEphedrine - components: - - pos: -61.355446,-48.53664 - parent: 82 - type: Transform -- uid: 24188 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 36.5,21.5 - parent: 82 - type: Transform -- uid: 24189 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 47.5,20.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24190 - type: Poweredlight - components: - - pos: 48.5,24.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24191 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,18.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24192 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 37.5,56.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24193 - type: Window - components: - - pos: 35.5,22.5 - parent: 82 - type: Transform -- uid: 24194 - type: PottedPlantRandom - components: - - pos: 37.5,25.5 - parent: 82 - type: Transform -- uid: 24195 - type: Table - components: - - pos: 35.5,21.5 - parent: 82 - type: Transform -- uid: 24196 - type: DisposalUnit - components: - - pos: 32.5,-31.5 - parent: 82 - type: Transform -- uid: 24197 - type: DisposalTrunk - components: - - pos: -14.5,41.5 - parent: 82 - type: Transform -- uid: 24198 - type: DisposalUnit - components: - - pos: -14.5,41.5 - parent: 82 - type: Transform -- uid: 24199 - type: RandomArcade - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-49.5 - parent: 82 - type: Transform -- uid: 24200 - type: DisposalUnit - components: - - pos: -23.5,-32.5 - parent: 82 - type: Transform -- uid: 24201 - type: Grille - components: - - pos: 34.5,33.5 - parent: 82 - type: Transform -- uid: 24202 - type: PoweredlightLED - components: - - pos: 49.5,-7.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24203 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-7.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24204 - type: SignMail - components: - - pos: 34.5,22.5 - parent: 82 - type: Transform -- uid: 24205 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,24.5 - parent: 82 - type: Transform -- uid: 24206 - type: trayScanner - components: - - pos: 25.520115,6.522357 - parent: 82 - type: Transform -- uid: 24207 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,9.5 - parent: 82 - type: Transform -- uid: 24208 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 29.5,9.5 - parent: 82 - type: Transform -- uid: 24209 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,9.5 - parent: 82 - type: Transform -- uid: 24210 - type: ClothingShoesChef - components: - - pos: -36.492474,-6.926211 - parent: 82 - type: Transform -- uid: 24211 - type: Grille - components: - - pos: 35.5,22.5 - parent: 82 - type: Transform -- uid: 24212 - type: CableApcExtension - components: - - pos: -1.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24213 - type: SurveillanceCameraSupply - components: - - rot: -1.5707963267948966 rad - pos: 35.5,21.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Mail Room - type: SurveillanceCamera -- uid: 24214 - type: Firelock - components: - - pos: 36.5,22.5 - parent: 82 - type: Transform -- uid: 24215 - type: WindoorSecureCargoLocked - components: - - pos: 36.5,22.5 - parent: 82 - type: Transform -- uid: 24216 - type: MailingUnit - components: - - pos: -38.5,-34.5 - parent: 82 - type: Transform - - tag: Medbay - type: MailingUnit - - config: - tag: Medbay - type: Configuration -- uid: 24217 - type: VendingMachineCargoDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 40.5,23.5 - parent: 82 - type: Transform -- uid: 24218 - type: BannerCargo - components: - - pos: 39.5,23.5 - parent: 82 - type: Transform -- uid: 24219 - type: CableHV - components: - - pos: -27.5,19.5 - parent: 82 - type: Transform -- uid: 24220 - type: MailingUnit - components: - - pos: 37.5,21.5 - parent: 82 - type: Transform - - tag: Mail Room - type: MailingUnit - - config: - tag: Mail Room - type: Configuration -- uid: 24221 - type: DisposalTrunk - components: - - pos: 17.5,-22.5 - parent: 82 - type: Transform -- uid: 24222 - type: DisposalUnit - components: - - pos: 26.5,-9.5 - parent: 82 - type: Transform -- uid: 24223 - type: CableHV - components: - - pos: -27.5,18.5 - parent: 82 - type: Transform -- uid: 24224 - type: ReinforcedWindow - components: - - pos: 34.5,33.5 - parent: 82 - type: Transform -- uid: 24225 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,26.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24226 - type: ClosetEmergencyFilledRandom - components: - - pos: -7.5,-62.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24227 - type: AirAlarm - components: - - pos: -40.5,32.5 - parent: 82 - type: Transform - - devices: - - 22404 - - 13302 - - 13257 - - 13258 - - 13265 - - 13266 - - 24228 - - 5519 - - 4124 - - 3694 - - 24501 - - 24505 - - 13301 - - 13300 - - 13220 - type: DeviceList -- uid: 24228 - type: AirSensor - components: - - pos: -31.5,30.5 - parent: 82 - type: Transform -- uid: 24229 - type: AirAlarm - components: - - pos: 24.5,11.5 - parent: 82 - type: Transform - - devices: - - 1261 - - 1263 - - 1002 - - 10302 - - 10301 - - 22781 - - 22623 - - 22458 - - 10298 - - 10297 - type: DeviceList -- uid: 24230 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -1.5,9.5 - parent: 82 - type: Transform - - devices: - - 395 - - 10986 - type: DeviceList -- uid: 24231 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 4.5,9.5 - parent: 82 - type: Transform - - devices: - - 10872 - - 396 - type: DeviceList -- uid: 24232 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 10.5,9.5 - parent: 82 - type: Transform - - devices: - - 397 - - 10622 - type: DeviceList -- uid: 24233 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-46.5 - parent: 82 - type: Transform -- uid: 24234 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-44.5 - parent: 82 - type: Transform -- uid: 24235 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: -4.5,-42.5 - parent: 82 - type: Transform -- uid: 24236 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -59.5,44.5 - parent: 82 - type: Transform -- uid: 24237 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -58.5,44.5 - parent: 82 - type: Transform -- uid: 24238 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -57.5,44.5 - parent: 82 - type: Transform -- uid: 24239 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -56.5,44.5 - parent: 82 - type: Transform -- uid: 24240 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -60.5,43.5 - parent: 82 - type: Transform -- uid: 24241 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -17.5,-43.5 - parent: 82 - type: Transform -- uid: 24242 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-42.5 - parent: 82 - type: Transform -- uid: 24243 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-42.5 - parent: 82 - type: Transform -- uid: 24244 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-42.5 - parent: 82 - type: Transform -- uid: 24245 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-42.5 - parent: 82 - type: Transform -- uid: 24246 - type: DisposalUnit - components: - - pos: -17.5,-43.5 - parent: 82 - type: Transform -- uid: 24247 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-42.5 - parent: 82 - type: Transform -- uid: 24248 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-42.5 - parent: 82 - type: Transform -- uid: 24249 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-42.5 - parent: 82 - type: Transform -- uid: 24250 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-42.5 - parent: 82 - type: Transform -- uid: 24251 - type: DisposalPipe - components: - - pos: -55.5,42.5 - parent: 82 - type: Transform -- uid: 24252 - type: DisposalPipe - components: - - pos: -55.5,40.5 - parent: 82 - type: Transform -- uid: 24253 - type: DisposalPipe - components: - - pos: -55.5,38.5 - parent: 82 - type: Transform -- uid: 24254 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -47.5,29.5 - parent: 82 - type: Transform -- uid: 24255 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -45.5,29.5 - parent: 82 - type: Transform -- uid: 24256 - type: DisposalPipe - components: - - pos: -42.5,-5.5 - parent: 82 - type: Transform -- uid: 24257 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-4.5 - parent: 82 - type: Transform -- uid: 24258 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-4.5 - parent: 82 - type: Transform -- uid: 24259 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-4.5 - parent: 82 - type: Transform -- uid: 24260 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-4.5 - parent: 82 - type: Transform -- uid: 24261 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-4.5 - parent: 82 - type: Transform -- uid: 24262 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-4.5 - parent: 82 - type: Transform -- uid: 24263 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-4.5 - parent: 82 - type: Transform -- uid: 24264 - type: DisposalPipe - components: - - pos: -31.5,-12.5 - parent: 82 - type: Transform -- uid: 24265 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-11.5 - parent: 82 - type: Transform -- uid: 24266 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-11.5 - parent: 82 - type: Transform -- uid: 24267 - type: Window - components: - - pos: -30.5,-5.5 - parent: 82 - type: Transform -- uid: 24268 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,13.5 - parent: 82 - type: Transform -- uid: 24269 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,14.5 - parent: 82 - type: Transform -- uid: 24270 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,15.5 - parent: 82 - type: Transform -- uid: 24271 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,16.5 - parent: 82 - type: Transform -- uid: 24272 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,17.5 - parent: 82 - type: Transform -- uid: 24273 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,18.5 - parent: 82 - type: Transform -- uid: 24274 - type: DisposalUnit - components: - - pos: 22.5,7.5 - parent: 82 - type: Transform -- uid: 24275 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 22.5,7.5 - parent: 82 - type: Transform -- uid: 24276 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,9.5 - parent: 82 - type: Transform -- uid: 24277 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,10.5 - parent: 82 - type: Transform -- uid: 24278 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,11.5 - parent: 82 - type: Transform -- uid: 24279 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,8.5 - parent: 82 - type: Transform -- uid: 24280 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,8.5 - parent: 82 - type: Transform -- uid: 24281 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,8.5 - parent: 82 - type: Transform -- uid: 24282 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,8.5 - parent: 82 - type: Transform -- uid: 24283 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,8.5 - parent: 82 - type: Transform -- uid: 24284 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,8.5 - parent: 82 - type: Transform -- uid: 24285 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,6.5 - parent: 82 - type: Transform -- uid: 24286 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,7.5 - parent: 82 - type: Transform -- uid: 24287 - type: DisposalJunction - components: - - pos: 33.5,8.5 - parent: 82 - type: Transform -- uid: 24288 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 82 - type: Transform -- uid: 24289 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,8.5 - parent: 82 - type: Transform -- uid: 24290 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 47.5,2.5 - parent: 82 - type: Transform -- uid: 24291 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 48.5,2.5 - parent: 82 - type: Transform -- uid: 24292 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 49.5,2.5 - parent: 82 - type: Transform -- uid: 24293 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 50.5,2.5 - parent: 82 - type: Transform -- uid: 24294 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 51.5,2.5 - parent: 82 - type: Transform -- uid: 24295 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 52.5,2.5 - parent: 82 - type: Transform -- uid: 24296 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 46.5,2.5 - parent: 82 - type: Transform -- uid: 24297 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 54.5,2.5 - parent: 82 - type: Transform -- uid: 24298 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 55.5,2.5 - parent: 82 - type: Transform -- uid: 24299 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 56.5,2.5 - parent: 82 - type: Transform -- uid: 24300 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 57.5,2.5 - parent: 82 - type: Transform -- uid: 24301 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 58.5,2.5 - parent: 82 - type: Transform -- uid: 24302 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 59.5,2.5 - parent: 82 - type: Transform -- uid: 24303 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 53.5,2.5 - parent: 82 - type: Transform -- uid: 24304 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 61.5,2.5 - parent: 82 - type: Transform -- uid: 24305 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 62.5,2.5 - parent: 82 - type: Transform -- uid: 24306 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 63.5,2.5 - parent: 82 - type: Transform -- uid: 24307 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 64.5,2.5 - parent: 82 - type: Transform -- uid: 24308 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 65.5,2.5 - parent: 82 - type: Transform -- uid: 24309 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 66.5,2.5 - parent: 82 - type: Transform -- uid: 24310 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 60.5,2.5 - parent: 82 - type: Transform -- uid: 24311 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 68.5,2.5 - parent: 82 - type: Transform -- uid: 24312 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 69.5,2.5 - parent: 82 - type: Transform -- uid: 24313 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 76.5,2.5 - parent: 82 - type: Transform -- uid: 24314 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 76.5,8.5 - parent: 82 - type: Transform -- uid: 24315 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 67.5,2.5 - parent: 82 - type: Transform -- uid: 24316 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 76.5,7.5 - parent: 82 - type: Transform -- uid: 24317 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 76.5,6.5 - parent: 82 - type: Transform -- uid: 24318 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 76.5,5.5 - parent: 82 - type: Transform -- uid: 24319 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 76.5,4.5 - parent: 82 - type: Transform -- uid: 24320 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 76.5,3.5 - parent: 82 - type: Transform -- uid: 24321 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 33.5,3.5 - parent: 82 - type: Transform -- uid: 24322 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 77.5,8.5 - parent: 82 - type: Transform -- uid: 24323 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,-5.5 - parent: 82 - type: Transform -- uid: 24324 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-11.5 - parent: 82 - type: Transform -- uid: 24325 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-11.5 - parent: 82 - type: Transform -- uid: 24326 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-2.5 - parent: 82 - type: Transform -- uid: 24327 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-4.5 - parent: 82 - type: Transform -- uid: 24328 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 61.5,-3.5 - parent: 82 - type: Transform -- uid: 24329 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 44.5,-10.5 - parent: 82 - type: Transform -- uid: 24330 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-4.5 - parent: 82 - type: Transform -- uid: 24331 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-4.5 - parent: 82 - type: Transform -- uid: 24332 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-4.5 - parent: 82 - type: Transform -- uid: 24333 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-4.5 - parent: 82 - type: Transform -- uid: 24334 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-4.5 - parent: 82 - type: Transform -- uid: 24335 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-4.5 - parent: 82 - type: Transform -- uid: 24336 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-2.5 - parent: 82 - type: Transform -- uid: 24337 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-4.5 - parent: 82 - type: Transform -- uid: 24338 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-4.5 - parent: 82 - type: Transform -- uid: 24339 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-4.5 - parent: 82 - type: Transform -- uid: 24340 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-4.5 - parent: 82 - type: Transform -- uid: 24341 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-4.5 - parent: 82 - type: Transform -- uid: 24342 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-4.5 - parent: 82 - type: Transform -- uid: 24343 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-4.5 - parent: 82 - type: Transform -- uid: 24344 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 82 - type: Transform -- uid: 24345 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-4.5 - parent: 82 - type: Transform -- uid: 24346 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 70.5,2.5 - parent: 82 - type: Transform -- uid: 24347 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 71.5,2.5 - parent: 82 - type: Transform -- uid: 24348 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-4.5 - parent: 82 - type: Transform -- uid: 24349 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 73.5,2.5 - parent: 82 - type: Transform -- uid: 24350 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 74.5,2.5 - parent: 82 - type: Transform -- uid: 24351 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 75.5,2.5 - parent: 82 - type: Transform -- uid: 24352 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 42.5,2.5 - parent: 82 - type: Transform -- uid: 24353 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 43.5,2.5 - parent: 82 - type: Transform -- uid: 24354 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 44.5,2.5 - parent: 82 - type: Transform -- uid: 24355 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 72.5,2.5 - parent: 82 - type: Transform -- uid: 24356 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 44.5,-8.5 - parent: 82 - type: Transform -- uid: 24357 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 44.5,-6.5 - parent: 82 - type: Transform -- uid: 24358 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 41.5,-4.5 - parent: 82 - type: Transform -- uid: 24359 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-4.5 - parent: 82 - type: Transform -- uid: 24360 - type: DisposalPipe - components: - - pos: 41.5,0.5 - parent: 82 - type: Transform -- uid: 24361 - type: DisposalPipe - components: - - pos: 41.5,-0.5 - parent: 82 - type: Transform -- uid: 24362 - type: DisposalPipe - components: - - pos: 41.5,-1.5 - parent: 82 - type: Transform -- uid: 24363 - type: DisposalPipe - components: - - pos: 41.5,-2.5 - parent: 82 - type: Transform -- uid: 24364 - type: DisposalPipe - components: - - pos: 41.5,-3.5 - parent: 82 - type: Transform -- uid: 24365 - type: DisposalUnit - components: - - pos: 43.5,-11.5 - parent: 82 - type: Transform -- uid: 24366 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 40.5,2.5 - parent: 82 - type: Transform -- uid: 24367 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 41.5,2.5 - parent: 82 - type: Transform -- uid: 24368 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 40.5,3.5 - parent: 82 - type: Transform -- uid: 24369 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 40.5,4.5 - parent: 82 - type: Transform -- uid: 24370 - type: DisposalTrunk - components: - - pos: 40.5,5.5 - parent: 82 - type: Transform -- uid: 24371 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 27.5,-17.5 - parent: 82 - type: Transform -- uid: 24372 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 27.5,-17.5 - parent: 82 - type: Transform -- uid: 24373 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 27.5,-18.5 - parent: 82 - type: Transform -- uid: 24374 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 27.5,-19.5 - parent: 82 - type: Transform -- uid: 24375 - type: DisposalTrunk - components: - - pos: 27.5,-16.5 - parent: 82 - type: Transform -- uid: 24376 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-20.5 - parent: 82 - type: Transform -- uid: 24377 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-20.5 - parent: 82 - type: Transform -- uid: 24378 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-20.5 - parent: 82 - type: Transform -- uid: 24379 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 82 - type: Transform -- uid: 24380 - type: DisposalJunctionFlipped - components: - - pos: -3.5,-22.5 - parent: 82 - type: Transform -- uid: 24381 - type: DisposalUnit - components: - - pos: -2.5,-22.5 - parent: 82 - type: Transform -- uid: 24382 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-22.5 - parent: 82 - type: Transform -- uid: 24383 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-23.5 - parent: 82 - type: Transform -- uid: 24384 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-24.5 - parent: 82 - type: Transform -- uid: 24385 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 82 - type: Transform -- uid: 24386 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-25.5 - parent: 82 - type: Transform -- uid: 24387 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 82 - type: Transform -- uid: 24388 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-25.5 - parent: 82 - type: Transform -- uid: 24389 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 82 - type: Transform -- uid: 24390 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 82 - type: Transform -- uid: 24391 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 82 - type: Transform -- uid: 24392 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 82 - type: Transform -- uid: 24393 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-26.5 - parent: 82 - type: Transform -- uid: 24394 - type: DisposalUnit - components: - - pos: 17.5,-22.5 - parent: 82 - type: Transform -- uid: 24395 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 82 - type: Transform -- uid: 24396 - type: DisposalPipe - components: - - pos: 17.5,-23.5 - parent: 82 - type: Transform -- uid: 24397 - type: DisposalPipe - components: - - pos: 17.5,-24.5 - parent: 82 - type: Transform -- uid: 24398 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 17.5,-21.5 - parent: 82 - type: Transform -- uid: 24399 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-25.5 - parent: 82 - type: Transform -- uid: 24400 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-25.5 - parent: 82 - type: Transform -- uid: 24401 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-25.5 - parent: 82 - type: Transform -- uid: 24402 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-25.5 - parent: 82 - type: Transform -- uid: 24403 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 82 - type: Transform -- uid: 24404 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 82 - type: Transform -- uid: 24405 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 82 - type: Transform -- uid: 24406 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-25.5 - parent: 82 - type: Transform -- uid: 24407 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-25.5 - parent: 82 - type: Transform -- uid: 24408 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-25.5 - parent: 82 - type: Transform -- uid: 24409 - type: DisposalUnit - components: - - pos: 19.5,-57.5 - parent: 82 - type: Transform -- uid: 24410 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-25.5 - parent: 82 - type: Transform -- uid: 24411 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-25.5 - parent: 82 - type: Transform -- uid: 24412 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 19.5,-57.5 - parent: 82 - type: Transform -- uid: 24413 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-28.5 - parent: 82 - type: Transform -- uid: 24414 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-27.5 - parent: 82 - type: Transform -- uid: 24415 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 19.5,-26.5 - parent: 82 - type: Transform -- uid: 24416 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,50.5 - parent: 82 - type: Transform -- uid: 24417 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 29.5,50.5 - parent: 82 - type: Transform -- uid: 24418 - type: DisposalRouterFlipped - components: - - rot: 1.5707963267948966 rad - pos: 27.5,50.5 - parent: 82 - type: Transform - - tags: - - Science - type: DisposalRouter -- uid: 24419 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: -57.5,41.5 - parent: 82 - type: Transform -- uid: 24420 - type: PosterContrabandDonutCorp - components: - - pos: 62.5,1.5 - parent: 82 - type: Transform -- uid: 24421 - type: PosterLegit12Gauge - components: - - pos: 50.5,-13.5 - parent: 82 - type: Transform -- uid: 24422 - type: SignDirectionalBridge - components: - - pos: 30.49341,21.74334 - parent: 82 - type: Transform -- uid: 24423 - type: SignDirectionalSec - components: - - pos: 30.5,21.5 - parent: 82 - type: Transform -- uid: 24424 - type: SignDirectionalBridge - components: - - pos: 34.5,6.5 - parent: 82 - type: Transform -- uid: 24425 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: 34.5,6 - parent: 82 - type: Transform -- uid: 24426 - type: SignDirectionalSci - components: - - rot: 3.141592653589793 rad - pos: 30.49341,22.24334 - parent: 82 - type: Transform -- uid: 24427 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: 34.5,5.5 - parent: 82 - type: Transform -- uid: 24428 - type: PosterLegitCleanliness - components: - - pos: 41.5,36.5 - parent: 82 - type: Transform -- uid: 24429 - type: PosterLegitGetYourLEGS - components: - - pos: 48.5,30.5 - parent: 82 - type: Transform -- uid: 24430 - type: WallReinforced - components: - - pos: 24.5,80.5 - parent: 82 - type: Transform -- uid: 24431 - type: PosterLegit50thAnniversaryVintageReprint - components: - - pos: 22.5,69.5 - parent: 82 - type: Transform -- uid: 24433 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-50.5 - parent: 82 - type: Transform - - devices: - - 6887 - - 6888 - - 6889 - - 6890 - - 6886 - - 6885 - - 6884 - type: DeviceList -- uid: 24434 - type: PosterContrabandDonutCorp - components: - - pos: 26.5,67.5 - parent: 82 - type: Transform -- uid: 24435 - type: PosterLegitBuild - components: - - pos: 23.5,62.5 - parent: 82 - type: Transform -- uid: 24436 - type: PaperOffice - components: - - pos: 40.34305,29.681519 - parent: 82 - type: Transform -- uid: 24437 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-38.5 - parent: 82 - type: Transform - - devices: - - 6887 - - 6888 - - 6889 - - 6890 - - 6893 - - 6894 - - 6895 - - 6891 - - 6892 - type: DeviceList -- uid: 24438 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 5.5,-36.5 - parent: 82 - type: Transform - - devices: - - 6891 - - 6892 - - 6883 - - 6882 - type: DeviceList -- uid: 24439 - type: PosterLegitCleanliness - components: - - pos: 40.5,16.5 - parent: 82 - type: Transform -- uid: 24440 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-26.5 - parent: 82 - type: Transform - - devices: - - 3608 - - 3607 - type: DeviceList -- uid: 24441 - type: FirelockGlass - components: - - pos: -53.5,-31.5 - parent: 82 - type: Transform -- uid: 24442 - type: FirelockGlass - components: - - pos: -32.5,-33.5 - parent: 82 - type: Transform -- uid: 24443 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-42.5 - parent: 82 - type: Transform - - devices: - - 6893 - - 6894 - - 6895 - - 6890 - - 6889 - - 6888 - - 6887 - - 6891 - - 6892 - - 6905 - - 6904 - - 6903 - - 6902 - type: DeviceList -- uid: 24444 - type: FirelockGlass - components: - - pos: -36.5,-33.5 - parent: 82 - type: Transform -- uid: 24445 - type: FirelockGlass - components: - - pos: -31.5,-33.5 - parent: 82 - type: Transform -- uid: 24446 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -39.5,-33.5 - parent: 82 - type: Transform - - devices: - - 3592 - - 3597 - - 24449 - - 24458 - - 24448 - - 24454 - - 24452 - - 24444 - - 24442 - - 24445 - - 24441 - type: DeviceList -- uid: 24447 - type: FireAlarm - components: - - pos: -32.5,-24.5 - parent: 82 - type: Transform - - devices: - - 24449 - - 3591 - - 3592 - - 3597 - - 3602 - type: DeviceList -- uid: 24448 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-31.5 - parent: 82 - type: Transform -- uid: 24449 - type: FirelockGlass - components: - - pos: -36.5,-29.5 - parent: 82 - type: Transform -- uid: 24450 - type: FireAlarm - components: - - pos: -10.5,-23.5 - parent: 82 - type: Transform - - devices: - - 6896 - - 6897 - - 6898 - - 6893 - - 6894 - - 6895 - - 10479 - - 22600 - - 22770 - - 22513 - - 22625 - - 22620 - type: DeviceList -- uid: 24451 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 9.5,-14.5 - parent: 82 - type: Transform - - devices: - - 8208 - - 8207 - - 10416 - - 10415 - - 21772 - - 8209 - type: DeviceList -- uid: 24452 - type: FirelockGlass - components: - - pos: -37.5,-33.5 - parent: 82 - type: Transform -- uid: 24453 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 82 - type: Transform - - devices: - - 8208 - - 8207 - - 22770 - - 22600 - - 10479 - - 22515 - - 22514 - - 22587 - type: DeviceList -- uid: 24454 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-32.5 - parent: 82 - type: Transform -- uid: 24455 - type: FireAlarm - components: - - pos: -36.5,-16.5 - parent: 82 - type: Transform - - devices: - - 5599 - - 5598 - - 5601 - - 5602 - - 3591 - - 5600 - type: DeviceList -- uid: 24456 - type: FireAlarm - components: - - pos: -10.5,-1.5 - parent: 82 - type: Transform - - devices: - - 22518 - - 22517 - - 22516 - - 22509 - - 22508 - - 22507 - - 22460 - - 22511 - - 22396 - - 22515 - - 22514 - - 22587 - type: DeviceList -- uid: 24457 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-3.5 - parent: 82 - type: Transform - - devices: - - 5603 - - 5604 - - 5605 - - invalid - - 22615 - - 5607 - - 5606 - type: DeviceList -- uid: 24458 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-30.5 - parent: 82 - type: Transform -- uid: 24459 - type: FireAlarm - components: - - pos: -26.5,-0.5 - parent: 82 - type: Transform - - devices: - - 5606 - - 5607 - - 22615 - - invalid - - 22392 - - 22393 - - 22516 - - 22517 - - 22518 - - 10661 - - 10578 - - 10566 - - 23297 - - 2120 - type: DeviceList -- uid: 24460 - type: DisposalPipe - components: - - pos: -24.5,-12.5 - parent: 82 - type: Transform -- uid: 24461 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -20.5,4.5 - parent: 82 - type: Transform - - devices: - - 22504 - - 22503 - - 10694 - - 22500 - - 22501 - - 10661 - - 10578 - - 10566 - type: DeviceList -- uid: 24462 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -11.5,15.5 - parent: 82 - type: Transform - - devices: - - 10697 - - 10695 - - 10454 - - 10455 - - 10456 - - 10469 - - 10470 - - 10477 - type: DeviceList -- uid: 24463 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -17.5,41.5 - parent: 82 - type: Transform - - devices: - - 22399 - - 22400 - - 22401 - - 1795 - - 345 - - 12409 - - 12410 - - 12411 - - 3412 - - 3410 - - 22402 - - 22403 - - 12408 - - 12413 - - 12412 - - 12414 - - 13091 - - 13103 - - 13105 - - 13104 - - 13116 - - 13117 - - 12991 - - 13009 - - 13008 - - 13007 - - 13005 - - 13006 - type: DeviceList -- uid: 24464 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -17.5,22.5 - parent: 82 - type: Transform - - devices: - - 3060 - - 11975 - - 11984 - - 11977 - - 11582 - - 20405 - - 20406 - - 20407 - - 10454 - - 10455 - - 10456 - - 12567 - - 12568 - - 12569 - - 22398 - - 22496 - - 22607 - - invalid - - 10513 - type: DeviceList -- uid: 24465 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-10.5 - parent: 82 - type: Transform - - devices: - - 22393 - - 22392 - - invalid - - 11338 - - 11339 - - 11345 - - 11344 - - 11343 - - 11342 - - 11341 - - 11340 - - 23297 - - 2120 - type: DeviceList -- uid: 24466 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -17.5,51.5 - parent: 82 - type: Transform - - devices: - - 12414 - - 12413 - - 12412 - - 23050 - - 13042 - - 13041 - - 13043 - - 13044 - - 24162 - - 24161 - - 3430 - - 3431 - - 13057 - - 13058 - type: DeviceList -- uid: 24467 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -17.5,42.5 - parent: 82 - type: Transform - - devices: - - 22399 - - 22400 - - 22401 - - 1795 - - 345 - - 12409 - - 12410 - - 12411 - - 3412 - - 3410 - - 22402 - - 22403 - - 12408 - type: DeviceList -- uid: 24468 - type: FireAlarm - components: - - pos: -17.5,34.5 - parent: 82 - type: Transform - - devices: - - 22399 - - 22400 - - 22401 - - 3694 - - 4124 - - 5519 - - 22608 - - 22609 - - 12567 - - 12568 - - 12569 - - 11582 - - 11977 - - 11984 - - 3060 - - 11975 - - invalid - - 22607 - - 22496 - - 22398 - - 6922 - - 6921 - - 10513 - type: DeviceList -- uid: 24469 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -11.5,37.5 - parent: 82 - type: Transform - - devices: - - 3412 - - 3410 - - 1795 - - 345 - - 6921 - - 6922 - type: DeviceList -- uid: 24470 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -24.5,16.5 - parent: 82 - type: Transform - - devices: - - 10697 - - 10695 - - 10454 - - 10455 - - 10456 - - 10469 - - 10470 - - 10477 - type: DeviceList -- uid: 24471 - type: SpawnMobSlothPaperwork - components: - - pos: 29.5,24.5 - parent: 82 - type: Transform -- uid: 24472 - type: TableWood - components: - - pos: 29.5,28.5 - parent: 82 - type: Transform -- uid: 24473 - type: PaperBin5 - components: - - pos: 35.5,21.5 - parent: 82 - type: Transform -- uid: 24474 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 28.5,27.5 - parent: 82 - type: Transform -- uid: 24475 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -21.5,51.5 - parent: 82 - type: Transform - - devices: - - 3431 - - 3430 - - 24162 - - 24161 - - 12414 - - 12413 - - 12412 - type: DeviceList -- uid: 24476 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 28.5,28.5 - parent: 82 - type: Transform -- uid: 24477 - type: TableWood - components: - - pos: 29.5,27.5 - parent: 82 - type: Transform -- uid: 24478 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24479 - type: AirAlarm - components: - - pos: -54.5,-23.5 - parent: 82 - type: Transform - - devices: - - 15476 - - 15474 - - 15475 - - 24581 - - 24441 - type: DeviceList -- uid: 24480 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24481 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 28.5,24.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24482 - type: CableApcExtension - components: - - pos: -54.5,-2.5 - parent: 82 - type: Transform -- uid: 24483 - type: CableApcExtension - components: - - pos: -52.5,-2.5 - parent: 82 - type: Transform -- uid: 24484 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-46.5 - parent: 82 - type: Transform - - devices: - - 24486 - - 14225 - - 14217 - - 14223 - - 14218 - - 14224 - - 24495 - - 22602 - - 22601 - - 22599 - - 6881 - - 6880 - - 6879 - type: DeviceList -- uid: 24485 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-59.5 - parent: 82 - type: Transform - - devices: - - 14237 - - 14236 - - 24495 - - 22602 - - 22601 - - 22599 - type: DeviceList -- uid: 24486 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-33.5 - parent: 82 - type: Transform -- uid: 24487 - type: AirSensor - components: - - pos: -34.5,-20.5 - parent: 82 - type: Transform -- uid: 24488 - type: CableApcExtension - components: - - pos: -54.5,-1.5 - parent: 82 - type: Transform -- uid: 24489 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -24.5,20.5 - parent: 82 - type: Transform - - devices: - - 24579 - - 13405 - - 13404 - - 24493 - - 10697 - - 10695 - - 10454 - - 10455 - - 10456 - - 10469 - - 10470 - - 10477 - type: DeviceList -- uid: 24490 - type: AirAlarm - components: - - pos: -29.5,6.5 - parent: 82 - type: Transform - - devices: - - 24493 - - 13455 - - 13456 - - 13618 - - 13617 - - 22504 - - 22503 - - 10694 - - 22500 - - 22501 - - 10661 - - 10578 - - 10566 - type: DeviceList -- uid: 24491 - type: AirAlarm - components: - - pos: -31.5,-24.5 - parent: 82 - type: Transform - - devices: - - 14880 - - 14837 - - 24487 - - 15411 - - 15410 - - 24449 - - 3591 - - 3592 - - 3597 - - 3602 - type: DeviceList -- uid: 24492 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: -22.5,18.5 - parent: 82 - type: Transform -- uid: 24493 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: -22.5,11.5 - parent: 82 - type: Transform -- uid: 24494 - type: CableApcExtension - components: - - pos: -53.5,-2.5 - parent: 82 - type: Transform -- uid: 24495 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-56.5 - parent: 82 - type: Transform -- uid: 24496 - type: PosterLegitEnlist - components: - - pos: 47.5,-10.5 - parent: 82 - type: Transform -- uid: 24497 - type: PosterContrabandFunPolice - components: - - pos: 53.5,0.5 - parent: 82 - type: Transform -- uid: 24498 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-8.5 - parent: 82 - type: Transform -- uid: 24499 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-7.5 - parent: 82 - type: Transform - - devices: - - 19285 - - 19286 - - 19289 - - 19290 - - 22572 - - 19287 - - 19915 - - 22441 - - 19917 - - 19916 - - 19265 - - 22577 - - 10299 - - 22381 - - 8859 - - 22380 - - 22581 - type: DeviceList -- uid: 24500 - type: PosterLegitSpaceCops - components: - - pos: 37.5,1.5 - parent: 82 - type: Transform -- uid: 24501 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -39.5,28.5 - parent: 82 - type: Transform -- uid: 24502 - type: AirAlarm - components: - - pos: 79.5,11.5 - parent: 82 - type: Transform - - devices: - - 19889 - - 19891 - - 19890 - - 19892 - - 19885 - - 19888 - - 24503 - - 5618 - - 5611 - - 5610 - - 5609 - type: DeviceList -- uid: 24503 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: 80.5,3.5 - parent: 82 - type: Transform -- uid: 24504 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 75.5,1.5 - parent: 82 - type: Transform - - devices: - - 19843 - - 19844 - - 24522 - - invalid - - invalid - - invalid - - invalid - - 5623 - - 5622 - - 5619 - - invalid - - invalid - - 5618 - - 5611 - - 5610 - - 5609 - - invalid - - invalid - type: DeviceList -- uid: 24505 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -40.5,28.5 - parent: 82 - type: Transform -- uid: 24506 - type: AirAlarm - components: - - pos: 44.5,5.5 - parent: 82 - type: Transform - - devices: - - 19167 - - 19206 - - 19168 - - 24507 - - 22471 - - 22473 - - 22605 - - 22779 - - 22778 - - 22777 - - 22391 - - 10396 - - 22534 - - 22390 - - 10395 - type: DeviceList -- uid: 24507 - type: AirSensor - components: - - pos: 51.5,3.5 - parent: 82 - type: Transform -- uid: 24508 - type: AirAlarm - components: - - pos: 62.5,5.5 - parent: 82 - type: Transform - - devices: - - 19840 - - 19841 - - 24507 - - 24522 - - 10565 - - 22769 - - 22774 - - 22773 - - 22772 - - 10489 - type: DeviceList -- uid: 24509 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: -4.5,-10.5 - parent: 82 - type: Transform -- uid: 24510 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-19.5 - parent: 82 - type: Transform - - devices: - - 13884 - - 13885 - - invalid - - 24516 - - 22597 - - 22598 - - 22596 - - 5523 - - 5522 - - 5521 - - 24514 - - 24511 - - 6876 - - 6877 - - 6878 - type: DeviceList -- uid: 24511 - type: FirelockGlass - components: - - pos: 23.5,-20.5 - parent: 82 - type: Transform -- uid: 24512 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 8.5,-14.5 - parent: 82 - type: Transform - - devices: - - 13770 - - 13769 - - 13767 - - 13768 - - 13947 - - 13946 - - 13955 - - 13954 - - 13949 - - 13948 - - 24509 - - 24516 - - 8208 - - 8207 - - 10416 - - 10415 - - 21772 - - 8209 - type: DeviceList -- uid: 24513 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-8.5 - parent: 82 - type: Transform - - devices: - - 19229 - - 19226 - - 19227 - - 19228 - - 19264 - - 19279 - - 24498 - - 19265 - - 10307 - - 10320 - - 10393 - - 22383 - - 22382 - - 10394 - - 22386 - - 22388 - - 22387 - - 22389 - type: DeviceList -- uid: 24514 - type: FirelockGlass - components: - - pos: 23.5,-19.5 - parent: 82 - type: Transform -- uid: 24515 - type: AirAlarm - components: - - pos: 27.5,-24.5 - parent: 82 - type: Transform - - devices: - - invalid - - 13943 - - 13942 - type: DeviceList -- uid: 24516 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: 19.5,-10.5 - parent: 82 - type: Transform -- uid: 24517 - type: AirAlarm - components: - - pos: 8.5,-33.5 - parent: 82 - type: Transform - - devices: - - 14677 - - 14689 - - 14691 - - 14685 - - 14686 - - 14693 - - 14694 - - 14692 - - 14690 - - 14679 - - 14687 - - 14688 - - 14678 - - 6891 - - 6892 - - 6883 - - 6882 - type: DeviceList -- uid: 24518 - type: AirSensor - components: - - pos: -5.5,-56.5 - parent: 82 - type: Transform -- uid: 24519 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-20.5 - parent: 82 - type: Transform - - devices: - - 13869 - - 13868 - - 13849 - - 13848 - - 24514 - - 24511 - type: DeviceList -- uid: 24520 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-49.5 - parent: 82 - type: Transform -- uid: 24521 - type: AirAlarm - components: - - pos: -2.5,-59.5 - parent: 82 - type: Transform - - devices: - - 14810 - - 14811 - - 24518 - - 6887 - - 6888 - - 6889 - - 6890 - - 6886 - - 6885 - - 6884 - type: DeviceList -- uid: 24522 - type: AirSensor - components: - - pos: 67.5,3.5 - parent: 82 - type: Transform -- uid: 24523 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-40.5 - parent: 82 - type: Transform - - devices: - - 14783 - - 14755 - - 1490 - - 24520 - - 6893 - - 6894 - - 6895 - - 6890 - - 6889 - - 6888 - - 6887 - - 6891 - - 6892 - type: DeviceList -- uid: 24524 - type: AirAlarm - components: - - pos: -45.5,-22.5 - parent: 82 - type: Transform - - devices: - - 15401 - - 15273 - - 15400 - - 4455 - - 3608 - - 3607 - type: DeviceList -- uid: 24525 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-35.5 - parent: 82 - type: Transform - - devices: - - 15544 - - 14997 - - 14907 - - 14886 - - 14896 - - 14895 - type: DeviceList -- uid: 24526 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 28.5,-36.5 - parent: 82 - type: Transform - - devices: - - 13934 - - 5525 - - invalid - - 24486 - type: DeviceList -- uid: 24527 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -11.5,16.5 - parent: 82 - type: Transform - - devices: - - 13423 - - 13422 - - 24492 - type: DeviceList -- uid: 24528 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-41.5 - parent: 82 - type: Transform - - devices: - - 14744 - - 14724 - - 6893 - - 6894 - - 6895 - - 6890 - - 6889 - - 6888 - - 6887 - - 6891 - - 6892 - - 6905 - - 6904 - - 6903 - - 6902 - type: DeviceList -- uid: 24529 - type: SignalButton - components: - - pos: 29.5,11.5 - parent: 82 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10071 - - port: Toggle - uid: 10065 - - port: Toggle - uid: 10066 - - port: Toggle - uid: 10067 - - port: Toggle - uid: 10068 - - port: Toggle - uid: 10069 - - port: Toggle - uid: 10070 - type: SignalTransmitter -- uid: 24530 - type: AirAlarm - components: - - pos: -38.5,-29.5 - parent: 82 - type: Transform - - devices: - - 15411 - - 15410 - - 24581 - - invalid - - 15503 - - 3592 - - 3597 - - 24449 - - 24458 - - 24448 - - 24454 - - 24452 - - 24444 - - 24442 - - 24445 - - 24441 - type: DeviceList -- uid: 24531 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: -28.5,57.5 - parent: 82 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 24604 - - port: Toggle - uid: 24532 - - port: Toggle - uid: 24537 - - port: Toggle - uid: 24533 - - port: Toggle - uid: 24553 - type: SignalTransmitter -- uid: 24532 - type: ShuttersRadiationOpen - components: - - pos: -26.5,60.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -407977.06 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24531 - type: SignalReceiver -- uid: 24533 - type: ShuttersRadiationOpen - components: - - pos: -24.5,60.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -407977.06 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24531 - type: SignalReceiver -- uid: 24534 - type: DrinkMugOne - components: - - pos: 59.572353,0.7444 - parent: 82 - type: Transform -- uid: 24535 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -40.5,-32.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24536 - type: DrinkMugRainbow - components: - - pos: 27.093472,36.22483 - parent: 82 - type: Transform -- uid: 24537 - type: ShuttersRadiationOpen - components: - - pos: -25.5,60.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -407977.06 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24531 - type: SignalReceiver -- uid: 24538 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 30.5,41.5 - parent: 82 - type: Transform -- uid: 24539 - type: Poweredlight - components: - - pos: 18.5,31.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24540 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-34.5 - parent: 82 - type: Transform - - devices: - - 6902 - - 6903 - - 6901 - - 6900 - - 6899 - - 3602 - - 24458 - - 24448 - - 24454 - type: DeviceList -- uid: 24541 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 5.5,29.5 - parent: 82 - type: Transform - - devices: - - 10541 - - 10532 - - 11591 - - 11592 - - 12407 - - 12406 - - 11593 - - 22398 - - 22496 - - 22607 - type: DeviceList -- uid: 24542 - type: FirelockGlass - components: - - pos: 31.5,18.5 - parent: 82 - type: Transform -- uid: 24543 - type: FirelockGlass - components: - - pos: 32.5,18.5 - parent: 82 - type: Transform -- uid: 24544 - type: FireAlarm - components: - - pos: 37.5,31.5 - parent: 82 - type: Transform - - devices: - - 22462 - - 24543 - - 24542 - - 10493 - - 10492 - - 10480 - - 10445 - - 22776 - - 22775 - - 22472 - - 10444 - - 10446 - - 10447 - - 10449 - - 10448 - - 24214 - type: DeviceList -- uid: 24545 - type: FireAlarm - components: - - pos: -39.5,32.5 - parent: 82 - type: Transform - - devices: - - 5519 - - 4124 - - 3694 - - 24501 - - 24505 - - 13301 - - 13300 - - 13220 - type: DeviceList -- uid: 24546 - type: DrinkMugMoebius - components: - - pos: 26.412918,36.766495 - parent: 82 - type: Transform -- uid: 24547 - type: DrinkMugDog - components: - - pos: 27.274029,35.58594 - parent: 82 - type: Transform -- uid: 24548 - type: GasVentScrubber - components: - - pos: 22.5,50.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24549 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24550 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 17.5,59.5 - parent: 82 - type: Transform - - devices: - - 21421 - - 6939 - - invalid - - 21409 - - 20465 - - 20442 - - 21613 - - 25437 - - 25438 - - 10507 - type: DeviceList -- uid: 24551 - type: DrinkMugMetal - components: - - pos: 59.225132,0.7582884 - parent: 82 - type: Transform -- uid: 24552 - type: DrinkMugHeart - components: - - pos: 59.1418,0.4805112 - parent: 82 - type: Transform -- uid: 24553 - type: ShuttersRadiationOpen - components: - - pos: -23.5,60.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -407977.06 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24531 - type: SignalReceiver -- uid: 24554 - type: Grille - components: - - pos: -20.5,-47.5 - parent: 82 - type: Transform -- uid: 24555 - type: Grille - components: - - pos: -19.5,-47.5 - parent: 82 - type: Transform -- uid: 24556 - type: AsteroidRock - components: - - pos: -17.5,-49.5 - parent: 82 - type: Transform -- uid: 24557 - type: ReinforcedWindow - components: - - pos: -31.5,-47.5 - parent: 82 - type: Transform -- uid: 24558 - type: ReinforcedWindow - components: - - pos: -29.5,-47.5 - parent: 82 - type: Transform -- uid: 24559 - type: ReinforcedWindow - components: - - pos: -51.5,-48.5 - parent: 82 - type: Transform -- uid: 24560 - type: Grille - components: - - pos: -53.5,-48.5 - parent: 82 - type: Transform -- uid: 24566 - type: Grille - components: - - pos: -52.5,-48.5 - parent: 82 - type: Transform -- uid: 24567 - type: Grille - components: - - pos: -51.5,-48.5 - parent: 82 - type: Transform -- uid: 24568 - type: PaperBin5 - components: - - pos: -13.5,39.5 - parent: 82 - type: Transform -- uid: 24569 - type: Grille - components: - - pos: -30.5,-47.5 - parent: 82 - type: Transform -- uid: 24570 - type: Grille - components: - - pos: -29.5,-47.5 - parent: 82 - type: Transform -- uid: 24571 - type: AsteroidRock - components: - - pos: -18.5,-49.5 - parent: 82 - type: Transform -- uid: 24572 - type: Grille - components: - - pos: -18.5,-47.5 - parent: 82 - type: Transform -- uid: 24573 - type: ReinforcedWindow - components: - - pos: -19.5,-47.5 - parent: 82 - type: Transform -- uid: 24574 - type: BookRandom - components: - - pos: 29.559875,28.553349 - parent: 82 - type: Transform -- uid: 24575 - type: Bookshelf - components: - - pos: 25.5,27.5 - parent: 82 - type: Transform -- uid: 24576 - type: BoxFolderBlack - components: - - pos: 37.418285,18.496315 - parent: 82 - type: Transform -- uid: 24577 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -18.5,22.5 - parent: 82 - type: Transform - - devices: - - 13134 - - 18838 - - 24579 - - 3060 - - 11975 - - 11984 - - 11977 - - 11582 - - 20405 - - 20406 - - 20407 - - 10454 - - 10455 - - 10456 - - 12567 - - 12568 - - 12569 - - 22398 - - 22496 - - 22607 - - invalid - - 10513 - type: DeviceList -- uid: 24578 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 4.5,45.5 - parent: 82 - type: Transform - - devices: - - 12970 - - 12969 - type: DeviceList -- uid: 24579 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: -22.5,25.5 - parent: 82 - type: Transform -- uid: 24580 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-29.5 - parent: 82 - type: Transform - - devices: - - 14836 - - 14868 - - 14823 - - 14822 - - 14854 - - 6902 - - 6903 - - 6901 - - 6900 - - 6899 - - 3602 - - 24458 - - 24448 - - 24454 - type: DeviceList -- uid: 24581 - type: AirSensor - components: - - pos: -48.5,-31.5 - parent: 82 - type: Transform -- uid: 24582 - type: FireAlarm - components: - - pos: 24.5,-1.5 - parent: 82 - type: Transform - - devices: - - 5851 - - 5852 - - 5853 - - 22469 - - 22468 - - 22465 - type: DeviceList -- uid: 24583 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-35.5 - parent: 82 - type: Transform - - devices: - - 22411 - - 22657 - - 22409 - - 22410 - type: DeviceList -- uid: 24584 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-30.5 - parent: 82 - type: Transform - - devices: - - 6881 - - 6880 - - 6879 - - 6883 - - 6882 - - 22411 - - 22657 - - 22410 - - 22409 - - 5523 - - 5522 - - 5521 - type: DeviceList -- uid: 24585 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 34.5,16.5 - parent: 82 - type: Transform - - devices: - - 10476 - - 10475 - - 10474 - - 6919 - - 18971 - - 18914 - - invalid - - 22462 - - 24542 - - 24543 - type: DeviceList -- uid: 24586 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -7.5,49.5 - parent: 82 - type: Transform - - devices: - - 22493 - - 22640 - - 22639 - - 22585 - - 10453 - - 10443 - - 10442 - - 10534 - type: DeviceList -- uid: 24587 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-51.5 - parent: 82 - type: Transform - - devices: - - 22602 - - 22601 - - 22599 - - 6881 - - 6880 - - 6879 - type: DeviceList -- uid: 24588 - type: FireAlarm - components: - - pos: 43.5,38.5 - parent: 82 - type: Transform - - devices: - - 22470 - - 10444 - - 10981 - - invalid - - 1185 - - 1404 - - 1549 - type: DeviceList -- uid: 24589 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 40.5,22.5 - parent: 82 - type: Transform - - devices: - - 10457 - - 10448 - - 1549 - - 1404 - - 10450 - - 10451 - - 11587 - - 11453 - - 11448 - - 22611 - - 10984 - - 1185 - - invalid - type: DeviceList -- uid: 24590 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 4.5,-5.5 - parent: 82 - type: Transform - - devices: - - 22460 - - 22511 - - 22396 - - 22465 - - 22468 - - 22469 - type: DeviceList -- uid: 24591 - type: FireAlarm - components: - - pos: 6.5,-22.5 - parent: 82 - type: Transform - - devices: - - 22513 - - 22625 - - 22620 - - 22597 - - 22598 - - 22596 - type: DeviceList -- uid: 24592 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 24.5,6.5 - parent: 82 - type: Transform - - devices: - - 10302 - - 10301 - - 22781 - - 22623 - - 22458 - - 10298 - - 10297 - type: DeviceList -- uid: 24593 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 26.5,4.5 - parent: 82 - type: Transform - - devices: - - 22614 - - 22613 - - 22612 - - 18999 - - 19245 - - 18986 - - 10297 - - 10298 - - 22458 - - 22623 - - 18914 - - 18971 - - 6919 - type: DeviceList -- uid: 24594 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 22.5,72.5 - parent: 82 - type: Transform - - devices: - - 22576 - - 10980 - type: DeviceList -- uid: 24595 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 34.5,39.5 - parent: 82 - type: Transform - - devices: - - 22776 - - 22775 - - 22472 - - 22470 - - 17824 - - 18912 - - 18913 - type: DeviceList -- uid: 24596 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 27.5,72.5 - parent: 82 - type: Transform - - devices: - - 10976 - - 10979 - type: DeviceList -- uid: 24597 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 25.5,52.5 - parent: 82 - type: Transform - - devices: - - 24548 - - 12879 - - 12754 - - invalid - - 22877 - - 22485 - - 22484 - - 22483 - - 22474 - - 22475 - - 22476 - - 10496 - - 10497 - - 22490 - - 22491 - - 12519 - type: DeviceList -- uid: 24598 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -54.5,40.5 - parent: 82 - type: Transform - - devices: - - 22405 - - 22406 - - 22606 - - 22407 - - 12563 - - 12564 - - 13172 - - 13166 - - 13199 - - 22590 - - 22743 - type: DeviceList -- uid: 24599 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 22.5,49.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24600 - type: FireAlarm - components: - - pos: 24.5,62.5 - parent: 82 - type: Transform - - devices: - - 10497 - - 10496 - - 10507 - type: DeviceList -- uid: 24601 - type: FireAlarm - components: - - pos: 22.5,52.5 - parent: 82 - type: Transform - - devices: - - 10490 - - 22483 - - 22484 - - 22485 - - 6918 - - 15996 - - 16086 - - 10506 - - 10505 - - 10504 - type: DeviceList -- uid: 24602 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 25.5,53.5 - parent: 82 - type: Transform - - devices: - - 22485 - - 22484 - - 22483 - - 22474 - - 22475 - - 22476 - - invalid - - 10496 - - 10497 - - 22490 - - 22491 - type: DeviceList -- uid: 24603 - type: CableApcExtension - components: - - pos: -12.5,25.5 - parent: 82 - type: Transform -- uid: 24604 - type: ShuttersRadiationOpen - components: - - pos: -27.5,60.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -407977.06 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24531 - type: SignalReceiver -- uid: 24605 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-20.5 - parent: 82 - type: Transform - - devices: - - 22597 - - 22598 - - 22596 - - 5523 - - 5522 - - 5521 - - 24514 - - 24511 - - 6876 - - 6877 - - 6878 - type: DeviceList -- uid: 24606 - type: FireAlarm - components: - - pos: 26.5,-15.5 - parent: 82 - type: Transform - - devices: - - 24514 - - 24511 - type: DeviceList -- uid: 24607 - type: SignDirectionalSolar - components: - - pos: -45.5,28.5 - parent: 82 - type: Transform -- uid: 24608 - type: SignDirectionalSolar - components: - - pos: -35.5,28.5 - parent: 82 - type: Transform -- uid: 24609 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: -55.5,-19.5 - parent: 82 - type: Transform -- uid: 24610 - type: SignDirectionalSolar - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-6.5 - parent: 82 - type: Transform -- uid: 24611 - type: SignDirectionalSolar - components: - - pos: -47.5,24.5 - parent: 82 - type: Transform -- uid: 24612 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: -47.5,7.5 - parent: 82 - type: Transform -- uid: 24613 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: -49.5,-4.5 - parent: 82 - type: Transform -- uid: 24614 - type: SignDirectionalSolar - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-45.5 - parent: 82 - type: Transform -- uid: 24615 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-13.5 - parent: 82 - type: Transform - - devices: - - 5597 - - 5596 - - 5599 - - 5598 - - 11339 - - 11338 - - 13545 - - 13553 - - 13526 - type: DeviceList -- uid: 24616 - type: SignDirectionalSolar - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-24.5 - parent: 82 - type: Transform -- uid: 24617 - type: SignDirectionalSolar - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-21.5 - parent: 82 - type: Transform -- uid: 24618 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: -58.5,-33.5 - parent: 82 - type: Transform -- uid: 24619 - type: SignDirectionalSolar - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-14.5 - parent: 82 - type: Transform -- uid: 24620 - type: SignDirectionalSolar - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-5.5 - parent: 82 - type: Transform -- uid: 24621 - type: SignDirectionalSolar - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-18.5 - parent: 82 - type: Transform -- uid: 24622 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.523176,-33.318348 - parent: 82 - type: Transform -- uid: 24623 - type: SignDirectionalSolar - components: - - rot: -1.5707963267948966 rad - pos: -50.5,12.5 - parent: 82 - type: Transform -- uid: 24624 - type: SignDirectionalSolar - components: - - pos: -53.5,-19.5 - parent: 82 - type: Transform -- uid: 24625 - type: Bucket - components: - - pos: 28.537066,-32.387794 - parent: 82 - type: Transform - - tags: [] - type: Tag -- uid: 24626 - type: CableHV - components: - - pos: -26.5,18.5 - parent: 82 - type: Transform -- uid: 24627 - type: FigureSpawner - components: - - pos: 28.5,-33.5 - parent: 82 - type: Transform -- uid: 24628 - type: PaperOffice - components: - - pos: 40.446205,29.607845 - parent: 82 - type: Transform -- uid: 24629 - type: OreBag - components: - - pos: 47.505318,32.619854 - parent: 82 - type: Transform -- uid: 24630 - type: SignDirectionalCryo - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-40.5 - parent: 82 - type: Transform -- uid: 24631 - type: DiceBag - components: - - pos: 27.398176,-33.221127 - parent: 82 - type: Transform -- uid: 24632 - type: ClothingHandsGlovesColorYellow - components: - - pos: -16.583656,36.51174 - parent: 82 - type: Transform -- uid: 24633 - type: RandomFoodSingle - components: - - pos: 29.5,-32.5 - parent: 82 - type: Transform -- uid: 24634 - type: SignDirectionalCryo - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-46.5 - parent: 82 - type: Transform -- uid: 24635 - type: SignAi - components: - - pos: 18.5,-58.5 - parent: 82 - type: Transform -- uid: 24636 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: -3.4905562,-36.255318 - parent: 82 - type: Transform -- uid: 24637 - type: SignDirectionalEvac - components: - - rot: -1.5707963267948966 rad - pos: -6.509681,-5.98337 - parent: 82 - type: Transform -- uid: 24638 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: -2.5158763,-21.033897 - parent: 82 - type: Transform -- uid: 24639 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: -3.4960914,-26.265625 - parent: 82 - type: Transform -- uid: 24640 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 22.500452,-22.503582 - parent: 82 - type: Transform -- uid: 24641 - type: SignDirectionalDorms - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-36.5 - parent: 82 - type: Transform -- uid: 24642 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: -3.5,-48.5 - parent: 82 - type: Transform -- uid: 24643 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: 16.500795,-1.7474737 - parent: 82 - type: Transform -- uid: 24644 - type: SignDirectionalBar - components: - - rot: 3.141592653589793 rad - pos: -2.5129623,-21.739693 - parent: 82 - type: Transform -- uid: 24645 - type: SignDirectionalEng - components: - - rot: 3.141592653589793 rad - pos: -2.5129623,-21.267471 - parent: 82 - type: Transform -- uid: 24646 - type: SignDirectionalBar - components: - - rot: -1.5707963267948966 rad - pos: -1.4938674,-1.2752509 - parent: 82 - type: Transform -- uid: 24647 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: -1.4938674,-1.7474737 - parent: 82 - type: Transform -- uid: 24648 - type: SignDirectionalBridge - components: - - pos: 16.500795,-1.2752509 - parent: 82 - type: Transform -- uid: 24649 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-10.5 - parent: 82 - type: Transform -- uid: 24650 - type: PowerCellRecharger - components: - - pos: -2.5,-47.5 - parent: 82 - type: Transform -- uid: 24651 - type: SignDirectionalSupply - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 82 - type: Transform -- uid: 24652 - type: SignDirectionalMed - components: - - pos: -6.505836,-5.7457123 - parent: 82 - type: Transform -- uid: 24653 - type: SignDirectionalHop - components: - - rot: 3.141592653589793 rad - pos: -6.505836,-5.2734895 - parent: 82 - type: Transform -- uid: 24654 - type: SignDirectionalBar - components: - - rot: 1.5707963267948966 rad - pos: -39.504257,-5.2575016 - parent: 82 - type: Transform -- uid: 24655 - type: SignDirectionalHydro - components: - - pos: -39.504257,-5.7297244 - parent: 82 - type: Transform -- uid: 24656 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -20.508345,-1.2679865 - parent: 82 - type: Transform -- uid: 24657 - type: SignDirectionalSupply - components: - - rot: 1.5707963267948966 rad - pos: -20.51322,-1.7387576 - parent: 82 - type: Transform -- uid: 24658 - type: SignDirectionalHop - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-1.5 - parent: 82 - type: Transform -- uid: 24659 - type: SignDirectionalBar - components: - - pos: -24.500715,-1.2540972 - parent: 82 - type: Transform -- uid: 24660 - type: SignDirectionalHydro - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-1.5 - parent: 82 - type: Transform -- uid: 24661 - type: SignDirectionalBridge - components: - - pos: -6.5,-5.5 - parent: 82 - type: Transform -- uid: 24662 - type: SignDirectionalEng - components: - - rot: 3.141592653589793 rad - pos: -24.494947,8.735263 - parent: 82 - type: Transform -- uid: 24663 - type: SignDirectionalBar - components: - - pos: -24.486717,8.257704 - parent: 82 - type: Transform -- uid: 24664 - type: SignDirectionalChapel - components: - - rot: 3.141592653589793 rad - pos: -24.5,8.5 - parent: 82 - type: Transform -- uid: 24665 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: -27.5,19.5 - parent: 82 - type: Transform -- uid: 24666 - type: SignDirectionalEvac - components: - - rot: -1.5707963267948966 rad - pos: -38.5,32.5 - parent: 82 - type: Transform -- uid: 24667 - type: SignDirectionalHop - components: - - pos: -24.491165,8.017256 - parent: 82 - type: Transform -- uid: 24668 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: -2.5014286,32.268227 - parent: 82 - type: Transform -- uid: 24669 - type: SignDirectionalChapel - components: - - rot: 1.5707963267948966 rad - pos: -38.501785,32.72377 - parent: 82 - type: Transform -- uid: 24670 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: -38.487896,32.265434 - parent: 82 - type: Transform -- uid: 24671 - type: SignDirectionalEng - components: - - rot: 3.141592653589793 rad - pos: -24.500715,-1.7540972 - parent: 82 - type: Transform -- uid: 24672 - type: SignDirectionalSupply - components: - - rot: 1.5707963267948966 rad - pos: -24.503948,28.724228 - parent: 82 - type: Transform -- uid: 24673 - type: SignDirectionalSci - components: - - rot: 3.141592653589793 rad - pos: -2.5,32.5 - parent: 82 - type: Transform -- uid: 24674 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: -24.5,28.5 - parent: 82 - type: Transform -- uid: 24675 - type: SignDirectionalMed - components: - - rot: -1.5707963267948966 rad - pos: 21.493452,-6.0042367 - parent: 82 - type: Transform -- uid: 24676 - type: SignDirectionalBar - components: - - pos: -20.497175,28.252007 - parent: 82 - type: Transform -- uid: 24677 - type: SignDirectionalBar - components: - - pos: -6.5036244,37.736137 - parent: 82 - type: Transform -- uid: 24678 - type: SignDirectionalEng - components: - - rot: 3.141592653589793 rad - pos: -20.5,28.5 - parent: 82 - type: Transform -- uid: 24679 - type: SignDirectionalMed - components: - - pos: -6.5078015,37.2589 - parent: 82 - type: Transform -- uid: 24680 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: -7.510843,48.7376 - parent: 82 - type: Transform -- uid: 24681 - type: SignDirectionalJanitor - components: - - rot: -1.5707963267948966 rad - pos: 34.497368,52.731476 - parent: 82 - type: Transform -- uid: 24682 - type: SignDirectionalBridge - components: - - pos: 34.50135,52.26771 - parent: 82 - type: Transform -- uid: 24683 - type: SignDirectionalEvac - components: - - rot: -1.5707963267948966 rad - pos: -2.5026336,32.739872 - parent: 82 - type: Transform -- uid: 24684 - type: SignDirectionalJanitor - components: - - rot: 1.5707963267948966 rad - pos: -6.5,37.5 - parent: 82 - type: Transform -- uid: 24685 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: -7.5,48.5 - parent: 82 - type: Transform -- uid: 24686 - type: SignDirectionalGravity - components: - - rot: 3.141592653589793 rad - pos: -2.5,52.5 - parent: 82 - type: Transform -- uid: 24687 - type: SignDirectionalSupply - components: - - pos: 30.499022,52.27005 - parent: 82 - type: Transform -- uid: 24688 - type: SignDirectionalSci - components: - - rot: 3.141592653589793 rad - pos: 30.499022,52.74227 - parent: 82 - type: Transform -- uid: 24689 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: 30.5,52.5 - parent: 82 - type: Transform -- uid: 24690 - type: SignDirectionalSec - components: - - pos: 34.5,52.5 - parent: 82 - type: Transform -- uid: 24691 - type: SignDirectionalGravity - components: - - rot: 3.141592653589793 rad - pos: 3.5,52.5 - parent: 82 - type: Transform -- uid: 24692 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 18.498802,-33.04093 - parent: 82 - type: Transform -- uid: 24693 - type: SignDirectionalSec - components: - - pos: 42.5,5.5 - parent: 82 - type: Transform -- uid: 24694 - type: SignDirectionalDorms - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-33.5 - parent: 82 - type: Transform -- uid: 24695 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: 18.498802,-33.271515 - parent: 82 - type: Transform -- uid: 24696 - type: SignSecurity - components: - - pos: 48.5,1.5 - parent: 82 - type: Transform -- uid: 24697 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: 22.504911,-22.978252 - parent: 82 - type: Transform -- uid: 24698 - type: SignDirectionalMed - components: - - rot: -1.5707963267948966 rad - pos: 22.49569,-23.21043 - parent: 82 - type: Transform -- uid: 24699 - type: SignDirectionalLibrary - components: - - rot: 3.141592653589793 rad - pos: 22.488508,-22.26992 - parent: 82 - type: Transform -- uid: 24700 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: 22.500738,-22.742142 - parent: 82 - type: Transform -- uid: 24701 - type: SignSecurity - components: - - pos: 42.5,1.5 - parent: 82 - type: Transform -- uid: 24702 - type: SignDirectionalMed - components: - - rot: -1.5707963267948966 rad - pos: 18.489573,-33.74092 - parent: 82 - type: Transform -- uid: 24703 - type: SignDirectionalLibrary - components: - - rot: -1.5707963267948966 rad - pos: 30.5,29.5 - parent: 82 - type: Transform -- uid: 24704 - type: SignDirectionalMed - components: - - rot: -1.5707963267948966 rad - pos: -3.4905562,-36.72754 - parent: 82 - type: Transform -- uid: 24705 - type: SignDirectionalDorms - components: - - pos: 21.500696,-5.756882 - parent: 82 - type: Transform -- uid: 24706 - type: SignDirectionalHop - components: - - rot: -1.5707963267948966 rad - pos: 21.504448,-5.2618785 - parent: 82 - type: Transform -- uid: 24707 - type: SignDirectionalSupply - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-5.5 - parent: 82 - type: Transform -- uid: 24708 - type: SignDirectionalDorms - components: - - pos: -3.4960914,-26.737846 - parent: 82 - type: Transform -- uid: 24709 - type: RandomPosterContraband - components: - - pos: -10.5,-54.5 - parent: 82 - type: Transform -- uid: 24710 - type: SignDirectionalBridge - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-10.5 - parent: 82 - type: Transform -- uid: 24711 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: -2.5,-21.5 - parent: 82 - type: Transform -- uid: 24712 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,21.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24713 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 2.5,26.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24714 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: -7.5,17.5 - parent: 82 - type: Transform -- uid: 24715 - type: Table - components: - - pos: -7.5,16.5 - parent: 82 - type: Transform -- uid: 24716 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,25.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24717 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 12.5,26.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24718 - type: DrinkMugHeart - components: - - pos: -7.345076,16.70195 - parent: 82 - type: Transform -- uid: 24719 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: -55.5,-45.5 - parent: 82 - type: Transform -- uid: 24720 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: -24.503958,-1.0274024 - parent: 82 - type: Transform -- uid: 24721 - type: SignDirectionalHop - components: - - rot: 3.141592653589793 rad - pos: -3.503631,-48.26881 - parent: 82 - type: Transform -- uid: 24722 - type: RandomPainting - components: - - pos: -10.5,-50.5 - parent: 82 - type: Transform -- uid: 24723 - type: SignSecurearea - components: - - pos: 18.5,-66.5 - parent: 82 - type: Transform -- uid: 24724 - type: SignDirectionalDorms - components: - - rot: 3.141592653589793 rad - pos: -3.503631,-48.74103 - parent: 82 - type: Transform -- uid: 24725 - type: PaintingTheSonOfMan - components: - - pos: -7.5,-47.5 - parent: 82 - type: Transform -- uid: 24726 - type: PosterContrabandClown - components: - - pos: -7.5,-50.5 - parent: 82 - type: Transform -- uid: 24727 - type: SignSecurearea - components: - - pos: 22.5,-66.5 - parent: 82 - type: Transform -- uid: 24728 - type: SignSpace - components: - - pos: 20.5,-66.5 - parent: 82 - type: Transform -- uid: 24729 - type: SignAi - components: - - pos: 22.5,-58.5 - parent: 82 - type: Transform -- uid: 24730 - type: RandomPosterContraband - components: - - pos: -10.5,-46.5 - parent: 82 - type: Transform -- uid: 24731 - type: SignDirectionalMed - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 82 - type: Transform -- uid: 24732 - type: SignDirectionalHop - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-5.5 - parent: 82 - type: Transform -- uid: 24733 - type: SignDirectionalEvac - components: - - rot: -1.5707963267948966 rad - pos: -20.497316,28.738117 - parent: 82 - type: Transform -- uid: 24734 - type: SignDirectionalEvac - components: - - pos: -7.4966855,48.254044 - parent: 82 - type: Transform -- uid: 24735 - type: RandomArcade - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-48.5 - parent: 82 - type: Transform -- uid: 24736 - type: RandomArcade - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-50.5 - parent: 82 - type: Transform -- uid: 24737 - type: RandomSpawner - components: - - pos: -57.5,39.5 - parent: 82 - type: Transform -- uid: 24738 - type: PosterLegitHighClassMartini - components: - - pos: -21.5,46.5 - parent: 82 - type: Transform -- uid: 24739 - type: SpawnMobBandito - components: - - pos: 32.5,-3.5 - parent: 82 - type: Transform -- uid: 24740 - type: SignEscapePods - components: - - pos: -54.5,46.5 - parent: 82 - type: Transform -- uid: 24741 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 79.5,2.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24742 - type: PosterContrabandBorgFancy - components: - - pos: 15.5,59.5 - parent: 82 - type: Transform -- uid: 24743 - type: PosterLegitStateLaws - components: - - pos: 10.5,54.5 - parent: 82 - type: Transform -- uid: 24744 - type: RandomPosterLegit - components: - - pos: 16.5,69.5 - parent: 82 - type: Transform -- uid: 24745 - type: RandomPosterLegit - components: - - pos: 29.5,72.5 - parent: 82 - type: Transform -- uid: 24746 - type: ClothingMaskGas - components: - - pos: -16.318394,36.57068 - parent: 82 - type: Transform -- uid: 24747 - type: RandomPosterAny - components: - - pos: 23.5,57.5 - parent: 82 - type: Transform -- uid: 24748 - type: RandomPosterAny - components: - - pos: 23.5,52.5 - parent: 82 - type: Transform -- uid: 24749 - type: RandomPosterAny - components: - - pos: 5.5,52.5 - parent: 82 - type: Transform -- uid: 24750 - type: RandomSpawner - components: - - pos: 8.5,31.5 - parent: 82 - type: Transform -- uid: 24751 - type: PosterLegitWorkForAFuture - components: - - pos: -9.5,37.5 - parent: 82 - type: Transform -- uid: 24752 - type: PosterContrabandHighEffectEngineering - components: - - pos: -21.5,39.5 - parent: 82 - type: Transform -- uid: 24753 - type: PosterLegitHelpOthers - components: - - pos: -17.5,49.5 - parent: 82 - type: Transform -- uid: 24754 - type: PosterLegitNanotrasenLogo - components: - - pos: -18.5,55.5 - parent: 82 - type: Transform -- uid: 24755 - type: RandomPosterAny - components: - - pos: -26.5,35.5 - parent: 82 - type: Transform -- uid: 24756 - type: RandomPosterAny - components: - - pos: -26.5,40.5 - parent: 82 - type: Transform -- uid: 24757 - type: RandomPosterAny - components: - - pos: 0.5,32.5 - parent: 82 - type: Transform -- uid: 24758 - type: RandomPosterAny - components: - - pos: 12.5,32.5 - parent: 82 - type: Transform -- uid: 24759 - type: RandomPosterAny - components: - - pos: 13.5,29.5 - parent: 82 - type: Transform -- uid: 24760 - type: RandomPosterAny - components: - - pos: 6.5,29.5 - parent: 82 - type: Transform -- uid: 24761 - type: RandomPosterAny - components: - - pos: -2.5,29.5 - parent: 82 - type: Transform -- uid: 24762 - type: RandomPosterAny - components: - - pos: -15.5,22.5 - parent: 82 - type: Transform -- uid: 24763 - type: RandomPosterAny - components: - - pos: -12.5,22.5 - parent: 82 - type: Transform -- uid: 24764 - type: RandomPosterAny - components: - - pos: -30.5,28.5 - parent: 82 - type: Transform -- uid: 24765 - type: RandomPosterAny - components: - - pos: -46.5,32.5 - parent: 82 - type: Transform -- uid: 24766 - type: RandomPosterAny - components: - - pos: -57.5,28.5 - parent: 82 - type: Transform -- uid: 24767 - type: RandomPosterAny - components: - - pos: -24.5,22.5 - parent: 82 - type: Transform -- uid: 24768 - type: RandomPosterAny - components: - - pos: -24.5,12.5 - parent: 82 - type: Transform -- uid: 24769 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 80.5,8.5 - parent: 82 - type: Transform -- uid: 24770 - type: RandomPosterAny - components: - - pos: -29.5,-0.5 - parent: 82 - type: Transform -- uid: 24771 - type: RandomPosterAny - components: - - pos: -15.5,-1.5 - parent: 82 - type: Transform -- uid: 24772 - type: SignSecureMedRed - components: - - pos: -12.5,-5.5 - parent: 82 - type: Transform -- uid: 24773 - type: SignSecureMedRed - components: - - pos: -10.5,-5.5 - parent: 82 - type: Transform -- uid: 24774 - type: RandomPosterAny - components: - - pos: -26.5,-15.5 - parent: 82 - type: Transform -- uid: 24775 - type: RandomPosterAny - components: - - pos: -26.5,-9.5 - parent: 82 - type: Transform -- uid: 24776 - type: RandomPosterAny - components: - - pos: -20.5,-18.5 - parent: 82 - type: Transform -- uid: 24777 - type: PillHyronalin - components: - - pos: -46.41885,-24.497093 - parent: 82 - type: Transform -- uid: 24778 - type: RandomPosterAny - components: - - pos: -43.5,-8.5 - parent: 82 - type: Transform -- uid: 24779 - type: RandomPosterAny - components: - - pos: -39.5,-11.5 - parent: 82 - type: Transform -- uid: 24780 - type: RandomPosterAny - components: - - pos: -2.5,-1.5 - parent: 82 - type: Transform -- uid: 24781 - type: RandomPosterAny - components: - - pos: 17.5,-1.5 - parent: 82 - type: Transform -- uid: 24782 - type: PosterContrabandMissingGloves - components: - - pos: 30.5,-9.5 - parent: 82 - type: Transform -- uid: 24783 - type: RandomPosterAny - components: - - pos: 23.5,-10.5 - parent: 82 - type: Transform -- uid: 24784 - type: RandomPosterAny - components: - - pos: 21.5,-8.5 - parent: 82 - type: Transform -- uid: 24785 - type: RandomPosterAny - components: - - pos: 39.5,5.5 - parent: 82 - type: Transform -- uid: 24786 - type: RandomPosterAny - components: - - pos: 51.5,5.5 - parent: 82 - type: Transform -- uid: 24787 - type: RandomPosterAny - components: - - pos: 61.5,5.5 - parent: 82 - type: Transform -- uid: 24788 - type: PoweredSmallLight - components: - - pos: 55.5,9.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24789 - type: RandomSpawner - components: - - pos: -42.5,31.5 - parent: 82 - type: Transform -- uid: 24792 - type: RandomPosterAny - components: - - pos: 57.5,1.5 - parent: 82 - type: Transform -- uid: 24793 - type: RandomPosterAny - components: - - pos: 26.5,-1.5 - parent: 82 - type: Transform -- uid: 24794 - type: RandomPosterAny - components: - - pos: -6.5,-8.5 - parent: 82 - type: Transform -- uid: 24795 - type: RandomPosterAny - components: - - pos: -6.5,-18.5 - parent: 82 - type: Transform -- uid: 24796 - type: CableApcExtension - components: - - pos: -0.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24797 - type: RandomPosterAny - components: - - pos: 7.5,-26.5 - parent: 82 - type: Transform -- uid: 24798 - type: CableApcExtension - components: - - pos: 0.5,-20.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24799 - type: RandomPosterAny - components: - - pos: 22.5,-24.5 - parent: 82 - type: Transform -- uid: 24800 - type: RandomPosterAny - components: - - pos: 21.5,-14.5 - parent: 82 - type: Transform -- uid: 24801 - type: RandomPosterAny - components: - - pos: 18.5,-28.5 - parent: 82 - type: Transform -- uid: 24802 - type: RandomPosterAny - components: - - pos: 22.5,-40.5 - parent: 82 - type: Transform -- uid: 24803 - type: RandomPosterAny - components: - - pos: 18.5,-53.5 - parent: 82 - type: Transform -- uid: 24804 - type: CableApcExtension - components: - - pos: 0.5,-21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24805 - type: PosterContrabandPwrGame - components: - - pos: 12.5,-50.5 - parent: 82 - type: Transform -- uid: 24806 - type: PosterLegitNanotrasenLogo - components: - - rot: 3.141592653589793 rad - pos: 17.5,-62.5 - parent: 82 - type: Transform -- uid: 24807 - type: PosterLegitNanotrasenLogo - components: - - rot: 3.141592653589793 rad - pos: 23.5,-62.5 - parent: 82 - type: Transform -- uid: 24808 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -3.5,-53.5 - parent: 82 - type: Transform -- uid: 24809 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -10.5,-44.5 - parent: 82 - type: Transform -- uid: 24810 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -14.5,-44.5 - parent: 82 - type: Transform -- uid: 24811 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -18.5,-31.5 - parent: 82 - type: Transform -- uid: 24812 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -3.5,-29.5 - parent: 82 - type: Transform -- uid: 24813 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -7.5,-20.5 - parent: 82 - type: Transform -- uid: 24814 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -13.5,-23.5 - parent: 82 - type: Transform -- uid: 24815 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -17.5,-27.5 - parent: 82 - type: Transform -- uid: 24816 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -1.5,-13.5 - parent: 82 - type: Transform -- uid: 24817 - type: WallSolid - components: - - pos: -32.5,-5.5 - parent: 82 - type: Transform -- uid: 24818 - type: Catwalk - components: - - pos: -49.5,-37.5 - parent: 82 - type: Transform -- uid: 24819 - type: RandomPainting - components: - - pos: -36.5,-39.5 - parent: 82 - type: Transform -- uid: 24820 - type: RandomPainting - components: - - pos: -44.5,-41.5 - parent: 82 - type: Transform -- uid: 24821 - type: RandomPainting - components: - - pos: -44.5,-43.5 - parent: 82 - type: Transform -- uid: 24822 - type: RandomPainting - components: - - pos: -44.5,-39.5 - parent: 82 - type: Transform -- uid: 24823 - type: RandomPainting - components: - - pos: -30.5,-40.5 - parent: 82 - type: Transform -- uid: 24824 - type: RandomPainting - components: - - pos: -34.5,-45.5 - parent: 82 - type: Transform -- uid: 24825 - type: RandomPosterLegit - components: - - pos: -57.5,-31.5 - parent: 82 - type: Transform -- uid: 24826 - type: RandomPosterLegit - components: - - pos: -58.5,-26.5 - parent: 82 - type: Transform -- uid: 24827 - type: RandomPosterLegit - components: - - pos: -52.5,-26.5 - parent: 82 - type: Transform -- uid: 24828 - type: RandomPosterLegit - components: - - pos: -38.5,-27.5 - parent: 82 - type: Transform -- uid: 24829 - type: RandomPosterLegit - components: - - pos: -42.5,-23.5 - parent: 82 - type: Transform -- uid: 24830 - type: RandomPosterContraband - components: - - pos: -37.5,-16.5 - parent: 82 - type: Transform -- uid: 24831 - type: RandomPosterContraband - components: - - pos: -29.5,-21.5 - parent: 82 - type: Transform -- uid: 24832 - type: RandomPosterAny - components: - - pos: -43.5,-17.5 - parent: 82 - type: Transform -- uid: 24833 - type: RandomPosterAny - components: - - pos: -43.5,-21.5 - parent: 82 - type: Transform -- uid: 24834 - type: RandomPosterLegit - components: - - pos: 53.5,-15.5 - parent: 82 - type: Transform -- uid: 24835 - type: PaintingAmogusTriptych - components: - - pos: 25.5,23.5 - parent: 82 - type: Transform -- uid: 24836 - type: PaintingSaturn - components: - - pos: 25.5,28.5 - parent: 82 - type: Transform -- uid: 24837 - type: RandomPainting - components: - - pos: 28.5,21.5 - parent: 82 - type: Transform -- uid: 24838 - type: RandomPainting - components: - - pos: 28.5,29.5 - parent: 82 - type: Transform -- uid: 24839 - type: RandomPainting - components: - - pos: 45.5,16.5 - parent: 82 - type: Transform -- uid: 24840 - type: RandomSpawner - components: - - pos: -30.5,35.5 - parent: 82 - type: Transform -- uid: 24841 - type: RandomPosterAny - components: - - pos: 48.5,26.5 - parent: 82 - type: Transform -- uid: 24842 - type: RandomPosterAny - components: - - pos: 48.5,18.5 - parent: 82 - type: Transform -- uid: 24843 - type: RandomPosterContraband - components: - - pos: 48.5,15.5 - parent: 82 - type: Transform -- uid: 24844 - type: RandomPosterContraband - components: - - pos: 47.5,38.5 - parent: 82 - type: Transform -- uid: 24845 - type: RandomPosterContraband - components: - - pos: 42.5,31.5 - parent: 82 - type: Transform -- uid: 24846 - type: RandomPosterContraband - components: - - pos: 36.5,35.5 - parent: 82 - type: Transform -- uid: 24847 - type: RandomPosterLegit - components: - - pos: 29.5,41.5 - parent: 82 - type: Transform -- uid: 24848 - type: RandomPosterLegit - components: - - pos: 28.5,48.5 - parent: 82 - type: Transform -- uid: 24849 - type: RandomPosterLegit - components: - - pos: 34.5,55.5 - parent: 82 - type: Transform -- uid: 24850 - type: RandomPosterLegit - components: - - pos: 30.5,62.5 - parent: 82 - type: Transform -- uid: 24851 - type: RandomPosterContraband - components: - - pos: 9.5,69.5 - parent: 82 - type: Transform -- uid: 24852 - type: RandomPosterLegit - components: - - pos: 12.5,46.5 - parent: 82 - type: Transform -- uid: 24853 - type: RandomPosterLegit - components: - - pos: 7.5,48.5 - parent: 82 - type: Transform -- uid: 24854 - type: RandomPosterLegit - components: - - pos: 1.5,48.5 - parent: 82 - type: Transform -- uid: 24855 - type: RandomPosterLegit - components: - - pos: -7.5,51.5 - parent: 82 - type: Transform -- uid: 24856 - type: RandomPosterLegit - components: - - pos: -17.5,52.5 - parent: 82 - type: Transform -- uid: 24857 - type: RandomPosterLegit - components: - - pos: -27.5,51.5 - parent: 82 - type: Transform -- uid: 24858 - type: RandomPosterLegit - components: - - pos: -23.5,51.5 - parent: 82 - type: Transform -- uid: 24859 - type: RandomPosterLegit - components: - - pos: -29.5,55.5 - parent: 82 - type: Transform -- uid: 24860 - type: RandomPosterLegit - components: - - pos: -7.5,39.5 - parent: 82 - type: Transform -- uid: 24861 - type: RandomPosterAny - components: - - pos: -9.5,28.5 - parent: 82 - type: Transform -- uid: 24862 - type: RandomPosterAny - components: - - pos: -7.5,20.5 - parent: 82 - type: Transform -- uid: 24863 - type: RandomPosterLegit - components: - - pos: -16.5,12.5 - parent: 82 - type: Transform -- uid: 24864 - type: RandomPosterLegit - components: - - pos: -12.5,12.5 - parent: 82 - type: Transform -- uid: 24865 - type: RandomPosterLegit - components: - - pos: -20.5,9.5 - parent: 82 - type: Transform -- uid: 24866 - type: ComputerTelevision - components: - - pos: 59.5,-41.5 - parent: 82 - type: Transform -- uid: 24867 - type: RandomPosterLegit - components: - - pos: -38.5,-24.5 - parent: 82 - type: Transform -- uid: 24868 - type: PosterLegitThereIsNoGasGiant - components: - - pos: -47.5,-24.5 - parent: 82 - type: Transform -- uid: 24869 - type: VendingMachineGeneDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -47.5,-34.5 - parent: 82 - type: Transform -- uid: 24870 - type: RandomPosterContraband - components: - - pos: -46.5,-43.5 - parent: 82 - type: Transform -- uid: 24871 - type: RandomPosterContraband - components: - - pos: -52.5,-43.5 - parent: 82 - type: Transform -- uid: 24872 - type: RandomPosterContraband - components: - - pos: -55.5,-38.5 - parent: 82 - type: Transform -- uid: 24873 - type: RandomPosterContraband - components: - - pos: -55.5,-41.5 - parent: 82 - type: Transform -- uid: 24874 - type: RandomPosterContraband - components: - - pos: -58.5,-36.5 - parent: 82 - type: Transform -- uid: 24875 - type: RandomPosterContraband - components: - - pos: -61.5,-37.5 - parent: 82 - type: Transform -- uid: 24876 - type: RandomPosterContraband - components: - - pos: -64.5,-38.5 - parent: 82 - type: Transform -- uid: 24877 - type: RandomPosterContraband - components: - - pos: -61.5,-30.5 - parent: 82 - type: Transform -- uid: 24878 - type: RandomPosterContraband - components: - - pos: -61.5,-23.5 - parent: 82 - type: Transform -- uid: 24879 - type: RandomPosterContraband - components: - - pos: -57.5,-21.5 - parent: 82 - type: Transform -- uid: 24880 - type: RandomPosterContraband - components: - - pos: -52.5,-20.5 - parent: 82 - type: Transform -- uid: 24881 - type: RandomPosterContraband - components: - - pos: -47.5,-17.5 - parent: 82 - type: Transform -- uid: 24882 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -1.5,-14.5 - parent: 82 - type: Transform -- uid: 24883 - type: RandomPosterContraband - components: - - pos: -46.5,-8.5 - parent: 82 - type: Transform -- uid: 24884 - type: WaterTankFull - components: - - pos: 53.5,-46.5 - parent: 82 - type: Transform -- uid: 24885 - type: RandomPosterContraband - components: - - pos: -53.5,-9.5 - parent: 82 - type: Transform -- uid: 24886 - type: RandomPosterContraband - components: - - pos: -49.5,-1.5 - parent: 82 - type: Transform -- uid: 24887 - type: RandomPosterContraband - components: - - pos: -50.5,4.5 - parent: 82 - type: Transform -- uid: 24888 - type: RandomPosterContraband - components: - - pos: -44.5,7.5 - parent: 82 - type: Transform -- uid: 24889 - type: RandomPosterContraband - components: - - pos: -52.5,13.5 - parent: 82 - type: Transform -- uid: 24890 - type: RandomPosterContraband - components: - - pos: -48.5,20.5 - parent: 82 - type: Transform -- uid: 24891 - type: RandomPosterContraband - components: - - pos: -43.5,22.5 - parent: 82 - type: Transform -- uid: 24892 - type: RandomPosterLegit - components: - - pos: -42.5,24.5 - parent: 82 - type: Transform -- uid: 24893 - type: RandomPosterLegit - components: - - pos: -37.5,24.5 - parent: 82 - type: Transform -- uid: 24894 - type: PosterLegitSafetyInternals - components: - - pos: -40.5,24.5 - parent: 82 - type: Transform -- uid: 24895 - type: PosterLegitSafetyEyeProtection - components: - - pos: -35.5,25.5 - parent: 82 - type: Transform -- uid: 24896 - type: RandomPosterContraband - components: - - pos: -34.5,22.5 - parent: 82 - type: Transform -- uid: 24897 - type: RandomPosterAny - components: - - pos: -4.5,52.5 - parent: 82 - type: Transform -- uid: 24898 - type: PosterLegitSafetyEyeProtection - components: - - pos: -6.5,12.5 - parent: 82 - type: Transform -- uid: 24899 - type: PosterLegitSafetyEyeProtection - components: - - pos: 23.5,11.5 - parent: 82 - type: Transform -- uid: 24900 - type: RandomPosterLegit - components: - - pos: 18.5,18.5 - parent: 82 - type: Transform -- uid: 24901 - type: RandomPosterLegit - components: - - pos: -4.5,8.5 - parent: 82 - type: Transform -- uid: 24902 - type: RandomPosterLegit - components: - - pos: -9.5,9.5 - parent: 82 - type: Transform -- uid: 24903 - type: RandomPosterContraband - components: - - pos: 25.5,21.5 - parent: 82 - type: Transform -- uid: 24904 - type: RandomPosterContraband - components: - - pos: 22.5,25.5 - parent: 82 - type: Transform -- uid: 24905 - type: RandomPosterContraband - components: - - pos: 19.5,21.5 - parent: 82 - type: Transform -- uid: 24906 - type: RandomPosterContraband - components: - - pos: 19.5,26.5 - parent: 82 - type: Transform -- uid: 24907 - type: RandomPosterContraband - components: - - pos: 19.5,33.5 - parent: 82 - type: Transform -- uid: 24908 - type: RandomPosterContraband - components: - - pos: 23.5,38.5 - parent: 82 - type: Transform -- uid: 24909 - type: RandomPosterContraband - components: - - pos: 24.5,42.5 - parent: 82 - type: Transform -- uid: 24910 - type: RandomPosterContraband - components: - - pos: 19.5,43.5 - parent: 82 - type: Transform -- uid: 24911 - type: RandomPosterContraband - components: - - pos: 14.5,46.5 - parent: 82 - type: Transform -- uid: 24912 - type: RandomPosterContraband - components: - - pos: 12.5,42.5 - parent: 82 - type: Transform -- uid: 24913 - type: RandomPosterContraband - components: - - pos: 8.5,42.5 - parent: 82 - type: Transform -- uid: 24914 - type: RandomPosterContraband - components: - - pos: 6.5,44.5 - parent: 82 - type: Transform -- uid: 24915 - type: RandomPosterLegit - components: - - pos: 4.5,43.5 - parent: 82 - type: Transform -- uid: 24916 - type: RandomPosterLegit - components: - - pos: 2.5,40.5 - parent: 82 - type: Transform -- uid: 24917 - type: RandomPosterLegit - components: - - pos: -0.5,45.5 - parent: 82 - type: Transform -- uid: 24918 - type: RandomPosterLegit - components: - - pos: 7.5,38.5 - parent: 82 - type: Transform -- uid: 24919 - type: RandomPosterLegit - components: - - pos: 7.5,35.5 - parent: 82 - type: Transform -- uid: 24920 - type: SignSecureMedRed - components: - - pos: 11.5,32.5 - parent: 82 - type: Transform -- uid: 24921 - type: PosterLegitReportCrimes - components: - - pos: 11.5,37.5 - parent: 82 - type: Transform -- uid: 24922 - type: PosterLegitCleanliness - components: - - pos: 2.5,36.5 - parent: 82 - type: Transform -- uid: 24923 - type: SpawnMobCleanBot - components: - - pos: -4.5,39.5 - parent: 82 - type: Transform -- uid: 24924 - type: RandomPosterContraband - components: - - pos: -14.5,5.5 - parent: 82 - type: Transform -- uid: 24925 - type: RandomPosterContraband - components: - - pos: -14.5,0.5 - parent: 82 - type: Transform -- uid: 24926 - type: RandomPosterLegit - components: - - pos: -14.5,-7.5 - parent: 82 - type: Transform -- uid: 24927 - type: RandomPosterLegit - components: - - pos: -8.5,-7.5 - parent: 82 - type: Transform -- uid: 24928 - type: CrateServiceReplacementLights - components: - - pos: -10.5,-16.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24929 - type: MopBucket - components: - - pos: -19.504099,-22.42632 - parent: 82 - type: Transform -- uid: 24930 - type: TrashBag - components: - - pos: -18.44692,-22.49324 - parent: 82 - type: Transform -- uid: 24931 - type: PosterContrabandAmbrosiaVulgaris - components: - - pos: -31.5,-23.5 - parent: 82 - type: Transform -- uid: 24932 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -1.5,-15.5 - parent: 82 - type: Transform -- uid: 24933 - type: RandomPosterLegit - components: - - pos: -26.5,-36.5 - parent: 82 - type: Transform -- uid: 24934 - type: RandomPosterLegit - components: - - pos: -24.5,-41.5 - parent: 82 - type: Transform -- uid: 24935 - type: RandomPosterLegit - components: - - pos: -12.5,-44.5 - parent: 82 - type: Transform -- uid: 24936 - type: Intercom - components: - - pos: -8.5,-59.5 - parent: 82 - type: Transform -- uid: 24937 - type: RandomPosterLegit - components: - - pos: -2.5,-62.5 - parent: 82 - type: Transform -- uid: 24938 - type: RandomPosterLegit - components: - - pos: -8.5,-62.5 - parent: 82 - type: Transform -- uid: 24939 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -1.5,-16.5 - parent: 82 - type: Transform -- uid: 24940 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -1.5,-17.5 - parent: 82 - type: Transform -- uid: 24941 - type: RandomPosterLegit - components: - - pos: 30.5,-29.5 - parent: 82 - type: Transform -- uid: 24942 - type: Intercom - components: - - pos: 24.5,-29.5 - parent: 82 - type: Transform -- uid: 24943 - type: RandomPosterLegit - components: - - pos: 29.5,-24.5 - parent: 82 - type: Transform -- uid: 24944 - type: SignPlaque - components: - - pos: 35.5,-19.5 - parent: 82 - type: Transform -- uid: 24945 - type: SignKiddiePlaque - components: - - pos: 31.5,-24.5 - parent: 82 - type: Transform -- uid: 24946 - type: RandomPainting - components: - - pos: 30.5,-13.5 - parent: 82 - type: Transform -- uid: 24947 - type: RandomPainting - components: - - pos: 27.5,-15.5 - parent: 82 - type: Transform -- uid: 24948 - type: RandomPainting - components: - - pos: 26.5,-24.5 - parent: 82 - type: Transform -- uid: 24949 - type: RandomPainting - components: - - pos: 24.5,-24.5 - parent: 82 - type: Transform -- uid: 24950 - type: PosterLegitNanotrasenLogo - components: - - pos: 5.5,-14.5 - parent: 82 - type: Transform -- uid: 24951 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -1.5,-18.5 - parent: 82 - type: Transform -- uid: 24952 - type: PosterLegitNanotrasenLogo - components: - - pos: 0.5,-14.5 - parent: 82 - type: Transform -- uid: 24953 - type: RandomPosterLegit - components: - - pos: 10.5,-14.5 - parent: 82 - type: Transform -- uid: 24954 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -1.5,-19.5 - parent: 82 - type: Transform -- uid: 24955 - type: PosterContrabandBeachStarYamamoto - components: - - pos: 8.5,-15.5 - parent: 82 - type: Transform -- uid: 24956 - type: RandomPosterLegit - components: - - pos: -8.5,3.5 - parent: 82 - type: Transform -- uid: 24957 - type: RandomPosterLegit - components: - - pos: -12.5,3.5 - parent: 82 - type: Transform -- uid: 24958 - type: PosterLegitPDAAd - components: - - pos: -9.5,-0.5 - parent: 82 - type: Transform -- uid: 24959 - type: RandomPosterContraband - components: - - pos: -10.5,-18.5 - parent: 82 - type: Transform -- uid: 24960 - type: RandomPosterContraband - components: - - pos: -11.5,-14.5 - parent: 82 - type: Transform -- uid: 24961 - type: RandomPosterContraband - components: - - pos: -12.5,-12.5 - parent: 82 - type: Transform -- uid: 24962 - type: RandomPosterContraband - components: - - pos: -8.5,-10.5 - parent: 82 - type: Transform -- uid: 24963 - type: Rack - components: - - pos: -0.5,-21.5 - parent: 82 - type: Transform -- uid: 24964 - type: ClosetFireFilled - components: - - pos: -0.5,-13.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24965 - type: ClosetEmergencyFilledRandom - components: - - pos: -0.5,-14.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24966 - type: RandomPosterContraband - components: - - pos: 52.5,7.5 - parent: 82 - type: Transform -- uid: 24967 - type: RandomPosterContraband - components: - - pos: 58.5,7.5 - parent: 82 - type: Transform -- uid: 24968 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,54.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24969 - type: RandomPosterContraband - components: - - pos: 38.5,56.5 - parent: 82 - type: Transform -- uid: 24970 - type: RandomPosterContraband - components: - - pos: 42.5,56.5 - parent: 82 - type: Transform -- uid: 24971 - type: RandomPosterContraband - components: - - pos: 41.5,52.5 - parent: 82 - type: Transform -- uid: 24972 - type: RandomPosterLegit - components: - - pos: 36.5,47.5 - parent: 82 - type: Transform -- uid: 24973 - type: RandomPosterLegit - components: - - pos: 39.5,49.5 - parent: 82 - type: Transform -- uid: 24974 - type: RandomPosterLegit - components: - - pos: 36.5,52.5 - parent: 82 - type: Transform -- uid: 24975 - type: RandomPosterContraband - components: - - pos: 41.5,45.5 - parent: 82 - type: Transform -- uid: 24976 - type: RandomPosterContraband - components: - - pos: 45.5,43.5 - parent: 82 - type: Transform -- uid: 24977 - type: RandomPosterContraband - components: - - pos: 43.5,40.5 - parent: 82 - type: Transform -- uid: 24978 - type: RandomPosterContraband - components: - - pos: 43.5,49.5 - parent: 82 - type: Transform -- uid: 24979 - type: RandomPosterContraband - components: - - pos: 45.5,46.5 - parent: 82 - type: Transform -- uid: 24980 - type: RandomPosterLegit - components: - - pos: 18.5,48.5 - parent: 82 - type: Transform -- uid: 24981 - type: RandomPosterLegit - components: - - pos: 14.5,62.5 - parent: 82 - type: Transform -- uid: 24982 - type: RandomPosterLegit - components: - - pos: 14.5,66.5 - parent: 82 - type: Transform -- uid: 24983 - type: RandomPosterLegit - components: - - pos: 30.5,45.5 - parent: 82 - type: Transform -- uid: 24984 - type: RandomPosterLegit - components: - - pos: 34.5,17.5 - parent: 82 - type: Transform -- uid: 24985 - type: RandomSpawner - components: - - pos: -6.5,47.5 - parent: 82 - type: Transform -- uid: 24986 - type: RandomSpawner - components: - - pos: -14.5,32.5 - parent: 82 - type: Transform -- uid: 24987 - type: RandomPosterLegit - components: - - pos: 84.5,1.5 - parent: 82 - type: Transform -- uid: 24988 - type: RandomPosterLegit - components: - - pos: 74.5,1.5 - parent: 82 - type: Transform -- uid: 24989 - type: RandomPosterLegit - components: - - pos: 11.5,29.5 - parent: 82 - type: Transform -- uid: 24990 - type: RandomSpawner - components: - - pos: 6.5,35.5 - parent: 82 - type: Transform -- uid: 24991 - type: RandomPosterLegit - components: - - pos: -6.5,32.5 - parent: 82 - type: Transform -- uid: 24992 - type: RandomPosterLegit - components: - - pos: -27.5,32.5 - parent: 82 - type: Transform -- uid: 24993 - type: RandomSpawner - components: - - pos: 5.5,51.5 - parent: 82 - type: Transform -- uid: 24994 - type: ReinforcedWindow - components: - - pos: -54.5,44.5 - parent: 82 - type: Transform -- uid: 24995 - type: SpawnMobCatFloppa - components: - - pos: -33.5,51.5 - parent: 82 - type: Transform -- uid: 24996 - type: RandomSpawner - components: - - pos: 28.5,45.5 - parent: 82 - type: Transform -- uid: 24997 - type: SignDoors - components: - - pos: -64.5,39.5 - parent: 82 - type: Transform -- uid: 24998 - type: SignDoors - components: - - pos: -64.5,47.5 - parent: 82 - type: Transform -- uid: 24999 - type: SignShipDock - components: - - pos: -67.5,49.5 - parent: 82 - type: Transform -- uid: 25000 - type: SignShipDock - components: - - pos: -67.5,45.5 - parent: 82 - type: Transform -- uid: 25001 - type: SignShipDock - components: - - pos: -67.5,41.5 - parent: 82 - type: Transform -- uid: 25002 - type: SignShipDock - components: - - pos: -67.5,37.5 - parent: 82 - type: Transform -- uid: 25003 - type: SignSpace - components: - - pos: -67.5,39.5 - parent: 82 - type: Transform -- uid: 25004 - type: SignSpace - components: - - pos: -67.5,47.5 - parent: 82 - type: Transform -- uid: 25005 - type: WeldingFuelTankFull - components: - - pos: -0.5,-17.5 - parent: 82 - type: Transform -- uid: 25006 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -54.5,48.5 - parent: 82 - type: Transform - - devices: - - 13316 - - 13318 - - 13324 - - 13376 - - 13375 - - invalid - - 13302 - - 22404 - - 24419 - - 22405 - - 22406 - - 22606 - - 22407 - - 12563 - - 12564 - - 13172 - - 13166 - - 13199 - - 22590 - - 22743 - type: DeviceList -- uid: 25007 - type: SignEscapePods - components: - - pos: -54.5,37.5 - parent: 82 - type: Transform -- uid: 25008 - type: RandomPosterLegit - components: - - pos: -63.5,45.5 - parent: 82 - type: Transform -- uid: 25009 - type: RandomSpawner - components: - - pos: 11.5,45.5 - parent: 82 - type: Transform -- uid: 25010 - type: RandomPosterContraband - components: - - pos: 46.5,11.5 - parent: 82 - type: Transform -- uid: 25011 - type: RandomSpawner - components: - - pos: -30.5,45.5 - parent: 82 - type: Transform -- uid: 25012 - type: RandomPosterContraband - components: - - pos: 54.5,10.5 - parent: 82 - type: Transform -- uid: 25013 - type: RandomPosterContraband - components: - - pos: -64.5,-40.5 - parent: 82 - type: Transform -- uid: 25014 - type: RandomPosterContraband - components: - - pos: -61.5,-42.5 - parent: 82 - type: Transform -- uid: 25015 - type: RandomPosterContraband - components: - - pos: -64.5,-46.5 - parent: 82 - type: Transform -- uid: 25016 - type: RandomPosterContraband - components: - - pos: -46.5,-47.5 - parent: 82 - type: Transform -- uid: 25017 - type: RandomPosterContraband - components: - - pos: -37.5,-48.5 - parent: 82 - type: Transform -- uid: 25018 - type: RandomPosterContraband - components: - - pos: -35.5,-48.5 - parent: 82 - type: Transform -- uid: 25019 - type: RandomPosterContraband - components: - - pos: -26.5,-46.5 - parent: 82 - type: Transform -- uid: 25020 - type: RandomPosterLegit - components: - - pos: 14.5,-43.5 - parent: 82 - type: Transform -- uid: 25021 - type: RandomPosterLegit - components: - - pos: 14.5,-41.5 - parent: 82 - type: Transform -- uid: 25022 - type: RandomPosterLegit - components: - - pos: 16.5,-40.5 - parent: 82 - type: Transform -- uid: 25023 - type: RandomPosterLegit - components: - - pos: 16.5,-46.5 - parent: 82 - type: Transform -- uid: 25024 - type: RandomPosterContraband - components: - - pos: 12.5,-45.5 - parent: 82 - type: Transform -- uid: 25025 - type: RandomPosterContraband - components: - - pos: 12.5,-43.5 - parent: 82 - type: Transform -- uid: 25026 - type: RandomPosterLegit - components: - - pos: 85.5,10.5 - parent: 82 - type: Transform -- uid: 25027 - type: RandomPosterLegit - components: - - pos: -36.5,7.5 - parent: 82 - type: Transform -- uid: 25028 - type: RandomPosterLegit - components: - - pos: -36.5,9.5 - parent: 82 - type: Transform -- uid: 25029 - type: RandomPosterContraband - components: - - pos: -41.5,7.5 - parent: 82 - type: Transform -- uid: 25030 - type: RandomPosterContraband - components: - - pos: -46.5,-5.5 - parent: 82 - type: Transform -- uid: 25031 - type: RandomPosterLegit - components: - - pos: -23.5,-31.5 - parent: 82 - type: Transform -- uid: 25032 - type: SignMail - components: - - pos: 39.5,21.5 - parent: 82 - type: Transform -- uid: 25033 - type: RandomSpawner - components: - - pos: -47.5,-2.5 - parent: 82 - type: Transform -- uid: 25034 - type: RandomSpawner - components: - - pos: -30.5,9.5 - parent: 82 - type: Transform -- uid: 25035 - type: RandomSpawner - components: - - pos: -27.5,7.5 - parent: 82 - type: Transform -- uid: 25036 - type: RandomSpawner - components: - - pos: -54.5,-12.5 - parent: 82 - type: Transform -- uid: 25037 - type: RandomSpawner - components: - - pos: -48.5,-19.5 - parent: 82 - type: Transform -- uid: 25038 - type: RandomSpawner - components: - - pos: -60.5,-26.5 - parent: 82 - type: Transform -- uid: 25039 - type: RandomSpawner - components: - - pos: -59.5,-35.5 - parent: 82 - type: Transform -- uid: 25040 - type: RandomSpawner - components: - - pos: -65.5,-44.5 - parent: 82 - type: Transform -- uid: 25041 - type: RandomSpawner - components: - - pos: -57.5,-39.5 - parent: 82 - type: Transform -- uid: 25042 - type: RandomSpawner - components: - - pos: -53.5,-39.5 - parent: 82 - type: Transform -- uid: 25043 - type: ClothingUniformJumpsuitParamedic - components: - - pos: -51.437702,-34.548603 - parent: 82 - type: Transform -- uid: 25044 - type: RandomSpawner - components: - - pos: -43.5,-46.5 - parent: 82 - type: Transform -- uid: 25045 - type: RandomSpawner - components: - - pos: -27.5,-46.5 - parent: 82 - type: Transform -- uid: 25046 - type: RandomSpawner - components: - - pos: -15.5,-45.5 - parent: 82 - type: Transform -- uid: 25047 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 78.5,8.5 - parent: 82 - type: Transform -- uid: 25048 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 20.5,27.5 - parent: 82 - type: Transform -- uid: 25049 - type: RandomSpawner - components: - - pos: 0.5,-49.5 - parent: 82 - type: Transform -- uid: 25050 - type: RandomSpawner - components: - - pos: 4.5,-46.5 - parent: 82 - type: Transform -- uid: 25051 - type: RandomSpawner - components: - - pos: 11.5,-44.5 - parent: 82 - type: Transform -- uid: 25052 - type: RandomSpawner - components: - - pos: 9.5,-31.5 - parent: 82 - type: Transform -- uid: 25053 - type: RandomSpawner - components: - - pos: 29.5,-32.5 - parent: 82 - type: Transform -- uid: 25054 - type: RandomSpawner - components: - - pos: 30.5,-31.5 - parent: 82 - type: Transform -- uid: 25055 - type: RandomSpawner - components: - - pos: 15.5,-47.5 - parent: 82 - type: Transform -- uid: 25056 - type: RandomSpawner - components: - - pos: 16.5,-51.5 - parent: 82 - type: Transform -- uid: 25057 - type: RandomSpawner - components: - - pos: 17.5,-23.5 - parent: 82 - type: Transform -- uid: 25058 - type: RandomSpawner - components: - - pos: 1.5,-24.5 - parent: 82 - type: Transform -- uid: 25059 - type: RandomSpawner - components: - - pos: 20.5,-4.5 - parent: 82 - type: Transform -- uid: 25060 - type: RandomSpawner - components: - - pos: 29.5,-8.5 - parent: 82 - type: Transform -- uid: 25061 - type: RandomSpawner - components: - - pos: 40.5,4.5 - parent: 82 - type: Transform -- uid: 25062 - type: RandomSpawner - components: - - pos: 69.5,2.5 - parent: 82 - type: Transform -- uid: 25063 - type: RandomSpawner - components: - - pos: 84.5,9.5 - parent: 82 - type: Transform -- uid: 25064 - type: RandomSpawner - components: - - pos: 54.5,9.5 - parent: 82 - type: Transform -- uid: 25065 - type: RandomSpawner - components: - - pos: 38.5,8.5 - parent: 82 - type: Transform -- uid: 25066 - type: RandomSpawner - components: - - pos: 39.5,11.5 - parent: 82 - type: Transform -- uid: 25067 - type: RandomSpawner - components: - - pos: 31.5,65.5 - parent: 82 - type: Transform -- uid: 25068 - type: RandomSpawner - components: - - pos: 16.5,47.5 - parent: 82 - type: Transform -- uid: 25069 - type: CableHV - components: - - pos: -27.5,20.5 - parent: 82 - type: Transform -- uid: 25070 - type: HandheldGPSBasic - components: - - pos: 39.200516,34.75295 - parent: 82 - type: Transform -- uid: 25071 - type: HandheldGPSBasic - components: - - pos: 39.450516,34.50295 - parent: 82 - type: Transform -- uid: 25072 - type: PartRodMetal - components: - - pos: 39.978294,34.58628 - parent: 82 - type: Transform -- uid: 25073 - type: ClothingBeltUtilityFilled - components: - - pos: 40.561626,34.58628 - parent: 82 - type: Transform -- uid: 25074 - type: Pickaxe - components: - - pos: 47.367184,32.75295 - parent: 82 - type: Transform -- uid: 25075 - type: Pickaxe - components: - - pos: 47.589405,32.558502 - parent: 82 - type: Transform -- uid: 25076 - type: FireExtinguisher - components: - - pos: 46.339405,32.891838 - parent: 82 - type: Transform -- uid: 25077 - type: FireExtinguisher - components: - - pos: 46.589405,32.69739 - parent: 82 - type: Transform -- uid: 25078 - type: ExtinguisherCabinetFilled - components: - - pos: 30.5,32.5 - parent: 82 - type: Transform -- uid: 25079 - type: ExtinguisherCabinetFilled - components: - - pos: 5.5,48.5 - parent: 82 - type: Transform -- uid: 25080 - type: ExtinguisherCabinetFilled - components: - - pos: -10.5,28.5 - parent: 82 - type: Transform -- uid: 25081 - type: ExtinguisherCabinetFilled - components: - - pos: -58.5,34.5 - parent: 82 - type: Transform -- uid: 25082 - type: ExtinguisherCabinetFilled - components: - - pos: -18.5,15.5 - parent: 82 - type: Transform -- uid: 25083 - type: ExtinguisherCabinetFilled - components: - - pos: -29.5,-20.5 - parent: 82 - type: Transform -- uid: 25084 - type: ExtinguisherCabinetFilled - components: - - pos: 27.5,-29.5 - parent: 82 - type: Transform -- uid: 25085 - type: ExtinguisherCabinetFilled - components: - - pos: 35.5,-18.5 - parent: 82 - type: Transform -- uid: 25086 - type: VendingMachineWallMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -47.5,-29.5 - parent: 82 - type: Transform -- uid: 25087 - type: ClosetWallMaintenanceFilledRandom - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-12.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25088 - type: ClosetWallMaintenanceFilledRandom - components: - - rot: 1.5707963267948966 rad - pos: 20.5,4.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25089 - type: ClosetWallMaintenanceFilledRandom - components: - - rot: -1.5707963267948966 rad - pos: 23.5,39.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25090 - type: ClosetWallMaintenanceFilledRandom - components: - - rot: 3.141592653589793 rad - pos: 45.5,49.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25091 - type: ClosetWallMaintenanceFilledRandom - components: - - rot: 1.5707963267948966 rad - pos: -31.5,38.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25092 - type: ClosetWallMaintenanceFilledRandom - components: - - rot: -1.5707963267948966 rad - pos: -47.5,12.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25093 - type: ClosetWallMaintenanceFilledRandom - components: - - pos: -48.5,-18.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25094 - type: ClosetWallMaintenanceFilledRandom - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-45.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25095 - type: ClosetWallMaintenanceFilledRandom - components: - - rot: 3.141592653589793 rad - pos: -13.5,-46.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25096 - type: ClosetWallMaintenanceFilledRandom - components: - - rot: 3.141592653589793 rad - pos: -0.5,-50.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25097 - type: WallmountTelescreen - components: - - rot: 3.141592653589793 rad - pos: 61.5,-10.5 - parent: 82 - type: Transform -- uid: 25098 - type: WindowDirectional - components: - - pos: -7.5,-1.5 - parent: 82 - type: Transform -- uid: 25099 - type: LockerFreezer - components: - - pos: 23.5,-25.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25119 - - 17036 - - 1278 - - 25104 - - 25120 - type: ContainerContainer -- uid: 25100 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 82 - type: Transform -- uid: 25101 - type: WindowDirectional - components: - - pos: -5.5,-1.5 - parent: 82 - type: Transform -- uid: 25102 - type: ClothingHeadHatAnimalCatBrown - components: - - pos: -49.507183,9.459035 - parent: 82 - type: Transform -- uid: 25103 - type: RandomArtifactSpawner - components: - - pos: -69.5,-47.5 - parent: 82 - type: Transform -- uid: 25104 - type: DrinkLean - components: - - flags: InContainer - type: MetaData - - parent: 25099 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 25105 - type: ClothingUnderSocksBee - components: - - pos: -42.533257,-22.523739 - parent: 82 - type: Transform -- uid: 25106 - type: Bola - components: - - pos: -38.501827,14.420537 - parent: 82 - type: Transform -- uid: 25107 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 82 - type: Transform -- uid: 25108 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -5.5,-1.5 - parent: 82 - type: Transform -- uid: 25109 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -6.5,-1.5 - parent: 82 - type: Transform -- uid: 25110 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -7.5,-1.5 - parent: 82 - type: Transform -- uid: 25111 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25112 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25113 - type: CableApcExtension - components: - - pos: 13.5,53.5 - parent: 82 - type: Transform -- uid: 25114 - type: FoodSnackSus - components: - - pos: 46.578434,56.549477 - parent: 82 - type: Transform -- uid: 25115 - type: CableApcExtension - components: - - pos: 14.5,53.5 - parent: 82 - type: Transform -- uid: 25116 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,55.5 - parent: 82 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25117 - type: CableApcExtension - components: - - pos: 15.5,53.5 - parent: 82 - type: Transform -- uid: 25118 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -32.5,29.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25119 - type: DrinkLean - components: - - flags: InContainer - type: MetaData - - parent: 25099 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 25120 - type: DrinkLean - components: - - flags: InContainer - type: MetaData - - parent: 25099 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 25121 - type: ClothingUnderSocksCoder - components: - - pos: 11.506388,-50.45103 - parent: 82 - type: Transform -- uid: 25122 - type: Ash - components: - - pos: -45.568897,-21.456783 - parent: 82 - type: Transform -- uid: 25123 - type: FoodFrozenSnowcone - components: - - pos: 33.33333,-36.38525 - parent: 82 - type: Transform -- uid: 25124 - type: Football - components: - - pos: -33.294586,40.320133 - parent: 82 - type: Transform -- uid: 25125 - type: GlowstickBase - components: - - pos: -38.600483,44.502968 - parent: 82 - type: Transform -- uid: 25126 - type: ClothingUniformJumpsuitEngineeringHazard - components: - - pos: 9.562717,53.351437 - parent: 82 - type: Transform -- uid: 25127 - type: FoodMealMemoryleek - components: - - pos: 48.57988,52.528515 - parent: 82 - type: Transform -- uid: 25128 - type: DiseaseSwab - components: - - pos: 53.379765,48.3303 - parent: 82 - type: Transform -- uid: 25129 - type: SoapOmega - components: - - pos: 43.486195,6.3836384 - parent: 82 - type: Transform -- uid: 25130 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-34.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25131 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -48.5,-37.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25132 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-37.5 - parent: 82 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25133 - type: WaterTankFull - components: - - pos: -0.5,-18.5 - parent: 82 - type: Transform -- uid: 25134 - type: ClothingHandsGlovesColorPurple - components: - - pos: 16.558004,-31.589134 - parent: 82 - type: Transform -- uid: 25135 - type: GlowstickPurple - components: - - pos: 63.52737,8.382431 - parent: 82 - type: Transform -- uid: 25136 - type: ClothingHeadHatPwig - components: - - pos: 33.274956,-18.208727 - parent: 82 - type: Transform -- uid: 25137 - type: RiotShield - components: - - pos: 49.70634,-14.337414 - parent: 82 - type: Transform -- uid: 25138 - type: RiotShield - components: - - pos: 49.553562,-14.462414 - parent: 82 - type: Transform -- uid: 25139 - type: RiotBulletShield - components: - - pos: 49.31745,-14.434636 - parent: 82 - type: Transform -- uid: 25140 - type: RockGuitarInstrument - components: - - pos: 50.514645,49.44227 - parent: 82 - type: Transform -- uid: 25141 - type: ToyRubberDuck - components: - - pos: 7.5541167,-16.339481 - parent: 82 - type: Transform -- uid: 25142 - type: JetpackSecurityFilled - components: - - pos: 52.566093,-16.318619 - parent: 82 - type: Transform -- uid: 25143 - type: JetpackSecurityFilled - components: - - pos: 52.552204,-15.276952 - parent: 82 - type: Transform -- uid: 25144 - type: ClothingHeadHelmetThunderdome - components: - - pos: 37.53435,36.56721 - parent: 82 - type: Transform -- uid: 25146 - type: ClosetMaintenanceFilledRandom - components: - - pos: -0.5,-19.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25147 - type: MaintenanceWeaponSpawner - components: - - pos: -0.5,-21.5 - parent: 82 - type: Transform -- uid: 25148 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-16.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25149 - type: RandomPosterLegit - components: - - pos: -2.5,-16.5 - parent: 82 - type: Transform -- uid: 25150 - type: RandomPosterLegit - components: - - pos: 17.5,-16.5 - parent: 82 - type: Transform -- uid: 25151 - type: RandomPosterLegit - components: - - pos: 22.5,-16.5 - parent: 82 - type: Transform -- uid: 25152 - type: RandomPosterLegit - components: - - pos: 1.5,-22.5 - parent: 82 - type: Transform -- uid: 25153 - type: RandomPosterLegit - components: - - pos: 13.5,-22.5 - parent: 82 - type: Transform -- uid: 25154 - type: RandomPosterAny - components: - - pos: 8.5,-22.5 - parent: 82 - type: Transform -- uid: 25155 - type: RandomPosterContraband - components: - - pos: 15.5,-15.5 - parent: 82 - type: Transform -- uid: 25156 - type: RandomPosterContraband - components: - - pos: -0.5,-16.5 - parent: 82 - type: Transform -- uid: 25157 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-14.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25158 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25159 - type: SheetPlastic - components: - - pos: 62.390568,-18.457413 - parent: 82 - type: Transform -- uid: 25160 - type: Grille - components: - - pos: 47.5,-47.5 - parent: 82 - type: Transform -- uid: 25161 - type: Grille - components: - - pos: 51.5,-47.5 - parent: 82 - type: Transform -- uid: 25162 - type: Grille - components: - - pos: 45.5,-41.5 - parent: 82 - type: Transform -- uid: 25163 - type: ClothingUniformJumpsuitHoSParadeMale - components: - - pos: 60.777298,-16.464449 - parent: 82 - type: Transform -- uid: 25164 - type: GrilleBroken - components: - - pos: 32.5,59.5 - parent: 82 - type: Transform -- uid: 25165 - type: ShuttersNormal - components: - - pos: -10.5,32.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -361985.2 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver -- uid: 25166 - type: ClosetFireFilled - components: - - pos: 34.5,54.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25167 - type: ClosetEmergencyFilledRandom - components: - - pos: 35.5,54.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25168 - type: MaintenanceFluffSpawner - components: - - pos: 33.5,59.5 - parent: 82 - type: Transform -- uid: 25169 - type: MaintenanceWeaponSpawner - components: - - pos: 33.5,61.5 - parent: 82 - type: Transform -- uid: 25170 - type: Catwalk - components: - - pos: 34.5,82.5 - parent: 82 - type: Transform -- uid: 25171 - type: WallReinforced - components: - - pos: 31.5,72.5 - parent: 82 - type: Transform -- uid: 25172 - type: ShuttersNormal - components: - - rot: -1.5707963267948966 rad - pos: 25.5,65.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -363293.28 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25178 - type: SignalReceiver -- uid: 25173 - type: ShuttersNormal - components: - - pos: 28.5,67.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -363293.28 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25178 - type: SignalReceiver -- uid: 25174 - type: ShuttersNormal - components: - - pos: 27.5,67.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -363293.28 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25178 - type: SignalReceiver -- uid: 25175 - type: ShuttersNormal - components: - - pos: 28.5,62.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -363293.28 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25178 - type: SignalReceiver -- uid: 25176 - type: ShuttersNormal - components: - - pos: 26.5,62.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -363293.28 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25178 - type: SignalReceiver -- uid: 25177 - type: ShuttersNormal - components: - - pos: 27.5,62.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -363293.28 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25178 - type: SignalReceiver -- uid: 25178 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: 25.707867,66.51041 - parent: 82 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 25172 - - port: Toggle - uid: 7715 - - port: Toggle - uid: 25174 - - port: Toggle - uid: 25173 - - port: Toggle - uid: 25176 - - port: Toggle - uid: 25177 - - port: Toggle - uid: 25175 - type: SignalTransmitter -- uid: 25179 - type: CableHV - components: - - pos: -28.5,20.5 - parent: 82 - type: Transform -- uid: 25180 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: -6.5,36.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -361985.2 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver -- uid: 25181 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: -11.5,33.5 - parent: 82 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 25165 - - port: Toggle - uid: 12511 - - port: Toggle - uid: 12510 - - port: Toggle - uid: 12512 - - port: Toggle - uid: 22726 - - port: Toggle - uid: 12514 - - port: Toggle - uid: 12515 - - port: Toggle - uid: 25180 - - port: Toggle - uid: 25182 - type: SignalTransmitter -- uid: 25182 - type: ShuttersNormalOpen - components: - - pos: -11.5,35.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25181 - type: SignalReceiver -- uid: 25183 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,34.5 - parent: 82 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25184 - type: Railing - components: - - pos: -5.5,16.5 - parent: 82 - type: Transform -- uid: 25185 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -5.5,12.5 - parent: 82 - type: Transform -- uid: 25186 - type: PortableScrubber - components: - - pos: 30.5,13.5 - parent: 82 - type: Transform -- uid: 25187 - type: PortableScrubber - components: - - pos: 30.5,12.5 - parent: 82 - type: Transform -- uid: 25188 - type: CableApcExtension - components: - - pos: 21.5,-82.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25189 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: -0.5,6.5 - parent: 82 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 28 - type: SignalTransmitter -- uid: 25190 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: 5.5,6.5 - parent: 82 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 27 - type: SignalTransmitter -- uid: 25191 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: 11.5,6.5 - parent: 82 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 17 - type: SignalTransmitter -- uid: 25192 - type: CableApcExtension - components: - - pos: -53.5,38.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25193 - type: CableApcExtension - components: - - pos: -52.5,38.5 - parent: 82 - type: Transform -- uid: 25194 - type: CableApcExtension - components: - - pos: -51.5,38.5 - parent: 82 - type: Transform -- uid: 25195 - type: CableApcExtension - components: - - pos: -50.5,38.5 - parent: 82 - type: Transform -- uid: 25196 - type: CableApcExtension - components: - - pos: -53.5,47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25197 - type: CableApcExtension - components: - - pos: -52.5,47.5 - parent: 82 - type: Transform -- uid: 25198 - type: CableApcExtension - components: - - pos: -51.5,47.5 - parent: 82 - type: Transform -- uid: 25199 - type: CableApcExtension - components: - - pos: -50.5,47.5 - parent: 82 - type: Transform -- uid: 25200 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -49.5,46.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25201 - type: Poweredlight - components: - - pos: -49.5,48.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25202 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,39.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25203 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,37.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25204 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,48.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25205 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,46.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25206 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,1.5 - parent: 82 - type: Transform -- uid: 25207 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,0.5 - parent: 82 - type: Transform -- uid: 25208 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-0.5 - parent: 82 - type: Transform -- uid: 25209 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-1.5 - parent: 82 - type: Transform -- uid: 25210 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-2.5 - parent: 82 - type: Transform -- uid: 25211 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-3.5 - parent: 82 - type: Transform -- uid: 25212 - type: CableHV - components: - - pos: -29.5,20.5 - parent: 82 - type: Transform -- uid: 25213 - type: CableHV - components: - - pos: -29.5,19.5 - parent: 82 - type: Transform -- uid: 25214 - type: BedsheetBlack - components: - - rot: 3.141592653589793 rad - pos: -13.5,10.5 - parent: 82 - type: Transform -- uid: 25215 - type: HospitalCurtainsOpen - components: - - pos: -13.5,10.5 - parent: 82 - type: Transform -- uid: 25216 - type: WindoorEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: 27.5,5.5 - parent: 82 - type: Transform -- uid: 25217 - type: Crematorium - components: - - rot: 3.141592653589793 rad - pos: -14.5,7.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25218 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -39.5,-43.5 - parent: 82 - type: Transform -- uid: 25219 - type: HospitalCurtains - components: - - pos: -41.5,-40.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -356071.5 - state: Opening - type: Door -- uid: 25220 - type: TableGlass - components: - - pos: -38.5,-43.5 - parent: 82 - type: Transform -- uid: 25221 - type: TableGlass - components: - - pos: -38.5,-41.5 - parent: 82 - type: Transform -- uid: 25222 - type: Syringe - components: - - pos: -38.45715,-43.45896 - parent: 82 - type: Transform -- uid: 25223 - type: StasisBedMachineCircuitboard - components: - - pos: -42.35751,-34.29305 - parent: 82 - type: Transform -- uid: 25224 - type: ClothingNeckStethoscope - components: - - pos: -42.38529,-34.390274 - parent: 82 - type: Transform -- uid: 25225 - type: ShuttersNormal - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-35.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -354926.34 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25230 - type: SignalReceiver -- uid: 25226 - type: ShuttersNormal - components: - - pos: -45.5,-33.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -354926.34 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25230 - type: SignalReceiver -- uid: 25227 - type: ShuttersNormal - components: - - pos: -44.5,-33.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -354926.34 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25230 - type: SignalReceiver -- uid: 25228 - type: ShuttersNormal - components: - - pos: -42.5,-33.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -354926.34 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25230 - type: SignalReceiver -- uid: 25229 - type: ShuttersNormal - components: - - pos: -41.5,-33.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -354926.34 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25230 - type: SignalReceiver -- uid: 25230 - type: SignalButton - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-36.5 - parent: 82 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 25225 - - port: Toggle - uid: 19399 - - port: Toggle - uid: 25226 - - port: Toggle - uid: 25228 - - port: Toggle - uid: 25229 - - port: Toggle - uid: 25227 - type: SignalTransmitter -- uid: 25231 - type: SignMorgue - components: - - pos: -56.5,-29.5 - parent: 82 - type: Transform -- uid: 25232 - type: SignMorgue - components: - - pos: -54.5,-29.5 - parent: 82 - type: Transform -- uid: 25233 - type: Window - components: - - pos: -53.5,-30.5 - parent: 82 - type: Transform -- uid: 25234 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-43.5 - parent: 82 - type: Transform -- uid: 25235 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-42.5 - parent: 82 - type: Transform -- uid: 25236 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-41.5 - parent: 82 - type: Transform -- uid: 25237 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-44.5 - parent: 82 - type: Transform -- uid: 25238 - type: MedkitFilled - components: - - pos: -23.463266,-27.397388 - parent: 82 - type: Transform -- uid: 25239 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-38.5 - parent: 82 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 25240 - type: BedsheetMedical - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-41.5 - parent: 82 - type: Transform -- uid: 25241 - type: BedsheetMedical - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-43.5 - parent: 82 - type: Transform -- uid: 25242 - type: BedsheetMedical - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-43.5 - parent: 82 - type: Transform -- uid: 25243 - type: BedsheetMedical - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-41.5 - parent: 82 - type: Transform -- uid: 25244 - type: AirlockMaintMedLocked - components: - - pos: -40.5,-45.5 - parent: 82 - type: Transform -- uid: 25245 - type: WarpPoint - components: - - pos: 7.5,15.5 - parent: 82 - type: Transform - - location: Atmos - type: WarpPoint -- uid: 25246 - type: WarpPoint - components: - - pos: 44.5,27.5 - parent: 82 - type: Transform - - location: Cargo - type: WarpPoint -- uid: 25247 - type: WarpPoint - components: - - pos: 19.5,65.5 - parent: 82 - type: Transform - - location: Science - type: WarpPoint -- uid: 25248 - type: WarpPoint - components: - - pos: -19.5,44.5 - parent: 82 - type: Transform - - location: Engineering - type: WarpPoint -- uid: 25249 - type: WarpPoint - components: - - pos: 7.5,-35.5 - parent: 82 - type: Transform - - location: Dorms - type: WarpPoint -- uid: 25250 - type: WarpPoint - components: - - pos: -26.5,-29.5 - parent: 82 - type: Transform - - location: Medbay - type: WarpPoint -- uid: 25251 - type: SignDisposalSpace - components: - - pos: -61.5,-33.5 - parent: 82 - type: Transform -- uid: 25252 - type: AtmosDeviceFanTiny - components: - - pos: 49.5,21.5 - parent: 82 - type: Transform -- uid: 25253 - type: CableApcExtension - components: - - pos: -64.5,-39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25254 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-39.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25255 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-52.5 - parent: 82 - type: Transform -- uid: 25256 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-53.5 - parent: 82 - type: Transform -- uid: 25257 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-54.5 - parent: 82 - type: Transform -- uid: 25258 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-54.5 - parent: 82 - type: Transform -- uid: 25259 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-54.5 - parent: 82 - type: Transform -- uid: 25260 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-54.5 - parent: 82 - type: Transform -- uid: 25261 - type: PosterContrabandPunchShit - components: - - pos: 16.5,-54.5 - parent: 82 - type: Transform -- uid: 25262 - type: FigureSpawner - components: - - pos: 16.5,-52.5 - parent: 82 - type: Transform -- uid: 25263 - type: FigureSpawner - components: - - pos: 16.5,-52.5 - parent: 82 - type: Transform -- uid: 25264 - type: BirdToyInstrument - components: - - pos: 17.106178,-52.392704 - parent: 82 - type: Transform -- uid: 25265 - type: CableHV - components: - - pos: -29.5,18.5 - parent: 82 - type: Transform -- uid: 25266 - type: OcarinaInstrument - components: - - pos: 17.558746,-52.35314 - parent: 82 - type: Transform -- uid: 25267 - type: SurveillanceCameraSupply - components: - - pos: 42.5,32.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage - type: SurveillanceCamera -- uid: 25268 - type: ShuttersNormal - components: - - pos: 61.5,-6.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -352141.03 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver -- uid: 25269 - type: CableHV - components: - - pos: -29.5,17.5 - parent: 82 - type: Transform -- uid: 25270 - type: TableReinforcedGlass - components: - - pos: -27.5,-28.5 - parent: 82 - type: Transform -- uid: 25271 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-7.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -352141.03 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver -- uid: 25272 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-8.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -352141.03 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver -- uid: 25273 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-10.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -352141.03 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver -- uid: 25274 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-11.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -352141.03 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver -- uid: 25275 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-9.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -352141.03 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver -- uid: 25276 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-14.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -352141.03 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver -- uid: 25277 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-15.5 - parent: 82 - type: Transform - - SecondsUntilStateChange: -352141.03 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3190 - type: SignalReceiver -- uid: 25278 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-39.5 - parent: 82 - type: Transform - - devices: - - 1185 - - 20068 - - 20032 - - 20045 - - 20069 - - 20062 - - 22369 - - 8849 - - 8850 - - 22370 - type: DeviceList -- uid: 25279 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-38.5 - parent: 82 - type: Transform - - devices: - - 22369 - - 8849 - - 22370 - - 8850 - type: DeviceList -- uid: 25280 - type: AtmosDeviceFanTiny - components: - - pos: 49.5,23.5 - parent: 82 - type: Transform -- uid: 25281 - type: ClothingHeadHatCone - components: - - pos: 31.463772,30.56995 - parent: 82 - type: Transform -- uid: 25282 - type: AirlockMaintCaptainLocked - components: - - pos: 24.5,2.5 - parent: 82 - type: Transform -- uid: 25283 - type: WallReinforced - components: - - pos: 25.5,2.5 - parent: 82 - type: Transform -- uid: 25284 - type: WallReinforced - components: - - pos: 26.5,2.5 - parent: 82 - type: Transform -- uid: 25285 - type: WallReinforced - components: - - pos: 26.5,1.5 - parent: 82 - type: Transform -- uid: 25286 - type: WallReinforced - components: - - pos: 26.5,0.5 - parent: 82 - type: Transform -- uid: 25287 - type: WallReinforced - components: - - pos: 26.5,-0.5 - parent: 82 - type: Transform -- uid: 25288 - type: WallReinforced - components: - - pos: 26.5,-1.5 - parent: 82 - type: Transform -- uid: 25289 - type: WallReinforced - components: - - pos: 25.5,-1.5 - parent: 82 - type: Transform -- uid: 25290 - type: WallReinforced - components: - - pos: 24.5,-1.5 - parent: 82 - type: Transform -- uid: 25291 - type: WallReinforced - components: - - pos: 23.5,-1.5 - parent: 82 - type: Transform -- uid: 25292 - type: CableMV - components: - - pos: -25.5,79.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25293 - type: AirlockCaptainLocked - components: - - pos: 22.5,-1.5 - parent: 82 - type: Transform -- uid: 25294 - type: CableMV - components: - - pos: -33.5,72.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25295 - type: CableMV - components: - - pos: -16.5,72.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25296 - type: CableMV - components: - - pos: -17.5,72.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25297 - type: CableHV - components: - - pos: -15.5,72.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25298 - type: CableHV - components: - - pos: -34.5,72.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25299 - type: CableHV - components: - - pos: -35.5,72.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25300 - type: WarpPoint - components: - - pos: 7.5,-11.5 - parent: 82 - type: Transform - - location: Bridge - type: WarpPoint -- uid: 25301 - type: SpawnPointObserver - components: - - pos: 7.5,-2.5 - parent: 82 - type: Transform -- uid: 25302 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-23.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25303 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-30.5 - parent: 82 - type: Transform -- uid: 25304 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-40.5 - parent: 82 - type: Transform -- uid: 25305 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-44.5 - parent: 82 - type: Transform -- uid: 25306 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-42.5 - parent: 82 - type: Transform -- uid: 25307 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-42.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25308 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-44.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25309 - type: WarpPoint - components: - - pos: 51.5,-42.5 - parent: 82 - type: Transform - - location: Permabrig - type: WarpPoint -- uid: 25310 - type: PowerCellRecharger - components: - - pos: 26.5,6.5 - parent: 82 - type: Transform -- uid: 25311 - type: CableApcExtension - components: - - pos: 34.5,32.5 - parent: 82 - type: Transform -- uid: 25312 - type: CableApcExtension - components: - - pos: 21.5,-81.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25313 - type: CableApcExtension - components: - - pos: 19.5,-86.5 - parent: 82 - type: Transform -- uid: 25314 - type: CableApcExtension - components: - - pos: 19.5,-85.5 - parent: 82 - type: Transform -- uid: 25315 - type: CableApcExtension - components: - - pos: 19.5,-84.5 - parent: 82 - type: Transform -- uid: 25316 - type: CableApcExtension - components: - - pos: 19.5,-83.5 - parent: 82 - type: Transform -- uid: 25317 - type: CableApcExtension - components: - - pos: 19.5,-82.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25318 - type: CableApcExtension - components: - - pos: 19.5,-81.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25319 - type: PortableFlasher - components: - - pos: 49.5,-16.5 - parent: 82 - type: Transform -- uid: 25320 - type: DisposalPipe - components: - - pos: 27.5,57.5 - parent: 82 - type: Transform -- uid: 25321 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: 47.5,19.5 - parent: 82 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 699 - type: SignalTransmitter -- uid: 25322 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: 48.5,19.5 - parent: 82 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1424 - type: SignalTransmitter -- uid: 25323 - type: SignalButton - components: - - pos: 47.5,25.5 - parent: 82 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 700 - type: SignalTransmitter -- uid: 25324 - type: SignalButton - components: - - pos: 48.5,25.5 - parent: 82 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1425 - type: SignalTransmitter -- uid: 25325 - type: TwoWayLever - components: - - pos: 45.5,25.5 - parent: 82 - type: Transform - - outputs: - Left: - - port: Forward - uid: 1458 - - port: Forward - uid: 1457 - - port: Forward - uid: 1456 - - port: Forward - uid: 1294 - - port: Forward - uid: 1455 - Right: - - port: Reverse - uid: 1458 - - port: Reverse - uid: 1457 - - port: Reverse - uid: 1456 - - port: Reverse - uid: 1294 - - port: Reverse - uid: 1455 - Middle: - - port: Off - uid: 1458 - - port: Off - uid: 1457 - - port: Off - uid: 1456 - - port: Off - uid: 1294 - - port: Off - uid: 1455 - type: SignalTransmitter -- uid: 25326 - type: TwoWayLever - components: - - pos: 45.5,19.5 - parent: 82 - type: Transform - - outputs: - Left: - - port: Forward - uid: 1470 - - port: Forward - uid: 1471 - - port: Forward - uid: 1472 - - port: Forward - uid: 1473 - - port: Forward - uid: 1474 - Right: - - port: Reverse - uid: 1470 - - port: Reverse - uid: 1471 - - port: Reverse - uid: 1472 - - port: Reverse - uid: 1473 - - port: Reverse - uid: 1474 - Middle: - - port: Off - uid: 1470 - - port: Off - uid: 1471 - - port: Off - uid: 1472 - - port: Off - uid: 1473 - - port: Off - uid: 1474 - type: SignalTransmitter -- uid: 25327 - type: PoweredSmallLight - components: - - pos: 22.5,27.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25328 - type: SpawnPointServiceWorker - components: - - pos: -13.5,24.5 - parent: 82 - type: Transform -- uid: 25329 - type: SpawnPointServiceWorker - components: - - pos: -14.5,24.5 - parent: 82 - type: Transform -- uid: 25330 - type: SpawnPointServiceWorker - components: - - pos: -30.5,-14.5 - parent: 82 - type: Transform -- uid: 25331 - type: CableHVStack - components: - - pos: -31.544199,64.51841 - parent: 82 - type: Transform -- uid: 25332 - type: WallReinforced - components: - - pos: -65.5,-31.5 - parent: 82 - type: Transform -- uid: 25333 - type: ReinforcedWindow - components: - - pos: -64.5,-31.5 - parent: 82 - type: Transform -- uid: 25334 - type: ReinforcedWindow - components: - - pos: -63.5,-31.5 - parent: 82 - type: Transform -- uid: 25335 - type: Grille - components: - - pos: -63.5,-31.5 - parent: 82 - type: Transform -- uid: 25336 - type: Grille - components: - - pos: -64.5,-31.5 - parent: 82 - type: Transform -- uid: 25337 - type: DisposalTrunk - components: - - pos: -62.5,-32.5 - parent: 82 - type: Transform -- uid: 25338 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-30.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25339 - type: CableApcExtension - components: - - pos: -12.5,-7.5 - parent: 82 - type: Transform -- uid: 25340 - type: CableApcExtension - components: - - pos: -10.5,-7.5 - parent: 82 - type: Transform -- uid: 25341 - type: CableApcExtension - components: - - pos: -11.5,-8.5 - parent: 82 - type: Transform -- uid: 25342 - type: CableApcExtension - components: - - pos: -12.5,-8.5 - parent: 82 - type: Transform -- uid: 25343 - type: CableApcExtension - components: - - pos: -12.5,-6.5 - parent: 82 - type: Transform -- uid: 25344 - type: CableApcExtension - components: - - pos: -10.5,-6.5 - parent: 82 - type: Transform -- uid: 25345 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-6.5 - parent: 82 - type: Transform - - devices: - - 10307 - - 10320 - - 10393 - - 22383 - - 22382 - - 10394 - - 22386 - - 22388 - - 22387 - - 22389 - - 22385 - type: DeviceList -- uid: 25346 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-12.5 - parent: 82 - type: Transform - - devices: - - 22577 - - 10299 - - 22381 - - 8859 - - 22380 - - 22581 - type: DeviceList -- uid: 25347 - type: PottedPlantRandom - components: - - pos: 18.5,52.5 - parent: 82 - type: Transform -- uid: 25348 - type: Chair - components: - - pos: 19.5,52.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25349 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: -50.5,36.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25350 - type: ReinforcedWindow - components: - - pos: 67.5,8.5 - parent: 82 - type: Transform -- uid: 25351 - type: ReinforcedWindow - components: - - pos: 68.5,8.5 - parent: 82 - type: Transform -- uid: 25352 - type: ReinforcedWindow - components: - - pos: 69.5,8.5 - parent: 82 - type: Transform -- uid: 25353 - type: ClothingHeadHatBowlerHat - components: - - pos: 63.468517,8.497295 - parent: 82 - type: Transform -- uid: 25354 - type: WallSolid - components: - - pos: 55.5,8.5 - parent: 82 - type: Transform -- uid: 25355 - type: WallSolid - components: - - pos: 56.5,8.5 - parent: 82 - type: Transform -- uid: 25356 - type: WallSolid - components: - - pos: 57.5,8.5 - parent: 82 - type: Transform -- uid: 25357 - type: WallSolid - components: - - pos: 58.5,8.5 - parent: 82 - type: Transform -- uid: 25358 - type: WallReinforced - components: - - pos: 64.5,8.5 - parent: 82 - type: Transform -- uid: 25359 - type: WallReinforced - components: - - pos: 56.5,10.5 - parent: 82 - type: Transform -- uid: 25360 - type: Grille - components: - - pos: 59.5,10.5 - parent: 82 - type: Transform -- uid: 25361 - type: Grille - components: - - pos: 60.5,10.5 - parent: 82 - type: Transform -- uid: 25362 - type: Grille - components: - - pos: 61.5,10.5 - parent: 82 - type: Transform -- uid: 25363 - type: Grille - components: - - pos: 62.5,10.5 - parent: 82 - type: Transform -- uid: 25364 - type: ReinforcedWindow - components: - - pos: 59.5,10.5 - parent: 82 - type: Transform -- uid: 25365 - type: ReinforcedWindow - components: - - pos: 60.5,10.5 - parent: 82 - type: Transform -- uid: 25366 - type: ReinforcedWindow - components: - - pos: 61.5,10.5 - parent: 82 - type: Transform -- uid: 25367 - type: ReinforcedWindow - components: - - pos: 62.5,10.5 - parent: 82 - type: Transform -- uid: 25368 - type: WallReinforced - components: - - pos: 57.5,10.5 - parent: 82 - type: Transform -- uid: 25369 - type: WallReinforced - components: - - pos: 58.5,10.5 - parent: 82 - type: Transform -- uid: 25370 - type: WallReinforced - components: - - pos: 63.5,10.5 - parent: 82 - type: Transform -- uid: 25371 - type: WallReinforced - components: - - pos: 64.5,10.5 - parent: 82 - type: Transform -- uid: 25372 - type: WallReinforced - components: - - pos: 65.5,10.5 - parent: 82 - type: Transform -- uid: 25373 - type: WallReinforced - components: - - pos: 66.5,10.5 - parent: 82 - type: Transform -- uid: 25374 - type: WallReinforced - components: - - pos: 67.5,10.5 - parent: 82 - type: Transform -- uid: 25375 - type: WallReinforced - components: - - pos: 68.5,10.5 - parent: 82 - type: Transform -- uid: 25376 - type: WallReinforced - components: - - pos: 69.5,10.5 - parent: 82 - type: Transform -- uid: 25377 - type: WallReinforced - components: - - pos: 70.5,10.5 - parent: 82 - type: Transform -- uid: 25378 - type: WallReinforced - components: - - pos: 71.5,10.5 - parent: 82 - type: Transform -- uid: 25379 - type: WallReinforced - components: - - pos: 72.5,10.5 - parent: 82 - type: Transform -- uid: 25380 - type: WallReinforced - components: - - pos: 59.5,7.5 - parent: 82 - type: Transform -- uid: 25381 - type: WallReinforced - components: - - pos: 60.5,7.5 - parent: 82 - type: Transform -- uid: 25382 - type: WallReinforced - components: - - pos: 61.5,7.5 - parent: 82 - type: Transform -- uid: 25383 - type: WallReinforced - components: - - pos: 62.5,7.5 - parent: 82 - type: Transform -- uid: 25384 - type: WallReinforced - components: - - pos: 63.5,7.5 - parent: 82 - type: Transform -- uid: 25385 - type: WallReinforced - components: - - pos: 64.5,7.5 - parent: 82 - type: Transform -- uid: 25386 - type: PoweredSmallLight - components: - - pos: 64.5,9.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25387 - type: CableApcExtension - components: - - pos: 55.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25388 - type: CableApcExtension - components: - - pos: 56.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25389 - type: CableApcExtension - components: - - pos: 57.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25390 - type: CableApcExtension - components: - - pos: 58.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25391 - type: CableApcExtension - components: - - pos: 59.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25392 - type: CableApcExtension - components: - - pos: 60.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25393 - type: CableApcExtension - components: - - pos: 61.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25394 - type: CableApcExtension - components: - - pos: 62.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25395 - type: CableApcExtension - components: - - pos: 63.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25396 - type: CableApcExtension - components: - - pos: 64.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25397 - type: CableApcExtension - components: - - pos: 65.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25398 - type: CableApcExtension - components: - - pos: 66.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25399 - type: CableApcExtension - components: - - pos: 67.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25400 - type: CableApcExtension - components: - - pos: 68.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25401 - type: CableApcExtension - components: - - pos: 69.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25402 - type: CableApcExtension - components: - - pos: 70.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25403 - type: CableApcExtension - components: - - pos: 71.5,9.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25404 - type: CableApcExtension - components: - - pos: 72.5,5.5 - parent: 82 - type: Transform -- uid: 25405 - type: CableApcExtension - components: - - pos: 72.5,6.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25406 - type: CableApcExtension - components: - - pos: 72.5,7.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25407 - type: CableApcExtension - components: - - pos: 73.5,7.5 - parent: 82 - type: Transform -- uid: 25408 - type: CableApcExtension - components: - - pos: 74.5,7.5 - parent: 82 - type: Transform -- uid: 25409 - type: Catwalk - components: - - pos: 71.5,9.5 - parent: 82 - type: Transform -- uid: 25410 - type: Catwalk - components: - - pos: 70.5,9.5 - parent: 82 - type: Transform -- uid: 25411 - type: Catwalk - components: - - pos: 69.5,9.5 - parent: 82 - type: Transform -- uid: 25412 - type: Catwalk - components: - - pos: 68.5,9.5 - parent: 82 - type: Transform -- uid: 25413 - type: Catwalk - components: - - pos: 67.5,9.5 - parent: 82 - type: Transform -- uid: 25414 - type: Catwalk - components: - - pos: 66.5,9.5 - parent: 82 - type: Transform -- uid: 25415 - type: Catwalk - components: - - pos: 65.5,9.5 - parent: 82 - type: Transform -- uid: 25416 - type: Catwalk - components: - - pos: 64.5,9.5 - parent: 82 - type: Transform -- uid: 25417 - type: Grille - components: - - pos: 20.5,53.5 - parent: 82 - type: Transform -- uid: 25418 - type: Grille - components: - - pos: 19.5,53.5 - parent: 82 - type: Transform -- uid: 25419 - type: Grille - components: - - pos: 18.5,53.5 - parent: 82 - type: Transform -- uid: 25420 - type: ReinforcedWindow - components: - - pos: 18.5,53.5 - parent: 82 - type: Transform -- uid: 25421 - type: ReinforcedWindow - components: - - pos: 19.5,53.5 - parent: 82 - type: Transform -- uid: 25422 - type: Catwalk - components: - - pos: 58.5,9.5 - parent: 82 - type: Transform -- uid: 25423 - type: Catwalk - components: - - pos: 57.5,9.5 - parent: 82 - type: Transform -- uid: 25424 - type: Catwalk - components: - - pos: 56.5,9.5 - parent: 82 - type: Transform -- uid: 25425 - type: Catwalk - components: - - pos: 55.5,9.5 - parent: 82 - type: Transform -- uid: 25426 - type: Rack - components: - - pos: 59.5,8.5 - parent: 82 - type: Transform -- uid: 25427 - type: Rack - components: - - pos: 60.5,8.5 - parent: 82 - type: Transform -- uid: 25428 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 63.5,8.5 - parent: 82 - type: Transform -- uid: 25429 - type: MaintenanceFluffSpawner - components: - - pos: 60.5,8.5 - parent: 82 - type: Transform -- uid: 25430 - type: Table - components: - - pos: 62.5,8.5 - parent: 82 - type: Transform -- uid: 25431 - type: RandomSpawner - components: - - pos: 62.5,8.5 - parent: 82 - type: Transform -- uid: 25432 - type: WallReinforced - components: - - pos: 70.5,7.5 - parent: 82 - type: Transform -- uid: 25433 - type: WallReinforced - components: - - pos: 70.5,6.5 - parent: 82 - type: Transform -- uid: 25434 - type: AirlockMaintLocked - components: - - pos: 72.5,5.5 - parent: 82 - type: Transform -- uid: 25435 - type: AirlockMaintLocked - components: - - pos: 73.5,7.5 - parent: 82 - type: Transform -- uid: 25436 - type: SignScience - components: - - pos: 21.5,56.5 - parent: 82 - type: Transform -- uid: 25437 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 20.5,55.5 - parent: 82 - type: Transform -- uid: 25438 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 20.5,54.5 - parent: 82 - type: Transform -- uid: 25439 - type: PlasmaReinforcedWindowDirectional - components: - - pos: -60.5,-14.5 - parent: 82 - type: Transform -- uid: 25440 - type: WallReinforced - components: - - pos: -60.5,-13.5 - parent: 82 - type: Transform -- uid: 25441 - type: RandomPosterContraband - components: - - pos: 70.5,7.5 - parent: 82 - type: Transform -- uid: 25442 - type: ReinforcedWindow - components: - - pos: 20.5,53.5 - parent: 82 - type: Transform -- uid: 25443 - type: DrinkGlass - components: - - pos: -14.255993,23.775455 - parent: 82 - type: Transform -- uid: 25444 - type: DrinkGlass - components: - - pos: -14.394882,23.594898 - parent: 82 - type: Transform -- uid: 25445 - type: DrinkMugMetal - components: - - pos: -14.65877,23.442123 - parent: 82 - type: Transform -- uid: 25446 - type: DrinkMugRed - components: - - pos: -14.630993,23.719898 - parent: 82 - type: Transform -- uid: 25447 - type: DrinkMugBlue - components: - - pos: -14.839325,23.539345 - parent: 82 - type: Transform -- uid: 25448 - type: HolofanProjector - components: - - pos: -9.480301,35.747223 - parent: 82 - type: Transform -- uid: 25449 - type: WarpPoint - components: - - name: AI - type: MetaData - - pos: 20.5,-92.5 - parent: 82 - type: Transform - - location: AI - type: WarpPoint -- uid: 25450 - type: WarpPoint - components: - - pos: 79.5,3.5 - parent: 82 - type: Transform - - location: Arrivals - type: WarpPoint -- uid: 25451 - type: WarpPoint - components: - - pos: -58.5,41.5 - parent: 82 - type: Transform - - location: Evac - type: WarpPoint -- uid: 25452 - type: CrowbarRed - components: - - pos: 40.567684,-7.455921 - parent: 82 - type: Transform -- uid: 25453 - type: CableApcExtension - components: - - pos: -37.5,-7.5 - parent: 82 - type: Transform -- uid: 25454 - type: CableApcExtension - components: - - pos: -37.5,-6.5 - parent: 82 - type: Transform -- uid: 25455 - type: CableApcExtension - components: - - pos: -37.5,-5.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25456 - type: Poweredlight - components: - - pos: -42.5,-2.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25457 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-26.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25458 - type: Poweredlight - components: - - pos: -23.5,-32.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25459 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-35.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25460 - type: Poweredlight - components: - - pos: -8.5,-32.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25461 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-43.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25462 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-40.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25463 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-14.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25464 - type: Poweredlight - components: - - pos: 22.5,-27.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25465 - type: Poweredlight - components: - - pos: 27.5,-30.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25466 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-16.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25467 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-16.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25468 - type: Poweredlight - components: - - pos: 40.5,-7.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25469 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-9.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25470 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-5.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25471 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-5.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25472 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 51.5,-5.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25473 - type: CableHV - components: - - pos: -17.5,70.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25474 - type: CableHV - components: - - pos: -17.5,69.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25475 - type: FoodFrozenPopsicleTrash - components: - - pos: -45.29112,-21.498451 - parent: 82 - type: Transform -- uid: 25476 - type: ClothingOuterWinterCentcom - components: - - pos: -55.567127,56.438675 - parent: 82 - type: Transform -- uid: 25477 - type: PowerCellRecharger - components: - - pos: 23.5,-9.5 - parent: 82 - type: Transform -- uid: 25478 - type: AirlockPainter - components: - - pos: 24.20533,-9.416981 - parent: 82 - type: Transform -- uid: 25479 - type: WallReinforced - components: - - pos: 50.5,53.5 - parent: 82 - type: Transform -- uid: 25480 - type: WallReinforced - components: - - pos: 51.5,51.5 - parent: 82 - type: Transform -- uid: 25481 - type: WallReinforced - components: - - pos: 50.5,51.5 - parent: 82 - type: Transform -- uid: 25482 - type: FireAlarm - components: - - pos: 43.5,5.5 - parent: 82 - type: Transform - - devices: - - 22471 - - 22473 - - 22605 - - 22779 - - 22778 - - 22777 - - 22391 - - 10396 - - 22534 - - 22390 - - 10395 - type: DeviceList -- uid: 25483 - type: SignDirectionalEvac - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 82 - type: Transform -- uid: 25484 - type: PowerCellRecharger - components: - - pos: -16.5,34.5 - parent: 82 - type: Transform -- uid: 25485 - type: WallSolid - components: - - pos: 73.5,9.5 - parent: 82 - type: Transform -- uid: 25486 - type: Poweredlight - components: - - pos: -40.5,-39.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25487 - type: PowerCellRecharger - components: - - pos: -51.5,-28.5 - parent: 82 - type: Transform -- uid: 25488 - type: PowerCellRecharger - components: - - pos: 1.5,37.5 - parent: 82 - type: Transform -- uid: 25489 - type: PowerCellRecharger - components: - - pos: -59.5,48.5 - parent: 82 - type: Transform -- uid: 25490 - type: PowerCellRecharger - components: - - pos: 46.5,26.5 - parent: 82 - type: Transform -- uid: 25492 - type: FireAlarm - components: - - pos: 73.5,5.5 - parent: 82 - type: Transform - - devices: - - 5623 - - 5622 - - 5619 - - invalid - - invalid - - 5618 - - 5611 - - 5610 - - 5609 - - invalid - - invalid - type: DeviceList -- uid: 25493 - type: SheetPlasma1 - components: - - pos: -35.59825,-28.447758 - parent: 82 - type: Transform - - count: 5 - type: Stack -- uid: 25494 - type: CableHV - components: - - pos: -29.5,16.5 - parent: 82 - type: Transform -- uid: 25495 - type: WallWeaponCapacitorRecharger - components: - - pos: 50.5,-14.5 - parent: 82 - type: Transform -- uid: 25496 - type: PowerCellRecharger - components: - - pos: 40.5,-14.5 - parent: 82 - type: Transform -- uid: 25497 - type: FireAlarm - components: - - pos: 80.5,11.5 - parent: 82 - type: Transform - - devices: - - 5618 - - 5611 - - 5610 - - 5609 - type: DeviceList -- uid: 25498 - type: FireAlarm - components: - - pos: 59.5,5.5 - parent: 82 - type: Transform - - devices: - - 10565 - - 22769 - - 22774 - - 22773 - - 22772 - - 10489 - type: DeviceList -- uid: 25499 - type: SignDirectionalEvac - components: - - rot: -1.5707963267948966 rad - pos: 30.494177,52.98526 - parent: 82 - type: Transform -- uid: 25500 - type: SignDirectionalEvac - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 82 - type: Transform -- uid: 25501 - type: AsteroidRock - components: - - pos: 53.5,51.5 - parent: 82 - type: Transform -- uid: 25502 - type: AsteroidRock - components: - - pos: 53.5,52.5 - parent: 82 - type: Transform -- uid: 25504 - type: AsteroidRock - components: - - pos: 50.5,55.5 - parent: 82 - type: Transform -- uid: 25505 - type: AsteroidRock - components: - - pos: 49.5,56.5 - parent: 82 - type: Transform -- uid: 25506 - type: AsteroidRock - components: - - pos: 49.5,57.5 - parent: 82 - type: Transform -- uid: 25507 - type: AsteroidRock - components: - - pos: 48.5,58.5 - parent: 82 - type: Transform -- uid: 25508 - type: AsteroidRock - components: - - pos: 51.5,55.5 - parent: 82 - type: Transform -- uid: 25509 - type: Claymore - components: - - name: Maintscalibur - type: MetaData - - pos: 33.46861,68.93209 - parent: 82 - type: Transform - - nextAttack: 2404.9252931 - type: MeleeWeapon -- uid: 25510 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 51.5,52.5 - parent: 82 - type: Transform -- uid: 25511 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 51.5,52.5 - parent: 82 - type: Transform -- uid: 25512 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 51.5,52.5 - parent: 82 - type: Transform -- uid: 25513 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 51.5,52.5 - parent: 82 - type: Transform -- uid: 25514 - type: AsteroidRock - components: - - pos: 53.5,49.5 - parent: 82 - type: Transform -- uid: 25515 - type: AsteroidRock - components: - - pos: 54.5,49.5 - parent: 82 - type: Transform -- uid: 25516 - type: AsteroidRock - components: - - pos: 54.5,48.5 - parent: 82 - type: Transform -- uid: 25517 - type: SheetSteel - components: - - pos: 46.473396,62.53585 - parent: 82 - type: Transform -- uid: 25518 - type: SpawnPointZookeeper - components: - - pos: -13.5,-29.5 - parent: 82 - type: Transform -- uid: 25519 - type: ClothingShoesBootsWork - components: - - pos: -14.698534,-29.390446 - parent: 82 - type: Transform -- uid: 25520 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 20.5,26.5 - parent: 82 - type: Transform -- uid: 25521 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 20.5,25.5 - parent: 82 - type: Transform -- uid: 25522 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 20.5,24.5 - parent: 82 - type: Transform -- uid: 25523 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 20.5,23.5 - parent: 82 - type: Transform -- uid: 25524 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-43.5 - parent: 82 - type: Transform -- uid: 25525 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-43.5 - parent: 82 - type: Transform -- uid: 25526 - type: WaterCooler - components: - - pos: -10.5,-43.5 - parent: 82 - type: Transform -- uid: 25527 - type: Grille - components: - - pos: -7.5,-35.5 - parent: 82 - type: Transform -- uid: 25528 - type: Grille - components: - - pos: -7.5,-36.5 - parent: 82 - type: Transform -- uid: 25529 - type: Grille - components: - - pos: -7.5,-37.5 - parent: 82 - type: Transform -- uid: 25530 - type: Grille - components: - - pos: -7.5,-38.5 - parent: 82 - type: Transform -- uid: 25531 - type: Grille - components: - - pos: -7.5,-39.5 - parent: 82 - type: Transform -- uid: 25532 - type: Grille - components: - - pos: -7.5,-40.5 - parent: 82 - type: Transform -- uid: 25533 - type: DrinkWaterCup - components: - - pos: -13.303886,-43.254147 - parent: 82 - type: Transform -- uid: 25534 - type: DrinkWaterCup - components: - - pos: -13.484442,-43.490257 - parent: 82 - type: Transform -- uid: 25535 - type: MaintenanceFluffSpawner - components: - - pos: -14.5,-43.5 - parent: 82 - type: Transform -- uid: 25536 - type: Bucket - components: - - pos: 53.469963,-45.798435 - parent: 82 - type: Transform -- uid: 25537 - type: ClothingHandsGlovesBoxingBlue - components: - - pos: -34.38811,47.584187 - parent: 82 - type: Transform -- uid: 25538 - type: ClothingHandsGlovesBoxingRed - components: - - pos: -36.156532,46.507492 - parent: 82 - type: Transform -- uid: 25539 - type: Grille - components: - - pos: -36.5,45.5 - parent: 82 - type: Transform -- uid: 25540 - type: Grille - components: - - pos: -35.5,45.5 - parent: 82 - type: Transform -- uid: 25541 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -34.5,45.5 - parent: 82 - type: Transform -- uid: 25542 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -37.5,48.5 - parent: 82 - type: Transform -- uid: 25543 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -34.5,49.5 - parent: 82 - type: Transform -- uid: 25544 - type: CableApcExtension - components: - - pos: -36.5,45.5 - parent: 82 - type: Transform -- uid: 25545 - type: CableApcExtension - components: - - pos: -35.5,45.5 - parent: 82 - type: Transform -- uid: 25546 - type: CableApcExtension - components: - - pos: -34.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25547 - type: CableApcExtension - components: - - pos: -33.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25548 - type: CableApcExtension - components: - - pos: -33.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25549 - type: CableApcExtension - components: - - pos: -37.5,45.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25550 - type: CableApcExtension - components: - - pos: -33.5,47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25551 - type: CableApcExtension - components: - - pos: -33.5,48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25552 - type: CableApcExtension - components: - - pos: -37.5,47.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25553 - type: CableApcExtension - components: - - pos: -37.5,48.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25554 - type: CableApcExtension - components: - - pos: -37.5,46.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25555 - type: CableApcExtension - components: - - pos: -37.5,49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25556 - type: CableApcExtension - components: - - pos: -33.5,49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25557 - type: CableApcExtension - components: - - pos: -34.5,49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25558 - type: CableApcExtension - components: - - pos: -35.5,49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25559 - type: CableApcExtension - components: - - pos: -36.5,49.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25560 - type: CableApcStack1 - components: - - rot: -1.5707963267948966 rad - pos: -32.590218,50.399235 - parent: 82 - type: Transform -- uid: 25561 - type: CableApcStack1 - components: - - rot: -1.5707963267948966 rad - pos: -33.577583,50.35499 - parent: 82 - type: Transform -- uid: 25562 - type: Spear - components: - - rot: 1.5707963267948966 rad - pos: -35.640743,48.201595 - parent: 82 - type: Transform -- uid: 25563 - type: ChairFolding - components: - - pos: -36.337437,47.353634 - parent: 82 - type: Transform - - folded: True - type: Foldable -- uid: 25564 - type: ShardGlass - components: - - pos: -33.642284,45.703846 - parent: 82 - type: Transform -- uid: 25565 - type: Table - components: - - pos: -35.5,44.5 - parent: 82 - type: Transform -- uid: 25566 - type: SpaceCash - components: - - pos: -35.71758,44.812206 - parent: 82 - type: Transform -- uid: 25567 - type: SpaceCash - components: - - pos: -35.599686,44.502472 - parent: 82 - type: Transform -- uid: 25568 - type: SpaceCash - components: - - pos: -35.363895,44.75321 - parent: 82 - type: Transform -- uid: 25569 - type: SpaceCash - components: - - pos: -35.26074,44.871204 - parent: 82 - type: Transform -- uid: 25570 - type: SpaceCash - components: - - pos: -35.187054,44.443474 - parent: 82 - type: Transform -- uid: 25571 - type: DrinkBottleWhiskey - components: - - pos: -35.747055,44.72371 - parent: 82 - type: Transform -- uid: 25572 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -33.5,45.5 - parent: 82 - type: Transform -- uid: 25573 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -33.5,49.5 - parent: 82 - type: Transform -- uid: 25574 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -37.5,45.5 - parent: 82 - type: Transform -- uid: 25575 - type: GrilleBroken - components: - - pos: -37.5,47.5 - parent: 82 - type: Transform -- uid: 25576 - type: CrateServiceReplacementLights - components: - - pos: 38.5,10.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25577 - type: MonkeyCubeWrapped - components: - - pos: -14.914494,-36.71421 - parent: 82 - type: Transform -- uid: 25578 - type: MonkeyCubeWrapped - components: - - pos: -15.2239685,-37.14194 - parent: 82 - type: Transform -- uid: 25579 - type: FloorTileItemEighties - components: - - pos: -10.34844,26.592274 - parent: 82 - type: Transform -- uid: 25580 - type: SignDirectionalMed - components: - - pos: -24.492855,28.254082 - parent: 82 - type: Transform -- uid: 25581 - type: SignDirectionalMed - components: - - pos: 34.505165,5.2509594 - parent: 82 - type: Transform -- uid: 25582 - type: SignDirectionalMed - components: - - pos: 30.499422,34.244453 - parent: 82 - type: Transform -- uid: 25583 - type: SignDirectionalMed - components: - - pos: 30.49986,53.21793 - parent: 82 - type: Transform -- uid: 25584 - type: SignDirectionalMed - components: - - pos: -7.5045247,48.98275 - parent: 82 - type: Transform -- uid: 25585 - type: SignDirectionalMed - components: - - pos: -24.483585,7.780532 - parent: 82 - type: Transform -- uid: 25586 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: -20.50356,-1.0257049 - parent: 82 - type: Transform -- uid: 25587 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -53.5,57.5 - parent: 82 - type: Transform -- uid: 25588 - type: PlushieSharkBlue - components: - - pos: 49.497215,26.415047 - parent: 82 - type: Transform -- uid: 25589 - type: CableHV - components: - - pos: -29.5,15.5 - parent: 82 - type: Transform -- uid: 25590 - type: WallReinforced - components: - - pos: -61.5,-14.5 - parent: 82 - type: Transform -- uid: 25591 - type: WallReinforced - components: - - pos: -59.5,-15.5 - parent: 82 - type: Transform -- uid: 25592 - type: WallReinforced - components: - - pos: -60.5,-15.5 - parent: 82 - type: Transform -- uid: 25593 - type: WallReinforced - components: - - pos: -61.5,-15.5 - parent: 82 - type: Transform -- uid: 25594 - type: WallReinforced - components: - - pos: -61.5,-13.5 - parent: 82 - type: Transform -- uid: 25595 - type: WallReinforced - components: - - pos: -59.5,-14.5 - parent: 82 - type: Transform -- uid: 25596 - type: AirlockCommandGlassLocked - components: - - pos: -2.5,-11.5 - parent: 82 - type: Transform -- uid: 25597 - type: AirlockScienceLocked - components: - - pos: 24.5,72.5 - parent: 82 - type: Transform -- uid: 25598 - type: AirlockCargoGlassLocked - components: - - pos: 39.5,20.5 - parent: 82 - type: Transform -- uid: 25599 - type: AirlockCommandGlassLocked - components: - - pos: -0.5,-11.5 - parent: 82 - type: Transform -- uid: 25600 - type: AirlockGlass - components: - - pos: 72.5,1.5 - parent: 82 - type: Transform -- uid: 25601 - type: AirlockGlass - components: - - pos: 73.5,1.5 - parent: 82 - type: Transform -- uid: 25602 - type: AirlockCargoLocked - components: - - pos: 34.5,19.5 - parent: 82 - type: Transform -- uid: 25603 - type: AirlockCargoLocked - components: - - pos: 34.5,20.5 - parent: 82 - type: Transform -- uid: 25604 - type: SignDirectionalSci - components: - - rot: 3.141592653589793 rad - pos: -24.508766,-0.7897842 - parent: 82 - type: Transform -- uid: 25605 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: 16.50056,-1.0440359 - parent: 82 - type: Transform -- uid: 25606 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: 21.500563,-6.25237 - parent: 82 - type: Transform -- uid: 25607 - type: VendingMachineMagivend - components: - - flags: SessionSpecific - type: MetaData - - pos: -37.5,12.5 - parent: 82 - type: Transform -- uid: 25608 - type: AirlockScienceLocked - components: - - pos: 21.5,54.5 - parent: 82 - type: Transform -- uid: 25609 - type: AirlockScienceLocked - components: - - pos: 21.5,55.5 - parent: 82 - type: Transform -- uid: 25610 - type: AirlockFreezerKitchenHydroLocked - components: - - pos: -34.5,-14.5 - parent: 82 - type: Transform -- uid: 25611 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-37.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25612 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-36.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25613 - type: Poweredlight - components: - - pos: -12.5,-38.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25614 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-39.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25615 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-18.5 - parent: 82 - type: Transform -- uid: 25616 - type: BedsheetRD - components: - - pos: 29.5,63.5 - parent: 82 - type: Transform -- uid: 25617 - type: BooksBag - components: - - pos: 23.31687,27.153648 - parent: 82 - type: Transform -- uid: 25618 - type: SignMedical - components: - - pos: -46.5,-33.5 - parent: 82 - type: Transform -- uid: 25619 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: -48.5,-10.5 - parent: 82 - type: Transform -- uid: 25620 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: -48.5,-9.5 - parent: 82 - type: Transform -- uid: 25621 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -49.5,-6.5 - parent: 82 - type: Transform -- uid: 25622 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -52.5,-7.5 - parent: 82 - type: Transform -- uid: 25623 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -48.5,-11.5 - parent: 82 - type: Transform -- uid: 25624 - type: CableMV - components: - - pos: -28.5,15.5 - parent: 82 - type: Transform -- uid: 25625 - type: ReagentContainerSugar - components: - - pos: -30.469599,-12.517266 - parent: 82 - type: Transform -- uid: 25626 - type: FoodContainerEgg - components: - - pos: -30.483797,-12.247635 - parent: 82 - type: Transform -- uid: 25627 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-21.5 - parent: 82 - type: Transform -- uid: 25628 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-22.5 - parent: 82 - type: Transform -- uid: 25630 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -65.5,55.5 - parent: 82 - type: Transform -- uid: 25632 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -62.5,58.5 - parent: 82 - type: Transform -- uid: 25635 - type: BookAtmosAirAlarms - components: - - pos: 26.655422,6.857089 - parent: 82 - type: Transform -- uid: 25636 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -20.5,3.5 - parent: 82 - type: Transform -- uid: 25637 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -20.5,0.5 - parent: 82 - type: Transform -- uid: 25638 - type: hydroponicsSoil - components: - - rot: 3.141592653589793 rad - pos: -19.5,4.5 - parent: 82 - type: Transform -- uid: 25639 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -20.5,3.5 - parent: 82 - type: Transform -- uid: 25640 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -20.5,1.5 - parent: 82 - type: Transform -- uid: 25641 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -20.5,2.5 - parent: 82 - type: Transform -- uid: 25642 - type: CableMV - components: - - pos: -28.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25643 - type: BookAtmosDistro - components: - - pos: 17.670858,17.530788 - parent: 82 - type: Transform -- uid: 25644 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -20.5,2.5 - parent: 82 - type: Transform -- uid: 25645 - type: WallmountTelevision - components: - - rot: 3.141592653589793 rad - pos: -7.5,28.5 - parent: 82 - type: Transform -- uid: 25646 - type: WallmountTelevision - components: - - rot: 3.141592653589793 rad - pos: -32.5,28.5 - parent: 82 - type: Transform -- uid: 25647 - type: WallmountTelevision - components: - - rot: 1.5707963267948966 rad - pos: -24.5,14.5 - parent: 82 - type: Transform -- uid: 25648 - type: RandomPosterLegit - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-12.5 - parent: 82 - type: Transform -- uid: 25649 - type: ComputerTelevision - components: - - pos: -46.5,5.5 - parent: 82 - type: Transform -- uid: 25650 - type: CableMV - components: - - pos: -29.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25651 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -20.5,0.5 - parent: 82 - type: Transform -- uid: 25652 - type: CryostasisBeaker - components: - - pos: -34.40168,-28.247154 - parent: 82 - type: Transform -- uid: 25653 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -47.5,57.5 - parent: 82 - type: Transform -- uid: 25654 - type: PlushieSharkGrey - components: - - pos: 33.544487,-19.657475 - parent: 82 - type: Transform -- uid: 25655 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -2.5,47.5 - parent: 82 - type: Transform -- uid: 25656 - type: GasPipeStraight - components: - - pos: -50.5,-31.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25657 - type: GasPipeStraight - components: - - pos: -50.5,-32.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25658 - type: BookRandom - components: - - pos: 37.869926,18.550026 - parent: 82 - type: Transform -- uid: 25659 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -64.5,55.5 - parent: 82 - type: Transform -- uid: 25660 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -65.5,54.5 - parent: 82 - type: Transform -- uid: 25661 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -65.5,57.5 - parent: 82 - type: Transform -- uid: 25662 - type: Grille - components: - - pos: -48.5,55.5 - parent: 82 - type: Transform -- uid: 25663 - type: Grille - components: - - pos: -47.5,55.5 - parent: 82 - type: Transform -- uid: 25664 - type: WallReinforced - components: - - pos: -46.5,52.5 - parent: 82 - type: Transform -- uid: 25665 - type: WallReinforced - components: - - pos: -50.5,54.5 - parent: 82 - type: Transform -- uid: 25666 - type: WallReinforced - components: - - pos: -51.5,51.5 - parent: 82 - type: Transform -- uid: 25667 - type: Grille - components: - - pos: -52.5,51.5 - parent: 82 - type: Transform -- uid: 25668 - type: CableMV - components: - - pos: -27.5,14.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25669 - type: ReinforcedWindow - components: - - pos: -52.5,51.5 - parent: 82 - type: Transform -- uid: 25670 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -64.5,58.5 - parent: 82 - type: Transform -- uid: 25671 - type: BoxPillCanister - components: - - pos: -35.003773,-28.303917 - parent: 82 - type: Transform -- uid: 25672 - type: WallReinforced - components: - - pos: -49.5,51.5 - parent: 82 - type: Transform -- uid: 25673 - type: ToyAmongPequeno - components: - - pos: 49.5287,41.612507 - parent: 82 - type: Transform -- uid: 25674 - type: FigureSpawner - components: - - pos: 1.5,-1.5 - parent: 82 - type: Transform -- uid: 25675 - type: MaintenanceFluffSpawner - components: - - pos: 7.5,-1.5 - parent: 82 - type: Transform -- uid: 25676 - type: MouseTimedSpawner - components: - - pos: 7.5,-17.5 - parent: 82 - type: Transform -- uid: 25677 - type: AirlockMaintLocked - components: - - pos: -40.5,53.5 - parent: 82 - type: Transform -- uid: 25678 - type: MouseTimedSpawner - components: - - pos: -51.5,-2.5 - parent: 82 - type: Transform -- uid: 25679 - type: ToySpawner - components: - - pos: 13.5,-1.5 - parent: 82 - type: Transform -- uid: 25680 - type: RandomFoodBakedSingle - components: - - pos: 11.5,-26.5 - parent: 82 - type: Transform -- uid: 25681 - type: Table - components: - - pos: -38.5,-11.5 - parent: 82 - type: Transform -- uid: 25682 - type: Grille - components: - - pos: -42.5,55.5 - parent: 82 - type: Transform -- uid: 25683 - type: DrinkMugHeart - components: - - pos: -49.14457,-26.337795 - parent: 82 - type: Transform -- uid: 25684 - type: DrinkMugRainbow - components: - - pos: -49.2279,-26.573906 - parent: 82 - type: Transform -- uid: 25685 - type: RandomVending - components: - - pos: 31.5,-35.5 - parent: 82 - type: Transform -- uid: 25686 - type: CableMV - components: - - pos: -28.5,16.5 - parent: 82 - type: Transform -- uid: 25687 - type: Grille - components: - - pos: -41.5,55.5 - parent: 82 - type: Transform -- uid: 25688 - type: Bed - components: - - pos: 29.5,63.5 - parent: 82 - type: Transform -- uid: 25689 - type: KitchenMicrowave - components: - - pos: -29.5,-11.5 - parent: 82 - type: Transform -- uid: 25690 - type: SpawnPointChef - components: - - pos: -28.5,-12.5 - parent: 82 - type: Transform -- uid: 25691 - type: BookEscalation - components: - - pos: 5.529665,-9.45137 - parent: 82 - type: Transform -- uid: 25692 - type: Grille - components: - - pos: -52.5,57.5 - parent: 82 - type: Transform -- uid: 25693 - type: FoodSoupVegetable - components: - - pos: 27.393278,66.592735 - parent: 82 - type: Transform -- uid: 25694 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: -38.5,-8.5 - parent: 82 - type: Transform -- uid: 25695 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-33.5 - parent: 82 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 8133 - Forward: - - port: Left - uid: 8133 - Off: - - port: Middle - uid: 8133 - type: SignalReceiver -- uid: 25696 - type: ClothingUniformJumpskirtParamedic - components: - - pos: -51.267315,-34.321545 - parent: 82 - type: Transform -- uid: 25697 - type: Lighter - components: - - pos: -35.313976,-6.3585668 - parent: 82 - type: Transform -- uid: 25698 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-18.5 - parent: 82 - type: Transform -- uid: 25699 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-21.5 - parent: 82 - type: Transform -- uid: 25700 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-22.5 - parent: 82 - type: Transform -- uid: 25701 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-17.5 - parent: 82 - type: Transform -- uid: 25702 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-33.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25703 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-21.5 - parent: 82 - type: Transform -- uid: 25704 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-18.5 - parent: 82 - type: Transform -- uid: 25705 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-32.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25706 - type: CableMV - components: - - pos: -28.5,17.5 - parent: 82 - type: Transform -- uid: 25707 - type: FoodCakeChristmas - components: - - pos: -26.515423,34.502056 - parent: 82 - type: Transform -- uid: 25708 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-22.5 - parent: 82 - type: Transform -- uid: 25709 - type: Grille - components: - - pos: -43.5,55.5 - parent: 82 - type: Transform -- uid: 25710 - type: InflatableWallStack - components: - - pos: -3.670587,9.520155 - parent: 82 - type: Transform -- uid: 25711 - type: Grille - components: - - pos: -48.5,51.5 - parent: 82 - type: Transform -- uid: 25712 - type: WallReinforced - components: - - pos: -47.5,51.5 - parent: 82 - type: Transform -- uid: 25713 - type: InflatableDoorStack - components: - - pos: -3.3724127,9.647876 - parent: 82 - type: Transform -- uid: 25714 - type: WallReinforced - components: - - pos: -54.5,54.5 - parent: 82 - type: Transform -- uid: 25715 - type: ReinforcedWindow - components: - - pos: -48.5,51.5 - parent: 82 - type: Transform -- uid: 25716 - type: Grille - components: - - pos: -46.5,55.5 - parent: 82 - type: Transform -- uid: 25717 - type: Table - components: - - pos: -3.5,9.5 - parent: 82 - type: Transform -- uid: 25718 - type: CableApcExtension - components: - - pos: 30.5,74.5 - parent: 82 - type: Transform -- uid: 25719 - type: CableApcExtension - components: - - pos: 30.5,75.5 - parent: 82 - type: Transform -- uid: 25720 - type: CableApcExtension - components: - - pos: 30.5,76.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25721 - type: CableApcExtension - components: - - pos: 30.5,77.5 - parent: 82 - type: Transform -- uid: 25722 - type: CableApcExtension - components: - - pos: 30.5,78.5 - parent: 82 - type: Transform -- uid: 25723 - type: GasVentPump - components: - - pos: 23.5,74.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25724 - type: GasVentScrubber - components: - - pos: 24.5,74.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25725 - type: BlastDoor - components: - - pos: 32.5,77.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25817 - type: SignalReceiver -- uid: 25726 - type: BlastDoor - components: - - pos: 32.5,78.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25817 - type: SignalReceiver -- uid: 25727 - type: BlastDoor - components: - - pos: 32.5,79.5 - parent: 82 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 25817 - type: SignalReceiver -- uid: 25728 - type: Catwalk - components: - - pos: 33.5,79.5 - parent: 82 - type: Transform -- uid: 25729 - type: Catwalk - components: - - pos: 33.5,78.5 - parent: 82 - type: Transform -- uid: 25730 - type: Catwalk - components: - - pos: 33.5,77.5 - parent: 82 - type: Transform -- uid: 25731 - type: AirlockScienceGlassLocked - components: - - pos: 25.5,79.5 - parent: 82 - type: Transform -- uid: 25732 - type: AirlockScienceGlassLocked - components: - - pos: 25.5,78.5 - parent: 82 - type: Transform -- uid: 25733 - type: AirlockScienceGlassLocked - components: - - pos: 28.5,79.5 - parent: 82 - type: Transform -- uid: 25734 - type: AirlockScienceGlassLocked - components: - - pos: 28.5,78.5 - parent: 82 - type: Transform -- uid: 25735 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,77.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25736 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,77.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25737 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 30.5,73.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25738 - type: CableMV - components: - - pos: 22.5,67.5 - parent: 82 - type: Transform -- uid: 25739 - type: CableMV - components: - - pos: 23.5,67.5 - parent: 82 - type: Transform -- uid: 25740 - type: CableMV - components: - - pos: 23.5,68.5 - parent: 82 - type: Transform -- uid: 25741 - type: CableMV - components: - - pos: 23.5,69.5 - parent: 82 - type: Transform -- uid: 25742 - type: CableMV - components: - - pos: 23.5,70.5 - parent: 82 - type: Transform -- uid: 25743 - type: CableMV - components: - - pos: 23.5,71.5 - parent: 82 - type: Transform -- uid: 25744 - type: CableMV - components: - - pos: 23.5,72.5 - parent: 82 - type: Transform -- uid: 25745 - type: CableMV - components: - - pos: 23.5,73.5 - parent: 82 - type: Transform -- uid: 25746 - type: CableMV - components: - - pos: 24.5,73.5 - parent: 82 - type: Transform -- uid: 25747 - type: CableMV - components: - - pos: 25.5,73.5 - parent: 82 - type: Transform -- uid: 25748 - type: CableMV - components: - - pos: 26.5,73.5 - parent: 82 - type: Transform -- uid: 25749 - type: CableMV - components: - - pos: 27.5,73.5 - parent: 82 - type: Transform -- uid: 25750 - type: CableMV - components: - - pos: 28.5,73.5 - parent: 82 - type: Transform -- uid: 25751 - type: CableMV - components: - - pos: 29.5,73.5 - parent: 82 - type: Transform -- uid: 25752 - type: CableMV - components: - - pos: 30.5,73.5 - parent: 82 - type: Transform -- uid: 25753 - type: CableMV - components: - - pos: 30.5,74.5 - parent: 82 - type: Transform -- uid: 25754 - type: CableMV - components: - - pos: 30.5,75.5 - parent: 82 - type: Transform -- uid: 25755 - type: CableMV - components: - - pos: 30.5,76.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25756 - type: CableMV - components: - - pos: 30.5,77.5 - parent: 82 - type: Transform -- uid: 25757 - type: CableMV - components: - - pos: 30.5,78.5 - parent: 82 - type: Transform -- uid: 25758 - type: CableHV - components: - - pos: 20.5,52.5 - parent: 82 - type: Transform -- uid: 25759 - type: CableHV - components: - - pos: 20.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25760 - type: CableHV - components: - - pos: 20.5,54.5 - parent: 82 - type: Transform -- uid: 25761 - type: CableHV - components: - - pos: 20.5,55.5 - parent: 82 - type: Transform -- uid: 25762 - type: CableHV - components: - - pos: 20.5,56.5 - parent: 82 - type: Transform -- uid: 25763 - type: CableHV - components: - - pos: 20.5,57.5 - parent: 82 - type: Transform -- uid: 25764 - type: CableHV - components: - - pos: 20.5,58.5 - parent: 82 - type: Transform -- uid: 25765 - type: CableHV - components: - - pos: 20.5,59.5 - parent: 82 - type: Transform -- uid: 25766 - type: CableHV - components: - - pos: 20.5,60.5 - parent: 82 - type: Transform -- uid: 25767 - type: CableHV - components: - - pos: 20.5,61.5 - parent: 82 - type: Transform -- uid: 25768 - type: CableHV - components: - - pos: 20.5,62.5 - parent: 82 - type: Transform -- uid: 25769 - type: CableHV - components: - - pos: 20.5,63.5 - parent: 82 - type: Transform -- uid: 25770 - type: CableHV - components: - - pos: 20.5,64.5 - parent: 82 - type: Transform -- uid: 25771 - type: CableHV - components: - - pos: 20.5,65.5 - parent: 82 - type: Transform -- uid: 25772 - type: CableHV - components: - - pos: 20.5,66.5 - parent: 82 - type: Transform -- uid: 25773 - type: CableHV - components: - - pos: 20.5,67.5 - parent: 82 - type: Transform -- uid: 25774 - type: CableHV - components: - - pos: 21.5,67.5 - parent: 82 - type: Transform -- uid: 25775 - type: CableHV - components: - - pos: 22.5,67.5 - parent: 82 - type: Transform -- uid: 25776 - type: CableHV - components: - - pos: 23.5,67.5 - parent: 82 - type: Transform -- uid: 25777 - type: CableHV - components: - - pos: 23.5,68.5 - parent: 82 - type: Transform -- uid: 25778 - type: CableHV - components: - - pos: 23.5,69.5 - parent: 82 - type: Transform -- uid: 25779 - type: CableHV - components: - - pos: 23.5,70.5 - parent: 82 - type: Transform -- uid: 25780 - type: CableHV - components: - - pos: 23.5,71.5 - parent: 82 - type: Transform -- uid: 25781 - type: CableHV - components: - - pos: 23.5,72.5 - parent: 82 - type: Transform -- uid: 25782 - type: CableHV - components: - - pos: 23.5,73.5 - parent: 82 - type: Transform -- uid: 25783 - type: CableHV - components: - - pos: 24.5,73.5 - parent: 82 - type: Transform -- uid: 25784 - type: CableHV - components: - - pos: 25.5,73.5 - parent: 82 - type: Transform -- uid: 25785 - type: CableHV - components: - - pos: 26.5,73.5 - parent: 82 - type: Transform -- uid: 25786 - type: CableHV - components: - - pos: 27.5,73.5 - parent: 82 - type: Transform -- uid: 25787 - type: CableHV - components: - - pos: 28.5,73.5 - parent: 82 - type: Transform -- uid: 25788 - type: CableHV - components: - - pos: 29.5,73.5 - parent: 82 - type: Transform -- uid: 25789 - type: CableHV - components: - - pos: 30.5,73.5 - parent: 82 - type: Transform -- uid: 25790 - type: CableHV - components: - - pos: 30.5,74.5 - parent: 82 - type: Transform -- uid: 25791 - type: CableHV - components: - - pos: 30.5,75.5 - parent: 82 - type: Transform -- uid: 25792 - type: CableHV - components: - - pos: 30.5,76.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25793 - type: CableHV - components: - - pos: 30.5,77.5 - parent: 82 - type: Transform -- uid: 25794 - type: CableHV - components: - - pos: 30.5,78.5 - parent: 82 - type: Transform -- uid: 25795 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 29.5,75.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25796 - type: GasPressurePump - components: - - pos: 31.5,75.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25797 - type: MachineArtifactAnalyzer - components: - - pos: 30.5,78.5 - parent: 82 - type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 25808 - type: SignalReceiver -- uid: 25798 - type: GasPassiveVent - components: - - pos: 29.5,78.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25799 - type: GasPassiveVent - components: - - pos: 31.5,78.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25800 - type: GasPipeStraight - components: - - pos: 29.5,77.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25801 - type: GasPipeStraight - components: - - pos: 31.5,77.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25802 - type: GasPipeStraight - components: - - pos: 29.5,76.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25803 - type: GasPipeStraight - components: - - pos: 31.5,76.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25804 - type: GasPipeStraight - components: - - pos: 29.5,74.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25805 - type: GasPipeStraight - components: - - pos: 31.5,74.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25806 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 29.5,73.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25807 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 31.5,73.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 25808 - type: ComputerAnalysisConsole - components: - - pos: 30.5,75.5 - parent: 82 - type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 25797 - type: SignalTransmitter -- uid: 25809 - type: CrateArtifactContainer - components: - - pos: 27.5,73.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25810 - type: CrateArtifactContainer - components: - - pos: 26.5,73.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25811 - type: Catwalk - components: - - pos: 35.5,68.5 - parent: 82 - type: Transform -- uid: 25812 - type: Catwalk - components: - - pos: 35.5,69.5 - parent: 82 - type: Transform -- uid: 25813 - type: Catwalk - components: - - pos: 35.5,70.5 - parent: 82 - type: Transform -- uid: 25814 - type: Catwalk - components: - - pos: 35.5,71.5 - parent: 82 - type: Transform -- uid: 25815 - type: Multitool - components: - - pos: 26.040304,76.598274 - parent: 82 - type: Transform -- uid: 25816 - type: RandomArtifactSpawner - components: - - pos: 30.5,78.5 - parent: 82 - type: Transform -- uid: 25817 - type: SignalButton - components: - - pos: 28.5,76.5 - parent: 82 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 25725 - - port: Toggle - uid: 25726 - - port: Toggle - uid: 25727 - type: SignalTransmitter -- uid: 25818 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 33.5,69.5 - parent: 82 - type: Transform -- uid: 25819 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 33.5,69.5 - parent: 82 - type: Transform -- uid: 25820 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 33.5,68.5 - parent: 82 - type: Transform -- uid: 25821 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 33.5,68.5 - parent: 82 - type: Transform -- uid: 25822 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 33.5,69.5 - parent: 82 - type: Transform -- uid: 25823 - type: AtmosFixFreezerMarker - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-14.5 - parent: 82 - type: Transform -- uid: 25824 - type: LockerFreezer - components: - - pos: -60.5,-14.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 234.99968 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25829 - - 25830 - - 25828 - - 25826 - - 25827 - - 25825 - type: ContainerContainer -- uid: 25825 - type: FoodFrozenPopsicleBerry - components: - - flags: InContainer - type: MetaData - - parent: 25824 - type: Transform - - canCollide: False - type: Physics -- uid: 25826 - type: FoodFrozenPopsicleJumbo - components: - - flags: InContainer - type: MetaData - - parent: 25824 - type: Transform - - canCollide: False - type: Physics -- uid: 25827 - type: FoodFrozenPopsicleOrange - components: - - flags: InContainer - type: MetaData - - parent: 25824 - type: Transform - - canCollide: False - type: Physics -- uid: 25828 - type: FoodFrozenSandwich - components: - - flags: InContainer - type: MetaData - - parent: 25824 - type: Transform - - canCollide: False - type: Physics -- uid: 25829 - type: FoodFrozenSandwichStrawberry - components: - - flags: InContainer - type: MetaData - - parent: 25824 - type: Transform - - canCollide: False - type: Physics -- uid: 25830 - type: FoodFrozenSundae - components: - - flags: InContainer - type: MetaData - - parent: 25824 - type: Transform - - canCollide: False - type: Physics -- uid: 25831 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 28.5,81.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25832 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,80.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25833 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,76.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25834 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 25.5,81.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25835 - type: CableApcExtension - components: - - pos: 30.5,79.5 - parent: 82 - type: Transform -- uid: 25836 - type: CableApcExtension - components: - - pos: 30.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25837 - type: CableApcExtension - components: - - pos: 29.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25838 - type: CableApcExtension - components: - - pos: 28.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25839 - type: CableApcExtension - components: - - pos: 27.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25840 - type: CableApcExtension - components: - - pos: 26.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25841 - type: CableApcExtension - components: - - pos: 31.5,80.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25842 - type: CableApcExtension - components: - - pos: 31.5,73.5 - parent: 82 - type: Transform -- uid: 25843 - type: CableApcExtension - components: - - pos: 32.5,73.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25844 - type: CableApcExtension - components: - - pos: 32.5,74.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25845 - type: CableApcExtension - components: - - pos: 32.5,75.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25846 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,71.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25847 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,72.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25848 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-17.5 - parent: 82 - type: Transform -- uid: 25849 - type: LockerFreezer - components: - - pos: -34.5,-12.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25850 - type: CableMV - components: - - pos: -28.5,18.5 - parent: 82 - type: Transform -- uid: 25851 - type: CableMV - components: - - pos: -28.5,19.5 - parent: 82 - type: Transform -- uid: 25852 - type: CableMV - components: - - pos: -28.5,20.5 - parent: 82 - type: Transform -- uid: 25853 - type: KitchenReagentGrinder - components: - - pos: -30.5,-11.5 - parent: 82 - type: Transform -- uid: 25854 - type: RandomArtifactSpawner20 - components: - - pos: -45.5,48.5 - parent: 82 - type: Transform -- uid: 25855 - type: RandomArtifactSpawner20 - components: - - pos: 35.5,59.5 - parent: 82 - type: Transform -- uid: 25856 - type: RandomArtifactSpawner20 - components: - - pos: 41.5,-21.5 - parent: 82 - type: Transform -- uid: 25857 - type: RandomArtifactSpawner20 - components: - - pos: -47.5,-42.5 - parent: 82 - type: Transform -- uid: 25858 - type: RandomArtifactSpawner20 - components: - - pos: 35.5,83.5 - parent: 82 - type: Transform -- uid: 25859 - type: WeaponDisabler - components: - - pos: 49.66328,-12.550815 - parent: 82 - type: Transform -- uid: 25860 - type: WeaponDisablerPractice - components: - - pos: 60.444374,-21.413544 - parent: 82 - type: Transform -- uid: 25861 - type: WeaponLaserCarbinePractice - components: - - pos: 61.118755,-22.405022 - parent: 82 - type: Transform -- uid: 25862 - type: TargetSyndicate - components: - - pos: -75.5,11.5 - parent: 82 - type: Transform -- uid: 25863 - type: CartridgeCaselessRiflePractice - components: - - pos: -70.964775,11.6441965 - parent: 82 - type: Transform -- uid: 25864 - type: CartridgeCaselessRiflePractice - components: - - pos: -71.097404,11.541054 - parent: 82 - type: Transform -- uid: 25865 - type: CartridgeCaselessRiflePractice - components: - - pos: -71.51004,11.717871 - parent: 82 - type: Transform -- uid: 25866 - type: CableMV - components: - - pos: -28.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25867 - type: Table - components: - - pos: 6.5,-13.5 - parent: 82 - type: Transform -- uid: 25868 - type: FaxMachineBase - components: - - pos: 6.5,-13.5 - parent: 82 - type: Transform - - destinationAddress: Bridge - name: Bridge - type: FaxMachine -- uid: 25869 - type: CableMV - components: - - pos: -29.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25870 - type: CableMV - components: - - pos: -27.5,21.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25871 - type: CableMV - components: - - pos: -27.5,18.5 - parent: 82 - type: Transform -- uid: 25872 - type: Paper - components: - - pos: 29.338772,58.91652 - parent: 82 - type: Transform -- uid: 25873 - type: Paper - components: - - pos: 29.588772,58.79152 - parent: 82 - type: Transform -- uid: 25874 - type: FaxMachineBase - components: - - pos: 29.5,59.5 - parent: 82 - type: Transform - - name: Science - type: FaxMachine -- uid: 25875 - type: FaxMachineBase - components: - - pos: -12.5,39.5 - parent: 82 - type: Transform - - name: Engineering - type: FaxMachine -- uid: 25876 - type: CableMV - components: - - pos: -26.5,18.5 - parent: 82 - type: Transform -- uid: 25877 - type: CableMV - components: - - pos: -26.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25878 - type: Paper - components: - - pos: -51.271515,-28.091671 - parent: 82 - type: Transform -- uid: 25879 - type: Paper - components: - - pos: -51.41735,-28.279171 - parent: 82 - type: Transform -- uid: 25880 - type: FaxMachineBase - components: - - pos: -51.5,-27.5 - parent: 82 - type: Transform - - name: Medbay - type: FaxMachine -- uid: 25881 - type: FaxMachineBase - components: - - pos: -11.5,-0.5 - parent: 82 - type: Transform - - name: HoP - type: FaxMachine -- uid: 25882 - type: Paper - components: - - pos: 37.31257,18.682251 - parent: 82 - type: Transform -- uid: 25883 - type: Paper - components: - - pos: 41.291687,-6.4133596 - parent: 82 - type: Transform -- uid: 25884 - type: Paper - components: - - pos: 41.708355,-6.3402944 - parent: 82 - type: Transform -- uid: 25885 - type: FaxMachineBase - components: - - pos: 44.5,-14.5 - parent: 82 - type: Transform - - name: Security - type: FaxMachine -- uid: 25886 - type: Paper - components: - - pos: 37.708405,18.598919 - parent: 82 - type: Transform -- uid: 25887 - type: FaxMachineBase - components: - - pos: 38.5,18.5 - parent: 82 - type: Transform - - name: Cargo - type: FaxMachine -- uid: 25888 - type: SpawnMobHamsterHamlet - components: - - pos: 9.5,-9.5 - parent: 82 - type: Transform -- uid: 25889 - type: FaxMachineBase - components: - - pos: 52.5,-39.5 - parent: 82 - type: Transform - - name: Brig - type: FaxMachine -- uid: 25890 - type: CableHV - components: - - pos: -25.5,18.5 - parent: 82 - type: Transform -- uid: 25891 - type: CableHV - components: - - pos: -24.5,18.5 - parent: 82 - type: Transform -- uid: 25892 - type: TelecomServer - components: - - pos: -32.5,15.5 - parent: 82 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 26272 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 25893 - type: FaxMachineBase - components: - - pos: 26.5,-25.5 - parent: 82 - type: Transform - - name: Lawyers Office - type: FaxMachine -- uid: 25894 - type: TelecomServer - components: - - pos: -32.5,16.5 - parent: 82 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 26273 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 25895 - type: TelecomServer - components: - - pos: -30.5,15.5 - parent: 82 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 26274 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 25896 - type: TelecomServer - components: - - pos: -30.5,16.5 - parent: 82 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 26275 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 25897 - type: SpawnPointDetective - components: - - pos: -54.5,1.5 - parent: 82 - type: Transform -- uid: 25898 - type: ChairOfficeDark - components: - - pos: -54.5,1.5 - parent: 82 - type: Transform -- uid: 25899 - type: Paper - components: - - pos: -53.662918,1.9212303 - parent: 82 - type: Transform -- uid: 25900 - type: Paper - components: - - pos: -53.49253,1.9070392 - parent: 82 - type: Transform -- uid: 25902 - type: Intercom - components: - - pos: 78.5,11.5 - parent: 82 - type: Transform -- uid: 25903 - type: Intercom - components: - - pos: 27.5,29.5 - parent: 82 - type: Transform -- uid: 25904 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -19.5,23.5 - parent: 82 - type: Transform -- uid: 25905 - type: Intercom - components: - - pos: -59.5,47.5 - parent: 82 - type: Transform -- uid: 25906 - type: Intercom - components: - - pos: -41.5,32.5 - parent: 82 - type: Transform -- uid: 25907 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -11.5,20.5 - parent: 82 - type: Transform -- uid: 25908 - type: ExtinguisherCabinetFilled - components: - - pos: -28.5,-0.5 - parent: 82 - type: Transform -- uid: 25909 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 82 - type: Transform -- uid: 25910 - type: Intercom - components: - - pos: -8.5,-31.5 - parent: 82 - type: Transform -- uid: 25911 - type: Intercom - components: - - pos: 5.5,-33.5 - parent: 82 - type: Transform -- uid: 25912 - type: Intercom - components: - - pos: 24.5,-15.5 - parent: 82 - type: Transform -- uid: 25913 - type: IntercomAll - components: - - rot: -1.5707963267948966 rad - pos: -3.5,2.5 - parent: 82 - type: Transform -- uid: 25914 - type: IntercomCommand - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-34.5 - parent: 82 - type: Transform -- uid: 25915 - type: IntercomCommand - components: - - rot: 1.5707963267948966 rad - pos: -11.5,34.5 - parent: 82 - type: Transform -- uid: 25916 - type: IntercomCommand - components: - - pos: 29.5,67.5 - parent: 82 - type: Transform -- uid: 25917 - type: IntercomCommand - components: - - rot: -1.5707963267948966 rad - pos: 48.5,16.5 - parent: 82 - type: Transform -- uid: 25918 - type: IntercomCommand - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-13.5 - parent: 82 - type: Transform -- uid: 25919 - type: Intercom - components: - - pos: 26.5,-5.5 - parent: 82 - type: Transform -- uid: 25920 - type: IntercomEngineering - components: - - rot: 1.5707963267948966 rad - pos: 20.5,8.5 - parent: 82 - type: Transform -- uid: 25921 - type: SignAtmos - components: - - pos: 30.5,6.5 - parent: 82 - type: Transform -- uid: 25922 - type: IntercomSupply - components: - - pos: 38.5,31.5 - parent: 82 - type: Transform -- uid: 25923 - type: IntercomEngineering - components: - - rot: -1.5707963267948966 rad - pos: -5.5,8.5 - parent: 82 - type: Transform -- uid: 25924 - type: IntercomSupply - components: - - rot: 1.5707963267948966 rad - pos: 51.5,39.5 - parent: 82 - type: Transform -- uid: 25925 - type: IntercomSupply - components: - - pos: 39.5,35.5 - parent: 82 - type: Transform -- uid: 25926 - type: IntercomSupply - components: - - rot: 1.5707963267948966 rad - pos: 40.5,17.5 - parent: 82 - type: Transform -- uid: 25927 - type: IntercomSupply - components: - - pos: 38.5,22.5 - parent: 82 - type: Transform -- uid: 25928 - type: IntercomScience - components: - - rot: 1.5707963267948966 rad - pos: 25.5,56.5 - parent: 82 - type: Transform -- uid: 25929 - type: IntercomScience - components: - - pos: 25.5,77.5 - parent: 82 - type: Transform -- uid: 25930 - type: TelecomServer - components: - - pos: -32.5,19.5 - parent: 82 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 26276 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 25931 - type: IntercomScience - components: - - pos: 14.5,59.5 - parent: 82 - type: Transform -- uid: 25932 - type: IntercomScience - components: - - rot: -1.5707963267948966 rad - pos: 30.5,59.5 - parent: 82 - type: Transform -- uid: 25933 - type: IntercomEngineering - components: - - rot: 1.5707963267948966 rad - pos: -8.5,47.5 - parent: 82 - type: Transform -- uid: 25934 - type: IntercomEngineering - components: - - rot: -1.5707963267948966 rad - pos: -14.5,34.5 - parent: 82 - type: Transform -- uid: 25935 - type: IntercomEngineering - components: - - rot: -1.5707963267948966 rad - pos: -8.5,40.5 - parent: 82 - type: Transform -- uid: 25936 - type: IntercomEngineering - components: - - pos: -23.5,40.5 - parent: 82 - type: Transform -- uid: 25937 - type: IntercomEngineering - components: - - rot: 3.141592653589793 rad - pos: -24.5,51.5 - parent: 82 - type: Transform -- uid: 25938 - type: IntercomEngineering - components: - - pos: -17.5,46.5 - parent: 82 - type: Transform -- uid: 25939 - type: ExtinguisherCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: -2.5,39.5 - parent: 82 - type: Transform -- uid: 25940 - type: IntercomService - components: - - rot: -1.5707963267948966 rad - pos: 1.5,35.5 - parent: 82 - type: Transform -- uid: 25941 - type: IntercomService - components: - - rot: 3.141592653589793 rad - pos: -29.5,-15.5 - parent: 82 - type: Transform -- uid: 25942 - type: IntercomService - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-24.5 - parent: 82 - type: Transform -- uid: 25943 - type: IntercomService - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-20.5 - parent: 82 - type: Transform -- uid: 25944 - type: IntercomService - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-12.5 - parent: 82 - type: Transform -- uid: 25945 - type: IntercomService - components: - - pos: -11.5,-28.5 - parent: 82 - type: Transform -- uid: 25946 - type: IntercomMedical - components: - - rot: 3.141592653589793 rad - pos: -21.5,-27.5 - parent: 82 - type: Transform -- uid: 25947 - type: IntercomMedical - components: - - pos: -35.5,-29.5 - parent: 82 - type: Transform -- uid: 25948 - type: IntercomMedical - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-25.5 - parent: 82 - type: Transform -- uid: 25949 - type: IntercomMedical - components: - - pos: -56.5,-23.5 - parent: 82 - type: Transform -- uid: 25950 - type: LockerFreezer - components: - - pos: -35.5,-12.5 - parent: 82 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6971024 - - 6.3843384 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25951 - type: IntercomMedical - components: - - rot: 3.141592653589793 rad - pos: -36.5,-37.5 - parent: 82 - type: Transform -- uid: 25952 - type: IntercomSecurity - components: - - pos: -20.5,-37.5 - parent: 82 - type: Transform -- uid: 25953 - type: IntercomSecurity - components: - - pos: -28.5,27.5 - parent: 82 - type: Transform -- uid: 25954 - type: Intercom - components: - - pos: 8.5,32.5 - parent: 82 - type: Transform -- uid: 25955 - type: IntercomSecurity - components: - - pos: 35.5,52.5 - parent: 82 - type: Transform -- uid: 25956 - type: IntercomSecurity - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-0.5 - parent: 82 - type: Transform -- uid: 25957 - type: IntercomSecurity - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-2.5 - parent: 82 - type: Transform -- uid: 25958 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: 13.5,-12.5 - parent: 82 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10525 - - port: Toggle - uid: 7100 - - port: Toggle - uid: 6961 - - port: Toggle - uid: 6960 - - port: Toggle - uid: 6959 - - port: Toggle - uid: 6958 - - port: Toggle - uid: 6957 - - port: Toggle - uid: 6956 - - port: Toggle - uid: 6955 - - port: Toggle - uid: 6954 - - port: Toggle - uid: 6953 - - port: Toggle - uid: 6952 - - port: Toggle - uid: 6951 - - port: Toggle - uid: 6950 - - port: Toggle - uid: 21770 - - port: Toggle - uid: 7516 - - port: Toggle - uid: 7101 - - port: Toggle - uid: 6941 - - port: Toggle - uid: 6940 - - port: Toggle - uid: 21769 - - port: Toggle - uid: 21768 - - port: Toggle - uid: 21702 - - port: Toggle - uid: 21623 - type: SignalTransmitter -- uid: 25959 - type: PosterLegitObey - components: - - pos: 51.5,0.5 - parent: 82 - type: Transform -- uid: 25960 - type: IntercomSecurity - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-18.5 - parent: 82 - type: Transform -- uid: 25961 - type: IntercomSecurity - components: - - pos: 60.5,-17.5 - parent: 82 - type: Transform -- uid: 25962 - type: IntercomSecurity - components: - - rot: 3.141592653589793 rad - pos: 49.5,-21.5 - parent: 82 - type: Transform -- uid: 25963 - type: CableApcExtension - components: - - pos: 50.5,-19.5 - parent: 82 - type: Transform -- uid: 25964 - type: Intercom - components: - - pos: 52.5,-35.5 - parent: 82 - type: Transform -- uid: 25965 - type: Intercom - components: - - rot: 3.141592653589793 rad - pos: 46.5,-47.5 - parent: 82 - type: Transform -- uid: 25966 - type: IntercomAll - components: - - pos: 4.5,-8.5 - parent: 82 - type: Transform -- uid: 25967 - type: IntercomAll - components: - - pos: 4.5,-14.5 - parent: 82 - type: Transform -- uid: 25968 - type: IntercomAll - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-15.5 - parent: 82 - type: Transform -- uid: 25969 - type: FaxMachineBase - components: - - pos: 19.5,-91.5 - parent: 82 - type: Transform - - name: AI Core - type: FaxMachine -- uid: 25970 - type: TelecomServer - components: - - pos: -32.5,20.5 - parent: 82 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 26277 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 25971 - type: TelecomServer - components: - - pos: -30.5,19.5 - parent: 82 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 26278 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 25972 - type: Intercom - components: - - pos: 20.5,-83.5 - parent: 82 - type: Transform -- uid: 25973 - type: IntercomAll - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-103.5 - parent: 82 - type: Transform -- uid: 25974 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-49.5 - parent: 82 - type: Transform -- uid: 25975 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-14.5 - parent: 82 - type: Transform -- uid: 25976 - type: Grille - components: - - pos: -45.5,57.5 - parent: 82 - type: Transform -- uid: 25977 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -20.5,24.5 - parent: 82 - type: Transform -- uid: 25978 - type: IntercomSecurity - components: - - rot: 1.5707963267948966 rad - pos: -64.5,49.5 - parent: 82 - type: Transform -- uid: 25979 - type: IntercomCommand - components: - - rot: 3.141592653589793 rad - pos: -59.5,52.5 - parent: 82 - type: Transform -- uid: 25980 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-36.5 - parent: 82 - type: Transform -- uid: 25981 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-26.5 - parent: 82 - type: Transform -- uid: 25982 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-11.5 - parent: 82 - type: Transform -- uid: 25983 - type: Intercom - components: - - pos: 53.5,5.5 - parent: 82 - type: Transform -- uid: 25984 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: 26.5,23.5 - parent: 82 - type: Transform -- uid: 25985 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: 34.5,44.5 - parent: 82 - type: Transform -- uid: 25986 - type: Intercom - components: - - pos: 11.5,52.5 - parent: 82 - type: Transform -- uid: 25987 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-20.5 - parent: 82 - type: Transform -- uid: 25988 - type: CableApcExtension - components: - - pos: -4.5,46.5 - parent: 82 - type: Transform -- uid: 25989 - type: CableApcExtension - components: - - pos: -3.5,46.5 - parent: 82 - type: Transform -- uid: 25990 - type: Intercom - components: - - pos: 25.5,39.5 - parent: 82 - type: Transform -- uid: 25991 - type: RadioHandheld - components: - - pos: 55.856182,-2.5159006 - parent: 82 - type: Transform -- uid: 25992 - type: RadioHandheld - components: - - rot: 1.5707963267948966 rad - pos: 46.496243,16.721054 - parent: 82 - type: Transform -- uid: 25993 - type: RadioHandheld - components: - - pos: 39.10994,34.548393 - parent: 82 - type: Transform -- uid: 25994 - type: RadioHandheld - components: - - pos: 28.66991,66.5431 - parent: 82 - type: Transform -- uid: 25995 - type: RadioHandheld - components: - - pos: -7.731828,35.36588 - parent: 82 - type: Transform -- uid: 25996 - type: RadioHandheld - components: - - pos: -27.252525,38.50565 - parent: 82 - type: Transform -- uid: 25997 - type: RadioHandheld - components: - - pos: -27.552198,52.5811 - parent: 82 - type: Transform -- uid: 25998 - type: RadioHandheld - components: - - pos: -30.644033,25.535934 - parent: 82 - type: Transform -- uid: 25999 - type: RadioHandheld - components: - - pos: -40.316193,-50.509663 - parent: 82 - type: Transform -- uid: 26000 - type: RadioHandheld - components: - - pos: 29.213688,-33.493073 - parent: 82 - type: Transform -- uid: 26001 - type: RadioHandheld - components: - - pos: 3.9217,-17.413857 - parent: 82 - type: Transform -- uid: 26002 - type: PottedPlantRandom - components: - - pos: 1.5,-26.5 - parent: 82 - type: Transform -- uid: 26003 - type: PottedPlantRandom - components: - - pos: 5.5,-26.5 - parent: 82 - type: Transform -- uid: 26004 - type: PottedPlantRandom - components: - - pos: 13.5,-26.5 - parent: 82 - type: Transform -- uid: 26005 - type: PottedPlantRandom - components: - - pos: 9.5,-26.5 - parent: 82 - type: Transform -- uid: 26006 - type: FloraTreeStumpConifer - components: - - pos: -52.52226,-9.509842 - parent: 82 - type: Transform -- uid: 26007 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-8.5 - parent: 82 - type: Transform -- uid: 26008 - type: WallReinforced - components: - - pos: -50.5,51.5 - parent: 82 - type: Transform -- uid: 26009 - type: ChairFolding - components: - - pos: -49.5,54.5 - parent: 82 - type: Transform -- uid: 26010 - type: RandomDrinkGlass - components: - - pos: -48.5,54.5 - parent: 82 - type: Transform -- uid: 26011 - type: CableApcExtension - components: - - pos: -56.5,51.5 - parent: 82 - type: Transform -- uid: 26012 - type: CableApcExtension - components: - - pos: -55.5,51.5 - parent: 82 - type: Transform -- uid: 26013 - type: CableApcExtension - components: - - pos: -54.5,51.5 - parent: 82 - type: Transform -- uid: 26014 - type: CableApcExtension - components: - - pos: -54.5,52.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26015 - type: CableApcExtension - components: - - pos: -54.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26016 - type: CableApcExtension - components: - - pos: -53.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26017 - type: CableApcExtension - components: - - pos: -52.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26018 - type: CableApcExtension - components: - - pos: -51.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26019 - type: CableApcExtension - components: - - pos: -50.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26020 - type: CableApcExtension - components: - - pos: -49.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26021 - type: CableApcExtension - components: - - pos: -48.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26022 - type: CableApcExtension - components: - - pos: -47.5,53.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26023 - type: CableApcExtension - components: - - pos: -47.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26024 - type: CableApcExtension - components: - - pos: -46.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26025 - type: CableApcExtension - components: - - pos: -45.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26026 - type: CableApcExtension - components: - - pos: -44.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26027 - type: CableApcExtension - components: - - pos: -43.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26028 - type: CableApcExtension - components: - - pos: -42.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26029 - type: CableApcExtension - components: - - pos: -41.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26030 - type: CableApcExtension - components: - - pos: -40.5,54.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26031 - type: PoweredSmallLight - components: - - pos: -50.5,53.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26032 - type: GasCanisterBrokenBase - components: - - pos: -39.5,54.5 - parent: 82 - type: Transform -- uid: 26043 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 89.5,1.5 - parent: 82 - type: Transform -- uid: 26044 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 89.5,2.5 - parent: 82 - type: Transform -- uid: 26045 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 89.5,3.5 - parent: 82 - type: Transform -- uid: 26046 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 89.5,5.5 - parent: 82 - type: Transform -- uid: 26047 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 89.5,6.5 - parent: 82 - type: Transform -- uid: 26048 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 89.5,7.5 - parent: 82 - type: Transform -- uid: 26049 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 89.5,8.5 - parent: 82 - type: Transform -- uid: 26050 - type: GrilleBroken - components: - - pos: 89.5,9.5 - parent: 82 - type: Transform -- uid: 26051 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 89.5,4.5 - parent: 82 - type: Transform -- uid: 26055 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 58.5,12.5 - parent: 82 - type: Transform -- uid: 26056 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 59.5,12.5 - parent: 82 - type: Transform -- uid: 26057 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 60.5,12.5 - parent: 82 - type: Transform -- uid: 26058 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 62.5,12.5 - parent: 82 - type: Transform -- uid: 26059 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 63.5,12.5 - parent: 82 - type: Transform -- uid: 26060 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 64.5,12.5 - parent: 82 - type: Transform -- uid: 26061 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 57.5,12.5 - parent: 82 - type: Transform -- uid: 26062 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 61.5,12.5 - parent: 82 - type: Transform -- uid: 26063 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 71.5,15.5 - parent: 82 - type: Transform -- uid: 26064 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 71.5,14.5 - parent: 82 - type: Transform -- uid: 26065 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 71.5,13.5 - parent: 82 - type: Transform -- uid: 26066 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 71.5,12.5 - parent: 82 - type: Transform -- uid: 26067 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 87.5,15.5 - parent: 82 - type: Transform -- uid: 26068 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 87.5,14.5 - parent: 82 - type: Transform -- uid: 26069 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 87.5,13.5 - parent: 82 - type: Transform -- uid: 26070 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 87.5,12.5 - parent: 82 - type: Transform -- uid: 26071 - type: GrilleBroken - components: - - pos: 37.5,80.5 - parent: 82 - type: Transform -- uid: 26072 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 2.5,76.5 - parent: 82 - type: Transform -- uid: 26073 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 2.5,77.5 - parent: 82 - type: Transform -- uid: 26074 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 2.5,78.5 - parent: 82 - type: Transform -- uid: 26075 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 2.5,80.5 - parent: 82 - type: Transform -- uid: 26076 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 2.5,81.5 - parent: 82 - type: Transform -- uid: 26077 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 3.5,82.5 - parent: 82 - type: Transform -- uid: 26078 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 4.5,82.5 - parent: 82 - type: Transform -- uid: 26079 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 5.5,82.5 - parent: 82 - type: Transform -- uid: 26080 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 6.5,82.5 - parent: 82 - type: Transform -- uid: 26081 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 7.5,82.5 - parent: 82 - type: Transform -- uid: 26082 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 8.5,82.5 - parent: 82 - type: Transform -- uid: 26083 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 10.5,82.5 - parent: 82 - type: Transform -- uid: 26084 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 11.5,82.5 - parent: 82 - type: Transform -- uid: 26085 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 12.5,82.5 - parent: 82 - type: Transform -- uid: 26086 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 13.5,82.5 - parent: 82 - type: Transform -- uid: 26087 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 14.5,82.5 - parent: 82 - type: Transform -- uid: 26088 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 16.5,82.5 - parent: 82 - type: Transform -- uid: 26089 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 17.5,82.5 - parent: 82 - type: Transform -- uid: 26090 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 15.5,82.5 - parent: 82 - type: Transform -- uid: 26091 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 9.5,82.5 - parent: 82 - type: Transform -- uid: 26092 - type: GrilleBroken - components: - - pos: 2.5,82.5 - parent: 82 - type: Transform -- uid: 26093 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 2.5,79.5 - parent: 82 - type: Transform -- uid: 26094 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 2.5,75.5 - parent: 82 - type: Transform -- uid: 26095 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 19.5,85.5 - parent: 82 - type: Transform -- uid: 26096 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 20.5,85.5 - parent: 82 - type: Transform -- uid: 26097 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 21.5,85.5 - parent: 82 - type: Transform -- uid: 26098 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 22.5,85.5 - parent: 82 - type: Transform -- uid: 26099 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 24.5,85.5 - parent: 82 - type: Transform -- uid: 26100 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 25.5,85.5 - parent: 82 - type: Transform -- uid: 26101 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 26.5,85.5 - parent: 82 - type: Transform -- uid: 26102 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 27.5,85.5 - parent: 82 - type: Transform -- uid: 26103 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 28.5,85.5 - parent: 82 - type: Transform -- uid: 26104 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 29.5,85.5 - parent: 82 - type: Transform -- uid: 26105 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 30.5,85.5 - parent: 82 - type: Transform -- uid: 26106 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 32.5,85.5 - parent: 82 - type: Transform -- uid: 26107 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 33.5,85.5 - parent: 82 - type: Transform -- uid: 26108 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 34.5,85.5 - parent: 82 - type: Transform -- uid: 26109 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 35.5,85.5 - parent: 82 - type: Transform -- uid: 26110 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 36.5,85.5 - parent: 82 - type: Transform -- uid: 26111 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 37.5,84.5 - parent: 82 - type: Transform -- uid: 26112 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 37.5,83.5 - parent: 82 - type: Transform -- uid: 26113 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 37.5,82.5 - parent: 82 - type: Transform -- uid: 26114 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 37.5,81.5 - parent: 82 - type: Transform -- uid: 26115 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 37.5,79.5 - parent: 82 - type: Transform -- uid: 26116 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 37.5,78.5 - parent: 82 - type: Transform -- uid: 26117 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 37.5,77.5 - parent: 82 - type: Transform -- uid: 26118 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 37.5,76.5 - parent: 82 - type: Transform -- uid: 26119 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 37.5,75.5 - parent: 82 - type: Transform -- uid: 26120 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 37.5,74.5 - parent: 82 - type: Transform -- uid: 26121 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 37.5,85.5 - parent: 82 - type: Transform -- uid: 26122 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 31.5,85.5 - parent: 82 - type: Transform -- uid: 26123 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 23.5,85.5 - parent: 82 - type: Transform -- uid: 26124 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 18.5,85.5 - parent: 82 - type: Transform -- uid: 26125 - type: Paper - components: - - name: scribbled notes - type: MetaData - - pos: -51.226093,-34.52108 - parent: 82 - type: Transform - - content: "water\ndexalin\noxygen\n \nfreeze to 150k or below\n \nbe ready with some warm clothes and maybe some cocoa\n" - type: Paper -- uid: 26126 - type: CableApcExtension - components: - - pos: -45.5,-39.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26127 - type: CableApcExtension - components: - - pos: -46.5,-39.5 - parent: 82 - type: Transform -- uid: 26128 - type: CryostasisBeaker - components: - - pos: -46.362053,-24.766727 - parent: 82 - type: Transform -- uid: 26129 - type: PillHyronalin - components: - - pos: -46.64603,-24.582241 - parent: 82 - type: Transform -- uid: 26130 - type: SignDirectionalSolar - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-36.5 - parent: 82 - type: Transform -- uid: 26131 - type: CableApcExtension - components: - - pos: -47.5,-39.5 - parent: 82 - type: Transform -- uid: 26133 - type: PoweredSmallLight - components: - - pos: -24.5,-6.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26134 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-8.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26135 - type: SignalButton - components: - - rot: 3.141592653589793 rad - pos: -28.5,-15.5 - parent: 82 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 21687 - - port: Toggle - uid: 6529 - - port: Toggle - uid: 11320 - - port: Toggle - uid: 11310 - - port: Toggle - uid: 11323 - - port: Toggle - uid: 11322 - type: SignalTransmitter -- uid: 26136 - type: IntercomSecurity - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-16.5 - parent: 82 - type: Transform -- uid: 26137 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 67.5,-0.5 - parent: 82 - type: Transform -- uid: 26138 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-0.5 - parent: 82 - type: Transform -- uid: 26139 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 65.5,-0.5 - parent: 82 - type: Transform -- uid: 26141 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 65.5,-1.5 - parent: 82 - type: Transform -- uid: 26142 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 65.5,-2.5 - parent: 82 - type: Transform -- uid: 26143 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 65.5,-3.5 - parent: 82 - type: Transform -- uid: 26144 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 65.5,-4.5 - parent: 82 - type: Transform -- uid: 26145 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 65.5,-5.5 - parent: 82 - type: Transform -- uid: 26146 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 65.5,-6.5 - parent: 82 - type: Transform -- uid: 26147 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 65.5,-7.5 - parent: 82 - type: Transform -- uid: 26148 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 65.5,-8.5 - parent: 82 - type: Transform -- uid: 26149 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 65.5,-15.5 - parent: 82 - type: Transform -- uid: 26150 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 65.5,-10.5 - parent: 82 - type: Transform -- uid: 26151 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 65.5,-11.5 - parent: 82 - type: Transform -- uid: 26152 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 65.5,-12.5 - parent: 82 - type: Transform -- uid: 26153 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 65.5,-13.5 - parent: 82 - type: Transform -- uid: 26154 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 65.5,-14.5 - parent: 82 - type: Transform -- uid: 26168 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 65.5,-9.5 - parent: 82 - type: Transform -- uid: 26170 - type: GrilleBroken - components: - - pos: 65.5,-9.5 - parent: 82 - type: Transform -- uid: 26173 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 71.5,-17.5 - parent: 82 - type: Transform -- uid: 26174 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 71.5,-18.5 - parent: 82 - type: Transform -- uid: 26175 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 71.5,-19.5 - parent: 82 - type: Transform -- uid: 26176 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 71.5,-20.5 - parent: 82 - type: Transform -- uid: 26177 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 71.5,-21.5 - parent: 82 - type: Transform -- uid: 26178 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 71.5,-22.5 - parent: 82 - type: Transform -- uid: 26179 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 71.5,-23.5 - parent: 82 - type: Transform -- uid: 26180 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 71.5,-24.5 - parent: 82 - type: Transform -- uid: 26184 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 71.5,-25.5 - parent: 82 - type: Transform -- uid: 26185 - type: TelecomServer - components: - - pos: -30.5,20.5 - parent: 82 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 26279 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 26186 - type: GasThermoMachineFreezer - components: - - pos: -33.5,19.5 - parent: 82 - type: Transform -- uid: 26187 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 3.141592653589793 rad - pos: -33.5,16.5 - parent: 82 - type: Transform -- uid: 26188 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -29.5,19.5 - parent: 82 - type: Transform -- uid: 26189 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -29.5,20.5 - parent: 82 - type: Transform -- uid: 26190 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -29.5,15.5 - parent: 82 - type: Transform -- uid: 26191 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -29.5,16.5 - parent: 82 - type: Transform -- uid: 26192 - type: WindoorCommandLocked - components: - - rot: -1.5707963267948966 rad - pos: -29.5,17.5 - parent: 82 - type: Transform -- uid: 26193 - type: WindoorCommandLocked - components: - - rot: -1.5707963267948966 rad - pos: -29.5,18.5 - parent: 82 - type: Transform -- uid: 26194 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -33.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 26195 - type: Railing - components: - - pos: -27.5,19.5 - parent: 82 - type: Transform -- uid: 26196 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: -28.5,19.5 - parent: 82 - type: Transform -- uid: 26197 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,15.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26198 - type: PoweredSmallLight - components: - - pos: -25.5,18.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26199 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,20.5 - parent: 82 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26200 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 26201 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 26202 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 26203 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 26204 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 26205 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 26206 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 26207 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 26208 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 26209 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 26210 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -29.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 26211 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -29.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 26212 - type: Firelock - components: - - rot: 1.5707963267948966 rad - pos: -25.5,18.5 - parent: 82 - type: Transform -- uid: 26213 - type: HighSecCommandLocked - components: - - pos: -26.5,18.5 - parent: 82 - type: Transform -- uid: 26214 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: -27.5,27.5 - parent: 82 - type: Transform -- uid: 26215 - type: CableApcExtension - components: - - pos: -26.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26216 - type: CableApcExtension - components: - - pos: -26.5,18.5 - parent: 82 - type: Transform -- uid: 26217 - type: CableApcExtension - components: - - pos: -25.5,18.5 - parent: 82 - type: Transform -- uid: 26218 - type: CableApcExtension - components: - - pos: -27.5,18.5 - parent: 82 - type: Transform -- uid: 26219 - type: CableApcExtension - components: - - pos: -27.5,17.5 - parent: 82 - type: Transform -- uid: 26220 - type: CableApcExtension - components: - - pos: -27.5,16.5 - parent: 82 - type: Transform -- uid: 26221 - type: CableApcExtension - components: - - pos: -28.5,16.5 - parent: 82 - type: Transform -- uid: 26222 - type: CableApcExtension - components: - - pos: -29.5,16.5 - parent: 82 - type: Transform -- uid: 26223 - type: CableApcExtension - components: - - pos: -30.5,16.5 - parent: 82 - type: Transform -- uid: 26224 - type: CableApcExtension - components: - - pos: -31.5,16.5 - parent: 82 - type: Transform -- uid: 26225 - type: CableApcExtension - components: - - pos: -32.5,16.5 - parent: 82 - type: Transform -- uid: 26226 - type: CableApcExtension - components: - - pos: -33.5,16.5 - parent: 82 - type: Transform -- uid: 26227 - type: CableApcExtension - components: - - pos: -27.5,19.5 - parent: 82 - type: Transform -- uid: 26228 - type: CableApcExtension - components: - - pos: -28.5,19.5 - parent: 82 - type: Transform -- uid: 26229 - type: CableApcExtension - components: - - pos: -29.5,19.5 - parent: 82 - type: Transform -- uid: 26230 - type: CableApcExtension - components: - - pos: -30.5,19.5 - parent: 82 - type: Transform -- uid: 26231 - type: CableApcExtension - components: - - pos: -31.5,19.5 - parent: 82 - type: Transform -- uid: 26232 - type: CableApcExtension - components: - - pos: -32.5,19.5 - parent: 82 - type: Transform -- uid: 26233 - type: CableApcExtension - components: - - pos: -33.5,19.5 - parent: 82 - type: Transform -- uid: 26234 - type: CableApcExtension - components: - - pos: -34.5,19.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26235 - type: CableApcExtension - components: - - pos: -34.5,18.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26236 - type: CableApcExtension - components: - - pos: -34.5,17.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26237 - type: CableApcExtension - components: - - pos: -34.5,16.5 - parent: 82 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26238 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,18.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 26239 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,17.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 26240 - type: GasVentScrubber - components: - - pos: -29.5,19.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 26241 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -29.5,16.5 - parent: 82 - type: Transform - - bodyType: Static - type: Physics -- uid: 26242 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -33.5,16.5 - parent: 82 - type: Transform -- uid: 26243 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -33.5,19.5 - parent: 82 - type: Transform -- uid: 26244 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: -28.5,16.5 - parent: 82 - type: Transform -- uid: 26245 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -27.5,16.5 - parent: 82 - type: Transform -- uid: 26246 - type: ClothingHandsGlovesPowerglove - components: - - pos: -27.55158,15.551179 - parent: 82 - type: Transform -- uid: 26247 - type: Zipties - components: - - pos: -26.7242,-37.319843 - parent: 82 - type: Transform -- uid: 26248 - type: Zipties - components: - - pos: -26.49702,-37.447567 - parent: 82 - type: Transform -- uid: 26249 - type: FlashlightSeclite - components: - - pos: -22.422018,-40.35681 - parent: 82 - type: Transform -- uid: 26250 - type: PowerCellRecharger - components: - - pos: -20.5,-39.5 - parent: 82 - type: Transform -- uid: 26251 - type: PowerCellRecharger - components: - - pos: -22.5,-27.5 - parent: 82 - type: Transform -- uid: 26252 - type: HandheldHealthAnalyzer - components: - - pos: -23.599802,-28.810429 - parent: 82 - type: Transform -- uid: 26253 - type: PowerCellRecharger - components: - - pos: 27.5,-32.5 - parent: 82 - type: Transform -- uid: 26254 - type: CrayonBox - components: - - pos: 28.865051,-32.593994 - parent: 82 - type: Transform -- uid: 26255 - type: PowerCellRecharger - components: - - pos: 46.5,-1.5 - parent: 82 - type: Transform -- uid: 26256 - type: Flash - components: - - pos: 47.33308,-3.4761465 - parent: 82 - type: Transform -- uid: 26257 - type: PowerCellRecharger - components: - - pos: 34.5,50.5 - parent: 82 - type: Transform -- uid: 26258 - type: PowerCellRecharger - components: - - pos: 3.5,29.5 - parent: 82 - type: Transform -- uid: 26259 - type: PowerCellRecharger - components: - - pos: -25.5,28.5 - parent: 82 - type: Transform -- uid: 26260 - type: PowerCellRecharger - components: - - pos: -38.5,-20.5 - parent: 82 - type: Transform -- uid: 26261 - type: FloraRockSolid03 - components: - - pos: -17.141582,-40.062748 - parent: 82 - type: Transform -- uid: 26262 - type: PowerCellRecharger - components: - - pos: 2.5,-9.5 - parent: 82 - type: Transform -- uid: 26263 - type: WeaponCapacitorRecharger - components: - - pos: 12.5,-9.5 - parent: 82 - type: Transform -- uid: 26264 - type: ChemBag - components: - - pos: -31.54896,-29.507278 - parent: 82 - type: Transform -- uid: 26265 - type: RadioHandheld - components: - - pos: 38.591362,-13.829715 - parent: 82 - type: Transform -- uid: 26266 - type: RadioHandheld - components: - - pos: 58.74381,-0.006439209 - parent: 82 - type: Transform -- uid: 26267 - type: RadioHandheld - components: - - pos: -27.72924,38.655266 - parent: 82 - type: Transform -- uid: 26268 - type: RadioHandheld - components: - - pos: -10.28882,47.652588 - parent: 82 - type: Transform -- uid: 26269 - type: RadioHandheld - components: - - pos: -27.70029,52.63304 - parent: 82 - type: Transform -- uid: 26270 - type: PlushieAtmosian - components: - - pos: 27.437817,6.556802 - parent: 82 - type: Transform -- uid: 26271 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -27.5,16.5 - parent: 82 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Telecomms - type: SurveillanceCamera -- uid: 26272 - type: EncryptionKeyMedical - components: - - flags: InContainer - type: MetaData - - parent: 25892 - type: Transform - - canCollide: False - type: Physics -- uid: 26273 - type: EncryptionKeyScience - components: - - flags: InContainer - type: MetaData - - parent: 25894 - type: Transform - - canCollide: False - type: Physics -- uid: 26274 - type: EncryptionKeySecurity - components: - - flags: InContainer - type: MetaData - - parent: 25895 - type: Transform - - canCollide: False - type: Physics -- uid: 26275 - type: EncryptionKeyService - components: - - flags: InContainer - type: MetaData - - parent: 25896 - type: Transform - - canCollide: False - type: Physics -- uid: 26276 - type: EncryptionKeyCargo - components: - - flags: InContainer - type: MetaData - - parent: 25930 - type: Transform - - canCollide: False - type: Physics -- uid: 26277 - type: EncryptionKeyCommand - components: - - flags: InContainer - type: MetaData - - parent: 25970 - type: Transform - - canCollide: False - type: Physics -- uid: 26278 - type: EncryptionKeyCommon - components: - - flags: InContainer - type: MetaData - - parent: 25971 - type: Transform - - canCollide: False - type: Physics -- uid: 26279 - type: EncryptionKeyEngineering - components: - - flags: InContainer - type: MetaData - - parent: 26185 - type: Transform - - canCollide: False - type: Physics -... diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml deleted file mode 100644 index 43fffee04f..0000000000 --- a/Resources/Maps/marathon.yml +++ /dev/null @@ -1,178056 +0,0 @@ -meta: - format: 3 - name: DemoStation - author: Space-Wizards - postmapinit: false -tilemap: - 0: Space - 3: FloorArcadeRed - 4: FloorAsteroidCoarseSand0 - 5: FloorAsteroidCoarseSandDug - 10: FloorAsteroidSand - 11: FloorAsteroidTile - 12: FloorBar - 14: FloorBlue - 15: FloorBlueCircuit - 21: FloorClown - 22: FloorDark - 25: FloorDarkHerringbone - 27: FloorDarkMono - 29: FloorDarkPavement - 30: FloorDarkPavementVertical - 31: FloorDarkPlastic - 34: FloorEighties - 37: FloorFreezer - 38: FloorGlass - 39: FloorGold - 40: FloorGrass - 41: FloorGrassDark - 42: FloorGrassJungle - 43: FloorGrassLight - 44: FloorGreenCircuit - 46: FloorHydro - 47: FloorKitchen - 48: FloorLaundry - 49: FloorLino - 52: FloorMime - 53: FloorMono - 55: FloorPlanetGrass - 56: FloorPlastic - 57: FloorRGlass - 58: FloorReinforced - 59: FloorRockVault - 60: FloorShowroom - 67: FloorSnow - 68: FloorSteel - 69: FloorSteelDiagonal - 71: FloorSteelDirty - 72: FloorSteelHerringbone - 73: FloorSteelMini - 74: FloorSteelMono - 76: FloorSteelPavement - 77: FloorSteelPavementVertical - 78: FloorTechMaint - 79: FloorTechMaint2 - 81: FloorWhite - 84: FloorWhiteHerringbone - 85: FloorWhiteMini - 90: FloorWhitePlastic - 91: FloorWood - 93: Lattice - 94: Plating -entities: -- uid: 0 - type: WallSolid - components: - - pos: -12.5,0.5 - parent: 30 - type: Transform -- uid: 1 - type: PosterMapMarathon - components: - - pos: -19.5,38.5 - parent: 30 - type: Transform -- uid: 2 - type: FirelockGlass - components: - - pos: -8.5,0.5 - parent: 30 - type: Transform -- uid: 3 - type: WallSolid - components: - - pos: -22.5,8.5 - parent: 30 - type: Transform -- uid: 4 - type: WallSolid - components: - - pos: -12.5,5.5 - parent: 30 - type: Transform -- uid: 5 - type: Window - components: - - pos: -0.5,-1.5 - parent: 30 - type: Transform -- uid: 6 - type: Window - components: - - pos: -0.5,-4.5 - parent: 30 - type: Transform -- uid: 7 - type: Window - components: - - pos: -4.5,-4.5 - parent: 30 - type: Transform -- uid: 8 - type: Window - components: - - pos: -4.5,-1.5 - parent: 30 - type: Transform -- uid: 9 - type: WallSolid - components: - - pos: -29.5,10.5 - parent: 30 - type: Transform -- uid: 10 - type: WallSolid - components: - - pos: -29.5,9.5 - parent: 30 - type: Transform -- uid: 11 - type: WallSolid - components: - - pos: 3.5,5.5 - parent: 30 - type: Transform -- uid: 12 - type: WallSolid - components: - - pos: 2.5,5.5 - parent: 30 - type: Transform -- uid: 13 - type: WallSolid - components: - - pos: -0.5,5.5 - parent: 30 - type: Transform -- uid: 14 - type: WallSolid - components: - - pos: -0.5,4.5 - parent: 30 - type: Transform -- uid: 15 - type: WallSolid - components: - - pos: -29.5,5.5 - parent: 30 - type: Transform -- uid: 16 - type: WallSolid - components: - - pos: -4.5,5.5 - parent: 30 - type: Transform -- uid: 17 - type: WallSolid - components: - - pos: -4.5,4.5 - parent: 30 - type: Transform -- uid: 18 - type: WallSolid - components: - - pos: -0.5,-0.5 - parent: 30 - type: Transform -- uid: 19 - type: WallSolid - components: - - pos: -4.5,-0.5 - parent: 30 - type: Transform -- uid: 20 - type: FirelockGlass - components: - - pos: 7.5,3.5 - parent: 30 - type: Transform -- uid: 21 - type: FirelockGlass - components: - - pos: 7.5,2.5 - parent: 30 - type: Transform -- uid: 22 - type: FirelockGlass - components: - - pos: 7.5,1.5 - parent: 30 - type: Transform -- uid: 23 - type: FirelockGlass - components: - - pos: 5.5,0.5 - parent: 30 - type: Transform -- uid: 24 - type: FirelockGlass - components: - - pos: 4.5,0.5 - parent: 30 - type: Transform -- uid: 25 - type: FirelockGlass - components: - - pos: -1.5,-0.5 - parent: 30 - type: Transform -- uid: 26 - type: FirelockGlass - components: - - pos: -3.5,-0.5 - parent: 30 - type: Transform -- uid: 27 - type: FirelockGlass - components: - - pos: -9.5,0.5 - parent: 30 - type: Transform -- uid: 28 - type: FirelockGlass - components: - - pos: -12.5,3.5 - parent: 30 - type: Transform -- uid: 29 - type: FirelockGlass - components: - - pos: -12.5,2.5 - parent: 30 - type: Transform -- uid: 30 - components: - - type: MetaData - - pos: 2.2710133,-2.4148211 - parent: 5350 - type: Transform - - chunks: - -1,0: - ind: -1,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAEQAAANeAAAARAAAAkQAAABEAAADRAAAAkQAAAFEAAAARAAAAEQAAABEAAAARAAAAEQAAAFEAAABRAAAAEQAAAJEAAADRAAAAkQAAAFEAAADRAAAAUQAAANEAAACRAAAAEQAAAFEAAAARAAAAUQAAABEAAACRAAAAUQAAANEAAAARAAAA0QAAABEAAAARAAAAEQAAAJEAAACRAAAA0QAAABEAAADRAAAAUQAAAFEAAAARAAAAUQAAANEAAADRAAAAkQAAAJEAAADRAAAA0QAAAFEAAAARAAAA0QAAAFEAAAARAAAA14AAABeAAAAXgAAAF4AAABEAAAARAAAAUQAAABEAAAARAAAA0QAAAJEAAAAXgAAAEQAAABEAAABRAAAAV4AAABEAAADRAAAAUQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACRAAAABYAAAFeAAAARAAAAEQAAABEAAACRAAAAUQAAABeAAAARAAAARYAAANEAAABFgAAAEQAAAIWAAACRAAAAxYAAAFEAAABFgAAAkQAAAJEAAADRAAAAUQAAABEAAACXgAAABYAAAFEAAAAFgAAAEQAAAMWAAACRAAAAhYAAAFEAAABFgAAAUQAAANEAAAARAAAAEQAAABEAAABRAAAAl4AAABEAAABFgAAAkQAAAMWAAADRAAAAhYAAAFEAAADFgAAAUQAAAIWAAACRAAAA0QAAAFEAAADRAAAA0QAAAJeAAAAFgAAAUQAAAAWAAADRAAAABYAAANEAAACFgAAA0QAAAIWAAACRAAAAkQAAAFEAAACRAAAA0QAAAFEAAABXgAAAEQAAAEWAAADRAAAAxYAAANEAAACFgAAAEQAAAAWAAACRAAAAhYAAABEAAAARAAAA0QAAAFEAAAARAAAA14AAAAWAAADRAAAAxYAAABEAAAAFgAAAEQAAAIWAAABRAAAABYAAAJEAAACXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACXgAAABYAAAEWAAACFgAAAxYAAAIWAAABFgAAAyUAAABeAAAAFgAAABYAAAAWAAACFgAAABYAAAAWAAADFgAAAl4AAABbAAADWwAAAlsAAABbAAADWwAAAlsAAAAlAAAAXgAAABYAAAMWAAAAFgAAARYAAAEWAAADFgAAARYAAAMWAAACWwAAAVsAAAFbAAAAWwAAAFsAAAFbAAAAJQAAAF4AAABEAAAAFgAAA14AAAAWAAABXgAAAF4AAABeAAAAXgAAABYAAAMWAAADFgAAARYAAAEWAAAAFgAAAA== - 0,0: - ind: 0,0 - tiles: RAAAAEQAAANeAAAARAAAAEQAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAEQAAABeAAAARAAAA0QAAABEAAACRAAAAEQAAAFEAAACRAAAAUQAAAJEAAADRAAAAkQAAABEAAABRAAAAEQAAABEAAAARAAAAUQAAAJEAAADRAAAAUQAAAJEAAACRAAAA0QAAABEAAACRAAAAUQAAAFEAAADRAAAAkQAAANEAAABRAAAAF4AAABEAAABRAAAAUQAAANEAAABRAAAA0QAAAJEAAAARAAAAkQAAABEAAACRAAAAEQAAAFEAAACRAAAA0QAAAFeAAAAXgAAAEQAAAJEAAADRAAAAEQAAAFEAAADRAAAA0QAAAJeAAAARAAAA0QAAANEAAABRAAAA0QAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJeAAAAXgAAAEQAAAFEAAADRAAAAF4AAABPAAAAXgAAAF4AAABeAAAARAAAAhYAAANEAAAAFgAAAkQAAAIWAAAARAAAAF4AAABEAAADRAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAABYAAANEAAAAFgAAA0QAAAEWAAAARAAAARYAAAJEAAABRAAAAkQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABEAAABFgAAAUQAAAIWAAABRAAAAhYAAAFEAAAARAAAAUQAAABEAAADRAAAAF4AAABOAAAATgAAAE4AAABOAAAAFgAAA0QAAAMWAAACXgAAABYAAAFEAAAAFgAAAF4AAABEAAADRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAIWAAABRAAAAl4AAABEAAADFgAAAUQAAABeAAAARAAAA0QAAAFEAAABXgAAABYAAAEWAAADFgAAABYAAAEWAAABRAAAAxYAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAA14AAAAWAAABFgAAAxYAAAMWAAADFgAAA14AAAAWAAACXgAAABYAAAAWAAAAFgAAA14AAABEAAADRAAAA0QAAAJeAAAAFgAAABYAAAIWAAAAFgAAAlsAAAJeAAAAFQAAABUAAAA0AAAANAAAADQAAABeAAAARAAAAkQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABbAAADXgAAABUAAAAVAAAAFQAAADQAAAA0AAAAXgAAAEQAAANEAAAARAAAAl4AAAAWAAAAFgAAAxYAAAEWAAAAFgAAAl4AAAAWAAAAFgAAAhYAAAJeAAAATwAAAF4AAABEAAAARAAAAUQAAAJEAAACRAAAAkQAAAFEAAADFgAAAg== - -1,-1: - ind: -1,-1 - tiles: UQAAA1EAAAFRAAADUQAAAlEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAFEAAAJRAAACUQAAAVEAAABRAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAUQAAAFEAAAFRAAAAUQAAAl4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAVEAAAFRAAAAUQAAAFEAAAJeAAAAUQAAAVEAAANRAAAAUQAAAToAAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAFRAAABUQAAA1EAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABRAAAAUQAAAlEAAAFRAAABUQAAAl4AAABRAAABUQAAAVEAAAJRAAAAUQAAAVEAAAJeAAAAXgAAAF4AAABeAAAAUQAAAlEAAABRAAACUQAAA1EAAAFRAAADUQAAAlEAAAJRAAADUQAAAlEAAABRAAADXgAAAF4AAABeAAAAFgAAAlEAAAJRAAACUQAAAVEAAANRAAADXgAAAFEAAAJRAAAAUQAAAVEAAAJRAAABUQAAAF4AAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAABRAAACUQAAAF4AAABRAAAAUQAAA1EAAAFRAAABUQAAAF4AAABeAAAAXgAAAF4AAAAWAAABUQAAAFEAAAFeAAAAUQAAAVEAAANeAAAAUQAAAlEAAANRAAABUQAAAVEAAAFeAAAATgAAAF4AAABeAAAAFgAAAFEAAANRAAACUQAAAlEAAAFRAAACXgAAAF4AAABRAAABXgAAAFEAAANeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABRAAAAUQAAA1EAAANRAAADUQAAAlEAAABRAAACUQAAAVEAAAJRAAADUQAAA14AAABEAAADRAAAAEQAAANeAAAAXgAAAFEAAANRAAABUQAAAlEAAAJRAAABUQAAAFEAAAFRAAADUQAAAFEAAAJEAAABRAAAAkQAAANEAAADRAAAAV4AAABRAAACUQAAAFEAAABRAAACUQAAAVEAAAFRAAACUQAAAlEAAAJRAAABRAAAAUQAAAJEAAACRAAAAkQAAABeAAAAUQAAAFEAAANRAAADUQAAAFEAAAFRAAAAUQAAAVEAAAFRAAACUQAAA14AAABEAAABRAAAAkQAAAFeAAAAXgAAAFEAAAFRAAAAUQAAAlEAAABRAAACUQAAA1EAAAJeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAACXgAAAA== - 0,-1: - ind: 0,-1 - tiles: XgAAAF4AAABOAAAAMQAAADEAAAAxAAAAXgAAAFsAAABbAAACWwAAAF4AAABEAAABRAAAAEQAAAAWAAABXgAAAF4AAABeAAAAXgAAADEAAAAxAAAAMQAAAF4AAABbAAACWwAAAlsAAAJeAAAARAAAAEQAAAJEAAABFgAAAV4AAABeAAAAXgAAAE4AAAAxAAAAMQAAADEAAABeAAAAWwAAA1sAAABbAAABXgAAAEQAAAJEAAADRAAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAAJeAAAAXgAAAF4AAAAWAAAAXgAAAFsAAABbAAABWwAAACoAAABEAAAARAAAA0QAAAFEAAACRAAAAEQAAAJEAAAAFgAAAl4AAABeAAAAFgAAARYAAABbAAABWwAAA1sAAAAdAAAARAAAAkQAAAFEAAAARAAAAkQAAABEAAACRAAAARYAAABEAAABFgAAARYAAAEWAAABWwAAAFsAAAJbAAABHQAAA0QAAABEAAABRAAAAEQAAANEAAACRAAAAkQAAAEWAAAAXgAAABYAAAEWAAACFgAAAlsAAANbAAAAWwAAAx0AAAJEAAACRAAAAUQAAAJeAAAARAAAA0QAAABEAAABXgAAAF4AAAAWAAAAFgAAAl4AAABbAAAAWwAAAlsAAAAqAAAARAAAA0QAAABEAAACXgAAAEQAAABEAAADRAAAAUQAAANEAAAAFgAAAhYAAABeAAAAWwAAAFsAAAJbAAABKgAAAEQAAAFEAAAARAAAA14AAABEAAABRAAAAUQAAABEAAADRAAAAxYAAAFeAAAAXgAAAFsAAAJbAAABWwAAAF4AAABEAAACRAAAA0QAAABeAAAARAAAA0QAAAFEAAACRAAAAEQAAAAMAAACDAAAAAwAAAIqAAAAHQAAAioAAAAqAAAARAAAAUQAAAFEAAAAXgAAAEQAAABEAAACRAAAA0QAAANEAAADRAAAAkQAAAJEAAAARAAAAUQAAAFEAAABRAAAAUQAAANEAAACRAAAA14AAABEAAABRAAAA0QAAABEAAABRAAAAEQAAAFEAAAARAAAAkQAAAFEAAACRAAAAUQAAANEAAADRAAAA0QAAANeAAAARAAAA0QAAAFEAAACRAAAAEQAAANEAAAARAAAAkQAAABEAAACRAAAAkQAAABEAAACRAAAAUQAAAJEAAAAXgAAAEQAAAFEAAADRAAAAUQAAAFEAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAABRAAAAxYAAAAWAAADFgAAAV4AAABEAAACRAAAAUQAAABeAAAAXgAAAA== - -2,0: - ind: -2,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAl4AAABeAAAAXgAAAEQAAABeAAAAXgAAAEQAAAFEAAADRAAAAEQAAAJEAAACRAAAAEQAAAFEAAACRAAAAUQAAABEAAACRAAAA0QAAABEAAAARAAAA0QAAABEAAABRAAAA0QAAAJEAAACRAAAAUQAAAJEAAACRAAAAkQAAABEAAADRAAAAEQAAAJEAAABRAAAAUQAAAFEAAABRAAAAEQAAAFEAAADRAAAAUQAAABEAAABRAAAA0QAAAFEAAABRAAAAUQAAAJEAAAARAAAA0QAAAJEAAABRAAAAkQAAAFEAAACXgAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAF4AAABEAAABRAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAuAAAALgAAAC4AAAAuAAAALgAAAC4AAABeAAAARAAAAEQAAAJEAAACXgAAAEQAAANEAAABFgAAARYAAABeAAAAOAAAAjgAAAI4AAACOAAAATgAAAM4AAABRAAAAUQAAABEAAAARAAAAkQAAAJEAAABRAAAAhsAAAIWAAABXgAAAC4AAAA4AAAATAAAAEwAAAFMAAADOAAAAl4AAABEAAADRAAAAEQAAAJeAAAARAAAAEQAAAMbAAABFgAAAl4AAAAuAAAAOAAAA0wAAAFMAAAATAAAAzgAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACGwAAAxYAAAFeAAAALgAAADgAAAFMAAADTAAAAEwAAAA4AAAAOAAAA0QAAABEAAAARAAAA14AAABEAAACRAAAAhYAAAMWAAAAXgAAAC4AAAA4AAABTAAAA0wAAAJMAAAAOAAAAzgAAANEAAAARAAAAEQAAAJEAAABRAAAA0QAAAAWAAADXgAAAF4AAAAuAAAAOAAAA0wAAANMAAADTAAAADgAAAI4AAABRAAAAEQAAAFEAAAAXgAAAEQAAANEAAADFgAAAhYAAABeAAAAOAAAATgAAAE4AAADOAAAADgAAAA4AAACLgAAAC4AAAAuAAAALgAAAF4AAABeAAAAFgAAABYAAAIWAAADXgAAAC4AAAAuAAAALgAAAC4AAAA4AAABLgAAAC4AAABeAAAAXgAAAF4AAABeAAAAJQAAACUAAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAHQAAAV4AAABeAAAAXgAAACUAAAAlAAAAJQAAACUAAAAlAAAAXgAAAE4AAABeAAAALgAAAC4AAAAuAAAALgAAAB0AAAIuAAAALgAAAF4AAAAlAAAAJQAAACUAAAAlAAAAJQAAAA== - 0,1: - ind: 0,1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAA0QAAANEAAAARAAAAUQAAAFEAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAARAAAA0QAAAFEAAAARAAAAUQAAAFEAAAARAAAABYAAANeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAEQAAANEAAACRAAAAF4AAABEAAACRAAAAkQAAAEWAAADFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAANeAAAAXgAAAEQAAABeAAAAXgAAABYAAABeAAAARAAAAEQAAAAWAAACRAAAA0QAAAJeAAAARAAAAUQAAANEAAADXgAAAEQAAAJEAAAARAAAAF4AAAAWAAABXgAAAEQAAAMWAAAAFgAAAhYAAANEAAAAXgAAAEQAAABEAAAARAAAAF4AAABEAAACHwAAAkQAAABEAAAAFgAAARYAAAAWAAAAFgAAABYAAAEWAAABFgAAAl4AAABEAAACRAAAAUQAAABeAAAARAAAAx8AAAFEAAADXgAAABYAAAFeAAAARAAAA0QAAAMWAAADRAAAAEQAAAJeAAAARAAAA0QAAANEAAADXgAAAEQAAAFEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAAEQAAANEAAABRAAAAV4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAAARAAAAEQAAAFEAAACRAAAAUQAAAJEAAABRAAAA0QAAAFEAAACRAAAAEQAAANEAAACRAAAAUQAAAFEAAADRAAAA0QAAAFEAAABRAAAA0QAAAJEAAACRAAAAjgAAANEAAABRAAAAEQAAAJEAAAARAAAAkQAAABEAAABRAAAA0QAAAFEAAADRAAAAUQAAAJEAAAARAAAAEQAAABEAAACRAAAAEQAAANEAAAARAAAA0QAAANEAAABXgAAAF4AAABeAAAAXgAAADgAAAFeAAAAXgAAAF4AAABEAAAARAAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAADgAAAM4AAACOAAAATgAAAI4AAAAOAAAAl4AAABEAAADRAAAAEQAAABEAAADRAAAA14AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAADRAAAAUQAAANeAAAAAAAAAF0AAABeAAAAWwAAA1sAAABbAAABWwAAAFsAAAFbAAAAXgAAAF4AAABEAAADRAAAAkQAAANEAAADXgAAAAAAAABdAAAAXgAAAA== - -1,1: - ind: -1,1 - tiles: JQAAAF4AAABEAAABXgAAAF4AAABbAAABWwAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAACUAAABEAAADRAAAAV4AAAAWAAAAWwAAA1sAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAFgAAAFsAAANbAAADWwAAAVsAAAFOAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAATgAAAE4AAABOAAAAXgAAABYAAAEWAAADFgAAABYAAAFeAAAATgAAAF4AAABeAAAAFgAAAEQAAAJEAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAANEAAABRAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAARAAAAUQAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAUQAAABEAAADRAAAAl4AAABeAAAAXgAAACoAAAApAAAAKwAAASoAAAAqAAAAKwAAASkAAAJeAAAAXgAAABYAAANEAAABRAAAAkQAAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAABEAAABRAAAAUQAAAFEAAACRAAAAkQAAANEAAADRAAAA0QAAAJEAAADRAAAAUQAAAFEAAABRAAAA0QAAAFEAAADRAAAA0QAAAJEAAADOAAAA0QAAAA4AAADOAAAAzgAAAI4AAABOAAAAEQAAAE4AAAARAAAAUQAAAFEAAABRAAAA0QAAABEAAAARAAAAkQAAAJEAAABRAAAAkQAAANEAAABRAAAAkQAAAFEAAABRAAAA0QAAANEAAACRAAAA0QAAABEAAABFgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAA14AAABeAAAAOAAAABYAAAMWAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAHwAAAxYAAAJeAAAAOAAAADgAAAIWAAACFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAABXgAAAF4AAABeAAAAFgAAAxYAAABeAAAAFgAAABYAAAIWAAADFgAAARYAAAAWAAACFgAAAF4AAAAWAAADFgAAAF4AAAAWAAACWwAAAg== - -2,1: - ind: -2,1 - tiles: XgAAAE4AAABeAAAALgAAAB0AAAEdAAACHQAAAx0AAAMdAAABLgAAAF4AAAAlAAAAJQAAACUAAAAlAAAAJQAAAF4AAABOAAAAXgAAAC4AAAAuAAAALgAAAC4AAAAuAAAALgAAAC4AAABeAAAAXgAAAE8AAABeAAAAJQAAACUAAABeAAAATgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAE4AAABOAAAATgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAWwAAAl4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAANeAAAARQAAAkUAAAJFAAAARQAAAV4AAAAlAAAAJQAAACUAAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAADXgAAAEUAAAJFAAABRQAAAUUAAANeAAAAJQAAACUAAAAlAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAMAAABXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAXgAAAF4AAAAlAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAACRAAAA0QAAABEAAAARAAAAEQAAANEAAADRAAAA0QAAAFEAAADRAAAAUQAAAFEAAABRAAAAjgAAAFEAAADRAAAAUQAAABEAAACRAAAAjgAAAJEAAAARAAAAEQAAAFEAAACRAAAAkQAAANEAAABRAAAA0QAAAFEAAABRAAAAEQAAAFEAAABRAAAAEQAAAFEAAAARAAAAkQAAAFEAAACRAAAAkQAAAFEAAADRAAAAUQAAAJEAAACRAAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAAkQAAAJEAAADRAAAA0QAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAkQAAANEAAACRAAAAEQAAABEAAABRAAAAV4AAABeAAAAWwAAAFsAAAJbAAABWwAAAVsAAAFeAAAARAAAA0QAAABEAAABRAAAA0QAAANEAAABRAAAA0QAAAFeAAAAXgAAAFsAAANbAAADWwAAAlsAAAFbAAACXgAAAA== - -3,0: - ind: -3,0 - tiles: AAAAAF4AAABEAAADRAAAA14AAAAxAAAAMQAAADEAAAAxAAAAMQAAAF4AAAAWAAAAFgAAAhYAAAAWAAABXgAAAAAAAABeAAAARAAAAUQAAABeAAAAMQAAADEAAAAxAAAAMQAAADEAAABeAAAARAAAAEQAAAFEAAADRAAAAEQAAAAAAAAAXgAAAEQAAAFEAAADXgAAADEAAAAxAAAAMQAAADEAAAAxAAAAXgAAAEQAAAFEAAAARAAAA0QAAANEAAABAAAAAF4AAABEAAADRAAAA14AAAAxAAAAMQAAADEAAAAxAAAAMQAAAF4AAABEAAABRAAAAUQAAAFEAAADRAAAAwAAAABeAAAARAAAAUQAAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAABRAAAAEQAAAAAAAAAXgAAAEQAAAJEAAACRAAAAUQAAANEAAAARAAAA0QAAAJEAAACRAAAAEQAAABEAAADRAAAA14AAAAWAAABXgAAAF4AAABEAAAARAAAA0QAAAFEAAAARAAAAUQAAAJEAAADRAAAA0QAAABEAAAARAAAA0QAAABeAAAAFgAAAUQAAAFEAAACRAAAAkQAAAFEAAADRAAAAUQAAANEAAAARAAAAEQAAABEAAACRAAAAkQAAABEAAAAFgAAAhYAAANEAAACRAAAAEQAAAFEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAABYAAAAWAAAARAAAAV4AAABeAAAAXgAAAF4AAABEAAACRAAAA0QAAAFEAAACRAAAAl4AAABEAAACRAAAAUQAAAJeAAAAFgAAAUQAAABPAAAAXgAAAEQAAAJeAAAARAAAAEQAAAJEAAACRAAAAEQAAANEAAADRAAAAkQAAAFEAAADXgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADRAAAAUQAAABEAAADXgAAAEQAAABEAAAARAAAAV4AAABeAAAAXgAAABYAAAAWAAABFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAkQAAANeAAAAFgAAAkQAAAFEAAABRAAAA0QAAAJEAAACRAAAA0QAAANEAAABRAAAAUQAAAFEAAACRAAAAUQAAABEAAACXgAAABYAAANEAAABRAAAAUQAAAJEAAACRAAAAEQAAAJEAAACRAAAAkQAAANEAAABRAAAAkQAAABEAAABRAAAA14AAABeAAAARAAAAUQAAAJEAAACRAAAAUQAAABEAAADRAAAAEQAAAJEAAAARAAAAkQAAAJEAAABRAAAAEQAAAFPAAAAXgAAAA== - -3,1: - ind: -3,1 - tiles: XgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABEAAACRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAABRAAAAEQAAABEAAAARAAAAV4AAAAWAAACRAAAAUQAAAFEAAACFgAAAF4AAABeAAAAXgAAAE4AAABEAAADRAAAAUQAAABEAAACRAAAAkQAAAFeAAAAFgAAA0QAAAFEAAAARAAAABYAAAFeAAAAXgAAAF4AAABOAAAAXgAAAEQAAANEAAABRAAAA0QAAANEAAAAXgAAABYAAAJEAAABRAAAAkQAAAEWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAABbAAABWwAAAlsAAABbAAAAXgAAAEQAAAFEAAABRAAAAF4AAABbAAACXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAAFsAAAFbAAADWwAAAF4AAABEAAACRAAAAUQAAAJeAAAAWwAAA14AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAADXgAAAFsAAAFeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAA1AAAANQAAADUAAABeAAAAXgAAAEQAAAFEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAANQAAADUAAAA1AAAANQAAADUAAABEAAADRAAAA0QAAAJEAAABRAAAAl4AAABeAAAAXgAAAE4AAABeAAAAXgAAADUAAAA1AAAANQAAAF4AAABeAAAARAAAAUQAAAJEAAACRAAAAEQAAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAUQAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAAAWwAAAVsAAAFeAAAAKAAAACgAAABeAAAARAAAAkQAAAJEAAACXgAAAEQAAANeAAAAXgAAAE8AAABbAAACWwAAA1sAAAFbAAABXgAAACgAAAAoAAAAXgAAAEQAAAFEAAABRAAAA14AAABEAAADXgAAAF4AAABeAAAAWwAAA1sAAABbAAAAWwAAAV4AAAAoAAAAKAAAAF4AAABEAAAARAAAAkQAAANeAAAARAAAAg== - -4,0: - ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAA0QAAABEAAABRAAAAEQAAABEAAAARAAAA0QAAAJEAAABRAAAAUQAAAAAAAAAAAAAAAAAAABeAAAARAAAA0QAAAJEAAAARAAAA0QAAABEAAAARAAAA0QAAAJEAAAARAAAA0QAAABEAAABAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAA0QAAAFEAAAARAAAAUQAAANEAAADRAAAA0QAAABEAAABRAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFEAAACRAAAAkQAAABEAAABRAAAA0QAAABEAAACRAAAAEQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAADRAAAAEQAAABEAAABRAAAAUQAAAJEAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAADgAAAFEAAACRAAAAUQAAANEAAADRAAAAUQAAANEAAACRAAAAkQAAAMAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA4AAAARAAAAEQAAAMpAAACRAAAASsAAAJEAAABRAAAA0QAAAJEAAADAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAOAAAAkQAAAFEAAACRAAAAkQAAAFEAAAARAAAAEQAAANEAAADRAAAAg== - -3,-1: - ind: -3,-1 - tiles: XgAAABYAAAMWAAADFgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAACsAAAJVAAABVQAAA14AAAAWAAADJgAAABYAAAFPAAAATgAAAF4AAABeAAAAKgAAACoAAAAqAAAAUQAAAFEAAAErAAABVQAAAFUAAAJeAAAAFgAAARYAAAIWAAAAXgAAAE4AAABeAAAAXgAAACoAAAAqAAAAKgAAAFEAAABRAAACWgAAAVUAAABVAAAAXgAAABYAAAEmAAAAFgAAAV4AAABOAAAAXgAAAF4AAAAqAAAAKgAAACoAAABRAAABUQAAAysAAABVAAADVQAAAV4AAAAWAAAAFgAAABYAAAFeAAAATgAAAF4AAABeAAAAKgAAACoAAAAqAAAAUQAAAlEAAAErAAADVQAAA1UAAABeAAAAXgAAABYAAAIWAAACXgAAAE4AAABeAAAAXgAAACoAAAAqAAAAKgAAAFEAAAJRAAADKwAAA1UAAAJVAAACXgAAAF4AAABEAAACRAAAAV4AAABOAAAAXgAAAF4AAAAqAAAAKgAAACoAAABRAAABUQAAAysAAABVAAACVQAAAF4AAABeAAAARAAAAkQAAAFPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABeAAAALgAAAEQAAAFeAAAAXgAAAEQAAAJEAAADXgAAAE4AAABeAAAAXgAAAEQAAAFEAAAARAAAAEQAAABEAAAARAAAAUQAAAJEAAACRAAAAkQAAABEAAAARAAAA14AAABeAAAAXgAAAF4AAABEAAACRAAAA0oAAAFEAAAARAAAAEoAAABEAAACSgAAAkQAAABEAAADRAAAAUQAAABEAAAAXgAAAF4AAABeAAAARAAAAUQAAABEAAAARAAAAEQAAAJEAAAARAAAA0QAAAJEAAADRAAAAkQAAAJEAAABRAAAAV4AAABeAAAAXgAAAEQAAAFEAAADRAAAAEQAAABEAAADRAAAAEQAAABEAAACXgAAAF4AAABEAAAARAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAAAAAABeAAAARAAAAEQAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAACUAAAAlAAAAJQAAAF4AAAAAAAAAXgAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAlAAAAJQAAACUAAABRAAAAAAAAAF4AAABEAAADRAAAAF4AAABeAAAAMQAAADEAAAAxAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAXgAAAA== - -4,-1: - ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABEAAADRAAAAkQAAABEAAAARAAAAUQAAABEAAABRAAAAkQAAAJEAAACRAAAAUQAAAIAAAAAAAAAAAAAAABeAAAARAAAAkQAAAJEAAABRAAAAUQAAABEAAAARAAAAEQAAAFEAAADRAAAA0QAAANEAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-1: - ind: -2,-1 - tiles: VQAAAF4AAABOAAAAUQAAAFEAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAFEAAANRAAAAXgAAAFUAAANeAAAATgAAAFEAAABRAAADXgAAAEQAAANRAAACUQAAAVEAAANRAAABXgAAAFEAAAFaAAAAUQAAAlEAAABVAAABXgAAAF4AAABRAAAAXgAAAF4AAABEAAABUQAAAFEAAABRAAADUQAAAFEAAABRAAAAWgAAAFEAAAFeAAAAVQAAA14AAABRAAACUQAAA1EAAAFeAAAARAAAAlEAAABRAAABUQAAAVEAAABeAAAAUQAAAFEAAAJRAAADXgAAAFUAAANeAAAAUQAAA1EAAABRAAABXgAAAF4AAABRAAACUQAAAV4AAABeAAAAXgAAAFEAAAJRAAADUQAAAF4AAABVAAAAWgAAAVEAAAFRAAADUQAAA14AAABRAAACUQAAAFEAAABRAAADUQAAAF4AAABRAAACUQAAAlEAAAJRAAACVQAAAl4AAABRAAAAUQAAAVEAAAFRAAAAWgAAAVoAAANaAAADWgAAAloAAANRAAABUQAAAFEAAANRAAAAUQAAAC4AAABeAAAAUQAAAlEAAABRAAADUQAAA1oAAANaAAABWgAAAloAAANaAAAAUQAAAlEAAAFRAAABUQAAAlEAAAFEAAACXgAAAFEAAAJRAAABUQAAAV4AAABRAAAAUQAAAFEAAAJRAAACUQAAAV4AAABRAAAAUQAAA1EAAABeAAAARAAAAEQAAABRAAADUQAAA1EAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAFEAAAFRAAACXgAAAEQAAANeAAAAUQAAAFEAAAJRAAAAFgAAABYAAAEWAAABFgAAAxYAAAAWAAAAFgAAAlEAAAFRAAAAUQAAAlEAAABEAAABXgAAAF4AAABaAAADXgAAAF4AAAAWAAACFgAAAhYAAAEWAAACFgAAAV4AAABRAAACUQAAA1EAAAFeAAAAXgAAAF4AAABbAAACWwAAAFsAAABeAAAAFgAAARYAAAEWAAAAFgAAABYAAANeAAAAXgAAAEQAAABeAAAAXgAAAFEAAAJRAAABWwAAAlsAAAJbAAACXgAAABYAAAAWAAADFgAAAxYAAAEWAAABXgAAAEQAAAFEAAAARAAAAkQAAAFRAAADUQAAA1sAAANbAAABWwAAAl4AAAAWAAADFgAAARYAAAMWAAAAFgAAA14AAABEAAADRAAAAEQAAAJEAAABUQAAAVEAAAFbAAAAWwAAAVsAAAAWAAABFgAAAxYAAAEWAAABFgAAAxYAAAJeAAAARAAAAUQAAAJEAAADRAAAAg== - -2,2: - ind: -2,2 - tiles: RAAAA0QAAANEAAAARAAAAkQAAAJEAAADRAAAAUQAAABeAAAAXgAAAFsAAAFbAAABWwAAAR0AAANbAAAAXgAAAEQAAAFEAAADRAAAA0QAAABEAAABRAAAA0QAAABEAAACXgAAAF4AAABeAAAAHwAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABWwAAAVsAAAFbAAABWwAAAlsAAABeAAAARAAAAUQAAAFEAAABXgAAADEAAAAxAAAAMQAAADEAAABeAAAAWwAAAVsAAAFbAAADWwAAAlsAAAJbAAAAXgAAAEQAAAFEAAAARAAAAl4AAAAxAAAAMQAAADEAAAAxAAAAXgAAAFsAAAJbAAADWwAAA1sAAANbAAACWwAAAl4AAABEAAABRAAAAEQAAAJeAAAAFgAAABYAAAIWAAABFgAAAhYAAAIWAAADFgAAAxYAAAIWAAAAFgAAAhYAAAMWAAABFgAAAxYAAAJeAAAAXgAAAF4AAAAfAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAADXgAAAFUAAANUAAAAVQAAAlUAAABeAAAATgAAAF4AAABPAAAAFgAAABYAAAEWAAADFgAAARsAAAMWAAABFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAACFgAAAF4AAAAbAAAAFgAAAl4AAABeAAAAFgAAABYAAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAAEQAAABEAAAAXgAAABYAAAEWAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAOAAAAjgAAAE4AAADXQAAAF4AAABEAAAARAAAARYAAAMWAAABFgAAAxYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAARAAAA0QAAANeAAAAFgAAARYAAAAWAAACXgAAAE4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABEAAACRAAAAkQAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAARAAAAkQAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAA== - -3,2: - ind: -3,2 - tiles: XgAAAF4AAABeAAAAMQAAADEAAAAxAAAAMQAAAF4AAAAoAAAAKAAAAF4AAABEAAADRAAAA0QAAABeAAAARAAAAV4AAABeAAAAXgAAADEAAAAxAAAAMQAAADEAAABeAAAAKAAAACgAAABeAAAARAAAAkQAAABEAAADXgAAAEQAAAFeAAAATwAAAF4AAABeAAAAXgAAAF4AAAAxAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAAV4AAABeAAAARAAAAUQAAANEAAAARAAAAkQAAABEAAABRAAAA0QAAAJEAAADRAAAA0QAAANEAAADRAAAAEQAAAFEAAADRAAAAUQAAAFEAAAARAAAAEQAAANEAAACRAAAAkQAAAFEAAAARAAAAkQAAANEAAABRAAAAEQAAANEAAADRAAAAUQAAAFEAAAARAAAAUQAAANEAAADRAAAAEQAAAJEAAAARAAAAEQAAAJEAAACRAAAAUQAAABEAAAARAAAA0QAAAJEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADXgAAABYAAAJeAAAAFgAAAEQAAANEAAAAXgAAAEQAAABEAAACRAAAAF4AAABEAAABRAAAA0QAAAFeAAAAFgAAAkQAAAMWAAACFgAAARYAAABEAAACRAAAAl4AAABEAAAARAAAAEQAAANeAAAARAAAA0QAAANEAAACXgAAABYAAAFEAAACFgAAARYAAAMWAAACRAAAAF4AAABeAAAAXgAAAEQAAABeAAAAXgAAAF4AAABEAAABXgAAAF4AAAAWAAAAXgAAABYAAAFeAAAAXgAAAEQAAANEAAACRAAAA0QAAABEAAACRAAAAkQAAABEAAADRAAAAUQAAAFEAAAARAAAAEQAAABEAAAARAAAA0QAAAJEAAACRAAAAkQAAANEAAACRAAAAkQAAAJEAAACRAAAAEQAAABEAAACRAAAAkQAAAFEAAACRAAAAEQAAANEAAAARAAAA0QAAABEAAABRAAAAUQAAAFEAAADRAAAA0QAAABEAAADRAAAA0QAAAFEAAAARAAAA0QAAANEAAACRAAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAPAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAl4AAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAF4AAABEAAAARAAAA0QAAAFEAAAARAAAAUQAAAJeAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAARAAAAUQAAABEAAAARAAAAg== - -4,1: - ind: -4,1 - tiles: AAAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAABRAAAAEQAAAFEAAAARAAAAEQAAANEAAADXgAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAEQAAAJEAAACRAAAACgAAAAoAAAAKAAAAEQAAABEAAABRAAAARYAAAIAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABEAAADRAAAAUQAAAMoAAAAKAAAACgAAABEAAACRAAAAEQAAAAWAAADAAAAAAAAAABdAAAAXQAAAF0AAABeAAAARAAAA0QAAAFEAAACKAAAACgAAAAoAAAARAAAAUQAAAFEAAABFgAAAwAAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAA0QAAANEAAADRAAAAEQAAAJEAAABRAAAAl4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA4AAACRAAAA0QAAAJEAAAARAAAAEQAAABEAAACRAAAA0QAAAAWAAACAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAOAAAA0QAAAFEAAAAKwAAA0QAAAEoAAAARAAAAUQAAAFEAAABFgAAAwAAAABeAAAAXgAAAF4AAABeAAAAXgAAADgAAABEAAADRAAAAkQAAANEAAADRAAAAUQAAAJEAAADRAAAAhYAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAUQAAAFEAAAARAAAA0QAAAJEAAADRAAAA0QAAAJeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAFgAAAhYAAAAWAAADFgAAAxYAAAEWAAADFgAAAhYAAAAWAAABXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABbAAAAWwAAAVsAAANbAAABWwAAAVsAAAIAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAAFsAAANbAAACWwAAAlsAAANbAAABAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAFsAAAFbAAACWwAAAlsAAAFbAAABWwAAAQ== - -4,2: - ind: -4,2 - tiles: AAAAAF0AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAATwAAAFsAAANbAAADWwAAAVsAAAJbAAACWwAAAgAAAAAAAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAF4AAAAWAAACFgAAAhYAAAIWAAADFgAAARYAAAIAAAAAXQAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAAAAAAAF0AAABeAAAAXgAAAE4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAEQAAAFEAAABRAAAAAAAAAAAAAAAXgAAAF4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAABRAAAA0QAAAMAAAAAAAAAAF4AAABeAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATwAAAF4AAABEAAACAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXgAAAF4AAABOAAAAXgAAAEcAAABHAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAEQAAAMAAAAAAAAAAF4AAABeAAAATgAAAF4AAABeAAAARwAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAARwAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAARwAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAEQAAANdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABdAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAAQ== - -4,3: - ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAAgAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABRAAABUQAAA1EAAAFEAAABXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADUQAAAFEAAAFRAAABRAAAAQAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAA1EAAANRAAADUQAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAABRAAAAUQAAAFEAAAFEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAQAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAFgAAAxYAAAEWAAABXgAAAEQAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAXgAAAEQAAAJEAAADRAAAAkQAAANEAAAAXQAAAF4AAABeAAAAJwAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF4AAABEAAADRAAAAUQAAABEAAACRAAAAwAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAAEQAAAFEAAABRAAAAEQAAAEAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAARAAAA14AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAARAAAAEQAAAFEAAADXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAEQAAABEAAACRAAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAA14AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABEAAABRAAAAUQAAABEAAAARAAAAQ== - -3,3: - ind: -3,3 - tiles: RAAAAEQAAAFeAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABeAAAARAAAAkQAAABEAAAARAAAAkQAAANEAAAAXgAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAXgAAAEQAAABEAAACRAAAAUQAAANEAAADRAAAA14AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAAAWAAACXgAAAF4AAABEAAAARAAAAkQAAAFEAAABRAAAAEQAAAEWAAACFgAAAF4AAABeAAAAFgAAAxYAAAAWAAAAFgAAARYAAABeAAAARAAAAkQAAABEAAABRAAAAUQAAANEAAACFgAAABYAAAJeAAAAXgAAAF4AAABeAAAAOgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAEQAAAFEAAABRAAAAxYAAAIWAAADXgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAABEAAABRAAAAEQAAABEAAACRAAAA0QAAAMWAAADFgAAA14AAABeAAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAARAAAAEQAAABEAAAARAAAAUQAAAFEAAABXgAAAF4AAABeAAAAXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAADwAAABeAAAAXgAAAF4AAABEAAABRAAAAEQAAAJEAAACXgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAAA8AAAAPAAAADwAAAA8AAAARAAAAUQAAAFEAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAPAAAADwAAAA8AAAAPAAAAEQAAABEAAABRAAAAkQAAAFeAAAAXgAAAEQAAABeAAAARAAAADwAAAA8AAAAXgAAADwAAAA8AAAAPAAAADwAAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAAA8AAAAPAAAACUAAAA8AAAAPAAAADwAAAA8AAAARAAAAUQAAANEAAABXgAAACUAAABeAAAARAAAAF4AAABEAAAAPAAAADwAAABeAAAAPAAAADwAAAA8AAAAPAAAAEQAAABEAAACRAAAAF4AAAAlAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAAJQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAARAAAAUQAAAFEAAABJQAAACUAAABeAAAAAAAAAAAAAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - -2,3: - ind: -2,3 - tiles: RAAAAkQAAANEAAABFgAAA14AAAAWAAACFgAAABYAAAMWAAACFgAAAxYAAANeAAAAXQAAAAAAAAAAAAAAAAAAAEQAAAFEAAABRAAAAxYAAAJeAAAAFgAAAhYAAAEWAAADFgAAAhYAAAAWAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABEAAACRAAAAUQAAAMWAAACFgAAABYAAAEWAAADFgAAARYAAAIWAAABFgAAAF4AAABdAAAAAAAAAAAAAAAAAAAARAAAAUQAAAJEAAACFgAAA14AAAAWAAABFgAAABYAAAMWAAADFgAAAxYAAAJeAAAAXQAAAAAAAAAAAAAAAAAAAEQAAANEAAABRAAAAhYAAABeAAAAFgAAARYAAAEWAAADFgAAAxYAAAEWAAACXgAAAF0AAAAAAAAAAAAAAAAAAABEAAAARAAAAkQAAAJeAAAAXgAAAF4AAABbAAADWwAAAlsAAAFbAAAAWwAAAF4AAABeAAAAAAAAAAAAAAAAAAAARAAAAEQAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAPAAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAADwAAAA8AAAAPAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAPAAAADwAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAPAAAADwAAAA8AAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAADwAAAA8AAAAPAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAPAAAADwAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,4: - ind: -3,4 - tiles: RAAAAkQAAAFEAAAAJQAAACUAAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAABRAAAAV4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAA0QAAAIwAAAAMAAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAAFEAAABMAAAADAAAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4AAAAuAAAALgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAuAAAALgAAAC4AAABeAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,4: - ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABEAAABRAAAA0QAAABEAAADRAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAARAAAAUQAAANEAAADRAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAEQAAAFEAAADRAAAAEQAAAFEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABEAAAARAAAAUQAAANEAAABRAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAC4AAAAuAAAALgAAAC4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAF4AAAAuAAAALgAAAC4AAAAuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,2: - ind: -1,2 - tiles: FgAAARYAAAAWAAABMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAABYAAAAWAAADFgAAABsAAAEWAAABWwAAAhYAAAIWAAAAXgAAADEAAABbAAAAWwAAAVsAAABbAAABWwAAAjEAAABeAAAAFgAAABYAAABeAAAAFgAAAFsAAAAWAAACFgAAAV4AAAAxAAAAWwAAACYAAAAmAAAAJgAAAFsAAAIxAAAAXgAAABYAAAMWAAACXgAAAF4AAAAWAAAAFgAAABYAAAFeAAAAMQAAAFsAAABbAAACWwAAA1sAAAFbAAACMQAAAF4AAAAWAAACFgAAAV4AAABbAAAAWwAAAxYAAAIWAAACXgAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAABeAAAAFgAAAxYAAABeAAAAXgAAAF4AAAAWAAAAFgAAAF4AAABeAAAAXgAAABYAAAMWAAACFgAAA14AAABeAAAAXgAAABYAAAAWAAACFgAAAE4AAABeAAAAFgAAABYAAAMWAAAAFgAAAV4AAABeAAAAFgAAA14AAABeAAAAFgAAAhYAAAAWAAABFgAAAl4AAABOAAAAXgAAABYAAAAWAAAAFgAAARYAAAEWAAABFgAAAhYAAAMWAAACFgAAABYAAAMWAAABFgAAAhYAAAFeAAAAXgAAAF4AAAAWAAABFgAAARsAAAIWAAAAFgAAABYAAAMWAAADFgAAARYAAAIWAAADGwAAARYAAAEWAAADXgAAAF4AAABeAAAAFgAAARYAAAAWAAADFgAAARYAAAAoAAAAKAAAACgAAAAWAAAAFgAAAhYAAAEWAAADFgAAAV4AAABeAAAAXgAAAF4AAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAEWAAADFgAAARYAAAAWAAABFgAAAV4AAABeAAAAXQAAAF0AAABeAAAAFgAAABYAAAAWAAABFgAAAhYAAAEbAAACFgAAAxYAAAAWAAAAFgAAABYAAABeAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAFgAAABYAAAMWAAACFgAAAhYAAAIWAAACFgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAABYAAAMWAAABFgAAARYAAAEWAAABFgAAAxYAAANeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAWAAAAFgAAAhYAAAEWAAACFgAAAxYAAAIWAAACXgAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXQAAAA== - 0,2: - ind: 0,2 - tiles: WwAAA1sAAAJbAAACWwAAAlsAAANbAAABXgAAAEQAAABEAAAARAAAAkQAAAJEAAABXgAAAAAAAABdAAAAXgAAAFsAAAJbAAADWwAAAlsAAAJbAAACWwAAAh8AAAFEAAADRAAAAkQAAABEAAACRAAAA14AAAAAAAAAXQAAAF4AAABeAAAAXgAAABYAAAEWAAACFgAAABYAAABeAAAARAAAA0QAAAFEAAACRAAAAkQAAAFeAAAAAAAAAF0AAABeAAAAWwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAEQAAANEAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAAAAAAAAXQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAADXgAAAF0AAABdAAAAAAAAAF0AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABEAAACRAAAA0QAAAJEAAACRAAAAEQAAAFEAAAARAAAAEQAAABeAAAAXQAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF0AAABeAAAAFgAAABYAAAAWAAACFgAAAhYAAABeAAAARAAAA0QAAABEAAACXgAAAF4AAABdAAAAXgAAAF0AAAAAAAAAXgAAABYAAAIsAAAALAAAACwAAAAWAAADXgAAAEQAAAFEAAADRAAAAV4AAABeAAAAXQAAAF4AAAAAAAAAAAAAAF4AAAAWAAAALAAAABYAAAIsAAAAFgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF0AAABeAAAAAAAAAAAAAABeAAAAFgAAAiwAAAAsAAAALAAAABYAAABeAAAATgAAAE4AAABOAAAAXgAAAAAAAABdAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAAAAAAAAXQAAAF4AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABeAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAA== - -1,3: - ind: -1,3 - tiles: AAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF4AAABeAAAAFgAAAl4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAACFgAAAw== - 1,1: - ind: 1,1 - tiles: XgAAAFoAAABaAAADXgAAABYAAAAWAAAAFgAAABYAAABeAAAAWwAAAlsAAANbAAAAWwAAAFsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAAWAAABXgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAEQAAABeAAAAWgAAA1oAAAJaAAAAWgAAA0QAAAJEAAAARAAAAEQAAABEAAAAFgAAABYAAAAWAAABFgAAAxYAAAIWAAABXgAAAFoAAANaAAADWgAAA1oAAAFEAAADRAAAAUQAAANEAAADRAAAAxYAAAEWAAADFgAAAhYAAAIWAAADFgAAAxYAAAIWAAADFgAAAkQAAAJEAAAARAAAAEQAAAJEAAACRAAAAkQAAAMWAAABFgAAAhYAAAMWAAACFgAAABYAAAEWAAACFgAAAhYAAAJEAAADRAAAAUQAAAJEAAABRAAAA0QAAAJEAAACUQAAAhsAAAIbAAAAGwAAATgAAAI4AAACFgAAAxYAAAEWAAADRAAAAUQAAAJEAAACRAAAAUQAAAJEAAADRAAAAl4AAAAbAAACGwAAAxsAAAE4AAACOAAAAxYAAAIWAAACFgAAAUQAAAFEAAACRAAAA0QAAAFEAAAARAAAA0QAAABeAAAAGwAAAxsAAAEbAAACOAAAAjgAAANeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAARAAAAkQAAAJEAAABRAAAAkQAAABEAAABRAAAAkQAAABEAAABXgAAAFEAAAFUAAABDgAAAA4AAABeAAAATgAAAEQAAAFEAAADRAAAA0QAAANEAAACRAAAAEQAAAJEAAADRAAAA1EAAAJRAAADVQAAAl4AAABeAAAAXgAAAF4AAABEAAADRAAAAkQAAANEAAADRAAAAkQAAAJEAAABRAAAA0QAAABeAAAAUQAAAlUAAANeAAAADgAAAF4AAAAOAAAAXgAAAF4AAABPAAAAXgAAAF4AAABEAAACRAAAAUQAAANeAAAAXgAAAFEAAAJUAAADXgAAAA4AAABeAAAADgAAAF4AAABeAAAATgAAAF4AAABeAAAARAAAAkQAAAFEAAABXgAAAFEAAABRAAACVQAAA1QAAABVAAACVQAAAVQAAANeAAAAXgAAAE4AAABeAAAATwAAAEQAAANEAAADRAAAAV4AAABRAAADUQAAAVQAAABVAAAAVAAAAFQAAAJVAAADXgAAAF4AAABOAAAAXgAAAF4AAABEAAABRAAAA0QAAAFeAAAAUQAAAlEAAAFRAAABXgAAAFEAAAJRAAADUQAAAQ== - 1,2: - ind: 1,2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAAFeAAAAXgAAAFEAAABeAAAAXgAAAF4AAABeAAAAXgAAADEAAAAxAAAAMQAAADEAAABEAAAARAAAAUQAAABEAAAARAAAAUQAAAJEAAADRAAAA14AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAABeAAAARAAAAEQAAANEAAADRAAAAkQAAABEAAACRAAAAEQAAANeAAAASQAAAEkAAABJAAACXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAAEQAAAFEAAAARAAAAkQAAAFEAAADXgAAAEQAAABEAAADRAAAAVsAAAJbAAAAWwAAAFsAAAFEAAABRAAAAUQAAANEAAADRAAAAUQAAAJEAAACRAAAAEQAAANEAAAARAAAAEQAAAJbAAACWwAAA1sAAANeAAAARAAAA0QAAAFEAAAARAAAAEQAAABEAAACRAAAA0QAAANEAAADRAAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAUQAAAFEAAADRAAAAUQAAAFEAAABXgAAAEQAAABEAAADRAAAAVsAAAJbAAABWwAAA1sAAAFEAAACRAAAAEQAAANEAAADRAAAAkQAAAFEAAAARAAAAl4AAABJAAABSQAAAEkAAAJbAAAAWwAAAlsAAANeAAAARAAAAUQAAANEAAADRAAAA0QAAAFEAAAARAAAAUQAAABeAAAAXgAAACUAAABeAAAAXgAAAF4AAABeAAAAXgAAADAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACUAAAAlAAAAJQAAAE4AAABeAAAAMAAAADAAAAAwAAAAMAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAlAAAAJQAAACUAAABeAAAATwAAADAAAAAwAAAAMAAAADAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAJQAAACUAAAAlAAAAXgAAAF4AAAAwAAAAMAAAADAAAAAwAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAA== - 2,2: - ind: 2,2 - tiles: XgAAADoAAABeAAAAFgAAAR0AAAAdAAABHQAAAB0AAAAdAAABHQAAAB0AAAMWAAABXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAB0AAAMdAAABFgAAAhYAAAEWAAACFgAAABYAAAIdAAACHQAAAF4AAABEAAADFgAAAl4AAABJAAADSQAAA14AAAAdAAAAFgAAAxYAAAMWAAACFgAAAhYAAAIWAAACFgAAAx0AAAMWAAABFgAAA0QAAAFeAAAARAAAAUQAAANEAAADHQAAABYAAAAWAAADFgAAARYAAAIWAAAAFgAAAhYAAAAdAAACXgAAAEQAAAEWAAACXgAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABRAAAA14AAABEAAACRAAAAF4AAAAWAAAAWwAAAFsAAANbAAADWwAAAVsAAAFbAAADWwAAA1sAAAJeAAAARAAAARYAAAFeAAAARAAAA0QAAAEWAAACFgAAAFsAAAJbAAACWwAAAVsAAAFbAAAAWwAAAFsAAAFbAAACFgAAABYAAABEAAACXgAAAEkAAABJAAAAXgAAABYAAAFbAAADWwAAA1sAAAJbAAAAWwAAAFsAAANbAAADWwAAA14AAABEAAACFgAAA14AAABeAAAAXgAAAF4AAAAWAAACWwAAA1sAAABbAAAAWwAAAVsAAAFbAAABWwAAAlsAAANeAAAAXgAAAEQAAABeAAAAXgAAAF4AAABeAAAAFgAAAlsAAAFbAAADWwAAAVsAAAJbAAACWwAAA1sAAAIWAAABRAAAA0QAAANEAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAA14AAABeAAAAWwAAAF4AAABbAAADWwAAAlsAAABeAAAAWwAAAl4AAABbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAV4AAABeAAAAWwAAAFsAAANeAAAAXgAAAFsAAAJbAAABXgAAAF4AAABeAAAAXgAAAFsAAAFbAAABWwAAA14AAABbAAAAXgAAAF4AAABbAAADWwAAA14AAABbAAACXgAAAFsAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - 2,1: - ind: 2,1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAAAWAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAABYAAAMWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAARwAAAF4AAABHAAAARwAAAF4AAAA4AAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAE4AAABOAAAARwAAAEcAAABeAAAAOAAAAl4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABOAAAATgAAAEcAAABOAAAAXgAAADgAAABeAAAATgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAARwAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAwAAAAMAAAADAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAMAAAADAAAAAwAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAADAAAAAwAAAAMAAABeAAAAXgAAAFQAAANVAAADXgAAACIAAAAiAAAAIgAAACIAAAAiAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAJVAAAAVAAAAV4AAAAiAAAAIgAAACIAAAAiAAAAIgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAVQAAAlUAAANeAAAAIgAAACIAAAAiAAAAIgAAACIAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 1,0: - ind: 1,0 - tiles: RAAAAkQAAAJEAAADRAAAAkQAAAJEAAAAXgAAAFsAAAJbAAACWwAAAFsAAAJEAAADXgAAAEQAAAFEAAADRAAAAEQAAAJEAAADRAAAAUQAAANEAAABRAAAAl4AAABbAAAAWwAAAFsAAAJbAAACRAAAA0QAAANEAAACRAAAAkQAAAFEAAABRAAAAUQAAANEAAAARAAAAkQAAAJeAAAAWwAAAFsAAABbAAAAWwAAAkQAAABeAAAARAAAA0QAAABEAAACXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAEWAAADUQAAAlEAAAFRAAABUQAAAFEAAAFRAAADFgAAARYAAAFOAAAATgAAAF4AAABeAAAAXgAAABYAAAMWAAADFgAAA1EAAANRAAABUQAAAlEAAANRAAABUQAAABYAAAMWAAACXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAARYAAAFRAAADUQAAA0QAAAJEAAABRAAAA1EAAAJeAAAAFgAAABYAAAMWAAAAFgAAAhYAAAMWAAAAFgAAAhYAAAIWAAAAUQAAAlEAAAJEAAADRAAAA0QAAAJRAAAAXgAAAF4AAAAWAAABFgAAABYAAAIWAAAAFgAAABYAAAEWAAABFgAAAlEAAANRAAACUQAAAFEAAANRAAAAUQAAA14AAAAWAAADFgAAARYAAAIWAAABFgAAABYAAAMWAAAAFgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAEWAAADXgAAAFsAAANbAAADWwAAAVsAAAFbAAABXgAAAF4AAABeAAAAWgAAA04AAABeAAAAFgAAARYAAAMWAAAAFgAAAl4AAABbAAABWwAAAlsAAAFbAAABWwAAAF4AAAAPAAAAFgAAAhYAAAEWAAAAFgAAAhYAAAEWAAADFgAAABYAAAFeAAAAWwAAAFsAAABbAAAAWwAAAVsAAABeAAAADwAAAA== - 1,-1: - ind: 1,-1 - tiles: XQAAAF4AAAAWAAAAFgAAAhYAAAAWAAABFgAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAAXgAAAEQAAAJEAAADRAAAAV4AAABEAAADRAAAAUQAAANEAAAARAAAA0QAAABEAAADRAAAAUQAAABEAAABRAAAAkQAAANEAAACRAAAAUQAAABEAAADRAAAAEQAAABEAAAARAAAAEQAAAJEAAACRAAAAEQAAAJEAAABTgAAAE4AAABeAAAARAAAA0QAAAJEAAADXgAAAEQAAABEAAAARAAAAkQAAABEAAACRAAAAkQAAANEAAABRAAAAl4AAABeAAAAXgAAAEQAAANEAAABRAAAAl4AAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADRAAAAF4AAABEAAACRAAAA0QAAAJEAAAARAAAAkQAAABEAAAARAAAAUQAAAJEAAADRAAAA0QAAANEAAABRAAAA0QAAABEAAABRAAAA0QAAABEAAABRAAAA0QAAANEAAADRAAAAUQAAAFEAAACRAAAAEQAAABEAAACRAAAAEQAAANEAAAAXgAAAEQAAANEAAADRAAAA14AAABEAAABRAAAAEQAAANEAAADRAAAA0QAAANEAAABRAAAA0QAAAFEAAABRAAAAV4AAABEAAACRAAAAkQAAANeAAAARAAAA0QAAAJEAAADRAAAAUQAAAFEAAAARAAAAkQAAABEAAABRAAAAkQAAABeAAAARAAAAUQAAANEAAADXgAAAEQAAABEAAACRAAAAUQAAAJEAAAARAAAAEQAAABEAAADRAAAAUQAAAFEAAAAXgAAAEQAAAJEAAAARAAAAUQAAABEAAADRAAAA0QAAABEAAACRAAAAUQAAANEAAADRAAAA0QAAABEAAAARAAAAV4AAABEAAABRAAAA0QAAABEAAAARAAAAUQAAAJEAAABRAAAAUQAAANEAAABRAAAA0QAAANEAAACXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABXgAAAA== - -1,-2: - ind: -1,-2 - tiles: FgAAA14AAABEAAABRAAAA0QAAABEAAABRAAAAUQAAAFEAAACRAAAAEQAAABeAAAAXgAAAEQAAAJeAAAAXgAAABYAAAFeAAAARAAAAEQAAABEAAABRAAAA0QAAABEAAACRAAAAEQAAAFEAAAAXgAAAEQAAABEAAAARAAAAkQAAAMWAAADFgAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAABRAAAAkQAAAFEAAABFgAAAV4AAABEAAACRAAAAUQAAANEAAADRAAAAkQAAAJEAAACRAAAA0QAAAFeAAAARAAAA0QAAANEAAACRAAAAV4AAABeAAAARAAAAEQAAABEAAADRAAAAEQAAAJEAAADRAAAAUQAAAJEAAAAXgAAAEQAAAFEAAAARAAAA0QAAAJOAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAEQAAABEAAABRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAUQAAAVEAAAJRAAABUQAAAVEAAANeAAAAXgAAAF4AAABEAAABRAAAAEQAAAFeAAAAJQAAACUAAAAlAAAAXgAAAFEAAAJaAAADWgAAAFoAAAJRAAACXgAAAF4AAABeAAAARAAAAEQAAAJEAAABXgAAACUAAAAlAAAAJQAAAF4AAABRAAADWgAAAVoAAABaAAAAUQAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAAV4AAAAlAAAAJQAAACUAAAAlAAAAUQAAAloAAAFaAAADWgAAAlEAAABPAAAAXgAAAF4AAABEAAABRAAAAUQAAANEAAABJQAAACUAAAAlAAAAXgAAAFEAAANRAAADUQAAAlEAAANRAAADXgAAAF4AAABeAAAARAAAAUQAAAFEAAABRAAAAiUAAAAlAAAAJQAAAF4AAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAAUQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAhYAAAJeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAUQAAAlEAAANRAAACUQAAAFEAAAIWAAAAFgAAAxYAAAIWAAADTwAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAA== - -2,-2: - ind: -2,-2 - tiles: XgAAAF4AAABeAAAAXgAAAFsAAAJbAAACXgAAAF4AAABeAAAAXgAAAFsAAANeAAAAXgAAAF4AAAAWAAACFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAWwAAAV4AAABbAAABWwAAAFsAAAFeAAAAXgAAAF4AAABeAAAAFgAAARYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAFRAAADXgAAAFEAAAFRAAAAUQAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABRAAADUQAAAF4AAABRAAABUQAAAVEAAANRAAADXgAAAF4AAABeAAAAXgAAAF4AAABRAAADUQAAAFEAAAJeAAAAUQAAA1EAAABeAAAAUQAAAlEAAANRAAAAUQAAAl4AAAAlAAAAJQAAACUAAAAlAAAAUQAAAVoAAAJRAAAAXgAAAFEAAANeAAAAXgAAAFEAAABRAAACUQAAA1EAAAJeAAAAJQAAACUAAAAlAAAAXgAAAFEAAANRAAADUQAAAl4AAABRAAACUQAAAVEAAAFRAAADUQAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAWgAAAVEAAAIlAAAAUQAAAFEAAAJRAAABUQAAA1EAAAFeAAAAUQAAAlEAAAJRAAACUQAAA1EAAAFeAAAAUQAAAVEAAAJRAAAAXgAAACUAAABeAAAAUQAAAVEAAAJRAAAAXgAAAFEAAANRAAACUQAAA1EAAAFRAAABUQAAA1EAAAJaAAADUQAAAV4AAAA8AAAAXgAAAF4AAABRAAACXgAAAF4AAABRAAAAUQAAA1EAAAJRAAABUQAAAFEAAAFRAAADWgAAA1EAAAJeAAAAXgAAAF4AAABOAAAAUQAAAlEAAAFeAAAAUQAAAVEAAAFRAAABUQAAAlEAAAFeAAAAUQAAAVEAAAJRAAADXgAAAA== - -3,-2: - ind: -3,-2 - tiles: XQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAFgAAARYAAAMWAAAAFgAAABYAAAAWAAADFgAAAl0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAARYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAACUQAAAV4AAAAWAAADFgAAARYAAAEWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAVEAAAFeAAAAXgAAABYAAAMWAAADFgAAA14AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAANRAAAAXgAAAF4AAAAWAAACFgAAAxYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAl4AAABeAAAAFgAAAiYAAAAWAAADXgAAAFsAAAJeAAAAQwAAAV4AAABbAAABXgAAAF4AAABeAAAAUQAAA1EAAAFRAAACXgAAABYAAAMWAAABFgAAA14AAABDAAAEXgAAAEMAAApDAAAEXgAAAF4AAABeAAAAXgAAAFEAAAJRAAAAUQAAA14AAAAWAAABJgAAABYAAABeAAAAWwAAAEMAAAVDAAAKQwAABF4AAABeAAAAXgAAAF4AAAAlAAAAJQAAADwAAABeAAAAFgAAABYAAAEWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAPAAAACUAAAAlAAAAXgAAABYAAAEmAAAAFgAAAl4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 0,-2: - ind: 0,-2 - tiles: XgAAAEQAAAFeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAEQAAANEAAABRAAAAkQAAANeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABEAAACRAAAAl4AAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAABEAAAARAAAA0QAAANEAAADRAAAAF4AAABEAAACRAAAAEQAAANEAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAAARAAAAl4AAABEAAADRAAAAEQAAANeAAAARAAAA0QAAAJEAAAARAAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAAkQAAAFeAAAARAAAAEQAAAJEAAACXgAAAEQAAAFEAAADRAAAAUQAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABeAAAAXgAAAEQAAANEAAACRAAAA14AAABeAAAARAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAKAAAACgAAAAoAAAACwAAAF4AAABEAAABRAAAA0QAAANeAAAARAAAAEQAAABEAAAARAAAAUQAAAFOAAAAXgAAACgAAAAoAAAAKAAAAAsAAABeAAAARAAAAkQAAAJEAAACRAAAAUQAAANEAAAARAAAAkQAAAJEAAADTgAAAF4AAAAoAAAAKAAAACgAAAALAAAAXgAAAEQAAANEAAACRAAAA0QAAABEAAADRAAAAkQAAAFEAAADRAAAA04AAABeAAAAKAAAACgAAAAoAAAACwAAAF4AAABeAAAARAAAAF4AAABeAAAARAAAAUQAAAJEAAAARAAAAEQAAABOAAAAXgAAAF4AAABeAAAARAAAAV4AAABeAAAAFgAAARYAAAMWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAABEAAADRAAAAEQAAABEAAAARAAAA0QAAANEAAADRAAAAEQAAAJEAAAARAAAA14AAABeAAAARAAAAEQAAAJEAAACRAAAAUQAAAFEAAABRAAAAkQAAANEAAACRAAAA0QAAAFEAAACRAAAAUQAAAMWAAAAXgAAAEQAAANEAAABRAAAAUQAAANEAAADRAAAAUQAAABEAAABRAAAAEQAAAFEAAADRAAAAkQAAAJEAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAB8AAAFeAAAAXgAAAEQAAAFEAAAARAAAARYAAAJeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAXgAAAFsAAABbAAACWwAAAl4AAABEAAACRAAAAEQAAAMWAAADXgAAAA== - 1,-2: - ind: 1,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAOgAAADoAAAA6AAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAA6AAAAOgAAADoAAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAOgAAADoAAAA6AAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAWAAABFgAAA14AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAA6AAAAFgAAAxYAAAI6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABeAAAAFgAAABYAAAEWAAADFgAAAxYAAAFeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAADoAAAA6AAAAOgAAABYAAAAWAAABXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF4AAAA6AAAAOgAAADoAAAAWAAACFgAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-1: - ind: 2,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAABRAAAAUQAAAFeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAAUQAAAFEAAACXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAABRAAAA14AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAADXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAAUQAAAFEAAACXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAABEAAAARAAAAV4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAABRAAAAUQAAAFeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAAUQAAAFEAAABXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAAJEAAADRAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAADRAAAAkQAAAFeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAA0QAAAFEAAADXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,-3: - ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAMWAAABFgAAAF4AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAARYAAAJeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADFgAAAhYAAAEWAAADXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAARAAAAUQAAAJEAAADRAAAAl4AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAEQAAABEAAACRAAAA0QAAAJeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABEAAADRAAAAEQAAAJEAAABXgAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAARAAAAkQAAABEAAABRAAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAEQAAAFEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAOgAAADoAAAA6AAAAXgAAAF0AAABeAAAARAAAAV4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAARAAAAUQAAANEAAACXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAEQAAANEAAADRAAAAUQAAANeAAAATgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABEAAABRAAAAkQAAABEAAABRAAAAk4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAADRAAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 1,-3: - ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAOgAAADoAAAA6AAAAXgAAAF4AAAAAAAAAAAAAAA== - -1,-3: - ind: -1,-3 - tiles: XgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAABFgAAAxYAAAIWAAABFgAAAhYAAAMWAAAAFgAAAhYAAAAWAAACFgAAARYAAANeAAAARAAAAF4AAABEAAABRAAAAUQAAABEAAAARAAAAUQAAAFEAAABRAAAAEQAAANEAAACRAAAAEQAAABEAAAAXgAAAEQAAAFeAAAARAAAAEQAAANEAAADRAAAAUQAAAJEAAACRAAAAEQAAABEAAACRAAAAkQAAABEAAAARAAAA14AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAADRAAAAUQAAANEAAADRAAAAUQAAABEAAABRAAAAUQAAAFEAAACRAAAAUQAAANEAAACRAAAAUQAAANEAAABRAAAAkQAAAFEAAABRAAAADkAAAA5AAAAOQAAADkAAAA5AAAARAAAAkQAAANEAAABRAAAAEQAAABEAAABRAAAAkQAAANEAAABRAAAAUQAAABEAAACRAAAA0QAAANEAAADRAAAAEQAAANEAAADRAAAAEQAAANEAAADRAAAAV4AAABEAAACRAAAAEQAAANEAAADRAAAAUQAAANEAAADRAAAAEQAAAFEAAABRAAAAUQAAAJEAAACRAAAAl4AAABeAAAAFgAAAxYAAAIWAAABXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAABYAAAMWAAACFgAAA14AAAAWAAACXgAAAF4AAAAWAAABXgAAAF4AAAAWAAACFgAAABYAAAEWAAADFgAAAl4AAABeAAAARAAAAl4AAABeAAAAFgAAA14AAAAWAAAAFgAAAhYAAAJeAAAAFgAAARYAAAMWAAACFgAAAxYAAANeAAAARAAAAkQAAANEAAAAXgAAABYAAABeAAAAFgAAAhYAAAMWAAAAXgAAABYAAAJeAAAAXgAAAF4AAAAWAAADXgAAAEQAAAA4AAADRAAAA14AAABeAAAAXgAAABYAAAEWAAAAFgAAAhYAAAMWAAAAFgAAAxYAAAEWAAADFgAAAV4AAABEAAAAOAAAA0QAAANEAAACFgAAAV4AAAAWAAAAFgAAAxYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAABXgAAAA== - -2,-3: - ind: -2,-3 - tiles: XgAAAF4AAABeAAAARAAAA14AAABeAAAAOgAAADoAAAA6AAAAOgAAAF4AAABdAAAAXgAAABYAAAMWAAADFgAAAF4AAABeAAAARAAAAV4AAABEAAADXgAAADoAAAA6AAAAOgAAAF4AAABeAAAAXQAAAF4AAAAWAAADFgAAARYAAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABeAAAARAAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAkQAAABEAAABRAAAAUQAAAJeAAAARAAAAEQAAAJEAAAARAAAAV4AAABeAAAAXgAAAE4AAABOAAAAXgAAABYAAANEAAABRAAAAUQAAAFEAAACXgAAAEQAAAJEAAABRAAAAEQAAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAAAWAAADRAAAAEQAAAJEAAAARAAAAkQAAABEAAABRAAAA0QAAAJEAAABXgAAAF4AAABeAAAATgAAAE4AAABPAAAARAAAAEQAAANEAAAARAAAAkQAAAFEAAABRAAAAUQAAABEAAACRAAAAF4AAABOAAAATgAAAE4AAABOAAAAXgAAAEQAAAJEAAAARAAAAEQAAAFEAAAAXgAAAEQAAAFEAAAARAAAAUQAAAFeAAAAXgAAAF4AAABOAAAATgAAAF4AAAAWAAAAFgAAAxYAAAEWAAADFgAAA14AAABEAAAARAAAAUQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAACRAAAAl4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABHAAAAXgAAAEcAAABHAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAEcAAABeAAAARwAAAF4AAAAWAAABFgAAARYAAAEWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAEcAAABHAAAAXgAAAF4AAABeAAAAFgAAAxYAAAIWAAABFgAAA14AAABeAAAAXgAAAF4AAABbAAADXgAAAF4AAABeAAAAXgAAAF4AAABbAAABXgAAABYAAAEWAAAAFgAAAhYAAAIWAAACXgAAAF4AAABeAAAAWwAAAFsAAAFeAAAAWwAAAlsAAANeAAAAWwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAA1sAAAFeAAAAWwAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAQ== - -2,-4: - ind: -2,-4 - tiles: RAAAA0QAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXQAAAEQAAANEAAABRAAAAl4AAABeAAAAOwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF0AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABdAAAAFgAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXQAAAF4AAABEAAACRAAAAF4AAABEAAACRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABEAAADRAAAA0QAAAJEAAADRAAAAUQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAARAAAAkQAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAADoAAAA6AAAAOgAAADoAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAAA6AAAAOgAAADoAAAA6AAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAOgAAAF4AAABdAAAAXgAAABYAAAAWAAADFgAAAA== - -1,-4: - ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAF4AAABeAAAAFgAAAhYAAAMWAAAAFgAAABYAAAMWAAACFgAAAxYAAAEWAAACXgAAAF4AAABdAAAAAAAAAF0AAABeAAAAXgAAABYAAAEWAAACFgAAAhYAAAMWAAADFgAAARYAAAEWAAAAFgAAA14AAABeAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAE4AAABeAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAADoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 0,-4: - ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAxYAAAFeAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAXgAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABFgAAAl4AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAJeAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAXgAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABFgAAAl4AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-5: - ind: -2,-5 - tiles: AAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXQAAAA== - -1,-5: - ind: -1,-5 - tiles: XQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-6: - ind: -2,-6 - tiles: AAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAA== - -1,-6: - ind: -1,-6 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-7: - ind: -2,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - -1,-7: - ind: -1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAA== - -3,-6: - ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAA== - -3,-5: - ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -3,-7: - ind: -3,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAA== - 2,0: - ind: 2,0 - tiles: XgAAAFsAAABbAAACWwAAA1sAAAFeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABeAAAAWwAAAFsAAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABbAAABXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABbAAADXgAAAFsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF0AAABdAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAAAAAAAAXQAAABYAAAEWAAADXgAAAFEAAAFRAAACUQAAA1EAAANRAAADUQAAAF4AAABeAAAAXgAAAE4AAABeAAAAAAAAAF0AAAAWAAABFgAAAFEAAAFRAAADUQAAAFEAAANRAAACUQAAAlEAAAJeAAAAXgAAAE4AAABOAAAAXgAAAF0AAABdAAAAFgAAAxYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAJRAAADXgAAAF4AAABeAAAATgAAAF4AAAAAAAAAXQAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAADUQAAAV4AAABeAAAAXgAAAE4AAABeAAAAAAAAAF0AAAAWAAADFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAADgAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAFgAAARYAAAFeAAAAOgAAADoAAAA6AAAAOgAAAF4AAAA4AAAAOAAAAV4AAABeAAAAXgAAAF4AAAAAAAAAXQAAABYAAAJeAAAAXgAAADoAAAA6AAAAOgAAADoAAAA4AAAAOAAAAjgAAAFeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAWAAACDwAAAF4AAAA6AAAAOgAAADoAAAA6AAAAXgAAADgAAAA4AAADXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAFgAAAA8AAABeAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 2,-3: - ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-2: - ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-4: - ind: 2,-4 - tiles: BAAAAAQAAAAEAAAABAAAAQQAAAIEAAAABAAAAgQAAAIEAAACBAAAAQQAAAEEAAACBQAAAAQAAAEEAAACBAAAAAQAAAAEAAABBAAAAgQAAAEEAAAABAAAAQQAAAIEAAACBAAAAQQAAAIEAAAABAAAAgQAAAAEAAAABAAAAAQAAAIEAAACBAAAAQQAAAIEAAACBAAAAgQAAAAEAAACBAAAAAQAAAAEAAABBAAAAgQAAAAEAAAABAAAAgQAAAEAAAAABAAAAgQAAAEEAAAABAAAAAQAAAEEAAAABAAAAgQAAAIEAAACBAAAAQQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAQAAAEEAAAABAAAAgQAAAAEAAABBAAAAgQAAAIEAAAABAAAAAQAAAEEAAABBAAAAQQAAAIEAAAABAAAAAAAAAAEAAABBAAAAQQAAAAEAAABBAAAAAQAAAEEAAACBAAAAAQAAAAEAAABBAAAAgQAAAAEAAABBAAAAQQAAAEAAAAABAAAAgQAAAEEAAAABAAAAgQAAAIEAAACBAAAAQQAAAAEAAAABAAAAgUAAAAEAAABBAAAAgQAAAEAAAAAAAAAAAQAAAIEAAABBAAAAAQAAAIEAAABBAAAAQQAAAIEAAAABAAAAAQAAAAEAAAABAAAAAQAAAEEAAABAAAAAAAAAAAEAAABBAAAAgQAAAIEAAACBQAAAAQAAAEEAAACBAAAAAQAAAEEAAACBAAAAAQAAAAEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAEEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAFeAAAABAAAAAQAAAAEAAABBAAAAQQAAAFeAAAABAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAEAAABBAAAAQQAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,3: - ind: 1,3 - tiles: XgAAAF4AAABeAAAAXgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABHAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAFsAAAFeAAAARwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFsAAABbAAABXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbAAACWwAAAl4AAABHAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,3: - ind: 0,3 - tiles: XQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAFsAAABbAAAAWwAAA14AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABbAAACWwAAAlsAAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAFsAAANbAAACXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAWwAAAlsAAABbAAACXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABbAAACWwAAAVsAAABbAAAAWwAAAgAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAWwAAAFsAAABbAAADWwAAAVsAAAFdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAFsAAAJbAAAAWwAAA14AAABbAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABbAAABWwAAAF4AAAAWAAACFgAAA14AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABeAAAAWwAAAVsAAAFeAAAAFgAAAhYAAABeAAAAFgAAAl4AAABeAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAA== - 3,2: - ind: 3,2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,1: - ind: 3,1 - tiles: XgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXQAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABHAAAATgAAAE4AAABOAAAAXgAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAATgAAAE4AAABHAAAARwAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABeAAAAAAAAAF0AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAA== - 4,1: - ind: 4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAACYAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAA== - 4,2: - ind: 4,2 - tiles: XgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,2: - ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAATgAAAE4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAA== - -5,3: - ind: -5,3 - tiles: AAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -6,2: - ind: -6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAmAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAA== - -6,3: - ind: -6,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - -4,-2: - ind: -4,-2 - tiles: CgAAAAsAAAALAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAoAAAALAAAACwAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAKAAAACwAAAAsAAAAKAAAACgAAAAoAAAAKAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAACgAAAAsAAAALAAAACwAAAAsAAAAKAAAACgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAoAAAALAAAACwAAAAoAAAALAAAACgAAAAoAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAFgAAABYAAAFeAAAACwAAAAoAAAAKAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAIWAAABFgAAA0QAAANeAAAAFgAAARYAAAMWAAAAXgAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAABEAAADFgAAAxYAAANEAAACXgAAABYAAAMWAAAAFgAAAxYAAAIWAAAAFgAAAxYAAAAWAAABFgAAARYAAAAWAAACFgAAAkQAAABEAAABFgAAABYAAAEWAAAAFgAAABYAAAJeAAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAABYAAAEWAAAAFgAAABYAAANeAAAAFgAAAxYAAAEWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAACXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA== - -5,-2: - ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAAAKAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,-3: - ind: -5,-3 - tiles: FgAAAxYAAAAWAAAAFgAAAxYAAANeAAAABAAAAgQAAAIEAAACBAAAAV4AAABeAAAAFgAAAF4AAABeAAAAXgAAABYAAAEWAAAAFgAAARYAAAEWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAJeAAAAXgAAABYAAAEWAAADFgAAABYAAAAWAAADFgAAABYAAAALAAAACwAAAAsAAAALAAAAFgAAARYAAAIWAAACFgAAABYAAAMWAAADFgAAABYAAAMWAAAAFgAAAxYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAAV4AAAAWAAACFgAAAhYAAAAWAAAAFgAAARYAAAIWAAAAXgAAAAoAAAAKAAAACgAAAAoAAABeAAAAFgAAA14AAABeAAAAFgAAARYAAAMWAAADFgAAARYAAANeAAAAXgAAAF4AAAALAAAACgAAAAoAAAAKAAAAXgAAABYAAAAWAAABXgAAABYAAAIWAAABXgAAABYAAANeAAAAXgAAAF4AAABeAAAACwAAAAoAAAAKAAAACgAAAF4AAABeAAAAFgAAABYAAAIWAAABFgAAATEAAAAxAAAAMQAAAF4AAABeAAAAXgAAAAsAAAAKAAAACgAAAAoAAAAKAAAAXgAAABYAAAMWAAABFgAAARYAAAMxAAAAMQAAABYAAANeAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAF4AAABeAAAAXgAAABYAAAMWAAAAMQAAADEAAAAWAAABXgAAAAoAAAAEAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAF4AAAAWAAAAFgAAAF4AAABeAAAAXgAAAF4AAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABeAAAAXgAAAF4AAAAAAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABeAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAKAAAAXgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAAAKAAAACgAAAAoAAAAKAAAACgAAAA== - -4,-3: - ind: -4,-3 - tiles: XgAAABYAAAAWAAAAXgAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAF4AAABeAAAACgAAAAsAAAAKAAAAXgAAABYAAAMWAAAAFgAAARYAAAMWAAABFgAAAl4AAAAWAAADFgAAARYAAAEWAAADXgAAAAoAAAALAAAACgAAAF4AAAAWAAADFgAAARYAAAIWAAAAFgAAABYAAAEWAAABFgAAAxYAAAMWAAADFgAAAF4AAAAKAAAACwAAAAoAAABeAAAAFgAAABYAAAEWAAADFgAAABYAAAIWAAADXgAAAF4AAAAWAAAAFgAAAV4AAABeAAAACgAAAAsAAAAKAAAAXgAAABYAAAAWAAADFgAAAhYAAAIWAAACFgAAARYAAAJeAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACgAAAF4AAAAWAAACFgAAABYAAAIWAAACFgAAABYAAAMWAAABXgAAAAoAAAALAAAACgAAAAoAAAAKAAAACgAAAAoAAABeAAAAFgAAABYAAAEWAAAAFgAAABYAAAEWAAACXgAAAF4AAAAKAAAACwAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXgAAABYAAAMWAAADFgAAARYAAAEWAAAAFgAAAhYAAANeAAAACgAAAAsAAAALAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAAxYAAAMWAAACFgAAARYAAAIWAAABXgAAAAoAAAALAAAACwAAAF4AAABeAAAAXgAAAF0AAABdAAAAFgAAARYAAAEWAAACFgAAAxYAAAAWAAADXgAAAF4AAAAKAAAACwAAAAsAAABeAAAAXgAAAF4AAABdAAAAXQAAABYAAAAWAAACFgAAARYAAABeAAAAXgAAAF4AAAAKAAAACgAAAAsAAAAKAAAACgAAAF4AAABdAAAAAAAAAAAAAABeAAAAFgAAAxYAAAFeAAAAXgAAAAoAAAAKAAAACgAAAAoAAAALAAAACgAAAAoAAABeAAAAXQAAAAAAAAAAAAAACgAAAAsAAAALAAAACgAAAAoAAAAKAAAACgAAAAsAAAALAAAACwAAAAoAAABeAAAAXgAAAF0AAAAAAAAAAAAAAAoAAAALAAAACwAAAAsAAAALAAAACwAAAAsAAAALAAAACgAAAAoAAAAKAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAKAAAACwAAAAsAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAACgAAAAsAAAALAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAA== - -4,-4: - ind: -4,-4 - tiles: TgAAAE4AAABeAAAAFgAAABYAAAAWAAACFgAAABYAAAAWAAADFgAAAl4AAAAEAAABBAAAAgQAAAIEAAABAAAAAE4AAABOAAAAXgAAABYAAAIWAAAAFgAAAxYAAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAAEAAABBAAAAgAAAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAIEAAACBAAAAgQAAAIEAAABHQAAAB0AAAIdAAADHQAAAR0AAAMdAAABHQAAAx0AAAEZAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAAABAAAAEwAAAJMAAADTAAAAUwAAAFMAAADTAAAAEwAAAFIAAACHgAAAxYAAABeAAAAXgAAAF4AAAAEAAABBAAAAAQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATQAAAx4AAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAANwAAAjcAAAA3AAADNwAAAzcAAAI3AAABXgAAAE0AAAMeAAAAXgAAADEAAAAxAAAAMQAAAF4AAAAlAAAAXgAAADcAAAE3AAAANwAAAjcAAAI3AAADNwAAA14AAABNAAAAHgAAATEAAAAxAAAAMQAAADEAAAAlAAAAJQAAAF4AAAA3AAADNwAAATcAAAI3AAADNwAAAjcAAANeAAAATQAAAB4AAANeAAAAMQAAADEAAAAxAAAAXgAAACUAAABeAAAANwAAADcAAAA3AAADNwAAAjcAAAI3AAAAFgAAAk0AAAAeAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADcAAAA3AAABNwAAAjcAAAE3AAACNwAAA14AAABNAAADHgAAAF4AAAAxAAAAMQAAADEAAABeAAAAJQAAAF4AAAA3AAAANwAAAzcAAAE3AAADNwAAAzcAAAFeAAAATQAAAh4AAAMxAAAAMQAAADEAAAAxAAAAJQAAACUAAABeAAAANwAAAjcAAAE3AAADNwAAATcAAAE3AAACXgAAAE0AAAIeAAADXgAAADEAAAAxAAAAMQAAAF4AAAAlAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABNAAACHgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABMAAABTAAAA0wAAABMAAAATAAAAEwAAAFMAAACSAAAAR4AAABeAAAAXgAAAF4AAAALAAAACwAAAAsAAABeAAAAHQAAAx0AAAEdAAADHQAAAB0AAAEdAAACHQAAAB0AAAAZAAABXgAAAF4AAABeAAAACgAAAAsAAAAKAAAAXgAAAA== - -3,-3: - ind: -3,-3 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAIWAAACXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAAOgAAADoAAAA6AAAAOgAAABYAAAEWAAADFgAAA10AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAADoAAAA6AAAAOgAAADoAAAAWAAADFgAAABYAAAJdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAAA6AAAAOgAAADoAAAA6AAAAFgAAAxYAAAIWAAABXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAOgAAADoAAAA6AAAAOgAAABYAAAEWAAACFgAAAA== - -5,-4: - ind: -5,-4 - tiles: XgAAABYAAAEWAAACFgAAAhYAAAEWAAAAFgAAAhYAAAAWAAADXgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAAAWAAAAFgAAAhYAAAIWAAABFgAAAxYAAAMWAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAABFgAAARYAAAAWAAADFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAABYAAAEWAAADFgAAARYAAAAWAAACFgAAAxYAAAMWAAACFgAAAV4AAAAZAAAAHQAAAx0AAAEdAAADHQAAAhYAAABeAAAAFgAAAxYAAAEWAAACFgAAAhYAAAIWAAABXgAAABYAAANeAAAAHgAAAEgAAAJMAAACTAAAAEwAAAIWAAACXgAAABYAAAEWAAABFgAAARYAAAMWAAACFgAAAV4AAAAWAAADFgAAAh4AAANNAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAeAAADTQAAAF4AAAA3AAAANwAAAS8AAAAvAAAALwAAAC8AAAAvAAAAXgAAAFsAAAFbAAACWwAAA1sAAAFeAAAAHgAAAU0AAAFeAAAANwAAADcAAAMvAAAARAAAAUQAAANEAAABRAAAA14AAABbAAACWwAAAVsAAABbAAACXgAAAB4AAABNAAACXgAAADcAAAM3AAAAXgAAAEQAAANEAAADRAAAAEQAAAIWAAACWwAAAlsAAANbAAAAWwAAAxYAAAIeAAAATQAAARYAAAI3AAADNwAAAy4AAABEAAADRAAAAUQAAAJEAAADXgAAAFsAAAFbAAABWwAAA1sAAAFeAAAAHgAAAU0AAAFeAAAANwAAATcAAAMuAAAARAAAAEQAAABEAAABRAAAAl4AAABbAAACWwAAAlsAAAJbAAABXgAAAB4AAAFNAAAAXgAAADcAAAA3AAAALgAAAC4AAAAuAAAALgAAAC4AAABeAAAAWwAAAVsAAABbAAADWwAAAV4AAAAeAAAATQAAAV4AAAA3AAAANwAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAHgAAAU0AAANeAAAAXgAAAF4AAAAWAAACFgAAAV4AAABeAAAABAAAAQQAAAEEAAAABAAAAAQAAAAEAAABXgAAAB4AAABIAAABTAAAA0wAAANMAAADFgAAAhYAAAIWAAACXgAAAF4AAABeAAAABAAAAgQAAAEEAAAABAAAAF4AAAAZAAAAHQAAAR0AAAIdAAADHQAAAA== - -6,-4: - ind: -6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAEEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAAAXgAAABYAAAAWAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAACBAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAAQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAgQAAAAEAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEEAAAABAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAWAAABFgAAAQ== - -6,-3: - ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFgAAARYAAAIWAAAAFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAhYAAAIWAAAAFgAAABYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAAWAAAAFgAAAxYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAABFgAAARYAAAMWAAACFgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAABYAAAMWAAABFgAAARYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAABYAAAEWAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACXgAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAF4AAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,-5: - ind: -5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAAEAAABAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAQQAAAEEAAACBAAAAgAAAABeAAAAXgAAAF4AAAAWAAADFgAAAl4AAABeAAAAXgAAAAQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACXgAAABYAAAIWAAABFgAAAxYAAAEWAAAAFgAAAl4AAAAEAAABBAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAhYAAAMWAAACFgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -4,-5: - ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAl4AAABeAAAAXgAAAF4AAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAV4AAABeAAAAFgAAAhYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAFeAAAAFgAAAxYAAAEWAAABFgAAABYAAAAWAAAAFgAAAl4AAAAEAAABAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAABYAAAMWAAABFgAAARYAAABeAAAABAAAAQQAAAAEAAABAAAAAAAAAABOAAAATgAAAF4AAAAWAAAAFgAAABYAAAEWAAADFgAAARYAAAEWAAADXgAAAAQAAAEEAAABBAAAAQAAAAAAAAAATgAAAE4AAABeAAAAFgAAAhYAAAAWAAADFgAAABYAAAEWAAABFgAAAF4AAAAEAAABBAAAAAQAAAAEAAABAAAAAA== - -6,-5: - ind: -6,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAACBAAAAA== - -3,-4: - ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAFgAAAg8AAAAWAAAADwAAAA8AAAAWAAADDwAAABYAAAJeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAABYAAAAPAAAAFgAAAw8AAAAPAAAAFgAAAg8AAAAWAAADDwAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAAAWAAAADwAAABYAAAMWAAABFgAAAhYAAAMPAAAAFgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAFgAAAxYAAAMWAAAADwAAAA8AAAAWAAAAFgAAAhYAAAIWAAABFgAAAV0AAAAAAAAAAAAAAF0AAAAAAAAAXgAAABYAAAAPAAAAFgAAAxYAAAMWAAADFgAAAw8AAAAWAAACXgAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAF4AAAAWAAAADwAAABYAAAAPAAAADwAAABYAAAMPAAAAFgAAAw8AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABeAAAAFgAAAg8AAAAWAAADDwAAAA8AAAAWAAAADwAAABYAAAFeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAA== - 0,4: - ind: 0,4 - tiles: FgAAAxYAAANeAAAAXgAAAE4AAABOAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAABYAAAMWAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAWAAABFgAAAU4AAABOAAAATgAAAE4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXQAAAAAAAABeAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF4AAAAAAAAAXgAAAE4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABdAAAAAAAAAF4AAABOAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAAAAAABeAAAATgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF0AAAAAAAAAXgAAAE4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAAAAxAAAATgAAAE4AAABOAAAATgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAMQAAAF4AAABOAAAATgAAAE4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAARYAAAAWAAACFgAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAPAAAAOgAAABYAAAJeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,4: - ind: -1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAABFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAABYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAAFgAAARYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABeAAAAAAAAAF0AAAAAAAAAXgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABOAAAAXgAAAAAAAABeAAAAAAAAAF4AAAAWAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAATgAAAF4AAAAAAAAAXQAAAAAAAABeAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAE4AAABeAAAAAAAAAF4AAAAAAAAAXgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABOAAAAXgAAAAAAAABdAAAAAAAAAF4AAAAWAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAE4AAABOAAAATgAAAE4AAAAxAAAAMQAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABOAAAATgAAAE4AAABeAAAAMQAAADEAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAxYAAAAWAAABFgAAAhYAAAIWAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAABYAAAI6AAAADwAAAA8AAAAPAAAADwAAAA== - -1,5: - ind: -1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAABYAAAMPAAAADwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAAAWAAABDwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAFgAAAA8AAABeAAAAXgAAAF4AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAADoAAAAPAAAAFgAAAhYAAAEWAAACFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAAAWAAACDwAAAF4AAABeAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAFgAAAw8AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAABYAAAAPAAAADwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAAAWAAADOgAAAA8AAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAFgAAARYAAAEWAAADFgAAAhYAAAIWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,5: - ind: 0,5 - tiles: XgAAAF4AAAAPAAAADwAAABYAAANeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAA8AAAAWAAABXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAPAAAAFgAAA14AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAMWAAABDwAAADoAAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAABeAAAAXgAAAA8AAAAWAAABXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAPAAAAFgAAAV4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAPAAAADwAAABYAAANeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAADwAAADoAAAAWAAABXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABFgAAARYAAAMWAAABFgAAA14AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAFgAAARYAAAJeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,3: - ind: 2,3 - tiles: AAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-5: - ind: 2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAAEAAABBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAEEAAABBAAAAAQAAAEEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAUAAAAEAAAABAAAAQQAAAIEAAAABAAAAQQAAAIEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAAEAAABBAAAAAQAAAEEAAAABAAAAQQAAAIEAAACBAAAAQQAAAIAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAAEAAABBAAAAQQAAAEEAAABBAAAAQQAAAEEAAABBAAAAgUAAAAEAAACBAAAAgAAAAAAAAAABAAAAQQAAAIEAAAABAAAAQQAAAEEAAAABAAAAAQAAAIEAAACBAAAAQQAAAIEAAABBAAAAQQAAAIEAAAABAAAAgQAAAEEAAAABAAAAQQAAAEEAAACBAAAAgQAAAAEAAAABAAAAgQAAAAEAAAABAAAAgQAAAEEAAAABAAAAQQAAAIEAAABBAAAAQQAAAAEAAAABAAAAgQAAAEEAAABBAAAAAQAAAIEAAAABAAAAAQAAAAEAAAABAAAAQQAAAEEAAACBAAAAAQAAAAEAAABBAAAAQQAAAIEAAAABAAAAAQAAAIEAAAABAAAAQQAAAAEAAACBAAAAQQAAAAEAAAABAAAAgQAAAIEAAACBAAAAAQAAAEEAAAABAAAAgQAAAIEAAAABAAAAQQAAAAEAAAABAAAAQQAAAEEAAABBAAAAAQAAAAEAAAABAAAAQQAAAEFAAAABAAAAgQAAAIEAAACBAAAAgQAAAIEAAACBAAAAAQAAAAEAAAABAAAAQQAAAAEAAABBAAAAAQAAAEEAAAABQAAAAQAAAEEAAACBAAAAQQAAAAEAAACBAAAAAQAAAAEAAAABAAAAQQAAAIEAAACBAAAAAQAAAAEAAAABAAAAAQAAAEEAAAABAAAAQQAAAIEAAAABAAAAgQAAAEEAAACBAAAAAQAAAEEAAABBAAAAg== - 1,-5: - ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQ== - 1,-4: - ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,0: - ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,4: - ind: 1,4 - tiles: AAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 1420: 33,-3 - 2574: -37,-6 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 2573: -37,-8 - 2597: 5,-30 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 812: -8,-44 - 1681: 23,23 - 1682: 21,23 - 2912: -35,40 - 2913: -37,40 - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 1679: 23,25 - 1680: 21,25 - 2224: 31,21 - - node: - angle: 3.141592653589793 rad - color: '#DE3A3A96' - id: Arrows - decals: - 355: -37,37 - 356: -35,37 - 357: -37,40 - 358: -35,40 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 0: -14,15 - 1: 4,12 - 57: -34,19 - 58: -34,4 - 85: -58,25 - 112: -41,46 - 120: -25,53 - 121: -36,46 - 359: -25,29 - 360: -36,46 - 361: -41,46 - 387: 0,29 - 388: 1,29 - 389: 2,29 - 390: 3,29 - 397: 9,41 - 488: -8,-9 - 665: -12,-1 - 672: -26,-11 - 707: 6,-1 - 813: -11,-44 - 814: -12,-44 - 815: -13,-44 - 816: -14,-44 - 895: 19,0 - 906: 12,14 - 962: -30,37 - 1214: 5,43 - 1215: 3,41 - 1216: 7,41 - 1325: -41,59 - 1327: 14,-2 - 1328: 15,-2 - 1376: 23,-6 - 1377: 23,-5 - 1378: 23,-4 - 1379: 25,-6 - 1380: 25,-5 - 1381: 25,-4 - 1382: 27,-6 - 1383: 27,-5 - 1384: 27,-4 - 1385: 29,-6 - 1386: 29,-5 - 1387: 29,-4 - 1439: 21,-20 - 1440: 18,-20 - 1441: 18,-18 - 1442: 18,-17 - 1443: 19,-17 - 1444: 19,-18 - 1445: 20,-18 - 1446: 20,-17 - 1447: 20,-15 - 1448: 20,-14 - 1449: 21,-14 - 1450: 21,-15 - 1451: 22,-15 - 1452: 22,-14 - 1594: 36,7 - 1595: 35,7 - 1602: 22,20 - 1603: 22,21 - 1604: 23,21 - 1605: 23,20 - 1610: 27,9 - 1611: 27,10 - 1711: 12,12 - 1712: 20,23 - 1879: -1,29 - 2089: 5,-26 - 2090: 5,-25 - 2091: 7,-30 - 2215: 33,17 - 2216: 32,17 - 2217: 31,17 - 2545: -40,54 - 2572: -38,-6 - 2637: 3,-41 - 2641: -4,-38 - 2642: -2,-38 - 2658: -22,-45 - 2697: -26,-47 - 2698: -26,-48 - 2800: 1,-7 - 2801: -1,-7 - 2927: -13,38 - 2928: -12,31 - 2939: 12,-30 - 2940: 12,-29 - 2941: 12,-28 - 2942: 11,-23 - 2943: 10,-23 - 2953: 32,21 - 2954: 32,22 - 2955: 32,23 - 2971: 41,12 - 2972: 41,13 - 2973: 41,14 - 2985: 7,35 - 3037: 32,39 - 3038: 24,33 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Bot - decals: - 789: 14,-19 - - node: - color: '#FFFFFFFF' - id: BotGreyscale - decals: - 2829: -22,-1 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 2543: -39,56 - 2544: -41,56 - 2638: 2,-38 - 2639: 0,-38 - 2659: -26,-45 - 2660: -26,-44 - 2661: -26,-43 - 2847: -57,-22 - 2909: -42,42 - 2910: -46,42 - 2911: -49,42 - 2956: 33,20 - 2957: 33,19 - 2974: 40,14 - - node: - color: '#FFFFFFFF' - id: BotRight - decals: - 2640: 3,-40 - 2662: -23,-40 - 2663: -22,-40 - 2906: -45,51 - 2907: -45,52 - 2908: -45,53 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Box - decals: - 2575: -33,-7 - 2576: -35,-7 - 2577: -38,-7 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 2689: -12,-38 - 2690: -14,-38 - 2975: 39,9 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkBox - decals: - 2196: -6,40 - 2197: -14,40 - 2473: -46,-13 - 2474: -46,-15 - 2475: -46,-17 - 2476: -46,-19 - 2477: -46,-21 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 1821: -7,36 - 1988: -57,-50 - 2158: -50,24 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 1820: -13,36 - 2005: -68,-50 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 1816: -7,32 - 1996: -57,-60 - 2173: -50,12 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw - decals: - 1815: -13,32 - 2006: -68,-60 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNe - decals: - 1911: -12,40 - 2022: -66,-50 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - decals: - 1913: -8,40 - 2020: -64,-50 - 2021: -59,-50 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSe - decals: - 1910: -12,42 - 1997: -57,-59 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - decals: - 1912: -8,42 - 1990: -59,-60 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineE - decals: - 1734: -17,37 - 1817: -7,33 - 1818: -7,34 - 1819: -7,35 - 1909: -12,41 - 1939: -17,39 - 1940: -17,40 - 1998: -57,-58 - 2150: -50,16 - 2151: -50,17 - 2152: -50,18 - 2153: -50,19 - 2154: -50,20 - 2155: -50,21 - 2156: -50,22 - 2157: -50,23 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - decals: - 1822: -8,36 - 1823: -9,36 - 1824: -10,36 - 1825: -11,36 - 1826: -12,36 - 1905: -9,40 - 1906: -10,40 - 1907: -11,40 - 2016: -60,-50 - 2017: -61,-50 - 2018: -65,-50 - 2019: -62,-50 - 2159: -52,24 - 2160: -51,24 - 2161: -53,24 - 2162: -54,24 - 2163: -55,24 - 2164: -57,24 - 2165: -56,24 - 2166: -58,24 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 1757: -23,38 - 1804: -7,32 - 1805: -8,32 - 1806: -9,32 - 1807: -10,32 - 1808: -11,32 - 1809: -12,32 - 1810: -13,32 - 1902: -10,42 - 1903: -9,42 - 1904: -11,42 - 1989: -60,-60 - 1991: -64,-60 - 1992: -66,-60 - 2167: -58,12 - 2168: -57,12 - 2169: -56,12 - 2170: -55,12 - 2171: -54,12 - 2172: -51,12 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 1811: -13,32 - 1812: -13,33 - 1813: -13,34 - 1814: -13,35 - 1908: -8,41 - - node: - color: '#9FED5896' - id: BrickTileSteelBox - decals: - 2797: 2,-9 - 2798: 2,-10 - 2799: 2,-11 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNe - decals: - 2849: -62,-24 - 3051: -25,11 - - node: - color: '#D381C996' - id: BrickTileSteelCornerNe - decals: - 2961: 33,9 - - node: - color: '#9FED5896' - id: BrickTileSteelCornerNe - decals: - 2788: 1,-7 - 2852: -31,10 - 2863: -31,13 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNw - decals: - 2850: -63,-24 - 3050: -27,11 - - node: - color: '#9FED5896' - id: BrickTileSteelCornerNw - decals: - 2789: -1,-7 - 2853: -33,10 - 2864: -33,13 - - node: - color: '#D381C996' - id: BrickTileSteelCornerNw - decals: - 2962: 31,9 - - node: - color: '#9FED5896' - id: BrickTileSteelCornerSe - decals: - 2855: -31,6 - 2866: -31,12 - - node: - color: '#D381C996' - id: BrickTileSteelCornerSe - decals: - 2964: 33,7 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSe - decals: - 2851: -62,-25 - 3052: -25,7 - - node: - color: '#9FED5896' - id: BrickTileSteelCornerSw - decals: - 2792: -1,-10 - 2854: -33,6 - 2865: -33,12 - - node: - color: '#D381C996' - id: BrickTileSteelCornerSw - decals: - 2963: 31,7 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSw - decals: - 2848: -63,-25 - 3049: -27,7 - - node: - color: '#9FED5896' - id: BrickTileSteelEndS - decals: - 2796: 1,-12 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNe - decals: - 2014: -69,-52 - 2015: -69,-58 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNw - decals: - 1995: -61,-61 - 2002: -56,-56 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSe - decals: - 2007: -68,-60 - 2012: -69,-53 - 2013: -69,-51 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSw - decals: - 2003: -56,-55 - 2004: -56,-52 - - node: - color: '#9FED5896' - id: BrickTileSteelInnerSw - decals: - 2794: 1,-10 - - node: - color: '#9FED5896' - id: BrickTileSteelLineE - decals: - 2784: 1,-11 - 2785: 1,-10 - 2786: 1,-9 - 2787: 1,-8 - 2857: -31,7 - 2858: -31,8 - 2859: -31,9 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 2008: -69,-57 - 2009: -69,-56 - 2011: -69,-54 - 3057: -25,8 - 3058: -25,9 - 3059: -25,10 - - node: - color: '#9FED5896' - id: BrickTileSteelLineN - decals: - 2867: -32,13 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 1959: 26,32 - 1994: -62,-61 - 3060: -26,11 - - node: - color: '#334E6DC8' - id: BrickTileSteelLineN - decals: - 1735: -18,37 - 1736: -19,37 - 1737: -20,37 - 1738: -21,37 - 1739: -22,37 - 1740: -24,37 - 1741: -25,37 - 1742: -26,37 - 1743: -28,37 - - node: - color: '#9FED5896' - id: BrickTileSteelLineS - decals: - 2793: 0,-10 - 2856: -32,6 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - decals: - 1957: -27,24 - 2044: 8,-18 - 3056: -26,7 - - node: - color: '#D381C996' - id: BrickTileSteelLineW - decals: - 2965: 31,8 - - node: - color: '#9FED5896' - id: BrickTileSteelLineW - decals: - 2790: -1,-8 - 2791: -1,-9 - 2795: 1,-11 - 2860: -33,9 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 1958: 25,26 - 2001: -56,-53 - 3053: -27,8 - 3054: -27,9 - 3055: -27,10 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNe - decals: - 2580: -2,-33 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNe - decals: - 3039: -19,40 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerNe - decals: - 2647: -22,-41 - 2668: -16,-39 - 2700: -6,-28 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerNw - decals: - 2646: -25,-41 - 2667: -20,-39 - 2701: -14,-28 - 2929: 5,-24 - 2934: 9,-23 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNw - decals: - 3040: -21,40 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNw - decals: - 2581: -4,-33 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSe - decals: - 2085: 7,-30 - 2631: 3,-45 - 2649: -22,-45 - 2669: -16,-45 - 2703: -6,-32 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSe - decals: - 2582: -2,-36 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSw - decals: - 2876: -37,0 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSw - decals: - 2583: -4,-36 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSw - decals: - 2084: 5,-30 - 2632: 0,-45 - 2648: -25,-45 - 2672: -20,-45 - 2702: -14,-32 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerNe - decals: - 3071: 12,20 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNe - decals: - 1899: -3,32 - 1923: -12,40 - - node: - color: '#EFB34196' - id: BrickTileWhiteInnerNe - decals: - 2779: -11,-42 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerNw - decals: - 3070: 14,20 - - node: - color: '#EFB34196' - id: BrickTileWhiteInnerNw - decals: - 2778: -5,-42 - 2933: 9,-24 - - node: - color: '#79150096' - id: BrickTileWhiteInnerNw - decals: - 2811: 7,-9 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNw - decals: - 1897: -3,32 - 1925: -8,40 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSe - decals: - 1900: -3,32 - 1924: -12,42 - - node: - color: '#EFB34196' - id: BrickTileWhiteInnerSe - decals: - 2088: 7,-25 - 2777: -11,-40 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSe - decals: - 3069: 12,23 - - node: - color: '#79150096' - id: BrickTileWhiteInnerSw - decals: - 2810: 7,-4 - 2812: 7,-11 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSw - decals: - 3068: 14,23 - - node: - color: '#EFB34196' - id: BrickTileWhiteInnerSw - decals: - 2087: 9,-25 - 2776: -5,-40 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSw - decals: - 1898: -3,32 - 1922: -8,42 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 2586: -2,-35 - 2587: -2,-34 - 3089: -37,-64 - 3090: -37,-63 - 3091: -37,-62 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineE - decals: - 3104: -42,-60 - 3105: -42,-59 - 3106: -42,-58 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineE - decals: - 1833: -4,29 - 1834: -4,30 - 1835: -4,31 - 1836: -4,33 - 1837: -4,35 - 1838: -15,29 - 1839: -15,30 - 1840: -15,31 - 1841: -15,33 - 1842: -15,35 - 1920: -12,41 - 3080: -40,-61 - - node: - color: '#A4610696' - id: BrickTileWhiteLineE - decals: - 3079: -40,-59 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineE - decals: - 2075: 7,-29 - 2076: 7,-28 - 2077: 7,-27 - 2078: 7,-26 - 2590: -4,-35 - 2591: -4,-34 - 2625: 3,-42 - 2626: 3,-41 - 2627: 3,-40 - 2628: 3,-39 - 2629: 3,-43 - 2630: 3,-44 - 2652: -22,-44 - 2675: -16,-44 - 2676: -16,-43 - 2711: -6,-31 - 2712: -6,-30 - 2713: -6,-29 - 3076: -40,-58 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineE - decals: - 3083: -40,-63 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineE - decals: - 3092: -37,-60 - 3093: -37,-59 - 3094: -37,-58 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineE - decals: - 3101: -42,-64 - 3102: -42,-63 - 3103: -42,-62 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 3063: 12,21 - 3064: 12,22 - 3084: -40,-64 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 2588: -3,-33 - 2643: -3,-39 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - decals: - 1750: -26,39 - 1751: -28,39 - 1752: -27,39 - - node: - color: '#D381C996' - id: BrickTileWhiteLineN - decals: - 2959: 17,16 - 2960: 18,16 - 3061: 13,20 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineN - decals: - 2594: -3,-34 - 2656: -24,-41 - 2657: -23,-41 - 2673: -17,-39 - 2674: -18,-39 - 2714: -7,-28 - 2715: -8,-28 - 2716: -9,-28 - 2717: -10,-28 - 2718: -11,-28 - 2719: -12,-28 - 2720: -13,-28 - 2771: -6,-42 - 2772: -7,-42 - 2773: -8,-42 - 2774: -9,-42 - 2775: -10,-42 - 2930: 8,-24 - 2932: 7,-24 - 2935: 10,-23 - 2936: 11,-23 - 2937: 12,-23 - 2938: 13,-23 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 1794: -18,37 - 1795: -19,37 - 1796: -20,37 - 1797: -21,37 - 1798: -22,37 - 1799: -25,37 - 1800: -26,37 - 1801: -28,37 - 1802: -24,37 - 1917: -9,40 - 1918: -10,40 - 1919: -11,40 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 2958: 17,14 - 3062: 13,23 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 1749: -27,39 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineS - decals: - 1914: -9,42 - 1915: -10,42 - 1916: -11,42 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 2874: -34,0 - 2875: -36,0 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineS - decals: - 2589: -3,-36 - - node: - color: '#79150096' - id: BrickTileWhiteLineS - decals: - 2807: 6,-4 - 2808: 5,-4 - 2809: 3,-4 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 2595: -3,-35 - 2635: 2,-45 - 2636: 1,-45 - 2650: -23,-45 - 2651: -24,-45 - 2670: -19,-45 - 2671: -17,-45 - 2704: -7,-32 - 2705: -8,-32 - 2706: -9,-32 - 2707: -10,-32 - 2708: -11,-32 - 2709: -12,-32 - 2710: -13,-32 - 2766: -6,-40 - 2767: -7,-40 - 2768: -8,-40 - 2769: -9,-40 - 2770: -10,-40 - 2931: 8,-25 - - node: - color: '#D381C996' - id: BrickTileWhiteLineW - decals: - 3066: 14,21 - 3067: 14,22 - 3085: -37,-64 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineW - decals: - 2079: 5,-28 - 2080: 5,-27 - 2081: 5,-29 - 2082: 5,-26 - 2083: 5,-25 - 2086: 9,-26 - 2592: -2,-35 - 2593: -2,-34 - 2633: 0,-44 - 2634: 0,-43 - 2653: -25,-44 - 2654: -25,-43 - 2655: -25,-42 - 2664: -20,-44 - 2665: -20,-41 - 2666: -20,-40 - 2721: -14,-31 - 2722: -14,-29 - 3077: -37,-58 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineW - decals: - 1827: -16,29 - 1828: -16,30 - 1829: -16,31 - 1830: -16,32 - 1831: -16,33 - 1832: -16,35 - 1843: -5,29 - 1844: -5,30 - 1845: -5,31 - 1846: -5,33 - 1847: -5,35 - 1921: -8,41 - 3081: -37,-61 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineW - decals: - 3098: -40,-64 - 3099: -40,-63 - 3100: -40,-62 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 3095: -35,-60 - 3096: -35,-59 - 3097: -35,-58 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineW - decals: - 3107: -40,-60 - 3108: -40,-59 - 3109: -40,-58 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineW - decals: - 2027: -37,-15 - 2028: -37,-13 - 2029: -37,-14 - 2030: -37,-12 - 2031: -37,-11 - 2032: -37,-10 - 3082: -37,-63 - - node: - color: '#79150096' - id: BrickTileWhiteLineW - decals: - 2802: 7,-12 - 2803: 7,-8 - 2804: 7,-7 - 2805: 7,-6 - 2806: 7,-5 - - node: - color: '#A4610696' - id: BrickTileWhiteLineW - decals: - 3078: -37,-59 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 2584: -4,-35 - 2585: -4,-34 - 3086: -35,-64 - 3087: -35,-63 - 3088: -35,-62 - - node: - color: '#FFFFFFFF' - id: Busha1 - decals: - 373: -40.05385,30.256437 - - node: - color: '#FFFFFFFF' - id: Busha2 - decals: - 1288: -25.204376,3.9985995 - - node: - color: '#FFFFFFFF' - id: Busha3 - decals: - 1228: -67.012436,-29.136745 - - node: - color: '#FFFFFFFF' - id: Bushb1 - decals: - 370: -39.0226,31.318937 - 1496: -35.010017,-12.392109 - 1554: -39.779045,-10.06321 - - node: - color: '#9FED5896' - id: Bushb1 - decals: - 1262: 5.955755,-11.904804 - - node: - color: '#FFFFFFFF' - id: Bushb2 - decals: - 1553: -38.716545,-15.03196 - - node: - color: '#FFFFFFFF' - id: Bushb3 - decals: - 371: -39.256973,28.912687 - 1223: -71.06114,-43.947823 - 1495: -34,-9 - 1497: -34.994392,-10.845234 - 1552: -38.13842,-10.75071 - 2024: -52.14543,-42.415432 - - node: - color: '#9FED5896' - id: Bushb3 - decals: - 1260: 5.424505,-4.9673038 - - node: - color: '#9FED5896' - id: Bushc1 - decals: - 1259: 6.03388,-7.2173038 - - node: - color: '#FFFFFFFF' - id: Bushc1 - decals: - 1104: -12.158052,22.978218 - 1551: -39.35717,-12.922585 - - node: - color: '#FFFFFFFF' - id: Bushc2 - decals: - 372: -39.1476,33.037685 - 1103: -9.158052,23.040718 - 1494: -32,-9 - - node: - color: '#9FED5896' - id: Bushc2 - decals: - 1258: 6,-8 - 1261: 2.9401298,-4.9985538 - - node: - color: '#FFFFFFFF' - id: Bushc3 - decals: - 374: -39.11635,29.006437 - 1249: -65.91299,-37.046043 - - node: - color: '#FFFFFFFF' - id: Bushd3 - decals: - 1241: -67.06147,-29.881145 - - node: - color: '#FFFFFFFF' - id: Bushd4 - decals: - 1296: -27.485626,3.9673495 - - node: - color: '#FFFFFFFF' - id: Bushe1 - decals: - 1235: -65.58819,-29.014542 - 1295: -28.454376,3.9517245 - - node: - color: '#FFFFFFFF' - id: Bushe2 - decals: - 1226: -71.81257,-43.137188 - 1236: -65.66631,-32.030167 - 1237: -59.71319,-35.530167 - - node: - color: '#FFFFFFFF' - id: Bushe3 - decals: - 1238: -65.26006,-35.280167 - 1239: -59.36944,-31.748917 - 1299: -24.141876,3.9673495 - - node: - color: '#FFFFFFFF' - id: Bushe4 - decals: - 1482: -59.021492,-29.650486 - - node: - color: '#FFFFFFFF' - id: Bushf1 - decals: - 1230: -65.58819,-32.131794 - 1231: -59.291313,-31.866169 - - node: - color: '#FFFFFFFF' - id: Bushf2 - decals: - 1232: -59.74444,-35.631794 - 1233: -65.52569,-29.053669 - 1481: -59.068367,-29.628086 - 1550: -40.091545,-13.047585 - - node: - color: '#FFFFFFFF' - id: Bushf3 - decals: - 1234: -65.27569,-35.350544 - - node: - color: '#FFFFFFFF' - id: Bushg2 - decals: - 775: 1.6603951,-25.388582 - - node: - color: '#FFFFFFFF' - id: Bushg4 - decals: - 779: 0.55303955,-25.07197 - - node: - color: '#FFFFFFFF' - id: Bushh2 - decals: - 1242: -50.04093,-42.20576 - - node: - color: '#FFFFFFFF' - id: Bushh3 - decals: - 1240: -66.616165,-27.440277 - 1243: -53.009384,-36.94919 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 381: -38.850723,30.881437 - 1095: -10.897953,23.01216 - 1096: -7.147953,23.059034 - 1098: -12.769052,22.88716 - - node: - color: '#FFFFFFFF' - id: Bushi2 - decals: - 380: -40.131973,32.52206 - 1263: 5.9999943,-7.451386 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 378: -38.850723,29.881437 - 379: -40.05385,31.053312 - 1298: -28.032501,3.9673495 - - node: - color: '#FFFFFFFF' - id: Bushi4 - decals: - 1097: -9.757328,22.85591 - 1264: 5.4999943,-5.029511 - 1297: -25.548126,3.9829745 - - node: - color: '#FFFFFFFF' - id: Bushj1 - decals: - 1227: -73.48444,-43.855938 - 1244: -68.11463,-38.9754 - 1251: -69.40792,-34.063843 - 1548: -38.04467,-13.172585 - - node: - color: '#FFFFFFFF' - id: Bushj2 - decals: - 1245: -57.046288,-37.982056 - 1250: -58.64736,-27.005693 - 1547: -39.57592,-14.84446 - - node: - color: '#FFFFFFFF' - id: Bushj3 - decals: - 1246: -49.987144,-48.963146 - 1549: -39.41967,-11.28196 - - node: - color: '#FFFFFFFF' - id: Bushk1 - decals: - 367: -39.256973,30.272062 - 369: -39.9601,29.068937 - 774: 0.19164515,-23.341707 - 1502: -34.993874,-16.00803 - - node: - color: '#FFFFFFFF' - id: Bushk3 - decals: - 368: -39.850723,33.05331 - - node: - color: '#FFFFFFFF' - id: Bushl1 - decals: - 1044: -59.13713,-56.211792 - 1265: 3.0098214,-4.939097 - 1890: -9.9612665,40.993107 - - node: - color: '#FFFFFFFF' - id: Bushl2 - decals: - 1045: -59.79338,-57.039917 - 1266: 6.009821,-11.977411 - - node: - color: '#FFFFFFFF' - id: Bushm2 - decals: - 1046: -59.16838,-57.789917 - - node: - color: '#FFFFFFFF' - id: Bushm3 - decals: - 1047: -65.91838,-51.868042 - - node: - color: '#FFFFFFFF' - id: Bushm4 - decals: - 778: 0.45727015,-23.544832 - - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 1105: -10.126802,23.012297 - - node: - color: '#FFFFFFFF' - id: Caution - decals: - 817: -8,-45 - - node: - color: '#EFB34196' - id: CheckerNESW - decals: - 1197: -20,-37 - 1198: -19,-37 - 1199: -18,-37 - 1200: -17,-37 - 1201: -16,-37 - 1202: -16,-36 - 1203: -17,-36 - 1204: -19,-36 - 1205: -19,-36 - 1206: -20,-36 - 1207: -20,-35 - 1208: -19,-35 - 1209: -18,-35 - 1210: -17,-35 - 1211: -16,-35 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 489: -16,-13 - 490: -16,-14 - 491: -16,-15 - 492: -16,-16 - 493: -16,-17 - 494: -15,-17 - 495: -15,-16 - 496: -15,-15 - 497: -15,-14 - 498: -15,-13 - 499: -14,-13 - 500: -14,-14 - 501: -14,-15 - 502: -14,-16 - 503: -14,-17 - 504: -13,-17 - 505: -13,-16 - 506: -13,-15 - 507: -13,-14 - 508: -13,-13 - 509: -12,-13 - 510: -12,-14 - 511: -12,-15 - 512: -12,-16 - 513: -12,-17 - 552: -11,-2 - - node: - color: '#D4D4D496' - id: CheckerNESW - decals: - 2095: -18,5 - 2096: -18,6 - 2097: -17,5 - 2098: -17,6 - 2099: -17,7 - 2100: -18,7 - 2101: -18,8 - 2102: -17,8 - 2103: -18,9 - 2104: -17,9 - 2105: -18,10 - 2106: -17,10 - 2107: -18,11 - 2108: -17,11 - 2109: -16,11 - 2110: -16,10 - 2111: -15,10 - 2112: -15,11 - 2113: -14,11 - 2114: -14,10 - 2115: -13,10 - 2116: -13,11 - 2117: -12,11 - 2118: -12,10 - 2119: -12,9 - 2120: -12,8 - 2121: -12,7 - 2122: -12,6 - 2123: -13,6 - 2124: -14,6 - 2125: -15,6 - 2126: -16,6 - 2127: -16,5 - 2128: -15,5 - 2129: -14,5 - 2130: -14,7 - 2131: -15,7 - 2132: -16,7 - 2133: -16,8 - 2134: -16,9 - 2135: -15,9 - 2136: -15,8 - 2137: -14,8 - 2138: -14,9 - - node: - color: '#52B4E944' - id: CheckerNESW - decals: - 2879: -35,-3 - 2880: -36,-3 - 2881: -36,-2 - 2882: -34,-2 - 2883: -34,-3 - 2884: -35,-2 - - node: - color: '#52B4E996' - id: CheckerNWSE - decals: - 548: -9,-4 - - node: - color: '#79150096' - id: CheckerNWSE - decals: - 20: -8,13 - 21: -8,14 - 22: -9,13 - 23: -9,14 - 24: -10,13 - 25: -10,14 - 26: -11,13 - 27: -11,14 - 28: -12,13 - 29: -12,14 - 30: -13,13 - 31: -13,14 - 32: -14,13 - 33: -14,14 - 34: -13,15 - - node: - color: '#9FED5896' - id: CheckerNWSE - decals: - 1425: -35,-25 - 1426: -34,-25 - 1427: -34,-24 - 1428: -35,-24 - 1429: -35,-23 - 1430: -34,-23 - 1431: -34,-22 - 1432: -32,-22 - 1433: -32,-23 - 1434: -31,-23 - 1435: -32,-24 - 1436: -31,-24 - 1437: -32,-25 - 1438: -31,-25 - - node: - color: '#EFB34196' - id: CheckerNWSE - decals: - 1303: 3,-28 - - node: - color: '#A4610696' - id: CheckerNWSE - decals: - 1268: 30,0 - 1269: 29,0 - 1270: 29,1 - 1271: 29,2 - 1272: 30,2 - 1273: 30,1 - 1274: 31,0 - 1275: 31,1 - 1276: 31,2 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 105: -39,50 - 106: -41,50 - 113: -31,56 - 114: -35,56 - 115: -35,60 - 116: -34,60 - 117: -33,60 - 118: -32,60 - 119: -31,60 - 228: -40,41 - 229: -44,41 - 230: -48,41 - 391: 4,29 - 396: 11,41 - 752: 7,-22 - 753: 6,-22 - 754: 5,-22 - 780: 0,-36 - 781: 1,-36 - 782: 2,-36 - 783: 3,-35 - 784: 3,-34 - 785: 3,-33 - 867: 14,-12 - 868: 14,-11 - 869: 14,-10 - 1329: 16,-2 - 1330: 17,-2 - 1422: 31,-6 - 1423: 31,-5 - 1424: 31,-4 - 1453: 18,-15 - 1454: 18,-14 - 1455: 19,-14 - 1456: 19,-15 - 1591: 38,7 - 1592: 39,7 - 1593: 40,7 - 1612: 28,9 - 1613: 28,10 - 1614: 26,9 - 1615: 26,10 - 2596: 4,-30 - 2691: -15,-42 - 2692: -15,-41 - 2693: -15,-40 - 2694: -1,-42 - 2695: -1,-41 - 2696: -1,-40 - 3152: -49,-6 - 3153: -49,-5 - - node: - color: '#FFFFFFFF' - id: DiagonalCheckerAOverlay - decals: - 1949: -29,22 - 1950: -28,22 - 1951: -27,22 - 1952: -26,22 - 1953: -26,23 - 1954: -27,23 - 1955: -28,23 - 1956: -29,23 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 1078: -27,-36 - 1079: -28,-38 - 1080: -23,-36 - 1081: -25,-38 - - node: - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 235: -40,39 - 236: -39,40 - 237: -44,39 - 238: -49,40 - 251: -34,57 - 252: -31,59 - 836: 1,-38 - 917: 53,19 - 918: 53,20 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 407: -26,29 - 408: -33,32 - 409: -28,32 - 410: -28,31 - 411: -31,30 - 1048: -76,-57 - 1049: -76,-56 - 1050: -77,-55 - 1051: -79,-54 - 1065: -22,-38 - 1066: -23,-38 - 1067: -24,-36 - 1068: -25,-36 - 1069: -25,-36 - 1349: 23,-12 - 1350: 23,-11 - 1351: 24,-12 - 1352: 34,-12 - 1353: 35,-11 - 1354: 32,-12 - 1355: 31,-10 - 2731: -13,-31 - 2732: -11,-32 - 2887: -19,19 - 2888: -14,19 - 2889: -21,18 - 2892: -15,19 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 239: -48,40 - 240: -48,39 - 241: -43,40 - 242: -45,40 - 243: -41,39 - 244: -40,40 - 245: -40,41 - 246: -36,56 - 247: -36,57 - 248: -30,56 - 253: -33,57 - 254: -35,57 - 255: -31,58 - 256: -30,59 - 257: -29,59 - 258: -30,54 - 260: -36,53 - 261: -35,54 - 262: -36,50 - 263: -33,46 - 264: -33,43 - 265: -34,44 - 266: -40,42 - 268: -48,42 - 269: -37,40 - 845: -19,-44 - 846: -17,-42 - 847: -14,-40 - 848: -19,-42 - 849: -23,-43 - 850: -1,-40 - 851: -4,-41 - 852: 1,-40 - 853: 0,-39 - 854: 2,-38 - 855: 2,-39 - 856: 1,-34 - 857: 1,-31 - 913: 43,22 - 914: 45,22 - 915: 52,19 - 916: 51,20 - 919: 50,19 - 925: 45,23 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 417: -32,30 - 418: -27,30 - 419: -26,31 - 420: -28,30 - 421: -29,31 - 422: -29,32 - 423: -27,32 - 424: -32,32 - 425: -32,27 - 426: -26,28 - 427: -33,27 - 897: 20,-11 - 898: 21,-10 - 899: 17,-11 - 900: 17,-12 - 901: 19,-8 - 1058: -78,-53 - 1059: -76,-53 - 1060: -78,-56 - 1061: -79,-56 - 1062: -80,-53 - 1063: -79,-52 - 1064: -76,-55 - 1157: 27,0 - 1158: 28,1 - 1159: 29,1 - 1361: 24,-11 - 1362: 24,-10 - 1363: 23,-10 - 1364: 26,-12 - 1365: 31,-12 - 1366: 32,-11 - 1367: 33,-10 - 1368: 34,-11 - 1369: 33,-12 - 1370: 32,-9 - 1371: 33,-9 - 1372: 24,-9 - 1373: 21,-9 - 1374: 24,-8 - 1375: 23,-8 - 1407: 29,-2 - 1408: 30,-3 - 1409: 31,-4 - 1410: 32,-4 - 1411: 30,0 - 1412: 33,-7 - 1413: 32,-8 - 1414: 24,-8 - 1415: 25,-7 - 1416: 26,-6 - 1417: 23,-3 - 1418: 22,-2 - 1419: 21,-2 - 1880: -1,29 - 2186: -58,15 - 2187: -57,16 - 2188: -58,21 - 2189: -57,20 - 2190: -57,23 - 2192: -51,14 - 2193: -51,15 - 2194: -56,20 - 2198: -4,27 - 2199: -6,27 - 2200: -14,26 - 2201: -19,27 - 2202: -26,28 - 2203: -26,27 - 2204: -27,26 - 2205: -25,25 - 2206: -27,31 - 2207: -39,37 - 2208: -37,36 - 2209: -36,35 - 2210: -41,43 - 2211: -47,52 - 2212: -49,53 - 2213: -47,56 - 2738: -13,-32 - 2739: -11,-31 - 2740: -9,-32 - 2741: -10,-30 - 2742: -10,-31 - 2743: -11,-29 - 2744: -11,-28 - 2745: -13,-29 - 2746: -14,-30 - 2747: -13,-33 - 2748: -13,-34 - 2749: -19,-41 - 2750: -20,-42 - 2751: -20,-44 - 2752: -20,-44 - 2753: -22,-44 - 2754: -22,-43 - 2755: -22,-41 - 2756: -25,-41 - 2757: -26,-41 - 2758: -26,-42 - 2759: -24,-43 - 2760: -24,-45 - 2761: -25,-44 - 2762: -12,-39 - 2763: -12,-40 - 2764: -9,-39 - 2765: -8,-39 - 2890: -18,19 - 2891: -21,19 - 2893: -16,19 - 2894: -22,19 - 2895: -31,16 - 2896: -31,17 - 2897: -7,18 - - node: - color: '#FFFFFFFF' - id: DirtMedium - decals: - 231: -39,39 - 232: -41,40 - 233: -45,39 - 234: -47,40 - 249: -31,57 - 250: -35,58 - 259: -36,54 - 267: -48,41 - 837: 0,-38 - 838: 1,-39 - 839: 0,-40 - 840: -18,-44 - 841: -19,-43 - 842: -23,-44 - 843: -18,-42 - 844: -16,-41 - 911: 46,23 - 912: 43,21 - 920: 52,19 - 921: 43,22 - 922: 46,23 - 923: 46,22 - 924: 44,23 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - decals: - 412: -27,29 - 413: -26,30 - 414: -30,30 - 415: -32,29 - 416: -31,32 - 896: 21,-11 - 1052: -78,-54 - 1053: -79,-55 - 1054: -79,-53 - 1055: -80,-53 - 1056: -76,-54 - 1057: -77,-53 - 1070: -26,-36 - 1071: -27,-37 - 1156: 27,1 - 1356: 32,-10 - 1357: 31,-11 - 1358: 30,-11 - 1359: 25,-12 - 1360: 26,-11 - 1404: 34,-7 - 1405: 30,-2 - 1406: 31,-3 - 1881: 3,29 - 2191: -58,13 - 2733: -10,-32 - 2734: -12,-31 - 2735: -12,-32 - 2736: -14,-31 - 2737: -12,-29 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 76: -55,17 - 77: -53,18 - 78: -54.752693,18.73386 - 773: 1.3791451,-24.388582 - 1037: -59.152756,-56.526844 - - node: - color: '#FFFFFFFF' - id: Flowersbr2 - decals: - 772: -0.011479855,-25.497957 - 1032: -64.66838,-52.26122 - 1033: -65.559006,-53.82372 - 1034: -64.94963,-56.339344 - 1035: -59.777756,-52.66747 - 1294: -24.157501,3.9829745 - 1539: -38.404045,-11.453835 - 1889: -10.5706415,40.97748 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 63: -53,22 - 64: -55,14 - 1036: -60.121506,-53.44872 - 1540: -39.07592,-11.90696 - 1546: -39.48217,-14.43821 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 1038: -62.184006,-55.76122 - 1039: -61.777756,-56.370594 - 1040: -62.152756,-53.308094 - 1544: -39.57592,-10.735085 - 1545: -38.13842,-15.06321 - 1888: -9.3987665,40.961857 - - node: - color: '#FFFFFFFF' - id: Flowerspv2 - decals: - 82: -54.471443,18.20261 - 83: -53.533943,17.17136 - 1041: -58.996506,-57.370594 - 1042: -62.88713,-57.995594 - 1543: -38.654045,-10.360085 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 65: -53,14 - 66: -55,22 - 1043: -59.809006,-54.414917 - 1291: -25.970001,3.9985995 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 1102: -13.0907,22.978218 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 59: -53,14 - 60: -55,14 - 61: -55,22 - 62: -53,22 - 79: -53.471443,17.280735 - 80: -54.76832,17.48386 - 382: -39.80385,29.303312 - 1024: -64.98088,-57.620594 - 1025: -62.090256,-57.776844 - 1026: -61.10588,-57.13622 - 1027: -60.090256,-57.91747 - 1028: -64.152756,-53.683094 - 1029: -62.69963,-52.51122 - 1292: -28.032501,3.9985995 - 1887: -9.9456415,40.993107 - - node: - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 383: -39.4601,29.881437 - 776: 1.7228951,-23.216707 - 1031: -65.652756,-52.401844 - 1099: -7.856325,22.931343 - 1542: -39.04467,-14.46946 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 81: -53.61207,18.499485 - 384: -39.069473,32.17831 - 1030: -63.26213,-53.76122 - 1100: -10.293825,23.009468 - 1101: -11.18445,22.978218 - 1293: -28.938751,3.9985995 - 1491: -35.025642,-10.569359 - 1541: -39.73217,-13.68821 - - node: - color: '#D4D4D428' - id: FullTileOverlayGreyscale - decals: - 2: 5,9 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 3126: -30,-62 - - node: - color: '#79150096' - id: FullTileOverlayGreyscale - decals: - 963: -76,-46 - 964: -77,-46 - 965: -78,-46 - 966: -79,-46 - 967: -80,-46 - 968: -81,-46 - - node: - color: '#EFB34196' - id: FullTileOverlayGreyscale - decals: - 866: -11,-34 - 2644: -26,-42 - 2645: -26,-41 - - node: - color: '#D4D4D406' - id: FullTileOverlayGreyscale - decals: - 2813: -22,-6 - 2814: -23,-6 - 2815: -24,-6 - 2816: -25,-6 - 2817: -26,-6 - 2818: -25,-5 - 2819: -25,-4 - 2820: -25,-3 - 2821: -25,-2 - 2822: -25,-1 - 2823: -23,-5 - 2824: -23,-4 - 2825: -23,-3 - 2826: -23,-2 - 2827: -23,-1 - 2828: -24,-1 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 122: -30,54 - 123: -36,54 - 124: -36,46 - 125: -30,46 - 191: -37,38 - 192: -35,38 - 193: -35,41 - 194: -37,41 - 485: -19,-4 - 486: 13,19 - 487: -38,10 - 835: -1,-34 - 1267: -19,0 - 2578: -3,-37 - 2579: -3,-32 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 514: -17,-15 - 651: -26,-8 - 652: -25,-8 - 653: -24,-8 - 654: -23,-8 - 655: -22,-8 - 728: -13,-21 - - node: - color: '#4A8F37B1' - id: FullTileOverlayGreyscale - decals: - 2236: 5,23 - 2237: 6,23 - 2238: 3,23 - 2239: 2,23 - 2240: 2,20 - 2241: 2,21 - 2242: 3,20 - 2243: 5,20 - 2244: 6,20 - 2245: 6,21 - - node: - color: '#A4610696' - id: FullTileOverlayGreyscale - decals: - 1277: 28,1 - 1278: 30,-1 - 1279: 20,-1 - - node: - color: '#FFFFFFFF' - id: Grassa1 - decals: - 1484: -35,-13 - - node: - color: '#FFFFFFFF' - id: Grassa2 - decals: - 1483: -35,-15 - 1500: -35,-16 - - node: - color: '#FFFFFFFF' - id: Grassa3 - decals: - 1485: -35,-12 - 1537: -37.997795,-14.328835 - - node: - color: '#FFFFFFFF' - id: Grassa4 - decals: - 1486: -35,-11 - - node: - color: '#FFFFFFFF' - id: Grassa5 - decals: - 1487: -35,-10 - 1534: -38.41967,-13.485085 - 1538: -39.88842,-12.266335 - - node: - color: '#FFFFFFFF' - id: Grassb1 - decals: - 376: -39.100723,32.30331 - 1091: -7.3405266,22.973469 - 1094: -11.434277,23.035969 - 1247: -56.986298,-31.010326 - 1248: -59.069237,-37.03042 - 2026: -70.08625,-34.436035 - - node: - color: '#FFFFFFFF' - id: Grassb2 - decals: - 1221: -74.07677,-44.072823 - 1229: -67.18431,-28.324245 - 1286: -29.016876,3.9360995 - 1533: -40.029045,-15.12571 - 2023: -53.955444,-43.088474 - - node: - color: '#FFFFFFFF' - id: Grassb3 - decals: - 1222: -71.98302,-44.010323 - 1287: -24.048126,3.9673495 - 1535: -38.01342,-12.610085 - - node: - color: '#FFFFFFFF' - id: Grassb4 - decals: - 1093: -8.387402,22.973469 - 1224: -70.92052,-43.057198 - 1536: -39.98217,-11.00071 - 2025: -52.942307,-42.899807 - - node: - color: '#FFFFFFFF' - id: Grassb5 - decals: - 375: -39.881973,31.162687 - 377: -40.0851,28.850187 - 1092: -12.856152,23.020344 - 1225: -73.10302,-35.91218 - 1532: -39.904045,-10.110085 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 67: -55,17 - 68: -55,18 - 69: -53,17 - 70: -53,18 - 71: -53,19 - 72: -54,19 - 73: -55,19 - 74: -54,18 - 75: -54,17 - 363: -39.2726,29.881437 - 364: -39.694473,32.58456 - 365: -39.163223,31.818935 - 769: 0.66039515,-25.576082 - 1021: -65.69963,-54.183094 - 1022: -59.934006,-54.276844 - 1023: -60.98088,-57.745594 - 1284: -24.516876,4.0142245 - 1489: -34.931892,-11.397484 - - node: - color: '#FFFFFFFF' - id: Grassd2 - decals: - 84: -53.596443,17.79636 - 362: -39.7726,29.178312 - 768: 1.4416451,-26.060457 - 771: 0.83227015,-24.888582 - 777: 0.051020145,-22.997957 - 1003: -65.01213,-58.04247 - 1004: -62.29338,-52.69872 - 1005: -61.684006,-53.433094 - 1006: -65.027756,-53.464344 - 1007: -62.809006,-53.32372 - 1087: -12.746777,23.114094 - 1088: -6.8249016,22.957844 - 1283: -24.048126,4.0298495 - 1490: -34.978767,-10.272484 - 1523: -38.466545,-10.78196 - 1524: -39.466545,-14.797585 - 1529: -38.122795,-11.672585 - 1531: -39.404045,-12.547585 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 1008: -63.38713,-53.72997 - 1009: -59.98088,-52.35497 - 1010: -65.01213,-57.19872 - 1011: -60.19963,-57.464344 - 1012: -59.41838,-56.79247 - 1089: -9.168652,22.942219 - 1090: -10.309277,23.067219 - 1527: -38.466545,-12.40696 - 1530: -39.591545,-11.53196 - - node: - color: '#FFFFFFFF' - id: Grasse1 - decals: - 766: 1,-23 - 1013: -65.652756,-52.41747 - 1014: -58.98088,-57.97997 - 1015: -64.69963,-56.44872 - 1016: -62.98088,-57.776844 - 1256: 6,-7 - 1257: 3,-5 - 1282: -27.532501,4.0298495 - 1526: -39.45092,-13.12571 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 366: -39.881973,31.74081 - 767: 1.5353951,-23.607332 - 1085: -11.340527,23.020344 - 1086: -7.8092766,22.989094 - 1252: 6,-8 - 1253: 5,-5 - 1281: -28.532501,3.9829745 - 1285: -25.938751,4.0923495 - 1488: -34.978767,-13.038109 - 1492: -34,-9 - 1522: -38.435295,-10.016335 - 1525: -39.685295,-14.141335 - 1884: -9,41 - 1885: -10.480507,40.958054 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 770: 0.019770145,-24.841707 - 1017: -60.277756,-56.558094 - 1018: -63.340256,-52.22997 - 1019: -65.82463,-53.29247 - 1020: -60.23088,-53.433094 - 1082: -7.3717766,23.020344 - 1083: -8.434277,22.973469 - 1084: -11.918652,23.051594 - 1254: 6,-5 - 1255: 6,-12 - 1280: -29.001251,3.9829745 - 1493: -32,-9 - 1521: -39.654045,-10.328835 - 1528: -38.51342,-14.71946 - 1882: -11,41 - 1883: -10,41 - 1886: -9.464882,40.926804 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale - decals: - 825: -5,-39 - 826: -4,-39 - 827: -1,-39 - 828: -2,-39 - 829: -6,-39 - 830: -7,-39 - 831: -8,-39 - 832: -9,-39 - 833: -10,-39 - 834: -11,-39 - 2687: -12,-39 - 2688: -14,-39 - 3111: -31,-58 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - decals: - 1175: -29,-19 - 1176: -34,-20 - 1177: -33,-20 - 1178: -32,-20 - 1179: -31,-20 - 1184: -27,-22 - - node: - color: '#EDD75E93' - id: HalfTileOverlayGreyscale - decals: - 456: -7,-7 - 457: -8,-7 - 458: -9,-7 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 41: -39,11 - 42: -40,11 - 43: -41,11 - 44: -42,11 - 45: -43,11 - 130: -31,54 - 131: -32,54 - 132: -33,54 - 133: -34,54 - 134: -35,54 - 153: -22,48 - 154: -23,48 - 155: -24,48 - 156: -25,48 - 157: -26,48 - 199: -31,44 - 200: -32,44 - 201: -34,44 - 202: -35,44 - 203: -36,44 - 204: -37,44 - 205: -38,44 - 206: -39,44 - 207: -41,44 - 208: -42,44 - 209: -43,44 - 210: -44,44 - 211: -45,44 - 293: -51,53 - 294: -52,53 - 295: -53,53 - 336: -34,37 - 337: -33,37 - 338: -32,37 - 339: -31,37 - 340: -30,37 - 341: -38,37 - 342: -39,37 - 343: -40,37 - 344: -41,37 - 345: -42,37 - 346: -43,37 - 347: -44,37 - 348: -45,37 - 349: -46,37 - 350: -47,37 - 351: -48,37 - 352: -49,37 - 428: 14,23 - 429: 13,23 - 430: 12,23 - 479: -18,-1 - 480: -19,-1 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - decals: - 515: -9,-1 - 516: -10,-1 - 517: -11,-1 - 518: -12,-1 - 519: -13,-1 - 520: -14,-1 - 521: -15,-1 - 522: -6,-2 - 523: -7,-2 - 524: -8,-2 - 582: -16,-5 - 584: -18,-5 - 585: -19,-5 - 586: -20,-5 - 633: -22,-17 - 634: -23,-17 - 635: -24,-17 - 636: -25,-17 - 637: -26,-17 - 647: -22,-13 - 648: -23,-13 - 708: -8,-20 - 709: -9,-20 - 710: -10,-20 - 711: -11,-20 - 712: -12,-20 - 1555: -32,-5 - 1556: -33,-5 - 1557: -34,-5 - 1558: -35,-5 - 1559: -36,-5 - 1560: -37,-5 - 1561: -38,-5 - 1562: -39,-5 - 1563: -40,-5 - - node: - color: '#79150096' - id: HalfTileOverlayGreyscale - decals: - 974: -76,-47 - 975: -77,-47 - 976: -78,-47 - 977: -79,-47 - 978: -80,-47 - 979: -81,-47 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 676: 0,-2 - 677: 1,-2 - 678: 2,-2 - 679: 9,-2 - 680: 8,-2 - 681: 7,-2 - 685: 6,-2 - 877: 21,2 - 878: 20,2 - 879: 19,2 - 880: 18,2 - 881: 17,2 - 882: 16,2 - 883: 15,2 - 1334: 26,-10 - 1335: 27,-10 - 1336: 28,-10 - 1337: 29,-10 - 1338: 30,-10 - - node: - color: '#D381C93B' - id: HalfTileOverlayGreyscale - decals: - 1649: 12,12 - 1650: 13,12 - 1651: 14,12 - 1652: 15,12 - 1653: 16,12 - 1654: 17,12 - 1655: 18,12 - 1656: 19,12 - 1657: 20,12 - 1659: 20,16 - 1674: 18,23 - 1675: 17,23 - 1676: 16,23 - - node: - color: '#33666DC8' - id: HalfTileOverlayGreyscale - decals: - 1692: 33,20 - 1693: 32,20 - 1694: 31,20 - 1695: 30,20 - 1696: 29,20 - 1697: 28,20 - 1698: 27,20 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - decals: - 398: -10,27 - 399: -9,27 - 400: -11,27 - 401: -8,27 - 402: -7,27 - 403: -6,27 - 404: -12,27 - 405: -13,27 - 406: -14,27 - 1118: -1,66 - 1856: -3,27 - 1858: -17,27 - 3124: -31,-63 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 1622: 29,11 - 1623: 28,11 - 1624: 27,11 - 1625: 26,11 - 1626: 25,11 - 1627: 24,11 - 1670: 24,23 - 1671: 25,23 - 1672: 20,23 - 1673: 19,23 - - node: - color: '#D381C93B' - id: HalfTileOverlayGreyscale180 - decals: - 1633: 23,7 - 1634: 22,7 - 1635: 21,7 - 1640: 20,10 - 1641: 19,10 - 1642: 18,10 - 1643: 17,10 - 1644: 16,10 - 1645: 15,10 - 1646: 14,10 - 1647: 13,10 - 1648: 12,10 - 1658: 20,14 - 1703: 12,14 - 1704: 13,14 - 1705: 14,14 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale180 - decals: - 1169: -28,-13 - 1170: -29,-13 - 1171: -30,-13 - 1188: -27,-25 - 1189: -28,-25 - 1190: -29,-25 - - node: - color: '#EDD75E93' - id: HalfTileOverlayGreyscale180 - decals: - 459: -9,-13 - 460: -8,-13 - 461: -6,-11 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 86: -40,17 - 87: -41,17 - 88: -42,17 - 89: -43,17 - 90: -44,17 - 3127: -28,-60 - 3128: -27,-60 - 3129: -26,-60 - - node: - color: '#52B4E957' - id: HalfTileOverlayGreyscale180 - decals: - 2902: -49,42 - - node: - color: '#9FED5844' - id: HalfTileOverlayGreyscale180 - decals: - 2901: -46,42 - - node: - color: '#EFB3415D' - id: HalfTileOverlayGreyscale180 - decals: - 2900: -42,42 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 3125: -31,-64 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 1160: 24,25 - 1161: 20,25 - 1162: 19,25 - 1163: 18,25 - 1164: 17,25 - 1165: 16,25 - 1166: 15,25 - 1167: 14,25 - 1168: 13,25 - 1665: 21,18 - 1666: 22,18 - 1667: 23,18 - 1668: 24,18 - 1669: 25,18 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 673: -1,0 - 674: 0,0 - 675: 1,0 - 870: 21,0 - 871: 20,0 - 872: 19,0 - 873: 18,0 - 874: 17,0 - 875: 16,0 - 876: 15,0 - 884: 19,-12 - 885: 20,-12 - 886: 21,-12 - 887: 16,-12 - 888: 17,-12 - 1339: 23,-12 - 1340: 24,-12 - 1341: 25,-12 - 1342: 26,-12 - 1343: 27,-12 - 1344: 28,-12 - 1345: 29,-12 - 1346: 30,-12 - 1347: 31,-12 - 1388: 26,-8 - 1389: 27,-8 - 1390: 28,-8 - 1391: 29,-8 - 1392: 30,-8 - - node: - color: '#EFB34144' - id: HalfTileOverlayGreyscale180 - decals: - 91: -39,39 - 92: -40,39 - 93: -41,39 - - node: - color: '#33666DC8' - id: HalfTileOverlayGreyscale180 - decals: - 1685: 27,18 - 1686: 28,18 - 1687: 29,18 - 1688: 30,18 - 1689: 31,18 - 1690: 32,18 - 1691: 33,18 - - node: - color: '#9FED582F' - id: HalfTileOverlayGreyscale180 - decals: - 94: -43,39 - 95: -44,39 - 96: -45,39 - - node: - color: '#52B4E935' - id: HalfTileOverlayGreyscale180 - decals: - 97: -47,39 - 98: -48,39 - 99: -49,39 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 46: -39,9 - 47: -40,9 - 48: -41,9 - 49: -42,9 - 50: -43,9 - 126: -31,46 - 127: -32,46 - 128: -34,46 - 129: -35,46 - 158: -22,52 - 159: -23,52 - 160: -24,52 - 161: -25,52 - 162: -26,52 - 217: -33,42 - 218: -34,42 - 219: -36,42 - 220: -38,42 - 221: -39,42 - 222: -41,42 - 223: -45,42 - 224: -47,42 - 225: -44,41 - 226: -48,41 - 227: -40,41 - 296: -51,50 - 297: -52,50 - 306: -50,56 - 307: -51,56 - 308: -52,56 - 309: -53,56 - 310: -46,56 - 311: -45,56 - 433: 13,20 - 434: 12,20 - 435: 14,20 - 477: -18,-3 - 478: -19,-3 - 2899: -43,42 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 542: -11,-5 - 543: -10,-5 - 544: -9,-5 - 545: -8,-5 - 546: -7,-5 - 558: -9,0 - 559: -10,0 - 560: -11,0 - 561: -7,0 - 562: -6,0 - 563: -5,0 - 638: -26,-20 - 639: -25,-20 - 640: -24,-20 - 641: -23,-20 - 642: -22,-20 - 643: -22,-15 - 644: -23,-15 - 645: -24,-15 - 646: -25,-15 - 649: -22,-11 - 650: -23,-11 - 713: -8,-24 - 714: -9,-24 - 715: -10,-24 - 716: -11,-24 - 717: -12,-24 - 1568: -34,-8 - 1569: -35,-8 - 1570: -37,-8 - 1571: -38,-8 - 1572: -39,-8 - - node: - color: '#79150096' - id: HalfTileOverlayGreyscale180 - decals: - 35: -6,15 - 36: -5,15 - 37: -4,15 - 38: -3,15 - 39: -2,15 - 40: -1,15 - 969: -80,-45 - 970: -79,-45 - 971: -78,-45 - 972: -77,-45 - 973: -76,-45 - 980: -81,-45 - 2039: 0,15 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 556: -5,-4 - 557: -5,-3 - 587: -20,-6 - 613: -20,-14 - 614: -20,-15 - 615: -20,-16 - 616: -20,-17 - 617: -20,-20 - 618: -20,-21 - 619: -20,-22 - 620: -20,-23 - 621: -20,-24 - 656: -30,-6 - 657: -30,-8 - 658: -30,-9 - 719: -12,-23 - 720: -12,-22 - 721: -12,-21 - 1195: -32,-2 - 1574: -40,-7 - 1575: -40,-6 - 2549: -30,-10 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 683: 3,-1 - 698: 11,-8 - 699: 11,-7 - 700: 11,-6 - 701: 11,-5 - 702: 11,-4 - 703: 11,-3 - 704: 11,-2 - 1153: 27,0 - 1154: 27,1 - 1155: 27,2 - - node: - color: '#D381C93B' - id: HalfTileOverlayGreyscale270 - decals: - 1637: 21,8 - 1638: 21,9 - 1660: 21,13 - 1661: 21,17 - - node: - color: '#EDD75E93' - id: HalfTileOverlayGreyscale270 - decals: - 441: -10,-8 - 442: -10,-7 - 443: -10,-12 - 444: -10,-13 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 1114: -2,63 - 1115: -2,64 - 1116: -2,65 - 1117: -2,66 - 1849: -5,28 - 1852: -16,28 - 1861: -5,34 - 1862: -16,34 - 1926: -5,36 - 1927: -16,36 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 729: 9,-30 - 730: 9,-29 - 731: 9,-28 - 858: -10,-37 - 859: -10,-36 - 860: -10,-35 - 861: -10,-34 - 3110: -31,-60 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 53: -43,10 - 135: -36,47 - 136: -36,48 - 137: -36,49 - 138: -36,50 - 139: -36,51 - 140: -36,52 - 141: -36,53 - 197: -37,39 - 198: -37,40 - 280: -49,46 - 281: -49,47 - 282: -49,48 - 283: -49,49 - 284: -49,50 - 285: -49,53 - 286: -49,54 - 300: -53,52 - 301: -52,51 - 321: -48,60 - 322: -48,61 - 323: -52,60 - 324: -52,61 - 325: -53,63 - 326: -53,64 - 327: -53,65 - 328: -53,66 - 329: -53,67 - 330: -53,57 - 331: -53,58 - 439: 12,21 - 440: 12,22 - 474: -20,-3 - 475: -20,-2 - 476: -20,-1 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 2218: 30,21 - 2219: 30,22 - 2220: 30,23 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 2221: 32,21 - 2222: 32,22 - 2223: 32,23 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 1119: 0,66 - 1120: 0,65 - 1121: 0,64 - 1122: 0,63 - 1850: -4,28 - 1851: -15,28 - 1860: -4,34 - 1863: -15,34 - 1928: -15,36 - 1929: -4,36 - - node: - color: '#D381C93B' - id: HalfTileOverlayGreyscale90 - decals: - 1683: 23,17 - 1707: 15,15 - 1708: 15,16 - 1709: 15,17 - 1710: 15,18 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 684: 5,-1 - 1333: 21,-4 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 525: -6,-5 - 526: -6,-4 - 527: -6,-3 - 579: -15,-7 - 580: -15,-6 - 581: -15,-5 - 588: -18,-6 - 622: -18,-24 - 623: -18,-23 - 624: -18,-22 - 625: -18,-20 - 626: -18,-19 - 627: -18,-18 - 628: -18,-17 - 629: -18,-16 - 630: -18,-14 - 661: -28,-11 - 662: -28,-8 - 663: -28,-7 - 664: -28,-6 - 725: -8,-23 - 726: -8,-22 - 727: -8,-21 - 1196: -31,-2 - 1566: -32,-6 - - node: - color: '#EDD75E93' - id: HalfTileOverlayGreyscale90 - decals: - 449: -7,-13 - 450: -7,-12 - 451: -5,-11 - 452: -5,-10 - 453: -5,-9 - 454: -6,-8 - 455: -6,-7 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 732: 12,-30 - 733: 12,-29 - 734: 12,-28 - 862: -6,-37 - 863: -6,-36 - 864: -6,-35 - 865: -6,-34 - 3112: -30,-60 - 3113: -30,-59 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 1181: -28,-20 - 1182: -28,-21 - 1186: -26,-23 - 1187: -26,-24 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 54: -39,10 - 142: -30,47 - 143: -30,48 - 144: -30,49 - 145: -30,50 - 146: -30,51 - 147: -30,52 - 148: -30,53 - 163: -27,49 - 164: -27,50 - 165: -27,51 - 195: -35,39 - 196: -35,40 - 214: -31,43 - 215: -31,42 - 271: -47,46 - 272: -47,47 - 273: -47,48 - 274: -47,49 - 275: -47,50 - 276: -47,51 - 277: -47,52 - 278: -47,53 - 279: -47,54 - 287: -50,50 - 288: -50,51 - 289: -50,52 - 290: -50,53 - 312: -46,63 - 313: -46,64 - 314: -46,65 - 315: -46,66 - 316: -46,67 - 317: -46,61 - 318: -46,60 - 319: -50,61 - 320: -50,60 - 332: -45,57 - 333: -45,58 - 438: 14,22 - 471: -17,-3 - 472: -17,-2 - 473: -17,-1 - 3065: 14,21 - - node: - cleanable: True - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 1331: 21,-6 - 1332: 21,-5 - - node: - color: '#FFFFFFFF' - id: HatchSmall - decals: - 1901: -3,32 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 386: -1,28 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 1326: 16,-4 - 1421: 34,-7 - 2598: 3,-30 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 385: 4,28 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkLineE - decals: - 1999: -57,-57 - - node: - color: '#FFFFFFFF' - id: MiniTileDarkLineS - decals: - 1732: -27,38 - 1993: -65,-60 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineE - decals: - 2010: -69,-55 - - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineW - decals: - 2000: -56,-54 - - node: - color: '#52B4E996' - id: MiniTileWhiteCornerNe - decals: - 2149: -32,-10 - - node: - color: '#52B4E996' - id: MiniTileWhiteCornerNw - decals: - 2557: -34,-10 - - node: - color: '#52B4E996' - id: MiniTileWhiteCornerSe - decals: - 2143: -32,-16 - - node: - color: '#52B4E996' - id: MiniTileWhiteCornerSw - decals: - 2144: -34,-16 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineE - decals: - 1960: 25,26 - 2561: -36,-15 - 2562: -36,-13 - 2563: -36,-11 - 2564: -36,-12 - 2565: -36,-10 - - node: - color: '#EFB34196' - id: MiniTileWhiteLineE - decals: - 2780: -11,-41 - - node: - color: '#52B4E996' - id: MiniTileWhiteLineE - decals: - 2145: -32,-15 - 2146: -32,-13 - 2147: -32,-14 - 2148: -32,-12 - 2566: -36,-15 - 2567: -36,-13 - 2568: -36,-12 - 2569: -36,-11 - 2570: -36,-10 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineN - decals: - 1733: -27,38 - - node: - color: '#52B4E996' - id: MiniTileWhiteLineS - decals: - 2142: -33,-16 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineS - decals: - 1961: 26,32 - - node: - color: '#52B4E996' - id: MiniTileWhiteLineW - decals: - 2553: -34,-15 - 2554: -34,-13 - 2555: -34,-12 - 2556: -34,-11 - - node: - color: '#EFB34196' - id: MiniTileWhiteLineW - decals: - 2781: -5,-41 - - node: - color: '#D381C996' - id: MonoOverlay - decals: - 2948: 29,21 - 2949: 28,22 - 2950: 29,23 - 2951: 27,23 - 2952: 27,21 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 16: -23,3 - 17: -24,3 - 18: -28,3 - 19: -29,3 - 1180: -30,-20 - 1289: -25,3 - 1300: -26,3 - 1301: -27,3 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 550: -8,-4 - 583: -15,-5 - 591: -20,-7 - 594: -20,-8 - 631: -20,-18 - 659: -30,-12 - 718: -12,-24 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 682: 3,-2 - 705: 11,-9 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 1848: -5,27 - 1854: -16,27 - 1857: -2,27 - 1935: -16,38 - 1936: -16,41 - 1937: -16,40 - 1938: -16,39 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 793: -4,-2 - 794: -4,-5 - 1304: 2,-28 - 1305: 1,-28 - 1306: 0,-28 - 1307: -1,-28 - - node: - color: '#D381C93B' - id: QuarterTileOverlayGreyscale - decals: - 1636: 21,7 - 1663: 21,12 - 1664: 21,16 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale - decals: - 981: -81,-45 - 982: -80,-45 - 983: -79,-45 - 984: -78,-45 - 985: -77,-45 - 986: -76,-45 - 2421: -52,13 - 2422: -53,13 - 2423: -54,13 - 2424: -55,13 - 2425: -56,13 - 2426: -56,21 - 2427: -55,21 - 2428: -54,21 - 2429: -53,21 - 2430: -52,21 - 2441: -51,13 - 2442: -51,14 - 2447: -51,22 - 2448: -51,21 - - node: - color: '#EDD75E93' - id: QuarterTileOverlayGreyscale - decals: - 446: -10,-9 - 462: -6,-7 - 467: -5,-9 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 940: 8,7 - 941: 8,8 - 942: 8,9 - 943: 8,10 - 944: 8,11 - 945: 8,12 - 946: 8,13 - 947: 8,14 - 948: 8,15 - 949: 8,16 - 950: 8,17 - 951: 8,18 - 952: 8,19 - 953: 8,20 - 954: 8,21 - 955: 8,22 - 956: 8,23 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale - decals: - 2379: -58,10 - 2380: -57,10 - 2381: -56,10 - 2382: -55,10 - 2383: -54,10 - 2384: -53,10 - 2385: -52,10 - 2386: -51,10 - 2387: -50,10 - 2388: -49,10 - 2389: -48,10 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale - decals: - 2316: -12,4 - 2317: -11,4 - 2318: -10,4 - 2319: -9,4 - 2320: -8,4 - 2321: -7,4 - 2322: -6,4 - 2341: -22,3 - 2342: -22,4 - 2343: -22,5 - 2344: -22,6 - 2345: -22,7 - 2367: -44,-3 - 2478: 11,-19 - 2479: 11,-18 - 2480: 11,-17 - 2481: 10,-19 - 2482: 9,-19 - 2483: 8,-19 - 2484: 7,-19 - 2485: 5,-19 - 2486: 6,-19 - 2487: 4,-19 - 2488: 3,-19 - 2489: 2,-19 - 2490: 1,-19 - 2491: 0,-19 - 2492: -1,-19 - 2493: -2,-19 - 2494: -3,-19 - 2495: -4,-19 - 2496: 11,-16 - 2497: 11,-15 - 2498: 11,-14 - 2522: -37,34 - 2523: -37,33 - 2524: -37,32 - 2525: -37,31 - 2526: -37,30 - 2527: -37,29 - 2528: -37,28 - 2529: -37,27 - 2530: -37,26 - 2531: -37,25 - 2532: -37,24 - 2533: -37,23 - 2534: -37,22 - 2535: -37,21 - 2536: -37,20 - 2537: -37,19 - 2538: -37,18 - 2539: -37,17 - 2540: -37,16 - 2541: -37,15 - 2542: -38,15 - 2976: 7,35 - 2977: 7,34 - 2986: 13,27 - 2987: 14,27 - 2988: 15,27 - 2989: 16,27 - 2990: 17,27 - 2991: 18,27 - 2992: 19,27 - 2993: 20,27 - 2994: 21,27 - 2995: 21,28 - 2996: 21,29 - 2997: 21,30 - 2998: 21,31 - 3009: 24,40 - 3010: 23,40 - 3011: 22,40 - 3012: 21,40 - 3013: 20,40 - 3014: 20,39 - 3015: 20,38 - 3016: 20,37 - 3017: 20,36 - 3018: 20,35 - 3019: 20,34 - 3020: 20,33 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 51: -43,9 - 150: -30,52 - 292: -50,53 - 298: -52,50 - 335: -53,56 - 354: -37,37 - 436: 12,20 - 481: -17,-1 - 2923: -49,45 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale180 - decals: - 3141: -50,-6 - 3142: -51,-6 - 3143: -52,-6 - 3144: -53,-6 - 3145: -55,-6 - 3146: -54,-6 - 3147: -56,-6 - 3148: -57,-6 - 3149: -58,-6 - 3150: -59,-6 - 3151: -60,-6 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 747: -2,-23 - 748: -2,-24 - 749: -2,-25 - 750: -2,-26 - 751: -2,-27 - 762: 2,-31 - 763: 3,-31 - 764: 3,-30 - 765: 3,-29 - 993: -81,-44 - 994: -80,-44 - 995: -79,-44 - 996: -78,-44 - 997: -77,-44 - 1308: -1,-21 - 1309: 0,-21 - 1310: 1,-21 - 1311: 3,-21 - 1312: 4,-21 - 1318: 2,-21 - 2727: -12,-36 - 2728: -12,-35 - 2729: -12,-34 - 2730: -12,-33 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 688: 5,0 - 689: 6,1 - 694: 17,-8 - 695: 16,-8 - 696: 15,-8 - 697: 14,-8 - 957: 13,0 - 958: 13,1 - 959: 13,2 - 960: 13,3 - 961: 13,4 - 3048: 5,1 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 1583: 39,7 - 1584: 38,7 - 1585: 37,7 - 1586: 36,7 - 1587: 35,7 - 1588: 40,8 - 1589: 40,9 - 1590: 40,10 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale180 - decals: - 2255: 10,24 - 2256: 10,25 - 2257: 11,25 - 2260: -11,25 - 2261: -12,25 - 2262: -13,25 - 2263: -14,25 - 2264: -15,25 - 2265: -16,25 - 2266: -17,25 - 2267: -18,25 - 2268: -19,25 - 2269: -20,25 - 2270: -21,25 - 2271: -22,25 - 2272: -23,25 - 2273: -24,25 - 2274: -25,25 - 2275: -26,25 - 2276: -27,25 - 2277: -28,25 - 2278: -29,25 - 2279: -30,25 - 2280: -31,25 - 2281: -32,25 - 2282: -33,25 - 2283: -34,25 - 2284: -35,25 - 2285: -35,24 - 2286: -35,23 - 2287: -35,22 - 2288: -35,21 - 2289: -35,20 - 2290: -35,19 - 2291: -35,18 - 2292: -35,17 - 2293: -35,16 - 2294: -35,15 - 2295: -35,14 - 2296: -35,12 - 2297: -35,13 - 2298: -35,11 - 2299: -35,10 - 2300: -35,9 - 2301: -35,7 - 2302: -35,8 - 2303: -35,6 - 2304: -35,5 - 2353: -40,5 - 2354: -41,5 - 2355: -42,5 - 2356: -43,5 - 2357: -44,5 - 2358: -45,5 - 2359: -45,4 - 2360: -45,3 - 2361: -45,2 - 2362: -45,1 - 2363: -45,0 - 2364: -45,-1 - 2365: -45,-2 - 2373: -44,-6 - 2374: -45,-6 - 2465: -47,13 - 2466: -46,13 - 2467: -45,13 - 2468: -44,13 - 2469: -43,13 - 2470: -42,13 - 2471: -40,13 - 2472: -41,13 - 2868: -28,1 - 2869: -29,1 - 2870: -30,1 - 2871: -31,1 - 2872: -32,1 - 2873: -33,1 - 3021: 24,33 - 3022: 25,33 - 3023: 26,33 - 3024: 27,33 - 3025: 27,34 - 3026: 27,35 - 3027: 33,35 - 3028: 32,35 - 3029: 31,35 - 3030: 30,35 - 3031: 29,35 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale180 - decals: - 2431: -56,23 - 2432: -54,23 - 2433: -55,23 - 2434: -52,23 - 2435: -53,23 - 2436: -56,15 - 2437: -55,15 - 2438: -54,15 - 2439: -53,15 - 2440: -52,15 - 2443: -57,14 - 2444: -57,15 - 2445: -57,22 - 2446: -57,23 - - node: - color: '#EDD75E93' - id: QuarterTileOverlayGreyscale180 - decals: - 448: -10,-13 - 463: -7,-11 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 528: -6,-2 - 530: -9,-1 - 540: -12,-7 - 541: -12,-6 - 551: -9,-3 - 553: -11,-2 - 564: -13,1 - 565: -14,1 - 566: -15,1 - 567: -16,1 - 568: -18,1 - 569: -17,1 - 570: -19,1 - 571: -20,1 - 572: -21,1 - 573: -22,1 - 574: -23,1 - 575: -24,1 - 576: -27,1 - 577: -26,1 - 578: -25,1 - 590: -18,-5 - 599: -12,-9 - 600: -12,-10 - 601: -12,-11 - 602: -13,-11 - 603: -14,-11 - 604: -15,-11 - 605: -16,-11 - 606: -17,-11 - 607: -12,-8 - 610: -18,-12 - 611: -18,-13 - 723: -8,-20 - 1565: -32,-5 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 55: -39,11 - 152: -36,48 - 167: -27,52 - 213: -31,44 - 303: -53,52 - 304: -47,56 - 431: 14,23 - 484: -20,-3 - - node: - color: '#52B4E93E' - id: QuarterTileOverlayGreyscale270 - decals: - 3130: -60,-6 - 3131: -59,-6 - 3132: -58,-6 - 3133: -57,-6 - 3134: -56,-6 - 3135: -55,-6 - 3136: -54,-6 - 3137: -53,-6 - 3138: -51,-6 - 3139: -52,-6 - 3140: -50,-6 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - decals: - 987: -81,-47 - 988: -80,-47 - 989: -79,-47 - 990: -78,-47 - 991: -77,-47 - 992: -76,-47 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 735: -4,-19 - 736: -4,-20 - 737: -4,-21 - 738: -4,-23 - 739: -4,-24 - 740: -4,-25 - 741: -4,-26 - 742: -4,-27 - 743: -4,-28 - 744: -4,-29 - 745: -4,-30 - 746: -4,-31 - 758: -3,-31 - 759: -2,-31 - 760: -1,-31 - 761: 0,-31 - 1313: 8,-21 - 1314: 9,-21 - 1315: 11,-21 - 1316: 12,-21 - 1317: 13,-21 - 2310: 5,25 - 2311: 4,25 - 2312: 3,25 - 2723: -14,-36 - 2724: -14,-35 - 2725: -14,-34 - 2726: -14,-33 - 3117: -31,-59 - - node: - color: '#D381C93B' - id: QuarterTileOverlayGreyscale270 - decals: - 1639: 21,10 - 1662: 21,14 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 687: 3,0 - 706: 11,0 - 1348: 32,-12 - 3044: 8,1 - 3045: 9,1 - 3046: 10,1 - 3047: 11,1 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 52: -43,11 - 151: -30,48 - 168: -36,56 - 169: -36,57 - 178: -45,49 - 179: -45,48 - 180: -45,47 - 181: -45,46 - 185: -38,46 - 186: -39,46 - 187: -41,46 - 188: -42,46 - 189: -43,46 - 190: -44,46 - 216: -31,42 - 291: -50,50 - 299: -53,53 - 302: -52,52 - 305: -49,56 - 432: 12,23 - 483: -17,-3 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale270 - decals: - 2401: -56,15 - 2402: -55,15 - 2403: -54,15 - 2404: -52,15 - 2405: -53,15 - 2406: -52,23 - 2407: -53,23 - 2408: -54,23 - 2409: -55,23 - 2410: -56,23 - 2449: -51,23 - 2450: -51,22 - 2451: -51,15 - 2452: -51,14 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 1628: 25,7 - 1629: 26,7 - 1630: 27,7 - 1631: 28,7 - 1632: 29,7 - 1702: 24,7 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale270 - decals: - 2246: -9,25 - 2247: -8,25 - 2248: -7,25 - 2249: -6,25 - 2250: -5,25 - 2251: 1,25 - 2252: 2,25 - 2253: 8,25 - 2254: 8,24 - 2258: 6,25 - 2259: 7,25 - 2313: 8,6 - 2314: 8,5 - 2315: 8,4 - 2346: -37,1 - 2347: -37,2 - 2348: -37,3 - 2349: -37,4 - 2350: -37,5 - 2351: -38,5 - 2352: -39,5 - 2372: -44,-6 - 2499: 11,-12 - 2500: 10,-12 - 2501: 9,-12 - 2502: 8,-12 - 3164: -60,7 - 3165: -58,7 - 3166: -57,7 - 3167: -56,7 - 3168: -55,7 - 3169: -54,7 - 3170: -53,7 - 3171: -51,7 - 3172: -50,7 - 3173: -49,7 - 3174: -48,7 - 3175: -47,7 - 3176: -46,7 - 3177: -46,6 - 3178: -46,5 - 3179: -46,4 - 3180: -46,3 - 3181: -46,2 - 3182: -46,1 - 3183: -46,0 - 3184: -46,-1 - 3185: -46,-2 - 3186: -46,-3 - 3187: -46,-4 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 2305: -4,25 - 2306: -3,25 - 2307: -2,25 - 2308: -1,25 - 2309: 0,25 - - node: - color: '#EDD75E93' - id: QuarterTileOverlayGreyscale270 - decals: - 445: -10,-11 - 464: -5,-11 - 465: -7,-13 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 531: -15,-1 - 532: -15,-2 - 533: -15,-3 - 534: -14,-3 - 535: -13,-3 - 536: -13,-4 - 537: -13,-5 - 538: -13,-6 - 539: -13,-7 - 547: -6,-5 - 555: -10,-2 - 589: -20,-5 - 608: -13,-8 - 609: -20,-12 - 612: -20,-13 - 632: -20,-19 - 722: -12,-20 - 1564: -40,-5 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 56: -39,9 - 149: -36,52 - 166: -27,48 - 170: -38,49 - 171: -39,49 - 172: -40,49 - 173: -41,49 - 174: -42,49 - 175: -43,49 - 176: -44,49 - 177: -45,49 - 182: -38,48 - 183: -38,47 - 184: -38,46 - 212: -46,44 - 270: -47,45 - 334: -45,56 - 353: -35,37 - 437: 14,20 - 482: -20,-1 - - node: - color: '#D381C93B' - id: QuarterTileOverlayGreyscale90 - decals: - 1684: 23,16 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale90 - decals: - 2323: 0,4 - 2324: 1,4 - 2325: 2,4 - 2326: 4,4 - 2327: 3,4 - 2328: 5,4 - 2329: 6,4 - 2330: -14,3 - 2331: -15,3 - 2332: -16,3 - 2333: -17,3 - 2334: -18,3 - 2335: -19,3 - 2336: -20,3 - 2337: -20,4 - 2338: -20,5 - 2339: -20,6 - 2340: -20,7 - 2366: -45,-3 - 2368: -44,-3 - 2369: -44,-4 - 2370: -44,-5 - 2371: -44,-6 - 2375: -45,-7 - 2376: -45,-8 - 2377: -45,-9 - 2378: -45,-10 - 2457: -47,15 - 2458: -46,15 - 2459: -45,15 - 2460: -44,15 - 2461: -43,15 - 2462: -42,15 - 2463: -41,15 - 2464: -40,15 - 2503: 9,-3 - 2504: 9,-4 - 2505: 9,-5 - 2506: 9,-6 - 2507: 9,-7 - 2508: 9,-8 - 2509: 9,-9 - 2510: 9,-10 - 2511: 10,-10 - 2512: -33,27 - 2513: -34,27 - 2514: -35,27 - 2515: -35,28 - 2516: -35,29 - 2517: -35,30 - 2518: -35,31 - 2519: -35,32 - 2520: -35,33 - 2521: -35,34 - 2832: 10,6 - 2833: 10,5 - 2834: 10,4 - 2835: 11,4 - 2836: 12,4 - 2837: 13,4 - 2838: -40,7 - 2839: -41,7 - 2840: -42,7 - 2841: -43,7 - 2842: -44,7 - 2843: -45,7 - 2844: -45,8 - 2845: -46,8 - 2846: -47,8 - 2978: 11,35 - 2979: 11,34 - 2980: 11,33 - 2981: 11,32 - 2982: 11,31 - 2983: 11,30 - 2984: 11,29 - 2999: 24,27 - 3000: 23,27 - 3001: 23,28 - 3002: 23,29 - 3003: 23,30 - 3004: 23,31 - 3005: 27,40 - 3006: 27,38 - 3007: 27,39 - 3008: 26,40 - 3032: 33,38 - 3033: 32,38 - 3034: 31,38 - 3035: 30,38 - 3036: 29,38 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 926: 10,23 - 927: 10,22 - 928: 10,21 - 929: 10,20 - 930: 10,19 - 931: 10,18 - 932: 10,14 - 933: 10,13 - 934: 10,12 - 935: 10,11 - 936: 10,10 - 937: 10,9 - 938: 10,8 - 939: 10,7 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 529: -9,-2 - 549: -9,-4 - 554: -11,-3 - 592: -18,-7 - 593: -18,-8 - 595: -17,-9 - 596: -16,-9 - 597: -15,-9 - 598: -14,-9 - 660: -28,-12 - 724: -8,-24 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 795: -2,-5 - 796: -2,-2 - 998: -81,-48 - 999: -80,-48 - 1000: -79,-48 - 1001: -78,-48 - 1002: -77,-48 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 1183: -28,-22 - - node: - color: '#EDD75E93' - id: QuarterTileOverlayGreyscale90 - decals: - 447: -10,-7 - 466: -6,-9 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale90 - decals: - 2411: -52,21 - 2412: -53,21 - 2413: -54,21 - 2414: -55,21 - 2415: -56,21 - 2416: -56,13 - 2417: -55,13 - 2418: -54,13 - 2419: -53,13 - 2420: -52,13 - 2453: -57,13 - 2454: -57,14 - 2455: -57,21 - 2456: -57,22 - - node: - color: '#52B4E957' - id: QuarterTileOverlayGreyscale90 - decals: - 2390: -58,10 - 2391: -57,10 - 2392: -56,10 - 2393: -55,10 - 2394: -54,10 - 2395: -53,10 - 2396: -52,10 - 2397: -51,10 - 2398: -50,10 - 2399: -49,10 - 2400: -48,10 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 686: 5,-2 - 690: 17,-2 - 691: 16,-2 - 692: 15,-2 - 693: 14,-2 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 1853: -15,27 - 1855: -4,27 - 1859: -18,27 - 1930: -4,37 - 1931: -4,38 - 1932: -4,39 - 1933: -4,40 - 1934: -4,41 - 1941: -19,27 - 1942: -20,27 - 1943: -21,27 - 1944: -22,27 - 1945: -23,27 - 1946: -24,27 - - node: - color: '#FFFFFFFF' - id: Rock01 - decals: - 1290: -26.720001,4.0298495 - 1498: -35.025642,-11.548359 - 1501: -35,-16 - - node: - color: '#FFFFFFFF' - id: Rock05 - decals: - 1499: -35.025642,-14.985859 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Rust - decals: - 1072: -24,-36 - 1073: -22,-38 - 1074: -22,-38 - 1075: -26,-37 - 1076: -28,-37 - 1077: -28,-37 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 395: 10,42 - 810: -10,-45 - 811: -6,-45 - 1220: 5,41 - 1677: 22,25 - 1678: 22,23 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 3114: -32,-58 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1193: -32,-1 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1172: -35,-20 - 1174: -30,-19 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale - decals: - 3122: -32,-63 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 3120: -30,-64 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1582: 40,7 - - node: - color: '#D381C93B' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1706: 15,14 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1194: -31,-3 - 1567: -32,-8 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 3119: -30,-61 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1191: -32,-3 - 1573: -40,-8 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 3116: -32,-59 - 3118: -31,-61 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 3123: -32,-64 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 3121: -30,-63 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1173: -28,-19 - 1185: -26,-22 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1192: -31,-1 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 3115: -30,-58 - - node: - color: '#FFFFFFFF' - id: VentSmall - decals: - 1753: -27,39 - 1873: -1,34 - 1962: 34,30 - 1963: 33,30 - 2195: -14,40 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 3075: -19,-48 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCorner - decals: - 469: -6,-12 - 670: -30,-15 - 1125: 2,64 - - node: - color: '#FFFFFFFF' - id: WarnCorner - decals: - 668: -30,-17 - 1321: -42,58 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnCorner - decals: - 671: -28,-15 - 1324: -40,60 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 1323: -42,60 - - node: - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 669: -28,-17 - 1322: -40,58 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 1128: -4,64 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 2622: 2,-33 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 2621: 0,-33 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 2227: 5,21 - 2608: -4,-59 - 2620: 2,-35 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 2226: 3,21 - 2607: -12,-59 - 2619: 0,-35 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 2602: -10,-36 - 3157: -53,-5 - 3158: -60,-5 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 1473: 21,-19 - 2185: -58,19 - 2601: -6,-36 - 3156: -51,-5 - 3159: -58,-5 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 1475: 20,-19 - 2228: 5,22 - 2783: -10,-34 - 3162: -53,7 - 3163: -60,7 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 1472: 21,-16 - 1474: 19,-19 - 1480: 22,-19 - 2184: -58,17 - 2229: 3,22 - 2782: -6,-34 - 3188: -51,7 - 3189: -58,7 - - node: - color: '#FFFFFFFF' - id: WarnEnd - decals: - 3: -2,21 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnEnd - decals: - 4: -2,22 - - node: - color: '#52B4E996' - id: WarnFullGreyscale - decals: - 2552: -31,-11 - 2560: -35,-14 - 2878: -35,-1 - - node: - color: '#DE3A3A96' - id: WarnFullGreyscale - decals: - 2919: -33,45 - 2922: -40,45 - - node: - color: '#FFFFFFFF' - id: WarnFullGreyscale - decals: - 2682: -21,-43 - 2683: -21,-42 - 2685: -18,-46 - 2686: -19,-38 - - node: - color: '#D381C996' - id: WarnFullGreyscale - decals: - 2966: 30,7 - 2967: 30,8 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 1476: 20,-20 - 1580: 38,9 - 1581: 38,10 - 1600: 20,18 - 1601: 20,19 - 1608: 21,20 - 1609: 21,21 - 2600: -10,-35 - 2606: -4,-58 - 2623: 2,-34 - 2831: -2,-1 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleE - decals: - 2551: -32,-11 - 2559: -36,-14 - - node: - color: '#334E6DC8' - id: WarnLineGreyscaleE - decals: - 3042: -19,39 - - node: - color: '#D381C996' - id: WarnLineGreyscaleE - decals: - 2969: 33,8 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - decals: - 2680: -22,-43 - 2681: -22,-42 - - node: - color: '#D381C996' - id: WarnLineGreyscaleN - decals: - 2970: 32,9 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - decals: - 2679: -19,-39 - 2699: -13,-39 - - node: - color: '#334E6DC8' - id: WarnLineGreyscaleN - decals: - 3043: -20,40 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleN - decals: - 2917: -33,44 - 2918: -40,44 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleS - decals: - 2571: -36,-8 - 2877: -35,0 - - node: - color: '#D381C996' - id: WarnLineGreyscaleS - decals: - 2968: 32,7 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleS - decals: - 2914: -32,42 - 2915: -35,42 - 2916: -37,42 - 2920: -33,46 - 2921: -40,46 - 2924: -47,45 - 2925: -48,45 - 2926: -49,45 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - decals: - 2684: -18,-45 - 2903: -40,42 - 2904: -44,42 - 2905: -48,42 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleW - decals: - 2550: -30,-11 - 2558: -34,-14 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - decals: - 2677: -20,-43 - 2678: -20,-42 - 2861: -33,7 - 2862: -33,8 - - node: - color: '#334E6DC8' - id: WarnLineGreyscaleW - decals: - 3041: -21,39 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 1462: 18,-16 - 1463: 19,-16 - 1464: 20,-16 - 1465: 21,-19 - 1466: 18,-19 - 1576: 38,9 - 1577: 37,9 - 1578: 36,9 - 1579: 35,9 - 1619: 28,11 - 1620: 27,11 - 1621: 26,11 - 2225: 4,21 - 2230: 6,22 - 2231: 2,22 - 2546: -21,43 - 2547: -20,43 - 2548: -19,43 - 2609: -5,-59 - 2610: -6,-59 - 2611: -7,-59 - 2612: -8,-59 - 2613: -9,-59 - 2614: -10,-59 - 2615: -11,-59 - 2624: 1,-35 - 3072: -26,-58 - 3073: -27,-58 - 3074: -28,-58 - 3160: -52,7 - 3161: -59,7 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 1470: 21,-18 - 1471: 21,-17 - 1477: 19,-20 - 1606: 24,20 - 1607: 24,21 - 1699: 27,18 - 1700: 27,19 - 1701: 27,20 - 2174: -58,12 - 2175: -58,13 - 2176: -58,14 - 2177: -58,15 - 2178: -58,16 - 2179: -58,20 - 2180: -58,21 - 2181: -58,22 - 2182: -58,23 - 2183: -58,24 - 2599: -6,-35 - 2616: -12,-58 - 2617: 0,-34 - 2830: -4,-1 - 2944: 14,-26 - 2945: 14,-25 - 2946: 14,-24 - 2947: 14,-23 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 1457: 18,-16 - 1458: 19,-16 - 1459: 20,-16 - 1460: 21,-16 - 1461: 22,-16 - 1467: 18,-19 - 1468: 19,-19 - 1469: 20,-19 - 1478: 20,-21 - 1479: 19,-21 - 1596: 17,19 - 1597: 18,19 - 1598: 19,19 - 1599: 20,19 - 1616: 26,8 - 1617: 27,8 - 1618: 28,8 - 1756: -23,38 - 2232: 6,22 - 2233: 5,22 - 2234: 3,22 - 2235: 2,22 - 2603: -7,-36 - 2604: -8,-36 - 2605: -9,-36 - 2618: 1,-33 - 3154: -52,-5 - 3155: -59,-5 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 10: -4,19 - 11: -4,20 - 12: -4,21 - 13: -4,22 - 14: -4,23 - 15: -2,22 - 667: -28,-16 - 1109: -57,-25 - 1110: -57,-24 - 1111: -57,-23 - 1126: -4,62 - 1127: -4,63 - 1136: -6,87 - 1146: -6,79 - 1393: 35,-8 - 1394: 35,-7 - 1395: 35,-6 - 1396: 35,-5 - 1397: 35,-4 - 1398: 35,-3 - 1399: 35,-2 - - node: - color: '#FFFFFFFF' - id: WarningLine - decals: - 100: -38,53 - 101: -39,53 - 102: -40,53 - 103: -41,53 - 104: -42,53 - 755: 7,-21 - 756: 6,-21 - 757: 5,-21 - 797: -2,-46 - 798: -3,-46 - 799: -4,-46 - 800: -5,-46 - 801: -6,-46 - 802: -7,-46 - 803: -8,-46 - 804: -9,-46 - 805: -10,-46 - 806: -11,-46 - 807: -12,-46 - 808: -13,-46 - 809: -14,-46 - 818: -8,-42 - 819: -7,-42 - 820: -9,-42 - 821: -10,-42 - 822: -6,-42 - 892: 13,-9 - 893: 12,-9 - 894: 11,-9 - 902: 17,16 - 903: 18,16 - 907: 38,12 - 908: 37,12 - 909: 36,12 - 910: 35,12 - 1129: 4,84 - 1130: -6,84 - 1133: 3,88 - 1134: -5,88 - 1212: 6,41 - 1213: 4,41 - 1217: 7,41 - 1218: 3,41 - 1219: 5,41 - 1400: 35,-12 - 1401: 34,-12 - 1402: 33,-12 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 5: 0,19 - 6: 0,20 - 7: 0,21 - 8: 0,22 - 9: 0,23 - 468: -6,-13 - 666: -30,-16 - 1106: -47,-25 - 1107: -47,-24 - 1108: -47,-23 - 1123: 2,62 - 1124: 2,63 - 1135: 4,87 - 1145: 4,79 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 786: 2,-38 - 787: 1,-38 - 788: 0,-38 - 904: 17,14 - 905: 18,14 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 107: -38,51 - 108: -39,51 - 109: -40,51 - 110: -41,51 - 111: -42,51 - 392: 11,42 - 393: 10,42 - 394: 9,42 - 470: -5,-12 - 790: -24,-47 - 791: -25,-47 - 792: -26,-47 - 889: 13,-9 - 890: 12,-9 - 891: 11,-9 - 1131: -6,82 - 1132: 4,82 - 1143: 3,78 - 1144: -5,78 - 1302: 2,-38 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLineCorner - decals: - 1142: -6,86 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLineCorner - decals: - 1113: -47,-22 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLineCorner - decals: - 1148: 4,78 - 1150: -4,78 - - node: - color: '#FFFFFFFF' - id: WarningLineCorner - decals: - 824: -11,-42 - 1138: 2,88 - 1140: -6,88 - 1152: -6,80 - 1320: 4,-21 - 1403: 32,-12 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLineCornerFlipped - decals: - 1147: -6,78 - 1149: 2,78 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLineCornerFlipped - decals: - 1139: 4,86 - - node: - color: '#FFFFFFFF' - id: WarningLineCornerFlipped - decals: - 823: -5,-42 - 1137: 4,88 - 1141: -4,88 - 1151: 4,80 - 1319: 8,-21 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLineCornerFlipped - decals: - 1112: -57,-22 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinBox - decals: - 2139: -11,34 - 2140: -10,34 - 2141: -9,34 - - node: - color: '#334E6DC8' - id: WoodTrimThinEndE - decals: - 1891: -9,41 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinEndN - decals: - 1769: -22,31 - - node: - color: '#334E6DC8' - id: WoodTrimThinEndW - decals: - 1892: -11,41 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 1793: -13,32 - 1973: 42,40 - 2898: -27,52 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 1792: -7,32 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 1763: -24,37 - 1791: -13,36 - 2061: -21,36 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - decals: - 1762: -24,37 - 1790: -7,36 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 1774: -20,30 - 1787: -13,33 - 1788: -13,34 - 1789: -13,35 - 1864: -2,32 - 1865: -2,33 - 1866: -2,31 - 1878: -19,32 - 1964: 35,37 - 1965: 35,38 - 1966: 35,39 - 1967: 35,40 - 1968: 35,41 - 1969: 43,37 - 1970: 43,38 - 1971: 43,39 - 1972: 43,40 - 1974: -75,-55 - 1976: -71,-55 - 1977: -71,-54 - 1978: -71,-53 - 1979: -71,-52 - 1980: -71,-56 - 1981: -71,-57 - 2059: -21,34 - 2060: -21,35 - 2066: 25,14 - 2067: 25,15 - 2072: -31,-3 - 2073: -31,-2 - 2074: -31,-1 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 1715: -49,32 - 1716: -50,32 - 1717: -51,32 - 1718: -52,32 - 1719: -53,32 - 1726: -54,32 - 1727: -22,52 - 1728: -23,52 - 1729: -24,52 - 1730: -25,52 - 1731: -26,52 - 1755: -21,33 - 1767: -20,30 - 1768: -21,30 - 1782: -8,32 - 1783: -9,32 - 1784: -10,32 - 1785: -11,32 - 1786: -12,32 - 1868: -1,34 - 1874: -22,32 - 1875: -20,32 - 1948: -32,20 - 2045: 8,-18 - 2063: 26,13 - 2064: 27,13 - 2065: 28,13 - - node: - color: '#334E6DC8' - id: WoodTrimThinLineN - decals: - 1893: -10,41 - - node: - color: '#334E6DC8' - id: WoodTrimThinLineS - decals: - 1894: -10,41 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 1713: -43,32 - 1714: -44,32 - 1720: -52,29 - 1721: -53,29 - 1722: -51,29 - 1723: -50,29 - 1724: -49,29 - 1725: -54,29 - 1744: -18,37 - 1745: -19,37 - 1746: -20,37 - 1747: -21,37 - 1748: -22,37 - 1754: -21,33 - 1758: -25,37 - 1759: -26,37 - 1760: -27,37 - 1761: -28,37 - 1764: -19,36 - 1765: -20,36 - 1766: -18,36 - 1771: -22,30 - 1772: -21,30 - 1773: -20,30 - 1775: -12,36 - 1776: -10,36 - 1777: -9,36 - 1778: -8,36 - 1803: -11,36 - 1867: -1,34 - 1869: 3,34 - 1870: 4,34 - 1871: 5,34 - 1872: 2,34 - 1876: -19,32 - 1947: -32,24 - 2033: -6,15 - 2034: -5,15 - 2035: -4,15 - 2036: -3,15 - 2037: -2,15 - 2038: -1,15 - 2040: 0,15 - 2046: 9,-17 - 2047: 8,-17 - 2048: 7,-17 - 2049: 5,-12 - 2050: 4,-12 - 2051: 3,-12 - 2062: 28,16 - 2070: 27,16 - 2071: 26,16 - 2885: -42,32 - 2886: -45,32 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 2214: -23,37 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 1770: -22,30 - 1779: -7,33 - 1780: -7,34 - 1781: -7,35 - 1877: -19,32 - 1975: -70,-55 - 1982: -74,-57 - 1983: -74,-56 - 1984: -74,-55 - 1985: -74,-54 - 1986: -74,-53 - 1987: -74,-52 - 2041: 6,-11 - 2042: 6,-10 - 2043: 6,-9 - 2052: 3,-12 - 2053: 3,-11 - 2054: 3,-10 - 2055: 3,-9 - 2056: 3,-8 - 2057: 3,-7 - 2058: 3,-6 - 2068: 29,14 - 2069: 29,15 - 2092: 27,0 - 2093: 27,1 - 2094: 27,2 - - node: - color: '#FFFFFFFF' - id: bushsnowa1 - decals: - 1896: -11,41 - - node: - color: '#FFFFFFFF' - id: bushsnowb3 - decals: - 1895: -9,41 - - node: - color: '#ABCC370F' - id: largebrush - decals: - 1503: -39,-14 - 1504: -39,-15 - 1505: -38,-15 - 1506: -38,-14 - 1507: -40,-15 - 1508: -40,-14 - 1509: -40,-13 - 1510: -39,-13 - 1511: -38,-13 - 1512: -38,-12 - 1513: -39,-12 - 1514: -40,-12 - 1515: -40,-11 - 1516: -39,-11 - 1517: -38,-11 - 1518: -38,-10 - 1519: -39,-10 - 1520: -40,-10 - type: DecalGrid - - version: 2 - data: - tiles: - -2,-1: - 0: 65535 - -1,-3: - 0: 65535 - -1,-1: - 0: 65535 - -1,-2: - 0: 65535 - -2,1: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65503 - 1: 32 - 0,-1: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 0,0: - 0: 65535 - 1,3: - 0: 65535 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 0,4: - 0: 65535 - -1,4: - 0: 65535 - -2,0: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -4,2: - 0: 65535 - -4,3: - 0: 61167 - 2: 272 - 3: 4096 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 65535 - -2,2: - 0: 65535 - -2,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 - -2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-1: - 0: 65535 - -8,0: - 0: 65535 - -8,1: - 0: 65535 - -8,2: - 0: 65503 - 1: 32 - -8,3: - 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: 30719 - 3: 34816 - -5,0: - 0: 65535 - -5,1: - 0: 65343 - 1: 64 - 4: 128 - -5,2: - 0: 65535 - -5,3: - 0: 63 - 3: 65472 - 0,5: - 0: 65535 - 0,6: - 0: 65535 - 1,4: - 0: 63999 - 1: 1536 - 1,5: - 0: 65533 - 1: 2 - 1,6: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 2,6: - 0: 65535 - -4,4: - 3: 17 - 0: 65518 - -4,5: - 0: 65535 - -4,6: - 0: 65535 - -3,4: - 0: 16383 - 1: 49152 - -3,5: - 0: 65535 - -3,6: - 0: 65535 - -2,4: - 0: 65535 - -2,5: - 0: 65535 - -2,6: - 0: 65535 - -1,5: - 0: 65535 - -1,6: - 0: 65535 - -8,4: - 0: 65407 - 1: 128 - -8,5: - 0: 65535 - -8,6: - 0: 65535 - -8,7: - 0: 65535 - -7,4: - 0: 48927 - 1: 16608 - -7,5: - 0: 65535 - -7,6: - 0: 65535 - -7,7: - 0: 65535 - -6,4: - 0: 65527 - 3: 8 - -6,5: - 0: 65535 - -6,6: - 0: 65535 - -6,7: - 0: 65535 - -5,4: - 3: 207 - 0: 65328 - -5,5: - 0: 65535 - -5,6: - 0: 65535 - -12,1: - 0: 65519 - -12,2: - 0: 65535 - -12,3: - 0: 65535 - -12,0: - 0: 65534 - -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: 57343 - 1: 8192 - -10,3: - 0: 65535 - -9,0: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 65535 - -9,3: - 0: 65399 - 1: 136 - -12,4: - 0: 65535 - -12,5: - 0: 65535 - -12,6: - 0: 65535 - -12,7: - 0: 32767 - 1: 32768 - -11,4: - 0: 61439 - 1: 4096 - -11,5: - 0: 65535 - -11,6: - 0: 65535 - -11,7: - 0: 65535 - -10,4: - 0: 48063 - 1: 17472 - -10,5: - 0: 65535 - -10,6: - 0: 65535 - -10,7: - 0: 65535 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -9,6: - 0: 65535 - -9,7: - 0: 65535 - -16,3: - 0: 61166 - -15,3: - 0: 65535 - -15,2: - 0: 61166 - 5: 17 - -15,1: - 0: 35055 - 5: 30464 - -14,1: - 0: 65535 - -14,2: - 0: 65535 - -14,3: - 0: 65535 - -13,1: - 0: 65535 - -13,2: - 0: 65535 - -13,3: - 0: 65535 - -12,-4: - 0: 65535 - -12,-3: - 0: 65535 - -12,-2: - 0: 65535 - -12,-1: - 0: 65535 - -11,-4: - 0: 65535 - -11,-3: - 0: 65535 - -11,-2: - 0: 65535 - -11,-1: - 0: 65535 - -10,-1: - 0: 65535 - -9,-1: - 0: 65535 - -15,-2: - 0: 60928 - 5: 4592 - -15,-1: - 0: 35054 - 5: 1 - -14,-2: - 0: 65280 - 5: 240 - -14,-1: - 0: 65535 - -13,-2: - 0: 65416 - 5: 112 - -13,-1: - 0: 65535 - -13,-3: - 0: 34952 - -8,-1: - 0: 65519 - 1: 16 - -7,-1: - 0: 63351 - 1: 2184 - -8,8: - 0: 65535 - -8,9: - 0: 65535 - -8,10: - 0: 65535 - -8,11: - 0: 65535 - -7,8: - 0: 65535 - -7,9: - 0: 65535 - -7,10: - 0: 65535 - -7,11: - 0: 65527 - 1: 8 - -6,8: - 0: 65535 - -6,9: - 0: 65535 - -6,10: - 0: 65535 - -6,11: - 0: 65535 - -12,8: - 0: 65535 - -12,9: - 0: 57343 - 1: 8192 - -12,10: - 0: 64511 - 1: 1024 - -12,11: - 0: 65535 - -11,8: - 0: 65535 - -11,9: - 0: 57343 - 1: 8192 - -11,10: - 0: 64511 - 1: 1024 - -11,11: - 0: 65535 - -10,8: - 0: 65535 - -10,9: - 0: 57343 - 1: 8192 - -10,10: - 0: 65535 - -10,11: - 0: 64511 - 1: 1024 - -9,8: - 0: 65535 - -9,9: - 0: 65535 - -9,10: - 0: 65535 - -9,11: - 0: 65535 - -16,4: - 0: 50382 - -16,5: - 0: 61166 - -16,6: - 0: 34958 - -16,7: - 0: 65262 - -15,4: - 0: 65535 - -15,5: - 0: 65535 - -15,6: - 0: 61167 - -15,7: - 0: 65535 - -14,4: - 0: 65535 - -14,5: - 0: 65535 - -14,6: - 0: 65535 - -14,7: - 0: 65279 - 1: 256 - -13,4: - 0: 30591 - 1: 34944 - -13,5: - 0: 65535 - -13,6: - 0: 65535 - -13,7: - 0: 65535 - -16,8: - 0: 65519 - -16,9: - 0: 65518 - -16,10: - 0: 65278 - 1: 256 - -16,11: - 0: 53247 - -15,8: - 1: 1 - 0: 65534 - -15,9: - 0: 65315 - 1: 16 - -15,10: - 0: 65343 - 1: 192 - -15,11: - 0: 65535 - -14,8: - 0: 65535 - -14,10: - 0: 65495 - 1: 40 - -14,11: - 0: 65535 - -13,8: - 0: 65527 - 1: 8 - -13,9: - 0: 65535 - -13,10: - 0: 63487 - 1: 2048 - -13,11: - 0: 65535 - -14,12: - 0: 65534 - -14,13: - 0: 61183 - -14,14: - 0: 61182 - -14,15: - 0: 52462 - -13,12: - 0: 61439 - 1: 4096 - -13,13: - 0: 65471 - 1: 64 - -13,14: - 0: 65535 - -13,15: - 0: 65531 - 1: 4 - -12,12: - 0: 32639 - 1: 32896 - -12,13: - 0: 65399 - 1: 136 - -12,14: - 0: 65527 - 1: 8 - -12,15: - 0: 65531 - 1: 4 - -11,12: - 0: 65535 - -11,13: - 0: 65535 - -11,14: - 0: 65527 - 1: 8 - -11,15: - 0: 16383 - -10,12: - 0: 65535 - -10,13: - 0: 65535 - -10,14: - 0: 65533 - 1: 2 - -10,15: - 0: 49151 - -9,12: - 0: 65535 - -9,13: - 0: 65535 - -9,14: - 0: 65533 - 1: 2 - -9,15: - 0: 61937 - 1: 14 - -8,12: - 0: 65535 - -8,13: - 0: 65535 - -8,14: - 0: 65533 - 1: 2 - -8,15: - 1: 3 - 0: 61948 - -7,12: - 0: 65535 - -7,13: - 0: 65535 - -7,14: - 0: 30583 - -7,15: - 0: 12855 - -6,12: - 0: 65535 - -6,13: - 0: 65471 - 1: 64 - -5,12: - 0: 4369 - -5,13: - 0: 3857 - -12,16: - 0: 65535 - -12,17: - 0: 24575 - -12,18: - 0: 15 - -11,16: - 0: 13299 - -11,17: - 0: 26595 - -11,18: - 0: 1 - -14,17: - 0: 11964 - -14,16: - 0: 52476 - -14,18: - 0: 12 - -13,16: - 0: 65535 - -13,17: - 0: 24575 - -13,18: - 0: 15 - 0,7: - 0: 65535 - 1,7: - 0: 65535 - 2,7: - 0: 65535 - 3,7: - 0: 56831 - -4,7: - 0: 65535 - -3,7: - 0: 65535 - -2,7: - 0: 65535 - -1,7: - 0: 65535 - -5,7: - 0: 65535 - -5,8: - 0: 65531 - 1: 4 - -5,9: - 0: 65535 - -5,10: - 0: 65535 - -5,11: - 0: 32767 - -4,8: - 0: 65535 - -4,9: - 0: 65535 - -4,10: - 0: 65535 - -4,11: - 0: 61439 - -3,8: - 0: 65535 - -3,9: - 0: 65535 - -3,10: - 0: 65535 - -3,11: - 0: 65535 - -2,8: - 0: 65535 - -2,9: - 0: 65535 - -2,10: - 0: 65535 - -2,11: - 0: 65535 - -1,8: - 0: 65471 - 1: 64 - -1,9: - 0: 65535 - -1,10: - 0: 40955 - 1: 4 - -1,11: - 0: 35065 - 0,8: - 0: 65535 - 0,9: - 0: 40723 - 0,10: - 0: 52605 - 1: 128 - 0,11: - 0: 35068 - 1,8: - 0: 65535 - 1,9: - 0: 65422 - 1,10: - 0: 65535 - 1,11: - 0: 65535 - 2,8: - 0: 65535 - 2,9: - 0: 65535 - 2,10: - 0: 65535 - 2,11: - 0: 65535 - 3,8: - 0: 64989 - 3,9: - 0: 65501 - 3,10: - 0: 65535 - 3,11: - 0: 64989 - -4,12: - 0: 3598 - -3,12: - 0: 3871 - -2,12: - 0: 36767 - 3,6: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 45055 - 1: 20480 - 5,6: - 0: 65535 - 5,7: - 0: 65535 - 6,6: - 0: 65535 - 6,7: - 0: 65535 - 7,6: - 0: 65535 - 7,7: - 0: 65535 - 4,8: - 0: 65535 - 4,9: - 0: 65535 - 4,10: - 0: 65535 - 5,8: - 0: 65535 - 5,9: - 0: 65535 - 5,10: - 0: 63487 - 1: 2048 - 6,8: - 0: 65535 - 6,9: - 0: 65535 - 6,10: - 0: 63487 - 1: 2048 - 7,8: - 0: 61951 - 1: 3584 - 7,9: - 0: 57343 - 1: 8192 - 8,8: - 0: 65279 - 1: 256 - 8,6: - 0: 65535 - 8,7: - 0: 65535 - 3,2: - 1: 1 - 0: 65534 - 3,3: - 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: 65531 - 1: 4 - -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-4: - 0: 65535 - -2,-3: - 0: 65535 - -1,-4: - 1: 1 - 0: 65534 - 0,-4: - 0: 65535 - 1,-4: - 0: 65023 - 1: 512 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 1: 1 - 0: 65534 - -10,-4: - 0: 65535 - -10,-3: - 0: 65535 - -10,-2: - 0: 65535 - -9,-4: - 0: 65535 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -8,-4: - 0: 65471 - 1: 64 - -8,-3: - 0: 65535 - -8,-2: - 0: 65535 - -7,-4: - 1: 17 - 0: 65518 - -7,-3: - 0: 65535 - -7,-2: - 0: 32767 - 1: 32768 - -6,-4: - 0: 65535 - -6,-3: - 0: 65535 - -6,-2: - 0: 57343 - 6: 8192 - -6,-1: - 0: 64989 - 6: 546 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 61167 - 1: 4368 - 4,4: - 0: 65529 - 1: 6 - 4,5: - 0: 65535 - 5,4: - 0: 65535 - 5,5: - 0: 65535 - 6,4: - 0: 65531 - 1: 4 - 6,5: - 0: 65535 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 4,11: - 0: 65535 - 5,11: - 0: 13183 - 7,10: - 0: 65535 - 7,11: - 0: 61183 - 8,9: - 0: 65535 - 8,10: - 0: 65375 - 1: 160 - 8,11: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,0: - 0: 65407 - 1: 128 - 5,1: - 0: 57343 - 1: 8192 - 5,2: - 0: 65501 - 1: 34 - 5,3: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 65523 - 1: 12 - 6,2: - 0: 65535 - 6,3: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - 4,-4: - 0: 65279 - 4,-3: - 0: 30717 - 1: 34818 - 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: 63487 - 1: 2048 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 63283 - 7,-3: - 0: 64767 - 1: 768 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - -4,-8: - 0: 61439 - 1: 4096 - -4,-7: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 61423 - 1: 4112 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -3,-6: - 0: 65535 - -3,-5: - 0: 65519 - 1: 16 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 1: 1 - 0: 65534 - -1,-8: - 0: 65535 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 - -8,-8: - 0: 65535 - -8,-7: - 0: 65503 - -8,-6: - 0: 65535 - -8,-5: - 0: 65535 - -7,-8: - 0: 65519 - 1: 16 - -7,-7: - 0: 65535 - -7,-6: - 0: 65535 - -7,-5: - 0: 45047 - 1: 20488 - -6,-8: - 0: 65535 - -6,-7: - 0: 53247 - 1: 12288 - -6,-6: - 0: 63631 - 3: 1904 - -6,-5: - 1: 1 - 0: 65534 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 - -11,-6: - 0: 65535 - -11,-5: - 0: 65535 - -11,-7: - 0: 65487 - 1: 48 - -10,-8: - 0: 65533 - 1: 2 - -10,-7: - 0: 65535 - -10,-6: - 0: 65471 - 1: 64 - -10,-5: - 0: 65535 - -9,-8: - 0: 65535 - -9,-7: - 0: 65439 - -9,-6: - 0: 65535 - -9,-5: - 0: 65535 - 0,-8: - 0: 65535 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-8: - 0: 65535 - 2,-7: - 0: 65535 - 2,-6: - 0: 65343 - 1: 192 - 2,-5: - 0: 65535 - 3,-8: - 0: 61183 - 1: 4352 - 3,-7: - 1: 1 - 0: 65534 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - 4,-8: - 0: 65535 - 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 61438 - 5,-8: - 0: 65535 - 5,-7: - 0: 65535 - 5,-6: - 0: 65535 - 5,-5: - 0: 65535 - 6,-8: - 0: 7967 - 7: 224 - 5: 57344 - 6,-7: - 0: 7967 - 5: 224 - 8: 57344 - 6,-6: - 0: 65311 - 9: 224 - 6,-5: - 0: 65535 - 7,-8: - 0: 13107 - 7,-7: - 0: 13107 - 7,-6: - 0: 13299 - 7,-5: - 0: 16371 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 - 0,-12: - 0: 32752 - 1: 32768 - 0,-11: - 0: 65535 - 0,-10: - 0: 64247 - 1: 1288 - 0,-9: - 0: 61439 - 1: 4096 - 1,-12: - 0: 62257 - 1,-11: - 0: 16179 - 1,-10: - 0: 65527 - 1,-9: - 0: 65535 - 2,-10: - 0: 65534 - 2,-9: - 0: 65535 - 3,-10: - 0: 65535 - 3,-9: - 0: 65535 - 4,-10: - 0: 65521 - 4,-9: - 0: 65535 - 5,-10: - 0: 65524 - 5,-9: - 0: 65535 - 6,-9: - 0: 7967 - 5: 57568 - 7,-9: - 0: 13107 - -4,-12: - 0: 65535 - -4,-11: - 0: 65535 - -4,-10: - 0: 65535 - -4,-9: - 0: 65535 - -3,-12: - 0: 65535 - -3,-11: - 0: 65535 - -3,-10: - 0: 49087 - 1: 16448 - -3,-9: - 0: 65535 - -2,-12: - 0: 65535 - -2,-11: - 0: 65523 - 1: 12 - -2,-10: - 0: 49151 - 1: 16384 - -2,-9: - 0: 65535 - -1,-12: - 0: 65535 - -1,-11: - 1: 7 - 0: 65528 - -1,-10: - 0: 65535 - -1,-9: - 0: 65467 - 1: 68 - -7,-12: - 0: 49151 - 1: 16384 - -7,-11: - 0: 65467 - 1: 68 - -7,-10: - 0: 65535 - -7,-9: - 0: 65535 - -6,-12: - 0: 57343 - 1: 8192 - -6,-11: - 0: 65535 - -6,-10: - 0: 65529 - 1: 6 - -6,-9: - 0: 65535 - -5,-12: - 0: 65535 - -5,-11: - 0: 65535 - -5,-10: - 0: 65535 - -5,-9: - 0: 16367 - 1: 49168 - -7,-13: - 0: 65535 - -6,-13: - 0: 65535 - -5,-14: - 0: 65263 - -5,-13: - 0: 32765 - 1: 32770 - -5,-16: - 0: 65262 - -5,-15: - 0: 61439 - -4,-14: - 0: 65263 - -4,-13: - 0: 65535 - -4,-15: - 0: 61164 - -4,-16: - 0: 64512 - -3,-16: - 0: 65326 - -3,-15: - 0: 65535 - -3,-14: - 0: 65535 - -3,-13: - 0: 65535 - -2,-16: - 0: 65423 - -2,-15: - 0: 65535 - -2,-14: - 0: 65535 - -2,-13: - 0: 65535 - -1,-16: - 0: 30464 - -1,-15: - 0: 65527 - -1,-14: - 0: 65535 - -1,-13: - 0: 65535 - 0,-15: - 0: 12288 - 0,-14: - 0: 65527 - 0,-13: - 0: 32767 - 1,-14: - 0: 21876 - 1,-13: - 0: 22357 - -8,-19: - 0: 26238 - -8,-17: - 0: 62543 - -8,-20: - 0: 26214 - -8,-18: - 0: 206 - -7,-19: - 0: 17487 - -7,-18: - 0: 8959 - -7,-17: - 0: 62543 - -7,-20: - 0: 17476 - -6,-19: - 0: 15 - -6,-18: - 0: 255 - -6,-20: - 0: 12 - -5,-20: - 0: 17487 - -5,-19: - 0: 17487 - -5,-18: - 0: 65535 - -5,-17: - 0: 61439 - -4,-20: - 0: 7 - -4,-19: - 0: 15 - -4,-18: - 0: 4607 - -4,-17: - 0: 273 - -3,-19: - 0: 17487 - -3,-18: - 0: 35071 - -3,-20: - 0: 17476 - -3,-17: - 0: 12 - -2,-19: - 0: 52431 - -2,-18: - 0: 127 - -2,-17: - 0: 7 - -2,-20: - 0: 52428 - -1,-19: - 0: 17652 - -1,-17: - 0: 7 - -1,-20: - 0: 16384 - -1,-18: - 0: 17476 - -8,-24: - 0: 30318 - -8,-21: - 0: 26223 - -8,-23: - 0: 26222 - -8,-22: - 0: 26214 - -7,-24: - 0: 17487 - -7,-23: - 0: 17487 - -7,-21: - 0: 17487 - -7,-22: - 0: 17476 - -6,-24: - 0: 15 - -6,-23: - 0: 15 - -6,-21: - 0: 17487 - -6,-22: - 0: 17484 - -5,-24: - 0: 17487 - -5,-23: - 0: 17487 - -5,-22: - 0: 17487 - -5,-21: - 0: 17487 - -4,-24: - 0: 15 - -4,-23: - 0: 15 - -4,-22: - 0: 17479 - -4,-21: - 0: 17487 - -3,-24: - 0: 17487 - -3,-23: - 0: 17487 - -3,-21: - 0: 17487 - -3,-22: - 0: 17476 - -2,-24: - 0: 52431 - -2,-23: - 0: 52431 - -2,-21: - 0: 52431 - -2,-22: - 0: 52428 - -1,-24: - 0: 62532 - -1,-21: - 0: 1103 - -1,-23: - 0: 17412 - -1,-22: - 0: 17476 - -8,-25: - 0: 49167 - -7,-25: - 0: 61999 - -7,-26: - 0: 8192 - -6,-25: - 0: 61455 - -5,-25: - 0: 62543 - -5,-27: - 0: 17472 - -5,-26: - 0: 17476 - -4,-25: - 0: 61451 - -3,-25: - 0: 63631 - -2,-25: - 0: 28679 - -1,-25: - 0: 17478 - -10,-21: - 0: 8 - -9,-21: - 0: 17487 - -9,-24: - 0: 58432 - -9,-23: - 0: 17476 - -9,-22: - 0: 17408 - -9,-20: - 0: 17412 - -9,-19: - 0: 17604 - -9,-18: - 0: 16452 - -9,-17: - 0: 62543 - -9,-25: - 0: 17484 - 8,-4: - 0: 65023 - 1: 512 - 8,-3: - 0: 64511 - 1: 1024 - 9,-4: - 0: 65535 - 9,-3: - 0: 65535 - 9,-2: - 0: 65535 - 9,-1: - 0: 65535 - 10,-4: - 0: 4369 - 10,-3: - 0: 4369 - 8,0: - 0: 65535 - 8,1: - 0: 65535 - 9,-12: - 0: 17604 - 9,-11: - 0: 17604 - 9,-10: - 0: 17604 - 9,-9: - 0: 17604 - 10,-12: - 0: 4369 - 10,-11: - 0: 4369 - 10,-10: - 0: 4369 - 10,-9: - 0: 4369 - 8,-6: - 0: 22005 - 8,-5: - 0: 65525 - 9,-6: - 0: 22005 - 9,-5: - 0: 22005 - 9,-8: - 0: 17604 - 9,-7: - 0: 21700 - 10,-8: - 0: 4369 - 10,-7: - 0: 4369 - 10,-6: - 0: 4369 - 10,-5: - 0: 5621 - 11,-5: - 0: 305 - 8,-14: - 0: 36047 - 9,-14: - 0: 65535 - 9,-13: - 0: 17663 - 10,-13: - 0: 4471 - 10,-14: - 0: 65535 - 6,11: - 0: 15 - 9,8: - 0: 65535 - 9,9: - 0: 65535 - 9,10: - 0: 65535 - 9,11: - 0: 65535 - 10,8: - 0: 65535 - 10,9: - 0: 65535 - 10,10: - 0: 65535 - 10,11: - 0: 65535 - 11,8: - 0: 65535 - 11,9: - 0: 65535 - 11,10: - 0: 65535 - 11,11: - 0: 65535 - 8,4: - 0: 57343 - 1: 8192 - 8,5: - 0: 65533 - 1: 2 - 9,4: - 0: 65535 - 9,5: - 0: 4383 - 9,6: - 0: 65521 - 9,7: - 0: 65535 - 10,4: - 0: 65535 - 10,5: - 0: 65535 - 10,6: - 0: 65535 - 10,7: - 0: 65535 - 11,4: - 0: 65407 - 1: 128 - 11,5: - 0: 49151 - 1: 16384 - 11,6: - 0: 65535 - 11,7: - 0: 65503 - 1: 32 - 10,-2: - 0: 4369 - 10,-1: - 0: 4369 - 8,2: - 0: 65535 - 8,3: - 0: 65535 - 9,0: - 0: 65535 - 9,1: - 0: 16383 - 1: 49152 - 9,2: - 0: 65535 - 9,3: - 0: 65535 - 10,0: - 0: 63249 - 10,1: - 0: 61439 - 1: 4096 - 10,2: - 0: 65535 - 10,3: - 0: 65023 - 1: 512 - 11,1: - 1: 1 - 0: 48122 - 11,2: - 0: 64447 - 11,3: - 0: 64443 - 4,12: - 0: 65535 - 4,13: - 0: 65535 - 4,14: - 0: 65535 - 4,15: - 0: 63487 - 1: 2048 - 5,12: - 0: 12851 - 1: 256 - 5,13: - 0: 32767 - 5,14: - 0: 30583 - 5,15: - 0: 4471 - 6,13: - 0: 4095 - 7,13: - 0: 4095 - 7,12: - 0: 61166 - 2,12: - 0: 34952 - 2,13: - 0: 61420 - 2,14: - 0: 61166 - 2,15: - 0: 16126 - 3,12: - 0: 57343 - 1: 8192 - 3,13: - 0: 63487 - 1: 2048 - 3,14: - 0: 65535 - 3,15: - 0: 61439 - 12,8: - 0: 4383 - 12,10: - 0: 4369 - 12,11: - 0: 273 - 13,8: - 0: 1 - 14,9: - 0: 56780 - 14,10: - 0: 249 - 14,8: - 0: 52428 - 15,8: - 0: 56797 - 15,9: - 0: 56797 - 15,10: - 0: 248 - 12,4: - 0: 65503 - 12,5: - 0: 65535 - 12,6: - 0: 16383 - 12,7: - 0: 65439 - 1: 96 - 13,4: - 0: 22383 - 1: 8192 - 13,5: - 0: 30583 - 13,6: - 1: 1 - 0: 3958 - 13,7: - 0: 65521 - 14,4: - 0: 61440 - 14,5: - 0: 52697 - 14,7: - 0: 36748 - 14,6: - 0: 52428 - 15,4: - 0: 61440 - 15,5: - 0: 56792 - 15,6: - 0: 56797 - 15,7: - 0: 36749 - 16,4: - 0: 61440 - 16,5: - 0: 56792 - 16,6: - 0: 56797 - 16,7: - 0: 36749 - 17,4: - 0: 61440 - 17,5: - 0: 56792 - 17,6: - 0: 56797 - 17,7: - 0: 36749 - 18,4: - 0: 61440 - 18,5: - 0: 56796 - 18,6: - 0: 56797 - 18,7: - 0: 36749 - 19,4: - 0: 28672 - 19,5: - 0: 21844 - 19,6: - 0: 21841 - 19,7: - 0: 44975 - 20,7: - 0: 8995 - 16,8: - 0: 56797 - 16,9: - 0: 56797 - 16,10: - 0: 248 - 17,8: - 0: 56797 - 17,9: - 0: 56797 - 17,10: - 0: 248 - 18,8: - 0: 56797 - 18,9: - 0: 56797 - 18,10: - 0: 252 - 19,8: - 0: 21855 - 19,9: - 0: 21845 - 19,10: - 0: 116 - 20,8: - 0: 3 - 12,9: - 0: 4369 - -13,-4: - 0: 34952 - -14,9: - 0: 65280 - -16,14: - 0: 52862 - 7: 128 - -16,15: - 0: 3976 - -16,13: - 0: 51342 - -15,13: - 0: 4351 - -15,14: - 0: 5107 - -15,15: - 0: 35584 - -10,16: - 0: 4369 - -10,17: - 0: 17 - -15,16: - 0: 34952 - -15,17: - 0: 136 - -12,-7: - 0: 65535 - -12,-6: - 0: 65535 - -12,-5: - 0: 65535 - -8,-10: - 0: 65511 - 1: 24 - -8,-9: - 0: 65535 - -8,-12: - 0: 65535 - -8,-11: - 0: 65535 - -20,8: - 0: 61007 - -20,10: - 0: 62718 - -20,9: - 0: 61166 - -20,11: - 0: 61156 - -19,8: - 0: 61007 - -19,10: - 0: 62718 - -19,9: - 0: 61166 - -19,11: - 0: 61156 - -18,8: - 0: 8739 - -18,10: - 0: 64752 - -18,9: - 0: 2 - -18,11: - 0: 12 - -17,10: - 0: 64480 - 1: 1024 - -17,11: - 0: 17647 - -20,13: - 0: 61438 - -20,12: - 0: 61166 - -19,13: - 0: 61438 - -19,12: - 0: 61166 - -18,13: - 0: 9010 - -18,12: - 0: 8738 - -17,13: - 0: 16388 - -17,14: - 0: 17604 - -17,15: - 0: 3136 - -23,10: - 0: 62968 - -23,11: - 0: 35061 - -23,8: - 0: 34952 - -23,9: - 0: 34952 - -22,8: - 0: 61007 - -22,10: - 0: 62718 - -22,9: - 0: 61166 - -22,11: - 0: 61156 - -21,8: - 0: 61007 - -21,10: - 0: 62718 - -21,9: - 0: 61166 - -21,11: - 0: 61156 - -23,12: - 0: 34952 - -23,13: - 0: 34952 - -22,12: - 0: 61166 - -22,13: - 0: 61182 - -21,13: - 0: 61438 - -21,12: - 0: 61166 - -16,-8: - 0: 65535 - -16,-7: - 0: 65535 - -16,-6: - 0: 65535 - -16,-5: - 0: 63 - -15,-8: - 0: 65535 - -15,-7: - 0: 65535 - -15,-6: - 0: 63487 - 1: 2048 - -15,-5: - 0: 1 - -14,-8: - 0: 5111 - -14,-7: - 0: 65311 - -14,-6: - 0: 16383 - -13,-7: - 0: 65311 - -13,-6: - 0: 36863 - -13,-5: - 0: 34952 - -18,-8: - 0: 36846 - -17,-8: - 0: 65535 - -17,-7: - 0: 65535 - -17,-6: - 0: 44735 - -17,-5: - 0: 136 - -20,-12: - 0: 65535 - -20,-11: - 0: 65535 - -20,-10: - 0: 61435 - 1: 4 - -20,-9: - 0: 140 - -19,-12: - 0: 65535 - -19,-11: - 0: 65535 - -19,-10: - 0: 65535 - -19,-9: - 0: 36863 - -18,-12: - 0: 65535 - -18,-11: - 0: 65535 - -18,-10: - 0: 65535 - -18,-9: - 0: 65535 - -17,-12: - 0: 65535 - -17,-11: - 0: 65535 - -17,-10: - 0: 65535 - -17,-9: - 0: 65535 - -16,-12: - 0: 65535 - -16,-11: - 0: 65535 - -16,-10: - 0: 65535 - -16,-9: - 0: 65535 - -15,-12: - 0: 65535 - -15,-11: - 0: 65535 - -15,-10: - 0: 65535 - -15,-9: - 0: 65535 - -14,-12: - 0: 65535 - -14,-11: - 0: 65535 - -14,-10: - 0: 65535 - -14,-9: - 0: 65535 - -13,-12: - 0: 65535 - -13,-11: - 0: 65535 - -13,-10: - 0: 13311 - -13,-9: - 0: 13107 - -16,-16: - 0: 65535 - -16,-15: - 0: 65535 - -16,-14: - 0: 65535 - -16,-13: - 0: 65535 - -15,-16: - 0: 65535 - -15,-15: - 0: 65535 - -15,-14: - 0: 65535 - -15,-13: - 0: 65535 - -14,-16: - 0: 65535 - -14,-15: - 0: 65535 - -14,-14: - 0: 65531 - 1: 4 - -14,-13: - 0: 49147 - 1: 16388 - -13,-16: - 0: 65399 - -13,-15: - 0: 65535 - -13,-14: - 0: 65535 - -13,-13: - 0: 65535 - -12,-11: - 0: 61713 - -12,-10: - 0: 4607 - -11,-11: - 0: 61576 - -11,-10: - 0: 4607 - -10,-11: - 0: 61440 - -10,-10: - 0: 61695 - -20,-13: - 1: 1 - 0: 65534 - -19,-13: - 0: 65535 - -18,-13: - 0: 65535 - -18,-16: - 0: 65535 - -18,-15: - 0: 65535 - -18,-14: - 0: 65535 - -17,-16: - 0: 65535 - -17,-15: - 0: 65535 - -17,-14: - 0: 65535 - -17,-13: - 0: 65535 - -22,-13: - 0: 32768 - -21,-13: - 0: 65263 - -22,-12: - 0: 19660 - 1: 32768 - -22,-11: - 0: 140 - -21,-12: - 0: 65535 - -21,-11: - 0: 61183 - -21,-10: - 0: 3310 - -18,-17: - 0: 65532 - -17,-17: - 0: 65279 - 1: 256 - -16,-17: - 0: 65535 - -12,-8: - 0: 61713 - -11,-8: - 0: 63761 - -8,-13: - 0: 65296 - -6,-16: - 0: 61440 - -14,-5: - 0: 1638 - -13,-8: - 0: 8946 - -19,-8: - 0: 2184 - -18,-7: - 0: 19660 - -18,-6: - 0: 196 - -12,-12: - 0: 6417 - -12,-9: - 0: 4369 - -11,-9: - 0: 4383 - -10,-9: - 0: 65535 - -9,-11: - 0: 65484 - -9,-10: - 0: 65503 - 1: 32 - -9,-9: - 0: 65535 - -20,-16: - 0: 65535 - -20,-15: - 0: 65535 - -20,-14: - 0: 65279 - 1: 256 - -19,-16: - 0: 65535 - -19,-15: - 0: 65535 - -19,-14: - 0: 65535 - -22,-16: - 0: 52424 - -22,-15: - 0: 36044 - -22,-14: - 0: 2184 - -21,-16: - 0: 65535 - -21,-15: - 0: 65471 - 1: 64 - -21,-14: - 0: 65535 - -20,-17: - 0: 65512 - -19,-17: - 0: 65527 - -17,-18: - 0: 61440 - -16,-18: - 0: 65024 - -15,-18: - 0: 65280 - -15,-17: - 0: 65535 - -14,-18: - 0: 28928 - -14,-17: - 0: 65535 - -13,-17: - 0: 29488 - -21,-17: - 0: 57344 - -12,-15: - 0: 39321 - -12,-14: - 0: 6585 - -12,-13: - 0: 4369 - -9,-13: - 0: 48896 - -3,15: - 0: 59616 - -2,15: - 0: 64184 - -1,15: - 0: 65534 - -1,14: - 0: 59640 - 0,14: - 0: 47352 - 0,15: - 0: 64507 - 1: 1024 - 1,15: - 0: 64224 - 0,16: - 0: 65535 - 0,17: - 0: 21845 - 0,18: - 0: 65525 - 0,19: - 0: 65535 - 1,16: - 0: 65535 - 1,17: - 0: 63351 - 1,18: - 0: 30583 - 1,19: - 0: 62335 - 2,16: - 0: 12834 - 2,17: - 0: 4368 - 2,18: - 0: 4369 - 2,19: - 0: 17 - -3,16: - 0: 60074 - -3,17: - 0: 50240 - -3,18: - 0: 17476 - -3,19: - 0: 32844 - -2,16: - 0: 65535 - -2,17: - 0: 30583 - -2,18: - 0: 65527 - -2,19: - 0: 65279 - -1,16: - 0: 65535 - -1,17: - 0: 56797 - -1,18: - 0: 65533 - -1,19: - 0: 65535 - -3,20: - 0: 34952 - -3,21: - 0: 34952 - -3,22: - 0: 34952 - -2,21: - 0: 61167 - -2,22: - 0: 58622 - -2,20: - 0: 61166 - -1,20: - 0: 65535 - -1,21: - 0: 65535 - -1,22: - 0: 63743 - 0,20: - 0: 65535 - 0,21: - 0: 65535 - 0,22: - 0: 61695 - 1,20: - 0: 48059 - 1,21: - 0: 48063 - 1,22: - 0: 47611 - 8,12: - 0: 204 - 10,12: - 0: 241 - 11,12: - 0: 115 - -1,12: - 0: 63631 - -1,13: - 0: 36744 - 0,12: - 0: 63631 - 0,13: - 0: 36744 - 8,-16: - 0: 65535 - 8,-15: - 0: 65535 - 9,-16: - 0: 22399 - 5: 43136 - 9,-15: - 0: 65277 - 5: 258 - 10,-16: - 5: 32769 - 0: 32766 - 10,-15: - 0: 65535 - 11,-16: - 0: 30719 - 11,-15: - 0: 13175 - 11,-14: - 0: 275 - 8,-18: - 0: 65534 - 8,-17: - 0: 63359 - 5: 2176 - 8,-19: - 0: 60616 - 9,-19: - 0: 64511 - 5: 1024 - 9,-18: - 0: 49143 - 5: 16392 - 9,-17: - 5: 311 - 0: 65224 - 9,-20: - 0: 57344 - 10,-20: - 0: 61440 - 10,-19: - 0: 64703 - 5: 832 - 10,-18: - 0: 29695 - 5: 35840 - 10,-17: - 0: 65535 - 11,-19: - 0: 29489 - 11,-18: - 0: 60655 - 5: 4880 - 11,-17: - 5: 8193 - 0: 57342 - 7,-17: - 0: 34944 - 7,-16: - 0: 136 - -16,12: - 0: 61440 - -15,12: - 0: 65534 - -17,12: - 0: 50244 - -10,-12: - 0: 61423 - -9,-12: - 0: 65279 - 1: 256 - -10,-13: - 0: 61184 - -7,-14: - 0: 13286 - -6,-14: - 0: 50288 - -11,-12: - 0: 36744 - -11,-13: - 0: 35976 - 2,-12: - 0: 4096 - 2,-11: - 0: 17856 - 3,-11: - 0: 17520 - 4,-11: - 0: 7936 - 5,-11: - 0: 20224 - 6,-10: - 0: 8928 - 7,-10: - 0: 8816 - 3,16: - 0: 242 - 12,3: - 0: 61440 - 13,3: - 0: 61440 - 4,16: - 0: 244 - 9,12: - 0: 240 - 11,0: - 0: 12288 - 14,3: - 0: 12288 - 8,-7: - 0: 21504 - -4,13: - 0: 3840 - -3,13: - 0: 3840 - -2,13: - 0: 36744 - -2,14: - 0: 34952 - 1,13: - 0: 3840 - -15,0: - 0: 65534 - -14,0: - 0: 65535 - -13,0: - 0: 65535 - -20,15: - 0: 62702 - -20,14: - 0: 61166 - -19,15: - 0: 62702 - -19,14: - 0: 61166 - -18,15: - 0: 4098 - -18,14: - 0: 8738 - -23,14: - 0: 34952 - -23,15: - 0: 34952 - -22,15: - 0: 62702 - -22,14: - 0: 61166 - -21,15: - 0: 62702 - -21,14: - 0: 61166 - -8,-16: - 0: 65535 - -8,-15: - 0: 65535 - -8,-14: - 0: 3908 - -7,-16: - 0: 65535 - -7,-15: - 0: 64255 - 1: 1280 - -6,-15: - 0: 65279 - 1: 256 - -6,-17: - 0: 3 - -12,-17: - 0: 34952 - -11,-17: - 0: 58446 - -10,-17: - 0: 62543 - -12,-16: - 0: 51336 - -11,-16: - 0: 65262 - -11,-15: - 0: 61166 - -11,-14: - 0: 3652 - -10,-16: - 0: 65535 - -10,-15: - 0: 65535 - -10,-14: - 0: 3908 - -9,-16: - 0: 65535 - -9,-15: - 0: 65535 - -9,-14: - 0: 3908 - -16,1: - 5: 34816 - -16,2: - 5: 136 - -16,-2: - 5: 34944 - -16,-1: - 5: 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: 293.15 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 235 - moles: - - 20.078888 - - 75.53487 - - 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: - - 14.840918 - - 55.830124 - - 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 - - volume: 2500 - temperature: 293.15 - moles: - - 18.472576 - - 69.49208 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - id: Marathon - type: BecomesStation - - type: OccluderTree - - type: Shuttle - - nextUpdate: 4567.2250735 - type: GridPathfinding - - type: RadiationGridResistance - - nextShake: 0 - shakeTimes: 10 - type: GravityShake - - type: GasTileOverlay -- uid: 31 - type: FirelockGlass - components: - - pos: -12.5,1.5 - parent: 30 - type: Transform -- uid: 32 - type: WallSolid - components: - - pos: -18.5,4.5 - parent: 30 - type: Transform -- uid: 33 - type: WallSolid - components: - - pos: -18.5,5.5 - parent: 30 - type: Transform -- uid: 34 - type: WallSolid - components: - - pos: -18.5,7.5 - parent: 30 - type: Transform -- uid: 35 - type: WallSolid - components: - - pos: -18.5,8.5 - parent: 30 - type: Transform -- uid: 36 - type: WallSolid - components: - - pos: -22.5,4.5 - parent: 30 - type: Transform -- uid: 37 - type: WallSolid - components: - - pos: -29.5,4.5 - parent: 30 - type: Transform -- uid: 38 - type: WallSolid - components: - - pos: -29.5,6.5 - parent: 30 - type: Transform -- uid: 39 - type: WallSolid - components: - - pos: -29.5,7.5 - parent: 30 - type: Transform -- uid: 40 - type: WallSolid - components: - - pos: -29.5,8.5 - parent: 30 - type: Transform -- uid: 41 - type: CableApcExtension - components: - - pos: 16.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 42 - type: WallSolid - components: - - pos: 7.5,4.5 - parent: 30 - type: Transform -- uid: 43 - type: WallSolid - components: - - pos: 7.5,5.5 - parent: 30 - type: Transform -- uid: 44 - type: WallSolid - components: - - pos: 6.5,5.5 - parent: 30 - type: Transform -- uid: 45 - type: WallSolid - components: - - pos: 7.5,0.5 - parent: 30 - type: Transform -- uid: 46 - type: WallSolid - components: - - pos: 2.5,-0.5 - parent: 30 - type: Transform -- uid: 47 - type: WallSolid - components: - - pos: -12.5,4.5 - parent: 30 - type: Transform -- uid: 48 - type: CableApcExtension - components: - - pos: 27.5,20.5 - parent: 30 - type: Transform -- uid: 49 - type: FirelockGlass - components: - - pos: 3.5,0.5 - parent: 30 - type: Transform -- uid: 50 - type: WallSolid - components: - - pos: -7.5,-0.5 - parent: 30 - type: Transform -- uid: 51 - type: WallSolid - components: - - pos: -8.5,5.5 - parent: 30 - type: Transform -- uid: 52 - type: WallSolid - components: - - pos: -10.5,5.5 - parent: 30 - type: Transform -- uid: 53 - type: WallSolid - components: - - pos: -7.5,5.5 - parent: 30 - type: Transform -- uid: 54 - type: Grille - components: - - pos: -66.5,-52.5 - parent: 30 - type: Transform -- uid: 55 - type: FirelockGlass - components: - - pos: -10.5,0.5 - parent: 30 - type: Transform -- uid: 56 - type: FirelockGlass - components: - - pos: -2.5,-0.5 - parent: 30 - type: Transform -- uid: 57 - type: Window - components: - - pos: 1.5,-0.5 - parent: 30 - type: Transform -- uid: 58 - type: Window - components: - - pos: 0.5,-0.5 - parent: 30 - type: Transform -- uid: 59 - type: Window - components: - - pos: -5.5,-0.5 - parent: 30 - type: Transform -- uid: 60 - type: Window - components: - - pos: -6.5,-0.5 - parent: 30 - type: Transform -- uid: 61 - type: Window - components: - - pos: -7.5,0.5 - parent: 30 - type: Transform -- uid: 62 - type: Window - components: - - pos: -11.5,0.5 - parent: 30 - type: Transform -- uid: 63 - type: Window - components: - - pos: -5.5,5.5 - parent: 30 - type: Transform -- uid: 64 - type: ClosetChefFilled - components: - - pos: -17.5,5.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 65 - type: Window - components: - - pos: -9.5,5.5 - parent: 30 - type: Transform -- uid: 66 - type: ReinforcedWindow - components: - - pos: -17.5,4.5 - parent: 30 - type: Transform -- uid: 67 - type: ReinforcedWindow - components: - - pos: -16.5,4.5 - parent: 30 - type: Transform -- uid: 68 - type: ReinforcedWindow - components: - - pos: -15.5,4.5 - parent: 30 - type: Transform -- uid: 69 - type: ReinforcedWindow - components: - - pos: -13.5,4.5 - parent: 30 - type: Transform -- uid: 70 - type: ReinforcedWindow - components: - - pos: -14.5,4.5 - parent: 30 - type: Transform -- uid: 71 - type: ReinforcedWindow - components: - - pos: -11.5,5.5 - parent: 30 - type: Transform -- uid: 72 - type: ReinforcedWindow - components: - - pos: -19.5,8.5 - parent: 30 - type: Transform -- uid: 73 - type: ReinforcedWindow - components: - - pos: -21.5,8.5 - parent: 30 - type: Transform -- uid: 74 - type: WindowReinforcedDirectional - components: - - pos: -26.5,4.5 - parent: 30 - type: Transform -- uid: 75 - type: WindowReinforcedDirectional - components: - - pos: -28.5,4.5 - parent: 30 - type: Transform -- uid: 76 - type: WindowReinforcedDirectional - components: - - pos: -27.5,4.5 - parent: 30 - type: Transform -- uid: 77 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -42.5,0.5 - parent: 30 - type: Transform -- uid: 78 - type: WallSolid - components: - - pos: 10.5,-13.5 - parent: 30 - type: Transform -- uid: 79 - type: AirlockMaintLocked - components: - - pos: 6.5,-16.5 - parent: 30 - type: Transform -- uid: 80 - type: Window - components: - - pos: 2.5,0.5 - parent: 30 - type: Transform -- uid: 81 - type: Window - components: - - pos: 6.5,0.5 - parent: 30 - type: Transform -- uid: 82 - type: WallSolid - components: - - pos: 7.5,6.5 - parent: 30 - type: Transform -- uid: 83 - type: WallSolid - components: - - pos: 7.5,9.5 - parent: 30 - type: Transform -- uid: 84 - type: Window - components: - - pos: 0.5,5.5 - parent: 30 - type: Transform -- uid: 85 - type: Window - components: - - pos: 1.5,5.5 - parent: 30 - type: Transform -- uid: 86 - type: WallSolid - components: - - pos: 7.5,10.5 - parent: 30 - type: Transform -- uid: 87 - type: WallReinforced - components: - - pos: 7.5,11.5 - parent: 30 - type: Transform -- uid: 88 - type: WallSolid - components: - - pos: 7.5,12.5 - parent: 30 - type: Transform -- uid: 89 - type: WallSolid - components: - - pos: 3.5,9.5 - parent: 30 - type: Transform -- uid: 90 - type: WallSolid - components: - - pos: 3.5,10.5 - parent: 30 - type: Transform -- uid: 91 - type: WallSolid - components: - - pos: 3.5,11.5 - parent: 30 - type: Transform -- uid: 92 - type: WallSolid - components: - - pos: 3.5,12.5 - parent: 30 - type: Transform -- uid: 93 - type: WallSolid - components: - - pos: 4.5,11.5 - parent: 30 - type: Transform -- uid: 94 - type: WallSolid - components: - - pos: 5.5,11.5 - parent: 30 - type: Transform -- uid: 95 - type: WallSolid - components: - - pos: 6.5,11.5 - parent: 30 - type: Transform -- uid: 96 - type: WallSolid - components: - - pos: 1.5,12.5 - parent: 30 - type: Transform -- uid: 97 - type: WallSolid - components: - - pos: 1.5,13.5 - parent: 30 - type: Transform -- uid: 98 - type: Poweredlight - components: - - pos: -26.5,13.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 99 - type: WallSolid - components: - - pos: 1.5,15.5 - parent: 30 - type: Transform -- uid: 100 - type: WallSolid - components: - - pos: -6.5,12.5 - parent: 30 - type: Transform -- uid: 101 - type: WallSolid - components: - - pos: -6.5,13.5 - parent: 30 - type: Transform -- uid: 102 - type: WallSolid - components: - - pos: -8.5,12.5 - parent: 30 - type: Transform -- uid: 103 - type: WallSolid - components: - - pos: -9.5,12.5 - parent: 30 - type: Transform -- uid: 104 - type: WallSolid - components: - - pos: -10.5,12.5 - parent: 30 - type: Transform -- uid: 105 - type: WallSolid - components: - - pos: -11.5,12.5 - parent: 30 - type: Transform -- uid: 106 - type: WallSolid - components: - - pos: -12.5,12.5 - parent: 30 - type: Transform -- uid: 107 - type: WallSolid - components: - - pos: -14.5,12.5 - parent: 30 - type: Transform -- uid: 108 - type: WallSolid - components: - - pos: -15.5,12.5 - parent: 30 - type: Transform -- uid: 109 - type: WallSolid - components: - - pos: -17.5,12.5 - parent: 30 - type: Transform -- uid: 110 - type: WallSolid - components: - - pos: -18.5,12.5 - parent: 30 - type: Transform -- uid: 111 - type: WallSolid - components: - - pos: -18.5,13.5 - parent: 30 - type: Transform -- uid: 112 - type: WallSolid - components: - - pos: -19.5,13.5 - parent: 30 - type: Transform -- uid: 113 - type: WallSolid - components: - - pos: -20.5,13.5 - parent: 30 - type: Transform -- uid: 114 - type: WallSolid - components: - - pos: -21.5,13.5 - parent: 30 - type: Transform -- uid: 115 - type: WallSolid - components: - - pos: -21.5,14.5 - parent: 30 - type: Transform -- uid: 116 - type: WallSolid - components: - - pos: -22.5,14.5 - parent: 30 - type: Transform -- uid: 117 - type: WallSolid - components: - - pos: -23.5,14.5 - parent: 30 - type: Transform -- uid: 118 - type: WallSolid - components: - - pos: -30.5,11.5 - parent: 30 - type: Transform -- uid: 119 - type: WallSolid - components: - - pos: -29.5,11.5 - parent: 30 - type: Transform -- uid: 120 - type: WallSolid - components: - - pos: -29.5,12.5 - parent: 30 - type: Transform -- uid: 121 - type: WallSolid - components: - - pos: -29.5,13.5 - parent: 30 - type: Transform -- uid: 122 - type: WallSolid - components: - - pos: -29.5,14.5 - parent: 30 - type: Transform -- uid: 123 - type: WallSolid - components: - - pos: -28.5,14.5 - parent: 30 - type: Transform -- uid: 124 - type: WallSolid - components: - - pos: -27.5,14.5 - parent: 30 - type: Transform -- uid: 125 - type: WallSolid - components: - - pos: -26.5,14.5 - parent: 30 - type: Transform -- uid: 126 - type: WallSolid - components: - - pos: -25.5,14.5 - parent: 30 - type: Transform -- uid: 127 - type: WallSolid - components: - - pos: -21.5,15.5 - parent: 30 - type: Transform -- uid: 128 - type: WallSolid - components: - - pos: -21.5,16.5 - parent: 30 - type: Transform -- uid: 129 - type: WallSolid - components: - - pos: -21.5,17.5 - parent: 30 - type: Transform -- uid: 130 - type: WallSolid - components: - - pos: -20.5,17.5 - parent: 30 - type: Transform -- uid: 131 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -25.5,33.5 - parent: 30 - type: Transform -- uid: 132 - type: WallSolid - components: - - pos: -21.5,18.5 - parent: 30 - type: Transform -- uid: 133 - type: WallSolid - components: - - pos: -18.5,17.5 - parent: 30 - type: Transform -- uid: 134 - type: WallSolid - components: - - pos: -18.5,18.5 - parent: 30 - type: Transform -- uid: 135 - type: WallSolid - components: - - pos: -17.5,18.5 - parent: 30 - type: Transform -- uid: 136 - type: WallSolid - components: - - pos: -16.5,18.5 - parent: 30 - type: Transform -- uid: 137 - type: WallSolid - components: - - pos: -15.5,18.5 - parent: 30 - type: Transform -- uid: 138 - type: WallSolid - components: - - pos: -14.5,18.5 - parent: 30 - type: Transform -- uid: 139 - type: WallSolid - components: - - pos: -12.5,18.5 - parent: 30 - type: Transform -- uid: 140 - type: WallSolid - components: - - pos: -12.5,19.5 - parent: 30 - type: Transform -- uid: 141 - type: WallSolid - components: - - pos: -12.5,20.5 - parent: 30 - type: Transform -- uid: 142 - type: WallSolid - components: - - pos: -12.5,16.5 - parent: 30 - type: Transform -- uid: 143 - type: WallSolid - components: - - pos: -12.5,17.5 - parent: 30 - type: Transform -- uid: 144 - type: WallSolid - components: - - pos: -11.5,15.5 - parent: 30 - type: Transform -- uid: 145 - type: WallSolid - components: - - pos: -11.5,16.5 - parent: 30 - type: Transform -- uid: 146 - type: WallSolid - components: - - pos: -9.5,15.5 - parent: 30 - type: Transform -- uid: 147 - type: WallSolid - components: - - pos: -8.5,15.5 - parent: 30 - type: Transform -- uid: 148 - type: WallSolid - components: - - pos: -7.5,15.5 - parent: 30 - type: Transform -- uid: 149 - type: WallSolid - components: - - pos: -6.5,15.5 - parent: 30 - type: Transform -- uid: 150 - type: WallSolid - components: - - pos: -6.5,16.5 - parent: 30 - type: Transform -- uid: 151 - type: WallSolid - components: - - pos: -4.5,16.5 - parent: 30 - type: Transform -- uid: 152 - type: WallSolid - components: - - pos: -8.5,16.5 - parent: 30 - type: Transform -- uid: 153 - type: WallSolid - components: - - pos: -7.5,17.5 - parent: 30 - type: Transform -- uid: 154 - type: TableWood - components: - - pos: -11.5,18.5 - parent: 30 - type: Transform -- uid: 155 - type: WallSolid - components: - - pos: -7.5,19.5 - parent: 30 - type: Transform -- uid: 156 - type: WallSolid - components: - - pos: -7.5,20.5 - parent: 30 - type: Transform -- uid: 157 - type: WallSolid - components: - - pos: -9.5,20.5 - parent: 30 - type: Transform -- uid: 158 - type: WallSolid - components: - - pos: -10.5,20.5 - parent: 30 - type: Transform -- uid: 159 - type: WallSolid - components: - - pos: -11.5,20.5 - parent: 30 - type: Transform -- uid: 160 - type: WallSolid - components: - - pos: -8.5,20.5 - parent: 30 - type: Transform -- uid: 161 - type: WallSolid - components: - - pos: -3.5,16.5 - parent: 30 - type: Transform -- uid: 162 - type: WallSolid - components: - - pos: -2.5,16.5 - parent: 30 - type: Transform -- uid: 163 - type: WallSolid - components: - - pos: -1.5,16.5 - parent: 30 - type: Transform -- uid: 164 - type: WallSolid - components: - - pos: -0.5,16.5 - parent: 30 - type: Transform -- uid: 165 - type: WallSolid - components: - - pos: 0.5,16.5 - parent: 30 - type: Transform -- uid: 166 - type: WallSolid - components: - - pos: 1.5,16.5 - parent: 30 - type: Transform -- uid: 167 - type: WallSolid - components: - - pos: 7.5,13.5 - parent: 30 - type: Transform -- uid: 168 - type: WallSolid - components: - - pos: 7.5,14.5 - parent: 30 - type: Transform -- uid: 169 - type: WallSolid - components: - - pos: 7.5,15.5 - parent: 30 - type: Transform -- uid: 170 - type: WallSolid - components: - - pos: 7.5,16.5 - parent: 30 - type: Transform -- uid: 171 - type: WallSolid - components: - - pos: 5.5,15.5 - parent: 30 - type: Transform -- uid: 172 - type: WallSolid - components: - - pos: 2.5,16.5 - parent: 30 - type: Transform -- uid: 173 - type: WallSolid - components: - - pos: 3.5,16.5 - parent: 30 - type: Transform -- uid: 174 - type: WallSolid - components: - - pos: 4.5,16.5 - parent: 30 - type: Transform -- uid: 175 - type: WallSolid - components: - - pos: 5.5,16.5 - parent: 30 - type: Transform -- uid: 176 - type: WallSolid - components: - - pos: 7.5,18.5 - parent: 30 - type: Transform -- uid: 177 - type: WallReinforced - components: - - pos: 7.5,19.5 - parent: 30 - type: Transform -- uid: 178 - type: WallReinforced - components: - - pos: 7.5,20.5 - parent: 30 - type: Transform -- uid: 179 - type: WallReinforced - components: - - pos: 7.5,23.5 - parent: 30 - type: Transform -- uid: 180 - type: WallReinforced - components: - - pos: 7.5,24.5 - parent: 30 - type: Transform -- uid: 181 - type: WallReinforced - components: - - pos: 6.5,24.5 - parent: 30 - type: Transform -- uid: 182 - type: WallReinforced - components: - - pos: 6.5,19.5 - parent: 30 - type: Transform -- uid: 183 - type: WallReinforced - components: - - pos: 1.5,24.5 - parent: 30 - type: Transform -- uid: 184 - type: WallReinforced - components: - - pos: 2.5,24.5 - parent: 30 - type: Transform -- uid: 185 - type: WallReinforced - components: - - pos: 5.5,19.5 - parent: 30 - type: Transform -- uid: 186 - type: WallReinforced - components: - - pos: 1.5,18.5 - parent: 30 - type: Transform -- uid: 187 - type: WallReinforced - components: - - pos: 1.5,19.5 - parent: 30 - type: Transform -- uid: 188 - type: WallReinforced - components: - - pos: 2.5,19.5 - parent: 30 - type: Transform -- uid: 189 - type: WallReinforced - components: - - pos: 3.5,19.5 - parent: 30 - type: Transform -- uid: 190 - type: WallReinforced - components: - - pos: 4.5,19.5 - parent: 30 - type: Transform -- uid: 191 - type: WallReinforced - components: - - pos: 0.5,18.5 - parent: 30 - type: Transform -- uid: 192 - type: WallReinforced - components: - - pos: -0.5,18.5 - parent: 30 - type: Transform -- uid: 193 - type: WallReinforced - components: - - pos: -2.5,18.5 - parent: 30 - type: Transform -- uid: 194 - type: WallReinforced - components: - - pos: -3.5,18.5 - parent: 30 - type: Transform -- uid: 195 - type: WallReinforced - components: - - pos: -4.5,18.5 - parent: 30 - type: Transform -- uid: 196 - type: WallReinforced - components: - - pos: -4.5,19.5 - parent: 30 - type: Transform -- uid: 197 - type: WallReinforced - components: - - pos: -4.5,20.5 - parent: 30 - type: Transform -- uid: 198 - type: WallReinforced - components: - - pos: -4.5,21.5 - parent: 30 - type: Transform -- uid: 199 - type: WallReinforced - components: - - pos: -4.5,22.5 - parent: 30 - type: Transform -- uid: 200 - type: WallReinforced - components: - - pos: -4.5,23.5 - parent: 30 - type: Transform -- uid: 201 - type: WallReinforced - components: - - pos: -4.5,24.5 - parent: 30 - type: Transform -- uid: 202 - type: WallSolid - components: - - pos: 1.5,20.5 - parent: 30 - type: Transform -- uid: 203 - type: WallSolid - components: - - pos: 1.5,21.5 - parent: 30 - type: Transform -- uid: 204 - type: AirlockEngineeringLocked - components: - - name: EVA Storage - type: MetaData - - pos: 1.5,22.5 - parent: 30 - type: Transform -- uid: 205 - type: WallSolid - components: - - pos: 1.5,23.5 - parent: 30 - type: Transform -- uid: 206 - type: WallSolid - components: - - pos: -5.5,24.5 - parent: 30 - type: Transform -- uid: 207 - type: WindowTintedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,23.5 - parent: 30 - type: Transform -- uid: 208 - type: WallSolid - components: - - pos: -5.5,22.5 - parent: 30 - type: Transform -- uid: 209 - type: WallSolid - components: - - pos: -6.5,24.5 - parent: 30 - type: Transform -- uid: 210 - type: WallSolid - components: - - pos: -6.5,22.5 - parent: 30 - type: Transform -- uid: 211 - type: WallSolid - components: - - pos: -7.5,22.5 - parent: 30 - type: Transform -- uid: 212 - type: WallSolid - components: - - pos: -8.5,22.5 - parent: 30 - type: Transform -- uid: 213 - type: WallSolid - components: - - pos: -9.5,22.5 - parent: 30 - type: Transform -- uid: 214 - type: WallSolid - components: - - pos: -10.5,22.5 - parent: 30 - type: Transform -- uid: 215 - type: WallSolid - components: - - pos: -12.5,22.5 - parent: 30 - type: Transform -- uid: 216 - type: WallSolid - components: - - pos: -11.5,22.5 - parent: 30 - type: Transform -- uid: 217 - type: WallSolid - components: - - pos: -12.5,24.5 - parent: 30 - type: Transform -- uid: 218 - type: WallSolid - components: - - pos: -13.5,24.5 - parent: 30 - type: Transform -- uid: 219 - type: WallSolid - components: - - pos: -13.5,23.5 - parent: 30 - type: Transform -- uid: 220 - type: WallSolid - components: - - pos: -13.5,22.5 - parent: 30 - type: Transform -- uid: 221 - type: WallSolid - components: - - pos: -16.5,24.5 - parent: 30 - type: Transform -- uid: 222 - type: WallSolid - components: - - pos: -15.5,24.5 - parent: 30 - type: Transform -- uid: 223 - type: WallSolidRust - components: - - pos: -15.5,23.5 - parent: 30 - type: Transform -- uid: 224 - type: WallSolid - components: - - pos: -15.5,22.5 - parent: 30 - type: Transform -- uid: 225 - type: WallSolid - components: - - pos: -15.5,21.5 - parent: 30 - type: Transform -- uid: 226 - type: WallSolidRust - components: - - pos: -19.5,21.5 - parent: 30 - type: Transform -- uid: 227 - type: WallSolid - components: - - pos: -18.5,21.5 - parent: 30 - type: Transform -- uid: 228 - type: WallSolidRust - components: - - pos: -24.5,21.5 - parent: 30 - type: Transform -- uid: 229 - type: WallSolid - components: - - pos: -20.5,21.5 - parent: 30 - type: Transform -- uid: 230 - type: WallSolid - components: - - pos: -20.5,22.5 - parent: 30 - type: Transform -- uid: 231 - type: WallSolid - components: - - pos: -20.5,23.5 - parent: 30 - type: Transform -- uid: 232 - type: WallSolid - components: - - pos: -20.5,24.5 - parent: 30 - type: Transform -- uid: 233 - type: WallSolid - components: - - pos: -17.5,24.5 - parent: 30 - type: Transform -- uid: 234 - type: WallSolid - components: - - pos: -18.5,24.5 - parent: 30 - type: Transform -- uid: 235 - type: WallSolid - components: - - pos: -19.5,24.5 - parent: 30 - type: Transform -- uid: 236 - type: WallSolid - components: - - pos: -21.5,21.5 - parent: 30 - type: Transform -- uid: 237 - type: WallSolid - components: - - pos: -21.5,24.5 - parent: 30 - type: Transform -- uid: 238 - type: WallSolid - components: - - pos: -23.5,21.5 - parent: 30 - type: Transform -- uid: 239 - type: MagazineRifle - components: - - pos: -41.470932,56.67169 - parent: 30 - type: Transform -- uid: 240 - type: WallSolid - components: - - pos: -24.5,22.5 - parent: 30 - type: Transform -- uid: 241 - type: WallSolid - components: - - pos: -24.5,23.5 - parent: 30 - type: Transform -- uid: 242 - type: WallSolid - components: - - pos: -24.5,24.5 - parent: 30 - type: Transform -- uid: 243 - type: WallSolid - components: - - pos: -23.5,24.5 - parent: 30 - type: Transform -- uid: 244 - type: WallSolid - components: - - pos: -22.5,18.5 - parent: 30 - type: Transform -- uid: 245 - type: WallSolid - components: - - pos: -23.5,18.5 - parent: 30 - type: Transform -- uid: 246 - type: WallSolid - components: - - pos: -28.5,18.5 - parent: 30 - type: Transform -- uid: 247 - type: WallSolid - components: - - pos: -24.5,18.5 - parent: 30 - type: Transform -- uid: 248 - type: WallSolid - components: - - pos: -29.5,16.5 - parent: 30 - type: Transform -- uid: 249 - type: WallSolid - components: - - pos: -25.5,18.5 - parent: 30 - type: Transform -- uid: 250 - type: WallSolid - components: - - pos: -26.5,18.5 - parent: 30 - type: Transform -- uid: 251 - type: WallSolid - components: - - pos: -29.5,15.5 - parent: 30 - type: Transform -- uid: 252 - type: AirlockMaintJanitorLocked - components: - - pos: -30.5,14.5 - parent: 30 - type: Transform -- uid: 253 - type: WallSolid - components: - - pos: -29.5,17.5 - parent: 30 - type: Transform -- uid: 254 - type: WallSolid - components: - - pos: -29.5,18.5 - parent: 30 - type: Transform -- uid: 255 - type: WallSolid - components: - - pos: -33.5,16.5 - parent: 30 - type: Transform -- uid: 256 - type: WallSolid - components: - - pos: -30.5,5.5 - parent: 30 - type: Transform -- uid: 257 - type: WallSolid - components: - - pos: -31.5,5.5 - parent: 30 - type: Transform -- uid: 258 - type: WallSolid - components: - - pos: -33.5,5.5 - parent: 30 - type: Transform -- uid: 259 - type: WallSolid - components: - - pos: -33.5,6.5 - parent: 30 - type: Transform -- uid: 260 - type: WallSolid - components: - - pos: -33.5,9.5 - parent: 30 - type: Transform -- uid: 261 - type: WallSolid - components: - - pos: -33.5,10.5 - parent: 30 - type: Transform -- uid: 262 - type: WallSolid - components: - - pos: -33.5,11.5 - parent: 30 - type: Transform -- uid: 263 - type: WallSolid - components: - - pos: -32.5,11.5 - parent: 30 - type: Transform -- uid: 264 - type: WallSolid - components: - - pos: -33.5,12.5 - parent: 30 - type: Transform -- uid: 265 - type: WallSolid - components: - - pos: -33.5,13.5 - parent: 30 - type: Transform -- uid: 266 - type: WallSolid - components: - - pos: -33.5,14.5 - parent: 30 - type: Transform -- uid: 267 - type: WallSolid - components: - - pos: -32.5,14.5 - parent: 30 - type: Transform -- uid: 268 - type: WallSolid - components: - - pos: -31.5,14.5 - parent: 30 - type: Transform -- uid: 269 - type: WallSolid - components: - - pos: -32.5,16.5 - parent: 30 - type: Transform -- uid: 270 - type: WallSolid - components: - - pos: -32.5,17.5 - parent: 30 - type: Transform -- uid: 271 - type: WallSolid - components: - - pos: -32.5,18.5 - parent: 30 - type: Transform -- uid: 272 - type: WallSolid - components: - - pos: -32.5,19.5 - parent: 30 - type: Transform -- uid: 273 - type: WallSolid - components: - - pos: -32.5,20.5 - parent: 30 - type: Transform -- uid: 274 - type: WallSolid - components: - - pos: -33.5,20.5 - parent: 30 - type: Transform -- uid: 275 - type: WallSolid - components: - - pos: -33.5,22.5 - parent: 30 - type: Transform -- uid: 276 - type: WallSolid - components: - - pos: -33.5,24.5 - parent: 30 - type: Transform -- uid: 277 - type: WallSolid - components: - - pos: -29.5,24.5 - parent: 30 - type: Transform -- uid: 278 - type: WallSolid - components: - - pos: -29.5,23.5 - parent: 30 - type: Transform -- uid: 279 - type: WallSolid - components: - - pos: -29.5,22.5 - parent: 30 - type: Transform -- uid: 280 - type: WallSolid - components: - - pos: -29.5,21.5 - parent: 30 - type: Transform -- uid: 281 - type: WallSolid - components: - - pos: -29.5,20.5 - parent: 30 - type: Transform -- uid: 282 - type: WallSolid - components: - - pos: -30.5,20.5 - parent: 30 - type: Transform -- uid: 283 - type: TableWood - components: - - pos: -32.5,22.5 - parent: 30 - type: Transform -- uid: 284 - type: WallSolid - components: - - pos: -28.5,21.5 - parent: 30 - type: Transform -- uid: 285 - type: AirlockMaintLocked - components: - - pos: -27.5,21.5 - parent: 30 - type: Transform -- uid: 286 - type: WallSolid - components: - - pos: -26.5,21.5 - parent: 30 - type: Transform -- uid: 287 - type: WallSolid - components: - - pos: -25.5,21.5 - parent: 30 - type: Transform -- uid: 288 - type: WallSolid - components: - - pos: -25.5,24.5 - parent: 30 - type: Transform -- uid: 289 - type: TintedWindow - components: - - pos: -30.5,24.5 - parent: 30 - type: Transform -- uid: 290 - type: TintedWindow - components: - - pos: -32.5,24.5 - parent: 30 - type: Transform -- uid: 291 - type: TintedWindow - components: - - pos: -33.5,23.5 - parent: 30 - type: Transform -- uid: 292 - type: TintedWindow - components: - - pos: -33.5,21.5 - parent: 30 - type: Transform -- uid: 293 - type: Window - components: - - pos: -28.5,24.5 - parent: 30 - type: Transform -- uid: 294 - type: Window - components: - - pos: -27.5,24.5 - parent: 30 - type: Transform -- uid: 295 - type: Window - components: - - pos: -18.5,11.5 - parent: 30 - type: Transform -- uid: 296 - type: Window - components: - - pos: -7.5,24.5 - parent: 30 - type: Transform -- uid: 297 - type: Window - components: - - pos: -8.5,24.5 - parent: 30 - type: Transform -- uid: 298 - type: Window - components: - - pos: -9.5,24.5 - parent: 30 - type: Transform -- uid: 299 - type: Window - components: - - pos: -10.5,24.5 - parent: 30 - type: Transform -- uid: 300 - type: Window - components: - - pos: -11.5,24.5 - parent: 30 - type: Transform -- uid: 301 - type: ReinforcedWindow - components: - - pos: 0.5,24.5 - parent: 30 - type: Transform -- uid: 302 - type: ReinforcedWindow - components: - - pos: -1.5,24.5 - parent: 30 - type: Transform -- uid: 303 - type: ReinforcedWindow - components: - - pos: -3.5,24.5 - parent: 30 - type: Transform -- uid: 304 - type: ReinforcedWindow - components: - - pos: 3.5,24.5 - parent: 30 - type: Transform -- uid: 305 - type: ReinforcedWindow - components: - - pos: 5.5,24.5 - parent: 30 - type: Transform -- uid: 306 - type: FirelockGlass - components: - - pos: -29.5,1.5 - parent: 30 - type: Transform -- uid: 307 - type: FirelockGlass - components: - - pos: -29.5,2.5 - parent: 30 - type: Transform -- uid: 308 - type: FirelockGlass - components: - - pos: -29.5,3.5 - parent: 30 - type: Transform -- uid: 309 - type: AirlockHydroGlassLocked - components: - - pos: -22.5,6.5 - parent: 30 - type: Transform -- uid: 310 - type: AirlockMaintHydroLocked - components: - - pos: -27.5,18.5 - parent: 30 - type: Transform -- uid: 311 - type: AirlockHydroGlassLocked - components: - - pos: -24.5,14.5 - parent: 30 - type: Transform -- uid: 312 - type: AirlockServiceGlassLocked - components: - - pos: -18.5,10.5 - parent: 30 - type: Transform -- uid: 313 - type: SolarPanel - components: - - pos: -72.5,54.5 - parent: 30 - type: Transform -- uid: 314 - type: AirlockKitchenGlassLocked - components: - - pos: -18.5,6.5 - parent: 30 - type: Transform -- uid: 315 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,9.5 - parent: 30 - type: Transform -- uid: 316 - type: FoodCondimentBottleEnzyme - components: - - pos: -15.547203,9.482101 - parent: 30 - type: Transform - - tags: [] - type: Tag -- uid: 317 - type: Grille - components: - - pos: -21.5,8.5 - parent: 30 - type: Transform -- uid: 318 - type: Bucket - components: - - pos: -24.461937,5.451811 - parent: 30 - type: Transform -- uid: 319 - type: ReinforcedWindow - components: - - pos: -22.5,5.5 - parent: 30 - type: Transform -- uid: 320 - type: FirelockGlass - components: - - pos: -20.5,8.5 - parent: 30 - type: Transform -- uid: 321 - type: TableReinforced - components: - - pos: -20.5,8.5 - parent: 30 - type: Transform -- uid: 322 - type: WindoorHydroponicsLocked - components: - - rot: 3.141592653589793 rad - pos: -20.5,8.5 - parent: 30 - type: Transform -- uid: 323 - type: Bucket - components: - - pos: -27.774437,12.342436 - parent: 30 - type: Transform -- uid: 324 - type: Grille - components: - - pos: -19.5,8.5 - parent: 30 - type: Transform -- uid: 325 - type: AirlockSecurityGlassLocked - components: - - pos: -18.5,0.5 - parent: 30 - type: Transform -- uid: 326 - type: Windoor - components: - - pos: -20.5,8.5 - parent: 30 - type: Transform -- uid: 327 - type: ReinforcedWindow - components: - - pos: -22.5,7.5 - parent: 30 - type: Transform -- uid: 328 - type: hydroponicsTray - components: - - pos: -19.5,12.5 - parent: 30 - type: Transform -- uid: 329 - type: hydroponicsTray - components: - - pos: -20.5,12.5 - parent: 30 - type: Transform -- uid: 330 - type: hydroponicsTray - components: - - pos: -21.5,12.5 - parent: 30 - type: Transform -- uid: 331 - type: hydroponicsTray - components: - - pos: -25.5,5.5 - parent: 30 - type: Transform -- uid: 332 - type: hydroponicsTray - components: - - pos: -26.5,5.5 - parent: 30 - type: Transform -- uid: 333 - type: hydroponicsTray - components: - - pos: -27.5,5.5 - parent: 30 - type: Transform -- uid: 334 - type: hydroponicsTray - components: - - pos: -28.5,5.5 - parent: 30 - type: Transform -- uid: 335 - type: hydroponicsTray - components: - - pos: -28.5,7.5 - parent: 30 - type: Transform -- uid: 336 - type: hydroponicsTray - components: - - pos: -28.5,8.5 - parent: 30 - type: Transform -- uid: 337 - type: hydroponicsTray - components: - - pos: -28.5,9.5 - parent: 30 - type: Transform -- uid: 338 - type: hydroponicsTray - components: - - pos: -28.5,10.5 - parent: 30 - type: Transform -- uid: 339 - type: hydroponicsTray - components: - - pos: -28.5,11.5 - parent: 30 - type: Transform -- uid: 340 - type: hydroponicsTray - components: - - pos: -28.5,13.5 - parent: 30 - type: Transform -- uid: 341 - type: hydroponicsTray - components: - - pos: -27.5,13.5 - parent: 30 - type: Transform -- uid: 342 - type: hydroponicsTray - components: - - pos: -26.5,13.5 - parent: 30 - type: Transform -- uid: 343 - type: DisposalUnit - components: - - pos: -25.5,13.5 - parent: 30 - type: Transform -- uid: 344 - type: DisposalUnit - components: - - pos: -13.5,5.5 - parent: 30 - type: Transform -- uid: 345 - type: DisposalUnit - components: - - pos: 0.5,15.5 - parent: 30 - type: Transform -- uid: 346 - type: DisposalUnit - components: - - pos: 6.5,6.5 - parent: 30 - type: Transform -- uid: 347 - type: DisposalUnit - components: - - pos: 4.5,12.5 - parent: 30 - type: Transform -- uid: 348 - type: Grille - components: - - pos: -18.5,11.5 - parent: 30 - type: Transform -- uid: 349 - type: Grille - components: - - pos: -22.5,5.5 - parent: 30 - type: Transform -- uid: 350 - type: Grille - components: - - pos: -22.5,7.5 - parent: 30 - type: Transform -- uid: 351 - type: WallSolid - components: - - pos: 10.5,-12.5 - parent: 30 - type: Transform -- uid: 352 - type: WallSolid - components: - - pos: 6.5,-17.5 - parent: 30 - type: Transform -- uid: 353 - type: WallSolid - components: - - pos: 10.5,-16.5 - parent: 30 - type: Transform -- uid: 354 - type: WallSolid - components: - - pos: 6.5,-12.5 - parent: 30 - type: Transform -- uid: 355 - type: WallSolid - components: - - pos: 6.5,-15.5 - parent: 30 - type: Transform -- uid: 356 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-28.5 - parent: 30 - type: Transform -- uid: 357 - type: Grille - components: - - pos: -17.5,4.5 - parent: 30 - type: Transform -- uid: 358 - type: Grille - components: - - pos: -16.5,4.5 - parent: 30 - type: Transform -- uid: 359 - type: Grille - components: - - pos: -15.5,4.5 - parent: 30 - type: Transform -- uid: 360 - type: Grille - components: - - pos: -14.5,4.5 - parent: 30 - type: Transform -- uid: 361 - type: Grille - components: - - pos: -13.5,4.5 - parent: 30 - type: Transform -- uid: 362 - type: Grille - components: - - pos: -11.5,0.5 - parent: 30 - type: Transform -- uid: 363 - type: Grille - components: - - pos: -7.5,0.5 - parent: 30 - type: Transform -- uid: 364 - type: Grille - components: - - pos: -6.5,-0.5 - parent: 30 - type: Transform -- uid: 365 - type: Grille - components: - - pos: -5.5,-0.5 - parent: 30 - type: Transform -- uid: 366 - type: Grille - components: - - pos: -4.5,-1.5 - parent: 30 - type: Transform -- uid: 367 - type: Grille - components: - - pos: -5.5,5.5 - parent: 30 - type: Transform -- uid: 368 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: -17.5,16.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 369 - type: Grille - components: - - pos: -9.5,5.5 - parent: 30 - type: Transform -- uid: 370 - type: Grille - components: - - pos: -11.5,5.5 - parent: 30 - type: Transform -- uid: 371 - type: Grille - components: - - pos: 0.5,5.5 - parent: 30 - type: Transform -- uid: 372 - type: Grille - components: - - pos: 1.5,5.5 - parent: 30 - type: Transform -- uid: 373 - type: Grille - components: - - pos: -0.5,-1.5 - parent: 30 - type: Transform -- uid: 374 - type: Grille - components: - - pos: 0.5,-0.5 - parent: 30 - type: Transform -- uid: 375 - type: Grille - components: - - pos: 1.5,-0.5 - parent: 30 - type: Transform -- uid: 376 - type: Grille - components: - - pos: 2.5,0.5 - parent: 30 - type: Transform -- uid: 377 - type: Grille - components: - - pos: 6.5,0.5 - parent: 30 - type: Transform -- uid: 378 - type: TableReinforced - components: - - pos: -10.5,6.5 - parent: 30 - type: Transform -- uid: 379 - type: RubberStampApproved - components: - - pos: 2.323793,32.782013 - parent: 30 - type: Transform -- uid: 380 - type: BoxFolderBlack - components: - - pos: 2.948793,31.313263 - parent: 30 - type: Transform -- uid: 381 - type: SignalButton - components: - - pos: -1.5,22.5 - parent: 30 - type: Transform -- uid: 382 - type: TableReinforced - components: - - pos: -10.5,11.5 - parent: 30 - type: Transform -- uid: 383 - type: TableReinforced - components: - - pos: -10.5,8.5 - parent: 30 - type: Transform -- uid: 384 - type: SignalButton - components: - - pos: -12.5,12.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 390 - - port: Toggle - uid: 392 - - port: Toggle - uid: 391 - - port: Toggle - uid: 394 - - port: Toggle - uid: 393 - - port: Toggle - uid: 395 - type: SignalTransmitter -- uid: 385 - type: SignalButton - components: - - pos: -43.5,10.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1079 - - port: Toggle - uid: 1078 - - port: Toggle - uid: 1083 - - port: Toggle - uid: 1082 - - port: Toggle - uid: 1080 - - port: Toggle - uid: 1076 - - port: Toggle - uid: 1081 - type: SignalTransmitter -- uid: 386 - type: BoxFolderRed - components: - - pos: 2.808168,31.438263 - parent: 30 - type: Transform -- uid: 387 - type: TableReinforced - components: - - pos: -10.5,9.5 - parent: 30 - type: Transform -- uid: 388 - type: TableReinforced - components: - - pos: -10.5,10.5 - parent: 30 - type: Transform -- uid: 389 - type: TableReinforced - components: - - pos: -10.5,7.5 - parent: 30 - type: Transform -- uid: 390 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -10.5,11.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 384 - type: SignalReceiver -- uid: 391 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -10.5,9.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 384 - type: SignalReceiver -- uid: 392 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -10.5,10.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 384 - type: SignalReceiver -- uid: 393 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -10.5,7.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 384 - type: SignalReceiver -- uid: 394 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -10.5,8.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 384 - type: SignalReceiver -- uid: 395 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -10.5,6.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 384 - type: SignalReceiver -- uid: 396 - type: Stool - components: - - pos: -21.5,9.5 - parent: 30 - type: Transform -- uid: 397 - type: Stool - components: - - pos: -20.5,9.5 - parent: 30 - type: Transform -- uid: 398 - type: Stool - components: - - pos: -19.5,9.5 - parent: 30 - type: Transform -- uid: 399 - type: WaterTankHighCapacity - components: - - pos: -23.5,5.5 - parent: 30 - type: Transform -- uid: 400 - type: SinkWide - components: - - pos: -23.5,13.5 - parent: 30 - type: Transform -- uid: 401 - type: SinkWide - components: - - pos: -12.5,11.5 - parent: 30 - type: Transform -- uid: 402 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -28.5,6.5 - parent: 30 - type: Transform -- uid: 403 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -28.5,12.5 - parent: 30 - type: Transform -- uid: 404 - type: TableWood - components: - - pos: -22.5,12.5 - parent: 30 - type: Transform -- uid: 405 - type: TableWood - components: - - pos: -22.5,13.5 - parent: 30 - type: Transform -- uid: 406 - type: APCBasic - components: - - pos: -26.5,14.5 - parent: 30 - type: Transform -- uid: 407 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -6.5,13.5 - parent: 30 - type: Transform -- uid: 408 - type: CableApcExtension - components: - - pos: -7.5,11.5 - parent: 30 - type: Transform -- uid: 409 - type: APCBasic - components: - - pos: -2.5,18.5 - parent: 30 - type: Transform - - startingCharge: 12000 - type: Battery -- uid: 410 - type: CableApcExtension - components: - - pos: -14.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 411 - type: APCBasic - components: - - pos: -26.5,21.5 - parent: 30 - type: Transform -- uid: 412 - type: APCBasic - components: - - pos: -30.5,11.5 - parent: 30 - type: Transform -- uid: 413 - type: VendingMachineSeeds - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,10.5 - parent: 30 - type: Transform -- uid: 414 - type: VendingMachineNutri - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,9.5 - parent: 30 - type: Transform -- uid: 415 - type: SeedExtractor - components: - - pos: -25.5,8.5 - parent: 30 - type: Transform -- uid: 416 - type: TableGlass - components: - - pos: -25.5,11.5 - parent: 30 - type: Transform -- uid: 417 - type: KitchenReagentGrinder - components: - - pos: -22.5,13.5 - parent: 30 - type: Transform -- uid: 418 - type: VendingMachineHydrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -23.5,17.5 - parent: 30 - type: Transform -- uid: 419 - type: LockerBotanistFilled - components: - - pos: -24.5,17.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 420 - type: LockerBotanistFilled - components: - - pos: -25.5,17.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 421 - type: LockerBotanistFilled - components: - - pos: -26.5,17.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 422 - type: HydroponicsToolHatchet - components: - - pos: -22.520357,15.649939 - parent: 30 - type: Transform -- uid: 423 - type: ClothingHeadHatTrucker - components: - - pos: -22.520357,17.056189 - parent: 30 - type: Transform -- uid: 424 - type: TableWood - components: - - pos: -22.5,17.5 - parent: 30 - type: Transform -- uid: 425 - type: Grille - components: - - pos: -7.5,-5.5 - parent: 30 - type: Transform -- uid: 426 - type: TableReinforced - components: - - pos: -10.5,-8.5 - parent: 30 - type: Transform -- uid: 427 - type: AirlockMaintLocked - components: - - pos: -33.5,15.5 - parent: 30 - type: Transform -- uid: 428 - type: AirlockMaintLocked - components: - - pos: -14.5,24.5 - parent: 30 - type: Transform -- uid: 429 - type: AirlockMaintLocked - components: - - pos: 7.5,17.5 - parent: 30 - type: Transform -- uid: 430 - type: WallSolid - components: - - pos: -14.5,13.5 - parent: 30 - type: Transform -- uid: 431 - type: WallSolid - components: - - pos: -14.5,14.5 - parent: 30 - type: Transform -- uid: 432 - type: WallSolid - components: - - pos: -14.5,15.5 - parent: 30 - type: Transform -- uid: 433 - type: WallSolid - components: - - pos: -14.5,16.5 - parent: 30 - type: Transform -- uid: 434 - type: HydroponicsToolMiniHoe - components: - - pos: -25.483442,11.482555 - parent: 30 - type: Transform -- uid: 435 - type: HydroponicsToolSpade - components: - - pos: -25.499067,11.52943 - parent: 30 - type: Transform -- uid: 436 - type: TableWood - components: - - pos: -22.5,16.5 - parent: 30 - type: Transform -- uid: 437 - type: TableWood - components: - - pos: -22.5,15.5 - parent: 30 - type: Transform -- uid: 438 - type: ChairOfficeDark - components: - - pos: -23.5,16.5 - parent: 30 - type: Transform -- uid: 439 - type: HandLabeler - components: - - pos: -14.646066,5.3502407 - parent: 30 - type: Transform -- uid: 440 - type: FoodCondimentBottleEnzyme - components: - - pos: -12.484703,7.8571014 - parent: 30 - type: Transform - - tags: [] - type: Tag -- uid: 441 - type: ClothingHeadHatPumpkin - components: - - pos: -28.699547,16.50104 - parent: 30 - type: Transform -- uid: 442 - type: CrateHydroponicsTools - components: - - pos: -28.5,17.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 443 - type: AirlockMaintKitchenLocked - components: - - pos: -19.5,17.5 - parent: 30 - type: Transform -- uid: 444 - type: BoxBeanbag - components: - - pos: -11.450353,19.462812 - parent: 30 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 445 - type: WindoorCommandLocked - components: - - pos: -13.5,16.5 - parent: 30 - type: Transform -- uid: 446 - type: WallSolid - components: - - pos: -13.5,18.5 - parent: 30 - type: Transform -- uid: 447 - type: WallSolid - components: - - pos: -14.5,17.5 - parent: 30 - type: Transform -- uid: 448 - type: DrinkMilkCarton - components: - - pos: -48.41462,63.788986 - parent: 30 - type: Transform -- uid: 449 - type: Sink - components: - - pos: -11.5,14.5 - parent: 30 - type: Transform -- uid: 450 - type: TableWood - components: - - pos: -11.5,19.5 - parent: 30 - type: Transform -- uid: 451 - type: LockerBoozeFilled - components: - - pos: -8.5,19.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 452 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,17.5 - parent: 30 - type: Transform -- uid: 453 - type: LockerBoozeFilled - components: - - pos: -9.5,19.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 454 - type: SpawnPointBartender - components: - - pos: -10.5,17.5 - parent: 30 - type: Transform -- uid: 455 - type: AirlockBarLocked - components: - - pos: -10.5,15.5 - parent: 30 - type: Transform -- uid: 456 - type: AirlockGlass - components: - - pos: -38.5,13.5 - parent: 30 - type: Transform -- uid: 457 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -10.5,19.5 - parent: 30 - type: Transform -- uid: 458 - type: ComfyChair - components: - - pos: -10.5,18.5 - parent: 30 - type: Transform -- uid: 459 - type: AirlockKitchenLocked - components: - - pos: -13.5,12.5 - parent: 30 - type: Transform -- uid: 460 - type: AirlockFreezerKitchenHydroLocked - components: - - pos: -16.5,12.5 - parent: 30 - type: Transform -- uid: 461 - type: AirlockServiceLocked - components: - - pos: -7.5,12.5 - parent: 30 - type: Transform -- uid: 462 - type: AirlockServiceLocked - components: - - pos: -6.5,14.5 - parent: 30 - type: Transform -- uid: 463 - type: Table - components: - - pos: -15.5,11.5 - parent: 30 - type: Transform -- uid: 464 - type: Table - components: - - pos: -14.5,11.5 - parent: 30 - type: Transform -- uid: 465 - type: Table - components: - - pos: -12.5,9.5 - parent: 30 - type: Transform -- uid: 466 - type: Table - components: - - pos: -12.5,8.5 - parent: 30 - type: Transform -- uid: 467 - type: Table - components: - - pos: -12.5,7.5 - parent: 30 - type: Transform -- uid: 468 - type: Table - components: - - pos: -14.5,9.5 - parent: 30 - type: Transform -- uid: 469 - type: Table - components: - - pos: -15.5,9.5 - parent: 30 - type: Transform -- uid: 470 - type: Table - components: - - pos: -15.5,8.5 - parent: 30 - type: Transform -- uid: 471 - type: Table - components: - - pos: -15.5,7.5 - parent: 30 - type: Transform -- uid: 472 - type: Table - components: - - pos: -14.5,7.5 - parent: 30 - type: Transform -- uid: 473 - type: Table - components: - - pos: -14.5,8.5 - parent: 30 - type: Transform -- uid: 474 - type: VendingMachineDinnerware - components: - - flags: SessionSpecific - name: Dinnerware - type: MetaData - - pos: -17.5,11.5 - parent: 30 - type: Transform -- uid: 475 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 476 - type: LockerFreezer - components: - - pos: -15.5,13.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 234.99968 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 477 - type: LockerFreezer - components: - - pos: -15.5,14.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 234.99968 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 478 - type: KitchenSpike - components: - - pos: -20.5,16.5 - parent: 30 - type: Transform -- uid: 479 - type: VendingMachineChefDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,14.5 - parent: 30 - type: Transform -- uid: 480 - type: SpawnPointChef - components: - - pos: -16.5,8.5 - parent: 30 - type: Transform -- uid: 481 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -15.5,16.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 482 - type: GasThermoMachineFreezer - components: - - pos: -16.5,17.5 - parent: 30 - type: Transform -- uid: 483 - type: KitchenMicrowave - components: - - pos: -14.5,11.5 - parent: 30 - type: Transform -- uid: 484 - type: KitchenMicrowave - components: - - pos: -15.5,11.5 - parent: 30 - type: Transform -- uid: 485 - type: KitchenReagentGrinder - components: - - pos: -14.5,9.5 - parent: 30 - type: Transform -- uid: 486 - type: KitchenReagentGrinder - components: - - pos: -12.5,9.5 - parent: 30 - type: Transform -- uid: 487 - type: Rack - components: - - pos: -14.5,5.5 - parent: 30 - type: Transform -- uid: 488 - type: VendingMachineChefvend - components: - - flags: SessionSpecific - type: MetaData - - pos: -15.5,5.5 - parent: 30 - type: Transform -- uid: 489 - type: SpawnPointResearchAssistant - components: - - pos: 21.5,11.5 - parent: 30 - type: Transform -- uid: 490 - type: BoxBeaker - components: - - pos: -14.458668,5.5094466 - parent: 30 - type: Transform -- uid: 491 - type: FoodTomato - components: - - pos: -14.547203,7.8102264 - parent: 30 - type: Transform -- uid: 492 - type: FoodPieBananaCream - components: - - pos: -15.515953,8.716476 - parent: 30 - type: Transform -- uid: 493 - type: ReagentContainerFlourSmall - components: - - pos: -15.094829,9.325851 - parent: 30 - type: Transform - - tags: [] - type: Tag -- uid: 494 - type: CrateNPCCow - components: - - pos: -16.5,5.5 - parent: 30 - type: Transform - - air: - volume: 800 - immutable: False - temperature: 293.14987 - moles: - - 13.772371 - - 51.81035 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 495 - type: FoodMeat - components: - - pos: -19.465357,15.50363 - parent: 30 - type: Transform -- uid: 496 - type: FoodMeat - components: - - pos: -18.762232,16.25363 - parent: 30 - type: Transform -- uid: 497 - type: FoodMeat - components: - - pos: -20.324732,16.206755 - parent: 30 - type: Transform -- uid: 498 - type: ButchCleaver - components: - - pos: -15.949732,15.31613 - parent: 30 - type: Transform -- uid: 499 - type: MonkeyCube - components: - - pos: -19.543482,14.363005 - parent: 30 - type: Transform -- uid: 500 - type: HydroponicsToolScythe - components: - - pos: -22.473482,15.556189 - parent: 30 - type: Transform -- uid: 501 - type: AirlockMaintBarLocked - components: - - pos: -7.5,18.5 - parent: 30 - type: Transform -- uid: 502 - type: AirlockMaintBarLocked - components: - - pos: -5.5,16.5 - parent: 30 - type: Transform -- uid: 503 - type: SpawnPointBotanist - components: - - pos: -25.5,16.5 - parent: 30 - type: Transform -- uid: 504 - type: SpawnPointBotanist - components: - - pos: -26.5,16.5 - parent: 30 - type: Transform -- uid: 505 - type: TableReinforced - components: - - pos: -5.5,12.5 - parent: 30 - type: Transform -- uid: 506 - type: TableReinforced - components: - - pos: -4.5,12.5 - parent: 30 - type: Transform -- uid: 507 - type: TableReinforced - components: - - pos: -3.5,12.5 - parent: 30 - type: Transform -- uid: 508 - type: TableReinforced - components: - - pos: -2.5,12.5 - parent: 30 - type: Transform -- uid: 509 - type: TableReinforced - components: - - pos: -1.5,12.5 - parent: 30 - type: Transform -- uid: 510 - type: TableReinforced - components: - - pos: -0.5,12.5 - parent: 30 - type: Transform -- uid: 511 - type: TableReinforced - components: - - pos: 0.5,12.5 - parent: 30 - type: Transform -- uid: 512 - type: soda_dispenser - components: - - pos: -2.5,15.5 - parent: 30 - type: Transform -- uid: 513 - type: TableWood - components: - - pos: -2.5,15.5 - parent: 30 - type: Transform -- uid: 514 - type: BoozeDispenser - components: - - pos: -1.5,15.5 - parent: 30 - type: Transform -- uid: 515 - type: TableWood - components: - - pos: -4.5,15.5 - parent: 30 - type: Transform -- uid: 516 - type: TableWood - components: - - pos: -3.5,15.5 - parent: 30 - type: Transform -- uid: 517 - type: TableWood - components: - - pos: -1.5,15.5 - parent: 30 - type: Transform -- uid: 518 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,15.5 - parent: 30 - type: Transform -- uid: 519 - type: WindowReinforcedDirectional - components: - - pos: -54.5,17.5 - parent: 30 - type: Transform -- uid: 520 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -9.5,7.5 - parent: 30 - type: Transform -- uid: 521 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -9.5,8.5 - parent: 30 - type: Transform -- uid: 522 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -9.5,9.5 - parent: 30 - type: Transform -- uid: 523 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -9.5,10.5 - parent: 30 - type: Transform -- uid: 524 - type: PottedPlantRandom - components: - - pos: -9.5,11.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 525 - type: AcousticGuitarInstrument - components: - - pos: -0.39634466,12.638008 - parent: 30 - type: Transform -- uid: 526 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -4.5,11.5 - parent: 30 - type: Transform -- uid: 527 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -3.5,11.5 - parent: 30 - type: Transform -- uid: 528 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -2.5,11.5 - parent: 30 - type: Transform -- uid: 529 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -1.5,11.5 - parent: 30 - type: Transform -- uid: 530 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -0.5,11.5 - parent: 30 - type: Transform -- uid: 531 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -14.5,21.5 - parent: 30 - type: Transform -- uid: 532 - type: AirlockJanitorLocked - components: - - name: Janitor's Closet - type: MetaData - - pos: -32.5,5.5 - parent: 30 - type: Transform -- uid: 533 - type: AirlockJanitorLocked - components: - - pos: -31.5,11.5 - parent: 30 - type: Transform -- uid: 534 - type: DisposalUnit - components: - - pos: -32.5,10.5 - parent: 30 - type: Transform -- uid: 535 - type: WaterTankFull - components: - - pos: -30.5,10.5 - parent: 30 - type: Transform -- uid: 536 - type: Table - components: - - pos: -30.5,6.5 - parent: 30 - type: Transform -- uid: 537 - type: Table - components: - - pos: -31.5,6.5 - parent: 30 - type: Transform -- uid: 538 - type: ClosetL3JanitorFilled - components: - - pos: -30.5,9.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 539 - type: ClosetJanitorFilled - components: - - pos: -32.5,13.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 540 - type: VendingMachineJaniDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -30.5,8.5 - parent: 30 - type: Transform -- uid: 541 - type: CrateServiceJanitorialSupplies - components: - - pos: -32.5,12.5 - parent: 30 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 542 - type: ShuttersNormal - components: - - pos: -33.5,8.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 544 - type: SignalReceiver -- uid: 543 - type: ShuttersNormal - components: - - pos: -33.5,7.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 544 - type: SignalReceiver -- uid: 544 - type: SignalButton - components: - - pos: -32.5,11.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 542 - - port: Toggle - uid: 543 - type: SignalTransmitter -- uid: 545 - type: Multitool - components: - - pos: -30.576199,6.5185356 - parent: 30 - type: Transform -- uid: 546 - type: MopItem - components: - - pos: -31.445902,6.617443 - parent: 30 - type: Transform -- uid: 547 - type: Bucket - components: - - pos: -31.602152,6.617443 - parent: 30 - type: Transform -- uid: 548 - type: MopBucket - components: - - pos: -31.607449,13.581036 - parent: 30 - type: Transform -- uid: 549 - type: Bed - components: - - pos: -30.5,12.5 - parent: 30 - type: Transform -- uid: 550 - type: BedsheetPurple - components: - - pos: -30.5,12.5 - parent: 30 - type: Transform -- uid: 551 - type: SprayBottleSpaceCleaner - components: - - pos: -31.591824,6.6147656 - parent: 30 - type: Transform -- uid: 552 - type: SprayBottleSpaceCleaner - components: - - pos: -31.341824,6.5991406 - parent: 30 - type: Transform -- uid: 553 - type: SprayBottleSpaceCleaner - components: - - pos: -31.091824,6.5991406 - parent: 30 - type: Transform -- uid: 554 - type: CrowbarRed - components: - - pos: -30.479176,6.478113 - parent: 30 - type: Transform -- uid: 555 - type: PianoInstrument - components: - - rot: 1.5707963267948966 rad - pos: -5.5,6.5 - parent: 30 - type: Transform -- uid: 556 - type: TableWood - components: - - pos: 0.5,6.5 - parent: 30 - type: Transform -- uid: 557 - type: TableWood - components: - - pos: 2.5,9.5 - parent: 30 - type: Transform -- uid: 558 - type: TableWood - components: - - pos: -4.5,8.5 - parent: 30 - type: Transform -- uid: 559 - type: TableWood - components: - - pos: -4.5,9.5 - parent: 30 - type: Transform -- uid: 560 - type: TableWood - components: - - pos: -0.5,8.5 - parent: 30 - type: Transform -- uid: 561 - type: TableWood - components: - - pos: -0.5,9.5 - parent: 30 - type: Transform -- uid: 562 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -5.5,8.5 - parent: 30 - type: Transform -- uid: 563 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -5.5,9.5 - parent: 30 - type: Transform -- uid: 564 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -3.5,9.5 - parent: 30 - type: Transform -- uid: 565 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -3.5,8.5 - parent: 30 - type: Transform -- uid: 566 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -1.5,8.5 - parent: 30 - type: Transform -- uid: 567 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -1.5,9.5 - parent: 30 - type: Transform -- uid: 568 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 0.5,9.5 - parent: 30 - type: Transform -- uid: 569 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 0.5,8.5 - parent: 30 - type: Transform -- uid: 570 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 30 - type: Transform -- uid: 571 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -0.5,6.5 - parent: 30 - type: Transform -- uid: 572 - type: TableWood - components: - - pos: 39.5,40.5 - parent: 30 - type: Transform -- uid: 573 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -6.5,6.5 - parent: 30 - type: Transform -- uid: 574 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 2.5,8.5 - parent: 30 - type: Transform -- uid: 575 - type: ChairWood - components: - - pos: 2.5,10.5 - parent: 30 - type: Transform -- uid: 576 - type: BarSign - components: - - desc: Don't drink and swim. - name: The Drunk Carp - type: MetaData - - pos: -7.5,5.5 - parent: 30 - type: Transform - - current: TheDrunkCarp - type: BarSign -- uid: 577 - type: AirlockGlass - components: - - pos: -3.5,4.5 - parent: 30 - type: Transform -- uid: 578 - type: AirlockGlass - components: - - pos: -2.5,4.5 - parent: 30 - type: Transform -- uid: 579 - type: AirlockGlass - components: - - pos: -1.5,4.5 - parent: 30 - type: Transform -- uid: 580 - type: ShuttersNormalOpen - components: - - pos: -3.5,5.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver -- uid: 581 - type: ShuttersNormalOpen - components: - - pos: -2.5,5.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver -- uid: 582 - type: ShuttersNormalOpen - components: - - pos: -1.5,5.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver -- uid: 583 - type: SignalButton - components: - - pos: -4.5,5.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 580 - - port: Toggle - uid: 581 - - port: Toggle - uid: 582 - - port: Toggle - uid: 5733 - - port: Toggle - uid: 6945 - - port: Toggle - uid: 4378 - - port: Toggle - uid: 4915 - - port: Toggle - uid: 6929 - - port: Toggle - uid: 4361 - - port: Toggle - uid: 4376 - - port: Toggle - uid: 3405 - type: SignalTransmitter -- uid: 584 - type: Table - components: - - pos: -6.5,4.5 - parent: 30 - type: Transform -- uid: 585 - type: Table - components: - - pos: -10.5,4.5 - parent: 30 - type: Transform -- uid: 586 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -11.5,4.5 - parent: 30 - type: Transform -- uid: 587 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -9.5,4.5 - parent: 30 - type: Transform -- uid: 588 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 30 - type: Transform -- uid: 589 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -5.5,4.5 - parent: 30 - type: Transform -- uid: 590 - type: Chair - components: - - pos: 2.5,4.5 - parent: 30 - type: Transform -- uid: 591 - type: Chair - components: - - pos: 1.5,4.5 - parent: 30 - type: Transform -- uid: 592 - type: AirlockGlass - components: - - pos: 4.5,5.5 - parent: 30 - type: Transform -- uid: 593 - type: AirlockGlass - components: - - pos: 5.5,5.5 - parent: 30 - type: Transform -- uid: 594 - type: AirlockGlass - components: - - pos: 7.5,7.5 - parent: 30 - type: Transform -- uid: 595 - type: AirlockGlass - components: - - pos: 7.5,8.5 - parent: 30 - type: Transform -- uid: 596 - type: FirelockEdge - components: - - pos: 4.5,6.5 - parent: 30 - type: Transform -- uid: 597 - type: FirelockEdge - components: - - pos: 5.5,6.5 - parent: 30 - type: Transform -- uid: 598 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 6.5,7.5 - parent: 30 - type: Transform -- uid: 599 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 30 - type: Transform -- uid: 600 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -3.5,3.5 - parent: 30 - type: Transform -- uid: 601 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -2.5,3.5 - parent: 30 - type: Transform -- uid: 602 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -1.5,3.5 - parent: 30 - type: Transform -- uid: 603 - type: PottedPlantRandom - components: - - pos: 0.5,4.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 604 - type: SignDirectionalMed - components: - - rot: -1.5707963267948966 rad - pos: 7.5,5.5 - parent: 30 - type: Transform -- uid: 605 - type: SignDirectionalSci - components: - - rot: 3.141592653589793 rad - pos: 7.5216503,5.7286544 - parent: 30 - type: Transform -- uid: 606 - type: SignDirectionalEng - components: - - pos: 7.501919,5.259619 - parent: 30 - type: Transform -- uid: 607 - type: PosterLegitCohibaRobustoAd - components: - - pos: 7.5,6.5 - parent: 30 - type: Transform -- uid: 608 - type: ClothingHeadHatBowlerHat - components: - - pos: 1.4857011,4.4580336 - parent: 30 - type: Transform -- uid: 609 - type: Cigarette - components: - - pos: 2.501326,4.4892836 - parent: 30 - type: Transform -- uid: 610 - type: FoodDonutPlain - components: - - pos: -6.420653,4.663368 - parent: 30 - type: Transform -- uid: 611 - type: PackPaperRollingFilters - components: - - pos: -10.50065,4.5517836 - parent: 30 - type: Transform -- uid: 612 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: -4.5139136,4.737153 - parent: 30 - type: Transform -- uid: 613 - type: SignDirectionalEng - components: - - pos: -4.4997187,4.2684793 - parent: 30 - type: Transform -- uid: 614 - type: SignDirectionalSupply - components: - - pos: -4.5,4.5 - parent: 30 - type: Transform -- uid: 615 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: -18.5,4.5 - parent: 30 - type: Transform -- uid: 616 - type: SignDirectionalSupply - components: - - rot: 1.5707963267948966 rad - pos: -18.495691,4.2684793 - parent: 30 - type: Transform -- uid: 617 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: -18.495691,4.7372293 - parent: 30 - type: Transform -- uid: 618 - type: SignDirectionalEvac - components: - - rot: -1.5707963267948966 rad - pos: -22.5,4.5 - parent: 30 - type: Transform -- uid: 619 - type: SignHydro1 - components: - - pos: -20.5,13.5 - parent: 30 - type: Transform -- uid: 620 - type: ExtinguisherCabinetFilled - components: - - pos: -12.5,4.5 - parent: 30 - type: Transform -- uid: 621 - type: ExtinguisherCabinetFilled - components: - - pos: -29.5,6.5 - parent: 30 - type: Transform -- uid: 622 - type: ExtinguisherCabinetFilled - components: - - pos: -14.5,14.5 - parent: 30 - type: Transform -- uid: 623 - type: ExtinguisherCabinetFilled - components: - - pos: -14.5,16.5 - parent: 30 - type: Transform -- uid: 624 - type: ExtinguisherCabinetFilled - components: - - pos: -6.5,12.5 - parent: 30 - type: Transform -- uid: 625 - type: ExtinguisherCabinetFilled - components: - - pos: 1.5,12.5 - parent: 30 - type: Transform -- uid: 626 - type: Carpet - components: - - pos: 0.5,8.5 - parent: 30 - type: Transform -- uid: 627 - type: Carpet - components: - - pos: 0.5,9.5 - parent: 30 - type: Transform -- uid: 628 - type: Carpet - components: - - pos: -0.5,9.5 - parent: 30 - type: Transform -- uid: 629 - type: Carpet - components: - - pos: -0.5,8.5 - parent: 30 - type: Transform -- uid: 630 - type: Carpet - components: - - pos: -1.5,8.5 - parent: 30 - type: Transform -- uid: 631 - type: Carpet - components: - - pos: -1.5,9.5 - parent: 30 - type: Transform -- uid: 632 - type: Carpet - components: - - pos: -3.5,8.5 - parent: 30 - type: Transform -- uid: 633 - type: Carpet - components: - - pos: -3.5,9.5 - parent: 30 - type: Transform -- uid: 634 - type: Carpet - components: - - pos: -4.5,9.5 - parent: 30 - type: Transform -- uid: 635 - type: Carpet - components: - - pos: -4.5,8.5 - parent: 30 - type: Transform -- uid: 636 - type: Carpet - components: - - pos: -5.5,8.5 - parent: 30 - type: Transform -- uid: 637 - type: Carpet - components: - - pos: -5.5,9.5 - parent: 30 - type: Transform -- uid: 638 - type: CarpetGreen - components: - - pos: 5.5,9.5 - parent: 30 - type: Transform -- uid: 639 - type: CarpetGreen - components: - - pos: 4.5,10.5 - parent: 30 - type: Transform -- uid: 640 - type: CarpetGreen - components: - - pos: 4.5,9.5 - parent: 30 - type: Transform -- uid: 641 - type: CarpetGreen - components: - - pos: 5.5,10.5 - parent: 30 - type: Transform -- uid: 642 - type: CarpetGreen - components: - - pos: 6.5,10.5 - parent: 30 - type: Transform -- uid: 643 - type: CarpetGreen - components: - - pos: 6.5,9.5 - parent: 30 - type: Transform -- uid: 644 - type: PottedPlantRandom - components: - - pos: 1.5,11.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 645 - type: FirelockGlass - components: - - pos: -5.5,12.5 - parent: 30 - type: Transform -- uid: 646 - type: FirelockGlass - components: - - pos: -4.5,12.5 - parent: 30 - type: Transform -- uid: 647 - type: FirelockGlass - components: - - pos: -3.5,12.5 - parent: 30 - type: Transform -- uid: 648 - type: FirelockGlass - components: - - pos: -2.5,12.5 - parent: 30 - type: Transform -- uid: 649 - type: FirelockGlass - components: - - pos: -1.5,12.5 - parent: 30 - type: Transform -- uid: 650 - type: FirelockGlass - components: - - pos: -0.5,12.5 - parent: 30 - type: Transform -- uid: 651 - type: FirelockGlass - components: - - pos: 0.5,12.5 - parent: 30 - type: Transform -- uid: 652 - type: AirlockTheatreLocked - components: - - name: Clown Room - type: MetaData - - pos: 2.5,12.5 - parent: 30 - type: Transform -- uid: 653 - type: AirlockMaintTheatreLocked - components: - - pos: 6.5,15.5 - parent: 30 - type: Transform -- uid: 654 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: 4.5,15.5 - parent: 30 - type: Transform -- uid: 655 - type: Dresser - components: - - pos: 3.5,15.5 - parent: 30 - type: Transform -- uid: 656 - type: TableWood - components: - - pos: 2.5,15.5 - parent: 30 - type: Transform -- uid: 657 - type: FoodBanana - components: - - pos: 2.2354794,15.486414 - parent: 30 - type: Transform -- uid: 658 - type: TableWood - components: - - pos: 5.5,12.5 - parent: 30 - type: Transform -- uid: 659 - type: TableWood - components: - - pos: 6.5,12.5 - parent: 30 - type: Transform -- uid: 660 - type: Chair - components: - - pos: 6.5,13.5 - parent: 30 - type: Transform -- uid: 661 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 2.5,14.5 - parent: 30 - type: Transform -- uid: 662 - type: FoodPieBananaCream - components: - - pos: 5.349719,12.80517 - parent: 30 - type: Transform -- uid: 663 - type: FoodPieBananaCream - components: - - pos: 5.630969,12.539545 - parent: 30 - type: Transform -- uid: 664 - type: ClothingNeckScarfStripedZebra - components: - - pos: 6.459094,13.33642 - parent: 30 - type: Transform -- uid: 665 - type: ClothingHeadHatMimesoftFlipped - components: - - pos: 6.677844,12.539545 - parent: 30 - type: Transform -- uid: 666 - type: CrayonBox - components: - - pos: 6.552844,12.664545 - parent: 30 - type: Transform -- uid: 667 - type: ToyRubberDuck - components: - - pos: 6.084094,12.539545 - parent: 30 - type: Transform -- uid: 668 - type: BikeHorn - components: - - pos: 5.927844,12.71142 - parent: 30 - type: Transform -- uid: 669 - type: BikeHornInstrument - components: - - pos: 5.271594,12.477045 - parent: 30 - type: Transform -- uid: 670 - type: SpawnPointMime - components: - - pos: 5.5,13.5 - parent: 30 - type: Transform -- uid: 671 - type: SpawnPointClown - components: - - pos: 3.5,14.5 - parent: 30 - type: Transform -- uid: 672 - type: LampBanana - components: - - pos: 2.630969,15.77392 - parent: 30 - type: Transform -- uid: 673 - type: FoodBanana - components: - - pos: 2.2354794,15.486414 - parent: 30 - type: Transform -- uid: 674 - type: FoodBanana - components: - - pos: 2.2354794,15.486414 - parent: 30 - type: Transform -- uid: 675 - type: SpawnPointBartender - components: - - pos: -9.5,18.5 - parent: 30 - type: Transform -- uid: 676 - type: VendingBarDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,16.5 - parent: 30 - type: Transform -- uid: 677 - type: WallSolidRust - components: - - pos: -6.5,17.5 - parent: 30 - type: Transform -- uid: 678 - type: WallSolidRust - components: - - pos: -47.5,24.5 - parent: 30 - type: Transform -- uid: 679 - type: WallSolidRust - components: - - pos: -45.5,20.5 - parent: 30 - type: Transform -- uid: 680 - type: WallSolidRust - components: - - pos: -55.5,28.5 - parent: 30 - type: Transform -- uid: 681 - type: WallSolidRust - components: - - pos: -58.5,33.5 - parent: 30 - type: Transform -- uid: 682 - type: WeaponDisabler - components: - - pos: -41.44297,55.4585 - parent: 30 - type: Transform -- uid: 683 - type: ClothingEyesGlassesSunglasses - components: - - pos: -11.532806,18.922548 - parent: 30 - type: Transform -- uid: 684 - type: PaintingMonkey - components: - - pos: -4.5,16.5 - parent: 30 - type: Transform -- uid: 685 - type: Girder - components: - - pos: -45.5,22.5 - parent: 30 - type: Transform -- uid: 686 - type: Girder - components: - - pos: -47.5,25.5 - parent: 30 - type: Transform -- uid: 687 - type: Girder - components: - - pos: 2.5,18.5 - parent: 30 - type: Transform -- uid: 688 - type: WeldingFuelTankFull - components: - - pos: -16.5,23.5 - parent: 30 - type: Transform -- uid: 689 - type: WaterTankFull - components: - - pos: -19.5,22.5 - parent: 30 - type: Transform -- uid: 690 - type: NitrogenCanister - components: - - pos: -19.5,23.5 - parent: 30 - type: Transform -- uid: 691 - type: FireExtinguisher - components: - - pos: -16.508755,22.474913 - parent: 30 - type: Transform -- uid: 692 - type: BoxLightMixed - components: - - pos: -18.55563,22.412413 - parent: 30 - type: Transform -- uid: 693 - type: Rack - components: - - pos: -16.5,20.5 - parent: 30 - type: Transform -- uid: 694 - type: Girder - components: - - pos: -18.5,20.5 - parent: 30 - type: Transform -- uid: 695 - type: GrilleBroken - components: - - pos: -17.5,21.5 - parent: 30 - type: Transform -- uid: 696 - type: EmergencyMedipen - components: - - pos: 2.5603247,15.401693 - parent: 30 - type: Transform -- uid: 697 - type: HydroponicsToolSpade - components: - - pos: -45.386658,69.59978 - parent: 30 - type: Transform -- uid: 698 - type: GrilleBroken - components: - - pos: -23.5,19.5 - parent: 30 - type: Transform -- uid: 699 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -31.5,19.5 - parent: 30 - type: Transform -- uid: 700 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -14.5,23.5 - parent: 30 - type: Transform -- uid: 701 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -6.5,20.5 - parent: 30 - type: Transform -- uid: 702 - type: DrinkShaker - components: - - pos: -3.6775613,15.5732765 - parent: 30 - type: Transform -- uid: 703 - type: DrinkGlass - components: - - pos: -3.1931863,15.7607765 - parent: 30 - type: Transform -- uid: 704 - type: BoozeDispenser - components: - - pos: -4.5,15.5 - parent: 30 - type: Transform -- uid: 705 - type: DrinkGlass - components: - - pos: -3.3494363,15.6357765 - parent: 30 - type: Transform -- uid: 706 - type: Grille - components: - - pos: -11.5,24.5 - parent: 30 - type: Transform -- uid: 707 - type: Grille - components: - - pos: -10.5,24.5 - parent: 30 - type: Transform -- uid: 708 - type: Grille - components: - - pos: -9.5,24.5 - parent: 30 - type: Transform -- uid: 709 - type: Grille - components: - - pos: -8.5,24.5 - parent: 30 - type: Transform -- uid: 710 - type: Grille - components: - - pos: -7.5,24.5 - parent: 30 - type: Transform -- uid: 711 - type: Grille - components: - - pos: -27.5,24.5 - parent: 30 - type: Transform -- uid: 712 - type: Grille - components: - - pos: -28.5,24.5 - parent: 30 - type: Transform -- uid: 713 - type: Grille - components: - - pos: -30.5,24.5 - parent: 30 - type: Transform -- uid: 714 - type: Grille - components: - - pos: -32.5,24.5 - parent: 30 - type: Transform -- uid: 715 - type: Grille - components: - - pos: -33.5,23.5 - parent: 30 - type: Transform -- uid: 716 - type: Grille - components: - - pos: -33.5,21.5 - parent: 30 - type: Transform -- uid: 717 - type: Grille - components: - - pos: -3.5,24.5 - parent: 30 - type: Transform -- uid: 718 - type: Grille - components: - - pos: -1.5,24.5 - parent: 30 - type: Transform -- uid: 719 - type: Grille - components: - - pos: 0.5,24.5 - parent: 30 - type: Transform -- uid: 720 - type: Grille - components: - - pos: 3.5,24.5 - parent: 30 - type: Transform -- uid: 721 - type: Grille - components: - - pos: 5.5,24.5 - parent: 30 - type: Transform -- uid: 722 - type: WallReinforced - components: - - pos: -38.5,8.5 - parent: 30 - type: Transform -- uid: 723 - type: SignalButton - components: - - pos: -39.5,9.5 - parent: 30 - type: Transform -- uid: 724 - type: AirlockGlass - components: - - pos: -38.5,5.5 - parent: 30 - type: Transform -- uid: 725 - type: WallSolid - components: - - pos: -8.5,17.5 - parent: 30 - type: Transform -- uid: 726 - type: WeaponDisabler - components: - - pos: -41.427345,55.317875 - parent: 30 - type: Transform -- uid: 727 - type: ClothingBeltHolster - components: - - pos: -7.5304756,16.51597 - parent: 30 - type: Transform -- uid: 728 - type: ClothingNeckScarfStripedBlue - components: - - pos: -7.5304756,16.469095 - parent: 30 - type: Transform -- uid: 729 - type: ClosetMaintenanceFilledRandom - components: - - pos: -25.5,19.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 730 - type: PottedPlant15 - components: - - pos: -28.5,20.5 - parent: 30 - type: Transform -- uid: 731 - type: PottedPlantRandom - components: - - pos: -26.5,20.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 732 - type: RandomSpawner - components: - - pos: -21.5,20.5 - parent: 30 - type: Transform -- uid: 733 - type: SpawnPointChef - components: - - pos: -16.5,9.5 - parent: 30 - type: Transform -- uid: 734 - type: SpawnPointBotanist - components: - - pos: -24.5,16.5 - parent: 30 - type: Transform -- uid: 735 - type: AirlockTheatreLocked - components: - - pos: -31.5,24.5 - parent: 30 - type: Transform -- uid: 736 - type: SpawnPointMusician - components: - - pos: -31.5,22.5 - parent: 30 - type: Transform -- uid: 737 - type: TableWood - components: - - pos: -32.5,21.5 - parent: 30 - type: Transform -- uid: 738 - type: TableWood - components: - - pos: -32.5,23.5 - parent: 30 - type: Transform -- uid: 739 - type: TableWood - components: - - pos: -30.5,21.5 - parent: 30 - type: Transform -- uid: 740 - type: AirlockMaintTheatreLocked - components: - - pos: -31.5,20.5 - parent: 30 - type: Transform -- uid: 741 - type: UprightPianoInstrument - components: - - rot: 1.5707963267948966 rad - pos: -30.5,22.5 - parent: 30 - type: Transform -- uid: 742 - type: ElectricGuitarInstrument - components: - - pos: -30.396528,21.712524 - parent: 30 - type: Transform -- uid: 743 - type: MarimbaInstrument - components: - - pos: -30.5,23.5 - parent: 30 - type: Transform -- uid: 744 - type: RandomInstruments - components: - - pos: -32.5,23.5 - parent: 30 - type: Transform -- uid: 745 - type: AirlockGlass - components: - - pos: -26.5,24.5 - parent: 30 - type: Transform -- uid: 746 - type: RandomVendingDrinks - components: - - pos: -25.5,23.5 - parent: 30 - type: Transform -- uid: 747 - type: RandomVendingSnacks - components: - - pos: -25.5,22.5 - parent: 30 - type: Transform -- uid: 748 - type: Table - components: - - pos: -28.5,23.5 - parent: 30 - type: Transform -- uid: 749 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -28.5,22.5 - parent: 30 - type: Transform -- uid: 750 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -27.5,23.5 - parent: 30 - type: Transform -- uid: 751 - type: FoodNoodles - components: - - pos: -28.536877,23.704493 - parent: 30 - type: Transform -- uid: 752 - type: Airlock - components: - - pos: -22.5,24.5 - parent: 30 - type: Transform -- uid: 753 - type: AirlockMaintLocked - components: - - pos: -22.5,21.5 - parent: 30 - type: Transform -- uid: 754 - type: ToiletDirtyWater - components: - - rot: 1.5707963267948966 rad - pos: -23.5,22.5 - parent: 30 - type: Transform -- uid: 755 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -23.5,23.5 - parent: 30 - type: Transform -- uid: 756 - type: RandomSoap - components: - - pos: -21.5,22.5 - parent: 30 - type: Transform -- uid: 757 - type: CrateEmptySpawner - components: - - pos: 3.5,18.5 - parent: 30 - type: Transform -- uid: 758 - type: LockerFreezer - components: - - pos: 6.5,18.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 765 - - 764 - - 763 - - 762 - - 761 - type: ContainerContainer -- uid: 759 - type: LockerFreezer - components: - - pos: 5.5,18.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 760 - type: ContainerContainer -- uid: 760 - type: DrinkLean - components: - - flags: InContainer - type: MetaData - - parent: 759 - type: Transform - - canCollide: False - type: Physics - - tags: [] - type: Tag -- uid: 761 - type: FoodPieBananaCream - components: - - flags: InContainer - type: MetaData - - parent: 758 - type: Transform - - canCollide: False - type: Physics -- uid: 762 - type: FoodPieBananaCream - components: - - flags: InContainer - type: MetaData - - parent: 758 - type: Transform - - canCollide: False - type: Physics -- uid: 763 - type: FoodPieBananaCream - components: - - flags: InContainer - type: MetaData - - parent: 758 - type: Transform - - canCollide: False - type: Physics -- uid: 764 - type: FoodPieBananaCream - components: - - flags: InContainer - type: MetaData - - parent: 758 - type: Transform - - canCollide: False - type: Physics -- uid: 765 - type: FoodPieBananaCream - components: - - flags: InContainer - type: MetaData - - parent: 758 - type: Transform - - canCollide: False - type: Physics -- uid: 766 - type: AirlockHeadOfPersonnelGlassLocked - components: - - pos: -0.5,24.5 - parent: 30 - type: Transform -- uid: 767 - type: ShuttersRadiationOpen - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-50.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver -- uid: 768 - type: Table - components: - - pos: -3.5,19.5 - parent: 30 - type: Transform -- uid: 769 - type: Table - components: - - pos: -2.5,19.5 - parent: 30 - type: Transform -- uid: 770 - type: Table - components: - - pos: -0.5,19.5 - parent: 30 - type: Transform -- uid: 771 - type: Table - components: - - pos: 0.5,19.5 - parent: 30 - type: Transform -- uid: 772 - type: AirlockMaintHOPLocked - components: - - pos: -1.5,18.5 - parent: 30 - type: Transform -- uid: 773 - type: Rack - components: - - pos: -3.5,20.5 - parent: 30 - type: Transform -- uid: 774 - type: Rack - components: - - pos: -3.5,21.5 - parent: 30 - type: Transform -- uid: 775 - type: Rack - components: - - pos: 0.5,20.5 - parent: 30 - type: Transform -- uid: 776 - type: Rack - components: - - pos: 0.5,21.5 - parent: 30 - type: Transform -- uid: 777 - type: WeldingFuelTankFull - components: - - pos: -3.5,23.5 - parent: 30 - type: Transform -- uid: 778 - type: OxygenCanister - components: - - pos: 0.5,23.5 - parent: 30 - type: Transform -- uid: 779 - type: SheetRGlass - components: - - pos: -3.2757888,19.693022 - parent: 30 - type: Transform -- uid: 780 - type: SheetPlasteel - components: - - pos: -3.5570388,19.630522 - parent: 30 - type: Transform -- uid: 781 - type: ClothingOuterHardsuitEVA - components: - - pos: -3.4805164,20.597134 - parent: 30 - type: Transform -- uid: 782 - type: ClothingOuterHardsuitEVA - components: - - pos: -3.4648914,21.597134 - parent: 30 - type: Transform -- uid: 783 - type: ClothingOuterHardsuitEVA - components: - - pos: 0.53510857,20.565884 - parent: 30 - type: Transform -- uid: 784 - type: ClothingOuterHardsuitEVA - components: - - pos: 0.58198357,21.581509 - parent: 30 - type: Transform -- uid: 785 - type: ClothingHeadHelmetEVA - components: - - pos: -3.7148914,20.472134 - parent: 30 - type: Transform -- uid: 786 - type: ClothingHeadHelmetEVA - components: - - pos: -3.6992664,21.472134 - parent: 30 - type: Transform -- uid: 787 - type: ClothingHeadHelmetEVA - components: - - pos: 0.34760857,21.519009 - parent: 30 - type: Transform -- uid: 788 - type: ClothingHeadHelmetEVA - components: - - pos: 0.31635857,20.409634 - parent: 30 - type: Transform -- uid: 789 - type: Rack - components: - - pos: -3.5,22.5 - parent: 30 - type: Transform -- uid: 790 - type: ClothingShoesBootsMag - components: - - pos: -3.5898914,22.628384 - parent: 30 - type: Transform -- uid: 791 - type: ClothingShoesBootsMag - components: - - pos: -3.4180164,22.487759 - parent: 30 - type: Transform -- uid: 792 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: -0.49614155,19.612759 - parent: 30 - type: Transform -- uid: 793 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: -0.21489143,19.550259 - parent: 30 - type: Transform -- uid: 794 - type: CrowbarRed - components: - - pos: 0.44135857,19.519009 - parent: 30 - type: Transform -- uid: 795 - type: ReinforcedWindow - components: - - pos: -33.5,-61.5 - parent: 30 - type: Transform -- uid: 796 - type: ToolboxEmergencyFilled - components: - - pos: 0.47260857,19.565884 - parent: 30 - type: Transform -- uid: 797 - type: TableReinforced - components: - - pos: -1.5,22.5 - parent: 30 - type: Transform -- uid: 798 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: -1.5,21.5 - parent: 30 - type: Transform -- uid: 799 - type: PowerCellRecharger - components: - - pos: -1.5,22.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 800 - type: Table - components: - - pos: 2.5,20.5 - parent: 30 - type: Transform -- uid: 801 - type: AmplifierSubspaceStockPart - components: - - pos: 2.874536,20.634825 - parent: 30 - type: Transform -- uid: 802 - type: Table - components: - - pos: 3.5,20.5 - parent: 30 - type: Transform -- uid: 803 - type: LampGold - components: - - pos: -32.580593,21.699749 - parent: 30 - type: Transform -- uid: 804 - type: SignDirectionalEvac - components: - - rot: -1.5707963267948966 rad - pos: 7.5,24.5 - parent: 30 - type: Transform -- uid: 805 - type: SignDirectionalSec - components: - - rot: -1.5707963267948966 rad - pos: 7.4924183,24.742052 - parent: 30 - type: Transform -- uid: 806 - type: SignDirectionalSci - components: - - pos: 7.4924183,24.273302 - parent: 30 - type: Transform -- uid: 807 - type: SignDirectionalSupply - components: - - pos: 7.5,15.5 - parent: 30 - type: Transform -- uid: 808 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 7.5,16.5 - parent: 30 - type: Transform -- uid: 809 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: 7.500639,16.731457 - parent: 30 - type: Transform -- uid: 810 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: 7.4788837,16.243462 - parent: 30 - type: Transform -- uid: 811 - type: SignDirectionalMed - components: - - pos: 7.500639,15.731457 - parent: 30 - type: Transform -- uid: 812 - type: SignDirectionalEng - components: - - pos: 7.500639,15.262707 - parent: 30 - type: Transform -- uid: 813 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -33.5,24.5 - parent: 30 - type: Transform -- uid: 814 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: -33.503014,24.735205 - parent: 30 - type: Transform -- uid: 815 - type: SignDirectionalMed - components: - - pos: -33.503014,24.266455 - parent: 30 - type: Transform -- uid: 816 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: -33.5,14.5 - parent: 30 - type: Transform -- uid: 817 - type: SignDirectionalSci - components: - - pos: -33.5,13.5 - parent: 30 - type: Transform -- uid: 818 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: -33.503014,14.727922 - parent: 30 - type: Transform -- uid: 819 - type: SignDirectionalEvac - components: - - rot: -1.5707963267948966 rad - pos: -33.503014,14.243547 - parent: 30 - type: Transform -- uid: 820 - type: SignDirectionalEng - components: - - pos: -33.503014,13.727922 - parent: 30 - type: Transform -- uid: 821 - type: SignDirectionalMed - components: - - pos: -33.503014,13.259172 - parent: 30 - type: Transform -- uid: 822 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: -33.5,5.5 - parent: 30 - type: Transform -- uid: 823 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: -33.498367,5.7443438 - parent: 30 - type: Transform -- uid: 824 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: -33.498367,5.2443438 - parent: 30 - type: Transform -- uid: 825 - type: Table - components: - - pos: 2.5,21.5 - parent: 30 - type: Transform -- uid: 826 - type: PottedPlantRandom - components: - - pos: -22.5,3.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 827 - type: PottedPlantRandom - components: - - pos: -18.5,3.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 828 - type: CableApcExtension - components: - - pos: 30.5,-6.5 - parent: 30 - type: Transform -- uid: 829 - type: WallSolid - components: - - pos: -42.5,-0.5 - parent: 30 - type: Transform -- uid: 830 - type: WallSolid - components: - - pos: -43.5,4.5 - parent: 30 - type: Transform -- uid: 831 - type: WallSolid - components: - - pos: -42.5,4.5 - parent: 30 - type: Transform -- uid: 832 - type: WallSolid - components: - - pos: -42.5,-1.5 - parent: 30 - type: Transform -- uid: 833 - type: WallSolid - components: - - pos: -43.5,-1.5 - parent: 30 - type: Transform -- uid: 834 - type: WallSolid - components: - - pos: -43.5,-0.5 - parent: 30 - type: Transform -- uid: 835 - type: WallSolid - components: - - pos: -43.5,1.5 - parent: 30 - type: Transform -- uid: 836 - type: DeskBell - components: - - pos: -10.5,6.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 837 - type: ReinforcedWindow - components: - - pos: -55.5,-3.5 - parent: 30 - type: Transform -- uid: 838 - type: ReinforcedWindow - components: - - pos: -47.5,-3.5 - parent: 30 - type: Transform -- uid: 839 - type: Grille - components: - - pos: -55.5,-6.5 - parent: 30 - type: Transform -- uid: 840 - type: WallReinforced - components: - - pos: -46.5,6.5 - parent: 30 - type: Transform -- uid: 841 - type: Grille - components: - - pos: -57.5,-6.5 - parent: 30 - type: Transform -- uid: 842 - type: Grille - components: - - pos: -56.5,-6.5 - parent: 30 - type: Transform -- uid: 843 - type: ReinforcedWindow - components: - - pos: -46.5,-1.5 - parent: 30 - type: Transform -- uid: 844 - type: WallReinforced - components: - - pos: -46.5,3.5 - parent: 30 - type: Transform -- uid: 845 - type: ReinforcedWindow - components: - - pos: -53.5,-3.5 - parent: 30 - type: Transform -- uid: 846 - type: WallReinforced - components: - - pos: -53.5,11.5 - parent: 30 - type: Transform -- uid: 847 - type: WallReinforced - components: - - pos: -54.5,11.5 - parent: 30 - type: Transform -- uid: 848 - type: WallReinforced - components: - - pos: -55.5,11.5 - parent: 30 - type: Transform -- uid: 849 - type: WallReinforced - components: - - pos: -56.5,11.5 - parent: 30 - type: Transform -- uid: 850 - type: WallReinforced - components: - - pos: -57.5,11.5 - parent: 30 - type: Transform -- uid: 851 - type: WallReinforced - components: - - pos: -58.5,11.5 - parent: 30 - type: Transform -- uid: 852 - type: WallReinforced - components: - - pos: -42.5,8.5 - parent: 30 - type: Transform -- uid: 853 - type: WallReinforced - components: - - pos: -43.5,8.5 - parent: 30 - type: Transform -- uid: 854 - type: WallReinforced - components: - - pos: -43.5,9.5 - parent: 30 - type: Transform -- uid: 855 - type: WallReinforced - components: - - pos: -43.5,10.5 - parent: 30 - type: Transform -- uid: 856 - type: WallReinforced - components: - - pos: -43.5,11.5 - parent: 30 - type: Transform -- uid: 857 - type: WallReinforced - components: - - pos: -44.5,11.5 - parent: 30 - type: Transform -- uid: 858 - type: WallReinforced - components: - - pos: -45.5,11.5 - parent: 30 - type: Transform -- uid: 859 - type: WallReinforced - components: - - pos: -46.5,11.5 - parent: 30 - type: Transform -- uid: 860 - type: WallReinforced - components: - - pos: -48.5,11.5 - parent: 30 - type: Transform -- uid: 861 - type: WallReinforced - components: - - pos: -47.5,11.5 - parent: 30 - type: Transform -- uid: 862 - type: WallReinforced - components: - - pos: -49.5,11.5 - parent: 30 - type: Transform -- uid: 863 - type: WallReinforced - components: - - pos: -50.5,11.5 - parent: 30 - type: Transform -- uid: 864 - type: ReinforcedWindow - components: - - pos: -46.5,0.5 - parent: 30 - type: Transform -- uid: 865 - type: Grille - components: - - pos: -58.5,-6.5 - parent: 30 - type: Transform -- uid: 866 - type: Grille - components: - - pos: -59.5,-6.5 - parent: 30 - type: Transform -- uid: 867 - type: ReinforcedWindow - components: - - pos: -54.5,6.5 - parent: 30 - type: Transform -- uid: 868 - type: ReinforcedWindow - components: - - pos: -55.5,6.5 - parent: 30 - type: Transform -- uid: 869 - type: ReinforcedWindow - components: - - pos: -48.5,6.5 - parent: 30 - type: Transform -- uid: 870 - type: WallReinforced - components: - - pos: -50.5,-3.5 - parent: 30 - type: Transform -- uid: 871 - type: Grille - components: - - pos: -46.5,0.5 - parent: 30 - type: Transform -- uid: 872 - type: WallReinforced - components: - - pos: -60.5,-3.5 - parent: 30 - type: Transform -- uid: 873 - type: WallReinforced - components: - - pos: -60.5,-4.5 - parent: 30 - type: Transform -- uid: 874 - type: WallReinforced - components: - - pos: -60.5,-5.5 - parent: 30 - type: Transform -- uid: 875 - type: WallReinforced - components: - - pos: -60.5,-6.5 - parent: 30 - type: Transform -- uid: 876 - type: ReinforcedWindow - components: - - pos: -60.5,8.5 - parent: 30 - type: Transform -- uid: 877 - type: AtmosDeviceFanTiny - components: - - pos: -62.5,15.5 - parent: 30 - type: Transform -- uid: 878 - type: ReinforcedWindow - components: - - pos: -60.5,9.5 - parent: 30 - type: Transform -- uid: 879 - type: Grille - components: - - pos: -59.5,9.5 - parent: 30 - type: Transform -- uid: 880 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 881 - type: Grille - components: - - pos: -54.5,-3.5 - parent: 30 - type: Transform -- uid: 882 - type: Grille - components: - - pos: -53.5,-3.5 - parent: 30 - type: Transform -- uid: 883 - type: Grille - components: - - pos: -56.5,-3.5 - parent: 30 - type: Transform -- uid: 884 - type: Grille - components: - - pos: -55.5,-3.5 - parent: 30 - type: Transform -- uid: 885 - type: Grille - components: - - pos: -49.5,-3.5 - parent: 30 - type: Transform -- uid: 886 - type: WallReinforced - components: - - pos: -48.5,-3.5 - parent: 30 - type: Transform -- uid: 887 - type: Grille - components: - - pos: -47.5,-3.5 - parent: 30 - type: Transform -- uid: 888 - type: Grille - components: - - pos: -46.5,-2.5 - parent: 30 - type: Transform -- uid: 889 - type: Grille - components: - - pos: -46.5,-1.5 - parent: 30 - type: Transform -- uid: 890 - type: Grille - components: - - pos: -46.5,1.5 - parent: 30 - type: Transform -- uid: 891 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 892 - type: Grille - components: - - pos: -46.5,2.5 - parent: 30 - type: Transform -- uid: 893 - type: Grille - components: - - pos: -46.5,4.5 - parent: 30 - type: Transform -- uid: 894 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 895 - type: Grille - components: - - pos: -46.5,5.5 - parent: 30 - type: Transform -- uid: 896 - type: WallReinforced - components: - - pos: -60.5,6.5 - parent: 30 - type: Transform -- uid: 897 - type: ReinforcedWindow - components: - - pos: -60.5,7.5 - parent: 30 - type: Transform -- uid: 898 - type: AtmosDeviceFanTiny - components: - - pos: -62.5,23.5 - parent: 30 - type: Transform -- uid: 899 - type: WallReinforced - components: - - pos: -59.5,-3.5 - parent: 30 - type: Transform -- uid: 900 - type: WallReinforced - components: - - pos: -57.5,-3.5 - parent: 30 - type: Transform -- uid: 901 - type: WallReinforced - components: - - pos: -52.5,-3.5 - parent: 30 - type: Transform -- uid: 902 - type: ReinforcedWindow - components: - - pos: -46.5,4.5 - parent: 30 - type: Transform -- uid: 903 - type: ReinforcedWindow - components: - - pos: -56.5,6.5 - parent: 30 - type: Transform -- uid: 904 - type: ReinforcedWindow - components: - - pos: -46.5,5.5 - parent: 30 - type: Transform -- uid: 905 - type: ReinforcedWindow - components: - - pos: -47.5,6.5 - parent: 30 - type: Transform -- uid: 906 - type: ReinforcedWindow - components: - - pos: -49.5,6.5 - parent: 30 - type: Transform -- uid: 907 - type: ReinforcedWindow - components: - - pos: -53.5,6.5 - parent: 30 - type: Transform -- uid: 908 - type: CableApcExtension - components: - - pos: -47.5,-4.5 - parent: 30 - type: Transform -- uid: 909 - type: ReinforcedWindow - components: - - pos: -54.5,-3.5 - parent: 30 - type: Transform -- uid: 910 - type: WallReinforced - components: - - pos: -46.5,-3.5 - parent: 30 - type: Transform -- uid: 911 - type: ReinforcedWindow - components: - - pos: -58.5,9.5 - parent: 30 - type: Transform -- uid: 912 - type: ReinforcedWindow - components: - - pos: -58.5,10.5 - parent: 30 - type: Transform -- uid: 913 - type: ReinforcedWindow - components: - - pos: -46.5,-2.5 - parent: 30 - type: Transform -- uid: 914 - type: Grille - components: - - pos: -53.5,6.5 - parent: 30 - type: Transform -- uid: 915 - type: Grille - components: - - pos: -55.5,6.5 - parent: 30 - type: Transform -- uid: 916 - type: Grille - components: - - pos: -56.5,6.5 - parent: 30 - type: Transform -- uid: 917 - type: Grille - components: - - pos: -47.5,6.5 - parent: 30 - type: Transform -- uid: 918 - type: Grille - components: - - pos: -48.5,6.5 - parent: 30 - type: Transform -- uid: 919 - type: Grille - components: - - pos: -49.5,6.5 - parent: 30 - type: Transform -- uid: 920 - type: Grille - components: - - pos: -54.5,6.5 - parent: 30 - type: Transform -- uid: 921 - type: Grille - components: - - pos: -60.5,7.5 - parent: 30 - type: Transform -- uid: 922 - type: AtmosDeviceFanTiny - components: - - pos: -62.5,21.5 - parent: 30 - type: Transform -- uid: 923 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 924 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 925 - type: WallReinforced - components: - - pos: -48.5,-6.5 - parent: 30 - type: Transform -- uid: 926 - type: AtmosDeviceFanTiny - components: - - pos: -62.5,13.5 - parent: 30 - type: Transform -- uid: 927 - type: PottedPlant5 - components: - - pos: 11.5,-6.5 - parent: 30 - type: Transform -- uid: 928 - type: Chair - components: - - pos: -49.5,10.5 - parent: 30 - type: Transform -- uid: 929 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-6.5 - parent: 30 - type: Transform -- uid: 930 - type: WallReinforced - components: - - pos: -48.5,-7.5 - parent: 30 - type: Transform -- uid: 931 - type: AirlockGlass - components: - - pos: -48.5,-4.5 - parent: 30 - type: Transform -- uid: 932 - type: ReinforcedWindow - components: - - pos: -59.5,9.5 - parent: 30 - type: Transform -- uid: 933 - type: CableHV - components: - - pos: -46.5,10.5 - parent: 30 - type: Transform -- uid: 934 - type: DeskBell - components: - - pos: 18.5,-1.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 935 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 936 - type: CableHV - components: - - pos: -44.5,10.5 - parent: 30 - type: Transform -- uid: 937 - type: Grille - components: - - pos: -50.5,-6.5 - parent: 30 - type: Transform -- uid: 938 - type: WallReinforced - components: - - pos: -44.5,9.5 - parent: 30 - type: Transform -- uid: 939 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -48.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 940 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 941 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -53.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 942 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 943 - type: GasPipeBend - components: - - pos: -47.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 944 - type: GasPipeStraight - components: - - pos: -48.5,8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 945 - type: Grille - components: - - pos: -51.5,-6.5 - parent: 30 - type: Transform -- uid: 946 - type: GasPipeBend - components: - - pos: -48.5,9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 947 - type: GasPipeStraight - components: - - pos: -45.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 948 - type: GasPipeFourway - components: - - pos: -45.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 949 - type: ReinforcedWindow - components: - - pos: -46.5,2.5 - parent: 30 - type: Transform -- uid: 950 - type: WallReinforced - components: - - pos: -46.5,9.5 - parent: 30 - type: Transform -- uid: 951 - type: Grille - components: - - pos: -53.5,-6.5 - parent: 30 - type: Transform -- uid: 952 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 953 - type: BlastDoor - components: - - pos: -2.5,24.5 - parent: 30 - type: Transform -- uid: 954 - type: FirelockGlass - components: - - pos: 31.5,-8.5 - parent: 30 - type: Transform -- uid: 955 - type: Table - components: - - pos: 29.5,-7.5 - parent: 30 - type: Transform -- uid: 956 - type: Chair - components: - - pos: -48.5,10.5 - parent: 30 - type: Transform -- uid: 957 - type: AtmosDeviceFanTiny - components: - - rot: 1.5707963267948966 rad - pos: -51.5,6.5 - parent: 30 - type: Transform -- uid: 958 - type: WallReinforced - components: - - pos: -45.5,9.5 - parent: 30 - type: Transform -- uid: 959 - type: Table - components: - - pos: 28.5,-7.5 - parent: 30 - type: Transform -- uid: 960 - type: Table - components: - - pos: 27.5,-7.5 - parent: 30 - type: Transform -- uid: 961 - type: ReinforcedWindow - components: - - pos: -59.5,-6.5 - parent: 30 - type: Transform -- uid: 962 - type: Grille - components: - - pos: -52.5,-6.5 - parent: 30 - type: Transform -- uid: 963 - type: Grille - components: - - pos: -60.5,8.5 - parent: 30 - type: Transform -- uid: 964 - type: Grille - components: - - pos: -60.5,9.5 - parent: 30 - type: Transform -- uid: 965 - type: ReinforcedWindow - components: - - pos: -46.5,1.5 - parent: 30 - type: Transform -- uid: 966 - type: Grille - components: - - pos: -58.5,9.5 - parent: 30 - type: Transform -- uid: 967 - type: Grille - components: - - pos: -58.5,10.5 - parent: 30 - type: Transform -- uid: 968 - type: WallSolid - components: - - pos: -37.5,4.5 - parent: 30 - type: Transform -- uid: 969 - type: WallSolid - components: - - pos: -38.5,4.5 - parent: 30 - type: Transform -- uid: 970 - type: WallSolid - components: - - pos: -37.5,2.5 - parent: 30 - type: Transform -- uid: 971 - type: WallSolid - components: - - pos: -37.5,1.5 - parent: 30 - type: Transform -- uid: 972 - type: WallSolid - components: - - pos: -41.5,-1.5 - parent: 30 - type: Transform -- uid: 973 - type: WallSolid - components: - - pos: -40.5,-1.5 - parent: 30 - type: Transform -- uid: 974 - type: WallSolid - components: - - pos: -39.5,-1.5 - parent: 30 - type: Transform -- uid: 975 - type: WallSolid - components: - - pos: -38.5,-1.5 - parent: 30 - type: Transform -- uid: 976 - type: WallSolid - components: - - pos: -38.5,-0.5 - parent: 30 - type: Transform -- uid: 977 - type: WallSolid - components: - - pos: -37.5,-0.5 - parent: 30 - type: Transform -- uid: 978 - type: WallSolid - components: - - pos: -36.5,-1.5 - parent: 30 - type: Transform -- uid: 979 - type: WallSolid - components: - - pos: -36.5,-0.5 - parent: 30 - type: Transform -- uid: 980 - type: WallSolid - components: - - pos: -35.5,-0.5 - parent: 30 - type: Transform -- uid: 981 - type: WallSolid - components: - - pos: -33.5,-0.5 - parent: 30 - type: Transform -- uid: 982 - type: WallSolid - components: - - pos: -30.5,-3.5 - parent: 30 - type: Transform -- uid: 983 - type: WallSolid - components: - - pos: -31.5,-3.5 - parent: 30 - type: Transform -- uid: 984 - type: WallSolid - components: - - pos: -32.5,-2.5 - parent: 30 - type: Transform -- uid: 985 - type: WallSolid - components: - - pos: -32.5,-0.5 - parent: 30 - type: Transform -- uid: 986 - type: WallSolid - components: - - pos: -32.5,-3.5 - parent: 30 - type: Transform -- uid: 987 - type: Grille - components: - - pos: -28.5,0.5 - parent: 30 - type: Transform -- uid: 988 - type: WallReinforced - components: - - pos: -26.5,0.5 - parent: 30 - type: Transform -- uid: 989 - type: WallReinforced - components: - - pos: -25.5,0.5 - parent: 30 - type: Transform -- uid: 990 - type: WallReinforced - components: - - pos: -24.5,0.5 - parent: 30 - type: Transform -- uid: 991 - type: WallSolid - components: - - pos: -14.5,0.5 - parent: 30 - type: Transform -- uid: 992 - type: WallReinforced - components: - - pos: -20.5,0.5 - parent: 30 - type: Transform -- uid: 993 - type: WallReinforced - components: - - pos: -19.5,0.5 - parent: 30 - type: Transform -- uid: 994 - type: FirelockGlass - components: - - pos: -8.5,-5.5 - parent: 30 - type: Transform -- uid: 995 - type: WallReinforced - components: - - pos: -17.5,0.5 - parent: 30 - type: Transform -- uid: 996 - type: WallReinforced - components: - - pos: -15.5,0.5 - parent: 30 - type: Transform -- uid: 997 - type: WallReinforced - components: - - pos: -16.5,0.5 - parent: 30 - type: Transform -- uid: 998 - type: WallReinforced - components: - - pos: -21.5,0.5 - parent: 30 - type: Transform -- uid: 999 - type: WallReinforced - components: - - pos: -23.5,0.5 - parent: 30 - type: Transform -- uid: 1000 - type: Window - components: - - pos: -43.5,0.5 - parent: 30 - type: Transform -- uid: 1001 - type: Window - components: - - pos: -43.5,3.5 - parent: 30 - type: Transform -- uid: 1002 - type: Window - components: - - pos: -37.5,0.5 - parent: 30 - type: Transform -- uid: 1003 - type: Window - components: - - pos: -37.5,3.5 - parent: 30 - type: Transform -- uid: 1004 - type: Window - components: - - pos: -39.5,4.5 - parent: 30 - type: Transform -- uid: 1005 - type: Window - components: - - pos: -41.5,4.5 - parent: 30 - type: Transform -- uid: 1006 - type: AirlockGlass - components: - - pos: -40.5,4.5 - parent: 30 - type: Transform -- uid: 1007 - type: Grille - components: - - pos: -43.5,0.5 - parent: 30 - type: Transform -- uid: 1008 - type: Grille - components: - - pos: -43.5,3.5 - parent: 30 - type: Transform -- uid: 1009 - type: Grille - components: - - pos: -37.5,0.5 - parent: 30 - type: Transform -- uid: 1010 - type: Grille - components: - - pos: -37.5,3.5 - parent: 30 - type: Transform -- uid: 1011 - type: Grille - components: - - pos: -39.5,4.5 - parent: 30 - type: Transform -- uid: 1012 - type: Grille - components: - - pos: -41.5,4.5 - parent: 30 - type: Transform -- uid: 1013 - type: Bookshelf - components: - - pos: -41.5,-0.5 - parent: 30 - type: Transform -- uid: 1014 - type: Bookshelf - components: - - pos: -40.5,-0.5 - parent: 30 - type: Transform -- uid: 1015 - type: Bookshelf - components: - - pos: -39.5,-0.5 - parent: 30 - type: Transform -- uid: 1016 - type: DisposalUnit - components: - - pos: -3.5,-28.5 - parent: 30 - type: Transform -- uid: 1017 - type: TableWood - components: - - pos: -42.5,3.5 - parent: 30 - type: Transform -- uid: 1018 - type: TableWood - components: - - pos: -38.5,3.5 - parent: 30 - type: Transform -- uid: 1019 - type: TableWood - components: - - pos: -38.5,0.5 - parent: 30 - type: Transform -- uid: 1020 - type: ComfyChair - components: - - pos: -41.5,3.5 - parent: 30 - type: Transform -- uid: 1021 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -38.5,1.5 - parent: 30 - type: Transform -- uid: 1022 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -38.5,2.5 - parent: 30 - type: Transform -- uid: 1023 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -42.5,1.5 - parent: 30 - type: Transform -- uid: 1024 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -42.5,2.5 - parent: 30 - type: Transform -- uid: 1025 - type: ComfyChair - components: - - pos: -39.5,3.5 - parent: 30 - type: Transform -- uid: 1026 - type: LampGold - components: - - pos: -42.548836,3.6628456 - parent: 30 - type: Transform -- uid: 1027 - type: CarpetGreen - components: - - pos: -39.5,1.5 - parent: 30 - type: Transform -- uid: 1028 - type: CarpetGreen - components: - - pos: -40.5,1.5 - parent: 30 - type: Transform -- uid: 1029 - type: CarpetGreen - components: - - pos: -41.5,1.5 - parent: 30 - type: Transform -- uid: 1030 - type: CarpetGreen - components: - - pos: -41.5,2.5 - parent: 30 - type: Transform -- uid: 1031 - type: CarpetGreen - components: - - pos: -40.5,2.5 - parent: 30 - type: Transform -- uid: 1032 - type: CarpetGreen - components: - - pos: -39.5,2.5 - parent: 30 - type: Transform -- uid: 1033 - type: PosterLegitHelpOthers - components: - - pos: -37.5,1.5 - parent: 30 - type: Transform -- uid: 1034 - type: ExtinguisherCabinetFilled - components: - - pos: -37.5,2.5 - parent: 30 - type: Transform -- uid: 1035 - type: RandomVendingDrinks - components: - - pos: -30.5,4.5 - parent: 30 - type: Transform -- uid: 1036 - type: Chair - components: - - pos: -31.5,4.5 - parent: 30 - type: Transform -- uid: 1037 - type: DisposalUnit - components: - - pos: -33.5,4.5 - parent: 30 - type: Transform -- uid: 1038 - type: Grille - components: - - pos: -29.5,0.5 - parent: 30 - type: Transform -- uid: 1039 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 24.5,40.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorms - type: SurveillanceCamera -- uid: 1040 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -36.5,2.5 - parent: 30 - type: Transform -- uid: 1041 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -36.5,1.5 - parent: 30 - type: Transform -- uid: 1042 - type: PottedPlantRandom - components: - - pos: -35.5,0.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1043 - type: CableApcExtension - components: - - pos: -61.5,-27.5 - parent: 30 - type: Transform -- uid: 1044 - type: WallReinforced - components: - - pos: -37.5,8.5 - parent: 30 - type: Transform -- uid: 1045 - type: WallReinforced - components: - - pos: -37.5,12.5 - parent: 30 - type: Transform -- uid: 1046 - type: WallReinforced - components: - - pos: -38.5,12.5 - parent: 30 - type: Transform -- uid: 1047 - type: WallReinforced - components: - - pos: -43.5,12.5 - parent: 30 - type: Transform -- uid: 1048 - type: WallReinforced - components: - - pos: -42.5,12.5 - parent: 30 - type: Transform -- uid: 1049 - type: WallSolid - components: - - pos: -48.5,12.5 - parent: 30 - type: Transform -- uid: 1050 - type: WallSolid - components: - - pos: -47.5,12.5 - parent: 30 - type: Transform -- uid: 1051 - type: ReinforcedWindow - components: - - pos: -41.5,12.5 - parent: 30 - type: Transform -- uid: 1052 - type: WindoorSecurityLocked - components: - - pos: -40.5,12.5 - parent: 30 - type: Transform -- uid: 1053 - type: ReinforcedWindow - components: - - pos: -37.5,11.5 - parent: 30 - type: Transform -- uid: 1054 - type: ReinforcedWindow - components: - - pos: -39.5,8.5 - parent: 30 - type: Transform -- uid: 1055 - type: Grille - components: - - pos: -41.5,8.5 - parent: 30 - type: Transform -- uid: 1056 - type: Grille - components: - - pos: -37.5,11.5 - parent: 30 - type: Transform -- uid: 1057 - type: AirlockSecurityLocked - components: - - pos: -37.5,10.5 - parent: 30 - type: Transform -- uid: 1058 - type: ReinforcedWindow - components: - - pos: -39.5,12.5 - parent: 30 - type: Transform -- uid: 1059 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: -40.5,8.5 - parent: 30 - type: Transform -- uid: 1060 - type: ReinforcedWindow - components: - - pos: -37.5,9.5 - parent: 30 - type: Transform -- uid: 1061 - type: ReinforcedWindow - components: - - pos: -41.5,8.5 - parent: 30 - type: Transform -- uid: 1062 - type: Grille - components: - - pos: -39.5,8.5 - parent: 30 - type: Transform -- uid: 1063 - type: Grille - components: - - pos: -37.5,9.5 - parent: 30 - type: Transform -- uid: 1064 - type: TableReinforced - components: - - pos: -40.5,12.5 - parent: 30 - type: Transform -- uid: 1065 - type: Grille - components: - - pos: -41.5,12.5 - parent: 30 - type: Transform -- uid: 1066 - type: TableReinforced - components: - - pos: -40.5,8.5 - parent: 30 - type: Transform -- uid: 1067 - type: Grille - components: - - pos: -39.5,12.5 - parent: 30 - type: Transform -- uid: 1068 - type: Table - components: - - pos: -39.5,9.5 - parent: 30 - type: Transform -- uid: 1069 - type: Table - components: - - pos: -41.5,9.5 - parent: 30 - type: Transform -- uid: 1070 - type: ChairOfficeDark - components: - - pos: -40.5,9.5 - parent: 30 - type: Transform -- uid: 1071 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -40.5,11.5 - parent: 30 - type: Transform -- uid: 1072 - type: LockerSecurityFilled - components: - - pos: -38.5,11.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1073 - type: ComputerId - components: - - rot: 1.5707963267948966 rad - pos: -42.5,10.5 - parent: 30 - type: Transform -- uid: 1074 - type: ComputerCriminalRecords - components: - - rot: 1.5707963267948966 rad - pos: -42.5,11.5 - parent: 30 - type: Transform -- uid: 1075 - type: PottedPlantRandom - components: - - pos: -42.5,9.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1076 - type: ShuttersNormalOpen - components: - - pos: -40.5,8.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 385 - type: SignalReceiver -- uid: 1077 - type: ShuttersNormalOpen - components: - - pos: -40.5,12.5 - parent: 30 - type: Transform -- uid: 1078 - type: ShuttersNormalOpen - components: - - pos: -39.5,12.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 385 - type: SignalReceiver -- uid: 1079 - type: ShuttersNormalOpen - components: - - pos: -41.5,12.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 385 - type: SignalReceiver -- uid: 1080 - type: ShuttersNormalOpen - components: - - pos: -41.5,8.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 385 - type: SignalReceiver -- uid: 1081 - type: ShuttersNormalOpen - components: - - pos: -39.5,8.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 385 - type: SignalReceiver -- uid: 1082 - type: ShuttersNormalOpen - components: - - pos: -37.5,9.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 385 - type: SignalReceiver -- uid: 1083 - type: ShuttersNormalOpen - components: - - pos: -37.5,11.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 385 - type: SignalReceiver -- uid: 1084 - type: WeaponCapacitorRecharger - components: - - pos: -41.5,9.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 1085 - type: Table - components: - - pos: -39.5,11.5 - parent: 30 - type: Transform -- uid: 1086 - type: Paper - components: - - pos: -39.59503,11.639032 - parent: 30 - type: Transform -- uid: 1087 - type: Paper - components: - - pos: -39.548157,11.592157 - parent: 30 - type: Transform -- uid: 1088 - type: Paper - components: - - pos: -39.485657,11.529657 - parent: 30 - type: Transform -- uid: 1089 - type: Pen - components: - - pos: -39.298157,11.732782 - parent: 30 - type: Transform -- uid: 1090 - type: AirlockGlass - components: - - pos: -38.5,6.5 - parent: 30 - type: Transform -- uid: 1091 - type: AirlockGlass - components: - - pos: -38.5,7.5 - parent: 30 - type: Transform -- uid: 1092 - type: AirlockGlass - components: - - pos: -51.5,11.5 - parent: 30 - type: Transform -- uid: 1093 - type: AirlockGlass - components: - - pos: -52.5,11.5 - parent: 30 - type: Transform -- uid: 1094 - type: AirlockGlass - components: - - pos: -38.5,14.5 - parent: 30 - type: Transform -- uid: 1095 - type: AirlockGlass - components: - - pos: -38.5,15.5 - parent: 30 - type: Transform -- uid: 1096 - type: AirlockGlass - components: - - pos: -47.5,13.5 - parent: 30 - type: Transform -- uid: 1097 - type: AirlockGlass - components: - - pos: -47.5,14.5 - parent: 30 - type: Transform -- uid: 1098 - type: AirlockGlass - components: - - pos: -47.5,15.5 - parent: 30 - type: Transform -- uid: 1099 - type: FirelockGlass - components: - - pos: -43.5,5.5 - parent: 30 - type: Transform -- uid: 1100 - type: FirelockGlass - components: - - pos: -43.5,6.5 - parent: 30 - type: Transform -- uid: 1101 - type: FirelockGlass - components: - - pos: -43.5,7.5 - parent: 30 - type: Transform -- uid: 1102 - type: FirelockGlass - components: - - pos: -34.5,12.5 - parent: 30 - type: Transform -- uid: 1103 - type: FirelockGlass - components: - - pos: -35.5,12.5 - parent: 30 - type: Transform -- uid: 1104 - type: FirelockGlass - components: - - pos: -36.5,12.5 - parent: 30 - type: Transform -- uid: 1105 - type: FirelockGlass - components: - - pos: -34.5,22.5 - parent: 30 - type: Transform -- uid: 1106 - type: FirelockGlass - components: - - pos: -35.5,22.5 - parent: 30 - type: Transform -- uid: 1107 - type: FirelockGlass - components: - - pos: -36.5,22.5 - parent: 30 - type: Transform -- uid: 1108 - type: DisposalUnit - components: - - pos: -33.5,19.5 - parent: 30 - type: Transform -- uid: 1109 - type: RandomVendingDrinks - components: - - pos: -33.5,18.5 - parent: 30 - type: Transform -- uid: 1110 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -33.5,17.5 - parent: 30 - type: Transform -- uid: 1111 - type: ReinforcedWindow - components: - - pos: -58.5,16.5 - parent: 30 - type: Transform -- uid: 1112 - type: ReinforcedWindow - components: - - pos: -58.5,17.5 - parent: 30 - type: Transform -- uid: 1113 - type: ReinforcedWindow - components: - - pos: -58.5,18.5 - parent: 30 - type: Transform -- uid: 1114 - type: ReinforcedWindow - components: - - pos: -58.5,19.5 - parent: 30 - type: Transform -- uid: 1115 - type: Grille - components: - - pos: -58.5,20.5 - parent: 30 - type: Transform -- uid: 1116 - type: ReinforcedWindow - components: - - pos: -59.5,20.5 - parent: 30 - type: Transform -- uid: 1117 - type: ReinforcedWindow - components: - - pos: -60.5,20.5 - parent: 30 - type: Transform -- uid: 1118 - type: ReinforcedWindow - components: - - pos: -61.5,20.5 - parent: 30 - type: Transform -- uid: 1119 - type: ReinforcedWindow - components: - - pos: -62.5,20.5 - parent: 30 - type: Transform -- uid: 1120 - type: ReinforcedWindow - components: - - pos: -59.5,16.5 - parent: 30 - type: Transform -- uid: 1121 - type: ReinforcedWindow - components: - - pos: -61.5,16.5 - parent: 30 - type: Transform -- uid: 1122 - type: ReinforcedWindow - components: - - pos: -62.5,16.5 - parent: 30 - type: Transform -- uid: 1123 - type: ReinforcedWindow - components: - - pos: -58.5,12.5 - parent: 30 - type: Transform -- uid: 1124 - type: ReinforcedWindow - components: - - pos: -59.5,12.5 - parent: 30 - type: Transform -- uid: 1125 - type: ReinforcedWindow - components: - - pos: -60.5,12.5 - parent: 30 - type: Transform -- uid: 1126 - type: ReinforcedWindow - components: - - pos: -61.5,12.5 - parent: 30 - type: Transform -- uid: 1127 - type: ReinforcedWindow - components: - - pos: -62.5,12.5 - parent: 30 - type: Transform -- uid: 1128 - type: ReinforcedWindow - components: - - pos: -58.5,14.5 - parent: 30 - type: Transform -- uid: 1129 - type: ReinforcedWindow - components: - - pos: -59.5,14.5 - parent: 30 - type: Transform -- uid: 1130 - type: ReinforcedWindow - components: - - pos: -61.5,14.5 - parent: 30 - type: Transform -- uid: 1131 - type: ReinforcedWindow - components: - - pos: -62.5,14.5 - parent: 30 - type: Transform -- uid: 1132 - type: ReinforcedWindow - components: - - pos: -58.5,24.5 - parent: 30 - type: Transform -- uid: 1133 - type: ReinforcedWindow - components: - - pos: -59.5,24.5 - parent: 30 - type: Transform -- uid: 1134 - type: ReinforcedWindow - components: - - pos: -61.5,24.5 - parent: 30 - type: Transform -- uid: 1135 - type: ReinforcedWindow - components: - - pos: -62.5,24.5 - parent: 30 - type: Transform -- uid: 1136 - type: ReinforcedWindow - components: - - pos: -62.5,22.5 - parent: 30 - type: Transform -- uid: 1137 - type: ReinforcedWindow - components: - - pos: -61.5,22.5 - parent: 30 - type: Transform -- uid: 1138 - type: ReinforcedWindow - components: - - pos: -59.5,22.5 - parent: 30 - type: Transform -- uid: 1139 - type: ReinforcedWindow - components: - - pos: -58.5,22.5 - parent: 30 - type: Transform -- uid: 1140 - type: WallReinforced - components: - - pos: -60.5,22.5 - parent: 30 - type: Transform -- uid: 1141 - type: WallReinforced - components: - - pos: -60.5,24.5 - parent: 30 - type: Transform -- uid: 1142 - type: WallReinforced - components: - - pos: -60.5,14.5 - parent: 30 - type: Transform -- uid: 1143 - type: WallReinforced - components: - - pos: -60.5,16.5 - parent: 30 - type: Transform -- uid: 1144 - type: AirlockExternalGlass - components: - - pos: -58.5,15.5 - parent: 30 - type: Transform -- uid: 1145 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: -1.5707963267948966 rad - pos: -62.5,15.5 - parent: 30 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 1146 - type: AirlockExternalGlass - components: - - pos: -58.5,23.5 - parent: 30 - type: Transform -- uid: 1147 - type: AirlockExternalGlass - components: - - pos: -58.5,21.5 - parent: 30 - type: Transform -- uid: 1148 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: -1.5707963267948966 rad - pos: -62.5,23.5 - parent: 30 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 1149 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: -1.5707963267948966 rad - pos: -62.5,21.5 - parent: 30 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 1150 - type: WallSolid - components: - - pos: -47.5,18.5 - parent: 30 - type: Transform -- uid: 1151 - type: WallSolid - components: - - pos: -47.5,19.5 - parent: 30 - type: Transform -- uid: 1152 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: -1.5707963267948966 rad - pos: -62.5,13.5 - parent: 30 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 1153 - type: AirlockExternalGlass - components: - - pos: -58.5,13.5 - parent: 30 - type: Transform -- uid: 1154 - type: WallReinforced - components: - - pos: -58.5,25.5 - parent: 30 - type: Transform -- uid: 1155 - type: WallReinforced - components: - - pos: -58.5,26.5 - parent: 30 - type: Transform -- uid: 1156 - type: WallSolid - components: - - pos: -56.5,26.5 - parent: 30 - type: Transform -- uid: 1157 - type: WallSolid - components: - - pos: -57.5,26.5 - parent: 30 - type: Transform -- uid: 1158 - type: WallSolid - components: - - pos: -55.5,26.5 - parent: 30 - type: Transform -- uid: 1159 - type: WallSolid - components: - - pos: -54.5,26.5 - parent: 30 - type: Transform -- uid: 1160 - type: WallSolid - components: - - pos: -51.5,26.5 - parent: 30 - type: Transform -- uid: 1161 - type: WallSolid - components: - - pos: -52.5,26.5 - parent: 30 - type: Transform -- uid: 1162 - type: WallSolid - components: - - pos: -50.5,26.5 - parent: 30 - type: Transform -- uid: 1163 - type: WallSolid - components: - - pos: -49.5,26.5 - parent: 30 - type: Transform -- uid: 1164 - type: WallSolid - components: - - pos: -48.5,26.5 - parent: 30 - type: Transform -- uid: 1165 - type: WallSolid - components: - - pos: -48.5,25.5 - parent: 30 - type: Transform -- uid: 1166 - type: WallSolid - components: - - pos: -48.5,24.5 - parent: 30 - type: Transform -- uid: 1167 - type: MagazineRifle - components: - - pos: -41.627182,56.67169 - parent: 30 - type: Transform -- uid: 1168 - type: WallSolid - components: - - pos: -47.5,23.5 - parent: 30 - type: Transform -- uid: 1169 - type: WallSolid - components: - - pos: -47.5,22.5 - parent: 30 - type: Transform -- uid: 1170 - type: WallSolid - components: - - pos: -47.5,21.5 - parent: 30 - type: Transform -- uid: 1171 - type: WallSolid - components: - - pos: -47.5,20.5 - parent: 30 - type: Transform -- uid: 1172 - type: WallSolid - components: - - pos: -48.5,20.5 - parent: 30 - type: Transform -- uid: 1173 - type: WallSolid - components: - - pos: -47.5,17.5 - parent: 30 - type: Transform -- uid: 1174 - type: WallSolid - components: - - pos: -47.5,16.5 - parent: 30 - type: Transform -- uid: 1175 - type: WallSolid - components: - - pos: -48.5,16.5 - parent: 30 - type: Transform -- uid: 1176 - type: WallSolid - components: - - pos: -41.5,16.5 - parent: 30 - type: Transform -- uid: 1177 - type: WallSolid - components: - - pos: -39.5,16.5 - parent: 30 - type: Transform -- uid: 1178 - type: WallSolid - components: - - pos: -38.5,16.5 - parent: 30 - type: Transform -- uid: 1179 - type: WallSolid - components: - - pos: -37.5,16.5 - parent: 30 - type: Transform -- uid: 1180 - type: WallSolid - components: - - pos: -46.5,16.5 - parent: 30 - type: Transform -- uid: 1181 - type: AirlockMaintEngiLocked - components: - - pos: -44.5,18.5 - parent: 30 - type: Transform -- uid: 1182 - type: WallSolid - components: - - pos: -44.5,16.5 - parent: 30 - type: Transform -- uid: 1183 - type: WallSolid - components: - - pos: -44.5,17.5 - parent: 30 - type: Transform -- uid: 1184 - type: AirlockMaintLocked - components: - - pos: -45.5,16.5 - parent: 30 - type: Transform -- uid: 1185 - type: WallSolid - components: - - pos: -44.5,19.5 - parent: 30 - type: Transform -- uid: 1186 - type: WallSolid - components: - - pos: -44.5,20.5 - parent: 30 - type: Transform -- uid: 1187 - type: WallSolid - components: - - pos: -43.5,20.5 - parent: 30 - type: Transform -- uid: 1188 - type: WallSolid - components: - - pos: -42.5,20.5 - parent: 30 - type: Transform -- uid: 1189 - type: WallSolid - components: - - pos: -41.5,20.5 - parent: 30 - type: Transform -- uid: 1190 - type: WallSolid - components: - - pos: -40.5,20.5 - parent: 30 - type: Transform -- uid: 1191 - type: WallSolid - components: - - pos: -39.5,20.5 - parent: 30 - type: Transform -- uid: 1192 - type: WallSolid - components: - - pos: -38.5,20.5 - parent: 30 - type: Transform -- uid: 1193 - type: WallSolid - components: - - pos: -38.5,19.5 - parent: 30 - type: Transform -- uid: 1194 - type: WallSolid - components: - - pos: -38.5,18.5 - parent: 30 - type: Transform -- uid: 1195 - type: WallSolid - components: - - pos: -38.5,17.5 - parent: 30 - type: Transform -- uid: 1196 - type: WallSolid - components: - - pos: -37.5,20.5 - parent: 30 - type: Transform -- uid: 1197 - type: Grille - components: - - pos: -58.5,12.5 - parent: 30 - type: Transform -- uid: 1198 - type: Grille - components: - - pos: -59.5,12.5 - parent: 30 - type: Transform -- uid: 1199 - type: Grille - components: - - pos: -60.5,12.5 - parent: 30 - type: Transform -- uid: 1200 - type: Grille - components: - - pos: -61.5,12.5 - parent: 30 - type: Transform -- uid: 1201 - type: Grille - components: - - pos: -62.5,12.5 - parent: 30 - type: Transform -- uid: 1202 - type: Grille - components: - - pos: -62.5,14.5 - parent: 30 - type: Transform -- uid: 1203 - type: Grille - components: - - pos: -61.5,14.5 - parent: 30 - type: Transform -- uid: 1204 - type: Grille - components: - - pos: -59.5,14.5 - parent: 30 - type: Transform -- uid: 1205 - type: Grille - components: - - pos: -58.5,14.5 - parent: 30 - type: Transform -- uid: 1206 - type: ReinforcedWindow - components: - - pos: -58.5,20.5 - parent: 30 - type: Transform -- uid: 1207 - type: Grille - components: - - pos: -59.5,16.5 - parent: 30 - type: Transform -- uid: 1208 - type: Grille - components: - - pos: -61.5,16.5 - parent: 30 - type: Transform -- uid: 1209 - type: Grille - components: - - pos: -62.5,16.5 - parent: 30 - type: Transform -- uid: 1210 - type: Grille - components: - - pos: -58.5,17.5 - parent: 30 - type: Transform -- uid: 1211 - type: Grille - components: - - pos: -58.5,18.5 - parent: 30 - type: Transform -- uid: 1212 - type: Grille - components: - - pos: -58.5,19.5 - parent: 30 - type: Transform -- uid: 1213 - type: Grille - components: - - pos: -58.5,16.5 - parent: 30 - type: Transform -- uid: 1214 - type: Grille - components: - - pos: -59.5,20.5 - parent: 30 - type: Transform -- uid: 1215 - type: Grille - components: - - pos: -60.5,20.5 - parent: 30 - type: Transform -- uid: 1216 - type: Grille - components: - - pos: -61.5,20.5 - parent: 30 - type: Transform -- uid: 1217 - type: Grille - components: - - pos: -62.5,20.5 - parent: 30 - type: Transform -- uid: 1218 - type: Grille - components: - - pos: -62.5,22.5 - parent: 30 - type: Transform -- uid: 1219 - type: Grille - components: - - pos: -61.5,22.5 - parent: 30 - type: Transform -- uid: 1220 - type: Grille - components: - - pos: -59.5,22.5 - parent: 30 - type: Transform -- uid: 1221 - type: Grille - components: - - pos: -58.5,22.5 - parent: 30 - type: Transform -- uid: 1222 - type: Grille - components: - - pos: -58.5,24.5 - parent: 30 - type: Transform -- uid: 1223 - type: Grille - components: - - pos: -59.5,24.5 - parent: 30 - type: Transform -- uid: 1224 - type: Grille - components: - - pos: -61.5,24.5 - parent: 30 - type: Transform -- uid: 1225 - type: Grille - components: - - pos: -62.5,24.5 - parent: 30 - type: Transform -- uid: 1226 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -52.5,19.5 - parent: 30 - type: Transform -- uid: 1227 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -52.5,18.5 - parent: 30 - type: Transform -- uid: 1228 - type: TargetClown - components: - - rot: -1.5707963267948966 rad - pos: -40.5,59.5 - parent: 30 - type: Transform -- uid: 1229 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -52.5,17.5 - parent: 30 - type: Transform -- uid: 1230 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -54.5,19.5 - parent: 30 - type: Transform -- uid: 1231 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -54.5,18.5 - parent: 30 - type: Transform -- uid: 1232 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -54.5,17.5 - parent: 30 - type: Transform -- uid: 1233 - type: StatueVenusRed - components: - - pos: -53.5,18.5 - parent: 30 - type: Transform -- uid: 1234 - type: WindowReinforcedDirectional - components: - - pos: -53.5,17.5 - parent: 30 - type: Transform -- uid: 1235 - type: WindowReinforcedDirectional - components: - - pos: -52.5,17.5 - parent: 30 - type: Transform -- uid: 1236 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -54.5,19.5 - parent: 30 - type: Transform -- uid: 1237 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -53.5,19.5 - parent: 30 - type: Transform -- uid: 1238 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -55.5,17.5 - parent: 30 - type: Transform -- uid: 1239 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -55.5,18.5 - parent: 30 - type: Transform -- uid: 1240 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -55.5,19.5 - parent: 30 - type: Transform -- uid: 1241 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -51.5,17.5 - parent: 30 - type: Transform -- uid: 1242 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -51.5,18.5 - parent: 30 - type: Transform -- uid: 1243 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -51.5,19.5 - parent: 30 - type: Transform -- uid: 1244 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -51.5,15.5 - parent: 30 - type: Transform -- uid: 1245 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -52.5,15.5 - parent: 30 - type: Transform -- uid: 1246 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -53.5,15.5 - parent: 30 - type: Transform -- uid: 1247 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -54.5,15.5 - parent: 30 - type: Transform -- uid: 1248 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -55.5,15.5 - parent: 30 - type: Transform -- uid: 1249 - type: Chair - components: - - pos: -55.5,13.5 - parent: 30 - type: Transform -- uid: 1250 - type: Chair - components: - - pos: -54.5,13.5 - parent: 30 - type: Transform -- uid: 1251 - type: Chair - components: - - pos: -53.5,13.5 - parent: 30 - type: Transform -- uid: 1252 - type: Chair - components: - - pos: -52.5,13.5 - parent: 30 - type: Transform -- uid: 1253 - type: Chair - components: - - pos: -51.5,13.5 - parent: 30 - type: Transform -- uid: 1254 - type: Chair - components: - - pos: -51.5,21.5 - parent: 30 - type: Transform -- uid: 1255 - type: Chair - components: - - pos: -52.5,21.5 - parent: 30 - type: Transform -- uid: 1256 - type: Chair - components: - - pos: -53.5,21.5 - parent: 30 - type: Transform -- uid: 1257 - type: Chair - components: - - pos: -54.5,21.5 - parent: 30 - type: Transform -- uid: 1258 - type: Chair - components: - - pos: -55.5,21.5 - parent: 30 - type: Transform -- uid: 1259 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -55.5,23.5 - parent: 30 - type: Transform -- uid: 1260 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -54.5,23.5 - parent: 30 - type: Transform -- uid: 1261 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -53.5,23.5 - parent: 30 - type: Transform -- uid: 1262 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -52.5,23.5 - parent: 30 - type: Transform -- uid: 1263 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -51.5,23.5 - parent: 30 - type: Transform -- uid: 1264 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -55.5,22.5 - parent: 30 - type: Transform -- uid: 1265 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -53.5,22.5 - parent: 30 - type: Transform -- uid: 1266 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -51.5,22.5 - parent: 30 - type: Transform -- uid: 1267 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -54.5,22.5 - parent: 30 - type: Transform -- uid: 1268 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -51.5,14.5 - parent: 30 - type: Transform -- uid: 1269 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -53.5,14.5 - parent: 30 - type: Transform -- uid: 1270 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -55.5,14.5 - parent: 30 - type: Transform -- uid: 1271 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -52.5,22.5 - parent: 30 - type: Transform -- uid: 1272 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -52.5,14.5 - parent: 30 - type: Transform -- uid: 1273 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -54.5,14.5 - parent: 30 - type: Transform -- uid: 1274 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -52.5,19.5 - parent: 30 - type: Transform -- uid: 1275 - type: ClosetEmergencyFilledRandom - components: - - pos: -48.5,19.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1276 - type: ClosetEmergencyFilledRandom - components: - - pos: -48.5,18.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1277 - type: ClosetFireFilled - components: - - pos: -48.5,17.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1278 - type: RandomVendingDrinks - components: - - pos: -48.5,22.5 - parent: 30 - type: Transform -- uid: 1279 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -48.5,23.5 - parent: 30 - type: Transform -- uid: 1280 - type: RandomVendingDrinks - components: - - pos: -54.5,10.5 - parent: 30 - type: Transform -- uid: 1281 - type: BlockGameArcade - components: - - pos: -49.5,25.5 - parent: 30 - type: Transform -- uid: 1282 - type: Table - components: - - pos: -55.5,25.5 - parent: 30 - type: Transform -- uid: 1283 - type: Table - components: - - pos: -51.5,25.5 - parent: 30 - type: Transform -- uid: 1284 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -54.5,25.5 - parent: 30 - type: Transform -- uid: 1285 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -56.5,25.5 - parent: 30 - type: Transform -- uid: 1286 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -52.5,25.5 - parent: 30 - type: Transform -- uid: 1287 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -50.5,25.5 - parent: 30 - type: Transform -- uid: 1288 - type: DisposalUnit - components: - - pos: -57.5,25.5 - parent: 30 - type: Transform -- uid: 1289 - type: AirlockMaintLocked - components: - - pos: -53.5,26.5 - parent: 30 - type: Transform -- uid: 1290 - type: WallReinforced - components: - - pos: -50.5,6.5 - parent: 30 - type: Transform -- uid: 1291 - type: Grille - components: - - pos: -49.5,-6.5 - parent: 30 - type: Transform -- uid: 1292 - type: Grille - components: - - pos: -54.5,-6.5 - parent: 30 - type: Transform -- uid: 1293 - type: WallReinforced - components: - - pos: -46.5,-7.5 - parent: 30 - type: Transform -- uid: 1294 - type: WallReinforced - components: - - pos: -47.5,-7.5 - parent: 30 - type: Transform -- uid: 1295 - type: AirlockGlass - components: - - pos: -48.5,-5.5 - parent: 30 - type: Transform -- uid: 1296 - type: CableMV - components: - - pos: -45.5,10.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1297 - type: CableHV - components: - - pos: -45.5,8.5 - parent: 30 - type: Transform -- uid: 1298 - type: ReinforcedWindow - components: - - pos: -48.5,-9.5 - parent: 30 - type: Transform -- uid: 1299 - type: ReinforcedWindow - components: - - pos: -46.5,-9.5 - parent: 30 - type: Transform -- uid: 1300 - type: ReinforcedWindow - components: - - pos: -47.5,-9.5 - parent: 30 - type: Transform -- uid: 1301 - type: CableHV - components: - - pos: -46.5,8.5 - parent: 30 - type: Transform -- uid: 1302 - type: CableApcExtension - components: - - pos: -43.5,-0.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1303 - type: WallReinforced - components: - - pos: -52.5,6.5 - parent: 30 - type: Transform -- uid: 1304 - type: Grille - components: - - pos: -48.5,-9.5 - parent: 30 - type: Transform -- uid: 1305 - type: Grille - components: - - pos: -47.5,-9.5 - parent: 30 - type: Transform -- uid: 1306 - type: Grille - components: - - pos: -46.5,-9.5 - parent: 30 - type: Transform -- uid: 1307 - type: AirlockExternalGlassShuttleEscape - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-8.5 - parent: 30 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 1308 - type: SignEscapePods - components: - - pos: -47.5,-10.5 - parent: 30 - type: Transform -- uid: 1309 - type: WallReinforced - components: - - pos: -47.5,-10.5 - parent: 30 - type: Transform -- uid: 1310 - type: WallReinforced - components: - - pos: -46.5,-10.5 - parent: 30 - type: Transform -- uid: 1311 - type: WallSolid - components: - - pos: -43.5,-10.5 - parent: 30 - type: Transform -- uid: 1312 - type: WallSolid - components: - - pos: -43.5,-9.5 - parent: 30 - type: Transform -- uid: 1313 - type: WallSolid - components: - - pos: -43.5,-7.5 - parent: 30 - type: Transform -- uid: 1314 - type: WallSolid - components: - - pos: -43.5,-6.5 - parent: 30 - type: Transform -- uid: 1315 - type: WallSolid - components: - - pos: -42.5,-2.5 - parent: 30 - type: Transform -- uid: 1316 - type: WallSolid - components: - - pos: -42.5,-3.5 - parent: 30 - type: Transform -- uid: 1317 - type: WallSolid - components: - - pos: -42.5,-4.5 - parent: 30 - type: Transform -- uid: 1318 - type: WallSolid - components: - - pos: -42.5,-6.5 - parent: 30 - type: Transform -- uid: 1319 - type: WallSolid - components: - - pos: -42.5,-5.5 - parent: 30 - type: Transform -- uid: 1320 - type: WallReinforced - components: - - pos: -47.5,-12.5 - parent: 30 - type: Transform -- uid: 1321 - type: WallSolid - components: - - pos: -43.5,-11.5 - parent: 30 - type: Transform -- uid: 1322 - type: WallSolid - components: - - pos: -43.5,-12.5 - parent: 30 - type: Transform -- uid: 1323 - type: WallSolid - components: - - pos: -43.5,-13.5 - parent: 30 - type: Transform -- uid: 1324 - type: AirlockMaintLocked - components: - - pos: -43.5,-14.5 - parent: 30 - type: Transform -- uid: 1325 - type: WallReinforced - components: - - pos: -47.5,-16.5 - parent: 30 - type: Transform -- uid: 1326 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-13.5 - parent: 30 - type: Transform -- uid: 1327 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-15.5 - parent: 30 - type: Transform -- uid: 1328 - type: WallReinforced - components: - - pos: -47.5,-14.5 - parent: 30 - type: Transform -- uid: 1329 - type: ReinforcedWindow - components: - - pos: -47.5,-11.5 - parent: 30 - type: Transform -- uid: 1330 - type: Grille - components: - - pos: -47.5,-11.5 - parent: 30 - type: Transform -- uid: 1331 - type: AirlockGlass - components: - - pos: -45.5,-10.5 - parent: 30 - type: Transform -- uid: 1332 - type: AirlockGlass - components: - - pos: -44.5,-10.5 - parent: 30 - type: Transform -- uid: 1333 - type: AirlockMaintLocked - components: - - pos: -43.5,-8.5 - parent: 30 - type: Transform -- uid: 1334 - type: AirlockMaintLocked - components: - - pos: -36.5,-2.5 - parent: 30 - type: Transform -- uid: 1335 - type: Table - components: - - pos: -45.5,12.5 - parent: 30 - type: Transform -- uid: 1336 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -44.5,12.5 - parent: 30 - type: Transform -- uid: 1337 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -46.5,12.5 - parent: 30 - type: Transform -- uid: 1338 - type: SignDirectionalEvac - components: - - rot: -1.5707963267948966 rad - pos: -41.5,16.5 - parent: 30 - type: Transform -- uid: 1339 - type: AirlockEngineeringLocked - components: - - pos: -40.5,16.5 - parent: 30 - type: Transform -- uid: 1340 - type: ShuttersNormal - components: - - pos: -42.5,16.5 - parent: 30 - type: Transform -- uid: 1341 - type: ShuttersNormal - components: - - pos: -43.5,16.5 - parent: 30 - type: Transform -- uid: 1342 - type: ReinforcedWindow - components: - - pos: -42.5,16.5 - parent: 30 - type: Transform -- uid: 1343 - type: ReinforcedWindow - components: - - pos: -43.5,16.5 - parent: 30 - type: Transform -- uid: 1344 - type: Grille - components: - - pos: -43.5,16.5 - parent: 30 - type: Transform -- uid: 1345 - type: Grille - components: - - pos: -42.5,16.5 - parent: 30 - type: Transform -- uid: 1346 - type: ClosetEmergencyFilledRandom - components: - - pos: -37.5,18.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1347 - type: ClosetEmergencyFilledRandom - components: - - pos: -37.5,19.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1348 - type: ClosetFireFilled - components: - - pos: -37.5,17.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1349 - type: SheetSteel - components: - - pos: -37.50003,55.530113 - parent: 30 - type: Transform -- uid: 1350 - type: WallSolid - components: - - pos: -37.5,21.5 - parent: 30 - type: Transform -- uid: 1351 - type: WallSolid - components: - - pos: -37.5,22.5 - parent: 30 - type: Transform -- uid: 1352 - type: WallReinforced - components: - - pos: -37.5,24.5 - parent: 30 - type: Transform -- uid: 1353 - type: WallReinforced - components: - - pos: -38.5,24.5 - parent: 30 - type: Transform -- uid: 1354 - type: Window - components: - - pos: -32.5,28.5 - parent: 30 - type: Transform -- uid: 1355 - type: WallSolid - components: - - pos: -33.5,28.5 - parent: 30 - type: Transform -- uid: 1356 - type: WallSolid - components: - - pos: -33.5,29.5 - parent: 30 - type: Transform -- uid: 1357 - type: AirlockCaptainLocked - components: - - pos: -37.5,25.5 - parent: 30 - type: Transform -- uid: 1358 - type: WallReinforced - components: - - pos: -37.5,26.5 - parent: 30 - type: Transform -- uid: 1359 - type: WallReinforced - components: - - pos: -37.5,28.5 - parent: 30 - type: Transform -- uid: 1360 - type: WallReinforced - components: - - pos: -37.5,27.5 - parent: 30 - type: Transform -- uid: 1361 - type: WallSolid - components: - - pos: -37.5,29.5 - parent: 30 - type: Transform -- uid: 1362 - type: AirlockGlass - components: - - pos: -34.5,29.5 - parent: 30 - type: Transform -- uid: 1363 - type: AirlockGlass - components: - - pos: -35.5,29.5 - parent: 30 - type: Transform -- uid: 1364 - type: AirlockGlass - components: - - pos: -36.5,29.5 - parent: 30 - type: Transform -- uid: 1365 - type: Window - components: - - pos: -38.5,34.5 - parent: 30 - type: Transform -- uid: 1366 - type: Window - components: - - pos: -37.5,33.5 - parent: 30 - type: Transform -- uid: 1367 - type: Window - components: - - pos: -37.5,32.5 - parent: 30 - type: Transform -- uid: 1368 - type: Window - components: - - pos: -37.5,31.5 - parent: 30 - type: Transform -- uid: 1369 - type: Window - components: - - pos: -37.5,30.5 - parent: 30 - type: Transform -- uid: 1370 - type: WallSolid - components: - - pos: -37.5,34.5 - parent: 30 - type: Transform -- uid: 1371 - type: WallSolid - components: - - pos: -39.5,34.5 - parent: 30 - type: Transform -- uid: 1372 - type: WallReinforced - components: - - pos: -40.5,28.5 - parent: 30 - type: Transform -- uid: 1373 - type: WallReinforced - components: - - pos: -40.5,29.5 - parent: 30 - type: Transform -- uid: 1374 - type: ReinforcedWindow - components: - - pos: -40.5,32.5 - parent: 30 - type: Transform -- uid: 1375 - type: ReinforcedWindow - components: - - pos: -40.5,31.5 - parent: 30 - type: Transform -- uid: 1376 - type: WallReinforced - components: - - pos: -38.5,28.5 - parent: 30 - type: Transform -- uid: 1377 - type: ReinforcedWindow - components: - - pos: -40.5,30.5 - parent: 30 - type: Transform -- uid: 1378 - type: WallReinforced - components: - - pos: -39.5,28.5 - parent: 30 - type: Transform -- uid: 1379 - type: WallReinforced - components: - - pos: -40.5,34.5 - parent: 30 - type: Transform -- uid: 1380 - type: WallReinforced - components: - - pos: -40.5,33.5 - parent: 30 - type: Transform -- uid: 1381 - type: SignDirectionalEvac - components: - - pos: -37.5,28.5 - parent: 30 - type: Transform -- uid: 1382 - type: WallReinforced - components: - - pos: -37.5,23.5 - parent: 30 - type: Transform -- uid: 1383 - type: SignEVA - components: - - pos: -4.5,24.5 - parent: 30 - type: Transform -- uid: 1384 - type: SignBar - components: - - pos: -0.5,4.5 - parent: 30 - type: Transform -- uid: 1385 - type: SignHydro3 - components: - - pos: -22.5,8.5 - parent: 30 - type: Transform -- uid: 1386 - type: SignHydro2 - components: - - pos: -29.5,4.5 - parent: 30 - type: Transform -- uid: 1387 - type: PosterLegitCleanliness - components: - - pos: -33.5,9.5 - parent: 30 - type: Transform -- uid: 1388 - type: SpawnPointJanitor - components: - - pos: -31.5,12.5 - parent: 30 - type: Transform -- uid: 1389 - type: SpawnPointJanitor - components: - - pos: -31.5,9.5 - parent: 30 - type: Transform -- uid: 1390 - type: Grille - components: - - pos: -37.5,30.5 - parent: 30 - type: Transform -- uid: 1391 - type: Grille - components: - - pos: -37.5,31.5 - parent: 30 - type: Transform -- uid: 1392 - type: Grille - components: - - pos: -37.5,32.5 - parent: 30 - type: Transform -- uid: 1393 - type: Grille - components: - - pos: -37.5,33.5 - parent: 30 - type: Transform -- uid: 1394 - type: Grille - components: - - pos: -38.5,34.5 - parent: 30 - type: Transform -- uid: 1395 - type: RandomPosterLegit - components: - - pos: -56.5,11.5 - parent: 30 - type: Transform -- uid: 1396 - type: RandomPosterLegit - components: - - pos: -53.5,11.5 - parent: 30 - type: Transform -- uid: 1397 - type: ChairOfficeDark - components: - - pos: -30.5,39.5 - parent: 30 - type: Transform -- uid: 1398 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-4.5 - parent: 30 - type: Transform -- uid: 1399 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-3.5 - parent: 30 - type: Transform -- uid: 1400 - type: Table - components: - - pos: -43.5,-2.5 - parent: 30 - type: Transform -- uid: 1401 - type: Table - components: - - pos: -43.5,-5.5 - parent: 30 - type: Transform -- uid: 1402 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -52.5,51.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1403 - type: BoxFolderGrey - components: - - pos: -43.46808,-5.445975 - parent: 30 - type: Transform -- uid: 1404 - type: Pen - components: - - pos: -43.31183,-5.258475 - parent: 30 - type: Transform -- uid: 1405 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -48.5,13.5 - parent: 30 - type: Transform -- uid: 1406 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -48.5,14.5 - parent: 30 - type: Transform -- uid: 1407 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -48.5,15.5 - parent: 30 - type: Transform -- uid: 1408 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -37.5,5.5 - parent: 30 - type: Transform -- uid: 1409 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -37.5,6.5 - parent: 30 - type: Transform -- uid: 1410 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -37.5,7.5 - parent: 30 - type: Transform -- uid: 1411 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -37.5,13.5 - parent: 30 - type: Transform -- uid: 1412 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -37.5,14.5 - parent: 30 - type: Transform -- uid: 1413 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -37.5,15.5 - parent: 30 - type: Transform -- uid: 1414 - type: SubstationBasic - components: - - name: South Arrivals Substation - type: MetaData - - pos: -44.5,10.5 - parent: 30 - type: Transform -- uid: 1415 - type: GasPipeStraight - components: - - pos: -47.5,9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1416 - type: AirlockMaintLocked - components: - - pos: -46.5,34.5 - parent: 30 - type: Transform -- uid: 1417 - type: WallReinforced - components: - - pos: -41.5,28.5 - parent: 30 - type: Transform -- uid: 1418 - type: WallReinforced - components: - - pos: -42.5,28.5 - parent: 30 - type: Transform -- uid: 1419 - type: WallReinforced - components: - - pos: -45.5,34.5 - parent: 30 - type: Transform -- uid: 1420 - type: WallReinforced - components: - - pos: -45.5,33.5 - parent: 30 - type: Transform -- uid: 1421 - type: WallReinforced - components: - - pos: -45.5,32.5 - parent: 30 - type: Transform -- uid: 1422 - type: WallReinforced - components: - - pos: -45.5,31.5 - parent: 30 - type: Transform -- uid: 1423 - type: AirlockMaintSecLocked - components: - - pos: -45.5,30.5 - parent: 30 - type: Transform -- uid: 1424 - type: WallReinforced - components: - - pos: -45.5,29.5 - parent: 30 - type: Transform -- uid: 1425 - type: WallReinforced - components: - - pos: -45.5,28.5 - parent: 30 - type: Transform -- uid: 1426 - type: WallReinforced - components: - - pos: -44.5,28.5 - parent: 30 - type: Transform -- uid: 1427 - type: WallReinforced - components: - - pos: -43.5,28.5 - parent: 30 - type: Transform -- uid: 1428 - type: WallReinforced - components: - - pos: -43.5,34.5 - parent: 30 - type: Transform -- uid: 1429 - type: WallReinforced - components: - - pos: -44.5,34.5 - parent: 30 - type: Transform -- uid: 1430 - type: ReinforcedWindow - components: - - pos: -42.5,34.5 - parent: 30 - type: Transform -- uid: 1431 - type: AirlockSecurityLocked - components: - - pos: -41.5,34.5 - parent: 30 - type: Transform -- uid: 1432 - type: Grille - components: - - pos: -42.5,34.5 - parent: 30 - type: Transform -- uid: 1433 - type: DisposalUnit - components: - - pos: -44.5,32.5 - parent: 30 - type: Transform -- uid: 1434 - type: TableWood - components: - - pos: -43.5,33.5 - parent: 30 - type: Transform -- uid: 1435 - type: TableWood - components: - - pos: -44.5,33.5 - parent: 30 - type: Transform -- uid: 1436 - type: TableWood - components: - - pos: -42.5,31.5 - parent: 30 - type: Transform -- uid: 1437 - type: TableWood - components: - - pos: -43.5,31.5 - parent: 30 - type: Transform -- uid: 1438 - type: VendingMachineDetDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -44.5,29.5 - parent: 30 - type: Transform -- uid: 1439 - type: CigPackGreen - components: - - pos: -43.10302,31.706226 - parent: 30 - type: Transform -- uid: 1440 - type: ComputerTelevision - components: - - pos: -42.5,31.5 - parent: 30 - type: Transform -- uid: 1441 - type: Lamp - components: - - pos: -43.612717,31.902554 - parent: 30 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 1442 - type: FirelockGlass - components: - - pos: -14.5,22.5 - parent: 30 - type: Transform -- uid: 1443 - type: FirelockGlass - components: - - pos: -42.5,45.5 - parent: 30 - type: Transform -- uid: 1444 - type: DrinkGlass - components: - - pos: -43.741837,33.578053 - parent: 30 - type: Transform -- uid: 1445 - type: DrinkGlass - components: - - pos: -43.41371,33.562428 - parent: 30 - type: Transform -- uid: 1446 - type: ComputerCrewMonitoring - components: - - rot: 3.141592653589793 rad - pos: -43.5,29.5 - parent: 30 - type: Transform -- uid: 1447 - type: ComputerCriminalRecords - components: - - rot: 3.141592653589793 rad - pos: -42.5,29.5 - parent: 30 - type: Transform -- uid: 1448 - type: ComputerStationRecords - components: - - rot: 3.141592653589793 rad - pos: -41.5,29.5 - parent: 30 - type: Transform -- uid: 1449 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -42.5,30.5 - parent: 30 - type: Transform -- uid: 1450 - type: Carpet - components: - - pos: -44.5,29.5 - parent: 30 - type: Transform -- uid: 1451 - type: Carpet - components: - - pos: -44.5,30.5 - parent: 30 - type: Transform -- uid: 1452 - type: Carpet - components: - - pos: -43.5,30.5 - parent: 30 - type: Transform -- uid: 1453 - type: Carpet - components: - - pos: -43.5,29.5 - parent: 30 - type: Transform -- uid: 1454 - type: Carpet - components: - - pos: -42.5,29.5 - parent: 30 - type: Transform -- uid: 1455 - type: Carpet - components: - - pos: -42.5,30.5 - parent: 30 - type: Transform -- uid: 1456 - type: Carpet - components: - - pos: -41.5,29.5 - parent: 30 - type: Transform -- uid: 1457 - type: Carpet - components: - - pos: -41.5,30.5 - parent: 30 - type: Transform -- uid: 1458 - type: Carpet - components: - - pos: -42.5,31.5 - parent: 30 - type: Transform -- uid: 1459 - type: Carpet - components: - - pos: -43.5,31.5 - parent: 30 - type: Transform -- uid: 1460 - type: LockerDetectiveFilled - components: - - pos: -44.5,31.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1461 - type: ClothingEyesGlassesSecurity - components: - - pos: -43.337395,31.456226 - parent: 30 - type: Transform -- uid: 1462 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -45.5,32.5 - parent: 30 - type: Transform -- uid: 1463 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -47.5,28.5 - parent: 30 - type: Transform -- uid: 1464 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -47.5,29.5 - parent: 30 - type: Transform -- uid: 1465 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -47.5,30.5 - parent: 30 - type: Transform -- uid: 1466 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -47.5,31.5 - parent: 30 - type: Transform -- uid: 1467 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -47.5,32.5 - parent: 30 - type: Transform -- uid: 1468 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -47.5,33.5 - parent: 30 - type: Transform -- uid: 1469 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -47.5,34.5 - parent: 30 - type: Transform -- uid: 1470 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -48.5,28.5 - parent: 30 - type: Transform -- uid: 1471 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -49.5,28.5 - parent: 30 - type: Transform -- uid: 1472 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -50.5,28.5 - parent: 30 - type: Transform -- uid: 1473 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -51.5,28.5 - parent: 30 - type: Transform -- uid: 1474 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -51.5,34.5 - parent: 30 - type: Transform -- uid: 1475 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -51.5,35.5 - parent: 30 - type: Transform -- uid: 1476 - type: ReinforcedWindow - components: - - pos: -51.5,36.5 - parent: 30 - type: Transform -- uid: 1477 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -51.5,37.5 - parent: 30 - type: Transform -- uid: 1478 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -51.5,38.5 - parent: 30 - type: Transform -- uid: 1479 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -54.5,34.5 - parent: 30 - type: Transform -- uid: 1480 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -54.5,31.5 - parent: 30 - type: Transform -- uid: 1481 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -54.5,33.5 - parent: 30 - type: Transform -- uid: 1482 - type: AirlockBrigLocked - components: - - pos: -54.5,32.5 - parent: 30 - type: Transform -- uid: 1483 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -54.5,30.5 - parent: 30 - type: Transform -- uid: 1484 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -54.5,29.5 - parent: 30 - type: Transform -- uid: 1485 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -54.5,28.5 - parent: 30 - type: Transform -- uid: 1486 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -53.5,28.5 - parent: 30 - type: Transform -- uid: 1487 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -52.5,28.5 - parent: 30 - type: Transform -- uid: 1488 - type: AirlockBrigGlassLocked - components: - - pos: -49.5,34.5 - parent: 30 - type: Transform -- uid: 1489 - type: ReinforcedWindow - components: - - pos: -52.5,34.5 - parent: 30 - type: Transform -- uid: 1490 - type: ReinforcedWindow - components: - - pos: -53.5,34.5 - parent: 30 - type: Transform -- uid: 1491 - type: ReinforcedWindow - components: - - pos: -50.5,34.5 - parent: 30 - type: Transform -- uid: 1492 - type: ReinforcedWindow - components: - - pos: -48.5,34.5 - parent: 30 - type: Transform -- uid: 1493 - type: Grille - components: - - pos: -53.5,34.5 - parent: 30 - type: Transform -- uid: 1494 - type: Grille - components: - - pos: -52.5,34.5 - parent: 30 - type: Transform -- uid: 1495 - type: Grille - components: - - pos: -50.5,34.5 - parent: 30 - type: Transform -- uid: 1496 - type: Grille - components: - - pos: -48.5,34.5 - parent: 30 - type: Transform -- uid: 1497 - type: VendingMachineLawDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -48.5,33.5 - parent: 30 - type: Transform -- uid: 1498 - type: Carpet - components: - - pos: -49.5,29.5 - parent: 30 - type: Transform -- uid: 1499 - type: Carpet - components: - - pos: -48.5,29.5 - parent: 30 - type: Transform -- uid: 1500 - type: Carpet - components: - - pos: -48.5,30.5 - parent: 30 - type: Transform -- uid: 1501 - type: Carpet - components: - - pos: -48.5,31.5 - parent: 30 - type: Transform -- uid: 1502 - type: Carpet - components: - - pos: -49.5,31.5 - parent: 30 - type: Transform -- uid: 1503 - type: Carpet - components: - - pos: -49.5,30.5 - parent: 30 - type: Transform -- uid: 1504 - type: Carpet - components: - - pos: -50.5,29.5 - parent: 30 - type: Transform -- uid: 1505 - type: Carpet - components: - - pos: -50.5,30.5 - parent: 30 - type: Transform -- uid: 1506 - type: Carpet - components: - - pos: -50.5,31.5 - parent: 30 - type: Transform -- uid: 1507 - type: DisposalUnit - components: - - pos: -48.5,31.5 - parent: 30 - type: Transform -- uid: 1508 - type: TableWood - components: - - pos: -48.5,29.5 - parent: 30 - type: Transform -- uid: 1509 - type: TableWood - components: - - pos: -48.5,30.5 - parent: 30 - type: Transform -- uid: 1510 - type: TableWood - components: - - pos: -49.5,30.5 - parent: 30 - type: Transform -- uid: 1511 - type: TableWood - components: - - pos: -50.5,30.5 - parent: 30 - type: Transform -- uid: 1512 - type: TableWood - components: - - pos: -53.5,29.5 - parent: 30 - type: Transform -- uid: 1513 - type: TableWood - components: - - pos: -52.5,29.5 - parent: 30 - type: Transform -- uid: 1514 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -50.5,29.5 - parent: 30 - type: Transform -- uid: 1515 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -49.5,29.5 - parent: 30 - type: Transform -- uid: 1516 - type: Chair - components: - - pos: -49.5,31.5 - parent: 30 - type: Transform -- uid: 1517 - type: Chair - components: - - pos: -50.5,31.5 - parent: 30 - type: Transform -- uid: 1518 - type: LampGold - components: - - pos: -50.531364,30.771608 - parent: 30 - type: Transform -- uid: 1519 - type: BoxFolderBlue - components: - - pos: -49.812614,30.586998 - parent: 30 - type: Transform -- uid: 1520 - type: BoxFolderRed - components: - - pos: -49.281364,30.586998 - parent: 30 - type: Transform -- uid: 1521 - type: ClothingEyesGlassesSunglasses - components: - - pos: -48.531364,30.586998 - parent: 30 - type: Transform -- uid: 1522 - type: PottedPlantRandom - components: - - pos: -53.5,31.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1523 - type: ChairOfficeDark - components: - - pos: -52.5,30.5 - parent: 30 - type: Transform -- uid: 1524 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -53.5,33.5 - parent: 30 - type: Transform -- uid: 1525 - type: ComfyChair - components: - - pos: -51.5,33.5 - parent: 30 - type: Transform -- uid: 1526 - type: Rack - components: - - pos: -50.5,33.5 - parent: 30 - type: Transform -- uid: 1527 - type: BriefcaseBrown - components: - - pos: -50.49086,33.632812 - parent: 30 - type: Transform -- uid: 1528 - type: Paper - components: - - pos: -52.780983,29.588736 - parent: 30 - type: Transform -- uid: 1529 - type: Paper - components: - - pos: -52.718483,29.57311 - parent: 30 - type: Transform -- uid: 1530 - type: Paper - components: - - pos: -52.593483,29.54186 - parent: 30 - type: Transform -- uid: 1531 - type: Paper - components: - - pos: -52.437233,29.51061 - parent: 30 - type: Transform -- uid: 1532 - type: Pen - components: - - pos: -48.640358,30.29186 - parent: 30 - type: Transform -- uid: 1533 - type: Pen - components: - - pos: -53.124733,29.47936 - parent: 30 - type: Transform -- uid: 1534 - type: ComputerCriminalRecords - components: - - rot: 1.5707963267948966 rad - pos: -53.5,30.5 - parent: 30 - type: Transform -- uid: 1535 - type: TableCarpet - components: - - pos: -52.5,33.5 - parent: 30 - type: Transform -- uid: 1536 - type: LampGold - components: - - pos: -52.437233,33.682484 - parent: 30 - type: Transform -- uid: 1537 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -48.5,20.5 - parent: 30 - type: Transform -- uid: 1538 - type: ReinforcedWindow - components: - - pos: -50.5,-6.5 - parent: 30 - type: Transform -- uid: 1539 - type: APCBasic - components: - - pos: -37.5,16.5 - parent: 30 - type: Transform -- uid: 1540 - type: WallReinforced - components: - - pos: -58.5,27.5 - parent: 30 - type: Transform -- uid: 1541 - type: WallReinforced - components: - - pos: -58.5,28.5 - parent: 30 - type: Transform -- uid: 1542 - type: WallReinforced - components: - - pos: -62.5,28.5 - parent: 30 - type: Transform -- uid: 1543 - type: WallReinforced - components: - - pos: -62.5,29.5 - parent: 30 - type: Transform -- uid: 1544 - type: WallReinforced - components: - - pos: -62.5,30.5 - parent: 30 - type: Transform -- uid: 1545 - type: WallReinforced - components: - - pos: -62.5,31.5 - parent: 30 - type: Transform -- uid: 1546 - type: WallReinforced - components: - - pos: -61.5,40.5 - parent: 30 - type: Transform -- uid: 1547 - type: WallReinforced - components: - - pos: -61.5,39.5 - parent: 30 - type: Transform -- uid: 1548 - type: WallReinforced - components: - - pos: -61.5,38.5 - parent: 30 - type: Transform -- uid: 1549 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -57.5,34.5 - parent: 30 - type: Transform -- uid: 1550 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -56.5,34.5 - parent: 30 - type: Transform -- uid: 1551 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -55.5,34.5 - parent: 30 - type: Transform -- uid: 1552 - type: WallReinforced - components: - - pos: -58.5,34.5 - parent: 30 - type: Transform -- uid: 1553 - type: ReinforcedWindow - components: - - pos: -59.5,28.5 - parent: 30 - type: Transform -- uid: 1554 - type: ReinforcedWindow - components: - - pos: -60.5,28.5 - parent: 30 - type: Transform -- uid: 1555 - type: ReinforcedWindow - components: - - pos: -61.5,28.5 - parent: 30 - type: Transform -- uid: 1556 - type: Grille - components: - - pos: -61.5,28.5 - parent: 30 - type: Transform -- uid: 1557 - type: Grille - components: - - pos: -60.5,28.5 - parent: 30 - type: Transform -- uid: 1558 - type: Grille - components: - - pos: -59.5,28.5 - parent: 30 - type: Transform -- uid: 1559 - type: MagazineRifle - components: - - pos: -41.330307,56.67169 - parent: 30 - type: Transform -- uid: 1560 - type: SubstationWallBasic - components: - - pos: -3.5,18.5 - parent: 30 - type: Transform -- uid: 1561 - type: WallSolid - components: - - pos: -58.5,31.5 - parent: 30 - type: Transform -- uid: 1562 - type: WallSolid - components: - - pos: -58.5,32.5 - parent: 30 - type: Transform -- uid: 1563 - type: WeaponDisabler - components: - - pos: -32.77784,56.587643 - parent: 30 - type: Transform -- uid: 1564 - type: SubstationWallBasic - components: - - pos: -29.5,20.5 - parent: 30 - type: Transform -- uid: 1565 - type: ReinforcedWindow - components: - - pos: -55.5,-6.5 - parent: 30 - type: Transform -- uid: 1566 - type: ReinforcedWindow - components: - - pos: -56.5,-6.5 - parent: 30 - type: Transform -- uid: 1567 - type: WallSolid - components: - - pos: -23.5,28.5 - parent: 30 - type: Transform -- uid: 1568 - type: WallReinforced - components: - - pos: -28.5,34.5 - parent: 30 - type: Transform -- uid: 1569 - type: WallReinforced - components: - - pos: -27.5,34.5 - parent: 30 - type: Transform -- uid: 1570 - type: WallReinforced - components: - - pos: -26.5,34.5 - parent: 30 - type: Transform -- uid: 1571 - type: WallReinforced - components: - - pos: -24.5,34.5 - parent: 30 - type: Transform -- uid: 1572 - type: WallReinforced - components: - - pos: -25.5,34.5 - parent: 30 - type: Transform -- uid: 1573 - type: WallReinforced - components: - - pos: -23.5,34.5 - parent: 30 - type: Transform -- uid: 1574 - type: WallReinforced - components: - - pos: -23.5,33.5 - parent: 30 - type: Transform -- uid: 1575 - type: WallReinforced - components: - - pos: -23.5,32.5 - parent: 30 - type: Transform -- uid: 1576 - type: WallReinforced - components: - - pos: -23.5,31.5 - parent: 30 - type: Transform -- uid: 1577 - type: WallReinforced - components: - - pos: -23.5,30.5 - parent: 30 - type: Transform -- uid: 1578 - type: WallReinforced - components: - - pos: -23.5,29.5 - parent: 30 - type: Transform -- uid: 1579 - type: WallSolid - components: - - pos: -27.5,28.5 - parent: 30 - type: Transform -- uid: 1580 - type: WallSolid - components: - - pos: -28.5,28.5 - parent: 30 - type: Transform -- uid: 1581 - type: WallSolid - components: - - pos: -29.5,28.5 - parent: 30 - type: Transform -- uid: 1582 - type: WallSolid - components: - - pos: -33.5,30.5 - parent: 30 - type: Transform -- uid: 1583 - type: WallSolid - components: - - pos: -33.5,31.5 - parent: 30 - type: Transform -- uid: 1584 - type: WallSolid - components: - - pos: -33.5,32.5 - parent: 30 - type: Transform -- uid: 1585 - type: WallSolid - components: - - pos: -33.5,33.5 - parent: 30 - type: Transform -- uid: 1586 - type: WallSolid - components: - - pos: -33.5,34.5 - parent: 30 - type: Transform -- uid: 1587 - type: WallSolid - components: - - pos: -32.5,34.5 - parent: 30 - type: Transform -- uid: 1588 - type: WallSolid - components: - - pos: -31.5,34.5 - parent: 30 - type: Transform -- uid: 1589 - type: WallSolid - components: - - pos: -30.5,34.5 - parent: 30 - type: Transform -- uid: 1590 - type: WallSolid - components: - - pos: -29.5,34.5 - parent: 30 - type: Transform -- uid: 1591 - type: WallReinforced - components: - - pos: -28.5,35.5 - parent: 30 - type: Transform -- uid: 1592 - type: WallReinforced - components: - - pos: -28.5,36.5 - parent: 30 - type: Transform -- uid: 1593 - type: WallReinforced - components: - - pos: -28.5,37.5 - parent: 30 - type: Transform -- uid: 1594 - type: WallReinforced - components: - - pos: -28.5,38.5 - parent: 30 - type: Transform -- uid: 1595 - type: Window - components: - - pos: -30.5,28.5 - parent: 30 - type: Transform -- uid: 1596 - type: Window - components: - - pos: -26.5,28.5 - parent: 30 - type: Transform -- uid: 1597 - type: Window - components: - - pos: -24.5,28.5 - parent: 30 - type: Transform -- uid: 1598 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: -33.5,28.5 - parent: 30 - type: Transform -- uid: 1599 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -32.5,28.5 - parent: 30 - type: Transform -- uid: 1600 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -30.5,28.5 - parent: 30 - type: Transform -- uid: 1601 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -26.5,28.5 - parent: 30 - type: Transform -- uid: 1602 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -24.5,28.5 - parent: 30 - type: Transform -- uid: 1603 - type: AirlockGlass - components: - - pos: -31.5,28.5 - parent: 30 - type: Transform -- uid: 1604 - type: AirlockGlass - components: - - pos: -25.5,28.5 - parent: 30 - type: Transform -- uid: 1605 - type: SignToolStorage - components: - - pos: -28.5,28.5 - parent: 30 - type: Transform -- uid: 1606 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: -26.5,33.5 - parent: 30 - type: Transform -- uid: 1607 - type: DisposalUnit - components: - - pos: -24.5,29.5 - parent: 30 - type: Transform -- uid: 1608 - type: Table - components: - - pos: -24.5,30.5 - parent: 30 - type: Transform -- uid: 1609 - type: Table - components: - - pos: -24.5,31.5 - parent: 30 - type: Transform -- uid: 1610 - type: Table - components: - - pos: -29.5,29.5 - parent: 30 - type: Transform -- uid: 1611 - type: Table - components: - - pos: -28.5,29.5 - parent: 30 - type: Transform -- uid: 1612 - type: Table - components: - - pos: -32.5,30.5 - parent: 30 - type: Transform -- uid: 1613 - type: Table - components: - - pos: -32.5,31.5 - parent: 30 - type: Transform -- uid: 1614 - type: Table - components: - - pos: -27.5,33.5 - parent: 30 - type: Transform -- uid: 1615 - type: Table - components: - - pos: -28.5,33.5 - parent: 30 - type: Transform -- uid: 1616 - type: Table - components: - - pos: -29.5,33.5 - parent: 30 - type: Transform -- uid: 1617 - type: Table - components: - - pos: -30.5,33.5 - parent: 30 - type: Transform -- uid: 1618 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: -32.5,33.5 - parent: 30 - type: Transform -- uid: 1619 - type: PottedPlantRandom - components: - - pos: -31.5,33.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1620 - type: PottedPlantRandom - components: - - pos: -24.5,33.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1621 - type: WeldingFuelTankFull - components: - - pos: -27.5,29.5 - parent: 30 - type: Transform -- uid: 1622 - type: WaterTankFull - components: - - pos: -30.5,29.5 - parent: 30 - type: Transform -- uid: 1623 - type: Rack - components: - - pos: -32.5,29.5 - parent: 30 - type: Transform -- uid: 1624 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -28.5,32.5 - parent: 30 - type: Transform -- uid: 1625 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -29.5,32.5 - parent: 30 - type: Transform -- uid: 1626 - type: ToolboxMechanicalFilled - components: - - pos: -24.580927,31.692375 - parent: 30 - type: Transform -- uid: 1627 - type: ToolboxMechanicalFilled - components: - - pos: -24.487177,31.504875 - parent: 30 - type: Transform -- uid: 1628 - type: ToolboxElectricalFilled - components: - - pos: -32.457005,31.692375 - parent: 30 - type: Transform -- uid: 1629 - type: ToolboxElectricalFilled - components: - - pos: -32.56638,31.48925 - parent: 30 - type: Transform -- uid: 1630 - type: ClothingBeltUtilityFilled - components: - - pos: -28.53513,29.598625 - parent: 30 - type: Transform -- uid: 1631 - type: ClothingHandsGlovesColorYellow - components: - - pos: -29.37888,29.583 - parent: 30 - type: Transform -- uid: 1632 - type: ClothingHeadHatWelding - components: - - pos: -24.604296,31.05175 - parent: 30 - type: Transform -- uid: 1633 - type: Welder - components: - - pos: -24.27617,30.73925 - parent: 30 - type: Transform -- uid: 1634 - type: FlashlightLantern - components: - - pos: -32.597065,29.692375 - parent: 30 - type: Transform -- uid: 1635 - type: FlashlightLantern - components: - - pos: -32.45644,29.55175 - parent: 30 - type: Transform -- uid: 1636 - type: HandheldGPSBasic - components: - - pos: -32.534565,30.536125 - parent: 30 - type: Transform -- uid: 1637 - type: CableApcStack - components: - - pos: -30.472065,33.583 - parent: 30 - type: Transform -- uid: 1638 - type: CableMVStack - components: - - pos: -30.17519,33.583 - parent: 30 - type: Transform -- uid: 1639 - type: CableHVStack - components: - - pos: -29.80019,33.583 - parent: 30 - type: Transform -- uid: 1640 - type: DoorElectronics - components: - - pos: -27.661026,33.627472 - parent: 30 - type: Transform -- uid: 1641 - type: DoorElectronics - components: - - pos: -27.536026,33.455597 - parent: 30 - type: Transform -- uid: 1642 - type: FirelockElectronics - components: - - pos: -28.239151,33.643097 - parent: 30 - type: Transform -- uid: 1643 - type: FirelockElectronics - components: - - pos: -28.192276,33.564972 - parent: 30 - type: Transform -- uid: 1644 - type: WelderMini - components: - - pos: -24.411026,30.455597 - parent: 30 - type: Transform -- uid: 1645 - type: PowerCellRecharger - components: - - pos: -28.5,33.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 1646 - type: PosterContrabandHackingGuide - components: - - pos: -28.5,34.5 - parent: 30 - type: Transform -- uid: 1647 - type: PosterContrabandMissingGloves - components: - - pos: -31.5,34.5 - parent: 30 - type: Transform -- uid: 1648 - type: PosterLegitNanomichiAd - components: - - pos: -23.5,30.5 - parent: 30 - type: Transform -- uid: 1649 - type: PosterLegitObey - components: - - pos: -25.5,34.5 - parent: 30 - type: Transform -- uid: 1650 - type: PosterContrabandTools - components: - - pos: -29.5,34.5 - parent: 30 - type: Transform -- uid: 1651 - type: ExtinguisherCabinetFilled - components: - - pos: -33.5,34.5 - parent: 30 - type: Transform -- uid: 1652 - type: ExtinguisherCabinetFilled - components: - - pos: -24.5,34.5 - parent: 30 - type: Transform -- uid: 1653 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -33.5,32.5 - parent: 30 - type: Transform -- uid: 1654 - type: PosterLegitUeNo - components: - - pos: -48.5,16.5 - parent: 30 - type: Transform -- uid: 1655 - type: MonkeyCube - components: - - pos: -9.512679,14.6846485 - parent: 30 - type: Transform -- uid: 1656 - type: AirlockBrigGlassLocked - components: - - pos: -36.5,38.5 - parent: 30 - type: Transform -- uid: 1657 - type: AirlockBrigGlassLocked - components: - - pos: -34.5,38.5 - parent: 30 - type: Transform -- uid: 1658 - type: WallReinforced - components: - - pos: -33.5,38.5 - parent: 30 - type: Transform -- uid: 1659 - type: WallReinforced - components: - - pos: -29.5,38.5 - parent: 30 - type: Transform -- uid: 1660 - type: WallReinforced - components: - - pos: -41.5,38.5 - parent: 30 - type: Transform -- uid: 1661 - type: WallReinforced - components: - - pos: -45.5,38.5 - parent: 30 - type: Transform -- uid: 1662 - type: ReinforcedWindow - components: - - pos: -48.5,38.5 - parent: 30 - type: Transform -- uid: 1663 - type: WallReinforced - components: - - pos: -49.5,38.5 - parent: 30 - type: Transform -- uid: 1664 - type: AirlockMaintLocked - components: - - pos: -50.5,37.5 - parent: 30 - type: Transform -- uid: 1665 - type: ReinforcedWindow - components: - - pos: -47.5,38.5 - parent: 30 - type: Transform -- uid: 1666 - type: ReinforcedWindow - components: - - pos: -46.5,38.5 - parent: 30 - type: Transform -- uid: 1667 - type: ReinforcedWindow - components: - - pos: -40.5,38.5 - parent: 30 - type: Transform -- uid: 1668 - type: ReinforcedWindow - components: - - pos: -43.5,38.5 - parent: 30 - type: Transform -- uid: 1669 - type: ReinforcedWindow - components: - - pos: -42.5,38.5 - parent: 30 - type: Transform -- uid: 1670 - type: ReinforcedWindow - components: - - pos: -44.5,38.5 - parent: 30 - type: Transform -- uid: 1671 - type: ReinforcedWindow - components: - - pos: -39.5,38.5 - parent: 30 - type: Transform -- uid: 1672 - type: ReinforcedWindow - components: - - pos: -38.5,38.5 - parent: 30 - type: Transform -- uid: 1673 - type: WallReinforced - components: - - pos: -37.5,38.5 - parent: 30 - type: Transform -- uid: 1674 - type: WallReinforced - components: - - pos: -45.5,41.5 - parent: 30 - type: Transform -- uid: 1675 - type: WallReinforced - components: - - pos: -41.5,41.5 - parent: 30 - type: Transform -- uid: 1676 - type: WallReinforced - components: - - pos: -37.5,41.5 - parent: 30 - type: Transform -- uid: 1677 - type: WallReinforced - components: - - pos: -49.5,41.5 - parent: 30 - type: Transform -- uid: 1678 - type: ReinforcedWindow - components: - - pos: -48.5,41.5 - parent: 30 - type: Transform -- uid: 1679 - type: ReinforcedWindow - components: - - pos: -46.5,41.5 - parent: 30 - type: Transform -- uid: 1680 - type: ReinforcedWindow - components: - - pos: -44.5,41.5 - parent: 30 - type: Transform -- uid: 1681 - type: ReinforcedWindow - components: - - pos: -42.5,41.5 - parent: 30 - type: Transform -- uid: 1682 - type: ReinforcedWindow - components: - - pos: -40.5,41.5 - parent: 30 - type: Transform -- uid: 1683 - type: ReinforcedWindow - components: - - pos: -38.5,41.5 - parent: 30 - type: Transform -- uid: 1684 - type: WallReinforced - components: - - pos: -37.5,39.5 - parent: 30 - type: Transform -- uid: 1685 - type: WallReinforced - components: - - pos: -37.5,40.5 - parent: 30 - type: Transform -- uid: 1686 - type: WallReinforced - components: - - pos: -33.5,41.5 - parent: 30 - type: Transform -- uid: 1687 - type: WallReinforced - components: - - pos: -29.5,40.5 - parent: 30 - type: Transform -- uid: 1688 - type: WallReinforced - components: - - pos: -29.5,39.5 - parent: 30 - type: Transform -- uid: 1689 - type: WallSolid - components: - - pos: -27.5,38.5 - parent: 30 - type: Transform -- uid: 1690 - type: WallReinforced - components: - - pos: -29.5,41.5 - parent: 30 - type: Transform -- uid: 1691 - type: WallReinforced - components: - - pos: -30.5,41.5 - parent: 30 - type: Transform -- uid: 1692 - type: WallReinforced - components: - - pos: -32.5,41.5 - parent: 30 - type: Transform -- uid: 1693 - type: ReinforcedWindow - components: - - pos: -35.5,38.5 - parent: 30 - type: Transform -- uid: 1694 - type: ReinforcedWindow - components: - - pos: -35.5,41.5 - parent: 30 - type: Transform -- uid: 1695 - type: AirlockBrigGlassLocked - components: - - pos: -36.5,41.5 - parent: 30 - type: Transform -- uid: 1696 - type: AirlockBrigGlassLocked - components: - - pos: -34.5,41.5 - parent: 30 - type: Transform -- uid: 1697 - type: Grille - components: - - pos: -35.5,38.5 - parent: 30 - type: Transform -- uid: 1698 - type: Grille - components: - - pos: -35.5,41.5 - parent: 30 - type: Transform -- uid: 1699 - type: Grille - components: - - pos: -38.5,38.5 - parent: 30 - type: Transform -- uid: 1700 - type: Grille - components: - - pos: -39.5,38.5 - parent: 30 - type: Transform -- uid: 1701 - type: Grille - components: - - pos: -40.5,38.5 - parent: 30 - type: Transform -- uid: 1702 - type: Grille - components: - - pos: -40.5,41.5 - parent: 30 - type: Transform -- uid: 1703 - type: Grille - components: - - pos: -38.5,41.5 - parent: 30 - type: Transform -- uid: 1704 - type: Grille - components: - - pos: -42.5,38.5 - parent: 30 - type: Transform -- uid: 1705 - type: Grille - components: - - pos: -43.5,38.5 - parent: 30 - type: Transform -- uid: 1706 - type: Grille - components: - - pos: -44.5,38.5 - parent: 30 - type: Transform -- uid: 1707 - type: Grille - components: - - pos: -46.5,38.5 - parent: 30 - type: Transform -- uid: 1708 - type: Grille - components: - - pos: -47.5,38.5 - parent: 30 - type: Transform -- uid: 1709 - type: Grille - components: - - pos: -48.5,38.5 - parent: 30 - type: Transform -- uid: 1710 - type: Grille - components: - - pos: -48.5,41.5 - parent: 30 - type: Transform -- uid: 1711 - type: Grille - components: - - pos: -46.5,41.5 - parent: 30 - type: Transform -- uid: 1712 - type: Grille - components: - - pos: -44.5,41.5 - parent: 30 - type: Transform -- uid: 1713 - type: Grille - components: - - pos: -42.5,41.5 - parent: 30 - type: Transform -- uid: 1714 - type: WallReinforced - components: - - pos: -49.5,39.5 - parent: 30 - type: Transform -- uid: 1715 - type: WallReinforced - components: - - pos: -49.5,40.5 - parent: 30 - type: Transform -- uid: 1716 - type: WallSolid - components: - - pos: -45.5,39.5 - parent: 30 - type: Transform -- uid: 1717 - type: WallSolid - components: - - pos: -45.5,40.5 - parent: 30 - type: Transform -- uid: 1718 - type: WallSolid - components: - - pos: -41.5,39.5 - parent: 30 - type: Transform -- uid: 1719 - type: WallSolid - components: - - pos: -41.5,40.5 - parent: 30 - type: Transform -- uid: 1720 - type: WallSolid - components: - - pos: -25.5,38.5 - parent: 30 - type: Transform -- uid: 1721 - type: WallSolid - components: - - pos: -25.5,40.5 - parent: 30 - type: Transform -- uid: 1722 - type: PottedPlantRandom - components: - - pos: -30.5,42.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1723 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -26.5,42.5 - parent: 30 - type: Transform -- uid: 1724 - type: Chair - components: - - pos: -27.5,44.5 - parent: 30 - type: Transform -- uid: 1725 - type: Chair - components: - - pos: -26.5,44.5 - parent: 30 - type: Transform -- uid: 1726 - type: WallReinforced - components: - - pos: -25.5,45.5 - parent: 30 - type: Transform -- uid: 1727 - type: WallReinforced - components: - - pos: -25.5,44.5 - parent: 30 - type: Transform -- uid: 1728 - type: WallReinforced - components: - - pos: -25.5,43.5 - parent: 30 - type: Transform -- uid: 1729 - type: ReinforcedWindow - components: - - pos: -29.5,42.5 - parent: 30 - type: Transform -- uid: 1730 - type: ReinforcedWindow - components: - - pos: -29.5,44.5 - parent: 30 - type: Transform -- uid: 1731 - type: WallReinforced - components: - - pos: -25.5,42.5 - parent: 30 - type: Transform -- uid: 1732 - type: WallReinforced - components: - - pos: -25.5,41.5 - parent: 30 - type: Transform -- uid: 1733 - type: WallSolid - components: - - pos: -26.5,40.5 - parent: 30 - type: Transform -- uid: 1734 - type: WallReinforced - components: - - pos: -26.5,45.5 - parent: 30 - type: Transform -- uid: 1735 - type: WallReinforced - components: - - pos: -27.5,45.5 - parent: 30 - type: Transform -- uid: 1736 - type: WallReinforced - components: - - pos: -28.5,45.5 - parent: 30 - type: Transform -- uid: 1737 - type: WallReinforced - components: - - pos: -29.5,45.5 - parent: 30 - type: Transform -- uid: 1738 - type: Grille - components: - - pos: -29.5,42.5 - parent: 30 - type: Transform -- uid: 1739 - type: Grille - components: - - pos: -29.5,44.5 - parent: 30 - type: Transform -- uid: 1740 - type: AirlockBrigGlassLocked - components: - - pos: -29.5,43.5 - parent: 30 - type: Transform -- uid: 1741 - type: TableReinforced - components: - - pos: -33.5,39.5 - parent: 30 - type: Transform -- uid: 1742 - type: TableReinforced - components: - - pos: -33.5,40.5 - parent: 30 - type: Transform -- uid: 1743 - type: TableReinforced - components: - - pos: -30.5,38.5 - parent: 30 - type: Transform -- uid: 1744 - type: TableReinforced - components: - - pos: -31.5,38.5 - parent: 30 - type: Transform -- uid: 1745 - type: TableReinforced - components: - - pos: -32.5,38.5 - parent: 30 - type: Transform -- uid: 1746 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -33.5,40.5 - parent: 30 - type: Transform -- uid: 1747 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -33.5,39.5 - parent: 30 - type: Transform -- uid: 1748 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: -32.5,38.5 - parent: 30 - type: Transform -- uid: 1749 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: -31.5,38.5 - parent: 30 - type: Transform -- uid: 1750 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: -30.5,38.5 - parent: 30 - type: Transform -- uid: 1751 - type: WindoorSecure - components: - - rot: -1.5707963267948966 rad - pos: -33.5,39.5 - parent: 30 - type: Transform -- uid: 1752 - type: WindoorSecure - components: - - rot: -1.5707963267948966 rad - pos: -33.5,40.5 - parent: 30 - type: Transform -- uid: 1753 - type: WindoorSecure - components: - - pos: -32.5,38.5 - parent: 30 - type: Transform -- uid: 1754 - type: WindoorSecure - components: - - pos: -31.5,38.5 - parent: 30 - type: Transform -- uid: 1755 - type: WindoorSecure - components: - - pos: -30.5,38.5 - parent: 30 - type: Transform -- uid: 1756 - type: AirlockSecurityGlassLocked - components: - - pos: -31.5,41.5 - parent: 30 - type: Transform -- uid: 1757 - type: ComputerCriminalRecords - components: - - pos: -32.5,40.5 - parent: 30 - type: Transform -- uid: 1758 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -32.5,39.5 - parent: 30 - type: Transform -- uid: 1759 - type: WindoorSecurityLocked - components: - - pos: -43.5,41.5 - parent: 30 - type: Transform -- uid: 1760 - type: WindoorSecurityLocked - components: - - pos: -39.5,41.5 - parent: 30 - type: Transform -- uid: 1761 - type: WindoorSecurityLocked - components: - - pos: -47.5,41.5 - parent: 30 - type: Transform -- uid: 1762 - type: WardrobePrisonFilled - components: - - pos: -42.5,39.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1763 - type: WardrobePrisonFilled - components: - - pos: -38.5,39.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1764 - type: WardrobePrisonFilled - components: - - pos: -46.5,39.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1765 - type: Bed - components: - - pos: -48.5,39.5 - parent: 30 - type: Transform -- uid: 1766 - type: Bed - components: - - pos: -44.5,39.5 - parent: 30 - type: Transform -- uid: 1767 - type: Bed - components: - - pos: -40.5,39.5 - parent: 30 - type: Transform -- uid: 1768 - type: BedsheetBlue - components: - - pos: -48.5,39.5 - parent: 30 - type: Transform -- uid: 1769 - type: BedsheetGreen - components: - - pos: -44.5,39.5 - parent: 30 - type: Transform -- uid: 1770 - type: BedsheetOrange - components: - - pos: -40.5,39.5 - parent: 30 - type: Transform -- uid: 1771 - type: TableReinforcedGlass - components: - - pos: -26.5,43.5 - parent: 30 - type: Transform -- uid: 1772 - type: TableReinforcedGlass - components: - - pos: -27.5,43.5 - parent: 30 - type: Transform -- uid: 1773 - type: Lamp - components: - - pos: -27.432951,43.824997 - parent: 30 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 1774 - type: SignInterrogation - components: - - pos: -29.5,44.5 - parent: 30 - type: Transform -- uid: 1775 - type: WallReinforced - components: - - pos: -30.5,45.5 - parent: 30 - type: Transform -- uid: 1776 - type: ReinforcedWindow - components: - - pos: -31.5,45.5 - parent: 30 - type: Transform -- uid: 1777 - type: ReinforcedWindow - components: - - pos: -33.5,45.5 - parent: 30 - type: Transform -- uid: 1778 - type: WallReinforced - components: - - pos: -34.5,45.5 - parent: 30 - type: Transform -- uid: 1779 - type: WallReinforced - components: - - pos: -35.5,45.5 - parent: 30 - type: Transform -- uid: 1780 - type: WallReinforced - components: - - pos: -36.5,45.5 - parent: 30 - type: Transform -- uid: 1781 - type: WallReinforced - components: - - pos: -37.5,45.5 - parent: 30 - type: Transform -- uid: 1782 - type: AirlockSecurityLocked - components: - - pos: -28.5,46.5 - parent: 30 - type: Transform -- uid: 1783 - type: AirlockSecurityGlassLocked - components: - - pos: -32.5,45.5 - parent: 30 - type: Transform -- uid: 1784 - type: WallReinforced - components: - - pos: -28.5,47.5 - parent: 30 - type: Transform -- uid: 1785 - type: WallReinforced - components: - - pos: -27.5,47.5 - parent: 30 - type: Transform -- uid: 1786 - type: WallReinforced - components: - - pos: -26.5,47.5 - parent: 30 - type: Transform -- uid: 1787 - type: WallReinforced - components: - - pos: -25.5,47.5 - parent: 30 - type: Transform -- uid: 1788 - type: WallReinforced - components: - - pos: -24.5,47.5 - parent: 30 - type: Transform -- uid: 1789 - type: WallReinforced - components: - - pos: -23.5,47.5 - parent: 30 - type: Transform -- uid: 1790 - type: ReinforcedWindow - components: - - pos: -27.5,48.5 - parent: 30 - type: Transform -- uid: 1791 - type: ReinforcedWindow - components: - - pos: -27.5,52.5 - parent: 30 - type: Transform -- uid: 1792 - type: WallReinforced - components: - - pos: -27.5,49.5 - parent: 30 - type: Transform -- uid: 1793 - type: WallReinforced - components: - - pos: -27.5,51.5 - parent: 30 - type: Transform -- uid: 1794 - type: AirlockHeadOfSecurityGlassLocked - components: - - pos: -27.5,50.5 - parent: 30 - type: Transform -- uid: 1795 - type: WallReinforced - components: - - pos: -27.5,53.5 - parent: 30 - type: Transform -- uid: 1796 - type: WallReinforced - components: - - pos: -26.5,53.5 - parent: 30 - type: Transform -- uid: 1797 - type: WallReinforced - components: - - pos: -26.5,54.5 - parent: 30 - type: Transform -- uid: 1798 - type: WallReinforced - components: - - pos: -26.5,55.5 - parent: 30 - type: Transform -- uid: 1799 - type: WallReinforced - components: - - pos: -27.5,55.5 - parent: 30 - type: Transform -- uid: 1800 - type: WallReinforced - components: - - pos: -26.5,56.5 - parent: 30 - type: Transform -- uid: 1801 - type: WallReinforced - components: - - pos: -25.5,54.5 - parent: 30 - type: Transform -- uid: 1802 - type: WallReinforced - components: - - pos: -24.5,54.5 - parent: 30 - type: Transform -- uid: 1803 - type: WallReinforced - components: - - pos: -23.5,54.5 - parent: 30 - type: Transform -- uid: 1804 - type: WallReinforced - components: - - pos: -22.5,54.5 - parent: 30 - type: Transform -- uid: 1805 - type: WallReinforced - components: - - pos: -21.5,54.5 - parent: 30 - type: Transform -- uid: 1806 - type: WallReinforced - components: - - pos: -20.5,54.5 - parent: 30 - type: Transform -- uid: 1807 - type: WallReinforced - components: - - pos: -20.5,53.5 - parent: 30 - type: Transform -- uid: 1808 - type: ReinforcedWindow - components: - - pos: -20.5,48.5 - parent: 30 - type: Transform -- uid: 1809 - type: ReinforcedWindow - components: - - pos: -20.5,50.5 - parent: 30 - type: Transform -- uid: 1810 - type: ReinforcedWindow - components: - - pos: -20.5,49.5 - parent: 30 - type: Transform -- uid: 1811 - type: WallReinforced - components: - - pos: -22.5,47.5 - parent: 30 - type: Transform -- uid: 1812 - type: WallReinforced - components: - - pos: -21.5,47.5 - parent: 30 - type: Transform -- uid: 1813 - type: WallReinforced - components: - - pos: -20.5,47.5 - parent: 30 - type: Transform -- uid: 1814 - type: ReinforcedWindow - components: - - pos: -20.5,52.5 - parent: 30 - type: Transform -- uid: 1815 - type: ReinforcedWindow - components: - - pos: -20.5,51.5 - parent: 30 - type: Transform -- uid: 1816 - type: WallSolid - components: - - pos: -19.5,53.5 - parent: 30 - type: Transform -- uid: 1817 - type: WallSolid - components: - - pos: -20.5,55.5 - parent: 30 - type: Transform -- uid: 1818 - type: WallSolid - components: - - pos: -28.5,53.5 - parent: 30 - type: Transform -- uid: 1819 - type: WallSolid - components: - - pos: -28.5,54.5 - parent: 30 - type: Transform -- uid: 1820 - type: WallSolid - components: - - pos: -28.5,55.5 - parent: 30 - type: Transform -- uid: 1821 - type: Grille - components: - - pos: -20.5,48.5 - parent: 30 - type: Transform -- uid: 1822 - type: Grille - components: - - pos: -20.5,49.5 - parent: 30 - type: Transform -- uid: 1823 - type: Grille - components: - - pos: -20.5,50.5 - parent: 30 - type: Transform -- uid: 1824 - type: Grille - components: - - pos: -20.5,51.5 - parent: 30 - type: Transform -- uid: 1825 - type: Grille - components: - - pos: -20.5,52.5 - parent: 30 - type: Transform -- uid: 1826 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -19.5,48.5 - parent: 30 - type: Transform -- uid: 1827 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -19.5,49.5 - parent: 30 - type: Transform -- uid: 1828 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -19.5,50.5 - parent: 30 - type: Transform -- uid: 1829 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -19.5,51.5 - parent: 30 - type: Transform -- uid: 1830 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -19.5,52.5 - parent: 30 - type: Transform -- uid: 1831 - type: FoodDonutChaos - components: - - pos: -27.482998,54.565464 - parent: 30 - type: Transform -- uid: 1832 - type: OreProcessor - components: - - pos: 31.5,-8.5 - parent: 30 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Plasma - - Uranium - - Gold - - Silver - type: MaterialStorage -- uid: 1833 - type: AirlockArmoryGlassLocked - components: - - pos: -39.5,45.5 - parent: 30 - type: Transform -- uid: 1834 - type: ReinforcedWindow - components: - - pos: -38.5,45.5 - parent: 30 - type: Transform -- uid: 1835 - type: ReinforcedWindow - components: - - pos: -36.5,46.5 - parent: 30 - type: Transform -- uid: 1836 - type: ReinforcedWindow - components: - - pos: -36.5,48.5 - parent: 30 - type: Transform -- uid: 1837 - type: ReinforcedWindow - components: - - pos: -40.5,45.5 - parent: 30 - type: Transform -- uid: 1838 - type: ReinforcedWindow - components: - - pos: -41.5,45.5 - parent: 30 - type: Transform -- uid: 1839 - type: AirlockArmoryGlassLocked - components: - - pos: -36.5,47.5 - parent: 30 - type: Transform -- uid: 1840 - type: ReinforcedWindow - components: - - pos: -43.5,45.5 - parent: 30 - type: Transform -- uid: 1841 - type: ReinforcedWindow - components: - - pos: -44.5,45.5 - parent: 30 - type: Transform -- uid: 1842 - type: ReinforcedWindow - components: - - pos: -45.5,46.5 - parent: 30 - type: Transform -- uid: 1843 - type: ReinforcedWindow - components: - - pos: -45.5,48.5 - parent: 30 - type: Transform -- uid: 1844 - type: ReinforcedWindow - components: - - pos: -37.5,50.5 - parent: 30 - type: Transform -- uid: 1845 - type: ReinforcedWindow - components: - - pos: -39.5,50.5 - parent: 30 - type: Transform -- uid: 1846 - type: ReinforcedWindow - components: - - pos: -41.5,50.5 - parent: 30 - type: Transform -- uid: 1847 - type: WallReinforced - components: - - pos: -45.5,45.5 - parent: 30 - type: Transform -- uid: 1848 - type: WallReinforced - components: - - pos: -45.5,47.5 - parent: 30 - type: Transform -- uid: 1849 - type: WallReinforced - components: - - pos: -45.5,49.5 - parent: 30 - type: Transform -- uid: 1850 - type: WallReinforced - components: - - pos: -45.5,50.5 - parent: 30 - type: Transform -- uid: 1851 - type: WallReinforced - components: - - pos: -44.5,50.5 - parent: 30 - type: Transform -- uid: 1852 - type: WallReinforced - components: - - pos: -43.5,50.5 - parent: 30 - type: Transform -- uid: 1853 - type: WallReinforced - components: - - pos: -42.5,50.5 - parent: 30 - type: Transform -- uid: 1854 - type: WallReinforced - components: - - pos: -36.5,49.5 - parent: 30 - type: Transform -- uid: 1855 - type: WallReinforced - components: - - pos: -36.5,50.5 - parent: 30 - type: Transform -- uid: 1856 - type: Grille - components: - - pos: -38.5,45.5 - parent: 30 - type: Transform -- uid: 1857 - type: Grille - components: - - pos: -36.5,46.5 - parent: 30 - type: Transform -- uid: 1858 - type: Grille - components: - - pos: -36.5,48.5 - parent: 30 - type: Transform -- uid: 1859 - type: Grille - components: - - pos: -37.5,50.5 - parent: 30 - type: Transform -- uid: 1860 - type: Grille - components: - - pos: -39.5,50.5 - parent: 30 - type: Transform -- uid: 1861 - type: Grille - components: - - pos: -41.5,50.5 - parent: 30 - type: Transform -- uid: 1862 - type: Grille - components: - - pos: -45.5,48.5 - parent: 30 - type: Transform -- uid: 1863 - type: Grille - components: - - pos: -45.5,46.5 - parent: 30 - type: Transform -- uid: 1864 - type: Grille - components: - - pos: -44.5,45.5 - parent: 30 - type: Transform -- uid: 1865 - type: Grille - components: - - pos: -43.5,45.5 - parent: 30 - type: Transform -- uid: 1866 - type: TableReinforced - components: - - pos: -42.5,45.5 - parent: 30 - type: Transform -- uid: 1867 - type: Grille - components: - - pos: -41.5,45.5 - parent: 30 - type: Transform -- uid: 1868 - type: Grille - components: - - pos: -40.5,45.5 - parent: 30 - type: Transform -- uid: 1869 - type: Grille - components: - - pos: -33.5,45.5 - parent: 30 - type: Transform -- uid: 1870 - type: Grille - components: - - pos: -31.5,45.5 - parent: 30 - type: Transform -- uid: 1871 - type: Grille - components: - - pos: -27.5,48.5 - parent: 30 - type: Transform -- uid: 1872 - type: Grille - components: - - pos: -27.5,52.5 - parent: 30 - type: Transform -- uid: 1873 - type: AirlockSecurityGlassLocked - components: - - pos: -35.5,55.5 - parent: 30 - type: Transform -- uid: 1874 - type: WallSolid - components: - - pos: -30.5,55.5 - parent: 30 - type: Transform -- uid: 1875 - type: WallSolid - components: - - pos: -31.5,55.5 - parent: 30 - type: Transform -- uid: 1876 - type: WallSolid - components: - - pos: -32.5,55.5 - parent: 30 - type: Transform -- uid: 1877 - type: WallSolid - components: - - pos: -33.5,55.5 - parent: 30 - type: Transform -- uid: 1878 - type: AirlockSecurityGlassLocked - components: - - pos: -29.5,55.5 - parent: 30 - type: Transform -- uid: 1879 - type: ReinforcedWindow - components: - - pos: -34.5,55.5 - parent: 30 - type: Transform -- uid: 1880 - type: WallReinforced - components: - - pos: -36.5,51.5 - parent: 30 - type: Transform -- uid: 1881 - type: WallReinforced - components: - - pos: -36.5,52.5 - parent: 30 - type: Transform -- uid: 1882 - type: WallReinforced - components: - - pos: -36.5,53.5 - parent: 30 - type: Transform -- uid: 1883 - type: WallReinforced - components: - - pos: -36.5,54.5 - parent: 30 - type: Transform -- uid: 1884 - type: WallReinforced - components: - - pos: -36.5,55.5 - parent: 30 - type: Transform -- uid: 1885 - type: WallReinforced - components: - - pos: -36.5,56.5 - parent: 30 - type: Transform -- uid: 1886 - type: WallReinforced - components: - - pos: -36.5,57.5 - parent: 30 - type: Transform -- uid: 1887 - type: WallReinforced - components: - - pos: -37.5,57.5 - parent: 30 - type: Transform -- uid: 1888 - type: WallReinforced - components: - - pos: -38.5,57.5 - parent: 30 - type: Transform -- uid: 1889 - type: WallReinforced - components: - - pos: -39.5,57.5 - parent: 30 - type: Transform -- uid: 1890 - type: WallReinforced - components: - - pos: -40.5,57.5 - parent: 30 - type: Transform -- uid: 1891 - type: WallReinforced - components: - - pos: -41.5,57.5 - parent: 30 - type: Transform -- uid: 1892 - type: WallReinforced - components: - - pos: -42.5,57.5 - parent: 30 - type: Transform -- uid: 1893 - type: WallReinforced - components: - - pos: -42.5,56.5 - parent: 30 - type: Transform -- uid: 1894 - type: WallReinforced - components: - - pos: -42.5,55.5 - parent: 30 - type: Transform -- uid: 1895 - type: WallReinforced - components: - - pos: -42.5,54.5 - parent: 30 - type: Transform -- uid: 1896 - type: WallReinforced - components: - - pos: -42.5,53.5 - parent: 30 - type: Transform -- uid: 1897 - type: WallReinforced - components: - - pos: -42.5,52.5 - parent: 30 - type: Transform -- uid: 1898 - type: WallReinforced - components: - - pos: -42.5,51.5 - parent: 30 - type: Transform -- uid: 1899 - type: WallReinforced - components: - - pos: -43.5,51.5 - parent: 30 - type: Transform -- uid: 1900 - type: WallReinforced - components: - - pos: -43.5,52.5 - parent: 30 - type: Transform -- uid: 1901 - type: WallReinforced - components: - - pos: -43.5,53.5 - parent: 30 - type: Transform -- uid: 1902 - type: WallReinforced - components: - - pos: -43.5,54.5 - parent: 30 - type: Transform -- uid: 1903 - type: WallReinforced - components: - - pos: -43.5,55.5 - parent: 30 - type: Transform -- uid: 1904 - type: WallReinforced - components: - - pos: -43.5,56.5 - parent: 30 - type: Transform -- uid: 1905 - type: WallReinforced - components: - - pos: -43.5,57.5 - parent: 30 - type: Transform -- uid: 1906 - type: WallReinforced - components: - - pos: -43.5,58.5 - parent: 30 - type: Transform -- uid: 1907 - type: WallReinforced - components: - - pos: -42.5,58.5 - parent: 30 - type: Transform -- uid: 1908 - type: AirlockSalvageGlassLocked - components: - - pos: 32.5,-8.5 - parent: 30 - type: Transform -- uid: 1909 - type: CableApcExtension - components: - - pos: -37.5,59.5 - parent: 30 - type: Transform -- uid: 1910 - type: CableApcExtension - components: - - pos: -38.5,59.5 - parent: 30 - type: Transform -- uid: 1911 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -38.5,58.5 - parent: 30 - type: Transform -- uid: 1912 - type: CableApcExtension - components: - - pos: -39.5,59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1913 - type: CableApcExtension - components: - - pos: -40.5,59.5 - parent: 30 - type: Transform -- uid: 1914 - type: WindoorArmoryLocked - components: - - pos: -40.5,50.5 - parent: 30 - type: Transform -- uid: 1915 - type: WindoorArmoryLocked - components: - - pos: -38.5,50.5 - parent: 30 - type: Transform -- uid: 1916 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -41.5,52.5 - parent: 30 - type: Transform -- uid: 1917 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -40.5,52.5 - parent: 30 - type: Transform -- uid: 1918 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -37.5,52.5 - parent: 30 - type: Transform -- uid: 1919 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -38.5,52.5 - parent: 30 - type: Transform -- uid: 1920 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -40.5,52.5 - parent: 30 - type: Transform -- uid: 1921 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -41.5,52.5 - parent: 30 - type: Transform -- uid: 1922 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -37.5,52.5 - parent: 30 - type: Transform -- uid: 1923 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -38.5,52.5 - parent: 30 - type: Transform -- uid: 1924 - type: WeaponCapacitorRecharger - components: - - pos: -37.5,60.5 - parent: 30 - type: Transform -- uid: 1925 - type: PortableFlasher - components: - - pos: -41.5,51.5 - parent: 30 - type: Transform -- uid: 1926 - type: PortableFlasher - components: - - pos: -37.5,51.5 - parent: 30 - type: Transform -- uid: 1927 - type: SignArmory - components: - - pos: -42.5,50.5 - parent: 30 - type: Transform -- uid: 1928 - type: LockerSyndicatePersonal - components: - - pos: -38.5,56.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1929 - - 1931 - - 1930 - type: ContainerContainer -- uid: 1929 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 1928 - type: Transform - - canCollide: False - type: Physics -- uid: 1930 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 1928 - type: Transform - - canCollide: False - type: Physics -- uid: 1931 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 1928 - type: Transform - - canCollide: False - type: Physics -- uid: 1932 - type: WaterCooler - components: - - pos: -51.5,29.5 - parent: 30 - type: Transform -- uid: 1933 - type: WaterCooler - components: - - pos: -23.5,15.5 - parent: 30 - type: Transform -- uid: 1934 - type: WaterCooler - components: - - pos: -12.5,15.5 - parent: 30 - type: Transform -- uid: 1935 - type: TableReinforced - components: - - pos: -39.5,56.5 - parent: 30 - type: Transform -- uid: 1936 - type: ClothingOuterArmorRiot - components: - - pos: -39.387558,56.481064 - parent: 30 - type: Transform -- uid: 1937 - type: SecurityTechFab - components: - - pos: -39.5,54.5 - parent: 30 - type: Transform - - materialWhiteList: - - Glass - - Plastic - - Steel - type: MaterialStorage -- uid: 1938 - type: Rack - components: - - pos: -41.5,55.5 - parent: 30 - type: Transform -- uid: 1939 - type: Rack - components: - - pos: -41.5,54.5 - parent: 30 - type: Transform -- uid: 1940 - type: TableReinforced - components: - - pos: -41.5,53.5 - parent: 30 - type: Transform -- uid: 1941 - type: TableReinforced - components: - - pos: -41.5,56.5 - parent: 30 - type: Transform -- uid: 1942 - type: Rack - components: - - pos: -37.5,54.5 - parent: 30 - type: Transform -- uid: 1943 - type: Rack - components: - - pos: -37.5,55.5 - parent: 30 - type: Transform -- uid: 1944 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: -9.5,14.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Service Hall - type: SurveillanceCamera -- uid: 1945 - type: Rack - components: - - pos: -37.5,53.5 - parent: 30 - type: Transform -- uid: 1946 - type: SurveillanceCameraRouterSecurity - components: - - pos: -37.5,56.5 - parent: 30 - type: Transform -- uid: 1947 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -44.5,44.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Cell Block - type: SurveillanceCamera -- uid: 1948 - type: Grille - components: - - pos: 34.5,49.5 - parent: 30 - type: Transform -- uid: 1949 - type: Grille - components: - - pos: 35.5,49.5 - parent: 30 - type: Transform -- uid: 1950 - type: WeaponPistolMk58 - components: - - pos: -37.608337,53.444714 - parent: 30 - type: Transform -- uid: 1951 - type: WeaponPistolMk58 - components: - - pos: -37.467712,53.382214 - parent: 30 - type: Transform -- uid: 1952 - type: WeaponPistolMk58 - components: - - pos: -37.295837,53.319714 - parent: 30 - type: Transform -- uid: 1953 - type: BoxShotgunIncendiary - components: - - pos: -41.476646,54.61659 - parent: 30 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 1954 - type: MagazinePistol - components: - - pos: -37.514587,53.632214 - parent: 30 - type: Transform - - unspawnedCount: 10 - type: BallisticAmmoProvider -- uid: 1955 - type: MagazinePistol - components: - - pos: -37.295837,53.61659 - parent: 30 - type: Transform - - unspawnedCount: 10 - type: BallisticAmmoProvider -- uid: 1956 - type: BoxBeanbag - components: - - pos: -41.476646,54.757214 - parent: 30 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 1957 - type: Grille - components: - - pos: 36.5,49.5 - parent: 30 - type: Transform -- uid: 1958 - type: MagazinePistol - components: - - pos: -37.702087,53.632214 - parent: 30 - type: Transform - - unspawnedCount: 10 - type: BallisticAmmoProvider -- uid: 1959 - type: TableWood - components: - - pos: 37.5,37.5 - parent: 30 - type: Transform -- uid: 1960 - type: Chair - components: - - pos: 43.5,41.5 - parent: 30 - type: Transform -- uid: 1961 - type: TableWood - components: - - pos: 38.5,40.5 - parent: 30 - type: Transform -- uid: 1962 - type: TableWood - components: - - pos: 41.5,37.5 - parent: 30 - type: Transform -- uid: 1963 - type: TableWood - components: - - pos: 41.5,38.5 - parent: 30 - type: Transform -- uid: 1964 - type: ReinforcedWindow - components: - - pos: 35.5,36.5 - parent: 30 - type: Transform -- uid: 1965 - type: Grille - components: - - pos: 41.5,49.5 - parent: 30 - type: Transform -- uid: 1966 - type: TableWood - components: - - pos: 37.5,38.5 - parent: 30 - type: Transform -- uid: 1967 - type: ReinforcedWindow - components: - - pos: 36.5,36.5 - parent: 30 - type: Transform -- uid: 1968 - type: Grille - components: - - pos: 42.5,49.5 - parent: 30 - type: Transform -- uid: 1969 - type: Grille - components: - - pos: 43.5,49.5 - parent: 30 - type: Transform -- uid: 1970 - type: Grille - components: - - pos: 44.5,49.5 - parent: 30 - type: Transform -- uid: 1971 - type: Grille - components: - - pos: 45.5,49.5 - parent: 30 - type: Transform -- uid: 1972 - type: Grille - components: - - pos: 37.5,49.5 - parent: 30 - type: Transform -- uid: 1973 - type: Grille - components: - - pos: 38.5,49.5 - parent: 30 - type: Transform -- uid: 1974 - type: Grille - components: - - pos: 39.5,49.5 - parent: 30 - type: Transform -- uid: 1975 - type: Grille - components: - - pos: 40.5,49.5 - parent: 30 - type: Transform -- uid: 1976 - type: Grille - components: - - pos: 46.5,49.5 - parent: 30 - type: Transform -- uid: 1977 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 43.5,40.5 - parent: 30 - type: Transform -- uid: 1978 - type: WeaponShotgunKammerer - components: - - pos: -41.42977,54.350964 - parent: 30 - type: Transform - - unspawnedCount: 4 - type: BallisticAmmoProvider -- uid: 1979 - type: WeaponShotgunKammerer - components: - - pos: -41.42977,54.507214 - parent: 30 - type: Transform - - unspawnedCount: 4 - type: BallisticAmmoProvider -- uid: 1980 - type: WeaponLaserCarbine - components: - - pos: -37.501694,54.356064 - parent: 30 - type: Transform -- uid: 1981 - type: WeaponLaserCarbine - components: - - pos: -37.501694,54.481064 - parent: 30 - type: Transform -- uid: 1982 - type: WeaponLaserCarbine - components: - - pos: -37.501694,54.606064 - parent: 30 - type: Transform -- uid: 1983 - type: ClosetBombFilled - components: - - pos: -40.5,56.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1984 - type: ClothingOuterArmorRiot - components: - - pos: -39.387558,56.481064 - parent: 30 - type: Transform -- uid: 1985 - type: ClothingOuterArmorRiot - components: - - pos: -39.387558,56.481064 - parent: 30 - type: Transform -- uid: 1986 - type: ClothingHeadHelmetHelmet - components: - - pos: -39.575058,56.668564 - parent: 30 - type: Transform -- uid: 1987 - type: ClothingHeadHelmetHelmet - components: - - pos: -39.575058,56.668564 - parent: 30 - type: Transform -- uid: 1988 - type: ClothingHeadHelmetHelmet - components: - - pos: -39.575058,56.668564 - parent: 30 - type: Transform -- uid: 1989 - type: WeaponDisabler - components: - - pos: -32.762215,56.697018 - parent: 30 - type: Transform -- uid: 1990 - type: AirlockArmoryGlassLocked - components: - - pos: -39.5,52.5 - parent: 30 - type: Transform -- uid: 1991 - type: WeaponDisabler - components: - - pos: -32.77784,56.462643 - parent: 30 - type: Transform -- uid: 1992 - type: WallSolidRust - components: - - pos: 17.5,45.5 - parent: 30 - type: Transform -- uid: 1993 - type: WeaponRifleLecter - components: - - pos: -41.502182,53.48419 - parent: 30 - type: Transform -- uid: 1994 - type: WeaponRifleLecter - components: - - pos: -41.502182,53.312317 - parent: 30 - type: Transform -- uid: 1995 - type: MagazineRifle - components: - - pos: -41.736557,56.67169 - parent: 30 - type: Transform -- uid: 1996 - type: WallSolidRust - components: - - pos: 32.5,26.5 - parent: 30 - type: Transform -- uid: 1997 - type: WallSolidRust - components: - - pos: -4.5,-15.5 - parent: 30 - type: Transform -- uid: 1998 - type: WeaponRifleLecter - components: - - pos: -41.517807,53.656067 - parent: 30 - type: Transform -- uid: 1999 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: -22.54349,53.796127 - parent: 30 - type: Transform -- uid: 2000 - type: WeaponSubMachineGunWt550 - components: - - pos: -22.590364,53.546127 - parent: 30 - type: Transform -- uid: 2001 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: -22.54349,53.796127 - parent: 30 - type: Transform -- uid: 2002 - type: BoxFlashbang - components: - - pos: -41.658577,55.804134 - parent: 30 - type: Transform -- uid: 2003 - type: WallSolidRust - components: - - pos: 0.5,-16.5 - parent: 30 - type: Transform -- uid: 2004 - type: PowerCellRecharger - components: - - pos: 12.5,-25.5 - parent: 30 - type: Transform -- uid: 2005 - type: FirelockGlass - components: - - pos: -40.5,50.5 - parent: 30 - type: Transform -- uid: 2006 - type: FirelockGlass - components: - - pos: -38.5,50.5 - parent: 30 - type: Transform -- uid: 2007 - type: DogBed - components: - - pos: -44.5,47.5 - parent: 30 - type: Transform -- uid: 2008 - type: SpawnMobMcGriff - components: - - pos: -44.5,47.5 - parent: 30 - type: Transform -- uid: 2009 - type: SpawnPointWarden - components: - - pos: -43.5,47.5 - parent: 30 - type: Transform -- uid: 2010 - type: LockerWardenFilled - components: - - pos: -44.5,49.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2011 - type: TableReinforced - components: - - pos: -44.5,46.5 - parent: 30 - type: Transform -- uid: 2012 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -46.5,50.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Perma Corridor - type: SurveillanceCamera -- uid: 2013 - type: WindoorBrigLocked - components: - - pos: -42.5,45.5 - parent: 30 - type: Transform -- uid: 2014 - type: Paper - components: - - pos: -42.49312,45.48978 - parent: 30 - type: Transform -- uid: 2015 - type: Pen - components: - - pos: -42.352493,45.64603 - parent: 30 - type: Transform -- uid: 2016 - type: ComputerMedicalRecords - components: - - rot: -1.5707963267948966 rad - pos: -41.5,46.5 - parent: 30 - type: Transform -- uid: 2017 - type: ComputerCriminalRecords - components: - - pos: -42.5,49.5 - parent: 30 - type: Transform -- uid: 2018 - type: ChairOfficeDark - components: - - pos: -42.5,46.5 - parent: 30 - type: Transform -- uid: 2019 - type: DisposalUnit - components: - - pos: -40.5,46.5 - parent: 30 - type: Transform -- uid: 2020 - type: Table - components: - - pos: -37.5,48.5 - parent: 30 - type: Transform -- uid: 2021 - type: Table - components: - - pos: -37.5,49.5 - parent: 30 - type: Transform -- uid: 2022 - type: ComputerStationRecords - components: - - pos: -43.5,49.5 - parent: 30 - type: Transform -- uid: 2023 - type: Table - components: - - pos: -41.5,49.5 - parent: 30 - type: Transform -- uid: 2024 - type: PowerCellRecharger - components: - - pos: -37.5,48.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 2025 - type: WeaponCapacitorRecharger - components: - - pos: -37.5,49.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 2026 - type: Rack - components: - - pos: -38.5,46.5 - parent: 30 - type: Transform -- uid: 2027 - type: ToolboxEmergencyFilled - components: - - pos: -38.478073,46.599056 - parent: 30 - type: Transform -- uid: 2028 - type: ClosetEmergencyFilledRandom - components: - - pos: -37.5,46.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2029 - type: WeaponDisabler - components: - - pos: -41.54827,49.578175 - parent: 30 - type: Transform -- uid: 2030 - type: Stunbaton - components: - - pos: -41.61499,49.505306 - parent: 30 - type: Transform - - containers: - cell_slot: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2031 - type: Stunbaton - components: - - pos: -41.39624,49.48968 - parent: 30 - type: Transform - - containers: - cell_slot: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2032 - type: ClothingEyesGlassesSecurity - components: - - pos: -44.436646,46.5757 - parent: 30 - type: Transform -- uid: 2033 - type: ClothingHeadHatBeretWarden - components: - - pos: -44.48352,46.8257 - parent: 30 - type: Transform -- uid: 2034 - type: WallReinforced - components: - - pos: -36.5,61.5 - parent: 30 - type: Transform -- uid: 2035 - type: WallReinforced - components: - - pos: -35.5,61.5 - parent: 30 - type: Transform -- uid: 2036 - type: WallReinforced - components: - - pos: -31.5,61.5 - parent: 30 - type: Transform -- uid: 2037 - type: WallReinforced - components: - - pos: -27.5,61.5 - parent: 30 - type: Transform -- uid: 2038 - type: WallReinforced - components: - - pos: -26.5,61.5 - parent: 30 - type: Transform -- uid: 2039 - type: WallReinforced - components: - - pos: -26.5,57.5 - parent: 30 - type: Transform -- uid: 2040 - type: SalvageMagnet - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-18.5 - parent: 30 - type: Transform -- uid: 2041 - type: ReinforcedWindow - components: - - pos: -26.5,58.5 - parent: 30 - type: Transform -- uid: 2042 - type: ReinforcedWindow - components: - - pos: -26.5,59.5 - parent: 30 - type: Transform -- uid: 2043 - type: ReinforcedWindow - components: - - pos: -26.5,60.5 - parent: 30 - type: Transform -- uid: 2044 - type: ReinforcedWindow - components: - - pos: -28.5,61.5 - parent: 30 - type: Transform -- uid: 2045 - type: ReinforcedWindow - components: - - pos: -29.5,61.5 - parent: 30 - type: Transform -- uid: 2046 - type: ReinforcedWindow - components: - - pos: -30.5,61.5 - parent: 30 - type: Transform -- uid: 2047 - type: CableApcExtension - components: - - pos: -37.5,60.5 - parent: 30 - type: Transform -- uid: 2048 - type: CableApcExtension - components: - - pos: -37.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2049 - type: ReinforcedWindow - components: - - pos: -34.5,61.5 - parent: 30 - type: Transform -- uid: 2050 - type: ReinforcedWindow - components: - - pos: -33.5,61.5 - parent: 30 - type: Transform -- uid: 2051 - type: ReinforcedWindow - components: - - pos: -32.5,61.5 - parent: 30 - type: Transform -- uid: 2052 - type: Grille - components: - - pos: -37.5,61.5 - parent: 30 - type: Transform -- uid: 2053 - type: Grille - components: - - pos: -34.5,61.5 - parent: 30 - type: Transform -- uid: 2054 - type: Grille - components: - - pos: -33.5,61.5 - parent: 30 - type: Transform -- uid: 2055 - type: Grille - components: - - pos: -32.5,61.5 - parent: 30 - type: Transform -- uid: 2056 - type: Grille - components: - - pos: -30.5,61.5 - parent: 30 - type: Transform -- uid: 2057 - type: Grille - components: - - pos: -29.5,61.5 - parent: 30 - type: Transform -- uid: 2058 - type: Grille - components: - - pos: -28.5,61.5 - parent: 30 - type: Transform -- uid: 2059 - type: Grille - components: - - pos: -26.5,58.5 - parent: 30 - type: Transform -- uid: 2060 - type: Grille - components: - - pos: -26.5,59.5 - parent: 30 - type: Transform -- uid: 2061 - type: Grille - components: - - pos: -26.5,60.5 - parent: 30 - type: Transform -- uid: 2062 - type: PoweredSmallLight - components: - - pos: -40.5,60.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2063 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -38.5,60.5 - parent: 30 - type: Transform -- uid: 2064 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -36.5,60.5 - parent: 30 - type: Transform -- uid: 2065 - type: Table - components: - - pos: -38.5,60.5 - parent: 30 - type: Transform -- uid: 2066 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -36.5,58.5 - parent: 30 - type: Transform -- uid: 2067 - type: WallReinforced - components: - - pos: -42.5,59.5 - parent: 30 - type: Transform -- uid: 2068 - type: WallReinforced - components: - - pos: -42.5,60.5 - parent: 30 - type: Transform -- uid: 2069 - type: WallReinforced - components: - - pos: -42.5,61.5 - parent: 30 - type: Transform -- uid: 2070 - type: DisposalUnit - components: - - pos: -35.5,46.5 - parent: 30 - type: Transform -- uid: 2071 - type: DisposalUnit - components: - - pos: -24.5,53.5 - parent: 30 - type: Transform -- uid: 2072 - type: ClosetBombFilled - components: - - pos: -30.5,56.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2073 - type: ClosetL3SecurityFilled - components: - - pos: -34.5,56.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2074 - type: Table - components: - - pos: -33.5,56.5 - parent: 30 - type: Transform -- uid: 2075 - type: Table - components: - - pos: -32.5,56.5 - parent: 30 - type: Transform -- uid: 2076 - type: Table - components: - - pos: -31.5,56.5 - parent: 30 - type: Transform -- uid: 2077 - type: VendingMachineSec - components: - - flags: SessionSpecific - type: MetaData - - pos: -29.5,60.5 - parent: 30 - type: Transform -- uid: 2078 - type: VendingMachineSecDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -35.5,60.5 - parent: 30 - type: Transform -- uid: 2079 - type: LockerSecurityFilled - components: - - pos: -34.5,60.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2080 - type: LockerSecurityFilled - components: - - pos: -33.5,60.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2081 - type: LockerSecurityFilled - components: - - pos: -32.5,60.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2082 - type: LockerSecurityFilled - components: - - pos: -31.5,60.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2083 - type: WardrobeSecurityFilled - components: - - pos: -30.5,60.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2084 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -28.5,63.5 - parent: 30 - type: Transform -- uid: 2085 - type: Grille - components: - - pos: -35.5,63.5 - parent: 30 - type: Transform -- uid: 2086 - type: Grille - components: - - pos: -34.5,63.5 - parent: 30 - type: Transform -- uid: 2087 - type: Grille - components: - - pos: -33.5,63.5 - parent: 30 - type: Transform -- uid: 2088 - type: Grille - components: - - pos: -32.5,63.5 - parent: 30 - type: Transform -- uid: 2089 - type: Grille - components: - - pos: -31.5,63.5 - parent: 30 - type: Transform -- uid: 2090 - type: Grille - components: - - pos: -30.5,63.5 - parent: 30 - type: Transform -- uid: 2091 - type: Grille - components: - - pos: -29.5,63.5 - parent: 30 - type: Transform -- uid: 2092 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -28.5,63.5 - parent: 30 - type: Transform -- uid: 2093 - type: Grille - components: - - pos: -27.5,63.5 - parent: 30 - type: Transform -- uid: 2094 - type: Grille - components: - - pos: -26.5,63.5 - parent: 30 - type: Transform -- uid: 2095 - type: BoxZiptie - components: - - pos: -31.462551,56.600285 - parent: 30 - type: Transform -- uid: 2096 - type: BoxHandcuff - components: - - pos: -32.040676,56.600285 - parent: 30 - type: Transform -- uid: 2097 - type: Stunbaton - components: - - pos: -33.61344,56.52216 - parent: 30 - type: Transform - - containers: - cell_slot: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2098 - type: Stunbaton - components: - - pos: -33.472816,56.52216 - parent: 30 - type: Transform - - containers: - cell_slot: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2099 - type: Stunbaton - components: - - pos: -33.30094,56.506535 - parent: 30 - type: Transform - - containers: - cell_slot: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2100 - type: GasPipeStraight - components: - - pos: 32.5,7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2101 - type: GasPipeFourway - components: - - pos: 32.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2102 - type: WallReinforced - components: - - pos: 45.5,15.5 - parent: 30 - type: Transform -- uid: 2103 - type: Table - components: - - pos: -28.5,60.5 - parent: 30 - type: Transform -- uid: 2104 - type: Table - components: - - pos: -27.5,60.5 - parent: 30 - type: Transform -- uid: 2105 - type: Table - components: - - pos: -27.5,59.5 - parent: 30 - type: Transform -- uid: 2106 - type: Table - components: - - pos: -27.5,58.5 - parent: 30 - type: Transform -- uid: 2107 - type: Table - components: - - pos: -27.5,57.5 - parent: 30 - type: Transform -- uid: 2108 - type: Table - components: - - pos: -27.5,56.5 - parent: 30 - type: Transform -- uid: 2109 - type: Table - components: - - pos: -28.5,56.5 - parent: 30 - type: Transform -- uid: 2110 - type: BoxFlashbang - components: - - pos: -28.454596,60.628906 - parent: 30 - type: Transform -- uid: 2111 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,59.5 - parent: 30 - type: Transform -- uid: 2112 - type: ChairOfficeDark - components: - - pos: -28.5,57.5 - parent: 30 - type: Transform -- uid: 2113 - type: TableReinforcedGlass - components: - - pos: -31.5,58.5 - parent: 30 - type: Transform -- uid: 2114 - type: TableReinforcedGlass - components: - - pos: -32.5,58.5 - parent: 30 - type: Transform -- uid: 2115 - type: TableReinforcedGlass - components: - - pos: -33.5,58.5 - parent: 30 - type: Transform -- uid: 2116 - type: WeaponCapacitorRecharger - components: - - pos: -27.5,59.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 2117 - type: WeaponCapacitorRecharger - components: - - pos: -27.5,57.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 2118 - type: WallWeaponCapacitorRecharger - components: - - pos: -30.5,45.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 2119 - type: PowerCellSmall - components: - - pos: -27.504559,56.49509 - parent: 30 - type: Transform -- uid: 2120 - type: PowerCellSmall - components: - - pos: -27.504559,56.68259 - parent: 30 - type: Transform -- uid: 2121 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: -43.5,46.5 - parent: 30 - type: Transform -- uid: 2122 - type: SignalButton - components: - - pos: -21.5,-45.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9405 - - port: Toggle - uid: 9404 - type: SignalTransmitter -- uid: 2123 - type: AirlockGlass - components: - - pos: -34.5,-0.5 - parent: 30 - type: Transform -- uid: 2124 - type: PottedPlantRandom - components: - - pos: -28.5,48.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2125 - type: PottedPlantRandom - components: - - pos: -28.5,52.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2126 - type: LockerHeadOfSecurityFilled - components: - - pos: -21.5,53.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2127 - type: SpawnPointHeadOfSecurity - components: - - pos: -22.5,50.5 - parent: 30 - type: Transform -- uid: 2128 - type: HighSecCommandLocked - components: - - pos: 5.5,40.5 - parent: 30 - type: Transform -- uid: 2129 - type: ComputerCrewMonitoring - components: - - rot: -1.5707963267948966 rad - pos: -21.5,51.5 - parent: 30 - type: Transform -- uid: 2130 - type: ComputerSurveillanceCameraMonitor - components: - - rot: -1.5707963267948966 rad - pos: -21.5,50.5 - parent: 30 - type: Transform -- uid: 2131 - type: TableWood - components: - - pos: -23.5,53.5 - parent: 30 - type: Transform -- uid: 2132 - type: TableWood - components: - - pos: -22.5,53.5 - parent: 30 - type: Transform -- uid: 2133 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -25.5,53.5 - parent: 30 - type: Transform -- uid: 2134 - type: TableWood - components: - - pos: -23.5,49.5 - parent: 30 - type: Transform -- uid: 2135 - type: TableWood - components: - - pos: -23.5,50.5 - parent: 30 - type: Transform -- uid: 2136 - type: TableWood - components: - - pos: -23.5,51.5 - parent: 30 - type: Transform -- uid: 2137 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -22.5,50.5 - parent: 30 - type: Transform -- uid: 2138 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -24.5,49.5 - parent: 30 - type: Transform -- uid: 2139 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -24.5,50.5 - parent: 30 - type: Transform -- uid: 2140 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -24.5,51.5 - parent: 30 - type: Transform -- uid: 2141 - type: PhoneInstrument - components: - - pos: -23.490372,49.592937 - parent: 30 - type: Transform -- uid: 2142 - type: Carpet - components: - - pos: -21.5,49.5 - parent: 30 - type: Transform -- uid: 2143 - type: Carpet - components: - - pos: -21.5,50.5 - parent: 30 - type: Transform -- uid: 2144 - type: Carpet - components: - - pos: -21.5,51.5 - parent: 30 - type: Transform -- uid: 2145 - type: Carpet - components: - - pos: -22.5,49.5 - parent: 30 - type: Transform -- uid: 2146 - type: Carpet - components: - - pos: -22.5,50.5 - parent: 30 - type: Transform -- uid: 2147 - type: Carpet - components: - - pos: -22.5,51.5 - parent: 30 - type: Transform -- uid: 2148 - type: Carpet - components: - - pos: -23.5,49.5 - parent: 30 - type: Transform -- uid: 2149 - type: Carpet - components: - - pos: -23.5,50.5 - parent: 30 - type: Transform -- uid: 2150 - type: Carpet - components: - - pos: -23.5,51.5 - parent: 30 - type: Transform -- uid: 2151 - type: Carpet - components: - - pos: -24.5,49.5 - parent: 30 - type: Transform -- uid: 2152 - type: Carpet - components: - - pos: -24.5,50.5 - parent: 30 - type: Transform -- uid: 2153 - type: Carpet - components: - - pos: -24.5,51.5 - parent: 30 - type: Transform -- uid: 2154 - type: Carpet - components: - - pos: -25.5,49.5 - parent: 30 - type: Transform -- uid: 2155 - type: Carpet - components: - - pos: -25.5,50.5 - parent: 30 - type: Transform -- uid: 2156 - type: Carpet - components: - - pos: -25.5,51.5 - parent: 30 - type: Transform -- uid: 2157 - type: BoxFolderRed - components: - - pos: -23.473518,51.436687 - parent: 30 - type: Transform -- uid: 2158 - type: Pen - components: - - pos: -23.279898,51.686687 - parent: 30 - type: Transform -- uid: 2159 - type: WeaponCapacitorRecharger - components: - - pos: -23.5,53.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 2160 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: -21.5,49.5 - parent: 30 - type: Transform -- uid: 2161 - type: ClothingEyesHudSecurity - components: - - pos: -27.597134,60.645412 - parent: 30 - type: Transform -- uid: 2162 - type: ClothingEyesHudSecurity - components: - - pos: -27.565884,60.520412 - parent: 30 - type: Transform -- uid: 2163 - type: ClothingBeltSecurityFilled - components: - - pos: -31.648214,58.59028 - parent: 30 - type: Transform -- uid: 2164 - type: ClothingBeltSecurityWebbing - components: - - pos: -32.460716,58.62153 - parent: 30 - type: Transform -- uid: 2165 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -31.5,54.5 - parent: 30 - type: Transform -- uid: 2166 - type: Table - components: - - pos: -32.5,54.5 - parent: 30 - type: Transform -- uid: 2167 - type: Table - components: - - pos: -33.5,54.5 - parent: 30 - type: Transform -- uid: 2168 - type: FoodBoxDonut - components: - - pos: -32.311928,54.48113 - parent: 30 - type: Transform -- uid: 2169 - type: BoxHandcuff - components: - - pos: -32.61353,54.639637 - parent: 30 - type: Transform -- uid: 2170 - type: TableWood - components: - - pos: -30.5,49.5 - parent: 30 - type: Transform -- uid: 2171 - type: TableWood - components: - - pos: -31.5,49.5 - parent: 30 - type: Transform -- uid: 2172 - type: TableWood - components: - - pos: -33.5,49.5 - parent: 30 - type: Transform -- uid: 2173 - type: TableWood - components: - - pos: -34.5,49.5 - parent: 30 - type: Transform -- uid: 2174 - type: ComputerCriminalRecords - components: - - pos: -33.5,51.5 - parent: 30 - type: Transform -- uid: 2175 - type: TableWood - components: - - pos: -34.5,51.5 - parent: 30 - type: Transform -- uid: 2176 - type: TableWood - components: - - pos: -31.5,51.5 - parent: 30 - type: Transform -- uid: 2177 - type: TableWood - components: - - pos: -30.5,51.5 - parent: 30 - type: Transform -- uid: 2178 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -33.5,48.5 - parent: 30 - type: Transform -- uid: 2179 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -30.5,48.5 - parent: 30 - type: Transform -- uid: 2180 - type: LampGold - components: - - pos: -34.56183,51.715214 - parent: 30 - type: Transform -- uid: 2181 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -30.5,50.5 - parent: 30 - type: Transform -- uid: 2182 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -33.5,50.5 - parent: 30 - type: Transform -- uid: 2183 - type: LampGold - components: - - pos: -31.546207,51.73084 - parent: 30 - type: Transform -- uid: 2184 - type: LampGold - components: - - pos: -34.514954,49.777714 - parent: 30 - type: Transform -- uid: 2185 - type: LampGold - components: - - pos: -31.546207,49.69959 - parent: 30 - type: Transform -- uid: 2186 - type: BoxFolderRed - components: - - pos: -33.499332,49.57459 - parent: 30 - type: Transform -- uid: 2187 - type: BoxFolderRed - components: - - pos: -30.483707,51.590214 - parent: 30 - type: Transform -- uid: 2188 - type: Paper - components: - - pos: -30.546207,49.590214 - parent: 30 - type: Transform -- uid: 2189 - type: Paper - components: - - pos: -30.499332,49.558964 - parent: 30 - type: Transform -- uid: 2190 - type: Paper - components: - - pos: -30.374332,49.527714 - parent: 30 - type: Transform -- uid: 2191 - type: Pen - components: - - pos: -30.905582,49.60584 - parent: 30 - type: Transform -- uid: 2192 - type: Pen - components: - - pos: -33.264957,49.79334 - parent: 30 - type: Transform -- uid: 2193 - type: WeaponCapacitorRecharger - components: - - pos: -34.5,49.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 2194 - type: WallReinforced - components: - - pos: -49.5,42.5 - parent: 30 - type: Transform -- uid: 2195 - type: AirlockMaintSecLocked - components: - - pos: -49.5,43.5 - parent: 30 - type: Transform -- uid: 2196 - type: WallReinforced - components: - - pos: -49.5,44.5 - parent: 30 - type: Transform -- uid: 2197 - type: WallReinforced - components: - - pos: -49.5,45.5 - parent: 30 - type: Transform -- uid: 2198 - type: WallReinforced - components: - - pos: -49.5,46.5 - parent: 30 - type: Transform -- uid: 2199 - type: WallReinforced - components: - - pos: -49.5,47.5 - parent: 30 - type: Transform -- uid: 2200 - type: WallReinforced - components: - - pos: -49.5,48.5 - parent: 30 - type: Transform -- uid: 2201 - type: WallReinforced - components: - - pos: -49.5,49.5 - parent: 30 - type: Transform -- uid: 2202 - type: WallReinforced - components: - - pos: -50.5,49.5 - parent: 30 - type: Transform -- uid: 2203 - type: WallReinforced - components: - - pos: -51.5,49.5 - parent: 30 - type: Transform -- uid: 2204 - type: AirlockMaintSecLocked - components: - - pos: -52.5,49.5 - parent: 30 - type: Transform -- uid: 2205 - type: WallReinforced - components: - - pos: -53.5,49.5 - parent: 30 - type: Transform -- uid: 2206 - type: WallReinforced - components: - - pos: -53.5,50.5 - parent: 30 - type: Transform -- uid: 2207 - type: WallReinforced - components: - - pos: -53.5,51.5 - parent: 30 - type: Transform -- uid: 2208 - type: WallReinforced - components: - - pos: -53.5,52.5 - parent: 30 - type: Transform -- uid: 2209 - type: WallReinforced - components: - - pos: -53.5,53.5 - parent: 30 - type: Transform -- uid: 2210 - type: WallReinforced - components: - - pos: -53.5,54.5 - parent: 30 - type: Transform -- uid: 2211 - type: WallSolid - components: - - pos: -52.5,54.5 - parent: 30 - type: Transform -- uid: 2212 - type: WallSolid - components: - - pos: -51.5,54.5 - parent: 30 - type: Transform -- uid: 2213 - type: WallSolid - components: - - pos: -50.5,54.5 - parent: 30 - type: Transform -- uid: 2214 - type: WallSolid - components: - - pos: -49.5,54.5 - parent: 30 - type: Transform -- uid: 2215 - type: WallSolid - components: - - pos: -49.5,55.5 - parent: 30 - type: Transform -- uid: 2216 - type: WallSolid - components: - - pos: -44.5,55.5 - parent: 30 - type: Transform -- uid: 2217 - type: WallSolid - components: - - pos: -45.5,55.5 - parent: 30 - type: Transform -- uid: 2218 - type: AirlockSecurityGlassLocked - components: - - pos: -46.5,55.5 - parent: 30 - type: Transform -- uid: 2219 - type: AirlockSecurityGlassLocked - components: - - pos: -47.5,55.5 - parent: 30 - type: Transform -- uid: 2220 - type: AirlockSecurityGlassLocked - components: - - pos: -48.5,55.5 - parent: 30 - type: Transform -- uid: 2221 - type: FirelockGlass - components: - - pos: -46.5,45.5 - parent: 30 - type: Transform -- uid: 2222 - type: FirelockGlass - components: - - pos: -47.5,45.5 - parent: 30 - type: Transform -- uid: 2223 - type: FirelockGlass - components: - - pos: -48.5,45.5 - parent: 30 - type: Transform -- uid: 2224 - type: SpawnPointSecurityOfficer - components: - - pos: -34.5,59.5 - parent: 30 - type: Transform -- uid: 2225 - type: SpawnPointSecurityOfficer - components: - - pos: -33.5,59.5 - parent: 30 - type: Transform -- uid: 2226 - type: SpawnPointSecurityOfficer - components: - - pos: -32.5,59.5 - parent: 30 - type: Transform -- uid: 2227 - type: SpawnPointSecurityOfficer - components: - - pos: -31.5,59.5 - parent: 30 - type: Transform -- uid: 2228 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -49.5,50.5 - parent: 30 - type: Transform -- uid: 2229 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -49.5,53.5 - parent: 30 - type: Transform -- uid: 2230 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -49.5,51.5 - parent: 30 - type: Transform -- uid: 2231 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -49.5,52.5 - parent: 30 - type: Transform -- uid: 2232 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -52.5,51.5 - parent: 30 - type: Transform -- uid: 2233 - type: RandomFoodSingle - components: - - pos: -4.5,9.5 - parent: 30 - type: Transform -- uid: 2234 - type: RandomFoodSingle - components: - - pos: -0.5,8.5 - parent: 30 - type: Transform -- uid: 2235 - type: TableGlass - components: - - pos: -52.5,52.5 - parent: 30 - type: Transform -- uid: 2236 - type: TableGlass - components: - - pos: -52.5,53.5 - parent: 30 - type: Transform -- uid: 2237 - type: TableGlass - components: - - pos: -51.5,53.5 - parent: 30 - type: Transform -- uid: 2238 - type: TableGlass - components: - - pos: -50.5,53.5 - parent: 30 - type: Transform -- uid: 2239 - type: MedkitBurnFilled - components: - - pos: -51.477226,53.661713 - parent: 30 - type: Transform -- uid: 2240 - type: MedkitFilled - components: - - pos: -50.48913,53.64174 - parent: 30 - type: Transform -- uid: 2241 - type: MedkitOxygenFilled - components: - - pos: -51.008476,53.677338 - parent: 30 - type: Transform -- uid: 2242 - type: ClothingHandsGlovesLatex - components: - - pos: -52.504753,53.54799 - parent: 30 - type: Transform -- uid: 2243 - type: ClothingMaskSterile - components: - - pos: -52.52038,53.282364 - parent: 30 - type: Transform -- uid: 2244 - type: SprayBottleSpaceCleaner - components: - - pos: -52.02038,53.73549 - parent: 30 - type: Transform -- uid: 2245 - type: BoxBodyBag - components: - - pos: -52.567253,52.64174 - parent: 30 - type: Transform -- uid: 2246 - type: LockerMedicalFilled - components: - - pos: -49.5,53.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2247 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,52.5 - parent: 30 - type: Transform -- uid: 2248 - type: LockerEvidence - components: - - pos: -44.5,51.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2249 - type: LockerEvidence - components: - - pos: -44.5,52.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2250 - type: LockerEvidence - components: - - pos: -44.5,53.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2251 - type: TableReinforcedGlass - components: - - pos: -44.5,54.5 - parent: 30 - type: Transform -- uid: 2252 - type: WallReinforced - components: - - pos: -53.5,55.5 - parent: 30 - type: Transform -- uid: 2253 - type: WallReinforced - components: - - pos: -53.5,56.5 - parent: 30 - type: Transform -- uid: 2254 - type: WallReinforced - components: - - pos: -53.5,57.5 - parent: 30 - type: Transform -- uid: 2255 - type: WallReinforced - components: - - pos: -53.5,58.5 - parent: 30 - type: Transform -- uid: 2256 - type: WallReinforced - components: - - pos: -53.5,59.5 - parent: 30 - type: Transform -- uid: 2257 - type: WallReinforced - components: - - pos: -53.5,60.5 - parent: 30 - type: Transform -- uid: 2258 - type: WallReinforced - components: - - pos: -53.5,61.5 - parent: 30 - type: Transform -- uid: 2259 - type: WallReinforced - components: - - pos: -52.5,59.5 - parent: 30 - type: Transform -- uid: 2260 - type: WallReinforced - components: - - pos: -51.5,59.5 - parent: 30 - type: Transform -- uid: 2261 - type: WallReinforced - components: - - pos: -49.5,59.5 - parent: 30 - type: Transform -- uid: 2262 - type: WallReinforced - components: - - pos: -48.5,59.5 - parent: 30 - type: Transform -- uid: 2263 - type: WallReinforced - components: - - pos: -47.5,59.5 - parent: 30 - type: Transform -- uid: 2264 - type: WallReinforced - components: - - pos: -45.5,59.5 - parent: 30 - type: Transform -- uid: 2265 - type: WallReinforced - components: - - pos: -44.5,59.5 - parent: 30 - type: Transform -- uid: 2266 - type: WallReinforced - components: - - pos: -43.5,59.5 - parent: 30 - type: Transform -- uid: 2267 - type: WallReinforced - components: - - pos: -44.5,60.5 - parent: 30 - type: Transform -- uid: 2268 - type: WallReinforced - components: - - pos: -44.5,61.5 - parent: 30 - type: Transform -- uid: 2269 - type: WallReinforced - components: - - pos: -44.5,62.5 - parent: 30 - type: Transform -- uid: 2270 - type: WallReinforced - components: - - pos: -48.5,60.5 - parent: 30 - type: Transform -- uid: 2271 - type: WallReinforced - components: - - pos: -48.5,61.5 - parent: 30 - type: Transform -- uid: 2272 - type: WallReinforced - components: - - pos: -48.5,62.5 - parent: 30 - type: Transform -- uid: 2273 - type: WallReinforced - components: - - pos: -47.5,62.5 - parent: 30 - type: Transform -- uid: 2274 - type: WallReinforced - components: - - pos: -49.5,62.5 - parent: 30 - type: Transform -- uid: 2275 - type: WallReinforced - components: - - pos: -45.5,62.5 - parent: 30 - type: Transform -- uid: 2276 - type: WallReinforced - components: - - pos: -53.5,62.5 - parent: 30 - type: Transform -- uid: 2277 - type: WallReinforced - components: - - pos: -52.5,62.5 - parent: 30 - type: Transform -- uid: 2278 - type: WallReinforced - components: - - pos: -51.5,62.5 - parent: 30 - type: Transform -- uid: 2279 - type: WallReinforced - components: - - pos: -52.5,60.5 - parent: 30 - type: Transform -- uid: 2280 - type: WallReinforced - components: - - pos: -52.5,61.5 - parent: 30 - type: Transform -- uid: 2281 - type: WallReinforced - components: - - pos: -42.5,62.5 - parent: 30 - type: Transform -- uid: 2282 - type: WallReinforced - components: - - pos: -53.5,63.5 - parent: 30 - type: Transform -- uid: 2283 - type: WallReinforced - components: - - pos: -53.5,64.5 - parent: 30 - type: Transform -- uid: 2284 - type: WallReinforced - components: - - pos: -53.5,65.5 - parent: 30 - type: Transform -- uid: 2285 - type: WallReinforced - components: - - pos: -53.5,66.5 - parent: 30 - type: Transform -- uid: 2286 - type: WallReinforced - components: - - pos: -53.5,67.5 - parent: 30 - type: Transform -- uid: 2287 - type: WallReinforced - components: - - pos: -53.5,68.5 - parent: 30 - type: Transform -- uid: 2288 - type: WallReinforced - components: - - pos: -52.5,68.5 - parent: 30 - type: Transform -- uid: 2289 - type: WallReinforced - components: - - pos: -52.5,69.5 - parent: 30 - type: Transform -- uid: 2290 - type: WallReinforced - components: - - pos: -52.5,70.5 - parent: 30 - type: Transform -- uid: 2291 - type: WallReinforced - components: - - pos: -51.5,70.5 - parent: 30 - type: Transform -- uid: 2292 - type: WallReinforced - components: - - pos: -45.5,70.5 - parent: 30 - type: Transform -- uid: 2293 - type: WallReinforced - components: - - pos: -49.5,70.5 - parent: 30 - type: Transform -- uid: 2294 - type: ReinforcedWindow - components: - - pos: -46.5,70.5 - parent: 30 - type: Transform -- uid: 2295 - type: WallReinforced - components: - - pos: -47.5,70.5 - parent: 30 - type: Transform -- uid: 2296 - type: ReinforcedWindow - components: - - pos: -48.5,70.5 - parent: 30 - type: Transform -- uid: 2297 - type: ReinforcedWindow - components: - - pos: -50.5,70.5 - parent: 30 - type: Transform -- uid: 2298 - type: WallReinforced - components: - - pos: -44.5,70.5 - parent: 30 - type: Transform -- uid: 2299 - type: WallReinforced - components: - - pos: -44.5,69.5 - parent: 30 - type: Transform -- uid: 2300 - type: WallReinforced - components: - - pos: -44.5,68.5 - parent: 30 - type: Transform -- uid: 2301 - type: WallReinforced - components: - - pos: -43.5,68.5 - parent: 30 - type: Transform -- uid: 2302 - type: WallReinforced - components: - - pos: -42.5,68.5 - parent: 30 - type: Transform -- uid: 2303 - type: WallReinforced - components: - - pos: -42.5,67.5 - parent: 30 - type: Transform -- uid: 2304 - type: WallReinforced - components: - - pos: -42.5,66.5 - parent: 30 - type: Transform -- uid: 2305 - type: WallReinforced - components: - - pos: -42.5,65.5 - parent: 30 - type: Transform -- uid: 2306 - type: WallReinforced - components: - - pos: -42.5,64.5 - parent: 30 - type: Transform -- uid: 2307 - type: WallReinforced - components: - - pos: -42.5,63.5 - parent: 30 - type: Transform -- uid: 2308 - type: WallSolid - components: - - pos: -43.5,65.5 - parent: 30 - type: Transform -- uid: 2309 - type: WallSolid - components: - - pos: -44.5,65.5 - parent: 30 - type: Transform -- uid: 2310 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -44.5,64.5 - parent: 30 - type: Transform -- uid: 2311 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: -44.5,63.5 - parent: 30 - type: Transform -- uid: 2312 - type: AirlockSecurityGlass - components: - - pos: -50.5,62.5 - parent: 30 - type: Transform -- uid: 2313 - type: AirlockSecurityGlass - components: - - pos: -46.5,62.5 - parent: 30 - type: Transform -- uid: 2314 - type: AirlockSecurityGlassLocked - components: - - pos: -50.5,59.5 - parent: 30 - type: Transform -- uid: 2315 - type: AirlockSecurityGlassLocked - components: - - pos: -46.5,59.5 - parent: 30 - type: Transform -- uid: 2316 - type: Grille - components: - - pos: -50.5,70.5 - parent: 30 - type: Transform -- uid: 2317 - type: Grille - components: - - pos: -48.5,70.5 - parent: 30 - type: Transform -- uid: 2318 - type: Grille - components: - - pos: -46.5,70.5 - parent: 30 - type: Transform -- uid: 2319 - type: Airlock - components: - - pos: -43.5,62.5 - parent: 30 - type: Transform -- uid: 2320 - type: ToiletEmpty - components: - - rot: -1.5707963267948966 rad - pos: -43.5,60.5 - parent: 30 - type: Transform -- uid: 2321 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -43.5,61.5 - parent: 30 - type: Transform -- uid: 2322 - type: ToyRubberDuck - components: - - pos: -44.344208,64.52283 - parent: 30 - type: Transform -- uid: 2323 - type: RandomSoap - components: - - pos: -43.5,63.5 - parent: 30 - type: Transform -- uid: 2324 - type: GasVentScrubber - components: - - pos: -43.5,64.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 2325 - type: Bed - components: - - pos: -49.5,61.5 - parent: 30 - type: Transform -- uid: 2326 - type: Bed - components: - - pos: -45.5,61.5 - parent: 30 - type: Transform -- uid: 2327 - type: BedsheetSyndie - components: - - pos: -45.5,61.5 - parent: 30 - type: Transform -- uid: 2328 - type: BedsheetSyndie - components: - - pos: -49.5,61.5 - parent: 30 - type: Transform -- uid: 2329 - type: PlushieLizard - components: - - pos: -45.625458,61.48251 - parent: 30 - type: Transform -- uid: 2330 - type: PlushieSlime - components: - - pos: -49.625458,61.404385 - parent: 30 - type: Transform -- uid: 2331 - type: Table - components: - - pos: -51.5,60.5 - parent: 30 - type: Transform -- uid: 2332 - type: Table - components: - - pos: -47.5,60.5 - parent: 30 - type: Transform -- uid: 2333 - type: Chair - components: - - pos: -47.5,61.5 - parent: 30 - type: Transform -- uid: 2334 - type: Chair - components: - - pos: -51.5,61.5 - parent: 30 - type: Transform -- uid: 2335 - type: Paper - components: - - pos: -51.484833,60.54501 - parent: 30 - type: Transform -- uid: 2336 - type: Paper - components: - - pos: -47.500458,60.498135 - parent: 30 - type: Transform -- uid: 2337 - type: Pen - components: - - pos: -47.312958,60.76376 - parent: 30 - type: Transform -- uid: 2338 - type: Pen - components: - - pos: -51.250458,60.716885 - parent: 30 - type: Transform -- uid: 2339 - type: hydroponicsTray - components: - - pos: -50.5,69.5 - parent: 30 - type: Transform -- uid: 2340 - type: hydroponicsTray - components: - - pos: -50.5,68.5 - parent: 30 - type: Transform -- uid: 2341 - type: hydroponicsTray - components: - - pos: -48.5,69.5 - parent: 30 - type: Transform -- uid: 2342 - type: hydroponicsTray - components: - - pos: -48.5,68.5 - parent: 30 - type: Transform -- uid: 2343 - type: hydroponicsTray - components: - - pos: -46.5,68.5 - parent: 30 - type: Transform -- uid: 2344 - type: hydroponicsTray - components: - - pos: -46.5,69.5 - parent: 30 - type: Transform -- uid: 2345 - type: SeedExtractor - components: - - pos: -45.5,68.5 - parent: 30 - type: Transform -- uid: 2346 - type: Table - components: - - pos: -45.5,69.5 - parent: 30 - type: Transform -- uid: 2347 - type: HydroponicsToolMiniHoe - components: - - pos: -45.453583,69.54325 - parent: 30 - type: Transform -- uid: 2348 - type: CornSeeds - components: - - pos: -45.547333,69.512 - parent: 30 - type: Transform -- uid: 2349 - type: AppleSeeds - components: - - pos: -45.484833,69.54325 - parent: 30 - type: Transform -- uid: 2350 - type: WaterTankFull - components: - - pos: -51.5,69.5 - parent: 30 - type: Transform -- uid: 2351 - type: Bucket - components: - - pos: -47.45382,68.49689 - parent: 30 - type: Transform -- uid: 2352 - type: Table - components: - - pos: -48.5,65.5 - parent: 30 - type: Transform -- uid: 2353 - type: Table - components: - - pos: -49.5,65.5 - parent: 30 - type: Transform -- uid: 2354 - type: Table - components: - - pos: -49.5,66.5 - parent: 30 - type: Transform -- uid: 2355 - type: Table - components: - - pos: -48.5,66.5 - parent: 30 - type: Transform -- uid: 2356 - type: Bookshelf - components: - - pos: -52.5,67.5 - parent: 30 - type: Transform -- uid: 2357 - type: Bookshelf - components: - - pos: -52.5,66.5 - parent: 30 - type: Transform -- uid: 2358 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -51.5,67.5 - parent: 30 - type: Transform -- uid: 2359 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -50.5,67.5 - parent: 30 - type: Transform -- uid: 2360 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -45.5,67.5 - parent: 30 - type: Transform -- uid: 2361 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -46.5,67.5 - parent: 30 - type: Transform -- uid: 2362 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -49.5,67.5 - parent: 30 - type: Transform -- uid: 2363 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -47.5,67.5 - parent: 30 - type: Transform -- uid: 2364 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -48.5,67.5 - parent: 30 - type: Transform -- uid: 2365 - type: ComfyChair - components: - - pos: -51.5,66.5 - parent: 30 - type: Transform -- uid: 2366 - type: CrayonBox - components: - - pos: -48.618538,65.82301 - parent: 30 - type: Transform -- uid: 2367 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -47.5,66.5 - parent: 30 - type: Transform -- uid: 2368 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -47.5,65.5 - parent: 30 - type: Transform -- uid: 2369 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: -50.5,65.5 - parent: 30 - type: Transform -- uid: 2370 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: -50.5,66.5 - parent: 30 - type: Transform -- uid: 2371 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -52.5,63.5 - parent: 30 - type: Transform -- uid: 2372 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -52.5,64.5 - parent: 30 - type: Transform -- uid: 2373 - type: Table - components: - - pos: -43.5,66.5 - parent: 30 - type: Transform -- uid: 2374 - type: Table - components: - - pos: -43.5,67.5 - parent: 30 - type: Transform -- uid: 2375 - type: HarmonicaInstrument - components: - - pos: -43.530403,66.65333 - parent: 30 - type: Transform -- uid: 2376 - type: LockerEvidence - components: - - pos: -44.5,56.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2377 - type: WardrobePrisonFilled - components: - - pos: -45.5,60.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2378 - type: WardrobePrisonFilled - components: - - pos: -49.5,60.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2379 - type: Table - components: - - pos: -44.5,57.5 - parent: 30 - type: Transform -- uid: 2380 - type: Table - components: - - pos: -44.5,58.5 - parent: 30 - type: Transform -- uid: 2381 - type: ClothingOuterHardsuitEVAPrisoner - components: - - pos: -44.509163,58.66959 - parent: 30 - type: Transform -- uid: 2382 - type: ClothingOuterHardsuitEVAPrisoner - components: - - pos: -44.368538,58.54459 - parent: 30 - type: Transform -- uid: 2383 - type: SignPrison - components: - - pos: -48.5,59.5 - parent: 30 - type: Transform -- uid: 2384 - type: BlockGameArcade - components: - - pos: -44.5,67.5 - parent: 30 - type: Transform -- uid: 2385 - type: DiceBag - components: - - pos: -49.337288,65.68239 - parent: 30 - type: Transform -- uid: 2386 - type: ParchisBoard - components: - - pos: -48.82064,66.44915 - parent: 30 - type: Transform -- uid: 2387 - type: Grille - components: - - pos: -54.5,70.5 - parent: 30 - type: Transform -- uid: 2388 - type: Grille - components: - - pos: -39.5,67.5 - parent: 30 - type: Transform -- uid: 2389 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -51.5,72.5 - parent: 30 - type: Transform -- uid: 2390 - type: Grille - components: - - pos: -44.5,72.5 - parent: 30 - type: Transform -- uid: 2391 - type: Grille - components: - - pos: -45.5,72.5 - parent: 30 - type: Transform -- uid: 2392 - type: Grille - components: - - pos: -46.5,72.5 - parent: 30 - type: Transform -- uid: 2393 - type: Grille - components: - - pos: -47.5,72.5 - parent: 30 - type: Transform -- uid: 2394 - type: Grille - components: - - pos: -48.5,72.5 - parent: 30 - type: Transform -- uid: 2395 - type: Grille - components: - - pos: -49.5,72.5 - parent: 30 - type: Transform -- uid: 2396 - type: Grille - components: - - pos: -50.5,72.5 - parent: 30 - type: Transform -- uid: 2397 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -51.5,72.5 - parent: 30 - type: Transform -- uid: 2398 - type: Grille - components: - - pos: -52.5,72.5 - parent: 30 - type: Transform -- uid: 2399 - type: Grille - components: - - pos: -53.5,72.5 - parent: 30 - type: Transform -- uid: 2400 - type: GrilleBroken - components: - - pos: -54.5,71.5 - parent: 30 - type: Transform -- uid: 2401 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -54.5,69.5 - parent: 30 - type: Transform -- uid: 2402 - type: Grille - components: - - pos: -39.5,69.5 - parent: 30 - type: Transform -- uid: 2403 - type: Grille - components: - - pos: -39.5,68.5 - parent: 30 - type: Transform -- uid: 2404 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -43.5,72.5 - parent: 30 - type: Transform -- uid: 2405 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -45.5,64.5 - parent: 30 - type: Transform -- uid: 2406 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -45.5,63.5 - parent: 30 - type: Transform -- uid: 2407 - type: SignSecureMedRed - components: - - pos: -36.5,45.5 - parent: 30 - type: Transform -- uid: 2408 - type: SignSecureMedRed - components: - - pos: -39.5,57.5 - parent: 30 - type: Transform -- uid: 2409 - type: SignSecureSmallRed - components: - - pos: -45.5,50.5 - parent: 30 - type: Transform -- uid: 2410 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: -23.5,-22.5 - parent: 30 - type: Transform -- uid: 2411 - type: PosterLegitSpaceCops - components: - - pos: -30.5,55.5 - parent: 30 - type: Transform -- uid: 2412 - type: PosterLegitSafetyReport - components: - - pos: -36.5,50.5 - parent: 30 - type: Transform -- uid: 2413 - type: PosterLegitReportCrimes - components: - - pos: -41.5,38.5 - parent: 30 - type: Transform -- uid: 2414 - type: PosterLegitNoERP - components: - - pos: -44.5,61.5 - parent: 30 - type: Transform -- uid: 2415 - type: PosterContrabandKosmicheskayaStantsiya - components: - - pos: -53.5,65.5 - parent: 30 - type: Transform -- uid: 2416 - type: PosterLegitHereForYourSafety - components: - - pos: -45.5,47.5 - parent: 30 - type: Transform -- uid: 2417 - type: PosterLegitEnlist - components: - - pos: -33.5,55.5 - parent: 30 - type: Transform -- uid: 2418 - type: PosterLegitDickGumshue - components: - - pos: -45.5,33.5 - parent: 30 - type: Transform -- uid: 2419 - type: PosterLegitNanotrasenLogo - components: - - pos: -26.5,53.5 - parent: 30 - type: Transform -- uid: 2420 - type: PosterContrabandWehWatches - components: - - pos: -48.5,62.5 - parent: 30 - type: Transform -- uid: 2421 - type: RandomPosterContraband - components: - - pos: -52.5,68.5 - parent: 30 - type: Transform -- uid: 2422 - type: RandomPosterContraband - components: - - pos: -44.5,68.5 - parent: 30 - type: Transform -- uid: 2423 - type: PosterContrabandUnreadableAnnouncement - components: - - pos: -32.583633,55.742336 - parent: 30 - type: Transform -- uid: 2424 - type: Table - components: - - pos: -51.5,55.5 - parent: 30 - type: Transform -- uid: 2425 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -52.5,55.5 - parent: 30 - type: Transform -- uid: 2426 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -50.5,55.5 - parent: 30 - type: Transform -- uid: 2427 - type: ChairOfficeDark - components: - - pos: -32.5,53.5 - parent: 30 - type: Transform -- uid: 2428 - type: ChairOfficeDark - components: - - pos: -33.5,53.5 - parent: 30 - type: Transform -- uid: 2429 - type: DoorRemoteSecurity - components: - - pos: -23.516384,50.539074 - parent: 30 - type: Transform - - tags: - - HeadOfSecurity - - Security - - Armory - - Brig - type: Access -- uid: 2430 - type: GasPipeFourway - components: - - pos: -36.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2431 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -34.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2432 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2433 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2434 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,34.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2435 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,33.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2436 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,34.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2437 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,33.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2438 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,31.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2439 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,32.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2440 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -34.5,31.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2441 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -36.5,32.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2442 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -34.5,36.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2443 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2444 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2445 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2446 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2447 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2448 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2449 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2450 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2451 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -35.5,31.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2452 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -35.5,32.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2453 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -35.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2454 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -35.5,36.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2455 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2456 - type: GasPipeTJunction - components: - - pos: -42.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2457 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2458 - type: GasPipeTJunction - components: - - pos: -41.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2459 - type: GasPipeTJunction - components: - - pos: -41.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2460 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2461 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2462 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2463 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -45.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2464 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2465 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2466 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2467 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2468 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2469 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2470 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2471 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2472 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2473 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2474 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -50.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2475 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -49.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2476 - type: GasPipeStraight - components: - - pos: -49.5,34.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2477 - type: GasPipeStraight - components: - - pos: -49.5,33.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2478 - type: GasPipeStraight - components: - - pos: -50.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2479 - type: GasPipeStraight - components: - - pos: -50.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2480 - type: GasPipeStraight - components: - - pos: -50.5,34.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2481 - type: GasPipeStraight - components: - - pos: -50.5,33.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2482 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -49.5,32.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2483 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -50.5,32.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2484 - type: GasPipeStraight - components: - - pos: -41.5,34.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2485 - type: GasPipeStraight - components: - - pos: -41.5,33.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2486 - type: GasPipeStraight - components: - - pos: -42.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2487 - type: GasPipeStraight - components: - - pos: -42.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2488 - type: GasPipeStraight - components: - - pos: -42.5,34.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2489 - type: GasPipeStraight - components: - - pos: -42.5,33.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2490 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -42.5,32.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2491 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -41.5,32.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2492 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -41.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2493 - type: GasVentPump - components: - - pos: -45.5,36.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2494 - type: GasPipeStraight - components: - - pos: -36.5,38.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2495 - type: GasPipeStraight - components: - - pos: -36.5,39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2496 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -36.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2497 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -34.5,39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2498 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2499 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2500 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2501 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2502 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,41.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2503 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -35.5,39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2504 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -35.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2505 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,42.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2506 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -36.5,43.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2507 - type: GasPipeTJunction - components: - - pos: -36.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2508 - type: GasPipeTJunction - components: - - pos: -34.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2509 - type: GasPipeTJunction - components: - - pos: -35.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2510 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -33.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2511 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2512 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -33.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2513 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -31.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2514 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2515 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2516 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,44.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2517 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,45.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2518 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -33.5,45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2519 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -33.5,46.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2520 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -31.5,46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2521 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -31.5,48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2522 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,47.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2523 - type: GasVentPump - components: - - pos: -33.5,43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2524 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -30.5,46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2525 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -35.5,43.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2526 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -34.5,46.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2527 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -33.5,47.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2528 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,47.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2529 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,47.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2530 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,47.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2531 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,47.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2532 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -38.5,47.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2533 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,47.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2534 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2535 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2536 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2537 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2538 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2539 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2540 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2541 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2542 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -40.5,48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2543 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,47.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2544 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -41.5,48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2545 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -41.5,47.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2546 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,48.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2547 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,49.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2548 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,49.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2549 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,50.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2550 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,50.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2551 - type: GasVentPump - components: - - pos: -40.5,51.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2552 - type: GasVentScrubber - components: - - pos: -38.5,51.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2553 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -31.5,49.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2554 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -33.5,51.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2555 - type: GasPipeStraight - components: - - pos: -33.5,48.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2556 - type: GasPipeStraight - components: - - pos: -33.5,49.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2557 - type: GasPipeStraight - components: - - pos: -33.5,50.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2558 - type: GasPipeStraight - components: - - pos: -31.5,50.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2559 - type: GasPipeStraight - components: - - pos: -31.5,51.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2560 - type: GasPipeStraight - components: - - pos: -31.5,52.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2561 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,51.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2562 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,51.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2563 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,51.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2564 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,51.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2565 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,51.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2566 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,51.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2567 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,51.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2568 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,49.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2569 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,49.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2570 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,49.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2571 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,49.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2572 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,49.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2573 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -25.5,49.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2574 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -25.5,51.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2575 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -33.5,52.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2576 - type: GasPipeBend - components: - - pos: -33.5,53.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2577 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -31.5,53.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2578 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -29.5,53.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2579 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -35.5,53.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2580 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -35.5,57.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2581 - type: GasPipeBend - components: - - pos: -29.5,57.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2582 - type: GasPipeTJunction - components: - - pos: -34.5,53.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2583 - type: GasPipeTJunction - components: - - pos: -30.5,53.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2584 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -29.5,54.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2585 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -35.5,54.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2586 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -35.5,55.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2587 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -35.5,56.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2588 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -29.5,56.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2589 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -29.5,55.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2590 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,57.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2591 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,57.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2592 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -31.5,57.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2593 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -33.5,57.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2594 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -30.5,52.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2595 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -34.5,52.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2596 - type: GasPipeTJunction - components: - - pos: -38.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2597 - type: GasPipeTJunction - components: - - pos: -40.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2598 - type: GasPipeTJunction - components: - - pos: -42.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2599 - type: GasPipeTJunction - components: - - pos: -44.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2600 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -46.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2601 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -48.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2602 - type: GasPipeStraight - components: - - pos: -46.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2603 - type: GasPipeStraight - components: - - pos: -48.5,43.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2604 - type: GasPipeStraight - components: - - pos: -48.5,42.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2605 - type: GasPipeStraight - components: - - pos: -48.5,41.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2606 - type: GasPipeStraight - components: - - pos: -44.5,43.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2607 - type: GasPipeStraight - components: - - pos: -44.5,42.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2608 - type: GasPipeStraight - components: - - pos: -44.5,41.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2609 - type: GasPipeStraight - components: - - pos: -42.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2610 - type: GasPipeStraight - components: - - pos: -40.5,43.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2611 - type: GasPipeStraight - components: - - pos: -40.5,42.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2612 - type: GasPipeStraight - components: - - pos: -40.5,41.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2613 - type: GasPipeStraight - components: - - pos: -38.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2614 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2615 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2616 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2617 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2618 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2619 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -41.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2620 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2621 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2622 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2623 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2624 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2625 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2626 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2627 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2628 - type: GasPipeTJunction - components: - - pos: -43.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2629 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2630 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2631 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2632 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2633 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,44.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2634 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,45.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2635 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2636 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2637 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,46.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2638 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -38.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2639 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -42.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2640 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -46.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2641 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -48.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2642 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -44.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2643 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -40.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2644 - type: GasVentPump - components: - - pos: -41.5,43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2645 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -43.5,43.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2646 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -37.5,42.5 - parent: 30 - type: Transform -- uid: 2647 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -37.5,43.5 - parent: 30 - type: Transform -- uid: 2648 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -37.5,44.5 - parent: 30 - type: Transform -- uid: 2649 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,47.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2650 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,48.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2651 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2652 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,47.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2653 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,49.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2654 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -48.5,50.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2655 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,53.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2656 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,50.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2657 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,51.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2658 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -48.5,51.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2659 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -46.5,52.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2660 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,52.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2661 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,53.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2662 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -46.5,49.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2663 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,54.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2664 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,54.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2665 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,55.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2666 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,55.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2667 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -48.5,56.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2668 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -46.5,56.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2669 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -47.5,49.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2670 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -47.5,50.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2671 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,51.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2672 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,52.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2673 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,52.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2674 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,52.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2675 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -50.5,51.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2676 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -50.5,52.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2677 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -46.5,57.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2678 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,57.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2679 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,57.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2680 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,57.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2681 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -50.5,57.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2682 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2683 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2684 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,59.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2685 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2686 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2687 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,59.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2688 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -50.5,61.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2689 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -46.5,61.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2690 - type: GasPipeStraight - components: - - pos: -50.5,62.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2691 - type: GasPipeStraight - components: - - pos: -46.5,62.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2692 - type: GasPipeStraight - components: - - pos: -46.5,63.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2693 - type: GasPipeStraight - components: - - pos: -46.5,64.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2694 - type: GasPipeStraight - components: - - pos: -46.5,65.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2695 - type: GasPipeStraight - components: - - pos: -46.5,66.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2696 - type: GasPipeStraight - components: - - pos: -50.5,63.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2697 - type: GasPipeStraight - components: - - pos: -50.5,64.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2698 - type: GasPipeStraight - components: - - pos: -50.5,65.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2699 - type: GasPipeStraight - components: - - pos: -50.5,66.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2700 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -50.5,67.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2701 - type: GasPipeBend - components: - - pos: -46.5,67.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2702 - type: GasPipeFourway - components: - - pos: -48.5,67.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2703 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,67.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2704 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,67.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2705 - type: GasVentPump - components: - - pos: -48.5,68.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2706 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -48.5,66.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2707 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -49.5,61.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2708 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -45.5,61.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2709 - type: GasPipeTJunction - components: - - pos: -48.5,58.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2710 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -48.5,57.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2711 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -47.5,58.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2712 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -51.5,58.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2713 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,58.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2714 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,58.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2715 - type: GasPipeStraight - components: - - pos: -47.5,59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2716 - type: GasPipeStraight - components: - - pos: -51.5,59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2717 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -51.5,60.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2718 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -47.5,60.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2719 - type: GasPipeStraight - components: - - pos: -47.5,61.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2720 - type: GasPipeStraight - components: - - pos: -51.5,61.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2721 - type: GasPipeStraight - components: - - pos: -51.5,62.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2722 - type: GasPipeStraight - components: - - pos: -51.5,63.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2723 - type: GasPipeStraight - components: - - pos: -47.5,62.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2724 - type: GasPipeStraight - components: - - pos: -47.5,63.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2725 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -51.5,64.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2726 - type: GasPipeBend - components: - - pos: -47.5,64.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2727 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,64.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2728 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,64.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2729 - type: GasPipeTJunction - components: - - pos: -48.5,64.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2730 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -48.5,63.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2731 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -50.5,60.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2732 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -46.5,60.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2733 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -49.5,56.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2734 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -47.5,56.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2735 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2736 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2737 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2738 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2739 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2740 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2741 - type: GasPipeBend - components: - - pos: -28.5,44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2742 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -28.5,43.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2743 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -28.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2744 - type: FirelockGlass - components: - - pos: -37.5,37.5 - parent: 30 - type: Transform -- uid: 2745 - type: FirelockGlass - components: - - pos: -37.5,36.5 - parent: 30 - type: Transform -- uid: 2746 - type: FirelockGlass - components: - - pos: -37.5,35.5 - parent: 30 - type: Transform -- uid: 2747 - type: GasPipeStraight - components: - - pos: -36.5,30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2748 - type: GasPipeStraight - components: - - pos: -36.5,29.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2749 - type: GasPipeStraight - components: - - pos: -36.5,28.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2750 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -36.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2751 - type: GasPipeStraight - components: - - pos: -36.5,26.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2752 - type: GasPipeStraight - components: - - pos: -36.5,25.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2753 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -36.5,24.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2754 - type: GasPipeStraight - components: - - pos: -36.5,23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2755 - type: GasPipeStraight - components: - - pos: -36.5,22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2756 - type: GasPipeStraight - components: - - pos: -36.5,21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2757 - type: GasPipeStraight - components: - - pos: -36.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2758 - type: GasPipeStraight - components: - - pos: -36.5,19.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2759 - type: GasPipeStraight - components: - - pos: -36.5,18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2760 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -36.5,17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2761 - type: GasPipeStraight - components: - - pos: -36.5,16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2762 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -36.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2763 - type: GasPipeStraight - components: - - pos: -36.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2764 - type: GasPipeStraight - components: - - pos: -36.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2765 - type: GasPipeStraight - components: - - pos: -36.5,12.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2766 - type: GasPipeStraight - components: - - pos: -36.5,11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2767 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -34.5,9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2768 - type: GasPipeStraight - components: - - pos: -36.5,9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2769 - type: GasPipeStraight - components: - - pos: -36.5,8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2770 - type: GasPipeFourway - components: - - pos: -36.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2771 - type: GasPipeStraight - components: - - pos: -36.5,6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2772 - type: GasPipeStraight - components: - - pos: -36.5,4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2773 - type: GasPipeStraight - components: - - pos: -36.5,5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2774 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -36.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2775 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2776 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2777 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -34.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2778 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2779 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -32.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2780 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2781 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2782 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2783 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2784 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2785 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2786 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -27.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2787 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2788 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -21.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2789 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2790 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2791 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2792 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2793 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2794 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2795 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2796 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -17.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2797 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2798 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2799 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2800 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2801 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2802 - type: GasPipeTJunction - components: - - pos: -8.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2803 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2804 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2805 - type: GasPipeFourway - components: - - pos: -10.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2806 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2807 - type: GasPipeFourway - components: - - pos: -3.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2808 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2809 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2810 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2811 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2812 - type: GasPipeTJunction - components: - - pos: 1.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2813 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2814 - type: GasPipeTJunction - components: - - pos: 3.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2815 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2816 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2817 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2818 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2819 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2820 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2821 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2822 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2823 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2824 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2825 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2826 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2827 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2828 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,12.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2829 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2830 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2831 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2832 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2833 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 10.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2834 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2835 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,19.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2836 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2837 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2838 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2839 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2840 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,24.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2841 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,25.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2842 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 8.5,26.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2843 - type: GasPipeFourway - components: - - pos: 8.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2844 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2845 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2846 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2847 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2848 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2849 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2850 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2851 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2852 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2853 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2854 - type: GasPipeTJunction - components: - - pos: -2.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2855 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2856 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2857 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -4.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2858 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2859 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2860 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2861 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2862 - type: GasVentPump - components: - - pos: -8.5,26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2863 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2864 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2865 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2866 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -14.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2867 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2868 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2869 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2870 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2871 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -23.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2872 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2873 - type: GasPipeTJunction - components: - - pos: -21.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2874 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2875 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2876 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2877 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2878 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2879 - type: GasPipeTJunction - components: - - pos: -27.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2880 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2881 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2882 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2883 - type: GasPipeFourway - components: - - pos: -31.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2884 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2885 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2886 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2887 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2888 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -34.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2889 - type: GasPipeStraight - components: - - pos: -34.5,30.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2890 - type: GasPipeStraight - components: - - pos: -34.5,29.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2891 - type: GasPipeStraight - components: - - pos: -34.5,28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2892 - type: GasPipeStraight - components: - - pos: -34.5,27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2893 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -34.5,26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2894 - type: GasPipeStraight - components: - - pos: -34.5,24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2895 - type: GasPipeStraight - components: - - pos: -34.5,23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2896 - type: GasPipeStraight - components: - - pos: -34.5,22.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2897 - type: GasPipeStraight - components: - - pos: -34.5,21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2898 - type: GasPipeStraight - components: - - pos: -34.5,20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2899 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -34.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2900 - type: GasPipeStraight - components: - - pos: -34.5,18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2901 - type: GasPipeStraight - components: - - pos: -34.5,17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2902 - type: GasPipeStraight - components: - - pos: -34.5,16.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2903 - type: GasPipeStraight - components: - - pos: -34.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2904 - type: GasPipeStraight - components: - - pos: -34.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2905 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -34.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2906 - type: GasPipeStraight - components: - - pos: -34.5,12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2907 - type: GasPipeStraight - components: - - pos: -34.5,11.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2908 - type: GasPipeStraight - components: - - pos: -34.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2909 - type: GasPipeFourway - components: - - pos: -36.5,10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2910 - type: GasPipeFourway - components: - - pos: -34.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2911 - type: GasPipeStraight - components: - - pos: -34.5,7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2912 - type: GasPipeStraight - components: - - pos: -34.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2913 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -34.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2914 - type: GasPipeStraight - components: - - pos: -34.5,4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2915 - type: GasPipeStraight - components: - - pos: -34.5,3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2916 - type: GasPipeStraight - components: - - pos: -34.5,2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2917 - type: GasPipeTJunction - components: - - pos: -33.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2918 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2919 - type: GasPipeTJunction - components: - - pos: -31.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2920 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2921 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2922 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2923 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2924 - type: GasPipeTJunction - components: - - pos: -24.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2925 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2926 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2927 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2928 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2929 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2930 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2931 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2932 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -19.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2933 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2934 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2935 - type: GasPipeTJunction - components: - - pos: -14.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2936 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2937 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2938 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2939 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2940 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2941 - type: GasPipeTJunction - components: - - pos: -6.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2942 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2943 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2944 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2945 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2946 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2947 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2948 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2949 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2950 - type: GasPipeFourway - components: - - pos: -1.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2951 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2952 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2953 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2954 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2955 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2956 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2957 - type: GasPipeFourway - components: - - pos: 5.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2958 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2959 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2960 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2961 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2962 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 10.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2963 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2964 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2965 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2966 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2967 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2968 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2969 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2970 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2971 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2972 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,11.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2973 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2974 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2975 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 8.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2976 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2977 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,16.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2978 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2979 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2980 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2981 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2982 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2983 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,22.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2984 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2985 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2986 - type: GasPipeFourway - components: - - pos: 10.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2987 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2988 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2989 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2990 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2991 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2992 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2993 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2994 - type: GasPipeTJunction - components: - - pos: 0.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2995 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2996 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2997 - type: GasPipeTJunction - components: - - pos: -0.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2998 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2999 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3000 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -3.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3001 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3002 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3003 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3004 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3005 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3006 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -10.5,26.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3007 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3008 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3009 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3010 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3011 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3012 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -15.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3013 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3014 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3015 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3016 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3017 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3018 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3019 - type: GasPipeTJunction - components: - - pos: -22.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3020 - type: GasPipeTJunction - components: - - pos: -19.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3021 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3022 - type: GasPipeTJunction - components: - - pos: -26.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3023 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -25.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3024 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3025 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3026 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3027 - type: GasPipeTJunction - components: - - pos: -30.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3028 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3029 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3030 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3031 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,28.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3032 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,29.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3033 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3034 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3035 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3036 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3037 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,29.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3038 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,30.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3039 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -31.5,31.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3040 - type: GasPipeBend - components: - - pos: -25.5,31.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3041 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -30.5,31.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3042 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -26.5,31.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3043 - type: GasPipeStraight - components: - - pos: -30.5,24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3044 - type: GasPipeStraight - components: - - pos: -30.5,23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3045 - type: GasPipeStraight - components: - - pos: -31.5,26.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3046 - type: GasPipeStraight - components: - - pos: -31.5,25.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3047 - type: GasPipeStraight - components: - - pos: -31.5,24.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3048 - type: GasPipeStraight - components: - - pos: -31.5,23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3049 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -31.5,22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3050 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -30.5,22.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3051 - type: GasPipeStraight - components: - - pos: -26.5,24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3052 - type: GasPipeStraight - components: - - pos: -27.5,26.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3053 - type: GasPipeStraight - components: - - pos: -27.5,25.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3054 - type: GasPipeStraight - components: - - pos: -27.5,24.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3055 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -27.5,23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3056 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -26.5,23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3057 - type: GasPipeStraight - components: - - pos: -22.5,24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3058 - type: GasPipeStraight - components: - - pos: -21.5,26.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3059 - type: GasPipeStraight - components: - - pos: -21.5,25.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3060 - type: GasPipeStraight - components: - - pos: -21.5,24.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3061 - type: GasPipeStraight - components: - - pos: -21.5,23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3062 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -22.5,23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3063 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -21.5,22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3064 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -35.5,26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3065 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -35.5,24.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3066 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -35.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3067 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -35.5,17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3068 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -35.5,10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3069 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -35.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3070 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3071 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3072 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3073 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3074 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3075 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3076 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -39.5,10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3077 - type: GasVentPump - components: - - pos: -40.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3078 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -40.5,9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3079 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3080 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3081 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3082 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3083 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3084 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -42.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3085 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3086 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3087 - type: GasPipeTJunction - components: - - pos: -41.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3088 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3089 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3090 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3091 - type: GasPipeTJunction - components: - - pos: -39.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3092 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3093 - type: GasPipeTJunction - components: - - pos: -39.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3094 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3095 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3096 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3097 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -44.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3098 - type: GasPipeTJunction - components: - - pos: -45.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3099 - type: GasVentPump - components: - - pos: -42.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3100 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -39.5,6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3101 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3102 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3103 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3104 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3105 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3106 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3107 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3108 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3109 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3110 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3111 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -39.5,0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3112 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -41.5,0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3113 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3114 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -47.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3115 - type: ReinforcedWindow - components: - - pos: -49.5,-6.5 - parent: 30 - type: Transform -- uid: 3116 - type: GasPipeBend - components: - - pos: -44.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3117 - type: ReinforcedWindow - components: - - pos: -53.5,-6.5 - parent: 30 - type: Transform -- uid: 3118 - type: ReinforcedWindow - components: - - pos: -54.5,-6.5 - parent: 30 - type: Transform -- uid: 3119 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-0.5 - parent: 30 - type: Transform -- uid: 3120 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -51.5,9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3121 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3122 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3123 - type: WallReinforced - components: - - pos: -57.5,6.5 - parent: 30 - type: Transform -- uid: 3124 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3125 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3126 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3127 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3128 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3129 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3130 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3131 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3132 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3133 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3134 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -52.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3135 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -53.5,9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3136 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -52.5,9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3137 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -44.5,4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3138 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -45.5,6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3139 - type: GasPipeStraight - components: - - pos: -45.5,5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3140 - type: GasPipeStraight - components: - - pos: -45.5,4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3141 - type: GasPipeStraight - components: - - pos: -45.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3142 - type: GasPipeStraight - components: - - pos: -45.5,2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3143 - type: GasPipeStraight - components: - - pos: -44.5,3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3144 - type: GasPipeStraight - components: - - pos: -44.5,2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3145 - type: GasPipeStraight - components: - - pos: -44.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3146 - type: GasPipeStraight - components: - - pos: -45.5,1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3147 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -44.5,6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3148 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -45.5,4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3149 - type: GasPipeStraight - components: - - pos: -45.5,0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3150 - type: GasPipeStraight - components: - - pos: -45.5,-0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3151 - type: GasPipeStraight - components: - - pos: -45.5,-1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3152 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3153 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3154 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3155 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3156 - type: GasPipeStraight - components: - - pos: -44.5,-5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3157 - type: GasPipeStraight - components: - - pos: -44.5,-3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3158 - type: GasPipeStraight - components: - - pos: -44.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3159 - type: GasPipeStraight - components: - - pos: -44.5,-0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3160 - type: GasPipeStraight - components: - - pos: -44.5,0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3161 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3162 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3163 - type: AtmosDeviceFanTiny - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-3.5 - parent: 30 - type: Transform -- uid: 3164 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,-4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3165 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,-2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3166 - type: AtmosDeviceFanTiny - components: - - rot: 1.5707963267948966 rad - pos: -58.5,6.5 - parent: 30 - type: Transform -- uid: 3167 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3168 - type: AtmosDeviceFanTiny - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-3.5 - parent: 30 - type: Transform -- uid: 3169 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 3.141592653589793 rad - pos: -51.5,-3.5 - parent: 30 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3170 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3171 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3172 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 3.141592653589793 rad - pos: -58.5,-3.5 - parent: 30 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3173 - type: AirlockExternalGlassShuttleArrivals - components: - - pos: -58.5,6.5 - parent: 30 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3174 - type: AirlockExternalGlassShuttleArrivals - components: - - pos: -51.5,6.5 - parent: 30 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3175 - type: CableApcExtension - components: - - pos: -49.5,-4.5 - parent: 30 - type: Transform -- uid: 3176 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -47.5,-6.5 - parent: 30 - type: Transform -- uid: 3177 - type: CableApcExtension - components: - - pos: -48.5,-4.5 - parent: 30 - type: Transform -- uid: 3178 - type: CableApcExtension - components: - - pos: -51.5,-4.5 - parent: 30 - type: Transform -- uid: 3179 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3180 - type: ReinforcedWindow - components: - - pos: -56.5,-3.5 - parent: 30 - type: Transform -- uid: 3181 - type: ReinforcedWindow - components: - - pos: -51.5,-6.5 - parent: 30 - type: Transform -- uid: 3182 - type: ReinforcedWindow - components: - - pos: -52.5,-6.5 - parent: 30 - type: Transform -- uid: 3183 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3184 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3185 - type: ReinforcedWindow - components: - - pos: -49.5,-3.5 - parent: 30 - type: Transform -- uid: 3186 - type: CableApcExtension - components: - - pos: -50.5,-4.5 - parent: 30 - type: Transform -- uid: 3187 - type: CableHV - components: - - pos: -45.5,10.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3188 - type: CableApcExtension - components: - - pos: -52.5,-4.5 - parent: 30 - type: Transform -- uid: 3189 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3190 - type: GasPipeStraight - components: - - pos: -51.5,10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3191 - type: GasPipeStraight - components: - - pos: -51.5,11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3192 - type: GasPipeStraight - components: - - pos: -52.5,11.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3193 - type: CableApcExtension - components: - - pos: -57.5,8.5 - parent: 30 - type: Transform -- uid: 3194 - type: SignElectricalMed - components: - - pos: -46.5,9.5 - parent: 30 - type: Transform -- uid: 3195 - type: Poweredlight - components: - - pos: -50.5,-4.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3196 - type: Poweredlight - components: - - pos: -49.5,10.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3197 - type: CableHV - components: - - pos: -47.5,9.5 - parent: 30 - type: Transform -- uid: 3198 - type: AirlockEngineeringLocked - components: - - pos: -46.5,10.5 - parent: 30 - type: Transform -- uid: 3199 - type: CableApcExtension - components: - - pos: -57.5,-4.5 - parent: 30 - type: Transform -- uid: 3200 - type: CableApcExtension - components: - - pos: -55.5,-4.5 - parent: 30 - type: Transform -- uid: 3201 - type: CableApcExtension - components: - - pos: -56.5,-4.5 - parent: 30 - type: Transform -- uid: 3202 - type: CableApcExtension - components: - - pos: -57.5,7.5 - parent: 30 - type: Transform -- uid: 3203 - type: Poweredlight - components: - - pos: -54.5,10.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3204 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,1.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3205 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3206 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,-7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3207 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,-8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3208 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,-9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3209 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3210 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3211 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3212 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3213 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3214 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3215 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3216 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-11.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3217 - type: GasPipeStraight - components: - - pos: -45.5,-12.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3218 - type: GasPipeStraight - components: - - pos: -45.5,-13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3219 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3220 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3221 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3222 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3223 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3224 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3225 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3226 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3227 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3228 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -31.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3229 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -31.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3230 - type: GasVentPump - components: - - pos: -32.5,2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3231 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -31.5,2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3232 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3233 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3234 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3235 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3236 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3237 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3238 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3239 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3240 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3241 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -44.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3242 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3243 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3244 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3245 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -43.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3246 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -42.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3247 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -43.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3248 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -43.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3249 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -42.5,16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3250 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -43.5,16.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3251 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -43.5,17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3252 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -42.5,17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3253 - type: GasVentPump - components: - - pos: -43.5,18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3254 - type: GasVentScrubber - components: - - pos: -42.5,18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3255 - type: GasPipeTJunction - components: - - pos: -41.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3256 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3257 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3258 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3259 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3260 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3261 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3262 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3263 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3264 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3265 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3266 - type: GasVentPump - components: - - pos: -44.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3267 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -41.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3268 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -49.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3269 - type: GasPipeStraight - components: - - pos: -49.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3270 - type: GasPipeStraight - components: - - pos: -49.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3271 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -49.5,12.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3272 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -51.5,12.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3273 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,12.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3274 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3275 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -50.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3276 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3277 - type: GasPipeStraight - components: - - pos: -52.5,12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3278 - type: GasPipeTJunction - components: - - pos: -52.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3279 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3280 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3281 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3282 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3283 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -57.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3284 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -57.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3285 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -57.5,21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3286 - type: GasPipeBend - components: - - pos: -57.5,23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3287 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3288 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3289 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3290 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3291 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3292 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,16.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3293 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3294 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -57.5,18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3295 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3296 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -57.5,20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3297 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3298 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3299 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3300 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3301 - type: GasPipeStraight - components: - - pos: -57.5,22.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3302 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -60.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3303 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -60.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3304 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -60.5,21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3305 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -60.5,23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3306 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -49.5,16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3307 - type: GasPipeBend - components: - - pos: -49.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3308 - type: GasPipeStraight - components: - - pos: -49.5,17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3309 - type: GasPipeStraight - components: - - pos: -49.5,18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3310 - type: GasPipeStraight - components: - - pos: -49.5,19.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3311 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3312 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3313 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3314 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3315 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3316 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3317 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -53.5,16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3318 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -53.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3319 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3320 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3321 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,16.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3322 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3323 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -56.5,18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3324 - type: GasVentPump - components: - - pos: -50.5,18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3325 - type: GasVentPump - components: - - pos: -27.5,2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3326 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -24.5,2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3327 - type: GasVentPump - components: - - pos: -17.5,2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3328 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -14.5,2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3329 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3330 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3331 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3332 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3333 - type: GasPipeTJunction - components: - - pos: -19.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3334 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3335 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3336 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -16.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3337 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3338 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3339 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3340 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3341 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3342 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3343 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3344 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -27.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3345 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3346 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3347 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3348 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -27.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3349 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -23.5,9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3350 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3351 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3352 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3353 - type: GasPipeTJunction - components: - - pos: -21.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3354 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3355 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3356 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -23.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3357 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -26.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3358 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -24.5,9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3359 - type: GasPipeStraight - components: - - pos: -27.5,11.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3360 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -27.5,12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3361 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3362 - type: GasPipeStraight - components: - - pos: -23.5,10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3363 - type: GasPipeStraight - components: - - pos: -23.5,11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3364 - type: GasPipeStraight - components: - - pos: -23.5,12.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3365 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3366 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3367 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3368 - type: GasPipeBend - components: - - pos: -24.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3369 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3370 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3371 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3372 - type: GasPipeBend - components: - - pos: -23.5,16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3373 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -26.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3374 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3375 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -24.5,12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3376 - type: GasVentPump - components: - - pos: -26.5,16.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3377 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -24.5,16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3378 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3379 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3380 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3381 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -17.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3382 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3383 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3384 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3385 - type: GasPipeStraight - components: - - pos: -16.5,7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3386 - type: GasPipeStraight - components: - - pos: -16.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3387 - type: GasPipeStraight - components: - - pos: -16.5,9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3388 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -16.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3389 - type: GasPipeStraight - components: - - pos: -17.5,8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3390 - type: GasPipeStraight - components: - - pos: -17.5,9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3391 - type: GasPipeStraight - components: - - pos: -17.5,10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3392 - type: GasPipeStraight - components: - - pos: -17.5,11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3393 - type: GasPipeStraight - components: - - pos: -16.5,11.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3394 - type: GasPipeStraight - components: - - pos: -16.5,12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3395 - type: GasPipeStraight - components: - - pos: -16.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3396 - type: GasPipeStraight - components: - - pos: -17.5,12.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3397 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3398 - type: GasVentScrubber - components: - - pos: -17.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3399 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -16.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3400 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -13.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3401 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -13.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3402 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3403 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3404 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -16.5,16.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 3405 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: 7.5,8.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver -- uid: 3406 - type: WallSolid - components: - - pos: -6.5,5.5 - parent: 30 - type: Transform -- uid: 3407 - type: GasVentPump - components: - - pos: -10.5,2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3408 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -6.5,2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3409 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3410 - type: GasVentPump - components: - - pos: 5.5,2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3411 - type: GasPipeStraight - components: - - pos: -1.5,2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3412 - type: GasPipeStraight - components: - - pos: -1.5,3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3413 - type: GasPipeStraight - components: - - pos: -1.5,4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3414 - type: GasPipeStraight - components: - - pos: -1.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3415 - type: GasPipeStraight - components: - - pos: -1.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3416 - type: GasPipeStraight - components: - - pos: -3.5,4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3417 - type: GasPipeStraight - components: - - pos: -3.5,5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3418 - type: GasPipeStraight - components: - - pos: -3.5,6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3419 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -3.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3420 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3421 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -4.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3422 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -0.5,7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3423 - type: GasPipeTJunction - components: - - pos: -3.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3424 - type: GasPipeTJunction - components: - - pos: -1.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3425 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3426 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3427 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3428 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3429 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,12.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3430 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3431 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3432 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3433 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,11.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3434 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3435 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3436 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3437 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3438 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3439 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3440 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3441 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3442 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -4.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3443 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3444 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3445 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3446 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3447 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3448 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3449 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3450 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3451 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3452 - type: GasPipeTJunction - components: - - pos: -0.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3453 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3454 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3455 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3456 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3457 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3458 - type: GasPipeTJunction - components: - - pos: -8.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3459 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -10.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3460 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -9.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3461 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -12.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3462 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3463 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3464 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3465 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3466 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3467 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3468 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3469 - type: GasVentPump - components: - - pos: -16.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3470 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3471 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3472 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3473 - type: GasPipeStraight - components: - - pos: -10.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3474 - type: GasPipeStraight - components: - - pos: -10.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3475 - type: GasPipeStraight - components: - - pos: -10.5,16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3476 - type: GasPipeStraight - components: - - pos: -9.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3477 - type: GasPipeStraight - components: - - pos: -9.5,16.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3478 - type: GasPipeStraight - components: - - pos: -9.5,17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3479 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -8.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3480 - type: GasVentPump - components: - - pos: -9.5,18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3481 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 3.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3482 - type: GasVentScrubber - components: - - pos: -12.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3483 - type: GasVentScrubber - components: - - pos: -10.5,17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3484 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 3.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3485 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -0.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3486 - type: GasVentScrubber - components: - - pos: -4.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3487 - type: GasPipeStraight - components: - - pos: -3.5,2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3488 - type: GasPipeStraight - components: - - pos: -3.5,1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3489 - type: GasPipeStraight - components: - - pos: -3.5,0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3490 - type: GasPipeStraight - components: - - pos: -1.5,0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3491 - type: GasPipeStraight - components: - - pos: -8.5,2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3492 - type: GasPipeStraight - components: - - pos: -8.5,1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3493 - type: GasPipeStraight - components: - - pos: 3.5,1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3494 - type: GasPipeStraight - components: - - pos: 3.5,2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3495 - type: PlantBag - components: - - pos: -22.474882,16.429804 - parent: 30 - type: Transform -- uid: 3496 - type: HydroponicsToolClippers - components: - - pos: -22.490507,17.617304 - parent: 30 - type: Transform -- uid: 3497 - type: PottedPlantRandom - components: - - pos: -26.5,15.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 3498 - type: ClothingBeltPlantFilled - components: - - pos: -22.488867,12.736998 - parent: 30 - type: Transform -- uid: 3499 - type: ClothingHandsGlovesLeather - components: - - pos: -22.473242,16.103819 - parent: 30 - type: Transform -- uid: 3500 - type: LockerEvidence - components: - - pos: -48.5,42.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3501 - type: SignSpace - components: - - pos: -58.5,12.5 - parent: 30 - type: Transform -- uid: 3502 - type: SignSpace - components: - - pos: -58.5,16.5 - parent: 30 - type: Transform -- uid: 3503 - type: SignSpace - components: - - pos: -58.5,20.5 - parent: 30 - type: Transform -- uid: 3504 - type: SignSpace - components: - - pos: -58.5,24.5 - parent: 30 - type: Transform -- uid: 3505 - type: CrateFilledSpawner - components: - - pos: 25.5,-5.5 - parent: 30 - type: Transform -- uid: 3506 - type: CableApcExtension - components: - - pos: -53.5,-4.5 - parent: 30 - type: Transform -- uid: 3507 - type: CrateFilledSpawner - components: - - pos: 25.5,-4.5 - parent: 30 - type: Transform -- uid: 3508 - type: CableApcExtension - components: - - pos: -54.5,-4.5 - parent: 30 - type: Transform -- uid: 3509 - type: CableApcExtension - components: - - pos: -51.5,7.5 - parent: 30 - type: Transform -- uid: 3510 - type: CrateFilledSpawner - components: - - pos: 29.5,-3.5 - parent: 30 - type: Transform -- uid: 3511 - type: CableApcExtension - components: - - pos: -51.5,8.5 - parent: 30 - type: Transform -- uid: 3512 - type: CrateEmptySpawner - components: - - pos: 23.5,-3.5 - parent: 30 - type: Transform -- uid: 3513 - type: CableApcExtension - components: - - pos: -58.5,-4.5 - parent: 30 - type: Transform -- uid: 3514 - type: ReinforcedWindow - components: - - pos: -57.5,-6.5 - parent: 30 - type: Transform -- uid: 3515 - type: SignSecureMed - components: - - pos: -58.5,14.5 - parent: 30 - type: Transform -- uid: 3516 - type: SignSecureMed - components: - - pos: -58.5,22.5 - parent: 30 - type: Transform -- uid: 3517 - type: SubstationBasic - components: - - name: Arrivals Substation 1 - type: MetaData - - pos: -42.5,19.5 - parent: 30 - type: Transform -- uid: 3518 - type: SubstationBasic - components: - - name: Arrivals Substation 2 - type: MetaData - - pos: -40.5,19.5 - parent: 30 - type: Transform -- uid: 3519 - type: APCBasic - components: - - pos: -47.5,59.5 - parent: 30 - type: Transform -- uid: 3520 - type: CrateEngineeringCableBulk - components: - - pos: -43.5,19.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 3521 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -45.5,49.5 - parent: 30 - type: Transform - - startingCharge: 12000 - type: Battery -- uid: 3522 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -36.5,53.5 - parent: 30 - type: Transform -- uid: 3523 - type: SubstationBasic - components: - - name: Security Substation - type: MetaData - - pos: -50.5,48.5 - parent: 30 - type: Transform -- uid: 3524 - type: WallReinforced - components: - - pos: -51.5,46.5 - parent: 30 - type: Transform -- uid: 3525 - type: WallReinforced - components: - - pos: -51.5,47.5 - parent: 30 - type: Transform -- uid: 3526 - type: WallReinforced - components: - - pos: -51.5,48.5 - parent: 30 - type: Transform -- uid: 3527 - type: AirlockEngineeringLocked - components: - - pos: -50.5,46.5 - parent: 30 - type: Transform -- uid: 3528 - type: Table - components: - - pos: -39.5,17.5 - parent: 30 - type: Transform -- uid: 3529 - type: Table - components: - - pos: -39.5,18.5 - parent: 30 - type: Transform -- uid: 3530 - type: ReinforcedWindow - components: - - pos: -58.5,-6.5 - parent: 30 - type: Transform -- uid: 3531 - type: WallReinforced - components: - - pos: -59.5,6.5 - parent: 30 - type: Transform -- uid: 3532 - type: CableHV - components: - - pos: -44.5,8.5 - parent: 30 - type: Transform -- uid: 3533 - type: CableHV - components: - - pos: -44.5,7.5 - parent: 30 - type: Transform -- uid: 3534 - type: CableHV - components: - - pos: -43.5,7.5 - parent: 30 - type: Transform -- uid: 3535 - type: CableHV - components: - - pos: -42.5,7.5 - parent: 30 - type: Transform -- uid: 3536 - type: CableHV - components: - - pos: -41.5,7.5 - parent: 30 - type: Transform -- uid: 3537 - type: CableHV - components: - - pos: -40.5,7.5 - parent: 30 - type: Transform -- uid: 3538 - type: CableHV - components: - - pos: -39.5,7.5 - parent: 30 - type: Transform -- uid: 3539 - type: CableHV - components: - - pos: -38.5,7.5 - parent: 30 - type: Transform -- uid: 3540 - type: CableHV - components: - - pos: -37.5,7.5 - parent: 30 - type: Transform -- uid: 3541 - type: CableHV - components: - - pos: -36.5,7.5 - parent: 30 - type: Transform -- uid: 3542 - type: CableHV - components: - - pos: -36.5,8.5 - parent: 30 - type: Transform -- uid: 3543 - type: CableHV - components: - - pos: -36.5,9.5 - parent: 30 - type: Transform -- uid: 3544 - type: CableHV - components: - - pos: -36.5,10.5 - parent: 30 - type: Transform -- uid: 3545 - type: CableHV - components: - - pos: -36.5,11.5 - parent: 30 - type: Transform -- uid: 3546 - type: CableHV - components: - - pos: -36.5,12.5 - parent: 30 - type: Transform -- uid: 3547 - type: CableHV - components: - - pos: -36.5,13.5 - parent: 30 - type: Transform -- uid: 3548 - type: CableHV - components: - - pos: -36.5,14.5 - parent: 30 - type: Transform -- uid: 3549 - type: CableHV - components: - - pos: -36.5,15.5 - parent: 30 - type: Transform -- uid: 3550 - type: CableHV - components: - - pos: -37.5,15.5 - parent: 30 - type: Transform -- uid: 3551 - type: CableHV - components: - - pos: -38.5,15.5 - parent: 30 - type: Transform -- uid: 3552 - type: CableHV - components: - - pos: -39.5,15.5 - parent: 30 - type: Transform -- uid: 3553 - type: CableHV - components: - - pos: -40.5,15.5 - parent: 30 - type: Transform -- uid: 3554 - type: CableHV - components: - - pos: -40.5,16.5 - parent: 30 - type: Transform -- uid: 3555 - type: CableHV - components: - - pos: -40.5,17.5 - parent: 30 - type: Transform -- uid: 3556 - type: CableHV - components: - - pos: -40.5,18.5 - parent: 30 - type: Transform -- uid: 3557 - type: CableHV - components: - - pos: -40.5,19.5 - parent: 30 - type: Transform -- uid: 3558 - type: CableHV - components: - - pos: -41.5,15.5 - parent: 30 - type: Transform -- uid: 3559 - type: CableHV - components: - - pos: -42.5,15.5 - parent: 30 - type: Transform -- uid: 3560 - type: CableHV - components: - - pos: -42.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3561 - type: CableHV - components: - - pos: -42.5,17.5 - parent: 30 - type: Transform -- uid: 3562 - type: CableHV - components: - - pos: -42.5,18.5 - parent: 30 - type: Transform -- uid: 3563 - type: CableHV - components: - - pos: -42.5,19.5 - parent: 30 - type: Transform -- uid: 3564 - type: CableMV - components: - - pos: -42.5,19.5 - parent: 30 - type: Transform -- uid: 3565 - type: CableMV - components: - - pos: -42.5,18.5 - parent: 30 - type: Transform -- uid: 3566 - type: CableMV - components: - - pos: -42.5,17.5 - parent: 30 - type: Transform -- uid: 3567 - type: CableMV - components: - - pos: -42.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3568 - type: CableMV - components: - - pos: -42.5,15.5 - parent: 30 - type: Transform -- uid: 3569 - type: CableMV - components: - - pos: -43.5,15.5 - parent: 30 - type: Transform -- uid: 3570 - type: CableMV - components: - - pos: -44.5,15.5 - parent: 30 - type: Transform -- uid: 3571 - type: CableMV - components: - - pos: -45.5,15.5 - parent: 30 - type: Transform -- uid: 3572 - type: CableMV - components: - - pos: -46.5,15.5 - parent: 30 - type: Transform -- uid: 3573 - type: CableMV - components: - - pos: -47.5,15.5 - parent: 30 - type: Transform -- uid: 3574 - type: CableMV - components: - - pos: -48.5,15.5 - parent: 30 - type: Transform -- uid: 3575 - type: CableMV - components: - - pos: -49.5,15.5 - parent: 30 - type: Transform -- uid: 3576 - type: CableMV - components: - - pos: -49.5,16.5 - parent: 30 - type: Transform -- uid: 3577 - type: CableMV - components: - - pos: -49.5,17.5 - parent: 30 - type: Transform -- uid: 3578 - type: CableMV - components: - - pos: -49.5,18.5 - parent: 30 - type: Transform -- uid: 3579 - type: CableMV - components: - - pos: -49.5,19.5 - parent: 30 - type: Transform -- uid: 3580 - type: CableMV - components: - - pos: -49.5,20.5 - parent: 30 - type: Transform -- uid: 3581 - type: CableMV - components: - - pos: -48.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3582 - type: CableMV - components: - - pos: -44.5,10.5 - parent: 30 - type: Transform -- uid: 3583 - type: Poweredlight - components: - - pos: -57.5,-4.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3584 - type: CableMV - components: - - pos: -44.5,8.5 - parent: 30 - type: Transform -- uid: 3585 - type: CableMV - components: - - pos: -44.5,7.5 - parent: 30 - type: Transform -- uid: 3586 - type: CableMV - components: - - pos: -44.5,6.5 - parent: 30 - type: Transform -- uid: 3587 - type: CableMV - components: - - pos: -44.5,6.5 - parent: 30 - type: Transform -- uid: 3588 - type: CableMV - components: - - pos: -44.5,5.5 - parent: 30 - type: Transform -- uid: 3589 - type: CableMV - components: - - pos: -44.5,4.5 - parent: 30 - type: Transform -- uid: 3590 - type: CableMV - components: - - pos: -44.5,3.5 - parent: 30 - type: Transform -- uid: 3591 - type: CableMV - components: - - pos: -44.5,2.5 - parent: 30 - type: Transform -- uid: 3592 - type: CableMV - components: - - pos: -44.5,1.5 - parent: 30 - type: Transform -- uid: 3593 - type: CableMV - components: - - pos: -44.5,0.5 - parent: 30 - type: Transform -- uid: 3594 - type: CableMV - components: - - pos: -44.5,-0.5 - parent: 30 - type: Transform -- uid: 3595 - type: CableMV - components: - - pos: -43.5,-0.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3596 - type: CableApcExtension - components: - - pos: -59.5,-4.5 - parent: 30 - type: Transform -- uid: 3597 - type: CableHV - components: - - pos: -47.5,10.5 - parent: 30 - type: Transform -- uid: 3598 - type: WallReinforced - components: - - pos: -46.5,-0.5 - parent: 30 - type: Transform -- uid: 3599 - type: CableMV - components: - - pos: -43.5,7.5 - parent: 30 - type: Transform -- uid: 3600 - type: CableMV - components: - - pos: -42.5,7.5 - parent: 30 - type: Transform -- uid: 3601 - type: CableMV - components: - - pos: -41.5,7.5 - parent: 30 - type: Transform -- uid: 3602 - type: CableMV - components: - - pos: -40.5,7.5 - parent: 30 - type: Transform -- uid: 3603 - type: CableMV - components: - - pos: -39.5,7.5 - parent: 30 - type: Transform -- uid: 3604 - type: CableMV - components: - - pos: -38.5,7.5 - parent: 30 - type: Transform -- uid: 3605 - type: CableMV - components: - - pos: -37.5,7.5 - parent: 30 - type: Transform -- uid: 3606 - type: CableMV - components: - - pos: -36.5,7.5 - parent: 30 - type: Transform -- uid: 3607 - type: CableMV - components: - - pos: -35.5,7.5 - parent: 30 - type: Transform -- uid: 3608 - type: CableMV - components: - - pos: -34.5,7.5 - parent: 30 - type: Transform -- uid: 3609 - type: CableMV - components: - - pos: -33.5,7.5 - parent: 30 - type: Transform -- uid: 3610 - type: CableMV - components: - - pos: -31.5,7.5 - parent: 30 - type: Transform -- uid: 3611 - type: CableMV - components: - - pos: -32.5,7.5 - parent: 30 - type: Transform -- uid: 3612 - type: CableMV - components: - - pos: -31.5,8.5 - parent: 30 - type: Transform -- uid: 3613 - type: CableMV - components: - - pos: -31.5,9.5 - parent: 30 - type: Transform -- uid: 3614 - type: CableMV - components: - - pos: -31.5,10.5 - parent: 30 - type: Transform -- uid: 3615 - type: CableMV - components: - - pos: -30.5,10.5 - parent: 30 - type: Transform -- uid: 3616 - type: CableMV - components: - - pos: -30.5,11.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3617 - type: APCBasic - components: - - pos: -50.5,11.5 - parent: 30 - type: Transform -- uid: 3618 - type: CableMV - components: - - pos: -45.5,8.5 - parent: 30 - type: Transform -- uid: 3619 - type: CableMV - components: - - pos: -46.5,8.5 - parent: 30 - type: Transform -- uid: 3620 - type: CableApcExtension - components: - - pos: -58.5,7.5 - parent: 30 - type: Transform -- uid: 3621 - type: CableMV - components: - - pos: -46.5,10.5 - parent: 30 - type: Transform -- uid: 3622 - type: CableMV - components: - - pos: -47.5,10.5 - parent: 30 - type: Transform -- uid: 3623 - type: CableMV - components: - - pos: -48.5,10.5 - parent: 30 - type: Transform -- uid: 3624 - type: CableMV - components: - - pos: -49.5,10.5 - parent: 30 - type: Transform -- uid: 3625 - type: CableMV - components: - - pos: -50.5,10.5 - parent: 30 - type: Transform -- uid: 3626 - type: CableMV - components: - - pos: -50.5,11.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3627 - type: CableApcExtension - components: - - pos: -50.5,11.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3628 - type: CableApcExtension - components: - - pos: -50.5,10.5 - parent: 30 - type: Transform -- uid: 3629 - type: CableApcExtension - components: - - pos: -50.5,9.5 - parent: 30 - type: Transform -- uid: 3630 - type: CableApcExtension - components: - - pos: -51.5,9.5 - parent: 30 - type: Transform -- uid: 3631 - type: CableApcExtension - components: - - pos: -52.5,9.5 - parent: 30 - type: Transform -- uid: 3632 - type: CableApcExtension - components: - - pos: -53.5,9.5 - parent: 30 - type: Transform -- uid: 3633 - type: CableApcExtension - components: - - pos: -54.5,9.5 - parent: 30 - type: Transform -- uid: 3634 - type: CableApcExtension - components: - - pos: -55.5,9.5 - parent: 30 - type: Transform -- uid: 3635 - type: CableApcExtension - components: - - pos: -56.5,9.5 - parent: 30 - type: Transform -- uid: 3636 - type: CableApcExtension - components: - - pos: -57.5,9.5 - parent: 30 - type: Transform -- uid: 3637 - type: Intercom - components: - - pos: -45.5,9.5 - parent: 30 - type: Transform -- uid: 3638 - type: CableApcExtension - components: - - pos: -47.5,8.5 - parent: 30 - type: Transform -- uid: 3639 - type: CableMV - components: - - pos: -47.5,8.5 - parent: 30 - type: Transform -- uid: 3640 - type: CableApcExtension - components: - - pos: -49.5,9.5 - parent: 30 - type: Transform -- uid: 3641 - type: CableApcExtension - components: - - pos: -48.5,9.5 - parent: 30 - type: Transform -- uid: 3642 - type: CableApcExtension - components: - - pos: -47.5,9.5 - parent: 30 - type: Transform -- uid: 3643 - type: CableMV - components: - - pos: -47.5,9.5 - parent: 30 - type: Transform -- uid: 3644 - type: CableApcExtension - components: - - pos: -46.5,8.5 - parent: 30 - type: Transform -- uid: 3645 - type: CableApcExtension - components: - - pos: -46.5,7.5 - parent: 30 - type: Transform -- uid: 3646 - type: CableApcExtension - components: - - pos: -45.5,7.5 - parent: 30 - type: Transform -- uid: 3647 - type: CableApcExtension - components: - - pos: -44.5,7.5 - parent: 30 - type: Transform -- uid: 3648 - type: CableApcExtension - components: - - pos: -44.5,6.5 - parent: 30 - type: Transform -- uid: 3649 - type: CableApcExtension - components: - - pos: -43.5,6.5 - parent: 30 - type: Transform -- uid: 3650 - type: CableApcExtension - components: - - pos: -42.5,6.5 - parent: 30 - type: Transform -- uid: 3651 - type: CableApcExtension - components: - - pos: -41.5,6.5 - parent: 30 - type: Transform -- uid: 3652 - type: CableApcExtension - components: - - pos: -40.5,6.5 - parent: 30 - type: Transform -- uid: 3653 - type: CableApcExtension - components: - - pos: -39.5,6.5 - parent: 30 - type: Transform -- uid: 3654 - type: CableHV - components: - - pos: -47.5,8.5 - parent: 30 - type: Transform -- uid: 3655 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3656 - type: SpawnPointLatejoin - components: - - pos: -56.5,8.5 - parent: 30 - type: Transform -- uid: 3657 - type: DeskBell - components: - - pos: 5.5,29.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 3658 - type: SpawnPointLatejoin - components: - - pos: -55.5,8.5 - parent: 30 - type: Transform -- uid: 3659 - type: SpawnPointLatejoin - components: - - pos: -54.5,8.5 - parent: 30 - type: Transform -- uid: 3660 - type: CableApcExtension - components: - - pos: -45.5,-2.5 - parent: 30 - type: Transform -- uid: 3661 - type: CableApcExtension - components: - - pos: -44.5,-2.5 - parent: 30 - type: Transform -- uid: 3662 - type: CableApcExtension - components: - - pos: -44.5,-1.5 - parent: 30 - type: Transform -- uid: 3663 - type: CableApcExtension - components: - - pos: -44.5,-0.5 - parent: 30 - type: Transform -- uid: 3664 - type: CableApcExtension - components: - - pos: -44.5,0.5 - parent: 30 - type: Transform -- uid: 3665 - type: CableApcExtension - components: - - pos: -44.5,1.5 - parent: 30 - type: Transform -- uid: 3666 - type: CableApcExtension - components: - - pos: -44.5,2.5 - parent: 30 - type: Transform -- uid: 3667 - type: CableApcExtension - components: - - pos: -44.5,3.5 - parent: 30 - type: Transform -- uid: 3668 - type: CableApcExtension - components: - - pos: -44.5,4.5 - parent: 30 - type: Transform -- uid: 3669 - type: CableApcExtension - components: - - pos: -40.5,5.5 - parent: 30 - type: Transform -- uid: 3670 - type: CableApcExtension - components: - - pos: -40.5,4.5 - parent: 30 - type: Transform -- uid: 3671 - type: CableApcExtension - components: - - pos: -40.5,3.5 - parent: 30 - type: Transform -- uid: 3672 - type: CableApcExtension - components: - - pos: -40.5,2.5 - parent: 30 - type: Transform -- uid: 3673 - type: CableApcExtension - components: - - pos: -40.5,1.5 - parent: 30 - type: Transform -- uid: 3674 - type: CableApcExtension - components: - - pos: -40.5,0.5 - parent: 30 - type: Transform -- uid: 3675 - type: CableApcExtension - components: - - pos: -41.5,2.5 - parent: 30 - type: Transform -- uid: 3676 - type: CableApcExtension - components: - - pos: -42.5,2.5 - parent: 30 - type: Transform -- uid: 3677 - type: CableApcExtension - components: - - pos: -39.5,2.5 - parent: 30 - type: Transform -- uid: 3678 - type: CableApcExtension - components: - - pos: -38.5,2.5 - parent: 30 - type: Transform -- uid: 3679 - type: CableApcExtension - components: - - pos: -44.5,-3.5 - parent: 30 - type: Transform -- uid: 3680 - type: CableApcExtension - components: - - pos: -44.5,-4.5 - parent: 30 - type: Transform -- uid: 3681 - type: CableApcExtension - components: - - pos: -44.5,-5.5 - parent: 30 - type: Transform -- uid: 3682 - type: CableApcExtension - components: - - pos: -44.5,-6.5 - parent: 30 - type: Transform -- uid: 3683 - type: CableApcExtension - components: - - pos: -44.5,-7.5 - parent: 30 - type: Transform -- uid: 3684 - type: CableApcExtension - components: - - pos: -44.5,-8.5 - parent: 30 - type: Transform -- uid: 3685 - type: CableApcExtension - components: - - pos: -44.5,-9.5 - parent: 30 - type: Transform -- uid: 3686 - type: CableApcExtension - components: - - pos: -44.5,-10.5 - parent: 30 - type: Transform -- uid: 3687 - type: CableApcExtension - components: - - pos: -44.5,-11.5 - parent: 30 - type: Transform -- uid: 3688 - type: CableApcExtension - components: - - pos: -44.5,-12.5 - parent: 30 - type: Transform -- uid: 3689 - type: CableApcExtension - components: - - pos: -45.5,-12.5 - parent: 30 - type: Transform -- uid: 3690 - type: CableApcExtension - components: - - pos: -46.5,-12.5 - parent: 30 - type: Transform -- uid: 3691 - type: CableApcExtension - components: - - pos: -45.5,-8.5 - parent: 30 - type: Transform -- uid: 3692 - type: CableApcExtension - components: - - pos: -46.5,-8.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3693 - type: CableApcExtension - components: - - pos: -47.5,-8.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3694 - type: CableApcExtension - components: - - pos: -45.5,-4.5 - parent: 30 - type: Transform -- uid: 3695 - type: CableApcExtension - components: - - pos: -46.5,-4.5 - parent: 30 - type: Transform -- uid: 3696 - type: SpawnPointLatejoin - components: - - pos: -53.5,8.5 - parent: 30 - type: Transform -- uid: 3697 - type: RandomVendingDrinks - components: - - pos: 7.5,30.5 - parent: 30 - type: Transform -- uid: 3698 - type: RandomVendingSnacks - components: - - pos: 7.5,29.5 - parent: 30 - type: Transform -- uid: 3699 - type: SignEscapePods - components: - - pos: 26.5,41.5 - parent: 30 - type: Transform -- uid: 3700 - type: AirlockExternalGlass - components: - - pos: 25.5,41.5 - parent: 30 - type: Transform -- uid: 3701 - type: AirlockExternalGlassShuttleEscape - components: - - rot: 3.141592653589793 rad - pos: 25.5,43.5 - parent: 30 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3702 - type: RandomVendingSnacks - components: - - pos: -3.5,-30.5 - parent: 30 - type: Transform -- uid: 3703 - type: RandomVendingDrinks - components: - - pos: 9.5,-0.5 - parent: 30 - type: Transform -- uid: 3704 - type: RandomVendingSnacks - components: - - pos: 8.5,-0.5 - parent: 30 - type: Transform -- uid: 3705 - type: RandomVendingDrinks - components: - - pos: -29.5,36.5 - parent: 30 - type: Transform -- uid: 3706 - type: RandomVendingSnacks - components: - - pos: -29.5,35.5 - parent: 30 - type: Transform -- uid: 3707 - type: AtmosDeviceFanTiny - components: - - pos: 25.5,43.5 - parent: 30 - type: Transform -- uid: 3708 - type: RandomVendingDrinks - components: - - pos: -3.5,-29.5 - parent: 30 - type: Transform -- uid: 3709 - type: RandomVendingDrinks - components: - - pos: 35.5,32.5 - parent: 30 - type: Transform -- uid: 3710 - type: RandomVendingSnacks - components: - - pos: -48.5,21.5 - parent: 30 - type: Transform -- uid: 3711 - type: AirlockExternalGlass - components: - - pos: -46.5,-8.5 - parent: 30 - type: Transform -- uid: 3712 - type: AtmosDeviceFanTiny - components: - - pos: -48.5,-8.5 - parent: 30 - type: Transform -- uid: 3713 - type: CableApcExtension - components: - - pos: -48.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3714 - type: CableApcExtension - components: - - pos: -49.5,20.5 - parent: 30 - type: Transform -- uid: 3715 - type: CableApcExtension - components: - - pos: -49.5,21.5 - parent: 30 - type: Transform -- uid: 3716 - type: CableApcExtension - components: - - pos: -49.5,22.5 - parent: 30 - type: Transform -- uid: 3717 - type: CableApcExtension - components: - - pos: -49.5,23.5 - parent: 30 - type: Transform -- uid: 3718 - type: CableApcExtension - components: - - pos: -49.5,24.5 - parent: 30 - type: Transform -- uid: 3719 - type: CableApcExtension - components: - - pos: -50.5,24.5 - parent: 30 - type: Transform -- uid: 3720 - type: CableApcExtension - components: - - pos: -51.5,24.5 - parent: 30 - type: Transform -- uid: 3721 - type: CableApcExtension - components: - - pos: -52.5,24.5 - parent: 30 - type: Transform -- uid: 3722 - type: CableApcExtension - components: - - pos: -53.5,24.5 - parent: 30 - type: Transform -- uid: 3723 - type: CableApcExtension - components: - - pos: -54.5,24.5 - parent: 30 - type: Transform -- uid: 3724 - type: CableApcExtension - components: - - pos: -55.5,24.5 - parent: 30 - type: Transform -- uid: 3725 - type: CableApcExtension - components: - - pos: -56.5,24.5 - parent: 30 - type: Transform -- uid: 3726 - type: CableApcExtension - components: - - pos: -57.5,24.5 - parent: 30 - type: Transform -- uid: 3727 - type: CableApcExtension - components: - - pos: -49.5,19.5 - parent: 30 - type: Transform -- uid: 3728 - type: CableApcExtension - components: - - pos: -49.5,18.5 - parent: 30 - type: Transform -- uid: 3729 - type: CableApcExtension - components: - - pos: -49.5,17.5 - parent: 30 - type: Transform -- uid: 3730 - type: CableApcExtension - components: - - pos: -49.5,16.5 - parent: 30 - type: Transform -- uid: 3731 - type: CableApcExtension - components: - - pos: -49.5,15.5 - parent: 30 - type: Transform -- uid: 3732 - type: CableApcExtension - components: - - pos: -49.5,14.5 - parent: 30 - type: Transform -- uid: 3733 - type: CableApcExtension - components: - - pos: -49.5,13.5 - parent: 30 - type: Transform -- uid: 3734 - type: CableApcExtension - components: - - pos: -50.5,13.5 - parent: 30 - type: Transform -- uid: 3735 - type: CableApcExtension - components: - - pos: -52.5,13.5 - parent: 30 - type: Transform -- uid: 3736 - type: CableApcExtension - components: - - pos: -51.5,13.5 - parent: 30 - type: Transform -- uid: 3737 - type: CableApcExtension - components: - - pos: -53.5,13.5 - parent: 30 - type: Transform -- uid: 3738 - type: CableApcExtension - components: - - pos: -54.5,13.5 - parent: 30 - type: Transform -- uid: 3739 - type: CableApcExtension - components: - - pos: -55.5,13.5 - parent: 30 - type: Transform -- uid: 3740 - type: CableApcExtension - components: - - pos: -56.5,13.5 - parent: 30 - type: Transform -- uid: 3741 - type: CableApcExtension - components: - - pos: -57.5,13.5 - parent: 30 - type: Transform -- uid: 3742 - type: CableApcExtension - components: - - pos: -57.5,14.5 - parent: 30 - type: Transform -- uid: 3743 - type: CableApcExtension - components: - - pos: -57.5,15.5 - parent: 30 - type: Transform -- uid: 3744 - type: CableApcExtension - components: - - pos: -57.5,16.5 - parent: 30 - type: Transform -- uid: 3745 - type: CableApcExtension - components: - - pos: -57.5,17.5 - parent: 30 - type: Transform -- uid: 3746 - type: CableApcExtension - components: - - pos: -57.5,18.5 - parent: 30 - type: Transform -- uid: 3747 - type: CableApcExtension - components: - - pos: -57.5,19.5 - parent: 30 - type: Transform -- uid: 3748 - type: CableApcExtension - components: - - pos: -57.5,20.5 - parent: 30 - type: Transform -- uid: 3749 - type: CableApcExtension - components: - - pos: -57.5,21.5 - parent: 30 - type: Transform -- uid: 3750 - type: CableApcExtension - components: - - pos: -57.5,22.5 - parent: 30 - type: Transform -- uid: 3751 - type: CableApcExtension - components: - - pos: -57.5,23.5 - parent: 30 - type: Transform -- uid: 3752 - type: CableApcExtension - components: - - pos: -56.5,20.5 - parent: 30 - type: Transform -- uid: 3753 - type: CableApcExtension - components: - - pos: -55.5,20.5 - parent: 30 - type: Transform -- uid: 3754 - type: CableApcExtension - components: - - pos: -54.5,20.5 - parent: 30 - type: Transform -- uid: 3755 - type: CableApcExtension - components: - - pos: -53.5,20.5 - parent: 30 - type: Transform -- uid: 3756 - type: CableApcExtension - components: - - pos: -52.5,20.5 - parent: 30 - type: Transform -- uid: 3757 - type: CableApcExtension - components: - - pos: -51.5,20.5 - parent: 30 - type: Transform -- uid: 3758 - type: CableApcExtension - components: - - pos: -50.5,20.5 - parent: 30 - type: Transform -- uid: 3759 - type: CableApcExtension - components: - - pos: -50.5,16.5 - parent: 30 - type: Transform -- uid: 3760 - type: CableApcExtension - components: - - pos: -51.5,16.5 - parent: 30 - type: Transform -- uid: 3761 - type: CableApcExtension - components: - - pos: -52.5,16.5 - parent: 30 - type: Transform -- uid: 3762 - type: CableApcExtension - components: - - pos: -53.5,16.5 - parent: 30 - type: Transform -- uid: 3763 - type: CableApcExtension - components: - - pos: -54.5,16.5 - parent: 30 - type: Transform -- uid: 3764 - type: CableApcExtension - components: - - pos: -55.5,16.5 - parent: 30 - type: Transform -- uid: 3765 - type: CableApcExtension - components: - - pos: -56.5,16.5 - parent: 30 - type: Transform -- uid: 3766 - type: CableApcExtension - components: - - pos: -58.5,13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3767 - type: CableApcExtension - components: - - pos: -59.5,13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3768 - type: CableApcExtension - components: - - pos: -60.5,13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3769 - type: CableApcExtension - components: - - pos: -61.5,13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3770 - type: CableApcExtension - components: - - pos: -58.5,15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3771 - type: CableApcExtension - components: - - pos: -59.5,15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3772 - type: CableApcExtension - components: - - pos: -60.5,15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3773 - type: CableApcExtension - components: - - pos: -61.5,15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3774 - type: CableApcExtension - components: - - pos: -58.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3775 - type: CableApcExtension - components: - - pos: -59.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3776 - type: CableApcExtension - components: - - pos: -60.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3777 - type: CableApcExtension - components: - - pos: -61.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3778 - type: CableApcExtension - components: - - pos: -58.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3779 - type: CableApcExtension - components: - - pos: -59.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3780 - type: CableApcExtension - components: - - pos: -60.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3781 - type: CableApcExtension - components: - - pos: -61.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3782 - type: CableApcExtension - components: - - pos: -48.5,14.5 - parent: 30 - type: Transform -- uid: 3783 - type: CableApcExtension - components: - - pos: -47.5,14.5 - parent: 30 - type: Transform -- uid: 3784 - type: CableApcExtension - components: - - pos: -46.5,14.5 - parent: 30 - type: Transform -- uid: 3785 - type: CableApcExtension - components: - - pos: -45.5,14.5 - parent: 30 - type: Transform -- uid: 3786 - type: CableApcExtension - components: - - pos: -44.5,14.5 - parent: 30 - type: Transform -- uid: 3787 - type: CableApcExtension - components: - - pos: -43.5,14.5 - parent: 30 - type: Transform -- uid: 3788 - type: CableApcExtension - components: - - pos: -42.5,14.5 - parent: 30 - type: Transform -- uid: 3789 - type: CableMV - components: - - pos: -40.5,19.5 - parent: 30 - type: Transform -- uid: 3790 - type: CableMV - components: - - pos: -40.5,18.5 - parent: 30 - type: Transform -- uid: 3791 - type: CableMV - components: - - pos: -40.5,17.5 - parent: 30 - type: Transform -- uid: 3792 - type: CableMV - components: - - pos: -40.5,16.5 - parent: 30 - type: Transform -- uid: 3793 - type: CableMV - components: - - pos: -40.5,15.5 - parent: 30 - type: Transform -- uid: 3794 - type: CableMV - components: - - pos: -39.5,15.5 - parent: 30 - type: Transform -- uid: 3795 - type: CableMV - components: - - pos: -38.5,15.5 - parent: 30 - type: Transform -- uid: 3796 - type: CableMV - components: - - pos: -37.5,15.5 - parent: 30 - type: Transform -- uid: 3797 - type: CableMV - components: - - pos: -37.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3798 - type: CableMV - components: - - pos: -33.5,32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3799 - type: CableMV - components: - - pos: -34.5,32.5 - parent: 30 - type: Transform -- uid: 3800 - type: CableMV - components: - - pos: -34.5,31.5 - parent: 30 - type: Transform -- uid: 3801 - type: CableMV - components: - - pos: -34.5,30.5 - parent: 30 - type: Transform -- uid: 3802 - type: CableMV - components: - - pos: -34.5,29.5 - parent: 30 - type: Transform -- uid: 3803 - type: CableMV - components: - - pos: -34.5,28.5 - parent: 30 - type: Transform -- uid: 3804 - type: CableMV - components: - - pos: -34.5,27.5 - parent: 30 - type: Transform -- uid: 3805 - type: CableMV - components: - - pos: -34.5,26.5 - parent: 30 - type: Transform -- uid: 3806 - type: CableMV - components: - - pos: -34.5,25.5 - parent: 30 - type: Transform -- uid: 3807 - type: CableMV - components: - - pos: -34.5,24.5 - parent: 30 - type: Transform -- uid: 3808 - type: CableMV - components: - - pos: -34.5,23.5 - parent: 30 - type: Transform -- uid: 3809 - type: CableMV - components: - - pos: -34.5,22.5 - parent: 30 - type: Transform -- uid: 3810 - type: CableMV - components: - - pos: -34.5,21.5 - parent: 30 - type: Transform -- uid: 3811 - type: CableMV - components: - - pos: -34.5,20.5 - parent: 30 - type: Transform -- uid: 3812 - type: CableMV - components: - - pos: -34.5,19.5 - parent: 30 - type: Transform -- uid: 3813 - type: CableMV - components: - - pos: -36.5,15.5 - parent: 30 - type: Transform -- uid: 3814 - type: CableMV - components: - - pos: -35.5,15.5 - parent: 30 - type: Transform -- uid: 3815 - type: CableMV - components: - - pos: -34.5,15.5 - parent: 30 - type: Transform -- uid: 3816 - type: CableMV - components: - - pos: -34.5,16.5 - parent: 30 - type: Transform -- uid: 3817 - type: CableMV - components: - - pos: -34.5,17.5 - parent: 30 - type: Transform -- uid: 3818 - type: CableMV - components: - - pos: -34.5,18.5 - parent: 30 - type: Transform -- uid: 3819 - type: CableApcExtension - components: - - pos: -37.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3820 - type: CableApcExtension - components: - - pos: -37.5,15.5 - parent: 30 - type: Transform -- uid: 3821 - type: CableApcExtension - components: - - pos: -37.5,14.5 - parent: 30 - type: Transform -- uid: 3822 - type: CableApcExtension - components: - - pos: -38.5,14.5 - parent: 30 - type: Transform -- uid: 3823 - type: CableApcExtension - components: - - pos: -39.5,14.5 - parent: 30 - type: Transform -- uid: 3824 - type: CableApcExtension - components: - - pos: -40.5,14.5 - parent: 30 - type: Transform -- uid: 3825 - type: CableApcExtension - components: - - pos: -40.5,15.5 - parent: 30 - type: Transform -- uid: 3826 - type: CableApcExtension - components: - - pos: -40.5,16.5 - parent: 30 - type: Transform -- uid: 3827 - type: CableApcExtension - components: - - pos: -40.5,17.5 - parent: 30 - type: Transform -- uid: 3828 - type: CableApcExtension - components: - - pos: -40.5,18.5 - parent: 30 - type: Transform -- uid: 3829 - type: CableApcExtension - components: - - pos: -41.5,18.5 - parent: 30 - type: Transform -- uid: 3830 - type: CableApcExtension - components: - - pos: -42.5,18.5 - parent: 30 - type: Transform -- uid: 3831 - type: CableApcExtension - components: - - pos: -43.5,18.5 - parent: 30 - type: Transform -- uid: 3832 - type: CableApcExtension - components: - - pos: -36.5,14.5 - parent: 30 - type: Transform -- uid: 3833 - type: CableApcExtension - components: - - pos: -35.5,14.5 - parent: 30 - type: Transform -- uid: 3834 - type: CableApcExtension - components: - - pos: -35.5,13.5 - parent: 30 - type: Transform -- uid: 3835 - type: CableApcExtension - components: - - pos: -35.5,12.5 - parent: 30 - type: Transform -- uid: 3836 - type: CableApcExtension - components: - - pos: -35.5,11.5 - parent: 30 - type: Transform -- uid: 3837 - type: CableApcExtension - components: - - pos: -35.5,10.5 - parent: 30 - type: Transform -- uid: 3838 - type: CableApcExtension - components: - - pos: -36.5,10.5 - parent: 30 - type: Transform -- uid: 3839 - type: CableApcExtension - components: - - pos: -37.5,10.5 - parent: 30 - type: Transform -- uid: 3840 - type: CableApcExtension - components: - - pos: -38.5,10.5 - parent: 30 - type: Transform -- uid: 3841 - type: CableApcExtension - components: - - pos: -39.5,10.5 - parent: 30 - type: Transform -- uid: 3842 - type: CableApcExtension - components: - - pos: -40.5,10.5 - parent: 30 - type: Transform -- uid: 3843 - type: CableApcExtension - components: - - pos: -41.5,10.5 - parent: 30 - type: Transform -- uid: 3844 - type: CableApcExtension - components: - - pos: -30.5,11.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3845 - type: CableApcExtension - components: - - pos: -30.5,10.5 - parent: 30 - type: Transform -- uid: 3846 - type: CableApcExtension - components: - - pos: -31.5,10.5 - parent: 30 - type: Transform -- uid: 3847 - type: CableApcExtension - components: - - pos: -31.5,9.5 - parent: 30 - type: Transform -- uid: 3848 - type: CableApcExtension - components: - - pos: -31.5,8.5 - parent: 30 - type: Transform -- uid: 3849 - type: CableApcExtension - components: - - pos: -31.5,7.5 - parent: 30 - type: Transform -- uid: 3850 - type: CableApcExtension - components: - - pos: -32.5,7.5 - parent: 30 - type: Transform -- uid: 3851 - type: CableApcExtension - components: - - pos: -32.5,6.5 - parent: 30 - type: Transform -- uid: 3852 - type: CableApcExtension - components: - - pos: -32.5,5.5 - parent: 30 - type: Transform -- uid: 3853 - type: CableApcExtension - components: - - pos: -32.5,4.5 - parent: 30 - type: Transform -- uid: 3854 - type: CableApcExtension - components: - - pos: -32.5,3.5 - parent: 30 - type: Transform -- uid: 3855 - type: CableApcExtension - components: - - pos: -32.5,2.5 - parent: 30 - type: Transform -- uid: 3856 - type: CableApcExtension - components: - - pos: -32.5,1.5 - parent: 30 - type: Transform -- uid: 3857 - type: CableApcExtension - components: - - pos: -33.5,1.5 - parent: 30 - type: Transform -- uid: 3858 - type: CableApcExtension - components: - - pos: -34.5,1.5 - parent: 30 - type: Transform -- uid: 3859 - type: CableApcExtension - components: - - pos: -34.5,0.5 - parent: 30 - type: Transform -- uid: 3860 - type: CableApcExtension - components: - - pos: -31.5,2.5 - parent: 30 - type: Transform -- uid: 3861 - type: CableApcExtension - components: - - pos: -30.5,2.5 - parent: 30 - type: Transform -- uid: 3862 - type: CableApcExtension - components: - - pos: -29.5,2.5 - parent: 30 - type: Transform -- uid: 3863 - type: CableApcExtension - components: - - pos: -28.5,2.5 - parent: 30 - type: Transform -- uid: 3864 - type: CableApcExtension - components: - - pos: -34.5,2.5 - parent: 30 - type: Transform -- uid: 3865 - type: CableApcExtension - components: - - pos: -34.5,3.5 - parent: 30 - type: Transform -- uid: 3866 - type: CableApcExtension - components: - - pos: -35.5,3.5 - parent: 30 - type: Transform -- uid: 3867 - type: CableApcExtension - components: - - pos: -35.5,4.5 - parent: 30 - type: Transform -- uid: 3868 - type: CableApcExtension - components: - - pos: -35.5,5.5 - parent: 30 - type: Transform -- uid: 3869 - type: CableApcExtension - components: - - pos: -35.5,6.5 - parent: 30 - type: Transform -- uid: 3870 - type: CableApcExtension - components: - - pos: -35.5,7.5 - parent: 30 - type: Transform -- uid: 3871 - type: CableApcExtension - components: - - pos: -36.5,6.5 - parent: 30 - type: Transform -- uid: 3872 - type: CableApcExtension - components: - - pos: -37.5,6.5 - parent: 30 - type: Transform -- uid: 3873 - type: CableApcExtension - components: - - pos: -35.5,8.5 - parent: 30 - type: Transform -- uid: 3874 - type: CableApcExtension - components: - - pos: -35.5,0.5 - parent: 30 - type: Transform -- uid: 3875 - type: CableApcExtension - components: - - pos: -36.5,0.5 - parent: 30 - type: Transform -- uid: 3876 - type: CableApcExtension - components: - - pos: -27.5,2.5 - parent: 30 - type: Transform -- uid: 3877 - type: CableApcExtension - components: - - pos: -26.5,2.5 - parent: 30 - type: Transform -- uid: 3878 - type: CableApcExtension - components: - - pos: -25.5,2.5 - parent: 30 - type: Transform -- uid: 3879 - type: CableApcExtension - components: - - pos: -24.5,2.5 - parent: 30 - type: Transform -- uid: 3880 - type: CableApcExtension - components: - - pos: -23.5,2.5 - parent: 30 - type: Transform -- uid: 3881 - type: CableApcExtension - components: - - pos: -35.5,15.5 - parent: 30 - type: Transform -- uid: 3882 - type: CableApcExtension - components: - - pos: -35.5,16.5 - parent: 30 - type: Transform -- uid: 3883 - type: CableApcExtension - components: - - pos: -35.5,17.5 - parent: 30 - type: Transform -- uid: 3884 - type: CableApcExtension - components: - - pos: -35.5,18.5 - parent: 30 - type: Transform -- uid: 3885 - type: CableApcExtension - components: - - pos: -35.5,19.5 - parent: 30 - type: Transform -- uid: 3886 - type: CableApcExtension - components: - - pos: -35.5,20.5 - parent: 30 - type: Transform -- uid: 3887 - type: CableApcExtension - components: - - pos: -35.5,21.5 - parent: 30 - type: Transform -- uid: 3888 - type: CableApcExtension - components: - - pos: -35.5,22.5 - parent: 30 - type: Transform -- uid: 3889 - type: CableApcExtension - components: - - pos: -35.5,23.5 - parent: 30 - type: Transform -- uid: 3890 - type: CableApcExtension - components: - - pos: -35.5,24.5 - parent: 30 - type: Transform -- uid: 3891 - type: CableApcExtension - components: - - pos: -33.5,32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3892 - type: CableApcExtension - components: - - pos: -32.5,32.5 - parent: 30 - type: Transform -- uid: 3893 - type: CableApcExtension - components: - - pos: -31.5,32.5 - parent: 30 - type: Transform -- uid: 3894 - type: CableApcExtension - components: - - pos: -30.5,32.5 - parent: 30 - type: Transform -- uid: 3895 - type: CableApcExtension - components: - - pos: -29.5,32.5 - parent: 30 - type: Transform -- uid: 3896 - type: CableApcExtension - components: - - pos: -28.5,32.5 - parent: 30 - type: Transform -- uid: 3897 - type: CableApcExtension - components: - - pos: -27.5,32.5 - parent: 30 - type: Transform -- uid: 3898 - type: CableApcExtension - components: - - pos: -27.5,32.5 - parent: 30 - type: Transform -- uid: 3899 - type: CableApcExtension - components: - - pos: -26.5,32.5 - parent: 30 - type: Transform -- uid: 3900 - type: CableApcExtension - components: - - pos: -25.5,32.5 - parent: 30 - type: Transform -- uid: 3901 - type: CableApcExtension - components: - - pos: -24.5,32.5 - parent: 30 - type: Transform -- uid: 3902 - type: CableApcExtension - components: - - pos: -25.5,31.5 - parent: 30 - type: Transform -- uid: 3903 - type: CableApcExtension - components: - - pos: -25.5,30.5 - parent: 30 - type: Transform -- uid: 3904 - type: CableApcExtension - components: - - pos: -25.5,29.5 - parent: 30 - type: Transform -- uid: 3905 - type: CableApcExtension - components: - - pos: -25.5,28.5 - parent: 30 - type: Transform -- uid: 3906 - type: CableApcExtension - components: - - pos: -25.5,27.5 - parent: 30 - type: Transform -- uid: 3907 - type: CableApcExtension - components: - - pos: -31.5,31.5 - parent: 30 - type: Transform -- uid: 3908 - type: CableApcExtension - components: - - pos: -31.5,30.5 - parent: 30 - type: Transform -- uid: 3909 - type: CableApcExtension - components: - - pos: -31.5,29.5 - parent: 30 - type: Transform -- uid: 3910 - type: CableApcExtension - components: - - pos: -31.5,28.5 - parent: 30 - type: Transform -- uid: 3911 - type: CableApcExtension - components: - - pos: -31.5,27.5 - parent: 30 - type: Transform -- uid: 3912 - type: CableApcExtension - components: - - pos: -34.5,32.5 - parent: 30 - type: Transform -- uid: 3913 - type: CableApcExtension - components: - - pos: -35.5,32.5 - parent: 30 - type: Transform -- uid: 3914 - type: CableApcExtension - components: - - pos: -35.5,31.5 - parent: 30 - type: Transform -- uid: 3915 - type: CableApcExtension - components: - - pos: -35.5,29.5 - parent: 30 - type: Transform -- uid: 3916 - type: CableApcExtension - components: - - pos: -35.5,28.5 - parent: 30 - type: Transform -- uid: 3917 - type: CableApcExtension - components: - - pos: -35.5,27.5 - parent: 30 - type: Transform -- uid: 3918 - type: CableApcExtension - components: - - pos: -35.5,26.5 - parent: 30 - type: Transform -- uid: 3919 - type: CableApcExtension - components: - - pos: -34.5,26.5 - parent: 30 - type: Transform -- uid: 3920 - type: CableApcExtension - components: - - pos: -33.5,26.5 - parent: 30 - type: Transform -- uid: 3921 - type: CableApcExtension - components: - - pos: -31.5,26.5 - parent: 30 - type: Transform -- uid: 3922 - type: CableApcExtension - components: - - pos: -32.5,26.5 - parent: 30 - type: Transform -- uid: 3923 - type: CableApcExtension - components: - - pos: -30.5,26.5 - parent: 30 - type: Transform -- uid: 3924 - type: CableApcExtension - components: - - pos: -29.5,26.5 - parent: 30 - type: Transform -- uid: 3925 - type: CableApcExtension - components: - - pos: -28.5,26.5 - parent: 30 - type: Transform -- uid: 3926 - type: CableApcExtension - components: - - pos: -27.5,26.5 - parent: 30 - type: Transform -- uid: 3927 - type: CableApcExtension - components: - - pos: -26.5,26.5 - parent: 30 - type: Transform -- uid: 3928 - type: CableApcExtension - components: - - pos: -25.5,26.5 - parent: 30 - type: Transform -- uid: 3929 - type: CableApcExtension - components: - - pos: -35.5,33.5 - parent: 30 - type: Transform -- uid: 3930 - type: CableApcExtension - components: - - pos: -35.5,34.5 - parent: 30 - type: Transform -- uid: 3931 - type: CableApcExtension - components: - - pos: -35.5,35.5 - parent: 30 - type: Transform -- uid: 3932 - type: CableApcExtension - components: - - pos: -35.5,36.5 - parent: 30 - type: Transform -- uid: 3933 - type: CableApcExtension - components: - - pos: -34.5,36.5 - parent: 30 - type: Transform -- uid: 3934 - type: CableApcExtension - components: - - pos: -33.5,36.5 - parent: 30 - type: Transform -- uid: 3935 - type: CableApcExtension - components: - - pos: -32.5,36.5 - parent: 30 - type: Transform -- uid: 3936 - type: CableApcExtension - components: - - pos: -31.5,36.5 - parent: 30 - type: Transform -- uid: 3937 - type: CableApcExtension - components: - - pos: -30.5,36.5 - parent: 30 - type: Transform -- uid: 3938 - type: CableMV - components: - - pos: -46.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3939 - type: CableMV - components: - - pos: -46.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3940 - type: CableMV - components: - - pos: -46.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3941 - type: CableMV - components: - - pos: -46.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3942 - type: CableApcExtension - components: - - pos: -45.5,32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3943 - type: CableHV - components: - - pos: -43.5,18.5 - parent: 30 - type: Transform -- uid: 3944 - type: CableHV - components: - - pos: -44.5,18.5 - parent: 30 - type: Transform -- uid: 3945 - type: CableApcExtension - components: - - pos: -49.5,34.5 - parent: 30 - type: Transform -- uid: 3946 - type: CableApcExtension - components: - - pos: -49.5,35.5 - parent: 30 - type: Transform -- uid: 3947 - type: CableApcExtension - components: - - pos: -48.5,36.5 - parent: 30 - type: Transform -- uid: 3948 - type: CableApcExtension - components: - - pos: -49.5,36.5 - parent: 30 - type: Transform -- uid: 3949 - type: CableApcExtension - components: - - pos: -47.5,36.5 - parent: 30 - type: Transform -- uid: 3950 - type: CableApcExtension - components: - - pos: -46.5,35.5 - parent: 30 - type: Transform -- uid: 3951 - type: CableApcExtension - components: - - pos: -46.5,36.5 - parent: 30 - type: Transform -- uid: 3952 - type: CableApcExtension - components: - - pos: -46.5,34.5 - parent: 30 - type: Transform -- uid: 3953 - type: CableApcExtension - components: - - pos: -46.5,33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3954 - type: CableApcExtension - components: - - pos: -46.5,32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3955 - type: CableApcExtension - components: - - pos: -43.5,30.5 - parent: 30 - type: Transform -- uid: 3956 - type: CableApcExtension - components: - - pos: -41.5,33.5 - parent: 30 - type: Transform -- uid: 3957 - type: CableApcExtension - components: - - pos: -43.5,31.5 - parent: 30 - type: Transform -- uid: 3958 - type: CableMV - components: - - pos: -43.5,18.5 - parent: 30 - type: Transform -- uid: 3959 - type: CableApcExtension - components: - - pos: -43.5,32.5 - parent: 30 - type: Transform -- uid: 3960 - type: CableMV - components: - - pos: -46.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3961 - type: CableMV - components: - - pos: -46.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3962 - type: CableMV - components: - - pos: -45.5,18.5 - parent: 30 - type: Transform -- uid: 3963 - type: CableMV - components: - - pos: -46.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3964 - type: CableMV - components: - - pos: -46.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3965 - type: CableMV - components: - - pos: -46.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3966 - type: CableMV - components: - - pos: -46.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3967 - type: CableMV - components: - - pos: -44.5,18.5 - parent: 30 - type: Transform -- uid: 3968 - type: CableApcExtension - components: - - pos: -44.5,32.5 - parent: 30 - type: Transform -- uid: 3969 - type: CableApcExtension - components: - - pos: -42.5,32.5 - parent: 30 - type: Transform -- uid: 3970 - type: CableApcExtension - components: - - pos: -41.5,32.5 - parent: 30 - type: Transform -- uid: 3971 - type: CableApcExtension - components: - - pos: -43.5,29.5 - parent: 30 - type: Transform -- uid: 3972 - type: CableApcExtension - components: - - pos: -41.5,34.5 - parent: 30 - type: Transform -- uid: 3973 - type: CableMV - components: - - pos: -46.5,28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3974 - type: CableMV - components: - - pos: -46.5,29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3975 - type: CableMV - components: - - pos: -46.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3976 - type: CableMV - components: - - pos: -46.5,31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3977 - type: CableMV - components: - - pos: -46.5,32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3978 - type: CableMV - components: - - pos: -45.5,32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3979 - type: CableApcExtension - components: - - pos: -49.5,33.5 - parent: 30 - type: Transform -- uid: 3980 - type: CableApcExtension - components: - - pos: -49.5,32.5 - parent: 30 - type: Transform -- uid: 3981 - type: CableApcExtension - components: - - pos: -50.5,32.5 - parent: 30 - type: Transform -- uid: 3982 - type: CableApcExtension - components: - - pos: -51.5,32.5 - parent: 30 - type: Transform -- uid: 3983 - type: CableApcExtension - components: - - pos: -52.5,32.5 - parent: 30 - type: Transform -- uid: 3984 - type: CableApcExtension - components: - - pos: -53.5,32.5 - parent: 30 - type: Transform -- uid: 3985 - type: CableApcExtension - components: - - pos: -52.5,31.5 - parent: 30 - type: Transform -- uid: 3986 - type: CableApcExtension - components: - - pos: -52.5,30.5 - parent: 30 - type: Transform -- uid: 3987 - type: CableApcExtension - components: - - pos: -52.5,29.5 - parent: 30 - type: Transform -- uid: 3988 - type: CableApcExtension - components: - - pos: -49.5,31.5 - parent: 30 - type: Transform -- uid: 3989 - type: CableApcExtension - components: - - pos: -49.5,30.5 - parent: 30 - type: Transform -- uid: 3990 - type: CableApcExtension - components: - - pos: -49.5,29.5 - parent: 30 - type: Transform -- uid: 3991 - type: CableApcExtension - components: - - pos: -46.5,31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3992 - type: CableApcExtension - components: - - pos: -46.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3993 - type: CableApcExtension - components: - - pos: -46.5,29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3994 - type: CableApcExtension - components: - - pos: -46.5,28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3995 - type: CableApcExtension - components: - - pos: -46.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3996 - type: CableApcExtension - components: - - pos: -46.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3997 - type: CableApcExtension - components: - - pos: -53.5,25.5 - parent: 30 - type: Transform -- uid: 3998 - type: CableApcExtension - components: - - pos: -34.5,15.5 - parent: 30 - type: Transform -- uid: 3999 - type: CableApcExtension - components: - - pos: -33.5,15.5 - parent: 30 - type: Transform -- uid: 4000 - type: CableApcExtension - components: - - pos: -32.5,15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4001 - type: CableApcExtension - components: - - pos: -31.5,15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4002 - type: CableApcExtension - components: - - pos: -31.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4003 - type: CableApcExtension - components: - - pos: -31.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4004 - type: CableApcExtension - components: - - pos: -31.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4005 - type: CableApcExtension - components: - - pos: -31.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4006 - type: CableApcExtension - components: - - pos: -30.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4007 - type: CableApcExtension - components: - - pos: -29.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4008 - type: CableApcExtension - components: - - pos: -28.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4009 - type: CableApcExtension - components: - - pos: -41.5,35.5 - parent: 30 - type: Transform -- uid: 4010 - type: CableApcExtension - components: - - pos: -41.5,36.5 - parent: 30 - type: Transform -- uid: 4011 - type: CableApcExtension - components: - - pos: -42.5,36.5 - parent: 30 - type: Transform -- uid: 4012 - type: CableApcExtension - components: - - pos: -42.5,36.5 - parent: 30 - type: Transform -- uid: 4013 - type: CableApcExtension - components: - - pos: -43.5,36.5 - parent: 30 - type: Transform -- uid: 4014 - type: CableApcExtension - components: - - pos: -44.5,36.5 - parent: 30 - type: Transform -- uid: 4015 - type: CableApcExtension - components: - - pos: -45.5,36.5 - parent: 30 - type: Transform -- uid: 4016 - type: CableApcExtension - components: - - pos: -40.5,36.5 - parent: 30 - type: Transform -- uid: 4017 - type: CableApcExtension - components: - - pos: -39.5,36.5 - parent: 30 - type: Transform -- uid: 4018 - type: CableApcExtension - components: - - pos: -38.5,36.5 - parent: 30 - type: Transform -- uid: 4019 - type: CableApcExtension - components: - - pos: -37.5,36.5 - parent: 30 - type: Transform -- uid: 4020 - type: CableMV - components: - - pos: -33.5,15.5 - parent: 30 - type: Transform -- uid: 4021 - type: CableMV - components: - - pos: -32.5,15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4022 - type: CableMV - components: - - pos: -31.5,15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4023 - type: CableMV - components: - - pos: -31.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4024 - type: CableMV - components: - - pos: -31.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4025 - type: CableMV - components: - - pos: -31.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4026 - type: CableMV - components: - - pos: -31.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4027 - type: CableMV - components: - - pos: -30.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4028 - type: CableMV - components: - - pos: -29.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4029 - type: CableMV - components: - - pos: -28.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4030 - type: CableMV - components: - - pos: -27.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4031 - type: CableMV - components: - - pos: -26.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4032 - type: CableMV - components: - - pos: -26.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4033 - type: CableMV - components: - - pos: -26.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4034 - type: CableApcExtension - components: - - pos: -26.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4035 - type: CableApcExtension - components: - - pos: -26.5,22.5 - parent: 30 - type: Transform -- uid: 4036 - type: CableApcExtension - components: - - pos: -26.5,23.5 - parent: 30 - type: Transform -- uid: 4037 - type: CableApcExtension - components: - - pos: -26.5,24.5 - parent: 30 - type: Transform -- uid: 4038 - type: CableApcExtension - components: - - pos: -31.5,25.5 - parent: 30 - type: Transform -- uid: 4039 - type: CableApcExtension - components: - - pos: -31.5,24.5 - parent: 30 - type: Transform -- uid: 4040 - type: CableApcExtension - components: - - pos: -31.5,23.5 - parent: 30 - type: Transform -- uid: 4041 - type: CableApcExtension - components: - - pos: -31.5,22.5 - parent: 30 - type: Transform -- uid: 4042 - type: CableApcExtension - components: - - pos: -31.5,21.5 - parent: 30 - type: Transform -- uid: 4043 - type: CableApcExtension - components: - - pos: -25.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4044 - type: CableApcExtension - components: - - pos: -26.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4045 - type: CableApcExtension - components: - - pos: -26.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4046 - type: CableApcExtension - components: - - pos: -24.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4047 - type: CableApcExtension - components: - - pos: -23.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4048 - type: CableApcExtension - components: - - pos: -22.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4049 - type: CableApcExtension - components: - - pos: -21.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4050 - type: CableApcExtension - components: - - pos: -20.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4051 - type: CableApcExtension - components: - - pos: -19.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4052 - type: CableApcExtension - components: - - pos: -22.5,21.5 - parent: 30 - type: Transform -- uid: 4053 - type: CableApcExtension - components: - - pos: -22.5,22.5 - parent: 30 - type: Transform -- uid: 4054 - type: CableApcExtension - components: - - pos: -22.5,23.5 - parent: 30 - type: Transform -- uid: 4055 - type: CableApcExtension - components: - - pos: -19.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4056 - type: CableApcExtension - components: - - pos: -19.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4057 - type: CableApcExtension - components: - - pos: -18.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4058 - type: CableApcExtension - components: - - pos: -17.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4059 - type: CableApcExtension - components: - - pos: -16.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4060 - type: CableApcExtension - components: - - pos: -15.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4061 - type: CableApcExtension - components: - - pos: -14.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4062 - type: CableApcExtension - components: - - pos: -14.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4063 - type: CableApcExtension - components: - - pos: -14.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4064 - type: CableApcExtension - components: - - pos: -13.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4065 - type: CableApcExtension - components: - - pos: -12.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4066 - type: CableApcExtension - components: - - pos: -11.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4067 - type: CableApcExtension - components: - - pos: -10.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4068 - type: CableApcExtension - components: - - pos: -9.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4069 - type: CableApcExtension - components: - - pos: -8.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4070 - type: CableApcExtension - components: - - pos: -7.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4071 - type: CableApcExtension - components: - - pos: -6.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4072 - type: CableApcExtension - components: - - pos: -5.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4073 - type: CableApcExtension - components: - - pos: -5.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4074 - type: CableApcExtension - components: - - pos: -5.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4075 - type: CableApcExtension - components: - - pos: -5.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4076 - type: CableMV - components: - - pos: -34.5,6.5 - parent: 30 - type: Transform -- uid: 4077 - type: CableMV - components: - - pos: -34.5,5.5 - parent: 30 - type: Transform -- uid: 4078 - type: CableMV - components: - - pos: -34.5,4.5 - parent: 30 - type: Transform -- uid: 4079 - type: CableMV - components: - - pos: -34.5,3.5 - parent: 30 - type: Transform -- uid: 4080 - type: CableMV - components: - - pos: -33.5,3.5 - parent: 30 - type: Transform -- uid: 4081 - type: CableMV - components: - - pos: -32.5,3.5 - parent: 30 - type: Transform -- uid: 4082 - type: CableMV - components: - - pos: -31.5,3.5 - parent: 30 - type: Transform -- uid: 4083 - type: CableMV - components: - - pos: -30.5,3.5 - parent: 30 - type: Transform -- uid: 4084 - type: CableMV - components: - - pos: -29.5,3.5 - parent: 30 - type: Transform -- uid: 4085 - type: CableMV - components: - - pos: -28.5,3.5 - parent: 30 - type: Transform -- uid: 4086 - type: CableMV - components: - - pos: -26.5,3.5 - parent: 30 - type: Transform -- uid: 4087 - type: CableMV - components: - - pos: -27.5,3.5 - parent: 30 - type: Transform -- uid: 4088 - type: CableMV - components: - - pos: -25.5,3.5 - parent: 30 - type: Transform -- uid: 4089 - type: CableMV - components: - - pos: -24.5,3.5 - parent: 30 - type: Transform -- uid: 4090 - type: CableMV - components: - - pos: -23.5,3.5 - parent: 30 - type: Transform -- uid: 4091 - type: CableMV - components: - - pos: -22.5,3.5 - parent: 30 - type: Transform -- uid: 4092 - type: CableMV - components: - - pos: -21.5,3.5 - parent: 30 - type: Transform -- uid: 4093 - type: CableMV - components: - - pos: -21.5,4.5 - parent: 30 - type: Transform -- uid: 4094 - type: CableMV - components: - - pos: -21.5,5.5 - parent: 30 - type: Transform -- uid: 4095 - type: CableMV - components: - - pos: -21.5,6.5 - parent: 30 - type: Transform -- uid: 4096 - type: CableMV - components: - - pos: -22.5,6.5 - parent: 30 - type: Transform -- uid: 4097 - type: CableMV - components: - - pos: -23.5,6.5 - parent: 30 - type: Transform -- uid: 4098 - type: CableMV - components: - - pos: -24.5,6.5 - parent: 30 - type: Transform -- uid: 4099 - type: CableMV - components: - - pos: -25.5,6.5 - parent: 30 - type: Transform -- uid: 4100 - type: CableMV - components: - - pos: -26.5,6.5 - parent: 30 - type: Transform -- uid: 4101 - type: CableMV - components: - - pos: -26.5,6.5 - parent: 30 - type: Transform -- uid: 4102 - type: CableMV - components: - - pos: -26.5,7.5 - parent: 30 - type: Transform -- uid: 4103 - type: CableMV - components: - - pos: -26.5,8.5 - parent: 30 - type: Transform -- uid: 4104 - type: CableMV - components: - - pos: -26.5,9.5 - parent: 30 - type: Transform -- uid: 4105 - type: CableMV - components: - - pos: -26.5,10.5 - parent: 30 - type: Transform -- uid: 4106 - type: CableMV - components: - - pos: -26.5,11.5 - parent: 30 - type: Transform -- uid: 4107 - type: CableMV - components: - - pos: -26.5,12.5 - parent: 30 - type: Transform -- uid: 4108 - type: CableMV - components: - - pos: -26.5,13.5 - parent: 30 - type: Transform -- uid: 4109 - type: CableMV - components: - - pos: -26.5,14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4110 - type: CableApcExtension - components: - - pos: -26.5,14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4111 - type: CableApcExtension - components: - - pos: -26.5,15.5 - parent: 30 - type: Transform -- uid: 4112 - type: CableApcExtension - components: - - pos: -26.5,16.5 - parent: 30 - type: Transform -- uid: 4113 - type: CableApcExtension - components: - - pos: -27.5,16.5 - parent: 30 - type: Transform -- uid: 4114 - type: CableApcExtension - components: - - pos: -28.5,16.5 - parent: 30 - type: Transform -- uid: 4115 - type: CableApcExtension - components: - - pos: -25.5,16.5 - parent: 30 - type: Transform -- uid: 4116 - type: CableApcExtension - components: - - pos: -24.5,16.5 - parent: 30 - type: Transform -- uid: 4117 - type: CableApcExtension - components: - - pos: -23.5,16.5 - parent: 30 - type: Transform -- uid: 4118 - type: CableApcExtension - components: - - pos: -22.5,16.5 - parent: 30 - type: Transform -- uid: 4119 - type: CableApcExtension - components: - - pos: -26.5,13.5 - parent: 30 - type: Transform -- uid: 4120 - type: CableApcExtension - components: - - pos: -26.5,12.5 - parent: 30 - type: Transform -- uid: 4121 - type: CableApcExtension - components: - - pos: -26.5,11.5 - parent: 30 - type: Transform -- uid: 4122 - type: CableApcExtension - components: - - pos: -26.5,10.5 - parent: 30 - type: Transform -- uid: 4123 - type: CableApcExtension - components: - - pos: -26.5,9.5 - parent: 30 - type: Transform -- uid: 4124 - type: CableApcExtension - components: - - pos: -26.5,8.5 - parent: 30 - type: Transform -- uid: 4125 - type: CableApcExtension - components: - - pos: -26.5,7.5 - parent: 30 - type: Transform -- uid: 4126 - type: CableApcExtension - components: - - pos: -26.5,6.5 - parent: 30 - type: Transform -- uid: 4127 - type: CableApcExtension - components: - - pos: -26.5,6.5 - parent: 30 - type: Transform -- uid: 4128 - type: CableApcExtension - components: - - pos: -26.5,5.5 - parent: 30 - type: Transform -- uid: 4129 - type: CableApcExtension - components: - - pos: -27.5,5.5 - parent: 30 - type: Transform -- uid: 4130 - type: CableApcExtension - components: - - pos: -28.5,5.5 - parent: 30 - type: Transform -- uid: 4131 - type: CableApcExtension - components: - - pos: -27.5,10.5 - parent: 30 - type: Transform -- uid: 4132 - type: CableApcExtension - components: - - pos: -28.5,10.5 - parent: 30 - type: Transform -- uid: 4133 - type: CableApcExtension - components: - - pos: -25.5,11.5 - parent: 30 - type: Transform -- uid: 4134 - type: CableApcExtension - components: - - pos: -24.5,11.5 - parent: 30 - type: Transform -- uid: 4135 - type: CableApcExtension - components: - - pos: -23.5,11.5 - parent: 30 - type: Transform -- uid: 4136 - type: CableApcExtension - components: - - pos: -22.5,11.5 - parent: 30 - type: Transform -- uid: 4137 - type: CableApcExtension - components: - - pos: -21.5,11.5 - parent: 30 - type: Transform -- uid: 4138 - type: CableApcExtension - components: - - pos: -20.5,11.5 - parent: 30 - type: Transform -- uid: 4139 - type: CableApcExtension - components: - - pos: -19.5,11.5 - parent: 30 - type: Transform -- uid: 4140 - type: CableApcExtension - components: - - pos: -25.5,6.5 - parent: 30 - type: Transform -- uid: 4141 - type: CableApcExtension - components: - - pos: -24.5,6.5 - parent: 30 - type: Transform -- uid: 4142 - type: CableApcExtension - components: - - pos: -23.5,6.5 - parent: 30 - type: Transform -- uid: 4143 - type: CableApcExtension - components: - - pos: -22.5,6.5 - parent: 30 - type: Transform -- uid: 4144 - type: CableApcExtension - components: - - pos: -21.5,6.5 - parent: 30 - type: Transform -- uid: 4145 - type: CableApcExtension - components: - - pos: -20.5,6.5 - parent: 30 - type: Transform -- uid: 4146 - type: CableApcExtension - components: - - pos: -20.5,5.5 - parent: 30 - type: Transform -- uid: 4147 - type: CableApcExtension - components: - - pos: -20.5,4.5 - parent: 30 - type: Transform -- uid: 4148 - type: CableApcExtension - components: - - pos: -20.5,3.5 - parent: 30 - type: Transform -- uid: 4149 - type: CableApcExtension - components: - - pos: -20.5,2.5 - parent: 30 - type: Transform -- uid: 4150 - type: CableApcExtension - components: - - pos: -21.5,2.5 - parent: 30 - type: Transform -- uid: 4151 - type: CableApcExtension - components: - - pos: -19.5,2.5 - parent: 30 - type: Transform -- uid: 4152 - type: CableApcExtension - components: - - pos: -19.5,6.5 - parent: 30 - type: Transform -- uid: 4153 - type: CableApcExtension - components: - - pos: -18.5,6.5 - parent: 30 - type: Transform -- uid: 4154 - type: CableApcExtension - components: - - pos: -17.5,6.5 - parent: 30 - type: Transform -- uid: 4155 - type: CableApcExtension - components: - - pos: -16.5,6.5 - parent: 30 - type: Transform -- uid: 4156 - type: CableApcExtension - components: - - pos: -16.5,7.5 - parent: 30 - type: Transform -- uid: 4157 - type: CableApcExtension - components: - - pos: -16.5,8.5 - parent: 30 - type: Transform -- uid: 4158 - type: CableApcExtension - components: - - pos: -16.5,9.5 - parent: 30 - type: Transform -- uid: 4159 - type: CableApcExtension - components: - - pos: -16.5,10.5 - parent: 30 - type: Transform -- uid: 4160 - type: CableApcExtension - components: - - pos: -16.5,11.5 - parent: 30 - type: Transform -- uid: 4161 - type: CableApcExtension - components: - - pos: -17.5,10.5 - parent: 30 - type: Transform -- uid: 4162 - type: CableApcExtension - components: - - pos: -20.5,7.5 - parent: 30 - type: Transform -- uid: 4163 - type: CableApcExtension - components: - - pos: -18.5,10.5 - parent: 30 - type: Transform -- uid: 4164 - type: CableApcExtension - components: - - pos: -16.5,12.5 - parent: 30 - type: Transform -- uid: 4165 - type: CableApcExtension - components: - - pos: -16.5,13.5 - parent: 30 - type: Transform -- uid: 4166 - type: CableApcExtension - components: - - pos: -16.5,14.5 - parent: 30 - type: Transform -- uid: 4167 - type: CableApcExtension - components: - - pos: -16.5,15.5 - parent: 30 - type: Transform -- uid: 4168 - type: CableApcExtension - components: - - pos: -16.5,16.5 - parent: 30 - type: Transform -- uid: 4169 - type: CableApcExtension - components: - - pos: -16.5,17.5 - parent: 30 - type: Transform -- uid: 4170 - type: CableApcExtension - components: - - pos: -17.5,15.5 - parent: 30 - type: Transform -- uid: 4171 - type: CableApcExtension - components: - - pos: -18.5,15.5 - parent: 30 - type: Transform -- uid: 4172 - type: CableApcExtension - components: - - pos: -19.5,15.5 - parent: 30 - type: Transform -- uid: 4173 - type: CableApcExtension - components: - - pos: -15.5,15.5 - parent: 30 - type: Transform -- uid: 4174 - type: CableApcExtension - components: - - pos: -17.5,13.5 - parent: 30 - type: Transform -- uid: 4175 - type: CableApcExtension - components: - - pos: -15.5,17.5 - parent: 30 - type: Transform -- uid: 4176 - type: CableApcExtension - components: - - pos: -14.5,17.5 - parent: 30 - type: Transform -- uid: 4177 - type: CableApcExtension - components: - - pos: -13.5,17.5 - parent: 30 - type: Transform -- uid: 4178 - type: CableApcExtension - components: - - pos: -15.5,10.5 - parent: 30 - type: Transform -- uid: 4179 - type: CableApcExtension - components: - - pos: -14.5,10.5 - parent: 30 - type: Transform -- uid: 4180 - type: CableApcExtension - components: - - pos: -13.5,10.5 - parent: 30 - type: Transform -- uid: 4181 - type: CableApcExtension - components: - - pos: -12.5,10.5 - parent: 30 - type: Transform -- uid: 4182 - type: CableApcExtension - components: - - pos: -11.5,10.5 - parent: 30 - type: Transform -- uid: 4183 - type: CableApcExtension - components: - - pos: -15.5,6.5 - parent: 30 - type: Transform -- uid: 4184 - type: CableApcExtension - components: - - pos: -14.5,6.5 - parent: 30 - type: Transform -- uid: 4185 - type: CableApcExtension - components: - - pos: -13.5,6.5 - parent: 30 - type: Transform -- uid: 4186 - type: CableApcExtension - components: - - pos: -12.5,6.5 - parent: 30 - type: Transform -- uid: 4187 - type: CableApcExtension - components: - - pos: -11.5,6.5 - parent: 30 - type: Transform -- uid: 4188 - type: CableApcExtension - components: - - pos: -11.5,7.5 - parent: 30 - type: Transform -- uid: 4189 - type: CableApcExtension - components: - - pos: -14.5,7.5 - parent: 30 - type: Transform -- uid: 4190 - type: CableApcExtension - components: - - pos: -16.5,5.5 - parent: 30 - type: Transform -- uid: 4191 - type: CableApcExtension - components: - - pos: -18.5,2.5 - parent: 30 - type: Transform -- uid: 4192 - type: CableApcExtension - components: - - pos: -17.5,2.5 - parent: 30 - type: Transform -- uid: 4193 - type: CableApcExtension - components: - - pos: -16.5,2.5 - parent: 30 - type: Transform -- uid: 4194 - type: CableApcExtension - components: - - pos: -15.5,2.5 - parent: 30 - type: Transform -- uid: 4195 - type: CableApcExtension - components: - - pos: -15.5,2.5 - parent: 30 - type: Transform -- uid: 4196 - type: CableApcExtension - components: - - pos: -14.5,2.5 - parent: 30 - type: Transform -- uid: 4197 - type: CableApcExtension - components: - - pos: -13.5,2.5 - parent: 30 - type: Transform -- uid: 4198 - type: CableApcExtension - components: - - pos: -12.5,2.5 - parent: 30 - type: Transform -- uid: 4199 - type: CableMV - components: - - pos: -25.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4200 - type: CableMV - components: - - pos: -24.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4201 - type: CableMV - components: - - pos: -23.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4202 - type: CableMV - components: - - pos: -22.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4203 - type: CableMV - components: - - pos: -21.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4204 - type: CableMV - components: - - pos: -20.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4205 - type: CableMV - components: - - pos: -19.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4206 - type: CableMV - components: - - pos: -18.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4207 - type: CableMV - components: - - pos: -17.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4208 - type: CableMV - components: - - pos: -16.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4209 - type: CableMV - components: - - pos: -15.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4210 - type: CableMV - components: - - pos: -14.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4211 - type: CableMV - components: - - pos: -13.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4212 - type: CableMV - components: - - pos: -13.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4213 - type: CableMV - components: - - pos: -12.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4214 - type: CableMV - components: - - pos: -11.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4215 - type: CableMV - components: - - pos: -9.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4216 - type: CableMV - components: - - pos: -10.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4217 - type: CableMV - components: - - pos: -8.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4218 - type: CableMV - components: - - pos: -7.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4219 - type: CableMV - components: - - pos: -6.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4220 - type: CableMV - components: - - pos: -5.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4221 - type: CableMV - components: - - pos: -5.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4222 - type: CableMV - components: - - pos: -5.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4223 - type: CableMV - components: - - pos: -5.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4224 - type: CableMV - components: - - pos: -5.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4225 - type: CableMV - components: - - pos: -5.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4226 - type: CableMV - components: - - pos: -4.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4227 - type: CableMV - components: - - pos: -2.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4228 - type: CableMV - components: - - pos: -2.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4229 - type: CableMV - components: - - pos: -2.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4230 - type: CableMV - components: - - pos: -3.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4231 - type: CableMV - components: - - pos: -5.5,16.5 - parent: 30 - type: Transform -- uid: 4232 - type: CableMV - components: - - pos: -5.5,15.5 - parent: 30 - type: Transform -- uid: 4233 - type: CableMV - components: - - pos: -5.5,14.5 - parent: 30 - type: Transform -- uid: 4234 - type: CableMV - components: - - pos: -5.5,13.5 - parent: 30 - type: Transform -- uid: 4235 - type: CableMV - components: - - pos: -6.5,13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4236 - type: WallSolid - components: - - pos: 1.5,14.5 - parent: 30 - type: Transform -- uid: 4237 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,9.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4238 - type: PoweredSmallLight - components: - - pos: -31.5,13.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4239 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,7.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4240 - type: Poweredlight - components: - - pos: -20.5,12.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4241 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-67.5 - parent: 30 - type: Transform -- uid: 4242 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -22.5,9.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4243 - type: CableApcExtension - components: - - pos: -6.5,13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4244 - type: CableApcExtension - components: - - pos: -5.5,13.5 - parent: 30 - type: Transform -- uid: 4245 - type: CableApcExtension - components: - - pos: -5.5,14.5 - parent: 30 - type: Transform -- uid: 4246 - type: CableApcExtension - components: - - pos: -4.5,14.5 - parent: 30 - type: Transform -- uid: 4247 - type: CableApcExtension - components: - - pos: -3.5,14.5 - parent: 30 - type: Transform -- uid: 4248 - type: CableApcExtension - components: - - pos: -2.5,14.5 - parent: 30 - type: Transform -- uid: 4249 - type: CableApcExtension - components: - - pos: -1.5,14.5 - parent: 30 - type: Transform -- uid: 4250 - type: CableApcExtension - components: - - pos: -0.5,14.5 - parent: 30 - type: Transform -- uid: 4251 - type: CableApcExtension - components: - - pos: -5.5,15.5 - parent: 30 - type: Transform -- uid: 4252 - type: CableApcExtension - components: - - pos: -2.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4253 - type: CableApcExtension - components: - - pos: -2.5,19.5 - parent: 30 - type: Transform -- uid: 4254 - type: CableApcExtension - components: - - pos: -2.5,20.5 - parent: 30 - type: Transform -- uid: 4255 - type: CableApcExtension - components: - - pos: -2.5,21.5 - parent: 30 - type: Transform -- uid: 4256 - type: CableApcExtension - components: - - pos: -2.5,22.5 - parent: 30 - type: Transform -- uid: 4257 - type: CableApcExtension - components: - - pos: -2.5,23.5 - parent: 30 - type: Transform -- uid: 4258 - type: CableApcExtension - components: - - pos: -1.5,19.5 - parent: 30 - type: Transform -- uid: 4259 - type: CableApcExtension - components: - - pos: -0.5,19.5 - parent: 30 - type: Transform -- uid: 4260 - type: CableApcExtension - components: - - pos: -0.5,20.5 - parent: 30 - type: Transform -- uid: 4261 - type: CableApcExtension - components: - - pos: -0.5,21.5 - parent: 30 - type: Transform -- uid: 4262 - type: CableApcExtension - components: - - pos: -0.5,22.5 - parent: 30 - type: Transform -- uid: 4263 - type: CableApcExtension - components: - - pos: -0.5,23.5 - parent: 30 - type: Transform -- uid: 4264 - type: CableApcExtension - components: - - pos: -2.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4265 - type: CableApcExtension - components: - - pos: -3.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4266 - type: CableApcExtension - components: - - pos: -4.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4267 - type: CableApcExtension - components: - - pos: -1.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4268 - type: CableApcExtension - components: - - pos: -0.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4269 - type: CableApcExtension - components: - - pos: 0.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4270 - type: CableApcExtension - components: - - pos: 0.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4271 - type: CableApcExtension - components: - - pos: 1.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4272 - type: CableApcExtension - components: - - pos: 2.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4273 - type: CableApcExtension - components: - - pos: 3.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4274 - type: CableApcExtension - components: - - pos: 4.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4275 - type: CableApcExtension - components: - - pos: 5.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4276 - type: CableApcExtension - components: - - pos: 6.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4277 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,8.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4278 - type: CableApcExtension - components: - - pos: 2.5,14.5 - parent: 30 - type: Transform -- uid: 4279 - type: CableApcExtension - components: - - pos: 3.5,14.5 - parent: 30 - type: Transform -- uid: 4280 - type: CableApcExtension - components: - - pos: 4.5,14.5 - parent: 30 - type: Transform -- uid: 4281 - type: CableApcExtension - components: - - pos: 5.5,14.5 - parent: 30 - type: Transform -- uid: 4282 - type: CableApcExtension - components: - - pos: 6.5,14.5 - parent: 30 - type: Transform -- uid: 4283 - type: CableApcExtension - components: - - pos: 2.5,13.5 - parent: 30 - type: Transform -- uid: 4284 - type: CableApcExtension - components: - - pos: 2.5,12.5 - parent: 30 - type: Transform -- uid: 4285 - type: CableApcExtension - components: - - pos: 2.5,11.5 - parent: 30 - type: Transform -- uid: 4286 - type: CableApcExtension - components: - - pos: 2.5,10.5 - parent: 30 - type: Transform -- uid: 4287 - type: CableApcExtension - components: - - pos: 2.5,9.5 - parent: 30 - type: Transform -- uid: 4288 - type: CableApcExtension - components: - - pos: 2.5,8.5 - parent: 30 - type: Transform -- uid: 4289 - type: CableApcExtension - components: - - pos: 2.5,7.5 - parent: 30 - type: Transform -- uid: 4290 - type: CableApcExtension - components: - - pos: 2.5,6.5 - parent: 30 - type: Transform -- uid: 4291 - type: CableApcExtension - components: - - pos: 3.5,7.5 - parent: 30 - type: Transform -- uid: 4292 - type: CableApcExtension - components: - - pos: 4.5,7.5 - parent: 30 - type: Transform -- uid: 4293 - type: CableApcExtension - components: - - pos: 5.5,7.5 - parent: 30 - type: Transform -- uid: 4294 - type: CableApcExtension - components: - - pos: 6.5,7.5 - parent: 30 - type: Transform -- uid: 4295 - type: CableApcExtension - components: - - pos: 1.5,7.5 - parent: 30 - type: Transform -- uid: 4296 - type: CableApcExtension - components: - - pos: -0.5,7.5 - parent: 30 - type: Transform -- uid: 4297 - type: CableApcExtension - components: - - pos: 0.5,7.5 - parent: 30 - type: Transform -- uid: 4298 - type: CableApcExtension - components: - - pos: -0.5,7.5 - parent: 30 - type: Transform -- uid: 4299 - type: CableApcExtension - components: - - pos: -2.5,7.5 - parent: 30 - type: Transform -- uid: 4300 - type: CableApcExtension - components: - - pos: -1.5,7.5 - parent: 30 - type: Transform -- uid: 4301 - type: CableApcExtension - components: - - pos: -3.5,7.5 - parent: 30 - type: Transform -- uid: 4302 - type: CableApcExtension - components: - - pos: -4.5,7.5 - parent: 30 - type: Transform -- uid: 4303 - type: CableApcExtension - components: - - pos: -5.5,7.5 - parent: 30 - type: Transform -- uid: 4304 - type: CableApcExtension - components: - - pos: -6.5,7.5 - parent: 30 - type: Transform -- uid: 4305 - type: CableApcExtension - components: - - pos: -7.5,7.5 - parent: 30 - type: Transform -- uid: 4306 - type: CableApcExtension - components: - - pos: -8.5,7.5 - parent: 30 - type: Transform -- uid: 4307 - type: CableApcExtension - components: - - pos: -9.5,7.5 - parent: 30 - type: Transform -- uid: 4308 - type: CableApcExtension - components: - - pos: -7.5,8.5 - parent: 30 - type: Transform -- uid: 4309 - type: CableApcExtension - components: - - pos: -7.5,9.5 - parent: 30 - type: Transform -- uid: 4310 - type: CableMV - components: - - pos: -5.5,11.5 - parent: 30 - type: Transform -- uid: 4311 - type: CableApcExtension - components: - - pos: -2.5,8.5 - parent: 30 - type: Transform -- uid: 4312 - type: CableApcExtension - components: - - pos: -2.5,9.5 - parent: 30 - type: Transform -- uid: 4313 - type: CableApcExtension - components: - - pos: -2.5,10.5 - parent: 30 - type: Transform -- uid: 4314 - type: CableMV - components: - - pos: -5.5,12.5 - parent: 30 - type: Transform -- uid: 4315 - type: CableApcExtension - components: - - pos: -3.5,10.5 - parent: 30 - type: Transform -- uid: 4316 - type: CableApcExtension - components: - - pos: -4.5,10.5 - parent: 30 - type: Transform -- uid: 4317 - type: CableApcExtension - components: - - pos: -1.5,10.5 - parent: 30 - type: Transform -- uid: 4318 - type: CableApcExtension - components: - - pos: -0.5,10.5 - parent: 30 - type: Transform -- uid: 4319 - type: CableApcExtension - components: - - pos: -2.5,12.5 - parent: 30 - type: Transform -- uid: 4320 - type: CableApcExtension - components: - - pos: -5.5,10.5 - parent: 30 - type: Transform -- uid: 4321 - type: CableApcExtension - components: - - pos: 0.5,10.5 - parent: 30 - type: Transform -- uid: 4322 - type: CableApcExtension - components: - - pos: -2.5,6.5 - parent: 30 - type: Transform -- uid: 4323 - type: CableApcExtension - components: - - pos: -2.5,5.5 - parent: 30 - type: Transform -- uid: 4324 - type: CableApcExtension - components: - - pos: -2.5,4.5 - parent: 30 - type: Transform -- uid: 4325 - type: CableApcExtension - components: - - pos: 5.5,6.5 - parent: 30 - type: Transform -- uid: 4326 - type: CableApcExtension - components: - - pos: -9.5,6.5 - parent: 30 - type: Transform -- uid: 4327 - type: CableApcExtension - components: - - pos: -7.5,13.5 - parent: 30 - type: Transform -- uid: 4328 - type: CableApcExtension - components: - - pos: -8.5,13.5 - parent: 30 - type: Transform -- uid: 4329 - type: CableApcExtension - components: - - pos: -9.5,13.5 - parent: 30 - type: Transform -- uid: 4330 - type: CableApcExtension - components: - - pos: -10.5,13.5 - parent: 30 - type: Transform -- uid: 4331 - type: CableApcExtension - components: - - pos: -11.5,13.5 - parent: 30 - type: Transform -- uid: 4332 - type: CableApcExtension - components: - - pos: -12.5,13.5 - parent: 30 - type: Transform -- uid: 4333 - type: CableApcExtension - components: - - pos: -13.5,13.5 - parent: 30 - type: Transform -- uid: 4334 - type: CableApcExtension - components: - - pos: -13.5,12.5 - parent: 30 - type: Transform -- uid: 4335 - type: CableApcExtension - components: - - pos: -13.5,14.5 - parent: 30 - type: Transform -- uid: 4336 - type: CableApcExtension - components: - - pos: -10.5,14.5 - parent: 30 - type: Transform -- uid: 4337 - type: CableApcExtension - components: - - pos: -10.5,15.5 - parent: 30 - type: Transform -- uid: 4338 - type: CableApcExtension - components: - - pos: -10.5,16.5 - parent: 30 - type: Transform -- uid: 4339 - type: CableApcExtension - components: - - pos: -10.5,17.5 - parent: 30 - type: Transform -- uid: 4340 - type: CableApcExtension - components: - - pos: -10.5,18.5 - parent: 30 - type: Transform -- uid: 4341 - type: CableApcExtension - components: - - pos: -10.5,19.5 - parent: 30 - type: Transform -- uid: 4342 - type: CableApcExtension - components: - - pos: -9.5,18.5 - parent: 30 - type: Transform -- uid: 4343 - type: CableApcExtension - components: - - pos: -8.5,18.5 - parent: 30 - type: Transform -- uid: 4344 - type: CableApcExtension - components: - - pos: -11.5,18.5 - parent: 30 - type: Transform -- uid: 4345 - type: CableApcExtension - components: - - pos: -7.5,12.5 - parent: 30 - type: Transform -- uid: 4346 - type: CableApcExtension - components: - - pos: -2.5,13.5 - parent: 30 - type: Transform -- uid: 4347 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: -37.5,4.5 - parent: 30 - type: Transform -- uid: 4348 - type: Poweredlight - components: - - pos: -22.5,3.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4349 - type: Poweredlight - components: - - pos: -18.5,3.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4350 - type: CrateNPCHamlet - components: - - pos: -7.5,45.5 - parent: 30 - type: Transform -- uid: 4351 - type: PoweredSmallLight - components: - - pos: -38.5,3.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4352 - type: PoweredSmallLight - components: - - pos: 23.5,2.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4355 - type: ComputerStationRecords - components: - - rot: 1.5707963267948966 rad - pos: -12.5,42.5 - parent: 30 - type: Transform -- uid: 4356 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -22.5,15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4357 - type: Poweredlight - components: - - pos: -42.5,7.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4358 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,8.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4359 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,4.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4360 - type: Poweredlight - components: - - pos: -30.5,4.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4361 - type: ShuttersNormalOpen - components: - - pos: 5.5,5.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver -- uid: 4362 - type: Poweredlight - components: - - pos: -7.5,4.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4363 - type: Poweredlight - components: - - pos: 2.5,4.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4364 - type: Poweredlight - components: - - pos: -0.5,3.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4365 - type: Poweredlight - components: - - pos: -4.5,3.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4366 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -36.5,3.5 - parent: 30 - type: Transform -- uid: 4367 - type: Poweredlight - components: - - pos: -17.5,11.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4368 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -12.5,6.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4369 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,7.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4370 - type: PoweredSmallLight - components: - - pos: -16.5,17.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4371 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -18.5,14.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4372 - type: Poweredlight - components: - - pos: 7.5,39.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4373 - type: Poweredlight - components: - - pos: -28.5,17.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4374 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,16.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4375 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,21.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4376 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: 7.5,7.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver -- uid: 4377 - type: IntercomSecurity - components: - - pos: -33.5,38.5 - parent: 30 - type: Transform -- uid: 4378 - type: ShuttersNormalOpen - components: - - pos: 0.5,5.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver -- uid: 4379 - type: Poweredlight - components: - - pos: -23.5,27.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4380 - type: Poweredlight - components: - - pos: -33.5,27.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4381 - type: Poweredlight - components: - - pos: -25.5,33.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4382 - type: Poweredlight - components: - - pos: -31.5,33.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4383 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,30.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4384 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,30.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4385 - type: Poweredlight - components: - - pos: -33.5,37.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4386 - type: IntercomService - components: - - pos: -23.5,14.5 - parent: 30 - type: Transform -- uid: 4387 - type: Poweredlight - components: - - pos: -41.5,37.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4388 - type: Poweredlight - components: - - pos: -45.5,37.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4389 - type: WallSolid - components: - - pos: -49.5,37.5 - parent: 30 - type: Transform -- uid: 4390 - type: Grille - components: - - pos: -40.5,31.5 - parent: 30 - type: Transform -- uid: 4391 - type: Grille - components: - - pos: -40.5,30.5 - parent: 30 - type: Transform -- uid: 4392 - type: Poweredlight - components: - - pos: -51.5,33.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4394 - type: PoweredSmallLight - components: - - pos: -42.5,40.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4395 - type: PoweredSmallLight - components: - - pos: -46.5,40.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4396 - type: PoweredSmallLight - components: - - pos: -38.5,40.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4397 - type: Poweredlight - components: - - pos: -30.5,40.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4398 - type: ComputerStationRecords - components: - - rot: 3.141592653589793 rad - pos: 0.5,31.5 - parent: 30 - type: Transform -- uid: 4399 - type: LockerResearchDirectorFilled - components: - - pos: 26.5,16.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4400 - type: DrinkChangelingStingCan - components: - - pos: -40.5,-22.5 - parent: 30 - type: Transform -- uid: 4401 - type: Poweredlight - components: - - pos: -60.5,21.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4402 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -60.5,23.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4403 - type: Poweredlight - components: - - pos: -60.5,13.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4404 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -60.5,15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4409 - type: Poweredlight - components: - - pos: -47.5,-8.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4410 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-6.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4412 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-67.5 - parent: 30 - type: Transform -- uid: 4413 - type: Poweredlight - components: - - pos: -53.5,13.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4414 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -53.5,15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4415 - type: Poweredlight - components: - - pos: -53.5,21.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4416 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -53.5,23.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4417 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-43.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4420 - type: Poweredlight - components: - - pos: -38.5,11.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4421 - type: Poweredlight - components: - - pos: -41.5,19.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4422 - type: Poweredlight - components: - - pos: -42.5,11.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4423 - type: PoweredSmallLight - components: - - pos: -8.5,14.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4424 - type: PoweredSmallLight - components: - - pos: -12.5,15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4425 - type: PoweredSmallLight - components: - - pos: -11.5,19.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4426 - type: PoweredSmallLight - components: - - pos: -8.5,19.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4427 - type: PoweredSmallLight - components: - - pos: -30.5,19.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4428 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,21.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4429 - type: PoweredSmallLight - components: - - pos: 3.5,18.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4430 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,21.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4431 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,21.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4432 - type: Poweredlight - components: - - pos: 4.5,15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4433 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 4.5,12.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4434 - type: Poweredlight - components: - - pos: -6.5,11.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4435 - type: Poweredlight - components: - - pos: 1.5,11.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4436 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -4.5,6.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4437 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -0.5,6.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4438 - type: Poweredlight - components: - - pos: 3.5,8.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4439 - type: ComfyChair - components: - - pos: 5.5,10.5 - parent: 30 - type: Transform -- uid: 4440 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 4.5,9.5 - parent: 30 - type: Transform -- uid: 4441 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 6.5,10.5 - parent: 30 - type: Transform -- uid: 4442 - type: TableCarpet - components: - - pos: 4.5,10.5 - parent: 30 - type: Transform -- uid: 4443 - type: LampGold - components: - - pos: 4.5292673,10.977108 - parent: 30 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 4444 - type: RandomPosterLegit - components: - - pos: 5.5,11.5 - parent: 30 - type: Transform -- uid: 4445 - type: PosterContrabandClown - components: - - pos: 5.5,15.5 - parent: 30 - type: Transform -- uid: 4446 - type: PosterLegitNanotrasenLogo - components: - - pos: -4.5,22.5 - parent: 30 - type: Transform -- uid: 4447 - type: RandomPosterLegit - components: - - pos: -29.5,22.5 - parent: 30 - type: Transform -- uid: 4448 - type: RandomPosterLegit - components: - - pos: -20.5,23.5 - parent: 30 - type: Transform -- uid: 4449 - type: RandomPosterLegit - components: - - pos: -9.5,12.5 - parent: 30 - type: Transform -- uid: 4450 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: -42.5,45.5 - parent: 30 - type: Transform -- uid: 4452 - type: RandomPosterLegit - components: - - pos: -48.5,24.5 - parent: 30 - type: Transform -- uid: 4453 - type: Poweredlight - components: - - pos: -0.5,15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4454 - type: Poweredlight - components: - - pos: -4.5,15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4455 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,17.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4456 - type: CableHV - components: - - pos: -45.5,18.5 - parent: 30 - type: Transform -- uid: 4457 - type: CableHV - components: - - pos: -46.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4458 - type: CableHV - components: - - pos: -46.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4459 - type: CableHV - components: - - pos: -46.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4460 - type: CableHV - components: - - pos: -46.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4461 - type: CableHV - components: - - pos: -46.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4462 - type: CableHV - components: - - pos: -46.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4463 - type: CableHV - components: - - pos: -46.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4464 - type: CableHV - components: - - pos: -46.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4465 - type: CableHV - components: - - pos: -46.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4466 - type: CableHV - components: - - pos: -46.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4467 - type: CableHV - components: - - pos: -47.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4468 - type: CableHV - components: - - pos: -48.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4469 - type: CableHV - components: - - pos: -49.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4470 - type: CableHV - components: - - pos: -50.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4471 - type: CableHV - components: - - pos: -51.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4472 - type: CableHV - components: - - pos: -52.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4473 - type: CableHV - components: - - pos: -53.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4474 - type: CableHV - components: - - pos: -54.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4475 - type: CableHV - components: - - pos: -55.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4476 - type: CableHV - components: - - pos: -56.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4477 - type: CableHV - components: - - pos: -56.5,28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4478 - type: CableHV - components: - - pos: -56.5,29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4479 - type: CableHV - components: - - pos: -56.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4480 - type: CableHV - components: - - pos: -57.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4481 - type: CableHV - components: - - pos: -58.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4482 - type: CableHV - components: - - pos: -59.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4483 - type: CableHV - components: - - pos: -60.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4484 - type: CableHV - components: - - pos: -60.5,31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4485 - type: CableHV - components: - - pos: -60.5,32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4486 - type: CableHV - components: - - pos: -60.5,33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4487 - type: CableHV - components: - - pos: -60.5,34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4488 - type: CableHV - components: - - pos: -50.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4489 - type: CableHV - components: - - pos: -50.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4490 - type: CableHV - components: - - pos: -50.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4491 - type: CableHV - components: - - pos: -50.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4492 - type: CableHV - components: - - pos: -50.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4493 - type: CableHV - components: - - pos: -50.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4494 - type: CableHV - components: - - pos: -51.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4495 - type: CableHV - components: - - pos: -52.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4496 - type: CableHV - components: - - pos: -53.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4497 - type: CableHV - components: - - pos: -54.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4498 - type: CableHV - components: - - pos: -55.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4499 - type: CableHV - components: - - pos: -56.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4500 - type: CableHV - components: - - pos: -57.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4501 - type: CableHV - components: - - pos: -58.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4502 - type: CableHV - components: - - pos: -59.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4503 - type: CableHV - components: - - pos: -60.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4504 - type: CableHV - components: - - pos: -60.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4505 - type: CableHV - components: - - pos: -60.5,41.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4506 - type: CableHV - components: - - pos: -60.5,40.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4507 - type: CableHV - components: - - pos: -60.5,39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4508 - type: CableHV - components: - - pos: -60.5,35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4509 - type: CableHV - components: - - pos: -60.5,36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4510 - type: CableHV - components: - - pos: -60.5,37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4511 - type: CableHV - components: - - pos: -60.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4512 - type: CableMV - components: - - pos: -50.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4513 - type: CableMV - components: - - pos: -50.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4514 - type: CableMV - components: - - pos: -50.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4515 - type: CableMV - components: - - pos: -50.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4516 - type: CableMV - components: - - pos: -50.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4517 - type: CableMV - components: - - pos: -50.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4518 - type: CableMV - components: - - pos: -50.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4519 - type: CableMV - components: - - pos: -49.5,43.5 - parent: 30 - type: Transform -- uid: 4520 - type: CableMV - components: - - pos: -48.5,43.5 - parent: 30 - type: Transform -- uid: 4521 - type: CableMV - components: - - pos: -47.5,43.5 - parent: 30 - type: Transform -- uid: 4522 - type: CableMV - components: - - pos: -46.5,43.5 - parent: 30 - type: Transform -- uid: 4523 - type: CableMV - components: - - pos: -46.5,44.5 - parent: 30 - type: Transform -- uid: 4524 - type: CableMV - components: - - pos: -46.5,45.5 - parent: 30 - type: Transform -- uid: 4525 - type: CableMV - components: - - pos: -46.5,46.5 - parent: 30 - type: Transform -- uid: 4526 - type: CableMV - components: - - pos: -46.5,47.5 - parent: 30 - type: Transform -- uid: 4527 - type: CableMV - components: - - pos: -46.5,48.5 - parent: 30 - type: Transform -- uid: 4528 - type: CableMV - components: - - pos: -46.5,49.5 - parent: 30 - type: Transform -- uid: 4529 - type: CableMV - components: - - pos: -45.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4530 - type: CableMV - components: - - pos: -47.5,59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4531 - type: CableMV - components: - - pos: -47.5,58.5 - parent: 30 - type: Transform -- uid: 4532 - type: CableMV - components: - - pos: -47.5,57.5 - parent: 30 - type: Transform -- uid: 4533 - type: CableMV - components: - - pos: -47.5,56.5 - parent: 30 - type: Transform -- uid: 4534 - type: CableMV - components: - - pos: -47.5,55.5 - parent: 30 - type: Transform -- uid: 4535 - type: CableMV - components: - - pos: -47.5,54.5 - parent: 30 - type: Transform -- uid: 4536 - type: CableMV - components: - - pos: -46.5,54.5 - parent: 30 - type: Transform -- uid: 4537 - type: CableMV - components: - - pos: -46.5,53.5 - parent: 30 - type: Transform -- uid: 4538 - type: CableMV - components: - - pos: -46.5,51.5 - parent: 30 - type: Transform -- uid: 4539 - type: CableMV - components: - - pos: -46.5,52.5 - parent: 30 - type: Transform -- uid: 4540 - type: CableMV - components: - - pos: -46.5,50.5 - parent: 30 - type: Transform -- uid: 4541 - type: CableMV - components: - - pos: -36.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4542 - type: CableMV - components: - - pos: -35.5,53.5 - parent: 30 - type: Transform -- uid: 4543 - type: CableMV - components: - - pos: -34.5,53.5 - parent: 30 - type: Transform -- uid: 4544 - type: CableMV - components: - - pos: -33.5,53.5 - parent: 30 - type: Transform -- uid: 4545 - type: CableMV - components: - - pos: -32.5,53.5 - parent: 30 - type: Transform -- uid: 4546 - type: CableMV - components: - - pos: -32.5,51.5 - parent: 30 - type: Transform -- uid: 4547 - type: CableMV - components: - - pos: -32.5,51.5 - parent: 30 - type: Transform -- uid: 4548 - type: CableMV - components: - - pos: -32.5,52.5 - parent: 30 - type: Transform -- uid: 4549 - type: CableMV - components: - - pos: -32.5,50.5 - parent: 30 - type: Transform -- uid: 4550 - type: CableMV - components: - - pos: -32.5,49.5 - parent: 30 - type: Transform -- uid: 4551 - type: CableMV - components: - - pos: -32.5,48.5 - parent: 30 - type: Transform -- uid: 4552 - type: CableMV - components: - - pos: -32.5,47.5 - parent: 30 - type: Transform -- uid: 4553 - type: CableMV - components: - - pos: -32.5,46.5 - parent: 30 - type: Transform -- uid: 4554 - type: CableMV - components: - - pos: -32.5,45.5 - parent: 30 - type: Transform -- uid: 4555 - type: CableMV - components: - - pos: -32.5,44.5 - parent: 30 - type: Transform -- uid: 4556 - type: CableMV - components: - - pos: -33.5,44.5 - parent: 30 - type: Transform -- uid: 4557 - type: CableMV - components: - - pos: -34.5,44.5 - parent: 30 - type: Transform -- uid: 4558 - type: CableMV - components: - - pos: -35.5,44.5 - parent: 30 - type: Transform -- uid: 4559 - type: CableMV - components: - - pos: -36.5,44.5 - parent: 30 - type: Transform -- uid: 4560 - type: CableMV - components: - - pos: -37.5,44.5 - parent: 30 - type: Transform -- uid: 4561 - type: CableMV - components: - - pos: -38.5,44.5 - parent: 30 - type: Transform -- uid: 4562 - type: CableMV - components: - - pos: -39.5,44.5 - parent: 30 - type: Transform -- uid: 4563 - type: CableMV - components: - - pos: -40.5,44.5 - parent: 30 - type: Transform -- uid: 4564 - type: CableMV - components: - - pos: -41.5,44.5 - parent: 30 - type: Transform -- uid: 4565 - type: CableMV - components: - - pos: -42.5,44.5 - parent: 30 - type: Transform -- uid: 4566 - type: CableMV - components: - - pos: -43.5,44.5 - parent: 30 - type: Transform -- uid: 4567 - type: CableMV - components: - - pos: -44.5,44.5 - parent: 30 - type: Transform -- uid: 4568 - type: CableMV - components: - - pos: -45.5,44.5 - parent: 30 - type: Transform -- uid: 4569 - type: CableApcExtension - components: - - pos: -45.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4570 - type: CableApcExtension - components: - - pos: -46.5,49.5 - parent: 30 - type: Transform -- uid: 4571 - type: CableApcExtension - components: - - pos: -47.5,49.5 - parent: 30 - type: Transform -- uid: 4572 - type: CableApcExtension - components: - - pos: -47.5,50.5 - parent: 30 - type: Transform -- uid: 4573 - type: CableApcExtension - components: - - pos: -47.5,51.5 - parent: 30 - type: Transform -- uid: 4574 - type: CableApcExtension - components: - - pos: -47.5,52.5 - parent: 30 - type: Transform -- uid: 4575 - type: CableApcExtension - components: - - pos: -47.5,53.5 - parent: 30 - type: Transform -- uid: 4576 - type: CableApcExtension - components: - - pos: -47.5,54.5 - parent: 30 - type: Transform -- uid: 4577 - type: CableApcExtension - components: - - pos: -47.5,48.5 - parent: 30 - type: Transform -- uid: 4578 - type: CableApcExtension - components: - - pos: -47.5,47.5 - parent: 30 - type: Transform -- uid: 4579 - type: CableApcExtension - components: - - pos: -47.5,46.5 - parent: 30 - type: Transform -- uid: 4580 - type: CableApcExtension - components: - - pos: -47.5,45.5 - parent: 30 - type: Transform -- uid: 4581 - type: CableApcExtension - components: - - pos: -47.5,44.5 - parent: 30 - type: Transform -- uid: 4582 - type: CableApcExtension - components: - - pos: -47.5,43.5 - parent: 30 - type: Transform -- uid: 4583 - type: CableApcExtension - components: - - pos: -47.5,42.5 - parent: 30 - type: Transform -- uid: 4584 - type: CableApcExtension - components: - - pos: -44.5,49.5 - parent: 30 - type: Transform -- uid: 4585 - type: CableApcExtension - components: - - pos: -43.5,49.5 - parent: 30 - type: Transform -- uid: 4586 - type: CableApcExtension - components: - - pos: -43.5,48.5 - parent: 30 - type: Transform -- uid: 4587 - type: CableApcExtension - components: - - pos: -43.5,47.5 - parent: 30 - type: Transform -- uid: 4588 - type: CableApcExtension - components: - - pos: -42.5,47.5 - parent: 30 - type: Transform -- uid: 4589 - type: CableApcExtension - components: - - pos: -41.5,47.5 - parent: 30 - type: Transform -- uid: 4590 - type: CableApcExtension - components: - - pos: -40.5,47.5 - parent: 30 - type: Transform -- uid: 4591 - type: CableApcExtension - components: - - pos: -39.5,47.5 - parent: 30 - type: Transform -- uid: 4592 - type: CableApcExtension - components: - - pos: -38.5,47.5 - parent: 30 - type: Transform -- uid: 4593 - type: CableApcExtension - components: - - pos: -37.5,47.5 - parent: 30 - type: Transform -- uid: 4594 - type: CableApcExtension - components: - - pos: -39.5,46.5 - parent: 30 - type: Transform -- uid: 4595 - type: CableApcExtension - components: - - pos: -39.5,48.5 - parent: 30 - type: Transform -- uid: 4596 - type: CableApcExtension - components: - - pos: -39.5,49.5 - parent: 30 - type: Transform -- uid: 4597 - type: CableApcExtension - components: - - pos: -39.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4598 - type: CableApcExtension - components: - - pos: -39.5,51.5 - parent: 30 - type: Transform -- uid: 4599 - type: CableApcExtension - components: - - pos: -39.5,52.5 - parent: 30 - type: Transform -- uid: 4600 - type: CableApcExtension - components: - - pos: -39.5,53.5 - parent: 30 - type: Transform -- uid: 4601 - type: CableApcExtension - components: - - pos: -40.5,53.5 - parent: 30 - type: Transform -- uid: 4602 - type: CableApcExtension - components: - - pos: -40.5,54.5 - parent: 30 - type: Transform -- uid: 4603 - type: CableApcExtension - components: - - pos: -40.5,55.5 - parent: 30 - type: Transform -- uid: 4604 - type: CableApcExtension - components: - - pos: -39.5,55.5 - parent: 30 - type: Transform -- uid: 4605 - type: CableApcExtension - components: - - pos: -38.5,55.5 - parent: 30 - type: Transform -- uid: 4606 - type: CableApcExtension - components: - - pos: -38.5,54.5 - parent: 30 - type: Transform -- uid: 4607 - type: CableApcExtension - components: - - pos: -38.5,53.5 - parent: 30 - type: Transform -- uid: 4608 - type: CableApcExtension - components: - - pos: -47.5,41.5 - parent: 30 - type: Transform -- uid: 4609 - type: CableApcExtension - components: - - pos: -47.5,40.5 - parent: 30 - type: Transform -- uid: 4610 - type: CableApcExtension - components: - - pos: -47.5,39.5 - parent: 30 - type: Transform -- uid: 4611 - type: CableApcExtension - components: - - pos: -46.5,43.5 - parent: 30 - type: Transform -- uid: 4612 - type: CableApcExtension - components: - - pos: -45.5,43.5 - parent: 30 - type: Transform -- uid: 4613 - type: CableApcExtension - components: - - pos: -44.5,43.5 - parent: 30 - type: Transform -- uid: 4614 - type: CableApcExtension - components: - - pos: -43.5,43.5 - parent: 30 - type: Transform -- uid: 4615 - type: CableApcExtension - components: - - pos: -43.5,42.5 - parent: 30 - type: Transform -- uid: 4616 - type: CableApcExtension - components: - - pos: -43.5,41.5 - parent: 30 - type: Transform -- uid: 4617 - type: CableApcExtension - components: - - pos: -43.5,40.5 - parent: 30 - type: Transform -- uid: 4618 - type: CableApcExtension - components: - - pos: -43.5,39.5 - parent: 30 - type: Transform -- uid: 4619 - type: CableApcExtension - components: - - pos: -42.5,43.5 - parent: 30 - type: Transform -- uid: 4620 - type: CableApcExtension - components: - - pos: -41.5,43.5 - parent: 30 - type: Transform -- uid: 4621 - type: CableApcExtension - components: - - pos: -40.5,43.5 - parent: 30 - type: Transform -- uid: 4622 - type: CableApcExtension - components: - - pos: -39.5,43.5 - parent: 30 - type: Transform -- uid: 4623 - type: CableApcExtension - components: - - pos: -39.5,41.5 - parent: 30 - type: Transform -- uid: 4624 - type: CableApcExtension - components: - - pos: -39.5,42.5 - parent: 30 - type: Transform -- uid: 4625 - type: CableApcExtension - components: - - pos: -39.5,40.5 - parent: 30 - type: Transform -- uid: 4626 - type: CableApcExtension - components: - - pos: -39.5,39.5 - parent: 30 - type: Transform -- uid: 4627 - type: CableApcExtension - components: - - pos: -38.5,43.5 - parent: 30 - type: Transform -- uid: 4628 - type: CableApcExtension - components: - - pos: -37.5,43.5 - parent: 30 - type: Transform -- uid: 4629 - type: CableApcExtension - components: - - pos: -36.5,43.5 - parent: 30 - type: Transform -- uid: 4630 - type: CableApcExtension - components: - - pos: -35.5,43.5 - parent: 30 - type: Transform -- uid: 4631 - type: CableApcExtension - components: - - pos: -35.5,39.5 - parent: 30 - type: Transform -- uid: 4632 - type: CableApcExtension - components: - - pos: -35.5,40.5 - parent: 30 - type: Transform -- uid: 4633 - type: CableApcExtension - components: - - pos: -36.5,40.5 - parent: 30 - type: Transform -- uid: 4634 - type: CableApcExtension - components: - - pos: -36.5,41.5 - parent: 30 - type: Transform -- uid: 4635 - type: CableApcExtension - components: - - pos: -36.5,42.5 - parent: 30 - type: Transform -- uid: 4636 - type: CableApcExtension - components: - - pos: -34.5,40.5 - parent: 30 - type: Transform -- uid: 4637 - type: CableApcExtension - components: - - pos: -34.5,41.5 - parent: 30 - type: Transform -- uid: 4638 - type: CableApcExtension - components: - - pos: -34.5,42.5 - parent: 30 - type: Transform -- uid: 4639 - type: CableApcExtension - components: - - pos: -34.5,43.5 - parent: 30 - type: Transform -- uid: 4640 - type: CableApcExtension - components: - - pos: -33.5,43.5 - parent: 30 - type: Transform -- uid: 4641 - type: CableApcExtension - components: - - pos: -32.5,43.5 - parent: 30 - type: Transform -- uid: 4642 - type: CableApcExtension - components: - - pos: -31.5,43.5 - parent: 30 - type: Transform -- uid: 4643 - type: CableApcExtension - components: - - pos: -31.5,41.5 - parent: 30 - type: Transform -- uid: 4644 - type: CableApcExtension - components: - - pos: -31.5,40.5 - parent: 30 - type: Transform -- uid: 4645 - type: CableApcExtension - components: - - pos: -31.5,39.5 - parent: 30 - type: Transform -- uid: 4646 - type: CableApcExtension - components: - - pos: -30.5,39.5 - parent: 30 - type: Transform -- uid: 4647 - type: CableApcExtension - components: - - pos: -32.5,39.5 - parent: 30 - type: Transform -- uid: 4648 - type: CableApcExtension - components: - - pos: -31.5,42.5 - parent: 30 - type: Transform -- uid: 4649 - type: CableApcExtension - components: - - pos: -30.5,43.5 - parent: 30 - type: Transform -- uid: 4650 - type: CableApcExtension - components: - - pos: -29.5,43.5 - parent: 30 - type: Transform -- uid: 4651 - type: CableApcExtension - components: - - pos: -28.5,43.5 - parent: 30 - type: Transform -- uid: 4652 - type: CableApcExtension - components: - - pos: -27.5,43.5 - parent: 30 - type: Transform -- uid: 4653 - type: CableApcExtension - components: - - pos: -26.5,43.5 - parent: 30 - type: Transform -- uid: 4654 - type: CableApcExtension - components: - - pos: -27.5,42.5 - parent: 30 - type: Transform -- uid: 4655 - type: CableApcExtension - components: - - pos: -27.5,41.5 - parent: 30 - type: Transform -- uid: 4656 - type: CableApcExtension - components: - - pos: -47.5,59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4657 - type: CableApcExtension - components: - - pos: -47.5,58.5 - parent: 30 - type: Transform -- uid: 4658 - type: CableApcExtension - components: - - pos: -47.5,57.5 - parent: 30 - type: Transform -- uid: 4659 - type: CableApcExtension - components: - - pos: -48.5,57.5 - parent: 30 - type: Transform -- uid: 4660 - type: CableApcExtension - components: - - pos: -49.5,57.5 - parent: 30 - type: Transform -- uid: 4661 - type: CableApcExtension - components: - - pos: -50.5,57.5 - parent: 30 - type: Transform -- uid: 4662 - type: CableApcExtension - components: - - pos: -51.5,57.5 - parent: 30 - type: Transform -- uid: 4663 - type: CableApcExtension - components: - - pos: -52.5,57.5 - parent: 30 - type: Transform -- uid: 4664 - type: CableApcExtension - components: - - pos: -46.5,57.5 - parent: 30 - type: Transform -- uid: 4665 - type: CableApcExtension - components: - - pos: -45.5,57.5 - parent: 30 - type: Transform -- uid: 4666 - type: CableApcExtension - components: - - pos: -47.5,60.5 - parent: 30 - type: Transform -- uid: 4667 - type: CableApcExtension - components: - - pos: -46.5,60.5 - parent: 30 - type: Transform -- uid: 4668 - type: CableApcExtension - components: - - pos: -46.5,61.5 - parent: 30 - type: Transform -- uid: 4669 - type: CableApcExtension - components: - - pos: -46.5,62.5 - parent: 30 - type: Transform -- uid: 4670 - type: CableApcExtension - components: - - pos: -46.5,63.5 - parent: 30 - type: Transform -- uid: 4671 - type: CableApcExtension - components: - - pos: -46.5,64.5 - parent: 30 - type: Transform -- uid: 4672 - type: CableApcExtension - components: - - pos: -46.5,65.5 - parent: 30 - type: Transform -- uid: 4673 - type: CableApcExtension - components: - - pos: -46.5,66.5 - parent: 30 - type: Transform -- uid: 4674 - type: CableApcExtension - components: - - pos: -46.5,67.5 - parent: 30 - type: Transform -- uid: 4675 - type: CableApcExtension - components: - - pos: -47.5,67.5 - parent: 30 - type: Transform -- uid: 4676 - type: CableApcExtension - components: - - pos: -47.5,68.5 - parent: 30 - type: Transform -- uid: 4677 - type: CableApcExtension - components: - - pos: -47.5,69.5 - parent: 30 - type: Transform -- uid: 4678 - type: CableApcExtension - components: - - pos: -48.5,68.5 - parent: 30 - type: Transform -- uid: 4679 - type: CableApcExtension - components: - - pos: -49.5,68.5 - parent: 30 - type: Transform -- uid: 4680 - type: CableApcExtension - components: - - pos: -50.5,68.5 - parent: 30 - type: Transform -- uid: 4681 - type: CableApcExtension - components: - - pos: -51.5,68.5 - parent: 30 - type: Transform -- uid: 4682 - type: CableApcExtension - components: - - pos: -47.5,63.5 - parent: 30 - type: Transform -- uid: 4683 - type: CableApcExtension - components: - - pos: -48.5,63.5 - parent: 30 - type: Transform -- uid: 4684 - type: CableApcExtension - components: - - pos: -49.5,63.5 - parent: 30 - type: Transform -- uid: 4685 - type: CableApcExtension - components: - - pos: -50.5,63.5 - parent: 30 - type: Transform -- uid: 4686 - type: CableApcExtension - components: - - pos: -51.5,63.5 - parent: 30 - type: Transform -- uid: 4687 - type: CableApcExtension - components: - - pos: -50.5,58.5 - parent: 30 - type: Transform -- uid: 4688 - type: CableApcExtension - components: - - pos: -50.5,59.5 - parent: 30 - type: Transform -- uid: 4689 - type: CableApcExtension - components: - - pos: -50.5,60.5 - parent: 30 - type: Transform -- uid: 4690 - type: CableApcExtension - components: - - pos: -50.5,61.5 - parent: 30 - type: Transform -- uid: 4691 - type: CableApcExtension - components: - - pos: -50.5,62.5 - parent: 30 - type: Transform -- uid: 4692 - type: CableApcExtension - components: - - pos: -45.5,63.5 - parent: 30 - type: Transform -- uid: 4693 - type: CableApcExtension - components: - - pos: -44.5,63.5 - parent: 30 - type: Transform -- uid: 4694 - type: CableApcExtension - components: - - pos: -43.5,63.5 - parent: 30 - type: Transform -- uid: 4695 - type: CableApcExtension - components: - - pos: -43.5,62.5 - parent: 30 - type: Transform -- uid: 4696 - type: CableApcExtension - components: - - pos: -43.5,61.5 - parent: 30 - type: Transform -- uid: 4697 - type: CableApcExtension - components: - - pos: -43.5,60.5 - parent: 30 - type: Transform -- uid: 4698 - type: CableApcExtension - components: - - pos: -45.5,65.5 - parent: 30 - type: Transform -- uid: 4699 - type: CableApcExtension - components: - - pos: -45.5,66.5 - parent: 30 - type: Transform -- uid: 4700 - type: CableApcExtension - components: - - pos: -44.5,66.5 - parent: 30 - type: Transform -- uid: 4701 - type: CableApcExtension - components: - - pos: -43.5,66.5 - parent: 30 - type: Transform -- uid: 4702 - type: CableApcExtension - components: - - pos: -51.5,64.5 - parent: 30 - type: Transform -- uid: 4703 - type: CableApcExtension - components: - - pos: -51.5,65.5 - parent: 30 - type: Transform -- uid: 4704 - type: CableApcExtension - components: - - pos: -51.5,66.5 - parent: 30 - type: Transform -- uid: 4705 - type: CableApcExtension - components: - - pos: -36.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4706 - type: CableApcExtension - components: - - pos: -35.5,53.5 - parent: 30 - type: Transform -- uid: 4707 - type: CableApcExtension - components: - - pos: -34.5,53.5 - parent: 30 - type: Transform -- uid: 4708 - type: CableApcExtension - components: - - pos: -33.5,53.5 - parent: 30 - type: Transform -- uid: 4709 - type: CableApcExtension - components: - - pos: -32.5,53.5 - parent: 30 - type: Transform -- uid: 4710 - type: CableApcExtension - components: - - pos: -32.5,52.5 - parent: 30 - type: Transform -- uid: 4711 - type: CableApcExtension - components: - - pos: -32.5,51.5 - parent: 30 - type: Transform -- uid: 4712 - type: CableApcExtension - components: - - pos: -32.5,50.5 - parent: 30 - type: Transform -- uid: 4713 - type: CableApcExtension - components: - - pos: -32.5,50.5 - parent: 30 - type: Transform -- uid: 4714 - type: CableApcExtension - components: - - pos: -32.5,49.5 - parent: 30 - type: Transform -- uid: 4715 - type: CableApcExtension - components: - - pos: -32.5,48.5 - parent: 30 - type: Transform -- uid: 4716 - type: CableApcExtension - components: - - pos: -32.5,47.5 - parent: 30 - type: Transform -- uid: 4717 - type: CableApcExtension - components: - - pos: -32.5,46.5 - parent: 30 - type: Transform -- uid: 4718 - type: CableApcExtension - components: - - pos: -31.5,46.5 - parent: 30 - type: Transform -- uid: 4719 - type: CableApcExtension - components: - - pos: -30.5,46.5 - parent: 30 - type: Transform -- uid: 4720 - type: CableApcExtension - components: - - pos: -29.5,46.5 - parent: 30 - type: Transform -- uid: 4721 - type: CableApcExtension - components: - - pos: -32.5,45.5 - parent: 30 - type: Transform -- uid: 4722 - type: CableApcExtension - components: - - pos: -33.5,47.5 - parent: 30 - type: Transform -- uid: 4723 - type: CableApcExtension - components: - - pos: -34.5,47.5 - parent: 30 - type: Transform -- uid: 4724 - type: CableApcExtension - components: - - pos: -35.5,47.5 - parent: 30 - type: Transform -- uid: 4725 - type: CableApcExtension - components: - - pos: -31.5,47.5 - parent: 30 - type: Transform -- uid: 4726 - type: CableApcExtension - components: - - pos: -29.5,47.5 - parent: 30 - type: Transform -- uid: 4727 - type: CableApcExtension - components: - - pos: -29.5,48.5 - parent: 30 - type: Transform -- uid: 4728 - type: CableApcExtension - components: - - pos: -29.5,49.5 - parent: 30 - type: Transform -- uid: 4729 - type: CableApcExtension - components: - - pos: -29.5,50.5 - parent: 30 - type: Transform -- uid: 4730 - type: CableApcExtension - components: - - pos: -28.5,50.5 - parent: 30 - type: Transform -- uid: 4731 - type: CableApcExtension - components: - - pos: -27.5,50.5 - parent: 30 - type: Transform -- uid: 4732 - type: CableApcExtension - components: - - pos: -26.5,50.5 - parent: 30 - type: Transform -- uid: 4733 - type: CableApcExtension - components: - - pos: -26.5,49.5 - parent: 30 - type: Transform -- uid: 4734 - type: CableApcExtension - components: - - pos: -26.5,48.5 - parent: 30 - type: Transform -- uid: 4735 - type: CableApcExtension - components: - - pos: -25.5,48.5 - parent: 30 - type: Transform -- uid: 4736 - type: CableApcExtension - components: - - pos: -24.5,48.5 - parent: 30 - type: Transform -- uid: 4737 - type: CableApcExtension - components: - - pos: -23.5,48.5 - parent: 30 - type: Transform -- uid: 4738 - type: CableApcExtension - components: - - pos: -22.5,48.5 - parent: 30 - type: Transform -- uid: 4739 - type: CableApcExtension - components: - - pos: -21.5,48.5 - parent: 30 - type: Transform -- uid: 4740 - type: CableApcExtension - components: - - pos: -26.5,51.5 - parent: 30 - type: Transform -- uid: 4741 - type: CableApcExtension - components: - - pos: -26.5,52.5 - parent: 30 - type: Transform -- uid: 4742 - type: CableApcExtension - components: - - pos: -25.5,52.5 - parent: 30 - type: Transform -- uid: 4743 - type: CableApcExtension - components: - - pos: -24.5,52.5 - parent: 30 - type: Transform -- uid: 4744 - type: CableApcExtension - components: - - pos: -23.5,52.5 - parent: 30 - type: Transform -- uid: 4745 - type: CableApcExtension - components: - - pos: -22.5,52.5 - parent: 30 - type: Transform -- uid: 4746 - type: CableApcExtension - components: - - pos: -21.5,52.5 - parent: 30 - type: Transform -- uid: 4747 - type: CableApcExtension - components: - - pos: -29.5,51.5 - parent: 30 - type: Transform -- uid: 4748 - type: CableApcExtension - components: - - pos: -29.5,52.5 - parent: 30 - type: Transform -- uid: 4749 - type: CableApcExtension - components: - - pos: -29.5,53.5 - parent: 30 - type: Transform -- uid: 4750 - type: CableApcExtension - components: - - pos: -29.5,54.5 - parent: 30 - type: Transform -- uid: 4751 - type: CableApcExtension - components: - - pos: -29.5,55.5 - parent: 30 - type: Transform -- uid: 4752 - type: CableApcExtension - components: - - pos: -29.5,56.5 - parent: 30 - type: Transform -- uid: 4753 - type: CableApcExtension - components: - - pos: -29.5,57.5 - parent: 30 - type: Transform -- uid: 4754 - type: CableApcExtension - components: - - pos: -29.5,58.5 - parent: 30 - type: Transform -- uid: 4755 - type: CableApcExtension - components: - - pos: -29.5,59.5 - parent: 30 - type: Transform -- uid: 4756 - type: CableApcExtension - components: - - pos: -28.5,58.5 - parent: 30 - type: Transform -- uid: 4757 - type: CableApcExtension - components: - - pos: -30.5,57.5 - parent: 30 - type: Transform -- uid: 4758 - type: CableApcExtension - components: - - pos: -32.5,57.5 - parent: 30 - type: Transform -- uid: 4759 - type: CableApcExtension - components: - - pos: -33.5,57.5 - parent: 30 - type: Transform -- uid: 4760 - type: CableApcExtension - components: - - pos: -31.5,57.5 - parent: 30 - type: Transform -- uid: 4761 - type: CableApcExtension - components: - - pos: -34.5,57.5 - parent: 30 - type: Transform -- uid: 4762 - type: CableApcExtension - components: - - pos: -35.5,57.5 - parent: 30 - type: Transform -- uid: 4763 - type: CableApcExtension - components: - - pos: -35.5,58.5 - parent: 30 - type: Transform -- uid: 4764 - type: CableApcExtension - components: - - pos: -35.5,59.5 - parent: 30 - type: Transform -- uid: 4765 - type: CableApcExtension - components: - - pos: -35.5,54.5 - parent: 30 - type: Transform -- uid: 4766 - type: CableApcExtension - components: - - pos: -35.5,55.5 - parent: 30 - type: Transform -- uid: 4767 - type: CableApcExtension - components: - - pos: -35.5,56.5 - parent: 30 - type: Transform -- uid: 4768 - type: CableApcExtension - components: - - pos: -34.5,50.5 - parent: 30 - type: Transform -- uid: 4769 - type: CableApcExtension - components: - - pos: -34.5,50.5 - parent: 30 - type: Transform -- uid: 4770 - type: CableApcExtension - components: - - pos: -33.5,50.5 - parent: 30 - type: Transform -- uid: 4771 - type: CableApcExtension - components: - - pos: -35.5,50.5 - parent: 30 - type: Transform -- uid: 4772 - type: VendingMachineSalvage - components: - - flags: SessionSpecific - name: Salvage Equipment - type: MetaData - - pos: 23.5,-9.5 - parent: 30 - type: Transform -- uid: 4773 - type: LockerWeldingSuppliesFilled - components: - - pos: 49.5,29.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4774 - type: CableApcExtension - components: - - pos: -48.5,51.5 - parent: 30 - type: Transform -- uid: 4775 - type: CableApcExtension - components: - - pos: -49.5,51.5 - parent: 30 - type: Transform -- uid: 4776 - type: CableApcExtension - components: - - pos: -50.5,51.5 - parent: 30 - type: Transform -- uid: 4777 - type: CableApcExtension - components: - - pos: -51.5,51.5 - parent: 30 - type: Transform -- uid: 4778 - type: CableApcExtension - components: - - pos: -51.5,50.5 - parent: 30 - type: Transform -- uid: 4779 - type: CableApcExtension - components: - - pos: -50.5,52.5 - parent: 30 - type: Transform -- uid: 4780 - type: CableApcExtension - components: - - pos: -50.5,53.5 - parent: 30 - type: Transform -- uid: 4781 - type: CableApcExtension - components: - - pos: -51.5,56.5 - parent: 30 - type: Transform -- uid: 4782 - type: CableApcExtension - components: - - pos: -51.5,55.5 - parent: 30 - type: Transform -- uid: 4783 - type: Poweredlight - components: - - pos: -43.5,49.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4784 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,49.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4785 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,55.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4786 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,55.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4787 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,51.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4788 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,51.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4789 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -36.5,58.5 - parent: 30 - type: Transform -- uid: 4790 - type: Poweredlight - components: - - pos: -35.5,60.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4791 - type: Poweredlight - components: - - pos: -27.5,60.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4792 - type: Grille - components: - - pos: -39.5,62.5 - parent: 30 - type: Transform -- uid: 4793 - type: Grille - components: - - pos: -40.5,62.5 - parent: 30 - type: Transform -- uid: 4794 - type: Grille - components: - - pos: -34.5,55.5 - parent: 30 - type: Transform -- uid: 4795 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -30.5,46.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4796 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,51.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4797 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,52.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4798 - type: Grille - components: - - pos: -38.5,62.5 - parent: 30 - type: Transform -- uid: 4799 - type: Grille - components: - - pos: -36.5,62.5 - parent: 30 - type: Transform -- uid: 4800 - type: Grille - components: - - pos: -37.5,62.5 - parent: 30 - type: Transform -- uid: 4801 - type: Poweredlight - components: - - pos: -35.5,44.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4802 - type: Poweredlight - components: - - pos: -30.5,44.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4803 - type: Poweredlight - components: - - pos: -45.5,44.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4804 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,49.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4805 - type: Poweredlight - components: - - pos: -45.5,54.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4806 - type: Poweredlight - components: - - pos: -50.5,53.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4807 - type: Grille - components: - - pos: -41.5,62.5 - parent: 30 - type: Transform -- uid: 4808 - type: Poweredlight - components: - - pos: -44.5,58.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4809 - type: Poweredlight - components: - - pos: -52.5,58.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4810 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,61.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4811 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,61.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4812 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,65.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4813 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,65.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4814 - type: Poweredlight - components: - - pos: -49.5,69.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4815 - type: Poweredlight - components: - - pos: -47.5,69.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4816 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,64.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4817 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,61.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4818 - type: Poweredlight - components: - - pos: -35.5,40.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4819 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,23.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4820 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,23.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4821 - type: Poweredlight - components: - - pos: -44.5,15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4822 - type: Poweredlight - components: - - pos: -39.5,15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4823 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,22.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4825 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,23.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4826 - type: PoweredSmallLight - components: - - pos: -21.5,23.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4827 - type: Poweredlight - components: - - pos: -39.5,33.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4828 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -39.5,29.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4829 - type: CableApcExtension - components: - - pos: -41.5,31.5 - parent: 30 - type: Transform -- uid: 4830 - type: CableApcExtension - components: - - pos: -41.5,30.5 - parent: 30 - type: Transform -- uid: 4831 - type: CableApcExtension - components: - - pos: -41.5,29.5 - parent: 30 - type: Transform -- uid: 4832 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,16.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4833 - type: PoweredSmallLight - components: - - pos: -27.5,44.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4834 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -27.5,41.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4835 - type: Poweredlight - components: - - pos: -22.5,53.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4836 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -22.5,48.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4837 - type: Poweredlight - components: - - pos: -25.5,53.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4838 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -25.5,48.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4839 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,31.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4840 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,1.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4842 - type: FirelockGlass - components: - - pos: -29.5,25.5 - parent: 30 - type: Transform -- uid: 4843 - type: FirelockGlass - components: - - pos: -29.5,26.5 - parent: 30 - type: Transform -- uid: 4844 - type: FirelockGlass - components: - - pos: -29.5,27.5 - parent: 30 - type: Transform -- uid: 4845 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,31.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4846 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,31.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4847 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -11.5,28.5 - parent: 30 - type: Transform -- uid: 4848 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -10.5,28.5 - parent: 30 - type: Transform -- uid: 4849 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -9.5,28.5 - parent: 30 - type: Transform -- uid: 4850 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -8.5,28.5 - parent: 30 - type: Transform -- uid: 4851 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -7.5,28.5 - parent: 30 - type: Transform -- uid: 4852 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -14.5,20.5 - parent: 30 - type: Transform -- uid: 4853 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -31.5,15.5 - parent: 30 - type: Transform -- uid: 4854 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -31.5,16.5 - parent: 30 - type: Transform -- uid: 4855 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -31.5,17.5 - parent: 30 - type: Transform -- uid: 4856 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -31.5,18.5 - parent: 30 - type: Transform -- uid: 4857 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -30.5,19.5 - parent: 30 - type: Transform -- uid: 4858 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -29.5,19.5 - parent: 30 - type: Transform -- uid: 4859 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -28.5,19.5 - parent: 30 - type: Transform -- uid: 4860 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -27.5,19.5 - parent: 30 - type: Transform -- uid: 4861 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -26.5,19.5 - parent: 30 - type: Transform -- uid: 4862 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -19.5,18.5 - parent: 30 - type: Transform -- uid: 4863 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -19.5,19.5 - parent: 30 - type: Transform -- uid: 4864 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -19.5,20.5 - parent: 30 - type: Transform -- uid: 4865 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -5.5,17.5 - parent: 30 - type: Transform -- uid: 4866 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -5.5,19.5 - parent: 30 - type: Transform -- uid: 4867 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -5.5,18.5 - parent: 30 - type: Transform -- uid: 4868 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -5.5,20.5 - parent: 30 - type: Transform -- uid: 4869 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -5.5,21.5 - parent: 30 - type: Transform -- uid: 4870 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -2.5,17.5 - parent: 30 - type: Transform -- uid: 4871 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -1.5,17.5 - parent: 30 - type: Transform -- uid: 4872 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -0.5,17.5 - parent: 30 - type: Transform -- uid: 4873 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -3.5,17.5 - parent: 30 - type: Transform -- uid: 4874 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 0.5,17.5 - parent: 30 - type: Transform -- uid: 4875 - type: FirelockGlass - components: - - pos: 1.5,17.5 - parent: 30 - type: Transform -- uid: 4876 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 2.5,17.5 - parent: 30 - type: Transform -- uid: 4877 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 3.5,17.5 - parent: 30 - type: Transform -- uid: 4878 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 4.5,17.5 - parent: 30 - type: Transform -- uid: 4879 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 5.5,17.5 - parent: 30 - type: Transform -- uid: 4880 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 6.5,17.5 - parent: 30 - type: Transform -- uid: 4881 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -52.5,10.5 - parent: 30 - type: Transform -- uid: 4882 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -51.5,10.5 - parent: 30 - type: Transform -- uid: 4883 - type: PosterContrabandDonutCorp - components: - - pos: -28.5,54.5 - parent: 30 - type: Transform -- uid: 4884 - type: FoodBoxDonut - components: - - pos: -27.495125,54.759884 - parent: 30 - type: Transform -- uid: 4885 - type: ToolboxEmergencyFilled - components: - - pos: -28.4642,56.587437 - parent: 30 - type: Transform -- uid: 4886 - type: CrowbarRed - components: - - pos: -27.542324,58.243687 - parent: 30 - type: Transform -- uid: 4887 - type: ToolboxEmergencyFilled - components: - - pos: -44.51616,57.661163 - parent: 30 - type: Transform -- uid: 4888 - type: FirelockGlass - components: - - pos: -46.5,62.5 - parent: 30 - type: Transform -- uid: 4889 - type: FirelockGlass - components: - - pos: -50.5,62.5 - parent: 30 - type: Transform -- uid: 4890 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -48.5,54.5 - parent: 30 - type: Transform -- uid: 4891 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -47.5,54.5 - parent: 30 - type: Transform -- uid: 4892 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -46.5,54.5 - parent: 30 - type: Transform -- uid: 4893 - type: FirelockEdge - components: - - pos: -50.5,35.5 - parent: 30 - type: Transform -- uid: 4894 - type: FirelockEdge - components: - - pos: -49.5,35.5 - parent: 30 - type: Transform -- uid: 4895 - type: FirelockEdge - components: - - pos: -48.5,35.5 - parent: 30 - type: Transform -- uid: 4896 - type: WallReinforced - components: - - pos: -22.5,29.5 - parent: 30 - type: Transform -- uid: 4897 - type: WallReinforced - components: - - pos: -21.5,29.5 - parent: 30 - type: Transform -- uid: 4898 - type: WallReinforced - components: - - pos: -20.5,29.5 - parent: 30 - type: Transform -- uid: 4899 - type: WallReinforced - components: - - pos: -20.5,28.5 - parent: 30 - type: Transform -- uid: 4900 - type: WallReinforced - components: - - pos: -19.5,28.5 - parent: 30 - type: Transform -- uid: 4901 - type: WallReinforced - components: - - pos: -18.5,28.5 - parent: 30 - type: Transform -- uid: 4902 - type: WallReinforced - components: - - pos: -17.5,28.5 - parent: 30 - type: Transform -- uid: 4903 - type: WallReinforced - components: - - pos: -16.5,28.5 - parent: 30 - type: Transform -- uid: 4904 - type: WallReinforced - components: - - pos: -12.5,28.5 - parent: 30 - type: Transform -- uid: 4905 - type: WallReinforced - components: - - pos: -13.5,28.5 - parent: 30 - type: Transform -- uid: 4906 - type: WallReinforced - components: - - pos: -13.5,29.5 - parent: 30 - type: Transform -- uid: 4907 - type: WallReinforced - components: - - pos: -13.5,30.5 - parent: 30 - type: Transform -- uid: 4908 - type: ClothingNeckScarfStripedBlue - components: - - pos: -23.582933,-21.458326 - parent: 30 - type: Transform -- uid: 4909 - type: WallReinforced - components: - - pos: -6.5,28.5 - parent: 30 - type: Transform -- uid: 4910 - type: WallReinforced - components: - - pos: -5.5,28.5 - parent: 30 - type: Transform -- uid: 4911 - type: WallReinforced - components: - - pos: -5.5,29.5 - parent: 30 - type: Transform -- uid: 4912 - type: WallReinforced - components: - - pos: -5.5,30.5 - parent: 30 - type: Transform -- uid: 4913 - type: SignNanotrasen1 - components: - - pos: -11.5,30.5 - parent: 30 - type: Transform -- uid: 4914 - type: WallReinforced - components: - - pos: -13.5,31.5 - parent: 30 - type: Transform -- uid: 4915 - type: ShuttersNormalOpen - components: - - pos: 1.5,5.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver -- uid: 4916 - type: WallReinforced - components: - - pos: -13.5,33.5 - parent: 30 - type: Transform -- uid: 4917 - type: WallReinforced - components: - - pos: -13.5,34.5 - parent: 30 - type: Transform -- uid: 4918 - type: WallReinforced - components: - - pos: -13.5,35.5 - parent: 30 - type: Transform -- uid: 4919 - type: WallReinforced - components: - - pos: -5.5,31.5 - parent: 30 - type: Transform -- uid: 4920 - type: AirlockCommandGlassLocked - components: - - pos: -9.5,38.5 - parent: 30 - type: Transform -- uid: 4921 - type: WallReinforced - components: - - pos: -5.5,33.5 - parent: 30 - type: Transform -- uid: 4922 - type: WallReinforced - components: - - pos: -5.5,34.5 - parent: 30 - type: Transform -- uid: 4923 - type: WallReinforced - components: - - pos: -5.5,35.5 - parent: 30 - type: Transform -- uid: 4924 - type: AirlockCommandGlassLocked - components: - - pos: -4.5,34.5 - parent: 30 - type: Transform -- uid: 4925 - type: AirlockCommandGlassLocked - components: - - pos: -14.5,34.5 - parent: 30 - type: Transform -- uid: 4926 - type: AirlockCommandGlassLocked - components: - - pos: -15.5,34.5 - parent: 30 - type: Transform -- uid: 4927 - type: AirlockCommandLocked - components: - - pos: -5.5,32.5 - parent: 30 - type: Transform -- uid: 4928 - type: AirlockCommandGlassLocked - components: - - pos: -15.5,28.5 - parent: 30 - type: Transform -- uid: 4929 - type: AirlockCommandGlassLocked - components: - - pos: -3.5,28.5 - parent: 30 - type: Transform -- uid: 4930 - type: AirlockCommandGlassLocked - components: - - pos: -4.5,28.5 - parent: 30 - type: Transform -- uid: 4931 - type: WallReinforced - components: - - pos: -2.5,30.5 - parent: 30 - type: Transform -- uid: 4932 - type: WallReinforced - components: - - pos: -16.5,29.5 - parent: 30 - type: Transform -- uid: 4933 - type: WallReinforced - components: - - pos: -16.5,30.5 - parent: 30 - type: Transform -- uid: 4934 - type: WallReinforced - components: - - pos: -16.5,31.5 - parent: 30 - type: Transform -- uid: 4935 - type: AirlockCaptainLocked - components: - - pos: -22.5,38.5 - parent: 30 - type: Transform -- uid: 4936 - type: WallReinforced - components: - - pos: -16.5,33.5 - parent: 30 - type: Transform -- uid: 4937 - type: WallReinforced - components: - - pos: -16.5,34.5 - parent: 30 - type: Transform -- uid: 4938 - type: WallReinforced - components: - - pos: -16.5,35.5 - parent: 30 - type: Transform -- uid: 4939 - type: WallReinforced - components: - - pos: -16.5,32.5 - parent: 30 - type: Transform -- uid: 4940 - type: WallReinforced - components: - - pos: -16.5,36.5 - parent: 30 - type: Transform -- uid: 4941 - type: WallReinforced - components: - - pos: -16.5,38.5 - parent: 30 - type: Transform -- uid: 4942 - type: WallReinforced - components: - - pos: -17.5,38.5 - parent: 30 - type: Transform -- uid: 4943 - type: WallReinforced - components: - - pos: -18.5,38.5 - parent: 30 - type: Transform -- uid: 4944 - type: WallReinforced - components: - - pos: -19.5,38.5 - parent: 30 - type: Transform -- uid: 4945 - type: WallReinforced - components: - - pos: -20.5,38.5 - parent: 30 - type: Transform -- uid: 4946 - type: WallReinforced - components: - - pos: -21.5,38.5 - parent: 30 - type: Transform -- uid: 4947 - type: WallReinforced - components: - - pos: -23.5,38.5 - parent: 30 - type: Transform -- uid: 4948 - type: WallReinforced - components: - - pos: -24.5,38.5 - parent: 30 - type: Transform -- uid: 4949 - type: AirlockCaptainLocked - components: - - pos: -26.5,38.5 - parent: 30 - type: Transform -- uid: 4950 - type: WallSolid - components: - - pos: -27.5,40.5 - parent: 30 - type: Transform -- uid: 4951 - type: WallSolid - components: - - pos: -28.5,40.5 - parent: 30 - type: Transform -- uid: 4952 - type: WallReinforced - components: - - pos: -21.5,28.5 - parent: 30 - type: Transform -- uid: 4953 - type: Lamp - components: - - pos: -22.461006,36.440132 - parent: 30 - type: Transform -- uid: 4954 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -23.5,39.5 - parent: 30 - type: Transform -- uid: 4955 - type: ShuttersNormalOpen - components: - - pos: -22.5,40.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20391 - type: SignalReceiver -- uid: 4956 - type: TableWood - components: - - pos: -22.5,36.5 - parent: 30 - type: Transform -- uid: 4957 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: -23.5,35.5 - parent: 30 - type: Transform -- uid: 4958 - type: WallReinforced - components: - - pos: -22.5,30.5 - parent: 30 - type: Transform -- uid: 4959 - type: WallReinforced - components: - - pos: -22.5,32.5 - parent: 30 - type: Transform -- uid: 4960 - type: WallReinforced - components: - - pos: -22.5,32.5 - parent: 30 - type: Transform -- uid: 4961 - type: AirlockCommandLocked - components: - - pos: -21.5,39.5 - parent: 30 - type: Transform -- uid: 4962 - type: WallReinforced - components: - - pos: -22.5,33.5 - parent: 30 - type: Transform -- uid: 4963 - type: AirlockCommandLocked - components: - - pos: -22.5,41.5 - parent: 30 - type: Transform -- uid: 4964 - type: WallReinforced - components: - - pos: -22.5,31.5 - parent: 30 - type: Transform -- uid: 4965 - type: WallReinforced - components: - - pos: -17.5,29.5 - parent: 30 - type: Transform -- uid: 4966 - type: WallReinforced - components: - - pos: -19.5,29.5 - parent: 30 - type: Transform -- uid: 4967 - type: WallReinforced - components: - - pos: -19.5,29.5 - parent: 30 - type: Transform -- uid: 4968 - type: WallReinforced - components: - - pos: -18.5,29.5 - parent: 30 - type: Transform -- uid: 4969 - type: AirlockCommandGlassLocked - components: - - pos: -17.5,39.5 - parent: 30 - type: Transform -- uid: 4970 - type: WallReinforced - components: - - pos: -24.5,39.5 - parent: 30 - type: Transform -- uid: 4971 - type: WallReinforced - components: - - pos: -23.5,40.5 - parent: 30 - type: Transform -- uid: 4972 - type: WallReinforced - components: - - pos: -23.5,41.5 - parent: 30 - type: Transform -- uid: 4973 - type: CableMV - components: - - pos: -24.5,41.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4974 - type: WallReinforced - components: - - pos: -21.5,40.5 - parent: 30 - type: Transform -- uid: 4975 - type: WallReinforced - components: - - pos: -21.5,41.5 - parent: 30 - type: Transform -- uid: 4976 - type: WallReinforced - components: - - pos: -17.5,40.5 - parent: 30 - type: Transform -- uid: 4977 - type: WallReinforced - components: - - pos: -24.5,40.5 - parent: 30 - type: Transform -- uid: 4978 - type: Pen - components: - - pos: -22.273506,35.752632 - parent: 30 - type: Transform -- uid: 4979 - type: WallReinforced - components: - - pos: -22.5,28.5 - parent: 30 - type: Transform -- uid: 4980 - type: WallSolid - components: - - pos: -21.5,33.5 - parent: 30 - type: Transform -- uid: 4981 - type: WallSolid - components: - - pos: -19.5,33.5 - parent: 30 - type: Transform -- uid: 4982 - type: WallSolid - components: - - pos: -18.5,33.5 - parent: 30 - type: Transform -- uid: 4983 - type: WallSolid - components: - - pos: -17.5,33.5 - parent: 30 - type: Transform -- uid: 4984 - type: Fireplace - components: - - pos: -18.5,32.5 - parent: 30 - type: Transform -- uid: 4985 - type: Bed - components: - - pos: -17.5,31.5 - parent: 30 - type: Transform -- uid: 4986 - type: BedsheetCaptain - components: - - pos: -17.5,31.5 - parent: 30 - type: Transform -- uid: 4987 - type: LockerCaptainFilled - components: - - pos: -17.5,32.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4988 - type: TableWood - components: - - pos: -20.5,30.5 - parent: 30 - type: Transform -- uid: 4989 - type: Dresser - components: - - pos: -17.5,30.5 - parent: 30 - type: Transform -- uid: 4990 - type: TableWood - components: - - pos: -21.5,30.5 - parent: 30 - type: Transform -- uid: 4991 - type: TableWood - components: - - pos: -21.5,31.5 - parent: 30 - type: Transform -- uid: 4992 - type: TableWood - components: - - pos: -19.5,30.5 - parent: 30 - type: Transform -- uid: 4993 - type: ComfyChair - components: - - pos: -20.5,31.5 - parent: 30 - type: Transform -- uid: 4994 - type: LampGold - components: - - pos: -21.514103,31.706543 - parent: 30 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 4995 - type: AirlockCaptainLocked - components: - - pos: -20.5,33.5 - parent: 30 - type: Transform -- uid: 4996 - type: CarpetBlue - components: - - pos: -17.5,31.5 - parent: 30 - type: Transform -- uid: 4997 - type: CarpetBlue - components: - - pos: -18.5,31.5 - parent: 30 - type: Transform -- uid: 4998 - type: CarpetBlue - components: - - pos: -18.5,30.5 - parent: 30 - type: Transform -- uid: 4999 - type: CarpetBlue - components: - - pos: -17.5,30.5 - parent: 30 - type: Transform -- uid: 5000 - type: DogBed - components: - - pos: -18.5,30.5 - parent: 30 - type: Transform -- uid: 5001 - type: SpawnPointCaptain - components: - - pos: -18.5,31.5 - parent: 30 - type: Transform -- uid: 5002 - type: SpawnMobFoxRenault - components: - - pos: -19.5,31.5 - parent: 30 - type: Transform -- uid: 5003 - type: RandomFoodMeal - components: - - pos: -10.5,8.5 - parent: 30 - type: Transform -- uid: 5004 - type: PinpointerNuclear - components: - - pos: -19.599657,30.52915 - parent: 30 - type: Transform -- uid: 5005 - type: ComfyChair - components: - - pos: -18.5,36.5 - parent: 30 - type: Transform -- uid: 5006 - type: GasPipeStraight - components: - - pos: -19.5,33.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5007 - type: PhoneInstrument - components: - - pos: -17.480167,35.60341 - parent: 30 - type: Transform -- uid: 5008 - type: AirlockCaptainGlassLocked - components: - - pos: -23.5,37.5 - parent: 30 - type: Transform -- uid: 5009 - type: ComputerComms - components: - - rot: -1.5707963267948966 rad - pos: -17.5,34.5 - parent: 30 - type: Transform -- uid: 5010 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -18.5,34.5 - parent: 30 - type: Transform -- uid: 5011 - type: CarpetBlue - components: - - rot: 3.141592653589793 rad - pos: -17.5,34.5 - parent: 30 - type: Transform -- uid: 5012 - type: CarpetBlue - components: - - rot: 3.141592653589793 rad - pos: -18.5,34.5 - parent: 30 - type: Transform -- uid: 5013 - type: CarpetBlue - components: - - rot: 3.141592653589793 rad - pos: -19.5,34.5 - parent: 30 - type: Transform -- uid: 5014 - type: GasPipeStraight - components: - - pos: -19.5,34.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5015 - type: CarpetBlue - components: - - rot: 3.141592653589793 rad - pos: -18.5,35.5 - parent: 30 - type: Transform -- uid: 5016 - type: CarpetBlue - components: - - rot: 3.141592653589793 rad - pos: -17.5,35.5 - parent: 30 - type: Transform -- uid: 5017 - type: Window - components: - - pos: -23.5,36.5 - parent: 30 - type: Transform -- uid: 5018 - type: Grille - components: - - pos: -23.5,36.5 - parent: 30 - type: Transform -- uid: 5019 - type: TableWood - components: - - pos: -17.5,35.5 - parent: 30 - type: Transform -- uid: 5020 - type: TableWood - components: - - pos: -22.5,35.5 - parent: 30 - type: Transform -- uid: 5021 - type: TableWood - components: - - pos: -22.5,34.5 - parent: 30 - type: Transform -- uid: 5022 - type: PottedPlant18 - components: - - pos: -17.5,36.5 - parent: 30 - type: Transform -- uid: 5023 - type: LampGold - components: - - pos: -19.477777,35.681534 - parent: 30 - type: Transform -- uid: 5024 - type: ChairOfficeDark - components: - - pos: -21.5,35.5 - parent: 30 - type: Transform -- uid: 5025 - type: ToiletEmpty - components: - - rot: -1.5707963267948966 rad - pos: -25.5,39.5 - parent: 30 - type: Transform -- uid: 5026 - type: Sink - components: - - pos: -27.5,39.5 - parent: 30 - type: Transform -- uid: 5027 - type: SoapNT - components: - - pos: -26.55157,39.419315 - parent: 30 - type: Transform -- uid: 5028 - type: ToyRubberDuck - components: - - pos: -28.52032,39.43494 - parent: 30 - type: Transform -- uid: 5029 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -28.5,39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5030 - type: HospitalCurtainsOpen - components: - - pos: -28.5,39.5 - parent: 30 - type: Transform -- uid: 5031 - type: Poweredlight - components: - - pos: -26.5,39.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5032 - type: ComputerId - components: - - pos: -18.5,35.5 - parent: 30 - type: Transform -- uid: 5033 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,60.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5034 - type: PoweredSmallLight - components: - - pos: 12.5,61.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5035 - type: PottedPlantRandom - components: - - pos: -21.5,32.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 5036 - type: AirlockCommandGlassLocked - components: - - pos: -14.5,28.5 - parent: 30 - type: Transform -- uid: 5037 - type: TableWood - components: - - pos: -26.5,35.5 - parent: 30 - type: Transform -- uid: 5038 - type: TableWood - components: - - pos: -26.5,36.5 - parent: 30 - type: Transform -- uid: 5039 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -27.5,35.5 - parent: 30 - type: Transform -- uid: 5040 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -27.5,36.5 - parent: 30 - type: Transform -- uid: 5041 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -25.5,36.5 - parent: 30 - type: Transform -- uid: 5042 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -25.5,35.5 - parent: 30 - type: Transform -- uid: 5043 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: -27.5,35.5 - parent: 30 - type: Transform -- uid: 5044 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: -27.5,36.5 - parent: 30 - type: Transform -- uid: 5045 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: -26.5,36.5 - parent: 30 - type: Transform -- uid: 5046 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: -26.5,35.5 - parent: 30 - type: Transform -- uid: 5047 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: -25.5,35.5 - parent: 30 - type: Transform -- uid: 5048 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: -25.5,36.5 - parent: 30 - type: Transform -- uid: 5049 - type: FoodBoxDonut - components: - - pos: -26.48981,36.584568 - parent: 30 - type: Transform -- uid: 5050 - type: BoxFolderBlack - components: - - pos: -22.461006,35.471382 - parent: 30 - type: Transform -- uid: 5051 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -23.5,40.5 - parent: 30 - type: Transform -- uid: 5052 - type: ComputerTelevision - components: - - pos: -19.5,32.5 - parent: 30 - type: Transform -- uid: 5053 - type: CarpetPurple - components: - - pos: -22.5,34.5 - parent: 30 - type: Transform -- uid: 5054 - type: CarpetPurple - components: - - pos: -21.5,36.5 - parent: 30 - type: Transform -- uid: 5055 - type: RandomFoodMeal - components: - - pos: -10.5,11.5 - parent: 30 - type: Transform -- uid: 5056 - type: DrinkGlass - components: - - pos: -26.43374,35.577877 - parent: 30 - type: Transform -- uid: 5057 - type: DrinkGlass - components: - - pos: -26.357634,35.734127 - parent: 30 - type: Transform -- uid: 5058 - type: CarpetBlue - components: - - pos: -20.5,31.5 - parent: 30 - type: Transform -- uid: 5059 - type: CarpetPurple - components: - - pos: -21.5,35.5 - parent: 30 - type: Transform -- uid: 5060 - type: BriefcaseBrown - components: - - pos: -22.523506,34.721382 - parent: 30 - type: Transform -- uid: 5061 - type: CarpetPurple - components: - - pos: -21.5,34.5 - parent: 30 - type: Transform -- uid: 5062 - type: ClothingShoesLeather - components: - - pos: -21.532825,34.204502 - parent: 30 - type: Transform -- uid: 5063 - type: ClothingShoesColorWhite - components: - - pos: -27.510633,39.153927 - parent: 30 - type: Transform -- uid: 5064 - type: CarpetPurple - components: - - pos: -22.5,35.5 - parent: 30 - type: Transform -- uid: 5065 - type: CarpetPurple - components: - - pos: -22.5,36.5 - parent: 30 - type: Transform -- uid: 5066 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: -19.5,34.5 - parent: 30 - type: Transform -- uid: 5067 - type: AirlockCommandGlassLocked - components: - - pos: -21.5,46.5 - parent: 30 - type: Transform -- uid: 5068 - type: Catwalk - components: - - pos: -20.5,46.5 - parent: 30 - type: Transform -- uid: 5069 - type: AirlockExternalLocked - components: - - pos: -18.5,46.5 - parent: 30 - type: Transform -- uid: 5070 - type: ReinforcedWindow - components: - - pos: -18.5,47.5 - parent: 30 - type: Transform -- uid: 5071 - type: ReinforcedWindow - components: - - pos: -18.5,45.5 - parent: 30 - type: Transform -- uid: 5072 - type: ReinforcedWindow - components: - - pos: -19.5,45.5 - parent: 30 - type: Transform -- uid: 5073 - type: ReinforcedWindow - components: - - pos: -20.5,45.5 - parent: 30 - type: Transform -- uid: 5074 - type: ReinforcedWindow - components: - - pos: -19.5,47.5 - parent: 30 - type: Transform -- uid: 5075 - type: Grille - components: - - pos: -20.5,45.5 - parent: 30 - type: Transform -- uid: 5076 - type: Grille - components: - - pos: -19.5,45.5 - parent: 30 - type: Transform -- uid: 5077 - type: Grille - components: - - pos: -18.5,45.5 - parent: 30 - type: Transform -- uid: 5078 - type: Grille - components: - - pos: -19.5,47.5 - parent: 30 - type: Transform -- uid: 5079 - type: Grille - components: - - pos: -18.5,47.5 - parent: 30 - type: Transform -- uid: 5080 - type: ReinforcedWindow - components: - - pos: -21.5,45.5 - parent: 30 - type: Transform -- uid: 5081 - type: Grille - components: - - pos: -21.5,45.5 - parent: 30 - type: Transform -- uid: 5082 - type: WallReinforced - components: - - pos: -21.5,42.5 - parent: 30 - type: Transform -- uid: 5083 - type: WallReinforced - components: - - pos: -21.5,43.5 - parent: 30 - type: Transform -- uid: 5084 - type: WallReinforced - components: - - pos: -21.5,44.5 - parent: 30 - type: Transform -- uid: 5085 - type: CableHV - components: - - pos: -24.5,41.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5086 - type: WallReinforced - components: - - pos: -24.5,43.5 - parent: 30 - type: Transform -- uid: 5087 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: -23.5,42.5 - parent: 30 - type: Transform -- uid: 5088 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -23.5,43.5 - parent: 30 - type: Transform -- uid: 5089 - type: CableHV - components: - - pos: -35.5,15.5 - parent: 30 - type: Transform -- uid: 5090 - type: CableHV - components: - - pos: -34.5,15.5 - parent: 30 - type: Transform -- uid: 5091 - type: CableHV - components: - - pos: -33.5,15.5 - parent: 30 - type: Transform -- uid: 5092 - type: CableHV - components: - - pos: -32.5,15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5093 - type: CableHV - components: - - pos: -31.5,15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5094 - type: CableHV - components: - - pos: -31.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5095 - type: CableHV - components: - - pos: -31.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5096 - type: CableHV - components: - - pos: -31.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5097 - type: CableHV - components: - - pos: -31.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5098 - type: CableHV - components: - - pos: -30.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5099 - type: CableHV - components: - - pos: -29.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5100 - type: CableHV - components: - - pos: -28.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5101 - type: CableHV - components: - - pos: -27.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5102 - type: CableHV - components: - - pos: -26.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5103 - type: CableHV - components: - - pos: -25.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5104 - type: CableHV - components: - - pos: -24.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5105 - type: CableHV - components: - - pos: -23.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5106 - type: CableHV - components: - - pos: -23.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5107 - type: CableHV - components: - - pos: -22.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5108 - type: CableHV - components: - - pos: -21.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5109 - type: CableHV - components: - - pos: -20.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5110 - type: CableHV - components: - - pos: -19.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5111 - type: CableHV - components: - - pos: -18.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5112 - type: CableHV - components: - - pos: -17.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5113 - type: CableHV - components: - - pos: -16.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5114 - type: CableHV - components: - - pos: -15.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5115 - type: CableHV - components: - - pos: -14.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5116 - type: CableHV - components: - - pos: -14.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5117 - type: CableHV - components: - - pos: -14.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5118 - type: CableHV - components: - - pos: -14.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5119 - type: CableHV - components: - - pos: -14.5,24.5 - parent: 30 - type: Transform -- uid: 5120 - type: CableHV - components: - - pos: -14.5,25.5 - parent: 30 - type: Transform -- uid: 5121 - type: CableHV - components: - - pos: -14.5,26.5 - parent: 30 - type: Transform -- uid: 5122 - type: CableHV - components: - - pos: -14.5,27.5 - parent: 30 - type: Transform -- uid: 5123 - type: CableHV - components: - - pos: -14.5,28.5 - parent: 30 - type: Transform -- uid: 5124 - type: CableHV - components: - - pos: -14.5,29.5 - parent: 30 - type: Transform -- uid: 5125 - type: CableHV - components: - - pos: -14.5,30.5 - parent: 30 - type: Transform -- uid: 5126 - type: CableHV - components: - - pos: -14.5,31.5 - parent: 30 - type: Transform -- uid: 5127 - type: CableHV - components: - - pos: -14.5,32.5 - parent: 30 - type: Transform -- uid: 5128 - type: CableHV - components: - - pos: -14.5,33.5 - parent: 30 - type: Transform -- uid: 5129 - type: CableHV - components: - - pos: -14.5,34.5 - parent: 30 - type: Transform -- uid: 5130 - type: CableHV - components: - - pos: -14.5,35.5 - parent: 30 - type: Transform -- uid: 5131 - type: CableHV - components: - - pos: -14.5,36.5 - parent: 30 - type: Transform -- uid: 5132 - type: CableHV - components: - - pos: -14.5,37.5 - parent: 30 - type: Transform -- uid: 5133 - type: CableHV - components: - - pos: -15.5,37.5 - parent: 30 - type: Transform -- uid: 5134 - type: CableHV - components: - - pos: -16.5,37.5 - parent: 30 - type: Transform -- uid: 5135 - type: CableHV - components: - - pos: -17.5,37.5 - parent: 30 - type: Transform -- uid: 5136 - type: CableHV - components: - - pos: -18.5,37.5 - parent: 30 - type: Transform -- uid: 5137 - type: CableHV - components: - - pos: -20.5,37.5 - parent: 30 - type: Transform -- uid: 5138 - type: CableHV - components: - - pos: -19.5,37.5 - parent: 30 - type: Transform -- uid: 5139 - type: CableHV - components: - - pos: -21.5,37.5 - parent: 30 - type: Transform -- uid: 5140 - type: CableHV - components: - - pos: -22.5,37.5 - parent: 30 - type: Transform -- uid: 5141 - type: CableHV - components: - - pos: -22.5,38.5 - parent: 30 - type: Transform -- uid: 5142 - type: CableHV - components: - - pos: -22.5,39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5143 - type: CableHV - components: - - pos: -22.5,40.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5144 - type: CableHV - components: - - pos: -22.5,41.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5145 - type: CableHV - components: - - pos: -22.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5146 - type: CableHV - components: - - pos: -23.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5147 - type: CableHV - components: - - pos: -24.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5148 - type: CableHV - components: - - pos: -49.5,43.5 - parent: 30 - type: Transform -- uid: 5149 - type: CableHV - components: - - pos: -48.5,43.5 - parent: 30 - type: Transform -- uid: 5150 - type: CableHV - components: - - pos: -47.5,43.5 - parent: 30 - type: Transform -- uid: 5151 - type: CableHV - components: - - pos: -46.5,43.5 - parent: 30 - type: Transform -- uid: 5152 - type: CableHV - components: - - pos: -46.5,44.5 - parent: 30 - type: Transform -- uid: 5153 - type: CableHV - components: - - pos: -45.5,44.5 - parent: 30 - type: Transform -- uid: 5154 - type: CableHV - components: - - pos: -43.5,44.5 - parent: 30 - type: Transform -- uid: 5155 - type: CableHV - components: - - pos: -44.5,44.5 - parent: 30 - type: Transform -- uid: 5156 - type: CableHV - components: - - pos: -42.5,44.5 - parent: 30 - type: Transform -- uid: 5157 - type: CableHV - components: - - pos: -41.5,44.5 - parent: 30 - type: Transform -- uid: 5158 - type: CableHV - components: - - pos: -40.5,44.5 - parent: 30 - type: Transform -- uid: 5159 - type: CableHV - components: - - pos: -39.5,44.5 - parent: 30 - type: Transform -- uid: 5160 - type: CableHV - components: - - pos: -38.5,44.5 - parent: 30 - type: Transform -- uid: 5161 - type: CableHV - components: - - pos: -37.5,44.5 - parent: 30 - type: Transform -- uid: 5162 - type: CableHV - components: - - pos: -36.5,44.5 - parent: 30 - type: Transform -- uid: 5163 - type: CableHV - components: - - pos: -35.5,44.5 - parent: 30 - type: Transform -- uid: 5164 - type: CableHV - components: - - pos: -34.5,44.5 - parent: 30 - type: Transform -- uid: 5165 - type: CableHV - components: - - pos: -33.5,44.5 - parent: 30 - type: Transform -- uid: 5166 - type: CableHV - components: - - pos: -32.5,44.5 - parent: 30 - type: Transform -- uid: 5167 - type: CableHV - components: - - pos: -32.5,45.5 - parent: 30 - type: Transform -- uid: 5168 - type: CableHV - components: - - pos: -32.5,46.5 - parent: 30 - type: Transform -- uid: 5169 - type: CableHV - components: - - pos: -30.5,46.5 - parent: 30 - type: Transform -- uid: 5170 - type: CableHV - components: - - pos: -31.5,46.5 - parent: 30 - type: Transform -- uid: 5171 - type: CableHV - components: - - pos: -29.5,46.5 - parent: 30 - type: Transform -- uid: 5172 - type: CableHV - components: - - pos: -28.5,46.5 - parent: 30 - type: Transform -- uid: 5173 - type: CableHV - components: - - pos: -27.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5174 - type: CableHV - components: - - pos: -26.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5175 - type: CableHV - components: - - pos: -25.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5176 - type: CableHV - components: - - pos: -24.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5177 - type: CableHV - components: - - pos: -23.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5178 - type: CableHV - components: - - pos: -22.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5179 - type: CableHV - components: - - pos: -22.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5180 - type: CableHV - components: - - pos: -22.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5181 - type: CableHV - components: - - pos: -22.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5182 - type: CableMV - components: - - pos: -24.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5183 - type: CableMV - components: - - pos: -23.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5184 - type: CableMV - components: - - pos: -22.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5185 - type: CableMV - components: - - pos: -22.5,41.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5186 - type: CableMV - components: - - pos: -22.5,40.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5187 - type: CableMV - components: - - pos: -23.5,40.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5188 - type: CableApcExtension - components: - - pos: -23.5,40.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5189 - type: CableApcExtension - components: - - pos: -22.5,40.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5190 - type: CableApcExtension - components: - - pos: -22.5,41.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5191 - type: CableApcExtension - components: - - pos: -22.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5192 - type: CableApcExtension - components: - - pos: -22.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5193 - type: CableApcExtension - components: - - pos: -22.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5194 - type: CableApcExtension - components: - - pos: -22.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5195 - type: CableApcExtension - components: - - pos: -22.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5196 - type: CableApcExtension - components: - - pos: -23.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5197 - type: CableApcExtension - components: - - pos: -24.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5198 - type: CableApcExtension - components: - - pos: -25.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5199 - type: CableApcExtension - components: - - pos: -26.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5200 - type: CableApcExtension - components: - - pos: -27.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5201 - type: CableApcExtension - components: - - pos: -21.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5202 - type: CableApcExtension - components: - - pos: -20.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5203 - type: CableApcExtension - components: - - pos: -19.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5204 - type: CableApcExtension - components: - - pos: -22.5,39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5205 - type: CableApcExtension - components: - - pos: -22.5,38.5 - parent: 30 - type: Transform -- uid: 5206 - type: CableApcExtension - components: - - pos: -22.5,37.5 - parent: 30 - type: Transform -- uid: 5207 - type: CableApcExtension - components: - - pos: -23.5,37.5 - parent: 30 - type: Transform -- uid: 5208 - type: CableApcExtension - components: - - pos: -24.5,37.5 - parent: 30 - type: Transform -- uid: 5209 - type: CableApcExtension - components: - - pos: -25.5,37.5 - parent: 30 - type: Transform -- uid: 5210 - type: CableApcExtension - components: - - pos: -26.5,37.5 - parent: 30 - type: Transform -- uid: 5211 - type: CableApcExtension - components: - - pos: -26.5,38.5 - parent: 30 - type: Transform -- uid: 5212 - type: CableApcExtension - components: - - pos: -26.5,39.5 - parent: 30 - type: Transform -- uid: 5213 - type: CableApcExtension - components: - - pos: -27.5,39.5 - parent: 30 - type: Transform -- uid: 5214 - type: CableApcExtension - components: - - pos: -25.5,39.5 - parent: 30 - type: Transform -- uid: 5215 - type: CableApcExtension - components: - - pos: -26.5,36.5 - parent: 30 - type: Transform -- uid: 5216 - type: CableApcExtension - components: - - pos: -26.5,35.5 - parent: 30 - type: Transform -- uid: 5217 - type: CableApcExtension - components: - - pos: -21.5,37.5 - parent: 30 - type: Transform -- uid: 5218 - type: CableApcExtension - components: - - pos: -20.5,37.5 - parent: 30 - type: Transform -- uid: 5219 - type: CableApcExtension - components: - - pos: -19.5,37.5 - parent: 30 - type: Transform -- uid: 5220 - type: CableApcExtension - components: - - pos: -18.5,37.5 - parent: 30 - type: Transform -- uid: 5221 - type: CableApcExtension - components: - - pos: -17.5,37.5 - parent: 30 - type: Transform -- uid: 5222 - type: CableApcExtension - components: - - pos: -20.5,36.5 - parent: 30 - type: Transform -- uid: 5223 - type: CableApcExtension - components: - - pos: -20.5,35.5 - parent: 30 - type: Transform -- uid: 5224 - type: CableApcExtension - components: - - pos: -20.5,34.5 - parent: 30 - type: Transform -- uid: 5225 - type: CableApcExtension - components: - - pos: -19.5,34.5 - parent: 30 - type: Transform -- uid: 5226 - type: CableApcExtension - components: - - pos: -18.5,34.5 - parent: 30 - type: Transform -- uid: 5227 - type: CableApcExtension - components: - - pos: -17.5,34.5 - parent: 30 - type: Transform -- uid: 5228 - type: CableApcExtension - components: - - pos: -21.5,34.5 - parent: 30 - type: Transform -- uid: 5229 - type: CableApcExtension - components: - - pos: -22.5,34.5 - parent: 30 - type: Transform -- uid: 5230 - type: CableApcExtension - components: - - pos: -20.5,32.5 - parent: 30 - type: Transform -- uid: 5231 - type: CableApcExtension - components: - - pos: -20.5,33.5 - parent: 30 - type: Transform -- uid: 5232 - type: CableApcExtension - components: - - pos: -20.5,31.5 - parent: 30 - type: Transform -- uid: 5233 - type: CableApcExtension - components: - - pos: -18.5,31.5 - parent: 30 - type: Transform -- uid: 5234 - type: CableApcExtension - components: - - pos: -19.5,31.5 - parent: 30 - type: Transform -- uid: 5235 - type: CableApcExtension - components: - - pos: -21.5,31.5 - parent: 30 - type: Transform -- uid: 5236 - type: CableApcExtension - components: - - pos: -17.5,31.5 - parent: 30 - type: Transform -- uid: 5237 - type: CableApcExtension - components: - - pos: -19.5,30.5 - parent: 30 - type: Transform -- uid: 5238 - type: DisposalUnit - components: - - name: Telecomms Tube - type: MetaData - - pos: -18.5,-47.5 - parent: 30 - type: Transform -- uid: 5239 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,31.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5240 - type: CableHV - components: - - pos: -24.5,-58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5241 - type: PoweredSmallLight - components: - - pos: -27.5,37.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5242 - type: PoweredSmallLight - components: - - pos: -24.5,37.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5243 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,40.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5244 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,44.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5245 - type: PoweredSmallLight - components: - - pos: -26.5,46.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5246 - type: PoweredSmallLight - components: - - pos: -18.5,37.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5247 - type: PoweredSmallLight - components: - - pos: -21.5,37.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5248 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -27.5,41.5 - parent: 30 - type: Transform -- uid: 5249 - type: WindowTintedDirectional - components: - - rot: 3.141592653589793 rad - pos: -26.5,41.5 - parent: 30 - type: Transform -- uid: 5250 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: -28.5,41.5 - parent: 30 - type: Transform -- uid: 5251 - type: PosterLegitNanotrasenLogo - components: - - pos: -22.5,32.5 - parent: 30 - type: Transform -- uid: 5252 - type: PosterLegitNanotrasenLogo - components: - - pos: -20.5,38.5 - parent: 30 - type: Transform -- uid: 5253 - type: SignBridge - components: - - pos: -16.5,28.5 - parent: 30 - type: Transform -- uid: 5254 - type: Grille - components: - - pos: -7.5,28.5 - parent: 30 - type: Transform -- uid: 5255 - type: Grille - components: - - pos: -8.5,28.5 - parent: 30 - type: Transform -- uid: 5256 - type: Grille - components: - - pos: -9.5,28.5 - parent: 30 - type: Transform -- uid: 5257 - type: Grille - components: - - pos: -10.5,28.5 - parent: 30 - type: Transform -- uid: 5258 - type: Grille - components: - - pos: -11.5,28.5 - parent: 30 - type: Transform -- uid: 5259 - type: SignNanotrasen2 - components: - - pos: -10.5,30.5 - parent: 30 - type: Transform -- uid: 5260 - type: Grille - components: - - pos: -6.5,30.5 - parent: 30 - type: Transform -- uid: 5261 - type: SignNanotrasen4 - components: - - pos: -8.5,30.5 - parent: 30 - type: Transform -- uid: 5262 - type: WallReinforced - components: - - pos: -8.5,30.5 - parent: 30 - type: Transform -- uid: 5263 - type: WallReinforced - components: - - pos: -11.5,30.5 - parent: 30 - type: Transform -- uid: 5264 - type: WallReinforced - components: - - pos: -7.5,30.5 - parent: 30 - type: Transform -- uid: 5265 - type: WallReinforced - components: - - pos: -10.5,30.5 - parent: 30 - type: Transform -- uid: 5266 - type: WallReinforced - components: - - pos: -9.5,30.5 - parent: 30 - type: Transform -- uid: 5267 - type: SignNanotrasen3 - components: - - pos: -9.5,30.5 - parent: 30 - type: Transform -- uid: 5268 - type: SignNanotrasen5 - components: - - pos: -7.5,30.5 - parent: 30 - type: Transform -- uid: 5269 - type: WallReinforced - components: - - pos: -2.5,29.5 - parent: 30 - type: Transform -- uid: 5270 - type: WallReinforced - components: - - pos: -2.5,28.5 - parent: 30 - type: Transform -- uid: 5271 - type: WallReinforced - components: - - pos: -2.5,31.5 - parent: 30 - type: Transform -- uid: 5272 - type: Grille - components: - - pos: 0.5,30.5 - parent: 30 - type: Transform -- uid: 5273 - type: WallReinforced - components: - - pos: -2.5,33.5 - parent: 30 - type: Transform -- uid: 5274 - type: WallReinforced - components: - - pos: -2.5,34.5 - parent: 30 - type: Transform -- uid: 5275 - type: WallReinforced - components: - - pos: -2.5,35.5 - parent: 30 - type: Transform -- uid: 5276 - type: AirlockCommandGlassLocked - components: - - pos: -3.5,34.5 - parent: 30 - type: Transform -- uid: 5277 - type: ReinforcedWindow - components: - - pos: -6.5,30.5 - parent: 30 - type: Transform -- uid: 5278 - type: Catwalk - components: - - pos: -12.5,29.5 - parent: 30 - type: Transform -- uid: 5279 - type: Grille - components: - - pos: -12.5,30.5 - parent: 30 - type: Transform -- uid: 5280 - type: Catwalk - components: - - pos: -6.5,29.5 - parent: 30 - type: Transform -- uid: 5281 - type: Catwalk - components: - - pos: -9.5,29.5 - parent: 30 - type: Transform -- uid: 5282 - type: TableWood - components: - - pos: -7.5,35.5 - parent: 30 - type: Transform -- uid: 5283 - type: ReinforcedWindow - components: - - pos: -6.5,37.5 - parent: 30 - type: Transform -- uid: 5284 - type: WallReinforced - components: - - pos: -13.5,36.5 - parent: 30 - type: Transform -- uid: 5285 - type: WallReinforced - components: - - pos: -5.5,36.5 - parent: 30 - type: Transform -- uid: 5286 - type: Grille - components: - - pos: -11.5,37.5 - parent: 30 - type: Transform -- uid: 5287 - type: Grille - components: - - pos: -12.5,37.5 - parent: 30 - type: Transform -- uid: 5288 - type: Grille - components: - - pos: -8.5,38.5 - parent: 30 - type: Transform -- uid: 5289 - type: TableWood - components: - - pos: -8.5,35.5 - parent: 30 - type: Transform -- uid: 5290 - type: TableWood - components: - - pos: -9.5,35.5 - parent: 30 - type: Transform -- uid: 5291 - type: TableWood - components: - - pos: -10.5,35.5 - parent: 30 - type: Transform -- uid: 5292 - type: TableWood - components: - - pos: -11.5,35.5 - parent: 30 - type: Transform -- uid: 5293 - type: TableWood - components: - - pos: -9.5,33.5 - parent: 30 - type: Transform -- uid: 5294 - type: TableWood - components: - - pos: -10.5,33.5 - parent: 30 - type: Transform -- uid: 5295 - type: ReinforcedWindow - components: - - pos: -11.5,37.5 - parent: 30 - type: Transform -- uid: 5296 - type: WallReinforced - components: - - pos: -5.5,37.5 - parent: 30 - type: Transform -- uid: 5297 - type: WallReinforced - components: - - pos: -13.5,37.5 - parent: 30 - type: Transform -- uid: 5298 - type: TableWood - components: - - pos: -8.5,33.5 - parent: 30 - type: Transform -- uid: 5299 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,26.5 - parent: 30 - type: Transform -- uid: 5300 - type: TableWood - components: - - pos: -11.5,34.5 - parent: 30 - type: Transform -- uid: 5301 - type: AirlockCommandLocked - components: - - pos: -13.5,32.5 - parent: 30 - type: Transform -- uid: 5302 - type: Grille - components: - - pos: -10.5,38.5 - parent: 30 - type: Transform -- uid: 5303 - type: ReinforcedWindow - components: - - pos: -7.5,37.5 - parent: 30 - type: Transform -- uid: 5304 - type: ReinforcedWindow - components: - - pos: -12.5,37.5 - parent: 30 - type: Transform -- uid: 5305 - type: TableWood - components: - - pos: -7.5,34.5 - parent: 30 - type: Transform -- uid: 5306 - type: TableWood - components: - - pos: -7.5,33.5 - parent: 30 - type: Transform -- uid: 5307 - type: ReinforcedWindow - components: - - pos: -8.5,38.5 - parent: 30 - type: Transform -- uid: 5308 - type: ReinforcedWindow - components: - - pos: -11.5,38.5 - parent: 30 - type: Transform -- uid: 5309 - type: Grille - components: - - pos: -11.5,38.5 - parent: 30 - type: Transform -- uid: 5310 - type: ReinforcedWindow - components: - - pos: -10.5,38.5 - parent: 30 - type: Transform -- uid: 5311 - type: Grille - components: - - pos: -7.5,38.5 - parent: 30 - type: Transform -- uid: 5312 - type: ReinforcedWindow - components: - - pos: -7.5,38.5 - parent: 30 - type: Transform -- uid: 5313 - type: Grille - components: - - pos: -7.5,37.5 - parent: 30 - type: Transform -- uid: 5314 - type: Grille - components: - - pos: -6.5,37.5 - parent: 30 - type: Transform -- uid: 5315 - type: PottedPlant22 - components: - - pos: -8.5,37.5 - parent: 30 - type: Transform -- uid: 5316 - type: PottedPlant22 - components: - - pos: -10.5,37.5 - parent: 30 - type: Transform -- uid: 5317 - type: TableWood - components: - - pos: -11.5,33.5 - parent: 30 - type: Transform -- uid: 5318 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,26.5 - parent: 30 - type: Transform -- uid: 5319 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,26.5 - parent: 30 - type: Transform -- uid: 5320 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,26.5 - parent: 30 - type: Transform -- uid: 5321 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,25.5 - parent: 30 - type: Transform -- uid: 5322 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,25.5 - parent: 30 - type: Transform -- uid: 5323 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,25.5 - parent: 30 - type: Transform -- uid: 5324 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,25.5 - parent: 30 - type: Transform -- uid: 5325 - type: AirlockMaintLocked - components: - - pos: 34.5,27.5 - parent: 30 - type: Transform -- uid: 5326 - type: ReinforcedWindow - components: - - pos: -12.5,30.5 - parent: 30 - type: Transform -- uid: 5327 - type: ChairOfficeDark - components: - - pos: -31.5,22.5 - parent: 30 - type: Transform -- uid: 5328 - type: BagpipeInstrument - components: - - pos: -32.5,22.5 - parent: 30 - type: Transform -- uid: 5329 - type: Mirror - components: - - pos: -24.5,23.5 - parent: 30 - type: Transform -- uid: 5330 - type: Paper - components: - - pos: -11.412846,33.93179 - parent: 30 - type: Transform -- uid: 5331 - type: ChairOfficeDark - components: - - pos: -9.5,36.5 - parent: 30 - type: Transform -- uid: 5332 - type: FoodBoxDonut - components: - - pos: -9.506596,33.653034 - parent: 30 - type: Transform -- uid: 5333 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -6.5,31.5 - parent: 30 - type: Transform -- uid: 5334 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -6.5,35.5 - parent: 30 - type: Transform -- uid: 5335 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -6.5,34.5 - parent: 30 - type: Transform -- uid: 5336 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -6.5,33.5 - parent: 30 - type: Transform -- uid: 5337 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -12.5,33.5 - parent: 30 - type: Transform -- uid: 5338 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -12.5,34.5 - parent: 30 - type: Transform -- uid: 5339 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -12.5,35.5 - parent: 30 - type: Transform -- uid: 5340 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -10.5,32.5 - parent: 30 - type: Transform -- uid: 5341 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -9.5,32.5 - parent: 30 - type: Transform -- uid: 5342 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -8.5,32.5 - parent: 30 - type: Transform -- uid: 5343 - type: BoxFolderGrey - components: - - pos: -11.490971,34.71304 - parent: 30 - type: Transform -- uid: 5344 - type: BoxFolderYellow - components: - - pos: -7.4440956,34.21304 - parent: 30 - type: Transform -- uid: 5345 - type: Paper - components: - - pos: -11.506596,34.041164 - parent: 30 - type: Transform -- uid: 5346 - type: Paper - components: - - pos: -7.3815956,35.291164 - parent: 30 - type: Transform -- uid: 5347 - type: Paper - components: - - pos: -8.522221,33.58804 - parent: 30 - type: Transform -- uid: 5348 - type: Pen - components: - - pos: -8.240971,33.759914 - parent: 30 - type: Transform -- uid: 5349 - type: Pen - components: - - pos: -11.022221,33.697414 - parent: 30 - type: Transform -- uid: 5350 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree -- uid: 5351 - type: PlasmaCanister - components: - - pos: 18.5,-14.5 - parent: 30 - type: Transform -- uid: 5352 - type: WallReinforced - components: - - pos: -2.5,36.5 - parent: 30 - type: Transform -- uid: 5353 - type: WallReinforced - components: - - pos: -2.5,38.5 - parent: 30 - type: Transform -- uid: 5354 - type: WallReinforced - components: - - pos: -2.5,39.5 - parent: 30 - type: Transform -- uid: 5355 - type: WallReinforced - components: - - pos: -1.5,36.5 - parent: 30 - type: Transform -- uid: 5356 - type: WallSolid - components: - - pos: 1.5,34.5 - parent: 30 - type: Transform -- uid: 5357 - type: WallReinforced - components: - - pos: 1.5,36.5 - parent: 30 - type: Transform -- uid: 5358 - type: WallReinforced - components: - - pos: 1.5,35.5 - parent: 30 - type: Transform -- uid: 5359 - type: WallReinforced - components: - - pos: 2.5,35.5 - parent: 30 - type: Transform -- uid: 5360 - type: WallReinforced - components: - - pos: 3.5,35.5 - parent: 30 - type: Transform -- uid: 5361 - type: WallReinforced - components: - - pos: 4.5,35.5 - parent: 30 - type: Transform -- uid: 5362 - type: WallReinforced - components: - - pos: 5.5,35.5 - parent: 30 - type: Transform -- uid: 5363 - type: WallReinforced - components: - - pos: 6.5,35.5 - parent: 30 - type: Transform -- uid: 5364 - type: WallReinforced - components: - - pos: 5.5,30.5 - parent: 30 - type: Transform -- uid: 5365 - type: WallReinforced - components: - - pos: 6.5,31.5 - parent: 30 - type: Transform -- uid: 5366 - type: WallReinforced - components: - - pos: 6.5,32.5 - parent: 30 - type: Transform -- uid: 5367 - type: WallReinforced - components: - - pos: 6.5,34.5 - parent: 30 - type: Transform -- uid: 5368 - type: WallReinforced - components: - - pos: 2.5,30.5 - parent: 30 - type: Transform -- uid: 5369 - type: WallReinforced - components: - - pos: 6.5,30.5 - parent: 30 - type: Transform -- uid: 5370 - type: WallReinforced - components: - - pos: -1.5,30.5 - parent: 30 - type: Transform -- uid: 5371 - type: WallReinforced - components: - - pos: 1.5,30.5 - parent: 30 - type: Transform -- uid: 5372 - type: ReinforcedWindow - components: - - pos: 3.5,30.5 - parent: 30 - type: Transform -- uid: 5373 - type: ReinforcedWindow - components: - - pos: 0.5,30.5 - parent: 30 - type: Transform -- uid: 5374 - type: WallReinforced - components: - - pos: -0.5,30.5 - parent: 30 - type: Transform -- uid: 5375 - type: ReinforcedWindow - components: - - pos: 0.5,28.5 - parent: 30 - type: Transform -- uid: 5376 - type: ReinforcedWindow - components: - - pos: 1.5,28.5 - parent: 30 - type: Transform -- uid: 5377 - type: ReinforcedWindow - components: - - pos: 2.5,28.5 - parent: 30 - type: Transform -- uid: 5378 - type: ReinforcedWindow - components: - - pos: 3.5,28.5 - parent: 30 - type: Transform -- uid: 5379 - type: Grille - components: - - pos: 3.5,30.5 - parent: 30 - type: Transform -- uid: 5380 - type: Grille - components: - - pos: 3.5,28.5 - parent: 30 - type: Transform -- uid: 5381 - type: Grille - components: - - pos: 2.5,28.5 - parent: 30 - type: Transform -- uid: 5382 - type: Grille - components: - - pos: 1.5,28.5 - parent: 30 - type: Transform -- uid: 5383 - type: Grille - components: - - pos: 0.5,28.5 - parent: 30 - type: Transform -- uid: 5384 - type: WallSolid - components: - - pos: -1.5,28.5 - parent: 30 - type: Transform -- uid: 5385 - type: WallSolid - components: - - pos: 5.5,28.5 - parent: 30 - type: Transform -- uid: 5386 - type: WallSolid - components: - - pos: 6.5,28.5 - parent: 30 - type: Transform -- uid: 5387 - type: WallSolid - components: - - pos: 6.5,29.5 - parent: 30 - type: Transform -- uid: 5388 - type: WallSolid - components: - - pos: 7.5,28.5 - parent: 30 - type: Transform -- uid: 5389 - type: WallSolid - components: - - pos: 7.5,31.5 - parent: 30 - type: Transform -- uid: 5390 - type: AirlockExternalLocked - components: - - pos: -0.5,41.5 - parent: 30 - type: Transform -- uid: 5391 - type: AirlockExternalGlassLocked - components: - - pos: -0.5,39.5 - parent: 30 - type: Transform -- uid: 5392 - type: AirlockCommandGlassLocked - components: - - pos: -2.5,37.5 - parent: 30 - type: Transform -- uid: 5393 - type: WallReinforced - components: - - pos: -0.5,36.5 - parent: 30 - type: Transform -- uid: 5394 - type: ReinforcedWindow - components: - - pos: 0.5,37.5 - parent: 30 - type: Transform -- uid: 5395 - type: ReinforcedWindow - components: - - pos: 0.5,38.5 - parent: 30 - type: Transform -- uid: 5396 - type: WallReinforced - components: - - pos: 0.5,39.5 - parent: 30 - type: Transform -- uid: 5397 - type: WallReinforced - components: - - pos: 0.5,40.5 - parent: 30 - type: Transform -- uid: 5398 - type: WallReinforced - components: - - pos: 0.5,41.5 - parent: 30 - type: Transform -- uid: 5399 - type: WallReinforced - components: - - pos: -1.5,39.5 - parent: 30 - type: Transform -- uid: 5400 - type: WallReinforced - components: - - pos: -2.5,40.5 - parent: 30 - type: Transform -- uid: 5401 - type: WallReinforced - components: - - pos: -2.5,41.5 - parent: 30 - type: Transform -- uid: 5402 - type: WallReinforced - components: - - pos: -1.5,41.5 - parent: 30 - type: Transform -- uid: 5403 - type: WallReinforced - components: - - pos: 0.5,36.5 - parent: 30 - type: Transform -- uid: 5404 - type: Grille - components: - - pos: 0.5,37.5 - parent: 30 - type: Transform -- uid: 5405 - type: Grille - components: - - pos: 0.5,38.5 - parent: 30 - type: Transform -- uid: 5406 - type: TableReinforced - components: - - pos: 4.5,30.5 - parent: 30 - type: Transform -- uid: 5407 - type: AirlockHeadOfPersonnelLocked - components: - - pos: -2.5,32.5 - parent: 30 - type: Transform -- uid: 5408 - type: AirlockHeadOfPersonnelLocked - components: - - pos: -0.5,34.5 - parent: 30 - type: Transform -- uid: 5409 - type: WindoorHeadOfPersonnelLocked - components: - - rot: 3.141592653589793 rad - pos: 4.5,30.5 - parent: 30 - type: Transform -- uid: 5410 - type: Windoor - components: - - pos: 4.5,30.5 - parent: 30 - type: Transform -- uid: 5411 - type: Poweredlight - components: - - pos: -13.5,27.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5412 - type: Catwalk - components: - - pos: -22.5,45.5 - parent: 30 - type: Transform -- uid: 5413 - type: Catwalk - components: - - pos: -22.5,44.5 - parent: 30 - type: Transform -- uid: 5414 - type: Table - components: - - pos: 5.5,29.5 - parent: 30 - type: Transform -- uid: 5415 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -1.5,29.5 - parent: 30 - type: Transform -- uid: 5416 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -0.5,37.5 - parent: 30 - type: Transform -- uid: 5417 - type: WallReinforced - components: - - pos: 6.5,36.5 - parent: 30 - type: Transform -- uid: 5418 - type: WallReinforced - components: - - pos: 12.5,36.5 - parent: 30 - type: Transform -- uid: 5419 - type: WallReinforced - components: - - pos: 12.5,35.5 - parent: 30 - type: Transform -- uid: 5420 - type: WallReinforced - components: - - pos: 12.5,28.5 - parent: 30 - type: Transform -- uid: 5421 - type: WallReinforced - components: - - pos: 12.5,31.5 - parent: 30 - type: Transform -- uid: 5422 - type: WallReinforced - components: - - pos: 12.5,32.5 - parent: 30 - type: Transform -- uid: 5423 - type: ReinforcedWindow - components: - - pos: 12.5,29.5 - parent: 30 - type: Transform -- uid: 5424 - type: ReinforcedWindow - components: - - pos: 12.5,30.5 - parent: 30 - type: Transform -- uid: 5425 - type: ReinforcedWindow - components: - - pos: 12.5,33.5 - parent: 30 - type: Transform -- uid: 5426 - type: ReinforcedWindow - components: - - pos: 12.5,34.5 - parent: 30 - type: Transform -- uid: 5427 - type: ReinforcedWindow - components: - - pos: 11.5,36.5 - parent: 30 - type: Transform -- uid: 5428 - type: ReinforcedWindow - components: - - pos: 10.5,36.5 - parent: 30 - type: Transform -- uid: 5429 - type: ReinforcedWindow - components: - - pos: 7.5,36.5 - parent: 30 - type: Transform -- uid: 5430 - type: ReinforcedWindow - components: - - pos: 8.5,36.5 - parent: 30 - type: Transform -- uid: 5431 - type: ReinforcedWindow - components: - - pos: 8.5,37.5 - parent: 30 - type: Transform -- uid: 5432 - type: ReinforcedWindow - components: - - pos: 8.5,38.5 - parent: 30 - type: Transform -- uid: 5433 - type: ReinforcedWindow - components: - - pos: 7.5,38.5 - parent: 30 - type: Transform -- uid: 5434 - type: ReinforcedWindow - components: - - pos: 10.5,37.5 - parent: 30 - type: Transform -- uid: 5435 - type: ReinforcedWindow - components: - - pos: 10.5,38.5 - parent: 30 - type: Transform -- uid: 5436 - type: ReinforcedWindow - components: - - pos: 11.5,38.5 - parent: 30 - type: Transform -- uid: 5437 - type: ReinforcedWindow - components: - - pos: 12.5,38.5 - parent: 30 - type: Transform -- uid: 5438 - type: ReinforcedWindow - components: - - pos: 13.5,39.5 - parent: 30 - type: Transform -- uid: 5439 - type: ReinforcedWindow - components: - - pos: 3.5,39.5 - parent: 30 - type: Transform -- uid: 5440 - type: ReinforcedWindow - components: - - pos: 5.5,38.5 - parent: 30 - type: Transform -- uid: 5441 - type: ReinforcedWindow - components: - - pos: 4.5,38.5 - parent: 30 - type: Transform -- uid: 5442 - type: WallReinforced - components: - - pos: 3.5,38.5 - parent: 30 - type: Transform -- uid: 5443 - type: WallReinforced - components: - - pos: 6.5,38.5 - parent: 30 - type: Transform -- uid: 5444 - type: WallReinforced - components: - - pos: 13.5,38.5 - parent: 30 - type: Transform -- uid: 5445 - type: WallReinforced - components: - - pos: 2.5,40.5 - parent: 30 - type: Transform -- uid: 5446 - type: WallReinforced - components: - - pos: 3.5,40.5 - parent: 30 - type: Transform -- uid: 5447 - type: WallReinforced - components: - - pos: 4.5,40.5 - parent: 30 - type: Transform -- uid: 5448 - type: WallReinforced - components: - - pos: 6.5,40.5 - parent: 30 - type: Transform -- uid: 5449 - type: WallReinforced - components: - - pos: 7.5,40.5 - parent: 30 - type: Transform -- uid: 5450 - type: WallReinforced - components: - - pos: 8.5,40.5 - parent: 30 - type: Transform -- uid: 5451 - type: HighSecCommandLocked - components: - - pos: 9.5,40.5 - parent: 30 - type: Transform -- uid: 5452 - type: WallReinforced - components: - - pos: 8.5,42.5 - parent: 30 - type: Transform -- uid: 5453 - type: WallReinforced - components: - - pos: 8.5,43.5 - parent: 30 - type: Transform -- uid: 5454 - type: WallReinforced - components: - - pos: 8.5,44.5 - parent: 30 - type: Transform -- uid: 5455 - type: WallReinforced - components: - - pos: 2.5,41.5 - parent: 30 - type: Transform -- uid: 5456 - type: WallReinforced - components: - - pos: 2.5,42.5 - parent: 30 - type: Transform -- uid: 5457 - type: WallReinforced - components: - - pos: 2.5,43.5 - parent: 30 - type: Transform -- uid: 5458 - type: WallReinforced - components: - - pos: 2.5,44.5 - parent: 30 - type: Transform -- uid: 5459 - type: WallReinforced - components: - - pos: 2.5,45.5 - parent: 30 - type: Transform -- uid: 5460 - type: WallReinforced - components: - - pos: 3.5,45.5 - parent: 30 - type: Transform -- uid: 5461 - type: WallReinforced - components: - - pos: 4.5,45.5 - parent: 30 - type: Transform -- uid: 5462 - type: WallReinforced - components: - - pos: 5.5,45.5 - parent: 30 - type: Transform -- uid: 5463 - type: WallReinforced - components: - - pos: 6.5,45.5 - parent: 30 - type: Transform -- uid: 5464 - type: WallReinforced - components: - - pos: 7.5,45.5 - parent: 30 - type: Transform -- uid: 5465 - type: WallReinforced - components: - - pos: 8.5,45.5 - parent: 30 - type: Transform -- uid: 5466 - type: ReinforcedWindow - components: - - pos: 11.5,46.5 - parent: 30 - type: Transform -- uid: 5467 - type: WallReinforced - components: - - pos: 13.5,40.5 - parent: 30 - type: Transform -- uid: 5468 - type: WallReinforced - components: - - pos: 13.5,41.5 - parent: 30 - type: Transform -- uid: 5469 - type: WallReinforced - components: - - pos: 13.5,43.5 - parent: 30 - type: Transform -- uid: 5470 - type: WallReinforced - components: - - pos: 13.5,42.5 - parent: 30 - type: Transform -- uid: 5471 - type: SubstationBasic - components: - - pos: 12.5,42.5 - parent: 30 - type: Transform -- uid: 5472 - type: SMESBasic - components: - - pos: 12.5,41.5 - parent: 30 - type: Transform -- uid: 5473 - type: WallReinforced - components: - - pos: 8.5,46.5 - parent: 30 - type: Transform -- uid: 5474 - type: Grille - components: - - pos: -7.5,50.5 - parent: 30 - type: Transform -- uid: 5475 - type: WallReinforced - components: - - pos: 12.5,43.5 - parent: 30 - type: Transform -- uid: 5476 - type: ReinforcedWindow - components: - - pos: 9.5,46.5 - parent: 30 - type: Transform -- uid: 5477 - type: WallReinforced - components: - - pos: 12.5,46.5 - parent: 30 - type: Transform -- uid: 5478 - type: GravityGenerator - components: - - pos: 10.5,44.5 - parent: 30 - type: Transform -- uid: 5479 - type: WallReinforced - components: - - pos: 12.5,45.5 - parent: 30 - type: Transform -- uid: 5480 - type: WallReinforced - components: - - pos: 12.5,44.5 - parent: 30 - type: Transform -- uid: 5481 - type: Grille - components: - - pos: 13.5,39.5 - parent: 30 - type: Transform -- uid: 5482 - type: Grille - components: - - pos: 12.5,38.5 - parent: 30 - type: Transform -- uid: 5483 - type: Grille - components: - - pos: 11.5,38.5 - parent: 30 - type: Transform -- uid: 5484 - type: Grille - components: - - pos: 10.5,38.5 - parent: 30 - type: Transform -- uid: 5485 - type: Grille - components: - - pos: 10.5,37.5 - parent: 30 - type: Transform -- uid: 5486 - type: Grille - components: - - pos: 10.5,36.5 - parent: 30 - type: Transform -- uid: 5487 - type: Grille - components: - - pos: 11.5,36.5 - parent: 30 - type: Transform -- uid: 5488 - type: Grille - components: - - pos: 7.5,36.5 - parent: 30 - type: Transform -- uid: 5489 - type: Grille - components: - - pos: 8.5,36.5 - parent: 30 - type: Transform -- uid: 5490 - type: Grille - components: - - pos: 8.5,37.5 - parent: 30 - type: Transform -- uid: 5491 - type: Grille - components: - - pos: 8.5,38.5 - parent: 30 - type: Transform -- uid: 5492 - type: Grille - components: - - pos: 7.5,38.5 - parent: 30 - type: Transform -- uid: 5493 - type: Grille - components: - - pos: 5.5,38.5 - parent: 30 - type: Transform -- uid: 5494 - type: Grille - components: - - pos: 4.5,38.5 - parent: 30 - type: Transform -- uid: 5495 - type: Grille - components: - - pos: 3.5,39.5 - parent: 30 - type: Transform -- uid: 5496 - type: Grille - components: - - pos: 12.5,33.5 - parent: 30 - type: Transform -- uid: 5497 - type: Grille - components: - - pos: 12.5,34.5 - parent: 30 - type: Transform -- uid: 5498 - type: Grille - components: - - pos: 12.5,29.5 - parent: 30 - type: Transform -- uid: 5499 - type: Grille - components: - - pos: 12.5,30.5 - parent: 30 - type: Transform -- uid: 5500 - type: WallSolid - components: - - pos: 11.5,28.5 - parent: 30 - type: Transform -- uid: 5501 - type: ComputerSurveillanceCameraMonitor - components: - - pos: -11.5,46.5 - parent: 30 - type: Transform -- uid: 5502 - type: WallSolid - components: - - pos: -26.5,-2.5 - parent: 30 - type: Transform -- uid: 5503 - type: WallReinforced - components: - - pos: 10.5,46.5 - parent: 30 - type: Transform -- uid: 5504 - type: Grille - components: - - pos: 9.5,46.5 - parent: 30 - type: Transform -- uid: 5505 - type: Grille - components: - - pos: 11.5,46.5 - parent: 30 - type: Transform -- uid: 5506 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 12.5,40.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 5507 - type: CableHV - components: - - pos: -14.5,38.5 - parent: 30 - type: Transform -- uid: 5508 - type: CableHV - components: - - pos: -14.5,39.5 - parent: 30 - type: Transform -- uid: 5509 - type: CableHV - components: - - pos: -13.5,39.5 - parent: 30 - type: Transform -- uid: 5510 - type: CableHV - components: - - pos: -12.5,39.5 - parent: 30 - type: Transform -- uid: 5511 - type: CableHV - components: - - pos: -11.5,39.5 - parent: 30 - type: Transform -- uid: 5512 - type: CableHV - components: - - pos: -9.5,39.5 - parent: 30 - type: Transform -- uid: 5513 - type: CableHV - components: - - pos: -9.5,39.5 - parent: 30 - type: Transform -- uid: 5514 - type: CableHV - components: - - pos: -10.5,39.5 - parent: 30 - type: Transform -- uid: 5515 - type: CableHV - components: - - pos: -8.5,39.5 - parent: 30 - type: Transform -- uid: 5516 - type: CableHV - components: - - pos: -7.5,39.5 - parent: 30 - type: Transform -- uid: 5517 - type: CableHV - components: - - pos: -6.5,39.5 - parent: 30 - type: Transform -- uid: 5518 - type: CableHV - components: - - pos: -5.5,39.5 - parent: 30 - type: Transform -- uid: 5519 - type: CableHV - components: - - pos: -4.5,39.5 - parent: 30 - type: Transform -- uid: 5520 - type: CableHV - components: - - pos: -3.5,39.5 - parent: 30 - type: Transform -- uid: 5521 - type: CableHV - components: - - pos: -3.5,38.5 - parent: 30 - type: Transform -- uid: 5522 - type: CableHV - components: - - pos: -3.5,37.5 - parent: 30 - type: Transform -- uid: 5523 - type: CableHV - components: - - pos: -3.5,36.5 - parent: 30 - type: Transform -- uid: 5524 - type: CableHV - components: - - pos: -3.5,36.5 - parent: 30 - type: Transform -- uid: 5525 - type: CableHV - components: - - pos: -3.5,35.5 - parent: 30 - type: Transform -- uid: 5526 - type: CableHV - components: - - pos: -3.5,34.5 - parent: 30 - type: Transform -- uid: 5527 - type: CableHV - components: - - pos: -3.5,33.5 - parent: 30 - type: Transform -- uid: 5528 - type: CableHV - components: - - pos: -3.5,32.5 - parent: 30 - type: Transform -- uid: 5529 - type: CableHV - components: - - pos: -2.5,32.5 - parent: 30 - type: Transform -- uid: 5530 - type: CableHV - components: - - pos: -1.5,32.5 - parent: 30 - type: Transform -- uid: 5531 - type: CableHV - components: - - pos: -0.5,32.5 - parent: 30 - type: Transform -- uid: 5532 - type: CableHV - components: - - pos: 0.5,32.5 - parent: 30 - type: Transform -- uid: 5533 - type: CableHV - components: - - pos: 1.5,32.5 - parent: 30 - type: Transform -- uid: 5534 - type: CableHV - components: - - pos: 2.5,32.5 - parent: 30 - type: Transform -- uid: 5535 - type: CableHV - components: - - pos: 3.5,32.5 - parent: 30 - type: Transform -- uid: 5536 - type: CableHV - components: - - pos: 5.5,32.5 - parent: 30 - type: Transform -- uid: 5537 - type: CableHV - components: - - pos: 5.5,32.5 - parent: 30 - type: Transform -- uid: 5538 - type: CableHV - components: - - pos: 5.5,33.5 - parent: 30 - type: Transform -- uid: 5539 - type: CableHV - components: - - pos: 4.5,32.5 - parent: 30 - type: Transform -- uid: 5540 - type: CableHV - components: - - pos: 6.5,33.5 - parent: 30 - type: Transform -- uid: 5541 - type: CableHV - components: - - pos: 7.5,33.5 - parent: 30 - type: Transform -- uid: 5542 - type: CableHV - components: - - pos: 8.5,33.5 - parent: 30 - type: Transform -- uid: 5543 - type: CableHV - components: - - pos: 9.5,33.5 - parent: 30 - type: Transform -- uid: 5544 - type: CableHV - components: - - pos: 9.5,34.5 - parent: 30 - type: Transform -- uid: 5545 - type: CableHV - components: - - pos: 9.5,35.5 - parent: 30 - type: Transform -- uid: 5546 - type: CableHV - components: - - pos: 9.5,36.5 - parent: 30 - type: Transform -- uid: 5547 - type: CableHV - components: - - pos: 9.5,37.5 - parent: 30 - type: Transform -- uid: 5548 - type: CableHV - components: - - pos: 9.5,38.5 - parent: 30 - type: Transform -- uid: 5549 - type: CableHV - components: - - pos: 9.5,39.5 - parent: 30 - type: Transform -- uid: 5550 - type: CableHV - components: - - pos: 10.5,39.5 - parent: 30 - type: Transform -- uid: 5551 - type: CableHV - components: - - pos: 11.5,39.5 - parent: 30 - type: Transform -- uid: 5552 - type: CableHV - components: - - pos: 12.5,39.5 - parent: 30 - type: Transform -- uid: 5553 - type: CableHV - components: - - pos: 12.5,40.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5554 - type: CableHV - components: - - pos: 12.5,41.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5555 - type: CableHV - components: - - pos: 12.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5556 - type: BlastDoor - components: - - pos: 12.5,40.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20398 - type: SignalReceiver -- uid: 5557 - type: ShuttersNormal - components: - - pos: 11.5,40.5 - parent: 30 - type: Transform -- uid: 5558 - type: WallReinforced - components: - - pos: 10.5,40.5 - parent: 30 - type: Transform -- uid: 5559 - type: Grille - components: - - pos: -5.5,50.5 - parent: 30 - type: Transform -- uid: 5560 - type: WallSolid - components: - - pos: -26.5,-1.5 - parent: 30 - type: Transform -- uid: 5561 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 8.5,42.5 - parent: 30 - type: Transform -- uid: 5562 - type: CableMV - components: - - pos: 12.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5563 - type: CableMV - components: - - pos: 11.5,42.5 - parent: 30 - type: Transform -- uid: 5564 - type: CableMV - components: - - pos: 10.5,42.5 - parent: 30 - type: Transform -- uid: 5565 - type: CableMV - components: - - pos: 9.5,42.5 - parent: 30 - type: Transform -- uid: 5566 - type: CableMV - components: - - pos: 8.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5567 - type: CableApcExtension - components: - - pos: 8.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5568 - type: CableApcExtension - components: - - pos: 9.5,42.5 - parent: 30 - type: Transform -- uid: 5569 - type: CableApcExtension - components: - - pos: 10.5,42.5 - parent: 30 - type: Transform -- uid: 5570 - type: CableApcExtension - components: - - pos: 10.5,43.5 - parent: 30 - type: Transform -- uid: 5571 - type: CableApcExtension - components: - - pos: 10.5,44.5 - parent: 30 - type: Transform -- uid: 5572 - type: CableApcExtension - components: - - pos: 9.5,41.5 - parent: 30 - type: Transform -- uid: 5573 - type: CableApcExtension - components: - - pos: 9.5,40.5 - parent: 30 - type: Transform -- uid: 5574 - type: CableApcExtension - components: - - pos: 9.5,39.5 - parent: 30 - type: Transform -- uid: 5575 - type: CableApcExtension - components: - - pos: 10.5,39.5 - parent: 30 - type: Transform -- uid: 5576 - type: CableApcExtension - components: - - pos: 11.5,39.5 - parent: 30 - type: Transform -- uid: 5577 - type: CableApcExtension - components: - - pos: 12.5,39.5 - parent: 30 - type: Transform -- uid: 5578 - type: CableApcExtension - components: - - pos: 8.5,39.5 - parent: 30 - type: Transform -- uid: 5579 - type: CableApcExtension - components: - - pos: 7.5,39.5 - parent: 30 - type: Transform -- uid: 5580 - type: CableApcExtension - components: - - pos: 6.5,39.5 - parent: 30 - type: Transform -- uid: 5581 - type: CableApcExtension - components: - - pos: 5.5,39.5 - parent: 30 - type: Transform -- uid: 5582 - type: CableApcExtension - components: - - pos: 4.5,39.5 - parent: 30 - type: Transform -- uid: 5583 - type: CableApcExtension - components: - - pos: 5.5,40.5 - parent: 30 - type: Transform -- uid: 5584 - type: CableApcExtension - components: - - pos: 5.5,41.5 - parent: 30 - type: Transform -- uid: 5585 - type: CableApcExtension - components: - - pos: 5.5,42.5 - parent: 30 - type: Transform -- uid: 5586 - type: CableApcExtension - components: - - pos: 4.5,42.5 - parent: 30 - type: Transform -- uid: 5587 - type: CableApcExtension - components: - - pos: 3.5,42.5 - parent: 30 - type: Transform -- uid: 5588 - type: CableApcExtension - components: - - pos: 3.5,43.5 - parent: 30 - type: Transform -- uid: 5589 - type: CableApcExtension - components: - - pos: 3.5,44.5 - parent: 30 - type: Transform -- uid: 5590 - type: CableApcExtension - components: - - pos: 7.5,42.5 - parent: 30 - type: Transform -- uid: 5591 - type: CableApcExtension - components: - - pos: 6.5,42.5 - parent: 30 - type: Transform -- uid: 5592 - type: CableApcExtension - components: - - pos: 6.5,43.5 - parent: 30 - type: Transform -- uid: 5593 - type: CableApcExtension - components: - - pos: 6.5,44.5 - parent: 30 - type: Transform -- uid: 5594 - type: ComputerSolarControl - components: - - rot: -1.5707963267948966 rad - pos: -6.5,44.5 - parent: 30 - type: Transform -- uid: 5595 - type: CableApcExtension - components: - - pos: 9.5,38.5 - parent: 30 - type: Transform -- uid: 5596 - type: CableApcExtension - components: - - pos: 9.5,37.5 - parent: 30 - type: Transform -- uid: 5597 - type: CableApcExtension - components: - - pos: 9.5,36.5 - parent: 30 - type: Transform -- uid: 5598 - type: CableApcExtension - components: - - pos: 9.5,35.5 - parent: 30 - type: Transform -- uid: 5599 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 11.5,40.5 - parent: 30 - type: Transform -- uid: 5600 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 11.5,40.5 - parent: 30 - type: Transform -- uid: 5601 - type: TableReinforced - components: - - pos: 10.5,41.5 - parent: 30 - type: Transform -- uid: 5602 - type: ToolboxEmergencyFilled - components: - - pos: 10.456204,41.6404 - parent: 30 - type: Transform -- uid: 5603 - type: SignGravity - components: - - pos: 10.5,40.5 - parent: 30 - type: Transform -- uid: 5604 - type: SignDirectionalGravity - components: - - rot: 3.141592653589793 rad - pos: 7.5,28.5 - parent: 30 - type: Transform -- uid: 5605 - type: SignDirectionalBridge - components: - - rot: -1.5707963267948966 rad - pos: 7.501582,28.260015 - parent: 30 - type: Transform -- uid: 5606 - type: SignBridge - components: - - pos: -2.5,28.5 - parent: 30 - type: Transform -- uid: 5607 - type: NuclearBomb - components: - - pos: 5.5,43.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 5608 - type: LockerFreezer - components: - - pos: 3.5,41.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21184 - - 6975 - - 5615 - - 5616 - type: ContainerContainer -- uid: 5609 - type: TableReinforced - components: - - pos: 3.5,42.5 - parent: 30 - type: Transform -- uid: 5610 - type: TableReinforced - components: - - pos: 3.5,43.5 - parent: 30 - type: Transform -- uid: 5611 - type: TableReinforced - components: - - pos: 3.5,44.5 - parent: 30 - type: Transform -- uid: 5612 - type: IngotSilver - components: - - pos: 3.5333395,44.656982 - parent: 30 - type: Transform -- uid: 5613 - type: CigarGoldCase - components: - - pos: 3.5177145,43.922607 - parent: 30 - type: Transform -- uid: 5614 - type: PinpointerNuclear - components: - - pos: 3.51578,43.5845 - parent: 30 - type: Transform -- uid: 5615 - type: BoxFolderBlack - components: - - flags: InContainer - name: secret documents - type: MetaData - - parent: 5608 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 5616 - type: SpaceCash1000 - components: - - flags: InContainer - type: MetaData - - parent: 5608 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 5617 - type: TableReinforced - components: - - pos: 7.5,44.5 - parent: 30 - type: Transform -- uid: 5618 - type: TableReinforced - components: - - pos: 7.5,42.5 - parent: 30 - type: Transform -- uid: 5619 - type: WallReinforced - components: - - pos: 8.5,41.5 - parent: 30 - type: Transform -- uid: 5620 - type: TableReinforced - components: - - pos: 7.5,43.5 - parent: 30 - type: Transform -- uid: 5621 - type: DrinkGoldenCup - components: - - pos: 7.5231714,44.698692 - parent: 30 - type: Transform -- uid: 5622 - type: IngotGold - components: - - pos: 7.5231714,44.026817 - parent: 30 - type: Transform -- uid: 5623 - type: ToolboxGoldFilled - components: - - pos: 7.4606714,43.558067 - parent: 30 - type: Transform -- uid: 5624 - type: ClothingNeckBling - components: - - pos: 7.503625,43.354942 - parent: 30 - type: Transform -- uid: 5625 - type: ReinforcedWindow - components: - - pos: -30.5,-21.5 - parent: 30 - type: Transform -- uid: 5626 - type: ClothingHeadHatHairflower - components: - - pos: 7.8005,42.792442 - parent: 30 - type: Transform -- uid: 5627 - type: WallSolid - components: - - pos: -26.5,-3.5 - parent: 30 - type: Transform -- uid: 5628 - type: Poweredlight - components: - - pos: 4.5,44.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5629 - type: Poweredlight - components: - - pos: 6.5,44.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5630 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,42.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5631 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,42.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5632 - type: Poweredlight - components: - - pos: 10.5,45.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5633 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,42.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5634 - type: CableHV - components: - - pos: -18.5,-58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5635 - type: CableHV - components: - - pos: -23.5,-58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5636 - type: CableHV - components: - - pos: -19.5,-58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5637 - type: PosterLegitNanotrasenLogo - components: - - pos: 8.5,40.5 - parent: 30 - type: Transform -- uid: 5638 - type: PosterLegitNanotrasenLogo - components: - - pos: -13.5,34.5 - parent: 30 - type: Transform -- uid: 5639 - type: PosterLegitNanotrasenLogo - components: - - pos: -5.5,34.5 - parent: 30 - type: Transform -- uid: 5640 - type: WallReinforced - components: - - pos: -17.5,41.5 - parent: 30 - type: Transform -- uid: 5641 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -17.5,43.5 - parent: 30 - type: Transform -- uid: 5642 - type: WindowReinforcedDirectional - components: - - pos: -19.5,44.5 - parent: 30 - type: Transform -- uid: 5643 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -20.5,43.5 - parent: 30 - type: Transform -- uid: 5644 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -17.5,42.5 - parent: 30 - type: Transform -- uid: 5645 - type: WindowReinforcedDirectional - components: - - pos: -18.5,44.5 - parent: 30 - type: Transform -- uid: 5646 - type: WindowReinforcedDirectional - components: - - pos: -20.5,44.5 - parent: 30 - type: Transform -- uid: 5647 - type: FirelockGlass - components: - - pos: -22.5,43.5 - parent: 30 - type: Transform -- uid: 5648 - type: FirelockGlass - components: - - pos: -25.5,46.5 - parent: 30 - type: Transform -- uid: 5649 - type: FirelockEdge - components: - - pos: -15.5,35.5 - parent: 30 - type: Transform -- uid: 5650 - type: FirelockEdge - components: - - pos: -14.5,35.5 - parent: 30 - type: Transform -- uid: 5651 - type: FirelockEdge - components: - - pos: -4.5,35.5 - parent: 30 - type: Transform -- uid: 5652 - type: FirelockEdge - components: - - pos: -3.5,35.5 - parent: 30 - type: Transform -- uid: 5653 - type: FirelockGlass - components: - - pos: -0.5,28.5 - parent: 30 - type: Transform -- uid: 5654 - type: FirelockGlass - components: - - pos: 4.5,28.5 - parent: 30 - type: Transform -- uid: 5655 - type: Catwalk - components: - - pos: -22.5,46.5 - parent: 30 - type: Transform -- uid: 5656 - type: Catwalk - components: - - pos: -23.5,46.5 - parent: 30 - type: Transform -- uid: 5657 - type: Catwalk - components: - - pos: -24.5,46.5 - parent: 30 - type: Transform -- uid: 5658 - type: Catwalk - components: - - pos: -26.5,46.5 - parent: 30 - type: Transform -- uid: 5659 - type: Catwalk - components: - - pos: -27.5,46.5 - parent: 30 - type: Transform -- uid: 5660 - type: Catwalk - components: - - pos: -22.5,42.5 - parent: 30 - type: Transform -- uid: 5661 - type: OxygenCanister - components: - - pos: -24.5,45.5 - parent: 30 - type: Transform -- uid: 5662 - type: ClosetEmergencyFilledRandom - components: - - pos: -24.5,44.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5663 - type: WallReinforced - components: - - pos: -16.5,41.5 - parent: 30 - type: Transform -- uid: 5664 - type: Pickaxe - components: - - pos: 38.494118,-52.57902 - parent: 30 - type: Transform -- uid: 5665 - type: SignSecureMed - components: - - pos: 6.5,40.5 - parent: 30 - type: Transform -- uid: 5666 - type: SignRadiationMed - components: - - pos: 12.5,43.5 - parent: 30 - type: Transform -- uid: 5667 - type: Screwdriver - components: - - pos: -39.493607,17.449919 - parent: 30 - type: Transform -- uid: 5668 - type: ClothingEyesGlassesMeson - components: - - pos: -39.431107,18.715544 - parent: 30 - type: Transform -- uid: 5669 - type: trayScanner - components: - - pos: -39.368607,18.074919 - parent: 30 - type: Transform -- uid: 5670 - type: OxygenCanister - components: - - pos: -39.5,19.5 - parent: 30 - type: Transform -- uid: 5671 - type: SignElectricalMed - components: - - pos: -41.5,20.5 - parent: 30 - type: Transform -- uid: 5672 - type: ComputerId - components: - - rot: -1.5707963267948966 rad - pos: 5.5,31.5 - parent: 30 - type: Transform -- uid: 5673 - type: TableWood - components: - - pos: 3.5,31.5 - parent: 30 - type: Transform -- uid: 5674 - type: CarpetSBlue - components: - - pos: 5.5,31.5 - parent: 30 - type: Transform -- uid: 5675 - type: CarpetSBlue - components: - - pos: 4.5,31.5 - parent: 30 - type: Transform -- uid: 5676 - type: CarpetSBlue - components: - - pos: 3.5,31.5 - parent: 30 - type: Transform -- uid: 5677 - type: CarpetSBlue - components: - - pos: 3.5,32.5 - parent: 30 - type: Transform -- uid: 5678 - type: CarpetSBlue - components: - - pos: 4.5,32.5 - parent: 30 - type: Transform -- uid: 5679 - type: CarpetSBlue - components: - - pos: 5.5,32.5 - parent: 30 - type: Transform -- uid: 5680 - type: ChairOfficeDark - components: - - pos: 4.5,31.5 - parent: 30 - type: Transform -- uid: 5681 - type: VendingMachineCart - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,34.5 - parent: 30 - type: Transform -- uid: 5682 - type: DogBed - components: - - pos: 4.5,34.5 - parent: 30 - type: Transform -- uid: 5683 - type: PottedPlant5 - components: - - pos: 0.5,33.5 - parent: 30 - type: Transform -- uid: 5684 - type: SignHead - components: - - pos: 6.5,28.5 - parent: 30 - type: Transform -- uid: 5685 - type: SpawnMobCorgi - components: - - pos: 4.5,34.5 - parent: 30 - type: Transform -- uid: 5686 - type: DisposalUnit - components: - - pos: -1.5,31.5 - parent: 30 - type: Transform -- uid: 5687 - type: CarpetSBlue - components: - - pos: 2.5,31.5 - parent: 30 - type: Transform -- uid: 5688 - type: CarpetSBlue - components: - - pos: 2.5,32.5 - parent: 30 - type: Transform -- uid: 5689 - type: TableWood - components: - - pos: 2.5,31.5 - parent: 30 - type: Transform -- uid: 5690 - type: TableWood - components: - - pos: 2.5,32.5 - parent: 30 - type: Transform -- uid: 5691 - type: HandLabeler - components: - - pos: 3.4124203,31.543053 - parent: 30 - type: Transform -- uid: 5692 - type: Paper - components: - - pos: 2.5061703,31.621178 - parent: 30 - type: Transform -- uid: 5693 - type: Paper - components: - - pos: 2.5374203,31.621178 - parent: 30 - type: Transform -- uid: 5694 - type: Paper - components: - - pos: 2.5686703,31.605553 - parent: 30 - type: Transform -- uid: 5695 - type: Paper - components: - - pos: 2.5686703,31.605553 - parent: 30 - type: Transform -- uid: 5696 - type: Paper - components: - - pos: 2.5686703,31.605553 - parent: 30 - type: Transform -- uid: 5697 - type: Paper - components: - - pos: 2.5686703,31.605553 - parent: 30 - type: Transform -- uid: 5698 - type: Paper - components: - - pos: 2.5686703,31.605553 - parent: 30 - type: Transform -- uid: 5699 - type: Paper - components: - - pos: 2.5686703,31.605553 - parent: 30 - type: Transform -- uid: 5700 - type: Paper - components: - - pos: 2.5686703,31.605553 - parent: 30 - type: Transform -- uid: 5701 - type: Paper - components: - - pos: 2.5686703,31.605553 - parent: 30 - type: Transform -- uid: 5702 - type: BoxFolderBlue - components: - - pos: 2.6936703,31.527428 - parent: 30 - type: Transform -- uid: 5703 - type: Pen - components: - - pos: 2.8967953,31.777428 - parent: 30 - type: Transform -- uid: 5704 - type: LampGold - components: - - pos: 2.4749203,32.371178 - parent: 30 - type: Transform -- uid: 5705 - type: Fireplace - components: - - pos: 3.5,34.5 - parent: 30 - type: Transform -- uid: 5706 - type: MaterialCloth - components: - - pos: -0.54070497,31.589928 - parent: 30 - type: Transform -- uid: 5707 - type: TableWood - components: - - pos: -0.5,31.5 - parent: 30 - type: Transform -- uid: 5708 - type: UniformPrinter - components: - - pos: 1.5,31.5 - parent: 30 - type: Transform - - materialWhiteList: - - Cloth - - Durathread - type: MaterialStorage -- uid: 5709 - type: MaterialDurathread - components: - - pos: -0.32195497,31.386803 - parent: 30 - type: Transform -- uid: 5710 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 1.5,32.5 - parent: 30 - type: Transform -- uid: 5711 - type: WallSolid - components: - - pos: -1.5,34.5 - parent: 30 - type: Transform -- uid: 5712 - type: WallSolid - components: - - pos: 0.5,34.5 - parent: 30 - type: Transform -- uid: 5713 - type: BedsheetHOP - components: - - pos: 0.5,35.5 - parent: 30 - type: Transform -- uid: 5714 - type: Bed - components: - - pos: 0.5,35.5 - parent: 30 - type: Transform -- uid: 5715 - type: Dresser - components: - - pos: -1.5,35.5 - parent: 30 - type: Transform -- uid: 5716 - type: CarpetSBlue - components: - - pos: -0.5,35.5 - parent: 30 - type: Transform -- uid: 5717 - type: CarpetSBlue - components: - - pos: 0.5,35.5 - parent: 30 - type: Transform -- uid: 5718 - type: AirlockHeadOfPersonnelLocked - components: - - pos: 6.5,33.5 - parent: 30 - type: Transform -- uid: 5719 - type: PoweredSmallLight - components: - - pos: -0.5,35.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5720 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,33.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5721 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,32.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5722 - type: CableHV - components: - - pos: -22.5,-58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5723 - type: BalloonCorgi - components: - - pos: 0.45584083,35.550472 - parent: 30 - type: Transform -- uid: 5724 - type: ToyIan - components: - - pos: 4.1322694,34.214336 - parent: 30 - type: Transform -- uid: 5725 - type: PosterLegitNanotrasenLogo - components: - - pos: 6.5,31.5 - parent: 30 - type: Transform -- uid: 5726 - type: filingCabinetDrawerRandom - components: - - pos: 2.5,34.5 - parent: 30 - type: Transform -- uid: 5727 - type: ClosetEmergencyFilledRandom - components: - - pos: -1.5,40.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5728 - type: Poweredlight - components: - - pos: -5.5,27.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5729 - type: Poweredlight - components: - - pos: 5.5,27.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5730 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,29.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5731 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,29.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5732 - type: CableHV - components: - - pos: -20.5,-58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5733 - type: ShuttersNormalOpen - components: - - pos: -5.5,5.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver -- uid: 5734 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,33.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5735 - type: TintedWindow - components: - - pos: -20.5,-14.5 - parent: 30 - type: Transform -- uid: 5736 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,33.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5737 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -0.5,38.5 - parent: 30 - type: Transform -- uid: 5738 - type: ShuttersNormalOpen - components: - - pos: -14.5,36.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20392 - type: SignalReceiver -- uid: 5739 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -13.5,38.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5740 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -5.5,38.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5741 - type: ShuttersNormalOpen - components: - - pos: -15.5,36.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20392 - type: SignalReceiver -- uid: 5742 - type: PoweredSmallLight - components: - - pos: -1.5,40.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5743 - type: DisposalUnit - components: - - pos: -19.5,43.5 - parent: 30 - type: Transform -- uid: 5744 - type: LockerHeadOfPersonnelFilled - components: - - pos: -1.5,33.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5745 - type: ComputerCrewMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 5.5,32.5 - parent: 30 - type: Transform -- uid: 5746 - type: WallReinforced - components: - - pos: -16.5,42.5 - parent: 30 - type: Transform -- uid: 5747 - type: WallReinforced - components: - - pos: -15.5,42.5 - parent: 30 - type: Transform -- uid: 5748 - type: WallReinforced - components: - - pos: -15.5,44.5 - parent: 30 - type: Transform -- uid: 5749 - type: WallReinforced - components: - - pos: -2.5,42.5 - parent: 30 - type: Transform -- uid: 5750 - type: WallReinforced - components: - - pos: -3.5,42.5 - parent: 30 - type: Transform -- uid: 5751 - type: WallReinforced - components: - - pos: -3.5,44.5 - parent: 30 - type: Transform -- uid: 5752 - type: WallReinforced - components: - - pos: -5.5,44.5 - parent: 30 - type: Transform -- uid: 5753 - type: WallReinforced - components: - - pos: -13.5,44.5 - parent: 30 - type: Transform -- uid: 5754 - type: WallReinforced - components: - - pos: -11.5,47.5 - parent: 30 - type: Transform -- uid: 5755 - type: WallReinforced - components: - - pos: -7.5,47.5 - parent: 30 - type: Transform -- uid: 5756 - type: WallReinforced - components: - - pos: -5.5,45.5 - parent: 30 - type: Transform -- uid: 5757 - type: WallReinforced - components: - - pos: -13.5,45.5 - parent: 30 - type: Transform -- uid: 5758 - type: ReinforcedWindow - components: - - pos: -15.5,43.5 - parent: 30 - type: Transform -- uid: 5759 - type: ReinforcedWindow - components: - - pos: -14.5,44.5 - parent: 30 - type: Transform -- uid: 5760 - type: ReinforcedWindow - components: - - pos: -13.5,46.5 - parent: 30 - type: Transform -- uid: 5761 - type: ReinforcedWindow - components: - - pos: -13.5,47.5 - parent: 30 - type: Transform -- uid: 5762 - type: ReinforcedWindow - components: - - pos: -12.5,47.5 - parent: 30 - type: Transform -- uid: 5763 - type: ReinforcedWindow - components: - - pos: -10.5,47.5 - parent: 30 - type: Transform -- uid: 5764 - type: ReinforcedWindow - components: - - pos: -9.5,47.5 - parent: 30 - type: Transform -- uid: 5765 - type: ReinforcedWindow - components: - - pos: -8.5,47.5 - parent: 30 - type: Transform -- uid: 5766 - type: ReinforcedWindow - components: - - pos: -6.5,47.5 - parent: 30 - type: Transform -- uid: 5767 - type: ReinforcedWindow - components: - - pos: -5.5,47.5 - parent: 30 - type: Transform -- uid: 5768 - type: ReinforcedWindow - components: - - pos: -5.5,46.5 - parent: 30 - type: Transform -- uid: 5769 - type: ReinforcedWindow - components: - - pos: -4.5,44.5 - parent: 30 - type: Transform -- uid: 5770 - type: ReinforcedWindow - components: - - pos: -3.5,43.5 - parent: 30 - type: Transform -- uid: 5771 - type: Grille - components: - - pos: -15.5,43.5 - parent: 30 - type: Transform -- uid: 5772 - type: Grille - components: - - pos: -14.5,44.5 - parent: 30 - type: Transform -- uid: 5773 - type: Grille - components: - - pos: -13.5,46.5 - parent: 30 - type: Transform -- uid: 5774 - type: Grille - components: - - pos: -13.5,47.5 - parent: 30 - type: Transform -- uid: 5775 - type: Grille - components: - - pos: -12.5,47.5 - parent: 30 - type: Transform -- uid: 5776 - type: Grille - components: - - pos: -10.5,47.5 - parent: 30 - type: Transform -- uid: 5777 - type: Grille - components: - - pos: -9.5,47.5 - parent: 30 - type: Transform -- uid: 5778 - type: Grille - components: - - pos: -8.5,47.5 - parent: 30 - type: Transform -- uid: 5779 - type: Grille - components: - - pos: -6.5,47.5 - parent: 30 - type: Transform -- uid: 5780 - type: Grille - components: - - pos: -5.5,47.5 - parent: 30 - type: Transform -- uid: 5781 - type: Grille - components: - - pos: -5.5,46.5 - parent: 30 - type: Transform -- uid: 5782 - type: Grille - components: - - pos: -4.5,44.5 - parent: 30 - type: Transform -- uid: 5783 - type: Grille - components: - - pos: -3.5,43.5 - parent: 30 - type: Transform -- uid: 5784 - type: Catwalk - components: - - pos: -17.5,45.5 - parent: 30 - type: Transform -- uid: 5785 - type: Catwalk - components: - - pos: -17.5,46.5 - parent: 30 - type: Transform -- uid: 5786 - type: Catwalk - components: - - pos: -17.5,47.5 - parent: 30 - type: Transform -- uid: 5787 - type: Catwalk - components: - - pos: 0.5,42.5 - parent: 30 - type: Transform -- uid: 5788 - type: Catwalk - components: - - pos: -0.5,42.5 - parent: 30 - type: Transform -- uid: 5789 - type: Catwalk - components: - - pos: -1.5,42.5 - parent: 30 - type: Transform -- uid: 5790 - type: SpawnPointHeadOfPersonnel - components: - - pos: 4.5,33.5 - parent: 30 - type: Transform -- uid: 5791 - type: Grille - components: - - pos: -6.5,50.5 - parent: 30 - type: Transform -- uid: 5792 - type: Grille - components: - - pos: -8.5,50.5 - parent: 30 - type: Transform -- uid: 5793 - type: Grille - components: - - pos: -10.5,50.5 - parent: 30 - type: Transform -- uid: 5794 - type: Grille - components: - - pos: -9.5,50.5 - parent: 30 - type: Transform -- uid: 5795 - type: Grille - components: - - pos: -11.5,50.5 - parent: 30 - type: Transform -- uid: 5796 - type: Grille - components: - - pos: -12.5,50.5 - parent: 30 - type: Transform -- uid: 5797 - type: Grille - components: - - pos: -13.5,50.5 - parent: 30 - type: Transform -- uid: 5798 - type: Grille - components: - - pos: -4.5,50.5 - parent: 30 - type: Transform -- uid: 5799 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -14.5,50.5 - parent: 30 - type: Transform -- uid: 5800 - type: ComputerPowerMonitoring - components: - - rot: -1.5707963267948966 rad - pos: -6.5,43.5 - parent: 30 - type: Transform -- uid: 5801 - type: ComputerMedicalRecords - components: - - rot: 1.5707963267948966 rad - pos: -12.5,44.5 - parent: 30 - type: Transform -- uid: 5802 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -12.5,43.5 - parent: 30 - type: Transform -- uid: 5803 - type: ComputerComms - components: - - rot: 1.5707963267948966 rad - pos: -10.5,45.5 - parent: 30 - type: Transform -- uid: 5804 - type: ComputerId - components: - - rot: -1.5707963267948966 rad - pos: -8.5,45.5 - parent: 30 - type: Transform -- uid: 5805 - type: ComputerCriminalRecords - components: - - pos: -14.5,43.5 - parent: 30 - type: Transform -- uid: 5806 - type: TableReinforced - components: - - pos: -13.5,43.5 - parent: 30 - type: Transform -- uid: 5807 - type: TableReinforced - components: - - pos: -6.5,45.5 - parent: 30 - type: Transform -- uid: 5808 - type: TableReinforced - components: - - pos: -12.5,45.5 - parent: 30 - type: Transform -- uid: 5809 - type: TableReinforced - components: - - pos: -8.5,46.5 - parent: 30 - type: Transform -- uid: 5810 - type: TableReinforced - components: - - pos: -10.5,46.5 - parent: 30 - type: Transform -- uid: 5811 - type: ComputerAlert - components: - - pos: -9.5,46.5 - parent: 30 - type: Transform -- uid: 5812 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -11.5,44.5 - parent: 30 - type: Transform -- uid: 5813 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -14.5,42.5 - parent: 30 - type: Transform -- uid: 5814 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -7.5,44.5 - parent: 30 - type: Transform -- uid: 5815 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -9.5,45.5 - parent: 30 - type: Transform -- uid: 5816 - type: ComputerResearchAndDevelopment - components: - - pos: -4.5,43.5 - parent: 30 - type: Transform -- uid: 5817 - type: TableReinforced - components: - - pos: -5.5,43.5 - parent: 30 - type: Transform -- uid: 5818 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -4.5,42.5 - parent: 30 - type: Transform -- uid: 5819 - type: TableReinforced - components: - - pos: -5.5,42.5 - parent: 30 - type: Transform -- uid: 5820 - type: AirlockCaptainLocked - components: - - pos: -16.5,37.5 - parent: 30 - type: Transform -- uid: 5821 - type: TableReinforced - components: - - pos: -13.5,42.5 - parent: 30 - type: Transform -- uid: 5822 - type: AirlockExternalGlassLocked - components: - - pos: 15.5,30.5 - parent: 30 - type: Transform -- uid: 5823 - type: TableReinforced - components: - - pos: -12.5,46.5 - parent: 30 - type: Transform -- uid: 5824 - type: WallSolid - components: - - pos: -26.5,-4.5 - parent: 30 - type: Transform -- uid: 5825 - type: TableReinforced - components: - - pos: -7.5,46.5 - parent: 30 - type: Transform -- uid: 5826 - type: TableReinforced - components: - - pos: -6.5,46.5 - parent: 30 - type: Transform -- uid: 5827 - type: WindowReinforcedDirectional - components: - - pos: -8.5,41.5 - parent: 30 - type: Transform -- uid: 5828 - type: WindowReinforcedDirectional - components: - - pos: -9.5,41.5 - parent: 30 - type: Transform -- uid: 5829 - type: WindowReinforcedDirectional - components: - - pos: -10.5,41.5 - parent: 30 - type: Transform -- uid: 5830 - type: BannerNanotrasen - components: - - pos: -3.5,41.5 - parent: 30 - type: Transform -- uid: 5831 - type: BannerNanotrasen - components: - - pos: -15.5,41.5 - parent: 30 - type: Transform -- uid: 5832 - type: PosterLegitNanotrasenLogo - components: - - pos: -13.5,44.5 - parent: 30 - type: Transform -- uid: 5833 - type: PosterLegitNanotrasenLogo - components: - - pos: -5.5,44.5 - parent: 30 - type: Transform -- uid: 5834 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -10.5,41.5 - parent: 30 - type: Transform -- uid: 5835 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -10.5,41.5 - parent: 30 - type: Transform -- uid: 5836 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -9.5,41.5 - parent: 30 - type: Transform -- uid: 5837 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -8.5,41.5 - parent: 30 - type: Transform -- uid: 5838 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -8.5,41.5 - parent: 30 - type: Transform -- uid: 5839 - type: Handcuffs - components: - - pos: -13.489765,43.452324 - parent: 30 - type: Transform -- uid: 5840 - type: BoxFolderRed - components: - - pos: -13.521015,42.764824 - parent: 30 - type: Transform -- uid: 5841 - type: StasisBed - components: - - pos: -21.5,-12.5 - parent: 30 - type: Transform -- uid: 5842 - type: ToolboxEmergencyFilled - components: - - pos: -6.509716,45.635574 - parent: 30 - type: Transform -- uid: 5843 - type: MedkitFilled - components: - - pos: -12.481925,46.43245 - parent: 30 - type: Transform -- uid: 5844 - type: Multitool - components: - - pos: -7.520787,46.572483 - parent: 30 - type: Transform -- uid: 5845 - type: FoodBoxDonut - components: - - pos: -10.4517765,46.613647 - parent: 30 - type: Transform -- uid: 5846 - type: FireAxeCabinetFilled - components: - - pos: -3.5,42.5 - parent: 30 - type: Transform -- uid: 5847 - type: ExtinguisherCabinetFilled - components: - - pos: -15.5,42.5 - parent: 30 - type: Transform -- uid: 5848 - type: ExtinguisherCabinetFilled - components: - - pos: -16.5,36.5 - parent: 30 - type: Transform -- uid: 5849 - type: ExtinguisherCabinetFilled - components: - - pos: -5.5,36.5 - parent: 30 - type: Transform -- uid: 5850 - type: ExtinguisherCabinetFilled - components: - - pos: -44.5,59.5 - parent: 30 - type: Transform -- uid: 5851 - type: ExtinguisherCabinetFilled - components: - - pos: -36.5,54.5 - parent: 30 - type: Transform -- uid: 5852 - type: ExtinguisherCabinetFilled - components: - - pos: -32.5,41.5 - parent: 30 - type: Transform -- uid: 5853 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -36.5,60.5 - parent: 30 - type: Transform -- uid: 5854 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.4845314,42.633118 - parent: 30 - type: Transform -- uid: 5855 - type: Poweredlight - components: - - pos: -3.5,41.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5856 - type: Poweredlight - components: - - pos: -15.5,41.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5857 - type: TintedWindow - components: - - pos: -25.5,-11.5 - parent: 30 - type: Transform -- uid: 5858 - type: Poweredlight - components: - - pos: -7.5,46.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5859 - type: TintedWindow - components: - - pos: -20.5,-12.5 - parent: 30 - type: Transform -- uid: 5860 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,44.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5861 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -13.5,45.5 - parent: 30 - type: Transform -- uid: 5862 - type: APCBasic - components: - - pos: 4.5,35.5 - parent: 30 - type: Transform - - startingCharge: 12000 - type: Battery -- uid: 5863 - type: CableMV - components: - - pos: -22.5,39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5864 - type: CableMV - components: - - pos: -21.5,39.5 - parent: 30 - type: Transform -- uid: 5865 - type: CableMV - components: - - pos: -20.5,39.5 - parent: 30 - type: Transform -- uid: 5866 - type: CableMV - components: - - pos: -19.5,39.5 - parent: 30 - type: Transform -- uid: 5867 - type: CableMV - components: - - pos: -18.5,39.5 - parent: 30 - type: Transform -- uid: 5868 - type: CableMV - components: - - pos: -17.5,39.5 - parent: 30 - type: Transform -- uid: 5869 - type: CableMV - components: - - pos: -16.5,39.5 - parent: 30 - type: Transform -- uid: 5870 - type: CableMV - components: - - pos: -15.5,39.5 - parent: 30 - type: Transform -- uid: 5871 - type: CableMV - components: - - pos: -14.5,39.5 - parent: 30 - type: Transform -- uid: 5872 - type: CableMV - components: - - pos: -13.5,39.5 - parent: 30 - type: Transform -- uid: 5873 - type: CableMV - components: - - pos: -12.5,39.5 - parent: 30 - type: Transform -- uid: 5874 - type: CableMV - components: - - pos: -11.5,39.5 - parent: 30 - type: Transform -- uid: 5875 - type: CableMV - components: - - pos: -11.5,40.5 - parent: 30 - type: Transform -- uid: 5876 - type: CableMV - components: - - pos: -11.5,41.5 - parent: 30 - type: Transform -- uid: 5877 - type: CableMV - components: - - pos: -11.5,42.5 - parent: 30 - type: Transform -- uid: 5878 - type: CableMV - components: - - pos: -11.5,43.5 - parent: 30 - type: Transform -- uid: 5879 - type: CableMV - components: - - pos: -11.5,44.5 - parent: 30 - type: Transform -- uid: 5880 - type: CableMV - components: - - pos: -11.5,45.5 - parent: 30 - type: Transform -- uid: 5881 - type: CableMV - components: - - pos: -12.5,45.5 - parent: 30 - type: Transform -- uid: 5882 - type: CableMV - components: - - pos: -13.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5883 - type: CableMV - components: - - pos: -10.5,39.5 - parent: 30 - type: Transform -- uid: 5884 - type: CableMV - components: - - pos: -9.5,39.5 - parent: 30 - type: Transform -- uid: 5885 - type: CableMV - components: - - pos: -8.5,39.5 - parent: 30 - type: Transform -- uid: 5886 - type: CableMV - components: - - pos: -7.5,39.5 - parent: 30 - type: Transform -- uid: 5887 - type: CableMV - components: - - pos: -6.5,39.5 - parent: 30 - type: Transform -- uid: 5888 - type: CableMV - components: - - pos: -5.5,39.5 - parent: 30 - type: Transform -- uid: 5889 - type: CableMV - components: - - pos: -4.5,39.5 - parent: 30 - type: Transform -- uid: 5890 - type: CableMV - components: - - pos: -3.5,39.5 - parent: 30 - type: Transform -- uid: 5891 - type: CableMV - components: - - pos: -3.5,38.5 - parent: 30 - type: Transform -- uid: 5892 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5893 - type: CableMV - components: - - pos: -3.5,36.5 - parent: 30 - type: Transform -- uid: 5894 - type: CableMV - components: - - pos: -3.5,36.5 - parent: 30 - type: Transform -- uid: 5895 - type: CableMV - components: - - pos: -3.5,35.5 - parent: 30 - type: Transform -- uid: 5896 - type: CableMV - components: - - pos: -3.5,34.5 - parent: 30 - type: Transform -- uid: 5897 - type: CableMV - components: - - pos: -3.5,33.5 - parent: 30 - type: Transform -- uid: 5898 - type: CableMV - components: - - pos: -3.5,32.5 - parent: 30 - type: Transform -- uid: 5899 - type: CableMV - components: - - pos: -2.5,32.5 - parent: 30 - type: Transform -- uid: 5900 - type: CableMV - components: - - pos: -1.5,32.5 - parent: 30 - type: Transform -- uid: 5901 - type: CableMV - components: - - pos: -0.5,32.5 - parent: 30 - type: Transform -- uid: 5902 - type: CableMV - components: - - pos: 0.5,32.5 - parent: 30 - type: Transform -- uid: 5903 - type: CableMV - components: - - pos: 1.5,32.5 - parent: 30 - type: Transform -- uid: 5904 - type: CableMV - components: - - pos: 2.5,32.5 - parent: 30 - type: Transform -- uid: 5905 - type: CableMV - components: - - pos: 3.5,32.5 - parent: 30 - type: Transform -- uid: 5906 - type: CableMV - components: - - pos: 4.5,32.5 - parent: 30 - type: Transform -- uid: 5907 - type: CableMV - components: - - pos: 4.5,33.5 - parent: 30 - type: Transform -- uid: 5908 - type: CableMV - components: - - pos: 4.5,34.5 - parent: 30 - type: Transform -- uid: 5909 - type: CableMV - components: - - pos: 4.5,35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5910 - type: CableApcExtension - components: - - pos: 4.5,35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5911 - type: CableApcExtension - components: - - pos: 4.5,34.5 - parent: 30 - type: Transform -- uid: 5912 - type: CableApcExtension - components: - - pos: 4.5,33.5 - parent: 30 - type: Transform -- uid: 5913 - type: CableApcExtension - components: - - pos: 4.5,32.5 - parent: 30 - type: Transform -- uid: 5914 - type: CableApcExtension - components: - - pos: 4.5,31.5 - parent: 30 - type: Transform -- uid: 5915 - type: CableApcExtension - components: - - pos: 4.5,32.5 - parent: 30 - type: Transform -- uid: 5916 - type: CableApcExtension - components: - - pos: 3.5,32.5 - parent: 30 - type: Transform -- uid: 5917 - type: CableApcExtension - components: - - pos: 2.5,32.5 - parent: 30 - type: Transform -- uid: 5918 - type: CableApcExtension - components: - - pos: 1.5,32.5 - parent: 30 - type: Transform -- uid: 5919 - type: CableApcExtension - components: - - pos: 0.5,32.5 - parent: 30 - type: Transform -- uid: 5920 - type: CableApcExtension - components: - - pos: -0.5,32.5 - parent: 30 - type: Transform -- uid: 5921 - type: CableApcExtension - components: - - pos: -1.5,32.5 - parent: 30 - type: Transform -- uid: 5922 - type: CableApcExtension - components: - - pos: -0.5,33.5 - parent: 30 - type: Transform -- uid: 5923 - type: CableApcExtension - components: - - pos: -0.5,34.5 - parent: 30 - type: Transform -- uid: 5924 - type: CableApcExtension - components: - - pos: -0.5,35.5 - parent: 30 - type: Transform -- uid: 5925 - type: CableApcExtension - components: - - pos: 0.5,35.5 - parent: 30 - type: Transform -- uid: 5926 - type: CableApcExtension - components: - - pos: 5.5,33.5 - parent: 30 - type: Transform -- uid: 5927 - type: CableApcExtension - components: - - pos: 6.5,33.5 - parent: 30 - type: Transform -- uid: 5928 - type: CableApcExtension - components: - - pos: -2.5,32.5 - parent: 30 - type: Transform -- uid: 5929 - type: CableApcExtension - components: - - pos: -3.5,32.5 - parent: 30 - type: Transform -- uid: 5930 - type: CableApcExtension - components: - - pos: -3.5,31.5 - parent: 30 - type: Transform -- uid: 5931 - type: CableApcExtension - components: - - pos: -3.5,30.5 - parent: 30 - type: Transform -- uid: 5932 - type: CableApcExtension - components: - - pos: -3.5,29.5 - parent: 30 - type: Transform -- uid: 5933 - type: CableApcExtension - components: - - pos: -3.5,28.5 - parent: 30 - type: Transform -- uid: 5934 - type: CableApcExtension - components: - - pos: -3.5,33.5 - parent: 30 - type: Transform -- uid: 5935 - type: CableApcExtension - components: - - pos: -3.5,34.5 - parent: 30 - type: Transform -- uid: 5936 - type: CableApcExtension - components: - - pos: -3.5,35.5 - parent: 30 - type: Transform -- uid: 5937 - type: CableApcExtension - components: - - pos: -3.5,36.5 - parent: 30 - type: Transform -- uid: 5938 - type: CableApcExtension - components: - - pos: -3.5,37.5 - parent: 30 - type: Transform -- uid: 5939 - type: CableApcExtension - components: - - pos: -2.5,37.5 - parent: 30 - type: Transform -- uid: 5940 - type: CableApcExtension - components: - - pos: -1.5,37.5 - parent: 30 - type: Transform -- uid: 5941 - type: CableApcExtension - components: - - pos: -0.5,37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5942 - type: CableApcExtension - components: - - pos: -0.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5943 - type: CableApcExtension - components: - - pos: -0.5,39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5944 - type: CableApcExtension - components: - - pos: -0.5,40.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5945 - type: CableApcExtension - components: - - pos: -13.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5946 - type: CableApcExtension - components: - - pos: -12.5,45.5 - parent: 30 - type: Transform -- uid: 5947 - type: CableApcExtension - components: - - pos: -11.5,45.5 - parent: 30 - type: Transform -- uid: 5948 - type: CableApcExtension - components: - - pos: -10.5,45.5 - parent: 30 - type: Transform -- uid: 5949 - type: CableApcExtension - components: - - pos: -9.5,45.5 - parent: 30 - type: Transform -- uid: 5950 - type: CableApcExtension - components: - - pos: -8.5,45.5 - parent: 30 - type: Transform -- uid: 5951 - type: CableApcExtension - components: - - pos: -7.5,45.5 - parent: 30 - type: Transform -- uid: 5952 - type: CableApcExtension - components: - - pos: -6.5,45.5 - parent: 30 - type: Transform -- uid: 5953 - type: CableApcExtension - components: - - pos: -11.5,44.5 - parent: 30 - type: Transform -- uid: 5954 - type: CableApcExtension - components: - - pos: -11.5,43.5 - parent: 30 - type: Transform -- uid: 5955 - type: CableApcExtension - components: - - pos: -11.5,42.5 - parent: 30 - type: Transform -- uid: 5956 - type: CableApcExtension - components: - - pos: -11.5,41.5 - parent: 30 - type: Transform -- uid: 5957 - type: CableApcExtension - components: - - pos: -11.5,40.5 - parent: 30 - type: Transform -- uid: 5958 - type: CableApcExtension - components: - - pos: -11.5,39.5 - parent: 30 - type: Transform -- uid: 5959 - type: CableApcExtension - components: - - pos: -10.5,39.5 - parent: 30 - type: Transform -- uid: 5960 - type: CableApcExtension - components: - - pos: -9.5,39.5 - parent: 30 - type: Transform -- uid: 5961 - type: CableApcExtension - components: - - pos: -9.5,38.5 - parent: 30 - type: Transform -- uid: 5962 - type: CableApcExtension - components: - - pos: -9.5,37.5 - parent: 30 - type: Transform -- uid: 5963 - type: CableApcExtension - components: - - pos: -9.5,36.5 - parent: 30 - type: Transform -- uid: 5964 - type: CableApcExtension - components: - - pos: -10.5,36.5 - parent: 30 - type: Transform -- uid: 5965 - type: CableApcExtension - components: - - pos: -11.5,36.5 - parent: 30 - type: Transform -- uid: 5966 - type: CableApcExtension - components: - - pos: -12.5,36.5 - parent: 30 - type: Transform -- uid: 5967 - type: CableApcExtension - components: - - pos: -12.5,35.5 - parent: 30 - type: Transform -- uid: 5968 - type: CableApcExtension - components: - - pos: -12.5,34.5 - parent: 30 - type: Transform -- uid: 5969 - type: CableApcExtension - components: - - pos: -12.5,33.5 - parent: 30 - type: Transform -- uid: 5970 - type: CableApcExtension - components: - - pos: -12.5,32.5 - parent: 30 - type: Transform -- uid: 5971 - type: CableApcExtension - components: - - pos: -11.5,32.5 - parent: 30 - type: Transform -- uid: 5972 - type: CableApcExtension - components: - - pos: -10.5,32.5 - parent: 30 - type: Transform -- uid: 5973 - type: CableApcExtension - components: - - pos: -10.5,31.5 - parent: 30 - type: Transform -- uid: 5974 - type: CableApcExtension - components: - - pos: -9.5,31.5 - parent: 30 - type: Transform -- uid: 5975 - type: CableApcExtension - components: - - pos: -8.5,31.5 - parent: 30 - type: Transform -- uid: 5976 - type: CableApcExtension - components: - - pos: -8.5,32.5 - parent: 30 - type: Transform -- uid: 5977 - type: CableApcExtension - components: - - pos: -7.5,32.5 - parent: 30 - type: Transform -- uid: 5978 - type: CableApcExtension - components: - - pos: -6.5,32.5 - parent: 30 - type: Transform -- uid: 5979 - type: CableApcExtension - components: - - pos: -6.5,33.5 - parent: 30 - type: Transform -- uid: 5980 - type: CableApcExtension - components: - - pos: -6.5,34.5 - parent: 30 - type: Transform -- uid: 5981 - type: CableApcExtension - components: - - pos: -6.5,35.5 - parent: 30 - type: Transform -- uid: 5982 - type: CableApcExtension - components: - - pos: -6.5,36.5 - parent: 30 - type: Transform -- uid: 5983 - type: CableApcExtension - components: - - pos: -7.5,36.5 - parent: 30 - type: Transform -- uid: 5984 - type: CableApcExtension - components: - - pos: -8.5,36.5 - parent: 30 - type: Transform -- uid: 5985 - type: CableApcExtension - components: - - pos: -12.5,39.5 - parent: 30 - type: Transform -- uid: 5986 - type: CableApcExtension - components: - - pos: -13.5,39.5 - parent: 30 - type: Transform -- uid: 5987 - type: CableApcExtension - components: - - pos: -14.5,39.5 - parent: 30 - type: Transform -- uid: 5988 - type: CableApcExtension - components: - - pos: -14.5,38.5 - parent: 30 - type: Transform -- uid: 5989 - type: CableApcExtension - components: - - pos: -14.5,37.5 - parent: 30 - type: Transform -- uid: 5990 - type: CableApcExtension - components: - - pos: -14.5,36.5 - parent: 30 - type: Transform -- uid: 5991 - type: CableApcExtension - components: - - pos: -14.5,35.5 - parent: 30 - type: Transform -- uid: 5992 - type: CableApcExtension - components: - - pos: -14.5,35.5 - parent: 30 - type: Transform -- uid: 5993 - type: CableApcExtension - components: - - pos: -14.5,34.5 - parent: 30 - type: Transform -- uid: 5994 - type: CableApcExtension - components: - - pos: -14.5,33.5 - parent: 30 - type: Transform -- uid: 5995 - type: CableApcExtension - components: - - pos: -14.5,32.5 - parent: 30 - type: Transform -- uid: 5996 - type: CableApcExtension - components: - - pos: -14.5,31.5 - parent: 30 - type: Transform -- uid: 5997 - type: CableApcExtension - components: - - pos: -14.5,30.5 - parent: 30 - type: Transform -- uid: 5998 - type: CableApcExtension - components: - - pos: -14.5,29.5 - parent: 30 - type: Transform -- uid: 5999 - type: CableApcExtension - components: - - pos: -14.5,28.5 - parent: 30 - type: Transform -- uid: 6000 - type: CableApcExtension - components: - - pos: -8.5,39.5 - parent: 30 - type: Transform -- uid: 6001 - type: CableApcExtension - components: - - pos: -7.5,39.5 - parent: 30 - type: Transform -- uid: 6002 - type: CableApcExtension - components: - - pos: -7.5,40.5 - parent: 30 - type: Transform -- uid: 6003 - type: CableApcExtension - components: - - pos: -7.5,41.5 - parent: 30 - type: Transform -- uid: 6004 - type: CableApcExtension - components: - - pos: -7.5,42.5 - parent: 30 - type: Transform -- uid: 6005 - type: CableApcExtension - components: - - pos: -7.5,43.5 - parent: 30 - type: Transform -- uid: 6006 - type: CableApcExtension - components: - - pos: -7.5,44.5 - parent: 30 - type: Transform -- uid: 6007 - type: CableApcExtension - components: - - pos: -6.5,39.5 - parent: 30 - type: Transform -- uid: 6008 - type: CableApcExtension - components: - - pos: -5.5,39.5 - parent: 30 - type: Transform -- uid: 6009 - type: CableApcExtension - components: - - pos: -4.5,39.5 - parent: 30 - type: Transform -- uid: 6010 - type: CableApcExtension - components: - - pos: -3.5,39.5 - parent: 30 - type: Transform -- uid: 6011 - type: CableApcExtension - components: - - pos: -3.5,40.5 - parent: 30 - type: Transform -- uid: 6012 - type: CableApcExtension - components: - - pos: -3.5,41.5 - parent: 30 - type: Transform -- uid: 6013 - type: CableApcExtension - components: - - pos: -6.5,41.5 - parent: 30 - type: Transform -- uid: 6014 - type: CableApcExtension - components: - - pos: -5.5,41.5 - parent: 30 - type: Transform -- uid: 6015 - type: CableApcExtension - components: - - pos: -12.5,41.5 - parent: 30 - type: Transform -- uid: 6016 - type: CableApcExtension - components: - - pos: -14.5,41.5 - parent: 30 - type: Transform -- uid: 6017 - type: CableApcExtension - components: - - pos: -13.5,41.5 - parent: 30 - type: Transform -- uid: 6018 - type: CableApcExtension - components: - - pos: -10.5,42.5 - parent: 30 - type: Transform -- uid: 6019 - type: CableApcExtension - components: - - pos: -9.5,42.5 - parent: 30 - type: Transform -- uid: 6020 - type: CableApcExtension - components: - - pos: -15.5,39.5 - parent: 30 - type: Transform -- uid: 6021 - type: CableApcExtension - components: - - pos: -16.5,39.5 - parent: 30 - type: Transform -- uid: 6022 - type: CableApcExtension - components: - - pos: -17.5,39.5 - parent: 30 - type: Transform -- uid: 6023 - type: CableApcExtension - components: - - pos: -18.5,39.5 - parent: 30 - type: Transform -- uid: 6024 - type: CableApcExtension - components: - - pos: -19.5,39.5 - parent: 30 - type: Transform -- uid: 6025 - type: CableApcExtension - components: - - pos: -20.5,39.5 - parent: 30 - type: Transform -- uid: 6026 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -19.5,39.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6027 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,38.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6028 - type: AirlockCommandLocked - components: - - name: AI Core tube - type: MetaData - - pos: -19.5,41.5 - parent: 30 - type: Transform -- uid: 6029 - type: WallSolid - components: - - pos: -20.5,41.5 - parent: 30 - type: Transform -- uid: 6030 - type: WallSolid - components: - - pos: -18.5,41.5 - parent: 30 - type: Transform -- uid: 6031 - type: DisposalUnit - components: - - pos: -12.5,38.5 - parent: 30 - type: Transform -- uid: 6032 - type: OxygenCanister - components: - - pos: -1.5,38.5 - parent: 30 - type: Transform -- uid: 6033 - type: CableApcExtension - components: - - pos: -24.5,26.5 - parent: 30 - type: Transform -- uid: 6034 - type: CableApcExtension - components: - - pos: -23.5,26.5 - parent: 30 - type: Transform -- uid: 6035 - type: CableApcExtension - components: - - pos: -22.5,26.5 - parent: 30 - type: Transform -- uid: 6036 - type: CableApcExtension - components: - - pos: -21.5,26.5 - parent: 30 - type: Transform -- uid: 6037 - type: CableApcExtension - components: - - pos: -20.5,26.5 - parent: 30 - type: Transform -- uid: 6038 - type: CableApcExtension - components: - - pos: -19.5,26.5 - parent: 30 - type: Transform -- uid: 6039 - type: CableApcExtension - components: - - pos: -18.5,26.5 - parent: 30 - type: Transform -- uid: 6040 - type: CableApcExtension - components: - - pos: -17.5,26.5 - parent: 30 - type: Transform -- uid: 6041 - type: CableApcExtension - components: - - pos: -16.5,26.5 - parent: 30 - type: Transform -- uid: 6042 - type: CableApcExtension - components: - - pos: -15.5,26.5 - parent: 30 - type: Transform -- uid: 6043 - type: CableApcExtension - components: - - pos: -14.5,26.5 - parent: 30 - type: Transform -- uid: 6044 - type: CableApcExtension - components: - - pos: -13.5,26.5 - parent: 30 - type: Transform -- uid: 6045 - type: CableApcExtension - components: - - pos: -12.5,26.5 - parent: 30 - type: Transform -- uid: 6046 - type: CableApcExtension - components: - - pos: -11.5,26.5 - parent: 30 - type: Transform -- uid: 6047 - type: CableApcExtension - components: - - pos: -10.5,26.5 - parent: 30 - type: Transform -- uid: 6048 - type: CableApcExtension - components: - - pos: -8.5,26.5 - parent: 30 - type: Transform -- uid: 6049 - type: CableApcExtension - components: - - pos: -7.5,26.5 - parent: 30 - type: Transform -- uid: 6050 - type: CableApcExtension - components: - - pos: -9.5,26.5 - parent: 30 - type: Transform -- uid: 6051 - type: CableApcExtension - components: - - pos: -6.5,26.5 - parent: 30 - type: Transform -- uid: 6052 - type: CableApcExtension - components: - - pos: -5.5,26.5 - parent: 30 - type: Transform -- uid: 6053 - type: CableApcExtension - components: - - pos: -4.5,26.5 - parent: 30 - type: Transform -- uid: 6054 - type: CableApcExtension - components: - - pos: -0.5,24.5 - parent: 30 - type: Transform -- uid: 6055 - type: CableApcExtension - components: - - pos: -0.5,25.5 - parent: 30 - type: Transform -- uid: 6056 - type: CableApcExtension - components: - - pos: -0.5,26.5 - parent: 30 - type: Transform -- uid: 6057 - type: CableApcExtension - components: - - pos: -1.5,26.5 - parent: 30 - type: Transform -- uid: 6058 - type: CableApcExtension - components: - - pos: -2.5,26.5 - parent: 30 - type: Transform -- uid: 6059 - type: CableApcExtension - components: - - pos: -0.5,27.5 - parent: 30 - type: Transform -- uid: 6060 - type: CableApcExtension - components: - - pos: -0.5,28.5 - parent: 30 - type: Transform -- uid: 6061 - type: CableApcExtension - components: - - pos: -0.5,29.5 - parent: 30 - type: Transform -- uid: 6062 - type: CableApcExtension - components: - - pos: 0.5,29.5 - parent: 30 - type: Transform -- uid: 6063 - type: CableApcExtension - components: - - pos: 1.5,29.5 - parent: 30 - type: Transform -- uid: 6064 - type: CableApcExtension - components: - - pos: 3.5,29.5 - parent: 30 - type: Transform -- uid: 6065 - type: CableApcExtension - components: - - pos: 2.5,29.5 - parent: 30 - type: Transform -- uid: 6066 - type: CableApcExtension - components: - - pos: 4.5,29.5 - parent: 30 - type: Transform -- uid: 6067 - type: CableApcExtension - components: - - pos: 0.5,26.5 - parent: 30 - type: Transform -- uid: 6068 - type: CableApcExtension - components: - - pos: 1.5,26.5 - parent: 30 - type: Transform -- uid: 6069 - type: CableApcExtension - components: - - pos: 2.5,26.5 - parent: 30 - type: Transform -- uid: 6070 - type: CableApcExtension - components: - - pos: 3.5,26.5 - parent: 30 - type: Transform -- uid: 6071 - type: CableApcExtension - components: - - pos: 4.5,26.5 - parent: 30 - type: Transform -- uid: 6072 - type: CableApcExtension - components: - - pos: 5.5,26.5 - parent: 30 - type: Transform -- uid: 6073 - type: CableApcExtension - components: - - pos: 6.5,26.5 - parent: 30 - type: Transform -- uid: 6074 - type: CableApcExtension - components: - - pos: 7.5,26.5 - parent: 30 - type: Transform -- uid: 6075 - type: CableApcExtension - components: - - pos: 4.5,25.5 - parent: 30 - type: Transform -- uid: 6076 - type: CableApcExtension - components: - - pos: 4.5,24.5 - parent: 30 - type: Transform -- uid: 6077 - type: CableApcExtension - components: - - pos: 4.5,23.5 - parent: 30 - type: Transform -- uid: 6078 - type: CableApcExtension - components: - - pos: 4.5,22.5 - parent: 30 - type: Transform -- uid: 6079 - type: CableApcExtension - components: - - pos: 4.5,21.5 - parent: 30 - type: Transform -- uid: 6080 - type: CableApcExtension - components: - - pos: 4.5,20.5 - parent: 30 - type: Transform -- uid: 6081 - type: CableApcExtension - components: - - pos: 3.5,22.5 - parent: 30 - type: Transform -- uid: 6082 - type: CableApcExtension - components: - - pos: 2.5,22.5 - parent: 30 - type: Transform -- uid: 6083 - type: CableApcExtension - components: - - pos: 5.5,21.5 - parent: 30 - type: Transform -- uid: 6084 - type: CableApcExtension - components: - - pos: 6.5,21.5 - parent: 30 - type: Transform -- uid: 6085 - type: CableApcExtension - components: - - pos: 5.5,23.5 - parent: 30 - type: Transform -- uid: 6086 - type: CableApcExtension - components: - - pos: 6.5,23.5 - parent: 30 - type: Transform -- uid: 6087 - type: CableApcExtension - components: - - pos: 3.5,20.5 - parent: 30 - type: Transform -- uid: 6088 - type: CableApcExtension - components: - - pos: 7.5,26.5 - parent: 30 - type: Transform -- uid: 6089 - type: FirelockGlass - components: - - pos: 10.5,28.5 - parent: 30 - type: Transform -- uid: 6090 - type: FirelockGlass - components: - - pos: 9.5,28.5 - parent: 30 - type: Transform -- uid: 6091 - type: FirelockGlass - components: - - pos: 8.5,28.5 - parent: 30 - type: Transform -- uid: 6092 - type: FirelockGlass - components: - - pos: 6.5,25.5 - parent: 30 - type: Transform -- uid: 6093 - type: FirelockGlass - components: - - pos: 6.5,26.5 - parent: 30 - type: Transform -- uid: 6094 - type: FirelockGlass - components: - - pos: 6.5,27.5 - parent: 30 - type: Transform -- uid: 6095 - type: CableHV - components: - - pos: -21.5,-58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6096 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,36.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6097 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -7.5,31.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6098 - type: SignDirectionalWash - components: - - rot: 1.5707963267948966 rad - pos: 25.5,27.5 - parent: 30 - type: Transform -- uid: 6099 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,32.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6100 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,29.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6101 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,29.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6102 - type: FirelockGlass - components: - - pos: -12.5,25.5 - parent: 30 - type: Transform -- uid: 6103 - type: FirelockGlass - components: - - pos: -12.5,26.5 - parent: 30 - type: Transform -- uid: 6104 - type: FirelockGlass - components: - - pos: -12.5,27.5 - parent: 30 - type: Transform -- uid: 6105 - type: FirelockGlass - components: - - pos: -6.5,25.5 - parent: 30 - type: Transform -- uid: 6106 - type: FirelockGlass - components: - - pos: -6.5,26.5 - parent: 30 - type: Transform -- uid: 6107 - type: FirelockGlass - components: - - pos: -6.5,27.5 - parent: 30 - type: Transform -- uid: 6108 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -19.5,26.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6109 - type: GasVentPump - components: - - pos: -23.5,26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6110 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6111 - type: GasPipeTJunction - components: - - pos: -10.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6112 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 0.5,26.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6113 - type: GasVentPump - components: - - pos: 3.5,26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6114 - type: GasPipeStraight - components: - - pos: -2.5,26.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6115 - type: GasPipeStraight - components: - - pos: -2.5,25.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6116 - type: GasPipeStraight - components: - - pos: -2.5,24.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6117 - type: GasPipeStraight - components: - - pos: -2.5,23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6118 - type: GasPipeStraight - components: - - pos: -2.5,22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6119 - type: GasPipeStraight - components: - - pos: -0.5,24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6120 - type: GasPipeStraight - components: - - pos: -0.5,23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6121 - type: GasPipeStraight - components: - - pos: -0.5,22.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6122 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -2.5,21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6123 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -0.5,21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6124 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,28.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6125 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,29.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6126 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6127 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,31.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6128 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,32.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6129 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,33.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6130 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,34.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6131 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6132 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -14.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6133 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6134 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,38.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6135 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6136 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,28.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6137 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,29.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6138 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6139 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,31.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6140 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -4.5,32.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6141 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,33.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6142 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,34.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6143 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6144 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6145 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6146 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,38.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6147 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6148 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -14.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6149 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6150 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6151 - type: GasPipeTJunction - components: - - pos: -11.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6152 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6153 - type: GasPipeTJunction - components: - - pos: -9.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6154 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6155 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6156 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6157 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6158 - type: GasPipeBend - components: - - pos: -4.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6159 - type: GasPipeStraight - components: - - pos: -15.5,26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6160 - type: GasPipeStraight - components: - - pos: -15.5,27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6161 - type: GasPipeStraight - components: - - pos: -15.5,28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6162 - type: GasPipeStraight - components: - - pos: -15.5,29.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6163 - type: GasPipeStraight - components: - - pos: -15.5,30.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6164 - type: GasPipeStraight - components: - - pos: -15.5,31.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6165 - type: GasPipeStraight - components: - - pos: -15.5,32.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6166 - type: GasPipeStraight - components: - - pos: -15.5,33.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6167 - type: GasPipeStraight - components: - - pos: -15.5,34.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6168 - type: GasPipeStraight - components: - - pos: -15.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6169 - type: GasPipeStraight - components: - - pos: -15.5,36.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6170 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6171 - type: GasPipeStraight - components: - - pos: -15.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6172 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6173 - type: GasPipeStraight - components: - - pos: -15.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6174 - type: GasPipeStraight - components: - - pos: -3.5,26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6175 - type: GasPipeStraight - components: - - pos: -3.5,27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6176 - type: GasPipeStraight - components: - - pos: -3.5,28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6177 - type: GasPipeStraight - components: - - pos: -3.5,29.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6178 - type: GasPipeStraight - components: - - pos: -3.5,30.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6179 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,31.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6180 - type: GasPipeStraight - components: - - pos: -3.5,32.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6181 - type: GasPipeStraight - components: - - pos: -3.5,33.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6182 - type: GasPipeStraight - components: - - pos: -3.5,34.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6183 - type: GasPipeStraight - components: - - pos: -3.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6184 - type: GasPipeStraight - components: - - pos: -3.5,36.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6185 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6186 - type: GasPipeStraight - components: - - pos: -3.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6187 - type: GasPipeStraight - components: - - pos: -3.5,39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6188 - type: GasPipeStraight - components: - - pos: -3.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6189 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6190 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6191 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6192 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6193 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -9.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6194 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6195 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6196 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6197 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6198 - type: GasPipeBend - components: - - pos: -3.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6199 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -7.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6200 - type: GasPipeBend - components: - - pos: -7.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6201 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -11.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6202 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -11.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6203 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -15.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6204 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -9.5,39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6205 - type: GasVentPump - components: - - pos: -9.5,43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6206 - type: GasPipeStraight - components: - - pos: -11.5,39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6207 - type: GasPipeStraight - components: - - pos: -11.5,38.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6208 - type: GasPipeStraight - components: - - pos: -11.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6209 - type: GasPipeStraight - components: - - pos: -7.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6210 - type: GasPipeStraight - components: - - pos: -7.5,39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6211 - type: GasPipeStraight - components: - - pos: -7.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6212 - type: GasPipeStraight - components: - - pos: -7.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6213 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -11.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6214 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -7.5,36.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6215 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,32.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6216 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,32.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6217 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,32.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6218 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,32.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6219 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,31.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6220 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,31.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6221 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,31.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6222 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 0.5,32.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6223 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 0.5,31.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6224 - type: AirAlarm - components: - - pos: -8.5,12.5 - parent: 30 - type: Transform - - devices: - - 20382 - - 20381 - - 20380 - - 20379 - - 20378 - - 20377 - - 645 - - 646 - - 647 - - 648 - - 649 - - 650 - - 651 - - 598 - - 599 - - 597 - - 596 - - 602 - - 601 - - 600 - - 22086 - - 3421 - - 3422 - type: DeviceList -- uid: 6225 - type: CableMV - components: - - pos: -3.5,37.5 - parent: 30 - type: Transform -- uid: 6226 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6227 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6228 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6229 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -19.5,39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6230 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6231 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6232 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6233 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6234 - type: GasPipeTJunction - components: - - pos: -20.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6235 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6236 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6237 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6238 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6239 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -25.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6240 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -20.5,36.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6241 - type: GasPipeStraight - components: - - pos: -20.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6242 - type: GasPipeStraight - components: - - pos: -20.5,34.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6243 - type: GasPipeStraight - components: - - pos: -20.5,33.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6244 - type: GasPipeStraight - components: - - pos: -20.5,32.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6245 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -20.5,31.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6246 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -19.5,36.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6247 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6248 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6249 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6250 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -18.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6251 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -18.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6252 - type: GasPipeTJunction - components: - - pos: -19.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6253 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6254 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -21.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6255 - type: GasPipeBend - components: - - pos: -21.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6256 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6257 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6258 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6259 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6260 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -26.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6261 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -26.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6262 - type: GasPipeBend - components: - - pos: -26.5,39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6263 - type: GasPipeStraight - components: - - pos: -26.5,38.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6264 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6265 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -27.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6266 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -21.5,34.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6267 - type: GasPipeStraight - components: - - pos: -19.5,32.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6268 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -19.5,31.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6269 - type: TableWood - components: - - pos: -19.5,35.5 - parent: 30 - type: Transform -- uid: 6270 - type: CarpetBlue - components: - - pos: -19.5,35.5 - parent: 30 - type: Transform -- uid: 6271 - type: CableHV - components: - - pos: -29.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6272 - type: CableHV - components: - - pos: -3.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6273 - type: CableMV - components: - - pos: -3.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6274 - type: CableMV - components: - - pos: -29.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6277 - type: DisposalUnit - components: - - pos: 7.5,35.5 - parent: 30 - type: Transform -- uid: 6278 - type: Table - components: - - pos: 11.5,30.5 - parent: 30 - type: Transform -- uid: 6279 - type: Table - components: - - pos: 11.5,34.5 - parent: 30 - type: Transform -- uid: 6280 - type: Chair - components: - - pos: 11.5,35.5 - parent: 30 - type: Transform -- uid: 6281 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 11.5,33.5 - parent: 30 - type: Transform -- uid: 6282 - type: Chair - components: - - pos: 11.5,31.5 - parent: 30 - type: Transform -- uid: 6283 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 11.5,29.5 - parent: 30 - type: Transform -- uid: 6284 - type: CrowbarRed - components: - - pos: 11.455861,34.475574 - parent: 30 - type: Transform -- uid: 6285 - type: FirelockGlass - components: - - pos: 9.5,36.5 - parent: 30 - type: Transform -- uid: 6286 - type: FirelockGlass - components: - - pos: 6.5,33.5 - parent: 30 - type: Transform -- uid: 6287 - type: AirlockGlass - components: - - pos: 12.5,25.5 - parent: 30 - type: Transform -- uid: 6288 - type: AirlockGlass - components: - - pos: 12.5,26.5 - parent: 30 - type: Transform -- uid: 6289 - type: AirlockGlass - components: - - pos: 12.5,27.5 - parent: 30 - type: Transform -- uid: 6290 - type: ReinforcedWindow - components: - - pos: 13.5,28.5 - parent: 30 - type: Transform -- uid: 6291 - type: ReinforcedWindow - components: - - pos: 14.5,28.5 - parent: 30 - type: Transform -- uid: 6292 - type: Grille - components: - - pos: 14.5,28.5 - parent: 30 - type: Transform -- uid: 6293 - type: Grille - components: - - pos: 13.5,28.5 - parent: 30 - type: Transform -- uid: 6294 - type: WallReinforced - components: - - pos: 15.5,28.5 - parent: 30 - type: Transform -- uid: 6295 - type: WallReinforced - components: - - pos: 15.5,29.5 - parent: 30 - type: Transform -- uid: 6296 - type: WallReinforced - components: - - pos: 15.5,31.5 - parent: 30 - type: Transform -- uid: 6297 - type: WallReinforced - components: - - pos: 15.5,32.5 - parent: 30 - type: Transform -- uid: 6298 - type: Airlock - components: - - pos: 32.5,29.5 - parent: 30 - type: Transform -- uid: 6299 - type: AirlockExternalLocked - components: - - pos: 17.5,30.5 - parent: 30 - type: Transform -- uid: 6300 - type: WallReinforced - components: - - pos: 16.5,28.5 - parent: 30 - type: Transform -- uid: 6301 - type: WallReinforced - components: - - pos: 17.5,28.5 - parent: 30 - type: Transform -- uid: 6302 - type: WallReinforced - components: - - pos: 16.5,32.5 - parent: 30 - type: Transform -- uid: 6303 - type: WallReinforced - components: - - pos: 17.5,32.5 - parent: 30 - type: Transform -- uid: 6304 - type: WallReinforced - components: - - pos: 17.5,31.5 - parent: 30 - type: Transform -- uid: 6305 - type: WallReinforced - components: - - pos: 17.5,29.5 - parent: 30 - type: Transform -- uid: 6306 - type: ReinforcedWindow - components: - - pos: 15.5,33.5 - parent: 30 - type: Transform -- uid: 6307 - type: ReinforcedWindow - components: - - pos: 15.5,34.5 - parent: 30 - type: Transform -- uid: 6308 - type: ReinforcedWindow - components: - - pos: 15.5,36.5 - parent: 30 - type: Transform -- uid: 6309 - type: ReinforcedWindow - components: - - pos: 15.5,37.5 - parent: 30 - type: Transform -- uid: 6310 - type: ReinforcedWindow - components: - - pos: 15.5,39.5 - parent: 30 - type: Transform -- uid: 6311 - type: ReinforcedWindow - components: - - pos: 15.5,40.5 - parent: 30 - type: Transform -- uid: 6312 - type: WallReinforced - components: - - pos: 15.5,35.5 - parent: 30 - type: Transform -- uid: 6313 - type: WallReinforced - components: - - pos: 15.5,38.5 - parent: 30 - type: Transform -- uid: 6314 - type: WallReinforced - components: - - pos: 15.5,41.5 - parent: 30 - type: Transform -- uid: 6315 - type: WallSolid - components: - - pos: 16.5,35.5 - parent: 30 - type: Transform -- uid: 6316 - type: WallSolid - components: - - pos: 17.5,35.5 - parent: 30 - type: Transform -- uid: 6317 - type: WallSolid - components: - - pos: 18.5,35.5 - parent: 30 - type: Transform -- uid: 6318 - type: WallSolid - components: - - pos: 19.5,35.5 - parent: 30 - type: Transform -- uid: 6319 - type: WallSolid - components: - - pos: 19.5,34.5 - parent: 30 - type: Transform -- uid: 6320 - type: WallSolid - components: - - pos: 16.5,38.5 - parent: 30 - type: Transform -- uid: 6321 - type: WallSolid - components: - - pos: 17.5,38.5 - parent: 30 - type: Transform -- uid: 6322 - type: WallSolid - components: - - pos: 18.5,38.5 - parent: 30 - type: Transform -- uid: 6323 - type: WallSolid - components: - - pos: 19.5,38.5 - parent: 30 - type: Transform -- uid: 6324 - type: WallSolid - components: - - pos: 19.5,37.5 - parent: 30 - type: Transform -- uid: 6325 - type: WallSolid - components: - - pos: 16.5,41.5 - parent: 30 - type: Transform -- uid: 6326 - type: WallSolid - components: - - pos: 17.5,41.5 - parent: 30 - type: Transform -- uid: 6327 - type: WallSolid - components: - - pos: 18.5,41.5 - parent: 30 - type: Transform -- uid: 6328 - type: WallSolid - components: - - pos: 19.5,41.5 - parent: 30 - type: Transform -- uid: 6329 - type: WallSolid - components: - - pos: 19.5,40.5 - parent: 30 - type: Transform -- uid: 6330 - type: WallReinforced - components: - - pos: 19.5,28.5 - parent: 30 - type: Transform -- uid: 6331 - type: WallReinforced - components: - - pos: 20.5,28.5 - parent: 30 - type: Transform -- uid: 6332 - type: WallReinforced - components: - - pos: 20.5,29.5 - parent: 30 - type: Transform -- uid: 6333 - type: WallReinforced - components: - - pos: 20.5,31.5 - parent: 30 - type: Transform -- uid: 6334 - type: WallReinforced - components: - - pos: 20.5,32.5 - parent: 30 - type: Transform -- uid: 6335 - type: WallReinforced - components: - - pos: 19.5,32.5 - parent: 30 - type: Transform -- uid: 6336 - type: WallReinforced - components: - - pos: 18.5,32.5 - parent: 30 - type: Transform -- uid: 6337 - type: WallSolid - components: - - pos: 25.5,27.5 - parent: 30 - type: Transform -- uid: 6338 - type: WallSolid - components: - - pos: 25.5,25.5 - parent: 30 - type: Transform -- uid: 6339 - type: WallSolid - components: - - pos: 25.5,28.5 - parent: 30 - type: Transform -- uid: 6340 - type: WallSolid - components: - - pos: 24.5,28.5 - parent: 30 - type: Transform -- uid: 6341 - type: WallSolid - components: - - pos: 24.5,29.5 - parent: 30 - type: Transform -- uid: 6342 - type: WallSolid - components: - - pos: 24.5,30.5 - parent: 30 - type: Transform -- uid: 6343 - type: WallSolid - components: - - pos: 24.5,31.5 - parent: 30 - type: Transform -- uid: 6344 - type: WallSolid - components: - - pos: 24.5,32.5 - parent: 30 - type: Transform -- uid: 6345 - type: WallSolid - components: - - pos: 25.5,32.5 - parent: 30 - type: Transform -- uid: 6346 - type: WallSolid - components: - - pos: 27.5,32.5 - parent: 30 - type: Transform -- uid: 6347 - type: WallSolid - components: - - pos: 28.5,31.5 - parent: 30 - type: Transform -- uid: 6348 - type: WallReinforced - components: - - pos: 24.5,41.5 - parent: 30 - type: Transform -- uid: 6349 - type: WallSolid - components: - - pos: 35.5,31.5 - parent: 30 - type: Transform -- uid: 6350 - type: WallReinforced - components: - - pos: 27.5,41.5 - parent: 30 - type: Transform -- uid: 6351 - type: WallReinforced - components: - - pos: 26.5,41.5 - parent: 30 - type: Transform -- uid: 6352 - type: WallSolid - components: - - pos: 32.5,43.5 - parent: 30 - type: Transform -- uid: 6353 - type: WallSolid - components: - - pos: 21.5,41.5 - parent: 30 - type: Transform -- uid: 6354 - type: WallSolid - components: - - pos: 22.5,41.5 - parent: 30 - type: Transform -- uid: 6355 - type: WallSolid - components: - - pos: 23.5,41.5 - parent: 30 - type: Transform -- uid: 6356 - type: WallReinforced - components: - - pos: 23.5,43.5 - parent: 30 - type: Transform -- uid: 6357 - type: WallReinforced - components: - - pos: 22.5,43.5 - parent: 30 - type: Transform -- uid: 6358 - type: WallReinforced - components: - - pos: 22.5,42.5 - parent: 30 - type: Transform -- uid: 6359 - type: WallSolid - components: - - pos: 28.5,32.5 - parent: 30 - type: Transform -- uid: 6360 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 24.5,43.5 - parent: 30 - type: Transform -- uid: 6361 - type: WallSolid - components: - - pos: 28.5,33.5 - parent: 30 - type: Transform -- uid: 6362 - type: WardrobeCargoFilled - components: - - pos: 19.5,-9.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6363 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 26.5,43.5 - parent: 30 - type: Transform -- uid: 6364 - type: WallReinforced - components: - - pos: 27.5,43.5 - parent: 30 - type: Transform -- uid: 6365 - type: WallReinforced - components: - - pos: 28.5,43.5 - parent: 30 - type: Transform -- uid: 6366 - type: ClosetFireFilled - components: - - pos: 27.5,42.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6367 - type: WallReinforced - components: - - pos: 22.5,45.5 - parent: 30 - type: Transform -- uid: 6368 - type: WallReinforced - components: - - pos: 22.5,44.5 - parent: 30 - type: Transform -- uid: 6369 - type: AirlockMaintLocked - components: - - pos: 17.5,43.5 - parent: 30 - type: Transform -- uid: 6370 - type: AirlockGlass - components: - - pos: 20.5,41.5 - parent: 30 - type: Transform -- uid: 6371 - type: WallSolid - components: - - pos: 17.5,42.5 - parent: 30 - type: Transform -- uid: 6372 - type: WallReinforced - components: - - pos: 15.5,42.5 - parent: 30 - type: Transform -- uid: 6373 - type: WallReinforced - components: - - pos: 15.5,43.5 - parent: 30 - type: Transform -- uid: 6374 - type: WallReinforced - components: - - pos: 15.5,44.5 - parent: 30 - type: Transform -- uid: 6375 - type: WallReinforced - components: - - pos: 15.5,45.5 - parent: 30 - type: Transform -- uid: 6376 - type: WallReinforced - components: - - pos: 15.5,46.5 - parent: 30 - type: Transform -- uid: 6377 - type: WallReinforced - components: - - pos: 15.5,47.5 - parent: 30 - type: Transform -- uid: 6378 - type: WallSolid - components: - - pos: 17.5,44.5 - parent: 30 - type: Transform -- uid: 6379 - type: Girder - components: - - pos: 43.5,18.5 - parent: 30 - type: Transform -- uid: 6380 - type: WallSolid - components: - - pos: 18.5,45.5 - parent: 30 - type: Transform -- uid: 6381 - type: WallSolid - components: - - pos: 19.5,45.5 - parent: 30 - type: Transform -- uid: 6382 - type: WallSolid - components: - - pos: 20.5,45.5 - parent: 30 - type: Transform -- uid: 6383 - type: WallSolid - components: - - pos: 21.5,45.5 - parent: 30 - type: Transform -- uid: 6384 - type: AirlockEngineeringLocked - components: - - pos: 18.5,28.5 - parent: 30 - type: Transform -- uid: 6385 - type: AirlockEngineeringLocked - components: - - pos: 20.5,30.5 - parent: 30 - type: Transform -- uid: 6386 - type: SubstationBasic - components: - - name: South Dorm Substation - type: MetaData - - pos: 19.5,31.5 - parent: 30 - type: Transform -- uid: 6387 - type: CableHV - components: - - pos: 10.5,33.5 - parent: 30 - type: Transform -- uid: 6388 - type: CableHV - components: - - pos: 10.5,32.5 - parent: 30 - type: Transform -- uid: 6389 - type: CableHV - components: - - pos: 10.5,31.5 - parent: 30 - type: Transform -- uid: 6390 - type: CableHV - components: - - pos: 10.5,30.5 - parent: 30 - type: Transform -- uid: 6391 - type: CableHV - components: - - pos: 10.5,29.5 - parent: 30 - type: Transform -- uid: 6392 - type: CableHV - components: - - pos: 10.5,28.5 - parent: 30 - type: Transform -- uid: 6393 - type: CableHV - components: - - pos: 10.5,27.5 - parent: 30 - type: Transform -- uid: 6394 - type: CableHV - components: - - pos: 11.5,27.5 - parent: 30 - type: Transform -- uid: 6395 - type: CableHV - components: - - pos: 12.5,27.5 - parent: 30 - type: Transform -- uid: 6396 - type: CableHV - components: - - pos: 13.5,27.5 - parent: 30 - type: Transform -- uid: 6397 - type: CableHV - components: - - pos: 14.5,27.5 - parent: 30 - type: Transform -- uid: 6398 - type: CableHV - components: - - pos: 15.5,27.5 - parent: 30 - type: Transform -- uid: 6399 - type: CableHV - components: - - pos: 16.5,27.5 - parent: 30 - type: Transform -- uid: 6400 - type: CableHV - components: - - pos: 17.5,27.5 - parent: 30 - type: Transform -- uid: 6401 - type: CableHV - components: - - pos: 18.5,27.5 - parent: 30 - type: Transform -- uid: 6402 - type: CableHV - components: - - pos: 18.5,28.5 - parent: 30 - type: Transform -- uid: 6403 - type: CableHV - components: - - pos: 18.5,29.5 - parent: 30 - type: Transform -- uid: 6404 - type: CableHV - components: - - pos: 19.5,29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6405 - type: CableHV - components: - - pos: 19.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6406 - type: CableHV - components: - - pos: 19.5,31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6407 - type: Grille - components: - - pos: 15.5,33.5 - parent: 30 - type: Transform -- uid: 6408 - type: Grille - components: - - pos: 15.5,34.5 - parent: 30 - type: Transform -- uid: 6409 - type: Grille - components: - - pos: 15.5,36.5 - parent: 30 - type: Transform -- uid: 6410 - type: Grille - components: - - pos: 15.5,37.5 - parent: 30 - type: Transform -- uid: 6411 - type: Grille - components: - - pos: 15.5,39.5 - parent: 30 - type: Transform -- uid: 6412 - type: Grille - components: - - pos: 15.5,40.5 - parent: 30 - type: Transform -- uid: 6413 - type: Airlock - components: - - pos: 19.5,33.5 - parent: 30 - type: Transform -- uid: 6414 - type: Airlock - components: - - pos: 19.5,36.5 - parent: 30 - type: Transform -- uid: 6415 - type: Airlock - components: - - pos: 19.5,39.5 - parent: 30 - type: Transform -- uid: 6416 - type: AirlockGlass - components: - - pos: 23.5,32.5 - parent: 30 - type: Transform -- uid: 6417 - type: AirlockGlass - components: - - pos: 22.5,32.5 - parent: 30 - type: Transform -- uid: 6418 - type: AirlockGlass - components: - - pos: 21.5,32.5 - parent: 30 - type: Transform -- uid: 6419 - type: SignDirectionalBridge - components: - - rot: -1.5707963267948966 rad - pos: 20.5,28.5 - parent: 30 - type: Transform -- uid: 6420 - type: SignDirectionalDorms - components: - - rot: 3.141592653589793 rad - pos: 20.504648,28.737268 - parent: 30 - type: Transform -- uid: 6421 - type: SignDirectionalSupply - components: - - rot: -1.5707963267948966 rad - pos: 20.489023,28.268518 - parent: 30 - type: Transform -- uid: 6422 - type: SignDirectionalHydro - components: - - pos: -33.5,12.5 - parent: 30 - type: Transform -- uid: 6423 - type: SignDirectionalHydro - components: - - pos: 7.5,14.5 - parent: 30 - type: Transform -- uid: 6424 - type: Bed - components: - - pos: 16.5,40.5 - parent: 30 - type: Transform -- uid: 6425 - type: Bed - components: - - pos: 16.5,37.5 - parent: 30 - type: Transform -- uid: 6426 - type: Bed - components: - - pos: 16.5,34.5 - parent: 30 - type: Transform -- uid: 6427 - type: Dresser - components: - - pos: 16.5,39.5 - parent: 30 - type: Transform -- uid: 6428 - type: TableWood - components: - - pos: 16.5,36.5 - parent: 30 - type: Transform -- uid: 6429 - type: TableCarpet - components: - - pos: 16.5,33.5 - parent: 30 - type: Transform -- uid: 6430 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 17.5,36.5 - parent: 30 - type: Transform -- uid: 6431 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 17.5,33.5 - parent: 30 - type: Transform -- uid: 6432 - type: TableWood - components: - - pos: 18.5,40.5 - parent: 30 - type: Transform -- uid: 6433 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 17.5,40.5 - parent: 30 - type: Transform -- uid: 6434 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 16.5,36.5 - parent: 30 - type: Transform -- uid: 6435 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 16.5,37.5 - parent: 30 - type: Transform -- uid: 6436 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 17.5,37.5 - parent: 30 - type: Transform -- uid: 6437 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 17.5,36.5 - parent: 30 - type: Transform -- uid: 6438 - type: BedsheetSpawner - components: - - pos: 16.5,34.5 - parent: 30 - type: Transform -- uid: 6439 - type: BedsheetSpawner - components: - - pos: 16.5,37.5 - parent: 30 - type: Transform -- uid: 6440 - type: BedsheetSpawner - components: - - pos: 16.5,40.5 - parent: 30 - type: Transform -- uid: 6441 - type: PoweredSmallLight - components: - - pos: 17.5,34.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6442 - type: PoweredSmallLight - components: - - pos: 17.5,37.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6443 - type: PoweredSmallLight - components: - - pos: 17.5,40.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6444 - type: Rack - components: - - pos: 16.5,29.5 - parent: 30 - type: Transform -- uid: 6445 - type: ClosetEmergencyFilledRandom - components: - - pos: 16.5,31.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6446 - type: ClothingMaskGas - components: - - pos: 16.428507,29.566227 - parent: 30 - type: Transform -- uid: 6447 - type: ClothingMaskGas - components: - - pos: 16.616007,29.472477 - parent: 30 - type: Transform -- uid: 6448 - type: Intercom - components: - - pos: -27.5,28.5 - parent: 30 - type: Transform -- uid: 6449 - type: PosterContrabandBountyHunters - components: - - pos: -36.5,57.5 - parent: 30 - type: Transform -- uid: 6450 - type: PosterLegitObey - components: - - pos: -20.5,53.5 - parent: 30 - type: Transform -- uid: 6451 - type: SpaceVillainArcadeFilled - components: - - pos: 18.5,44.5 - parent: 30 - type: Transform -- uid: 6452 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,44.5 - parent: 30 - type: Transform -- uid: 6453 - type: Table - components: - - pos: 21.5,44.5 - parent: 30 - type: Transform -- uid: 6454 - type: ClothingUniformJumpsuitColorBlack - components: - - pos: 21.51717,44.539608 - parent: 30 - type: Transform -- uid: 6455 - type: ClothingUniformJumpskirtColorBlack - components: - - pos: 21.564045,44.633358 - parent: 30 - type: Transform -- uid: 6456 - type: DisposalUnit - components: - - pos: 21.5,42.5 - parent: 30 - type: Transform -- uid: 6457 - type: DisposalUnit - components: - - pos: 24.5,33.5 - parent: 30 - type: Transform -- uid: 6458 - type: CarpetGreen - components: - - pos: 17.5,33.5 - parent: 30 - type: Transform -- uid: 6459 - type: CarpetGreen - components: - - pos: 17.5,34.5 - parent: 30 - type: Transform -- uid: 6460 - type: CarpetGreen - components: - - pos: 16.5,33.5 - parent: 30 - type: Transform -- uid: 6461 - type: CarpetGreen - components: - - pos: 16.5,34.5 - parent: 30 - type: Transform -- uid: 6462 - type: CarpetBlue - components: - - pos: 17.5,39.5 - parent: 30 - type: Transform -- uid: 6463 - type: CarpetBlue - components: - - pos: 17.5,40.5 - parent: 30 - type: Transform -- uid: 6464 - type: CarpetBlue - components: - - pos: 18.5,40.5 - parent: 30 - type: Transform -- uid: 6465 - type: CarpetBlue - components: - - pos: 18.5,39.5 - parent: 30 - type: Transform -- uid: 6466 - type: WallSolid - components: - - pos: 29.5,33.5 - parent: 30 - type: Transform -- uid: 6467 - type: WallSolid - components: - - pos: 30.5,33.5 - parent: 30 - type: Transform -- uid: 6468 - type: WallSolid - components: - - pos: 31.5,33.5 - parent: 30 - type: Transform -- uid: 6469 - type: WallSolid - components: - - pos: 32.5,33.5 - parent: 30 - type: Transform -- uid: 6470 - type: WallSolid - components: - - pos: 32.5,32.5 - parent: 30 - type: Transform -- uid: 6471 - type: WallSolid - components: - - pos: 32.5,31.5 - parent: 30 - type: Transform -- uid: 6472 - type: WallSolid - components: - - pos: 32.5,30.5 - parent: 30 - type: Transform -- uid: 6473 - type: WallSolid - components: - - pos: 33.5,27.5 - parent: 30 - type: Transform -- uid: 6474 - type: WallSolid - components: - - pos: 32.5,28.5 - parent: 30 - type: Transform -- uid: 6475 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 47.5,4.5 - parent: 30 - type: Transform -- uid: 6476 - type: GrilleBroken - components: - - pos: 47.5,10.5 - parent: 30 - type: Transform -- uid: 6477 - type: WallSolid - components: - - pos: 32.5,27.5 - parent: 30 - type: Transform -- uid: 6478 - type: WallSolid - components: - - pos: 31.5,26.5 - parent: 30 - type: Transform -- uid: 6479 - type: WallSolid - components: - - pos: 30.5,26.5 - parent: 30 - type: Transform -- uid: 6480 - type: WallSolid - components: - - pos: 29.5,26.5 - parent: 30 - type: Transform -- uid: 6481 - type: WallSolid - components: - - pos: 28.5,26.5 - parent: 30 - type: Transform -- uid: 6482 - type: WallSolid - components: - - pos: 28.5,27.5 - parent: 30 - type: Transform -- uid: 6483 - type: WallSolid - components: - - pos: 28.5,28.5 - parent: 30 - type: Transform -- uid: 6484 - type: WallSolid - components: - - pos: 30.5,27.5 - parent: 30 - type: Transform -- uid: 6485 - type: WallSolid - components: - - pos: 30.5,28.5 - parent: 30 - type: Transform -- uid: 6486 - type: WallReinforced - components: - - pos: 28.5,24.5 - parent: 30 - type: Transform -- uid: 6487 - type: WallReinforced - components: - - pos: 27.5,24.5 - parent: 30 - type: Transform -- uid: 6488 - type: WindoorScienceLocked - components: - - pos: 18.5,24.5 - parent: 30 - type: Transform -- uid: 6489 - type: WallReinforced - components: - - pos: 26.5,24.5 - parent: 30 - type: Transform -- uid: 6490 - type: WallReinforced - components: - - pos: 24.5,24.5 - parent: 30 - type: Transform -- uid: 6491 - type: WallReinforced - components: - - pos: 25.5,24.5 - parent: 30 - type: Transform -- uid: 6492 - type: WallSolid - components: - - pos: 30.5,25.5 - parent: 30 - type: Transform -- uid: 6493 - type: DisposalUnit - components: - - pos: 29.5,25.5 - parent: 30 - type: Transform -- uid: 6494 - type: Airlock - components: - - pos: 28.5,25.5 - parent: 30 - type: Transform -- uid: 6495 - type: ToiletEmpty - components: - - rot: -1.5707963267948966 rad - pos: 29.5,27.5 - parent: 30 - type: Transform -- uid: 6496 - type: ToiletEmpty - components: - - rot: -1.5707963267948966 rad - pos: 31.5,27.5 - parent: 30 - type: Transform -- uid: 6497 - type: Airlock - components: - - pos: 29.5,28.5 - parent: 30 - type: Transform -- uid: 6498 - type: Airlock - components: - - pos: 26.5,32.5 - parent: 30 - type: Transform -- uid: 6499 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,25.5 - parent: 30 - type: Transform -- uid: 6500 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 29.5,25.5 - parent: 30 - type: Transform -- uid: 6501 - type: PoweredSmallLight - components: - - pos: 29.5,25.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6502 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,27.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6503 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,27.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6504 - type: SinkEmpty - components: - - pos: 30.5,31.5 - parent: 30 - type: Transform -- uid: 6505 - type: SinkEmpty - components: - - pos: 29.5,31.5 - parent: 30 - type: Transform -- uid: 6506 - type: Sink - components: - - pos: 31.5,31.5 - parent: 30 - type: Transform -- uid: 6507 - type: WallSolid - components: - - pos: 31.5,32.5 - parent: 30 - type: Transform -- uid: 6508 - type: WallSolid - components: - - pos: 30.5,32.5 - parent: 30 - type: Transform -- uid: 6509 - type: WallSolid - components: - - pos: 29.5,32.5 - parent: 30 - type: Transform -- uid: 6510 - type: Mirror - components: - - pos: 29.5,32.5 - parent: 30 - type: Transform -- uid: 6511 - type: Mirror - components: - - pos: 30.5,32.5 - parent: 30 - type: Transform -- uid: 6512 - type: Mirror - components: - - pos: 31.5,32.5 - parent: 30 - type: Transform -- uid: 6513 - type: ExtinguisherCabinetFilled - components: - - pos: 20.5,29.5 - parent: 30 - type: Transform -- uid: 6514 - type: WallReinforced - components: - - pos: 11.5,24.5 - parent: 30 - type: Transform -- uid: 6515 - type: WallReinforced - components: - - pos: 12.5,24.5 - parent: 30 - type: Transform -- uid: 6516 - type: WallReinforced - components: - - pos: 13.5,24.5 - parent: 30 - type: Transform -- uid: 6517 - type: WallReinforced - components: - - pos: 14.5,24.5 - parent: 30 - type: Transform -- uid: 6518 - type: WallReinforced - components: - - pos: 15.5,24.5 - parent: 30 - type: Transform -- uid: 6519 - type: WallReinforced - components: - - pos: 32.5,24.5 - parent: 30 - type: Transform -- uid: 6520 - type: WallReinforced - components: - - pos: 33.5,24.5 - parent: 30 - type: Transform -- uid: 6521 - type: WallReinforced - components: - - pos: 16.5,24.5 - parent: 30 - type: Transform -- uid: 6522 - type: WallReinforced - components: - - pos: 33.5,23.5 - parent: 30 - type: Transform -- uid: 6523 - type: ReinforcedWindow - components: - - pos: 17.5,24.5 - parent: 30 - type: Transform -- uid: 6524 - type: WallReinforced - components: - - pos: 33.5,22.5 - parent: 30 - type: Transform -- uid: 6525 - type: ReinforcedWindow - components: - - pos: 19.5,24.5 - parent: 30 - type: Transform -- uid: 6526 - type: WallReinforced - components: - - pos: 30.5,24.5 - parent: 30 - type: Transform -- uid: 6527 - type: WallReinforced - components: - - pos: 29.5,24.5 - parent: 30 - type: Transform -- uid: 6528 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 24.5,27.5 - parent: 30 - type: Transform -- uid: 6529 - type: PottedPlantRandom - components: - - pos: 24.5,25.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 6530 - type: SignDirectionalDorms - components: - - rot: 1.5707963267948966 rad - pos: 7.5181293,28.732492 - parent: 30 - type: Transform -- uid: 6534 - type: Grille - components: - - pos: 24.5,43.5 - parent: 30 - type: Transform -- uid: 6535 - type: Grille - components: - - pos: 26.5,43.5 - parent: 30 - type: Transform -- uid: 6536 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 21.5,31.5 - parent: 30 - type: Transform -- uid: 6537 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 22.5,31.5 - parent: 30 - type: Transform -- uid: 6538 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 23.5,31.5 - parent: 30 - type: Transform -- uid: 6539 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 13.5,25.5 - parent: 30 - type: Transform -- uid: 6540 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 13.5,26.5 - parent: 30 - type: Transform -- uid: 6541 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 13.5,27.5 - parent: 30 - type: Transform -- uid: 6542 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: 28.5,34.5 - parent: 30 - type: Transform -- uid: 6543 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: 28.5,35.5 - parent: 30 - type: Transform -- uid: 6544 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: 28.5,39.5 - parent: 30 - type: Transform -- uid: 6545 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: 28.5,38.5 - parent: 30 - type: Transform -- uid: 6546 - type: AirlockGlass - components: - - pos: 28.5,36.5 - parent: 30 - type: Transform -- uid: 6547 - type: AirlockGlass - components: - - pos: 28.5,37.5 - parent: 30 - type: Transform -- uid: 6548 - type: WallReinforced - components: - - pos: 11.5,23.5 - parent: 30 - type: Transform -- uid: 6549 - type: WallReinforced - components: - - pos: 15.5,23.5 - parent: 30 - type: Transform -- uid: 6550 - type: WallReinforced - components: - - pos: 11.5,20.5 - parent: 30 - type: Transform -- uid: 6551 - type: WallReinforced - components: - - pos: 11.5,19.5 - parent: 30 - type: Transform -- uid: 6552 - type: WallReinforced - components: - - pos: 15.5,19.5 - parent: 30 - type: Transform -- uid: 6553 - type: ReinforcedWindow - components: - - pos: 11.5,21.5 - parent: 30 - type: Transform -- uid: 6554 - type: ReinforcedWindow - components: - - pos: 11.5,22.5 - parent: 30 - type: Transform -- uid: 6555 - type: ReinforcedWindow - components: - - pos: 12.5,19.5 - parent: 30 - type: Transform -- uid: 6556 - type: ReinforcedWindow - components: - - pos: 14.5,19.5 - parent: 30 - type: Transform -- uid: 6557 - type: ReinforcedWindow - components: - - pos: 15.5,20.5 - parent: 30 - type: Transform -- uid: 6558 - type: ReinforcedWindow - components: - - pos: 15.5,22.5 - parent: 30 - type: Transform -- uid: 6559 - type: Grille - components: - - pos: 11.5,21.5 - parent: 30 - type: Transform -- uid: 6560 - type: Grille - components: - - pos: 11.5,22.5 - parent: 30 - type: Transform -- uid: 6561 - type: Grille - components: - - pos: 12.5,19.5 - parent: 30 - type: Transform -- uid: 6562 - type: Grille - components: - - pos: 14.5,19.5 - parent: 30 - type: Transform -- uid: 6563 - type: Grille - components: - - pos: 15.5,20.5 - parent: 30 - type: Transform -- uid: 6564 - type: Grille - components: - - pos: 15.5,22.5 - parent: 30 - type: Transform -- uid: 6565 - type: AirlockSecurityGlassLocked - components: - - pos: 13.5,19.5 - parent: 30 - type: Transform -- uid: 6566 - type: AirlockSecurityGlassLocked - components: - - pos: 15.5,21.5 - parent: 30 - type: Transform -- uid: 6567 - type: LockerSecurity - components: - - pos: 12.5,20.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6568 - type: Table - components: - - pos: 12.5,23.5 - parent: 30 - type: Transform -- uid: 6569 - type: Table - components: - - pos: 12.5,22.5 - parent: 30 - type: Transform -- uid: 6570 - type: ChairOfficeDark - components: - - pos: 13.5,22.5 - parent: 30 - type: Transform -- uid: 6571 - type: ComputerCriminalRecords - components: - - pos: 13.5,23.5 - parent: 30 - type: Transform -- uid: 6572 - type: WeaponCapacitorRecharger - components: - - pos: 12.5,23.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 6573 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -11.5,31.5 - parent: 30 - type: Transform -- uid: 6574 - type: Table - components: - - pos: 14.5,23.5 - parent: 30 - type: Transform -- uid: 6575 - type: FoodBoxDonut - components: - - pos: 14.52128,23.64582 - parent: 30 - type: Transform -- uid: 6576 - type: SignScience1 - components: - - pos: 11.5,19.5 - parent: 30 - type: Transform -- uid: 6577 - type: ReinforcedWindow - components: - - pos: 11.5,18.5 - parent: 30 - type: Transform -- uid: 6578 - type: ReinforcedWindow - components: - - pos: 11.5,14.5 - parent: 30 - type: Transform -- uid: 6579 - type: Grille - components: - - pos: 11.5,14.5 - parent: 30 - type: Transform -- uid: 6580 - type: Grille - components: - - pos: 11.5,18.5 - parent: 30 - type: Transform -- uid: 6581 - type: AirlockScienceGlass - components: - - pos: 11.5,15.5 - parent: 30 - type: Transform -- uid: 6582 - type: AirlockScienceGlass - components: - - pos: 11.5,16.5 - parent: 30 - type: Transform -- uid: 6583 - type: AirlockScienceGlass - components: - - pos: 11.5,17.5 - parent: 30 - type: Transform -- uid: 6584 - type: DeployableBarrier - components: - - anchored: False - pos: -39.5,49.5 - parent: 30 - type: Transform -- uid: 6585 - type: DeployableBarrier - components: - - anchored: False - pos: -30.5,58.5 - parent: 30 - type: Transform -- uid: 6586 - type: Grille - components: - - pos: 28.5,35.5 - parent: 30 - type: Transform -- uid: 6587 - type: Grille - components: - - pos: 28.5,34.5 - parent: 30 - type: Transform -- uid: 6588 - type: Grille - components: - - pos: 28.5,38.5 - parent: 30 - type: Transform -- uid: 6589 - type: Grille - components: - - pos: 28.5,39.5 - parent: 30 - type: Transform -- uid: 6590 - type: ReinforcedWindow - components: - - pos: 29.5,40.5 - parent: 30 - type: Transform -- uid: 6591 - type: ReinforcedWindow - components: - - pos: 31.5,40.5 - parent: 30 - type: Transform -- uid: 6592 - type: Grille - components: - - pos: 29.5,40.5 - parent: 30 - type: Transform -- uid: 6593 - type: Grille - components: - - pos: 31.5,40.5 - parent: 30 - type: Transform -- uid: 6594 - type: WallSolid - components: - - pos: 32.5,41.5 - parent: 30 - type: Transform -- uid: 6595 - type: WallSolid - components: - - pos: 32.5,40.5 - parent: 30 - type: Transform -- uid: 6596 - type: WallReinforced - components: - - pos: 28.5,42.5 - parent: 30 - type: Transform -- uid: 6597 - type: WallReinforced - components: - - pos: 28.5,40.5 - parent: 30 - type: Transform -- uid: 6598 - type: WallReinforced - components: - - pos: 28.5,41.5 - parent: 30 - type: Transform -- uid: 6599 - type: WallReinforced - components: - - pos: 28.5,44.5 - parent: 30 - type: Transform -- uid: 6600 - type: Girder - components: - - pos: 29.5,44.5 - parent: 30 - type: Transform -- uid: 6601 - type: WallSolid - components: - - pos: 30.5,44.5 - parent: 30 - type: Transform -- uid: 6602 - type: WallSolid - components: - - pos: 31.5,44.5 - parent: 30 - type: Transform -- uid: 6603 - type: WallSolid - components: - - pos: 32.5,44.5 - parent: 30 - type: Transform -- uid: 6604 - type: AirlockGlass - components: - - pos: 30.5,40.5 - parent: 30 - type: Transform -- uid: 6605 - type: APCBasic - components: - - pos: 19.5,28.5 - parent: 30 - type: Transform -- uid: 6606 - type: CableApcExtension - components: - - pos: 20.5,44.5 - parent: 30 - type: Transform -- uid: 6607 - type: WallReinforced - components: - - pos: 11.5,10.5 - parent: 30 - type: Transform -- uid: 6608 - type: WallReinforced - components: - - pos: 11.5,11.5 - parent: 30 - type: Transform -- uid: 6609 - type: WallReinforced - components: - - pos: 11.5,12.5 - parent: 30 - type: Transform -- uid: 6610 - type: WallReinforced - components: - - pos: 11.5,13.5 - parent: 30 - type: Transform -- uid: 6611 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 11.5,9.5 - parent: 30 - type: Transform -- uid: 6612 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 11.5,8.5 - parent: 30 - type: Transform -- uid: 6613 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 11.5,7.5 - parent: 30 - type: Transform -- uid: 6614 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 11.5,6.5 - parent: 30 - type: Transform -- uid: 6615 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 11.5,5.5 - parent: 30 - type: Transform -- uid: 6616 - type: WallReinforced - components: - - pos: 12.5,9.5 - parent: 30 - type: Transform -- uid: 6617 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 13.5,5.5 - parent: 30 - type: Transform -- uid: 6618 - type: WallReinforced - components: - - pos: 14.5,5.5 - parent: 30 - type: Transform -- uid: 6619 - type: FirelockGlass - components: - - pos: 13.5,-8.5 - parent: 30 - type: Transform -- uid: 6620 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 14.5,0.5 - parent: 30 - type: Transform -- uid: 6621 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 30 - type: Transform -- uid: 6622 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 30 - type: Transform -- uid: 6623 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 10.5,0.5 - parent: 30 - type: Transform -- uid: 6624 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 9.5,0.5 - parent: 30 - type: Transform -- uid: 6625 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 8.5,0.5 - parent: 30 - type: Transform -- uid: 6626 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 8.5,0.5 - parent: 30 - type: Transform -- uid: 6627 - type: WallSolid - components: - - pos: -26.5,-12.5 - parent: 30 - type: Transform -- uid: 6628 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -13.5,0.5 - parent: 30 - type: Transform -- uid: 6629 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -13.5,0.5 - parent: 30 - type: Transform -- uid: 6630 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 30 - type: Transform -- uid: 6631 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 30 - type: Transform -- uid: 6632 - type: WallReinforced - components: - - pos: -4.5,-5.5 - parent: 30 - type: Transform -- uid: 6633 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 30 - type: Transform -- uid: 6634 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 30 - type: Transform -- uid: 6635 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 30 - type: Transform -- uid: 6636 - type: AirlockMaintLocked - components: - - pos: -2.5,-5.5 - parent: 30 - type: Transform -- uid: 6637 - type: PottedPlantRandom - components: - - pos: -3.5,-4.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 6638 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 30 - type: Transform -- uid: 6639 - type: PosterLegitSoftCapPopArt - components: - - pos: -3.5,-5.5 - parent: 30 - type: Transform -- uid: 6640 - type: PosterContrabandShamblersJuice - components: - - pos: 0.5,16.5 - parent: 30 - type: Transform -- uid: 6641 - type: ReinforcedWindow - components: - - pos: -10.5,-6.5 - parent: 30 - type: Transform -- uid: 6642 - type: ReinforcedWindow - components: - - pos: -10.5,-5.5 - parent: 30 - type: Transform -- uid: 6643 - type: ReinforcedWindow - components: - - pos: -9.5,-5.5 - parent: 30 - type: Transform -- uid: 6644 - type: ReinforcedWindow - components: - - pos: -5.5,-5.5 - parent: 30 - type: Transform -- uid: 6645 - type: ReinforcedWindow - components: - - pos: -7.5,-5.5 - parent: 30 - type: Transform -- uid: 6646 - type: FirelockGlass - components: - - pos: -6.5,-5.5 - parent: 30 - type: Transform -- uid: 6647 - type: WallReinforced - components: - - pos: -10.5,-7.5 - parent: 30 - type: Transform -- uid: 6648 - type: FirelockGlass - components: - - pos: -10.5,-8.5 - parent: 30 - type: Transform -- uid: 6649 - type: WallReinforced - components: - - pos: -4.5,-6.5 - parent: 30 - type: Transform -- uid: 6650 - type: WallReinforced - components: - - pos: -4.5,-7.5 - parent: 30 - type: Transform -- uid: 6651 - type: WallReinforced - components: - - pos: -3.5,-7.5 - parent: 30 - type: Transform -- uid: 6652 - type: WallReinforced - components: - - pos: -3.5,-8.5 - parent: 30 - type: Transform -- uid: 6653 - type: WallReinforced - components: - - pos: -3.5,-9.5 - parent: 30 - type: Transform -- uid: 6654 - type: WallReinforced - components: - - pos: -3.5,-10.5 - parent: 30 - type: Transform -- uid: 6655 - type: WallReinforced - components: - - pos: -3.5,-11.5 - parent: 30 - type: Transform -- uid: 6656 - type: WallReinforced - components: - - pos: -3.5,-12.5 - parent: 30 - type: Transform -- uid: 6657 - type: WallReinforced - components: - - pos: -3.5,-13.5 - parent: 30 - type: Transform -- uid: 6658 - type: WallReinforced - components: - - pos: -4.5,-13.5 - parent: 30 - type: Transform -- uid: 6659 - type: WallReinforced - components: - - pos: -5.5,-13.5 - parent: 30 - type: Transform -- uid: 6660 - type: WallReinforced - components: - - pos: -6.5,-13.5 - parent: 30 - type: Transform -- uid: 6661 - type: WallReinforced - components: - - pos: -7.5,-13.5 - parent: 30 - type: Transform -- uid: 6662 - type: WallReinforced - components: - - pos: -9.5,-13.5 - parent: 30 - type: Transform -- uid: 6663 - type: WallReinforced - components: - - pos: -10.5,-13.5 - parent: 30 - type: Transform -- uid: 6664 - type: WallReinforced - components: - - pos: -10.5,-12.5 - parent: 30 - type: Transform -- uid: 6665 - type: WallReinforced - components: - - pos: -10.5,-11.5 - parent: 30 - type: Transform -- uid: 6666 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,-10.5 - parent: 30 - type: Transform -- uid: 6667 - type: AirlockChemistryLocked - components: - - pos: -10.5,-9.5 - parent: 30 - type: Transform -- uid: 6668 - type: FirelockGlass - components: - - pos: -10.5,-10.5 - parent: 30 - type: Transform -- uid: 6669 - type: Grille - components: - - pos: -10.5,-6.5 - parent: 30 - type: Transform -- uid: 6670 - type: Grille - components: - - pos: -10.5,-5.5 - parent: 30 - type: Transform -- uid: 6671 - type: Grille - components: - - pos: -9.5,-5.5 - parent: 30 - type: Transform -- uid: 6672 - type: Grille - components: - - pos: -5.5,-5.5 - parent: 30 - type: Transform -- uid: 6673 - type: TableReinforced - components: - - pos: -8.5,-5.5 - parent: 30 - type: Transform -- uid: 6674 - type: WindoorChemistryLocked - components: - - pos: -6.5,-5.5 - parent: 30 - type: Transform -- uid: 6675 - type: AirlockMaintChemLocked - components: - - pos: -8.5,-13.5 - parent: 30 - type: Transform -- uid: 6676 - type: TableReinforced - components: - - pos: -6.5,-5.5 - parent: 30 - type: Transform -- uid: 6677 - type: WindoorChemistryLocked - components: - - pos: -8.5,-5.5 - parent: 30 - type: Transform -- uid: 6678 - type: ShuttersNormalOpen - components: - - pos: -8.5,-5.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20401 - type: SignalReceiver -- uid: 6679 - type: ShuttersNormalOpen - components: - - pos: -6.5,-5.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20401 - type: SignalReceiver -- uid: 6680 - type: WallReinforced - components: - - pos: -26.5,-15.5 - parent: 30 - type: Transform -- uid: 6681 - type: WindoorChemistryLocked - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-8.5 - parent: 30 - type: Transform -- uid: 6682 - type: TableGlass - components: - - pos: -9.5,-10.5 - parent: 30 - type: Transform -- uid: 6683 - type: ComputerSurveillanceCameraMonitor - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 30 - type: Transform -- uid: 6684 - type: PosterLegitSafetyEyeProtection - components: - - pos: -10.5,-7.5 - parent: 30 - type: Transform -- uid: 6685 - type: WallReinforced - components: - - pos: -26.5,-14.5 - parent: 30 - type: Transform -- uid: 6686 - type: PosterLegitNoERP - components: - - pos: -10.5,-17.5 - parent: 30 - type: Transform -- uid: 6687 - type: MedicalBed - components: - - pos: -23.5,-14.5 - parent: 30 - type: Transform -- uid: 6688 - type: TableGlass - components: - - pos: -7.5,-6.5 - parent: 30 - type: Transform -- uid: 6689 - type: TableGlass - components: - - pos: -7.5,-7.5 - parent: 30 - type: Transform -- uid: 6690 - type: chem_master - components: - - pos: -9.5,-6.5 - parent: 30 - type: Transform -- uid: 6691 - type: chem_master - components: - - pos: -5.5,-6.5 - parent: 30 - type: Transform -- uid: 6692 - type: chem_dispenser - components: - - pos: -9.5,-7.5 - parent: 30 - type: Transform -- uid: 6693 - type: chem_dispenser - components: - - pos: -5.5,-7.5 - parent: 30 - type: Transform -- uid: 6694 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-6.5 - parent: 30 - type: Transform -- uid: 6695 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-6.5 - parent: 30 - type: Transform -- uid: 6696 - type: DisposalUnit - components: - - pos: -7.5,-8.5 - parent: 30 - type: Transform -- uid: 6697 - type: VendingMachineChemDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,-12.5 - parent: 30 - type: Transform -- uid: 6698 - type: LockerChemistryFilled - components: - - pos: -9.5,-11.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6699 - type: SignChemistry2 - components: - - pos: -4.5,-5.5 - parent: 30 - type: Transform -- uid: 6700 - type: SignChem - components: - - pos: -10.5,-11.5 - parent: 30 - type: Transform -- uid: 6701 - type: TableGlass - components: - - pos: -4.5,-9.5 - parent: 30 - type: Transform -- uid: 6702 - type: TableGlass - components: - - pos: -4.5,-10.5 - parent: 30 - type: Transform -- uid: 6703 - type: KitchenReagentGrinder - components: - - pos: -4.5,-9.5 - parent: 30 - type: Transform -- uid: 6704 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 30 - type: Transform -- uid: 6705 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-11.5 - parent: 30 - type: Transform -- uid: 6706 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -4.5,-11.5 - parent: 30 - type: Transform -- uid: 6707 - type: WindoorChemistryLocked - components: - - rot: 3.141592653589793 rad - pos: -5.5,-11.5 - parent: 30 - type: Transform -- uid: 6708 - type: Rack - components: - - pos: -4.5,-8.5 - parent: 30 - type: Transform -- uid: 6709 - type: HandLabeler - components: - - pos: -4.524357,-8.44442 - parent: 30 - type: Transform -- uid: 6710 - type: HandLabeler - components: - - pos: -4.383732,-8.53817 - parent: 30 - type: Transform -- uid: 6711 - type: SheetPlasma1 - components: - - pos: -4.508732,-10.31942 - parent: 30 - type: Transform -- uid: 6712 - type: SheetPlasma1 - components: - - pos: -4.508732,-10.31942 - parent: 30 - type: Transform -- uid: 6713 - type: SheetPlasma1 - components: - - pos: -4.508732,-10.31942 - parent: 30 - type: Transform -- uid: 6714 - type: SheetPlasma1 - components: - - pos: -4.508732,-10.31942 - parent: 30 - type: Transform -- uid: 6715 - type: SheetPlasma1 - components: - - pos: -4.508732,-10.31942 - parent: 30 - type: Transform -- uid: 6716 - type: SheetPlasma1 - components: - - pos: -4.508732,-10.31942 - parent: 30 - type: Transform -- uid: 6717 - type: SheetPlasma1 - components: - - pos: -4.508732,-10.31942 - parent: 30 - type: Transform -- uid: 6718 - type: SheetPlasma1 - components: - - pos: -4.508732,-10.31942 - parent: 30 - type: Transform -- uid: 6719 - type: SheetPlasma1 - components: - - pos: -4.508732,-10.31942 - parent: 30 - type: Transform -- uid: 6720 - type: SheetPlasma1 - components: - - pos: -4.508732,-10.31942 - parent: 30 - type: Transform -- uid: 6721 - type: BoxBeaker - components: - - pos: -7.493107,-6.5537953 - parent: 30 - type: Transform -- uid: 6722 - type: Dropper - components: - - pos: -7.461857,-7.0850453 - parent: 30 - type: Transform -- uid: 6723 - type: Dropper - components: - - pos: -7.461857,-7.2412953 - parent: 30 - type: Transform -- uid: 6724 - type: chem_master - components: - - pos: -6.5,-12.5 - parent: 30 - type: Transform -- uid: 6725 - type: chem_dispenser - components: - - pos: -7.5,-12.5 - parent: 30 - type: Transform -- uid: 6726 - type: ConveyorBelt - components: - - pos: 35.5,-13.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11677 - Forward: - - port: Left - uid: 11677 - Off: - - port: Middle - uid: 11677 - type: SignalReceiver -- uid: 6727 - type: Screwdriver - components: - - pos: -4.5072117,-10.071463 - parent: 30 - type: Transform - - nextAttack: 896.6790957 - type: MeleeWeapon -- uid: 6728 - type: BoxSyringe - components: - - pos: -7.4798965,-6.328568 - parent: 30 - type: Transform -- uid: 6729 - type: MedkitFilled - components: - - pos: -24.481306,-16.296682 - parent: 30 - type: Transform -- uid: 6730 - type: BoxPillCanister - components: - - pos: -4.4905396,-8.277424 - parent: 30 - type: Transform -- uid: 6731 - type: ChairOfficeLight - components: - - pos: -6.5,-11.5 - parent: 30 - type: Transform -- uid: 6732 - type: MedkitBruteFilled - components: - - pos: -23.809431,-16.312307 - parent: 30 - type: Transform -- uid: 6733 - type: FirelockGlass - components: - - pos: -4.5,-3.5 - parent: 30 - type: Transform -- uid: 6734 - type: FirelockGlass - components: - - pos: -4.5,-2.5 - parent: 30 - type: Transform -- uid: 6735 - type: WallReinforced - components: - - pos: -20.5,-0.5 - parent: 30 - type: Transform -- uid: 6736 - type: WallReinforced - components: - - pos: -20.5,-1.5 - parent: 30 - type: Transform -- uid: 6737 - type: WallReinforced - components: - - pos: -20.5,-2.5 - parent: 30 - type: Transform -- uid: 6738 - type: WallReinforced - components: - - pos: -20.5,-3.5 - parent: 30 - type: Transform -- uid: 6739 - type: WallReinforced - components: - - pos: -15.5,-3.5 - parent: 30 - type: Transform -- uid: 6740 - type: WallReinforced - components: - - pos: -16.5,-3.5 - parent: 30 - type: Transform -- uid: 6741 - type: ReinforcedWindow - components: - - pos: -17.5,-3.5 - parent: 30 - type: Transform -- uid: 6742 - type: ReinforcedWindow - components: - - pos: -19.5,-3.5 - parent: 30 - type: Transform -- uid: 6743 - type: ReinforcedWindow - components: - - pos: -15.5,-2.5 - parent: 30 - type: Transform -- uid: 6744 - type: ReinforcedWindow - components: - - pos: -15.5,-1.5 - parent: 30 - type: Transform -- uid: 6745 - type: ReinforcedWindow - components: - - pos: -15.5,-0.5 - parent: 30 - type: Transform -- uid: 6746 - type: Grille - components: - - pos: -15.5,-2.5 - parent: 30 - type: Transform -- uid: 6747 - type: Grille - components: - - pos: -15.5,-1.5 - parent: 30 - type: Transform -- uid: 6748 - type: Grille - components: - - pos: -15.5,-0.5 - parent: 30 - type: Transform -- uid: 6749 - type: Grille - components: - - pos: -17.5,-3.5 - parent: 30 - type: Transform -- uid: 6750 - type: Grille - components: - - pos: -19.5,-3.5 - parent: 30 - type: Transform -- uid: 6751 - type: AirlockSecurityGlassLocked - components: - - pos: -18.5,-3.5 - parent: 30 - type: Transform -- uid: 6752 - type: LockerSecurity - components: - - pos: -19.5,-2.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6753 - type: ClosetL3SecurityFilled - components: - - pos: -19.5,-1.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6754 - type: WardrobeSecurityFilled - components: - - pos: -19.5,-0.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6755 - type: ComputerCriminalRecords - components: - - pos: -17.5,-0.5 - parent: 30 - type: Transform -- uid: 6756 - type: Table - components: - - pos: -16.5,-0.5 - parent: 30 - type: Transform -- uid: 6757 - type: CrateMedicalSurgery - components: - - pos: -11.5,-18.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 6758 - type: WeaponCapacitorRecharger - components: - - pos: -16.5,-0.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 6759 - type: ChairOfficeLight - components: - - pos: -17.5,-1.5 - parent: 30 - type: Transform -- uid: 6760 - type: Table - components: - - pos: -16.5,-2.5 - parent: 30 - type: Transform -- uid: 6761 - type: Paper - components: - - pos: -16.600266,-2.3333893 - parent: 30 - type: Transform -- uid: 6762 - type: Pen - components: - - pos: -16.27214,-2.1615143 - parent: 30 - type: Transform -- uid: 6763 - type: SignMedical - components: - - pos: -4.5,-0.5 - parent: 30 - type: Transform -- uid: 6764 - type: SignMedical - components: - - pos: -12.5,0.5 - parent: 30 - type: Transform -- uid: 6765 - type: PottedPlantRandom - components: - - pos: -6.5,0.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 6766 - type: SpawnPointChemist - components: - - pos: -7.5,-9.5 - parent: 30 - type: Transform -- uid: 6767 - type: SpawnPointChemist - components: - - pos: -6.5,-9.5 - parent: 30 - type: Transform -- uid: 6768 - type: SpawnMobWalter - components: - - pos: -8.5,-9.5 - parent: 30 - type: Transform -- uid: 6769 - type: SpawnMobMouse - components: - - pos: -5.5,-11.5 - parent: 30 - type: Transform -- uid: 6770 - type: WallSolid - components: - - pos: -16.5,-4.5 - parent: 30 - type: Transform -- uid: 6771 - type: WallSolid - components: - - pos: -16.5,-6.5 - parent: 30 - type: Transform -- uid: 6772 - type: WallSolid - components: - - pos: -16.5,-7.5 - parent: 30 - type: Transform -- uid: 6773 - type: WallSolid - components: - - pos: -13.5,-7.5 - parent: 30 - type: Transform -- uid: 6774 - type: ReinforcedWindow - components: - - pos: -14.5,-7.5 - parent: 30 - type: Transform -- uid: 6775 - type: ReinforcedWindow - components: - - pos: -15.5,-7.5 - parent: 30 - type: Transform -- uid: 6776 - type: ReinforcedWindow - components: - - pos: -13.5,-6.5 - parent: 30 - type: Transform -- uid: 6777 - type: Grille - components: - - pos: -15.5,-7.5 - parent: 30 - type: Transform -- uid: 6778 - type: Grille - components: - - pos: -14.5,-7.5 - parent: 30 - type: Transform -- uid: 6779 - type: Grille - components: - - pos: -13.5,-6.5 - parent: 30 - type: Transform -- uid: 6780 - type: AirlockMedicalGlassLocked - components: - - pos: -16.5,-5.5 - parent: 30 - type: Transform -- uid: 6781 - type: TableReinforced - components: - - pos: -13.5,-5.5 - parent: 30 - type: Transform -- uid: 6782 - type: TableReinforced - components: - - pos: -13.5,-4.5 - parent: 30 - type: Transform -- uid: 6783 - type: TableReinforced - components: - - pos: -13.5,-3.5 - parent: 30 - type: Transform -- uid: 6784 - type: TableReinforced - components: - - pos: -14.5,-3.5 - parent: 30 - type: Transform -- uid: 6785 - type: FirelockGlass - components: - - pos: -14.5,-3.5 - parent: 30 - type: Transform -- uid: 6786 - type: FirelockGlass - components: - - pos: -13.5,-3.5 - parent: 30 - type: Transform -- uid: 6787 - type: FirelockGlass - components: - - pos: -13.5,-4.5 - parent: 30 - type: Transform -- uid: 6788 - type: FirelockGlass - components: - - pos: -13.5,-5.5 - parent: 30 - type: Transform -- uid: 6789 - type: ComputerMedicalRecords - components: - - rot: 3.141592653589793 rad - pos: -15.5,-6.5 - parent: 30 - type: Transform -- uid: 6790 - type: ComputerCrewMonitoring - components: - - rot: 3.141592653589793 rad - pos: -14.5,-6.5 - parent: 30 - type: Transform -- uid: 6791 - type: ReinforcedWindow - components: - - pos: -32.5,-24.5 - parent: 30 - type: Transform -- uid: 6792 - type: BoxFolderWhite - components: - - pos: -13.50902,-4.3986816 - parent: 30 - type: Transform -- uid: 6793 - type: Pen - components: - - pos: -13.305895,-4.1018066 - parent: 30 - type: Transform -- uid: 6794 - type: Paper - components: - - pos: -13.555895,-5.0236816 - parent: 30 - type: Transform -- uid: 6795 - type: Paper - components: - - pos: -13.41527,-5.1955566 - parent: 30 - type: Transform -- uid: 6796 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-5.5 - parent: 30 - type: Transform -- uid: 6797 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-4.5 - parent: 30 - type: Transform -- uid: 6798 - type: AirlockMedicalGlassLocked - components: - - pos: -12.5,-7.5 - parent: 30 - type: Transform -- uid: 6799 - type: AirlockMedicalGlassLocked - components: - - pos: -11.5,-7.5 - parent: 30 - type: Transform -- uid: 6800 - type: AirlockChiefMedicalOfficerLocked - components: - - pos: -10.5,-14.5 - parent: 30 - type: Transform -- uid: 6801 - type: WallReinforced - components: - - pos: -10.5,-15.5 - parent: 30 - type: Transform -- uid: 6802 - type: WallReinforced - components: - - pos: -26.5,-16.5 - parent: 30 - type: Transform -- uid: 6803 - type: WallReinforced - components: - - pos: -10.5,-17.5 - parent: 30 - type: Transform -- uid: 6804 - type: WallReinforced - components: - - pos: -11.5,-17.5 - parent: 30 - type: Transform -- uid: 6805 - type: WallReinforced - components: - - pos: -12.5,-17.5 - parent: 30 - type: Transform -- uid: 6806 - type: WallReinforced - components: - - pos: -13.5,-17.5 - parent: 30 - type: Transform -- uid: 6807 - type: WallReinforced - components: - - pos: -14.5,-17.5 - parent: 30 - type: Transform -- uid: 6808 - type: WallReinforced - components: - - pos: -15.5,-17.5 - parent: 30 - type: Transform -- uid: 6809 - type: WallReinforced - components: - - pos: -16.5,-17.5 - parent: 30 - type: Transform -- uid: 6810 - type: WallReinforced - components: - - pos: -16.5,-16.5 - parent: 30 - type: Transform -- uid: 6811 - type: WallReinforced - components: - - pos: -16.5,-12.5 - parent: 30 - type: Transform -- uid: 6812 - type: WallReinforced - components: - - pos: -16.5,-11.5 - parent: 30 - type: Transform -- uid: 6813 - type: WallReinforced - components: - - pos: -14.5,-11.5 - parent: 30 - type: Transform -- uid: 6814 - type: WallReinforced - components: - - pos: -12.5,-11.5 - parent: 30 - type: Transform -- uid: 6815 - type: ReinforcedWindow - components: - - pos: -16.5,-15.5 - parent: 30 - type: Transform -- uid: 6816 - type: ReinforcedWindow - components: - - pos: -16.5,-13.5 - parent: 30 - type: Transform -- uid: 6817 - type: ReinforcedWindow - components: - - pos: -15.5,-11.5 - parent: 30 - type: Transform -- uid: 6818 - type: ReinforcedWindow - components: - - pos: -13.5,-11.5 - parent: 30 - type: Transform -- uid: 6819 - type: ReinforcedWindow - components: - - pos: -11.5,-11.5 - parent: 30 - type: Transform -- uid: 6820 - type: Grille - components: - - pos: -15.5,-11.5 - parent: 30 - type: Transform -- uid: 6821 - type: Grille - components: - - pos: -13.5,-11.5 - parent: 30 - type: Transform -- uid: 6822 - type: Grille - components: - - pos: -11.5,-11.5 - parent: 30 - type: Transform -- uid: 6823 - type: Grille - components: - - pos: -16.5,-15.5 - parent: 30 - type: Transform -- uid: 6824 - type: Grille - components: - - pos: -16.5,-13.5 - parent: 30 - type: Transform -- uid: 6825 - type: AirlockChiefMedicalOfficerGlassLocked - components: - - pos: -16.5,-14.5 - parent: 30 - type: Transform -- uid: 6826 - type: ComputerCrewMonitoring - components: - - pos: -14.5,-12.5 - parent: 30 - type: Transform -- uid: 6827 - type: ComputerMedicalRecords - components: - - pos: -13.5,-12.5 - parent: 30 - type: Transform -- uid: 6828 - type: ComputerAlert - components: - - pos: -12.5,-12.5 - parent: 30 - type: Transform -- uid: 6829 - type: DisposalUnit - components: - - pos: -11.5,-12.5 - parent: 30 - type: Transform -- uid: 6830 - type: TableGlass - components: - - pos: -12.5,-14.5 - parent: 30 - type: Transform -- uid: 6831 - type: TableGlass - components: - - pos: -13.5,-14.5 - parent: 30 - type: Transform -- uid: 6832 - type: TableGlass - components: - - pos: -14.5,-14.5 - parent: 30 - type: Transform -- uid: 6833 - type: ChairOfficeLight - components: - - pos: -13.5,-13.5 - parent: 30 - type: Transform -- uid: 6834 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: -13.5,-15.5 - parent: 30 - type: Transform -- uid: 6835 - type: WallReinforced - components: - - pos: -26.5,-17.5 - parent: 30 - type: Transform -- uid: 6836 - type: BoxFolderWhite - components: - - pos: -13.484441,-14.406982 - parent: 30 - type: Transform -- uid: 6837 - type: Table - components: - - pos: -13.5,-16.5 - parent: 30 - type: Transform -- uid: 6838 - type: Table - components: - - pos: -14.5,-16.5 - parent: 30 - type: Transform -- uid: 6839 - type: LockerChiefMedicalOfficerFilled - components: - - pos: -15.5,-16.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21256 - type: ContainerContainer -- uid: 6840 - type: SpawnPointChiefMedicalOfficer - components: - - pos: -13.5,-15.5 - parent: 30 - type: Transform -- uid: 6841 - type: SpawnMobCatRuntime - components: - - pos: -14.5,-15.5 - parent: 30 - type: Transform -- uid: 6842 - type: SpawnMobCatException - components: - - pos: -12.5,-15.5 - parent: 30 - type: Transform -- uid: 6843 - type: ClothingEyesHudMedical - components: - - pos: -13.368895,-16.480482 - parent: 30 - type: Transform -- uid: 6844 - type: DisposalUnit - components: - - pos: -11.5,-0.5 - parent: 30 - type: Transform -- uid: 6845 - type: Table - components: - - pos: -14.5,-0.5 - parent: 30 - type: Transform -- uid: 6846 - type: Table - components: - - pos: -5.5,-1.5 - parent: 30 - type: Transform -- uid: 6847 - type: Table - components: - - pos: -6.5,-1.5 - parent: 30 - type: Transform -- uid: 6848 - type: TableGlass - components: - - pos: -5.5,-4.5 - parent: 30 - type: Transform -- uid: 6849 - type: Chair - components: - - pos: -13.5,-0.5 - parent: 30 - type: Transform -- uid: 6850 - type: Chair - components: - - pos: -12.5,-0.5 - parent: 30 - type: Transform -- uid: 6851 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 30 - type: Transform -- uid: 6852 - type: Chair - components: - - pos: -7.5,-1.5 - parent: 30 - type: Transform -- uid: 6853 - type: CheapRollerBed - components: - - pos: -10.487353,-4.3521314 - parent: 30 - type: Transform -- uid: 6854 - type: CheapRollerBed - components: - - pos: -9.534228,-4.3365064 - parent: 30 - type: Transform -- uid: 6855 - type: MaterialCloth1 - components: - - pos: -5.4873533,-4.3833814 - parent: 30 - type: Transform -- uid: 6856 - type: MedkitFilled - components: - - pos: -14.502978,-0.38338137 - parent: 30 - type: Transform -- uid: 6857 - type: HandheldHealthAnalyzer - components: - - pos: -5.5029783,-1.3990064 - parent: 30 - type: Transform -- uid: 6858 - type: FirelockGlass - components: - - pos: -16.5,-10.5 - parent: 30 - type: Transform -- uid: 6859 - type: FirelockGlass - components: - - pos: -16.5,-9.5 - parent: 30 - type: Transform -- uid: 6860 - type: FirelockGlass - components: - - pos: -16.5,-8.5 - parent: 30 - type: Transform -- uid: 6861 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,-4.5 - parent: 30 - type: Transform -- uid: 6862 - type: SolarPanel - components: - - pos: -72.5,55.5 - parent: 30 - type: Transform -- uid: 6863 - type: PosterLegitCleanliness - components: - - pos: -16.5,-6.5 - parent: 30 - type: Transform -- uid: 6864 - type: PottedPlantBioluminscent - components: - - pos: -19.5,-4.5 - parent: 30 - type: Transform -- uid: 6865 - type: WallReinforced - components: - - pos: -20.5,-4.5 - parent: 30 - type: Transform -- uid: 6866 - type: WallReinforced - components: - - pos: -20.5,-6.5 - parent: 30 - type: Transform -- uid: 6867 - type: WallReinforced - components: - - pos: -21.5,-6.5 - parent: 30 - type: Transform -- uid: 6868 - type: WallReinforced - components: - - pos: -22.5,-6.5 - parent: 30 - type: Transform -- uid: 6869 - type: WallReinforced - components: - - pos: -23.5,-6.5 - parent: 30 - type: Transform -- uid: 6870 - type: WallReinforced - components: - - pos: -24.5,-6.5 - parent: 30 - type: Transform -- uid: 6871 - type: WallReinforced - components: - - pos: -25.5,-6.5 - parent: 30 - type: Transform -- uid: 6872 - type: WallReinforced - components: - - pos: -26.5,-6.5 - parent: 30 - type: Transform -- uid: 6873 - type: WallSolid - components: - - pos: -27.5,-4.5 - parent: 30 - type: Transform -- uid: 6874 - type: WallSolid - components: - - pos: -26.5,-0.5 - parent: 30 - type: Transform -- uid: 6875 - type: WallSolid - components: - - pos: -29.5,-4.5 - parent: 30 - type: Transform -- uid: 6876 - type: WallSolid - components: - - pos: -27.5,0.5 - parent: 30 - type: Transform -- uid: 6877 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-1.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6878 - type: AirlockMedicalLocked - components: - - name: Morgue - type: MetaData - - pos: -22.5,0.5 - parent: 30 - type: Transform -- uid: 6879 - type: AirlockMedicalLocked - components: - - name: Morgue - type: MetaData - - pos: -20.5,-5.5 - parent: 30 - type: Transform -- uid: 6880 - type: AirlockMedicalLocked - components: - - name: Morgue - type: MetaData - - pos: -26.5,-5.5 - parent: 30 - type: Transform -- uid: 6881 - type: ShuttersNormalOpen - components: - - pos: -29.5,0.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6894 - type: SignalReceiver -- uid: 6882 - type: ShuttersNormalOpen - components: - - pos: -28.5,0.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6894 - type: SignalReceiver -- uid: 6883 - type: WallReinforced - components: - - pos: -40.5,-6.5 - parent: 30 - type: Transform -- uid: 6884 - type: WallReinforced - components: - - pos: -40.5,-4.5 - parent: 30 - type: Transform -- uid: 6885 - type: ReinforcedWindow - components: - - pos: -29.5,0.5 - parent: 30 - type: Transform -- uid: 6886 - type: TableWood - components: - - pos: -31.5,-0.5 - parent: 30 - type: Transform -- uid: 6887 - type: ReinforcedWindow - components: - - pos: -28.5,0.5 - parent: 30 - type: Transform -- uid: 6888 - type: TableWood - components: - - pos: -30.5,-0.5 - parent: 30 - type: Transform -- uid: 6889 - type: ToolboxEmergencyFilled - components: - - pos: -35.511932,-1.3464327 - parent: 30 - type: Transform -- uid: 6890 - type: AirlockMedicalLocked - components: - - name: Psychology - type: MetaData - - pos: -28.5,-4.5 - parent: 30 - type: Transform -- uid: 6891 - type: AirlockMedicalGlassLocked - components: - - name: Cryonics - type: MetaData - - pos: -20.5,-22.5 - parent: 30 - type: Transform -- uid: 6892 - type: ReinforcedWindow - components: - - pos: -33.5,-3.5 - parent: 30 - type: Transform -- uid: 6893 - type: Grille - components: - - pos: -33.5,-3.5 - parent: 30 - type: Transform -- uid: 6894 - type: SignalButton - components: - - pos: -30.5,-3.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6881 - - port: Toggle - uid: 6882 - type: SignalTransmitter -- uid: 6895 - type: AirlockMedicalLocked - components: - - name: Psychology - type: MetaData - - pos: -32.5,-1.5 - parent: 30 - type: Transform -- uid: 6896 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6897 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -33.5,-1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6898 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6899 - type: filingCabinet - components: - - pos: -30.5,-2.5 - parent: 30 - type: Transform -- uid: 6900 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6901 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6902 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6903 - type: SignMorgue - components: - - pos: -26.5,-4.5 - parent: 30 - type: Transform -- uid: 6904 - type: SignMorgue - components: - - pos: -20.5,-4.5 - parent: 30 - type: Transform -- uid: 6905 - type: SignMorgue - components: - - pos: -23.5,0.5 - parent: 30 - type: Transform -- uid: 6906 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-4.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6907 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6908 - type: Crematorium - components: - - pos: -77.5,-38.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6909 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6910 - type: GasPipeStraight - components: - - pos: -28.5,-4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6911 - type: GasVentScrubber - components: - - pos: -28.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6912 - type: PottedPlantRandom - components: - - pos: -29.5,-2.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 6913 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.3955739 - - 12.773826 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6914 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-2.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.3955739 - - 12.773826 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6915 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-3.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.3955739 - - 12.773826 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6916 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-4.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.3955739 - - 12.773826 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6917 - type: VendingMachineViroDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -27.5,-24.5 - parent: 30 - type: Transform -- uid: 6918 - type: TableReinforcedGlass - components: - - pos: -28.5,-22.5 - parent: 30 - type: Transform -- uid: 6919 - type: ReinforcedWindow - components: - - pos: -32.5,-21.5 - parent: 30 - type: Transform -- uid: 6920 - type: TableReinforcedGlass - components: - - pos: -28.5,-23.5 - parent: 30 - type: Transform -- uid: 6921 - type: SpawnMobPossumMorty - components: - - pos: -22.5,-5.5 - parent: 30 - type: Transform -- uid: 6922 - type: WallSolid - components: - - pos: -20.5,-7.5 - parent: 30 - type: Transform -- uid: 6923 - type: WallSolid - components: - - pos: -26.5,-7.5 - parent: 30 - type: Transform -- uid: 6924 - type: WallSolid - components: - - pos: -20.5,-10.5 - parent: 30 - type: Transform -- uid: 6925 - type: WallSolid - components: - - pos: -26.5,-10.5 - parent: 30 - type: Transform -- uid: 6926 - type: WallSolid - components: - - pos: -20.5,-11.5 - parent: 30 - type: Transform -- uid: 6927 - type: WallSolid - components: - - pos: -21.5,-11.5 - parent: 30 - type: Transform -- uid: 6928 - type: WallSolid - components: - - pos: -22.5,-11.5 - parent: 30 - type: Transform -- uid: 6929 - type: ShuttersNormalOpen - components: - - pos: 4.5,5.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver -- uid: 6930 - type: FirelockGlass - components: - - pos: -26.5,-9.5 - parent: 30 - type: Transform -- uid: 6931 - type: WallSolid - components: - - pos: -26.5,-11.5 - parent: 30 - type: Transform -- uid: 6932 - type: Grille - components: - - pos: -25.5,-11.5 - parent: 30 - type: Transform -- uid: 6933 - type: FirelockGlass - components: - - pos: -26.5,-8.5 - parent: 30 - type: Transform -- uid: 6934 - type: FirelockGlass - components: - - pos: -24.5,-11.5 - parent: 30 - type: Transform -- uid: 6935 - type: FirelockGlass - components: - - pos: -23.5,-11.5 - parent: 30 - type: Transform -- uid: 6936 - type: FirelockGlass - components: - - pos: -20.5,-9.5 - parent: 30 - type: Transform -- uid: 6937 - type: FirelockGlass - components: - - pos: -20.5,-8.5 - parent: 30 - type: Transform -- uid: 6938 - type: WallReinforced - components: - - pos: -26.5,-13.5 - parent: 30 - type: Transform -- uid: 6939 - type: ReinforcedWindow - components: - - pos: -21.5,-15.5 - parent: 30 - type: Transform -- uid: 6940 - type: WallReinforced - components: - - pos: -24.5,-15.5 - parent: 30 - type: Transform -- uid: 6941 - type: ReinforcedWindow - components: - - pos: -23.5,-15.5 - parent: 30 - type: Transform -- uid: 6942 - type: WallReinforced - components: - - pos: -22.5,-15.5 - parent: 30 - type: Transform -- uid: 6943 - type: ReinforcedWindow - components: - - pos: -25.5,-15.5 - parent: 30 - type: Transform -- uid: 6944 - type: WallReinforced - components: - - pos: -20.5,-15.5 - parent: 30 - type: Transform -- uid: 6945 - type: ShuttersNormalOpen - components: - - pos: -9.5,5.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 583 - type: SignalReceiver -- uid: 6946 - type: VendingMachineHappyHonk - components: - - flags: SessionSpecific - type: MetaData - - pos: -15.5,17.5 - parent: 30 - type: Transform -- uid: 6947 - type: Grille - components: - - pos: -25.5,-15.5 - parent: 30 - type: Transform -- uid: 6948 - type: Grille - components: - - pos: -23.5,-15.5 - parent: 30 - type: Transform -- uid: 6949 - type: Grille - components: - - pos: -21.5,-15.5 - parent: 30 - type: Transform -- uid: 6950 - type: Grille - components: - - pos: -20.5,-14.5 - parent: 30 - type: Transform -- uid: 6951 - type: Grille - components: - - pos: -20.5,-12.5 - parent: 30 - type: Transform -- uid: 6952 - type: FirelockGlass - components: - - pos: -20.5,-13.5 - parent: 30 - type: Transform -- uid: 6953 - type: SignSpace - components: - - pos: -29.5,-21.5 - parent: 30 - type: Transform -- uid: 6954 - type: BedsheetMedical - components: - - pos: -21.5,-14.5 - parent: 30 - type: Transform -- uid: 6955 - type: TableGlass - components: - - pos: -25.5,-14.5 - parent: 30 - type: Transform -- uid: 6956 - type: MedicalTechFab - components: - - pos: -25.5,-13.5 - parent: 30 - type: Transform - - materialWhiteList: - - Glass - - Steel - - Plastic - - Durathread - - Cloth - type: MaterialStorage -- uid: 6957 - type: TableGlass - components: - - pos: -25.5,-12.5 - parent: 30 - type: Transform -- uid: 6958 - type: ReinforcedWindow - components: - - pos: -29.5,-22.5 - parent: 30 - type: Transform -- uid: 6959 - type: BedsheetMedical - components: - - pos: -23.5,-14.5 - parent: 30 - type: Transform -- uid: 6960 - type: MedicalBed - components: - - pos: -21.5,-14.5 - parent: 30 - type: Transform -- uid: 6961 - type: WallReinforced - components: - - pos: -26.5,-18.5 - parent: 30 - type: Transform -- uid: 6962 - type: WallReinforced - components: - - pos: -26.5,-19.5 - parent: 30 - type: Transform -- uid: 6963 - type: WallReinforced - components: - - pos: -26.5,-20.5 - parent: 30 - type: Transform -- uid: 6964 - type: WallReinforced - components: - - pos: -25.5,-20.5 - parent: 30 - type: Transform -- uid: 6965 - type: WallReinforced - components: - - pos: -24.5,-20.5 - parent: 30 - type: Transform -- uid: 6966 - type: WallReinforced - components: - - pos: -23.5,-20.5 - parent: 30 - type: Transform -- uid: 6967 - type: WallReinforced - components: - - pos: -22.5,-20.5 - parent: 30 - type: Transform -- uid: 6968 - type: WallReinforced - components: - - pos: -20.5,-20.5 - parent: 30 - type: Transform -- uid: 6969 - type: WallReinforced - components: - - pos: -21.5,-20.5 - parent: 30 - type: Transform -- uid: 6970 - type: ReinforcedWindow - components: - - pos: -20.5,-19.5 - parent: 30 - type: Transform -- uid: 6971 - type: ReinforcedWindow - components: - - pos: -20.5,-16.5 - parent: 30 - type: Transform -- uid: 6972 - type: Grille - components: - - pos: -20.5,-19.5 - parent: 30 - type: Transform -- uid: 6973 - type: Grille - components: - - pos: -20.5,-16.5 - parent: 30 - type: Transform -- uid: 6974 - type: VendingMachineMediDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -22.5,-19.5 - parent: 30 - type: Transform -- uid: 6975 - type: WeaponRevolverDeckard - components: - - flags: InContainer - type: MetaData - - parent: 5608 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 6976 - type: LockerMedicalFilled - components: - - pos: -24.5,-19.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6977 - type: LockerMedicalFilled - components: - - pos: -23.5,-19.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6978 - type: Table - components: - - pos: -21.5,-19.5 - parent: 30 - type: Transform -- uid: 6979 - type: Table - components: - - pos: -21.5,-16.5 - parent: 30 - type: Transform -- uid: 6980 - type: Table - components: - - pos: -23.5,-16.5 - parent: 30 - type: Transform -- uid: 6981 - type: Table - components: - - pos: -22.5,-16.5 - parent: 30 - type: Transform -- uid: 6982 - type: Table - components: - - pos: -24.5,-16.5 - parent: 30 - type: Transform -- uid: 6983 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-17.5 - parent: 30 - type: Transform -- uid: 6984 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-16.5 - parent: 30 - type: Transform -- uid: 6985 - type: AirlockMedicalGlassLocked - components: - - name: Medical Storage - type: MetaData - - pos: -20.5,-18.5 - parent: 30 - type: Transform -- uid: 6986 - type: AirlockMedicalGlassLocked - components: - - name: Medical Storage - type: MetaData - - pos: -20.5,-17.5 - parent: 30 - type: Transform -- uid: 6987 - type: MedkitFilled - components: - - pos: -24.481306,-16.484182 - parent: 30 - type: Transform -- uid: 6988 - type: MedkitBruteFilled - components: - - pos: -23.809431,-16.499807 - parent: 30 - type: Transform -- uid: 6989 - type: MedkitBurnFilled - components: - - pos: -23.106306,-16.327932 - parent: 30 - type: Transform -- uid: 6990 - type: MedkitBurnFilled - components: - - pos: -23.106306,-16.484182 - parent: 30 - type: Transform -- uid: 6991 - type: MedkitToxinFilled - components: - - pos: -22.465681,-16.312307 - parent: 30 - type: Transform -- uid: 6992 - type: MedkitToxinFilled - components: - - pos: -22.465681,-16.499807 - parent: 30 - type: Transform -- uid: 6993 - type: MedkitRadiationFilled - components: - - pos: -21.840681,-16.312307 - parent: 30 - type: Transform -- uid: 6994 - type: MedkitRadiationFilled - components: - - pos: -21.840681,-16.515432 - parent: 30 - type: Transform -- uid: 6995 - type: MedkitCombatFilled - components: - - pos: -14.458165,-16.433685 - parent: 30 - type: Transform -- uid: 6996 - type: CheapRollerBed - components: - - pos: -27.532553,-12.457127 - parent: 30 - type: Transform -- uid: 6997 - type: MedkitAdvancedFilled - components: - - pos: -13.882326,-16.429274 - parent: 30 - type: Transform -- uid: 6998 - type: Grille - components: - - pos: -29.5,-22.5 - parent: 30 - type: Transform -- uid: 6999 - type: Lamp - components: - - pos: -14.306395,-14.292982 - parent: 30 - type: Transform -- uid: 7000 - type: EmergencyRollerBed - components: - - pos: -15.524454,-12.386732 - parent: 30 - type: Transform -- uid: 7001 - type: WallReinforced - components: - - pos: -10.5,-18.5 - parent: 30 - type: Transform -- uid: 7002 - type: WallReinforced - components: - - pos: -9.5,-18.5 - parent: 30 - type: Transform -- uid: 7003 - type: WallReinforced - components: - - pos: -8.5,-18.5 - parent: 30 - type: Transform -- uid: 7004 - type: WallReinforced - components: - - pos: -7.5,-18.5 - parent: 30 - type: Transform -- uid: 7005 - type: WallReinforced - components: - - pos: -6.5,-18.5 - parent: 30 - type: Transform -- uid: 7006 - type: AirlockChiefMedicalOfficerLocked - components: - - pos: -6.5,-16.5 - parent: 30 - type: Transform -- uid: 7007 - type: WallReinforced - components: - - pos: -6.5,-15.5 - parent: 30 - type: Transform -- uid: 7008 - type: WallReinforced - components: - - pos: -7.5,-15.5 - parent: 30 - type: Transform -- uid: 7009 - type: WallReinforced - components: - - pos: -8.5,-15.5 - parent: 30 - type: Transform -- uid: 7010 - type: WallReinforced - components: - - pos: -9.5,-15.5 - parent: 30 - type: Transform -- uid: 7011 - type: WallReinforced - components: - - pos: -6.5,-17.5 - parent: 30 - type: Transform -- uid: 7012 - type: SignAtmosMinsky - components: - - pos: 8.5,-21.5 - parent: 30 - type: Transform -- uid: 7013 - type: BedsheetCMO - components: - - pos: -7.5,-17.5 - parent: 30 - type: Transform -- uid: 7014 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-17.5 - parent: 30 - type: Transform -- uid: 7015 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-1.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7016 - type: Gauze - components: - - pos: -9.465214,-17.411165 - parent: 30 - type: Transform -- uid: 7017 - type: ClothingNeckStethoscope - components: - - pos: -9.496464,-17.42679 - parent: 30 - type: Transform -- uid: 7018 - type: MedicalBed - components: - - pos: -7.5,-17.5 - parent: 30 - type: Transform -- uid: 7019 - type: TableGlass - components: - - pos: -9.5,-17.5 - parent: 30 - type: Transform -- uid: 7020 - type: SignExamroom - components: - - pos: -6.5,-17.5 - parent: 30 - type: Transform -- uid: 7021 - type: HandheldGPSBasic - components: - - pos: -21.550684,-19.437244 - parent: 30 - type: Transform -- uid: 7022 - type: BoxSterileMask - components: - - pos: -21.456934,-19.32787 - parent: 30 - type: Transform -- uid: 7023 - type: BoxLatexGloves - components: - - pos: -21.488184,-19.374744 - parent: 30 - type: Transform -- uid: 7024 - type: SprayBottleSpaceCleaner - components: - - pos: -21.347559,-16.23412 - parent: 30 - type: Transform -- uid: 7025 - type: SprayBottleSpaceCleaner - components: - - pos: -21.347559,-16.437244 - parent: 30 - type: Transform -- uid: 7026 - type: Grille - components: - - pos: -16.5,-19.5 - parent: 30 - type: Transform -- uid: 7027 - type: WallSolid - components: - - pos: -16.5,-18.5 - parent: 30 - type: Transform -- uid: 7028 - type: Catwalk - components: - - pos: 27.5,-18.5 - parent: 30 - type: Transform -- uid: 7029 - type: WallSolid - components: - - pos: -12.5,-18.5 - parent: 30 - type: Transform -- uid: 7030 - type: WallSolid - components: - - pos: -12.5,-19.5 - parent: 30 - type: Transform -- uid: 7031 - type: Window - components: - - pos: -16.5,-21.5 - parent: 30 - type: Transform -- uid: 7032 - type: WallSolid - components: - - pos: -12.5,-21.5 - parent: 30 - type: Transform -- uid: 7033 - type: WallSolid - components: - - pos: -12.5,-22.5 - parent: 30 - type: Transform -- uid: 7034 - type: WallSolid - components: - - pos: -12.5,-23.5 - parent: 30 - type: Transform -- uid: 7035 - type: WallSolid - components: - - pos: -12.5,-24.5 - parent: 30 - type: Transform -- uid: 7036 - type: WallSolid - components: - - pos: -11.5,-24.5 - parent: 30 - type: Transform -- uid: 7037 - type: WallSolid - components: - - pos: -10.5,-24.5 - parent: 30 - type: Transform -- uid: 7038 - type: WallSolid - components: - - pos: -9.5,-24.5 - parent: 30 - type: Transform -- uid: 7039 - type: WallSolid - components: - - pos: -8.5,-24.5 - parent: 30 - type: Transform -- uid: 7040 - type: WallSolid - components: - - pos: -7.5,-24.5 - parent: 30 - type: Transform -- uid: 7041 - type: WallSolid - components: - - pos: -6.5,-24.5 - parent: 30 - type: Transform -- uid: 7042 - type: WallSolid - components: - - pos: -6.5,-23.5 - parent: 30 - type: Transform -- uid: 7043 - type: WallSolid - components: - - pos: -6.5,-22.5 - parent: 30 - type: Transform -- uid: 7044 - type: WallSolid - components: - - pos: -6.5,-21.5 - parent: 30 - type: Transform -- uid: 7045 - type: AirlockMaintMedLocked - components: - - pos: -6.5,-20.5 - parent: 30 - type: Transform -- uid: 7046 - type: WallSolid - components: - - pos: -6.5,-19.5 - parent: 30 - type: Transform -- uid: 7047 - type: WallSolid - components: - - pos: -13.5,-23.5 - parent: 30 - type: Transform -- uid: 7048 - type: WallSolid - components: - - pos: -14.5,-23.5 - parent: 30 - type: Transform -- uid: 7049 - type: WallSolid - components: - - pos: -15.5,-23.5 - parent: 30 - type: Transform -- uid: 7050 - type: WallSolid - components: - - pos: -16.5,-23.5 - parent: 30 - type: Transform -- uid: 7051 - type: WallSolid - components: - - pos: -16.5,-22.5 - parent: 30 - type: Transform -- uid: 7052 - type: Window - components: - - pos: -16.5,-19.5 - parent: 30 - type: Transform -- uid: 7053 - type: Grille - components: - - pos: -16.5,-21.5 - parent: 30 - type: Transform -- uid: 7054 - type: AirlockMedicalGlassLocked - components: - - pos: -16.5,-20.5 - parent: 30 - type: Transform -- uid: 7055 - type: AirlockMedicalLocked - components: - - pos: -12.5,-20.5 - parent: 30 - type: Transform -- uid: 7056 - type: WallSolid - components: - - pos: -16.5,-24.5 - parent: 30 - type: Transform -- uid: 7057 - type: WallSolid - components: - - pos: -17.5,-24.5 - parent: 30 - type: Transform -- uid: 7058 - type: WallSolid - components: - - pos: -19.5,-24.5 - parent: 30 - type: Transform -- uid: 7059 - type: WallSolid - components: - - pos: -20.5,-24.5 - parent: 30 - type: Transform -- uid: 7060 - type: WallReinforced - components: - - pos: -24.5,-22.5 - parent: 30 - type: Transform -- uid: 7061 - type: WallReinforced - components: - - pos: -23.5,-23.5 - parent: 30 - type: Transform -- uid: 7062 - type: WallReinforced - components: - - pos: -24.5,-21.5 - parent: 30 - type: Transform -- uid: 7063 - type: WallReinforced - components: - - pos: -24.5,-23.5 - parent: 30 - type: Transform -- uid: 7064 - type: WallReinforced - components: - - pos: -24.5,-24.5 - parent: 30 - type: Transform -- uid: 7065 - type: WallReinforced - components: - - pos: -25.5,-24.5 - parent: 30 - type: Transform -- uid: 7066 - type: WallReinforced - components: - - pos: -25.5,-25.5 - parent: 30 - type: Transform -- uid: 7067 - type: WallReinforced - components: - - pos: -26.5,-25.5 - parent: 30 - type: Transform -- uid: 7068 - type: WallReinforced - components: - - pos: -21.5,-23.5 - parent: 30 - type: Transform -- uid: 7069 - type: WallReinforced - components: - - pos: -22.5,-23.5 - parent: 30 - type: Transform -- uid: 7070 - type: WallReinforced - components: - - pos: -20.5,-23.5 - parent: 30 - type: Transform -- uid: 7071 - type: ReinforcedWindow - components: - - pos: -20.5,-21.5 - parent: 30 - type: Transform -- uid: 7072 - type: AtmosDeviceFanTiny - components: - - pos: -20.5,-22.5 - parent: 30 - type: Transform -- uid: 7073 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-22.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7074 - type: ReinforcedWindow - components: - - pos: -34.5,-21.5 - parent: 30 - type: Transform -- uid: 7075 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-22.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7076 - type: GasThermoMachineFreezer - components: - - pos: -22.5,-21.5 - parent: 30 - type: Transform -- uid: 7077 - type: BedsheetMedical - components: - - pos: -21.5,-21.5 - parent: 30 - type: Transform -- uid: 7078 - type: SignCryogenicsMed - components: - - pos: -20.5,-23.5 - parent: 30 - type: Transform -- uid: 7079 - type: VendingMachineWallMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -22.5,-20.5 - parent: 30 - type: Transform -- uid: 7080 - type: WallSolid - components: - - pos: -30.5,-8.5 - parent: 30 - type: Transform -- uid: 7081 - type: Bed - components: - - pos: -13.5,-21.5 - parent: 30 - type: Transform -- uid: 7082 - type: Bed - components: - - pos: -13.5,-22.5 - parent: 30 - type: Transform -- uid: 7083 - type: CheapRollerBed - components: - - pos: -15.517497,-22.401917 - parent: 30 - type: Transform -- uid: 7084 - type: CheapRollerBed - components: - - pos: -15.470622,-21.464417 - parent: 30 - type: Transform -- uid: 7085 - type: ComputerMedicalRecords - components: - - pos: -14.5,-18.5 - parent: 30 - type: Transform -- uid: 7086 - type: Table - components: - - pos: -13.5,-18.5 - parent: 30 - type: Transform -- uid: 7087 - type: CrateSurgery - components: - - pos: -15.5,-18.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 7088 - type: WallReinforced - components: - - pos: 36.5,-13.5 - parent: 30 - type: Transform -- uid: 7089 - type: SignSurgery - components: - - pos: -16.5,-18.5 - parent: 30 - type: Transform -- uid: 7090 - type: SignSurgery - components: - - pos: -12.5,-19.5 - parent: 30 - type: Transform -- uid: 7091 - type: ExtinguisherCabinetFilled - components: - - pos: -12.5,-18.5 - parent: 30 - type: Transform -- uid: 7092 - type: computerBodyScanner - components: - - pos: -9.5,-20.5 - parent: 30 - type: Transform -- uid: 7093 - type: OperatingTable - components: - - pos: -9.5,-21.5 - parent: 30 - type: Transform -- uid: 7094 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,-22.5 - parent: 30 - type: Transform -- uid: 7095 - type: Table - components: - - pos: -7.5,-23.5 - parent: 30 - type: Transform -- uid: 7096 - type: Table - components: - - pos: -8.5,-23.5 - parent: 30 - type: Transform -- uid: 7097 - type: Table - components: - - pos: -9.5,-23.5 - parent: 30 - type: Transform -- uid: 7098 - type: Table - components: - - pos: -10.5,-23.5 - parent: 30 - type: Transform -- uid: 7099 - type: Table - components: - - pos: -11.5,-23.5 - parent: 30 - type: Transform -- uid: 7100 - type: Table - components: - - pos: -11.5,-22.5 - parent: 30 - type: Transform -- uid: 7101 - type: LockerMedicineFilled - components: - - pos: -7.5,-19.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7102 - type: LockerMedicineFilled - components: - - pos: -25.5,-16.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7103 - type: MaterialCloth - components: - - pos: -11.500607,-23.392311 - parent: 30 - type: Transform -- uid: 7104 - type: ClothingHandsGlovesNitrile - components: - - pos: -11.438107,-22.517311 - parent: 30 - type: Transform -- uid: 7105 - type: ClothingMaskSterile - components: - - pos: -11.469357,-22.267311 - parent: 30 - type: Transform -- uid: 7106 - type: ScalpelLaser - components: - - pos: -9.531857,-23.305214 - parent: 30 - type: Transform -- uid: 7107 - type: SawElectric - components: - - pos: -9.500607,-23.570839 - parent: 30 - type: Transform -- uid: 7108 - type: Hemostat - components: - - pos: -7.5631065,-23.398964 - parent: 30 - type: Transform -- uid: 7109 - type: Cautery - components: - - pos: -8.500607,-23.398964 - parent: 30 - type: Transform -- uid: 7110 - type: ScalpelAdvanced - components: - - pos: -10.391232,-23.320839 - parent: 30 - type: Transform -- uid: 7111 - type: Retractor - components: - - pos: -10.453732,-23.523964 - parent: 30 - type: Transform -- uid: 7112 - type: Sink - components: - - pos: -10.5,-19.5 - parent: 30 - type: Transform -- uid: 7113 - type: AirlockMaintMedLocked - components: - - pos: -18.5,-24.5 - parent: 30 - type: Transform -- uid: 7114 - type: WallReinforced - components: - - pos: -27.5,-13.5 - parent: 30 - type: Transform -- uid: 7115 - type: WallReinforced - components: - - pos: -29.5,-13.5 - parent: 30 - type: Transform -- uid: 7116 - type: WallReinforced - components: - - pos: -27.5,-17.5 - parent: 30 - type: Transform -- uid: 7117 - type: WallReinforced - components: - - pos: -29.5,-17.5 - parent: 30 - type: Transform -- uid: 7118 - type: WallReinforced - components: - - pos: -30.5,-17.5 - parent: 30 - type: Transform -- uid: 7119 - type: WallReinforced - components: - - pos: -30.5,-16.5 - parent: 30 - type: Transform -- uid: 7120 - type: WallReinforced - components: - - pos: -30.5,-15.5 - parent: 30 - type: Transform -- uid: 7121 - type: WallReinforced - components: - - pos: -30.5,-14.5 - parent: 30 - type: Transform -- uid: 7122 - type: WallReinforced - components: - - pos: -30.5,-13.5 - parent: 30 - type: Transform -- uid: 7123 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-12.5 - parent: 30 - type: Transform -- uid: 7124 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-12.5 - parent: 30 - type: Transform -- uid: 7125 - type: TableGlass - components: - - pos: -31.5,-12.5 - parent: 30 - type: Transform -- uid: 7126 - type: WallSolid - components: - - pos: -30.5,-12.5 - parent: 30 - type: Transform -- uid: 7127 - type: Window - components: - - pos: -30.5,-5.5 - parent: 30 - type: Transform -- uid: 7128 - type: WallSolid - components: - - pos: -30.5,-4.5 - parent: 30 - type: Transform -- uid: 7129 - type: Window - components: - - pos: -30.5,-7.5 - parent: 30 - type: Transform -- uid: 7130 - type: WallReinforced - components: - - pos: -40.5,-3.5 - parent: 30 - type: Transform -- uid: 7131 - type: Grille - components: - - pos: -30.5,-7.5 - parent: 30 - type: Transform -- uid: 7132 - type: Grille - components: - - pos: -30.5,-5.5 - parent: 30 - type: Transform -- uid: 7133 - type: AirlockMedicalGlassLocked - components: - - pos: -30.5,-6.5 - parent: 30 - type: Transform -- uid: 7134 - type: WallReinforced - components: - - pos: -29.5,-25.5 - parent: 30 - type: Transform -- uid: 7135 - type: WallReinforced - components: - - pos: -32.5,-25.5 - parent: 30 - type: Transform -- uid: 7136 - type: WallReinforced - components: - - pos: -35.5,-25.5 - parent: 30 - type: Transform -- uid: 7137 - type: WallReinforced - components: - - pos: -35.5,-24.5 - parent: 30 - type: Transform -- uid: 7138 - type: WallReinforced - components: - - pos: -35.5,-23.5 - parent: 30 - type: Transform -- uid: 7139 - type: WallReinforced - components: - - pos: -35.5,-22.5 - parent: 30 - type: Transform -- uid: 7140 - type: WallReinforced - components: - - pos: -35.5,-21.5 - parent: 30 - type: Transform -- uid: 7141 - type: WallReinforced - components: - - pos: -35.5,-20.5 - parent: 30 - type: Transform -- uid: 7142 - type: TableReinforcedGlass - components: - - pos: -28.5,-24.5 - parent: 30 - type: Transform -- uid: 7143 - type: DiseaseDiagnoser - components: - - pos: -25.5,-23.5 - parent: 30 - type: Transform -- uid: 7144 - type: BedsheetGreen - components: - - pos: -33.5,-17.5 - parent: 30 - type: Transform -- uid: 7145 - type: TableReinforcedGlass - components: - - pos: -33.5,-24.5 - parent: 30 - type: Transform -- uid: 7146 - type: MedicalBed - components: - - pos: -31.5,-17.5 - parent: 30 - type: Transform -- uid: 7147 - type: TableReinforcedGlass - components: - - pos: -34.5,-24.5 - parent: 30 - type: Transform -- uid: 7148 - type: MedicalBed - components: - - pos: -33.5,-17.5 - parent: 30 - type: Transform -- uid: 7149 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,-21.5 - parent: 30 - type: Transform -- uid: 7150 - type: ReinforcedWindow - components: - - pos: -33.5,-25.5 - parent: 30 - type: Transform -- uid: 7151 - type: ReinforcedWindow - components: - - pos: -34.5,-25.5 - parent: 30 - type: Transform -- uid: 7152 - type: ReinforcedWindow - components: - - pos: -30.5,-25.5 - parent: 30 - type: Transform -- uid: 7153 - type: ReinforcedWindow - components: - - pos: -31.5,-25.5 - parent: 30 - type: Transform -- uid: 7154 - type: ReinforcedWindow - components: - - pos: -27.5,-25.5 - parent: 30 - type: Transform -- uid: 7155 - type: ReinforcedWindow - components: - - pos: -28.5,-25.5 - parent: 30 - type: Transform -- uid: 7156 - type: WallReinforced - components: - - pos: -35.5,-26.5 - parent: 30 - type: Transform -- uid: 7157 - type: WallReinforced - components: - - pos: -35.5,-27.5 - parent: 30 - type: Transform -- uid: 7158 - type: WallReinforced - components: - - pos: -32.5,-27.5 - parent: 30 - type: Transform -- uid: 7159 - type: WallReinforced - components: - - pos: -29.5,-27.5 - parent: 30 - type: Transform -- uid: 7160 - type: WallReinforced - components: - - pos: -26.5,-26.5 - parent: 30 - type: Transform -- uid: 7161 - type: ReinforcedWindow - components: - - pos: -27.5,-27.5 - parent: 30 - type: Transform -- uid: 7162 - type: WallReinforced - components: - - pos: -26.5,-27.5 - parent: 30 - type: Transform -- uid: 7163 - type: ReinforcedWindow - components: - - pos: -28.5,-27.5 - parent: 30 - type: Transform -- uid: 7164 - type: ReinforcedWindow - components: - - pos: -30.5,-27.5 - parent: 30 - type: Transform -- uid: 7165 - type: ReinforcedWindow - components: - - pos: -31.5,-27.5 - parent: 30 - type: Transform -- uid: 7166 - type: ReinforcedWindow - components: - - pos: -34.5,-27.5 - parent: 30 - type: Transform -- uid: 7167 - type: ReinforcedWindow - components: - - pos: -33.5,-27.5 - parent: 30 - type: Transform -- uid: 7168 - type: Grille - components: - - pos: -34.5,-25.5 - parent: 30 - type: Transform -- uid: 7169 - type: Grille - components: - - pos: -33.5,-25.5 - parent: 30 - type: Transform -- uid: 7170 - type: Grille - components: - - pos: -34.5,-27.5 - parent: 30 - type: Transform -- uid: 7171 - type: Grille - components: - - pos: -33.5,-27.5 - parent: 30 - type: Transform -- uid: 7172 - type: Grille - components: - - pos: -30.5,-27.5 - parent: 30 - type: Transform -- uid: 7173 - type: Grille - components: - - pos: -31.5,-27.5 - parent: 30 - type: Transform -- uid: 7174 - type: Grille - components: - - pos: -28.5,-27.5 - parent: 30 - type: Transform -- uid: 7175 - type: Grille - components: - - pos: -27.5,-27.5 - parent: 30 - type: Transform -- uid: 7176 - type: Grille - components: - - pos: -27.5,-25.5 - parent: 30 - type: Transform -- uid: 7177 - type: Grille - components: - - pos: -28.5,-25.5 - parent: 30 - type: Transform -- uid: 7178 - type: Grille - components: - - pos: -31.5,-25.5 - parent: 30 - type: Transform -- uid: 7179 - type: Grille - components: - - pos: -30.5,-25.5 - parent: 30 - type: Transform -- uid: 7180 - type: WallReinforced - components: - - pos: -31.5,-16.5 - parent: 30 - type: Transform -- uid: 7181 - type: WallReinforced - components: - - pos: -32.5,-16.5 - parent: 30 - type: Transform -- uid: 7182 - type: WallReinforced - components: - - pos: -33.5,-16.5 - parent: 30 - type: Transform -- uid: 7183 - type: WallReinforced - components: - - pos: -34.5,-16.5 - parent: 30 - type: Transform -- uid: 7184 - type: WallReinforced - components: - - pos: -35.5,-16.5 - parent: 30 - type: Transform -- uid: 7185 - type: WallReinforced - components: - - pos: -35.5,-17.5 - parent: 30 - type: Transform -- uid: 7186 - type: WallReinforced - components: - - pos: -35.5,-18.5 - parent: 30 - type: Transform -- uid: 7187 - type: WallReinforced - components: - - pos: -35.5,-19.5 - parent: 30 - type: Transform -- uid: 7188 - type: WallReinforced - components: - - pos: -30.5,-18.5 - parent: 30 - type: Transform -- uid: 7189 - type: BedsheetGreen - components: - - pos: -31.5,-17.5 - parent: 30 - type: Transform -- uid: 7190 - type: TableReinforcedGlass - components: - - pos: -34.5,-20.5 - parent: 30 - type: Transform -- uid: 7191 - type: AirlockVirologyLocked - components: - - pos: -28.5,-17.5 - parent: 30 - type: Transform -- uid: 7192 - type: AirlockVirologyLocked - components: - - name: Virology - type: MetaData - - pos: -28.5,-13.5 - parent: 30 - type: Transform -- uid: 7193 - type: Grille - components: - - pos: -29.5,-24.5 - parent: 30 - type: Transform -- uid: 7194 - type: ReinforcedWindow - components: - - pos: -32.5,-23.5 - parent: 30 - type: Transform -- uid: 7195 - type: Grille - components: - - pos: -32.5,-24.5 - parent: 30 - type: Transform -- uid: 7196 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,-19.5 - parent: 30 - type: Transform -- uid: 7197 - type: TableGlass - components: - - pos: -34.5,-17.5 - parent: 30 - type: Transform -- uid: 7198 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-17.5 - parent: 30 - type: Transform -- uid: 7199 - type: WindowReinforcedDirectional - components: - - pos: -34.5,-18.5 - parent: 30 - type: Transform -- uid: 7200 - type: WindoorMedicalLocked - components: - - pos: -31.5,-18.5 - parent: 30 - type: Transform -- uid: 7201 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-24.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7202 - type: Grille - components: - - pos: -32.5,-21.5 - parent: 30 - type: Transform -- uid: 7203 - type: ReinforcedWindow - components: - - pos: -32.5,-22.5 - parent: 30 - type: Transform -- uid: 7204 - type: GasVentScrubber - components: - - pos: -27.5,-22.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7205 - type: Table - components: - - pos: -35.5,-1.5 - parent: 30 - type: Transform -- uid: 7206 - type: WallSolid - components: - - pos: -30.5,0.5 - parent: 30 - type: Transform -- uid: 7207 - type: TableWood - components: - - pos: -27.5,-0.5 - parent: 30 - type: Transform -- uid: 7208 - type: GasPipeFourway - components: - - pos: -34.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7209 - type: ClosetL3VirologyFilled - components: - - pos: -27.5,-16.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7210 - type: ClosetL3VirologyFilled - components: - - pos: -27.5,-15.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7211 - type: SignVirology - components: - - pos: -29.5,-13.5 - parent: 30 - type: Transform -- uid: 7212 - type: SignBiohazardMed - components: - - pos: -27.5,-13.5 - parent: 30 - type: Transform -- uid: 7213 - type: PosterLegit50thAnniversaryVintageReprint - components: - - pos: -26.5,-12.5 - parent: 30 - type: Transform -- uid: 7214 - type: WallReinforced - components: - - pos: -39.5,-3.5 - parent: 30 - type: Transform -- uid: 7215 - type: WallReinforced - components: - - pos: -38.5,-3.5 - parent: 30 - type: Transform -- uid: 7216 - type: WallReinforced - components: - - pos: -37.5,-3.5 - parent: 30 - type: Transform -- uid: 7217 - type: WallReinforced - components: - - pos: -36.5,-3.5 - parent: 30 - type: Transform -- uid: 7218 - type: WallReinforced - components: - - pos: -35.5,-3.5 - parent: 30 - type: Transform -- uid: 7219 - type: WallSolid - components: - - pos: -40.5,-9.5 - parent: 30 - type: Transform -- uid: 7220 - type: WallSolid - components: - - pos: -40.5,-10.5 - parent: 30 - type: Transform -- uid: 7221 - type: WallSolid - components: - - pos: -40.5,-11.5 - parent: 30 - type: Transform -- uid: 7222 - type: WallSolid - components: - - pos: -40.5,-12.5 - parent: 30 - type: Transform -- uid: 7223 - type: WallSolid - components: - - pos: -40.5,-13.5 - parent: 30 - type: Transform -- uid: 7224 - type: WallSolid - components: - - pos: -40.5,-14.5 - parent: 30 - type: Transform -- uid: 7225 - type: WallSolid - components: - - pos: -40.5,-15.5 - parent: 30 - type: Transform -- uid: 7226 - type: WallSolid - components: - - pos: -35.5,-15.5 - parent: 30 - type: Transform -- uid: 7227 - type: AirlockMaintRnDMedLocked - components: - - pos: -36.5,-15.5 - parent: 30 - type: Transform -- uid: 7228 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-11.5 - parent: 30 - type: Transform -- uid: 7229 - type: Window - components: - - pos: -38.5,-8.5 - parent: 30 - type: Transform -- uid: 7230 - type: WallSolid - components: - - pos: -36.5,-8.5 - parent: 30 - type: Transform -- uid: 7231 - type: WallSolid - components: - - pos: -39.5,-15.5 - parent: 30 - type: Transform -- uid: 7232 - type: WallSolid - components: - - pos: -38.5,-15.5 - parent: 30 - type: Transform -- uid: 7233 - type: Window - components: - - pos: -39.5,-8.5 - parent: 30 - type: Transform -- uid: 7234 - type: WallSolid - components: - - pos: -37.5,-15.5 - parent: 30 - type: Transform -- uid: 7235 - type: SyringeInaprovaline - components: - - pos: -39.429962,-7.4191527 - parent: 30 - type: Transform -- uid: 7236 - type: CableApcExtension - components: - - pos: -36.5,-6.5 - parent: 30 - type: Transform -- uid: 7237 - type: SignExamroom - components: - - pos: -34.5,-8.5 - parent: 30 - type: Transform -- uid: 7238 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-9.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7239 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-14.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7240 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-4.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7241 - type: CryoPod - components: - - pos: -38.5,-5.5 - parent: 30 - type: Transform -- uid: 7242 - type: CableApcExtension - components: - - pos: -32.5,-5.5 - parent: 30 - type: Transform -- uid: 7243 - type: CableApcExtension - components: - - pos: -38.5,-6.5 - parent: 30 - type: Transform -- uid: 7244 - type: TableGlass - components: - - pos: -31.5,-11.5 - parent: 30 - type: Transform -- uid: 7245 - type: Grille - components: - - pos: -30.5,-9.5 - parent: 30 - type: Transform -- uid: 7246 - type: DisposalPipe - components: - - pos: -32.5,-7.5 - parent: 30 - type: Transform -- uid: 7247 - type: CableApcExtension - components: - - pos: -32.5,-14.5 - parent: 30 - type: Transform -- uid: 7248 - type: CableApcExtension - components: - - pos: -35.5,-7.5 - parent: 30 - type: Transform -- uid: 7249 - type: CableApcExtension - components: - - pos: -35.5,-9.5 - parent: 30 - type: Transform -- uid: 7250 - type: CableApcExtension - components: - - pos: -35.5,-8.5 - parent: 30 - type: Transform -- uid: 7251 - type: CableApcExtension - components: - - pos: -37.5,-6.5 - parent: 30 - type: Transform -- uid: 7252 - type: CableApcExtension - components: - - pos: -38.5,-5.5 - parent: 30 - type: Transform -- uid: 7253 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -38.5,-7.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7254 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7255 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -36.5,-7.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7256 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7257 - type: CableApcExtension - components: - - pos: -36.5,-10.5 - parent: 30 - type: Transform -- uid: 7258 - type: TableGlass - components: - - pos: -37.5,-7.5 - parent: 30 - type: Transform -- uid: 7259 - type: CableApcExtension - components: - - pos: -36.5,-13.5 - parent: 30 - type: Transform -- uid: 7260 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -34.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7261 - type: ClothingNeckScarfStripedGreen - components: - - pos: -36.448586,-4.450703 - parent: 30 - type: Transform -- uid: 7262 - type: GasFilter - components: - - rot: 3.141592653589793 rad - pos: -37.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7263 - type: GasPipeTJunction - components: - - pos: -34.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7264 - type: CableApcExtension - components: - - pos: -35.5,-10.5 - parent: 30 - type: Transform -- uid: 7265 - type: CableApcExtension - components: - - pos: -35.5,-11.5 - parent: 30 - type: Transform -- uid: 7266 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-6.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7267 - type: GasPipeBend - components: - - pos: -36.5,-4.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7268 - type: MonkeyCubeBox - components: - - pos: -38.525543,-10.24341 - parent: 30 - type: Transform -- uid: 7269 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-4.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7270 - type: ClothingEyesHudMedical - components: - - pos: -38.505966,-7.353762 - parent: 30 - type: Transform -- uid: 7271 - type: Chair - components: - - pos: -36.5,-9.5 - parent: 30 - type: Transform -- uid: 7272 - type: GasPipeStraight - components: - - pos: -36.5,-5.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7273 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7274 - type: GasPipeFourway - components: - - pos: -28.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7275 - type: GasThermoMachineFreezer - components: - - pos: -39.5,-5.5 - parent: 30 - type: Transform -- uid: 7276 - type: CableApcExtension - components: - - pos: -35.5,-12.5 - parent: 30 - type: Transform -- uid: 7277 - type: CableApcExtension - components: - - pos: -35.5,-13.5 - parent: 30 - type: Transform -- uid: 7278 - type: Chair - components: - - pos: -33.5,-4.5 - parent: 30 - type: Transform -- uid: 7279 - type: CryoPod - components: - - pos: -35.5,-5.5 - parent: 30 - type: Transform -- uid: 7280 - type: SignCryogenicsMed - components: - - pos: -30.5,-4.5 - parent: 30 - type: Transform -- uid: 7281 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,-4.5 - parent: 30 - type: Transform -- uid: 7282 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-7.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7283 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-6.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7284 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7285 - type: APCBasic - components: - - pos: -27.5,-17.5 - parent: 30 - type: Transform -- uid: 7286 - type: ComputerCloningConsole - components: - - pos: -23.5,-7.5 - parent: 30 - type: Transform - - outputs: - MedicalScannerSender: - - port: MedicalScannerReceiver - uid: 7288 - CloningPodSender: - - port: CloningPodReceiver - uid: 7287 - type: SignalTransmitter -- uid: 7287 - type: CloningPod - components: - - pos: -22.5,-7.5 - parent: 30 - type: Transform - - containers: - - machine_parts - - machine_board - type: Construction - - inputs: - CloningPodReceiver: - - port: CloningPodSender - uid: 7286 - type: SignalReceiver - - containers: - System.Func`3[Robust.Shared.GameObjects.EntityUid,Robust.Shared.GameObjects.MetaDataComponent,System.String]-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - clonepod-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 7288 - type: MedicalScanner - components: - - pos: -24.5,-7.5 - parent: 30 - type: Transform - - containers: - MedicalScanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - scanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - inputs: - MedicalScannerReceiver: - - port: MedicalScannerSender - uid: 7286 - type: SignalReceiver -- uid: 7289 - type: NitrousOxideCanister - components: - - pos: 19.5,-16.5 - parent: 30 - type: Transform -- uid: 7290 - type: StorageCanister - components: - - pos: 19.5,-13.5 - parent: 30 - type: Transform -- uid: 7291 - type: PottedPlantRandom - components: - - pos: -29.5,-12.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 7292 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-20.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7293 - type: GasPipeFourway - components: - - pos: -31.5,-20.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7294 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-20.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7295 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-6.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7296 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -39.5,-7.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7297 - type: WallReinforced - components: - - pos: -40.5,-5.5 - parent: 30 - type: Transform -- uid: 7298 - type: TableGlass - components: - - pos: -38.5,-7.5 - parent: 30 - type: Transform -- uid: 7299 - type: TableGlass - components: - - pos: -39.5,-7.5 - parent: 30 - type: Transform -- uid: 7300 - type: GasPipeFourway - components: - - pos: -38.5,-6.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7301 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-8.5 - parent: 30 - type: Transform -- uid: 7302 - type: SignCloning - components: - - pos: -20.5,-7.5 - parent: 30 - type: Transform -- uid: 7303 - type: SignCloning - components: - - pos: -26.5,-7.5 - parent: 30 - type: Transform -- uid: 7304 - type: GasPipeStraight - components: - - pos: -31.5,-10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7305 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -33.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7306 - type: GasPipeStraight - components: - - pos: -8.5,0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7307 - type: GasPipeStraight - components: - - pos: -8.5,-0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7308 - type: GasPipeStraight - components: - - pos: -8.5,-1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7309 - type: GasPipeStraight - components: - - pos: -8.5,-2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7310 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7311 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -3.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7312 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7313 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7314 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7315 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7316 - type: GasPipeStraight - components: - - pos: -3.5,-2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7317 - type: GasPipeStraight - components: - - pos: -3.5,-1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7318 - type: GasPipeStraight - components: - - pos: -3.5,-0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7319 - type: GasPipeStraight - components: - - pos: -1.5,-0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7320 - type: GasPipeStraight - components: - - pos: -1.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7321 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7322 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -10.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7323 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -2.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7324 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7325 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7326 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7327 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7328 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7329 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7330 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7331 - type: GasPipeStraight - components: - - pos: -10.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7332 - type: GasPipeStraight - components: - - pos: -10.5,-0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7333 - type: GasPipeStraight - components: - - pos: -10.5,0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7334 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7335 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7336 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7337 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7338 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7339 - type: GasVentScrubber - components: - - pos: -11.5,-2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7340 - type: GasVentPump - components: - - pos: -12.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7341 - type: GasPipeStraight - components: - - pos: -12.5,-3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7342 - type: GasPipeStraight - components: - - pos: -12.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7343 - type: GasPipeStraight - components: - - pos: -12.5,-5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7344 - type: GasPipeStraight - components: - - pos: -12.5,-6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7345 - type: GasPipeStraight - components: - - pos: -12.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7346 - type: GasPipeStraight - components: - - pos: -12.5,-8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7347 - type: GasPipeStraight - components: - - pos: -11.5,-4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7348 - type: GasPipeStraight - components: - - pos: -11.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7349 - type: GasPipeStraight - components: - - pos: -11.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7350 - type: GasPipeStraight - components: - - pos: -11.5,-7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7351 - type: GasPipeStraight - components: - - pos: -11.5,-8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7352 - type: GasPipeStraight - components: - - pos: -11.5,-9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7353 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -11.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7354 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -12.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7355 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -13.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7356 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -14.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7357 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7358 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7359 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7360 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7361 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7362 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7363 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7364 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7365 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7366 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7367 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7368 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7369 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7370 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7371 - type: GasVentScrubber - components: - - pos: -14.5,-9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7372 - type: GasVentPump - components: - - pos: -13.5,-8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7373 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7374 - type: GasPipeTJunction - components: - - pos: -7.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7375 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7376 - type: GasPipeBend - components: - - pos: -5.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7377 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -7.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7378 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -5.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7379 - type: GasPipeFourway - components: - - pos: -17.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7380 - type: GasPipeTJunction - components: - - pos: -18.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7381 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -18.5,-10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7382 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7383 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7384 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7385 - type: GasPipeFourway - components: - - pos: -19.5,-8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7386 - type: GasPipeStraight - components: - - pos: -19.5,-9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7387 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7388 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7389 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7390 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7391 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7392 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7393 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7394 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7395 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7396 - type: GasPipeStraight - components: - - pos: -19.5,-7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7397 - type: GasPipeStraight - components: - - pos: -19.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7398 - type: GasPipeStraight - components: - - pos: -19.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7399 - type: GasPipeStraight - components: - - pos: -19.5,-4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7400 - type: GasPipeStraight - components: - - pos: -19.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7401 - type: GasPipeStraight - components: - - pos: -19.5,-2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7402 - type: GasPipeStraight - components: - - pos: -17.5,-6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7403 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7404 - type: GasPipeStraight - components: - - pos: -17.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7405 - type: GasPipeStraight - components: - - pos: -17.5,-3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7406 - type: GasVentPump - components: - - pos: -17.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7407 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7408 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7409 - type: GasPipeStraight - components: - - pos: -34.5,0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7410 - type: GasPipeStraight - components: - - pos: -34.5,-0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7411 - type: GasPipeStraight - components: - - pos: -33.5,2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7412 - type: GasPipeStraight - components: - - pos: -33.5,1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7413 - type: GasPipeStraight - components: - - pos: -33.5,0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7414 - type: GasPipeStraight - components: - - pos: -33.5,-0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7415 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -28.5,-24.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7416 - type: GasPipeStraight - components: - - pos: -31.5,-19.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7417 - type: GasPipeStraight - components: - - pos: -34.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7418 - type: GasPipeStraight - components: - - pos: -33.5,-2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7419 - type: GasPipeStraight - components: - - pos: -34.5,-3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7420 - type: GasPipeStraight - components: - - pos: -33.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7421 - type: GasPipeStraight - components: - - pos: -31.5,-12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7422 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -33.5,-8.5 - parent: 30 - type: Transform -- uid: 7423 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-20.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7424 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7425 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7426 - type: GasPipeTJunction - components: - - pos: -23.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7427 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7428 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7429 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7430 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -27.5,-8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7431 - type: GasPipeTJunction - components: - - pos: -31.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7432 - type: GasPipeStraight - components: - - pos: -33.5,-9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7433 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7434 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7435 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7436 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-20.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7437 - type: GasPipeStraight - components: - - pos: -27.5,-7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7438 - type: GasPipeStraight - components: - - pos: -27.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7439 - type: GasPipeTJunction - components: - - pos: -27.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7440 - type: Bed - components: - - pos: -33.5,-12.5 - parent: 30 - type: Transform -- uid: 7441 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -29.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7442 - type: GasPipeTJunction - components: - - pos: -29.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7443 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7444 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -23.5,-8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7445 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7446 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7447 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7448 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7449 - type: GasPipeTJunction - components: - - pos: -28.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7450 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -29.5,-8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7451 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7452 - type: WindowReinforcedDirectional - components: - - pos: -33.5,-8.5 - parent: 30 - type: Transform -- uid: 7453 - type: Bed - components: - - pos: -33.5,-9.5 - parent: 30 - type: Transform -- uid: 7454 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-10.5 - parent: 30 - type: Transform -- uid: 7455 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-11.5 - parent: 30 - type: Transform -- uid: 7456 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-12.5 - parent: 30 - type: Transform -- uid: 7457 - type: GasVentScrubber - components: - - pos: -23.5,-7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7458 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -23.5,-10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7459 - type: GasPipeStraight - components: - - pos: -28.5,-10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7460 - type: GasPipeStraight - components: - - pos: -28.5,-11.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7461 - type: GasPipeStraight - components: - - pos: -28.5,-12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7462 - type: GasPipeStraight - components: - - pos: -28.5,-13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7463 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -28.5,-14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7464 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -28.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7465 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7466 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-14.5 - parent: 30 - type: Transform -- uid: 7467 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -32.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7468 - type: TableGlass - components: - - pos: -31.5,-7.5 - parent: 30 - type: Transform -- uid: 7469 - type: AirlockGlass - components: - - name: Nature Room - type: MetaData - - pos: -34.5,-13.5 - parent: 30 - type: Transform -- uid: 7470 - type: CableMV - components: - - pos: -34.5,-6.5 - parent: 30 - type: Transform -- uid: 7471 - type: CableApcExtension - components: - - pos: -32.5,-10.5 - parent: 30 - type: Transform -- uid: 7472 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -31.5,-8.5 - parent: 30 - type: Transform -- uid: 7473 - type: Bed - components: - - pos: -33.5,-11.5 - parent: 30 - type: Transform -- uid: 7474 - type: HospitalCurtainsOpen - components: - - pos: -33.5,-9.5 - parent: 30 - type: Transform -- uid: 7475 - type: HospitalCurtainsOpen - components: - - pos: -33.5,-11.5 - parent: 30 - type: Transform -- uid: 7476 - type: WindowReinforcedDirectional - components: - - pos: -34.5,-15.5 - parent: 30 - type: Transform -- uid: 7477 - type: BedsheetMedical - components: - - pos: -33.5,-12.5 - parent: 30 - type: Transform -- uid: 7478 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-15.5 - parent: 30 - type: Transform -- uid: 7479 - type: TableGlass - components: - - pos: -32.5,-15.5 - parent: 30 - type: Transform -- uid: 7480 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-14.5 - parent: 30 - type: Transform -- uid: 7481 - type: CableMV - components: - - pos: -32.5,-6.5 - parent: 30 - type: Transform -- uid: 7482 - type: CableApcExtension - components: - - pos: -32.5,-8.5 - parent: 30 - type: Transform -- uid: 7483 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-12.5 - parent: 30 - type: Transform -- uid: 7484 - type: BedsheetMedical - components: - - pos: -33.5,-10.5 - parent: 30 - type: Transform -- uid: 7485 - type: AirlockMedicalGlassLocked - components: - - name: Med-Surg - type: MetaData - - pos: -32.5,-8.5 - parent: 30 - type: Transform -- uid: 7486 - type: GasPipeStraight - components: - - pos: -33.5,-8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7487 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7488 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -22.5,-22.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7489 - type: ClothingBackpackDuffelMedical - components: - - pos: -37.606094,-7.340923 - parent: 30 - type: Transform -- uid: 7490 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-11.5 - parent: 30 - type: Transform -- uid: 7491 - type: GasVentScrubber - components: - - pos: -28.5,-16.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7492 - type: GasPipeStraight - components: - - pos: -28.5,-17.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7493 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,-18.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7494 - type: GasPipeBend - components: - - pos: -28.5,-20.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7495 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-19.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7496 - type: GasPipeStraight - components: - - pos: -33.5,-20.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7497 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,-21.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7498 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -28.5,-19.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7499 - type: GasPipeBend - components: - - pos: -27.5,-19.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7500 - type: GasPipeStraight - components: - - pos: -30.5,-20.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7501 - type: GasPipeStraight - components: - - pos: -30.5,-21.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7502 - type: GasPipeStraight - components: - - pos: -30.5,-22.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7503 - type: GasPipeStraight - components: - - pos: -33.5,-21.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7504 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -34.5,-23.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7505 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -31.5,-23.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7506 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-22.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7507 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-21.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7508 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-21.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7509 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-22.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7510 - type: GasPipeTJunction - components: - - pos: -30.5,-19.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7511 - type: GasVentScrubber - components: - - pos: -31.5,-18.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7512 - type: GasPipeStraight - components: - - pos: -33.5,-22.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7513 - type: GasVentPump - components: - - pos: -33.5,-18.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7514 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -33.5,-23.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7515 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -30.5,-23.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7516 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -27.5,-20.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7517 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-19.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7518 - type: CableApcExtension - components: - - pos: -27.5,-19.5 - parent: 30 - type: Transform -- uid: 7519 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 30 - type: Transform -- uid: 7520 - type: Window - components: - - pos: 1.5,-5.5 - parent: 30 - type: Transform -- uid: 7521 - type: AirlockGlass - components: - - name: silly mode - type: MetaData - - pos: 0.5,-5.5 - parent: 30 - type: Transform -- uid: 7522 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-4.5 - parent: 30 - type: Transform -- uid: 7523 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 30 - type: Transform -- uid: 7524 - type: WindowDirectional - components: - - pos: 3.5,-4.5 - parent: 30 - type: Transform -- uid: 7525 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-20.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7526 - type: GasPipeStraight - components: - - pos: -27.5,-25.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7527 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -27.5,-26.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7528 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7529 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-12.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7530 - type: GasPipeFourway - components: - - pos: -19.5,-13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7531 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7532 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7533 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7534 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7535 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7536 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-19.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7537 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-11.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7538 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7539 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7540 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7541 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7542 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-16.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7543 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7544 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7545 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7546 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7547 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7548 - type: GasPipeTJunction - components: - - pos: -14.5,-19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7549 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7550 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7551 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7552 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7553 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7554 - type: GasPipeBend - components: - - pos: -8.5,-19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7555 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -14.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7556 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -8.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7557 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7558 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7559 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7560 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7561 - type: GasPipeBend - components: - - pos: -15.5,-20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7562 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7563 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -15.5,-21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7564 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7565 - type: GasPipeTJunction - components: - - pos: -14.5,-21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7566 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7567 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7568 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -14.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7569 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7570 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7571 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7572 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7573 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7574 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7575 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7576 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7577 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7578 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7579 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7580 - type: GasPipeStraight - components: - - pos: -17.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7581 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7582 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7583 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7584 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7585 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7586 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7587 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-9.5 - parent: 30 - type: Transform -- uid: 7588 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -17.5,-22.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7589 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -19.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7590 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7591 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7592 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7593 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7594 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7595 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7596 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7597 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7598 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7599 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7600 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7601 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7602 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7603 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7604 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7605 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7606 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7607 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7608 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7609 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7610 - type: APCBasic - components: - - pos: -15.5,-3.5 - parent: 30 - type: Transform -- uid: 7611 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-20.5 - parent: 30 - type: Transform -- uid: 7612 - type: AirlockMedicalGlassLocked - components: - - pos: -34.5,-3.5 - parent: 30 - type: Transform -- uid: 7613 - type: SubstationBasic - components: - - name: West Medical Substation - type: MetaData - - pos: -37.5,-1.5 - parent: 30 - type: Transform -- uid: 7614 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 30 - type: Transform -- uid: 7615 - type: CableHV - components: - - pos: -44.5,6.5 - parent: 30 - type: Transform -- uid: 7616 - type: CableHV - components: - - pos: -44.5,5.5 - parent: 30 - type: Transform -- uid: 7617 - type: CableHV - components: - - pos: -44.5,4.5 - parent: 30 - type: Transform -- uid: 7618 - type: CableHV - components: - - pos: -44.5,3.5 - parent: 30 - type: Transform -- uid: 7619 - type: CableHV - components: - - pos: -44.5,2.5 - parent: 30 - type: Transform -- uid: 7620 - type: CableHV - components: - - pos: -44.5,1.5 - parent: 30 - type: Transform -- uid: 7621 - type: CableHV - components: - - pos: -44.5,0.5 - parent: 30 - type: Transform -- uid: 7622 - type: CableHV - components: - - pos: -44.5,-0.5 - parent: 30 - type: Transform -- uid: 7623 - type: CableHV - components: - - pos: -44.5,-1.5 - parent: 30 - type: Transform -- uid: 7624 - type: CableHV - components: - - pos: -44.5,-2.5 - parent: 30 - type: Transform -- uid: 7625 - type: CableHV - components: - - pos: -44.5,-3.5 - parent: 30 - type: Transform -- uid: 7626 - type: CableHV - components: - - pos: -44.5,-4.5 - parent: 30 - type: Transform -- uid: 7627 - type: CableHV - components: - - pos: -44.5,-5.5 - parent: 30 - type: Transform -- uid: 7628 - type: CableHV - components: - - pos: -44.5,-6.5 - parent: 30 - type: Transform -- uid: 7629 - type: CableHV - components: - - pos: -44.5,-7.5 - parent: 30 - type: Transform -- uid: 7630 - type: CableHV - components: - - pos: -44.5,-8.5 - parent: 30 - type: Transform -- uid: 7631 - type: CableHV - components: - - pos: -43.5,-8.5 - parent: 30 - type: Transform -- uid: 7632 - type: CableHV - components: - - pos: -42.5,-8.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7633 - type: CableHV - components: - - pos: -41.5,-8.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7634 - type: CableHV - components: - - pos: -41.5,-7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7635 - type: CableHV - components: - - pos: -41.5,-6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7636 - type: CableHV - components: - - pos: -41.5,-5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7637 - type: CableHV - components: - - pos: -41.5,-4.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7638 - type: CableHV - components: - - pos: -41.5,-3.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7639 - type: CableHV - components: - - pos: -41.5,-2.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7640 - type: CableHV - components: - - pos: -40.5,-2.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7641 - type: CableHV - components: - - pos: -39.5,-2.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7642 - type: CableHV - components: - - pos: -38.5,-2.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7643 - type: CableHV - components: - - pos: -37.5,-2.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7644 - type: CableHV - components: - - pos: -37.5,-1.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7645 - type: CableHV - components: - - pos: -36.5,6.5 - parent: 30 - type: Transform -- uid: 7646 - type: CableHV - components: - - pos: -36.5,5.5 - parent: 30 - type: Transform -- uid: 7647 - type: CableHV - components: - - pos: -36.5,4.5 - parent: 30 - type: Transform -- uid: 7648 - type: CableHV - components: - - pos: -36.5,3.5 - parent: 30 - type: Transform -- uid: 7649 - type: CableHV - components: - - pos: -36.5,2.5 - parent: 30 - type: Transform -- uid: 7650 - type: CableHV - components: - - pos: -36.5,1.5 - parent: 30 - type: Transform -- uid: 7651 - type: CableHV - components: - - pos: -35.5,1.5 - parent: 30 - type: Transform -- uid: 7652 - type: CableHV - components: - - pos: -34.5,1.5 - parent: 30 - type: Transform -- uid: 7653 - type: CableHV - components: - - pos: -34.5,0.5 - parent: 30 - type: Transform -- uid: 7654 - type: CableHV - components: - - pos: -34.5,-0.5 - parent: 30 - type: Transform -- uid: 7655 - type: CableHV - components: - - pos: -34.5,-1.5 - parent: 30 - type: Transform -- uid: 7656 - type: CableHV - components: - - pos: -34.5,-2.5 - parent: 30 - type: Transform -- uid: 7657 - type: CableHV - components: - - pos: -35.5,-2.5 - parent: 30 - type: Transform -- uid: 7658 - type: CableHV - components: - - pos: -36.5,-2.5 - parent: 30 - type: Transform -- uid: 7659 - type: CableHV - components: - - pos: -41.5,-9.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7660 - type: CableHV - components: - - pos: -41.5,-10.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7661 - type: CableHV - components: - - pos: -41.5,-11.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7662 - type: CableHV - components: - - pos: -41.5,-12.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7663 - type: CableHV - components: - - pos: -41.5,-13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7664 - type: CableHV - components: - - pos: -41.5,-15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7665 - type: CableHV - components: - - pos: -41.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7666 - type: CableHV - components: - - pos: -41.5,-16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7667 - type: CableHV - components: - - pos: -40.5,-16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7668 - type: CableHV - components: - - pos: -39.5,-16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7669 - type: CableHV - components: - - pos: -38.5,-16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7670 - type: CableHV - components: - - pos: -37.5,-16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7671 - type: CableHV - components: - - pos: -36.5,-16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7672 - type: CableHV - components: - - pos: -36.5,-17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7673 - type: CableHV - components: - - pos: -36.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7674 - type: CableHV - components: - - pos: -36.5,-19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7675 - type: CableHV - components: - - pos: -36.5,-21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7676 - type: CableHV - components: - - pos: -36.5,-20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7677 - type: CableHV - components: - - pos: -36.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7678 - type: CableHV - components: - - pos: -36.5,-23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7679 - type: CableHV - components: - - pos: -36.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7680 - type: CableHV - components: - - pos: -36.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7681 - type: CableHV - components: - - pos: -36.5,-26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7682 - type: CableHV - components: - - pos: -36.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7683 - type: CableHV - components: - - pos: -36.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7684 - type: CableHV - components: - - pos: -35.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7685 - type: CableHV - components: - - pos: -34.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7686 - type: CableHV - components: - - pos: -33.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7687 - type: CableHV - components: - - pos: -32.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7688 - type: CableHV - components: - - pos: -31.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7689 - type: CableHV - components: - - pos: -30.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7690 - type: CableHV - components: - - pos: -29.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7691 - type: CableHV - components: - - pos: -28.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7692 - type: CableHV - components: - - pos: -27.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7693 - type: CableHV - components: - - pos: -26.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7694 - type: CableHV - components: - - pos: -25.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7695 - type: CableHV - components: - - pos: -22.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7696 - type: CableHV - components: - - pos: -23.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7697 - type: CableHV - components: - - pos: -24.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7698 - type: CableHV - components: - - pos: -24.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7699 - type: CableHV - components: - - pos: -24.5,-26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7700 - type: CableHV - components: - - pos: -24.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7701 - type: CableHV - components: - - pos: -21.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7702 - type: CableHV - components: - - pos: -20.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7703 - type: CableHV - components: - - pos: -19.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7704 - type: CableHV - components: - - pos: -18.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7705 - type: CableHV - components: - - pos: -17.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7706 - type: CableHV - components: - - pos: -16.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7707 - type: CableHV - components: - - pos: -15.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7708 - type: CableHV - components: - - pos: -14.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7709 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -1.5,-6.5 - parent: 30 - type: Transform -- uid: 7710 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -1.5,-7.5 - parent: 30 - type: Transform -- uid: 7711 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -1.5,-8.5 - parent: 30 - type: Transform -- uid: 7712 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -1.5,-9.5 - parent: 30 - type: Transform -- uid: 7713 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -1.5,-11.5 - parent: 30 - type: Transform -- uid: 7714 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -1.5,-10.5 - parent: 30 - type: Transform -- uid: 7715 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -3.5,-17.5 - parent: 30 - type: Transform -- uid: 7716 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -1.5,-17.5 - parent: 30 - type: Transform -- uid: 7717 - type: Grille - components: - - pos: 47.5,13.5 - parent: 30 - type: Transform -- uid: 7718 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -4.5,-16.5 - parent: 30 - type: Transform -- uid: 7719 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 2.5,-17.5 - parent: 30 - type: Transform -- uid: 7720 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -1.5,-12.5 - parent: 30 - type: Transform -- uid: 7721 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -1.5,-13.5 - parent: 30 - type: Transform -- uid: 7722 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 0.5,-17.5 - parent: 30 - type: Transform -- uid: 7723 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -0.5,-17.5 - parent: 30 - type: Transform -- uid: 7724 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -4.5,-17.5 - parent: 30 - type: Transform -- uid: 7725 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -4.5,-18.5 - parent: 30 - type: Transform -- uid: 7726 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -4.5,-19.5 - parent: 30 - type: Transform -- uid: 7727 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -4.5,-20.5 - parent: 30 - type: Transform -- uid: 7728 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -4.5,-21.5 - parent: 30 - type: Transform -- uid: 7729 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -4.5,-22.5 - parent: 30 - type: Transform -- uid: 7730 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -4.5,-23.5 - parent: 30 - type: Transform -- uid: 7731 - type: FirelockGlass - components: - - pos: -1.5,-21.5 - parent: 30 - type: Transform -- uid: 7732 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -4.5,-25.5 - parent: 30 - type: Transform -- uid: 7733 - type: WallReinforced - components: - - pos: -4.5,-26.5 - parent: 30 - type: Transform -- uid: 7734 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 1.5,-17.5 - parent: 30 - type: Transform -- uid: 7735 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 3.5,-17.5 - parent: 30 - type: Transform -- uid: 7736 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 4.5,-17.5 - parent: 30 - type: Transform -- uid: 7737 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 5.5,-17.5 - parent: 30 - type: Transform -- uid: 7738 - type: WallSolid - components: - - pos: 6.5,-14.5 - parent: 30 - type: Transform -- uid: 7739 - type: WallSolid - components: - - pos: 6.5,-13.5 - parent: 30 - type: Transform -- uid: 7740 - type: HospitalCurtainsOpen - components: - - pos: 9.5,-17.5 - parent: 30 - type: Transform -- uid: 7741 - type: HospitalCurtainsOpen - components: - - pos: 7.5,-17.5 - parent: 30 - type: Transform -- uid: 7742 - type: Grille - components: - - pos: 47.5,12.5 - parent: 30 - type: Transform -- uid: 7743 - type: FlashlightSeclite - components: - - pos: -16.497143,-2.5868702 - parent: 30 - type: Transform -- uid: 7744 - type: WallSolid - components: - - pos: 0.5,-15.5 - parent: 30 - type: Transform -- uid: 7745 - type: PaintingTheGreatWave - components: - - pos: -27.5,38.5 - parent: 30 - type: Transform -- uid: 7746 - type: PaintingTheScream - components: - - pos: 0.5,34.5 - parent: 30 - type: Transform -- uid: 7747 - type: BriefcaseBrown - components: - - pos: 3.4849148,-6.354914 - parent: 30 - type: Transform -- uid: 7748 - type: WallSolid - components: - - pos: 10.5,-17.5 - parent: 30 - type: Transform -- uid: 7749 - type: CableApcExtension - components: - - pos: 9.5,-16.5 - parent: 30 - type: Transform -- uid: 7750 - type: ReinforcedPlasmaWindow - components: - - pos: -0.5,-43.5 - parent: 30 - type: Transform -- uid: 7751 - type: ClothingMaskGas - components: - - pos: -4.5693045,-38.59067 - parent: 30 - type: Transform -- uid: 7752 - type: CableApcExtension - components: - - pos: -29.5,-20.5 - parent: 30 - type: Transform -- uid: 7753 - type: CableApcExtension - components: - - pos: -28.5,-20.5 - parent: 30 - type: Transform -- uid: 7754 - type: WallSolid - components: - - pos: -32.5,0.5 - parent: 30 - type: Transform -- uid: 7755 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,-23.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7756 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,-23.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 7757 - type: Grille - components: - - pos: -32.5,-23.5 - parent: 30 - type: Transform -- uid: 7758 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 6.5,-5.5 - parent: 30 - type: Transform -- uid: 7759 - type: WallSolid - components: - - pos: 1.5,-12.5 - parent: 30 - type: Transform -- uid: 7760 - type: WallSolid - components: - - pos: 5.5,-12.5 - parent: 30 - type: Transform -- uid: 7761 - type: Grille - components: - - pos: -30.5,-21.5 - parent: 30 - type: Transform -- uid: 7762 - type: Grille - components: - - pos: -29.5,-21.5 - parent: 30 - type: Transform -- uid: 7763 - type: Grille - components: - - pos: -29.5,-23.5 - parent: 30 - type: Transform -- uid: 7764 - type: ReinforcedWindow - components: - - pos: -29.5,-23.5 - parent: 30 - type: Transform -- uid: 7765 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -0.5,-10.5 - parent: 30 - type: Transform -- uid: 7766 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 0.5,-11.5 - parent: 30 - type: Transform -- uid: 7767 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 0.5,-12.5 - parent: 30 - type: Transform -- uid: 7768 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 30 - type: Transform -- uid: 7769 - type: NitrousOxideCanister - components: - - pos: 18.5,-16.5 - parent: 30 - type: Transform -- uid: 7770 - type: NitrogenCanister - components: - - pos: -11.5,-37.5 - parent: 30 - type: Transform -- uid: 7771 - type: ClothingMaskGas - components: - - pos: -4.3505545,-38.46567 - parent: 30 - type: Transform -- uid: 7772 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 0.5,-10.5 - parent: 30 - type: Transform -- uid: 7773 - type: SubstationBasic - components: - - name: East Medical Substation - type: MetaData - - pos: -0.5,-11.5 - parent: 30 - type: Transform -- uid: 7774 - type: AirlockEngineeringLocked - components: - - pos: -0.5,-13.5 - parent: 30 - type: Transform -- uid: 7775 - type: CableHV - components: - - pos: -13.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7776 - type: CableHV - components: - - pos: -12.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7777 - type: CableHV - components: - - pos: -11.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7778 - type: CableHV - components: - - pos: -10.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7779 - type: CableHV - components: - - pos: -9.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7780 - type: CableHV - components: - - pos: -8.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7781 - type: CableHV - components: - - pos: -7.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7782 - type: CableHV - components: - - pos: -6.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7783 - type: CableHV - components: - - pos: -5.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7784 - type: CableHV - components: - - pos: -5.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7785 - type: CableHV - components: - - pos: -5.5,-23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7786 - type: CableHV - components: - - pos: -5.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7787 - type: CableHV - components: - - pos: -5.5,-21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7788 - type: CableHV - components: - - pos: -5.5,-20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7789 - type: CableHV - components: - - pos: -5.5,-19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7790 - type: CableHV - components: - - pos: -5.5,-19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7791 - type: CableHV - components: - - pos: -5.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7792 - type: CableHV - components: - - pos: -5.5,-17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7793 - type: CableHV - components: - - pos: -5.5,-16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7794 - type: CableHV - components: - - pos: -5.5,-15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7795 - type: CableHV - components: - - pos: -5.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7796 - type: CableHV - components: - - pos: -4.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7797 - type: CableHV - components: - - pos: -3.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7798 - type: CableHV - components: - - pos: -2.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7799 - type: CableHV - components: - - pos: -1.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7800 - type: CableHV - components: - - pos: -0.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7801 - type: CableHV - components: - - pos: -0.5,-13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7802 - type: CableHV - components: - - pos: -0.5,-12.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7803 - type: CableHV - components: - - pos: -0.5,-11.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7804 - type: CableMV - components: - - pos: -0.5,-11.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7805 - type: CableMV - components: - - pos: -0.5,-12.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7806 - type: CableMV - components: - - pos: -0.5,-13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7807 - type: CableMV - components: - - pos: -0.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7808 - type: CableMV - components: - - pos: -1.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7809 - type: CableMV - components: - - pos: -2.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7810 - type: CableMV - components: - - pos: -3.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7811 - type: CableMV - components: - - pos: -4.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7812 - type: CableMV - components: - - pos: -5.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7813 - type: CableMV - components: - - pos: -6.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7814 - type: CableMV - components: - - pos: -7.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7815 - type: CableMV - components: - - pos: -8.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7816 - type: CableMV - components: - - pos: -9.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7817 - type: CableMV - components: - - pos: -10.5,-14.5 - parent: 30 - type: Transform -- uid: 7818 - type: CableMV - components: - - pos: -11.5,-14.5 - parent: 30 - type: Transform -- uid: 7819 - type: CableMV - components: - - pos: -12.5,-14.5 - parent: 30 - type: Transform -- uid: 7820 - type: CableMV - components: - - pos: -13.5,-14.5 - parent: 30 - type: Transform -- uid: 7821 - type: CableMV - components: - - pos: -14.5,-14.5 - parent: 30 - type: Transform -- uid: 7822 - type: CableMV - components: - - pos: -15.5,-14.5 - parent: 30 - type: Transform -- uid: 7823 - type: CableMV - components: - - pos: -16.5,-14.5 - parent: 30 - type: Transform -- uid: 7824 - type: CableMV - components: - - pos: -17.5,-14.5 - parent: 30 - type: Transform -- uid: 7825 - type: CableMV - components: - - pos: -18.5,-14.5 - parent: 30 - type: Transform -- uid: 7826 - type: CableMV - components: - - pos: -18.5,-15.5 - parent: 30 - type: Transform -- uid: 7827 - type: CableMV - components: - - pos: -18.5,-16.5 - parent: 30 - type: Transform -- uid: 7828 - type: CableMV - components: - - pos: -18.5,-17.5 - parent: 30 - type: Transform -- uid: 7829 - type: CableMV - components: - - pos: -18.5,-18.5 - parent: 30 - type: Transform -- uid: 7830 - type: CableMV - components: - - pos: -18.5,-19.5 - parent: 30 - type: Transform -- uid: 7831 - type: CableMV - components: - - pos: -18.5,-20.5 - parent: 30 - type: Transform -- uid: 7832 - type: CableMV - components: - - pos: -19.5,-20.5 - parent: 30 - type: Transform -- uid: 7833 - type: CableMV - components: - - pos: -20.5,-20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7834 - type: CableMV - components: - - pos: -18.5,-13.5 - parent: 30 - type: Transform -- uid: 7835 - type: CableMV - components: - - pos: -18.5,-12.5 - parent: 30 - type: Transform -- uid: 7836 - type: CableMV - components: - - pos: -18.5,-11.5 - parent: 30 - type: Transform -- uid: 7837 - type: CableMV - components: - - pos: -18.5,-10.5 - parent: 30 - type: Transform -- uid: 7838 - type: CableMV - components: - - pos: -18.5,-9.5 - parent: 30 - type: Transform -- uid: 7839 - type: CableMV - components: - - pos: -18.5,-8.5 - parent: 30 - type: Transform -- uid: 7840 - type: CableMV - components: - - pos: -18.5,-7.5 - parent: 30 - type: Transform -- uid: 7841 - type: CableMV - components: - - pos: -18.5,-6.5 - parent: 30 - type: Transform -- uid: 7842 - type: CableMV - components: - - pos: -18.5,-5.5 - parent: 30 - type: Transform -- uid: 7843 - type: CableMV - components: - - pos: -17.5,-5.5 - parent: 30 - type: Transform -- uid: 7844 - type: CableMV - components: - - pos: -16.5,-5.5 - parent: 30 - type: Transform -- uid: 7845 - type: CableMV - components: - - pos: -15.5,-5.5 - parent: 30 - type: Transform -- uid: 7846 - type: CableMV - components: - - pos: -15.5,-4.5 - parent: 30 - type: Transform -- uid: 7847 - type: CableMV - components: - - pos: -15.5,-3.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7848 - type: CableMV - components: - - pos: -2.5,-13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7849 - type: CableMV - components: - - pos: -2.5,-12.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7850 - type: CableMV - components: - - pos: -2.5,-11.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7851 - type: CableMV - components: - - pos: -2.5,-10.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7852 - type: CableMV - components: - - pos: -2.5,-9.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7853 - type: CableMV - components: - - pos: -2.5,-8.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7854 - type: CableMV - components: - - pos: -2.5,-7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7855 - type: CableMV - components: - - pos: -2.5,-6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7856 - type: CableMV - components: - - pos: -2.5,-5.5 - parent: 30 - type: Transform -- uid: 7857 - type: CableMV - components: - - pos: -2.5,-4.5 - parent: 30 - type: Transform -- uid: 7858 - type: CableMV - components: - - pos: -2.5,-3.5 - parent: 30 - type: Transform -- uid: 7859 - type: CableMV - components: - - pos: -2.5,-2.5 - parent: 30 - type: Transform -- uid: 7860 - type: CableMV - components: - - pos: -2.5,-1.5 - parent: 30 - type: Transform -- uid: 7861 - type: CableMV - components: - - pos: -2.5,-0.5 - parent: 30 - type: Transform -- uid: 7862 - type: CableMV - components: - - pos: -1.5,-0.5 - parent: 30 - type: Transform -- uid: 7863 - type: CableMV - components: - - pos: -0.5,-0.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7864 - type: CableMV - components: - - pos: -37.5,-1.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7865 - type: CableMV - components: - - pos: -37.5,-2.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7866 - type: CableMV - components: - - pos: -36.5,-2.5 - parent: 30 - type: Transform -- uid: 7867 - type: CableMV - components: - - pos: -35.5,-2.5 - parent: 30 - type: Transform -- uid: 7868 - type: CableMV - components: - - pos: -35.5,-3.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7869 - type: WindowReinforcedDirectional - components: - - pos: -31.5,-8.5 - parent: 30 - type: Transform -- uid: 7870 - type: WallSolid - components: - - pos: -34.5,-8.5 - parent: 30 - type: Transform -- uid: 7871 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7872 - type: GasPipeStraight - components: - - pos: -33.5,-7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7873 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7874 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7875 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7876 - type: CableMV - components: - - pos: -31.5,-6.5 - parent: 30 - type: Transform -- uid: 7877 - type: CableMV - components: - - pos: -30.5,-6.5 - parent: 30 - type: Transform -- uid: 7878 - type: CableMV - components: - - pos: -28.5,-6.5 - parent: 30 - type: Transform -- uid: 7879 - type: CableMV - components: - - pos: -28.5,-6.5 - parent: 30 - type: Transform -- uid: 7880 - type: CableMV - components: - - pos: -28.5,-7.5 - parent: 30 - type: Transform -- uid: 7881 - type: CableMV - components: - - pos: -28.5,-8.5 - parent: 30 - type: Transform -- uid: 7882 - type: CableMV - components: - - pos: -28.5,-9.5 - parent: 30 - type: Transform -- uid: 7883 - type: CableMV - components: - - pos: -28.5,-10.5 - parent: 30 - type: Transform -- uid: 7884 - type: CableMV - components: - - pos: -28.5,-11.5 - parent: 30 - type: Transform -- uid: 7885 - type: CableMV - components: - - pos: -28.5,-12.5 - parent: 30 - type: Transform -- uid: 7886 - type: CableMV - components: - - pos: -28.5,-13.5 - parent: 30 - type: Transform -- uid: 7887 - type: CableMV - components: - - pos: -28.5,-14.5 - parent: 30 - type: Transform -- uid: 7888 - type: CableMV - components: - - pos: -28.5,-15.5 - parent: 30 - type: Transform -- uid: 7889 - type: CableMV - components: - - pos: -28.5,-16.5 - parent: 30 - type: Transform -- uid: 7890 - type: CableMV - components: - - pos: -27.5,-16.5 - parent: 30 - type: Transform -- uid: 7891 - type: CableMV - components: - - pos: -27.5,-17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7892 - type: CableApcExtension - components: - - pos: -35.5,-3.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7893 - type: CableApcExtension - components: - - pos: -35.5,-2.5 - parent: 30 - type: Transform -- uid: 7894 - type: CableApcExtension - components: - - pos: -34.5,-2.5 - parent: 30 - type: Transform -- uid: 7895 - type: CableApcExtension - components: - - pos: -33.5,-2.5 - parent: 30 - type: Transform -- uid: 7896 - type: CableApcExtension - components: - - pos: -36.5,-2.5 - parent: 30 - type: Transform -- uid: 7897 - type: CableApcExtension - components: - - pos: -37.5,-2.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7898 - type: CableApcExtension - components: - - pos: -38.5,-2.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7899 - type: CableApcExtension - components: - - pos: -39.5,-2.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7900 - type: CableApcExtension - components: - - pos: -40.5,-2.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7901 - type: CableApcExtension - components: - - pos: -41.5,-2.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7902 - type: CableApcExtension - components: - - pos: -41.5,-3.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7903 - type: CableApcExtension - components: - - pos: -41.5,-4.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7904 - type: CableApcExtension - components: - - pos: -41.5,-4.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7905 - type: CableApcExtension - components: - - pos: -41.5,-5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7906 - type: CableApcExtension - components: - - pos: -41.5,-6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7907 - type: CableApcExtension - components: - - pos: -41.5,-7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7908 - type: CableApcExtension - components: - - pos: -41.5,-8.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7909 - type: CableApcExtension - components: - - pos: -42.5,-8.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7910 - type: CableApcExtension - components: - - pos: -33.5,-3.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7911 - type: Bed - components: - - pos: -33.5,-10.5 - parent: 30 - type: Transform -- uid: 7912 - type: WindowReinforcedDirectional - components: - - pos: -34.5,-12.5 - parent: 30 - type: Transform -- uid: 7913 - type: HospitalCurtainsOpen - components: - - pos: -33.5,-10.5 - parent: 30 - type: Transform -- uid: 7914 - type: HospitalCurtainsOpen - components: - - pos: -33.5,-12.5 - parent: 30 - type: Transform -- uid: 7915 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -34.5,-14.5 - parent: 30 - type: Transform -- uid: 7916 - type: BedsheetMedical - components: - - pos: -33.5,-11.5 - parent: 30 - type: Transform -- uid: 7917 - type: BedsheetMedical - components: - - pos: -33.5,-9.5 - parent: 30 - type: Transform -- uid: 7918 - type: Grille - components: - - pos: -37.5,-8.5 - parent: 30 - type: Transform -- uid: 7919 - type: Grille - components: - - pos: -38.5,-8.5 - parent: 30 - type: Transform -- uid: 7920 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-9.5 - parent: 30 - type: Transform -- uid: 7921 - type: DisposalUnit - components: - - pos: -31.5,-9.5 - parent: 30 - type: Transform -- uid: 7922 - type: GasPipeStraight - components: - - pos: -33.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7923 - type: GasPipeTJunction - components: - - pos: -33.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7924 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-14.5 - parent: 30 - type: Transform -- uid: 7925 - type: TableGlass - components: - - pos: -31.5,-15.5 - parent: 30 - type: Transform -- uid: 7926 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-6.5 - parent: 30 - type: Transform -- uid: 7927 - type: CableMV - components: - - pos: -33.5,-6.5 - parent: 30 - type: Transform -- uid: 7928 - type: CableApcExtension - components: - - pos: -32.5,-9.5 - parent: 30 - type: Transform -- uid: 7929 - type: CableApcExtension - components: - - pos: -32.5,-7.5 - parent: 30 - type: Transform -- uid: 7930 - type: CableApcExtension - components: - - pos: -33.5,-6.5 - parent: 30 - type: Transform -- uid: 7931 - type: CableApcExtension - components: - - pos: -34.5,-6.5 - parent: 30 - type: Transform -- uid: 7932 - type: CableApcExtension - components: - - pos: -35.5,-6.5 - parent: 30 - type: Transform -- uid: 7933 - type: CableApcExtension - components: - - pos: -35.5,-5.5 - parent: 30 - type: Transform -- uid: 7934 - type: CableApcExtension - components: - - pos: -32.5,-6.5 - parent: 30 - type: Transform -- uid: 7935 - type: CableApcExtension - components: - - pos: -35.5,-4.5 - parent: 30 - type: Transform -- uid: 7936 - type: CableMV - components: - - pos: -35.5,-4.5 - parent: 30 - type: Transform -- uid: 7937 - type: CableMV - components: - - pos: -35.5,-5.5 - parent: 30 - type: Transform -- uid: 7938 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-8.5 - parent: 30 - type: Transform -- uid: 7939 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-10.5 - parent: 30 - type: Transform -- uid: 7940 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-9.5 - parent: 30 - type: Transform -- uid: 7941 - type: TableGlass - components: - - pos: -33.5,-15.5 - parent: 30 - type: Transform -- uid: 7942 - type: GasPipeStraight - components: - - pos: -33.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7943 - type: Grille - components: - - pos: -30.5,-11.5 - parent: 30 - type: Transform -- uid: 7944 - type: TableGlass - components: - - pos: -33.5,-14.5 - parent: 30 - type: Transform -- uid: 7945 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-14.5 - parent: 30 - type: Transform -- uid: 7946 - type: CableApcExtension - components: - - pos: -31.5,-6.5 - parent: 30 - type: Transform -- uid: 7947 - type: CableApcExtension - components: - - pos: -30.5,-6.5 - parent: 30 - type: Transform -- uid: 7948 - type: CableApcExtension - components: - - pos: -29.5,-6.5 - parent: 30 - type: Transform -- uid: 7949 - type: CableApcExtension - components: - - pos: -28.5,-6.5 - parent: 30 - type: Transform -- uid: 7950 - type: CableApcExtension - components: - - pos: -28.5,-4.5 - parent: 30 - type: Transform -- uid: 7951 - type: CableApcExtension - components: - - pos: -28.5,-5.5 - parent: 30 - type: Transform -- uid: 7952 - type: CableApcExtension - components: - - pos: -28.5,-3.5 - parent: 30 - type: Transform -- uid: 7953 - type: CableApcExtension - components: - - pos: -28.5,-2.5 - parent: 30 - type: Transform -- uid: 7954 - type: CableApcExtension - components: - - pos: -28.5,-1.5 - parent: 30 - type: Transform -- uid: 7955 - type: CableApcExtension - components: - - pos: -28.5,-0.5 - parent: 30 - type: Transform -- uid: 7956 - type: CableApcExtension - components: - - pos: -29.5,-1.5 - parent: 30 - type: Transform -- uid: 7957 - type: CableApcExtension - components: - - pos: -30.5,-1.5 - parent: 30 - type: Transform -- uid: 7958 - type: CableApcExtension - components: - - pos: -27.5,-1.5 - parent: 30 - type: Transform -- uid: 7959 - type: CableApcExtension - components: - - pos: -28.5,-7.5 - parent: 30 - type: Transform -- uid: 7960 - type: CableApcExtension - components: - - pos: -28.5,-8.5 - parent: 30 - type: Transform -- uid: 7961 - type: CableApcExtension - components: - - pos: -28.5,-9.5 - parent: 30 - type: Transform -- uid: 7962 - type: CableApcExtension - components: - - pos: -28.5,-10.5 - parent: 30 - type: Transform -- uid: 7963 - type: CableApcExtension - components: - - pos: -27.5,-17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7964 - type: CableApcExtension - components: - - pos: -27.5,-18.5 - parent: 30 - type: Transform -- uid: 7965 - type: StorageCanister - components: - - pos: 18.5,-13.5 - parent: 30 - type: Transform -- uid: 7966 - type: CableApcExtension - components: - - pos: -27.5,-20.5 - parent: 30 - type: Transform -- uid: 7967 - type: CableApcExtension - components: - - pos: -27.5,-21.5 - parent: 30 - type: Transform -- uid: 7968 - type: CableApcExtension - components: - - pos: -27.5,-22.5 - parent: 30 - type: Transform -- uid: 7969 - type: CableApcExtension - components: - - pos: -27.5,-23.5 - parent: 30 - type: Transform -- uid: 7970 - type: CableApcExtension - components: - - pos: -27.5,-24.5 - parent: 30 - type: Transform -- uid: 7971 - type: CableApcExtension - components: - - pos: -26.5,-22.5 - parent: 30 - type: Transform -- uid: 7972 - type: CableApcExtension - components: - - pos: -28.5,-22.5 - parent: 30 - type: Transform -- uid: 7973 - type: StorageCanister - components: - - pos: 19.5,-14.5 - parent: 30 - type: Transform -- uid: 7974 - type: CableApcExtension - components: - - pos: -30.5,-22.5 - parent: 30 - type: Transform -- uid: 7975 - type: Catwalk - components: - - pos: 24.5,-18.5 - parent: 30 - type: Transform -- uid: 7976 - type: CableApcExtension - components: - - pos: -30.5,-23.5 - parent: 30 - type: Transform -- uid: 7977 - type: CableApcExtension - components: - - pos: -30.5,-24.5 - parent: 30 - type: Transform -- uid: 7978 - type: CableApcExtension - components: - - pos: -30.5,-21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7979 - type: CableApcExtension - components: - - pos: -30.5,-20.5 - parent: 30 - type: Transform -- uid: 7980 - type: CableApcExtension - components: - - pos: -30.5,-19.5 - parent: 30 - type: Transform -- uid: 7981 - type: CableApcExtension - components: - - pos: -31.5,-19.5 - parent: 30 - type: Transform -- uid: 7982 - type: CableApcExtension - components: - - pos: -32.5,-19.5 - parent: 30 - type: Transform -- uid: 7983 - type: CableApcExtension - components: - - pos: -33.5,-19.5 - parent: 30 - type: Transform -- uid: 7984 - type: CableApcExtension - components: - - pos: -33.5,-20.5 - parent: 30 - type: Transform -- uid: 7985 - type: CableApcExtension - components: - - pos: -33.5,-21.5 - parent: 30 - type: Transform -- uid: 7986 - type: CableApcExtension - components: - - pos: -33.5,-22.5 - parent: 30 - type: Transform -- uid: 7987 - type: CableApcExtension - components: - - pos: -33.5,-23.5 - parent: 30 - type: Transform -- uid: 7988 - type: CableApcExtension - components: - - pos: -33.5,-24.5 - parent: 30 - type: Transform -- uid: 7989 - type: CableApcExtension - components: - - pos: -31.5,-18.5 - parent: 30 - type: Transform -- uid: 7990 - type: CableApcExtension - components: - - pos: -31.5,-17.5 - parent: 30 - type: Transform -- uid: 7991 - type: CableApcExtension - components: - - pos: -32.5,-17.5 - parent: 30 - type: Transform -- uid: 7992 - type: CableApcExtension - components: - - pos: -33.5,-17.5 - parent: 30 - type: Transform -- uid: 7993 - type: CableApcExtension - components: - - pos: -34.5,-17.5 - parent: 30 - type: Transform -- uid: 7994 - type: CableApcExtension - components: - - pos: -27.5,-16.5 - parent: 30 - type: Transform -- uid: 7995 - type: CableApcExtension - components: - - pos: -28.5,-16.5 - parent: 30 - type: Transform -- uid: 7996 - type: CableApcExtension - components: - - pos: -28.5,-15.5 - parent: 30 - type: Transform -- uid: 7997 - type: CableApcExtension - components: - - pos: -28.5,-13.5 - parent: 30 - type: Transform -- uid: 7998 - type: CableApcExtension - components: - - pos: -28.5,-14.5 - parent: 30 - type: Transform -- uid: 7999 - type: CableApcExtension - components: - - pos: -28.5,-12.5 - parent: 30 - type: Transform -- uid: 8000 - type: CableApcExtension - components: - - pos: -20.5,-20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8001 - type: CableApcExtension - components: - - pos: -19.5,-20.5 - parent: 30 - type: Transform -- uid: 8002 - type: CableApcExtension - components: - - pos: -18.5,-20.5 - parent: 30 - type: Transform -- uid: 8003 - type: CableApcExtension - components: - - pos: -17.5,-20.5 - parent: 30 - type: Transform -- uid: 8004 - type: CableApcExtension - components: - - pos: -16.5,-20.5 - parent: 30 - type: Transform -- uid: 8005 - type: CableApcExtension - components: - - pos: -15.5,-20.5 - parent: 30 - type: Transform -- uid: 8006 - type: CableApcExtension - components: - - pos: -14.5,-20.5 - parent: 30 - type: Transform -- uid: 8007 - type: CableApcExtension - components: - - pos: -13.5,-20.5 - parent: 30 - type: Transform -- uid: 8008 - type: CableApcExtension - components: - - pos: -12.5,-20.5 - parent: 30 - type: Transform -- uid: 8009 - type: CableApcExtension - components: - - pos: -11.5,-20.5 - parent: 30 - type: Transform -- uid: 8010 - type: CableApcExtension - components: - - pos: -10.5,-20.5 - parent: 30 - type: Transform -- uid: 8011 - type: CableApcExtension - components: - - pos: -8.5,-20.5 - parent: 30 - type: Transform -- uid: 8012 - type: CableApcExtension - components: - - pos: -8.5,-20.5 - parent: 30 - type: Transform -- uid: 8013 - type: CableApcExtension - components: - - pos: -9.5,-20.5 - parent: 30 - type: Transform -- uid: 8014 - type: CableApcExtension - components: - - pos: -10.5,-21.5 - parent: 30 - type: Transform -- uid: 8015 - type: CableApcExtension - components: - - pos: -10.5,-22.5 - parent: 30 - type: Transform -- uid: 8016 - type: CableApcExtension - components: - - pos: -10.5,-23.5 - parent: 30 - type: Transform -- uid: 8017 - type: CableApcExtension - components: - - pos: -8.5,-21.5 - parent: 30 - type: Transform -- uid: 8018 - type: CableApcExtension - components: - - pos: -8.5,-22.5 - parent: 30 - type: Transform -- uid: 8019 - type: CableApcExtension - components: - - pos: -8.5,-23.5 - parent: 30 - type: Transform -- uid: 8020 - type: CableApcExtension - components: - - pos: -7.5,-20.5 - parent: 30 - type: Transform -- uid: 8021 - type: CableApcExtension - components: - - pos: -6.5,-20.5 - parent: 30 - type: Transform -- uid: 8022 - type: CableApcExtension - components: - - pos: -14.5,-21.5 - parent: 30 - type: Transform -- uid: 8023 - type: CableApcExtension - components: - - pos: -14.5,-22.5 - parent: 30 - type: Transform -- uid: 8024 - type: CableApcExtension - components: - - pos: -14.5,-19.5 - parent: 30 - type: Transform -- uid: 8025 - type: CableApcExtension - components: - - pos: -18.5,-21.5 - parent: 30 - type: Transform -- uid: 8026 - type: CableApcExtension - components: - - pos: -18.5,-22.5 - parent: 30 - type: Transform -- uid: 8027 - type: CableApcExtension - components: - - pos: -18.5,-23.5 - parent: 30 - type: Transform -- uid: 8028 - type: CableApcExtension - components: - - pos: -20.5,-21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8029 - type: CableApcExtension - components: - - pos: -19.5,-21.5 - parent: 30 - type: Transform -- uid: 8030 - type: CableApcExtension - components: - - pos: -21.5,-21.5 - parent: 30 - type: Transform -- uid: 8031 - type: CableApcExtension - components: - - pos: -22.5,-21.5 - parent: 30 - type: Transform -- uid: 8032 - type: CableApcExtension - components: - - pos: -22.5,-22.5 - parent: 30 - type: Transform -- uid: 8033 - type: CableApcExtension - components: - - pos: -18.5,-19.5 - parent: 30 - type: Transform -- uid: 8034 - type: CableApcExtension - components: - - pos: -18.5,-18.5 - parent: 30 - type: Transform -- uid: 8035 - type: CableApcExtension - components: - - pos: -18.5,-17.5 - parent: 30 - type: Transform -- uid: 8036 - type: CableApcExtension - components: - - pos: -18.5,-16.5 - parent: 30 - type: Transform -- uid: 8037 - type: CableApcExtension - components: - - pos: -18.5,-15.5 - parent: 30 - type: Transform -- uid: 8038 - type: CableApcExtension - components: - - pos: -18.5,-14.5 - parent: 30 - type: Transform -- uid: 8039 - type: CableApcExtension - components: - - pos: -18.5,-13.5 - parent: 30 - type: Transform -- uid: 8040 - type: CableApcExtension - components: - - pos: -18.5,-12.5 - parent: 30 - type: Transform -- uid: 8041 - type: CableApcExtension - components: - - pos: -18.5,-11.5 - parent: 30 - type: Transform -- uid: 8042 - type: CableApcExtension - components: - - pos: -18.5,-10.5 - parent: 30 - type: Transform -- uid: 8043 - type: CableApcExtension - components: - - pos: -18.5,-9.5 - parent: 30 - type: Transform -- uid: 8044 - type: CableApcExtension - components: - - pos: -18.5,-8.5 - parent: 30 - type: Transform -- uid: 8045 - type: CableApcExtension - components: - - pos: -19.5,-8.5 - parent: 30 - type: Transform -- uid: 8046 - type: CableApcExtension - components: - - pos: -20.5,-8.5 - parent: 30 - type: Transform -- uid: 8047 - type: CableApcExtension - components: - - pos: -21.5,-8.5 - parent: 30 - type: Transform -- uid: 8048 - type: CableApcExtension - components: - - pos: -22.5,-8.5 - parent: 30 - type: Transform -- uid: 8049 - type: CableApcExtension - components: - - pos: -23.5,-8.5 - parent: 30 - type: Transform -- uid: 8050 - type: CableApcExtension - components: - - pos: -24.5,-8.5 - parent: 30 - type: Transform -- uid: 8051 - type: CableApcExtension - components: - - pos: -25.5,-8.5 - parent: 30 - type: Transform -- uid: 8052 - type: CableApcExtension - components: - - pos: -26.5,-8.5 - parent: 30 - type: Transform -- uid: 8053 - type: CableApcExtension - components: - - pos: -24.5,-9.5 - parent: 30 - type: Transform -- uid: 8054 - type: CableApcExtension - components: - - pos: -24.5,-10.5 - parent: 30 - type: Transform -- uid: 8055 - type: CableApcExtension - components: - - pos: -24.5,-11.5 - parent: 30 - type: Transform -- uid: 8056 - type: CableApcExtension - components: - - pos: -24.5,-12.5 - parent: 30 - type: Transform -- uid: 8057 - type: CableApcExtension - components: - - pos: -24.5,-13.5 - parent: 30 - type: Transform -- uid: 8058 - type: CableApcExtension - components: - - pos: -19.5,-13.5 - parent: 30 - type: Transform -- uid: 8059 - type: CableApcExtension - components: - - pos: -20.5,-13.5 - parent: 30 - type: Transform -- uid: 8060 - type: CableApcExtension - components: - - pos: -21.5,-13.5 - parent: 30 - type: Transform -- uid: 8061 - type: CableApcExtension - components: - - pos: -22.5,-13.5 - parent: 30 - type: Transform -- uid: 8062 - type: CableApcExtension - components: - - pos: -19.5,-17.5 - parent: 30 - type: Transform -- uid: 8063 - type: CableApcExtension - components: - - pos: -20.5,-17.5 - parent: 30 - type: Transform -- uid: 8064 - type: CableApcExtension - components: - - pos: -21.5,-17.5 - parent: 30 - type: Transform -- uid: 8065 - type: CableApcExtension - components: - - pos: -22.5,-17.5 - parent: 30 - type: Transform -- uid: 8066 - type: CableApcExtension - components: - - pos: -23.5,-17.5 - parent: 30 - type: Transform -- uid: 8067 - type: CableApcExtension - components: - - pos: -24.5,-17.5 - parent: 30 - type: Transform -- uid: 8068 - type: CableApcExtension - components: - - pos: -25.5,-17.5 - parent: 30 - type: Transform -- uid: 8069 - type: CableApcExtension - components: - - pos: -23.5,-18.5 - parent: 30 - type: Transform -- uid: 8070 - type: CableApcExtension - components: - - pos: -23.5,-19.5 - parent: 30 - type: Transform -- uid: 8071 - type: CableApcExtension - components: - - pos: -17.5,-14.5 - parent: 30 - type: Transform -- uid: 8072 - type: CableApcExtension - components: - - pos: -16.5,-14.5 - parent: 30 - type: Transform -- uid: 8073 - type: CableApcExtension - components: - - pos: -15.5,-14.5 - parent: 30 - type: Transform -- uid: 8074 - type: CableApcExtension - components: - - pos: -14.5,-14.5 - parent: 30 - type: Transform -- uid: 8075 - type: CableApcExtension - components: - - pos: -13.5,-14.5 - parent: 30 - type: Transform -- uid: 8076 - type: CableApcExtension - components: - - pos: -12.5,-14.5 - parent: 30 - type: Transform -- uid: 8077 - type: CableApcExtension - components: - - pos: -11.5,-14.5 - parent: 30 - type: Transform -- uid: 8078 - type: CableApcExtension - components: - - pos: -10.5,-14.5 - parent: 30 - type: Transform -- uid: 8079 - type: CableApcExtension - components: - - pos: -9.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8080 - type: CableApcExtension - components: - - pos: -7.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8081 - type: CableApcExtension - components: - - pos: -8.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8082 - type: CableApcExtension - components: - - pos: -6.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8083 - type: CableApcExtension - components: - - pos: -5.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8084 - type: CableApcExtension - components: - - pos: -4.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8085 - type: CableApcExtension - components: - - pos: -5.5,-15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8086 - type: CableApcExtension - components: - - pos: -5.5,-16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8087 - type: CableApcExtension - components: - - pos: -11.5,-15.5 - parent: 30 - type: Transform -- uid: 8088 - type: CableApcExtension - components: - - pos: -11.5,-16.5 - parent: 30 - type: Transform -- uid: 8089 - type: CableApcExtension - components: - - pos: -10.5,-16.5 - parent: 30 - type: Transform -- uid: 8090 - type: CableApcExtension - components: - - pos: -9.5,-16.5 - parent: 30 - type: Transform -- uid: 8091 - type: CableApcExtension - components: - - pos: -8.5,-16.5 - parent: 30 - type: Transform -- uid: 8092 - type: CableApcExtension - components: - - pos: -7.5,-16.5 - parent: 30 - type: Transform -- uid: 8093 - type: CableApcExtension - components: - - pos: -8.5,-17.5 - parent: 30 - type: Transform -- uid: 8094 - type: CableApcExtension - components: - - pos: -17.5,-9.5 - parent: 30 - type: Transform -- uid: 8095 - type: CableApcExtension - components: - - pos: -16.5,-9.5 - parent: 30 - type: Transform -- uid: 8096 - type: CableApcExtension - components: - - pos: -14.5,-9.5 - parent: 30 - type: Transform -- uid: 8097 - type: CableApcExtension - components: - - pos: -15.5,-9.5 - parent: 30 - type: Transform -- uid: 8098 - type: CableApcExtension - components: - - pos: -13.5,-9.5 - parent: 30 - type: Transform -- uid: 8099 - type: CableApcExtension - components: - - pos: -12.5,-9.5 - parent: 30 - type: Transform -- uid: 8100 - type: CableApcExtension - components: - - pos: -11.5,-9.5 - parent: 30 - type: Transform -- uid: 8101 - type: CableApcExtension - components: - - pos: -15.5,-3.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8102 - type: CableApcExtension - components: - - pos: -15.5,-4.5 - parent: 30 - type: Transform -- uid: 8103 - type: CableApcExtension - components: - - pos: -15.5,-5.5 - parent: 30 - type: Transform -- uid: 8104 - type: CableApcExtension - components: - - pos: -16.5,-5.5 - parent: 30 - type: Transform -- uid: 8105 - type: CableApcExtension - components: - - pos: -17.5,-5.5 - parent: 30 - type: Transform -- uid: 8106 - type: CableApcExtension - components: - - pos: -18.5,-5.5 - parent: 30 - type: Transform -- uid: 8107 - type: CableApcExtension - components: - - pos: -18.5,-6.5 - parent: 30 - type: Transform -- uid: 8108 - type: CableApcExtension - components: - - pos: -19.5,-5.5 - parent: 30 - type: Transform -- uid: 8109 - type: CableApcExtension - components: - - pos: -20.5,-5.5 - parent: 30 - type: Transform -- uid: 8110 - type: CableApcExtension - components: - - pos: -21.5,-5.5 - parent: 30 - type: Transform -- uid: 8111 - type: CableApcExtension - components: - - pos: -22.5,-5.5 - parent: 30 - type: Transform -- uid: 8112 - type: CableApcExtension - components: - - pos: -23.5,-5.5 - parent: 30 - type: Transform -- uid: 8113 - type: CableApcExtension - components: - - pos: -24.5,-5.5 - parent: 30 - type: Transform -- uid: 8114 - type: CableApcExtension - components: - - pos: -25.5,-5.5 - parent: 30 - type: Transform -- uid: 8115 - type: CableApcExtension - components: - - pos: -22.5,-4.5 - parent: 30 - type: Transform -- uid: 8116 - type: CableApcExtension - components: - - pos: -22.5,-3.5 - parent: 30 - type: Transform -- uid: 8117 - type: CableApcExtension - components: - - pos: -22.5,-2.5 - parent: 30 - type: Transform -- uid: 8118 - type: CableApcExtension - components: - - pos: -22.5,-0.5 - parent: 30 - type: Transform -- uid: 8119 - type: CableApcExtension - components: - - pos: -22.5,-1.5 - parent: 30 - type: Transform -- uid: 8120 - type: CableApcExtension - components: - - pos: -24.5,-4.5 - parent: 30 - type: Transform -- uid: 8121 - type: CableApcExtension - components: - - pos: -24.5,-2.5 - parent: 30 - type: Transform -- uid: 8122 - type: CableApcExtension - components: - - pos: -24.5,-3.5 - parent: 30 - type: Transform -- uid: 8123 - type: CableApcExtension - components: - - pos: -24.5,-1.5 - parent: 30 - type: Transform -- uid: 8124 - type: CableApcExtension - components: - - pos: -24.5,-0.5 - parent: 30 - type: Transform -- uid: 8125 - type: CableApcExtension - components: - - pos: -14.5,-5.5 - parent: 30 - type: Transform -- uid: 8126 - type: CableApcExtension - components: - - pos: -13.5,-5.5 - parent: 30 - type: Transform -- uid: 8127 - type: CableApcExtension - components: - - pos: -12.5,-5.5 - parent: 30 - type: Transform -- uid: 8128 - type: CableApcExtension - components: - - pos: -11.5,-5.5 - parent: 30 - type: Transform -- uid: 8129 - type: CableApcExtension - components: - - pos: -11.5,-4.5 - parent: 30 - type: Transform -- uid: 8130 - type: CableApcExtension - components: - - pos: -11.5,-3.5 - parent: 30 - type: Transform -- uid: 8131 - type: CableApcExtension - components: - - pos: -11.5,-2.5 - parent: 30 - type: Transform -- uid: 8132 - type: CableApcExtension - components: - - pos: -11.5,-1.5 - parent: 30 - type: Transform -- uid: 8133 - type: CableApcExtension - components: - - pos: -11.5,-0.5 - parent: 30 - type: Transform -- uid: 8134 - type: CableApcExtension - components: - - pos: -12.5,-2.5 - parent: 30 - type: Transform -- uid: 8135 - type: CableApcExtension - components: - - pos: -13.5,-2.5 - parent: 30 - type: Transform -- uid: 8136 - type: CableApcExtension - components: - - pos: -14.5,-2.5 - parent: 30 - type: Transform -- uid: 8137 - type: CableApcExtension - components: - - pos: -10.5,-4.5 - parent: 30 - type: Transform -- uid: 8138 - type: CableApcExtension - components: - - pos: -9.5,-4.5 - parent: 30 - type: Transform -- uid: 8139 - type: CableApcExtension - components: - - pos: -8.5,-4.5 - parent: 30 - type: Transform -- uid: 8140 - type: CableApcExtension - components: - - pos: -7.5,-4.5 - parent: 30 - type: Transform -- uid: 8141 - type: CableApcExtension - components: - - pos: -6.5,-4.5 - parent: 30 - type: Transform -- uid: 8142 - type: CableApcExtension - components: - - pos: -5.5,-4.5 - parent: 30 - type: Transform -- uid: 8143 - type: CableApcExtension - components: - - pos: -10.5,-2.5 - parent: 30 - type: Transform -- uid: 8144 - type: CableApcExtension - components: - - pos: -9.5,-2.5 - parent: 30 - type: Transform -- uid: 8145 - type: CableApcExtension - components: - - pos: -8.5,-2.5 - parent: 30 - type: Transform -- uid: 8146 - type: CableApcExtension - components: - - pos: -6.5,-2.5 - parent: 30 - type: Transform -- uid: 8147 - type: CableApcExtension - components: - - pos: -5.5,-2.5 - parent: 30 - type: Transform -- uid: 8148 - type: CableApcExtension - components: - - pos: -7.5,-2.5 - parent: 30 - type: Transform -- uid: 8149 - type: CableApcExtension - components: - - pos: -9.5,-1.5 - parent: 30 - type: Transform -- uid: 8150 - type: CableApcExtension - components: - - pos: -9.5,-0.5 - parent: 30 - type: Transform -- uid: 8151 - type: CableApcExtension - components: - - pos: -8.5,-5.5 - parent: 30 - type: Transform -- uid: 8152 - type: CableApcExtension - components: - - pos: -8.5,-6.5 - parent: 30 - type: Transform -- uid: 8153 - type: CableApcExtension - components: - - pos: -8.5,-7.5 - parent: 30 - type: Transform -- uid: 8154 - type: CableApcExtension - components: - - pos: -8.5,-8.5 - parent: 30 - type: Transform -- uid: 8155 - type: CableApcExtension - components: - - pos: -8.5,-9.5 - parent: 30 - type: Transform -- uid: 8156 - type: CableApcExtension - components: - - pos: -8.5,-10.5 - parent: 30 - type: Transform -- uid: 8157 - type: CableApcExtension - components: - - pos: -8.5,-11.5 - parent: 30 - type: Transform -- uid: 8158 - type: CableApcExtension - components: - - pos: -8.5,-12.5 - parent: 30 - type: Transform -- uid: 8159 - type: CableApcExtension - components: - - pos: -6.5,-6.5 - parent: 30 - type: Transform -- uid: 8160 - type: CableApcExtension - components: - - pos: -6.5,-7.5 - parent: 30 - type: Transform -- uid: 8161 - type: CableApcExtension - components: - - pos: -6.5,-8.5 - parent: 30 - type: Transform -- uid: 8162 - type: CableApcExtension - components: - - pos: -6.5,-9.5 - parent: 30 - type: Transform -- uid: 8163 - type: CableApcExtension - components: - - pos: -6.5,-10.5 - parent: 30 - type: Transform -- uid: 8164 - type: CableApcExtension - components: - - pos: -6.5,-11.5 - parent: 30 - type: Transform -- uid: 8165 - type: CableApcExtension - components: - - pos: -6.5,-5.5 - parent: 30 - type: Transform -- uid: 8166 - type: CableApcExtension - components: - - pos: -9.5,-9.5 - parent: 30 - type: Transform -- uid: 8167 - type: CableApcExtension - components: - - pos: -5.5,-9.5 - parent: 30 - type: Transform -- uid: 8168 - type: CableApcExtension - components: - - pos: -4.5,-9.5 - parent: 30 - type: Transform -- uid: 8169 - type: CableApcExtension - components: - - pos: -5.5,-11.5 - parent: 30 - type: Transform -- uid: 8170 - type: CableApcExtension - components: - - pos: -4.5,-11.5 - parent: 30 - type: Transform -- uid: 8171 - type: CableApcExtension - components: - - pos: -4.5,-12.5 - parent: 30 - type: Transform -- uid: 8172 - type: CableApcExtension - components: - - pos: -5.5,-6.5 - parent: 30 - type: Transform -- uid: 8173 - type: CableApcExtension - components: - - pos: -9.5,-6.5 - parent: 30 - type: Transform -- uid: 8174 - type: CableApcExtension - components: - - pos: -0.5,-0.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8175 - type: CableApcExtension - components: - - pos: -1.5,-0.5 - parent: 30 - type: Transform -- uid: 8176 - type: CableApcExtension - components: - - pos: -2.5,-0.5 - parent: 30 - type: Transform -- uid: 8177 - type: CableApcExtension - components: - - pos: -2.5,-1.5 - parent: 30 - type: Transform -- uid: 8178 - type: CableApcExtension - components: - - pos: -2.5,-2.5 - parent: 30 - type: Transform -- uid: 8179 - type: CableApcExtension - components: - - pos: -2.5,-3.5 - parent: 30 - type: Transform -- uid: 8180 - type: CableApcExtension - components: - - pos: -2.5,-3.5 - parent: 30 - type: Transform -- uid: 8181 - type: CableApcExtension - components: - - pos: -2.5,-4.5 - parent: 30 - type: Transform -- uid: 8182 - type: CableApcExtension - components: - - pos: -2.5,-5.5 - parent: 30 - type: Transform -- uid: 8183 - type: CableApcExtension - components: - - pos: -2.5,-6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8184 - type: CableApcExtension - components: - - pos: -2.5,-7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8185 - type: CableApcExtension - components: - - pos: -2.5,-8.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8186 - type: CableApcExtension - components: - - pos: -2.5,-9.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8187 - type: CableApcExtension - components: - - pos: -2.5,-10.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8188 - type: CableApcExtension - components: - - pos: -2.5,-11.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8189 - type: CableApcExtension - components: - - pos: -2.5,-12.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8190 - type: CableApcExtension - components: - - pos: -2.5,0.5 - parent: 30 - type: Transform -- uid: 8191 - type: CableApcExtension - components: - - pos: -2.5,1.5 - parent: 30 - type: Transform -- uid: 8192 - type: CableApcExtension - components: - - pos: -2.5,2.5 - parent: 30 - type: Transform -- uid: 8193 - type: ReinforcedWindow - components: - - pos: 38.5,16.5 - parent: 30 - type: Transform -- uid: 8194 - type: CableApcExtension - components: - - pos: -3.5,1.5 - parent: 30 - type: Transform -- uid: 8195 - type: CableApcExtension - components: - - pos: -4.5,1.5 - parent: 30 - type: Transform -- uid: 8196 - type: CableApcExtension - components: - - pos: -5.5,1.5 - parent: 30 - type: Transform -- uid: 8197 - type: CableApcExtension - components: - - pos: -5.5,2.5 - parent: 30 - type: Transform -- uid: 8198 - type: CableApcExtension - components: - - pos: -6.5,2.5 - parent: 30 - type: Transform -- uid: 8199 - type: CableApcExtension - components: - - pos: -7.5,2.5 - parent: 30 - type: Transform -- uid: 8200 - type: CableApcExtension - components: - - pos: -8.5,2.5 - parent: 30 - type: Transform -- uid: 8201 - type: CableApcExtension - components: - - pos: -9.5,2.5 - parent: 30 - type: Transform -- uid: 8202 - type: CableApcExtension - components: - - pos: -10.5,2.5 - parent: 30 - type: Transform -- uid: 8203 - type: CableApcExtension - components: - - pos: -1.5,1.5 - parent: 30 - type: Transform -- uid: 8204 - type: CableApcExtension - components: - - pos: -0.5,1.5 - parent: 30 - type: Transform -- uid: 8205 - type: CableApcExtension - components: - - pos: -0.5,2.5 - parent: 30 - type: Transform -- uid: 8206 - type: CableApcExtension - components: - - pos: 0.5,2.5 - parent: 30 - type: Transform -- uid: 8207 - type: CableApcExtension - components: - - pos: 1.5,2.5 - parent: 30 - type: Transform -- uid: 8208 - type: CableApcExtension - components: - - pos: 2.5,2.5 - parent: 30 - type: Transform -- uid: 8209 - type: CableApcExtension - components: - - pos: 3.5,2.5 - parent: 30 - type: Transform -- uid: 8210 - type: CableApcExtension - components: - - pos: 4.5,2.5 - parent: 30 - type: Transform -- uid: 8211 - type: CableApcExtension - components: - - pos: 5.5,2.5 - parent: 30 - type: Transform -- uid: 8212 - type: CableApcExtension - components: - - pos: 6.5,2.5 - parent: 30 - type: Transform -- uid: 8213 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8214 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8215 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8216 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8217 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8218 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8219 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8220 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -22.5,-5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8221 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8222 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8223 - type: GasVentScrubber - components: - - pos: -24.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8224 - type: GasVentPump - components: - - pos: -22.5,-3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8225 - type: PoweredSmallLight - components: - - pos: -22.5,-21.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8226 - type: OxygenTankFilled - components: - - pos: -10.326736,-38.446224 - parent: 30 - type: Transform -- uid: 8227 - type: Poweredlight - components: - - pos: -22.5,-16.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8228 - type: WardrobeEngineeringFilled - components: - - pos: -9.5,-38.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8229 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-19.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8230 - type: AirlockMedicalGlassLocked - components: - - name: Nature Room - type: MetaData - - pos: -35.5,-8.5 - parent: 30 - type: Transform -- uid: 8231 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-15.5 - parent: 30 - type: Transform -- uid: 8232 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-4.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8233 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-8.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8234 - type: ChairOfficeLight - components: - - pos: -32.5,-14.5 - parent: 30 - type: Transform -- uid: 8235 - type: CableApcExtension - components: - - pos: -32.5,-11.5 - parent: 30 - type: Transform -- uid: 8236 - type: DisposalPipe - components: - - pos: -32.5,-8.5 - parent: 30 - type: Transform -- uid: 8237 - type: CableApcExtension - components: - - pos: -32.5,-12.5 - parent: 30 - type: Transform -- uid: 8238 - type: CableMV - components: - - pos: -35.5,-6.5 - parent: 30 - type: Transform -- uid: 8239 - type: CableApcExtension - components: - - pos: -32.5,-13.5 - parent: 30 - type: Transform -- uid: 8240 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-21.5 - parent: 30 - type: Transform -- uid: 8241 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -10.5,31.5 - parent: 30 - type: Transform -- uid: 8242 - type: Poweredlight - components: - - pos: -33.5,-1.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8243 - type: Poweredlight - components: - - pos: -23.5,-0.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8244 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -23.5,-5.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8245 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 30 - type: Transform -- uid: 8246 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-4.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8247 - type: NitrogenTankFilled - components: - - pos: -10.592361,-38.446224 - parent: 30 - type: Transform -- uid: 8248 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-7.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8249 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8250 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-17.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8251 - type: ChairOfficeDark - components: - - pos: -16.5,-28.5 - parent: 30 - type: Transform -- uid: 8252 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-22.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8253 - type: Poweredlight - components: - - pos: -14.5,-18.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8254 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-22.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8255 - type: Poweredlight - components: - - pos: -9.5,-19.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8256 - type: Grille - components: - - pos: -20.5,-47.5 - parent: 30 - type: Transform -- uid: 8257 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 4.5,-5.5 - parent: 30 - type: Transform -- uid: 8258 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-23.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8259 - type: PoweredSmallLight - components: - - pos: -8.5,-16.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8260 - type: OxygenTankFilled - components: - - pos: -10.326736,-38.446224 - parent: 30 - type: Transform -- uid: 8261 - type: Poweredlight - components: - - pos: -14.5,-12.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8262 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8263 - type: Rack - components: - - pos: -10.5,-38.5 - parent: 30 - type: Transform -- uid: 8264 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8265 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-10.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8266 - type: NitrogenTankFilled - components: - - pos: -10.592361,-38.446224 - parent: 30 - type: Transform -- uid: 8267 - type: Poweredlight - components: - - pos: -13.5,-8.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8268 - type: Poweredlight - components: - - pos: -12.5,-0.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8269 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-47.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8270 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-4.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8271 - type: WindowReinforcedDirectional - components: - - pos: -32.5,-18.5 - parent: 30 - type: Transform -- uid: 8272 - type: PoweredSmallLight - components: - - pos: -42.5,-7.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8273 - type: MedicalBed - components: - - pos: -34.5,-22.5 - parent: 30 - type: Transform -- uid: 8274 - type: BedsheetMedical - components: - - pos: -30.5,-22.5 - parent: 30 - type: Transform -- uid: 8275 - type: AirlockVirologyGlassLocked - components: - - pos: -31.5,-21.5 - parent: 30 - type: Transform -- uid: 8276 - type: Grille - components: - - pos: -34.5,-21.5 - parent: 30 - type: Transform -- uid: 8277 - type: AirlockVirologyGlassLocked - components: - - pos: -33.5,-21.5 - parent: 30 - type: Transform -- uid: 8278 - type: MedicalBed - components: - - pos: -30.5,-22.5 - parent: 30 - type: Transform -- uid: 8279 - type: BedsheetMedical - components: - - pos: -34.5,-22.5 - parent: 30 - type: Transform -- uid: 8280 - type: TableReinforcedGlass - components: - - pos: -25.5,-22.5 - parent: 30 - type: Transform -- uid: 8281 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-19.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8282 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-19.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8283 - type: TableReinforcedGlass - components: - - pos: -30.5,-24.5 - parent: 30 - type: Transform -- uid: 8284 - type: TableReinforcedGlass - components: - - pos: -31.5,-24.5 - parent: 30 - type: Transform -- uid: 8285 - type: PortableScrubber - components: - - pos: 20.5,-17.5 - parent: 30 - type: Transform -- uid: 8286 - type: Vaccinator - components: - - pos: -26.5,-21.5 - parent: 30 - type: Transform -- uid: 8287 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,-22.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8288 - type: Grille - components: - - pos: -32.5,-22.5 - parent: 30 - type: Transform -- uid: 8289 - type: ReinforcedWindow - components: - - pos: -29.5,-24.5 - parent: 30 - type: Transform -- uid: 8290 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: -7.5,-1.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical Lobby - type: SurveillanceCamera -- uid: 8291 - type: WallSolid - components: - - pos: -31.5,0.5 - parent: 30 - type: Transform -- uid: 8292 - type: AirlockMaintLocked - components: - - pos: 3.5,-12.5 - parent: 30 - type: Transform -- uid: 8293 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -18.5,-53.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singulo Walkway - type: SurveillanceCamera -- uid: 8294 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -16.5,-35.5 - parent: 30 - type: Transform -- uid: 8295 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-51.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Supermatter East - type: SurveillanceCamera -- uid: 8296 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -22.5,-39.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engi Locker Room - type: SurveillanceCamera -- uid: 8297 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -16.5,-36.5 - parent: 30 - type: Transform -- uid: 8298 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -16.5,-34.5 - parent: 30 - type: Transform -- uid: 8299 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-19.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8300 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -5.5,-39.5 - parent: 30 - type: Transform -- uid: 8301 - type: WallSolid - components: - - pos: 2.5,-5.5 - parent: 30 - type: Transform -- uid: 8302 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-22.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8304 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8305 - type: SignDirectionalEvac - components: - - rot: -1.5707963267948966 rad - pos: -37.5,12.5 - parent: 30 - type: Transform -- uid: 8306 - type: Poweredlight - components: - - pos: -32.5,-17.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8307 - type: WindowDirectional - components: - - pos: 5.5,-4.5 - parent: 30 - type: Transform -- uid: 8308 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-11.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8309 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-6.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8310 - type: WallSolid - components: - - pos: 4.5,-12.5 - parent: 30 - type: Transform -- uid: 8311 - type: JetpackBlueFilled - components: - - pos: -20.563852,-46.460617 - parent: 30 - type: Transform -- uid: 8312 - type: AirlockMaintLocked - components: - - pos: -4.5,-14.5 - parent: 30 - type: Transform -- uid: 8313 - type: PoweredSmallLight - components: - - pos: -38.5,-2.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8314 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-6.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8315 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-13.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8316 - type: Poweredlight - components: - - pos: -22.5,-12.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8317 - type: Poweredlight - components: - - pos: -23.5,-7.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8318 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-10.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8319 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-10.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8320 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-12.5 - parent: 30 - type: Transform -- uid: 8321 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-14.5 - parent: 30 - type: Transform -- uid: 8322 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-14.5 - parent: 30 - type: Transform -- uid: 8323 - type: DisposalUnit - components: - - pos: -25.5,-10.5 - parent: 30 - type: Transform -- uid: 8324 - type: FirelockGlass - components: - - pos: -19.5,-11.5 - parent: 30 - type: Transform -- uid: 8325 - type: FirelockGlass - components: - - pos: -18.5,-11.5 - parent: 30 - type: Transform -- uid: 8326 - type: FirelockGlass - components: - - pos: -17.5,-11.5 - parent: 30 - type: Transform -- uid: 8327 - type: WallSolid - components: - - pos: 10.5,-8.5 - parent: 30 - type: Transform -- uid: 8328 - type: WallSolid - components: - - pos: 10.5,-7.5 - parent: 30 - type: Transform -- uid: 8329 - type: Window - components: - - pos: 10.5,-1.5 - parent: 30 - type: Transform -- uid: 8330 - type: WallSolid - components: - - pos: 10.5,-5.5 - parent: 30 - type: Transform -- uid: 8331 - type: WallSolid - components: - - pos: 10.5,-4.5 - parent: 30 - type: Transform -- uid: 8332 - type: WallSolid - components: - - pos: 10.5,-3.5 - parent: 30 - type: Transform -- uid: 8333 - type: WallSolid - components: - - pos: 10.5,-2.5 - parent: 30 - type: Transform -- uid: 8334 - type: Window - components: - - pos: 10.5,-6.5 - parent: 30 - type: Transform -- uid: 8335 - type: Rack - components: - - pos: -4.5,-38.5 - parent: 30 - type: Transform -- uid: 8336 - type: ClosetFireFilled - components: - - pos: 0.5,-32.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8337 - type: ClothingBeltUtilityFilled - components: - - pos: -4.5536795,-38.356297 - parent: 30 - type: Transform -- uid: 8338 - type: WallReinforced - components: - - pos: 15.5,-15.5 - parent: 30 - type: Transform -- uid: 8339 - type: WallReinforced - components: - - pos: 15.5,-17.5 - parent: 30 - type: Transform -- uid: 8340 - type: WallReinforced - components: - - pos: 15.5,-19.5 - parent: 30 - type: Transform -- uid: 8341 - type: WallReinforced - components: - - pos: 15.5,-20.5 - parent: 30 - type: Transform -- uid: 8342 - type: WallReinforced - components: - - pos: 14.5,-20.5 - parent: 30 - type: Transform -- uid: 8343 - type: WallReinforced - components: - - pos: 15.5,-13.5 - parent: 30 - type: Transform -- uid: 8344 - type: WallReinforced - components: - - pos: 15.5,-12.5 - parent: 30 - type: Transform -- uid: 8345 - type: WallReinforced - components: - - pos: 14.5,-12.5 - parent: 30 - type: Transform -- uid: 8346 - type: Flash - components: - - pos: 12.288418,22.985573 - parent: 30 - type: Transform -- uid: 8347 - type: AirlockGlass - components: - - pos: 11.5,-0.5 - parent: 30 - type: Transform -- uid: 8348 - type: Grille - components: - - pos: 7.5,-17.5 - parent: 30 - type: Transform -- uid: 8349 - type: Grille - components: - - pos: 9.5,-17.5 - parent: 30 - type: Transform -- uid: 8350 - type: Grille - components: - - pos: 10.5,-15.5 - parent: 30 - type: Transform -- uid: 8351 - type: Grille - components: - - pos: 10.5,-14.5 - parent: 30 - type: Transform -- uid: 8352 - type: Grille - components: - - pos: 9.5,-12.5 - parent: 30 - type: Transform -- uid: 8353 - type: Grille - components: - - pos: 8.5,-12.5 - parent: 30 - type: Transform -- uid: 8354 - type: Grille - components: - - pos: 7.5,-12.5 - parent: 30 - type: Transform -- uid: 8355 - type: AirlockGlass - components: - - pos: 13.5,-0.5 - parent: 30 - type: Transform -- uid: 8356 - type: AirlockGlass - components: - - pos: 12.5,-0.5 - parent: 30 - type: Transform -- uid: 8357 - type: CableApcExtension - components: - - pos: 8.5,-16.5 - parent: 30 - type: Transform -- uid: 8358 - type: Paper - components: - - pos: -4.4471693,-10.563347 - parent: 30 - type: Transform - - content: > - Basic Med Recipes - - Inaprovaline (Airloss) - - Carbon+Oxygen+Sugar - - Bicaridine (Brute) - - Inaprovaline+3x Carbon - - Kelotane (Burns) - - Carbon+Silicon - - Dylovene (Poison) - - Nitrogen+Potassium+Silicon - - Hyronalin (Anti-Rad) - - Dylovene+3x Radium - type: Paper -- uid: 8359 - type: ReinforcedWindow - components: - - pos: -32.5,-61.5 - parent: 30 - type: Transform -- uid: 8360 - type: PosterContrabandHighEffectEngineering - components: - - pos: -10.5,-37.5 - parent: 30 - type: Transform -- uid: 8361 - type: Grille - components: - - pos: -0.5,-43.5 - parent: 30 - type: Transform -- uid: 8362 - type: ReinforcedPlasmaWindow - components: - - pos: -14.5,-43.5 - parent: 30 - type: Transform -- uid: 8363 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-16.5 - parent: 30 - type: Transform -- uid: 8364 - type: FirelockGlass - components: - - pos: 10.5,-18.5 - parent: 30 - type: Transform -- uid: 8365 - type: FirelockGlass - components: - - pos: 10.5,-19.5 - parent: 30 - type: Transform -- uid: 8366 - type: FirelockGlass - components: - - pos: 10.5,-20.5 - parent: 30 - type: Transform -- uid: 8367 - type: FirelockGlass - components: - - pos: 13.5,-12.5 - parent: 30 - type: Transform -- uid: 8368 - type: FirelockGlass - components: - - pos: 11.5,-12.5 - parent: 30 - type: Transform -- uid: 8369 - type: FirelockGlass - components: - - pos: 12.5,-12.5 - parent: 30 - type: Transform -- uid: 8370 - type: AppleSeeds - components: - - pos: 0.47603655,-23.56604 - parent: 30 - type: Transform -- uid: 8371 - type: PottedPlant2 - components: - - pos: 3.5092015,-30.805378 - parent: 30 - type: Transform -- uid: 8372 - type: PowerCellRecharger - components: - - pos: 5.5,-26.5 - parent: 30 - type: Transform -- uid: 8373 - type: Grille - components: - - pos: 10.5,-6.5 - parent: 30 - type: Transform -- uid: 8374 - type: Grille - components: - - pos: 10.5,-1.5 - parent: 30 - type: Transform -- uid: 8375 - type: WallReinforced - components: - - pos: 4.5,-26.5 - parent: 30 - type: Transform -- uid: 8376 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8377 - type: WallReinforced - components: - - pos: 4.5,-24.5 - parent: 30 - type: Transform -- uid: 8378 - type: ReinforcedWindow - components: - - pos: 4.5,-23.5 - parent: 30 - type: Transform -- uid: 8379 - type: WallReinforced - components: - - pos: 4.5,-22.5 - parent: 30 - type: Transform -- uid: 8380 - type: WallReinforced - components: - - pos: 4.5,-21.5 - parent: 30 - type: Transform -- uid: 8381 - type: WallSolid - components: - - pos: 1.5,-26.5 - parent: 30 - type: Transform -- uid: 8382 - type: WallSolid - components: - - pos: -0.5,-26.5 - parent: 30 - type: Transform -- uid: 8383 - type: WallSolid - components: - - pos: -0.5,-21.5 - parent: 30 - type: Transform -- uid: 8384 - type: WallSolid - components: - - pos: 1.5,-21.5 - parent: 30 - type: Transform -- uid: 8385 - type: ReinforcedWindow - components: - - pos: 4.5,-25.5 - parent: 30 - type: Transform -- uid: 8386 - type: Window - components: - - pos: -0.5,-25.5 - parent: 30 - type: Transform -- uid: 8387 - type: Window - components: - - pos: -0.5,-24.5 - parent: 30 - type: Transform -- uid: 8388 - type: Window - components: - - pos: -0.5,-23.5 - parent: 30 - type: Transform -- uid: 8389 - type: Window - components: - - pos: 0.5,-26.5 - parent: 30 - type: Transform -- uid: 8390 - type: Window - components: - - pos: 0.5,-21.5 - parent: 30 - type: Transform -- uid: 8391 - type: Window - components: - - pos: 3.5,-26.5 - parent: 30 - type: Transform -- uid: 8392 - type: Window - components: - - pos: 3.5,-21.5 - parent: 30 - type: Transform -- uid: 8393 - type: Grille - components: - - pos: 3.5,-26.5 - parent: 30 - type: Transform -- uid: 8394 - type: Grille - components: - - pos: 0.5,-26.5 - parent: 30 - type: Transform -- uid: 8395 - type: Grille - components: - - pos: -0.5,-25.5 - parent: 30 - type: Transform -- uid: 8396 - type: Grille - components: - - pos: -0.5,-23.5 - parent: 30 - type: Transform -- uid: 8397 - type: Grille - components: - - pos: -0.5,-24.5 - parent: 30 - type: Transform -- uid: 8398 - type: Grille - components: - - pos: 0.5,-21.5 - parent: 30 - type: Transform -- uid: 8399 - type: Grille - components: - - pos: 3.5,-21.5 - parent: 30 - type: Transform -- uid: 8400 - type: AirlockGlass - components: - - pos: 2.5,-21.5 - parent: 30 - type: Transform -- uid: 8401 - type: AirlockGlass - components: - - pos: 2.5,-26.5 - parent: 30 - type: Transform -- uid: 8402 - type: CableHV - components: - - pos: 3.5,-13.5 - parent: 30 - type: Transform -- uid: 8403 - type: WallSolid - components: - - pos: 2.5,-12.5 - parent: 30 - type: Transform -- uid: 8404 - type: ClothingShoesBootsJack - components: - - pos: -17.481518,-2.6493702 - parent: 30 - type: Transform -- uid: 8405 - type: SignCargo - components: - - pos: 7.5,0.5 - parent: 30 - type: Transform -- uid: 8406 - type: WallSolid - components: - - pos: 14.5,-8.5 - parent: 30 - type: Transform -- uid: 8407 - type: WallSolid - components: - - pos: 15.5,-8.5 - parent: 30 - type: Transform -- uid: 8408 - type: ReinforcedWindow - components: - - pos: 15.5,-18.5 - parent: 30 - type: Transform -- uid: 8409 - type: ReinforcedWindow - components: - - pos: 15.5,-16.5 - parent: 30 - type: Transform -- uid: 8410 - type: ReinforcedWindow - components: - - pos: 15.5,-14.5 - parent: 30 - type: Transform -- uid: 8411 - type: ReinforcedWindow - components: - - pos: 16.5,-12.5 - parent: 30 - type: Transform -- uid: 8412 - type: WallReinforced - components: - - pos: 17.5,-12.5 - parent: 30 - type: Transform -- uid: 8413 - type: WallReinforced - components: - - pos: 17.5,-13.5 - parent: 30 - type: Transform -- uid: 8414 - type: WallReinforced - components: - - pos: 17.5,-15.5 - parent: 30 - type: Transform -- uid: 8415 - type: WallReinforced - components: - - pos: 17.5,-17.5 - parent: 30 - type: Transform -- uid: 8416 - type: WallReinforced - components: - - pos: 17.5,-19.5 - parent: 30 - type: Transform -- uid: 8417 - type: WallReinforced - components: - - pos: 17.5,-20.5 - parent: 30 - type: Transform -- uid: 8418 - type: Grille - components: - - pos: 16.5,-20.5 - parent: 30 - type: Transform -- uid: 8419 - type: ReinforcedWindow - components: - - pos: 17.5,-18.5 - parent: 30 - type: Transform -- uid: 8420 - type: ReinforcedWindow - components: - - pos: 17.5,-16.5 - parent: 30 - type: Transform -- uid: 8421 - type: ReinforcedWindow - components: - - pos: 17.5,-14.5 - parent: 30 - type: Transform -- uid: 8422 - type: Grille - components: - - pos: 15.5,-18.5 - parent: 30 - type: Transform -- uid: 8423 - type: Grille - components: - - pos: 15.5,-16.5 - parent: 30 - type: Transform -- uid: 8424 - type: Grille - components: - - pos: 15.5,-14.5 - parent: 30 - type: Transform -- uid: 8425 - type: Grille - components: - - pos: 17.5,-14.5 - parent: 30 - type: Transform -- uid: 8426 - type: Grille - components: - - pos: 17.5,-16.5 - parent: 30 - type: Transform -- uid: 8427 - type: Grille - components: - - pos: 17.5,-18.5 - parent: 30 - type: Transform -- uid: 8428 - type: WallReinforced - components: - - pos: 14.5,-21.5 - parent: 30 - type: Transform -- uid: 8429 - type: WallReinforced - components: - - pos: 13.5,-21.5 - parent: 30 - type: Transform -- uid: 8430 - type: WallReinforced - components: - - pos: 12.5,-21.5 - parent: 30 - type: Transform -- uid: 8431 - type: WallReinforced - components: - - pos: 11.5,-21.5 - parent: 30 - type: Transform -- uid: 8432 - type: WallReinforced - components: - - pos: 10.5,-21.5 - parent: 30 - type: Transform -- uid: 8433 - type: WallReinforced - components: - - pos: 9.5,-21.5 - parent: 30 - type: Transform -- uid: 8434 - type: WallReinforced - components: - - pos: 8.5,-21.5 - parent: 30 - type: Transform -- uid: 8435 - type: WallReinforced - components: - - pos: 8.5,-22.5 - parent: 30 - type: Transform -- uid: 8436 - type: ReinforcedWindow - components: - - pos: 5.5,-22.5 - parent: 30 - type: Transform -- uid: 8437 - type: ReinforcedWindow - components: - - pos: 7.5,-22.5 - parent: 30 - type: Transform -- uid: 8438 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 6.5,-22.5 - parent: 30 - type: Transform -- uid: 8439 - type: AirlockCargoLocked - components: - - pos: 18.5,-10.5 - parent: 30 - type: Transform -- uid: 8440 - type: AirlockCargoLocked - components: - - pos: 15.5,-10.5 - parent: 30 - type: Transform -- uid: 8441 - type: WallSolid - components: - - pos: 15.5,-11.5 - parent: 30 - type: Transform -- uid: 8442 - type: WallSolid - components: - - pos: 15.5,-9.5 - parent: 30 - type: Transform -- uid: 8443 - type: WallSolid - components: - - pos: 18.5,-9.5 - parent: 30 - type: Transform -- uid: 8444 - type: WallSolidRust - components: - - pos: 18.5,-11.5 - parent: 30 - type: Transform -- uid: 8445 - type: SignMinerDock - components: - - pos: 15.5,-9.5 - parent: 30 - type: Transform -- uid: 8446 - type: Grille - components: - - pos: 23.5,-14.5 - parent: 30 - type: Transform -- uid: 8447 - type: SpawnPointMedicalDoctor - components: - - pos: -24.5,-17.5 - parent: 30 - type: Transform -- uid: 8448 - type: SpawnPointMedicalDoctor - components: - - pos: -23.5,-17.5 - parent: 30 - type: Transform -- uid: 8449 - type: SpawnPointMedicalDoctor - components: - - pos: -22.5,-17.5 - parent: 30 - type: Transform -- uid: 8450 - type: SpawnPointMedicalDoctor - components: - - pos: -21.5,-17.5 - parent: 30 - type: Transform -- uid: 8451 - type: WallSolid - components: - - pos: 16.5,-8.5 - parent: 30 - type: Transform -- uid: 8452 - type: WallSolid - components: - - pos: 17.5,-8.5 - parent: 30 - type: Transform -- uid: 8453 - type: WallSolid - components: - - pos: 18.5,-8.5 - parent: 30 - type: Transform -- uid: 8454 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-58.5 - parent: 30 - type: Transform -- uid: 8455 - type: ReinforcedWindow - components: - - pos: -32.5,-62.5 - parent: 30 - type: Transform -- uid: 8456 - type: ReinforcedWindow - components: - - pos: -32.5,-63.5 - parent: 30 - type: Transform -- uid: 8457 - type: ReinforcedWindow - components: - - pos: 15.5,-0.5 - parent: 30 - type: Transform -- uid: 8458 - type: WallSolid - components: - - pos: 18.5,-0.5 - parent: 30 - type: Transform -- uid: 8459 - type: Grille - components: - - pos: 18.5,-7.5 - parent: 30 - type: Transform -- uid: 8460 - type: SignCargo - components: - - pos: 10.5,-8.5 - parent: 30 - type: Transform -- uid: 8461 - type: WallReinforced - components: - - pos: 18.5,-4.5 - parent: 30 - type: Transform -- uid: 8462 - type: ReinforcedWindow - components: - - pos: 18.5,-7.5 - parent: 30 - type: Transform -- uid: 8463 - type: ReinforcedWindow - components: - - pos: 18.5,-5.5 - parent: 30 - type: Transform -- uid: 8464 - type: WindoorSecureCargoLocked - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-1.5 - parent: 30 - type: Transform -- uid: 8465 - type: CableApcExtension - components: - - pos: 31.5,-6.5 - parent: 30 - type: Transform -- uid: 8466 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11717 - Forward: - - port: Left - uid: 11717 - Off: - - port: Middle - uid: 11717 - type: SignalReceiver -- uid: 8467 - type: FirelockGlass - components: - - pos: 12.5,-8.5 - parent: 30 - type: Transform -- uid: 8468 - type: FirelockGlass - components: - - pos: 11.5,-8.5 - parent: 30 - type: Transform -- uid: 8469 - type: TableReinforced - components: - - pos: 16.5,-0.5 - parent: 30 - type: Transform -- uid: 8470 - type: TableReinforced - components: - - pos: 17.5,-0.5 - parent: 30 - type: Transform -- uid: 8471 - type: WindoorSecureCargoLocked - components: - - rot: 3.141592653589793 rad - pos: 16.5,-0.5 - parent: 30 - type: Transform -- uid: 8472 - type: WindoorSecureCargoLocked - components: - - rot: 3.141592653589793 rad - pos: 17.5,-0.5 - parent: 30 - type: Transform -- uid: 8473 - type: FirelockGlass - components: - - pos: 16.5,-0.5 - parent: 30 - type: Transform -- uid: 8474 - type: FirelockGlass - components: - - pos: 17.5,-0.5 - parent: 30 - type: Transform -- uid: 8475 - type: AirlockCargoLocked - components: - - pos: 14.5,1.5 - parent: 30 - type: Transform -- uid: 8476 - type: WallSolid - components: - - pos: 14.5,2.5 - parent: 30 - type: Transform -- uid: 8477 - type: WallReinforced - components: - - pos: 16.5,3.5 - parent: 30 - type: Transform -- uid: 8478 - type: WallReinforced - components: - - pos: 16.5,3.5 - parent: 30 - type: Transform -- uid: 8479 - type: WallReinforced - components: - - pos: 14.5,4.5 - parent: 30 - type: Transform -- uid: 8480 - type: WallReinforced - components: - - pos: 14.5,3.5 - parent: 30 - type: Transform -- uid: 8481 - type: AirlockMaintCargoLocked - components: - - pos: 17.5,3.5 - parent: 30 - type: Transform -- uid: 8482 - type: WallSolid - components: - - pos: 18.5,3.5 - parent: 30 - type: Transform -- uid: 8483 - type: WallSolid - components: - - pos: 19.5,3.5 - parent: 30 - type: Transform -- uid: 8484 - type: WallSolid - components: - - pos: 20.5,3.5 - parent: 30 - type: Transform -- uid: 8485 - type: WallSolid - components: - - pos: 21.5,3.5 - parent: 30 - type: Transform -- uid: 8486 - type: FirelockGlass - components: - - pos: 22.5,-2.5 - parent: 30 - type: Transform -- uid: 8487 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 22.5,0.5 - parent: 30 - type: Transform -- uid: 8488 - type: ReinforcedWindow - components: - - pos: 22.5,1.5 - parent: 30 - type: Transform -- uid: 8489 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 22.5,2.5 - parent: 30 - type: Transform -- uid: 8490 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 22.5,3.5 - parent: 30 - type: Transform -- uid: 8491 - type: ReinforcedWindow - components: - - pos: 19.5,-0.5 - parent: 30 - type: Transform -- uid: 8492 - type: ReinforcedWindow - components: - - pos: 21.5,-0.5 - parent: 30 - type: Transform -- uid: 8493 - type: AirlockCargoGlassLocked - components: - - pos: 20.5,-0.5 - parent: 30 - type: Transform -- uid: 8494 - type: Grille - components: - - pos: 15.5,-0.5 - parent: 30 - type: Transform -- uid: 8495 - type: Grille - components: - - pos: 19.5,-0.5 - parent: 30 - type: Transform -- uid: 8496 - type: Grille - components: - - pos: 21.5,-0.5 - parent: 30 - type: Transform -- uid: 8497 - type: SignSecureSmallRed - components: - - pos: -40.5,61.5 - parent: 30 - type: Transform -- uid: 8498 - type: VendingMachineCargoDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 21.5,-11.5 - parent: 30 - type: Transform -- uid: 8499 - type: Grille - components: - - pos: 18.5,-5.5 - parent: 30 - type: Transform -- uid: 8500 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11717 - Forward: - - port: Left - uid: 11717 - Off: - - port: Middle - uid: 11717 - type: SignalReceiver -- uid: 8501 - type: TableReinforced - components: - - pos: 18.5,-1.5 - parent: 30 - type: Transform -- uid: 8502 - type: AirlockCargoGlassLocked - components: - - pos: 18.5,-6.5 - parent: 30 - type: Transform -- uid: 8503 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11717 - Forward: - - port: Left - uid: 11717 - Off: - - port: Middle - uid: 11717 - type: SignalReceiver -- uid: 8504 - type: DisposalUnit - components: - - pos: 6.5,-0.5 - parent: 30 - type: Transform -- uid: 8505 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 8.5,-23.5 - parent: 30 - type: Transform -- uid: 8506 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 8.5,-24.5 - parent: 30 - type: Transform -- uid: 8507 - type: WallSolid - components: - - pos: 12.5,-30.5 - parent: 30 - type: Transform -- uid: 8508 - type: WallReinforced - components: - - pos: 8.5,-30.5 - parent: 30 - type: Transform -- uid: 8509 - type: WallReinforced - components: - - pos: 8.5,-29.5 - parent: 30 - type: Transform -- uid: 8510 - type: WallReinforced - components: - - pos: 8.5,-28.5 - parent: 30 - type: Transform -- uid: 8511 - type: WallReinforced - components: - - pos: 8.5,-27.5 - parent: 30 - type: Transform -- uid: 8512 - type: WallReinforced - components: - - pos: 8.5,-26.5 - parent: 30 - type: Transform -- uid: 8513 - type: WallReinforced - components: - - pos: 8.5,-25.5 - parent: 30 - type: Transform -- uid: 8514 - type: WallSolid - components: - - pos: 14.5,-30.5 - parent: 30 - type: Transform -- uid: 8515 - type: WallReinforced - components: - - pos: 4.5,-30.5 - parent: 30 - type: Transform -- uid: 8516 - type: ReinforcedWindow - components: - - pos: 5.5,-30.5 - parent: 30 - type: Transform -- uid: 8517 - type: ReinforcedWindow - components: - - pos: 7.5,-30.5 - parent: 30 - type: Transform -- uid: 8518 - type: WallSolid - components: - - pos: 13.5,-29.5 - parent: 30 - type: Transform -- uid: 8519 - type: WallSolid - components: - - pos: 13.5,-28.5 - parent: 30 - type: Transform -- uid: 8520 - type: WallSolid - components: - - pos: 13.5,-30.5 - parent: 30 - type: Transform -- uid: 8521 - type: WallSolid - components: - - pos: 13.5,-27.5 - parent: 30 - type: Transform -- uid: 8522 - type: WallSolid - components: - - pos: 14.5,-26.5 - parent: 30 - type: Transform -- uid: 8523 - type: WallSolid - components: - - pos: 13.5,-26.5 - parent: 30 - type: Transform -- uid: 8524 - type: WallSolid - components: - - pos: 9.5,-30.5 - parent: 30 - type: Transform -- uid: 8525 - type: WallSolid - components: - - pos: 12.5,-26.5 - parent: 30 - type: Transform -- uid: 8526 - type: WallSolid - components: - - pos: 9.5,-26.5 - parent: 30 - type: Transform -- uid: 8527 - type: WallReinforced - components: - - pos: 4.5,-37.5 - parent: 30 - type: Transform -- uid: 8528 - type: WallReinforced - components: - - pos: 4.5,-36.5 - parent: 30 - type: Transform -- uid: 8529 - type: WallReinforced - components: - - pos: 4.5,-35.5 - parent: 30 - type: Transform -- uid: 8530 - type: WallReinforced - components: - - pos: 4.5,-31.5 - parent: 30 - type: Transform -- uid: 8531 - type: WallReinforced - components: - - pos: 4.5,-32.5 - parent: 30 - type: Transform -- uid: 8532 - type: WallReinforced - components: - - pos: 4.5,-34.5 - parent: 30 - type: Transform -- uid: 8533 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-37.5 - parent: 30 - type: Transform -- uid: 8534 - type: GasValve - components: - - pos: 21.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound - - bodyType: Static - type: Physics -- uid: 8535 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-38.5 - parent: 30 - type: Transform -- uid: 8536 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-35.5 - parent: 30 - type: Transform -- uid: 8537 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-36.5 - parent: 30 - type: Transform -- uid: 8538 - type: Catwalk - components: - - pos: 23.5,-35.5 - parent: 30 - type: Transform -- uid: 8539 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-37.5 - parent: 30 - type: Transform -- uid: 8540 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-35.5 - parent: 30 - type: Transform -- uid: 8541 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-35.5 - parent: 30 - type: Transform -- uid: 8542 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-37.5 - parent: 30 - type: Transform -- uid: 8543 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-37.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8544 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 19.5,-36.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8545 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-37.5 - parent: 30 - type: Transform -- uid: 8546 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-36.5 - parent: 30 - type: Transform -- uid: 8547 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-37.5 - parent: 30 - type: Transform -- uid: 8548 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-37.5 - parent: 30 - type: Transform -- uid: 8549 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-37.5 - parent: 30 - type: Transform -- uid: 8550 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-37.5 - parent: 30 - type: Transform -- uid: 8551 - type: ReinforcedWindow - components: - - pos: 22.5,-35.5 - parent: 30 - type: Transform -- uid: 8552 - type: ReinforcedWindow - components: - - pos: 22.5,-34.5 - parent: 30 - type: Transform -- uid: 8553 - type: ReinforcedWindow - components: - - pos: 22.5,-33.5 - parent: 30 - type: Transform -- uid: 8554 - type: ReinforcedWindow - components: - - pos: 22.5,-32.5 - parent: 30 - type: Transform -- uid: 8555 - type: ReinforcedWindow - components: - - pos: 22.5,-31.5 - parent: 30 - type: Transform -- uid: 8556 - type: ReinforcedWindow - components: - - pos: 22.5,-30.5 - parent: 30 - type: Transform -- uid: 8557 - type: ReinforcedWindow - components: - - pos: 22.5,-29.5 - parent: 30 - type: Transform -- uid: 8558 - type: ReinforcedWindow - components: - - pos: 22.5,-28.5 - parent: 30 - type: Transform -- uid: 8559 - type: ReinforcedWindow - components: - - pos: 22.5,-27.5 - parent: 30 - type: Transform -- uid: 8560 - type: ReinforcedWindow - components: - - pos: 22.5,-26.5 - parent: 30 - type: Transform -- uid: 8561 - type: ReinforcedWindow - components: - - pos: 22.5,-25.5 - parent: 30 - type: Transform -- uid: 8562 - type: ReinforcedWindow - components: - - pos: 22.5,-24.5 - parent: 30 - type: Transform -- uid: 8563 - type: ReinforcedWindow - components: - - pos: 22.5,-23.5 - parent: 30 - type: Transform -- uid: 8564 - type: ReinforcedWindow - components: - - pos: 22.5,-22.5 - parent: 30 - type: Transform -- uid: 8565 - type: ReinforcedWindow - components: - - pos: 22.5,-21.5 - parent: 30 - type: Transform -- uid: 8566 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-38.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8567 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-38.5 - parent: 30 - type: Transform -- uid: 8568 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-35.5 - parent: 30 - type: Transform -- uid: 8569 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-37.5 - parent: 30 - type: Transform -- uid: 8570 - type: SignalButton - components: - - pos: 13.5,-38.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9068 - type: SignalTransmitter -- uid: 8571 - type: WallReinforced - components: - - pos: 13.5,-38.5 - parent: 30 - type: Transform -- uid: 8572 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-36.5 - parent: 30 - type: Transform -- uid: 8573 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-35.5 - parent: 30 - type: Transform -- uid: 8574 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-37.5 - parent: 30 - type: Transform -- uid: 8575 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-38.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8576 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 21.5,-38.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8577 - type: Grille - components: - - pos: 22.5,-35.5 - parent: 30 - type: Transform -- uid: 8578 - type: Grille - components: - - pos: 22.5,-34.5 - parent: 30 - type: Transform -- uid: 8579 - type: Grille - components: - - pos: 22.5,-33.5 - parent: 30 - type: Transform -- uid: 8580 - type: Grille - components: - - pos: 22.5,-32.5 - parent: 30 - type: Transform -- uid: 8581 - type: Grille - components: - - pos: 22.5,-31.5 - parent: 30 - type: Transform -- uid: 8582 - type: Grille - components: - - pos: 22.5,-30.5 - parent: 30 - type: Transform -- uid: 8583 - type: Grille - components: - - pos: 22.5,-29.5 - parent: 30 - type: Transform -- uid: 8584 - type: Grille - components: - - pos: 22.5,-28.5 - parent: 30 - type: Transform -- uid: 8585 - type: Grille - components: - - pos: 22.5,-27.5 - parent: 30 - type: Transform -- uid: 8586 - type: Grille - components: - - pos: 22.5,-26.5 - parent: 30 - type: Transform -- uid: 8587 - type: Grille - components: - - pos: 22.5,-25.5 - parent: 30 - type: Transform -- uid: 8588 - type: Grille - components: - - pos: 22.5,-24.5 - parent: 30 - type: Transform -- uid: 8589 - type: Grille - components: - - pos: 22.5,-23.5 - parent: 30 - type: Transform -- uid: 8590 - type: Grille - components: - - pos: 22.5,-22.5 - parent: 30 - type: Transform -- uid: 8591 - type: Grille - components: - - pos: 22.5,-21.5 - parent: 30 - type: Transform -- uid: 8592 - type: WallReinforced - components: - - pos: 22.5,-20.5 - parent: 30 - type: Transform -- uid: 8593 - type: WallReinforced - components: - - pos: 21.5,-20.5 - parent: 30 - type: Transform -- uid: 8594 - type: WallReinforced - components: - - pos: 22.5,-19.5 - parent: 30 - type: Transform -- uid: 8595 - type: AirlockExternalGlassAtmosphericsLocked - components: - - pos: 23.5,-18.5 - parent: 30 - type: Transform -- uid: 8596 - type: WallReinforced - components: - - pos: 18.5,-20.5 - parent: 30 - type: Transform -- uid: 8597 - type: Grille - components: - - pos: 5.5,-22.5 - parent: 30 - type: Transform -- uid: 8598 - type: Grille - components: - - pos: 7.5,-22.5 - parent: 30 - type: Transform -- uid: 8599 - type: Grille - components: - - pos: 7.5,-30.5 - parent: 30 - type: Transform -- uid: 8600 - type: Grille - components: - - pos: 5.5,-30.5 - parent: 30 - type: Transform -- uid: 8601 - type: ReinforcedWindow - components: - - pos: 5.5,-37.5 - parent: 30 - type: Transform -- uid: 8602 - type: Grille - components: - - pos: 5.5,-37.5 - parent: 30 - type: Transform -- uid: 8603 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 6.5,-30.5 - parent: 30 - type: Transform -- uid: 8604 - type: AirlockAtmosphericsLocked - components: - - pos: 4.5,-33.5 - parent: 30 - type: Transform -- uid: 8605 - type: PlasticFlapsAirtightClear - components: - - pos: 4.5,-29.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8606 - type: CableMV - components: - - pos: 3.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8607 - type: WindoorEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-27.5 - parent: 30 - type: Transform -- uid: 8608 - type: WindoorEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-28.5 - parent: 30 - type: Transform -- uid: 8609 - type: TableReinforced - components: - - pos: 4.5,-28.5 - parent: 30 - type: Transform -- uid: 8610 - type: TableReinforced - components: - - pos: 4.5,-27.5 - parent: 30 - type: Transform -- uid: 8611 - type: FirelockGlass - components: - - pos: 4.5,-28.5 - parent: 30 - type: Transform -- uid: 8612 - type: FirelockGlass - components: - - pos: 4.5,-27.5 - parent: 30 - type: Transform -- uid: 8613 - type: PottedPlantRandom - components: - - pos: -22.5,9.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 8614 - type: WindowReinforcedDirectional - components: - - pos: -25.5,4.5 - parent: 30 - type: Transform -- uid: 8615 - type: WindowReinforcedDirectional - components: - - pos: -24.5,4.5 - parent: 30 - type: Transform -- uid: 8616 - type: WallReinforced - components: - - pos: 24.5,-25.5 - parent: 30 - type: Transform -- uid: 8617 - type: WallReinforced - components: - - pos: 25.5,-25.5 - parent: 30 - type: Transform -- uid: 8618 - type: WallReinforced - components: - - pos: 26.5,-25.5 - parent: 30 - type: Transform -- uid: 8619 - type: WallReinforced - components: - - pos: 28.5,-25.5 - parent: 30 - type: Transform -- uid: 8620 - type: WallReinforced - components: - - pos: 27.5,-25.5 - parent: 30 - type: Transform -- uid: 8621 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-31.5 - parent: 30 - type: Transform -- uid: 8622 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-30.5 - parent: 30 - type: Transform -- uid: 8623 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 30 - type: Transform -- uid: 8624 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-27.5 - parent: 30 - type: Transform -- uid: 8625 - type: AirlockMaintLocked - components: - - pos: -2.5,-17.5 - parent: 30 - type: Transform -- uid: 8626 - type: FirelockGlass - components: - - pos: -2.5,-21.5 - parent: 30 - type: Transform -- uid: 8627 - type: AirlockMaintLocked - components: - - pos: -4.5,-24.5 - parent: 30 - type: Transform -- uid: 8628 - type: FirelockGlass - components: - - pos: -3.5,-21.5 - parent: 30 - type: Transform -- uid: 8629 - type: WallReinforced - components: - - pos: 27.5,-23.5 - parent: 30 - type: Transform -- uid: 8630 - type: WallReinforced - components: - - pos: 25.5,-23.5 - parent: 30 - type: Transform -- uid: 8631 - type: WallReinforced - components: - - pos: 24.5,-23.5 - parent: 30 - type: Transform -- uid: 8632 - type: WallReinforced - components: - - pos: 28.5,-24.5 - parent: 30 - type: Transform -- uid: 8633 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-31.5 - parent: 30 - type: Transform -- uid: 8634 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-31.5 - parent: 30 - type: Transform -- uid: 8635 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-31.5 - parent: 30 - type: Transform -- uid: 8636 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-31.5 - parent: 30 - type: Transform -- uid: 8637 - type: WallReinforced - components: - - pos: 26.5,-23.5 - parent: 30 - type: Transform -- uid: 8638 - type: WallReinforced - components: - - pos: 28.5,-23.5 - parent: 30 - type: Transform -- uid: 8639 - type: WallReinforced - components: - - pos: 28.5,-22.5 - parent: 30 - type: Transform -- uid: 8640 - type: CableApcExtension - components: - - pos: 28.5,-21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8641 - type: WallReinforced - components: - - pos: 24.5,-21.5 - parent: 30 - type: Transform -- uid: 8642 - type: CableApcExtension - components: - - pos: 25.5,-21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8643 - type: CableApcExtension - components: - - pos: 26.5,-21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8644 - type: CableApcExtension - components: - - pos: 27.5,-21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8645 - type: WallReinforced - components: - - pos: 28.5,-26.5 - parent: 30 - type: Transform -- uid: 8646 - type: WallReinforced - components: - - pos: 28.5,-27.5 - parent: 30 - type: Transform -- uid: 8647 - type: WallReinforced - components: - - pos: 27.5,-27.5 - parent: 30 - type: Transform -- uid: 8648 - type: WallReinforced - components: - - pos: 26.5,-27.5 - parent: 30 - type: Transform -- uid: 8649 - type: WallReinforced - components: - - pos: 25.5,-27.5 - parent: 30 - type: Transform -- uid: 8650 - type: WallReinforced - components: - - pos: 24.5,-27.5 - parent: 30 - type: Transform -- uid: 8651 - type: WallReinforced - components: - - pos: 28.5,-28.5 - parent: 30 - type: Transform -- uid: 8652 - type: WallReinforced - components: - - pos: 28.5,-29.5 - parent: 30 - type: Transform -- uid: 8653 - type: WallReinforced - components: - - pos: 27.5,-29.5 - parent: 30 - type: Transform -- uid: 8654 - type: WallReinforced - components: - - pos: 26.5,-29.5 - parent: 30 - type: Transform -- uid: 8655 - type: WallReinforced - components: - - pos: 25.5,-29.5 - parent: 30 - type: Transform -- uid: 8656 - type: WallReinforced - components: - - pos: 24.5,-29.5 - parent: 30 - type: Transform -- uid: 8657 - type: WallReinforced - components: - - pos: 28.5,-30.5 - parent: 30 - type: Transform -- uid: 8658 - type: WallReinforced - components: - - pos: 28.5,-31.5 - parent: 30 - type: Transform -- uid: 8659 - type: WallReinforced - components: - - pos: 27.5,-31.5 - parent: 30 - type: Transform -- uid: 8660 - type: WallReinforced - components: - - pos: 25.5,-31.5 - parent: 30 - type: Transform -- uid: 8661 - type: WallReinforced - components: - - pos: 26.5,-31.5 - parent: 30 - type: Transform -- uid: 8662 - type: WallReinforced - components: - - pos: 24.5,-31.5 - parent: 30 - type: Transform -- uid: 8663 - type: WarningN2O - components: - - pos: 28.5,-34.5 - parent: 30 - type: Transform -- uid: 8664 - type: WarningN2 - components: - - pos: 28.5,-22.5 - parent: 30 - type: Transform -- uid: 8665 - type: WarningO2 - components: - - pos: 28.5,-24.5 - parent: 30 - type: Transform -- uid: 8666 - type: WarningCO2 - components: - - pos: 28.5,-26.5 - parent: 30 - type: Transform -- uid: 8667 - type: WarningWaste - components: - - pos: 28.5,-28.5 - parent: 30 - type: Transform -- uid: 8668 - type: WarningPlasma - components: - - pos: 28.5,-30.5 - parent: 30 - type: Transform -- uid: 8669 - type: WallReinforced - components: - - pos: 28.5,-32.5 - parent: 30 - type: Transform -- uid: 8670 - type: WallReinforced - components: - - pos: 28.5,-33.5 - parent: 30 - type: Transform -- uid: 8671 - type: WallReinforced - components: - - pos: 27.5,-33.5 - parent: 30 - type: Transform -- uid: 8672 - type: WallReinforced - components: - - pos: 25.5,-33.5 - parent: 30 - type: Transform -- uid: 8673 - type: WallReinforced - components: - - pos: 26.5,-33.5 - parent: 30 - type: Transform -- uid: 8674 - type: WallReinforced - components: - - pos: 24.5,-33.5 - parent: 30 - type: Transform -- uid: 8675 - type: WallReinforced - components: - - pos: 28.5,-34.5 - parent: 30 - type: Transform -- uid: 8676 - type: WallReinforced - components: - - pos: 28.5,-35.5 - parent: 30 - type: Transform -- uid: 8677 - type: WallReinforced - components: - - pos: 27.5,-35.5 - parent: 30 - type: Transform -- uid: 8678 - type: WallReinforced - components: - - pos: 26.5,-35.5 - parent: 30 - type: Transform -- uid: 8679 - type: WallReinforced - components: - - pos: 24.5,-35.5 - parent: 30 - type: Transform -- uid: 8680 - type: WallReinforced - components: - - pos: 25.5,-35.5 - parent: 30 - type: Transform -- uid: 8681 - type: WarningTritium - components: - - pos: 28.5,-32.5 - parent: 30 - type: Transform -- uid: 8682 - type: ReinforcedPlasmaWindow - components: - - pos: 24.5,-34.5 - parent: 30 - type: Transform -- uid: 8683 - type: ReinforcedPlasmaWindow - components: - - pos: 24.5,-32.5 - parent: 30 - type: Transform -- uid: 8684 - type: ReinforcedPlasmaWindow - components: - - pos: 24.5,-30.5 - parent: 30 - type: Transform -- uid: 8685 - type: ReinforcedPlasmaWindow - components: - - pos: 24.5,-28.5 - parent: 30 - type: Transform -- uid: 8686 - type: ReinforcedPlasmaWindow - components: - - pos: 24.5,-26.5 - parent: 30 - type: Transform -- uid: 8687 - type: ReinforcedPlasmaWindow - components: - - pos: 24.5,-24.5 - parent: 30 - type: Transform -- uid: 8688 - type: ReinforcedPlasmaWindow - components: - - pos: 24.5,-22.5 - parent: 30 - type: Transform -- uid: 8689 - type: GasMinerNitrogen - components: - - pos: 26.5,-22.5 - parent: 30 - type: Transform -- uid: 8690 - type: GasMinerOxygen - components: - - pos: 26.5,-24.5 - parent: 30 - type: Transform -- uid: 8691 - type: GasMinerCarbonDioxide - components: - - pos: 26.5,-26.5 - parent: 30 - type: Transform -- uid: 8692 - type: GasMinerWaterVapor - components: - - pos: 26.5,-28.5 - parent: 30 - type: Transform -- uid: 8693 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-22.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8694 - type: GasPassiveVent - components: - - pos: 27.5,-22.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8695 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-24.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8696 - type: GasPassiveVent - components: - - pos: 27.5,-24.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8697 - type: GasPassiveVent - components: - - pos: 27.5,-26.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8698 - type: GasPassiveVent - components: - - pos: 27.5,-28.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8699 - type: GasPassiveVent - components: - - pos: 27.5,-30.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8700 - type: GasPassiveVent - components: - - pos: 27.5,-32.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8701 - type: GasPassiveVent - components: - - pos: 27.5,-34.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8702 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-34.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8703 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-32.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8704 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-30.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8705 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-28.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8706 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-26.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8707 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-23.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8708 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-25.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8709 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-27.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8710 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-29.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8711 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-31.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8712 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-33.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8713 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-35.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8714 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-35.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8715 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-35.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8716 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-35.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8717 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-35.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8718 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-35.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8719 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-33.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8720 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-33.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8721 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-33.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8722 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-33.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8723 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-33.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8724 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-31.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8725 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-31.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8726 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-31.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8727 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-31.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8728 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-31.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8729 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-29.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8730 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-29.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8731 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-29.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8732 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-29.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8733 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-29.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8734 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-27.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8735 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-27.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8736 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-27.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8737 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-27.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8738 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-27.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8739 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-25.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8740 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-25.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8741 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8742 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-25.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8743 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-25.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8744 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-23.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8745 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-23.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8746 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-23.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8747 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-23.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8748 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8749 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-22.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8750 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8751 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-22.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8752 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-24.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8753 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8754 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8755 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-26.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8756 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-26.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8757 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-26.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8758 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8759 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8760 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-28.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8761 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-30.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8762 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-30.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8763 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-30.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8764 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-32.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8765 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-32.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8766 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-32.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8767 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-34.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8768 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-34.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8769 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-34.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8770 - type: OxygenCanister - components: - - pos: 27.5,-24.5 - parent: 30 - type: Transform -- uid: 8771 - type: NitrogenCanister - components: - - pos: 27.5,-22.5 - parent: 30 - type: Transform -- uid: 8772 - type: CarbonDioxideCanister - components: - - pos: 27.5,-26.5 - parent: 30 - type: Transform -- uid: 8773 - type: WaterVaporCanister - components: - - pos: 27.5,-28.5 - parent: 30 - type: Transform -- uid: 8774 - type: GasMinerPlasma - components: - - pos: 26.5,-30.5 - parent: 30 - type: Transform -- uid: 8775 - type: StorageCanister - components: - - pos: 27.5,-32.5 - parent: 30 - type: Transform -- uid: 8776 - type: StorageCanister - components: - - pos: 27.5,-34.5 - parent: 30 - type: Transform -- uid: 8777 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8778 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8779 - type: GasPipeFourway - components: - - pos: 10.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8780 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8781 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8782 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8783 - type: GasPipeTJunction - components: - - pos: 15.5,-23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8784 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8785 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8786 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8787 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8788 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8789 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8790 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 20.5,-21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8791 - type: GasPipeBend - components: - - pos: 21.5,-21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8792 - type: GasFilterFlipped - components: - - name: n2 filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 21.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8793 - type: GasFilterFlipped - components: - - name: o2 filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 21.5,-24.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8794 - type: GasFilterFlipped - components: - - name: co2 filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 21.5,-26.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8795 - type: GasFilterFlipped - components: - - name: h2o filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 21.5,-28.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8796 - type: GasFilterFlipped - components: - - name: plasma filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 21.5,-30.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8797 - type: GasFilterFlipped - components: - - name: tritium filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 21.5,-32.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8798 - type: GasFilterFlipped - components: - - name: nitrous oxide filter - type: MetaData - - rot: 3.141592653589793 rad - pos: 21.5,-34.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8799 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-23.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8800 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-25.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8801 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-27.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8802 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-29.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8803 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-31.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8804 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-33.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8805 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-23.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8806 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-25.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8807 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-27.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8808 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-29.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8809 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-31.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8810 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-33.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8811 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-35.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8812 - type: GasValve - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound - - bodyType: Static - type: Physics -- uid: 8813 - type: GasMixerFlipped - components: - - name: distro mixer - type: MetaData - - rot: 1.5707963267948966 rad - pos: 19.5,-23.5 - parent: 30 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8814 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-25.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8815 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-25.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8816 - type: GasPipeStraight - components: - - pos: 19.5,-24.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8817 - type: GasPipeTJunction - components: - - pos: 20.5,-23.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8818 - type: GasPipeStraight - components: - - pos: 20.5,-24.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8819 - type: GasPipeStraight - components: - - pos: 20.5,-25.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8820 - type: GasMixerFlipped - components: - - rot: 3.141592653589793 rad - pos: 19.5,-26.5 - parent: 30 - type: Transform - - inletTwoConcentration: 0 - inletOneConcentration: 1 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 8821 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-26.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8822 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-27.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8823 - type: GasMixerFlipped - components: - - rot: 3.141592653589793 rad - pos: 19.5,-27.5 - parent: 30 - type: Transform - - inletTwoConcentration: 0 - inletOneConcentration: 1 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 8824 - type: GasMixerFlipped - components: - - rot: 3.141592653589793 rad - pos: 19.5,-29.5 - parent: 30 - type: Transform - - inletTwoConcentration: 0 - inletOneConcentration: 1 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 8825 - type: GasMixerFlipped - components: - - rot: 3.141592653589793 rad - pos: 19.5,-31.5 - parent: 30 - type: Transform - - inletTwoConcentration: 0 - inletOneConcentration: 1 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 8826 - type: GasMixerFlipped - components: - - rot: 3.141592653589793 rad - pos: 19.5,-33.5 - parent: 30 - type: Transform - - inletTwoConcentration: 0 - inletOneConcentration: 1 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 8827 - type: GasMixerFlipped - components: - - rot: 3.141592653589793 rad - pos: 19.5,-35.5 - parent: 30 - type: Transform - - inletTwoConcentration: 0 - inletOneConcentration: 1 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 8828 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-35.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 8829 - type: GasPipeStraight - components: - - pos: 19.5,-34.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8830 - type: GasPipeStraight - components: - - pos: 19.5,-32.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8831 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-33.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8832 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-31.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8833 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-30.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8834 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-28.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8835 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-29.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8836 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-23.5 - parent: 30 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8837 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-23.5 - parent: 30 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8838 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-24.5 - parent: 30 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8839 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8840 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8841 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8842 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8843 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8844 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8845 - type: GasPipeFourway - components: - - pos: 11.5,-23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8846 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8847 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-36.5 - parent: 30 - type: Transform -- uid: 8848 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-37.5 - parent: 30 - type: Transform -- uid: 8849 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-37.5 - parent: 30 - type: Transform -- uid: 8850 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-37.5 - parent: 30 - type: Transform -- uid: 8851 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-37.5 - parent: 30 - type: Transform -- uid: 8852 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-37.5 - parent: 30 - type: Transform -- uid: 8853 - type: GasPipeTJunction - components: - - pos: -2.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8854 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8855 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8856 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8857 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8858 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8859 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8860 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8861 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8862 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8863 - type: Window - components: - - pos: -0.5,-22.5 - parent: 30 - type: Transform -- uid: 8864 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8865 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8866 - type: GasPipeFourway - components: - - pos: 5.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8867 - type: GasPipeStraight - components: - - pos: 7.5,-4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8868 - type: GasPipeBend - components: - - pos: 7.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8869 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 7.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8870 - type: GasPipeFourway - components: - - pos: 13.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8871 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8872 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 9.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8873 - type: GasPipeStraight - components: - - pos: 7.5,-25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8874 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8875 - type: GasPipeStraight - components: - - pos: 7.5,-22.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8876 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8877 - type: GasPipeTJunction - components: - - pos: 2.5,-27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8878 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8879 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8880 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8881 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8882 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8883 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8884 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8885 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8886 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8887 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-12.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8888 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8889 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8890 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8891 - type: GasPipeStraight - components: - - pos: 7.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8892 - type: GasPipeStraight - components: - - pos: 7.5,-9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8893 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 9.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8894 - type: GasPipeStraight - components: - - pos: 7.5,-7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8895 - type: GasPipeStraight - components: - - pos: 7.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8896 - type: GasPipeStraight - components: - - pos: 7.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8897 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8898 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8899 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8900 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8901 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8902 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8903 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8904 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8905 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8906 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8907 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8908 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8909 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8910 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8911 - type: GasPipeBend - components: - - pos: 11.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8912 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 12.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8913 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8914 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8915 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8916 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8917 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8918 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8919 - type: GasPipeTJunction - components: - - pos: 4.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8920 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 6.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8921 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8922 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8923 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8924 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8925 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8926 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8927 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8928 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8929 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8930 - type: GasPipeStraight - components: - - pos: 7.5,-26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8931 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8932 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8933 - type: GasPipeStraight - components: - - pos: 7.5,-22.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8934 - type: GasPipeStraight - components: - - pos: 7.5,-23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8935 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8936 - type: GasPipeTJunction - components: - - pos: 5.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8937 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8938 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8939 - type: GasPipeTJunction - components: - - pos: 7.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8940 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 7.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8941 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8942 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8943 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8944 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8945 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8946 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8947 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8948 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-16.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8949 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8950 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8951 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8952 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8953 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-11.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8954 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8955 - type: GasPipeFourway - components: - - pos: 11.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8956 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8957 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8958 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8959 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8960 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8961 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8962 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8963 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8964 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8965 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8966 - type: GasPipeBend - components: - - pos: 13.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8967 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8968 - type: GasPipeTJunction - components: - - pos: 9.5,3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8969 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8970 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8971 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8972 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8973 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8974 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8975 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8976 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8977 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8978 - type: GasPipeBend - components: - - pos: 9.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8979 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8980 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-33.5 - parent: 30 - type: Transform -- uid: 8981 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-33.5 - parent: 30 - type: Transform -- uid: 8982 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-37.5 - parent: 30 - type: Transform -- uid: 8983 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-36.5 - parent: 30 - type: Transform -- uid: 8984 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-35.5 - parent: 30 - type: Transform -- uid: 8985 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-34.5 - parent: 30 - type: Transform -- uid: 8986 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-33.5 - parent: 30 - type: Transform -- uid: 8987 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 30 - type: Transform -- uid: 8988 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-33.5 - parent: 30 - type: Transform -- uid: 8989 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-33.5 - parent: 30 - type: Transform -- uid: 8990 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-33.5 - parent: 30 - type: Transform -- uid: 8991 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-33.5 - parent: 30 - type: Transform -- uid: 8992 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-33.5 - parent: 30 - type: Transform -- uid: 8993 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-34.5 - parent: 30 - type: Transform -- uid: 8994 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-35.5 - parent: 30 - type: Transform -- uid: 8995 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-36.5 - parent: 30 - type: Transform -- uid: 8996 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-37.5 - parent: 30 - type: Transform -- uid: 8997 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-37.5 - parent: 30 - type: Transform -- uid: 8998 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-36.5 - parent: 30 - type: Transform -- uid: 8999 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-35.5 - parent: 30 - type: Transform -- uid: 9000 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-34.5 - parent: 30 - type: Transform -- uid: 9001 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-33.5 - parent: 30 - type: Transform -- uid: 9002 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-33.5 - parent: 30 - type: Transform -- uid: 9003 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-33.5 - parent: 30 - type: Transform -- uid: 9004 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-33.5 - parent: 30 - type: Transform -- uid: 9005 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-33.5 - parent: 30 - type: Transform -- uid: 9006 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 30 - type: Transform -- uid: 9007 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-33.5 - parent: 30 - type: Transform -- uid: 9008 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-34.5 - parent: 30 - type: Transform -- uid: 9009 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-35.5 - parent: 30 - type: Transform -- uid: 9010 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-36.5 - parent: 30 - type: Transform -- uid: 9011 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-37.5 - parent: 30 - type: Transform -- uid: 9012 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-37.5 - parent: 30 - type: Transform -- uid: 9013 - type: GasPressurePump - components: - - name: mix pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: 17.5,-36.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 9014 - type: GasValve - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-36.5 - parent: 30 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 9015 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-36.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9016 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-36.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9017 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-36.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9018 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-36.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 9019 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-36.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9020 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-36.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9021 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-36.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9022 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-36.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9023 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 7.5,-36.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9024 - type: GasValve - components: - - rot: 3.141592653589793 rad - pos: 7.5,-35.5 - parent: 30 - type: Transform - - open: False - type: GasValve - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9025 - type: GasPipeBend - components: - - pos: 7.5,-34.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9026 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-34.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9027 - type: GasValve - components: - - pos: 6.5,-35.5 - parent: 30 - type: Transform - - open: False - type: GasValve - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9028 - type: GasPressurePump - components: - - name: mix to supermatter loop - type: MetaData - - pos: 6.5,-36.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9029 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-33.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9030 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-32.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9031 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-32.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9032 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-32.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9033 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-32.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9034 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-37.5 - parent: 30 - type: Transform -- uid: 9035 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-24.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9036 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-32.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9037 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-36.5 - parent: 30 - type: Transform -- uid: 9038 - type: SignalButton - components: - - pos: 16.5,-33.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9068 - type: SignalTransmitter -- uid: 9039 - type: GasValve - components: - - rot: 3.141592653589793 rad - pos: 15.5,-26.5 - parent: 30 - type: Transform - - open: False - type: GasValve - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9040 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-32.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9041 - type: GasPressurePump - components: - - name: mix to distro - type: MetaData - - rot: 3.141592653589793 rad - pos: 17.5,-25.5 - parent: 30 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9042 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-32.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9043 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-32.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9044 - type: GasValve - components: - - rot: 3.141592653589793 rad - pos: 17.5,-26.5 - parent: 30 - type: Transform - - open: False - type: GasValve - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9045 - type: GasThermoMachineFreezer - components: - - pos: 9.5,-27.5 - parent: 30 - type: Transform -- uid: 9046 - type: GasPressurePump - components: - - name: mix to waste - type: MetaData - - rot: 3.141592653589793 rad - pos: 15.5,-25.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9047 - type: GasThermoMachineFreezer - components: - - pos: 9.5,-28.5 - parent: 30 - type: Transform -- uid: 9048 - type: GasThermoMachineHeater - components: - - pos: 9.5,-29.5 - parent: 30 - type: Transform -- uid: 9049 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-32.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9050 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-32.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9051 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-32.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9052 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-31.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9053 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-30.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9054 - type: GasPipeTJunction - components: - - pos: 16.5,-30.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9055 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 15.5,-30.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9056 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-29.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9057 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-28.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9058 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-27.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9059 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-29.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9060 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-28.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9061 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-27.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9062 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-29.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9063 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-28.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9064 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-27.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9065 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-29.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9066 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-28.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9067 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-27.5 - parent: 30 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9068 - type: BlastDoor - components: - - pos: 12.5,-38.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8570 - - port: Pressed - uid: 9038 - type: SignalReceiver -- uid: 9069 - type: WallReinforced - components: - - pos: 11.5,-38.5 - parent: 30 - type: Transform -- uid: 9070 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-37.5 - parent: 30 - type: Transform -- uid: 9071 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-36.5 - parent: 30 - type: Transform -- uid: 9072 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-35.5 - parent: 30 - type: Transform -- uid: 9073 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-35.5 - parent: 30 - type: Transform -- uid: 9074 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-35.5 - parent: 30 - type: Transform -- uid: 9075 - type: GasPipeStraight - components: - - pos: 6.5,-37.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9076 - type: ExtinguisherCabinetFilled - components: - - pos: 14.5,-30.5 - parent: 30 - type: Transform -- uid: 9077 - type: ExtinguisherCabinetFilled - components: - - pos: 14.5,-26.5 - parent: 30 - type: Transform -- uid: 9078 - type: FireAxeCabinetFilled - components: - - pos: 13.5,-30.5 - parent: 30 - type: Transform -- uid: 9079 - type: LockerAtmosphericsFilled - components: - - pos: 12.5,-29.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9080 - type: LockerAtmosphericsFilled - components: - - pos: 12.5,-28.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9081 - type: LockerAtmosphericsFilled - components: - - pos: 12.5,-27.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9082 - type: SignAtmos - components: - - pos: 8.5,-25.5 - parent: 30 - type: Transform -- uid: 9083 - type: SignAtmos - components: - - pos: 4.5,-32.5 - parent: 30 - type: Transform -- uid: 9084 - type: PlaqueAtmos - components: - - pos: 8.5,-30.5 - parent: 30 - type: Transform -- uid: 9085 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9086 - type: AtmosFixOxygenMarker - components: - - pos: 27.5,-24.5 - parent: 30 - type: Transform -- uid: 9087 - type: AtmosFixOxygenMarker - components: - - pos: 26.5,-24.5 - parent: 30 - type: Transform -- uid: 9088 - type: AtmosFixOxygenMarker - components: - - pos: 25.5,-24.5 - parent: 30 - type: Transform -- uid: 9089 - type: AtmosFixNitrogenMarker - components: - - pos: 27.5,-22.5 - parent: 30 - type: Transform -- uid: 9090 - type: AtmosFixNitrogenMarker - components: - - pos: 26.5,-22.5 - parent: 30 - type: Transform -- uid: 9091 - type: AtmosFixNitrogenMarker - components: - - pos: 25.5,-22.5 - parent: 30 - type: Transform -- uid: 9092 - type: ReinforcedWindow - components: - - pos: 23.5,-14.5 - parent: 30 - type: Transform -- uid: 9093 - type: WallReinforced - components: - - pos: 23.5,-15.5 - parent: 30 - type: Transform -- uid: 9094 - type: WallReinforced - components: - - pos: 23.5,-13.5 - parent: 30 - type: Transform -- uid: 9095 - type: OxygenCanister - components: - - pos: 20.5,-14.5 - parent: 30 - type: Transform -- uid: 9096 - type: OxygenCanister - components: - - pos: 20.5,-13.5 - parent: 30 - type: Transform -- uid: 9097 - type: WallReinforced - components: - - pos: 22.5,-12.5 - parent: 30 - type: Transform -- uid: 9098 - type: WallReinforced - components: - - pos: 21.5,-12.5 - parent: 30 - type: Transform -- uid: 9099 - type: WallReinforced - components: - - pos: 20.5,-12.5 - parent: 30 - type: Transform -- uid: 9100 - type: WallReinforced - components: - - pos: 19.5,-12.5 - parent: 30 - type: Transform -- uid: 9101 - type: WallReinforced - components: - - pos: 18.5,-12.5 - parent: 30 - type: Transform -- uid: 9102 - type: StorageCanister - components: - - pos: 14.5,-29.5 - parent: 30 - type: Transform -- uid: 9103 - type: StorageCanister - components: - - pos: 14.5,-28.5 - parent: 30 - type: Transform -- uid: 9104 - type: StorageCanister - components: - - pos: 14.5,-27.5 - parent: 30 - type: Transform -- uid: 9105 - type: Grille - components: - - pos: 24.5,-22.5 - parent: 30 - type: Transform -- uid: 9106 - type: Grille - components: - - pos: 24.5,-24.5 - parent: 30 - type: Transform -- uid: 9107 - type: Grille - components: - - pos: 24.5,-26.5 - parent: 30 - type: Transform -- uid: 9108 - type: Grille - components: - - pos: 24.5,-28.5 - parent: 30 - type: Transform -- uid: 9109 - type: Grille - components: - - pos: 24.5,-30.5 - parent: 30 - type: Transform -- uid: 9110 - type: Grille - components: - - pos: 24.5,-32.5 - parent: 30 - type: Transform -- uid: 9111 - type: Grille - components: - - pos: 24.5,-34.5 - parent: 30 - type: Transform -- uid: 9112 - type: AirlockAtmosphericsLocked - components: - - pos: 19.5,-20.5 - parent: 30 - type: Transform -- uid: 9113 - type: AirlockAtmosphericsLocked - components: - - pos: 20.5,-20.5 - parent: 30 - type: Transform -- uid: 9114 - type: OxygenCanister - components: - - pos: 21.5,-14.5 - parent: 30 - type: Transform -- uid: 9115 - type: CarbonDioxideCanister - components: - - pos: 18.5,-17.5 - parent: 30 - type: Transform -- uid: 9116 - type: CarbonDioxideCanister - components: - - pos: 19.5,-17.5 - parent: 30 - type: Transform -- uid: 9117 - type: OxygenCanister - components: - - pos: 21.5,-13.5 - parent: 30 - type: Transform -- uid: 9118 - type: NitrogenCanister - components: - - pos: 21.5,-19.5 - parent: 30 - type: Transform -- uid: 9119 - type: PortableScrubber - components: - - pos: 20.5,-16.5 - parent: 30 - type: Transform -- uid: 9120 - type: WallReinforced - components: - - pos: -40.5,-7.5 - parent: 30 - type: Transform -- uid: 9121 - type: AtmosDeviceFanTiny - components: - - pos: 38.5,-5.5 - parent: 30 - type: Transform -- uid: 9122 - type: AtmosDeviceFanTiny - components: - - pos: 38.5,-3.5 - parent: 30 - type: Transform -- uid: 9123 - type: AtmosDeviceFanTiny - components: - - pos: -16.5,12.5 - parent: 30 - type: Transform -- uid: 9124 - type: AtmosDeviceFanTiny - components: - - pos: -19.5,17.5 - parent: 30 - type: Transform -- uid: 9125 - type: SignSmoking - components: - - pos: 21.5,-20.5 - parent: 30 - type: Transform -- uid: 9126 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-28.5 - parent: 30 - type: Transform -- uid: 9127 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-27.5 - parent: 30 - type: Transform -- uid: 9128 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 30 - type: Transform -- uid: 9129 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-36.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9130 - type: APCBasic - components: - - pos: 9.5,-30.5 - parent: 30 - type: Transform - - startingCharge: 12000 - type: Battery -- uid: 9131 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 21.5,-12.5 - parent: 30 - type: Transform -- uid: 9132 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 28.5,-20.5 - parent: 30 - type: Transform -- uid: 9133 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 28.5,-19.5 - parent: 30 - type: Transform -- uid: 9134 - type: WallReinforced - components: - - pos: 0.5,-36.5 - parent: 30 - type: Transform -- uid: 9135 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 26.5,-19.5 - parent: 30 - type: Transform -- uid: 9136 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 25.5,-19.5 - parent: 30 - type: Transform -- uid: 9137 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,-19.5 - parent: 30 - type: Transform -- uid: 9138 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 23.5,-19.5 - parent: 30 - type: Transform -- uid: 9139 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-35.5 - parent: 30 - type: Transform -- uid: 9140 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-34.5 - parent: 30 - type: Transform -- uid: 9141 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-33.5 - parent: 30 - type: Transform -- uid: 9142 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-32.5 - parent: 30 - type: Transform -- uid: 9143 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-31.5 - parent: 30 - type: Transform -- uid: 9144 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-30.5 - parent: 30 - type: Transform -- uid: 9145 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-29.5 - parent: 30 - type: Transform -- uid: 9146 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-28.5 - parent: 30 - type: Transform -- uid: 9147 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-27.5 - parent: 30 - type: Transform -- uid: 9148 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-26.5 - parent: 30 - type: Transform -- uid: 9149 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-25.5 - parent: 30 - type: Transform -- uid: 9150 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-24.5 - parent: 30 - type: Transform -- uid: 9151 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-23.5 - parent: 30 - type: Transform -- uid: 9152 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-22.5 - parent: 30 - type: Transform -- uid: 9153 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-21.5 - parent: 30 - type: Transform -- uid: 9154 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-20.5 - parent: 30 - type: Transform -- uid: 9155 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-19.5 - parent: 30 - type: Transform -- uid: 9156 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -1.5,-31.5 - parent: 30 - type: Transform -- uid: 9157 - type: AirlockChiefMedicalOfficerLocked - components: - - pos: -10.5,-16.5 - parent: 30 - type: Transform -- uid: 9158 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -3.5,-31.5 - parent: 30 - type: Transform -- uid: 9159 - type: WallReinforced - components: - - pos: -4.5,-29.5 - parent: 30 - type: Transform -- uid: 9160 - type: AirlockEngineeringLocked - components: - - pos: 1.5,-31.5 - parent: 30 - type: Transform -- uid: 9161 - type: FirelockGlass - components: - - pos: 14.5,13.5 - parent: 30 - type: Transform -- uid: 9162 - type: PottedPlantRandom - components: - - pos: -1.5,-30.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 9163 - type: AirlockSecurityGlassLocked - components: - - pos: -0.5,-33.5 - parent: 30 - type: Transform -- uid: 9165 - type: Grille - components: - - pos: -3.5,-31.5 - parent: 30 - type: Transform -- uid: 9166 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-34.5 - parent: 30 - type: Transform -- uid: 9167 - type: Grille - components: - - pos: -1.5,-31.5 - parent: 30 - type: Transform -- uid: 9168 - type: Table - components: - - pos: 0.5,-28.5 - parent: 30 - type: Transform -- uid: 9169 - type: Table - components: - - pos: -0.5,-28.5 - parent: 30 - type: Transform -- uid: 9170 - type: Table - components: - - pos: 1.5,-28.5 - parent: 30 - type: Transform -- uid: 9171 - type: Stool - components: - - pos: -0.5,-27.5 - parent: 30 - type: Transform -- uid: 9172 - type: Stool - components: - - pos: 0.5,-27.5 - parent: 30 - type: Transform -- uid: 9173 - type: Stool - components: - - pos: 1.5,-27.5 - parent: 30 - type: Transform -- uid: 9174 - type: ClothingHandsGlovesColorYellow - components: - - pos: 0.46605682,-28.476078 - parent: 30 - type: Transform -- uid: 9175 - type: Wrench - components: - - pos: 0.48168182,-28.382328 - parent: 30 - type: Transform -- uid: 9176 - type: KitchenMicrowave - components: - - pos: 1.5,-28.5 - parent: 30 - type: Transform -- uid: 9177 - type: DonkpocketBoxSpawner - components: - - pos: -0.5,-28.5 - parent: 30 - type: Transform -- uid: 9178 - type: AtmosFixFreezerMarker - components: - - pos: -20.5,14.5 - parent: 30 - type: Transform -- uid: 9179 - type: hydroponicsSoil - components: - - pos: 0.5,-25.5 - parent: 30 - type: Transform -- uid: 9180 - type: hydroponicsSoil - components: - - pos: 0.5,-23.5 - parent: 30 - type: Transform -- uid: 9181 - type: PosterContrabandAtmosiaDeclarationIndependence - components: - - pos: 13.5,-28.5 - parent: 30 - type: Transform -- uid: 9182 - type: ShuttersRadiationOpen - components: - - pos: -10.5,-42.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver -- uid: 9183 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-24.5 - parent: 30 - type: Transform -- uid: 9184 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-23.5 - parent: 30 - type: Transform -- uid: 9185 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-22.5 - parent: 30 - type: Transform -- uid: 9186 - type: ComputerAlert - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-28.5 - parent: 30 - type: Transform -- uid: 9187 - type: DisposalUnit - components: - - pos: 7.5,-29.5 - parent: 30 - type: Transform -- uid: 9188 - type: BlastDoorOpen - components: - - pos: 5.5,-21.5 - parent: 30 - type: Transform - - inputs: - Open: - - port: Left - uid: 11701 - - port: Right - uid: 11701 - Close: - - port: Middle - uid: 11701 - Toggle: [] - type: SignalReceiver -- uid: 9189 - type: BlastDoorOpen - components: - - pos: 6.5,-21.5 - parent: 30 - type: Transform - - inputs: - Open: - - port: Left - uid: 11701 - - port: Right - uid: 11701 - Close: - - port: Middle - uid: 11701 - Toggle: [] - type: SignalReceiver -- uid: 9190 - type: BlastDoorOpen - components: - - pos: 7.5,-21.5 - parent: 30 - type: Transform - - inputs: - Open: - - port: Left - uid: 11701 - - port: Right - uid: 11701 - Close: - - port: Middle - uid: 11701 - Toggle: [] - type: SignalReceiver -- uid: 9191 - type: SignDirectionalEng - components: - - pos: 14.5,-12.5 - parent: 30 - type: Transform -- uid: 9192 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: 14.501118,-12.251659 - parent: 30 - type: Transform -- uid: 9193 - type: SignEngineering - components: - - pos: 2.5,-31.5 - parent: 30 - type: Transform -- uid: 9194 - type: ReinforcedWindow - components: - - pos: 16.5,-20.5 - parent: 30 - type: Transform -- uid: 9195 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -0.5,-15.5 - parent: 30 - type: Transform -- uid: 9196 - type: Rack - components: - - pos: -0.5,-16.5 - parent: 30 - type: Transform -- uid: 9197 - type: MaintenanceToolSpawner - components: - - pos: -0.5,-16.5 - parent: 30 - type: Transform -- uid: 9198 - type: Rack - components: - - pos: -3.5,-16.5 - parent: 30 - type: Transform -- uid: 9199 - type: MaintenanceFluffSpawner - components: - - pos: -3.5,-16.5 - parent: 30 - type: Transform -- uid: 9200 - type: ClosetMaintenanceFilledRandom - components: - - pos: -3.5,-15.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9201 - type: Grille - components: - - pos: 47.5,11.5 - parent: 30 - type: Transform -- uid: 9202 - type: FirelockGlass - components: - - pos: -2.5,-13.5 - parent: 30 - type: Transform -- uid: 9203 - type: Catwalk - components: - - pos: -2.5,-12.5 - parent: 30 - type: Transform -- uid: 9204 - type: Catwalk - components: - - pos: -2.5,-11.5 - parent: 30 - type: Transform -- uid: 9205 - type: Catwalk - components: - - pos: -2.5,-10.5 - parent: 30 - type: Transform -- uid: 9206 - type: Catwalk - components: - - pos: -2.5,-9.5 - parent: 30 - type: Transform -- uid: 9207 - type: Catwalk - components: - - pos: -2.5,-8.5 - parent: 30 - type: Transform -- uid: 9208 - type: Catwalk - components: - - pos: -0.5,-14.5 - parent: 30 - type: Transform -- uid: 9209 - type: Catwalk - components: - - pos: -1.5,-14.5 - parent: 30 - type: Transform -- uid: 9210 - type: Catwalk - components: - - pos: -2.5,-14.5 - parent: 30 - type: Transform -- uid: 9211 - type: Catwalk - components: - - pos: -3.5,-14.5 - parent: 30 - type: Transform -- uid: 9212 - type: Catwalk - components: - - pos: -5.5,-14.5 - parent: 30 - type: Transform -- uid: 9213 - type: Catwalk - components: - - pos: -5.5,-15.5 - parent: 30 - type: Transform -- uid: 9214 - type: Catwalk - components: - - pos: -5.5,-16.5 - parent: 30 - type: Transform -- uid: 9215 - type: Catwalk - components: - - pos: -5.5,-17.5 - parent: 30 - type: Transform -- uid: 9216 - type: Catwalk - components: - - pos: -5.5,-18.5 - parent: 30 - type: Transform -- uid: 9217 - type: Catwalk - components: - - pos: -5.5,-19.5 - parent: 30 - type: Transform -- uid: 9218 - type: Catwalk - components: - - pos: -5.5,-20.5 - parent: 30 - type: Transform -- uid: 9219 - type: Catwalk - components: - - pos: -5.5,-21.5 - parent: 30 - type: Transform -- uid: 9220 - type: FirelockGlass - components: - - pos: -5.5,-23.5 - parent: 30 - type: Transform -- uid: 9221 - type: Catwalk - components: - - pos: -5.5,-22.5 - parent: 30 - type: Transform -- uid: 9222 - type: Girder - components: - - pos: -3.5,-6.5 - parent: 30 - type: Transform -- uid: 9223 - type: PosterLegitSafetyEyeProtection - components: - - pos: -3.5,-17.5 - parent: 30 - type: Transform -- uid: 9224 - type: PosterLegitHereForYourSafety - components: - - pos: -1.5,-17.5 - parent: 30 - type: Transform -- uid: 9225 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-14.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9226 - type: ClosetFireFilled - components: - - pos: -22.5,-24.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9227 - type: ClosetEmergencyFilledRandom - components: - - pos: -23.5,-24.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9228 - type: Chair - components: - - pos: -21.5,-24.5 - parent: 30 - type: Transform -- uid: 9229 - type: WeldingFuelTankFull - components: - - pos: -13.5,-24.5 - parent: 30 - type: Transform -- uid: 9230 - type: Wrench - components: - - pos: -14.474685,-24.503119 - parent: 30 - type: Transform -- uid: 9231 - type: Rack - components: - - pos: -15.5,-24.5 - parent: 30 - type: Transform -- uid: 9232 - type: ClothingHeadHatWelding - components: - - pos: -15.49031,-24.471869 - parent: 30 - type: Transform -- uid: 9233 - type: ClothingOuterCoatJensen - components: - - pos: -15.474685,-24.424994 - parent: 30 - type: Transform -- uid: 9234 - type: DisposalUnit - components: - - pos: 3.5,-40.5 - parent: 30 - type: Transform -- uid: 9235 - type: WeldingFuelTankFull - components: - - pos: 9.5,-25.5 - parent: 30 - type: Transform -- uid: 9236 - type: Table - components: - - pos: 13.5,-25.5 - parent: 30 - type: Transform -- uid: 9237 - type: Rack - components: - - pos: 9.5,-22.5 - parent: 30 - type: Transform -- uid: 9238 - type: ShuttersNormalOpen - components: - - pos: -4.5,12.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20446 - type: SignalReceiver -- uid: 9239 - type: ShuttersNormalOpen - components: - - pos: -3.5,12.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20446 - type: SignalReceiver -- uid: 9240 - type: ClothingMaskGasAtmos - components: - - pos: 9.672155,-22.583101 - parent: 30 - type: Transform -- uid: 9241 - type: ClothingMaskGasAtmos - components: - - pos: 9.578405,-22.536226 - parent: 30 - type: Transform -- uid: 9242 - type: ClosetFireFilled - components: - - pos: 10.5,-22.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9243 - type: ClosetFireFilled - components: - - pos: 11.5,-22.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9244 - type: Table - components: - - pos: 14.5,-25.5 - parent: 30 - type: Transform -- uid: 9245 - type: Table - components: - - pos: 12.5,-25.5 - parent: 30 - type: Transform -- uid: 9246 - type: SheetSteel - components: - - pos: 14.418909,-25.502102 - parent: 30 - type: Transform -- uid: 9247 - type: PartRodMetal - components: - - pos: 13.637659,-25.423977 - parent: 30 - type: Transform -- uid: 9248 - type: InflatableWallStack - components: - - pos: 12.575159,-25.455227 - parent: 30 - type: Transform -- uid: 9249 - type: InflatableDoorStack - components: - - pos: 12.997034,-25.455227 - parent: 30 - type: Transform -- uid: 9250 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-11.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9251 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-11.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9252 - type: Table - components: - - pos: 19.5,-11.5 - parent: 30 - type: Transform -- uid: 9253 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-15.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Storage - type: SurveillanceCamera -- uid: 9254 - type: AirlockExternalAtmosphericsLocked - components: - - pos: 26.5,-18.5 - parent: 30 - type: Transform -- uid: 9255 - type: WallReinforced - components: - - pos: 23.5,-17.5 - parent: 30 - type: Transform -- uid: 9256 - type: WallReinforced - components: - - pos: 24.5,-17.5 - parent: 30 - type: Transform -- uid: 9257 - type: WallReinforced - components: - - pos: 25.5,-17.5 - parent: 30 - type: Transform -- uid: 9258 - type: WallReinforced - components: - - pos: 26.5,-17.5 - parent: 30 - type: Transform -- uid: 9259 - type: APCSuperCapacity - components: - - pos: 23.5,-0.5 - parent: 30 - type: Transform -- uid: 9260 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-4.5 - parent: 30 - type: Transform -- uid: 9261 - type: GasPipeStraight - components: - - pos: 7.5,-21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9262 - type: GasPipeBend - components: - - pos: 21.5,-16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9263 - type: Catwalk - components: - - pos: 25.5,-18.5 - parent: 30 - type: Transform -- uid: 9264 - type: SignFire - components: - - pos: 23.5,-15.5 - parent: 30 - type: Transform -- uid: 9265 - type: WallReinforced - components: - - pos: -0.5,-36.5 - parent: 30 - type: Transform -- uid: 9266 - type: WallReinforced - components: - - pos: -0.5,-35.5 - parent: 30 - type: Transform -- uid: 9267 - type: WallReinforced - components: - - pos: -4.5,-35.5 - parent: 30 - type: Transform -- uid: 9268 - type: WallReinforced - components: - - pos: -4.5,-36.5 - parent: 30 - type: Transform -- uid: 9269 - type: WallReinforced - components: - - pos: 2.5,-36.5 - parent: 30 - type: Transform -- uid: 9270 - type: WallReinforced - components: - - pos: 3.5,-36.5 - parent: 30 - type: Transform -- uid: 9271 - type: AirlockEngineeringLocked - components: - - pos: 1.5,-36.5 - parent: 30 - type: Transform -- uid: 9272 - type: APCBasic - components: - - pos: 0.5,-31.5 - parent: 30 - type: Transform -- uid: 9273 - type: WallSolid - components: - - pos: 3.5,-35.5 - parent: 30 - type: Transform -- uid: 9274 - type: WallReinforced - components: - - pos: -4.5,-34.5 - parent: 30 - type: Transform -- uid: 9275 - type: WallReinforced - components: - - pos: -4.5,-33.5 - parent: 30 - type: Transform -- uid: 9276 - type: WallReinforced - components: - - pos: -4.5,-32.5 - parent: 30 - type: Transform -- uid: 9277 - type: ReinforcedWindow - components: - - pos: -1.5,-36.5 - parent: 30 - type: Transform -- uid: 9278 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: -1.5,-37.5 - parent: 30 - type: Transform -- uid: 9279 - type: ReinforcedWindow - components: - - pos: -3.5,-36.5 - parent: 30 - type: Transform -- uid: 9280 - type: ReinforcedWindow - components: - - pos: -0.5,-34.5 - parent: 30 - type: Transform -- uid: 9281 - type: ReinforcedWindow - components: - - pos: -0.5,-32.5 - parent: 30 - type: Transform -- uid: 9282 - type: Grille - components: - - pos: -3.5,-36.5 - parent: 30 - type: Transform -- uid: 9283 - type: AirlockSecurityGlassLocked - components: - - pos: -2.5,-31.5 - parent: 30 - type: Transform -- uid: 9284 - type: Grille - components: - - pos: -1.5,-36.5 - parent: 30 - type: Transform -- uid: 9285 - type: Grille - components: - - pos: -0.5,-34.5 - parent: 30 - type: Transform -- uid: 9286 - type: Grille - components: - - pos: -0.5,-32.5 - parent: 30 - type: Transform -- uid: 9287 - type: AirlockSecurityGlassLocked - components: - - pos: -2.5,-36.5 - parent: 30 - type: Transform -- uid: 9288 - type: WallSolid - components: - - pos: -4.5,-37.5 - parent: 30 - type: Transform -- uid: 9289 - type: WallSolid - components: - - pos: -0.5,-37.5 - parent: 30 - type: Transform -- uid: 9290 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -52.5,65.5 - parent: 30 - type: Transform -- uid: 9291 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-37.5 - parent: 30 - type: Transform -- uid: 9292 - type: WeaponShotgunKammerer - components: - - pos: -41.445473,54.20003 - parent: 30 - type: Transform -- uid: 9293 - type: CableHV - components: - - pos: 3.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9294 - type: WallReinforced - components: - - pos: 4.5,-43.5 - parent: 30 - type: Transform -- uid: 9295 - type: WallReinforced - components: - - pos: 4.5,-42.5 - parent: 30 - type: Transform -- uid: 9296 - type: WallReinforced - components: - - pos: 4.5,-41.5 - parent: 30 - type: Transform -- uid: 9297 - type: WallReinforced - components: - - pos: 4.5,-40.5 - parent: 30 - type: Transform -- uid: 9298 - type: WallReinforced - components: - - pos: 4.5,-39.5 - parent: 30 - type: Transform -- uid: 9299 - type: WallReinforced - components: - - pos: 4.5,-38.5 - parent: 30 - type: Transform -- uid: 9300 - type: FirelockGlass - components: - - pos: 11.5,-30.5 - parent: 30 - type: Transform -- uid: 9301 - type: FirelockGlass - components: - - pos: 10.5,-30.5 - parent: 30 - type: Transform -- uid: 9302 - type: FirelockGlass - components: - - pos: 10.5,-26.5 - parent: 30 - type: Transform -- uid: 9303 - type: FirelockGlass - components: - - pos: 11.5,-26.5 - parent: 30 - type: Transform -- uid: 9304 - type: FirelockGlass - components: - - pos: 1.5,-35.5 - parent: 30 - type: Transform -- uid: 9305 - type: FirelockGlass - components: - - pos: 0.5,-35.5 - parent: 30 - type: Transform -- uid: 9306 - type: FirelockGlass - components: - - pos: 2.5,-35.5 - parent: 30 - type: Transform -- uid: 9307 - type: FirelockGlass - components: - - pos: 3.5,-34.5 - parent: 30 - type: Transform -- uid: 9308 - type: FirelockGlass - components: - - pos: 3.5,-33.5 - parent: 30 - type: Transform -- uid: 9309 - type: FirelockGlass - components: - - pos: 3.5,-32.5 - parent: 30 - type: Transform -- uid: 9310 - type: ExtinguisherCabinetFilled - components: - - pos: 15.5,-13.5 - parent: 30 - type: Transform -- uid: 9311 - type: PottedPlantBioluminscent - components: - - pos: 14.5,-13.5 - parent: 30 - type: Transform -- uid: 9312 - type: Table - components: - - pos: 14.5,-15.5 - parent: 30 - type: Transform -- uid: 9313 - type: ComfyChair - components: - - pos: 14.5,-14.5 - parent: 30 - type: Transform -- uid: 9314 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 14.5,-16.5 - parent: 30 - type: Transform -- uid: 9315 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,-19.5 - parent: 30 - type: Transform -- uid: 9316 - type: DisposalUnit - components: - - pos: 14.5,-18.5 - parent: 30 - type: Transform -- uid: 9317 - type: PosterContrabandRIPBadger - components: - - pos: 15.5,-15.5 - parent: 30 - type: Transform -- uid: 9318 - type: BoxFolderBlack - components: - - pos: 14.510279,-15.438093 - parent: 30 - type: Transform -- uid: 9319 - type: Pen - components: - - pos: 14.729029,-15.188093 - parent: 30 - type: Transform -- uid: 9320 - type: WallReinforced - components: - - pos: -5.5,-37.5 - parent: 30 - type: Transform -- uid: 9321 - type: ReinforcedWindow - components: - - pos: -6.5,-37.5 - parent: 30 - type: Transform -- uid: 9322 - type: ReinforcedWindow - components: - - pos: -8.5,-37.5 - parent: 30 - type: Transform -- uid: 9323 - type: SignSecureMed - components: - - pos: 2.5,-36.5 - parent: 30 - type: Transform -- uid: 9324 - type: WallSolid - components: - - pos: -10.5,-37.5 - parent: 30 - type: Transform -- uid: 9325 - type: WallReinforced - components: - - pos: -14.5,-37.5 - parent: 30 - type: Transform -- uid: 9326 - type: TableReinforced - components: - - pos: -18.5,-35.5 - parent: 30 - type: Transform -- uid: 9327 - type: WallReinforced - components: - - pos: -19.5,-33.5 - parent: 30 - type: Transform -- uid: 9328 - type: TableReinforced - components: - - pos: -15.5,-34.5 - parent: 30 - type: Transform -- uid: 9329 - type: BedsheetCE - components: - - flags: InContainer - type: MetaData - - parent: 9604 - type: Transform - - canCollide: False - type: Physics -- uid: 9330 - type: WallReinforced - components: - - pos: -20.5,-37.5 - parent: 30 - type: Transform -- uid: 9331 - type: WallReinforced - components: - - pos: -20.5,-36.5 - parent: 30 - type: Transform -- uid: 9332 - type: WallReinforced - components: - - pos: -20.5,-35.5 - parent: 30 - type: Transform -- uid: 9333 - type: WallReinforced - components: - - pos: -14.5,-36.5 - parent: 30 - type: Transform -- uid: 9334 - type: WallReinforced - components: - - pos: -14.5,-35.5 - parent: 30 - type: Transform -- uid: 9335 - type: WallReinforced - components: - - pos: -14.5,-34.5 - parent: 30 - type: Transform -- uid: 9336 - type: WallReinforced - components: - - pos: -20.5,-34.5 - parent: 30 - type: Transform -- uid: 9337 - type: WallReinforced - components: - - pos: -20.5,-33.5 - parent: 30 - type: Transform -- uid: 9338 - type: WallReinforced - components: - - pos: -20.5,-32.5 - parent: 30 - type: Transform -- uid: 9339 - type: ShuttersRadiationOpen - components: - - pos: -14.5,-43.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver -- uid: 9340 - type: WallReinforced - components: - - pos: -18.5,-32.5 - parent: 30 - type: Transform -- uid: 9341 - type: CrateEngineeringAMEShielding - components: - - pos: -17.5,-32.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9342 - type: ShuttersRadiationOpen - components: - - pos: -7.5,-61.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver -- uid: 9343 - type: ShuttersRadiationOpen - components: - - pos: -8.5,-61.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver -- uid: 9344 - type: WallReinforced - components: - - pos: -14.5,-32.5 - parent: 30 - type: Transform -- uid: 9345 - type: WallReinforced - components: - - pos: -14.5,-33.5 - parent: 30 - type: Transform -- uid: 9346 - type: WallReinforced - components: - - pos: -10.5,-36.5 - parent: 30 - type: Transform -- uid: 9347 - type: WallReinforced - components: - - pos: -11.5,-36.5 - parent: 30 - type: Transform -- uid: 9348 - type: WallSolid - components: - - pos: -14.5,-28.5 - parent: 30 - type: Transform -- uid: 9349 - type: WallReinforced - components: - - pos: -13.5,-36.5 - parent: 30 - type: Transform -- uid: 9350 - type: WallReinforced - components: - - pos: -10.5,-35.5 - parent: 30 - type: Transform -- uid: 9351 - type: WallReinforced - components: - - pos: -10.5,-34.5 - parent: 30 - type: Transform -- uid: 9352 - type: WallReinforced - components: - - pos: -10.5,-32.5 - parent: 30 - type: Transform -- uid: 9353 - type: AirlockEngineeringGlassLocked - components: - - name: SMES bank - type: MetaData - - pos: -10.5,-33.5 - parent: 30 - type: Transform -- uid: 9354 - type: WallReinforced - components: - - pos: -9.5,-32.5 - parent: 30 - type: Transform -- uid: 9355 - type: WallReinforced - components: - - pos: -8.5,-32.5 - parent: 30 - type: Transform -- uid: 9356 - type: WallReinforced - components: - - pos: -7.5,-32.5 - parent: 30 - type: Transform -- uid: 9357 - type: WallReinforced - components: - - pos: -6.5,-32.5 - parent: 30 - type: Transform -- uid: 9358 - type: WallReinforced - components: - - pos: -5.5,-32.5 - parent: 30 - type: Transform -- uid: 9359 - type: TableReinforced - components: - - pos: -15.5,-35.5 - parent: 30 - type: Transform -- uid: 9360 - type: WallReinforced - components: - - pos: -16.5,-33.5 - parent: 30 - type: Transform -- uid: 9361 - type: MagazineRifleRubber - components: - - pos: -41.564682,56.406067 - parent: 30 - type: Transform -- uid: 9362 - type: Grille - components: - - pos: -8.5,-37.5 - parent: 30 - type: Transform -- uid: 9363 - type: SignElectricalMed - components: - - pos: -5.5,-37.5 - parent: 30 - type: Transform -- uid: 9364 - type: WallReinforced - components: - - pos: -9.5,-37.5 - parent: 30 - type: Transform -- uid: 9365 - type: Grille - components: - - pos: -6.5,-37.5 - parent: 30 - type: Transform -- uid: 9366 - type: WallReinforced - components: - - pos: -20.5,-38.5 - parent: 30 - type: Transform -- uid: 9367 - type: WallSolid - components: - - pos: -20.5,-39.5 - parent: 30 - type: Transform -- uid: 9368 - type: Window - components: - - pos: -20.5,-40.5 - parent: 30 - type: Transform -- uid: 9369 - type: Window - components: - - pos: -20.5,-43.5 - parent: 30 - type: Transform -- uid: 9370 - type: WallSolid - components: - - pos: -20.5,-44.5 - parent: 30 - type: Transform -- uid: 9371 - type: WallReinforced - components: - - pos: -20.5,-45.5 - parent: 30 - type: Transform -- uid: 9372 - type: WallReinforced - components: - - pos: -21.5,-45.5 - parent: 30 - type: Transform -- uid: 9373 - type: WallReinforced - components: - - pos: -22.5,-45.5 - parent: 30 - type: Transform -- uid: 9374 - type: WallReinforced - components: - - pos: -21.5,-38.5 - parent: 30 - type: Transform -- uid: 9375 - type: WallReinforced - components: - - pos: -25.5,-38.5 - parent: 30 - type: Transform -- uid: 9376 - type: WallReinforced - components: - - pos: -22.5,-38.5 - parent: 30 - type: Transform -- uid: 9377 - type: WallReinforced - components: - - pos: -23.5,-38.5 - parent: 30 - type: Transform -- uid: 9378 - type: WallReinforced - components: - - pos: -24.5,-38.5 - parent: 30 - type: Transform -- uid: 9379 - type: WallReinforced - components: - - pos: -26.5,-38.5 - parent: 30 - type: Transform -- uid: 9380 - type: WallReinforced - components: - - pos: -26.5,-39.5 - parent: 30 - type: Transform -- uid: 9381 - type: WallReinforced - components: - - pos: -26.5,-40.5 - parent: 30 - type: Transform -- uid: 9382 - type: AirlockMaintEngiLocked - components: - - pos: -26.5,-41.5 - parent: 30 - type: Transform -- uid: 9383 - type: WallReinforced - components: - - pos: -26.5,-42.5 - parent: 30 - type: Transform -- uid: 9384 - type: WallReinforced - components: - - pos: -26.5,-44.5 - parent: 30 - type: Transform -- uid: 9385 - type: WallReinforced - components: - - pos: -26.5,-43.5 - parent: 30 - type: Transform -- uid: 9386 - type: WallReinforced - components: - - pos: -26.5,-45.5 - parent: 30 - type: Transform -- uid: 9387 - type: WallReinforced - components: - - pos: -25.5,-45.5 - parent: 30 - type: Transform -- uid: 9388 - type: WallReinforced - components: - - pos: -26.5,-46.5 - parent: 30 - type: Transform -- uid: 9389 - type: GeneratorUranium - components: - - pos: -25.5,-47.5 - parent: 30 - type: Transform -- uid: 9390 - type: WallReinforced - components: - - pos: -26.5,-48.5 - parent: 30 - type: Transform -- uid: 9391 - type: WallReinforced - components: - - pos: -26.5,-49.5 - parent: 30 - type: Transform -- uid: 9392 - type: WallReinforced - components: - - pos: -26.5,-50.5 - parent: 30 - type: Transform -- uid: 9393 - type: WallReinforced - components: - - pos: -26.5,-51.5 - parent: 30 - type: Transform -- uid: 9394 - type: WallReinforced - components: - - pos: -25.5,-51.5 - parent: 30 - type: Transform -- uid: 9395 - type: WallReinforced - components: - - pos: -24.5,-51.5 - parent: 30 - type: Transform -- uid: 9396 - type: WallReinforced - components: - - pos: -23.5,-51.5 - parent: 30 - type: Transform -- uid: 9397 - type: WallReinforced - components: - - pos: -22.5,-51.5 - parent: 30 - type: Transform -- uid: 9398 - type: WallReinforced - components: - - pos: -21.5,-51.5 - parent: 30 - type: Transform -- uid: 9399 - type: WallReinforced - components: - - pos: -21.5,-50.5 - parent: 30 - type: Transform -- uid: 9400 - type: WallReinforced - components: - - pos: -21.5,-49.5 - parent: 30 - type: Transform -- uid: 9401 - type: WallReinforced - components: - - pos: -21.5,-48.5 - parent: 30 - type: Transform -- uid: 9402 - type: WallReinforced - components: - - pos: -21.5,-47.5 - parent: 30 - type: Transform -- uid: 9403 - type: WallReinforced - components: - - pos: -21.5,-46.5 - parent: 30 - type: Transform -- uid: 9404 - type: BlastDoor - components: - - pos: -24.5,-45.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10141 - - port: Pressed - uid: 2122 - type: SignalReceiver -- uid: 9405 - type: BlastDoor - components: - - pos: -23.5,-45.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10141 - - port: Pressed - uid: 2122 - type: SignalReceiver -- uid: 9406 - type: SubstationBasic - components: - - name: West Engineering Substation - type: MetaData - - pos: -22.5,-46.5 - parent: 30 - type: Transform -- uid: 9407 - type: SingularityGenerator - components: - - pos: -22.5,-48.5 - parent: 30 - type: Transform -- uid: 9408 - type: GeneratorPlasma - components: - - pos: -25.5,-46.5 - parent: 30 - type: Transform -- uid: 9409 - type: Emitter - components: - - pos: -25.5,-50.5 - parent: 30 - type: Transform -- uid: 9410 - type: Emitter - components: - - pos: -24.5,-50.5 - parent: 30 - type: Transform -- uid: 9411 - type: Emitter - components: - - pos: -24.5,-49.5 - parent: 30 - type: Transform -- uid: 9412 - type: Emitter - components: - - pos: -25.5,-49.5 - parent: 30 - type: Transform -- uid: 9413 - type: ContainmentFieldGenerator - components: - - pos: -23.5,-49.5 - parent: 30 - type: Transform -- uid: 9414 - type: ContainmentFieldGenerator - components: - - pos: -23.5,-50.5 - parent: 30 - type: Transform -- uid: 9415 - type: ContainmentFieldGenerator - components: - - pos: -22.5,-50.5 - parent: 30 - type: Transform -- uid: 9416 - type: ContainmentFieldGenerator - components: - - pos: -22.5,-49.5 - parent: 30 - type: Transform -- uid: 9417 - type: Rack - components: - - pos: -22.5,-47.5 - parent: 30 - type: Transform -- uid: 9418 - type: SheetPlasma - components: - - pos: -22.465946,-47.515945 - parent: 30 - type: Transform -- uid: 9419 - type: SheetGlass - components: - - pos: -22.481571,-47.56282 - parent: 30 - type: Transform -- uid: 9420 - type: PartRodMetal - components: - - pos: -22.434696,-47.53157 - parent: 30 - type: Transform -- uid: 9421 - type: HandheldGPSBasic - components: - - pos: -22.512821,-47.59407 - parent: 30 - type: Transform -- uid: 9422 - type: ShuttersNormalOpen - components: - - pos: -15.5,-11.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22282 - type: SignalReceiver -- uid: 9423 - type: WallReinforced - components: - - pos: -26.5,-47.5 - parent: 30 - type: Transform -- uid: 9424 - type: Grille - components: - - pos: -20.5,-43.5 - parent: 30 - type: Transform -- uid: 9425 - type: Grille - components: - - pos: -20.5,-40.5 - parent: 30 - type: Transform -- uid: 9426 - type: AirlockEngineeringLocked - components: - - pos: -20.5,-41.5 - parent: 30 - type: Transform -- uid: 9427 - type: OxygenCanister - components: - - pos: -13.5,-37.5 - parent: 30 - type: Transform -- uid: 9428 - type: DisposalUnit - components: - - pos: -21.5,-44.5 - parent: 30 - type: Transform -- uid: 9429 - type: LockerEngineerFilled - components: - - pos: -25.5,-43.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9430 - type: Table - components: - - pos: -24.5,-39.5 - parent: 30 - type: Transform -- uid: 9431 - type: Table - components: - - pos: -23.5,-39.5 - parent: 30 - type: Transform -- uid: 9432 - type: VendingMachineEngiDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,-39.5 - parent: 30 - type: Transform -- uid: 9433 - type: LockerEngineerFilled - components: - - pos: -25.5,-44.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9434 - type: ExtinguisherCabinetFilled - components: - - pos: -26.5,-42.5 - parent: 30 - type: Transform -- uid: 9435 - type: LockerEngineerFilled - components: - - pos: -22.5,-39.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9436 - type: LockerEngineerFilled - components: - - pos: -21.5,-39.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9437 - type: ClothingEyesGlassesMeson - components: - - pos: -23.481958,-39.312622 - parent: 30 - type: Transform -- uid: 9438 - type: ClothingEyesGlassesMeson - components: - - pos: -23.481958,-39.468872 - parent: 30 - type: Transform -- uid: 9439 - type: Rack - components: - - pos: 5.5,-23.5 - parent: 30 - type: Transform -- uid: 9440 - type: ClothingEyesGlassesMeson - components: - - pos: 5.538602,-23.326946 - parent: 30 - type: Transform -- uid: 9441 - type: ClothingEyesGlassesThermal - components: - - pos: 5.522977,-23.530071 - parent: 30 - type: Transform -- uid: 9442 - type: Table - components: - - pos: 5.5,-26.5 - parent: 30 - type: Transform -- uid: 9443 - type: GasAnalyzer - components: - - pos: 5.410018,-23.577772 - parent: 30 - type: Transform -- uid: 9444 - type: ClothingHandsGlovesColorYellow - components: - - pos: -24.364544,-39.42136 - parent: 30 - type: Transform -- uid: 9445 - type: FlashlightLantern - components: - - pos: -23.99604,-39.42414 - parent: 30 - type: Transform -- uid: 9446 - type: ChairOfficeDark - components: - - pos: -23.5,-40.5 - parent: 30 - type: Transform -- uid: 9447 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-42.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9448 - type: SignRadiationMed - components: - - pos: -22.5,-45.5 - parent: 30 - type: Transform -- uid: 9449 - type: SignElectricalMed - components: - - pos: -25.5,-45.5 - parent: 30 - type: Transform -- uid: 9450 - type: WallSolid - components: - - pos: -14.5,-30.5 - parent: 30 - type: Transform -- uid: 9451 - type: WallSolid - components: - - pos: -14.5,-31.5 - parent: 30 - type: Transform -- uid: 9452 - type: WallReinforced - components: - - pos: -14.5,-27.5 - parent: 30 - type: Transform -- uid: 9453 - type: WallReinforced - components: - - pos: -14.5,-26.5 - parent: 30 - type: Transform -- uid: 9454 - type: WallReinforced - components: - - pos: -13.5,-26.5 - parent: 30 - type: Transform -- uid: 9455 - type: WallReinforced - components: - - pos: -5.5,-26.5 - parent: 30 - type: Transform -- uid: 9456 - type: WallReinforced - components: - - pos: -6.5,-26.5 - parent: 30 - type: Transform -- uid: 9457 - type: WallReinforced - components: - - pos: -7.5,-26.5 - parent: 30 - type: Transform -- uid: 9458 - type: WallReinforced - components: - - pos: -8.5,-26.5 - parent: 30 - type: Transform -- uid: 9459 - type: WallReinforced - components: - - pos: -9.5,-26.5 - parent: 30 - type: Transform -- uid: 9460 - type: WallReinforced - components: - - pos: -10.5,-26.5 - parent: 30 - type: Transform -- uid: 9461 - type: WallReinforced - components: - - pos: -11.5,-26.5 - parent: 30 - type: Transform -- uid: 9462 - type: AirlockMaintEngiLocked - components: - - pos: -12.5,-26.5 - parent: 30 - type: Transform -- uid: 9463 - type: AirlockEngineeringGlassLocked - components: - - name: AME room - type: MetaData - - pos: -12.5,-36.5 - parent: 30 - type: Transform -- uid: 9464 - type: SignElectricalMed - components: - - pos: -4.5,-28.5 - parent: 30 - type: Transform -- uid: 9465 - type: SignElectricalMed - components: - - pos: -11.5,-36.5 - parent: 30 - type: Transform -- uid: 9466 - type: WallReinforced - components: - - pos: -15.5,-27.5 - parent: 30 - type: Transform -- uid: 9467 - type: WallReinforced - components: - - pos: -16.5,-27.5 - parent: 30 - type: Transform -- uid: 9468 - type: WallReinforced - components: - - pos: -17.5,-27.5 - parent: 30 - type: Transform -- uid: 9469 - type: WallReinforced - components: - - pos: -18.5,-27.5 - parent: 30 - type: Transform -- uid: 9470 - type: WallReinforced - components: - - pos: -18.5,-28.5 - parent: 30 - type: Transform -- uid: 9471 - type: WallReinforced - components: - - pos: -18.5,-29.5 - parent: 30 - type: Transform -- uid: 9472 - type: WallReinforced - components: - - pos: -18.5,-30.5 - parent: 30 - type: Transform -- uid: 9473 - type: WallReinforced - components: - - pos: -18.5,-31.5 - parent: 30 - type: Transform -- uid: 9474 - type: AirlockEngineeringLocked - components: - - pos: -14.5,-29.5 - parent: 30 - type: Transform -- uid: 9475 - type: CrateEngineeringAMEJar - components: - - pos: -15.5,-28.5 - parent: 30 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9476 - type: AMEController - components: - - pos: -11.5,-27.5 - parent: 30 - type: Transform -- uid: 9477 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-40.5 - parent: 30 - type: Transform - - devices: - - 9952 - - 11153 - - 11094 - type: DeviceList -- uid: 9478 - type: CrateEngineeringAMEShielding - components: - - pos: -16.5,-32.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9479 - type: Table - components: - - pos: -17.5,-29.5 - parent: 30 - type: Transform -- uid: 9480 - type: Table - components: - - pos: -17.5,-30.5 - parent: 30 - type: Transform -- uid: 9481 - type: Table - components: - - pos: -17.5,-28.5 - parent: 30 - type: Transform -- uid: 9482 - type: Table - components: - - pos: -17.5,-31.5 - parent: 30 - type: Transform -- uid: 9483 - type: Wrench - components: - - pos: -17.403442,-29.451271 - parent: 30 - type: Transform -- uid: 9484 - type: CableHV - components: - - pos: -8.5,-33.5 - parent: 30 - type: Transform -- uid: 9485 - type: CableHV - components: - - pos: -7.5,-33.5 - parent: 30 - type: Transform -- uid: 9486 - type: CableHV - components: - - pos: -6.5,-33.5 - parent: 30 - type: Transform -- uid: 9487 - type: CableTerminal - components: - - pos: -6.5,-33.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 9488 - type: CableTerminal - components: - - pos: -8.5,-33.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 9489 - type: CableTerminal - components: - - pos: -7.5,-33.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 9490 - type: CableHV - components: - - pos: -8.5,-35.5 - parent: 30 - type: Transform -- uid: 9491 - type: CableHV - components: - - pos: -7.5,-35.5 - parent: 30 - type: Transform -- uid: 9492 - type: CableHV - components: - - pos: -6.5,-35.5 - parent: 30 - type: Transform -- uid: 9493 - type: CableHV - components: - - pos: -8.5,-34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9494 - type: CableHV - components: - - pos: -6.5,-34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9495 - type: CableHV - components: - - pos: -7.5,-34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9496 - type: SMESBasic - components: - - pos: -6.5,-34.5 - parent: 30 - type: Transform -- uid: 9497 - type: SMESBasic - components: - - pos: -7.5,-34.5 - parent: 30 - type: Transform -- uid: 9498 - type: SMESBasic - components: - - pos: -8.5,-34.5 - parent: 30 - type: Transform -- uid: 9499 - type: CableHV - components: - - pos: -9.5,-33.5 - parent: 30 - type: Transform -- uid: 9500 - type: CableHV - components: - - pos: -7.5,-36.5 - parent: 30 - type: Transform -- uid: 9501 - type: CableHV - components: - - pos: -7.5,-37.5 - parent: 30 - type: Transform -- uid: 9502 - type: CableHV - components: - - pos: -7.5,-38.5 - parent: 30 - type: Transform -- uid: 9503 - type: CableHV - components: - - pos: -6.5,-38.5 - parent: 30 - type: Transform -- uid: 9504 - type: CableHV - components: - - pos: -5.5,-38.5 - parent: 30 - type: Transform -- uid: 9505 - type: CableHV - components: - - pos: -4.5,-38.5 - parent: 30 - type: Transform -- uid: 9506 - type: CableHV - components: - - pos: -3.5,-38.5 - parent: 30 - type: Transform -- uid: 9507 - type: CableHV - components: - - pos: -10.5,-33.5 - parent: 30 - type: Transform -- uid: 9508 - type: CableHV - components: - - pos: -11.5,-33.5 - parent: 30 - type: Transform -- uid: 9509 - type: CableHV - components: - - pos: -12.5,-33.5 - parent: 30 - type: Transform -- uid: 9510 - type: CableHV - components: - - pos: -12.5,-34.5 - parent: 30 - type: Transform -- uid: 9511 - type: CableHV - components: - - pos: -12.5,-35.5 - parent: 30 - type: Transform -- uid: 9512 - type: CableHV - components: - - pos: -12.5,-36.5 - parent: 30 - type: Transform -- uid: 9513 - type: CableHV - components: - - pos: -12.5,-37.5 - parent: 30 - type: Transform -- uid: 9514 - type: CableHV - components: - - pos: -12.5,-38.5 - parent: 30 - type: Transform -- uid: 9515 - type: CableHV - components: - - pos: -12.5,-40.5 - parent: 30 - type: Transform -- uid: 9516 - type: CableHV - components: - - pos: -12.5,-39.5 - parent: 30 - type: Transform -- uid: 9517 - type: CableHV - components: - - pos: -12.5,-32.5 - parent: 30 - type: Transform -- uid: 9518 - type: CableHV - components: - - pos: -12.5,-31.5 - parent: 30 - type: Transform -- uid: 9519 - type: CableHV - components: - - pos: -12.5,-30.5 - parent: 30 - type: Transform -- uid: 9520 - type: CableHV - components: - - pos: -12.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9521 - type: CableHV - components: - - pos: -11.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9522 - type: CableHV - components: - - pos: -9.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9523 - type: CableHV - components: - - pos: -10.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9524 - type: CableHV - components: - - pos: -8.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9525 - type: CableHV - components: - - pos: -7.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9526 - type: CableHV - components: - - pos: -6.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9527 - type: CableHV - components: - - pos: -5.5,-29.5 - parent: 30 - type: Transform -- uid: 9528 - type: CableHV - components: - - pos: -13.5,-29.5 - parent: 30 - type: Transform -- uid: 9529 - type: CableHV - components: - - pos: -2.5,-38.5 - parent: 30 - type: Transform -- uid: 9530 - type: CableHV - components: - - pos: -1.5,-38.5 - parent: 30 - type: Transform -- uid: 9531 - type: CableHV - components: - - pos: -0.5,-38.5 - parent: 30 - type: Transform -- uid: 9532 - type: CableHV - components: - - pos: 0.5,-38.5 - parent: 30 - type: Transform -- uid: 9533 - type: CableHV - components: - - pos: 1.5,-38.5 - parent: 30 - type: Transform -- uid: 9534 - type: CableHV - components: - - pos: 1.5,-37.5 - parent: 30 - type: Transform -- uid: 9535 - type: CableHV - components: - - pos: 1.5,-36.5 - parent: 30 - type: Transform -- uid: 9536 - type: CableHV - components: - - pos: 1.5,-35.5 - parent: 30 - type: Transform -- uid: 9537 - type: CableHV - components: - - pos: 1.5,-34.5 - parent: 30 - type: Transform -- uid: 9538 - type: CableHV - components: - - pos: 1.5,-33.5 - parent: 30 - type: Transform -- uid: 9539 - type: CableHV - components: - - pos: 1.5,-32.5 - parent: 30 - type: Transform -- uid: 9540 - type: CableHV - components: - - pos: 1.5,-31.5 - parent: 30 - type: Transform -- uid: 9541 - type: CableHV - components: - - pos: 1.5,-30.5 - parent: 30 - type: Transform -- uid: 9542 - type: CableHV - components: - - pos: 1.5,-29.5 - parent: 30 - type: Transform -- uid: 9543 - type: CableHV - components: - - pos: 0.5,-29.5 - parent: 30 - type: Transform -- uid: 9544 - type: CableHV - components: - - pos: -0.5,-29.5 - parent: 30 - type: Transform -- uid: 9545 - type: CableHV - components: - - pos: -1.5,-29.5 - parent: 30 - type: Transform -- uid: 9546 - type: CableHV - components: - - pos: -2.5,-29.5 - parent: 30 - type: Transform -- uid: 9547 - type: CableHV - components: - - pos: -2.5,-27.5 - parent: 30 - type: Transform -- uid: 9548 - type: CableHV - components: - - pos: -2.5,-26.5 - parent: 30 - type: Transform -- uid: 9549 - type: CableHV - components: - - pos: -2.5,-28.5 - parent: 30 - type: Transform -- uid: 9550 - type: CableHV - components: - - pos: -2.5,-25.5 - parent: 30 - type: Transform -- uid: 9551 - type: CableHV - components: - - pos: -2.5,-24.5 - parent: 30 - type: Transform -- uid: 9552 - type: CableHV - components: - - pos: -3.5,-24.5 - parent: 30 - type: Transform -- uid: 9553 - type: CableHV - components: - - pos: -4.5,-24.5 - parent: 30 - type: Transform -- uid: 9554 - type: CableHV - components: - - pos: -2.5,-23.5 - parent: 30 - type: Transform -- uid: 9555 - type: CableHV - components: - - pos: -2.5,-22.5 - parent: 30 - type: Transform -- uid: 9556 - type: CableHV - components: - - pos: -2.5,-21.5 - parent: 30 - type: Transform -- uid: 9557 - type: CableHV - components: - - pos: -2.5,-20.5 - parent: 30 - type: Transform -- uid: 9558 - type: CableHV - components: - - pos: -2.5,-19.5 - parent: 30 - type: Transform -- uid: 9559 - type: CableHV - components: - - pos: -2.5,-18.5 - parent: 30 - type: Transform -- uid: 9560 - type: CableHV - components: - - pos: -2.5,-17.5 - parent: 30 - type: Transform -- uid: 9561 - type: CableHV - components: - - pos: -2.5,-16.5 - parent: 30 - type: Transform -- uid: 9562 - type: CableHV - components: - - pos: -2.5,-15.5 - parent: 30 - type: Transform -- uid: 9563 - type: Catwalk - components: - - pos: -12.5,-29.5 - parent: 30 - type: Transform -- uid: 9564 - type: Catwalk - components: - - pos: -11.5,-29.5 - parent: 30 - type: Transform -- uid: 9565 - type: Catwalk - components: - - pos: -10.5,-29.5 - parent: 30 - type: Transform -- uid: 9566 - type: Catwalk - components: - - pos: -9.5,-29.5 - parent: 30 - type: Transform -- uid: 9567 - type: Catwalk - components: - - pos: -8.5,-29.5 - parent: 30 - type: Transform -- uid: 9568 - type: Catwalk - components: - - pos: -7.5,-29.5 - parent: 30 - type: Transform -- uid: 9569 - type: Catwalk - components: - - pos: -6.5,-29.5 - parent: 30 - type: Transform -- uid: 9570 - type: SubstationBasic - components: - - pos: 3.5,-37.5 - parent: 30 - type: Transform -- uid: 9571 - type: CableHV - components: - - pos: 2.5,-38.5 - parent: 30 - type: Transform -- uid: 9572 - type: CableHV - components: - - pos: 3.5,-38.5 - parent: 30 - type: Transform -- uid: 9573 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-38.5 - parent: 30 - type: Transform - - startingCharge: 12000 - type: Battery -- uid: 9574 - type: FirelockGlass - components: - - pos: -0.5,-3.5 - parent: 30 - type: Transform -- uid: 9575 - type: FirelockGlass - components: - - pos: -0.5,-2.5 - parent: 30 - type: Transform -- uid: 9576 - type: TableReinforced - components: - - pos: -19.5,-35.5 - parent: 30 - type: Transform -- uid: 9577 - type: AirlockEngineeringLocked - components: - - pos: -20.5,-42.5 - parent: 30 - type: Transform -- uid: 9578 - type: CrateEngineeringCableBulk - components: - - pos: -22.5,-44.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 9579 - type: SpawnPointStationEngineer - components: - - pos: -23.5,-41.5 - parent: 30 - type: Transform -- uid: 9580 - type: SpawnPointStationEngineer - components: - - pos: -24.5,-41.5 - parent: 30 - type: Transform -- uid: 9581 - type: SpawnPointStationEngineer - components: - - pos: -23.5,-42.5 - parent: 30 - type: Transform -- uid: 9582 - type: WallReinforced - components: - - pos: -15.5,-33.5 - parent: 30 - type: Transform -- uid: 9583 - type: WallReinforced - components: - - pos: -15.5,-37.5 - parent: 30 - type: Transform -- uid: 9584 - type: WallReinforced - components: - - pos: -16.5,-37.5 - parent: 30 - type: Transform -- uid: 9585 - type: ReinforcedWindow - components: - - pos: -17.5,-37.5 - parent: 30 - type: Transform -- uid: 9586 - type: ReinforcedWindow - components: - - pos: -19.5,-37.5 - parent: 30 - type: Transform -- uid: 9587 - type: SpawnPointChiefEngineer - components: - - pos: -16.5,-35.5 - parent: 30 - type: Transform -- uid: 9588 - type: ComfyChair - components: - - pos: -18.5,-34.5 - parent: 30 - type: Transform -- uid: 9589 - type: Grille - components: - - pos: -17.5,-37.5 - parent: 30 - type: Transform -- uid: 9590 - type: Grille - components: - - pos: -19.5,-37.5 - parent: 30 - type: Transform -- uid: 9591 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-36.5 - parent: 30 - type: Transform -- uid: 9592 - type: AirlockChiefEngineerGlassLocked - components: - - name: CE's Office - type: MetaData - - pos: -18.5,-37.5 - parent: 30 - type: Transform -- uid: 9593 - type: Railing - components: - - pos: 6.5,-3.5 - parent: 30 - type: Transform -- uid: 9594 - type: CableHV - components: - - pos: 3.5,-11.5 - parent: 30 - type: Transform -- uid: 9595 - type: CableHV - components: - - pos: 3.5,-10.5 - parent: 30 - type: Transform -- uid: 9596 - type: WelderIndustrialAdvanced - components: - - pos: -17.366865,-29.492481 - parent: 30 - type: Transform -- uid: 9597 - type: ReinforcedWindow - components: - - pos: -37.5,-36.5 - parent: 30 - type: Transform -- uid: 9598 - type: ReinforcedWindow - components: - - pos: -38.5,-36.5 - parent: 30 - type: Transform -- uid: 9599 - type: WallReinforced - components: - - pos: -17.5,-33.5 - parent: 30 - type: Transform -- uid: 9600 - type: WallReinforced - components: - - pos: -18.5,-33.5 - parent: 30 - type: Transform -- uid: 9601 - type: RCD - components: - - pos: -15.481125,-35.377903 - parent: 30 - type: Transform -- uid: 9602 - type: RCDAmmo - components: - - pos: -15.3405,-34.940403 - parent: 30 - type: Transform -- uid: 9603 - type: RCDAmmo - components: - - pos: -15.606125,-34.956028 - parent: 30 - type: Transform -- uid: 9604 - type: LockerChiefEngineerFilled - components: - - pos: -19.5,-34.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 9329 - type: ContainerContainer -- uid: 9605 - type: CableApcStack - components: - - pos: -15.653,-34.268528 - parent: 30 - type: Transform -- uid: 9606 - type: CableMVStack - components: - - pos: -15.528,-34.377903 - parent: 30 - type: Transform -- uid: 9607 - type: CableHVStack - components: - - pos: -15.37175,-34.518528 - parent: 30 - type: Transform -- uid: 9608 - type: AcousticGuitarInstrument - components: - - pos: -19.30925,-35.362278 - parent: 30 - type: Transform -- uid: 9609 - type: TableReinforced - components: - - pos: -17.5,-35.5 - parent: 30 - type: Transform -- uid: 9610 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 30 - type: Transform -- uid: 9611 - type: CableApcExtension - components: - - pos: 1.5,-8.5 - parent: 30 - type: Transform -- uid: 9612 - type: TableWood - components: - - pos: 2.5,-9.5 - parent: 30 - type: Transform -- uid: 9613 - type: ExtinguisherCabinetFilled - components: - - pos: -14.5,-35.5 - parent: 30 - type: Transform -- uid: 9614 - type: ExtinguisherCabinetFilled - components: - - pos: -4.5,-27.5 - parent: 30 - type: Transform -- uid: 9615 - type: PottedPlantRandomPlastic - components: - - pos: -16.5,-38.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 9616 - type: BoxFolderYellow - components: - - pos: -17.512093,-35.436672 - parent: 30 - type: Transform -- uid: 9617 - type: Pen - components: - - pos: -17.887093,-35.280422 - parent: 30 - type: Transform -- uid: 9618 - type: ClothingEyesGlassesMeson - components: - - pos: -18.387093,-35.233547 - parent: 30 - type: Transform -- uid: 9619 - type: GasPipeStraight - components: - - pos: -1.5,-40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9620 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9621 - type: GasPipeStraight - components: - - pos: -1.5,-41.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9622 - type: GasPipeTJunction - components: - - pos: -1.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9623 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9624 - type: GasPipeStraight - components: - - pos: -1.5,-42.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9625 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-52.5 - parent: 30 - type: Transform -- uid: 9626 - type: GasPipeStraight - components: - - pos: -1.5,-43.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9627 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-51.5 - parent: 30 - type: Transform -- uid: 9628 - type: GasPipeStraight - components: - - pos: -1.5,-44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9629 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-50.5 - parent: 30 - type: Transform -- uid: 9630 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-52.5 - parent: 30 - type: Transform -- uid: 9631 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-51.5 - parent: 30 - type: Transform -- uid: 9632 - type: WallReinforced - components: - - pos: -10.5,-49.5 - parent: 30 - type: Transform -- uid: 9633 - type: WallReinforced - components: - - pos: -8.5,-47.5 - parent: 30 - type: Transform -- uid: 9634 - type: WallReinforced - components: - - pos: -9.5,-47.5 - parent: 30 - type: Transform -- uid: 9635 - type: WallReinforced - components: - - pos: -6.5,-47.5 - parent: 30 - type: Transform -- uid: 9636 - type: WallReinforced - components: - - pos: -5.5,-47.5 - parent: 30 - type: Transform -- uid: 9637 - type: WallReinforced - components: - - pos: -5.5,-48.5 - parent: 30 - type: Transform -- uid: 9638 - type: WallReinforced - components: - - pos: -5.5,-49.5 - parent: 30 - type: Transform -- uid: 9639 - type: WallReinforced - components: - - pos: -6.5,-49.5 - parent: 30 - type: Transform -- uid: 9640 - type: WallReinforced - components: - - pos: -8.5,-49.5 - parent: 30 - type: Transform -- uid: 9641 - type: WallReinforced - components: - - pos: -9.5,-49.5 - parent: 30 - type: Transform -- uid: 9642 - type: WallReinforced - components: - - pos: -9.5,-48.5 - parent: 30 - type: Transform -- uid: 9643 - type: WallReinforced - components: - - pos: -11.5,-49.5 - parent: 30 - type: Transform -- uid: 9644 - type: WallReinforced - components: - - pos: -4.5,-49.5 - parent: 30 - type: Transform -- uid: 9645 - type: WallReinforced - components: - - pos: -3.5,-49.5 - parent: 30 - type: Transform -- uid: 9646 - type: WallReinforced - components: - - pos: -5.5,-53.5 - parent: 30 - type: Transform -- uid: 9647 - type: WallReinforced - components: - - pos: -4.5,-53.5 - parent: 30 - type: Transform -- uid: 9648 - type: WallReinforced - components: - - pos: -3.5,-53.5 - parent: 30 - type: Transform -- uid: 9649 - type: WallReinforced - components: - - pos: -6.5,-53.5 - parent: 30 - type: Transform -- uid: 9650 - type: WallReinforced - components: - - pos: -8.5,-53.5 - parent: 30 - type: Transform -- uid: 9651 - type: WallReinforced - components: - - pos: -9.5,-53.5 - parent: 30 - type: Transform -- uid: 9652 - type: WallReinforced - components: - - pos: -10.5,-53.5 - parent: 30 - type: Transform -- uid: 9653 - type: WallReinforced - components: - - pos: -11.5,-53.5 - parent: 30 - type: Transform -- uid: 9654 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-52.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9655 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-51.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9656 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-50.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9657 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-52.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9658 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-51.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9659 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-50.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9660 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -4.5,-48.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 9661 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -3.5,-48.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 9662 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -10.5,-48.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9663 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -11.5,-48.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9664 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-47.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9665 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-47.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9666 - type: GasFilterFlipped - components: - - name: sme filter - type: MetaData - - rot: 1.5707963267948966 rad - pos: -10.5,-46.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9667 - type: GasPressurePump - components: - - name: sme input - type: MetaData - - rot: 3.141592653589793 rad - pos: -4.5,-47.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9668 - type: GasPressurePump - components: - - name: sme input - type: MetaData - - rot: 3.141592653589793 rad - pos: -3.5,-47.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9669 - type: GasPipeTJunction - components: - - pos: -3.5,-46.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9670 - type: GasPipeTJunction - components: - - pos: -4.5,-46.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9671 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-46.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9672 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-46.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9673 - type: GasPipeTJunction - components: - - pos: -6.5,-46.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9674 - type: GasPipeTJunction - components: - - pos: -8.5,-46.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9675 - type: GasPressurePump - components: - - name: pressure release pump - type: MetaData - - rot: -1.5707963267948966 rad - pos: -7.5,-46.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9676 - type: GasPressurePump - components: - - name: chamber input pump - type: MetaData - - pos: -6.5,-48.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9677 - type: GasPressurePump - components: - - name: chamber output pump - type: MetaData - - rot: 3.141592653589793 rad - pos: -8.5,-48.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9678 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-47.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9679 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-47.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9680 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -6.5,-49.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9681 - type: GasPipeBend - components: - - pos: -5.5,-49.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9682 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-49.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9683 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-49.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9684 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-50.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9685 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-51.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9686 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-51.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9687 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-50.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9688 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -9.5,-52.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9689 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-52.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9690 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-46.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9691 - type: GasPipeBend - components: - - pos: -2.5,-46.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9692 - type: GasPipeStraight - components: - - pos: -2.5,-47.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9693 - type: GasPipeStraight - components: - - pos: -2.5,-48.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9694 - type: GasPressurePump - components: - - name: cooler loop bypass - type: MetaData - - rot: 3.141592653589793 rad - pos: -2.5,-51.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9695 - type: GasPipeStraight - components: - - pos: -2.5,-50.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9696 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-49.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9697 - type: GasPipeStraight - components: - - pos: -2.5,-52.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9698 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-55.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9699 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-46.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9700 - type: GasPipeStraight - components: - - pos: -12.5,-47.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9701 - type: GasPipeStraight - components: - - pos: -12.5,-49.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9702 - type: GasPipeStraight - components: - - pos: -12.5,-48.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9703 - type: GasPipeStraight - components: - - pos: -12.5,-50.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9704 - type: GasPipeStraight - components: - - pos: -12.5,-51.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9705 - type: GasPipeStraight - components: - - pos: -12.5,-52.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9706 - type: GasPipeStraight - components: - - pos: -12.5,-53.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9707 - type: GasFilterFlipped - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-55.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9708 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-54.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9709 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-54.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9710 - type: GasPipeTJunction - components: - - pos: -4.5,-54.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9711 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-54.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9712 - type: GasPipeTJunction - components: - - pos: -6.5,-54.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9713 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-54.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9714 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-54.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9715 - type: GasPipeTJunction - components: - - pos: -8.5,-54.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9716 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-55.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9717 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-55.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9718 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-55.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9719 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-53.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9720 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -2.5,-54.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9721 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-55.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9722 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-55.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9723 - type: GasFilterFlipped - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-55.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9724 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -12.5,-55.5 - parent: 30 - type: Transform - - color: '#34EB3AFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9725 - type: GasFilterFlipped - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-55.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9726 - type: GasFilterFlipped - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-55.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9727 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9728 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 2.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9729 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9730 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9731 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9732 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9733 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9734 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9735 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9736 - type: GasPipeStraight - components: - - pos: -3.5,-19.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9737 - type: GasPipeStraight - components: - - pos: -3.5,-20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9738 - type: GasPipeStraight - components: - - pos: -3.5,-21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9739 - type: GasPipeStraight - components: - - pos: -3.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9740 - type: GasPipeStraight - components: - - pos: -3.5,-23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9741 - type: GasPipeStraight - components: - - pos: -3.5,-24.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9742 - type: GasPipeStraight - components: - - pos: -3.5,-25.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9743 - type: GasPipeStraight - components: - - pos: -3.5,-26.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9744 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9745 - type: GasPipeStraight - components: - - pos: -3.5,-28.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9746 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-29.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9747 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9748 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9749 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9750 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -3.5,-30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9751 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9752 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9753 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9754 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9755 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9756 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9757 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9758 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-22.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9759 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9760 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9761 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9762 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9763 - type: GasPipeTJunction - components: - - pos: 4.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9764 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9765 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9766 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9767 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9768 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9769 - type: ExtinguisherCabinetFilled - components: - - pos: -15.5,-49.5 - parent: 30 - type: Transform -- uid: 9770 - type: GasPipeBend - components: - - pos: 0.5,-30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9771 - type: GasPipeStraight - components: - - pos: 2.5,-28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9772 - type: GasPipeStraight - components: - - pos: 2.5,-29.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9773 - type: GasPipeStraight - components: - - pos: 2.5,-30.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9774 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-34.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9775 - type: GasPipeStraight - components: - - pos: 2.5,-31.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9776 - type: GasPipeStraight - components: - - pos: 0.5,-31.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9777 - type: GasPipeStraight - components: - - pos: 0.5,-32.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9778 - type: GasPipeStraight - components: - - pos: 0.5,-33.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9779 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-32.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9780 - type: GasPipeStraight - components: - - pos: 0.5,-35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9781 - type: GasPipeStraight - components: - - pos: 0.5,-36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9782 - type: GasPipeStraight - components: - - pos: 0.5,-37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9783 - type: GasPipeStraight - components: - - pos: 0.5,-38.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9784 - type: GasPipeStraight - components: - - pos: 2.5,-33.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9785 - type: GasPipeStraight - components: - - pos: 2.5,-34.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9786 - type: GasPipeStraight - components: - - pos: 2.5,-35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9787 - type: GasPipeStraight - components: - - pos: 2.5,-36.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9788 - type: GasPipeStraight - components: - - pos: 2.5,-37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9789 - type: GasPipeStraight - components: - - pos: 2.5,-38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9790 - type: GasPipeStraight - components: - - pos: 2.5,-39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9791 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-50.5 - parent: 30 - type: Transform -- uid: 9792 - type: CableHV - components: - - pos: -12.5,-44.5 - parent: 30 - type: Transform -- uid: 9793 - type: CableHV - components: - - pos: -12.5,-42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9794 - type: StorageCanister - components: - - pos: -12.5,-43.5 - parent: 30 - type: Transform -- uid: 9795 - type: CableHV - components: - - pos: -17.5,-41.5 - parent: 30 - type: Transform -- uid: 9796 - type: CableHV - components: - - pos: -12.5,-45.5 - parent: 30 - type: Transform -- uid: 9797 - type: CableHV - components: - - pos: -12.5,-46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9798 - type: CableHV - components: - - pos: -12.5,-47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9799 - type: CableHV - components: - - pos: -12.5,-48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9800 - type: CableHV - components: - - pos: -12.5,-49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9801 - type: CableHV - components: - - pos: -12.5,-50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9802 - type: CableHV - components: - - pos: -12.5,-51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9803 - type: CableHV - components: - - pos: -12.5,-52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9804 - type: CableHV - components: - - pos: -12.5,-53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9805 - type: CableHV - components: - - pos: -12.5,-54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9806 - type: CableHV - components: - - pos: -11.5,-51.5 - parent: 30 - type: Transform -- uid: 9807 - type: CableHV - components: - - pos: -10.5,-51.5 - parent: 30 - type: Transform -- uid: 9808 - type: CableHV - components: - - pos: -10.5,-50.5 - parent: 30 - type: Transform -- uid: 9809 - type: CableHV - components: - - pos: -10.5,-52.5 - parent: 30 - type: Transform -- uid: 9810 - type: CableHV - components: - - pos: -11.5,-54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9811 - type: CableHV - components: - - pos: -10.5,-54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9812 - type: CableHV - components: - - pos: -9.5,-54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9813 - type: CableHV - components: - - pos: -8.5,-54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9814 - type: CableHV - components: - - pos: -7.5,-54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9815 - type: CableHV - components: - - pos: -6.5,-54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9816 - type: CableHV - components: - - pos: -5.5,-54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9817 - type: CableHV - components: - - pos: -4.5,-54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9818 - type: CableHV - components: - - pos: -3.5,-54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9819 - type: CableHV - components: - - pos: -2.5,-54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9820 - type: CableHV - components: - - pos: -2.5,-53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9821 - type: CableHV - components: - - pos: -2.5,-52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9822 - type: CableHV - components: - - pos: -2.5,-51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9823 - type: CableHV - components: - - pos: -3.5,-51.5 - parent: 30 - type: Transform -- uid: 9824 - type: CableHV - components: - - pos: -4.5,-51.5 - parent: 30 - type: Transform -- uid: 9825 - type: CableHV - components: - - pos: -4.5,-50.5 - parent: 30 - type: Transform -- uid: 9826 - type: CableHV - components: - - pos: -4.5,-52.5 - parent: 30 - type: Transform -- uid: 9827 - type: CableHV - components: - - pos: -2.5,-50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9828 - type: CableHV - components: - - pos: -2.5,-49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9829 - type: CableHV - components: - - pos: -2.5,-48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9830 - type: CableHV - components: - - pos: -2.5,-47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9831 - type: CableHV - components: - - pos: -2.5,-46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9832 - type: CableHV - components: - - pos: -2.5,-45.5 - parent: 30 - type: Transform -- uid: 9833 - type: CableHV - components: - - pos: -2.5,-44.5 - parent: 30 - type: Transform -- uid: 9834 - type: CableHV - components: - - pos: -4.5,-44.5 - parent: 30 - type: Transform -- uid: 9835 - type: CableHV - components: - - pos: -3.5,-44.5 - parent: 30 - type: Transform -- uid: 9836 - type: CableHV - components: - - pos: -5.5,-44.5 - parent: 30 - type: Transform -- uid: 9837 - type: CableHV - components: - - pos: -6.5,-44.5 - parent: 30 - type: Transform -- uid: 9838 - type: CableHV - components: - - pos: -8.5,-44.5 - parent: 30 - type: Transform -- uid: 9839 - type: CableHV - components: - - pos: -7.5,-44.5 - parent: 30 - type: Transform -- uid: 9840 - type: CableHV - components: - - pos: -9.5,-44.5 - parent: 30 - type: Transform -- uid: 9841 - type: CableHV - components: - - pos: -10.5,-44.5 - parent: 30 - type: Transform -- uid: 9842 - type: CableHV - components: - - pos: -11.5,-44.5 - parent: 30 - type: Transform -- uid: 9843 - type: RadiationCollector - components: - - pos: -10.5,-50.5 - parent: 30 - type: Transform -- uid: 9844 - type: RadiationCollector - components: - - pos: -10.5,-51.5 - parent: 30 - type: Transform -- uid: 9845 - type: RadiationCollector - components: - - pos: -10.5,-52.5 - parent: 30 - type: Transform -- uid: 9846 - type: RadiationCollector - components: - - pos: -4.5,-52.5 - parent: 30 - type: Transform -- uid: 9847 - type: RadiationCollector - components: - - pos: -4.5,-51.5 - parent: 30 - type: Transform -- uid: 9848 - type: RadiationCollector - components: - - pos: -4.5,-50.5 - parent: 30 - type: Transform -- uid: 9849 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-55.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9850 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-54.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9851 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-53.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9852 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-52.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9853 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-51.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9854 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-50.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9855 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-49.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9856 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-48.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9857 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-47.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9858 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-46.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9859 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-54.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9860 - type: GasPressurePump - components: - - name: cooler loop output - type: MetaData - - rot: -1.5707963267948966 rad - pos: -1.5,-49.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9861 - type: GasPressurePump - components: - - name: cooler loop input - type: MetaData - - rot: 1.5707963267948966 rad - pos: -1.5,-53.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9862 - type: GasPressurePump - components: - - name: mix to sme loop - type: MetaData - - rot: -1.5707963267948966 rad - pos: -1.5,-54.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9863 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-53.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9864 - type: GasThermoMachineFreezer - components: - - pos: 0.5,-52.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor -- uid: 9865 - type: GasThermoMachineFreezer - components: - - pos: 1.5,-52.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor -- uid: 9866 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 0.5,-53.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9867 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 1.5,-53.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9868 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-53.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9869 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-53.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9870 - type: GasPipeBend - components: - - pos: 3.5,-49.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9871 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-49.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9872 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-49.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9873 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-49.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9874 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-49.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9875 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-52.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9876 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-51.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9877 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-50.5 - parent: 30 - type: Transform - - color: '#34E5EBFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9878 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-54.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9879 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-54.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9880 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-54.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9881 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-54.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9882 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-54.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9883 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-54.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9884 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-53.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9885 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-52.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9886 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-51.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9887 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-50.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9888 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-49.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9889 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-48.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9890 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-47.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9891 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-45.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9892 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-44.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9893 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-43.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9894 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-42.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9895 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-41.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9896 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-40.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9897 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-39.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9898 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-46.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9899 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-46.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9900 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-38.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9901 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-38.5 - parent: 30 - type: Transform - - color: '#EB9834FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9902 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-48.5 - parent: 30 - type: Transform -- uid: 9903 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-55.5 - parent: 30 - type: Transform -- uid: 9904 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-55.5 - parent: 30 - type: Transform -- uid: 9905 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-48.5 - parent: 30 - type: Transform -- uid: 9906 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-45.5 - parent: 30 - type: Transform -- uid: 9907 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-45.5 - parent: 30 - type: Transform -- uid: 9908 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-51.5 - parent: 30 - type: Transform -- uid: 9909 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-52.5 - parent: 30 - type: Transform -- uid: 9910 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-53.5 - parent: 30 - type: Transform -- uid: 9911 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-50.5 - parent: 30 - type: Transform -- uid: 9912 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-49.5 - parent: 30 - type: Transform -- uid: 9913 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-54.5 - parent: 30 - type: Transform -- uid: 9914 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-48.5 - parent: 30 - type: Transform -- uid: 9915 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-48.5 - parent: 30 - type: Transform -- uid: 9916 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-55.5 - parent: 30 - type: Transform -- uid: 9917 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-55.5 - parent: 30 - type: Transform -- uid: 9918 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-54.5 - parent: 30 - type: Transform -- uid: 9919 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-53.5 - parent: 30 - type: Transform -- uid: 9920 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-52.5 - parent: 30 - type: Transform -- uid: 9921 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-50.5 - parent: 30 - type: Transform -- uid: 9922 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-49.5 - parent: 30 - type: Transform -- uid: 9923 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-47.5 - parent: 30 - type: Transform -- uid: 9924 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-46.5 - parent: 30 - type: Transform -- uid: 9925 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-45.5 - parent: 30 - type: Transform -- uid: 9926 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-45.5 - parent: 30 - type: Transform -- uid: 9927 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-45.5 - parent: 30 - type: Transform -- uid: 9928 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-45.5 - parent: 30 - type: Transform -- uid: 9929 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-44.5 - parent: 30 - type: Transform -- uid: 9930 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-54.5 - parent: 30 - type: Transform -- uid: 9931 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-52.5 - parent: 30 - type: Transform -- uid: 9932 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-51.5 - parent: 30 - type: Transform -- uid: 9933 - type: ReinforcedPlasmaWindow - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-50.5 - parent: 30 - type: Transform -- uid: 9934 - type: AirlockEngineeringGlassLocked - components: - - pos: -0.5,-53.5 - parent: 30 - type: Transform -- uid: 9935 - type: AirlockEngineeringGlassLocked - components: - - pos: -0.5,-49.5 - parent: 30 - type: Transform -- uid: 9936 - type: Grille - components: - - pos: -0.5,-54.5 - parent: 30 - type: Transform -- uid: 9937 - type: Grille - components: - - pos: -0.5,-52.5 - parent: 30 - type: Transform -- uid: 9938 - type: Grille - components: - - pos: -0.5,-51.5 - parent: 30 - type: Transform -- uid: 9939 - type: Grille - components: - - pos: -0.5,-50.5 - parent: 30 - type: Transform -- uid: 9940 - type: ShuttersRadiation - components: - - pos: -11.5,-52.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10006 - type: SignalReceiver -- uid: 9941 - type: ShuttersRadiation - components: - - pos: -11.5,-51.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10006 - type: SignalReceiver -- uid: 9942 - type: ShuttersRadiation - components: - - pos: -11.5,-50.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10006 - type: SignalReceiver -- uid: 9943 - type: ShuttersRadiation - components: - - pos: -3.5,-52.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10007 - type: SignalReceiver -- uid: 9944 - type: ShuttersRadiation - components: - - pos: -3.5,-51.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10007 - type: SignalReceiver -- uid: 9945 - type: ShuttersRadiation - components: - - pos: -3.5,-50.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10007 - type: SignalReceiver -- uid: 9946 - type: AirlockEngineeringGlassLocked - components: - - pos: -7.5,-49.5 - parent: 30 - type: Transform -- uid: 9947 - type: AirlockEngineeringGlassLocked - components: - - pos: -7.5,-47.5 - parent: 30 - type: Transform -- uid: 9948 - type: ReinforcedPlasmaWindow - components: - - pos: -7.5,-53.5 - parent: 30 - type: Transform -- uid: 9949 - type: Grille - components: - - pos: -7.5,-53.5 - parent: 30 - type: Transform -- uid: 9950 - type: SignCryogenicsMed - components: - - pos: 2.5,-51.5 - parent: 30 - type: Transform -- uid: 9951 - type: SignFire - components: - - pos: -6.5,-53.5 - parent: 30 - type: Transform -- uid: 9952 - type: AirSensor - components: - - pos: -23.5,-43.5 - parent: 30 - type: Transform -- uid: 9953 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -8.5,-47.5 - parent: 30 - type: Transform - - devices: - - 9654 - - 9655 - - 9656 - - 9657 - - 9658 - - 9659 - - 10739 - type: DeviceList -- uid: 9954 - type: SignFlammableMed - components: - - pos: -8.5,-53.5 - parent: 30 - type: Transform -- uid: 9955 - type: SignElectricalMed - components: - - pos: -10.5,-53.5 - parent: 30 - type: Transform -- uid: 9956 - type: SignElectricalMed - components: - - pos: -4.5,-53.5 - parent: 30 - type: Transform -- uid: 9957 - type: SignElectricalMed - components: - - pos: -4.5,-49.5 - parent: 30 - type: Transform -- uid: 9958 - type: SignElectricalMed - components: - - pos: -10.5,-49.5 - parent: 30 - type: Transform -- uid: 9959 - type: WallReinforced - components: - - pos: -0.5,-44.5 - parent: 30 - type: Transform -- uid: 9960 - type: WindowReinforcedDirectional - components: - - pos: -23.5,4.5 - parent: 30 - type: Transform -- uid: 9961 - type: WallReinforced - components: - - pos: -0.5,-42.5 - parent: 30 - type: Transform -- uid: 9962 - type: WallReinforced - components: - - pos: -1.5,-42.5 - parent: 30 - type: Transform -- uid: 9963 - type: WallReinforced - components: - - pos: -2.5,-42.5 - parent: 30 - type: Transform -- uid: 9964 - type: WallReinforced - components: - - pos: -3.5,-42.5 - parent: 30 - type: Transform -- uid: 9965 - type: ReinforcedPlasmaWindow - components: - - pos: -10.5,-42.5 - parent: 30 - type: Transform -- uid: 9966 - type: WallReinforced - components: - - pos: -5.5,-42.5 - parent: 30 - type: Transform -- uid: 9967 - type: ReinforcedPlasmaWindow - components: - - pos: -8.5,-42.5 - parent: 30 - type: Transform -- uid: 9968 - type: AirlockEngineeringGlassLocked - components: - - name: super matter engine - type: MetaData - - pos: -7.5,-42.5 - parent: 30 - type: Transform -- uid: 9969 - type: ReinforcedPlasmaWindow - components: - - pos: -6.5,-42.5 - parent: 30 - type: Transform -- uid: 9970 - type: WallReinforced - components: - - pos: -9.5,-42.5 - parent: 30 - type: Transform -- uid: 9971 - type: ReinforcedPlasmaWindow - components: - - pos: -4.5,-42.5 - parent: 30 - type: Transform -- uid: 9972 - type: WallReinforced - components: - - pos: -11.5,-42.5 - parent: 30 - type: Transform -- uid: 9973 - type: WallReinforced - components: - - pos: -12.5,-42.5 - parent: 30 - type: Transform -- uid: 9974 - type: WallReinforced - components: - - pos: -13.5,-42.5 - parent: 30 - type: Transform -- uid: 9975 - type: WallReinforced - components: - - pos: -14.5,-42.5 - parent: 30 - type: Transform -- uid: 9976 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -23.5,4.5 - parent: 30 - type: Transform -- uid: 9977 - type: WallReinforced - components: - - pos: -14.5,-44.5 - parent: 30 - type: Transform -- uid: 9978 - type: WallReinforced - components: - - pos: -14.5,-45.5 - parent: 30 - type: Transform -- uid: 9979 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-47.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9980 - type: GasPipeStraight - components: - - pos: 5.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9981 - type: GasPipeTJunction - components: - - pos: 6.5,-27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9982 - type: GasPipeStraight - components: - - pos: 5.5,-21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9983 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9984 - type: GasPipeStraight - components: - - pos: 5.5,-19.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9985 - type: WallReinforced - components: - - pos: -14.5,-52.5 - parent: 30 - type: Transform -- uid: 9986 - type: WallReinforced - components: - - pos: -14.5,-53.5 - parent: 30 - type: Transform -- uid: 9987 - type: WallReinforced - components: - - pos: -14.5,-54.5 - parent: 30 - type: Transform -- uid: 9988 - type: WallReinforced - components: - - pos: -14.5,-55.5 - parent: 30 - type: Transform -- uid: 9989 - type: Grille - components: - - pos: -8.5,-42.5 - parent: 30 - type: Transform -- uid: 9990 - type: Grille - components: - - pos: -6.5,-42.5 - parent: 30 - type: Transform -- uid: 9991 - type: Grille - components: - - pos: -10.5,-42.5 - parent: 30 - type: Transform -- uid: 9992 - type: Grille - components: - - pos: -4.5,-42.5 - parent: 30 - type: Transform -- uid: 9993 - type: ClosetRadiationSuitFilled - components: - - pos: -1.5,-43.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9994 - type: ClosetRadiationSuitFilled - components: - - pos: -2.5,-43.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9995 - type: ClosetRadiationSuitFilled - components: - - pos: -3.5,-43.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9996 - type: ClosetFireFilled - components: - - pos: -4.5,-43.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9997 - type: ClosetFireFilled - components: - - pos: -5.5,-43.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9998 - type: StorageCanister - components: - - pos: -13.5,-43.5 - parent: 30 - type: Transform -- uid: 9999 - type: CableHV - components: - - pos: -17.5,-42.5 - parent: 30 - type: Transform -- uid: 10000 - type: StorageCanister - components: - - pos: -11.5,-43.5 - parent: 30 - type: Transform -- uid: 10001 - type: StorageCanister - components: - - pos: -10.5,-43.5 - parent: 30 - type: Transform -- uid: 10002 - type: TableReinforced - components: - - pos: -1.5,-45.5 - parent: 30 - type: Transform -- uid: 10003 - type: TableReinforced - components: - - pos: -1.5,-44.5 - parent: 30 - type: Transform -- uid: 10004 - type: TableReinforced - components: - - pos: -13.5,-45.5 - parent: 30 - type: Transform -- uid: 10005 - type: TableReinforced - components: - - pos: -13.5,-44.5 - parent: 30 - type: Transform -- uid: 10006 - type: SignalButton - components: - - pos: -11.5,-49.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9942 - - port: Toggle - uid: 9941 - - port: Toggle - uid: 9940 - type: SignalTransmitter -- uid: 10007 - type: SignalButton - components: - - pos: -3.5,-49.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9945 - - port: Toggle - uid: 9944 - - port: Toggle - uid: 9943 - type: SignalTransmitter -- uid: 10008 - type: Multitool - components: - - pos: -13.775943,-44.693085 - parent: 30 - type: Transform -- uid: 10009 - type: ClothingEyesGlassesMeson - components: - - pos: -13.542964,-45.357754 - parent: 30 - type: Transform -- uid: 10010 - type: ClothingEyesGlassesThermal - components: - - pos: -13.542964,-45.170254 - parent: 30 - type: Transform -- uid: 10011 - type: GasAnalyzer - components: - - pos: -13.400943,-44.52121 - parent: 30 - type: Transform -- uid: 10012 - type: YellowOxygenTankFilled - components: - - pos: -1.4952288,-44.42826 - parent: 30 - type: Transform -- uid: 10013 - type: ExtinguisherCabinetFilled - components: - - pos: -0.5,-44.5 - parent: 30 - type: Transform -- uid: 10014 - type: ExtinguisherCabinetFilled - components: - - pos: -14.5,-44.5 - parent: 30 - type: Transform -- uid: 10015 - type: SignRadiationMed - components: - - pos: -9.5,-42.5 - parent: 30 - type: Transform -- uid: 10016 - type: SignRadiationMed - components: - - pos: -5.5,-42.5 - parent: 30 - type: Transform -- uid: 10017 - type: SignSomethingOld2 - components: - - pos: -3.5,-42.5 - parent: 30 - type: Transform -- uid: 10018 - type: SignSomethingOld - components: - - pos: -1.5,-42.5 - parent: 30 - type: Transform -- uid: 10019 - type: WallReinforced - components: - - pos: -14.5,-56.5 - parent: 30 - type: Transform -- uid: 10020 - type: WallReinforced - components: - - pos: -13.5,-56.5 - parent: 30 - type: Transform -- uid: 10021 - type: WallReinforced - components: - - pos: -0.5,-56.5 - parent: 30 - type: Transform -- uid: 10022 - type: WallReinforced - components: - - pos: -1.5,-56.5 - parent: 30 - type: Transform -- uid: 10023 - type: ReinforcedPlasmaWindow - components: - - pos: -7.5,-56.5 - parent: 30 - type: Transform -- uid: 10024 - type: ReinforcedPlasmaWindow - components: - - pos: -8.5,-56.5 - parent: 30 - type: Transform -- uid: 10025 - type: ReinforcedPlasmaWindow - components: - - pos: -6.5,-56.5 - parent: 30 - type: Transform -- uid: 10026 - type: ReinforcedPlasmaWindow - components: - - pos: -3.5,-56.5 - parent: 30 - type: Transform -- uid: 10027 - type: ReinforcedPlasmaWindow - components: - - pos: -11.5,-56.5 - parent: 30 - type: Transform -- uid: 10028 - type: WallReinforced - components: - - pos: -10.5,-56.5 - parent: 30 - type: Transform -- uid: 10029 - type: WallReinforced - components: - - pos: -9.5,-56.5 - parent: 30 - type: Transform -- uid: 10030 - type: WallReinforced - components: - - pos: -5.5,-56.5 - parent: 30 - type: Transform -- uid: 10031 - type: WallReinforced - components: - - pos: -4.5,-56.5 - parent: 30 - type: Transform -- uid: 10032 - type: AirlockEngineeringGlassLocked - components: - - pos: -12.5,-56.5 - parent: 30 - type: Transform -- uid: 10033 - type: AirlockEngineeringGlassLocked - components: - - pos: -2.5,-56.5 - parent: 30 - type: Transform -- uid: 10034 - type: Grille - components: - - pos: -11.5,-56.5 - parent: 30 - type: Transform -- uid: 10035 - type: Grille - components: - - pos: -8.5,-56.5 - parent: 30 - type: Transform -- uid: 10036 - type: Grille - components: - - pos: -7.5,-56.5 - parent: 30 - type: Transform -- uid: 10037 - type: Grille - components: - - pos: -6.5,-56.5 - parent: 30 - type: Transform -- uid: 10038 - type: Grille - components: - - pos: -3.5,-56.5 - parent: 30 - type: Transform -- uid: 10039 - type: WallReinforced - components: - - pos: -13.5,-57.5 - parent: 30 - type: Transform -- uid: 10040 - type: WallReinforced - components: - - pos: -13.5,-58.5 - parent: 30 - type: Transform -- uid: 10041 - type: WallReinforced - components: - - pos: -13.5,-59.5 - parent: 30 - type: Transform -- uid: 10042 - type: WallReinforced - components: - - pos: -13.5,-60.5 - parent: 30 - type: Transform -- uid: 10043 - type: WallReinforced - components: - - pos: -12.5,-60.5 - parent: 30 - type: Transform -- uid: 10044 - type: WallReinforced - components: - - pos: -11.5,-60.5 - parent: 30 - type: Transform -- uid: 10045 - type: WallReinforced - components: - - pos: -11.5,-61.5 - parent: 30 - type: Transform -- uid: 10046 - type: WallReinforced - components: - - pos: -1.5,-57.5 - parent: 30 - type: Transform -- uid: 10047 - type: WallReinforced - components: - - pos: -1.5,-58.5 - parent: 30 - type: Transform -- uid: 10048 - type: WallReinforced - components: - - pos: -1.5,-59.5 - parent: 30 - type: Transform -- uid: 10049 - type: WallReinforced - components: - - pos: -1.5,-60.5 - parent: 30 - type: Transform -- uid: 10050 - type: WallReinforced - components: - - pos: -2.5,-60.5 - parent: 30 - type: Transform -- uid: 10051 - type: WallReinforced - components: - - pos: -3.5,-60.5 - parent: 30 - type: Transform -- uid: 10052 - type: WallReinforced - components: - - pos: -3.5,-61.5 - parent: 30 - type: Transform -- uid: 10053 - type: WallReinforced - components: - - pos: -4.5,-61.5 - parent: 30 - type: Transform -- uid: 10054 - type: WallReinforced - components: - - pos: -5.5,-61.5 - parent: 30 - type: Transform -- uid: 10055 - type: ReinforcedPlasmaWindow - components: - - pos: -6.5,-61.5 - parent: 30 - type: Transform -- uid: 10056 - type: ReinforcedPlasmaWindow - components: - - pos: -8.5,-61.5 - parent: 30 - type: Transform -- uid: 10057 - type: ReinforcedPlasmaWindow - components: - - pos: -7.5,-61.5 - parent: 30 - type: Transform -- uid: 10058 - type: WallReinforced - components: - - pos: -9.5,-61.5 - parent: 30 - type: Transform -- uid: 10059 - type: WallReinforced - components: - - pos: -10.5,-61.5 - parent: 30 - type: Transform -- uid: 10060 - type: Grille - components: - - pos: -8.5,-61.5 - parent: 30 - type: Transform -- uid: 10061 - type: Grille - components: - - pos: -7.5,-61.5 - parent: 30 - type: Transform -- uid: 10062 - type: Grille - components: - - pos: -6.5,-61.5 - parent: 30 - type: Transform -- uid: 10063 - type: CableMV - components: - - pos: -12.5,-57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10064 - type: CableMV - components: - - pos: -12.5,-58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10065 - type: CableMV - components: - - pos: -12.5,-59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10066 - type: CableMV - components: - - pos: -11.5,-59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10067 - type: CableMV - components: - - pos: -10.5,-59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10068 - type: CableMV - components: - - pos: -9.5,-59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10069 - type: CableMV - components: - - pos: -2.5,-58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10070 - type: CableMV - components: - - pos: -2.5,-59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10071 - type: CableMV - components: - - pos: -3.5,-59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10072 - type: CableMV - components: - - pos: -5.5,-59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10073 - type: CableMV - components: - - pos: -6.5,-59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10074 - type: CableMV - components: - - pos: -8.5,-60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10075 - type: CableMV - components: - - pos: -7.5,-60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10076 - type: CableMV - components: - - pos: -6.5,-60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10077 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-60.5 - parent: 30 - type: Transform -- uid: 10078 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-60.5 - parent: 30 - type: Transform -- uid: 10079 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-60.5 - parent: 30 - type: Transform -- uid: 10080 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-60.5 - parent: 30 - type: Transform -- uid: 10081 - type: SignLaserMed - components: - - pos: -10.5,-56.5 - parent: 30 - type: Transform -- uid: 10082 - type: SignLaserMed - components: - - pos: -4.5,-56.5 - parent: 30 - type: Transform -- uid: 10083 - type: Poweredlight - components: - - pos: -10.5,-57.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10084 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-55.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10085 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-55.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10086 - type: Poweredlight - components: - - pos: -4.5,-57.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10087 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-58.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10088 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-58.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10089 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-60.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10090 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-60.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10091 - type: GasPipeStraight - components: - - pos: 5.5,-20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10092 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-55.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10093 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 30 - type: Transform -- uid: 10094 - type: ClosetFireFilled - components: - - pos: 3.5,-39.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10095 - type: Poweredlight - components: - - pos: -12.5,-43.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10096 - type: Poweredlight - components: - - pos: -2.5,-43.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10097 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-48.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10098 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-55.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10099 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-51.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10100 - type: Poweredlight - components: - - pos: -9.5,-50.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10101 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-52.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10102 - type: Poweredlight - components: - - pos: -5.5,-50.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10103 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-52.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10104 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-48.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10105 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-48.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10106 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-46.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10107 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-46.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10108 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-49.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10109 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-53.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10110 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-53.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10111 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-49.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10112 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-45.5 - parent: 30 - type: Transform -- uid: 10113 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-45.5 - parent: 30 - type: Transform -- uid: 10114 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-45.5 - parent: 30 - type: Transform -- uid: 10115 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-45.5 - parent: 30 - type: Transform -- uid: 10116 - type: AirlockEngineeringGlassLocked - components: - - pos: -17.5,-45.5 - parent: 30 - type: Transform -- uid: 10117 - type: WallReinforced - components: - - pos: -19.5,-52.5 - parent: 30 - type: Transform -- uid: 10118 - type: WallReinforced - components: - - pos: -19.5,-51.5 - parent: 30 - type: Transform -- uid: 10119 - type: WallReinforced - components: - - pos: -19.5,-50.5 - parent: 30 - type: Transform -- uid: 10120 - type: WallReinforced - components: - - pos: -19.5,-49.5 - parent: 30 - type: Transform -- uid: 10121 - type: WallReinforced - components: - - pos: -19.5,-48.5 - parent: 30 - type: Transform -- uid: 10122 - type: WallReinforced - components: - - pos: -19.5,-47.5 - parent: 30 - type: Transform -- uid: 10123 - type: WallReinforced - components: - - pos: -19.5,-46.5 - parent: 30 - type: Transform -- uid: 10124 - type: WallReinforced - components: - - pos: -15.5,-46.5 - parent: 30 - type: Transform -- uid: 10125 - type: WallReinforced - components: - - pos: -15.5,-47.5 - parent: 30 - type: Transform -- uid: 10126 - type: WallReinforced - components: - - pos: -15.5,-48.5 - parent: 30 - type: Transform -- uid: 10127 - type: WallReinforced - components: - - pos: -15.5,-49.5 - parent: 30 - type: Transform -- uid: 10128 - type: WallReinforced - components: - - pos: -15.5,-50.5 - parent: 30 - type: Transform -- uid: 10129 - type: WallReinforced - components: - - pos: -15.5,-51.5 - parent: 30 - type: Transform -- uid: 10130 - type: WallReinforced - components: - - pos: -15.5,-52.5 - parent: 30 - type: Transform -- uid: 10131 - type: ReinforcedWindow - components: - - pos: -16.5,-49.5 - parent: 30 - type: Transform -- uid: 10132 - type: ReinforcedWindow - components: - - pos: -18.5,-49.5 - parent: 30 - type: Transform -- uid: 10133 - type: ReinforcedWindow - components: - - pos: -18.5,-52.5 - parent: 30 - type: Transform -- uid: 10134 - type: ReinforcedWindow - components: - - pos: -16.5,-52.5 - parent: 30 - type: Transform -- uid: 10135 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -17.5,-52.5 - parent: 30 - type: Transform -- uid: 10136 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -17.5,-49.5 - parent: 30 - type: Transform -- uid: 10137 - type: Grille - components: - - pos: -18.5,-49.5 - parent: 30 - type: Transform -- uid: 10138 - type: Grille - components: - - pos: -16.5,-49.5 - parent: 30 - type: Transform -- uid: 10139 - type: Grille - components: - - pos: -16.5,-52.5 - parent: 30 - type: Transform -- uid: 10140 - type: Grille - components: - - pos: -18.5,-52.5 - parent: 30 - type: Transform -- uid: 10141 - type: SignalButton - components: - - pos: -17.5,-33.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9405 - - port: Toggle - uid: 9404 - type: SignalTransmitter -- uid: 10142 - type: PosterLegitBuild - components: - - pos: -18.5,-33.5 - parent: 30 - type: Transform -- uid: 10143 - type: SignRadiationMed - components: - - pos: -19.5,-45.5 - parent: 30 - type: Transform -- uid: 10144 - type: SignRadiationMed - components: - - pos: -15.5,-45.5 - parent: 30 - type: Transform -- uid: 10145 - type: ParticleAcceleratorEmitterCenterUnfinished - components: - - pos: -17.5,-69.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 10146 - type: ParticleAcceleratorEmitterRightUnfinished - components: - - pos: -16.5,-69.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 10147 - type: ParticleAcceleratorEmitterLeftUnfinished - components: - - pos: -18.5,-69.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 10148 - type: ParticleAcceleratorEndCapUnfinished - components: - - pos: -17.5,-65.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 10149 - type: ParticleAcceleratorFuelChamberUnfinished - components: - - pos: -17.5,-67.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 10150 - type: ParticleAcceleratorPowerBoxUnfinished - components: - - pos: -16.5,-68.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 10151 - type: CableHV - components: - - pos: -13.5,-40.5 - parent: 30 - type: Transform -- uid: 10152 - type: CableHV - components: - - pos: -14.5,-40.5 - parent: 30 - type: Transform -- uid: 10153 - type: CableHV - components: - - pos: -15.5,-40.5 - parent: 30 - type: Transform -- uid: 10154 - type: CableHV - components: - - pos: -16.5,-40.5 - parent: 30 - type: Transform -- uid: 10155 - type: CableHV - components: - - pos: -17.5,-40.5 - parent: 30 - type: Transform -- uid: 10156 - type: CableHV - components: - - pos: -7.5,-43.5 - parent: 30 - type: Transform -- uid: 10157 - type: CableHV - components: - - pos: -7.5,-42.5 - parent: 30 - type: Transform -- uid: 10158 - type: CableHV - components: - - pos: -7.5,-41.5 - parent: 30 - type: Transform -- uid: 10159 - type: CableHV - components: - - pos: -7.5,-40.5 - parent: 30 - type: Transform -- uid: 10160 - type: CableHV - components: - - pos: -8.5,-40.5 - parent: 30 - type: Transform -- uid: 10161 - type: CableHV - components: - - pos: -9.5,-40.5 - parent: 30 - type: Transform -- uid: 10162 - type: CableHV - components: - - pos: -10.5,-40.5 - parent: 30 - type: Transform -- uid: 10163 - type: CableHV - components: - - pos: -11.5,-40.5 - parent: 30 - type: Transform -- uid: 10164 - type: CableHV - components: - - pos: -17.5,-43.5 - parent: 30 - type: Transform -- uid: 10165 - type: CableHV - components: - - pos: -17.5,-44.5 - parent: 30 - type: Transform -- uid: 10166 - type: CableHV - components: - - pos: -17.5,-45.5 - parent: 30 - type: Transform -- uid: 10167 - type: CableHV - components: - - pos: -17.5,-46.5 - parent: 30 - type: Transform -- uid: 10168 - type: CableHV - components: - - pos: -17.5,-47.5 - parent: 30 - type: Transform -- uid: 10169 - type: CableHV - components: - - pos: -17.5,-48.5 - parent: 30 - type: Transform -- uid: 10170 - type: CableHV - components: - - pos: -17.5,-49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10171 - type: CableHV - components: - - pos: -17.5,-50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10172 - type: CableHV - components: - - pos: -17.5,-51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10173 - type: CableHV - components: - - pos: -17.5,-52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10174 - type: CableHV - components: - - pos: -17.5,-53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10175 - type: CableHV - components: - - pos: -17.5,-54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10176 - type: CableHV - components: - - pos: -17.5,-55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10177 - type: CableHV - components: - - pos: -17.5,-56.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10178 - type: CableHV - components: - - pos: -17.5,-57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10179 - type: CableHV - components: - - pos: -17.5,-58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10180 - type: CableHV - components: - - pos: -17.5,-59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10181 - type: CableHV - components: - - pos: -17.5,-60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10182 - type: CableHV - components: - - pos: -17.5,-61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10183 - type: CableHV - components: - - pos: -17.5,-62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10184 - type: CableHV - components: - - pos: -17.5,-63.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10185 - type: CableHV - components: - - pos: -17.5,-64.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10186 - type: CableHV - components: - - pos: -17.5,-65.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10187 - type: CableHV - components: - - pos: -17.5,-66.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10188 - type: CableHV - components: - - pos: -17.5,-67.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10189 - type: CableHV - components: - - pos: -17.5,-69.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10190 - type: CableHV - components: - - pos: -17.5,-70.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10191 - type: CableHV - components: - - pos: -17.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10192 - type: CableHV - components: - - pos: -17.5,-72.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10193 - type: CableHV - components: - - pos: -17.5,-73.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10194 - type: CableHV - components: - - pos: -17.5,-74.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10195 - type: CableHV - components: - - pos: -17.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10196 - type: CableHV - components: - - pos: -16.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10197 - type: CableHV - components: - - pos: -15.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10198 - type: CableHV - components: - - pos: -14.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10199 - type: CableHV - components: - - pos: -12.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10200 - type: CableHV - components: - - pos: -13.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10201 - type: CableHV - components: - - pos: -11.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10202 - type: CableHV - components: - - pos: -10.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10203 - type: CableHV - components: - - pos: -9.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10204 - type: CableHV - components: - - pos: -9.5,-76.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10205 - type: CableHV - components: - - pos: -9.5,-77.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10206 - type: CableHV - components: - - pos: -9.5,-78.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10207 - type: CableHV - components: - - pos: -9.5,-79.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10208 - type: CableHV - components: - - pos: -9.5,-80.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10209 - type: CableHV - components: - - pos: -9.5,-81.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10210 - type: CableHV - components: - - pos: -9.5,-82.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10211 - type: CableHV - components: - - pos: -9.5,-84.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10212 - type: CableHV - components: - - pos: -9.5,-83.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10213 - type: CableHV - components: - - pos: -9.5,-85.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10214 - type: CableHV - components: - - pos: -9.5,-86.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10215 - type: CableHV - components: - - pos: -9.5,-87.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10216 - type: CableHV - components: - - pos: -9.5,-88.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10217 - type: CableHV - components: - - pos: -9.5,-89.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10218 - type: CableHV - components: - - pos: -9.5,-90.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10219 - type: CableHV - components: - - pos: -9.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10220 - type: CableHV - components: - - pos: -10.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10221 - type: CableHV - components: - - pos: -11.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10222 - type: CableHV - components: - - pos: -12.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10223 - type: CableHV - components: - - pos: -13.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10224 - type: CableHV - components: - - pos: -14.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10225 - type: CableHV - components: - - pos: -15.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10226 - type: CableHV - components: - - pos: -16.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10227 - type: CableHV - components: - - pos: -17.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10228 - type: CableHV - components: - - pos: -18.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10229 - type: CableHV - components: - - pos: -19.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10230 - type: CableHV - components: - - pos: -20.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10231 - type: CableHV - components: - - pos: -21.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10232 - type: CableHV - components: - - pos: -22.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10233 - type: CableHV - components: - - pos: -23.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10234 - type: CableHV - components: - - pos: -24.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10235 - type: CableHV - components: - - pos: -25.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10236 - type: CableHV - components: - - pos: -25.5,-90.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10237 - type: CableHV - components: - - pos: -25.5,-89.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10238 - type: CableHV - components: - - pos: -25.5,-88.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10239 - type: CableHV - components: - - pos: -25.5,-87.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10240 - type: CableHV - components: - - pos: -25.5,-86.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10241 - type: CableHV - components: - - pos: -25.5,-85.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10242 - type: CableHV - components: - - pos: -25.5,-84.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10243 - type: CableHV - components: - - pos: -25.5,-83.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10244 - type: CableHV - components: - - pos: -25.5,-82.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10245 - type: CableHV - components: - - pos: -25.5,-81.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10246 - type: CableHV - components: - - pos: -25.5,-80.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10247 - type: CableHV - components: - - pos: -26.5,-83.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10248 - type: CableHV - components: - - pos: -17.5,-92.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10249 - type: CableHV - components: - - pos: -8.5,-83.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10250 - type: CableHV - components: - - pos: -25.5,-79.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10251 - type: CableHV - components: - - pos: -25.5,-78.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10252 - type: CableHV - components: - - pos: -25.5,-77.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10253 - type: CableHV - components: - - pos: -25.5,-76.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10254 - type: CableHV - components: - - pos: -25.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10255 - type: CableHV - components: - - pos: -24.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10256 - type: CableHV - components: - - pos: -23.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10257 - type: CableHV - components: - - pos: -22.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10258 - type: CableHV - components: - - pos: -21.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10259 - type: CableHV - components: - - pos: -20.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10260 - type: CableHV - components: - - pos: -19.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10261 - type: CableHV - components: - - pos: -18.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10262 - type: ReinforcedWindow - components: - - pos: -33.5,-59.5 - parent: 30 - type: Transform -- uid: 10263 - type: ReinforcedWindow - components: - - pos: -32.5,-59.5 - parent: 30 - type: Transform -- uid: 10264 - type: ReinforcedWindow - components: - - pos: -32.5,-58.5 - parent: 30 - type: Transform -- uid: 10265 - type: ReinforcedWindow - components: - - pos: -32.5,-57.5 - parent: 30 - type: Transform -- uid: 10266 - type: ReinforcedWindow - components: - - pos: -31.5,-59.5 - parent: 30 - type: Transform -- uid: 10267 - type: ReinforcedWindow - components: - - pos: -31.5,-61.5 - parent: 30 - type: Transform -- uid: 10268 - type: WallReinforced - components: - - pos: -32.5,-64.5 - parent: 30 - type: Transform -- uid: 10269 - type: CableMV - components: - - pos: -17.5,-51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10270 - type: CableMV - components: - - pos: -17.5,-52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10271 - type: CableMV - components: - - pos: -17.5,-53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10272 - type: CableMV - components: - - pos: -17.5,-54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10273 - type: CableMV - components: - - pos: -17.5,-55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10274 - type: CableMV - components: - - pos: -17.5,-56.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10275 - type: CableMV - components: - - pos: -17.5,-57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10276 - type: CableMV - components: - - pos: -17.5,-58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10277 - type: CableMV - components: - - pos: -17.5,-59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10278 - type: CableMV - components: - - pos: -17.5,-60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10279 - type: CableMV - components: - - pos: -17.5,-61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10280 - type: CableMV - components: - - pos: -17.5,-62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10281 - type: CableMV - components: - - pos: -17.5,-63.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10282 - type: CableMV - components: - - pos: -17.5,-64.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10283 - type: CableMV - components: - - pos: -17.5,-65.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10284 - type: CableMV - components: - - pos: -17.5,-66.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10285 - type: CableMV - components: - - pos: -17.5,-67.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10286 - type: CableMV - components: - - pos: -17.5,-68.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10287 - type: CableMV - components: - - pos: -17.5,-69.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10288 - type: CableMV - components: - - pos: -17.5,-70.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10289 - type: CableMV - components: - - pos: -17.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10290 - type: CableMV - components: - - pos: -16.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10291 - type: CableMV - components: - - pos: -15.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10292 - type: CableMV - components: - - pos: -14.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10293 - type: CableMV - components: - - pos: -13.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10294 - type: CableMV - components: - - pos: -12.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10295 - type: CableMV - components: - - pos: -11.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10296 - type: CableMV - components: - - pos: -10.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10297 - type: CableMV - components: - - pos: -9.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10298 - type: CableMV - components: - - pos: -8.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10299 - type: CableMV - components: - - pos: -6.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10300 - type: CableMV - components: - - pos: -7.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10301 - type: CableMV - components: - - pos: -5.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10302 - type: CableMV - components: - - pos: -5.5,-72.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10303 - type: CableMV - components: - - pos: -5.5,-73.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10304 - type: CableMV - components: - - pos: -5.5,-74.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10305 - type: CableMV - components: - - pos: -5.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10306 - type: CableMV - components: - - pos: -5.5,-76.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10307 - type: CableMV - components: - - pos: -5.5,-77.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10308 - type: CableMV - components: - - pos: -5.5,-78.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10309 - type: CableMV - components: - - pos: -5.5,-79.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10310 - type: CableMV - components: - - pos: -5.5,-80.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10311 - type: CableMV - components: - - pos: -5.5,-81.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10312 - type: CableMV - components: - - pos: -5.5,-82.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10313 - type: CableMV - components: - - pos: -5.5,-83.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10314 - type: CableMV - components: - - pos: -5.5,-84.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10315 - type: CableMV - components: - - pos: -5.5,-85.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10316 - type: CableMV - components: - - pos: -5.5,-86.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10317 - type: CableMV - components: - - pos: -5.5,-87.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10318 - type: CableMV - components: - - pos: -5.5,-88.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10319 - type: CableMV - components: - - pos: -5.5,-89.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10320 - type: CableMV - components: - - pos: -5.5,-90.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10321 - type: CableMV - components: - - pos: -5.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10322 - type: CableMV - components: - - pos: -5.5,-92.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10323 - type: CableMV - components: - - pos: -5.5,-93.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10324 - type: CableMV - components: - - pos: -5.5,-94.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10325 - type: CableMV - components: - - pos: -5.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10326 - type: CableMV - components: - - pos: -6.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10327 - type: CableMV - components: - - pos: -7.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10328 - type: CableMV - components: - - pos: -8.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10329 - type: CableMV - components: - - pos: -9.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10330 - type: CableMV - components: - - pos: -10.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10331 - type: CableMV - components: - - pos: -11.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10332 - type: CableMV - components: - - pos: -12.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10333 - type: CableMV - components: - - pos: -13.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10334 - type: CableMV - components: - - pos: -14.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10335 - type: CableMV - components: - - pos: -15.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10336 - type: CableMV - components: - - pos: -16.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10337 - type: CableMV - components: - - pos: -17.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10338 - type: CableMV - components: - - pos: -18.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10339 - type: CableMV - components: - - pos: -19.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10340 - type: CableMV - components: - - pos: -20.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10341 - type: CableMV - components: - - pos: -21.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10342 - type: CableMV - components: - - pos: -22.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10343 - type: CableMV - components: - - pos: -23.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10344 - type: CableMV - components: - - pos: -24.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10345 - type: CableMV - components: - - pos: -25.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10346 - type: CableMV - components: - - pos: -26.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10347 - type: CableMV - components: - - pos: -27.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10348 - type: CableMV - components: - - pos: -28.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10349 - type: CableMV - components: - - pos: -29.5,-95.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10350 - type: CableMV - components: - - pos: -29.5,-94.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10351 - type: CableMV - components: - - pos: -29.5,-93.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10352 - type: CableMV - components: - - pos: -29.5,-92.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10353 - type: CableMV - components: - - pos: -29.5,-91.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10354 - type: CableMV - components: - - pos: -29.5,-90.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10355 - type: CableMV - components: - - pos: -29.5,-89.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10356 - type: CableMV - components: - - pos: -29.5,-88.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10357 - type: CableMV - components: - - pos: -29.5,-87.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10358 - type: CableMV - components: - - pos: -29.5,-86.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10359 - type: CableMV - components: - - pos: -29.5,-85.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10360 - type: CableMV - components: - - pos: -29.5,-84.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10361 - type: CableMV - components: - - pos: -29.5,-83.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10362 - type: CableMV - components: - - pos: -29.5,-82.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10363 - type: CableMV - components: - - pos: -29.5,-81.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10364 - type: CableMV - components: - - pos: -29.5,-80.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10365 - type: CableMV - components: - - pos: -29.5,-79.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10366 - type: CableMV - components: - - pos: -29.5,-78.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10367 - type: CableMV - components: - - pos: -29.5,-77.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10368 - type: CableMV - components: - - pos: -29.5,-76.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10369 - type: CableMV - components: - - pos: -29.5,-75.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10370 - type: CableMV - components: - - pos: -29.5,-74.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10371 - type: CableMV - components: - - pos: -29.5,-73.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10372 - type: CableMV - components: - - pos: -29.5,-72.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10373 - type: CableMV - components: - - pos: -29.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10374 - type: CableMV - components: - - pos: -28.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10375 - type: CableMV - components: - - pos: -27.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10376 - type: CableMV - components: - - pos: -26.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10377 - type: CableMV - components: - - pos: -25.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10378 - type: CableMV - components: - - pos: -24.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10379 - type: CableMV - components: - - pos: -23.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10380 - type: CableMV - components: - - pos: -22.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10381 - type: CableMV - components: - - pos: -21.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10382 - type: CableMV - components: - - pos: -20.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10383 - type: CableMV - components: - - pos: -19.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10384 - type: CableMV - components: - - pos: -18.5,-71.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10385 - type: ContainmentFieldGenerator - components: - - pos: -21.5,-79.5 - parent: 30 - type: Transform -- uid: 10386 - type: SignSmoking - components: - - pos: 17.5,-15.5 - parent: 30 - type: Transform -- uid: 10387 - type: ContainmentFieldGenerator - components: - - pos: -13.5,-79.5 - parent: 30 - type: Transform -- uid: 10388 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10389 - type: ContainmentFieldGenerator - components: - - pos: -13.5,-87.5 - parent: 30 - type: Transform -- uid: 10390 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10391 - type: ContainmentFieldGenerator - components: - - pos: -21.5,-87.5 - parent: 30 - type: Transform -- uid: 10392 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10393 - type: SingularityGenerator - components: - - pos: -17.5,-83.5 - parent: 30 - type: Transform -- uid: 10394 - type: FirelockGlass - components: - - pos: -40.5,12.5 - parent: 30 - type: Transform -- uid: 10395 - type: ReinforcedWindow - components: - - pos: 23.5,-16.5 - parent: 30 - type: Transform -- uid: 10396 - type: Grille - components: - - pos: 23.5,-16.5 - parent: 30 - type: Transform -- uid: 10397 - type: RadiationCollector - components: - - pos: -16.5,-75.5 - parent: 30 - type: Transform -- uid: 10398 - type: RadiationCollector - components: - - pos: -15.5,-75.5 - parent: 30 - type: Transform -- uid: 10399 - type: RadiationCollector - components: - - pos: -14.5,-75.5 - parent: 30 - type: Transform -- uid: 10400 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 7.5,-27.5 - parent: 30 - type: Transform -- uid: 10401 - type: FirelockGlass - components: - - pos: -40.5,8.5 - parent: 30 - type: Transform -- uid: 10402 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10403 - type: RadiationCollector - components: - - pos: -9.5,-86.5 - parent: 30 - type: Transform -- uid: 10404 - type: RadiationCollector - components: - - pos: -9.5,-85.5 - parent: 30 - type: Transform -- uid: 10405 - type: RadiationCollector - components: - - pos: -9.5,-84.5 - parent: 30 - type: Transform -- uid: 10406 - type: KitchenReagentGrinder - components: - - pos: -47.5,63.5 - parent: 30 - type: Transform -- uid: 10407 - type: Table - components: - - pos: -49.5,63.5 - parent: 30 - type: Transform -- uid: 10408 - type: Table - components: - - pos: -48.5,63.5 - parent: 30 - type: Transform -- uid: 10409 - type: RadiationCollector - components: - - pos: -18.5,-91.5 - parent: 30 - type: Transform -- uid: 10410 - type: RadiationCollector - components: - - pos: -19.5,-91.5 - parent: 30 - type: Transform -- uid: 10411 - type: RadiationCollector - components: - - pos: -20.5,-91.5 - parent: 30 - type: Transform -- uid: 10412 - type: Table - components: - - pos: -47.5,63.5 - parent: 30 - type: Transform -- uid: 10413 - type: KitchenMicrowave - components: - - pos: -49.5,63.5 - parent: 30 - type: Transform -- uid: 10414 - type: WheatSeeds - components: - - pos: -45.59234,69.48199 - parent: 30 - type: Transform -- uid: 10415 - type: RadiationCollector - components: - - pos: -25.5,-82.5 - parent: 30 - type: Transform -- uid: 10416 - type: RadiationCollector - components: - - pos: -25.5,-81.5 - parent: 30 - type: Transform -- uid: 10417 - type: RadiationCollector - components: - - pos: -25.5,-80.5 - parent: 30 - type: Transform -- uid: 10418 - type: ChanterelleSeeds - components: - - pos: -45.52984,69.40386 - parent: 30 - type: Transform -- uid: 10419 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-79.5 - parent: 30 - type: Transform -- uid: 10420 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-87.5 - parent: 30 - type: Transform -- uid: 10421 - type: Emitter - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-87.5 - parent: 30 - type: Transform -- uid: 10422 - type: CannabisSeeds - components: - - pos: -45.607964,69.43511 - parent: 30 - type: Transform -- uid: 10423 - type: Emitter - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-79.5 - parent: 30 - type: Transform -- uid: 10424 - type: Beaker - components: - - pos: -48.139214,63.564564 - parent: 30 - type: Transform -- uid: 10425 - type: Emitter - components: - - pos: -13.5,-71.5 - parent: 30 - type: Transform -- uid: 10426 - type: Emitter - components: - - pos: -21.5,-71.5 - parent: 30 - type: Transform -- uid: 10427 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: -21.5,-95.5 - parent: 30 - type: Transform -- uid: 10428 - type: hydroponicsTray - components: - - pos: -49.5,69.5 - parent: 30 - type: Transform -- uid: 10429 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: -13.5,-95.5 - parent: 30 - type: Transform -- uid: 10430 - type: SMESBasic - components: - - pos: -9.5,-70.5 - parent: 30 - type: Transform -- uid: 10431 - type: CableApcStack - components: - - pos: -18.636822,-68.425 - parent: 30 - type: Transform -- uid: 10432 - type: CableHVStack1 - components: - - pos: -14.371197,-70.40938 - parent: 30 - type: Transform -- uid: 10433 - type: Screwdriver - components: - - pos: -19.353226,-66.65938 - parent: 30 - type: Transform -- uid: 10434 - type: ParticleAcceleratorControlBoxUnfinished - components: - - pos: -16.5,-65.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 10435 - type: Grille - components: - - pos: -25.5,-67.5 - parent: 30 - type: Transform -- uid: 10436 - type: Grille - components: - - pos: -26.5,-67.5 - parent: 30 - type: Transform -- uid: 10437 - type: Grille - components: - - pos: -27.5,-67.5 - parent: 30 - type: Transform -- uid: 10438 - type: Grille - components: - - pos: -28.5,-67.5 - parent: 30 - type: Transform -- uid: 10439 - type: Grille - components: - - pos: -29.5,-67.5 - parent: 30 - type: Transform -- uid: 10440 - type: Grille - components: - - pos: -33.5,-67.5 - parent: 30 - type: Transform -- uid: 10441 - type: Grille - components: - - pos: -32.5,-67.5 - parent: 30 - type: Transform -- uid: 10442 - type: Grille - components: - - pos: -33.5,-76.5 - parent: 30 - type: Transform -- uid: 10443 - type: Grille - components: - - pos: -33.5,-75.5 - parent: 30 - type: Transform -- uid: 10444 - type: Grille - components: - - pos: -33.5,-74.5 - parent: 30 - type: Transform -- uid: 10445 - type: Grille - components: - - pos: -33.5,-73.5 - parent: 30 - type: Transform -- uid: 10446 - type: Grille - components: - - pos: -33.5,-71.5 - parent: 30 - type: Transform -- uid: 10447 - type: Grille - components: - - pos: -33.5,-80.5 - parent: 30 - type: Transform -- uid: 10448 - type: Grille - components: - - pos: -33.5,-81.5 - parent: 30 - type: Transform -- uid: 10449 - type: Grille - components: - - pos: -33.5,-82.5 - parent: 30 - type: Transform -- uid: 10450 - type: Grille - components: - - pos: -33.5,-83.5 - parent: 30 - type: Transform -- uid: 10451 - type: Grille - components: - - pos: -33.5,-84.5 - parent: 30 - type: Transform -- uid: 10452 - type: Grille - components: - - pos: -33.5,-89.5 - parent: 30 - type: Transform -- uid: 10453 - type: Grille - components: - - pos: -33.5,-90.5 - parent: 30 - type: Transform -- uid: 10454 - type: Grille - components: - - pos: -33.5,-91.5 - parent: 30 - type: Transform -- uid: 10455 - type: Grille - components: - - pos: -33.5,-93.5 - parent: 30 - type: Transform -- uid: 10456 - type: Grille - components: - - pos: -33.5,-97.5 - parent: 30 - type: Transform -- uid: 10457 - type: Grille - components: - - pos: -33.5,-98.5 - parent: 30 - type: Transform -- uid: 10458 - type: Grille - components: - - pos: -33.5,-99.5 - parent: 30 - type: Transform -- uid: 10459 - type: Grille - components: - - pos: -32.5,-99.5 - parent: 30 - type: Transform -- uid: 10460 - type: Grille - components: - - pos: -31.5,-99.5 - parent: 30 - type: Transform -- uid: 10461 - type: Grille - components: - - pos: -30.5,-99.5 - parent: 30 - type: Transform -- uid: 10462 - type: Grille - components: - - pos: -29.5,-99.5 - parent: 30 - type: Transform -- uid: 10463 - type: Grille - components: - - pos: -28.5,-99.5 - parent: 30 - type: Transform -- uid: 10464 - type: Grille - components: - - pos: -27.5,-99.5 - parent: 30 - type: Transform -- uid: 10465 - type: Grille - components: - - pos: -26.5,-99.5 - parent: 30 - type: Transform -- uid: 10466 - type: Grille - components: - - pos: -25.5,-99.5 - parent: 30 - type: Transform -- uid: 10467 - type: Grille - components: - - pos: -24.5,-99.5 - parent: 30 - type: Transform -- uid: 10468 - type: Grille - components: - - pos: -23.5,-99.5 - parent: 30 - type: Transform -- uid: 10469 - type: Grille - components: - - pos: -17.5,-99.5 - parent: 30 - type: Transform -- uid: 10470 - type: Grille - components: - - pos: -18.5,-99.5 - parent: 30 - type: Transform -- uid: 10471 - type: Grille - components: - - pos: -19.5,-99.5 - parent: 30 - type: Transform -- uid: 10472 - type: Grille - components: - - pos: -20.5,-99.5 - parent: 30 - type: Transform -- uid: 10473 - type: Grille - components: - - pos: -16.5,-99.5 - parent: 30 - type: Transform -- uid: 10474 - type: Grille - components: - - pos: -15.5,-99.5 - parent: 30 - type: Transform -- uid: 10475 - type: Grille - components: - - pos: -11.5,-99.5 - parent: 30 - type: Transform -- uid: 10476 - type: Grille - components: - - pos: -10.5,-99.5 - parent: 30 - type: Transform -- uid: 10477 - type: Grille - components: - - pos: -9.5,-99.5 - parent: 30 - type: Transform -- uid: 10478 - type: Grille - components: - - pos: -8.5,-99.5 - parent: 30 - type: Transform -- uid: 10479 - type: Grille - components: - - pos: -7.5,-99.5 - parent: 30 - type: Transform -- uid: 10480 - type: Grille - components: - - pos: -1.5,-99.5 - parent: 30 - type: Transform -- uid: 10481 - type: Grille - components: - - pos: -1.5,-98.5 - parent: 30 - type: Transform -- uid: 10482 - type: Grille - components: - - pos: -1.5,-97.5 - parent: 30 - type: Transform -- uid: 10483 - type: Grille - components: - - pos: -1.5,-92.5 - parent: 30 - type: Transform -- uid: 10484 - type: Grille - components: - - pos: -1.5,-88.5 - parent: 30 - type: Transform -- uid: 10485 - type: Grille - components: - - pos: -1.5,-87.5 - parent: 30 - type: Transform -- uid: 10486 - type: Grille - components: - - pos: -1.5,-86.5 - parent: 30 - type: Transform -- uid: 10487 - type: Grille - components: - - pos: -1.5,-82.5 - parent: 30 - type: Transform -- uid: 10488 - type: Grille - components: - - pos: -1.5,-83.5 - parent: 30 - type: Transform -- uid: 10489 - type: Grille - components: - - pos: -1.5,-84.5 - parent: 30 - type: Transform -- uid: 10490 - type: Grille - components: - - pos: -1.5,-75.5 - parent: 30 - type: Transform -- uid: 10491 - type: Grille - components: - - pos: -1.5,-74.5 - parent: 30 - type: Transform -- uid: 10492 - type: Grille - components: - - pos: -1.5,-73.5 - parent: 30 - type: Transform -- uid: 10493 - type: Grille - components: - - pos: -1.5,-72.5 - parent: 30 - type: Transform -- uid: 10494 - type: Grille - components: - - pos: -1.5,-70.5 - parent: 30 - type: Transform -- uid: 10495 - type: Grille - components: - - pos: -1.5,-69.5 - parent: 30 - type: Transform -- uid: 10496 - type: Grille - components: - - pos: -1.5,-68.5 - parent: 30 - type: Transform -- uid: 10497 - type: Grille - components: - - pos: -1.5,-67.5 - parent: 30 - type: Transform -- uid: 10498 - type: Grille - components: - - pos: -2.5,-67.5 - parent: 30 - type: Transform -- uid: 10499 - type: Grille - components: - - pos: -6.5,-67.5 - parent: 30 - type: Transform -- uid: 10500 - type: Grille - components: - - pos: -7.5,-67.5 - parent: 30 - type: Transform -- uid: 10501 - type: Grille - components: - - pos: -8.5,-67.5 - parent: 30 - type: Transform -- uid: 10502 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-67.5 - parent: 30 - type: Transform -- uid: 10503 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-67.5 - parent: 30 - type: Transform -- uid: 10504 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-67.5 - parent: 30 - type: Transform -- uid: 10505 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-71.5 - parent: 30 - type: Transform -- uid: 10506 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -1.5,-76.5 - parent: 30 - type: Transform -- uid: 10507 - type: GrilleBroken - components: - - pos: -1.5,-81.5 - parent: 30 - type: Transform -- uid: 10508 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-85.5 - parent: 30 - type: Transform -- uid: 10509 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -1.5,-89.5 - parent: 30 - type: Transform -- uid: 10510 - type: GrilleBroken - components: - - pos: -1.5,-91.5 - parent: 30 - type: Transform -- uid: 10511 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -1.5,-93.5 - parent: 30 - type: Transform -- uid: 10512 - type: GrilleBroken - components: - - pos: -1.5,-96.5 - parent: 30 - type: Transform -- uid: 10513 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-99.5 - parent: 30 - type: Transform -- uid: 10514 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-99.5 - parent: 30 - type: Transform -- uid: 10515 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-99.5 - parent: 30 - type: Transform -- uid: 10516 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-99.5 - parent: 30 - type: Transform -- uid: 10517 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -21.5,-99.5 - parent: 30 - type: Transform -- uid: 10518 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -22.5,-99.5 - parent: 30 - type: Transform -- uid: 10519 - type: GrilleBroken - components: - - pos: -33.5,-96.5 - parent: 30 - type: Transform -- uid: 10520 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -33.5,-94.5 - parent: 30 - type: Transform -- uid: 10521 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -33.5,-92.5 - parent: 30 - type: Transform -- uid: 10522 - type: GrilleBroken - components: - - pos: -33.5,-92.5 - parent: 30 - type: Transform -- uid: 10523 - type: GrilleBroken - components: - - pos: -33.5,-88.5 - parent: 30 - type: Transform -- uid: 10524 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -33.5,-85.5 - parent: 30 - type: Transform -- uid: 10525 - type: GrilleBroken - components: - - pos: -33.5,-79.5 - parent: 30 - type: Transform -- uid: 10526 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -33.5,-77.5 - parent: 30 - type: Transform -- uid: 10527 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-72.5 - parent: 30 - type: Transform -- uid: 10528 - type: GrilleBroken - components: - - pos: -33.5,-70.5 - parent: 30 - type: Transform -- uid: 10529 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -33.5,-68.5 - parent: 30 - type: Transform -- uid: 10530 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-67.5 - parent: 30 - type: Transform -- uid: 10531 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-67.5 - parent: 30 - type: Transform -- uid: 10532 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-67.5 - parent: 30 - type: Transform -- uid: 10533 - type: SubstationBasic - components: - - name: Singulo Substation - type: MetaData - - pos: -16.5,-51.5 - parent: 30 - type: Transform -- uid: 10534 - type: CableMV - components: - - pos: -16.5,-51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10535 - type: CableHV - components: - - pos: -16.5,-51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10536 - type: CableApcExtension - components: - - pos: 3.5,-38.5 - parent: 30 - type: Transform -- uid: 10537 - type: CableMV - components: - - pos: 3.5,-38.5 - parent: 30 - type: Transform -- uid: 10538 - type: CableMV - components: - - pos: 2.5,-38.5 - parent: 30 - type: Transform -- uid: 10539 - type: CableMV - components: - - pos: 1.5,-38.5 - parent: 30 - type: Transform -- uid: 10540 - type: CableMV - components: - - pos: 0.5,-38.5 - parent: 30 - type: Transform -- uid: 10541 - type: CableMV - components: - - pos: -0.5,-38.5 - parent: 30 - type: Transform -- uid: 10542 - type: CableMV - components: - - pos: -1.5,-38.5 - parent: 30 - type: Transform -- uid: 10543 - type: CableMV - components: - - pos: -1.5,-38.5 - parent: 30 - type: Transform -- uid: 10544 - type: CableMV - components: - - pos: -2.5,-38.5 - parent: 30 - type: Transform -- uid: 10545 - type: CableMV - components: - - pos: -3.5,-38.5 - parent: 30 - type: Transform -- uid: 10546 - type: CableMV - components: - - pos: -4.5,-38.5 - parent: 30 - type: Transform -- uid: 10547 - type: CableMV - components: - - pos: -20.5,-38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10548 - type: CableMV - components: - - pos: -19.5,-38.5 - parent: 30 - type: Transform -- uid: 10549 - type: CableMV - components: - - pos: -18.5,-38.5 - parent: 30 - type: Transform -- uid: 10550 - type: CableMV - components: - - pos: -17.5,-38.5 - parent: 30 - type: Transform -- uid: 10551 - type: CableMV - components: - - pos: -16.5,-38.5 - parent: 30 - type: Transform -- uid: 10552 - type: CableMV - components: - - pos: -15.5,-38.5 - parent: 30 - type: Transform -- uid: 10553 - type: CableMV - components: - - pos: -14.5,-38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10554 - type: CableMV - components: - - pos: -13.5,-38.5 - parent: 30 - type: Transform -- uid: 10555 - type: CableMV - components: - - pos: -12.5,-38.5 - parent: 30 - type: Transform -- uid: 10556 - type: CableMV - components: - - pos: -11.5,-38.5 - parent: 30 - type: Transform -- uid: 10557 - type: CableMV - components: - - pos: -10.5,-38.5 - parent: 30 - type: Transform -- uid: 10558 - type: CableMV - components: - - pos: -9.5,-38.5 - parent: 30 - type: Transform -- uid: 10559 - type: CableMV - components: - - pos: -8.5,-38.5 - parent: 30 - type: Transform -- uid: 10560 - type: CableMV - components: - - pos: -7.5,-38.5 - parent: 30 - type: Transform -- uid: 10561 - type: CableMV - components: - - pos: -6.5,-38.5 - parent: 30 - type: Transform -- uid: 10562 - type: CableMV - components: - - pos: -5.5,-38.5 - parent: 30 - type: Transform -- uid: 10563 - type: CableMV - components: - - pos: 1.5,-37.5 - parent: 30 - type: Transform -- uid: 10564 - type: CableMV - components: - - pos: 1.5,-36.5 - parent: 30 - type: Transform -- uid: 10565 - type: CableMV - components: - - pos: 1.5,-35.5 - parent: 30 - type: Transform -- uid: 10566 - type: CableMV - components: - - pos: 1.5,-34.5 - parent: 30 - type: Transform -- uid: 10567 - type: CableMV - components: - - pos: 1.5,-33.5 - parent: 30 - type: Transform -- uid: 10568 - type: CableMV - components: - - pos: 1.5,-32.5 - parent: 30 - type: Transform -- uid: 10569 - type: CableMV - components: - - pos: 0.5,-32.5 - parent: 30 - type: Transform -- uid: 10570 - type: CableMV - components: - - pos: 0.5,-31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10571 - type: CableMV - components: - - pos: 2.5,-33.5 - parent: 30 - type: Transform -- uid: 10572 - type: CableMV - components: - - pos: 3.5,-33.5 - parent: 30 - type: Transform -- uid: 10573 - type: CableMV - components: - - pos: 4.5,-33.5 - parent: 30 - type: Transform -- uid: 10574 - type: CableMV - components: - - pos: 5.5,-33.5 - parent: 30 - type: Transform -- uid: 10575 - type: CableMV - components: - - pos: 5.5,-32.5 - parent: 30 - type: Transform -- uid: 10576 - type: CableMV - components: - - pos: 5.5,-31.5 - parent: 30 - type: Transform -- uid: 10577 - type: CableMV - components: - - pos: 6.5,-31.5 - parent: 30 - type: Transform -- uid: 10578 - type: CableMV - components: - - pos: 8.5,-31.5 - parent: 30 - type: Transform -- uid: 10579 - type: CableMV - components: - - pos: 9.5,-31.5 - parent: 30 - type: Transform -- uid: 10580 - type: CableMV - components: - - pos: 7.5,-31.5 - parent: 30 - type: Transform -- uid: 10581 - type: CableMV - components: - - pos: 9.5,-30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10582 - type: CableApcExtension - components: - - pos: -20.5,-38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10583 - type: CableApcExtension - components: - - pos: -19.5,-38.5 - parent: 30 - type: Transform -- uid: 10584 - type: CableApcExtension - components: - - pos: -18.5,-38.5 - parent: 30 - type: Transform -- uid: 10585 - type: CableApcExtension - components: - - pos: -17.5,-38.5 - parent: 30 - type: Transform -- uid: 10586 - type: CableApcExtension - components: - - pos: -18.5,-37.5 - parent: 30 - type: Transform -- uid: 10587 - type: CableApcExtension - components: - - pos: -18.5,-36.5 - parent: 30 - type: Transform -- uid: 10588 - type: CableApcExtension - components: - - pos: -17.5,-36.5 - parent: 30 - type: Transform -- uid: 10589 - type: CableApcExtension - components: - - pos: -16.5,-36.5 - parent: 30 - type: Transform -- uid: 10590 - type: CableApcExtension - components: - - pos: -16.5,-35.5 - parent: 30 - type: Transform -- uid: 10591 - type: CableApcExtension - components: - - pos: -16.5,-34.5 - parent: 30 - type: Transform -- uid: 10592 - type: CableApcExtension - components: - - pos: -18.5,-39.5 - parent: 30 - type: Transform -- uid: 10593 - type: CableApcExtension - components: - - pos: -18.5,-40.5 - parent: 30 - type: Transform -- uid: 10594 - type: CableApcExtension - components: - - pos: -18.5,-41.5 - parent: 30 - type: Transform -- uid: 10595 - type: CableApcExtension - components: - - pos: -18.5,-42.5 - parent: 30 - type: Transform -- uid: 10596 - type: CableApcExtension - components: - - pos: -18.5,-43.5 - parent: 30 - type: Transform -- uid: 10597 - type: CableApcExtension - components: - - pos: -19.5,-42.5 - parent: 30 - type: Transform -- uid: 10598 - type: CableApcExtension - components: - - pos: -20.5,-42.5 - parent: 30 - type: Transform -- uid: 10599 - type: CableApcExtension - components: - - pos: -21.5,-42.5 - parent: 30 - type: Transform -- uid: 10600 - type: CableApcExtension - components: - - pos: -22.5,-42.5 - parent: 30 - type: Transform -- uid: 10601 - type: CableApcExtension - components: - - pos: -23.5,-42.5 - parent: 30 - type: Transform -- uid: 10602 - type: CableApcExtension - components: - - pos: -23.5,-43.5 - parent: 30 - type: Transform -- uid: 10603 - type: CableApcExtension - components: - - pos: -23.5,-44.5 - parent: 30 - type: Transform -- uid: 10604 - type: CableApcExtension - components: - - pos: -23.5,-45.5 - parent: 30 - type: Transform -- uid: 10605 - type: CableApcExtension - components: - - pos: -23.5,-46.5 - parent: 30 - type: Transform -- uid: 10606 - type: CableApcExtension - components: - - pos: -23.5,-47.5 - parent: 30 - type: Transform -- uid: 10607 - type: CableApcExtension - components: - - pos: -23.5,-48.5 - parent: 30 - type: Transform -- uid: 10608 - type: CableApcExtension - components: - - pos: -23.5,-49.5 - parent: 30 - type: Transform -- uid: 10609 - type: CableApcExtension - components: - - pos: -23.5,-50.5 - parent: 30 - type: Transform -- uid: 10610 - type: CableApcExtension - components: - - pos: -23.5,-41.5 - parent: 30 - type: Transform -- uid: 10611 - type: CableApcExtension - components: - - pos: -23.5,-40.5 - parent: 30 - type: Transform -- uid: 10612 - type: CableApcExtension - components: - - pos: -24.5,-40.5 - parent: 30 - type: Transform -- uid: 10613 - type: CableApcExtension - components: - - pos: -25.5,-40.5 - parent: 30 - type: Transform -- uid: 10614 - type: CableApcExtension - components: - - pos: -22.5,-40.5 - parent: 30 - type: Transform -- uid: 10615 - type: CableApcExtension - components: - - pos: -21.5,-40.5 - parent: 30 - type: Transform -- uid: 10616 - type: CableApcExtension - components: - - pos: -17.5,-43.5 - parent: 30 - type: Transform -- uid: 10617 - type: CableApcExtension - components: - - pos: -17.5,-44.5 - parent: 30 - type: Transform -- uid: 10618 - type: CableApcExtension - components: - - pos: -17.5,-45.5 - parent: 30 - type: Transform -- uid: 10619 - type: CableApcExtension - components: - - pos: -17.5,-46.5 - parent: 30 - type: Transform -- uid: 10620 - type: CableApcExtension - components: - - pos: -17.5,-47.5 - parent: 30 - type: Transform -- uid: 10621 - type: CableApcExtension - components: - - pos: -17.5,-48.5 - parent: 30 - type: Transform -- uid: 10622 - type: CableApcExtension - components: - - pos: -17.5,-48.5 - parent: 30 - type: Transform -- uid: 10623 - type: CableApcExtension - components: - - pos: -17.5,-49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10624 - type: CableApcExtension - components: - - pos: -17.5,-50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10625 - type: CableApcExtension - components: - - pos: -17.5,-51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10626 - type: CableApcExtension - components: - - pos: -17.5,-52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10627 - type: CableApcExtension - components: - - pos: -17.5,-53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10628 - type: CableApcExtension - components: - - pos: -17.5,-54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10629 - type: CableApcExtension - components: - - pos: -17.5,-40.5 - parent: 30 - type: Transform -- uid: 10630 - type: CableApcExtension - components: - - pos: -16.5,-40.5 - parent: 30 - type: Transform -- uid: 10631 - type: CableApcExtension - components: - - pos: -15.5,-40.5 - parent: 30 - type: Transform -- uid: 10632 - type: CableApcExtension - components: - - pos: -14.5,-40.5 - parent: 30 - type: Transform -- uid: 10633 - type: CableApcExtension - components: - - pos: -13.5,-40.5 - parent: 30 - type: Transform -- uid: 10634 - type: CableApcExtension - components: - - pos: -12.5,-40.5 - parent: 30 - type: Transform -- uid: 10635 - type: CableApcExtension - components: - - pos: -11.5,-40.5 - parent: 30 - type: Transform -- uid: 10636 - type: CableApcExtension - components: - - pos: -10.5,-40.5 - parent: 30 - type: Transform -- uid: 10637 - type: CableApcExtension - components: - - pos: -9.5,-40.5 - parent: 30 - type: Transform -- uid: 10638 - type: CableApcExtension - components: - - pos: -8.5,-40.5 - parent: 30 - type: Transform -- uid: 10639 - type: CableApcExtension - components: - - pos: -7.5,-40.5 - parent: 30 - type: Transform -- uid: 10640 - type: CableApcExtension - components: - - pos: -7.5,-41.5 - parent: 30 - type: Transform -- uid: 10641 - type: CableApcExtension - components: - - pos: -7.5,-42.5 - parent: 30 - type: Transform -- uid: 10642 - type: CableApcExtension - components: - - pos: -7.5,-43.5 - parent: 30 - type: Transform -- uid: 10643 - type: CableApcExtension - components: - - pos: -7.5,-43.5 - parent: 30 - type: Transform -- uid: 10644 - type: CableApcExtension - components: - - pos: -7.5,-44.5 - parent: 30 - type: Transform -- uid: 10645 - type: CableApcExtension - components: - - pos: -8.5,-44.5 - parent: 30 - type: Transform -- uid: 10646 - type: CableApcExtension - components: - - pos: -9.5,-44.5 - parent: 30 - type: Transform -- uid: 10647 - type: CableApcExtension - components: - - pos: -10.5,-44.5 - parent: 30 - type: Transform -- uid: 10648 - type: CableApcExtension - components: - - pos: -11.5,-44.5 - parent: 30 - type: Transform -- uid: 10649 - type: CableApcExtension - components: - - pos: -12.5,-44.5 - parent: 30 - type: Transform -- uid: 10650 - type: CableApcExtension - components: - - pos: -13.5,-44.5 - parent: 30 - type: Transform -- uid: 10651 - type: CableApcExtension - components: - - pos: -13.5,-45.5 - parent: 30 - type: Transform -- uid: 10652 - type: CableApcExtension - components: - - pos: -13.5,-46.5 - parent: 30 - type: Transform -- uid: 10653 - type: CableApcExtension - components: - - pos: -13.5,-47.5 - parent: 30 - type: Transform -- uid: 10654 - type: CableApcExtension - components: - - pos: -13.5,-48.5 - parent: 30 - type: Transform -- uid: 10655 - type: CableApcExtension - components: - - pos: -13.5,-49.5 - parent: 30 - type: Transform -- uid: 10656 - type: CableApcExtension - components: - - pos: -13.5,-50.5 - parent: 30 - type: Transform -- uid: 10657 - type: CableApcExtension - components: - - pos: -13.5,-51.5 - parent: 30 - type: Transform -- uid: 10658 - type: CableApcExtension - components: - - pos: -13.5,-52.5 - parent: 30 - type: Transform -- uid: 10659 - type: CableApcExtension - components: - - pos: -13.5,-53.5 - parent: 30 - type: Transform -- uid: 10660 - type: CableApcExtension - components: - - pos: -13.5,-54.5 - parent: 30 - type: Transform -- uid: 10661 - type: CableApcExtension - components: - - pos: -13.5,-55.5 - parent: 30 - type: Transform -- uid: 10662 - type: CableApcExtension - components: - - pos: -12.5,-55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10663 - type: CableApcExtension - components: - - pos: -12.5,-56.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10664 - type: CableApcExtension - components: - - pos: -12.5,-57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10665 - type: CableApcExtension - components: - - pos: -12.5,-58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10666 - type: CableApcExtension - components: - - pos: -11.5,-58.5 - parent: 30 - type: Transform -- uid: 10667 - type: CableApcExtension - components: - - pos: -9.5,-58.5 - parent: 30 - type: Transform -- uid: 10668 - type: CableApcExtension - components: - - pos: -10.5,-58.5 - parent: 30 - type: Transform -- uid: 10669 - type: CableApcExtension - components: - - pos: -8.5,-58.5 - parent: 30 - type: Transform -- uid: 10670 - type: CableApcExtension - components: - - pos: -7.5,-58.5 - parent: 30 - type: Transform -- uid: 10671 - type: CableApcExtension - components: - - pos: -6.5,-58.5 - parent: 30 - type: Transform -- uid: 10672 - type: CableApcExtension - components: - - pos: -5.5,-58.5 - parent: 30 - type: Transform -- uid: 10673 - type: CableApcExtension - components: - - pos: -4.5,-58.5 - parent: 30 - type: Transform -- uid: 10674 - type: CableApcExtension - components: - - pos: -3.5,-58.5 - parent: 30 - type: Transform -- uid: 10675 - type: CableApcExtension - components: - - pos: -3.5,-57.5 - parent: 30 - type: Transform -- uid: 10676 - type: CableApcExtension - components: - - pos: -2.5,-57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10677 - type: CableApcExtension - components: - - pos: -2.5,-56.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10678 - type: CableApcExtension - components: - - pos: -2.5,-55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10679 - type: CableApcExtension - components: - - pos: -1.5,-55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10680 - type: CableApcExtension - components: - - pos: -1.5,-53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10681 - type: CableApcExtension - components: - - pos: -1.5,-52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10682 - type: CableApcExtension - components: - - pos: -1.5,-54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10683 - type: CableApcExtension - components: - - pos: -1.5,-51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10684 - type: CableApcExtension - components: - - pos: -1.5,-50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10685 - type: CableApcExtension - components: - - pos: -1.5,-49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10686 - type: CableApcExtension - components: - - pos: -1.5,-48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10687 - type: CableApcExtension - components: - - pos: -1.5,-47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10688 - type: CableApcExtension - components: - - pos: -1.5,-46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10689 - type: CableApcExtension - components: - - pos: -1.5,-45.5 - parent: 30 - type: Transform -- uid: 10690 - type: CableApcExtension - components: - - pos: -2.5,-44.5 - parent: 30 - type: Transform -- uid: 10691 - type: CableApcExtension - components: - - pos: -3.5,-44.5 - parent: 30 - type: Transform -- uid: 10692 - type: CableApcExtension - components: - - pos: -1.5,-44.5 - parent: 30 - type: Transform -- uid: 10693 - type: CableApcExtension - components: - - pos: -4.5,-44.5 - parent: 30 - type: Transform -- uid: 10694 - type: CableApcExtension - components: - - pos: -6.5,-44.5 - parent: 30 - type: Transform -- uid: 10695 - type: CableApcExtension - components: - - pos: -5.5,-44.5 - parent: 30 - type: Transform -- uid: 10696 - type: CableApcExtension - components: - - pos: -7.5,-57.5 - parent: 30 - type: Transform -- uid: 10697 - type: CableApcExtension - components: - - pos: -7.5,-56.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10698 - type: CableApcExtension - components: - - pos: -7.5,-55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10699 - type: CableApcExtension - components: - - pos: -7.5,-54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10700 - type: CableApcExtension - components: - - pos: -7.5,-53.5 - parent: 30 - type: Transform -- uid: 10701 - type: CableApcExtension - components: - - pos: -7.5,-52.5 - parent: 30 - type: Transform -- uid: 10702 - type: CableApcExtension - components: - - pos: -7.5,-51.5 - parent: 30 - type: Transform -- uid: 10703 - type: CableApcExtension - components: - - pos: -7.5,-50.5 - parent: 30 - type: Transform -- uid: 10704 - type: CableApcExtension - components: - - pos: -7.5,-49.5 - parent: 30 - type: Transform -- uid: 10705 - type: CableApcExtension - components: - - pos: -7.5,-48.5 - parent: 30 - type: Transform -- uid: 10706 - type: CableApcExtension - components: - - pos: -7.5,-47.5 - parent: 30 - type: Transform -- uid: 10707 - type: CableApcExtension - components: - - pos: -8.5,-51.5 - parent: 30 - type: Transform -- uid: 10708 - type: CableApcExtension - components: - - pos: -9.5,-51.5 - parent: 30 - type: Transform -- uid: 10709 - type: CableApcExtension - components: - - pos: -10.5,-51.5 - parent: 30 - type: Transform -- uid: 10710 - type: CableApcExtension - components: - - pos: -11.5,-51.5 - parent: 30 - type: Transform -- uid: 10711 - type: CableApcExtension - components: - - pos: -6.5,-51.5 - parent: 30 - type: Transform -- uid: 10712 - type: CableApcExtension - components: - - pos: -5.5,-51.5 - parent: 30 - type: Transform -- uid: 10713 - type: CableApcExtension - components: - - pos: -4.5,-51.5 - parent: 30 - type: Transform -- uid: 10714 - type: CableApcExtension - components: - - pos: -3.5,-51.5 - parent: 30 - type: Transform -- uid: 10715 - type: CableApcExtension - components: - - pos: -12.5,-51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10716 - type: CableApcExtension - components: - - pos: -2.5,-51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10717 - type: CableApcExtension - components: - - pos: 0.5,-31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10718 - type: CableApcExtension - components: - - pos: 0.5,-32.5 - parent: 30 - type: Transform -- uid: 10719 - type: CableApcExtension - components: - - pos: 0.5,-33.5 - parent: 30 - type: Transform -- uid: 10720 - type: CableApcExtension - components: - - pos: 1.5,-33.5 - parent: 30 - type: Transform -- uid: 10721 - type: CableApcExtension - components: - - pos: 1.5,-34.5 - parent: 30 - type: Transform -- uid: 10722 - type: CableApcExtension - components: - - pos: 1.5,-35.5 - parent: 30 - type: Transform -- uid: 10723 - type: CableApcExtension - components: - - pos: 1.5,-36.5 - parent: 30 - type: Transform -- uid: 10724 - type: CableApcExtension - components: - - pos: 1.5,-37.5 - parent: 30 - type: Transform -- uid: 10725 - type: CableApcExtension - components: - - pos: 1.5,-38.5 - parent: 30 - type: Transform -- uid: 10726 - type: CableApcExtension - components: - - pos: 0.5,-38.5 - parent: 30 - type: Transform -- uid: 10727 - type: CableApcExtension - components: - - pos: 2.5,-38.5 - parent: 30 - type: Transform -- uid: 10728 - type: CableApcExtension - components: - - pos: 2.5,-33.5 - parent: 30 - type: Transform -- uid: 10729 - type: CableApcExtension - components: - - pos: 3.5,-33.5 - parent: 30 - type: Transform -- uid: 10730 - type: CableApcExtension - components: - - pos: 0.5,-30.5 - parent: 30 - type: Transform -- uid: 10731 - type: CableApcExtension - components: - - pos: 0.5,-29.5 - parent: 30 - type: Transform -- uid: 10732 - type: CableApcExtension - components: - - pos: 1.5,-29.5 - parent: 30 - type: Transform -- uid: 10733 - type: CableApcExtension - components: - - pos: 2.5,-29.5 - parent: 30 - type: Transform -- uid: 10734 - type: CableApcExtension - components: - - pos: 3.5,-29.5 - parent: 30 - type: Transform -- uid: 10735 - type: CableApcExtension - components: - - pos: 3.5,-28.5 - parent: 30 - type: Transform -- uid: 10736 - type: CableApcExtension - components: - - pos: 3.5,-27.5 - parent: 30 - type: Transform -- uid: 10737 - type: CableApcExtension - components: - - pos: 2.5,-27.5 - parent: 30 - type: Transform -- uid: 10738 - type: CableApcExtension - components: - - pos: 2.5,-26.5 - parent: 30 - type: Transform -- uid: 10739 - type: AirSensor - components: - - pos: -7.5,-50.5 - parent: 30 - type: Transform -- uid: 10740 - type: CableApcExtension - components: - - pos: 2.5,-20.5 - parent: 30 - type: Transform -- uid: 10741 - type: ShuttersRadiationOpen - components: - - pos: -4.5,-42.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver -- uid: 10742 - type: ShuttersRadiationOpen - components: - - pos: -6.5,-42.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver -- uid: 10743 - type: CableApcExtension - components: - - pos: 2.5,-21.5 - parent: 30 - type: Transform -- uid: 10744 - type: CableApcExtension - components: - - pos: -0.5,-29.5 - parent: 30 - type: Transform -- uid: 10745 - type: CableApcExtension - components: - - pos: -1.5,-29.5 - parent: 30 - type: Transform -- uid: 10746 - type: CableApcExtension - components: - - pos: -2.5,-29.5 - parent: 30 - type: Transform -- uid: 10747 - type: CableApcExtension - components: - - pos: -2.5,-28.5 - parent: 30 - type: Transform -- uid: 10748 - type: CableApcExtension - components: - - pos: -2.5,-27.5 - parent: 30 - type: Transform -- uid: 10749 - type: CableApcExtension - components: - - pos: -2.5,-26.5 - parent: 30 - type: Transform -- uid: 10750 - type: CableApcExtension - components: - - pos: -2.5,-25.5 - parent: 30 - type: Transform -- uid: 10751 - type: CableApcExtension - components: - - pos: -3.5,-29.5 - parent: 30 - type: Transform -- uid: 10752 - type: CableApcExtension - components: - - pos: -4.5,-29.5 - parent: 30 - type: Transform -- uid: 10753 - type: CableApcExtension - components: - - pos: -5.5,-29.5 - parent: 30 - type: Transform -- uid: 10754 - type: CableApcExtension - components: - - pos: -6.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10755 - type: CableApcExtension - components: - - pos: -7.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10756 - type: CableApcExtension - components: - - pos: -8.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10757 - type: CableApcExtension - components: - - pos: -9.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10758 - type: CableApcExtension - components: - - pos: -10.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10759 - type: CableApcExtension - components: - - pos: -11.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10760 - type: CableApcExtension - components: - - pos: -12.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10761 - type: CableApcExtension - components: - - pos: -13.5,-29.5 - parent: 30 - type: Transform -- uid: 10762 - type: CableApcExtension - components: - - pos: -14.5,-29.5 - parent: 30 - type: Transform -- uid: 10763 - type: CableApcExtension - components: - - pos: -16.5,-29.5 - parent: 30 - type: Transform -- uid: 10764 - type: CableApcExtension - components: - - pos: -15.5,-29.5 - parent: 30 - type: Transform -- uid: 10765 - type: CableApcExtension - components: - - pos: -16.5,-30.5 - parent: 30 - type: Transform -- uid: 10766 - type: CableApcExtension - components: - - pos: -16.5,-31.5 - parent: 30 - type: Transform -- uid: 10767 - type: CableApcExtension - components: - - pos: -12.5,-28.5 - parent: 30 - type: Transform -- uid: 10768 - type: CableApcExtension - components: - - pos: -12.5,-27.5 - parent: 30 - type: Transform -- uid: 10769 - type: CableApcExtension - components: - - pos: -12.5,-26.5 - parent: 30 - type: Transform -- uid: 10770 - type: CableApcExtension - components: - - pos: -12.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10771 - type: CableApcExtension - components: - - pos: -10.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10772 - type: CableApcExtension - components: - - pos: -11.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10773 - type: CableApcExtension - components: - - pos: -9.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10774 - type: CableApcExtension - components: - - pos: -8.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10775 - type: CableApcExtension - components: - - pos: -7.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10776 - type: CableApcExtension - components: - - pos: -13.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10777 - type: CableApcExtension - components: - - pos: -14.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10778 - type: CableApcExtension - components: - - pos: -15.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10779 - type: CableApcExtension - components: - - pos: -16.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10780 - type: CableApcExtension - components: - - pos: -17.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10781 - type: CableApcExtension - components: - - pos: -18.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10782 - type: CableApcExtension - components: - - pos: -19.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10783 - type: CableApcExtension - components: - - pos: -20.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10784 - type: CableApcExtension - components: - - pos: -21.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10785 - type: CableApcExtension - components: - - pos: -12.5,-30.5 - parent: 30 - type: Transform -- uid: 10786 - type: CableApcExtension - components: - - pos: -12.5,-31.5 - parent: 30 - type: Transform -- uid: 10787 - type: CableApcExtension - components: - - pos: -12.5,-32.5 - parent: 30 - type: Transform -- uid: 10788 - type: CableApcExtension - components: - - pos: -12.5,-33.5 - parent: 30 - type: Transform -- uid: 10789 - type: CableApcExtension - components: - - pos: -12.5,-34.5 - parent: 30 - type: Transform -- uid: 10790 - type: CableApcExtension - components: - - pos: -12.5,-35.5 - parent: 30 - type: Transform -- uid: 10791 - type: CableApcExtension - components: - - pos: -11.5,-33.5 - parent: 30 - type: Transform -- uid: 10792 - type: CableApcExtension - components: - - pos: -10.5,-33.5 - parent: 30 - type: Transform -- uid: 10793 - type: CableApcExtension - components: - - pos: -9.5,-33.5 - parent: 30 - type: Transform -- uid: 10794 - type: CableApcExtension - components: - - pos: -8.5,-33.5 - parent: 30 - type: Transform -- uid: 10795 - type: CableApcExtension - components: - - pos: -7.5,-33.5 - parent: 30 - type: Transform -- uid: 10796 - type: CableApcExtension - components: - - pos: -6.5,-33.5 - parent: 30 - type: Transform -- uid: 10797 - type: CableApcExtension - components: - - pos: -5.5,-33.5 - parent: 30 - type: Transform -- uid: 10798 - type: CableApcExtension - components: - - pos: -7.5,-30.5 - parent: 30 - type: Transform -- uid: 10799 - type: CableApcExtension - components: - - pos: -7.5,-31.5 - parent: 30 - type: Transform -- uid: 10800 - type: CableApcExtension - components: - - pos: -7.5,-28.5 - parent: 30 - type: Transform -- uid: 10801 - type: CableApcExtension - components: - - pos: -7.5,-27.5 - parent: 30 - type: Transform -- uid: 10802 - type: CableApcExtension - components: - - pos: -2.5,-24.5 - parent: 30 - type: Transform -- uid: 10803 - type: CableApcExtension - components: - - pos: -2.5,-23.5 - parent: 30 - type: Transform -- uid: 10804 - type: CableApcExtension - components: - - pos: -2.5,-22.5 - parent: 30 - type: Transform -- uid: 10805 - type: CableApcExtension - components: - - pos: -2.5,-21.5 - parent: 30 - type: Transform -- uid: 10806 - type: CableApcExtension - components: - - pos: -2.5,-20.5 - parent: 30 - type: Transform -- uid: 10807 - type: CableApcExtension - components: - - pos: -2.5,-19.5 - parent: 30 - type: Transform -- uid: 10808 - type: CableApcExtension - components: - - pos: -1.5,-19.5 - parent: 30 - type: Transform -- uid: 10809 - type: CableApcExtension - components: - - pos: 0.5,-19.5 - parent: 30 - type: Transform -- uid: 10810 - type: CableApcExtension - components: - - pos: -0.5,-19.5 - parent: 30 - type: Transform -- uid: 10811 - type: CableApcExtension - components: - - pos: -2.5,-18.5 - parent: 30 - type: Transform -- uid: 10812 - type: CableApcExtension - components: - - pos: -3.5,-24.5 - parent: 30 - type: Transform -- uid: 10813 - type: CableApcExtension - components: - - pos: -4.5,-24.5 - parent: 30 - type: Transform -- uid: 10814 - type: CableApcExtension - components: - - pos: 1.5,-19.5 - parent: 30 - type: Transform -- uid: 10815 - type: CableApcExtension - components: - - pos: -5.5,-23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10816 - type: CableApcExtension - components: - - pos: -5.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10817 - type: CableApcExtension - components: - - pos: 2.5,-19.5 - parent: 30 - type: Transform -- uid: 10818 - type: CableApcExtension - components: - - pos: -5.5,-21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10819 - type: CableApcExtension - components: - - pos: -5.5,-20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10820 - type: CableApcExtension - components: - - pos: 3.5,-19.5 - parent: 30 - type: Transform -- uid: 10821 - type: CableApcExtension - components: - - pos: 4.5,-19.5 - parent: 30 - type: Transform -- uid: 10822 - type: CableApcExtension - components: - - pos: 5.5,-19.5 - parent: 30 - type: Transform -- uid: 10823 - type: CableApcExtension - components: - - pos: 6.5,-19.5 - parent: 30 - type: Transform -- uid: 10824 - type: CableApcExtension - components: - - pos: 9.5,-30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10825 - type: CableApcExtension - components: - - pos: 9.5,-31.5 - parent: 30 - type: Transform -- uid: 10826 - type: CableApcExtension - components: - - pos: 8.5,-31.5 - parent: 30 - type: Transform -- uid: 10827 - type: CableApcExtension - components: - - pos: 7.5,-31.5 - parent: 30 - type: Transform -- uid: 10828 - type: CableApcExtension - components: - - pos: 6.5,-31.5 - parent: 30 - type: Transform -- uid: 10829 - type: CableApcExtension - components: - - pos: 5.5,-31.5 - parent: 30 - type: Transform -- uid: 10830 - type: CableApcExtension - components: - - pos: 5.5,-32.5 - parent: 30 - type: Transform -- uid: 10831 - type: CableApcExtension - components: - - pos: 5.5,-33.5 - parent: 30 - type: Transform -- uid: 10832 - type: CableApcExtension - components: - - pos: 5.5,-34.5 - parent: 30 - type: Transform -- uid: 10833 - type: CableApcExtension - components: - - pos: 5.5,-35.5 - parent: 30 - type: Transform -- uid: 10834 - type: CableApcExtension - components: - - pos: 5.5,-36.5 - parent: 30 - type: Transform -- uid: 10835 - type: CableApcExtension - components: - - pos: 10.5,-30.5 - parent: 30 - type: Transform -- uid: 10836 - type: CableApcExtension - components: - - pos: 11.5,-30.5 - parent: 30 - type: Transform -- uid: 10837 - type: CableApcExtension - components: - - pos: 11.5,-29.5 - parent: 30 - type: Transform -- uid: 10838 - type: CableApcExtension - components: - - pos: 11.5,-28.5 - parent: 30 - type: Transform -- uid: 10839 - type: CableApcExtension - components: - - pos: 11.5,-27.5 - parent: 30 - type: Transform -- uid: 10840 - type: CableApcExtension - components: - - pos: 11.5,-26.5 - parent: 30 - type: Transform -- uid: 10841 - type: CableApcExtension - components: - - pos: 11.5,-25.5 - parent: 30 - type: Transform -- uid: 10842 - type: CableApcExtension - components: - - pos: 11.5,-24.5 - parent: 30 - type: Transform -- uid: 10843 - type: CableApcExtension - components: - - pos: 11.5,-23.5 - parent: 30 - type: Transform -- uid: 10844 - type: CableApcExtension - components: - - pos: 11.5,-31.5 - parent: 30 - type: Transform -- uid: 10845 - type: CableApcExtension - components: - - pos: 12.5,-31.5 - parent: 30 - type: Transform -- uid: 10846 - type: CableApcExtension - components: - - pos: 13.5,-31.5 - parent: 30 - type: Transform -- uid: 10847 - type: CableApcExtension - components: - - pos: 14.5,-31.5 - parent: 30 - type: Transform -- uid: 10848 - type: CableApcExtension - components: - - pos: 15.5,-31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10849 - type: CableApcExtension - components: - - pos: 15.5,-30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10850 - type: CableApcExtension - components: - - pos: 15.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10851 - type: CableApcExtension - components: - - pos: 15.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10852 - type: CableApcExtension - components: - - pos: 15.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10853 - type: CableApcExtension - components: - - pos: 15.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10854 - type: CableApcExtension - components: - - pos: 15.5,-26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10855 - type: CableApcExtension - components: - - pos: 15.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10856 - type: CableApcExtension - components: - - pos: 15.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10857 - type: CableApcExtension - components: - - pos: 15.5,-23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10858 - type: CableApcExtension - components: - - pos: 15.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10859 - type: CableApcExtension - components: - - pos: 16.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10860 - type: CableApcExtension - components: - - pos: 17.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10861 - type: CableApcExtension - components: - - pos: 18.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10862 - type: CableApcExtension - components: - - pos: 19.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10863 - type: CableApcExtension - components: - - pos: 20.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10864 - type: CableApcExtension - components: - - pos: 19.5,-21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10865 - type: CableApcExtension - components: - - pos: 19.5,-20.5 - parent: 30 - type: Transform -- uid: 10866 - type: CableApcExtension - components: - - pos: 19.5,-19.5 - parent: 30 - type: Transform -- uid: 10867 - type: CableApcExtension - components: - - pos: 19.5,-18.5 - parent: 30 - type: Transform -- uid: 10868 - type: CableApcExtension - components: - - pos: 19.5,-17.5 - parent: 30 - type: Transform -- uid: 10869 - type: CableApcExtension - components: - - pos: 19.5,-16.5 - parent: 30 - type: Transform -- uid: 10870 - type: CableApcExtension - components: - - pos: 19.5,-15.5 - parent: 30 - type: Transform -- uid: 10871 - type: CableApcExtension - components: - - pos: 19.5,-14.5 - parent: 30 - type: Transform -- uid: 10872 - type: CableApcExtension - components: - - pos: 19.5,-13.5 - parent: 30 - type: Transform -- uid: 10873 - type: CableApcExtension - components: - - pos: 20.5,-18.5 - parent: 30 - type: Transform -- uid: 10874 - type: CableApcExtension - components: - - pos: 21.5,-18.5 - parent: 30 - type: Transform -- uid: 10875 - type: CableApcExtension - components: - - pos: 22.5,-18.5 - parent: 30 - type: Transform -- uid: 10876 - type: CableApcExtension - components: - - pos: 23.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10877 - type: CableApcExtension - components: - - pos: 24.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10878 - type: CableApcExtension - components: - - pos: 25.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10879 - type: CableApcExtension - components: - - pos: 21.5,-17.5 - parent: 30 - type: Transform -- uid: 10880 - type: CableApcExtension - components: - - pos: 21.5,-16.5 - parent: 30 - type: Transform -- uid: 10881 - type: CableApcExtension - components: - - pos: 21.5,-15.5 - parent: 30 - type: Transform -- uid: 10882 - type: CableApcExtension - components: - - pos: 21.5,-14.5 - parent: 30 - type: Transform -- uid: 10883 - type: CableApcExtension - components: - - pos: 10.5,-24.5 - parent: 30 - type: Transform -- uid: 10884 - type: CableApcExtension - components: - - pos: 9.5,-24.5 - parent: 30 - type: Transform -- uid: 10885 - type: CableApcExtension - components: - - pos: 8.5,-24.5 - parent: 30 - type: Transform -- uid: 10886 - type: CableApcExtension - components: - - pos: 7.5,-24.5 - parent: 30 - type: Transform -- uid: 10887 - type: CableApcExtension - components: - - pos: 6.5,-24.5 - parent: 30 - type: Transform -- uid: 10888 - type: CableApcExtension - components: - - pos: 6.5,-23.5 - parent: 30 - type: Transform -- uid: 10889 - type: CableApcExtension - components: - - pos: 6.5,-22.5 - parent: 30 - type: Transform -- uid: 10890 - type: CableApcExtension - components: - - pos: 6.5,-21.5 - parent: 30 - type: Transform -- uid: 10891 - type: CableApcExtension - components: - - pos: 6.5,-25.5 - parent: 30 - type: Transform -- uid: 10892 - type: CableApcExtension - components: - - pos: 6.5,-26.5 - parent: 30 - type: Transform -- uid: 10893 - type: CableApcExtension - components: - - pos: 6.5,-27.5 - parent: 30 - type: Transform -- uid: 10894 - type: CableApcExtension - components: - - pos: 6.5,-28.5 - parent: 30 - type: Transform -- uid: 10895 - type: CableApcExtension - components: - - pos: 6.5,-29.5 - parent: 30 - type: Transform -- uid: 10896 - type: CableApcExtension - components: - - pos: 6.5,-30.5 - parent: 30 - type: Transform -- uid: 10897 - type: CableApcExtension - components: - - pos: 5.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10898 - type: CableApcExtension - components: - - pos: 6.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10899 - type: CableApcExtension - components: - - pos: 8.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10900 - type: CableApcExtension - components: - - pos: 6.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10901 - type: CableApcExtension - components: - - pos: 7.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10902 - type: CableApcExtension - components: - - pos: 8.5,-36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10903 - type: CableApcExtension - components: - - pos: 8.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10904 - type: CableApcExtension - components: - - pos: 8.5,-34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10905 - type: CableApcExtension - components: - - pos: 8.5,-33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10906 - type: CableApcExtension - components: - - pos: 9.5,-33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10907 - type: CableApcExtension - components: - - pos: 10.5,-33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10908 - type: CableApcExtension - components: - - pos: 11.5,-33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10909 - type: CableApcExtension - components: - - pos: 12.5,-33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10910 - type: CableApcExtension - components: - - pos: 13.5,-33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10911 - type: CableApcExtension - components: - - pos: 14.5,-33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10912 - type: CableApcExtension - components: - - pos: 15.5,-33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10913 - type: CableApcExtension - components: - - pos: 16.5,-33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10914 - type: CableApcExtension - components: - - pos: 16.5,-34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10915 - type: CableApcExtension - components: - - pos: 16.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10916 - type: CableApcExtension - components: - - pos: 16.5,-36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10917 - type: CableApcExtension - components: - - pos: 16.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10918 - type: CableApcExtension - components: - - pos: 22.5,-36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10919 - type: CableApcExtension - components: - - pos: 22.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10920 - type: CableApcExtension - components: - - pos: 22.5,-34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10921 - type: CableApcExtension - components: - - pos: 22.5,-33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10922 - type: CableApcExtension - components: - - pos: 22.5,-32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10923 - type: CableApcExtension - components: - - pos: 22.5,-31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10924 - type: CableApcExtension - components: - - pos: 22.5,-30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10925 - type: CableApcExtension - components: - - pos: 22.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10926 - type: CableApcExtension - components: - - pos: 22.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10927 - type: CableApcExtension - components: - - pos: 22.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10928 - type: CableApcExtension - components: - - pos: 22.5,-26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10929 - type: CableApcExtension - components: - - pos: 22.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10930 - type: CableApcExtension - components: - - pos: 22.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10931 - type: CableApcExtension - components: - - pos: 22.5,-23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10932 - type: CableApcExtension - components: - - pos: 22.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10933 - type: CableApcExtension - components: - - pos: 22.5,-21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10934 - type: CableApcExtension - components: - - pos: 23.5,-21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10935 - type: CableApcExtension - components: - - pos: 27.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10936 - type: CableApcExtension - components: - - pos: 26.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10937 - type: CableApcExtension - components: - - pos: 25.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10938 - type: CableApcExtension - components: - - pos: 24.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10939 - type: CableApcExtension - components: - - pos: 23.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10940 - type: CableApcExtension - components: - - pos: 24.5,-21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10941 - type: CableApcExtension - components: - - pos: 28.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10942 - type: CableApcExtension - components: - - pos: 28.5,-23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10943 - type: CableApcExtension - components: - - pos: 28.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10944 - type: WallReinforced - components: - - pos: 28.5,-21.5 - parent: 30 - type: Transform -- uid: 10945 - type: WallReinforced - components: - - pos: 27.5,-21.5 - parent: 30 - type: Transform -- uid: 10946 - type: WallReinforced - components: - - pos: 26.5,-21.5 - parent: 30 - type: Transform -- uid: 10947 - type: WallReinforced - components: - - pos: 25.5,-21.5 - parent: 30 - type: Transform -- uid: 10948 - type: CableApcExtension - components: - - pos: 28.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10949 - type: CableApcExtension - components: - - pos: 28.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10950 - type: CableApcExtension - components: - - pos: 28.5,-26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10951 - type: CableApcExtension - components: - - pos: 28.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10952 - type: CableApcExtension - components: - - pos: 28.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10953 - type: CableApcExtension - components: - - pos: 28.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10954 - type: CableApcExtension - components: - - pos: 28.5,-30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10955 - type: CableApcExtension - components: - - pos: 28.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10956 - type: CableApcExtension - components: - - pos: 28.5,-31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10957 - type: CableApcExtension - components: - - pos: 28.5,-32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10958 - type: CableApcExtension - components: - - pos: 28.5,-32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10959 - type: CableApcExtension - components: - - pos: 28.5,-33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10960 - type: CableApcExtension - components: - - pos: 28.5,-34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10961 - type: CableApcExtension - components: - - pos: 28.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10962 - type: CableApcExtension - components: - - pos: 27.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10963 - type: CableApcExtension - components: - - pos: 26.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10964 - type: CableApcExtension - components: - - pos: 25.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10965 - type: CableApcExtension - components: - - pos: 24.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10966 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-22.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10967 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-24.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10968 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-26.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10969 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-28.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10970 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-30.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10971 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-32.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10972 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-34.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10975 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-34.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10976 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-34.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10977 - type: Poweredlight - components: - - pos: 14.5,-39.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10978 - type: Poweredlight - components: - - pos: 10.5,-39.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10981 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-25.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10982 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-26.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10983 - type: DrinkCoffeeLiqueurBottleFull - components: - - pos: -0.75137734,-8.363478 - parent: 30 - type: Transform -- uid: 10984 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-28.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10985 - type: DisposalUnit - components: - - pos: 5.5,-5.5 - parent: 30 - type: Transform -- uid: 10986 - type: Poweredlight - components: - - pos: 9.5,-22.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10988 - type: Poweredlight - components: - - pos: 17.5,-21.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10989 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-13.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10990 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10991 - type: DrinkMug - components: - - pos: -0.28945327,-8.461363 - parent: 30 - type: Transform -- uid: 10992 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-21.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10993 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-25.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10994 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-29.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10995 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-33.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10996 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-33.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10997 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-25.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10998 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-29.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10999 - type: Poweredlight - components: - - pos: 1.5,-27.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11000 - type: Poweredlight - components: - - pos: 0.5,-32.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11001 - type: Poweredlight - components: - - pos: 2.5,-32.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11002 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -40.5,32.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11008 - type: SignalReceiver -- uid: 11003 - type: Poweredlight - components: - - pos: -22.5,-39.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11004 - type: LockerEngineerFilled - components: - - pos: -25.5,-42.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11005 - type: PoweredSmallLight - components: - - pos: -22.5,-46.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11006 - type: ShuttersNormalOpen - components: - - pos: -42.5,34.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11008 - type: SignalReceiver -- uid: 11007 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-50.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11008 - type: SignalButton - components: - - pos: -44.5,33.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11006 - - port: Toggle - uid: 11002 - - port: Toggle - uid: 11010 - - port: Toggle - uid: 21333 - type: SignalTransmitter -- uid: 11009 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-46.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11010 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -40.5,31.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11008 - type: SignalReceiver -- uid: 11011 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-50.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11012 - type: DrinkWhiskeyBottleFull - components: - - pos: -43.505104,33.91818 - parent: 30 - type: Transform -- uid: 11013 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-44.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11014 - type: PoweredSmallLight - components: - - pos: -18.5,-34.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11015 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11016 - type: SignDirectionalLibrary - components: - - rot: -1.5707963267948966 rad - pos: -47.5224,-21.687305 - parent: 30 - type: Transform -- uid: 11017 - type: filingCabinetDrawerRandom - components: - - pos: -3.5,40.5 - parent: 30 - type: Transform -- uid: 11018 - type: DisposalPipe - components: - - pos: 4.5,-1.5 - parent: 30 - type: Transform -- uid: 11019 - type: WallSolid - components: - - pos: -0.5,-38.5 - parent: 30 - type: Transform -- uid: 11020 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-41.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11021 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-41.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11022 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 30 - type: Transform -- uid: 11023 - type: DisposalPipe - components: - - pos: 4.5,-2.5 - parent: 30 - type: Transform -- uid: 11024 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-42.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11025 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-43.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11026 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-39.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11027 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-34.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11028 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-34.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11029 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 30 - type: Transform -- uid: 11030 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-30.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11031 - type: Poweredlight - components: - - pos: -6.5,-27.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11032 - type: DisposalPipe - components: - - pos: 4.5,-4.5 - parent: 30 - type: Transform -- uid: 11033 - type: Poweredlight - components: - - pos: -13.5,-27.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11034 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-34.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11035 - type: DisposalPipe - components: - - pos: 4.5,-3.5 - parent: 30 - type: Transform -- uid: 11036 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-31.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11037 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-35.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11038 - type: Windoor - components: - - pos: 4.5,-4.5 - parent: 30 - type: Transform -- uid: 11039 - type: CableApcExtension - components: - - pos: -9.5,-34.5 - parent: 30 - type: Transform -- uid: 11040 - type: CableApcExtension - components: - - pos: -9.5,-35.5 - parent: 30 - type: Transform -- uid: 11041 - type: CableApcExtension - components: - - pos: -9.5,-36.5 - parent: 30 - type: Transform -- uid: 11042 - type: CableApcExtension - components: - - pos: -5.5,-34.5 - parent: 30 - type: Transform -- uid: 11043 - type: CableApcExtension - components: - - pos: -5.5,-35.5 - parent: 30 - type: Transform -- uid: 11044 - type: CableApcExtension - components: - - pos: -5.5,-36.5 - parent: 30 - type: Transform -- uid: 11045 - type: CableApcExtension - components: - - pos: -6.5,-36.5 - parent: 30 - type: Transform -- uid: 11046 - type: CableApcExtension - components: - - pos: -7.5,-36.5 - parent: 30 - type: Transform -- uid: 11047 - type: CableApcExtension - components: - - pos: -5.5,-40.5 - parent: 30 - type: Transform -- uid: 11048 - type: CableApcExtension - components: - - pos: -6.5,-40.5 - parent: 30 - type: Transform -- uid: 11049 - type: CableApcExtension - components: - - pos: -4.5,-40.5 - parent: 30 - type: Transform -- uid: 11050 - type: CableApcExtension - components: - - pos: -3.5,-40.5 - parent: 30 - type: Transform -- uid: 11051 - type: CableApcExtension - components: - - pos: -2.5,-40.5 - parent: 30 - type: Transform -- uid: 11052 - type: CableApcExtension - components: - - pos: -1.5,-40.5 - parent: 30 - type: Transform -- uid: 11053 - type: CableApcExtension - components: - - pos: -0.5,-40.5 - parent: 30 - type: Transform -- uid: 11054 - type: CableApcExtension - components: - - pos: 0.5,-40.5 - parent: 30 - type: Transform -- uid: 11055 - type: CableApcExtension - components: - - pos: 1.5,-40.5 - parent: 30 - type: Transform -- uid: 11056 - type: CableApcExtension - components: - - pos: 2.5,-40.5 - parent: 30 - type: Transform -- uid: 11057 - type: CableApcExtension - components: - - pos: 1.5,-41.5 - parent: 30 - type: Transform -- uid: 11058 - type: CableApcExtension - components: - - pos: 1.5,-42.5 - parent: 30 - type: Transform -- uid: 11059 - type: CableApcExtension - components: - - pos: 1.5,-42.5 - parent: 30 - type: Transform -- uid: 11060 - type: CableApcExtension - components: - - pos: 1.5,-43.5 - parent: 30 - type: Transform -- uid: 11061 - type: CableApcExtension - components: - - pos: 1.5,-44.5 - parent: 30 - type: Transform -- uid: 11062 - type: CableApcExtension - components: - - pos: 2.5,-43.5 - parent: 30 - type: Transform -- uid: 11063 - type: CableApcExtension - components: - - pos: 3.5,-43.5 - parent: 30 - type: Transform -- uid: 11064 - type: CableApcExtension - components: - - pos: -2.5,-39.5 - parent: 30 - type: Transform -- uid: 11065 - type: CableApcExtension - components: - - pos: -2.5,-38.5 - parent: 30 - type: Transform -- uid: 11066 - type: CableApcExtension - components: - - pos: -9.5,-39.5 - parent: 30 - type: Transform -- uid: 11067 - type: CableApcExtension - components: - - pos: -12.5,-39.5 - parent: 30 - type: Transform -- uid: 11068 - type: CableApcExtension - components: - - pos: -12.5,-38.5 - parent: 30 - type: Transform -- uid: 11069 - type: CableApcExtension - components: - - pos: -12.5,-37.5 - parent: 30 - type: Transform -- uid: 11070 - type: CableApcExtension - components: - - pos: -15.5,-41.5 - parent: 30 - type: Transform -- uid: 11071 - type: CableApcExtension - components: - - pos: -15.5,-42.5 - parent: 30 - type: Transform -- uid: 11072 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11073 - type: GasPipeTJunction - components: - - pos: -11.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11074 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11075 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11076 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11077 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11078 - type: GasPipeFourway - components: - - pos: -8.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11079 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11080 - type: GasPipeTJunction - components: - - pos: -3.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11081 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11082 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11083 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11084 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11085 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11086 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11087 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -17.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11088 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11089 - type: GasPipeStraight - components: - - pos: -18.5,-40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11090 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-41.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11091 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-41.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11092 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-41.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11093 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-41.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11094 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-41.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11095 - type: GasPipeStraight - components: - - pos: -17.5,-38.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11096 - type: GasPipeStraight - components: - - pos: -17.5,-37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11097 - type: GasVentScrubber - components: - - pos: -17.5,-36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11098 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -3.5,-40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11099 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -11.5,-40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11100 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11101 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-29.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11102 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11103 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11104 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11105 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11106 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11107 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11108 - type: GasPipeStraight - components: - - pos: -8.5,-38.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11109 - type: GasPipeStraight - components: - - pos: -8.5,-37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11110 - type: GasPipeStraight - components: - - pos: -8.5,-36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11111 - type: GasPipeStraight - components: - - pos: -8.5,-40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11112 - type: GasPipeStraight - components: - - pos: -8.5,-41.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11113 - type: GasPipeStraight - components: - - pos: -8.5,-42.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11114 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -8.5,-43.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11115 - type: GasVentScrubber - components: - - pos: -8.5,-35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11116 - type: GasPipeStraight - components: - - pos: 2.5,-40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11117 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11118 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11119 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11120 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11121 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11122 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -2.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11123 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11124 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11125 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11126 - type: GasPipeFourway - components: - - pos: -6.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11127 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11128 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11129 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11130 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11131 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11132 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -12.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11133 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11134 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11135 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11136 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11137 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11138 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11139 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11140 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -19.5,-42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11141 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11142 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11143 - type: GasPipeStraight - components: - - pos: -17.5,-43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11144 - type: GasPipeStraight - components: - - pos: -17.5,-44.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11145 - type: GasPipeStraight - components: - - pos: -17.5,-45.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11146 - type: GasPipeStraight - components: - - pos: -17.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11147 - type: GasPipeStraight - components: - - pos: -19.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11148 - type: GasPipeStraight - components: - - pos: -19.5,-40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11149 - type: GasPipeStraight - components: - - pos: -19.5,-39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11150 - type: GasPipeStraight - components: - - pos: -19.5,-38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11151 - type: GasPipeStraight - components: - - pos: -19.5,-37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11152 - type: ShuttersRadiationOpen - components: - - pos: -8.5,-42.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver -- uid: 11153 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11154 - type: GasVentPump - components: - - pos: -12.5,-40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11155 - type: GasVentPump - components: - - pos: -2.5,-40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11156 - type: GasPipeStraight - components: - - pos: -6.5,-42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11157 - type: GasPipeStraight - components: - - pos: -6.5,-40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11158 - type: GasPipeStraight - components: - - pos: -6.5,-39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11159 - type: GasPipeStraight - components: - - pos: -6.5,-38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11160 - type: GasPipeStraight - components: - - pos: -6.5,-37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11161 - type: GasPipeStraight - components: - - pos: -6.5,-36.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11162 - type: GasVentPump - components: - - pos: -6.5,-35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11163 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -6.5,-43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11164 - type: WallReinforced - components: - - pos: -33.5,-64.5 - parent: 30 - type: Transform -- uid: 11165 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-32.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11166 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-34.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11167 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11168 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11169 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11170 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11171 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11172 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11173 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11174 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11175 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11176 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11177 - type: AirlockEngineeringGlassLocked - components: - - name: SMES Bank - type: MetaData - - pos: -7.5,-37.5 - parent: 30 - type: Transform -- uid: 11178 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11179 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11180 - type: GasVentPump - components: - - pos: 10.5,-23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11181 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11182 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11183 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11184 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-24.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11185 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-25.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11186 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-26.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11187 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11188 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 10.5,-28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11189 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 11.5,-28.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11190 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11191 - type: GasPipeBend - components: - - pos: 12.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11192 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 12.5,-23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11193 - type: GasPipeTJunction - components: - - pos: 6.5,-23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11194 - type: LockerSalvageSpecialistFilled - components: - - pos: 28.5,-9.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11195 - type: WallReinforced - components: - - pos: 29.5,-12.5 - parent: 30 - type: Transform -- uid: 11196 - type: AirlockQuartermasterLocked - components: - - pos: 28.5,1.5 - parent: 30 - type: Transform -- uid: 11197 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-12.5 - parent: 30 - type: Transform -- uid: 11198 - type: WallSolid - components: - - pos: 31.5,-0.5 - parent: 30 - type: Transform -- uid: 11199 - type: WallSolidRust - components: - - pos: 32.5,-0.5 - parent: 30 - type: Transform -- uid: 11200 - type: GasVentPump - components: - - pos: 2.5,-19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11201 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 4.5,-19.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11202 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11203 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11204 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11205 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-16.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11206 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11207 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11208 - type: GasVentPump - components: - - pos: 9.5,-15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11209 - type: GasVentScrubber - components: - - pos: 7.5,-15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11210 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11211 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11212 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11213 - type: WallSolid - components: - - pos: 2.5,-11.5 - parent: 30 - type: Transform -- uid: 11214 - type: GasVentScrubber - components: - - pos: 20.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11215 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -2.5,-4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11216 - type: GasVentPump - components: - - pos: -2.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11217 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11218 - type: GasVentScrubber - components: - - pos: 6.5,-2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11219 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11220 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11221 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11222 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11223 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 9.5,2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11224 - type: GasVentPump - components: - - pos: 12.5,2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11225 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-35.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11226 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 30 - type: Transform -- uid: 11227 - type: GasVentPump - components: - - pos: -19.5,-36.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11228 - type: Grille - components: - - pos: -0.5,-22.5 - parent: 30 - type: Transform -- uid: 11229 - type: Poweredlight - components: - - pos: 0.5,-18.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11230 - type: Poweredlight - components: - - pos: 6.5,-18.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11232 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-28.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11233 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-17.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11234 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11235 - type: DrinkMug - components: - - pos: -0.25820327,-8.726988 - parent: 30 - type: Transform -- uid: 11236 - type: PosterLegitSafetyInternals - components: - - pos: 3.5,-35.5 - parent: 30 - type: Transform -- uid: 11237 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-4.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11238 - type: CableMV - components: - - pos: -29.5,-6.5 - parent: 30 - type: Transform -- uid: 11239 - type: CableApcExtension - components: - - pos: 17.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11240 - type: CableApcExtension - components: - - pos: 18.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11241 - type: CableApcExtension - components: - - pos: 19.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11242 - type: CableApcExtension - components: - - pos: 20.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11243 - type: CableApcExtension - components: - - pos: 21.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11244 - type: CableApcExtension - components: - - pos: 22.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11245 - type: LockerSecurity - components: - - pos: -1.5,-34.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11246 - type: ClosetRadiationSuitFilled - components: - - pos: -1.5,-35.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11247 - type: Table - components: - - pos: -1.5,-32.5 - parent: 30 - type: Transform -- uid: 11248 - type: WallSolid - components: - - pos: 33.5,-0.5 - parent: 30 - type: Transform -- uid: 11249 - type: Table - components: - - pos: -3.5,-32.5 - parent: 30 - type: Transform -- uid: 11250 - type: Table - components: - - pos: -3.5,-33.5 - parent: 30 - type: Transform -- uid: 11251 - type: WallSolid - components: - - pos: 29.5,-0.5 - parent: 30 - type: Transform -- uid: 11252 - type: WeaponCapacitorRecharger - components: - - pos: -3.5,-32.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 11253 - type: BoxFolderYellow - components: - - pos: -3.4874916,-33.356754 - parent: 30 - type: Transform -- uid: 11254 - type: Pen - components: - - pos: -3.3156166,-32.950504 - parent: 30 - type: Transform -- uid: 11255 - type: Rack - components: - - pos: -3.5,-35.5 - parent: 30 - type: Transform -- uid: 11256 - type: ToolboxEmergencyFilled - components: - - pos: -3.5175757,-35.433304 - parent: 30 - type: Transform -- uid: 11257 - type: Grille - components: - - pos: -18.5,-45.5 - parent: 30 - type: Transform -- uid: 11258 - type: Grille - components: - - pos: -16.5,-45.5 - parent: 30 - type: Transform -- uid: 11259 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -24.5,4.5 - parent: 30 - type: Transform -- uid: 11260 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -25.5,4.5 - parent: 30 - type: Transform -- uid: 11261 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -26.5,4.5 - parent: 30 - type: Transform -- uid: 11262 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -8.5,-43.5 - parent: 30 - type: Transform -- uid: 11263 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -7.5,-43.5 - parent: 30 - type: Transform -- uid: 11264 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -6.5,-43.5 - parent: 30 - type: Transform -- uid: 11265 - type: Rack - components: - - pos: -16.5,-50.5 - parent: 30 - type: Transform -- uid: 11266 - type: OxygenCanister - components: - - pos: -18.5,-50.5 - parent: 30 - type: Transform -- uid: 11267 - type: ClosetEmergencyFilledRandom - components: - - pos: -18.5,-51.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11268 - type: ClothingShoesBootsMag - components: - - pos: -16.51538,-50.461685 - parent: 30 - type: Transform -- uid: 11269 - type: trayScanner - components: - - pos: -17.424835,-30.14346 - parent: 30 - type: Transform -- uid: 11270 - type: ComputerSolarControl - components: - - pos: -5.5,-38.5 - parent: 30 - type: Transform -- uid: 11271 - type: ComputerPowerMonitoring - components: - - pos: -7.5,-35.5 - parent: 30 - type: Transform -- uid: 11272 - type: Table - components: - - pos: 0.5,-44.5 - parent: 30 - type: Transform -- uid: 11273 - type: Table - components: - - pos: 0.5,-43.5 - parent: 30 - type: Transform -- uid: 11274 - type: Table - components: - - pos: 0.5,-42.5 - parent: 30 - type: Transform -- uid: 11275 - type: FirelockGlass - components: - - pos: 18.5,24.5 - parent: 30 - type: Transform -- uid: 11276 - type: Autolathe - components: - - pos: 3.5,-43.5 - parent: 30 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage -- uid: 11277 - type: SheetPlasteel - components: - - pos: 0.5568161,-43.31803 - parent: 30 - type: Transform -- uid: 11278 - type: SheetPlasteel - components: - - pos: 0.5568161,-43.31803 - parent: 30 - type: Transform -- uid: 11279 - type: SheetSteel - components: - - pos: 0.5099411,-42.56803 - parent: 30 - type: Transform -- uid: 11280 - type: SheetSteel - components: - - pos: 0.5099411,-42.56803 - parent: 30 - type: Transform -- uid: 11281 - type: SheetGlass - components: - - pos: 0.5411911,-43.91178 - parent: 30 - type: Transform -- uid: 11282 - type: SheetGlass - components: - - pos: 0.5411911,-43.91178 - parent: 30 - type: Transform -- uid: 11283 - type: PartRodMetal - components: - - pos: 0.5099411,-44.458656 - parent: 30 - type: Transform -- uid: 11284 - type: PartRodMetal - components: - - pos: 0.5099411,-44.458656 - parent: 30 - type: Transform -- uid: 11285 - type: Table - components: - - pos: -19.5,-44.5 - parent: 30 - type: Transform -- uid: 11286 - type: Table - components: - - pos: -15.5,-44.5 - parent: 30 - type: Transform -- uid: 11287 - type: Table - components: - - pos: -15.5,-43.5 - parent: 30 - type: Transform -- uid: 11288 - type: Table - components: - - pos: -15.5,-42.5 - parent: 30 - type: Transform -- uid: 11289 - type: RadioHandheld - components: - - pos: -19.595512,-44.335434 - parent: 30 - type: Transform -- uid: 11290 - type: RadioHandheld - components: - - pos: -19.361137,-44.44481 - parent: 30 - type: Transform -- uid: 11291 - type: ClothingEyesHudDiagnostic - components: - - pos: -15.509655,-44.429184 - parent: 30 - type: Transform -- uid: 11292 - type: ClothingEyesHudDiagnostic - components: - - pos: -15.509655,-44.241684 - parent: 30 - type: Transform -- uid: 11293 - type: APCElectronics - components: - - pos: -15.557688,-42.35106 - parent: 30 - type: Transform -- uid: 11294 - type: APCElectronics - components: - - pos: -15.463938,-42.50731 - parent: 30 - type: Transform -- uid: 11295 - type: DoorElectronics - components: - - pos: -15.510813,-42.88231 - parent: 30 - type: Transform -- uid: 11296 - type: DoorElectronics - components: - - pos: -15.432688,-43.054184 - parent: 30 - type: Transform -- uid: 11297 - type: FireAlarmElectronics - components: - - pos: -15.432688,-43.397934 - parent: 30 - type: Transform -- uid: 11298 - type: FireAlarmElectronics - components: - - pos: -15.338938,-43.585434 - parent: 30 - type: Transform -- uid: 11299 - type: CrateEngineeringSingularityContainment - components: - - pos: -16.5,-48.5 - parent: 30 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11300 - type: Rack - components: - - pos: -18.5,-48.5 - parent: 30 - type: Transform -- uid: 11301 - type: CrowbarRed - components: - - pos: -18.417063,-48.52035 - parent: 30 - type: Transform -- uid: 11302 - type: Table - components: - - pos: 1.5,-44.5 - parent: 30 - type: Transform -- uid: 11303 - type: PoweredSmallLight - components: - - pos: 25.5,-18.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11304 - type: ChairOfficeDark - components: - - pos: -16.5,-43.5 - parent: 30 - type: Transform -- uid: 11305 - type: ChairOfficeDark - components: - - pos: 1.5,-43.5 - parent: 30 - type: Transform -- uid: 11306 - type: Table - components: - - pos: -11.5,-35.5 - parent: 30 - type: Transform -- uid: 11307 - type: Table - components: - - pos: -11.5,-34.5 - parent: 30 - type: Transform -- uid: 11308 - type: ToolboxElectrical - components: - - pos: -11.510529,-34.394146 - parent: 30 - type: Transform -- uid: 11309 - type: ToolboxMechanicalFilled - components: - - pos: -11.510529,-34.706646 - parent: 30 - type: Transform -- uid: 11310 - type: CableApcStack - components: - - pos: -11.510529,-35.15977 - parent: 30 - type: Transform -- uid: 11311 - type: CableMVStack - components: - - pos: 1.2945502,-44.37342 - parent: 30 - type: Transform -- uid: 11312 - type: CableHVStack - components: - - pos: 1.5133002,-44.49842 - parent: 30 - type: Transform -- uid: 11313 - type: ToolboxElectricalFilled - components: - - pos: -24.449165,-39.212135 - parent: 30 - type: Transform -- uid: 11314 - type: Catwalk - components: - - pos: 23.5,-34.5 - parent: 30 - type: Transform -- uid: 11315 - type: Catwalk - components: - - pos: 23.5,-33.5 - parent: 30 - type: Transform -- uid: 11316 - type: Catwalk - components: - - pos: 23.5,-32.5 - parent: 30 - type: Transform -- uid: 11317 - type: Catwalk - components: - - pos: 23.5,-31.5 - parent: 30 - type: Transform -- uid: 11318 - type: Catwalk - components: - - pos: 23.5,-30.5 - parent: 30 - type: Transform -- uid: 11319 - type: Catwalk - components: - - pos: 23.5,-29.5 - parent: 30 - type: Transform -- uid: 11320 - type: Catwalk - components: - - pos: 23.5,-28.5 - parent: 30 - type: Transform -- uid: 11321 - type: Catwalk - components: - - pos: 23.5,-27.5 - parent: 30 - type: Transform -- uid: 11322 - type: Catwalk - components: - - pos: 23.5,-26.5 - parent: 30 - type: Transform -- uid: 11323 - type: Catwalk - components: - - pos: 23.5,-25.5 - parent: 30 - type: Transform -- uid: 11324 - type: Catwalk - components: - - pos: 23.5,-24.5 - parent: 30 - type: Transform -- uid: 11325 - type: Catwalk - components: - - pos: 23.5,-23.5 - parent: 30 - type: Transform -- uid: 11326 - type: Catwalk - components: - - pos: 23.5,-22.5 - parent: 30 - type: Transform -- uid: 11327 - type: Catwalk - components: - - pos: 23.5,-21.5 - parent: 30 - type: Transform -- uid: 11328 - type: Catwalk - components: - - pos: 9.5,-36.5 - parent: 30 - type: Transform -- uid: 11329 - type: Catwalk - components: - - pos: 15.5,-36.5 - parent: 30 - type: Transform -- uid: 11330 - type: Catwalk - components: - - pos: 15.5,-37.5 - parent: 30 - type: Transform -- uid: 11331 - type: Catwalk - components: - - pos: 9.5,-37.5 - parent: 30 - type: Transform -- uid: 11332 - type: CableApcExtension - components: - - pos: 1.5,-9.5 - parent: 30 - type: Transform -- uid: 11333 - type: YellowOxygenTankFilled - components: - - pos: -1.4344845,-44.759243 - parent: 30 - type: Transform -- uid: 11334 - type: ClothingBeltUtilityFilled - components: - - pos: -17.525967,-28.59756 - parent: 30 - type: Transform -- uid: 11335 - type: ClothingOuterVestHazard - components: - - pos: -17.557217,-31.269436 - parent: 30 - type: Transform -- uid: 11336 - type: ClothingOuterVestHazard - components: - - pos: -17.385342,-31.456936 - parent: 30 - type: Transform -- uid: 11337 - type: ClothingMaskGas - components: - - pos: -17.479092,-30.706936 - parent: 30 - type: Transform -- uid: 11338 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11339 - type: WallSolid - components: - - pos: -14.5,-38.5 - parent: 30 - type: Transform -- uid: 11340 - type: FirelockGlass - components: - - pos: -14.5,-41.5 - parent: 30 - type: Transform -- uid: 11341 - type: FirelockGlass - components: - - pos: -14.5,-40.5 - parent: 30 - type: Transform -- uid: 11342 - type: FirelockGlass - components: - - pos: -14.5,-39.5 - parent: 30 - type: Transform -- uid: 11343 - type: FirelockGlass - components: - - pos: -0.5,-41.5 - parent: 30 - type: Transform -- uid: 11344 - type: FirelockGlass - components: - - pos: -0.5,-40.5 - parent: 30 - type: Transform -- uid: 11345 - type: FirelockGlass - components: - - pos: -0.5,-39.5 - parent: 30 - type: Transform -- uid: 11346 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 30 - type: Transform -- uid: 11347 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-38.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11348 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-38.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11349 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-38.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11350 - type: Grille - components: - - pos: 1.5,-5.5 - parent: 30 - type: Transform -- uid: 11351 - type: CableApcExtension - components: - - pos: 3.5,-8.5 - parent: 30 - type: Transform -- uid: 11352 - type: WallSolid - components: - - pos: 2.5,-6.5 - parent: 30 - type: Transform -- uid: 11353 - type: TableWood - components: - - pos: 2.5,-8.5 - parent: 30 - type: Transform -- uid: 11354 - type: CableApcExtension - components: - - pos: 1.5,-10.5 - parent: 30 - type: Transform -- uid: 11355 - type: AirlockMaintLocked - components: - - pos: 0.5,-14.5 - parent: 30 - type: Transform -- uid: 11356 - type: TableWood - components: - - pos: 5.5,-15.5 - parent: 30 - type: Transform -- uid: 11357 - type: TableWood - components: - - pos: 4.5,-15.5 - parent: 30 - type: Transform -- uid: 11358 - type: TableWood - components: - - pos: 3.5,-15.5 - parent: 30 - type: Transform -- uid: 11359 - type: TableWood - components: - - pos: 3.5,-14.5 - parent: 30 - type: Transform -- uid: 11360 - type: Chair - components: - - pos: 4.5,-14.5 - parent: 30 - type: Transform -- uid: 11361 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 4.5,-16.5 - parent: 30 - type: Transform -- uid: 11362 - type: Lamp - components: - - pos: 3.5723639,-14.605923 - parent: 30 - type: Transform -- uid: 11363 - type: ClothingShoeSlippersDuck - components: - - pos: 5.276362,-14.684181 - parent: 30 - type: Transform -- uid: 11364 - type: ClosetBase - components: - - pos: 5.5,-13.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11365 - type: ContainerContainer -- uid: 11365 - type: SheetPlasma - components: - - flags: InContainer - type: MetaData - - parent: 11364 - type: Transform - - canCollide: False - type: Physics -- uid: 11366 - type: ClothingOuterCoatInspector - components: - - pos: 4.503509,-14.329939 - parent: 30 - type: Transform -- uid: 11367 - type: TableWood - components: - - pos: 2.5,-10.5 - parent: 30 - type: Transform -- uid: 11368 - type: ClothingNeckTieRed - components: - - pos: 5.300384,-15.517439 - parent: 30 - type: Transform -- uid: 11369 - type: AtmosFixFreezerMarker - components: - - pos: -20.5,15.5 - parent: 30 - type: Transform -- uid: 11370 - type: ClothingHeadHatFedoraBrown - components: - - pos: 4.691009,-15.314314 - parent: 30 - type: Transform -- uid: 11371 - type: WallReinforced - components: - - pos: 16.5,5.5 - parent: 30 - type: Transform -- uid: 11372 - type: WallReinforced - components: - - pos: 15.5,3.5 - parent: 30 - type: Transform -- uid: 11373 - type: WallReinforced - components: - - pos: 16.5,4.5 - parent: 30 - type: Transform -- uid: 11374 - type: SubstationBasic - components: - - name: Cargo Substation - type: MetaData - - pos: 15.5,4.5 - parent: 30 - type: Transform -- uid: 11375 - type: WallReinforced - components: - - pos: 14.5,6.5 - parent: 30 - type: Transform -- uid: 11376 - type: WallReinforced - components: - - pos: 16.5,6.5 - parent: 30 - type: Transform -- uid: 11377 - type: AirlockEngineeringLocked - components: - - pos: 15.5,6.5 - parent: 30 - type: Transform -- uid: 11378 - type: CableHV - components: - - pos: 15.5,4.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11379 - type: CableHV - components: - - pos: 15.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11380 - type: CableHV - components: - - pos: 15.5,6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11381 - type: CableHV - components: - - pos: 15.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11382 - type: CableHV - components: - - pos: 14.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11383 - type: CableHV - components: - - pos: 13.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11384 - type: CableHV - components: - - pos: 12.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11385 - type: CableHV - components: - - pos: 12.5,6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11386 - type: CableHV - components: - - pos: 12.5,5.5 - parent: 30 - type: Transform -- uid: 11387 - type: CableHV - components: - - pos: 12.5,4.5 - parent: 30 - type: Transform -- uid: 11388 - type: CableHV - components: - - pos: 12.5,3.5 - parent: 30 - type: Transform -- uid: 11389 - type: CableHV - components: - - pos: 12.5,2.5 - parent: 30 - type: Transform -- uid: 11390 - type: CableHV - components: - - pos: 12.5,1.5 - parent: 30 - type: Transform -- uid: 11391 - type: CableHV - components: - - pos: 12.5,0.5 - parent: 30 - type: Transform -- uid: 11392 - type: CableHV - components: - - pos: 12.5,-0.5 - parent: 30 - type: Transform -- uid: 11393 - type: CableHV - components: - - pos: 12.5,-1.5 - parent: 30 - type: Transform -- uid: 11394 - type: CableHV - components: - - pos: 12.5,-3.5 - parent: 30 - type: Transform -- uid: 11395 - type: CableHV - components: - - pos: 12.5,-2.5 - parent: 30 - type: Transform -- uid: 11396 - type: CableHV - components: - - pos: 12.5,-4.5 - parent: 30 - type: Transform -- uid: 11397 - type: CableHV - components: - - pos: 12.5,-5.5 - parent: 30 - type: Transform -- uid: 11398 - type: CableHV - components: - - pos: 12.5,-6.5 - parent: 30 - type: Transform -- uid: 11399 - type: CableHV - components: - - pos: 12.5,-7.5 - parent: 30 - type: Transform -- uid: 11400 - type: CableHV - components: - - pos: 12.5,-8.5 - parent: 30 - type: Transform -- uid: 11401 - type: CableHV - components: - - pos: 12.5,-9.5 - parent: 30 - type: Transform -- uid: 11402 - type: CableHV - components: - - pos: 12.5,-10.5 - parent: 30 - type: Transform -- uid: 11403 - type: CableHV - components: - - pos: 11.5,-10.5 - parent: 30 - type: Transform -- uid: 11404 - type: CableHV - components: - - pos: 10.5,-10.5 - parent: 30 - type: Transform -- uid: 11405 - type: CableHV - components: - - pos: 9.5,-10.5 - parent: 30 - type: Transform -- uid: 11406 - type: CableHV - components: - - pos: 8.5,-10.5 - parent: 30 - type: Transform -- uid: 11407 - type: CableHV - components: - - pos: 7.5,-10.5 - parent: 30 - type: Transform -- uid: 11408 - type: CableHV - components: - - pos: 6.5,-10.5 - parent: 30 - type: Transform -- uid: 11409 - type: CableHV - components: - - pos: 5.5,-10.5 - parent: 30 - type: Transform -- uid: 11410 - type: CableHV - components: - - pos: 4.5,-10.5 - parent: 30 - type: Transform -- uid: 11411 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 30 - type: Transform -- uid: 11412 - type: LockerFreezer - components: - - pos: 1.5,-6.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11413 - type: WindowDirectional - components: - - pos: 2.5,-8.5 - parent: 30 - type: Transform -- uid: 11414 - type: RandomPosterLegit - components: - - pos: -1.5,-12.5 - parent: 30 - type: Transform -- uid: 11415 - type: CableHV - components: - - pos: 3.5,-14.5 - parent: 30 - type: Transform -- uid: 11416 - type: CableHV - components: - - pos: 2.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11417 - type: CableHV - components: - - pos: 1.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11418 - type: CableHV - components: - - pos: 0.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11419 - type: Catwalk - components: - - pos: 1.5,-14.5 - parent: 30 - type: Transform -- uid: 11420 - type: Catwalk - components: - - pos: 2.5,-14.5 - parent: 30 - type: Transform -- uid: 11421 - type: Rack - components: - - pos: 1.5,-15.5 - parent: 30 - type: Transform -- uid: 11422 - type: AirCanister - components: - - pos: 1.5,-16.5 - parent: 30 - type: Transform -- uid: 11423 - type: BoozeDispenser - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-13.5 - parent: 30 - type: Transform -- uid: 11424 - type: MaintenanceToolSpawner - components: - - pos: 1.5,-15.5 - parent: 30 - type: Transform -- uid: 11425 - type: ClothingNeckScarfStripedRed - components: - - pos: -1.4874127,-32.38826 - parent: 30 - type: Transform -- uid: 11426 - type: ClothingOuterWinterSec - components: - - pos: -1.5342877,-32.48201 - parent: 30 - type: Transform -- uid: 11427 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-23.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11428 - type: RandomPosterLegit - components: - - pos: -4.5,-19.5 - parent: 30 - type: Transform -- uid: 11429 - type: RandomPosterLegit - components: - - pos: -4.5,-22.5 - parent: 30 - type: Transform -- uid: 11430 - type: AirlockMaintGlassLocked - components: - - pos: 46.5,40.5 - parent: 30 - type: Transform -- uid: 11431 - type: RandomPosterLegit - components: - - pos: 4.5,-17.5 - parent: 30 - type: Transform -- uid: 11432 - type: RandomPosterContraband - components: - - pos: 0.5,-15.5 - parent: 30 - type: Transform -- uid: 11433 - type: PosterLegitSafetyReport - components: - - pos: 6.5,-14.5 - parent: 30 - type: Transform -- uid: 11434 - type: CableHV - components: - - pos: 3.5,-12.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11435 - type: Railing - components: - - pos: 5.5,-3.5 - parent: 30 - type: Transform -- uid: 11436 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 30 - type: Transform -- uid: 11437 - type: WallSolid - components: - - pos: 2.5,-7.5 - parent: 30 - type: Transform -- uid: 11438 - type: Table - components: - - pos: 17.5,18.5 - parent: 30 - type: Transform -- uid: 11439 - type: WallReinforced - components: - - pos: -29.5,-48.5 - parent: 30 - type: Transform -- uid: 11440 - type: AtmosFixFreezerMarker - components: - - pos: -20.5,16.5 - parent: 30 - type: Transform -- uid: 11441 - type: SurveillanceCameraGeneral - components: - - pos: -53.5,15.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evac - type: SurveillanceCamera -- uid: 11442 - type: computerBodyScanner - components: - - rot: -1.5707963267948966 rad - pos: 19.5,18.5 - parent: 30 - type: Transform -- uid: 11443 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 51.5,24.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Disposals - type: SurveillanceCamera -- uid: 11444 - type: PottedPlant21 - components: - - pos: -26.5,-24.5 - parent: 30 - type: Transform -- uid: 11445 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-23.5 - parent: 30 - type: Transform -- uid: 11446 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-22.5 - parent: 30 - type: Transform -- uid: 11447 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-19.5 - parent: 30 - type: Transform -- uid: 11448 - type: ExtinguisherCabinetFilled - components: - - pos: -35.5,-20.5 - parent: 30 - type: Transform -- uid: 11449 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: -30.5,-19.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology - type: SurveillanceCamera -- uid: 11450 - type: WindowReinforcedDirectional - components: - - pos: -33.5,-18.5 - parent: 30 - type: Transform -- uid: 11451 - type: BoxLatexGloves - components: - - pos: -28.598364,-24.14232 - parent: 30 - type: Transform -- uid: 11452 - type: BoxSterileMask - components: - - pos: -28.442114,-24.45482 - parent: 30 - type: Transform -- uid: 11453 - type: BoxMouthSwab - components: - - pos: -25.504614,-22.282946 - parent: 30 - type: Transform -- uid: 11454 - type: SprayBottleSpaceCleaner - components: - - pos: -34.509796,-17.332222 - parent: 30 - type: Transform -- uid: 11455 - type: SprayBottleSpaceCleaner - components: - - pos: -34.32914,-24.335749 - parent: 30 - type: Transform -- uid: 11456 - type: ClothingEyesHudMedical - components: - - pos: -28.613989,-22.48607 - parent: 30 - type: Transform -- uid: 11457 - type: ClothingHandsGlovesNitrile - components: - - pos: -28.457739,-22.82982 - parent: 30 - type: Transform -- uid: 11458 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-20.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11459 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-24.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11460 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-24.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11461 - type: SyringeSpaceacillin - components: - - pos: -30.522413,-24.378986 - parent: 30 - type: Transform - - tags: [] - type: Tag -- uid: 11462 - type: ClothingHeadHatBeaverHat - components: - - pos: -13.503129,14.548277 - parent: 30 - type: Transform -- uid: 11463 - type: KitchenReagentGrinder - components: - - pos: -28.5,-23.5 - parent: 30 - type: Transform -- uid: 11464 - type: SignBio - components: - - pos: -26.5,-20.5 - parent: 30 - type: Transform -- uid: 11465 - type: Dropper - components: - - pos: -31.25652,-24.415495 - parent: 30 - type: Transform -- uid: 11466 - type: Bookshelf - components: - - pos: -27.5,-3.5 - parent: 30 - type: Transform -- uid: 11467 - type: DrinkMug - components: - - pos: -0.38320327,-8.883238 - parent: 30 - type: Transform -- uid: 11468 - type: DrinkShaker - components: - - pos: -0.36757827,-9.476988 - parent: 30 - type: Transform -- uid: 11469 - type: Poweredlight - components: - - pos: 10.5,-9.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11470 - type: Bookshelf - components: - - pos: -27.5,-2.5 - parent: 30 - type: Transform -- uid: 11471 - type: Poweredlight - components: - - pos: 7.5,-0.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11472 - type: Poweredlight - components: - - pos: 2.5,-1.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11473 - type: Table - components: - - pos: -36.5,0.5 - parent: 30 - type: Transform -- uid: 11474 - type: CableApcExtension - components: - - pos: 10.5,-16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11475 - type: CableApcExtension - components: - - pos: 11.5,-16.5 - parent: 30 - type: Transform -- uid: 11476 - type: CableApcExtension - components: - - pos: 12.5,-16.5 - parent: 30 - type: Transform -- uid: 11477 - type: CableApcExtension - components: - - pos: 12.5,-17.5 - parent: 30 - type: Transform -- uid: 11478 - type: CableApcExtension - components: - - pos: 12.5,-18.5 - parent: 30 - type: Transform -- uid: 11479 - type: CableApcExtension - components: - - pos: 12.5,-19.5 - parent: 30 - type: Transform -- uid: 11480 - type: CableApcExtension - components: - - pos: 11.5,-19.5 - parent: 30 - type: Transform -- uid: 11481 - type: CableApcExtension - components: - - pos: 10.5,-19.5 - parent: 30 - type: Transform -- uid: 11482 - type: CableApcExtension - components: - - pos: 9.5,-19.5 - parent: 30 - type: Transform -- uid: 11483 - type: CableApcExtension - components: - - pos: 8.5,-19.5 - parent: 30 - type: Transform -- uid: 11484 - type: CableApcExtension - components: - - pos: 12.5,-15.5 - parent: 30 - type: Transform -- uid: 11485 - type: CableApcExtension - components: - - pos: 12.5,-14.5 - parent: 30 - type: Transform -- uid: 11486 - type: CableApcExtension - components: - - pos: 12.5,-13.5 - parent: 30 - type: Transform -- uid: 11487 - type: CableApcExtension - components: - - pos: 12.5,-12.5 - parent: 30 - type: Transform -- uid: 11488 - type: CableApcExtension - components: - - pos: 12.5,-11.5 - parent: 30 - type: Transform -- uid: 11489 - type: CableApcExtension - components: - - pos: 12.5,-10.5 - parent: 30 - type: Transform -- uid: 11490 - type: CableApcExtension - components: - - pos: 12.5,-9.5 - parent: 30 - type: Transform -- uid: 11491 - type: CableApcExtension - components: - - pos: 11.5,-10.5 - parent: 30 - type: Transform -- uid: 11492 - type: CableApcExtension - components: - - pos: 10.5,-10.5 - parent: 30 - type: Transform -- uid: 11493 - type: CableApcExtension - components: - - pos: 9.5,-10.5 - parent: 30 - type: Transform -- uid: 11494 - type: CableApcExtension - components: - - pos: 8.5,-10.5 - parent: 30 - type: Transform -- uid: 11495 - type: CableApcExtension - components: - - pos: 7.5,-10.5 - parent: 30 - type: Transform -- uid: 11496 - type: CableApcExtension - components: - - pos: 6.5,-10.5 - parent: 30 - type: Transform -- uid: 11497 - type: CableApcExtension - components: - - pos: 5.5,-10.5 - parent: 30 - type: Transform -- uid: 11498 - type: CableApcExtension - components: - - pos: 4.5,-10.5 - parent: 30 - type: Transform -- uid: 11499 - type: CableApcExtension - components: - - pos: 2.5,-10.5 - parent: 30 - type: Transform -- uid: 11500 - type: CableApcExtension - components: - - pos: 3.5,-10.5 - parent: 30 - type: Transform -- uid: 11501 - type: CableApcExtension - components: - - pos: 4.5,-11.5 - parent: 30 - type: Transform -- uid: 11502 - type: CableApcExtension - components: - - pos: 2.5,-9.5 - parent: 30 - type: Transform -- uid: 11503 - type: CableApcExtension - components: - - pos: 2.5,-8.5 - parent: 30 - type: Transform -- uid: 11504 - type: WaterCooler - components: - - pos: -29.5,-3.5 - parent: 30 - type: Transform -- uid: 11505 - type: CableApcExtension - components: - - pos: 1.5,-7.5 - parent: 30 - type: Transform -- uid: 11506 - type: CableApcExtension - components: - - pos: 0.5,-7.5 - parent: 30 - type: Transform -- uid: 11507 - type: CableApcExtension - components: - - pos: 3.5,-7.5 - parent: 30 - type: Transform -- uid: 11508 - type: CableApcExtension - components: - - pos: 4.5,-7.5 - parent: 30 - type: Transform -- uid: 11509 - type: CableApcExtension - components: - - pos: 4.5,-6.5 - parent: 30 - type: Transform -- uid: 11510 - type: CableApcExtension - components: - - pos: 4.5,-5.5 - parent: 30 - type: Transform -- uid: 11511 - type: CableApcExtension - components: - - pos: 4.5,-4.5 - parent: 30 - type: Transform -- uid: 11512 - type: CableApcExtension - components: - - pos: 4.5,-3.5 - parent: 30 - type: Transform -- uid: 11513 - type: CableApcExtension - components: - - pos: 4.5,-2.5 - parent: 30 - type: Transform -- uid: 11514 - type: CableApcExtension - components: - - pos: 3.5,-3.5 - parent: 30 - type: Transform -- uid: 11515 - type: CableApcExtension - components: - - pos: 2.5,-3.5 - parent: 30 - type: Transform -- uid: 11516 - type: CableApcExtension - components: - - pos: 1.5,-3.5 - parent: 30 - type: Transform -- uid: 11517 - type: CableApcExtension - components: - - pos: 0.5,-3.5 - parent: 30 - type: Transform -- uid: 11518 - type: CableApcExtension - components: - - pos: 4.5,-1.5 - parent: 30 - type: Transform -- uid: 11519 - type: CableApcExtension - components: - - pos: 4.5,-0.5 - parent: 30 - type: Transform -- uid: 11520 - type: CableApcExtension - components: - - pos: 8.5,-9.5 - parent: 30 - type: Transform -- uid: 11521 - type: CableApcExtension - components: - - pos: 8.5,-8.5 - parent: 30 - type: Transform -- uid: 11522 - type: CableApcExtension - components: - - pos: 8.5,-7.5 - parent: 30 - type: Transform -- uid: 11523 - type: CableApcExtension - components: - - pos: 8.5,-6.5 - parent: 30 - type: Transform -- uid: 11524 - type: CableApcExtension - components: - - pos: 8.5,-5.5 - parent: 30 - type: Transform -- uid: 11525 - type: CableApcExtension - components: - - pos: 8.5,-4.5 - parent: 30 - type: Transform -- uid: 11526 - type: CableApcExtension - components: - - pos: 8.5,-3.5 - parent: 30 - type: Transform -- uid: 11527 - type: CableApcExtension - components: - - pos: 8.5,-2.5 - parent: 30 - type: Transform -- uid: 11528 - type: CableApcExtension - components: - - pos: 8.5,-1.5 - parent: 30 - type: Transform -- uid: 11529 - type: CableApcExtension - components: - - pos: 7.5,-2.5 - parent: 30 - type: Transform -- uid: 11530 - type: CableApcExtension - components: - - pos: 6.5,-2.5 - parent: 30 - type: Transform -- uid: 11531 - type: CableApcExtension - components: - - pos: 5.5,-2.5 - parent: 30 - type: Transform -- uid: 11532 - type: CableApcExtension - components: - - pos: 13.5,-10.5 - parent: 30 - type: Transform -- uid: 11533 - type: CableApcExtension - components: - - pos: 14.5,-10.5 - parent: 30 - type: Transform -- uid: 11534 - type: CableMV - components: - - pos: 10.5,-16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11535 - type: CableMV - components: - - pos: 11.5,-16.5 - parent: 30 - type: Transform -- uid: 11536 - type: CableMV - components: - - pos: 12.5,-16.5 - parent: 30 - type: Transform -- uid: 11537 - type: CableMV - components: - - pos: 12.5,-15.5 - parent: 30 - type: Transform -- uid: 11538 - type: CableMV - components: - - pos: 12.5,-14.5 - parent: 30 - type: Transform -- uid: 11539 - type: CableMV - components: - - pos: 12.5,-13.5 - parent: 30 - type: Transform -- uid: 11540 - type: CableMV - components: - - pos: 12.5,-12.5 - parent: 30 - type: Transform -- uid: 11541 - type: CableMV - components: - - pos: 12.5,-11.5 - parent: 30 - type: Transform -- uid: 11542 - type: CableMV - components: - - pos: 12.5,-10.5 - parent: 30 - type: Transform -- uid: 11543 - type: CableMV - components: - - pos: 12.5,-9.5 - parent: 30 - type: Transform -- uid: 11544 - type: CableMV - components: - - pos: 12.5,-8.5 - parent: 30 - type: Transform -- uid: 11545 - type: CableMV - components: - - pos: 12.5,-7.5 - parent: 30 - type: Transform -- uid: 11546 - type: CableMV - components: - - pos: 12.5,-6.5 - parent: 30 - type: Transform -- uid: 11547 - type: CableMV - components: - - pos: 12.5,-5.5 - parent: 30 - type: Transform -- uid: 11548 - type: CableMV - components: - - pos: 12.5,-4.5 - parent: 30 - type: Transform -- uid: 11549 - type: CableMV - components: - - pos: 12.5,-3.5 - parent: 30 - type: Transform -- uid: 11550 - type: CableMV - components: - - pos: 12.5,-2.5 - parent: 30 - type: Transform -- uid: 11551 - type: CableMV - components: - - pos: 12.5,-1.5 - parent: 30 - type: Transform -- uid: 11552 - type: CableMV - components: - - pos: 12.5,-0.5 - parent: 30 - type: Transform -- uid: 11553 - type: CableMV - components: - - pos: 12.5,0.5 - parent: 30 - type: Transform -- uid: 11554 - type: CableMV - components: - - pos: 12.5,1.5 - parent: 30 - type: Transform -- uid: 11555 - type: CableMV - components: - - pos: 12.5,2.5 - parent: 30 - type: Transform -- uid: 11556 - type: CableMV - components: - - pos: 12.5,3.5 - parent: 30 - type: Transform -- uid: 11557 - type: CableMV - components: - - pos: 12.5,4.5 - parent: 30 - type: Transform -- uid: 11558 - type: CableMV - components: - - pos: 12.5,5.5 - parent: 30 - type: Transform -- uid: 11559 - type: CableMV - components: - - pos: 12.5,6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11560 - type: CableMV - components: - - pos: 12.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11561 - type: CableMV - components: - - pos: 13.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11562 - type: CableMV - components: - - pos: 14.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11563 - type: CableMV - components: - - pos: 15.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11564 - type: CableMV - components: - - pos: 15.5,6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11565 - type: CableMV - components: - - pos: 15.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11566 - type: CableMV - components: - - pos: 15.5,4.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11567 - type: AirlockMaintLocked - components: - - pos: 12.5,5.5 - parent: 30 - type: Transform -- uid: 11568 - type: LockerMedicineFilled - components: - - pos: -31.5,-2.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11569 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -30.5,-1.5 - parent: 30 - type: Transform -- uid: 11570 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11571 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-3.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11572 - type: LampGold - components: - - pos: -27.499172,-0.11374092 - parent: 30 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 11573 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-1.5 - parent: 30 - type: Transform -- uid: 11574 - type: BoxFolderWhite - components: - - pos: -31.400887,-0.39954233 - parent: 30 - type: Transform -- uid: 11575 - type: Chair - components: - - pos: 0.5,-1.5 - parent: 30 - type: Transform -- uid: 11577 - type: Chair - components: - - pos: 1.5,-1.5 - parent: 30 - type: Transform -- uid: 11579 - type: Chair - components: - - pos: 7.5,-0.5 - parent: 30 - type: Transform -- uid: 11580 - type: Poweredlight - components: - - pos: 1.5,-22.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11581 - type: Bed - components: - - pos: -28.5,-0.5 - parent: 30 - type: Transform -- uid: 11582 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-8.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11583 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-12.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11584 - type: PoweredSmallLight - components: - - pos: -1.5,-14.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11585 - type: PoweredSmallLight - components: - - pos: -6.5,-14.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11586 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-21.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11587 - type: PoweredSmallLight - components: - - pos: -14.5,-24.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11588 - type: WallReinforced - components: - - pos: -34.5,-64.5 - parent: 30 - type: Transform -- uid: 11589 - type: SignDirectionalMed - components: - - rot: 3.141592653589793 rad - pos: 10.5,-12.5 - parent: 30 - type: Transform -- uid: 11590 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,3.5 - parent: 30 - type: Transform -- uid: 11591 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 23.5,3.5 - parent: 30 - type: Transform -- uid: 11592 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 25.5,3.5 - parent: 30 - type: Transform -- uid: 11593 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 26.5,3.5 - parent: 30 - type: Transform -- uid: 11594 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 27.5,3.5 - parent: 30 - type: Transform -- uid: 11595 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 28.5,3.5 - parent: 30 - type: Transform -- uid: 11596 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 28.5,2.5 - parent: 30 - type: Transform -- uid: 11597 - type: WallSolid - components: - - pos: 32.5,0.5 - parent: 30 - type: Transform -- uid: 11598 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 28.5,0.5 - parent: 30 - type: Transform -- uid: 11599 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 28.5,-0.5 - parent: 30 - type: Transform -- uid: 11600 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 23.5,-0.5 - parent: 30 - type: Transform -- uid: 11601 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 27.5,-0.5 - parent: 30 - type: Transform -- uid: 11602 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 24.5,-0.5 - parent: 30 - type: Transform -- uid: 11603 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 25.5,-0.5 - parent: 30 - type: Transform -- uid: 11604 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 26.5,-0.5 - parent: 30 - type: Transform -- uid: 11605 - type: Grille - components: - - pos: 24.5,-0.5 - parent: 30 - type: Transform -- uid: 11606 - type: Grille - components: - - pos: 25.5,-0.5 - parent: 30 - type: Transform -- uid: 11607 - type: Grille - components: - - pos: 26.5,-0.5 - parent: 30 - type: Transform -- uid: 11608 - type: WallSolid - components: - - pos: 35.5,-0.5 - parent: 30 - type: Transform -- uid: 11609 - type: BedsheetQM - components: - - pos: 23.5,0.5 - parent: 30 - type: Transform -- uid: 11610 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 24.5,1.5 - parent: 30 - type: Transform -- uid: 11611 - type: WaterCooler - components: - - pos: 27.5,2.5 - parent: 30 - type: Transform -- uid: 11612 - type: Table - components: - - pos: 25.5,1.5 - parent: 30 - type: Transform -- uid: 11613 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 26.5,1.5 - parent: 30 - type: Transform -- uid: 11614 - type: SurveillanceCameraRouterEngineering - components: - - pos: -15.5,-36.5 - parent: 30 - type: Transform -- uid: 11615 - type: Table - components: - - pos: 25.5,2.5 - parent: 30 - type: Transform -- uid: 11616 - type: CigarGold - components: - - pos: 25.635162,2.3665755 - parent: 30 - type: Transform -- uid: 11617 - type: CigarGold - components: - - pos: 25.775787,2.2884505 - parent: 30 - type: Transform -- uid: 11618 - type: ShowcaseRobotAntique - components: - - pos: 27.5,0.5 - parent: 30 - type: Transform -- uid: 11619 - type: CarpetOrange - components: - - pos: 25.5,0.5 - parent: 30 - type: Transform -- uid: 11620 - type: CarpetOrange - components: - - pos: 24.5,1.5 - parent: 30 - type: Transform -- uid: 11621 - type: CarpetOrange - components: - - pos: 25.5,1.5 - parent: 30 - type: Transform -- uid: 11622 - type: CarpetOrange - components: - - pos: 24.5,0.5 - parent: 30 - type: Transform -- uid: 11623 - type: AsteroidRock - components: - - pos: 38.5,-76.5 - parent: 30 - type: Transform -- uid: 11624 - type: AsteroidRock - components: - - pos: 40.5,-76.5 - parent: 30 - type: Transform -- uid: 11625 - type: LampGold - components: - - pos: 25.549688,2.573295 - parent: 30 - type: Transform -- uid: 11626 - type: Grille - components: - - pos: 22.5,1.5 - parent: 30 - type: Transform -- uid: 11627 - type: ComputerCargoOrders - components: - - pos: 24.5,2.5 - parent: 30 - type: Transform - - outputs: - OrderSender: [] - type: SignalTransmitter -- uid: 11628 - type: Bed - components: - - pos: 23.5,0.5 - parent: 30 - type: Transform -- uid: 11629 - type: Paper - components: - - pos: 25.450651,1.836174 - parent: 30 - type: Transform -- uid: 11630 - type: Paper - components: - - pos: 25.544401,1.679924 - parent: 30 - type: Transform -- uid: 11631 - type: Paper - components: - - pos: 25.685026,1.976799 - parent: 30 - type: Transform -- uid: 11632 - type: Pen - components: - - pos: 25.341276,2.226799 - parent: 30 - type: Transform -- uid: 11633 - type: WallSolid - components: - - pos: 29.5,3.5 - parent: 30 - type: Transform -- uid: 11634 - type: WallSolid - components: - - pos: 30.5,3.5 - parent: 30 - type: Transform -- uid: 11635 - type: WallSolid - components: - - pos: 31.5,3.5 - parent: 30 - type: Transform -- uid: 11636 - type: WallSolid - components: - - pos: 32.5,3.5 - parent: 30 - type: Transform -- uid: 11637 - type: WallSolid - components: - - pos: 32.5,2.5 - parent: 30 - type: Transform -- uid: 11638 - type: AirlockMaintCargoLocked - components: - - pos: 32.5,1.5 - parent: 30 - type: Transform -- uid: 11639 - type: ConveyorBelt - components: - - pos: 35.5,-11.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11677 - Forward: - - port: Left - uid: 11677 - Off: - - port: Middle - uid: 11677 - type: SignalReceiver -- uid: 11640 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11641 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-11.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11642 - type: CableApcExtension - components: - - pos: 30.5,-10.5 - parent: 30 - type: Transform -- uid: 11643 - type: AirlockCargoGlassLocked - components: - - pos: 30.5,-0.5 - parent: 30 - type: Transform -- uid: 11644 - type: Table - components: - - pos: 30.5,2.5 - parent: 30 - type: Transform -- uid: 11645 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 30 - type: Transform -- uid: 11646 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 30 - type: Transform -- uid: 11647 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 30.5,1.5 - parent: 30 - type: Transform -- uid: 11648 - type: AsteroidRock - components: - - pos: 43.5,-76.5 - parent: 30 - type: Transform -- uid: 11649 - type: hydroponicsTray - components: - - pos: -47.5,69.5 - parent: 30 - type: Transform -- uid: 11650 - type: WaterCooler - components: - - pos: 31.5,0.5 - parent: 30 - type: Transform -- uid: 11651 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 29.5,0.5 - parent: 30 - type: Transform -- uid: 11652 - type: BoxLightMixed - components: - - pos: 29.49848,0.65093255 - parent: 30 - type: Transform -- uid: 11653 - type: ReinforcedWindow - components: - - pos: -39.5,-34.5 - parent: 30 - type: Transform -- uid: 11654 - type: CableApcExtension - components: - - pos: 34.5,-15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11655 - type: WallReinforced - components: - - pos: 36.5,-0.5 - parent: 30 - type: Transform -- uid: 11656 - type: WallSolidRust - components: - - pos: 34.5,-0.5 - parent: 30 - type: Transform -- uid: 11657 - type: ReinforcedWindow - components: - - pos: 26.5,-12.5 - parent: 30 - type: Transform -- uid: 11658 - type: AirlockExternalGlassCargoLocked - components: - - pos: 34.5,-15.5 - parent: 30 - type: Transform -- uid: 11659 - type: BlastDoor - components: - - pos: 35.5,-12.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11761 - type: SignalReceiver -- uid: 11660 - type: Catwalk - components: - - pos: 34.5,-16.5 - parent: 30 - type: Transform -- uid: 11661 - type: CableApcExtension - components: - - pos: 34.5,-16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11662 - type: WallReinforced - components: - - pos: 37.5,-0.5 - parent: 30 - type: Transform -- uid: 11663 - type: WallReinforced - components: - - pos: 32.5,-15.5 - parent: 30 - type: Transform -- uid: 11664 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 33.5,-10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11665 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11666 - type: WallSolidRust - components: - - pos: 30.5,-8.5 - parent: 30 - type: Transform -- uid: 11667 - type: CableApcExtension - components: - - pos: 34.5,-12.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11668 - type: GasPipeBend - components: - - pos: 34.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11669 - type: CableApcExtension - components: - - pos: 23.5,-2.5 - parent: 30 - type: Transform -- uid: 11670 - type: CableApcExtension - components: - - pos: 25.5,-10.5 - parent: 30 - type: Transform -- uid: 11671 - type: ReinforcedWindow - components: - - pos: 30.5,-12.5 - parent: 30 - type: Transform -- uid: 11672 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11673 - type: CableApcExtension - components: - - pos: 28.5,-10.5 - parent: 30 - type: Transform -- uid: 11674 - type: CableApcExtension - components: - - pos: 23.5,-1.5 - parent: 30 - type: Transform -- uid: 11675 - type: Grille - components: - - pos: 33.5,-15.5 - parent: 30 - type: Transform -- uid: 11677 - type: TwoWayLever - components: - - pos: 35.5,-9.5 - parent: 30 - type: Transform - - outputs: - Left: - - port: Forward - uid: 11639 - - port: Forward - uid: 12096 - - port: Forward - uid: 6726 - - port: Forward - uid: 12031 - - port: Forward - uid: 16126 - - port: Forward - uid: 11932 - - port: Forward - uid: 12231 - Right: - - port: Reverse - uid: 11639 - - port: Reverse - uid: 12096 - - port: Reverse - uid: 6726 - - port: Reverse - uid: 12031 - - port: Reverse - uid: 16126 - - port: Reverse - uid: 11932 - - port: Reverse - uid: 12231 - Middle: - - port: Off - uid: 11639 - - port: Off - uid: 12096 - - port: Off - uid: 6726 - - port: Off - uid: 12031 - - port: Off - uid: 16126 - - port: Off - uid: 11932 - - port: Off - uid: 12231 - type: SignalTransmitter -- uid: 11678 - type: Catwalk - components: - - pos: 32.5,-18.5 - parent: 30 - type: Transform -- uid: 11679 - type: ReinforcedWindow - components: - - pos: 33.5,-15.5 - parent: 30 - type: Transform -- uid: 11680 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-28.5 - parent: 30 - type: Transform - - inputs: - Open: - - port: Left - uid: 11701 - - port: Right - uid: 11701 - Close: - - port: Middle - uid: 11701 - Toggle: [] - type: SignalReceiver -- uid: 11681 - type: GasVentScrubber - components: - - pos: 25.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11682 - type: BlastDoor - components: - - pos: 35.5,-15.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11933 - type: SignalReceiver -- uid: 11683 - type: CableApcExtension - components: - - pos: 34.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11684 - type: CableApcExtension - components: - - pos: 34.5,-13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11685 - type: PlasticFlapsAirtightClear - components: - - pos: 35.5,-15.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 11686 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11687 - type: CableApcExtension - components: - - pos: 34.5,-10.5 - parent: 30 - type: Transform -- uid: 11688 - type: Grille - components: - - pos: 23.5,-8.5 - parent: 30 - type: Transform -- uid: 11689 - type: CableApcExtension - components: - - pos: 33.5,-3.5 - parent: 30 - type: Transform -- uid: 11690 - type: PoweredlightSodium - components: - - pos: 32.5,-16.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11691 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-3.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11717 - Forward: - - port: Left - uid: 11717 - Off: - - port: Middle - uid: 11717 - type: SignalReceiver -- uid: 11692 - type: ReinforcedWindow - components: - - pos: 25.5,-8.5 - parent: 30 - type: Transform -- uid: 11693 - type: CableApcExtension - components: - - pos: 35.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11694 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 25.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11695 - type: CableApcExtension - components: - - pos: 33.5,-10.5 - parent: 30 - type: Transform -- uid: 11696 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11697 - type: Catwalk - components: - - pos: 30.5,-18.5 - parent: 30 - type: Transform -- uid: 11698 - type: WallReinforced - components: - - pos: 36.5,-10.5 - parent: 30 - type: Transform -- uid: 11699 - type: Grille - components: - - pos: 18.5,-2.5 - parent: 30 - type: Transform -- uid: 11700 - type: ReinforcedWindow - components: - - pos: 18.5,-2.5 - parent: 30 - type: Transform -- uid: 11701 - type: TwoWayLever - components: - - pos: 7.5,-26.5 - parent: 30 - type: Transform - - outputs: - Left: - - port: Open - uid: 9190 - - port: Open - uid: 9189 - - port: Open - uid: 9188 - - port: Open - uid: 11760 - - port: Open - uid: 11680 - - port: Open - uid: 21765 - - port: Open - uid: 21766 - - port: Open - uid: 21767 - Right: - - port: Open - uid: 9190 - - port: Open - uid: 9189 - - port: Open - uid: 9188 - - port: Open - uid: 11760 - - port: Open - uid: 11680 - - port: Open - uid: 21765 - - port: Open - uid: 21766 - - port: Open - uid: 21767 - Middle: - - port: Close - uid: 9190 - - port: Close - uid: 9189 - - port: Close - uid: 9188 - - port: Close - uid: 11760 - - port: Close - uid: 11680 - - port: Close - uid: 21765 - - port: Close - uid: 21766 - - port: Close - uid: 21767 - type: SignalTransmitter -- uid: 11702 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-2.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11866 - Forward: - - port: Left - uid: 11866 - Off: - - port: Middle - uid: 11866 - type: SignalReceiver -- uid: 11703 - type: CableApcExtension - components: - - pos: 34.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11704 - type: ComputerCargoOrders - components: - - pos: 16.5,2.5 - parent: 30 - type: Transform -- uid: 11705 - type: FirelockGlass - components: - - pos: 18.5,-1.5 - parent: 30 - type: Transform -- uid: 11706 - type: CableApcExtension - components: - - pos: 23.5,-3.5 - parent: 30 - type: Transform -- uid: 11707 - type: Table - components: - - pos: 15.5,2.5 - parent: 30 - type: Transform -- uid: 11708 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 30 - type: Transform -- uid: 11709 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 30 - type: Transform -- uid: 11710 - type: AirlockExternalGlassCargoLocked - components: - - pos: 36.5,-3.5 - parent: 30 - type: Transform -- uid: 11711 - type: GasPipeStraight - components: - - pos: 33.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11712 - type: CableMV - components: - - pos: 23.5,-1.5 - parent: 30 - type: Transform -- uid: 11713 - type: GasPipeStraight - components: - - pos: 29.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11714 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 6.5,-26.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11715 - type: SignMagneticsMed - components: - - pos: 29.5,-0.5 - parent: 30 - type: Transform -- uid: 11716 - type: ShuttersNormalOpen - components: - - pos: 26.5,-0.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12029 - type: SignalReceiver -- uid: 11717 - type: TwoWayLever - components: - - pos: 20.5,-2.5 - parent: 30 - type: Transform - - outputs: - Middle: - - port: Off - uid: 8500 - - port: Off - uid: 8466 - - port: Off - uid: 8503 - - port: Off - uid: 11691 - Right: - - port: Reverse - uid: 8500 - - port: Reverse - uid: 8466 - - port: Reverse - uid: 8503 - - port: Reverse - uid: 11691 - Left: - - port: Forward - uid: 8500 - - port: Forward - uid: 8466 - - port: Forward - uid: 8503 - - port: Forward - uid: 11691 - type: SignalTransmitter -- uid: 11718 - type: ComputerCargoShuttle - components: - - rot: 1.5707963267948966 rad - pos: 15.5,0.5 - parent: 30 - type: Transform -- uid: 11719 - type: WallSolidRust - components: - - pos: 22.5,-11.5 - parent: 30 - type: Transform -- uid: 11720 - type: FirelockGlass - components: - - pos: 14.5,-11.5 - parent: 30 - type: Transform -- uid: 11721 - type: ClothingHeadHatCargosoftFlipped - components: - - pos: 30.591532,2.6832561 - parent: 30 - type: Transform -- uid: 11722 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-12.5 - parent: 30 - type: Transform -- uid: 11723 - type: SpawnPointCargoTechnician - components: - - pos: 18.5,1.5 - parent: 30 - type: Transform -- uid: 11724 - type: SpawnPointCargoTechnician - components: - - pos: 19.5,1.5 - parent: 30 - type: Transform -- uid: 11725 - type: AirlockSalvageGlassLocked - components: - - pos: 24.5,-8.5 - parent: 30 - type: Transform -- uid: 11726 - type: Autolathe - components: - - pos: 21.5,2.5 - parent: 30 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage -- uid: 11727 - type: Table - components: - - pos: 18.5,0.5 - parent: 30 - type: Transform -- uid: 11728 - type: Table - components: - - pos: 20.5,2.5 - parent: 30 - type: Transform -- uid: 11729 - type: Table - components: - - pos: 18.5,2.5 - parent: 30 - type: Transform -- uid: 11730 - type: Table - components: - - pos: 19.5,2.5 - parent: 30 - type: Transform -- uid: 11731 - type: ChairOfficeDark - components: - - pos: 17.5,0.5 - parent: 30 - type: Transform -- uid: 11732 - type: ChairOfficeDark - components: - - pos: 16.5,0.5 - parent: 30 - type: Transform -- uid: 11733 - type: Multitool - components: - - pos: 20.580856,2.58562 - parent: 30 - type: Transform -- uid: 11734 - type: HandLabeler - components: - - pos: 18.518356,0.5699949 - parent: 30 - type: Transform -- uid: 11735 - type: SheetSteel - components: - - pos: 19.908981,2.569995 - parent: 30 - type: Transform -- uid: 11736 - type: SheetPlasteel - components: - - pos: 19.262014,2.5731275 - parent: 30 - type: Transform -- uid: 11737 - type: Rack - components: - - pos: 21.5,0.5 - parent: 30 - type: Transform -- uid: 11738 - type: CrowbarRed - components: - - pos: 21.559998,0.47888815 - parent: 30 - type: Transform -- uid: 11739 - type: SpawnPointQuartermaster - components: - - pos: 24.5,1.5 - parent: 30 - type: Transform -- uid: 11740 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-12.5 - parent: 30 - type: Transform -- uid: 11741 - type: SpawnPointSalvageSpecialist - components: - - pos: 29.5,-10.5 - parent: 30 - type: Transform -- uid: 11742 - type: SpawnPointSalvageSpecialist - components: - - pos: 28.5,-10.5 - parent: 30 - type: Transform -- uid: 11743 - type: SpawnPointSalvageSpecialist - components: - - pos: 27.5,-10.5 - parent: 30 - type: Transform -- uid: 11744 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-25.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11745 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11746 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11747 - type: FireExtinguisher - components: - - pos: 23.47995,-11.519909 - parent: 30 - type: Transform -- uid: 11748 - type: Rack - components: - - pos: 23.5,-11.5 - parent: 30 - type: Transform -- uid: 11749 - type: FireExtinguisher - components: - - pos: 23.66745,-11.426159 - parent: 30 - type: Transform -- uid: 11750 - type: ClosetEmergencyFilledRandom - components: - - pos: 33.5,-13.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11751 - type: AirlockSalvageGlassLocked - components: - - pos: 22.5,-10.5 - parent: 30 - type: Transform -- uid: 11752 - type: ClosetFireFilled - components: - - pos: 45.5,29.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11753 - type: WallSolid - components: - - pos: 22.5,-9.5 - parent: 30 - type: Transform -- uid: 11754 - type: FireExtinguisher - components: - - pos: 23.339325,-11.410534 - parent: 30 - type: Transform -- uid: 11755 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-2.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11866 - Forward: - - port: Left - uid: 11866 - Off: - - port: Middle - uid: 11866 - type: SignalReceiver -- uid: 11756 - type: CableApcExtension - components: - - pos: 35.5,-3.5 - parent: 30 - type: Transform -- uid: 11757 - type: CableApcExtension - components: - - pos: 37.5,-3.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11758 - type: CableApcExtension - components: - - pos: 33.5,-6.5 - parent: 30 - type: Transform -- uid: 11759 - type: CableApcExtension - components: - - pos: 36.5,-6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11760 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-27.5 - parent: 30 - type: Transform - - inputs: - Open: - - port: Left - uid: 11701 - - port: Right - uid: 11701 - Close: - - port: Middle - uid: 11701 - Toggle: [] - type: SignalReceiver -- uid: 11761 - type: SignalButton - components: - - pos: 36.5,-11.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11659 - type: SignalTransmitter -- uid: 11762 - type: FirelockGlass - components: - - pos: 6.5,-21.5 - parent: 30 - type: Transform -- uid: 11763 - type: GasPipeTJunction - components: - - pos: 24.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11764 - type: GasVentScrubber - components: - - pos: 24.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11765 - type: CableApcExtension - components: - - pos: 33.5,-5.5 - parent: 30 - type: Transform -- uid: 11766 - type: CableApcExtension - components: - - pos: 34.5,-6.5 - parent: 30 - type: Transform -- uid: 11767 - type: CableApcExtension - components: - - pos: 32.5,-6.5 - parent: 30 - type: Transform -- uid: 11768 - type: CableApcExtension - components: - - pos: 37.5,-6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11769 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-7.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11770 - type: WallReinforced - components: - - pos: 22.5,-0.5 - parent: 30 - type: Transform -- uid: 11771 - type: WallSolid - components: - - pos: 22.5,-5.5 - parent: 30 - type: Transform -- uid: 11772 - type: WallSolid - components: - - pos: 22.5,-4.5 - parent: 30 - type: Transform -- uid: 11773 - type: WallSolid - components: - - pos: 22.5,-3.5 - parent: 30 - type: Transform -- uid: 11774 - type: FirelockGlass - components: - - pos: 22.5,-1.5 - parent: 30 - type: Transform -- uid: 11775 - type: FirelockGlass - components: - - pos: 22.5,-6.5 - parent: 30 - type: Transform -- uid: 11776 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-24.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11777 - type: PlasticFlapsAirtightClear - components: - - pos: 38.5,-6.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 11778 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11779 - type: WallReinforced - components: - - pos: 36.5,-7.5 - parent: 30 - type: Transform -- uid: 11780 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-6.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 12013 - Forward: - - port: Left - uid: 12013 - Off: - - port: Middle - uid: 12013 - type: SignalReceiver -- uid: 11781 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11782 - type: ReinforcedWindow - components: - - pos: 33.5,-12.5 - parent: 30 - type: Transform -- uid: 11783 - type: Paper - components: - - pos: 18.397085,2.638605 - parent: 30 - type: Transform -- uid: 11784 - type: Paper - components: - - pos: 18.47521,2.59173 - parent: 30 - type: Transform -- uid: 11785 - type: Paper - components: - - pos: 18.60021,2.52923 - parent: 30 - type: Transform -- uid: 11786 - type: Paper - components: - - pos: 18.428335,2.62298 - parent: 30 - type: Transform -- uid: 11787 - type: Paper - components: - - pos: 18.53771,2.56048 - parent: 30 - type: Transform -- uid: 11788 - type: Paper - components: - - pos: 18.60021,2.52923 - parent: 30 - type: Transform -- uid: 11789 - type: Paper - components: - - pos: 18.428335,2.62298 - parent: 30 - type: Transform -- uid: 11790 - type: Paper - components: - - pos: 18.490835,2.59173 - parent: 30 - type: Transform -- uid: 11791 - type: Paper - components: - - pos: 18.56896,2.544855 - parent: 30 - type: Transform -- uid: 11792 - type: Paper - components: - - pos: 18.397085,2.638605 - parent: 30 - type: Transform -- uid: 11793 - type: Paper - components: - - pos: 18.490835,2.59173 - parent: 30 - type: Transform -- uid: 11794 - type: Paper - components: - - pos: 18.60021,2.52923 - parent: 30 - type: Transform -- uid: 11795 - type: BoxFolderYellow - components: - - pos: 17.53771,-0.43951988 - parent: 30 - type: Transform -- uid: 11796 - type: WallSolid - components: - - pos: 35.5,-8.5 - parent: 30 - type: Transform -- uid: 11797 - type: GasVentScrubber - components: - - pos: 32.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11798 - type: CableApcExtension - components: - - pos: 29.5,-10.5 - parent: 30 - type: Transform -- uid: 11799 - type: PlasticFlapsAirtightClear - components: - - pos: 35.5,-12.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 11800 - type: AirlockExternalGlassCargoLocked - components: - - pos: 34.5,-12.5 - parent: 30 - type: Transform -- uid: 11801 - type: WallSolid - components: - - pos: 34.5,-8.5 - parent: 30 - type: Transform -- uid: 11802 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11803 - type: FirelockGlass - components: - - pos: 7.5,-21.5 - parent: 30 - type: Transform -- uid: 11804 - type: WallReinforced - components: - - pos: 27.5,-12.5 - parent: 30 - type: Transform -- uid: 11805 - type: FirelockGlass - components: - - pos: 14.5,-10.5 - parent: 30 - type: Transform -- uid: 11806 - type: FirelockGlass - components: - - pos: 14.5,-9.5 - parent: 30 - type: Transform -- uid: 11807 - type: Grille - components: - - pos: 16.5,-12.5 - parent: 30 - type: Transform -- uid: 11808 - type: APCBasic - components: - - pos: 33.5,-0.5 - parent: 30 - type: Transform -- uid: 11809 - type: CableMV - components: - - pos: 13.5,-6.5 - parent: 30 - type: Transform -- uid: 11810 - type: CableMV - components: - - pos: 14.5,-6.5 - parent: 30 - type: Transform -- uid: 11811 - type: CableMV - components: - - pos: 15.5,-6.5 - parent: 30 - type: Transform -- uid: 11812 - type: CableMV - components: - - pos: 16.5,-6.5 - parent: 30 - type: Transform -- uid: 11813 - type: CableMV - components: - - pos: 17.5,-6.5 - parent: 30 - type: Transform -- uid: 11814 - type: CableMV - components: - - pos: 18.5,-6.5 - parent: 30 - type: Transform -- uid: 11815 - type: CableMV - components: - - pos: 19.5,-6.5 - parent: 30 - type: Transform -- uid: 11816 - type: CableMV - components: - - pos: 20.5,-6.5 - parent: 30 - type: Transform -- uid: 11817 - type: CableMV - components: - - pos: 21.5,-6.5 - parent: 30 - type: Transform -- uid: 11818 - type: CableMV - components: - - pos: 22.5,-6.5 - parent: 30 - type: Transform -- uid: 11819 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 30 - type: Transform -- uid: 11820 - type: ClosetEmergencyFilledRandom - components: - - pos: 17.5,-11.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11821 - type: Chair - components: - - pos: 16.5,-11.5 - parent: 30 - type: Transform -- uid: 11822 - type: ShuttersNormalOpen - components: - - pos: 24.5,-0.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12029 - type: SignalReceiver -- uid: 11823 - type: ShuttersNormalOpen - components: - - pos: 25.5,-0.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12029 - type: SignalReceiver -- uid: 11824 - type: CableApcExtension - components: - - pos: 26.5,-10.5 - parent: 30 - type: Transform -- uid: 11825 - type: CableMV - components: - - pos: 33.5,-0.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11826 - type: CableMV - components: - - pos: 33.5,0.5 - parent: 30 - type: Transform -- uid: 11827 - type: CableMV - components: - - pos: 33.5,1.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11828 - type: CableMV - components: - - pos: 33.5,2.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11829 - type: CableMV - components: - - pos: 33.5,3.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11830 - type: CableMV - components: - - pos: 33.5,4.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11831 - type: CableApcExtension - components: - - pos: 23.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11832 - type: CableApcExtension - components: - - pos: 21.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11833 - type: CableApcExtension - components: - - pos: 20.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11834 - type: CableApcExtension - components: - - pos: 19.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11835 - type: CableMV - components: - - pos: 19.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11836 - type: CableMV - components: - - pos: 16.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11837 - type: CableMV - components: - - pos: 17.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11838 - type: CableMV - components: - - pos: 17.5,6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11839 - type: CableMV - components: - - pos: 17.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11840 - type: CableMV - components: - - pos: 18.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11841 - type: CableApcExtension - components: - - pos: 30.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11842 - type: CableApcExtension - components: - - pos: 18.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11843 - type: CableMV - components: - - pos: 32.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11844 - type: CableMV - components: - - pos: 30.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11845 - type: CableMV - components: - - pos: 29.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11846 - type: CableMV - components: - - pos: 27.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11847 - type: CableMV - components: - - pos: 25.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11848 - type: CableMV - components: - - pos: 23.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11849 - type: CableMV - components: - - pos: 22.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11850 - type: CableMV - components: - - pos: 21.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11851 - type: CableMV - components: - - pos: 20.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11852 - type: CableMV - components: - - pos: 21.5,-7.5 - parent: 30 - type: Transform -- uid: 11853 - type: CableMV - components: - - pos: 21.5,-8.5 - parent: 30 - type: Transform -- uid: 11854 - type: CableMV - components: - - pos: 21.5,-9.5 - parent: 30 - type: Transform -- uid: 11855 - type: CableMV - components: - - pos: 21.5,-10.5 - parent: 30 - type: Transform -- uid: 11856 - type: CableMV - components: - - pos: 21.5,-11.5 - parent: 30 - type: Transform -- uid: 11857 - type: CableMV - components: - - pos: 21.5,-12.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11858 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11859 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 24.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11860 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 26.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11861 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 25.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11862 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11863 - type: SignSpace - components: - - pos: 36.5,-4.5 - parent: 30 - type: Transform -- uid: 11864 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-5.5 - parent: 30 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 11865 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-2.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11866 - Forward: - - port: Left - uid: 11866 - Off: - - port: Middle - uid: 11866 - type: SignalReceiver -- uid: 11866 - type: TwoWayLever - components: - - pos: 34.5,-3.5 - parent: 30 - type: Transform - - outputs: - Left: - - port: Forward - uid: 11702 - - port: Forward - uid: 11979 - - port: Forward - uid: 11755 - - port: Forward - uid: 11865 - - port: Forward - uid: 12014 - Right: - - port: Reverse - uid: 11702 - - port: Reverse - uid: 11979 - - port: Reverse - uid: 11755 - - port: Reverse - uid: 11865 - - port: Reverse - uid: 12014 - Middle: - - port: Off - uid: 11702 - - port: Off - uid: 11979 - - port: Off - uid: 11755 - - port: Off - uid: 11865 - - port: Off - uid: 12014 - type: SignalTransmitter -- uid: 11867 - type: ReinforcedWindow - components: - - pos: 36.5,-4.5 - parent: 30 - type: Transform -- uid: 11868 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 24.5,-10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11869 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11870 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11871 - type: Grille - components: - - pos: 47.5,8.5 - parent: 30 - type: Transform -- uid: 11872 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 24.5,-3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11873 - type: GasPipeBend - components: - - pos: 33.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11874 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 5.5,-23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11875 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11876 - type: GasPipeFourway - components: - - pos: 21.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11877 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11878 - type: GasPipeStraight - components: - - pos: 21.5,-4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11879 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11880 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11881 - type: GasPipeStraight - components: - - pos: 29.5,-4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11882 - type: Catwalk - components: - - pos: 39.5,-51.5 - parent: 30 - type: Transform -- uid: 11883 - type: Catwalk - components: - - pos: 38.5,-51.5 - parent: 30 - type: Transform -- uid: 11884 - type: Catwalk - components: - - pos: 40.5,-51.5 - parent: 30 - type: Transform -- uid: 11885 - type: Catwalk - components: - - pos: 41.5,-51.5 - parent: 30 - type: Transform -- uid: 11886 - type: Catwalk - components: - - pos: 37.5,-51.5 - parent: 30 - type: Transform -- uid: 11887 - type: WallSolid - components: - - pos: 36.5,-53.5 - parent: 30 - type: Transform -- uid: 11888 - type: WallSolid - components: - - pos: 36.5,-52.5 - parent: 30 - type: Transform -- uid: 11889 - type: WallSolid - components: - - pos: 35.5,-52.5 - parent: 30 - type: Transform -- uid: 11890 - type: WallSolid - components: - - pos: 42.5,-53.5 - parent: 30 - type: Transform -- uid: 11891 - type: WallSolid - components: - - pos: 42.5,-52.5 - parent: 30 - type: Transform -- uid: 11892 - type: WallSolid - components: - - pos: 43.5,-52.5 - parent: 30 - type: Transform -- uid: 11893 - type: WallReinforced - components: - - pos: 41.5,-52.5 - parent: 30 - type: Transform -- uid: 11894 - type: WallReinforced - components: - - pos: 37.5,-52.5 - parent: 30 - type: Transform -- uid: 11895 - type: SignSecurearea - components: - - pos: 37.5,-52.5 - parent: 30 - type: Transform -- uid: 11896 - type: SignSecurearea - components: - - pos: 41.5,-52.5 - parent: 30 - type: Transform -- uid: 11897 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11898 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11899 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11900 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11901 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11902 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11903 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11904 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 19.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11905 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11906 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11907 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11908 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11909 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11910 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11911 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11912 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11913 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11914 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11915 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11916 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11917 - type: GasPipeStraight - components: - - pos: 29.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11918 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-4.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11919 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11920 - type: Grille - components: - - pos: 37.5,-4.5 - parent: 30 - type: Transform -- uid: 11921 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11922 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11923 - type: BlastDoor - components: - - pos: 38.5,-2.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11994 - type: SignalReceiver -- uid: 11924 - type: PlasticFlapsAirtightClear - components: - - pos: 36.5,-2.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 11925 - type: WallReinforced - components: - - pos: 37.5,-1.5 - parent: 30 - type: Transform -- uid: 11926 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-6.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 12013 - Forward: - - port: Left - uid: 12013 - Off: - - port: Middle - uid: 12013 - type: SignalReceiver -- uid: 11927 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11928 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11929 - type: Catwalk - components: - - pos: 34.5,-17.5 - parent: 30 - type: Transform -- uid: 11930 - type: WallReinforced - components: - - pos: 36.5,-15.5 - parent: 30 - type: Transform -- uid: 11931 - type: WallReinforced - components: - - pos: 31.5,-12.5 - parent: 30 - type: Transform -- uid: 11932 - type: ConveyorBelt - components: - - pos: 35.5,-16.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11677 - Forward: - - port: Left - uid: 11677 - Off: - - port: Middle - uid: 11677 - type: SignalReceiver -- uid: 11933 - type: SignalButton - components: - - pos: 36.5,-14.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11682 - type: SignalTransmitter -- uid: 11934 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 16.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11935 - type: GasPipeTJunction - components: - - pos: 17.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11936 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 21.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11937 - type: GasPipeFourway - components: - - pos: 20.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11938 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 17.5,-10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11939 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 20.5,-10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11940 - type: CableMV - components: - - pos: 23.5,-2.5 - parent: 30 - type: Transform -- uid: 11941 - type: WallReinforced - components: - - pos: 32.5,-14.5 - parent: 30 - type: Transform -- uid: 11942 - type: PlasticFlapsAirtightClear - components: - - pos: 38.5,-2.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 11943 - type: GasPipeStraight - components: - - pos: 21.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11944 - type: GasVentScrubber - components: - - pos: 19.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11945 - type: GasVentScrubber - components: - - pos: 16.5,-10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11946 - type: GasPipeStraight - components: - - pos: 21.5,-9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11947 - type: GasPipeStraight - components: - - pos: 21.5,-8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11948 - type: GasPipeStraight - components: - - pos: 21.5,-7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11949 - type: GasPipeStraight - components: - - pos: 20.5,-8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11950 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11951 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11952 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11953 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11954 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11955 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11956 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11957 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11958 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11959 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11960 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11961 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11962 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11963 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11964 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11965 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11966 - type: WallReinforced - components: - - pos: 36.5,-1.5 - parent: 30 - type: Transform -- uid: 11967 - type: CableApcExtension - components: - - pos: 28.5,-1.5 - parent: 30 - type: Transform -- uid: 11968 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11969 - type: GasPipeStraight - components: - - pos: 21.5,-2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11970 - type: GasPipeStraight - components: - - pos: 21.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11971 - type: GasPipeStraight - components: - - pos: 21.5,-1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11972 - type: GasPipeStraight - components: - - pos: 21.5,-0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11973 - type: GasPipeStraight - components: - - pos: 21.5,0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11974 - type: GasPipeStraight - components: - - pos: 20.5,-6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11975 - type: GasPipeStraight - components: - - pos: 20.5,-5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11976 - type: GasPipeStraight - components: - - pos: 20.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11977 - type: GasPipeStraight - components: - - pos: 20.5,-3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11978 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-6.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 12013 - Forward: - - port: Left - uid: 12013 - Off: - - port: Middle - uid: 12013 - type: SignalReceiver -- uid: 11979 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-2.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11866 - Forward: - - port: Left - uid: 11866 - Off: - - port: Middle - uid: 11866 - type: SignalReceiver -- uid: 11980 - type: GasPipeStraight - components: - - pos: 20.5,-0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11981 - type: GasVentPump - components: - - pos: 20.5,0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11982 - type: GasPipeBend - components: - - pos: 21.5,1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11983 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11984 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11985 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 18.5,1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11986 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11987 - type: Catwalk - components: - - pos: 31.5,-18.5 - parent: 30 - type: Transform -- uid: 11988 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11989 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11990 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-3.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11991 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11992 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11993 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11994 - type: SignalButton - components: - - pos: 37.5,-4.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11923 - - port: Toggle - uid: 11995 - type: SignalTransmitter -- uid: 11995 - type: BlastDoor - components: - - pos: 38.5,-6.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11994 - type: SignalReceiver -- uid: 11996 - type: CableApcExtension - components: - - pos: 32.5,-1.5 - parent: 30 - type: Transform -- uid: 11997 - type: CableApcExtension - components: - - pos: 33.5,0.5 - parent: 30 - type: Transform -- uid: 11998 - type: CableApcExtension - components: - - pos: 33.5,-2.5 - parent: 30 - type: Transform -- uid: 11999 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12000 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12001 - type: GasPipeFourway - components: - - pos: 30.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12002 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 33.5,-5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12003 - type: AppleSeeds - components: - - pos: 0.47603655,-25.581665 - parent: 30 - type: Transform -- uid: 12004 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12005 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12006 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12007 - type: GasVentPump - components: - - pos: 30.5,1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12008 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-1.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12009 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12010 - type: GasVentPump - components: - - pos: 25.5,0.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12011 - type: WallReinforced - components: - - pos: 36.5,-8.5 - parent: 30 - type: Transform -- uid: 12012 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-3.5 - parent: 30 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 12013 - type: TwoWayLever - components: - - pos: 34.5,-7.5 - parent: 30 - type: Transform - - outputs: - Left: - - port: Forward - uid: 11780 - - port: Forward - uid: 12047 - - port: Forward - uid: 11926 - - port: Forward - uid: 11978 - Right: - - port: Reverse - uid: 11780 - - port: Reverse - uid: 12047 - - port: Reverse - uid: 11926 - - port: Reverse - uid: 11978 - Middle: - - port: Off - uid: 11780 - - port: Off - uid: 12047 - - port: Off - uid: 11926 - - port: Off - uid: 11978 - type: SignalTransmitter -- uid: 12014 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-2.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11866 - Forward: - - port: Left - uid: 11866 - Off: - - port: Middle - uid: 11866 - type: SignalReceiver -- uid: 12015 - type: WallReinforced - components: - - pos: 38.5,-7.5 - parent: 30 - type: Transform -- uid: 12016 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12017 - type: CableApcExtension - components: - - pos: 27.5,-10.5 - parent: 30 - type: Transform -- uid: 12018 - type: GasPipeTJunction - components: - - pos: 24.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12019 - type: ReinforcedWindow - components: - - pos: 37.5,-4.5 - parent: 30 - type: Transform -- uid: 12020 - type: GasPipeTJunction - components: - - pos: 33.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12021 - type: GasPipeStraight - components: - - pos: 29.5,-2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12022 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-2.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12023 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12024 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12025 - type: Grille - components: - - pos: 36.5,-4.5 - parent: 30 - type: Transform -- uid: 12026 - type: CableMV - components: - - pos: 23.5,-3.5 - parent: 30 - type: Transform -- uid: 12027 - type: CableMV - components: - - pos: 23.5,-0.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12028 - type: PottedPlant12 - components: - - pos: 13.5,4.5 - parent: 30 - type: Transform -- uid: 12029 - type: SignalButton - components: - - pos: 25.5,1.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11822 - - port: Toggle - uid: 11823 - - port: Toggle - uid: 11716 - type: SignalTransmitter -- uid: 12030 - type: ReinforcedWindow - components: - - pos: 38.5,-4.5 - parent: 30 - type: Transform -- uid: 12031 - type: ConveyorBelt - components: - - pos: 35.5,-14.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11677 - Forward: - - port: Left - uid: 11677 - Off: - - port: Middle - uid: 11677 - type: SignalReceiver -- uid: 12032 - type: Catwalk - components: - - pos: 35.5,-18.5 - parent: 30 - type: Transform -- uid: 12033 - type: Catwalk - components: - - pos: 29.5,-18.5 - parent: 30 - type: Transform -- uid: 12034 - type: WallReinforced - components: - - pos: 36.5,-14.5 - parent: 30 - type: Transform -- uid: 12035 - type: WallSolid - components: - - pos: 27.5,-8.5 - parent: 30 - type: Transform -- uid: 12036 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12037 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12038 - type: LockerSalvageSpecialistFilled - components: - - pos: 27.5,-9.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12039 - type: FirelockGlass - components: - - pos: 5.5,-21.5 - parent: 30 - type: Transform -- uid: 12040 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12041 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12042 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12043 - type: GasVentScrubber - components: - - pos: 29.5,1.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12044 - type: GasVentScrubber - components: - - pos: 26.5,0.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12045 - type: DisposalUnit - components: - - pos: 19.5,0.5 - parent: 30 - type: Transform -- uid: 12046 - type: WallReinforced - components: - - pos: 38.5,-1.5 - parent: 30 - type: Transform -- uid: 12047 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-6.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 12013 - Forward: - - port: Left - uid: 12013 - Off: - - port: Middle - uid: 12013 - type: SignalReceiver -- uid: 12048 - type: PlasticFlapsAirtightClear - components: - - pos: 36.5,-6.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 12049 - type: CableApcExtension - components: - - pos: 21.5,-12.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12050 - type: CableApcExtension - components: - - pos: 21.5,-11.5 - parent: 30 - type: Transform -- uid: 12051 - type: CableApcExtension - components: - - pos: 21.5,-10.5 - parent: 30 - type: Transform -- uid: 12052 - type: CableApcExtension - components: - - pos: 20.5,-10.5 - parent: 30 - type: Transform -- uid: 12053 - type: CableApcExtension - components: - - pos: 19.5,-10.5 - parent: 30 - type: Transform -- uid: 12054 - type: CableApcExtension - components: - - pos: 18.5,-10.5 - parent: 30 - type: Transform -- uid: 12055 - type: CableApcExtension - components: - - pos: 17.5,-10.5 - parent: 30 - type: Transform -- uid: 12056 - type: CableApcExtension - components: - - pos: 16.5,-10.5 - parent: 30 - type: Transform -- uid: 12057 - type: CableApcExtension - components: - - pos: 22.5,-10.5 - parent: 30 - type: Transform -- uid: 12058 - type: CableApcExtension - components: - - pos: 23.5,-10.5 - parent: 30 - type: Transform -- uid: 12059 - type: BlastDoor - components: - - pos: 36.5,-6.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12063 - type: SignalReceiver -- uid: 12060 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12061 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12062 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12063 - type: SignalButton - components: - - pos: 36.5,-1.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 12099 - - port: Toggle - uid: 12059 - type: SignalTransmitter -- uid: 12064 - type: Grille - components: - - pos: 38.5,-4.5 - parent: 30 - type: Transform -- uid: 12065 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12066 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12067 - type: FirelockGlass - components: - - pos: 22.5,-7.5 - parent: 30 - type: Transform -- uid: 12068 - type: Poweredlight - components: - - pos: 34.5,-9.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12069 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-4.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12070 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12071 - type: Grille - components: - - pos: 25.5,-8.5 - parent: 30 - type: Transform -- uid: 12072 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 30 - type: Transform -- uid: 12073 - type: CableApcExtension - components: - - pos: 20.5,-9.5 - parent: 30 - type: Transform -- uid: 12074 - type: PlasticFlapsAirtightClear - components: - - pos: 18.5,-3.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 12075 - type: CableApcExtension - components: - - pos: 20.5,-7.5 - parent: 30 - type: Transform -- uid: 12076 - type: CableApcExtension - components: - - pos: 20.5,-6.5 - parent: 30 - type: Transform -- uid: 12077 - type: CableApcExtension - components: - - pos: 19.5,-6.5 - parent: 30 - type: Transform -- uid: 12078 - type: CableApcExtension - components: - - pos: 22.5,-6.5 - parent: 30 - type: Transform -- uid: 12079 - type: CableApcExtension - components: - - pos: 21.5,-6.5 - parent: 30 - type: Transform -- uid: 12080 - type: CableApcExtension - components: - - pos: 23.5,-6.5 - parent: 30 - type: Transform -- uid: 12081 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 30.5,-3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12082 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12083 - type: AirlockExternalGlassCargoLocked - components: - - pos: 36.5,-5.5 - parent: 30 - type: Transform -- uid: 12084 - type: Pickaxe - components: - - pos: 30.531298,-9.487532 - parent: 30 - type: Transform -- uid: 12085 - type: Pickaxe - components: - - pos: 30.390673,-9.331282 - parent: 30 - type: Transform -- uid: 12086 - type: Rack - components: - - pos: 30.5,-9.5 - parent: 30 - type: Transform -- uid: 12087 - type: CableApcExtension - components: - - pos: 33.5,-0.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12088 - type: CableApcExtension - components: - - pos: 33.5,-1.5 - parent: 30 - type: Transform -- uid: 12089 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 26.5,-9.5 - parent: 30 - type: Transform -- uid: 12090 - type: CableApcExtension - components: - - pos: 33.5,-4.5 - parent: 30 - type: Transform -- uid: 12091 - type: Pickaxe - components: - - pos: 30.505148,-9.264412 - parent: 30 - type: Transform -- uid: 12092 - type: Shovel - components: - - pos: 19.544334,-11.456989 - parent: 30 - type: Transform -- uid: 12093 - type: CableApcExtension - components: - - pos: 31.5,-1.5 - parent: 30 - type: Transform -- uid: 12094 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-6.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12095 - type: PoweredSmallLight - components: - - pos: 37.5,-2.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12096 - type: ConveyorBelt - components: - - pos: 35.5,-12.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11677 - Forward: - - port: Left - uid: 11677 - Off: - - port: Middle - uid: 11677 - type: SignalReceiver -- uid: 12097 - type: WallReinforced - components: - - pos: 25.5,-12.5 - parent: 30 - type: Transform -- uid: 12098 - type: WallReinforced - components: - - pos: 36.5,-12.5 - parent: 30 - type: Transform -- uid: 12099 - type: BlastDoor - components: - - pos: 36.5,-2.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12063 - type: SignalReceiver -- uid: 12100 - type: WallReinforced - components: - - pos: 37.5,-7.5 - parent: 30 - type: Transform -- uid: 12101 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12102 - type: Grille - components: - - pos: 12.5,65.5 - parent: 30 - type: Transform -- uid: 12103 - type: WallReinforced - components: - - pos: 36.5,-9.5 - parent: 30 - type: Transform -- uid: 12104 - type: ReinforcedWindow - components: - - pos: 28.5,-12.5 - parent: 30 - type: Transform -- uid: 12105 - type: HandLabeler - components: - - pos: 19.5,-11.5 - parent: 30 - type: Transform -- uid: 12106 - type: PowerCellRecharger - components: - - pos: 20.5,-11.5 - parent: 30 - type: Transform -- uid: 12107 - type: CableApcExtension - components: - - pos: 30.5,-1.5 - parent: 30 - type: Transform -- uid: 12108 - type: CableApcExtension - components: - - pos: 30.5,-0.5 - parent: 30 - type: Transform -- uid: 12109 - type: CableApcExtension - components: - - pos: 30.5,0.5 - parent: 30 - type: Transform -- uid: 12110 - type: CableApcExtension - components: - - pos: 30.5,1.5 - parent: 30 - type: Transform -- uid: 12111 - type: CableApcExtension - components: - - pos: 31.5,1.5 - parent: 30 - type: Transform -- uid: 12112 - type: CableApcExtension - components: - - pos: 32.5,1.5 - parent: 30 - type: Transform -- uid: 12113 - type: CableApcExtension - components: - - pos: 33.5,1.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12114 - type: CableApcExtension - components: - - pos: 33.5,2.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12115 - type: CableApcExtension - components: - - pos: 33.5,3.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12116 - type: CableApcExtension - components: - - pos: 33.5,4.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12117 - type: CableApcExtension - components: - - pos: 32.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12118 - type: CableApcExtension - components: - - pos: 22.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12119 - type: CableApcExtension - components: - - pos: 29.5,1.5 - parent: 30 - type: Transform -- uid: 12120 - type: CableApcExtension - components: - - pos: 28.5,1.5 - parent: 30 - type: Transform -- uid: 12121 - type: CableApcExtension - components: - - pos: 27.5,1.5 - parent: 30 - type: Transform -- uid: 12122 - type: CableApcExtension - components: - - pos: 26.5,1.5 - parent: 30 - type: Transform -- uid: 12123 - type: CableApcExtension - components: - - pos: 25.5,1.5 - parent: 30 - type: Transform -- uid: 12124 - type: CableApcExtension - components: - - pos: 24.5,1.5 - parent: 30 - type: Transform -- uid: 12125 - type: Grille - components: - - pos: 33.5,-12.5 - parent: 30 - type: Transform -- uid: 12126 - type: Catwalk - components: - - pos: 34.5,-18.5 - parent: 30 - type: Transform -- uid: 12127 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12128 - type: Catwalk - components: - - pos: 28.5,-18.5 - parent: 30 - type: Transform -- uid: 12129 - type: CableApcExtension - components: - - pos: 34.5,-17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12130 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12131 - type: CratePrivateSecure - components: - - pos: 34.5,-9.5 - parent: 30 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12132 - type: WallReinforced - components: - - pos: 23.5,-12.5 - parent: 30 - type: Transform -- uid: 12133 - type: CableApcExtension - components: - - pos: 23.5,-5.5 - parent: 30 - type: Transform -- uid: 12134 - type: CableApcExtension - components: - - pos: 23.5,-4.5 - parent: 30 - type: Transform -- uid: 12135 - type: AirCanister - components: - - pos: 22.5,-13.5 - parent: 30 - type: Transform -- uid: 12136 - type: CableApcExtension - components: - - pos: 34.5,-11.5 - parent: 30 - type: Transform -- uid: 12137 - type: CableApcExtension - components: - - pos: 22.5,-2.5 - parent: 30 - type: Transform -- uid: 12138 - type: CableApcExtension - components: - - pos: 21.5,-2.5 - parent: 30 - type: Transform -- uid: 12139 - type: CableApcExtension - components: - - pos: 20.5,-2.5 - parent: 30 - type: Transform -- uid: 12140 - type: CableApcExtension - components: - - pos: 19.5,-2.5 - parent: 30 - type: Transform -- uid: 12141 - type: CableApcExtension - components: - - pos: 19.5,-5.5 - parent: 30 - type: Transform -- uid: 12142 - type: CableApcExtension - components: - - pos: 19.5,-4.5 - parent: 30 - type: Transform -- uid: 12143 - type: CableApcExtension - components: - - pos: 19.5,-1.5 - parent: 30 - type: Transform -- uid: 12144 - type: CableApcExtension - components: - - pos: 20.5,-1.5 - parent: 30 - type: Transform -- uid: 12145 - type: CableApcExtension - components: - - pos: 20.5,-0.5 - parent: 30 - type: Transform -- uid: 12146 - type: CableApcExtension - components: - - pos: 20.5,0.5 - parent: 30 - type: Transform -- uid: 12147 - type: CableApcExtension - components: - - pos: 20.5,1.5 - parent: 30 - type: Transform -- uid: 12148 - type: CableApcExtension - components: - - pos: 19.5,1.5 - parent: 30 - type: Transform -- uid: 12149 - type: CableApcExtension - components: - - pos: 18.5,1.5 - parent: 30 - type: Transform -- uid: 12150 - type: CableApcExtension - components: - - pos: 17.5,1.5 - parent: 30 - type: Transform -- uid: 12151 - type: CableApcExtension - components: - - pos: 16.5,1.5 - parent: 30 - type: Transform -- uid: 12152 - type: CableApcExtension - components: - - pos: 16.5,0.5 - parent: 30 - type: Transform -- uid: 12153 - type: CableApcExtension - components: - - pos: 18.5,-6.5 - parent: 30 - type: Transform -- uid: 12154 - type: CableApcExtension - components: - - pos: 17.5,-6.5 - parent: 30 - type: Transform -- uid: 12155 - type: CableApcExtension - components: - - pos: 16.5,-6.5 - parent: 30 - type: Transform -- uid: 12156 - type: CableApcExtension - components: - - pos: 15.5,-6.5 - parent: 30 - type: Transform -- uid: 12157 - type: CableApcExtension - components: - - pos: 14.5,-6.5 - parent: 30 - type: Transform -- uid: 12158 - type: CableApcExtension - components: - - pos: 13.5,-6.5 - parent: 30 - type: Transform -- uid: 12159 - type: CableApcExtension - components: - - pos: 12.5,-6.5 - parent: 30 - type: Transform -- uid: 12160 - type: CableApcExtension - components: - - pos: 12.5,-7.5 - parent: 30 - type: Transform -- uid: 12161 - type: CableApcExtension - components: - - pos: 12.5,-5.5 - parent: 30 - type: Transform -- uid: 12162 - type: CableApcExtension - components: - - pos: 12.5,-4.5 - parent: 30 - type: Transform -- uid: 12163 - type: CableApcExtension - components: - - pos: 12.5,-3.5 - parent: 30 - type: Transform -- uid: 12164 - type: CableApcExtension - components: - - pos: 12.5,-2.5 - parent: 30 - type: Transform -- uid: 12165 - type: CableApcExtension - components: - - pos: 12.5,-1.5 - parent: 30 - type: Transform -- uid: 12166 - type: CableApcExtension - components: - - pos: 12.5,-0.5 - parent: 30 - type: Transform -- uid: 12167 - type: CableApcExtension - components: - - pos: 12.5,0.5 - parent: 30 - type: Transform -- uid: 12168 - type: CableApcExtension - components: - - pos: 12.5,1.5 - parent: 30 - type: Transform -- uid: 12169 - type: CableApcExtension - components: - - pos: 12.5,2.5 - parent: 30 - type: Transform -- uid: 12170 - type: CableApcExtension - components: - - pos: 12.5,3.5 - parent: 30 - type: Transform -- uid: 12171 - type: CableApcExtension - components: - - pos: 12.5,4.5 - parent: 30 - type: Transform -- uid: 12172 - type: CableApcExtension - components: - - pos: 17.5,2.5 - parent: 30 - type: Transform -- uid: 12173 - type: CableApcExtension - components: - - pos: 17.5,3.5 - parent: 30 - type: Transform -- uid: 12174 - type: CableApcExtension - components: - - pos: 17.5,4.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12175 - type: CableApcExtension - components: - - pos: 17.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12176 - type: CableApcExtension - components: - - pos: 17.5,6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12177 - type: CableApcExtension - components: - - pos: 17.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12178 - type: CableApcExtension - components: - - pos: 15.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12179 - type: CableApcExtension - components: - - pos: 16.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12180 - type: CableApcExtension - components: - - pos: 14.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12181 - type: CableApcExtension - components: - - pos: 13.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12182 - type: CableApcExtension - components: - - pos: 12.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12183 - type: CableApcExtension - components: - - pos: 12.5,6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12184 - type: CableApcExtension - components: - - pos: 31.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12185 - type: CableMV - components: - - pos: 33.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12186 - type: CableMV - components: - - pos: 31.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12187 - type: CableMV - components: - - pos: 28.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12188 - type: CableMV - components: - - pos: 26.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12189 - type: CableMV - components: - - pos: 24.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12190 - type: CableApcExtension - components: - - pos: 11.5,2.5 - parent: 30 - type: Transform -- uid: 12191 - type: CableApcExtension - components: - - pos: 10.5,2.5 - parent: 30 - type: Transform -- uid: 12192 - type: CableApcExtension - components: - - pos: 9.5,2.5 - parent: 30 - type: Transform -- uid: 12193 - type: CableApcExtension - components: - - pos: 9.5,3.5 - parent: 30 - type: Transform -- uid: 12194 - type: CableApcExtension - components: - - pos: 9.5,4.5 - parent: 30 - type: Transform -- uid: 12195 - type: CableApcExtension - components: - - pos: 9.5,5.5 - parent: 30 - type: Transform -- uid: 12196 - type: CableApcExtension - components: - - pos: 8.5,2.5 - parent: 30 - type: Transform -- uid: 12197 - type: CableApcExtension - components: - - pos: 9.5,6.5 - parent: 30 - type: Transform -- uid: 12198 - type: CableApcExtension - components: - - pos: 9.5,7.5 - parent: 30 - type: Transform -- uid: 12199 - type: CableApcExtension - components: - - pos: 9.5,8.5 - parent: 30 - type: Transform -- uid: 12201 - type: PoweredSmallLight - components: - - pos: 27.5,2.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12202 - type: PoweredSmallLight - components: - - pos: 30.5,2.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12203 - type: Poweredlight - components: - - pos: 16.5,2.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12204 - type: Poweredlight - components: - - pos: 20.5,2.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12205 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12206 - type: WallSolid - components: - - pos: 26.5,-8.5 - parent: 30 - type: Transform -- uid: 12207 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-7.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12208 - type: Poweredlight - components: - - pos: 14.5,-1.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12209 - type: FoodBurgerMcguffin - components: - - pos: 2.462329,-8.535353 - parent: 30 - type: Transform -- uid: 12210 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,4.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12211 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,4.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12212 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,9.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12213 - type: WallReinforced - components: - - pos: -35.5,-64.5 - parent: 30 - type: Transform -- uid: 12214 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,18.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12215 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,24.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12216 - type: Poweredlight - components: - - pos: 2.5,23.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12217 - type: Poweredlight - components: - - pos: 6.5,23.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12218 - type: CableApcExtension - components: - - pos: 13.5,-2.5 - parent: 30 - type: Transform -- uid: 12219 - type: CableApcExtension - components: - - pos: 14.5,-2.5 - parent: 30 - type: Transform -- uid: 12220 - type: CableApcExtension - components: - - pos: 15.5,-2.5 - parent: 30 - type: Transform -- uid: 12221 - type: CableApcExtension - components: - - pos: 16.5,-2.5 - parent: 30 - type: Transform -- uid: 12222 - type: CableApcExtension - components: - - pos: 15.5,-3.5 - parent: 30 - type: Transform -- uid: 12223 - type: CableApcExtension - components: - - pos: 15.5,-4.5 - parent: 30 - type: Transform -- uid: 12224 - type: CableApcExtension - components: - - pos: 17.5,-2.5 - parent: 30 - type: Transform -- uid: 12225 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12226 - type: DrinkMug - components: - - pos: -0.43007827,-8.570738 - parent: 30 - type: Transform -- uid: 12227 - type: Poweredlight - components: - - pos: 17.5,-9.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12228 - type: CableApcExtension - components: - - pos: 36.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12229 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12230 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 34.5,-14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12231 - type: ConveyorBelt - components: - - pos: 35.5,-17.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11677 - Forward: - - port: Left - uid: 11677 - Off: - - port: Middle - uid: 11677 - type: SignalReceiver -- uid: 12232 - type: Grille - components: - - pos: 13.5,65.5 - parent: 30 - type: Transform -- uid: 12233 - type: BannerCargo - components: - - pos: 16.5,-9.5 - parent: 30 - type: Transform -- uid: 12234 - type: Rack - components: - - pos: 17.5,-9.5 - parent: 30 - type: Transform -- uid: 12235 - type: Table - components: - - pos: 20.5,-11.5 - parent: 30 - type: Transform -- uid: 12236 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12237 - type: WallSolid - components: - - pos: 28.5,-8.5 - parent: 30 - type: Transform -- uid: 12238 - type: ToolboxEmergencyFilled - components: - - pos: 17.507895,-9.366575 - parent: 30 - type: Transform -- uid: 12239 - type: CableApcExtension - components: - - pos: 31.5,-10.5 - parent: 30 - type: Transform -- uid: 12240 - type: CableApcExtension - components: - - pos: 35.5,-6.5 - parent: 30 - type: Transform -- uid: 12241 - type: PoweredLightPostSmall - components: - - pos: -50.5,-42.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12242 - type: Grille - components: - - pos: 47.5,6.5 - parent: 30 - type: Transform -- uid: 12243 - type: AirlockCaptainLocked - components: - - pos: -38.5,25.5 - parent: 30 - type: Transform -- uid: 12244 - type: WallReinforced - components: - - pos: -38.5,23.5 - parent: 30 - type: Transform -- uid: 12245 - type: WallReinforced - components: - - pos: -38.5,26.5 - parent: 30 - type: Transform -- uid: 12246 - type: WallReinforced - components: - - pos: -42.5,25.5 - parent: 30 - type: Transform -- uid: 12247 - type: WallReinforced - components: - - pos: -39.5,23.5 - parent: 30 - type: Transform -- uid: 12248 - type: WallReinforced - components: - - pos: -40.5,23.5 - parent: 30 - type: Transform -- uid: 12249 - type: WallReinforced - components: - - pos: -41.5,23.5 - parent: 30 - type: Transform -- uid: 12250 - type: WallReinforced - components: - - pos: -42.5,23.5 - parent: 30 - type: Transform -- uid: 12251 - type: PosterContrabandFreeDrone - components: - - pos: -40.5,27.5 - parent: 30 - type: Transform -- uid: 12252 - type: WallReinforced - components: - - pos: -39.5,27.5 - parent: 30 - type: Transform -- uid: 12253 - type: WallReinforced - components: - - pos: -40.5,27.5 - parent: 30 - type: Transform -- uid: 12254 - type: WallReinforced - components: - - pos: -41.5,27.5 - parent: 30 - type: Transform -- uid: 12255 - type: WallReinforced - components: - - pos: -42.5,27.5 - parent: 30 - type: Transform -- uid: 12256 - type: WallReinforced - components: - - pos: -38.5,27.5 - parent: 30 - type: Transform -- uid: 12257 - type: WallReinforced - components: - - pos: -42.5,26.5 - parent: 30 - type: Transform -- uid: 12258 - type: WallReinforced - components: - - pos: -43.5,23.5 - parent: 30 - type: Transform -- uid: 12259 - type: WallReinforced - components: - - pos: -43.5,24.5 - parent: 30 - type: Transform -- uid: 12260 - type: WallReinforced - components: - - pos: -43.5,25.5 - parent: 30 - type: Transform -- uid: 12261 - type: WallReinforced - components: - - pos: -43.5,26.5 - parent: 30 - type: Transform -- uid: 12262 - type: WallReinforced - components: - - pos: -43.5,27.5 - parent: 30 - type: Transform -- uid: 12263 - type: SignDrones - components: - - pos: -37.5,26.5 - parent: 30 - type: Transform -- uid: 12264 - type: WallReinforced - components: - - pos: -42.5,24.5 - parent: 30 - type: Transform -- uid: 12265 - type: CableApcExtension - components: - - pos: -36.5,26.5 - parent: 30 - type: Transform -- uid: 12266 - type: CableApcExtension - components: - - pos: -36.5,25.5 - parent: 30 - type: Transform -- uid: 12267 - type: CableApcExtension - components: - - pos: -37.5,25.5 - parent: 30 - type: Transform -- uid: 12268 - type: CableApcExtension - components: - - pos: -38.5,25.5 - parent: 30 - type: Transform -- uid: 12269 - type: CableApcExtension - components: - - pos: -39.5,25.5 - parent: 30 - type: Transform -- uid: 12270 - type: CableApcExtension - components: - - pos: -40.5,25.5 - parent: 30 - type: Transform -- uid: 12271 - type: CableApcExtension - components: - - pos: -41.5,25.5 - parent: 30 - type: Transform -- uid: 12272 - type: TableReinforced - components: - - pos: -39.5,26.5 - parent: 30 - type: Transform -- uid: 12273 - type: TableReinforced - components: - - pos: -40.5,26.5 - parent: 30 - type: Transform -- uid: 12274 - type: TableReinforced - components: - - pos: -41.5,26.5 - parent: 30 - type: Transform -- uid: 12275 - type: TableReinforced - components: - - pos: -41.5,25.5 - parent: 30 - type: Transform -- uid: 12276 - type: TableReinforced - components: - - pos: -41.5,24.5 - parent: 30 - type: Transform -- uid: 12277 - type: TableReinforced - components: - - pos: -40.5,24.5 - parent: 30 - type: Transform -- uid: 12278 - type: MopBucket - components: - - pos: -39.48713,24.49544 - parent: 30 - type: Transform -- uid: 12279 - type: MopItem - components: - - pos: -40.79963,24.62044 - parent: 30 - type: Transform -- uid: 12280 - type: MopItem - components: - - pos: -40.51838,24.604815 - parent: 30 - type: Transform -- uid: 12281 - type: SheetSteel - components: - - pos: -41.440254,26.52669 - parent: 30 - type: Transform -- uid: 12282 - type: SheetSteel - components: - - pos: -41.440254,26.52669 - parent: 30 - type: Transform -- uid: 12283 - type: SheetPlasteel - components: - - pos: -40.690254,26.479815 - parent: 30 - type: Transform -- uid: 12284 - type: SheetPlasteel - components: - - pos: -40.690254,26.479815 - parent: 30 - type: Transform -- uid: 12285 - type: SheetGlass - components: - - pos: -40.065254,26.49544 - parent: 30 - type: Transform -- uid: 12286 - type: SheetGlass - components: - - pos: -40.065254,26.49544 - parent: 30 - type: Transform -- uid: 12287 - type: SheetRGlass - components: - - pos: -39.42463,26.479815 - parent: 30 - type: Transform -- uid: 12288 - type: SheetRGlass - components: - - pos: -39.42463,26.479815 - parent: 30 - type: Transform -- uid: 12289 - type: PartRodMetal - components: - - pos: -41.502754,25.93294 - parent: 30 - type: Transform -- uid: 12290 - type: PartRodMetal - components: - - pos: -41.502754,25.93294 - parent: 30 - type: Transform -- uid: 12291 - type: CableApcStack - components: - - pos: -41.627754,25.417315 - parent: 30 - type: Transform -- uid: 12292 - type: CableApcStack - components: - - pos: -41.627754,25.417315 - parent: 30 - type: Transform -- uid: 12293 - type: CableMVStack - components: - - pos: -41.627754,25.229815 - parent: 30 - type: Transform -- uid: 12294 - type: CableMVStack - components: - - pos: -41.627754,25.229815 - parent: 30 - type: Transform -- uid: 12295 - type: CableHVStack - components: - - pos: -41.61213,25.042315 - parent: 30 - type: Transform -- uid: 12296 - type: CableHVStack - components: - - pos: -41.61213,25.042315 - parent: 30 - type: Transform -- uid: 12297 - type: SprayBottleSpaceCleaner - components: - - pos: -40.346504,24.55794 - parent: 30 - type: Transform -- uid: 12298 - type: SprayBottleSpaceCleaner - components: - - pos: -40.54963,24.55794 - parent: 30 - type: Transform -- uid: 12299 - type: SprayBottleSpaceCleaner - components: - - pos: -40.73713,24.55794 - parent: 30 - type: Transform -- uid: 12300 - type: TrashBag - components: - - pos: -41.784004,24.537539 - parent: 30 - type: Transform -- uid: 12301 - type: TrashBag - components: - - pos: -41.54963,24.537539 - parent: 30 - type: Transform -- uid: 12302 - type: TrashBag - components: - - pos: -41.33088,24.537539 - parent: 30 - type: Transform -- uid: 12303 - type: Poweredlight - components: - - pos: -40.5,26.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12304 - type: SpawnMobDrone - components: - - pos: -40.5,25.5 - parent: 30 - type: Transform -- uid: 12305 - type: SpawnMobDrone - components: - - pos: -39.5,25.5 - parent: 30 - type: Transform -- uid: 12306 - type: SpawnMobDrone - components: - - pos: -40.5,25.5 - parent: 30 - type: Transform -- uid: 12307 - type: CableApcExtension - components: - - pos: 34.5,-3.5 - parent: 30 - type: Transform -- uid: 12308 - type: WallSolid - components: - - pos: -43.5,-21.5 - parent: 30 - type: Transform -- uid: 12309 - type: CowToolboxFilled - components: - - pos: 29.536556,-37.5655 - parent: 30 - type: Transform -- uid: 12310 - type: WallSolid - components: - - pos: -43.5,-20.5 - parent: 30 - type: Transform -- uid: 12311 - type: WallSolid - components: - - pos: -43.5,-19.5 - parent: 30 - type: Transform -- uid: 12312 - type: WallSolid - components: - - pos: -43.5,-18.5 - parent: 30 - type: Transform -- uid: 12313 - type: WallSolid - components: - - pos: -43.5,-17.5 - parent: 30 - type: Transform -- uid: 12314 - type: WallSolid - components: - - pos: -43.5,-16.5 - parent: 30 - type: Transform -- uid: 12315 - type: CableMV - components: - - pos: 12.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12316 - type: CableMV - components: - - pos: 11.5,42.5 - parent: 30 - type: Transform -- uid: 12317 - type: CableMV - components: - - pos: 19.5,31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12318 - type: CableMV - components: - - pos: 19.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12319 - type: CableMV - components: - - pos: 19.5,29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12320 - type: CableMV - components: - - pos: 19.5,28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12321 - type: CableApcExtension - components: - - pos: 19.5,28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12322 - type: CableApcExtension - components: - - pos: 19.5,29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12323 - type: CableApcExtension - components: - - pos: 19.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12324 - type: CableApcExtension - components: - - pos: 18.5,30.5 - parent: 30 - type: Transform -- uid: 12325 - type: CableApcExtension - components: - - pos: 17.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12326 - type: CableApcExtension - components: - - pos: 16.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12327 - type: CableApcExtension - components: - - pos: 19.5,27.5 - parent: 30 - type: Transform -- uid: 12328 - type: CableApcExtension - components: - - pos: 19.5,26.5 - parent: 30 - type: Transform -- uid: 12329 - type: CableApcExtension - components: - - pos: 18.5,26.5 - parent: 30 - type: Transform -- uid: 12330 - type: CableApcExtension - components: - - pos: 17.5,26.5 - parent: 30 - type: Transform -- uid: 12331 - type: CableApcExtension - components: - - pos: 16.5,26.5 - parent: 30 - type: Transform -- uid: 12332 - type: CableApcExtension - components: - - pos: 15.5,26.5 - parent: 30 - type: Transform -- uid: 12333 - type: CableApcExtension - components: - - pos: 14.5,26.5 - parent: 30 - type: Transform -- uid: 12334 - type: CableApcExtension - components: - - pos: 13.5,26.5 - parent: 30 - type: Transform -- uid: 12335 - type: CableApcExtension - components: - - pos: 12.5,26.5 - parent: 30 - type: Transform -- uid: 12336 - type: CableApcExtension - components: - - pos: 11.5,26.5 - parent: 30 - type: Transform -- uid: 12337 - type: CableApcExtension - components: - - pos: 9.5,26.5 - parent: 30 - type: Transform -- uid: 12338 - type: CableApcExtension - components: - - pos: 10.5,26.5 - parent: 30 - type: Transform -- uid: 12339 - type: CableApcExtension - components: - - pos: 9.5,27.5 - parent: 30 - type: Transform -- uid: 12340 - type: CableApcExtension - components: - - pos: 9.5,28.5 - parent: 30 - type: Transform -- uid: 12341 - type: CableApcExtension - components: - - pos: 9.5,29.5 - parent: 30 - type: Transform -- uid: 12342 - type: CableApcExtension - components: - - pos: 9.5,30.5 - parent: 30 - type: Transform -- uid: 12343 - type: CableApcExtension - components: - - pos: 9.5,31.5 - parent: 30 - type: Transform -- uid: 12344 - type: CableApcExtension - components: - - pos: 9.5,32.5 - parent: 30 - type: Transform -- uid: 12345 - type: CableApcExtension - components: - - pos: 9.5,33.5 - parent: 30 - type: Transform -- uid: 12346 - type: CableApcExtension - components: - - pos: 9.5,33.5 - parent: 30 - type: Transform -- uid: 12347 - type: CableApcExtension - components: - - pos: 8.5,33.5 - parent: 30 - type: Transform -- uid: 12348 - type: CableApcExtension - components: - - pos: 10.5,33.5 - parent: 30 - type: Transform -- uid: 12349 - type: CableApcExtension - components: - - pos: 10.5,30.5 - parent: 30 - type: Transform -- uid: 12350 - type: CableApcExtension - components: - - pos: 8.5,30.5 - parent: 30 - type: Transform -- uid: 12351 - type: CableApcExtension - components: - - pos: 9.5,25.5 - parent: 30 - type: Transform -- uid: 12352 - type: CableApcExtension - components: - - pos: 9.5,24.5 - parent: 30 - type: Transform -- uid: 12353 - type: CableApcExtension - components: - - pos: 9.5,23.5 - parent: 30 - type: Transform -- uid: 12354 - type: CableApcExtension - components: - - pos: 9.5,22.5 - parent: 30 - type: Transform -- uid: 12355 - type: CableApcExtension - components: - - pos: 9.5,22.5 - parent: 30 - type: Transform -- uid: 12356 - type: CableApcExtension - components: - - pos: 9.5,21.5 - parent: 30 - type: Transform -- uid: 12357 - type: CableApcExtension - components: - - pos: 9.5,20.5 - parent: 30 - type: Transform -- uid: 12358 - type: CableApcExtension - components: - - pos: 20.5,26.5 - parent: 30 - type: Transform -- uid: 12359 - type: CableApcExtension - components: - - pos: 21.5,26.5 - parent: 30 - type: Transform -- uid: 12360 - type: CableApcExtension - components: - - pos: 22.5,26.5 - parent: 30 - type: Transform -- uid: 12361 - type: CableApcExtension - components: - - pos: 23.5,26.5 - parent: 30 - type: Transform -- uid: 12362 - type: CableApcExtension - components: - - pos: 24.5,26.5 - parent: 30 - type: Transform -- uid: 12363 - type: CableApcExtension - components: - - pos: 25.5,26.5 - parent: 30 - type: Transform -- uid: 12364 - type: CableApcExtension - components: - - pos: 26.5,26.5 - parent: 30 - type: Transform -- uid: 12365 - type: CableApcExtension - components: - - pos: 27.5,26.5 - parent: 30 - type: Transform -- uid: 12366 - type: CableApcExtension - components: - - pos: 27.5,27.5 - parent: 30 - type: Transform -- uid: 12367 - type: CableApcExtension - components: - - pos: 27.5,28.5 - parent: 30 - type: Transform -- uid: 12368 - type: CableApcExtension - components: - - pos: 27.5,29.5 - parent: 30 - type: Transform -- uid: 12369 - type: CableApcExtension - components: - - pos: 28.5,29.5 - parent: 30 - type: Transform -- uid: 12370 - type: CableApcExtension - components: - - pos: 29.5,29.5 - parent: 30 - type: Transform -- uid: 12371 - type: CableApcExtension - components: - - pos: 30.5,29.5 - parent: 30 - type: Transform -- uid: 12372 - type: CableApcExtension - components: - - pos: 31.5,29.5 - parent: 30 - type: Transform -- uid: 12373 - type: CableApcExtension - components: - - pos: 26.5,29.5 - parent: 30 - type: Transform -- uid: 12374 - type: CableApcExtension - components: - - pos: 26.5,30.5 - parent: 30 - type: Transform -- uid: 12375 - type: CableApcExtension - components: - - pos: 26.5,31.5 - parent: 30 - type: Transform -- uid: 12376 - type: CableApcExtension - components: - - pos: 22.5,27.5 - parent: 30 - type: Transform -- uid: 12377 - type: CableApcExtension - components: - - pos: 22.5,28.5 - parent: 30 - type: Transform -- uid: 12378 - type: CableApcExtension - components: - - pos: 22.5,30.5 - parent: 30 - type: Transform -- uid: 12379 - type: CableApcExtension - components: - - pos: 22.5,29.5 - parent: 30 - type: Transform -- uid: 12380 - type: CableApcExtension - components: - - pos: 22.5,31.5 - parent: 30 - type: Transform -- uid: 12381 - type: CableApcExtension - components: - - pos: 22.5,32.5 - parent: 30 - type: Transform -- uid: 12382 - type: CableApcExtension - components: - - pos: 22.5,33.5 - parent: 30 - type: Transform -- uid: 12383 - type: CableApcExtension - components: - - pos: 21.5,33.5 - parent: 30 - type: Transform -- uid: 12384 - type: CableApcExtension - components: - - pos: 20.5,33.5 - parent: 30 - type: Transform -- uid: 12385 - type: CableApcExtension - components: - - pos: 19.5,33.5 - parent: 30 - type: Transform -- uid: 12386 - type: CableApcExtension - components: - - pos: 18.5,33.5 - parent: 30 - type: Transform -- uid: 12387 - type: CableApcExtension - components: - - pos: 17.5,33.5 - parent: 30 - type: Transform -- uid: 12388 - type: CableApcExtension - components: - - pos: 16.5,33.5 - parent: 30 - type: Transform -- uid: 12389 - type: CableApcExtension - components: - - pos: 22.5,34.5 - parent: 30 - type: Transform -- uid: 12390 - type: CableApcExtension - components: - - pos: 22.5,35.5 - parent: 30 - type: Transform -- uid: 12391 - type: CableApcExtension - components: - - pos: 22.5,36.5 - parent: 30 - type: Transform -- uid: 12392 - type: CableApcExtension - components: - - pos: 21.5,36.5 - parent: 30 - type: Transform -- uid: 12393 - type: CableApcExtension - components: - - pos: 20.5,36.5 - parent: 30 - type: Transform -- uid: 12394 - type: CableApcExtension - components: - - pos: 19.5,36.5 - parent: 30 - type: Transform -- uid: 12395 - type: CableApcExtension - components: - - pos: 18.5,36.5 - parent: 30 - type: Transform -- uid: 12396 - type: CableApcExtension - components: - - pos: 17.5,36.5 - parent: 30 - type: Transform -- uid: 12397 - type: CableApcExtension - components: - - pos: 16.5,36.5 - parent: 30 - type: Transform -- uid: 12398 - type: CableApcExtension - components: - - pos: 22.5,37.5 - parent: 30 - type: Transform -- uid: 12399 - type: CableApcExtension - components: - - pos: 22.5,38.5 - parent: 30 - type: Transform -- uid: 12400 - type: CableApcExtension - components: - - pos: 22.5,39.5 - parent: 30 - type: Transform -- uid: 12401 - type: CableApcExtension - components: - - pos: 21.5,39.5 - parent: 30 - type: Transform -- uid: 12402 - type: CableApcExtension - components: - - pos: 20.5,39.5 - parent: 30 - type: Transform -- uid: 12403 - type: CableApcExtension - components: - - pos: 19.5,39.5 - parent: 30 - type: Transform -- uid: 12404 - type: CableApcExtension - components: - - pos: 18.5,39.5 - parent: 30 - type: Transform -- uid: 12405 - type: CableApcExtension - components: - - pos: 17.5,39.5 - parent: 30 - type: Transform -- uid: 12406 - type: CableApcExtension - components: - - pos: 16.5,39.5 - parent: 30 - type: Transform -- uid: 12407 - type: CableApcExtension - components: - - pos: 20.5,40.5 - parent: 30 - type: Transform -- uid: 12408 - type: CableApcExtension - components: - - pos: 20.5,41.5 - parent: 30 - type: Transform -- uid: 12409 - type: CableApcExtension - components: - - pos: 20.5,42.5 - parent: 30 - type: Transform -- uid: 12410 - type: CableApcExtension - components: - - pos: 20.5,43.5 - parent: 30 - type: Transform -- uid: 12411 - type: CableApcExtension - components: - - pos: 19.5,43.5 - parent: 30 - type: Transform -- uid: 12412 - type: CableApcExtension - components: - - pos: 18.5,43.5 - parent: 30 - type: Transform -- uid: 12413 - type: CableApcExtension - components: - - pos: 17.5,43.5 - parent: 30 - type: Transform -- uid: 12414 - type: CableApcExtension - components: - - pos: 16.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12415 - type: CableApcExtension - components: - - pos: 16.5,42.5 - parent: 30 - type: Transform -- uid: 12416 - type: CableApcExtension - components: - - pos: 16.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12417 - type: CableApcExtension - components: - - pos: 16.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12418 - type: CableApcExtension - components: - - pos: 23.5,39.5 - parent: 30 - type: Transform -- uid: 12419 - type: CableApcExtension - components: - - pos: 24.5,39.5 - parent: 30 - type: Transform -- uid: 12420 - type: CableApcExtension - components: - - pos: 25.5,39.5 - parent: 30 - type: Transform -- uid: 12421 - type: CableApcExtension - components: - - pos: 26.5,39.5 - parent: 30 - type: Transform -- uid: 12422 - type: CableApcExtension - components: - - pos: 27.5,39.5 - parent: 30 - type: Transform -- uid: 12423 - type: CableApcExtension - components: - - pos: 25.5,40.5 - parent: 30 - type: Transform -- uid: 12424 - type: CableApcExtension - components: - - pos: 25.5,41.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12425 - type: CableApcExtension - components: - - pos: 25.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12426 - type: CableApcExtension - components: - - pos: 24.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12427 - type: CableApcExtension - components: - - pos: 25.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12428 - type: CableApcExtension - components: - - pos: 26.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12429 - type: CableApcExtension - components: - - pos: 23.5,36.5 - parent: 30 - type: Transform -- uid: 12430 - type: CableApcExtension - components: - - pos: 24.5,36.5 - parent: 30 - type: Transform -- uid: 12431 - type: CableApcExtension - components: - - pos: 25.5,36.5 - parent: 30 - type: Transform -- uid: 12432 - type: CableApcExtension - components: - - pos: 26.5,36.5 - parent: 30 - type: Transform -- uid: 12433 - type: CableApcExtension - components: - - pos: 27.5,36.5 - parent: 30 - type: Transform -- uid: 12434 - type: CableApcExtension - components: - - pos: 27.5,36.5 - parent: 30 - type: Transform -- uid: 12435 - type: CableApcExtension - components: - - pos: 28.5,36.5 - parent: 30 - type: Transform -- uid: 12436 - type: CableApcExtension - components: - - pos: 29.5,36.5 - parent: 30 - type: Transform -- uid: 12437 - type: CableApcExtension - components: - - pos: 23.5,34.5 - parent: 30 - type: Transform -- uid: 12438 - type: CableApcExtension - components: - - pos: 25.5,34.5 - parent: 30 - type: Transform -- uid: 12439 - type: CableApcExtension - components: - - pos: 26.5,34.5 - parent: 30 - type: Transform -- uid: 12440 - type: CableApcExtension - components: - - pos: 27.5,34.5 - parent: 30 - type: Transform -- uid: 12441 - type: CableApcExtension - components: - - pos: 24.5,34.5 - parent: 30 - type: Transform -- uid: 12442 - type: CableApcExtension - components: - - pos: 26.5,33.5 - parent: 30 - type: Transform -- uid: 12443 - type: CableApcExtension - components: - - pos: 26.5,32.5 - parent: 30 - type: Transform -- uid: 12444 - type: CableApcExtension - components: - - pos: 31.5,30.5 - parent: 30 - type: Transform -- uid: 12445 - type: CableApcExtension - components: - - pos: 31.5,31.5 - parent: 30 - type: Transform -- uid: 12446 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,35.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12447 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,31.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12448 - type: Poweredlight - components: - - pos: 15.5,27.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12449 - type: Poweredlight - components: - - pos: 20.5,27.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12450 - type: LockerEvidence - components: - - pos: -45.5,42.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12451 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,38.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12452 - type: FoodCondimentBottleEnzyme - components: - - pos: -48.82087,63.788986 - parent: 30 - type: Transform -- uid: 12453 - type: Poweredlight - components: - - pos: 27.5,40.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12454 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,30.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12455 - type: Airlock - components: - - pos: 31.5,28.5 - parent: 30 - type: Transform -- uid: 12456 - type: Poweredlight - components: - - pos: 28.5,30.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12457 - type: Airlock - components: - - pos: 25.5,26.5 - parent: 30 - type: Transform -- uid: 12458 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,26.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12459 - type: Table - components: - - pos: 25.5,29.5 - parent: 30 - type: Transform -- uid: 12460 - type: Table - components: - - pos: 25.5,30.5 - parent: 30 - type: Transform -- uid: 12461 - type: Table - components: - - pos: 25.5,31.5 - parent: 30 - type: Transform -- uid: 12462 - type: RandomSoap - components: - - pos: 29.5,30.5 - parent: 30 - type: Transform -- uid: 12463 - type: RandomInstruments - components: - - pos: 25.5,30.5 - parent: 30 - type: Transform -- uid: 12464 - type: GasPipeStraight - components: - - pos: 10.5,26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12465 - type: GasPipeStraight - components: - - pos: 10.5,27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12466 - type: GasPipeStraight - components: - - pos: 10.5,28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12467 - type: GasPipeStraight - components: - - pos: 10.5,29.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12468 - type: GasPipeStraight - components: - - pos: 10.5,30.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12469 - type: GasPipeStraight - components: - - pos: 10.5,31.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12470 - type: GasPipeStraight - components: - - pos: 8.5,28.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12471 - type: GasPipeStraight - components: - - pos: 8.5,29.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12472 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 8.5,31.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12473 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,33.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12474 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12475 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,32.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12476 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,32.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12477 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,33.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12478 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,34.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12479 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12480 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12481 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12482 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,38.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12483 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,34.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12484 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12485 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,36.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12486 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12487 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12488 - type: GasPipeTJunction - components: - - pos: 10.5,39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12489 - type: GasVentScrubber - components: - - pos: 8.5,39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12490 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 9.5,31.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12491 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 9.5,33.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12492 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 11.5,39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12493 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 9.5,39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12494 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12495 - type: GasVentPump - components: - - pos: 9.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12496 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12497 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12498 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12499 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12500 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12501 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12502 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12503 - type: GasPipeTJunction - components: - - pos: 16.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12504 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12505 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12506 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12507 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12508 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,28.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12509 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,29.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12510 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12511 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,31.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12512 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,32.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12513 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 21.5,33.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12514 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 21.5,27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12515 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 23.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12516 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12517 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12518 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12519 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12520 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12521 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12522 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12523 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 18.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12524 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12525 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12526 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12527 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12528 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 23.5,26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12529 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12530 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12531 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,30.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12532 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,29.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12533 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,31.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12534 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,32.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12535 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,33.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12536 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 9.5,26.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12537 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 9.5,24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12538 - type: GasVentPump - components: - - pos: 18.5,26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12539 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 16.5,26.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12540 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 23.5,34.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12541 - type: GasPipeFourway - components: - - pos: 21.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12542 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 23.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12543 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 21.5,39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12544 - type: GasPipeTJunction - components: - - pos: 23.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12545 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 20.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12546 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,34.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12547 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12548 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12549 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,38.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12550 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12551 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,36.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12552 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12553 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,41.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12554 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,42.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12555 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12556 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12557 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12558 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12559 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 24.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12560 - type: GasPipeStraight - components: - - pos: 23.5,39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12561 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12562 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12563 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12564 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12565 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12566 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12567 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,33.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12568 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,33.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12569 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,34.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12570 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,34.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12571 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,34.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12572 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,34.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12573 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12574 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12575 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12576 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 18.5,33.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12577 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 18.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12578 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 18.5,39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12579 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 18.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12580 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 18.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12581 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 18.5,34.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12582 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 20.5,43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12583 - type: GasVentScrubber - components: - - pos: 21.5,43.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12584 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 25.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12585 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12586 - type: GasPipeStraight - components: - - pos: 25.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12587 - type: GasVentPump - components: - - pos: 25.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12588 - type: GasPipeBend - components: - - pos: 26.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12589 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 26.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12590 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12591 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12592 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12593 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12594 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12595 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12596 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12597 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12598 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12599 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 23.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12600 - type: GasPipeTJunction - components: - - pos: 26.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12601 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12602 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12603 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12604 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12605 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 24.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12606 - type: GasVentScrubber - components: - - pos: 24.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12607 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12608 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12609 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12610 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 27.5,26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12611 - type: GasVentPump - components: - - pos: 27.5,27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12612 - type: GasPipeStraight - components: - - pos: 26.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12613 - type: GasPipeStraight - components: - - pos: 26.5,34.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12614 - type: GasPipeStraight - components: - - pos: 26.5,33.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12615 - type: GasPipeStraight - components: - - pos: 26.5,32.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12616 - type: GasPipeStraight - components: - - pos: 26.5,31.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12617 - type: GasPipeStraight - components: - - pos: 26.5,30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12618 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 26.5,29.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12619 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 27.5,29.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12620 - type: FirelockGlass - components: - - pos: 10.5,19.5 - parent: 30 - type: Transform -- uid: 12621 - type: FirelockGlass - components: - - pos: 9.5,19.5 - parent: 30 - type: Transform -- uid: 12622 - type: FirelockGlass - components: - - pos: 8.5,19.5 - parent: 30 - type: Transform -- uid: 12623 - type: FirelockGlass - components: - - pos: 8.5,11.5 - parent: 30 - type: Transform -- uid: 12624 - type: FirelockGlass - components: - - pos: 10.5,11.5 - parent: 30 - type: Transform -- uid: 12625 - type: ShuttersNormalOpen - components: - - pos: -5.5,12.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20446 - type: SignalReceiver -- uid: 12626 - type: FirelockGlass - components: - - pos: 9.5,11.5 - parent: 30 - type: Transform -- uid: 12627 - type: WallReinforced - components: - - pos: 12.5,13.5 - parent: 30 - type: Transform -- uid: 12628 - type: OperatingTable - components: - - pos: 18.5,18.5 - parent: 30 - type: Transform -- uid: 12629 - type: Grille - components: - - pos: 13.5,13.5 - parent: 30 - type: Transform -- uid: 12630 - type: WallReinforced - components: - - pos: 14.5,9.5 - parent: 30 - type: Transform -- uid: 12631 - type: WallReinforced - components: - - pos: 13.5,9.5 - parent: 30 - type: Transform -- uid: 12632 - type: WallReinforced - components: - - pos: 15.5,9.5 - parent: 30 - type: Transform -- uid: 12633 - type: WallReinforced - components: - - pos: 16.5,9.5 - parent: 30 - type: Transform -- uid: 12634 - type: WallReinforced - components: - - pos: 17.5,9.5 - parent: 30 - type: Transform -- uid: 12635 - type: WallReinforced - components: - - pos: 16.5,14.5 - parent: 30 - type: Transform -- uid: 12636 - type: WallReinforced - components: - - pos: 16.5,16.5 - parent: 30 - type: Transform -- uid: 12637 - type: WallReinforced - components: - - pos: 16.5,13.5 - parent: 30 - type: Transform -- uid: 12638 - type: WallReinforced - components: - - pos: 17.5,13.5 - parent: 30 - type: Transform -- uid: 12639 - type: WallReinforced - components: - - pos: 18.5,13.5 - parent: 30 - type: Transform -- uid: 12640 - type: WallReinforced - components: - - pos: 19.5,13.5 - parent: 30 - type: Transform -- uid: 12641 - type: WallReinforced - components: - - pos: 19.5,14.5 - parent: 30 - type: Transform -- uid: 12642 - type: WallReinforced - components: - - pos: 19.5,16.5 - parent: 30 - type: Transform -- uid: 12643 - type: WallReinforced - components: - - pos: 19.5,17.5 - parent: 30 - type: Transform -- uid: 12644 - type: WallReinforced - components: - - pos: 18.5,17.5 - parent: 30 - type: Transform -- uid: 12645 - type: WallReinforced - components: - - pos: 17.5,17.5 - parent: 30 - type: Transform -- uid: 12646 - type: WallReinforced - components: - - pos: 16.5,17.5 - parent: 30 - type: Transform -- uid: 12647 - type: WallReinforced - components: - - pos: 16.5,18.5 - parent: 30 - type: Transform -- uid: 12648 - type: WallReinforced - components: - - pos: 16.5,19.5 - parent: 30 - type: Transform -- uid: 12649 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,15.5 - parent: 30 - type: Transform -- uid: 12650 - type: Grille - components: - - pos: 15.5,13.5 - parent: 30 - type: Transform -- uid: 12651 - type: AirlockScienceLocked - components: - - pos: 16.5,15.5 - parent: 30 - type: Transform -- uid: 12652 - type: AirlockScienceLocked - components: - - pos: 19.5,15.5 - parent: 30 - type: Transform -- uid: 12653 - type: TableGlass - components: - - pos: 27.5,14.5 - parent: 30 - type: Transform -- uid: 12654 - type: Poweredlight - components: - - pos: 18.5,12.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12655 - type: GasPipeStraight - components: - - pos: 28.5,18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12656 - type: ShuttersNormalOpen - components: - - pos: 14.5,13.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20399 - type: SignalReceiver -- uid: 12657 - type: ShuttersNormalOpen - components: - - pos: 13.5,13.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20399 - type: SignalReceiver -- uid: 12658 - type: GasPipeStraight - components: - - pos: 28.5,17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12659 - type: WallSolid - components: - - pos: 20.5,13.5 - parent: 30 - type: Transform -- uid: 12660 - type: WallSolid - components: - - pos: 20.5,17.5 - parent: 30 - type: Transform -- uid: 12661 - type: WallReinforced - components: - - pos: 24.5,13.5 - parent: 30 - type: Transform -- uid: 12662 - type: Grille - components: - - pos: 27.5,17.5 - parent: 30 - type: Transform -- uid: 12663 - type: Flash - components: - - pos: 25.495361,22.56371 - parent: 30 - type: Transform -- uid: 12664 - type: FirelockGlass - components: - - pos: 21.5,17.5 - parent: 30 - type: Transform -- uid: 12665 - type: FirelockGlass - components: - - pos: 22.5,17.5 - parent: 30 - type: Transform -- uid: 12666 - type: FirelockGlass - components: - - pos: 23.5,17.5 - parent: 30 - type: Transform -- uid: 12667 - type: Bookshelf - components: - - pos: 27.5,16.5 - parent: 30 - type: Transform -- uid: 12668 - type: PottedPlantBioluminscent - components: - - pos: 20.5,16.5 - parent: 30 - type: Transform -- uid: 12670 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 18.5,9.5 - parent: 30 - type: Transform -- uid: 12671 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 19.5,9.5 - parent: 30 - type: Transform -- uid: 12672 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 20.5,6.5 - parent: 30 - type: Transform -- uid: 12673 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 20.5,9.5 - parent: 30 - type: Transform -- uid: 12674 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 20.5,7.5 - parent: 30 - type: Transform -- uid: 12675 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 20.5,8.5 - parent: 30 - type: Transform -- uid: 12676 - type: Bookshelf - components: - - pos: 25.5,16.5 - parent: 30 - type: Transform -- uid: 12677 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12678 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,22.5 - parent: 30 - type: Transform -- uid: 12679 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,21.5 - parent: 30 - type: Transform -- uid: 12680 - type: ReinforcedWindow - components: - - pos: 15.5,13.5 - parent: 30 - type: Transform -- uid: 12681 - type: WallReinforced - components: - - pos: 21.5,6.5 - parent: 30 - type: Transform -- uid: 12682 - type: WallReinforced - components: - - pos: 24.5,6.5 - parent: 30 - type: Transform -- uid: 12683 - type: WallReinforced - components: - - pos: 25.5,6.5 - parent: 30 - type: Transform -- uid: 12684 - type: WallReinforced - components: - - pos: 23.5,6.5 - parent: 30 - type: Transform -- uid: 12685 - type: WallReinforced - components: - - pos: 22.5,6.5 - parent: 30 - type: Transform -- uid: 12686 - type: WallReinforced - components: - - pos: 29.5,12.5 - parent: 30 - type: Transform -- uid: 12687 - type: Grille - components: - - pos: 27.5,12.5 - parent: 30 - type: Transform -- uid: 12688 - type: Grille - components: - - pos: 26.5,12.5 - parent: 30 - type: Transform -- uid: 12689 - type: WallReinforced - components: - - pos: 34.5,9.5 - parent: 30 - type: Transform -- uid: 12690 - type: WallReinforced - components: - - pos: 24.5,14.5 - parent: 30 - type: Transform -- uid: 12691 - type: WallReinforced - components: - - pos: 30.5,13.5 - parent: 30 - type: Transform -- uid: 12692 - type: WallReinforced - components: - - pos: 30.5,12.5 - parent: 30 - type: Transform -- uid: 12693 - type: WallReinforced - components: - - pos: 30.5,11.5 - parent: 30 - type: Transform -- uid: 12694 - type: WallReinforced - components: - - pos: 30.5,10.5 - parent: 30 - type: Transform -- uid: 12695 - type: ReinforcedWindow - components: - - pos: 30.5,15.5 - parent: 30 - type: Transform -- uid: 12696 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: 14.5,13.5 - parent: 30 - type: Transform -- uid: 12697 - type: WindoorScienceLocked - components: - - pos: 14.5,13.5 - parent: 30 - type: Transform -- uid: 12698 - type: Bookshelf - components: - - pos: 29.5,13.5 - parent: 30 - type: Transform -- uid: 12699 - type: TableReinforced - components: - - pos: 14.5,13.5 - parent: 30 - type: Transform -- uid: 12700 - type: CarpetPurple - components: - - pos: 26.5,14.5 - parent: 30 - type: Transform -- uid: 12701 - type: WallReinforced - components: - - pos: 34.5,10.5 - parent: 30 - type: Transform -- uid: 12702 - type: WallReinforced - components: - - pos: 34.5,11.5 - parent: 30 - type: Transform -- uid: 12703 - type: WallReinforced - components: - - pos: 34.5,12.5 - parent: 30 - type: Transform -- uid: 12704 - type: WallReinforced - components: - - pos: 34.5,13.5 - parent: 30 - type: Transform -- uid: 12705 - type: WallReinforced - components: - - pos: 31.5,10.5 - parent: 30 - type: Transform -- uid: 12706 - type: WallReinforced - components: - - pos: 33.5,10.5 - parent: 30 - type: Transform -- uid: 12707 - type: CarpetPurple - components: - - pos: 27.5,15.5 - parent: 30 - type: Transform -- uid: 12708 - type: CarpetPurple - components: - - pos: 27.5,14.5 - parent: 30 - type: Transform -- uid: 12709 - type: WallReinforced - components: - - pos: 34.5,14.5 - parent: 30 - type: Transform -- uid: 12710 - type: WallReinforced - components: - - pos: 34.5,15.5 - parent: 30 - type: Transform -- uid: 12711 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 33.5,13.5 - parent: 30 - type: Transform -- uid: 12712 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 31.5,13.5 - parent: 30 - type: Transform -- uid: 12713 - type: WallReinforced - components: - - pos: 34.5,16.5 - parent: 30 - type: Transform -- uid: 12714 - type: WallReinforced - components: - - pos: 33.5,16.5 - parent: 30 - type: Transform -- uid: 12715 - type: WallReinforced - components: - - pos: 32.5,16.5 - parent: 30 - type: Transform -- uid: 12716 - type: WallReinforced - components: - - pos: 31.5,16.5 - parent: 30 - type: Transform -- uid: 12717 - type: WallReinforced - components: - - pos: 30.5,16.5 - parent: 30 - type: Transform -- uid: 12718 - type: CarpetPurple - components: - - pos: 28.5,15.5 - parent: 30 - type: Transform -- uid: 12719 - type: ComputerResearchAndDevelopment - components: - - rot: 1.5707963267948966 rad - pos: 25.5,15.5 - parent: 30 - type: Transform -- uid: 12720 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,15.5 - parent: 30 - type: Transform -- uid: 12721 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,19.5 - parent: 30 - type: Transform -- uid: 12722 - type: WallSolid - components: - - pos: 30.5,9.5 - parent: 30 - type: Transform -- uid: 12723 - type: CarpetPurple - components: - - pos: 26.5,15.5 - parent: 30 - type: Transform -- uid: 12724 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,20.5 - parent: 30 - type: Transform -- uid: 12725 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,18.5 - parent: 30 - type: Transform -- uid: 12726 - type: PottedPlantRD - components: - - pos: 29.5,16.5 - parent: 30 - type: Transform -- uid: 12727 - type: ReinforcedWindow - components: - - pos: 13.5,13.5 - parent: 30 - type: Transform -- uid: 12728 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 20.5,19.5 - parent: 30 - type: Transform -- uid: 12729 - type: Table - components: - - pos: 17.5,19.5 - parent: 30 - type: Transform -- uid: 12730 - type: Table - components: - - pos: 20.5,18.5 - parent: 30 - type: Transform -- uid: 12731 - type: BedsheetRD - components: - - pos: 25.5,13.5 - parent: 30 - type: Transform -- uid: 12732 - type: PowerCellSmallPrinted - components: - - pos: 25.417236,23.548084 - parent: 30 - type: Transform -- uid: 12733 - type: PowerCellRecharger - components: - - pos: 25.5,21.5 - parent: 30 - type: Transform -- uid: 12734 - type: ClothingHandsGlovesRobohands - components: - - pos: 21.432861,23.329334 - parent: 30 - type: Transform -- uid: 12735 - type: WallReinforced - components: - - pos: 26.5,6.5 - parent: 30 - type: Transform -- uid: 12736 - type: WallReinforced - components: - - pos: 27.5,6.5 - parent: 30 - type: Transform -- uid: 12737 - type: WallReinforced - components: - - pos: 28.5,6.5 - parent: 30 - type: Transform -- uid: 12738 - type: WallReinforced - components: - - pos: 29.5,6.5 - parent: 30 - type: Transform -- uid: 12739 - type: WallReinforced - components: - - pos: 30.5,6.5 - parent: 30 - type: Transform -- uid: 12740 - type: WallReinforced - components: - - pos: 31.5,6.5 - parent: 30 - type: Transform -- uid: 12741 - type: AirlockMaintRnDLocked - components: - - name: Science Maint - type: MetaData - - pos: 32.5,6.5 - parent: 30 - type: Transform -- uid: 12742 - type: WallReinforced - components: - - pos: 33.5,6.5 - parent: 30 - type: Transform -- uid: 12743 - type: WallReinforced - components: - - pos: 34.5,6.5 - parent: 30 - type: Transform -- uid: 12744 - type: WallReinforced - components: - - pos: 34.5,7.5 - parent: 30 - type: Transform -- uid: 12745 - type: GasPipeStraight - components: - - pos: 16.5,56.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12746 - type: ResearchAndDevelopmentServer - components: - - pos: 33.5,15.5 - parent: 30 - type: Transform -- uid: 12747 - type: SurveillanceCameraRouterScience - components: - - pos: 31.5,15.5 - parent: 30 - type: Transform -- uid: 12748 - type: ComputerResearchAndDevelopment - components: - - rot: -1.5707963267948966 rad - pos: 33.5,12.5 - parent: 30 - type: Transform -- uid: 12749 - type: GasThermoMachineFreezer - components: - - pos: 31.5,12.5 - parent: 30 - type: Transform -- uid: 12750 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 31.5,11.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 12751 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 32.5,11.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 12752 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,12.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 12753 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 32.5,13.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 12754 - type: GasPipeTJunction - components: - - pos: 32.5,14.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 12755 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 31.5,14.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 12756 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 33.5,14.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 12757 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 31.5,13.5 - parent: 30 - type: Transform -- uid: 12758 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 33.5,13.5 - parent: 30 - type: Transform -- uid: 12759 - type: AirlockResearchDirectorGlassLocked - components: - - pos: 32.5,13.5 - parent: 30 - type: Transform -- uid: 12760 - type: AirlockResearchDirectorLocked - components: - - name: Sci Server Room - type: MetaData - - pos: 32.5,10.5 - parent: 30 - type: Transform -- uid: 12761 - type: Table - components: - - pos: 33.5,11.5 - parent: 30 - type: Transform -- uid: 12762 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 32.5,12.5 - parent: 30 - type: Transform -- uid: 12763 - type: Poweredlight - components: - - pos: 32.5,15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12764 - type: PottedPlantBioluminscent - components: - - pos: 31.5,9.5 - parent: 30 - type: Transform -- uid: 12765 - type: PottedPlantBioluminscent - components: - - pos: 33.5,9.5 - parent: 30 - type: Transform -- uid: 12766 - type: WallReinforced - components: - - pos: 24.5,17.5 - parent: 30 - type: Transform -- uid: 12767 - type: WallReinforced - components: - - pos: 25.5,17.5 - parent: 30 - type: Transform -- uid: 12768 - type: WallReinforced - components: - - pos: 26.5,17.5 - parent: 30 - type: Transform -- uid: 12769 - type: WallReinforced - components: - - pos: 30.5,17.5 - parent: 30 - type: Transform -- uid: 12770 - type: ClosetRadiationSuitFilled - components: - - pos: 17.5,16.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12771 - type: ClosetFireFilled - components: - - pos: 18.5,16.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12772 - type: DisposalUnit - components: - - pos: 12.5,12.5 - parent: 30 - type: Transform -- uid: 12773 - type: DisposalUnit - components: - - pos: 12.5,14.5 - parent: 30 - type: Transform -- uid: 12774 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 24.5,9.5 - parent: 30 - type: Transform -- uid: 12775 - type: FoodBurgerRobot - components: - - pos: 16.513674,23.580196 - parent: 30 - type: Transform -- uid: 12776 - type: ComputerResearchAndDevelopment - components: - - pos: 19.5,23.5 - parent: 30 - type: Transform -- uid: 12777 - type: Bed - components: - - pos: 25.5,13.5 - parent: 30 - type: Transform -- uid: 12778 - type: VendingMachineRoboDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 16.5,20.5 - parent: 30 - type: Transform -- uid: 12779 - type: PowerCellMediumPrinted - components: - - pos: 25.604736,23.18871 - parent: 30 - type: Transform -- uid: 12780 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 24.5,11.5 - parent: 30 - type: Transform -- uid: 12781 - type: Table - components: - - pos: 20.5,19.5 - parent: 30 - type: Transform -- uid: 12782 - type: Saw - components: - - pos: 17.505955,18.59935 - parent: 30 - type: Transform -- uid: 12783 - type: PosterContrabandLamarr - components: - - pos: 30.5,16.5 - parent: 30 - type: Transform -- uid: 12784 - type: DisposalBend - components: - - pos: 22.5,23.5 - parent: 30 - type: Transform -- uid: 12785 - type: ClothingHandsGlovesLatex - components: - - pos: 20.45908,19.4431 - parent: 30 - type: Transform -- uid: 12786 - type: Hemostat - components: - - pos: 17.505955,19.427475 - parent: 30 - type: Transform -- uid: 12787 - type: Scalpel - components: - - pos: 17.45908,18.97435 - parent: 30 - type: Transform -- uid: 12788 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 20.5,18.5 - parent: 30 - type: Transform -- uid: 12789 - type: SignRobo - components: - - pos: 20.5,17.5 - parent: 30 - type: Transform -- uid: 12790 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,23.5 - parent: 30 - type: Transform -- uid: 12791 - type: WallReinforced - components: - - pos: -39.5,-36.5 - parent: 30 - type: Transform -- uid: 12792 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 17.5,19.5 - parent: 30 - type: Transform -- uid: 12793 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 20.5,23.5 - parent: 30 - type: Transform -- uid: 12794 - type: DisposalUnit - components: - - pos: 20.5,23.5 - parent: 30 - type: Transform -- uid: 12795 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 24.5,10.5 - parent: 30 - type: Transform -- uid: 12796 - type: GasVentPump - components: - - pos: 32.5,11.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12797 - type: UnfinishedMachineFrame - components: - - pos: 23.5,22.5 - parent: 30 - type: Transform -- uid: 12798 - type: Grille - components: - - pos: 53.5,31.5 - parent: 30 - type: Transform -- uid: 12799 - type: ExosuitFabricator - components: - - pos: 22.5,22.5 - parent: 30 - type: Transform -- uid: 12800 - type: Grille - components: - - pos: 30.5,14.5 - parent: 30 - type: Transform -- uid: 12801 - type: WallReinforced - components: - - pos: 24.5,16.5 - parent: 30 - type: Transform -- uid: 12802 - type: WallReinforced - components: - - pos: -39.5,-35.5 - parent: 30 - type: Transform -- uid: 12803 - type: ReinforcedWindow - components: - - pos: -39.5,-32.5 - parent: 30 - type: Transform -- uid: 12804 - type: ReinforcedWindow - components: - - pos: -39.5,-33.5 - parent: 30 - type: Transform -- uid: 12805 - type: CircuitImprinter - components: - - pos: 28.5,9.5 - parent: 30 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Gold - type: MaterialStorage -- uid: 12806 - type: Carpet - components: - - pos: -29.5,-3.5 - parent: 30 - type: Transform -- uid: 12807 - type: ReinforcedWindow - components: - - pos: 27.5,17.5 - parent: 30 - type: Transform -- uid: 12808 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12809 - type: ExtinguisherCabinetFilled - components: - - pos: 20.5,13.5 - parent: 30 - type: Transform -- uid: 12810 - type: ShuttersNormalOpen - components: - - pos: 24.5,15.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12859 - type: SignalReceiver -- uid: 12811 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 20.5,14.5 - parent: 30 - type: Transform -- uid: 12812 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12813 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 29.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12814 - type: SheetPlastic - components: - - pos: 20.345459,12.537664 - parent: 30 - type: Transform -- uid: 12815 - type: SheetPlastic - components: - - pos: 20.427235,12.521061 - parent: 30 - type: Transform -- uid: 12816 - type: SheetPlasteel - components: - - pos: 19.2153,12.5261135 - parent: 30 - type: Transform -- uid: 12817 - type: SheetPlasteel - components: - - pos: 19.152752,12.557497 - parent: 30 - type: Transform -- uid: 12818 - type: SheetSteel - components: - - pos: 18.621367,12.577154 - parent: 30 - type: Transform -- uid: 12819 - type: SheetSteel - components: - - pos: 18.711626,12.51626 - parent: 30 - type: Transform -- uid: 12820 - type: SheetGlass - components: - - pos: 19.709492,12.540524 - parent: 30 - type: Transform -- uid: 12821 - type: SheetGlass - components: - - pos: 19.80086,12.477194 - parent: 30 - type: Transform -- uid: 12822 - type: Screwdriver - components: - - pos: 16.462046,12.553694 - parent: 30 - type: Transform - - nextAttack: 75.8695766 - type: MeleeWeapon -- uid: 12823 - type: ToolboxMechanicalFilled - components: - - pos: 29.426506,11.42201 - parent: 30 - type: Transform -- uid: 12824 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 28.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12825 - type: GasPipeStraight - components: - - pos: 28.5,16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12826 - type: Table - components: - - pos: 25.5,22.5 - parent: 30 - type: Transform -- uid: 12827 - type: PowerCellRecharger - components: - - pos: 24.5,10.5 - parent: 30 - type: Transform -- uid: 12828 - type: SpawnMobBandito - components: - - pos: 26.5,13.5 - parent: 30 - type: Transform -- uid: 12829 - type: ComputerResearchAndDevelopment - components: - - rot: 1.5707963267948966 rad - pos: 26.5,9.5 - parent: 30 - type: Transform -- uid: 12830 - type: TableGlass - components: - - pos: 19.5,12.5 - parent: 30 - type: Transform -- uid: 12831 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 14.5,12.5 - parent: 30 - type: Transform -- uid: 12832 - type: CableApcExtension - components: - - pos: 26.5,20.5 - parent: 30 - type: Transform -- uid: 12833 - type: Table - components: - - pos: 24.5,10.5 - parent: 30 - type: Transform -- uid: 12834 - type: TableGlass - components: - - pos: 20.5,12.5 - parent: 30 - type: Transform -- uid: 12835 - type: Table - components: - - pos: 14.5,10.5 - parent: 30 - type: Transform -- uid: 12836 - type: Crowbar - components: - - pos: 16.474464,12.551813 - parent: 30 - type: Transform -- uid: 12837 - type: PowerCellRecharger - components: - - pos: 15.5,12.5 - parent: 30 - type: Transform -- uid: 12838 - type: TableGlass - components: - - pos: 16.5,12.5 - parent: 30 - type: Transform -- uid: 12839 - type: TableGlass - components: - - pos: 15.5,12.5 - parent: 30 - type: Transform -- uid: 12840 - type: TableGlass - components: - - pos: 18.5,12.5 - parent: 30 - type: Transform -- uid: 12841 - type: Table - components: - - pos: 24.5,11.5 - parent: 30 - type: Transform -- uid: 12842 - type: VendingMachineSciDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 17.5,12.5 - parent: 30 - type: Transform -- uid: 12843 - type: AirlockMaintRnDLocked - components: - - name: Science - type: MetaData - - pos: 31.5,24.5 - parent: 30 - type: Transform -- uid: 12844 - type: Grille - components: - - pos: 17.5,24.5 - parent: 30 - type: Transform -- uid: 12845 - type: Grille - components: - - pos: 19.5,24.5 - parent: 30 - type: Transform -- uid: 12846 - type: WallReinforced - components: - - pos: 20.5,24.5 - parent: 30 - type: Transform -- uid: 12847 - type: TableReinforced - components: - - pos: 18.5,24.5 - parent: 30 - type: Transform -- uid: 12848 - type: WallReinforced - components: - - pos: 34.5,17.5 - parent: 30 - type: Transform -- uid: 12849 - type: WallReinforced - components: - - pos: 34.5,19.5 - parent: 30 - type: Transform -- uid: 12850 - type: WallReinforced - components: - - pos: 34.5,21.5 - parent: 30 - type: Transform -- uid: 12851 - type: WallReinforced - components: - - pos: 34.5,20.5 - parent: 30 - type: Transform -- uid: 12852 - type: WallReinforced - components: - - pos: 34.5,18.5 - parent: 30 - type: Transform -- uid: 12853 - type: WallReinforced - components: - - pos: 33.5,21.5 - parent: 30 - type: Transform -- uid: 12854 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 13.5,10.5 - parent: 30 - type: Transform -- uid: 12855 - type: Table - components: - - pos: 25.5,21.5 - parent: 30 - type: Transform -- uid: 12856 - type: filingCabinetDrawer - components: - - pos: 17.5,23.5 - parent: 30 - type: Transform -- uid: 12857 - type: ReinforcedWindow - components: - - pos: 47.5,27.5 - parent: 30 - type: Transform -- uid: 12858 - type: FirelockGlass - components: - - pos: 30.5,7.5 - parent: 30 - type: Transform -- uid: 12859 - type: SignalButton - components: - - pos: 30.5,13.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 14352 - - port: Toggle - uid: 14340 - - port: Toggle - uid: 14355 - - port: Toggle - uid: 12810 - type: SignalTransmitter -- uid: 12860 - type: CableMV - components: - - pos: 21.5,12.5 - parent: 30 - type: Transform -- uid: 12861 - type: CableApcExtension - components: - - pos: 25.5,20.5 - parent: 30 - type: Transform -- uid: 12862 - type: CableMV - components: - - pos: 20.5,12.5 - parent: 30 - type: Transform -- uid: 12863 - type: Grille - components: - - pos: 30.5,15.5 - parent: 30 - type: Transform -- uid: 12864 - type: Protolathe - components: - - pos: 28.5,10.5 - parent: 30 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold - type: MaterialStorage -- uid: 12865 - type: BoxFolderGrey - components: - - pos: 14.525648,10.557264 - parent: 30 - type: Transform -- uid: 12866 - type: Autolathe - components: - - pos: 26.5,10.5 - parent: 30 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage -- uid: 12867 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 39.5,9.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 12868 - type: GasThermoMachineFreezer - components: - - pos: 39.5,10.5 - parent: 30 - type: Transform -- uid: 12869 - type: GasPassiveVent - components: - - pos: 35.5,12.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 12870 - type: GasPassiveVent - components: - - pos: 38.5,12.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 12871 - type: WallReinforced - components: - - pos: 47.5,26.5 - parent: 30 - type: Transform -- uid: 12872 - type: GasPipeFourway - components: - - pos: 23.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12873 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12874 - type: WallReinforced - components: - - pos: 49.5,25.5 - parent: 30 - type: Transform -- uid: 12875 - type: WallReinforced - components: - - pos: 53.5,25.5 - parent: 30 - type: Transform -- uid: 12876 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12877 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 26.5,23.5 - parent: 30 - type: Transform -- uid: 12878 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 26.5,22.5 - parent: 30 - type: Transform -- uid: 12879 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12880 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,19.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12881 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 20.5,19.5 - parent: 30 - type: Transform -- uid: 12882 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 23.5,18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12883 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 21.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12884 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12885 - type: GasPipeTJunction - components: - - pos: 28.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12886 - type: GasPipeFourway - components: - - pos: 21.5,18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12887 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12888 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12889 - type: WallReinforced - components: - - pos: 35.5,6.5 - parent: 30 - type: Transform -- uid: 12890 - type: WallReinforced - components: - - pos: 36.5,6.5 - parent: 30 - type: Transform -- uid: 12891 - type: WallReinforced - components: - - pos: 37.5,6.5 - parent: 30 - type: Transform -- uid: 12892 - type: WallReinforced - components: - - pos: 38.5,6.5 - parent: 30 - type: Transform -- uid: 12893 - type: WallReinforced - components: - - pos: 39.5,6.5 - parent: 30 - type: Transform -- uid: 12894 - type: Grille - components: - - pos: 35.5,14.5 - parent: 30 - type: Transform -- uid: 12895 - type: WallReinforced - components: - - pos: 39.5,14.5 - parent: 30 - type: Transform -- uid: 12896 - type: WallReinforced - components: - - pos: 39.5,15.5 - parent: 30 - type: Transform -- uid: 12897 - type: WallReinforced - components: - - pos: 41.5,11.5 - parent: 30 - type: Transform -- uid: 12898 - type: ReinforcedPlasmaWindow - components: - - pos: 38.5,11.5 - parent: 30 - type: Transform -- uid: 12899 - type: WallReinforced - components: - - pos: 39.5,11.5 - parent: 30 - type: Transform -- uid: 12900 - type: ReinforcedPlasmaWindow - components: - - pos: 37.5,11.5 - parent: 30 - type: Transform -- uid: 12901 - type: ReinforcedPlasmaWindow - components: - - pos: 35.5,11.5 - parent: 30 - type: Transform -- uid: 12902 - type: WallReinforced - components: - - pos: 39.5,16.5 - parent: 30 - type: Transform -- uid: 12903 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 43.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12904 - type: WallReinforced - components: - - pos: 37.5,16.5 - parent: 30 - type: Transform -- uid: 12905 - type: WallReinforced - components: - - pos: 36.5,16.5 - parent: 30 - type: Transform -- uid: 12906 - type: WallReinforced - components: - - pos: 35.5,16.5 - parent: 30 - type: Transform -- uid: 12907 - type: GasPipeStraight - components: - - pos: 38.5,11.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12908 - type: AirlockScienceLocked - components: - - name: Toxins - type: MetaData - - pos: 34.5,8.5 - parent: 30 - type: Transform -- uid: 12909 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 42.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12910 - type: WallReinforced - components: - - pos: 42.5,15.5 - parent: 30 - type: Transform -- uid: 12911 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 41.5,10.5 - parent: 30 - type: Transform -- uid: 12912 - type: WallReinforced - components: - - pos: 41.5,15.5 - parent: 30 - type: Transform -- uid: 12913 - type: WallReinforced - components: - - pos: 40.5,15.5 - parent: 30 - type: Transform -- uid: 12914 - type: AirlockScienceGlassLocked - components: - - pos: 40.5,11.5 - parent: 30 - type: Transform -- uid: 12915 - type: SignalButton - components: - - pos: 39.5,11.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 16773 - - port: Toggle - uid: 13347 - type: SignalTransmitter -- uid: 12916 - type: Grille - components: - - pos: 38.5,11.5 - parent: 30 - type: Transform -- uid: 12917 - type: Grille - components: - - pos: 37.5,11.5 - parent: 30 - type: Transform -- uid: 12918 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 37.5,9.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 12919 - type: Grille - components: - - pos: 35.5,11.5 - parent: 30 - type: Transform -- uid: 12920 - type: ReinforcedPlasmaWindow - components: - - rot: 3.141592653589793 rad - pos: 36.5,11.5 - parent: 30 - type: Transform -- uid: 12921 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 38.5,9.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 12922 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 35.5,10.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 12923 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12924 - type: GasPipeStraight - components: - - pos: 35.5,11.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12925 - type: PottedPlantBioluminscent - components: - - pos: 12.5,10.5 - parent: 30 - type: Transform -- uid: 12926 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 35.5,9.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12927 - type: GasMixer - components: - - rot: -1.5707963267948966 rad - pos: 36.5,9.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 12928 - type: ReinforcedPlasmaWindow - components: - - pos: 38.5,14.5 - parent: 30 - type: Transform -- uid: 12929 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 15.5,10.5 - parent: 30 - type: Transform -- uid: 12930 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,16.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12931 - type: ReinforcedPlasmaWindow - components: - - pos: 35.5,14.5 - parent: 30 - type: Transform -- uid: 12932 - type: WallReinforced - components: - - pos: 41.5,10.5 - parent: 30 - type: Transform -- uid: 12933 - type: WallReinforced - components: - - pos: 41.5,9.5 - parent: 30 - type: Transform -- uid: 12934 - type: WallReinforced - components: - - pos: 41.5,8.5 - parent: 30 - type: Transform -- uid: 12935 - type: WallReinforced - components: - - pos: 41.5,7.5 - parent: 30 - type: Transform -- uid: 12936 - type: WallReinforced - components: - - pos: 41.5,6.5 - parent: 30 - type: Transform -- uid: 12937 - type: WallReinforced - components: - - pos: 40.5,6.5 - parent: 30 - type: Transform -- uid: 12938 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12939 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12940 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 14.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12941 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12942 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12943 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12944 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12945 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12946 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12947 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12948 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12949 - type: Table - components: - - pos: 16.5,23.5 - parent: 30 - type: Transform -- uid: 12950 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12951 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 23.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12952 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12953 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,11.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12954 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 23.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12955 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 23.5,9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12956 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 23.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12957 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12958 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12959 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 27.5,18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12960 - type: WallSolidRust - components: - - pos: 14.5,51.5 - parent: 30 - type: Transform -- uid: 12961 - type: CableApcExtension - components: - - pos: 18.5,13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12962 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12963 - type: GasPipeTJunction - components: - - pos: 28.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12964 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12965 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12966 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12967 - type: GasPipeStraight - components: - - pos: 32.5,9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12968 - type: GasPipeStraight - components: - - pos: 32.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12969 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12970 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12971 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12972 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12973 - type: CableApcExtension - components: - - pos: 18.5,12.5 - parent: 30 - type: Transform -- uid: 12974 - type: APCBasic - components: - - pos: 18.5,13.5 - parent: 30 - type: Transform -- uid: 12975 - type: ReinforcedWindow - components: - - pos: 30.5,14.5 - parent: 30 - type: Transform -- uid: 12976 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 37.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12977 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12978 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12979 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12980 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12981 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12982 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12983 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 16.5,10.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12984 - type: GasPipeStraight - components: - - pos: 23.5,16.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12985 - type: GasPipeStraight - components: - - pos: 23.5,17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12986 - type: TableGlass - components: - - pos: 13.5,12.5 - parent: 30 - type: Transform -- uid: 12987 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,16.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12988 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12989 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 14.5,18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12990 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12991 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 14.5,20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12992 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12993 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12994 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12995 - type: GasPipeBend - components: - - pos: 18.5,20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12996 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 18.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12997 - type: GasPipeTJunction - components: - - pos: 23.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12998 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12999 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13000 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13001 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13002 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 22.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13003 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 28.5,7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13004 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 24.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13005 - type: GasVentPump - components: - - pos: 14.5,21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13006 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 13.5,18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13007 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 8.5,17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13008 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13009 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13010 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13011 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 12.5,17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13012 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13013 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,19.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13014 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13015 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13016 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 12.5,22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13017 - type: GasPipeTJunction - components: - - pos: 13.5,22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13018 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13019 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13020 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13021 - type: GasPipeStraight - components: - - pos: 17.5,19.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13022 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 12.5,16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13023 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13024 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 12.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13025 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13026 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13027 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13028 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13029 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13030 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 18.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13031 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13032 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13033 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 21.5,14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13034 - type: GasPipeFourway - components: - - pos: 21.5,11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13035 - type: Table - components: - - pos: 25.5,23.5 - parent: 30 - type: Transform -- uid: 13036 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 21.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13037 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 18.5,23.5 - parent: 30 - type: Transform -- uid: 13038 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 17.5,18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13039 - type: GasPipeBend - components: - - pos: 17.5,22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13040 - type: GasPipeStraight - components: - - pos: 17.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13041 - type: GasPipeStraight - components: - - pos: 17.5,21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13042 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13043 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13044 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13045 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13046 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13047 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13048 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,12.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13049 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13050 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13051 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13052 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13053 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13054 - type: GasPipeStraight - components: - - pos: 21.5,8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13055 - type: GasPipeStraight - components: - - pos: 21.5,9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13056 - type: GasPipeStraight - components: - - pos: 21.5,10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13057 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13058 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13059 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 25.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13060 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13061 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13062 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13063 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13064 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13065 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13066 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13067 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13068 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13069 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13070 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13071 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13072 - type: Lamp - components: - - pos: 27.562925,15.885002 - parent: 30 - type: Transform -- uid: 13073 - type: ComputerAlert - components: - - rot: 1.5707963267948966 rad - pos: 25.5,14.5 - parent: 30 - type: Transform -- uid: 13074 - type: PosterContrabandBeachStarYamamoto - components: - - pos: 28.5,-8.5 - parent: 30 - type: Transform -- uid: 13075 - type: ShuttersNormalOpen - components: - - pos: 15.5,13.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20399 - type: SignalReceiver -- uid: 13076 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 38.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13077 - type: Poweredlight - components: - - pos: 12.5,12.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13078 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 16.5,11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13079 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 13.5,21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13080 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 13.5,16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13081 - type: GasVentPump - components: - - pos: 18.5,16.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13082 - type: GasVentScrubber - components: - - pos: 18.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13083 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-40.5 - parent: 30 - type: Transform -- uid: 13084 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 22.5,18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13085 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 22.5,11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13086 - type: GasVentScrubber - components: - - pos: 25.5,8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13087 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,13.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13088 - type: TableGlass - components: - - pos: 27.5,15.5 - parent: 30 - type: Transform -- uid: 13089 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13090 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13091 - type: SubstationBasic - components: - - name: Sci Substation - type: MetaData - - pos: 35.5,17.5 - parent: 30 - type: Transform -- uid: 13092 - type: WallReinforced - components: - - pos: 35.5,18.5 - parent: 30 - type: Transform -- uid: 13093 - type: WallReinforced - components: - - pos: 36.5,18.5 - parent: 30 - type: Transform -- uid: 13094 - type: WallReinforced - components: - - pos: 37.5,18.5 - parent: 30 - type: Transform -- uid: 13095 - type: AirlockEngineeringLocked - components: - - pos: 37.5,17.5 - parent: 30 - type: Transform -- uid: 13096 - type: APCBasic - components: - - pos: 32.5,16.5 - parent: 30 - type: Transform -- uid: 13097 - type: Grille - components: - - pos: 28.5,12.5 - parent: 30 - type: Transform -- uid: 13098 - type: APCBasic - components: - - pos: 20.5,24.5 - parent: 30 - type: Transform -- uid: 13099 - type: CableMV - components: - - pos: 35.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13100 - type: CableMV - components: - - pos: 36.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13101 - type: CableMV - components: - - pos: 37.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13102 - type: CableMV - components: - - pos: 38.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13103 - type: CableMV - components: - - pos: 38.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13104 - type: CableMV - components: - - pos: 38.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13105 - type: CableMV - components: - - pos: 37.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13106 - type: CableMV - components: - - pos: 36.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13107 - type: CableMV - components: - - pos: 35.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13108 - type: CableMV - components: - - pos: 35.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13109 - type: CableMV - components: - - pos: 35.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13110 - type: CableMV - components: - - pos: 35.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13111 - type: CableMV - components: - - pos: 35.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13112 - type: CableMV - components: - - pos: 35.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13113 - type: CableMV - components: - - pos: 35.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13114 - type: CableMV - components: - - pos: 34.5,25.5 - parent: 30 - type: Transform -- uid: 13115 - type: CableMV - components: - - pos: 33.5,25.5 - parent: 30 - type: Transform -- uid: 13116 - type: CableMV - components: - - pos: 32.5,25.5 - parent: 30 - type: Transform -- uid: 13117 - type: CableMV - components: - - pos: 31.5,25.5 - parent: 30 - type: Transform -- uid: 13118 - type: CableMV - components: - - pos: 31.5,24.5 - parent: 30 - type: Transform -- uid: 13119 - type: CableMV - components: - - pos: 31.5,23.5 - parent: 30 - type: Transform -- uid: 13120 - type: CableMV - components: - - pos: 31.5,22.5 - parent: 30 - type: Transform -- uid: 13121 - type: CableMV - components: - - pos: 31.5,21.5 - parent: 30 - type: Transform -- uid: 13122 - type: CableMV - components: - - pos: 30.5,21.5 - parent: 30 - type: Transform -- uid: 13123 - type: CableMV - components: - - pos: 29.5,21.5 - parent: 30 - type: Transform -- uid: 13124 - type: CableMV - components: - - pos: 28.5,21.5 - parent: 30 - type: Transform -- uid: 13125 - type: CableMV - components: - - pos: 27.5,21.5 - parent: 30 - type: Transform -- uid: 13126 - type: CableMV - components: - - pos: 25.5,20.5 - parent: 30 - type: Transform -- uid: 13127 - type: CableMV - components: - - pos: 25.5,21.5 - parent: 30 - type: Transform -- uid: 13128 - type: CableMV - components: - - pos: 24.5,21.5 - parent: 30 - type: Transform -- uid: 13129 - type: CableMV - components: - - pos: 23.5,21.5 - parent: 30 - type: Transform -- uid: 13130 - type: CableMV - components: - - pos: 22.5,21.5 - parent: 30 - type: Transform -- uid: 13131 - type: CableMV - components: - - pos: 21.5,21.5 - parent: 30 - type: Transform -- uid: 13132 - type: CableMV - components: - - pos: 20.5,21.5 - parent: 30 - type: Transform -- uid: 13133 - type: CableMV - components: - - pos: 20.5,22.5 - parent: 30 - type: Transform -- uid: 13134 - type: CableMV - components: - - pos: 20.5,23.5 - parent: 30 - type: Transform -- uid: 13135 - type: CableMV - components: - - pos: 20.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13136 - type: CableMV - components: - - pos: 22.5,20.5 - parent: 30 - type: Transform -- uid: 13137 - type: CableMV - components: - - pos: 22.5,19.5 - parent: 30 - type: Transform -- uid: 13138 - type: CableMV - components: - - pos: 22.5,18.5 - parent: 30 - type: Transform -- uid: 13139 - type: CableMV - components: - - pos: 22.5,18.5 - parent: 30 - type: Transform -- uid: 13140 - type: CableMV - components: - - pos: 22.5,17.5 - parent: 30 - type: Transform -- uid: 13141 - type: CableMV - components: - - pos: 22.5,16.5 - parent: 30 - type: Transform -- uid: 13142 - type: CableMV - components: - - pos: 22.5,15.5 - parent: 30 - type: Transform -- uid: 13143 - type: CableMV - components: - - pos: 22.5,14.5 - parent: 30 - type: Transform -- uid: 13144 - type: CableMV - components: - - pos: 22.5,13.5 - parent: 30 - type: Transform -- uid: 13145 - type: CableMV - components: - - pos: 22.5,12.5 - parent: 30 - type: Transform -- uid: 13146 - type: CableMV - components: - - pos: 22.5,11.5 - parent: 30 - type: Transform -- uid: 13147 - type: CableMV - components: - - pos: 22.5,10.5 - parent: 30 - type: Transform -- uid: 13148 - type: CableMV - components: - - pos: 22.5,9.5 - parent: 30 - type: Transform -- uid: 13149 - type: CableMV - components: - - pos: 22.5,8.5 - parent: 30 - type: Transform -- uid: 13150 - type: CableMV - components: - - pos: 23.5,8.5 - parent: 30 - type: Transform -- uid: 13151 - type: CableMV - components: - - pos: 24.5,8.5 - parent: 30 - type: Transform -- uid: 13152 - type: GasPipeStraight - components: - - pos: 28.5,19.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13153 - type: CableMV - components: - - pos: 25.5,8.5 - parent: 30 - type: Transform -- uid: 13154 - type: CableMV - components: - - pos: 26.5,8.5 - parent: 30 - type: Transform -- uid: 13155 - type: CableMV - components: - - pos: 27.5,8.5 - parent: 30 - type: Transform -- uid: 13156 - type: CableMV - components: - - pos: 28.5,8.5 - parent: 30 - type: Transform -- uid: 13157 - type: CableMV - components: - - pos: 29.5,8.5 - parent: 30 - type: Transform -- uid: 13158 - type: CableMV - components: - - pos: 30.5,8.5 - parent: 30 - type: Transform -- uid: 13159 - type: CableMV - components: - - pos: 31.5,8.5 - parent: 30 - type: Transform -- uid: 13160 - type: CableMV - components: - - pos: 32.5,8.5 - parent: 30 - type: Transform -- uid: 13161 - type: CableMV - components: - - pos: 32.5,9.5 - parent: 30 - type: Transform -- uid: 13162 - type: CableMV - components: - - pos: 32.5,10.5 - parent: 30 - type: Transform -- uid: 13163 - type: CableMV - components: - - pos: 32.5,11.5 - parent: 30 - type: Transform -- uid: 13164 - type: CableMV - components: - - pos: 32.5,12.5 - parent: 30 - type: Transform -- uid: 13165 - type: CableMV - components: - - pos: 32.5,13.5 - parent: 30 - type: Transform -- uid: 13166 - type: CableMV - components: - - pos: 32.5,14.5 - parent: 30 - type: Transform -- uid: 13167 - type: CableMV - components: - - pos: 32.5,15.5 - parent: 30 - type: Transform -- uid: 13168 - type: CableMV - components: - - pos: 32.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13169 - type: CableApcExtension - components: - - pos: 32.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13170 - type: CableApcExtension - components: - - pos: 32.5,15.5 - parent: 30 - type: Transform -- uid: 13171 - type: CableApcExtension - components: - - pos: 32.5,14.5 - parent: 30 - type: Transform -- uid: 13172 - type: CableApcExtension - components: - - pos: 31.5,14.5 - parent: 30 - type: Transform -- uid: 13173 - type: CableApcExtension - components: - - pos: 33.5,14.5 - parent: 30 - type: Transform -- uid: 13174 - type: CableApcExtension - components: - - pos: 32.5,13.5 - parent: 30 - type: Transform -- uid: 13175 - type: CableApcExtension - components: - - pos: 32.5,12.5 - parent: 30 - type: Transform -- uid: 13176 - type: CableApcExtension - components: - - pos: 32.5,11.5 - parent: 30 - type: Transform -- uid: 13177 - type: CableApcExtension - components: - - pos: 32.5,10.5 - parent: 30 - type: Transform -- uid: 13178 - type: CableApcExtension - components: - - pos: 31.5,11.5 - parent: 30 - type: Transform -- uid: 13179 - type: CableApcExtension - components: - - pos: 33.5,11.5 - parent: 30 - type: Transform -- uid: 13180 - type: CableApcExtension - components: - - pos: 32.5,9.5 - parent: 30 - type: Transform -- uid: 13181 - type: CableApcExtension - components: - - pos: 32.5,8.5 - parent: 30 - type: Transform -- uid: 13182 - type: CableApcExtension - components: - - pos: 32.5,7.5 - parent: 30 - type: Transform -- uid: 13183 - type: PlasticFlapsAirtightClear - components: - - pos: 39.5,12.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 13184 - type: CableApcExtension - components: - - pos: 34.5,8.5 - parent: 30 - type: Transform -- uid: 13185 - type: CableApcExtension - components: - - pos: 35.5,8.5 - parent: 30 - type: Transform -- uid: 13186 - type: CableApcExtension - components: - - pos: 36.5,8.5 - parent: 30 - type: Transform -- uid: 13187 - type: CableApcExtension - components: - - pos: 37.5,8.5 - parent: 30 - type: Transform -- uid: 13188 - type: CableApcExtension - components: - - pos: 38.5,8.5 - parent: 30 - type: Transform -- uid: 13189 - type: CableApcExtension - components: - - pos: 39.5,8.5 - parent: 30 - type: Transform -- uid: 13190 - type: CableApcExtension - components: - - pos: 40.5,8.5 - parent: 30 - type: Transform -- uid: 13191 - type: CableApcExtension - components: - - pos: 40.5,9.5 - parent: 30 - type: Transform -- uid: 13192 - type: CableApcExtension - components: - - pos: 40.5,10.5 - parent: 30 - type: Transform -- uid: 13193 - type: CableApcExtension - components: - - pos: 40.5,11.5 - parent: 30 - type: Transform -- uid: 13194 - type: CableApcExtension - components: - - pos: 40.5,12.5 - parent: 30 - type: Transform -- uid: 13195 - type: CableApcExtension - components: - - pos: 40.5,13.5 - parent: 30 - type: Transform -- uid: 13196 - type: CableApcExtension - components: - - pos: 40.5,14.5 - parent: 30 - type: Transform -- uid: 13197 - type: CableApcExtension - components: - - pos: 39.5,13.5 - parent: 30 - type: Transform -- uid: 13198 - type: CableApcExtension - components: - - pos: 38.5,13.5 - parent: 30 - type: Transform -- uid: 13199 - type: CableApcExtension - components: - - pos: 37.5,13.5 - parent: 30 - type: Transform -- uid: 13200 - type: CableApcExtension - components: - - pos: 36.5,13.5 - parent: 30 - type: Transform -- uid: 13201 - type: CableApcExtension - components: - - pos: 35.5,13.5 - parent: 30 - type: Transform -- uid: 13202 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 43.5,10.5 - parent: 30 - type: Transform -- uid: 13203 - type: AirlockScienceGlassLocked - components: - - pos: 39.5,13.5 - parent: 30 - type: Transform -- uid: 13204 - type: CableApcExtension - components: - - pos: 37.5,12.5 - parent: 30 - type: Transform -- uid: 13205 - type: CableApcExtension - components: - - pos: 37.5,9.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13206 - type: CableApcExtension - components: - - pos: 37.5,10.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13207 - type: CableApcExtension - components: - - pos: 40.5,7.5 - parent: 30 - type: Transform -- uid: 13208 - type: CableApcExtension - components: - - pos: 35.5,7.5 - parent: 30 - type: Transform -- uid: 13209 - type: CableApcExtension - components: - - pos: 31.5,8.5 - parent: 30 - type: Transform -- uid: 13210 - type: CableApcExtension - components: - - pos: 30.5,8.5 - parent: 30 - type: Transform -- uid: 13211 - type: CableMV - components: - - pos: 19.5,12.5 - parent: 30 - type: Transform -- uid: 13212 - type: Grille - components: - - pos: 24.5,15.5 - parent: 30 - type: Transform -- uid: 13213 - type: CableApcExtension - components: - - pos: 24.5,7.5 - parent: 30 - type: Transform -- uid: 13214 - type: CableApcExtension - components: - - pos: 25.5,7.5 - parent: 30 - type: Transform -- uid: 13215 - type: CableApcExtension - components: - - pos: 26.5,7.5 - parent: 30 - type: Transform -- uid: 13216 - type: CableApcExtension - components: - - pos: 27.5,7.5 - parent: 30 - type: Transform -- uid: 13217 - type: CableApcExtension - components: - - pos: 28.5,7.5 - parent: 30 - type: Transform -- uid: 13218 - type: CableApcExtension - components: - - pos: 29.5,7.5 - parent: 30 - type: Transform -- uid: 13219 - type: CableApcExtension - components: - - pos: 26.5,8.5 - parent: 30 - type: Transform -- uid: 13220 - type: CableApcExtension - components: - - pos: 26.5,9.5 - parent: 30 - type: Transform -- uid: 13221 - type: CableApcExtension - components: - - pos: 26.5,10.5 - parent: 30 - type: Transform -- uid: 13222 - type: CableApcExtension - components: - - pos: 26.5,11.5 - parent: 30 - type: Transform -- uid: 13223 - type: CableApcExtension - components: - - pos: 27.5,11.5 - parent: 30 - type: Transform -- uid: 13224 - type: CableApcExtension - components: - - pos: 28.5,11.5 - parent: 30 - type: Transform -- uid: 13225 - type: CableApcExtension - components: - - pos: 29.5,11.5 - parent: 30 - type: Transform -- uid: 13226 - type: CableApcExtension - components: - - pos: 25.5,11.5 - parent: 30 - type: Transform -- uid: 13227 - type: CableApcExtension - components: - - pos: 23.5,7.5 - parent: 30 - type: Transform -- uid: 13228 - type: CableApcExtension - components: - - pos: 22.5,7.5 - parent: 30 - type: Transform -- uid: 13229 - type: CableApcExtension - components: - - pos: 22.5,8.5 - parent: 30 - type: Transform -- uid: 13230 - type: CableApcExtension - components: - - pos: 22.5,9.5 - parent: 30 - type: Transform -- uid: 13231 - type: CableApcExtension - components: - - pos: 22.5,10.5 - parent: 30 - type: Transform -- uid: 13232 - type: CableApcExtension - components: - - pos: 22.5,11.5 - parent: 30 - type: Transform -- uid: 13233 - type: CableApcExtension - components: - - pos: 21.5,11.5 - parent: 30 - type: Transform -- uid: 13234 - type: CableApcExtension - components: - - pos: 20.5,11.5 - parent: 30 - type: Transform -- uid: 13235 - type: CableApcExtension - components: - - pos: 19.5,11.5 - parent: 30 - type: Transform -- uid: 13236 - type: CableApcExtension - components: - - pos: 18.5,11.5 - parent: 30 - type: Transform -- uid: 13237 - type: CableApcExtension - components: - - pos: 17.5,11.5 - parent: 30 - type: Transform -- uid: 13238 - type: CableApcExtension - components: - - pos: 16.5,11.5 - parent: 30 - type: Transform -- uid: 13239 - type: CableApcExtension - components: - - pos: 15.5,11.5 - parent: 30 - type: Transform -- uid: 13240 - type: CableApcExtension - components: - - pos: 14.5,11.5 - parent: 30 - type: Transform -- uid: 13241 - type: CableApcExtension - components: - - pos: 13.5,11.5 - parent: 30 - type: Transform -- uid: 13242 - type: CableApcExtension - components: - - pos: 22.5,12.5 - parent: 30 - type: Transform -- uid: 13243 - type: CableApcExtension - components: - - pos: 22.5,13.5 - parent: 30 - type: Transform -- uid: 13244 - type: CableApcExtension - components: - - pos: 22.5,14.5 - parent: 30 - type: Transform -- uid: 13245 - type: CableApcExtension - components: - - pos: 22.5,15.5 - parent: 30 - type: Transform -- uid: 13246 - type: CableApcExtension - components: - - pos: 21.5,15.5 - parent: 30 - type: Transform -- uid: 13247 - type: CableApcExtension - components: - - pos: 20.5,15.5 - parent: 30 - type: Transform -- uid: 13248 - type: CableApcExtension - components: - - pos: 19.5,15.5 - parent: 30 - type: Transform -- uid: 13249 - type: CableApcExtension - components: - - pos: 18.5,15.5 - parent: 30 - type: Transform -- uid: 13250 - type: CableApcExtension - components: - - pos: 17.5,15.5 - parent: 30 - type: Transform -- uid: 13251 - type: CableApcExtension - components: - - pos: 16.5,15.5 - parent: 30 - type: Transform -- uid: 13252 - type: CableApcExtension - components: - - pos: 15.5,15.5 - parent: 30 - type: Transform -- uid: 13253 - type: CableApcExtension - components: - - pos: 14.5,15.5 - parent: 30 - type: Transform -- uid: 13254 - type: CableApcExtension - components: - - pos: 13.5,15.5 - parent: 30 - type: Transform -- uid: 13255 - type: CableApcExtension - components: - - pos: 12.5,15.5 - parent: 30 - type: Transform -- uid: 13256 - type: CableApcExtension - components: - - pos: 12.5,16.5 - parent: 30 - type: Transform -- uid: 13257 - type: CableApcExtension - components: - - pos: 11.5,16.5 - parent: 30 - type: Transform -- uid: 13258 - type: CableApcExtension - components: - - pos: 10.5,16.5 - parent: 30 - type: Transform -- uid: 13259 - type: CableApcExtension - components: - - pos: 9.5,16.5 - parent: 30 - type: Transform -- uid: 13260 - type: CableApcExtension - components: - - pos: 9.5,15.5 - parent: 30 - type: Transform -- uid: 13261 - type: CableApcExtension - components: - - pos: 9.5,14.5 - parent: 30 - type: Transform -- uid: 13262 - type: CableApcExtension - components: - - pos: 9.5,13.5 - parent: 30 - type: Transform -- uid: 13263 - type: CableApcExtension - components: - - pos: 9.5,13.5 - parent: 30 - type: Transform -- uid: 13264 - type: CableApcExtension - components: - - pos: 9.5,12.5 - parent: 30 - type: Transform -- uid: 13265 - type: CableApcExtension - components: - - pos: 9.5,11.5 - parent: 30 - type: Transform -- uid: 13266 - type: CableApcExtension - components: - - pos: 9.5,10.5 - parent: 30 - type: Transform -- uid: 13267 - type: CableApcExtension - components: - - pos: 9.5,17.5 - parent: 30 - type: Transform -- uid: 13268 - type: CableApcExtension - components: - - pos: 9.5,18.5 - parent: 30 - type: Transform -- uid: 13269 - type: CableApcExtension - components: - - pos: 14.5,16.5 - parent: 30 - type: Transform -- uid: 13270 - type: CableApcExtension - components: - - pos: 14.5,17.5 - parent: 30 - type: Transform -- uid: 13271 - type: CableApcExtension - components: - - pos: 14.5,18.5 - parent: 30 - type: Transform -- uid: 13272 - type: CableApcExtension - components: - - pos: 14.5,14.5 - parent: 30 - type: Transform -- uid: 13273 - type: CableApcExtension - components: - - pos: 23.5,15.5 - parent: 30 - type: Transform -- uid: 13274 - type: CableApcExtension - components: - - pos: 24.5,15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13275 - type: CableApcExtension - components: - - pos: 22.5,16.5 - parent: 30 - type: Transform -- uid: 13276 - type: CableApcExtension - components: - - pos: 22.5,17.5 - parent: 30 - type: Transform -- uid: 13277 - type: CableApcExtension - components: - - pos: 24.5,15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13278 - type: CableApcExtension - components: - - pos: 25.5,15.5 - parent: 30 - type: Transform -- uid: 13279 - type: CableApcExtension - components: - - pos: 27.5,15.5 - parent: 30 - type: Transform -- uid: 13280 - type: CableApcExtension - components: - - pos: 26.5,15.5 - parent: 30 - type: Transform -- uid: 13281 - type: CableApcExtension - components: - - pos: 28.5,15.5 - parent: 30 - type: Transform -- uid: 13282 - type: CableApcExtension - components: - - pos: 28.5,16.5 - parent: 30 - type: Transform -- uid: 13283 - type: CableMV - components: - - pos: 18.5,13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13284 - type: CableApcExtension - components: - - pos: 20.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13285 - type: CableApcExtension - components: - - pos: 20.5,23.5 - parent: 30 - type: Transform -- uid: 13286 - type: CableApcExtension - components: - - pos: 20.5,22.5 - parent: 30 - type: Transform -- uid: 13287 - type: CableApcExtension - components: - - pos: 20.5,21.5 - parent: 30 - type: Transform -- uid: 13288 - type: CableApcExtension - components: - - pos: 20.5,20.5 - parent: 30 - type: Transform -- uid: 13289 - type: CableApcExtension - components: - - pos: 19.5,21.5 - parent: 30 - type: Transform -- uid: 13290 - type: CableApcExtension - components: - - pos: 18.5,21.5 - parent: 30 - type: Transform -- uid: 13291 - type: CableApcExtension - components: - - pos: 17.5,21.5 - parent: 30 - type: Transform -- uid: 13292 - type: CableApcExtension - components: - - pos: 16.5,21.5 - parent: 30 - type: Transform -- uid: 13293 - type: CableApcExtension - components: - - pos: 15.5,21.5 - parent: 30 - type: Transform -- uid: 13294 - type: CableApcExtension - components: - - pos: 13.5,21.5 - parent: 30 - type: Transform -- uid: 13295 - type: CableApcExtension - components: - - pos: 14.5,21.5 - parent: 30 - type: Transform -- uid: 13296 - type: CableApcExtension - components: - - pos: 20.5,19.5 - parent: 30 - type: Transform -- uid: 13297 - type: CableApcExtension - components: - - pos: 20.5,18.5 - parent: 30 - type: Transform -- uid: 13298 - type: CableApcExtension - components: - - pos: 17.5,20.5 - parent: 30 - type: Transform -- uid: 13299 - type: CableApcExtension - components: - - pos: 17.5,19.5 - parent: 30 - type: Transform -- uid: 13300 - type: CableApcExtension - components: - - pos: 17.5,18.5 - parent: 30 - type: Transform -- uid: 13301 - type: CableApcExtension - components: - - pos: 21.5,21.5 - parent: 30 - type: Transform -- uid: 13302 - type: CableApcExtension - components: - - pos: 22.5,21.5 - parent: 30 - type: Transform -- uid: 13303 - type: CableApcExtension - components: - - pos: 23.5,21.5 - parent: 30 - type: Transform -- uid: 13304 - type: CableApcExtension - components: - - pos: 25.5,21.5 - parent: 30 - type: Transform -- uid: 13305 - type: CableApcExtension - components: - - pos: 24.5,21.5 - parent: 30 - type: Transform -- uid: 13306 - type: CableApcExtension - components: - - pos: 25.5,21.5 - parent: 30 - type: Transform -- uid: 13307 - type: CableMV - components: - - pos: 26.5,20.5 - parent: 30 - type: Transform -- uid: 13308 - type: CableApcExtension - components: - - pos: 28.5,21.5 - parent: 30 - type: Transform -- uid: 13309 - type: CableApcExtension - components: - - pos: 27.5,21.5 - parent: 30 - type: Transform -- uid: 13310 - type: CableApcExtension - components: - - pos: 29.5,21.5 - parent: 30 - type: Transform -- uid: 13311 - type: CableApcExtension - components: - - pos: 30.5,21.5 - parent: 30 - type: Transform -- uid: 13312 - type: CableApcExtension - components: - - pos: 31.5,21.5 - parent: 30 - type: Transform -- uid: 13313 - type: CableApcExtension - components: - - pos: 31.5,22.5 - parent: 30 - type: Transform -- uid: 13314 - type: CableApcExtension - components: - - pos: 31.5,23.5 - parent: 30 - type: Transform -- uid: 13315 - type: CableApcExtension - components: - - pos: 31.5,24.5 - parent: 30 - type: Transform -- uid: 13316 - type: CableApcExtension - components: - - pos: 31.5,25.5 - parent: 30 - type: Transform -- uid: 13317 - type: CableApcExtension - components: - - pos: 32.5,25.5 - parent: 30 - type: Transform -- uid: 13318 - type: CableApcExtension - components: - - pos: 33.5,25.5 - parent: 30 - type: Transform -- uid: 13319 - type: CableApcExtension - components: - - pos: 33.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13320 - type: CableApcExtension - components: - - pos: 35.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13321 - type: CableApcExtension - components: - - pos: 35.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13322 - type: CableApcExtension - components: - - pos: 35.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13323 - type: CableApcExtension - components: - - pos: 35.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13324 - type: CableApcExtension - components: - - pos: 29.5,20.5 - parent: 30 - type: Transform -- uid: 13325 - type: CableApcExtension - components: - - pos: 29.5,19.5 - parent: 30 - type: Transform -- uid: 13326 - type: CableApcExtension - components: - - pos: 29.5,18.5 - parent: 30 - type: Transform -- uid: 13327 - type: CableApcExtension - components: - - pos: 30.5,19.5 - parent: 30 - type: Transform -- uid: 13328 - type: CableApcExtension - components: - - pos: 31.5,19.5 - parent: 30 - type: Transform -- uid: 13329 - type: CableApcExtension - components: - - pos: 32.5,19.5 - parent: 30 - type: Transform -- uid: 13330 - type: CableApcExtension - components: - - pos: 32.5,18.5 - parent: 30 - type: Transform -- uid: 13331 - type: CableMV - components: - - pos: 18.5,12.5 - parent: 30 - type: Transform -- uid: 13332 - type: CableApcExtension - components: - - pos: 32.5,20.5 - parent: 30 - type: Transform -- uid: 13333 - type: CableApcExtension - components: - - pos: 25.5,19.5 - parent: 30 - type: Transform -- uid: 13334 - type: CableApcExtension - components: - - pos: 25.5,18.5 - parent: 30 - type: Transform -- uid: 13335 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 9.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13336 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 9.5,15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13337 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13338 - type: AirlockResearchDirectorGlassLocked - components: - - pos: 28.5,17.5 - parent: 30 - type: Transform -- uid: 13339 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13340 - type: ClosetFireFilled - components: - - pos: 38.5,7.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13341 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 40.5,7.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13342 - type: StorageCanister - components: - - pos: 35.5,7.5 - parent: 30 - type: Transform -- uid: 13343 - type: StorageCanister - components: - - pos: 36.5,7.5 - parent: 30 - type: Transform -- uid: 13344 - type: GasAnalyzer - components: - - pos: 37.65522,7.624235 - parent: 30 - type: Transform -- uid: 13345 - type: GasAnalyzer - components: - - pos: 37.37397,7.60861 - parent: 30 - type: Transform -- uid: 13346 - type: ClosetRadiationSuitFilled - components: - - pos: 39.5,7.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13347 - type: BlastDoor - components: - - pos: 36.5,14.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12915 - type: SignalReceiver -- uid: 13348 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13349 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,9.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13350 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,10.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13351 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13352 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,12.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13353 - type: GasVentScrubber - components: - - pos: 40.5,13.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13354 - type: GasPressurePump - components: - - pos: 38.5,10.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 13355 - type: GasVentScrubber - components: - - pos: 38.5,8.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13356 - type: ClosetL3ScienceFilled - components: - - pos: 40.5,7.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13357 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 37.5,7.5 - parent: 30 - type: Transform -- uid: 13358 - type: WallReinforced - components: - - pos: 25.5,12.5 - parent: 30 - type: Transform -- uid: 13359 - type: WallReinforced - components: - - pos: 24.5,12.5 - parent: 30 - type: Transform -- uid: 13360 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 26.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13361 - type: ReinforcedWindow - components: - - pos: 29.5,17.5 - parent: 30 - type: Transform -- uid: 13362 - type: Table - components: - - pos: 24.5,9.5 - parent: 30 - type: Transform -- uid: 13363 - type: Poweredlight - components: - - pos: 18.5,16.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13364 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,18.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13365 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,14.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13366 - type: Poweredlight - components: - - pos: 13.5,23.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13367 - type: Poweredlight - components: - - pos: 20.5,23.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13368 - type: Poweredlight - components: - - pos: 24.5,23.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13369 - type: CableMV - components: - - pos: 27.5,20.5 - parent: 30 - type: Transform -- uid: 13370 - type: Poweredlight - components: - - pos: 29.5,23.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13371 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,19.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13372 - type: SignRND - components: - - pos: 24.5,12.5 - parent: 30 - type: Transform -- uid: 13373 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 25.5,18.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13374 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,19.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13375 - type: Grille - components: - - pos: 29.5,17.5 - parent: 30 - type: Transform -- uid: 13376 - type: PottedPlantBioluminscent - components: - - pos: 12.5,18.5 - parent: 30 - type: Transform -- uid: 13377 - type: CarpetPurple - components: - - pos: 28.5,14.5 - parent: 30 - type: Transform -- uid: 13378 - type: Dropper - components: - - pos: 24.571924,11.2297535 - parent: 30 - type: Transform -- uid: 13379 - type: ReinforcedWindow - components: - - pos: 24.5,15.5 - parent: 30 - type: Transform -- uid: 13380 - type: Poweredlight - components: - - pos: 40.5,14.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13381 - type: Poweredlight - components: - - pos: 39.5,10.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13382 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,9.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13383 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,9.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13384 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,15.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13385 - type: Grille - components: - - pos: 38.5,14.5 - parent: 30 - type: Transform -- uid: 13386 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,12.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13388 - type: SignScience2 - components: - - pos: 11.5,13.5 - parent: 30 - type: Transform -- uid: 13389 - type: SignScience - components: - - pos: 16.5,16.5 - parent: 30 - type: Transform -- uid: 13390 - type: WallReinforced - components: - - pos: 37.5,0.5 - parent: 30 - type: Transform -- uid: 13391 - type: FirelockGlass - components: - - pos: 30.5,8.5 - parent: 30 - type: Transform -- uid: 13392 - type: WallReinforced - components: - - pos: 37.5,1.5 - parent: 30 - type: Transform -- uid: 13393 - type: WallReinforced - components: - - pos: 37.5,2.5 - parent: 30 - type: Transform -- uid: 13394 - type: WallReinforced - components: - - pos: 37.5,3.5 - parent: 30 - type: Transform -- uid: 13395 - type: WallReinforced - components: - - pos: 38.5,3.5 - parent: 30 - type: Transform -- uid: 13396 - type: WallReinforced - components: - - pos: 39.5,3.5 - parent: 30 - type: Transform -- uid: 13397 - type: WallReinforced - components: - - pos: 40.5,3.5 - parent: 30 - type: Transform -- uid: 13398 - type: WallReinforced - components: - - pos: 41.5,3.5 - parent: 30 - type: Transform -- uid: 13399 - type: WallReinforced - components: - - pos: 42.5,3.5 - parent: 30 - type: Transform -- uid: 13400 - type: WallReinforced - components: - - pos: 43.5,3.5 - parent: 30 - type: Transform -- uid: 13401 - type: WallSolidRust - components: - - pos: 19.5,55.5 - parent: 30 - type: Transform -- uid: 13402 - type: WallSolidRust - components: - - pos: 17.5,51.5 - parent: 30 - type: Transform -- uid: 13403 - type: WallSolidRust - components: - - pos: 44.5,45.5 - parent: 30 - type: Transform -- uid: 13404 - type: WallSolidRust - components: - - pos: 41.5,30.5 - parent: 30 - type: Transform -- uid: 13405 - type: WallSolidRust - components: - - pos: 40.5,27.5 - parent: 30 - type: Transform -- uid: 13406 - type: WallSolidRust - components: - - pos: 41.5,27.5 - parent: 30 - type: Transform -- uid: 13407 - type: WallSolidRust - components: - - pos: 43.5,27.5 - parent: 30 - type: Transform -- uid: 13408 - type: WallSolid - components: - - pos: 47.5,24.5 - parent: 30 - type: Transform -- uid: 13409 - type: WallSolidRust - components: - - pos: 45.5,24.5 - parent: 30 - type: Transform -- uid: 13410 - type: WallSolidRust - components: - - pos: 44.5,24.5 - parent: 30 - type: Transform -- uid: 13411 - type: WallSolid - components: - - pos: 47.5,18.5 - parent: 30 - type: Transform -- uid: 13412 - type: WallSolid - components: - - pos: 46.5,18.5 - parent: 30 - type: Transform -- uid: 13413 - type: WallSolid - components: - - pos: 45.5,18.5 - parent: 30 - type: Transform -- uid: 13414 - type: WallSolid - components: - - pos: 19.5,6.5 - parent: 30 - type: Transform -- uid: 13415 - type: WallSolid - components: - - pos: 18.5,6.5 - parent: 30 - type: Transform -- uid: 13416 - type: WallReinforced - components: - - pos: 11.5,50.5 - parent: 30 - type: Transform -- uid: 13417 - type: WallReinforced - components: - - pos: 11.5,49.5 - parent: 30 - type: Transform -- uid: 13418 - type: WallReinforced - components: - - pos: 45.5,3.5 - parent: 30 - type: Transform -- uid: 13419 - type: WallReinforced - components: - - pos: 14.5,48.5 - parent: 30 - type: Transform -- uid: 13420 - type: ReinforcedWindow - components: - - pos: 11.5,62.5 - parent: 30 - type: Transform -- uid: 13421 - type: ReinforcedWindow - components: - - pos: 10.5,53.5 - parent: 30 - type: Transform -- uid: 13422 - type: ReinforcedWindow - components: - - pos: 10.5,59.5 - parent: 30 - type: Transform -- uid: 13423 - type: WallReinforced - components: - - pos: 12.5,62.5 - parent: 30 - type: Transform -- uid: 13424 - type: WallReinforced - components: - - pos: 10.5,62.5 - parent: 30 - type: Transform -- uid: 13425 - type: WallReinforced - components: - - pos: 10.5,60.5 - parent: 30 - type: Transform -- uid: 13426 - type: WallReinforced - components: - - pos: 10.5,56.5 - parent: 30 - type: Transform -- uid: 13427 - type: WallReinforced - components: - - pos: 10.5,52.5 - parent: 30 - type: Transform -- uid: 13428 - type: CableApcExtension - components: - - pos: 19.5,60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13429 - type: CableApcExtension - components: - - pos: 19.5,59.5 - parent: 30 - type: Transform -- uid: 13430 - type: CableApcExtension - components: - - pos: 19.5,57.5 - parent: 30 - type: Transform -- uid: 13431 - type: CableApcExtension - components: - - pos: 17.5,57.5 - parent: 30 - type: Transform -- uid: 13432 - type: CableApcExtension - components: - - pos: 16.5,56.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13433 - type: DrinkShaker - components: - - pos: 15.511198,62.487156 - parent: 30 - type: Transform -- uid: 13434 - type: soda_dispenser - components: - - pos: 16.5,62.5 - parent: 30 - type: Transform -- uid: 13435 - type: Table - components: - - pos: 16.5,62.5 - parent: 30 - type: Transform -- uid: 13436 - type: Table - components: - - pos: 17.5,62.5 - parent: 30 - type: Transform -- uid: 13437 - type: Table - components: - - pos: 15.5,62.5 - parent: 30 - type: Transform -- uid: 13438 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,62.5 - parent: 30 - type: Transform -- uid: 13439 - type: WallSolid - components: - - pos: 13.5,60.5 - parent: 30 - type: Transform -- uid: 13440 - type: WallSolid - components: - - pos: 18.5,60.5 - parent: 30 - type: Transform -- uid: 13441 - type: WallSolid - components: - - pos: 18.5,58.5 - parent: 30 - type: Transform -- uid: 13442 - type: WallSolid - components: - - pos: 18.5,56.5 - parent: 30 - type: Transform -- uid: 13443 - type: Table - components: - - pos: 12.5,49.5 - parent: 30 - type: Transform -- uid: 13444 - type: APCBasic - components: - - pos: 15.5,55.5 - parent: 30 - type: Transform -- uid: 13445 - type: CableMV - components: - - pos: 15.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13446 - type: ClosetToolFilled - components: - - pos: 13.5,51.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13447 - type: CableApcExtension - components: - - pos: 15.5,54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13448 - type: CableMV - components: - - pos: 15.5,54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13449 - type: MaintenanceFluffSpawner - components: - - pos: 12.5,54.5 - parent: 30 - type: Transform -- uid: 13450 - type: AirlockEngineeringLocked - components: - - pos: 14.5,50.5 - parent: 30 - type: Transform -- uid: 13451 - type: ReinforcedWindow - components: - - pos: 22.5,52.5 - parent: 30 - type: Transform -- uid: 13452 - type: ReinforcedWindow - components: - - pos: 22.5,54.5 - parent: 30 - type: Transform -- uid: 13453 - type: WallReinforced - components: - - pos: 21.5,46.5 - parent: 30 - type: Transform -- uid: 13454 - type: ReinforcedWindow - components: - - pos: 21.5,47.5 - parent: 30 - type: Transform -- uid: 13455 - type: ReinforcedWindow - components: - - pos: 21.5,48.5 - parent: 30 - type: Transform -- uid: 13456 - type: ReinforcedWindow - components: - - pos: 21.5,49.5 - parent: 30 - type: Transform -- uid: 13457 - type: WallReinforced - components: - - pos: 21.5,50.5 - parent: 30 - type: Transform -- uid: 13458 - type: WallReinforced - components: - - pos: 21.5,51.5 - parent: 30 - type: Transform -- uid: 13459 - type: WallSolid - components: - - pos: 21.5,52.5 - parent: 30 - type: Transform -- uid: 13460 - type: WallSolid - components: - - pos: 18.5,51.5 - parent: 30 - type: Transform -- uid: 13461 - type: WallReinforced - components: - - pos: 12.5,48.5 - parent: 30 - type: Transform -- uid: 13462 - type: WallReinforced - components: - - pos: 21.5,55.5 - parent: 30 - type: Transform -- uid: 13463 - type: WallSolid - components: - - pos: 15.5,55.5 - parent: 30 - type: Transform -- uid: 13464 - type: WallReinforced - components: - - pos: 20.5,55.5 - parent: 30 - type: Transform -- uid: 13465 - type: WallSolid - components: - - pos: 18.5,52.5 - parent: 30 - type: Transform -- uid: 13466 - type: WallSolid - components: - - pos: 18.5,53.5 - parent: 30 - type: Transform -- uid: 13467 - type: Girder - components: - - pos: 17.5,50.5 - parent: 30 - type: Transform -- uid: 13468 - type: GasPipeStraight - components: - - pos: 16.5,55.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13469 - type: GasVentPump - components: - - pos: 16.5,57.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13470 - type: GasVentPump - components: - - pos: 20.5,44.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13471 - type: WallReinforced - components: - - pos: 44.5,3.5 - parent: 30 - type: Transform -- uid: 13472 - type: WallSolid - components: - - pos: 20.5,51.5 - parent: 30 - type: Transform -- uid: 13473 - type: WallSolid - components: - - pos: 18.5,54.5 - parent: 30 - type: Transform -- uid: 13474 - type: ReinforcedWindow - components: - - pos: 10.5,57.5 - parent: 30 - type: Transform -- uid: 13475 - type: ReinforcedWindow - components: - - pos: 10.5,61.5 - parent: 30 - type: Transform -- uid: 13476 - type: WallSolid - components: - - pos: 17.5,55.5 - parent: 30 - type: Transform -- uid: 13477 - type: WallSolid - components: - - pos: 18.5,55.5 - parent: 30 - type: Transform -- uid: 13478 - type: AirlockMaintLocked - components: - - pos: 19.5,51.5 - parent: 30 - type: Transform -- uid: 13479 - type: ReinforcedWindow - components: - - pos: 28.5,52.5 - parent: 30 - type: Transform -- uid: 13480 - type: WallSolid - components: - - pos: 14.5,53.5 - parent: 30 - type: Transform -- uid: 13481 - type: ReinforcedWindow - components: - - pos: 20.5,60.5 - parent: 30 - type: Transform -- uid: 13482 - type: ReinforcedWindow - components: - - pos: 28.5,54.5 - parent: 30 - type: Transform -- uid: 13483 - type: ReinforcedWindow - components: - - pos: 30.5,54.5 - parent: 30 - type: Transform -- uid: 13484 - type: ReinforcedWindow - components: - - pos: 29.5,50.5 - parent: 30 - type: Transform -- uid: 13485 - type: ReinforcedWindow - components: - - pos: 29.5,48.5 - parent: 30 - type: Transform -- uid: 13486 - type: ReinforcedWindow - components: - - pos: 29.5,49.5 - parent: 30 - type: Transform -- uid: 13487 - type: WallReinforced - components: - - pos: 29.5,51.5 - parent: 30 - type: Transform -- uid: 13488 - type: ReinforcedWindow - components: - - pos: 31.5,48.5 - parent: 30 - type: Transform -- uid: 13489 - type: ReinforcedWindow - components: - - pos: 31.5,49.5 - parent: 30 - type: Transform -- uid: 13490 - type: ReinforcedWindow - components: - - pos: 31.5,50.5 - parent: 30 - type: Transform -- uid: 13491 - type: WallReinforced - components: - - pos: 29.5,52.5 - parent: 30 - type: Transform -- uid: 13492 - type: WallReinforced - components: - - pos: 29.5,54.5 - parent: 30 - type: Transform -- uid: 13493 - type: WallReinforced - components: - - pos: 31.5,54.5 - parent: 30 - type: Transform -- uid: 13494 - type: WallReinforced - components: - - pos: 31.5,53.5 - parent: 30 - type: Transform -- uid: 13495 - type: WallReinforced - components: - - pos: 31.5,52.5 - parent: 30 - type: Transform -- uid: 13496 - type: WallReinforced - components: - - pos: 31.5,51.5 - parent: 30 - type: Transform -- uid: 13497 - type: WallReinforced - components: - - pos: 29.5,45.5 - parent: 30 - type: Transform -- uid: 13498 - type: WallReinforced - components: - - pos: 29.5,46.5 - parent: 30 - type: Transform -- uid: 13499 - type: WallReinforced - components: - - pos: 29.5,47.5 - parent: 30 - type: Transform -- uid: 13500 - type: WallReinforced - components: - - pos: 32.5,46.5 - parent: 30 - type: Transform -- uid: 13501 - type: WallReinforced - components: - - pos: 31.5,46.5 - parent: 30 - type: Transform -- uid: 13502 - type: WallReinforced - components: - - pos: 31.5,47.5 - parent: 30 - type: Transform -- uid: 13503 - type: WallReinforced - components: - - pos: 28.5,45.5 - parent: 30 - type: Transform -- uid: 13504 - type: WallReinforced - components: - - pos: 33.5,46.5 - parent: 30 - type: Transform -- uid: 13505 - type: WallReinforced - components: - - pos: 34.5,46.5 - parent: 30 - type: Transform -- uid: 13506 - type: WallSolid - components: - - pos: 34.5,45.5 - parent: 30 - type: Transform -- uid: 13507 - type: WallReinforced - components: - - pos: 44.5,42.5 - parent: 30 - type: Transform -- uid: 13508 - type: WallSolid - components: - - pos: 34.5,43.5 - parent: 30 - type: Transform -- uid: 13509 - type: WallReinforced - components: - - pos: 43.5,42.5 - parent: 30 - type: Transform -- uid: 13510 - type: ReinforcedWindow - components: - - pos: 36.5,46.5 - parent: 30 - type: Transform -- uid: 13511 - type: ReinforcedWindow - components: - - pos: 35.5,46.5 - parent: 30 - type: Transform -- uid: 13512 - type: ReinforcedWindow - components: - - pos: 39.5,46.5 - parent: 30 - type: Transform -- uid: 13513 - type: ReinforcedWindow - components: - - pos: 38.5,46.5 - parent: 30 - type: Transform -- uid: 13514 - type: WallReinforced - components: - - pos: 37.5,46.5 - parent: 30 - type: Transform -- uid: 13515 - type: WallReinforced - components: - - pos: 40.5,46.5 - parent: 30 - type: Transform -- uid: 13516 - type: WallSolid - components: - - pos: 40.5,45.5 - parent: 30 - type: Transform -- uid: 13517 - type: WallSolid - components: - - pos: 40.5,43.5 - parent: 30 - type: Transform -- uid: 13518 - type: WallReinforced - components: - - pos: 38.5,42.5 - parent: 30 - type: Transform -- uid: 13519 - type: WallReinforced - components: - - pos: 37.5,42.5 - parent: 30 - type: Transform -- uid: 13520 - type: WallReinforced - components: - - pos: 36.5,42.5 - parent: 30 - type: Transform -- uid: 13521 - type: WallReinforced - components: - - pos: 35.5,42.5 - parent: 30 - type: Transform -- uid: 13522 - type: WallReinforced - components: - - pos: 34.5,42.5 - parent: 30 - type: Transform -- uid: 13523 - type: Grille - components: - - pos: 47.5,5.5 - parent: 30 - type: Transform -- uid: 13524 - type: WallReinforced - components: - - pos: 41.5,46.5 - parent: 30 - type: Transform -- uid: 13525 - type: WallReinforced - components: - - pos: 42.5,46.5 - parent: 30 - type: Transform -- uid: 13526 - type: WallReinforced - components: - - pos: 43.5,46.5 - parent: 30 - type: Transform -- uid: 13527 - type: WallReinforced - components: - - pos: 44.5,46.5 - parent: 30 - type: Transform -- uid: 13528 - type: WallSolid - components: - - pos: 47.5,22.5 - parent: 30 - type: Transform -- uid: 13529 - type: WallSolid - components: - - pos: 44.5,43.5 - parent: 30 - type: Transform -- uid: 13530 - type: WallReinforced - components: - - pos: 41.5,42.5 - parent: 30 - type: Transform -- uid: 13531 - type: WallReinforced - components: - - pos: 40.5,42.5 - parent: 30 - type: Transform -- uid: 13532 - type: WallReinforced - components: - - pos: 34.5,40.5 - parent: 30 - type: Transform -- uid: 13533 - type: WallReinforced - components: - - pos: 39.5,42.5 - parent: 30 - type: Transform -- uid: 13534 - type: WallReinforced - components: - - pos: 42.5,42.5 - parent: 30 - type: Transform -- uid: 13535 - type: WallReinforced - components: - - pos: 45.5,46.5 - parent: 30 - type: Transform -- uid: 13536 - type: WallReinforced - components: - - pos: 46.5,46.5 - parent: 30 - type: Transform -- uid: 13537 - type: WallReinforced - components: - - pos: 47.5,46.5 - parent: 30 - type: Transform -- uid: 13538 - type: WallReinforced - components: - - pos: 48.5,46.5 - parent: 30 - type: Transform -- uid: 13539 - type: WallReinforced - components: - - pos: 48.5,45.5 - parent: 30 - type: Transform -- uid: 13540 - type: WallReinforced - components: - - pos: 48.5,44.5 - parent: 30 - type: Transform -- uid: 13541 - type: ReinforcedWindow - components: - - pos: 48.5,43.5 - parent: 30 - type: Transform -- uid: 13542 - type: WallReinforced - components: - - pos: 48.5,42.5 - parent: 30 - type: Transform -- uid: 13543 - type: WallReinforced - components: - - pos: 47.5,42.5 - parent: 30 - type: Transform -- uid: 13544 - type: WallReinforced - components: - - pos: 47.5,41.5 - parent: 30 - type: Transform -- uid: 13545 - type: WallReinforced - components: - - pos: 47.5,40.5 - parent: 30 - type: Transform -- uid: 13546 - type: WallSolid - components: - - pos: 45.5,40.5 - parent: 30 - type: Transform -- uid: 13547 - type: WallReinforced - components: - - pos: 34.5,41.5 - parent: 30 - type: Transform -- uid: 13548 - type: AirlockSecurityLocked - components: - - pos: 44.5,41.5 - parent: 30 - type: Transform -- uid: 13549 - type: WallReinforced - components: - - pos: 47.5,39.5 - parent: 30 - type: Transform -- uid: 13550 - type: ReinforcedWindow - components: - - pos: 47.5,38.5 - parent: 30 - type: Transform -- uid: 13551 - type: ReinforcedWindow - components: - - pos: 47.5,37.5 - parent: 30 - type: Transform -- uid: 13552 - type: ReinforcedWindow - components: - - pos: 47.5,36.5 - parent: 30 - type: Transform -- uid: 13553 - type: ReinforcedWindow - components: - - pos: 47.5,35.5 - parent: 30 - type: Transform -- uid: 13554 - type: ReinforcedWindow - components: - - pos: 44.5,39.5 - parent: 30 - type: Transform -- uid: 13555 - type: ReinforcedWindow - components: - - pos: 44.5,37.5 - parent: 30 - type: Transform -- uid: 13556 - type: WallReinforced - components: - - pos: 44.5,36.5 - parent: 30 - type: Transform -- uid: 13557 - type: Grille - components: - - pos: 38.5,36.5 - parent: 30 - type: Transform -- uid: 13558 - type: Grille - components: - - pos: 44.5,35.5 - parent: 30 - type: Transform -- uid: 13559 - type: WallSolid - components: - - pos: 39.5,31.5 - parent: 30 - type: Transform -- uid: 13560 - type: WallReinforced - components: - - pos: 47.5,33.5 - parent: 30 - type: Transform -- uid: 13561 - type: WallReinforced - components: - - pos: 47.5,34.5 - parent: 30 - type: Transform -- uid: 13562 - type: WallSolid - components: - - pos: 38.5,31.5 - parent: 30 - type: Transform -- uid: 13563 - type: WallReinforced - components: - - pos: 47.5,32.5 - parent: 30 - type: Transform -- uid: 13564 - type: WallSolid - components: - - pos: 36.5,31.5 - parent: 30 - type: Transform -- uid: 13565 - type: WallSolid - components: - - pos: 36.5,27.5 - parent: 30 - type: Transform -- uid: 13566 - type: WallSolid - components: - - pos: 37.5,27.5 - parent: 30 - type: Transform -- uid: 13567 - type: WallSolid - components: - - pos: 37.5,31.5 - parent: 30 - type: Transform -- uid: 13568 - type: WallSolid - components: - - pos: 39.5,27.5 - parent: 30 - type: Transform -- uid: 13569 - type: WallSolidRust - components: - - pos: 47.5,23.5 - parent: 30 - type: Transform -- uid: 13570 - type: WallSolid - components: - - pos: 47.5,20.5 - parent: 30 - type: Transform -- uid: 13571 - type: WallSolid - components: - - pos: 41.5,28.5 - parent: 30 - type: Transform -- uid: 13572 - type: WallSolid - components: - - pos: 41.5,29.5 - parent: 30 - type: Transform -- uid: 13573 - type: WallSolid - components: - - pos: 47.5,21.5 - parent: 30 - type: Transform -- uid: 13574 - type: WallSolid - components: - - pos: 34.5,32.5 - parent: 30 - type: Transform -- uid: 13575 - type: WallSolid - components: - - pos: 33.5,33.5 - parent: 30 - type: Transform -- uid: 13576 - type: WallSolid - components: - - pos: 33.5,31.5 - parent: 30 - type: Transform -- uid: 13577 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 42.5,41.5 - parent: 30 - type: Transform -- uid: 13578 - type: WallSolid - components: - - pos: 34.5,31.5 - parent: 30 - type: Transform -- uid: 13579 - type: Window - components: - - pos: 44.5,35.5 - parent: 30 - type: Transform -- uid: 13580 - type: Grille - components: - - pos: 35.5,36.5 - parent: 30 - type: Transform -- uid: 13581 - type: ReinforcedWindow - components: - - pos: 34.5,37.5 - parent: 30 - type: Transform -- uid: 13582 - type: ReinforcedWindow - components: - - pos: 34.5,39.5 - parent: 30 - type: Transform -- uid: 13583 - type: TableWood - components: - - pos: 40.5,40.5 - parent: 30 - type: Transform -- uid: 13584 - type: WallSolid - components: - - pos: 33.5,40.5 - parent: 30 - type: Transform -- uid: 13585 - type: WallSolid - components: - - pos: 35.5,30.5 - parent: 30 - type: Transform -- uid: 13586 - type: WallSolid - components: - - pos: 35.5,28.5 - parent: 30 - type: Transform -- uid: 13587 - type: WallSolid - components: - - pos: 35.5,27.5 - parent: 30 - type: Transform -- uid: 13588 - type: WallSolid - components: - - pos: 35.5,29.5 - parent: 30 - type: Transform -- uid: 13589 - type: WallSolid - components: - - pos: 44.5,32.5 - parent: 30 - type: Transform -- uid: 13590 - type: WallSolid - components: - - pos: 45.5,32.5 - parent: 30 - type: Transform -- uid: 13591 - type: WallSolid - components: - - pos: 44.5,31.5 - parent: 30 - type: Transform -- uid: 13592 - type: WallSolid - components: - - pos: 43.5,31.5 - parent: 30 - type: Transform -- uid: 13593 - type: GasVentPump - components: - - pos: 35.5,39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13594 - type: WallSolid - components: - - pos: 41.5,31.5 - parent: 30 - type: Transform -- uid: 13595 - type: WallSolid - components: - - pos: 40.5,31.5 - parent: 30 - type: Transform -- uid: 13596 - type: WallSolid - components: - - pos: 43.5,25.5 - parent: 30 - type: Transform -- uid: 13597 - type: WallSolid - components: - - pos: 48.5,20.5 - parent: 30 - type: Transform -- uid: 13598 - type: WallSolid - components: - - pos: 43.5,28.5 - parent: 30 - type: Transform -- uid: 13599 - type: WallSolid - components: - - pos: 45.5,28.5 - parent: 30 - type: Transform -- uid: 13600 - type: WallSolid - components: - - pos: 44.5,28.5 - parent: 30 - type: Transform -- uid: 13601 - type: WallSolid - components: - - pos: 46.5,28.5 - parent: 30 - type: Transform -- uid: 13602 - type: WallReinforced - components: - - pos: 47.5,28.5 - parent: 30 - type: Transform -- uid: 13603 - type: WallReinforced - components: - - pos: 48.5,28.5 - parent: 30 - type: Transform -- uid: 13604 - type: WallReinforced - components: - - pos: 48.5,29.5 - parent: 30 - type: Transform -- uid: 13605 - type: WallReinforced - components: - - pos: 48.5,31.5 - parent: 30 - type: Transform -- uid: 13606 - type: WallReinforced - components: - - pos: 48.5,32.5 - parent: 30 - type: Transform -- uid: 13607 - type: WallReinforced - components: - - pos: 47.5,25.5 - parent: 30 - type: Transform -- uid: 13608 - type: WallSolidRust - components: - - pos: 49.5,20.5 - parent: 30 - type: Transform -- uid: 13609 - type: Catwalk - components: - - pos: 35.5,22.5 - parent: 30 - type: Transform -- uid: 13610 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 44.5,11.5 - parent: 30 - type: Transform -- uid: 13611 - type: WallSolid - components: - - pos: 46.5,24.5 - parent: 30 - type: Transform -- uid: 13612 - type: ReinforcedWindow - components: - - pos: 45.5,11.5 - parent: 30 - type: Transform -- uid: 13613 - type: WallSolid - components: - - pos: 43.5,24.5 - parent: 30 - type: Transform -- uid: 13614 - type: WallReinforced - components: - - pos: 50.5,25.5 - parent: 30 - type: Transform -- uid: 13615 - type: ReinforcedWindow - components: - - pos: 51.5,25.5 - parent: 30 - type: Transform -- uid: 13616 - type: ReinforcedWindow - components: - - pos: 52.5,25.5 - parent: 30 - type: Transform -- uid: 13617 - type: WallReinforced - components: - - pos: 54.5,25.5 - parent: 30 - type: Transform -- uid: 13618 - type: WallReinforced - components: - - pos: 54.5,24.5 - parent: 30 - type: Transform -- uid: 13619 - type: ReinforcedWindow - components: - - pos: 54.5,23.5 - parent: 30 - type: Transform -- uid: 13620 - type: WallReinforced - components: - - pos: 54.5,22.5 - parent: 30 - type: Transform -- uid: 13621 - type: WallReinforced - components: - - pos: 54.5,20.5 - parent: 30 - type: Transform -- uid: 13622 - type: ReinforcedWindow - components: - - pos: 54.5,21.5 - parent: 30 - type: Transform -- uid: 13623 - type: WallReinforced - components: - - pos: 54.5,19.5 - parent: 30 - type: Transform -- uid: 13624 - type: WallReinforced - components: - - pos: 54.5,18.5 - parent: 30 - type: Transform -- uid: 13625 - type: WallReinforced - components: - - pos: 53.5,18.5 - parent: 30 - type: Transform -- uid: 13626 - type: WallReinforced - components: - - pos: 52.5,18.5 - parent: 30 - type: Transform -- uid: 13627 - type: WallReinforced - components: - - pos: 51.5,18.5 - parent: 30 - type: Transform -- uid: 13628 - type: WallReinforced - components: - - pos: 50.5,18.5 - parent: 30 - type: Transform -- uid: 13629 - type: WallReinforced - components: - - pos: 49.5,18.5 - parent: 30 - type: Transform -- uid: 13630 - type: WallReinforced - components: - - pos: 48.5,18.5 - parent: 30 - type: Transform -- uid: 13631 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 44.5,10.5 - parent: 30 - type: Transform -- uid: 13632 - type: WallSolidRust - components: - - pos: 13.5,52.5 - parent: 30 - type: Transform -- uid: 13633 - type: WindowDirectional - components: - - pos: 44.5,15.5 - parent: 30 - type: Transform -- uid: 13634 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 52.5,20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13635 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13636 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13637 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13638 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13639 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13640 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13641 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13642 - type: Catwalk - components: - - pos: 37.5,-18.5 - parent: 30 - type: Transform -- uid: 13643 - type: WallReinforced - components: - - pos: 41.5,18.5 - parent: 30 - type: Transform -- uid: 13644 - type: WallReinforced - components: - - pos: 40.5,18.5 - parent: 30 - type: Transform -- uid: 13645 - type: WallReinforced - components: - - pos: 39.5,18.5 - parent: 30 - type: Transform -- uid: 13646 - type: ReinforcedWindow - components: - - pos: 41.5,19.5 - parent: 30 - type: Transform -- uid: 13647 - type: WallReinforced - components: - - pos: 39.5,20.5 - parent: 30 - type: Transform -- uid: 13648 - type: WallReinforced - components: - - pos: 38.5,20.5 - parent: 30 - type: Transform -- uid: 13649 - type: WallReinforced - components: - - pos: 37.5,20.5 - parent: 30 - type: Transform -- uid: 13650 - type: WallReinforced - components: - - pos: 36.5,20.5 - parent: 30 - type: Transform -- uid: 13651 - type: WallReinforced - components: - - pos: 36.5,21.5 - parent: 30 - type: Transform -- uid: 13652 - type: ReinforcedWindow - components: - - pos: 36.5,24.5 - parent: 30 - type: Transform -- uid: 13653 - type: ReinforcedWindow - components: - - pos: 36.5,22.5 - parent: 30 - type: Transform -- uid: 13654 - type: ReinforcedWindow - components: - - pos: 36.5,23.5 - parent: 30 - type: Transform -- uid: 13655 - type: WallReinforced - components: - - pos: 36.5,25.5 - parent: 30 - type: Transform -- uid: 13656 - type: WallReinforced - components: - - pos: 37.5,25.5 - parent: 30 - type: Transform -- uid: 13657 - type: WallReinforced - components: - - pos: 38.5,25.5 - parent: 30 - type: Transform -- uid: 13658 - type: WallReinforced - components: - - pos: 39.5,25.5 - parent: 30 - type: Transform -- uid: 13659 - type: WallReinforced - components: - - pos: 40.5,25.5 - parent: 30 - type: Transform -- uid: 13660 - type: WallReinforced - components: - - pos: 41.5,25.5 - parent: 30 - type: Transform -- uid: 13661 - type: ReinforcedWindow - components: - - pos: 41.5,23.5 - parent: 30 - type: Transform -- uid: 13662 - type: ReinforcedWindow - components: - - pos: 41.5,21.5 - parent: 30 - type: Transform -- uid: 13663 - type: WallReinforced - components: - - pos: 41.5,22.5 - parent: 30 - type: Transform -- uid: 13664 - type: ReinforcedWindow - components: - - pos: 14.5,63.5 - parent: 30 - type: Transform -- uid: 13665 - type: AirlockMaintLocked - components: - - pos: 32.5,42.5 - parent: 30 - type: Transform -- uid: 13666 - type: ReinforcedWindow - components: - - pos: 41.5,20.5 - parent: 30 - type: Transform -- uid: 13667 - type: AirlockMaintLocked - components: - - pos: 16.5,55.5 - parent: 30 - type: Transform -- uid: 13668 - type: AirlockMaintLocked - components: - - pos: 34.5,44.5 - parent: 30 - type: Transform -- uid: 13669 - type: ReinforcedWindow - components: - - pos: 41.5,24.5 - parent: 30 - type: Transform -- uid: 13670 - type: Grille - components: - - pos: 36.5,22.5 - parent: 30 - type: Transform -- uid: 13671 - type: AirlockMaintLocked - components: - - pos: 40.5,44.5 - parent: 30 - type: Transform -- uid: 13672 - type: AirlockMaintLocked - components: - - pos: 44.5,44.5 - parent: 30 - type: Transform -- uid: 13673 - type: ChairWood - components: - - pos: -64.5,-48.5 - parent: 30 - type: Transform -- uid: 13674 - type: AirlockMaintLocked - components: - - pos: 46.5,42.5 - parent: 30 - type: Transform -- uid: 13675 - type: AirlockMaintLocked - components: - - pos: 46.5,32.5 - parent: 30 - type: Transform -- uid: 13676 - type: WallSolid - components: - - pos: 45.5,42.5 - parent: 30 - type: Transform -- uid: 13677 - type: Grille - components: - - pos: 36.5,36.5 - parent: 30 - type: Transform -- uid: 13678 - type: Grille - components: - - pos: 34.5,37.5 - parent: 30 - type: Transform -- uid: 13679 - type: WallSolid - components: - - pos: 34.5,33.5 - parent: 30 - type: Transform -- uid: 13680 - type: Grille - components: - - pos: 34.5,34.5 - parent: 30 - type: Transform -- uid: 13681 - type: Grille - components: - - pos: 34.5,39.5 - parent: 30 - type: Transform -- uid: 13682 - type: WallReinforced - components: - - pos: 44.5,40.5 - parent: 30 - type: Transform -- uid: 13683 - type: Grille - components: - - pos: 44.5,33.5 - parent: 30 - type: Transform -- uid: 13684 - type: AirlockBrigGlassLocked - components: - - pos: 39.5,36.5 - parent: 30 - type: Transform -- uid: 13685 - type: WallReinforced - components: - - pos: 34.5,36.5 - parent: 30 - type: Transform -- uid: 13686 - type: Grille - components: - - pos: 44.5,37.5 - parent: 30 - type: Transform -- uid: 13687 - type: Grille - components: - - pos: 44.5,39.5 - parent: 30 - type: Transform -- uid: 13688 - type: Grille - components: - - pos: 47.5,35.5 - parent: 30 - type: Transform -- uid: 13689 - type: Grille - components: - - pos: 47.5,36.5 - parent: 30 - type: Transform -- uid: 13690 - type: Grille - components: - - pos: 47.5,37.5 - parent: 30 - type: Transform -- uid: 13691 - type: Grille - components: - - pos: 47.5,38.5 - parent: 30 - type: Transform -- uid: 13692 - type: Grille - components: - - pos: 48.5,43.5 - parent: 30 - type: Transform -- uid: 13693 - type: Grille - components: - - pos: 39.5,46.5 - parent: 30 - type: Transform -- uid: 13694 - type: Grille - components: - - pos: 38.5,46.5 - parent: 30 - type: Transform -- uid: 13695 - type: Grille - components: - - pos: 36.5,46.5 - parent: 30 - type: Transform -- uid: 13696 - type: Grille - components: - - pos: 35.5,46.5 - parent: 30 - type: Transform -- uid: 13697 - type: Grille - components: - - pos: 31.5,48.5 - parent: 30 - type: Transform -- uid: 13698 - type: Grille - components: - - pos: 31.5,49.5 - parent: 30 - type: Transform -- uid: 13699 - type: Grille - components: - - pos: 31.5,50.5 - parent: 30 - type: Transform -- uid: 13700 - type: Grille - components: - - pos: 29.5,48.5 - parent: 30 - type: Transform -- uid: 13701 - type: Grille - components: - - pos: 29.5,49.5 - parent: 30 - type: Transform -- uid: 13702 - type: Grille - components: - - pos: 29.5,50.5 - parent: 30 - type: Transform -- uid: 13703 - type: Grille - components: - - pos: 28.5,52.5 - parent: 30 - type: Transform -- uid: 13704 - type: Grille - components: - - pos: 28.5,54.5 - parent: 30 - type: Transform -- uid: 13705 - type: Grille - components: - - pos: 30.5,54.5 - parent: 30 - type: Transform -- uid: 13706 - type: Grille - components: - - pos: 21.5,47.5 - parent: 30 - type: Transform -- uid: 13707 - type: Grille - components: - - pos: 21.5,48.5 - parent: 30 - type: Transform -- uid: 13708 - type: Grille - components: - - pos: 21.5,49.5 - parent: 30 - type: Transform -- uid: 13709 - type: Grille - components: - - pos: 22.5,52.5 - parent: 30 - type: Transform -- uid: 13710 - type: Grille - components: - - pos: 22.5,54.5 - parent: 30 - type: Transform -- uid: 13711 - type: WallReinforced - components: - - pos: 11.5,51.5 - parent: 30 - type: Transform -- uid: 13712 - type: ReinforcedWindow - components: - - pos: 20.5,59.5 - parent: 30 - type: Transform -- uid: 13713 - type: ReinforcedWindow - components: - - pos: 10.5,55.5 - parent: 30 - type: Transform -- uid: 13714 - type: WallReinforced - components: - - pos: 10.5,58.5 - parent: 30 - type: Transform -- uid: 13715 - type: CableApcExtension - components: - - pos: 19.5,58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13716 - type: CableApcExtension - components: - - pos: 18.5,57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13717 - type: CableApcExtension - components: - - pos: 16.5,57.5 - parent: 30 - type: Transform -- uid: 13718 - type: BoozeDispenser - components: - - pos: 17.5,62.5 - parent: 30 - type: Transform -- uid: 13719 - type: LockerBoozeFilled - components: - - pos: 19.5,62.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13720 - type: WallSolid - components: - - pos: 13.5,61.5 - parent: 30 - type: Transform -- uid: 13721 - type: WallSolid - components: - - pos: 18.5,62.5 - parent: 30 - type: Transform -- uid: 13722 - type: WallSolid - components: - - pos: 18.5,59.5 - parent: 30 - type: Transform -- uid: 13723 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 13.5,49.5 - parent: 30 - type: Transform -- uid: 13724 - type: CableMV - components: - - pos: 16.5,54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13725 - type: SubstationBasic - components: - - name: North Maint Substation - type: MetaData - - pos: 12.5,51.5 - parent: 30 - type: Transform -- uid: 13726 - type: CableApcExtension - components: - - pos: 15.5,55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13727 - type: CableMV - components: - - pos: 15.5,55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13728 - type: ShuttersNormal - components: - - pos: 23.5,52.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13741 - - port: Pressed - uid: 13742 - type: SignalReceiver -- uid: 13729 - type: ShuttersNormal - components: - - pos: 24.5,52.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13741 - - port: Pressed - uid: 13742 - type: SignalReceiver -- uid: 13730 - type: ShuttersNormal - components: - - pos: 25.5,52.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13742 - - port: Pressed - uid: 13741 - type: SignalReceiver -- uid: 13731 - type: ShuttersNormal - components: - - pos: 26.5,52.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13742 - - port: Pressed - uid: 13741 - type: SignalReceiver -- uid: 13732 - type: ShuttersNormal - components: - - pos: 27.5,52.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13742 - - port: Pressed - uid: 13741 - type: SignalReceiver -- uid: 13733 - type: ShuttersNormal - components: - - pos: 27.5,54.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13741 - - port: Pressed - uid: 13742 - type: SignalReceiver -- uid: 13734 - type: ShuttersNormal - components: - - pos: 26.5,54.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13741 - - port: Pressed - uid: 13742 - type: SignalReceiver -- uid: 13735 - type: ShuttersNormal - components: - - pos: 25.5,54.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13741 - - port: Pressed - uid: 13742 - type: SignalReceiver -- uid: 13736 - type: ShuttersNormal - components: - - pos: 24.5,54.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13741 - - port: Pressed - uid: 13742 - type: SignalReceiver -- uid: 13737 - type: ShuttersNormal - components: - - pos: 23.5,54.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 13741 - - port: Pressed - uid: 13742 - type: SignalReceiver -- uid: 13738 - type: AirlockGlass - components: - - pos: 22.5,53.5 - parent: 30 - type: Transform -- uid: 13739 - type: AirlockGlass - components: - - pos: 28.5,53.5 - parent: 30 - type: Transform -- uid: 13740 - type: WallSolid - components: - - pos: 21.5,54.5 - parent: 30 - type: Transform -- uid: 13741 - type: SignalButton - components: - - pos: 21.5,54.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13737 - - port: Toggle - uid: 13736 - - port: Toggle - uid: 13735 - - port: Toggle - uid: 13734 - - port: Toggle - uid: 13733 - - port: Toggle - uid: 13729 - - port: Toggle - uid: 13728 - - port: Toggle - uid: 13730 - - port: Toggle - uid: 13731 - - port: Toggle - uid: 13732 - type: SignalTransmitter -- uid: 13742 - type: SignalButton - components: - - pos: 29.5,54.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13733 - - port: Toggle - uid: 13732 - - port: Toggle - uid: 13731 - - port: Toggle - uid: 13730 - - port: Toggle - uid: 13734 - - port: Toggle - uid: 13735 - - port: Toggle - uid: 13736 - - port: Toggle - uid: 13737 - - port: Toggle - uid: 13728 - - port: Toggle - uid: 13729 - type: SignalTransmitter -- uid: 13743 - type: Grille - components: - - pos: 37.5,36.5 - parent: 30 - type: Transform -- uid: 13744 - type: Grille - components: - - pos: 41.5,36.5 - parent: 30 - type: Transform -- uid: 13745 - type: AirlockGlass - components: - - pos: 34.5,35.5 - parent: 30 - type: Transform -- uid: 13746 - type: Grille - components: - - pos: 40.5,36.5 - parent: 30 - type: Transform -- uid: 13747 - type: AsteroidRock - components: - - pos: -76.5,-49.5 - parent: 30 - type: Transform -- uid: 13748 - type: AsteroidRock - components: - - pos: -76.5,-48.5 - parent: 30 - type: Transform -- uid: 13749 - type: AirlockMaintLocked - components: - - pos: 38.5,27.5 - parent: 30 - type: Transform -- uid: 13750 - type: AirlockMaintLocked - components: - - pos: 43.5,26.5 - parent: 30 - type: Transform -- uid: 13751 - type: BlastDoor - components: - - pos: 48.5,25.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15985 - type: SignalReceiver -- uid: 13752 - type: GasPipeBend - components: - - pos: 31.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13753 - type: GasPipeTJunction - components: - - pos: 31.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13754 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13755 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13756 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13757 - type: GasPipeTJunction - components: - - pos: 35.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13758 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13759 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13760 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13761 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13762 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13763 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13764 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13765 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 43.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13766 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13767 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 31.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13768 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 31.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13769 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13770 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13771 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13772 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 35.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13773 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13774 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13775 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13776 - type: GasPipeTJunction - components: - - pos: 39.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13777 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13778 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13779 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13780 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13781 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13782 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 45.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13783 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 45.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13784 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 30.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13785 - type: GasPipeStraight - components: - - pos: 30.5,39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13786 - type: GasPipeStraight - components: - - pos: 30.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13787 - type: GasPipeStraight - components: - - pos: 30.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13788 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 30.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13789 - type: GasVentPump - components: - - pos: 30.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13790 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 30.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13791 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 29.5,35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13792 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13793 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13794 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,38.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13795 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13796 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13797 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,41.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13798 - type: GasVentScrubber - components: - - pos: 29.5,42.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13799 - type: GasVentScrubber - components: - - pos: 30.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13800 - type: DisposalPipe - components: - - pos: 12.5,4.5 - parent: 30 - type: Transform -- uid: 13801 - type: DisposalPipe - components: - - pos: 12.5,5.5 - parent: 30 - type: Transform -- uid: 13802 - type: DisposalPipe - components: - - pos: 12.5,6.5 - parent: 30 - type: Transform -- uid: 13803 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 12.5,7.5 - parent: 30 - type: Transform -- uid: 13804 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,7.5 - parent: 30 - type: Transform -- uid: 13805 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,7.5 - parent: 30 - type: Transform -- uid: 13806 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,7.5 - parent: 30 - type: Transform -- uid: 13807 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,7.5 - parent: 30 - type: Transform -- uid: 13808 - type: DisposalBend - components: - - pos: 17.5,7.5 - parent: 30 - type: Transform -- uid: 13809 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 17.5,5.5 - parent: 30 - type: Transform -- uid: 13810 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 17.5,6.5 - parent: 30 - type: Transform -- uid: 13811 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,5.5 - parent: 30 - type: Transform -- uid: 13812 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,5.5 - parent: 30 - type: Transform -- uid: 13813 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,5.5 - parent: 30 - type: Transform -- uid: 13814 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,5.5 - parent: 30 - type: Transform -- uid: 13815 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,5.5 - parent: 30 - type: Transform -- uid: 13816 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,5.5 - parent: 30 - type: Transform -- uid: 13817 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,5.5 - parent: 30 - type: Transform -- uid: 13818 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,5.5 - parent: 30 - type: Transform -- uid: 13819 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,5.5 - parent: 30 - type: Transform -- uid: 13820 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,5.5 - parent: 30 - type: Transform -- uid: 13821 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,5.5 - parent: 30 - type: Transform -- uid: 13822 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 29.5,5.5 - parent: 30 - type: Transform -- uid: 13823 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,5.5 - parent: 30 - type: Transform -- uid: 13824 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,5.5 - parent: 30 - type: Transform -- uid: 13825 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,5.5 - parent: 30 - type: Transform -- uid: 13826 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,5.5 - parent: 30 - type: Transform -- uid: 13827 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,5.5 - parent: 30 - type: Transform -- uid: 13828 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,5.5 - parent: 30 - type: Transform -- uid: 13829 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,5.5 - parent: 30 - type: Transform -- uid: 13830 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,5.5 - parent: 30 - type: Transform -- uid: 13831 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,5.5 - parent: 30 - type: Transform -- uid: 13832 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,5.5 - parent: 30 - type: Transform -- uid: 13833 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 40.5,5.5 - parent: 30 - type: Transform -- uid: 13834 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 41.5,5.5 - parent: 30 - type: Transform -- uid: 13835 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 42.5,5.5 - parent: 30 - type: Transform -- uid: 13836 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 42.5,6.5 - parent: 30 - type: Transform -- uid: 13837 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 42.5,7.5 - parent: 30 - type: Transform -- uid: 13838 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 42.5,8.5 - parent: 30 - type: Transform -- uid: 13839 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 42.5,9.5 - parent: 30 - type: Transform -- uid: 13840 - type: DisposalBend - components: - - pos: 43.5,16.5 - parent: 30 - type: Transform -- uid: 13841 - type: DisposalPipe - components: - - pos: 43.5,14.5 - parent: 30 - type: Transform -- uid: 13842 - type: CableHV - components: - - pos: 43.5,14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13843 - type: CableHV - components: - - pos: 42.5,10.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13844 - type: CableHV - components: - - pos: 43.5,12.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13845 - type: CableApcExtension - components: - - pos: 43.5,11.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13846 - type: CableApcExtension - components: - - pos: 41.5,10.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13847 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 42.5,17.5 - parent: 30 - type: Transform -- uid: 13848 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 42.5,18.5 - parent: 30 - type: Transform -- uid: 13849 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 43.5,19.5 - parent: 30 - type: Transform -- uid: 13850 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 44.5,19.5 - parent: 30 - type: Transform -- uid: 13851 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 45.5,19.5 - parent: 30 - type: Transform -- uid: 13852 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 46.5,19.5 - parent: 30 - type: Transform -- uid: 13853 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 47.5,19.5 - parent: 30 - type: Transform -- uid: 13854 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 48.5,19.5 - parent: 30 - type: Transform -- uid: 13855 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 49.5,19.5 - parent: 30 - type: Transform -- uid: 13856 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 50.5,19.5 - parent: 30 - type: Transform -- uid: 13857 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 51.5,19.5 - parent: 30 - type: Transform -- uid: 13858 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 42.5,19.5 - parent: 30 - type: Transform -- uid: 13859 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 19.5,0.5 - parent: 30 - type: Transform -- uid: 13860 - type: WallSolid - components: - - pos: -43.5,-15.5 - parent: 30 - type: Transform -- uid: 13861 - type: PoweredlightSodium - components: - - pos: 36.5,-16.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13862 - type: DisposalBend - components: - - pos: 20.5,0.5 - parent: 30 - type: Transform -- uid: 13863 - type: DisposalPipe - components: - - pos: 20.5,-0.5 - parent: 30 - type: Transform -- uid: 13864 - type: DisposalPipe - components: - - pos: 20.5,-1.5 - parent: 30 - type: Transform -- uid: 13865 - type: DisposalPipe - components: - - pos: 20.5,-2.5 - parent: 30 - type: Transform -- uid: 13866 - type: DisposalPipe - components: - - pos: 20.5,-3.5 - parent: 30 - type: Transform -- uid: 13867 - type: DisposalPipe - components: - - pos: 20.5,-4.5 - parent: 30 - type: Transform -- uid: 13868 - type: DisposalPipe - components: - - pos: 20.5,-5.5 - parent: 30 - type: Transform -- uid: 13869 - type: CableApcExtension - components: - - pos: 24.5,-10.5 - parent: 30 - type: Transform -- uid: 13870 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-6.5 - parent: 30 - type: Transform -- uid: 13871 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-6.5 - parent: 30 - type: Transform -- uid: 13872 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-6.5 - parent: 30 - type: Transform -- uid: 13873 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-6.5 - parent: 30 - type: Transform -- uid: 13874 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-6.5 - parent: 30 - type: Transform -- uid: 13875 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-6.5 - parent: 30 - type: Transform -- uid: 13876 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 30 - type: Transform -- uid: 13877 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 30 - type: Transform -- uid: 13878 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-6.5 - parent: 30 - type: Transform -- uid: 13879 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 12.5,-6.5 - parent: 30 - type: Transform -- uid: 13880 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-5.5 - parent: 30 - type: Transform -- uid: 13881 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-4.5 - parent: 30 - type: Transform -- uid: 13882 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-3.5 - parent: 30 - type: Transform -- uid: 13883 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-2.5 - parent: 30 - type: Transform -- uid: 13884 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-1.5 - parent: 30 - type: Transform -- uid: 13885 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-0.5 - parent: 30 - type: Transform -- uid: 13886 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,0.5 - parent: 30 - type: Transform -- uid: 13887 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,1.5 - parent: 30 - type: Transform -- uid: 13888 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: 12.5,2.5 - parent: 30 - type: Transform -- uid: 13889 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,3.5 - parent: 30 - type: Transform -- uid: 13890 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 30 - type: Transform -- uid: 13891 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-8.5 - parent: 30 - type: Transform -- uid: 13892 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 30 - type: Transform -- uid: 13893 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-10.5 - parent: 30 - type: Transform -- uid: 13894 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-11.5 - parent: 30 - type: Transform -- uid: 13895 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-12.5 - parent: 30 - type: Transform -- uid: 13896 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-13.5 - parent: 30 - type: Transform -- uid: 13897 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-14.5 - parent: 30 - type: Transform -- uid: 13898 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 30 - type: Transform -- uid: 13899 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-16.5 - parent: 30 - type: Transform -- uid: 13900 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,-17.5 - parent: 30 - type: Transform -- uid: 13901 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 12.5,-18.5 - parent: 30 - type: Transform -- uid: 13902 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-18.5 - parent: 30 - type: Transform -- uid: 13903 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-18.5 - parent: 30 - type: Transform -- uid: 13904 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-19.5 - parent: 30 - type: Transform -- uid: 13905 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 - parent: 30 - type: Transform -- uid: 13906 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 30 - type: Transform -- uid: 13907 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 30 - type: Transform -- uid: 13908 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-19.5 - parent: 30 - type: Transform -- uid: 13909 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-19.5 - parent: 30 - type: Transform -- uid: 13910 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-19.5 - parent: 30 - type: Transform -- uid: 13911 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-29.5 - parent: 30 - type: Transform -- uid: 13912 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 6.5,-29.5 - parent: 30 - type: Transform -- uid: 13913 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-28.5 - parent: 30 - type: Transform -- uid: 13914 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-27.5 - parent: 30 - type: Transform -- uid: 13915 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-26.5 - parent: 30 - type: Transform -- uid: 13916 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-25.5 - parent: 30 - type: Transform -- uid: 13917 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-24.5 - parent: 30 - type: Transform -- uid: 13918 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-23.5 - parent: 30 - type: Transform -- uid: 13919 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-22.5 - parent: 30 - type: Transform -- uid: 13920 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-21.5 - parent: 30 - type: Transform -- uid: 13921 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-20.5 - parent: 30 - type: Transform -- uid: 13922 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-19.5 - parent: 30 - type: Transform -- uid: 13923 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-19.5 - parent: 30 - type: Transform -- uid: 13924 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-19.5 - parent: 30 - type: Transform -- uid: 13925 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-19.5 - parent: 30 - type: Transform -- uid: 13926 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-19.5 - parent: 30 - type: Transform -- uid: 13927 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-19.5 - parent: 30 - type: Transform -- uid: 13928 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-19.5 - parent: 30 - type: Transform -- uid: 13929 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-19.5 - parent: 30 - type: Transform -- uid: 13930 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-19.5 - parent: 30 - type: Transform -- uid: 13931 - type: DisposalPipe - components: - - pos: -2.5,-20.5 - parent: 30 - type: Transform -- uid: 13932 - type: DisposalPipe - components: - - pos: -2.5,-21.5 - parent: 30 - type: Transform -- uid: 13933 - type: DisposalPipe - components: - - pos: -2.5,-22.5 - parent: 30 - type: Transform -- uid: 13934 - type: DisposalPipe - components: - - pos: -2.5,-23.5 - parent: 30 - type: Transform -- uid: 13935 - type: DisposalPipe - components: - - pos: -2.5,-24.5 - parent: 30 - type: Transform -- uid: 13936 - type: DisposalPipe - components: - - pos: -2.5,-25.5 - parent: 30 - type: Transform -- uid: 13937 - type: DisposalPipe - components: - - pos: -2.5,-26.5 - parent: 30 - type: Transform -- uid: 13938 - type: DisposalPipe - components: - - pos: -2.5,-27.5 - parent: 30 - type: Transform -- uid: 13939 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: -2.5,-28.5 - parent: 30 - type: Transform -- uid: 13940 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -2.5,-29.5 - parent: 30 - type: Transform -- uid: 13941 - type: DisposalBend - components: - - pos: 1.5,-29.5 - parent: 30 - type: Transform -- uid: 13942 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-29.5 - parent: 30 - type: Transform -- uid: 13943 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-29.5 - parent: 30 - type: Transform -- uid: 13944 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-29.5 - parent: 30 - type: Transform -- uid: 13945 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,-30.5 - parent: 30 - type: Transform -- uid: 13946 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,-31.5 - parent: 30 - type: Transform -- uid: 13947 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,-32.5 - parent: 30 - type: Transform -- uid: 13948 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,-33.5 - parent: 30 - type: Transform -- uid: 13949 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,-34.5 - parent: 30 - type: Transform -- uid: 13950 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,-35.5 - parent: 30 - type: Transform -- uid: 13951 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,-36.5 - parent: 30 - type: Transform -- uid: 13952 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,-37.5 - parent: 30 - type: Transform -- uid: 13953 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,-39.5 - parent: 30 - type: Transform -- uid: 13954 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,-38.5 - parent: 30 - type: Transform -- uid: 13955 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-40.5 - parent: 30 - type: Transform -- uid: 13956 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-40.5 - parent: 30 - type: Transform -- uid: 13957 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 1.5,-40.5 - parent: 30 - type: Transform -- uid: 13958 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 - parent: 30 - type: Transform -- uid: 13959 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 0.5,-41.5 - parent: 30 - type: Transform -- uid: 13960 - type: DisposalBend - components: - - pos: 0.5,-40.5 - parent: 30 - type: Transform -- uid: 13961 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-40.5 - parent: 30 - type: Transform -- uid: 13962 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-40.5 - parent: 30 - type: Transform -- uid: 13963 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-40.5 - parent: 30 - type: Transform -- uid: 13964 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-40.5 - parent: 30 - type: Transform -- uid: 13965 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-40.5 - parent: 30 - type: Transform -- uid: 13966 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-40.5 - parent: 30 - type: Transform -- uid: 13967 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-40.5 - parent: 30 - type: Transform -- uid: 13968 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-40.5 - parent: 30 - type: Transform -- uid: 13969 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-40.5 - parent: 30 - type: Transform -- uid: 13970 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-40.5 - parent: 30 - type: Transform -- uid: 13971 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-40.5 - parent: 30 - type: Transform -- uid: 13972 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-40.5 - parent: 30 - type: Transform -- uid: 13973 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-40.5 - parent: 30 - type: Transform -- uid: 13974 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-40.5 - parent: 30 - type: Transform -- uid: 13975 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-40.5 - parent: 30 - type: Transform -- uid: 13976 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-40.5 - parent: 30 - type: Transform -- uid: 13977 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-40.5 - parent: 30 - type: Transform -- uid: 13978 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-42.5 - parent: 30 - type: Transform -- uid: 13979 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-42.5 - parent: 30 - type: Transform -- uid: 13980 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -21.5,-44.5 - parent: 30 - type: Transform -- uid: 13981 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -21.5,-43.5 - parent: 30 - type: Transform -- uid: 13982 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-42.5 - parent: 30 - type: Transform -- uid: 13983 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-42.5 - parent: 30 - type: Transform -- uid: 13984 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-42.5 - parent: 30 - type: Transform -- uid: 13985 - type: DisposalPipe - components: - - pos: -17.5,-41.5 - parent: 30 - type: Transform -- uid: 13986 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 6.5,6.5 - parent: 30 - type: Transform -- uid: 13987 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 4.5,12.5 - parent: 30 - type: Transform -- uid: 13988 - type: DisposalTrunk - components: - - pos: 0.5,15.5 - parent: 30 - type: Transform -- uid: 13989 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -13.5,5.5 - parent: 30 - type: Transform -- uid: 13990 - type: DisposalTrunk - components: - - pos: -25.5,13.5 - parent: 30 - type: Transform -- uid: 13991 - type: DisposalBend - components: - - pos: 4.5,13.5 - parent: 30 - type: Transform -- uid: 13992 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 2.5,13.5 - parent: 30 - type: Transform -- uid: 13993 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,13.5 - parent: 30 - type: Transform -- uid: 13994 - type: DisposalPipe - components: - - pos: 2.5,12.5 - parent: 30 - type: Transform -- uid: 13995 - type: DisposalPipe - components: - - pos: 2.5,11.5 - parent: 30 - type: Transform -- uid: 13996 - type: DisposalPipe - components: - - pos: 2.5,10.5 - parent: 30 - type: Transform -- uid: 13997 - type: DisposalPipe - components: - - pos: 2.5,9.5 - parent: 30 - type: Transform -- uid: 13998 - type: DisposalPipe - components: - - pos: 2.5,8.5 - parent: 30 - type: Transform -- uid: 13999 - type: DisposalPipe - components: - - pos: 0.5,14.5 - parent: 30 - type: Transform -- uid: 14000 - type: DisposalPipe - components: - - pos: 0.5,13.5 - parent: 30 - type: Transform -- uid: 14001 - type: DisposalPipe - components: - - pos: 0.5,12.5 - parent: 30 - type: Transform -- uid: 14002 - type: DisposalPipe - components: - - pos: 0.5,11.5 - parent: 30 - type: Transform -- uid: 14003 - type: DisposalPipe - components: - - pos: 0.5,10.5 - parent: 30 - type: Transform -- uid: 14004 - type: DisposalPipe - components: - - pos: 0.5,9.5 - parent: 30 - type: Transform -- uid: 14005 - type: DisposalPipe - components: - - pos: 0.5,8.5 - parent: 30 - type: Transform -- uid: 14006 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 5.5,6.5 - parent: 30 - type: Transform -- uid: 14007 - type: DisposalBend - components: - - pos: 5.5,7.5 - parent: 30 - type: Transform -- uid: 14008 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,7.5 - parent: 30 - type: Transform -- uid: 14009 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,7.5 - parent: 30 - type: Transform -- uid: 14010 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,7.5 - parent: 30 - type: Transform -- uid: 14011 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,7.5 - parent: 30 - type: Transform -- uid: 14012 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,7.5 - parent: 30 - type: Transform -- uid: 14013 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -2.5,6.5 - parent: 30 - type: Transform -- uid: 14014 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 30 - type: Transform -- uid: 14015 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -2.5,4.5 - parent: 30 - type: Transform -- uid: 14016 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -2.5,3.5 - parent: 30 - type: Transform -- uid: 14017 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -2.5,7.5 - parent: 30 - type: Transform -- uid: 14018 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,7.5 - parent: 30 - type: Transform -- uid: 14019 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 2.5,7.5 - parent: 30 - type: Transform -- uid: 14020 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 30 - type: Transform -- uid: 14021 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,2.5 - parent: 30 - type: Transform -- uid: 14022 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 30 - type: Transform -- uid: 14023 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: 9.5,2.5 - parent: 30 - type: Transform -- uid: 14024 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,2.5 - parent: 30 - type: Transform -- uid: 14025 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,2.5 - parent: 30 - type: Transform -- uid: 14026 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,2.5 - parent: 30 - type: Transform -- uid: 14027 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: 5.5,2.5 - parent: 30 - type: Transform -- uid: 14028 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,2.5 - parent: 30 - type: Transform -- uid: 14029 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,2.5 - parent: 30 - type: Transform -- uid: 14030 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,2.5 - parent: 30 - type: Transform -- uid: 14031 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,2.5 - parent: 30 - type: Transform -- uid: 14032 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,2.5 - parent: 30 - type: Transform -- uid: 14033 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,2.5 - parent: 30 - type: Transform -- uid: 14034 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,2.5 - parent: 30 - type: Transform -- uid: 14035 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,6.5 - parent: 30 - type: Transform -- uid: 14036 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,6.5 - parent: 30 - type: Transform -- uid: 14037 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,6.5 - parent: 30 - type: Transform -- uid: 14038 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,6.5 - parent: 30 - type: Transform -- uid: 14039 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,6.5 - parent: 30 - type: Transform -- uid: 14040 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,6.5 - parent: 30 - type: Transform -- uid: 14041 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -20.5,6.5 - parent: 30 - type: Transform -- uid: 14042 - type: DisposalBend - components: - - pos: -21.5,6.5 - parent: 30 - type: Transform -- uid: 14043 - type: DisposalPipe - components: - - pos: -25.5,12.5 - parent: 30 - type: Transform -- uid: 14044 - type: DisposalPipe - components: - - pos: -25.5,11.5 - parent: 30 - type: Transform -- uid: 14045 - type: DisposalPipe - components: - - pos: -25.5,10.5 - parent: 30 - type: Transform -- uid: 14046 - type: DisposalPipe - components: - - pos: -25.5,9.5 - parent: 30 - type: Transform -- uid: 14047 - type: DisposalPipe - components: - - pos: -25.5,8.5 - parent: 30 - type: Transform -- uid: 14048 - type: DisposalPipe - components: - - pos: -25.5,7.5 - parent: 30 - type: Transform -- uid: 14049 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,6.5 - parent: 30 - type: Transform -- uid: 14050 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,6.5 - parent: 30 - type: Transform -- uid: 14051 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -25.5,6.5 - parent: 30 - type: Transform -- uid: 14052 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,6.5 - parent: 30 - type: Transform -- uid: 14053 - type: DisposalJunction - components: - - pos: -20.5,5.5 - parent: 30 - type: Transform -- uid: 14054 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -21.5,5.5 - parent: 30 - type: Transform -- uid: 14055 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -20.5,2.5 - parent: 30 - type: Transform -- uid: 14056 - type: DisposalPipe - components: - - pos: -20.5,3.5 - parent: 30 - type: Transform -- uid: 14057 - type: DisposalPipe - components: - - pos: -20.5,4.5 - parent: 30 - type: Transform -- uid: 14058 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,2.5 - parent: 30 - type: Transform -- uid: 14059 - type: DisposalBend - components: - - pos: -13.5,6.5 - parent: 30 - type: Transform -- uid: 14060 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,2.5 - parent: 30 - type: Transform -- uid: 14061 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,2.5 - parent: 30 - type: Transform -- uid: 14062 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,2.5 - parent: 30 - type: Transform -- uid: 14063 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,2.5 - parent: 30 - type: Transform -- uid: 14064 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,2.5 - parent: 30 - type: Transform -- uid: 14065 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,2.5 - parent: 30 - type: Transform -- uid: 14066 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,2.5 - parent: 30 - type: Transform -- uid: 14067 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,2.5 - parent: 30 - type: Transform -- uid: 14068 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,2.5 - parent: 30 - type: Transform -- uid: 14069 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 30 - type: Transform -- uid: 14070 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,2.5 - parent: 30 - type: Transform -- uid: 14071 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,2.5 - parent: 30 - type: Transform -- uid: 14072 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,2.5 - parent: 30 - type: Transform -- uid: 14073 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,2.5 - parent: 30 - type: Transform -- uid: 14074 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,2.5 - parent: 30 - type: Transform -- uid: 14075 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,2.5 - parent: 30 - type: Transform -- uid: 14076 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 30 - type: Transform -- uid: 14077 - type: DisposalYJunction - components: - - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 30 - type: Transform -- uid: 14078 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,0.5 - parent: 30 - type: Transform -- uid: 14079 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 30 - type: Transform -- uid: 14080 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,2.5 - parent: 30 - type: Transform -- uid: 14081 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,2.5 - parent: 30 - type: Transform -- uid: 14082 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,2.5 - parent: 30 - type: Transform -- uid: 14083 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,2.5 - parent: 30 - type: Transform -- uid: 14084 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,2.5 - parent: 30 - type: Transform -- uid: 14085 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -26.5,2.5 - parent: 30 - type: Transform -- uid: 14086 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,2.5 - parent: 30 - type: Transform -- uid: 14087 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,2.5 - parent: 30 - type: Transform -- uid: 14088 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,2.5 - parent: 30 - type: Transform -- uid: 14089 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,2.5 - parent: 30 - type: Transform -- uid: 14090 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -31.5,2.5 - parent: 30 - type: Transform -- uid: 14091 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -32.5,2.5 - parent: 30 - type: Transform -- uid: 14092 - type: DisposalTrunk - components: - - pos: -33.5,4.5 - parent: 30 - type: Transform -- uid: 14093 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -33.5,2.5 - parent: 30 - type: Transform -- uid: 14094 - type: DisposalPipe - components: - - pos: -33.5,3.5 - parent: 30 - type: Transform -- uid: 14095 - type: DisposalPipe - components: - - pos: -32.5,3.5 - parent: 30 - type: Transform -- uid: 14096 - type: DisposalPipe - components: - - pos: -32.5,4.5 - parent: 30 - type: Transform -- uid: 14097 - type: DisposalPipe - components: - - pos: -32.5,5.5 - parent: 30 - type: Transform -- uid: 14098 - type: DisposalPipe - components: - - pos: -32.5,6.5 - parent: 30 - type: Transform -- uid: 14099 - type: DisposalPipe - components: - - pos: -32.5,7.5 - parent: 30 - type: Transform -- uid: 14100 - type: DisposalPipe - components: - - pos: -32.5,8.5 - parent: 30 - type: Transform -- uid: 14101 - type: DisposalPipe - components: - - pos: -32.5,9.5 - parent: 30 - type: Transform -- uid: 14102 - type: DisposalTrunk - components: - - pos: -32.5,10.5 - parent: 30 - type: Transform -- uid: 14103 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,2.5 - parent: 30 - type: Transform -- uid: 14104 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -35.5,2.5 - parent: 30 - type: Transform -- uid: 14105 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -35.5,3.5 - parent: 30 - type: Transform -- uid: 14106 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -35.5,4.5 - parent: 30 - type: Transform -- uid: 14107 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -35.5,5.5 - parent: 30 - type: Transform -- uid: 14108 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -35.5,6.5 - parent: 30 - type: Transform -- uid: 14109 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -35.5,7.5 - parent: 30 - type: Transform -- uid: 14110 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -35.5,8.5 - parent: 30 - type: Transform -- uid: 14111 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -35.5,9.5 - parent: 30 - type: Transform -- uid: 14112 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -35.5,10.5 - parent: 30 - type: Transform -- uid: 14113 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -35.5,11.5 - parent: 30 - type: Transform -- uid: 14114 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -35.5,12.5 - parent: 30 - type: Transform -- uid: 14115 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -35.5,13.5 - parent: 30 - type: Transform -- uid: 14116 - type: DisposalTrunk - components: - - pos: -57.5,25.5 - parent: 30 - type: Transform -- uid: 14117 - type: DisposalPipe - components: - - pos: -57.5,24.5 - parent: 30 - type: Transform -- uid: 14118 - type: DisposalPipe - components: - - pos: -57.5,23.5 - parent: 30 - type: Transform -- uid: 14119 - type: DisposalPipe - components: - - pos: -57.5,22.5 - parent: 30 - type: Transform -- uid: 14120 - type: DisposalPipe - components: - - pos: -57.5,21.5 - parent: 30 - type: Transform -- uid: 14121 - type: DisposalPipe - components: - - pos: -57.5,20.5 - parent: 30 - type: Transform -- uid: 14122 - type: DisposalPipe - components: - - pos: -57.5,19.5 - parent: 30 - type: Transform -- uid: 14123 - type: DisposalPipe - components: - - pos: -57.5,18.5 - parent: 30 - type: Transform -- uid: 14124 - type: DisposalPipe - components: - - pos: -57.5,17.5 - parent: 30 - type: Transform -- uid: 14125 - type: DisposalPipe - components: - - pos: -57.5,16.5 - parent: 30 - type: Transform -- uid: 14126 - type: DisposalPipe - components: - - pos: -57.5,15.5 - parent: 30 - type: Transform -- uid: 14127 - type: DisposalPipe - components: - - pos: -57.5,14.5 - parent: 30 - type: Transform -- uid: 14128 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -57.5,13.5 - parent: 30 - type: Transform -- uid: 14129 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -56.5,13.5 - parent: 30 - type: Transform -- uid: 14130 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -55.5,13.5 - parent: 30 - type: Transform -- uid: 14131 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -54.5,13.5 - parent: 30 - type: Transform -- uid: 14132 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -53.5,13.5 - parent: 30 - type: Transform -- uid: 14133 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -52.5,13.5 - parent: 30 - type: Transform -- uid: 14134 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -51.5,13.5 - parent: 30 - type: Transform -- uid: 14135 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -50.5,13.5 - parent: 30 - type: Transform -- uid: 14136 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -49.5,13.5 - parent: 30 - type: Transform -- uid: 14137 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -49.5,14.5 - parent: 30 - type: Transform -- uid: 14138 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -48.5,14.5 - parent: 30 - type: Transform -- uid: 14139 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -47.5,14.5 - parent: 30 - type: Transform -- uid: 14140 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -46.5,14.5 - parent: 30 - type: Transform -- uid: 14141 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -45.5,14.5 - parent: 30 - type: Transform -- uid: 14142 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -44.5,14.5 - parent: 30 - type: Transform -- uid: 14143 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -43.5,14.5 - parent: 30 - type: Transform -- uid: 14144 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -42.5,14.5 - parent: 30 - type: Transform -- uid: 14145 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -41.5,14.5 - parent: 30 - type: Transform -- uid: 14146 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -40.5,14.5 - parent: 30 - type: Transform -- uid: 14147 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -39.5,14.5 - parent: 30 - type: Transform -- uid: 14148 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -38.5,14.5 - parent: 30 - type: Transform -- uid: 14149 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -37.5,14.5 - parent: 30 - type: Transform -- uid: 14150 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -36.5,14.5 - parent: 30 - type: Transform -- uid: 14151 - type: DisposalJunction - components: - - pos: -35.5,14.5 - parent: 30 - type: Transform -- uid: 14152 - type: DisposalPipe - components: - - pos: -35.5,15.5 - parent: 30 - type: Transform -- uid: 14153 - type: DisposalPipe - components: - - pos: -35.5,16.5 - parent: 30 - type: Transform -- uid: 14154 - type: DisposalPipe - components: - - pos: -35.5,17.5 - parent: 30 - type: Transform -- uid: 14155 - type: DisposalPipe - components: - - pos: -35.5,18.5 - parent: 30 - type: Transform -- uid: 14156 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,19.5 - parent: 30 - type: Transform -- uid: 14157 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,19.5 - parent: 30 - type: Transform -- uid: 14158 - type: DisposalJunctionFlipped - components: - - pos: -35.5,19.5 - parent: 30 - type: Transform -- uid: 14159 - type: DisposalPipe - components: - - pos: -35.5,20.5 - parent: 30 - type: Transform -- uid: 14160 - type: DisposalPipe - components: - - pos: -35.5,21.5 - parent: 30 - type: Transform -- uid: 14161 - type: DisposalPipe - components: - - pos: -35.5,22.5 - parent: 30 - type: Transform -- uid: 14162 - type: DisposalPipe - components: - - pos: -35.5,23.5 - parent: 30 - type: Transform -- uid: 14163 - type: DisposalPipe - components: - - pos: -35.5,24.5 - parent: 30 - type: Transform -- uid: 14164 - type: DisposalPipe - components: - - pos: -35.5,25.5 - parent: 30 - type: Transform -- uid: 14165 - type: DisposalJunctionFlipped - components: - - pos: -35.5,26.5 - parent: 30 - type: Transform -- uid: 14166 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -24.5,29.5 - parent: 30 - type: Transform -- uid: 14167 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -25.5,29.5 - parent: 30 - type: Transform -- uid: 14168 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -25.5,26.5 - parent: 30 - type: Transform -- uid: 14169 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,28.5 - parent: 30 - type: Transform -- uid: 14170 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,27.5 - parent: 30 - type: Transform -- uid: 14171 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -26.5,26.5 - parent: 30 - type: Transform -- uid: 14172 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,26.5 - parent: 30 - type: Transform -- uid: 14173 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,26.5 - parent: 30 - type: Transform -- uid: 14174 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,26.5 - parent: 30 - type: Transform -- uid: 14175 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,26.5 - parent: 30 - type: Transform -- uid: 14176 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -31.5,26.5 - parent: 30 - type: Transform -- uid: 14177 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -32.5,26.5 - parent: 30 - type: Transform -- uid: 14178 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -33.5,26.5 - parent: 30 - type: Transform -- uid: 14179 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -34.5,26.5 - parent: 30 - type: Transform -- uid: 14180 - type: DisposalPipe - components: - - pos: -35.5,27.5 - parent: 30 - type: Transform -- uid: 14181 - type: DisposalPipe - components: - - pos: -35.5,28.5 - parent: 30 - type: Transform -- uid: 14182 - type: DisposalPipe - components: - - pos: -35.5,29.5 - parent: 30 - type: Transform -- uid: 14183 - type: DisposalPipe - components: - - pos: -35.5,30.5 - parent: 30 - type: Transform -- uid: 14184 - type: DisposalPipe - components: - - pos: -35.5,31.5 - parent: 30 - type: Transform -- uid: 14185 - type: DisposalPipe - components: - - pos: -35.5,32.5 - parent: 30 - type: Transform -- uid: 14186 - type: DisposalPipe - components: - - pos: -35.5,33.5 - parent: 30 - type: Transform -- uid: 14187 - type: DisposalPipe - components: - - pos: -35.5,34.5 - parent: 30 - type: Transform -- uid: 14188 - type: DisposalPipe - components: - - pos: -35.5,35.5 - parent: 30 - type: Transform -- uid: 14189 - type: DisposalJunction - components: - - pos: -35.5,36.5 - parent: 30 - type: Transform -- uid: 14190 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -36.5,36.5 - parent: 30 - type: Transform -- uid: 14191 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -37.5,36.5 - parent: 30 - type: Transform -- uid: 14192 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -38.5,36.5 - parent: 30 - type: Transform -- uid: 14193 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -39.5,36.5 - parent: 30 - type: Transform -- uid: 14194 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -40.5,36.5 - parent: 30 - type: Transform -- uid: 14195 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -41.5,36.5 - parent: 30 - type: Transform -- uid: 14196 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -42.5,36.5 - parent: 30 - type: Transform -- uid: 14197 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -44.5,36.5 - parent: 30 - type: Transform -- uid: 14198 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -43.5,36.5 - parent: 30 - type: Transform -- uid: 14199 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -45.5,36.5 - parent: 30 - type: Transform -- uid: 14200 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -46.5,36.5 - parent: 30 - type: Transform -- uid: 14201 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -47.5,36.5 - parent: 30 - type: Transform -- uid: 14202 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -48.5,36.5 - parent: 30 - type: Transform -- uid: 14203 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -49.5,36.5 - parent: 30 - type: Transform -- uid: 14204 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -49.5,31.5 - parent: 30 - type: Transform -- uid: 14205 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -48.5,31.5 - parent: 30 - type: Transform -- uid: 14206 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -49.5,32.5 - parent: 30 - type: Transform -- uid: 14207 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -49.5,33.5 - parent: 30 - type: Transform -- uid: 14208 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -49.5,34.5 - parent: 30 - type: Transform -- uid: 14209 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -49.5,35.5 - parent: 30 - type: Transform -- uid: 14210 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -44.5,32.5 - parent: 30 - type: Transform -- uid: 14211 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -43.5,32.5 - parent: 30 - type: Transform -- uid: 14212 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -42.5,32.5 - parent: 30 - type: Transform -- uid: 14213 - type: DisposalPipe - components: - - pos: -41.5,33.5 - parent: 30 - type: Transform -- uid: 14214 - type: DisposalPipe - components: - - pos: -41.5,34.5 - parent: 30 - type: Transform -- uid: 14215 - type: DisposalPipe - components: - - pos: -41.5,35.5 - parent: 30 - type: Transform -- uid: 14216 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -41.5,32.5 - parent: 30 - type: Transform -- uid: 14217 - type: DisposalUnit - components: - - pos: -29.5,37.5 - parent: 30 - type: Transform -- uid: 14218 - type: DisposalPipe - components: - - pos: -35.5,38.5 - parent: 30 - type: Transform -- uid: 14219 - type: DisposalPipe - components: - - pos: -35.5,39.5 - parent: 30 - type: Transform -- uid: 14220 - type: DisposalPipe - components: - - pos: -35.5,40.5 - parent: 30 - type: Transform -- uid: 14221 - type: DisposalPipe - components: - - pos: -35.5,41.5 - parent: 30 - type: Transform -- uid: 14222 - type: DisposalPipe - components: - - pos: -35.5,42.5 - parent: 30 - type: Transform -- uid: 14223 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -35.5,43.5 - parent: 30 - type: Transform -- uid: 14224 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -32.5,43.5 - parent: 30 - type: Transform -- uid: 14225 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -32.5,50.5 - parent: 30 - type: Transform -- uid: 14226 - type: DisposalJunction - components: - - pos: -32.5,46.5 - parent: 30 - type: Transform -- uid: 14227 - type: DisposalTrunk - components: - - pos: -24.5,53.5 - parent: 30 - type: Transform -- uid: 14228 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -24.5,50.5 - parent: 30 - type: Transform -- uid: 14229 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -34.5,43.5 - parent: 30 - type: Transform -- uid: 14230 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -33.5,43.5 - parent: 30 - type: Transform -- uid: 14231 - type: DisposalPipe - components: - - pos: -32.5,44.5 - parent: 30 - type: Transform -- uid: 14232 - type: DisposalPipe - components: - - pos: -32.5,45.5 - parent: 30 - type: Transform -- uid: 14233 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -35.5,46.5 - parent: 30 - type: Transform -- uid: 14234 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -34.5,46.5 - parent: 30 - type: Transform -- uid: 14235 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -33.5,46.5 - parent: 30 - type: Transform -- uid: 14236 - type: DisposalJunctionFlipped - components: - - pos: -32.5,47.5 - parent: 30 - type: Transform -- uid: 14237 - type: DisposalPipe - components: - - pos: -32.5,48.5 - parent: 30 - type: Transform -- uid: 14238 - type: DisposalPipe - components: - - pos: -32.5,49.5 - parent: 30 - type: Transform -- uid: 14239 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -31.5,50.5 - parent: 30 - type: Transform -- uid: 14240 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,50.5 - parent: 30 - type: Transform -- uid: 14241 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,50.5 - parent: 30 - type: Transform -- uid: 14242 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,50.5 - parent: 30 - type: Transform -- uid: 14243 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,50.5 - parent: 30 - type: Transform -- uid: 14244 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,50.5 - parent: 30 - type: Transform -- uid: 14245 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,50.5 - parent: 30 - type: Transform -- uid: 14246 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,51.5 - parent: 30 - type: Transform -- uid: 14247 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,52.5 - parent: 30 - type: Transform -- uid: 14248 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -1.5,31.5 - parent: 30 - type: Transform -- uid: 14249 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14250 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -12.5,38.5 - parent: 30 - type: Transform -- uid: 14251 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -10.5,32.5 - parent: 30 - type: Transform -- uid: 14252 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -10.5,33.5 - parent: 30 - type: Transform -- uid: 14253 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -10.5,34.5 - parent: 30 - type: Transform -- uid: 14254 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -10.5,35.5 - parent: 30 - type: Transform -- uid: 14255 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -10.5,36.5 - parent: 30 - type: Transform -- uid: 14256 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -10.5,37.5 - parent: 30 - type: Transform -- uid: 14257 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -10.5,38.5 - parent: 30 - type: Transform -- uid: 14258 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -10.5,39.5 - parent: 30 - type: Transform -- uid: 14259 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -12.5,39.5 - parent: 30 - type: Transform -- uid: 14260 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,39.5 - parent: 30 - type: Transform -- uid: 14261 - type: DisposalBend - components: - - pos: -1.5,32.5 - parent: 30 - type: Transform -- uid: 14262 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -3.5,32.5 - parent: 30 - type: Transform -- uid: 14263 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,32.5 - parent: 30 - type: Transform -- uid: 14264 - type: DisposalPipe - components: - - pos: -3.5,33.5 - parent: 30 - type: Transform -- uid: 14265 - type: DisposalPipe - components: - - pos: -3.5,34.5 - parent: 30 - type: Transform -- uid: 14266 - type: DisposalPipe - components: - - pos: -3.5,35.5 - parent: 30 - type: Transform -- uid: 14267 - type: DisposalPipe - components: - - pos: -3.5,36.5 - parent: 30 - type: Transform -- uid: 14268 - type: DisposalPipe - components: - - pos: -3.5,37.5 - parent: 30 - type: Transform -- uid: 14269 - type: DisposalPipe - components: - - pos: -3.5,38.5 - parent: 30 - type: Transform -- uid: 14270 - type: DisposalBend - components: - - pos: -3.5,39.5 - parent: 30 - type: Transform -- uid: 14271 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,39.5 - parent: 30 - type: Transform -- uid: 14272 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,39.5 - parent: 30 - type: Transform -- uid: 14273 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,39.5 - parent: 30 - type: Transform -- uid: 14274 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,39.5 - parent: 30 - type: Transform -- uid: 14275 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,39.5 - parent: 30 - type: Transform -- uid: 14276 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,39.5 - parent: 30 - type: Transform -- uid: 14277 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,39.5 - parent: 30 - type: Transform -- uid: 14278 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,39.5 - parent: 30 - type: Transform -- uid: 14279 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,39.5 - parent: 30 - type: Transform -- uid: 14280 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,39.5 - parent: 30 - type: Transform -- uid: 14281 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,39.5 - parent: 30 - type: Transform -- uid: 14282 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,39.5 - parent: 30 - type: Transform -- uid: 14283 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,39.5 - parent: 30 - type: Transform -- uid: 14284 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,39.5 - parent: 30 - type: Transform -- uid: 14285 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,39.5 - parent: 30 - type: Transform -- uid: 14286 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -22.5,39.5 - parent: 30 - type: Transform -- uid: 14287 - type: DisposalBend - components: - - pos: -22.5,46.5 - parent: 30 - type: Transform -- uid: 14288 - type: DisposalPipe - components: - - pos: -22.5,40.5 - parent: 30 - type: Transform -- uid: 14289 - type: DisposalPipe - components: - - pos: -22.5,41.5 - parent: 30 - type: Transform -- uid: 14290 - type: DisposalPipe - components: - - pos: -22.5,42.5 - parent: 30 - type: Transform -- uid: 14291 - type: DisposalPipe - components: - - pos: -22.5,43.5 - parent: 30 - type: Transform -- uid: 14292 - type: DisposalPipe - components: - - pos: -22.5,44.5 - parent: 30 - type: Transform -- uid: 14293 - type: DisposalPipe - components: - - pos: -22.5,45.5 - parent: 30 - type: Transform -- uid: 14294 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,46.5 - parent: 30 - type: Transform -- uid: 14295 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,46.5 - parent: 30 - type: Transform -- uid: 14296 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,46.5 - parent: 30 - type: Transform -- uid: 14297 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,46.5 - parent: 30 - type: Transform -- uid: 14298 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,46.5 - parent: 30 - type: Transform -- uid: 14299 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,46.5 - parent: 30 - type: Transform -- uid: 14300 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,46.5 - parent: 30 - type: Transform -- uid: 14301 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,46.5 - parent: 30 - type: Transform -- uid: 14302 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -31.5,46.5 - parent: 30 - type: Transform -- uid: 14303 - type: DisposalBend - components: - - pos: -31.5,47.5 - parent: 30 - type: Transform -- uid: 14304 - type: DisposalPipe - components: - - pos: 9.5,3.5 - parent: 30 - type: Transform -- uid: 14305 - type: DisposalPipe - components: - - pos: 9.5,4.5 - parent: 30 - type: Transform -- uid: 14306 - type: DisposalPipe - components: - - pos: 9.5,5.5 - parent: 30 - type: Transform -- uid: 14307 - type: DisposalPipe - components: - - pos: 9.5,6.5 - parent: 30 - type: Transform -- uid: 14308 - type: DisposalPipe - components: - - pos: 9.5,7.5 - parent: 30 - type: Transform -- uid: 14309 - type: DisposalPipe - components: - - pos: 9.5,8.5 - parent: 30 - type: Transform -- uid: 14310 - type: DisposalPipe - components: - - pos: 9.5,9.5 - parent: 30 - type: Transform -- uid: 14311 - type: DisposalPipe - components: - - pos: 9.5,10.5 - parent: 30 - type: Transform -- uid: 14312 - type: DisposalPipe - components: - - pos: 9.5,11.5 - parent: 30 - type: Transform -- uid: 14313 - type: DisposalPipe - components: - - pos: 9.5,12.5 - parent: 30 - type: Transform -- uid: 14314 - type: DisposalPipe - components: - - pos: 9.5,13.5 - parent: 30 - type: Transform -- uid: 14315 - type: DisposalPipe - components: - - pos: 9.5,14.5 - parent: 30 - type: Transform -- uid: 14316 - type: DisposalPipe - components: - - pos: 9.5,15.5 - parent: 30 - type: Transform -- uid: 14317 - type: DisposalJunctionFlipped - components: - - pos: 9.5,16.5 - parent: 30 - type: Transform -- uid: 14318 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,16.5 - parent: 30 - type: Transform -- uid: 14319 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 12.5,14.5 - parent: 30 - type: Transform -- uid: 14320 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 12.5,15.5 - parent: 30 - type: Transform -- uid: 14321 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,16.5 - parent: 30 - type: Transform -- uid: 14322 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 12.5,16.5 - parent: 30 - type: Transform -- uid: 14323 - type: DisposalBend - components: - - pos: 13.5,16.5 - parent: 30 - type: Transform -- uid: 14324 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 13.5,15.5 - parent: 30 - type: Transform -- uid: 14325 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,15.5 - parent: 30 - type: Transform -- uid: 14326 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,15.5 - parent: 30 - type: Transform -- uid: 14327 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,15.5 - parent: 30 - type: Transform -- uid: 14328 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,15.5 - parent: 30 - type: Transform -- uid: 14329 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,15.5 - parent: 30 - type: Transform -- uid: 14330 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,15.5 - parent: 30 - type: Transform -- uid: 14331 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,15.5 - parent: 30 - type: Transform -- uid: 14332 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 30 - type: Transform -- uid: 14333 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 22.5,15.5 - parent: 30 - type: Transform -- uid: 14334 - type: DisposalBend - components: - - pos: 23.5,15.5 - parent: 30 - type: Transform -- uid: 14335 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 23.5,14.5 - parent: 30 - type: Transform -- uid: 14336 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 22.5,14.5 - parent: 30 - type: Transform -- uid: 14338 - type: ReinforcedWindow - components: - - pos: 28.5,12.5 - parent: 30 - type: Transform -- uid: 14339 - type: ReinforcedWindow - components: - - pos: 26.5,12.5 - parent: 30 - type: Transform -- uid: 14340 - type: ShuttersNormalOpen - components: - - pos: 27.5,12.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12859 - type: SignalReceiver -- uid: 14341 - type: DisposalPipe - components: - - pos: 22.5,16.5 - parent: 30 - type: Transform -- uid: 14342 - type: DisposalPipe - components: - - pos: 22.5,17.5 - parent: 30 - type: Transform -- uid: 14343 - type: DisposalPipe - components: - - pos: 22.5,13.5 - parent: 30 - type: Transform -- uid: 14344 - type: DisposalPipe - components: - - pos: 22.5,12.5 - parent: 30 - type: Transform -- uid: 14345 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: 22.5,11.5 - parent: 30 - type: Transform -- uid: 14346 - type: DisposalPipe - components: - - pos: 22.5,10.5 - parent: 30 - type: Transform -- uid: 14347 - type: DisposalPipe - components: - - pos: 22.5,9.5 - parent: 30 - type: Transform -- uid: 14348 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 22.5,8.5 - parent: 30 - type: Transform -- uid: 14349 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,8.5 - parent: 30 - type: Transform -- uid: 14350 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,8.5 - parent: 30 - type: Transform -- uid: 14351 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,8.5 - parent: 30 - type: Transform -- uid: 14352 - type: ShuttersNormalOpen - components: - - pos: 28.5,12.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12859 - type: SignalReceiver -- uid: 14353 - type: SpawnPointResearchDirector - components: - - pos: 28.5,14.5 - parent: 30 - type: Transform -- uid: 14354 - type: ReinforcedWindow - components: - - pos: 27.5,12.5 - parent: 30 - type: Transform -- uid: 14355 - type: ShuttersNormalOpen - components: - - pos: 26.5,12.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12859 - type: SignalReceiver -- uid: 14356 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 12.5,12.5 - parent: 30 - type: Transform -- uid: 14357 - type: DisposalBend - components: - - pos: 13.5,12.5 - parent: 30 - type: Transform -- uid: 14358 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 13.5,11.5 - parent: 30 - type: Transform -- uid: 14359 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 30 - type: Transform -- uid: 14360 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,11.5 - parent: 30 - type: Transform -- uid: 14361 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,11.5 - parent: 30 - type: Transform -- uid: 14362 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,11.5 - parent: 30 - type: Transform -- uid: 14363 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,11.5 - parent: 30 - type: Transform -- uid: 14364 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,11.5 - parent: 30 - type: Transform -- uid: 14365 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,11.5 - parent: 30 - type: Transform -- uid: 14366 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,11.5 - parent: 30 - type: Transform -- uid: 14367 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,17.5 - parent: 30 - type: Transform -- uid: 14368 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,18.5 - parent: 30 - type: Transform -- uid: 14369 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,19.5 - parent: 30 - type: Transform -- uid: 14370 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,20.5 - parent: 30 - type: Transform -- uid: 14371 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,21.5 - parent: 30 - type: Transform -- uid: 14372 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,22.5 - parent: 30 - type: Transform -- uid: 14373 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,23.5 - parent: 30 - type: Transform -- uid: 14374 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,24.5 - parent: 30 - type: Transform -- uid: 14375 - type: DisposalJunctionFlipped - components: - - pos: 9.5,26.5 - parent: 30 - type: Transform -- uid: 14376 - type: DisposalPipe - components: - - pos: 9.5,25.5 - parent: 30 - type: Transform -- uid: 14377 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 7.5,35.5 - parent: 30 - type: Transform -- uid: 14378 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,35.5 - parent: 30 - type: Transform -- uid: 14379 - type: DisposalBend - components: - - pos: 9.5,35.5 - parent: 30 - type: Transform -- uid: 14380 - type: DisposalPipe - components: - - pos: 9.5,34.5 - parent: 30 - type: Transform -- uid: 14381 - type: DisposalPipe - components: - - pos: 9.5,33.5 - parent: 30 - type: Transform -- uid: 14382 - type: DisposalPipe - components: - - pos: 9.5,32.5 - parent: 30 - type: Transform -- uid: 14383 - type: DisposalPipe - components: - - pos: 9.5,31.5 - parent: 30 - type: Transform -- uid: 14384 - type: DisposalPipe - components: - - pos: 9.5,30.5 - parent: 30 - type: Transform -- uid: 14385 - type: DisposalPipe - components: - - pos: 9.5,29.5 - parent: 30 - type: Transform -- uid: 14386 - type: DisposalPipe - components: - - pos: 9.5,28.5 - parent: 30 - type: Transform -- uid: 14387 - type: DisposalPipe - components: - - pos: 9.5,27.5 - parent: 30 - type: Transform -- uid: 14388 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,26.5 - parent: 30 - type: Transform -- uid: 14389 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,26.5 - parent: 30 - type: Transform -- uid: 14390 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,26.5 - parent: 30 - type: Transform -- uid: 14391 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,26.5 - parent: 30 - type: Transform -- uid: 14392 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,26.5 - parent: 30 - type: Transform -- uid: 14393 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,26.5 - parent: 30 - type: Transform -- uid: 14394 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,26.5 - parent: 30 - type: Transform -- uid: 14395 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,26.5 - parent: 30 - type: Transform -- uid: 14396 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,26.5 - parent: 30 - type: Transform -- uid: 14397 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,26.5 - parent: 30 - type: Transform -- uid: 14398 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,26.5 - parent: 30 - type: Transform -- uid: 14399 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,26.5 - parent: 30 - type: Transform -- uid: 14400 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 22.5,26.5 - parent: 30 - type: Transform -- uid: 14401 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,27.5 - parent: 30 - type: Transform -- uid: 14402 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,28.5 - parent: 30 - type: Transform -- uid: 14403 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,29.5 - parent: 30 - type: Transform -- uid: 14404 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,30.5 - parent: 30 - type: Transform -- uid: 14405 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,31.5 - parent: 30 - type: Transform -- uid: 14406 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,32.5 - parent: 30 - type: Transform -- uid: 14407 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 24.5,33.5 - parent: 30 - type: Transform -- uid: 14408 - type: DisposalJunctionFlipped - components: - - pos: 22.5,33.5 - parent: 30 - type: Transform -- uid: 14409 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,33.5 - parent: 30 - type: Transform -- uid: 14410 - type: DisposalJunctionFlipped - components: - - pos: 22.5,34.5 - parent: 30 - type: Transform -- uid: 14411 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,35.5 - parent: 30 - type: Transform -- uid: 14412 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,36.5 - parent: 30 - type: Transform -- uid: 14413 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 22.5,37.5 - parent: 30 - type: Transform -- uid: 14414 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 21.5,42.5 - parent: 30 - type: Transform -- uid: 14415 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 20.5,42.5 - parent: 30 - type: Transform -- uid: 14416 - type: DisposalPipe - components: - - pos: 20.5,41.5 - parent: 30 - type: Transform -- uid: 14417 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 20.5,40.5 - parent: 30 - type: Transform -- uid: 14418 - type: DisposalBend - components: - - pos: 22.5,40.5 - parent: 30 - type: Transform -- uid: 14419 - type: DisposalPipe - components: - - pos: 22.5,38.5 - parent: 30 - type: Transform -- uid: 14420 - type: DisposalPipe - components: - - pos: 22.5,39.5 - parent: 30 - type: Transform -- uid: 14421 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,40.5 - parent: 30 - type: Transform -- uid: 14422 - type: DisposalPipe - components: - - pos: -9.5,1.5 - parent: 30 - type: Transform -- uid: 14423 - type: DisposalPipe - components: - - pos: -9.5,0.5 - parent: 30 - type: Transform -- uid: 14424 - type: DisposalPipe - components: - - pos: -9.5,-0.5 - parent: 30 - type: Transform -- uid: 14425 - type: DisposalPipe - components: - - pos: -9.5,-1.5 - parent: 30 - type: Transform -- uid: 14426 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 30 - type: Transform -- uid: 14427 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 30 - type: Transform -- uid: 14428 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 30 - type: Transform -- uid: 14429 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 30 - type: Transform -- uid: 14430 - type: DisposalPipe - components: - - pos: -11.5,-1.5 - parent: 30 - type: Transform -- uid: 14431 - type: DisposalTrunk - components: - - pos: -11.5,-0.5 - parent: 30 - type: Transform -- uid: 14432 - type: DisposalTrunk - components: - - pos: -7.5,-8.5 - parent: 30 - type: Transform -- uid: 14433 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-10.5 - parent: 30 - type: Transform -- uid: 14434 - type: Window - components: - - pos: -30.5,-9.5 - parent: 30 - type: Transform -- uid: 14435 - type: WallReinforced - components: - - pos: -40.5,-8.5 - parent: 30 - type: Transform -- uid: 14436 - type: DisposalTrunk - components: - - pos: -11.5,-12.5 - parent: 30 - type: Transform -- uid: 14437 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-9.5 - parent: 30 - type: Transform -- uid: 14438 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 30 - type: Transform -- uid: 14439 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 30 - type: Transform -- uid: 14440 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 30 - type: Transform -- uid: 14441 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 30 - type: Transform -- uid: 14442 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -12.5,-3.5 - parent: 30 - type: Transform -- uid: 14443 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -12.5,-4.5 - parent: 30 - type: Transform -- uid: 14444 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -12.5,-5.5 - parent: 30 - type: Transform -- uid: 14445 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -12.5,-6.5 - parent: 30 - type: Transform -- uid: 14446 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -12.5,-7.5 - parent: 30 - type: Transform -- uid: 14447 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -12.5,-8.5 - parent: 30 - type: Transform -- uid: 14448 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -12.5,-9.5 - parent: 30 - type: Transform -- uid: 14449 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-10.5 - parent: 30 - type: Transform -- uid: 14450 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -13.5,-10.5 - parent: 30 - type: Transform -- uid: 14451 - type: DisposalBend - components: - - pos: -13.5,-9.5 - parent: 30 - type: Transform -- uid: 14452 - type: DisposalUnit - components: - - pos: -21.5,-0.5 - parent: 30 - type: Transform -- uid: 14453 - type: DisposalTrunk - components: - - pos: -21.5,-0.5 - parent: 30 - type: Transform -- uid: 14454 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 30 - type: Transform -- uid: 14455 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 30 - type: Transform -- uid: 14456 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-9.5 - parent: 30 - type: Transform -- uid: 14457 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-9.5 - parent: 30 - type: Transform -- uid: 14458 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-9.5 - parent: 30 - type: Transform -- uid: 14459 - type: DisposalPipe - components: - - pos: -18.5,-8.5 - parent: 30 - type: Transform -- uid: 14460 - type: DisposalPipe - components: - - pos: -18.5,-7.5 - parent: 30 - type: Transform -- uid: 14461 - type: DisposalPipe - components: - - pos: -18.5,-6.5 - parent: 30 - type: Transform -- uid: 14462 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-5.5 - parent: 30 - type: Transform -- uid: 14463 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-5.5 - parent: 30 - type: Transform -- uid: 14464 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-5.5 - parent: 30 - type: Transform -- uid: 14465 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -22.5,-5.5 - parent: 30 - type: Transform -- uid: 14466 - type: DisposalBend - components: - - pos: -18.5,-5.5 - parent: 30 - type: Transform -- uid: 14467 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 30 - type: Transform -- uid: 14468 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 30 - type: Transform -- uid: 14469 - type: DisposalPipe - components: - - pos: -22.5,-4.5 - parent: 30 - type: Transform -- uid: 14470 - type: DisposalPipe - components: - - pos: -22.5,-3.5 - parent: 30 - type: Transform -- uid: 14471 - type: DisposalPipe - components: - - pos: -22.5,-2.5 - parent: 30 - type: Transform -- uid: 14472 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-9.5 - parent: 30 - type: Transform -- uid: 14473 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-9.5 - parent: 30 - type: Transform -- uid: 14474 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-9.5 - parent: 30 - type: Transform -- uid: 14475 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-9.5 - parent: 30 - type: Transform -- uid: 14476 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-9.5 - parent: 30 - type: Transform -- uid: 14477 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-10.5 - parent: 30 - type: Transform -- uid: 14478 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-9.5 - parent: 30 - type: Transform -- uid: 14479 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-9.5 - parent: 30 - type: Transform -- uid: 14480 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-9.5 - parent: 30 - type: Transform -- uid: 14481 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-9.5 - parent: 30 - type: Transform -- uid: 14482 - type: Window - components: - - pos: -30.5,-11.5 - parent: 30 - type: Transform -- uid: 14483 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-9.5 - parent: 30 - type: Transform -- uid: 14484 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -29.5,-9.5 - parent: 30 - type: Transform -- uid: 14485 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-8.5 - parent: 30 - type: Transform -- uid: 14486 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-8.5 - parent: 30 - type: Transform -- uid: 14487 - type: Chair - components: - - pos: -32.5,-4.5 - parent: 30 - type: Transform -- uid: 14488 - type: GasPipeStraight - components: - - pos: -31.5,-13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14489 - type: Grille - components: - - pos: -39.5,-8.5 - parent: 30 - type: Transform -- uid: 14490 - type: WaterCooler - components: - - pos: -7.5,31.5 - parent: 30 - type: Transform -- uid: 14491 - type: DisposalPipe - components: - - pos: -28.5,-7.5 - parent: 30 - type: Transform -- uid: 14492 - type: IntercomService - components: - - rot: 3.141592653589793 rad - pos: -12.5,5.5 - parent: 30 - type: Transform -- uid: 14493 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-6.5 - parent: 30 - type: Transform -- uid: 14494 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-6.5 - parent: 30 - type: Transform -- uid: 14495 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-6.5 - parent: 30 - type: Transform -- uid: 14496 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-14.5 - parent: 30 - type: Transform -- uid: 14497 - type: DisposalBend - components: - - pos: -28.5,-6.5 - parent: 30 - type: Transform -- uid: 14498 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 30 - type: Transform -- uid: 14499 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -18.5,-14.5 - parent: 30 - type: Transform -- uid: 14500 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-14.5 - parent: 30 - type: Transform -- uid: 14501 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -18.5,-13.5 - parent: 30 - type: Transform -- uid: 14502 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 30 - type: Transform -- uid: 14503 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-14.5 - parent: 30 - type: Transform -- uid: 14504 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 30 - type: Transform -- uid: 14505 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-14.5 - parent: 30 - type: Transform -- uid: 14506 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-14.5 - parent: 30 - type: Transform -- uid: 14507 - type: DisposalPipe - components: - - pos: -11.5,-13.5 - parent: 30 - type: Transform -- uid: 14508 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -18.5,-12.5 - parent: 30 - type: Transform -- uid: 14509 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -18.5,-11.5 - parent: 30 - type: Transform -- uid: 14510 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-10.5 - parent: 30 - type: Transform -- uid: 14511 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-10.5 - parent: 30 - type: Transform -- uid: 14512 - type: BlastDoor - components: - - pos: 48.5,23.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15986 - type: SignalReceiver -- uid: 14513 - type: ReinforcedWindow - components: - - pos: 49.5,23.5 - parent: 30 - type: Transform -- uid: 14514 - type: Grille - components: - - pos: 54.5,21.5 - parent: 30 - type: Transform -- uid: 14515 - type: ReinforcedWindow - components: - - pos: 49.5,24.5 - parent: 30 - type: Transform -- uid: 14516 - type: Grille - components: - - pos: 54.5,23.5 - parent: 30 - type: Transform -- uid: 14517 - type: Grille - components: - - pos: 49.5,23.5 - parent: 30 - type: Transform -- uid: 14518 - type: Grille - components: - - pos: 49.5,24.5 - parent: 30 - type: Transform -- uid: 14519 - type: Grille - components: - - pos: 51.5,25.5 - parent: 30 - type: Transform -- uid: 14520 - type: Grille - components: - - pos: 52.5,25.5 - parent: 30 - type: Transform -- uid: 14521 - type: Grille - components: - - pos: 47.5,27.5 - parent: 30 - type: Transform -- uid: 14522 - type: ConveyorBelt - components: - - pos: 48.5,25.5 - parent: 30 - type: Transform - - inputs: - Off: - - port: Middle - uid: 15987 - Forward: - - port: Left - uid: 15987 - Reverse: - - port: Right - uid: 15987 - type: SignalReceiver -- uid: 14523 - type: ConveyorBelt - components: - - pos: 48.5,24.5 - parent: 30 - type: Transform - - inputs: - Off: - - port: Middle - uid: 15987 - Forward: - - port: Left - uid: 15987 - Reverse: - - port: Right - uid: 15987 - type: SignalReceiver -- uid: 14524 - type: ConveyorBelt - components: - - pos: 48.5,23.5 - parent: 30 - type: Transform - - inputs: - Off: - - port: Middle - uid: 15987 - Forward: - - port: Left - uid: 15987 - Reverse: - - port: Right - uid: 15987 - type: SignalReceiver -- uid: 14525 - type: ConveyorBelt - components: - - pos: 48.5,22.5 - parent: 30 - type: Transform - - inputs: - Off: - - port: Middle - uid: 15987 - Forward: - - port: Left - uid: 15987 - Reverse: - - port: Right - uid: 15987 - type: SignalReceiver -- uid: 14526 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 49.5,22.5 - parent: 30 - type: Transform - - inputs: - Off: - - port: Middle - uid: 15988 - Forward: - - port: Left - uid: 15988 - Reverse: - - port: Right - uid: 15988 - type: SignalReceiver -- uid: 14527 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 50.5,22.5 - parent: 30 - type: Transform - - inputs: - Off: - - port: Middle - uid: 15988 - Forward: - - port: Left - uid: 15988 - Reverse: - - port: Right - uid: 15988 - type: SignalReceiver -- uid: 14528 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 51.5,22.5 - parent: 30 - type: Transform - - inputs: - Off: - - port: Middle - uid: 15988 - Forward: - - port: Left - uid: 15988 - Reverse: - - port: Right - uid: 15988 - type: SignalReceiver -- uid: 14529 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 52.5,22.5 - parent: 30 - type: Transform - - inputs: - Off: - - port: Middle - uid: 15988 - Forward: - - port: Left - uid: 15988 - Reverse: - - port: Right - uid: 15988 - type: SignalReceiver -- uid: 14530 - type: Recycler - components: - - rot: 1.5707963267948966 rad - pos: 53.5,22.5 - parent: 30 - type: Transform - - inputs: - Off: - - port: Middle - uid: 15989 - Forward: - - port: Left - uid: 15989 - Reverse: - - port: Right - uid: 15989 - type: SignalReceiver -- uid: 14531 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 52.5,19.5 - parent: 30 - type: Transform -- uid: 14532 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,20.5 - parent: 30 - type: Transform -- uid: 14533 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,21.5 - parent: 30 - type: Transform -- uid: 14534 - type: DisposalTrunk - components: - - pos: 52.5,22.5 - parent: 30 - type: Transform -- uid: 14535 - type: SignDisposalSpace - components: - - pos: 47.5,20.5 - parent: 30 - type: Transform -- uid: 14536 - type: Grille - components: - - pos: 14.5,65.5 - parent: 30 - type: Transform -- uid: 14537 - type: Grille - components: - - pos: 15.5,65.5 - parent: 30 - type: Transform -- uid: 14538 - type: Grille - components: - - pos: -26.5,-54.5 - parent: 30 - type: Transform -- uid: 14539 - type: WallReinforced - components: - - pos: 32.5,-12.5 - parent: 30 - type: Transform -- uid: 14540 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14541 - type: APCBasic - components: - - pos: 48.5,20.5 - parent: 30 - type: Transform -- uid: 14542 - type: CableMV - components: - - pos: 39.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14543 - type: CableMV - components: - - pos: 40.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14544 - type: CableMV - components: - - pos: 41.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14545 - type: CableMV - components: - - pos: 42.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14546 - type: CableMV - components: - - pos: 42.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14547 - type: CableMV - components: - - pos: 42.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14548 - type: CableMV - components: - - pos: 43.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14549 - type: CableMV - components: - - pos: 44.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14550 - type: CableMV - components: - - pos: 45.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14551 - type: CableMV - components: - - pos: 46.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14552 - type: CableMV - components: - - pos: 47.5,19.5 - parent: 30 - type: Transform -- uid: 14553 - type: CableMV - components: - - pos: 48.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14554 - type: CableMV - components: - - pos: 48.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14555 - type: CableApcExtension - components: - - pos: 48.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14556 - type: CableApcExtension - components: - - pos: 48.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14557 - type: CableApcExtension - components: - - pos: 47.5,19.5 - parent: 30 - type: Transform -- uid: 14558 - type: CableApcExtension - components: - - pos: 46.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14559 - type: CableApcExtension - components: - - pos: 45.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14560 - type: CableApcExtension - components: - - pos: 44.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14561 - type: CableApcExtension - components: - - pos: 43.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14562 - type: CableApcExtension - components: - - pos: 42.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14563 - type: CableApcExtension - components: - - pos: 42.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14564 - type: CableApcExtension - components: - - pos: 42.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14565 - type: CableApcExtension - components: - - pos: 49.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14566 - type: CableApcExtension - components: - - pos: 50.5,19.5 - parent: 30 - type: Transform -- uid: 14567 - type: CableApcExtension - components: - - pos: 51.5,19.5 - parent: 30 - type: Transform -- uid: 14568 - type: CableApcExtension - components: - - pos: 52.5,19.5 - parent: 30 - type: Transform -- uid: 14569 - type: CableApcExtension - components: - - pos: 52.5,20.5 - parent: 30 - type: Transform -- uid: 14570 - type: CableApcExtension - components: - - pos: 52.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14571 - type: CableApcExtension - components: - - pos: 51.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14572 - type: CableApcExtension - components: - - pos: 50.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14573 - type: CableApcExtension - components: - - pos: 49.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14574 - type: CableApcExtension - components: - - pos: 48.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14575 - type: CableApcExtension - components: - - pos: 48.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14576 - type: CableApcExtension - components: - - pos: 48.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14577 - type: CableApcExtension - components: - - pos: 48.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14578 - type: CableApcExtension - components: - - pos: 48.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14579 - type: CableApcExtension - components: - - pos: 51.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14580 - type: CableApcExtension - components: - - pos: 51.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14581 - type: CableApcExtension - components: - - pos: 51.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14582 - type: CableApcExtension - components: - - pos: 52.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14583 - type: CableApcExtension - components: - - pos: 53.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14584 - type: CableApcExtension - components: - - pos: 32.5,29.5 - parent: 30 - type: Transform -- uid: 14585 - type: CableApcExtension - components: - - pos: 33.5,29.5 - parent: 30 - type: Transform -- uid: 14586 - type: CableApcExtension - components: - - pos: 34.5,29.5 - parent: 30 - type: Transform -- uid: 14587 - type: CableApcExtension - components: - - pos: 34.5,28.5 - parent: 30 - type: Transform -- uid: 14588 - type: CableApcExtension - components: - - pos: 34.5,27.5 - parent: 30 - type: Transform -- uid: 14589 - type: CableApcExtension - components: - - pos: 34.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14590 - type: CableApcExtension - components: - - pos: 35.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14591 - type: CableApcExtension - components: - - pos: 36.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14592 - type: CableApcExtension - components: - - pos: 37.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14593 - type: CableApcExtension - components: - - pos: 38.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14594 - type: CableApcExtension - components: - - pos: 39.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14595 - type: CableApcExtension - components: - - pos: 40.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14596 - type: CableApcExtension - components: - - pos: 41.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14597 - type: CableApcExtension - components: - - pos: 42.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14598 - type: CableApcExtension - components: - - pos: 42.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14599 - type: CableApcExtension - components: - - pos: 42.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14600 - type: CableApcExtension - components: - - pos: 42.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14601 - type: CableApcExtension - components: - - pos: 42.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14602 - type: CableApcExtension - components: - - pos: 42.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14603 - type: CableApcExtension - components: - - pos: 42.5,28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14604 - type: CableApcExtension - components: - - pos: 42.5,29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14605 - type: CableApcExtension - components: - - pos: 42.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14606 - type: CableApcExtension - components: - - pos: 43.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14607 - type: CableApcExtension - components: - - pos: 44.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14608 - type: CableApcExtension - components: - - pos: 16.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14609 - type: CableHV - components: - - pos: 16.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14610 - type: CableHV - components: - - pos: 17.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14611 - type: CableHV - components: - - pos: 17.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14612 - type: CableHV - components: - - pos: 17.5,6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14613 - type: CableHV - components: - - pos: 18.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14614 - type: CableHV - components: - - pos: 19.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14615 - type: CableHV - components: - - pos: 20.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14616 - type: CableHV - components: - - pos: 21.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14617 - type: CableHV - components: - - pos: 22.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14618 - type: CableHV - components: - - pos: 23.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14619 - type: CableHV - components: - - pos: 24.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14620 - type: CableHV - components: - - pos: 25.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14621 - type: CableHV - components: - - pos: 26.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14622 - type: CableHV - components: - - pos: 27.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14623 - type: CableHV - components: - - pos: 28.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14624 - type: CableHV - components: - - pos: 29.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14625 - type: CableHV - components: - - pos: 30.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14626 - type: CableHV - components: - - pos: 31.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14627 - type: CableHV - components: - - pos: 32.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14628 - type: CableHV - components: - - pos: 33.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14629 - type: CableHV - components: - - pos: 34.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14630 - type: CableHV - components: - - pos: 35.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14631 - type: CableHV - components: - - pos: 36.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14632 - type: CableHV - components: - - pos: 37.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14633 - type: CableHV - components: - - pos: 38.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14634 - type: CableHV - components: - - pos: 39.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14635 - type: CableHV - components: - - pos: 40.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14636 - type: CableHV - components: - - pos: 41.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14637 - type: CableHV - components: - - pos: 42.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14638 - type: CableHV - components: - - pos: 42.5,6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14639 - type: CableHV - components: - - pos: 42.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14640 - type: CableHV - components: - - pos: 42.5,8.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14641 - type: CableHV - components: - - pos: 42.5,9.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14642 - type: DisposalPipe - components: - - pos: 43.5,11.5 - parent: 30 - type: Transform -- uid: 14643 - type: DisposalPipe - components: - - pos: 43.5,15.5 - parent: 30 - type: Transform -- uid: 14644 - type: CableHV - components: - - pos: 43.5,15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14645 - type: CableHV - components: - - pos: 43.5,11.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14646 - type: WallReinforced - components: - - pos: 42.5,11.5 - parent: 30 - type: Transform -- uid: 14647 - type: CableApcExtension - components: - - pos: 43.5,12.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14648 - type: WallReinforced - components: - - pos: 42.5,14.5 - parent: 30 - type: Transform -- uid: 14649 - type: CableHV - components: - - pos: 42.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14650 - type: CableHV - components: - - pos: 41.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14651 - type: CableHV - components: - - pos: 40.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14652 - type: CableHV - components: - - pos: 39.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14653 - type: CableHV - components: - - pos: 38.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14654 - type: CableHV - components: - - pos: 37.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14655 - type: CableHV - components: - - pos: 36.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14656 - type: CableHV - components: - - pos: 35.5,17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14657 - type: CableHV - components: - - pos: 20.5,30.5 - parent: 30 - type: Transform -- uid: 14658 - type: CableHV - components: - - pos: 21.5,30.5 - parent: 30 - type: Transform -- uid: 14659 - type: CableHV - components: - - pos: 22.5,30.5 - parent: 30 - type: Transform -- uid: 14660 - type: CableHV - components: - - pos: 22.5,29.5 - parent: 30 - type: Transform -- uid: 14661 - type: CableHV - components: - - pos: 22.5,28.5 - parent: 30 - type: Transform -- uid: 14662 - type: CableHV - components: - - pos: 22.5,27.5 - parent: 30 - type: Transform -- uid: 14663 - type: CableHV - components: - - pos: 22.5,26.5 - parent: 30 - type: Transform -- uid: 14664 - type: CableHV - components: - - pos: 23.5,26.5 - parent: 30 - type: Transform -- uid: 14665 - type: CableHV - components: - - pos: 24.5,26.5 - parent: 30 - type: Transform -- uid: 14666 - type: CableHV - components: - - pos: 25.5,26.5 - parent: 30 - type: Transform -- uid: 14667 - type: CableHV - components: - - pos: 26.5,26.5 - parent: 30 - type: Transform -- uid: 14668 - type: CableHV - components: - - pos: 27.5,26.5 - parent: 30 - type: Transform -- uid: 14669 - type: CableHV - components: - - pos: 27.5,27.5 - parent: 30 - type: Transform -- uid: 14670 - type: CableHV - components: - - pos: 27.5,28.5 - parent: 30 - type: Transform -- uid: 14671 - type: CableHV - components: - - pos: 27.5,29.5 - parent: 30 - type: Transform -- uid: 14672 - type: CableHV - components: - - pos: 28.5,29.5 - parent: 30 - type: Transform -- uid: 14673 - type: CableHV - components: - - pos: 29.5,29.5 - parent: 30 - type: Transform -- uid: 14674 - type: CableHV - components: - - pos: 30.5,29.5 - parent: 30 - type: Transform -- uid: 14675 - type: CableHV - components: - - pos: 31.5,29.5 - parent: 30 - type: Transform -- uid: 14676 - type: CableHV - components: - - pos: 32.5,29.5 - parent: 30 - type: Transform -- uid: 14677 - type: CableHV - components: - - pos: 33.5,29.5 - parent: 30 - type: Transform -- uid: 14678 - type: CableHV - components: - - pos: 34.5,29.5 - parent: 30 - type: Transform -- uid: 14679 - type: CableHV - components: - - pos: 34.5,28.5 - parent: 30 - type: Transform -- uid: 14680 - type: CableHV - components: - - pos: 34.5,27.5 - parent: 30 - type: Transform -- uid: 14681 - type: CableHV - components: - - pos: 34.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14682 - type: CableHV - components: - - pos: 42.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14683 - type: CableHV - components: - - pos: 35.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14684 - type: CableHV - components: - - pos: 35.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14685 - type: CableHV - components: - - pos: 35.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14686 - type: CableHV - components: - - pos: 35.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14687 - type: CableHV - components: - - pos: 35.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14688 - type: CableHV - components: - - pos: 35.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14689 - type: CableHV - components: - - pos: 35.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14690 - type: CableHV - components: - - pos: 36.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14691 - type: CableHV - components: - - pos: 37.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14692 - type: CableHV - components: - - pos: 38.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14693 - type: CableHV - components: - - pos: 38.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14694 - type: CableHV - components: - - pos: 22.5,31.5 - parent: 30 - type: Transform -- uid: 14695 - type: CableHV - components: - - pos: 22.5,32.5 - parent: 30 - type: Transform -- uid: 14696 - type: CableHV - components: - - pos: 22.5,33.5 - parent: 30 - type: Transform -- uid: 14697 - type: CableHV - components: - - pos: 22.5,34.5 - parent: 30 - type: Transform -- uid: 14698 - type: CableHV - components: - - pos: 22.5,35.5 - parent: 30 - type: Transform -- uid: 14699 - type: CableHV - components: - - pos: 22.5,36.5 - parent: 30 - type: Transform -- uid: 14700 - type: CableHV - components: - - pos: 22.5,37.5 - parent: 30 - type: Transform -- uid: 14701 - type: CableHV - components: - - pos: 22.5,38.5 - parent: 30 - type: Transform -- uid: 14702 - type: CableHV - components: - - pos: 22.5,39.5 - parent: 30 - type: Transform -- uid: 14703 - type: CableHV - components: - - pos: 22.5,40.5 - parent: 30 - type: Transform -- uid: 14704 - type: CableHV - components: - - pos: 21.5,40.5 - parent: 30 - type: Transform -- uid: 14705 - type: CableHV - components: - - pos: 20.5,40.5 - parent: 30 - type: Transform -- uid: 14706 - type: CableHV - components: - - pos: 20.5,41.5 - parent: 30 - type: Transform -- uid: 14707 - type: CableHV - components: - - pos: 20.5,42.5 - parent: 30 - type: Transform -- uid: 14708 - type: CableHV - components: - - pos: 20.5,43.5 - parent: 30 - type: Transform -- uid: 14709 - type: CableHV - components: - - pos: 19.5,43.5 - parent: 30 - type: Transform -- uid: 14710 - type: CableHV - components: - - pos: 18.5,43.5 - parent: 30 - type: Transform -- uid: 14711 - type: CableHV - components: - - pos: 17.5,43.5 - parent: 30 - type: Transform -- uid: 14712 - type: CableHV - components: - - pos: 16.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14713 - type: CableHV - components: - - pos: 16.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14714 - type: CableHV - components: - - pos: 16.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14715 - type: CableHV - components: - - pos: 16.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14716 - type: CableHV - components: - - pos: 16.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14717 - type: CableHV - components: - - pos: 16.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14718 - type: CableHV - components: - - pos: 16.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14719 - type: CableHV - components: - - pos: 16.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14720 - type: CableHV - components: - - pos: 16.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14721 - type: CableHV - components: - - pos: 16.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14722 - type: CableHV - components: - - pos: 16.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14723 - type: ReinforcedWindow - components: - - pos: 17.5,63.5 - parent: 30 - type: Transform -- uid: 14724 - type: WallReinforced - components: - - pos: 19.5,63.5 - parent: 30 - type: Transform -- uid: 14725 - type: WallSolid - components: - - pos: 14.5,54.5 - parent: 30 - type: Transform -- uid: 14726 - type: WallReinforced - components: - - pos: 11.5,52.5 - parent: 30 - type: Transform -- uid: 14727 - type: WallReinforced - components: - - pos: 20.5,58.5 - parent: 30 - type: Transform -- uid: 14728 - type: WallSolid - components: - - pos: 14.5,52.5 - parent: 30 - type: Transform -- uid: 14729 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 32.5,44.5 - parent: 30 - type: Transform -- uid: 14730 - type: WallSolid - components: - - pos: 14.5,55.5 - parent: 30 - type: Transform -- uid: 14731 - type: CableMV - components: - - pos: 16.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14732 - type: CableMV - components: - - pos: 16.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14733 - type: CableMV - components: - - pos: 16.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14734 - type: CableMV - components: - - pos: 16.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14735 - type: ReinforcedWindow - components: - - pos: 15.5,63.5 - parent: 30 - type: Transform -- uid: 14736 - type: WallReinforced - components: - - pos: 18.5,63.5 - parent: 30 - type: Transform -- uid: 14737 - type: WallReinforced - components: - - pos: 20.5,57.5 - parent: 30 - type: Transform -- uid: 14738 - type: WallSolid - components: - - pos: 12.5,52.5 - parent: 30 - type: Transform -- uid: 14739 - type: CableMV - components: - - pos: 16.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14740 - type: CableMV - components: - - pos: 16.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14741 - type: CableMV - components: - - pos: 17.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14742 - type: CableMV - components: - - pos: 18.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14743 - type: CableMV - components: - - pos: 19.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14744 - type: CableMV - components: - - pos: 19.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14745 - type: CableMV - components: - - pos: 19.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14746 - type: CableMV - components: - - pos: 19.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14747 - type: CableMV - components: - - pos: 19.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14748 - type: CableMV - components: - - pos: 19.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14749 - type: CableMV - components: - - pos: 20.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14750 - type: CableMV - components: - - pos: 21.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14751 - type: CableMV - components: - - pos: 22.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14752 - type: CableMV - components: - - pos: 23.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14753 - type: CableMV - components: - - pos: 24.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14754 - type: CableMV - components: - - pos: 25.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14755 - type: CableMV - components: - - pos: 26.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14756 - type: CableMV - components: - - pos: 27.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14757 - type: CableMV - components: - - pos: 28.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14758 - type: CableMV - components: - - pos: 29.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14759 - type: CableMV - components: - - pos: 30.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14760 - type: CableMV - components: - - pos: 30.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14761 - type: CableMV - components: - - pos: 30.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14762 - type: CableMV - components: - - pos: 30.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14763 - type: CableMV - components: - - pos: 30.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14764 - type: CableMV - components: - - pos: 30.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14765 - type: CableMV - components: - - pos: 30.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14766 - type: CableMV - components: - - pos: 30.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14767 - type: CableMV - components: - - pos: 30.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14768 - type: CableMV - components: - - pos: 31.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14769 - type: CableMV - components: - - pos: 32.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14770 - type: CableMV - components: - - pos: 32.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14771 - type: WallReinforced - components: - - pos: 13.5,48.5 - parent: 30 - type: Transform -- uid: 14772 - type: CableApcExtension - components: - - pos: 16.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14773 - type: CableApcExtension - components: - - pos: 16.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14774 - type: CableApcExtension - components: - - pos: 16.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14775 - type: CableApcExtension - components: - - pos: 16.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14776 - type: CableApcExtension - components: - - pos: 16.5,54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14777 - type: CableApcExtension - components: - - pos: 16.5,55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14778 - type: Grille - components: - - pos: 11.5,62.5 - parent: 30 - type: Transform -- uid: 14779 - type: Grille - components: - - pos: 10.5,61.5 - parent: 30 - type: Transform -- uid: 14780 - type: Grille - components: - - pos: 14.5,63.5 - parent: 30 - type: Transform -- uid: 14781 - type: Grille - components: - - pos: 16.5,63.5 - parent: 30 - type: Transform -- uid: 14782 - type: Table - components: - - pos: 16.5,60.5 - parent: 30 - type: Transform -- uid: 14783 - type: Table - components: - - pos: 17.5,60.5 - parent: 30 - type: Transform -- uid: 14784 - type: Grille - components: - - pos: 20.5,59.5 - parent: 30 - type: Transform -- uid: 14785 - type: Grille - components: - - pos: 20.5,60.5 - parent: 30 - type: Transform -- uid: 14786 - type: CableApcExtension - components: - - pos: 12.5,60.5 - parent: 30 - type: Transform -- uid: 14787 - type: CableApcExtension - components: - - pos: 12.5,54.5 - parent: 30 - type: Transform -- uid: 14788 - type: CableApcExtension - components: - - pos: 12.5,56.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14789 - type: CableApcExtension - components: - - pos: 14.5,57.5 - parent: 30 - type: Transform -- uid: 14790 - type: CableApcExtension - components: - - pos: 15.5,57.5 - parent: 30 - type: Transform -- uid: 14791 - type: CableApcExtension - components: - - pos: 15.5,61.5 - parent: 30 - type: Transform -- uid: 14792 - type: CableApcExtension - components: - - pos: 17.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14793 - type: CableApcExtension - components: - - pos: 12.5,59.5 - parent: 30 - type: Transform -- uid: 14794 - type: CableApcExtension - components: - - pos: 12.5,58.5 - parent: 30 - type: Transform -- uid: 14795 - type: CableApcExtension - components: - - pos: 12.5,53.5 - parent: 30 - type: Transform -- uid: 14796 - type: CableApcExtension - components: - - pos: 13.5,57.5 - parent: 30 - type: Transform -- uid: 14797 - type: Table - components: - - pos: 15.5,60.5 - parent: 30 - type: Transform -- uid: 14798 - type: ReinforcedWindow - components: - - pos: 16.5,63.5 - parent: 30 - type: Transform -- uid: 14799 - type: WallReinforced - components: - - pos: 13.5,63.5 - parent: 30 - type: Transform -- uid: 14800 - type: WallReinforced - components: - - pos: 20.5,56.5 - parent: 30 - type: Transform -- uid: 14801 - type: WallSolid - components: - - pos: 14.5,49.5 - parent: 30 - type: Transform -- uid: 14802 - type: CableApcExtension - components: - - pos: 16.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14803 - type: CableApcExtension - components: - - pos: 16.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14804 - type: CableApcExtension - components: - - pos: 17.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14805 - type: CableApcExtension - components: - - pos: 18.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14806 - type: CableApcExtension - components: - - pos: 19.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14807 - type: CableApcExtension - components: - - pos: 19.5,47.5 - parent: 30 - type: Transform -- uid: 14808 - type: CableApcExtension - components: - - pos: 19.5,46.5 - parent: 30 - type: Transform -- uid: 14809 - type: CableApcExtension - components: - - pos: 19.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14810 - type: CableApcExtension - components: - - pos: 19.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14811 - type: WeldingFuelTankFull - components: - - pos: 18.5,50.5 - parent: 30 - type: Transform -- uid: 14812 - type: CableApcExtension - components: - - pos: 19.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14813 - type: CableApcExtension - components: - - pos: 19.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14814 - type: CableApcExtension - components: - - pos: 19.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14815 - type: CableApcExtension - components: - - pos: 19.5,54.5 - parent: 30 - type: Transform -- uid: 14816 - type: CableApcExtension - components: - - pos: 19.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14817 - type: CableApcExtension - components: - - pos: 20.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14818 - type: CableApcExtension - components: - - pos: 18.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14819 - type: CableApcExtension - components: - - pos: 21.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14820 - type: CableApcExtension - components: - - pos: 22.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14821 - type: CableApcExtension - components: - - pos: 23.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14822 - type: CableApcExtension - components: - - pos: 24.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14823 - type: CableApcExtension - components: - - pos: 25.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14824 - type: CableApcExtension - components: - - pos: 26.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14825 - type: CableApcExtension - components: - - pos: 27.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14826 - type: CableApcExtension - components: - - pos: 28.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14827 - type: CableApcExtension - components: - - pos: 29.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14828 - type: CableApcExtension - components: - - pos: 30.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14829 - type: CableApcExtension - components: - - pos: 30.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14830 - type: CableApcExtension - components: - - pos: 32.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14831 - type: CableApcExtension - components: - - pos: 33.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14832 - type: CableApcExtension - components: - - pos: 40.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14833 - type: CableApcExtension - components: - - pos: 32.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14834 - type: CableApcExtension - components: - - pos: 31.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14835 - type: CableApcExtension - components: - - pos: 30.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14836 - type: CableApcExtension - components: - - pos: 30.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14837 - type: CableApcExtension - components: - - pos: 30.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14838 - type: CableApcExtension - components: - - pos: 30.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14839 - type: CableApcExtension - components: - - pos: 30.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14840 - type: CableApcExtension - components: - - pos: 30.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14841 - type: CableApcExtension - components: - - pos: 33.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14842 - type: CableApcExtension - components: - - pos: 33.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14843 - type: CableApcExtension - components: - - pos: 32.5,42.5 - parent: 30 - type: Transform -- uid: 14844 - type: CableApcExtension - components: - - pos: 31.5,42.5 - parent: 30 - type: Transform -- uid: 14845 - type: CableApcExtension - components: - - pos: 31.5,42.5 - parent: 30 - type: Transform -- uid: 14846 - type: CableApcExtension - components: - - pos: 30.5,42.5 - parent: 30 - type: Transform -- uid: 14847 - type: CableApcExtension - components: - - pos: 30.5,41.5 - parent: 30 - type: Transform -- uid: 14848 - type: CableApcExtension - components: - - pos: 30.5,40.5 - parent: 30 - type: Transform -- uid: 14849 - type: CableApcExtension - components: - - pos: 34.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14850 - type: CableApcExtension - components: - - pos: 36.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14851 - type: CableApcExtension - components: - - pos: 35.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14852 - type: CableApcExtension - components: - - pos: 37.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14853 - type: CableApcExtension - components: - - pos: 38.5,44.5 - parent: 30 - type: Transform -- uid: 14854 - type: CableApcExtension - components: - - pos: 39.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14855 - type: CableApcExtension - components: - - pos: 41.5,44.5 - parent: 30 - type: Transform -- uid: 14856 - type: CableApcExtension - components: - - pos: 42.5,44.5 - parent: 30 - type: Transform -- uid: 14857 - type: CableApcExtension - components: - - pos: 43.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14858 - type: CableApcExtension - components: - - pos: 44.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14859 - type: CableApcExtension - components: - - pos: 45.5,44.5 - parent: 30 - type: Transform -- uid: 14860 - type: CableApcExtension - components: - - pos: 46.5,44.5 - parent: 30 - type: Transform -- uid: 14861 - type: CableApcExtension - components: - - pos: 46.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14862 - type: CableApcExtension - components: - - pos: 46.5,42.5 - parent: 30 - type: Transform -- uid: 14863 - type: CableApcExtension - components: - - pos: 46.5,41.5 - parent: 30 - type: Transform -- uid: 14864 - type: CableApcExtension - components: - - pos: 45.5,41.5 - parent: 30 - type: Transform -- uid: 14865 - type: CableApcExtension - components: - - pos: 45.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14866 - type: CableApcExtension - components: - - pos: 46.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14867 - type: CableApcExtension - components: - - pos: 47.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14868 - type: CableApcExtension - components: - - pos: 46.5,31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14869 - type: Catwalk - components: - - pos: 47.5,30.5 - parent: 30 - type: Transform -- uid: 14870 - type: CableApcExtension - components: - - pos: 33.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14871 - type: CableApcExtension - components: - - pos: 35.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14872 - type: CableApcExtension - components: - - pos: 34.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14873 - type: CableApcExtension - components: - - pos: 36.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14874 - type: CableApcExtension - components: - - pos: 37.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14875 - type: CableApcExtension - components: - - pos: 38.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14876 - type: CableApcExtension - components: - - pos: 39.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14877 - type: CableApcExtension - components: - - pos: 40.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14878 - type: CableApcExtension - components: - - pos: 41.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14879 - type: CableApcExtension - components: - - pos: 42.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14880 - type: CableApcExtension - components: - - pos: 42.5,6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14881 - type: CableApcExtension - components: - - pos: 42.5,7.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14882 - type: CableApcExtension - components: - - pos: 27.5,38.5 - parent: 30 - type: Transform -- uid: 14883 - type: CableApcExtension - components: - - pos: 27.5,37.5 - parent: 30 - type: Transform -- uid: 14884 - type: CableApcExtension - components: - - pos: 27.5,36.5 - parent: 30 - type: Transform -- uid: 14885 - type: CableApcExtension - components: - - pos: 30.5,36.5 - parent: 30 - type: Transform -- uid: 14886 - type: CableApcExtension - components: - - pos: 31.5,36.5 - parent: 30 - type: Transform -- uid: 14887 - type: CableApcExtension - components: - - pos: 32.5,36.5 - parent: 30 - type: Transform -- uid: 14888 - type: CableApcExtension - components: - - pos: 33.5,36.5 - parent: 30 - type: Transform -- uid: 14889 - type: CableApcExtension - components: - - pos: 33.5,35.5 - parent: 30 - type: Transform -- uid: 14890 - type: CableApcExtension - components: - - pos: 34.5,35.5 - parent: 30 - type: Transform -- uid: 14891 - type: CableApcExtension - components: - - pos: 33.5,37.5 - parent: 30 - type: Transform -- uid: 14892 - type: CableApcExtension - components: - - pos: 33.5,38.5 - parent: 30 - type: Transform -- uid: 14893 - type: CableApcExtension - components: - - pos: 30.5,37.5 - parent: 30 - type: Transform -- uid: 14894 - type: CableApcExtension - components: - - pos: 30.5,38.5 - parent: 30 - type: Transform -- uid: 14895 - type: CableApcExtension - components: - - pos: 30.5,39.5 - parent: 30 - type: Transform -- uid: 14896 - type: CableApcExtension - components: - - pos: 31.5,35.5 - parent: 30 - type: Transform -- uid: 14897 - type: CableApcExtension - components: - - pos: 31.5,34.5 - parent: 30 - type: Transform -- uid: 14898 - type: CableApcExtension - components: - - pos: 34.5,38.5 - parent: 30 - type: Transform -- uid: 14899 - type: CableApcExtension - components: - - pos: 35.5,38.5 - parent: 30 - type: Transform -- uid: 14900 - type: CableApcExtension - components: - - pos: 36.5,38.5 - parent: 30 - type: Transform -- uid: 14901 - type: CableApcExtension - components: - - pos: 35.5,35.5 - parent: 30 - type: Transform -- uid: 14902 - type: CableApcExtension - components: - - pos: 36.5,35.5 - parent: 30 - type: Transform -- uid: 14903 - type: CableApcExtension - components: - - pos: 37.5,35.5 - parent: 30 - type: Transform -- uid: 14904 - type: CableApcExtension - components: - - pos: 38.5,35.5 - parent: 30 - type: Transform -- uid: 14905 - type: CableApcExtension - components: - - pos: 39.5,35.5 - parent: 30 - type: Transform -- uid: 14906 - type: CableApcExtension - components: - - pos: 40.5,35.5 - parent: 30 - type: Transform -- uid: 14907 - type: CableApcExtension - components: - - pos: 40.5,35.5 - parent: 30 - type: Transform -- uid: 14908 - type: CableApcExtension - components: - - pos: 41.5,35.5 - parent: 30 - type: Transform -- uid: 14909 - type: CableApcExtension - components: - - pos: 42.5,35.5 - parent: 30 - type: Transform -- uid: 14910 - type: CableApcExtension - components: - - pos: 43.5,35.5 - parent: 30 - type: Transform -- uid: 14911 - type: CableApcExtension - components: - - pos: 44.5,35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14912 - type: CableApcExtension - components: - - pos: 45.5,35.5 - parent: 30 - type: Transform -- uid: 14913 - type: CableApcExtension - components: - - pos: 46.5,35.5 - parent: 30 - type: Transform -- uid: 14914 - type: CableApcExtension - components: - - pos: 46.5,34.5 - parent: 30 - type: Transform -- uid: 14915 - type: CableApcExtension - components: - - pos: 46.5,33.5 - parent: 30 - type: Transform -- uid: 14916 - type: CableApcExtension - components: - - pos: 46.5,36.5 - parent: 30 - type: Transform -- uid: 14917 - type: CableApcExtension - components: - - pos: 46.5,37.5 - parent: 30 - type: Transform -- uid: 14918 - type: CableApcExtension - components: - - pos: 46.5,38.5 - parent: 30 - type: Transform -- uid: 14919 - type: CableApcExtension - components: - - pos: 46.5,39.5 - parent: 30 - type: Transform -- uid: 14920 - type: CableApcExtension - components: - - pos: 45.5,38.5 - parent: 30 - type: Transform -- uid: 14921 - type: CableApcExtension - components: - - pos: 44.5,38.5 - parent: 30 - type: Transform -- uid: 14922 - type: CableApcExtension - components: - - pos: 43.5,38.5 - parent: 30 - type: Transform -- uid: 14923 - type: CableApcExtension - components: - - pos: 42.5,38.5 - parent: 30 - type: Transform -- uid: 14924 - type: CableApcExtension - components: - - pos: 41.5,38.5 - parent: 30 - type: Transform -- uid: 14925 - type: CableApcExtension - components: - - pos: 40.5,38.5 - parent: 30 - type: Transform -- uid: 14926 - type: CableApcExtension - components: - - pos: 39.5,38.5 - parent: 30 - type: Transform -- uid: 14927 - type: CableApcExtension - components: - - pos: 38.5,38.5 - parent: 30 - type: Transform -- uid: 14928 - type: CableApcExtension - components: - - pos: 37.5,38.5 - parent: 30 - type: Transform -- uid: 14929 - type: CableApcExtension - components: - - pos: 36.5,39.5 - parent: 30 - type: Transform -- uid: 14930 - type: CableApcExtension - components: - - pos: 36.5,40.5 - parent: 30 - type: Transform -- uid: 14931 - type: CableApcExtension - components: - - pos: 36.5,41.5 - parent: 30 - type: Transform -- uid: 14932 - type: CableApcExtension - components: - - pos: 36.5,35.5 - parent: 30 - type: Transform -- uid: 14933 - type: CableApcExtension - components: - - pos: 36.5,34.5 - parent: 30 - type: Transform -- uid: 14934 - type: CableApcExtension - components: - - pos: 36.5,33.5 - parent: 30 - type: Transform -- uid: 14935 - type: CableApcExtension - components: - - pos: 36.5,32.5 - parent: 30 - type: Transform -- uid: 14936 - type: CableApcExtension - components: - - pos: 42.5,34.5 - parent: 30 - type: Transform -- uid: 14937 - type: CableApcExtension - components: - - pos: 42.5,33.5 - parent: 30 - type: Transform -- uid: 14938 - type: CableApcExtension - components: - - pos: 42.5,32.5 - parent: 30 - type: Transform -- uid: 14939 - type: CableApcExtension - components: - - pos: 42.5,39.5 - parent: 30 - type: Transform -- uid: 14940 - type: CableApcExtension - components: - - pos: 42.5,40.5 - parent: 30 - type: Transform -- uid: 14941 - type: CableApcExtension - components: - - pos: 42.5,41.5 - parent: 30 - type: Transform -- uid: 14942 - type: CableApcExtension - components: - - pos: 39.5,39.5 - parent: 30 - type: Transform -- uid: 14943 - type: CableApcExtension - components: - - pos: 39.5,41.5 - parent: 30 - type: Transform -- uid: 14944 - type: CableApcExtension - components: - - pos: 39.5,40.5 - parent: 30 - type: Transform -- uid: 14945 - type: CableApcExtension - components: - - pos: 39.5,34.5 - parent: 30 - type: Transform -- uid: 14946 - type: CableApcExtension - components: - - pos: 39.5,33.5 - parent: 30 - type: Transform -- uid: 14947 - type: CableApcExtension - components: - - pos: 39.5,32.5 - parent: 30 - type: Transform -- uid: 14948 - type: Poweredlight - components: - - pos: 32.5,39.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14949 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 32.5,34.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14950 - type: Poweredlight - components: - - pos: 30.5,43.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14951 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,33.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14952 - type: LockerEvidence - components: - - pos: -41.5,42.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14953 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,34.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14954 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,39.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14955 - type: FirelockGlass - components: - - pos: 16.5,45.5 - parent: 30 - type: Transform -- uid: 14956 - type: FirelockGlass - components: - - pos: 21.5,53.5 - parent: 30 - type: Transform -- uid: 14957 - type: FirelockGlass - components: - - pos: 29.5,53.5 - parent: 30 - type: Transform -- uid: 14958 - type: Catwalk - components: - - pos: 39.5,-18.5 - parent: 30 - type: Transform -- uid: 14959 - type: FirelockGlass - components: - - pos: 30.5,46.5 - parent: 30 - type: Transform -- uid: 14960 - type: FirelockGlass - components: - - pos: 44.5,30.5 - parent: 30 - type: Transform -- uid: 14961 - type: Catwalk - components: - - pos: 41.5,-18.5 - parent: 30 - type: Transform -- uid: 14962 - type: FirelockGlass - components: - - pos: 35.5,21.5 - parent: 30 - type: Transform -- uid: 14963 - type: Catwalk - components: - - pos: 43.5,-18.5 - parent: 30 - type: Transform -- uid: 14964 - type: CableApcExtension - components: - - pos: 38.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14965 - type: FirelockGlass - components: - - pos: 37.5,5.5 - parent: 30 - type: Transform -- uid: 14966 - type: WallSolid - components: - - pos: 37.5,4.5 - parent: 30 - type: Transform -- uid: 14967 - type: WallReinforced - components: - - pos: 39.5,19.5 - parent: 30 - type: Transform -- uid: 14968 - type: Grille - components: - - pos: 41.5,19.5 - parent: 30 - type: Transform -- uid: 14969 - type: Grille - components: - - pos: 41.5,20.5 - parent: 30 - type: Transform -- uid: 14970 - type: Grille - components: - - pos: 41.5,21.5 - parent: 30 - type: Transform -- uid: 14971 - type: Grille - components: - - pos: 41.5,23.5 - parent: 30 - type: Transform -- uid: 14972 - type: Grille - components: - - pos: 41.5,24.5 - parent: 30 - type: Transform -- uid: 14973 - type: Girder - components: - - pos: 40.5,16.5 - parent: 30 - type: Transform -- uid: 14974 - type: GasPipeStraight - components: - - pos: 16.5,45.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14975 - type: GasPipeStraight - components: - - pos: 16.5,47.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14976 - type: WoodDoor - components: - - pos: 18.5,61.5 - parent: 30 - type: Transform -- uid: 14977 - type: GasPipeStraight - components: - - pos: 16.5,44.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14978 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 16.5,43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14979 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 16.5,59.5 - parent: 30 - type: Transform -- uid: 14980 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14981 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14982 - type: UprightPianoInstrument - components: - - rot: -1.5707963267948966 rad - pos: 11.5,61.5 - parent: 30 - type: Transform -- uid: 14983 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 12.5,61.5 - parent: 30 - type: Transform -- uid: 14984 - type: BarSign - components: - - desc: Caw caw! - name: The Birdcage - type: MetaData - - pos: 16.5,63.5 - parent: 30 - type: Transform - - current: TheBirdCage - type: BarSign -- uid: 14985 - type: WoodDoor - components: - - pos: 18.5,57.5 - parent: 30 - type: Transform -- uid: 14986 - type: CableApcExtension - components: - - pos: 12.5,61.5 - parent: 30 - type: Transform -- uid: 14987 - type: CableApcExtension - components: - - pos: 12.5,57.5 - parent: 30 - type: Transform -- uid: 14988 - type: GasPipeStraight - components: - - pos: 16.5,52.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14989 - type: CableApcExtension - components: - - pos: 16.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14990 - type: GasPipeStraight - components: - - pos: 16.5,53.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14991 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 15.5,59.5 - parent: 30 - type: Transform -- uid: 14992 - type: CableApcExtension - components: - - pos: 12.5,55.5 - parent: 30 - type: Transform -- uid: 14993 - type: WallReinforced - components: - - pos: 13.5,62.5 - parent: 30 - type: Transform -- uid: 14994 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 16.5,43.5 - parent: 30 - type: Transform -- uid: 14995 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 16.5,44.5 - parent: 30 - type: Transform -- uid: 14996 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 16.5,46.5 - parent: 30 - type: Transform -- uid: 14997 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 16.5,47.5 - parent: 30 - type: Transform -- uid: 14998 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 16.5,48.5 - parent: 30 - type: Transform -- uid: 14999 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 16.5,49.5 - parent: 30 - type: Transform -- uid: 15000 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 16.5,50.5 - parent: 30 - type: Transform -- uid: 15001 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 16.5,51.5 - parent: 30 - type: Transform -- uid: 15002 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 16.5,52.5 - parent: 30 - type: Transform -- uid: 15003 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 16.5,53.5 - parent: 30 - type: Transform -- uid: 15004 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 16.5,54.5 - parent: 30 - type: Transform -- uid: 15005 - type: WallReinforced - components: - - pos: 20.5,61.5 - parent: 30 - type: Transform -- uid: 15006 - type: WallReinforced - components: - - pos: 15.5,48.5 - parent: 30 - type: Transform -- uid: 15007 - type: WallReinforced - components: - - pos: 20.5,63.5 - parent: 30 - type: Transform -- uid: 15008 - type: CableHV - components: - - pos: 14.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15009 - type: CableHV - components: - - pos: 15.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15010 - type: CableApcExtension - components: - - pos: 44.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15011 - type: CableHV - components: - - pos: 13.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15012 - type: CableHV - components: - - pos: 12.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15013 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.47407,12.554184 - parent: 30 - type: Transform -- uid: 15014 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,29.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15015 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 16.5,30.5 - parent: 30 - type: Transform -- uid: 15016 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -0.5,40.5 - parent: 30 - type: Transform -- uid: 15017 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -19.5,46.5 - parent: 30 - type: Transform -- uid: 15018 - type: GasPipeStraight - components: - - pos: 16.5,49.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15019 - type: Rack - components: - - pos: 41.5,16.5 - parent: 30 - type: Transform -- uid: 15020 - type: Catwalk - components: - - pos: 35.5,23.5 - parent: 30 - type: Transform -- uid: 15021 - type: Catwalk - components: - - pos: 35.5,24.5 - parent: 30 - type: Transform -- uid: 15022 - type: Catwalk - components: - - pos: 35.5,25.5 - parent: 30 - type: Transform -- uid: 15023 - type: Catwalk - components: - - pos: 38.5,19.5 - parent: 30 - type: Transform -- uid: 15024 - type: Catwalk - components: - - pos: 37.5,19.5 - parent: 30 - type: Transform -- uid: 15025 - type: Catwalk - components: - - pos: 36.5,19.5 - parent: 30 - type: Transform -- uid: 15026 - type: Catwalk - components: - - pos: 35.5,19.5 - parent: 30 - type: Transform -- uid: 15027 - type: Catwalk - components: - - pos: 38.5,17.5 - parent: 30 - type: Transform -- uid: 15028 - type: Catwalk - components: - - pos: 39.5,17.5 - parent: 30 - type: Transform -- uid: 15029 - type: Catwalk - components: - - pos: 40.5,17.5 - parent: 30 - type: Transform -- uid: 15030 - type: Catwalk - components: - - pos: 41.5,17.5 - parent: 30 - type: Transform -- uid: 15031 - type: Catwalk - components: - - pos: 42.5,17.5 - parent: 30 - type: Transform -- uid: 15032 - type: WallReinforced - components: - - pos: 42.5,13.5 - parent: 30 - type: Transform -- uid: 15033 - type: WallReinforced - components: - - pos: 42.5,12.5 - parent: 30 - type: Transform -- uid: 15034 - type: CableApcExtension - components: - - pos: 43.5,15.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15035 - type: CableApcExtension - components: - - pos: 43.5,14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15036 - type: CableHV - components: - - pos: 43.5,13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15037 - type: Catwalk - components: - - pos: 42.5,9.5 - parent: 30 - type: Transform -- uid: 15038 - type: Catwalk - components: - - pos: 42.5,8.5 - parent: 30 - type: Transform -- uid: 15039 - type: Catwalk - components: - - pos: 42.5,6.5 - parent: 30 - type: Transform -- uid: 15040 - type: Catwalk - components: - - pos: 42.5,7.5 - parent: 30 - type: Transform -- uid: 15041 - type: Catwalk - components: - - pos: 38.5,5.5 - parent: 30 - type: Transform -- uid: 15042 - type: Catwalk - components: - - pos: 39.5,5.5 - parent: 30 - type: Transform -- uid: 15043 - type: Catwalk - components: - - pos: 40.5,5.5 - parent: 30 - type: Transform -- uid: 15044 - type: Catwalk - components: - - pos: 41.5,5.5 - parent: 30 - type: Transform -- uid: 15045 - type: Catwalk - components: - - pos: 19.5,29.5 - parent: 30 - type: Transform -- uid: 15046 - type: Catwalk - components: - - pos: 19.5,30.5 - parent: 30 - type: Transform -- uid: 15047 - type: LockerWeldingSuppliesFilled - components: - - pos: 18.5,31.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15048 - type: CableHV - components: - - pos: 12.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15049 - type: GasPipeStraight - components: - - pos: 16.5,51.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15050 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 14.5,59.5 - parent: 30 - type: Transform -- uid: 15051 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 17.5,59.5 - parent: 30 - type: Transform -- uid: 15052 - type: Table - components: - - pos: 14.5,60.5 - parent: 30 - type: Transform -- uid: 15053 - type: GasPipeStraight - components: - - pos: 16.5,50.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15054 - type: GasPipeStraight - components: - - pos: 16.5,46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15055 - type: GasPipeStraight - components: - - pos: 16.5,54.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15056 - type: Catwalk - components: - - pos: 23.5,53.5 - parent: 30 - type: Transform -- uid: 15057 - type: Catwalk - components: - - pos: 24.5,53.5 - parent: 30 - type: Transform -- uid: 15058 - type: Catwalk - components: - - pos: 25.5,53.5 - parent: 30 - type: Transform -- uid: 15059 - type: Catwalk - components: - - pos: 26.5,53.5 - parent: 30 - type: Transform -- uid: 15060 - type: Catwalk - components: - - pos: 27.5,53.5 - parent: 30 - type: Transform -- uid: 15061 - type: GasPipeStraight - components: - - pos: 16.5,48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15062 - type: Table - components: - - pos: 37.5,30.5 - parent: 30 - type: Transform -- uid: 15063 - type: Table - components: - - pos: 40.5,29.5 - parent: 30 - type: Transform -- uid: 15064 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 36.5,30.5 - parent: 30 - type: Transform -- uid: 15065 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 38.5,30.5 - parent: 30 - type: Transform -- uid: 15066 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 40.5,28.5 - parent: 30 - type: Transform -- uid: 15067 - type: Chair - components: - - pos: 40.5,30.5 - parent: 30 - type: Transform -- uid: 15068 - type: FoodPizzaSassysageSlice - components: - - pos: 37.458298,30.645653 - parent: 30 - type: Transform -- uid: 15069 - type: FoodPizzaDonkpocketSlice - components: - - pos: 40.458298,29.708153 - parent: 30 - type: Transform -- uid: 15070 - type: ClothingUniformJumpskirtPerformer - components: - - pos: 38.459328,30.474371 - parent: 30 - type: Transform -- uid: 15071 - type: ClothingShoesBootsPerformer - components: - - pos: 38.396828,30.396246 - parent: 30 - type: Transform -- uid: 15072 - type: PoweredSmallLightEmpty - components: - - pos: 38.5,30.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15073 - type: ClothingHeadHatAnimalHeadslime - components: - - pos: -34.52919,-20.342724 - parent: 30 - type: Transform -- uid: 15074 - type: ClosetL3VirologyFilled - components: - - pos: -27.5,-14.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15075 - type: SignBiohazardMed - components: - - pos: -29.5,-17.5 - parent: 30 - type: Transform -- uid: 15076 - type: ClothingEyesEyepatch - components: - - pos: -23.507284,44.49221 - parent: 30 - type: Transform -- uid: 15077 - type: Rack - components: - - pos: 19.5,54.5 - parent: 30 - type: Transform -- uid: 15078 - type: DoorElectronics - components: - - pos: 19.405787,54.643536 - parent: 30 - type: Transform -- uid: 15079 - type: DoorElectronics - components: - - pos: 19.593287,54.456036 - parent: 30 - type: Transform -- uid: 15080 - type: MaintenanceWeaponSpawner - components: - - pos: 20.5,54.5 - parent: 30 - type: Transform -- uid: 15081 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15082 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15083 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15084 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15085 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15086 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15087 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15088 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15089 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15090 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15091 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15092 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15093 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15094 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15095 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15096 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15097 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15098 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15099 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15100 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15101 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15102 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15103 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15104 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15105 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15106 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15107 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15108 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15109 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15110 - type: FloorTileItemEighties - components: - - pos: 36.58802,28.504393 - parent: 30 - type: Transform -- uid: 15111 - type: soda_dispenser - components: - - rot: 1.5707963267948966 rad - pos: 36.5,29.5 - parent: 30 - type: Transform -- uid: 15112 - type: SynthesizerInstrument - components: - - pos: 39.240578,29.342842 - parent: 30 - type: Transform -- uid: 15113 - type: ClothingOuterCoatBomber - components: - - pos: 40.490578,30.452217 - parent: 30 - type: Transform -- uid: 15114 - type: ClothingEyesGlassesGarGiga - components: - - pos: 36.506203,30.427496 - parent: 30 - type: Transform -- uid: 15115 - type: ClothingBeltMilitaryWebbing - components: - - pos: 33.456085,32.56812 - parent: 30 - type: Transform -- uid: 15116 - type: ClothingUnderSocksBee - components: - - pos: 3.4159074,-25.481888 - parent: 30 - type: Transform -- uid: 15117 - type: PlushieBee - components: - - pos: 1.7007709,-24.502272 - parent: 30 - type: Transform -- uid: 15118 - type: TableCarpet - components: - - pos: 36.5,1.5 - parent: 30 - type: Transform -- uid: 15119 - type: TableCarpet - components: - - pos: 35.5,1.5 - parent: 30 - type: Transform -- uid: 15120 - type: TableCarpet - components: - - pos: 35.5,2.5 - parent: 30 - type: Transform -- uid: 15121 - type: TableCarpet - components: - - pos: 35.5,3.5 - parent: 30 - type: Transform -- uid: 15122 - type: TableCarpet - components: - - pos: 36.5,3.5 - parent: 30 - type: Transform -- uid: 15123 - type: ClothingUniformJumpskirtDetective - components: - - pos: 36.473495,2.5651448 - parent: 30 - type: Transform -- uid: 15124 - type: ClothingUniformJumpsuitDetective - components: - - pos: 36.442245,2.5338948 - parent: 30 - type: Transform -- uid: 15125 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 36.5,0.5 - parent: 30 - type: Transform -- uid: 15126 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 35.5,0.5 - parent: 30 - type: Transform -- uid: 15127 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 34.5,1.5 - parent: 30 - type: Transform -- uid: 15128 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 34.5,2.5 - parent: 30 - type: Transform -- uid: 15129 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 34.5,3.5 - parent: 30 - type: Transform -- uid: 15130 - type: StoolBar - components: - - pos: 35.5,4.5 - parent: 30 - type: Transform -- uid: 15131 - type: StoolBar - components: - - pos: 36.5,4.5 - parent: 30 - type: Transform -- uid: 15132 - type: MaterialWoodPlank - components: - - pos: 33.59659,0.55869615 - parent: 30 - type: Transform -- uid: 15133 - type: d6Dice - components: - - pos: 35.356255,2.7353995 - parent: 30 - type: Transform -- uid: 15134 - type: d6Dice - components: - - pos: 36.40313,3.6260245 - parent: 30 - type: Transform -- uid: 15135 - type: IngotGold1 - components: - - pos: 35.543755,1.9385245 - parent: 30 - type: Transform -- uid: 15136 - type: IngotGold1 - components: - - pos: 36.481255,1.5791495 - parent: 30 - type: Transform -- uid: 15137 - type: IngotGold1 - components: - - pos: 35.52813,3.5478995 - parent: 30 - type: Transform -- uid: 15138 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,3.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15139 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 17.5,7.5 - parent: 30 - type: Transform -- uid: 15140 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 16.5,7.5 - parent: 30 - type: Transform -- uid: 15141 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 15.5,7.5 - parent: 30 - type: Transform -- uid: 15142 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 14.5,7.5 - parent: 30 - type: Transform -- uid: 15143 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 13.5,7.5 - parent: 30 - type: Transform -- uid: 15144 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 30 - type: Transform -- uid: 15145 - type: Rack - components: - - pos: 13.5,6.5 - parent: 30 - type: Transform -- uid: 15146 - type: ToySpawner - components: - - pos: 13.5,6.5 - parent: 30 - type: Transform -- uid: 15147 - type: ClothingOuterCoatPirate - components: - - pos: 19.486046,8.362018 - parent: 30 - type: Transform -- uid: 15148 - type: ClothingHeadHatPirate - components: - - pos: 19.40792,8.737018 - parent: 30 - type: Transform -- uid: 15149 - type: WallSolid - components: - - pos: 18.5,7.5 - parent: 30 - type: Transform -- uid: 15150 - type: WallSolid - components: - - pos: 18.5,8.5 - parent: 30 - type: Transform -- uid: 15151 - type: SpaceCash10 - components: - - pos: 19.53292,7.7526426 - parent: 30 - type: Transform -- uid: 15152 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 30 - type: Transform -- uid: 15153 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 16.5,8.5 - parent: 30 - type: Transform -- uid: 15154 - type: NitrogenCanister - components: - - pos: 15.5,8.5 - parent: 30 - type: Transform -- uid: 15155 - type: OxygenCanister - components: - - pos: 14.5,8.5 - parent: 30 - type: Transform -- uid: 15156 - type: AirCanister - components: - - pos: 16.5,8.5 - parent: 30 - type: Transform -- uid: 15157 - type: ClosetToolFilled - components: - - pos: 12.5,8.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15158 - type: Rack - components: - - pos: 17.5,8.5 - parent: 30 - type: Transform -- uid: 15159 - type: MaintenanceToolSpawner - components: - - pos: 17.5,8.5 - parent: 30 - type: Transform -- uid: 15160 - type: RandomSpawner - components: - - pos: 13.5,8.5 - parent: 30 - type: Transform -- uid: 15161 - type: RandomSpawner - components: - - pos: 16.5,-2.5 - parent: 30 - type: Transform -- uid: 15162 - type: RandomSpawner - components: - - pos: 9.5,-11.5 - parent: 30 - type: Transform -- uid: 15163 - type: RandomSpawner - components: - - pos: -3.5,-25.5 - parent: 30 - type: Transform -- uid: 15164 - type: RandomSpawner - components: - - pos: -1.5,-16.5 - parent: 30 - type: Transform -- uid: 15165 - type: RandomSpawner - components: - - pos: -2.5,-9.5 - parent: 30 - type: Transform -- uid: 15166 - type: RandomSpawner - components: - - pos: -7.5,-14.5 - parent: 30 - type: Transform -- uid: 15167 - type: RandomSpawner - components: - - pos: -7.5,-25.5 - parent: 30 - type: Transform -- uid: 15168 - type: RandomSpawner - components: - - pos: -15.5,-26.5 - parent: 30 - type: Transform -- uid: 15169 - type: CableApcExtension - components: - - pos: 36.5,-3.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15170 - type: RandomSpawner - components: - - pos: -12.5,-2.5 - parent: 30 - type: Transform -- uid: 15171 - type: RandomSpawner - components: - - pos: -3.5,-1.5 - parent: 30 - type: Transform -- uid: 15172 - type: RandomSpawner - components: - - pos: -0.5,0.5 - parent: 30 - type: Transform -- uid: 15173 - type: RandomSpawner - components: - - pos: -6.5,10.5 - parent: 30 - type: Transform -- uid: 15174 - type: RandomSpawner - components: - - pos: 0.5,7.5 - parent: 30 - type: Transform -- uid: 15175 - type: RandomSpawner - components: - - pos: -14.5,10.5 - parent: 30 - type: Transform -- uid: 15176 - type: RandomSpawner - components: - - pos: -21.5,5.5 - parent: 30 - type: Transform -- uid: 15177 - type: RandomSpawner - components: - - pos: -27.5,1.5 - parent: 30 - type: Transform -- uid: 15178 - type: RandomSpawner - components: - - pos: -34.5,4.5 - parent: 30 - type: Transform -- uid: 15179 - type: RandomSpawner - components: - - pos: -34.5,16.5 - parent: 30 - type: Transform -- uid: 15181 - type: RandomSpawner - components: - - pos: -57.5,9.5 - parent: 30 - type: Transform -- uid: 15182 - type: RandomSpawner - components: - - pos: -49.5,24.5 - parent: 30 - type: Transform -- uid: 15183 - type: RandomSpawner - components: - - pos: -24.5,32.5 - parent: 30 - type: Transform -- uid: 15184 - type: RandomSpawner - components: - - pos: -29.5,30.5 - parent: 30 - type: Transform -- uid: 15185 - type: RandomSpawner - components: - - pos: -34.5,28.5 - parent: 30 - type: Transform -- uid: 15186 - type: RandomSpawner - components: - - pos: -32.5,37.5 - parent: 30 - type: Transform -- uid: 15187 - type: RandomSpawner - components: - - pos: -44.5,35.5 - parent: 30 - type: Transform -- uid: 15188 - type: RandomSpawner - components: - - pos: -43.5,39.5 - parent: 30 - type: Transform -- uid: 15189 - type: RandomSpawner - components: - - pos: -48.5,44.5 - parent: 30 - type: Transform -- uid: 15190 - type: RandomSpawner - components: - - pos: -51.5,63.5 - parent: 30 - type: Transform -- uid: 15191 - type: RandomSpawner - components: - - pos: -45.5,66.5 - parent: 30 - type: Transform -- uid: 15192 - type: RandomSpawner - components: - - pos: -33.5,46.5 - parent: 30 - type: Transform -- uid: 15193 - type: RandomSpawner - components: - - pos: -1.5,27.5 - parent: 30 - type: Transform -- uid: 15194 - type: RandomSpawner - components: - - pos: -18.5,25.5 - parent: 30 - type: Transform -- uid: 15195 - type: RandomSpawner - components: - - pos: 7.5,32.5 - parent: 30 - type: Transform -- uid: 15196 - type: RandomSpawner - components: - - pos: 20.5,34.5 - parent: 30 - type: Transform -- uid: 15197 - type: RandomSpawner - components: - - pos: 22.5,25.5 - parent: 30 - type: Transform -- uid: 15198 - type: Beaker - components: - - pos: 24.509424,10.9641285 - parent: 30 - type: Transform -- uid: 15199 - type: Beaker - components: - - pos: 24.65005,10.8391285 - parent: 30 - type: Transform -- uid: 15200 - type: RandomSpawner - components: - - pos: 34.5,0.5 - parent: 30 - type: Transform -- uid: 15201 - type: CableApcExtension - components: - - pos: 29.5,-6.5 - parent: 30 - type: Transform -- uid: 15202 - type: SurveillanceCameraSupply - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Bay - type: SurveillanceCamera -- uid: 15203 - type: LockerSalvageSpecialistFilled - components: - - pos: 29.5,-9.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15204 - type: WallSolid - components: - - pos: 29.5,-8.5 - parent: 30 - type: Transform -- uid: 15205 - type: Carpet - components: - - pos: -29.5,-2.5 - parent: 30 - type: Transform -- uid: 15206 - type: MaintenanceFluffSpawner - components: - - pos: 16.5,60.5 - parent: 30 - type: Transform -- uid: 15207 - type: Grille - components: - - pos: 15.5,63.5 - parent: 30 - type: Transform -- uid: 15208 - type: CableApcExtension - components: - - pos: 19.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15209 - type: Grille - components: - - pos: 36.5,23.5 - parent: 30 - type: Transform -- uid: 15210 - type: Grille - components: - - pos: 36.5,24.5 - parent: 30 - type: Transform -- uid: 15211 - type: RandomSpawner - components: - - pos: -22.5,23.5 - parent: 30 - type: Transform -- uid: 15212 - type: RandomSpawner - components: - - pos: -48.5,32.5 - parent: 30 - type: Transform -- uid: 15215 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 20.5,47.5 - parent: 30 - type: Transform -- uid: 15216 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 20.5,49.5 - parent: 30 - type: Transform -- uid: 15217 - type: PlushieLizard - components: - - pos: 20.536215,48.41713 - parent: 30 - type: Transform -- uid: 15218 - type: ClothingHeadHatRichard - components: - - pos: 19.385248,46.62064 - parent: 30 - type: Transform -- uid: 15219 - type: Girder - components: - - pos: 20.5,46.5 - parent: 30 - type: Transform -- uid: 15220 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,43.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15221 - type: WallReinforced - components: - - pos: 11.5,48.5 - parent: 30 - type: Transform -- uid: 15222 - type: CableApcExtension - components: - - pos: 18.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15223 - type: Grille - components: - - pos: 17.5,63.5 - parent: 30 - type: Transform -- uid: 15224 - type: WallReinforced - components: - - pos: 20.5,62.5 - parent: 30 - type: Transform -- uid: 15225 - type: Table - components: - - pos: 19.5,46.5 - parent: 30 - type: Transform -- uid: 15226 - type: Rack - components: - - pos: 18.5,46.5 - parent: 30 - type: Transform -- uid: 15227 - type: MaintenanceFluffSpawner - components: - - pos: 18.5,46.5 - parent: 30 - type: Transform -- uid: 15228 - type: ClosetFireFilled - components: - - pos: 20.5,50.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15229 - type: RandomPosterAny - components: - - pos: 15.5,46.5 - parent: 30 - type: Transform -- uid: 15230 - type: RandomPosterAny - components: - - pos: 21.5,50.5 - parent: 30 - type: Transform -- uid: 15231 - type: WallReinforced - components: - - pos: 10.5,54.5 - parent: 30 - type: Transform -- uid: 15232 - type: RandomPosterLegit - components: - - pos: 22.5,43.5 - parent: 30 - type: Transform -- uid: 15233 - type: SignCryogenicsMed - components: - - pos: 32.5,40.5 - parent: 30 - type: Transform -- uid: 15234 - type: SignDirectionalCryo - components: - - rot: 1.5707963267948966 rad - pos: 12.5,28.5 - parent: 30 - type: Transform -- uid: 15235 - type: SignDirectionalCryo - components: - - rot: 3.141592653589793 rad - pos: 28.5,40.5 - parent: 30 - type: Transform -- uid: 15236 - type: ClosetBase - components: - - pos: 33.5,41.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15237 - type: SpaceVillainArcadeFilled - components: - - pos: 37.5,45.5 - parent: 30 - type: Transform -- uid: 15238 - type: TableWood - components: - - pos: 35.5,43.5 - parent: 30 - type: Transform -- uid: 15239 - type: TableWood - components: - - pos: 39.5,43.5 - parent: 30 - type: Transform -- uid: 15240 - type: ClothingOuterWizard - components: - - pos: 35.461174,43.595585 - parent: 30 - type: Transform -- uid: 15241 - type: ClothingHeadHatWizard - components: - - pos: 35.44555,43.82996 - parent: 30 - type: Transform -- uid: 15242 - type: ClothingShoesWizard - components: - - pos: 35.492424,43.408085 - parent: 30 - type: Transform -- uid: 15243 - type: ClothingOuterWizardRed - components: - - pos: 39.523674,43.658085 - parent: 30 - type: Transform -- uid: 15244 - type: ClothingHeadHatRedwizard - components: - - pos: 39.5393,43.86121 - parent: 30 - type: Transform -- uid: 15245 - type: ClothingShoesWizard - components: - - pos: 39.523674,43.39246 - parent: 30 - type: Transform -- uid: 15246 - type: Bed - components: - - pos: 39.5,45.5 - parent: 30 - type: Transform -- uid: 15247 - type: BedsheetWiz - components: - - pos: 39.5,45.5 - parent: 30 - type: Transform -- uid: 15248 - type: Table - components: - - pos: 43.5,45.5 - parent: 30 - type: Transform -- uid: 15249 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 43.525017,45.46227 - parent: 30 - type: Transform -- uid: 15250 - type: Bed - components: - - pos: 43.5,43.5 - parent: 30 - type: Transform -- uid: 15251 - type: Bed - components: - - pos: 47.5,43.5 - parent: 30 - type: Transform -- uid: 15252 - type: Bed - components: - - pos: 47.5,45.5 - parent: 30 - type: Transform -- uid: 15253 - type: BedsheetSpawner - components: - - pos: 43.5,43.5 - parent: 30 - type: Transform -- uid: 15254 - type: BedsheetSpawner - components: - - pos: 47.5,43.5 - parent: 30 - type: Transform -- uid: 15255 - type: BedsheetSpawner - components: - - pos: 47.5,45.5 - parent: 30 - type: Transform -- uid: 15256 - type: ClothingShoesSlippers - components: - - pos: 42.543846,45.290394 - parent: 30 - type: Transform -- uid: 15257 - type: PoweredSmallLight - components: - - pos: 42.5,45.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15258 - type: PoweredSmallLightEmpty - components: - - pos: 46.5,45.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15259 - type: PoweredSmallLightEmpty - components: - - pos: 37.5,45.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15260 - type: Table - components: - - pos: 47.5,44.5 - parent: 30 - type: Transform -- uid: 15261 - type: Rack - components: - - pos: 46.5,45.5 - parent: 30 - type: Transform -- uid: 15262 - type: MaintenanceWeaponSpawner - components: - - pos: 46.5,45.5 - parent: 30 - type: Transform -- uid: 15263 - type: ClothingEyesGlasses - components: - - pos: 24.515018,11.567955 - parent: 30 - type: Transform -- uid: 15264 - type: ToolboxArtistic - components: - - pos: -21.467775,23.567343 - parent: 30 - type: Transform -- uid: 15265 - type: ClothingEyesGlassesSunglasses - components: - - pos: 47.465996,44.649086 - parent: 30 - type: Transform -- uid: 15266 - type: CarpetGreen - components: - - pos: 46.5,44.5 - parent: 30 - type: Transform -- uid: 15267 - type: CarpetPink - components: - - pos: 41.5,43.5 - parent: 30 - type: Transform -- uid: 15268 - type: CarpetPink - components: - - pos: 42.5,43.5 - parent: 30 - type: Transform -- uid: 15269 - type: CarpetPurple - components: - - pos: 36.5,45.5 - parent: 30 - type: Transform -- uid: 15270 - type: CableApcExtension - components: - - pos: 42.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15271 - type: ToolboxEmergencyFilled - components: - - pos: 35.4208,45.45364 - parent: 30 - type: Transform -- uid: 15272 - type: RandomSpawner - components: - - pos: 37.5,43.5 - parent: 30 - type: Transform -- uid: 15273 - type: RandomSpawner - components: - - pos: 45.5,45.5 - parent: 30 - type: Transform -- uid: 15274 - type: RandomPosterLegit - components: - - pos: 45.5,46.5 - parent: 30 - type: Transform -- uid: 15275 - type: RandomPosterLegit - components: - - pos: 33.5,46.5 - parent: 30 - type: Transform -- uid: 15276 - type: ClothingHeadHatCone - components: - - pos: -2.5244465,23.614292 - parent: 30 - type: Transform -- uid: 15277 - type: ClothingHeadHatPaper - components: - - pos: -48.469406,64.23705 - parent: 30 - type: Transform -- uid: 15278 - type: ClothingHeadHatWeldingMaskPainted - components: - - pos: 47.48796,44.35539 - parent: 30 - type: Transform -- uid: 15279 - type: ClothingShoesChef - components: - - pos: -17.545338,13.157639 - parent: 30 - type: Transform -- uid: 15281 - type: ClothingHandsGlovesFingerless - components: - - pos: 41.52864,16.503365 - parent: 30 - type: Transform -- uid: 15282 - type: ComputerAnalysisConsole - components: - - pos: 37.5,10.5 - parent: 30 - type: Transform -- uid: 15283 - type: PoweredSmallLight - components: - - pos: 32.5,45.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15284 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,53.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15285 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 49.5,28.5 - parent: 30 - type: Transform -- uid: 15286 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 50.5,28.5 - parent: 30 - type: Transform -- uid: 15287 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 51.5,28.5 - parent: 30 - type: Transform -- uid: 15288 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 52.5,28.5 - parent: 30 - type: Transform -- uid: 15289 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 52.5,32.5 - parent: 30 - type: Transform -- uid: 15290 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 51.5,32.5 - parent: 30 - type: Transform -- uid: 15291 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 50.5,32.5 - parent: 30 - type: Transform -- uid: 15292 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 49.5,32.5 - parent: 30 - type: Transform -- uid: 15293 - type: AirlockEngineeringLocked - components: - - pos: 48.5,30.5 - parent: 30 - type: Transform -- uid: 15294 - type: CableHV - components: - - pos: 49.5,31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15295 - type: CableHV - components: - - pos: 50.5,31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15296 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 51.5,30.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 15297 - type: CableHV - components: - - pos: 51.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15298 - type: CableHV - components: - - pos: 52.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15299 - type: SMESBasic - components: - - pos: 51.5,31.5 - parent: 30 - type: Transform -- uid: 15300 - type: CableHV - components: - - pos: 51.5,31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15301 - type: CableHV - components: - - pos: 49.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15302 - type: CableHV - components: - - pos: 48.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15303 - type: CableHV - components: - - pos: 47.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15304 - type: CableHV - components: - - pos: 46.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15305 - type: CableHV - components: - - pos: 45.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15306 - type: CableHV - components: - - pos: 44.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15307 - type: CableHV - components: - - pos: 43.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15308 - type: CableHV - components: - - pos: 42.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15309 - type: CableHV - components: - - pos: 42.5,28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15310 - type: CableHV - components: - - pos: 42.5,28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15311 - type: CableHV - components: - - pos: 42.5,29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15312 - type: CableHV - components: - - pos: 42.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15313 - type: CableHV - components: - - pos: 41.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15314 - type: CableHV - components: - - pos: 40.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15315 - type: CableHV - components: - - pos: 39.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15316 - type: CableHV - components: - - pos: 38.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15317 - type: CableHV - components: - - pos: 37.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15318 - type: CableHV - components: - - pos: 36.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15319 - type: CableHV - components: - - pos: 35.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15320 - type: CableHV - components: - - pos: 42.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15321 - type: CableHV - components: - - pos: 42.5,19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15322 - type: CableHV - components: - - pos: 42.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15323 - type: CableHV - components: - - pos: 42.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15324 - type: CableHV - components: - - pos: 42.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15325 - type: CableHV - components: - - pos: 42.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15326 - type: CableHV - components: - - pos: 42.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15327 - type: CableHV - components: - - pos: 42.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15328 - type: ReinforcedWindow - components: - - pos: 52.5,29.5 - parent: 30 - type: Transform -- uid: 15329 - type: ReinforcedWindow - components: - - pos: 52.5,31.5 - parent: 30 - type: Transform -- uid: 15330 - type: ReinforcedWindow - components: - - pos: 54.5,29.5 - parent: 30 - type: Transform -- uid: 15331 - type: ReinforcedWindow - components: - - pos: 54.5,31.5 - parent: 30 - type: Transform -- uid: 15332 - type: ReinforcedWindow - components: - - pos: 53.5,29.5 - parent: 30 - type: Transform -- uid: 15333 - type: ReinforcedWindow - components: - - pos: 53.5,31.5 - parent: 30 - type: Transform -- uid: 15334 - type: AirlockExternalGlassLocked - components: - - pos: 54.5,30.5 - parent: 30 - type: Transform -- uid: 15335 - type: AirlockExternalGlassLocked - components: - - pos: 52.5,30.5 - parent: 30 - type: Transform -- uid: 15336 - type: Grille - components: - - pos: 52.5,29.5 - parent: 30 - type: Transform -- uid: 15337 - type: Grille - components: - - pos: 53.5,29.5 - parent: 30 - type: Transform -- uid: 15338 - type: Grille - components: - - pos: 54.5,29.5 - parent: 30 - type: Transform -- uid: 15339 - type: Grille - components: - - pos: 54.5,31.5 - parent: 30 - type: Transform -- uid: 15340 - type: Grille - components: - - pos: 52.5,31.5 - parent: 30 - type: Transform -- uid: 15341 - type: CableApcExtension - components: - - pos: 48.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15342 - type: CableApcExtension - components: - - pos: 49.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15343 - type: CableApcExtension - components: - - pos: 50.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15344 - type: CableApcExtension - components: - - pos: 51.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15345 - type: CableApcExtension - components: - - pos: 52.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15346 - type: CableApcExtension - components: - - pos: 53.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15347 - type: PoweredSmallLight - components: - - pos: 50.5,31.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15348 - type: PoweredSmallLight - components: - - pos: 47.5,31.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15349 - type: PoweredSmallLight - components: - - pos: 50.5,24.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15350 - type: PoweredSmallLight - components: - - pos: 53.5,24.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15351 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 48.5,21.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15352 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,19.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15354 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,25.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15355 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,18.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15356 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,20.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15357 - type: PoweredSmallLight - components: - - pos: 47.5,19.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15358 - type: CableHV - components: - - pos: 53.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15359 - type: CableHV - components: - - pos: 54.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15360 - type: CableHV - components: - - pos: 55.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15361 - type: CableHV - components: - - pos: 56.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15362 - type: CableHV - components: - - pos: 57.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15363 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 11.5,54.5 - parent: 30 - type: Transform -- uid: 15364 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 13.5,54.5 - parent: 30 - type: Transform -- uid: 15365 - type: CableHV - components: - - pos: 58.5,32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15366 - type: CableHV - components: - - pos: 58.5,33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15367 - type: CableHV - components: - - pos: 58.5,34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15368 - type: CableHV - components: - - pos: 58.5,35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15369 - type: CableHV - components: - - pos: 58.5,36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15370 - type: CableHV - components: - - pos: 58.5,37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15371 - type: CableHV - components: - - pos: 58.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15372 - type: CableHV - components: - - pos: 58.5,39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15373 - type: CableHV - components: - - pos: 60.5,32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15374 - type: CableHV - components: - - pos: 60.5,33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15375 - type: CableHV - components: - - pos: 60.5,34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15376 - type: CableHV - components: - - pos: 60.5,35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15377 - type: CableHV - components: - - pos: 60.5,36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15378 - type: CableHV - components: - - pos: 60.5,37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15379 - type: CableHV - components: - - pos: 60.5,37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15380 - type: CableHV - components: - - pos: 60.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15381 - type: CableHV - components: - - pos: 60.5,39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15382 - type: AtmosFixFreezerMarker - components: - - pos: -19.5,14.5 - parent: 30 - type: Transform -- uid: 15383 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 14.5,61.5 - parent: 30 - type: Transform -- uid: 15384 - type: CableHV - components: - - pos: 62.5,32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15385 - type: CableHV - components: - - pos: 62.5,33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15386 - type: CableHV - components: - - pos: 62.5,34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15387 - type: CableHV - components: - - pos: 62.5,35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15388 - type: CableHV - components: - - pos: 62.5,36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15389 - type: CableHV - components: - - pos: 62.5,37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15390 - type: CableHV - components: - - pos: 62.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15391 - type: CableHV - components: - - pos: 62.5,39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15392 - type: CableHV - components: - - pos: 64.5,32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15393 - type: CableHV - components: - - pos: 64.5,33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15394 - type: CableHV - components: - - pos: 64.5,34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15395 - type: CableHV - components: - - pos: 64.5,35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15396 - type: CableHV - components: - - pos: 64.5,36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15397 - type: CableHV - components: - - pos: 64.5,37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15398 - type: CableHV - components: - - pos: 64.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15399 - type: CableHV - components: - - pos: 64.5,39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15400 - type: CableHV - components: - - pos: 66.5,32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15401 - type: CableHV - components: - - pos: 66.5,33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15402 - type: CableHV - components: - - pos: 66.5,34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15403 - type: CableHV - components: - - pos: 66.5,35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15404 - type: CableHV - components: - - pos: 66.5,36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15405 - type: CableHV - components: - - pos: 66.5,37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15406 - type: CableHV - components: - - pos: 66.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15407 - type: CableHV - components: - - pos: 66.5,39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15408 - type: CableHV - components: - - pos: 68.5,32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15409 - type: CableHV - components: - - pos: 68.5,33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15410 - type: CableHV - components: - - pos: 68.5,34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15411 - type: CableHV - components: - - pos: 68.5,35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15412 - type: CableHV - components: - - pos: 68.5,36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15413 - type: CableHV - components: - - pos: 68.5,37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15414 - type: CableHV - components: - - pos: 68.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15415 - type: CableHV - components: - - pos: 68.5,39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15416 - type: CableHV - components: - - pos: 70.5,32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15417 - type: CableHV - components: - - pos: 70.5,33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15418 - type: CableHV - components: - - pos: 70.5,34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15419 - type: CableHV - components: - - pos: 70.5,35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15420 - type: CableHV - components: - - pos: 70.5,36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15421 - type: CableHV - components: - - pos: 70.5,37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15422 - type: CableHV - components: - - pos: 70.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15423 - type: CableHV - components: - - pos: 70.5,39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15424 - type: CableHV - components: - - pos: 72.5,32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15425 - type: CableHV - components: - - pos: 72.5,33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15426 - type: CableHV - components: - - pos: 72.5,34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15427 - type: CableHV - components: - - pos: 72.5,35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15428 - type: CableHV - components: - - pos: 72.5,36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15429 - type: CableHV - components: - - pos: 72.5,37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15430 - type: CableHV - components: - - pos: 72.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15431 - type: CableHV - components: - - pos: 72.5,39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15432 - type: CableApcExtension - components: - - pos: 40.5,-19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15433 - type: WallSolidRust - components: - - pos: 45.5,17.5 - parent: 30 - type: Transform -- uid: 15434 - type: CableApcExtension - components: - - pos: 43.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15435 - type: CableApcExtension - components: - - pos: 45.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15436 - type: CableApcExtension - components: - - pos: 47.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15437 - type: Catwalk - components: - - pos: 47.5,16.5 - parent: 30 - type: Transform -- uid: 15438 - type: OxygenCanister - components: - - pos: 46.5,17.5 - parent: 30 - type: Transform -- uid: 15439 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,6.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15440 - type: CableApcExtension - components: - - pos: 42.5,8.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15441 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 51.5,20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15442 - type: CableHV - components: - - pos: 43.5,10.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15443 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 42.5,16.5 - parent: 30 - type: Transform -- uid: 15444 - type: GrilleBroken - components: - - pos: 74.5,27.5 - parent: 30 - type: Transform -- uid: 15445 - type: Grille - components: - - pos: 76.5,28.5 - parent: 30 - type: Transform -- uid: 15446 - type: Grille - components: - - pos: 77.5,32.5 - parent: 30 - type: Transform -- uid: 15447 - type: Grille - components: - - pos: 77.5,31.5 - parent: 30 - type: Transform -- uid: 15448 - type: Grille - components: - - pos: 77.5,30.5 - parent: 30 - type: Transform -- uid: 15449 - type: Grille - components: - - pos: 77.5,29.5 - parent: 30 - type: Transform -- uid: 15450 - type: Grille - components: - - pos: 77.5,28.5 - parent: 30 - type: Transform -- uid: 15451 - type: Grille - components: - - pos: 76.5,32.5 - parent: 30 - type: Transform -- uid: 15452 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 52.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15453 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15454 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15455 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15456 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15457 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15458 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15459 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15460 - type: Catwalk - components: - - pos: 38.5,-18.5 - parent: 30 - type: Transform -- uid: 15461 - type: Catwalk - components: - - pos: 40.5,-18.5 - parent: 30 - type: Transform -- uid: 15462 - type: Catwalk - components: - - pos: 42.5,-18.5 - parent: 30 - type: Transform -- uid: 15463 - type: CableApcExtension - components: - - pos: 37.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15464 - type: CableHV - components: - - pos: 72.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15465 - type: CableHV - components: - - pos: 72.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15466 - type: CableHV - components: - - pos: 72.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15467 - type: CableHV - components: - - pos: 72.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15468 - type: CableHV - components: - - pos: 72.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15469 - type: CableHV - components: - - pos: 72.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15470 - type: CableHV - components: - - pos: 72.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15471 - type: CableHV - components: - - pos: 72.5,28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15472 - type: CableHV - components: - - pos: 70.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15473 - type: CableHV - components: - - pos: 70.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15474 - type: CableHV - components: - - pos: 70.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15475 - type: CableHV - components: - - pos: 70.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15476 - type: CableHV - components: - - pos: 70.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15477 - type: CableHV - components: - - pos: 70.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15478 - type: CableHV - components: - - pos: 70.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15479 - type: CableHV - components: - - pos: 70.5,28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15480 - type: CableHV - components: - - pos: 66.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15481 - type: CableHV - components: - - pos: 66.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15482 - type: CableHV - components: - - pos: 66.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15483 - type: CableHV - components: - - pos: 66.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15484 - type: CableHV - components: - - pos: 66.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15485 - type: CableHV - components: - - pos: 66.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15486 - type: CableHV - components: - - pos: 66.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15487 - type: CableHV - components: - - pos: 66.5,28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15488 - type: CableHV - components: - - pos: 68.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15489 - type: CableHV - components: - - pos: 68.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15490 - type: CableHV - components: - - pos: 68.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15491 - type: CableHV - components: - - pos: 68.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15492 - type: CableHV - components: - - pos: 68.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15493 - type: CableHV - components: - - pos: 68.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15494 - type: CableHV - components: - - pos: 68.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15495 - type: CableHV - components: - - pos: 68.5,28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15496 - type: CableHV - components: - - pos: 62.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15497 - type: CableHV - components: - - pos: 62.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15498 - type: CableHV - components: - - pos: 62.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15499 - type: CableHV - components: - - pos: 62.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15500 - type: CableHV - components: - - pos: 62.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15501 - type: CableHV - components: - - pos: 62.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15502 - type: CableHV - components: - - pos: 62.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15503 - type: CableHV - components: - - pos: 62.5,28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15504 - type: CableHV - components: - - pos: 64.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15505 - type: CableHV - components: - - pos: 64.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15506 - type: CableHV - components: - - pos: 64.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15507 - type: CableHV - components: - - pos: 64.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15508 - type: CableHV - components: - - pos: 64.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15509 - type: CableHV - components: - - pos: 64.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15510 - type: CableHV - components: - - pos: 64.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15511 - type: CableHV - components: - - pos: 64.5,28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15512 - type: CableHV - components: - - pos: 58.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15513 - type: CableHV - components: - - pos: 58.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15514 - type: CableHV - components: - - pos: 58.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15515 - type: CableHV - components: - - pos: 58.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15516 - type: CableHV - components: - - pos: 58.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15517 - type: CableHV - components: - - pos: 58.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15518 - type: CableHV - components: - - pos: 58.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15519 - type: CableHV - components: - - pos: 58.5,28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15520 - type: CableHV - components: - - pos: 60.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15521 - type: CableHV - components: - - pos: 60.5,22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15522 - type: CableHV - components: - - pos: 60.5,23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15523 - type: CableHV - components: - - pos: 60.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15524 - type: CableHV - components: - - pos: 60.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15525 - type: CableHV - components: - - pos: 60.5,26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15526 - type: CableHV - components: - - pos: 60.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15527 - type: CableHV - components: - - pos: 60.5,28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15528 - type: SheetSteel - components: - - pos: 17.501102,60.54593 - parent: 30 - type: Transform -- uid: 15529 - type: TableWood - components: - - pos: 12.5,54.5 - parent: 30 - type: Transform -- uid: 15530 - type: ClothingOuterApron - components: - - pos: 19.554304,57.44198 - parent: 30 - type: Transform -- uid: 15531 - type: Barricade - components: - - pos: 17.5,56.5 - parent: 30 - type: Transform -- uid: 15532 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,54.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15533 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,58.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15534 - type: Catwalk - components: - - pos: 59.5,28.5 - parent: 30 - type: Transform -- uid: 15535 - type: Catwalk - components: - - pos: 59.5,31.5 - parent: 30 - type: Transform -- uid: 15536 - type: Catwalk - components: - - pos: 63.5,28.5 - parent: 30 - type: Transform -- uid: 15537 - type: Catwalk - components: - - pos: 63.5,29.5 - parent: 30 - type: Transform -- uid: 15538 - type: Catwalk - components: - - pos: 71.5,32.5 - parent: 30 - type: Transform -- uid: 15539 - type: Catwalk - components: - - pos: 67.5,29.5 - parent: 30 - type: Transform -- uid: 15540 - type: Catwalk - components: - - pos: 71.5,30.5 - parent: 30 - type: Transform -- uid: 15541 - type: Catwalk - components: - - pos: 71.5,28.5 - parent: 30 - type: Transform -- uid: 15542 - type: CableApcExtension - components: - - pos: 39.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15543 - type: CableApcExtension - components: - - pos: 43.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15544 - type: CableApcExtension - components: - - pos: 41.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15545 - type: CableApcExtension - components: - - pos: 40.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15546 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,12.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15547 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 46.5,16.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15548 - type: Catwalk - components: - - pos: 46.5,16.5 - parent: 30 - type: Transform -- uid: 15549 - type: ClosetEmergencyFilledRandom - components: - - pos: 47.5,17.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15550 - type: CableApcExtension - components: - - pos: 46.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15551 - type: CableApcExtension - components: - - pos: 44.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15552 - type: SolarPanel - components: - - pos: 58.5,32.5 - parent: 30 - type: Transform -- uid: 15553 - type: SolarPanel - components: - - pos: 58.5,33.5 - parent: 30 - type: Transform -- uid: 15554 - type: SolarPanel - components: - - pos: 58.5,34.5 - parent: 30 - type: Transform -- uid: 15555 - type: SolarPanel - components: - - pos: 58.5,35.5 - parent: 30 - type: Transform -- uid: 15556 - type: SolarPanel - components: - - pos: 58.5,36.5 - parent: 30 - type: Transform -- uid: 15557 - type: SolarPanel - components: - - pos: 58.5,37.5 - parent: 30 - type: Transform -- uid: 15558 - type: SolarPanel - components: - - pos: 58.5,38.5 - parent: 30 - type: Transform -- uid: 15559 - type: SolarPanel - components: - - pos: 58.5,39.5 - parent: 30 - type: Transform -- uid: 15560 - type: SolarPanel - components: - - pos: 60.5,32.5 - parent: 30 - type: Transform -- uid: 15561 - type: SolarPanel - components: - - pos: 60.5,33.5 - parent: 30 - type: Transform -- uid: 15562 - type: SolarPanel - components: - - pos: 60.5,34.5 - parent: 30 - type: Transform -- uid: 15563 - type: SolarPanel - components: - - pos: 60.5,35.5 - parent: 30 - type: Transform -- uid: 15564 - type: SolarPanel - components: - - pos: 60.5,36.5 - parent: 30 - type: Transform -- uid: 15565 - type: SolarPanel - components: - - pos: 60.5,37.5 - parent: 30 - type: Transform -- uid: 15566 - type: SolarPanel - components: - - pos: 60.5,38.5 - parent: 30 - type: Transform -- uid: 15567 - type: SolarPanel - components: - - pos: 60.5,39.5 - parent: 30 - type: Transform -- uid: 15568 - type: SolarPanel - components: - - pos: 62.5,32.5 - parent: 30 - type: Transform -- uid: 15569 - type: SolarPanel - components: - - pos: 62.5,33.5 - parent: 30 - type: Transform -- uid: 15570 - type: SolarPanel - components: - - pos: 62.5,34.5 - parent: 30 - type: Transform -- uid: 15571 - type: SolarPanel - components: - - pos: 62.5,35.5 - parent: 30 - type: Transform -- uid: 15572 - type: SolarPanel - components: - - pos: 62.5,36.5 - parent: 30 - type: Transform -- uid: 15573 - type: SolarPanel - components: - - pos: 62.5,37.5 - parent: 30 - type: Transform -- uid: 15574 - type: SolarPanel - components: - - pos: 62.5,38.5 - parent: 30 - type: Transform -- uid: 15575 - type: SolarPanel - components: - - pos: 62.5,39.5 - parent: 30 - type: Transform -- uid: 15576 - type: SolarPanel - components: - - pos: 64.5,32.5 - parent: 30 - type: Transform -- uid: 15577 - type: SolarPanel - components: - - pos: 64.5,33.5 - parent: 30 - type: Transform -- uid: 15578 - type: SolarPanel - components: - - pos: 64.5,34.5 - parent: 30 - type: Transform -- uid: 15579 - type: SolarPanel - components: - - pos: 64.5,35.5 - parent: 30 - type: Transform -- uid: 15580 - type: SolarPanel - components: - - pos: 64.5,36.5 - parent: 30 - type: Transform -- uid: 15581 - type: SolarPanel - components: - - pos: 64.5,37.5 - parent: 30 - type: Transform -- uid: 15582 - type: SolarPanel - components: - - pos: 64.5,38.5 - parent: 30 - type: Transform -- uid: 15583 - type: SolarPanel - components: - - pos: 64.5,39.5 - parent: 30 - type: Transform -- uid: 15584 - type: SolarPanel - components: - - pos: 66.5,32.5 - parent: 30 - type: Transform -- uid: 15585 - type: SolarPanel - components: - - pos: 66.5,33.5 - parent: 30 - type: Transform -- uid: 15586 - type: SolarPanel - components: - - pos: 66.5,34.5 - parent: 30 - type: Transform -- uid: 15587 - type: SolarPanel - components: - - pos: 66.5,35.5 - parent: 30 - type: Transform -- uid: 15588 - type: SolarPanel - components: - - pos: 66.5,36.5 - parent: 30 - type: Transform -- uid: 15589 - type: SolarPanel - components: - - pos: 66.5,37.5 - parent: 30 - type: Transform -- uid: 15590 - type: SolarPanel - components: - - pos: 66.5,38.5 - parent: 30 - type: Transform -- uid: 15591 - type: SolarPanel - components: - - pos: 66.5,39.5 - parent: 30 - type: Transform -- uid: 15592 - type: SolarPanel - components: - - pos: 68.5,32.5 - parent: 30 - type: Transform -- uid: 15593 - type: SolarPanel - components: - - pos: 68.5,33.5 - parent: 30 - type: Transform -- uid: 15594 - type: SolarPanel - components: - - pos: 68.5,34.5 - parent: 30 - type: Transform -- uid: 15595 - type: SolarPanel - components: - - pos: 68.5,35.5 - parent: 30 - type: Transform -- uid: 15596 - type: SolarPanel - components: - - pos: 68.5,36.5 - parent: 30 - type: Transform -- uid: 15597 - type: SolarPanel - components: - - pos: 68.5,37.5 - parent: 30 - type: Transform -- uid: 15598 - type: SolarPanel - components: - - pos: 68.5,38.5 - parent: 30 - type: Transform -- uid: 15599 - type: SolarPanel - components: - - pos: 68.5,39.5 - parent: 30 - type: Transform -- uid: 15600 - type: SolarPanel - components: - - pos: 70.5,32.5 - parent: 30 - type: Transform -- uid: 15601 - type: SolarPanel - components: - - pos: 70.5,33.5 - parent: 30 - type: Transform -- uid: 15602 - type: SolarPanel - components: - - pos: 70.5,34.5 - parent: 30 - type: Transform -- uid: 15603 - type: SolarPanel - components: - - pos: 70.5,35.5 - parent: 30 - type: Transform -- uid: 15604 - type: SolarPanel - components: - - pos: 70.5,36.5 - parent: 30 - type: Transform -- uid: 15605 - type: SolarPanel - components: - - pos: 70.5,37.5 - parent: 30 - type: Transform -- uid: 15606 - type: SolarPanel - components: - - pos: 70.5,38.5 - parent: 30 - type: Transform -- uid: 15607 - type: SolarPanel - components: - - pos: 70.5,39.5 - parent: 30 - type: Transform -- uid: 15608 - type: SolarPanel - components: - - pos: 72.5,32.5 - parent: 30 - type: Transform -- uid: 15609 - type: SolarPanel - components: - - pos: 72.5,33.5 - parent: 30 - type: Transform -- uid: 15610 - type: SolarPanel - components: - - pos: 72.5,34.5 - parent: 30 - type: Transform -- uid: 15611 - type: SolarPanel - components: - - pos: 72.5,35.5 - parent: 30 - type: Transform -- uid: 15612 - type: SolarPanel - components: - - pos: 72.5,36.5 - parent: 30 - type: Transform -- uid: 15613 - type: SolarPanel - components: - - pos: 72.5,37.5 - parent: 30 - type: Transform -- uid: 15614 - type: SolarPanel - components: - - pos: 72.5,38.5 - parent: 30 - type: Transform -- uid: 15615 - type: SolarPanel - components: - - pos: 72.5,39.5 - parent: 30 - type: Transform -- uid: 15616 - type: CableApcExtension - components: - - pos: 42.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15617 - type: WallReinforced - components: - - pos: 48.5,17.5 - parent: 30 - type: Transform -- uid: 15618 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,22.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15619 - type: GasVentPump - components: - - pos: 52.5,23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15620 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 74.5,32.5 - parent: 30 - type: Transform -- uid: 15621 - type: Grille - components: - - pos: 74.5,35.5 - parent: 30 - type: Transform -- uid: 15622 - type: AirlockSalvageGlassLocked - components: - - pos: 33.5,-8.5 - parent: 30 - type: Transform -- uid: 15623 - type: WallReinforced - components: - - pos: 48.5,15.5 - parent: 30 - type: Transform -- uid: 15624 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15625 - type: DisposalPipe - components: - - pos: 43.5,12.5 - parent: 30 - type: Transform -- uid: 15626 - type: CableApcExtension - components: - - pos: 40.5,-17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15627 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-50.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Supermatter West - type: SurveillanceCamera -- uid: 15628 - type: Grille - components: - - pos: 74.5,26.5 - parent: 30 - type: Transform -- uid: 15629 - type: Grille - components: - - pos: 74.5,25.5 - parent: 30 - type: Transform -- uid: 15630 - type: Grille - components: - - pos: 74.5,24.5 - parent: 30 - type: Transform -- uid: 15631 - type: Grille - components: - - pos: 74.5,23.5 - parent: 30 - type: Transform -- uid: 15632 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 75.5,28.5 - parent: 30 - type: Transform -- uid: 15633 - type: Grille - components: - - pos: 74.5,19.5 - parent: 30 - type: Transform -- uid: 15634 - type: Grille - components: - - pos: 73.5,19.5 - parent: 30 - type: Transform -- uid: 15635 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 75.5,32.5 - parent: 30 - type: Transform -- uid: 15636 - type: Grille - components: - - pos: 74.5,33.5 - parent: 30 - type: Transform -- uid: 15637 - type: CableHV - components: - - pos: 75.5,30.5 - parent: 30 - type: Transform -- uid: 15638 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 74.5,36.5 - parent: 30 - type: Transform -- uid: 15639 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 74.5,38.5 - parent: 30 - type: Transform -- uid: 15640 - type: CableApcExtension - components: - - pos: 42.5,9.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15641 - type: Grille - components: - - pos: 74.5,39.5 - parent: 30 - type: Transform -- uid: 15642 - type: Grille - components: - - pos: 74.5,40.5 - parent: 30 - type: Transform -- uid: 15643 - type: Grille - components: - - pos: 74.5,41.5 - parent: 30 - type: Transform -- uid: 15644 - type: Grille - components: - - pos: 73.5,41.5 - parent: 30 - type: Transform -- uid: 15645 - type: AirCanister - components: - - pos: 22.5,-14.5 - parent: 30 - type: Transform -- uid: 15646 - type: AirlockGlass - components: - - pos: 7.5,-5.5 - parent: 30 - type: Transform -- uid: 15647 - type: CableApcExtension - components: - - pos: 40.5,-16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15648 - type: SolarPanel - components: - - pos: 72.5,21.5 - parent: 30 - type: Transform -- uid: 15649 - type: SolarPanel - components: - - pos: 72.5,22.5 - parent: 30 - type: Transform -- uid: 15650 - type: SolarPanel - components: - - pos: 72.5,23.5 - parent: 30 - type: Transform -- uid: 15651 - type: SolarPanel - components: - - pos: 72.5,24.5 - parent: 30 - type: Transform -- uid: 15652 - type: SolarPanel - components: - - pos: 72.5,25.5 - parent: 30 - type: Transform -- uid: 15653 - type: SolarPanel - components: - - pos: 72.5,26.5 - parent: 30 - type: Transform -- uid: 15654 - type: SolarPanel - components: - - pos: 72.5,27.5 - parent: 30 - type: Transform -- uid: 15655 - type: SolarPanel - components: - - pos: 72.5,28.5 - parent: 30 - type: Transform -- uid: 15656 - type: SolarPanel - components: - - pos: 70.5,28.5 - parent: 30 - type: Transform -- uid: 15657 - type: SolarPanel - components: - - pos: 70.5,27.5 - parent: 30 - type: Transform -- uid: 15658 - type: SolarPanel - components: - - pos: 70.5,26.5 - parent: 30 - type: Transform -- uid: 15659 - type: SolarPanel - components: - - pos: 70.5,25.5 - parent: 30 - type: Transform -- uid: 15660 - type: SolarPanel - components: - - pos: 70.5,24.5 - parent: 30 - type: Transform -- uid: 15661 - type: SolarPanel - components: - - pos: 70.5,23.5 - parent: 30 - type: Transform -- uid: 15662 - type: SolarPanel - components: - - pos: 70.5,22.5 - parent: 30 - type: Transform -- uid: 15663 - type: SolarPanel - components: - - pos: 70.5,21.5 - parent: 30 - type: Transform -- uid: 15664 - type: SolarPanel - components: - - pos: 68.5,21.5 - parent: 30 - type: Transform -- uid: 15665 - type: SolarPanel - components: - - pos: 68.5,22.5 - parent: 30 - type: Transform -- uid: 15666 - type: SolarPanel - components: - - pos: 68.5,23.5 - parent: 30 - type: Transform -- uid: 15667 - type: SolarPanel - components: - - pos: 68.5,24.5 - parent: 30 - type: Transform -- uid: 15668 - type: SolarPanel - components: - - pos: 68.5,25.5 - parent: 30 - type: Transform -- uid: 15669 - type: SolarPanel - components: - - pos: 68.5,26.5 - parent: 30 - type: Transform -- uid: 15670 - type: SolarPanel - components: - - pos: 68.5,27.5 - parent: 30 - type: Transform -- uid: 15671 - type: SolarPanel - components: - - pos: 68.5,28.5 - parent: 30 - type: Transform -- uid: 15672 - type: SolarPanel - components: - - pos: 66.5,28.5 - parent: 30 - type: Transform -- uid: 15673 - type: SolarPanel - components: - - pos: 66.5,27.5 - parent: 30 - type: Transform -- uid: 15674 - type: SolarPanel - components: - - pos: 66.5,26.5 - parent: 30 - type: Transform -- uid: 15675 - type: SolarPanel - components: - - pos: 66.5,25.5 - parent: 30 - type: Transform -- uid: 15676 - type: SolarPanel - components: - - pos: 66.5,24.5 - parent: 30 - type: Transform -- uid: 15677 - type: SolarPanel - components: - - pos: 66.5,23.5 - parent: 30 - type: Transform -- uid: 15678 - type: SolarPanel - components: - - pos: 66.5,22.5 - parent: 30 - type: Transform -- uid: 15679 - type: SolarPanel - components: - - pos: 66.5,21.5 - parent: 30 - type: Transform -- uid: 15680 - type: SolarPanel - components: - - pos: 64.5,21.5 - parent: 30 - type: Transform -- uid: 15681 - type: SolarPanel - components: - - pos: 64.5,22.5 - parent: 30 - type: Transform -- uid: 15682 - type: SolarPanel - components: - - pos: 64.5,23.5 - parent: 30 - type: Transform -- uid: 15683 - type: SolarPanel - components: - - pos: 64.5,24.5 - parent: 30 - type: Transform -- uid: 15684 - type: SolarPanel - components: - - pos: 64.5,25.5 - parent: 30 - type: Transform -- uid: 15685 - type: SolarPanel - components: - - pos: 64.5,26.5 - parent: 30 - type: Transform -- uid: 15686 - type: SolarPanel - components: - - pos: 64.5,27.5 - parent: 30 - type: Transform -- uid: 15687 - type: SolarPanel - components: - - pos: 64.5,28.5 - parent: 30 - type: Transform -- uid: 15688 - type: SolarPanel - components: - - pos: 62.5,28.5 - parent: 30 - type: Transform -- uid: 15689 - type: SolarPanel - components: - - pos: 62.5,27.5 - parent: 30 - type: Transform -- uid: 15690 - type: SolarPanel - components: - - pos: 62.5,26.5 - parent: 30 - type: Transform -- uid: 15691 - type: SolarPanel - components: - - pos: 62.5,25.5 - parent: 30 - type: Transform -- uid: 15692 - type: SolarPanel - components: - - pos: 62.5,24.5 - parent: 30 - type: Transform -- uid: 15693 - type: SolarPanel - components: - - pos: 62.5,23.5 - parent: 30 - type: Transform -- uid: 15694 - type: SolarPanel - components: - - pos: 62.5,22.5 - parent: 30 - type: Transform -- uid: 15695 - type: SolarPanel - components: - - pos: 62.5,21.5 - parent: 30 - type: Transform -- uid: 15696 - type: SolarPanel - components: - - pos: 60.5,21.5 - parent: 30 - type: Transform -- uid: 15697 - type: SolarPanel - components: - - pos: 60.5,22.5 - parent: 30 - type: Transform -- uid: 15698 - type: SolarPanel - components: - - pos: 60.5,23.5 - parent: 30 - type: Transform -- uid: 15699 - type: SolarPanel - components: - - pos: 60.5,24.5 - parent: 30 - type: Transform -- uid: 15700 - type: SolarPanel - components: - - pos: 60.5,25.5 - parent: 30 - type: Transform -- uid: 15701 - type: SolarPanel - components: - - pos: 60.5,26.5 - parent: 30 - type: Transform -- uid: 15702 - type: SolarPanel - components: - - pos: 60.5,27.5 - parent: 30 - type: Transform -- uid: 15703 - type: SolarPanel - components: - - pos: 60.5,28.5 - parent: 30 - type: Transform -- uid: 15704 - type: SolarPanel - components: - - pos: 58.5,28.5 - parent: 30 - type: Transform -- uid: 15705 - type: SolarPanel - components: - - pos: 58.5,27.5 - parent: 30 - type: Transform -- uid: 15706 - type: SolarPanel - components: - - pos: 58.5,26.5 - parent: 30 - type: Transform -- uid: 15707 - type: SolarPanel - components: - - pos: 58.5,25.5 - parent: 30 - type: Transform -- uid: 15708 - type: SolarPanel - components: - - pos: 58.5,24.5 - parent: 30 - type: Transform -- uid: 15709 - type: SolarPanel - components: - - pos: 58.5,23.5 - parent: 30 - type: Transform -- uid: 15710 - type: SolarPanel - components: - - pos: 58.5,22.5 - parent: 30 - type: Transform -- uid: 15711 - type: SolarPanel - components: - - pos: 58.5,21.5 - parent: 30 - type: Transform -- uid: 15712 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 74.5,22.5 - parent: 30 - type: Transform -- uid: 15713 - type: GrilleBroken - components: - - pos: 74.5,20.5 - parent: 30 - type: Transform -- uid: 15714 - type: CableHV - components: - - pos: 43.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15715 - type: CableApcExtension - components: - - pos: 43.5,13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15716 - type: Grille - components: - - pos: 56.5,41.5 - parent: 30 - type: Transform -- uid: 15717 - type: Grille - components: - - pos: 57.5,41.5 - parent: 30 - type: Transform -- uid: 15718 - type: Grille - components: - - pos: 58.5,41.5 - parent: 30 - type: Transform -- uid: 15719 - type: Grille - components: - - pos: 56.5,40.5 - parent: 30 - type: Transform -- uid: 15720 - type: Grille - components: - - pos: 60.5,41.5 - parent: 30 - type: Transform -- uid: 15721 - type: Grille - components: - - pos: 61.5,41.5 - parent: 30 - type: Transform -- uid: 15722 - type: Grille - components: - - pos: 62.5,41.5 - parent: 30 - type: Transform -- uid: 15723 - type: Grille - components: - - pos: 63.5,41.5 - parent: 30 - type: Transform -- uid: 15724 - type: Grille - components: - - pos: 64.5,41.5 - parent: 30 - type: Transform -- uid: 15725 - type: Grille - components: - - pos: 65.5,41.5 - parent: 30 - type: Transform -- uid: 15726 - type: Grille - components: - - pos: 66.5,41.5 - parent: 30 - type: Transform -- uid: 15727 - type: Grille - components: - - pos: 67.5,41.5 - parent: 30 - type: Transform -- uid: 15728 - type: Grille - components: - - pos: 68.5,41.5 - parent: 30 - type: Transform -- uid: 15729 - type: GrilleBroken - components: - - pos: 56.5,20.5 - parent: 30 - type: Transform -- uid: 15730 - type: Grille - components: - - pos: 70.5,41.5 - parent: 30 - type: Transform -- uid: 15731 - type: Grille - components: - - pos: 71.5,41.5 - parent: 30 - type: Transform -- uid: 15732 - type: Grille - components: - - pos: 72.5,41.5 - parent: 30 - type: Transform -- uid: 15733 - type: MaintenanceFluffSpawner - components: - - pos: 44.5,8.5 - parent: 30 - type: Transform -- uid: 15734 - type: GasPipeStraight - components: - - pos: 42.5,18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15735 - type: GasPipeStraight - components: - - pos: 42.5,17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15736 - type: CableApcExtension - components: - - pos: 43.5,10.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15737 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 42.5,10.5 - parent: 30 - type: Transform -- uid: 15738 - type: DisposalPipe - components: - - pos: 43.5,13.5 - parent: 30 - type: Transform -- uid: 15739 - type: CableHV - components: - - pos: 42.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15740 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15741 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15742 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 60.5,19.5 - parent: 30 - type: Transform -- uid: 15743 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15744 - type: GasPipeStraight - components: - - pos: 42.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15745 - type: GasPipeStraight - components: - - pos: 42.5,7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15746 - type: GasPipeStraight - components: - - pos: 42.5,8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15747 - type: GasPipeStraight - components: - - pos: 42.5,9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15748 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15749 - type: VendingMachineSeedsUnlocked - components: - - flags: SessionSpecific - type: MetaData - - pos: -77.5,-53.5 - parent: 30 - type: Transform -- uid: 15750 - type: WallReinforced - components: - - pos: 47.5,15.5 - parent: 30 - type: Transform -- uid: 15751 - type: AirlockGlass - components: - - pos: 8.5,-5.5 - parent: 30 - type: Transform -- uid: 15752 - type: Grille - components: - - pos: 74.5,34.5 - parent: 30 - type: Transform -- uid: 15753 - type: WallSolidRust - components: - - pos: 44.5,29.5 - parent: 30 - type: Transform -- uid: 15754 - type: OxygenCanister - components: - - pos: 44.5,12.5 - parent: 30 - type: Transform -- uid: 15755 - type: NitrogenCanister - components: - - pos: 44.5,13.5 - parent: 30 - type: Transform -- uid: 15756 - type: GrilleBroken - components: - - pos: 47.5,7.5 - parent: 30 - type: Transform -- uid: 15757 - type: Grille - components: - - pos: 47.5,14.5 - parent: 30 - type: Transform -- uid: 15758 - type: Grille - components: - - pos: 45.5,5.5 - parent: 30 - type: Transform -- uid: 15759 - type: ReinforcedWindow - components: - - pos: 45.5,5.5 - parent: 30 - type: Transform -- uid: 15760 - type: WallReinforced - components: - - pos: 45.5,13.5 - parent: 30 - type: Transform -- uid: 15761 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 72.5,19.5 - parent: 30 - type: Transform -- uid: 15762 - type: WallReinforced - components: - - pos: 45.5,12.5 - parent: 30 - type: Transform -- uid: 15763 - type: WallReinforced - components: - - pos: 45.5,10.5 - parent: 30 - type: Transform -- uid: 15764 - type: Grille - components: - - pos: 71.5,19.5 - parent: 30 - type: Transform -- uid: 15765 - type: Grille - components: - - pos: 70.5,19.5 - parent: 30 - type: Transform -- uid: 15766 - type: Grille - components: - - pos: 69.5,19.5 - parent: 30 - type: Transform -- uid: 15767 - type: Grille - components: - - pos: 68.5,19.5 - parent: 30 - type: Transform -- uid: 15768 - type: Grille - components: - - pos: 67.5,19.5 - parent: 30 - type: Transform -- uid: 15769 - type: Grille - components: - - pos: 66.5,19.5 - parent: 30 - type: Transform -- uid: 15770 - type: Grille - components: - - pos: 65.5,19.5 - parent: 30 - type: Transform -- uid: 15771 - type: Grille - components: - - pos: 64.5,19.5 - parent: 30 - type: Transform -- uid: 15772 - type: Grille - components: - - pos: 63.5,19.5 - parent: 30 - type: Transform -- uid: 15773 - type: Grille - components: - - pos: 62.5,19.5 - parent: 30 - type: Transform -- uid: 15774 - type: Grille - components: - - pos: 61.5,19.5 - parent: 30 - type: Transform -- uid: 15775 - type: GrilleBroken - components: - - pos: 69.5,41.5 - parent: 30 - type: Transform -- uid: 15776 - type: Grille - components: - - pos: 59.5,19.5 - parent: 30 - type: Transform -- uid: 15777 - type: Grille - components: - - pos: 58.5,19.5 - parent: 30 - type: Transform -- uid: 15778 - type: Grille - components: - - pos: 57.5,19.5 - parent: 30 - type: Transform -- uid: 15779 - type: Grille - components: - - pos: 56.5,19.5 - parent: 30 - type: Transform -- uid: 15780 - type: TableWood - components: - - pos: 12.5,53.5 - parent: 30 - type: Transform -- uid: 15781 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 11.5,53.5 - parent: 30 - type: Transform -- uid: 15782 - type: Catwalk - components: - - pos: 59.5,33.5 - parent: 30 - type: Transform -- uid: 15783 - type: Catwalk - components: - - pos: 59.5,34.5 - parent: 30 - type: Transform -- uid: 15784 - type: Catwalk - components: - - pos: 59.5,35.5 - parent: 30 - type: Transform -- uid: 15785 - type: Catwalk - components: - - pos: 59.5,36.5 - parent: 30 - type: Transform -- uid: 15786 - type: Catwalk - components: - - pos: 59.5,37.5 - parent: 30 - type: Transform -- uid: 15787 - type: Catwalk - components: - - pos: 59.5,38.5 - parent: 30 - type: Transform -- uid: 15788 - type: Catwalk - components: - - pos: 59.5,39.5 - parent: 30 - type: Transform -- uid: 15789 - type: FoodTinPeachesMaint - components: - - pos: 14.523054,60.895103 - parent: 30 - type: Transform -- uid: 15790 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 13.5,53.5 - parent: 30 - type: Transform -- uid: 15791 - type: Catwalk - components: - - pos: 63.5,33.5 - parent: 30 - type: Transform -- uid: 15792 - type: Catwalk - components: - - pos: 63.5,34.5 - parent: 30 - type: Transform -- uid: 15793 - type: Catwalk - components: - - pos: 63.5,35.5 - parent: 30 - type: Transform -- uid: 15794 - type: Catwalk - components: - - pos: 63.5,36.5 - parent: 30 - type: Transform -- uid: 15795 - type: Catwalk - components: - - pos: 63.5,37.5 - parent: 30 - type: Transform -- uid: 15796 - type: Catwalk - components: - - pos: 63.5,38.5 - parent: 30 - type: Transform -- uid: 15797 - type: Catwalk - components: - - pos: 63.5,39.5 - parent: 30 - type: Transform -- uid: 15798 - type: Catwalk - components: - - pos: 67.5,39.5 - parent: 30 - type: Transform -- uid: 15799 - type: Catwalk - components: - - pos: 67.5,38.5 - parent: 30 - type: Transform -- uid: 15800 - type: Catwalk - components: - - pos: 67.5,37.5 - parent: 30 - type: Transform -- uid: 15801 - type: Catwalk - components: - - pos: 67.5,36.5 - parent: 30 - type: Transform -- uid: 15802 - type: Catwalk - components: - - pos: 67.5,35.5 - parent: 30 - type: Transform -- uid: 15803 - type: Catwalk - components: - - pos: 67.5,34.5 - parent: 30 - type: Transform -- uid: 15804 - type: Catwalk - components: - - pos: 67.5,33.5 - parent: 30 - type: Transform -- uid: 15805 - type: Catwalk - components: - - pos: 59.5,29.5 - parent: 30 - type: Transform -- uid: 15806 - type: Catwalk - components: - - pos: 59.5,32.5 - parent: 30 - type: Transform -- uid: 15807 - type: Catwalk - components: - - pos: 67.5,31.5 - parent: 30 - type: Transform -- uid: 15808 - type: Catwalk - components: - - pos: 67.5,28.5 - parent: 30 - type: Transform -- uid: 15809 - type: Catwalk - components: - - pos: 71.5,33.5 - parent: 30 - type: Transform -- uid: 15810 - type: Catwalk - components: - - pos: 71.5,34.5 - parent: 30 - type: Transform -- uid: 15811 - type: Catwalk - components: - - pos: 71.5,35.5 - parent: 30 - type: Transform -- uid: 15812 - type: Catwalk - components: - - pos: 71.5,36.5 - parent: 30 - type: Transform -- uid: 15813 - type: Catwalk - components: - - pos: 71.5,37.5 - parent: 30 - type: Transform -- uid: 15814 - type: Catwalk - components: - - pos: 71.5,38.5 - parent: 30 - type: Transform -- uid: 15815 - type: Catwalk - components: - - pos: 71.5,39.5 - parent: 30 - type: Transform -- uid: 15816 - type: WallReinforced - components: - - pos: 45.5,9.5 - parent: 30 - type: Transform -- uid: 15817 - type: WallReinforced - components: - - pos: 45.5,6.5 - parent: 30 - type: Transform -- uid: 15818 - type: WallReinforced - components: - - pos: 45.5,7.5 - parent: 30 - type: Transform -- uid: 15819 - type: WallReinforced - components: - - pos: 45.5,14.5 - parent: 30 - type: Transform -- uid: 15820 - type: ReinforcedWindow - components: - - pos: 45.5,8.5 - parent: 30 - type: Transform -- uid: 15821 - type: Grille - components: - - pos: 45.5,8.5 - parent: 30 - type: Transform -- uid: 15822 - type: WallReinforced - components: - - pos: 45.5,4.5 - parent: 30 - type: Transform -- uid: 15823 - type: WallSolidRust - components: - - pos: 31.5,4.5 - parent: 30 - type: Transform -- uid: 15824 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 44.5,9.5 - parent: 30 - type: Transform -- uid: 15825 - type: Grille - components: - - pos: 45.5,11.5 - parent: 30 - type: Transform -- uid: 15826 - type: Grille - components: - - pos: 47.5,9.5 - parent: 30 - type: Transform -- uid: 15827 - type: ClosetEmergencyFilledRandom - components: - - pos: 44.5,4.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15828 - type: Rack - components: - - pos: 43.5,4.5 - parent: 30 - type: Transform -- uid: 15829 - type: AirlockExternalLocked - components: - - pos: 45.5,16.5 - parent: 30 - type: Transform -- uid: 15830 - type: AirlockExternalLocked - components: - - pos: 48.5,16.5 - parent: 30 - type: Transform -- uid: 15831 - type: Catwalk - components: - - pos: -46.5,20.5 - parent: 30 - type: Transform -- uid: 15832 - type: Catwalk - components: - - pos: 71.5,31.5 - parent: 30 - type: Transform -- uid: 15833 - type: Catwalk - components: - - pos: 71.5,29.5 - parent: 30 - type: Transform -- uid: 15834 - type: Catwalk - components: - - pos: 71.5,21.5 - parent: 30 - type: Transform -- uid: 15835 - type: Catwalk - components: - - pos: 71.5,22.5 - parent: 30 - type: Transform -- uid: 15836 - type: Catwalk - components: - - pos: 71.5,23.5 - parent: 30 - type: Transform -- uid: 15837 - type: Catwalk - components: - - pos: 71.5,24.5 - parent: 30 - type: Transform -- uid: 15838 - type: Catwalk - components: - - pos: 71.5,25.5 - parent: 30 - type: Transform -- uid: 15839 - type: Catwalk - components: - - pos: 71.5,26.5 - parent: 30 - type: Transform -- uid: 15840 - type: Catwalk - components: - - pos: 71.5,27.5 - parent: 30 - type: Transform -- uid: 15841 - type: Catwalk - components: - - pos: 63.5,31.5 - parent: 30 - type: Transform -- uid: 15842 - type: Catwalk - components: - - pos: 63.5,32.5 - parent: 30 - type: Transform -- uid: 15843 - type: Catwalk - components: - - pos: 67.5,21.5 - parent: 30 - type: Transform -- uid: 15844 - type: Catwalk - components: - - pos: 67.5,22.5 - parent: 30 - type: Transform -- uid: 15845 - type: Catwalk - components: - - pos: 67.5,23.5 - parent: 30 - type: Transform -- uid: 15846 - type: Catwalk - components: - - pos: 67.5,24.5 - parent: 30 - type: Transform -- uid: 15847 - type: Catwalk - components: - - pos: 67.5,25.5 - parent: 30 - type: Transform -- uid: 15848 - type: Catwalk - components: - - pos: 67.5,26.5 - parent: 30 - type: Transform -- uid: 15849 - type: Catwalk - components: - - pos: 67.5,27.5 - parent: 30 - type: Transform -- uid: 15850 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,58.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15851 - type: PoweredSmallLight - components: - - pos: 18.5,50.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15852 - type: Catwalk - components: - - pos: 63.5,21.5 - parent: 30 - type: Transform -- uid: 15853 - type: Catwalk - components: - - pos: 63.5,22.5 - parent: 30 - type: Transform -- uid: 15854 - type: Catwalk - components: - - pos: 63.5,23.5 - parent: 30 - type: Transform -- uid: 15855 - type: Catwalk - components: - - pos: 63.5,24.5 - parent: 30 - type: Transform -- uid: 15856 - type: Catwalk - components: - - pos: 63.5,25.5 - parent: 30 - type: Transform -- uid: 15857 - type: Catwalk - components: - - pos: 63.5,26.5 - parent: 30 - type: Transform -- uid: 15858 - type: Catwalk - components: - - pos: 63.5,27.5 - parent: 30 - type: Transform -- uid: 15859 - type: AtmosFixFreezerMarker - components: - - pos: -19.5,15.5 - parent: 30 - type: Transform -- uid: 15860 - type: Barricade - components: - - pos: 19.5,56.5 - parent: 30 - type: Transform -- uid: 15861 - type: Catwalk - components: - - pos: 59.5,21.5 - parent: 30 - type: Transform -- uid: 15862 - type: Catwalk - components: - - pos: 59.5,22.5 - parent: 30 - type: Transform -- uid: 15863 - type: Catwalk - components: - - pos: 59.5,23.5 - parent: 30 - type: Transform -- uid: 15864 - type: Catwalk - components: - - pos: 59.5,24.5 - parent: 30 - type: Transform -- uid: 15865 - type: Catwalk - components: - - pos: 59.5,25.5 - parent: 30 - type: Transform -- uid: 15866 - type: Catwalk - components: - - pos: 59.5,26.5 - parent: 30 - type: Transform -- uid: 15867 - type: Catwalk - components: - - pos: 59.5,27.5 - parent: 30 - type: Transform -- uid: 15868 - type: ExtinguisherCabinetFilled - components: - - pos: 20.5,61.5 - parent: 30 - type: Transform -- uid: 15869 - type: MaterialWoodPlank - components: - - pos: 12.516727,53.655304 - parent: 30 - type: Transform -- uid: 15870 - type: Catwalk - components: - - pos: 55.5,30.5 - parent: 30 - type: Transform -- uid: 15871 - type: Catwalk - components: - - pos: 56.5,30.5 - parent: 30 - type: Transform -- uid: 15872 - type: Catwalk - components: - - pos: 57.5,30.5 - parent: 30 - type: Transform -- uid: 15873 - type: Catwalk - components: - - pos: 58.5,30.5 - parent: 30 - type: Transform -- uid: 15874 - type: Catwalk - components: - - pos: 59.5,30.5 - parent: 30 - type: Transform -- uid: 15875 - type: Catwalk - components: - - pos: 60.5,30.5 - parent: 30 - type: Transform -- uid: 15876 - type: Catwalk - components: - - pos: 61.5,30.5 - parent: 30 - type: Transform -- uid: 15877 - type: Catwalk - components: - - pos: 62.5,30.5 - parent: 30 - type: Transform -- uid: 15878 - type: Catwalk - components: - - pos: 63.5,30.5 - parent: 30 - type: Transform -- uid: 15879 - type: Catwalk - components: - - pos: 64.5,30.5 - parent: 30 - type: Transform -- uid: 15880 - type: Catwalk - components: - - pos: 65.5,30.5 - parent: 30 - type: Transform -- uid: 15881 - type: Catwalk - components: - - pos: 66.5,30.5 - parent: 30 - type: Transform -- uid: 15882 - type: Catwalk - components: - - pos: 67.5,30.5 - parent: 30 - type: Transform -- uid: 15883 - type: Catwalk - components: - - pos: 68.5,30.5 - parent: 30 - type: Transform -- uid: 15884 - type: Catwalk - components: - - pos: 69.5,30.5 - parent: 30 - type: Transform -- uid: 15885 - type: Catwalk - components: - - pos: 70.5,30.5 - parent: 30 - type: Transform -- uid: 15886 - type: Catwalk - components: - - pos: 67.5,32.5 - parent: 30 - type: Transform -- uid: 15887 - type: Catwalk - components: - - pos: 72.5,30.5 - parent: 30 - type: Transform -- uid: 15888 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 42.5,19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15889 - type: WallSolidRust - components: - - pos: -58.5,29.5 - parent: 30 - type: Transform -- uid: 15890 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 32.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15891 - type: WallSolidRust - components: - - pos: -44.5,22.5 - parent: 30 - type: Transform -- uid: 15892 - type: WallSolidRust - components: - - pos: -57.5,42.5 - parent: 30 - type: Transform -- uid: 15893 - type: WallSolidRust - components: - - pos: -58.5,40.5 - parent: 30 - type: Transform -- uid: 15894 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 56.5,39.5 - parent: 30 - type: Transform -- uid: 15895 - type: WallSolidRust - components: - - pos: -51.5,42.5 - parent: 30 - type: Transform -- uid: 15896 - type: CableHV - components: - - pos: 17.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15897 - type: CableHV - components: - - pos: 18.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15898 - type: CableHV - components: - - pos: 19.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15899 - type: CableHV - components: - - pos: 19.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15900 - type: CableHV - components: - - pos: 19.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15901 - type: CableHV - components: - - pos: 19.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15902 - type: CableHV - components: - - pos: 19.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15903 - type: CableHV - components: - - pos: 19.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15904 - type: CableHV - components: - - pos: 20.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15905 - type: CableHV - components: - - pos: 21.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15906 - type: CableHV - components: - - pos: 22.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15907 - type: CableHV - components: - - pos: 23.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15908 - type: CableHV - components: - - pos: 24.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15909 - type: CableHV - components: - - pos: 25.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15910 - type: CableHV - components: - - pos: 26.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15911 - type: CableHV - components: - - pos: 27.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15912 - type: CableHV - components: - - pos: 28.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15913 - type: CableHV - components: - - pos: 29.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15914 - type: CableHV - components: - - pos: 30.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15915 - type: CableHV - components: - - pos: 30.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15916 - type: CableHV - components: - - pos: 30.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15917 - type: CableHV - components: - - pos: 30.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15918 - type: CableHV - components: - - pos: 30.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15919 - type: CableHV - components: - - pos: 30.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15920 - type: CableHV - components: - - pos: 30.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15921 - type: CableHV - components: - - pos: 30.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15922 - type: CableHV - components: - - pos: 30.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15923 - type: CableHV - components: - - pos: 31.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15924 - type: CableHV - components: - - pos: 32.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15925 - type: CableHV - components: - - pos: 33.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15926 - type: CableHV - components: - - pos: 33.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15927 - type: CableHV - components: - - pos: 34.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15928 - type: CableHV - components: - - pos: 35.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15929 - type: CableHV - components: - - pos: 36.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15930 - type: CableHV - components: - - pos: 37.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15931 - type: CableHV - components: - - pos: 38.5,44.5 - parent: 30 - type: Transform -- uid: 15932 - type: CableHV - components: - - pos: 39.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15933 - type: CableHV - components: - - pos: 40.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15934 - type: CableHV - components: - - pos: 41.5,44.5 - parent: 30 - type: Transform -- uid: 15935 - type: CableHV - components: - - pos: 42.5,44.5 - parent: 30 - type: Transform -- uid: 15936 - type: CableHV - components: - - pos: 43.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15937 - type: CableHV - components: - - pos: 44.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15938 - type: CableHV - components: - - pos: 45.5,44.5 - parent: 30 - type: Transform -- uid: 15939 - type: CableHV - components: - - pos: 46.5,44.5 - parent: 30 - type: Transform -- uid: 15940 - type: CableHV - components: - - pos: 46.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15941 - type: CableHV - components: - - pos: 46.5,42.5 - parent: 30 - type: Transform -- uid: 15942 - type: CableHV - components: - - pos: 46.5,41.5 - parent: 30 - type: Transform -- uid: 15943 - type: CableHV - components: - - pos: 46.5,40.5 - parent: 30 - type: Transform -- uid: 15944 - type: CableHV - components: - - pos: 46.5,39.5 - parent: 30 - type: Transform -- uid: 15945 - type: CableHV - components: - - pos: 46.5,38.5 - parent: 30 - type: Transform -- uid: 15946 - type: CableHV - components: - - pos: 46.5,37.5 - parent: 30 - type: Transform -- uid: 15947 - type: CableHV - components: - - pos: 46.5,36.5 - parent: 30 - type: Transform -- uid: 15948 - type: CableHV - components: - - pos: 46.5,35.5 - parent: 30 - type: Transform -- uid: 15949 - type: CableHV - components: - - pos: 46.5,34.5 - parent: 30 - type: Transform -- uid: 15950 - type: CableHV - components: - - pos: 46.5,33.5 - parent: 30 - type: Transform -- uid: 15951 - type: CableHV - components: - - pos: 46.5,32.5 - parent: 30 - type: Transform -- uid: 15952 - type: CableHV - components: - - pos: 46.5,31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15953 - type: Catwalk - components: - - pos: 30.5,47.5 - parent: 30 - type: Transform -- uid: 15954 - type: Catwalk - components: - - pos: 30.5,48.5 - parent: 30 - type: Transform -- uid: 15955 - type: Catwalk - components: - - pos: 30.5,49.5 - parent: 30 - type: Transform -- uid: 15956 - type: Catwalk - components: - - pos: 30.5,50.5 - parent: 30 - type: Transform -- uid: 15957 - type: Catwalk - components: - - pos: 30.5,51.5 - parent: 30 - type: Transform -- uid: 15958 - type: Catwalk - components: - - pos: 30.5,52.5 - parent: 30 - type: Transform -- uid: 15959 - type: WallSolidRust - components: - - pos: -51.5,40.5 - parent: 30 - type: Transform -- uid: 15960 - type: Catwalk - components: - - pos: 31.5,45.5 - parent: 30 - type: Transform -- uid: 15961 - type: Catwalk - components: - - pos: 32.5,45.5 - parent: 30 - type: Transform -- uid: 15962 - type: Catwalk - components: - - pos: 30.5,45.5 - parent: 30 - type: Transform -- uid: 15963 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 42.5,5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15964 - type: Catwalk - components: - - pos: 46.5,30.5 - parent: 30 - type: Transform -- uid: 15965 - type: Catwalk - components: - - pos: 45.5,30.5 - parent: 30 - type: Transform -- uid: 15966 - type: ComputerSolarControl - components: - - pos: 50.5,31.5 - parent: 30 - type: Transform -- uid: 15967 - type: Rack - components: - - pos: 49.5,31.5 - parent: 30 - type: Transform -- uid: 15968 - type: OxygenCanister - components: - - pos: 51.5,29.5 - parent: 30 - type: Transform -- uid: 15969 - type: OxygenCanister - components: - - pos: 25.5,-9.5 - parent: 30 - type: Transform -- uid: 15970 - type: ClosetEmergencyFilledRandom - components: - - pos: 50.5,29.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15971 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: 49.502296,31.49661 - parent: 30 - type: Transform -- uid: 15972 - type: CableHVStack - components: - - pos: 49.48667,31.55911 - parent: 30 - type: Transform -- uid: 15973 - type: SignElectricalMed - components: - - pos: 48.5,31.5 - parent: 30 - type: Transform -- uid: 15974 - type: SignDirectionalSolar - components: - - rot: 1.5707963267948966 rad - pos: 36.5,25.5 - parent: 30 - type: Transform -- uid: 15975 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: 41.5,18.5 - parent: 30 - type: Transform -- uid: 15976 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: 41.5,25.5 - parent: 30 - type: Transform -- uid: 15977 - type: Rack - components: - - pos: 47.5,31.5 - parent: 30 - type: Transform -- uid: 15978 - type: FlashlightLantern - components: - - pos: 47.481094,31.604847 - parent: 30 - type: Transform -- uid: 15979 - type: RandomSpawner - components: - - pos: 45.5,31.5 - parent: 30 - type: Transform -- uid: 15980 - type: Girder - components: - - pos: 43.5,29.5 - parent: 30 - type: Transform -- uid: 15981 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 50.5,20.5 - parent: 30 - type: Transform -- uid: 15982 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 53.5,20.5 - parent: 30 - type: Transform -- uid: 15983 - type: WindoorSecure - components: - - rot: 3.141592653589793 rad - pos: 52.5,20.5 - parent: 30 - type: Transform -- uid: 15984 - type: WindoorSecure - components: - - rot: 3.141592653589793 rad - pos: 51.5,20.5 - parent: 30 - type: Transform -- uid: 15985 - type: SignalButton - components: - - pos: 50.5,25.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 13751 - type: SignalTransmitter -- uid: 15986 - type: SignalButton - components: - - pos: 53.5,25.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 14512 - type: SignalTransmitter -- uid: 15987 - type: TwoWayLever - components: - - pos: 50.5,23.5 - parent: 30 - type: Transform - - outputs: - Middle: - - port: Off - uid: 14525 - - port: Off - uid: 14524 - - port: Off - uid: 14523 - - port: Off - uid: 14522 - Right: - - port: Reverse - uid: 14525 - - port: Reverse - uid: 14524 - - port: Reverse - uid: 14523 - - port: Reverse - uid: 14522 - Left: - - port: Forward - uid: 14525 - - port: Forward - uid: 14524 - - port: Forward - uid: 14523 - - port: Forward - uid: 14522 - type: SignalTransmitter -- uid: 15988 - type: TwoWayLever - components: - - pos: 51.5,23.5 - parent: 30 - type: Transform - - outputs: - Middle: - - port: Off - uid: 14526 - - port: Off - uid: 14527 - - port: Off - uid: 14528 - - port: Off - uid: 14529 - Right: - - port: Reverse - uid: 14526 - - port: Reverse - uid: 14527 - - port: Reverse - uid: 14528 - - port: Reverse - uid: 14529 - Left: - - port: Forward - uid: 14526 - - port: Forward - uid: 14527 - - port: Forward - uid: 14528 - - port: Forward - uid: 14529 - type: SignalTransmitter -- uid: 15989 - type: TwoWayLever - components: - - pos: 53.5,23.5 - parent: 30 - type: Transform - - outputs: - Middle: - - port: Off - uid: 14530 - Right: - - port: Reverse - uid: 14530 - Left: - - port: Forward - uid: 14530 - type: SignalTransmitter -- uid: 15990 - type: RandomSpawner - components: - - pos: 53.5,24.5 - parent: 30 - type: Transform -- uid: 15991 - type: RandomSpawner - components: - - pos: 51.5,24.5 - parent: 30 - type: Transform -- uid: 15992 - type: RandomSpawner - components: - - pos: 48.5,21.5 - parent: 30 - type: Transform -- uid: 15993 - type: RandomSpawner - components: - - pos: 48.5,26.5 - parent: 30 - type: Transform -- uid: 15994 - type: GasPipeStraight - components: - - pos: 32.5,6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15995 - type: LampGold - components: - - pos: 16.440987,33.621025 - parent: 30 - type: Transform -- uid: 15996 - type: LampGold - components: - - pos: 18.331612,40.69915 - parent: 30 - type: Transform -- uid: 15997 - type: ClothingBeltHolster - components: - - pos: 16.503487,36.63665 - parent: 30 - type: Transform -- uid: 15998 - type: ClothingShoesBootsJack - components: - - pos: 18.534737,37.3554 - parent: 30 - type: Transform -- uid: 15999 - type: ClothingNeckScarfStripedBlue - components: - - pos: 18.519112,40.5429 - parent: 30 - type: Transform -- uid: 16000 - type: WallSolidRust - components: - - pos: -53.5,46.5 - parent: 30 - type: Transform -- uid: 16001 - type: WallSolidRust - components: - - pos: -56.5,44.5 - parent: 30 - type: Transform -- uid: 16002 - type: WallSolidRust - components: - - pos: -58.5,44.5 - parent: 30 - type: Transform -- uid: 16003 - type: WallReinforced - components: - - pos: 46.5,15.5 - parent: 30 - type: Transform -- uid: 16004 - type: WallSolid - components: - - pos: -30.5,-47.5 - parent: 30 - type: Transform -- uid: 16005 - type: WallSolid - components: - - pos: -30.5,-44.5 - parent: 30 - type: Transform -- uid: 16006 - type: WallSolid - components: - - pos: -29.5,-44.5 - parent: 30 - type: Transform -- uid: 16007 - type: WallSolidRust - components: - - pos: -30.5,-41.5 - parent: 30 - type: Transform -- uid: 16008 - type: WallSolidRust - components: - - pos: -29.5,-43.5 - parent: 30 - type: Transform -- uid: 16009 - type: WallSolidRust - components: - - pos: -27.5,-44.5 - parent: 30 - type: Transform -- uid: 16010 - type: WallSolidRust - components: - - pos: -28.5,-44.5 - parent: 30 - type: Transform -- uid: 16011 - type: WallSolidRust - components: - - pos: -32.5,-37.5 - parent: 30 - type: Transform -- uid: 16012 - type: WallSolidRust - components: - - pos: -36.5,-30.5 - parent: 30 - type: Transform -- uid: 16013 - type: WallSolidRust - components: - - pos: -32.5,-30.5 - parent: 30 - type: Transform -- uid: 16014 - type: WallSolidRust - components: - - pos: -31.5,-30.5 - parent: 30 - type: Transform -- uid: 16015 - type: WallSolid - components: - - pos: -28.5,-37.5 - parent: 30 - type: Transform -- uid: 16016 - type: WallSolidRust - components: - - pos: -27.5,-38.5 - parent: 30 - type: Transform -- uid: 16017 - type: WallSolidRust - components: - - pos: -28.5,-38.5 - parent: 30 - type: Transform -- uid: 16018 - type: CableApcExtension - components: - - pos: 29.5,5.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16019 - type: Catwalk - components: - - pos: 30.5,5.5 - parent: 30 - type: Transform -- uid: 16020 - type: WallSolid - components: - - pos: -28.5,-36.5 - parent: 30 - type: Transform -- uid: 16021 - type: Catwalk - components: - - pos: 29.5,5.5 - parent: 30 - type: Transform -- uid: 16022 - type: WallSolidRust - components: - - pos: -28.5,-35.5 - parent: 30 - type: Transform -- uid: 16023 - type: Catwalk - components: - - pos: 28.5,5.5 - parent: 30 - type: Transform -- uid: 16024 - type: Catwalk - components: - - pos: 27.5,5.5 - parent: 30 - type: Transform -- uid: 16025 - type: Catwalk - components: - - pos: 26.5,5.5 - parent: 30 - type: Transform -- uid: 16026 - type: Catwalk - components: - - pos: 25.5,5.5 - parent: 30 - type: Transform -- uid: 16027 - type: Catwalk - components: - - pos: 24.5,5.5 - parent: 30 - type: Transform -- uid: 16028 - type: Catwalk - components: - - pos: 23.5,5.5 - parent: 30 - type: Transform -- uid: 16029 - type: FirelockGlass - components: - - pos: 22.5,4.5 - parent: 30 - type: Transform -- uid: 16030 - type: Catwalk - components: - - pos: 21.5,5.5 - parent: 30 - type: Transform -- uid: 16031 - type: Catwalk - components: - - pos: 20.5,5.5 - parent: 30 - type: Transform -- uid: 16032 - type: Catwalk - components: - - pos: 19.5,5.5 - parent: 30 - type: Transform -- uid: 16033 - type: Catwalk - components: - - pos: 18.5,5.5 - parent: 30 - type: Transform -- uid: 16034 - type: ClothingOuterVestWebMerc - components: - - pos: 16.536156,36.4687 - parent: 30 - type: Transform -- uid: 16035 - type: Bed - components: - - pos: 31.5,41.5 - parent: 30 - type: Transform -- uid: 16036 - type: Bed - components: - - pos: 31.5,43.5 - parent: 30 - type: Transform -- uid: 16037 - type: Bed - components: - - pos: 29.5,41.5 - parent: 30 - type: Transform -- uid: 16038 - type: Bed - components: - - pos: 29.5,43.5 - parent: 30 - type: Transform -- uid: 16039 - type: WardrobeBlueFilled - components: - - pos: 29.5,39.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16040 - type: WardrobeMixedFilled - components: - - pos: 31.5,34.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16041 - type: WardrobeMixedFilled - components: - - pos: 30.5,34.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16042 - type: WardrobeWhiteFilled - components: - - pos: 29.5,34.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16043 - type: WardrobeYellowFilled - components: - - pos: 32.5,34.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16044 - type: DisposalUnit - components: - - pos: 32.5,39.5 - parent: 30 - type: Transform -- uid: 16045 - type: PottedPlantRandom - components: - - pos: 27.5,33.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 16046 - type: PottedPlantRandom - components: - - pos: 27.5,40.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 16047 - type: Carpet - components: - - pos: 22.5,38.5 - parent: 30 - type: Transform -- uid: 16048 - type: Carpet - components: - - pos: 22.5,37.5 - parent: 30 - type: Transform -- uid: 16049 - type: Carpet - components: - - pos: 22.5,36.5 - parent: 30 - type: Transform -- uid: 16050 - type: Carpet - components: - - pos: 22.5,35.5 - parent: 30 - type: Transform -- uid: 16051 - type: Carpet - components: - - pos: 23.5,38.5 - parent: 30 - type: Transform -- uid: 16052 - type: Carpet - components: - - pos: 23.5,37.5 - parent: 30 - type: Transform -- uid: 16053 - type: Carpet - components: - - pos: 23.5,36.5 - parent: 30 - type: Transform -- uid: 16054 - type: Carpet - components: - - pos: 23.5,35.5 - parent: 30 - type: Transform -- uid: 16055 - type: Carpet - components: - - pos: 24.5,38.5 - parent: 30 - type: Transform -- uid: 16056 - type: Carpet - components: - - pos: 24.5,37.5 - parent: 30 - type: Transform -- uid: 16057 - type: Carpet - components: - - pos: 24.5,36.5 - parent: 30 - type: Transform -- uid: 16058 - type: Carpet - components: - - pos: 24.5,35.5 - parent: 30 - type: Transform -- uid: 16059 - type: Carpet - components: - - pos: 25.5,38.5 - parent: 30 - type: Transform -- uid: 16060 - type: Carpet - components: - - pos: 25.5,37.5 - parent: 30 - type: Transform -- uid: 16061 - type: Carpet - components: - - pos: 25.5,36.5 - parent: 30 - type: Transform -- uid: 16062 - type: Carpet - components: - - pos: 25.5,35.5 - parent: 30 - type: Transform -- uid: 16063 - type: TableWood - components: - - pos: 23.5,37.5 - parent: 30 - type: Transform -- uid: 16064 - type: TableWood - components: - - pos: 24.5,37.5 - parent: 30 - type: Transform -- uid: 16065 - type: TableWood - components: - - pos: 24.5,36.5 - parent: 30 - type: Transform -- uid: 16066 - type: TableWood - components: - - pos: 23.5,36.5 - parent: 30 - type: Transform -- uid: 16067 - type: ComfyChair - components: - - pos: 24.5,38.5 - parent: 30 - type: Transform -- uid: 16068 - type: ComfyChair - components: - - pos: 23.5,38.5 - parent: 30 - type: Transform -- uid: 16069 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 25.5,37.5 - parent: 30 - type: Transform -- uid: 16070 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 25.5,36.5 - parent: 30 - type: Transform -- uid: 16071 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 24.5,35.5 - parent: 30 - type: Transform -- uid: 16072 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 23.5,35.5 - parent: 30 - type: Transform -- uid: 16073 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 22.5,36.5 - parent: 30 - type: Transform -- uid: 16074 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 22.5,37.5 - parent: 30 - type: Transform -- uid: 16075 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.590357,36.58234 - parent: 30 - type: Transform -- uid: 16076 - type: DiceBag - components: - - pos: 23.590357,37.55109 - parent: 30 - type: Transform -- uid: 16077 - type: ClothingBackpack - components: - - pos: 24.465357,37.55109 - parent: 30 - type: Transform -- uid: 16078 - type: DisposalTrunk - components: - - pos: 32.5,39.5 - parent: 30 - type: Transform -- uid: 16079 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 32.5,37.5 - parent: 30 - type: Transform -- uid: 16080 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 26.5,37.5 - parent: 30 - type: Transform -- uid: 16081 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 26.5,34.5 - parent: 30 - type: Transform -- uid: 16082 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 32.5,38.5 - parent: 30 - type: Transform -- uid: 16083 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,37.5 - parent: 30 - type: Transform -- uid: 16084 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,37.5 - parent: 30 - type: Transform -- uid: 16085 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 29.5,37.5 - parent: 30 - type: Transform -- uid: 16086 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,37.5 - parent: 30 - type: Transform -- uid: 16087 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,37.5 - parent: 30 - type: Transform -- uid: 16088 - type: DisposalPipe - components: - - pos: 26.5,36.5 - parent: 30 - type: Transform -- uid: 16089 - type: DisposalPipe - components: - - pos: 26.5,35.5 - parent: 30 - type: Transform -- uid: 16090 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,34.5 - parent: 30 - type: Transform -- uid: 16091 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,34.5 - parent: 30 - type: Transform -- uid: 16092 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,34.5 - parent: 30 - type: Transform -- uid: 16093 - type: Poweredlight - components: - - pos: 33.5,-1.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16094 - type: AirlockGlass - components: - - pos: 9.5,-5.5 - parent: 30 - type: Transform -- uid: 16095 - type: ReinforcedWindow - components: - - pos: 24.5,-12.5 - parent: 30 - type: Transform -- uid: 16096 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 6.5,-28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16097 - type: CableApcExtension - components: - - pos: 29.5,-1.5 - parent: 30 - type: Transform -- uid: 16098 - type: Poweredlight - components: - - pos: 28.5,-1.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16099 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16100 - type: CableApcExtension - components: - - pos: 32.5,-10.5 - parent: 30 - type: Transform -- uid: 16101 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16102 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16103 - type: PoweredSmallLight - components: - - pos: 13.5,8.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16104 - type: WallReinforced - components: - - pos: -54.5,49.5 - parent: 30 - type: Transform -- uid: 16105 - type: PoweredSmallLight - components: - - pos: 29.5,5.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16106 - type: PoweredSmallLight - components: - - pos: 19.5,5.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16107 - type: PoweredSmallLight - components: - - pos: -20.5,20.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16108 - type: CableApcExtension - components: - - pos: -2.5,-13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16109 - type: CableApcExtension - components: - - pos: -2.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16110 - type: CableApcExtension - components: - - pos: -2.5,-15.5 - parent: 30 - type: Transform -- uid: 16111 - type: CableApcExtension - components: - - pos: -2.5,-16.5 - parent: 30 - type: Transform -- uid: 16112 - type: PoweredSmallLight - components: - - pos: 16.5,31.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16113 - type: PoweredSmallLight - components: - - pos: 18.5,31.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16114 - type: ClosetEmergencyFilledRandom - components: - - pos: 23.5,42.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16115 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,43.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16116 - type: PoweredSmallLight - components: - - pos: 19.5,44.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16117 - type: Table - components: - - pos: 18.5,42.5 - parent: 30 - type: Transform -- uid: 16118 - type: ClothingNeckHeadphones - components: - - pos: 18.544088,42.565483 - parent: 30 - type: Transform -- uid: 16119 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: 33.5,39.5 - parent: 30 - type: Transform -- uid: 16120 - type: SpawnPointObserver - components: - - pos: -2.5,2.5 - parent: 30 - type: Transform -- uid: 16121 - type: Catwalk - components: - - pos: 33.5,-18.5 - parent: 30 - type: Transform -- uid: 16122 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-11.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16123 - type: ReinforcedWindow - components: - - pos: 23.5,-8.5 - parent: 30 - type: Transform -- uid: 16124 - type: WallReinforced - components: - - pos: 36.5,-11.5 - parent: 30 - type: Transform -- uid: 16125 - type: Catwalk - components: - - pos: 36.5,-18.5 - parent: 30 - type: Transform -- uid: 16126 - type: ConveyorBelt - components: - - pos: 35.5,-15.5 - parent: 30 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11677 - Forward: - - port: Left - uid: 11677 - Off: - - port: Middle - uid: 11677 - type: SignalReceiver -- uid: 16127 - type: WallReinforced - components: - - pos: 32.5,-13.5 - parent: 30 - type: Transform -- uid: 16128 - type: CableMV - components: - - pos: 23.5,-4.5 - parent: 30 - type: Transform -- uid: 16129 - type: WarpPoint - components: - - pos: -53.5,18.5 - parent: 30 - type: Transform - - location: Arrivals - type: WarpPoint -- uid: 16130 - type: WarpPoint - components: - - pos: -20.5,10.5 - parent: 30 - type: Transform - - location: Hydroponics - type: WarpPoint -- uid: 16131 - type: WarpPoint - components: - - pos: -2.5,10.5 - parent: 30 - type: Transform - - location: Bar - type: WarpPoint -- uid: 16132 - type: WarpPoint - components: - - desc: Medbay - type: MetaData - - pos: -18.5,-7.5 - parent: 30 - type: Transform - - location: Medbay - type: WarpPoint -- uid: 16133 - type: WarpPoint - components: - - desc: Supply - type: MetaData - - pos: 21.5,-4.5 - parent: 30 - type: Transform - - location: Supply - type: WarpPoint -- uid: 16134 - type: WarpPoint - components: - - pos: 22.5,15.5 - parent: 30 - type: Transform - - location: Science - type: WarpPoint -- uid: 16135 - type: WarpPoint - components: - - desc: Dorms - type: MetaData - - pos: 22.5,38.5 - parent: 30 - type: Transform - - location: Dorms - type: WarpPoint -- uid: 16136 - type: WarpPoint - components: - - desc: Bridge - type: MetaData - - pos: -9.5,40.5 - parent: 30 - type: Transform - - location: Bridge - type: WarpPoint -- uid: 16137 - type: WarpPoint - components: - - pos: -39.5,48.5 - parent: 30 - type: Transform - - location: Security - type: WarpPoint -- uid: 16138 - type: WarpPoint - components: - - pos: -7.5,-39.5 - parent: 30 - type: Transform - - location: Engineering - type: WarpPoint -- uid: 16139 - type: WarpPoint - components: - - pos: 16.5,-28.5 - parent: 30 - type: Transform - - location: Atmosia - type: WarpPoint -- uid: 16140 - type: WarpPoint - components: - - pos: -7.5,-51.5 - parent: 30 - type: Transform - - location: Supermatter - type: WarpPoint -- uid: 16141 - type: WarpPoint - components: - - pos: -17.5,-83.5 - parent: 30 - type: Transform - - location: Singulo - type: WarpPoint -- uid: 16142 - type: TablePlasmaGlass - components: - - pos: 44.5,25.5 - parent: 30 - type: Transform -- uid: 16143 - type: TablePlasmaGlass - components: - - pos: 45.5,25.5 - parent: 30 - type: Transform -- uid: 16144 - type: TablePlasmaGlass - components: - - pos: 46.5,25.5 - parent: 30 - type: Transform -- uid: 16145 - type: LauncherCreamPie - components: - - pos: 45.499237,25.550482 - parent: 30 - type: Transform -- uid: 16146 - type: BikeHorn - components: - - pos: 44.686737,25.659857 - parent: 30 - type: Transform -- uid: 16147 - type: FoodPieBananaCream - components: - - pos: 46.374237,25.722357 - parent: 30 - type: Transform -- uid: 16148 - type: PosterContrabandClown - components: - - pos: 47.5,26.5 - parent: 30 - type: Transform -- uid: 16149 - type: FoodMeatClown - components: - - pos: 45.546112,27.206732 - parent: 30 - type: Transform -- uid: 16150 - type: PlushieRatvar - components: - - pos: 46.48802,27.514986 - parent: 30 - type: Transform -- uid: 16151 - type: ClothingOuterSuitChicken - components: - - pos: 44.566147,27.468111 - parent: 30 - type: Transform -- uid: 16152 - type: ClothingHeadHatChickenhead - components: - - pos: 44.55052,27.796236 - parent: 30 - type: Transform -- uid: 16153 - type: Table - components: - - pos: 46.5,21.5 - parent: 30 - type: Transform -- uid: 16154 - type: Table - components: - - pos: 45.5,21.5 - parent: 30 - type: Transform -- uid: 16155 - type: Table - components: - - pos: 44.5,21.5 - parent: 30 - type: Transform -- uid: 16156 - type: Table - components: - - pos: 44.5,22.5 - parent: 30 - type: Transform -- uid: 16157 - type: ChairOfficeDark - components: - - pos: 45.5,22.5 - parent: 30 - type: Transform -- uid: 16158 - type: TrashBananaPeel - components: - - pos: 44.5157,21.682869 - parent: 30 - type: Transform -- uid: 16159 - type: FoodBowlBigTrash - components: - - pos: 46.4532,20.604744 - parent: 30 - type: Transform -- uid: 16160 - type: FoodPlateTrash - components: - - pos: 43.4532,20.776619 - parent: 30 - type: Transform -- uid: 16161 - type: FoodPlateSmallTrash - components: - - pos: 42.6407,22.354744 - parent: 30 - type: Transform -- uid: 16162 - type: FoodFrozenSnowconeTrash - components: - - pos: 48.578163,22.479744 - parent: 30 - type: Transform -- uid: 16163 - type: FoodBowlBigTrash - components: - - pos: 52.484413,22.604744 - parent: 30 - type: Transform -- uid: 16164 - type: FoodTinBeansTrash - components: - - pos: 50.52539,20.287624 - parent: 30 - type: Transform -- uid: 16165 - type: RandomSpawner - components: - - pos: 42.5,18.5 - parent: 30 - type: Transform -- uid: 16166 - type: RandomSpawner - components: - - pos: 40.5,26.5 - parent: 30 - type: Transform -- uid: 16167 - type: RandomSpawner - components: - - pos: 43.5,23.5 - parent: 30 - type: Transform -- uid: 16168 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,22.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16169 - type: TrashBag - components: - - pos: 46.47888,21.63055 - parent: 30 - type: Transform -- uid: 16170 - type: CrateServiceJanitorialSupplies - components: - - pos: 46.5,23.5 - parent: 30 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16171 - type: ClosetEmergencyFilledRandom - components: - - pos: 53.5,19.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16172 - type: ClosetBase - components: - - pos: 52.5,24.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16173 - type: Lamp - components: - - pos: 44.59955,22.506374 - parent: 30 - type: Transform -- uid: 16174 - type: PosterLegitCleanliness - components: - - pos: 47.5,22.5 - parent: 30 - type: Transform -- uid: 16175 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: 41.5,45.5 - parent: 30 - type: Transform -- uid: 16176 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,40.5 - parent: 30 - type: Transform -- uid: 16178 - type: WallSolidRust - components: - - pos: -27.5,-35.5 - parent: 30 - type: Transform -- uid: 16179 - type: Catwalk - components: - - pos: 42.5,29.5 - parent: 30 - type: Transform -- uid: 16180 - type: Catwalk - components: - - pos: 42.5,28.5 - parent: 30 - type: Transform -- uid: 16181 - type: Catwalk - components: - - pos: 42.5,27.5 - parent: 30 - type: Transform -- uid: 16182 - type: Catwalk - components: - - pos: 42.5,26.5 - parent: 30 - type: Transform -- uid: 16183 - type: Catwalk - components: - - pos: 42.5,25.5 - parent: 30 - type: Transform -- uid: 16184 - type: Catwalk - components: - - pos: 42.5,24.5 - parent: 30 - type: Transform -- uid: 16185 - type: Catwalk - components: - - pos: 42.5,23.5 - parent: 30 - type: Transform -- uid: 16186 - type: Catwalk - components: - - pos: 42.5,22.5 - parent: 30 - type: Transform -- uid: 16187 - type: Catwalk - components: - - pos: 42.5,21.5 - parent: 30 - type: Transform -- uid: 16188 - type: Catwalk - components: - - pos: 42.5,20.5 - parent: 30 - type: Transform -- uid: 16189 - type: Catwalk - components: - - pos: 42.5,19.5 - parent: 30 - type: Transform -- uid: 16190 - type: PosterContrabandSmoke - components: - - pos: 38.5,20.5 - parent: 30 - type: Transform -- uid: 16191 - type: PosterContrabandUnreadableAnnouncement - components: - - pos: 50.5,32.5 - parent: 30 - type: Transform -- uid: 16192 - type: RandomPosterLegit - components: - - pos: 39.5,25.5 - parent: 30 - type: Transform -- uid: 16193 - type: RandomPosterLegit - components: - - pos: 47.5,24.5 - parent: 30 - type: Transform -- uid: 16194 - type: WallSolidRust - components: - - pos: -21.5,-35.5 - parent: 30 - type: Transform -- uid: 16195 - type: RandomPosterLegit - components: - - pos: 16.5,5.5 - parent: 30 - type: Transform -- uid: 16196 - type: RandomPosterLegit - components: - - pos: 47.5,41.5 - parent: 30 - type: Transform -- uid: 16197 - type: Poweredlight - components: - - pos: 36.5,41.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16198 - type: Poweredlight - components: - - pos: 42.5,41.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16199 - type: AirlockMaintLocked - components: - - pos: 42.5,31.5 - parent: 30 - type: Transform -- uid: 16200 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 36.5,32.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16201 - type: Table - components: - - pos: 33.5,34.5 - parent: 30 - type: Transform -- uid: 16202 - type: SpawnMobMouse - components: - - pos: -16.5,19.5 - parent: 30 - type: Transform -- uid: 16203 - type: SpawnMobMouse - components: - - pos: 45.5,19.5 - parent: 30 - type: Transform -- uid: 16204 - type: ExtinguisherCabinetFilled - components: - - pos: 47.5,39.5 - parent: 30 - type: Transform -- uid: 16205 - type: PottedPlantRandom - components: - - pos: 45.5,33.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 16206 - type: PottedPlantRandom - components: - - pos: 45.5,39.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 16207 - type: FirelockGlass - components: - - pos: 22.5,5.5 - parent: 30 - type: Transform -- uid: 16208 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 30.5,4.5 - parent: 30 - type: Transform -- uid: 16209 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 28.5,4.5 - parent: 30 - type: Transform -- uid: 16210 - type: Table - components: - - pos: 29.5,4.5 - parent: 30 - type: Transform -- uid: 16211 - type: ClothingNeckScarfStripedGreen - components: - - pos: 29.484505,4.526701 - parent: 30 - type: Transform -- uid: 16212 - type: ClosetMaintenanceFilledRandom - components: - - pos: 27.5,4.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16213 - type: ClosetBase - components: - - pos: 26.5,4.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16214 - type: Rack - components: - - pos: 25.5,4.5 - parent: 30 - type: Transform -- uid: 16215 - type: WeldingFuelTankFull - components: - - pos: 24.5,4.5 - parent: 30 - type: Transform -- uid: 16216 - type: WaterTankFull - components: - - pos: 47.5,29.5 - parent: 30 - type: Transform -- uid: 16217 - type: Rack - components: - - pos: 33.5,26.5 - parent: 30 - type: Transform -- uid: 16218 - type: MaintenanceWeaponSpawner - components: - - pos: 33.5,26.5 - parent: 30 - type: Transform -- uid: 16219 - type: MaintenanceFluffSpawner - components: - - pos: 25.5,4.5 - parent: 30 - type: Transform -- uid: 16220 - type: RandomSpawner - components: - - pos: 20.5,4.5 - parent: 30 - type: Transform -- uid: 16221 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 38.5,4.5 - parent: 30 - type: Transform -- uid: 16222 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 39.5,4.5 - parent: 30 - type: Transform -- uid: 16223 - type: WallSolidRust - components: - - pos: -25.5,-29.5 - parent: 30 - type: Transform -- uid: 16224 - type: WallSolidRust - components: - - pos: -28.5,-30.5 - parent: 30 - type: Transform -- uid: 16225 - type: RandomSpawner - components: - - pos: 40.5,5.5 - parent: 30 - type: Transform -- uid: 16226 - type: WallSolidRust - components: - - pos: -28.5,-34.5 - parent: 30 - type: Transform -- uid: 16227 - type: WallSolidRust - components: - - pos: -20.5,-27.5 - parent: 30 - type: Transform -- uid: 16228 - type: BlastDoor - components: - - pos: 23.5,24.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 16231 - type: SignalReceiver -- uid: 16229 - type: BlastDoor - components: - - pos: 22.5,24.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 16231 - type: SignalReceiver -- uid: 16230 - type: BlastDoor - components: - - pos: 21.5,24.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 16231 - type: SignalReceiver -- uid: 16231 - type: SignalButton - components: - - name: Robotics Bay Blast Doors - type: MetaData - - pos: 26.5,22.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 16228 - - port: Toggle - uid: 16229 - - port: Toggle - uid: 16230 - type: SignalTransmitter -- uid: 16232 - type: HandLabeler - components: - - pos: 24.532005,9.815819 - parent: 30 - type: Transform -- uid: 16233 - type: CableApcExtension - components: - - pos: 25.5,20.5 - parent: 30 - type: Transform -- uid: 16234 - type: ClothingHeadHelmetWizardHelm - components: - - pos: 32.458633,47.37235 - parent: 30 - type: Transform -- uid: 16235 - type: SoapOmega - components: - - pos: 48.50878,41.513634 - parent: 30 - type: Transform -- uid: 16236 - type: LockerQuarterMasterFilled - components: - - pos: 23.5,1.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16237 - type: SignSecureMed - components: - - pos: 4.5,40.5 - parent: 30 - type: Transform -- uid: 16238 - type: WallSolidRust - components: - - pos: -20.5,-28.5 - parent: 30 - type: Transform -- uid: 16239 - type: FirelockGlass - components: - - pos: -46.5,28.5 - parent: 30 - type: Transform -- uid: 16240 - type: WallSolidRust - components: - - pos: -21.5,-29.5 - parent: 30 - type: Transform -- uid: 16241 - type: WallReinforced - components: - - pos: -62.5,41.5 - parent: 30 - type: Transform -- uid: 16242 - type: WallReinforced - components: - - pos: -63.5,41.5 - parent: 30 - type: Transform -- uid: 16243 - type: WallReinforced - components: - - pos: -64.5,41.5 - parent: 30 - type: Transform -- uid: 16244 - type: WallReinforced - components: - - pos: -65.5,41.5 - parent: 30 - type: Transform -- uid: 16245 - type: WallReinforced - components: - - pos: -62.5,45.5 - parent: 30 - type: Transform -- uid: 16246 - type: WallReinforced - components: - - pos: -63.5,45.5 - parent: 30 - type: Transform -- uid: 16247 - type: WallReinforced - components: - - pos: -64.5,45.5 - parent: 30 - type: Transform -- uid: 16248 - type: WallReinforced - components: - - pos: -65.5,45.5 - parent: 30 - type: Transform -- uid: 16249 - type: WallReinforced - components: - - pos: -62.5,44.5 - parent: 30 - type: Transform -- uid: 16250 - type: WallReinforced - components: - - pos: -62.5,42.5 - parent: 30 - type: Transform -- uid: 16251 - type: WallReinforced - components: - - pos: -66.5,41.5 - parent: 30 - type: Transform -- uid: 16252 - type: ReinforcedWindow - components: - - pos: -68.5,42.5 - parent: 30 - type: Transform -- uid: 16253 - type: WallReinforced - components: - - pos: -66.5,45.5 - parent: 30 - type: Transform -- uid: 16254 - type: ReinforcedWindow - components: - - pos: -67.5,42.5 - parent: 30 - type: Transform -- uid: 16255 - type: WallReinforced - components: - - pos: -67.5,44.5 - parent: 30 - type: Transform -- uid: 16256 - type: ReinforcedWindow - components: - - pos: -66.5,42.5 - parent: 30 - type: Transform -- uid: 16257 - type: ReinforcedWindow - components: - - pos: -66.5,44.5 - parent: 30 - type: Transform -- uid: 16258 - type: ReinforcedWindow - components: - - pos: -68.5,44.5 - parent: 30 - type: Transform -- uid: 16259 - type: Grille - components: - - pos: -66.5,42.5 - parent: 30 - type: Transform -- uid: 16260 - type: Grille - components: - - pos: -67.5,42.5 - parent: 30 - type: Transform -- uid: 16261 - type: Grille - components: - - pos: -68.5,42.5 - parent: 30 - type: Transform -- uid: 16262 - type: Grille - components: - - pos: -68.5,44.5 - parent: 30 - type: Transform -- uid: 16263 - type: Grille - components: - - pos: -66.5,44.5 - parent: 30 - type: Transform -- uid: 16264 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: -65.5,43.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 16265 - type: CableHV - components: - - pos: -65.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16266 - type: CableHV - components: - - pos: -64.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16267 - type: CableHV - components: - - pos: -63.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16268 - type: CableHV - components: - - pos: -63.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16269 - type: CableHV - components: - - pos: -62.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16270 - type: CableHV - components: - - pos: -61.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16271 - type: CableHV - components: - - pos: -65.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16272 - type: CableHV - components: - - pos: -66.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16273 - type: CableHV - components: - - pos: -67.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16274 - type: CableHV - components: - - pos: -68.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16275 - type: CableHV - components: - - pos: -69.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16276 - type: AirlockEngineeringLocked - components: - - pos: -62.5,43.5 - parent: 30 - type: Transform -- uid: 16277 - type: SMESBasic - components: - - pos: -65.5,44.5 - parent: 30 - type: Transform -- uid: 16278 - type: AirlockExternalLocked - components: - - pos: -66.5,43.5 - parent: 30 - type: Transform -- uid: 16279 - type: AirlockExternalLocked - components: - - pos: -68.5,43.5 - parent: 30 - type: Transform -- uid: 16280 - type: ComputerSolarControl - components: - - pos: -64.5,44.5 - parent: 30 - type: Transform -- uid: 16281 - type: SignDirectionalBrig - components: - - rot: -1.5707963267948966 rad - pos: -35.5,45.5 - parent: 30 - type: Transform -- uid: 16282 - type: SignDirectionalBrig - components: - - rot: 3.141592653589793 rad - pos: -45.5,45.5 - parent: 30 - type: Transform -- uid: 16283 - type: CableHV - components: - - pos: -70.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16284 - type: CableHV - components: - - pos: -71.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16285 - type: CableHV - components: - - pos: -72.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16286 - type: CableHV - components: - - pos: -72.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16287 - type: CableHV - components: - - pos: -72.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16288 - type: CableHV - components: - - pos: -72.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16289 - type: CableHV - components: - - pos: -72.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16290 - type: CableHV - components: - - pos: -72.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16291 - type: CableHV - components: - - pos: -72.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16292 - type: CableHV - components: - - pos: -72.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16293 - type: CableHV - components: - - pos: -74.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16294 - type: CableHV - components: - - pos: -74.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16295 - type: CableHV - components: - - pos: -74.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16296 - type: CableHV - components: - - pos: -74.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16297 - type: CableHV - components: - - pos: -74.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16298 - type: CableHV - components: - - pos: -74.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16299 - type: CableHV - components: - - pos: -74.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16300 - type: CableHV - components: - - pos: -74.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16301 - type: CableHV - components: - - pos: -76.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16302 - type: CableHV - components: - - pos: -76.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16303 - type: CableHV - components: - - pos: -76.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16304 - type: CableHV - components: - - pos: -76.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16305 - type: CableHV - components: - - pos: -76.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16306 - type: CableHV - components: - - pos: -76.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16307 - type: CableHV - components: - - pos: -76.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16308 - type: CableHV - components: - - pos: -76.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16309 - type: CableHV - components: - - pos: -78.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16310 - type: CableHV - components: - - pos: -78.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16311 - type: CableHV - components: - - pos: -78.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16312 - type: CableHV - components: - - pos: -78.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16313 - type: CableHV - components: - - pos: -78.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16314 - type: CableHV - components: - - pos: -78.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16315 - type: CableHV - components: - - pos: -78.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16316 - type: CableHV - components: - - pos: -78.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16317 - type: CableHV - components: - - pos: -80.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16318 - type: CableHV - components: - - pos: -80.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16319 - type: CableHV - components: - - pos: -80.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16320 - type: CableHV - components: - - pos: -80.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16321 - type: CableHV - components: - - pos: -80.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16322 - type: CableHV - components: - - pos: -80.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16323 - type: CableHV - components: - - pos: -80.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16324 - type: CableHV - components: - - pos: -80.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16325 - type: CableHV - components: - - pos: -82.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16326 - type: CableHV - components: - - pos: -82.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16327 - type: CableHV - components: - - pos: -82.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16328 - type: CableHV - components: - - pos: -82.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16329 - type: CableHV - components: - - pos: -82.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16330 - type: CableHV - components: - - pos: -82.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16331 - type: CableHV - components: - - pos: -82.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16332 - type: CableHV - components: - - pos: -82.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16333 - type: CableHV - components: - - pos: -84.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16334 - type: CableHV - components: - - pos: -84.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16335 - type: CableHV - components: - - pos: -84.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16336 - type: CableHV - components: - - pos: -84.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16337 - type: CableHV - components: - - pos: -84.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16338 - type: CableHV - components: - - pos: -84.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16339 - type: CableHV - components: - - pos: -84.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16340 - type: CableHV - components: - - pos: -84.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16341 - type: CableHV - components: - - pos: -86.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16342 - type: CableHV - components: - - pos: -86.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16343 - type: CableHV - components: - - pos: -86.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16344 - type: CableHV - components: - - pos: -86.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16345 - type: CableHV - components: - - pos: -86.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16346 - type: CableHV - components: - - pos: -86.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16347 - type: CableHV - components: - - pos: -86.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16348 - type: CableHV - components: - - pos: -86.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16349 - type: CableHV - components: - - pos: -84.5,59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16350 - type: CableHV - components: - - pos: -84.5,58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16351 - type: CableHV - components: - - pos: -84.5,57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16352 - type: CableHV - components: - - pos: -84.5,56.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16353 - type: Catwalk - components: - - pos: -85.5,55.5 - parent: 30 - type: Transform -- uid: 16354 - type: Catwalk - components: - - pos: -85.5,56.5 - parent: 30 - type: Transform -- uid: 16355 - type: Catwalk - components: - - pos: -85.5,57.5 - parent: 30 - type: Transform -- uid: 16356 - type: Catwalk - components: - - pos: -85.5,58.5 - parent: 30 - type: Transform -- uid: 16357 - type: CableHV - components: - - pos: -86.5,56.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16358 - type: CableHV - components: - - pos: -86.5,57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16359 - type: Catwalk - components: - - pos: -85.5,61.5 - parent: 30 - type: Transform -- uid: 16360 - type: Catwalk - components: - - pos: -81.5,61.5 - parent: 30 - type: Transform -- uid: 16361 - type: Catwalk - components: - - pos: -81.5,60.5 - parent: 30 - type: Transform -- uid: 16362 - type: CableHV - components: - - pos: -82.5,55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16363 - type: CableHV - components: - - pos: -82.5,56.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16364 - type: CableHV - components: - - pos: -82.5,57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16365 - type: CableHV - components: - - pos: -86.5,58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16366 - type: CableHV - components: - - pos: -86.5,60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16367 - type: Catwalk - components: - - pos: -81.5,59.5 - parent: 30 - type: Transform -- uid: 16368 - type: Catwalk - components: - - pos: -81.5,58.5 - parent: 30 - type: Transform -- uid: 16369 - type: Catwalk - components: - - pos: -81.5,55.5 - parent: 30 - type: Transform -- uid: 16370 - type: Catwalk - components: - - pos: -81.5,54.5 - parent: 30 - type: Transform -- uid: 16371 - type: Catwalk - components: - - pos: -77.5,54.5 - parent: 30 - type: Transform -- uid: 16372 - type: Catwalk - components: - - pos: -77.5,55.5 - parent: 30 - type: Transform -- uid: 16373 - type: Catwalk - components: - - pos: -81.5,53.5 - parent: 30 - type: Transform -- uid: 16374 - type: Catwalk - components: - - pos: -82.5,53.5 - parent: 30 - type: Transform -- uid: 16375 - type: Catwalk - components: - - pos: -83.5,53.5 - parent: 30 - type: Transform -- uid: 16376 - type: Catwalk - components: - - pos: -84.5,53.5 - parent: 30 - type: Transform -- uid: 16377 - type: Catwalk - components: - - pos: -76.5,53.5 - parent: 30 - type: Transform -- uid: 16378 - type: Catwalk - components: - - pos: -77.5,53.5 - parent: 30 - type: Transform -- uid: 16379 - type: CableHV - components: - - pos: -86.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16380 - type: CableHV - components: - - pos: -84.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16381 - type: Catwalk - components: - - pos: -77.5,57.5 - parent: 30 - type: Transform -- uid: 16382 - type: Catwalk - components: - - pos: -77.5,58.5 - parent: 30 - type: Transform -- uid: 16383 - type: Catwalk - components: - - pos: -77.5,59.5 - parent: 30 - type: Transform -- uid: 16384 - type: Catwalk - components: - - pos: -77.5,60.5 - parent: 30 - type: Transform -- uid: 16385 - type: Catwalk - components: - - pos: -85.5,53.5 - parent: 30 - type: Transform -- uid: 16386 - type: Catwalk - components: - - pos: -86.5,53.5 - parent: 30 - type: Transform -- uid: 16387 - type: CableHV - components: - - pos: -86.5,54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16388 - type: CableHV - components: - - pos: -86.5,55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16389 - type: Catwalk - components: - - pos: -77.5,61.5 - parent: 30 - type: Transform -- uid: 16390 - type: Catwalk - components: - - pos: -73.5,61.5 - parent: 30 - type: Transform -- uid: 16391 - type: Catwalk - components: - - pos: -73.5,58.5 - parent: 30 - type: Transform -- uid: 16392 - type: Catwalk - components: - - pos: -73.5,57.5 - parent: 30 - type: Transform -- uid: 16393 - type: Catwalk - components: - - pos: -73.5,54.5 - parent: 30 - type: Transform -- uid: 16394 - type: Catwalk - components: - - pos: -72.5,53.5 - parent: 30 - type: Transform -- uid: 16395 - type: Catwalk - components: - - pos: -73.5,53.5 - parent: 30 - type: Transform -- uid: 16396 - type: Catwalk - components: - - pos: -74.5,53.5 - parent: 30 - type: Transform -- uid: 16397 - type: Grille - components: - - pos: -86.5,41.5 - parent: 30 - type: Transform -- uid: 16398 - type: Grille - components: - - pos: -85.5,41.5 - parent: 30 - type: Transform -- uid: 16399 - type: Grille - components: - - pos: -84.5,41.5 - parent: 30 - type: Transform -- uid: 16400 - type: Grille - components: - - pos: -83.5,41.5 - parent: 30 - type: Transform -- uid: 16401 - type: Grille - components: - - pos: -82.5,41.5 - parent: 30 - type: Transform -- uid: 16402 - type: Grille - components: - - pos: -81.5,41.5 - parent: 30 - type: Transform -- uid: 16403 - type: Grille - components: - - pos: -80.5,41.5 - parent: 30 - type: Transform -- uid: 16404 - type: Grille - components: - - pos: -79.5,41.5 - parent: 30 - type: Transform -- uid: 16405 - type: Grille - components: - - pos: -78.5,41.5 - parent: 30 - type: Transform -- uid: 16406 - type: Grille - components: - - pos: -77.5,41.5 - parent: 30 - type: Transform -- uid: 16407 - type: Grille - components: - - pos: -74.5,41.5 - parent: 30 - type: Transform -- uid: 16408 - type: Grille - components: - - pos: -73.5,41.5 - parent: 30 - type: Transform -- uid: 16409 - type: Grille - components: - - pos: -70.5,41.5 - parent: 30 - type: Transform -- uid: 16410 - type: GrilleBroken - components: - - pos: -88.5,63.5 - parent: 30 - type: Transform -- uid: 16411 - type: CableHV - components: - - pos: -72.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16412 - type: Catwalk - components: - - pos: -85.5,54.5 - parent: 30 - type: Transform -- uid: 16413 - type: CableHV - components: - - pos: -84.5,60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16414 - type: Catwalk - components: - - pos: -77.5,56.5 - parent: 30 - type: Transform -- uid: 16415 - type: Catwalk - components: - - pos: -85.5,44.5 - parent: 30 - type: Transform -- uid: 16416 - type: Catwalk - components: - - pos: -81.5,44.5 - parent: 30 - type: Transform -- uid: 16417 - type: Catwalk - components: - - pos: -73.5,44.5 - parent: 30 - type: Transform -- uid: 16418 - type: Grille - components: - - pos: -87.5,41.5 - parent: 30 - type: Transform -- uid: 16419 - type: Carpet - components: - - pos: 13.5,59.5 - parent: 30 - type: Transform -- uid: 16420 - type: CableMV - components: - - pos: 23.5,-5.5 - parent: 30 - type: Transform -- uid: 16421 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 12.5,57.5 - parent: 30 - type: Transform -- uid: 16422 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 11.5,58.5 - parent: 30 - type: Transform -- uid: 16423 - type: Carpet - components: - - pos: 11.5,59.5 - parent: 30 - type: Transform -- uid: 16424 - type: Carpet - components: - - pos: 11.5,57.5 - parent: 30 - type: Transform -- uid: 16425 - type: Carpet - components: - - pos: 13.5,57.5 - parent: 30 - type: Transform -- uid: 16426 - type: Carpet - components: - - pos: 12.5,58.5 - parent: 30 - type: Transform -- uid: 16427 - type: Catwalk - components: - - pos: -77.5,44.5 - parent: 30 - type: Transform -- uid: 16428 - type: Catwalk - components: - - pos: -75.5,53.5 - parent: 30 - type: Transform -- uid: 16429 - type: CableHV - components: - - pos: -86.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16430 - type: CableHV - components: - - pos: -87.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16431 - type: CableHV - components: - - pos: -88.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16432 - type: CableHV - components: - - pos: -89.5,43.5 - parent: 30 - type: Transform -- uid: 16433 - type: SolarPanel - components: - - pos: -74.5,58.5 - parent: 30 - type: Transform -- uid: 16434 - type: SolarPanel - components: - - pos: -84.5,59.5 - parent: 30 - type: Transform -- uid: 16435 - type: Grille - components: - - pos: -91.5,43.5 - parent: 30 - type: Transform -- uid: 16436 - type: Grille - components: - - pos: -91.5,44.5 - parent: 30 - type: Transform -- uid: 16437 - type: Grille - components: - - pos: -91.5,45.5 - parent: 30 - type: Transform -- uid: 16438 - type: SolarPanel - components: - - pos: -74.5,59.5 - parent: 30 - type: Transform -- uid: 16439 - type: Grille - components: - - pos: -90.5,45.5 - parent: 30 - type: Transform -- uid: 16440 - type: SolarPanel - components: - - pos: -72.5,45.5 - parent: 30 - type: Transform -- uid: 16441 - type: SolarPanel - components: - - pos: -72.5,46.5 - parent: 30 - type: Transform -- uid: 16442 - type: SolarPanel - components: - - pos: -72.5,47.5 - parent: 30 - type: Transform -- uid: 16443 - type: SolarPanel - components: - - pos: -72.5,48.5 - parent: 30 - type: Transform -- uid: 16444 - type: SolarPanel - components: - - pos: -72.5,49.5 - parent: 30 - type: Transform -- uid: 16445 - type: SolarPanel - components: - - pos: -72.5,50.5 - parent: 30 - type: Transform -- uid: 16446 - type: SolarPanel - components: - - pos: -72.5,51.5 - parent: 30 - type: Transform -- uid: 16447 - type: SolarPanel - components: - - pos: -72.5,52.5 - parent: 30 - type: Transform -- uid: 16448 - type: SolarPanel - components: - - pos: -74.5,52.5 - parent: 30 - type: Transform -- uid: 16449 - type: SolarPanel - components: - - pos: -74.5,51.5 - parent: 30 - type: Transform -- uid: 16450 - type: SolarPanel - components: - - pos: -74.5,50.5 - parent: 30 - type: Transform -- uid: 16451 - type: SolarPanel - components: - - pos: -74.5,49.5 - parent: 30 - type: Transform -- uid: 16452 - type: SolarPanel - components: - - pos: -74.5,48.5 - parent: 30 - type: Transform -- uid: 16453 - type: SolarPanel - components: - - pos: -74.5,47.5 - parent: 30 - type: Transform -- uid: 16454 - type: SolarPanel - components: - - pos: -74.5,46.5 - parent: 30 - type: Transform -- uid: 16455 - type: SolarPanel - components: - - pos: -74.5,45.5 - parent: 30 - type: Transform -- uid: 16456 - type: SolarPanel - components: - - pos: -76.5,45.5 - parent: 30 - type: Transform -- uid: 16457 - type: SolarPanel - components: - - pos: -76.5,46.5 - parent: 30 - type: Transform -- uid: 16458 - type: SolarPanel - components: - - pos: -76.5,47.5 - parent: 30 - type: Transform -- uid: 16459 - type: SolarPanel - components: - - pos: -76.5,48.5 - parent: 30 - type: Transform -- uid: 16460 - type: SolarPanel - components: - - pos: -76.5,49.5 - parent: 30 - type: Transform -- uid: 16461 - type: SolarPanel - components: - - pos: -76.5,50.5 - parent: 30 - type: Transform -- uid: 16462 - type: SolarPanel - components: - - pos: -76.5,51.5 - parent: 30 - type: Transform -- uid: 16463 - type: SolarPanel - components: - - pos: -76.5,52.5 - parent: 30 - type: Transform -- uid: 16464 - type: SolarPanel - components: - - pos: -78.5,52.5 - parent: 30 - type: Transform -- uid: 16465 - type: SolarPanel - components: - - pos: -78.5,51.5 - parent: 30 - type: Transform -- uid: 16466 - type: SolarPanel - components: - - pos: -78.5,50.5 - parent: 30 - type: Transform -- uid: 16467 - type: SolarPanel - components: - - pos: -78.5,49.5 - parent: 30 - type: Transform -- uid: 16468 - type: SolarPanel - components: - - pos: -78.5,48.5 - parent: 30 - type: Transform -- uid: 16469 - type: SolarPanel - components: - - pos: -78.5,47.5 - parent: 30 - type: Transform -- uid: 16470 - type: SolarPanel - components: - - pos: -78.5,46.5 - parent: 30 - type: Transform -- uid: 16471 - type: SolarPanel - components: - - pos: -78.5,45.5 - parent: 30 - type: Transform -- uid: 16472 - type: SolarPanel - components: - - pos: -80.5,45.5 - parent: 30 - type: Transform -- uid: 16473 - type: SolarPanel - components: - - pos: -80.5,46.5 - parent: 30 - type: Transform -- uid: 16474 - type: SolarPanel - components: - - pos: -80.5,47.5 - parent: 30 - type: Transform -- uid: 16475 - type: SolarPanel - components: - - pos: -80.5,48.5 - parent: 30 - type: Transform -- uid: 16476 - type: SolarPanel - components: - - pos: -80.5,49.5 - parent: 30 - type: Transform -- uid: 16477 - type: SolarPanel - components: - - pos: -80.5,50.5 - parent: 30 - type: Transform -- uid: 16478 - type: SolarPanel - components: - - pos: -80.5,51.5 - parent: 30 - type: Transform -- uid: 16479 - type: SolarPanel - components: - - pos: -80.5,52.5 - parent: 30 - type: Transform -- uid: 16480 - type: SolarPanel - components: - - pos: -82.5,52.5 - parent: 30 - type: Transform -- uid: 16481 - type: SolarPanel - components: - - pos: -82.5,51.5 - parent: 30 - type: Transform -- uid: 16482 - type: SolarPanel - components: - - pos: -82.5,50.5 - parent: 30 - type: Transform -- uid: 16483 - type: SolarPanel - components: - - pos: -82.5,49.5 - parent: 30 - type: Transform -- uid: 16484 - type: SolarPanel - components: - - pos: -82.5,48.5 - parent: 30 - type: Transform -- uid: 16485 - type: SolarPanel - components: - - pos: -82.5,47.5 - parent: 30 - type: Transform -- uid: 16486 - type: SolarPanel - components: - - pos: -82.5,46.5 - parent: 30 - type: Transform -- uid: 16487 - type: SolarPanel - components: - - pos: -82.5,45.5 - parent: 30 - type: Transform -- uid: 16488 - type: SolarPanel - components: - - pos: -84.5,45.5 - parent: 30 - type: Transform -- uid: 16489 - type: SolarPanel - components: - - pos: -84.5,46.5 - parent: 30 - type: Transform -- uid: 16490 - type: SolarPanel - components: - - pos: -84.5,47.5 - parent: 30 - type: Transform -- uid: 16491 - type: SolarPanel - components: - - pos: -84.5,48.5 - parent: 30 - type: Transform -- uid: 16492 - type: SolarPanel - components: - - pos: -84.5,49.5 - parent: 30 - type: Transform -- uid: 16493 - type: SolarPanel - components: - - pos: -84.5,50.5 - parent: 30 - type: Transform -- uid: 16494 - type: SolarPanel - components: - - pos: -84.5,51.5 - parent: 30 - type: Transform -- uid: 16495 - type: SolarPanel - components: - - pos: -84.5,52.5 - parent: 30 - type: Transform -- uid: 16496 - type: SolarPanel - components: - - pos: -86.5,52.5 - parent: 30 - type: Transform -- uid: 16497 - type: SolarPanel - components: - - pos: -86.5,51.5 - parent: 30 - type: Transform -- uid: 16498 - type: SolarPanel - components: - - pos: -86.5,50.5 - parent: 30 - type: Transform -- uid: 16499 - type: SolarPanel - components: - - pos: -86.5,49.5 - parent: 30 - type: Transform -- uid: 16500 - type: SolarPanel - components: - - pos: -86.5,48.5 - parent: 30 - type: Transform -- uid: 16501 - type: SolarPanel - components: - - pos: -86.5,47.5 - parent: 30 - type: Transform -- uid: 16502 - type: SolarPanel - components: - - pos: -86.5,46.5 - parent: 30 - type: Transform -- uid: 16503 - type: SolarPanel - components: - - pos: -86.5,45.5 - parent: 30 - type: Transform -- uid: 16504 - type: SolarPanel - components: - - pos: -84.5,56.5 - parent: 30 - type: Transform -- uid: 16505 - type: SolarPanel - components: - - pos: -74.5,56.5 - parent: 30 - type: Transform -- uid: 16506 - type: SolarPanel - components: - - pos: -74.5,57.5 - parent: 30 - type: Transform -- uid: 16507 - type: SolarPanel - components: - - pos: -86.5,59.5 - parent: 30 - type: Transform -- uid: 16508 - type: SolarPanel - components: - - pos: -86.5,60.5 - parent: 30 - type: Transform -- uid: 16509 - type: SolarPanel - components: - - pos: -86.5,57.5 - parent: 30 - type: Transform -- uid: 16510 - type: SolarPanel - components: - - pos: -86.5,58.5 - parent: 30 - type: Transform -- uid: 16511 - type: SolarPanel - components: - - pos: -84.5,58.5 - parent: 30 - type: Transform -- uid: 16512 - type: SolarPanel - components: - - pos: -84.5,55.5 - parent: 30 - type: Transform -- uid: 16513 - type: SolarPanel - components: - - pos: -86.5,61.5 - parent: 30 - type: Transform -- uid: 16514 - type: SolarPanel - components: - - pos: -84.5,61.5 - parent: 30 - type: Transform -- uid: 16515 - type: SolarPanel - components: - - pos: -84.5,60.5 - parent: 30 - type: Transform -- uid: 16516 - type: SolarPanel - components: - - pos: -84.5,54.5 - parent: 30 - type: Transform -- uid: 16517 - type: SolarPanel - components: - - pos: -82.5,54.5 - parent: 30 - type: Transform -- uid: 16518 - type: SolarPanel - components: - - pos: -82.5,55.5 - parent: 30 - type: Transform -- uid: 16519 - type: SolarPanel - components: - - pos: -84.5,57.5 - parent: 30 - type: Transform -- uid: 16520 - type: CableHV - components: - - pos: -76.5,60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16521 - type: CableHV - components: - - pos: -76.5,59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16522 - type: CableHV - components: - - pos: -76.5,58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16523 - type: CableHV - components: - - pos: -76.5,57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16524 - type: CableHV - components: - - pos: -76.5,56.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16525 - type: CableHV - components: - - pos: -76.5,55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16526 - type: CableHV - components: - - pos: -76.5,54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16527 - type: CableHV - components: - - pos: -74.5,54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16528 - type: CableHV - components: - - pos: -72.5,59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16529 - type: CableHV - components: - - pos: -72.5,58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16530 - type: CableHV - components: - - pos: -72.5,55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16531 - type: CableHV - components: - - pos: -72.5,54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16532 - type: SolarPanel - components: - - pos: -86.5,54.5 - parent: 30 - type: Transform -- uid: 16533 - type: SolarPanel - components: - - pos: -86.5,55.5 - parent: 30 - type: Transform -- uid: 16534 - type: SolarPanel - components: - - pos: -86.5,56.5 - parent: 30 - type: Transform -- uid: 16535 - type: SolarPanel - components: - - pos: -78.5,56.5 - parent: 30 - type: Transform -- uid: 16536 - type: SolarPanel - components: - - pos: -78.5,57.5 - parent: 30 - type: Transform -- uid: 16537 - type: SolarPanel - components: - - pos: -78.5,58.5 - parent: 30 - type: Transform -- uid: 16538 - type: SolarPanel - components: - - pos: -78.5,59.5 - parent: 30 - type: Transform -- uid: 16539 - type: SolarPanel - components: - - pos: -78.5,60.5 - parent: 30 - type: Transform -- uid: 16540 - type: SolarPanel - components: - - pos: -78.5,61.5 - parent: 30 - type: Transform -- uid: 16541 - type: SolarPanel - components: - - pos: -76.5,61.5 - parent: 30 - type: Transform -- uid: 16542 - type: SolarPanel - components: - - pos: -76.5,60.5 - parent: 30 - type: Transform -- uid: 16543 - type: SolarPanel - components: - - pos: -76.5,59.5 - parent: 30 - type: Transform -- uid: 16544 - type: SolarPanel - components: - - pos: -76.5,58.5 - parent: 30 - type: Transform -- uid: 16545 - type: SolarPanel - components: - - pos: -76.5,57.5 - parent: 30 - type: Transform -- uid: 16546 - type: SolarPanel - components: - - pos: -76.5,56.5 - parent: 30 - type: Transform -- uid: 16547 - type: SolarPanel - components: - - pos: -76.5,55.5 - parent: 30 - type: Transform -- uid: 16548 - type: SolarPanel - components: - - pos: -76.5,54.5 - parent: 30 - type: Transform -- uid: 16549 - type: SolarPanel - components: - - pos: -74.5,54.5 - parent: 30 - type: Transform -- uid: 16550 - type: SolarPanel - components: - - pos: -74.5,55.5 - parent: 30 - type: Transform -- uid: 16551 - type: SolarPanel - components: - - pos: -82.5,56.5 - parent: 30 - type: Transform -- uid: 16552 - type: SolarPanel - components: - - pos: -82.5,57.5 - parent: 30 - type: Transform -- uid: 16553 - type: SolarPanel - components: - - pos: -82.5,58.5 - parent: 30 - type: Transform -- uid: 16554 - type: SolarPanel - components: - - pos: -82.5,59.5 - parent: 30 - type: Transform -- uid: 16555 - type: SolarPanel - components: - - pos: -82.5,60.5 - parent: 30 - type: Transform -- uid: 16556 - type: SolarPanel - components: - - pos: -82.5,61.5 - parent: 30 - type: Transform -- uid: 16557 - type: SolarPanel - components: - - pos: -80.5,61.5 - parent: 30 - type: Transform -- uid: 16558 - type: SolarPanel - components: - - pos: -80.5,60.5 - parent: 30 - type: Transform -- uid: 16559 - type: SolarPanel - components: - - pos: -80.5,59.5 - parent: 30 - type: Transform -- uid: 16560 - type: SolarPanel - components: - - pos: -80.5,58.5 - parent: 30 - type: Transform -- uid: 16561 - type: SolarPanel - components: - - pos: -80.5,57.5 - parent: 30 - type: Transform -- uid: 16562 - type: SolarPanel - components: - - pos: -80.5,56.5 - parent: 30 - type: Transform -- uid: 16563 - type: SolarPanel - components: - - pos: -80.5,55.5 - parent: 30 - type: Transform -- uid: 16564 - type: SolarPanel - components: - - pos: -80.5,54.5 - parent: 30 - type: Transform -- uid: 16565 - type: SolarPanel - components: - - pos: -78.5,54.5 - parent: 30 - type: Transform -- uid: 16566 - type: SolarPanel - components: - - pos: -78.5,55.5 - parent: 30 - type: Transform -- uid: 16567 - type: Grille - components: - - pos: -91.5,42.5 - parent: 30 - type: Transform -- uid: 16568 - type: SolarTracker - components: - - pos: -89.5,43.5 - parent: 30 - type: Transform -- uid: 16569 - type: Catwalk - components: - - pos: -88.5,43.5 - parent: 30 - type: Transform -- uid: 16570 - type: Catwalk - components: - - pos: -87.5,43.5 - parent: 30 - type: Transform -- uid: 16571 - type: Catwalk - components: - - pos: -86.5,43.5 - parent: 30 - type: Transform -- uid: 16572 - type: Catwalk - components: - - pos: -85.5,43.5 - parent: 30 - type: Transform -- uid: 16573 - type: Catwalk - components: - - pos: -84.5,43.5 - parent: 30 - type: Transform -- uid: 16574 - type: Catwalk - components: - - pos: -83.5,43.5 - parent: 30 - type: Transform -- uid: 16575 - type: Catwalk - components: - - pos: -82.5,43.5 - parent: 30 - type: Transform -- uid: 16576 - type: Catwalk - components: - - pos: -81.5,43.5 - parent: 30 - type: Transform -- uid: 16577 - type: Catwalk - components: - - pos: -80.5,43.5 - parent: 30 - type: Transform -- uid: 16578 - type: Catwalk - components: - - pos: -79.5,43.5 - parent: 30 - type: Transform -- uid: 16579 - type: Catwalk - components: - - pos: -78.5,43.5 - parent: 30 - type: Transform -- uid: 16580 - type: Catwalk - components: - - pos: -77.5,43.5 - parent: 30 - type: Transform -- uid: 16581 - type: Catwalk - components: - - pos: -76.5,43.5 - parent: 30 - type: Transform -- uid: 16582 - type: Catwalk - components: - - pos: -75.5,43.5 - parent: 30 - type: Transform -- uid: 16583 - type: Catwalk - components: - - pos: -74.5,43.5 - parent: 30 - type: Transform -- uid: 16584 - type: Catwalk - components: - - pos: -73.5,43.5 - parent: 30 - type: Transform -- uid: 16585 - type: Catwalk - components: - - pos: -72.5,43.5 - parent: 30 - type: Transform -- uid: 16586 - type: Catwalk - components: - - pos: -71.5,43.5 - parent: 30 - type: Transform -- uid: 16587 - type: Catwalk - components: - - pos: -70.5,43.5 - parent: 30 - type: Transform -- uid: 16588 - type: Catwalk - components: - - pos: -69.5,43.5 - parent: 30 - type: Transform -- uid: 16589 - type: Catwalk - components: - - pos: -85.5,45.5 - parent: 30 - type: Transform -- uid: 16590 - type: Catwalk - components: - - pos: -81.5,45.5 - parent: 30 - type: Transform -- uid: 16591 - type: Catwalk - components: - - pos: -73.5,46.5 - parent: 30 - type: Transform -- uid: 16592 - type: Catwalk - components: - - pos: -73.5,47.5 - parent: 30 - type: Transform -- uid: 16593 - type: Catwalk - components: - - pos: -73.5,48.5 - parent: 30 - type: Transform -- uid: 16594 - type: Catwalk - components: - - pos: -73.5,49.5 - parent: 30 - type: Transform -- uid: 16595 - type: Catwalk - components: - - pos: -73.5,50.5 - parent: 30 - type: Transform -- uid: 16596 - type: Catwalk - components: - - pos: -73.5,51.5 - parent: 30 - type: Transform -- uid: 16597 - type: Catwalk - components: - - pos: -73.5,52.5 - parent: 30 - type: Transform -- uid: 16598 - type: Catwalk - components: - - pos: -77.5,52.5 - parent: 30 - type: Transform -- uid: 16599 - type: Catwalk - components: - - pos: -77.5,51.5 - parent: 30 - type: Transform -- uid: 16600 - type: Catwalk - components: - - pos: -77.5,50.5 - parent: 30 - type: Transform -- uid: 16601 - type: Catwalk - components: - - pos: -77.5,49.5 - parent: 30 - type: Transform -- uid: 16602 - type: Catwalk - components: - - pos: -77.5,48.5 - parent: 30 - type: Transform -- uid: 16603 - type: Catwalk - components: - - pos: -77.5,47.5 - parent: 30 - type: Transform -- uid: 16604 - type: Catwalk - components: - - pos: -77.5,46.5 - parent: 30 - type: Transform -- uid: 16605 - type: Catwalk - components: - - pos: -85.5,59.5 - parent: 30 - type: Transform -- uid: 16606 - type: Catwalk - components: - - pos: -77.5,45.5 - parent: 30 - type: Transform -- uid: 16607 - type: Carpet - components: - - pos: 12.5,59.5 - parent: 30 - type: Transform -- uid: 16608 - type: Carpet - components: - - pos: 12.5,57.5 - parent: 30 - type: Transform -- uid: 16609 - type: Catwalk - components: - - pos: -81.5,46.5 - parent: 30 - type: Transform -- uid: 16610 - type: Catwalk - components: - - pos: -81.5,47.5 - parent: 30 - type: Transform -- uid: 16611 - type: Catwalk - components: - - pos: -81.5,48.5 - parent: 30 - type: Transform -- uid: 16612 - type: Catwalk - components: - - pos: -81.5,49.5 - parent: 30 - type: Transform -- uid: 16613 - type: Catwalk - components: - - pos: -81.5,50.5 - parent: 30 - type: Transform -- uid: 16614 - type: Catwalk - components: - - pos: -81.5,51.5 - parent: 30 - type: Transform -- uid: 16615 - type: Catwalk - components: - - pos: -81.5,52.5 - parent: 30 - type: Transform -- uid: 16616 - type: TableCarpet - components: - - pos: 12.5,58.5 - parent: 30 - type: Transform -- uid: 16617 - type: Carpet - components: - - pos: 11.5,58.5 - parent: 30 - type: Transform -- uid: 16618 - type: Catwalk - components: - - pos: -85.5,46.5 - parent: 30 - type: Transform -- uid: 16619 - type: Catwalk - components: - - pos: -85.5,47.5 - parent: 30 - type: Transform -- uid: 16620 - type: Catwalk - components: - - pos: -85.5,48.5 - parent: 30 - type: Transform -- uid: 16621 - type: Catwalk - components: - - pos: -85.5,49.5 - parent: 30 - type: Transform -- uid: 16622 - type: Catwalk - components: - - pos: -85.5,50.5 - parent: 30 - type: Transform -- uid: 16623 - type: Catwalk - components: - - pos: -85.5,51.5 - parent: 30 - type: Transform -- uid: 16624 - type: Catwalk - components: - - pos: -85.5,52.5 - parent: 30 - type: Transform -- uid: 16625 - type: Catwalk - components: - - pos: -85.5,60.5 - parent: 30 - type: Transform -- uid: 16626 - type: Catwalk - components: - - pos: -81.5,57.5 - parent: 30 - type: Transform -- uid: 16627 - type: Catwalk - components: - - pos: -81.5,56.5 - parent: 30 - type: Transform -- uid: 16628 - type: CableHV - components: - - pos: -84.5,55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16629 - type: CableHV - components: - - pos: -84.5,54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16630 - type: CableHV - components: - - pos: -82.5,54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16631 - type: CableHV - components: - - pos: -82.5,58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16632 - type: Stool - components: - - pos: 12.5,59.5 - parent: 30 - type: Transform -- uid: 16633 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 13.5,58.5 - parent: 30 - type: Transform -- uid: 16634 - type: VendingMachineTankDispenserEngineering - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 18.5,-19.5 - parent: 30 - type: Transform -- uid: 16635 - type: Carpet - components: - - pos: 13.5,58.5 - parent: 30 - type: Transform -- uid: 16636 - type: CableHV - components: - - pos: -80.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16637 - type: CableHV - components: - - pos: -80.5,60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16638 - type: Catwalk - components: - - pos: -78.5,53.5 - parent: 30 - type: Transform -- uid: 16639 - type: Catwalk - components: - - pos: -79.5,53.5 - parent: 30 - type: Transform -- uid: 16640 - type: Catwalk - components: - - pos: -80.5,53.5 - parent: 30 - type: Transform -- uid: 16641 - type: CableHV - components: - - pos: -86.5,59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16642 - type: Catwalk - components: - - pos: -73.5,60.5 - parent: 30 - type: Transform -- uid: 16643 - type: Catwalk - components: - - pos: -73.5,59.5 - parent: 30 - type: Transform -- uid: 16644 - type: Catwalk - components: - - pos: -73.5,56.5 - parent: 30 - type: Transform -- uid: 16645 - type: Catwalk - components: - - pos: -73.5,55.5 - parent: 30 - type: Transform -- uid: 16646 - type: CableHV - components: - - pos: -82.5,59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16647 - type: CableHV - components: - - pos: -82.5,60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16648 - type: CableHV - components: - - pos: -82.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16649 - type: Grille - components: - - pos: -88.5,41.5 - parent: 30 - type: Transform -- uid: 16650 - type: Catwalk - components: - - pos: -73.5,45.5 - parent: 30 - type: Transform -- uid: 16651 - type: Grille - components: - - pos: -76.5,41.5 - parent: 30 - type: Transform -- uid: 16652 - type: Grille - components: - - pos: -75.5,41.5 - parent: 30 - type: Transform -- uid: 16653 - type: Grille - components: - - pos: -72.5,41.5 - parent: 30 - type: Transform -- uid: 16654 - type: Grille - components: - - pos: -71.5,41.5 - parent: 30 - type: Transform -- uid: 16655 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -86.5,63.5 - parent: 30 - type: Transform -- uid: 16656 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -88.5,54.5 - parent: 30 - type: Transform -- uid: 16657 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -75.5,63.5 - parent: 30 - type: Transform -- uid: 16658 - type: Grille - components: - - pos: -91.5,41.5 - parent: 30 - type: Transform -- uid: 16659 - type: Grille - components: - - pos: -90.5,41.5 - parent: 30 - type: Transform -- uid: 16660 - type: CableHV - components: - - pos: -80.5,54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16661 - type: CableHV - components: - - pos: -78.5,54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16662 - type: CableHV - components: - - pos: -78.5,55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16663 - type: CableHV - components: - - pos: -78.5,56.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16664 - type: CableHV - components: - - pos: -78.5,57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16665 - type: CableHV - components: - - pos: -78.5,58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16666 - type: CableHV - components: - - pos: -78.5,59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16667 - type: CableHV - components: - - pos: -78.5,60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16668 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -88.5,48.5 - parent: 30 - type: Transform -- uid: 16669 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -88.5,46.5 - parent: 30 - type: Transform -- uid: 16670 - type: CableHV - components: - - pos: -78.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16671 - type: CableHV - components: - - pos: -76.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16672 - type: CableHV - components: - - pos: -74.5,55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16673 - type: CableHV - components: - - pos: -80.5,59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16674 - type: CableHV - components: - - pos: -74.5,56.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16675 - type: CableHV - components: - - pos: -74.5,57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16676 - type: CableHV - components: - - pos: -74.5,58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16677 - type: CableHV - components: - - pos: -74.5,59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16678 - type: CableHV - components: - - pos: -74.5,60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16679 - type: CableHV - components: - - pos: -74.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16680 - type: CableHV - components: - - pos: -72.5,60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16681 - type: SolarPanel - components: - - pos: -72.5,60.5 - parent: 30 - type: Transform -- uid: 16682 - type: SolarPanel - components: - - pos: -72.5,59.5 - parent: 30 - type: Transform -- uid: 16683 - type: SolarPanel - components: - - pos: -72.5,58.5 - parent: 30 - type: Transform -- uid: 16684 - type: GrilleBroken - components: - - pos: -88.5,53.5 - parent: 30 - type: Transform -- uid: 16685 - type: SolarPanel - components: - - pos: -74.5,60.5 - parent: 30 - type: Transform -- uid: 16686 - type: SolarPanel - components: - - pos: -74.5,61.5 - parent: 30 - type: Transform -- uid: 16687 - type: SolarPanel - components: - - pos: -72.5,61.5 - parent: 30 - type: Transform -- uid: 16688 - type: Grille - components: - - pos: -88.5,55.5 - parent: 30 - type: Transform -- uid: 16689 - type: Grille - components: - - pos: -88.5,45.5 - parent: 30 - type: Transform -- uid: 16690 - type: Grille - components: - - pos: -88.5,56.5 - parent: 30 - type: Transform -- uid: 16691 - type: Grille - components: - - pos: -88.5,47.5 - parent: 30 - type: Transform -- uid: 16692 - type: Grille - components: - - pos: -88.5,58.5 - parent: 30 - type: Transform -- uid: 16693 - type: Grille - components: - - pos: -88.5,49.5 - parent: 30 - type: Transform -- uid: 16694 - type: Grille - components: - - pos: -88.5,50.5 - parent: 30 - type: Transform -- uid: 16695 - type: Grille - components: - - pos: -88.5,51.5 - parent: 30 - type: Transform -- uid: 16696 - type: Grille - components: - - pos: -88.5,52.5 - parent: 30 - type: Transform -- uid: 16697 - type: Grille - components: - - pos: -88.5,59.5 - parent: 30 - type: Transform -- uid: 16698 - type: Grille - components: - - pos: -88.5,57.5 - parent: 30 - type: Transform -- uid: 16699 - type: CableHV - components: - - pos: -80.5,57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16700 - type: CableHV - components: - - pos: -80.5,56.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16701 - type: Grille - components: - - pos: -76.5,63.5 - parent: 30 - type: Transform -- uid: 16702 - type: Grille - components: - - pos: -88.5,60.5 - parent: 30 - type: Transform -- uid: 16703 - type: Grille - components: - - pos: -88.5,61.5 - parent: 30 - type: Transform -- uid: 16704 - type: CableHV - components: - - pos: -80.5,55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16705 - type: Grille - components: - - pos: -88.5,62.5 - parent: 30 - type: Transform -- uid: 16706 - type: Grille - components: - - pos: -85.5,63.5 - parent: 30 - type: Transform -- uid: 16707 - type: Grille - components: - - pos: -84.5,63.5 - parent: 30 - type: Transform -- uid: 16708 - type: Grille - components: - - pos: -83.5,63.5 - parent: 30 - type: Transform -- uid: 16709 - type: Grille - components: - - pos: -82.5,63.5 - parent: 30 - type: Transform -- uid: 16710 - type: Grille - components: - - pos: -81.5,63.5 - parent: 30 - type: Transform -- uid: 16711 - type: CableHV - components: - - pos: -80.5,58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16712 - type: Grille - components: - - pos: -80.5,63.5 - parent: 30 - type: Transform -- uid: 16713 - type: Grille - components: - - pos: -79.5,63.5 - parent: 30 - type: Transform -- uid: 16714 - type: Grille - components: - - pos: -78.5,63.5 - parent: 30 - type: Transform -- uid: 16715 - type: Grille - components: - - pos: -77.5,63.5 - parent: 30 - type: Transform -- uid: 16716 - type: CableHV - components: - - pos: -72.5,57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16717 - type: CableHV - components: - - pos: -72.5,56.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16719 - type: Grille - components: - - pos: -70.5,50.5 - parent: 30 - type: Transform -- uid: 16720 - type: Grille - components: - - pos: -70.5,51.5 - parent: 30 - type: Transform -- uid: 16721 - type: Grille - components: - - pos: -70.5,52.5 - parent: 30 - type: Transform -- uid: 16722 - type: WallReinforced - components: - - pos: -61.5,37.5 - parent: 30 - type: Transform -- uid: 16723 - type: WallReinforced - components: - - pos: -61.5,36.5 - parent: 30 - type: Transform -- uid: 16724 - type: WallReinforced - components: - - pos: -61.5,35.5 - parent: 30 - type: Transform -- uid: 16725 - type: WallReinforced - components: - - pos: -61.5,34.5 - parent: 30 - type: Transform -- uid: 16726 - type: WallReinforced - components: - - pos: -61.5,33.5 - parent: 30 - type: Transform -- uid: 16727 - type: WallReinforced - components: - - pos: -61.5,32.5 - parent: 30 - type: Transform -- uid: 16728 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -52.5,38.5 - parent: 30 - type: Transform -- uid: 16729 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -53.5,38.5 - parent: 30 - type: Transform -- uid: 16730 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -54.5,38.5 - parent: 30 - type: Transform -- uid: 16731 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -55.5,38.5 - parent: 30 - type: Transform -- uid: 16732 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -56.5,38.5 - parent: 30 - type: Transform -- uid: 16733 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -57.5,38.5 - parent: 30 - type: Transform -- uid: 16734 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -58.5,38.5 - parent: 30 - type: Transform -- uid: 16735 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -58.5,35.5 - parent: 30 - type: Transform -- uid: 16736 - type: ReinforcedWindow - components: - - pos: -58.5,36.5 - parent: 30 - type: Transform -- uid: 16737 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -58.5,37.5 - parent: 30 - type: Transform -- uid: 16738 - type: WallSolidRust - components: - - pos: -21.5,-26.5 - parent: 30 - type: Transform -- uid: 16739 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -57.5,28.5 - parent: 30 - type: Transform -- uid: 16740 - type: FirelockGlass - components: - - pos: -56.5,28.5 - parent: 30 - type: Transform -- uid: 16741 - type: WallSolid - components: - - pos: -43.5,22.5 - parent: 30 - type: Transform -- uid: 16742 - type: AirlockMaintLocked - components: - - pos: -43.5,21.5 - parent: 30 - type: Transform -- uid: 16743 - type: Carpet - components: - - pos: -42.5,21.5 - parent: 30 - type: Transform -- uid: 16744 - type: Carpet - components: - - pos: -41.5,21.5 - parent: 30 - type: Transform -- uid: 16745 - type: Carpet - components: - - pos: -40.5,21.5 - parent: 30 - type: Transform -- uid: 16746 - type: Carpet - components: - - pos: -39.5,21.5 - parent: 30 - type: Transform -- uid: 16747 - type: Carpet - components: - - pos: -38.5,21.5 - parent: 30 - type: Transform -- uid: 16748 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -41.5,22.5 - parent: 30 - type: Transform -- uid: 16749 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -39.5,22.5 - parent: 30 - type: Transform -- uid: 16750 - type: TableCarpet - components: - - pos: -40.5,22.5 - parent: 30 - type: Transform -- uid: 16751 - type: FoodNoodles - components: - - pos: -40.519783,22.678226 - parent: 30 - type: Transform -- uid: 16752 - type: AtmosFixFreezerMarker - components: - - pos: -19.5,16.5 - parent: 30 - type: Transform -- uid: 16753 - type: PosterLegitHighClassMartini - components: - - pos: -42.5,23.5 - parent: 30 - type: Transform -- uid: 16754 - type: PoweredSmallLightEmpty - components: - - pos: -38.5,22.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16755 - type: PoweredSmallLightEmpty - components: - - pos: -42.5,22.5 - parent: 30 - type: Transform -- uid: 16756 - type: PoweredSmallLight - components: - - pos: -45.5,19.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16757 - type: Catwalk - components: - - pos: -46.5,21.5 - parent: 30 - type: Transform -- uid: 16758 - type: Catwalk - components: - - pos: -46.5,22.5 - parent: 30 - type: Transform -- uid: 16759 - type: Catwalk - components: - - pos: -46.5,23.5 - parent: 30 - type: Transform -- uid: 16760 - type: Catwalk - components: - - pos: -46.5,24.5 - parent: 30 - type: Transform -- uid: 16761 - type: Catwalk - components: - - pos: -46.5,25.5 - parent: 30 - type: Transform -- uid: 16762 - type: Catwalk - components: - - pos: -46.5,26.5 - parent: 30 - type: Transform -- uid: 16763 - type: Catwalk - components: - - pos: -46.5,27.5 - parent: 30 - type: Transform -- uid: 16764 - type: Catwalk - components: - - pos: -46.5,18.5 - parent: 30 - type: Transform -- uid: 16765 - type: Catwalk - components: - - pos: -46.5,19.5 - parent: 30 - type: Transform -- uid: 16766 - type: WallSolidRust - components: - - pos: -22.5,-26.5 - parent: 30 - type: Transform -- uid: 16767 - type: ClothingHeadHelmetCosmonaut - components: - - pos: -17.446564,-106.45651 - parent: 30 - type: Transform -- uid: 16768 - type: Table - components: - - pos: -56.5,10.5 - parent: 30 - type: Transform -- uid: 16769 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -55.5,10.5 - parent: 30 - type: Transform -- uid: 16770 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -57.5,10.5 - parent: 30 - type: Transform -- uid: 16771 - type: ChessBoard - components: - - pos: -56.515633,10.561228 - parent: 30 - type: Transform -- uid: 16772 - type: ClothingHeadHelmetTemplar - components: - - pos: -56.500008,9.748728 - parent: 30 - type: Transform -- uid: 16773 - type: BlastDoor - components: - - pos: 37.5,14.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12915 - type: SignalReceiver -- uid: 16774 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 36.5,11.5 - parent: 30 - type: Transform -- uid: 16775 - type: GasPort - components: - - pos: 36.5,10.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 16776 - type: WeldingFuelTankFull - components: - - pos: -52.5,39.5 - parent: 30 - type: Transform -- uid: 16777 - type: WallSolidRust - components: - - pos: -39.5,-22.5 - parent: 30 - type: Transform -- uid: 16778 - type: Rack - components: - - pos: -45.5,19.5 - parent: 30 - type: Transform -- uid: 16779 - type: MaintenanceToolSpawner - components: - - pos: -45.5,19.5 - parent: 30 - type: Transform -- uid: 16780 - type: RandomSpawner - components: - - pos: -46.5,17.5 - parent: 30 - type: Transform -- uid: 16781 - type: RandomSpawner - components: - - pos: -49.5,12.5 - parent: 30 - type: Transform -- uid: 16782 - type: ClothingOuterCoatPirate - components: - - pos: -53.48356,40.220753 - parent: 30 - type: Transform -- uid: 16783 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16784 - type: WallReinforced - components: - - pos: -54.5,48.5 - parent: 30 - type: Transform -- uid: 16785 - type: WallReinforced - components: - - pos: -54.5,47.5 - parent: 30 - type: Transform -- uid: 16786 - type: WallReinforced - components: - - pos: -54.5,46.5 - parent: 30 - type: Transform -- uid: 16787 - type: WallReinforced - components: - - pos: -55.5,46.5 - parent: 30 - type: Transform -- uid: 16788 - type: WallReinforced - components: - - pos: -56.5,46.5 - parent: 30 - type: Transform -- uid: 16789 - type: ReinforcedWindow - components: - - pos: -56.5,48.5 - parent: 30 - type: Transform -- uid: 16790 - type: WallReinforced - components: - - pos: -58.5,46.5 - parent: 30 - type: Transform -- uid: 16791 - type: WallReinforced - components: - - pos: -59.5,46.5 - parent: 30 - type: Transform -- uid: 16792 - type: WallReinforced - components: - - pos: -60.5,46.5 - parent: 30 - type: Transform -- uid: 16793 - type: WallReinforced - components: - - pos: -61.5,46.5 - parent: 30 - type: Transform -- uid: 16794 - type: WallReinforced - components: - - pos: -62.5,46.5 - parent: 30 - type: Transform -- uid: 16795 - type: WallSolidRust - components: - - pos: -37.5,-19.5 - parent: 30 - type: Transform -- uid: 16796 - type: WallSolid - components: - - pos: -58.5,41.5 - parent: 30 - type: Transform -- uid: 16797 - type: WallSolid - components: - - pos: -58.5,42.5 - parent: 30 - type: Transform -- uid: 16798 - type: WallSolidRust - components: - - pos: -37.5,-20.5 - parent: 30 - type: Transform -- uid: 16799 - type: Barricade - components: - - pos: -58.5,39.5 - parent: 30 - type: Transform -- uid: 16800 - type: WallSolid - components: - - pos: -56.5,42.5 - parent: 30 - type: Transform -- uid: 16801 - type: WallSolid - components: - - pos: -52.5,42.5 - parent: 30 - type: Transform -- uid: 16802 - type: WallSolidRust - components: - - pos: -41.5,-21.5 - parent: 30 - type: Transform -- uid: 16803 - type: WallSolidRust - components: - - pos: -41.5,-17.5 - parent: 30 - type: Transform -- uid: 16804 - type: WallSolid - components: - - pos: -54.5,42.5 - parent: 30 - type: Transform -- uid: 16805 - type: WallSolid - components: - - pos: -55.5,42.5 - parent: 30 - type: Transform -- uid: 16806 - type: WallSolid - components: - - pos: -51.5,41.5 - parent: 30 - type: Transform -- uid: 16807 - type: Grille - components: - - pos: -58.5,47.5 - parent: 30 - type: Transform -- uid: 16808 - type: Grille - components: - - pos: -56.5,48.5 - parent: 30 - type: Transform -- uid: 16809 - type: WallSolid - components: - - pos: -51.5,39.5 - parent: 30 - type: Transform -- uid: 16810 - type: Barricade - components: - - pos: -53.5,42.5 - parent: 30 - type: Transform -- uid: 16811 - type: Grille - components: - - pos: -56.5,47.5 - parent: 30 - type: Transform -- uid: 16812 - type: Rack - components: - - pos: -52.5,41.5 - parent: 30 - type: Transform -- uid: 16813 - type: CrateEngineeringCableBulk - components: - - pos: -54.5,41.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 16814 - type: ClosetEmergencyFilledRandom - components: - - pos: -56.5,41.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16815 - type: ClosetFireFilled - components: - - pos: -57.5,41.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16816 - type: Multitool - components: - - pos: -52.471344,41.489742 - parent: 30 - type: Transform -- uid: 16817 - type: MaintenanceFluffSpawner - components: - - pos: -53.5,41.5 - parent: 30 - type: Transform -- uid: 16818 - type: MaintenanceFluffSpawner - components: - - pos: -57.5,40.5 - parent: 30 - type: Transform -- uid: 16819 - type: MaintenanceWeaponSpawner - components: - - pos: -53.5,39.5 - parent: 30 - type: Transform -- uid: 16820 - type: ClosetMaintenanceFilledRandom - components: - - pos: -52.5,40.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16821 - type: CableApcExtension - components: - - pos: -50.5,37.5 - parent: 30 - type: Transform -- uid: 16822 - type: CableApcExtension - components: - - pos: -50.5,39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16823 - type: CableApcExtension - components: - - pos: -50.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16824 - type: CableApcExtension - components: - - pos: -50.5,40.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16825 - type: CableApcExtension - components: - - pos: -50.5,41.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16826 - type: CableApcExtension - components: - - pos: -50.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16827 - type: CableApcExtension - components: - - pos: -52.5,50.5 - parent: 30 - type: Transform -- uid: 16828 - type: CableApcExtension - components: - - pos: -52.5,49.5 - parent: 30 - type: Transform -- uid: 16829 - type: CableApcExtension - components: - - pos: -52.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16830 - type: CableApcExtension - components: - - pos: -52.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16831 - type: CableApcExtension - components: - - pos: -52.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16832 - type: CableApcExtension - components: - - pos: -52.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16833 - type: CableApcExtension - components: - - pos: -52.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16834 - type: CableApcExtension - components: - - pos: -52.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16835 - type: CableApcExtension - components: - - pos: -53.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16836 - type: CableApcExtension - components: - - pos: -54.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16837 - type: CableApcExtension - components: - - pos: -51.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16838 - type: CableApcExtension - components: - - pos: -55.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16839 - type: CableApcExtension - components: - - pos: -56.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16840 - type: CableApcExtension - components: - - pos: -58.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16841 - type: CableApcExtension - components: - - pos: -57.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16842 - type: CableApcExtension - components: - - pos: -59.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16843 - type: CableApcExtension - components: - - pos: -60.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16844 - type: CableApcExtension - components: - - pos: -61.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16845 - type: CableApcExtension - components: - - pos: -62.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16846 - type: CableApcExtension - components: - - pos: -63.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16847 - type: CableApcExtension - components: - - pos: -64.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16848 - type: CableApcExtension - components: - - pos: -65.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16849 - type: CableApcExtension - components: - - pos: -66.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16850 - type: CableApcExtension - components: - - pos: -67.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16851 - type: CableApcExtension - components: - - pos: -54.5,32.5 - parent: 30 - type: Transform -- uid: 16852 - type: CableApcExtension - components: - - pos: -55.5,32.5 - parent: 30 - type: Transform -- uid: 16853 - type: CableApcExtension - components: - - pos: -56.5,32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16854 - type: CableApcExtension - components: - - pos: -56.5,31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16855 - type: CableApcExtension - components: - - pos: -56.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16856 - type: CableApcExtension - components: - - pos: -56.5,29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16857 - type: CableApcExtension - components: - - pos: -56.5,28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16858 - type: CableApcExtension - components: - - pos: -56.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16859 - type: CableApcExtension - components: - - pos: -55.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16860 - type: CableApcExtension - components: - - pos: -54.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16861 - type: CableApcExtension - components: - - pos: -53.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16862 - type: CableApcExtension - components: - - pos: -52.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16863 - type: CableApcExtension - components: - - pos: -51.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16864 - type: CableApcExtension - components: - - pos: -50.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16865 - type: CableApcExtension - components: - - pos: -49.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16866 - type: CableApcExtension - components: - - pos: -46.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16867 - type: CableApcExtension - components: - - pos: -46.5,24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16868 - type: CableApcExtension - components: - - pos: -60.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16869 - type: CableApcExtension - components: - - pos: -60.5,41.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16870 - type: CableApcExtension - components: - - pos: -60.5,40.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16871 - type: CableApcExtension - components: - - pos: -60.5,39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16872 - type: CableApcExtension - components: - - pos: -60.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16873 - type: CableApcExtension - components: - - pos: -60.5,37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16874 - type: CableApcExtension - components: - - pos: -60.5,36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16875 - type: CableApcExtension - components: - - pos: -60.5,35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16876 - type: CableApcExtension - components: - - pos: -60.5,34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16877 - type: CableApcExtension - components: - - pos: -57.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16878 - type: CableApcExtension - components: - - pos: -58.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16879 - type: CableApcExtension - components: - - pos: -59.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16880 - type: Grille - components: - - pos: -55.5,34.5 - parent: 30 - type: Transform -- uid: 16881 - type: Grille - components: - - pos: -56.5,34.5 - parent: 30 - type: Transform -- uid: 16882 - type: Grille - components: - - pos: -57.5,34.5 - parent: 30 - type: Transform -- uid: 16883 - type: SpawnPointAssistant - components: - - pos: -29.5,31.5 - parent: 30 - type: Transform -- uid: 16884 - type: SpawnPointAssistant - components: - - pos: -28.5,31.5 - parent: 30 - type: Transform -- uid: 16885 - type: SpawnPointAssistant - components: - - pos: -27.5,31.5 - parent: 30 - type: Transform -- uid: 16886 - type: SpawnPointAssistant - components: - - pos: -27.5,30.5 - parent: 30 - type: Transform -- uid: 16887 - type: SpawnPointAssistant - components: - - pos: -28.5,30.5 - parent: 30 - type: Transform -- uid: 16888 - type: SpawnPointAssistant - components: - - pos: -30.5,32.5 - parent: 30 - type: Transform -- uid: 16889 - type: SpawnPointLawyer - components: - - pos: -51.5,32.5 - parent: 30 - type: Transform -- uid: 16890 - type: SpawnPointLawyer - components: - - pos: -52.5,32.5 - parent: 30 - type: Transform -- uid: 16891 - type: WaterTankFull - components: - - pos: -44.5,23.5 - parent: 30 - type: Transform -- uid: 16892 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -44.5,24.5 - parent: 30 - type: Transform -- uid: 16893 - type: NitrogenCanister - components: - - pos: -44.5,27.5 - parent: 30 - type: Transform -- uid: 16894 - type: NitrogenCanister - components: - - pos: -44.5,26.5 - parent: 30 - type: Transform -- uid: 16895 - type: AirCanister - components: - - pos: -44.5,25.5 - parent: 30 - type: Transform -- uid: 16896 - type: PoweredSmallLight - components: - - pos: -45.5,27.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16897 - type: PoweredSmallLight - components: - - pos: -52.5,27.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16898 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,33.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16899 - type: WallSolidRust - components: - - pos: -30.5,-45.5 - parent: 30 - type: Transform -- uid: 16900 - type: Catwalk - components: - - pos: -49.5,27.5 - parent: 30 - type: Transform -- uid: 16901 - type: Catwalk - components: - - pos: -50.5,27.5 - parent: 30 - type: Transform -- uid: 16902 - type: Catwalk - components: - - pos: -51.5,27.5 - parent: 30 - type: Transform -- uid: 16903 - type: Catwalk - components: - - pos: -52.5,27.5 - parent: 30 - type: Transform -- uid: 16904 - type: Catwalk - components: - - pos: -53.5,27.5 - parent: 30 - type: Transform -- uid: 16905 - type: Catwalk - components: - - pos: -54.5,27.5 - parent: 30 - type: Transform -- uid: 16906 - type: Catwalk - components: - - pos: -55.5,27.5 - parent: 30 - type: Transform -- uid: 16907 - type: Catwalk - components: - - pos: -56.5,27.5 - parent: 30 - type: Transform -- uid: 16908 - type: Rack - components: - - pos: -57.5,27.5 - parent: 30 - type: Transform -- uid: 16909 - type: ToolboxMechanicalFilled - components: - - pos: -57.478386,27.672016 - parent: 30 - type: Transform -- uid: 16910 - type: FlashlightLantern - components: - - pos: -57.540886,27.375141 - parent: 30 - type: Transform -- uid: 16911 - type: FoodCakeBirthdaySlice - components: - - pos: -11.54011,18.632044 - parent: 30 - type: Transform -- uid: 16915 - type: SolarPanel - components: - - pos: -72.5,56.5 - parent: 30 - type: Transform -- uid: 16916 - type: ClothingNeckScarfStripedGreen - components: - - pos: -38.49321,0.5225295 - parent: 30 - type: Transform -- uid: 16917 - type: Cigar - components: - - pos: -38.61821,3.5541768 - parent: 30 - type: Transform -- uid: 16918 - type: Lighter - components: - - pos: -38.30571,3.5854268 - parent: 30 - type: Transform -- uid: 16919 - type: PosterLegitCohibaRobustoAd - components: - - pos: -43.5,2.5 - parent: 30 - type: Transform -- uid: 16920 - type: PottedPlantRandom - components: - - pos: 13.5,4.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 16921 - type: BoxFolderWhite - components: - - pos: 33.577873,11.565819 - parent: 30 - type: Transform -- uid: 16922 - type: PottedPlantRandom - components: - - pos: -55.5,29.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 16923 - type: PottedPlantRandom - components: - - pos: -55.5,33.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 16924 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -57.5,32.5 - parent: 30 - type: Transform -- uid: 16925 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -57.5,31.5 - parent: 30 - type: Transform -- uid: 16926 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: -57.5,33.5 - parent: 30 - type: Transform -- uid: 16927 - type: BriefcaseBrown - components: - - pos: -56.538185,33.516518 - parent: 30 - type: Transform -- uid: 16928 - type: ClosetMaintenanceFilledRandom - components: - - pos: -55.5,30.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16929 - type: Rack - components: - - pos: -57.5,29.5 - parent: 30 - type: Transform -- uid: 16930 - type: MaintenanceFluffSpawner - components: - - pos: -57.5,29.5 - parent: 30 - type: Transform -- uid: 16931 - type: ClothingOuterVestWeb - components: - - pos: -40.528282,22.694292 - parent: 30 - type: Transform -- uid: 16932 - type: ClothingOuterArmorReflective - components: - - pos: -39.730423,56.32322 - parent: 30 - type: Transform -- uid: 16933 - type: WallSolid - components: - - pos: -59.5,31.5 - parent: 30 - type: Transform -- uid: 16934 - type: WallReinforced - components: - - pos: -61.5,31.5 - parent: 30 - type: Transform -- uid: 16935 - type: AirlockMaintLocked - components: - - pos: -60.5,31.5 - parent: 30 - type: Transform -- uid: 16936 - type: Chair - components: - - pos: -59.5,29.5 - parent: 30 - type: Transform -- uid: 16937 - type: Chair - components: - - pos: -60.5,29.5 - parent: 30 - type: Transform -- uid: 16938 - type: ClosetLegalFilled - components: - - pos: -48.5,32.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16939 - type: Table - components: - - pos: -61.5,29.5 - parent: 30 - type: Transform -- uid: 16940 - type: RandomInstruments - components: - - pos: -61.5,29.5 - parent: 30 - type: Transform -- uid: 16941 - type: WaterTankFull - components: - - pos: -61.5,30.5 - parent: 30 - type: Transform -- uid: 16942 - type: ExtinguisherCabinetFilled - components: - - pos: -43.5,-1.5 - parent: 30 - type: Transform -- uid: 16944 - type: ExtinguisherCabinetFilled - components: - - pos: -51.5,14.5 - parent: 30 - type: Transform -- uid: 16945 - type: ExtinguisherCabinetFilled - components: - - pos: -51.5,22.5 - parent: 30 - type: Transform -- uid: 16946 - type: ClothingHeadHatPirate - components: - - pos: -53.51481,40.642628 - parent: 30 - type: Transform -- uid: 16947 - type: ClothingOuterCoatGentle - components: - - pos: -44.54322,24.403576 - parent: 30 - type: Transform -- uid: 16948 - type: ClothingOuterCoatJensen - components: - - pos: -18.578043,23.546242 - parent: 30 - type: Transform -- uid: 16949 - type: WallReinforced - components: - - pos: -61.5,41.5 - parent: 30 - type: Transform -- uid: 16950 - type: Grille - components: - - pos: -58.5,36.5 - parent: 30 - type: Transform -- uid: 16951 - type: Grille - components: - - pos: -51.5,36.5 - parent: 30 - type: Transform -- uid: 16952 - type: WallSolidRust - components: - - pos: 44.5,18.5 - parent: 30 - type: Transform -- uid: 16953 - type: WallSolid - components: - - pos: -59.5,38.5 - parent: 30 - type: Transform -- uid: 16954 - type: FirelockGlass - components: - - pos: -60.5,38.5 - parent: 30 - type: Transform -- uid: 16955 - type: Catwalk - components: - - pos: -60.5,32.5 - parent: 30 - type: Transform -- uid: 16956 - type: Catwalk - components: - - pos: -60.5,33.5 - parent: 30 - type: Transform -- uid: 16957 - type: Catwalk - components: - - pos: -60.5,34.5 - parent: 30 - type: Transform -- uid: 16958 - type: Catwalk - components: - - pos: -60.5,35.5 - parent: 30 - type: Transform -- uid: 16959 - type: Catwalk - components: - - pos: -60.5,36.5 - parent: 30 - type: Transform -- uid: 16960 - type: Catwalk - components: - - pos: -60.5,37.5 - parent: 30 - type: Transform -- uid: 16961 - type: ClothingUniformJumpskirtDetectiveGrey - components: - - pos: -56.564133,39.58168 - parent: 30 - type: Transform -- uid: 16962 - type: ClothingUniformJumpsuitDetectiveGrey - components: - - pos: -56.611008,39.67543 - parent: 30 - type: Transform -- uid: 16963 - type: ClothingHeadHatWeldingMaskPainted - components: - - pos: -52.689133,41.472305 - parent: 30 - type: Transform -- uid: 16964 - type: ClothingHeadHatWeldingMaskFlame - components: - - pos: 43.48015,4.6014876 - parent: 30 - type: Transform -- uid: 16965 - type: ClothingHeadHatWeldingMaskFlameBlue - components: - - pos: 19.735062,46.552174 - parent: 30 - type: Transform -- uid: 16966 - type: SignExamroom - components: - - pos: -20.5,-11.5 - parent: 30 - type: Transform -- uid: 16967 - type: WardrobePinkFilled - components: - - pos: -59.5,32.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16968 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -29.5,37.5 - parent: 30 - type: Transform -- uid: 16969 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,37.5 - parent: 30 - type: Transform -- uid: 16970 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -31.5,37.5 - parent: 30 - type: Transform -- uid: 16971 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -32.5,37.5 - parent: 30 - type: Transform -- uid: 16972 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -33.5,37.5 - parent: 30 - type: Transform -- uid: 16973 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,37.5 - parent: 30 - type: Transform -- uid: 16974 - type: DisposalJunctionFlipped - components: - - pos: -35.5,37.5 - parent: 30 - type: Transform -- uid: 16975 - type: PlushieSpaceLizard - components: - - pos: -62.503014,39.372643 - parent: 30 - type: Transform - - nextAttack: 1079.7786037 - type: MeleeWeapon -- uid: 16976 - type: PottedPlantRandom - components: - - pos: -48.5,37.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 16977 - type: PottedPlantRandom - components: - - pos: -38.5,35.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 16978 - type: PottedPlantRandom - components: - - pos: -32.5,35.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 16980 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,40.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16981 - type: PoweredSmallLight - components: - - pos: -61.5,30.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16982 - type: PoweredSmallLight - components: - - pos: -64.5,44.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16983 - type: OxygenCanister - components: - - pos: -63.5,44.5 - parent: 30 - type: Transform -- uid: 16984 - type: ClosetEmergencyFilledRandom - components: - - pos: -63.5,42.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16985 - type: CrateEngineeringCableMV - components: - - pos: -65.5,42.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 16986 - type: Table - components: - - pos: -64.5,42.5 - parent: 30 - type: Transform -- uid: 16987 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -64.5,43.5 - parent: 30 - type: Transform -- uid: 16988 - type: CableHVStack - components: - - pos: -64.499306,42.631454 - parent: 30 - type: Transform -- uid: 16989 - type: ClothingOuterSuitEmergency - components: - - pos: -64.516846,42.646187 - parent: 30 - type: Transform -- uid: 16990 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: -61.5,31.5 - parent: 30 - type: Transform -- uid: 16991 - type: SignDirectionalSolar - components: - - rot: -1.5707963267948966 rad - pos: -58.5,42.5 - parent: 30 - type: Transform -- uid: 16992 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: -51.5,38.5 - parent: 30 - type: Transform -- uid: 16993 - type: SignElectricalMed - components: - - pos: -62.5,44.5 - parent: 30 - type: Transform -- uid: 16994 - type: LockerElectricalSuppliesFilled - components: - - pos: -59.5,37.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16995 - type: LockerElectricalSuppliesFilled - components: - - pos: -5.5,-36.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16996 - type: LockerWeldingSuppliesFilled - components: - - pos: -9.5,-36.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16997 - type: AtmosFixBlockerMarker - components: - - pos: 27.5,-26.5 - parent: 30 - type: Transform -- uid: 16998 - type: AtmosFixBlockerMarker - components: - - pos: 25.5,-26.5 - parent: 30 - type: Transform -- uid: 16999 - type: AtmosFixBlockerMarker - components: - - pos: 26.5,-26.5 - parent: 30 - type: Transform -- uid: 17000 - type: AtmosFixBlockerMarker - components: - - pos: 27.5,-28.5 - parent: 30 - type: Transform -- uid: 17001 - type: AtmosFixBlockerMarker - components: - - pos: 26.5,-28.5 - parent: 30 - type: Transform -- uid: 17002 - type: AtmosFixBlockerMarker - components: - - pos: 25.5,-28.5 - parent: 30 - type: Transform -- uid: 17003 - type: AtmosFixPlasmaMarker - components: - - pos: 26.5,-30.5 - parent: 30 - type: Transform -- uid: 17004 - type: AtmosFixPlasmaMarker - components: - - pos: 27.5,-30.5 - parent: 30 - type: Transform -- uid: 17005 - type: PlasmaCanister - components: - - pos: 27.5,-30.5 - parent: 30 - type: Transform -- uid: 17006 - type: AtmosFixBlockerMarker - components: - - pos: 27.5,-32.5 - parent: 30 - type: Transform -- uid: 17007 - type: AtmosFixBlockerMarker - components: - - pos: 26.5,-32.5 - parent: 30 - type: Transform -- uid: 17008 - type: AtmosFixBlockerMarker - components: - - pos: 25.5,-32.5 - parent: 30 - type: Transform -- uid: 17009 - type: AtmosFixBlockerMarker - components: - - pos: 25.5,-34.5 - parent: 30 - type: Transform -- uid: 17010 - type: AtmosFixBlockerMarker - components: - - pos: 26.5,-34.5 - parent: 30 - type: Transform -- uid: 17011 - type: AtmosFixBlockerMarker - components: - - pos: 27.5,-34.5 - parent: 30 - type: Transform -- uid: 17012 - type: ReinforcedPlasmaWindow - components: - - pos: -60.5,56.5 - parent: 30 - type: Transform -- uid: 17013 - type: ReinforcedPlasmaWindow - components: - - pos: -61.5,57.5 - parent: 30 - type: Transform -- uid: 17014 - type: ReinforcedPlasmaWindow - components: - - pos: -60.5,58.5 - parent: 30 - type: Transform -- uid: 17015 - type: ReinforcedPlasmaWindow - components: - - pos: -59.5,57.5 - parent: 30 - type: Transform -- uid: 17016 - type: WallReinforced - components: - - pos: -59.5,55.5 - parent: 30 - type: Transform -- uid: 17017 - type: WallReinforced - components: - - pos: -59.5,56.5 - parent: 30 - type: Transform -- uid: 17018 - type: WallReinforced - components: - - pos: -58.5,56.5 - parent: 30 - type: Transform -- uid: 17019 - type: WallReinforced - components: - - pos: -58.5,57.5 - parent: 30 - type: Transform -- uid: 17020 - type: WallReinforced - components: - - pos: -58.5,58.5 - parent: 30 - type: Transform -- uid: 17021 - type: WallReinforced - components: - - pos: -59.5,58.5 - parent: 30 - type: Transform -- uid: 17022 - type: WallReinforced - components: - - pos: -59.5,59.5 - parent: 30 - type: Transform -- uid: 17023 - type: WallReinforced - components: - - pos: -60.5,59.5 - parent: 30 - type: Transform -- uid: 17024 - type: WallReinforced - components: - - pos: -61.5,59.5 - parent: 30 - type: Transform -- uid: 17025 - type: WallReinforced - components: - - pos: -61.5,58.5 - parent: 30 - type: Transform -- uid: 17026 - type: WallReinforced - components: - - pos: -62.5,58.5 - parent: 30 - type: Transform -- uid: 17027 - type: WallReinforced - components: - - pos: -62.5,57.5 - parent: 30 - type: Transform -- uid: 17028 - type: WallReinforced - components: - - pos: -62.5,56.5 - parent: 30 - type: Transform -- uid: 17029 - type: WallReinforced - components: - - pos: -61.5,56.5 - parent: 30 - type: Transform -- uid: 17030 - type: WallReinforced - components: - - pos: -61.5,55.5 - parent: 30 - type: Transform -- uid: 17031 - type: WallSolid - components: - - pos: -60.5,55.5 - parent: 30 - type: Transform -- uid: 17032 - type: Grille - components: - - pos: -60.5,56.5 - parent: 30 - type: Transform -- uid: 17033 - type: Grille - components: - - pos: -61.5,57.5 - parent: 30 - type: Transform -- uid: 17034 - type: Grille - components: - - pos: -60.5,58.5 - parent: 30 - type: Transform -- uid: 17035 - type: Grille - components: - - pos: -59.5,57.5 - parent: 30 - type: Transform -- uid: 17036 - type: PonderingOrb - components: - - pos: -60.5,57.5 - parent: 30 - type: Transform -- uid: 17037 - type: AtmosFixPlasmaMarker - components: - - pos: -60.5,57.5 - parent: 30 - type: Transform -- uid: 17038 - type: SignDangerMed - components: - - pos: -60.5,59.5 - parent: 30 - type: Transform -- uid: 17039 - type: ReinforcedWindow - components: - - pos: -58.5,48.5 - parent: 30 - type: Transform -- uid: 17040 - type: ReinforcedWindow - components: - - pos: -56.5,47.5 - parent: 30 - type: Transform -- uid: 17041 - type: CableApcExtension - components: - - pos: -57.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17042 - type: GrilleBroken - components: - - pos: -55.5,39.5 - parent: 30 - type: Transform -- uid: 17043 - type: Grille - components: - - pos: -65.5,56.5 - parent: 30 - type: Transform -- uid: 17044 - type: Grille - components: - - pos: -65.5,57.5 - parent: 30 - type: Transform -- uid: 17045 - type: Grille - components: - - pos: -65.5,58.5 - parent: 30 - type: Transform -- uid: 17046 - type: Grille - components: - - pos: -65.5,62.5 - parent: 30 - type: Transform -- uid: 17047 - type: Grille - components: - - pos: -64.5,62.5 - parent: 30 - type: Transform -- uid: 17048 - type: Grille - components: - - pos: -63.5,62.5 - parent: 30 - type: Transform -- uid: 17049 - type: Grille - components: - - pos: -61.5,62.5 - parent: 30 - type: Transform -- uid: 17050 - type: Grille - components: - - pos: -59.5,62.5 - parent: 30 - type: Transform -- uid: 17051 - type: Grille - components: - - pos: -60.5,62.5 - parent: 30 - type: Transform -- uid: 17052 - type: GrilleBroken - components: - - pos: -62.5,62.5 - parent: 30 - type: Transform -- uid: 17053 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -65.5,61.5 - parent: 30 - type: Transform -- uid: 17054 - type: GrilleBroken - components: - - pos: -65.5,59.5 - parent: 30 - type: Transform -- uid: 17055 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -65.5,55.5 - parent: 30 - type: Transform -- uid: 17056 - type: GrilleBroken - components: - - pos: -57.5,44.5 - parent: 30 - type: Transform -- uid: 17057 - type: ReinforcedWindow - components: - - pos: -58.5,47.5 - parent: 30 - type: Transform -- uid: 17058 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -58.5,62.5 - parent: 30 - type: Transform -- uid: 17059 - type: MagazineRifleRubber - components: - - pos: -41.705307,56.406067 - parent: 30 - type: Transform -- uid: 17060 - type: Rack - components: - - pos: -59.5,34.5 - parent: 30 - type: Transform -- uid: 17061 - type: Rack - components: - - pos: -59.5,35.5 - parent: 30 - type: Transform -- uid: 17062 - type: MaintenanceToolSpawner - components: - - pos: -59.5,35.5 - parent: 30 - type: Transform -- uid: 17063 - type: MaintenanceFluffSpawner - components: - - pos: -59.5,34.5 - parent: 30 - type: Transform -- uid: 17064 - type: Grille - components: - - pos: -39.5,65.5 - parent: 30 - type: Transform -- uid: 17065 - type: Grille - components: - - pos: -41.5,70.5 - parent: 30 - type: Transform -- uid: 17066 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -41.5,69.5 - parent: 30 - type: Transform -- uid: 17067 - type: GrilleBroken - components: - - pos: -41.5,71.5 - parent: 30 - type: Transform -- uid: 17068 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -40.5,69.5 - parent: 30 - type: Transform -- uid: 17069 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -39.5,66.5 - parent: 30 - type: Transform -- uid: 17070 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -39.5,64.5 - parent: 30 - type: Transform -- uid: 17071 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -56.5,64.5 - parent: 30 - type: Transform -- uid: 17072 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -56.5,65.5 - parent: 30 - type: Transform -- uid: 17073 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -56.5,67.5 - parent: 30 - type: Transform -- uid: 17074 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -56.5,63.5 - parent: 30 - type: Transform -- uid: 17075 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -56.5,66.5 - parent: 30 - type: Transform -- uid: 17076 - type: GrilleBroken - components: - - pos: -56.5,68.5 - parent: 30 - type: Transform -- uid: 17077 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -61.5,44.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17078 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -54.5,45.5 - parent: 30 - type: Transform -- uid: 17079 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -54.5,44.5 - parent: 30 - type: Transform -- uid: 17080 - type: Catwalk - components: - - pos: 73.5,30.5 - parent: 30 - type: Transform -- uid: 17081 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -50.5,43.5 - parent: 30 - type: Transform -- uid: 17082 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -51.5,43.5 - parent: 30 - type: Transform -- uid: 17083 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -52.5,43.5 - parent: 30 - type: Transform -- uid: 17084 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -53.5,43.5 - parent: 30 - type: Transform -- uid: 17085 - type: FirelockGlass - components: - - pos: -54.5,43.5 - parent: 30 - type: Transform -- uid: 17086 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -55.5,43.5 - parent: 30 - type: Transform -- uid: 17087 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -56.5,43.5 - parent: 30 - type: Transform -- uid: 17088 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -57.5,43.5 - parent: 30 - type: Transform -- uid: 17089 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -58.5,43.5 - parent: 30 - type: Transform -- uid: 17090 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,43.5 - parent: 30 - type: Transform -- uid: 17091 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -60.5,43.5 - parent: 30 - type: Transform -- uid: 17092 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -61.5,43.5 - parent: 30 - type: Transform -- uid: 17093 - type: WallSolid - components: - - pos: -55.5,44.5 - parent: 30 - type: Transform -- uid: 17094 - type: Catwalk - components: - - pos: 74.5,30.5 - parent: 30 - type: Transform -- uid: 17095 - type: CableHV - components: - - pos: 75.5,30.5 - parent: 30 - type: Transform -- uid: 17096 - type: WallSolid - components: - - pos: -58.5,45.5 - parent: 30 - type: Transform -- uid: 17097 - type: ToiletDirtyWater - components: - - rot: -1.5707963267948966 rad - pos: -55.5,45.5 - parent: 30 - type: Transform -- uid: 17098 - type: ReinforcedWindow - components: - - pos: -57.5,53.5 - parent: 30 - type: Transform -- uid: 17099 - type: ClothingOuterSuitMonkey - components: - - pos: -56.484222,45.604958 - parent: 30 - type: Transform -- uid: 17100 - type: PaintingMonkey - components: - - pos: -56.5,46.5 - parent: 30 - type: Transform -- uid: 17101 - type: ClothingHeadHatAnimalMonkey - components: - - pos: -56.484222,45.698708 - parent: 30 - type: Transform -- uid: 17102 - type: ReinforcedWindow - components: - - pos: -55.5,53.5 - parent: 30 - type: Transform -- uid: 17103 - type: Table - components: - - pos: -59.5,44.5 - parent: 30 - type: Transform -- uid: 17104 - type: Table - components: - - pos: -59.5,45.5 - parent: 30 - type: Transform -- uid: 17105 - type: Table - components: - - pos: -60.5,45.5 - parent: 30 - type: Transform -- uid: 17106 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: -61.5,45.5 - parent: 30 - type: Transform -- uid: 17107 - type: ChairOfficeDark - components: - - pos: -60.5,44.5 - parent: 30 - type: Transform -- uid: 17108 - type: AtmosFixFreezerMarker - components: - - pos: -18.5,14.5 - parent: 30 - type: Transform -- uid: 17109 - type: AtmosFixFreezerMarker - components: - - pos: -18.5,15.5 - parent: 30 - type: Transform -- uid: 17110 - type: ClothingHeadHatUshanka - components: - - pos: -59.596687,45.595665 - parent: 30 - type: Transform -- uid: 17111 - type: ClothingHeadHatUshanka - components: - - pos: -59.440437,45.42379 - parent: 30 - type: Transform -- uid: 17112 - type: RandomSpawner - components: - - pos: -56.5,31.5 - parent: 30 - type: Transform -- uid: 17113 - type: RandomSpawner - components: - - pos: -45.5,25.5 - parent: 30 - type: Transform -- uid: 17114 - type: RandomSpawner - components: - - pos: -46.5,31.5 - parent: 30 - type: Transform -- uid: 17115 - type: RandomSpawner - components: - - pos: -60.5,33.5 - parent: 30 - type: Transform -- uid: 17116 - type: RandomSpawner - components: - - pos: -59.5,40.5 - parent: 30 - type: Transform -- uid: 17117 - type: RandomSpawner - components: - - pos: -51.5,45.5 - parent: 30 - type: Transform -- uid: 17118 - type: Stool - components: - - pos: -53.5,45.5 - parent: 30 - type: Transform -- uid: 17119 - type: Rack - components: - - pos: -53.5,48.5 - parent: 30 - type: Transform -- uid: 17120 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-17.5 - parent: 30 - type: Transform -- uid: 17121 - type: WallReinforced - components: - - pos: -47.5,-18.5 - parent: 30 - type: Transform -- uid: 17122 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-19.5 - parent: 30 - type: Transform -- uid: 17123 - type: WallReinforced - components: - - pos: -47.5,-20.5 - parent: 30 - type: Transform -- uid: 17124 - type: WallReinforced - components: - - pos: -47.5,-21.5 - parent: 30 - type: Transform -- uid: 17125 - type: ReinforcedWindow - components: - - pos: -49.5,-21.5 - parent: 30 - type: Transform -- uid: 17126 - type: WallReinforced - components: - - pos: -47.5,-25.5 - parent: 30 - type: Transform -- uid: 17127 - type: WallReinforced - components: - - pos: -55.5,-21.5 - parent: 30 - type: Transform -- uid: 17128 - type: ReinforcedWindow - components: - - pos: -56.5,-20.5 - parent: 30 - type: Transform -- uid: 17129 - type: ReinforcedWindow - components: - - pos: -57.5,-20.5 - parent: 30 - type: Transform -- uid: 17130 - type: ReinforcedWindow - components: - - pos: -58.5,-20.5 - parent: 30 - type: Transform -- uid: 17131 - type: ReinforcedWindow - components: - - pos: -60.5,-19.5 - parent: 30 - type: Transform -- uid: 17132 - type: ReinforcedWindow - components: - - pos: -61.5,-19.5 - parent: 30 - type: Transform -- uid: 17133 - type: ReinforcedWindow - components: - - pos: -62.5,-19.5 - parent: 30 - type: Transform -- uid: 17134 - type: ReinforcedWindow - components: - - pos: -64.5,-20.5 - parent: 30 - type: Transform -- uid: 17135 - type: ReinforcedWindow - components: - - pos: -64.5,-18.5 - parent: 30 - type: Transform -- uid: 17136 - type: ReinforcedWindow - components: - - pos: -62.5,-20.5 - parent: 30 - type: Transform -- uid: 17137 - type: ReinforcedWindow - components: - - pos: -62.5,-18.5 - parent: 30 - type: Transform -- uid: 17138 - type: WallReinforced - components: - - pos: -64.5,-19.5 - parent: 30 - type: Transform -- uid: 17139 - type: WallReinforced - components: - - pos: -59.5,-20.5 - parent: 30 - type: Transform -- uid: 17140 - type: WallReinforced - components: - - pos: -59.5,-19.5 - parent: 30 - type: Transform -- uid: 17141 - type: Poweredlight - components: - - pos: 25.5,11.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17142 - type: WallReinforced - components: - - pos: -55.5,-20.5 - parent: 30 - type: Transform -- uid: 17143 - type: WallReinforced - components: - - pos: -55.5,-25.5 - parent: 30 - type: Transform -- uid: 17144 - type: ReinforcedWindow - components: - - pos: -48.5,-21.5 - parent: 30 - type: Transform -- uid: 17145 - type: WallReinforced - components: - - pos: -56.5,-25.5 - parent: 30 - type: Transform -- uid: 17146 - type: WallReinforced - components: - - pos: -64.5,-24.5 - parent: 30 - type: Transform -- uid: 17147 - type: WallReinforced - components: - - pos: -64.5,-23.5 - parent: 30 - type: Transform -- uid: 17148 - type: WallReinforced - components: - - pos: -64.5,-22.5 - parent: 30 - type: Transform -- uid: 17149 - type: WallReinforced - components: - - pos: -64.5,-21.5 - parent: 30 - type: Transform -- uid: 17150 - type: WallReinforced - components: - - pos: -64.5,-25.5 - parent: 30 - type: Transform -- uid: 17151 - type: WallReinforced - components: - - pos: -63.5,-25.5 - parent: 30 - type: Transform -- uid: 17152 - type: WallReinforced - components: - - pos: -63.5,-26.5 - parent: 30 - type: Transform -- uid: 17153 - type: WallReinforced - components: - - pos: -60.5,-26.5 - parent: 30 - type: Transform -- uid: 17154 - type: WallReinforced - components: - - pos: -60.5,-25.5 - parent: 30 - type: Transform -- uid: 17155 - type: WallReinforced - components: - - pos: -59.5,-25.5 - parent: 30 - type: Transform -- uid: 17156 - type: WallReinforced - components: - - pos: -58.5,-25.5 - parent: 30 - type: Transform -- uid: 17157 - type: WallReinforced - components: - - pos: -57.5,-25.5 - parent: 30 - type: Transform -- uid: 17158 - type: WallSolid - components: - - pos: -59.5,-24.5 - parent: 30 - type: Transform -- uid: 17159 - type: WallSolid - components: - - pos: -59.5,-21.5 - parent: 30 - type: Transform -- uid: 17160 - type: ReinforcedWindow - components: - - pos: -65.5,-24.5 - parent: 30 - type: Transform -- uid: 17161 - type: ReinforcedWindow - components: - - pos: -66.5,-24.5 - parent: 30 - type: Transform -- uid: 17162 - type: ReinforcedWindow - components: - - pos: -66.5,-25.5 - parent: 30 - type: Transform -- uid: 17163 - type: ReinforcedWindow - components: - - pos: -67.5,-25.5 - parent: 30 - type: Transform -- uid: 17164 - type: ReinforcedWindow - components: - - pos: -67.5,-26.5 - parent: 30 - type: Transform -- uid: 17165 - type: ReinforcedWindow - components: - - pos: -67.5,-27.5 - parent: 30 - type: Transform -- uid: 17166 - type: ReinforcedWindow - components: - - pos: -67.5,-28.5 - parent: 30 - type: Transform -- uid: 17167 - type: ReinforcedWindow - components: - - pos: -67.5,-29.5 - parent: 30 - type: Transform -- uid: 17168 - type: ReinforcedWindow - components: - - pos: -68.5,-29.5 - parent: 30 - type: Transform -- uid: 17169 - type: ReinforcedWindow - components: - - pos: -68.5,-30.5 - parent: 30 - type: Transform -- uid: 17170 - type: ReinforcedWindow - components: - - pos: -69.5,-30.5 - parent: 30 - type: Transform -- uid: 17171 - type: ReinforcedWindow - components: - - pos: -69.5,-31.5 - parent: 30 - type: Transform -- uid: 17172 - type: ReinforcedWindow - components: - - pos: -69.5,-32.5 - parent: 30 - type: Transform -- uid: 17173 - type: ReinforcedWindow - components: - - pos: -70.5,-32.5 - parent: 30 - type: Transform -- uid: 17174 - type: ReinforcedWindow - components: - - pos: -70.5,-33.5 - parent: 30 - type: Transform -- uid: 17175 - type: ReinforcedWindow - components: - - pos: -71.5,-33.5 - parent: 30 - type: Transform -- uid: 17176 - type: ReinforcedWindow - components: - - pos: -71.5,-34.5 - parent: 30 - type: Transform -- uid: 17177 - type: ReinforcedWindow - components: - - pos: -73.5,-35.5 - parent: 30 - type: Transform -- uid: 17178 - type: ReinforcedWindow - components: - - pos: -73.5,-34.5 - parent: 30 - type: Transform -- uid: 17179 - type: ReinforcedWindow - components: - - pos: -72.5,-34.5 - parent: 30 - type: Transform -- uid: 17180 - type: ReinforcedWindow - components: - - pos: -74.5,-34.5 - parent: 30 - type: Transform -- uid: 17181 - type: ReinforcedWindow - components: - - pos: -75.5,-34.5 - parent: 30 - type: Transform -- uid: 17182 - type: ReinforcedWindow - components: - - pos: -48.5,-48.5 - parent: 30 - type: Transform -- uid: 17183 - type: ReinforcedWindow - components: - - pos: -48.5,-47.5 - parent: 30 - type: Transform -- uid: 17184 - type: ReinforcedWindow - components: - - pos: -48.5,-46.5 - parent: 30 - type: Transform -- uid: 17185 - type: ReinforcedWindow - components: - - pos: -48.5,-45.5 - parent: 30 - type: Transform -- uid: 17186 - type: ReinforcedWindow - components: - - pos: -48.5,-44.5 - parent: 30 - type: Transform -- uid: 17187 - type: ReinforcedWindow - components: - - pos: -48.5,-43.5 - parent: 30 - type: Transform -- uid: 17188 - type: ReinforcedWindow - components: - - pos: -48.5,-42.5 - parent: 30 - type: Transform -- uid: 17189 - type: ReinforcedWindow - components: - - pos: -48.5,-41.5 - parent: 30 - type: Transform -- uid: 17190 - type: ReinforcedWindow - components: - - pos: -48.5,-40.5 - parent: 30 - type: Transform -- uid: 17191 - type: ReinforcedWindow - components: - - pos: -49.5,-40.5 - parent: 30 - type: Transform -- uid: 17192 - type: ReinforcedWindow - components: - - pos: -50.5,-40.5 - parent: 30 - type: Transform -- uid: 17193 - type: ReinforcedWindow - components: - - pos: -52.5,-40.5 - parent: 30 - type: Transform -- uid: 17194 - type: ReinforcedWindow - components: - - pos: -50.5,-38.5 - parent: 30 - type: Transform -- uid: 17195 - type: ReinforcedWindow - components: - - pos: -51.5,-38.5 - parent: 30 - type: Transform -- uid: 17196 - type: ReinforcedWindow - components: - - pos: -51.5,-37.5 - parent: 30 - type: Transform -- uid: 17197 - type: ReinforcedWindow - components: - - pos: -51.5,-36.5 - parent: 30 - type: Transform -- uid: 17198 - type: ReinforcedWindow - components: - - pos: -51.5,-35.5 - parent: 30 - type: Transform -- uid: 17199 - type: ReinforcedWindow - components: - - pos: -52.5,-35.5 - parent: 30 - type: Transform -- uid: 17200 - type: ReinforcedWindow - components: - - pos: -52.5,-34.5 - parent: 30 - type: Transform -- uid: 17201 - type: ReinforcedWindow - components: - - pos: -52.5,-33.5 - parent: 30 - type: Transform -- uid: 17202 - type: ReinforcedWindow - components: - - pos: -53.5,-33.5 - parent: 30 - type: Transform -- uid: 17203 - type: ReinforcedWindow - components: - - pos: -53.5,-32.5 - parent: 30 - type: Transform -- uid: 17204 - type: ReinforcedWindow - components: - - pos: -54.5,-32.5 - parent: 30 - type: Transform -- uid: 17205 - type: ReinforcedWindow - components: - - pos: -54.5,-31.5 - parent: 30 - type: Transform -- uid: 17206 - type: ReinforcedWindow - components: - - pos: -54.5,-30.5 - parent: 30 - type: Transform -- uid: 17207 - type: ReinforcedWindow - components: - - pos: -55.5,-30.5 - parent: 30 - type: Transform -- uid: 17208 - type: ReinforcedWindow - components: - - pos: -55.5,-29.5 - parent: 30 - type: Transform -- uid: 17209 - type: ReinforcedWindow - components: - - pos: -56.5,-29.5 - parent: 30 - type: Transform -- uid: 17210 - type: ReinforcedWindow - components: - - pos: -56.5,-28.5 - parent: 30 - type: Transform -- uid: 17211 - type: ReinforcedWindow - components: - - pos: -56.5,-27.5 - parent: 30 - type: Transform -- uid: 17212 - type: ReinforcedWindow - components: - - pos: -56.5,-26.5 - parent: 30 - type: Transform -- uid: 17213 - type: ReinforcedWindow - components: - - pos: -50.5,-21.5 - parent: 30 - type: Transform -- uid: 17214 - type: ReinforcedWindow - components: - - pos: -51.5,-21.5 - parent: 30 - type: Transform -- uid: 17215 - type: ReinforcedWindow - components: - - pos: -52.5,-21.5 - parent: 30 - type: Transform -- uid: 17216 - type: ReinforcedWindow - components: - - pos: -53.5,-21.5 - parent: 30 - type: Transform -- uid: 17217 - type: ReinforcedWindow - components: - - pos: -54.5,-21.5 - parent: 30 - type: Transform -- uid: 17218 - type: ReinforcedWindow - components: - - pos: -54.5,-25.5 - parent: 30 - type: Transform -- uid: 17219 - type: ReinforcedWindow - components: - - pos: -53.5,-25.5 - parent: 30 - type: Transform -- uid: 17220 - type: ReinforcedWindow - components: - - pos: -52.5,-25.5 - parent: 30 - type: Transform -- uid: 17221 - type: ReinforcedWindow - components: - - pos: -51.5,-25.5 - parent: 30 - type: Transform -- uid: 17222 - type: ReinforcedWindow - components: - - pos: -50.5,-25.5 - parent: 30 - type: Transform -- uid: 17223 - type: ReinforcedWindow - components: - - pos: -49.5,-25.5 - parent: 30 - type: Transform -- uid: 17224 - type: ReinforcedWindow - components: - - pos: -48.5,-25.5 - parent: 30 - type: Transform -- uid: 17225 - type: WallSolid - components: - - pos: -59.5,-23.5 - parent: 30 - type: Transform -- uid: 17226 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-16.5 - parent: 30 - type: Transform - - devices: - - 17227 - - 20359 - - 20360 - type: DeviceList -- uid: 17227 - type: AirSensor - components: - - pos: -46.5,-17.5 - parent: 30 - type: Transform -- uid: 17228 - type: AirSensor - components: - - pos: -48.5,-23.5 - parent: 30 - type: Transform -- uid: 17229 - type: AirlockGlass - components: - - pos: -47.5,-23.5 - parent: 30 - type: Transform -- uid: 17230 - type: AirlockGlass - components: - - pos: -55.5,-23.5 - parent: 30 - type: Transform -- uid: 17231 - type: WallSolid - components: - - pos: -63.5,-36.5 - parent: 30 - type: Transform -- uid: 17232 - type: WallSolid - components: - - pos: -64.5,-36.5 - parent: 30 - type: Transform -- uid: 17233 - type: WallSolid - components: - - pos: -64.5,-37.5 - parent: 30 - type: Transform -- uid: 17234 - type: WallSolid - components: - - pos: -65.5,-37.5 - parent: 30 - type: Transform -- uid: 17235 - type: WallSolid - components: - - pos: -66.5,-37.5 - parent: 30 - type: Transform -- uid: 17236 - type: WallSolid - components: - - pos: -66.5,-38.5 - parent: 30 - type: Transform -- uid: 17237 - type: WallSolid - components: - - pos: -66.5,-39.5 - parent: 30 - type: Transform -- uid: 17238 - type: WallSolid - components: - - pos: -67.5,-39.5 - parent: 30 - type: Transform -- uid: 17239 - type: WallSolid - components: - - pos: -68.5,-39.5 - parent: 30 - type: Transform -- uid: 17240 - type: WallSolid - components: - - pos: -68.5,-40.5 - parent: 30 - type: Transform -- uid: 17241 - type: WallSolid - components: - - pos: -68.5,-41.5 - parent: 30 - type: Transform -- uid: 17242 - type: WallSolid - components: - - pos: -69.5,-41.5 - parent: 30 - type: Transform -- uid: 17243 - type: WallSolid - components: - - pos: -69.5,-42.5 - parent: 30 - type: Transform -- uid: 17244 - type: WallSolid - components: - - pos: -69.5,-43.5 - parent: 30 - type: Transform -- uid: 17245 - type: WallSolid - components: - - pos: -69.5,-44.5 - parent: 30 - type: Transform -- uid: 17246 - type: WallSolid - components: - - pos: -60.5,-36.5 - parent: 30 - type: Transform -- uid: 17247 - type: WallSolid - components: - - pos: -59.5,-36.5 - parent: 30 - type: Transform -- uid: 17248 - type: WallSolid - components: - - pos: -59.5,-37.5 - parent: 30 - type: Transform -- uid: 17249 - type: WallSolid - components: - - pos: -58.5,-37.5 - parent: 30 - type: Transform -- uid: 17250 - type: WallSolid - components: - - pos: -57.5,-37.5 - parent: 30 - type: Transform -- uid: 17251 - type: WallSolid - components: - - pos: -57.5,-38.5 - parent: 30 - type: Transform -- uid: 17252 - type: WallSolid - components: - - pos: -56.5,-38.5 - parent: 30 - type: Transform -- uid: 17253 - type: WallSolid - components: - - pos: -56.5,-39.5 - parent: 30 - type: Transform -- uid: 17254 - type: WallSolid - components: - - pos: -56.5,-40.5 - parent: 30 - type: Transform -- uid: 17255 - type: WallSolid - components: - - pos: -56.5,-41.5 - parent: 30 - type: Transform -- uid: 17256 - type: WallSolid - components: - - pos: -56.5,-42.5 - parent: 30 - type: Transform -- uid: 17257 - type: WallSolid - components: - - pos: -56.5,-43.5 - parent: 30 - type: Transform -- uid: 17258 - type: WallSolid - components: - - pos: -56.5,-44.5 - parent: 30 - type: Transform -- uid: 17259 - type: WallSolid - components: - - pos: -53.5,-44.5 - parent: 30 - type: Transform -- uid: 17260 - type: WallSolid - components: - - pos: -52.5,-44.5 - parent: 30 - type: Transform -- uid: 17261 - type: WallSolid - components: - - pos: -53.5,-47.5 - parent: 30 - type: Transform -- uid: 17262 - type: WallSolid - components: - - pos: -52.5,-46.5 - parent: 30 - type: Transform -- uid: 17263 - type: Grille - components: - - pos: -56.5,-20.5 - parent: 30 - type: Transform -- uid: 17264 - type: Grille - components: - - pos: -57.5,-20.5 - parent: 30 - type: Transform -- uid: 17265 - type: Grille - components: - - pos: -58.5,-20.5 - parent: 30 - type: Transform -- uid: 17266 - type: Grille - components: - - pos: -48.5,-25.5 - parent: 30 - type: Transform -- uid: 17267 - type: Grille - components: - - pos: -49.5,-25.5 - parent: 30 - type: Transform -- uid: 17268 - type: Grille - components: - - pos: -50.5,-25.5 - parent: 30 - type: Transform -- uid: 17269 - type: Grille - components: - - pos: -51.5,-25.5 - parent: 30 - type: Transform -- uid: 17270 - type: Grille - components: - - pos: -52.5,-25.5 - parent: 30 - type: Transform -- uid: 17271 - type: Grille - components: - - pos: -53.5,-25.5 - parent: 30 - type: Transform -- uid: 17272 - type: Grille - components: - - pos: -54.5,-25.5 - parent: 30 - type: Transform -- uid: 17273 - type: Grille - components: - - pos: -54.5,-21.5 - parent: 30 - type: Transform -- uid: 17274 - type: Grille - components: - - pos: -53.5,-21.5 - parent: 30 - type: Transform -- uid: 17275 - type: Grille - components: - - pos: -52.5,-21.5 - parent: 30 - type: Transform -- uid: 17276 - type: Grille - components: - - pos: -51.5,-21.5 - parent: 30 - type: Transform -- uid: 17277 - type: Grille - components: - - pos: -50.5,-21.5 - parent: 30 - type: Transform -- uid: 17278 - type: Grille - components: - - pos: -49.5,-21.5 - parent: 30 - type: Transform -- uid: 17279 - type: Grille - components: - - pos: -48.5,-21.5 - parent: 30 - type: Transform -- uid: 17280 - type: Grille - components: - - pos: -60.5,-19.5 - parent: 30 - type: Transform -- uid: 17281 - type: Grille - components: - - pos: -61.5,-19.5 - parent: 30 - type: Transform -- uid: 17282 - type: Grille - components: - - pos: -62.5,-19.5 - parent: 30 - type: Transform -- uid: 17283 - type: Grille - components: - - pos: -62.5,-20.5 - parent: 30 - type: Transform -- uid: 17284 - type: Grille - components: - - pos: -62.5,-18.5 - parent: 30 - type: Transform -- uid: 17285 - type: Grille - components: - - pos: -64.5,-18.5 - parent: 30 - type: Transform -- uid: 17286 - type: Grille - components: - - pos: -64.5,-20.5 - parent: 30 - type: Transform -- uid: 17287 - type: Grille - components: - - pos: -65.5,-24.5 - parent: 30 - type: Transform -- uid: 17288 - type: Grille - components: - - pos: -66.5,-24.5 - parent: 30 - type: Transform -- uid: 17289 - type: Grille - components: - - pos: -66.5,-25.5 - parent: 30 - type: Transform -- uid: 17290 - type: Grille - components: - - pos: -67.5,-25.5 - parent: 30 - type: Transform -- uid: 17291 - type: Grille - components: - - pos: -67.5,-26.5 - parent: 30 - type: Transform -- uid: 17292 - type: Grille - components: - - pos: -67.5,-27.5 - parent: 30 - type: Transform -- uid: 17293 - type: Grille - components: - - pos: -67.5,-28.5 - parent: 30 - type: Transform -- uid: 17294 - type: Grille - components: - - pos: -67.5,-29.5 - parent: 30 - type: Transform -- uid: 17295 - type: Grille - components: - - pos: -68.5,-29.5 - parent: 30 - type: Transform -- uid: 17296 - type: Grille - components: - - pos: -68.5,-30.5 - parent: 30 - type: Transform -- uid: 17297 - type: Grille - components: - - pos: -69.5,-30.5 - parent: 30 - type: Transform -- uid: 17298 - type: Grille - components: - - pos: -69.5,-31.5 - parent: 30 - type: Transform -- uid: 17299 - type: Grille - components: - - pos: -69.5,-32.5 - parent: 30 - type: Transform -- uid: 17300 - type: Grille - components: - - pos: -70.5,-32.5 - parent: 30 - type: Transform -- uid: 17301 - type: Grille - components: - - pos: -70.5,-33.5 - parent: 30 - type: Transform -- uid: 17302 - type: Grille - components: - - pos: -71.5,-33.5 - parent: 30 - type: Transform -- uid: 17303 - type: Grille - components: - - pos: -71.5,-34.5 - parent: 30 - type: Transform -- uid: 17304 - type: Grille - components: - - pos: -73.5,-34.5 - parent: 30 - type: Transform -- uid: 17305 - type: Grille - components: - - pos: -72.5,-34.5 - parent: 30 - type: Transform -- uid: 17306 - type: Grille - components: - - pos: -73.5,-35.5 - parent: 30 - type: Transform -- uid: 17307 - type: Grille - components: - - pos: -74.5,-34.5 - parent: 30 - type: Transform -- uid: 17308 - type: Grille - components: - - pos: -75.5,-34.5 - parent: 30 - type: Transform -- uid: 17309 - type: Grille - components: - - pos: -48.5,-48.5 - parent: 30 - type: Transform -- uid: 17310 - type: Grille - components: - - pos: -48.5,-47.5 - parent: 30 - type: Transform -- uid: 17311 - type: Grille - components: - - pos: -48.5,-46.5 - parent: 30 - type: Transform -- uid: 17312 - type: Grille - components: - - pos: -48.5,-45.5 - parent: 30 - type: Transform -- uid: 17313 - type: Grille - components: - - pos: -48.5,-44.5 - parent: 30 - type: Transform -- uid: 17314 - type: Grille - components: - - pos: -48.5,-43.5 - parent: 30 - type: Transform -- uid: 17315 - type: Grille - components: - - pos: -48.5,-42.5 - parent: 30 - type: Transform -- uid: 17316 - type: Grille - components: - - pos: -48.5,-41.5 - parent: 30 - type: Transform -- uid: 17317 - type: Grille - components: - - pos: -48.5,-40.5 - parent: 30 - type: Transform -- uid: 17318 - type: Grille - components: - - pos: -49.5,-40.5 - parent: 30 - type: Transform -- uid: 17319 - type: Grille - components: - - pos: -50.5,-40.5 - parent: 30 - type: Transform -- uid: 17320 - type: CableHV - components: - - pos: -53.5,-43.5 - parent: 30 - type: Transform -- uid: 17321 - type: Grille - components: - - pos: -50.5,-38.5 - parent: 30 - type: Transform -- uid: 17322 - type: Grille - components: - - pos: -51.5,-38.5 - parent: 30 - type: Transform -- uid: 17323 - type: Grille - components: - - pos: -51.5,-37.5 - parent: 30 - type: Transform -- uid: 17324 - type: Grille - components: - - pos: -51.5,-36.5 - parent: 30 - type: Transform -- uid: 17325 - type: Grille - components: - - pos: -51.5,-35.5 - parent: 30 - type: Transform -- uid: 17326 - type: Grille - components: - - pos: -52.5,-35.5 - parent: 30 - type: Transform -- uid: 17327 - type: Grille - components: - - pos: -52.5,-34.5 - parent: 30 - type: Transform -- uid: 17328 - type: Grille - components: - - pos: -52.5,-33.5 - parent: 30 - type: Transform -- uid: 17329 - type: Grille - components: - - pos: -53.5,-33.5 - parent: 30 - type: Transform -- uid: 17330 - type: Grille - components: - - pos: -53.5,-32.5 - parent: 30 - type: Transform -- uid: 17331 - type: Grille - components: - - pos: -54.5,-32.5 - parent: 30 - type: Transform -- uid: 17332 - type: Grille - components: - - pos: -54.5,-31.5 - parent: 30 - type: Transform -- uid: 17333 - type: Grille - components: - - pos: -54.5,-30.5 - parent: 30 - type: Transform -- uid: 17334 - type: Grille - components: - - pos: -55.5,-30.5 - parent: 30 - type: Transform -- uid: 17335 - type: Grille - components: - - pos: -55.5,-29.5 - parent: 30 - type: Transform -- uid: 17336 - type: Grille - components: - - pos: -56.5,-29.5 - parent: 30 - type: Transform -- uid: 17337 - type: Grille - components: - - pos: -56.5,-28.5 - parent: 30 - type: Transform -- uid: 17338 - type: Grille - components: - - pos: -56.5,-27.5 - parent: 30 - type: Transform -- uid: 17339 - type: Grille - components: - - pos: -56.5,-26.5 - parent: 30 - type: Transform -- uid: 17340 - type: ClosetEmergencyFilledRandom - components: - - pos: -56.5,-21.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17341 - type: AirlockExternalGlassLocked - components: - - pos: -63.5,-18.5 - parent: 30 - type: Transform -- uid: 17342 - type: AirlockExternalGlassLocked - components: - - pos: -63.5,-20.5 - parent: 30 - type: Transform -- uid: 17343 - type: WallSolid - components: - - pos: -52.5,-48.5 - parent: 30 - type: Transform -- uid: 17344 - type: ReinforcedWindow - components: - - pos: -48.5,-49.5 - parent: 30 - type: Transform -- uid: 17345 - type: ComputerAlert - components: - - pos: -61.5,-20.5 - parent: 30 - type: Transform -- uid: 17346 - type: WaterTankFull - components: - - pos: -60.5,-20.5 - parent: 30 - type: Transform -- uid: 17347 - type: WallSolid - components: - - pos: -57.5,-41.5 - parent: 30 - type: Transform -- uid: 17348 - type: WallSolid - components: - - pos: -57.5,-44.5 - parent: 30 - type: Transform -- uid: 17349 - type: WallSolid - components: - - pos: -57.5,-47.5 - parent: 30 - type: Transform -- uid: 17350 - type: WallSolid - components: - - pos: -54.5,-48.5 - parent: 30 - type: Transform -- uid: 17351 - type: WallSolid - components: - - pos: -52.5,-47.5 - parent: 30 - type: Transform -- uid: 17352 - type: WallSolid - components: - - pos: -54.5,-47.5 - parent: 30 - type: Transform -- uid: 17353 - type: WallSolid - components: - - pos: -55.5,-47.5 - parent: 30 - type: Transform -- uid: 17354 - type: ReinforcedWindow - components: - - pos: -52.5,-45.5 - parent: 30 - type: Transform -- uid: 17355 - type: WallSolid - components: - - pos: -57.5,-46.5 - parent: 30 - type: Transform -- uid: 17356 - type: AsteroidRock - components: - - pos: -75.5,-48.5 - parent: 30 - type: Transform -- uid: 17357 - type: WallSolid - components: - - pos: -58.5,-47.5 - parent: 30 - type: Transform -- uid: 17358 - type: WallSolid - components: - - pos: -59.5,-47.5 - parent: 30 - type: Transform -- uid: 17359 - type: WallSolid - components: - - pos: -60.5,-47.5 - parent: 30 - type: Transform -- uid: 17360 - type: WallSolid - components: - - pos: -63.5,-47.5 - parent: 30 - type: Transform -- uid: 17361 - type: WallSolid - components: - - pos: -64.5,-47.5 - parent: 30 - type: Transform -- uid: 17362 - type: WallSolid - components: - - pos: -65.5,-47.5 - parent: 30 - type: Transform -- uid: 17363 - type: WallSolid - components: - - pos: -66.5,-47.5 - parent: 30 - type: Transform -- uid: 17364 - type: WallSolid - components: - - pos: -66.5,-46.5 - parent: 30 - type: Transform -- uid: 17365 - type: WallSolid - components: - - pos: -65.5,-46.5 - parent: 30 - type: Transform -- uid: 17366 - type: WallSolid - components: - - pos: -66.5,-44.5 - parent: 30 - type: Transform -- uid: 17367 - type: WallSolid - components: - - pos: -66.5,-43.5 - parent: 30 - type: Transform -- uid: 17368 - type: WallSolid - components: - - pos: -66.5,-42.5 - parent: 30 - type: Transform -- uid: 17369 - type: WallSolid - components: - - pos: -67.5,-43.5 - parent: 30 - type: Transform -- uid: 17370 - type: WallSolid - components: - - pos: -69.5,-46.5 - parent: 30 - type: Transform -- uid: 17371 - type: WallSolid - components: - - pos: -69.5,-47.5 - parent: 30 - type: Transform -- uid: 17372 - type: WallSolid - components: - - pos: -68.5,-47.5 - parent: 30 - type: Transform -- uid: 17373 - type: AirlockExternal - components: - - pos: -52.5,-49.5 - parent: 30 - type: Transform -- uid: 17374 - type: AirlockExternal - components: - - pos: -54.5,-49.5 - parent: 30 - type: Transform -- uid: 17375 - type: ReinforcedWindow - components: - - pos: -70.5,-46.5 - parent: 30 - type: Transform -- uid: 17376 - type: ReinforcedWindow - components: - - pos: -71.5,-46.5 - parent: 30 - type: Transform -- uid: 17377 - type: ReinforcedWindow - components: - - pos: -72.5,-46.5 - parent: 30 - type: Transform -- uid: 17378 - type: ReinforcedWindow - components: - - pos: -73.5,-46.5 - parent: 30 - type: Transform -- uid: 17379 - type: ReinforcedWindow - components: - - pos: -73.5,-44.5 - parent: 30 - type: Transform -- uid: 17380 - type: ReinforcedWindow - components: - - pos: -71.5,-44.5 - parent: 30 - type: Transform -- uid: 17381 - type: ReinforcedWindow - components: - - pos: -70.5,-44.5 - parent: 30 - type: Transform -- uid: 17382 - type: ReinforcedWindow - components: - - pos: -72.5,-44.5 - parent: 30 - type: Transform -- uid: 17383 - type: Grille - components: - - pos: -70.5,-46.5 - parent: 30 - type: Transform -- uid: 17384 - type: Grille - components: - - pos: -71.5,-46.5 - parent: 30 - type: Transform -- uid: 17385 - type: Grille - components: - - pos: -72.5,-46.5 - parent: 30 - type: Transform -- uid: 17386 - type: Grille - components: - - pos: -73.5,-46.5 - parent: 30 - type: Transform -- uid: 17387 - type: Grille - components: - - pos: -73.5,-44.5 - parent: 30 - type: Transform -- uid: 17388 - type: Grille - components: - - pos: -72.5,-44.5 - parent: 30 - type: Transform -- uid: 17389 - type: Grille - components: - - pos: -71.5,-44.5 - parent: 30 - type: Transform -- uid: 17390 - type: Grille - components: - - pos: -70.5,-44.5 - parent: 30 - type: Transform -- uid: 17391 - type: TintedWindow - components: - - pos: -67.5,-41.5 - parent: 30 - type: Transform -- uid: 17392 - type: WallSolid - components: - - pos: -66.5,-41.5 - parent: 30 - type: Transform -- uid: 17393 - type: WoodDoor - components: - - pos: -66.5,-40.5 - parent: 30 - type: Transform -- uid: 17394 - type: WoodDoor - components: - - pos: -68.5,-43.5 - parent: 30 - type: Transform -- uid: 17395 - type: ChairWood - components: - - pos: -67.5,-40.5 - parent: 30 - type: Transform -- uid: 17396 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -67.5,-42.5 - parent: 30 - type: Transform -- uid: 17397 - type: TableWood - components: - - pos: -57.5,-43.5 - parent: 30 - type: Transform -- uid: 17398 - type: TableWood - components: - - pos: -57.5,-42.5 - parent: 30 - type: Transform -- uid: 17399 - type: ChurchOrganInstrument - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-40.5 - parent: 30 - type: Transform -- uid: 17400 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-40.5 - parent: 30 - type: Transform -- uid: 17401 - type: Carpet - components: - - pos: -62.5,-38.5 - parent: 30 - type: Transform -- uid: 17402 - type: Carpet - components: - - pos: -61.5,-38.5 - parent: 30 - type: Transform -- uid: 17403 - type: Carpet - components: - - pos: -61.5,-45.5 - parent: 30 - type: Transform -- uid: 17404 - type: Carpet - components: - - pos: -62.5,-45.5 - parent: 30 - type: Transform -- uid: 17405 - type: Carpet - components: - - pos: -62.5,-40.5 - parent: 30 - type: Transform -- uid: 17406 - type: Carpet - components: - - pos: -62.5,-39.5 - parent: 30 - type: Transform -- uid: 17407 - type: Carpet - components: - - pos: -61.5,-39.5 - parent: 30 - type: Transform -- uid: 17408 - type: Carpet - components: - - pos: -61.5,-40.5 - parent: 30 - type: Transform -- uid: 17409 - type: Carpet - components: - - pos: -61.5,-41.5 - parent: 30 - type: Transform -- uid: 17410 - type: Carpet - components: - - pos: -61.5,-42.5 - parent: 30 - type: Transform -- uid: 17411 - type: Carpet - components: - - pos: -61.5,-43.5 - parent: 30 - type: Transform -- uid: 17412 - type: Carpet - components: - - pos: -61.5,-44.5 - parent: 30 - type: Transform -- uid: 17413 - type: Carpet - components: - - pos: -62.5,-44.5 - parent: 30 - type: Transform -- uid: 17414 - type: Carpet - components: - - pos: -62.5,-43.5 - parent: 30 - type: Transform -- uid: 17415 - type: Carpet - components: - - pos: -62.5,-42.5 - parent: 30 - type: Transform -- uid: 17416 - type: Carpet - components: - - pos: -62.5,-41.5 - parent: 30 - type: Transform -- uid: 17417 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-40.5 - parent: 30 - type: Transform -- uid: 17418 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -63.5,-41.5 - parent: 30 - type: Transform -- uid: 17419 - type: CarpetChapel - components: - - pos: -64.5,-40.5 - parent: 30 - type: Transform -- uid: 17420 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-41.5 - parent: 30 - type: Transform -- uid: 17421 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-39.5 - parent: 30 - type: Transform -- uid: 17422 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -63.5,-39.5 - parent: 30 - type: Transform -- uid: 17423 - type: CarpetChapel - components: - - pos: -64.5,-42.5 - parent: 30 - type: Transform -- uid: 17424 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-42.5 - parent: 30 - type: Transform -- uid: 17425 - type: CarpetChapel - components: - - pos: -64.5,-44.5 - parent: 30 - type: Transform -- uid: 17426 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-43.5 - parent: 30 - type: Transform -- uid: 17427 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-44.5 - parent: 30 - type: Transform -- uid: 17428 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -63.5,-43.5 - parent: 30 - type: Transform -- uid: 17429 - type: CarpetChapel - components: - - pos: -60.5,-44.5 - parent: 30 - type: Transform -- uid: 17430 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-43.5 - parent: 30 - type: Transform -- uid: 17431 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -59.5,-43.5 - parent: 30 - type: Transform -- uid: 17432 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-44.5 - parent: 30 - type: Transform -- uid: 17433 - type: CarpetChapel - components: - - pos: -60.5,-42.5 - parent: 30 - type: Transform -- uid: 17434 - type: CarpetChapel - components: - - pos: -60.5,-40.5 - parent: 30 - type: Transform -- uid: 17435 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-39.5 - parent: 30 - type: Transform -- uid: 17436 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-41.5 - parent: 30 - type: Transform -- uid: 17437 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-42.5 - parent: 30 - type: Transform -- uid: 17438 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-40.5 - parent: 30 - type: Transform -- uid: 17439 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -59.5,-39.5 - parent: 30 - type: Transform -- uid: 17440 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -59.5,-41.5 - parent: 30 - type: Transform -- uid: 17441 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-44.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17442 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-41.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17443 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-38.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17444 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-38.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17445 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-41.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17446 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-44.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17447 - type: ChairWood - components: - - pos: -64.5,-39.5 - parent: 30 - type: Transform -- uid: 17448 - type: ChairWood - components: - - pos: -63.5,-39.5 - parent: 30 - type: Transform -- uid: 17449 - type: ChairWood - components: - - pos: -63.5,-40.5 - parent: 30 - type: Transform -- uid: 17450 - type: ChairWood - components: - - pos: -64.5,-40.5 - parent: 30 - type: Transform -- uid: 17451 - type: ChairWood - components: - - pos: -64.5,-41.5 - parent: 30 - type: Transform -- uid: 17452 - type: ChairWood - components: - - pos: -63.5,-41.5 - parent: 30 - type: Transform -- uid: 17453 - type: ChairWood - components: - - pos: -63.5,-42.5 - parent: 30 - type: Transform -- uid: 17454 - type: ChairWood - components: - - pos: -64.5,-42.5 - parent: 30 - type: Transform -- uid: 17455 - type: ChairWood - components: - - pos: -64.5,-43.5 - parent: 30 - type: Transform -- uid: 17456 - type: ChairWood - components: - - pos: -63.5,-43.5 - parent: 30 - type: Transform -- uid: 17457 - type: ChairWood - components: - - pos: -60.5,-43.5 - parent: 30 - type: Transform -- uid: 17458 - type: ChairWood - components: - - pos: -59.5,-43.5 - parent: 30 - type: Transform -- uid: 17459 - type: ChairWood - components: - - pos: -59.5,-42.5 - parent: 30 - type: Transform -- uid: 17460 - type: ChairWood - components: - - pos: -60.5,-42.5 - parent: 30 - type: Transform -- uid: 17461 - type: ChairWood - components: - - pos: -60.5,-41.5 - parent: 30 - type: Transform -- uid: 17462 - type: ChairWood - components: - - pos: -59.5,-41.5 - parent: 30 - type: Transform -- uid: 17463 - type: ChairWood - components: - - pos: -59.5,-40.5 - parent: 30 - type: Transform -- uid: 17464 - type: ChairWood - components: - - pos: -60.5,-40.5 - parent: 30 - type: Transform -- uid: 17465 - type: ChairWood - components: - - pos: -59.5,-39.5 - parent: 30 - type: Transform -- uid: 17466 - type: ChairWood - components: - - pos: -59.5,-39.5 - parent: 30 - type: Transform -- uid: 17467 - type: ChairWood - components: - - pos: -60.5,-39.5 - parent: 30 - type: Transform -- uid: 17468 - type: AltarConvertRed - components: - - pos: -61.5,-44.5 - parent: 30 - type: Transform -- uid: 17469 - type: AltarConvertRed - components: - - pos: -62.5,-44.5 - parent: 30 - type: Transform -- uid: 17470 - type: TableWood - components: - - pos: -60.5,-46.5 - parent: 30 - type: Transform -- uid: 17471 - type: TableWood - components: - - pos: -63.5,-46.5 - parent: 30 - type: Transform -- uid: 17472 - type: PottedPlantRandom - components: - - pos: -64.5,-46.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 17473 - type: PottedPlantRandom - components: - - pos: -59.5,-46.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 17474 - type: TableWood - components: - - pos: -57.5,-39.5 - parent: 30 - type: Transform -- uid: 17475 - type: LampGold - components: - - pos: -57.474648,-39.373875 - parent: 30 - type: Transform -- uid: 17476 - type: FoodBreadPlain - components: - - pos: -57.492546,-42.414898 - parent: 30 - type: Transform -- uid: 17477 - type: AtmosFixFreezerMarker - components: - - pos: -18.5,16.5 - parent: 30 - type: Transform -- uid: 17478 - type: SolarTracker - components: - - pos: 75.5,30.5 - parent: 30 - type: Transform -- uid: 17479 - type: AirlockGlass - components: - - pos: -54.5,-44.5 - parent: 30 - type: Transform -- uid: 17480 - type: AirlockGlass - components: - - pos: -55.5,-44.5 - parent: 30 - type: Transform -- uid: 17481 - type: AirlockGlass - components: - - pos: -61.5,-36.5 - parent: 30 - type: Transform -- uid: 17482 - type: AirlockGlass - components: - - pos: -62.5,-36.5 - parent: 30 - type: Transform -- uid: 17483 - type: AirlockGlass - components: - - pos: -67.5,-47.5 - parent: 30 - type: Transform -- uid: 17484 - type: AirlockGlass - components: - - pos: -66.5,-45.5 - parent: 30 - type: Transform -- uid: 17485 - type: AirlockGlass - components: - - pos: -61.5,-47.5 - parent: 30 - type: Transform -- uid: 17486 - type: AirlockGlass - components: - - pos: -62.5,-47.5 - parent: 30 - type: Transform -- uid: 17487 - type: AirlockGlass - components: - - pos: -57.5,-45.5 - parent: 30 - type: Transform -- uid: 17488 - type: AirlockGlass - components: - - pos: -56.5,-47.5 - parent: 30 - type: Transform -- uid: 17489 - type: AirlockChapelGlassLocked - components: - - pos: -69.5,-45.5 - parent: 30 - type: Transform -- uid: 17490 - type: ClosetEmergencyFilledRandom - components: - - pos: -53.5,-48.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17491 - type: PoweredSmallLight - components: - - pos: -53.5,-45.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17492 - type: PoweredSmallLight - components: - - pos: -56.5,-45.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17493 - type: PoweredSmallLight - components: - - pos: -67.5,-44.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17494 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -67.5,-42.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17495 - type: PoweredSmallLight - components: - - pos: -67.5,-40.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17496 - type: Matchbox - components: - - pos: -63.484993,-46.394806 - parent: 30 - type: Transform -- uid: 17497 - type: CigarCase - components: - - pos: -60.484993,-46.394806 - parent: 30 - type: Transform -- uid: 17498 - type: AsteroidRock - components: - - pos: -74.5,-49.5 - parent: 30 - type: Transform -- uid: 17499 - type: AsteroidRock - components: - - pos: -75.5,-49.5 - parent: 30 - type: Transform -- uid: 17500 - type: AsteroidRock - components: - - pos: -73.5,-47.5 - parent: 30 - type: Transform -- uid: 17501 - type: PoweredLightPostSmall - components: - - pos: -63.5,-35.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17502 - type: AsteroidRock - components: - - pos: -73.5,-49.5 - parent: 30 - type: Transform -- uid: 17503 - type: AsteroidRock - components: - - pos: -73.5,-48.5 - parent: 30 - type: Transform -- uid: 17504 - type: AsteroidRock - components: - - pos: -71.5,-47.5 - parent: 30 - type: Transform -- uid: 17505 - type: AsteroidRock - components: - - pos: -72.5,-47.5 - parent: 30 - type: Transform -- uid: 17506 - type: PoweredLightPostSmall - components: - - pos: -70.5,-34.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17507 - type: PoweredLightPostSmall - components: - - pos: -69.5,-40.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17508 - type: WallSolid - components: - - pos: -74.5,-46.5 - parent: 30 - type: Transform -- uid: 17509 - type: WallSolid - components: - - pos: -74.5,-44.5 - parent: 30 - type: Transform -- uid: 17510 - type: WallSolid - components: - - pos: -74.5,-47.5 - parent: 30 - type: Transform -- uid: 17511 - type: WallReinforced - components: - - pos: -82.5,-49.5 - parent: 30 - type: Transform -- uid: 17512 - type: WallReinforced - components: - - pos: -81.5,-49.5 - parent: 30 - type: Transform -- uid: 17513 - type: WallReinforced - components: - - pos: -81.5,-50.5 - parent: 30 - type: Transform -- uid: 17514 - type: WallReinforced - components: - - pos: -82.5,-48.5 - parent: 30 - type: Transform -- uid: 17515 - type: AsteroidRock - components: - - pos: -77.5,-49.5 - parent: 30 - type: Transform -- uid: 17516 - type: WallSolid - components: - - pos: -74.5,-48.5 - parent: 30 - type: Transform -- uid: 17517 - type: WallReinforced - components: - - pos: -80.5,-50.5 - parent: 30 - type: Transform -- uid: 17518 - type: WallSolid - components: - - pos: -79.5,-50.5 - parent: 30 - type: Transform -- uid: 17519 - type: WallSolid - components: - - pos: -78.5,-50.5 - parent: 30 - type: Transform -- uid: 17520 - type: WallSolid - components: - - pos: -77.5,-50.5 - parent: 30 - type: Transform -- uid: 17521 - type: WallSolid - components: - - pos: -74.5,-42.5 - parent: 30 - type: Transform -- uid: 17522 - type: WallSolid - components: - - pos: -74.5,-40.5 - parent: 30 - type: Transform -- uid: 17523 - type: WallSolid - components: - - pos: -76.5,-42.5 - parent: 30 - type: Transform -- uid: 17524 - type: WallReinforced - components: - - pos: -85.5,-43.5 - parent: 30 - type: Transform -- uid: 17525 - type: WallReinforced - components: - - pos: -84.5,-43.5 - parent: 30 - type: Transform -- uid: 17526 - type: WallReinforced - components: - - pos: -85.5,-44.5 - parent: 30 - type: Transform -- uid: 17527 - type: WallReinforced - components: - - pos: -85.5,-46.5 - parent: 30 - type: Transform -- uid: 17528 - type: WallReinforced - components: - - pos: -85.5,-47.5 - parent: 30 - type: Transform -- uid: 17529 - type: WallReinforced - components: - - pos: -84.5,-47.5 - parent: 30 - type: Transform -- uid: 17530 - type: WallReinforced - components: - - pos: -84.5,-48.5 - parent: 30 - type: Transform -- uid: 17531 - type: WallReinforced - components: - - pos: -82.5,-42.5 - parent: 30 - type: Transform -- uid: 17532 - type: WallReinforced - components: - - pos: -84.5,-42.5 - parent: 30 - type: Transform -- uid: 17533 - type: WallReinforced - components: - - pos: -82.5,-41.5 - parent: 30 - type: Transform -- uid: 17534 - type: WallSolid - components: - - pos: -74.5,-43.5 - parent: 30 - type: Transform -- uid: 17535 - type: WallSolid - components: - - pos: -76.5,-41.5 - parent: 30 - type: Transform -- uid: 17536 - type: WallSolid - components: - - pos: -75.5,-40.5 - parent: 30 - type: Transform -- uid: 17537 - type: WallSolid - components: - - pos: -76.5,-40.5 - parent: 30 - type: Transform -- uid: 17538 - type: AsteroidRock - components: - - pos: -73.5,-37.5 - parent: 30 - type: Transform -- uid: 17539 - type: WallSolid - components: - - pos: -77.5,-41.5 - parent: 30 - type: Transform -- uid: 17540 - type: WallSolid - components: - - pos: -79.5,-41.5 - parent: 30 - type: Transform -- uid: 17541 - type: WallSolid - components: - - pos: -80.5,-41.5 - parent: 30 - type: Transform -- uid: 17542 - type: WallSolid - components: - - pos: -81.5,-41.5 - parent: 30 - type: Transform -- uid: 17543 - type: AsteroidRock - components: - - pos: -73.5,-36.5 - parent: 30 - type: Transform -- uid: 17544 - type: WallSolid - components: - - pos: -55.5,-68.5 - parent: 30 - type: Transform -- uid: 17545 - type: AsteroidRock - components: - - pos: -82.5,-39.5 - parent: 30 - type: Transform -- uid: 17546 - type: WallReinforced - components: - - pos: -81.5,-39.5 - parent: 30 - type: Transform -- uid: 17547 - type: WallReinforced - components: - - pos: -80.5,-38.5 - parent: 30 - type: Transform -- uid: 17548 - type: WallReinforced - components: - - pos: -81.5,-38.5 - parent: 30 - type: Transform -- uid: 17549 - type: WallReinforced - components: - - pos: -80.5,-37.5 - parent: 30 - type: Transform -- uid: 17550 - type: WallReinforced - components: - - pos: -81.5,-40.5 - parent: 30 - type: Transform -- uid: 17551 - type: AsteroidRock - components: - - pos: -82.5,-40.5 - parent: 30 - type: Transform -- uid: 17552 - type: WallReinforced - components: - - pos: -78.5,-37.5 - parent: 30 - type: Transform -- uid: 17553 - type: WallReinforced - components: - - pos: -77.5,-37.5 - parent: 30 - type: Transform -- uid: 17554 - type: WallReinforced - components: - - pos: -76.5,-37.5 - parent: 30 - type: Transform -- uid: 17555 - type: WallReinforced - components: - - pos: -76.5,-38.5 - parent: 30 - type: Transform -- uid: 17556 - type: WallReinforced - components: - - pos: -76.5,-39.5 - parent: 30 - type: Transform -- uid: 17557 - type: AsteroidRock - components: - - pos: -82.5,-38.5 - parent: 30 - type: Transform -- uid: 17558 - type: AsteroidRock - components: - - pos: -81.5,-37.5 - parent: 30 - type: Transform -- uid: 17559 - type: AsteroidRock - components: - - pos: -75.5,-39.5 - parent: 30 - type: Transform -- uid: 17560 - type: AsteroidRock - components: - - pos: -75.5,-38.5 - parent: 30 - type: Transform -- uid: 17561 - type: AsteroidRock - components: - - pos: -75.5,-37.5 - parent: 30 - type: Transform -- uid: 17562 - type: AsteroidRock - components: - - pos: -75.5,-36.5 - parent: 30 - type: Transform -- uid: 17563 - type: AsteroidRock - components: - - pos: -75.5,-35.5 - parent: 30 - type: Transform -- uid: 17564 - type: AsteroidRock - components: - - pos: -76.5,-36.5 - parent: 30 - type: Transform -- uid: 17565 - type: AsteroidRock - components: - - pos: -77.5,-36.5 - parent: 30 - type: Transform -- uid: 17566 - type: AsteroidRock - components: - - pos: -78.5,-36.5 - parent: 30 - type: Transform -- uid: 17567 - type: AsteroidRock - components: - - pos: -77.5,-35.5 - parent: 30 - type: Transform -- uid: 17568 - type: AsteroidRock - components: - - pos: -76.5,-35.5 - parent: 30 - type: Transform -- uid: 17569 - type: WallSolid - components: - - pos: -50.5,-58.5 - parent: 30 - type: Transform -- uid: 17570 - type: AsteroidRock - components: - - pos: -74.5,-37.5 - parent: 30 - type: Transform -- uid: 17571 - type: AsteroidRock - components: - - pos: -74.5,-36.5 - parent: 30 - type: Transform -- uid: 17572 - type: AsteroidRock - components: - - pos: -74.5,-35.5 - parent: 30 - type: Transform -- uid: 17573 - type: WallSolid - components: - - pos: -54.5,-58.5 - parent: 30 - type: Transform -- uid: 17574 - type: ReinforcedWindow - components: - - pos: -83.5,-42.5 - parent: 30 - type: Transform -- uid: 17575 - type: ReinforcedWindow - components: - - pos: -85.5,-45.5 - parent: 30 - type: Transform -- uid: 17576 - type: ReinforcedWindow - components: - - pos: -83.5,-48.5 - parent: 30 - type: Transform -- uid: 17577 - type: ReinforcedWindow - components: - - pos: -79.5,-37.5 - parent: 30 - type: Transform -- uid: 17578 - type: PoweredLightPostSmall - components: - - pos: -63.5,-31.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17579 - type: PoweredLightPostSmall - components: - - pos: -63.5,-27.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17580 - type: PoweredLightPostSmall - components: - - pos: -60.5,-27.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17581 - type: PoweredLightPostSmall - components: - - pos: -60.5,-31.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17582 - type: PoweredLightPostSmall - components: - - pos: -60.5,-35.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17583 - type: PoweredLightPostSmall - components: - - pos: -53.5,-34.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17584 - type: CableMV - components: - - pos: 23.5,-6.5 - parent: 30 - type: Transform -- uid: 17585 - type: CableApcExtension - components: - - pos: 23.5,-0.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17586 - type: AsteroidRock - components: - - pos: -70.5,-47.5 - parent: 30 - type: Transform -- uid: 17587 - type: AsteroidRock - components: - - pos: -70.5,-48.5 - parent: 30 - type: Transform -- uid: 17588 - type: AsteroidRock - components: - - pos: -71.5,-48.5 - parent: 30 - type: Transform -- uid: 17589 - type: FoodMealMilkape - components: - - pos: -82.43763,-54.513897 - parent: 30 - type: Transform -- uid: 17590 - type: AsteroidRock - components: - - pos: -72.5,-49.5 - parent: 30 - type: Transform -- uid: 17591 - type: AsteroidRock - components: - - pos: -71.5,-49.5 - parent: 30 - type: Transform -- uid: 17592 - type: AsteroidRock - components: - - pos: -70.5,-49.5 - parent: 30 - type: Transform -- uid: 17593 - type: AirlockExternal - components: - - pos: -75.5,-42.5 - parent: 30 - type: Transform -- uid: 17594 - type: AirlockExternal - components: - - pos: -74.5,-41.5 - parent: 30 - type: Transform -- uid: 17595 - type: AirlockChapelGlassLocked - components: - - pos: -74.5,-45.5 - parent: 30 - type: Transform -- uid: 17596 - type: AirlockMaintChapelLocked - components: - - pos: -78.5,-41.5 - parent: 30 - type: Transform -- uid: 17597 - type: Grille - components: - - pos: -83.5,-48.5 - parent: 30 - type: Transform -- uid: 17598 - type: Grille - components: - - pos: -85.5,-45.5 - parent: 30 - type: Transform -- uid: 17599 - type: Grille - components: - - pos: -83.5,-42.5 - parent: 30 - type: Transform -- uid: 17600 - type: CarpetBlack - components: - - pos: -83.5,-47.5 - parent: 30 - type: Transform -- uid: 17601 - type: Grille - components: - - pos: -79.5,-37.5 - parent: 30 - type: Transform -- uid: 17602 - type: CarpetBlack - components: - - pos: -82.5,-47.5 - parent: 30 - type: Transform -- uid: 17603 - type: CarpetBlack - components: - - pos: -81.5,-47.5 - parent: 30 - type: Transform -- uid: 17604 - type: CarpetBlack - components: - - pos: -81.5,-46.5 - parent: 30 - type: Transform -- uid: 17605 - type: CarpetBlack - components: - - pos: -81.5,-45.5 - parent: 30 - type: Transform -- uid: 17606 - type: CarpetBlack - components: - - pos: -81.5,-44.5 - parent: 30 - type: Transform -- uid: 17607 - type: CarpetBlack - components: - - pos: -81.5,-43.5 - parent: 30 - type: Transform -- uid: 17608 - type: CarpetBlack - components: - - pos: -82.5,-43.5 - parent: 30 - type: Transform -- uid: 17609 - type: CarpetBlack - components: - - pos: -83.5,-43.5 - parent: 30 - type: Transform -- uid: 17610 - type: CarpetBlack - components: - - pos: -83.5,-44.5 - parent: 30 - type: Transform -- uid: 17611 - type: CarpetBlack - components: - - pos: -83.5,-45.5 - parent: 30 - type: Transform -- uid: 17612 - type: CarpetBlack - components: - - pos: -83.5,-46.5 - parent: 30 - type: Transform -- uid: 17613 - type: CarpetBlack - components: - - pos: -82.5,-46.5 - parent: 30 - type: Transform -- uid: 17614 - type: CarpetBlack - components: - - pos: -82.5,-45.5 - parent: 30 - type: Transform -- uid: 17615 - type: CarpetBlack - components: - - pos: -82.5,-44.5 - parent: 30 - type: Transform -- uid: 17616 - type: Carpet - components: - - pos: -80.5,-49.5 - parent: 30 - type: Transform -- uid: 17617 - type: Carpet - components: - - pos: -80.5,-48.5 - parent: 30 - type: Transform -- uid: 17618 - type: Carpet - components: - - pos: -79.5,-48.5 - parent: 30 - type: Transform -- uid: 17619 - type: Carpet - components: - - pos: -78.5,-48.5 - parent: 30 - type: Transform -- uid: 17620 - type: Carpet - components: - - pos: -78.5,-49.5 - parent: 30 - type: Transform -- uid: 17621 - type: Carpet - components: - - pos: -79.5,-49.5 - parent: 30 - type: Transform -- uid: 17622 - type: WardrobeChapelFilled - components: - - pos: -84.5,-44.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17623 - type: VendingMachineChapel - components: - - flags: SessionSpecific - type: MetaData - - pos: -80.5,-49.5 - parent: 30 - type: Transform - - sprite: Structures/Machines/VendingMachines/chapel.rsi - type: Sprite -- uid: 17624 - type: SignChapel - components: - - pos: -63.5,-36.5 - parent: 30 - type: Transform -- uid: 17625 - type: SignChapel - components: - - pos: -46.5,-10.5 - parent: 30 - type: Transform -- uid: 17626 - type: AirlockGlass - components: - - pos: -61.5,-26.5 - parent: 30 - type: Transform -- uid: 17627 - type: AirlockGlass - components: - - pos: -62.5,-26.5 - parent: 30 - type: Transform -- uid: 17628 - type: AirlockGlass - components: - - pos: -59.5,-22.5 - parent: 30 - type: Transform -- uid: 17629 - type: PottedPlantRandom - components: - - pos: -81.5,-48.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 17630 - type: PottedPlantRandom - components: - - pos: -81.5,-42.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 17631 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-2.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.1239278 - - 11.75192 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17632 - type: ChairWood - components: - - pos: -79.5,-38.5 - parent: 30 - type: Transform -- uid: 17633 - type: Table - components: - - pos: -80.5,-40.5 - parent: 30 - type: Transform -- uid: 17634 - type: Table - components: - - pos: -80.5,-39.5 - parent: 30 - type: Transform -- uid: 17635 - type: TableWood - components: - - pos: -82.5,-46.5 - parent: 30 - type: Transform -- uid: 17636 - type: TableWood - components: - - pos: -82.5,-45.5 - parent: 30 - type: Transform -- uid: 17637 - type: TableWood - components: - - pos: -82.5,-44.5 - parent: 30 - type: Transform -- uid: 17638 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -83.5,-45.5 - parent: 30 - type: Transform -- uid: 17639 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -81.5,-46.5 - parent: 30 - type: Transform -- uid: 17640 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -81.5,-45.5 - parent: 30 - type: Transform -- uid: 17641 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -81.5,-44.5 - parent: 30 - type: Transform -- uid: 17642 - type: TableWood - components: - - pos: -75.5,-47.5 - parent: 30 - type: Transform -- uid: 17643 - type: Dresser - components: - - pos: -78.5,-49.5 - parent: 30 - type: Transform -- uid: 17644 - type: CableHV - components: - - pos: -50.5,-47.5 - parent: 30 - type: Transform -- uid: 17645 - type: CableHV - components: - - pos: -50.5,-44.5 - parent: 30 - type: Transform -- uid: 17646 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -51.5,-47.5 - parent: 30 - type: Transform -- uid: 17647 - type: FoodPlateSmall - components: - - pos: -51.490517,-46.331123 - parent: 30 - type: Transform -- uid: 17648 - type: TableWood - components: - - pos: -84.5,-45.5 - parent: 30 - type: Transform -- uid: 17649 - type: BoxFolderBlack - components: - - pos: -82.48828,-46.34675 - parent: 30 - type: Transform -- uid: 17650 - type: Paper - components: - - pos: -82.50391,-46.268623 - parent: 30 - type: Transform -- uid: 17651 - type: Pen - components: - - pos: -82.31641,-46.003 - parent: 30 - type: Transform -- uid: 17652 - type: AtmosFixFreezerMarker - components: - - pos: -17.5,14.5 - parent: 30 - type: Transform -- uid: 17653 - type: PaintingMonkey - components: - - pos: -81.5,-41.5 - parent: 30 - type: Transform -- uid: 17654 - type: PlushieCarp - components: - - pos: -84.53038,-45.378 - parent: 30 - type: Transform -- uid: 17655 - type: Bed - components: - - pos: -77.5,-40.5 - parent: 30 - type: Transform -- uid: 17656 - type: BedsheetCult - components: - - pos: -77.5,-40.5 - parent: 30 - type: Transform -- uid: 17657 - type: ClothingOuterNunRobe - components: - - pos: -80.52768,-40.522823 - parent: 30 - type: Transform -- uid: 17658 - type: ClothingOuterNunRobe - components: - - pos: -80.52768,-40.522823 - parent: 30 - type: Transform -- uid: 17659 - type: ClothingOuterNunRobe - components: - - pos: -80.52768,-40.522823 - parent: 30 - type: Transform -- uid: 17660 - type: ClothingUniformJumpsuitMonasticRobeDark - components: - - pos: -80.46518,-39.5697 - parent: 30 - type: Transform -- uid: 17661 - type: ClothingUniformJumpsuitMonasticRobeDark - components: - - pos: -80.46518,-39.5697 - parent: 30 - type: Transform -- uid: 17662 - type: ClothingUniformJumpsuitMonasticRobeDark - components: - - pos: -80.46518,-39.5697 - parent: 30 - type: Transform -- uid: 17663 - type: ClothingHeadHatHoodNunHood - components: - - pos: -80.27768,-40.335323 - parent: 30 - type: Transform -- uid: 17664 - type: ClothingHeadHatHoodNunHood - components: - - pos: -80.27768,-40.335323 - parent: 30 - type: Transform -- uid: 17665 - type: ClothingHeadHatHoodNunHood - components: - - pos: -80.27768,-40.335323 - parent: 30 - type: Transform -- uid: 17666 - type: PoweredSmallLight - components: - - pos: -75.5,-41.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17667 - type: PoweredSmallLight - components: - - pos: -78.5,-38.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17668 - type: PoweredSmallLight - components: - - pos: -79.5,-42.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17670 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -82.5,-47.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17671 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -79.5,-49.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17673 - type: PoweredSmallLight - components: - - pos: -76.5,-43.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17675 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -78.5,-38.5 - parent: 30 - type: Transform -- uid: 17676 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-50.5 - parent: 30 - type: Transform -- uid: 17677 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-51.5 - parent: 30 - type: Transform -- uid: 17678 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-52.5 - parent: 30 - type: Transform -- uid: 17679 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-53.5 - parent: 30 - type: Transform -- uid: 17680 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-54.5 - parent: 30 - type: Transform -- uid: 17681 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-55.5 - parent: 30 - type: Transform -- uid: 17682 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-56.5 - parent: 30 - type: Transform -- uid: 17683 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-57.5 - parent: 30 - type: Transform -- uid: 17684 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-58.5 - parent: 30 - type: Transform -- uid: 17685 - type: WallSolid - components: - - pos: -56.5,-68.5 - parent: 30 - type: Transform -- uid: 17686 - type: WallSolid - components: - - pos: -55.5,-61.5 - parent: 30 - type: Transform -- uid: 17687 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-50.5 - parent: 30 - type: Transform -- uid: 17688 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-50.5 - parent: 30 - type: Transform -- uid: 17689 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-50.5 - parent: 30 - type: Transform -- uid: 17690 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-50.5 - parent: 30 - type: Transform -- uid: 17691 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-50.5 - parent: 30 - type: Transform -- uid: 17692 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-50.5 - parent: 30 - type: Transform -- uid: 17693 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-51.5 - parent: 30 - type: Transform -- uid: 17694 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-53.5 - parent: 30 - type: Transform -- uid: 17695 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-54.5 - parent: 30 - type: Transform -- uid: 17696 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-54.5 - parent: 30 - type: Transform -- uid: 17697 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-54.5 - parent: 30 - type: Transform -- uid: 17698 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-54.5 - parent: 30 - type: Transform -- uid: 17699 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-54.5 - parent: 30 - type: Transform -- uid: 17700 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-54.5 - parent: 30 - type: Transform -- uid: 17701 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-53.5 - parent: 30 - type: Transform -- uid: 17702 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-51.5 - parent: 30 - type: Transform -- uid: 17703 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-55.5 - parent: 30 - type: Transform -- uid: 17704 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-57.5 - parent: 30 - type: Transform -- uid: 17705 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-55.5 - parent: 30 - type: Transform -- uid: 17706 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-57.5 - parent: 30 - type: Transform -- uid: 17707 - type: TintedWindow - components: - - pos: -69.5,-60.5 - parent: 30 - type: Transform -- uid: 17708 - type: WallSolidRust - components: - - pos: -49.5,-58.5 - parent: 30 - type: Transform -- uid: 17709 - type: TintedWindow - components: - - pos: -69.5,-59.5 - parent: 30 - type: Transform -- uid: 17710 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-58.5 - parent: 30 - type: Transform -- uid: 17711 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-58.5 - parent: 30 - type: Transform -- uid: 17712 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-58.5 - parent: 30 - type: Transform -- uid: 17713 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-59.5 - parent: 30 - type: Transform -- uid: 17714 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-60.5 - parent: 30 - type: Transform -- uid: 17715 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-60.5 - parent: 30 - type: Transform -- uid: 17716 - type: Window - components: - - pos: -69.5,-52.5 - parent: 30 - type: Transform -- uid: 17717 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-60.5 - parent: 30 - type: Transform -- uid: 17718 - type: SubstationBasic - components: - - name: Chapelroid Substation - type: MetaData - - pos: -52.5,-59.5 - parent: 30 - type: Transform -- uid: 17719 - type: WallSolid - components: - - pos: -56.5,-61.5 - parent: 30 - type: Transform -- uid: 17720 - type: WallSolid - components: - - pos: -57.5,-61.5 - parent: 30 - type: Transform -- uid: 17721 - type: Window - components: - - pos: -65.5,-58.5 - parent: 30 - type: Transform -- uid: 17722 - type: Window - components: - - pos: -64.5,-58.5 - parent: 30 - type: Transform -- uid: 17723 - type: WallSolid - components: - - pos: -60.5,-61.5 - parent: 30 - type: Transform -- uid: 17724 - type: WallSolid - components: - - pos: -61.5,-61.5 - parent: 30 - type: Transform -- uid: 17725 - type: WallSolid - components: - - pos: -62.5,-61.5 - parent: 30 - type: Transform -- uid: 17726 - type: WallSolid - components: - - pos: -63.5,-61.5 - parent: 30 - type: Transform -- uid: 17727 - type: Window - components: - - pos: -66.5,-57.5 - parent: 30 - type: Transform -- uid: 17728 - type: WallSolid - components: - - pos: -65.5,-61.5 - parent: 30 - type: Transform -- uid: 17729 - type: WallSolid - components: - - pos: -66.5,-61.5 - parent: 30 - type: Transform -- uid: 17730 - type: WallSolid - components: - - pos: -67.5,-61.5 - parent: 30 - type: Transform -- uid: 17731 - type: WallSolid - components: - - pos: -68.5,-61.5 - parent: 30 - type: Transform -- uid: 17732 - type: WallSolid - components: - - pos: -69.5,-61.5 - parent: 30 - type: Transform -- uid: 17733 - type: Window - components: - - pos: -69.5,-56.5 - parent: 30 - type: Transform -- uid: 17734 - type: WallSolid - components: - - pos: -61.5,-65.5 - parent: 30 - type: Transform -- uid: 17735 - type: Window - components: - - pos: -66.5,-56.5 - parent: 30 - type: Transform -- uid: 17736 - type: WallSolid - components: - - pos: -69.5,-57.5 - parent: 30 - type: Transform -- uid: 17737 - type: WallSolid - components: - - pos: -70.5,-61.5 - parent: 30 - type: Transform -- uid: 17738 - type: WallSolid - components: - - pos: -69.5,-55.5 - parent: 30 - type: Transform -- uid: 17739 - type: Window - components: - - pos: -66.5,-52.5 - parent: 30 - type: Transform -- uid: 17740 - type: WallSolid - components: - - pos: -69.5,-53.5 - parent: 30 - type: Transform -- uid: 17741 - type: WallSolid - components: - - pos: -70.5,-63.5 - parent: 30 - type: Transform -- uid: 17742 - type: WallSolid - components: - - pos: -69.5,-51.5 - parent: 30 - type: Transform -- uid: 17743 - type: WallSolid - components: - - pos: -69.5,-50.5 - parent: 30 - type: Transform -- uid: 17744 - type: WallSolid - components: - - pos: -69.5,-49.5 - parent: 30 - type: Transform -- uid: 17745 - type: WallSolid - components: - - pos: -69.5,-48.5 - parent: 30 - type: Transform -- uid: 17746 - type: WallSolid - components: - - pos: -66.5,-58.5 - parent: 30 - type: Transform -- uid: 17747 - type: WallSolid - components: - - pos: -57.5,-58.5 - parent: 30 - type: Transform -- uid: 17748 - type: WallSolid - components: - - pos: -60.5,-58.5 - parent: 30 - type: Transform -- uid: 17749 - type: WallSolid - components: - - pos: -63.5,-58.5 - parent: 30 - type: Transform -- uid: 17750 - type: WallSolid - components: - - pos: -66.5,-55.5 - parent: 30 - type: Transform -- uid: 17751 - type: WallSolid - components: - - pos: -66.5,-53.5 - parent: 30 - type: Transform -- uid: 17752 - type: WallSolid - components: - - pos: -66.5,-50.5 - parent: 30 - type: Transform -- uid: 17753 - type: WallSolid - components: - - pos: -63.5,-50.5 - parent: 30 - type: Transform -- uid: 17754 - type: WallSolid - components: - - pos: -60.5,-50.5 - parent: 30 - type: Transform -- uid: 17755 - type: WallSolid - components: - - pos: -57.5,-50.5 - parent: 30 - type: Transform -- uid: 17756 - type: WallSolid - components: - - pos: -57.5,-53.5 - parent: 30 - type: Transform -- uid: 17757 - type: WallSolid - components: - - pos: -57.5,-55.5 - parent: 30 - type: Transform -- uid: 17758 - type: Window - components: - - pos: -66.5,-51.5 - parent: 30 - type: Transform -- uid: 17759 - type: Window - components: - - pos: -65.5,-50.5 - parent: 30 - type: Transform -- uid: 17760 - type: Window - components: - - pos: -64.5,-50.5 - parent: 30 - type: Transform -- uid: 17761 - type: Window - components: - - pos: -62.5,-50.5 - parent: 30 - type: Transform -- uid: 17762 - type: Window - components: - - pos: -61.5,-50.5 - parent: 30 - type: Transform -- uid: 17763 - type: Window - components: - - pos: -59.5,-50.5 - parent: 30 - type: Transform -- uid: 17764 - type: Window - components: - - pos: -58.5,-50.5 - parent: 30 - type: Transform -- uid: 17765 - type: Window - components: - - pos: -57.5,-51.5 - parent: 30 - type: Transform -- uid: 17766 - type: Window - components: - - pos: -57.5,-52.5 - parent: 30 - type: Transform -- uid: 17767 - type: Window - components: - - pos: -57.5,-56.5 - parent: 30 - type: Transform -- uid: 17768 - type: Window - components: - - pos: -57.5,-57.5 - parent: 30 - type: Transform -- uid: 17769 - type: Window - components: - - pos: -58.5,-58.5 - parent: 30 - type: Transform -- uid: 17770 - type: Window - components: - - pos: -59.5,-58.5 - parent: 30 - type: Transform -- uid: 17771 - type: Window - components: - - pos: -61.5,-58.5 - parent: 30 - type: Transform -- uid: 17772 - type: Window - components: - - pos: -62.5,-58.5 - parent: 30 - type: Transform -- uid: 17773 - type: WallSolid - components: - - pos: -70.5,-62.5 - parent: 30 - type: Transform -- uid: 17774 - type: WallSolid - components: - - pos: -61.5,-66.5 - parent: 30 - type: Transform -- uid: 17775 - type: WallSolid - components: - - pos: -63.5,-66.5 - parent: 30 - type: Transform -- uid: 17776 - type: WallSolid - components: - - pos: -62.5,-66.5 - parent: 30 - type: Transform -- uid: 17777 - type: WallSolid - components: - - pos: -71.5,-64.5 - parent: 30 - type: Transform -- uid: 17778 - type: WallSolid - components: - - pos: -70.5,-64.5 - parent: 30 - type: Transform -- uid: 17779 - type: WallSolid - components: - - pos: -69.5,-64.5 - parent: 30 - type: Transform -- uid: 17780 - type: WallSolid - components: - - pos: -68.5,-64.5 - parent: 30 - type: Transform -- uid: 17781 - type: WallSolid - components: - - pos: -68.5,-65.5 - parent: 30 - type: Transform -- uid: 17782 - type: WallSolid - components: - - pos: -68.5,-66.5 - parent: 30 - type: Transform -- uid: 17783 - type: WallSolid - components: - - pos: -67.5,-66.5 - parent: 30 - type: Transform -- uid: 17784 - type: WallSolid - components: - - pos: -66.5,-66.5 - parent: 30 - type: Transform -- uid: 17785 - type: WallSolid - components: - - pos: -61.5,-62.5 - parent: 30 - type: Transform -- uid: 17786 - type: WallSolid - components: - - pos: -65.5,-66.5 - parent: 30 - type: Transform -- uid: 17787 - type: WallSolid - components: - - pos: -61.5,-63.5 - parent: 30 - type: Transform -- uid: 17788 - type: WallSolid - components: - - pos: -61.5,-64.5 - parent: 30 - type: Transform -- uid: 17789 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-63.5 - parent: 30 - type: Transform -- uid: 17790 - type: WallSolid - components: - - pos: -53.5,-67.5 - parent: 30 - type: Transform -- uid: 17791 - type: WallSolid - components: - - pos: -53.5,-66.5 - parent: 30 - type: Transform -- uid: 17792 - type: SignDirectionalChapel - components: - - pos: -43.5,4.5 - parent: 30 - type: Transform -- uid: 17793 - type: SignDirectionalChapel - components: - - rot: -1.5707963267948966 rad - pos: -33.5,6.5 - parent: 30 - type: Transform -- uid: 17794 - type: SignDirectionalChapel - components: - - pos: -43.5,-6.5 - parent: 30 - type: Transform -- uid: 17795 - type: SignDirectionalChapel - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-21.5 - parent: 30 - type: Transform -- uid: 17796 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-19.5 - parent: 30 - type: Transform -- uid: 17797 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-17.5 - parent: 30 - type: Transform -- uid: 17798 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-15.5 - parent: 30 - type: Transform -- uid: 17799 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-13.5 - parent: 30 - type: Transform -- uid: 17800 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-24.5 - parent: 30 - type: Transform -- uid: 17801 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-22.5 - parent: 30 - type: Transform -- uid: 17802 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-24.5 - parent: 30 - type: Transform -- uid: 17803 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-22.5 - parent: 30 - type: Transform -- uid: 17804 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-25.5 - parent: 30 - type: Transform -- uid: 17805 - type: WallReinforced - components: - - pos: -46.5,-27.5 - parent: 30 - type: Transform -- uid: 17806 - type: WallReinforced - components: - - pos: -46.5,-26.5 - parent: 30 - type: Transform -- uid: 17807 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-25.5 - parent: 30 - type: Transform -- uid: 17808 - type: WallReinforced - components: - - pos: -42.5,-23.5 - parent: 30 - type: Transform -- uid: 17809 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-23.5 - parent: 30 - type: Transform -- uid: 17810 - type: WallSolid - components: - - pos: -43.5,-22.5 - parent: 30 - type: Transform -- uid: 17811 - type: CableApcExtension - components: - - pos: 28.5,-6.5 - parent: 30 - type: Transform -- uid: 17812 - type: CableApcExtension - components: - - pos: 27.5,-6.5 - parent: 30 - type: Transform -- uid: 17813 - type: CableApcExtension - components: - - pos: 26.5,-6.5 - parent: 30 - type: Transform -- uid: 17814 - type: CableApcExtension - components: - - pos: 32.5,-4.5 - parent: 30 - type: Transform -- uid: 17815 - type: CableApcExtension - components: - - pos: 31.5,-4.5 - parent: 30 - type: Transform -- uid: 17816 - type: CableApcExtension - components: - - pos: 30.5,-4.5 - parent: 30 - type: Transform -- uid: 17817 - type: CableApcExtension - components: - - pos: 29.5,-4.5 - parent: 30 - type: Transform -- uid: 17818 - type: CableHV - components: - - pos: -44.5,-9.5 - parent: 30 - type: Transform -- uid: 17819 - type: CableHV - components: - - pos: -44.5,-10.5 - parent: 30 - type: Transform -- uid: 17820 - type: CableHV - components: - - pos: -44.5,-11.5 - parent: 30 - type: Transform -- uid: 17821 - type: CableHV - components: - - pos: -44.5,-12.5 - parent: 30 - type: Transform -- uid: 17822 - type: CableHV - components: - - pos: -44.5,-13.5 - parent: 30 - type: Transform -- uid: 17823 - type: CableHV - components: - - pos: -44.5,-14.5 - parent: 30 - type: Transform -- uid: 17824 - type: CableHV - components: - - pos: -44.5,-15.5 - parent: 30 - type: Transform -- uid: 17825 - type: CableHV - components: - - pos: -44.5,-16.5 - parent: 30 - type: Transform -- uid: 17826 - type: CableHV - components: - - pos: -44.5,-17.5 - parent: 30 - type: Transform -- uid: 17827 - type: CableHV - components: - - pos: -44.5,-18.5 - parent: 30 - type: Transform -- uid: 17828 - type: CableHV - components: - - pos: -44.5,-19.5 - parent: 30 - type: Transform -- uid: 17829 - type: CableHV - components: - - pos: -44.5,-20.5 - parent: 30 - type: Transform -- uid: 17830 - type: CableHV - components: - - pos: -44.5,-21.5 - parent: 30 - type: Transform -- uid: 17831 - type: CableHV - components: - - pos: -44.5,-22.5 - parent: 30 - type: Transform -- uid: 17832 - type: CableHV - components: - - pos: -44.5,-23.5 - parent: 30 - type: Transform -- uid: 17833 - type: CableHV - components: - - pos: -45.5,-23.5 - parent: 30 - type: Transform -- uid: 17834 - type: CableHV - components: - - pos: -46.5,-23.5 - parent: 30 - type: Transform -- uid: 17835 - type: CableHV - components: - - pos: -47.5,-23.5 - parent: 30 - type: Transform -- uid: 17836 - type: CableHV - components: - - pos: -49.5,-23.5 - parent: 30 - type: Transform -- uid: 17837 - type: CableHV - components: - - pos: -48.5,-23.5 - parent: 30 - type: Transform -- uid: 17838 - type: CableHV - components: - - pos: -50.5,-23.5 - parent: 30 - type: Transform -- uid: 17839 - type: CableHV - components: - - pos: -51.5,-23.5 - parent: 30 - type: Transform -- uid: 17840 - type: CableHV - components: - - pos: -52.5,-23.5 - parent: 30 - type: Transform -- uid: 17841 - type: CableHV - components: - - pos: -53.5,-23.5 - parent: 30 - type: Transform -- uid: 17842 - type: CableHV - components: - - pos: -54.5,-23.5 - parent: 30 - type: Transform -- uid: 17843 - type: CableHV - components: - - pos: -55.5,-23.5 - parent: 30 - type: Transform -- uid: 17844 - type: CableHV - components: - - pos: -56.5,-23.5 - parent: 30 - type: Transform -- uid: 17845 - type: CableHV - components: - - pos: -57.5,-23.5 - parent: 30 - type: Transform -- uid: 17846 - type: CableHV - components: - - pos: -57.5,-22.5 - parent: 30 - type: Transform -- uid: 17847 - type: CableHV - components: - - pos: -58.5,-22.5 - parent: 30 - type: Transform -- uid: 17848 - type: CableHV - components: - - pos: -59.5,-22.5 - parent: 30 - type: Transform -- uid: 17849 - type: CableHV - components: - - pos: -60.5,-22.5 - parent: 30 - type: Transform -- uid: 17850 - type: CableHV - components: - - pos: -61.5,-22.5 - parent: 30 - type: Transform -- uid: 17851 - type: CableHV - components: - - pos: -61.5,-23.5 - parent: 30 - type: Transform -- uid: 17852 - type: CableHV - components: - - pos: -61.5,-24.5 - parent: 30 - type: Transform -- uid: 17853 - type: CableHV - components: - - pos: -61.5,-25.5 - parent: 30 - type: Transform -- uid: 17854 - type: CableHV - components: - - pos: -61.5,-26.5 - parent: 30 - type: Transform -- uid: 17855 - type: CableHV - components: - - pos: -61.5,-27.5 - parent: 30 - type: Transform -- uid: 17856 - type: CableHV - components: - - pos: -61.5,-28.5 - parent: 30 - type: Transform -- uid: 17857 - type: CableHV - components: - - pos: -61.5,-29.5 - parent: 30 - type: Transform -- uid: 17858 - type: CableHV - components: - - pos: -61.5,-30.5 - parent: 30 - type: Transform -- uid: 17859 - type: CableHV - components: - - pos: -61.5,-31.5 - parent: 30 - type: Transform -- uid: 17860 - type: CableHV - components: - - pos: -61.5,-32.5 - parent: 30 - type: Transform -- uid: 17861 - type: CableHV - components: - - pos: -61.5,-33.5 - parent: 30 - type: Transform -- uid: 17862 - type: CableHV - components: - - pos: -61.5,-34.5 - parent: 30 - type: Transform -- uid: 17863 - type: CableHV - components: - - pos: -61.5,-35.5 - parent: 30 - type: Transform -- uid: 17864 - type: CableHV - components: - - pos: -61.5,-36.5 - parent: 30 - type: Transform -- uid: 17865 - type: CableHV - components: - - pos: -61.5,-37.5 - parent: 30 - type: Transform -- uid: 17866 - type: CableHV - components: - - pos: -61.5,-38.5 - parent: 30 - type: Transform -- uid: 17867 - type: CableHV - components: - - pos: -61.5,-39.5 - parent: 30 - type: Transform -- uid: 17868 - type: CableHV - components: - - pos: -61.5,-40.5 - parent: 30 - type: Transform -- uid: 17869 - type: CableHV - components: - - pos: -61.5,-41.5 - parent: 30 - type: Transform -- uid: 17870 - type: CableHV - components: - - pos: -61.5,-42.5 - parent: 30 - type: Transform -- uid: 17871 - type: CableHV - components: - - pos: -61.5,-43.5 - parent: 30 - type: Transform -- uid: 17872 - type: CableHV - components: - - pos: -61.5,-44.5 - parent: 30 - type: Transform -- uid: 17873 - type: CableHV - components: - - pos: -61.5,-45.5 - parent: 30 - type: Transform -- uid: 17874 - type: CableHV - components: - - pos: -61.5,-45.5 - parent: 30 - type: Transform -- uid: 17875 - type: CableHV - components: - - pos: -61.5,-46.5 - parent: 30 - type: Transform -- uid: 17876 - type: CableHV - components: - - pos: -61.5,-47.5 - parent: 30 - type: Transform -- uid: 17877 - type: CableHV - components: - - pos: -61.5,-48.5 - parent: 30 - type: Transform -- uid: 17878 - type: CableHV - components: - - pos: -60.5,-48.5 - parent: 30 - type: Transform -- uid: 17879 - type: CableHV - components: - - pos: -59.5,-48.5 - parent: 30 - type: Transform -- uid: 17880 - type: CableHV - components: - - pos: -58.5,-48.5 - parent: 30 - type: Transform -- uid: 17881 - type: CableHV - components: - - pos: -57.5,-48.5 - parent: 30 - type: Transform -- uid: 17882 - type: CableHV - components: - - pos: -56.5,-48.5 - parent: 30 - type: Transform -- uid: 17883 - type: CableHV - components: - - pos: -55.5,-48.5 - parent: 30 - type: Transform -- uid: 17884 - type: CableHV - components: - - pos: -52.5,-59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17885 - type: CableHV - components: - - pos: -53.5,-59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17886 - type: CableHV - components: - - pos: -54.5,-59.5 - parent: 30 - type: Transform -- uid: 17887 - type: CableHV - components: - - pos: -55.5,-59.5 - parent: 30 - type: Transform -- uid: 17888 - type: CableHV - components: - - pos: -55.5,-58.5 - parent: 30 - type: Transform -- uid: 17889 - type: CableHV - components: - - pos: -55.5,-57.5 - parent: 30 - type: Transform -- uid: 17890 - type: CableHV - components: - - pos: -55.5,-56.5 - parent: 30 - type: Transform -- uid: 17891 - type: CableHV - components: - - pos: -55.5,-55.5 - parent: 30 - type: Transform -- uid: 17892 - type: CableHV - components: - - pos: -55.5,-54.5 - parent: 30 - type: Transform -- uid: 17893 - type: CableHV - components: - - pos: -55.5,-53.5 - parent: 30 - type: Transform -- uid: 17894 - type: CableHV - components: - - pos: -55.5,-52.5 - parent: 30 - type: Transform -- uid: 17895 - type: CableHV - components: - - pos: -55.5,-51.5 - parent: 30 - type: Transform -- uid: 17896 - type: CableHV - components: - - pos: -55.5,-50.5 - parent: 30 - type: Transform -- uid: 17897 - type: CableHV - components: - - pos: -55.5,-49.5 - parent: 30 - type: Transform -- uid: 17898 - type: ToiletEmpty - components: - - pos: -49.5,-51.5 - parent: 30 - type: Transform -- uid: 17899 - type: ToiletEmpty - components: - - pos: -49.5,-55.5 - parent: 30 - type: Transform -- uid: 17900 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-56.5 - parent: 30 - type: Transform -- uid: 17901 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-52.5 - parent: 30 - type: Transform -- uid: 17902 - type: SoapHomemade - components: - - pos: -49.50612,-53.529423 - parent: 30 - type: Transform -- uid: 17903 - type: ToyRubberDuck - components: - - pos: -49.44362,-57.388798 - parent: 30 - type: Transform -- uid: 17904 - type: Airlock - components: - - pos: -54.5,-56.5 - parent: 30 - type: Transform -- uid: 17905 - type: Airlock - components: - - pos: -50.5,-56.5 - parent: 30 - type: Transform -- uid: 17906 - type: Airlock - components: - - pos: -50.5,-52.5 - parent: 30 - type: Transform -- uid: 17907 - type: Airlock - components: - - pos: -54.5,-52.5 - parent: 30 - type: Transform -- uid: 17908 - type: PottedPlantRandom - components: - - pos: -68.5,-48.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 17909 - type: PottedPlantRandom - components: - - pos: -55.5,-48.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 17910 - type: PottedPlantRandom - components: - - pos: -55.5,-60.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 17911 - type: PottedPlantRandom - components: - - pos: -68.5,-60.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 17912 - type: AirlockEngineeringLocked - components: - - pos: -54.5,-59.5 - parent: 30 - type: Transform -- uid: 17913 - type: CableHV - components: - - pos: -54.5,-49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17914 - type: CableHV - components: - - pos: -53.5,-49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17915 - type: CableHV - components: - - pos: -52.5,-49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17916 - type: CableHV - components: - - pos: -51.5,-49.5 - parent: 30 - type: Transform -- uid: 17917 - type: CableHV - components: - - pos: -50.5,-49.5 - parent: 30 - type: Transform -- uid: 17918 - type: CableHV - components: - - pos: -50.5,-46.5 - parent: 30 - type: Transform -- uid: 17919 - type: CableHV - components: - - pos: -50.5,-48.5 - parent: 30 - type: Transform -- uid: 17920 - type: CableHV - components: - - pos: -50.5,-45.5 - parent: 30 - type: Transform -- uid: 17921 - type: CableHV - components: - - pos: -54.5,-43.5 - parent: 30 - type: Transform -- uid: 17922 - type: CableHV - components: - - pos: -51.5,-43.5 - parent: 30 - type: Transform -- uid: 17923 - type: CableHV - components: - - pos: -54.5,-39.5 - parent: 30 - type: Transform -- uid: 17924 - type: CableHV - components: - - pos: -52.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17925 - type: CableHV - components: - - pos: -50.5,-43.5 - parent: 30 - type: Transform -- uid: 17926 - type: CableHV - components: - - pos: -51.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17927 - type: CableHV - components: - - pos: -50.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17928 - type: CableHV - components: - - pos: -49.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17929 - type: CableHV - components: - - pos: -48.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17930 - type: CableHV - components: - - pos: -47.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17931 - type: CableHV - components: - - pos: -46.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17932 - type: CableHV - components: - - pos: -45.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17933 - type: CableHV - components: - - pos: -44.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17934 - type: CableHV - components: - - pos: -43.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17935 - type: CableHV - components: - - pos: -42.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17936 - type: CableHV - components: - - pos: -41.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17937 - type: CableHV - components: - - pos: -40.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17938 - type: APCBasic - components: - - pos: -59.5,-25.5 - parent: 30 - type: Transform -- uid: 17939 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-22.5 - parent: 30 - type: Transform -- uid: 17940 - type: APCBasic - components: - - pos: -65.5,-47.5 - parent: 30 - type: Transform -- uid: 17941 - type: APCBasic - components: - - pos: -76.5,-42.5 - parent: 30 - type: Transform -- uid: 17942 - type: Bed - components: - - pos: -51.5,-57.5 - parent: 30 - type: Transform -- uid: 17943 - type: Bed - components: - - pos: -51.5,-53.5 - parent: 30 - type: Transform -- uid: 17944 - type: BedsheetSpawner - components: - - pos: -51.5,-57.5 - parent: 30 - type: Transform -- uid: 17945 - type: BedsheetSpawner - components: - - pos: -51.5,-53.5 - parent: 30 - type: Transform -- uid: 17946 - type: Dresser - components: - - pos: -52.5,-51.5 - parent: 30 - type: Transform -- uid: 17947 - type: Dresser - components: - - pos: -52.5,-55.5 - parent: 30 - type: Transform -- uid: 17948 - type: TableWood - components: - - pos: -53.5,-57.5 - parent: 30 - type: Transform -- uid: 17949 - type: TableWood - components: - - pos: -51.5,-55.5 - parent: 30 - type: Transform -- uid: 17950 - type: TableWood - components: - - pos: -51.5,-51.5 - parent: 30 - type: Transform -- uid: 17951 - type: TableWood - components: - - pos: -53.5,-53.5 - parent: 30 - type: Transform -- uid: 17952 - type: WardrobeChapel - components: - - pos: -53.5,-51.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17953 - type: WardrobeChapel - components: - - pos: -53.5,-55.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17954 - type: CrayonBox - components: - - pos: -53.490974,-57.42678 - parent: 30 - type: Transform -- uid: 17955 - type: PaintingMonkey - components: - - pos: -52.5,-54.5 - parent: 30 - type: Transform -- uid: 17956 - type: PaintingMonkey - components: - - pos: -52.5,-50.5 - parent: 30 - type: Transform -- uid: 17957 - type: ViolinInstrument - components: - - pos: -53.501694,-53.397877 - parent: 30 - type: Transform -- uid: 17958 - type: lantern - components: - - pos: -51.439194,-51.2885 - parent: 30 - type: Transform -- uid: 17959 - type: FlashlightLantern - components: - - pos: -51.51732,-55.39225 - parent: 30 - type: Transform -- uid: 17960 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-18.5 - parent: 30 - type: Transform - - devices: - - 17227 - - 20359 - - 20360 - - 18435 - - 18436 - - 18437 - type: DeviceList -- uid: 17961 - type: ShuttersRadiationOpen - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-52.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver -- uid: 17962 - type: FloraTree06 - components: - - pos: -72.29823,-43.406895 - parent: 30 - type: Transform -- uid: 17963 - type: hydroponicsSoil - components: - - pos: -65.5,-57.5 - parent: 30 - type: Transform -- uid: 17964 - type: hydroponicsSoil - components: - - pos: -65.5,-56.5 - parent: 30 - type: Transform -- uid: 17965 - type: hydroponicsSoil - components: - - pos: -65.5,-55.5 - parent: 30 - type: Transform -- uid: 17966 - type: hydroponicsSoil - components: - - pos: -63.5,-57.5 - parent: 30 - type: Transform -- uid: 17967 - type: hydroponicsSoil - components: - - pos: -63.5,-56.5 - parent: 30 - type: Transform -- uid: 17968 - type: hydroponicsSoil - components: - - pos: -63.5,-55.5 - parent: 30 - type: Transform -- uid: 17969 - type: hydroponicsSoil - components: - - pos: -58.5,-51.5 - parent: 30 - type: Transform -- uid: 17970 - type: hydroponicsSoil - components: - - pos: -58.5,-52.5 - parent: 30 - type: Transform -- uid: 17971 - type: hydroponicsSoil - components: - - pos: -58.5,-53.5 - parent: 30 - type: Transform -- uid: 17972 - type: hydroponicsSoil - components: - - pos: -60.5,-53.5 - parent: 30 - type: Transform -- uid: 17973 - type: hydroponicsSoil - components: - - pos: -60.5,-52.5 - parent: 30 - type: Transform -- uid: 17974 - type: hydroponicsSoil - components: - - pos: -60.5,-51.5 - parent: 30 - type: Transform -- uid: 17975 - type: Grille - components: - - pos: -66.5,-51.5 - parent: 30 - type: Transform -- uid: 17976 - type: Grille - components: - - pos: -65.5,-50.5 - parent: 30 - type: Transform -- uid: 17977 - type: Grille - components: - - pos: -64.5,-50.5 - parent: 30 - type: Transform -- uid: 17978 - type: Grille - components: - - pos: -61.5,-50.5 - parent: 30 - type: Transform -- uid: 17979 - type: Grille - components: - - pos: -62.5,-50.5 - parent: 30 - type: Transform -- uid: 17980 - type: Grille - components: - - pos: -59.5,-50.5 - parent: 30 - type: Transform -- uid: 17981 - type: Grille - components: - - pos: -58.5,-50.5 - parent: 30 - type: Transform -- uid: 17982 - type: Grille - components: - - pos: -57.5,-51.5 - parent: 30 - type: Transform -- uid: 17983 - type: Grille - components: - - pos: -57.5,-52.5 - parent: 30 - type: Transform -- uid: 17984 - type: Grille - components: - - pos: -57.5,-57.5 - parent: 30 - type: Transform -- uid: 17985 - type: Grille - components: - - pos: -57.5,-56.5 - parent: 30 - type: Transform -- uid: 17986 - type: Grille - components: - - pos: -58.5,-58.5 - parent: 30 - type: Transform -- uid: 17987 - type: Grille - components: - - pos: -59.5,-58.5 - parent: 30 - type: Transform -- uid: 17988 - type: Grille - components: - - pos: -61.5,-58.5 - parent: 30 - type: Transform -- uid: 17989 - type: Grille - components: - - pos: -62.5,-58.5 - parent: 30 - type: Transform -- uid: 17990 - type: Grille - components: - - pos: -64.5,-58.5 - parent: 30 - type: Transform -- uid: 17991 - type: Grille - components: - - pos: -65.5,-58.5 - parent: 30 - type: Transform -- uid: 17992 - type: Grille - components: - - pos: -66.5,-57.5 - parent: 30 - type: Transform -- uid: 17993 - type: Grille - components: - - pos: -66.5,-56.5 - parent: 30 - type: Transform -- uid: 17994 - type: CableApcExtension - components: - - pos: 28.5,-4.5 - parent: 30 - type: Transform -- uid: 17995 - type: CableApcExtension - components: - - pos: 27.5,-4.5 - parent: 30 - type: Transform -- uid: 17996 - type: CableApcExtension - components: - - pos: 26.5,-4.5 - parent: 30 - type: Transform -- uid: 17997 - type: CableApcExtension - components: - - pos: 26.5,-3.5 - parent: 30 - type: Transform -- uid: 17998 - type: CableApcExtension - components: - - pos: 26.5,-2.5 - parent: 30 - type: Transform -- uid: 17999 - type: WallSolid - components: - - pos: -29.5,-41.5 - parent: 30 - type: Transform -- uid: 18000 - type: CableApcExtension - components: - - pos: 32.5,-7.5 - parent: 30 - type: Transform -- uid: 18001 - type: ComputerShuttleCargo - components: - - pos: 35.5,-4.5 - parent: 30 - type: Transform -- uid: 18002 - type: WallReinforced - components: - - pos: -32.5,-41.5 - parent: 30 - type: Transform -- uid: 18003 - type: WallReinforced - components: - - pos: -33.5,-41.5 - parent: 30 - type: Transform -- uid: 18004 - type: WallReinforced - components: - - pos: -34.5,-41.5 - parent: 30 - type: Transform -- uid: 18005 - type: WallReinforced - components: - - pos: -35.5,-41.5 - parent: 30 - type: Transform -- uid: 18006 - type: ReinforcedWindow - components: - - pos: -35.5,-38.5 - parent: 30 - type: Transform -- uid: 18007 - type: ReinforcedWindow - components: - - pos: -36.5,-38.5 - parent: 30 - type: Transform -- uid: 18008 - type: WallReinforced - components: - - pos: -35.5,-37.5 - parent: 30 - type: Transform -- uid: 18009 - type: WallSolid - components: - - pos: -34.5,-37.5 - parent: 30 - type: Transform -- uid: 18010 - type: WallSolid - components: - - pos: -33.5,-37.5 - parent: 30 - type: Transform -- uid: 18011 - type: SinkWide - components: - - rot: 3.141592653589793 rad - pos: 27.5,-11.5 - parent: 30 - type: Transform -- uid: 18012 - type: WallSolid - components: - - pos: -31.5,-37.5 - parent: 30 - type: Transform -- uid: 18013 - type: ReinforcedWindow - components: - - pos: -37.5,-38.5 - parent: 30 - type: Transform -- uid: 18014 - type: ReinforcedWindow - components: - - pos: -35.5,-40.5 - parent: 30 - type: Transform -- uid: 18015 - type: ReinforcedWindow - components: - - pos: -37.5,-40.5 - parent: 30 - type: Transform -- uid: 18016 - type: Grille - components: - - pos: -36.5,-40.5 - parent: 30 - type: Transform -- uid: 18017 - type: ReinforcedWindow - components: - - pos: -36.5,-40.5 - parent: 30 - type: Transform -- uid: 18018 - type: AirlockExternalGlassLocked - components: - - pos: -35.5,-39.5 - parent: 30 - type: Transform -- uid: 18019 - type: Grille - components: - - pos: -37.5,-40.5 - parent: 30 - type: Transform -- uid: 18020 - type: Grille - components: - - pos: -35.5,-40.5 - parent: 30 - type: Transform -- uid: 18021 - type: Grille - components: - - pos: -35.5,-38.5 - parent: 30 - type: Transform -- uid: 18022 - type: Grille - components: - - pos: -36.5,-38.5 - parent: 30 - type: Transform -- uid: 18023 - type: Grille - components: - - pos: -37.5,-38.5 - parent: 30 - type: Transform -- uid: 18024 - type: CableHV - components: - - pos: -39.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18025 - type: CableHV - components: - - pos: -38.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18026 - type: CableHV - components: - - pos: -37.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18027 - type: CableHV - components: - - pos: -36.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18028 - type: CableHV - components: - - pos: -35.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18029 - type: CableHV - components: - - pos: -34.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18030 - type: CableHV - components: - - pos: -33.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18031 - type: CableHV - components: - - pos: -32.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18032 - type: CableHV - components: - - pos: -29.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18033 - type: CableHV - components: - - pos: -29.5,-30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18034 - type: CableHV - components: - - pos: -29.5,-31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18035 - type: CableHV - components: - - pos: -29.5,-32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18036 - type: CableHV - components: - - pos: -29.5,-33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18037 - type: CableHV - components: - - pos: -29.5,-34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18038 - type: CableHV - components: - - pos: -29.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18039 - type: CableHV - components: - - pos: -29.5,-36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18040 - type: CableHV - components: - - pos: -29.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18041 - type: CableHV - components: - - pos: -29.5,-38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18042 - type: CableHV - components: - - pos: -29.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18043 - type: CableHV - components: - - pos: -30.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18044 - type: CableHV - components: - - pos: -31.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18045 - type: WallReinforced - components: - - pos: -42.5,-25.5 - parent: 30 - type: Transform -- uid: 18046 - type: WallReinforced - components: - - pos: -41.5,-25.5 - parent: 30 - type: Transform -- uid: 18047 - type: WallReinforced - components: - - pos: -40.5,-25.5 - parent: 30 - type: Transform -- uid: 18048 - type: WallReinforced - components: - - pos: -39.5,-25.5 - parent: 30 - type: Transform -- uid: 18049 - type: CableApcExtension - components: - - pos: -45.5,-24.5 - parent: 30 - type: Transform -- uid: 18050 - type: CableApcExtension - components: - - pos: -45.5,-25.5 - parent: 30 - type: Transform -- uid: 18051 - type: WallReinforced - components: - - pos: -39.5,-28.5 - parent: 30 - type: Transform -- uid: 18052 - type: WallReinforced - components: - - pos: -39.5,-29.5 - parent: 30 - type: Transform -- uid: 18053 - type: WallSolid - components: - - pos: -31.5,-36.5 - parent: 30 - type: Transform -- uid: 18054 - type: WallSolid - components: - - pos: -31.5,-35.5 - parent: 30 - type: Transform -- uid: 18055 - type: AirlockMaintLocked - components: - - pos: -31.5,-33.5 - parent: 30 - type: Transform -- uid: 18056 - type: WallSolid - components: - - pos: -31.5,-32.5 - parent: 30 - type: Transform -- uid: 18057 - type: WallSolid - components: - - pos: -31.5,-31.5 - parent: 30 - type: Transform -- uid: 18058 - type: ToolboxMechanicalFilled - components: - - pos: 30.507761,-9.498787 - parent: 30 - type: Transform -- uid: 18059 - type: WallSolid - components: - - pos: -31.5,-34.5 - parent: 30 - type: Transform -- uid: 18060 - type: GasVentScrubber - components: - - pos: 30.5,-5.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18061 - type: WallSolid - components: - - pos: -33.5,-30.5 - parent: 30 - type: Transform -- uid: 18062 - type: WallSolid - components: - - pos: -34.5,-30.5 - parent: 30 - type: Transform -- uid: 18063 - type: WallSolid - components: - - pos: -35.5,-30.5 - parent: 30 - type: Transform -- uid: 18064 - type: SurveillanceCameraSupply - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Bay 2 - type: SurveillanceCamera -- uid: 18065 - type: AirlockMaintLocked - components: - - pos: -37.5,-30.5 - parent: 30 - type: Transform -- uid: 18066 - type: WallSolid - components: - - pos: -38.5,-30.5 - parent: 30 - type: Transform -- uid: 18067 - type: WallReinforced - components: - - pos: -35.5,-36.5 - parent: 30 - type: Transform -- uid: 18068 - type: ReinforcedWindow - components: - - pos: -36.5,-36.5 - parent: 30 - type: Transform -- uid: 18069 - type: FirelockGlass - components: - - pos: -30.5,-37.5 - parent: 30 - type: Transform -- uid: 18070 - type: WallSolid - components: - - pos: -56.5,-62.5 - parent: 30 - type: Transform -- uid: 18071 - type: WallSolid - components: - - pos: -53.5,-65.5 - parent: 30 - type: Transform -- uid: 18072 - type: WallSolid - components: - - pos: -53.5,-64.5 - parent: 30 - type: Transform -- uid: 18073 - type: WallSolid - components: - - pos: -57.5,-68.5 - parent: 30 - type: Transform -- uid: 18074 - type: WallSolid - components: - - pos: -53.5,-63.5 - parent: 30 - type: Transform -- uid: 18075 - type: WallSolid - components: - - pos: -53.5,-62.5 - parent: 30 - type: Transform -- uid: 18076 - type: WallSolid - components: - - pos: -54.5,-61.5 - parent: 30 - type: Transform -- uid: 18077 - type: WallSolid - components: - - pos: -54.5,-60.5 - parent: 30 - type: Transform -- uid: 18078 - type: ChairWood - components: - - pos: -59.5,-48.5 - parent: 30 - type: Transform -- uid: 18079 - type: WallReinforced - components: - - pos: -53.5,-68.5 - parent: 30 - type: Transform -- uid: 18080 - type: ChairWood - components: - - pos: -65.5,-48.5 - parent: 30 - type: Transform -- uid: 18081 - type: WallReinforced - components: - - pos: -54.5,-68.5 - parent: 30 - type: Transform -- uid: 18082 - type: WallSolid - components: - - pos: -61.5,-67.5 - parent: 30 - type: Transform -- uid: 18083 - type: ChairWood - components: - - pos: -58.5,-48.5 - parent: 30 - type: Transform -- uid: 18084 - type: Table - components: - - pos: -74.5,-55.5 - parent: 30 - type: Transform -- uid: 18085 - type: WallReinforced - components: - - pos: -57.5,-69.5 - parent: 30 - type: Transform -- uid: 18086 - type: WallSolid - components: - - pos: -64.5,-66.5 - parent: 30 - type: Transform -- uid: 18087 - type: WallSolid - components: - - pos: -78.5,-59.5 - parent: 30 - type: Transform -- uid: 18088 - type: WallSolid - components: - - pos: -70.5,-50.5 - parent: 30 - type: Transform -- uid: 18089 - type: WallSolid - components: - - pos: -71.5,-50.5 - parent: 30 - type: Transform -- uid: 18090 - type: WallSolid - components: - - pos: -72.5,-50.5 - parent: 30 - type: Transform -- uid: 18091 - type: WallSolid - components: - - pos: -73.5,-50.5 - parent: 30 - type: Transform -- uid: 18092 - type: WallSolid - components: - - pos: -74.5,-50.5 - parent: 30 - type: Transform -- uid: 18093 - type: WallSolid - components: - - pos: -74.5,-51.5 - parent: 30 - type: Transform -- uid: 18094 - type: WallSolid - components: - - pos: -74.5,-52.5 - parent: 30 - type: Transform -- uid: 18095 - type: WallSolid - components: - - pos: -74.5,-53.5 - parent: 30 - type: Transform -- uid: 18096 - type: WallSolid - components: - - pos: -78.5,-58.5 - parent: 30 - type: Transform -- uid: 18097 - type: WallSolid - components: - - pos: -74.5,-56.5 - parent: 30 - type: Transform -- uid: 18098 - type: WallSolid - components: - - pos: -74.5,-57.5 - parent: 30 - type: Transform -- uid: 18099 - type: WallSolid - components: - - pos: -70.5,-57.5 - parent: 30 - type: Transform -- uid: 18100 - type: WallSolid - components: - - pos: -71.5,-57.5 - parent: 30 - type: Transform -- uid: 18101 - type: WallSolid - components: - - pos: -72.5,-57.5 - parent: 30 - type: Transform -- uid: 18102 - type: WallSolid - components: - - pos: -73.5,-57.5 - parent: 30 - type: Transform -- uid: 18103 - type: WallReinforced - components: - - pos: -80.5,-51.5 - parent: 30 - type: Transform -- uid: 18104 - type: WallReinforced - components: - - pos: -80.5,-52.5 - parent: 30 - type: Transform -- uid: 18105 - type: WallReinforced - components: - - pos: -80.5,-53.5 - parent: 30 - type: Transform -- uid: 18106 - type: WallReinforced - components: - - pos: -80.5,-54.5 - parent: 30 - type: Transform -- uid: 18107 - type: WallReinforced - components: - - pos: -80.5,-55.5 - parent: 30 - type: Transform -- uid: 18108 - type: WallReinforced - components: - - pos: -80.5,-56.5 - parent: 30 - type: Transform -- uid: 18109 - type: WallReinforced - components: - - pos: -80.5,-57.5 - parent: 30 - type: Transform -- uid: 18110 - type: WallSolid - components: - - pos: -75.5,-57.5 - parent: 30 - type: Transform -- uid: 18111 - type: WallSolid - components: - - pos: -76.5,-57.5 - parent: 30 - type: Transform -- uid: 18112 - type: WallSolid - components: - - pos: -77.5,-57.5 - parent: 30 - type: Transform -- uid: 18113 - type: WallSolid - components: - - pos: -78.5,-57.5 - parent: 30 - type: Transform -- uid: 18114 - type: WallSolid - components: - - pos: -79.5,-57.5 - parent: 30 - type: Transform -- uid: 18115 - type: WallSolid - components: - - pos: -79.5,-54.5 - parent: 30 - type: Transform -- uid: 18116 - type: WallSolid - components: - - pos: -75.5,-50.5 - parent: 30 - type: Transform -- uid: 18117 - type: WallSolid - components: - - pos: -76.5,-50.5 - parent: 30 - type: Transform -- uid: 18118 - type: CableMV - components: - - pos: -79.5,-57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18119 - type: WallReinforced - components: - - pos: -78.5,-64.5 - parent: 30 - type: Transform -- uid: 18120 - type: WallReinforced - components: - - pos: -79.5,-64.5 - parent: 30 - type: Transform -- uid: 18121 - type: WallReinforced - components: - - pos: -79.5,-63.5 - parent: 30 - type: Transform -- uid: 18122 - type: WallReinforced - components: - - pos: -79.5,-62.5 - parent: 30 - type: Transform -- uid: 18123 - type: WallReinforced - components: - - pos: -79.5,-61.5 - parent: 30 - type: Transform -- uid: 18124 - type: WallReinforced - components: - - pos: -78.5,-61.5 - parent: 30 - type: Transform -- uid: 18125 - type: WallSolid - components: - - pos: -61.5,-68.5 - parent: 30 - type: Transform -- uid: 18126 - type: CableApcExtension - components: - - pos: -79.5,-57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18127 - type: FirelockGlass - components: - - pos: -74.5,-55.5 - parent: 30 - type: Transform -- uid: 18128 - type: WallReinforced - components: - - pos: -80.5,-62.5 - parent: 30 - type: Transform -- uid: 18129 - type: WallReinforced - components: - - pos: -81.5,-62.5 - parent: 30 - type: Transform -- uid: 18130 - type: WallReinforced - components: - - pos: -82.5,-62.5 - parent: 30 - type: Transform -- uid: 18131 - type: WallReinforced - components: - - pos: -84.5,-59.5 - parent: 30 - type: Transform -- uid: 18132 - type: WallReinforced - components: - - pos: -83.5,-59.5 - parent: 30 - type: Transform -- uid: 18133 - type: WallReinforced - components: - - pos: -82.5,-59.5 - parent: 30 - type: Transform -- uid: 18134 - type: WallReinforced - components: - - pos: -82.5,-58.5 - parent: 30 - type: Transform -- uid: 18135 - type: WallReinforced - components: - - pos: -82.5,-57.5 - parent: 30 - type: Transform -- uid: 18136 - type: WallReinforced - components: - - pos: -81.5,-57.5 - parent: 30 - type: Transform -- uid: 18137 - type: ReinforcedWindow - components: - - pos: -82.5,-61.5 - parent: 30 - type: Transform -- uid: 18138 - type: ReinforcedWindow - components: - - pos: -83.5,-61.5 - parent: 30 - type: Transform -- uid: 18139 - type: ReinforcedWindow - components: - - pos: -84.5,-61.5 - parent: 30 - type: Transform -- uid: 18140 - type: ReinforcedWindow - components: - - pos: -85.5,-61.5 - parent: 30 - type: Transform -- uid: 18141 - type: ReinforcedWindow - components: - - pos: -85.5,-59.5 - parent: 30 - type: Transform -- uid: 18142 - type: ReinforcedWindow - components: - - pos: -76.5,-67.5 - parent: 30 - type: Transform -- uid: 18143 - type: ReinforcedWindow - components: - - pos: -76.5,-66.5 - parent: 30 - type: Transform -- uid: 18144 - type: ReinforcedWindow - components: - - pos: -77.5,-66.5 - parent: 30 - type: Transform -- uid: 18145 - type: ReinforcedWindow - components: - - pos: -78.5,-66.5 - parent: 30 - type: Transform -- uid: 18146 - type: ReinforcedWindow - components: - - pos: -78.5,-65.5 - parent: 30 - type: Transform -- uid: 18147 - type: ReinforcedWindow - components: - - pos: -73.5,-67.5 - parent: 30 - type: Transform -- uid: 18148 - type: ReinforcedWindow - components: - - pos: -73.5,-66.5 - parent: 30 - type: Transform -- uid: 18149 - type: ReinforcedWindow - components: - - pos: -72.5,-66.5 - parent: 30 - type: Transform -- uid: 18150 - type: ReinforcedWindow - components: - - pos: -71.5,-66.5 - parent: 30 - type: Transform -- uid: 18151 - type: ReinforcedWindow - components: - - pos: -71.5,-65.5 - parent: 30 - type: Transform -- uid: 18152 - type: ReinforcedWindow - components: - - pos: -75.5,-67.5 - parent: 30 - type: Transform -- uid: 18153 - type: ReinforcedWindow - components: - - pos: -74.5,-67.5 - parent: 30 - type: Transform -- uid: 18154 - type: Grille - components: - - pos: -76.5,-67.5 - parent: 30 - type: Transform -- uid: 18155 - type: Grille - components: - - pos: -76.5,-66.5 - parent: 30 - type: Transform -- uid: 18156 - type: Grille - components: - - pos: -77.5,-66.5 - parent: 30 - type: Transform -- uid: 18157 - type: Grille - components: - - pos: -78.5,-66.5 - parent: 30 - type: Transform -- uid: 18158 - type: Grille - components: - - pos: -78.5,-65.5 - parent: 30 - type: Transform -- uid: 18159 - type: Grille - components: - - pos: -73.5,-67.5 - parent: 30 - type: Transform -- uid: 18160 - type: Grille - components: - - pos: -73.5,-66.5 - parent: 30 - type: Transform -- uid: 18161 - type: Grille - components: - - pos: -72.5,-66.5 - parent: 30 - type: Transform -- uid: 18162 - type: Grille - components: - - pos: -71.5,-66.5 - parent: 30 - type: Transform -- uid: 18163 - type: Grille - components: - - pos: -71.5,-65.5 - parent: 30 - type: Transform -- uid: 18164 - type: Grille - components: - - pos: -82.5,-61.5 - parent: 30 - type: Transform -- uid: 18165 - type: Grille - components: - - pos: -83.5,-61.5 - parent: 30 - type: Transform -- uid: 18166 - type: Grille - components: - - pos: -84.5,-61.5 - parent: 30 - type: Transform -- uid: 18167 - type: Grille - components: - - pos: -85.5,-61.5 - parent: 30 - type: Transform -- uid: 18168 - type: Grille - components: - - pos: -85.5,-59.5 - parent: 30 - type: Transform -- uid: 18169 - type: WallSolid - components: - - pos: -71.5,-61.5 - parent: 30 - type: Transform -- uid: 18170 - type: WallSolid - components: - - pos: -71.5,-59.5 - parent: 30 - type: Transform -- uid: 18171 - type: WallSolid - components: - - pos: -71.5,-58.5 - parent: 30 - type: Transform -- uid: 18172 - type: AirlockExternalGlassLocked - components: - - pos: -82.5,-60.5 - parent: 30 - type: Transform -- uid: 18173 - type: AirlockExternalGlassLocked - components: - - pos: -85.5,-60.5 - parent: 30 - type: Transform -- uid: 18174 - type: AirlockExternalLocked - components: - - pos: -78.5,-60.5 - parent: 30 - type: Transform -- uid: 18175 - type: Table - components: - - pos: -80.5,-58.5 - parent: 30 - type: Transform -- uid: 18176 - type: ClosetEmergencyFilledRandom - components: - - pos: -81.5,-58.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18177 - type: ClothingMaskGas - components: - - pos: -80.462616,-58.41882 - parent: 30 - type: Transform -- uid: 18178 - type: CrowbarRed - components: - - pos: -80.47824,-58.465694 - parent: 30 - type: Transform -- uid: 18179 - type: Table - components: - - pos: -81.5,-61.5 - parent: 30 - type: Transform -- uid: 18180 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -80.5,-61.5 - parent: 30 - type: Transform -- uid: 18181 - type: CrayonBox - components: - - pos: -81.493866,-61.45007 - parent: 30 - type: Transform -- uid: 18182 - type: Wrench - components: - - pos: -81.50949,-61.496944 - parent: 30 - type: Transform -- uid: 18183 - type: AsteroidRock - components: - - pos: -74.5,-39.5 - parent: 30 - type: Transform -- uid: 18184 - type: WallReinforced - components: - - pos: -60.5,-69.5 - parent: 30 - type: Transform -- uid: 18185 - type: ReinforcedWindow - components: - - pos: -59.5,-69.5 - parent: 30 - type: Transform -- uid: 18186 - type: ReinforcedWindow - components: - - pos: -58.5,-69.5 - parent: 30 - type: Transform -- uid: 18187 - type: Grille - components: - - pos: -59.5,-69.5 - parent: 30 - type: Transform -- uid: 18188 - type: Grille - components: - - pos: -58.5,-69.5 - parent: 30 - type: Transform -- uid: 18189 - type: AsteroidRock - components: - - pos: -53.5,-61.5 - parent: 30 - type: Transform -- uid: 18190 - type: AsteroidRock - components: - - pos: -52.5,-61.5 - parent: 30 - type: Transform -- uid: 18191 - type: AsteroidRock - components: - - pos: -51.5,-61.5 - parent: 30 - type: Transform -- uid: 18192 - type: AsteroidRock - components: - - pos: -50.5,-61.5 - parent: 30 - type: Transform -- uid: 18193 - type: AsteroidRock - components: - - pos: -50.5,-60.5 - parent: 30 - type: Transform -- uid: 18194 - type: AsteroidRock - components: - - pos: -50.5,-59.5 - parent: 30 - type: Transform -- uid: 18195 - type: MaintenanceWeaponSpawner - components: - - pos: -49.5,-59.5 - parent: 30 - type: Transform -- uid: 18196 - type: AsteroidRock - components: - - pos: -48.5,-59.5 - parent: 30 - type: Transform -- uid: 18197 - type: AsteroidRock - components: - - pos: -48.5,-60.5 - parent: 30 - type: Transform -- uid: 18198 - type: AsteroidRock - components: - - pos: -48.5,-61.5 - parent: 30 - type: Transform -- uid: 18199 - type: AsteroidRock - components: - - pos: -49.5,-60.5 - parent: 30 - type: Transform -- uid: 18200 - type: AsteroidRock - components: - - pos: -49.5,-61.5 - parent: 30 - type: Transform -- uid: 18201 - type: AsteroidRock - components: - - pos: -49.5,-62.5 - parent: 30 - type: Transform -- uid: 18202 - type: AsteroidRock - components: - - pos: -49.5,-63.5 - parent: 30 - type: Transform -- uid: 18203 - type: AsteroidRock - components: - - pos: -49.5,-64.5 - parent: 30 - type: Transform -- uid: 18204 - type: AsteroidRock - components: - - pos: -50.5,-62.5 - parent: 30 - type: Transform -- uid: 18205 - type: AsteroidRock - components: - - pos: -51.5,-62.5 - parent: 30 - type: Transform -- uid: 18206 - type: AsteroidRock - components: - - pos: -52.5,-62.5 - parent: 30 - type: Transform -- uid: 18207 - type: AsteroidRock - components: - - pos: -52.5,-63.5 - parent: 30 - type: Transform -- uid: 18208 - type: AsteroidRock - components: - - pos: -50.5,-63.5 - parent: 30 - type: Transform -- uid: 18209 - type: CyberPen - components: - - pos: -51.49173,-63.4455 - parent: 30 - type: Transform -- uid: 18210 - type: AsteroidRock - components: - - pos: -52.5,-64.5 - parent: 30 - type: Transform -- uid: 18211 - type: AsteroidRock - components: - - pos: -52.5,-65.5 - parent: 30 - type: Transform -- uid: 18212 - type: AsteroidRock - components: - - pos: -52.5,-66.5 - parent: 30 - type: Transform -- uid: 18213 - type: AsteroidRock - components: - - pos: -52.5,-67.5 - parent: 30 - type: Transform -- uid: 18214 - type: AsteroidRock - components: - - pos: -51.5,-66.5 - parent: 30 - type: Transform -- uid: 18215 - type: AsteroidRock - components: - - pos: -51.5,-65.5 - parent: 30 - type: Transform -- uid: 18216 - type: AsteroidRock - components: - - pos: -51.5,-64.5 - parent: 30 - type: Transform -- uid: 18217 - type: AsteroidRock - components: - - pos: -50.5,-64.5 - parent: 30 - type: Transform -- uid: 18218 - type: AsteroidRock - components: - - pos: -50.5,-65.5 - parent: 30 - type: Transform -- uid: 18219 - type: AsteroidRock - components: - - pos: -50.5,-66.5 - parent: 30 - type: Transform -- uid: 18220 - type: AsteroidRock - components: - - pos: -80.5,-63.5 - parent: 30 - type: Transform -- uid: 18221 - type: AsteroidRock - components: - - pos: -81.5,-63.5 - parent: 30 - type: Transform -- uid: 18222 - type: AsteroidRock - components: - - pos: -82.5,-63.5 - parent: 30 - type: Transform -- uid: 18223 - type: AsteroidRock - components: - - pos: -83.5,-63.5 - parent: 30 - type: Transform -- uid: 18224 - type: AsteroidRock - components: - - pos: -84.5,-63.5 - parent: 30 - type: Transform -- uid: 18225 - type: AsteroidRock - components: - - pos: -83.5,-62.5 - parent: 30 - type: Transform -- uid: 18226 - type: AsteroidRock - components: - - pos: -84.5,-62.5 - parent: 30 - type: Transform -- uid: 18227 - type: AsteroidRock - components: - - pos: -85.5,-62.5 - parent: 30 - type: Transform -- uid: 18228 - type: AsteroidRock - components: - - pos: -82.5,-64.5 - parent: 30 - type: Transform -- uid: 18229 - type: AsteroidRock - components: - - pos: -81.5,-64.5 - parent: 30 - type: Transform -- uid: 18230 - type: AsteroidRock - components: - - pos: -80.5,-64.5 - parent: 30 - type: Transform -- uid: 18231 - type: AsteroidRock - components: - - pos: -83.5,-58.5 - parent: 30 - type: Transform -- uid: 18232 - type: AsteroidRock - components: - - pos: -83.5,-57.5 - parent: 30 - type: Transform -- uid: 18233 - type: AsteroidRock - components: - - pos: -83.5,-56.5 - parent: 30 - type: Transform -- uid: 18234 - type: AsteroidRock - components: - - pos: -83.5,-55.5 - parent: 30 - type: Transform -- uid: 18235 - type: AsteroidRock - components: - - pos: -83.5,-54.5 - parent: 30 - type: Transform -- uid: 18236 - type: AsteroidRock - components: - - pos: -83.5,-53.5 - parent: 30 - type: Transform -- uid: 18237 - type: AsteroidRock - components: - - pos: -83.5,-52.5 - parent: 30 - type: Transform -- uid: 18238 - type: AsteroidRock - components: - - pos: -83.5,-51.5 - parent: 30 - type: Transform -- uid: 18239 - type: AsteroidRock - components: - - pos: -84.5,-58.5 - parent: 30 - type: Transform -- uid: 18240 - type: AsteroidRock - components: - - pos: -84.5,-57.5 - parent: 30 - type: Transform -- uid: 18241 - type: AsteroidRock - components: - - pos: -84.5,-56.5 - parent: 30 - type: Transform -- uid: 18242 - type: AsteroidRock - components: - - pos: -84.5,-55.5 - parent: 30 - type: Transform -- uid: 18243 - type: AsteroidRock - components: - - pos: -84.5,-54.5 - parent: 30 - type: Transform -- uid: 18244 - type: AsteroidRock - components: - - pos: -84.5,-53.5 - parent: 30 - type: Transform -- uid: 18245 - type: AsteroidRock - components: - - pos: -85.5,-58.5 - parent: 30 - type: Transform -- uid: 18246 - type: AsteroidRock - components: - - pos: -85.5,-57.5 - parent: 30 - type: Transform -- uid: 18247 - type: AsteroidRock - components: - - pos: -82.5,-56.5 - parent: 30 - type: Transform -- uid: 18248 - type: AsteroidRock - components: - - pos: -82.5,-55.5 - parent: 30 - type: Transform -- uid: 18249 - type: ClothingOuterArmorCult - components: - - pos: -72.51071,-48.502575 - parent: 30 - type: Transform -- uid: 18250 - type: AsteroidRock - components: - - pos: -82.5,-53.5 - parent: 30 - type: Transform -- uid: 18251 - type: AsteroidRock - components: - - pos: -82.5,-52.5 - parent: 30 - type: Transform -- uid: 18252 - type: AsteroidRock - components: - - pos: -82.5,-51.5 - parent: 30 - type: Transform -- uid: 18253 - type: AsteroidRock - components: - - pos: -82.5,-50.5 - parent: 30 - type: Transform -- uid: 18254 - type: AsteroidRock - components: - - pos: -81.5,-51.5 - parent: 30 - type: Transform -- uid: 18255 - type: AsteroidRock - components: - - pos: -81.5,-52.5 - parent: 30 - type: Transform -- uid: 18256 - type: AsteroidRock - components: - - pos: -81.5,-53.5 - parent: 30 - type: Transform -- uid: 18257 - type: AsteroidRock - components: - - pos: -81.5,-54.5 - parent: 30 - type: Transform -- uid: 18258 - type: AsteroidRock - components: - - pos: -81.5,-55.5 - parent: 30 - type: Transform -- uid: 18259 - type: AsteroidRock - components: - - pos: -81.5,-56.5 - parent: 30 - type: Transform -- uid: 18260 - type: Grille - components: - - pos: -72.5,-32.5 - parent: 30 - type: Transform -- uid: 18261 - type: Grille - components: - - pos: -72.5,-31.5 - parent: 30 - type: Transform -- uid: 18262 - type: Grille - components: - - pos: -72.5,-30.5 - parent: 30 - type: Transform -- uid: 18263 - type: Grille - components: - - pos: -72.5,-29.5 - parent: 30 - type: Transform -- uid: 18264 - type: Grille - components: - - pos: -71.5,-29.5 - parent: 30 - type: Transform -- uid: 18265 - type: Grille - components: - - pos: -69.5,-27.5 - parent: 30 - type: Transform -- uid: 18266 - type: Grille - components: - - pos: -69.5,-26.5 - parent: 30 - type: Transform -- uid: 18267 - type: Grille - components: - - pos: -69.5,-25.5 - parent: 30 - type: Transform -- uid: 18268 - type: Grille - components: - - pos: -69.5,-24.5 - parent: 30 - type: Transform -- uid: 18269 - type: Grille - components: - - pos: -69.5,-22.5 - parent: 30 - type: Transform -- uid: 18270 - type: Grille - components: - - pos: -68.5,-22.5 - parent: 30 - type: Transform -- uid: 18271 - type: Grille - components: - - pos: -66.5,-22.5 - parent: 30 - type: Transform -- uid: 18272 - type: Grille - components: - - pos: -66.5,-21.5 - parent: 30 - type: Transform -- uid: 18273 - type: Grille - components: - - pos: -66.5,-20.5 - parent: 30 - type: Transform -- uid: 18274 - type: Grille - components: - - pos: -53.5,-19.5 - parent: 30 - type: Transform -- uid: 18275 - type: Grille - components: - - pos: -53.5,-18.5 - parent: 30 - type: Transform -- uid: 18276 - type: Grille - components: - - pos: -53.5,-17.5 - parent: 30 - type: Transform -- uid: 18277 - type: Grille - components: - - pos: -51.5,-30.5 - parent: 30 - type: Transform -- uid: 18278 - type: Grille - components: - - pos: -50.5,-30.5 - parent: 30 - type: Transform -- uid: 18279 - type: Grille - components: - - pos: -50.5,-31.5 - parent: 30 - type: Transform -- uid: 18280 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -69.5,-23.5 - parent: 30 - type: Transform -- uid: 18281 - type: GrilleBroken - components: - - pos: -67.5,-22.5 - parent: 30 - type: Transform -- uid: 18282 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-29.5 - parent: 30 - type: Transform -- uid: 18283 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -71.5,-32.5 - parent: 30 - type: Transform -- uid: 18284 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -68.5,-27.5 - parent: 30 - type: Transform -- uid: 18285 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-21.5 - parent: 30 - type: Transform -- uid: 18286 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-39.5 - parent: 30 - type: Transform -- uid: 18287 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-39.5 - parent: 30 - type: Transform -- uid: 18288 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-39.5 - parent: 30 - type: Transform -- uid: 18289 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-39.5 - parent: 30 - type: Transform -- uid: 18290 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-39.5 - parent: 30 - type: Transform -- uid: 18291 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-39.5 - parent: 30 - type: Transform -- uid: 18292 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-39.5 - parent: 30 - type: Transform -- uid: 18293 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-39.5 - parent: 30 - type: Transform -- uid: 18294 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-39.5 - parent: 30 - type: Transform -- uid: 18295 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-39.5 - parent: 30 - type: Transform -- uid: 18296 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-39.5 - parent: 30 - type: Transform -- uid: 18297 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-39.5 - parent: 30 - type: Transform -- uid: 18298 - type: Bookshelf - components: - - pos: -55.5,-62.5 - parent: 30 - type: Transform -- uid: 18299 - type: Grille - components: - - pos: -48.5,-49.5 - parent: 30 - type: Transform -- uid: 18300 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -76.5,-34.5 - parent: 30 - type: Transform -- uid: 18301 - type: WindowReinforcedDirectional - components: - - pos: -75.5,-33.5 - parent: 30 - type: Transform -- uid: 18302 - type: WindowReinforcedDirectional - components: - - pos: -74.5,-33.5 - parent: 30 - type: Transform -- uid: 18303 - type: WindowReinforcedDirectional - components: - - pos: -73.5,-33.5 - parent: 30 - type: Transform -- uid: 18304 - type: WindowReinforcedDirectional - components: - - pos: -72.5,-33.5 - parent: 30 - type: Transform -- uid: 18305 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -72.5,-33.5 - parent: 30 - type: Transform -- uid: 18306 - type: WindowReinforcedDirectional - components: - - pos: -71.5,-32.5 - parent: 30 - type: Transform -- uid: 18307 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-32.5 - parent: 30 - type: Transform -- uid: 18308 - type: WindowReinforcedDirectional - components: - - pos: -70.5,-31.5 - parent: 30 - type: Transform -- uid: 18309 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-31.5 - parent: 30 - type: Transform -- uid: 18310 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-30.5 - parent: 30 - type: Transform -- uid: 18311 - type: WindowReinforcedDirectional - components: - - pos: -69.5,-29.5 - parent: 30 - type: Transform -- uid: 18312 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -69.5,-29.5 - parent: 30 - type: Transform -- uid: 18313 - type: WindowReinforcedDirectional - components: - - pos: -68.5,-28.5 - parent: 30 - type: Transform -- uid: 18314 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-28.5 - parent: 30 - type: Transform -- uid: 18315 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-27.5 - parent: 30 - type: Transform -- uid: 18316 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-26.5 - parent: 30 - type: Transform -- uid: 18317 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-25.5 - parent: 30 - type: Transform -- uid: 18318 - type: WindowReinforcedDirectional - components: - - pos: -67.5,-24.5 - parent: 30 - type: Transform -- uid: 18319 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-24.5 - parent: 30 - type: Transform -- uid: 18320 - type: WindowReinforcedDirectional - components: - - pos: -66.5,-23.5 - parent: 30 - type: Transform -- uid: 18321 - type: WindowReinforcedDirectional - components: - - pos: -65.5,-23.5 - parent: 30 - type: Transform -- uid: 18322 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-26.5 - parent: 30 - type: Transform -- uid: 18323 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-27.5 - parent: 30 - type: Transform -- uid: 18324 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-28.5 - parent: 30 - type: Transform -- uid: 18325 - type: WindowReinforcedDirectional - components: - - pos: -55.5,-28.5 - parent: 30 - type: Transform -- uid: 18326 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-29.5 - parent: 30 - type: Transform -- uid: 18327 - type: WindowReinforcedDirectional - components: - - pos: -54.5,-29.5 - parent: 30 - type: Transform -- uid: 18328 - type: WindowReinforcedDirectional - components: - - pos: -53.5,-31.5 - parent: 30 - type: Transform -- uid: 18329 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-31.5 - parent: 30 - type: Transform -- uid: 18330 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-30.5 - parent: 30 - type: Transform -- uid: 18331 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-32.5 - parent: 30 - type: Transform -- uid: 18332 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-34.5 - parent: 30 - type: Transform -- uid: 18333 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-33.5 - parent: 30 - type: Transform -- uid: 18334 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-37.5 - parent: 30 - type: Transform -- uid: 18335 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-36.5 - parent: 30 - type: Transform -- uid: 18336 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-35.5 - parent: 30 - type: Transform -- uid: 18337 - type: WindowReinforcedDirectional - components: - - pos: -51.5,-34.5 - parent: 30 - type: Transform -- uid: 18338 - type: WindowReinforcedDirectional - components: - - pos: -52.5,-32.5 - parent: 30 - type: Transform -- uid: 18339 - type: WindowReinforcedDirectional - components: - - pos: -50.5,-37.5 - parent: 30 - type: Transform -- uid: 18340 - type: Grille - components: - - pos: -52.5,-40.5 - parent: 30 - type: Transform -- uid: 18341 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-38.5 - parent: 30 - type: Transform -- uid: 18342 - type: CableHV - components: - - pos: -52.5,-43.5 - parent: 30 - type: Transform -- uid: 18343 - type: ReinforcedWindow - components: - - pos: -52.5,-38.5 - parent: 30 - type: Transform -- uid: 18344 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-40.5 - parent: 30 - type: Transform -- uid: 18345 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-49.5 - parent: 30 - type: Transform -- uid: 18346 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-48.5 - parent: 30 - type: Transform -- uid: 18347 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-47.5 - parent: 30 - type: Transform -- uid: 18348 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-46.5 - parent: 30 - type: Transform -- uid: 18349 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-45.5 - parent: 30 - type: Transform -- uid: 18350 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-44.5 - parent: 30 - type: Transform -- uid: 18351 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-43.5 - parent: 30 - type: Transform -- uid: 18352 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-42.5 - parent: 30 - type: Transform -- uid: 18353 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-41.5 - parent: 30 - type: Transform -- uid: 18354 - type: AsteroidRock - components: - - pos: -55.5,-69.5 - parent: 30 - type: Transform -- uid: 18355 - type: AsteroidRock - components: - - pos: -56.5,-69.5 - parent: 30 - type: Transform -- uid: 18356 - type: AsteroidRock - components: - - pos: -61.5,-69.5 - parent: 30 - type: Transform -- uid: 18357 - type: AsteroidRock - components: - - pos: -62.5,-69.5 - parent: 30 - type: Transform -- uid: 18358 - type: AsteroidRock - components: - - pos: -62.5,-68.5 - parent: 30 - type: Transform -- uid: 18359 - type: AsteroidRock - components: - - pos: -62.5,-67.5 - parent: 30 - type: Transform -- uid: 18360 - type: ClothingNeckCloakTrans - components: - - pos: -64.42011,-67.461174 - parent: 30 - type: Transform -- uid: 18361 - type: AsteroidRock - components: - - pos: -70.5,-65.5 - parent: 30 - type: Transform -- uid: 18362 - type: AsteroidRock - components: - - pos: -69.5,-65.5 - parent: 30 - type: Transform -- uid: 18363 - type: AsteroidRock - components: - - pos: -70.5,-66.5 - parent: 30 - type: Transform -- uid: 18364 - type: AsteroidRock - components: - - pos: -69.5,-66.5 - parent: 30 - type: Transform -- uid: 18365 - type: AsteroidRock - components: - - pos: -69.5,-67.5 - parent: 30 - type: Transform -- uid: 18366 - type: AsteroidRock - components: - - pos: -68.5,-67.5 - parent: 30 - type: Transform -- uid: 18367 - type: AsteroidRock - components: - - pos: -67.5,-67.5 - parent: 30 - type: Transform -- uid: 18368 - type: AsteroidRock - components: - - pos: -66.5,-67.5 - parent: 30 - type: Transform -- uid: 18369 - type: AsteroidRock - components: - - pos: -65.5,-67.5 - parent: 30 - type: Transform -- uid: 18370 - type: AsteroidRock - components: - - pos: -67.5,-68.5 - parent: 30 - type: Transform -- uid: 18371 - type: AsteroidRock - components: - - pos: -66.5,-68.5 - parent: 30 - type: Transform -- uid: 18372 - type: AsteroidRock - components: - - pos: -65.5,-68.5 - parent: 30 - type: Transform -- uid: 18373 - type: AsteroidRock - components: - - pos: -64.5,-68.5 - parent: 30 - type: Transform -- uid: 18374 - type: AsteroidRock - components: - - pos: -63.5,-68.5 - parent: 30 - type: Transform -- uid: 18375 - type: RandomInstruments - components: - - pos: -63.5,-67.5 - parent: 30 - type: Transform -- uid: 18376 - type: AsteroidRock - components: - - pos: -79.5,-65.5 - parent: 30 - type: Transform -- uid: 18377 - type: GasPipeStraight - components: - - pos: -45.5,-14.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18378 - type: GasPipeStraight - components: - - pos: -45.5,-15.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18379 - type: GasPipeStraight - components: - - pos: -45.5,-16.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18380 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18381 - type: GasPipeStraight - components: - - pos: -45.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18382 - type: GasPipeStraight - components: - - pos: -45.5,-19.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18383 - type: GasPipeStraight - components: - - pos: -45.5,-20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18384 - type: GasPipeStraight - components: - - pos: -45.5,-21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18385 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18386 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18387 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -61.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18388 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18389 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18390 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18391 - type: GasPipeTJunction - components: - - pos: -57.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18392 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18393 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18394 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18395 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18396 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18397 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -53.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18398 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18399 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18400 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18401 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18402 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18403 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18404 - type: GasPipeStraight - components: - - pos: -44.5,-12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18405 - type: GasPipeStraight - components: - - pos: -44.5,-14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18406 - type: GasPipeStraight - components: - - pos: -44.5,-15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18407 - type: GasPipeStraight - components: - - pos: -44.5,-16.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18408 - type: GasPipeStraight - components: - - pos: -44.5,-17.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18409 - type: GasPipeStraight - components: - - pos: -44.5,-18.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18410 - type: GasPipeStraight - components: - - pos: -44.5,-19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18411 - type: GasPipeStraight - components: - - pos: -44.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18412 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18413 - type: GasPipeStraight - components: - - pos: -44.5,-22.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18414 - type: GasPipeStraight - components: - - pos: -44.5,-23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18415 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18416 - type: GasPipeTJunction - components: - - pos: -61.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18417 - type: GasPipeStraight - components: - - pos: -62.5,-24.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18418 - type: GasPipeStraight - components: - - pos: -62.5,-23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18419 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18420 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18421 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -58.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18422 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18423 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18424 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18425 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18426 - type: GasPipeTJunction - components: - - pos: -51.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18427 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18428 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-22.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18429 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18430 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -49.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18431 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18432 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18433 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18434 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18435 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-17.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18436 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18437 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18438 - type: GasVentPump - components: - - pos: -58.5,-23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18439 - type: GasVentPump - components: - - pos: -49.5,-23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18440 - type: GasVentPump - components: - - pos: -53.5,-23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18441 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -57.5,-23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18442 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -51.5,-23.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18443 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18444 - type: GasPipeStraight - components: - - pos: -63.5,-23.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18445 - type: GasPipeStraight - components: - - pos: -63.5,-22.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18446 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18447 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -63.5,-24.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18448 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-20.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18449 - type: GasVentPump - components: - - pos: -63.5,-19.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18450 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-21.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18451 - type: GasVentScrubber - components: - - pos: -61.5,-21.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18452 - type: GasPipeStraight - components: - - pos: -62.5,-25.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18453 - type: GasPipeStraight - components: - - pos: -62.5,-26.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18454 - type: GasPipeStraight - components: - - pos: -62.5,-27.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18455 - type: GasPipeStraight - components: - - pos: -62.5,-28.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18456 - type: GasPipeStraight - components: - - pos: -62.5,-29.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18457 - type: GasPipeStraight - components: - - pos: -62.5,-30.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18458 - type: GasPipeStraight - components: - - pos: -62.5,-31.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18459 - type: GasPipeStraight - components: - - pos: -62.5,-32.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18460 - type: GasPipeStraight - components: - - pos: -62.5,-33.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18461 - type: GasPipeStraight - components: - - pos: -62.5,-34.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18462 - type: GasPipeStraight - components: - - pos: -62.5,-35.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18463 - type: GasPipeStraight - components: - - pos: -62.5,-36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18464 - type: GasPipeStraight - components: - - pos: -62.5,-37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18465 - type: GasPipeStraight - components: - - pos: -61.5,-37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18466 - type: GasPipeStraight - components: - - pos: -61.5,-36.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18467 - type: GasPipeStraight - components: - - pos: -61.5,-35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18468 - type: GasPipeStraight - components: - - pos: -61.5,-34.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18469 - type: GasPipeStraight - components: - - pos: -61.5,-33.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18470 - type: GasPipeStraight - components: - - pos: -61.5,-32.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18471 - type: GasPipeStraight - components: - - pos: -61.5,-31.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18472 - type: GasPipeStraight - components: - - pos: -61.5,-30.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18473 - type: GasPipeStraight - components: - - pos: -61.5,-29.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18474 - type: GasPipeStraight - components: - - pos: -61.5,-28.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18475 - type: GasPipeStraight - components: - - pos: -61.5,-27.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18476 - type: GasPipeStraight - components: - - pos: -61.5,-26.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18477 - type: GasPipeStraight - components: - - pos: -61.5,-25.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18478 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-38.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18479 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -61.5,-38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18480 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-38.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18481 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18482 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18483 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -64.5,-38.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18484 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-38.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18485 - type: GasPipeBend - components: - - pos: -58.5,-38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18486 - type: GasPipeStraight - components: - - pos: -65.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18487 - type: GasPipeStraight - components: - - pos: -65.5,-40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18488 - type: GasPipeStraight - components: - - pos: -65.5,-41.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18489 - type: GasPipeStraight - components: - - pos: -65.5,-42.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18490 - type: GasPipeStraight - components: - - pos: -65.5,-43.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18491 - type: GasPipeStraight - components: - - pos: -65.5,-44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18492 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -65.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18493 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -64.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18494 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18495 - type: GasPipeStraight - components: - - pos: -62.5,-46.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18496 - type: GasPipeStraight - components: - - pos: -62.5,-47.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18497 - type: GasPipeStraight - components: - - pos: -62.5,-48.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18498 - type: GasPipeBend - components: - - pos: -62.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18499 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18500 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18501 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -68.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18502 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18503 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18504 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -71.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18505 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -72.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18506 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18507 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -74.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18508 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -75.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18509 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -76.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18510 - type: GasPipeTJunction - components: - - pos: -77.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18511 - type: GasPipeStraight - components: - - pos: -77.5,-46.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18512 - type: GasPipeStraight - components: - - pos: -77.5,-47.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18513 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -78.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18514 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -78.5,-44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18515 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -78.5,-43.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18516 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -78.5,-42.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18517 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -78.5,-41.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18518 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -78.5,-40.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18519 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -77.5,-48.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18520 - type: GasVentScrubber - components: - - pos: -78.5,-39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18521 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18522 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -68.5,-43.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18523 - type: GasVentScrubber - components: - - pos: -68.5,-42.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18524 - type: GasVentScrubber - components: - - pos: -64.5,-44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18525 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -62.5,-49.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18526 - type: GasPipeTJunction - components: - - pos: -60.5,-48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18527 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -64.5,-49.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18528 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-49.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18529 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-49.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18530 - type: GasPipeStraight - components: - - pos: -67.5,-50.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18531 - type: GasPipeStraight - components: - - pos: -67.5,-51.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18532 - type: GasPipeStraight - components: - - pos: -67.5,-52.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18533 - type: GasPipeStraight - components: - - pos: -67.5,-53.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18534 - type: AirlockGlass - components: - - pos: -57.5,-54.5 - parent: 30 - type: Transform -- uid: 18535 - type: GasPipeStraight - components: - - pos: -67.5,-55.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18536 - type: GasPipeStraight - components: - - pos: -67.5,-56.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18537 - type: GasPipeStraight - components: - - pos: -67.5,-57.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18538 - type: GasPipeStraight - components: - - pos: -67.5,-58.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18539 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18540 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18541 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18542 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -60.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18543 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18544 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18545 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18546 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18547 - type: GasPipeTJunction - components: - - pos: -59.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18548 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18549 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,-58.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18550 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-53.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18551 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,-56.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18552 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,-55.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18553 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,-54.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18554 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-57.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18555 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,-51.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18556 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,-52.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18557 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,-50.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18558 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-49.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18559 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-49.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18560 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-49.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18561 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-49.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18562 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -61.5,-49.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18563 - type: GasPipeStraight - components: - - pos: -55.5,-59.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18564 - type: GasPipeStraight - components: - - pos: -55.5,-58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18565 - type: GasPipeStraight - components: - - pos: -55.5,-57.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18566 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-52.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18567 - type: GasPipeStraight - components: - - pos: -55.5,-55.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18568 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-54.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18569 - type: GasPipeStraight - components: - - pos: -55.5,-53.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18570 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-56.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18571 - type: GasPipeStraight - components: - - pos: -55.5,-51.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18572 - type: GasPipeStraight - components: - - pos: -55.5,-50.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18573 - type: GasPipeStraight - components: - - pos: -55.5,-49.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18574 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18575 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18576 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18577 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18578 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -63.5,-49.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18579 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18580 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18581 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18582 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18583 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18584 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18585 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -68.5,-49.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18586 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -68.5,-50.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18587 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -68.5,-51.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18588 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -68.5,-52.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18589 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -68.5,-53.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18590 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -68.5,-54.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18591 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -68.5,-55.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18592 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -68.5,-56.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18593 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -68.5,-57.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18594 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -68.5,-59.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18595 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -68.5,-58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18596 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18597 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18598 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18599 - type: GasPipeTJunction - components: - - pos: -64.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18600 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18601 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18602 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -61.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18603 - type: GasPipeTJunction - components: - - pos: -63.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18604 - type: GasPipeTJunction - components: - - pos: -58.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18605 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18606 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18607 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18608 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18609 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18610 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -67.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18611 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -68.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18612 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18613 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -67.5,-49.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18614 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-49.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18615 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18616 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -61.5,-48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18617 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -61.5,-47.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18618 - type: GasPipeTJunction - components: - - pos: -61.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18619 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18620 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18621 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18622 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,-45.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18623 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-44.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18624 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,-43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18625 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,-42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18626 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18627 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,-40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18628 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -58.5,-39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18629 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-44.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18630 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-44.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18631 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18632 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18633 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18634 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18635 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18636 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -67.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18637 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -68.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18638 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18639 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18640 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -71.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18641 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -72.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18642 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18643 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -74.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18644 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -75.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18645 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -76.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18646 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -77.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18647 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -78.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18648 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -79.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18649 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -79.5,-45.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18650 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -79.5,-44.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18651 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -79.5,-43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18652 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -79.5,-42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18653 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -79.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18654 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -79.5,-40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18655 - type: GasVentPump - components: - - pos: -79.5,-39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18656 - type: GasPipeStraight - components: - - pos: -75.5,-45.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18657 - type: GasPipeStraight - components: - - pos: -75.5,-44.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18658 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -75.5,-43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18659 - type: GasPipeStraight - components: - - pos: -75.5,-42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18660 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -76.5,-43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18661 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -77.5,-43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18662 - type: GasVentPump - components: - - pos: -77.5,-42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18663 - type: GasVentPump - components: - - pos: -75.5,-41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18664 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -67.5,-45.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18665 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -67.5,-44.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18666 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -67.5,-43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18667 - type: GasVentPump - components: - - pos: -68.5,-45.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18668 - type: GasVentPump - components: - - pos: -67.5,-42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18669 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,-48.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18670 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,-47.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18671 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -56.5,-46.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18672 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -55.5,-47.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18673 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -55.5,-46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18674 - type: GasVentPump - components: - - pos: -55.5,-45.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18675 - type: GasVentScrubber - components: - - pos: -56.5,-45.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18676 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-53.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18677 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-57.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18678 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-56.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18679 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-52.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18680 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-52.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18681 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-52.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18682 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-53.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18683 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-53.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18684 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-53.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18685 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-56.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18686 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-56.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18687 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-57.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18688 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-57.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18689 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-57.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18690 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -55.5,-54.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18691 - type: AirlockGlass - components: - - pos: -66.5,-54.5 - parent: 30 - type: Transform -- uid: 18692 - type: ShuttersRadiationOpen - components: - - pos: -0.5,-43.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver -- uid: 18693 - type: ShuttersRadiationOpen - components: - - pos: -3.5,-56.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver -- uid: 18694 - type: ShuttersRadiationOpen - components: - - pos: -11.5,-56.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver -- uid: 18695 - type: ShuttersRadiationOpen - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-54.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver -- uid: 18696 - type: ShuttersRadiationOpen - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-53.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver -- uid: 18697 - type: TintedWindow - components: - - pos: -47.5,-24.5 - parent: 30 - type: Transform -- uid: 18698 - type: TintedWindow - components: - - pos: -55.5,-22.5 - parent: 30 - type: Transform -- uid: 18699 - type: TintedWindow - components: - - pos: -55.5,-24.5 - parent: 30 - type: Transform -- uid: 18700 - type: TintedWindow - components: - - pos: -47.5,-22.5 - parent: 30 - type: Transform -- uid: 18701 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -69.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18702 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18703 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18704 - type: GasPipeTJunction - components: - - pos: -74.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18705 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18706 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -69.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18707 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18708 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18709 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -72.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18710 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -73.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18711 - type: GasPipeTJunction - components: - - pos: -75.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18712 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -75.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18713 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -76.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18714 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -77.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18715 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -78.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18716 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -79.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18717 - type: GasPipeTJunction - components: - - pos: -80.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18718 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -81.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18719 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -82.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18720 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -83.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18721 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -76.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18722 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -74.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18723 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18724 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -72.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18725 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -77.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18726 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -78.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18727 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18728 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -75.5,-60.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18729 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -80.5,-59.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18730 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -75.5,-61.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18731 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -80.5,-61.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18732 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -74.5,-61.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18733 - type: AirlockGlass - components: - - pos: -71.5,-60.5 - parent: 30 - type: Transform -- uid: 18734 - type: AirlockGlass - components: - - pos: -69.5,-58.5 - parent: 30 - type: Transform -- uid: 18735 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -68.5,-54.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18736 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,-54.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18737 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-54.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18738 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -71.5,-54.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18739 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -72.5,-54.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18740 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -73.5,-54.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18741 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -74.5,-54.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18742 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -75.5,-54.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18743 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -76.5,-54.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18744 - type: GasVentScrubber - components: - - pos: -76.5,-53.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18745 - type: GasVentScrubber - components: - - pos: -72.5,-53.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18746 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,-55.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18747 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-55.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18748 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -71.5,-55.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18749 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -72.5,-55.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18750 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-55.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18751 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -74.5,-55.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18752 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -75.5,-55.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18753 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -76.5,-55.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18754 - type: GasVentPump - components: - - pos: -71.5,-53.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18755 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -71.5,-54.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18756 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -63.5,-60.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18757 - type: GasVentPump - components: - - pos: -60.5,-59.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18758 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -60.5,-49.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18759 - type: GasVentScrubber - components: - - pos: -63.5,-48.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18760 - type: GasPipeStraight - components: - - pos: -59.5,-61.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18761 - type: GasPipeStraight - components: - - pos: -59.5,-62.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18762 - type: GasPipeStraight - components: - - pos: -59.5,-63.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18763 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-65.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18764 - type: GasPipeStraight - components: - - pos: -58.5,-60.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18765 - type: GasPipeStraight - components: - - pos: -58.5,-61.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18766 - type: GasPipeStraight - components: - - pos: -58.5,-62.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18767 - type: GasPipeStraight - components: - - pos: -58.5,-63.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18768 - type: GasPipeStraight - components: - - pos: -58.5,-64.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18769 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -59.5,-64.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18770 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-65.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18771 - type: GasPipeStraight - components: - - pos: -64.5,-61.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18772 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: -64.5,-62.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18773 - type: GasPipeStraight - components: - - pos: -64.5,-63.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18774 - type: SMESBasic - components: - - pos: -69.5,-63.5 - parent: 30 - type: Transform -- uid: 18775 - type: SMESBasic - components: - - pos: -69.5,-62.5 - parent: 30 - type: Transform -- uid: 18776 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -64.5,-65.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 18777 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -65.5,-65.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 18778 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -66.5,-65.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 18779 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-64.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18780 - type: GasPipeTJunction - components: - - pos: -65.5,-64.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18781 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-64.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18782 - type: AirCanister - components: - - pos: -66.5,-65.5 - parent: 30 - type: Transform -- uid: 18783 - type: AirCanister - components: - - pos: -65.5,-65.5 - parent: 30 - type: Transform -- uid: 18784 - type: AirCanister - components: - - pos: -64.5,-65.5 - parent: 30 - type: Transform -- uid: 18785 - type: ClosetEmergencyFilledRandom - components: - - pos: -67.5,-65.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18786 - type: WaterTankFull - components: - - pos: -62.5,-65.5 - parent: 30 - type: Transform -- uid: 18787 - type: WeldingFuelTankFull - components: - - pos: -63.5,-65.5 - parent: 30 - type: Transform -- uid: 18788 - type: BoxLightbulb - components: - - pos: -63.476974,-62.485996 - parent: 30 - type: Transform -- uid: 18789 - type: PartRodMetal - components: - - pos: -62.4926,-63.50162 - parent: 30 - type: Transform -- uid: 18790 - type: SheetGlass - components: - - pos: -62.64885,-62.517246 - parent: 30 - type: Transform -- uid: 18791 - type: SheetSteel - components: - - pos: -62.6176,-62.579746 - parent: 30 - type: Transform -- uid: 18792 - type: CableApcStack - components: - - pos: -66.4926,-62.50162 - parent: 30 - type: Transform -- uid: 18793 - type: ToolboxMechanicalFilled - components: - - pos: -67.52385,-62.454746 - parent: 30 - type: Transform -- uid: 18794 - type: AirlockEngineeringLocked - components: - - pos: -64.5,-61.5 - parent: 30 - type: Transform -- uid: 18795 - type: FireExtinguisher - components: - - pos: -62.63935,-64.45475 - parent: 30 - type: Transform -- uid: 18796 - type: CableHV - components: - - pos: -69.5,-63.5 - parent: 30 - type: Transform -- uid: 18797 - type: CableHV - components: - - pos: -68.5,-62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18798 - type: CableHV - components: - - pos: -69.5,-62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18799 - type: CableHV - components: - - pos: -67.5,-62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18800 - type: CableHV - components: - - pos: -65.5,-62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18801 - type: CableHV - components: - - pos: -64.5,-62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18802 - type: CableHV - components: - - pos: -64.5,-61.5 - parent: 30 - type: Transform -- uid: 18803 - type: CableHV - components: - - pos: -64.5,-60.5 - parent: 30 - type: Transform -- uid: 18804 - type: CableHV - components: - - pos: -64.5,-59.5 - parent: 30 - type: Transform -- uid: 18805 - type: CableHV - components: - - pos: -63.5,-59.5 - parent: 30 - type: Transform -- uid: 18806 - type: CableHV - components: - - pos: -62.5,-59.5 - parent: 30 - type: Transform -- uid: 18807 - type: CableHV - components: - - pos: -61.5,-59.5 - parent: 30 - type: Transform -- uid: 18808 - type: CableHV - components: - - pos: -60.5,-59.5 - parent: 30 - type: Transform -- uid: 18809 - type: CableHV - components: - - pos: -59.5,-59.5 - parent: 30 - type: Transform -- uid: 18810 - type: CableHV - components: - - pos: -58.5,-59.5 - parent: 30 - type: Transform -- uid: 18811 - type: CableHV - components: - - pos: -57.5,-59.5 - parent: 30 - type: Transform -- uid: 18812 - type: CableHV - components: - - pos: -56.5,-59.5 - parent: 30 - type: Transform -- uid: 18813 - type: SignLibrary - components: - - pos: -57.5,-61.5 - parent: 30 - type: Transform -- uid: 18814 - type: AirlockGlass - components: - - pos: -59.5,-61.5 - parent: 30 - type: Transform -- uid: 18815 - type: AirlockGlass - components: - - pos: -58.5,-61.5 - parent: 30 - type: Transform -- uid: 18816 - type: Grille - components: - - pos: -75.5,-67.5 - parent: 30 - type: Transform -- uid: 18817 - type: Grille - components: - - pos: -74.5,-67.5 - parent: 30 - type: Transform -- uid: 18819 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -72.5,-61.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18821 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -77.5,-64.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18822 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -81.5,-59.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18823 - type: PoweredSmallLight - components: - - pos: -83.5,-60.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18824 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -79.5,-53.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18825 - type: PoweredSmallLight - components: - - pos: -77.5,-51.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18826 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -77.5,-56.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18827 - type: Bookshelf - components: - - pos: -54.5,-62.5 - parent: 30 - type: Transform -- uid: 18828 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -73.5,-52.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18829 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-53.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18830 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -75.5,-53.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18832 - type: PoweredSmallLight - components: - - pos: -60.5,-48.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18834 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-57.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18836 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-51.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18837 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-60.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18839 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-55.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18841 - type: PoweredSmallLight - components: - - pos: -63.5,-51.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18843 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-53.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18845 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -60.5,-57.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18847 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-55.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18848 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-57.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18849 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-57.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18850 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-53.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18851 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-53.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18852 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-51.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18853 - type: PoweredSmallLight - components: - - pos: -53.5,-48.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18854 - type: PoweredSmallLight - components: - - pos: -63.5,-62.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18855 - type: PoweredSmallLight - components: - - pos: -66.5,-62.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18856 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-66.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18857 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-67.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18858 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-63.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18859 - type: CableMV - components: - - pos: -52.5,-59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18860 - type: CableMV - components: - - pos: -53.5,-59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18861 - type: CableMV - components: - - pos: -54.5,-59.5 - parent: 30 - type: Transform -- uid: 18862 - type: CableMV - components: - - pos: -55.5,-59.5 - parent: 30 - type: Transform -- uid: 18863 - type: CableMV - components: - - pos: -56.5,-59.5 - parent: 30 - type: Transform -- uid: 18864 - type: CableMV - components: - - pos: -57.5,-59.5 - parent: 30 - type: Transform -- uid: 18865 - type: CableMV - components: - - pos: -58.5,-59.5 - parent: 30 - type: Transform -- uid: 18866 - type: CableMV - components: - - pos: -59.5,-59.5 - parent: 30 - type: Transform -- uid: 18867 - type: CableMV - components: - - pos: -60.5,-59.5 - parent: 30 - type: Transform -- uid: 18868 - type: CableMV - components: - - pos: -61.5,-59.5 - parent: 30 - type: Transform -- uid: 18869 - type: CableMV - components: - - pos: -62.5,-59.5 - parent: 30 - type: Transform -- uid: 18870 - type: CableMV - components: - - pos: -63.5,-59.5 - parent: 30 - type: Transform -- uid: 18871 - type: CableMV - components: - - pos: -64.5,-59.5 - parent: 30 - type: Transform -- uid: 18872 - type: CableMV - components: - - pos: -65.5,-59.5 - parent: 30 - type: Transform -- uid: 18873 - type: CableMV - components: - - pos: -66.5,-59.5 - parent: 30 - type: Transform -- uid: 18874 - type: CableMV - components: - - pos: -66.5,-59.5 - parent: 30 - type: Transform -- uid: 18875 - type: CableMV - components: - - pos: -67.5,-59.5 - parent: 30 - type: Transform -- uid: 18876 - type: CableMV - components: - - pos: -68.5,-59.5 - parent: 30 - type: Transform -- uid: 18877 - type: CableMV - components: - - pos: -68.5,-58.5 - parent: 30 - type: Transform -- uid: 18878 - type: CableMV - components: - - pos: -69.5,-58.5 - parent: 30 - type: Transform -- uid: 18879 - type: CableMV - components: - - pos: -70.5,-58.5 - parent: 30 - type: Transform -- uid: 18880 - type: CableMV - components: - - pos: -70.5,-59.5 - parent: 30 - type: Transform -- uid: 18881 - type: CableMV - components: - - pos: -70.5,-60.5 - parent: 30 - type: Transform -- uid: 18882 - type: CableMV - components: - - pos: -71.5,-60.5 - parent: 30 - type: Transform -- uid: 18883 - type: CableMV - components: - - pos: -72.5,-60.5 - parent: 30 - type: Transform -- uid: 18884 - type: CableMV - components: - - pos: -73.5,-60.5 - parent: 30 - type: Transform -- uid: 18885 - type: CableMV - components: - - pos: -74.5,-60.5 - parent: 30 - type: Transform -- uid: 18886 - type: CableMV - components: - - pos: -75.5,-60.5 - parent: 30 - type: Transform -- uid: 18887 - type: CableMV - components: - - pos: -76.5,-60.5 - parent: 30 - type: Transform -- uid: 18888 - type: CableMV - components: - - pos: -77.5,-60.5 - parent: 30 - type: Transform -- uid: 18889 - type: CableMV - components: - - pos: -78.5,-60.5 - parent: 30 - type: Transform -- uid: 18890 - type: CableMV - components: - - pos: -79.5,-60.5 - parent: 30 - type: Transform -- uid: 18891 - type: CableMV - components: - - pos: -79.5,-59.5 - parent: 30 - type: Transform -- uid: 18892 - type: CableMV - components: - - pos: -79.5,-58.5 - parent: 30 - type: Transform -- uid: 18893 - type: CableMV - components: - - pos: -68.5,-57.5 - parent: 30 - type: Transform -- uid: 18894 - type: CableMV - components: - - pos: -68.5,-56.5 - parent: 30 - type: Transform -- uid: 18895 - type: CableMV - components: - - pos: -68.5,-54.5 - parent: 30 - type: Transform -- uid: 18896 - type: CableMV - components: - - pos: -68.5,-55.5 - parent: 30 - type: Transform -- uid: 18897 - type: CableMV - components: - - pos: -68.5,-53.5 - parent: 30 - type: Transform -- uid: 18898 - type: CableMV - components: - - pos: -68.5,-52.5 - parent: 30 - type: Transform -- uid: 18899 - type: CableMV - components: - - pos: -68.5,-51.5 - parent: 30 - type: Transform -- uid: 18900 - type: CableMV - components: - - pos: -68.5,-50.5 - parent: 30 - type: Transform -- uid: 18901 - type: CableMV - components: - - pos: -68.5,-49.5 - parent: 30 - type: Transform -- uid: 18902 - type: CableMV - components: - - pos: -68.5,-48.5 - parent: 30 - type: Transform -- uid: 18903 - type: CableMV - components: - - pos: -67.5,-48.5 - parent: 30 - type: Transform -- uid: 18904 - type: CableMV - components: - - pos: -65.5,-48.5 - parent: 30 - type: Transform -- uid: 18905 - type: CableMV - components: - - pos: -66.5,-48.5 - parent: 30 - type: Transform -- uid: 18906 - type: CableMV - components: - - pos: -65.5,-47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18907 - type: CableMV - components: - - pos: -67.5,-47.5 - parent: 30 - type: Transform -- uid: 18908 - type: CableMV - components: - - pos: -67.5,-46.5 - parent: 30 - type: Transform -- uid: 18909 - type: CableMV - components: - - pos: -67.5,-45.5 - parent: 30 - type: Transform -- uid: 18910 - type: CableMV - components: - - pos: -68.5,-45.5 - parent: 30 - type: Transform -- uid: 18911 - type: CableMV - components: - - pos: -69.5,-45.5 - parent: 30 - type: Transform -- uid: 18912 - type: CableMV - components: - - pos: -70.5,-45.5 - parent: 30 - type: Transform -- uid: 18913 - type: CableMV - components: - - pos: -71.5,-45.5 - parent: 30 - type: Transform -- uid: 18914 - type: CableMV - components: - - pos: -72.5,-45.5 - parent: 30 - type: Transform -- uid: 18915 - type: CableMV - components: - - pos: -73.5,-45.5 - parent: 30 - type: Transform -- uid: 18916 - type: CableMV - components: - - pos: -74.5,-45.5 - parent: 30 - type: Transform -- uid: 18917 - type: CableMV - components: - - pos: -75.5,-45.5 - parent: 30 - type: Transform -- uid: 18918 - type: CableMV - components: - - pos: -76.5,-45.5 - parent: 30 - type: Transform -- uid: 18919 - type: CableMV - components: - - pos: -76.5,-44.5 - parent: 30 - type: Transform -- uid: 18920 - type: CableMV - components: - - pos: -76.5,-43.5 - parent: 30 - type: Transform -- uid: 18921 - type: CableMV - components: - - pos: -76.5,-42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18922 - type: SubstationBasic - components: - - name: Chapelroid Bridge Substation - type: MetaData - - pos: -42.5,-24.5 - parent: 30 - type: Transform -- uid: 18923 - type: WallReinforced - components: - - pos: -41.5,-23.5 - parent: 30 - type: Transform -- uid: 18924 - type: WallReinforced - components: - - pos: -40.5,-23.5 - parent: 30 - type: Transform -- uid: 18925 - type: WallReinforced - components: - - pos: -39.5,-23.5 - parent: 30 - type: Transform -- uid: 18926 - type: CableHV - components: - - pos: -43.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18927 - type: AirlockEngineeringLocked - components: - - pos: -39.5,-24.5 - parent: 30 - type: Transform -- uid: 18928 - type: CableHV - components: - - pos: -37.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18929 - type: CableHV - components: - - pos: -38.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18930 - type: CableHV - components: - - pos: -39.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18931 - type: CableHV - components: - - pos: -40.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18932 - type: CableHV - components: - - pos: -41.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18933 - type: CableHV - components: - - pos: -45.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18934 - type: CableHV - components: - - pos: -45.5,-25.5 - parent: 30 - type: Transform -- uid: 18935 - type: WallReinforced - components: - - pos: -43.5,-24.5 - parent: 30 - type: Transform -- uid: 18936 - type: CableMV - components: - - pos: -41.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18937 - type: CableHV - components: - - pos: -44.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18938 - type: CableHV - components: - - pos: -45.5,-26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18939 - type: CableHV - components: - - pos: -45.5,-24.5 - parent: 30 - type: Transform -- uid: 18940 - type: CableMV - components: - - pos: -44.5,-23.5 - parent: 30 - type: Transform -- uid: 18941 - type: CableMV - components: - - pos: -44.5,-22.5 - parent: 30 - type: Transform -- uid: 18942 - type: CableMV - components: - - pos: -43.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18943 - type: CableMV - components: - - pos: -45.5,-23.5 - parent: 30 - type: Transform -- uid: 18944 - type: CableMV - components: - - pos: -46.5,-23.5 - parent: 30 - type: Transform -- uid: 18945 - type: CableMV - components: - - pos: -47.5,-23.5 - parent: 30 - type: Transform -- uid: 18946 - type: CableMV - components: - - pos: -48.5,-23.5 - parent: 30 - type: Transform -- uid: 18947 - type: CableMV - components: - - pos: -49.5,-23.5 - parent: 30 - type: Transform -- uid: 18948 - type: CableMV - components: - - pos: -50.5,-23.5 - parent: 30 - type: Transform -- uid: 18949 - type: CableMV - components: - - pos: -51.5,-23.5 - parent: 30 - type: Transform -- uid: 18950 - type: CableMV - components: - - pos: -52.5,-23.5 - parent: 30 - type: Transform -- uid: 18951 - type: CableMV - components: - - pos: -53.5,-23.5 - parent: 30 - type: Transform -- uid: 18952 - type: CableMV - components: - - pos: -54.5,-23.5 - parent: 30 - type: Transform -- uid: 18953 - type: CableMV - components: - - pos: -55.5,-23.5 - parent: 30 - type: Transform -- uid: 18954 - type: CableMV - components: - - pos: -56.5,-23.5 - parent: 30 - type: Transform -- uid: 18955 - type: CableMV - components: - - pos: -57.5,-23.5 - parent: 30 - type: Transform -- uid: 18956 - type: CableMV - components: - - pos: -58.5,-23.5 - parent: 30 - type: Transform -- uid: 18957 - type: CableMV - components: - - pos: -58.5,-22.5 - parent: 30 - type: Transform -- uid: 18958 - type: CableMV - components: - - pos: -59.5,-22.5 - parent: 30 - type: Transform -- uid: 18959 - type: CableMV - components: - - pos: -60.5,-22.5 - parent: 30 - type: Transform -- uid: 18960 - type: CableMV - components: - - pos: -61.5,-22.5 - parent: 30 - type: Transform -- uid: 18961 - type: CableMV - components: - - pos: -61.5,-23.5 - parent: 30 - type: Transform -- uid: 18962 - type: CableMV - components: - - pos: -61.5,-24.5 - parent: 30 - type: Transform -- uid: 18963 - type: CableMV - components: - - pos: -61.5,-25.5 - parent: 30 - type: Transform -- uid: 18964 - type: CableMV - components: - - pos: -61.5,-26.5 - parent: 30 - type: Transform -- uid: 18965 - type: CableMV - components: - - pos: -61.5,-27.5 - parent: 30 - type: Transform -- uid: 18966 - type: CableMV - components: - - pos: -59.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18967 - type: CableMV - components: - - pos: -59.5,-27.5 - parent: 30 - type: Transform -- uid: 18968 - type: CableMV - components: - - pos: -60.5,-28.5 - parent: 30 - type: Transform -- uid: 18969 - type: CableMV - components: - - pos: -59.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18970 - type: CableApcExtension - components: - - pos: -43.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18971 - type: CableApcExtension - components: - - pos: -44.5,-22.5 - parent: 30 - type: Transform -- uid: 18972 - type: CableApcExtension - components: - - pos: -45.5,-22.5 - parent: 30 - type: Transform -- uid: 18973 - type: CableApcExtension - components: - - pos: -45.5,-23.5 - parent: 30 - type: Transform -- uid: 18974 - type: CableApcExtension - components: - - pos: -46.5,-23.5 - parent: 30 - type: Transform -- uid: 18975 - type: CableApcExtension - components: - - pos: -47.5,-23.5 - parent: 30 - type: Transform -- uid: 18976 - type: CableApcExtension - components: - - pos: -48.5,-23.5 - parent: 30 - type: Transform -- uid: 18977 - type: CableApcExtension - components: - - pos: -49.5,-23.5 - parent: 30 - type: Transform -- uid: 18978 - type: CableApcExtension - components: - - pos: -50.5,-23.5 - parent: 30 - type: Transform -- uid: 18979 - type: CableApcExtension - components: - - pos: -51.5,-23.5 - parent: 30 - type: Transform -- uid: 18980 - type: CableApcExtension - components: - - pos: -52.5,-23.5 - parent: 30 - type: Transform -- uid: 18981 - type: CableApcExtension - components: - - pos: -53.5,-23.5 - parent: 30 - type: Transform -- uid: 18982 - type: CableApcExtension - components: - - pos: -54.5,-23.5 - parent: 30 - type: Transform -- uid: 18983 - type: CableApcExtension - components: - - pos: -45.5,-21.5 - parent: 30 - type: Transform -- uid: 18984 - type: CableApcExtension - components: - - pos: -45.5,-20.5 - parent: 30 - type: Transform -- uid: 18985 - type: CableApcExtension - components: - - pos: -45.5,-19.5 - parent: 30 - type: Transform -- uid: 18986 - type: CableApcExtension - components: - - pos: -45.5,-18.5 - parent: 30 - type: Transform -- uid: 18987 - type: CableApcExtension - components: - - pos: -45.5,-17.5 - parent: 30 - type: Transform -- uid: 18988 - type: CableApcExtension - components: - - pos: -45.5,-16.5 - parent: 30 - type: Transform -- uid: 18989 - type: CableApcExtension - components: - - pos: -45.5,-15.5 - parent: 30 - type: Transform -- uid: 18990 - type: CableApcExtension - components: - - pos: -45.5,-14.5 - parent: 30 - type: Transform -- uid: 18991 - type: CableApcExtension - components: - - pos: -42.5,-22.5 - parent: 30 - type: Transform -- uid: 18992 - type: CableApcExtension - components: - - pos: -41.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18993 - type: CableApcExtension - components: - - pos: -40.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18994 - type: CableApcExtension - components: - - pos: -39.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18995 - type: CableApcExtension - components: - - pos: -38.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18996 - type: CableApcExtension - components: - - pos: -38.5,-23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18997 - type: CableApcExtension - components: - - pos: -38.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18998 - type: CableApcExtension - components: - - pos: -37.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18999 - type: CableApcExtension - components: - - pos: -36.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19000 - type: CableApcExtension - components: - - pos: -36.5,-23.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19001 - type: CableApcExtension - components: - - pos: -36.5,-22.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19002 - type: CableApcExtension - components: - - pos: -36.5,-21.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19003 - type: CableApcExtension - components: - - pos: -36.5,-20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19004 - type: CableApcExtension - components: - - pos: -36.5,-19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19005 - type: CableApcExtension - components: - - pos: -36.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19006 - type: CableApcExtension - components: - - pos: -36.5,-17.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19007 - type: CableApcExtension - components: - - pos: -36.5,-16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19008 - type: CableApcExtension - components: - - pos: -37.5,-16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19009 - type: CableApcExtension - components: - - pos: -38.5,-16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19010 - type: CableApcExtension - components: - - pos: -39.5,-16.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19011 - type: CableApcExtension - components: - - pos: -36.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19012 - type: CableApcExtension - components: - - pos: -36.5,-26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19013 - type: CableApcExtension - components: - - pos: -36.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19014 - type: CableApcExtension - components: - - pos: -36.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19015 - type: CableApcExtension - components: - - pos: -35.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19016 - type: CableApcExtension - components: - - pos: -34.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19017 - type: CableApcExtension - components: - - pos: -33.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19018 - type: CableApcExtension - components: - - pos: -32.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19019 - type: CableApcExtension - components: - - pos: -31.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19020 - type: CableApcExtension - components: - - pos: -30.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19021 - type: CableApcExtension - components: - - pos: -29.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19022 - type: CableApcExtension - components: - - pos: -29.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19023 - type: CableApcExtension - components: - - pos: -29.5,-30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19024 - type: CableApcExtension - components: - - pos: -29.5,-31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19025 - type: CableApcExtension - components: - - pos: -28.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19026 - type: CableApcExtension - components: - - pos: -27.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19027 - type: CableApcExtension - components: - - pos: -26.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19028 - type: CableApcExtension - components: - - pos: -25.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19029 - type: CableApcExtension - components: - - pos: -24.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19030 - type: CableApcExtension - components: - - pos: -24.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19031 - type: CableApcExtension - components: - - pos: -24.5,-26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19032 - type: CableApcExtension - components: - - pos: -59.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19033 - type: CableMV - components: - - pos: -61.5,-28.5 - parent: 30 - type: Transform -- uid: 19034 - type: CableMV - components: - - pos: -59.5,-28.5 - parent: 30 - type: Transform -- uid: 19035 - type: CableApcExtension - components: - - pos: -59.5,-27.5 - parent: 30 - type: Transform -- uid: 19036 - type: CableApcExtension - components: - - pos: -59.5,-26.5 - parent: 30 - type: Transform -- uid: 19037 - type: CableApcExtension - components: - - pos: -61.5,-26.5 - parent: 30 - type: Transform -- uid: 19038 - type: CableApcExtension - components: - - pos: -61.5,-25.5 - parent: 30 - type: Transform -- uid: 19039 - type: CableApcExtension - components: - - pos: -61.5,-24.5 - parent: 30 - type: Transform -- uid: 19040 - type: CableApcExtension - components: - - pos: -61.5,-23.5 - parent: 30 - type: Transform -- uid: 19041 - type: CableApcExtension - components: - - pos: -61.5,-22.5 - parent: 30 - type: Transform -- uid: 19042 - type: CableApcExtension - components: - - pos: -62.5,-22.5 - parent: 30 - type: Transform -- uid: 19043 - type: CableApcExtension - components: - - pos: -63.5,-22.5 - parent: 30 - type: Transform -- uid: 19044 - type: CableApcExtension - components: - - pos: -63.5,-21.5 - parent: 30 - type: Transform -- uid: 19045 - type: CableApcExtension - components: - - pos: -63.5,-20.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19046 - type: CableApcExtension - components: - - pos: -63.5,-19.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19047 - type: CableApcExtension - components: - - pos: -63.5,-23.5 - parent: 30 - type: Transform -- uid: 19048 - type: CableApcExtension - components: - - pos: -63.5,-24.5 - parent: 30 - type: Transform -- uid: 19049 - type: CableApcExtension - components: - - pos: -60.5,-22.5 - parent: 30 - type: Transform -- uid: 19050 - type: CableApcExtension - components: - - pos: -59.5,-22.5 - parent: 30 - type: Transform -- uid: 19051 - type: CableApcExtension - components: - - pos: -58.5,-22.5 - parent: 30 - type: Transform -- uid: 19052 - type: CableApcExtension - components: - - pos: -56.5,-22.5 - parent: 30 - type: Transform -- uid: 19053 - type: CableApcExtension - components: - - pos: -57.5,-22.5 - parent: 30 - type: Transform -- uid: 19054 - type: CableApcExtension - components: - - pos: -57.5,-23.5 - parent: 30 - type: Transform -- uid: 19055 - type: CableApcExtension - components: - - pos: -57.5,-24.5 - parent: 30 - type: Transform -- uid: 19056 - type: CableMV - components: - - pos: -59.5,-26.5 - parent: 30 - type: Transform -- uid: 19057 - type: CableApcExtension - components: - - pos: -60.5,-28.5 - parent: 30 - type: Transform -- uid: 19058 - type: CableApcExtension - components: - - pos: -59.5,-28.5 - parent: 30 - type: Transform -- uid: 19059 - type: CableApcExtension - components: - - pos: -61.5,-28.5 - parent: 30 - type: Transform -- uid: 19060 - type: CableApcExtension - components: - - pos: -62.5,-28.5 - parent: 30 - type: Transform -- uid: 19061 - type: CableApcExtension - components: - - pos: -61.5,-29.5 - parent: 30 - type: Transform -- uid: 19062 - type: CableApcExtension - components: - - pos: -52.5,-40.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19063 - type: CableApcExtension - components: - - pos: -60.5,-34.5 - parent: 30 - type: Transform -- uid: 19064 - type: CableApcExtension - components: - - pos: -51.5,-40.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19065 - type: CableApcExtension - components: - - pos: -74.5,-41.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19066 - type: ReinforcedWindow - components: - - pos: -51.5,-40.5 - parent: 30 - type: Transform -- uid: 19067 - type: Grille - components: - - pos: -51.5,-40.5 - parent: 30 - type: Transform -- uid: 19068 - type: Table - components: - - pos: -51.5,-46.5 - parent: 30 - type: Transform -- uid: 19069 - type: Chair - components: - - pos: -51.5,-45.5 - parent: 30 - type: Transform -- uid: 19070 - type: CableApcExtension - components: - - pos: -61.5,-35.5 - parent: 30 - type: Transform -- uid: 19071 - type: CableApcExtension - components: - - pos: -61.5,-34.5 - parent: 30 - type: Transform -- uid: 19072 - type: CableApcExtension - components: - - pos: -57.5,-34.5 - parent: 30 - type: Transform -- uid: 19073 - type: CableApcExtension - components: - - pos: -58.5,-34.5 - parent: 30 - type: Transform -- uid: 19074 - type: CableApcExtension - components: - - pos: -59.5,-34.5 - parent: 30 - type: Transform -- uid: 19075 - type: CableApcExtension - components: - - pos: -55.5,-35.5 - parent: 30 - type: Transform -- uid: 19076 - type: CableApcExtension - components: - - pos: -54.5,-36.5 - parent: 30 - type: Transform -- uid: 19077 - type: CableApcExtension - components: - - pos: -54.5,-35.5 - parent: 30 - type: Transform -- uid: 19078 - type: CableApcExtension - components: - - pos: -54.5,-38.5 - parent: 30 - type: Transform -- uid: 19079 - type: CableApcExtension - components: - - pos: -54.5,-40.5 - parent: 30 - type: Transform -- uid: 19080 - type: CableApcExtension - components: - - pos: -54.5,-41.5 - parent: 30 - type: Transform -- uid: 19081 - type: CableApcExtension - components: - - pos: -53.5,-38.5 - parent: 30 - type: Transform -- uid: 19082 - type: CableApcExtension - components: - - pos: -53.5,-39.5 - parent: 30 - type: Transform -- uid: 19083 - type: CableApcExtension - components: - - pos: -53.5,-40.5 - parent: 30 - type: Transform -- uid: 19084 - type: CableApcExtension - components: - - pos: -51.5,-43.5 - parent: 30 - type: Transform -- uid: 19085 - type: CableApcExtension - components: - - pos: -52.5,-43.5 - parent: 30 - type: Transform -- uid: 19086 - type: CableApcExtension - components: - - pos: -53.5,-43.5 - parent: 30 - type: Transform -- uid: 19087 - type: CableHV - components: - - pos: -53.5,-39.5 - parent: 30 - type: Transform -- uid: 19088 - type: CableHV - components: - - pos: -54.5,-40.5 - parent: 30 - type: Transform -- uid: 19089 - type: CableHV - components: - - pos: -54.5,-41.5 - parent: 30 - type: Transform -- uid: 19090 - type: CableHV - components: - - pos: -54.5,-42.5 - parent: 30 - type: Transform -- uid: 19091 - type: CableApcExtension - components: - - pos: -50.5,-43.5 - parent: 30 - type: Transform -- uid: 19092 - type: CableApcExtension - components: - - pos: -50.5,-44.5 - parent: 30 - type: Transform -- uid: 19093 - type: CableApcExtension - components: - - pos: -50.5,-45.5 - parent: 30 - type: Transform -- uid: 19094 - type: CableApcExtension - components: - - pos: -50.5,-46.5 - parent: 30 - type: Transform -- uid: 19095 - type: CableApcExtension - components: - - pos: -50.5,-47.5 - parent: 30 - type: Transform -- uid: 19096 - type: CableApcExtension - components: - - pos: -50.5,-48.5 - parent: 30 - type: Transform -- uid: 19097 - type: CableApcExtension - components: - - pos: -50.5,-49.5 - parent: 30 - type: Transform -- uid: 19098 - type: CableApcExtension - components: - - pos: -51.5,-49.5 - parent: 30 - type: Transform -- uid: 19099 - type: CableApcExtension - components: - - pos: -56.5,-35.5 - parent: 30 - type: Transform -- uid: 19100 - type: CableApcExtension - components: - - pos: -56.5,-34.5 - parent: 30 - type: Transform -- uid: 19101 - type: CableApcExtension - components: - - pos: -54.5,-37.5 - parent: 30 - type: Transform -- uid: 19102 - type: CableApcExtension - components: - - pos: -59.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19103 - type: CableApcExtension - components: - - pos: -50.5,-40.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19104 - type: CableApcExtension - components: - - pos: -48.5,-43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19105 - type: CableApcExtension - components: - - pos: -48.5,-44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19106 - type: CableApcExtension - components: - - pos: -48.5,-46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19107 - type: CableApcExtension - components: - - pos: -48.5,-45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19108 - type: CableApcExtension - components: - - pos: -48.5,-47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19109 - type: CableApcExtension - components: - - pos: -48.5,-48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19110 - type: CableApcExtension - components: - - pos: -48.5,-49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19111 - type: CableApcExtension - components: - - pos: -52.5,-38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19112 - type: CableApcExtension - components: - - pos: -51.5,-38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19113 - type: CableApcExtension - components: - - pos: -49.5,-40.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19114 - type: CableApcExtension - components: - - pos: -48.5,-40.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19115 - type: CableApcExtension - components: - - pos: -48.5,-41.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19116 - type: CableApcExtension - components: - - pos: -48.5,-42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19117 - type: CableApcExtension - components: - - pos: -50.5,-38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19118 - type: CableApcExtension - components: - - pos: -51.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19119 - type: CableApcExtension - components: - - pos: -51.5,-36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19120 - type: CableApcExtension - components: - - pos: -51.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19121 - type: CableApcExtension - components: - - pos: -52.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19122 - type: CableApcExtension - components: - - pos: -52.5,-33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19123 - type: CableApcExtension - components: - - pos: -54.5,-32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19124 - type: CableApcExtension - components: - - pos: -54.5,-31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19125 - type: CableApcExtension - components: - - pos: -67.5,-41.5 - parent: 30 - type: Transform -- uid: 19126 - type: CableApcExtension - components: - - pos: -67.5,-40.5 - parent: 30 - type: Transform -- uid: 19127 - type: CableApcExtension - components: - - pos: -66.5,-40.5 - parent: 30 - type: Transform -- uid: 19128 - type: CableApcExtension - components: - - pos: -65.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19129 - type: CableApcExtension - components: - - pos: -64.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19130 - type: CableApcExtension - components: - - pos: -66.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19131 - type: CableApcExtension - components: - - pos: -66.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19132 - type: CableApcExtension - components: - - pos: -67.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19133 - type: CableApcExtension - components: - - pos: -67.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19134 - type: CableApcExtension - components: - - pos: -67.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19135 - type: CableApcExtension - components: - - pos: -67.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19136 - type: CableApcExtension - components: - - pos: -67.5,-26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19137 - type: CableApcExtension - components: - - pos: -52.5,-34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19138 - type: CableApcExtension - components: - - pos: -53.5,-33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19139 - type: CableApcExtension - components: - - pos: -53.5,-32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19140 - type: CableApcExtension - components: - - pos: -55.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19141 - type: CableApcExtension - components: - - pos: -56.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19142 - type: CableApcExtension - components: - - pos: -56.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19143 - type: CableApcExtension - components: - - pos: -56.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19144 - type: CableApcExtension - components: - - pos: -56.5,-26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19145 - type: CableApcExtension - components: - - pos: -69.5,-40.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19146 - type: CableApcExtension - components: - - pos: -54.5,-30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19147 - type: CableApcExtension - components: - - pos: -55.5,-30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19148 - type: CableApcExtension - components: - - pos: -68.5,-29.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19149 - type: RandomPainting - components: - - pos: -74.5,-52.5 - parent: 30 - type: Transform -- uid: 19150 - type: CableApcExtension - components: - - pos: -73.5,-41.5 - parent: 30 - type: Transform -- uid: 19151 - type: CableApcExtension - components: - - pos: -65.5,-47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19152 - type: CableApcExtension - components: - - pos: -65.5,-48.5 - parent: 30 - type: Transform -- uid: 19153 - type: CableApcExtension - components: - - pos: -65.5,-49.5 - parent: 30 - type: Transform -- uid: 19154 - type: CableApcExtension - components: - - pos: -66.5,-49.5 - parent: 30 - type: Transform -- uid: 19155 - type: CableApcExtension - components: - - pos: -67.5,-49.5 - parent: 30 - type: Transform -- uid: 19156 - type: CableApcExtension - components: - - pos: -67.5,-50.5 - parent: 30 - type: Transform -- uid: 19157 - type: CableApcExtension - components: - - pos: -67.5,-51.5 - parent: 30 - type: Transform -- uid: 19158 - type: CableApcExtension - components: - - pos: -67.5,-52.5 - parent: 30 - type: Transform -- uid: 19159 - type: CableApcExtension - components: - - pos: -67.5,-53.5 - parent: 30 - type: Transform -- uid: 19160 - type: CableApcExtension - components: - - pos: -67.5,-54.5 - parent: 30 - type: Transform -- uid: 19161 - type: CableApcExtension - components: - - pos: -67.5,-56.5 - parent: 30 - type: Transform -- uid: 19162 - type: CableApcExtension - components: - - pos: -67.5,-57.5 - parent: 30 - type: Transform -- uid: 19163 - type: CableApcExtension - components: - - pos: -67.5,-55.5 - parent: 30 - type: Transform -- uid: 19164 - type: CableApcExtension - components: - - pos: -67.5,-58.5 - parent: 30 - type: Transform -- uid: 19165 - type: CableApcExtension - components: - - pos: -67.5,-59.5 - parent: 30 - type: Transform -- uid: 19166 - type: CableApcExtension - components: - - pos: -66.5,-59.5 - parent: 30 - type: Transform -- uid: 19167 - type: CableApcExtension - components: - - pos: -65.5,-59.5 - parent: 30 - type: Transform -- uid: 19168 - type: CableApcExtension - components: - - pos: -64.5,-59.5 - parent: 30 - type: Transform -- uid: 19169 - type: CableApcExtension - components: - - pos: -62.5,-59.5 - parent: 30 - type: Transform -- uid: 19170 - type: CableApcExtension - components: - - pos: -63.5,-59.5 - parent: 30 - type: Transform -- uid: 19171 - type: CableApcExtension - components: - - pos: -61.5,-59.5 - parent: 30 - type: Transform -- uid: 19172 - type: CableApcExtension - components: - - pos: -60.5,-59.5 - parent: 30 - type: Transform -- uid: 19173 - type: CableApcExtension - components: - - pos: -59.5,-59.5 - parent: 30 - type: Transform -- uid: 19174 - type: CableApcExtension - components: - - pos: -58.5,-59.5 - parent: 30 - type: Transform -- uid: 19175 - type: CableApcExtension - components: - - pos: -57.5,-59.5 - parent: 30 - type: Transform -- uid: 19176 - type: CableApcExtension - components: - - pos: -56.5,-59.5 - parent: 30 - type: Transform -- uid: 19177 - type: CableApcExtension - components: - - pos: -58.5,-60.5 - parent: 30 - type: Transform -- uid: 19178 - type: CableApcExtension - components: - - pos: -58.5,-62.5 - parent: 30 - type: Transform -- uid: 19179 - type: CableApcExtension - components: - - pos: -58.5,-63.5 - parent: 30 - type: Transform -- uid: 19180 - type: CableApcExtension - components: - - pos: -58.5,-61.5 - parent: 30 - type: Transform -- uid: 19181 - type: CableApcExtension - components: - - pos: -58.5,-64.5 - parent: 30 - type: Transform -- uid: 19182 - type: CableApcExtension - components: - - pos: -58.5,-65.5 - parent: 30 - type: Transform -- uid: 19183 - type: CableApcExtension - components: - - pos: -58.5,-66.5 - parent: 30 - type: Transform -- uid: 19184 - type: CableApcExtension - components: - - pos: -58.5,-67.5 - parent: 30 - type: Transform -- uid: 19185 - type: CableApcExtension - components: - - pos: -58.5,-68.5 - parent: 30 - type: Transform -- uid: 19186 - type: CableApcExtension - components: - - pos: -57.5,-66.5 - parent: 30 - type: Transform -- uid: 19187 - type: CableApcExtension - components: - - pos: -56.5,-66.5 - parent: 30 - type: Transform -- uid: 19188 - type: CableApcExtension - components: - - pos: -55.5,-66.5 - parent: 30 - type: Transform -- uid: 19189 - type: CableApcExtension - components: - - pos: -59.5,-63.5 - parent: 30 - type: Transform -- uid: 19190 - type: CableApcExtension - components: - - pos: -60.5,-63.5 - parent: 30 - type: Transform -- uid: 19191 - type: CableApcExtension - components: - - pos: -57.5,-64.5 - parent: 30 - type: Transform -- uid: 19192 - type: CableApcExtension - components: - - pos: -56.5,-64.5 - parent: 30 - type: Transform -- uid: 19193 - type: CableApcExtension - components: - - pos: -55.5,-64.5 - parent: 30 - type: Transform -- uid: 19194 - type: CableApcExtension - components: - - pos: -54.5,-64.5 - parent: 30 - type: Transform -- uid: 19195 - type: CableApcExtension - components: - - pos: -56.5,-58.5 - parent: 30 - type: Transform -- uid: 19196 - type: CableApcExtension - components: - - pos: -56.5,-57.5 - parent: 30 - type: Transform -- uid: 19197 - type: CableApcExtension - components: - - pos: -56.5,-56.5 - parent: 30 - type: Transform -- uid: 19198 - type: CableApcExtension - components: - - pos: -56.5,-55.5 - parent: 30 - type: Transform -- uid: 19199 - type: CableApcExtension - components: - - pos: -56.5,-54.5 - parent: 30 - type: Transform -- uid: 19200 - type: CableApcExtension - components: - - pos: -56.5,-53.5 - parent: 30 - type: Transform -- uid: 19201 - type: CableApcExtension - components: - - pos: -56.5,-52.5 - parent: 30 - type: Transform -- uid: 19202 - type: CableApcExtension - components: - - pos: -56.5,-51.5 - parent: 30 - type: Transform -- uid: 19203 - type: CableApcExtension - components: - - pos: -56.5,-50.5 - parent: 30 - type: Transform -- uid: 19204 - type: CableApcExtension - components: - - pos: -56.5,-49.5 - parent: 30 - type: Transform -- uid: 19205 - type: CableApcExtension - components: - - pos: -57.5,-49.5 - parent: 30 - type: Transform -- uid: 19206 - type: CableApcExtension - components: - - pos: -58.5,-49.5 - parent: 30 - type: Transform -- uid: 19207 - type: CableApcExtension - components: - - pos: -59.5,-49.5 - parent: 30 - type: Transform -- uid: 19208 - type: CableApcExtension - components: - - pos: -60.5,-49.5 - parent: 30 - type: Transform -- uid: 19209 - type: CableApcExtension - components: - - pos: -61.5,-49.5 - parent: 30 - type: Transform -- uid: 19210 - type: CableApcExtension - components: - - pos: -62.5,-49.5 - parent: 30 - type: Transform -- uid: 19211 - type: CableApcExtension - components: - - pos: -63.5,-49.5 - parent: 30 - type: Transform -- uid: 19212 - type: CableApcExtension - components: - - pos: -64.5,-49.5 - parent: 30 - type: Transform -- uid: 19213 - type: CableApcExtension - components: - - pos: -55.5,-52.5 - parent: 30 - type: Transform -- uid: 19214 - type: CableApcExtension - components: - - pos: -54.5,-52.5 - parent: 30 - type: Transform -- uid: 19215 - type: CableApcExtension - components: - - pos: -53.5,-52.5 - parent: 30 - type: Transform -- uid: 19216 - type: CableApcExtension - components: - - pos: -55.5,-49.5 - parent: 30 - type: Transform -- uid: 19217 - type: CableApcExtension - components: - - pos: -54.5,-49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19218 - type: CableApcExtension - components: - - pos: -53.5,-49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19219 - type: CableApcExtension - components: - - pos: -52.5,-52.5 - parent: 30 - type: Transform -- uid: 19220 - type: CableApcExtension - components: - - pos: -51.5,-52.5 - parent: 30 - type: Transform -- uid: 19221 - type: CableApcExtension - components: - - pos: -50.5,-52.5 - parent: 30 - type: Transform -- uid: 19222 - type: CableApcExtension - components: - - pos: -49.5,-52.5 - parent: 30 - type: Transform -- uid: 19223 - type: CableApcExtension - components: - - pos: -55.5,-56.5 - parent: 30 - type: Transform -- uid: 19224 - type: CableApcExtension - components: - - pos: -54.5,-56.5 - parent: 30 - type: Transform -- uid: 19225 - type: CableApcExtension - components: - - pos: -53.5,-56.5 - parent: 30 - type: Transform -- uid: 19226 - type: CableApcExtension - components: - - pos: -52.5,-56.5 - parent: 30 - type: Transform -- uid: 19227 - type: CableApcExtension - components: - - pos: -51.5,-56.5 - parent: 30 - type: Transform -- uid: 19228 - type: CableApcExtension - components: - - pos: -50.5,-56.5 - parent: 30 - type: Transform -- uid: 19229 - type: CableApcExtension - components: - - pos: -49.5,-56.5 - parent: 30 - type: Transform -- uid: 19230 - type: CableApcExtension - components: - - pos: -55.5,-59.5 - parent: 30 - type: Transform -- uid: 19231 - type: CableApcExtension - components: - - pos: -54.5,-59.5 - parent: 30 - type: Transform -- uid: 19232 - type: CableApcExtension - components: - - pos: -64.5,-60.5 - parent: 30 - type: Transform -- uid: 19233 - type: CableApcExtension - components: - - pos: -64.5,-61.5 - parent: 30 - type: Transform -- uid: 19234 - type: CableApcExtension - components: - - pos: -64.5,-62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19235 - type: CableApcExtension - components: - - pos: -64.5,-63.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19236 - type: CableApcExtension - components: - - pos: -64.5,-64.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19237 - type: CableApcExtension - components: - - pos: -64.5,-65.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19238 - type: CableApcExtension - components: - - pos: -63.5,-64.5 - parent: 30 - type: Transform -- uid: 19239 - type: CableApcExtension - components: - - pos: -62.5,-64.5 - parent: 30 - type: Transform -- uid: 19240 - type: CableApcExtension - components: - - pos: -65.5,-63.5 - parent: 30 - type: Transform -- uid: 19241 - type: CableApcExtension - components: - - pos: -67.5,-63.5 - parent: 30 - type: Transform -- uid: 19242 - type: CableApcExtension - components: - - pos: -66.5,-63.5 - parent: 30 - type: Transform -- uid: 19243 - type: CableApcExtension - components: - - pos: -68.5,-63.5 - parent: 30 - type: Transform -- uid: 19244 - type: CableApcExtension - components: - - pos: -68.5,-54.5 - parent: 30 - type: Transform -- uid: 19245 - type: CableApcExtension - components: - - pos: -69.5,-54.5 - parent: 30 - type: Transform -- uid: 19246 - type: CableApcExtension - components: - - pos: -70.5,-54.5 - parent: 30 - type: Transform -- uid: 19247 - type: CableApcExtension - components: - - pos: -71.5,-54.5 - parent: 30 - type: Transform -- uid: 19248 - type: CableApcExtension - components: - - pos: -72.5,-54.5 - parent: 30 - type: Transform -- uid: 19249 - type: CableApcExtension - components: - - pos: -73.5,-54.5 - parent: 30 - type: Transform -- uid: 19250 - type: CableApcExtension - components: - - pos: -74.5,-54.5 - parent: 30 - type: Transform -- uid: 19251 - type: CableApcExtension - components: - - pos: -75.5,-54.5 - parent: 30 - type: Transform -- uid: 19252 - type: CableApcExtension - components: - - pos: -76.5,-54.5 - parent: 30 - type: Transform -- uid: 19253 - type: CableApcExtension - components: - - pos: -78.5,-54.5 - parent: 30 - type: Transform -- uid: 19254 - type: CableApcExtension - components: - - pos: -77.5,-54.5 - parent: 30 - type: Transform -- uid: 19255 - type: CableApcExtension - components: - - pos: -77.5,-53.5 - parent: 30 - type: Transform -- uid: 19256 - type: CableApcExtension - components: - - pos: -77.5,-52.5 - parent: 30 - type: Transform -- uid: 19257 - type: CableApcExtension - components: - - pos: -77.5,-51.5 - parent: 30 - type: Transform -- uid: 19258 - type: CableApcExtension - components: - - pos: -72.5,-53.5 - parent: 30 - type: Transform -- uid: 19259 - type: CableApcExtension - components: - - pos: -72.5,-52.5 - parent: 30 - type: Transform -- uid: 19260 - type: CableApcExtension - components: - - pos: -72.5,-51.5 - parent: 30 - type: Transform -- uid: 19261 - type: CableApcExtension - components: - - pos: -72.5,-55.5 - parent: 30 - type: Transform -- uid: 19262 - type: CableApcExtension - components: - - pos: -72.5,-56.5 - parent: 30 - type: Transform -- uid: 19263 - type: CableApcExtension - components: - - pos: -78.5,-55.5 - parent: 30 - type: Transform -- uid: 19264 - type: CableApcExtension - components: - - pos: -78.5,-56.5 - parent: 30 - type: Transform -- uid: 19265 - type: CableApcExtension - components: - - pos: -75.5,-55.5 - parent: 30 - type: Transform -- uid: 19266 - type: CableApcExtension - components: - - pos: -75.5,-56.5 - parent: 30 - type: Transform -- uid: 19267 - type: CableApcExtension - components: - - pos: -71.5,-51.5 - parent: 30 - type: Transform -- uid: 19268 - type: CableApcExtension - components: - - pos: -73.5,-51.5 - parent: 30 - type: Transform -- uid: 19269 - type: CableApcExtension - components: - - pos: -67.5,-48.5 - parent: 30 - type: Transform -- uid: 19270 - type: CableApcExtension - components: - - pos: -67.5,-47.5 - parent: 30 - type: Transform -- uid: 19271 - type: CableApcExtension - components: - - pos: -67.5,-46.5 - parent: 30 - type: Transform -- uid: 19272 - type: CableApcExtension - components: - - pos: -67.5,-45.5 - parent: 30 - type: Transform -- uid: 19273 - type: CableApcExtension - components: - - pos: -67.5,-44.5 - parent: 30 - type: Transform -- uid: 19274 - type: CableApcExtension - components: - - pos: -68.5,-44.5 - parent: 30 - type: Transform -- uid: 19275 - type: CableApcExtension - components: - - pos: -68.5,-43.5 - parent: 30 - type: Transform -- uid: 19276 - type: CableApcExtension - components: - - pos: -68.5,-42.5 - parent: 30 - type: Transform -- uid: 19277 - type: CableApcExtension - components: - - pos: -67.5,-42.5 - parent: 30 - type: Transform -- uid: 19278 - type: CableApcExtension - components: - - pos: -61.5,-48.5 - parent: 30 - type: Transform -- uid: 19279 - type: CableApcExtension - components: - - pos: -61.5,-47.5 - parent: 30 - type: Transform -- uid: 19280 - type: CableApcExtension - components: - - pos: -61.5,-46.5 - parent: 30 - type: Transform -- uid: 19281 - type: CableApcExtension - components: - - pos: -61.5,-45.5 - parent: 30 - type: Transform -- uid: 19282 - type: CableApcExtension - components: - - pos: -60.5,-45.5 - parent: 30 - type: Transform -- uid: 19283 - type: CableApcExtension - components: - - pos: -59.5,-45.5 - parent: 30 - type: Transform -- uid: 19284 - type: CableApcExtension - components: - - pos: -58.5,-45.5 - parent: 30 - type: Transform -- uid: 19285 - type: CableApcExtension - components: - - pos: -58.5,-44.5 - parent: 30 - type: Transform -- uid: 19286 - type: CableApcExtension - components: - - pos: -58.5,-43.5 - parent: 30 - type: Transform -- uid: 19287 - type: CableApcExtension - components: - - pos: -58.5,-42.5 - parent: 30 - type: Transform -- uid: 19288 - type: CableApcExtension - components: - - pos: -58.5,-41.5 - parent: 30 - type: Transform -- uid: 19289 - type: CableApcExtension - components: - - pos: -58.5,-40.5 - parent: 30 - type: Transform -- uid: 19290 - type: CableApcExtension - components: - - pos: -58.5,-39.5 - parent: 30 - type: Transform -- uid: 19291 - type: CableApcExtension - components: - - pos: -58.5,-38.5 - parent: 30 - type: Transform -- uid: 19292 - type: CableApcExtension - components: - - pos: -59.5,-38.5 - parent: 30 - type: Transform -- uid: 19293 - type: CableApcExtension - components: - - pos: -60.5,-38.5 - parent: 30 - type: Transform -- uid: 19294 - type: CableApcExtension - components: - - pos: -61.5,-38.5 - parent: 30 - type: Transform -- uid: 19295 - type: CableApcExtension - components: - - pos: -62.5,-38.5 - parent: 30 - type: Transform -- uid: 19296 - type: CableApcExtension - components: - - pos: -63.5,-38.5 - parent: 30 - type: Transform -- uid: 19297 - type: CableApcExtension - components: - - pos: -64.5,-38.5 - parent: 30 - type: Transform -- uid: 19298 - type: CableApcExtension - components: - - pos: -62.5,-37.5 - parent: 30 - type: Transform -- uid: 19299 - type: CableApcExtension - components: - - pos: -65.5,-38.5 - parent: 30 - type: Transform -- uid: 19300 - type: CableApcExtension - components: - - pos: -65.5,-39.5 - parent: 30 - type: Transform -- uid: 19301 - type: CableApcExtension - components: - - pos: -65.5,-40.5 - parent: 30 - type: Transform -- uid: 19302 - type: CableApcExtension - components: - - pos: -65.5,-42.5 - parent: 30 - type: Transform -- uid: 19303 - type: CableApcExtension - components: - - pos: -65.5,-42.5 - parent: 30 - type: Transform -- uid: 19304 - type: CableApcExtension - components: - - pos: -65.5,-41.5 - parent: 30 - type: Transform -- uid: 19305 - type: CableApcExtension - components: - - pos: -65.5,-43.5 - parent: 30 - type: Transform -- uid: 19306 - type: CableApcExtension - components: - - pos: -65.5,-44.5 - parent: 30 - type: Transform -- uid: 19307 - type: CableApcExtension - components: - - pos: -65.5,-45.5 - parent: 30 - type: Transform -- uid: 19308 - type: CableApcExtension - components: - - pos: -66.5,-45.5 - parent: 30 - type: Transform -- uid: 19309 - type: CableApcExtension - components: - - pos: -57.5,-48.5 - parent: 30 - type: Transform -- uid: 19310 - type: CableApcExtension - components: - - pos: -56.5,-48.5 - parent: 30 - type: Transform -- uid: 19311 - type: CableApcExtension - components: - - pos: -56.5,-47.5 - parent: 30 - type: Transform -- uid: 19312 - type: CableApcExtension - components: - - pos: -56.5,-46.5 - parent: 30 - type: Transform -- uid: 19313 - type: CableApcExtension - components: - - pos: -56.5,-45.5 - parent: 30 - type: Transform -- uid: 19314 - type: CableApcExtension - components: - - pos: -55.5,-45.5 - parent: 30 - type: Transform -- uid: 19315 - type: CableApcExtension - components: - - pos: -54.5,-45.5 - parent: 30 - type: Transform -- uid: 19316 - type: CableApcExtension - components: - - pos: -53.5,-45.5 - parent: 30 - type: Transform -- uid: 19317 - type: CableApcExtension - components: - - pos: -54.5,-42.5 - parent: 30 - type: Transform -- uid: 19318 - type: CableApcExtension - components: - - pos: -54.5,-43.5 - parent: 30 - type: Transform -- uid: 19319 - type: CableApcExtension - components: - - pos: -76.5,-42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19320 - type: CableApcExtension - components: - - pos: -76.5,-43.5 - parent: 30 - type: Transform -- uid: 19321 - type: CableApcExtension - components: - - pos: -76.5,-44.5 - parent: 30 - type: Transform -- uid: 19322 - type: CableApcExtension - components: - - pos: -76.5,-45.5 - parent: 30 - type: Transform -- uid: 19323 - type: CableApcExtension - components: - - pos: -75.5,-45.5 - parent: 30 - type: Transform -- uid: 19324 - type: CableApcExtension - components: - - pos: -74.5,-45.5 - parent: 30 - type: Transform -- uid: 19325 - type: CableApcExtension - components: - - pos: -73.5,-45.5 - parent: 30 - type: Transform -- uid: 19326 - type: CableApcExtension - components: - - pos: -72.5,-45.5 - parent: 30 - type: Transform -- uid: 19327 - type: CableApcExtension - components: - - pos: -71.5,-45.5 - parent: 30 - type: Transform -- uid: 19328 - type: CableApcExtension - components: - - pos: -70.5,-45.5 - parent: 30 - type: Transform -- uid: 19329 - type: CableApcExtension - components: - - pos: -76.5,-46.5 - parent: 30 - type: Transform -- uid: 19330 - type: CableApcExtension - components: - - pos: -76.5,-47.5 - parent: 30 - type: Transform -- uid: 19331 - type: CableApcExtension - components: - - pos: -77.5,-46.5 - parent: 30 - type: Transform -- uid: 19332 - type: CableApcExtension - components: - - pos: -78.5,-46.5 - parent: 30 - type: Transform -- uid: 19333 - type: CableApcExtension - components: - - pos: -79.5,-46.5 - parent: 30 - type: Transform -- uid: 19334 - type: CableApcExtension - components: - - pos: -80.5,-46.5 - parent: 30 - type: Transform -- uid: 19335 - type: CableApcExtension - components: - - pos: -81.5,-46.5 - parent: 30 - type: Transform -- uid: 19336 - type: CableApcExtension - components: - - pos: -82.5,-46.5 - parent: 30 - type: Transform -- uid: 19337 - type: CableApcExtension - components: - - pos: -83.5,-46.5 - parent: 30 - type: Transform -- uid: 19338 - type: CableApcExtension - components: - - pos: -84.5,-46.5 - parent: 30 - type: Transform -- uid: 19339 - type: CableApcExtension - components: - - pos: -79.5,-47.5 - parent: 30 - type: Transform -- uid: 19340 - type: CableApcExtension - components: - - pos: -79.5,-48.5 - parent: 30 - type: Transform -- uid: 19341 - type: CableApcExtension - components: - - pos: -79.5,-49.5 - parent: 30 - type: Transform -- uid: 19342 - type: CableApcExtension - components: - - pos: -78.5,-45.5 - parent: 30 - type: Transform -- uid: 19343 - type: CableApcExtension - components: - - pos: -78.5,-44.5 - parent: 30 - type: Transform -- uid: 19344 - type: CableApcExtension - components: - - pos: -78.5,-43.5 - parent: 30 - type: Transform -- uid: 19345 - type: CableApcExtension - components: - - pos: -78.5,-42.5 - parent: 30 - type: Transform -- uid: 19346 - type: CableApcExtension - components: - - pos: -78.5,-41.5 - parent: 30 - type: Transform -- uid: 19347 - type: CableApcExtension - components: - - pos: -78.5,-40.5 - parent: 30 - type: Transform -- uid: 19348 - type: CableApcExtension - components: - - pos: -78.5,-39.5 - parent: 30 - type: Transform -- uid: 19349 - type: CableApcExtension - components: - - pos: -78.5,-38.5 - parent: 30 - type: Transform -- uid: 19350 - type: CableApcExtension - components: - - pos: -79.5,-39.5 - parent: 30 - type: Transform -- uid: 19351 - type: CableApcExtension - components: - - pos: -80.5,-39.5 - parent: 30 - type: Transform -- uid: 19352 - type: CableApcExtension - components: - - pos: -77.5,-39.5 - parent: 30 - type: Transform -- uid: 19353 - type: CableApcExtension - components: - - pos: -75.5,-43.5 - parent: 30 - type: Transform -- uid: 19354 - type: CableApcExtension - components: - - pos: -75.5,-42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19355 - type: CableApcExtension - components: - - pos: -75.5,-41.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19356 - type: CableApcExtension - components: - - pos: -79.5,-58.5 - parent: 30 - type: Transform -- uid: 19357 - type: CableApcExtension - components: - - pos: -79.5,-59.5 - parent: 30 - type: Transform -- uid: 19358 - type: CableApcExtension - components: - - pos: -79.5,-60.5 - parent: 30 - type: Transform -- uid: 19359 - type: CableApcExtension - components: - - pos: -80.5,-60.5 - parent: 30 - type: Transform -- uid: 19360 - type: CableApcExtension - components: - - pos: -81.5,-60.5 - parent: 30 - type: Transform -- uid: 19361 - type: CableApcExtension - components: - - pos: -82.5,-60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19362 - type: CableApcExtension - components: - - pos: -83.5,-60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19363 - type: CableApcExtension - components: - - pos: -84.5,-60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19364 - type: CableApcExtension - components: - - pos: -78.5,-60.5 - parent: 30 - type: Transform -- uid: 19365 - type: CableApcExtension - components: - - pos: -77.5,-60.5 - parent: 30 - type: Transform -- uid: 19366 - type: CableApcExtension - components: - - pos: -76.5,-60.5 - parent: 30 - type: Transform -- uid: 19367 - type: CableApcExtension - components: - - pos: -75.5,-60.5 - parent: 30 - type: Transform -- uid: 19368 - type: CableApcExtension - components: - - pos: -74.5,-60.5 - parent: 30 - type: Transform -- uid: 19369 - type: CableApcExtension - components: - - pos: -73.5,-60.5 - parent: 30 - type: Transform -- uid: 19370 - type: CableApcExtension - components: - - pos: -72.5,-60.5 - parent: 30 - type: Transform -- uid: 19371 - type: CableApcExtension - components: - - pos: -71.5,-60.5 - parent: 30 - type: Transform -- uid: 19372 - type: CableApcExtension - components: - - pos: -70.5,-60.5 - parent: 30 - type: Transform -- uid: 19373 - type: CableApcExtension - components: - - pos: -70.5,-59.5 - parent: 30 - type: Transform -- uid: 19374 - type: CableApcExtension - components: - - pos: -70.5,-58.5 - parent: 30 - type: Transform -- uid: 19375 - type: CableApcExtension - components: - - pos: -77.5,-61.5 - parent: 30 - type: Transform -- uid: 19376 - type: CableApcExtension - components: - - pos: -77.5,-62.5 - parent: 30 - type: Transform -- uid: 19377 - type: CableApcExtension - components: - - pos: -77.5,-63.5 - parent: 30 - type: Transform -- uid: 19378 - type: CableApcExtension - components: - - pos: -77.5,-64.5 - parent: 30 - type: Transform -- uid: 19379 - type: CableApcExtension - components: - - pos: -77.5,-65.5 - parent: 30 - type: Transform -- uid: 19380 - type: CableApcExtension - components: - - pos: -72.5,-65.5 - parent: 30 - type: Transform -- uid: 19381 - type: CableApcExtension - components: - - pos: -72.5,-64.5 - parent: 30 - type: Transform -- uid: 19382 - type: CableApcExtension - components: - - pos: -72.5,-63.5 - parent: 30 - type: Transform -- uid: 19383 - type: CableApcExtension - components: - - pos: -72.5,-62.5 - parent: 30 - type: Transform -- uid: 19384 - type: CableApcExtension - components: - - pos: -72.5,-61.5 - parent: 30 - type: Transform -- uid: 19385 - type: CableApcExtension - components: - - pos: -76.5,-65.5 - parent: 30 - type: Transform -- uid: 19386 - type: CableApcExtension - components: - - pos: -75.5,-65.5 - parent: 30 - type: Transform -- uid: 19387 - type: CableApcExtension - components: - - pos: -74.5,-65.5 - parent: 30 - type: Transform -- uid: 19388 - type: CableApcExtension - components: - - pos: -74.5,-66.5 - parent: 30 - type: Transform -- uid: 19389 - type: CableApcExtension - components: - - pos: -74.5,-59.5 - parent: 30 - type: Transform -- uid: 19390 - type: CableApcExtension - components: - - pos: -74.5,-58.5 - parent: 30 - type: Transform -- uid: 19391 - type: SpawnPointChaplain - components: - - pos: -83.5,-45.5 - parent: 30 - type: Transform -- uid: 19392 - type: AirlockGlass - components: - - pos: -74.5,-54.5 - parent: 30 - type: Transform -- uid: 19393 - type: AsteroidRock - components: - - pos: -74.5,-38.5 - parent: 30 - type: Transform -- uid: 19394 - type: Bookshelf - components: - - pos: -56.5,-63.5 - parent: 30 - type: Transform -- uid: 19395 - type: Bookshelf - components: - - pos: -54.5,-67.5 - parent: 30 - type: Transform -- uid: 19396 - type: Bookshelf - components: - - pos: -55.5,-67.5 - parent: 30 - type: Transform -- uid: 19397 - type: Bookshelf - components: - - pos: -56.5,-67.5 - parent: 30 - type: Transform -- uid: 19398 - type: Bookshelf - components: - - pos: -54.5,-65.5 - parent: 30 - type: Transform -- uid: 19399 - type: Bookshelf - components: - - pos: -55.5,-65.5 - parent: 30 - type: Transform -- uid: 19400 - type: Bookshelf - components: - - pos: -56.5,-65.5 - parent: 30 - type: Transform -- uid: 19401 - type: Carpet - components: - - pos: -59.5,-68.5 - parent: 30 - type: Transform -- uid: 19402 - type: Carpet - components: - - pos: -59.5,-67.5 - parent: 30 - type: Transform -- uid: 19403 - type: Carpet - components: - - pos: -59.5,-66.5 - parent: 30 - type: Transform -- uid: 19404 - type: Carpet - components: - - pos: -59.5,-65.5 - parent: 30 - type: Transform -- uid: 19405 - type: Carpet - components: - - pos: -59.5,-64.5 - parent: 30 - type: Transform -- uid: 19406 - type: Carpet - components: - - pos: -59.5,-63.5 - parent: 30 - type: Transform -- uid: 19407 - type: Carpet - components: - - pos: -59.5,-62.5 - parent: 30 - type: Transform -- uid: 19408 - type: Carpet - components: - - pos: -58.5,-68.5 - parent: 30 - type: Transform -- uid: 19409 - type: Carpet - components: - - pos: -58.5,-67.5 - parent: 30 - type: Transform -- uid: 19410 - type: Carpet - components: - - pos: -58.5,-66.5 - parent: 30 - type: Transform -- uid: 19411 - type: Carpet - components: - - pos: -58.5,-65.5 - parent: 30 - type: Transform -- uid: 19412 - type: Carpet - components: - - pos: -58.5,-64.5 - parent: 30 - type: Transform -- uid: 19413 - type: Carpet - components: - - pos: -58.5,-63.5 - parent: 30 - type: Transform -- uid: 19414 - type: Carpet - components: - - pos: -58.5,-62.5 - parent: 30 - type: Transform -- uid: 19415 - type: PottedPlantRandom - components: - - pos: -57.5,-62.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 19416 - type: PottedPlantRandom - components: - - pos: -60.5,-62.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 19417 - type: TableWood - components: - - pos: -57.5,-67.5 - parent: 30 - type: Transform -- uid: 19418 - type: TableWood - components: - - pos: -57.5,-65.5 - parent: 30 - type: Transform -- uid: 19419 - type: TableWood - components: - - pos: -57.5,-63.5 - parent: 30 - type: Transform -- uid: 19420 - type: TableWood - components: - - pos: -60.5,-67.5 - parent: 30 - type: Transform -- uid: 19421 - type: TableWood - components: - - pos: -60.5,-65.5 - parent: 30 - type: Transform -- uid: 19422 - type: ChairWood - components: - - pos: -60.5,-66.5 - parent: 30 - type: Transform -- uid: 19423 - type: ChairWood - components: - - pos: -60.5,-64.5 - parent: 30 - type: Transform -- uid: 19424 - type: BoxFolderYellow - components: - - pos: -60.46691,-65.40645 - parent: 30 - type: Transform -- uid: 19425 - type: Pen - components: - - pos: -60.52941,-65.45332 - parent: 30 - type: Transform -- uid: 19426 - type: Paper - components: - - pos: -60.607536,-67.34395 - parent: 30 - type: Transform -- uid: 19427 - type: Paper - components: - - pos: -60.545036,-67.39082 - parent: 30 - type: Transform -- uid: 19428 - type: Paper - components: - - pos: -60.420036,-67.48457 - parent: 30 - type: Transform -- uid: 19429 - type: Paper - components: - - pos: -60.34191,-67.51582 - parent: 30 - type: Transform -- uid: 19430 - type: ClothingNeckScarfStripedGreen - components: - - pos: -57.52941,-67.45332 - parent: 30 - type: Transform -- uid: 19431 - type: lantern - components: - - pos: -57.92594,-62.49692 - parent: 30 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 19432 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: -77.5,-58.5 - parent: 30 - type: Transform -- uid: 19433 - type: Bookshelf - components: - - pos: -76.5,-58.5 - parent: 30 - type: Transform -- uid: 19434 - type: Bookshelf - components: - - pos: -75.5,-58.5 - parent: 30 - type: Transform -- uid: 19435 - type: Bookshelf - components: - - pos: -74.5,-58.5 - parent: 30 - type: Transform -- uid: 19436 - type: Bookshelf - components: - - pos: -73.5,-58.5 - parent: 30 - type: Transform -- uid: 19437 - type: Bookshelf - components: - - pos: -72.5,-58.5 - parent: 30 - type: Transform -- uid: 19438 - type: Bookshelf - components: - - pos: -72.5,-61.5 - parent: 30 - type: Transform -- uid: 19439 - type: Bookshelf - components: - - pos: -73.5,-61.5 - parent: 30 - type: Transform -- uid: 19440 - type: Bookshelf - components: - - pos: -74.5,-61.5 - parent: 30 - type: Transform -- uid: 19441 - type: Bookshelf - components: - - pos: -77.5,-61.5 - parent: 30 - type: Transform -- uid: 19442 - type: Bookshelf - components: - - pos: -76.5,-61.5 - parent: 30 - type: Transform -- uid: 19443 - type: CarpetGreen - components: - - pos: -76.5,-63.5 - parent: 30 - type: Transform -- uid: 19444 - type: CarpetGreen - components: - - pos: -76.5,-64.5 - parent: 30 - type: Transform -- uid: 19445 - type: CarpetGreen - components: - - pos: -76.5,-65.5 - parent: 30 - type: Transform -- uid: 19446 - type: CarpetGreen - components: - - pos: -75.5,-63.5 - parent: 30 - type: Transform -- uid: 19447 - type: CarpetGreen - components: - - pos: -75.5,-64.5 - parent: 30 - type: Transform -- uid: 19448 - type: CarpetGreen - components: - - pos: -75.5,-65.5 - parent: 30 - type: Transform -- uid: 19449 - type: CarpetGreen - components: - - pos: -74.5,-63.5 - parent: 30 - type: Transform -- uid: 19450 - type: CarpetGreen - components: - - pos: -74.5,-64.5 - parent: 30 - type: Transform -- uid: 19451 - type: CarpetGreen - components: - - pos: -74.5,-65.5 - parent: 30 - type: Transform -- uid: 19452 - type: CarpetGreen - components: - - pos: -73.5,-63.5 - parent: 30 - type: Transform -- uid: 19453 - type: CarpetGreen - components: - - pos: -73.5,-64.5 - parent: 30 - type: Transform -- uid: 19454 - type: CarpetGreen - components: - - pos: -73.5,-65.5 - parent: 30 - type: Transform -- uid: 19455 - type: CarpetGreen - components: - - pos: -76.5,-62.5 - parent: 30 - type: Transform -- uid: 19456 - type: CarpetGreen - components: - - pos: -75.5,-62.5 - parent: 30 - type: Transform -- uid: 19457 - type: CarpetGreen - components: - - pos: -74.5,-62.5 - parent: 30 - type: Transform -- uid: 19458 - type: CarpetGreen - components: - - pos: -73.5,-62.5 - parent: 30 - type: Transform -- uid: 19459 - type: TableCarpet - components: - - pos: -75.5,-64.5 - parent: 30 - type: Transform -- uid: 19460 - type: TableCarpet - components: - - pos: -75.5,-63.5 - parent: 30 - type: Transform -- uid: 19461 - type: TableCarpet - components: - - pos: -74.5,-63.5 - parent: 30 - type: Transform -- uid: 19462 - type: TableCarpet - components: - - pos: -74.5,-64.5 - parent: 30 - type: Transform -- uid: 19463 - type: ComfyChair - components: - - pos: -74.5,-62.5 - parent: 30 - type: Transform -- uid: 19464 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-63.5 - parent: 30 - type: Transform -- uid: 19465 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-64.5 - parent: 30 - type: Transform -- uid: 19466 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -74.5,-65.5 - parent: 30 - type: Transform -- uid: 19467 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -75.5,-65.5 - parent: 30 - type: Transform -- uid: 19468 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -76.5,-63.5 - parent: 30 - type: Transform -- uid: 19469 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -76.5,-64.5 - parent: 30 - type: Transform -- uid: 19470 - type: d20Dice - components: - - rot: 1.5707963267948966 rad - pos: -75.2108,-63.97015 - parent: 30 - type: Transform -- uid: 19471 - type: d6Dice - components: - - rot: 1.5707963267948966 rad - pos: -75.570175,-63.40765 - parent: 30 - type: Transform -- uid: 19472 - type: d8Dice - components: - - rot: 1.5707963267948966 rad - pos: -74.382675,-63.392025 - parent: 30 - type: Transform -- uid: 19473 - type: PercentileDie - components: - - rot: 1.5707963267948966 rad - pos: -57.4998,-65.351234 - parent: 30 - type: Transform -- uid: 19474 - type: Bookshelf - components: - - pos: -78.5,-63.5 - parent: 30 - type: Transform -- uid: 19475 - type: Bookshelf - components: - - pos: -78.5,-62.5 - parent: 30 - type: Transform -- uid: 19476 - type: Bookshelf - components: - - pos: -71.5,-63.5 - parent: 30 - type: Transform -- uid: 19477 - type: Bookshelf - components: - - pos: -71.5,-62.5 - parent: 30 - type: Transform -- uid: 19478 - type: Carpet - components: - - pos: -76.5,-60.5 - parent: 30 - type: Transform -- uid: 19479 - type: Carpet - components: - - pos: -76.5,-59.5 - parent: 30 - type: Transform -- uid: 19480 - type: Carpet - components: - - pos: -75.5,-60.5 - parent: 30 - type: Transform -- uid: 19481 - type: Carpet - components: - - pos: -75.5,-59.5 - parent: 30 - type: Transform -- uid: 19482 - type: Carpet - components: - - pos: -74.5,-60.5 - parent: 30 - type: Transform -- uid: 19483 - type: Carpet - components: - - pos: -74.5,-59.5 - parent: 30 - type: Transform -- uid: 19484 - type: Carpet - components: - - pos: -73.5,-60.5 - parent: 30 - type: Transform -- uid: 19485 - type: Carpet - components: - - pos: -73.5,-59.5 - parent: 30 - type: Transform -- uid: 19486 - type: Carpet - components: - - pos: -72.5,-60.5 - parent: 30 - type: Transform -- uid: 19487 - type: Carpet - components: - - pos: -72.5,-59.5 - parent: 30 - type: Transform -- uid: 19488 - type: Carpet - components: - - pos: -77.5,-60.5 - parent: 30 - type: Transform -- uid: 19489 - type: Carpet - components: - - pos: -77.5,-59.5 - parent: 30 - type: Transform -- uid: 19490 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-59.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19491 - type: ToyFireRipley - components: - - pos: -75.06297,-63.28095 - parent: 30 - type: Transform -- uid: 19492 - type: ToyRipley - components: - - pos: -74.5161,-64.17158 - parent: 30 - type: Transform -- uid: 19493 - type: ToySkeleton - components: - - pos: -74.75047,-63.702824 - parent: 30 - type: Transform -- uid: 19494 - type: ToyAssistant - components: - - pos: -75.59422,-64.3747 - parent: 30 - type: Transform -- uid: 19495 - type: TableWood - components: - - pos: -72.5,-65.5 - parent: 30 - type: Transform -- uid: 19496 - type: TableWood - components: - - pos: -74.5,-66.5 - parent: 30 - type: Transform -- uid: 19497 - type: TableWood - components: - - pos: -75.5,-66.5 - parent: 30 - type: Transform -- uid: 19498 - type: TableWood - components: - - pos: -77.5,-65.5 - parent: 30 - type: Transform -- uid: 19499 - type: Paper - components: - - pos: -74.49536,-66.447914 - parent: 30 - type: Transform -- uid: 19500 - type: Paper - components: - - pos: -74.68286,-66.36979 - parent: 30 - type: Transform -- uid: 19501 - type: Paper - components: - - pos: -74.90161,-66.36979 - parent: 30 - type: Transform -- uid: 19502 - type: Paper - components: - - pos: -75.52661,-66.49479 - parent: 30 - type: Transform -- uid: 19503 - type: Paper - components: - - pos: -72.49536,-65.49479 - parent: 30 - type: Transform -- uid: 19504 - type: LampGold - components: - - pos: -77.46411,-65.291664 - parent: 30 - type: Transform -- uid: 19505 - type: LampGold - components: - - pos: -60.62825,-65.170204 - parent: 30 - type: Transform -- uid: 19506 - type: SignSpace - components: - - pos: -78.5,-61.5 - parent: 30 - type: Transform -- uid: 19507 - type: TableWood - components: - - pos: -71.5,-56.5 - parent: 30 - type: Transform -- uid: 19508 - type: TableWood - components: - - pos: -71.5,-52.5 - parent: 30 - type: Transform -- uid: 19509 - type: TableWood - components: - - pos: -72.5,-52.5 - parent: 30 - type: Transform -- uid: 19510 - type: AsteroidRock - components: - - pos: -73.5,-38.5 - parent: 30 - type: Transform -- uid: 19511 - type: AirlockGlass - components: - - pos: 8.5,-17.5 - parent: 30 - type: Transform -- uid: 19512 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -73.5,-52.5 - parent: 30 - type: Transform -- uid: 19513 - type: ChairWood - components: - - pos: -72.5,-51.5 - parent: 30 - type: Transform -- uid: 19514 - type: ChairWood - components: - - pos: -71.5,-51.5 - parent: 30 - type: Transform -- uid: 19515 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-52.5 - parent: 30 - type: Transform -- uid: 19516 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -71.5,-53.5 - parent: 30 - type: Transform -- uid: 19517 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -72.5,-53.5 - parent: 30 - type: Transform -- uid: 19518 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -72.5,-56.5 - parent: 30 - type: Transform -- uid: 19519 - type: ChairWood - components: - - pos: -71.5,-55.5 - parent: 30 - type: Transform -- uid: 19520 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-56.5 - parent: 30 - type: Transform -- uid: 19521 - type: FoodCondimentPacketSalt - components: - - pos: -71.649925,-56.485016 - parent: 30 - type: Transform - - solution: food - type: RefillableSolution - - tags: [] - type: Tag -- uid: 19522 - type: FoodCondimentPacketPepper - components: - - pos: -71.47805,-56.360016 - parent: 30 - type: Transform - - solution: food - type: RefillableSolution - - tags: [] - type: Tag -- uid: 19523 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -54.530502,-64.54973 - parent: 30 - type: Transform -- uid: 19524 - type: ClothingEyesGlasses - components: - - pos: -57.565453,-65.51947 - parent: 30 - type: Transform -- uid: 19525 - type: AtmosFixFreezerMarker - components: - - pos: -17.5,15.5 - parent: 30 - type: Transform -- uid: 19526 - type: AtmosFixFreezerMarker - components: - - pos: -17.5,16.5 - parent: 30 - type: Transform -- uid: 19527 - type: PottedPlantRandom - components: - - pos: -73.5,-56.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 19528 - type: Table - components: - - pos: -79.5,-55.5 - parent: 30 - type: Transform -- uid: 19529 - type: Table - components: - - pos: -79.5,-56.5 - parent: 30 - type: Transform -- uid: 19530 - type: Table - components: - - pos: -78.5,-56.5 - parent: 30 - type: Transform -- uid: 19531 - type: Table - components: - - pos: -77.5,-56.5 - parent: 30 - type: Transform -- uid: 19532 - type: WaterTankFull - components: - - pos: -75.5,-56.5 - parent: 30 - type: Transform -- uid: 19533 - type: VendingMachineDinnerware - components: - - flags: SessionSpecific - name: Dinnerware - type: MetaData - - pos: -77.5,-54.5 - parent: 30 - type: Transform -- uid: 19534 - type: VendingMachineSeedsUnlocked - components: - - flags: SessionSpecific - type: MetaData - - pos: -51.5,68.5 - parent: 30 - type: Transform -- uid: 19535 - type: SeedExtractor - components: - - pos: -76.5,-51.5 - parent: 30 - type: Transform -- uid: 19536 - type: PlantBag - components: - - pos: -75.515656,-51.77146 - parent: 30 - type: Transform -- uid: 19537 - type: LockerFreezer - components: - - pos: -79.5,-53.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19538 - type: KitchenMicrowave - components: - - pos: -79.5,-55.5 - parent: 30 - type: Transform -- uid: 19539 - type: KitchenReagentGrinder - components: - - pos: -79.5,-56.5 - parent: 30 - type: Transform -- uid: 19540 - type: Beaker - components: - - pos: -78.703156,-56.42771 - parent: 30 - type: Transform -- uid: 19541 - type: Bucket - components: - - pos: -75.328156,-55.693336 - parent: 30 - type: Transform -- uid: 19542 - type: HydroponicsToolSpade - components: - - pos: -76.56253,-53.662086 - parent: 30 - type: Transform -- uid: 19543 - type: ClothingOuterApronChef - components: - - pos: -77.53128,-56.39646 - parent: 30 - type: Transform -- uid: 19544 - type: HydroponicsToolMiniHoe - components: - - pos: -61.265068,-54.912086 - parent: 30 - type: Transform -- uid: 19545 - type: WheatSeeds - components: - - pos: -63.5,-55.5 - parent: 30 - type: Transform -- uid: 19546 - type: WheatSeeds - components: - - pos: -65.5,-55.5 - parent: 30 - type: Transform -- uid: 19547 - type: OatSeeds - components: - - pos: -65.5,-56.5 - parent: 30 - type: Transform -- uid: 19548 - type: OatSeeds - components: - - pos: -63.5,-56.5 - parent: 30 - type: Transform -- uid: 19549 - type: LingzhiSeeds - components: - - pos: -65.5,-57.5 - parent: 30 - type: Transform -- uid: 19550 - type: LingzhiSeeds - components: - - pos: -63.5,-57.5 - parent: 30 - type: Transform -- uid: 19551 - type: CarrotSeeds - components: - - pos: -60.5,-52.5 - parent: 30 - type: Transform -- uid: 19552 - type: CarrotSeeds - components: - - pos: -58.5,-52.5 - parent: 30 - type: Transform -- uid: 19553 - type: SugarcaneSeeds - components: - - pos: -60.5,-53.5 - parent: 30 - type: Transform -- uid: 19554 - type: SugarcaneSeeds - components: - - pos: -58.5,-53.5 - parent: 30 - type: Transform -- uid: 19555 - type: AppleSeeds - components: - - pos: -60.5,-51.5 - parent: 30 - type: Transform -- uid: 19556 - type: AppleSeeds - components: - - pos: -58.5,-51.5 - parent: 30 - type: Transform -- uid: 19557 - type: Bucket - components: - - pos: -63.600044,-53.77146 - parent: 30 - type: Transform -- uid: 19558 - type: ClosetChef - components: - - pos: -79.5,-51.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19559 - type: Table - components: - - pos: -78.5,-51.5 - parent: 30 - type: Transform -- uid: 19560 - type: Table - components: - - pos: -77.5,-51.5 - parent: 30 - type: Transform -- uid: 19561 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -75.5,-53.5 - parent: 30 - type: Transform -- uid: 19562 - type: SpawnPointLibrarian - components: - - pos: -58.5,-65.5 - parent: 30 - type: Transform -- uid: 19563 - type: Pen - components: - - pos: -72.2945,-65.28793 - parent: 30 - type: Transform -- uid: 19564 - type: PottedPlantRandom - components: - - pos: -75.5,-46.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 19565 - type: PottedPlantRandom - components: - - pos: -75.5,-44.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 19566 - type: TintedWindow - components: - - pos: 9.5,-12.5 - parent: 30 - type: Transform -- uid: 19567 - type: TintedWindow - components: - - pos: 8.5,-12.5 - parent: 30 - type: Transform -- uid: 19568 - type: SpawnMobMouse - components: - - pos: -1.5,-14.5 - parent: 30 - type: Transform -- uid: 19569 - type: SpawnMobMouse - components: - - pos: 33.5,4.5 - parent: 30 - type: Transform -- uid: 19570 - type: SpawnMobSlothPaperwork - components: - - pos: -57.5,-64.5 - parent: 30 - type: Transform -- uid: 19571 - type: Poweredlight - components: - - pos: -53.5,-22.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19572 - type: Poweredlight - components: - - pos: -49.5,-22.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19573 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-21.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19576 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-21.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19578 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-24.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19579 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -63.5,-19.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19580 - type: PoweredSmallLight - components: - - pos: 4.5,10.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19581 - type: CableApcExtension - components: - - pos: -50.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19582 - type: Table - components: - - pos: -27.5,-43.5 - parent: 30 - type: Transform -- uid: 19583 - type: Table - components: - - pos: -28.5,-43.5 - parent: 30 - type: Transform -- uid: 19584 - type: Chair - components: - - pos: -27.5,-42.5 - parent: 30 - type: Transform -- uid: 19585 - type: Cigarette - components: - - pos: -27.716064,-43.180817 - parent: 30 - type: Transform -- uid: 19586 - type: BoxLightMixed - components: - - pos: -28.45044,-43.274567 - parent: 30 - type: Transform -- uid: 19587 - type: SurveillanceCameraSupply - components: - - rot: 3.141592653589793 rad - pos: 30.5,-9.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage Bay - type: SurveillanceCamera -- uid: 19588 - type: SurveillanceCameraSupply - components: - - rot: 3.141592653589793 rad - pos: 33.5,-16.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage Exterior - type: SurveillanceCamera -- uid: 19589 - type: EmergencyLight - components: - - pos: -8.5,4.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19590 - type: FirelockGlass - components: - - pos: -29.5,-37.5 - parent: 30 - type: Transform -- uid: 19591 - type: Catwalk - components: - - pos: -29.5,-39.5 - parent: 30 - type: Transform -- uid: 19592 - type: Catwalk - components: - - pos: -30.5,-39.5 - parent: 30 - type: Transform -- uid: 19593 - type: Catwalk - components: - - pos: -31.5,-39.5 - parent: 30 - type: Transform -- uid: 19594 - type: Catwalk - components: - - pos: -32.5,-39.5 - parent: 30 - type: Transform -- uid: 19595 - type: Catwalk - components: - - pos: -33.5,-39.5 - parent: 30 - type: Transform -- uid: 19596 - type: Catwalk - components: - - pos: -34.5,-39.5 - parent: 30 - type: Transform -- uid: 19597 - type: CableApcExtension - components: - - pos: -25.5,-41.5 - parent: 30 - type: Transform -- uid: 19598 - type: CableApcExtension - components: - - pos: -26.5,-41.5 - parent: 30 - type: Transform -- uid: 19599 - type: CableApcExtension - components: - - pos: -27.5,-41.5 - parent: 30 - type: Transform -- uid: 19600 - type: CableApcExtension - components: - - pos: -28.5,-41.5 - parent: 30 - type: Transform -- uid: 19601 - type: CableApcExtension - components: - - pos: -28.5,-40.5 - parent: 30 - type: Transform -- uid: 19602 - type: CableApcExtension - components: - - pos: -28.5,-39.5 - parent: 30 - type: Transform -- uid: 19603 - type: CableApcExtension - components: - - pos: -29.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19604 - type: CableApcExtension - components: - - pos: -30.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19605 - type: CableApcExtension - components: - - pos: -31.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19606 - type: CableApcExtension - components: - - pos: -32.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19607 - type: CableApcExtension - components: - - pos: -33.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19608 - type: CableApcExtension - components: - - pos: -34.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19609 - type: CableApcExtension - components: - - pos: -36.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19610 - type: CableApcExtension - components: - - pos: -35.5,-39.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19611 - type: CableApcExtension - components: - - pos: -29.5,-38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19612 - type: CableApcExtension - components: - - pos: -29.5,-37.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19613 - type: CableApcExtension - components: - - pos: -29.5,-36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19614 - type: CableApcExtension - components: - - pos: -29.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19615 - type: CableApcExtension - components: - - pos: -29.5,-34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19616 - type: Rack - components: - - pos: -27.5,-39.5 - parent: 30 - type: Transform -- uid: 19617 - type: MaintenanceFluffSpawner - components: - - pos: -27.5,-39.5 - parent: 30 - type: Transform -- uid: 19618 - type: WardrobeFormal - components: - - pos: -28.5,-39.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19622 - - 19620 - - 19619 - - 19621 - type: ContainerContainer -- uid: 19619 - type: ClothingOuterCoatGentle - components: - - flags: InContainer - type: MetaData - - parent: 19618 - type: Transform - - canCollide: False - type: Physics -- uid: 19620 - type: ClothingHeadHatTophat - components: - - flags: InContainer - type: MetaData - - parent: 19618 - type: Transform - - canCollide: False - type: Physics -- uid: 19621 - type: ClothingNeckTieRed - components: - - flags: InContainer - type: MetaData - - parent: 19618 - type: Transform - - canCollide: False - type: Physics -- uid: 19622 - type: ClothingUniformJumpsuitSecBlue - components: - - flags: InContainer - type: MetaData - - parent: 19618 - type: Transform - - canCollide: False - type: Physics -- uid: 19623 - type: OxygenCanister - components: - - pos: -33.5,-38.5 - parent: 30 - type: Transform -- uid: 19624 - type: NitrogenCanister - components: - - pos: -32.5,-38.5 - parent: 30 - type: Transform -- uid: 19625 - type: ClosetEmergencyFilledRandom - components: - - pos: -34.5,-38.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19626 - type: Rack - components: - - pos: -34.5,-40.5 - parent: 30 - type: Transform -- uid: 19627 - type: FirelockElectronics - components: - - pos: -34.59227,-40.321156 - parent: 30 - type: Transform -- uid: 19628 - type: FirelockElectronics - components: - - pos: -34.389145,-40.446156 - parent: 30 - type: Transform -- uid: 19629 - type: CrateEngineeringCableLV - components: - - pos: -31.5,-38.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 19630 - type: PoweredSmallLight - components: - - pos: -31.5,-38.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19631 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -36.5,-39.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19632 - type: ReinforcedWindow - components: - - pos: -23.5,-34.5 - parent: 30 - type: Transform -- uid: 19633 - type: ReinforcedWindow - components: - - pos: -22.5,-34.5 - parent: 30 - type: Transform -- uid: 19634 - type: ReinforcedWindow - components: - - pos: -26.5,-34.5 - parent: 30 - type: Transform -- uid: 19635 - type: ReinforcedWindow - components: - - pos: -25.5,-34.5 - parent: 30 - type: Transform -- uid: 19636 - type: AirlockScienceGlass - components: - - pos: -24.5,-34.5 - parent: 30 - type: Transform -- uid: 19637 - type: EmergencyLight - components: - - pos: 3.5,4.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19638 - type: EmergencyLight - components: - - pos: -16.5,-38.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19639 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19640 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-49.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19641 - type: Grille - components: - - pos: -26.5,-34.5 - parent: 30 - type: Transform -- uid: 19642 - type: Grille - components: - - pos: -23.5,-34.5 - parent: 30 - type: Transform -- uid: 19643 - type: GrilleBroken - components: - - pos: -25.5,-34.5 - parent: 30 - type: Transform -- uid: 19644 - type: Grille - components: - - pos: -22.5,-34.5 - parent: 30 - type: Transform -- uid: 19645 - type: TableCarpet - components: - - pos: -23.5,-31.5 - parent: 30 - type: Transform -- uid: 19646 - type: TableCarpet - components: - - pos: -24.5,-31.5 - parent: 30 - type: Transform -- uid: 19647 - type: TableCarpet - components: - - pos: -25.5,-31.5 - parent: 30 - type: Transform -- uid: 19648 - type: TableCarpet - components: - - pos: -25.5,-32.5 - parent: 30 - type: Transform -- uid: 19649 - type: TableCarpet - components: - - pos: -23.5,-32.5 - parent: 30 - type: Transform -- uid: 19650 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-54.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19651 - type: WallSolid - components: - - pos: -28.5,-33.5 - parent: 30 - type: Transform -- uid: 19652 - type: WallSolid - components: - - pos: -28.5,-32.5 - parent: 30 - type: Transform -- uid: 19653 - type: WallSolid - components: - - pos: -28.5,-31.5 - parent: 30 - type: Transform -- uid: 19654 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-23.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19655 - type: WallSolid - components: - - pos: -27.5,-29.5 - parent: 30 - type: Transform -- uid: 19656 - type: WallSolid - components: - - pos: -26.5,-29.5 - parent: 30 - type: Transform -- uid: 19657 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-23.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19658 - type: WallSolid - components: - - pos: -24.5,-29.5 - parent: 30 - type: Transform -- uid: 19659 - type: WallSolid - components: - - pos: -23.5,-29.5 - parent: 30 - type: Transform -- uid: 19660 - type: WallSolid - components: - - pos: -22.5,-29.5 - parent: 30 - type: Transform -- uid: 19661 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19662 - type: WallSolid - components: - - pos: -20.5,-29.5 - parent: 30 - type: Transform -- uid: 19663 - type: WallSolid - components: - - pos: -28.5,-29.5 - parent: 30 - type: Transform -- uid: 19664 - type: Chair - components: - - pos: -25.5,-30.5 - parent: 30 - type: Transform -- uid: 19665 - type: Chair - components: - - pos: -24.5,-30.5 - parent: 30 - type: Transform -- uid: 19666 - type: Chair - components: - - pos: -23.5,-30.5 - parent: 30 - type: Transform -- uid: 19667 - type: Chair - components: - - pos: -22.5,-31.5 - parent: 30 - type: Transform -- uid: 19668 - type: Chair - components: - - pos: -26.5,-31.5 - parent: 30 - type: Transform -- uid: 19669 - type: LockerFreezer - components: - - pos: -27.5,-30.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19670 - type: WaterCooler - components: - - pos: 7.5,32.5 - parent: 30 - type: Transform -- uid: 19671 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-13.5 - parent: 30 - type: Transform -- uid: 19672 - type: FoodMeat - components: - - pos: -22.151018,-37.269623 - parent: 30 - type: Transform -- uid: 19673 - type: FoodMeat - components: - - pos: -26.088518,-35.832123 - parent: 30 - type: Transform -- uid: 19674 - type: Spear - components: - - pos: -25.947893,-37.066498 - parent: 30 - type: Transform -- uid: 19675 - type: SignSecureMed - components: - - pos: -27.5,-35.5 - parent: 30 - type: Transform -- uid: 19676 - type: SignSecureMed - components: - - pos: -21.5,-35.5 - parent: 30 - type: Transform -- uid: 19677 - type: PartRodMetal1 - components: - - rot: -1.5707963267948966 rad - pos: -23.291643,-36.503998 - parent: 30 - type: Transform -- uid: 19678 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -55.5,15.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19679 - type: EmergencyLight - components: - - pos: -51.5,21.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19680 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-26.5 - parent: 30 - type: Transform -- uid: 19681 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -28.5,29.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19682 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19683 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-27.5 - parent: 30 - type: Transform -- uid: 19684 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-28.5 - parent: 30 - type: Transform -- uid: 19685 - type: Rack - components: - - pos: -15.5,-26.5 - parent: 30 - type: Transform -- uid: 19686 - type: Rack - components: - - pos: -16.5,-26.5 - parent: 30 - type: Transform -- uid: 19687 - type: AirlockMaintLocked - components: - - pos: -19.5,-27.5 - parent: 30 - type: Transform -- uid: 19688 - type: Barricade - components: - - pos: -19.5,-26.5 - parent: 30 - type: Transform -- uid: 19689 - type: Barricade - components: - - pos: -19.5,-29.5 - parent: 30 - type: Transform -- uid: 19690 - type: Barricade - components: - - pos: -20.5,-30.5 - parent: 30 - type: Transform -- uid: 19691 - type: Grille - components: - - pos: -20.5,-31.5 - parent: 30 - type: Transform -- uid: 19692 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-31.5 - parent: 30 - type: Transform -- uid: 19693 - type: ClothingOuterWizardViolet - components: - - pos: -21.523558,-28.023144 - parent: 30 - type: Transform -- uid: 19694 - type: ClothingHeadHatVioletwizard - components: - - pos: -21.586058,-27.491894 - parent: 30 - type: Transform -- uid: 19695 - type: ClothingShoesWizard - components: - - pos: -21.507933,-28.679394 - parent: 30 - type: Transform -- uid: 19696 - type: ClothingEyesGlasses - components: - - pos: -23.555922,-31.355957 - parent: 30 - type: Transform -- uid: 19697 - type: IngotGold1 - components: - - pos: -25.430922,-31.465332 - parent: 30 - type: Transform -- uid: 19698 - type: IngotGold1 - components: - - pos: -23.462172,-32.309082 - parent: 30 - type: Transform -- uid: 19699 - type: DisposalUnit - components: - - pos: -27.5,-34.5 - parent: 30 - type: Transform -- uid: 19700 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-34.5 - parent: 30 - type: Transform -- uid: 19701 - type: DisposalBend - components: - - pos: -26.5,-34.5 - parent: 30 - type: Transform -- uid: 19702 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -26.5,-36.5 - parent: 30 - type: Transform -- uid: 19703 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -26.5,-35.5 - parent: 30 - type: Transform -- uid: 19704 - type: DisposalUnit - components: - - pos: -21.5,-34.5 - parent: 30 - type: Transform -- uid: 19705 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -22.5,-36.5 - parent: 30 - type: Transform -- uid: 19706 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-34.5 - parent: 30 - type: Transform -- uid: 19707 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-34.5 - parent: 30 - type: Transform -- uid: 19708 - type: DisposalPipe - components: - - pos: -22.5,-35.5 - parent: 30 - type: Transform -- uid: 19709 - type: CableApcExtension - components: - - pos: -19.5,-34.5 - parent: 30 - type: Transform -- uid: 19710 - type: CableApcExtension - components: - - pos: -18.5,-34.5 - parent: 30 - type: Transform -- uid: 19711 - type: ClothingHeadHatUshanka - components: - - pos: -25.477394,-32.340332 - parent: 30 - type: Transform -- uid: 19712 - type: MaterialWoodPlank - components: - - pos: -27.508644,-31.559082 - parent: 30 - type: Transform -- uid: 19713 - type: MedkitBruteFilled - components: - - pos: -27.46177,-33.637207 - parent: 30 - type: Transform -- uid: 19714 - type: Barricade - components: - - pos: -26.5,-33.5 - parent: 30 - type: Transform -- uid: 19715 - type: Barricade - components: - - pos: -27.5,-32.5 - parent: 30 - type: Transform -- uid: 19716 - type: Carpet - components: - - pos: -22.5,-32.5 - parent: 30 - type: Transform -- uid: 19717 - type: Carpet - components: - - pos: -21.5,-32.5 - parent: 30 - type: Transform -- uid: 19718 - type: Carpet - components: - - pos: -21.5,-31.5 - parent: 30 - type: Transform -- uid: 19719 - type: FoodBowlBig - components: - - pos: -24.446144,-31.246582 - parent: 30 - type: Transform -- uid: 19720 - type: ClothingHeadHatAnimalCat - components: - - pos: -16.521032,-26.474148 - parent: 30 - type: Transform -- uid: 19721 - type: Carpet - components: - - pos: -29.5,-1.5 - parent: 30 - type: Transform -- uid: 19722 - type: ClothingHeadHatAnimalCatBlack - components: - - pos: 4.47367,18.497892 - parent: 30 - type: Transform -- uid: 19723 - type: MaterialHideBear - components: - - pos: -24.501097,-36.300484 - parent: 30 - type: Transform -- uid: 19724 - type: FirelockGlass - components: - - pos: -26.5,-28.5 - parent: 30 - type: Transform -- uid: 19725 - type: FirelockGlass - components: - - pos: -35.5,-28.5 - parent: 30 - type: Transform -- uid: 19726 - type: Catwalk - components: - - pos: -29.5,-36.5 - parent: 30 - type: Transform -- uid: 19727 - type: Catwalk - components: - - pos: -29.5,-35.5 - parent: 30 - type: Transform -- uid: 19728 - type: Catwalk - components: - - pos: -29.5,-34.5 - parent: 30 - type: Transform -- uid: 19729 - type: Catwalk - components: - - pos: -29.5,-33.5 - parent: 30 - type: Transform -- uid: 19730 - type: Catwalk - components: - - pos: -29.5,-32.5 - parent: 30 - type: Transform -- uid: 19731 - type: Catwalk - components: - - pos: -29.5,-31.5 - parent: 30 - type: Transform -- uid: 19732 - type: Catwalk - components: - - pos: -29.5,-30.5 - parent: 30 - type: Transform -- uid: 19733 - type: Catwalk - components: - - pos: -29.5,-29.5 - parent: 30 - type: Transform -- uid: 19734 - type: Catwalk - components: - - pos: -27.5,-28.5 - parent: 30 - type: Transform -- uid: 19735 - type: Catwalk - components: - - pos: -28.5,-28.5 - parent: 30 - type: Transform -- uid: 19736 - type: Catwalk - components: - - pos: -30.5,-28.5 - parent: 30 - type: Transform -- uid: 19737 - type: Catwalk - components: - - pos: -31.5,-28.5 - parent: 30 - type: Transform -- uid: 19738 - type: Catwalk - components: - - pos: -32.5,-28.5 - parent: 30 - type: Transform -- uid: 19739 - type: Catwalk - components: - - pos: -33.5,-28.5 - parent: 30 - type: Transform -- uid: 19740 - type: Catwalk - components: - - pos: -34.5,-28.5 - parent: 30 - type: Transform -- uid: 19741 - type: FirelockGlass - components: - - pos: -20.5,-25.5 - parent: 30 - type: Transform -- uid: 19742 - type: Catwalk - components: - - pos: -19.5,-25.5 - parent: 30 - type: Transform -- uid: 19743 - type: Catwalk - components: - - pos: -18.5,-25.5 - parent: 30 - type: Transform -- uid: 19744 - type: Catwalk - components: - - pos: -17.5,-25.5 - parent: 30 - type: Transform -- uid: 19745 - type: Catwalk - components: - - pos: -16.5,-25.5 - parent: 30 - type: Transform -- uid: 19746 - type: Catwalk - components: - - pos: -15.5,-25.5 - parent: 30 - type: Transform -- uid: 19747 - type: Catwalk - components: - - pos: -14.5,-25.5 - parent: 30 - type: Transform -- uid: 19748 - type: Catwalk - components: - - pos: -13.5,-25.5 - parent: 30 - type: Transform -- uid: 19749 - type: Catwalk - components: - - pos: -12.5,-25.5 - parent: 30 - type: Transform -- uid: 19750 - type: Catwalk - components: - - pos: -11.5,-25.5 - parent: 30 - type: Transform -- uid: 19751 - type: Catwalk - components: - - pos: -10.5,-25.5 - parent: 30 - type: Transform -- uid: 19752 - type: Catwalk - components: - - pos: -9.5,-25.5 - parent: 30 - type: Transform -- uid: 19753 - type: Catwalk - components: - - pos: -8.5,-25.5 - parent: 30 - type: Transform -- uid: 19754 - type: Catwalk - components: - - pos: -7.5,-25.5 - parent: 30 - type: Transform -- uid: 19755 - type: Catwalk - components: - - pos: -6.5,-25.5 - parent: 30 - type: Transform -- uid: 19756 - type: ClothingUnderSocksCoder - components: - - pos: 11.522639,42.499584 - parent: 30 - type: Transform -- uid: 19757 - type: ClothingUnderSocksCoder - components: - - pos: 24.447042,42.46136 - parent: 30 - type: Transform -- uid: 19758 - type: ClothingNeckCloakHerald - components: - - pos: 39.49874,-51.471012 - parent: 30 - type: Transform -- uid: 19759 - type: Chair - components: - - pos: -57.5,-21.5 - parent: 30 - type: Transform -- uid: 19760 - type: ClothingEyesEyepatch - components: - - pos: -51.56317,-27.519737 - parent: 30 - type: Transform -- uid: 19761 - type: DrinkGrapeCan - components: - - pos: 2.7591581,32.29665 - parent: 30 - type: Transform - - tags: [] - type: Tag -- uid: 19762 - type: ClothingHeadHatFedoraGrey - components: - - pos: 5.49203,10.427187 - parent: 30 - type: Transform -- uid: 19763 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-10.5 - parent: 30 - type: Transform -- uid: 19764 - type: ClothingUniformColorRainbow - components: - - pos: -17.507723,23.466288 - parent: 30 - type: Transform -- uid: 19765 - type: WallReinforced - components: - - pos: -36.5,-64.5 - parent: 30 - type: Transform -- uid: 19766 - type: FirelockGlass - components: - - pos: -41.5,-3.5 - parent: 30 - type: Transform -- uid: 19767 - type: FirelockGlass - components: - - pos: -37.5,-16.5 - parent: 30 - type: Transform -- uid: 19768 - type: WallSolid - components: - - pos: -42.5,-17.5 - parent: 30 - type: Transform -- uid: 19769 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19770 - type: WallSolid - components: - - pos: -40.5,-17.5 - parent: 30 - type: Transform -- uid: 19771 - type: WallSolid - components: - - pos: -39.5,-17.5 - parent: 30 - type: Transform -- uid: 19772 - type: WallSolid - components: - - pos: -38.5,-17.5 - parent: 30 - type: Transform -- uid: 19773 - type: WallSolid - components: - - pos: -37.5,-17.5 - parent: 30 - type: Transform -- uid: 19774 - type: WallSolid - components: - - pos: -42.5,-21.5 - parent: 30 - type: Transform -- uid: 19775 - type: Catwalk - components: - - pos: -41.5,-15.5 - parent: 30 - type: Transform -- uid: 19776 - type: Catwalk - components: - - pos: -41.5,-14.5 - parent: 30 - type: Transform -- uid: 19777 - type: Catwalk - components: - - pos: -41.5,-13.5 - parent: 30 - type: Transform -- uid: 19778 - type: Catwalk - components: - - pos: -41.5,-12.5 - parent: 30 - type: Transform -- uid: 19779 - type: Catwalk - components: - - pos: -41.5,-11.5 - parent: 30 - type: Transform -- uid: 19780 - type: Catwalk - components: - - pos: -41.5,-10.5 - parent: 30 - type: Transform -- uid: 19781 - type: Catwalk - components: - - pos: -41.5,-9.5 - parent: 30 - type: Transform -- uid: 19782 - type: Catwalk - components: - - pos: -41.5,-7.5 - parent: 30 - type: Transform -- uid: 19783 - type: Catwalk - components: - - pos: -41.5,-6.5 - parent: 30 - type: Transform -- uid: 19784 - type: Catwalk - components: - - pos: -41.5,-5.5 - parent: 30 - type: Transform -- uid: 19785 - type: Catwalk - components: - - pos: -41.5,-4.5 - parent: 30 - type: Transform -- uid: 19786 - type: Catwalk - components: - - pos: -37.5,-2.5 - parent: 30 - type: Transform -- uid: 19787 - type: Catwalk - components: - - pos: -38.5,-2.5 - parent: 30 - type: Transform -- uid: 19788 - type: Catwalk - components: - - pos: -39.5,-2.5 - parent: 30 - type: Transform -- uid: 19789 - type: Catwalk - components: - - pos: -40.5,-2.5 - parent: 30 - type: Transform -- uid: 19790 - type: AtmosFixFreezerMarker - components: - - pos: -16.5,14.5 - parent: 30 - type: Transform -- uid: 19791 - type: YellowOxygenTankFilled - components: - - pos: -60.268562,45.564415 - parent: 30 - type: Transform -- uid: 19792 - type: OxygenTankFilled - components: - - pos: -60.549812,45.626915 - parent: 30 - type: Transform -- uid: 19793 - type: MinimoogInstrument - components: - - rot: -1.5707963267948966 rad - pos: -61.5,42.5 - parent: 30 - type: Transform -- uid: 19794 - type: FloraTree05 - components: - - pos: -38.563034,-11.228893 - parent: 30 - type: Transform -- uid: 19795 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-9.5 - parent: 30 - type: Transform -- uid: 19796 - type: Window - components: - - pos: -37.5,-8.5 - parent: 30 - type: Transform -- uid: 19797 - type: CableApcExtension - components: - - pos: -38.5,62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19798 - type: ClothingHandsGlovesBoxingRed - components: - - pos: -25.453346,-35.285748 - parent: 30 - type: Transform -- uid: 19799 - type: ClothingHandsGlovesBoxingBlue - components: - - pos: -22.900457,-37.535748 - parent: 30 - type: Transform -- uid: 19800 - type: APCBasic - components: - - pos: -35.5,-3.5 - parent: 30 - type: Transform -- uid: 19801 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -42.5,-11.5 - parent: 30 - type: Transform -- uid: 19802 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-12.5 - parent: 30 - type: Transform -- uid: 19803 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-13.5 - parent: 30 - type: Transform -- uid: 19804 - type: Rack - components: - - pos: -42.5,-10.5 - parent: 30 - type: Transform -- uid: 19805 - type: DrinkCoffee - components: - - pos: -42.478127,-10.380262 - parent: 30 - type: Transform -- uid: 19806 - type: PoweredSmallLight - components: - - pos: -29.5,-28.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19807 - type: ClothingOuterWinterMiner - components: - - pos: 35.4909,-65.57688 - parent: 30 - type: Transform -- uid: 19808 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-12.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19809 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-16.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19810 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-20.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19811 - type: WeaponDisablerPractice - components: - - pos: -38.42729,60.595303 - parent: 30 - type: Transform -- uid: 19812 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-24.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19813 - type: WeldingFuelTankFull - components: - - pos: -38.5,-28.5 - parent: 30 - type: Transform -- uid: 19814 - type: WallSolid - components: - - pos: -44.5,-25.5 - parent: 30 - type: Transform -- uid: 19815 - type: AirlockMaintLocked - components: - - pos: -45.5,-25.5 - parent: 30 - type: Transform -- uid: 19816 - type: CableHV - components: - - pos: -42.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19817 - type: RandomPosterAny - components: - - pos: -25.5,-25.5 - parent: 30 - type: Transform -- uid: 19818 - type: RandomPosterAny - components: - - pos: -28.5,-37.5 - parent: 30 - type: Transform -- uid: 19819 - type: RandomPosterAny - components: - - pos: -20.5,-32.5 - parent: 30 - type: Transform -- uid: 19820 - type: WallSolid - components: - - pos: -29.5,-42.5 - parent: 30 - type: Transform -- uid: 19821 - type: PosterContrabandVoteWeh - components: - - pos: 11.5,24.5 - parent: 30 - type: Transform -- uid: 19822 - type: Catwalk - components: - - pos: -36.5,-27.5 - parent: 30 - type: Transform -- uid: 19823 - type: Catwalk - components: - - pos: -36.5,-26.5 - parent: 30 - type: Transform -- uid: 19824 - type: Catwalk - components: - - pos: -36.5,-25.5 - parent: 30 - type: Transform -- uid: 19825 - type: Catwalk - components: - - pos: -36.5,-23.5 - parent: 30 - type: Transform -- uid: 19826 - type: Catwalk - components: - - pos: -36.5,-22.5 - parent: 30 - type: Transform -- uid: 19827 - type: Catwalk - components: - - pos: -36.5,-21.5 - parent: 30 - type: Transform -- uid: 19828 - type: Catwalk - components: - - pos: -36.5,-20.5 - parent: 30 - type: Transform -- uid: 19829 - type: Catwalk - components: - - pos: -36.5,-19.5 - parent: 30 - type: Transform -- uid: 19830 - type: Catwalk - components: - - pos: -36.5,-18.5 - parent: 30 - type: Transform -- uid: 19831 - type: Catwalk - components: - - pos: -36.5,-17.5 - parent: 30 - type: Transform -- uid: 19832 - type: Catwalk - components: - - pos: -40.5,-16.5 - parent: 30 - type: Transform -- uid: 19833 - type: Catwalk - components: - - pos: -39.5,-16.5 - parent: 30 - type: Transform -- uid: 19834 - type: Catwalk - components: - - pos: -38.5,-16.5 - parent: 30 - type: Transform -- uid: 19835 - type: WallSolid - components: - - pos: -40.5,-21.5 - parent: 30 - type: Transform -- uid: 19836 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19837 - type: WallSolid - components: - - pos: -39.5,-21.5 - parent: 30 - type: Transform -- uid: 19838 - type: WallSolid - components: - - pos: -38.5,-21.5 - parent: 30 - type: Transform -- uid: 19839 - type: WallSolid - components: - - pos: -37.5,-21.5 - parent: 30 - type: Transform -- uid: 19840 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -41.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19841 - type: EmergencyLight - components: - - pos: -39.5,56.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19842 - type: WallSolid - components: - - pos: -37.5,-18.5 - parent: 30 - type: Transform -- uid: 19843 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -48.5,63.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19844 - type: AtmosFixFreezerMarker - components: - - pos: -16.5,15.5 - parent: 30 - type: Transform -- uid: 19845 - type: FoamBlade - components: - - pos: -41.583946,-22.503822 - parent: 30 - type: Transform -- uid: 19846 - type: DecoratedFirTree - components: - - pos: -40.5,-19.5 - parent: 30 - type: Transform -- uid: 19847 - type: ClothingHeadHatSantahat - components: - - pos: -41.81774,-19.18891 - parent: 30 - type: Transform -- uid: 19848 - type: ClothingHeadHatSantahat - components: - - pos: -39.270866,-18.985785 - parent: 30 - type: Transform -- uid: 19849 - type: ClothingNeckScarfStripedGreen - components: - - pos: -41.66149,-19.97016 - parent: 30 - type: Transform -- uid: 19850 - type: ClothingNeckScarfStripedRed - components: - - pos: -39.47399,-19.90766 - parent: 30 - type: Transform -- uid: 19851 - type: ClothingHeadHatBeaverHat - components: - - pos: -42.56929,-20.293549 - parent: 30 - type: Transform -- uid: 19852 - type: FoodCakeChristmas - components: - - pos: -40.52188,-20.665724 - parent: 30 - type: Transform -- uid: 19853 - type: ClothingHeadHatXmasCrown - components: - - pos: -38.429283,-20.300697 - parent: 30 - type: Transform -- uid: 19854 - type: WallReinforced - components: - - pos: 3.5,63.5 - parent: 30 - type: Transform -- uid: 19855 - type: WallReinforced - components: - - pos: 4.5,63.5 - parent: 30 - type: Transform -- uid: 19856 - type: WallReinforced - components: - - pos: 5.5,63.5 - parent: 30 - type: Transform -- uid: 19857 - type: WallReinforced - components: - - pos: 6.5,63.5 - parent: 30 - type: Transform -- uid: 19858 - type: WallReinforced - components: - - pos: 7.5,63.5 - parent: 30 - type: Transform -- uid: 19859 - type: WallReinforced - components: - - pos: 7.5,64.5 - parent: 30 - type: Transform -- uid: 19860 - type: WallReinforced - components: - - pos: 7.5,65.5 - parent: 30 - type: Transform -- uid: 19861 - type: WallReinforced - components: - - pos: 7.5,66.5 - parent: 30 - type: Transform -- uid: 19862 - type: WallReinforced - components: - - pos: 7.5,67.5 - parent: 30 - type: Transform -- uid: 19863 - type: WallReinforced - components: - - pos: 3.5,64.5 - parent: 30 - type: Transform -- uid: 19864 - type: WallReinforced - components: - - pos: 3.5,65.5 - parent: 30 - type: Transform -- uid: 19865 - type: WallReinforced - components: - - pos: 2.5,65.5 - parent: 30 - type: Transform -- uid: 19866 - type: WallReinforced - components: - - pos: 2.5,67.5 - parent: 30 - type: Transform -- uid: 19867 - type: WallReinforced - components: - - pos: 3.5,67.5 - parent: 30 - type: Transform -- uid: 19868 - type: WallReinforced - components: - - pos: 6.5,67.5 - parent: 30 - type: Transform -- uid: 19869 - type: WallReinforced - components: - - pos: 4.5,67.5 - parent: 30 - type: Transform -- uid: 19870 - type: WallReinforced - components: - - pos: 4.5,68.5 - parent: 30 - type: Transform -- uid: 19871 - type: WallReinforced - components: - - pos: 6.5,68.5 - parent: 30 - type: Transform -- uid: 19872 - type: WallReinforced - components: - - pos: 6.5,72.5 - parent: 30 - type: Transform -- uid: 19873 - type: WallReinforced - components: - - pos: 4.5,72.5 - parent: 30 - type: Transform -- uid: 19874 - type: WallReinforced - components: - - pos: 6.5,69.5 - parent: 30 - type: Transform -- uid: 19875 - type: WallReinforced - components: - - pos: 6.5,70.5 - parent: 30 - type: Transform -- uid: 19876 - type: WallReinforced - components: - - pos: 6.5,71.5 - parent: 30 - type: Transform -- uid: 19877 - type: ReinforcedWindow - components: - - pos: 4.5,69.5 - parent: 30 - type: Transform -- uid: 19878 - type: ReinforcedWindow - components: - - pos: 4.5,70.5 - parent: 30 - type: Transform -- uid: 19879 - type: ReinforcedWindow - components: - - pos: 4.5,71.5 - parent: 30 - type: Transform -- uid: 19880 - type: WallReinforced - components: - - pos: -3.5,65.5 - parent: 30 - type: Transform -- uid: 19881 - type: WallReinforced - components: - - pos: -3.5,67.5 - parent: 30 - type: Transform -- uid: 19882 - type: WallReinforced - components: - - pos: -4.5,65.5 - parent: 30 - type: Transform -- uid: 19883 - type: WallReinforced - components: - - pos: -4.5,67.5 - parent: 30 - type: Transform -- uid: 19884 - type: WallReinforced - components: - - pos: -5.5,67.5 - parent: 30 - type: Transform -- uid: 19885 - type: WallReinforced - components: - - pos: -7.5,68.5 - parent: 30 - type: Transform -- uid: 19886 - type: WallReinforced - components: - - pos: -7.5,67.5 - parent: 30 - type: Transform -- uid: 19887 - type: WallReinforced - components: - - pos: -8.5,67.5 - parent: 30 - type: Transform -- uid: 19888 - type: WallReinforced - components: - - pos: -8.5,66.5 - parent: 30 - type: Transform -- uid: 19889 - type: WallReinforced - components: - - pos: -8.5,65.5 - parent: 30 - type: Transform -- uid: 19890 - type: WallReinforced - components: - - pos: -8.5,64.5 - parent: 30 - type: Transform -- uid: 19891 - type: WallReinforced - components: - - pos: -8.5,63.5 - parent: 30 - type: Transform -- uid: 19892 - type: WallReinforced - components: - - pos: -7.5,63.5 - parent: 30 - type: Transform -- uid: 19893 - type: WallReinforced - components: - - pos: -6.5,63.5 - parent: 30 - type: Transform -- uid: 19894 - type: WallReinforced - components: - - pos: -5.5,63.5 - parent: 30 - type: Transform -- uid: 19895 - type: WallReinforced - components: - - pos: -4.5,63.5 - parent: 30 - type: Transform -- uid: 19896 - type: WallReinforced - components: - - pos: -4.5,64.5 - parent: 30 - type: Transform -- uid: 19897 - type: WallReinforced - components: - - pos: -7.5,69.5 - parent: 30 - type: Transform -- uid: 19898 - type: WallReinforced - components: - - pos: -7.5,70.5 - parent: 30 - type: Transform -- uid: 19899 - type: WallReinforced - components: - - pos: -7.5,71.5 - parent: 30 - type: Transform -- uid: 19900 - type: WallReinforced - components: - - pos: -7.5,72.5 - parent: 30 - type: Transform -- uid: 19901 - type: WallReinforced - components: - - pos: -5.5,68.5 - parent: 30 - type: Transform -- uid: 19902 - type: WallReinforced - components: - - pos: -5.5,72.5 - parent: 30 - type: Transform -- uid: 19903 - type: ReinforcedWindow - components: - - pos: -5.5,69.5 - parent: 30 - type: Transform -- uid: 19904 - type: ReinforcedWindow - components: - - pos: -5.5,70.5 - parent: 30 - type: Transform -- uid: 19905 - type: ReinforcedWindow - components: - - pos: -5.5,71.5 - parent: 30 - type: Transform -- uid: 19906 - type: ReinforcedWindow - components: - - pos: -4.5,62.5 - parent: 30 - type: Transform -- uid: 19907 - type: ReinforcedWindow - components: - - pos: 3.5,62.5 - parent: 30 - type: Transform -- uid: 19908 - type: WallReinforced - components: - - pos: -4.5,61.5 - parent: 30 - type: Transform -- uid: 19909 - type: WallReinforced - components: - - pos: -3.5,61.5 - parent: 30 - type: Transform -- uid: 19910 - type: WallReinforced - components: - - pos: -2.5,61.5 - parent: 30 - type: Transform -- uid: 19911 - type: WallReinforced - components: - - pos: -2.5,60.5 - parent: 30 - type: Transform -- uid: 19912 - type: WallReinforced - components: - - pos: -2.5,59.5 - parent: 30 - type: Transform -- uid: 19913 - type: WallReinforced - components: - - pos: 3.5,61.5 - parent: 30 - type: Transform -- uid: 19914 - type: WallReinforced - components: - - pos: 2.5,61.5 - parent: 30 - type: Transform -- uid: 19915 - type: WallReinforced - components: - - pos: 1.5,61.5 - parent: 30 - type: Transform -- uid: 19916 - type: WallReinforced - components: - - pos: 1.5,60.5 - parent: 30 - type: Transform -- uid: 19917 - type: WallReinforced - components: - - pos: 1.5,59.5 - parent: 30 - type: Transform -- uid: 19918 - type: WallReinforced - components: - - pos: -1.5,60.5 - parent: 30 - type: Transform -- uid: 19919 - type: WallReinforced - components: - - pos: -1.5,61.5 - parent: 30 - type: Transform -- uid: 19920 - type: WallReinforced - components: - - pos: 0.5,60.5 - parent: 30 - type: Transform -- uid: 19921 - type: WallReinforced - components: - - pos: 0.5,61.5 - parent: 30 - type: Transform -- uid: 19922 - type: WallReinforced - components: - - pos: -1.5,62.5 - parent: 30 - type: Transform -- uid: 19923 - type: WallReinforced - components: - - pos: 0.5,62.5 - parent: 30 - type: Transform -- uid: 19924 - type: WallReinforced - components: - - pos: -2.5,67.5 - parent: 30 - type: Transform -- uid: 19925 - type: WallReinforced - components: - - pos: -1.5,67.5 - parent: 30 - type: Transform -- uid: 19926 - type: WallReinforced - components: - - pos: -1.5,68.5 - parent: 30 - type: Transform -- uid: 19927 - type: WallReinforced - components: - - pos: 1.5,67.5 - parent: 30 - type: Transform -- uid: 19928 - type: WallReinforced - components: - - pos: 0.5,67.5 - parent: 30 - type: Transform -- uid: 19929 - type: WallReinforced - components: - - pos: 0.5,68.5 - parent: 30 - type: Transform -- uid: 19930 - type: WallReinforced - components: - - pos: 0.5,72.5 - parent: 30 - type: Transform -- uid: 19931 - type: WallReinforced - components: - - pos: -1.5,72.5 - parent: 30 - type: Transform -- uid: 19932 - type: ReinforcedWindow - components: - - pos: -1.5,69.5 - parent: 30 - type: Transform -- uid: 19933 - type: ReinforcedWindow - components: - - pos: -1.5,70.5 - parent: 30 - type: Transform -- uid: 19934 - type: ReinforcedWindow - components: - - pos: -1.5,71.5 - parent: 30 - type: Transform -- uid: 19935 - type: ReinforcedWindow - components: - - pos: 0.5,69.5 - parent: 30 - type: Transform -- uid: 19936 - type: ReinforcedWindow - components: - - pos: 0.5,70.5 - parent: 30 - type: Transform -- uid: 19937 - type: ReinforcedWindow - components: - - pos: 0.5,71.5 - parent: 30 - type: Transform -- uid: 19938 - type: WallReinforced - components: - - pos: -7.5,73.5 - parent: 30 - type: Transform -- uid: 19939 - type: WallReinforced - components: - - pos: -5.5,73.5 - parent: 30 - type: Transform -- uid: 19940 - type: WallReinforced - components: - - pos: -4.5,73.5 - parent: 30 - type: Transform -- uid: 19941 - type: WallReinforced - components: - - pos: -3.5,73.5 - parent: 30 - type: Transform -- uid: 19942 - type: WallReinforced - components: - - pos: -2.5,73.5 - parent: 30 - type: Transform -- uid: 19943 - type: WallReinforced - components: - - pos: -1.5,73.5 - parent: 30 - type: Transform -- uid: 19944 - type: WallReinforced - components: - - pos: 0.5,73.5 - parent: 30 - type: Transform -- uid: 19945 - type: WallReinforced - components: - - pos: 1.5,73.5 - parent: 30 - type: Transform -- uid: 19946 - type: WallReinforced - components: - - pos: 2.5,73.5 - parent: 30 - type: Transform -- uid: 19947 - type: WallReinforced - components: - - pos: 3.5,73.5 - parent: 30 - type: Transform -- uid: 19948 - type: WallReinforced - components: - - pos: 4.5,73.5 - parent: 30 - type: Transform -- uid: 19949 - type: WallReinforced - components: - - pos: 6.5,73.5 - parent: 30 - type: Transform -- uid: 19950 - type: WallReinforced - components: - - pos: -3.5,75.5 - parent: 30 - type: Transform -- uid: 19951 - type: WallReinforced - components: - - pos: -3.5,76.5 - parent: 30 - type: Transform -- uid: 19952 - type: WallReinforced - components: - - pos: -3.5,77.5 - parent: 30 - type: Transform -- uid: 19953 - type: WallReinforced - components: - - pos: -4.5,77.5 - parent: 30 - type: Transform -- uid: 19954 - type: WallReinforced - components: - - pos: -5.5,77.5 - parent: 30 - type: Transform -- uid: 19955 - type: WallReinforced - components: - - pos: -6.5,77.5 - parent: 30 - type: Transform -- uid: 19956 - type: WallReinforced - components: - - pos: -7.5,74.5 - parent: 30 - type: Transform -- uid: 19957 - type: WallReinforced - components: - - pos: -7.5,75.5 - parent: 30 - type: Transform -- uid: 19958 - type: WallReinforced - components: - - pos: -7.5,76.5 - parent: 30 - type: Transform -- uid: 19959 - type: WallReinforced - components: - - pos: -7.5,77.5 - parent: 30 - type: Transform -- uid: 19960 - type: WallReinforced - components: - - pos: 6.5,74.5 - parent: 30 - type: Transform -- uid: 19961 - type: WallReinforced - components: - - pos: 6.5,75.5 - parent: 30 - type: Transform -- uid: 19962 - type: WallReinforced - components: - - pos: 6.5,76.5 - parent: 30 - type: Transform -- uid: 19963 - type: WallReinforced - components: - - pos: 6.5,77.5 - parent: 30 - type: Transform -- uid: 19964 - type: WallReinforced - components: - - pos: 5.5,77.5 - parent: 30 - type: Transform -- uid: 19965 - type: WallReinforced - components: - - pos: 3.5,77.5 - parent: 30 - type: Transform -- uid: 19966 - type: WallReinforced - components: - - pos: 4.5,77.5 - parent: 30 - type: Transform -- uid: 19967 - type: WallReinforced - components: - - pos: 2.5,77.5 - parent: 30 - type: Transform -- uid: 19968 - type: WallReinforced - components: - - pos: 2.5,76.5 - parent: 30 - type: Transform -- uid: 19969 - type: WallReinforced - components: - - pos: 2.5,75.5 - parent: 30 - type: Transform -- uid: 19970 - type: WallReinforced - components: - - pos: -2.5,77.5 - parent: 30 - type: Transform -- uid: 19971 - type: WallReinforced - components: - - pos: 1.5,77.5 - parent: 30 - type: Transform -- uid: 19972 - type: ReinforcedWindow - components: - - pos: -2.5,76.5 - parent: 30 - type: Transform -- uid: 19973 - type: ReinforcedWindow - components: - - pos: -1.5,76.5 - parent: 30 - type: Transform -- uid: 19974 - type: ReinforcedWindow - components: - - pos: 0.5,76.5 - parent: 30 - type: Transform -- uid: 19975 - type: ReinforcedWindow - components: - - pos: 1.5,76.5 - parent: 30 - type: Transform -- uid: 19976 - type: WallReinforced - components: - - pos: -6.5,78.5 - parent: 30 - type: Transform -- uid: 19977 - type: WallReinforced - components: - - pos: -6.5,79.5 - parent: 30 - type: Transform -- uid: 19978 - type: WallReinforced - components: - - pos: -6.5,80.5 - parent: 30 - type: Transform -- uid: 19979 - type: WallReinforced - components: - - pos: -6.5,81.5 - parent: 30 - type: Transform -- uid: 19980 - type: WallReinforced - components: - - pos: -6.5,82.5 - parent: 30 - type: Transform -- uid: 19981 - type: WallReinforced - components: - - pos: -6.5,83.5 - parent: 30 - type: Transform -- uid: 19982 - type: WallReinforced - components: - - pos: -6.5,84.5 - parent: 30 - type: Transform -- uid: 19983 - type: WallReinforced - components: - - pos: -6.5,85.5 - parent: 30 - type: Transform -- uid: 19984 - type: WallReinforced - components: - - pos: -6.5,86.5 - parent: 30 - type: Transform -- uid: 19985 - type: WallReinforced - components: - - pos: -6.5,87.5 - parent: 30 - type: Transform -- uid: 19986 - type: WallReinforced - components: - - pos: -6.5,88.5 - parent: 30 - type: Transform -- uid: 19987 - type: WallReinforced - components: - - pos: -6.5,89.5 - parent: 30 - type: Transform -- uid: 19988 - type: WallReinforced - components: - - pos: -5.5,89.5 - parent: 30 - type: Transform -- uid: 19989 - type: WallReinforced - components: - - pos: -4.5,89.5 - parent: 30 - type: Transform -- uid: 19990 - type: WallReinforced - components: - - pos: -3.5,89.5 - parent: 30 - type: Transform -- uid: 19991 - type: WallReinforced - components: - - pos: -2.5,89.5 - parent: 30 - type: Transform -- uid: 19992 - type: WallReinforced - components: - - pos: -1.5,89.5 - parent: 30 - type: Transform -- uid: 19993 - type: WallReinforced - components: - - pos: -0.5,89.5 - parent: 30 - type: Transform -- uid: 19994 - type: WallReinforced - components: - - pos: 0.5,89.5 - parent: 30 - type: Transform -- uid: 19995 - type: WallReinforced - components: - - pos: 1.5,89.5 - parent: 30 - type: Transform -- uid: 19996 - type: WallReinforced - components: - - pos: 2.5,89.5 - parent: 30 - type: Transform -- uid: 19997 - type: WallReinforced - components: - - pos: 3.5,89.5 - parent: 30 - type: Transform -- uid: 19998 - type: WallReinforced - components: - - pos: 4.5,89.5 - parent: 30 - type: Transform -- uid: 19999 - type: WallReinforced - components: - - pos: 5.5,89.5 - parent: 30 - type: Transform -- uid: 20000 - type: WallReinforced - components: - - pos: 5.5,88.5 - parent: 30 - type: Transform -- uid: 20001 - type: WallReinforced - components: - - pos: 5.5,87.5 - parent: 30 - type: Transform -- uid: 20002 - type: WallReinforced - components: - - pos: 5.5,86.5 - parent: 30 - type: Transform -- uid: 20003 - type: WallReinforced - components: - - pos: 5.5,85.5 - parent: 30 - type: Transform -- uid: 20004 - type: WallReinforced - components: - - pos: 5.5,84.5 - parent: 30 - type: Transform -- uid: 20005 - type: WallReinforced - components: - - pos: 5.5,83.5 - parent: 30 - type: Transform -- uid: 20006 - type: WallReinforced - components: - - pos: 5.5,82.5 - parent: 30 - type: Transform -- uid: 20007 - type: WallReinforced - components: - - pos: 5.5,81.5 - parent: 30 - type: Transform -- uid: 20008 - type: WallReinforced - components: - - pos: 5.5,80.5 - parent: 30 - type: Transform -- uid: 20009 - type: WallReinforced - components: - - pos: 5.5,79.5 - parent: 30 - type: Transform -- uid: 20010 - type: WallReinforced - components: - - pos: 5.5,78.5 - parent: 30 - type: Transform -- uid: 20011 - type: WallReinforced - components: - - pos: -2.5,80.5 - parent: 30 - type: Transform -- uid: 20012 - type: WallReinforced - components: - - pos: -2.5,81.5 - parent: 30 - type: Transform -- uid: 20013 - type: WallReinforced - components: - - pos: -3.5,81.5 - parent: 30 - type: Transform -- uid: 20014 - type: WallReinforced - components: - - pos: -3.5,82.5 - parent: 30 - type: Transform -- uid: 20015 - type: WallReinforced - components: - - pos: -2.5,82.5 - parent: 30 - type: Transform -- uid: 20016 - type: WallReinforced - components: - - pos: -1.5,82.5 - parent: 30 - type: Transform -- uid: 20017 - type: WallReinforced - components: - - pos: -1.5,81.5 - parent: 30 - type: Transform -- uid: 20018 - type: WallReinforced - components: - - pos: -1.5,80.5 - parent: 30 - type: Transform -- uid: 20019 - type: WallReinforced - components: - - pos: -0.5,80.5 - parent: 30 - type: Transform -- uid: 20020 - type: WallReinforced - components: - - pos: -0.5,81.5 - parent: 30 - type: Transform -- uid: 20021 - type: WallReinforced - components: - - pos: 0.5,80.5 - parent: 30 - type: Transform -- uid: 20022 - type: WallReinforced - components: - - pos: 0.5,81.5 - parent: 30 - type: Transform -- uid: 20023 - type: WallReinforced - components: - - pos: 0.5,82.5 - parent: 30 - type: Transform -- uid: 20024 - type: WallReinforced - components: - - pos: 1.5,82.5 - parent: 30 - type: Transform -- uid: 20025 - type: WallReinforced - components: - - pos: 2.5,82.5 - parent: 30 - type: Transform -- uid: 20026 - type: WallReinforced - components: - - pos: 2.5,81.5 - parent: 30 - type: Transform -- uid: 20027 - type: WallReinforced - components: - - pos: 1.5,81.5 - parent: 30 - type: Transform -- uid: 20028 - type: WallReinforced - components: - - pos: 1.5,80.5 - parent: 30 - type: Transform -- uid: 20029 - type: WallReinforced - components: - - pos: 2.5,84.5 - parent: 30 - type: Transform -- uid: 20030 - type: WallReinforced - components: - - pos: 1.5,84.5 - parent: 30 - type: Transform -- uid: 20031 - type: WallReinforced - components: - - pos: 1.5,85.5 - parent: 30 - type: Transform -- uid: 20032 - type: WallReinforced - components: - - pos: 2.5,85.5 - parent: 30 - type: Transform -- uid: 20033 - type: WallReinforced - components: - - pos: 1.5,86.5 - parent: 30 - type: Transform -- uid: 20034 - type: WallReinforced - components: - - pos: 0.5,86.5 - parent: 30 - type: Transform -- uid: 20035 - type: WallReinforced - components: - - pos: 0.5,85.5 - parent: 30 - type: Transform -- uid: 20036 - type: WallReinforced - components: - - pos: -0.5,85.5 - parent: 30 - type: Transform -- uid: 20037 - type: WallReinforced - components: - - pos: -0.5,86.5 - parent: 30 - type: Transform -- uid: 20038 - type: WallReinforced - components: - - pos: -1.5,86.5 - parent: 30 - type: Transform -- uid: 20039 - type: WallReinforced - components: - - pos: -1.5,85.5 - parent: 30 - type: Transform -- uid: 20040 - type: WallReinforced - components: - - pos: -2.5,85.5 - parent: 30 - type: Transform -- uid: 20041 - type: WallReinforced - components: - - pos: -2.5,86.5 - parent: 30 - type: Transform -- uid: 20042 - type: WallReinforced - components: - - pos: -3.5,85.5 - parent: 30 - type: Transform -- uid: 20043 - type: WallReinforced - components: - - pos: -3.5,84.5 - parent: 30 - type: Transform -- uid: 20044 - type: WallReinforced - components: - - pos: -2.5,84.5 - parent: 30 - type: Transform -- uid: 20045 - type: APCBasic - components: - - pos: 0.5,85.5 - parent: 30 - type: Transform -- uid: 20046 - type: SMESBasic - components: - - pos: -0.5,84.5 - parent: 30 - type: Transform -- uid: 20047 - type: AirlockCaptainGlassLocked - components: - - pos: -2.5,83.5 - parent: 30 - type: Transform -- uid: 20048 - type: AirlockCaptainGlassLocked - components: - - pos: -3.5,83.5 - parent: 30 - type: Transform -- uid: 20049 - type: AirlockCaptainGlassLocked - components: - - pos: 2.5,83.5 - parent: 30 - type: Transform -- uid: 20050 - type: AirlockCaptainGlassLocked - components: - - pos: 1.5,83.5 - parent: 30 - type: Transform -- uid: 20051 - type: FirelockGlass - components: - - pos: -2.5,78.5 - parent: 30 - type: Transform -- uid: 20052 - type: FirelockGlass - components: - - pos: -2.5,79.5 - parent: 30 - type: Transform -- uid: 20053 - type: FirelockGlass - components: - - pos: 1.5,78.5 - parent: 30 - type: Transform -- uid: 20054 - type: FirelockGlass - components: - - pos: 1.5,79.5 - parent: 30 - type: Transform -- uid: 20055 - type: Grille - components: - - pos: -1.5,76.5 - parent: 30 - type: Transform -- uid: 20056 - type: Grille - components: - - pos: -2.5,76.5 - parent: 30 - type: Transform -- uid: 20057 - type: Grille - components: - - pos: 0.5,76.5 - parent: 30 - type: Transform -- uid: 20058 - type: Grille - components: - - pos: 1.5,76.5 - parent: 30 - type: Transform -- uid: 20059 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -0.5,60.5 - parent: 30 - type: Transform -- uid: 20060 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -0.5,62.5 - parent: 30 - type: Transform -- uid: 20061 - type: Grille - components: - - pos: -6.5,91.5 - parent: 30 - type: Transform -- uid: 20062 - type: Grille - components: - - pos: -5.5,91.5 - parent: 30 - type: Transform -- uid: 20063 - type: Grille - components: - - pos: -4.5,91.5 - parent: 30 - type: Transform -- uid: 20064 - type: Grille - components: - - pos: -3.5,91.5 - parent: 30 - type: Transform -- uid: 20065 - type: Grille - components: - - pos: -2.5,91.5 - parent: 30 - type: Transform -- uid: 20066 - type: Grille - components: - - pos: -1.5,91.5 - parent: 30 - type: Transform -- uid: 20067 - type: Grille - components: - - pos: -0.5,91.5 - parent: 30 - type: Transform -- uid: 20068 - type: Grille - components: - - pos: 0.5,91.5 - parent: 30 - type: Transform -- uid: 20069 - type: Grille - components: - - pos: 1.5,91.5 - parent: 30 - type: Transform -- uid: 20070 - type: Grille - components: - - pos: 2.5,91.5 - parent: 30 - type: Transform -- uid: 20071 - type: Grille - components: - - pos: 3.5,91.5 - parent: 30 - type: Transform -- uid: 20072 - type: Grille - components: - - pos: 4.5,91.5 - parent: 30 - type: Transform -- uid: 20073 - type: Grille - components: - - pos: 5.5,91.5 - parent: 30 - type: Transform -- uid: 20074 - type: Grille - components: - - pos: 7.5,91.5 - parent: 30 - type: Transform -- uid: 20075 - type: Grille - components: - - pos: 7.5,90.5 - parent: 30 - type: Transform -- uid: 20076 - type: Grille - components: - - pos: 7.5,89.5 - parent: 30 - type: Transform -- uid: 20077 - type: Grille - components: - - pos: 7.5,88.5 - parent: 30 - type: Transform -- uid: 20078 - type: Grille - components: - - pos: 7.5,87.5 - parent: 30 - type: Transform -- uid: 20079 - type: Grille - components: - - pos: 7.5,86.5 - parent: 30 - type: Transform -- uid: 20080 - type: Grille - components: - - pos: 7.5,85.5 - parent: 30 - type: Transform -- uid: 20081 - type: Grille - components: - - pos: 7.5,84.5 - parent: 30 - type: Transform -- uid: 20082 - type: Grille - components: - - pos: 7.5,83.5 - parent: 30 - type: Transform -- uid: 20083 - type: Grille - components: - - pos: 7.5,82.5 - parent: 30 - type: Transform -- uid: 20084 - type: Grille - components: - - pos: 7.5,81.5 - parent: 30 - type: Transform -- uid: 20085 - type: Grille - components: - - pos: 7.5,80.5 - parent: 30 - type: Transform -- uid: 20086 - type: Grille - components: - - pos: 7.5,79.5 - parent: 30 - type: Transform -- uid: 20087 - type: Grille - components: - - pos: -8.5,79.5 - parent: 30 - type: Transform -- uid: 20088 - type: Grille - components: - - pos: -8.5,80.5 - parent: 30 - type: Transform -- uid: 20089 - type: Grille - components: - - pos: -8.5,81.5 - parent: 30 - type: Transform -- uid: 20090 - type: Grille - components: - - pos: -8.5,82.5 - parent: 30 - type: Transform -- uid: 20091 - type: Grille - components: - - pos: -8.5,83.5 - parent: 30 - type: Transform -- uid: 20092 - type: Grille - components: - - pos: -8.5,84.5 - parent: 30 - type: Transform -- uid: 20093 - type: Grille - components: - - pos: -8.5,85.5 - parent: 30 - type: Transform -- uid: 20094 - type: Grille - components: - - pos: -8.5,86.5 - parent: 30 - type: Transform -- uid: 20095 - type: Grille - components: - - pos: -8.5,87.5 - parent: 30 - type: Transform -- uid: 20096 - type: Grille - components: - - pos: -8.5,88.5 - parent: 30 - type: Transform -- uid: 20097 - type: Grille - components: - - pos: -8.5,89.5 - parent: 30 - type: Transform -- uid: 20098 - type: Grille - components: - - pos: -8.5,90.5 - parent: 30 - type: Transform -- uid: 20099 - type: Grille - components: - - pos: -8.5,91.5 - parent: 30 - type: Transform -- uid: 20100 - type: Grille - components: - - pos: -9.5,77.5 - parent: 30 - type: Transform -- uid: 20101 - type: Grille - components: - - pos: -9.5,76.5 - parent: 30 - type: Transform -- uid: 20102 - type: Grille - components: - - pos: -9.5,75.5 - parent: 30 - type: Transform -- uid: 20103 - type: Grille - components: - - pos: -9.5,74.5 - parent: 30 - type: Transform -- uid: 20104 - type: Grille - components: - - pos: -9.5,73.5 - parent: 30 - type: Transform -- uid: 20105 - type: Grille - components: - - pos: -9.5,72.5 - parent: 30 - type: Transform -- uid: 20106 - type: Grille - components: - - pos: -9.5,71.5 - parent: 30 - type: Transform -- uid: 20107 - type: Grille - components: - - pos: -9.5,70.5 - parent: 30 - type: Transform -- uid: 20108 - type: Grille - components: - - pos: -9.5,69.5 - parent: 30 - type: Transform -- uid: 20109 - type: Grille - components: - - pos: -10.5,67.5 - parent: 30 - type: Transform -- uid: 20110 - type: Grille - components: - - pos: -10.5,66.5 - parent: 30 - type: Transform -- uid: 20111 - type: Grille - components: - - pos: -10.5,65.5 - parent: 30 - type: Transform -- uid: 20112 - type: Grille - components: - - pos: -10.5,64.5 - parent: 30 - type: Transform -- uid: 20113 - type: Grille - components: - - pos: -10.5,63.5 - parent: 30 - type: Transform -- uid: 20114 - type: Grille - components: - - pos: -6.5,61.5 - parent: 30 - type: Transform -- uid: 20115 - type: Grille - components: - - pos: -7.5,61.5 - parent: 30 - type: Transform -- uid: 20116 - type: Grille - components: - - pos: -8.5,61.5 - parent: 30 - type: Transform -- uid: 20117 - type: Grille - components: - - pos: -9.5,61.5 - parent: 30 - type: Transform -- uid: 20118 - type: Grille - components: - - pos: -10.5,61.5 - parent: 30 - type: Transform -- uid: 20119 - type: Grille - components: - - pos: 5.5,61.5 - parent: 30 - type: Transform -- uid: 20120 - type: Grille - components: - - pos: 6.5,61.5 - parent: 30 - type: Transform -- uid: 20121 - type: Grille - components: - - pos: 7.5,61.5 - parent: 30 - type: Transform -- uid: 20122 - type: Grille - components: - - pos: 10.5,55.5 - parent: 30 - type: Transform -- uid: 20123 - type: Grille - components: - - pos: 10.5,59.5 - parent: 30 - type: Transform -- uid: 20124 - type: Grille - components: - - pos: 10.5,57.5 - parent: 30 - type: Transform -- uid: 20125 - type: Grille - components: - - pos: 10.5,53.5 - parent: 30 - type: Transform -- uid: 20126 - type: Grille - components: - - pos: 9.5,65.5 - parent: 30 - type: Transform -- uid: 20127 - type: Grille - components: - - pos: 9.5,66.5 - parent: 30 - type: Transform -- uid: 20128 - type: Grille - components: - - pos: 9.5,67.5 - parent: 30 - type: Transform -- uid: 20129 - type: Grille - components: - - pos: 8.5,69.5 - parent: 30 - type: Transform -- uid: 20130 - type: Grille - components: - - pos: 8.5,70.5 - parent: 30 - type: Transform -- uid: 20131 - type: Grille - components: - - pos: 8.5,71.5 - parent: 30 - type: Transform -- uid: 20132 - type: Grille - components: - - pos: 8.5,72.5 - parent: 30 - type: Transform -- uid: 20133 - type: Grille - components: - - pos: 8.5,73.5 - parent: 30 - type: Transform -- uid: 20134 - type: Grille - components: - - pos: 8.5,74.5 - parent: 30 - type: Transform -- uid: 20135 - type: Grille - components: - - pos: 8.5,75.5 - parent: 30 - type: Transform -- uid: 20136 - type: Grille - components: - - pos: 8.5,76.5 - parent: 30 - type: Transform -- uid: 20137 - type: Grille - components: - - pos: 8.5,77.5 - parent: 30 - type: Transform -- uid: 20138 - type: HighSecDoor - components: - - pos: -0.5,76.5 - parent: 30 - type: Transform -- uid: 20139 - type: PottedPlantBioluminscent - components: - - pos: -1.5,66.5 - parent: 30 - type: Transform -- uid: 20140 - type: PottedPlantBioluminscent - components: - - pos: 0.5,66.5 - parent: 30 - type: Transform -- uid: 20141 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,65.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20142 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,65.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20143 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -3.5,68.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20144 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 2.5,68.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20145 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,65.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20146 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,65.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20147 - type: PoweredSmallLight - components: - - pos: 2.5,72.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20148 - type: PoweredSmallLight - components: - - pos: -3.5,72.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20149 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 0.5,74.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20150 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -1.5,74.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20151 - type: Poweredlight - components: - - pos: -0.5,79.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20152 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -0.5,87.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20153 - type: PoweredSmallLight - components: - - pos: -0.5,84.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20154 - type: SubstationBasic - components: - - pos: -1.5,84.5 - parent: 30 - type: Transform -- uid: 20155 - type: CableHV - components: - - pos: -0.5,84.5 - parent: 30 - type: Transform -- uid: 20156 - type: CableHV - components: - - pos: -1.5,84.5 - parent: 30 - type: Transform -- uid: 20157 - type: CableMV - components: - - pos: -1.5,84.5 - parent: 30 - type: Transform -- uid: 20158 - type: CableMV - components: - - pos: -1.5,83.5 - parent: 30 - type: Transform -- uid: 20159 - type: CableMV - components: - - pos: -0.5,83.5 - parent: 30 - type: Transform -- uid: 20160 - type: CableMV - components: - - pos: 0.5,83.5 - parent: 30 - type: Transform -- uid: 20161 - type: CableMV - components: - - pos: 0.5,84.5 - parent: 30 - type: Transform -- uid: 20162 - type: CableMV - components: - - pos: 0.5,85.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20163 - type: CableApcExtension - components: - - pos: 0.5,85.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20164 - type: CableApcExtension - components: - - pos: 0.5,84.5 - parent: 30 - type: Transform -- uid: 20165 - type: CableApcExtension - components: - - pos: 0.5,83.5 - parent: 30 - type: Transform -- uid: 20166 - type: CableApcExtension - components: - - pos: -0.5,83.5 - parent: 30 - type: Transform -- uid: 20167 - type: CableApcExtension - components: - - pos: -1.5,83.5 - parent: 30 - type: Transform -- uid: 20168 - type: CableApcExtension - components: - - pos: -2.5,83.5 - parent: 30 - type: Transform -- uid: 20169 - type: CableApcExtension - components: - - pos: -3.5,83.5 - parent: 30 - type: Transform -- uid: 20170 - type: CableApcExtension - components: - - pos: -4.5,83.5 - parent: 30 - type: Transform -- uid: 20171 - type: CableApcExtension - components: - - pos: -4.5,82.5 - parent: 30 - type: Transform -- uid: 20172 - type: CableApcExtension - components: - - pos: -4.5,81.5 - parent: 30 - type: Transform -- uid: 20173 - type: CableApcExtension - components: - - pos: -4.5,80.5 - parent: 30 - type: Transform -- uid: 20174 - type: CableApcExtension - components: - - pos: -3.5,80.5 - parent: 30 - type: Transform -- uid: 20175 - type: CableApcExtension - components: - - pos: -3.5,79.5 - parent: 30 - type: Transform -- uid: 20176 - type: CableApcExtension - components: - - pos: -2.5,79.5 - parent: 30 - type: Transform -- uid: 20177 - type: CableApcExtension - components: - - pos: -1.5,79.5 - parent: 30 - type: Transform -- uid: 20178 - type: CableApcExtension - components: - - pos: -0.5,79.5 - parent: 30 - type: Transform -- uid: 20179 - type: CableApcExtension - components: - - pos: 0.5,79.5 - parent: 30 - type: Transform -- uid: 20180 - type: CableApcExtension - components: - - pos: 1.5,79.5 - parent: 30 - type: Transform -- uid: 20181 - type: CableApcExtension - components: - - pos: 2.5,79.5 - parent: 30 - type: Transform -- uid: 20182 - type: CableApcExtension - components: - - pos: 2.5,80.5 - parent: 30 - type: Transform -- uid: 20183 - type: CableApcExtension - components: - - pos: 3.5,80.5 - parent: 30 - type: Transform -- uid: 20184 - type: CableApcExtension - components: - - pos: 3.5,81.5 - parent: 30 - type: Transform -- uid: 20185 - type: CableApcExtension - components: - - pos: 3.5,82.5 - parent: 30 - type: Transform -- uid: 20186 - type: CableApcExtension - components: - - pos: 3.5,83.5 - parent: 30 - type: Transform -- uid: 20187 - type: CableApcExtension - components: - - pos: 3.5,84.5 - parent: 30 - type: Transform -- uid: 20188 - type: CableApcExtension - components: - - pos: 3.5,85.5 - parent: 30 - type: Transform -- uid: 20189 - type: CableApcExtension - components: - - pos: 3.5,86.5 - parent: 30 - type: Transform -- uid: 20190 - type: CableApcExtension - components: - - pos: 2.5,86.5 - parent: 30 - type: Transform -- uid: 20191 - type: CableApcExtension - components: - - pos: 2.5,87.5 - parent: 30 - type: Transform -- uid: 20192 - type: CableApcExtension - components: - - pos: 1.5,87.5 - parent: 30 - type: Transform -- uid: 20193 - type: CableApcExtension - components: - - pos: 0.5,87.5 - parent: 30 - type: Transform -- uid: 20194 - type: CableApcExtension - components: - - pos: -0.5,87.5 - parent: 30 - type: Transform -- uid: 20195 - type: CableApcExtension - components: - - pos: -1.5,87.5 - parent: 30 - type: Transform -- uid: 20196 - type: CableApcExtension - components: - - pos: -2.5,87.5 - parent: 30 - type: Transform -- uid: 20197 - type: CableApcExtension - components: - - pos: -3.5,87.5 - parent: 30 - type: Transform -- uid: 20198 - type: CableApcExtension - components: - - pos: -3.5,86.5 - parent: 30 - type: Transform -- uid: 20199 - type: CableApcExtension - components: - - pos: -4.5,86.5 - parent: 30 - type: Transform -- uid: 20200 - type: CableApcExtension - components: - - pos: -4.5,85.5 - parent: 30 - type: Transform -- uid: 20201 - type: CableApcExtension - components: - - pos: -4.5,84.5 - parent: 30 - type: Transform -- uid: 20202 - type: CableApcExtension - components: - - pos: 1.5,83.5 - parent: 30 - type: Transform -- uid: 20203 - type: CableApcExtension - components: - - pos: 2.5,83.5 - parent: 30 - type: Transform -- uid: 20204 - type: CableApcExtension - components: - - pos: -0.5,82.5 - parent: 30 - type: Transform -- uid: 20205 - type: CableApcExtension - components: - - pos: -0.5,78.5 - parent: 30 - type: Transform -- uid: 20206 - type: CableApcExtension - components: - - pos: -0.5,77.5 - parent: 30 - type: Transform -- uid: 20207 - type: CableApcExtension - components: - - pos: -0.5,76.5 - parent: 30 - type: Transform -- uid: 20208 - type: CableApcExtension - components: - - pos: -0.5,75.5 - parent: 30 - type: Transform -- uid: 20209 - type: CableApcExtension - components: - - pos: -0.5,74.5 - parent: 30 - type: Transform -- uid: 20210 - type: CableApcExtension - components: - - pos: -0.5,73.5 - parent: 30 - type: Transform -- uid: 20211 - type: CableApcExtension - components: - - pos: -0.5,72.5 - parent: 30 - type: Transform -- uid: 20212 - type: CableApcExtension - components: - - pos: -0.5,71.5 - parent: 30 - type: Transform -- uid: 20213 - type: CableApcExtension - components: - - pos: -0.5,70.5 - parent: 30 - type: Transform -- uid: 20214 - type: CableApcExtension - components: - - pos: -0.5,69.5 - parent: 30 - type: Transform -- uid: 20215 - type: CableApcExtension - components: - - pos: -0.5,68.5 - parent: 30 - type: Transform -- uid: 20216 - type: CableApcExtension - components: - - pos: -0.5,67.5 - parent: 30 - type: Transform -- uid: 20217 - type: CableApcExtension - components: - - pos: -0.5,66.5 - parent: 30 - type: Transform -- uid: 20218 - type: CableApcExtension - components: - - pos: -0.5,65.5 - parent: 30 - type: Transform -- uid: 20219 - type: CableApcExtension - components: - - pos: -0.5,64.5 - parent: 30 - type: Transform -- uid: 20220 - type: CableApcExtension - components: - - pos: -0.5,63.5 - parent: 30 - type: Transform -- uid: 20221 - type: CableApcExtension - components: - - pos: -0.5,62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20222 - type: CableApcExtension - components: - - pos: -0.5,60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20223 - type: CableApcExtension - components: - - pos: -0.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20224 - type: CableApcExtension - components: - - pos: -1.5,66.5 - parent: 30 - type: Transform -- uid: 20225 - type: CableApcExtension - components: - - pos: -2.5,66.5 - parent: 30 - type: Transform -- uid: 20226 - type: CableApcExtension - components: - - pos: -3.5,66.5 - parent: 30 - type: Transform -- uid: 20227 - type: CableApcExtension - components: - - pos: -4.5,66.5 - parent: 30 - type: Transform -- uid: 20228 - type: CableApcExtension - components: - - pos: -5.5,66.5 - parent: 30 - type: Transform -- uid: 20229 - type: CableApcExtension - components: - - pos: -6.5,66.5 - parent: 30 - type: Transform -- uid: 20230 - type: CableApcExtension - components: - - pos: -6.5,67.5 - parent: 30 - type: Transform -- uid: 20231 - type: CableApcExtension - components: - - pos: -6.5,68.5 - parent: 30 - type: Transform -- uid: 20232 - type: CableApcExtension - components: - - pos: -6.5,70.5 - parent: 30 - type: Transform -- uid: 20233 - type: CableApcExtension - components: - - pos: -6.5,69.5 - parent: 30 - type: Transform -- uid: 20234 - type: CableApcExtension - components: - - pos: -6.5,71.5 - parent: 30 - type: Transform -- uid: 20235 - type: CableApcExtension - components: - - pos: -6.5,72.5 - parent: 30 - type: Transform -- uid: 20236 - type: CableApcExtension - components: - - pos: -6.5,73.5 - parent: 30 - type: Transform -- uid: 20237 - type: CableApcExtension - components: - - pos: -6.5,74.5 - parent: 30 - type: Transform -- uid: 20238 - type: CableApcExtension - components: - - pos: -5.5,74.5 - parent: 30 - type: Transform -- uid: 20239 - type: CableApcExtension - components: - - pos: -4.5,74.5 - parent: 30 - type: Transform -- uid: 20240 - type: CableApcExtension - components: - - pos: -3.5,74.5 - parent: 30 - type: Transform -- uid: 20241 - type: CableApcExtension - components: - - pos: -2.5,74.5 - parent: 30 - type: Transform -- uid: 20242 - type: CableApcExtension - components: - - pos: 0.5,74.5 - parent: 30 - type: Transform -- uid: 20243 - type: CableApcExtension - components: - - pos: -1.5,74.5 - parent: 30 - type: Transform -- uid: 20244 - type: CableApcExtension - components: - - pos: 1.5,74.5 - parent: 30 - type: Transform -- uid: 20245 - type: CableApcExtension - components: - - pos: 2.5,74.5 - parent: 30 - type: Transform -- uid: 20246 - type: CableApcExtension - components: - - pos: 3.5,74.5 - parent: 30 - type: Transform -- uid: 20247 - type: CableApcExtension - components: - - pos: 4.5,74.5 - parent: 30 - type: Transform -- uid: 20248 - type: CableApcExtension - components: - - pos: 5.5,74.5 - parent: 30 - type: Transform -- uid: 20249 - type: CableApcExtension - components: - - pos: 5.5,73.5 - parent: 30 - type: Transform -- uid: 20250 - type: CableApcExtension - components: - - pos: 5.5,72.5 - parent: 30 - type: Transform -- uid: 20251 - type: CableApcExtension - components: - - pos: 5.5,71.5 - parent: 30 - type: Transform -- uid: 20252 - type: CableApcExtension - components: - - pos: 5.5,70.5 - parent: 30 - type: Transform -- uid: 20253 - type: CableApcExtension - components: - - pos: 5.5,69.5 - parent: 30 - type: Transform -- uid: 20254 - type: CableApcExtension - components: - - pos: 5.5,68.5 - parent: 30 - type: Transform -- uid: 20255 - type: CableApcExtension - components: - - pos: 5.5,67.5 - parent: 30 - type: Transform -- uid: 20256 - type: CableApcExtension - components: - - pos: 5.5,66.5 - parent: 30 - type: Transform -- uid: 20257 - type: CableApcExtension - components: - - pos: 4.5,66.5 - parent: 30 - type: Transform -- uid: 20258 - type: CableApcExtension - components: - - pos: 3.5,66.5 - parent: 30 - type: Transform -- uid: 20259 - type: CableApcExtension - components: - - pos: 2.5,66.5 - parent: 30 - type: Transform -- uid: 20260 - type: CableApcExtension - components: - - pos: 1.5,66.5 - parent: 30 - type: Transform -- uid: 20261 - type: CableApcExtension - components: - - pos: 0.5,66.5 - parent: 30 - type: Transform -- uid: 20262 - type: HighSecDoor - components: - - pos: -0.5,67.5 - parent: 30 - type: Transform -- uid: 20263 - type: HighSecDoor - components: - - pos: -0.5,73.5 - parent: 30 - type: Transform -- uid: 20264 - type: AirlockMaintLocked - components: - - pos: -3.5,66.5 - parent: 30 - type: Transform -- uid: 20265 - type: AirlockMaintLocked - components: - - pos: -6.5,67.5 - parent: 30 - type: Transform -- uid: 20266 - type: AirlockMaintLocked - components: - - pos: 2.5,66.5 - parent: 30 - type: Transform -- uid: 20267 - type: AirlockMaintLocked - components: - - pos: 5.5,67.5 - parent: 30 - type: Transform -- uid: 20268 - type: AirlockMaintLocked - components: - - pos: 2.5,74.5 - parent: 30 - type: Transform -- uid: 20269 - type: AirlockMaintLocked - components: - - pos: 5.5,73.5 - parent: 30 - type: Transform -- uid: 20270 - type: AirlockMaintLocked - components: - - pos: -3.5,74.5 - parent: 30 - type: Transform -- uid: 20271 - type: AirlockMaintLocked - components: - - pos: -6.5,73.5 - parent: 30 - type: Transform -- uid: 20272 - type: Table - components: - - pos: -2.5,75.5 - parent: 30 - type: Transform -- uid: 20273 - type: Table - components: - - pos: 1.5,75.5 - parent: 30 - type: Transform -- uid: 20274 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -1.5,75.5 - parent: 30 - type: Transform -- uid: 20275 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 0.5,75.5 - parent: 30 - type: Transform -- uid: 20276 - type: WeaponCapacitorRecharger - components: - - pos: -2.5,75.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 20277 - type: BoxFolderBlack - components: - - pos: 1.5,75.5 - parent: 30 - type: Transform -- uid: 20278 - type: Paper - components: - - pos: 1.5,75.5 - parent: 30 - type: Transform -- uid: 20279 - type: ComputerFrame - components: - - pos: -6.5,76.5 - parent: 30 - type: Transform -- uid: 20280 - type: ComputerFrame - components: - - pos: -4.5,76.5 - parent: 30 - type: Transform -- uid: 20281 - type: ComputerFrame - components: - - pos: -5.5,76.5 - parent: 30 - type: Transform -- uid: 20282 - type: TableGlass - components: - - pos: 3.5,76.5 - parent: 30 - type: Transform -- uid: 20283 - type: ComputerFrame - components: - - pos: 4.5,76.5 - parent: 30 - type: Transform -- uid: 20284 - type: UnfinishedMachineFrame - components: - - pos: 5.5,76.5 - parent: 30 - type: Transform -- uid: 20285 - type: PoweredSmallLight - components: - - pos: -5.5,76.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20286 - type: PoweredSmallLight - components: - - pos: 4.5,76.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20287 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -5.5,75.5 - parent: 30 - type: Transform -- uid: 20288 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 4.5,75.5 - parent: 30 - type: Transform -- uid: 20289 - type: Table - components: - - pos: -5.5,64.5 - parent: 30 - type: Transform -- uid: 20290 - type: Table - components: - - pos: -6.5,64.5 - parent: 30 - type: Transform -- uid: 20291 - type: Stool - components: - - pos: -5.5,65.5 - parent: 30 - type: Transform -- uid: 20292 - type: ClothingMaskGas - components: - - pos: -5.528984,64.56203 - parent: 30 - type: Transform -- uid: 20293 - type: CrowbarRed - components: - - pos: -5.497734,64.51515 - parent: 30 - type: Transform -- uid: 20294 - type: Wrench - components: - - pos: -6.388359,64.59328 - parent: 30 - type: Transform -- uid: 20295 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: -6.372734,64.59328 - parent: 30 - type: Transform -- uid: 20296 - type: WeldingFuelTankFull - components: - - pos: 6.5,66.5 - parent: 30 - type: Transform -- uid: 20297 - type: Table - components: - - pos: 6.5,65.5 - parent: 30 - type: Transform -- uid: 20298 - type: Rack - components: - - pos: 6.5,64.5 - parent: 30 - type: Transform -- uid: 20299 - type: ToolboxElectricalFilled - components: - - pos: 6.4137774,64.71828 - parent: 30 - type: Transform -- uid: 20300 - type: ToolboxMechanicalFilled - components: - - pos: 6.5231524,64.57765 - parent: 30 - type: Transform -- uid: 20301 - type: FireExtinguisher - components: - - pos: 6.6169024,64.64015 - parent: 30 - type: Transform -- uid: 20302 - type: CableApcStack - components: - - pos: 6.5075274,65.5464 - parent: 30 - type: Transform -- uid: 20303 - type: Catwalk - components: - - pos: -1.5,59.5 - parent: 30 - type: Transform -- uid: 20304 - type: Catwalk - components: - - pos: -0.5,59.5 - parent: 30 - type: Transform -- uid: 20305 - type: Catwalk - components: - - pos: 0.5,59.5 - parent: 30 - type: Transform -- uid: 20306 - type: SignAi - components: - - pos: -1.5,60.5 - parent: 30 - type: Transform -- uid: 20307 - type: ToyAi - components: - - pos: -0.49299335,82.64046 - parent: 30 - type: Transform -- uid: 20308 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.61799335,65.47986 - parent: 30 - type: Transform -- uid: 20309 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,70.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20310 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,70.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20311 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,83.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20312 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,83.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20313 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 3.5,78.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20314 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -4.5,78.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20315 - type: Poweredlight - components: - - pos: -4.5,88.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20316 - type: Poweredlight - components: - - pos: 3.5,88.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20317 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 0.5,63.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20318 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -1.5,63.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20319 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 20.5,1.5 - parent: 30 - type: Transform -- uid: 20320 - type: SubstationWallBasic - components: - - pos: -5.5,-13.5 - parent: 30 - type: Transform -- uid: 20321 - type: CableHV - components: - - pos: -5.5,-13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20322 - type: CableMV - components: - - pos: -5.5,-13.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20323 - type: Girder - components: - - pos: -38.5,-22.5 - parent: 30 - type: Transform -- uid: 20324 - type: ClosetFireFilled - components: - - pos: -37.5,-22.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20325 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -56.5,-25.5 - parent: 30 - type: Transform - - devices: - - 20326 - - 18441 - - 18438 - - 18440 - - 18442 - - 18439 - - 17228 - type: DeviceList -- uid: 20326 - type: AirSensor - components: - - pos: -56.5,-23.5 - parent: 30 - type: Transform -- uid: 20327 - type: ShuttersRadiationOpen - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-49.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver -- uid: 20328 - type: SignalButton - components: - - name: Rad Shutters - type: MetaData - - pos: -9.5,-47.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9339 - - port: Toggle - uid: 9182 - - port: Toggle - uid: 11152 - - port: Toggle - uid: 10742 - - port: Toggle - uid: 10741 - - port: Toggle - uid: 18692 - - port: Toggle - uid: 20327 - - port: Toggle - uid: 767 - - port: Toggle - uid: 17961 - - port: Toggle - uid: 18696 - - port: Toggle - uid: 18695 - - port: Toggle - uid: 18693 - - port: Toggle - uid: 18694 - - port: Toggle - uid: 9343 - - port: Toggle - uid: 9342 - - port: Toggle - uid: 21742 - type: SignalTransmitter -- uid: 20329 - type: GasPipeStraight - components: - - pos: 4.5,-3.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20330 - type: GasPipeStraight - components: - - pos: 4.5,-4.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20331 - type: GasPipeStraight - components: - - pos: 4.5,-5.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20332 - type: GasPipeStraight - components: - - pos: 4.5,-6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20333 - type: GasPipeStraight - components: - - pos: 4.5,-7.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20334 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-45.5 - parent: 30 - type: Transform - - devices: - - 20354 - - 11262 - - 11263 - - 11264 - type: DeviceList -- uid: 20335 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 4.5,-8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20336 - type: SubstationWallBasic - components: - - pos: -2.5,36.5 - parent: 30 - type: Transform -- uid: 20337 - type: CableHV - components: - - pos: -2.5,36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20338 - type: CableMV - components: - - pos: -2.5,36.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20339 - type: SubstationWallBasic - components: - - pos: 30.5,6.5 - parent: 30 - type: Transform -- uid: 20340 - type: CableHV - components: - - pos: 30.5,6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20341 - type: CableMV - components: - - pos: 30.5,6.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20342 - type: DisposalUnit - components: - - pos: -11.5,31.5 - parent: 30 - type: Transform -- uid: 20343 - type: WallReinforced - components: - - pos: -37.5,-64.5 - parent: 30 - type: Transform -- uid: 20344 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -32.5,-9.5 - parent: 30 - type: Transform -- uid: 20345 - type: SpawnPointAtmos - components: - - pos: 11.5,-29.5 - parent: 30 - type: Transform -- uid: 20346 - type: SpawnPointStationEngineer - components: - - pos: -24.5,-42.5 - parent: 30 - type: Transform -- uid: 20347 - type: FirelockEdge - components: - - pos: -62.5,-25.5 - parent: 30 - type: Transform -- uid: 20348 - type: FirelockEdge - components: - - pos: -61.5,-25.5 - parent: 30 - type: Transform -- uid: 20349 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -62.5,-37.5 - parent: 30 - type: Transform -- uid: 20350 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -61.5,-37.5 - parent: 30 - type: Transform -- uid: 20351 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -54.5,-45.5 - parent: 30 - type: Transform -- uid: 20352 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -55.5,-45.5 - parent: 30 - type: Transform -- uid: 20353 - type: AirAlarm - components: - - pos: -14.5,-45.5 - parent: 30 - type: Transform - - devices: - - 20354 - - 11262 - - 11263 - - 11264 - - 11114 - - 11163 - type: DeviceList -- uid: 20354 - type: AirSensor - components: - - pos: -8.5,-44.5 - parent: 30 - type: Transform -- uid: 20355 - type: AirSensor - components: - - pos: -9.5,-39.5 - parent: 30 - type: Transform -- uid: 20356 - type: AirAlarm - components: - - pos: -9.5,-37.5 - parent: 30 - type: Transform - - devices: - - 11343 - - 11344 - - 11345 - - 11340 - - 11341 - - 11342 - - 20355 - - 11155 - - 11098 - - 11099 - - 11154 - type: DeviceList -- uid: 20357 - type: FireAlarm - components: - - pos: -4.5,-37.5 - parent: 30 - type: Transform - - devices: - - 11343 - - 11344 - - 11345 - - 11340 - - 11341 - - 11342 - - 20355 - type: DeviceList -- uid: 20358 - type: AirSensor - components: - - pos: -17.5,-40.5 - parent: 30 - type: Transform -- uid: 20359 - type: FirelockEdge - components: - - pos: -45.5,-9.5 - parent: 30 - type: Transform -- uid: 20360 - type: FirelockEdge - components: - - pos: -44.5,-9.5 - parent: 30 - type: Transform -- uid: 20361 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -59.5,-62.5 - parent: 30 - type: Transform -- uid: 20362 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -58.5,-62.5 - parent: 30 - type: Transform -- uid: 20363 - type: CableApcExtension - components: - - pos: -0.5,-49.5 - parent: 30 - type: Transform -- uid: 20364 - type: CableApcExtension - components: - - pos: 0.5,-49.5 - parent: 30 - type: Transform -- uid: 20365 - type: CableApcExtension - components: - - pos: 1.5,-49.5 - parent: 30 - type: Transform -- uid: 20366 - type: CableApcExtension - components: - - pos: 1.5,-51.5 - parent: 30 - type: Transform -- uid: 20367 - type: CableApcExtension - components: - - pos: 1.5,-50.5 - parent: 30 - type: Transform -- uid: 20368 - type: CableApcExtension - components: - - pos: 1.5,-52.5 - parent: 30 - type: Transform -- uid: 20369 - type: CableApcExtension - components: - - pos: 1.5,-53.5 - parent: 30 - type: Transform -- uid: 20370 - type: CableApcExtension - components: - - pos: 1.5,-54.5 - parent: 30 - type: Transform -- uid: 20371 - type: CableApcExtension - components: - - pos: 0.5,-54.5 - parent: 30 - type: Transform -- uid: 20372 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -40.5,35.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20373 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,20.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20374 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,6.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20375 - type: EmergencyLight - components: - - pos: -53.5,10.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20376 - type: ReinforcedWindow - components: - - pos: -37.5,61.5 - parent: 30 - type: Transform -- uid: 20377 - type: FirelockGlass - components: - - pos: -10.5,11.5 - parent: 30 - type: Transform -- uid: 20378 - type: FirelockGlass - components: - - pos: -10.5,10.5 - parent: 30 - type: Transform -- uid: 20379 - type: FirelockGlass - components: - - pos: -10.5,9.5 - parent: 30 - type: Transform -- uid: 20380 - type: FirelockGlass - components: - - pos: -10.5,8.5 - parent: 30 - type: Transform -- uid: 20381 - type: FirelockGlass - components: - - pos: -10.5,7.5 - parent: 30 - type: Transform -- uid: 20382 - type: FirelockGlass - components: - - pos: -10.5,6.5 - parent: 30 - type: Transform -- uid: 20383 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -34.5,28.5 - parent: 30 - type: Transform -- uid: 20384 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -35.5,28.5 - parent: 30 - type: Transform -- uid: 20385 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: -36.5,28.5 - parent: 30 - type: Transform -- uid: 20386 - type: FirelockEdge - components: - - pos: -33.5,46.5 - parent: 30 - type: Transform -- uid: 20387 - type: FirelockEdge - components: - - pos: -32.5,46.5 - parent: 30 - type: Transform -- uid: 20388 - type: FirelockEdge - components: - - pos: -31.5,46.5 - parent: 30 - type: Transform -- uid: 20390 - type: ClothingBeltHolster - components: - - pos: 12.458031,22.694685 - parent: 30 - type: Transform -- uid: 20391 - type: SignalButton - components: - - pos: -21.5,38.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4955 - type: SignalTransmitter -- uid: 20392 - type: SignalButton - components: - - pos: -13.5,37.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5738 - - port: Toggle - uid: 5741 - type: SignalTransmitter -- uid: 20393 - type: SignalButton - components: - - pos: -5.5,37.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 20395 - - port: Toggle - uid: 20394 - type: SignalTransmitter -- uid: 20394 - type: ShuttersNormalOpen - components: - - pos: -3.5,36.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20393 - type: SignalReceiver -- uid: 20395 - type: ShuttersNormalOpen - components: - - pos: -4.5,36.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20393 - type: SignalReceiver -- uid: 20396 - type: WallReinforced - components: - - pos: -38.5,-64.5 - parent: 30 - type: Transform -- uid: 20397 - type: WallReinforced - components: - - pos: -39.5,-64.5 - parent: 30 - type: Transform -- uid: 20398 - type: SignalButton - components: - - pos: 8.5,41.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5556 - type: SignalTransmitter -- uid: 20399 - type: SignalButton - components: - - pos: 16.5,13.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 12656 - - port: Toggle - uid: 12657 - - port: Toggle - uid: 13075 - type: SignalTransmitter -- uid: 20400 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,9.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20401 - type: SignalButton - components: - - pos: -4.5,-7.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6679 - - port: Toggle - uid: 6678 - type: SignalTransmitter -- uid: 20402 - type: RubberStampDenied - components: - - pos: 2.683168,32.813263 - parent: 30 - type: Transform -- uid: 20403 - type: SpawnPointDetective - components: - - pos: -43.5,30.5 - parent: 30 - type: Transform -- uid: 20404 - type: CableHV - components: - - pos: -29.5,-40.5 - parent: 30 - type: Transform -- uid: 20405 - type: CableHV - components: - - pos: -28.5,-40.5 - parent: 30 - type: Transform -- uid: 20406 - type: CableHV - components: - - pos: -28.5,-41.5 - parent: 30 - type: Transform -- uid: 20407 - type: CableHV - components: - - pos: -27.5,-41.5 - parent: 30 - type: Transform -- uid: 20408 - type: CableHV - components: - - pos: -26.5,-41.5 - parent: 30 - type: Transform -- uid: 20409 - type: CableHV - components: - - pos: -25.5,-41.5 - parent: 30 - type: Transform -- uid: 20410 - type: CableHV - components: - - pos: -24.5,-41.5 - parent: 30 - type: Transform -- uid: 20411 - type: CableHV - components: - - pos: -23.5,-41.5 - parent: 30 - type: Transform -- uid: 20412 - type: CableHV - components: - - pos: -23.5,-42.5 - parent: 30 - type: Transform -- uid: 20413 - type: CableHV - components: - - pos: -23.5,-43.5 - parent: 30 - type: Transform -- uid: 20414 - type: CableHV - components: - - pos: -23.5,-44.5 - parent: 30 - type: Transform -- uid: 20415 - type: CableHV - components: - - pos: -23.5,-45.5 - parent: 30 - type: Transform -- uid: 20416 - type: CableHV - components: - - pos: -23.5,-46.5 - parent: 30 - type: Transform -- uid: 20417 - type: CableHV - components: - - pos: -22.5,-46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20418 - type: CableMV - components: - - pos: -22.5,-46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20419 - type: CableMV - components: - - pos: -23.5,-46.5 - parent: 30 - type: Transform -- uid: 20420 - type: CableMV - components: - - pos: -23.5,-45.5 - parent: 30 - type: Transform -- uid: 20421 - type: CableMV - components: - - pos: -23.5,-44.5 - parent: 30 - type: Transform -- uid: 20422 - type: CableMV - components: - - pos: -23.5,-43.5 - parent: 30 - type: Transform -- uid: 20423 - type: CableMV - components: - - pos: -23.5,-42.5 - parent: 30 - type: Transform -- uid: 20424 - type: CableMV - components: - - pos: -22.5,-42.5 - parent: 30 - type: Transform -- uid: 20425 - type: CableMV - components: - - pos: -21.5,-42.5 - parent: 30 - type: Transform -- uid: 20426 - type: CableMV - components: - - pos: -20.5,-42.5 - parent: 30 - type: Transform -- uid: 20427 - type: CableMV - components: - - pos: -19.5,-42.5 - parent: 30 - type: Transform -- uid: 20428 - type: CableMV - components: - - pos: -18.5,-42.5 - parent: 30 - type: Transform -- uid: 20429 - type: CableMV - components: - - pos: -18.5,-41.5 - parent: 30 - type: Transform -- uid: 20430 - type: CableMV - components: - - pos: -18.5,-40.5 - parent: 30 - type: Transform -- uid: 20431 - type: CableMV - components: - - pos: -18.5,-39.5 - parent: 30 - type: Transform -- uid: 20433 - type: PosterMapMarathon - components: - - pos: -48.5,11.5 - parent: 30 - type: Transform -- uid: 20434 - type: PosterMapMarathon - components: - - pos: -46.5,16.5 - parent: 30 - type: Transform -- uid: 20435 - type: PosterMapMarathon - components: - - pos: -21.5,28.5 - parent: 30 - type: Transform -- uid: 20436 - type: PosterMapMarathon - components: - - pos: 2.5,5.5 - parent: 30 - type: Transform -- uid: 20437 - type: AtmosFixFreezerMarker - components: - - pos: -16.5,16.5 - parent: 30 - type: Transform -- uid: 20438 - type: JanitorialTrolley - components: - - rot: 1.5707963267948966 rad - pos: -30.5,7.5 - parent: 30 - type: Transform -- uid: 20439 - type: MopBucket - components: - - pos: -30.570229,13.5742035 - parent: 30 - type: Transform -- uid: 20440 - type: VehicleKeyJanicart - components: - - pos: -30.815971,6.7175894 - parent: 30 - type: Transform -- uid: 20441 - type: ClothingHeadsetMedicalScience - components: - - pos: -32.33667,-15.417572 - parent: 30 - type: Transform -- uid: 20442 - type: WallReinforced - components: - - pos: -46.5,-28.5 - parent: 30 - type: Transform -- uid: 20443 - type: ReinforcedWindow - components: - - pos: -45.5,-28.5 - parent: 30 - type: Transform -- uid: 20444 - type: WallReinforced - components: - - pos: -44.5,-28.5 - parent: 30 - type: Transform -- uid: 20445 - type: ShuttersNormalOpen - components: - - pos: -2.5,12.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20446 - type: SignalReceiver -- uid: 20446 - type: SignalButton - components: - - pos: -6.5,15.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 12625 - - port: Toggle - uid: 9238 - - port: Toggle - uid: 9239 - - port: Toggle - uid: 20445 - - port: Toggle - uid: 20449 - - port: Toggle - uid: 20448 - - port: Toggle - uid: 20447 - type: SignalTransmitter -- uid: 20447 - type: ShuttersNormalOpen - components: - - pos: 0.5,12.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20446 - type: SignalReceiver -- uid: 20448 - type: ShuttersNormalOpen - components: - - pos: -0.5,12.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20446 - type: SignalReceiver -- uid: 20449 - type: ShuttersNormalOpen - components: - - pos: -1.5,12.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20446 - type: SignalReceiver -- uid: 20450 - type: SheetSteel - components: - - pos: -23.542912,-39.421722 - parent: 30 - type: Transform -- uid: 20451 - type: VendingMachineAtmosDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,-22.5 - parent: 30 - type: Transform -- uid: 20452 - type: SpawnPointAtmos - components: - - pos: 11.5,-27.5 - parent: 30 - type: Transform -- uid: 20453 - type: SpawnPointAtmos - components: - - pos: 11.5,-28.5 - parent: 30 - type: Transform -- uid: 20454 - type: WaterCooler - components: - - pos: -0.5,-30.5 - parent: 30 - type: Transform -- uid: 20455 - type: WaterCooler - components: - - pos: -30.5,44.5 - parent: 30 - type: Transform -- uid: 20456 - type: WaterCooler - components: - - pos: -52.5,58.5 - parent: 30 - type: Transform -- uid: 20457 - type: WaterCooler - components: - - pos: -16.5,40.5 - parent: 30 - type: Transform -- uid: 20458 - type: FloorDrain - components: - - pos: -17.5,15.5 - parent: 30 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 20459 - type: FloorDrain - components: - - pos: -7.5,-7.5 - parent: 30 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 20460 - type: FloorDrain - components: - - pos: -8.5,-11.5 - parent: 30 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 20461 - type: FloorDrain - components: - - pos: -31.5,9.5 - parent: 30 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 20462 - type: VehicleKeySecway - components: - - pos: -33.47776,58.536747 - parent: 30 - type: Transform -- uid: 20463 - type: VehicleKeySecway - components: - - pos: -33.441254,58.69023 - parent: 30 - type: Transform -- uid: 20464 - type: SpawnVehicleJanicart - components: - - pos: -32.5,9.5 - parent: 30 - type: Transform -- uid: 20465 - type: SpawnVehicleSecway - components: - - pos: -30.5,40.5 - parent: 30 - type: Transform -- uid: 20466 - type: SpawnVehicleSecway - components: - - pos: -34.5,58.5 - parent: 30 - type: Transform -- uid: 20467 - type: CrateEngineeringCableBulk - components: - - pos: 3.5,-44.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 20468 - type: CheapRollerBed - components: - - pos: -27.548178,-11.472752 - parent: 30 - type: Transform -- uid: 20469 - type: CheapRollerBed - components: - - pos: -27.525522,-7.316894 - parent: 30 - type: Transform -- uid: 20470 - type: CheapRollerBed - components: - - pos: -27.494272,-6.441894 - parent: 30 - type: Transform -- uid: 20471 - type: WelderIndustrial - components: - - pos: 9.552484,-22.490005 - parent: 30 - type: Transform -- uid: 20472 - type: WallReinforced - components: - - pos: -39.5,-31.5 - parent: 30 - type: Transform -- uid: 20473 - type: WallReinforced - components: - - pos: -39.5,-30.5 - parent: 30 - type: Transform -- uid: 20474 - type: FirelockGlass - components: - - pos: -35.5,-29.5 - parent: 30 - type: Transform -- uid: 20475 - type: Rack - components: - - pos: -38.5,-29.5 - parent: 30 - type: Transform -- uid: 20476 - type: WelderIndustrial - components: - - pos: -38.371628,-29.490156 - parent: 30 - type: Transform -- uid: 20477 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -38.5,-32.5 - parent: 30 - type: Transform -- uid: 20478 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -37.5,-32.5 - parent: 30 - type: Transform -- uid: 20479 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -36.5,-32.5 - parent: 30 - type: Transform -- uid: 20480 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -35.5,-32.5 - parent: 30 - type: Transform -- uid: 20481 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-32.5 - parent: 30 - type: Transform -- uid: 20482 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-33.5 - parent: 30 - type: Transform -- uid: 20483 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-34.5 - parent: 30 - type: Transform -- uid: 20484 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-35.5 - parent: 30 - type: Transform -- uid: 20485 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-32.5 - parent: 30 - type: Transform -- uid: 20486 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-33.5 - parent: 30 - type: Transform -- uid: 20487 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-34.5 - parent: 30 - type: Transform -- uid: 20488 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-34.5 - parent: 30 - type: Transform -- uid: 20489 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-33.5 - parent: 30 - type: Transform -- uid: 20490 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-32.5 - parent: 30 - type: Transform -- uid: 20491 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -34.5,-36.5 - parent: 30 - type: Transform -- uid: 20492 - type: Table - components: - - pos: -33.5,-36.5 - parent: 30 - type: Transform -- uid: 20493 - type: Table - components: - - pos: -32.5,-36.5 - parent: 30 - type: Transform -- uid: 20494 - type: ClosetMaintenanceFilledRandom - components: - - pos: -38.5,-31.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20495 - type: Lamp - components: - - pos: -33.431374,-36.318756 - parent: 30 - type: Transform -- uid: 20496 - type: SpaceCash - components: - - pos: -32.837624,-36.318756 - parent: 30 - type: Transform -- uid: 20497 - type: SpaceCash - components: - - pos: -32.556374,-36.475006 - parent: 30 - type: Transform -- uid: 20498 - type: SpaceCash - components: - - pos: -34.525124,-33.506256 - parent: 30 - type: Transform -- uid: 20499 - type: RandomSpawner - components: - - pos: -32.5,-31.5 - parent: 30 - type: Transform -- uid: 20500 - type: Stool - components: - - pos: -35.5,-32.5 - parent: 30 - type: Transform -- uid: 20501 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -38.5,-35.5 - parent: 30 - type: Transform -- uid: 20502 - type: MaterialCloth1 - components: - - pos: -35.47825,-31.615631 - parent: 30 - type: Transform -- uid: 20503 - type: filingCabinet - components: - - pos: -32.5,-35.5 - parent: 30 - type: Transform -- uid: 20504 - type: CableApcExtension - components: - - pos: -37.5,-28.5 - parent: 30 - type: Transform -- uid: 20505 - type: CableApcExtension - components: - - pos: -37.5,-29.5 - parent: 30 - type: Transform -- uid: 20506 - type: CableApcExtension - components: - - pos: -37.5,-30.5 - parent: 30 - type: Transform -- uid: 20507 - type: CableApcExtension - components: - - pos: -37.5,-30.5 - parent: 30 - type: Transform -- uid: 20508 - type: CableApcExtension - components: - - pos: -37.5,-31.5 - parent: 30 - type: Transform -- uid: 20509 - type: CableApcExtension - components: - - pos: -36.5,-31.5 - parent: 30 - type: Transform -- uid: 20510 - type: CableApcExtension - components: - - pos: -35.5,-31.5 - parent: 30 - type: Transform -- uid: 20511 - type: CableApcExtension - components: - - pos: -34.5,-31.5 - parent: 30 - type: Transform -- uid: 20512 - type: CableApcExtension - components: - - pos: -33.5,-31.5 - parent: 30 - type: Transform -- uid: 20513 - type: CableApcExtension - components: - - pos: -33.5,-32.5 - parent: 30 - type: Transform -- uid: 20514 - type: CableApcExtension - components: - - pos: -33.5,-33.5 - parent: 30 - type: Transform -- uid: 20515 - type: CableApcExtension - components: - - pos: -33.5,-34.5 - parent: 30 - type: Transform -- uid: 20516 - type: CableApcExtension - components: - - pos: -33.5,-35.5 - parent: 30 - type: Transform -- uid: 20517 - type: PoweredSmallLight - components: - - pos: -36.5,-31.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20518 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-34.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20519 - type: Grille - components: - - pos: -39.5,-34.5 - parent: 30 - type: Transform -- uid: 20520 - type: Grille - components: - - pos: -39.5,-33.5 - parent: 30 - type: Transform -- uid: 20521 - type: Grille - components: - - pos: -39.5,-32.5 - parent: 30 - type: Transform -- uid: 20522 - type: Grille - components: - - pos: -38.5,-36.5 - parent: 30 - type: Transform -- uid: 20523 - type: Grille - components: - - pos: -37.5,-36.5 - parent: 30 - type: Transform -- uid: 20524 - type: Grille - components: - - pos: -36.5,-36.5 - parent: 30 - type: Transform -- uid: 20525 - type: filingCabinet - components: - - pos: -30.5,54.5 - parent: 30 - type: Transform -- uid: 20526 - type: filingCabinet - components: - - pos: -21.5,48.5 - parent: 30 - type: Transform -- uid: 20527 - type: AsteroidRock - components: - - pos: 39.5,-76.5 - parent: 30 - type: Transform -- uid: 20528 - type: ReinforcedWindow - components: - - pos: -29.5,-21.5 - parent: 30 - type: Transform -- uid: 20529 - type: AsteroidRock - components: - - pos: 42.5,-76.5 - parent: 30 - type: Transform -- uid: 20530 - type: AsteroidRock - components: - - pos: 41.5,-76.5 - parent: 30 - type: Transform -- uid: 20531 - type: AsteroidRock - components: - - pos: 37.5,-76.5 - parent: 30 - type: Transform -- uid: 20532 - type: AsteroidRock - components: - - pos: 35.5,-75.5 - parent: 30 - type: Transform -- uid: 20533 - type: AsteroidRock - components: - - pos: 36.5,-75.5 - parent: 30 - type: Transform -- uid: 20534 - type: AsteroidRock - components: - - pos: 37.5,-75.5 - parent: 30 - type: Transform -- uid: 20535 - type: AsteroidRock - components: - - pos: 38.5,-75.5 - parent: 30 - type: Transform -- uid: 20536 - type: AsteroidRock - components: - - pos: 39.5,-75.5 - parent: 30 - type: Transform -- uid: 20537 - type: AsteroidRock - components: - - pos: 40.5,-75.5 - parent: 30 - type: Transform -- uid: 20538 - type: AsteroidRock - components: - - pos: 41.5,-75.5 - parent: 30 - type: Transform -- uid: 20539 - type: AsteroidRock - components: - - pos: 42.5,-75.5 - parent: 30 - type: Transform -- uid: 20540 - type: AsteroidRock - components: - - pos: 43.5,-75.5 - parent: 30 - type: Transform -- uid: 20541 - type: AsteroidRock - components: - - pos: 44.5,-75.5 - parent: 30 - type: Transform -- uid: 20542 - type: AsteroidRock - components: - - pos: 45.5,-74.5 - parent: 30 - type: Transform -- uid: 20543 - type: AsteroidRock - components: - - pos: 44.5,-74.5 - parent: 30 - type: Transform -- uid: 20544 - type: AsteroidRock - components: - - pos: 43.5,-74.5 - parent: 30 - type: Transform -- uid: 20545 - type: AtmosFixBlockerMarker - components: - - pos: 37.5,-66.5 - parent: 30 - type: Transform -- uid: 20546 - type: AsteroidRock - components: - - pos: 41.5,-74.5 - parent: 30 - type: Transform -- uid: 20547 - type: AsteroidRock - components: - - pos: 40.5,-74.5 - parent: 30 - type: Transform -- uid: 20548 - type: AsteroidRock - components: - - pos: 39.5,-74.5 - parent: 30 - type: Transform -- uid: 20549 - type: AsteroidRock - components: - - pos: 38.5,-74.5 - parent: 30 - type: Transform -- uid: 20550 - type: AsteroidRock - components: - - pos: 37.5,-74.5 - parent: 30 - type: Transform -- uid: 20551 - type: AsteroidRock - components: - - pos: 36.5,-74.5 - parent: 30 - type: Transform -- uid: 20552 - type: AsteroidRock - components: - - pos: 35.5,-74.5 - parent: 30 - type: Transform -- uid: 20553 - type: AsteroidRock - components: - - pos: 34.5,-74.5 - parent: 30 - type: Transform -- uid: 20554 - type: AsteroidRock - components: - - pos: 34.5,-73.5 - parent: 30 - type: Transform -- uid: 20555 - type: AsteroidRock - components: - - pos: 35.5,-73.5 - parent: 30 - type: Transform -- uid: 20556 - type: AsteroidRock - components: - - pos: 36.5,-73.5 - parent: 30 - type: Transform -- uid: 20557 - type: AsteroidRock - components: - - pos: 37.5,-73.5 - parent: 30 - type: Transform -- uid: 20558 - type: AtmosFixBlockerMarker - components: - - pos: 41.5,-73.5 - parent: 30 - type: Transform -- uid: 20559 - type: AsteroidRock - components: - - pos: 39.5,-73.5 - parent: 30 - type: Transform -- uid: 20560 - type: AtmosFixBlockerMarker - components: - - pos: 38.5,-73.5 - parent: 30 - type: Transform -- uid: 20561 - type: AtmosFixBlockerMarker - components: - - pos: 39.5,-71.5 - parent: 30 - type: Transform -- uid: 20562 - type: AsteroidRock - components: - - pos: 42.5,-73.5 - parent: 30 - type: Transform -- uid: 20563 - type: AsteroidRock - components: - - pos: 43.5,-73.5 - parent: 30 - type: Transform -- uid: 20564 - type: AsteroidRock - components: - - pos: 44.5,-73.5 - parent: 30 - type: Transform -- uid: 20565 - type: AsteroidRock - components: - - pos: 45.5,-73.5 - parent: 30 - type: Transform -- uid: 20566 - type: AsteroidRock - components: - - pos: 46.5,-72.5 - parent: 30 - type: Transform -- uid: 20567 - type: AsteroidRock - components: - - pos: 45.5,-72.5 - parent: 30 - type: Transform -- uid: 20568 - type: AsteroidRock - components: - - pos: 44.5,-72.5 - parent: 30 - type: Transform -- uid: 20569 - type: AsteroidRock - components: - - pos: 43.5,-72.5 - parent: 30 - type: Transform -- uid: 20570 - type: AsteroidRock - components: - - pos: 42.5,-72.5 - parent: 30 - type: Transform -- uid: 20571 - type: AsteroidRock - components: - - pos: 41.5,-72.5 - parent: 30 - type: Transform -- uid: 20572 - type: AsteroidRock - components: - - pos: 40.5,-72.5 - parent: 30 - type: Transform -- uid: 20573 - type: AsteroidRock - components: - - pos: 39.5,-72.5 - parent: 30 - type: Transform -- uid: 20574 - type: AsteroidRock - components: - - pos: 38.5,-72.5 - parent: 30 - type: Transform -- uid: 20575 - type: AsteroidRock - components: - - pos: 37.5,-72.5 - parent: 30 - type: Transform -- uid: 20576 - type: AsteroidRock - components: - - pos: 36.5,-72.5 - parent: 30 - type: Transform -- uid: 20577 - type: AsteroidRock - components: - - pos: 35.5,-72.5 - parent: 30 - type: Transform -- uid: 20578 - type: AsteroidRock - components: - - pos: 34.5,-72.5 - parent: 30 - type: Transform -- uid: 20579 - type: AsteroidRock - components: - - pos: 33.5,-72.5 - parent: 30 - type: Transform -- uid: 20580 - type: AsteroidRock - components: - - pos: 33.5,-71.5 - parent: 30 - type: Transform -- uid: 20581 - type: AsteroidRock - components: - - pos: 34.5,-71.5 - parent: 30 - type: Transform -- uid: 20582 - type: AsteroidRock - components: - - pos: 35.5,-71.5 - parent: 30 - type: Transform -- uid: 20583 - type: AsteroidRock - components: - - pos: 36.5,-71.5 - parent: 30 - type: Transform -- uid: 20584 - type: AsteroidRock - components: - - pos: 37.5,-71.5 - parent: 30 - type: Transform -- uid: 20585 - type: AsteroidRock - components: - - pos: 38.5,-71.5 - parent: 30 - type: Transform -- uid: 20586 - type: AtmosFixBlockerMarker - components: - - pos: 40.5,-73.5 - parent: 30 - type: Transform -- uid: 20587 - type: AsteroidRock - components: - - pos: 40.5,-71.5 - parent: 30 - type: Transform -- uid: 20588 - type: AsteroidRock - components: - - pos: 41.5,-71.5 - parent: 30 - type: Transform -- uid: 20589 - type: AsteroidRock - components: - - pos: 42.5,-71.5 - parent: 30 - type: Transform -- uid: 20590 - type: AsteroidRock - components: - - pos: 43.5,-71.5 - parent: 30 - type: Transform -- uid: 20591 - type: AsteroidRock - components: - - pos: 44.5,-71.5 - parent: 30 - type: Transform -- uid: 20592 - type: AsteroidRock - components: - - pos: 45.5,-71.5 - parent: 30 - type: Transform -- uid: 20593 - type: AsteroidRock - components: - - pos: 46.5,-71.5 - parent: 30 - type: Transform -- uid: 20594 - type: AsteroidRock - components: - - pos: 47.5,-71.5 - parent: 30 - type: Transform -- uid: 20595 - type: AsteroidRock - components: - - pos: 32.5,-70.5 - parent: 30 - type: Transform -- uid: 20596 - type: AsteroidRock - components: - - pos: 32.5,-69.5 - parent: 30 - type: Transform -- uid: 20597 - type: AsteroidRock - components: - - pos: 32.5,-68.5 - parent: 30 - type: Transform -- uid: 20598 - type: AsteroidRock - components: - - pos: 32.5,-67.5 - parent: 30 - type: Transform -- uid: 20599 - type: AsteroidRock - components: - - pos: 32.5,-66.5 - parent: 30 - type: Transform -- uid: 20600 - type: AsteroidRock - components: - - pos: 32.5,-65.5 - parent: 30 - type: Transform -- uid: 20601 - type: AsteroidRock - components: - - pos: 32.5,-64.5 - parent: 30 - type: Transform -- uid: 20602 - type: AsteroidRock - components: - - pos: 32.5,-63.5 - parent: 30 - type: Transform -- uid: 20603 - type: AsteroidRock - components: - - pos: 32.5,-62.5 - parent: 30 - type: Transform -- uid: 20604 - type: AsteroidRock - components: - - pos: 32.5,-61.5 - parent: 30 - type: Transform -- uid: 20605 - type: AsteroidRock - components: - - pos: 32.5,-60.5 - parent: 30 - type: Transform -- uid: 20606 - type: AsteroidRock - components: - - pos: 32.5,-59.5 - parent: 30 - type: Transform -- uid: 20607 - type: AsteroidRock - components: - - pos: 32.5,-58.5 - parent: 30 - type: Transform -- uid: 20608 - type: AsteroidRock - components: - - pos: 32.5,-57.5 - parent: 30 - type: Transform -- uid: 20609 - type: AsteroidRock - components: - - pos: 32.5,-56.5 - parent: 30 - type: Transform -- uid: 20610 - type: AsteroidRock - components: - - pos: 32.5,-55.5 - parent: 30 - type: Transform -- uid: 20611 - type: AsteroidRock - components: - - pos: 31.5,-62.5 - parent: 30 - type: Transform -- uid: 20612 - type: AsteroidRock - components: - - pos: 31.5,-63.5 - parent: 30 - type: Transform -- uid: 20613 - type: AsteroidRock - components: - - pos: 31.5,-64.5 - parent: 30 - type: Transform -- uid: 20614 - type: AsteroidRock - components: - - pos: 31.5,-65.5 - parent: 30 - type: Transform -- uid: 20615 - type: AsteroidRock - components: - - pos: 31.5,-66.5 - parent: 30 - type: Transform -- uid: 20616 - type: AsteroidRock - components: - - pos: 35.5,-53.5 - parent: 30 - type: Transform -- uid: 20617 - type: AsteroidRock - components: - - pos: 35.5,-54.5 - parent: 30 - type: Transform -- uid: 20618 - type: AsteroidRock - components: - - pos: 34.5,-53.5 - parent: 30 - type: Transform -- uid: 20619 - type: AsteroidRock - components: - - pos: 34.5,-54.5 - parent: 30 - type: Transform -- uid: 20620 - type: AsteroidRock - components: - - pos: 33.5,-55.5 - parent: 30 - type: Transform -- uid: 20621 - type: AsteroidRock - components: - - pos: 34.5,-55.5 - parent: 30 - type: Transform -- uid: 20622 - type: AsteroidRock - components: - - pos: 35.5,-55.5 - parent: 30 - type: Transform -- uid: 20623 - type: AsteroidRock - components: - - pos: 36.5,-55.5 - parent: 30 - type: Transform -- uid: 20624 - type: AsteroidRock - components: - - pos: 37.5,-55.5 - parent: 30 - type: Transform -- uid: 20625 - type: AsteroidRock - components: - - pos: 38.5,-55.5 - parent: 30 - type: Transform -- uid: 20626 - type: AsteroidRock - components: - - pos: 39.5,-55.5 - parent: 30 - type: Transform -- uid: 20627 - type: AsteroidRock - components: - - pos: 40.5,-55.5 - parent: 30 - type: Transform -- uid: 20628 - type: AsteroidRock - components: - - pos: 41.5,-55.5 - parent: 30 - type: Transform -- uid: 20629 - type: AsteroidRock - components: - - pos: 42.5,-55.5 - parent: 30 - type: Transform -- uid: 20630 - type: AsteroidRock - components: - - pos: 43.5,-55.5 - parent: 30 - type: Transform -- uid: 20631 - type: AsteroidRock - components: - - pos: 44.5,-55.5 - parent: 30 - type: Transform -- uid: 20632 - type: AsteroidRock - components: - - pos: 45.5,-55.5 - parent: 30 - type: Transform -- uid: 20633 - type: AsteroidRock - components: - - pos: 44.5,-53.5 - parent: 30 - type: Transform -- uid: 20634 - type: AsteroidRock - components: - - pos: 44.5,-54.5 - parent: 30 - type: Transform -- uid: 20635 - type: AsteroidRock - components: - - pos: 43.5,-53.5 - parent: 30 - type: Transform -- uid: 20636 - type: AsteroidRock - components: - - pos: 43.5,-54.5 - parent: 30 - type: Transform -- uid: 20637 - type: AsteroidRock - components: - - pos: 42.5,-54.5 - parent: 30 - type: Transform -- uid: 20638 - type: AsteroidRock - components: - - pos: 41.5,-54.5 - parent: 30 - type: Transform -- uid: 20639 - type: AsteroidRock - components: - - pos: 40.5,-54.5 - parent: 30 - type: Transform -- uid: 20640 - type: AsteroidRock - components: - - pos: 39.5,-54.5 - parent: 30 - type: Transform -- uid: 20641 - type: AsteroidRock - components: - - pos: 38.5,-54.5 - parent: 30 - type: Transform -- uid: 20642 - type: AsteroidRock - components: - - pos: 37.5,-54.5 - parent: 30 - type: Transform -- uid: 20643 - type: AsteroidRock - components: - - pos: 36.5,-54.5 - parent: 30 - type: Transform -- uid: 20644 - type: AsteroidRock - components: - - pos: 37.5,-53.5 - parent: 30 - type: Transform -- uid: 20645 - type: AsteroidRock - components: - - pos: 41.5,-53.5 - parent: 30 - type: Transform -- uid: 20646 - type: AsteroidRock - components: - - pos: 40.5,-53.5 - parent: 30 - type: Transform -- uid: 20647 - type: AsteroidRock - components: - - pos: 45.5,-56.5 - parent: 30 - type: Transform -- uid: 20648 - type: AsteroidRock - components: - - pos: 45.5,-57.5 - parent: 30 - type: Transform -- uid: 20649 - type: AsteroidRock - components: - - pos: 45.5,-58.5 - parent: 30 - type: Transform -- uid: 20650 - type: AsteroidRock - components: - - pos: 45.5,-59.5 - parent: 30 - type: Transform -- uid: 20651 - type: AsteroidRock - components: - - pos: 45.5,-60.5 - parent: 30 - type: Transform -- uid: 20652 - type: AsteroidRock - components: - - pos: 45.5,-61.5 - parent: 30 - type: Transform -- uid: 20653 - type: AsteroidRock - components: - - pos: 46.5,-58.5 - parent: 30 - type: Transform -- uid: 20654 - type: AsteroidRock - components: - - pos: 46.5,-59.5 - parent: 30 - type: Transform -- uid: 20655 - type: AsteroidRock - components: - - pos: 46.5,-60.5 - parent: 30 - type: Transform -- uid: 20656 - type: AsteroidRock - components: - - pos: 46.5,-61.5 - parent: 30 - type: Transform -- uid: 20657 - type: AsteroidRock - components: - - pos: 46.5,-62.5 - parent: 30 - type: Transform -- uid: 20658 - type: AsteroidRock - components: - - pos: 46.5,-63.5 - parent: 30 - type: Transform -- uid: 20659 - type: AsteroidRock - components: - - pos: 46.5,-64.5 - parent: 30 - type: Transform -- uid: 20660 - type: AsteroidRock - components: - - pos: 46.5,-65.5 - parent: 30 - type: Transform -- uid: 20661 - type: AsteroidRock - components: - - pos: 46.5,-66.5 - parent: 30 - type: Transform -- uid: 20662 - type: AsteroidRock - components: - - pos: 46.5,-67.5 - parent: 30 - type: Transform -- uid: 20663 - type: AsteroidRock - components: - - pos: 46.5,-68.5 - parent: 30 - type: Transform -- uid: 20664 - type: AsteroidRock - components: - - pos: 46.5,-69.5 - parent: 30 - type: Transform -- uid: 20665 - type: AsteroidRock - components: - - pos: 46.5,-70.5 - parent: 30 - type: Transform -- uid: 20666 - type: AsteroidRock - components: - - pos: 47.5,-70.5 - parent: 30 - type: Transform -- uid: 20667 - type: AsteroidRock - components: - - pos: 47.5,-69.5 - parent: 30 - type: Transform -- uid: 20668 - type: AsteroidRock - components: - - pos: 47.5,-68.5 - parent: 30 - type: Transform -- uid: 20669 - type: AsteroidRock - components: - - pos: 47.5,-67.5 - parent: 30 - type: Transform -- uid: 20670 - type: AsteroidRock - components: - - pos: 47.5,-66.5 - parent: 30 - type: Transform -- uid: 20671 - type: AsteroidRock - components: - - pos: 47.5,-65.5 - parent: 30 - type: Transform -- uid: 20672 - type: AsteroidRock - components: - - pos: 47.5,-64.5 - parent: 30 - type: Transform -- uid: 20673 - type: AsteroidRock - components: - - pos: 47.5,-63.5 - parent: 30 - type: Transform -- uid: 20674 - type: AsteroidRock - components: - - pos: 47.5,-62.5 - parent: 30 - type: Transform -- uid: 20675 - type: AsteroidRock - components: - - pos: 45.5,-62.5 - parent: 30 - type: Transform -- uid: 20676 - type: AsteroidRock - components: - - pos: 45.5,-63.5 - parent: 30 - type: Transform -- uid: 20677 - type: AtmosFixBlockerMarker - components: - - pos: 45.5,-64.5 - parent: 30 - type: Transform -- uid: 20678 - type: AsteroidRock - components: - - pos: 45.5,-65.5 - parent: 30 - type: Transform -- uid: 20679 - type: AsteroidRock - components: - - pos: 45.5,-66.5 - parent: 30 - type: Transform -- uid: 20680 - type: AsteroidRock - components: - - pos: 45.5,-67.5 - parent: 30 - type: Transform -- uid: 20681 - type: AsteroidRock - components: - - pos: 45.5,-68.5 - parent: 30 - type: Transform -- uid: 20682 - type: SpawnMobBear - components: - - pos: 44.5,-69.5 - parent: 30 - type: Transform -- uid: 20683 - type: AsteroidRock - components: - - pos: 45.5,-70.5 - parent: 30 - type: Transform -- uid: 20684 - type: SpawnMobBear - components: - - pos: 36.5,-66.5 - parent: 30 - type: Transform -- uid: 20685 - type: AtmosFixBlockerMarker - components: - - pos: 36.5,-65.5 - parent: 30 - type: Transform -- uid: 20686 - type: ClothingNeckCloakMiner - components: - - pos: 37.475792,-67.48313 - parent: 30 - type: Transform -- uid: 20687 - type: AtmosFixBlockerMarker - components: - - pos: 38.5,-67.5 - parent: 30 - type: Transform -- uid: 20688 - type: AsteroidRock - components: - - pos: 44.5,-66.5 - parent: 30 - type: Transform -- uid: 20689 - type: AsteroidRock - components: - - pos: 44.5,-65.5 - parent: 30 - type: Transform -- uid: 20690 - type: AsteroidRock - components: - - pos: 44.5,-64.5 - parent: 30 - type: Transform -- uid: 20691 - type: AsteroidRock - components: - - pos: 44.5,-63.5 - parent: 30 - type: Transform -- uid: 20692 - type: AsteroidRock - components: - - pos: 44.5,-62.5 - parent: 30 - type: Transform -- uid: 20693 - type: AsteroidRock - components: - - pos: 44.5,-61.5 - parent: 30 - type: Transform -- uid: 20694 - type: AsteroidRock - components: - - pos: 44.5,-60.5 - parent: 30 - type: Transform -- uid: 20695 - type: AsteroidRock - components: - - pos: 44.5,-59.5 - parent: 30 - type: Transform -- uid: 20696 - type: AsteroidRock - components: - - pos: 44.5,-58.5 - parent: 30 - type: Transform -- uid: 20697 - type: AsteroidRock - components: - - pos: 44.5,-57.5 - parent: 30 - type: Transform -- uid: 20698 - type: AsteroidRock - components: - - pos: 44.5,-56.5 - parent: 30 - type: Transform -- uid: 20699 - type: AsteroidRock - components: - - pos: 43.5,-70.5 - parent: 30 - type: Transform -- uid: 20700 - type: AtmosFixBlockerMarker - components: - - pos: 38.5,-68.5 - parent: 30 - type: Transform -- uid: 20701 - type: AtmosFixBlockerMarker - components: - - pos: 37.5,-67.5 - parent: 30 - type: Transform -- uid: 20702 - type: AsteroidRock - components: - - pos: 43.5,-67.5 - parent: 30 - type: Transform -- uid: 20703 - type: AsteroidRock - components: - - pos: 43.5,-66.5 - parent: 30 - type: Transform -- uid: 20704 - type: AsteroidRock - components: - - pos: 43.5,-65.5 - parent: 30 - type: Transform -- uid: 20705 - type: AsteroidRock - components: - - pos: 43.5,-64.5 - parent: 30 - type: Transform -- uid: 20706 - type: AsteroidRock - components: - - pos: 43.5,-63.5 - parent: 30 - type: Transform -- uid: 20707 - type: AsteroidRock - components: - - pos: 43.5,-62.5 - parent: 30 - type: Transform -- uid: 20708 - type: AsteroidRock - components: - - pos: 43.5,-61.5 - parent: 30 - type: Transform -- uid: 20709 - type: AtmosFixBlockerMarker - components: - - pos: 44.5,-68.5 - parent: 30 - type: Transform -- uid: 20710 - type: AsteroidRock - components: - - pos: 43.5,-59.5 - parent: 30 - type: Transform -- uid: 20711 - type: AsteroidRock - components: - - pos: 43.5,-58.5 - parent: 30 - type: Transform -- uid: 20712 - type: AsteroidRock - components: - - pos: 43.5,-57.5 - parent: 30 - type: Transform -- uid: 20713 - type: AsteroidRock - components: - - pos: 43.5,-56.5 - parent: 30 - type: Transform -- uid: 20714 - type: AsteroidRock - components: - - pos: 42.5,-70.5 - parent: 30 - type: Transform -- uid: 20715 - type: AtmosFixBlockerMarker - components: - - pos: 36.5,-67.5 - parent: 30 - type: Transform -- uid: 20716 - type: AsteroidRock - components: - - pos: 42.5,-68.5 - parent: 30 - type: Transform -- uid: 20717 - type: AsteroidRock - components: - - pos: 42.5,-67.5 - parent: 30 - type: Transform -- uid: 20718 - type: AsteroidRock - components: - - pos: 42.5,-66.5 - parent: 30 - type: Transform -- uid: 20719 - type: AsteroidRock - components: - - pos: 42.5,-65.5 - parent: 30 - type: Transform -- uid: 20720 - type: AsteroidRock - components: - - pos: 42.5,-64.5 - parent: 30 - type: Transform -- uid: 20721 - type: AsteroidRock - components: - - pos: 42.5,-63.5 - parent: 30 - type: Transform -- uid: 20722 - type: AsteroidRock - components: - - pos: 42.5,-62.5 - parent: 30 - type: Transform -- uid: 20723 - type: AsteroidRock - components: - - pos: 42.5,-61.5 - parent: 30 - type: Transform -- uid: 20724 - type: AsteroidRock - components: - - pos: 42.5,-60.5 - parent: 30 - type: Transform -- uid: 20725 - type: AsteroidRock - components: - - pos: 42.5,-59.5 - parent: 30 - type: Transform -- uid: 20726 - type: AsteroidRock - components: - - pos: 42.5,-58.5 - parent: 30 - type: Transform -- uid: 20727 - type: AsteroidRock - components: - - pos: 42.5,-57.5 - parent: 30 - type: Transform -- uid: 20728 - type: AsteroidRock - components: - - pos: 42.5,-56.5 - parent: 30 - type: Transform -- uid: 20729 - type: AsteroidRock - components: - - pos: 41.5,-70.5 - parent: 30 - type: Transform -- uid: 20730 - type: AsteroidRock - components: - - pos: 41.5,-69.5 - parent: 30 - type: Transform -- uid: 20731 - type: AsteroidRock - components: - - pos: 41.5,-68.5 - parent: 30 - type: Transform -- uid: 20732 - type: AsteroidRock - components: - - pos: 41.5,-67.5 - parent: 30 - type: Transform -- uid: 20733 - type: AsteroidRock - components: - - pos: 41.5,-66.5 - parent: 30 - type: Transform -- uid: 20734 - type: AsteroidRock - components: - - pos: 41.5,-65.5 - parent: 30 - type: Transform -- uid: 20735 - type: AsteroidRock - components: - - pos: 41.5,-64.5 - parent: 30 - type: Transform -- uid: 20736 - type: AsteroidRock - components: - - pos: 41.5,-63.5 - parent: 30 - type: Transform -- uid: 20737 - type: AsteroidRock - components: - - pos: 41.5,-62.5 - parent: 30 - type: Transform -- uid: 20738 - type: AsteroidRock - components: - - pos: 41.5,-61.5 - parent: 30 - type: Transform -- uid: 20739 - type: AsteroidRock - components: - - pos: 41.5,-60.5 - parent: 30 - type: Transform -- uid: 20740 - type: AsteroidRock - components: - - pos: 41.5,-59.5 - parent: 30 - type: Transform -- uid: 20741 - type: AsteroidRock - components: - - pos: 41.5,-58.5 - parent: 30 - type: Transform -- uid: 20742 - type: AsteroidRock - components: - - pos: 41.5,-57.5 - parent: 30 - type: Transform -- uid: 20743 - type: AsteroidRock - components: - - pos: 41.5,-56.5 - parent: 30 - type: Transform -- uid: 20744 - type: AsteroidRock - components: - - pos: 40.5,-70.5 - parent: 30 - type: Transform -- uid: 20745 - type: AsteroidRock - components: - - pos: 40.5,-69.5 - parent: 30 - type: Transform -- uid: 20746 - type: AsteroidRock - components: - - pos: 40.5,-68.5 - parent: 30 - type: Transform -- uid: 20747 - type: AsteroidRock - components: - - pos: 40.5,-67.5 - parent: 30 - type: Transform -- uid: 20748 - type: AsteroidRock - components: - - pos: 40.5,-66.5 - parent: 30 - type: Transform -- uid: 20749 - type: AsteroidRock - components: - - pos: 40.5,-65.5 - parent: 30 - type: Transform -- uid: 20750 - type: AsteroidRock - components: - - pos: 40.5,-64.5 - parent: 30 - type: Transform -- uid: 20751 - type: AtmosFixBlockerMarker - components: - - pos: 39.5,-62.5 - parent: 30 - type: Transform -- uid: 20752 - type: AsteroidRock - components: - - pos: 40.5,-62.5 - parent: 30 - type: Transform -- uid: 20753 - type: AsteroidRock - components: - - pos: 40.5,-61.5 - parent: 30 - type: Transform -- uid: 20754 - type: AsteroidRock - components: - - pos: 40.5,-60.5 - parent: 30 - type: Transform -- uid: 20755 - type: AsteroidRock - components: - - pos: 40.5,-59.5 - parent: 30 - type: Transform -- uid: 20756 - type: AsteroidRock - components: - - pos: 40.5,-58.5 - parent: 30 - type: Transform -- uid: 20757 - type: AsteroidRock - components: - - pos: 40.5,-57.5 - parent: 30 - type: Transform -- uid: 20758 - type: AsteroidRock - components: - - pos: 40.5,-56.5 - parent: 30 - type: Transform -- uid: 20759 - type: AsteroidRock - components: - - pos: 39.5,-70.5 - parent: 30 - type: Transform -- uid: 20760 - type: AsteroidRock - components: - - pos: 39.5,-69.5 - parent: 30 - type: Transform -- uid: 20761 - type: AsteroidRock - components: - - pos: 39.5,-68.5 - parent: 30 - type: Transform -- uid: 20762 - type: AsteroidRock - components: - - pos: 39.5,-67.5 - parent: 30 - type: Transform -- uid: 20763 - type: AsteroidRock - components: - - pos: 39.5,-66.5 - parent: 30 - type: Transform -- uid: 20764 - type: AsteroidRock - components: - - pos: 39.5,-65.5 - parent: 30 - type: Transform -- uid: 20765 - type: AsteroidRock - components: - - pos: 39.5,-64.5 - parent: 30 - type: Transform -- uid: 20766 - type: AsteroidRock - components: - - pos: 39.5,-63.5 - parent: 30 - type: Transform -- uid: 20767 - type: AtmosFixBlockerMarker - components: - - pos: 39.5,-61.5 - parent: 30 - type: Transform -- uid: 20768 - type: AtmosFixBlockerMarker - components: - - pos: 39.5,-60.5 - parent: 30 - type: Transform -- uid: 20769 - type: AtmosFixBlockerMarker - components: - - pos: 37.5,-59.5 - parent: 30 - type: Transform -- uid: 20770 - type: AsteroidRock - components: - - pos: 39.5,-59.5 - parent: 30 - type: Transform -- uid: 20771 - type: AsteroidRock - components: - - pos: 39.5,-58.5 - parent: 30 - type: Transform -- uid: 20772 - type: AsteroidRock - components: - - pos: 39.5,-57.5 - parent: 30 - type: Transform -- uid: 20773 - type: AsteroidRock - components: - - pos: 39.5,-56.5 - parent: 30 - type: Transform -- uid: 20774 - type: AsteroidRock - components: - - pos: 38.5,-70.5 - parent: 30 - type: Transform -- uid: 20775 - type: AsteroidRock - components: - - pos: 38.5,-69.5 - parent: 30 - type: Transform -- uid: 20776 - type: AtmosFixBlockerMarker - components: - - pos: 36.5,-66.5 - parent: 30 - type: Transform -- uid: 20777 - type: AtmosFixBlockerMarker - components: - - pos: 35.5,-66.5 - parent: 30 - type: Transform -- uid: 20778 - type: AsteroidRock - components: - - pos: 38.5,-66.5 - parent: 30 - type: Transform -- uid: 20779 - type: AsteroidRock - components: - - pos: 38.5,-65.5 - parent: 30 - type: Transform -- uid: 20780 - type: AsteroidRock - components: - - pos: 38.5,-64.5 - parent: 30 - type: Transform -- uid: 20781 - type: AsteroidRock - components: - - pos: 38.5,-63.5 - parent: 30 - type: Transform -- uid: 20782 - type: AsteroidRock - components: - - pos: 38.5,-62.5 - parent: 30 - type: Transform -- uid: 20783 - type: AsteroidRock - components: - - pos: 38.5,-61.5 - parent: 30 - type: Transform -- uid: 20784 - type: AsteroidRock - components: - - pos: 38.5,-60.5 - parent: 30 - type: Transform -- uid: 20785 - type: AsteroidRock - components: - - pos: 38.5,-59.5 - parent: 30 - type: Transform -- uid: 20786 - type: AsteroidRock - components: - - pos: 38.5,-58.5 - parent: 30 - type: Transform -- uid: 20787 - type: AsteroidRock - components: - - pos: 38.5,-57.5 - parent: 30 - type: Transform -- uid: 20788 - type: AsteroidRock - components: - - pos: 38.5,-56.5 - parent: 30 - type: Transform -- uid: 20789 - type: AsteroidRock - components: - - pos: 37.5,-70.5 - parent: 30 - type: Transform -- uid: 20790 - type: AsteroidRock - components: - - pos: 37.5,-69.5 - parent: 30 - type: Transform -- uid: 20791 - type: AsteroidRock - components: - - pos: 37.5,-68.5 - parent: 30 - type: Transform -- uid: 20792 - type: AtmosFixBlockerMarker - components: - - pos: 35.5,-65.5 - parent: 30 - type: Transform -- uid: 20793 - type: AtmosFixBlockerMarker - components: - - pos: 44.5,-69.5 - parent: 30 - type: Transform -- uid: 20794 - type: AsteroidRock - components: - - pos: 37.5,-65.5 - parent: 30 - type: Transform -- uid: 20795 - type: AsteroidRock - components: - - pos: 37.5,-64.5 - parent: 30 - type: Transform -- uid: 20796 - type: AsteroidRock - components: - - pos: 37.5,-63.5 - parent: 30 - type: Transform -- uid: 20797 - type: AsteroidRock - components: - - pos: 37.5,-62.5 - parent: 30 - type: Transform -- uid: 20798 - type: AsteroidRock - components: - - pos: 37.5,-61.5 - parent: 30 - type: Transform -- uid: 20799 - type: AtmosFixBlockerMarker - components: - - pos: 37.5,-60.5 - parent: 30 - type: Transform -- uid: 20800 - type: AtmosFixBlockerMarker - components: - - pos: 40.5,-63.5 - parent: 30 - type: Transform -- uid: 20801 - type: AsteroidRock - components: - - pos: 37.5,-58.5 - parent: 30 - type: Transform -- uid: 20802 - type: AsteroidRock - components: - - pos: 37.5,-57.5 - parent: 30 - type: Transform -- uid: 20803 - type: AsteroidRock - components: - - pos: 37.5,-56.5 - parent: 30 - type: Transform -- uid: 20804 - type: AsteroidRock - components: - - pos: 36.5,-70.5 - parent: 30 - type: Transform -- uid: 20805 - type: AsteroidRock - components: - - pos: 36.5,-69.5 - parent: 30 - type: Transform -- uid: 20806 - type: AsteroidRock - components: - - pos: 36.5,-68.5 - parent: 30 - type: Transform -- uid: 20807 - type: AtmosFixBlockerMarker - components: - - pos: 43.5,-68.5 - parent: 30 - type: Transform -- uid: 20808 - type: AtmosFixBlockerMarker - components: - - pos: 45.5,-69.5 - parent: 30 - type: Transform -- uid: 20809 - type: AtmosFixBlockerMarker - components: - - pos: 44.5,-70.5 - parent: 30 - type: Transform -- uid: 20810 - type: AsteroidRock - components: - - pos: 36.5,-64.5 - parent: 30 - type: Transform -- uid: 20811 - type: AsteroidRock - components: - - pos: 36.5,-63.5 - parent: 30 - type: Transform -- uid: 20812 - type: AsteroidRock - components: - - pos: 36.5,-62.5 - parent: 30 - type: Transform -- uid: 20813 - type: AsteroidRock - components: - - pos: 36.5,-61.5 - parent: 30 - type: Transform -- uid: 20814 - type: AsteroidRock - components: - - pos: 36.5,-60.5 - parent: 30 - type: Transform -- uid: 20815 - type: AsteroidRock - components: - - pos: 36.5,-59.5 - parent: 30 - type: Transform -- uid: 20816 - type: AsteroidRock - components: - - pos: 36.5,-58.5 - parent: 30 - type: Transform -- uid: 20817 - type: AtmosFixBlockerMarker - components: - - pos: 44.5,-67.5 - parent: 30 - type: Transform -- uid: 20818 - type: AsteroidRock - components: - - pos: 36.5,-56.5 - parent: 30 - type: Transform -- uid: 20819 - type: AsteroidRock - components: - - pos: 35.5,-70.5 - parent: 30 - type: Transform -- uid: 20820 - type: AsteroidRock - components: - - pos: 35.5,-69.5 - parent: 30 - type: Transform -- uid: 20821 - type: AsteroidRock - components: - - pos: 35.5,-68.5 - parent: 30 - type: Transform -- uid: 20822 - type: AsteroidRock - components: - - pos: 35.5,-67.5 - parent: 30 - type: Transform -- uid: 20823 - type: AtmosFixBlockerMarker - components: - - pos: 42.5,-69.5 - parent: 30 - type: Transform -- uid: 20824 - type: AtmosFixBlockerMarker - components: - - pos: 43.5,-69.5 - parent: 30 - type: Transform -- uid: 20825 - type: AsteroidRock - components: - - pos: 35.5,-64.5 - parent: 30 - type: Transform -- uid: 20826 - type: AsteroidRock - components: - - pos: 35.5,-63.5 - parent: 30 - type: Transform -- uid: 20827 - type: AsteroidRock - components: - - pos: 35.5,-62.5 - parent: 30 - type: Transform -- uid: 20828 - type: AsteroidRock - components: - - pos: 35.5,-61.5 - parent: 30 - type: Transform -- uid: 20829 - type: AsteroidRock - components: - - pos: 35.5,-60.5 - parent: 30 - type: Transform -- uid: 20830 - type: AsteroidRock - components: - - pos: 35.5,-59.5 - parent: 30 - type: Transform -- uid: 20831 - type: AsteroidRock - components: - - pos: 35.5,-58.5 - parent: 30 - type: Transform -- uid: 20832 - type: AsteroidRock - components: - - pos: 35.5,-57.5 - parent: 30 - type: Transform -- uid: 20833 - type: AsteroidRock - components: - - pos: 35.5,-56.5 - parent: 30 - type: Transform -- uid: 20834 - type: AsteroidRock - components: - - pos: 34.5,-70.5 - parent: 30 - type: Transform -- uid: 20835 - type: AsteroidRock - components: - - pos: 34.5,-69.5 - parent: 30 - type: Transform -- uid: 20836 - type: AsteroidRock - components: - - pos: 34.5,-68.5 - parent: 30 - type: Transform -- uid: 20837 - type: AsteroidRock - components: - - pos: 34.5,-67.5 - parent: 30 - type: Transform -- uid: 20838 - type: AsteroidRock - components: - - pos: 34.5,-66.5 - parent: 30 - type: Transform -- uid: 20839 - type: AsteroidRock - components: - - pos: 34.5,-65.5 - parent: 30 - type: Transform -- uid: 20840 - type: AsteroidRock - components: - - pos: 34.5,-64.5 - parent: 30 - type: Transform -- uid: 20841 - type: AsteroidRock - components: - - pos: 34.5,-63.5 - parent: 30 - type: Transform -- uid: 20842 - type: AsteroidRock - components: - - pos: 34.5,-62.5 - parent: 30 - type: Transform -- uid: 20843 - type: AsteroidRock - components: - - pos: 34.5,-61.5 - parent: 30 - type: Transform -- uid: 20844 - type: AsteroidRock - components: - - pos: 34.5,-60.5 - parent: 30 - type: Transform -- uid: 20845 - type: AsteroidRock - components: - - pos: 34.5,-59.5 - parent: 30 - type: Transform -- uid: 20846 - type: AsteroidRock - components: - - pos: 34.5,-58.5 - parent: 30 - type: Transform -- uid: 20847 - type: AsteroidRock - components: - - pos: 34.5,-57.5 - parent: 30 - type: Transform -- uid: 20848 - type: AsteroidRock - components: - - pos: 34.5,-56.5 - parent: 30 - type: Transform -- uid: 20849 - type: AsteroidRock - components: - - pos: 33.5,-70.5 - parent: 30 - type: Transform -- uid: 20850 - type: AsteroidRock - components: - - pos: 33.5,-69.5 - parent: 30 - type: Transform -- uid: 20851 - type: AsteroidRock - components: - - pos: 33.5,-68.5 - parent: 30 - type: Transform -- uid: 20852 - type: AsteroidRock - components: - - pos: 33.5,-67.5 - parent: 30 - type: Transform -- uid: 20853 - type: AsteroidRock - components: - - pos: 33.5,-66.5 - parent: 30 - type: Transform -- uid: 20854 - type: AsteroidRock - components: - - pos: 33.5,-65.5 - parent: 30 - type: Transform -- uid: 20855 - type: AsteroidRock - components: - - pos: 33.5,-64.5 - parent: 30 - type: Transform -- uid: 20856 - type: AsteroidRock - components: - - pos: 33.5,-63.5 - parent: 30 - type: Transform -- uid: 20857 - type: AsteroidRock - components: - - pos: 33.5,-62.5 - parent: 30 - type: Transform -- uid: 20858 - type: AsteroidRock - components: - - pos: 33.5,-61.5 - parent: 30 - type: Transform -- uid: 20859 - type: AsteroidRock - components: - - pos: 33.5,-60.5 - parent: 30 - type: Transform -- uid: 20860 - type: AsteroidRock - components: - - pos: 33.5,-59.5 - parent: 30 - type: Transform -- uid: 20861 - type: AsteroidRock - components: - - pos: 33.5,-58.5 - parent: 30 - type: Transform -- uid: 20862 - type: AsteroidRock - components: - - pos: 33.5,-57.5 - parent: 30 - type: Transform -- uid: 20863 - type: AsteroidRock - components: - - pos: 33.5,-56.5 - parent: 30 - type: Transform -- uid: 20864 - type: AtmosFixBlockerMarker - components: - - pos: 43.5,-60.5 - parent: 30 - type: Transform -- uid: 20865 - type: AtmosFixBlockerMarker - components: - - pos: 36.5,-57.5 - parent: 30 - type: Transform -- uid: 20866 - type: AtmosFixBlockerMarker - components: - - pos: 42.5,-74.5 - parent: 30 - type: Transform -- uid: 20867 - type: CrateFilledSpawner - components: - - pos: 41.5,-73.5 - parent: 30 - type: Transform -- uid: 20868 - type: CrateFilledSpawner - components: - - pos: 37.5,-60.5 - parent: 30 - type: Transform -- uid: 20869 - type: CrateFilledSpawner - components: - - pos: 43.5,-60.5 - parent: 30 - type: Transform -- uid: 20870 - type: SpawnVehicleATV - components: - - pos: 39.5,-71.5 - parent: 30 - type: Transform -- uid: 20871 - type: VehicleKeyATV - components: - - pos: 39.377373,-71.526276 - parent: 30 - type: Transform -- uid: 20872 - type: SalvageMaterialCrateSpawner - components: - - pos: 37.5,-59.5 - parent: 30 - type: Transform -- uid: 20873 - type: SalvageCanisterSpawner - components: - - pos: 44.5,-67.5 - parent: 30 - type: Transform -- uid: 20874 - type: RandomArtifactSpawner - components: - - pos: 38.5,-73.5 - parent: 30 - type: Transform -- uid: 20875 - type: MaintenanceWeaponSpawner - components: - - pos: 38.5,-68.5 - parent: 30 - type: Transform -- uid: 20876 - type: MaintenanceWeaponSpawner - components: - - pos: 44.5,-70.5 - parent: 30 - type: Transform -- uid: 20877 - type: DonkpocketBoxSpawner - components: - - pos: 36.5,-57.5 - parent: 30 - type: Transform -- uid: 20878 - type: ProtolatheMachineCircuitboard - components: - - pos: 40.41517,-63.5501 - parent: 30 - type: Transform -- uid: 20879 - type: CrateFoodMRE - components: - - pos: 45.5,-64.5 - parent: 30 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 220.53748 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20880 - type: Floodlight - components: - - pos: 38.480736,-53.50987 - parent: 30 - type: Transform - - canCollide: False - type: Physics -- uid: 20881 - type: Floodlight - components: - - pos: 41.59011,-51.431744 - parent: 30 - type: Transform - - canCollide: False - type: Physics -- uid: 20882 - type: SheetPlasma - components: - - pos: 39.511093,-61.499256 - parent: 30 - type: Transform -- uid: 20883 - type: SpawnMobBear - components: - - pos: 38.5,-67.5 - parent: 30 - type: Transform -- uid: 20884 - type: AtmosFixPlasmaMarker - components: - - pos: 25.5,-30.5 - parent: 30 - type: Transform -- uid: 20885 - type: SpawnPointTechnicalAssistant - components: - - pos: -22.5,-42.5 - parent: 30 - type: Transform -- uid: 20886 - type: SpawnPointTechnicalAssistant - components: - - pos: -22.5,-41.5 - parent: 30 - type: Transform -- uid: 20887 - type: SpawnPointMedicalIntern - components: - - pos: -24.5,-18.5 - parent: 30 - type: Transform -- uid: 20888 - type: SpawnPointMedicalIntern - components: - - pos: -23.5,-18.5 - parent: 30 - type: Transform -- uid: 20889 - type: SpawnPointServiceWorker - components: - - pos: -11.5,13.5 - parent: 30 - type: Transform -- uid: 20890 - type: SpawnPointServiceWorker - components: - - pos: -9.5,13.5 - parent: 30 - type: Transform -- uid: 20891 - type: SpawnPointSecurityCadet - components: - - pos: -32.5,57.5 - parent: 30 - type: Transform -- uid: 20892 - type: SpawnPointSecurityCadet - components: - - pos: -33.5,57.5 - parent: 30 - type: Transform -- uid: 20893 - type: CableMV - components: - - pos: -47.5,42.5 - parent: 30 - type: Transform -- uid: 20894 - type: CableMV - components: - - pos: -47.5,41.5 - parent: 30 - type: Transform -- uid: 20895 - type: CableMV - components: - - pos: -47.5,40.5 - parent: 30 - type: Transform -- uid: 20896 - type: CableMV - components: - - pos: -47.5,39.5 - parent: 30 - type: Transform -- uid: 20897 - type: CableMV - components: - - pos: -47.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20898 - type: CableMV - components: - - pos: -46.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20899 - type: CableMV - components: - - pos: -48.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20900 - type: CableMV - components: - - pos: -43.5,43.5 - parent: 30 - type: Transform -- uid: 20901 - type: CableMV - components: - - pos: -43.5,42.5 - parent: 30 - type: Transform -- uid: 20902 - type: CableMV - components: - - pos: -43.5,41.5 - parent: 30 - type: Transform -- uid: 20903 - type: CableMV - components: - - pos: -43.5,40.5 - parent: 30 - type: Transform -- uid: 20904 - type: CableMV - components: - - pos: -43.5,39.5 - parent: 30 - type: Transform -- uid: 20905 - type: CableMV - components: - - pos: -43.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20906 - type: CableMV - components: - - pos: -44.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20907 - type: CableMV - components: - - pos: -42.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20908 - type: CableMV - components: - - pos: -39.5,44.5 - parent: 30 - type: Transform -- uid: 20909 - type: CableMV - components: - - pos: -39.5,43.5 - parent: 30 - type: Transform -- uid: 20910 - type: CableMV - components: - - pos: -39.5,42.5 - parent: 30 - type: Transform -- uid: 20911 - type: CableMV - components: - - pos: -39.5,41.5 - parent: 30 - type: Transform -- uid: 20912 - type: CableMV - components: - - pos: -39.5,40.5 - parent: 30 - type: Transform -- uid: 20913 - type: CableMV - components: - - pos: -39.5,39.5 - parent: 30 - type: Transform -- uid: 20914 - type: CableMV - components: - - pos: -39.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20915 - type: CableMV - components: - - pos: -40.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20916 - type: CableMV - components: - - pos: -38.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20917 - type: CableMV - components: - - pos: -35.5,43.5 - parent: 30 - type: Transform -- uid: 20918 - type: CableMV - components: - - pos: -35.5,42.5 - parent: 30 - type: Transform -- uid: 20919 - type: CableMV - components: - - pos: -35.5,41.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20920 - type: CableMV - components: - - pos: -35.5,40.5 - parent: 30 - type: Transform -- uid: 20921 - type: CableMV - components: - - pos: -35.5,39.5 - parent: 30 - type: Transform -- uid: 20922 - type: CableMV - components: - - pos: -35.5,38.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20923 - type: CableMV - components: - - pos: -13.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20924 - type: CableMV - components: - - pos: -13.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20925 - type: CableMV - components: - - pos: -12.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20926 - type: CableMV - components: - - pos: -11.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20927 - type: CableMV - components: - - pos: -10.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20928 - type: CableMV - components: - - pos: -9.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20929 - type: CableMV - components: - - pos: -8.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20930 - type: CableMV - components: - - pos: -7.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20931 - type: CableMV - components: - - pos: -6.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20932 - type: CableMV - components: - - pos: -5.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20933 - type: CableMV - components: - - pos: -5.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20934 - type: CableMV - components: - - pos: -14.5,40.5 - parent: 30 - type: Transform -- uid: 20935 - type: CableMV - components: - - pos: -14.5,41.5 - parent: 30 - type: Transform -- uid: 20936 - type: CableMV - components: - - pos: -14.5,42.5 - parent: 30 - type: Transform -- uid: 20937 - type: CableMV - components: - - pos: -14.5,43.5 - parent: 30 - type: Transform -- uid: 20938 - type: CableMV - components: - - pos: -14.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20939 - type: CableMV - components: - - pos: -15.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20940 - type: CableMV - components: - - pos: -4.5,40.5 - parent: 30 - type: Transform -- uid: 20941 - type: CableMV - components: - - pos: -4.5,41.5 - parent: 30 - type: Transform -- uid: 20942 - type: CableMV - components: - - pos: -4.5,42.5 - parent: 30 - type: Transform -- uid: 20943 - type: CableMV - components: - - pos: -4.5,43.5 - parent: 30 - type: Transform -- uid: 20944 - type: CableMV - components: - - pos: -4.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20945 - type: CableMV - components: - - pos: -3.5,43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20946 - type: CableMV - components: - - pos: 0.5,31.5 - parent: 30 - type: Transform -- uid: 20947 - type: CableMV - components: - - pos: 0.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20948 - type: CableMV - components: - - pos: 3.5,32.5 - parent: 30 - type: Transform -- uid: 20949 - type: CableMV - components: - - pos: 3.5,30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20950 - type: CableMV - components: - - pos: 3.5,31.5 - parent: 30 - type: Transform -- uid: 20951 - type: WallSolid - components: - - pos: 26.5,21.5 - parent: 30 - type: Transform -- uid: 20952 - type: FirelockGlass - components: - - pos: 26.5,18.5 - parent: 30 - type: Transform -- uid: 20953 - type: FirelockGlass - components: - - pos: 26.5,19.5 - parent: 30 - type: Transform -- uid: 20954 - type: FirelockGlass - components: - - pos: 26.5,20.5 - parent: 30 - type: Transform -- uid: 20955 - type: SignRobo - components: - - pos: 16.5,24.5 - parent: 30 - type: Transform -- uid: 20956 - type: Chair - components: - - pos: 17.5,27.5 - parent: 30 - type: Transform -- uid: 20957 - type: Chair - components: - - pos: 16.5,27.5 - parent: 30 - type: Transform -- uid: 20958 - type: Chair - components: - - pos: 15.5,27.5 - parent: 30 - type: Transform -- uid: 20959 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: 18.5,24.5 - parent: 30 - type: Transform -- uid: 20960 - type: SignMedical - components: - - pos: -33.5,-0.5 - parent: 30 - type: Transform -- uid: 20962 - type: AirlockGlass - components: - - pos: 44.5,34.5 - parent: 30 - type: Transform -- uid: 20963 - type: AirlockBrigGlassLocked - components: - - pos: 34.5,38.5 - parent: 30 - type: Transform -- uid: 20964 - type: Window - components: - - pos: 44.5,33.5 - parent: 30 - type: Transform -- uid: 20965 - type: AirlockBrigGlassLocked - components: - - pos: 44.5,38.5 - parent: 30 - type: Transform -- uid: 20966 - type: SMESMachineCircuitboard - components: - - pos: 2.5210252,23.538292 - parent: 30 - type: Transform -- uid: 20967 - type: CapacitorStockPart - components: - - pos: 2.4657774,20.884964 - parent: 30 - type: Transform -- uid: 20968 - type: Rack - components: - - pos: 5.5,23.5 - parent: 30 - type: Transform -- uid: 20969 - type: Grille - components: - - pos: 7.5,22.5 - parent: 30 - type: Transform -- uid: 20970 - type: HighPowerMicroLaserStockPart - components: - - pos: 2.559926,21.402208 - parent: 30 - type: Transform -- uid: 20971 - type: ReinforcedWindow - components: - - pos: 7.5,22.5 - parent: 30 - type: Transform -- uid: 20972 - type: CableApcStack - components: - - pos: 2.466176,21.652208 - parent: 30 - type: Transform -- uid: 20973 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,23.5 - parent: 30 - type: Transform -- uid: 20974 - type: AdvancedScanningModuleStockPart - components: - - pos: 2.2878256,21.230333 - parent: 30 - type: Transform -- uid: 20975 - type: Grille - components: - - pos: 7.5,21.5 - parent: 30 - type: Transform -- uid: 20976 - type: ReinforcedWindow - components: - - pos: 7.5,21.5 - parent: 30 - type: Transform -- uid: 20977 - type: Rack - components: - - pos: 3.5,23.5 - parent: 30 - type: Transform -- uid: 20978 - type: Rack - components: - - pos: 2.5,23.5 - parent: 30 - type: Transform -- uid: 20979 - type: TransmitterSubspaceStockPart - components: - - pos: 3.468286,20.58795 - parent: 30 - type: Transform -- uid: 20980 - type: SurveillanceCameraRouterCommand - components: - - pos: 7.5,41.5 - parent: 30 - type: Transform -- uid: 20981 - type: PortableScrubberMachineCircuitBoard - components: - - pos: 3.5679002,23.491417 - parent: 30 - type: Transform -- uid: 20982 - type: CapacitorStockPart - components: - - pos: 2.6220274,21.009964 - parent: 30 - type: Transform -- uid: 20983 - type: AutolatheMachineCircuitboard - components: - - pos: 3.4429002,23.663292 - parent: 30 - type: Transform -- uid: 20984 - type: AirlockEngineeringGlassLocked - components: - - name: Technical Storage - type: MetaData - - pos: 4.5,24.5 - parent: 30 - type: Transform -- uid: 20985 - type: SMESMachineCircuitboard - components: - - pos: 2.4897752,23.632042 - parent: 30 - type: Transform -- uid: 20986 - type: PottedPlant1 - components: - - pos: 16.5,22.5 - parent: 30 - type: Transform -- uid: 20987 - type: Crowbar - components: - - pos: 25.541548,21.97688 - parent: 30 - type: Transform -- uid: 20988 - type: LockerScienceFilled - components: - - pos: 21.5,8.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20989 - type: SpawnPointScientist - components: - - pos: 22.5,11.5 - parent: 30 - type: Transform -- uid: 20990 - type: SpawnPointScientist - components: - - pos: 22.5,10.5 - parent: 30 - type: Transform -- uid: 20991 - type: SpawnPointScientist - components: - - pos: 22.5,8.5 - parent: 30 - type: Transform -- uid: 20992 - type: PowerCellRecharger - components: - - pos: 16.5,-0.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 20993 - type: PowerCellRecharger - components: - - pos: -18.5,-35.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 20994 - type: WeaponCapacitorRecharger - components: - - pos: -15.5,-34.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 20995 - type: PowerCellRecharger - components: - - pos: -11.5,-35.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 20996 - type: PowerCellRecharger - components: - - pos: 1.5,-44.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 20997 - type: PowerCellRecharger - components: - - pos: -12.5,-14.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 20998 - type: WeaponCapacitorRecharger - components: - - pos: -6.5,46.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 20999 - type: PowerCellRecharger - components: - - pos: -12.5,45.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 21000 - type: PowerCellRecharger - components: - - pos: -33.5,39.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 21001 - type: PowerCellRecharger - components: - - pos: -39.5,17.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 21002 - type: ClothingNeckStethoscope - components: - - pos: -25.5,-14.5 - parent: 30 - type: Transform -- uid: 21003 - type: HandheldHealthAnalyzer - components: - - pos: -25.5,-12.5 - parent: 30 - type: Transform -- uid: 21004 - type: HandheldHealthAnalyzer - components: - - pos: -7.4859223,-7.4193463 - parent: 30 - type: Transform -- uid: 21005 - type: HandheldHealthAnalyzer - components: - - pos: -12.40352,-14.246286 - parent: 30 - type: Transform -- uid: 21006 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-10.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21007 - type: CableApcExtension - components: - - pos: -20.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21008 - type: CableApcExtension - components: - - pos: -20.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21009 - type: CableApcExtension - components: - - pos: -20.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21010 - type: CableApcExtension - components: - - pos: -20.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21011 - type: CableApcExtension - components: - - pos: -20.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21012 - type: CableApcExtension - components: - - pos: -27.5,58.5 - parent: 30 - type: Transform -- uid: 21013 - type: CableApcExtension - components: - - pos: -26.5,58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21014 - type: CableApcExtension - components: - - pos: -26.5,59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21015 - type: CableApcExtension - components: - - pos: -26.5,60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21016 - type: CableApcExtension - components: - - pos: -29.5,60.5 - parent: 30 - type: Transform -- uid: 21017 - type: CableApcExtension - components: - - pos: -28.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21018 - type: CableApcExtension - components: - - pos: -29.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21019 - type: CableApcExtension - components: - - pos: -30.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21020 - type: CableApcExtension - components: - - pos: -35.5,60.5 - parent: 30 - type: Transform -- uid: 21021 - type: WallReinforced - components: - - pos: -38.5,61.5 - parent: 30 - type: Transform -- uid: 21022 - type: CableApcExtension - components: - - pos: -36.5,59.5 - parent: 30 - type: Transform -- uid: 21023 - type: CableApcExtension - components: - - pos: -34.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21024 - type: CableApcExtension - components: - - pos: -33.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21025 - type: CableApcExtension - components: - - pos: -32.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21026 - type: CableApcExtension - components: - - pos: -34.5,60.5 - parent: 30 - type: Transform -- uid: 21027 - type: WallReinforced - components: - - pos: -39.5,61.5 - parent: 30 - type: Transform -- uid: 21028 - type: Table - components: - - pos: -37.5,60.5 - parent: 30 - type: Transform -- uid: 21029 - type: WallReinforced - components: - - pos: -40.5,61.5 - parent: 30 - type: Transform -- uid: 21030 - type: WallReinforced - components: - - pos: -41.5,61.5 - parent: 30 - type: Transform -- uid: 21031 - type: SolarPanel - components: - - pos: -72.5,57.5 - parent: 30 - type: Transform -- uid: 21032 - type: CableApcExtension - components: - - pos: -36.5,61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21033 - type: SubstationBasic - components: - - name: Bridge Substation - type: MetaData - - pos: -24.5,41.5 - parent: 30 - type: Transform -- uid: 21034 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-9.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21035 - type: CableMV - components: - - pos: 14.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21036 - type: CableMV - components: - - pos: 13.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21037 - type: CableMV - components: - - pos: 12.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21038 - type: CableMV - components: - - pos: 12.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21039 - type: RandomSpawner - components: - - pos: 14.5,56.5 - parent: 30 - type: Transform -- uid: 21040 - type: MaintenanceFluffSpawner - components: - - pos: 12.5,49.5 - parent: 30 - type: Transform -- uid: 21041 - type: PowerCellRecharger - components: - - pos: 6.5,65.5 - parent: 30 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 21042 - type: ParchisBoard - components: - - pos: 12.5,58.5 - parent: 30 - type: Transform -- uid: 21043 - type: d6Dice - components: - - pos: 12.294352,58.645473 - parent: 30 - type: Transform -- uid: 21044 - type: d6Dice - components: - - pos: 12.684977,58.457973 - parent: 30 - type: Transform -- uid: 21045 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 17.5,54.5 - parent: 30 - type: Transform -- uid: 21046 - type: ClosetEmergencyFilledRandom - components: - - pos: 15.5,54.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21047 - type: AirlockExternalGlassLocked - components: - - pos: -37.5,-39.5 - parent: 30 - type: Transform -- uid: 21048 - type: Carpet - components: - - pos: -28.5,-3.5 - parent: 30 - type: Transform -- uid: 21049 - type: EmergencyLight - components: - - pos: -30.5,-19.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21050 - type: WallReinforced - components: - - pos: -32.5,-48.5 - parent: 30 - type: Transform -- uid: 21051 - type: WallReinforced - components: - - pos: -32.5,-47.5 - parent: 30 - type: Transform -- uid: 21052 - type: ReinforcedWindow - components: - - pos: -33.5,-45.5 - parent: 30 - type: Transform -- uid: 21053 - type: WallReinforced - components: - - pos: -34.5,-47.5 - parent: 30 - type: Transform -- uid: 21054 - type: WallReinforced - components: - - pos: -34.5,-48.5 - parent: 30 - type: Transform -- uid: 21055 - type: ReinforcedWindow - components: - - pos: -38.5,-47.5 - parent: 30 - type: Transform -- uid: 21056 - type: ReinforcedWindow - components: - - pos: -38.5,-48.5 - parent: 30 - type: Transform -- uid: 21057 - type: ReinforcedWindow - components: - - pos: -37.5,-48.5 - parent: 30 - type: Transform -- uid: 21058 - type: ReinforcedWindow - components: - - pos: -36.5,-48.5 - parent: 30 - type: Transform -- uid: 21059 - type: ReinforcedWindow - components: - - pos: -35.5,-48.5 - parent: 30 - type: Transform -- uid: 21060 - type: WallReinforced - components: - - pos: -38.5,-46.5 - parent: 30 - type: Transform -- uid: 21061 - type: WallReinforced - components: - - pos: -38.5,-45.5 - parent: 30 - type: Transform -- uid: 21062 - type: WallReinforced - components: - - pos: -38.5,-44.5 - parent: 30 - type: Transform -- uid: 21063 - type: ReinforcedWindow - components: - - pos: -37.5,-44.5 - parent: 30 - type: Transform -- uid: 21064 - type: ReinforcedWindow - components: - - pos: -36.5,-44.5 - parent: 30 - type: Transform -- uid: 21065 - type: ReinforcedWindow - components: - - pos: -35.5,-44.5 - parent: 30 - type: Transform -- uid: 21066 - type: WallReinforced - components: - - pos: -34.5,-44.5 - parent: 30 - type: Transform -- uid: 21067 - type: WallReinforced - components: - - pos: -34.5,-45.5 - parent: 30 - type: Transform -- uid: 21068 - type: ReinforcedWindow - components: - - pos: -33.5,-47.5 - parent: 30 - type: Transform -- uid: 21069 - type: WallReinforced - components: - - pos: -32.5,-45.5 - parent: 30 - type: Transform -- uid: 21070 - type: WallReinforced - components: - - pos: -32.5,-44.5 - parent: 30 - type: Transform -- uid: 21071 - type: WallReinforced - components: - - pos: -32.5,-43.5 - parent: 30 - type: Transform -- uid: 21072 - type: WallReinforced - components: - - pos: -32.5,-42.5 - parent: 30 - type: Transform -- uid: 21073 - type: PosterContrabandWehWatches - components: - - pos: -29.5,-41.5 - parent: 30 - type: Transform -- uid: 21074 - type: WallReinforced - components: - - pos: -30.5,-48.5 - parent: 30 - type: Transform -- uid: 21075 - type: ReinforcedWindow - components: - - pos: -31.5,-48.5 - parent: 30 - type: Transform -- uid: 21076 - type: Grille - components: - - pos: -35.5,-44.5 - parent: 30 - type: Transform -- uid: 21077 - type: Grille - components: - - pos: -36.5,-44.5 - parent: 30 - type: Transform -- uid: 21078 - type: Grille - components: - - pos: -37.5,-44.5 - parent: 30 - type: Transform -- uid: 21079 - type: Grille - components: - - pos: -33.5,-45.5 - parent: 30 - type: Transform -- uid: 21080 - type: Grille - components: - - pos: -33.5,-47.5 - parent: 30 - type: Transform -- uid: 21081 - type: Grille - components: - - pos: -31.5,-48.5 - parent: 30 - type: Transform -- uid: 21082 - type: Grille - components: - - pos: -35.5,-48.5 - parent: 30 - type: Transform -- uid: 21083 - type: Grille - components: - - pos: -36.5,-48.5 - parent: 30 - type: Transform -- uid: 21084 - type: Grille - components: - - pos: -37.5,-48.5 - parent: 30 - type: Transform -- uid: 21085 - type: Grille - components: - - pos: -38.5,-48.5 - parent: 30 - type: Transform -- uid: 21086 - type: Grille - components: - - pos: -38.5,-47.5 - parent: 30 - type: Transform -- uid: 21087 - type: CrateFilledSpawner - components: - - pos: -37.5,-47.5 - parent: 30 - type: Transform -- uid: 21088 - type: Table - components: - - pos: -37.5,-45.5 - parent: 30 - type: Transform -- uid: 21089 - type: ClosetEmergencyFilledRandom - components: - - pos: -35.5,-45.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21090 - type: Table - components: - - pos: -36.5,-45.5 - parent: 30 - type: Transform -- uid: 21091 - type: Bed - components: - - pos: -35.5,-47.5 - parent: 30 - type: Transform -- uid: 21092 - type: BedsheetSpawner - components: - - pos: -35.5,-47.5 - parent: 30 - type: Transform -- uid: 21093 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -37.5,-46.5 - parent: 30 - type: Transform -- uid: 21094 - type: Shovel - components: - - pos: -36.49449,-46.635433 - parent: 30 - type: Transform -- uid: 21095 - type: CigPackRed - components: - - pos: -36.52574,-45.479183 - parent: 30 - type: Transform -- uid: 21096 - type: Wirecutter - components: - - pos: -37.478867,-45.49481 - parent: 30 - type: Transform -- uid: 21097 - type: MaintenanceFluffSpawner - components: - - pos: -37.5,-45.5 - parent: 30 - type: Transform -- uid: 21098 - type: Chair - components: - - pos: -31.5,-47.5 - parent: 30 - type: Transform -- uid: 21099 - type: CigaretteSyndicate - components: - - pos: -31.471878,-47.541683 - parent: 30 - type: Transform -- uid: 21100 - type: CableApcExtension - components: - - pos: -31.5,-40.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21101 - type: CableApcExtension - components: - - pos: -31.5,-41.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21102 - type: CableApcExtension - components: - - pos: -31.5,-42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21103 - type: CableApcExtension - components: - - pos: -31.5,-43.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21104 - type: CableApcExtension - components: - - pos: -31.5,-44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21105 - type: CableApcExtension - components: - - pos: -31.5,-45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21106 - type: CableApcExtension - components: - - pos: -31.5,-46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21107 - type: CableApcExtension - components: - - pos: -32.5,-46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21108 - type: CableApcExtension - components: - - pos: -33.5,-46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21109 - type: CableApcExtension - components: - - pos: -34.5,-46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21110 - type: CableApcExtension - components: - - pos: -35.5,-46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21111 - type: CableApcExtension - components: - - pos: -36.5,-46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21112 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-45.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21113 - type: GrilleBroken - components: - - pos: -34.5,-46.5 - parent: 30 - type: Transform -- uid: 21114 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: -30.5,-42.5 - parent: 30 - type: Transform -- uid: 21115 - type: Grille - components: - - pos: -52.5,-38.5 - parent: 30 - type: Transform -- uid: 21116 - type: AirlockExternalGlassLocked - components: - - pos: -52.5,-39.5 - parent: 30 - type: Transform -- uid: 21117 - type: AirlockExternalGlassLocked - components: - - pos: -50.5,-39.5 - parent: 30 - type: Transform -- uid: 21118 - type: SignSpace - components: - - pos: -52.5,-38.5 - parent: 30 - type: Transform -- uid: 21119 - type: PoweredSmallLight - components: - - pos: -51.5,-39.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21120 - type: ReinforcedWindow - components: - - pos: -58.5,53.5 - parent: 30 - type: Transform -- uid: 21121 - type: ReinforcedWindow - components: - - pos: -59.5,53.5 - parent: 30 - type: Transform -- uid: 21122 - type: ReinforcedWindow - components: - - pos: -59.5,52.5 - parent: 30 - type: Transform -- uid: 21123 - type: ReinforcedWindow - components: - - pos: -59.5,51.5 - parent: 30 - type: Transform -- uid: 21124 - type: WallReinforced - components: - - pos: -59.5,50.5 - parent: 30 - type: Transform -- uid: 21125 - type: WallReinforced - components: - - pos: -59.5,49.5 - parent: 30 - type: Transform -- uid: 21126 - type: WallReinforced - components: - - pos: -56.5,53.5 - parent: 30 - type: Transform -- uid: 21127 - type: WallReinforced - components: - - pos: -58.5,49.5 - parent: 30 - type: Transform -- uid: 21128 - type: WallReinforced - components: - - pos: -56.5,49.5 - parent: 30 - type: Transform -- uid: 21129 - type: WallReinforced - components: - - pos: -55.5,49.5 - parent: 30 - type: Transform -- uid: 21130 - type: WallReinforced - components: - - pos: -54.5,53.5 - parent: 30 - type: Transform -- uid: 21131 - type: Grille - components: - - pos: -58.5,48.5 - parent: 30 - type: Transform -- uid: 21132 - type: Grille - components: - - pos: -59.5,51.5 - parent: 30 - type: Transform -- uid: 21133 - type: Grille - components: - - pos: -59.5,52.5 - parent: 30 - type: Transform -- uid: 21134 - type: Grille - components: - - pos: -59.5,53.5 - parent: 30 - type: Transform -- uid: 21135 - type: Grille - components: - - pos: -58.5,53.5 - parent: 30 - type: Transform -- uid: 21136 - type: Grille - components: - - pos: -57.5,53.5 - parent: 30 - type: Transform -- uid: 21137 - type: Grille - components: - - pos: -55.5,53.5 - parent: 30 - type: Transform -- uid: 21138 - type: CableApcExtension - components: - - pos: -57.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21139 - type: CableApcExtension - components: - - pos: -57.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21140 - type: CableApcExtension - components: - - pos: -57.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21141 - type: CableApcExtension - components: - - pos: -57.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21142 - type: CableApcExtension - components: - - pos: -57.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21143 - type: CableApcExtension - components: - - pos: -57.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21144 - type: CableApcExtension - components: - - pos: -57.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21145 - type: CableApcExtension - components: - - pos: -56.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21146 - type: Airlock - components: - - pos: -57.5,49.5 - parent: 30 - type: Transform -- uid: 21147 - type: Bed - components: - - pos: -54.5,51.5 - parent: 30 - type: Transform -- uid: 21148 - type: Bed - components: - - pos: -54.5,50.5 - parent: 30 - type: Transform -- uid: 21149 - type: BedsheetSpawner - components: - - pos: -54.5,50.5 - parent: 30 - type: Transform -- uid: 21150 - type: BedsheetSpawner - components: - - pos: -54.5,51.5 - parent: 30 - type: Transform -- uid: 21151 - type: Table - components: - - pos: -57.5,52.5 - parent: 30 - type: Transform -- uid: 21152 - type: Table - components: - - pos: -58.5,52.5 - parent: 30 - type: Transform -- uid: 21153 - type: Table - components: - - pos: -54.5,52.5 - parent: 30 - type: Transform -- uid: 21154 - type: SinkWide - components: - - pos: -56.5,52.5 - parent: 30 - type: Transform -- uid: 21155 - type: KitchenMicrowave - components: - - pos: -58.5,52.5 - parent: 30 - type: Transform -- uid: 21156 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -57.5,51.5 - parent: 30 - type: Transform -- uid: 21157 - type: Beaker - components: - - pos: -55.469933,52.429756 - parent: 30 - type: Transform -- uid: 21158 - type: Lamp - components: - - pos: -54.376183,52.63288 - parent: 30 - type: Transform -- uid: 21159 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -56.5,50.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21160 - type: CrayonBox - components: - - pos: -58.516808,51.429756 - parent: 30 - type: Transform -- uid: 21161 - type: UnfinishedMachineFrame - components: - - pos: -58.5,50.5 - parent: 30 - type: Transform -- uid: 21162 - type: MaintenanceFluffSpawner - components: - - pos: -53.5,48.5 - parent: 30 - type: Transform -- uid: 21163 - type: MaintenanceFluffSpawner - components: - - pos: -57.5,52.5 - parent: 30 - type: Transform -- uid: 21164 - type: TreatmentSubspaceStockPart - components: - - pos: 3.483911,20.71295 - parent: 30 - type: Transform -- uid: 21165 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -39.5,56.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - type: SurveillanceCamera -- uid: 21166 - type: SurveillanceCameraSecurity - components: - - pos: -45.5,35.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Hallway - type: SurveillanceCamera -- uid: 21167 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -36.5,44.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Entrance - type: SurveillanceCamera -- uid: 21168 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -47.5,58.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Perma Entrance - type: SurveillanceCamera -- uid: 21169 - type: SurveillanceCameraSecurity - components: - - pos: -48.5,63.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Perma Brig - type: SurveillanceCamera -- uid: 21170 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -35.5,57.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Locker Room - type: SurveillanceCamera -- uid: 21171 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -23.5,53.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Head Of Security Office - type: SurveillanceCamera -- uid: 21172 - type: SurveillanceCameraCommand - components: - - pos: 3.5,20.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Circuitry ' - type: SurveillanceCamera -- uid: 21173 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -26.5,43.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrogation - type: SurveillanceCamera -- uid: 21174 - type: SurveillanceCameraSecurity - components: - - pos: -42.5,29.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective Office - type: SurveillanceCamera -- uid: 21175 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -19.5,37.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Office - type: SurveillanceCamera -- uid: 21176 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: -12.5,45.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge North - type: SurveillanceCamera -- uid: 21177 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: -1.5,31.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP Office - type: SurveillanceCamera -- uid: 21178 - type: SurveillanceCameraCommand - components: - - pos: -20.5,30.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Bedroom - type: SurveillanceCamera -- uid: 21179 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -14.5,31.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge Entrance West - type: SurveillanceCamera -- uid: 21180 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: -4.5,31.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge Entrance East - type: SurveillanceCamera -- uid: 21181 - type: HospitalCurtainsOpen - components: - - pos: -21.5,-21.5 - parent: 30 - type: Transform -- uid: 21182 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 5.5,44.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - type: SurveillanceCamera -- uid: 21183 - type: SurveillanceCameraCommand - components: - - pos: -0.5,19.5 - parent: 30 - type: Transform -- uid: 21184 - type: JetpackBlueFilled - components: - - flags: InContainer - type: MetaData - - parent: 5608 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 21185 - type: SpawnPointScientist - components: - - pos: 22.5,9.5 - parent: 30 - type: Transform -- uid: 21186 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 17.5,12.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RND - type: SurveillanceCamera -- uid: 21187 - type: SurveillanceCameraScience - components: - - pos: 24.5,18.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics - type: SurveillanceCamera -- uid: 21188 - type: SurveillanceCameraScience - components: - - pos: 38.5,7.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Toxins - type: SurveillanceCamera -- uid: 21189 - type: SurveillanceCameraScience - components: - - rot: 1.5707963267948966 rad - pos: 15.5,17.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Sci Lobby - type: SurveillanceCamera -- uid: 21190 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 14.5,23.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Sci Office - type: SurveillanceCamera -- uid: 21191 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -27.5,4.5 - parent: 30 - type: Transform -- uid: 21192 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-34.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Engi Office - type: SurveillanceCamera -- uid: 21193 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -42.5,10.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Arrivals Sec Office - type: SurveillanceCamera -- uid: 21194 - type: SurveillanceCameraRouterMedical - components: - - pos: -12.5,-16.5 - parent: 30 - type: Transform -- uid: 21195 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: CMO's Office - type: SurveillanceCamera -- uid: 21196 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-9.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - type: SurveillanceCamera -- uid: 21197 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -17.5,-0.5 - parent: 30 - type: Transform -- uid: 21198 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: -23.5,-7.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cloning - type: SurveillanceCamera -- uid: 21199 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-18.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: South Med Hall - type: SurveillanceCamera -- uid: 21200 - type: Carpet - components: - - pos: -28.5,-2.5 - parent: 30 - type: Transform -- uid: 21201 - type: SurveillanceCameraRouterSupply - components: - - pos: 23.5,2.5 - parent: 30 - type: Transform -- uid: 21202 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-20.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21203 - type: EmergencyLight - components: - - pos: -8.5,11.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21204 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,10.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21205 - type: EmergencyLight - components: - - pos: 32.5,-1.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21206 - type: SurveillanceCameraSupply - components: - - pos: 18.5,0.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Tech Office - type: SurveillanceCamera -- uid: 21207 - type: SurveillanceCameraSupply - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Lobby - type: SurveillanceCamera -- uid: 21208 - type: SurveillanceCameraSupply - components: - - rot: 3.141592653589793 rad - pos: 26.5,2.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Quartermaster's Room - type: SurveillanceCamera -- uid: 21209 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -9.5,-38.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Engineering ' - type: SurveillanceCamera -- uid: 21210 - type: SurveillanceCameraEngineering - components: - - pos: -10.5,-31.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - type: SurveillanceCamera -- uid: 21211 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-30.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos South - type: SurveillanceCamera -- uid: 21212 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 18.5,-21.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos North - type: SurveillanceCamera -- uid: 21213 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-25.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics Desk - type: SurveillanceCamera -- uid: 21214 - type: SurveillanceCameraEngineering - components: - - pos: -6.5,-46.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Super Matter North - type: SurveillanceCamera -- uid: 21215 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21216 - type: SurveillanceCameraEngineering - components: - - pos: -5.5,-55.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Supermatter South - type: SurveillanceCamera -- uid: 21217 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -17.5,-34.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Chief Engineer's Room - type: SurveillanceCamera -- uid: 21218 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-42.5 - parent: 30 - type: Transform -- uid: 21219 - type: SurveillanceCameraEngineering - components: - - pos: 0.5,-30.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Lobby - type: SurveillanceCamera -- uid: 21220 - type: SurveillanceCameraRouterService - components: - - pos: -13.5,17.5 - parent: 30 - type: Transform -- uid: 21221 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: -9.5,17.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bartender Room - type: SurveillanceCamera -- uid: 21222 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: -2.5,15.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bar - type: SurveillanceCamera -- uid: 21223 - type: SurveillanceCameraService - components: - - rot: -1.5707963267948966 rad - pos: -28.5,9.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Hydroponics - type: SurveillanceCamera -- uid: 21224 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: -14.5,11.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - type: SurveillanceCamera -- uid: 21225 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: 2.5,9.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Cafeteria - type: SurveillanceCamera -- uid: 21226 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: -15.5,15.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Freezer - type: SurveillanceCamera -- uid: 21227 - type: SurveillanceCameraMedical - components: - - pos: -14.5,-10.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medical Entrance - type: SurveillanceCamera -- uid: 21228 - type: SurveillanceCameraRouterGeneral - components: - - pos: -68.5,-63.5 - parent: 30 - type: Transform -- uid: 21229 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-64.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Library - type: SurveillanceCamera -- uid: 21230 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -72.5,-61.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Game Room - type: SurveillanceCamera -- uid: 21231 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -75.5,-44.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Chaplain's Room - type: SurveillanceCamera -- uid: 21232 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-43.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Chapel - type: SurveillanceCamera -- uid: 21233 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-23.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Chapelroid Entrance - type: SurveillanceCamera -- uid: 21234 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-18.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Chapelroid Hall - type: SurveillanceCamera -- uid: 21235 - type: Carpet - components: - - pos: -28.5,-1.5 - parent: 30 - type: Transform -- uid: 21236 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -44.5,2.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Arrivals - type: SurveillanceCamera -- uid: 21237 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -28.5,33.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Tool Room - type: SurveillanceCamera -- uid: 21238 - type: Carpet - components: - - pos: -29.5,-0.5 - parent: 30 - type: Transform -- uid: 21239 - type: Carpet - components: - - pos: -28.5,-0.5 - parent: 30 - type: Transform -- uid: 21240 - type: HandheldCrewMonitor - components: - - pos: -31.572979,-0.27359796 - parent: 30 - type: Transform -- uid: 21241 - type: SurveillanceCameraMedical - components: - - pos: -30.5,-2.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Psychology - type: SurveillanceCamera -- uid: 21242 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-3.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.1239278 - - 11.75192 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21243 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-4.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.1239278 - - 11.75192 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21244 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-1.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.1239278 - - 11.75192 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21245 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-3.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21246 - type: HospitalCurtainsOpen - components: - - pos: -20.5,-13.5 - parent: 30 - type: Transform -- uid: 21247 - type: HospitalCurtainsOpen - components: - - pos: -23.5,-11.5 - parent: 30 - type: Transform -- uid: 21248 - type: HospitalCurtainsOpen - components: - - pos: -24.5,-11.5 - parent: 30 - type: Transform -- uid: 21249 - type: PortableScrubber - components: - - pos: 5.5,-25.5 - parent: 30 - type: Transform -- uid: 21250 - type: Table - components: - - pos: -25.5,-0.5 - parent: 30 - type: Transform -- uid: 21251 - type: BoxBodyBag - components: - - pos: -25.5,-0.5 - parent: 30 - type: Transform -- uid: 21252 - type: ClothingHandsGlovesLatex - components: - - pos: -25.5,-0.5 - parent: 30 - type: Transform -- uid: 21253 - type: Scalpel - components: - - pos: -25.5,-0.5 - parent: 30 - type: Transform -- uid: 21254 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-16.5 - parent: 30 - type: Transform -- uid: 21255 - type: ClosetEmergencyFilledRandom - components: - - pos: -29.5,-14.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21256 - type: BedsheetCMO - components: - - flags: InContainer - type: MetaData - - parent: 6839 - type: Transform - - canCollide: False - type: Physics -- uid: 21257 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: -8.5,-19.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Surgery - type: SurveillanceCamera -- uid: 21258 - type: Bed - components: - - pos: -21.5,-21.5 - parent: 30 - type: Transform -- uid: 21259 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 12.5,-31.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Mixer - type: SurveillanceCamera -- uid: 21260 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-29.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Tanks - type: SurveillanceCamera -- uid: 21261 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-41.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21262 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-19.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21263 - type: CableApcExtension - components: - - pos: -61.5,-30.5 - parent: 30 - type: Transform -- uid: 21264 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21265 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21266 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21267 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21268 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21269 - type: GasPipeBend - components: - - pos: 27.5,-18.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21270 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21271 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-19.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21272 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21273 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-20.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21274 - type: GasValve - components: - - name: emergency wastenet valve - type: MetaData - - rot: 1.5707963267948966 rad - pos: 24.5,-20.5 - parent: 30 - type: Transform - - open: False - type: GasValve - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21275 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 30 - type: Transform - - bodyType: Static - type: Physics -- uid: 21276 - type: InflatableWallStack - components: - - pos: 12.611021,-25.419067 - parent: 30 - type: Transform -- uid: 21277 - type: InflatableDoorStack - components: - - pos: 12.970396,-25.450317 - parent: 30 - type: Transform -- uid: 21278 - type: HolofanProjector - components: - - pos: 13.829771,-25.622192 - parent: 30 - type: Transform -- uid: 21279 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -7.5,-33.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES Bank - type: SurveillanceCamera -- uid: 21280 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -22.5,-46.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Supply - type: SurveillanceCamera -- uid: 21281 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 2.5,-32.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Entrance - type: SurveillanceCamera -- uid: 21282 - type: SurveillanceCameraEngineering - components: - - pos: 8.5,-20.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Hall - type: SurveillanceCamera -- uid: 21283 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -41.5,49.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's Office - type: SurveillanceCamera -- uid: 21284 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -35.5,51.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Breakroom - type: SurveillanceCamera -- uid: 21285 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -48.5,31.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Lawyer's Office - type: SurveillanceCamera -- uid: 21286 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 0.5,23.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Eva Supply Room - type: SurveillanceCamera -- uid: 21287 - type: SurveillanceCameraCommand - components: - - pos: 2.5,25.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP Line - type: SurveillanceCamera -- uid: 21288 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -3.5,39.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge East - type: SurveillanceCamera -- uid: 21289 - type: CableHV - components: - - pos: -6.5,40.5 - parent: 30 - type: Transform -- uid: 21290 - type: CableHV - components: - - pos: -6.5,41.5 - parent: 30 - type: Transform -- uid: 21291 - type: CableHV - components: - - pos: -6.5,42.5 - parent: 30 - type: Transform -- uid: 21292 - type: CableHV - components: - - pos: -6.5,43.5 - parent: 30 - type: Transform -- uid: 21293 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -25.5,37.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Bar - type: SurveillanceCamera -- uid: 21294 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 9.5,42.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Grav Gen - type: SurveillanceCamera -- uid: 21295 - type: SurveillanceCameraCommand - components: - - pos: 5.5,46.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault Exterior - type: SurveillanceCamera -- uid: 21296 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 8.5,39.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault Entrance - type: SurveillanceCamera -- uid: 21297 - type: WallReinforced - components: - - pos: -28.5,-48.5 - parent: 30 - type: Transform -- uid: 21298 - type: WallReinforced - components: - - pos: -27.5,-48.5 - parent: 30 - type: Transform -- uid: 21299 - type: Dresser - components: - - pos: -29.5,-45.5 - parent: 30 - type: Transform -- uid: 21300 - type: Bed - components: - - pos: -27.5,-47.5 - parent: 30 - type: Transform -- uid: 21301 - type: Bed - components: - - pos: -27.5,-46.5 - parent: 30 - type: Transform -- uid: 21302 - type: BedsheetSpawner - components: - - pos: -27.5,-47.5 - parent: 30 - type: Transform -- uid: 21303 - type: BedsheetSpawner - components: - - pos: -27.5,-46.5 - parent: 30 - type: Transform -- uid: 21304 - type: Ash - components: - - pos: -28.507416,-46.550377 - parent: 30 - type: Transform -- uid: 21305 - type: Airlock - components: - - pos: -30.5,-46.5 - parent: 30 - type: Transform -- uid: 21306 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-47.5 - parent: 30 - type: Transform -- uid: 21307 - type: CrateFilledSpawner - components: - - pos: -27.5,-45.5 - parent: 30 - type: Transform -- uid: 21308 - type: DisposalUnit - components: - - pos: -28.5,-21.5 - parent: 30 - type: Transform -- uid: 21309 - type: DisposalTrunk - components: - - pos: -28.5,-21.5 - parent: 30 - type: Transform -- uid: 21310 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -28.5,-26.5 - parent: 30 - type: Transform -- uid: 21311 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -28.5,-25.5 - parent: 30 - type: Transform -- uid: 21312 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -28.5,-24.5 - parent: 30 - type: Transform -- uid: 21313 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -28.5,-23.5 - parent: 30 - type: Transform -- uid: 21314 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -28.5,-22.5 - parent: 30 - type: Transform -- uid: 21315 - type: CableApcExtension - components: - - pos: -61.5,-31.5 - parent: 30 - type: Transform -- uid: 21316 - type: CableApcExtension - components: - - pos: 1.5,-11.5 - parent: 30 - type: Transform -- uid: 21317 - type: CableApcExtension - components: - - pos: 0.5,-6.5 - parent: 30 - type: Transform -- uid: 21318 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -0.5,-6.5 - parent: 30 - type: Transform -- uid: 21319 - type: TableWood - components: - - pos: -0.5,-9.5 - parent: 30 - type: Transform -- uid: 21320 - type: TableWood - components: - - pos: -0.5,-8.5 - parent: 30 - type: Transform -- uid: 21321 - type: TableWood - components: - - pos: -0.5,-7.5 - parent: 30 - type: Transform -- uid: 21322 - type: FoodBoxDonut - components: - - pos: -0.48854852,-7.4149537 - parent: 30 - type: Transform -- uid: 21323 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 30 - type: Transform -- uid: 21324 - type: Railing - components: - - pos: 3.5,-3.5 - parent: 30 - type: Transform -- uid: 21325 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 30 - type: Transform -- uid: 21326 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: 2.5,-3.5 - parent: 30 - type: Transform -- uid: 21327 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-10.5 - parent: 30 - type: Transform -- uid: 21328 - type: RailingCornerSmall - components: - - pos: 7.5,-8.5 - parent: 30 - type: Transform -- uid: 21329 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 6.5,-8.5 - parent: 30 - type: Transform -- uid: 21330 - type: Railing - components: - - pos: 6.5,-10.5 - parent: 30 - type: Transform -- uid: 21331 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21332 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-28.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21333 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -40.5,30.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 11008 - type: SignalReceiver -- uid: 21334 - type: ReagentContainerMilkSoy - components: - - pos: -0.68636847,-9.259565 - parent: 30 - type: Transform - - tags: [] - type: Tag -- uid: 21335 - type: ReagentContainerMilkOat - components: - - pos: -0.70199347,-9.447065 - parent: 30 - type: Transform - - tags: [] - type: Tag -- uid: 21336 - type: ReagentContainerMilk - components: - - pos: -0.68636847,-9.05644 - parent: 30 - type: Transform - - tags: [] - type: Tag -- uid: 21337 - type: AtmosFixFreezerMarker - components: - - pos: -15.5,14.5 - parent: 30 - type: Transform -- uid: 21338 - type: AtmosFixFreezerMarker - components: - - pos: -15.5,15.5 - parent: 30 - type: Transform -- uid: 21339 - type: AtmosFixFreezerMarker - components: - - pos: -15.5,16.5 - parent: 30 - type: Transform -- uid: 21340 - type: TableGlass - components: - - pos: 3.5,-6.5 - parent: 30 - type: Transform -- uid: 21341 - type: TableGlass - components: - - pos: 5.5,-7.5 - parent: 30 - type: Transform -- uid: 21342 - type: TableGlass - components: - - pos: 5.5,-11.5 - parent: 30 - type: Transform -- uid: 21343 - type: Chair - components: - - pos: 3.5,-5.5 - parent: 30 - type: Transform -- uid: 21344 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 3.5,-7.5 - parent: 30 - type: Transform -- uid: 21345 - type: Chair - components: - - pos: 5.5,-6.5 - parent: 30 - type: Transform -- uid: 21346 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 5.5,-8.5 - parent: 30 - type: Transform -- uid: 21347 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 30 - type: Transform -- uid: 21348 - type: Chair - components: - - pos: 5.5,-10.5 - parent: 30 - type: Transform -- uid: 21349 - type: DrinkCreamCarton - components: - - pos: -0.6569953,-8.6031685 - parent: 30 - type: Transform -- uid: 21350 - type: AtmosFixFreezerMarker - components: - - pos: -17.5,17.5 - parent: 30 - type: Transform -- uid: 21351 - type: AtmosFixFreezerMarker - components: - - pos: -16.5,17.5 - parent: 30 - type: Transform -- uid: 21352 - type: AtmosFixFreezerMarker - components: - - pos: -15.5,17.5 - parent: 30 - type: Transform -- uid: 21353 - type: AtmosFixFreezerMarker - components: - - pos: -15.5,13.5 - parent: 30 - type: Transform -- uid: 21354 - type: PosterLegitCohibaRobustoAd - components: - - pos: 2.5,-6.5 - parent: 30 - type: Transform -- uid: 21355 - type: PosterContrabandShamblersJuice - components: - - pos: -1.5,-8.5 - parent: 30 - type: Transform -- uid: 21356 - type: Table - components: - - pos: 1.5,-11.5 - parent: 30 - type: Transform -- uid: 21357 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 30 - type: Transform -- uid: 21358 - type: ClothingOuterApronChef - components: - - pos: 1.5332928,-11.519472 - parent: 30 - type: Transform -- uid: 21359 - type: ClothingHeadHatGreensoft - components: - - pos: 1.4226084,-11.148863 - parent: 30 - type: Transform -- uid: 21360 - type: FoodMealEggsbenedict - components: - - pos: 2.462329,-8.222853 - parent: 30 - type: Transform -- uid: 21361 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-11.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21362 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21363 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21364 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21365 - type: DrinkBeepskySmashGlass - components: - - pos: 5.473156,-7.310885 - parent: 30 - type: Transform -- uid: 21366 - type: AtmosFixFreezerMarker - components: - - pos: -16.5,13.5 - parent: 30 - type: Transform -- uid: 21367 - type: FoodDonutHomer - components: - - pos: -0.38142133,-7.910353 - parent: 30 - type: Transform -- uid: 21368 - type: FoodDonutChocolate - components: - - pos: -0.6782963,-7.832228 - parent: 30 - type: Transform -- uid: 21369 - type: FoodDonutPlain - components: - - pos: -0.6470463,-8.082228 - parent: 30 - type: Transform -- uid: 21370 - type: filingCabinetRandom - components: - - pos: -21.5,32.5 - parent: 30 - type: Transform -- uid: 21371 - type: Chair - components: - - pos: 0.5,-18.5 - parent: 30 - type: Transform -- uid: 21372 - type: Chair - components: - - pos: 1.5,-18.5 - parent: 30 - type: Transform -- uid: 21373 - type: Chair - components: - - pos: 3.5,-18.5 - parent: 30 - type: Transform -- uid: 21374 - type: PottedPlantRandom - components: - - pos: -0.5,-18.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 21375 - type: EmergencyLight - components: - - pos: 2.5,-18.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21376 - type: Grille - components: - - pos: -40.5,32.5 - parent: 30 - type: Transform -- uid: 21377 - type: EmergencyLight - components: - - pos: 18.5,12.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21378 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,16.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21379 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 24.5,18.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21380 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,8.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21381 - type: ExtinguisherCabinetFilled - components: - - pos: 22.5,-9.5 - parent: 30 - type: Transform -- uid: 21382 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 1.5,25.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21383 - type: SignCargo - components: - - pos: 14.5,-0.5 - parent: 30 - type: Transform -- uid: 21384 - type: SignMail - components: - - pos: 18.5,-0.5 - parent: 30 - type: Transform -- uid: 21385 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,31.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21386 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,31.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21387 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,34.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21388 - type: EmergencyLight - components: - - pos: -20.5,37.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21389 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -23.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21390 - type: EmergencyLight - components: - - pos: 6.5,39.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21391 - type: EmergencyLight - components: - - pos: 37.5,41.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21392 - type: Grille - components: - - pos: -25.5,-54.5 - parent: 30 - type: Transform -- uid: 21393 - type: Grille - components: - - pos: -24.5,-54.5 - parent: 30 - type: Transform -- uid: 21394 - type: Grille - components: - - pos: -23.5,-54.5 - parent: 30 - type: Transform -- uid: 21395 - type: Grille - components: - - pos: -22.5,-54.5 - parent: 30 - type: Transform -- uid: 21396 - type: Grille - components: - - pos: -21.5,-54.5 - parent: 30 - type: Transform -- uid: 21397 - type: Grille - components: - - pos: -10.5,-63.5 - parent: 30 - type: Transform -- uid: 21398 - type: Grille - components: - - pos: -9.5,-63.5 - parent: 30 - type: Transform -- uid: 21399 - type: Grille - components: - - pos: -8.5,-63.5 - parent: 30 - type: Transform -- uid: 21400 - type: Grille - components: - - pos: -7.5,-63.5 - parent: 30 - type: Transform -- uid: 21401 - type: Grille - components: - - pos: -6.5,-63.5 - parent: 30 - type: Transform -- uid: 21402 - type: Grille - components: - - pos: -5.5,-63.5 - parent: 30 - type: Transform -- uid: 21403 - type: Grille - components: - - pos: -4.5,-63.5 - parent: 30 - type: Transform -- uid: 21404 - type: Grille - components: - - pos: 6.5,-54.5 - parent: 30 - type: Transform -- uid: 21405 - type: Grille - components: - - pos: 6.5,-53.5 - parent: 30 - type: Transform -- uid: 21406 - type: Grille - components: - - pos: 6.5,-52.5 - parent: 30 - type: Transform -- uid: 21407 - type: Grille - components: - - pos: 6.5,-51.5 - parent: 30 - type: Transform -- uid: 21408 - type: Grille - components: - - pos: 6.5,-50.5 - parent: 30 - type: Transform -- uid: 21409 - type: Grille - components: - - pos: 6.5,-49.5 - parent: 30 - type: Transform -- uid: 21410 - type: Grille - components: - - pos: 6.5,-48.5 - parent: 30 - type: Transform -- uid: 21411 - type: Grille - components: - - pos: 6.5,-55.5 - parent: 30 - type: Transform -- uid: 21412 - type: Grille - components: - - pos: 16.5,-41.5 - parent: 30 - type: Transform -- uid: 21413 - type: Grille - components: - - pos: 17.5,-41.5 - parent: 30 - type: Transform -- uid: 21414 - type: Grille - components: - - pos: 18.5,-41.5 - parent: 30 - type: Transform -- uid: 21415 - type: Grille - components: - - pos: 19.5,-41.5 - parent: 30 - type: Transform -- uid: 21416 - type: Grille - components: - - pos: 20.5,-41.5 - parent: 30 - type: Transform -- uid: 21417 - type: Grille - components: - - pos: 21.5,-41.5 - parent: 30 - type: Transform -- uid: 21418 - type: Grille - components: - - pos: 22.5,-41.5 - parent: 30 - type: Transform -- uid: 21419 - type: Grille - components: - - pos: 14.5,-42.5 - parent: 30 - type: Transform -- uid: 21420 - type: Grille - components: - - pos: 13.5,-42.5 - parent: 30 - type: Transform -- uid: 21421 - type: Grille - components: - - pos: 12.5,-42.5 - parent: 30 - type: Transform -- uid: 21422 - type: Grille - components: - - pos: 11.5,-42.5 - parent: 30 - type: Transform -- uid: 21423 - type: Grille - components: - - pos: 10.5,-42.5 - parent: 30 - type: Transform -- uid: 21424 - type: Grille - components: - - pos: 6.5,-44.5 - parent: 30 - type: Transform -- uid: 21425 - type: Grille - components: - - pos: 23.5,-41.5 - parent: 30 - type: Transform -- uid: 21426 - type: Grille - components: - - pos: 6.5,-41.5 - parent: 30 - type: Transform -- uid: 21427 - type: Grille - components: - - pos: 7.5,-41.5 - parent: 30 - type: Transform -- uid: 21428 - type: Grille - components: - - pos: 8.5,-41.5 - parent: 30 - type: Transform -- uid: 21429 - type: Grille - components: - - pos: 7.5,-44.5 - parent: 30 - type: Transform -- uid: 21430 - type: Grille - components: - - pos: 8.5,-44.5 - parent: 30 - type: Transform -- uid: 21431 - type: Grille - components: - - pos: 25.5,-38.5 - parent: 30 - type: Transform -- uid: 21432 - type: Grille - components: - - pos: 26.5,-38.5 - parent: 30 - type: Transform -- uid: 21433 - type: Grille - components: - - pos: 27.5,-38.5 - parent: 30 - type: Transform -- uid: 21434 - type: Grille - components: - - pos: 28.5,-38.5 - parent: 30 - type: Transform -- uid: 21435 - type: Grille - components: - - pos: 29.5,-38.5 - parent: 30 - type: Transform -- uid: 21436 - type: Grille - components: - - pos: 30.5,-38.5 - parent: 30 - type: Transform -- uid: 21437 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 25.5,33.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21438 - type: EmergencyLight - components: - - pos: 19.5,27.5 - parent: 30 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21439 - type: Grille - components: - - pos: 50.5,15.5 - parent: 30 - type: Transform -- uid: 21440 - type: Grille - components: - - pos: 51.5,15.5 - parent: 30 - type: Transform -- uid: 21441 - type: Grille - components: - - pos: 52.5,15.5 - parent: 30 - type: Transform -- uid: 21442 - type: Grille - components: - - pos: 53.5,15.5 - parent: 30 - type: Transform -- uid: 21443 - type: Grille - components: - - pos: 54.5,15.5 - parent: 30 - type: Transform -- uid: 21444 - type: Grille - components: - - pos: 55.5,15.5 - parent: 30 - type: Transform -- uid: 21445 - type: Grille - components: - - pos: 16.5,65.5 - parent: 30 - type: Transform -- uid: 21446 - type: Grille - components: - - pos: 17.5,65.5 - parent: 30 - type: Transform -- uid: 21447 - type: Grille - components: - - pos: 18.5,65.5 - parent: 30 - type: Transform -- uid: 21448 - type: Grille - components: - - pos: 19.5,65.5 - parent: 30 - type: Transform -- uid: 21449 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -17.5,8.5 - parent: 30 - type: Transform -- uid: 21451 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -28.5,4.5 - parent: 30 - type: Transform -- uid: 21452 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -23.5,4.5 - parent: 30 - type: Transform -- uid: 21453 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -28.5,4.5 - parent: 30 - type: Transform -- uid: 21454 - type: SignDirectionalHydro - components: - - rot: 1.5707963267948966 rad - pos: -33.477043,6.2596173 - parent: 30 - type: Transform -- uid: 21455 - type: SignDirectionalHydro - components: - - rot: 3.141592653589793 rad - pos: -22.506641,4.747666 - parent: 30 - type: Transform -- uid: 21456 - type: FirelockGlass - components: - - pos: -18.5,9.5 - parent: 30 - type: Transform -- uid: 21457 - type: Grille - components: - - pos: -14.5,-43.5 - parent: 30 - type: Transform -- uid: 21458 - type: SignSmoking - components: - - pos: -13.5,-42.5 - parent: 30 - type: Transform -- uid: 21459 - type: ClosetRadiationSuitFilled - components: - - pos: 0.5,-37.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21460 - type: ClosetRadiationSuitFilled - components: - - pos: 2.5,-37.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21461 - type: Paper - components: - - pos: -15.514254,7.625728 - parent: 30 - type: Transform - - content: > - Basic Food Recipes - - Ground Wheat = Flour - - Water + Flour = Dough - - 1 Dough(15 Seconds) = Bread - - 1 Dough + 1 Banana(25 Seconds) = Banana Bread - - 1 Corn(5 Seconds) = Popcorn - type: Paper -- uid: 21462 - type: CableApcExtension - components: - - pos: 8.5,-15.5 - parent: 30 - type: Transform -- uid: 21463 - type: CableApcExtension - components: - - pos: 8.5,-14.5 - parent: 30 - type: Transform -- uid: 21464 - type: CableApcExtension - components: - - pos: -1.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21465 - type: CableApcExtension - components: - - pos: -0.5,-14.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21466 - type: Bookshelf - components: - - pos: 7.5,-13.5 - parent: 30 - type: Transform -- uid: 21467 - type: TableReinforcedGlass - components: - - pos: 8.5,-13.5 - parent: 30 - type: Transform -- uid: 21468 - type: TableReinforcedGlass - components: - - pos: 9.5,-13.5 - parent: 30 - type: Transform -- uid: 21469 - type: WallReinforced - components: - - pos: -40.5,-64.5 - parent: 30 - type: Transform -- uid: 21470 - type: TintedWindow - components: - - pos: 7.5,-12.5 - parent: 30 - type: Transform -- uid: 21471 - type: TintedWindow - components: - - pos: 10.5,-15.5 - parent: 30 - type: Transform -- uid: 21472 - type: TintedWindow - components: - - pos: 10.5,-14.5 - parent: 30 - type: Transform -- uid: 21473 - type: Window - components: - - pos: 9.5,-17.5 - parent: 30 - type: Transform -- uid: 21474 - type: Window - components: - - pos: 7.5,-17.5 - parent: 30 - type: Transform -- uid: 21475 - type: CableApcExtension - components: - - pos: -79.5,-43.5 - parent: 30 - type: Transform -- uid: 21476 - type: CableApcExtension - components: - - pos: -80.5,-43.5 - parent: 30 - type: Transform -- uid: 21477 - type: CableApcExtension - components: - - pos: -81.5,-43.5 - parent: 30 - type: Transform -- uid: 21478 - type: ComfyChair - components: - - pos: 8.5,-14.5 - parent: 30 - type: Transform -- uid: 21479 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-15.5 - parent: 30 - type: Transform -- uid: 21480 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-15.5 - parent: 30 - type: Transform -- uid: 21481 - type: CarpetGreen - components: - - pos: 7.5,-15.5 - parent: 30 - type: Transform -- uid: 21482 - type: CarpetGreen - components: - - pos: 7.5,-14.5 - parent: 30 - type: Transform -- uid: 21483 - type: CarpetGreen - components: - - pos: 8.5,-15.5 - parent: 30 - type: Transform -- uid: 21484 - type: CarpetGreen - components: - - pos: 8.5,-14.5 - parent: 30 - type: Transform -- uid: 21485 - type: CarpetGreen - components: - - pos: 9.5,-15.5 - parent: 30 - type: Transform -- uid: 21486 - type: CarpetGreen - components: - - pos: 9.5,-14.5 - parent: 30 - type: Transform -- uid: 21487 - type: BookDetective - components: - - pos: 8.515235,-13.437349 - parent: 30 - type: Transform -- uid: 21488 - type: ClothingNeckScarfStripedGreen - components: - - pos: 9.401276,-13.386019 - parent: 30 - type: Transform -- uid: 21489 - type: ClothingHandsGlovesColorOrange - components: - - pos: -31.4305,6.3123283 - parent: 30 - type: Transform -- uid: 21490 - type: ClothingHandsGlovesColorPurple - components: - - pos: -30.508625,21.457588 - parent: 30 - type: Transform -- uid: 21491 - type: CarpetPurple - components: - - pos: -32.5,22.5 - parent: 30 - type: Transform -- uid: 21492 - type: CarpetPurple - components: - - pos: -31.5,22.5 - parent: 30 - type: Transform -- uid: 21493 - type: CarpetPurple - components: - - pos: -31.5,23.5 - parent: 30 - type: Transform -- uid: 21494 - type: CarpetPurple - components: - - pos: -32.5,23.5 - parent: 30 - type: Transform -- uid: 21495 - type: CableApcExtension - components: - - pos: -18.5,-4.5 - parent: 30 - type: Transform -- uid: 21496 - type: CableApcExtension - components: - - pos: -18.5,-3.5 - parent: 30 - type: Transform -- uid: 21497 - type: CableApcExtension - components: - - pos: -18.5,-2.5 - parent: 30 - type: Transform -- uid: 21498 - type: CableApcExtension - components: - - pos: -18.5,-1.5 - parent: 30 - type: Transform -- uid: 21499 - type: SpawnPointPsychologist - components: - - pos: -28.5,-2.5 - parent: 30 - type: Transform -- uid: 21500 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 30 - type: Transform -- uid: 21501 - type: PosterLegitSoftCapPopArt - components: - - pos: -32.5,-2.5 - parent: 30 - type: Transform -- uid: 21502 - type: PortableScrubber - components: - - pos: 5.5,-24.5 - parent: 30 - type: Transform -- uid: 21503 - type: BrbSign - components: - - pos: -0.87252545,31.729797 - parent: 30 - type: Transform -- uid: 21504 - type: AtmosFixFreezerMarker - components: - - pos: -17.5,13.5 - parent: 30 - type: Transform -- uid: 21505 - type: GasPipeStraight - components: - - pos: -31.5,-11.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21506 - type: PaintingCafeTerraceAtNight - components: - - pos: -17.5,33.5 - parent: 30 - type: Transform -- uid: 21507 - type: FoodBoxDonut - components: - - pos: -27.4795,54.68176 - parent: 30 - type: Transform -- uid: 21508 - type: FoodBoxDonut - components: - - pos: -27.4795,54.603634 - parent: 30 - type: Transform -- uid: 21509 - type: ReinforcedWindow - components: - - pos: 37.5,36.5 - parent: 30 - type: Transform -- uid: 21510 - type: ReinforcedWindow - components: - - pos: 38.5,36.5 - parent: 30 - type: Transform -- uid: 21511 - type: Window - components: - - pos: 34.5,34.5 - parent: 30 - type: Transform -- uid: 21512 - type: ReinforcedWindow - components: - - pos: 40.5,36.5 - parent: 30 - type: Transform -- uid: 21513 - type: ReinforcedWindow - components: - - pos: 41.5,36.5 - parent: 30 - type: Transform -- uid: 21514 - type: ReinforcedWindow - components: - - pos: 42.5,36.5 - parent: 30 - type: Transform -- uid: 21515 - type: ReinforcedWindow - components: - - pos: 43.5,36.5 - parent: 30 - type: Transform -- uid: 21516 - type: Grille - components: - - pos: 42.5,36.5 - parent: 30 - type: Transform -- uid: 21517 - type: Grille - components: - - pos: 43.5,36.5 - parent: 30 - type: Transform -- uid: 21518 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 42.5,37.5 - parent: 30 - type: Transform -- uid: 21519 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 42.5,38.5 - parent: 30 - type: Transform -- uid: 21520 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 36.5,37.5 - parent: 30 - type: Transform -- uid: 21521 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 36.5,38.5 - parent: 30 - type: Transform -- uid: 21522 - type: ComfyChair - components: - - pos: 39.5,41.5 - parent: 30 - type: Transform -- uid: 21523 - type: ClosetLegalFilled - components: - - pos: 35.5,41.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21524 - type: Chair - components: - - pos: 36.5,41.5 - parent: 30 - type: Transform -- uid: 21525 - type: Carpet - components: - - pos: 36.5,37.5 - parent: 30 - type: Transform -- uid: 21526 - type: Carpet - components: - - pos: 36.5,38.5 - parent: 30 - type: Transform -- uid: 21527 - type: Carpet - components: - - pos: 37.5,37.5 - parent: 30 - type: Transform -- uid: 21528 - type: Carpet - components: - - pos: 37.5,38.5 - parent: 30 - type: Transform -- uid: 21529 - type: Carpet - components: - - pos: 38.5,37.5 - parent: 30 - type: Transform -- uid: 21530 - type: Carpet - components: - - pos: 38.5,38.5 - parent: 30 - type: Transform -- uid: 21531 - type: CarpetBlack - components: - - pos: 40.5,40.5 - parent: 30 - type: Transform -- uid: 21532 - type: CarpetBlack - components: - - pos: 39.5,41.5 - parent: 30 - type: Transform -- uid: 21533 - type: CarpetBlack - components: - - pos: 39.5,40.5 - parent: 30 - type: Transform -- uid: 21534 - type: CarpetBlack - components: - - pos: 38.5,41.5 - parent: 30 - type: Transform -- uid: 21535 - type: CarpetBlue - components: - - pos: 42.5,38.5 - parent: 30 - type: Transform -- uid: 21536 - type: CarpetBlack - components: - - pos: 38.5,40.5 - parent: 30 - type: Transform -- uid: 21537 - type: CarpetBlue - components: - - pos: 40.5,38.5 - parent: 30 - type: Transform -- uid: 21538 - type: CarpetBlue - components: - - pos: 41.5,37.5 - parent: 30 - type: Transform -- uid: 21539 - type: CarpetBlue - components: - - pos: 40.5,37.5 - parent: 30 - type: Transform -- uid: 21540 - type: CarpetBlue - components: - - pos: 41.5,38.5 - parent: 30 - type: Transform -- uid: 21541 - type: BoxFolderBlue - components: - - pos: 41.545937,38.59172 - parent: 30 - type: Transform -- uid: 21542 - type: CarpetBlue - components: - - pos: 42.5,37.5 - parent: 30 - type: Transform -- uid: 21543 - type: BoxFolderRed - components: - - pos: 37.54579,38.509315 - parent: 30 - type: Transform -- uid: 21544 - type: CarpetBlack - components: - - pos: 40.5,41.5 - parent: 30 - type: Transform -- uid: 21545 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 35.5,34.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21546 - type: GasPipeStraight - components: - - pos: 39.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21547 - type: GasPipeStraight - components: - - pos: 39.5,36.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21548 - type: GasPipeStraight - components: - - pos: 39.5,35.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21549 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 39.5,34.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21550 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,36.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21551 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,37.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21552 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,38.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21553 - type: GasVentScrubber - components: - - pos: 43.5,39.5 - parent: 30 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21554 - type: PosterLegitCohibaRobustoAd - components: - - pos: 44.5,32.5 - parent: 30 - type: Transform -- uid: 21556 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 43.5,32.5 - parent: 30 - type: Transform -- uid: 21557 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 36.5,35.5 - parent: 30 - type: Transform -- uid: 21558 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 36.5,34.5 - parent: 30 - type: Transform -- uid: 21559 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 37.5,35.5 - parent: 30 - type: Transform -- uid: 21560 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 37.5,34.5 - parent: 30 - type: Transform -- uid: 21561 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 38.5,35.5 - parent: 30 - type: Transform -- uid: 21562 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 38.5,34.5 - parent: 30 - type: Transform -- uid: 21563 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 40.5,35.5 - parent: 30 - type: Transform -- uid: 21564 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 40.5,34.5 - parent: 30 - type: Transform -- uid: 21565 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 41.5,35.5 - parent: 30 - type: Transform -- uid: 21566 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 41.5,34.5 - parent: 30 - type: Transform -- uid: 21567 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 42.5,35.5 - parent: 30 - type: Transform -- uid: 21568 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 42.5,34.5 - parent: 30 - type: Transform -- uid: 21569 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 37.5,33.5 - parent: 30 - type: Transform -- uid: 21570 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 38.5,33.5 - parent: 30 - type: Transform -- uid: 21571 - type: PosterLegitNanotrasenLogo - components: - - pos: 34.5,36.5 - parent: 30 - type: Transform -- uid: 21572 - type: PosterLegitNanotrasenLogo - components: - - pos: 44.5,36.5 - parent: 30 - type: Transform -- uid: 21573 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 40.5,33.5 - parent: 30 - type: Transform -- uid: 21574 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 41.5,33.5 - parent: 30 - type: Transform -- uid: 21575 - type: PottedPlantRandom - components: - - pos: 43.5,35.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 21576 - type: PottedPlantRandom - components: - - pos: 35.5,37.5 - parent: 30 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 21577 - type: filingCabinet - components: - - pos: 43.5,37.5 - parent: 30 - type: Transform -- uid: 21578 - type: Chair - components: - - pos: 46.5,37.5 - parent: 30 - type: Transform -- uid: 21579 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 46.5,35.5 - parent: 30 - type: Transform -- uid: 21580 - type: Table - components: - - pos: 46.5,36.5 - parent: 30 - type: Transform -- uid: 21581 - type: MaintenanceWeaponSpawner - components: - - pos: 31.5,27.5 - parent: 30 - type: Transform -- uid: 21583 - type: WallSolid - components: - - pos: -43.5,2.5 - parent: 30 - type: Transform -- uid: 21584 - type: AtmosFixFreezerMarker - components: - - pos: -23.5,-22.5 - parent: 30 - type: Transform -- uid: 21585 - type: AtmosFixFreezerMarker - components: - - pos: -23.5,-21.5 - parent: 30 - type: Transform -- uid: 21586 - type: AtmosFixFreezerMarker - components: - - pos: -22.5,-22.5 - parent: 30 - type: Transform -- uid: 21587 - type: AtmosFixFreezerMarker - components: - - pos: -22.5,-21.5 - parent: 30 - type: Transform -- uid: 21588 - type: JetpackMini - components: - - pos: -2.5235682,19.479452 - parent: 30 - type: Transform -- uid: 21589 - type: JetpackMini - components: - - pos: -2.5235682,19.807577 - parent: 30 - type: Transform -- uid: 21590 - type: JetpackBlueFilled - components: - - pos: -17.545162,-28.366238 - parent: 30 - type: Transform -- uid: 21591 - type: ReinforcedWindow - components: - - pos: -43.5,-28.5 - parent: 30 - type: Transform -- uid: 21592 - type: WallReinforced - components: - - pos: -42.5,-28.5 - parent: 30 - type: Transform -- uid: 21593 - type: ReinforcedWindow - components: - - pos: -41.5,-28.5 - parent: 30 - type: Transform -- uid: 21594 - type: WallReinforced - components: - - pos: -40.5,-28.5 - parent: 30 - type: Transform -- uid: 21595 - type: CableApcExtension - components: - - pos: -45.5,-26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21596 - type: CableApcExtension - components: - - pos: -45.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21597 - type: CableApcExtension - components: - - pos: -44.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21598 - type: CableApcExtension - components: - - pos: -43.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21599 - type: CableApcExtension - components: - - pos: -42.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21600 - type: CableApcExtension - components: - - pos: -41.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21601 - type: CableApcExtension - components: - - pos: -40.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21602 - type: Grille - components: - - pos: -43.5,-28.5 - parent: 30 - type: Transform -- uid: 21603 - type: Grille - components: - - pos: -41.5,-28.5 - parent: 30 - type: Transform -- uid: 21604 - type: Grille - components: - - pos: -45.5,-28.5 - parent: 30 - type: Transform -- uid: 21605 - type: LockerWeldingSuppliesFilled - components: - - pos: -43.5,-26.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21606 - type: ClosetToolFilled - components: - - pos: -42.5,-26.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21607 - type: Rack - components: - - pos: -41.5,-26.5 - parent: 30 - type: Transform -- uid: 21608 - type: MaintenanceFluffSpawner - components: - - pos: -41.5,-26.5 - parent: 30 - type: Transform -- uid: 21609 - type: Chair - components: - - pos: -44.5,-26.5 - parent: 30 - type: Transform -- uid: 21610 - type: Catwalk - components: - - pos: -39.5,-27.5 - parent: 30 - type: Transform -- uid: 21611 - type: Catwalk - components: - - pos: -40.5,-27.5 - parent: 30 - type: Transform -- uid: 21612 - type: Catwalk - components: - - pos: -41.5,-27.5 - parent: 30 - type: Transform -- uid: 21613 - type: Catwalk - components: - - pos: -42.5,-27.5 - parent: 30 - type: Transform -- uid: 21614 - type: Catwalk - components: - - pos: -43.5,-27.5 - parent: 30 - type: Transform -- uid: 21615 - type: Catwalk - components: - - pos: -44.5,-27.5 - parent: 30 - type: Transform -- uid: 21616 - type: Catwalk - components: - - pos: -45.5,-27.5 - parent: 30 - type: Transform -- uid: 21617 - type: PoweredSmallLight - components: - - pos: -40.5,-26.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21618 - type: CableHV - components: - - pos: -41.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21619 - type: CableHV - components: - - pos: -40.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21620 - type: CableHV - components: - - pos: -39.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21621 - type: CableHV - components: - - pos: -38.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21622 - type: CableHV - components: - - pos: -37.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21623 - type: CableMV - components: - - pos: -42.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21624 - type: CableMV - components: - - pos: -40.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21625 - type: CableMV - components: - - pos: -39.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21626 - type: CableMV - components: - - pos: -38.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21627 - type: CableMV - components: - - pos: -37.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21628 - type: CableMV - components: - - pos: -36.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21629 - type: CableMV - components: - - pos: -36.5,-25.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21630 - type: CableMV - components: - - pos: -36.5,-26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21631 - type: CableMV - components: - - pos: -36.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21632 - type: CableMV - components: - - pos: -37.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21633 - type: CableMV - components: - - pos: -38.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21634 - type: CableMV - components: - - pos: -39.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21635 - type: CableMV - components: - - pos: -40.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21636 - type: CableMV - components: - - pos: -41.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21637 - type: CableMV - components: - - pos: -42.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21638 - type: CableMV - components: - - pos: -43.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21639 - type: CableMV - components: - - pos: -44.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21640 - type: CableMV - components: - - pos: -45.5,-27.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21641 - type: CableMV - components: - - pos: -45.5,-26.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21642 - type: CableMV - components: - - pos: -45.5,-25.5 - parent: 30 - type: Transform -- uid: 21643 - type: CableMV - components: - - pos: -45.5,-24.5 - parent: 30 - type: Transform -- uid: 21644 - type: CableHV - components: - - pos: -42.5,-24.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21645 - type: RandomSpawner - components: - - pos: -40.5,-27.5 - parent: 30 - type: Transform -- uid: 21646 - type: TableWood - components: - - pos: -28.5,15.5 - parent: 30 - type: Transform -- uid: 21647 - type: TableWood - components: - - pos: -27.5,15.5 - parent: 30 - type: Transform -- uid: 21648 - type: ChairOfficeDark - components: - - pos: -27.5,16.5 - parent: 30 - type: Transform -- uid: 21649 - type: LampGold - components: - - pos: -28.479252,15.714678 - parent: 30 - type: Transform -- uid: 21650 - type: VendingMachineGeneDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -35.5,-14.5 - parent: 30 - type: Transform -- uid: 21651 - type: AtmosFixFreezerMarker - components: - - pos: -21.5,-22.5 - parent: 30 - type: Transform -- uid: 21652 - type: AtmosFixFreezerMarker - components: - - pos: -21.5,-21.5 - parent: 30 - type: Transform -- uid: 21653 - type: BedsheetMedical - components: - - pos: -50.5,50.5 - parent: 30 - type: Transform -- uid: 21654 - type: Bed - components: - - pos: -50.5,50.5 - parent: 30 - type: Transform -- uid: 21655 - type: CableApcExtension - components: - - pos: -61.5,-32.5 - parent: 30 - type: Transform -- uid: 21656 - type: CableApcExtension - components: - - pos: -61.5,-33.5 - parent: 30 - type: Transform -- uid: 21657 - type: CableApcExtension - components: - - pos: -68.5,-30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21658 - type: CableApcExtension - components: - - pos: -69.5,-30.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21659 - type: CableApcExtension - components: - - pos: -69.5,-31.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21660 - type: CableApcExtension - components: - - pos: -69.5,-32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21661 - type: CableApcExtension - components: - - pos: -70.5,-32.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21662 - type: CableApcExtension - components: - - pos: -70.5,-33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21663 - type: CableApcExtension - components: - - pos: -71.5,-33.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21664 - type: CableApcExtension - components: - - pos: -71.5,-34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21665 - type: CableApcExtension - components: - - pos: -72.5,-34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21666 - type: CableApcExtension - components: - - pos: -73.5,-34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21667 - type: CableApcExtension - components: - - pos: -73.5,-35.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21668 - type: CableApcExtension - components: - - pos: -74.5,-34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21669 - type: CableApcExtension - components: - - pos: -75.5,-34.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21670 - type: lantern - components: - - pos: -57.51036,-43.24328 - parent: 30 - type: Transform -- uid: 21671 - type: HydroponicsToolClippers - components: - - pos: -77.499916,-51.40068 - parent: 30 - type: Transform -- uid: 21672 - type: ClothingShoesWizard - components: - - pos: -77.429,-48.831963 - parent: 30 - type: Transform -- uid: 21673 - type: PottedPlant11 - components: - - pos: -29.5,-18.5 - parent: 30 - type: Transform -- uid: 21674 - type: FirelockGlass - components: - - pos: 4.5,30.5 - parent: 30 - type: Transform -- uid: 21675 - type: SpawnPointChemist - components: - - pos: -7.5,-10.5 - parent: 30 - type: Transform -- uid: 21676 - type: ClothingEyesGlasses - components: - - pos: -31.475523,-0.50506616 - parent: 30 - type: Transform -- uid: 21677 - type: ClothingEyesGlasses - components: - - pos: -28.512682,-22.257547 - parent: 30 - type: Transform -- uid: 21678 - type: Poweredlight - components: - - pos: 20.5,16.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21679 - type: Table - components: - - pos: 23.5,13.5 - parent: 30 - type: Transform -- uid: 21680 - type: GasPipeStraight - components: - - pos: -31.5,-9.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21681 - type: GasPipeStraight - components: - - pos: -31.5,-8.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21682 - type: VendingMachineDonut - components: - - flags: SessionSpecific - name: Donut - type: MetaData - - pos: -46.5,-11.5 - parent: 30 - type: Transform -- uid: 21683 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-13.5 - parent: 30 - type: Transform -- uid: 21684 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-15.5 - parent: 30 - type: Transform -- uid: 21685 - type: SignSecurity - components: - - pos: -37.5,38.5 - parent: 30 - type: Transform -- uid: 21686 - type: AirlockSecurityGlassLocked - components: - - name: Firing "Range" lmao - type: MetaData - - pos: -36.5,59.5 - parent: 30 - type: Transform -- uid: 21687 - type: Table - components: - - pos: -23.5,-21.5 - parent: 30 - type: Transform -- uid: 21688 - type: ClothingNeckStethoscope - components: - - pos: -23.442308,-21.458326 - parent: 30 - type: Transform -- uid: 21689 - type: DrinkMugMetal - components: - - pos: -7.6216545,33.737206 - parent: 30 - type: Transform -- uid: 21690 - type: DrinkMugOne - components: - - pos: -9.1060295,35.62783 - parent: 30 - type: Transform -- uid: 21691 - type: DrinkMugRainbow - components: - - pos: -11.5122795,35.330956 - parent: 30 - type: Transform -- uid: 21692 - type: SurveillanceCameraCommand - components: - - pos: -8.5,31.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference Room - type: SurveillanceCamera -- uid: 21693 - type: AirlockMedicalGlassLocked - components: - - name: Med-Surg - type: MetaData - - pos: -30.5,-10.5 - parent: 30 - type: Transform -- uid: 21694 - type: BoxSyringe - components: - - pos: -33.468857,-15.210833 - parent: 30 - type: Transform -- uid: 21695 - type: BoxSterileMask - components: - - pos: -33.26573,-15.460833 - parent: 30 - type: Transform -- uid: 21696 - type: ClothingOuterCoatLab - components: - - pos: -31.500107,-15.413958 - parent: 30 - type: Transform -- uid: 21697 - type: ClothingOuterCoatLab - components: - - pos: -31.390732,-15.476458 - parent: 30 - type: Transform -- uid: 21698 - type: SignKiddiePlaque - components: - - pos: 8.5,44.5 - parent: 30 - type: Transform -- uid: 21699 - type: PosterContrabandNuclearDeviceInformational - components: - - pos: 2.5,42.5 - parent: 30 - type: Transform -- uid: 21700 - type: SignPlaque - components: - - pos: -30.5,0.5 - parent: 30 - type: Transform -- uid: 21701 - type: FaxMachineBase - components: - - pos: 23.5,14.5 - parent: 30 - type: Transform - - name: Science - type: FaxMachine -- uid: 21702 - type: LockerScienceFilled - components: - - pos: 21.5,7.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21703 - type: LockerScienceFilled - components: - - pos: 21.5,9.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21704 - type: MonkeyCubeBox - components: - - pos: 20.466301,18.680004 - parent: 30 - type: Transform -- uid: 21705 - type: Table - components: - - pos: 23.5,14.5 - parent: 30 - type: Transform -- uid: 21706 - type: MachineAPE - components: - - rot: 1.5707963267948966 rad - pos: 33.5,17.5 - parent: 30 - type: Transform -- uid: 21707 - type: MachineAPE - components: - - rot: 1.5707963267948966 rad - pos: 32.5,17.5 - parent: 30 - type: Transform -- uid: 21708 - type: WindoorScienceLocked - components: - - pos: 31.5,18.5 - parent: 30 - type: Transform -- uid: 21709 - type: MachineAnomalyVessel - components: - - pos: 32.5,23.5 - parent: 30 - type: Transform -- uid: 21710 - type: CrewMonitoringServer - components: - - pos: -25.5,-19.5 - parent: 30 - type: Transform -- uid: 21711 - type: WindoorScienceLocked - components: - - pos: 33.5,18.5 - parent: 30 - type: Transform -- uid: 21712 - type: ClosetBombFilled - components: - - pos: 33.5,19.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21713 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 30.5,20.5 - parent: 30 - type: Transform -- uid: 21714 - type: Paper - components: - - pos: 23.549414,13.599922 - parent: 30 - type: Transform -- uid: 21715 - type: Paper - components: - - pos: 23.549414,13.599922 - parent: 30 - type: Transform -- uid: 21716 - type: MachineAnomalyVessel - components: - - pos: 32.5,22.5 - parent: 30 - type: Transform -- uid: 21717 - type: TableReinforcedGlass - components: - - pos: 30.5,23.5 - parent: 30 - type: Transform -- uid: 21718 - type: TableReinforcedGlass - components: - - pos: 30.5,22.5 - parent: 30 - type: Transform -- uid: 21719 - type: Paper - components: - - pos: 23.549414,13.599922 - parent: 30 - type: Transform -- uid: 21720 - type: filingCabinetDrawer - components: - - pos: 23.5,15.5 - parent: 30 - type: Transform -- uid: 21721 - type: SignalButton - components: - - pos: -1.5,34.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 22424 - - port: Toggle - uid: 21722 - type: SignalTransmitter -- uid: 21722 - type: ShuttersNormalOpen - components: - - pos: -0.5,28.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21721 - type: SignalReceiver -- uid: 21723 - type: AnomalyScanner - components: - - pos: 30.56893,23.39165 - parent: 30 - type: Transform -- uid: 21724 - type: AnomalyScanner - components: - - pos: 30.41268,23.594774 - parent: 30 - type: Transform -- uid: 21725 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 23.5,10.5 - parent: 30 - type: Transform -- uid: 21726 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 23.5,11.5 - parent: 30 - type: Transform -- uid: 21727 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 23.5,12.5 - parent: 30 - type: Transform -- uid: 21728 - type: PottedPlantBioluminscent - components: - - pos: 23.5,9.5 - parent: 30 - type: Transform -- uid: 21729 - type: SheetPlasma - components: - - pos: 30.50643,22.626024 - parent: 30 - type: Transform -- uid: 21730 - type: CableApcExtension - components: - - pos: -37.5,62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21731 - type: ClothingHeadHatWelding - components: - - pos: 9.6965,-22.520994 - parent: 30 - type: Transform -- uid: 21732 - type: TableReinforcedGlass - components: - - pos: 30.5,21.5 - parent: 30 - type: Transform -- uid: 21733 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 15.5,16.5 - parent: 30 - type: Transform -- uid: 21734 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 15.5,17.5 - parent: 30 - type: Transform -- uid: 21735 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 15.5,18.5 - parent: 30 - type: Transform -- uid: 21736 - type: PottedPlantBioluminscent - components: - - pos: -12.5,29.5 - parent: 30 - type: Transform -- uid: 21737 - type: PottedPlantBioluminscent - components: - - pos: -6.5,29.5 - parent: 30 - type: Transform -- uid: 21738 - type: BiomassReclaimer - components: - - pos: -22.5,-10.5 - parent: 30 - type: Transform -- uid: 21739 - type: FireAlarm - components: - - pos: -16.5,-37.5 - parent: 30 - type: Transform - - devices: - - 11340 - - 11341 - - 11342 - - 20358 - type: DeviceList -- uid: 21740 - type: AirAlarm - components: - - pos: -16.5,-33.5 - parent: 30 - type: Transform - - devices: - - 11097 - - 11227 - - 21741 - type: DeviceList -- uid: 21741 - type: AirSensor - components: - - pos: -17.5,-34.5 - parent: 30 - type: Transform -- uid: 21742 - type: ShuttersRadiationOpen - components: - - pos: -6.5,-61.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20328 - type: SignalReceiver -- uid: 21743 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-33.5 - parent: 30 - type: Transform - - devices: - - 11176 - - 11107 - - 21744 - type: DeviceList -- uid: 21744 - type: AirSensor - components: - - pos: -12.5,-33.5 - parent: 30 - type: Transform -- uid: 21745 - type: AirSensor - components: - - pos: 1.5,-40.5 - parent: 30 - type: Transform -- uid: 21746 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-41.5 - parent: 30 - type: Transform - - devices: - - 21745 - - 11343 - - 11344 - - 11345 - - 9305 - - 9304 - - 9306 - type: DeviceList -- uid: 21747 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-26.5 - parent: 30 - type: Transform - - devices: - - 8611 - - 8612 - - 8628 - - 8626 - - 7731 - - 21749 - - 11178 - - 11179 - type: DeviceList -- uid: 21748 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-25.5 - parent: 30 - type: Transform - - devices: - - 8611 - - 8612 - - 8628 - - 8626 - - 7731 - - 21749 - type: DeviceList -- uid: 21749 - type: AirSensor - components: - - pos: -2.5,-25.5 - parent: 30 - type: Transform -- uid: 21750 - type: SignDangerMed - components: - - pos: -5.5,-47.5 - parent: 30 - type: Transform -- uid: 21751 - type: SignRadiationMed - components: - - pos: -6.5,-47.5 - parent: 30 - type: Transform -- uid: 21752 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-28.5 - parent: 30 - type: Transform - - devices: - - 21753 - - 9302 - - 9303 - - 9301 - - 9300 - type: DeviceList -- uid: 21753 - type: AirSensor - components: - - pos: 10.5,-27.5 - parent: 30 - type: Transform -- uid: 21754 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-27.5 - parent: 30 - type: Transform - - devices: - - 21753 - - 9302 - - 9303 - - 9301 - - 9300 - - 11188 - - 11189 - type: DeviceList -- uid: 21755 - type: AirAlarm - components: - - pos: 12.5,-30.5 - parent: 30 - type: Transform - - devices: - - 21756 - type: DeviceList -- uid: 21756 - type: AirSensor - components: - - pos: 12.5,-36.5 - parent: 30 - type: Transform -- uid: 21757 - type: AirAlarm - components: - - pos: 14.5,-21.5 - parent: 30 - type: Transform - - devices: - - 21759 - - 9303 - - 9302 - - 9301 - - 9300 - - 9307 - - 9308 - - 9309 - - 11192 - - 11180 - type: DeviceList -- uid: 21758 - type: FireAlarm - components: - - pos: 13.5,-21.5 - parent: 30 - type: Transform - - devices: - - 21759 - - 9303 - - 9302 - - 9301 - - 9300 - - 9307 - - 9308 - - 9309 - type: DeviceList -- uid: 21759 - type: AirSensor - components: - - pos: 12.5,-24.5 - parent: 30 - type: Transform -- uid: 21760 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-17.5 - parent: 30 - type: Transform - - devices: - - 11214 - - 21761 - type: DeviceList -- uid: 21761 - type: AirSensor - components: - - pos: 22.5,-16.5 - parent: 30 - type: Transform -- uid: 21762 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-26.5 - parent: 30 - type: Transform - - devices: - - 21768 - - 8611 - - 8612 - - 11762 - - 11803 - - 12039 - - 16096 - - 11714 - type: DeviceList -- uid: 21763 - type: Grille - components: - - pos: 4.5,-25.5 - parent: 30 - type: Transform -- uid: 21764 - type: Grille - components: - - pos: 4.5,-23.5 - parent: 30 - type: Transform -- uid: 21765 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-29.5 - parent: 30 - type: Transform - - inputs: - Open: - - port: Left - uid: 11701 - - port: Right - uid: 11701 - Close: - - port: Middle - uid: 11701 - Toggle: [] - type: SignalReceiver -- uid: 21766 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 30 - type: Transform - - inputs: - Open: - - port: Left - uid: 11701 - - port: Right - uid: 11701 - Close: - - port: Middle - uid: 11701 - Toggle: [] - type: SignalReceiver -- uid: 21767 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-23.5 - parent: 30 - type: Transform - - inputs: - Open: - - port: Left - uid: 11701 - - port: Right - uid: 11701 - Close: - - port: Middle - uid: 11701 - Toggle: [] - type: SignalReceiver -- uid: 21768 - type: AirSensor - components: - - pos: 6.5,-24.5 - parent: 30 - type: Transform -- uid: 21769 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-26.5 - parent: 30 - type: Transform - - devices: - - 21768 - - 8611 - - 8612 - - 11762 - - 11803 - - 12039 - type: DeviceList -- uid: 21770 - type: FireAlarm - components: - - pos: 6.5,-17.5 - parent: 30 - type: Transform - - devices: - - 8628 - - 8626 - - 7731 - - 12039 - - 11762 - - 11803 - - 8366 - - 8365 - - 8364 - - 21772 - type: DeviceList -- uid: 21771 - type: AirAlarm - components: - - pos: 0.5,-17.5 - parent: 30 - type: Transform - - devices: - - 8628 - - 8626 - - 7731 - - 12039 - - 11762 - - 11803 - - 8366 - - 8365 - - 8364 - - 21772 - - 11201 - - 11200 - type: DeviceList -- uid: 21772 - type: AirSensor - components: - - pos: 0.5,-19.5 - parent: 30 - type: Transform -- uid: 21773 - type: AirSensor - components: - - pos: 12.5,-19.5 - parent: 30 - type: Transform -- uid: 21774 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-17.5 - parent: 30 - type: Transform - - devices: - - 8366 - - 8365 - - 8364 - - 8368 - - 8369 - - 8367 - - 21773 - - 11211 - - 11210 - type: DeviceList -- uid: 21775 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-17.5 - parent: 30 - type: Transform - - devices: - - 8366 - - 8365 - - 8364 - - 8368 - - 8369 - - 8367 - - 21773 - type: DeviceList -- uid: 21776 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 30 - type: Transform - - devices: - - 8368 - - 8369 - - 8367 - - 11720 - - 11805 - - 11806 - - 6619 - - 8467 - - 8468 - - 21778 - - invalid - type: DeviceList -- uid: 21777 - type: AirAlarm - components: - - pos: 6.5,-5.5 - parent: 30 - type: Transform - - devices: - - 8368 - - 8369 - - 8367 - - 11720 - - 11805 - - 11806 - - 6619 - - 8467 - - 8468 - - 21778 - - 11220 - - 11219 - - 20335 - - invalid - type: DeviceList -- uid: 21778 - type: AirSensor - components: - - pos: 9.5,-10.5 - parent: 30 - type: Transform -- uid: 21779 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 15.5,-8.5 - parent: 30 - type: Transform - - devices: - - 8473 - - 8474 - - 11705 - - 21780 - - 6619 - - 8467 - - 8468 - type: DeviceList -- uid: 21780 - type: AirSensor - components: - - pos: 16.5,-4.5 - parent: 30 - type: Transform -- uid: 21781 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-5.5 - parent: 30 - type: Transform - - devices: - - 8473 - - 8474 - - 11705 - - 21780 - - 6619 - - 8467 - - 8468 - - 11221 - - 11222 - type: DeviceList -- uid: 21782 - type: AirSensor - components: - - pos: 20.5,-8.5 - parent: 30 - type: Transform -- uid: 21783 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-8.5 - parent: 30 - type: Transform - - devices: - - 12067 - - 11775 - - 8486 - - 11774 - - 11705 - - 21782 - - 11944 - - 11939 - - 14540 - - 11991 - type: DeviceList -- uid: 21784 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 30 - type: Transform - - devices: - - 12067 - - 11775 - - 8486 - - 11774 - - 11705 - - 21782 - type: DeviceList -- uid: 21785 - type: AirAlarm - components: - - pos: 28.5,-0.5 - parent: 30 - type: Transform - - devices: - - 12067 - - 11775 - - 8486 - - 11774 - - 954 - - 21787 - - 18060 - - 12081 - - 11764 - - 11872 - type: DeviceList -- uid: 21786 - type: FireAlarm - components: - - pos: 32.5,-0.5 - parent: 30 - type: Transform - - devices: - - 12067 - - 11775 - - 8486 - - 11774 - - 954 - - 21787 - type: DeviceList -- uid: 21787 - type: AirSensor - components: - - pos: 32.5,-4.5 - parent: 30 - type: Transform -- uid: 21788 - type: WindoorCargoLocked - components: - - rot: 3.141592653589793 rad - pos: 31.5,-8.5 - parent: 30 - type: Transform -- uid: 21789 - type: AirAlarm - components: - - pos: 26.5,3.5 - parent: 30 - type: Transform - - devices: - - 21790 - - 12007 - - 12043 - - 12044 - - 12010 - type: DeviceList -- uid: 21790 - type: AirSensor - components: - - pos: 31.5,1.5 - parent: 30 - type: Transform -- uid: 21791 - type: AirAlarm - components: - - pos: 16.5,3.5 - parent: 30 - type: Transform - - devices: - - 8473 - - 8474 - - 21792 - - 11985 - - 11981 - type: DeviceList -- uid: 21792 - type: AirSensor - components: - - pos: 16.5,1.5 - parent: 30 - type: Transform -- uid: 21793 - type: FireAlarm - components: - - pos: 15.5,3.5 - parent: 30 - type: Transform - - devices: - - 8473 - - 8474 - - 21792 - type: DeviceList -- uid: 21794 - type: AirSensor - components: - - pos: 3.5,-2.5 - parent: 30 - type: Transform -- uid: 21795 - type: FireAlarm - components: - - pos: 2.5,-0.5 - parent: 30 - type: Transform - - devices: - - 9574 - - 9575 - - 49 - - 24 - - 23 - - 21794 - type: DeviceList -- uid: 21796 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 30 - type: Transform - - devices: - - 9574 - - 9575 - - 49 - - 24 - - 23 - - 21794 - - 11218 - - 11217 - type: DeviceList -- uid: 21797 - type: AirAlarm - components: - - pos: 3.5,5.5 - parent: 30 - type: Transform - - devices: - - 31 - - 29 - - 28 - - 55 - - 27 - - 2 - - 26 - - 56 - - 25 - - 49 - - 24 - - 23 - - 22 - - 21 - - 20 - - 596 - - 597 - - 602 - - 601 - - 600 - - 21799 - - 3408 - - 3407 - - 3409 - - 3410 - type: DeviceList -- uid: 21798 - type: FireAlarm - components: - - pos: -10.5,5.5 - parent: 30 - type: Transform - - devices: - - 31 - - 29 - - 28 - - 55 - - 27 - - 2 - - 26 - - 56 - - 25 - - 49 - - 24 - - 23 - - 22 - - 21 - - 20 - - 596 - - 597 - - 602 - - 601 - - 600 - - 21799 - type: DeviceList -- uid: 21799 - type: AirSensor - components: - - pos: -5.5,3.5 - parent: 30 - type: Transform -- uid: 21800 - type: FireAlarm - components: - - pos: 6.5,5.5 - parent: 30 - type: Transform - - devices: - - 31 - - 29 - - 28 - - 55 - - 27 - - 2 - - 26 - - 56 - - 25 - - 49 - - 24 - - 23 - - 22 - - 21 - - 20 - - 596 - - 597 - - 602 - - 601 - - 600 - - 21799 - type: DeviceList -- uid: 21801 - type: AirAlarm - components: - - pos: -14.5,0.5 - parent: 30 - type: Transform - - devices: - - 55 - - 27 - - 2 - - 6733 - - 6734 - - 6646 - - 994 - - 21803 - - 6785 - - 6786 - - 6787 - - 6788 - - 7339 - - 7340 - type: DeviceList -- uid: 21802 - type: FireAlarm - components: - - pos: -7.5,-0.5 - parent: 30 - type: Transform - - devices: - - 55 - - 27 - - 2 - - 6733 - - 6734 - - 6646 - - 994 - - 21803 - - 6785 - - 6786 - - 6787 - - 6788 - type: DeviceList -- uid: 21803 - type: AirSensor - components: - - pos: -5.5,-2.5 - parent: 30 - type: Transform -- uid: 21804 - type: AirSensor - components: - - pos: -12.5,-9.5 - parent: 30 - type: Transform -- uid: 21805 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -12.5,-11.5 - parent: 30 - type: Transform - - devices: - - 6648 - - 6858 - - 6859 - - 6860 - - 21804 - - 7371 - - 7372 - type: DeviceList -- uid: 21806 - type: FireAlarm - components: - - pos: -13.5,-7.5 - parent: 30 - type: Transform - - devices: - - 6648 - - 6858 - - 6859 - - 6860 - - 21804 - type: DeviceList -- uid: 21807 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 30 - type: Transform - - devices: - - 6648 - - 994 - - 6646 - - 21809 - - 7377 - - 7373 - - 7378 - type: DeviceList -- uid: 21808 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 30 - type: Transform - - devices: - - 6648 - - 994 - - 6646 - - 21809 - type: DeviceList -- uid: 21809 - type: AirSensor - components: - - pos: -8.5,-8.5 - parent: 30 - type: Transform -- uid: 21810 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-7.5 - parent: 30 - type: Transform - - devices: - - 6858 - - 6859 - - 6860 - - 8326 - - 8325 - - 8324 - - 6936 - - 6937 - - 21812 - type: DeviceList -- uid: 21811 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-6.5 - parent: 30 - type: Transform - - devices: - - 6858 - - 6859 - - 6860 - - 8326 - - 8325 - - 8324 - - 6936 - - 6937 - - 21812 - - 7387 - - 7381 - type: DeviceList -- uid: 21812 - type: AirSensor - components: - - pos: -18.5,-6.5 - parent: 30 - type: Transform -- uid: 21813 - type: AirSensor - components: - - pos: -24.5,-1.5 - parent: 30 - type: Transform -- uid: 21814 - type: AirAlarm - components: - - pos: -24.5,0.5 - parent: 30 - type: Transform - - devices: - - 21813 - - 8223 - - 8224 - type: DeviceList -- uid: 21815 - type: AirSensor - components: - - pos: -25.5,-7.5 - parent: 30 - type: Transform -- uid: 21816 - type: AirAlarm - components: - - pos: -25.5,-6.5 - parent: 30 - type: Transform - - devices: - - 6930 - - 6933 - - 6936 - - 6937 - - 21815 - - 6934 - - 6935 - - 7458 - - 7457 - type: DeviceList -- uid: 21817 - type: FireAlarm - components: - - pos: -21.5,-6.5 - parent: 30 - type: Transform - - devices: - - 6930 - - 6933 - - 6936 - - 6937 - - 21815 - - 6934 - - 6935 - type: DeviceList -- uid: 21818 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -24.5,-15.5 - parent: 30 - type: Transform - - devices: - - 6934 - - 6935 - - 6952 - - 21820 - - 7603 - - 7609 - type: DeviceList -- uid: 21819 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -22.5,-15.5 - parent: 30 - type: Transform - - devices: - - 6934 - - 6935 - - 6952 - - 21820 - type: DeviceList -- uid: 21820 - type: AirSensor - components: - - pos: -24.5,-13.5 - parent: 30 - type: Transform -- uid: 21821 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-18.5 - parent: 30 - type: Transform - - devices: - - 21823 - - 7579 - - 7578 - type: DeviceList -- uid: 21822 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-17.5 - parent: 30 - type: Transform - - devices: - - 8324 - - 8325 - - 8326 - - 6952 - - 21825 - - 7589 - - 7588 - type: DeviceList -- uid: 21823 - type: AirSensor - components: - - pos: -24.5,-18.5 - parent: 30 - type: Transform -- uid: 21824 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-15.5 - parent: 30 - type: Transform - - devices: - - 8324 - - 8325 - - 8326 - - 6952 - - 21825 - type: DeviceList -- uid: 21825 - type: AirSensor - components: - - pos: -18.5,-15.5 - parent: 30 - type: Transform -- uid: 21826 - type: AirAlarm - components: - - pos: -10.5,-18.5 - parent: 30 - type: Transform - - devices: - - 7569 - - 21827 - - 7556 - type: DeviceList -- uid: 21827 - type: AirSensor - components: - - pos: -9.5,-19.5 - parent: 30 - type: Transform -- uid: 21828 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-22.5 - parent: 30 - type: Transform - - devices: - - 7568 - - 7555 - - 21829 - type: DeviceList -- uid: 21829 - type: AirSensor - components: - - pos: -13.5,-19.5 - parent: 30 - type: Transform -- uid: 21830 - type: AirAlarm - components: - - pos: -30.5,-18.5 - parent: 30 - type: Transform - - devices: - - 7511 - - 7513 - - 7514 - - 7504 - - 7505 - - 7515 - - 7516 - - 7204 - - 21831 - type: DeviceList -- uid: 21831 - type: AirSensor - components: - - pos: -27.5,-18.5 - parent: 30 - type: Transform -- uid: 21832 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-11.5 - parent: 30 - type: Transform - - devices: - - 6930 - - 6933 - - 21834 - type: DeviceList -- uid: 21833 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 30 - type: Transform - - devices: - - 6930 - - 6933 - - 21834 - - 7465 - - 7464 - type: DeviceList -- uid: 21834 - type: AirSensor - components: - - pos: -28.5,-11.5 - parent: 30 - type: Transform -- uid: 21835 - type: AirAlarm - components: - - pos: -31.5,0.5 - parent: 30 - type: Transform - - devices: - - 6911 - - 21836 - - 6900 - type: DeviceList -- uid: 21836 - type: AirSensor - components: - - pos: -29.5,-2.5 - parent: 30 - type: Transform -- uid: 21837 - type: AirSensor - components: - - pos: -37.5,-6.5 - parent: 30 - type: Transform -- uid: 21838 - type: AirAlarm - components: - - pos: -36.5,-3.5 - parent: 30 - type: Transform - - devices: - - 21837 - - invalid - - 7260 - - 7871 - - 7875 - - 22532 - type: DeviceList -- uid: 21839 - type: AirSensor - components: - - pos: -77.5,-62.5 - parent: 30 - type: Transform -- uid: 21840 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -78.5,-59.5 - parent: 30 - type: Transform - - devices: - - 21839 - - 18730 - - 18732 - type: DeviceList -- uid: 21841 - type: AirAlarm - components: - - pos: -66.5,-47.5 - parent: 30 - type: Transform - - devices: - - 21842 - - 18757 - - 18756 - - 18758 - - 18759 - - 21843 - type: DeviceList -- uid: 21842 - type: AirSensor - components: - - pos: -57.5,-60.5 - parent: 30 - type: Transform -- uid: 21843 - type: AirSensor - components: - - pos: -66.5,-48.5 - parent: 30 - type: Transform -- uid: 21844 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-62.5 - parent: 30 - type: Transform - - devices: - - 18770 - - 18769 - - 21845 - type: DeviceList -- uid: 21845 - type: AirSensor - components: - - pos: -57.5,-62.5 - parent: 30 - type: Transform -- uid: 21846 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -82.5,-42.5 - parent: 30 - type: Transform - - devices: - - 18519 - - 18662 - - 21847 - type: DeviceList -- uid: 21847 - type: AirSensor - components: - - pos: -81.5,-42.5 - parent: 30 - type: Transform -- uid: 21848 - type: AirSensor - components: - - pos: -77.5,-39.5 - parent: 30 - type: Transform -- uid: 21849 - type: AirAlarm - components: - - pos: -80.5,-38.5 - parent: 30 - type: Transform - - devices: - - 18655 - - 18520 - - 21848 - type: DeviceList -- uid: 21850 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -65.5,-46.5 - parent: 30 - type: Transform - - devices: - - 20349 - - 20350 - - 21851 - - 18524 - - 18629 - type: DeviceList -- uid: 21851 - type: AirSensor - components: - - pos: -64.5,-46.5 - parent: 30 - type: Transform -- uid: 21852 - type: FireAlarm - components: - - pos: -59.5,-37.5 - parent: 30 - type: Transform - - devices: - - 20349 - - 20350 - - 21851 - type: DeviceList -- uid: 21853 - type: FireAlarm - components: - - pos: -56.5,-44.5 - parent: 30 - type: Transform - - devices: - - 21854 - - 20351 - - 20352 - type: DeviceList -- uid: 21854 - type: AirSensor - components: - - pos: -54.5,-45.5 - parent: 30 - type: Transform -- uid: 21855 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-46.5 - parent: 30 - type: Transform - - devices: - - 18675 - - 18674 - - 21854 - - 20351 - - 20352 - type: DeviceList -- uid: 21856 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -60.5,-25.5 - parent: 30 - type: Transform - - devices: - - 21859 - - 20347 - - 20348 - - 18451 - - 18450 - type: DeviceList -- uid: 21857 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -63.5,-25.5 - parent: 30 - type: Transform - - devices: - - 21859 - - 20347 - - 20348 - type: DeviceList -- uid: 21858 - type: FireAlarm - components: - - pos: -60.5,-26.5 - parent: 30 - type: Transform - - devices: - - 21859 - - 20347 - - 20348 - type: DeviceList -- uid: 21859 - type: AirSensor - components: - - pos: -63.5,-22.5 - parent: 30 - type: Transform -- uid: 21860 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -47.5,-7.5 - parent: 30 - type: Transform - - devices: - - 20359 - - 20360 - - invalid - type: DeviceList -- uid: 21863 - type: AirAlarm - components: - - pos: -47.5,11.5 - parent: 30 - type: Transform - - devices: - - 4882 - - 4881 - - 1101 - - 1100 - - 1099 - - invalid - - 21865 - - 3148 - - 3147 - - 3136 - - 3135 - type: DeviceList -- uid: 21864 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -46.5,6.5 - parent: 30 - type: Transform - - devices: - - 4882 - - 4881 - - 1101 - - 1100 - - 1099 - - invalid - - 21865 - type: DeviceList -- uid: 21865 - type: AirSensor - components: - - pos: -45.5,7.5 - parent: 30 - type: Transform -- uid: 21866 - type: FireAlarm - components: - - pos: -42.5,8.5 - parent: 30 - type: Transform - - devices: - - 1099 - - 1100 - - 1101 - - 1408 - - 1409 - - 1410 - - 21867 - - 10401 - type: DeviceList -- uid: 21867 - type: AirSensor - components: - - pos: -41.5,6.5 - parent: 30 - type: Transform -- uid: 21868 - type: AirAlarm - components: - - pos: -42.5,4.5 - parent: 30 - type: Transform - - devices: - - 1099 - - 1100 - - 1101 - - 1408 - - 1409 - - 1410 - - 21867 - - 10401 - - 3099 - - 3100 - - 3111 - - 3112 - type: DeviceList -- uid: 21869 - type: PaintingAmogusTriptych - components: - - pos: -43.5,11.5 - parent: 30 - type: Transform -- uid: 21870 - type: AirSensor - components: - - pos: -46.5,12.5 - parent: 30 - type: Transform -- uid: 21871 - type: FireAlarm - components: - - pos: -39.5,16.5 - parent: 30 - type: Transform - - devices: - - 1405 - - 1406 - - 1407 - - 1411 - - 1412 - - 1413 - - 21870 - type: DeviceList -- uid: 21872 - type: AirAlarm - components: - - pos: -44.5,16.5 - parent: 30 - type: Transform - - devices: - - 1405 - - 1406 - - 1407 - - 1411 - - 1412 - - 1413 - - 21870 - - 3266 - - 3267 - - 3253 - - 3254 - type: DeviceList -- uid: 21873 - type: FireAlarm - components: - - pos: -37.5,8.5 - parent: 30 - type: Transform - - devices: - - 306 - - 307 - - 308 - - 1408 - - 1409 - - 1410 - - 21875 - - 1104 - - 1103 - - 1102 - type: DeviceList -- uid: 21874 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -33.5,10.5 - parent: 30 - type: Transform - - devices: - - 306 - - 307 - - 308 - - 1408 - - 1409 - - 1410 - - 21875 - - 1104 - - 1103 - - 1102 - - 3069 - - 3068 - type: DeviceList -- uid: 21875 - type: AirSensor - components: - - pos: -35.5,6.5 - parent: 30 - type: Transform -- uid: 21876 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -48.5,12.5 - parent: 30 - type: Transform - - devices: - - 21877 - - 1405 - - 1406 - - 1407 - - 4882 - - 4881 - type: DeviceList -- uid: 21877 - type: AirSensor - components: - - pos: -50.5,14.5 - parent: 30 - type: Transform -- uid: 21878 - type: AirAlarm - components: - - pos: -54.5,26.5 - parent: 30 - type: Transform - - devices: - - 21877 - - 1405 - - 1406 - - 1407 - - 4882 - - 4881 - - 3317 - - 3323 - - 3318 - - 3324 - type: DeviceList -- uid: 21879 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -20.5,0.5 - parent: 30 - type: Transform - - devices: - - 320 - - 306 - - 307 - - 308 - - 21881 - - 31 - - 29 - - 28 - - 3328 - - 3327 - - 3326 - - 3325 - type: DeviceList -- uid: 21880 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -15.5,0.5 - parent: 30 - type: Transform - - devices: - - 320 - - 306 - - 307 - - 308 - - 21881 - - 31 - - 29 - - 28 - type: DeviceList -- uid: 21881 - type: AirSensor - components: - - pos: -20.5,2.5 - parent: 30 - type: Transform -- uid: 21882 - type: AirSensor - components: - - pos: -35.5,15.5 - parent: 30 - type: Transform -- uid: 21883 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -33.5,20.5 - parent: 30 - type: Transform - - devices: - - 1107 - - 1106 - - 1105 - - 1104 - - 1103 - - 1102 - - 1411 - - 1412 - - 1413 - - 21882 - - 3067 - - 3066 - type: DeviceList -- uid: 21884 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -37.5,20.5 - parent: 30 - type: Transform - - devices: - - 1107 - - 1106 - - 1105 - - 1104 - - 1103 - - 1102 - - 1411 - - 1412 - - 1413 - - 21882 - type: DeviceList -- uid: 21885 - type: AirSensor - components: - - pos: -33.5,26.5 - parent: 30 - type: Transform -- uid: 21886 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -37.5,24.5 - parent: 30 - type: Transform - - devices: - - 4842 - - 4843 - - 4844 - - 1105 - - 1106 - - 1107 - - 20385 - - 20384 - - 20383 - - 21885 - - 3065 - - 3064 - type: DeviceList -- uid: 21887 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -37.5,27.5 - parent: 30 - type: Transform - - devices: - - 4842 - - 4843 - - 4844 - - 1105 - - 1106 - - 1107 - - 20385 - - 20384 - - 20383 - - 21885 - type: DeviceList -- uid: 21888 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -33.5,33.5 - parent: 30 - type: Transform - - devices: - - 2746 - - 2745 - - 2744 - - 21893 - - 21894 - - 21895 - - 20384 - - 20385 - - 20383 - - 21890 - - 2451 - - 2452 - - 2454 - - 2453 - type: DeviceList -- uid: 21889 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -33.5,31.5 - parent: 30 - type: Transform - - devices: - - 2746 - - 2745 - - 2744 - - 21893 - - 21894 - - 21895 - - 20384 - - 20385 - - 20383 - - 21890 - type: DeviceList -- uid: 21890 - type: AirSensor - components: - - pos: -35.5,34.5 - parent: 30 - type: Transform -- uid: 21891 - type: FirelockGlass - components: - - pos: -33.5,39.5 - parent: 30 - type: Transform -- uid: 21892 - type: FirelockGlass - components: - - pos: -33.5,40.5 - parent: 30 - type: Transform -- uid: 21893 - type: FirelockGlass - components: - - pos: -32.5,38.5 - parent: 30 - type: Transform -- uid: 21894 - type: FirelockGlass - components: - - pos: -31.5,38.5 - parent: 30 - type: Transform -- uid: 21895 - type: FirelockGlass - components: - - pos: -30.5,38.5 - parent: 30 - type: Transform -- uid: 21896 - type: AirSensor - components: - - pos: -43.5,36.5 - parent: 30 - type: Transform -- uid: 21897 - type: AirAlarm - components: - - pos: -45.5,38.5 - parent: 30 - type: Transform - - devices: - - 2746 - - 2745 - - 2744 - - 4893 - - 4894 - - 4895 - - 21896 - - 2493 - - 2492 - type: DeviceList -- uid: 21898 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -45.5,34.5 - parent: 30 - type: Transform - - devices: - - 2746 - - 2745 - - 2744 - - 4893 - - 4894 - - 4895 - - 21896 - type: DeviceList -- uid: 21899 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -45.5,31.5 - parent: 30 - type: Transform - - devices: - - 21900 - - 2490 - - 2491 - type: DeviceList -- uid: 21900 - type: AirSensor - components: - - pos: -43.5,32.5 - parent: 30 - type: Transform -- uid: 21901 - type: AirAlarm - components: - - pos: -51.5,34.5 - parent: 30 - type: Transform - - devices: - - 21902 - - 2483 - - 2482 - type: DeviceList -- uid: 21902 - type: AirSensor - components: - - pos: -52.5,32.5 - parent: 30 - type: Transform -- uid: 21903 - type: AirAlarm - components: - - pos: -34.5,45.5 - parent: 30 - type: Transform - - devices: - - 20386 - - 20387 - - 20388 - - 21905 - - 2646 - - 2647 - - 2648 - - 21892 - - 21891 - - 21893 - - 21894 - - 21895 - - 2523 - - 2525 - type: DeviceList -- uid: 21904 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -33.5,41.5 - parent: 30 - type: Transform - - devices: - - 20386 - - 20387 - - 20388 - - 21905 - - 2646 - - 2647 - - 2648 - - 21892 - - 21891 - - 21893 - - 21894 - - 21895 - type: DeviceList -- uid: 21905 - type: AirSensor - components: - - pos: -31.5,43.5 - parent: 30 - type: Transform -- uid: 21906 - type: AirAlarm - components: - - pos: -43.5,50.5 - parent: 30 - type: Transform - - devices: - - 21908 - - 2005 - - 2006 - - 1443 - - 2545 - - 2544 - type: DeviceList -- uid: 21907 - type: FireAlarm - components: - - pos: -44.5,50.5 - parent: 30 - type: Transform - - devices: - - 21908 - - 2005 - - 2006 - - 1443 - type: DeviceList -- uid: 21908 - type: AirSensor - components: - - pos: -39.5,47.5 - parent: 30 - type: Transform -- uid: 21909 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -41.5,41.5 - parent: 30 - type: Transform - - devices: - - 2646 - - 2647 - - 2648 - - 1443 - - 2223 - - 2222 - - 2221 - - 21911 - type: DeviceList -- uid: 21910 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -45.5,41.5 - parent: 30 - type: Transform - - devices: - - 2646 - - 2647 - - 2648 - - 1443 - - 2223 - - 2222 - - 2221 - - 21911 - - 2644 - - 2645 - type: DeviceList -- uid: 21911 - type: AirSensor - components: - - pos: -45.5,43.5 - parent: 30 - type: Transform -- uid: 21912 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -49.5,49.5 - parent: 30 - type: Transform - - devices: - - 4890 - - 4891 - - 4892 - - 2223 - - 2222 - - 2221 - - 21914 - type: DeviceList -- uid: 21913 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -49.5,48.5 - parent: 30 - type: Transform - - devices: - - 4890 - - 4891 - - 4892 - - 2223 - - 2222 - - 2221 - - 21914 - - 2669 - - 2670 - - 2675 - - 2676 - type: DeviceList -- uid: 21914 - type: AirSensor - components: - - pos: -47.5,48.5 - parent: 30 - type: Transform -- uid: 21915 - type: FireAlarm - components: - - pos: -49.5,59.5 - parent: 30 - type: Transform - - devices: - - 4890 - - 4891 - - 4892 - - 21916 - type: DeviceList -- uid: 21916 - type: AirSensor - components: - - pos: -51.5,56.5 - parent: 30 - type: Transform -- uid: 21917 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -28.5,47.5 - parent: 30 - type: Transform - - devices: - - 20386 - - 20387 - - 20388 - - 21919 - - 2594 - - 2595 - - 2526 - - 2524 - type: DeviceList -- uid: 21918 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -36.5,52.5 - parent: 30 - type: Transform - - devices: - - 20386 - - 20387 - - 20388 - - 21919 - type: DeviceList -- uid: 21919 - type: AirSensor - components: - - pos: -32.5,52.5 - parent: 30 - type: Transform -- uid: 21920 - type: AirSensor - components: - - pos: -29.5,58.5 - parent: 30 - type: Transform -- uid: 21921 - type: AirAlarm - components: - - pos: -31.5,61.5 - parent: 30 - type: Transform - - devices: - - 2592 - - 21920 - - 2593 - type: DeviceList -- uid: 21922 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -25.5,47.5 - parent: 30 - type: Transform - - devices: - - 21923 - - 2573 - - 2574 - type: DeviceList -- uid: 21923 - type: AirSensor - components: - - pos: -26.5,48.5 - parent: 30 - type: Transform -- uid: 21924 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -23.5,31.5 - parent: 30 - type: Transform - - devices: - - 3041 - - 3042 - - 21925 - type: DeviceList -- uid: 21925 - type: AirSensor - components: - - pos: -25.5,32.5 - parent: 30 - type: Transform -- uid: 21926 - type: AirSensor - components: - - pos: -27.5,26.5 - parent: 30 - type: Transform -- uid: 21927 - type: FireAlarm - components: - - pos: -22.5,28.5 - parent: 30 - type: Transform - - devices: - - 4842 - - 4843 - - 4844 - - 21926 - - 6102 - - 6103 - - 6104 - type: DeviceList -- uid: 21928 - type: AirAlarm - components: - - pos: -20.5,28.5 - parent: 30 - type: Transform - - devices: - - 4842 - - 4843 - - 4844 - - 21926 - - 6102 - - 6103 - - 6104 - - 6109 - - 6108 - type: DeviceList -- uid: 21929 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 1.5,24.5 - parent: 30 - type: Transform - - devices: - - 6105 - - 6106 - - 6107 - - 21931 - - 5653 - - 5654 - - 6094 - - 6093 - - 6092 - type: DeviceList -- uid: 21930 - type: AirAlarm - components: - - pos: -5.5,28.5 - parent: 30 - type: Transform - - devices: - - 6105 - - 6106 - - 6107 - - 21931 - - 5653 - - 5654 - - 6094 - - 6093 - - 6092 - - 6113 - - 6112 - type: DeviceList -- uid: 21931 - type: AirSensor - components: - - pos: -2.5,26.5 - parent: 30 - type: Transform -- uid: 21932 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 1.5,19.5 - parent: 30 - type: Transform - - devices: - - 6122 - - 21933 - - 6123 - type: DeviceList -- uid: 21933 - type: AirSensor - components: - - pos: -1.5,20.5 - parent: 30 - type: Transform -- uid: 21934 - type: ReinforcedGirder - components: - - pos: -2.5,24.5 - parent: 30 - type: Transform -- uid: 21935 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -13.5,30.5 - parent: 30 - type: Transform - - devices: - - 21938 - - 5649 - - 5650 - type: DeviceList -- uid: 21936 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -5.5,30.5 - parent: 30 - type: Transform - - devices: - - 5651 - - 5652 - - 21937 - type: DeviceList -- uid: 21937 - type: AirSensor - components: - - pos: -4.5,32.5 - parent: 30 - type: Transform -- uid: 21938 - type: AirSensor - components: - - pos: -14.5,32.5 - parent: 30 - type: Transform -- uid: 21939 - type: AirAlarm - components: - - pos: 1.5,34.5 - parent: 30 - type: Transform - - devices: - - 6223 - - 6222 - - 21940 - - 21674 - type: DeviceList -- uid: 21940 - type: AirSensor - components: - - pos: -1.5,32.5 - parent: 30 - type: Transform -- uid: 21941 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -2.5,39.5 - parent: 30 - type: Transform - - devices: - - 21943 - - 5651 - - 5652 - - 5649 - - 5650 - - 6204 - - 6205 - type: DeviceList -- uid: 21942 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -2.5,40.5 - parent: 30 - type: Transform - - devices: - - 21943 - - 5651 - - 5652 - - 5649 - - 5650 - type: DeviceList -- uid: 21943 - type: AirSensor - components: - - pos: -5.5,40.5 - parent: 30 - type: Transform -- uid: 21944 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -13.5,33.5 - parent: 30 - type: Transform - - devices: - - 21945 - - 6213 - - 6214 - type: DeviceList -- uid: 21945 - type: AirSensor - components: - - pos: -9.5,31.5 - parent: 30 - type: Transform -- uid: 21946 - type: AirAlarm - components: - - pos: -17.5,38.5 - parent: 30 - type: Transform - - devices: - - 21947 - - 6246 - - 6266 - - 6239 - - 6265 - - 6268 - - 6245 - type: DeviceList -- uid: 21947 - type: AirSensor - components: - - pos: -17.5,37.5 - parent: 30 - type: Transform -- uid: 21948 - type: GeneratorUranium - components: - - pos: 0.5,84.5 - parent: 30 - type: Transform -- uid: 21949 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 0.5,84.5 - parent: 30 - type: Transform -- uid: 21950 - type: CableHV - components: - - pos: 0.5,84.5 - parent: 30 - type: Transform -- uid: 21951 - type: CableApcExtension - components: - - pos: -0.5,59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21952 - type: CableApcExtension - components: - - pos: -0.5,58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21953 - type: CableApcExtension - components: - - pos: -0.5,57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21954 - type: CableApcExtension - components: - - pos: -0.5,56.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21955 - type: CableApcExtension - components: - - pos: -0.5,55.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21956 - type: CableApcExtension - components: - - pos: -0.5,54.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21957 - type: CableApcExtension - components: - - pos: -0.5,53.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21958 - type: CableApcExtension - components: - - pos: -0.5,52.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21959 - type: CableApcExtension - components: - - pos: -0.5,51.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21960 - type: CableApcExtension - components: - - pos: -0.5,50.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21961 - type: CableApcExtension - components: - - pos: -0.5,49.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21962 - type: CableApcExtension - components: - - pos: -0.5,48.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21963 - type: CableApcExtension - components: - - pos: -0.5,47.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21964 - type: CableApcExtension - components: - - pos: -0.5,46.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21965 - type: CableApcExtension - components: - - pos: -0.5,45.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21966 - type: CableApcExtension - components: - - pos: -0.5,44.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21967 - type: Catwalk - components: - - pos: -0.5,43.5 - parent: 30 - type: Transform -- uid: 21968 - type: CableApcExtension - components: - - pos: -0.5,42.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21969 - type: CableApcExtension - components: - - pos: -0.5,41.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21970 - type: PortableScrubber - components: - - pos: 40.5,14.5 - parent: 30 - type: Transform -- uid: 21971 - type: Catwalk - components: - - pos: -0.5,44.5 - parent: 30 - type: Transform -- uid: 21972 - type: Catwalk - components: - - pos: -0.5,45.5 - parent: 30 - type: Transform -- uid: 21973 - type: Catwalk - components: - - pos: -0.5,46.5 - parent: 30 - type: Transform -- uid: 21974 - type: Catwalk - components: - - pos: -0.5,47.5 - parent: 30 - type: Transform -- uid: 21975 - type: Catwalk - components: - - pos: -0.5,48.5 - parent: 30 - type: Transform -- uid: 21976 - type: Catwalk - components: - - pos: -0.5,49.5 - parent: 30 - type: Transform -- uid: 21977 - type: Catwalk - components: - - pos: -0.5,50.5 - parent: 30 - type: Transform -- uid: 21978 - type: Catwalk - components: - - pos: -0.5,51.5 - parent: 30 - type: Transform -- uid: 21979 - type: Catwalk - components: - - pos: -0.5,52.5 - parent: 30 - type: Transform -- uid: 21980 - type: Catwalk - components: - - pos: -0.5,53.5 - parent: 30 - type: Transform -- uid: 21981 - type: Catwalk - components: - - pos: -0.5,54.5 - parent: 30 - type: Transform -- uid: 21982 - type: Catwalk - components: - - pos: -0.5,55.5 - parent: 30 - type: Transform -- uid: 21983 - type: Catwalk - components: - - pos: -0.5,56.5 - parent: 30 - type: Transform -- uid: 21984 - type: Catwalk - components: - - pos: -0.5,57.5 - parent: 30 - type: Transform -- uid: 21985 - type: Catwalk - components: - - pos: -0.5,58.5 - parent: 30 - type: Transform -- uid: 21986 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -0.5,37.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21987 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21988 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,39.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21989 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,40.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21990 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,41.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21991 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,42.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21992 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,43.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21993 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,44.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21994 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,45.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21995 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,46.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21996 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,47.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21997 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21998 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,49.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21999 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,50.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22000 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,51.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22001 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,52.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22002 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,53.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22003 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,54.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22004 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,55.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22005 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,56.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22006 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,57.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22007 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22008 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,59.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22009 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22010 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,61.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22011 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,62.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22012 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,63.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22013 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,64.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22014 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,65.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22015 - type: GasPipeStraight - components: - - pos: -0.5,66.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22016 - type: GasPipeStraight - components: - - pos: -0.5,67.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22017 - type: GasPipeStraight - components: - - pos: -0.5,68.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22018 - type: GasPipeStraight - components: - - pos: -0.5,69.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22019 - type: GasPipeStraight - components: - - pos: -0.5,70.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22020 - type: GasPipeStraight - components: - - pos: -0.5,71.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22021 - type: GasPipeStraight - components: - - pos: -0.5,72.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22022 - type: GasPipeStraight - components: - - pos: -0.5,73.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22023 - type: GasVentPump - components: - - pos: -0.5,74.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22024 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 0.5,65.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22025 - type: GasVentPump - components: - - pos: -1.5,38.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22026 - type: PoweredlightLED - components: - - rot: 3.141592653589793 rad - pos: -1.5,42.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22027 - type: PoweredlightLED - components: - - pos: 0.5,59.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22028 - type: AirAlarm - components: - - pos: 27.5,41.5 - parent: 30 - type: Transform - - devices: - - 22041 - - invalid - - 6536 - - 6537 - - 6538 - - 12605 - - 12606 - type: DeviceList -- uid: 22029 - type: AirSensor - components: - - pos: 20.5,26.5 - parent: 30 - type: Transform -- uid: 22030 - type: AirAlarm - components: - - pos: 17.5,28.5 - parent: 30 - type: Transform - - devices: - - 6539 - - 6540 - - 6541 - - 22029 - - 6536 - - 6537 - - 6538 - - 12539 - - 12538 - - 11275 - type: DeviceList -- uid: 22031 - type: FireAlarm - components: - - pos: 15.5,28.5 - parent: 30 - type: Transform - - devices: - - 6539 - - 6540 - - 6541 - - 22029 - - 6536 - - 6537 - - 6538 - - 11275 - type: DeviceList -- uid: 22032 - type: AirSensor - components: - - pos: 5.5,39.5 - parent: 30 - type: Transform -- uid: 22033 - type: FireAlarm - components: - - pos: 7.5,40.5 - parent: 30 - type: Transform - - devices: - - 6285 - - 22032 - type: DeviceList -- uid: 22034 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 12.5,35.5 - parent: 30 - type: Transform - - devices: - - 6091 - - 6090 - - 6089 - - 22036 - - 6285 - type: DeviceList -- uid: 22035 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 6.5,35.5 - parent: 30 - type: Transform - - devices: - - 6091 - - 6090 - - 6089 - - 22036 - - 6285 - - 12490 - - 12491 - type: DeviceList -- uid: 22036 - type: AirSensor - components: - - pos: 9.5,29.5 - parent: 30 - type: Transform -- uid: 22037 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 7.5,23.5 - parent: 30 - type: Transform - - devices: - - 12621 - - 12620 - - 12622 - - 6092 - - 6093 - - 6094 - - 6091 - - 6090 - - 6089 - - 6539 - - 6540 - - 6541 - - 22039 - type: DeviceList -- uid: 22038 - type: AirAlarm - components: - - pos: 11.5,28.5 - parent: 30 - type: Transform - - devices: - - 12621 - - 12620 - - 12622 - - 6092 - - 6093 - - 6094 - - 6091 - - 6090 - - 6089 - - 6539 - - 6540 - - 6541 - - 22039 - - 12537 - - 12536 - type: DeviceList -- uid: 22039 - type: AirSensor - components: - - pos: 9.5,22.5 - parent: 30 - type: Transform -- uid: 22040 - type: FireAlarm - components: - - pos: 22.5,41.5 - parent: 30 - type: Transform - - devices: - - 22041 - - invalid - - 6536 - - 6537 - - 6538 - type: DeviceList -- uid: 22041 - type: AirSensor - components: - - pos: 21.5,38.5 - parent: 30 - type: Transform -- uid: 22042 - type: AirSensor - components: - - pos: 32.5,36.5 - parent: 30 - type: Transform -- uid: 22043 - type: AirAlarm - components: - - pos: 33.5,40.5 - parent: 30 - type: Transform - - devices: - - 22042 - - 13799 - - 13788 - type: DeviceList -- uid: 22044 - type: AirSensor - components: - - pos: 35.5,40.5 - parent: 30 - type: Transform -- uid: 22045 - type: AirAlarm - components: - - pos: 40.5,42.5 - parent: 30 - type: Transform - - devices: - - 21553 - - 13593 - - 22044 - type: DeviceList -- uid: 22046 - type: AirSensor - components: - - pos: 43.5,34.5 - parent: 30 - type: Transform -- uid: 22047 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 34.5,33.5 - parent: 30 - type: Transform - - devices: - - 22046 - - 21549 - - 21545 - type: DeviceList -- uid: 22048 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 16.5,19.5 - parent: 30 - type: Transform - - devices: - - 22050 - - 11275 - - 12664 - - 12665 - - 12666 - - 20952 - - 20953 - - 20954 - - 13084 - - 13004 - type: DeviceList -- uid: 22049 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 24.5,17.5 - parent: 30 - type: Transform - - devices: - - 22050 - - 11275 - - 12664 - - 12665 - - 12666 - - 20952 - - 20953 - - 20954 - type: DeviceList -- uid: 22050 - type: AirSensor - components: - - pos: 18.5,21.5 - parent: 30 - type: Transform -- uid: 22051 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 30.5,17.5 - parent: 30 - type: Transform - - devices: - - 20952 - - 20953 - - 20954 - - 22053 - type: DeviceList -- uid: 22052 - type: AirAlarm - components: - - pos: 30.5,24.5 - parent: 30 - type: Transform - - devices: - - 20952 - - 20953 - - 20954 - - 22053 - - 12959 - - 12813 - type: DeviceList -- uid: 22053 - type: AirSensor - components: - - pos: 32.5,19.5 - parent: 30 - type: Transform -- uid: 22054 - type: AirAlarm - components: - - pos: 19.5,13.5 - parent: 30 - type: Transform - - devices: - - 9161 - - 12665 - - 12664 - - 12666 - - 12858 - - 13391 - - 22056 - - 13078 - - 12983 - - 13085 - - 13002 - - 13086 - - 13003 - type: DeviceList -- uid: 22055 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 18.5,9.5 - parent: 30 - type: Transform - - devices: - - 9161 - - 12665 - - 12664 - - 12666 - - 12858 - - 13391 - - 22056 - type: DeviceList -- uid: 22056 - type: AirSensor - components: - - pos: 20.5,11.5 - parent: 30 - type: Transform -- uid: 22057 - type: AirAlarm - components: - - pos: 26.5,17.5 - parent: 30 - type: Transform - - devices: - - 22058 - - 13360 - - 12824 - type: DeviceList -- uid: 22058 - type: AirSensor - components: - - pos: 27.5,13.5 - parent: 30 - type: Transform -- uid: 22059 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 29.5,7.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22060 - type: FireAlarm - components: - - pos: 31.5,10.5 - parent: 30 - type: Transform - - devices: - - 12858 - - 13391 - - 22061 - type: DeviceList -- uid: 22061 - type: AirSensor - components: - - pos: 32.5,8.5 - parent: 30 - type: Transform -- uid: 22062 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 34.5,10.5 - parent: 30 - type: Transform - - devices: - - 22063 - type: DeviceList -- uid: 22063 - type: AirSensor - components: - - pos: 37.5,12.5 - parent: 30 - type: Transform -- uid: 22064 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 11.5,9.5 - parent: 30 - type: Transform - - devices: - - 22 - - 21 - - 20 - - 598 - - 599 - - 12623 - - 12626 - - 12624 - - 22066 - type: DeviceList -- uid: 22065 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 11.5,8.5 - parent: 30 - type: Transform - - devices: - - 22 - - 21 - - 20 - - 598 - - 599 - - 12623 - - 12626 - - 12624 - - 22066 - - 11223 - - 11224 - type: DeviceList -- uid: 22066 - type: AirSensor - components: - - pos: 9.5,5.5 - parent: 30 - type: Transform -- uid: 22067 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 11.5,12.5 - parent: 30 - type: Transform - - devices: - - 12623 - - 12624 - - 12626 - - 22069 - - 12622 - - 12621 - - 12620 - - 13335 - - 13336 - type: DeviceList -- uid: 22068 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 7.5,13.5 - parent: 30 - type: Transform - - devices: - - 12623 - - 12624 - - 12626 - - 22069 - - 12622 - - 12621 - - 12620 - type: DeviceList -- uid: 22069 - type: AirSensor - components: - - pos: 9.5,13.5 - parent: 30 - type: Transform -- uid: 22070 - type: AirAlarm - components: - - pos: 15.5,19.5 - parent: 30 - type: Transform - - devices: - - 13080 - - 22071 - - 13006 - - 9161 - type: DeviceList -- uid: 22071 - type: AirSensor - components: - - pos: 13.5,17.5 - parent: 30 - type: Transform -- uid: 22072 - type: AirSensor - components: - - pos: -24.5,12.5 - parent: 30 - type: Transform -- uid: 22073 - type: AirAlarm - components: - - pos: -25.5,14.5 - parent: 30 - type: Transform - - devices: - - 320 - - 21456 - - 22072 - - 3357 - - 3358 - type: DeviceList -- uid: 22074 - type: FireAlarm - components: - - pos: -27.5,14.5 - parent: 30 - type: Transform - - devices: - - 320 - - 21456 - - 22072 - type: DeviceList -- uid: 22075 - type: AirAlarm - components: - - pos: -14.5,12.5 - parent: 30 - type: Transform - - devices: - - 21456 - - 20382 - - 20381 - - 20380 - - 20379 - - 20378 - - 20377 - - 22077 - - 3400 - - 3401 - type: DeviceList -- uid: 22076 - type: FireAlarm - components: - - pos: -11.5,12.5 - parent: 30 - type: Transform - - devices: - - 21456 - - 20382 - - 20381 - - 20380 - - 20379 - - 20378 - - 20377 - - 22077 - type: DeviceList -- uid: 22077 - type: AirSensor - components: - - pos: -13.5,9.5 - parent: 30 - type: Transform -- uid: 22078 - type: AirAlarm - components: - - pos: -8.5,15.5 - parent: 30 - type: Transform - - devices: - - 3482 - - 22079 - - 3479 - type: DeviceList -- uid: 22079 - type: AirSensor - components: - - pos: -10.5,13.5 - parent: 30 - type: Transform -- uid: 22080 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 1.5,13.5 - parent: 30 - type: Transform - - devices: - - 22082 - - 645 - - 646 - - 647 - - 648 - - 649 - - 650 - - 651 - type: DeviceList -- uid: 22081 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 1.5,14.5 - parent: 30 - type: Transform - - devices: - - 22082 - - 645 - - 646 - - 647 - - 648 - - 649 - - 650 - - 651 - - 3485 - - 3486 - type: DeviceList -- uid: 22082 - type: AirSensor - components: - - pos: -5.5,15.5 - parent: 30 - type: Transform -- uid: 22083 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 3.5,12.5 - parent: 30 - type: Transform - - devices: - - 22084 - - 3484 - - 3481 - type: DeviceList -- uid: 22084 - type: AirSensor - components: - - pos: 3.5,15.5 - parent: 30 - type: Transform -- uid: 22085 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 30 - type: Transform - - devices: - - 20382 - - 20381 - - 20380 - - 20379 - - 20378 - - 20377 - - 645 - - 646 - - 647 - - 648 - - 649 - - 650 - - 651 - - 598 - - 599 - - 597 - - 596 - - 602 - - 601 - - 600 - - 22086 - type: DeviceList -- uid: 22086 - type: AirSensor - components: - - pos: -2.5,8.5 - parent: 30 - type: Transform -- uid: 22087 - type: PosterContrabandKosmicheskayaStantsiya - components: - - pos: 27.5,-8.5 - parent: 30 - type: Transform -- uid: 22088 - type: RandomPosterLegit - components: - - pos: 10.5,-4.5 - parent: 30 - type: Transform -- uid: 22089 - type: WeaponTurretSyndicateBroken - components: - - pos: -4.5,79.5 - parent: 30 - type: Transform -- uid: 22090 - type: WeaponTurretSyndicateBroken - components: - - pos: 3.5,79.5 - parent: 30 - type: Transform -- uid: 22091 - type: WeaponTurretSyndicateBroken - components: - - pos: 4.5,83.5 - parent: 30 - type: Transform -- uid: 22092 - type: WeaponTurretSyndicateBroken - components: - - pos: 3.5,87.5 - parent: 30 - type: Transform -- uid: 22093 - type: WeaponTurretSyndicateBroken - components: - - pos: -4.5,87.5 - parent: 30 - type: Transform -- uid: 22094 - type: WeaponTurretSyndicateBroken - components: - - pos: -5.5,83.5 - parent: 30 - type: Transform -- uid: 22095 - type: WeaponTurretSyndicateBroken - components: - - pos: -3.5,71.5 - parent: 30 - type: Transform -- uid: 22096 - type: WeaponTurretSyndicateBroken - components: - - pos: -3.5,69.5 - parent: 30 - type: Transform -- uid: 22097 - type: WeaponTurretSyndicateBroken - components: - - pos: 2.5,69.5 - parent: 30 - type: Transform -- uid: 22098 - type: WeaponTurretSyndicateBroken - components: - - pos: 2.5,71.5 - parent: 30 - type: Transform -- uid: 22099 - type: HighPowerMicroLaserStockPart - components: - - pos: 2.731801,21.495958 - parent: 30 - type: Transform -- uid: 22100 - type: ComputerRadar - components: - - pos: 33.5,-16.5 - parent: 30 - type: Transform -- uid: 22101 - type: CableApcExtension - components: - - pos: 2.5,-21.5 - parent: 30 - type: Transform -- uid: 22102 - type: PosterContrabandBustyBackdoorExoBabes6 - components: - - pos: -31.5,14.5 - parent: 30 - type: Transform -- uid: 22103 - type: PaintingOldGuitarist - components: - - pos: -21.5,47.5 - parent: 30 - type: Transform -- uid: 22104 - type: RandomPainting - components: - - pos: -19.5,33.5 - parent: 30 - type: Transform -- uid: 22105 - type: PaintingOlympia - components: - - pos: 18.5,59.5 - parent: 30 - type: Transform -- uid: 22106 - type: WardrobeCargoFilled - components: - - pos: 19.5,-8.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22107 - type: CableApcExtension - components: - - pos: -82.5,-43.5 - parent: 30 - type: Transform -- uid: 22108 - type: Mirror - components: - - rot: 3.141592653589793 rad - pos: -27.5,40.5 - parent: 30 - type: Transform -- uid: 22109 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 40.5,26.5 - parent: 30 - type: Transform -- uid: 22110 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 41.5,26.5 - parent: 30 - type: Transform -- uid: 22111 - type: DisposalPipe - components: - - pos: 42.5,27.5 - parent: 30 - type: Transform -- uid: 22112 - type: DisposalPipe - components: - - pos: 42.5,28.5 - parent: 30 - type: Transform -- uid: 22113 - type: DisposalPipe - components: - - pos: 42.5,29.5 - parent: 30 - type: Transform -- uid: 22114 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 43.5,30.5 - parent: 30 - type: Transform -- uid: 22115 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 44.5,30.5 - parent: 30 - type: Transform -- uid: 22116 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 45.5,30.5 - parent: 30 - type: Transform -- uid: 22117 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 35.5,25.5 - parent: 30 - type: Transform -- uid: 22118 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 35.5,26.5 - parent: 30 - type: Transform -- uid: 22119 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 42.5,26.5 - parent: 30 - type: Transform -- uid: 22120 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 42.5,30.5 - parent: 30 - type: Transform -- uid: 22121 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 46.5,30.5 - parent: 30 - type: Transform -- uid: 22122 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,31.5 - parent: 30 - type: Transform -- uid: 22123 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,32.5 - parent: 30 - type: Transform -- uid: 22124 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,33.5 - parent: 30 - type: Transform -- uid: 22125 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,34.5 - parent: 30 - type: Transform -- uid: 22126 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,35.5 - parent: 30 - type: Transform -- uid: 22127 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,36.5 - parent: 30 - type: Transform -- uid: 22128 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,37.5 - parent: 30 - type: Transform -- uid: 22129 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,38.5 - parent: 30 - type: Transform -- uid: 22130 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,39.5 - parent: 30 - type: Transform -- uid: 22131 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,40.5 - parent: 30 - type: Transform -- uid: 22132 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,41.5 - parent: 30 - type: Transform -- uid: 22133 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,42.5 - parent: 30 - type: Transform -- uid: 22134 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,43.5 - parent: 30 - type: Transform -- uid: 22135 - type: DisposalBend - components: - - pos: 46.5,44.5 - parent: 30 - type: Transform -- uid: 22136 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 33.5,44.5 - parent: 30 - type: Transform -- uid: 22137 - type: DisposalBend - components: - - pos: 33.5,45.5 - parent: 30 - type: Transform -- uid: 22138 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 30.5,45.5 - parent: 30 - type: Transform -- uid: 22139 - type: DisposalBend - components: - - pos: 30.5,53.5 - parent: 30 - type: Transform -- uid: 22140 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 19.5,53.5 - parent: 30 - type: Transform -- uid: 22141 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 19.5,49.5 - parent: 30 - type: Transform -- uid: 22142 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 16.5,49.5 - parent: 30 - type: Transform -- uid: 22143 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,49.5 - parent: 30 - type: Transform -- uid: 22144 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,49.5 - parent: 30 - type: Transform -- uid: 22145 - type: DisposalPipe - components: - - pos: 19.5,50.5 - parent: 30 - type: Transform -- uid: 22146 - type: DisposalPipe - components: - - pos: 19.5,51.5 - parent: 30 - type: Transform -- uid: 22147 - type: DisposalPipe - components: - - pos: 19.5,52.5 - parent: 30 - type: Transform -- uid: 22148 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,53.5 - parent: 30 - type: Transform -- uid: 22149 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,53.5 - parent: 30 - type: Transform -- uid: 22150 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 22.5,53.5 - parent: 30 - type: Transform -- uid: 22151 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,53.5 - parent: 30 - type: Transform -- uid: 22152 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,53.5 - parent: 30 - type: Transform -- uid: 22153 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,53.5 - parent: 30 - type: Transform -- uid: 22154 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,53.5 - parent: 30 - type: Transform -- uid: 22155 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,53.5 - parent: 30 - type: Transform -- uid: 22156 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,53.5 - parent: 30 - type: Transform -- uid: 22157 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,53.5 - parent: 30 - type: Transform -- uid: 22158 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,52.5 - parent: 30 - type: Transform -- uid: 22159 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,51.5 - parent: 30 - type: Transform -- uid: 22160 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,50.5 - parent: 30 - type: Transform -- uid: 22161 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,49.5 - parent: 30 - type: Transform -- uid: 22162 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,48.5 - parent: 30 - type: Transform -- uid: 22163 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,47.5 - parent: 30 - type: Transform -- uid: 22164 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 30.5,46.5 - parent: 30 - type: Transform -- uid: 22165 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,45.5 - parent: 30 - type: Transform -- uid: 22166 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,45.5 - parent: 30 - type: Transform -- uid: 22167 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,44.5 - parent: 30 - type: Transform -- uid: 22168 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,44.5 - parent: 30 - type: Transform -- uid: 22169 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,44.5 - parent: 30 - type: Transform -- uid: 22170 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,44.5 - parent: 30 - type: Transform -- uid: 22171 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,44.5 - parent: 30 - type: Transform -- uid: 22172 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,44.5 - parent: 30 - type: Transform -- uid: 22173 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 40.5,44.5 - parent: 30 - type: Transform -- uid: 22174 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 41.5,44.5 - parent: 30 - type: Transform -- uid: 22175 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 42.5,44.5 - parent: 30 - type: Transform -- uid: 22176 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 43.5,44.5 - parent: 30 - type: Transform -- uid: 22177 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 44.5,44.5 - parent: 30 - type: Transform -- uid: 22178 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 45.5,44.5 - parent: 30 - type: Transform -- uid: 22179 - type: DisposalPipe - components: - - pos: 16.5,50.5 - parent: 30 - type: Transform -- uid: 22180 - type: DisposalPipe - components: - - pos: 16.5,51.5 - parent: 30 - type: Transform -- uid: 22181 - type: DisposalPipe - components: - - pos: 16.5,52.5 - parent: 30 - type: Transform -- uid: 22182 - type: DisposalPipe - components: - - pos: 16.5,53.5 - parent: 30 - type: Transform -- uid: 22183 - type: DisposalPipe - components: - - pos: 16.5,54.5 - parent: 30 - type: Transform -- uid: 22184 - type: DisposalPipe - components: - - pos: 16.5,55.5 - parent: 30 - type: Transform -- uid: 22185 - type: DisposalBend - components: - - pos: 16.5,56.5 - parent: 30 - type: Transform -- uid: 22186 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,56.5 - parent: 30 - type: Transform -- uid: 22187 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 14.5,56.5 - parent: 30 - type: Transform -- uid: 22188 - type: HospitalCurtainsOpen - components: - - pos: 33.5,30.5 - parent: 30 - type: Transform -- uid: 22189 - type: HospitalCurtainsOpen - components: - - pos: 34.5,30.5 - parent: 30 - type: Transform -- uid: 22190 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 34.5,30.5 - parent: 30 - type: Transform -- uid: 22191 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 33.5,30.5 - parent: 30 - type: Transform -- uid: 22192 - type: MaterialCloth - components: - - pos: 33.5,28.5 - parent: 30 - type: Transform -- uid: 22193 - type: Rack - components: - - pos: 33.5,28.5 - parent: 30 - type: Transform -- uid: 22194 - type: PlushieSharkPink - components: - - pos: -54.4992,-66.45244 - parent: 30 - type: Transform -- uid: 22195 - type: RandomPainting - components: - - pos: -71.5,-50.5 - parent: 30 - type: Transform -- uid: 22196 - type: AirlockGlass - components: - - pos: -69.5,-54.5 - parent: 30 - type: Transform -- uid: 22197 - type: Grille - components: - - pos: -69.5,-56.5 - parent: 30 - type: Transform -- uid: 22198 - type: Grille - components: - - pos: -69.5,-52.5 - parent: 30 - type: Transform -- uid: 22199 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: -74.5,-55.5 - parent: 30 - type: Transform -- uid: 22200 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: -74.5,-55.5 - parent: 30 - type: Transform -- uid: 22201 - type: ClothingUniformJumpsuitMonasticRobeDark - components: - - pos: -53.516655,-57.21685 - parent: 30 - type: Transform -- uid: 22202 - type: ClothingUniformJumpsuitMonasticRobeDark - components: - - pos: -53.34478,-57.326225 - parent: 30 - type: Transform -- uid: 22203 - type: ClothingUniformJumpsuitMonasticRobeLight - components: - - pos: -53.547905,-53.201225 - parent: 30 - type: Transform -- uid: 22204 - type: ClothingUniformJumpsuitMonasticRobeLight - components: - - pos: -53.391655,-53.3106 - parent: 30 - type: Transform -- uid: 22205 - type: ClothingOuterNunRobe - components: - - pos: -75.51578,-47.49344 - parent: 30 - type: Transform -- uid: 22206 - type: ClothingOuterNunRobe - components: - - pos: -75.60953,-47.39969 - parent: 30 - type: Transform -- uid: 22207 - type: ClothingShoesWizard - components: - - pos: -52.674736,-57.84021 - parent: 30 - type: Transform -- uid: 22208 - type: ClothingShoesWizard - components: - - pos: -52.643486,-53.879913 - parent: 30 - type: Transform -- uid: 22209 - type: ClothingHeadHatHoodNunHood - components: - - pos: -75.27017,-47.271687 - parent: 30 - type: Transform -- uid: 22210 - type: ClothingHeadHatHoodNunHood - components: - - pos: -75.44205,-47.16231 - parent: 30 - type: Transform -- uid: 22211 - type: Grille - components: - - pos: -69.5,-60.5 - parent: 30 - type: Transform -- uid: 22212 - type: Grille - components: - - pos: -69.5,-59.5 - parent: 30 - type: Transform -- uid: 22213 - type: APCBasic - components: - - pos: -79.5,-57.5 - parent: 30 - type: Transform -- uid: 22214 - type: FloraTree03 - components: - - pos: -63.548233,-52.495842 - parent: 30 - type: Transform -- uid: 22215 - type: FloraTreeLarge03 - components: - - pos: -65.83857,-27.877716 - parent: 30 - type: Transform -- uid: 22216 - type: WallSolid - components: - - pos: -60.5,-68.5 - parent: 30 - type: Transform -- uid: 22217 - type: PlushieSharkPink - components: - - pos: 5.484742,-11.393534 - parent: 30 - type: Transform -- uid: 22218 - type: PlushieSharkGrey - components: - - pos: -54.56163,13.394278 - parent: 30 - type: Transform -- uid: 22219 - type: PowerCellRecharger - components: - - pos: 27.5,-7.5 - parent: 30 - type: Transform -- uid: 22220 - type: FlashlightLantern - components: - - pos: -39.56788,9.504957 - parent: 30 - type: Transform -- uid: 22221 - type: FlashlightLantern - components: - - pos: -16.60056,20.490124 - parent: 30 - type: Transform -- uid: 22222 - type: FlashlightLantern - components: - - pos: 25.45056,31.504477 - parent: 30 - type: Transform -- uid: 22223 - type: GeneratorRTG - components: - - pos: -67.5,-64.5 - parent: 30 - type: Transform -- uid: 22224 - type: ClosetFireFilled - components: - - pos: 33.5,20.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22225 - type: RandomPosterLegit - components: - - pos: -29.5,11.5 - parent: 30 - type: Transform -- uid: 22226 - type: RandomPosterLegit - components: - - pos: -29.5,9.5 - parent: 30 - type: Transform -- uid: 22227 - type: CableApcExtension - components: - - pos: -36.5,62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22228 - type: CableApcExtension - components: - - pos: -39.5,62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22229 - type: CableApcExtension - components: - - pos: -40.5,62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22230 - type: CableApcExtension - components: - - pos: -41.5,62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22231 - type: IntercomAll - components: - - rot: 3.141592653589793 rad - pos: -21.5,33.5 - parent: 30 - type: Transform -- uid: 22232 - type: IntercomAll - components: - - pos: -0.5,36.5 - parent: 30 - type: Transform -- uid: 22233 - type: MachineArtifactAnalyzer - components: - - pos: 36.5,12.5 - parent: 30 - type: Transform -- uid: 22234 - type: RandomArtifactSpawner - components: - - pos: 37.5,12.5 - parent: 30 - type: Transform -- uid: 22235 - type: WindoorScienceLocked - components: - - pos: 32.5,18.5 - parent: 30 - type: Transform -- uid: 22236 - type: RandomArtifactSpawner20 - components: - - pos: 42.5,-74.5 - parent: 30 - type: Transform -- uid: 22237 - type: CableMV - components: - - pos: 33.5,8.5 - parent: 30 - type: Transform -- uid: 22238 - type: CableMV - components: - - pos: 34.5,8.5 - parent: 30 - type: Transform -- uid: 22239 - type: CableMV - components: - - pos: 35.5,8.5 - parent: 30 - type: Transform -- uid: 22240 - type: CableMV - components: - - pos: 36.5,8.5 - parent: 30 - type: Transform -- uid: 22241 - type: CableMV - components: - - pos: 37.5,8.5 - parent: 30 - type: Transform -- uid: 22242 - type: CableMV - components: - - pos: 38.5,8.5 - parent: 30 - type: Transform -- uid: 22243 - type: CableMV - components: - - pos: 39.5,8.5 - parent: 30 - type: Transform -- uid: 22244 - type: CableMV - components: - - pos: 40.5,8.5 - parent: 30 - type: Transform -- uid: 22245 - type: CableMV - components: - - pos: 40.5,9.5 - parent: 30 - type: Transform -- uid: 22246 - type: CableMV - components: - - pos: 40.5,10.5 - parent: 30 - type: Transform -- uid: 22247 - type: CableMV - components: - - pos: 41.5,10.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22248 - type: CableMV - components: - - pos: -5.5,10.5 - parent: 30 - type: Transform -- uid: 22249 - type: CableMV - components: - - pos: -4.5,10.5 - parent: 30 - type: Transform -- uid: 22250 - type: CableMV - components: - - pos: -3.5,10.5 - parent: 30 - type: Transform -- uid: 22251 - type: CableMV - components: - - pos: -2.5,10.5 - parent: 30 - type: Transform -- uid: 22252 - type: CableMV - components: - - pos: -1.5,10.5 - parent: 30 - type: Transform -- uid: 22253 - type: CableMV - components: - - pos: -0.5,10.5 - parent: 30 - type: Transform -- uid: 22254 - type: CableMV - components: - - pos: 0.5,10.5 - parent: 30 - type: Transform -- uid: 22255 - type: CableMV - components: - - pos: 1.5,10.5 - parent: 30 - type: Transform -- uid: 22256 - type: CableMV - components: - - pos: 2.5,10.5 - parent: 30 - type: Transform -- uid: 22257 - type: CableMV - components: - - pos: 3.5,10.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22258 - type: CableApcExtension - components: - - pos: 3.5,10.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22259 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 3.5,10.5 - parent: 30 - type: Transform -- uid: 22260 - type: CableApcExtension - components: - - pos: 1.5,10.5 - parent: 30 - type: Transform -- uid: 22261 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-20.5 - parent: 30 - type: Transform -- uid: 22262 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: -47.48893,-21.265512 - parent: 30 - type: Transform -- uid: 22263 - type: MaterialDiamond1 - components: - - pos: 3.5019388,43.080338 - parent: 30 - type: Transform -- uid: 22264 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 42.5,16.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22265 - type: DrinkGoldschlagerBottleFull - components: - - pos: 7.564439,42.814713 - parent: 30 - type: Transform -- uid: 22266 - type: GasPipeBend - components: - - pos: 43.5,16.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22267 - type: GasPipeStraight - components: - - pos: 43.5,11.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22268 - type: GasPipeStraight - components: - - pos: 43.5,12.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22269 - type: GasPipeStraight - components: - - pos: 43.5,13.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22270 - type: GasPipeStraight - components: - - pos: 43.5,14.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22271 - type: GasPipeStraight - components: - - pos: 43.5,15.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22272 - type: CrateArtifactContainer - components: - - pos: 41.5,14.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22273 - type: Grille - components: - - pos: 38.5,16.5 - parent: 30 - type: Transform -- uid: 22274 - type: FaxMachineBase - components: - - pos: -5.5,43.5 - parent: 30 - type: Transform - - name: Bridge - type: FaxMachine -- uid: 22275 - type: FaxMachineCaptain - components: - - pos: -21.5,30.5 - parent: 30 - type: Transform - - name: Captain - type: FaxMachine -- uid: 22276 - type: FaxMachineBase - components: - - pos: -33.5,54.5 - parent: 30 - type: Transform - - name: Security - type: FaxMachine -- uid: 22277 - type: FaxMachineBase - components: - - pos: -82.5,-44.5 - parent: 30 - type: Transform - - name: Chaplain - type: FaxMachine -- uid: 22278 - type: FaxMachineBase - components: - - pos: 15.5,2.5 - parent: 30 - type: Transform - - name: Cargo - type: FaxMachine -- uid: 22279 - type: FaxMachineBase - components: - - pos: -30.5,-0.5 - parent: 30 - type: Transform - - name: Psych - type: FaxMachine -- uid: 22280 - type: ShuttersNormalOpen - components: - - pos: -13.5,-11.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22282 - type: SignalReceiver -- uid: 22281 - type: ShuttersNormalOpen - components: - - pos: -11.5,-11.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22282 - type: SignalReceiver -- uid: 22282 - type: SignalButton - components: - - pos: -10.5,-13.5 - parent: 30 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 22281 - - port: Toggle - uid: 22280 - - port: Toggle - uid: 9422 - type: SignalTransmitter -- uid: 22283 - type: IntercomSecurity - components: - - rot: 3.141592653589793 rad - pos: -49.5,55.5 - parent: 30 - type: Transform -- uid: 22284 - type: IntercomSecurity - components: - - rot: -1.5707963267948966 rad - pos: -27.5,49.5 - parent: 30 - type: Transform -- uid: 22285 - type: IntercomSecurity - components: - - rot: 1.5707963267948966 rad - pos: -49.5,44.5 - parent: 30 - type: Transform -- uid: 22286 - type: IntercomService - components: - - pos: -9.5,15.5 - parent: 30 - type: Transform -- uid: 22287 - type: IntercomScience - components: - - rot: -1.5707963267948966 rad - pos: 16.5,14.5 - parent: 30 - type: Transform -- uid: 22288 - type: IntercomScience - components: - - rot: -1.5707963267948966 rad - pos: 41.5,8.5 - parent: 30 - type: Transform -- uid: 22289 - type: IntercomScience - components: - - rot: 1.5707963267948966 rad - pos: 26.5,23.5 - parent: 30 - type: Transform -- uid: 22290 - type: IntercomEngineering - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-33.5 - parent: 30 - type: Transform -- uid: 22291 - type: IntercomEngineering - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-37.5 - parent: 30 - type: Transform -- uid: 22292 - type: IntercomMedical - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-17.5 - parent: 30 - type: Transform -- uid: 22293 - type: IntercomMedical - components: - - rot: 3.141592653589793 rad - pos: -36.5,-8.5 - parent: 30 - type: Transform -- uid: 22294 - type: IntercomMedical - components: - - rot: 3.141592653589793 rad - pos: -14.5,-11.5 - parent: 30 - type: Transform -- uid: 22295 - type: IntercomSupply - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-4.5 - parent: 30 - type: Transform -- uid: 22296 - type: IntercomSupply - components: - - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 30 - type: Transform -- uid: 22298 - type: Intercom - components: - - pos: 21.5,41.5 - parent: 30 - type: Transform -- uid: 22299 - type: Intercom - components: - - rot: 3.141592653589793 rad - pos: 41.5,31.5 - parent: 30 - type: Transform -- uid: 22300 - type: Intercom - components: - - pos: 49.5,20.5 - parent: 30 - type: Transform -- uid: 22301 - type: Intercom - components: - - pos: 3.5,9.5 - parent: 30 - type: Transform -- uid: 22302 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-43.5 - parent: 30 - type: Transform -- uid: 22303 - type: BooksBag - components: - - pos: -60.525063,-67.28237 - parent: 30 - type: Transform -- uid: 22304 - type: TableWood - components: - - pos: -54.5,-63.5 - parent: 30 - type: Transform -- uid: 22305 - type: TableWood - components: - - pos: -60.5,-63.5 - parent: 30 - type: Transform -- uid: 22306 - type: BookEscalation - components: - - pos: -54.57496,-63.325558 - parent: 30 - type: Transform -- uid: 22307 - type: BookEscalationSecurity - components: - - pos: -54.340584,-63.466183 - parent: 30 - type: Transform -- uid: 22308 - type: BookAtmosAirAlarms - components: - - pos: -60.65072,-63.356808 - parent: 30 - type: Transform -- uid: 22309 - type: BookAtmosDistro - components: - - pos: -60.36943,-63.3924 - parent: 30 - type: Transform -- uid: 22310 - type: BookAtmosVentsMore - components: - - pos: -60.68197,-63.450558 - parent: 30 - type: Transform -- uid: 22311 - type: BookAtmosWaste - components: - - pos: -60.353844,-63.575558 - parent: 30 - type: Transform -- uid: 22312 - type: ChemistryHotplate - components: - - pos: -9.5,-10.5 - parent: 30 - type: Transform -- uid: 22313 - type: MagazineRifleRubber - components: - - pos: -41.392807,56.42169 - parent: 30 - type: Transform -- uid: 22314 - type: MagazineRifleRubber - components: - - pos: -41.267807,56.42169 - parent: 30 - type: Transform -- uid: 22315 - type: WeaponLaserCarbinePractice - components: - - pos: -38.316597,60.345554 - parent: 30 - type: Transform -- uid: 22419 - type: RandomArtifactSpawner - components: - - pos: 27.5,-5.5 - parent: 30 - type: Transform -- uid: 22420 - type: CrateFilledSpawner - components: - - pos: 29.5,-5.5 - parent: 30 - type: Transform -- uid: 22421 - type: CrateFilledSpawner - components: - - pos: 23.5,-5.5 - parent: 30 - type: Transform -- uid: 22422 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: -38.5,22.5 - parent: 30 - type: Transform -- uid: 22423 - type: SpawnVendingMachineRestockFood - components: - - pos: -55.5,41.5 - parent: 30 - type: Transform -- uid: 22424 - type: ShuttersNormalOpen - components: - - pos: 4.5,28.5 - parent: 30 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21721 - type: SignalReceiver -- uid: 22425 - type: CloningConsoleComputerCircuitboard - components: - - pos: 5.53665,23.647667 - parent: 30 - type: Transform -- uid: 22426 - type: FlashlightLantern - components: - - pos: 30.519865,21.653843 - parent: 30 - type: Transform -- uid: 22427 - type: FlashlightLantern - components: - - pos: 45.491104,21.540049 - parent: 30 - type: Transform -- uid: 22428 - type: FlashlightLantern - components: - - pos: 17.456938,52.374535 - parent: 30 - type: Transform -- uid: 22429 - type: FlashlightLantern - components: - - pos: -27.468573,58.960808 - parent: 30 - type: Transform -- uid: 22430 - type: FlashlightLantern - components: - - pos: -37.504288,48.94012 - parent: 30 - type: Transform -- uid: 22431 - type: FlashlightLantern - components: - - pos: -39.51754,18.309746 - parent: 30 - type: Transform -- uid: 22432 - type: FlashlightLantern - components: - - pos: -31.47419,-7.313027 - parent: 30 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 22433 - type: FlashlightLantern - components: - - pos: 0.84980106,-44.601856 - parent: 30 - type: Transform -- uid: 22434 - type: FlashlightLantern - components: - - pos: 5.4311085,-26.280409 - parent: 30 - type: Transform -- uid: 22435 - type: FaxMachineBase - components: - - pos: -57.5,-63.5 - parent: 30 - type: Transform - - name: Library - type: FaxMachine -- uid: 22436 - type: MachineAnomalyGenerator - components: - - pos: 28.5,21.5 - parent: 30 - type: Transform - - enabled: False - type: AmbientSound -- uid: 22437 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,-18.5 - parent: 30 - type: Transform -- uid: 22438 - type: WallReinforced - components: - - pos: -41.5,-64.5 - parent: 30 - type: Transform -- uid: 22439 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 24.5,7.5 - parent: 30 - type: Transform -- uid: 22440 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 24.5,8.5 - parent: 30 - type: Transform -- uid: 22441 - type: ScanningModuleStockPart - components: - - pos: 2.452661,20.541075 - parent: 30 - type: Transform -- uid: 22442 - type: CrateEngineeringCableBulk - components: - - pos: 5.5,20.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22443 - type: Table - components: - - pos: 6.5,20.5 - parent: 30 - type: Transform -- uid: 22444 - type: Table - components: - - pos: 6.5,21.5 - parent: 30 - type: Transform -- uid: 22445 - type: PowerCellRecharger - components: - - pos: 6.5,21.5 - parent: 30 - type: Transform -- uid: 22446 - type: ToolboxElectricalFilled - components: - - pos: 6.4682865,20.6817 - parent: 30 - type: Transform -- uid: 22447 - type: ClothingEyesGlassesMeson - components: - - pos: 6.4995365,21.072325 - parent: 30 - type: Transform -- uid: 22448 - type: trayScanner - components: - - pos: 6.5776615,21.697325 - parent: 30 - type: Transform -- uid: 22449 - type: Rack - components: - - pos: 4.5,20.5 - parent: 30 - type: Transform -- uid: 22450 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 4.5,20.5 - parent: 30 - type: Transform -- uid: 22451 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 4.5,20.5 - parent: 30 - type: Transform -- uid: 22452 - type: WindowReinforcedDirectional - components: - - pos: 4.5,20.5 - parent: 30 - type: Transform -- uid: 22453 - type: TraversalDistorterMachineCircuitboard - components: - - pos: 4.515161,20.541075 - parent: 30 - type: Transform -- uid: 22454 - type: WindoorCommandLocked - components: - - rot: 3.141592653589793 rad - pos: 4.5,20.5 - parent: 30 - type: Transform -- uid: 22455 - type: SpawnPointResearchAssistant - components: - - pos: 21.5,10.5 - parent: 30 - type: Transform -- uid: 22456 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -19.5,43.5 - parent: 30 - type: Transform -- uid: 22457 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -18.5,43.5 - parent: 30 - type: Transform -- uid: 22458 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -18.5,43.5 - parent: 30 - type: Transform -- uid: 22459 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -18.5,42.5 - parent: 30 - type: Transform -- uid: 22460 - type: SignSecureMed - components: - - pos: -20.5,41.5 - parent: 30 - type: Transform -- uid: 22461 - type: SignSecureMed - components: - - pos: -18.5,41.5 - parent: 30 - type: Transform -- uid: 22462 - type: PoweredlightLED - components: - - rot: 1.5707963267948966 rad - pos: -20.5,43.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22463 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -19.5,43.5 - parent: 30 - type: Transform -- uid: 22464 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,43.5 - parent: 30 - type: Transform -- uid: 22465 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,43.5 - parent: 30 - type: Transform -- uid: 22466 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -16.5,43.5 - parent: 30 - type: Transform -- uid: 22467 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -16.5,46.5 - parent: 30 - type: Transform -- uid: 22468 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -14.5,46.5 - parent: 30 - type: Transform -- uid: 22469 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -14.5,48.5 - parent: 30 - type: Transform -- uid: 22470 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -0.5,48.5 - parent: 30 - type: Transform -- uid: 22471 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,44.5 - parent: 30 - type: Transform -- uid: 22472 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -16.5,45.5 - parent: 30 - type: Transform -- uid: 22473 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,46.5 - parent: 30 - type: Transform -- uid: 22474 - type: DisposalPipe - components: - - pos: -14.5,47.5 - parent: 30 - type: Transform -- uid: 22475 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,48.5 - parent: 30 - type: Transform -- uid: 22476 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,48.5 - parent: 30 - type: Transform -- uid: 22477 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,48.5 - parent: 30 - type: Transform -- uid: 22478 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,48.5 - parent: 30 - type: Transform -- uid: 22479 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,48.5 - parent: 30 - type: Transform -- uid: 22480 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,48.5 - parent: 30 - type: Transform -- uid: 22481 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,48.5 - parent: 30 - type: Transform -- uid: 22482 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,48.5 - parent: 30 - type: Transform -- uid: 22483 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,48.5 - parent: 30 - type: Transform -- uid: 22484 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,48.5 - parent: 30 - type: Transform -- uid: 22485 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,48.5 - parent: 30 - type: Transform -- uid: 22486 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -2.5,48.5 - parent: 30 - type: Transform -- uid: 22487 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,48.5 - parent: 30 - type: Transform -- uid: 22488 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,49.5 - parent: 30 - type: Transform -- uid: 22489 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,50.5 - parent: 30 - type: Transform -- uid: 22490 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,51.5 - parent: 30 - type: Transform -- uid: 22491 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,52.5 - parent: 30 - type: Transform -- uid: 22492 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,53.5 - parent: 30 - type: Transform -- uid: 22493 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,54.5 - parent: 30 - type: Transform -- uid: 22494 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,55.5 - parent: 30 - type: Transform -- uid: 22495 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,56.5 - parent: 30 - type: Transform -- uid: 22496 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,57.5 - parent: 30 - type: Transform -- uid: 22497 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,58.5 - parent: 30 - type: Transform -- uid: 22498 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,59.5 - parent: 30 - type: Transform -- uid: 22499 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,60.5 - parent: 30 - type: Transform -- uid: 22500 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,61.5 - parent: 30 - type: Transform -- uid: 22501 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,62.5 - parent: 30 - type: Transform -- uid: 22502 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,63.5 - parent: 30 - type: Transform -- uid: 22503 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -0.5,64.5 - parent: 30 - type: Transform -- uid: 22504 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 2.5,64.5 - parent: 30 - type: Transform -- uid: 22505 - type: DisposalUnit - components: - - pos: 2.5,64.5 - parent: 30 - type: Transform -- uid: 22506 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,64.5 - parent: 30 - type: Transform -- uid: 22507 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,64.5 - parent: 30 - type: Transform -- uid: 22508 - type: ClosetEmergencyFilledRandom - components: - - pos: 2.5,62.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22509 - type: SignSpace - components: - - pos: -1.5,61.5 - parent: 30 - type: Transform -- uid: 22510 - type: SignSpace - components: - - pos: 0.5,61.5 - parent: 30 - type: Transform -- uid: 22511 - type: Grille - components: - - pos: -4.5,62.5 - parent: 30 - type: Transform -- uid: 22512 - type: Grille - components: - - pos: 3.5,62.5 - parent: 30 - type: Transform -- uid: 22513 - type: IntercomCommand - components: - - rot: -1.5707963267948966 rad - pos: 0.5,82.5 - parent: 30 - type: Transform -- uid: 22514 - type: IntercomEngineering - components: - - rot: 1.5707963267948966 rad - pos: -1.5,82.5 - parent: 30 - type: Transform -- uid: 22515 - type: IntercomSecurity - components: - - rot: 3.141592653589793 rad - pos: -0.5,81.5 - parent: 30 - type: Transform -- uid: 22516 - type: IntercomMedical - components: - - pos: -1.5,85.5 - parent: 30 - type: Transform -- uid: 22517 - type: IntercomService - components: - - pos: -0.5,85.5 - parent: 30 - type: Transform -- uid: 22518 - type: IntercomScience - components: - - rot: -1.5707963267948966 rad - pos: 1.5,84.5 - parent: 30 - type: Transform -- uid: 22519 - type: IntercomSupply - components: - - rot: 1.5707963267948966 rad - pos: -2.5,84.5 - parent: 30 - type: Transform -- uid: 22520 - type: SignPlaque - components: - - pos: 4.5,45.5 - parent: 30 - type: Transform -- uid: 22521 - type: BikeHorn - components: - - pos: 3.45161,42.57874 - parent: 30 - type: Transform -- uid: 22522 - type: RandomArtifactSpawner - components: - - pos: -5.5,23.5 - parent: 30 - type: Transform -- uid: 22523 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-4.5 - parent: 30 - type: Transform -- uid: 22524 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-4.5 - parent: 30 - type: Transform -- uid: 22525 - type: ChairOfficeLight - components: - - pos: -38.5,-6.5 - parent: 30 - type: Transform -- uid: 22526 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-12.5 - parent: 30 - type: Transform -- uid: 22527 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-14.5 - parent: 30 - type: Transform -- uid: 22528 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -36.5,-11.5 - parent: 30 - type: Transform -- uid: 22529 - type: TableGlass - components: - - pos: -36.5,-10.5 - parent: 30 - type: Transform -- uid: 22530 - type: Poweredlight - components: - - pos: -34.5,-9.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22531 - type: CheapRollerBed - components: - - pos: -27.519848,-10.440689 - parent: 30 - type: Transform -- uid: 22532 - type: GasVentPump - components: - - pos: -32.5,-6.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22533 - type: Multitool - components: - - pos: -42.448753,-22.541483 - parent: 30 - type: Transform - - devices: - 'UID: 129063': 22532 - type: NetworkConfigurator -- uid: 22534 - type: EpinephrineChemistryBottle - components: - - pos: -31.491892,-12.103823 - parent: 30 - type: Transform -- uid: 22535 - type: EpinephrineChemistryBottle - components: - - pos: -31.382517,-12.213198 - parent: 30 - type: Transform -- uid: 22536 - type: Syringe - components: - - pos: -31.507517,-11.603823 - parent: 30 - type: Transform -- uid: 22537 - type: WindoorEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-29.5 - parent: 30 - type: Transform -- uid: 22538 - type: WeaponShotgunKammerer - components: - - pos: -41.445473,54.621906 - parent: 30 - type: Transform -- uid: 22539 - type: DrinkJar - components: - - pos: 2.513442,-10.331949 - parent: 30 - type: Transform -- uid: 22540 - type: WindowReinforcedDirectional - components: - - pos: 4.5,-28.5 - parent: 30 - type: Transform -- uid: 22541 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: 18.5,14.5 - parent: 30 - type: Transform -- uid: 22542 - type: FloorDrain - components: - - pos: 18.5,14.5 - parent: 30 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 22543 - type: PosterLegitSafetyEyeProtection - components: - - pos: 19.5,16.5 - parent: 30 - type: Transform -- uid: 22544 - type: PosterLegitSafetyInternals - components: - - pos: 19.5,14.5 - parent: 30 - type: Transform -- uid: 22545 - type: ClothingOuterCoatPirate - components: - - pos: 19.488726,8.340895 - parent: 30 - type: Transform -- uid: 22546 - type: ClothingHeadHatPirate - components: - - pos: 19.4106,8.73152 - parent: 30 - type: Transform -- uid: 22547 - type: RandomArtifactSpawner - components: - - pos: 41.5,13.5 - parent: 30 - type: Transform -- uid: 22548 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: 0.5,14.5 - parent: 30 - type: Transform -- uid: 22549 - type: Table - components: - - pos: -49.5,50.5 - parent: 30 - type: Transform -- uid: 22550 - type: WallReinforced - components: - - pos: -42.5,-64.5 - parent: 30 - type: Transform -- uid: 22551 - type: WallReinforced - components: - - pos: -42.5,-63.5 - parent: 30 - type: Transform -- uid: 22552 - type: WallReinforced - components: - - pos: -42.5,-62.5 - parent: 30 - type: Transform -- uid: 22553 - type: WallReinforced - components: - - pos: -42.5,-61.5 - parent: 30 - type: Transform -- uid: 22554 - type: WallReinforced - components: - - pos: -42.5,-60.5 - parent: 30 - type: Transform -- uid: 22555 - type: WallReinforced - components: - - pos: -42.5,-59.5 - parent: 30 - type: Transform -- uid: 22556 - type: WallReinforced - components: - - pos: -42.5,-58.5 - parent: 30 - type: Transform -- uid: 22557 - type: WallReinforced - components: - - pos: -42.5,-57.5 - parent: 30 - type: Transform -- uid: 22558 - type: WallReinforced - components: - - pos: -42.5,-56.5 - parent: 30 - type: Transform -- uid: 22559 - type: WallReinforced - components: - - pos: -41.5,-56.5 - parent: 30 - type: Transform -- uid: 22560 - type: WallReinforced - components: - - pos: -40.5,-56.5 - parent: 30 - type: Transform -- uid: 22561 - type: WallReinforced - components: - - pos: -39.5,-56.5 - parent: 30 - type: Transform -- uid: 22562 - type: WallReinforced - components: - - pos: -38.5,-56.5 - parent: 30 - type: Transform -- uid: 22563 - type: WallReinforced - components: - - pos: -37.5,-56.5 - parent: 30 - type: Transform -- uid: 22564 - type: WallReinforced - components: - - pos: -36.5,-56.5 - parent: 30 - type: Transform -- uid: 22565 - type: WallReinforced - components: - - pos: -35.5,-56.5 - parent: 30 - type: Transform -- uid: 22566 - type: WallReinforced - components: - - pos: -34.5,-56.5 - parent: 30 - type: Transform -- uid: 22567 - type: WallReinforced - components: - - pos: -33.5,-56.5 - parent: 30 - type: Transform -- uid: 22568 - type: WallReinforced - components: - - pos: -32.5,-56.5 - parent: 30 - type: Transform -- uid: 22569 - type: WallReinforced - components: - - pos: -24.5,-59.5 - parent: 30 - type: Transform -- uid: 22570 - type: WallReinforced - components: - - pos: -24.5,-60.5 - parent: 30 - type: Transform -- uid: 22571 - type: WallReinforced - components: - - pos: -24.5,-61.5 - parent: 30 - type: Transform -- uid: 22572 - type: WallReinforced - components: - - pos: -24.5,-62.5 - parent: 30 - type: Transform -- uid: 22573 - type: WallReinforced - components: - - pos: -24.5,-63.5 - parent: 30 - type: Transform -- uid: 22574 - type: WallReinforced - components: - - pos: -24.5,-64.5 - parent: 30 - type: Transform -- uid: 22575 - type: WallReinforced - components: - - pos: -25.5,-64.5 - parent: 30 - type: Transform -- uid: 22576 - type: WallReinforced - components: - - pos: -26.5,-64.5 - parent: 30 - type: Transform -- uid: 22577 - type: WallReinforced - components: - - pos: -27.5,-64.5 - parent: 30 - type: Transform -- uid: 22578 - type: WallReinforced - components: - - pos: -28.5,-64.5 - parent: 30 - type: Transform -- uid: 22579 - type: WallReinforced - components: - - pos: -29.5,-64.5 - parent: 30 - type: Transform -- uid: 22580 - type: WallReinforced - components: - - pos: -30.5,-64.5 - parent: 30 - type: Transform -- uid: 22581 - type: WallReinforced - components: - - pos: -31.5,-64.5 - parent: 30 - type: Transform -- uid: 22582 - type: WallReinforced - components: - - pos: -31.5,-56.5 - parent: 30 - type: Transform -- uid: 22583 - type: WallReinforced - components: - - pos: -30.5,-56.5 - parent: 30 - type: Transform -- uid: 22584 - type: WallReinforced - components: - - pos: -29.5,-56.5 - parent: 30 - type: Transform -- uid: 22585 - type: WallReinforced - components: - - pos: -28.5,-56.5 - parent: 30 - type: Transform -- uid: 22586 - type: WallReinforced - components: - - pos: -27.5,-56.5 - parent: 30 - type: Transform -- uid: 22587 - type: WallReinforced - components: - - pos: -26.5,-56.5 - parent: 30 - type: Transform -- uid: 22588 - type: WallReinforced - components: - - pos: -25.5,-56.5 - parent: 30 - type: Transform -- uid: 22589 - type: WallReinforced - components: - - pos: -24.5,-56.5 - parent: 30 - type: Transform -- uid: 22590 - type: WallReinforced - components: - - pos: -24.5,-57.5 - parent: 30 - type: Transform -- uid: 22591 - type: WallReinforced - components: - - pos: -23.5,-59.5 - parent: 30 - type: Transform -- uid: 22592 - type: WallReinforced - components: - - pos: -23.5,-56.5 - parent: 30 - type: Transform -- uid: 22593 - type: WallReinforced - components: - - pos: -22.5,-56.5 - parent: 30 - type: Transform -- uid: 22594 - type: WallReinforced - components: - - pos: -21.5,-56.5 - parent: 30 - type: Transform -- uid: 22595 - type: WallReinforced - components: - - pos: -21.5,-57.5 - parent: 30 - type: Transform -- uid: 22596 - type: WallReinforced - components: - - pos: -21.5,-59.5 - parent: 30 - type: Transform -- uid: 22597 - type: WallReinforced - components: - - pos: -22.5,-59.5 - parent: 30 - type: Transform -- uid: 22598 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-47.5 - parent: 30 - type: Transform -- uid: 22599 - type: DisposalBend - components: - - pos: -17.5,-47.5 - parent: 30 - type: Transform -- uid: 22600 - type: DisposalPipe - components: - - pos: -17.5,-48.5 - parent: 30 - type: Transform -- uid: 22601 - type: DisposalPipe - components: - - pos: -17.5,-49.5 - parent: 30 - type: Transform -- uid: 22602 - type: DisposalPipe - components: - - pos: -17.5,-50.5 - parent: 30 - type: Transform -- uid: 22603 - type: DisposalPipe - components: - - pos: -17.5,-51.5 - parent: 30 - type: Transform -- uid: 22604 - type: DisposalPipe - components: - - pos: -17.5,-52.5 - parent: 30 - type: Transform -- uid: 22605 - type: DisposalPipe - components: - - pos: -17.5,-53.5 - parent: 30 - type: Transform -- uid: 22606 - type: DisposalPipe - components: - - pos: -17.5,-54.5 - parent: 30 - type: Transform -- uid: 22607 - type: DisposalPipe - components: - - pos: -17.5,-55.5 - parent: 30 - type: Transform -- uid: 22608 - type: DisposalPipe - components: - - pos: -17.5,-56.5 - parent: 30 - type: Transform -- uid: 22609 - type: DisposalPipe - components: - - pos: -17.5,-57.5 - parent: 30 - type: Transform -- uid: 22610 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-58.5 - parent: 30 - type: Transform -- uid: 22611 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-58.5 - parent: 30 - type: Transform -- uid: 22612 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-58.5 - parent: 30 - type: Transform -- uid: 22613 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-58.5 - parent: 30 - type: Transform -- uid: 22614 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-58.5 - parent: 30 - type: Transform -- uid: 22615 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-58.5 - parent: 30 - type: Transform -- uid: 22616 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-58.5 - parent: 30 - type: Transform -- uid: 22617 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-58.5 - parent: 30 - type: Transform -- uid: 22618 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -26.5,-58.5 - parent: 30 - type: Transform -- uid: 22619 - type: DisposalTrunk - components: - - pos: -26.5,-57.5 - parent: 30 - type: Transform -- uid: 22620 - type: DisposalUnit - components: - - pos: -26.5,-57.5 - parent: 30 - type: Transform -- uid: 22621 - type: TelecomServer - components: - - pos: -37.5,-58.5 - parent: 30 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22622 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 22622 - type: EncryptionKeyCargo - components: - - flags: InContainer - type: MetaData - - parent: 22621 - type: Transform - - canCollide: False - type: Physics -- uid: 22623 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-63.5 - parent: 30 - type: Transform -- uid: 22624 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-62.5 - parent: 30 - type: Transform -- uid: 22625 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-61.5 - parent: 30 - type: Transform -- uid: 22626 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-61.5 - parent: 30 - type: Transform -- uid: 22627 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-61.5 - parent: 30 - type: Transform -- uid: 22628 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-59.5 - parent: 30 - type: Transform -- uid: 22629 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-59.5 - parent: 30 - type: Transform -- uid: 22630 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-59.5 - parent: 30 - type: Transform -- uid: 22631 - type: AirlockExternalEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-58.5 - parent: 30 - type: Transform -- uid: 22632 - type: AirlockExternalEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-58.5 - parent: 30 - type: Transform -- uid: 22633 - type: AirlockEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-58.5 - parent: 30 - type: Transform -- uid: 22634 - type: AirlockMaintEngiLocked - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-60.5 - parent: 30 - type: Transform -- uid: 22635 - type: AirlockEngineeringGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-60.5 - parent: 30 - type: Transform -- uid: 22636 - type: AirlockEngineeringGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-60.5 - parent: 30 - type: Transform -- uid: 22637 - type: ReinforcedWindow - components: - - pos: -30.5,-61.5 - parent: 30 - type: Transform -- uid: 22638 - type: AirlockCommandGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-61.5 - parent: 30 - type: Transform -- uid: 22639 - type: WallReinforced - components: - - pos: -28.5,-59.5 - parent: 30 - type: Transform -- uid: 22640 - type: WallReinforced - components: - - pos: -28.5,-60.5 - parent: 30 - type: Transform -- uid: 22641 - type: WallReinforced - components: - - pos: -28.5,-61.5 - parent: 30 - type: Transform -- uid: 22642 - type: WallReinforced - components: - - pos: -28.5,-62.5 - parent: 30 - type: Transform -- uid: 22643 - type: WallReinforced - components: - - pos: -28.5,-63.5 - parent: 30 - type: Transform -- uid: 22644 - type: WallReinforced - components: - - pos: -28.5,-57.5 - parent: 30 - type: Transform -- uid: 22645 - type: WallSolid - components: - - pos: -27.5,-60.5 - parent: 30 - type: Transform -- uid: 22646 - type: WallSolid - components: - - pos: -25.5,-60.5 - parent: 30 - type: Transform -- uid: 22647 - type: Catwalk - components: - - pos: -22.5,-58.5 - parent: 30 - type: Transform -- uid: 22648 - type: Catwalk - components: - - pos: -23.5,-58.5 - parent: 30 - type: Transform -- uid: 22649 - type: WallReinforced - components: - - pos: -33.5,-63.5 - parent: 30 - type: Transform -- uid: 22650 - type: WallReinforced - components: - - pos: -33.5,-57.5 - parent: 30 - type: Transform -- uid: 22651 - type: Grille - components: - - pos: -32.5,-57.5 - parent: 30 - type: Transform -- uid: 22652 - type: Grille - components: - - pos: -32.5,-58.5 - parent: 30 - type: Transform -- uid: 22653 - type: Grille - components: - - pos: -30.5,-61.5 - parent: 30 - type: Transform -- uid: 22654 - type: ClosetEmergencyFilledRandom - components: - - pos: -23.5,-57.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22655 - type: SignTelecomms - components: - - pos: -19.5,-47.5 - parent: 30 - type: Transform -- uid: 22656 - type: SignTelecomms - components: - - pos: -28.5,-59.5 - parent: 30 - type: Transform -- uid: 22657 - type: IntercomEngineering - components: - - pos: -29.5,-56.5 - parent: 30 - type: Transform -- uid: 22658 - type: SMESBasic - components: - - pos: -25.5,-62.5 - parent: 30 - type: Transform -- uid: 22659 - type: SubstationBasic - components: - - pos: -27.5,-62.5 - parent: 30 - type: Transform -- uid: 22660 - type: CableHV - components: - - pos: -25.5,-58.5 - parent: 30 - type: Transform -- uid: 22661 - type: CableHV - components: - - pos: -26.5,-58.5 - parent: 30 - type: Transform -- uid: 22662 - type: CableHV - components: - - pos: -26.5,-59.5 - parent: 30 - type: Transform -- uid: 22663 - type: CableHV - components: - - pos: -26.5,-60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22664 - type: CableHV - components: - - pos: -26.5,-61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22665 - type: CableHV - components: - - pos: -25.5,-61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22666 - type: CableHV - components: - - pos: -25.5,-62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22667 - type: CableHV - components: - - pos: -25.5,-63.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22668 - type: CableHV - components: - - pos: -26.5,-63.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22669 - type: CableHV - components: - - pos: -27.5,-63.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22670 - type: CableHV - components: - - pos: -27.5,-62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22671 - type: CableTerminal - components: - - pos: -25.5,-61.5 - parent: 30 - type: Transform -- uid: 22672 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-57.5 - parent: 30 - type: Transform -- uid: 22673 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-60.5 - parent: 30 - type: Transform -- uid: 22674 - type: CableMV - components: - - pos: -27.5,-62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22675 - type: CableMV - components: - - pos: -27.5,-61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22676 - type: CableMV - components: - - pos: -26.5,-61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22677 - type: CableMV - components: - - pos: -26.5,-60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22678 - type: CableMV - components: - - pos: -26.5,-59.5 - parent: 30 - type: Transform -- uid: 22679 - type: CableMV - components: - - pos: -27.5,-59.5 - parent: 30 - type: Transform -- uid: 22680 - type: CableMV - components: - - pos: -27.5,-58.5 - parent: 30 - type: Transform -- uid: 22681 - type: CableMV - components: - - pos: -28.5,-58.5 - parent: 30 - type: Transform -- uid: 22682 - type: CableMV - components: - - pos: -29.5,-58.5 - parent: 30 - type: Transform -- uid: 22683 - type: CableMV - components: - - pos: -29.5,-59.5 - parent: 30 - type: Transform -- uid: 22684 - type: CableMV - components: - - pos: -29.5,-60.5 - parent: 30 - type: Transform -- uid: 22685 - type: CableMV - components: - - pos: -28.5,-60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22686 - type: CableMV - components: - - pos: -30.5,-60.5 - parent: 30 - type: Transform -- uid: 22687 - type: CableMV - components: - - pos: -31.5,-60.5 - parent: 30 - type: Transform -- uid: 22688 - type: CableMV - components: - - pos: -32.5,-60.5 - parent: 30 - type: Transform -- uid: 22689 - type: CableMV - components: - - pos: -33.5,-60.5 - parent: 30 - type: Transform -- uid: 22690 - type: CableMV - components: - - pos: -34.5,-60.5 - parent: 30 - type: Transform -- uid: 22691 - type: CableMV - components: - - pos: -34.5,-59.5 - parent: 30 - type: Transform -- uid: 22692 - type: CableMV - components: - - pos: -34.5,-58.5 - parent: 30 - type: Transform -- uid: 22693 - type: CableMV - components: - - pos: -34.5,-57.5 - parent: 30 - type: Transform -- uid: 22694 - type: CableMV - components: - - pos: -33.5,-57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22695 - type: CableMV - components: - - pos: -32.5,-59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22696 - type: CableMV - components: - - pos: -32.5,-58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22697 - type: CableMV - components: - - pos: -32.5,-57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22698 - type: CableMV - components: - - pos: -32.5,-61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22699 - type: CableMV - components: - - pos: -32.5,-62.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22700 - type: CableMV - components: - - pos: -32.5,-63.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22701 - type: CableMV - components: - - pos: -31.5,-59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22702 - type: CableMV - components: - - pos: -33.5,-59.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22703 - type: CableMV - components: - - pos: -33.5,-61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22704 - type: CableMV - components: - - pos: -31.5,-61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22705 - type: CableMV - components: - - pos: -30.5,-61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22706 - type: CableApcExtension - components: - - pos: -33.5,-57.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22707 - type: CableApcExtension - components: - - pos: -34.5,-57.5 - parent: 30 - type: Transform -- uid: 22708 - type: CableApcExtension - components: - - pos: -34.5,-58.5 - parent: 30 - type: Transform -- uid: 22709 - type: CableApcExtension - components: - - pos: -34.5,-59.5 - parent: 30 - type: Transform -- uid: 22710 - type: CableApcExtension - components: - - pos: -34.5,-60.5 - parent: 30 - type: Transform -- uid: 22711 - type: CableApcExtension - components: - - pos: -34.5,-61.5 - parent: 30 - type: Transform -- uid: 22712 - type: CableApcExtension - components: - - pos: -34.5,-62.5 - parent: 30 - type: Transform -- uid: 22713 - type: CableApcExtension - components: - - pos: -34.5,-63.5 - parent: 30 - type: Transform -- uid: 22714 - type: CableApcExtension - components: - - pos: -35.5,-60.5 - parent: 30 - type: Transform -- uid: 22715 - type: CableApcExtension - components: - - pos: -36.5,-60.5 - parent: 30 - type: Transform -- uid: 22716 - type: CableApcExtension - components: - - pos: -36.5,-61.5 - parent: 30 - type: Transform -- uid: 22717 - type: CableApcExtension - components: - - pos: -37.5,-61.5 - parent: 30 - type: Transform -- uid: 22718 - type: CableApcExtension - components: - - pos: -38.5,-61.5 - parent: 30 - type: Transform -- uid: 22719 - type: CableApcExtension - components: - - pos: -39.5,-61.5 - parent: 30 - type: Transform -- uid: 22720 - type: CableApcExtension - components: - - pos: -39.5,-60.5 - parent: 30 - type: Transform -- uid: 22721 - type: CableApcExtension - components: - - pos: -40.5,-60.5 - parent: 30 - type: Transform -- uid: 22722 - type: CableApcExtension - components: - - pos: -41.5,-60.5 - parent: 30 - type: Transform -- uid: 22723 - type: CableApcExtension - components: - - pos: -39.5,-59.5 - parent: 30 - type: Transform -- uid: 22724 - type: CableApcExtension - components: - - pos: -38.5,-59.5 - parent: 30 - type: Transform -- uid: 22725 - type: CableApcExtension - components: - - pos: -37.5,-59.5 - parent: 30 - type: Transform -- uid: 22726 - type: CableApcExtension - components: - - pos: -36.5,-59.5 - parent: 30 - type: Transform -- uid: 22727 - type: CableApcExtension - components: - - pos: -41.5,-59.5 - parent: 30 - type: Transform -- uid: 22728 - type: CableApcExtension - components: - - pos: -41.5,-58.5 - parent: 30 - type: Transform -- uid: 22729 - type: CableApcExtension - components: - - pos: -41.5,-61.5 - parent: 30 - type: Transform -- uid: 22730 - type: CableApcExtension - components: - - pos: -41.5,-62.5 - parent: 30 - type: Transform -- uid: 22731 - type: CableApcExtension - components: - - pos: -36.5,-58.5 - parent: 30 - type: Transform -- uid: 22732 - type: CableApcExtension - components: - - pos: -36.5,-62.5 - parent: 30 - type: Transform -- uid: 22733 - type: CableApcExtension - components: - - pos: -39.5,-62.5 - parent: 30 - type: Transform -- uid: 22734 - type: CableApcExtension - components: - - pos: -39.5,-58.5 - parent: 30 - type: Transform -- uid: 22735 - type: CableApcExtension - components: - - pos: -28.5,-60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22736 - type: CableApcExtension - components: - - pos: -29.5,-60.5 - parent: 30 - type: Transform -- uid: 22737 - type: CableApcExtension - components: - - pos: -29.5,-61.5 - parent: 30 - type: Transform -- uid: 22738 - type: CableApcExtension - components: - - pos: -29.5,-62.5 - parent: 30 - type: Transform -- uid: 22739 - type: CableApcExtension - components: - - pos: -29.5,-63.5 - parent: 30 - type: Transform -- uid: 22740 - type: CableApcExtension - components: - - pos: -30.5,-63.5 - parent: 30 - type: Transform -- uid: 22741 - type: CableApcExtension - components: - - pos: -29.5,-59.5 - parent: 30 - type: Transform -- uid: 22742 - type: CableApcExtension - components: - - pos: -29.5,-58.5 - parent: 30 - type: Transform -- uid: 22743 - type: CableApcExtension - components: - - pos: -29.5,-57.5 - parent: 30 - type: Transform -- uid: 22744 - type: CableApcExtension - components: - - pos: -30.5,-57.5 - parent: 30 - type: Transform -- uid: 22745 - type: CableApcExtension - components: - - pos: -30.5,-60.5 - parent: 30 - type: Transform -- uid: 22746 - type: CableApcExtension - components: - - pos: -31.5,-60.5 - parent: 30 - type: Transform -- uid: 22747 - type: CableApcExtension - components: - - pos: -28.5,-58.5 - parent: 30 - type: Transform -- uid: 22748 - type: CableApcExtension - components: - - pos: -26.5,-58.5 - parent: 30 - type: Transform -- uid: 22749 - type: CableApcExtension - components: - - pos: -25.5,-58.5 - parent: 30 - type: Transform -- uid: 22750 - type: CableApcExtension - components: - - pos: -25.5,-58.5 - parent: 30 - type: Transform -- uid: 22751 - type: CableApcExtension - components: - - pos: -27.5,-58.5 - parent: 30 - type: Transform -- uid: 22752 - type: CableApcExtension - components: - - pos: -26.5,-59.5 - parent: 30 - type: Transform -- uid: 22753 - type: CableApcExtension - components: - - pos: -26.5,-60.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22754 - type: CableApcExtension - components: - - pos: -26.5,-62.5 - parent: 30 - type: Transform -- uid: 22755 - type: CableApcExtension - components: - - pos: -26.5,-61.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22756 - type: CableApcExtension - components: - - pos: -24.5,-58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22757 - type: CableApcExtension - components: - - pos: -23.5,-58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22758 - type: CableApcExtension - components: - - pos: -22.5,-58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22759 - type: CableApcExtension - components: - - pos: -21.5,-58.5 - parent: 30 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22760 - type: Catwalk - components: - - pos: -25.5,-63.5 - parent: 30 - type: Transform -- uid: 22761 - type: Catwalk - components: - - pos: -26.5,-63.5 - parent: 30 - type: Transform -- uid: 22762 - type: Catwalk - components: - - pos: -27.5,-63.5 - parent: 30 - type: Transform -- uid: 22763 - type: Catwalk - components: - - pos: -27.5,-61.5 - parent: 30 - type: Transform -- uid: 22764 - type: Catwalk - components: - - pos: -26.5,-61.5 - parent: 30 - type: Transform -- uid: 22765 - type: Catwalk - components: - - pos: -25.5,-61.5 - parent: 30 - type: Transform -- uid: 22766 - type: GeneratorBasic - components: - - pos: -25.5,-63.5 - parent: 30 - type: Transform -- uid: 22767 - type: AirCanister - components: - - pos: -27.5,-63.5 - parent: 30 - type: Transform -- uid: 22768 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-47.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22769 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-48.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22770 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-49.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22771 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-50.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22772 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-51.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22773 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-52.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22774 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-53.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22775 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-54.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22776 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-55.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22777 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-56.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22778 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-57.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22779 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22780 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22781 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22782 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22783 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22784 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22785 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22786 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22787 - type: GasPipeTJunction - components: - - pos: -26.5,-58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22788 - type: GasPipeTJunction - components: - - pos: -30.5,-58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22789 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,-59.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22790 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22791 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22792 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22793 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22794 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22795 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22796 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22797 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22798 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22799 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -26.5,-59.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22800 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22801 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-60.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22802 - type: PortableScrubber - components: - - pos: -27.5,-61.5 - parent: 30 - type: Transform -- uid: 22803 - type: SignTelecomms - components: - - pos: -21.5,-57.5 - parent: 30 - type: Transform -- uid: 22804 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-62.5 - parent: 30 - type: Transform -- uid: 22805 - type: ComputerStationRecords - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-63.5 - parent: 30 - type: Transform -- uid: 22806 - type: ComputerAlert - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-58.5 - parent: 30 - type: Transform -- uid: 22807 - type: SurveillanceCameraRouterEngineering - components: - - pos: -38.5,-57.5 - parent: 30 - type: Transform -- uid: 22808 - type: SurveillanceCameraRouterSupply - components: - - pos: -38.5,-58.5 - parent: 30 - type: Transform -- uid: 22809 - type: SurveillanceCameraRouterMedical - components: - - pos: -38.5,-62.5 - parent: 30 - type: Transform -- uid: 22810 - type: SurveillanceCameraRouterScience - components: - - pos: -38.5,-63.5 - parent: 30 - type: Transform -- uid: 22811 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-57.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms Exterior - type: SurveillanceCamera -- uid: 22812 - type: TelecomServer - components: - - pos: -35.5,-61.5 - parent: 30 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22813 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 22813 - type: EncryptionKeySecurity - components: - - flags: InContainer - type: MetaData - - parent: 22812 - type: Transform - - canCollide: False - type: Physics -- uid: 22814 - type: TelecomServer - components: - - pos: -37.5,-60.5 - parent: 30 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22815 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 22815 - type: EncryptionKeyCommand - components: - - flags: InContainer - type: MetaData - - parent: 22814 - type: Transform - - canCollide: False - type: Physics -- uid: 22816 - type: TelecomServer - components: - - pos: -40.5,-61.5 - parent: 30 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22817 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 22817 - type: EncryptionKeyCommon - components: - - flags: InContainer - type: MetaData - - parent: 22816 - type: Transform - - canCollide: False - type: Physics -- uid: 22818 - type: SurveillanceCameraWirelessRouterEntertainment - components: - - pos: -40.5,-58.5 - parent: 30 - type: Transform -- uid: 22819 - type: SurveillanceCameraRouterGeneral - components: - - pos: -40.5,-63.5 - parent: 30 - type: Transform -- uid: 22820 - type: SurveillanceCameraRouterSecurity - components: - - pos: -35.5,-63.5 - parent: 30 - type: Transform -- uid: 22821 - type: SurveillanceCameraRouterService - components: - - pos: -35.5,-57.5 - parent: 30 - type: Transform -- uid: 22822 - type: TelecomServer - components: - - pos: -37.5,-57.5 - parent: 30 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22823 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 22823 - type: EncryptionKeyEngineering - components: - - flags: InContainer - type: MetaData - - parent: 22822 - type: Transform - - canCollide: False - type: Physics -- uid: 22824 - type: SurveillanceCameraRouterCommand - components: - - pos: -38.5,-60.5 - parent: 30 - type: Transform -- uid: 22825 - type: TelecomServer - components: - - pos: -37.5,-63.5 - parent: 30 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22826 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 22826 - type: EncryptionKeyScience - components: - - flags: InContainer - type: MetaData - - parent: 22825 - type: Transform - - canCollide: False - type: Physics -- uid: 22827 - type: TelecomServer - components: - - pos: -37.5,-62.5 - parent: 30 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22828 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 22828 - type: EncryptionKeyMedical - components: - - flags: InContainer - type: MetaData - - parent: 22827 - type: Transform - - canCollide: False - type: Physics -- uid: 22829 - type: TelecomServer - components: - - pos: -35.5,-59.5 - parent: 30 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22830 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 22830 - type: EncryptionKeyService - components: - - flags: InContainer - type: MetaData - - parent: 22829 - type: Transform - - canCollide: False - type: Physics -- uid: 22831 - type: SurveillanceCameraWirelessRouterConstructed - components: - - pos: -40.5,-59.5 - parent: 30 - type: Transform -- uid: 22832 - type: SurveillanceCameraRouterConstructed - components: - - pos: -40.5,-57.5 - parent: 30 - type: Transform -- uid: 22833 - type: filingCabinetRandom - components: - - pos: -29.5,-63.5 - parent: 30 - type: Transform -- uid: 22834 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-62.5 - parent: 30 - type: Transform -- uid: 22835 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-57.5 - parent: 30 - type: Transform -- uid: 22836 - type: Rack - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-57.5 - parent: 30 - type: Transform -- uid: 22837 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-58.5 - parent: 30 - type: Transform -- uid: 22838 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-60.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms - type: SurveillanceCamera -- uid: 22839 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-59.5 - parent: 30 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms Entrance - type: SurveillanceCamera -- uid: 22840 - type: ClosetEmergencyFilledRandom - components: - - pos: -27.5,-57.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22841 - type: ClosetFireFilled - components: - - pos: -25.5,-57.5 - parent: 30 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22842 - type: ToolboxMechanicalFilled - components: - - pos: -29.484652,-57.340546 - parent: 30 - type: Transform -- uid: 22843 - type: Multitool - components: - - pos: -31.465784,-57.403034 - parent: 30 - type: Transform -- uid: 22844 - type: PottedPlantRandomPlastic - components: - - pos: -30.5,-57.5 - parent: 30 - type: Transform -- uid: 22845 - type: PoweredSmallLight - components: - - pos: -30.5,-57.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22846 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -30.5,-63.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22847 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -27.5,-59.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22848 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-59.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22849 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-63.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22850 - type: PoweredSmallLight - components: - - pos: -22.5,-57.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22851 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-59.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22852 - type: Poweredlight - components: - - pos: -36.5,-57.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22853 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-60.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22854 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -36.5,-63.5 - parent: 30 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22855 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-58.5 - parent: 30 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22856 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-67.5 - parent: 30 - type: Transform -- uid: 22857 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-67.5 - parent: 30 - type: Transform -- uid: 22858 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-67.5 - parent: 30 - type: Transform -- uid: 22859 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-67.5 - parent: 30 - type: Transform -- uid: 22860 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-67.5 - parent: 30 - type: Transform -- uid: 22861 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-67.5 - parent: 30 - type: Transform -- uid: 22862 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-66.5 - parent: 30 - type: Transform -- uid: 22863 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-65.5 - parent: 30 - type: Transform -- uid: 22864 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-64.5 - parent: 30 - type: Transform -- uid: 22865 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-63.5 - parent: 30 - type: Transform -- uid: 22866 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-62.5 - parent: 30 - type: Transform -- uid: 22867 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-61.5 - parent: 30 - type: Transform -- uid: 22868 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-60.5 - parent: 30 - type: Transform -- uid: 22869 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-59.5 - parent: 30 - type: Transform -- uid: 22870 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-58.5 - parent: 30 - type: Transform -- uid: 22871 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-57.5 - parent: 30 - type: Transform -- uid: 22872 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-56.5 - parent: 30 - type: Transform -- uid: 22873 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-55.5 - parent: 30 - type: Transform -- uid: 22874 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-54.5 - parent: 30 - type: Transform -- uid: 22875 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-53.5 - parent: 30 - type: Transform -- uid: 22876 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-53.5 - parent: 30 - type: Transform -- uid: 22877 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-53.5 - parent: 30 - type: Transform -- uid: 22878 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-53.5 - parent: 30 - type: Transform -- uid: 22879 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-53.5 - parent: 30 - type: Transform -- uid: 22880 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-53.5 - parent: 30 - type: Transform -- uid: 22881 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-53.5 - parent: 30 - type: Transform -- uid: 22882 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-53.5 - parent: 30 - type: Transform -- uid: 22883 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-53.5 - parent: 30 - type: Transform -- uid: 22884 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-53.5 - parent: 30 - type: Transform -- uid: 22885 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-53.5 - parent: 30 - type: Transform -- uid: 22886 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-53.5 - parent: 30 - type: Transform -- uid: 22887 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-53.5 - parent: 30 - type: Transform -... diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml deleted file mode 100644 index 0b51c49887..0000000000 --- a/Resources/Maps/meta.yml +++ /dev/null @@ -1,208146 +0,0 @@ -meta: - format: 3 - name: DemoStation - author: Space-Wizards - postmapinit: false -tilemap: - 0: Space - 2: FloorArcadeBlue2 - 3: FloorArcadeRed - 10: FloorAsteroidSand - 11: FloorAsteroidTile - 12: FloorBar - 15: FloorBlueCircuit - 17: FloorCarpetClown - 19: FloorCave - 21: FloorClown - 22: FloorDark - 34: FloorEighties - 37: FloorFreezer - 40: FloorGrass - 42: FloorGrassJungle - 44: FloorGreenCircuit - 46: FloorHydro - 47: FloorKitchen - 48: FloorLaundry - 49: FloorLino - 51: FloorMetalDiamond - 52: FloorMime - 53: FloorMono - 56: FloorPlastic - 57: FloorRGlass - 58: FloorReinforced - 60: FloorShowroom - 63: FloorShuttlePurple - 67: FloorSnow - 68: FloorSteel - 71: FloorSteelDirty - 74: FloorSteelMono - 78: FloorTechMaint - 79: FloorTechMaint2 - 81: FloorWhite - 90: FloorWhitePlastic - 91: FloorWood - 93: Lattice - 94: Plating -entities: -- uid: 0 - components: - - type: MetaData - - pos: 2.2710133,-2.4148211 - parent: 951 - type: Transform - - chunks: - -1,0: - ind: -1,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAAWAAADFgAAARYAAAMWAAABFgAAAxYAAAIWAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAACFgAAAhYAAAEWAAAAFgAAAxYAAAIWAAABFgAAAhYAAAJeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAWAAACFgAAAhYAAAMWAAAAFgAAAxYAAAIWAAABFgAAAhYAAAEWAAABRAAAAl4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAABYAAAAWAAABFgAAAxYAAAMWAAADFgAAAUQAAABeAAAATgAAAF4AAABeAAAAXQAAAF0AAABeAAAAFgAAARYAAAIWAAACFgAAAhYAAAEWAAAAFgAAARYAAAJEAAABXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABOAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAAJEAAABRAAAAUQAAANEAAABRAAAAEQAAAJEAAACRAAAAUQAAABEAAABRAAAAUQAAANEAAACRAAAA0QAAABEAAADRAAAAUQAAANEAAAARAAAAUQAAANEAAABRAAAAkQAAAJEAAAARAAAAUQAAANEAAADRAAAAkQAAABEAAADRAAAA0QAAANEAAABRAAAAEQAAANEAAACRAAAA0QAAABEAAADRAAAAUQAAANEAAACRAAAA0QAAAIWAAADFgAAABYAAAJeAAAAXgAAABYAAAJeAAAAXgAAAEQAAABEAAACRAAAA0QAAANEAAABRAAAAEQAAAJEAAACXgAAAF4AAABeAAAAXgAAABYAAAIWAAACFgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAADXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANEAAABRAAAAV4AAABdAAAAXgAAAF4AAABeAAAAFgAAABYAAAMWAAABXgAAAF4AAABeAAAAXQAAAF4AAABEAAABRAAAAkQAAAEWAAADAAAAAF4AAAAWAAABDwAAAA8AAAAWAAACDwAAAA8AAAAWAAAAXgAAAAAAAABeAAAARAAAAEQAAABEAAABXgAAAA== - 0,0: - ind: 0,0 - tiles: FgAAAhYAAAIWAAADFgAAABYAAAAWAAADXgAAABYAAAEWAAADFgAAAhYAAAIWAAAAXgAAAF4AAABeAAAARAAAAhYAAAAWAAADFgAAARYAAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAEQAAAAWAAAAFgAAARYAAAAWAAABFgAAAV4AAAAlAAAAJQAAACUAAAAWAAADFgAAAxYAAAIWAAACFgAAAF4AAABEAAADFgAAAxYAAAEWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFbAAADKgAAACoAAABeAAAARAAAAxYAAAMWAAACFgAAAV4AAABdAAAAXQAAAF4AAABbAAADWwAAAlsAAAJbAAACWwAAAlsAAABbAAAAXgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAABeAAAAWwAAAlsAAANbAAACWwAAAFsAAAJbAAABWwAAA14AAABEAAACXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAABYAAAIWAAABFgAAAxYAAAAWAAAAFgAAABYAAAFeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADRAAAAEQAAANEAAABRAAAAUQAAANEAAAARAAAAEQAAANEAAAARAAAA0QAAABEAAADRAAAA0QAAAFEAAABRAAAAEQAAAJEAAADRAAAAUQAAABEAAAARAAAAkQAAAFEAAACRAAAAkQAAANEAAACRAAAAkQAAANEAAAARAAAAEQAAAJEAAACRAAAAEQAAANEAAADRAAAAUQAAANEAAADRAAAA0QAAAFEAAAARAAAAEQAAAFEAAABRAAAAEQAAANEAAAARAAAAUQAAANeAAAAXgAAAF4AAAAWAAABXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAAAFgAAARYAAAMWAAADXgAAAEQAAAJEAAACRAAAAkQAAAFeAAAAXgAAABYAAAEWAAABFgAAARYAAAAWAAADFgAAABYAAAAWAAAAFgAAAl4AAABEAAABRAAAAEQAAAFEAAABRAAAAEQAAAIWAAAAFgAAAhYAAAIWAAACFgAAABYAAAAWAAAAFgAAAxYAAAEWAAADRAAAAEQAAANEAAABRAAAA0QAAAJeAAAAFgAAAhYAAAIWAAABFgAAABYAAAEWAAABFgAAARYAAAIWAAAAXgAAAEQAAABEAAABRAAAAEQAAANEAAAARAAAAw== - 0,-1: - ind: 0,-1 - tiles: WwAAAFsAAAFbAAACXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAAWAAACRAAAAFsAAAJbAAACWwAAAV4AAAAAAAAAXgAAADoAAAAsAAAALAAAACwAAAA6AAAAXgAAAAAAAABeAAAAFgAAAEQAAABbAAACWwAAAVsAAABeAAAAAAAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAAAAAAAAXgAAABYAAANEAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAAAAAAAF4AAAAWAAAARAAAAEQAAANeAAAAXQAAAF4AAABdAAAAXgAAAF4AAABeAAAAFgAAAl4AAABeAAAAXgAAAF0AAABeAAAAFgAAA0QAAABEAAACXgAAAF0AAABeAAAAAAAAAAAAAABdAAAAXgAAABYAAABeAAAAXQAAAAAAAAAAAAAAXgAAABYAAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAABRAAAAkQAAAFEAAAARAAAAkQAAABEAAADRAAAA0QAAAFEAAABRAAAAkQAAABEAAABRAAAAEQAAABEAAAARAAAA0QAAANEAAABRAAAA0QAAANEAAACRAAAAUQAAAJEAAABRAAAAEQAAAFEAAAARAAAA0QAAAJEAAADXgAAAF4AAABeAAAAFgAAAhYAAAJeAAAAXgAAAFsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAzEAAAAxAAAAXgAAABYAAAMWAAABXgAAABYAAAJbAAADWwAAAFsAAANbAAABWwAAAV4AAABeAAAAXgAAAEQAAAIxAAAAMQAAABYAAAEWAAADFgAAAhYAAAMWAAAAWwAAAlsAAANbAAABWwAAAVsAAANeAAAAXgAAAF4AAABEAAADMQAAADEAAABeAAAAFgAAARYAAAJeAAAAFgAAAFsAAAFbAAABWwAAAFsAAABbAAACXgAAAF4AAABeAAAARAAAAV4AAAAWAAACXgAAABYAAAEWAAADXgAAABYAAANbAAACWwAAAlsAAABbAAADWwAAAV4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAAAWAAAAFgAAAV4AAABeAAAAWwAAA1sAAANbAAAAWwAAAVsAAANeAAAAXgAAAF4AAABEAAADFgAAABYAAAAWAAACFgAAAxYAAAEWAAABXgAAAFsAAAFbAAAAWwAAAFsAAAJbAAACXgAAAF4AAABeAAAARAAAAA== - -1,-1: - ind: -1,-1 - tiles: RAAAAxYAAAJeAAAAXgAAAF4AAABOAAAATgAAAF4AAABbAAADWwAAAFsAAANbAAADWwAAAlsAAANbAAAAWwAAAEQAAAIWAAABXgAAAF4AAABeAAAATgAAAE4AAABeAAAAWwAAAFsAAAFbAAACWwAAAlsAAAJbAAAAWwAAAlsAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAFsAAAFbAAADWwAAAVsAAABbAAAAWwAAA1sAAAFbAAAARAAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANeAAAAXgAAAEQAAAIWAAACXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXQAAAF4AAABEAAACRAAAAUQAAABEAAADRAAAAkQAAAFEAAADFgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF0AAABeAAAARAAAAEQAAABEAAACRAAAAkQAAAFEAAADRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAkQAAAJEAAABRAAAA0QAAAFEAAABRAAAAEQAAAJEAAACRAAAAkQAAANEAAAARAAAAkQAAAJEAAAARAAAAkQAAAFEAAADRAAAAEQAAAFEAAACRAAAA0QAAAJEAAACRAAAAEQAAABEAAACRAAAAUQAAAJEAAADRAAAA0QAAAJEAAAARAAAA0QAAABEAAAAKAAAACgAAAAoAAAARAAAAF4AAABeAAAAFgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAkQAAAIWAAADXgAAABYAAAEWAAACXgAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAABYAAAIxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAFgAAAVsAAABbAAABWwAAAFsAAAFeAAAAFgAAAhYAAAJeAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAABYAAABbAAAAWwAAAlsAAABbAAADFgAAAhYAAAMWAAAAXgAAABYAAANeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAAAWAAAAWwAAAFsAAAFbAAABWwAAAV4AAAAWAAAAFgAAAl4AAABeAAAAXgAAABYAAAIWAAAAFgAAAxYAAAAWAAADXgAAABYAAAIWAAABFgAAARYAAABeAAAAFgAAABYAAAEWAAAAFgAAARYAAAAWAAADFgAAARYAAAEWAAACFgAAAQ== - -2,-1: - ind: -2,-1 - tiles: FgAAAhYAAAIWAAADFgAAAF4AAAAWAAADFgAAAxYAAABeAAAARAAAAkQAAABEAAADXgAAABYAAABEAAADRAAAA14AAAAWAAABXgAAAF4AAABeAAAAXgAAABYAAAFeAAAAXgAAAEQAAABEAAAARAAAAV4AAAAWAAADRAAAAUQAAANbAAAAWwAAA1sAAAFbAAADWwAAAlsAAABbAAADXgAAABYAAAFEAAABRAAAAUQAAAJeAAAAFgAAAkQAAANEAAADWwAAAlsAAABbAAABWwAAAFsAAABbAAAAWwAAA14AAAAWAAACRAAAAUQAAABEAAADXgAAABYAAANEAAAARAAAAVsAAAJbAAABWwAAA1sAAABbAAACWwAAA1sAAAJeAAAAFgAAAkQAAAJEAAAARAAAAl4AAAAWAAABRAAAAEQAAANbAAAAWwAAAlsAAANbAAACWwAAAlsAAANbAAABXgAAAF4AAABEAAAARAAAAkQAAANeAAAAFgAAAkQAAANEAAADWwAAA1sAAAFbAAAAWwAAAVsAAABbAAADWwAAAlsAAAFeAAAARAAAAUQAAAJEAAADXgAAAF4AAABEAAACXgAAAFsAAABbAAADWwAAAlsAAANbAAACWwAAA1sAAANbAAACWwAAA0QAAAFEAAADRAAAA0QAAAJEAAAARAAAA0QAAAJbAAABWwAAAlsAAANbAAAAWwAAAFsAAABbAAAAWwAAAlsAAANEAAADRAAAA0QAAAJEAAABRAAAA0QAAAJEAAAAWwAAAVsAAANbAAABWwAAA1sAAABbAAAAWwAAAFsAAAFeAAAARAAAAkQAAABEAAABXgAAAF4AAABEAAABKAAAAFsAAANeAAAAXgAAABYAAAJeAAAAXgAAABYAAANeAAAAXgAAAEQAAAFEAAABRAAAAl4AAAAWAAADRAAAAkQAAAFbAAAAWwAAA14AAAAWAAADFgAAAV4AAAAWAAAAFgAAAV4AAABEAAAARAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAWwAAAFsAAANeAAAAFgAAARYAAAFeAAAAFgAAARYAAANeAAAARAAAA0QAAAJEAAAAXgAAAFsAAANbAAAAWwAAA1sAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADRAAAAlsAAAJbAAABWwAAAlsAAAJEAAACRAAAAUQAAANEAAACRAAAAEQAAAFEAAADRAAAA0QAAAJEAAACRAAAAUQAAAFeAAAAWwAAA1sAAAFbAAABRAAAA0QAAABEAAACRAAAAkQAAABEAAACRAAAAEQAAAFEAAADRAAAA0QAAANEAAACXgAAAFsAAABbAAAAWwAAAg== - -2,0: - ind: -2,0 - tiles: RAAAAEQAAAFEAAADRAAAAUQAAAFEAAADRAAAA0QAAANEAAAARAAAA0QAAAFEAAADXgAAAFsAAANbAAADWwAAAV4AAABeAAAAXgAAAF4AAABEAAADRAAAA14AAABeAAAAXgAAAEQAAAJEAAADRAAAAV4AAAAWAAAAFgAAAxYAAAJEAAADRAAAAl4AAABEAAACRAAAA0QAAAJEAAADRAAAAF4AAABEAAADRAAAAEQAAAJeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAACRAAAA0QAAANEAAABRAAAAEQAAANeAAAARAAAAUQAAABEAAACRAAAA14AAABEAAAAXgAAAEQAAANEAAADRAAAA0QAAAJEAAABRAAAAkQAAAJEAAAARAAAAkQAAANEAAABRAAAA0QAAAFEAAACRAAAA0QAAANEAAAARAAAAF4AAABEAAADRAAAAEQAAAJEAAABRAAAAEQAAAFEAAABRAAAAkQAAABEAAAARAAAAF4AAABEAAADRAAAAEQAAANeAAAARAAAAkQAAANEAAABRAAAAUQAAAFeAAAARAAAAUQAAAJEAAABRAAAAF4AAABEAAADRAAAAkQAAANEAAAAXgAAAEQAAANEAAADRAAAAkQAAANEAAAAXgAAAEQAAABEAAABRAAAAl4AAABeAAAAXgAAAF4AAABEAAACRAAAA14AAABEAAABRAAAAUQAAABEAAADRAAAAV4AAABEAAAARAAAAkQAAAJEAAABRAAAA0QAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAADRAAAA0QAAAFEAAACRAAAA0QAAAJEAAABRAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACRAAAAUQAAABEAAACRAAAA0QAAAFEAAABRAAAAUQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANeAAAARAAAAkQAAAJEAAADRAAAAl4AAABeAAAAXgAAAEQAAAJEAAACRAAAAkQAAAFEAAABRAAAA0QAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAAJEAAADRAAAA0QAAAJEAAAARAAAAF4AAABEAAADRAAAAlsAAAJbAAABXgAAAF4AAABeAAAARAAAAEQAAAFEAAAARAAAAkQAAABEAAAARAAAAEQAAAJeAAAARAAAA0QAAABbAAABWwAAAV4AAABeAAAAXgAAAEQAAABEAAABRAAAAEQAAANEAAADRAAAA0QAAAJEAAACXgAAAA== - 1,0: - ind: 1,0 - tiles: RAAAAUQAAABeAAAAFgAAAxYAAAMWAAABDAAAAQwAAAIMAAAADAAAAwwAAAIMAAAADAAAAgwAAAIWAAADFgAAAUQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAADAAAAQwAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAABEAAADRAAAAkQAAAFEAAACRAAAAkQAAANEAAADRAAAA0QAAANEAAAARAAAAkQAAAFEAAABRAAAA0QAAAJEAAACRAAAA0QAAANEAAACRAAAAUQAAAFEAAAARAAAA0QAAAFEAAACRAAAAEQAAAFEAAACRAAAAkQAAANEAAACRAAAAEQAAAFEAAADRAAAAUQAAANEAAABRAAAAEQAAAFEAAABRAAAA0QAAAJEAAAARAAAAkQAAANEAAACRAAAAl4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAAAWAAADFgAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJeAAAARAAAAkQAAAFEAAAARAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAEQAAAFEAAADXgAAAEQAAANEAAADRAAAAUQAAANEAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAAAAAAF4AAABEAAADRAAAAl4AAABEAAAARAAAAUQAAAJEAAACRAAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAAAAAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAl4AAABEAAADRAAAARYAAAEWAAADFgAAABYAAABeAAAAXgAAAEQAAAJEAAABRAAAAkQAAAJEAAADRAAAAkQAAABEAAACRAAAAEQAAANEAAABRAAAA0QAAAFEAAAAXgAAAF4AAABEAAACRAAAAkQAAABEAAAARAAAAEQAAABEAAABRAAAA0QAAAJEAAABRAAAAUQAAAFEAAABRAAAAV4AAAARAAAARAAAAEQAAAJEAAADRAAAA0QAAANEAAADRAAAAkQAAAFEAAABRAAAAkQAAAJEAAAARAAAA0QAAAJeAAAAEQAAAA== - 1,-1: - ind: 1,-1 - tiles: RAAAA0QAAAJEAAABLgAAAF4AAAAuAAAALgAAAC4AAAAuAAAALgAAAC4AAAAuAAAALgAAAC4AAAAuAAAALgAAAEQAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAALwAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA14AAAAWAAABWwAAAlsAAANbAAADWwAAAlsAAAFeAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAARAAAAEQAAAFeAAAAFgAAAFsAAANbAAAAWwAAA1sAAANbAAADXgAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAEQAAAJEAAADXgAAAF4AAABbAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAABEAAABRAAAAV4AAAAWAAAAFgAAARYAAAAWAAACFgAAAxYAAAJeAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAARAAAAEQAAAJeAAAAFgAAARYAAAAWAAAAFgAAAxYAAAEWAAADWwAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAEQAAAJEAAACXgAAABYAAAIWAAABFgAAAhYAAAIWAAABFgAAAl4AAAAWAAACFgAAARYAAAEWAAABFgAAARYAAAJEAAACRAAAA14AAAAWAAADFgAAAxYAAAEWAAACFgAAABYAAAEWAAABDAAAAxYAAAEWAAABFgAAAhYAAAIWAAADRAAAAEQAAABeAAAAFgAAABYAAAEWAAADFgAAAhYAAAEWAAAAFgAAAgwAAAAMAAACDAAAAAwAAAAMAAAADAAAAEQAAAFEAAADXgAAABYAAAEWAAADFgAAABYAAAMWAAACFgAAAxYAAAIMAAADDAAAAQwAAAIMAAACDAAAAAwAAABEAAAARAAAAV4AAAAMAAABDAAAAQwAAAEMAAADDAAAAgwAAAMMAAAADAAAAgwAAAAMAAACDAAAAQwAAAEMAAABRAAAAkQAAAIMAAACDAAAAwwAAAEMAAACDAAAAgwAAAEMAAABDAAAAAwAAAEMAAAADAAAAAwAAAIMAAADDAAAAUQAAAFEAAADDAAAAwwAAAIMAAAADAAAAgwAAAIMAAADDAAAAwwAAAEMAAABDAAAAwwAAAEMAAAADAAAAQwAAABEAAAARAAAAF4AAAAMAAADDAAAAQwAAAIMAAABDAAAAgwAAAEMAAADDAAAAAwAAAIMAAADDAAAAgwAAAEMAAABRAAAAEQAAANeAAAAFgAAABYAAAMWAAAADAAAAQwAAAEMAAAADAAAAQwAAAEMAAAADAAAAgwAAAMWAAADFgAAAA== - -1,-2: - ind: -1,-2 - tiles: UQAAAlEAAABRAAADUQAAA1EAAAFeAAAAUQAAAlEAAAFRAAABUQAAAVEAAAFeAAAARAAAAUQAAAFEAAABXgAAAFEAAAFRAAADUQAAAFEAAAJRAAACXgAAAFEAAABRAAACUQAAAFEAAAFRAAACXgAAAEQAAAJEAAACRAAAAEQAAAJRAAAAUQAAA1EAAAFRAAAAUQAAAVEAAANRAAAAUQAAAVEAAAJRAAADUQAAAV4AAABEAAADRAAAAkQAAABeAAAAUQAAAVEAAAJRAAAAUQAAAVEAAAFeAAAAUQAAA1EAAANRAAAAUQAAAlEAAAJeAAAARAAAA0QAAAJEAAADXgAAAF4AAABRAAAAUQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAAV4AAABRAAACUQAAAFEAAABRAAAAUQAAA1EAAAJRAAABUQAAAlEAAAJRAAAAUQAAAF4AAABEAAADRAAAAUQAAAJeAAAAUQAAAFEAAAFRAAAAUQAAA1EAAAFRAAAAUQAAAlEAAABRAAADUQAAAVEAAAJRAAADRAAAAEQAAAFEAAAAUQAAAlEAAAFRAAACUQAAAlEAAAJRAAADUQAAAVEAAAFRAAACUQAAAVEAAANRAAAAUQAAAkQAAAFEAAABRAAAAlEAAABRAAABUQAAAFEAAANRAAAAUQAAAVEAAABRAAABUQAAA1EAAABRAAABUQAAA14AAABEAAADRAAAA0QAAABeAAAAUQAAAFEAAAJeAAAAXgAAAF4AAABeAAAAUQAAAFEAAAJeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFEAAAAXgAAAFEAAAFRAAAAXgAAAEQAAABEAAABRAAAAEQAAANEAAABRAAAA0QAAAJEAAACRAAAA0QAAAFEAAABRAAAAUQAAANEAAADRAAAAkQAAANEAAADRAAAAEQAAAJEAAABRAAAAUQAAANEAAABRAAAA0QAAAJEAAABRAAAA0QAAANEAAADRAAAAEQAAAJEAAACRAAAAkQAAABEAAACRAAAAEQAAAFEAAAARAAAAUQAAAFEAAADRAAAA0QAAANEAAAARAAAAUQAAANEAAAARAAAAUQAAABEAAAARAAAA0QAAANEAAAARAAAAUQAAAFEAAAARAAAAUQAAAJEAAABRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAABXgAAAF4AAABeAAAAWwAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAARYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAWwAAAVsAAABbAAABWwAAAFsAAABbAAADWwAAAg== - 0,-2: - ind: 0,-2 - tiles: RAAAACwAAAAsAAAALAAAAEQAAAJeAAAAUQAAAFEAAAEWAAADXgAAAFEAAAJRAAABRAAAABYAAANEAAADRAAAA0QAAAMsAAAALAAAACwAAABEAAABXgAAAFEAAAFRAAACUQAAAV4AAABRAAAAUQAAA0QAAAAWAAAARAAAAEQAAAJEAAACLAAAACwAAAAsAAAARAAAAF4AAABRAAAAUQAAARYAAAFeAAAAUQAAA1EAAAFRAAAAUQAAAFEAAANRAAAARAAAA0QAAAFEAAACRAAAAkQAAAJeAAAAUQAAAVEAAAIWAAABXgAAAFEAAAFRAAAAUQAAAFEAAAFRAAABUQAAA14AAABEAAADRAAAAUQAAAFeAAAAXgAAAFEAAAFRAAADXgAAAF4AAABEAAACRAAAA0QAAANeAAAAXgAAAF4AAABRAAACUQAAAVEAAANRAAABUQAAAlEAAAFRAAAAUQAAAFEAAAFeAAAARAAAAUQAAANEAAABXgAAAF4AAABeAAAAUQAAAFEAAAFRAAAAUQAAAVEAAANRAAADUQAAAlEAAAFRAAAAXgAAAEQAAANEAAACRAAAAV4AAAAzAAAAXgAAAFEAAAFRAAADUQAAAFEAAAFRAAACUQAAAFEAAAJRAAAAUQAAA14AAABEAAAARAAAAEQAAAJeAAAAMwAAAF4AAABRAAABUQAAAVEAAAJRAAAAUQAAAVEAAAFRAAAAUQAAAlEAAAFeAAAARAAAAUQAAANEAAABXgAAADMAAABeAAAAXgAAAF4AAABeAAAAUQAAAVEAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADRAAAA0QAAANEAAADRAAAAEQAAAJEAAAARAAAAV4AAAAWAAAAFgAAAxYAAAAWAAADXgAAAF4AAABEAAAARAAAAEQAAAJEAAACRAAAAUQAAAJEAAACRAAAAUQAAAFEAAADRAAAAEQAAABEAAAARAAAAkQAAAFEAAADRAAAAEQAAAFEAAADRAAAAEQAAAJEAAACRAAAAEQAAABEAAACRAAAAEQAAANEAAAARAAAAEQAAABEAAAARAAAAEQAAAJEAAADRAAAA0QAAANEAAAARAAAAUQAAABEAAACRAAAAEQAAANEAAACRAAAAUQAAAJEAAACRAAAA0QAAAFbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACWwAAA1sAAANbAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAAAWAAABRAAAAQ== - -2,-2: - ind: -2,-2 - tiles: UQAAA1EAAANRAAAAUQAAAlEAAAFRAAABUQAAAlEAAAFRAAABXgAAAFEAAAJRAAABUQAAAFEAAANeAAAAUQAAAlEAAANRAAADUQAAAVEAAAJRAAABUQAAA1EAAAJRAAADUQAAAV4AAABRAAABUQAAAFEAAABRAAAAUQAAAFEAAAFRAAADUQAAAVEAAAFRAAACUQAAAFEAAABRAAACUQAAAVEAAABeAAAAUQAAAFEAAANRAAACUQAAA1EAAAFRAAAAXgAAAF4AAABeAAAAXgAAACUAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAACXgAAAF4AAABeAAAAUQAAA14AAABeAAAAJQAAACUAAAAlAAAAJQAAACUAAABeAAAAFgAAAVEAAANRAAAAUQAAAFEAAANRAAADXgAAAF4AAABOAAAAXgAAACUAAAAlAAAAJQAAACUAAAAlAAAAXgAAABYAAAJRAAADUQAAAlEAAAFRAAAAUQAAAF4AAABRAAACXgAAAF4AAAAlAAAAJQAAACUAAAAlAAAAJQAAAF4AAAAWAAABUQAAAFEAAAFRAAABUQAAA1EAAANeAAAAUQAAAzAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAlEAAABRAAACUQAAA1EAAANRAAAAXgAAAFEAAAFeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAJRAAADUQAAAVEAAAFRAAAAUQAAAl4AAABRAAADMAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAA14AAABeAAAAUQAAAV4AAABeAAAAUQAAAl4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAEQAAANeAAAARAAAAkQAAAFEAAAAXgAAAFEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABEAAADRAAAAkQAAAFEAAADRAAAAEQAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABRAAAAUQAAAFEAAABRAAAAkQAAANEAAADRAAAARYAAAEWAAABFgAAAhYAAAJeAAAAXgAAAF4AAABeAAAAFgAAAUQAAAFEAAABRAAAAUQAAAFEAAAARAAAAEQAAAAWAAAAFgAAARYAAAMWAAABXgAAABYAAAIWAAABFgAAAF4AAABEAAAARAAAAkQAAABeAAAAXgAAAF4AAABEAAADFgAAARYAAAMWAAAAFgAAAV4AAAAWAAACFgAAABYAAABeAAAARAAAA0QAAAFEAAADXgAAABYAAANEAAAARAAAAQ== - 1,-2: - ind: 1,-2 - tiles: FgAAAl4AAABEAAACRAAAA1EAAAFRAAACUQAAAzoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAJeAAAARAAAAUQAAABRAAABUQAAA1EAAAA6AAAAOgAAADoAAABeAAAAMwAAADMAAABOAAAAXgAAAF4AAABRAAAAUQAAAVEAAABRAAADUQAAAVEAAAFRAAADOgAAADoAAAA6AAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAUQAAAV4AAABRAAAAUQAAA1EAAAFRAAAAUQAAAjoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAuAAAALgAAAC4AAABeAAAALgAAAC4AAAAuAAAALgAAAC4AAAAuAAAALgAAAC4AAAAuAAAALgAAAC4AAABeAAAALgAAAC4AAAAuAAAALgAAAC4AAABEAAABRAAAA0QAAANEAAADRAAAAUQAAAJEAAACRAAAAkQAAAIuAAAAXgAAAC4AAAAuAAAALgAAAF4AAAAuAAAALgAAAEQAAAEuAAAALgAAAEQAAAMuAAAALgAAAEQAAAIuAAAALgAAAF4AAAAoAAAALgAAACgAAABeAAAALgAAAC4AAABEAAABRAAAAkQAAABEAAADRAAAAUQAAABEAAADLgAAACgAAABEAAADRAAAA0QAAAIuAAAALgAAAC4AAAAuAAAARAAAAC4AAAAoAAAAKAAAACgAAAAuAAAARAAAAS4AAAAoAAAARAAAAEQAAANEAAABLgAAAC4AAAAuAAAALgAAAEQAAAEuAAAAKAAAACgAAAAoAAAALgAAAEQAAAIuAAAALgAAAEQAAANEAAAARAAAAS4AAAAoAAAALgAAAEQAAANEAAABRAAAA0QAAABEAAACRAAAA0QAAANEAAABRAAAAy4AAABEAAACRAAAA0QAAAAuAAAAKAAAAC4AAAAuAAAALgAAAEQAAABEAAACRAAAAEQAAANEAAADLgAAAC4AAAAuAAAARAAAAUQAAABEAAADLgAAACgAAAAuAAAARAAAA0QAAAFEAAAARAAAAkQAAANEAAAARAAAA0QAAAJEAAADLgAAAA== - 2,-1: - ind: 2,-1 - tiles: XgAAACUAAAAlAAAAJQAAACUAAAAlAAAAJQAAABYAAAJHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAAAlAAAAJQAAACUAAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANEAAAAXgAAAFsAAABbAAADXgAAADQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACXgAAAF4AAAAVAAAAFQAAADQAAAA0AAAANAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAC8AAAAvAAAALwAAAC8AAABeAAAAFQAAABUAAAA0AAAANAAAADQAAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAAvAAAALwAAAC8AAAAvAAAAXgAAABUAAAAVAAAAFQAAADQAAAA0AAAAXgAAAF4AAABHAAAAXgAAAEQAAAFEAAABLwAAAC8AAAAvAAAALwAAAF4AAAAVAAAAFQAAABUAAAA0AAAANAAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAARYAAAFeAAAAXgAAAF4AAABeAAAAFQAAAF4AAABeAAAAWwAAAFsAAABeAAAAXgAAAF4AAABEAAADRAAAA0QAAAEWAAABDAAAAwwAAAFbAAADWwAAA1sAAABbAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAADDAAAAwwAAAAMAAAAWwAAAFsAAABbAAAAWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAAwAAAAMAAADDAAAAFsAAAJbAAABWwAAA1sAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA0QAAAEMAAADDAAAAAwAAAJbAAACWwAAAFsAAAJbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABDAAAAAwAAAAMAAAAWwAAAFsAAABbAAADWwAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAEQAAABEAAADRAAAAQwAAAMMAAADDAAAAVsAAABbAAABWwAAAFsAAAJeAAAAXgAAAF4AAAA1AAAANQAAAF4AAABEAAAARAAAAUQAAAAMAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAANQAAADUAAAAWAAADRAAAAUQAAANEAAABFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADUAAAA1AAAAXgAAAEQAAABEAAAARAAAAA== - 2,0: - ind: 2,0 - tiles: FgAAA14AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAEQAAANEAAACRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAEQAAAJEAAACRAAAAkQAAANEAAACRAAAA0QAAAJEAAAARAAAAEQAAABEAAAARAAAA0QAAAFEAAACRAAAAUQAAAJEAAAARAAAAkQAAAFEAAABRAAAAUQAAANEAAACRAAAA0QAAANEAAAARAAAAEQAAAFEAAAARAAAAUQAAAJEAAAARAAAAEQAAANEAAABRAAAAEQAAAFEAAAARAAAAUQAAABEAAACRAAAAEQAAAJEAAAARAAAAkQAAANEAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAJeAAAAFgAAARYAAAIWAAABFgAAARYAAAAWAAABXgAAABYAAAMWAAABFgAAAxYAAAIWAAAAFgAAABYAAAAWAAABFgAAAxYAAAAWAAAAFgAAAxYAAAMWAAADFgAAAV4AAAAWAAABRAAAA0QAAABEAAADRAAAAxYAAAIWAAADFgAAA14AAAAWAAABFgAAARYAAAMWAAADFgAAAhYAAAFeAAAAFgAAAkQAAAFEAAACRAAAAkQAAAMWAAACXgAAAF4AAABeAAAAFgAAABYAAAEWAAADFgAAAhYAAAIWAAADXgAAABYAAANEAAAARAAAAkQAAAFEAAAAFgAAAl4AAABeAAAAXgAAABYAAAEWAAABFgAAABYAAAAWAAADFgAAA14AAAAWAAABFgAAAhYAAAAWAAABFgAAAxYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAIWAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAAFeAAAARAAAAUQAAAMRAAAAWwAAAkQAAABEAAACWwAAAVsAAAFbAAADXgAAAF4AAABeAAAARAAAAEQAAANEAAAAXgAAAEQAAABEAAABEQAAAF4AAABEAAADRAAAAF4AAABbAAADWwAAA14AAABeAAAAXgAAAEQAAANEAAABRAAAAkQAAAFEAAACRAAAAQ== - 2,-2: - ind: 2,-2 - tiles: XgAAAFsAAABeAAAAXgAAAF4AAAAlAAAAXgAAAF4AAAAlAAAAJQAAAF4AAABdAAAAXgAAAF4AAAA6AAAAXgAAAF4AAABeAAAAWwAAA14AAABeAAAAJQAAAF4AAAAlAAAAXgAAACUAAABeAAAAXQAAAF4AAAA6AAAAOgAAADoAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADoAAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAEQAAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABEAAACTgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAU4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANOAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAEQAAAJEAAAARAAAAkQAAAMuAAAALgAAABYAAAEWAAABXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAABXgAAAC4AAAAWAAABFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAuAAAAFgAAAhYAAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAEcAAABeAAAALgAAABYAAAIWAAABXgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAC4AAAAWAAADFgAAAl4AAABeAAAAXgAAAF4AAABHAAAAXgAAAEcAAABeAAAARwAAAF4AAABeAAAAXgAAAC4AAAAuAAAALgAAAC4AAABeAAAAXgAAAEcAAABHAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAACUAAAAlAAAAJQAAACUAAAAlAAAAJQAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAA== - -1,1: - ind: -1,1 - tiles: AAAAAF4AAAAWAAACDwAAABYAAAEWAAACFgAAAw8AAAAWAAAAXgAAAAAAAABeAAAARAAAAEQAAABEAAAAXgAAAAAAAABeAAAAFgAAAg8AAAAWAAAAFgAAARYAAAIPAAAAFgAAAl4AAAAAAAAAXgAAAEQAAABEAAAARAAAAl4AAAAAAAAAXgAAABYAAAMPAAAADwAAAA8AAAAPAAAADwAAABYAAANeAAAAAAAAAF4AAABEAAABRAAAAEQAAABeAAAAXQAAAF4AAABeAAAAFgAAAxYAAAEWAAADFgAAABYAAABeAAAAXgAAAF0AAABeAAAARAAAAUQAAANEAAACFgAAAwAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAEQAAAJEAAAARAAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABEAAADRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAAAXgAAAEQAAAJEAAADRAAAAUQAAAJEAAACRAAAAkQAAAJEAAADRAAAAEQAAANEAAADRAAAAUQAAANEAAAARAAAAEQAAANEAAAARAAAAUQAAABEAAAARAAAAkQAAAFEAAADRAAAA0QAAABEAAADRAAAAUQAAAJEAAACRAAAAUQAAAFEAAAARAAAAUQAAAJEAAABRAAAA0QAAABEAAABRAAAAEQAAAJEAAAARAAAAkQAAABEAAABRAAAAkQAAAJEAAACRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACXgAAAEQAAANEAAABXgAAAEQAAAJEAAABXgAAAEQAAABEAAACXgAAADwAAAA8AAAAPAAAADwAAABeAAAAWwAAAV4AAABEAAABRAAAAF4AAABEAAAARAAAAV4AAABEAAABRAAAAV4AAAA8AAAAPAAAADwAAAA8AAAAXgAAAFsAAAJeAAAAXgAAAEQAAAJeAAAAXgAAAEQAAAJeAAAAXgAAAEQAAAJeAAAAPAAAADwAAAA8AAAAPAAAAF4AAABbAAAAXgAAAEQAAAFEAAABRAAAAUQAAANEAAACRAAAAUQAAAJEAAABXgAAADwAAAA8AAAAPAAAADwAAABeAAAAFgAAABYAAAFEAAACRAAAAUQAAAFEAAAARAAAA0QAAABEAAACRAAAAV4AAAA8AAAAPAAAADwAAAA8AAAAXgAAAA== - -2,1: - ind: -2,1 - tiles: RAAAAkQAAABbAAABWwAAAV4AAABeAAAARAAAAEQAAANEAAABRAAAAEQAAAFEAAADRAAAAkQAAANEAAACXgAAAEQAAANEAAACWwAAAVsAAAJeAAAAXgAAAF4AAABEAAACRAAAA0QAAANEAAADRAAAAkQAAAJEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAADRAAAAEQAAABEAAACRAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAUQAAAFEAAABRAAAAUQAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAV4AAABEAAABRAAAAkQAAANEAAAARAAAAkQAAANEAAABRAAAAUQAAAJEAAACRAAAAUQAAANeAAAARAAAAUQAAAJEAAAARAAAA0QAAAFEAAADRAAAAkQAAABEAAABRAAAA0QAAAFEAAACRAAAAkQAAAFEAAAAXgAAAEQAAANEAAACXgAAAEQAAAFEAAABRAAAAUQAAABEAAAARAAAAUQAAABEAAAARAAAA0QAAANEAAACRAAAAkQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAkQAAABeAAAAXgAAAF4AAABEAAABRAAAAEQAAANEAAAAXgAAAE4AAABeAAAAFgAAAxYAAAFeAAAAXgAAAEQAAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAADRAAAA14AAABOAAAAXgAAABYAAANEAAABRAAAA0QAAAFEAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAJeAAAAXgAAAF4AAAAWAAABRAAAAUQAAANEAAACRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAWwAAAVsAAAJbAAADXgAAAE4AAABeAAAAFgAAAxYAAAMWAAABFgAAAhYAAAMWAAADXgAAAF4AAABeAAAAXgAAAFsAAABbAAAAWwAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAWwAAA1sAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAlsAAABbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAAAFgAAAg== - -3,1: - ind: -3,1 - tiles: AAAAAAAAAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAFEAAADRAAAAkQAAABEAAACRAAAAEQAAAJEAAABRAAAAgAAAAAAAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAABRAAAAUQAAABEAAAARAAAAkQAAAJEAAACRAAAA14AAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAEQAAABEAAADRAAAAUQAAAJEAAAARAAAAkQAAAFeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAADRAAAAEQAAAFEAAAARAAAAEQAAANEAAACRAAAAUQAAANEAAABXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAUQAAABEAAADRAAAAUQAAAJEAAABRAAAAEQAAABEAAAARAAAAV4AAAAAAAAAAAAAAAAAAABdAAAAXgAAAEQAAANEAAACRAAAAEQAAANEAAADRAAAAUQAAANEAAAARAAAAUQAAAJeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAUQAAABeAAAAXgAAAEQAAAFEAAADRAAAAUQAAABEAAABRAAAAgAAAAAAAAAAAAAAAF4AAABEAAADRAAAA0QAAAFEAAADRAAAAF4AAABEAAABRAAAAUQAAANEAAABRAAAAV4AAAAAAAAAAAAAAAAAAABeAAAARAAAA0QAAABEAAADRAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAABRAAAAEQAAAFEAAABXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABEAAADRAAAAkQAAANEAAADRAAAAl4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAAJEAAADRAAAAEQAAANeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAJEAAADRAAAAkQAAABEAAADXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -3,0: - ind: -3,0 - tiles: CgAAABYAAABEAAADRAAAAEQAAANEAAAARAAAAEQAAABEAAAARAAAA0QAAAJEAAAARAAAA0QAAAFEAAADRAAAAF4AAAAWAAACRAAAA0QAAAJeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAANEAAAAXgAAAEQAAABEAAACRAAAA0QAAAFEAAADRAAAAUQAAABeAAAARAAAAkQAAANEAAADRAAAAEQAAAFEAAAARAAAAV4AAABEAAAARAAAAUQAAAFEAAADRAAAA0QAAANEAAABXgAAAEQAAANEAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAACRAAAAkQAAAFEAAABRAAAAkQAAAJEAAAARAAAAkQAAANeAAAAXgAAAE4AAABeAAAARAAAAEQAAABEAAACRAAAAEQAAAFEAAACRAAAAUQAAABEAAADRAAAAEQAAAFEAAABTgAAAF4AAABOAAAAXgAAAEQAAABEAAAARAAAAEQAAAJEAAABRAAAAkQAAANEAAABXgAAAEQAAAFEAAACRAAAAV4AAABeAAAATgAAAF4AAABeAAAAXgAAAEQAAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABEAAACRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAACRAAAAEQAAAJEAAADRAAAAUQAAANeAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAA0QAAABEAAAARAAAAkQAAAFEAAAARAAAAEQAAAFEAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABEAAABRAAAAEQAAAJEAAABRAAAAUQAAABEAAABRAAAAkQAAAJEAAAARAAAAl4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAEQAAANEAAAARAAAAkQAAANEAAACRAAAAkQAAAJEAAADRAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAADRAAAAEQAAAJEAAAARAAAA0QAAANEAAABRAAAA0QAAAFEAAADXgAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAAkQAAABEAAACRAAAAUQAAABEAAAARAAAAEQAAABEAAABRAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAkQAAAFEAAADRAAAAkQAAAJEAAABRAAAAUQAAAJeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAAARAAAAUQAAAJEAAADRAAAA0QAAAJEAAADRAAAA0QAAAJEAAABXgAAAA== - -3,-1: - ind: -3,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAABYAAAIWAAABFgAAAV4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAl4AAABbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAMWAAADWwAAAFsAAAJbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAACWwAAA14AAABHAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAABYAAAJbAAADWwAAAVsAAANeAAAARwAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAJeAAAAWwAAAFsAAANbAAABXgAAAF4AAABHAAAAXgAAAEcAAABHAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANbAAABWwAAAV4AAABeAAAARwAAAEcAAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAABbAAABWwAAAlsAAABeAAAARwAAAF4AAABHAAAARwAAAEcAAABHAAAAXgAAAF4AAABOAAAAXgAAAFsAAANbAAACWwAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABbAAACWwAAAVsAAAFEAAABRAAAAEQAAABEAAAARwAAAEcAAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAWwAAAlsAAANbAAACRAAAAEQAAANEAAACRAAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAFsAAAFbAAADWwAAAl4AAAAWAAACRAAAAkQAAANeAAAAFgAAAhYAAAIWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAMKAAAAFgAAA0QAAANEAAADRAAAAEQAAAFEAAAARAAAAEQAAANEAAACRAAAA0QAAABEAAAARAAAAkQAAAJEAAABCgAAABYAAAFEAAACRAAAA0QAAAJEAAAARAAAA0QAAABEAAABRAAAA0QAAANEAAABRAAAA0QAAAJEAAAARAAAAA== - 0,1: - ind: 0,1 - tiles: XgAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAABYAAANbAAABWwAAAVsAAAFbAAACWwAAAlsAAAJbAAABFgAAAV4AAAAWAAAAFgAAABYAAAAWAAADFgAAA14AAAAWAAAAWwAAA1sAAABbAAABWwAAAlsAAAJbAAABWwAAABYAAAEWAAAAWwAAA1sAAAJbAAAAWwAAAVsAAAJeAAAAFgAAAVsAAAFbAAABWwAAA1sAAABbAAACWwAAAlsAAAAWAAABXgAAAFsAAABbAAABWwAAAVsAAAFbAAADXgAAABYAAANbAAABWwAAAVsAAABbAAAAWwAAAFsAAAIWAAADFgAAA14AAABbAAACWwAAAVsAAABbAAACWwAAA14AAAAWAAADWwAAAlsAAABbAAADWwAAA1sAAAFbAAABFgAAABYAAABeAAAAWwAAA1sAAABbAAACWwAAAFsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAEQAAAJEAAABRAAAA14AAAAWAAAAFgAAAxYAAAEWAAABXgAAADEAAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAABeAAAAFgAAARYAAAEWAAADFgAAAF4AAAAxAAAAMQAAADEAAABeAAAATwAAAF4AAABeAAAARAAAAEQAAAJEAAADXgAAAF4AAABeAAAAFgAAAl4AAABeAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAXgAAABYAAANeAAAAFgAAAF4AAABEAAADRAAAAkQAAABEAAADXgAAAF4AAAAxAAAAMQAAADEAAAAxAAAAMQAAAF4AAAAWAAAAFgAAAhYAAAJeAAAARAAAAEQAAAFEAAACRAAAAUQAAAJeAAAAMQAAADEAAAAxAAAAMQAAADEAAABeAAAAFgAAABYAAAEWAAABXgAAAEQAAANEAAABRAAAAEQAAANEAAABXgAAADEAAAAxAAAAMQAAADEAAAAxAAAAXgAAABYAAANeAAAAFgAAAV4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAMQAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAAFEAAABRAAAA0QAAAJEAAACRAAAAUQAAABEAAABRAAAAUQAAANEAAADRAAAAF4AAAAWAAABRAAAAkQAAAJEAAAARAAAAEQAAAFEAAABRAAAAEQAAANEAAAARAAAAUQAAAFEAAACRAAAAEQAAAIWAAACFgAAAQ== - -4,-1: - ind: -4,-1 - tiles: XgAAAEQAAAJEAAACRAAAAF4AAABOAAAATgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADXgAAAE4AAABOAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABEAAADRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAEQAAAFeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABWwAAA1sAAABeAAAAXgAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAA1sAAAJbAAADRAAAA0QAAANEAAADRAAAAEQAAANEAAAARAAAAkQAAANEAAABRAAAAV4AAABeAAAAXgAAAFsAAABbAAACWwAAA0QAAAFEAAACRAAAAUQAAANEAAADRAAAAkQAAABEAAACRAAAAkQAAAFeAAAAXgAAAF4AAABbAAADWwAAA1sAAANeAAAAXgAAAEQAAAJEAAABRAAAAkQAAAJEAAAARAAAAUQAAAFEAAAAXgAAAF4AAABeAAAAWwAAAlsAAABbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAA14AAABeAAAAXgAAAFsAAANbAAABWwAAA14AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAABRAAAAEQAAABeAAAAXgAAAF4AAABeAAAAWwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAAJEAAABRAAAAkQAAANEAAADRAAAAUQAAABEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAAARAAAAUQAAAJEAAADRAAAAEQAAAFEAAAARAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAA0QAAAFeAAAAMQAAADEAAAAxAAAAMQAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAAFEAAACCgAAADEAAAAxAAAAMQAAADEAAAAxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANEAAADRAAAAAoAAAAxAAAAMQAAADEAAAAxAAAAMQAAAA== - -4,0: - ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAJEAAABRAAAAAoAAAAxAAAAMQAAADEAAAAxAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAAUQAAANeAAAAMQAAADEAAAAxAAAAMQAAADEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAANEAAACRAAAAkQAAABEAAADRAAAAEQAAANEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAJEAAABRAAAAUQAAAJEAAADRAAAAkQAAAJEAAAARAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAEQAAABEAAADRAAAAUQAAAJEAAABRAAAAF4AAABOAAAATgAAAE4AAABeAAAATgAAAEQAAAFEAAAARAAAA0QAAANEAAABRAAAAkQAAABEAAACRAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAAJEAAABRAAAA0QAAAJEAAACRAAAAkQAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,-1: - ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAXgAAAEQAAABEAAACRAAAA0QAAABEAAAARAAAAkQAAABEAAADRAAAAEQAAANEAAACRAAAAAAAAABdAAAAAAAAAF4AAABEAAABRAAAAEQAAABEAAABRAAAAUQAAAJEAAADRAAAAkQAAAFEAAADRAAAAUQAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACRAAAAEQAAANeAAAAAAAAAF0AAABdAAAAXgAAAF0AAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABEAAAARAAAAEQAAABEAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,0: - ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABeAAAAXQAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAA0QAAAJeAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAABEAAADXgAAAAAAAABeAAAAXgAAAF4AAABEAAACRAAAAkQAAANEAAABRAAAAUQAAAJEAAACRAAAA0QAAABEAAACRAAAA0QAAAEAAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAADRAAAAEQAAAJEAAABRAAAAUQAAAFEAAADRAAAA0QAAAJEAAABAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,-2: - ind: 3,-2 - tiles: XgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAAF4AAAA6AAAAOgAAADoAAABeAAAAOgAAADoAAAA6AAAAXgAAAF0AAABeAAAAXQAAAF4AAAA6AAAAOgAAADoAAABeAAAAOgAAADoAAAA6AAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAXgAAAF0AAABeAAAAOgAAADoAAAA6AAAAXgAAADoAAAA6AAAAOgAAAF4AAAA6AAAAOgAAADoAAABeAAAAXQAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAARAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAADRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 3,-1: - ind: 3,-1 - tiles: XgAAAF4AAABeAAAARAAAAkQAAAJEAAACRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABEAAADRAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAABRAAAAkQAAANOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABXgAAAF4AAABEAAAARAAAAEQAAANEAAADTgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAl4AAABEAAACRAAAAkQAAABEAAAARAAAA04AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAkQAAAJEAAAARAAAAUQAAAFEAAACTgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA0QAAANEAAAARAAAAkQAAAJEAAACRAAAA04AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFEAAACRAAAA0QAAAFEAAAARAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACXgAAAEQAAAJeAAAARAAAA0QAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAkQAAAJEAAADXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAAJEAAADRAAAAV4AAABEAAABRAAAA0QAAAJeAAAAFgAAAhYAAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAACRAAAA0QAAANeAAAARAAAAkQAAAFEAAADXgAAABYAAAMWAAADXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAEQAAAJEAAAARAAAAUQAAAFEAAACRAAAAl4AAAAWAAABFgAAABYAAAIWAAAAXQAAAA== - 3,0: - ind: 3,0 - tiles: XgAAAEQAAAJEAAACRAAAAEQAAAJEAAAAXgAAAEQAAANEAAAARAAAAV4AAAAWAAAAFgAAAhYAAAIWAAACXgAAAF4AAABEAAABRAAAAUQAAABEAAACRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAIWAAADFgAAAl0AAABeAAAARAAAAkQAAAFEAAACRAAAAEQAAABEAAACRAAAAkQAAANEAAABXgAAABYAAAJeAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAADRAAAAkQAAAJEAAAARAAAAkQAAAFEAAADRAAAAEQAAAJEAAACRAAAA14AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAABEAAACRAAAAkQAAAJEAAACRAAAAEQAAABEAAABRAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAMWAAAAXgAAAEQAAABEAAAARAAAA0QAAAFEAAAARAAAAkQAAAFEAAABXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAF4AAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAAFeAAAARAAAAkQAAABEAAADRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAARAAAA0QAAANEAAADXgAAAEQAAAFEAAABRAAAA0QAAANeAAAAXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAEQAAAFEAAADRAAAAV4AAABEAAAARAAAA0QAAAFEAAACXgAAAE4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABEAAABRAAAA0QAAANeAAAARAAAAUQAAANEAAAARAAAAF4AAABOAAAATgAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAEQAAANeAAAAXgAAAEQAAANEAAADRAAAAkQAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAAkQAAABEAAADRAAAAS4AAABEAAACRAAAAxYAAAMWAAACFgAAAF4AAABeAAAAAAAAAF0AAABEAAAARAAAAUQAAANEAAACRAAAAEQAAAAuAAAARAAAAUQAAAJeAAAAFgAAAl4AAABeAAAAXQAAAF0AAABdAAAARAAAA0QAAABEAAABRAAAAkQAAAFEAAABLgAAAEQAAAJEAAACXgAAABYAAAJeAAAAXgAAAF4AAABdAAAAXgAAAA== - -3,-2: - ind: -3,-2 - tiles: RAAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFRAAAAUQAAAVEAAANRAAABXgAAAEQAAANEAAAAXgAAAF4AAABEAAACRAAAAkQAAAFeAAAAXgAAAF4AAABEAAAARAAAAkQAAANEAAADRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAE4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAMAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAADAAAAAwAAAAXgAAAF4AAABeAAAADwAAAA8AAAAPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMAAAAF4AAABeAAAAXgAAADUAAAA1AAAADwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAAxYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAFgAAABYAAAEWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAABYAAAAWAAADFgAAAQ== - -4,-2: - ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAWwAAAlsAAAFeAAAAWwAAA1sAAABbAAABWwAAA1sAAAJeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFsAAAFbAAABWwAAAVsAAAFbAAACWwAAA1sAAANbAAADXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAWwAAA1sAAAFbAAAAWwAAA14AAABbAAABXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAWwAAA1sAAANbAAADWwAAA14AAABeAAAAXgAAAFsAAAJbAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFsAAAJbAAAAWwAAA1sAAABbAAABXgAAAFsAAAFbAAABWwAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABbAAACWwAAAVsAAAFbAAADWwAAAFsAAAFbAAADWwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAWwAAAlsAAAJbAAADWwAAAlsAAAFeAAAAWwAAA1sAAANbAAACXgAAAAAAAABeAAAAXgAAAF4AAABdAAAAXgAAAFsAAAFbAAACWwAAAVsAAAFbAAABWwAAAlsAAAFbAAABXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXQAAAF4AAABbAAACWwAAA1sAAAFbAAAAWwAAA1sAAANeAAAAWwAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAIgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAiAAAAIgAAACIAAAAiAAAAIgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADRAAAAkQAAAJeAAAAIgAAACIAAAAiAAAAIgAAACIAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAEQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -5,-2: - ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAkQAAAJEAAABRAAAAkQAAAFEAAABRAAAA0QAAAEAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAANEAAACRAAAA0QAAAFEAAABRAAAAUQAAANEAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 0,2: - ind: 0,2 - tiles: RAAAAUQAAAJEAAACRAAAA0QAAABEAAAARAAAAUQAAABEAAADRAAAAkQAAABEAAACRAAAAEQAAANeAAAAFgAAAkQAAANEAAACRAAAAF4AAABeAAAAXgAAABYAAAEWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAABeAAAAFgAAABYAAAIWAAACFgAAABYAAABeAAAAFgAAARYAAABeAAAAFgAAABYAAAFeAAAAXgAAADwAAABeAAAAXgAAAF4AAABEAAACRAAAAkQAAAJEAAABRAAAA0QAAABEAAADRAAAA0QAAABEAAAAMQAAADwAAAA8AAAAPAAAAF4AAABEAAACRAAAAEQAAABEAAACRAAAAkQAAANEAAABRAAAA0QAAABEAAADRAAAA14AAAA8AAAAPAAAADwAAABeAAAARAAAA0QAAAEWAAABFgAAAxYAAAMWAAADFgAAARYAAAMWAAACRAAAA0QAAABPAAAAPAAAADwAAAA8AAAAXgAAAEQAAABEAAABFgAAAxYAAAEWAAABFgAAABYAAAMWAAABFgAAAEQAAAJEAAADXgAAADwAAAA8AAAAPAAAADwAAABEAAADRAAAARYAAAIWAAABFgAAABYAAAEWAAADFgAAABYAAAJEAAABRAAAA0QAAAE8AAAAPAAAADwAAABeAAAARAAAAEQAAABEAAACFgAAABYAAAIWAAAAFgAAAxYAAAFEAAAARAAAA0QAAAFeAAAAXgAAADwAAABeAAAAXgAAAEQAAANEAAACRAAAAEQAAANEAAABRAAAAEQAAANEAAADRAAAAUQAAAJEAAADXgAAABYAAAAWAAABFgAAAl4AAAAWAAACFgAAAV4AAAAWAAACFgAAARYAAAIWAAAAFgAAAl4AAAAWAAABFgAAAV4AAAAWAAAAFgAAARYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAMWAAAAXgAAAF0AAABeAAAAEwAAABYAAAMWAAADFgAAAxYAAAIWAAACEwAAA14AAABdAAAAXgAAABYAAAAWAAABFgAAAV4AAABdAAAAXgAAABMAAAETAAADFgAAAhYAAAAWAAAAEwAAAhMAAAVeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAAWAAACFgAAAhYAAAAWAAAAFgAAAxYAAAAWAAABXgAAAF0AAABeAAAARAAAAEQAAABeAAAAAAAAAF0AAABeAAAAEwAAAxMAAAUWAAADFgAAAxYAAAATAAAFEwAAAF4AAABdAAAAXgAAAA== - -1,2: - ind: -1,2 - tiles: XgAAAF4AAABEAAADRAAAAEQAAANEAAABXgAAAF4AAABEAAABRAAAAl4AAABeAAAAXgAAADwAAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAACRAAAAUQAAABEAAAARAAAAEQAAABEAAABRAAAAUQAAANEAAAARAAAAUQAAAJeAAAAXgAAAF4AAABEAAABRAAAAUQAAABEAAABRAAAAEQAAABEAAADRAAAA0QAAAFEAAACRAAAAUQAAANEAAADXgAAAE4AAABeAAAARAAAA0QAAAFEAAADRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADRAAAA0QAAAJeAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAANEAAACXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAADXgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAkQAAAJeAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAAJEAAABXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAAXgAAAE4AAABeAAAARAAAAUQAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAEQAAAJEAAAARAAAAl4AAAAWAAABFgAAAhYAAAFeAAAAFgAAABYAAAAWAAACFgAAARYAAAFeAAAAXgAAAF4AAABEAAABXgAAAEQAAAFeAAAAFgAAARYAAAEWAAAAFgAAARYAAAMWAAACFgAAABYAAAIWAAADFgAAAxYAAAIWAAABRAAAAUQAAABEAAAAXgAAABYAAAEWAAADFgAAAV4AAAAWAAACFgAAARYAAAMWAAACFgAAAhYAAAAWAAADXgAAAEQAAABEAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAAWAAADFgAAABYAAAJeAAAAXgAAAF4AAABEAAADXgAAAEQAAAJeAAAAFgAAAhYAAAEWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFEAAABRAAAAkQAAANEAAAARAAAA0QAAANEAAAARAAAAUQAAAJEAAADRAAAAEQAAAJEAAAARAAAAw== - 1,1: - ind: 1,1 - tiles: RAAAAkQAAABEAAADRAAAAUQAAANEAAACRAAAAUQAAABEAAADRAAAA0QAAAFEAAADRAAAAEQAAAJeAAAAXgAAAEQAAABEAAACRAAAAkQAAAFEAAABRAAAAkQAAABEAAAARAAAA0QAAAFEAAACRAAAAkQAAANEAAACRAAAAUQAAABEAAAARAAAA0QAAABEAAACRAAAAEQAAAJEAAAARAAAAkQAAAFEAAAARAAAAUQAAAFEAAADRAAAAV4AAABEAAADRAAAARYAAAMWAAADFgAAARYAAANEAAABFgAAARYAAAEWAAACFgAAAxYAAAFEAAACRAAAAUQAAAFEAAACRAAAAE8AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMAAAAF4AAAAwAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAFgAAAxYAAAFeAAAAXQAAAF0AAABdAAAAXgAAADAAAAAwAAAAMAAAAF4AAAAlAAAAXgAAAF4AAABdAAAAXgAAABYAAAIWAAADXgAAAF4AAABeAAAAXgAAAF4AAAAwAAAAMAAAADAAAABeAAAAJQAAAF4AAABeAAAAXQAAAF4AAAAWAAADFgAAAhYAAAIWAAADFgAAAhYAAAEWAAACMAAAADAAAAAwAAAAXgAAAFsAAABeAAAAXgAAAF0AAABeAAAAFgAAAhYAAAIWAAAAFgAAAhYAAAIWAAABXgAAADAAAAAwAAAAMAAAAF4AAABbAAACXgAAAF4AAABdAAAAXgAAABYAAAMWAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAwAAAAMAAAADAAAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAAWAAABFgAAAV4AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXQAAAF0AAABdAAAAXgAAAFsAAAJbAAABWwAAA1sAAAFbAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAWwAAAVsAAABbAAABWwAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAgAAAAIAAABeAAAAJQAAAF4AAABeAAAAXgAAAFsAAAIWAAACFgAAAhYAAAEWAAADXgAAAF4AAABeAAAAXgAAAAIAAAACAAAAXgAAACUAAAAlAAAAJQAAAF4AAABeAAAAFgAAAxYAAAAWAAACFgAAAl4AAABeAAAAXgAAAF4AAAACAAAAAgAAAF4AAABeAAAAXgAAAF4AAABeAAAAJQAAAA== - 1,2: - ind: 1,2 - tiles: FgAAABYAAAMWAAABFgAAAl4AAABeAAAAXgAAAF4AAAACAAAAAgAAAF4AAAAlAAAAJQAAACUAAAAlAAAAJQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAACAAAAAgAAAAIAAABeAAAAXgAAACUAAABeAAAAJQAAACUAAAAxAAAAMQAAADEAAAAxAAAAXgAAAF4AAABeAAAAAgAAAAIAAAACAAAAXgAAACUAAAAlAAAAXgAAACUAAABeAAAAMQAAADEAAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAAACAAAAAgAAAF4AAAAlAAAAJQAAAF4AAAAlAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAEQAAAJEAAACRAAAAUQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAkQAAAJEAAACRAAAABYAAAEWAAACFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAEQAAAFEAAABFgAAAxYAAAMWAAACFgAAABYAAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAABRAAAAhYAAAAWAAABFgAAAxYAAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAAAWAAACFgAAAkQAAABEAAABRAAAA14AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAABFgAAABYAAAFEAAAARAAAAEQAAAJeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAhYAAAIWAAABRAAAA0QAAABEAAABXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAUQAAAFEAAADRAAAAUQAAANEAAAARAAAAl4AAABdAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAARAAAAEQAAAFEAAABRAAAAEQAAAFEAAABRAAAA0QAAANeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAAJEAAADRAAAAUQAAABEAAAARAAAAEQAAAJEAAACXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAXgAAAA== - -2,2: - ind: -2,2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAXgAAADEAAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAAF4AAABeAAAAPwAAAD8AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAAF4AAABeAAAAXgAAAD8AAAA/AAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAANeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADRAAAAw== - -1,3: - ind: -1,3 - tiles: RAAAAkQAAAJEAAABRAAAAEQAAAJEAAAARAAAAkQAAAFEAAACRAAAAEQAAANEAAABRAAAA0QAAAFEAAABRAAAARYAAAIWAAACXgAAAF4AAAAMAAACXgAAAF4AAABeAAAADAAAAF4AAABeAAAAXgAAAAwAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAMAAAADAAAAwwAAAJeAAAADAAAAwwAAAMMAAAAXgAAAAwAAAAMAAAADAAAAV4AAABRAAADXgAAAF4AAABeAAAADAAAAQwAAAIMAAAAXgAAAAwAAAIMAAAADAAAAV4AAAAMAAAADAAAAQwAAAFeAAAAUQAAA14AAABeAAAAXgAAAF4AAAAMAAABXgAAAF4AAABeAAAADAAAA14AAABeAAAAXgAAAAwAAABeAAAAXgAAAFEAAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAANEAAACRAAAAUQAAANEAAADRAAAAEQAAAFEAAAARAAAAl4AAABRAAABXgAAACUAAABeAAAARAAAAkQAAABEAAACRAAAA0QAAAJEAAADRAAAA0QAAAJEAAADRAAAAEQAAAJeAAAAXgAAAF4AAAAlAAAAXgAAAEQAAANEAAAARAAAAEQAAABEAAADRAAAA0QAAANEAAABRAAAAkQAAAFEAAAAXgAAAF0AAABeAAAAJQAAACUAAABEAAADRAAAAkQAAABEAAACRAAAAEQAAABEAAABRAAAAEQAAAMwAAAAMAAAAF4AAAAAAAAAXgAAACUAAAAlAAAARAAAA0QAAAFEAAAARAAAA0QAAAFEAAAARAAAAUQAAAFEAAABMAAAADAAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABeAAAALgAAAEQAAANEAAADRAAAAC4AAABeAAAAXQAAAF4AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAC4AAABEAAABRAAAAEQAAAAuAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAADRAAAAUQAAAFEAAAARAAAA14AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAA== - -2,3: - ind: -2,3 - tiles: AAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAAwAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAhYAAAJdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,3: - ind: -3,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA== - 1,3: - ind: 1,3 - tiles: XgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABEAAADRAAAAEQAAAJEAAADRAAAAgAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAARAAAAEQAAAAWAAADFgAAAkQAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAEQAAAFEAAADRAAAAkQAAAFEAAADXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABEAAADRAAAASgAAAAoAAAAKAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABeAAAARAAAAEQAAAEoAAAAKAAAACgAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXgAAAEQAAAFEAAACKAAAACgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF4AAABEAAADRAAAAygAAAAoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,4: - ind: -1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,3: - ind: 0,3 - tiles: RAAAA0QAAANeAAAAAAAAAF0AAABeAAAAXgAAABMAAAQWAAADFgAAABYAAAITAAAFXgAAAF4AAABdAAAAXgAAAFEAAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABRAAADUQAAAl4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAFEAAANeAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAFEAAANRAAAAXgAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABRAAADUQAAAl4AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,1: - ind: 2,1 - tiles: XgAAAF4AAABEAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADRAAAAV4AAABEAAAARAAAA0QAAABEAAAARAAAAkQAAAFeAAAAMQAAADEAAABeAAAAXgAAAF4AAABEAAACRAAAAkQAAABeAAAARAAAAEQAAAJEAAACRAAAAUQAAAFEAAABWwAAAzEAAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAACRAAAA14AAAAxAAAAMQAAAF4AAABeAAAAXgAAAEQAAAJEAAADRAAAAkQAAABEAAABXgAAAF4AAABeAAAARAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAV4AAABEAAADRAAAAEQAAAElAAAAXgAAAEQAAANEAAABRAAAABYAAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAFeAAAARAAAA0QAAANeAAAAXgAAAF4AAABEAAADRAAAAEQAAAAWAAACXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACXgAAAEQAAAJEAAAAXgAAAFsAAAJbAAADRAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAl4AAABEAAAARAAAAl4AAABbAAAAXgAAAEQAAAFEAAABXgAAAFsAAAFbAAAAXgAAAF4AAABeAAAARAAAAEQAAAJeAAAARAAAAkQAAAFeAAAAXgAAAF4AAABEAAABRAAAAlsAAAFbAAAAWwAAA14AAABeAAAAXgAAAEQAAAJEAAABXgAAAEQAAAFEAAACXgAAAFsAAAJeAAAARAAAAUQAAAFeAAAAWwAAAlsAAAJeAAAAXgAAAF4AAABEAAABRAAAAEQAAABEAAACRAAAA14AAABbAAACWwAAAkQAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAl4AAABEAAAARAAAAk8AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAFsAAABeAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAATwAAAF4AAABeAAAAXgAAAEQAAAJEAAAAFgAAAxYAAAMWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAJQAAAF4AAABEAAADRAAAAV4AAAAWAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 3,1: - ind: 3,1 - tiles: RAAAA0QAAANEAAABRAAAA0QAAANEAAADLgAAAEQAAANEAAAAXgAAABYAAAFeAAAAXgAAAF4AAABdAAAAXgAAAEQAAABEAAADRAAAAEQAAAFEAAACRAAAA14AAABeAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABEAAABRAAAA0QAAAFEAAADRAAAAUQAAAFeAAAAFgAAAxYAAAEWAAADFgAAAhYAAAEWAAACXgAAAF0AAABeAAAARAAAAEQAAAFEAAABRAAAAkQAAAJEAAADFgAAAxYAAABOAAAATgAAAE4AAABOAAAAFgAAAV4AAABdAAAAXgAAAEQAAAFEAAAARAAAAkQAAAJEAAACRAAAARYAAAAWAAAATgAAAF4AAABeAAAATgAAABYAAAJeAAAAXQAAAF4AAABEAAACRAAAA0QAAAFEAAAARAAAA0QAAAAWAAACFgAAAk4AAABOAAAATgAAAE4AAAAWAAACXgAAAF0AAABeAAAARAAAAEQAAANEAAAARAAAA0QAAAJEAAAAXgAAABYAAAIWAAABFgAAABYAAAEWAAABFgAAAV4AAABdAAAAXgAAAF4AAABeAAAARAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABEAAADRAAAA0QAAAFEAAACRAAAAUQAAAJEAAAARAAAAkQAAAFeAAAAFgAAAF4AAABeAAAAXgAAAF0AAABeAAAARAAAAkQAAANEAAAARAAAAUQAAAJEAAABRAAAAEQAAAJEAAABXgAAABYAAABeAAAAXgAAAF4AAABdAAAAXgAAAEQAAAJEAAACRAAAAEQAAABEAAABRAAAAkQAAABEAAADRAAAAV4AAAAWAAABXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAADoAAAA6AAAAXgAAAF4AAABEAAAARAAAA0QAAAIWAAADFgAAAhYAAANeAAAAXgAAAAAAAABdAAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAARAAAAUQAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAEQAAANEAAABRAAAA0QAAAIWAAADXgAAAF4AAABeAAAAXgAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAABEAAAARAAAA0QAAABEAAADFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 2,2: - ind: 2,2 - tiles: JQAAACUAAABEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACUAAAAlAAAARAAAAkQAAAMWAAABFgAAAF4AAAAKAAAACgAAAAsAAAALAAAACgAAAF4AAABeAAAAXgAAAF4AAAAlAAAAXgAAAEQAAANEAAABFgAAAxYAAAFeAAAACgAAAAsAAAALAAAACwAAAAsAAABeAAAAXgAAAE8AAABeAAAAJQAAAF4AAABEAAADRAAAAhYAAAMWAAAAXgAAAAsAAAALAAAACwAAAAsAAAALAAAAXgAAAEQAAABEAAACXgAAAF4AAABeAAAARAAAAEQAAANEAAADRAAAA0QAAAELAAAACwAAAAsAAAALAAAACwAAAEQAAABEAAADRAAAAV4AAABEAAAARAAAAEQAAABEAAADRAAAA0QAAAFeAAAACwAAAAsAAAALAAAACgAAAAoAAABeAAAARAAAA0QAAABeAAAARAAAAkQAAANEAAACRAAAAUQAAAFEAAADXgAAAAoAAAALAAAACwAAAAsAAAALAAAAXgAAAEQAAAFEAAAAXgAAABYAAAIWAAACFgAAA0QAAABEAAABRAAAA0QAAAMLAAAACwAAAAsAAAALAAAACwAAAEQAAAJEAAADRAAAAF4AAAAWAAACFgAAAxYAAAJEAAABRAAAAUQAAABeAAAACwAAAAsAAAALAAAACwAAAAoAAABeAAAARAAAAEQAAABeAAAAFgAAARYAAAAWAAACRAAAAEQAAAJEAAABXgAAAAsAAAALAAAACwAAAAoAAAAKAAAAXgAAAEQAAAFEAAACXgAAABYAAAIWAAAAFgAAAEQAAAFEAAACRAAAAV4AAAAKAAAACwAAAAoAAAAKAAAACwAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAxYAAAFEAAAARAAAA0QAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAARAAAAUQAAABEAAABRAAAAEQAAAJEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAADRAAAAUQAAAFEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAABEAAACRAAAAUQAAANEAAABRAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAABXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,3: - ind: 2,3 - tiles: RAAAAEQAAAJEAAAAXgAAABYAAAMWAAABXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAABYAAAAWAAACRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABEAAADRAAAAkQAAAJeAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAACgAAAAoAAAAKAAAAF4AAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAKAAAACgAAABeAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAACgAAAAoAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,0: - ind: 4,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAXgAAAF4AAABeAAAAAAAAAA== - -3,2: - ind: -3,2 - tiles: AAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAA== - -1,-3: - ind: -1,-3 - tiles: FgAAABYAAAEWAAABFgAAAhYAAAIWAAABFgAAAhYAAAJeAAAAXgAAAE4AAABeAAAARAAAAkQAAABEAAADXgAAABYAAAIWAAADFgAAAhYAAAEWAAAAFgAAAxYAAAEWAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAA14AAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAAARAAAAEQAAABeAAAAFgAAAVEAAANRAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAARAAAA0QAAAJEAAABXgAAAFEAAAFRAAABUQAAAl4AAAAzAAAAMwAAADMAAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAANEAAACRAAAAl4AAABRAAAAUQAAA1EAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAAARAAAAkQAAABeAAAAUQAAA1EAAABRAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAARAAAA0QAAANEAAADXgAAABYAAAIWAAADFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAAFeAAAAUQAAAFEAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAABXgAAAFEAAANRAAAARAAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAAF4AAABRAAAAUQAAAUQAAAFeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAABEAAADUQAAAlEAAAJRAAACXgAAAE4AAABeAAAAUQAAAVEAAAFRAAABUQAAAF4AAABEAAACRAAAAUQAAAJEAAACRAAAAVEAAABRAAACRAAAAl4AAABOAAAAXgAAAFEAAABRAAACUQAAAFEAAABeAAAARAAAAEQAAABEAAADRAAAAUQAAAJRAAAAUQAAAUQAAAJeAAAATgAAAF4AAABRAAACUQAAAlEAAABRAAAAXgAAAEQAAABEAAABRAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAA1EAAANRAAAAUQAAA14AAABeAAAARAAAA0QAAAJEAAAAXgAAAA== - 0,-3: - ind: 0,-3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAVEAAABRAAABUQAAA1EAAAJRAAACUQAAA1EAAANRAAADUQAAAVEAAAJRAAADUQAAAVEAAAFeAAAAXgAAAFEAAANRAAADOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAAFEAAAFRAAACUQAAAFEAAAFRAAAAXgAAAF4AAABRAAABUQAAA1EAAAFRAAACUQAAA1EAAABRAAADUQAAAlEAAAFRAAABKAAAACgAAABRAAACUQAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAACUQAAAigAAAAoAAAAUQAAAVEAAANEAAACFgAAAhYAAAIWAAADFgAAABYAAANRAAAAUQAAAFEAAANeAAAAUQAAAlEAAAFRAAADUQAAAlEAAANRAAACRAAAAhYAAAAWAAACFgAAABYAAAAWAAACUQAAAFEAAAFRAAADXgAAAFEAAANRAAACUQAAAlEAAAJRAAAAUQAAAkQAAAAWAAACFgAAAhYAAAIWAAACFgAAAlEAAAFRAAABUQAAAF4AAABEAAABRAAAAEQAAAJeAAAAUQAAA1EAAANEAAAAFgAAARYAAAAWAAABFgAAAhYAAANRAAABUQAAAlEAAAFeAAAAUQAAAFEAAAJRAAADXgAAAF4AAABeAAAARAAAAhYAAAIWAAAAFgAAARYAAAEWAAAAUQAAAlEAAAJRAAACXgAAAFEAAAE5AAAAUQAAAV4AAABEAAACRAAAAl4AAABEAAABRAAAAUQAAABEAAACXgAAAFEAAAJeAAAAXgAAAF4AAABRAAADOQAAAFEAAABeAAAARAAAAkQAAAJeAAAARAAAA0QAAANEAAACRAAAAF4AAABRAAADUQAAA1EAAABRAAAAUQAAAjkAAABRAAAAXgAAAEQAAABEAAACXgAAAEQAAAFEAAADRAAAAEQAAAFeAAAAUQAAATkAAAA5AAAAOQAAADkAAAA5AAAAUQAAA0QAAABEAAAARAAAAl4AAABEAAACRAAAA0QAAAJEAAAAXgAAAFEAAAFRAAADUQAAAFEAAANRAAACUQAAAVEAAANeAAAARAAAAkQAAAFeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABRAAADUQAAAF4AAABeAAAAXgAAAFEAAAJeAAAAXgAAAF4AAABeAAAARAAAAUQAAABEAAAARAAAA0QAAANeAAAAUQAAAFEAAAEWAAACXgAAAFEAAAJRAAABRAAAARYAAAJEAAACRAAAAw== - 1,-3: - ind: 1,-3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABOAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANRAAABUQAAAVEAAABRAAACUQAAAlEAAANRAAADUQAAAVEAAABRAAAAUQAAAlEAAAJRAAACXgAAAEQAAANEAAADUQAAATkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAUQAAADgAAAJEAAACRAAAAlEAAABRAAACUQAAA1EAAABRAAACUQAAAlEAAANRAAADUQAAA1EAAAFRAAAAUQAAAlEAAAJeAAAARAAAAV4AAABRAAACXgAAAF4AAABeAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAABYAAAMWAAABWwAAA1sAAAFbAAADXgAAABYAAAMWAAACFgAAA14AAABeAAAARAAAAEQAAAFeAAAAFgAAARYAAAMWAAABFgAAA1sAAABbAAADWwAAAF4AAAAWAAACFgAAABYAAAJeAAAAXgAAAEQAAAJEAAABXgAAABYAAAIWAAAAFgAAAxYAAANbAAABWwAAAlsAAANeAAAAXgAAABYAAAFeAAAAXgAAAF4AAABEAAADRAAAAV4AAAAWAAACFgAAABYAAAIWAAACUQAAAVEAAANRAAACXgAAAA8AAAAWAAAADwAAAF4AAABeAAAARAAAAUQAAABeAAAAFgAAABYAAAIWAAADFgAAA1EAAAFRAAAAUQAAAV4AAAAPAAAAFgAAAQ8AAABeAAAAXgAAAEQAAAJEAAABXgAAABYAAAIWAAACFgAAARYAAAFRAAABUQAAAFEAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAV4AAABEAAADRAAAAFEAAAFRAAACUQAAADoAAAA6AAAAOgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAA== - -3,4: - ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,4: - ind: -2,4 - tiles: AAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,-1: - ind: 4,-1 - tiles: XgAAAF0AAABeAAAAOgAAADoAAAA6AAAAXgAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABeAAAAOgAAADoAAAA6AAAAXgAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABeAAAAXQAAAF4AAAA6AAAAOgAAADoAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABeAAAAXQAAAF4AAAA6AAAAOgAAADoAAABeAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABeAAAAOgAAADoAAAA6AAAAXgAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAA== - 4,-2: - ind: 4,-2 - tiles: XQAAAF0AAAAAAAAAXgAAADoAAAA6AAAAOgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAAA6AAAAOgAAADoAAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAABeAAAAXgAAADoAAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABeAAAAXQAAAF4AAAA6AAAAOgAAADoAAABeAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABeAAAAOgAAADoAAAA6AAAAXgAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABeAAAAOgAAADoAAAA6AAAAXgAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAA== - 3,-3: - ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAOgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - 5,0: - ind: 5,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAARYAAAAWAAAAFgAAAgAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAFgAAABYAAAEWAAACFgAAAhYAAAJdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAABeAAAAXQAAABYAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXgAAAF0AAAAWAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAFgAAA10AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAABYAAANdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAF0AAAAWAAABFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAABYAAAFdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAFgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAABYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAFgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAABYAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAA== - 4,-3: - ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-3: - ind: 2,-3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANeAAAAUQAAA1EAAAJRAAACUQAAAFEAAAFRAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABOAAAADgAAAE4AAABOAAAAjgAAAI4AAADOAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAV4AAABRAAAAUQAAAFEAAAFRAAAAUQAAA1EAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAUQAAAFoAAABRAAABSgAAAEoAAAFKAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAFEAAAFaAAADUQAAAkoAAAFKAAACSgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAF4AAABRAAADWgAAA1EAAAJKAAACSgAAA0oAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACUAAAAlAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAWwAAAV4AAAAlAAAAXgAAAF4AAABeAAAAJQAAAF4AAABdAAAAXQAAAF4AAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACUAAABeAAAAXQAAAF4AAABeAAAAOgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAXgAAADoAAABeAAAAXgAAAF4AAABeAAAAWwAAA14AAAAlAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAAA== - 3,2: - ind: 3,2 - tiles: XgAAAF4AAABeAAAAXgAAAE8AAABEAAACRAAAAEQAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAARAAAAUQAAABEAAACXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABHAAAARwAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABEAAADRAAAAl4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAARAAAAEQAAANEAAABRAAAAEQAAAFeAAAAXgAAAF4AAABOAAAAXgAAAEcAAABeAAAAXgAAAF4AAABHAAAAXgAAAEQAAAFEAAAARAAAAUQAAAFEAAACXgAAAF0AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABHAAAARwAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABdAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAIWAAADFgAAAhYAAAJeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAABYAAAMWAAADFgAAAhYAAAIWAAADXgAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAF4AAAAWAAACFgAAAhYAAAAWAAACFgAAA14AAABdAAAAAAAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAFgAAABYAAAMWAAABFgAAARYAAANeAAAAXQAAAAAAAAAAAAAAXgAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAA== - 4,2: - ind: 4,2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAE4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABeAAAAXQAAAAAAAABdAAAAAAAAAA== - 4,1: - ind: 4,1 - tiles: XgAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAF0AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABdAAAAAAAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABdAAAAAAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXQAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAXgAAAF4AAABeAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,3: - ind: 3,3 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,-3: - ind: -2,-3 - tiles: FgAAAhYAAAIWAAACFgAAAxYAAAIWAAACFgAAAhYAAAIWAAAAXgAAAFEAAAJRAAADUQAAAl4AAAAWAAADFgAAAxYAAAMWAAACFgAAAxYAAAAWAAAAFgAAAxYAAAEWAAABFgAAABYAAANRAAACUQAAA1EAAABeAAAAFgAAARYAAAIWAAAAFgAAABYAAAMWAAABFgAAABYAAAMWAAADFgAAAxYAAAMWAAAAUQAAAFEAAAJRAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAFgAAAl4AAABeAAAAFgAAAV4AAABeAAAAXgAAAFEAAAJRAAAAUQAAAl4AAAAWAAADFgAAAlEAAAFRAAADXgAAAFEAAANRAAAAXgAAAFEAAABRAAAAXgAAAFEAAAJRAAABUQAAAFEAAAFeAAAAUQAAAlEAAANRAAACUQAAAV4AAABRAAACUQAAAl4AAABRAAACUQAAAF4AAABRAAABUQAAAFEAAABRAAABUQAAAVEAAABRAAACUQAAA14AAABeAAAAUQAAAV4AAABeAAAAUQAAAV4AAABeAAAAUQAAAlEAAABRAAAAUQAAAFEAAABRAAABUQAAAlEAAABRAAACUQAAA1EAAABRAAABUQAAAlEAAABRAAAAUQAAAlEAAANRAAABUQAAAVEAAAFeAAAAFgAAABYAAABRAAABUQAAAVEAAAJRAAABUQAAAFEAAAJRAAADUQAAAl4AAABRAAAAUQAAA1EAAABRAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAF4AAABRAAACXgAAAF4AAABeAAAAXgAAAFEAAABRAAAAUQAAA14AAABRAAABUQAAAFEAAAJRAAABUQAAAFEAAANRAAABUQAAAlEAAABRAAAAUQAAA14AAAAWAAACFgAAARYAAANeAAAAUQAAAFEAAANRAAADUQAAAlEAAABRAAABUQAAAFEAAAJRAAAAUQAAAVEAAABeAAAAUQAAA1EAAAJRAAACXgAAAFEAAABRAAAAUQAAA1EAAAJRAAADUQAAAVEAAANRAAABUQAAAFEAAANRAAABXgAAAFEAAANRAAAAUQAAAV4AAABRAAACUQAAA1EAAANRAAACUQAAAFEAAAJRAAAAUQAAAFEAAAJRAAACUQAAAlEAAANRAAABUQAAAFEAAAJRAAABUQAAAFEAAABRAAABUQAAAFEAAAJRAAACKAAAAFEAAANRAAABUQAAAFEAAANeAAAAUQAAAVEAAAJRAAADXgAAAFEAAANRAAACUQAAAlEAAANRAAADUQAAAVEAAAJRAAACUQAAAVEAAABRAAABUQAAA1EAAABRAAACUQAAAF4AAABeAAAAXgAAAA== - -3,-3: - ind: -3,-3 - tiles: XgAAAF4AAABeAAAAXgAAAFEAAABRAAACUQAAAl4AAABEAAACRAAAAF4AAAAWAAACFgAAARYAAAAWAAABFgAAA1EAAABRAAAAUQAAAVEAAAFRAAABUQAAAlEAAAJRAAAARAAAAUQAAAEWAAACFgAAAhYAAAEWAAABFgAAARYAAABeAAAAXgAAAF4AAABeAAAAUQAAAVEAAAJRAAACXgAAAEQAAAFEAAAAXgAAABYAAAEWAAABFgAAAhYAAAEWAAABAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABDAAAAQwAAAEMAAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAARAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAAXgAAAEQAAABEAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAEQAAANEAAADXgAAAF4AAABeAAAARAAAA0QAAAFEAAABRAAAAkQAAANeAAAAXgAAAF4AAABEAAADRAAAA0QAAABeAAAARAAAAV4AAABeAAAAXgAAAEQAAANRAAABUQAAA1EAAAJRAAAAXgAAAEQAAAFeAAAAXgAAAEQAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABEAAADUQAAAlEAAABRAAACUQAAAlEAAAFEAAACRAAAAEQAAAFeAAAARAAAAV4AAABEAAACXgAAAF4AAABeAAAARAAAAFEAAAFRAAAAUQAAAVEAAABeAAAAXgAAAF4AAABEAAABXgAAAF4AAABeAAAARAAAAF4AAABeAAAAXgAAAEQAAAFRAAACUQAAAVEAAAFRAAAAUQAAAw== - 0,-4: - ind: 0,-4 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAF0AAABOAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAqAAAAKgAAACoAAABeAAAARwAAAF4AAABEAAACRAAAAEQAAAFEAAACRAAAA10AAABeAAAAOgAAADoAAAA6AAAAKgAAACoAAAAqAAAAKgAAACoAAABeAAAAXgAAAEQAAANEAAAARAAAAUQAAAJdAAAAXgAAADoAAAA6AAAAOgAAAF4AAABeAAAAKgAAACoAAAAqAAAAXgAAAEQAAAFEAAAARAAAA0QAAANEAAACXgAAAF4AAAA6AAAAOgAAADoAAABeAAAAXgAAAF4AAAAqAAAAKgAAAF4AAABEAAACRAAAA0QAAANEAAADRAAAAkQAAANeAAAAXgAAABYAAAJeAAAARAAAAkcAAAAWAAABFgAAAyoAAABeAAAARAAAAUQAAAFEAAAARAAAAkQAAAFEAAAAXgAAAEQAAABEAAAARAAAAF4AAABHAAAAXgAAAF4AAAAWAAADXgAAAEQAAANRAAADUQAAAlEAAABRAAAAUQAAAUQAAANEAAAARAAAA0QAAABeAAAAXgAAABYAAANeAAAAXgAAAF4AAABRAAADUQAAAVEAAAJRAAAAUQAAAFEAAABEAAACRAAAAUQAAANEAAABXgAAAF4AAAAWAAABXgAAAEcAAABeAAAAUQAAA1EAAANRAAADUQAAAlEAAAJRAAADXgAAAEQAAAFEAAAARAAAAw== - -1,-4: - ind: -1,-4 - tiles: XgAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAkQAAAJEAAAARAAAA0QAAAJEAAABRAAAAEQAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAAFEAAADRAAAAkQAAAJEAAABRAAAAkQAAANEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANEAAADRAAAA0QAAANEAAADRAAAA0QAAAJEAAACRAAAAkQAAANeAAAARAAAAF4AAABeAAAAXgAAABYAAAIWAAADFgAAAl4AAAAWAAACFgAAAxYAAANeAAAARAAAAUQAAAFEAAABXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAF4AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAUQAAABeAAAARAAAAl4AAABOAAAATgAAAE4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADRAAAA14AAABRAAADUQAAAl4AAAATAAACEwAAARMAAANeAAAATgAAAF4AAABeAAAAXgAAABYAAABEAAABRAAAAUQAAANeAAAAUQAAA1EAAANeAAAAEwAAAxMAAAYTAAAFXgAAAE4AAABeAAAAXgAAAF4AAAAWAAADRAAAAUQAAANEAAAAXgAAAFEAAANRAAABXgAAABMAAAETAAAEEwAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAACRAAAAUQAAANeAAAAFgAAAxYAAAEWAAADFgAAAxYAAAMWAAADFgAAARYAAANeAAAAXgAAAE4AAABeAAAARAAAA0QAAABEAAADRAAAAhYAAAIWAAABFgAAAxYAAAEWAAADFgAAAxYAAAEWAAABXgAAAF4AAABOAAAAXgAAAEQAAAJEAAADRAAAAEQAAAIWAAABFgAAAhYAAAMWAAABFgAAABYAAAMWAAACFgAAAF4AAABeAAAATgAAAF4AAABEAAAARAAAA0QAAAFeAAAAFgAAARYAAAIWAAAAFgAAAxYAAAIWAAABFgAAARYAAANeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAACXgAAAA== - -2,-4: - ind: -2,-4 - tiles: XgAAABYAAAIWAAAAXgAAADEAAAAxAAAAMQAAADEAAAAWAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAACRAAAAU4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAARAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAFgAAAUQAAAIWAAACRAAAAxYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAAXgAAAEcAAABeAAAAXgAAAEQAAAIWAAADRAAAAhYAAABEAAABXgAAAFEAAAFRAAABUQAAAF4AAABEAAADRAAAAV4AAABeAAAAXgAAAF4AAAAWAAABRAAAAhYAAAJEAAABFgAAAkQAAANRAAADUQAAA1EAAAFeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAARAAAAxYAAAFEAAABFgAAAUQAAABeAAAAUQAAAVEAAANRAAADUQAAAVEAAAFRAAAARwAAAEcAAABeAAAAXgAAABYAAABEAAAAFgAAAUQAAAIWAAACXgAAAFEAAAJRAAABUQAAAFEAAAJRAAADUQAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAABUQAAAFEAAABRAAACUQAAAVEAAAMWAAAAFgAAA14AAAAWAAAAFgAAA1EAAAFRAAABUQAAAVEAAAFeAAAAUQAAAFEAAANRAAAAXgAAAF4AAABeAAAAFgAAABYAAANeAAAAFgAAABYAAANRAAABUQAAAFEAAAFRAAAAXgAAABYAAAIWAAADFgAAAl4AAAAWAAAAFgAAABYAAAIWAAADXgAAABYAAAIWAAABUQAAAlEAAAJRAAACUQAAAF4AAABRAAACUQAAAVEAAABeAAAAFgAAAhYAAAMWAAACXgAAAF4AAABeAAAAFgAAABYAAAEWAAABFgAAAxYAAAJeAAAAUQAAAFEAAAJRAAADXgAAABYAAAEWAAABFgAAAV4AAAAWAAADXgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAFEAAABRAAACUQAAABYAAAMWAAADFgAAAw== - -3,-4: - ind: -3,-4 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAE4AAABeAAAARwAAAEcAAABHAAAARwAAACoAAAAqAAAAKgAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAAXgAAAF4AAAAqAAAAKgAAACoAAABeAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAKgAAACoAAAAqAAAAXgAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAEcAAABHAAAARwAAACoAAAAqAAAAKgAAAF4AAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAqAAAAKgAAACoAAABeAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAUQAAA1EAAAJRAAACKgAAACoAAAAqAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAFEAAANRAAACUQAAAV4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAANRAAADUQAAAVEAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAARYAAAEWAAACAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -4,-3: - ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAUQAAAFEAAANRAAAAUQAAAFEAAAFRAAADXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAFEAAAJRAAAAUQAAAlEAAAJRAAACUQAAA1EAAAJdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABRAAAAUQAAA1EAAAJRAAABUQAAAFEAAAJeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAARwAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAWwAAAFsAAABbAAACXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAWwAAAVsAAABbAAADXgAAAFsAAABbAAADWwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAWwAAAVsAAAJeAAAAXgAAAFsAAABbAAAAWwAAA1sAAABeAAAAXgAAAA== - -4,-4: - ind: -4,-4 - tiles: XQAAAAAAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAFEAAAJRAAACUQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABRAAACUQAAAl4AAABRAAABUQAAAVEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAUQAAAVEAAAJRAAAAUQAAAVEAAANRAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAFEAAAFRAAADUQAAA1EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABRAAAAUQAAAFEAAAJRAAAAUQAAAVEAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAUQAAAlEAAANeAAAAUQAAAFEAAAFRAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAABXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABRAAABUQAAA1EAAAJRAAADUQAAAVEAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAUQAAA1EAAAJRAAAAUQAAA1EAAABRAAABXgAAAA== - -5,-3: - ind: -5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEcAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABHAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,-5: - ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAAAAAAXQAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -2,-5: - ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAAAWAAADFgAAABYAAAMWAAACFgAAAxYAAABeAAAAFgAAARYAAAMWAAABFgAAAhYAAAMWAAACFgAAAl4AAABeAAAAFgAAAxYAAAAWAAADFgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAxYAAAMWAAACFgAAABYAAAFeAAAAXgAAABYAAAIWAAADFgAAAxYAAAAWAAABFgAAABYAAABeAAAAFgAAABYAAAAWAAACFgAAARYAAAIWAAACXgAAAF4AAAAWAAADFgAAAxYAAAMWAAACFgAAAhYAAAMWAAABFgAAABYAAAAWAAABFgAAARYAAAIWAAAAFgAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAAF4AAAAWAAACFgAAAF4AAAAWAAACFgAAAxYAAAEWAAACFgAAAxYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAA14AAABeAAAAXgAAABYAAAAWAAAAFgAAAhYAAAAWAAAAXgAAABYAAAEWAAADXgAAADEAAAAxAAAAMQAAADEAAAAWAAACFgAAAV4AAAAWAAACFgAAAhYAAAMWAAADFgAAAF4AAAAWAAAAFgAAAxYAAAExAAAAMQAAADEAAAAxAAAAXgAAAF4AAABeAAAAFgAAARYAAAAWAAABFgAAABYAAAFeAAAAFgAAAhYAAABeAAAAMQAAADEAAAAxAAAAMQAAAF4AAAAWAAADFgAAARYAAAIWAAADFgAAABYAAAIWAAABXgAAABYAAAMWAAACXgAAADEAAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAAAWAAADFgAAAxYAAAMWAAAAFgAAAA== - -4,-5: - ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXQAAAAAAAABdAAAAXgAAAF0AAAAAAAAAXQAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAABdAAAAXgAAAF0AAABeAAAAXQAAAF4AAABdAAAAXgAAAF0AAABdAAAAXQAAAAAAAABdAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAA== - 4,3: - ind: 4,3 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABeAAAAXgAAAF0AAABeAAAAXgAAAF0AAABeAAAAXgAAAF0AAABeAAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABdAAAAXgAAAF4AAABdAAAAXgAAAF4AAABdAAAAXgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF0AAABeAAAAXgAAAF0AAABeAAAAXgAAAF0AAABeAAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABdAAAAXgAAAF4AAABdAAAAXgAAAF4AAABdAAAAXgAAAF4AAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABeAAAAXgAAAF0AAABeAAAAXgAAAF0AAABeAAAAXgAAAF0AAABeAAAAXgAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABdAAAAXgAAAF4AAABdAAAAXgAAAF4AAABdAAAAXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-4: - ind: 1,-4 - tiles: XQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAFgAAAU4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAEQAAAFeAAAATgAAABYAAANOAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABEAAAAXgAAAE4AAAAWAAACTgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAATgAAAE4AAABOAAAARAAAA14AAAAWAAACFgAAARYAAAFeAAAAKAAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAAARAAAA0QAAAJEAAADRAAAAkQAAABEAAADXgAAACgAAABeAAAAXQAAAF4AAABOAAAAXgAAAEQAAAFEAAACRAAAAkQAAABEAAADRAAAAUQAAABEAAABRAAAAl4AAAAoAAAAXgAAAF0AAABeAAAATgAAAF4AAABEAAACRAAAAkQAAANEAAABRAAAAkQAAAJEAAACRAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAFEAAABRAAADUQAAABYAAAAWAAAAFgAAAhYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAABUQAAAFEAAAEWAAADFgAAABYAAAEWAAACXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADRAAAAkQAAAFEAAACUQAAAlEAAANRAAABFgAAABYAAAIWAAABFgAAAV4AAABeAAAAXgAAAF4AAABEAAACRAAAAEQAAAJEAAADRAAAAVEAAANRAAABUQAAAhYAAAAWAAACFgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAV4AAAAWAAABFgAAAhYAAAIWAAADFgAAARYAAAIWAAABXgAAAF4AAABeAAAAXgAAAA== - -1,-5: - ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAIWAAACXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAMWAAADFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAABYAAABeAAAARAAAAEQAAAFEAAADRAAAAkQAAANEAAAARAAAAEQAAAJEAAABRAAAA0QAAAJeAAAAFgAAABYAAAAWAAAAXgAAAEQAAABEAAADRAAAA0QAAAFEAAADRAAAA0QAAAJEAAADRAAAA0QAAAJEAAABXgAAABYAAAAWAAABFgAAAV4AAABEAAACRAAAAEQAAABEAAABRAAAA0QAAAJEAAAARAAAAkQAAAFEAAADRAAAAkQAAAEWAAABFgAAAl4AAABeAAAARAAAA0QAAAJEAAACRAAAA0QAAAJeAAAARAAAA0QAAAJEAAADRAAAAkQAAABeAAAAFgAAAhYAAAFeAAAARAAAAkQAAAJEAAAARAAAAkQAAANEAAAAKAAAAEQAAABEAAADRAAAA0QAAAJEAAABXgAAABYAAAMWAAADFgAAAEQAAAJEAAAARAAAA0QAAAFEAAACRAAAAV4AAABEAAAARAAAAUQAAAFEAAABRAAAAV4AAAAWAAADFgAAAxYAAAJEAAACRAAAA0QAAABEAAABRAAAAkQAAAIoAAAARAAAAEQAAANEAAAARAAAAUQAAAJeAAAAFgAAABYAAABeAAAARAAAAUQAAAJEAAAARAAAAUQAAANEAAABXgAAAEQAAAJEAAAARAAAAkQAAANEAAABXgAAAA== - 0,-5: - ind: 0,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAABEAAADXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAJEAAACRAAAA0QAAAFeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAA0QAAANEAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAARAAAAkQAAAJEAAADRAAAAV4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAEQAAABEAAABRAAAA0QAAAFeAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABEAAADRAAAAUQAAANEAAACXgAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAARAAAAUQAAAFEAAABRAAAA14AAABeAAAAXgAAAF0AAABeAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAADAAAAAwAAAAMAAAADAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAF4AAABeAAAATgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-4: - ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAKAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAACgAAABeAAAATgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAKAAAAF4AAAAoAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAACgAAABeAAAAKAAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAACgAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-5: - ind: 2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAA== - 2,-6: - ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAA== - 1,-5: - ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAF4AAABdAAAAXQAAAF0AAABeAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXgAAAF0AAABdAAAAXQAAAF4AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAA== - 1,-6: - ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAA== - 5,-1: - ind: 5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAABYAAAEWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAWAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAFgAAAV0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXQAAABYAAAJdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAWAAADFgAAAxYAAAEWAAADFgAAAQ== - 6,0: - ind: 6,0 - tiles: FgAAABYAAAMWAAADFgAAAhYAAAMWAAADFgAAARYAAAEWAAACFgAAAhYAAAAWAAABFgAAARYAAAMWAAADFgAAAxYAAABeAAAAFgAAAxYAAAEWAAACXgAAABYAAAEWAAABFgAAAhYAAAIWAAACXgAAABYAAAMWAAAAFgAAAhYAAANdAAAAXgAAABYAAAEWAAADFgAAAF4AAAAWAAAAFgAAAxYAAAEWAAACFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAFgAAAhYAAAIWAAAAFgAAARYAAAAWAAACFgAAAV4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAABYAAAIWAAAADwAAAA8AAAAPAAAAFgAAAxYAAAFeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAWAAACDwAAAA8AAAAWAAABDwAAAA8AAAAWAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAXgAAAF4AAABeAAAADwAAAA8AAABeAAAAXgAAAF4AAAAPAAAADwAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAABYAAAAPAAAAXgAAACwAAABeAAAADwAAABYAAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABeAAAAXgAAACwAAAAWAAABDwAAABYAAAIWAAAAFgAAAw8AAAAWAAACLAAAAF4AAABeAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAFgAAAQ8AAABeAAAAXgAAAF4AAAAPAAAAFgAAA14AAABeAAAAXgAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAAAWAAACFgAAAxYAAAEWAAACFgAAARYAAAMWAAABXgAAAF4AAAAAAAAAAAAAABYAAAJdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAWAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAFgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA== - 6,-1: - ind: 6,-1 - tiles: FgAAAV0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAABYAAAJdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAWAAACXQAAAAAAAABeAAAAXgAAAA8AAAAPAAAADwAAABYAAAAPAAAADwAAAA8AAABeAAAAXgAAAAAAAABdAAAAFgAAAV0AAAAAAAAAXgAAAF4AAAAWAAABFgAAABYAAAIWAAAAFgAAARYAAAMWAAACXgAAAF4AAAAAAAAAXQAAABYAAANdAAAAXQAAAF4AAABeAAAADwAAAA8AAAAWAAAALAAAABYAAAEPAAAADwAAAF4AAABeAAAAXQAAAF0AAAAWAAADXQAAAAAAAABeAAAADwAAAA8AAAAPAAAAFgAAASwAAAAWAAABDwAAAA8AAAAPAAAAXgAAAAAAAABdAAAAFgAAAF0AAAAAAAAAXgAAABYAAAAWAAAAFgAAARYAAAIWAAACFgAAABYAAAAWAAABFgAAA14AAAAAAAAAXQAAABYAAAFdAAAAAAAAAF4AAAAsAAAAFgAAAywAAABeAAAAFgAAAF4AAAAsAAAAFgAAAywAAABeAAAAAAAAAF0AAAAWAAABXQAAAAAAAABeAAAALAAAABYAAAEsAAAAXgAAABYAAABeAAAALAAAABYAAAMsAAAAXgAAAAAAAABdAAAAFgAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAABYAAAFdAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAF4AAABeAAAAXgAAAF0AAAAWAAADFgAAABYAAAMWAAAAFgAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAFgAAAV4AAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAABYAAABeAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAF4AAABeAAAAXgAAAAAAAABdAAAAXgAAAF4AAAAWAAABXgAAAF4AAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAV4AAAAWAAADFgAAAhYAAABeAAAAFgAAAxYAAAAWAAADFgAAAxYAAAFeAAAAFgAAARYAAAAWAAADFgAAAQ== - 6,1: - ind: 6,1 - tiles: FgAAA10AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAABYAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAWAAADFgAAAhYAAAMWAAADFgAAARYAAAEWAAABFgAAAxYAAAMWAAACFgAAARYAAAMWAAAAFgAAAxYAAAIWAAACXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAFgAAARYAAAAWAAACFgAAARYAAAJdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAABYAAAAWAAACFgAAABYAAAEWAAABXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 7,1: - ind: 7,1 - tiles: FgAAAl0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAANdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 7,0: - ind: 7,0 - tiles: FgAAAxYAAAIWAAABFgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXQAAABYAAAJdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF0AAAAWAAADXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABdAAAAFgAAAV0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAABYAAANdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAWAAACXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAABYAAAIWAAADFgAAAV0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAWAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAFgAAAV0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAABYAAAFdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAWAAABXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAFgAAAl0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAABYAAAFdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAADXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAV0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 7,-1: - ind: 7,-1 - tiles: FgAAAV0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAFdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAA10AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAFdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAJdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAl0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABFgAAAhYAAAEWAAADXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAFgAAAl0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAABYAAAFdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAF0AAAAWAAABXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABdAAAAFgAAAl0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 7,-2: - ind: 7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAA10AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 6,-2: - ind: 6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAWAAABFgAAABYAAAIWAAAAFgAAA10AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAFgAAAxYAAAMWAAADFgAAABYAAANdAAAAXQAAAF0AAABdAAAAXQAAABYAAAAWAAABFgAAAxYAAAAWAAAAFgAAARYAAAMWAAACFgAAAhYAAAMWAAABFgAAABYAAAIWAAAAFgAAAhYAAAIWAAADXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAFgAAAl0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA== - 5,1: - ind: 5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,-2: - ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 347: -31,4 - - node: - color: '#FFFFFFFF' - id: Arrows - decals: - 357: -43,2 - 360: -35,9 - 361: -34,9 - 648: -3,36 - - node: - angle: -1.5707963267948966 rad - color: '#52B4E996' - id: ArrowsGreyscale - decals: - 1541: -5,-26 - 1542: -5,-25 - - node: - color: '#52B4E996' - id: ArrowsGreyscale - decals: - 1539: -10,-23 - 1540: -9,-23 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 20: -18,-6 - 21: -17,-6 - 22: -16,-6 - 23: -15,-6 - 24: -14,-6 - 107: -17,-12 - 136: -17,5 - 137: -20,6 - 138: -20,3 - 244: -29,5 - 312: -39,10 - 313: -38,11 - 314: -39,13 - 315: -38,13 - 316: -37,13 - 317: -39,15 - 318: -38,15 - 319: -37,15 - 320: -39,17 - 321: -38,17 - 322: -37,17 - 323: -39,19 - 324: -38,19 - 325: -37,19 - 326: -41,4 - 327: -41,5 - 345: -33,7 - 346: -34,13 - 348: -37,23 - 359: -29,4 - 405: -22,12 - 509: -44,5 - 637: -3,38 - 638: -7,38 - 642: -4,40 - 643: -5,40 - 644: -6,40 - 760: 0,39 - 780: 17,46 - 900: -37,33 - 967: 45,0 - 968: 45,1 - 969: 45,-4 - 970: 45,-3 - 971: 46,-12 - 972: 46,-11 - 973: 46,-10 - 974: 47,-10 - 975: 47,-11 - 976: 47,-12 - 977: 48,-12 - 978: 48,-11 - 979: 48,-10 - 980: 49,-10 - 981: 49,-11 - 982: 49,-12 - 1027: 47,-4 - 1038: 50,-9 - 1039: 51,-19 - 1076: 60,5 - 1077: 59,5 - 1086: 55,11 - 1087: 56,11 - 1088: 56,8 - 1089: 56,7 - 1093: 57,-3 - 1094: 57,-2 - 1095: 57,-1 - 1096: 57,0 - 1097: 50,7 - 1098: 50,10 - 1125: 29,12 - 1126: 28,12 - 1127: 27,53 - 1128: 29,49 - 1129: 30,49 - 1130: 32,49 - 1131: 33,49 - 1155: 27,12 - 1156: 26,12 - 1171: -24,26 - 1173: -29,28 - 1551: -14,-38 - 1572: -38,-37 - 1576: -6,-27 - 1577: -10,-29 - 1578: -17,-29 - 1579: -15,-52 - 1681: -47,-38 - 1685: -46,-36 - 1686: -46,-34 - 1687: -47,-34 - 1692: -42,-37 - 1713: -58,-12 - 1714: -59,-12 - 1891: 2,-42 - 1892: 4,-42 - 1893: 4,-40 - 1894: 2,-40 - 1900: 24,-49 - 1901: 25,-49 - 1902: 26,-49 - 1903: 27,-49 - 1904: 24,-53 - 1905: 24,-52 - 1906: 24,-51 - 1907: 25,-51 - 1908: 25,-52 - 1909: 25,-53 - 1910: 26,-53 - 1911: 26,-52 - 1912: 26,-51 - 1913: 27,-51 - 1914: 27,-52 - 1915: 27,-53 - 1941: 11,-49 - 2049: -12,-71 - 2050: -10,-71 - 2051: -4,-71 - 2067: 50,12 - 2071: 47,12 - 2072: 44,13 - 2148: 54,16 - 2377: 34,-44 - 2378: 35,-44 - 2379: 39,-44 - 2380: 37,-44 - 2381: 36,-44 - 2383: 38,-44 - 2388: 37,-40 - 2389: 38,-39 - 2390: 39,-40 - 2391: 38,-41 - - node: - color: '#FFFFFFFF' - id: BotGreyscale - decals: - 1178: 56,41 - 1179: 55,40 - 1180: 56,39 - 1181: 57,40 - 1924: 23,-49 - 1925: 22,-49 - 1926: 21,-49 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 1573: -37,-37 - 1574: -36,-37 - 1575: -38,-32 - 2386: 37,-41 - 2387: 39,-39 - - node: - color: '#FFFFFFFF' - id: BotLeftGreyscale - decals: - 1174: 55,39 - 1175: 57,41 - - node: - color: '#FFFFFFFF' - id: BotRight - decals: - 109: -15,-16 - 110: -15,-17 - 149: 10,-13 - 646: -7,36 - 647: -5,36 - 1552: -14,-35 - 1553: -14,-34 - 2384: 39,-41 - 2385: 37,-39 - - node: - color: '#FFFFFFFF' - id: BotRightGreyscale - decals: - 1176: 57,39 - 1177: 55,41 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 779: 17,40 - - node: - color: '#D381C996' - id: BrickTileSteelCornerNe - decals: - 2220: 24,-58 - - node: - color: '#D381C996' - id: BrickTileSteelCornerNw - decals: - 2221: 21,-58 - - node: - color: '#D381C996' - id: BrickTileSteelLineE - decals: - 2216: 24,-60 - 2217: 24,-59 - - node: - color: '#D381C996' - id: BrickTileSteelLineN - decals: - 2218: 23,-58 - 2219: 22,-58 - - node: - color: '#D381C996' - id: BrickTileSteelLineW - decals: - 2222: 21,-59 - 2223: 21,-60 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 2906: 104,-14 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineE - decals: - 2910: 101,-9 - 2911: 101,-8 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineE - decals: - 2912: 107,-9 - 2913: 107,-8 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineE - decals: - 2904: 105,-11 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 2202: 19,-51 - 2203: 19,-50 - 2204: 19,-49 - 2905: 105,-12 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 2296: -21,-24 - 2297: -22,-24 - 2298: -23,-24 - 2299: -19,-24 - - node: - color: '#D381C996' - id: BrickTileWhiteLineN - decals: - 2225: 29,-55 - 2226: 28,-55 - 2227: 27,-55 - 2228: 26,-55 - 2229: 25,-55 - 2230: 24,-55 - 2231: 21,-55 - 2232: 22,-55 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 2205: 10,-56 - 2206: 9,-56 - 2207: 8,-56 - 2208: 7,-56 - 2209: 6,-56 - 2224: 25,-60 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 2305: -19,-27 - 2306: -20,-27 - 2307: -21,-27 - 2308: -22,-27 - 2309: -23,-27 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineW - decals: - 2914: 107,-9 - 2915: 107,-8 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 2908: 101,-9 - 2909: 101,-8 - - node: - color: '#D381C996' - id: BrickTileWhiteLineW - decals: - 2199: 17,-51 - 2200: 17,-50 - 2201: 17,-49 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineW - decals: - 2907: 104,-14 - - node: - color: '#A4610696' - id: BrickTileWhiteLineW - decals: - 2903: 103,-12 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineW - decals: - 2902: 103,-11 - - node: - color: '#FFFFFFFF' - id: Busha2 - decals: - 155: 19,-22 - 1659: -46.96055,-56.174328 - - node: - color: '#FFFFFFFF' - id: Bushb2 - decals: - 1658: -46.9918,-55.299328 - - node: - color: '#FFFFFFFF' - id: Bushb3 - decals: - 6: 12.498397,2.9949365 - 15: -15.967909,-6.9661565 - 514: -54.00393,-1.0674171 - 1506: -28,-34 - - node: - color: '#FFFFFFFF' - id: Bushd4 - decals: - 153: 17,-22 - 1149: 33.982124,53.777065 - 1151: 33.93525,52.66769 - - node: - color: '#FFFFFFFF' - id: Bushe1 - decals: - 181: 25.074003,-20.175154 - - node: - color: '#FFFFFFFF' - id: Bushe2 - decals: - 167: 19.987902,-18.082924 - - node: - color: '#FFFFFFFF' - id: Bushe4 - decals: - 152: 17,-22 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 179: 26.355253,-20.018904 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 1148: 28.997751,52.82394 - - node: - color: '#FFFFFFFF' - id: Bushi4 - decals: - 16: -15.124159,-7.0286565 - 163: 19.95085,-17.649254 - 1147: 33.81025,51.35519 - - node: - color: '#FFFFFFFF' - id: Bushj2 - decals: - 1741: -7,-68 - - node: - color: '#FFFFFFFF' - id: Bushj3 - decals: - 1150: 29.044626,51.152065 - 1740: -7,-66 - - node: - color: '#FFFFFFFF' - id: Bushk2 - decals: - 1667: -47.351173,-52.268078 - - node: - color: '#FFFFFFFF' - id: Bushk3 - decals: - 157: 19,-22 - 1154: 28.950876,54.10519 - - node: - color: '#FFFFFFFF' - id: Bushl2 - decals: - 166: 19.956652,-17.129799 - - node: - color: '#FFFFFFFF' - id: Bushm1 - decals: - 162: 19.9821,-18.993004 - - node: - color: '#FFFFFFFF' - id: Bushm2 - decals: - 186: 31.019064,-21.428595 - 1152: 31.341501,54.027065 - - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 17: -15.514784,-6.9661565 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 997: 51,-14 - 998: 51,-13 - - node: - color: '#34333785' - id: CheckerNESW - decals: - 1715: 16,-37 - 1716: 16,-38 - 1717: 16,-39 - 1718: 17,-39 - 1719: 17,-38 - 1720: 17,-37 - 1721: 17,-36 - 1722: 17,-35 - 1723: 16,-35 - 1724: 16,-36 - 1725: 15,-35 - 1726: 15,-36 - 1727: 14,-35 - 1728: 14,-36 - 1729: 14,-37 - 1730: 15,-37 - 1731: 15,-38 - 1732: 14,-38 - 1733: 14,-39 - 1734: 15,-39 - 1735: 13,-36 - - node: - color: '#D381C996' - id: CheckerNESW - decals: - 1161: -28,26 - 1162: -28,27 - 1163: -27,27 - 1164: -27,26 - 1165: -26,26 - 1166: -26,27 - 1167: -25,27 - 1168: -25,26 - 1169: -24,26 - 1170: -24,27 - - node: - color: '#A4823196' - id: CheckerNESW - decals: - 111: -16,3 - 116: -18,6 - - node: - color: '#EFB34196' - id: CheckerNESW - decals: - 984: 51,-5 - - node: - color: '#D4D4D40F' - id: CheckerNWSE - decals: - 1976: 21,-40 - 1977: 21,-39 - 1978: 20,-39 - 1979: 20,-40 - 1980: 19,-40 - 1981: 19,-39 - 1982: 19,-38 - 1983: 20,-38 - 1984: 21,-38 - 1985: 22,-38 - 1986: 22,-39 - 1987: 22,-40 - 1988: 22,-37 - 1989: 21,-37 - 1990: 20,-37 - 1991: 19,-37 - 1992: 19,-36 - 1993: 20,-36 - 1994: 21,-36 - 1995: 22,-36 - 1996: 22,-35 - 1997: 21,-35 - 1998: 20,-35 - 1999: 19,-35 - - node: - color: '#9FED5896' - id: CheckerNWSE - decals: - 1633: -48,-47 - 1634: -47,-47 - 1635: -46,-47 - 1636: -54,-53 - 1637: -55,-53 - 1638: -55,-52 - 1639: -54,-52 - 1640: -54,-56 - 1641: -55,-56 - 1642: -55,-55 - 1643: -54,-55 - - node: - color: '#DE3A3A96' - id: CheckerNWSE - decals: - 963: 45,-4 - 964: 45,-3 - - node: - color: '#52B4E996' - id: CheckerNWSE - decals: - 965: 45,0 - 966: 45,1 - 1358: -31,-44 - 1359: -31,-43 - 1360: -32,-43 - 1361: -32,-44 - 1362: -29,-44 - 1363: -29,-43 - 1364: -28,-44 - 1365: -28,-43 - 1366: -26,-44 - 1367: -26,-43 - 1368: -25,-43 - 1369: -25,-44 - 1444: -22,-58 - - node: - color: '#D4D4D496' - id: CheckerNWSE - decals: - 999: 51,-14 - 1000: 51,-13 - - node: - color: '#EFB34196' - id: CheckerNWSE - decals: - 1113: 43,7 - 1114: 43,8 - 1115: 43,9 - 1116: 44,9 - 1117: 44,8 - 1118: 44,7 - 1119: 45,7 - 1120: 45,8 - 1121: 45,9 - 1122: 46,9 - 1123: 46,8 - 1124: 46,7 - - node: - color: '#A4610696' - id: CheckerNWSE - decals: - 273: -32,11 - 274: -32,12 - 275: -31,12 - 276: -31,11 - 277: -31,10 - 278: -32,10 - 279: -30,10 - 280: -30,11 - 281: -30,12 - 282: -29,12 - 283: -29,11 - 284: -29,10 - - node: - color: '#D4D4D428' - id: CheckerNWSE - decals: - 990: 51,-5 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 25: -13,-6 - 108: -17,-16 - 139: -20,4 - 140: -20,5 - 241: -29,8 - 242: -29,7 - 243: -29,6 - 306: -40,19 - 307: -40,17 - 308: -40,15 - 309: -40,13 - 310: -39,11 - 311: -38,10 - 328: -41,6 - 402: -25,15 - 403: -25,16 - 404: -25,17 - 519: -66,-7 - 520: -67,-7 - 521: -68,-7 - 522: -69,-7 - 523: -66,5 - 524: -67,5 - 525: -68,5 - 526: -69,5 - 641: -3,40 - 645: -7,40 - 663: 1,27 - 664: 1,28 - 681: -7,29 - 682: -10,29 - 683: -13,29 - 738: -11,45 - 739: -12,45 - 740: -13,45 - 906: 42,-27 - 907: 42,-26 - 908: 46,-24 - 1029: 46,-4 - 1090: 54,11 - 1091: 53,11 - 1099: 51,10 - 1100: 49,10 - 1101: 49,7 - 1102: 51,7 - 1682: -48,-38 - 1683: -45,-38 - 1684: -45,-36 - 1688: -48,-34 - 1689: -48,-31 - 1690: -47,-31 - 1882: 4,-38 - 1895: 12,-28 - 1896: 16,-29 - 1938: 8,-49 - 1939: 9,-49 - 1940: 10,-49 - 1954: 8,-33 - 1955: 8,-29 - 2046: -12,-72 - 2047: -10,-72 - 2048: -4,-72 - 2065: 51,12 - 2066: 49,12 - 2068: 46,17 - 2069: 47,17 - 2070: 46,12 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 620: -11,27 - 621: -11,28 - 622: -10,28 - 623: -10,27 - 624: -8,27 - 625: -8,28 - 626: -7,28 - 627: -7,27 - 628: -14,27 - 629: -14,28 - 630: -13,28 - 631: -13,27 - 909: 44,-25 - 910: 45,-25 - 911: 45,-24 - 912: 46,-25 - 913: 47,-25 - 914: 47,-24 - 915: 46,-24 - 916: 43,-25 - 917: 42,-25 - 918: 42,-26 - 919: 42,-27 - 920: 42,-28 - 921: 42,-29 - - node: - cleanable: True - color: '#A4610696' - id: Dirt - decals: - 1586: -9,-49 - 1587: -12,-50 - 1588: -13,-50 - 1589: -15,-49 - 1590: -15,-47 - - node: - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 2186: -44,28 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 119: -16,5 - 406: -43,26 - 407: -41,23 - 408: -42,23 - 409: -41,24 - 410: -41,25 - 411: -42,21 - 412: -41,21 - 413: -41,19 - 414: -34,22 - 415: -35,21 - 416: -36,20 - 417: -38,20 - 595: -29,22 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 2187: -43,28 - 2188: -44,27 - 2189: -41,28 - 2190: -40,26 - 2191: -44,26 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 122: -17,5 - 123: -17,4 - 124: -16,3 - 125: -17,6 - 126: -18,6 - 127: -18,3 - 128: -17,4 - 129: -17,4 - 130: -17,5 - 131: -17,5 - 133: -19,5 - 134: -20,5 - 135: -21,4 - 446: -43,24 - 447: -41,26 - 448: -41,27 - 449: -43,27 - 450: -42,22 - 451: -41,22 - 452: -40,21 - 453: -43,21 - 454: -42,20 - 455: -40,20 - 456: -42,18 - 457: -41,17 - 458: -41,15 - 459: -42,16 - 460: -41,14 - 461: -40,13 - 462: -36,19 - 463: -35,18 - 464: -36,17 - 465: -37,18 - 466: -37,16 - 467: -34,20 - 468: -36,21 - 469: -36,22 - 470: -37,22 - 471: -37,23 - 472: -39,20 - 473: -38,21 - 474: -43,20 - 475: -36,16 - 476: -37,14 - 477: -34,16 - 478: -32,16 - 479: -32,15 - 480: -31,14 - 481: -34,11 - 482: -32,11 - 483: -31,10 - 484: -30,11 - 485: -36,9 - 486: -35,10 - 487: -36,11 - 488: -37,12 - 489: -36,13 - 490: -41,11 - 491: -40,10 - 492: -41,9 - 493: -32,3 - 494: -33,3 - 495: -33,4 - 496: -35,6 - 497: -34,7 - 498: -38,4 - 499: -39,3 - 500: -40,3 - 501: -42,6 - 502: -43,5 - 503: -42,4 - 504: -42,3 - 505: -29,3 - 506: -28,4 - 507: -25,5 - 508: -26,7 - 510: -42,25 - 593: -32,22 - 598: -29,21 - 599: -28,22 - 600: -31,21 - 601: -32,23 - 602: -25,23 - 603: -24,24 - 604: -23,21 - 605: -22,22 - 606: -25,24 - 607: -24,21 - 608: -23,19 - 609: -24,19 - 610: -22,17 - 611: -19,13 - 612: -19,14 - 613: -20,15 - 614: -22,13 - 616: -19,10 - 617: -20,9 - 618: -19,23 - 619: -16,24 - 1580: -10,-51 - 1581: -9,-50 - 1582: -12,-47 - 1583: -15,-50 - 1585: -13,-51 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - decals: - 120: -16,4 - 121: -18,4 - 132: -19,4 - 418: -35,22 - 419: -34,21 - 420: -35,20 - 421: -37,20 - 422: -41,20 - 423: -40,18 - 424: -41,18 - 425: -41,16 - 426: -35,19 - 427: -36,18 - 428: -40,23 - 429: -40,24 - 430: -42,24 - 431: -43,25 - 432: -42,27 - 433: -35,9 - 434: -36,10 - 435: -31,3 - 436: -32,2 - 437: -37,4 - 438: -35,4 - 439: -36,4 - 440: -34,5 - 441: -40,8 - 442: -39,9 - 443: -39,10 - 444: -40,11 - 445: -42,15 - 511: -42,26 - 594: -31,22 - 596: -28,21 - 597: -26,22 - 615: -19,12 - 1584: -9,-51 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 156: 19,-22 - 1140: 29.841501,51.10519 - 1739: -7,-66 - 1748: 12.525944,-44.196365 - - node: - color: '#FFFFFFFF' - id: Flowersbr2 - decals: - 177: 25.464628,-21.003279 - 1141: 33.107124,51.07394 - 1505: -28,-34 - 1747: 12.057194,-44.696365 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 1142: 32.18525,53.51144 - 1746: 12.932194,-44.86824 - 2009: 33,-55 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 178: 26.980253,-20.518904 - 1145: 32.263374,51.88644 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 165: 19.987902,-17.161049 - 1146: 29.107126,51.73019 - 1663: -46.351173,-56.908703 - 1664: -47.8043,-52.564953 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 2: 12.060897,3.0105615 - 11: -16.358534,-7.0286565 - 161: 19.9821,-18.899254 - 176: 25.074003,-20.472029 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 12: -14.717909,-6.9817815 - 1143: 30.935251,52.66769 - 1144: 29.138376,53.277065 - 1738: -7,-68 - 2010: 33,-56 - - node: - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 3: 12.795272,2.9949365 - 1665: -46.069923,-52.846203 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 1666: -47.851173,-54.533703 - - node: - color: '#47362B4A' - id: FullTileOverlayGreyscale - decals: - 1693: -36,-10 - 1694: -35,-10 - 1695: -35,-11 - 1696: -36,-11 - 1697: -34,-11 - 1698: -34,-13 - 1699: -35,-13 - 1700: -36,-13 - 1701: -36,-14 - 1702: -35,-14 - 1703: -29,-6 - 1704: -29,-5 - 1705: -29,-4 - 1706: -28,-4 - 1707: -28,-5 - 1708: -26,-6 - 1709: -26,-5 - 1710: -26,-4 - 1711: -25,-4 - 1712: -25,-5 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 1277: -18,-31 - 1278: -18,-30 - 1305: -24,-30 - 1306: -25,-30 - 1307: -24,-31 - 1308: -26,-30 - 1309: -32,-31 - 1310: -32,-30 - 1311: -31,-30 - 1312: -30,-30 - 1313: -32,-37 - 1314: -32,-38 - 1315: -31,-38 - 1316: -30,-38 - 1317: -26,-38 - 1318: -25,-38 - 1319: -24,-38 - 1320: -24,-37 - 1331: -27,-35 - 1332: -28,-35 - 1333: -29,-35 - 1334: -29,-34 - 1335: -29,-33 - 1336: -28,-33 - 1337: -27,-33 - 1338: -27,-34 - 1474: -14,-36 - 1487: -19,-35 - 1488: -15,-45 - 1489: -14,-45 - 1493: -19,-43 - 1494: -19,-42 - 2300: -23,-28 - 2301: -22,-28 - 2302: -21,-28 - 2303: -20,-28 - 2304: -19,-28 - - node: - color: '#FFCF6996' - id: FullTileOverlayGreyscale - decals: - 1203: -8,-29 - 1204: -7,-29 - 1205: -6,-29 - 1209: -6,-30 - 1210: -6,-31 - 1211: -6,-32 - 1212: -7,-31 - 1213: -8,-31 - 1226: -11,-30 - - node: - color: '#A4610696' - id: FullTileOverlayGreyscale - decals: - 235: -36,4 - 254: -41,22 - 255: -42,22 - 272: -33,16 - 296: -33,11 - 356: -43,1 - 369: -33,22 - - node: - color: '#9FED5896' - id: FullTileOverlayGreyscale - decals: - 1630: -45,-47 - 1631: -49,-47 - 1632: -51,-51 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 851: 0,49 - 995: 51,-16 - 996: 51,-15 - 2045: -1,-70 - - node: - color: '#EFB34196' - id: FullTileOverlayGreyscale - decals: - 1030: 51,-17 - 1031: 51,-11 - 1050: 55,-4 - - node: - color: '#FFD26F96' - id: FullTileOverlayGreyscale - decals: - 2400: -5,-36 - 2401: -5,-35 - 2402: -5,-34 - - node: - color: '#D381C996' - id: FullTileOverlayGreyscale - decals: - 1972: 30,-43 - 2392: -1,-37 - 2393: -1,-36 - 2394: -1,-35 - - node: - color: '#00000041' - id: FullTileOverlayGreyscale - decals: - 1451: -16,-50 - 1452: -16,-49 - 1453: -17,-49 - 1454: -17,-50 - 1455: -16,-51 - 1456: -17,-51 - 1457: -16,-52 - 1458: -17,-52 - 1459: -18,-52 - 1460: -18,-51 - 1461: -18,-50 - 1462: -18,-49 - 1463: -18,-48 - 1464: -17,-48 - 1465: -16,-48 - 1466: -16,-47 - 1467: -17,-47 - 1468: -18,-47 - 1469: -19,-49 - - node: - color: '#FFFFFFFF' - id: Grassa1 - decals: - 2025: 31,-56 - - node: - color: '#FFFFFFFF' - id: Grassa2 - decals: - 2019: 35,-57 - 2026: 31,-58 - - node: - color: '#FFFFFFFF' - id: Grassa3 - decals: - 2020: 35,-56 - - node: - color: '#FFFFFFFF' - id: Grassa4 - decals: - 175: 26.964628,-19.97662 - 2021: 35,-55 - - node: - color: '#FFFFFFFF' - id: Grassa5 - decals: - 2023: 35,-58 - 2024: 31,-57 - - node: - color: '#FFFFFFFF' - id: Grassb1 - decals: - 1657: -45.9918,-51.877453 - 1660: -45.96055,-56.064953 - - node: - color: '#FFFFFFFF' - id: Grassb2 - decals: - 4: 11.998397,2.9949365 - 151: 17,-22 - 174: 24.917753,-21.067398 - 1656: -48.02305,-57.002453 - 2022: 35,-54 - - node: - color: '#FFFFFFFF' - id: Grassb3 - decals: - 5: 13.014022,3.0261865 - 26: 13.178476,2.9728556 - 173: 26.949003,-21.004898 - 1654: -46.101173,-57.080578 - - node: - color: '#FFFFFFFF' - id: Grassb4 - decals: - 160: 19.997725,-18.258629 - 180: 24.995878,-19.956404 - 1662: -47.83555,-55.971203 - - node: - color: '#FFFFFFFF' - id: Grassb5 - decals: - 517: -48.03518,-1.0361671 - 1655: -48.02305,-51.955578 - 1661: -47.101173,-56.971203 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 10: -15.577284,-6.9349065 - 1137: 33.93525,53.91769 - 1153: 31.247751,52.01144 - - node: - color: '#FFFFFFFF' - id: Grassd2 - decals: - 8: -13.983534,-6.9349065 - 169: 26.980253,-19.911148 - 1138: 32.029,51.32394 - 1139: 28.982126,54.120815 - 1650: -46.069923,-54.346203 - 1651: -47.89805,-52.080578 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 9: -14.858534,-6.9349065 - 1652: -48.0543,-53.002453 - 1653: -47.9918,-55.283703 - 1745: 12.760319,-44.77449 - - node: - color: '#FFFFFFFF' - id: Grasse1 - decals: - 1: 12.951522,3.0418115 - 172: 25.480253,-20.239273 - 1136: 30.654001,53.339565 - 1744: 12.150944,-44.21199 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 0: 12.060897,2.9793115 - 150: 17,-22 - 154: 19,-22 - 159: 19.997725,-18.305504 - 164: 19.972277,-17.082924 - 171: 25.855253,-21.020523 - 183: 30.987814,-21.06922 - 1134: 32.607124,52.183315 - 1135: 29.122751,52.245815 - 1648: -46.14805,-53.361828 - 1649: -46.14805,-56.799328 - 1736: -7,-68 - 1737: -7,-66 - 1743: 12.838444,-44.227615 - 2008: 33,-55 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 7: -16.983534,-6.9974065 - 158: 19.9196,-19.024254 - 168: 25.089628,-21.036148 - 170: 26.620878,-20.895523 - 182: 31.003439,-22.00672 - 1132: 28.997751,51.058315 - 1133: 33.700874,52.07394 - 1504: -28,-34 - 1646: -47.632423,-56.314953 - 1647: -46.4293,-52.424328 - 1742: 12,-45 - 2007: 33,-56 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale - decals: - 2407: -3,-19 - 2408: -5,-19 - 2409: -4,-19 - 2410: -2,-19 - 2411: -1,-19 - 2412: -6,-19 - 2415: 0,-19 - 2463: -3,-8 - 2464: -4,-8 - 2465: -2,-8 - 2466: -1,-8 - 2467: -5,-8 - 2557: -46,3 - 2801: -50,3 - 2802: -51,3 - 2803: -52,3 - 2804: -50,-4 - 2805: -51,-4 - 2806: -52,-4 - - node: - color: '#FFCF6996' - id: HalfTileOverlayGreyscale - decals: - 1207: -8,-30 - - node: - color: '#52B4E92E' - id: HalfTileOverlayGreyscale - decals: - 1404: -33,-50 - 1405: -34,-50 - 1406: -35,-50 - 1407: -36,-50 - 1408: -24,-50 - 1409: -25,-50 - 1410: -26,-50 - 1411: -27,-50 - 1412: -34,-46 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 198: -24,5 - 208: -28,8 - 209: -27,8 - 210: -26,8 - 229: -34,7 - 230: -33,7 - 260: -39,21 - 261: -40,21 - 262: -41,21 - 263: -42,21 - 264: -43,21 - 265: -38,21 - 386: -24,19 - 387: -23,19 - 388: -22,19 - 389: -21,19 - 390: -20,19 - 391: -19,19 - 398: -18,11 - 399: -19,11 - 2180: -41,28 - 2181: -42,28 - 2182: -43,28 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - decals: - 83: -7,4 - 84: -6,4 - 1608: -43,-46 - 1609: -51,-46 - 1610: -52,-46 - 1611: -53,-46 - 1612: -54,-46 - 1613: -51,-52 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale - decals: - 75: -1,4 - 76: -2,4 - 77: -3,4 - 78: -4,4 - 79: -5,4 - 1001: 49,-6 - 1002: 48,-6 - 1003: 47,-6 - 1004: 46,-6 - 1005: 45,-6 - 1019: 55,-8 - 1022: 54,-6 - 1023: 53,-6 - 1032: 52,-11 - 1033: 53,-11 - 1034: 55,-11 - 1048: 22,8 - 1049: 20,8 - 1057: 53,5 - 1058: 54,5 - 1059: 55,5 - 1060: 56,5 - 1061: 57,5 - 1062: 58,5 - 1063: 59,5 - 1064: 60,5 - 2118: 52,22 - 2119: 49,22 - 2126: 47,16 - 2131: 45,26 - 2132: 44,26 - 2133: 43,26 - 2153: 49,26 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 1772: 0,-24 - 1773: 1,-24 - 1774: 2,-24 - 1775: 5,-24 - 1776: 6,-24 - 1777: 7,-24 - 1785: 10,-25 - 1795: 11,-40 - 1796: 10,-37 - 1797: 9,-37 - 1798: 8,-37 - 1799: 7,-37 - 1826: 10,-47 - 1827: 9,-47 - 1828: 8,-47 - 1829: 7,-47 - 1830: 6,-47 - 1831: 5,-47 - 1832: 4,-47 - 1833: 18,-44 - 1834: 19,-44 - 1835: 20,-44 - 1836: 21,-44 - 1837: 22,-44 - 1838: 23,-44 - 1839: 24,-44 - 1840: 25,-44 - 1841: 26,-44 - 1842: 27,-44 - 1843: 28,-44 - 2003: 24,-35 - 2004: 23,-35 - 2366: 34,-44 - 2367: 35,-44 - 2368: 36,-44 - 2369: 37,-44 - 2370: 39,-44 - 2382: 38,-44 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 73: 1,4 - 74: 0,4 - 574: -7,25 - 575: -8,25 - 576: -10,25 - 577: -11,25 - 578: -13,25 - 579: -14,25 - 661: 1,28 - 735: -11,44 - 736: -12,44 - 737: -13,44 - 743: -12,42 - 798: 12,36 - 799: 11,36 - 800: 10,36 - 801: 9,36 - 802: 8,36 - 803: 7,36 - 804: 6,36 - 811: 9,42 - 848: 1,53 - 849: 0,53 - 850: -1,53 - 2032: 2,-68 - 2033: 1,-68 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - decals: - 1256: -11,-24 - 1257: -8,-24 - 1258: -7,-24 - 1259: -6,-24 - 1273: -13,-29 - 1274: -16,-29 - 1282: -22,-30 - 1283: -21,-30 - 1284: -20,-30 - 1296: -20,-39 - 1297: -21,-39 - 1298: -22,-39 - 1299: -20,-53 - 1300: -21,-53 - 1301: -22,-53 - 1341: -27,-36 - 1342: -29,-36 - 1352: -25,-40 - 1353: -26,-40 - 1354: -28,-40 - 1355: -30,-40 - 1356: -31,-40 - 1357: -32,-40 - 1390: -26,-51 - 1391: -25,-51 - 1402: -35,-51 - 1403: -34,-51 - 1485: -16,-34 - 1486: -17,-34 - 1495: -15,-42 - 1496: -16,-42 - 1497: -17,-42 - 1508: -28,-36 - 1570: -35,-32 - 1571: -36,-32 - 2314: -12,-24 - 2315: -13,-24 - 2316: -14,-24 - 2330: -16,-23 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - decals: - 53: 1,-1 - 54: -7,-1 - 57: -6,-1 - 58: 0,-1 - 68: 3,2 - 69: -9,2 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 571: -13,29 - 572: -10,29 - 573: -7,29 - 653: -3,45 - 654: -2,45 - 655: -1,45 - 656: 0,45 - 662: 1,27 - 756: -12,30 - 757: -9,30 - 793: 7,41 - 794: 8,41 - 795: 9,41 - 796: 10,41 - 797: 11,41 - 831: 9,30 - 836: 3,30 - 845: 1,50 - 846: 0,50 - 847: -1,50 - 2034: 1,-74 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale180 - decals: - 2508: -3,-12 - 2558: -46,-5 - 2807: -52,-5 - 2808: -51,-5 - 2809: -50,-5 - - node: - color: '#52B4E92E' - id: HalfTileOverlayGreyscale180 - decals: - 1423: -32,-48 - 1424: -28,-48 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 197: -24,4 - 205: -26,2 - 232: -32,2 - 233: -33,2 - 234: -34,2 - 251: -43,23 - 252: -42,23 - 253: -41,23 - 299: -35,9 - 350: -38,2 - 351: -39,2 - 352: -40,2 - 353: -41,2 - 354: -42,2 - 355: -43,2 - 374: -19,12 - 375: -20,12 - 376: -21,12 - 377: -22,12 - 378: -23,12 - 379: -24,12 - 400: -23,20 - 401: -24,20 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 1254: -10,-27 - 1255: -11,-27 - 1268: -16,-32 - 1269: -15,-32 - 1270: -14,-32 - 1271: -13,-32 - 1293: -22,-37 - 1294: -21,-37 - 1295: -20,-37 - 1302: -20,-51 - 1303: -21,-51 - 1304: -22,-51 - 1339: -29,-32 - 1340: -27,-32 - 1347: -25,-41 - 1348: -27,-41 - 1349: -28,-41 - 1350: -30,-41 - 1351: -31,-41 - 1388: -26,-53 - 1389: -25,-53 - 1400: -34,-53 - 1401: -35,-53 - 1445: -21,-58 - 1448: -17,-56 - 1483: -17,-39 - 1484: -16,-39 - 1490: -15,-44 - 1491: -16,-44 - 1492: -17,-44 - 1507: -28,-32 - 1564: -36,-36 - 1565: -35,-36 - 2317: -12,-27 - 2318: -13,-27 - 2319: -16,-27 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale180 - decals: - 1603: -43,-48 - 1604: -51,-57 - 1605: -51,-50 - 1606: -52,-50 - 1607: -54,-50 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 1780: 0,-27 - 1781: 4,-27 - 1782: 5,-27 - 1783: 6,-27 - 1784: 7,-27 - 1790: 7,-35 - 1791: 8,-35 - 1792: 9,-35 - 1793: 10,-35 - 1794: 11,-35 - 1817: 10,-45 - 1818: 9,-45 - 1819: 8,-45 - 1820: 7,-45 - 1821: 6,-45 - 1822: 5,-45 - 1823: 4,-45 - 1850: 18,-42 - 1851: 19,-42 - 1852: 20,-42 - 1853: 21,-42 - 1854: 22,-42 - 1855: 23,-42 - 1856: 24,-42 - 1857: 25,-42 - 1858: 26,-42 - 1859: 27,-42 - 1860: 28,-42 - 2000: 23,-37 - 2001: 24,-37 - 2371: 39,-42 - 2372: 38,-42 - 2373: 37,-42 - 2374: 36,-42 - 2375: 35,-42 - 2376: 34,-42 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 985: 53,-4 - 986: 52,-4 - 987: 51,-4 - 988: 50,-4 - 989: 49,-4 - 1010: 46,-9 - 1011: 47,-9 - 1012: 48,-9 - 1013: 49,-9 - 1014: 50,-9 - 1015: 51,-9 - 1016: 52,-9 - 1017: 53,-9 - 1018: 55,-9 - 1046: 22,6 - 1047: 20,6 - 1051: 55,-3 - 1052: 56,-3 - 1065: 57,2 - 1066: 56,2 - 1067: 55,2 - 2096: 43,14 - 2102: 47,13 - 2103: 48,13 - 2104: 49,13 - 2105: 50,13 - 2106: 51,13 - 2107: 52,13 - 2145: 45,19 - 2146: 44,19 - 2147: 43,19 - 2151: 49,24 - 2159: 52,24 - 2160: 53,24 - 2161: 54,24 - 2162: 55,24 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 49: 3,-1 - 50: -9,-1 - 51: -7,0 - 52: 1,0 - 63: -1,1 - 64: -2,1 - 65: -3,1 - 66: -4,1 - 67: -5,1 - - node: - color: '#FFCF6996' - id: HalfTileOverlayGreyscale180 - decals: - 1197: -6,-27 - 1198: -7,-27 - 1199: -8,-27 - 1200: -9,-27 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 43: -10,0 - 44: -10,1 - 91: -18,-14 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale270 - decals: - 2561: -46,1 - 2562: -46,0 - 2563: -46,-1 - 2564: -46,-2 - 2565: -46,-3 - - node: - color: '#FFCF6996' - id: HalfTileOverlayGreyscale270 - decals: - 1219: -10,-36 - 1220: -10,-35 - 1221: -10,-34 - 1222: -10,-33 - 1223: -10,-32 - 1224: -10,-31 - 1225: -10,-30 - - node: - color: '#52B4E92E' - id: HalfTileOverlayGreyscale270 - decals: - 1419: -29,-53 - 1420: -29,-52 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 195: -28,1 - 207: -29,3 - 225: -35,3 - 226: -35,4 - 227: -35,5 - 228: -35,6 - 247: -44,24 - 248: -44,25 - 287: -32,15 - 288: -32,16 - 301: -44,8 - 302: -44,9 - 303: -44,10 - 304: -44,5 - 305: -44,6 - 380: -25,13 - 381: -25,14 - 382: -25,15 - 383: -25,16 - 384: -25,17 - 385: -25,18 - 2172: -44,26 - 2173: -44,27 - 2174: -44,28 - - node: - color: '#FFD26F96' - id: HalfTileOverlayGreyscale270 - decals: - 2403: -4,-36 - 2404: -4,-35 - 2405: -4,-34 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - decals: - 82: -8,3 - 1614: -44,-47 - 1615: -55,-49 - 1616: -55,-48 - 1617: -55,-47 - 1618: -52,-56 - 1619: -52,-55 - 1620: -52,-54 - 1621: -52,-53 - - node: - color: '#9FED582B' - id: HalfTileOverlayGreyscale270 - decals: - 1432: -37,-47 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 549: -9,33 - 550: -9,34 - 805: 13,37 - 806: 13,38 - 807: 13,39 - 823: 4,26 - 824: 4,27 - 825: 4,28 - 841: 0,29 - 842: 0,26 - 852: 4,36 - 853: 4,37 - 854: 4,38 - 855: 4,40 - 856: 4,41 - 2040: 0,-73 - 2041: 0,-72 - 2042: 0,-71 - 2043: 0,-70 - 2044: 0,-69 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 1275: -17,-31 - 1276: -17,-30 - 1288: -22,-35 - 1289: -22,-34 - 1290: -22,-33 - 1330: -32,-34 - 1343: -26,-35 - 1344: -26,-33 - 1370: -22,-47 - 1371: -22,-46 - 1381: -23,-41 - 1392: -27,-52 - 1395: -36,-52 - 1443: -22,-57 - 1470: -18,-35 - 1471: -18,-36 - 1472: -18,-37 - 1473: -18,-38 - 1502: -18,-43 - 1509: -26,-34 - 1559: -37,-36 - 1560: -37,-35 - 1561: -37,-34 - 1562: -37,-33 - 1563: -37,-32 - 2331: -17,-26 - 2332: -17,-24 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 1007: 45,-7 - 1008: 45,-8 - 1045: 19,7 - 2093: 42,15 - 2094: 42,16 - 2095: 42,17 - 2101: 46,14 - 2121: 48,21 - 2122: 48,19 - 2123: 48,18 - 2124: 48,17 - 2134: 42,20 - 2135: 42,21 - 2136: 42,22 - 2137: 42,23 - 2138: 42,24 - 2139: 42,25 - 2152: 48,25 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 1804: 12,-39 - 1805: 12,-38 - 1806: 12,-37 - 1807: 12,-36 - 1825: 11,-46 - 1845: 29,-43 - 1969: 31,-44 - 1970: 31,-43 - 1971: 31,-42 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 1622: -50,-56 - 1623: -50,-55 - 1624: -50,-54 - 1625: -50,-53 - 1626: -50,-49 - 1627: -50,-48 - 1628: -50,-47 - 1629: -42,-47 - 1644: -53,-55 - 1645: -53,-53 - - node: - color: '#52B4E92E' - id: HalfTileOverlayGreyscale90 - decals: - 1417: -31,-52 - 1418: -31,-53 - 1429: -24,-47 - 1430: -24,-46 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 1020: 55,-7 - 1035: 54,-17 - 1036: 54,-16 - 1037: 54,-15 - 1044: 23,7 - 1054: 57,-2 - 1055: 57,-1 - 1056: 57,0 - 2097: 44,16 - 2098: 44,17 - 2109: 53,14 - 2110: 53,16 - 2111: 53,17 - 2112: 53,18 - 2113: 53,15 - 2114: 53,19 - 2115: 53,20 - 2116: 53,21 - 2140: 46,21 - 2141: 46,22 - 2142: 46,23 - 2143: 46,24 - 2144: 46,25 - 2154: 56,24 - 2155: 56,25 - 2156: 56,26 - 2157: 56,27 - 2158: 56,28 - - node: - color: '#FFD26F96' - id: HalfTileOverlayGreyscale90 - decals: - 1264: -12,-30 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 1279: -19,-32 - 1280: -19,-31 - 1281: -19,-30 - 1285: -20,-35 - 1329: -24,-34 - 1345: -30,-35 - 1346: -30,-33 - 1374: -20,-49 - 1377: -20,-43 - 1378: -20,-42 - 1393: -24,-52 - 1394: -33,-52 - 1475: -15,-38 - 1476: -15,-37 - 1477: -15,-36 - 1478: -15,-35 - 1503: -14,-43 - 1510: -30,-34 - 1556: -34,-34 - 1557: -34,-32 - 1558: -34,-36 - - node: - color: '#FFCF6996' - id: HalfTileOverlayGreyscale90 - decals: - 1214: -7,-32 - 1215: -7,-33 - 1216: -7,-34 - 1217: -7,-35 - 1218: -7,-36 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 45: 4,0 - 46: 4,1 - 92: -16,-14 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 1769: -2,-31 - 1787: 11,-28 - 1788: 11,-27 - 1789: 11,-26 - 1801: 10,-38 - 1802: 10,-39 - 1803: 6,-36 - 1824: 3,-46 - 1849: 17,-43 - 1861: 8,-43 - 1862: 8,-42 - 1863: 8,-41 - 1864: 8,-40 - 1865: 8,-39 - 1973: -1,-52 - 1974: -1,-50 - 1975: -1,-51 - 2002: 25,-36 - 2395: -2,-37 - 2396: -2,-36 - 2397: -2,-35 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 196: -27,1 - 204: -25,3 - 212: -25,7 - 213: -25,6 - 214: -30,3 - 220: -31,3 - 221: -31,4 - 222: -31,5 - 223: -31,6 - 224: -31,7 - 236: -37,3 - 237: -37,4 - 238: -37,5 - 239: -37,2 - 240: -37,6 - 249: -40,24 - 250: -40,25 - 267: -34,20 - 268: -34,19 - 269: -34,18 - 270: -34,17 - 271: -34,16 - 291: -34,15 - 292: -34,14 - 293: -34,13 - 294: -34,12 - 295: -34,11 - 297: -34,10 - 392: -18,18 - 393: -18,17 - 394: -18,16 - 395: -18,15 - 396: -18,13 - 397: -18,14 - 2175: -40,26 - 2176: -40,27 - 2177: -40,28 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale90 - decals: - 2566: -45,-4 - 2567: -45,-3 - 2568: -45,1 - 2569: -45,2 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 71: 2,3 - 547: -10,33 - 548: -10,34 - 562: -10,35 - 563: -10,36 - 564: -10,37 - 755: -10,39 - 808: 5,37 - 809: 5,38 - 810: 5,39 - 826: 8,27 - 827: 8,28 - 843: 2,26 - 844: 2,29 - 857: 14,41 - 858: 14,40 - 859: 14,38 - 860: 14,37 - 861: 14,36 - 2036: 3,-72 - 2037: 3,-71 - 2038: 3,-70 - 2039: 3,-69 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 18: -13,-7 - 1028: 47,-6 - 1691: -48,-32 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 330: -42,19 - 1889: 1,-40 - 1890: 1,-42 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 19: -18,-7 - 1670: -66,-41 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 329: -42,15 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 188: -23,3 - 189: -23,5 - 193: -26,0 - 194: -28,0 - 231: -32,7 - 290: -31,17 - 585: -29,23 - 586: -28,23 - 587: -27,23 - 2179: -40,28 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 527: -19,25 - 528: -18,25 - 529: -16,25 - 530: -20,25 - 1272: -12,-29 - 1291: -22,-36 - 1372: -22,-48 - 1382: -23,-42 - 1435: -18,-58 - 1436: -18,-59 - 1437: -18,-60 - 1438: -18,-61 - 1511: -26,-36 - 1566: -34,-32 - 2311: -20,-26 - - node: - color: '#FFD26F96' - id: QuarterTileOverlayGreyscale - decals: - 2406: -4,-37 - - node: - color: '#52B4E92E' - id: QuarterTileOverlayGreyscale - decals: - 1422: -33,-46 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 1078: 53,11 - 1079: 54,11 - 1080: 55,11 - 1081: 56,11 - 2125: 48,16 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale - decals: - 2413: 1,-19 - 2416: 2,-19 - 2417: 3,-19 - 2418: 4,-19 - 2419: 5,-19 - 2420: 6,-19 - 2421: 7,-19 - 2422: 8,-19 - 2423: 10,-19 - 2424: 11,-19 - 2425: 12,-19 - 2426: 13,-19 - 2427: 14,-19 - 2428: 15,-19 - 2429: 15,-18 - 2430: 15,-17 - 2431: 15,-16 - 2432: 15,-15 - 2433: 15,-14 - 2434: 15,-13 - 2435: 15,-12 - 2436: 15,-11 - 2437: -19,-8 - 2438: -18,-8 - 2439: -17,-8 - 2440: -16,-8 - 2441: -14,-8 - 2442: -15,-8 - 2443: -13,-8 - 2444: -12,-8 - 2445: -11,-8 - 2446: -10,-8 - 2447: -9,-8 - 2448: -8,-8 - 2449: -7,-8 - 2469: 0,-8 - 2559: -46,-4 - 2572: -44,0 - 2573: -43,0 - 2574: -42,0 - 2575: -41,0 - 2576: -40,0 - 2577: -39,0 - 2578: -38,0 - 2579: -37,0 - 2580: -36,0 - 2581: -35,0 - 2582: -34,0 - 2583: -33,0 - 2584: -32,0 - 2585: -31,0 - 2586: -30,0 - 2587: -29,0 - 2588: -25,0 - 2589: -24,0 - 2590: -23,0 - 2591: -23,1 - 2592: -23,2 - 2593: -23,7 - 2594: -23,8 - 2595: -23,9 - 2596: -23,10 - 2597: -22,10 - 2598: -21,10 - 2599: -20,10 - 2600: -19,10 - 2601: -18,10 - 2602: -17,10 - 2603: -16,10 - 2604: -15,10 - 2605: -14,10 - 2606: -13,10 - 2607: -6,11 - 2608: -7,11 - 2609: -8,11 - 2610: -8,10 - 2731: 15,-8 - 2732: 15,-10 - 2810: -4,-38 - 2811: -4,-39 - 2812: -4,-40 - 2813: -4,-41 - 2814: -4,-42 - 2815: -4,-43 - 2816: -4,-44 - 2817: -4,-45 - 2818: -4,-46 - 2819: -4,-47 - 2820: -4,-48 - 2821: -4,-49 - 2822: -4,-50 - 2823: -4,-51 - 2824: -4,-52 - 2825: -4,-53 - 2826: -4,-54 - 2827: -4,-55 - 2828: -4,-56 - 2829: -4,-57 - 2830: -4,-58 - 2831: -4,-59 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 80: -8,2 - 897: -29,27 - 898: -29,26 - 899: -29,25 - 1172: -29,28 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 27: -9,-6 - 28: -9,-5 - 29: -9,-4 - 36: 4,-6 - 37: 4,-5 - 38: 4,-4 - 86: -18,-11 - 87: -18,-12 - 88: -18,-13 - 2338: 102,1 - 2339: 103,1 - 2340: 103,2 - 2344: 100,1 - 2345: 99,1 - 2346: 98,1 - 2347: 96,1 - 2348: 95,1 - 2349: 94,1 - 2350: 93,1 - 2351: 92,1 - 2352: 91,1 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 1160: 38,30 - 1808: 12,-40 - 1816: 11,-47 - 1844: 29,-44 - 1965: 22,-31 - 1966: 22,-32 - 1967: 21,-32 - 1968: 20,-32 - - node: - color: '#52B4E947' - id: QuarterTileOverlayGreyscale - decals: - 2233: -57,4 - 2234: -57,3 - 2235: -57,2 - 2236: -57,1 - 2237: -57,0 - 2238: -57,-1 - 2239: -57,-2 - 2240: -57,-3 - 2241: -57,-4 - 2242: -57,-5 - 2243: -57,-6 - 2244: -57,-7 - 2245: -57,5 - 2255: -69,-8 - 2256: -68,-8 - 2257: -67,-8 - 2258: -66,-8 - 2259: -62,-8 - 2260: -61,-8 - 2261: -60,-8 - 2262: -59,-8 - 2263: -58,-8 - 2264: -57,-8 - - node: - color: '#9FED582B' - id: QuarterTileOverlayGreyscale - decals: - 1434: -37,-48 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 531: -2,25 - 532: -1,25 - 557: -2,34 - 558: -1,34 - 559: 0,34 - 560: 1,34 - 561: 2,34 - 666: 0,25 - 684: 0,36 - 685: 0,37 - 686: 0,39 - 687: 0,38 - 688: 0,40 - 744: -13,41 - 745: -13,40 - 746: -13,39 - 747: -13,38 - 748: -13,37 - 749: -13,36 - 750: -13,35 - 751: -13,34 - 790: 13,36 - 813: 10,42 - 820: 5,32 - 821: 4,32 - 822: 3,32 - 887: -4,11 - 888: -5,11 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale180 - decals: - 2169: -4,-60 - 2170: -3,-60 - 2171: -2,-60 - 2287: -62,6 - 2288: -61,6 - 2289: -60,6 - 2290: -59,6 - 2291: -58,6 - 2292: -66,6 - 2293: -67,6 - 2294: -68,6 - 2295: -69,6 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 1068: 54,2 - 1082: 56,11 - 1083: 56,9 - 1084: 56,8 - 1085: 56,7 - 1092: 56,10 - - node: - color: '#FFCF6996' - id: QuarterTileOverlayGreyscale180 - decals: - 1227: -12,-29 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 30: -10,-5 - 31: -10,-4 - 32: -10,-3 - 33: 3,-3 - 34: 3,-4 - 35: 3,-5 - 56: -8,0 - 61: -6,1 - 93: -16,-16 - 94: -16,-15 - 95: -16,-17 - 2364: 106,-1 - 2365: 105,-1 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 200: -25,4 - 202: -27,2 - 300: -36,9 - 588: -18,21 - 589: -19,21 - 590: -20,21 - 591: -21,21 - 592: -22,21 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 1249: -19,-22 - 1263: -12,-31 - 1287: -20,-34 - 1376: -20,-48 - 1379: -20,-41 - 1450: -18,-56 - 1513: -30,-32 - 1568: -37,-36 - 2312: -21,-25 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 667: 2,23 - 668: 1,23 - 669: 0,23 - 670: -1,23 - 671: -2,23 - 672: -2,22 - 673: -2,21 - 674: -2,20 - 781: 2,42 - 782: 2,43 - 783: 2,44 - 784: 2,45 - 787: 6,41 - 792: 5,40 - 828: 13,30 - 829: 12,30 - 832: 8,30 - 833: 7,30 - 837: 2,30 - 889: -2,18 - 890: -2,17 - 891: -2,16 - 892: -2,15 - 893: -2,13 - 894: -2,12 - 2035: 2,-73 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale180 - decals: - 1765: -2,-28 - 1766: -2,-29 - 1767: -2,-32 - 1768: -2,-33 - 2489: -4,-12 - 2490: -1,-12 - 2491: 0,-12 - 2492: 0,-11 - 2493: 0,-10 - 2494: 0,-9 - 2495: 1,-9 - 2496: 2,-9 - 2497: 3,-9 - 2498: 4,-9 - 2499: 5,-9 - 2500: 6,-9 - 2501: 7,-9 - 2502: 8,-9 - 2503: 9,-9 - 2504: 10,-9 - 2505: 11,-9 - 2506: 12,-9 - 2507: 13,-9 - 2570: -45,-2 - 2660: 23,2 - 2661: 22,2 - 2662: 21,2 - 2663: 20,2 - 2664: 19,2 - 2665: 18,2 - 2666: 17,2 - 2667: 17,1 - 2668: 17,0 - 2669: 17,-1 - 2670: 17,-2 - 2734: -21,-9 - 2735: -21,-7 - 2760: -21,-6 - 2761: -21,-5 - 2762: -21,-4 - 2763: -21,-3 - 2764: -21,-2 - 2765: -21,-1 - 2766: -21,0 - 2767: -21,1 - 2768: -21,2 - 2769: -21,3 - 2770: -21,4 - 2771: -21,5 - 2772: -21,6 - 2773: -21,8 - 2774: -21,7 - 2775: -20,8 - 2776: -19,8 - 2777: -18,8 - 2778: -17,8 - 2779: -16,8 - 2780: -15,8 - 2781: -14,8 - 2782: -13,8 - 2783: -12,8 - 2784: -11,8 - 2785: -10,8 - 2786: -9,8 - 2787: -7,8 - 2788: -8,8 - 2789: -6,8 - 2790: -5,8 - 2791: -4,8 - 2853: -61,-19 - 2854: -62,-19 - 2855: -61,-18 - 2856: -61,-16 - 2857: -61,-17 - 2858: -61,-15 - 2859: -61,-14 - 2860: -61,-13 - 2861: -61,-12 - 2862: -61,-11 - 2863: -61,-10 - 2864: -60,-10 - 2865: -59,-10 - 2866: -58,-10 - 2867: -57,-10 - 2868: -56,-10 - 2869: -55,-10 - 2870: -55,-8 - 2871: -55,-9 - 2872: -55,-7 - 2873: -55,-6 - 2874: -55,-5 - - node: - color: '#52B4E92E' - id: QuarterTileOverlayGreyscale180 - decals: - 1427: -29,-48 - 1428: -33,-48 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 1159: 37,31 - 1749: 8,-22 - 1750: 7,-22 - 1751: 6,-22 - 1752: 5,-22 - 1753: 4,-22 - 1754: 3,-22 - 1755: 2,-22 - 1756: 1,-22 - 1757: 0,-22 - 1758: -1,-22 - 1759: -2,-22 - 1760: -2,-27 - 1761: -2,-26 - 1762: -2,-25 - 1763: -2,-24 - 1764: -2,-23 - 1771: -2,-30 - 1800: 10,-37 - 1812: 6,-35 - 1813: 3,-45 - 1847: 17,-42 - 1962: 19,-30 - 1963: 20,-30 - 1964: 21,-30 - 2398: -2,-34 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 933: 47,-4 - 934: 46,-4 - 935: 45,-4 - 936: 45,-3 - 937: 45,-1 - 938: 45,0 - 939: 45,1 - 940: 45,2 - 941: 44,2 - 942: 43,2 - 943: 42,2 - 944: 41,2 - 945: 40,2 - 946: 39,2 - 947: 38,2 - 960: 37,2 - 961: 36,2 - 962: 35,2 - 1006: 45,-6 - 2163: 56,24 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale270 - decals: - 1157: 38,31 - 2470: -19,-9 - 2471: -18,-9 - 2472: -17,-9 - 2473: -16,-9 - 2474: -15,-9 - 2475: -14,-9 - 2476: -13,-9 - 2477: -12,-9 - 2478: -11,-9 - 2479: -10,-9 - 2480: -9,-9 - 2481: -8,-9 - 2482: -7,-9 - 2483: -6,-9 - 2484: -6,-10 - 2485: -6,-11 - 2486: -5,-12 - 2487: -6,-12 - 2488: -2,-12 - 2509: -22,-21 - 2510: -23,-21 - 2511: -23,-20 - 2512: -23,-19 - 2513: -23,-18 - 2514: -23,-17 - 2515: -23,-16 - 2516: -23,-15 - 2517: -23,-14 - 2518: -23,-13 - 2519: -23,-12 - 2520: -23,-11 - 2521: -23,-10 - 2522: -23,-9 - 2523: -23,-8 - 2524: -23,-7 - 2525: -23,-6 - 2526: -23,-5 - 2527: -23,-4 - 2528: -23,-3 - 2529: -23,-2 - 2530: -24,-2 - 2531: -25,-2 - 2532: -26,-2 - 2533: -27,-2 - 2534: -28,-2 - 2535: -30,-2 - 2536: -29,-2 - 2537: -31,-2 - 2538: -32,-2 - 2539: -33,-2 - 2540: -34,-2 - 2541: -35,-2 - 2542: -36,-2 - 2543: -37,-2 - 2544: -38,-2 - 2545: -39,-2 - 2546: -40,-2 - 2547: -41,-2 - 2548: -42,-2 - 2549: -43,-2 - 2550: -44,-2 - 2560: -46,2 - 2652: 33,2 - 2653: 32,2 - 2654: 31,2 - 2655: 30,2 - 2656: 29,2 - 2657: 28,2 - 2658: 27,2 - 2659: 26,2 - 2689: 18,-21 - 2690: 17,-21 - 2691: 16,-21 - 2692: 15,-21 - 2693: 14,-21 - 2694: 13,-21 - 2695: 12,-21 - 2696: 11,-21 - 2697: 10,-21 - 2698: -2,8 - 2699: -1,8 - 2700: 0,8 - 2701: 1,8 - 2702: 2,8 - 2703: 3,8 - 2704: 4,8 - 2705: 5,8 - 2706: 6,8 - 2707: 7,8 - 2708: 8,8 - 2709: 9,8 - 2710: 10,8 - 2711: 11,8 - 2712: 12,8 - 2713: 13,8 - 2714: 14,8 - 2715: 15,8 - 2716: 15,7 - 2717: 15,6 - 2718: 15,5 - 2719: 15,4 - 2720: 15,3 - 2721: 15,2 - 2722: 15,1 - 2723: 15,0 - 2724: 15,-1 - 2725: 15,-2 - 2726: 15,-4 - 2727: 15,-3 - 2728: 15,-5 - 2729: 15,-6 - 2730: 15,-7 - 2733: 15,-9 - - node: - color: '#9FED582B' - id: QuarterTileOverlayGreyscale270 - decals: - 1433: -37,-46 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 536: -14,31 - 537: -14,32 - 538: -14,33 - 539: -5,27 - 540: -5,28 - 541: -5,29 - 542: -5,30 - 543: -5,31 - 544: -4,27 - 545: -3,27 - 546: -2,27 - 570: -14,30 - 693: 0,42 - 694: -1,42 - 695: -2,42 - 696: -3,42 - 697: -4,42 - 698: -5,42 - 699: -12,48 - 700: -11,48 - 701: -10,48 - 702: -9,48 - 703: -8,48 - 704: -7,48 - 705: -6,48 - 706: -5,48 - 707: -4,48 - 708: -3,48 - 709: -2,48 - 710: -1,48 - 711: 0,48 - 712: -13,48 - 713: -14,48 - 714: -15,48 - 715: -16,48 - 716: -17,48 - 758: -8,30 - 759: -11,30 - 788: 12,41 - 791: 13,40 - 830: 10,30 - 834: 5,30 - 835: 4,30 - 838: 0,30 - 839: 0,31 - 840: 0,32 - 862: -4,23 - 863: -5,23 - 864: -6,23 - 865: -7,23 - 866: -8,23 - 867: -9,23 - 868: -10,23 - 869: -11,23 - 870: -12,23 - 871: -13,23 - 872: -14,23 - 873: -15,23 - 874: -16,23 - 875: -17,23 - 876: -4,22 - 877: -4,21 - 878: -4,20 - 879: -4,19 - 880: -4,18 - 881: -4,16 - 882: -4,17 - 883: -4,15 - 884: -4,14 - 885: -4,13 - 886: -4,12 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 55: 2,0 - 62: 0,1 - 96: -18,-15 - 97: -18,-16 - 98: -18,-17 - 2353: 91,-1 - 2354: 92,-1 - 2355: 93,-1 - 2356: 94,-1 - 2357: 95,-1 - 2358: 96,-1 - 2359: 98,-1 - 2360: 99,-1 - 2361: 100,-1 - 2362: 102,-1 - 2363: 103,-1 - - node: - color: '#A4823196' - id: QuarterTileOverlayGreyscale270 - decals: - 117: -18,4 - 118: -18,3 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 1811: 12,-35 - 1814: 11,-45 - 1846: 29,-42 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 187: -23,4 - 190: -23,6 - 201: -28,2 - 289: -31,14 - 349: -37,2 - 364: -31,22 - 365: -31,23 - 580: -29,21 - 581: -28,21 - 582: -27,21 - 583: -26,21 - 584: -25,21 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 - decals: - 2166: -4,-60 - 2167: -3,-60 - 2168: -2,-60 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale270 - decals: - 2274: -57,-7 - 2275: -57,-6 - 2276: -57,-5 - 2277: -57,-4 - 2278: -57,-3 - 2279: -57,-2 - 2280: -57,-1 - 2281: -57,0 - 2282: -57,1 - 2283: -57,2 - 2284: -57,3 - 2285: -57,4 - 2286: -57,5 - - node: - color: '#52B4E947' - id: QuarterTileOverlayGreyscale270 - decals: - 2246: -58,6 - 2247: -59,6 - 2248: -60,6 - 2249: -61,6 - 2250: -62,6 - 2251: -66,6 - 2252: -67,6 - 2253: -68,6 - 2254: -69,6 - - node: - color: '#FFCF6996' - id: QuarterTileOverlayGreyscale270 - decals: - 1229: -4,-28 - 1230: -4,-29 - 1231: -4,-30 - 1232: -4,-31 - 1233: -4,-32 - 1234: -4,-33 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 1235: -4,-27 - 1236: -4,-26 - 1237: -4,-25 - 1238: -4,-24 - 1239: -4,-23 - 1240: -4,-22 - 1241: -5,-22 - 1242: -6,-22 - 1243: -7,-22 - 1244: -8,-22 - 1245: -11,-22 - 1246: -12,-22 - 1247: -13,-22 - 1248: -21,-22 - 1260: -9,-22 - 1261: -10,-22 - 1292: -22,-32 - 1373: -22,-45 - 1383: -23,-40 - 1446: -20,-58 - 1447: -22,-56 - 1449: -16,-56 - 1514: -26,-32 - 1569: -34,-36 - - node: - color: '#52B4E92E' - id: QuarterTileOverlayGreyscale270 - decals: - 1425: -27,-48 - 1426: -31,-48 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 925: 47,4 - 926: 47,3 - 927: 47,2 - 928: 47,1 - 929: 47,-1 - 930: 47,-2 - 931: 47,-3 - 932: 47,-4 - 948: 46,4 - 949: 45,4 - 950: 44,4 - 951: 43,4 - 952: 42,4 - 953: 41,4 - 954: 40,4 - 955: 39,4 - 956: 38,4 - 957: 37,4 - 958: 36,4 - 959: 35,4 - 983: 47,0 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 85: -16,-11 - 89: -16,-12 - 90: -16,-13 - 2341: 106,1 - 2342: 105,1 - 2343: 105,2 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale90 - decals: - 1158: 37,30 - 2414: -7,-19 - 2450: 13,-8 - 2451: 12,-8 - 2452: 11,-8 - 2453: 10,-8 - 2454: 9,-8 - 2455: 8,-8 - 2456: 7,-8 - 2457: 6,-8 - 2458: 5,-8 - 2459: 4,-8 - 2460: 3,-8 - 2461: 2,-8 - 2462: 1,-8 - 2468: -6,-8 - 2571: -45,0 - 2611: 0,11 - 2612: 1,11 - 2613: 2,11 - 2614: 2,10 - 2615: 3,10 - 2616: 4,10 - 2617: 5,10 - 2618: 6,10 - 2619: 7,10 - 2620: 8,10 - 2621: 10,10 - 2622: 9,10 - 2623: 11,10 - 2624: 12,10 - 2625: 13,10 - 2626: 14,10 - 2627: 15,10 - 2628: 16,10 - 2629: 17,10 - 2630: 17,9 - 2631: 17,8 - 2632: 17,7 - 2633: 17,6 - 2634: 17,5 - 2635: 17,4 - 2636: 18,4 - 2637: 19,4 - 2638: 20,4 - 2639: 22,4 - 2640: 21,4 - 2641: 23,4 - 2642: 24,4 - 2643: 25,4 - 2644: 26,4 - 2645: 27,4 - 2646: 28,4 - 2647: 29,4 - 2648: 30,4 - 2649: 31,4 - 2650: 32,4 - 2651: 33,4 - 2671: 17,-5 - 2672: 17,-6 - 2673: 17,-7 - 2674: 17,-8 - 2675: 17,-9 - 2676: 17,-10 - 2677: 17,-11 - 2678: 17,-12 - 2679: 17,-13 - 2680: 17,-14 - 2681: 17,-15 - 2682: 17,-16 - 2683: 18,-16 - 2684: 18,-17 - 2685: 18,-18 - 2686: 18,-19 - 2687: 18,-20 - 2688: 18,-21 - 2736: -21,-8 - 2737: -21,-10 - 2738: -21,-11 - 2739: -21,-12 - 2740: -21,-13 - 2741: -21,-14 - 2742: -21,-15 - 2743: -21,-16 - 2744: -21,-17 - 2745: -21,-19 - 2746: -20,-19 - 2747: -21,-18 - 2748: -19,-19 - 2749: -18,-19 - 2750: -17,-19 - 2751: -16,-19 - 2752: -15,-19 - 2753: -14,-19 - 2754: -13,-19 - 2755: -12,-19 - 2756: -11,-19 - 2757: -10,-19 - 2758: -9,-19 - 2759: -8,-19 - 2792: -9,10 - 2832: -2,-59 - 2833: -2,-58 - 2834: -2,-57 - 2835: -2,-56 - 2836: -2,-55 - 2837: -2,-54 - 2838: -2,-53 - 2839: -2,-52 - 2840: -2,-51 - 2841: -2,-50 - 2842: -2,-49 - 2843: -2,-48 - 2844: -2,-47 - 2845: -2,-46 - 2846: -2,-45 - 2847: -2,-44 - 2848: -2,-43 - 2849: -2,-42 - 2850: -2,-41 - 2851: -2,-40 - 2852: -2,-39 - 2875: -55,3 - 2876: -55,4 - 2877: -55,5 - 2878: -55,6 - 2879: -55,7 - 2880: -55,8 - 2881: -56,8 - 2882: -57,8 - 2883: -58,8 - 2884: -59,8 - 2885: -60,8 - 2886: -61,8 - 2887: -62,8 - 2888: -63,8 - 2889: -64,8 - 2890: -65,8 - 2891: -66,8 - 2892: -67,8 - 2893: -68,8 - 2894: -69,8 - 2895: -70,8 - 2896: -71,8 - 2897: -72,8 - 2898: -73,8 - 2899: -74,8 - 2900: -75,8 - 2901: -76,8 - - node: - color: '#52B4E92E' - id: QuarterTileOverlayGreyscale90 - decals: - 1421: -35,-46 - 1431: -24,-48 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 70: 2,2 - 533: -4,25 - 534: -5,25 - 535: -6,25 - 551: -9,34 - 552: -8,34 - 553: -7,34 - 554: -6,34 - 555: -5,34 - 556: -4,34 - 565: -2,27 - 566: -2,28 - 567: -2,29 - 568: -2,30 - 569: -2,31 - 665: 2,25 - 689: 2,36 - 690: 2,37 - 691: 2,38 - 692: 2,40 - 717: -17,47 - 718: -16,47 - 719: -15,47 - 720: -14,47 - 721: -13,47 - 722: -12,47 - 723: -11,47 - 724: -10,47 - 725: -9,47 - 726: -8,47 - 727: -7,47 - 728: -6,47 - 729: -5,47 - 730: -4,47 - 731: -3,47 - 732: -2,47 - 733: -1,47 - 734: 0,47 - 752: -11,41 - 753: -11,40 - 789: 5,36 - 812: 8,42 - 814: 13,32 - 815: 12,32 - 816: 11,32 - 817: 10,32 - 818: 9,32 - 819: 8,32 - 895: -2,11 - 896: -1,11 - - node: - color: '#FFCF6996' - id: QuarterTileOverlayGreyscale90 - decals: - 1206: -9,-30 - 1228: -12,-31 - - node: - color: '#A4823196' - id: QuarterTileOverlayGreyscale90 - decals: - 112: -16,4 - 113: -16,5 - 114: -16,6 - 115: -17,6 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 191: -29,0 - 192: -27,0 - 199: -25,5 - 362: -32,21 - 363: -32,22 - 2178: -44,28 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale90 - decals: - 2265: -69,-8 - 2266: -68,-8 - 2267: -67,-8 - 2268: -66,-8 - 2269: -62,-8 - 2270: -61,-8 - 2271: -60,-8 - 2272: -59,-8 - 2273: -58,-8 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 1770: -2,-32 - 1809: 10,-40 - 1810: 6,-37 - 1815: 3,-47 - 1848: 17,-44 - 2399: -2,-38 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 1262: -12,-29 - 1286: -20,-36 - 1375: -20,-50 - 1380: -20,-44 - 1439: -16,-61 - 1440: -16,-60 - 1441: -16,-59 - 1442: -16,-58 - 1512: -30,-36 - 1567: -37,-32 - 2326: -15,-24 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Remains - decals: - 2064: -11,-56 - - node: - color: '#FFFFFFFF' - id: Rock01 - decals: - 515: -48.019554,-1.9424171 - - node: - color: '#FFFFFFFF' - id: Rock02 - decals: - 184: 31.003439,-21.97547 - 513: -54.03518,-0.067417145 - 1668: -46.069923,-54.486828 - - node: - color: '#FFFFFFFF' - id: Rock03 - decals: - 13: -16.952284,-6.9974065 - 512: -54.019554,-1.9892921 - - node: - color: '#FFFFFFFF' - id: Rock04 - decals: - 14: -14.092909,-6.9817815 - 185: 30.987814,-20.959845 - 1669: -47.8668,-53.252453 - - node: - color: '#FFFFFFFF' - id: Rock05 - decals: - 516: -48.019554,-0.083042145 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign1 - decals: - 2192: -6,-21 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign2 - decals: - 2193: -5,-21 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign3 - decals: - 2194: -4,-21 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign4 - decals: - 2195: -3,-21 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign5 - decals: - 2196: -2,-21 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign6 - decals: - 2197: -1,-21 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign7 - decals: - 2198: 0,-21 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 146: 8,-11 - 358: -29,4 - 994: 51,-5 - 1073: 50,5 - - node: - color: '#FFCF6996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1201: -10,-29 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1040: 19,8 - 2099: 46,16 - 2120: 48,22 - 2129: 42,26 - 2150: 48,26 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 659: 0,28 - 741: -13,42 - 2030: 0,-68 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 81: -8,4 - 1591: -44,-46 - 1592: -55,-46 - 1593: -52,-52 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 216: -35,7 - 217: -32,8 - 256: -38,23 - 285: -32,17 - 371: -25,19 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale - decals: - 41: -10,2 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1252: -9,-26 - 1267: -17,-29 - 1325: -32,-32 - 1326: -29,-30 - 1384: -27,-51 - 1398: -36,-51 - 1479: -18,-34 - 1499: -18,-42 - 2328: -17,-23 - - node: - color: '#52B4E92E' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1413: -28,-50 - 1414: -29,-51 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2552: -47,-4 - 2553: -47,3 - 2793: -53,3 - 2794: -53,-4 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 39: 4,-1 - 47: -8,-1 - 60: -6,0 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 651: 1,45 - 658: 2,27 - 785: 6,40 - 2028: 2,-74 - 2029: 3,-73 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1250: -10,-25 - 1265: -12,-32 - 1322: -27,-38 - 1323: -24,-36 - 1386: -24,-53 - 1399: -33,-53 - 1481: -15,-39 - 1500: -14,-44 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2551: -45,-5 - 2795: -49,-5 - 2796: -49,2 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1042: 23,6 - 1053: 57,-3 - 2092: 44,14 - 2108: 53,13 - 2127: 46,19 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 203: -25,2 - 219: -31,2 - 245: -40,23 - 258: -34,22 - 298: -34,9 - 373: -18,12 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1779: 8,-27 - 2006: 25,-37 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1600: -42,-48 - 1601: -50,-57 - 1602: -50,-50 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 40: -10,-1 - 48: 2,-1 - 59: 0,0 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 652: -4,45 - 660: 0,27 - 786: 12,40 - 2027: 0,-74 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1009: 45,-9 - 1043: 19,6 - 2091: 42,14 - 2100: 46,13 - 2128: 42,19 - 2149: 48,24 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2555: -47,-5 - 2556: -47,2 - 2797: -53,-5 - 2798: -53,2 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1597: -52,-57 - 1598: -55,-50 - 1599: -44,-48 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 206: -29,2 - 215: -35,2 - 246: -44,23 - 259: -38,22 - 286: -32,14 - 370: -25,12 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1253: -9,-25 - 1266: -17,-32 - 1321: -29,-38 - 1324: -32,-36 - 1387: -27,-53 - 1396: -36,-53 - 1482: -18,-39 - 1501: -18,-44 - 2310: -20,-25 - 2329: -17,-27 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 72: 2,4 - 657: 2,28 - 742: -11,42 - 754: -10,40 - 2031: 3,-68 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1021: 55,-6 - 1041: 23,8 - 2117: 53,22 - 2130: 46,26 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2554: -45,3 - 2799: -49,3 - 2800: -49,-4 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 211: -25,8 - 218: -31,8 - 257: -34,23 - 266: -34,21 - 372: -18,19 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1778: 8,-24 - 1786: 11,-25 - 2005: 25,-35 - - node: - color: '#52B4E92E' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1415: -32,-50 - 1416: -31,-51 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1251: -10,-26 - 1327: -27,-30 - 1328: -24,-32 - 1385: -24,-51 - 1397: -33,-51 - 1480: -15,-34 - 1498: -14,-42 - 2327: -15,-23 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1594: -42,-46 - 1595: -50,-46 - 1596: -50,-52 - - node: - color: '#FFCF6996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1202: -9,-29 - 1208: -7,-30 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 42: 4,2 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleNE - decals: - 1932: 6,-52 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 905: -13,10 - 1026: 50,-7 - 1875: 0,-29 - 2082: 58,13 - 2084: 55,16 - 2087: 55,22 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 904: -9,10 - 1025: 52,-7 - 1072: 52,4 - 1672: -65,-42 - 1874: 4,-29 - 2088: 57,22 - 2185: -42,28 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 992: 50,-4 - 1870: 0,-27 - 2058: -5,-72 - 2081: 58,27 - 2090: 55,18 - 2165: 55,24 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 993: 52,-4 - 1869: 4,-27 - 2056: -9,-72 - 2057: -3,-72 - 2060: 0,-73 - 2089: 57,18 - - node: - color: '#52B4E996' - id: WarnFullGreyscale - decals: - 2324: -15,-28 - 2325: -14,-28 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 767: 18,42 - 768: 18,43 - 769: 18,44 - 770: 18,45 - 771: 18,46 - 772: 18,47 - 1075: 65,4 - 1103: 51,8 - 1104: 51,9 - 1190: 55,32 - 1191: 55,33 - 1884: 0,-43 - 1885: 0,-42 - 1886: 0,-41 - 1887: 0,-40 - 1888: 0,-39 - 1936: 6,-50 - 1937: 6,-49 - 2011: 34,-58 - 2012: 34,-57 - 2013: 34,-56 - 2014: 34,-55 - 2015: 34,-54 - 2074: 58,14 - 2075: 58,15 - 2076: 58,16 - 2077: 58,24 - 2078: 58,25 - 2079: 58,26 - 2210: 27,-61 - 2211: 27,-60 - 2212: 27,-59 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleE - decals: - 1931: 6,-51 - 1951: 16,-44 - 1952: 16,-43 - 1953: 16,-42 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleE - decals: - 1515: -24,-35 - 1516: -24,-33 - 1525: -11,-26 - 1526: -11,-25 - 1554: -34,-35 - 1555: -34,-33 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleN - decals: - 1521: -9,-27 - 1522: -10,-27 - 1527: -20,-39 - 1528: -21,-39 - 1529: -22,-39 - 1536: -20,-53 - 1537: -21,-53 - 1538: -22,-53 - 1543: -23,-23 - 1544: -24,-23 - 2313: -20,-24 - 2322: -14,-29 - 2323: -15,-29 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - decals: - 1920: 27,-50 - 1921: 26,-50 - 1922: 25,-50 - 1923: 24,-50 - 1927: 10,-52 - 1928: 9,-52 - 1929: 8,-52 - 1930: 7,-52 - 1935: 6,-51 - 1942: 10,-41 - 1943: 11,-41 - 1944: 12,-41 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleS - decals: - 1916: 24,-50 - 1917: 25,-50 - 1918: 26,-50 - 1919: 27,-50 - 1945: 12,-41 - 1946: 11,-41 - 1947: 10,-41 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleS - decals: - 1519: -9,-24 - 1520: -10,-24 - 1530: -20,-37 - 1531: -21,-37 - 1532: -22,-37 - 1533: -20,-51 - 1534: -21,-51 - 1535: -22,-51 - 2320: -15,-27 - 2321: -14,-27 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - decals: - 1933: 12,-51 - 1934: 12,-50 - 1948: 16,-44 - 1949: 16,-43 - 1950: 16,-42 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleW - decals: - 1517: -32,-35 - 1518: -32,-33 - 1523: -8,-26 - 1524: -8,-25 - 1545: -24,-23 - 1546: -24,-24 - 1547: -24,-25 - 1548: -24,-26 - 1549: -24,-27 - 1550: -24,-28 - 2333: -17,-25 - - node: - color: '#DE3A3A96' - id: WarnLineN - decals: - 1677: -66,-40 - 1678: -67,-40 - 1679: -68,-40 - 1680: -69,-40 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 632: -2,36 - 633: -3,36 - 634: -4,36 - 635: -6,36 - 636: -8,36 - 639: -5,36 - 640: -7,36 - 649: -5,36 - 650: -7,36 - 761: 18,42 - 762: 17,42 - 763: 16,42 - 991: 51,-4 - 1107: 51,8 - 1108: 50,8 - 1109: 49,8 - 1194: 55,32 - 1195: 54,32 - 1196: 53,32 - 1866: 1,-27 - 1867: 2,-27 - 1868: 3,-27 - 1879: 3,-38 - 1880: 2,-38 - 1881: 1,-38 - 1883: 4,-38 - 1897: 13,-49 - 1898: 14,-49 - 1899: 15,-49 - 1961: 8,-30 - 2052: -4,-72 - 2053: -10,-72 - 2054: -12,-72 - 2055: -11,-72 - 2080: 59,27 - 2085: 56,18 - 2164: 56,24 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 773: 16,42 - 774: 16,43 - 775: 16,44 - 776: 16,45 - 777: 16,46 - 778: 16,47 - 922: 54,-17 - 923: 54,-16 - 924: 54,-15 - 1074: 67,4 - 1105: 49,8 - 1106: 49,9 - 1192: 53,32 - 1193: 53,33 - 1876: 6,-41 - 1877: 6,-40 - 1878: 6,-39 - 1956: 8,-33 - 1957: 8,-32 - 1958: 8,-30 - 1959: 8,-29 - 2016: 32,-58 - 2017: 32,-57 - 2018: 32,-56 - 2059: 0,-74 - 2213: 29,-61 - 2214: 29,-60 - 2215: 29,-59 - - node: - color: '#DE3A3A96' - id: WarnLineW - decals: - 1673: -66,-40 - 1674: -67,-40 - 1675: -68,-40 - 1676: -69,-40 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 675: -7,25 - 676: -8,25 - 677: -10,25 - 678: -11,25 - 679: -13,25 - 680: -14,25 - 764: 18,47 - 765: 17,47 - 766: 16,47 - 901: -11,10 - 902: -12,10 - 903: -10,10 - 1024: 51,-7 - 1069: 49,4 - 1070: 50,4 - 1071: 51,4 - 1110: 51,9 - 1111: 50,9 - 1112: 49,9 - 1182: 58,36 - 1183: 57,36 - 1184: 56,36 - 1185: 55,36 - 1186: 54,36 - 1187: 53,33 - 1188: 54,33 - 1189: 55,33 - 1671: -66,-42 - 1871: 1,-29 - 1872: 2,-29 - 1873: 3,-29 - 1960: 8,-32 - 2073: 59,13 - 2083: 56,16 - 2086: 56,22 - 2183: -44,28 - 2184: -43,28 - 2334: 108,1 - 2335: 109,1 - 2336: 110,1 - 2337: 111,1 - - node: - color: '#FFFFFFFF' - id: WarningLine - decals: - 102: -17,-17 - 141: 9,-14 - 142: 8,-14 - 143: 7,-14 - 341: -41,23 - 342: -42,23 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 145: 6,-15 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 144: 10,-15 - 331: -43,16 - 332: -43,17 - 333: -43,18 - 334: -43,19 - 335: -43,20 - 336: -43,21 - 337: -43,15 - 338: -43,14 - 339: -43,13 - 366: -32,22 - 367: -32,21 - 368: -32,23 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 343: -41,21 - 344: -42,21 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 99: -16,-11 - 100: -17,-11 - 101: -18,-11 - - node: - color: '#FFFFFFFF' - id: WarningLineCorner - decals: - 103: -18,-17 - 147: 6,-14 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLineCorner - decals: - 106: -15,-11 - - node: - color: '#FFFFFFFF' - id: WarningLineCornerFlipped - decals: - 104: -16,-17 - 148: 10,-14 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLineCornerFlipped - decals: - 105: -19,-11 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLineCornerFlipped - decals: - 340: -43,12 - - node: - color: '#FFFFFFFF' - id: bushsnowa1 - decals: - 518: -48.03518,-0.92679214 - - node: - cleanable: True - color: '#DE3A3A96' - id: rune1 - decals: - 2061: -12,-56 - - node: - cleanable: True - color: '#DE3A3A96' - id: rune4 - decals: - 2063: -13,-55 - - node: - cleanable: True - color: '#DE3A3A96' - id: rune5 - decals: - 2062: -11,-55 - type: DecalGrid - - version: 2 - data: - tiles: - -2,-1: - 0: 65535 - -1,-3: - 0: 65535 - -1,-1: - 0: 65535 - -1,-2: - 0: 65535 - -2,1: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 0,-1: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 0,0: - 0: 65535 - 1,3: - 0: 65535 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 0,4: - 0: 65535 - -1,4: - 0: 65535 - -2,0: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 64511 - 1: 1024 - -4,2: - 0: 36863 - 1: 28672 - -3,0: - 0: 62463 - 1: 3072 - -3,1: - 0: 65535 - -3,2: - 0: 65535 - -2,2: - 0: 65535 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 2,2: - 0: 65535 - 3,0: - 0: 65535 - 3,1: - 0: 65279 - 1: 256 - 3,2: - 0: 65535 - 0,-4: - 0: 65535 - 1,-4: - 0: 65535 - 2,-4: - 0: 49151 - 1: 16384 - 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: 65023 - 1: 512 - -3,-3: - 0: 65531 - 1: 4 - -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-4: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -1,-4: - 0: 65535 - -6,-4: - 0: 61183 - 1: 4352 - -6,-3: - 0: 65534 - 1: 1 - -6,-2: - 0: 65535 - -6,-1: - 0: 65535 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -6,2: - 0: 65535 - -5,0: - 0: 65407 - 1: 128 - -5,1: - 0: 64511 - 1: 1024 - -5,2: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,-4: - 0: 30719 - 1: 34816 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 57343 - 1: 8192 - -3,-6: - 0: 65535 - -3,-5: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-6: - 0: 62463 - 1: 3072 - 2,-5: - 0: 65535 - 3,-6: - 0: 65275 - 1: 260 - 3,-5: - 0: 65535 - -6,-6: - 0: 65519 - 1: 16 - -6,-5: - 0: 65535 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - -4,3: - 0: 61327 - -3,3: - 0: 65535 - -2,3: - 0: 49039 - 3,3: - 0: 65535 - -8,-1: - 0: 65535 - -7,-1: - 0: 65535 - -8,0: - 0: 65535 - -8,1: - 0: 65535 - -8,2: - 0: 65535 - -8,3: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -7,3: - 0: 65535 - -6,3: - 0: 65535 - -5,3: - 0: 65535 - 4,3: - 0: 65535 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65523 - 1: 12 - 6,0: - 0: 65535 - 6,1: - 0: 65439 - 1: 96 - 6,2: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 5,-4: - 0: 65535 - 5,-3: - 0: 65535 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-4: - 0: 65535 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 64511 - 1: 1024 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - 3,-7: - 0: 65535 - 4,-7: - 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 - 7,-7: - 0: 65535 - 7,-6: - 0: 65535 - 7,-5: - 0: 65535 - 8,-4: - 0: 61713 - 2: 3790 - 3: 32 - 8,-3: - 4: 1 - 0: 65022 - 1: 512 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 - 9,-4: - 2: 7 - 0: 65528 - 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,0: - 0: 65531 - 1: 4 - 8,1: - 0: 65535 - 9,0: - 0: 65525 - 1: 10 - 9,1: - 0: 65535 - 10,0: - 0: 65535 - 10,1: - 0: 65535 - 8,-7: - 0: 65535 - 8,-6: - 0: 30591 - 1: 34944 - 8,-5: - 0: 8191 - 2: 57344 - 9,-7: - 0: 64511 - 1: 1024 - 9,-6: - 0: 64511 - 1: 1024 - 9,-5: - 0: 36863 - 2: 28672 - 10,-7: - 0: 64447 - 1: 1088 - 10,-6: - 0: 65535 - 10,-5: - 0: 65535 - -4,4: - 0: 65262 - -4,5: - 0: 65420 - -4,6: - 0: 49151 - 1: 16384 - -3,4: - 0: 65535 - -3,5: - 0: 65423 - -3,6: - 0: 57343 - 1: 8192 - -2,4: - 0: 64443 - -2,5: - 0: 65417 - -2,6: - 0: 61439 - 1: 4096 - -1,5: - 0: 65535 - -1,6: - 0: 65535 - -8,4: - 0: 65519 - 1: 16 - -8,5: - 0: 32767 - 1: 32768 - -8,6: - 0: 65503 - 1: 32 - -8,7: - 0: 65535 - -7,4: - 0: 65535 - -7,5: - 0: 65535 - -7,6: - 0: 65023 - 5: 512 - -7,7: - 0: 65529 - 1: 6 - -6,4: - 0: 65535 - -6,5: - 0: 65535 - -6,6: - 0: 65535 - -5,4: - 0: 65535 - -5,5: - 0: 65535 - -5,6: - 0: 65535 - -12,6: - 0: 65535 - -12,7: - 0: 36863 - -12,4: - 0: 52428 - -12,5: - 0: 52428 - -11,4: - 0: 65535 - -11,5: - 0: 65535 - -11,6: - 0: 65535 - -11,7: - 0: 65535 - -10,4: - 0: 65535 - -10,5: - 0: 61439 - 1: 4096 - -10,6: - 1: 17 - 0: 65518 - -10,7: - 0: 65531 - 1: 4 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -9,6: - 0: 65535 - -9,7: - 0: 65535 - -12,0: - 0: 65535 - -12,1: - 0: 65535 - -12,2: - 0: 53247 - -12,3: - 0: 52428 - -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 - -12,-2: - 0: 65535 - -12,-1: - 0: 65535 - -11,-1: - 0: 65311 - 1: 224 - -10,-1: - 0: 65535 - -9,-1: - 0: 65535 - 0,5: - 0: 65519 - 1: 16 - 0,6: - 0: 65535 - -16,-2: - 0: 65535 - -16,-1: - 0: 65503 - 6: 32 - -16,-3: - 0: 65535 - -15,-3: - 0: 65527 - 1: 8 - -15,-2: - 0: 65535 - -15,-1: - 0: 57343 - -14,-2: - 0: 65535 - -14,-1: - 0: 65535 - -13,-2: - 0: 65535 - -13,-1: - 0: 65535 - -16,0: - 0: 65503 - 6: 32 - -16,1: - 0: 65535 - -16,2: - 0: 65535 - -16,3: - 0: 15 - -15,0: - 0: 65533 - -15,1: - 0: 65535 - -15,2: - 0: 65535 - -15,3: - 0: 15 - -14,0: - 0: 65535 - -14,1: - 0: 63487 - 1: 2048 - -14,2: - 0: 16383 - -14,3: - 0: 3 - -13,0: - 0: 65535 - -13,1: - 0: 65023 - 1: 512 - -13,2: - 0: 4095 - -19,-2: - 0: 57215 - -19,-1: - 0: 65533 - -18,-2: - 0: 65535 - -18,-1: - 0: 65535 - -17,-2: - 0: 65439 - 1: 96 - -17,-1: - 0: 63487 - 6: 2048 - -19,1: - 0: 65503 - -19,2: - 0: 65535 - -19,3: - 0: 15 - -19,0: - 0: 52479 - -18,0: - 0: 65535 - -18,1: - 0: 65407 - 1: 128 - -18,2: - 0: 65535 - -18,3: - 0: 15 - -17,0: - 0: 65527 - 6: 8 - -17,1: - 0: 65519 - 1: 16 - -17,2: - 0: 65535 - -17,3: - 0: 15 - -4,-7: - 0: 65535 - -3,-7: - 0: 65535 - -2,-7: - 0: 65535 - -1,-7: - 0: 65535 - 0,-7: - 0: 65535 - 1,-7: - 0: 65535 - 2,-7: - 0: 65535 - -6,-7: - 0: 65535 - -5,-7: - 0: 65535 - 11,-4: - 0: 65535 - 11,-3: - 0: 65535 - 11,-2: - 0: 65535 - 11,-1: - 0: 65535 - 8,2: - 0: 65023 - 1: 512 - 9,2: - 0: 65535 - 10,2: - 0: 65535 - 11,0: - 0: 65535 - 11,1: - 0: 63487 - 1: 2048 - 11,2: - 0: 65535 - 11,-5: - 0: 65535 - 12,-5: - 0: 65535 - 13,-5: - 0: 49151 - 1: 16384 - 12,-4: - 0: 65535 - 12,-3: - 0: 65535 - 12,-2: - 0: 65535 - 12,-1: - 0: 65535 - 13,-4: - 0: 65467 - 1: 68 - 13,-3: - 0: 65535 - 13,-2: - 0: 65535 - 13,-1: - 0: 65535 - 12,0: - 0: 65535 - 12,1: - 0: 24575 - 1: 40960 - 12,2: - 0: 62975 - 1: 2560 - 13,0: - 0: 65535 - 13,1: - 0: 65535 - 13,2: - 0: 65503 - 1: 32 - 2,3: - 0: 65535 - -8,-4: - 0: 65535 - -8,-3: - 0: 65535 - -8,-2: - 0: 65535 - -7,-4: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -4,-8: - 0: 65535 - -3,-8: - 0: 65535 - -2,-8: - 0: 65531 - 1: 4 - -1,-8: - 0: 65535 - 0,-8: - 0: 65535 - 1,-8: - 0: 65535 - 2,-8: - 0: 61439 - 1: 4096 - 3,-8: - 0: 65535 - -8,-8: - 0: 65535 - -8,-7: - 0: 65535 - -8,-6: - 0: 65535 - -8,-5: - 0: 65535 - -7,-8: - 0: 65535 - -7,-7: - 0: 65535 - -7,-6: - 0: 65535 - -7,-5: - 0: 65533 - 1: 2 - -6,-8: - 0: 65535 - -5,-8: - 0: 65535 - 4,-8: - 0: 32767 - 1: 32768 - 5,-8: - 0: 65535 - 6,-8: - 0: 65535 - 7,-8: - 0: 65535 - 8,-8: - 0: 65471 - 1: 64 - 9,-8: - 0: 65535 - 10,-8: - 0: 65535 - -12,-4: - 0: 65535 - -12,-3: - 0: 65535 - -11,-4: - 0: 57343 - 1: 8192 - -11,-3: - 0: 65535 - -11,-2: - 0: 65535 - -10,-4: - 0: 65535 - -10,-3: - 0: 65535 - -10,-2: - 0: 65535 - -9,-4: - 0: 65535 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - 1,4: - 0: 65535 - 1,5: - 0: 61439 - 1: 4096 - 2,4: - 0: 65535 - 2,5: - 0: 32767 - 1: 32768 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - -16,-4: - 0: 65535 - -15,-4: - 0: 65533 - 1: 2 - -14,-4: - 0: 65535 - -14,-3: - 0: 65535 - -13,-4: - 0: 65023 - 1: 512 - -13,-3: - 0: 65535 - -20,-3: - 0: 43744 - -20,-2: - 0: 3306 - -20,-1: - 0: 34816 - -19,-3: - 0: 65520 - -18,-3: - 0: 65520 - -17,-3: - 0: 65528 - -17,-4: - 0: 34952 - -20,1: - 0: 61102 - -20,2: - 0: 3822 - -20,0: - 0: 8 - -12,-8: - 0: 65535 - -12,-7: - 0: 65535 - -12,-6: - 0: 65535 - -12,-5: - 0: 65535 - -11,-8: - 0: 65535 - -11,-7: - 0: 65535 - -11,-6: - 0: 65535 - -11,-5: - 0: 65535 - -10,-8: - 0: 65531 - 1: 4 - -10,-7: - 0: 57343 - 1: 8192 - -10,-6: - 0: 65021 - 1: 514 - -10,-5: - 0: 65535 - -9,-8: - 0: 65535 - -9,-7: - 0: 65535 - -9,-6: - 0: 65535 - -9,-5: - 0: 65535 - -16,-6: - 0: 65535 - -16,-5: - 0: 65535 - -16,-8: - 0: 11776 - -16,-7: - 0: 61098 - -15,-8: - 0: 65518 - -15,-7: - 0: 65535 - -15,-6: - 0: 65527 - 1: 8 - -15,-5: - 0: 65535 - -14,-8: - 0: 65535 - -14,-7: - 0: 65535 - -14,-6: - 0: 65535 - -14,-5: - 0: 65535 - -13,-8: - 0: 65535 - -13,-7: - 0: 65535 - -13,-6: - 0: 65535 - -13,-5: - 0: 65533 - 1: 2 - -20,-5: - 0: 34944 - -19,-5: - 0: 65534 - -19,-6: - 0: 61152 - -18,-6: - 0: 56816 - -18,-5: - 0: 65535 - -17,-6: - 0: 26352 - -17,-5: - 0: 65535 - -4,7: - 0: 65535 - -3,7: - 0: 65535 - -2,7: - 0: 63487 - 1: 2048 - -1,7: - 0: 65535 - -6,7: - 0: 65535 - -5,7: - 0: 48639 - 1: 16896 - 0,7: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 65535 - 0,8: - 0: 65535 - 0,9: - 1: 4097 - 0: 61438 - 0,10: - 0: 65535 - 0,11: - 0: 65487 - 1: 48 - 1,8: - 0: 65535 - 1,9: - 0: 65535 - 1,10: - 0: 65535 - 1,11: - 0: 49151 - 1: 16384 - 2,8: - 0: 65535 - 2,9: - 0: 65535 - 2,10: - 0: 65535 - 2,11: - 0: 65535 - 3,8: - 0: 65535 - 3,9: - 0: 65535 - 3,10: - 0: 65535 - 3,11: - 0: 65535 - -4,8: - 0: 65535 - -4,9: - 0: 65023 - 1: 512 - -4,10: - 0: 65535 - -4,11: - 0: 65535 - -3,8: - 0: 62271 - 1: 3264 - -3,9: - 0: 49151 - 1: 16384 - -3,10: - 0: 65531 - 1: 4 - -3,11: - 0: 65535 - -2,8: - 0: 65535 - -2,9: - 0: 65535 - -2,10: - 0: 65535 - -2,11: - 0: 65535 - -1,8: - 0: 65535 - -1,9: - 0: 65535 - -1,10: - 0: 65531 - 1: 4 - -1,11: - 0: 65295 - 1: 240 - 4,7: - 0: 65535 - 5,7: - 0: 65535 - 4,8: - 0: 65535 - 4,9: - 0: 65535 - 4,10: - 0: 65535 - 4,11: - 0: 65535 - 5,8: - 0: 65535 - 5,9: - 0: 65535 - 5,10: - 0: 65535 - 5,11: - 0: 65535 - -5,8: - 0: 65535 - -5,9: - 0: 65535 - -5,11: - 0: 65535 - -5,10: - 0: 65535 - -4,12: - 0: 65519 - 1: 16 - -4,13: - 0: 65535 - -4,14: - 0: 65535 - -3,12: - 0: 57343 - 1: 8192 - -3,13: - 0: 65535 - -3,14: - 0: 57343 - -2,12: - 0: 57343 - 1: 8192 - -2,13: - 0: 65535 - -2,14: - 0: 65535 - -5,12: - 0: 65343 - 1: 192 - -5,13: - 0: 65535 - 6,8: - 0: 65535 - 6,9: - 0: 65535 - 6,10: - 0: 65535 - -8,11: - 0: 65395 - -7,11: - 0: 65534 - -7,10: - 0: 61295 - 1: 16 - -6,10: - 0: 65519 - -6,11: - 0: 65535 - -6,8: - 0: 65535 - -6,9: - 0: 65535 - -4,15: - 0: 39423 - -3,15: - 0: 61167 - -8,12: - 0: 65518 - -8,13: - 0: 65535 - -8,14: - 0: 65535 - -8,15: - 0: 65535 - -7,12: - 0: 65535 - -7,13: - 0: 65535 - -7,14: - 0: 65535 - -7,15: - 0: 65535 - -6,12: - 0: 65535 - -6,13: - 0: 65535 - -6,14: - 0: 65535 - -6,15: - 0: 65535 - -5,14: - 0: 65535 - -5,15: - 0: 36863 - -10,13: - 0: 53247 - -10,14: - 0: 4095 - -9,13: - 0: 65535 - -9,14: - 0: 36863 - -9,12: - 0: 61337 - -9,15: - 0: 35835 - -8,16: - 0: 65535 - -8,17: - 0: 9199 - -7,16: - 0: 65535 - -7,17: - 0: 255 - -6,16: - 0: 65535 - -6,17: - 0: 55 - -5,16: - 0: 35209 - -9,16: - 0: 35835 - -4,16: - 0: 4377 - -3,16: - 0: 204 - 5,3: - 0: 65529 - 1: 6 - 6,3: - 0: 65535 - 4,4: - 0: 8191 - 1: 57344 - 4,5: - 0: 65535 - 4,6: - 0: 65535 - 5,4: - 0: 65535 - 5,5: - 0: 65535 - 5,6: - 0: 65535 - 6,4: - 0: 65535 - 6,5: - 0: 65535 - 6,6: - 0: 65535 - 6,7: - 0: 65535 - -2,15: - 0: 4095 - -1,12: - 0: 57343 - 1: 8192 - -1,13: - 0: 65535 - -1,14: - 0: 32631 - -1,15: - 0: 13107 - 4,12: - 0: 61999 - -2,16: - 0: 240 - -1,16: - 0: 17 - 0,12: - 0: 30711 - 0,13: - 0: 63351 - 0,14: - 0: 20292 - 1,12: - 0: 61951 - 1,13: - 0: 4505 - 1,14: - 0: 273 - 2,12: - 0: 62207 - 2,13: - 0: 248 - 3,12: - 0: 61471 - 7,3: - 0: 65535 - 8,3: - 0: 65535 - 9,3: - 0: 65535 - 10,3: - 0: 65535 - 11,3: - 0: 65519 - 1: 16 - 12,3: - 0: 65525 - 1: 10 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 65535 - 7,7: - 0: 65535 - 8,4: - 0: 65535 - 8,5: - 0: 65535 - 8,6: - 0: 65535 - 8,7: - 0: 65535 - 9,4: - 0: 65535 - 9,5: - 0: 65023 - 1: 512 - 9,6: - 0: 65535 - 9,7: - 0: 65535 - 10,4: - 0: 65535 - 10,5: - 0: 65535 - 10,6: - 0: 65535 - 10,7: - 0: 65535 - 11,4: - 0: 36735 - 1: 28800 - 12,4: - 0: 65535 - 6,11: - 0: 63487 - 1: 2048 - 7,8: - 0: 65535 - 7,9: - 0: 65535 - 7,10: - 0: 65535 - 7,11: - 0: 63487 - 1: 2048 - 5,12: - 0: 61455 - 6,12: - 0: 64991 - 6,13: - 0: 64989 - 6,14: - 0: 249 - 7,12: - 0: 65535 - 7,13: - 0: 65535 - 7,14: - 0: 240 - 7: 34816 - 8,8: - 0: 65535 - 8,9: - 0: 65535 - 8,10: - 0: 65535 - 8,11: - 0: 63743 - 1: 1792 - 9,8: - 0: 65535 - 9,9: - 0: 65535 - 9,10: - 0: 65535 - 9,11: - 0: 65527 - 10,8: - 0: 65503 - 1: 32 - 10,11: - 0: 30704 - 11,11: - 0: 2096 - 8,12: - 0: 65535 - 8,13: - 0: 65535 - 8,14: - 0: 244 - 9,12: - 1: 9 - 0: 62710 - 9,14: - 0: 112 - 10,12: - 0: 62199 - 11,12: - 0: 61688 - 14,-5: - 0: 65535 - 14,-4: - 0: 65535 - 14,-3: - 0: 65535 - 14,-2: - 0: 65535 - 14,-1: - 0: 56799 - 1: 8736 - 15,-1: - 0: 65535 - 13,3: - 0: 65535 - 14,0: - 0: 65533 - 1: 2 - 14,1: - 0: 65535 - 14,2: - 1: 1 - 0: 65534 - 14,3: - 0: 65535 - 15,0: - 0: 65535 - 15,1: - 0: 65407 - 1: 128 - 15,2: - 0: 65471 - 15,3: - 0: 65471 - 16,0: - 0: 32639 - 1: 32768 - 16,1: - 0: 65535 - 17,0: - 0: 7983 - 17,1: - 0: 32529 - -8,8: - 0: 65535 - -8,9: - 0: 64511 - 1: 1024 - -8,10: - 1: 129 - 0: 16254 - -7,8: - 0: 65535 - -7,9: - 0: 32767 - 1: 32768 - -11,13: - 0: 196 - -11,14: - 0: 8930 - -11,15: - 0: 8930 - -10,15: - 0: 4095 - -12,8: - 0: 34952 - -12,9: - 0: 32904 - -11,8: - 0: 65535 - -11,9: - 0: 65279 - -11,10: - 0: 65262 - -11,11: - 0: 35054 - -10,8: - 0: 65535 - -10,9: - 0: 65535 - -10,10: - 0: 65535 - -10,11: - 0: 241 - -9,8: - 0: 65535 - -9,9: - 0: 65279 - 1: 256 - -9,10: - 0: 65535 - -9,11: - 0: 56831 - -1,-9: - 0: 65535 - 0,-9: - 0: 65535 - 1,-9: - 0: 65535 - 2,-9: - 0: 61439 - 1: 4096 - 3,-9: - 0: 65535 - 4,-9: - 0: 65535 - 5,-9: - 0: 49151 - 8: 16384 - 6,-9: - 0: 65535 - -11,16: - 0: 13026 - -10,16: - 0: 4095 - -9,17: - 0: 11947 - -9,18: - 0: 14 - -8,18: - 0: 3 - 11,-7: - 0: 65535 - 11,-6: - 0: 65535 - 12,-7: - 0: 65535 - 12,-6: - 0: 65533 - 1: 2 - 12,-8: - 0: 30591 - 9: 34944 - 13,-8: - 0: 17487 - 9: 13104 - 10: 34944 - 13,-7: - 0: 65535 - 13,-6: - 0: 65535 - 14,-8: - 0: 52431 - 10: 13104 - 14,-7: - 0: 65535 - 14,-6: - 0: 65535 - 15,-8: - 0: 65535 - 15,-7: - 0: 65535 - 15,-6: - 0: 65535 - 15,-5: - 0: 65535 - 15,-4: - 0: 65535 - 15,-3: - 0: 65535 - 15,-2: - 0: 65535 - 16,-4: - 0: 32631 - 11: 136 - 7: 32768 - 16,-3: - 0: 32631 - 7: 32904 - 16,-2: - 0: 65399 - 7: 136 - 16,-1: - 0: 13299 - 17,-4: - 11: 51 - 0: 53196 - 7: 12288 - 17,-3: - 7: 12339 - 0: 53196 - 17,-2: - 7: 51 - 0: 65484 - 16,-7: - 0: 65522 - 16,-6: - 0: 32767 - 7: 32768 - 16,-5: - 0: 32631 - 7: 136 - 11: 32768 - 17,-7: - 0: 65527 - 17,-6: - 0: 53247 - 7: 12288 - 17,-5: - 7: 51 - 0: 53196 - 11: 12288 - 12,-9: - 0: 61941 - 13,-9: - 0: 62704 - 14,-9: - 0: 62712 - 15,-9: - 0: 63738 - 11,-8: - 0: 65535 - -11,12: - 0: 19592 - -10,12: - 0: 3840 - 4,13: - 0: 114 - 11,5: - 0: 65535 - 11,6: - 0: 65535 - 11,7: - 1: 1 - 0: 65534 - 12,5: - 0: 65535 - 12,6: - 1: 17 - 0: 65518 - 12,7: - 0: 64767 - 1: 768 - 13,4: - 0: 65531 - 1: 4 - 13,5: - 0: 65535 - 13,6: - 0: 65535 - 13,7: - 0: 65535 - 14,4: - 0: 65535 - 14,5: - 0: 65535 - 14,6: - 0: 65535 - 14,7: - 0: 64511 - 1: 1024 - 15,4: - 0: 65535 - 15,5: - 0: 65535 - 15,6: - 0: 49151 - 15,7: - 0: 65535 - 10,9: - 0: 65533 - 1: 2 - 10,10: - 0: 65535 - 11,8: - 0: 65535 - 11,9: - 0: 65535 - 11,10: - 0: 8191 - 9,13: - 0: 13030 - 10,13: - 0: 112 - 16,2: - 0: 65359 - 17,2: - 0: 65367 - 17,3: - 0: 65471 - 18,0: - 0: 3855 - 18,1: - 0: 40704 - 18,2: - 0: 65433 - 18,3: - 0: 32767 - 19,0: - 0: 7967 - -4,-11: - 0: 65535 - -4,-10: - 0: 65535 - -4,-9: - 0: 64511 - 1: 1024 - -3,-11: - 0: 65531 - 1: 4 - -3,-10: - 0: 65535 - -3,-9: - 0: 65535 - -2,-11: - 0: 65535 - -2,-10: - 0: 65535 - -2,-9: - 0: 65535 - -1,-11: - 0: 65535 - -1,-10: - 0: 65535 - 0,-11: - 0: 65535 - 0,-10: - 0: 65535 - -11,17: - 0: 127 - -10,17: - 0: 15 - 17,-1: - 0: 11962 - 18,-3: - 0: 43770 - 18,-1: - 0: 4010 - 18,-4: - 0: 43690 - 18,-2: - 0: 43690 - 19,-3: - 0: 57906 - 19,-1: - 0: 7970 - 19,-4: - 0: 8738 - 19,-2: - 0: 8930 - 16,-8: - 0: 60395 - 17,-8: - 0: 65535 - 18,-8: - 0: 12914 - 18,-7: - 0: 47858 - 18,-6: - 0: 43770 - 18,-5: - 0: 44970 - 19,-7: - 0: 8960 - 19,-6: - 0: 8754 - 19,-5: - 0: 8994 - 12,-10: - 0: 61696 - 13,-10: - 0: 62737 - 14,-10: - 0: 64000 - 15,-10: - 0: 61952 - 20,0: - 0: 3983 - 16,-9: - 0: 59951 - 17,-9: - 0: 65375 - 17,-10: - 0: 40960 - 18,-10: - 0: 4096 - 18,-9: - 0: 12896 - 10,-10: - 0: 63249 - 10,-9: - 0: 65535 - 11,-10: - 0: 7936 - 11,-9: - 0: 65535 - 12,8: - 0: 65535 - 12,9: - 0: 65535 - 12,10: - 0: 60411 - 12,11: - 0: 4898 - 13,8: - 0: 65375 - 1: 160 - 13,9: - 0: 65519 - 1: 16 - 13,10: - 0: 65278 - 14,8: - 0: 65535 - 14,9: - 0: 65535 - 14,10: - 0: 65535 - 15,8: - 0: 65535 - 15,9: - 0: 57343 - 15,10: - 0: 65437 - 16,8: - 0: 49023 - 1: 128 - 16,9: - 0: 40891 - 16,10: - 0: 65423 - 17,8: - 0: 53231 - 1: 16 - 17,9: - 0: 35071 - 17,10: - 0: 65416 - 18,8: - 0: 9023 - 18,9: - 0: 51 - 16,7: - 0: 65535 - 17,7: - 0: 65535 - 18,7: - 0: 16383 - 12,12: - 0: 61441 - -8,-10: - 0: 65535 - -8,-9: - 0: 65535 - -8,-11: - 0: 65535 - -7,-11: - 0: 65535 - -7,-10: - 0: 65535 - -7,-9: - 0: 65535 - -6,-11: - 0: 65535 - -6,-10: - 0: 65535 - -6,-9: - 0: 65535 - -5,-11: - 0: 65535 - -5,-10: - 0: 65535 - -5,-9: - 0: 65535 - -4,-12: - 0: 65501 - 1: 34 - -3,-12: - 12: 17 - 0: 65382 - 1: 136 - -2,-12: - 0: 65535 - -1,-12: - 0: 65535 - 0,-12: - 0: 65535 - -8,-12: - 0: 65535 - -7,-12: - 0: 65535 - -6,-12: - 0: 65535 - -5,-12: - 0: 65535 - -12,-12: - 0: 61439 - -12,-11: - 0: 32766 - 1: 32768 - -12,-10: - 0: 65531 - 1: 4 - -12,-9: - 0: 65535 - -11,-12: - 1: 5 - 0: 65530 - -11,-11: - 0: 65535 - -11,-10: - 0: 65535 - -11,-9: - 0: 65535 - -10,-12: - 0: 65535 - -10,-11: - 0: 65531 - 1: 4 - -10,-10: - 0: 32767 - 1: 32768 - -10,-9: - 0: 65535 - -9,-12: - 0: 65535 - -9,-11: - 0: 65535 - -9,-10: - 0: 61439 - 1: 4096 - -9,-9: - 0: 65535 - 0,-13: - 0: 65535 - -4,-13: - 0: 57151 - 1: 8384 - -3,-13: - 1: 35312 - 12: 4096 - 0: 26127 - -2,-13: - 0: 65535 - -1,-13: - 0: 65407 - 1: 128 - -8,-13: - 0: 65525 - 1: 10 - -7,-13: - 0: 65535 - -6,-13: - 0: 65535 - -5,-13: - 0: 65535 - -12,-13: - 0: 61183 - -11,-13: - 0: 65423 - -10,-13: - 0: 65535 - -9,-13: - 0: 65535 - -4,-16: - 0: 65535 - -4,-15: - 0: 65535 - -4,-14: - 0: 65535 - -3,-16: - 0: 53247 - 1: 12288 - -3,-15: - 0: 65023 - 1: 512 - -3,-14: - 0: 63487 - 1: 2048 - -2,-15: - 0: 65535 - -2,-14: - 0: 65535 - -8,-16: - 0: 65535 - -8,-15: - 0: 65535 - -8,-14: - 0: 24575 - 1: 40960 - -7,-16: - 0: 65535 - -7,-15: - 0: 65535 - -7,-14: - 0: 65535 - -6,-16: - 0: 65535 - -6,-15: - 0: 65535 - -6,-14: - 0: 65535 - -5,-16: - 0: 65535 - -5,-15: - 1: 1089 - 0: 64446 - -5,-14: - 0: 65023 - 1: 512 - -11,-15: - 0: 63488 - -11,-14: - 0: 43690 - -10,-16: - 0: 65503 - 1: 32 - -10,-15: - 0: 65535 - -10,-14: - 0: 65535 - -9,-16: - 0: 65503 - 1: 32 - -9,-15: - 0: 63483 - 1: 2052 - -9,-14: - 0: 65407 - 1: 128 - -12,-15: - 0: 65348 - -12,-14: - 0: 65535 - -15,-12: - 0: 50244 - -15,-11: - 0: 65348 - -15,-10: - 0: 17487 - -14,-12: - 0: 62463 - 1: 3072 - -14,-11: - 0: 65416 - -14,-10: - 0: 34959 - -13,-12: - 0: 65535 - -13,-11: - 0: 65512 - -13,-10: - 0: 65535 - -13,-9: - 0: 65535 - -15,-14: - 0: 20036 - -15,-15: - 0: 51015 - -15,-13: - 0: 17476 - -14,-15: - 0: 64580 - -14,-14: - 0: 65535 - -14,-13: - 0: 65535 - -13,-15: - 0: 65380 - -13,-14: - 0: 65535 - -13,-13: - 0: 65535 - -13,-16: - 0: 20463 - -12,-16: - 0: 18415 - -11,-16: - 0: 239 - -16,-12: - 0: 12560 - -16,-11: - 0: 65331 - -16,-10: - 0: 63 - -15,-9: - 0: 61132 - -14,-9: - 0: 65535 - -16,-16: - 0: 39325 - -16,-15: - 0: 3869 - -15,-16: - 0: 19695 - -14,-16: - 0: 20463 - -18,-10: - 0: 12 - -17,-11: - 0: 65534 - -17,-10: - 0: 239 - -17,-12: - 0: 60480 - -12,-19: - 0: 45039 - -12,-18: - 0: 61182 - -12,-17: - 0: 61166 - -12,-20: - 0: 17408 - -11,-19: - 0: 3983 - -11,-17: - 0: 57344 - -10,-20: - 0: 4352 - -10,-19: - 0: 65535 - -10,-18: - 0: 61713 - -10,-17: - 0: 65297 - -9,-19: - 0: 63985 - -9,-18: - 0: 63624 - -9,-17: - 0: 65280 - -8,-17: - 0: 57311 - 1: 8224 - -16,-19: - 0: 4592 - -16,-18: - 0: 5905 - -16,-17: - 0: 4881 - -15,-19: - 0: 45055 - -15,-18: - 0: 61422 - -15,-17: - 0: 61422 - -15,-20: - 0: 17408 - -14,-19: - 0: 44943 - -14,-18: - 0: 61182 - -14,-17: - 0: 61166 - -13,-20: - 0: 4352 - -13,-19: - 0: 44863 - -13,-18: - 0: 61182 - -13,-17: - 0: 61166 - 1,-12: - 0: 65535 - 1,-11: - 0: 65503 - 1: 32 - 1,-10: - 0: 65527 - 1: 8 - 2,-12: - 0: 65535 - 2,-11: - 0: 65535 - 2,-10: - 0: 65535 - 3,-12: - 0: 65535 - 3,-11: - 0: 65535 - 3,-10: - 0: 65535 - 4,-12: - 0: 65503 - 1: 32 - 4,-11: - 0: 65535 - 4,-10: - 0: 32767 - 1: 32768 - 5,-12: - 0: 65519 - 1: 16 - 5,-11: - 0: 65535 - 5,-10: - 0: 65535 - 6,-12: - 0: 65535 - 6,-11: - 0: 65535 - 6,-10: - 0: 65535 - 7,-12: - 0: 65535 - 7,-11: - 0: 65535 - 7,-10: - 0: 65535 - 7,-9: - 0: 61439 - 1: 4096 - 8,-12: - 0: 65535 - 8,-11: - 0: 49151 - 13: 16384 - 8,-10: - 0: 65467 - 14: 4 - 8: 64 - 8,-9: - 0: 65535 - 9,-12: - 0: 62839 - 1: 512 - 9,-11: - 0: 32767 - 13: 32768 - 9,-10: - 0: 65463 - 13: 72 - 9,-9: - 0: 65535 - 10,-12: - 0: 4096 - 10,-11: - 0: 4369 - 14,11: - 0: 34952 - 15,11: - 0: 34952 - 16,11: - 0: 61064 - 17,11: - 0: 65348 - 18,10: - 0: 61440 - 18,11: - 0: 65314 - 19,10: - 0: 28672 - 19,11: - 0: 21845 - 13,12: - 0: 61440 - 14,12: - 0: 63624 - 14,13: - 0: 34952 - 14,14: - 0: 34952 - 15,12: - 0: 63624 - 15,14: - 0: 63624 - 15,15: - 0: 3754 - 15,13: - 0: 34952 - 0,-16: - 0: 65535 - 0,-15: - 0: 65023 - 1: 512 - 0,-14: - 0: 65535 - 1,-16: - 0: 65535 - 1,-15: - 0: 65535 - 1,-14: - 0: 65279 - 1: 256 - 1,-13: - 0: 48127 - 1: 17408 - 2,-16: - 0: 65009 - 1: 512 - 2,-15: - 0: 65535 - 2,-14: - 0: 65535 - 2,-13: - 0: 32767 - 1: 32768 - 3,-16: - 0: 65457 - 3,-15: - 0: 65535 - 3,-14: - 0: 61713 - 7: 3822 - 3,-13: - 0: 65535 - -2,-16: - 0: 65535 - -1,-16: - 0: 65535 - -1,-15: - 0: 65535 - -1,-14: - 0: 65535 - -8,-19: - 0: 65520 - -8,-18: - 0: 64989 - 1: 546 - -7,-19: - 0: 65520 - -7,-18: - 0: 65535 - -7,-17: - 1: 1 - 0: 65534 - -6,-19: - 0: 65520 - -6,-18: - 0: 65535 - -6,-17: - 0: 65535 - -5,-19: - 0: 65520 - -5,-18: - 0: 65535 - -5,-17: - 0: 65535 - 16,12: - 0: 36591 - 16,13: - 0: 61422 - 16,14: - 0: 63630 - 16,15: - 0: 1860 - 17,12: - 0: 20479 - 17,13: - 0: 65535 - 17,14: - 0: 62543 - 18,12: - 0: 12287 - 18,13: - 0: 65535 - 18,14: - 0: 61999 - 19,12: - 0: 21847 - 19,13: - 0: 22357 - 19,14: - 0: 30039 - 4,-16: - 0: 65521 - 4,-15: - 0: 65535 - 4,-14: - 0: 65535 - 4,-13: - 0: 65535 - 5,-16: - 0: 61873 - 5,-15: - 0: 65535 - 5,-14: - 0: 65535 - 5,-13: - 0: 65533 - 13: 2 - 6,-16: - 0: 31996 - 1: 32768 - 6,-15: - 0: 65399 - 1: 136 - 6,-14: - 0: 65407 - 8: 128 - 6,-13: - 0: 65535 - 7,-16: - 0: 32627 - 7,-15: - 0: 65527 - 7,-14: - 0: 65487 - 8: 48 - 7,-13: - 0: 65535 - -4,-19: - 0: 65520 - -4,-18: - 0: 65535 - -4,-17: - 0: 65535 - -3,-19: - 0: 65520 - -3,-18: - 0: 65535 - -3,-17: - 0: 65535 - -2,-19: - 0: 63728 - -2,-18: - 0: 65535 - -2,-17: - 0: 65535 - -1,-19: - 0: 65520 - -1,-18: - 0: 65535 - -1,-17: - 0: 65535 - 0,-19: - 0: 65520 - 0,-18: - 0: 65535 - 0,-17: - 0: 65535 - 1,-19: - 0: 13104 - 1,-18: - 0: 65331 - 1,-17: - 0: 65407 - 2,-18: - 0: 65297 - 2,-17: - 0: 4383 - 3,-18: - 0: 65297 - 3,-17: - 0: 287 - 8,-16: - 0: 3840 - 8,-15: - 0: 65520 - 8,-14: - 0: 65535 - 8,-13: - 0: 64511 - 1: 1024 - 9,-16: - 0: 65518 - 9,-15: - 0: 65503 - 1: 32 - 9,-14: - 0: 64511 - 1: 1024 - 9,-13: - 0: 65535 - 10,-16: - 0: 61696 - 10,-15: - 0: 273 - 10,-14: - 0: 1911 - 11,-16: - 0: 29764 - 8,-20: - 0: 64512 - 8,-18: - 0: 64524 - 8,-19: - 0: 60428 - 8,-17: - 0: 12 - 9,-20: - 0: 62798 - 9,-19: - 0: 62789 - 9,-18: - 0: 62789 - 9,-17: - 0: 58437 - 10,-20: - 0: 63232 - 10,-19: - 0: 63239 - 10,-18: - 0: 63239 - 10,-17: - 0: 7 - 11,-20: - 0: 29764 - 11,-18: - 0: 29764 - 11,-19: - 0: 17476 - 11,-17: - 0: 17476 - 8,-22: - 0: 61440 - 9,-22: - 0: 61440 - 9,-21: - 0: 17412 - 10,-22: - 0: 61440 - 11,-22: - 0: 28672 - 11,-21: - 0: 17476 - 4,-18: - 0: 65297 - 4,-17: - 0: 287 - 5,-18: - 0: 65297 - 5,-17: - 0: 4383 - 6,-20: - 0: 12602 - 6,-19: - 0: 59953 - 6,-18: - 0: 12602 - 6,-17: - 0: 59953 - 7,-19: - 0: 12900 - 7,-17: - 0: 12900 - 7,-20: - 0: 58466 - 7,-18: - 0: 58466 - 6,-23: - 0: 59953 - 6,-22: - 0: 12602 - 6,-21: - 0: 59953 - 7,-23: - 0: 12800 - 7,-21: - 0: 12900 - 7,-22: - 0: 58466 - 16,3: - 0: 65455 - 19,2: - 0: 32655 - 19,3: - 0: 30583 - 16,4: - 0: 4383 - 16,5: - 0: 4383 - 16,6: - 0: 45055 - 17,4: - 0: 4383 - 17,5: - 0: 4383 - 17,6: - 0: 49151 - 18,4: - 0: 65399 - 18,5: - 0: 32767 - 18,6: - 0: 12151 - 19,4: - 0: 30583 - 19,5: - 0: 30583 - 19,6: - 0: 30583 - 19,7: - 0: 1911 - -12,10: - 0: 34952 - -12,11: - 0: 2184 - 20,2: - 0: 3855 - 21,0: - 0: 36623 - 21,2: - 0: 3887 - 21,1: - 0: 17608 - 22,0: - 0: 60399 - 22,1: - 0: 3838 - 22,2: - 0: 3855 - 23,0: - 0: 65535 - 23,1: - 0: 65535 - 23,2: - 0: 61423 - 23,3: - 0: 52974 - 20,-3: - 0: 61440 - 20,-2: - 0: 240 - 20,-1: - 0: 36608 - 21,-3: - 0: 61440 - 21,-2: - 0: 240 - 21,-1: - 0: 3840 - 22,-3: - 0: 61440 - 22,-2: - 0: 240 - 22,-1: - 0: 61216 - 23,-3: - 0: 64716 - 23,-2: - 0: 65020 - 23,-1: - 0: 65535 - 23,-4: - 0: 52428 - 24,0: - 0: 61439 - 24,1: - 0: 57292 - 24,2: - 0: 56797 - 24,3: - 0: 13305 - 25,0: - 0: 65535 - 25,1: - 0: 65535 - 25,2: - 0: 65535 - 25,3: - 0: 53247 - 26,0: - 0: 65535 - 26,1: - 0: 65535 - 26,2: - 0: 65535 - 26,3: - 0: 32767 - 27,0: - 0: 65535 - 27,1: - 0: 32631 - 27,2: - 0: 30583 - 27,3: - 0: 35315 - 24,-4: - 0: 47923 - 24,-3: - 0: 48063 - 24,-2: - 0: 65467 - 24,-1: - 0: 65487 - 25,-4: - 0: 65532 - 25,-3: - 0: 65535 - 25,-2: - 0: 65535 - 25,-1: - 0: 65535 - 26,-4: - 0: 65527 - 26,-3: - 0: 65535 - 26,-2: - 0: 65535 - 26,-1: - 0: 65535 - 27,-4: - 0: 48024 - 27,-3: - 0: 48063 - 27,-2: - 0: 65467 - 27,-1: - 0: 65399 - 24,4: - 0: 65523 - 24,5: - 0: 15 - 25,4: - 0: 65520 - 25,5: - 0: 4063 - 26,4: - 0: 65521 - 26,5: - 0: 3967 - 27,4: - 0: 65528 - 27,5: - 0: 287 - 28,4: - 0: 22391 - 28,5: - 0: 7 - 28,0: - 0: 56831 - 28,1: - 0: 65516 - 28,2: - 0: 65535 - 28,3: - 0: 32767 - 29,0: - 0: 13107 - 29,1: - 0: 9011 - 29,2: - 0: 3 - 28,-4: - 0: 30583 - 28,-3: - 0: 30583 - 28,-2: - 0: 65527 - 28,-1: - 0: 64975 - 29,-2: - 0: 12848 - 29,-1: - 0: 13107 - 28,-6: - 0: 28672 - 28,-5: - 0: 30581 - 24,-6: - 0: 61440 - 24,-5: - 0: 16383 - 25,-6: - 0: 65008 - 25,-5: - 0: 4095 - 26,-6: - 0: 63472 - 26,-5: - 0: 8191 - 27,-6: - 0: 61712 - 27,-5: - 0: 36863 - 23,4: - 0: 19660 - 23,5: - 0: 12 - 23,-6: - 0: 49152 - 23,-5: - 0: 52420 - 5,13: - 7: 17476 - 5,14: - 7: 17476 - 5,15: - 7: 12 - 6,15: - 7: 15 - 7,15: - 7: 15 - 8,15: - 7: 15 - 9,15: - 7: 15 - 10,15: - 7: 3 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 13.540834 - - 50.93933 - - 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: 235 - moles: - - 13.540834 - - 50.93933 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 5.4677505 - - 20.56916 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 14.332201 - - 53.916378 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 15.99815 - - 60.18352 - - 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 - - volume: 2500 - temperature: 293.15 - moles: - - 13.930901 - - 52.40672 - - 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 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 8.401156 - - 31.604351 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 20.619795 - - 77.56971 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 13.161691 - - 49.51303 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - id: Meta - type: BecomesStation - - type: OccluderTree - - type: Shuttle - - nextUpdate: 7724.1283525 - type: GridPathfinding - - type: GasTileOverlay - - type: RadiationGridResistance -- uid: 1 - type: WallReinforced - components: - - pos: -7.5,-6.5 - parent: 0 - type: Transform -- uid: 2 - type: WallReinforced - components: - - pos: 0.5,-6.5 - parent: 0 - type: Transform -- uid: 3 - type: WallReinforced - components: - - pos: 1.5,-6.5 - parent: 0 - type: Transform -- uid: 4 - type: WallReinforced - components: - - pos: 2.5,-6.5 - parent: 0 - type: Transform -- uid: 5 - type: WallReinforced - components: - - pos: 5.5,2.5 - parent: 0 - type: Transform -- uid: 6 - type: WallReinforced - components: - - pos: 5.5,1.5 - parent: 0 - type: Transform -- uid: 7 - type: WallReinforced - components: - - pos: 6.5,1.5 - parent: 0 - type: Transform -- uid: 8 - type: WallReinforced - components: - - pos: 6.5,0.5 - parent: 0 - type: Transform -- uid: 9 - type: WallReinforced - components: - - pos: 6.5,-0.5 - parent: 0 - type: Transform -- uid: 10 - type: WallReinforced - components: - - pos: 6.5,-1.5 - parent: 0 - type: Transform -- uid: 11 - type: WallReinforced - components: - - pos: 5.5,-1.5 - parent: 0 - type: Transform -- uid: 12 - type: WallReinforced - components: - - pos: 5.5,-2.5 - parent: 0 - type: Transform -- uid: 13 - type: WallReinforced - components: - - pos: 5.5,-3.5 - parent: 0 - type: Transform -- uid: 14 - type: WallReinforced - components: - - pos: 5.5,-5.5 - parent: 0 - type: Transform -- uid: 15 - type: WallReinforced - components: - - pos: 5.5,-6.5 - parent: 0 - type: Transform -- uid: 16 - type: WallReinforced - components: - - pos: 6.5,-6.5 - parent: 0 - type: Transform -- uid: 17 - type: WallReinforced - components: - - pos: 8.5,-6.5 - parent: 0 - type: Transform -- uid: 18 - type: WallReinforced - components: - - pos: 9.5,-6.5 - parent: 0 - type: Transform -- uid: 19 - type: WallReinforced - components: - - pos: 10.5,-6.5 - parent: 0 - type: Transform -- uid: 20 - type: WallReinforced - components: - - pos: 11.5,-6.5 - parent: 0 - type: Transform -- uid: 21 - type: WallReinforced - components: - - pos: 14.5,0.5 - parent: 0 - type: Transform -- uid: 22 - type: WallReinforced - components: - - pos: 14.5,-0.5 - parent: 0 - type: Transform -- uid: 23 - type: SubstationBasic - components: - - name: West Bridge Substation - type: MetaData - - pos: -14.5,1.5 - parent: 0 - type: Transform -- uid: 24 - type: WallReinforced - components: - - pos: 12.5,-0.5 - parent: 0 - type: Transform -- uid: 25 - type: WallReinforced - components: - - pos: 12.5,-1.5 - parent: 0 - type: Transform -- uid: 26 - type: WallReinforced - components: - - pos: 12.5,-2.5 - parent: 0 - type: Transform -- uid: 27 - type: SubstationBasic - components: - - name: East Bridge Substation - type: MetaData - - pos: 13.5,0.5 - parent: 0 - type: Transform -- uid: 28 - type: WallReinforced - components: - - pos: 12.5,-4.5 - parent: 0 - type: Transform -- uid: 29 - type: WallReinforced - components: - - pos: 12.5,-5.5 - parent: 0 - type: Transform -- uid: 30 - type: WallReinforced - components: - - pos: 12.5,-6.5 - parent: 0 - type: Transform -- uid: 31 - type: WallReinforced - components: - - pos: 14.5,1.5 - parent: 0 - type: Transform -- uid: 32 - type: WallReinforced - components: - - pos: 14.5,2.5 - parent: 0 - type: Transform -- uid: 33 - type: WallReinforced - components: - - pos: 14.5,3.5 - parent: 0 - type: Transform -- uid: 34 - type: WallReinforced - components: - - pos: 14.5,4.5 - parent: 0 - type: Transform -- uid: 35 - type: WallReinforced - components: - - pos: 14.5,5.5 - parent: 0 - type: Transform -- uid: 36 - type: WallReinforced - components: - - pos: 14.5,6.5 - parent: 0 - type: Transform -- uid: 37 - type: WallReinforced - components: - - pos: 14.5,7.5 - parent: 0 - type: Transform -- uid: 38 - type: WallReinforced - components: - - pos: 13.5,7.5 - parent: 0 - type: Transform -- uid: 39 - type: WallReinforced - components: - - pos: 12.5,7.5 - parent: 0 - type: Transform -- uid: 40 - type: WallReinforced - components: - - pos: 11.5,7.5 - parent: 0 - type: Transform -- uid: 41 - type: WallReinforced - components: - - pos: 10.5,7.5 - parent: 0 - type: Transform -- uid: 42 - type: WallReinforced - components: - - pos: 9.5,7.5 - parent: 0 - type: Transform -- uid: 43 - type: WallReinforced - components: - - pos: 8.5,7.5 - parent: 0 - type: Transform -- uid: 44 - type: WallReinforced - components: - - pos: 7.5,7.5 - parent: 0 - type: Transform -- uid: 45 - type: WallReinforced - components: - - pos: 6.5,7.5 - parent: 0 - type: Transform -- uid: 46 - type: WallReinforced - components: - - pos: 6.5,6.5 - parent: 0 - type: Transform -- uid: 47 - type: Grille - components: - - pos: 6.5,5.5 - parent: 0 - type: Transform -- uid: 48 - type: WallReinforced - components: - - pos: 6.5,4.5 - parent: 0 - type: Transform -- uid: 49 - type: WallReinforced - components: - - pos: 6.5,3.5 - parent: 0 - type: Transform -- uid: 50 - type: WallReinforced - components: - - pos: 5.5,3.5 - parent: 0 - type: Transform -- uid: 51 - type: WallReinforced - components: - - pos: -4.5,5.5 - parent: 0 - type: Transform -- uid: 52 - type: WallReinforced - components: - - pos: 3.5,3.5 - parent: 0 - type: Transform -- uid: 53 - type: WallReinforced - components: - - pos: -0.5,5.5 - parent: 0 - type: Transform -- uid: 54 - type: WallReinforced - components: - - pos: -8.5,3.5 - parent: 0 - type: Transform -- uid: 55 - type: WallReinforced - components: - - pos: -6.5,-6.5 - parent: 0 - type: Transform -- uid: 56 - type: WallReinforced - components: - - pos: -5.5,-6.5 - parent: 0 - type: Transform -- uid: 57 - type: WallSolid - components: - - pos: -11.5,-6.5 - parent: 0 - type: Transform -- uid: 58 - type: WallReinforced - components: - - pos: -10.5,-6.5 - parent: 0 - type: Transform -- uid: 59 - type: WallReinforced - components: - - pos: -10.5,-5.5 - parent: 0 - type: Transform -- uid: 60 - type: WallReinforced - components: - - pos: -10.5,-4.5 - parent: 0 - type: Transform -- uid: 61 - type: WallReinforced - components: - - pos: -11.5,-4.5 - parent: 0 - type: Transform -- uid: 62 - type: WallReinforced - components: - - pos: -19.5,-4.5 - parent: 0 - type: Transform -- uid: 63 - type: WallReinforced - components: - - pos: -18.5,-4.5 - parent: 0 - type: Transform -- uid: 64 - type: WallReinforced - components: - - pos: -16.5,-4.5 - parent: 0 - type: Transform -- uid: 65 - type: WallReinforced - components: - - pos: -15.5,-4.5 - parent: 0 - type: Transform -- uid: 66 - type: WallReinforced - components: - - pos: -14.5,-4.5 - parent: 0 - type: Transform -- uid: 67 - type: WallReinforced - components: - - pos: -19.5,-3.5 - parent: 0 - type: Transform -- uid: 68 - type: WallReinforced - components: - - pos: -19.5,-1.5 - parent: 0 - type: Transform -- uid: 69 - type: WallReinforced - components: - - pos: -19.5,-0.5 - parent: 0 - type: Transform -- uid: 70 - type: WallReinforced - components: - - pos: -19.5,1.5 - parent: 0 - type: Transform -- uid: 71 - type: WallReinforced - components: - - pos: -19.5,2.5 - parent: 0 - type: Transform -- uid: 72 - type: WallReinforced - components: - - pos: -18.5,2.5 - parent: 0 - type: Transform -- uid: 73 - type: WallReinforced - components: - - pos: -17.5,2.5 - parent: 0 - type: Transform -- uid: 74 - type: WallReinforced - components: - - pos: -16.5,2.5 - parent: 0 - type: Transform -- uid: 75 - type: WallReinforced - components: - - pos: -15.5,2.5 - parent: 0 - type: Transform -- uid: 76 - type: WallReinforced - components: - - pos: -15.5,-0.5 - parent: 0 - type: Transform -- uid: 77 - type: WallReinforced - components: - - pos: -15.5,0.5 - parent: 0 - type: Transform -- uid: 78 - type: WallReinforced - components: - - pos: -15.5,1.5 - parent: 0 - type: Transform -- uid: 79 - type: WallReinforced - components: - - pos: -14.5,0.5 - parent: 0 - type: Transform -- uid: 80 - type: WallReinforced - components: - - pos: -13.5,0.5 - parent: 0 - type: Transform -- uid: 81 - type: WallReinforced - components: - - pos: -12.5,0.5 - parent: 0 - type: Transform -- uid: 82 - type: WallReinforced - components: - - pos: -11.5,0.5 - parent: 0 - type: Transform -- uid: 83 - type: WallReinforced - components: - - pos: -10.5,0.5 - parent: 0 - type: Transform -- uid: 84 - type: WallSolid - components: - - pos: -10.5,-3.5 - parent: 0 - type: Transform -- uid: 85 - type: WallReinforced - components: - - pos: -10.5,2.5 - parent: 0 - type: Transform -- uid: 86 - type: WallReinforced - components: - - pos: -10.5,3.5 - parent: 0 - type: Transform -- uid: 87 - type: WallReinforced - components: - - pos: -11.5,3.5 - parent: 0 - type: Transform -- uid: 88 - type: WallReinforced - components: - - pos: -11.5,4.5 - parent: 0 - type: Transform -- uid: 89 - type: WallReinforced - components: - - pos: -11.5,6.5 - parent: 0 - type: Transform -- uid: 90 - type: WallReinforced - components: - - pos: -11.5,7.5 - parent: 0 - type: Transform -- uid: 91 - type: WallSolid - components: - - pos: -10.5,-1.5 - parent: 0 - type: Transform -- uid: 92 - type: WallSolid - components: - - pos: -10.5,-0.5 - parent: 0 - type: Transform -- uid: 93 - type: WallSolid - components: - - pos: -7.5,-5.5 - parent: 0 - type: Transform -- uid: 94 - type: WallSolid - components: - - pos: -7.5,-3.5 - parent: 0 - type: Transform -- uid: 95 - type: WallSolid - components: - - pos: -7.5,-2.5 - parent: 0 - type: Transform -- uid: 96 - type: WallSolid - components: - - pos: -7.5,-1.5 - parent: 0 - type: Transform -- uid: 97 - type: WallSolid - components: - - pos: -6.5,-1.5 - parent: 0 - type: Transform -- uid: 98 - type: WallSolid - components: - - pos: -5.5,-1.5 - parent: 0 - type: Transform -- uid: 99 - type: WallSolid - components: - - pos: -5.5,-2.5 - parent: 0 - type: Transform -- uid: 100 - type: WallSolid - components: - - pos: -4.5,-2.5 - parent: 0 - type: Transform -- uid: 101 - type: WallSolid - components: - - pos: -3.5,-2.5 - parent: 0 - type: Transform -- uid: 102 - type: WallSolid - components: - - pos: -1.5,-2.5 - parent: 0 - type: Transform -- uid: 103 - type: WallSolid - components: - - pos: -0.5,-2.5 - parent: 0 - type: Transform -- uid: 104 - type: WallSolid - components: - - pos: 0.5,-2.5 - parent: 0 - type: Transform -- uid: 105 - type: WallSolid - components: - - pos: 0.5,-1.5 - parent: 0 - type: Transform -- uid: 106 - type: WallSolid - components: - - pos: 1.5,-1.5 - parent: 0 - type: Transform -- uid: 107 - type: WallSolid - components: - - pos: 2.5,-1.5 - parent: 0 - type: Transform -- uid: 108 - type: WallSolid - components: - - pos: 2.5,-2.5 - parent: 0 - type: Transform -- uid: 109 - type: WallSolid - components: - - pos: 2.5,-3.5 - parent: 0 - type: Transform -- uid: 110 - type: WallSolid - components: - - pos: 2.5,-5.5 - parent: 0 - type: Transform -- uid: 111 - type: WallSolid - components: - - pos: 7.5,1.5 - parent: 0 - type: Transform -- uid: 112 - type: WallSolid - components: - - pos: 8.5,1.5 - parent: 0 - type: Transform -- uid: 113 - type: WallSolid - components: - - pos: 9.5,1.5 - parent: 0 - type: Transform -- uid: 114 - type: WallSolid - components: - - pos: 9.5,3.5 - parent: 0 - type: Transform -- uid: 115 - type: WallSolid - components: - - pos: 8.5,3.5 - parent: 0 - type: Transform -- uid: 116 - type: WallSolid - components: - - pos: 7.5,3.5 - parent: 0 - type: Transform -- uid: 117 - type: WallSolid - components: - - pos: 11.5,1.5 - parent: 0 - type: Transform -- uid: 118 - type: WallReinforced - components: - - pos: 12.5,1.5 - parent: 0 - type: Transform -- uid: 119 - type: WallReinforced - components: - - pos: 13.5,1.5 - parent: 0 - type: Transform -- uid: 120 - type: WallReinforced - components: - - pos: 12.5,0.5 - parent: 0 - type: Transform -- uid: 121 - type: WallSolid - components: - - pos: 14.5,-6.5 - parent: 0 - type: Transform -- uid: 122 - type: WallSolid - components: - - pos: 14.5,-5.5 - parent: 0 - type: Transform -- uid: 123 - type: WallSolid - components: - - pos: 14.5,-4.5 - parent: 0 - type: Transform -- uid: 124 - type: WallSolid - components: - - pos: 14.5,-3.5 - parent: 0 - type: Transform -- uid: 125 - type: WallSolid - components: - - pos: 14.5,-2.5 - parent: 0 - type: Transform -- uid: 126 - type: WallSolid - components: - - pos: -18.5,3.5 - parent: 0 - type: Transform -- uid: 127 - type: WallSolid - components: - - pos: -18.5,6.5 - parent: 0 - type: Transform -- uid: 128 - type: WallSolid - components: - - pos: -18.5,6.5 - parent: 0 - type: Transform -- uid: 129 - type: WallSolid - components: - - pos: -18.5,7.5 - parent: 0 - type: Transform -- uid: 130 - type: WallSolid - components: - - pos: -19.5,7.5 - parent: 0 - type: Transform -- uid: 131 - type: WallSolid - components: - - pos: -17.5,7.5 - parent: 0 - type: Transform -- uid: 132 - type: WallSolid - components: - - pos: -16.5,7.5 - parent: 0 - type: Transform -- uid: 133 - type: WallSolid - components: - - pos: -15.5,7.5 - parent: 0 - type: Transform -- uid: 134 - type: WallSolid - components: - - pos: -14.5,7.5 - parent: 0 - type: Transform -- uid: 135 - type: WallSolid - components: - - pos: -13.5,7.5 - parent: 0 - type: Transform -- uid: 136 - type: WallSolid - components: - - pos: -14.5,6.5 - parent: 0 - type: Transform -- uid: 137 - type: WallSolid - components: - - pos: -14.5,4.5 - parent: 0 - type: Transform -- uid: 138 - type: WallSolid - components: - - pos: -14.5,3.5 - parent: 0 - type: Transform -- uid: 139 - type: WallSolid - components: - - pos: -14.5,2.5 - parent: 0 - type: Transform -- uid: 140 - type: APCBasic - components: - - pos: 7.5,1.5 - parent: 0 - type: Transform -- uid: 141 - type: APCBasic - components: - - pos: -8.5,3.5 - parent: 0 - type: Transform -- uid: 142 - type: APCBasic - components: - - pos: -18.5,2.5 - parent: 0 - type: Transform -- uid: 143 - type: CableMV - components: - - pos: 13.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 144 - type: CableMV - components: - - pos: 13.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 145 - type: CableMV - components: - - pos: 13.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 146 - type: CableMV - components: - - pos: 13.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 147 - type: CableMV - components: - - pos: 13.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 148 - type: CableMV - components: - - pos: 12.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 149 - type: CableMV - components: - - pos: 11.5,-3.5 - parent: 0 - type: Transform -- uid: 150 - type: CableMV - components: - - pos: 10.5,-3.5 - parent: 0 - type: Transform -- uid: 151 - type: CableMV - components: - - pos: 9.5,-3.5 - parent: 0 - type: Transform -- uid: 152 - type: CableMV - components: - - pos: 8.5,-3.5 - parent: 0 - type: Transform -- uid: 153 - type: CableMV - components: - - pos: 7.5,-3.5 - parent: 0 - type: Transform -- uid: 154 - type: CableMV - components: - - pos: 7.5,-2.5 - parent: 0 - type: Transform -- uid: 155 - type: CableMV - components: - - pos: 7.5,-1.5 - parent: 0 - type: Transform -- uid: 156 - type: CableMV - components: - - pos: 7.5,-0.5 - parent: 0 - type: Transform -- uid: 157 - type: CableMV - components: - - pos: 7.5,0.5 - parent: 0 - type: Transform -- uid: 158 - type: CableMV - components: - - pos: 7.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 159 - type: CableMV - components: - - pos: -14.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 160 - type: CableMV - components: - - pos: -13.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 161 - type: CableMV - components: - - pos: -12.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 162 - type: CableMV - components: - - pos: -11.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 163 - type: CableMV - components: - - pos: -10.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 164 - type: CableMV - components: - - pos: -9.5,1.5 - parent: 0 - type: Transform -- uid: 165 - type: CableMV - components: - - pos: -8.5,1.5 - parent: 0 - type: Transform -- uid: 166 - type: CableMV - components: - - pos: -8.5,2.5 - parent: 0 - type: Transform -- uid: 167 - type: CableMV - components: - - pos: -8.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 168 - type: CableMV - components: - - pos: -9.5,0.5 - parent: 0 - type: Transform -- uid: 169 - type: CableMV - components: - - pos: -9.5,-0.5 - parent: 0 - type: Transform -- uid: 170 - type: CableMV - components: - - pos: -9.5,-1.5 - parent: 0 - type: Transform -- uid: 171 - type: CableMV - components: - - pos: -9.5,-2.5 - parent: 0 - type: Transform -- uid: 172 - type: CableMV - components: - - pos: -10.5,-2.5 - parent: 0 - type: Transform -- uid: 173 - type: CableMV - components: - - pos: -11.5,-2.5 - parent: 0 - type: Transform -- uid: 174 - type: CableMV - components: - - pos: -12.5,-2.5 - parent: 0 - type: Transform -- uid: 175 - type: CableMV - components: - - pos: -13.5,-2.5 - parent: 0 - type: Transform -- uid: 176 - type: CableMV - components: - - pos: -14.5,-2.5 - parent: 0 - type: Transform -- uid: 177 - type: CableMV - components: - - pos: -15.5,-2.5 - parent: 0 - type: Transform -- uid: 178 - type: CableMV - components: - - pos: -16.5,-2.5 - parent: 0 - type: Transform -- uid: 179 - type: CableMV - components: - - pos: -17.5,-2.5 - parent: 0 - type: Transform -- uid: 180 - type: CableMV - components: - - pos: -18.5,-2.5 - parent: 0 - type: Transform -- uid: 181 - type: CableMV - components: - - pos: -18.5,-1.5 - parent: 0 - type: Transform -- uid: 182 - type: CableMV - components: - - pos: -18.5,-0.5 - parent: 0 - type: Transform -- uid: 183 - type: CableMV - components: - - pos: -18.5,0.5 - parent: 0 - type: Transform -- uid: 184 - type: CableMV - components: - - pos: -18.5,1.5 - parent: 0 - type: Transform -- uid: 185 - type: CableMV - components: - - pos: -18.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 186 - type: APCBasic - components: - - pos: -0.5,-2.5 - parent: 0 - type: Transform -- uid: 187 - type: CableMV - components: - - pos: 7.5,-4.5 - parent: 0 - type: Transform -- uid: 188 - type: CableMV - components: - - pos: 6.5,-4.5 - parent: 0 - type: Transform -- uid: 189 - type: CableMV - components: - - pos: 5.5,-4.5 - parent: 0 - type: Transform -- uid: 190 - type: CableMV - components: - - pos: 4.5,-4.5 - parent: 0 - type: Transform -- uid: 191 - type: CableMV - components: - - pos: 3.5,-4.5 - parent: 0 - type: Transform -- uid: 192 - type: CableMV - components: - - pos: 2.5,-4.5 - parent: 0 - type: Transform -- uid: 193 - type: CableMV - components: - - pos: 1.5,-4.5 - parent: 0 - type: Transform -- uid: 194 - type: CableMV - components: - - pos: 0.5,-4.5 - parent: 0 - type: Transform -- uid: 195 - type: CableMV - components: - - pos: -0.5,-4.5 - parent: 0 - type: Transform -- uid: 196 - type: CableMV - components: - - pos: -0.5,-3.5 - parent: 0 - type: Transform -- uid: 197 - type: CableMV - components: - - pos: -0.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 198 - type: CableMV - components: - - pos: -8.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 199 - type: CableMV - components: - - pos: -8.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 200 - type: CableMV - components: - - pos: -9.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 201 - type: CableMV - components: - - pos: -7.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 202 - type: CableMV - components: - - pos: -6.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 203 - type: CableMV - components: - - pos: -5.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 204 - type: CableMV - components: - - pos: -5.5,4.5 - parent: 0 - type: Transform -- uid: 205 - type: CableMV - components: - - pos: -4.5,4.5 - parent: 0 - type: Transform -- uid: 206 - type: CableMV - components: - - pos: -3.5,4.5 - parent: 0 - type: Transform -- uid: 207 - type: CableMV - components: - - pos: -3.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 208 - type: CableMV - components: - - pos: -2.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 209 - type: CableMV - components: - - pos: -1.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 210 - type: CableMV - components: - - pos: -1.5,4.5 - parent: 0 - type: Transform -- uid: 211 - type: CableMV - components: - - pos: -0.5,4.5 - parent: 0 - type: Transform -- uid: 212 - type: CableMV - components: - - pos: 0.5,4.5 - parent: 0 - type: Transform -- uid: 213 - type: CableMV - components: - - pos: 0.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 214 - type: CableMV - components: - - pos: 1.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 215 - type: CableMV - components: - - pos: 2.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 216 - type: CableMV - components: - - pos: 3.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 217 - type: CableMV - components: - - pos: 3.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 218 - type: CableMV - components: - - pos: 2.5,4.5 - parent: 0 - type: Transform -- uid: 219 - type: CableMV - components: - - pos: 2.5,3.5 - parent: 0 - type: Transform -- uid: 220 - type: CableMV - components: - - pos: 2.5,2.5 - parent: 0 - type: Transform -- uid: 221 - type: CableMV - components: - - pos: 3.5,2.5 - parent: 0 - type: Transform -- uid: 222 - type: CableMV - components: - - pos: 4.5,2.5 - parent: 0 - type: Transform -- uid: 223 - type: CableMV - components: - - pos: 4.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 224 - type: CableMV - components: - - pos: -0.5,-5.5 - parent: 0 - type: Transform -- uid: 225 - type: CableMV - components: - - pos: -0.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 226 - type: CableMV - components: - - pos: -1.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 227 - type: CableMV - components: - - pos: -2.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 228 - type: CableMV - components: - - pos: -3.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 229 - type: CableMV - components: - - pos: -4.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 230 - type: CableMV - components: - - pos: -13.5,-3.5 - parent: 0 - type: Transform -- uid: 231 - type: CableMV - components: - - pos: -13.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 232 - type: CableMV - components: - - pos: -17.5,-3.5 - parent: 0 - type: Transform -- uid: 233 - type: CableMV - components: - - pos: -17.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 234 - type: CableMV - components: - - pos: -19.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 235 - type: AirlockMaintCommandLocked - components: - - pos: 14.5,-1.5 - parent: 0 - type: Transform -- uid: 236 - type: AirlockMaintCommandLocked - components: - - pos: 13.5,-6.5 - parent: 0 - type: Transform -- uid: 237 - type: AirlockCommandGlassLocked - components: - - pos: 4.5,-6.5 - parent: 0 - type: Transform -- uid: 238 - type: AirlockCommandGlassLocked - components: - - pos: 3.5,-6.5 - parent: 0 - type: Transform -- uid: 239 - type: AirlockCommandGlassLocked - components: - - pos: 3.5,-1.5 - parent: 0 - type: Transform -- uid: 240 - type: AirlockCommandGlassLocked - components: - - pos: 4.5,-1.5 - parent: 0 - type: Transform -- uid: 241 - type: AirlockCommandGlassLocked - components: - - pos: -8.5,-6.5 - parent: 0 - type: Transform -- uid: 242 - type: AirlockCommandGlassLocked - components: - - pos: -9.5,-6.5 - parent: 0 - type: Transform -- uid: 243 - type: AirlockCommandGlassLocked - components: - - pos: -9.5,-1.5 - parent: 0 - type: Transform -- uid: 244 - type: AirlockCommandGlassLocked - components: - - pos: -8.5,-1.5 - parent: 0 - type: Transform -- uid: 245 - type: AirlockCommandLocked - components: - - pos: -7.5,-4.5 - parent: 0 - type: Transform -- uid: 246 - type: AirlockCommandLocked - components: - - pos: -2.5,-2.5 - parent: 0 - type: Transform -- uid: 247 - type: AirlockCommandLocked - components: - - pos: 2.5,-4.5 - parent: 0 - type: Transform -- uid: 248 - type: GasPipeStraight - components: - - pos: -22.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 249 - type: GasPipeStraight - components: - - pos: -22.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 250 - type: GasPipeStraight - components: - - pos: -22.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 251 - type: GasPipeStraight - components: - - pos: -22.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 252 - type: GasPipeStraight - components: - - pos: -22.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 253 - type: GasPipeStraight - components: - - pos: -22.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 254 - type: GasPipeStraight - components: - - pos: -22.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 255 - type: GasPipeStraight - components: - - pos: -22.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 256 - type: GasPipeStraight - components: - - pos: -22.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 257 - type: GasPipeStraight - components: - - pos: -22.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 258 - type: GasPipeStraight - components: - - pos: -22.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 259 - type: GasPipeStraight - components: - - pos: -22.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 260 - type: GasPipeFourway - components: - - pos: -22.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 261 - type: GasPipeStraight - components: - - pos: -22.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 262 - type: GasPipeStraight - components: - - pos: -22.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 263 - type: TableWood - components: - - pos: 37.5,34.5 - parent: 0 - type: Transform -- uid: 264 - type: GasPipeStraight - components: - - pos: -22.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 265 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 266 - type: GasPipeStraight - components: - - pos: -22.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 267 - type: GasPipeStraight - components: - - pos: -22.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 268 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -22.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 269 - type: GasPipeStraight - components: - - pos: -22.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 270 - type: GasPipeStraight - components: - - pos: -22.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 271 - type: GasPipeStraight - components: - - pos: -22.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 272 - type: GasPipeStraight - components: - - pos: -22.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 273 - type: GasPipeFourway - components: - - pos: -22.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 274 - type: GasPipeStraight - components: - - pos: -22.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 275 - type: GasPipeStraight - components: - - pos: -22.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 276 - type: GasPipeStraight - components: - - pos: -22.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 277 - type: GasPipeStraight - components: - - pos: -22.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 278 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 279 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 280 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 281 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -18.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 282 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 283 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 284 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 285 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 286 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 287 - type: GasPipeTJunction - components: - - pos: -12.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 288 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -9.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 289 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 290 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 291 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 292 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 293 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 294 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 295 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -0.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 296 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -3.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 297 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 298 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 299 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 300 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 301 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 302 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 303 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 304 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 305 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 306 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 6.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 307 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 308 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 309 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 310 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 311 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 11.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 312 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 313 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 314 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 315 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 316 - type: DisposalUnit - components: - - pos: 27.5,53.5 - parent: 0 - type: Transform -- uid: 317 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 318 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 319 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 320 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 321 - type: DisposalUnit - components: - - pos: 29.5,39.5 - parent: 0 - type: Transform -- uid: 322 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 15.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 323 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 324 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 325 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 326 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 327 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 328 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 329 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 330 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 331 - type: DisposalUnit - components: - - pos: 23.5,19.5 - parent: 0 - type: Transform -- uid: 332 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 333 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 334 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 335 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 336 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 337 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 338 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 339 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 340 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 341 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 342 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 343 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 344 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 345 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 346 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 347 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 36.5,33.5 - parent: 0 - type: Transform -- uid: 348 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 349 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 350 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 351 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 352 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 353 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 354 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 355 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 356 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 357 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 358 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 359 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 360 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-28.5 - parent: 0 - type: Transform -- uid: 361 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 362 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 363 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -5.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 364 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 37.5,33.5 - parent: 0 - type: Transform -- uid: 365 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 366 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 367 - type: GasPipeTJunction - components: - - pos: -1.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 368 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 369 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 370 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 371 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 372 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 373 - type: GasPipeTJunction - components: - - pos: -9.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 374 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 375 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 376 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 377 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 378 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 379 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 380 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 381 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 382 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 383 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 384 - type: GasPipeTJunction - components: - - pos: -20.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 385 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -20.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 386 - type: GasPipeStraight - components: - - pos: -20.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 387 - type: GasPipeStraight - components: - - pos: -20.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 388 - type: GasPipeStraight - components: - - pos: -20.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 389 - type: GasPipeStraight - components: - - pos: -20.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 390 - type: GasPipeStraight - components: - - pos: -20.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 391 - type: GasPipeStraight - components: - - pos: -20.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 392 - type: GasPipeStraight - components: - - pos: -20.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 393 - type: GasPipeStraight - components: - - pos: -20.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 394 - type: GasPipeStraight - components: - - pos: -20.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 395 - type: GasPipeFourway - components: - - pos: -20.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 396 - type: GasPipeStraight - components: - - pos: -20.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 397 - type: GasPipeStraight - components: - - pos: -20.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 398 - type: Chair - components: - - pos: 36.5,35.5 - parent: 0 - type: Transform -- uid: 399 - type: GasPipeStraight - components: - - pos: -20.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 400 - type: GasPipeStraight - components: - - pos: -20.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 401 - type: GasPipeStraight - components: - - pos: -20.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 402 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 403 - type: GasPipeStraight - components: - - pos: -20.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 404 - type: GasPipeStraight - components: - - pos: -20.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 405 - type: GasPipeStraight - components: - - pos: -20.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 406 - type: GasPipeStraight - components: - - pos: -20.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 407 - type: GasPipeStraight - components: - - pos: -20.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 408 - type: GasPipeFourway - components: - - pos: -20.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 409 - type: GasPipeStraight - components: - - pos: -20.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 410 - type: GasPipeStraight - components: - - pos: -20.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 411 - type: GasPipeStraight - components: - - pos: -20.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 412 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 413 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 414 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -17.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 415 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 416 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 417 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 418 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 419 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 420 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 421 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 422 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -11.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 423 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 424 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 425 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 426 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 427 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 428 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 429 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 430 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 431 - type: GasPipeTJunction - components: - - pos: -4.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 432 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 433 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 434 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 435 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 436 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 437 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 438 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 439 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 440 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 441 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 442 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 443 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 444 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 12.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 445 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 446 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 447 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 448 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 449 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 450 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 451 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 452 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 17.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 453 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 454 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 455 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 456 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 457 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 458 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 459 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 460 - type: Chair - components: - - pos: 37.5,35.5 - parent: 0 - type: Transform -- uid: 461 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 462 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 463 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 464 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 465 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 466 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 467 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 468 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 469 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 470 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 471 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 472 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 473 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 474 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 475 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 476 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 477 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 478 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 479 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 480 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 481 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 482 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 483 - type: ClosetEmergencyFilledRandom - components: - - pos: 38.5,-25.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 484 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 485 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 486 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 487 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 488 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 489 - type: GasPipeTJunction - components: - - pos: -3.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 490 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 491 - type: AtmosDeviceFanTiny - components: - - pos: 34.5,-12.5 - parent: 0 - type: Transform -- uid: 492 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 493 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 0.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 494 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 495 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 496 - type: GasPipeTJunction - components: - - pos: -8.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 497 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 498 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 499 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 500 - type: GasPipeFourway - components: - - pos: -12.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 501 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 502 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 503 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 504 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -16.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 505 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 506 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 507 - type: GasPipeTJunction - components: - - pos: -19.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 508 - type: AirlockMaintLocked - components: - - pos: 40.5,-25.5 - parent: 0 - type: Transform -- uid: 509 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -21.5,-20.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 510 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -22.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 511 - type: GasPipeTJunction - components: - - pos: 16.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 512 - type: GasPipeBend - components: - - pos: 17.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 513 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 17.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 514 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 515 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 516 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 517 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 518 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 16.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 519 - type: GasPipeTJunction - components: - - pos: -16.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 520 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 521 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 522 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 523 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 524 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 525 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 526 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 4.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 527 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 528 - type: GasPipeTJunction - components: - - pos: -4.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 529 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 530 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 531 - type: GasPipeTJunction - components: - - pos: -0.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 532 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 533 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 534 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 535 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 536 - type: GasPipeTJunction - components: - - pos: -5.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 537 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 538 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 539 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 540 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -9.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 541 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 542 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 543 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 544 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 545 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 546 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 547 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 548 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 549 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 550 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 551 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 552 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 553 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 554 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 555 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 556 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 557 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 558 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 559 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 560 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 561 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 562 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 563 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 564 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 565 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 566 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 567 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -0.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 568 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 569 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 570 - type: GasPipeTJunction - components: - - pos: -4.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 571 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 572 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 573 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 574 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 575 - type: GasPipeTJunction - components: - - pos: 0.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 576 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 577 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 578 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 579 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 580 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 581 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 582 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -12.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 583 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 584 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 585 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 586 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 587 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 588 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 589 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 590 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 591 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 592 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 593 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 594 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 595 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 596 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 597 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 598 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 599 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 600 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 601 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 602 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 603 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 604 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 605 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 606 - type: GasPipeTJunction - components: - - pos: -9.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 607 - type: GasPipeBend - components: - - pos: 4.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 608 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 609 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 610 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 611 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 612 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 613 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 614 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -4.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 615 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 616 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 617 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 618 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 619 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 620 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 621 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 622 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 623 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 624 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 625 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 626 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 627 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 628 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 629 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 630 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 631 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 632 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 633 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 634 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 635 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 636 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 637 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 638 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 639 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -5.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 640 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 641 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 642 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 643 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 644 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 645 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 646 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 647 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 648 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -8.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 649 - type: GasPipeBend - components: - - pos: 3.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 650 - type: Grille - components: - - pos: -9.5,3.5 - parent: 0 - type: Transform -- uid: 651 - type: Grille - components: - - pos: -8.5,4.5 - parent: 0 - type: Transform -- uid: 652 - type: Grille - components: - - pos: -8.5,5.5 - parent: 0 - type: Transform -- uid: 653 - type: Grille - components: - - pos: -7.5,5.5 - parent: 0 - type: Transform -- uid: 654 - type: Grille - components: - - pos: -6.5,5.5 - parent: 0 - type: Transform -- uid: 655 - type: Grille - components: - - pos: -5.5,5.5 - parent: 0 - type: Transform -- uid: 656 - type: Grille - components: - - pos: -3.5,5.5 - parent: 0 - type: Transform -- uid: 657 - type: Grille - components: - - pos: -2.5,5.5 - parent: 0 - type: Transform -- uid: 658 - type: Grille - components: - - pos: -1.5,5.5 - parent: 0 - type: Transform -- uid: 659 - type: Grille - components: - - pos: 3.5,4.5 - parent: 0 - type: Transform -- uid: 660 - type: Grille - components: - - pos: 3.5,5.5 - parent: 0 - type: Transform -- uid: 661 - type: Grille - components: - - pos: 2.5,5.5 - parent: 0 - type: Transform -- uid: 662 - type: Grille - components: - - pos: 1.5,5.5 - parent: 0 - type: Transform -- uid: 663 - type: Grille - components: - - pos: 0.5,5.5 - parent: 0 - type: Transform -- uid: 664 - type: Grille - components: - - pos: 4.5,3.5 - parent: 0 - type: Transform -- uid: 665 - type: Grille - components: - - pos: -10.5,7.5 - parent: 0 - type: Transform -- uid: 666 - type: Grille - components: - - pos: -9.5,7.5 - parent: 0 - type: Transform -- uid: 667 - type: Grille - components: - - pos: -8.5,7.5 - parent: 0 - type: Transform -- uid: 668 - type: Grille - components: - - pos: -7.5,7.5 - parent: 0 - type: Transform -- uid: 669 - type: Grille - components: - - pos: -6.5,7.5 - parent: 0 - type: Transform -- uid: 670 - type: Grille - components: - - pos: -5.5,7.5 - parent: 0 - type: Transform -- uid: 671 - type: Grille - components: - - pos: -4.5,7.5 - parent: 0 - type: Transform -- uid: 672 - type: Grille - components: - - pos: -3.5,7.5 - parent: 0 - type: Transform -- uid: 673 - type: Grille - components: - - pos: -2.5,7.5 - parent: 0 - type: Transform -- uid: 674 - type: Grille - components: - - pos: -1.5,7.5 - parent: 0 - type: Transform -- uid: 675 - type: Grille - components: - - pos: -0.5,7.5 - parent: 0 - type: Transform -- uid: 676 - type: Grille - components: - - pos: 0.5,7.5 - parent: 0 - type: Transform -- uid: 677 - type: Grille - components: - - pos: 1.5,7.5 - parent: 0 - type: Transform -- uid: 678 - type: Grille - components: - - pos: 2.5,7.5 - parent: 0 - type: Transform -- uid: 679 - type: Grille - components: - - pos: 3.5,7.5 - parent: 0 - type: Transform -- uid: 680 - type: Grille - components: - - pos: 4.5,7.5 - parent: 0 - type: Transform -- uid: 681 - type: Grille - components: - - pos: 5.5,7.5 - parent: 0 - type: Transform -- uid: 682 - type: Grille - components: - - pos: -0.5,-6.5 - parent: 0 - type: Transform -- uid: 683 - type: Grille - components: - - pos: -1.5,-6.5 - parent: 0 - type: Transform -- uid: 684 - type: Grille - components: - - pos: -2.5,-6.5 - parent: 0 - type: Transform -- uid: 685 - type: Grille - components: - - pos: -3.5,-6.5 - parent: 0 - type: Transform -- uid: 686 - type: Grille - components: - - pos: -4.5,-6.5 - parent: 0 - type: Transform -- uid: 687 - type: Grille - components: - - pos: -13.5,-4.5 - parent: 0 - type: Transform -- uid: 688 - type: Grille - components: - - pos: -17.5,-4.5 - parent: 0 - type: Transform -- uid: 689 - type: Grille - components: - - pos: -19.5,0.5 - parent: 0 - type: Transform -- uid: 690 - type: Grille - components: - - pos: -11.5,5.5 - parent: 0 - type: Transform -- uid: 691 - type: ReinforcedWindow - components: - - pos: -13.5,-4.5 - parent: 0 - type: Transform -- uid: 692 - type: ReinforcedWindow - components: - - pos: -17.5,-4.5 - parent: 0 - type: Transform -- uid: 693 - type: ReinforcedWindow - components: - - pos: -19.5,0.5 - parent: 0 - type: Transform -- uid: 694 - type: ReinforcedWindow - components: - - pos: -11.5,5.5 - parent: 0 - type: Transform -- uid: 695 - type: ReinforcedWindow - components: - - pos: -9.5,3.5 - parent: 0 - type: Transform -- uid: 696 - type: ReinforcedWindow - components: - - pos: -8.5,4.5 - parent: 0 - type: Transform -- uid: 697 - type: ReinforcedWindow - components: - - pos: -8.5,5.5 - parent: 0 - type: Transform -- uid: 698 - type: ReinforcedWindow - components: - - pos: -7.5,5.5 - parent: 0 - type: Transform -- uid: 699 - type: ReinforcedWindow - components: - - pos: -6.5,5.5 - parent: 0 - type: Transform -- uid: 700 - type: ReinforcedWindow - components: - - pos: -5.5,5.5 - parent: 0 - type: Transform -- uid: 701 - type: ReinforcedWindow - components: - - pos: -3.5,5.5 - parent: 0 - type: Transform -- uid: 702 - type: ReinforcedWindow - components: - - pos: -2.5,5.5 - parent: 0 - type: Transform -- uid: 703 - type: ReinforcedWindow - components: - - pos: -1.5,5.5 - parent: 0 - type: Transform -- uid: 704 - type: ReinforcedWindow - components: - - pos: 0.5,5.5 - parent: 0 - type: Transform -- uid: 705 - type: ReinforcedWindow - components: - - pos: 1.5,5.5 - parent: 0 - type: Transform -- uid: 706 - type: ReinforcedWindow - components: - - pos: 2.5,5.5 - parent: 0 - type: Transform -- uid: 707 - type: ReinforcedWindow - components: - - pos: 3.5,5.5 - parent: 0 - type: Transform -- uid: 708 - type: ReinforcedWindow - components: - - pos: 3.5,4.5 - parent: 0 - type: Transform -- uid: 709 - type: ReinforcedWindow - components: - - pos: 4.5,3.5 - parent: 0 - type: Transform -- uid: 710 - type: ReinforcedWindow - components: - - pos: 5.5,7.5 - parent: 0 - type: Transform -- uid: 711 - type: ReinforcedWindow - components: - - pos: 4.5,7.5 - parent: 0 - type: Transform -- uid: 712 - type: ReinforcedWindow - components: - - pos: 3.5,7.5 - parent: 0 - type: Transform -- uid: 713 - type: ReinforcedWindow - components: - - pos: 2.5,7.5 - parent: 0 - type: Transform -- uid: 714 - type: ReinforcedWindow - components: - - pos: 1.5,7.5 - parent: 0 - type: Transform -- uid: 715 - type: ReinforcedWindow - components: - - pos: 0.5,7.5 - parent: 0 - type: Transform -- uid: 716 - type: ReinforcedWindow - components: - - pos: -0.5,7.5 - parent: 0 - type: Transform -- uid: 717 - type: ReinforcedWindow - components: - - pos: -1.5,7.5 - parent: 0 - type: Transform -- uid: 718 - type: ReinforcedWindow - components: - - pos: -2.5,7.5 - parent: 0 - type: Transform -- uid: 719 - type: ReinforcedWindow - components: - - pos: -3.5,7.5 - parent: 0 - type: Transform -- uid: 720 - type: ReinforcedWindow - components: - - pos: -4.5,7.5 - parent: 0 - type: Transform -- uid: 721 - type: ReinforcedWindow - components: - - pos: -5.5,7.5 - parent: 0 - type: Transform -- uid: 722 - type: ReinforcedWindow - components: - - pos: -6.5,7.5 - parent: 0 - type: Transform -- uid: 723 - type: ReinforcedWindow - components: - - pos: -7.5,7.5 - parent: 0 - type: Transform -- uid: 724 - type: ReinforcedWindow - components: - - pos: -8.5,7.5 - parent: 0 - type: Transform -- uid: 725 - type: ReinforcedWindow - components: - - pos: -9.5,7.5 - parent: 0 - type: Transform -- uid: 726 - type: ReinforcedWindow - components: - - pos: -10.5,7.5 - parent: 0 - type: Transform -- uid: 727 - type: ReinforcedWindow - components: - - pos: -0.5,-6.5 - parent: 0 - type: Transform -- uid: 728 - type: ReinforcedWindow - components: - - pos: -1.5,-6.5 - parent: 0 - type: Transform -- uid: 729 - type: ReinforcedWindow - components: - - pos: -2.5,-6.5 - parent: 0 - type: Transform -- uid: 730 - type: ReinforcedWindow - components: - - pos: -3.5,-6.5 - parent: 0 - type: Transform -- uid: 731 - type: ReinforcedWindow - components: - - pos: -4.5,-6.5 - parent: 0 - type: Transform -- uid: 732 - type: WallSolid - components: - - pos: -19.5,-5.5 - parent: 0 - type: Transform -- uid: 733 - type: WallSolid - components: - - pos: -19.5,-6.5 - parent: 0 - type: Transform -- uid: 734 - type: WallSolid - components: - - pos: -18.5,-6.5 - parent: 0 - type: Transform -- uid: 735 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 736 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 737 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 738 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 739 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -17.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 740 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 741 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 742 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 743 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 744 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 745 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 746 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 747 - type: GasVentPump - components: - - pos: -17.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 748 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 749 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 750 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 751 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 752 - type: GasPipeBend - components: - - pos: -12.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 753 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -13.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 754 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 755 - type: GasVentScrubber - components: - - pos: -13.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 756 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -12.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 757 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 758 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 759 - type: GasPipeStraight - components: - - pos: -12.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 760 - type: GasPipeStraight - components: - - pos: -12.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 761 - type: GasPipeStraight - components: - - pos: -12.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 762 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -12.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 763 - type: GasPipeStraight - components: - - pos: -12.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 764 - type: GasPipeStraight - components: - - pos: -12.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 765 - type: GasPipeStraight - components: - - pos: -12.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 766 - type: GasPipeStraight - components: - - pos: -12.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 767 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 768 - type: GasVentPump - components: - - pos: -5.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 769 - type: GasVentScrubber - components: - - pos: 0.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 770 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 771 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 772 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 773 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 774 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 775 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 776 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 777 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 778 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 779 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 780 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 781 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 782 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 783 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 784 - type: GasPipeStraight - components: - - pos: 13.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 785 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 786 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 787 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 788 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 789 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 790 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 791 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 792 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 793 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 11.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 794 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 795 - type: GasPipeStraight - components: - - pos: 11.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 796 - type: GasPipeStraight - components: - - pos: 11.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 797 - type: GasPipeStraight - components: - - pos: 11.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 798 - type: GasPipeStraight - components: - - pos: 11.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 799 - type: GasPipeStraight - components: - - pos: 11.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 800 - type: GasPipeStraight - components: - - pos: 11.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 801 - type: GasPipeStraight - components: - - pos: 11.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 802 - type: GasPipeBend - components: - - pos: 10.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 803 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 804 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 805 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 806 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 807 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 808 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 809 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 810 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 811 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 812 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 813 - type: GasVentPump - components: - - pos: 11.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 814 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 9.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 815 - type: FloorDrain - components: - - pos: 6.5,2.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 816 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 817 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 818 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 819 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 820 - type: GasPipeTJunction - components: - - pos: -2.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 821 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 822 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 823 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 824 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 825 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -0.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 826 - type: GasVentScrubber - components: - - pos: -0.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 827 - type: GasVentPump - components: - - pos: -4.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 828 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 829 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 830 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 831 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 832 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 833 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 834 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 835 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 836 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 837 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -16.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 838 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 839 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 840 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 841 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -16.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 842 - type: CableApcExtension - components: - - pos: -18.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 843 - type: CableApcExtension - components: - - pos: -18.5,1.5 - parent: 0 - type: Transform -- uid: 844 - type: CableApcExtension - components: - - pos: -18.5,0.5 - parent: 0 - type: Transform -- uid: 845 - type: CableApcExtension - components: - - pos: -18.5,-0.5 - parent: 0 - type: Transform -- uid: 846 - type: CableApcExtension - components: - - pos: -18.5,-1.5 - parent: 0 - type: Transform -- uid: 847 - type: CableApcExtension - components: - - pos: -18.5,-2.5 - parent: 0 - type: Transform -- uid: 848 - type: CableApcExtension - components: - - pos: -17.5,-2.5 - parent: 0 - type: Transform -- uid: 849 - type: CableApcExtension - components: - - pos: -16.5,-2.5 - parent: 0 - type: Transform -- uid: 850 - type: CableApcExtension - components: - - pos: -15.5,-2.5 - parent: 0 - type: Transform -- uid: 851 - type: CableApcExtension - components: - - pos: -14.5,-2.5 - parent: 0 - type: Transform -- uid: 852 - type: CableApcExtension - components: - - pos: -13.5,-2.5 - parent: 0 - type: Transform -- uid: 853 - type: CableApcExtension - components: - - pos: -12.5,-2.5 - parent: 0 - type: Transform -- uid: 854 - type: CableApcExtension - components: - - pos: -12.5,-1.5 - parent: 0 - type: Transform -- uid: 855 - type: CableApcExtension - components: - - pos: -12.5,-3.5 - parent: 0 - type: Transform -- uid: 856 - type: CableApcExtension - components: - - pos: -12.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 857 - type: CableApcExtension - components: - - pos: -12.5,-5.5 - parent: 0 - type: Transform -- uid: 858 - type: CableApcExtension - components: - - pos: -13.5,-5.5 - parent: 0 - type: Transform -- uid: 859 - type: CableApcExtension - components: - - pos: -14.5,-5.5 - parent: 0 - type: Transform -- uid: 860 - type: CableApcExtension - components: - - pos: -15.5,-5.5 - parent: 0 - type: Transform -- uid: 861 - type: CableApcExtension - components: - - pos: -16.5,-5.5 - parent: 0 - type: Transform -- uid: 862 - type: CableApcExtension - components: - - pos: -17.5,-5.5 - parent: 0 - type: Transform -- uid: 863 - type: CableApcExtension - components: - - pos: -12.5,-6.5 - parent: 0 - type: Transform -- uid: 864 - type: CableApcExtension - components: - - pos: -17.5,-6.5 - parent: 0 - type: Transform -- uid: 865 - type: CableApcExtension - components: - - pos: -11.5,-2.5 - parent: 0 - type: Transform -- uid: 866 - type: CableApcExtension - components: - - pos: -10.5,-2.5 - parent: 0 - type: Transform -- uid: 867 - type: CableApcExtension - components: - - pos: -8.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 868 - type: CableApcExtension - components: - - pos: -8.5,2.5 - parent: 0 - type: Transform -- uid: 869 - type: CableApcExtension - components: - - pos: -8.5,1.5 - parent: 0 - type: Transform -- uid: 870 - type: CableApcExtension - components: - - pos: -8.5,0.5 - parent: 0 - type: Transform -- uid: 871 - type: CableApcExtension - components: - - pos: -8.5,-0.5 - parent: 0 - type: Transform -- uid: 872 - type: CableApcExtension - components: - - pos: -8.5,-1.5 - parent: 0 - type: Transform -- uid: 873 - type: CableApcExtension - components: - - pos: -8.5,-2.5 - parent: 0 - type: Transform -- uid: 874 - type: CableApcExtension - components: - - pos: -8.5,-3.5 - parent: 0 - type: Transform -- uid: 875 - type: CableApcExtension - components: - - pos: -8.5,-4.5 - parent: 0 - type: Transform -- uid: 876 - type: CableApcExtension - components: - - pos: -8.5,-5.5 - parent: 0 - type: Transform -- uid: 877 - type: CableApcExtension - components: - - pos: -7.5,1.5 - parent: 0 - type: Transform -- uid: 878 - type: CableApcExtension - components: - - pos: -6.5,1.5 - parent: 0 - type: Transform -- uid: 879 - type: CableApcExtension - components: - - pos: -5.5,1.5 - parent: 0 - type: Transform -- uid: 880 - type: CableApcExtension - components: - - pos: -4.5,1.5 - parent: 0 - type: Transform -- uid: 881 - type: CableApcExtension - components: - - pos: -3.5,1.5 - parent: 0 - type: Transform -- uid: 882 - type: CableApcExtension - components: - - pos: -2.5,1.5 - parent: 0 - type: Transform -- uid: 883 - type: CableApcExtension - components: - - pos: -1.5,1.5 - parent: 0 - type: Transform -- uid: 884 - type: CableApcExtension - components: - - pos: -0.5,1.5 - parent: 0 - type: Transform -- uid: 885 - type: CableApcExtension - components: - - pos: 0.5,1.5 - parent: 0 - type: Transform -- uid: 886 - type: CableApcExtension - components: - - pos: 1.5,1.5 - parent: 0 - type: Transform -- uid: 887 - type: CableApcExtension - components: - - pos: 2.5,1.5 - parent: 0 - type: Transform -- uid: 888 - type: CableApcExtension - components: - - pos: 3.5,1.5 - parent: 0 - type: Transform -- uid: 889 - type: CableApcExtension - components: - - pos: 4.5,1.5 - parent: 0 - type: Transform -- uid: 890 - type: CableApcExtension - components: - - pos: -4.5,2.5 - parent: 0 - type: Transform -- uid: 891 - type: CableApcExtension - components: - - pos: -4.5,3.5 - parent: 0 - type: Transform -- uid: 892 - type: CableApcExtension - components: - - pos: -4.5,4.5 - parent: 0 - type: Transform -- uid: 893 - type: CableApcExtension - components: - - pos: -0.5,2.5 - parent: 0 - type: Transform -- uid: 894 - type: CableApcExtension - components: - - pos: -0.5,3.5 - parent: 0 - type: Transform -- uid: 895 - type: CableApcExtension - components: - - pos: -0.5,4.5 - parent: 0 - type: Transform -- uid: 896 - type: CableApcExtension - components: - - pos: -2.5,0.5 - parent: 0 - type: Transform -- uid: 897 - type: CableApcExtension - components: - - pos: -2.5,-0.5 - parent: 0 - type: Transform -- uid: 898 - type: CableApcExtension - components: - - pos: -2.5,-1.5 - parent: 0 - type: Transform -- uid: 899 - type: CableApcExtension - components: - - pos: -0.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 900 - type: CableApcExtension - components: - - pos: -0.5,-3.5 - parent: 0 - type: Transform -- uid: 901 - type: CableApcExtension - components: - - pos: -0.5,-4.5 - parent: 0 - type: Transform -- uid: 902 - type: CableApcExtension - components: - - pos: -0.5,-5.5 - parent: 0 - type: Transform -- uid: 903 - type: CableApcExtension - components: - - pos: -1.5,-4.5 - parent: 0 - type: Transform -- uid: 904 - type: CableApcExtension - components: - - pos: -2.5,-4.5 - parent: 0 - type: Transform -- uid: 905 - type: CableApcExtension - components: - - pos: -3.5,-4.5 - parent: 0 - type: Transform -- uid: 906 - type: CableApcExtension - components: - - pos: -4.5,-4.5 - parent: 0 - type: Transform -- uid: 907 - type: CableApcExtension - components: - - pos: -5.5,-4.5 - parent: 0 - type: Transform -- uid: 908 - type: CableApcExtension - components: - - pos: -6.5,-4.5 - parent: 0 - type: Transform -- uid: 909 - type: CableApcExtension - components: - - pos: 0.5,-4.5 - parent: 0 - type: Transform -- uid: 910 - type: CableApcExtension - components: - - pos: 1.5,-4.5 - parent: 0 - type: Transform -- uid: 911 - type: CableApcExtension - components: - - pos: 2.5,-4.5 - parent: 0 - type: Transform -- uid: 912 - type: CableApcExtension - components: - - pos: 3.5,-4.5 - parent: 0 - type: Transform -- uid: 913 - type: CableApcExtension - components: - - pos: 4.5,-4.5 - parent: 0 - type: Transform -- uid: 914 - type: CableApcExtension - components: - - pos: 3.5,-5.5 - parent: 0 - type: Transform -- uid: 915 - type: CableApcExtension - components: - - pos: 3.5,-3.5 - parent: 0 - type: Transform -- uid: 916 - type: CableApcExtension - components: - - pos: 3.5,-2.5 - parent: 0 - type: Transform -- uid: 917 - type: CableApcExtension - components: - - pos: 3.5,-1.5 - parent: 0 - type: Transform -- uid: 918 - type: CableApcExtension - components: - - pos: 3.5,-0.5 - parent: 0 - type: Transform -- uid: 919 - type: CableApcExtension - components: - - pos: 7.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 920 - type: CableApcExtension - components: - - pos: 7.5,0.5 - parent: 0 - type: Transform -- uid: 921 - type: CableApcExtension - components: - - pos: 7.5,-0.5 - parent: 0 - type: Transform -- uid: 922 - type: CableApcExtension - components: - - pos: 7.5,-1.5 - parent: 0 - type: Transform -- uid: 923 - type: CableApcExtension - components: - - pos: 7.5,-2.5 - parent: 0 - type: Transform -- uid: 924 - type: CableApcExtension - components: - - pos: 7.5,-3.5 - parent: 0 - type: Transform -- uid: 925 - type: CableApcExtension - components: - - pos: 7.5,-4.5 - parent: 0 - type: Transform -- uid: 926 - type: CableApcExtension - components: - - pos: 7.5,-5.5 - parent: 0 - type: Transform -- uid: 927 - type: CableApcExtension - components: - - pos: 6.5,-4.5 - parent: 0 - type: Transform -- uid: 928 - type: CableApcExtension - components: - - pos: 8.5,-4.5 - parent: 0 - type: Transform -- uid: 929 - type: CableApcExtension - components: - - pos: 9.5,-4.5 - parent: 0 - type: Transform -- uid: 930 - type: CableApcExtension - components: - - pos: 10.5,-4.5 - parent: 0 - type: Transform -- uid: 931 - type: CableApcExtension - components: - - pos: -18.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 932 - type: CableApcExtension - components: - - pos: 10.5,-3.5 - parent: 0 - type: Transform -- uid: 933 - type: CableApcExtension - components: - - pos: 10.5,-2.5 - parent: 0 - type: Transform -- uid: 934 - type: CableApcExtension - components: - - pos: 10.5,-1.5 - parent: 0 - type: Transform -- uid: 935 - type: CableApcExtension - components: - - pos: 10.5,-0.5 - parent: 0 - type: Transform -- uid: 936 - type: CableApcExtension - components: - - pos: 10.5,0.5 - parent: 0 - type: Transform -- uid: 937 - type: CableApcExtension - components: - - pos: 10.5,1.5 - parent: 0 - type: Transform -- uid: 938 - type: CableApcExtension - components: - - pos: 10.5,2.5 - parent: 0 - type: Transform -- uid: 939 - type: CableApcExtension - components: - - pos: 10.5,3.5 - parent: 0 - type: Transform -- uid: 940 - type: CableApcExtension - components: - - pos: 10.5,4.5 - parent: 0 - type: Transform -- uid: 941 - type: CableApcExtension - components: - - pos: 10.5,5.5 - parent: 0 - type: Transform -- uid: 942 - type: CableApcExtension - components: - - pos: 9.5,2.5 - parent: 0 - type: Transform -- uid: 943 - type: CableApcExtension - components: - - pos: 8.5,2.5 - parent: 0 - type: Transform -- uid: 944 - type: CableApcExtension - components: - - pos: 7.5,2.5 - parent: 0 - type: Transform -- uid: 945 - type: CableApcExtension - components: - - pos: 9.5,5.5 - parent: 0 - type: Transform -- uid: 946 - type: CableApcExtension - components: - - pos: 8.5,5.5 - parent: 0 - type: Transform -- uid: 947 - type: CableApcExtension - components: - - pos: 11.5,5.5 - parent: 0 - type: Transform -- uid: 948 - type: CableApcExtension - components: - - pos: 12.5,5.5 - parent: 0 - type: Transform -- uid: 949 - type: CableApcExtension - components: - - pos: 11.5,2.5 - parent: 0 - type: Transform -- uid: 950 - type: CableApcExtension - components: - - pos: 12.5,2.5 - parent: 0 - type: Transform -- uid: 951 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree -- uid: 952 - type: CableApcExtension - components: - - pos: 12.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 953 - type: CableApcExtension - components: - - pos: 13.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 954 - type: CableApcExtension - components: - - pos: 13.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 955 - type: CableApcExtension - components: - - pos: 13.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 956 - type: CableApcExtension - components: - - pos: 13.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 957 - type: CableApcExtension - components: - - pos: 13.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 958 - type: CableApcExtension - components: - - pos: -17.5,3.5 - parent: 0 - type: Transform -- uid: 959 - type: CableApcExtension - components: - - pos: -16.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 960 - type: CableApcExtension - components: - - pos: -16.5,4.5 - parent: 0 - type: Transform -- uid: 961 - type: CableApcExtension - components: - - pos: -16.5,5.5 - parent: 0 - type: Transform -- uid: 962 - type: CableApcExtension - components: - - pos: -16.5,6.5 - parent: 0 - type: Transform -- uid: 963 - type: CableApcExtension - components: - - pos: -9.5,1.5 - parent: 0 - type: Transform -- uid: 964 - type: CableApcExtension - components: - - pos: -10.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 965 - type: CableApcExtension - components: - - pos: -11.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 966 - type: CableApcExtension - components: - - pos: -12.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 967 - type: CableApcExtension - components: - - pos: -12.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 968 - type: CableApcExtension - components: - - pos: -12.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 969 - type: CableApcExtension - components: - - pos: -12.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 970 - type: CableApcExtension - components: - - pos: -12.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 971 - type: CableApcExtension - components: - - pos: -12.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 972 - type: CableApcExtension - components: - - pos: -15.5,5.5 - parent: 0 - type: Transform -- uid: 973 - type: CableApcExtension - components: - - pos: -17.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 974 - type: CableApcExtension - components: - - pos: -18.5,5.5 - parent: 0 - type: Transform -- uid: 975 - type: CableApcExtension - components: - - pos: -19.5,5.5 - parent: 0 - type: Transform -- uid: 976 - type: AirlockMaintCommandLocked - components: - - pos: -10.5,1.5 - parent: 0 - type: Transform -- uid: 977 - type: Table - components: - - pos: -15.5,6.5 - parent: 0 - type: Transform -- uid: 978 - type: Table - components: - - pos: -16.5,6.5 - parent: 0 - type: Transform -- uid: 979 - type: AirlockHeadOfPersonnelLocked - components: - - pos: -19.5,-2.5 - parent: 0 - type: Transform -- uid: 980 - type: AirlockHeadOfPersonnelLocked - components: - - pos: -10.5,-2.5 - parent: 0 - type: Transform -- uid: 981 - type: AirlockCaptainLocked - components: - - pos: 7.5,-6.5 - parent: 0 - type: Transform -- uid: 982 - type: AirlockCaptainLocked - components: - - pos: 5.5,-4.5 - parent: 0 - type: Transform -- uid: 983 - type: AirlockCaptainLocked - components: - - pos: 10.5,1.5 - parent: 0 - type: Transform -- uid: 984 - type: AirlockCaptainLocked - components: - - pos: 12.5,-3.5 - parent: 0 - type: Transform -- uid: 985 - type: AirlockCaptainLocked - components: - - pos: 9.5,2.5 - parent: 0 - type: Transform -- uid: 986 - type: TableReinforced - components: - - pos: -12.5,-4.5 - parent: 0 - type: Transform -- uid: 987 - type: WindoorHeadOfPersonnelLocked - components: - - rot: 3.141592653589793 rad - pos: -12.5,-4.5 - parent: 0 - type: Transform -- uid: 988 - type: Windoor - components: - - pos: -12.5,-4.5 - parent: 0 - type: Transform -- uid: 989 - type: AirlockMaintCommandLocked - components: - - pos: -12.5,7.5 - parent: 0 - type: Transform -- uid: 990 - type: AirlockMaintCommandLocked - components: - - pos: -14.5,5.5 - parent: 0 - type: Transform -- uid: 991 - type: GasPipeStraight - components: - - pos: -4.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 992 - type: GasPipeStraight - components: - - pos: -4.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 993 - type: GasPipeStraight - components: - - pos: -0.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 994 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -4.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 995 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -0.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 996 - type: TableWood - components: - - pos: 10.5,3.5 - parent: 0 - type: Transform -- uid: 997 - type: WindowReinforcedDirectional - components: - - pos: 13.5,3.5 - parent: 0 - type: Transform -- uid: 998 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 13.5,3.5 - parent: 0 - type: Transform -- uid: 999 - type: filingCabinet - components: - - pos: 13.5,2.5 - parent: 0 - type: Transform -- uid: 1000 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 12.5,3.5 - parent: 0 - type: Transform -- uid: 1001 - type: WindowReinforcedDirectional - components: - - pos: 12.5,3.5 - parent: 0 - type: Transform -- uid: 1002 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 12.5,3.5 - parent: 0 - type: Transform -- uid: 1003 - type: TableWood - components: - - pos: 7.5,-1.5 - parent: 0 - type: Transform -- uid: 1004 - type: TableWood - components: - - pos: 7.5,-0.5 - parent: 0 - type: Transform -- uid: 1005 - type: TableWood - components: - - pos: 11.5,-1.5 - parent: 0 - type: Transform -- uid: 1006 - type: TableWood - components: - - pos: 10.5,-1.5 - parent: 0 - type: Transform -- uid: 1007 - type: TableWood - components: - - pos: 9.5,-1.5 - parent: 0 - type: Transform -- uid: 1008 - type: TableWood - components: - - pos: 9.5,-0.5 - parent: 0 - type: Transform -- uid: 1009 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 10.5,3.5 - parent: 0 - type: Transform -- uid: 1010 - type: WindowReinforcedDirectional - components: - - pos: 11.5,-1.5 - parent: 0 - type: Transform -- uid: 1011 - type: WindowReinforcedDirectional - components: - - pos: 9.5,-1.5 - parent: 0 - type: Transform -- uid: 1012 - type: WindowReinforcedDirectional - components: - - pos: 7.5,-1.5 - parent: 0 - type: Transform -- uid: 1013 - type: WindoorCommandLocked - components: - - pos: 10.5,-1.5 - parent: 0 - type: Transform -- uid: 1014 - type: WindoorCommandLocked - components: - - pos: 8.5,-1.5 - parent: 0 - type: Transform -- uid: 1015 - type: TableWood - components: - - pos: 8.5,4.5 - parent: 0 - type: Transform -- uid: 1016 - type: TableWood - components: - - pos: 7.5,4.5 - parent: 0 - type: Transform -- uid: 1017 - type: TableWood - components: - - pos: 7.5,5.5 - parent: 0 - type: Transform -- uid: 1018 - type: TableWood - components: - - pos: 7.5,6.5 - parent: 0 - type: Transform -- uid: 1019 - type: TableWood - components: - - pos: 8.5,6.5 - parent: 0 - type: Transform -- uid: 1020 - type: TableWood - components: - - pos: 13.5,4.5 - parent: 0 - type: Transform -- uid: 1021 - type: PottedPlantRandom - components: - - pos: 6.5,-5.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1022 - type: TableCarpet - components: - - pos: 9.5,-4.5 - parent: 0 - type: Transform -- uid: 1023 - type: Dresser - components: - - pos: 13.5,6.5 - parent: 0 - type: Transform -- uid: 1024 - type: LockerCaptainFilled - components: - - pos: 12.5,6.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1025 - type: Bed - components: - - pos: 13.5,5.5 - parent: 0 - type: Transform -- uid: 1026 - type: BedsheetCaptain - components: - - pos: 13.5,5.5 - parent: 0 - type: Transform -- uid: 1027 - type: WindoorCommandLocked - components: - - rot: 3.141592653589793 rad - pos: 11.5,3.5 - parent: 0 - type: Transform -- uid: 1028 - type: LampGold - components: - - pos: 10.498397,3.6511865 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 1029 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -44.5,44.5 - parent: 0 - type: Transform -- uid: 1030 - type: Sink - components: - - pos: 7.5,2.5 - parent: 0 - type: Transform -- uid: 1031 - type: Mirror - components: - - rot: 3.141592653589793 rad - pos: 7.5,3.5 - parent: 0 - type: Transform -- uid: 1032 - type: ToiletEmpty - components: - - pos: 8.5,2.5 - parent: 0 - type: Transform -- uid: 1033 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 7.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1034 - type: ToyRubberDuck - components: - - pos: 6.5,2.5 - parent: 0 - type: Transform -- uid: 1035 - type: SoapNT - components: - - pos: 7.5,2.5 - parent: 0 - type: Transform -- uid: 1036 - type: WeaponCapacitorRecharger - components: - - pos: 13.5,4.5 - parent: 0 - type: Transform -- uid: 1037 - type: ComputerTelevision - components: - - pos: 9.5,6.5 - parent: 0 - type: Transform -- uid: 1038 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 0 - type: Transform -- uid: 1039 - type: CarpetBlue - components: - - pos: 7.5,4.5 - parent: 0 - type: Transform -- uid: 1040 - type: CarpetBlue - components: - - pos: 7.5,5.5 - parent: 0 - type: Transform -- uid: 1041 - type: CarpetBlue - components: - - pos: 7.5,6.5 - parent: 0 - type: Transform -- uid: 1042 - type: CarpetBlue - components: - - pos: 8.5,4.5 - parent: 0 - type: Transform -- uid: 1043 - type: CarpetBlue - components: - - pos: 8.5,5.5 - parent: 0 - type: Transform -- uid: 1044 - type: CarpetBlue - components: - - pos: 8.5,6.5 - parent: 0 - type: Transform -- uid: 1045 - type: CarpetBlue - components: - - pos: 9.5,4.5 - parent: 0 - type: Transform -- uid: 1046 - type: CarpetBlue - components: - - pos: 9.5,5.5 - parent: 0 - type: Transform -- uid: 1047 - type: CarpetBlue - components: - - pos: 9.5,6.5 - parent: 0 - type: Transform -- uid: 1048 - type: CarpetBlue - components: - - pos: 12.5,4.5 - parent: 0 - type: Transform -- uid: 1049 - type: CarpetBlue - components: - - pos: 12.5,5.5 - parent: 0 - type: Transform -- uid: 1050 - type: CarpetBlue - components: - - pos: 12.5,6.5 - parent: 0 - type: Transform -- uid: 1051 - type: CarpetBlue - components: - - pos: 13.5,4.5 - parent: 0 - type: Transform -- uid: 1052 - type: CarpetBlue - components: - - pos: 13.5,5.5 - parent: 0 - type: Transform -- uid: 1053 - type: CarpetBlue - components: - - pos: 13.5,6.5 - parent: 0 - type: Transform -- uid: 1054 - type: Fireplace - components: - - pos: 10.5,6.5 - parent: 0 - type: Transform -- uid: 1055 - type: DogBed - components: - - name: fox bed - type: MetaData - - pos: 11.5,6.5 - parent: 0 - type: Transform -- uid: 1056 - type: LampGold - components: - - pos: 7.5376844,6.630336 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 1057 - type: PinpointerNuclear - components: - - pos: 8.334559,6.583461 - parent: 0 - type: Transform -- uid: 1058 - type: DrinkFlask - components: - - pos: 8.475184,4.520961 - parent: 0 - type: Transform -- uid: 1059 - type: CaptainIDCard - components: - - pos: 8.475184,6.489711 - parent: 0 - type: Transform -- uid: 1060 - type: ComputerComms - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-0.5 - parent: 0 - type: Transform -- uid: 1061 - type: ComputerId - components: - - rot: -1.5707963267948966 rad - pos: 11.5,0.5 - parent: 0 - type: Transform -- uid: 1062 - type: ComfyChair - components: - - pos: 10.5,-0.5 - parent: 0 - type: Transform -- uid: 1063 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-4.5 - parent: 0 - type: Transform -- uid: 1064 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 10.5,-2.5 - parent: 0 - type: Transform -- uid: 1065 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-4.5 - parent: 0 - type: Transform -- uid: 1066 - type: Bookshelf - components: - - pos: 11.5,-5.5 - parent: 0 - type: Transform -- uid: 1067 - type: PottedPlantRandom - components: - - pos: 7.5,0.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1068 - type: BriefcaseBrownFilled - components: - - pos: 7.4751844,-1.3025513 - parent: 0 - type: Transform -- uid: 1069 - type: Fireplace - components: - - pos: -17.5,1.5 - parent: 0 - type: Transform -- uid: 1070 - type: CarpetGreen - components: - - pos: 8.5,-5.5 - parent: 0 - type: Transform -- uid: 1071 - type: UniformPrinter - components: - - pos: -13.5,-0.5 - parent: 0 - type: Transform - - materialWhiteList: - - Cloth - - Durathread - type: MaterialStorage -- uid: 1072 - type: CarpetGreen - components: - - pos: 10.5,-5.5 - parent: 0 - type: Transform -- uid: 1073 - type: VendingMachineCart - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,-0.5 - parent: 0 - type: Transform -- uid: 1074 - type: CarpetGreen - components: - - pos: 9.5,-4.5 - parent: 0 - type: Transform -- uid: 1075 - type: filingCabinetDrawer - components: - - pos: -11.5,-0.5 - parent: 0 - type: Transform -- uid: 1076 - type: SurveillanceCameraCommand - components: - - pos: -14.5,-3.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP Office - type: SurveillanceCamera -- uid: 1077 - type: CarpetGreen - components: - - pos: 8.5,-4.5 - parent: 0 - type: Transform -- uid: 1078 - type: CarpetBlack - components: - - pos: 9.5,-0.5 - parent: 0 - type: Transform -- uid: 1079 - type: CarpetBlack - components: - - pos: 9.5,-1.5 - parent: 0 - type: Transform -- uid: 1080 - type: CarpetGreen - components: - - pos: 10.5,-4.5 - parent: 0 - type: Transform -- uid: 1081 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,-2.5 - parent: 0 - type: Transform -- uid: 1082 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 6.5,-3.5 - parent: 0 - type: Transform -- uid: 1083 - type: SpawnMobFoxRenault - components: - - pos: 11.5,6.5 - parent: 0 - type: Transform -- uid: 1084 - type: SpawnPointCaptain - components: - - pos: 12.5,5.5 - parent: 0 - type: Transform -- uid: 1085 - type: WindoorCommandLocked - components: - - pos: 13.5,-0.5 - parent: 0 - type: Transform -- uid: 1086 - type: CigarGoldCase - components: - - pos: 8.389587,4.732107 - parent: 0 - type: Transform -- uid: 1087 - type: PhoneInstrument - components: - - pos: 11.5075865,-1.4763026 - parent: 0 - type: Transform -- uid: 1088 - type: Lamp - components: - - pos: 9.541905,-0.5067756 - parent: 0 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: Objects/Tools/flashlight.rsi/flashlight.png - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 1089 - type: BoxFolderRed - components: - - pos: 7.52522,-0.48780704 - parent: 0 - type: Transform -- uid: 1090 - type: BoxFolderBlue - components: - - pos: 9.574004,-1.4286506 - parent: 0 - type: Transform -- uid: 1091 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1092 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -20.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1093 - type: ExtinguisherCabinetFilled - components: - - pos: 11.5,7.5 - parent: 0 - type: Transform -- uid: 1094 - type: ExtinguisherCabinetFilled - components: - - pos: 14.5,3.5 - parent: 0 - type: Transform -- uid: 1095 - type: ExtinguisherCabinetFilled - components: - - pos: 12.5,-5.5 - parent: 0 - type: Transform -- uid: 1096 - type: FireAxeCabinetFilled - components: - - rot: -1.5707963267948966 rad - pos: 5.5,1.5 - parent: 0 - type: Transform -- uid: 1097 - type: ExtinguisherCabinetFilled - components: - - pos: -13.5,7.5 - parent: 0 - type: Transform -- uid: 1098 - type: ExtinguisherCabinetFilled - components: - - pos: -19.5,7.5 - parent: 0 - type: Transform -- uid: 1099 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -19.5,6.5 - parent: 0 - type: Transform -- uid: 1100 - type: AirlockMaintLocked - components: - - pos: -25.5,13.5 - parent: 0 - type: Transform -- uid: 1101 - type: CarpetBlack - components: - - pos: 11.5,-1.5 - parent: 0 - type: Transform -- uid: 1102 - type: PlasticFlapsAirtightClear - components: - - pos: -25.5,16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 1103 - type: CarpetBlack - components: - - pos: 10.5,-1.5 - parent: 0 - type: Transform -- uid: 1104 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1105 - type: CarpetBlack - components: - - pos: 11.5,-0.5 - parent: 0 - type: Transform -- uid: 1106 - type: DrinkShaker - components: - - pos: 9.53786,-4.6720963 - parent: 0 - type: Transform -- uid: 1107 - type: PenCap - components: - - pos: 7.6647816,6.017962 - parent: 0 - type: Transform -- uid: 1108 - type: ClothingBackpackDuffelCaptain - components: - - pos: 7.4460316,4.674212 - parent: 0 - type: Transform -- uid: 1109 - type: Paper - components: - - pos: 7.5085316,5.486712 - parent: 0 - type: Transform -- uid: 1110 - type: PosterLegitNanotrasenLogo - components: - - pos: 5.5,-2.5 - parent: 0 - type: Transform -- uid: 1111 - type: PosterLegitNanotrasenLogo - components: - - pos: 7.5,7.5 - parent: 0 - type: Transform -- uid: 1112 - type: PosterLegitNanotrasenLogo - components: - - pos: 1.5,-6.5 - parent: 0 - type: Transform -- uid: 1113 - type: PosterLegitNanotrasenLogo - components: - - pos: -6.5,-6.5 - parent: 0 - type: Transform -- uid: 1114 - type: SignBridge - components: - - pos: 2.5,-6.5 - parent: 0 - type: Transform -- uid: 1115 - type: SignBridge - components: - - pos: -7.5,-6.5 - parent: 0 - type: Transform -- uid: 1116 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: -10.5,-6.5 - parent: 0 - type: Transform -- uid: 1117 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: 5.5,-6.5 - parent: 0 - type: Transform -- uid: 1118 - type: Bookshelf - components: - - pos: -6.5,-2.5 - parent: 0 - type: Transform -- uid: 1119 - type: Bookshelf - components: - - pos: 1.5,-2.5 - parent: 0 - type: Transform -- uid: 1120 - type: TableWood - components: - - pos: -3.5,-5.5 - parent: 0 - type: Transform -- uid: 1121 - type: TableWood - components: - - pos: -2.5,-5.5 - parent: 0 - type: Transform -- uid: 1122 - type: TableWood - components: - - pos: -1.5,-5.5 - parent: 0 - type: Transform -- uid: 1123 - type: Carpet - components: - - pos: -4.5,-5.5 - parent: 0 - type: Transform -- uid: 1124 - type: Carpet - components: - - pos: -4.5,-4.5 - parent: 0 - type: Transform -- uid: 1125 - type: Carpet - components: - - pos: -3.5,-5.5 - parent: 0 - type: Transform -- uid: 1126 - type: Carpet - components: - - pos: -3.5,-4.5 - parent: 0 - type: Transform -- uid: 1127 - type: Carpet - components: - - pos: -2.5,-5.5 - parent: 0 - type: Transform -- uid: 1128 - type: Carpet - components: - - pos: -2.5,-4.5 - parent: 0 - type: Transform -- uid: 1129 - type: Carpet - components: - - pos: -1.5,-5.5 - parent: 0 - type: Transform -- uid: 1130 - type: Carpet - components: - - pos: -1.5,-4.5 - parent: 0 - type: Transform -- uid: 1131 - type: Carpet - components: - - pos: -0.5,-5.5 - parent: 0 - type: Transform -- uid: 1132 - type: Carpet - components: - - pos: -0.5,-4.5 - parent: 0 - type: Transform -- uid: 1133 - type: Carpet - components: - - pos: -5.5,-5.5 - parent: 0 - type: Transform -- uid: 1134 - type: Carpet - components: - - pos: -5.5,-4.5 - parent: 0 - type: Transform -- uid: 1135 - type: Carpet - components: - - pos: 0.5,-5.5 - parent: 0 - type: Transform -- uid: 1136 - type: Carpet - components: - - pos: 0.5,-4.5 - parent: 0 - type: Transform -- uid: 1137 - type: ComfyChair - components: - - pos: -1.5,-4.5 - parent: 0 - type: Transform -- uid: 1138 - type: ComfyChair - components: - - pos: -2.5,-4.5 - parent: 0 - type: Transform -- uid: 1139 - type: ComfyChair - components: - - pos: -3.5,-4.5 - parent: 0 - type: Transform -- uid: 1140 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 0 - type: Transform -- uid: 1141 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-5.5 - parent: 0 - type: Transform -- uid: 1142 - type: TableWood - components: - - pos: -5.5,-3.5 - parent: 0 - type: Transform -- uid: 1143 - type: TableWood - components: - - pos: -6.5,-3.5 - parent: 0 - type: Transform -- uid: 1144 - type: TableWood - components: - - pos: 0.5,-3.5 - parent: 0 - type: Transform -- uid: 1145 - type: TableWood - components: - - pos: 1.5,-3.5 - parent: 0 - type: Transform -- uid: 1146 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -6.5,-5.5 - parent: 0 - type: Transform -- uid: 1147 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 1.5,-5.5 - parent: 0 - type: Transform -- uid: 1148 - type: Poweredlight - components: - - pos: -4.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1149 - type: Poweredlight - components: - - pos: -0.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1150 - type: LampGold - components: - - pos: -6.544301,-3.1708417 - parent: 0 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: Objects/Tools/flashlight.rsi/flashlight.png - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 1151 - type: BoxFolderYellow - components: - - pos: 0.6617086,-3.4449677 - parent: 0 - type: Transform -- uid: 1152 - type: BoxFolderWhite - components: - - pos: -3.4476664,-5.5387177 - parent: 0 - type: Transform -- uid: 1153 - type: BoxFolderBlue - components: - - pos: -2.4632914,-5.3668427 - parent: 0 - type: Transform -- uid: 1154 - type: BoxFolderRed - components: - - pos: -1.4164164,-5.4293427 - parent: 0 - type: Transform -- uid: 1155 - type: Lighter - components: - - pos: -2.1195414,-5.4762177 - parent: 0 - type: Transform -- uid: 1156 - type: Paper - components: - - pos: 1.4273336,-3.4449677 - parent: 0 - type: Transform -- uid: 1157 - type: Paper - components: - - pos: 1.4273336,-3.4449677 - parent: 0 - type: Transform -- uid: 1158 - type: Paper - components: - - pos: 1.4273336,-3.4449677 - parent: 0 - type: Transform -- uid: 1159 - type: Pen - components: - - pos: 1.6304586,-3.2574677 - parent: 0 - type: Transform -- uid: 1160 - type: ComputerComms - components: - - pos: -2.5,0.5 - parent: 0 - type: Transform -- uid: 1161 - type: TableGlass - components: - - pos: -4.5,0.5 - parent: 0 - type: Transform -- uid: 1162 - type: TableGlass - components: - - pos: -0.5,-0.5 - parent: 0 - type: Transform -- uid: 1163 - type: TableGlass - components: - - pos: -4.5,-0.5 - parent: 0 - type: Transform -- uid: 1164 - type: TableGlass - components: - - pos: -1.5,0.5 - parent: 0 - type: Transform -- uid: 1165 - type: TableGlass - components: - - pos: -0.5,0.5 - parent: 0 - type: Transform -- uid: 1166 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 0 - type: Transform -- uid: 1167 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 0 - type: Transform -- uid: 1168 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -4.5,0.5 - parent: 0 - type: Transform -- uid: 1169 - type: WindowReinforcedDirectional - components: - - pos: -0.5,1.5 - parent: 0 - type: Transform -- uid: 1170 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 0 - type: Transform -- uid: 1171 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 0 - type: Transform -- uid: 1172 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -0.5,0.5 - parent: 0 - type: Transform -- uid: 1173 - type: WindowReinforcedDirectional - components: - - pos: -4.5,1.5 - parent: 0 - type: Transform -- uid: 1174 - type: WindowReinforcedDirectional - components: - - pos: -2.5,1.5 - parent: 0 - type: Transform -- uid: 1175 - type: WindowReinforcedDirectional - components: - - pos: -1.5,1.5 - parent: 0 - type: Transform -- uid: 1176 - type: WindoorCommandLocked - components: - - pos: -3.5,1.5 - parent: 0 - type: Transform -- uid: 1177 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,-1.5 - parent: 0 - type: Transform -- uid: 1178 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,-1.5 - parent: 0 - type: Transform -- uid: 1179 - type: WallmountTelescreen - components: - - pos: -1.5,0.5 - parent: 0 - type: Transform -- uid: 1180 - type: CarpetSBlue - components: - - pos: -3.5,-1.5 - parent: 0 - type: Transform -- uid: 1181 - type: CarpetSBlue - components: - - pos: -2.5,-1.5 - parent: 0 - type: Transform -- uid: 1182 - type: CarpetSBlue - components: - - pos: -3.5,-0.5 - parent: 0 - type: Transform -- uid: 1183 - type: CarpetSBlue - components: - - pos: -2.5,-0.5 - parent: 0 - type: Transform -- uid: 1184 - type: CarpetSBlue - components: - - pos: -1.5,-1.5 - parent: 0 - type: Transform -- uid: 1185 - type: CarpetSBlue - components: - - pos: -1.5,-0.5 - parent: 0 - type: Transform -- uid: 1186 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 0 - type: Transform -- uid: 1187 - type: WeaponCapacitorRecharger - components: - - pos: -4.5,0.5 - parent: 0 - type: Transform -- uid: 1188 - type: PowerCellRecharger - components: - - pos: -4.5,-0.5 - parent: 0 - type: Transform -- uid: 1189 - type: Handcuffs - components: - - pos: -4.369541,-0.06595898 - parent: 0 - type: Transform -- uid: 1190 - type: BoxFolderBlue - components: - - pos: -0.5053382,0.512166 - parent: 0 - type: Transform -- uid: 1191 - type: Paper - components: - - pos: -0.5053382,-0.31595898 - parent: 0 - type: Transform -- uid: 1192 - type: Paper - components: - - pos: -0.5053382,-0.31595898 - parent: 0 - type: Transform -- uid: 1193 - type: Paper - components: - - pos: -0.5053382,-0.31595898 - parent: 0 - type: Transform -- uid: 1194 - type: Paper - components: - - pos: -0.5053382,-0.31595898 - parent: 0 - type: Transform -- uid: 1195 - type: Paper - components: - - pos: -0.5053382,-0.31595898 - parent: 0 - type: Transform -- uid: 1196 - type: TableGlass - components: - - pos: 5.5,0.5 - parent: 0 - type: Transform -- uid: 1197 - type: TableGlass - components: - - pos: 5.5,-0.5 - parent: 0 - type: Transform -- uid: 1198 - type: TableGlass - components: - - pos: 2.5,2.5 - parent: 0 - type: Transform -- uid: 1199 - type: TableGlass - components: - - pos: 2.5,3.5 - parent: 0 - type: Transform -- uid: 1200 - type: TableGlass - components: - - pos: -0.5,4.5 - parent: 0 - type: Transform -- uid: 1201 - type: TableGlass - components: - - pos: -4.5,4.5 - parent: 0 - type: Transform -- uid: 1202 - type: TableGlass - components: - - pos: -7.5,2.5 - parent: 0 - type: Transform -- uid: 1203 - type: TableGlass - components: - - pos: -7.5,3.5 - parent: 0 - type: Transform -- uid: 1204 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -8.5,2.5 - parent: 0 - type: Transform -- uid: 1205 - type: ComputerStationRecords - components: - - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 0 - type: Transform -- uid: 1206 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -34.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1207 - type: ComputerSolarControl - components: - - pos: 3.5,2.5 - parent: 0 - type: Transform -- uid: 1208 - type: ComputerResearchAndDevelopment - components: - - pos: 2.5,4.5 - parent: 0 - type: Transform -- uid: 1209 - type: ComputerCriminalRecords - components: - - pos: 1.5,4.5 - parent: 0 - type: Transform -- uid: 1210 - type: ComputerSurveillanceCameraMonitor - components: - - pos: 0.5,4.5 - parent: 0 - type: Transform -- uid: 1211 - type: CableHV - components: - - pos: -2.5,4.5 - parent: 0 - type: Transform -- uid: 1212 - type: CableHV - components: - - pos: -2.5,3.5 - parent: 0 - type: Transform -- uid: 1213 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 0 - type: Transform -- uid: 1214 - type: CableHV - components: - - pos: -2.5,2.5 - parent: 0 - type: Transform -- uid: 1215 - type: ComputerCrewMonitoring - components: - - pos: -5.5,4.5 - parent: 0 - type: Transform -- uid: 1216 - type: ComputerMedicalRecords - components: - - pos: -6.5,4.5 - parent: 0 - type: Transform -- uid: 1217 - type: ComputerId - components: - - pos: -7.5,4.5 - parent: 0 - type: Transform -- uid: 1218 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 0 - type: Transform -- uid: 1219 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -6.5,3.5 - parent: 0 - type: Transform -- uid: 1220 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -5.5,3.5 - parent: 0 - type: Transform -- uid: 1221 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 0 - type: Transform -- uid: 1222 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -1.5,3.5 - parent: 0 - type: Transform -- uid: 1223 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -2.5,3.5 - parent: 0 - type: Transform -- uid: 1224 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -3.5,3.5 - parent: 0 - type: Transform -- uid: 1225 - type: CableHV - components: - - pos: -14.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1226 - type: CableHV - components: - - pos: -13.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1227 - type: CableHV - components: - - pos: -12.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1228 - type: CableHV - components: - - pos: -11.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1229 - type: CableHV - components: - - pos: -10.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1230 - type: CableHV - components: - - pos: -9.5,1.5 - parent: 0 - type: Transform -- uid: 1231 - type: CableHV - components: - - pos: -8.5,1.5 - parent: 0 - type: Transform -- uid: 1232 - type: CableHV - components: - - pos: -7.5,1.5 - parent: 0 - type: Transform -- uid: 1233 - type: CableHV - components: - - pos: -6.5,1.5 - parent: 0 - type: Transform -- uid: 1234 - type: CableHV - components: - - pos: -5.5,1.5 - parent: 0 - type: Transform -- uid: 1235 - type: CableHV - components: - - pos: -4.5,1.5 - parent: 0 - type: Transform -- uid: 1236 - type: CableHV - components: - - pos: -3.5,1.5 - parent: 0 - type: Transform -- uid: 1237 - type: CableHV - components: - - pos: -2.5,1.5 - parent: 0 - type: Transform -- uid: 1238 - type: CableHV - components: - - pos: -1.5,1.5 - parent: 0 - type: Transform -- uid: 1239 - type: CableHV - components: - - pos: -0.5,1.5 - parent: 0 - type: Transform -- uid: 1240 - type: CableHV - components: - - pos: 0.5,1.5 - parent: 0 - type: Transform -- uid: 1241 - type: CableHV - components: - - pos: 1.5,1.5 - parent: 0 - type: Transform -- uid: 1242 - type: CableHV - components: - - pos: 2.5,1.5 - parent: 0 - type: Transform -- uid: 1243 - type: CableHV - components: - - pos: 3.5,1.5 - parent: 0 - type: Transform -- uid: 1244 - type: CableHV - components: - - pos: 4.5,1.5 - parent: 0 - type: Transform -- uid: 1245 - type: CableHV - components: - - pos: 4.5,0.5 - parent: 0 - type: Transform -- uid: 1246 - type: CableHV - components: - - pos: 4.5,-0.5 - parent: 0 - type: Transform -- uid: 1247 - type: CableHV - components: - - pos: 4.5,-1.5 - parent: 0 - type: Transform -- uid: 1248 - type: CableHV - components: - - pos: 4.5,-2.5 - parent: 0 - type: Transform -- uid: 1249 - type: CableHV - components: - - pos: 4.5,-3.5 - parent: 0 - type: Transform -- uid: 1250 - type: CableHV - components: - - pos: 4.5,-4.5 - parent: 0 - type: Transform -- uid: 1251 - type: CableHV - components: - - pos: 5.5,-4.5 - parent: 0 - type: Transform -- uid: 1252 - type: CableHV - components: - - pos: 6.5,-4.5 - parent: 0 - type: Transform -- uid: 1253 - type: CableHV - components: - - pos: 7.5,-4.5 - parent: 0 - type: Transform -- uid: 1254 - type: CableHV - components: - - pos: 8.5,-4.5 - parent: 0 - type: Transform -- uid: 1255 - type: CableHV - components: - - pos: 9.5,-4.5 - parent: 0 - type: Transform -- uid: 1256 - type: CableHV - components: - - pos: 10.5,-4.5 - parent: 0 - type: Transform -- uid: 1257 - type: CableHV - components: - - pos: 11.5,-4.5 - parent: 0 - type: Transform -- uid: 1258 - type: CableHV - components: - - pos: 11.5,-3.5 - parent: 0 - type: Transform -- uid: 1259 - type: CableHV - components: - - pos: 12.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1260 - type: CableHV - components: - - pos: 13.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1261 - type: CableHV - components: - - pos: 13.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1262 - type: CableHV - components: - - pos: 13.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1263 - type: CableHV - components: - - pos: 13.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1264 - type: CableHV - components: - - pos: 13.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1265 - type: Catwalk - components: - - pos: 13.5,-3.5 - parent: 0 - type: Transform -- uid: 1266 - type: Catwalk - components: - - pos: 13.5,-2.5 - parent: 0 - type: Transform -- uid: 1267 - type: Catwalk - components: - - pos: -13.5,1.5 - parent: 0 - type: Transform -- uid: 1268 - type: Catwalk - components: - - pos: 13.5,-1.5 - parent: 0 - type: Transform -- uid: 1269 - type: Catwalk - components: - - pos: -12.5,1.5 - parent: 0 - type: Transform -- uid: 1270 - type: Catwalk - components: - - pos: -11.5,1.5 - parent: 0 - type: Transform -- uid: 1271 - type: ComputerPowerMonitoring - components: - - pos: -2.5,4.5 - parent: 0 - type: Transform -- uid: 1272 - type: ComputerAlert - components: - - pos: -3.5,4.5 - parent: 0 - type: Transform -- uid: 1273 - type: ComputerAlert - components: - - pos: -1.5,4.5 - parent: 0 - type: Transform -- uid: 1274 - type: ClosetFireFilled - components: - - pos: -5.5,-0.5 - parent: 0 - type: Transform -- uid: 1275 - type: Rack - components: - - pos: 1.5,-0.5 - parent: 0 - type: Transform -- uid: 1276 - type: ClosetEmergencyFilledRandom - components: - - pos: 0.5,-0.5 - parent: 0 - type: Transform -- uid: 1277 - type: Rack - components: - - pos: -6.5,-0.5 - parent: 0 - type: Transform -- uid: 1278 - type: WeaponCapacitorRecharger - components: - - pos: 2.5,2.5 - parent: 0 - type: Transform -- uid: 1279 - type: ToolboxMechanicalFilled - components: - - pos: -0.5,4.5 - parent: 0 - type: Transform -- uid: 1280 - type: BoxFolderYellow - components: - - pos: -4.5,4.5 - parent: 0 - type: Transform -- uid: 1281 - type: BoxFolderWhite - components: - - pos: -7.5,3.5 - parent: 0 - type: Transform -- uid: 1282 - type: BoxFolderRed - components: - - pos: 2.5,3.5 - parent: 0 - type: Transform -- uid: 1283 - type: MedkitFilled - components: - - pos: -7.5,2.5 - parent: 0 - type: Transform -- uid: 1284 - type: Handcuffs - components: - - pos: 2.5708532,2.9899797 - parent: 0 - type: Transform -- uid: 1285 - type: Pen - components: - - pos: 5.5883656,-0.19478965 - parent: 0 - type: Transform -- uid: 1286 - type: ToolboxEmergencyFilled - components: - - pos: 1.5102406,-0.44478965 - parent: 0 - type: Transform -- uid: 1287 - type: Wrench - components: - - pos: 1.4946156,-0.53853965 - parent: 0 - type: Transform -- uid: 1288 - type: Multitool - components: - - pos: 1.4946156,-0.61666465 - parent: 0 - type: Transform -- uid: 1289 - type: RadioHandheld - components: - - pos: 1.7204325,-0.64741945 - parent: 0 - type: Transform -- uid: 1290 - type: RemoteSignaller - components: - - pos: 1.3298075,-0.66304445 - parent: 0 - type: Transform -- uid: 1291 - type: BriefcaseBrownFilled - components: - - pos: -6.4869304,-0.32949352 - parent: 0 - type: Transform -- uid: 1292 - type: Cigar - components: - - pos: -6.4244304,-0.47011852 - parent: 0 - type: Transform -- uid: 1293 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: -9.5,0.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge West - type: SurveillanceCamera -- uid: 1294 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -4.5,4.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge North - type: SurveillanceCamera -- uid: 1295 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 4.5,1.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge East - type: SurveillanceCamera -- uid: 1296 - type: SurveillanceCameraCommand - components: - - pos: -3.5,-1.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge South - type: SurveillanceCamera -- uid: 1297 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -0.5,-3.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Conference Room - type: SurveillanceCamera -- uid: 1298 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Office - type: SurveillanceCamera -- uid: 1299 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Bedroom - type: SurveillanceCamera -- uid: 1300 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-3.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge Hall Left - type: SurveillanceCamera -- uid: 1301 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-3.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge Hall Right - type: SurveillanceCamera -- uid: 1302 - type: ClosetFireFilled - components: - - pos: -13.5,6.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1303 - type: WaterTankFull - components: - - pos: -11.5,2.5 - parent: 0 - type: Transform -- uid: 1304 - type: FireExtinguisher - components: - - pos: -12.335022,2.395142 - parent: 0 - type: Transform -- uid: 1305 - type: OxygenTankFilled - components: - - pos: -13.678772,2.363892 - parent: 0 - type: Transform -- uid: 1306 - type: ClothingMaskGas - components: - - pos: -12.428772,3.332642 - parent: 0 - type: Transform -- uid: 1307 - type: BoxLightMixed - components: - - pos: -13.522522,4.535767 - parent: 0 - type: Transform -- uid: 1308 - type: RadioHandheld - components: - - pos: -12.272522,1.3638921 - parent: 0 - type: Transform -- uid: 1309 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1310 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1311 - type: ReinforcedWindow - components: - - pos: -6.5,12.5 - parent: 0 - type: Transform -- uid: 1312 - type: ReinforcedWindow - components: - - pos: -6.5,17.5 - parent: 0 - type: Transform -- uid: 1313 - type: ReinforcedWindow - components: - - pos: -6.5,16.5 - parent: 0 - type: Transform -- uid: 1314 - type: ReinforcedWindow - components: - - pos: -14.5,17.5 - parent: 0 - type: Transform -- uid: 1315 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1316 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1317 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1318 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1319 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1320 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1321 - type: CarpetBlack - components: - - pos: 10.5,-0.5 - parent: 0 - type: Transform -- uid: 1322 - type: CarpetGreen - components: - - pos: 9.5,-5.5 - parent: 0 - type: Transform -- uid: 1323 - type: TableCarpet - components: - - pos: 9.5,-5.5 - parent: 0 - type: Transform -- uid: 1324 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-5.5 - parent: 0 - type: Transform -- uid: 1325 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-5.5 - parent: 0 - type: Transform -- uid: 1326 - type: ChairOfficeDark - components: - - pos: -17.5,0.5 - parent: 0 - type: Transform -- uid: 1327 - type: TableWood - components: - - pos: -17.5,-0.5 - parent: 0 - type: Transform -- uid: 1328 - type: TableWood - components: - - pos: -18.5,-0.5 - parent: 0 - type: Transform -- uid: 1329 - type: DogBed - components: - - pos: -12.5,-0.5 - parent: 0 - type: Transform -- uid: 1330 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -17.5,-1.5 - parent: 0 - type: Transform -- uid: 1331 - type: ComputerId - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-3.5 - parent: 0 - type: Transform -- uid: 1332 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -18.5,0.5 - parent: 0 - type: Transform -- uid: 1333 - type: Bookshelf - components: - - pos: -18.5,1.5 - parent: 0 - type: Transform -- uid: 1334 - type: SpawnMobCorgi - components: - - pos: -12.5,-0.5 - parent: 0 - type: Transform -- uid: 1335 - type: FoodBoxDonut - components: - - pos: 10.542754,-1.3661506 - parent: 0 - type: Transform -- uid: 1336 - type: LockerHeadOfPersonnelFilled - components: - - pos: -16.5,1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2132 - - 2131 - type: ContainerContainer -- uid: 1337 - type: DisposalUnit - components: - - pos: -18.5,-3.5 - parent: 0 - type: Transform -- uid: 1338 - type: TableWood - components: - - pos: -17.5,-3.5 - parent: 0 - type: Transform -- uid: 1339 - type: TableWood - components: - - pos: -14.5,-3.5 - parent: 0 - type: Transform -- uid: 1340 - type: CarpetSBlue - components: - - pos: -18.5,-1.5 - parent: 0 - type: Transform -- uid: 1341 - type: CarpetSBlue - components: - - pos: -18.5,-0.5 - parent: 0 - type: Transform -- uid: 1342 - type: TableWood - components: - - pos: -11.5,-3.5 - parent: 0 - type: Transform -- uid: 1343 - type: CarpetSBlue - components: - - pos: -17.5,-1.5 - parent: 0 - type: Transform -- uid: 1344 - type: CarpetSBlue - components: - - pos: -17.5,-0.5 - parent: 0 - type: Transform -- uid: 1345 - type: filingCabinet - components: - - pos: -16.5,-3.5 - parent: 0 - type: Transform -- uid: 1346 - type: CarpetSBlue - components: - - pos: -16.5,-1.5 - parent: 0 - type: Transform -- uid: 1347 - type: CarpetSBlue - components: - - pos: -16.5,-0.5 - parent: 0 - type: Transform -- uid: 1348 - type: ChairOfficeDark - components: - - pos: -12.5,-3.5 - parent: 0 - type: Transform -- uid: 1349 - type: HandLabeler - components: - - pos: -17.520744,-0.28933287 - parent: 0 - type: Transform -- uid: 1350 - type: LampGold - components: - - pos: -18.42428,-0.2821207 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 1351 - type: RubberStampApproved - components: - - pos: -11.643029,-3.5477457 - parent: 0 - type: Transform -- uid: 1352 - type: RubberStampDenied - components: - - pos: -11.299279,-3.5633707 - parent: 0 - type: Transform -- uid: 1353 - type: BoxFolderRed - components: - - pos: -14.689904,-3.3602457 - parent: 0 - type: Transform -- uid: 1354 - type: BoxFolderBlue - components: - - pos: -14.564904,-3.4696207 - parent: 0 - type: Transform -- uid: 1355 - type: BoxFolderBlack - components: - - pos: -14.455529,-3.5789957 - parent: 0 - type: Transform -- uid: 1356 - type: Paper - components: - - pos: -14.346154,-3.3289957 - parent: 0 - type: Transform -- uid: 1357 - type: Paper - components: - - pos: -14.346154,-3.3289957 - parent: 0 - type: Transform -- uid: 1358 - type: Paper - components: - - pos: -14.346154,-3.3289957 - parent: 0 - type: Transform -- uid: 1359 - type: Paper - components: - - pos: -14.346154,-3.3289957 - parent: 0 - type: Transform -- uid: 1360 - type: Paper - components: - - pos: -14.346154,-3.3289957 - parent: 0 - type: Transform -- uid: 1361 - type: Paper - components: - - pos: -14.346154,-3.3289957 - parent: 0 - type: Transform -- uid: 1362 - type: Paper - components: - - pos: -14.346154,-3.3289957 - parent: 0 - type: Transform -- uid: 1363 - type: Paper - components: - - pos: -14.346154,-3.3289957 - parent: 0 - type: Transform -- uid: 1364 - type: Paper - components: - - pos: -14.346154,-3.3289957 - parent: 0 - type: Transform -- uid: 1365 - type: Paper - components: - - pos: -14.346154,-3.3289957 - parent: 0 - type: Transform -- uid: 1366 - type: Table - components: - - pos: -11.5,-5.5 - parent: 0 - type: Transform -- uid: 1367 - type: ShuttersNormalOpen - components: - - pos: -17.5,-6.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1369 - type: SignalReceiver -- uid: 1368 - type: ShuttersNormalOpen - components: - - pos: -12.5,-6.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1369 - type: SignalReceiver -- uid: 1369 - type: SignalButton - components: - - pos: -15.5,-0.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1367 - - port: Toggle - uid: 1368 - type: SignalTransmitter -- uid: 1370 - type: Paper - components: - - pos: -11.472395,-5.430074 - parent: 0 - type: Transform -- uid: 1371 - type: Paper - components: - - pos: -11.472395,-5.430074 - parent: 0 - type: Transform -- uid: 1372 - type: Paper - components: - - pos: -11.472395,-5.430074 - parent: 0 - type: Transform -- uid: 1373 - type: Paper - components: - - pos: -11.472395,-5.430074 - parent: 0 - type: Transform -- uid: 1374 - type: DeskBell - components: - - pos: -29.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 1375 - type: Pen - components: - - pos: -11.253645,-5.211324 - parent: 0 - type: Transform -- uid: 1376 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -18.5,-5.5 - parent: 0 - type: Transform -- uid: 1377 - type: CarpetSBlue - components: - - pos: -13.5,-3.5 - parent: 0 - type: Transform -- uid: 1378 - type: CarpetSBlue - components: - - pos: -13.5,-2.5 - parent: 0 - type: Transform -- uid: 1379 - type: CarpetSBlue - components: - - pos: -12.5,-3.5 - parent: 0 - type: Transform -- uid: 1380 - type: CarpetSBlue - components: - - pos: -12.5,-2.5 - parent: 0 - type: Transform -- uid: 1381 - type: CarpetSBlue - components: - - pos: -11.5,-3.5 - parent: 0 - type: Transform -- uid: 1382 - type: CarpetSBlue - components: - - pos: -11.5,-2.5 - parent: 0 - type: Transform -- uid: 1383 - type: SpawnPointHeadOfPersonnel - components: - - pos: -15.5,-2.5 - parent: 0 - type: Transform -- uid: 1384 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1385 - type: MaterialDurathread - components: - - pos: -17.38306,-3.5393329 - parent: 0 - type: Transform -- uid: 1386 - type: MaterialCloth - components: - - pos: -17.53931,-3.3987079 - parent: 0 - type: Transform -- uid: 1387 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1388 - type: PosterLegitNanomichiAd - components: - - pos: -19.5,-1.5 - parent: 0 - type: Transform -- uid: 1389 - type: PosterLegitIan - components: - - pos: -10.5,-3.5 - parent: 0 - type: Transform -- uid: 1390 - type: PosterLegitLoveIan - components: - - pos: -13.5,0.5 - parent: 0 - type: Transform -- uid: 1391 - type: Poweredlight - components: - - pos: -11.5,-0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1392 - type: FirelockGlass - components: - - pos: -17.5,-6.5 - parent: 0 - type: Transform -- uid: 1393 - type: FirelockGlass - components: - - pos: -12.5,-6.5 - parent: 0 - type: Transform -- uid: 1394 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-6.5 - parent: 0 - type: Transform -- uid: 1395 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-6.5 - parent: 0 - type: Transform -- uid: 1396 - type: WindowReinforcedDirectional - components: - - pos: -13.5,-6.5 - parent: 0 - type: Transform -- uid: 1397 - type: WindowReinforcedDirectional - components: - - pos: -14.5,-6.5 - parent: 0 - type: Transform -- uid: 1398 - type: WindowReinforcedDirectional - components: - - pos: -15.5,-6.5 - parent: 0 - type: Transform -- uid: 1399 - type: WindowReinforcedDirectional - components: - - pos: -16.5,-6.5 - parent: 0 - type: Transform -- uid: 1400 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -16.5,-6.5 - parent: 0 - type: Transform -- uid: 1401 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -15.5,-6.5 - parent: 0 - type: Transform -- uid: 1402 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -14.5,-6.5 - parent: 0 - type: Transform -- uid: 1403 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -13.5,-6.5 - parent: 0 - type: Transform -- uid: 1404 - type: SignHead - components: - - pos: -11.5,-6.5 - parent: 0 - type: Transform -- uid: 1405 - type: SignSecureSmall - components: - - pos: -18.5,-4.5 - parent: 0 - type: Transform -- uid: 1406 - type: SignSecureSmall - components: - - pos: -5.5,-6.5 - parent: 0 - type: Transform -- uid: 1407 - type: SignSecureSmall - components: - - pos: 0.5,-6.5 - parent: 0 - type: Transform -- uid: 1408 - type: SignSecureSmall - components: - - pos: 5.5,3.5 - parent: 0 - type: Transform -- uid: 1409 - type: SignSecureSmall - components: - - pos: -10.5,3.5 - parent: 0 - type: Transform -- uid: 1410 - type: PottedPlantRandom - components: - - pos: -7.5,-0.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1411 - type: PottedPlantRandom - components: - - pos: 2.5,-0.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1412 - type: ExtinguisherCabinetFilled - components: - - pos: -10.5,2.5 - parent: 0 - type: Transform -- uid: 1413 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1414 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1415 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-6.5 - parent: 0 - type: Transform -- uid: 1416 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 0 - type: Transform -- uid: 1417 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: -19.501669,-6.277148 - parent: 0 - type: Transform -- uid: 1418 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 14.50235,-6.292773 - parent: 0 - type: Transform -- uid: 1419 - type: SignDirectionalBridge - components: - - rot: -1.5707963267948966 rad - pos: 14.50235,-6.699023 - parent: 0 - type: Transform -- uid: 1420 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -19.504526,-6.714648 - parent: 0 - type: Transform -- uid: 1421 - type: WallReinforced - components: - - pos: -6.5,-9.5 - parent: 0 - type: Transform -- uid: 1422 - type: WallReinforced - components: - - pos: -6.5,-12.5 - parent: 0 - type: Transform -- uid: 1423 - type: WallReinforced - components: - - pos: -8.5,-12.5 - parent: 0 - type: Transform -- uid: 1424 - type: WallReinforced - components: - - pos: -8.5,-9.5 - parent: 0 - type: Transform -- uid: 1425 - type: WallReinforced - components: - - pos: 1.5,-12.5 - parent: 0 - type: Transform -- uid: 1426 - type: WallReinforced - components: - - pos: 1.5,-9.5 - parent: 0 - type: Transform -- uid: 1427 - type: WallReinforced - components: - - pos: 3.5,-9.5 - parent: 0 - type: Transform -- uid: 1428 - type: WallReinforced - components: - - pos: 3.5,-12.5 - parent: 0 - type: Transform -- uid: 1429 - type: ShuttersNormalOpen - components: - - pos: 2.5,-12.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver -- uid: 1430 - type: ReinforcedWindow - components: - - pos: -8.5,-11.5 - parent: 0 - type: Transform -- uid: 1431 - type: ReinforcedWindow - components: - - pos: -8.5,-10.5 - parent: 0 - type: Transform -- uid: 1432 - type: ReinforcedWindow - components: - - pos: -7.5,-9.5 - parent: 0 - type: Transform -- uid: 1433 - type: ReinforcedWindow - components: - - pos: -6.5,-10.5 - parent: 0 - type: Transform -- uid: 1434 - type: ReinforcedWindow - components: - - pos: -6.5,-11.5 - parent: 0 - type: Transform -- uid: 1435 - type: ShuttersNormalOpen - components: - - pos: 3.5,-16.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver -- uid: 1436 - type: ReinforcedWindow - components: - - pos: 1.5,-11.5 - parent: 0 - type: Transform -- uid: 1437 - type: ReinforcedWindow - components: - - pos: 1.5,-10.5 - parent: 0 - type: Transform -- uid: 1438 - type: ReinforcedWindow - components: - - pos: 3.5,-10.5 - parent: 0 - type: Transform -- uid: 1439 - type: ReinforcedWindow - components: - - pos: 3.5,-11.5 - parent: 0 - type: Transform -- uid: 1440 - type: ReinforcedWindow - components: - - pos: 2.5,-9.5 - parent: 0 - type: Transform -- uid: 1441 - type: ShuttersNormalOpen - components: - - pos: -1.5,-17.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver -- uid: 1442 - type: ShuttersNormalOpen - components: - - pos: -2.5,-17.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver -- uid: 1443 - type: ShuttersNormalOpen - components: - - pos: -3.5,-17.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver -- uid: 1444 - type: ShuttersNormalOpen - components: - - pos: 2.5,-17.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver -- uid: 1445 - type: ShuttersNormalOpen - components: - - pos: -7.5,-17.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver -- uid: 1446 - type: ShuttersNormalOpen - components: - - pos: 3.5,-15.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver -- uid: 1447 - type: ShuttersNormalOpen - components: - - pos: 0.5,-12.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver -- uid: 1448 - type: WallReinforced - components: - - pos: -4.5,-12.5 - parent: 0 - type: Transform -- uid: 1449 - type: WallReinforced - components: - - pos: -3.5,-12.5 - parent: 0 - type: Transform -- uid: 1450 - type: WallReinforced - components: - - pos: -1.5,-12.5 - parent: 0 - type: Transform -- uid: 1451 - type: WallReinforced - components: - - pos: -0.5,-12.5 - parent: 0 - type: Transform -- uid: 1452 - type: WallReinforced - components: - - pos: 1.5,-17.5 - parent: 0 - type: Transform -- uid: 1453 - type: WallReinforced - components: - - pos: -0.5,-17.5 - parent: 0 - type: Transform -- uid: 1454 - type: WallReinforced - components: - - pos: -4.5,-17.5 - parent: 0 - type: Transform -- uid: 1455 - type: WallReinforced - components: - - pos: -6.5,-17.5 - parent: 0 - type: Transform -- uid: 1456 - type: WallReinforced - components: - - pos: 3.5,-17.5 - parent: 0 - type: Transform -- uid: 1457 - type: WallReinforced - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform -- uid: 1458 - type: WallReinforced - components: - - pos: -19.5,-9.5 - parent: 0 - type: Transform -- uid: 1459 - type: WallReinforced - components: - - pos: -18.5,-9.5 - parent: 0 - type: Transform -- uid: 1460 - type: WallReinforced - components: - - pos: -17.5,-17.5 - parent: 0 - type: Transform -- uid: 1461 - type: WallReinforced - components: - - pos: -14.5,-9.5 - parent: 0 - type: Transform -- uid: 1462 - type: WallReinforced - components: - - pos: -13.5,-9.5 - parent: 0 - type: Transform -- uid: 1463 - type: WallReinforced - components: - - pos: -13.5,-17.5 - parent: 0 - type: Transform -- uid: 1464 - type: WallReinforced - components: - - pos: -14.5,-17.5 - parent: 0 - type: Transform -- uid: 1465 - type: AirlockHeadOfPersonnelLocked - components: - - pos: -16.5,-17.5 - parent: 0 - type: Transform -- uid: 1466 - type: WallReinforced - components: - - pos: -18.5,-17.5 - parent: 0 - type: Transform -- uid: 1467 - type: WallReinforced - components: - - pos: -19.5,-17.5 - parent: 0 - type: Transform -- uid: 1468 - type: WallReinforced - components: - - pos: -19.5,-16.5 - parent: 0 - type: Transform -- uid: 1469 - type: WallReinforced - components: - - pos: -19.5,-15.5 - parent: 0 - type: Transform -- uid: 1470 - type: WallReinforced - components: - - pos: -19.5,-14.5 - parent: 0 - type: Transform -- uid: 1471 - type: WallReinforced - components: - - pos: -19.5,-13.5 - parent: 0 - type: Transform -- uid: 1472 - type: WallReinforced - components: - - pos: -19.5,-12.5 - parent: 0 - type: Transform -- uid: 1473 - type: WallReinforced - components: - - pos: -19.5,-11.5 - parent: 0 - type: Transform -- uid: 1474 - type: WallReinforced - components: - - pos: -19.5,-10.5 - parent: 0 - type: Transform -- uid: 1475 - type: WallReinforced - components: - - pos: -13.5,-16.5 - parent: 0 - type: Transform -- uid: 1476 - type: WallReinforced - components: - - pos: -13.5,-15.5 - parent: 0 - type: Transform -- uid: 1477 - type: WallReinforced - components: - - pos: -13.5,-14.5 - parent: 0 - type: Transform -- uid: 1478 - type: WallReinforced - components: - - pos: -13.5,-13.5 - parent: 0 - type: Transform -- uid: 1479 - type: WallReinforced - components: - - pos: -13.5,-12.5 - parent: 0 - type: Transform -- uid: 1480 - type: WallReinforced - components: - - pos: -13.5,-11.5 - parent: 0 - type: Transform -- uid: 1481 - type: WallReinforced - components: - - pos: -13.5,-10.5 - parent: 0 - type: Transform -- uid: 1482 - type: Rack - components: - - pos: -18.5,-10.5 - parent: 0 - type: Transform -- uid: 1483 - type: Rack - components: - - pos: -18.5,-11.5 - parent: 0 - type: Transform -- uid: 1484 - type: Table - components: - - pos: -18.5,-13.5 - parent: 0 - type: Transform -- uid: 1485 - type: Table - components: - - pos: -18.5,-12.5 - parent: 0 - type: Transform -- uid: 1486 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: -14.5,-12.5 - parent: 0 - type: Transform -- uid: 1487 - type: Table - components: - - pos: -18.5,-14.5 - parent: 0 - type: Transform -- uid: 1488 - type: Rack - components: - - pos: -14.5,-11.5 - parent: 0 - type: Transform -- uid: 1489 - type: Rack - components: - - pos: -14.5,-10.5 - parent: 0 - type: Transform -- uid: 1490 - type: AirlockHeadOfPersonnelGlassLocked - components: - - pos: -15.5,-9.5 - parent: 0 - type: Transform -- uid: 1491 - type: AirlockHeadOfPersonnelGlassLocked - components: - - pos: -17.5,-9.5 - parent: 0 - type: Transform -- uid: 1492 - type: WallReinforced - components: - - pos: -15.5,-17.5 - parent: 0 - type: Transform -- uid: 1493 - type: ShuttersNormal - components: - - pos: -16.5,-9.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1495 - type: SignalReceiver -- uid: 1494 - type: WallSolid - components: - - pos: -14.5,-13.5 - parent: 0 - type: Transform -- uid: 1495 - type: SignalButton - components: - - pos: -14.5,-13.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1493 - type: SignalTransmitter -- uid: 1496 - type: ReinforcedWindow - components: - - pos: -14.5,16.5 - parent: 0 - type: Transform -- uid: 1497 - type: Grille - components: - - pos: -16.5,-9.5 - parent: 0 - type: Transform -- uid: 1498 - type: ReinforcedWindow - components: - - pos: -16.5,-9.5 - parent: 0 - type: Transform -- uid: 1499 - type: SignDirectionalEvac - components: - - pos: -19.5,-9.5 - parent: 0 - type: Transform -- uid: 1500 - type: SignDirectionalMed - components: - - pos: -19.49609,-9.297104 - parent: 0 - type: Transform -- uid: 1501 - type: SignDirectionalSci - components: - - pos: -19.49609,-9.703354 - parent: 0 - type: Transform -- uid: 1502 - type: VendingMachineTankDispenserEngineering - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: -14.5,-14.5 - parent: 0 - type: Transform -- uid: 1503 - type: ClothingOuterHardsuitEVA - components: - - pos: -18.5,-11.5 - parent: 0 - type: Transform -- uid: 1504 - type: ClothingOuterHardsuitEVA - components: - - pos: -18.5,-10.5 - parent: 0 - type: Transform -- uid: 1505 - type: ClothingOuterHardsuitEVA - components: - - pos: -14.5,-10.5 - parent: 0 - type: Transform -- uid: 1506 - type: ClothingOuterHardsuitEVA - components: - - pos: -14.5,-11.5 - parent: 0 - type: Transform -- uid: 1507 - type: ClothingHeadHelmetEVA - components: - - pos: -18.5,-11.5 - parent: 0 - type: Transform -- uid: 1508 - type: ClothingHeadHelmetEVA - components: - - pos: -18.5,-10.5 - parent: 0 - type: Transform -- uid: 1509 - type: ClothingHeadHelmetEVA - components: - - pos: -14.5,-10.5 - parent: 0 - type: Transform -- uid: 1510 - type: ClothingHeadHelmetEVA - components: - - pos: -14.5,-11.5 - parent: 0 - type: Transform -- uid: 1511 - type: SignEVA - components: - - pos: -14.5,-9.5 - parent: 0 - type: Transform -- uid: 1512 - type: Rack - components: - - pos: -18.5,-16.5 - parent: 0 - type: Transform -- uid: 1513 - type: Rack - components: - - pos: -18.5,-15.5 - parent: 0 - type: Transform -- uid: 1514 - type: ClothingShoesBootsMag - components: - - pos: -18.5,-16.5 - parent: 0 - type: Transform -- uid: 1515 - type: ClothingShoesBootsMag - components: - - pos: -18.5,-15.5 - parent: 0 - type: Transform -- uid: 1516 - type: ClothingShoesBootsMag - components: - - pos: -18.62109,-15.408751 - parent: 0 - type: Transform -- uid: 1517 - type: ClothingShoesBootsMag - components: - - pos: -18.62109,-16.361876 - parent: 0 - type: Transform -- uid: 1518 - type: ClosetEmergencyFilledRandom - components: - - pos: -14.5,-16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1519 - type: OxygenCanister - components: - - pos: -14.5,-15.5 - parent: 0 - type: Transform -- uid: 1520 - type: ToolboxElectricalFilled - components: - - pos: -18.599995,-12.350811 - parent: 0 - type: Transform -- uid: 1521 - type: ToolboxMechanicalFilled - components: - - pos: -18.45937,-12.553936 - parent: 0 - type: Transform -- uid: 1522 - type: PartRodMetal - components: - - pos: -18.474995,-13.100811 - parent: 0 - type: Transform -- uid: 1523 - type: PartRodMetal - components: - - pos: -18.412495,-13.225811 - parent: 0 - type: Transform -- uid: 1524 - type: ClothingMaskBreath - components: - - pos: -18.64687,-14.272686 - parent: 0 - type: Transform -- uid: 1525 - type: ClothingMaskBreath - components: - - pos: -18.39687,-14.132061 - parent: 0 - type: Transform -- uid: 1526 - type: ClothingMaskGas - components: - - pos: -18.506245,-14.538311 - parent: 0 - type: Transform -- uid: 1527 - type: ClothingMaskGas - components: - - pos: -18.30312,-14.413311 - parent: 0 - type: Transform -- uid: 1528 - type: SheetRGlass - components: - - pos: -18.45937,-13.522686 - parent: 0 - type: Transform -- uid: 1529 - type: Table - components: - - pos: -16.5,-14.5 - parent: 0 - type: Transform -- uid: 1530 - type: Table - components: - - pos: -16.5,-13.5 - parent: 0 - type: Transform -- uid: 1531 - type: Table - components: - - pos: -16.5,-12.5 - parent: 0 - type: Transform -- uid: 1532 - type: OxygenTankFilled - components: - - pos: -16.506245,-14.460186 - parent: 0 - type: Transform -- uid: 1533 - type: OxygenTankFilled - components: - - pos: -16.506245,-14.163311 - parent: 0 - type: Transform -- uid: 1534 - type: PowerCellRecharger - components: - - pos: -16.5,-12.5 - parent: 0 - type: Transform -- uid: 1535 - type: CrowbarRed - components: - - pos: -16.465528,-13.795485 - parent: 0 - type: Transform -- uid: 1536 - type: WeldingFuelTankFull - components: - - pos: -16.5,-15.5 - parent: 0 - type: Transform -- uid: 1537 - type: ExtinguisherCabinetFilled - components: - - pos: -19.5,-11.5 - parent: 0 - type: Transform -- uid: 1538 - type: ExtinguisherCabinetFilled - components: - - pos: -19.5,-10.5 - parent: 0 - type: Transform -- uid: 1539 - type: FireExtinguisher - components: - - pos: -16.66095,-13.180607 - parent: 0 - type: Transform -- uid: 1540 - type: FireExtinguisher - components: - - pos: -16.395325,-13.102482 - parent: 0 - type: Transform -- uid: 1541 - type: ClosetMaintenanceFilledRandom - components: - - pos: -17.5,6.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1542 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1543 - type: ShuttersNormal - components: - - pos: -18.5,4.5 - parent: 0 - type: Transform -- uid: 1544 - type: ShuttersNormal - components: - - pos: -18.5,5.5 - parent: 0 - type: Transform -- uid: 1545 - type: Table - components: - - pos: -17.5,3.5 - parent: 0 - type: Transform -- uid: 1546 - type: Rack - components: - - pos: -15.5,3.5 - parent: 0 - type: Transform -- uid: 1547 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -17.5,4.5 - parent: 0 - type: Transform -- uid: 1548 - type: CableMVStack - components: - - pos: -15.534359,6.6052203 - parent: 0 - type: Transform -- uid: 1549 - type: SheetSteel - components: - - pos: -15.518734,6.6677203 - parent: 0 - type: Transform -- uid: 1550 - type: CableApcStack - components: - - pos: -16.596859,6.7145953 - parent: 0 - type: Transform -- uid: 1551 - type: CableHVStack - components: - - pos: -16.471859,6.5739703 - parent: 0 - type: Transform -- uid: 1552 - type: Wrench - components: - - pos: -15.534359,3.54272 - parent: 0 - type: Transform -- uid: 1553 - type: Screwdriver - components: - - pos: -15.518734,3.527095 - parent: 0 - type: Transform -- uid: 1554 - type: HandLabeler - components: - - pos: -17.409359,3.57397 - parent: 0 - type: Transform -- uid: 1555 - type: TableWood - components: - - pos: -3.5,-13.5 - parent: 0 - type: Transform -- uid: 1556 - type: Bookshelf - components: - - pos: -0.5,-13.5 - parent: 0 - type: Transform -- uid: 1557 - type: Bookshelf - components: - - pos: -4.5,-13.5 - parent: 0 - type: Transform -- uid: 1558 - type: TableWood - components: - - pos: -1.5,-13.5 - parent: 0 - type: Transform -- uid: 1559 - type: TableWood - components: - - pos: -6.5,-16.5 - parent: 0 - type: Transform -- uid: 1560 - type: TableWood - components: - - pos: -7.5,-16.5 - parent: 0 - type: Transform -- uid: 1561 - type: TableWood - components: - - pos: -7.5,-15.5 - parent: 0 - type: Transform -- uid: 1562 - type: TableWood - components: - - pos: 1.5,-16.5 - parent: 0 - type: Transform -- uid: 1563 - type: TableWood - components: - - pos: 2.5,-16.5 - parent: 0 - type: Transform -- uid: 1564 - type: TableWood - components: - - pos: 2.5,-15.5 - parent: 0 - type: Transform -- uid: 1565 - type: TableWood - components: - - pos: -4.5,-16.5 - parent: 0 - type: Transform -- uid: 1566 - type: TableWood - components: - - pos: -3.5,-16.5 - parent: 0 - type: Transform -- uid: 1567 - type: TableWood - components: - - pos: -2.5,-16.5 - parent: 0 - type: Transform -- uid: 1568 - type: TableWood - components: - - pos: -1.5,-16.5 - parent: 0 - type: Transform -- uid: 1569 - type: TableWood - components: - - pos: -0.5,-16.5 - parent: 0 - type: Transform -- uid: 1570 - type: TableWood - components: - - pos: -3.5,-15.5 - parent: 0 - type: Transform -- uid: 1571 - type: TableWood - components: - - pos: -1.5,-15.5 - parent: 0 - type: Transform -- uid: 1572 - type: WallReinforced - components: - - pos: -8.5,-16.5 - parent: 0 - type: Transform -- uid: 1573 - type: WallReinforced - components: - - pos: -8.5,-15.5 - parent: 0 - type: Transform -- uid: 1574 - type: WallReinforced - components: - - pos: -8.5,-14.5 - parent: 0 - type: Transform -- uid: 1575 - type: WallReinforced - components: - - pos: -8.5,-13.5 - parent: 0 - type: Transform -- uid: 1576 - type: ShuttersNormalOpen - components: - - pos: -5.5,-12.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver -- uid: 1577 - type: ShuttersNormalOpen - components: - - pos: -7.5,-12.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2050 - type: SignalReceiver -- uid: 1578 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -4.5,-11.5 - parent: 0 - type: Transform -- uid: 1579 - type: WallReinforced - components: - - pos: 3.5,-13.5 - parent: 0 - type: Transform -- uid: 1580 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1581 - type: GasVentScrubber - components: - - pos: -16.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1582 - type: GasPipeStraight - components: - - pos: -16.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1583 - type: GasPipeStraight - components: - - pos: -16.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1584 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -16.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1585 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1586 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1587 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1588 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1589 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1590 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1591 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1592 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1593 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1594 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1595 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1596 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1597 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1598 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1599 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1600 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1601 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1602 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1603 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1604 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1605 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1606 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1607 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -0.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1608 - type: GasPipeBend - components: - - pos: -4.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1609 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1610 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1611 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1612 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 0 - type: Transform -- uid: 1613 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-11.5 - parent: 0 - type: Transform -- uid: 1614 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-10.5 - parent: 0 - type: Transform -- uid: 1615 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-9.5 - parent: 0 - type: Transform -- uid: 1616 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-10.5 - parent: 0 - type: Transform -- uid: 1617 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-11.5 - parent: 0 - type: Transform -- uid: 1618 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 0 - type: Transform -- uid: 1619 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-17.5 - parent: 0 - type: Transform -- uid: 1620 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-17.5 - parent: 0 - type: Transform -- uid: 1621 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-17.5 - parent: 0 - type: Transform -- uid: 1622 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-17.5 - parent: 0 - type: Transform -- uid: 1623 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-17.5 - parent: 0 - type: Transform -- uid: 1624 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 0 - type: Transform -- uid: 1625 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-12.5 - parent: 0 - type: Transform -- uid: 1626 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 0 - type: Transform -- uid: 1627 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 0 - type: Transform -- uid: 1628 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 0 - type: Transform -- uid: 1629 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-10.5 - parent: 0 - type: Transform -- uid: 1630 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 0 - type: Transform -- uid: 1631 - type: WallReinforced - components: - - pos: -9.5,-12.5 - parent: 0 - type: Transform -- uid: 1632 - type: KitchenMicrowave - components: - - pos: -4.5,-16.5 - parent: 0 - type: Transform -- uid: 1633 - type: WallSolid - components: - - pos: -10.5,-16.5 - parent: 0 - type: Transform -- uid: 1634 - type: CableMV - components: - - pos: -12.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1635 - type: CableMV - components: - - pos: -10.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1636 - type: WallReinforced - components: - - pos: -11.5,-9.5 - parent: 0 - type: Transform -- uid: 1637 - type: WallReinforced - components: - - pos: -11.5,-11.5 - parent: 0 - type: Transform -- uid: 1638 - type: WallReinforced - components: - - pos: -11.5,-10.5 - parent: 0 - type: Transform -- uid: 1639 - type: CableMV - components: - - pos: -10.5,-8.5 - parent: 0 - type: Transform -- uid: 1640 - type: CableHV - components: - - pos: -10.5,-8.5 - parent: 0 - type: Transform -- uid: 1641 - type: APCBasic - components: - - pos: -15.5,-17.5 - parent: 0 - type: Transform -- uid: 1642 - type: APCBasic - components: - - pos: -0.5,-12.5 - parent: 0 - type: Transform -- uid: 1643 - type: CableHV - components: - - pos: -10.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1644 - type: CableHV - components: - - pos: -10.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1645 - type: CableHV - components: - - pos: -10.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1646 - type: PoweredSmallLight - components: - - pos: -9.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1647 - type: WallReinforced - components: - - pos: -9.5,-9.5 - parent: 0 - type: Transform -- uid: 1648 - type: WallReinforced - components: - - pos: -10.5,-12.5 - parent: 0 - type: Transform -- uid: 1649 - type: WallReinforced - components: - - pos: -11.5,-12.5 - parent: 0 - type: Transform -- uid: 1650 - type: CableApcExtension - components: - - pos: -12.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1651 - type: ComputerTelevision - components: - - pos: -0.5,-16.5 - parent: 0 - type: Transform -- uid: 1652 - type: CableHV - components: - - pos: -10.5,-7.5 - parent: 0 - type: Transform -- uid: 1653 - type: CableHV - components: - - pos: -9.5,-7.5 - parent: 0 - type: Transform -- uid: 1654 - type: CableHV - components: - - pos: -9.5,-6.5 - parent: 0 - type: Transform -- uid: 1655 - type: CableHV - components: - - pos: -9.5,-5.5 - parent: 0 - type: Transform -- uid: 1656 - type: CableHV - components: - - pos: -9.5,-4.5 - parent: 0 - type: Transform -- uid: 1657 - type: CableHV - components: - - pos: -9.5,-3.5 - parent: 0 - type: Transform -- uid: 1658 - type: CableHV - components: - - pos: -9.5,-2.5 - parent: 0 - type: Transform -- uid: 1659 - type: CableHV - components: - - pos: -9.5,-1.5 - parent: 0 - type: Transform -- uid: 1660 - type: CableHV - components: - - pos: -9.5,-0.5 - parent: 0 - type: Transform -- uid: 1661 - type: CableHV - components: - - pos: -9.5,0.5 - parent: 0 - type: Transform -- uid: 1662 - type: WallSolid - components: - - pos: 14.5,-17.5 - parent: 0 - type: Transform -- uid: 1663 - type: PhoneInstrument - components: - - pos: -3.5743222,-13.352673 - parent: 0 - type: Transform -- uid: 1664 - type: ReinforcedWindow - components: - - pos: 5.5,-9.5 - parent: 0 - type: Transform -- uid: 1665 - type: Grille - components: - - pos: 7.5,-10.5 - parent: 0 - type: Transform -- uid: 1666 - type: ReinforcedWindow - components: - - pos: 11.5,-9.5 - parent: 0 - type: Transform -- uid: 1667 - type: ReinforcedWindow - components: - - pos: 7.5,-10.5 - parent: 0 - type: Transform -- uid: 1668 - type: HighSecCommandLocked - components: - - name: Vault - type: MetaData - - pos: 8.5,-11.5 - parent: 0 - type: Transform -- uid: 1669 - type: ReinforcedWindow - components: - - pos: 9.5,-10.5 - parent: 0 - type: Transform -- uid: 1670 - type: WallSolid - components: - - pos: 14.5,-9.5 - parent: 0 - type: Transform -- uid: 1671 - type: LockerElectricalSuppliesFilled - components: - - pos: -9.5,-11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1672 - type: SignElectricalMed - components: - - pos: -9.5,-9.5 - parent: 0 - type: Transform -- uid: 1673 - type: AirlockMaintLocked - components: - - pos: -12.5,-9.5 - parent: 0 - type: Transform -- uid: 1674 - type: AirlockMaintLocked - components: - - pos: -12.5,-17.5 - parent: 0 - type: Transform -- uid: 1675 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1676 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1677 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1678 - type: GasPipeTJunction - components: - - pos: 15.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1679 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1680 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1681 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1682 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1683 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1684 - type: CableMV - components: - - pos: -10.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1685 - type: CableMV - components: - - pos: -10.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1686 - type: SubstationBasic - components: - - name: South Center Substation - type: MetaData - - pos: -10.5,-11.5 - parent: 0 - type: Transform -- uid: 1687 - type: AirlockEngineeringLocked - components: - - pos: -10.5,-9.5 - parent: 0 - type: Transform -- uid: 1688 - type: CableMV - components: - - pos: -11.5,-8.5 - parent: 0 - type: Transform -- uid: 1689 - type: CableMV - components: - - pos: -12.5,-8.5 - parent: 0 - type: Transform -- uid: 1690 - type: CableMV - components: - - pos: -12.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1691 - type: CableMV - components: - - pos: -12.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1692 - type: CableMV - components: - - pos: -12.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1693 - type: CableMV - components: - - pos: -12.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1694 - type: CableMV - components: - - pos: -12.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1695 - type: CableMV - components: - - pos: -12.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1696 - type: CableMV - components: - - pos: -12.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1697 - type: CableMV - components: - - pos: -12.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1698 - type: WallSolid - components: - - pos: -11.5,-17.5 - parent: 0 - type: Transform -- uid: 1699 - type: CableMV - components: - - pos: -12.5,-18.5 - parent: 0 - type: Transform -- uid: 1700 - type: CableMV - components: - - pos: -13.5,-18.5 - parent: 0 - type: Transform -- uid: 1701 - type: CableMV - components: - - pos: -14.5,-18.5 - parent: 0 - type: Transform -- uid: 1702 - type: CableMV - components: - - pos: -15.5,-18.5 - parent: 0 - type: Transform -- uid: 1703 - type: CableMV - components: - - pos: -15.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1704 - type: CableMV - components: - - pos: -9.5,-8.5 - parent: 0 - type: Transform -- uid: 1705 - type: CableMV - components: - - pos: -8.5,-8.5 - parent: 0 - type: Transform -- uid: 1706 - type: CableMV - components: - - pos: -7.5,-8.5 - parent: 0 - type: Transform -- uid: 1707 - type: CableMV - components: - - pos: -6.5,-8.5 - parent: 0 - type: Transform -- uid: 1708 - type: CableMV - components: - - pos: -5.5,-8.5 - parent: 0 - type: Transform -- uid: 1709 - type: CableMV - components: - - pos: -4.5,-8.5 - parent: 0 - type: Transform -- uid: 1710 - type: CableMV - components: - - pos: -3.5,-8.5 - parent: 0 - type: Transform -- uid: 1711 - type: CableMV - components: - - pos: -2.5,-8.5 - parent: 0 - type: Transform -- uid: 1712 - type: CableMV - components: - - pos: -1.5,-8.5 - parent: 0 - type: Transform -- uid: 1713 - type: CableMV - components: - - pos: -0.5,-8.5 - parent: 0 - type: Transform -- uid: 1714 - type: CableMV - components: - - pos: -0.5,-9.5 - parent: 0 - type: Transform -- uid: 1715 - type: CableMV - components: - - pos: -0.5,-10.5 - parent: 0 - type: Transform -- uid: 1716 - type: CableMV - components: - - pos: -0.5,-11.5 - parent: 0 - type: Transform -- uid: 1717 - type: CableMV - components: - - pos: -0.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1718 - type: CableApcExtension - components: - - pos: -15.5,-16.5 - parent: 0 - type: Transform -- uid: 1719 - type: CableApcExtension - components: - - pos: -15.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1720 - type: CableApcExtension - components: - - pos: -15.5,-15.5 - parent: 0 - type: Transform -- uid: 1721 - type: CableApcExtension - components: - - pos: -15.5,-14.5 - parent: 0 - type: Transform -- uid: 1722 - type: CableApcExtension - components: - - pos: -15.5,-13.5 - parent: 0 - type: Transform -- uid: 1723 - type: CableApcExtension - components: - - pos: -15.5,-12.5 - parent: 0 - type: Transform -- uid: 1724 - type: CableApcExtension - components: - - pos: -15.5,-11.5 - parent: 0 - type: Transform -- uid: 1725 - type: CableApcExtension - components: - - pos: -15.5,-10.5 - parent: 0 - type: Transform -- uid: 1726 - type: CableApcExtension - components: - - pos: -15.5,-9.5 - parent: 0 - type: Transform -- uid: 1727 - type: CableApcExtension - components: - - pos: -15.5,-8.5 - parent: 0 - type: Transform -- uid: 1728 - type: CableApcExtension - components: - - pos: -16.5,-8.5 - parent: 0 - type: Transform -- uid: 1729 - type: CableApcExtension - components: - - pos: -17.5,-8.5 - parent: 0 - type: Transform -- uid: 1730 - type: CableApcExtension - components: - - pos: -18.5,-8.5 - parent: 0 - type: Transform -- uid: 1731 - type: CableApcExtension - components: - - pos: -19.5,-8.5 - parent: 0 - type: Transform -- uid: 1732 - type: CableApcExtension - components: - - pos: -20.5,-8.5 - parent: 0 - type: Transform -- uid: 1733 - type: CableApcExtension - components: - - pos: -14.5,-8.5 - parent: 0 - type: Transform -- uid: 1734 - type: CableApcExtension - components: - - pos: -13.5,-8.5 - parent: 0 - type: Transform -- uid: 1735 - type: CableApcExtension - components: - - pos: -12.5,-8.5 - parent: 0 - type: Transform -- uid: 1736 - type: CableApcExtension - components: - - pos: -11.5,-8.5 - parent: 0 - type: Transform -- uid: 1737 - type: CableApcExtension - components: - - pos: -10.5,-8.5 - parent: 0 - type: Transform -- uid: 1738 - type: CableApcExtension - components: - - pos: -9.5,-8.5 - parent: 0 - type: Transform -- uid: 1739 - type: CableApcExtension - components: - - pos: -8.5,-8.5 - parent: 0 - type: Transform -- uid: 1740 - type: CableApcExtension - components: - - pos: -7.5,-8.5 - parent: 0 - type: Transform -- uid: 1741 - type: CableApcExtension - components: - - pos: -6.5,-8.5 - parent: 0 - type: Transform -- uid: 1742 - type: CableApcExtension - components: - - pos: -15.5,-18.5 - parent: 0 - type: Transform -- uid: 1743 - type: CableApcExtension - components: - - pos: -15.5,-19.5 - parent: 0 - type: Transform -- uid: 1744 - type: CableApcExtension - components: - - pos: -16.5,-16.5 - parent: 0 - type: Transform -- uid: 1745 - type: CableApcExtension - components: - - pos: -17.5,-16.5 - parent: 0 - type: Transform -- uid: 1746 - type: CableApcExtension - components: - - pos: -17.5,-15.5 - parent: 0 - type: Transform -- uid: 1747 - type: CableApcExtension - components: - - pos: -17.5,-14.5 - parent: 0 - type: Transform -- uid: 1748 - type: CableApcExtension - components: - - pos: -17.5,-13.5 - parent: 0 - type: Transform -- uid: 1749 - type: CableApcExtension - components: - - pos: -17.5,-12.5 - parent: 0 - type: Transform -- uid: 1750 - type: CableApcExtension - components: - - pos: -17.5,-11.5 - parent: 0 - type: Transform -- uid: 1751 - type: CableApcExtension - components: - - pos: -14.5,-19.5 - parent: 0 - type: Transform -- uid: 1752 - type: CableApcExtension - components: - - pos: -13.5,-19.5 - parent: 0 - type: Transform -- uid: 1753 - type: CableApcExtension - components: - - pos: -12.5,-19.5 - parent: 0 - type: Transform -- uid: 1754 - type: CableApcExtension - components: - - pos: -12.5,-18.5 - parent: 0 - type: Transform -- uid: 1755 - type: WallSolid - components: - - pos: -11.5,-16.5 - parent: 0 - type: Transform -- uid: 1756 - type: CableApcExtension - components: - - pos: -12.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1757 - type: CableApcExtension - components: - - pos: -12.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1758 - type: CableApcExtension - components: - - pos: -12.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1759 - type: CableApcExtension - components: - - pos: -12.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1760 - type: CableApcExtension - components: - - pos: -12.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1761 - type: CableApcExtension - components: - - pos: -12.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1762 - type: CableApcExtension - components: - - pos: -11.5,-19.5 - parent: 0 - type: Transform -- uid: 1763 - type: CableApcExtension - components: - - pos: -10.5,-19.5 - parent: 0 - type: Transform -- uid: 1764 - type: CableApcExtension - components: - - pos: -9.5,-19.5 - parent: 0 - type: Transform -- uid: 1765 - type: CableApcExtension - components: - - pos: -8.5,-19.5 - parent: 0 - type: Transform -- uid: 1766 - type: CableApcExtension - components: - - pos: -7.5,-19.5 - parent: 0 - type: Transform -- uid: 1767 - type: CableApcExtension - components: - - pos: -6.5,-19.5 - parent: 0 - type: Transform -- uid: 1768 - type: CableApcExtension - components: - - pos: -0.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1769 - type: CableApcExtension - components: - - pos: -0.5,-11.5 - parent: 0 - type: Transform -- uid: 1770 - type: CableApcExtension - components: - - pos: -0.5,-10.5 - parent: 0 - type: Transform -- uid: 1771 - type: CableApcExtension - components: - - pos: -0.5,-9.5 - parent: 0 - type: Transform -- uid: 1772 - type: CableApcExtension - components: - - pos: -0.5,-8.5 - parent: 0 - type: Transform -- uid: 1773 - type: PottedPlantRandom - components: - - pos: -5.5,-11.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1774 - type: CableApcExtension - components: - - pos: -0.5,-7.5 - parent: 0 - type: Transform -- uid: 1775 - type: CableApcExtension - components: - - pos: -1.5,-7.5 - parent: 0 - type: Transform -- uid: 1776 - type: CableApcExtension - components: - - pos: -2.5,-7.5 - parent: 0 - type: Transform -- uid: 1777 - type: CableApcExtension - components: - - pos: -3.5,-7.5 - parent: 0 - type: Transform -- uid: 1778 - type: CableApcExtension - components: - - pos: -4.5,-7.5 - parent: 0 - type: Transform -- uid: 1779 - type: CableApcExtension - components: - - pos: 0.5,-8.5 - parent: 0 - type: Transform -- uid: 1780 - type: CableApcExtension - components: - - pos: 1.5,-8.5 - parent: 0 - type: Transform -- uid: 1781 - type: CableApcExtension - components: - - pos: 2.5,-8.5 - parent: 0 - type: Transform -- uid: 1782 - type: CableApcExtension - components: - - pos: 3.5,-8.5 - parent: 0 - type: Transform -- uid: 1783 - type: CableApcExtension - components: - - pos: 4.5,-8.5 - parent: 0 - type: Transform -- uid: 1784 - type: CableApcExtension - components: - - pos: 9.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1785 - type: PosterContrabandNuclearDeviceInformational - components: - - pos: 11.5,-13.5 - parent: 0 - type: Transform -- uid: 1786 - type: CableApcExtension - components: - - pos: 7.5,-8.5 - parent: 0 - type: Transform -- uid: 1787 - type: CableApcExtension - components: - - pos: 8.5,-8.5 - parent: 0 - type: Transform -- uid: 1788 - type: CableApcExtension - components: - - pos: 9.5,-8.5 - parent: 0 - type: Transform -- uid: 1789 - type: CableApcExtension - components: - - pos: 10.5,-8.5 - parent: 0 - type: Transform -- uid: 1790 - type: CableApcExtension - components: - - pos: -0.5,-13.5 - parent: 0 - type: Transform -- uid: 1791 - type: CableApcExtension - components: - - pos: -0.5,-14.5 - parent: 0 - type: Transform -- uid: 1792 - type: CableApcExtension - components: - - pos: -1.5,-14.5 - parent: 0 - type: Transform -- uid: 1793 - type: CableApcExtension - components: - - pos: -2.5,-14.5 - parent: 0 - type: Transform -- uid: 1794 - type: CableApcExtension - components: - - pos: -3.5,-14.5 - parent: 0 - type: Transform -- uid: 1795 - type: CableApcExtension - components: - - pos: -4.5,-14.5 - parent: 0 - type: Transform -- uid: 1796 - type: CableApcExtension - components: - - pos: -5.5,-14.5 - parent: 0 - type: Transform -- uid: 1797 - type: CableApcExtension - components: - - pos: -6.5,-14.5 - parent: 0 - type: Transform -- uid: 1798 - type: CableApcExtension - components: - - pos: -7.5,-14.5 - parent: 0 - type: Transform -- uid: 1799 - type: CableApcExtension - components: - - pos: 0.5,-14.5 - parent: 0 - type: Transform -- uid: 1800 - type: CableApcExtension - components: - - pos: 1.5,-14.5 - parent: 0 - type: Transform -- uid: 1801 - type: CableApcExtension - components: - - pos: 0.5,-15.5 - parent: 0 - type: Transform -- uid: 1802 - type: CableApcExtension - components: - - pos: 0.5,-16.5 - parent: 0 - type: Transform -- uid: 1803 - type: CableApcExtension - components: - - pos: -5.5,-15.5 - parent: 0 - type: Transform -- uid: 1804 - type: CableApcExtension - components: - - pos: -5.5,-16.5 - parent: 0 - type: Transform -- uid: 1805 - type: WallReinforced - components: - - pos: 3.5,-14.5 - parent: 0 - type: Transform -- uid: 1806 - type: WallReinforced - components: - - pos: 4.5,-17.5 - parent: 0 - type: Transform -- uid: 1807 - type: ReinforcedWindow - components: - - pos: 13.5,-11.5 - parent: 0 - type: Transform -- uid: 1808 - type: ReinforcedWindow - components: - - pos: 13.5,-15.5 - parent: 0 - type: Transform -- uid: 1809 - type: WallReinforced - components: - - pos: 7.5,-17.5 - parent: 0 - type: Transform -- uid: 1810 - type: WallReinforced - components: - - pos: 8.5,-17.5 - parent: 0 - type: Transform -- uid: 1811 - type: WallReinforced - components: - - pos: 9.5,-17.5 - parent: 0 - type: Transform -- uid: 1812 - type: ReinforcedWindow - components: - - pos: 11.5,-17.5 - parent: 0 - type: Transform -- uid: 1813 - type: ReinforcedWindow - components: - - pos: 10.5,-17.5 - parent: 0 - type: Transform -- uid: 1814 - type: WallReinforced - components: - - pos: 12.5,-17.5 - parent: 0 - type: Transform -- uid: 1815 - type: WallReinforced - components: - - pos: 13.5,-17.5 - parent: 0 - type: Transform -- uid: 1816 - type: WallReinforced - components: - - pos: 5.5,-15.5 - parent: 0 - type: Transform -- uid: 1817 - type: WallReinforced - components: - - pos: 5.5,-14.5 - parent: 0 - type: Transform -- uid: 1818 - type: WallReinforced - components: - - pos: 5.5,-13.5 - parent: 0 - type: Transform -- uid: 1819 - type: WallReinforced - components: - - pos: 5.5,-12.5 - parent: 0 - type: Transform -- uid: 1820 - type: WallReinforced - components: - - pos: 5.5,-11.5 - parent: 0 - type: Transform -- uid: 1821 - type: WallReinforced - components: - - pos: 6.5,-15.5 - parent: 0 - type: Transform -- uid: 1822 - type: WallReinforced - components: - - pos: 7.5,-15.5 - parent: 0 - type: Transform -- uid: 1823 - type: WallReinforced - components: - - pos: 8.5,-15.5 - parent: 0 - type: Transform -- uid: 1824 - type: WallReinforced - components: - - pos: 9.5,-15.5 - parent: 0 - type: Transform -- uid: 1825 - type: WallReinforced - components: - - pos: 10.5,-15.5 - parent: 0 - type: Transform -- uid: 1826 - type: WallReinforced - components: - - pos: 11.5,-15.5 - parent: 0 - type: Transform -- uid: 1827 - type: WallReinforced - components: - - pos: 11.5,-14.5 - parent: 0 - type: Transform -- uid: 1828 - type: WallReinforced - components: - - pos: 11.5,-13.5 - parent: 0 - type: Transform -- uid: 1829 - type: WallReinforced - components: - - pos: 11.5,-12.5 - parent: 0 - type: Transform -- uid: 1830 - type: WallReinforced - components: - - pos: 11.5,-11.5 - parent: 0 - type: Transform -- uid: 1831 - type: WallReinforced - components: - - pos: 10.5,-11.5 - parent: 0 - type: Transform -- uid: 1832 - type: WallReinforced - components: - - pos: 9.5,-11.5 - parent: 0 - type: Transform -- uid: 1833 - type: WallReinforced - components: - - pos: 7.5,-11.5 - parent: 0 - type: Transform -- uid: 1834 - type: WallReinforced - components: - - pos: 6.5,-11.5 - parent: 0 - type: Transform -- uid: 1835 - type: ReinforcedWindow - components: - - pos: 9.5,-9.5 - parent: 0 - type: Transform -- uid: 1836 - type: ReinforcedWindow - components: - - pos: 7.5,-9.5 - parent: 0 - type: Transform -- uid: 1837 - type: WallReinforced - components: - - pos: 4.5,-9.5 - parent: 0 - type: Transform -- uid: 1838 - type: WallReinforced - components: - - pos: 12.5,-9.5 - parent: 0 - type: Transform -- uid: 1839 - type: WallReinforced - components: - - pos: 13.5,-9.5 - parent: 0 - type: Transform -- uid: 1840 - type: ReinforcedWindow - components: - - pos: 13.5,-16.5 - parent: 0 - type: Transform -- uid: 1841 - type: WallReinforced - components: - - pos: 13.5,-12.5 - parent: 0 - type: Transform -- uid: 1842 - type: WallReinforced - components: - - pos: 13.5,-14.5 - parent: 0 - type: Transform -- uid: 1843 - type: WallReinforced - components: - - pos: 13.5,-13.5 - parent: 0 - type: Transform -- uid: 1844 - type: ReinforcedWindow - components: - - pos: 6.5,-17.5 - parent: 0 - type: Transform -- uid: 1845 - type: ReinforcedWindow - components: - - pos: 5.5,-17.5 - parent: 0 - type: Transform -- uid: 1846 - type: ReinforcedWindow - components: - - pos: 13.5,-10.5 - parent: 0 - type: Transform -- uid: 1847 - type: Grille - components: - - pos: 6.5,-17.5 - parent: 0 - type: Transform -- uid: 1848 - type: Grille - components: - - pos: 5.5,-17.5 - parent: 0 - type: Transform -- uid: 1849 - type: Grille - components: - - pos: 3.5,-16.5 - parent: 0 - type: Transform -- uid: 1850 - type: Grille - components: - - pos: 3.5,-15.5 - parent: 0 - type: Transform -- uid: 1851 - type: Grille - components: - - pos: 6.5,-9.5 - parent: 0 - type: Transform -- uid: 1852 - type: ReinforcedWindow - components: - - pos: 6.5,-9.5 - parent: 0 - type: Transform -- uid: 1853 - type: Grille - components: - - pos: 5.5,-9.5 - parent: 0 - type: Transform -- uid: 1854 - type: Grille - components: - - pos: 9.5,-10.5 - parent: 0 - type: Transform -- uid: 1855 - type: Grille - components: - - pos: 10.5,-9.5 - parent: 0 - type: Transform -- uid: 1856 - type: Grille - components: - - pos: 11.5,-9.5 - parent: 0 - type: Transform -- uid: 1857 - type: Grille - components: - - pos: 13.5,-10.5 - parent: 0 - type: Transform -- uid: 1858 - type: Grille - components: - - pos: 13.5,-11.5 - parent: 0 - type: Transform -- uid: 1859 - type: Grille - components: - - pos: 13.5,-15.5 - parent: 0 - type: Transform -- uid: 1860 - type: Grille - components: - - pos: 13.5,-16.5 - parent: 0 - type: Transform -- uid: 1861 - type: Grille - components: - - pos: 11.5,-17.5 - parent: 0 - type: Transform -- uid: 1862 - type: Grille - components: - - pos: 10.5,-17.5 - parent: 0 - type: Transform -- uid: 1863 - type: Grille - components: - - pos: 7.5,-9.5 - parent: 0 - type: Transform -- uid: 1864 - type: ReinforcedWindow - components: - - pos: 10.5,-9.5 - parent: 0 - type: Transform -- uid: 1865 - type: Grille - components: - - pos: 9.5,-9.5 - parent: 0 - type: Transform -- uid: 1866 - type: AirlockGlass - components: - - pos: 8.5,-9.5 - parent: 0 - type: Transform -- uid: 1867 - type: CableApcExtension - components: - - pos: 8.5,-9.5 - parent: 0 - type: Transform -- uid: 1868 - type: CableApcExtension - components: - - pos: 8.5,-10.5 - parent: 0 - type: Transform -- uid: 1869 - type: CableApcExtension - components: - - pos: 8.5,-11.5 - parent: 0 - type: Transform -- uid: 1870 - type: CableApcExtension - components: - - pos: 8.5,-12.5 - parent: 0 - type: Transform -- uid: 1871 - type: CableApcExtension - components: - - pos: 8.5,-13.5 - parent: 0 - type: Transform -- uid: 1872 - type: CableApcExtension - components: - - pos: 8.5,-14.5 - parent: 0 - type: Transform -- uid: 1873 - type: CableApcExtension - components: - - pos: 7.5,-13.5 - parent: 0 - type: Transform -- uid: 1874 - type: CableApcExtension - components: - - pos: 9.5,-13.5 - parent: 0 - type: Transform -- uid: 1875 - type: CableMV - components: - - pos: 0.5,-8.5 - parent: 0 - type: Transform -- uid: 1876 - type: CableMV - components: - - pos: 1.5,-8.5 - parent: 0 - type: Transform -- uid: 1877 - type: CableMV - components: - - pos: 2.5,-8.5 - parent: 0 - type: Transform -- uid: 1878 - type: CableMV - components: - - pos: 3.5,-8.5 - parent: 0 - type: Transform -- uid: 1879 - type: CableMV - components: - - pos: 4.5,-8.5 - parent: 0 - type: Transform -- uid: 1880 - type: CableMV - components: - - pos: 5.5,-8.5 - parent: 0 - type: Transform -- uid: 1881 - type: CableMV - components: - - pos: 5.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1882 - type: CableMV - components: - - pos: 6.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1883 - type: CableMV - components: - - pos: 7.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1884 - type: CableMV - components: - - pos: 7.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1885 - type: CableMV - components: - - pos: 8.5,-10.5 - parent: 0 - type: Transform -- uid: 1886 - type: CableMV - components: - - pos: 9.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1887 - type: CableMV - components: - - pos: 9.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1888 - type: CableMV - components: - - pos: 10.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1889 - type: CableMV - components: - - pos: 11.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1890 - type: CableMV - components: - - pos: 11.5,-8.5 - parent: 0 - type: Transform -- uid: 1891 - type: CableMV - components: - - pos: 12.5,-8.5 - parent: 0 - type: Transform -- uid: 1892 - type: CableMV - components: - - pos: 13.5,-8.5 - parent: 0 - type: Transform -- uid: 1893 - type: CableMV - components: - - pos: 14.5,-8.5 - parent: 0 - type: Transform -- uid: 1894 - type: CableMV - components: - - pos: 15.5,-8.5 - parent: 0 - type: Transform -- uid: 1895 - type: CableMV - components: - - pos: 15.5,-9.5 - parent: 0 - type: Transform -- uid: 1896 - type: CableMV - components: - - pos: 15.5,-10.5 - parent: 0 - type: Transform -- uid: 1897 - type: CableMV - components: - - pos: 14.5,-10.5 - parent: 0 - type: Transform -- uid: 1898 - type: CableMV - components: - - pos: 13.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1899 - type: CableMV - components: - - pos: 13.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1900 - type: CableMV - components: - - pos: 14.5,-11.5 - parent: 0 - type: Transform -- uid: 1901 - type: CableMV - components: - - pos: 14.5,-12.5 - parent: 0 - type: Transform -- uid: 1902 - type: CableMV - components: - - pos: 14.5,-13.5 - parent: 0 - type: Transform -- uid: 1903 - type: CableMV - components: - - pos: 14.5,-14.5 - parent: 0 - type: Transform -- uid: 1904 - type: CableMV - components: - - pos: 14.5,-15.5 - parent: 0 - type: Transform -- uid: 1905 - type: CableMV - components: - - pos: 13.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1906 - type: CableMV - components: - - pos: 13.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1907 - type: CableMV - components: - - pos: -0.5,-13.5 - parent: 0 - type: Transform -- uid: 1908 - type: CableMV - components: - - pos: -0.5,-14.5 - parent: 0 - type: Transform -- uid: 1909 - type: CableMV - components: - - pos: -0.5,-15.5 - parent: 0 - type: Transform -- uid: 1910 - type: CableMV - components: - - pos: -0.5,-16.5 - parent: 0 - type: Transform -- uid: 1911 - type: CableMV - components: - - pos: 0.5,-16.5 - parent: 0 - type: Transform -- uid: 1912 - type: CableMV - components: - - pos: 0.5,-17.5 - parent: 0 - type: Transform -- uid: 1913 - type: CableMV - components: - - pos: 0.5,-18.5 - parent: 0 - type: Transform -- uid: 1914 - type: CableMV - components: - - pos: 1.5,-18.5 - parent: 0 - type: Transform -- uid: 1915 - type: CableMV - components: - - pos: 2.5,-18.5 - parent: 0 - type: Transform -- uid: 1916 - type: CableMV - components: - - pos: 3.5,-18.5 - parent: 0 - type: Transform -- uid: 1917 - type: CableMV - components: - - pos: 4.5,-18.5 - parent: 0 - type: Transform -- uid: 1918 - type: CableMV - components: - - pos: 5.5,-18.5 - parent: 0 - type: Transform -- uid: 1919 - type: CableMV - components: - - pos: 5.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1920 - type: CableMV - components: - - pos: 6.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1921 - type: CableMV - components: - - pos: 6.5,-18.5 - parent: 0 - type: Transform -- uid: 1922 - type: CableMV - components: - - pos: 7.5,-18.5 - parent: 0 - type: Transform -- uid: 1923 - type: CableMV - components: - - pos: 8.5,-18.5 - parent: 0 - type: Transform -- uid: 1924 - type: CableMV - components: - - pos: 9.5,-18.5 - parent: 0 - type: Transform -- uid: 1925 - type: CableMV - components: - - pos: 10.5,-18.5 - parent: 0 - type: Transform -- uid: 1926 - type: CableMV - components: - - pos: 10.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1927 - type: CableMV - components: - - pos: 11.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1928 - type: CableMV - components: - - pos: 1.5,-16.5 - parent: 0 - type: Transform -- uid: 1929 - type: CableMV - components: - - pos: 2.5,-16.5 - parent: 0 - type: Transform -- uid: 1930 - type: CableMV - components: - - pos: 3.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1931 - type: CableMV - components: - - pos: 3.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1932 - type: LockerFreezer - components: - - pos: 10.5,-12.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1942 - - 2478 - - 1938 - type: ContainerContainer -- uid: 1933 - type: NuclearBomb - components: - - pos: 8.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 1934 - type: NuclearBombKeg - components: - - pos: -2.5,-16.5 - parent: 0 - type: Transform -- uid: 1935 - type: TableReinforced - components: - - pos: 6.5,-14.5 - parent: 0 - type: Transform -- uid: 1936 - type: TableReinforced - components: - - pos: 6.5,-13.5 - parent: 0 - type: Transform -- uid: 1937 - type: TableReinforced - components: - - pos: 6.5,-12.5 - parent: 0 - type: Transform -- uid: 1938 - type: MaterialHideBear - components: - - flags: InContainer - type: MetaData - - parent: 1932 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 1939 - type: Football - components: - - pos: -3.5255046,-16.416983 - parent: 0 - type: Transform -- uid: 1940 - type: TableReinforced - components: - - pos: 10.5,-14.5 - parent: 0 - type: Transform -- uid: 1941 - type: TableReinforced - components: - - pos: 10.5,-13.5 - parent: 0 - type: Transform -- uid: 1942 - type: WeaponRevolverDeckard - components: - - flags: InContainer - type: MetaData - - parent: 1932 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 1943 - type: BoxFolderBlack - components: - - name: secret documents - type: MetaData - - pos: 6.46647,-13.68577 - parent: 0 - type: Transform -- uid: 1944 - type: ReinforcedWindow - components: - - pos: -7.5,-17.5 - parent: 0 - type: Transform -- uid: 1945 - type: PosterLegitNanotrasenLogo - components: - - pos: 10.5,-11.5 - parent: 0 - type: Transform -- uid: 1946 - type: DrinkGoldenCup - components: - - pos: 6.384159,-12.168303 - parent: 0 - type: Transform -- uid: 1947 - type: ToolboxGoldFilled - components: - - pos: 6.524784,-12.637053 - parent: 0 - type: Transform -- uid: 1948 - type: IngotGold - components: - - pos: 6.529702,-13.121428 - parent: 0 - type: Transform -- uid: 1949 - type: ComputerFrame - components: - - pos: 7.5,-12.5 - parent: 0 - type: Transform -- uid: 1950 - type: ClothingHeadHatHairflower - components: - - pos: 6.785658,-13.56077 - parent: 0 - type: Transform -- uid: 1951 - type: ClothingNeckBling - components: - - pos: 6.498452,-14.246428 - parent: 0 - type: Transform -- uid: 1952 - type: ClothingBeltChampion - components: - - pos: 6.467202,-14.340178 - parent: 0 - type: Transform - - containers: - storagebase: !type:Container - ents: [] - type: ContainerContainer -- uid: 1953 - type: IngotSilver - components: - - pos: 10.558252,-14.387053 - parent: 0 - type: Transform -- uid: 1954 - type: CigarGoldCase - components: - - pos: 10.511377,-13.496428 - parent: 0 - type: Transform -- uid: 1955 - type: PinpointerNuclear - components: - - pos: 10.636377,-13.652678 - parent: 0 - type: Transform -- uid: 1956 - type: MaterialDiamond1 - components: - - pos: 10.527002,-14.012053 - parent: 0 - type: Transform -- uid: 1957 - type: PosterLegitNanotrasenLogo - components: - - pos: 6.5,-11.5 - parent: 0 - type: Transform -- uid: 1958 - type: SignSecureMed - components: - - pos: 7.5,-11.5 - parent: 0 - type: Transform -- uid: 1959 - type: APCBasic - components: - - pos: 9.5,-11.5 - parent: 0 - type: Transform -- uid: 1960 - type: CableMV - components: - - pos: 9.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1961 - type: PosterContrabandAtmosiaDeclarationIndependence - components: - - pos: 5.5,-13.5 - parent: 0 - type: Transform -- uid: 1962 - type: AirlockCommandLocked - components: - - name: Showroom - type: MetaData - - pos: -2.5,-12.5 - parent: 0 - type: Transform -- uid: 1963 - type: AirlockCommandLocked - components: - - name: Showroom - type: MetaData - - pos: -5.5,-17.5 - parent: 0 - type: Transform -- uid: 1964 - type: AirlockCommandLocked - components: - - name: Showroom - type: MetaData - - pos: 0.5,-17.5 - parent: 0 - type: Transform -- uid: 1965 - type: CarpetSBlue - components: - - pos: 1.5,-13.5 - parent: 0 - type: Transform -- uid: 1966 - type: CarpetSBlue - components: - - pos: 2.5,-13.5 - parent: 0 - type: Transform -- uid: 1967 - type: CarpetSBlue - components: - - pos: 0.5,-13.5 - parent: 0 - type: Transform -- uid: 1968 - type: CarpetSBlue - components: - - pos: -5.5,-13.5 - parent: 0 - type: Transform -- uid: 1969 - type: CarpetSBlue - components: - - pos: -6.5,-13.5 - parent: 0 - type: Transform -- uid: 1970 - type: CarpetSBlue - components: - - pos: -7.5,-13.5 - parent: 0 - type: Transform -- uid: 1971 - type: ShowcaseRobot - components: - - pos: 1.5,-13.5 - parent: 0 - type: Transform -- uid: 1972 - type: MedicalScanner - components: - - pos: 2.5,-13.5 - parent: 0 - type: Transform - - containers: - MedicalScanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - scanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 1973 - type: CloningPod - components: - - pos: 0.5,-13.5 - parent: 0 - type: Transform - - containers: - - machine_parts - - machine_board - type: Construction - - containers: - CloningPod-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - System.Func`3[Robust.Shared.GameObjects.EntityUid,Robust.Shared.GameObjects.MetaDataComponent,System.String]-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - clonepod-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 1974 - type: ShowcaseRobotMarauder - components: - - pos: -5.5,-13.5 - parent: 0 - type: Transform -- uid: 1975 - type: ShowcaseRobotAntique - components: - - pos: -7.5,-13.5 - parent: 0 - type: Transform -- uid: 1976 - type: TableWood - components: - - pos: -6.5,-13.5 - parent: 0 - type: Transform -- uid: 1977 - type: ClothingBackpackDuffelCaptain - components: - - pos: -6.5039344,-13.3377 - parent: 0 - type: Transform -- uid: 1978 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-13.5 - parent: 0 - type: Transform -- uid: 1979 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-13.5 - parent: 0 - type: Transform -- uid: 1980 - type: WindowReinforcedDirectional - components: - - pos: 0.5,-13.5 - parent: 0 - type: Transform -- uid: 1981 - type: WindowReinforcedDirectional - components: - - pos: 1.5,-13.5 - parent: 0 - type: Transform -- uid: 1982 - type: WindowReinforcedDirectional - components: - - pos: 2.5,-13.5 - parent: 0 - type: Transform -- uid: 1983 - type: WindowReinforcedDirectional - components: - - pos: -5.5,-13.5 - parent: 0 - type: Transform -- uid: 1984 - type: WindowReinforcedDirectional - components: - - pos: -6.5,-13.5 - parent: 0 - type: Transform -- uid: 1985 - type: WindowReinforcedDirectional - components: - - pos: -7.5,-13.5 - parent: 0 - type: Transform -- uid: 1986 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1987 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1988 - type: PoweredSmallLight - components: - - pos: -1.5,-13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1989 - type: PoweredSmallLight - components: - - pos: -3.5,-13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1990 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -1.5,-13.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - type: SurveillanceCamera -- uid: 1991 - type: SurveillanceCameraCommand - components: - - pos: -13.5,-8.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP Line - type: SurveillanceCamera -- uid: 1992 - type: ConveyorBelt - components: - - pos: -38.5,7.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4025 - Forward: - - port: Left - uid: 4025 - Off: - - port: Middle - uid: 4025 - type: SignalReceiver -- uid: 1993 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 9.5,-12.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - type: SurveillanceCamera -- uid: 1994 - type: PottedPlantRandom - components: - - pos: 0.5,-11.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1995 - type: PottedPlantRandom - components: - - pos: 2.5,-14.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1996 - type: PottedPlantRandom - components: - - pos: -7.5,-14.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1997 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -3.5,-11.5 - parent: 0 - type: Transform -- uid: 1998 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -3.5,-10.5 - parent: 0 - type: Transform -- uid: 1999 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -4.5,-10.5 - parent: 0 - type: Transform -- uid: 2000 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -5.5,-10.5 - parent: 0 - type: Transform -- uid: 2001 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -5.5,-9.5 - parent: 0 - type: Transform -- uid: 2002 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -4.5,-9.5 - parent: 0 - type: Transform -- uid: 2003 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -1.5,-11.5 - parent: 0 - type: Transform -- uid: 2004 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -0.5,-11.5 - parent: 0 - type: Transform -- uid: 2005 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -1.5,-10.5 - parent: 0 - type: Transform -- uid: 2006 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -0.5,-10.5 - parent: 0 - type: Transform -- uid: 2007 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 0.5,-10.5 - parent: 0 - type: Transform -- uid: 2008 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 0.5,-9.5 - parent: 0 - type: Transform -- uid: 2009 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -0.5,-9.5 - parent: 0 - type: Transform -- uid: 2010 - type: Carpet - components: - - pos: -6.5,-16.5 - parent: 0 - type: Transform -- uid: 2011 - type: Carpet - components: - - pos: 2.5,-15.5 - parent: 0 - type: Transform -- uid: 2012 - type: Carpet - components: - - pos: -1.5,-15.5 - parent: 0 - type: Transform -- uid: 2013 - type: Carpet - components: - - pos: 1.5,-16.5 - parent: 0 - type: Transform -- uid: 2014 - type: Carpet - components: - - pos: 2.5,-16.5 - parent: 0 - type: Transform -- uid: 2015 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -4.5,-16.5 - parent: 0 - type: Transform -- uid: 2016 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -0.5,-16.5 - parent: 0 - type: Transform -- uid: 2017 - type: Carpet - components: - - pos: -2.5,-15.5 - parent: 0 - type: Transform -- uid: 2018 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -2.5,-16.5 - parent: 0 - type: Transform -- uid: 2019 - type: Carpet - components: - - pos: -3.5,-15.5 - parent: 0 - type: Transform -- uid: 2020 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -1.5,-16.5 - parent: 0 - type: Transform -- uid: 2021 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -3.5,-16.5 - parent: 0 - type: Transform -- uid: 2022 - type: Carpet - components: - - pos: -7.5,-16.5 - parent: 0 - type: Transform -- uid: 2023 - type: Carpet - components: - - pos: -7.5,-15.5 - parent: 0 - type: Transform -- uid: 2024 - type: Carpet - components: - - pos: -4.5,-15.5 - parent: 0 - type: Transform -- uid: 2025 - type: Carpet - components: - - pos: -6.5,-15.5 - parent: 0 - type: Transform -- uid: 2026 - type: Carpet - components: - - pos: -0.5,-15.5 - parent: 0 - type: Transform -- uid: 2027 - type: Carpet - components: - - pos: 1.5,-15.5 - parent: 0 - type: Transform -- uid: 2028 - type: CigarGold - components: - - pos: -3.2930722,-13.446423 - parent: 0 - type: Transform -- uid: 2029 - type: ClothingUniformJumpsuitLawyerBlack - components: - - pos: -1.56798,-13.430798 - parent: 0 - type: Transform -- uid: 2030 - type: ClothingEyesGlassesSunglasses - components: - - pos: -1.458605,-13.446423 - parent: 0 - type: Transform -- uid: 2031 - type: ClothingHandsGlovesColorBlack - components: - - pos: -1.53673,-13.337048 - parent: 0 - type: Transform -- uid: 2032 - type: BoxFolderBlue - components: - - pos: -7.4777794,-16.348618 - parent: 0 - type: Transform -- uid: 2033 - type: ClothingHeadHatHopcap - components: - - pos: -7.4309044,-16.489243 - parent: 0 - type: Transform -- uid: 2034 - type: Matchbox - components: - - pos: -1.5387721,-16.317368 - parent: 0 - type: Transform -- uid: 2035 - type: Cigar - components: - - pos: -1.5543971,-16.411118 - parent: 0 - type: Transform -- uid: 2036 - type: Cigar - components: - - pos: -1.3200221,-16.426743 - parent: 0 - type: Transform -- uid: 2037 - type: CigarGold - components: - - pos: -1.4293971,-16.442368 - parent: 0 - type: Transform -- uid: 2038 - type: PlushieCarp - components: - - pos: -1.4762721,-15.536118 - parent: 0 - type: Transform -- uid: 2039 - type: PowerCellRecharger - components: - - pos: -3.5,-15.5 - parent: 0 - type: Transform -- uid: 2040 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,-15.5 - parent: 0 - type: Transform -- uid: 2041 - type: RevolverCapGun - components: - - pos: 2.5305943,-16.374142 - parent: 0 - type: Transform -- uid: 2042 - type: Handcuffs - components: - - pos: 2.5305943,-16.467892 - parent: 0 - type: Transform -- uid: 2043 - type: ToyAi - components: - - pos: 1.5618443,-16.342892 - parent: 0 - type: Transform -- uid: 2044 - type: BriefcaseBrownFilled - components: - - pos: -6.555251,-16.358383 - parent: 0 - type: Transform -- uid: 2045 - type: PaintingTheGreatWave - components: - - pos: 8.5,1.5 - parent: 0 - type: Transform -- uid: 2046 - type: RandomPainting - components: - - pos: -6.5,-12.5 - parent: 0 - type: Transform -- uid: 2047 - type: RandomPainting - components: - - pos: 1.5,-12.5 - parent: 0 - type: Transform -- uid: 2048 - type: SignSecureMed - components: - - pos: -6.5,-17.5 - parent: 0 - type: Transform -- uid: 2049 - type: SignSecureMed - components: - - pos: 1.5,-17.5 - parent: 0 - type: Transform -- uid: 2050 - type: SignalButton - components: - - pos: -7.5,-15.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1577 - - port: Toggle - uid: 1576 - - port: Toggle - uid: 1445 - - port: Toggle - uid: 1443 - - port: Toggle - uid: 1442 - - port: Toggle - uid: 1441 - - port: Toggle - uid: 1444 - - port: Toggle - uid: 1447 - - port: Toggle - uid: 1429 - - port: Toggle - uid: 1446 - - port: Toggle - uid: 1435 - type: SignalTransmitter -- uid: 2051 - type: ReinforcedWindow - components: - - pos: -7.5,-12.5 - parent: 0 - type: Transform -- uid: 2052 - type: ReinforcedWindow - components: - - pos: -5.5,-12.5 - parent: 0 - type: Transform -- uid: 2053 - type: ReinforcedWindow - components: - - pos: -3.5,-17.5 - parent: 0 - type: Transform -- uid: 2054 - type: ReinforcedWindow - components: - - pos: -2.5,-17.5 - parent: 0 - type: Transform -- uid: 2055 - type: ReinforcedWindow - components: - - pos: -1.5,-17.5 - parent: 0 - type: Transform -- uid: 2056 - type: ReinforcedWindow - components: - - pos: 2.5,-17.5 - parent: 0 - type: Transform -- uid: 2057 - type: ReinforcedWindow - components: - - pos: 3.5,-16.5 - parent: 0 - type: Transform -- uid: 2058 - type: ReinforcedWindow - components: - - pos: 3.5,-15.5 - parent: 0 - type: Transform -- uid: 2059 - type: ReinforcedWindow - components: - - pos: 2.5,-12.5 - parent: 0 - type: Transform -- uid: 2060 - type: ReinforcedWindow - components: - - pos: 0.5,-12.5 - parent: 0 - type: Transform -- uid: 2061 - type: WallSolid - components: - - pos: -9.5,-16.5 - parent: 0 - type: Transform -- uid: 2062 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -10.5,-17.5 - parent: 0 - type: Transform -- uid: 2063 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -9.5,-17.5 - parent: 0 - type: Transform -- uid: 2064 - type: SignSecureSmall - components: - - pos: -4.5,-12.5 - parent: 0 - type: Transform -- uid: 2065 - type: Girder - components: - - pos: -11.5,-15.5 - parent: 0 - type: Transform -- uid: 2066 - type: Catwalk - components: - - pos: -12.5,-16.5 - parent: 0 - type: Transform -- uid: 2067 - type: Catwalk - components: - - pos: -12.5,-15.5 - parent: 0 - type: Transform -- uid: 2068 - type: GasPipeFourway - components: - - pos: 15.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2069 - type: Catwalk - components: - - pos: -12.5,-13.5 - parent: 0 - type: Transform -- uid: 2070 - type: Catwalk - components: - - pos: -12.5,-12.5 - parent: 0 - type: Transform -- uid: 2071 - type: Catwalk - components: - - pos: -12.5,-11.5 - parent: 0 - type: Transform -- uid: 2072 - type: Catwalk - components: - - pos: -12.5,-10.5 - parent: 0 - type: Transform -- uid: 2073 - type: GrilleBroken - components: - - pos: -11.5,-14.5 - parent: 0 - type: Transform -- uid: 2074 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -11.5,-13.5 - parent: 0 - type: Transform -- uid: 2075 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2076 - type: RandomPosterContraband - components: - - pos: -10.5,-12.5 - parent: 0 - type: Transform -- uid: 2077 - type: GasVentPump - components: - - pos: -21.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2078 - type: RandomPosterLegit - components: - - pos: -9.5,-16.5 - parent: 0 - type: Transform -- uid: 2079 - type: WaterTankFull - components: - - pos: -9.5,-13.5 - parent: 0 - type: Transform -- uid: 2080 - type: ClosetMaintenanceFilledRandom - components: - - pos: -10.5,-13.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 2081 - type: Rack - components: - - pos: -10.5,-15.5 - parent: 0 - type: Transform -- uid: 2082 - type: MaintenanceFluffSpawner - components: - - pos: -10.5,-15.5 - parent: 0 - type: Transform -- uid: 2083 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-15.5 - parent: 0 - type: Transform -- uid: 2084 - type: RandomSpawner - components: - - pos: -12.5,-12.5 - parent: 0 - type: Transform -- uid: 2085 - type: SignDirectionalEvac - components: - - pos: 14.5,-9.5 - parent: 0 - type: Transform -- uid: 2086 - type: SignDirectionalMed - components: - - pos: 14.493387,-9.293303 - parent: 0 - type: Transform -- uid: 2087 - type: SignDirectionalSci - components: - - pos: 14.493387,-9.699553 - parent: 0 - type: Transform -- uid: 2088 - type: WaterCooler - components: - - pos: -4.5,-3.5 - parent: 0 - type: Transform -- uid: 2089 - type: ClosetEmergencyFilledRandom - components: - - pos: -10.5,-57.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2090 - type: WaterTankFull - components: - - pos: -11.5,-57.5 - parent: 0 - type: Transform -- uid: 2091 - type: WallSolidRust - components: - - pos: -9.5,-57.5 - parent: 0 - type: Transform -- uid: 2092 - type: PosterLegitNanotrasenLogo - components: - - pos: 3.5,-14.5 - parent: 0 - type: Transform -- uid: 2093 - type: PosterLegitNanotrasenLogo - components: - - pos: -8.5,-14.5 - parent: 0 - type: Transform -- uid: 2094 - type: AirlockGlass - components: - - pos: -19.5,-8.5 - parent: 0 - type: Transform -- uid: 2095 - type: AirlockGlass - components: - - pos: -19.5,-7.5 - parent: 0 - type: Transform -- uid: 2096 - type: AirlockGlass - components: - - pos: 14.5,-8.5 - parent: 0 - type: Transform -- uid: 2097 - type: AirlockGlass - components: - - pos: 14.5,-7.5 - parent: 0 - type: Transform -- uid: 2098 - type: CableApcExtension - components: - - pos: 11.5,-8.5 - parent: 0 - type: Transform -- uid: 2099 - type: CableApcExtension - components: - - pos: 12.5,-8.5 - parent: 0 - type: Transform -- uid: 2100 - type: Poweredlight - components: - - pos: -6.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2101 - type: Poweredlight - components: - - pos: 1.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2102 - type: Poweredlight - components: - - pos: -11.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2103 - type: Poweredlight - components: - - pos: 6.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2104 - type: Poweredlight - components: - - pos: 10.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2105 - type: Poweredlight - components: - - pos: -18.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2106 - type: FirelockGlass - components: - - pos: -19.5,-8.5 - parent: 0 - type: Transform -- uid: 2107 - type: FirelockGlass - components: - - pos: -19.5,-7.5 - parent: 0 - type: Transform -- uid: 2108 - type: FirelockGlass - components: - - pos: 14.5,-8.5 - parent: 0 - type: Transform -- uid: 2109 - type: FirelockGlass - components: - - pos: 14.5,-7.5 - parent: 0 - type: Transform -- uid: 2110 - type: WallSolid - components: - - pos: 14.5,11.5 - parent: 0 - type: Transform -- uid: 2111 - type: WallSolid - components: - - pos: 14.5,12.5 - parent: 0 - type: Transform -- uid: 2112 - type: WallSolid - components: - - pos: 15.5,12.5 - parent: 0 - type: Transform -- uid: 2113 - type: WallSolid - components: - - pos: 16.5,12.5 - parent: 0 - type: Transform -- uid: 2114 - type: WallSolid - components: - - pos: 17.5,12.5 - parent: 0 - type: Transform -- uid: 2115 - type: WallSolid - components: - - pos: 18.5,12.5 - parent: 0 - type: Transform -- uid: 2116 - type: WallSolid - components: - - pos: 18.5,10.5 - parent: 0 - type: Transform -- uid: 2117 - type: WallSolid - components: - - pos: 18.5,9.5 - parent: 0 - type: Transform -- uid: 2118 - type: WallSolid - components: - - pos: 18.5,8.5 - parent: 0 - type: Transform -- uid: 2119 - type: WallSolid - components: - - pos: 18.5,7.5 - parent: 0 - type: Transform -- uid: 2120 - type: WallSolid - components: - - pos: 18.5,6.5 - parent: 0 - type: Transform -- uid: 2121 - type: WallSolid - components: - - pos: 18.5,5.5 - parent: 0 - type: Transform -- uid: 2122 - type: FirelockGlass - components: - - pos: 17.5,6.5 - parent: 0 - type: Transform -- uid: 2123 - type: FirelockGlass - components: - - pos: 16.5,6.5 - parent: 0 - type: Transform -- uid: 2124 - type: FirelockGlass - components: - - pos: 15.5,6.5 - parent: 0 - type: Transform -- uid: 2125 - type: FirelockGlass - components: - - pos: 9.5,10.5 - parent: 0 - type: Transform -- uid: 2126 - type: FirelockGlass - components: - - pos: 9.5,8.5 - parent: 0 - type: Transform -- uid: 2127 - type: FirelockGlass - components: - - pos: 9.5,9.5 - parent: 0 - type: Transform -- uid: 2128 - type: WallSolid - components: - - pos: -19.5,20.5 - parent: 0 - type: Transform -- uid: 2129 - type: Window - components: - - pos: -21.5,20.5 - parent: 0 - type: Transform -- uid: 2130 - type: WallSolid - components: - - pos: -20.5,20.5 - parent: 0 - type: Transform -- uid: 2131 - type: BedsheetHOP - components: - - flags: InContainer - type: MetaData - - parent: 1336 - type: Transform - - canCollide: False - type: Physics -- uid: 2132 - type: BedsheetIan - components: - - flags: InContainer - type: MetaData - - parent: 1336 - type: Transform - - canCollide: False - type: Physics -- uid: 2133 - type: PosterLegitReportCrimes - components: - - pos: -11.5,7.5 - parent: 0 - type: Transform -- uid: 2134 - type: WallSolid - components: - - pos: 24.5,5.5 - parent: 0 - type: Transform -- uid: 2135 - type: WallSolid - components: - - pos: 24.5,6.5 - parent: 0 - type: Transform -- uid: 2136 - type: WallSolid - components: - - pos: 24.5,7.5 - parent: 0 - type: Transform -- uid: 2137 - type: WallSolid - components: - - pos: 24.5,8.5 - parent: 0 - type: Transform -- uid: 2138 - type: WallSolid - components: - - pos: 24.5,9.5 - parent: 0 - type: Transform -- uid: 2139 - type: WallSolid - components: - - pos: 23.5,9.5 - parent: 0 - type: Transform -- uid: 2140 - type: WallSolid - components: - - pos: 22.5,9.5 - parent: 0 - type: Transform -- uid: 2141 - type: WallSolid - components: - - pos: 19.5,5.5 - parent: 0 - type: Transform -- uid: 2142 - type: WallSolid - components: - - pos: 20.5,9.5 - parent: 0 - type: Transform -- uid: 2143 - type: WallSolid - components: - - pos: 19.5,9.5 - parent: 0 - type: Transform -- uid: 2144 - type: WallSolid - components: - - pos: 23.5,5.5 - parent: 0 - type: Transform -- uid: 2145 - type: AirlockMaintLocked - components: - - pos: 21.5,9.5 - parent: 0 - type: Transform -- uid: 2146 - type: AirlockGlass - components: - - pos: 21.5,5.5 - parent: 0 - type: Transform -- uid: 2147 - type: Grille - components: - - pos: 20.5,5.5 - parent: 0 - type: Transform -- uid: 2148 - type: Grille - components: - - pos: 22.5,5.5 - parent: 0 - type: Transform -- uid: 2149 - type: Window - components: - - pos: 20.5,5.5 - parent: 0 - type: Transform -- uid: 2150 - type: Window - components: - - pos: 22.5,5.5 - parent: 0 - type: Transform -- uid: 2151 - type: ClosetEmergencyFilledRandom - components: - - pos: 25.5,5.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 2152 - type: ClosetFireFilled - components: - - pos: 26.5,5.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 2153 - type: WallSolid - components: - - pos: 27.5,5.5 - parent: 0 - type: Transform -- uid: 2154 - type: WallSolid - components: - - pos: 27.5,6.5 - parent: 0 - type: Transform -- uid: 2155 - type: WallSolid - components: - - pos: 26.5,6.5 - parent: 0 - type: Transform -- uid: 2156 - type: WallSolid - components: - - pos: 25.5,6.5 - parent: 0 - type: Transform -- uid: 2157 - type: WallSolid - components: - - pos: 18.5,1.5 - parent: 0 - type: Transform -- uid: 2158 - type: WallSolid - components: - - pos: 18.5,0.5 - parent: 0 - type: Transform -- uid: 2159 - type: WallSolid - components: - - pos: 19.5,1.5 - parent: 0 - type: Transform -- uid: 2160 - type: WallSolid - components: - - pos: 20.5,1.5 - parent: 0 - type: Transform -- uid: 2161 - type: Grille - components: - - pos: 18.5,-0.5 - parent: 0 - type: Transform -- uid: 2162 - type: Grille - components: - - pos: 18.5,-1.5 - parent: 0 - type: Transform -- uid: 2163 - type: Grille - components: - - pos: 18.5,-4.5 - parent: 0 - type: Transform -- uid: 2164 - type: Grille - components: - - pos: 18.5,-5.5 - parent: 0 - type: Transform -- uid: 2165 - type: WallSolid - components: - - pos: 18.5,-6.5 - parent: 0 - type: Transform -- uid: 2166 - type: WallSolid - components: - - pos: 18.5,-7.5 - parent: 0 - type: Transform -- uid: 2167 - type: WallSolid - components: - - pos: 18.5,-9.5 - parent: 0 - type: Transform -- uid: 2168 - type: WallSolid - components: - - pos: 18.5,-10.5 - parent: 0 - type: Transform -- uid: 2169 - type: WallSolid - components: - - pos: 18.5,-11.5 - parent: 0 - type: Transform -- uid: 2170 - type: WallSolid - components: - - pos: 18.5,-12.5 - parent: 0 - type: Transform -- uid: 2171 - type: WallSolid - components: - - pos: 18.5,-13.5 - parent: 0 - type: Transform -- uid: 2172 - type: WallSolid - components: - - pos: 18.5,-14.5 - parent: 0 - type: Transform -- uid: 2173 - type: Grille - components: - - pos: 27.5,1.5 - parent: 0 - type: Transform -- uid: 2174 - type: Grille - components: - - pos: 22.5,1.5 - parent: 0 - type: Transform -- uid: 2175 - type: Window - components: - - pos: 27.5,1.5 - parent: 0 - type: Transform -- uid: 2176 - type: Grille - components: - - pos: 26.5,1.5 - parent: 0 - type: Transform -- uid: 2177 - type: Grille - components: - - pos: 18.5,-8.5 - parent: 0 - type: Transform -- uid: 2178 - type: Window - components: - - pos: 23.5,1.5 - parent: 0 - type: Transform -- uid: 2179 - type: WallSolid - components: - - pos: 28.5,1.5 - parent: 0 - type: Transform -- uid: 2180 - type: WallSolid - components: - - pos: 29.5,1.5 - parent: 0 - type: Transform -- uid: 2181 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 21.5,0.5 - parent: 0 - type: Transform -- uid: 2182 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 22.5,0.5 - parent: 0 - type: Transform -- uid: 2183 - type: Table - components: - - pos: 20.5,-0.5 - parent: 0 - type: Transform -- uid: 2184 - type: WallSolid - components: - - pos: 33.5,1.5 - parent: 0 - type: Transform -- uid: 2185 - type: WallSolid - components: - - pos: 33.5,0.5 - parent: 0 - type: Transform -- uid: 2186 - type: WallSolid - components: - - pos: 33.5,-0.5 - parent: 0 - type: Transform -- uid: 2187 - type: WallSolid - components: - - pos: 33.5,-1.5 - parent: 0 - type: Transform -- uid: 2188 - type: WallSolid - components: - - pos: 37.5,-14.5 - parent: 0 - type: Transform -- uid: 2189 - type: WallSolid - components: - - pos: 36.5,-14.5 - parent: 0 - type: Transform -- uid: 2190 - type: WallSolid - components: - - pos: 34.5,1.5 - parent: 0 - type: Transform -- uid: 2191 - type: WallSolid - components: - - pos: 35.5,1.5 - parent: 0 - type: Transform -- uid: 2192 - type: WallSolid - components: - - pos: 38.5,1.5 - parent: 0 - type: Transform -- uid: 2193 - type: WallSolid - components: - - pos: 37.5,1.5 - parent: 0 - type: Transform -- uid: 2194 - type: WallSolid - components: - - pos: 38.5,0.5 - parent: 0 - type: Transform -- uid: 2195 - type: WallSolid - components: - - pos: 39.5,1.5 - parent: 0 - type: Transform -- uid: 2196 - type: WallSolid - components: - - pos: 34.5,-1.5 - parent: 0 - type: Transform -- uid: 2197 - type: WallSolid - components: - - pos: 35.5,-1.5 - parent: 0 - type: Transform -- uid: 2198 - type: WallSolid - components: - - pos: 36.5,-1.5 - parent: 0 - type: Transform -- uid: 2199 - type: WallSolid - components: - - pos: 37.5,-1.5 - parent: 0 - type: Transform -- uid: 2200 - type: WallSolid - components: - - pos: 38.5,-1.5 - parent: 0 - type: Transform -- uid: 2201 - type: WallSolid - components: - - pos: 39.5,-1.5 - parent: 0 - type: Transform -- uid: 2202 - type: WallSolid - components: - - pos: 39.5,-2.5 - parent: 0 - type: Transform -- uid: 2203 - type: WallSolid - components: - - pos: 39.5,-4.5 - parent: 0 - type: Transform -- uid: 2204 - type: WallSolid - components: - - pos: 39.5,-5.5 - parent: 0 - type: Transform -- uid: 2205 - type: AirlockMaintTheatreLocked - components: - - pos: 39.5,-6.5 - parent: 0 - type: Transform -- uid: 2206 - type: WallSolid - components: - - pos: 39.5,-7.5 - parent: 0 - type: Transform -- uid: 2207 - type: WallSolid - components: - - pos: 38.5,-8.5 - parent: 0 - type: Transform -- uid: 2208 - type: WallSolid - components: - - pos: 39.5,-8.5 - parent: 0 - type: Transform -- uid: 2209 - type: WallSolid - components: - - pos: 38.5,-14.5 - parent: 0 - type: Transform -- uid: 2210 - type: WallSolid - components: - - pos: 40.5,-7.5 - parent: 0 - type: Transform -- uid: 2211 - type: WallSolid - components: - - pos: 42.5,-12.5 - parent: 0 - type: Transform -- uid: 2212 - type: WallSolid - components: - - pos: 42.5,-11.5 - parent: 0 - type: Transform -- uid: 2213 - type: WallSolid - components: - - pos: 42.5,-13.5 - parent: 0 - type: Transform -- uid: 2214 - type: WallSolid - components: - - pos: 42.5,-10.5 - parent: 0 - type: Transform -- uid: 2215 - type: WallSolid - components: - - pos: 41.5,-7.5 - parent: 0 - type: Transform -- uid: 2216 - type: WallSolid - components: - - pos: 42.5,-7.5 - parent: 0 - type: Transform -- uid: 2217 - type: WallSolid - components: - - pos: 41.5,-13.5 - parent: 0 - type: Transform -- uid: 2218 - type: WallSolid - components: - - pos: 36.5,-9.5 - parent: 0 - type: Transform -- uid: 2219 - type: WallSolid - components: - - pos: 36.5,-10.5 - parent: 0 - type: Transform -- uid: 2220 - type: WallSolid - components: - - pos: 36.5,-11.5 - parent: 0 - type: Transform -- uid: 2221 - type: WallSolid - components: - - pos: 36.5,-12.5 - parent: 0 - type: Transform -- uid: 2222 - type: WallSolid - components: - - pos: 36.5,-13.5 - parent: 0 - type: Transform -- uid: 2223 - type: WallSolid - components: - - pos: 39.5,-13.5 - parent: 0 - type: Transform -- uid: 2224 - type: WallSolid - components: - - pos: 36.5,-8.5 - parent: 0 - type: Transform -- uid: 2225 - type: WallSolid - components: - - pos: 35.5,-8.5 - parent: 0 - type: Transform -- uid: 2226 - type: WallSolid - components: - - pos: 34.5,-8.5 - parent: 0 - type: Transform -- uid: 2227 - type: WallSolid - components: - - pos: 33.5,-8.5 - parent: 0 - type: Transform -- uid: 2228 - type: TableReinforced - components: - - pos: 19.5,-6.5 - parent: 0 - type: Transform -- uid: 2229 - type: TableReinforced - components: - - pos: 20.5,-6.5 - parent: 0 - type: Transform -- uid: 2230 - type: TableReinforced - components: - - pos: 21.5,-6.5 - parent: 0 - type: Transform -- uid: 2231 - type: TableReinforced - components: - - pos: 22.5,-6.5 - parent: 0 - type: Transform -- uid: 2232 - type: TableReinforced - components: - - pos: 23.5,-6.5 - parent: 0 - type: Transform -- uid: 2233 - type: TableReinforced - components: - - pos: 24.5,-6.5 - parent: 0 - type: Transform -- uid: 2234 - type: TableReinforced - components: - - pos: 25.5,-6.5 - parent: 0 - type: Transform -- uid: 2235 - type: TableReinforced - components: - - pos: 32.5,-8.5 - parent: 0 - type: Transform -- uid: 2236 - type: TableReinforced - components: - - pos: 31.5,-8.5 - parent: 0 - type: Transform -- uid: 2237 - type: TableReinforced - components: - - pos: 30.5,-8.5 - parent: 0 - type: Transform -- uid: 2238 - type: TableReinforced - components: - - pos: 29.5,-8.5 - parent: 0 - type: Transform -- uid: 2239 - type: TableReinforced - components: - - pos: 28.5,-8.5 - parent: 0 - type: Transform -- uid: 2240 - type: TableReinforced - components: - - pos: 27.5,-8.5 - parent: 0 - type: Transform -- uid: 2241 - type: AirlockKitchenLocked - components: - - pos: 26.5,-8.5 - parent: 0 - type: Transform -- uid: 2242 - type: WallSolid - components: - - pos: 25.5,-8.5 - parent: 0 - type: Transform -- uid: 2243 - type: WallSolid - components: - - pos: 25.5,-10.5 - parent: 0 - type: Transform -- uid: 2244 - type: WallSolid - components: - - pos: 25.5,-11.5 - parent: 0 - type: Transform -- uid: 2245 - type: WallSolid - components: - - pos: 24.5,-11.5 - parent: 0 - type: Transform -- uid: 2246 - type: WallSolid - components: - - pos: 23.5,-11.5 - parent: 0 - type: Transform -- uid: 2247 - type: WallSolid - components: - - pos: 19.5,-11.5 - parent: 0 - type: Transform -- uid: 2248 - type: WallSolid - components: - - pos: 22.5,-11.5 - parent: 0 - type: Transform -- uid: 2249 - type: WallSolid - components: - - pos: 21.5,-11.5 - parent: 0 - type: Transform -- uid: 2250 - type: WallSolid - components: - - pos: 19.5,-14.5 - parent: 0 - type: Transform -- uid: 2251 - type: WallSolid - components: - - pos: 20.5,-14.5 - parent: 0 - type: Transform -- uid: 2252 - type: WallSolid - components: - - pos: 21.5,-14.5 - parent: 0 - type: Transform -- uid: 2253 - type: WallSolid - components: - - pos: 22.5,-14.5 - parent: 0 - type: Transform -- uid: 2254 - type: WallSolid - components: - - pos: 24.5,-14.5 - parent: 0 - type: Transform -- uid: 2255 - type: WallSolid - components: - - pos: 25.5,-14.5 - parent: 0 - type: Transform -- uid: 2256 - type: WallSolid - components: - - pos: 38.5,-17.5 - parent: 0 - type: Transform -- uid: 2257 - type: WallSolid - components: - - pos: 25.5,-12.5 - parent: 0 - type: Transform -- uid: 2258 - type: WallSolid - components: - - pos: 35.5,-12.5 - parent: 0 - type: Transform -- uid: 2259 - type: WallSolid - components: - - pos: 39.5,-14.5 - parent: 0 - type: Transform -- uid: 2260 - type: AirlockMaintKitchenLocked - components: - - pos: 39.5,-15.5 - parent: 0 - type: Transform -- uid: 2261 - type: WallSolid - components: - - pos: 39.5,-16.5 - parent: 0 - type: Transform -- uid: 2262 - type: WallSolid - components: - - pos: 33.5,-12.5 - parent: 0 - type: Transform -- uid: 2263 - type: WallSolid - components: - - pos: 32.5,-12.5 - parent: 0 - type: Transform -- uid: 2264 - type: WallSolid - components: - - pos: 32.5,-13.5 - parent: 0 - type: Transform -- uid: 2265 - type: WallSolid - components: - - pos: 32.5,-14.5 - parent: 0 - type: Transform -- uid: 2266 - type: WallSolid - components: - - pos: 32.5,-15.5 - parent: 0 - type: Transform -- uid: 2267 - type: WallSolid - components: - - pos: 32.5,-16.5 - parent: 0 - type: Transform -- uid: 2268 - type: WallSolid - components: - - pos: 26.5,-14.5 - parent: 0 - type: Transform -- uid: 2269 - type: WallSolid - components: - - pos: 31.5,-14.5 - parent: 0 - type: Transform -- uid: 2270 - type: WallSolid - components: - - pos: 30.5,-14.5 - parent: 0 - type: Transform -- uid: 2271 - type: AirlockServiceGlassLocked - components: - - pos: 27.5,-14.5 - parent: 0 - type: Transform -- uid: 2272 - type: WallSolid - components: - - pos: 20.5,-21.5 - parent: 0 - type: Transform -- uid: 2273 - type: WallSolid - components: - - pos: 16.5,-21.5 - parent: 0 - type: Transform -- uid: 2274 - type: WallSolid - components: - - pos: 16.5,-22.5 - parent: 0 - type: Transform -- uid: 2275 - type: WallSolid - components: - - pos: 16.5,-23.5 - parent: 0 - type: Transform -- uid: 2276 - type: WallSolid - components: - - pos: 16.5,-24.5 - parent: 0 - type: Transform -- uid: 2277 - type: WallSolid - components: - - pos: 16.5,-25.5 - parent: 0 - type: Transform -- uid: 2278 - type: WallSolid - components: - - pos: 17.5,-25.5 - parent: 0 - type: Transform -- uid: 2279 - type: WallSolid - components: - - pos: 18.5,-25.5 - parent: 0 - type: Transform -- uid: 2280 - type: WallSolid - components: - - pos: 19.5,-25.5 - parent: 0 - type: Transform -- uid: 2281 - type: WallSolid - components: - - pos: 20.5,-25.5 - parent: 0 - type: Transform -- uid: 2282 - type: WallSolid - components: - - pos: 21.5,-25.5 - parent: 0 - type: Transform -- uid: 2283 - type: WallSolid - components: - - pos: 23.5,-25.5 - parent: 0 - type: Transform -- uid: 2284 - type: WallSolid - components: - - pos: 24.5,-25.5 - parent: 0 - type: Transform -- uid: 2285 - type: WallSolid - components: - - pos: 25.5,-25.5 - parent: 0 - type: Transform -- uid: 2286 - type: WallSolid - components: - - pos: 26.5,-25.5 - parent: 0 - type: Transform -- uid: 2287 - type: WallSolid - components: - - pos: 27.5,-25.5 - parent: 0 - type: Transform -- uid: 2288 - type: WallSolid - components: - - pos: 28.5,-25.5 - parent: 0 - type: Transform -- uid: 2289 - type: WallSolid - components: - - pos: 29.5,-25.5 - parent: 0 - type: Transform -- uid: 2290 - type: WallSolid - components: - - pos: 30.5,-25.5 - parent: 0 - type: Transform -- uid: 2291 - type: WallSolid - components: - - pos: 31.5,-25.5 - parent: 0 - type: Transform -- uid: 2292 - type: WallSolid - components: - - pos: 32.5,-25.5 - parent: 0 - type: Transform -- uid: 2293 - type: WindowReinforcedDirectional - components: - - pos: 19.5,-21.5 - parent: 0 - type: Transform -- uid: 2294 - type: WallSolid - components: - - pos: 32.5,-24.5 - parent: 0 - type: Transform -- uid: 2295 - type: WallSolid - components: - - pos: 32.5,-22.5 - parent: 0 - type: Transform -- uid: 2296 - type: Window - components: - - pos: 32.5,-20.5 - parent: 0 - type: Transform -- uid: 2297 - type: Window - components: - - pos: 32.5,-21.5 - parent: 0 - type: Transform -- uid: 2298 - type: WallSolid - components: - - pos: 36.5,-24.5 - parent: 0 - type: Transform -- uid: 2299 - type: WallSolid - components: - - pos: 32.5,-19.5 - parent: 0 - type: Transform -- uid: 2300 - type: WallSolid - components: - - pos: 32.5,-17.5 - parent: 0 - type: Transform -- uid: 2301 - type: TableReinforced - components: - - pos: 20.5,-19.5 - parent: 0 - type: Transform -- uid: 2302 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 19.5,-21.5 - parent: 0 - type: Transform -- uid: 2303 - type: TableReinforced - components: - - pos: 20.5,-20.5 - parent: 0 - type: Transform -- uid: 2304 - type: WallSolid - components: - - pos: 23.5,-14.5 - parent: 0 - type: Transform -- uid: 2305 - type: WallSolid - components: - - pos: 39.5,-17.5 - parent: 0 - type: Transform -- uid: 2306 - type: WallSolid - components: - - pos: 37.5,-17.5 - parent: 0 - type: Transform -- uid: 2307 - type: WallSolid - components: - - pos: 36.5,-17.5 - parent: 0 - type: Transform -- uid: 2308 - type: WallSolid - components: - - pos: 35.5,-17.5 - parent: 0 - type: Transform -- uid: 2309 - type: WallSolid - components: - - pos: 34.5,-17.5 - parent: 0 - type: Transform -- uid: 2310 - type: WallSolid - components: - - pos: 33.5,-17.5 - parent: 0 - type: Transform -- uid: 2311 - type: WallSolid - components: - - pos: 36.5,-22.5 - parent: 0 - type: Transform -- uid: 2312 - type: WallSolid - components: - - pos: 36.5,-21.5 - parent: 0 - type: Transform -- uid: 2313 - type: WallSolid - components: - - pos: 36.5,-23.5 - parent: 0 - type: Transform -- uid: 2314 - type: WallSolid - components: - - pos: 36.5,-20.5 - parent: 0 - type: Transform -- uid: 2315 - type: VendingMachineHydrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 35.5,-18.5 - parent: 0 - type: Transform -- uid: 2316 - type: WallSolid - components: - - pos: 35.5,-24.5 - parent: 0 - type: Transform -- uid: 2317 - type: WallSolid - components: - - pos: 36.5,-18.5 - parent: 0 - type: Transform -- uid: 2318 - type: WallSolid - components: - - pos: 34.5,-24.5 - parent: 0 - type: Transform -- uid: 2319 - type: WallSolid - components: - - pos: 33.5,-24.5 - parent: 0 - type: Transform -- uid: 2320 - type: WindowReinforcedDirectional - components: - - pos: 17.5,-21.5 - parent: 0 - type: Transform -- uid: 2321 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 17.5,-21.5 - parent: 0 - type: Transform -- uid: 2322 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 0 - type: Transform -- uid: 2323 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 0 - type: Transform -- uid: 2324 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 0 - type: Transform -- uid: 2325 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 0 - type: Transform -- uid: 2326 - type: SignHydro2 - components: - - pos: 20.5,-15.5 - parent: 0 - type: Transform -- uid: 2327 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-16.5 - parent: 0 - type: Transform -- uid: 2328 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-17.5 - parent: 0 - type: Transform -- uid: 2329 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-17.5 - parent: 0 - type: Transform -- uid: 2330 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-16.5 - parent: 0 - type: Transform -- uid: 2331 - type: WallSolid - components: - - pos: 20.5,-15.5 - parent: 0 - type: Transform -- uid: 2332 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-18.5 - parent: 0 - type: Transform -- uid: 2333 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-18.5 - parent: 0 - type: Transform -- uid: 2334 - type: WindowReinforcedDirectional - components: - - pos: 20.5,-18.5 - parent: 0 - type: Transform -- uid: 2335 - type: SignHydro1 - components: - - pos: 20.5,-21.5 - parent: 0 - type: Transform -- uid: 2336 - type: Window - components: - - pos: 20.5,-22.5 - parent: 0 - type: Transform -- uid: 2337 - type: Window - components: - - pos: 20.5,-24.5 - parent: 0 - type: Transform -- uid: 2338 - type: Grille - components: - - pos: 20.5,-24.5 - parent: 0 - type: Transform -- uid: 2339 - type: Grille - components: - - pos: 20.5,-22.5 - parent: 0 - type: Transform -- uid: 2340 - type: WindoorKitchenHydroponicsLocked - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-20.5 - parent: 0 - type: Transform -- uid: 2341 - type: WindoorKitchenHydroponicsLocked - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-19.5 - parent: 0 - type: Transform -- uid: 2342 - type: AirlockHydroGlassLocked - components: - - pos: 20.5,-23.5 - parent: 0 - type: Transform -- uid: 2343 - type: AirlockHydroGlassLocked - components: - - pos: 18.5,-21.5 - parent: 0 - type: Transform -- uid: 2344 - type: VendingMachineSeeds - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,-24.5 - parent: 0 - type: Transform -- uid: 2345 - type: VendingMachineNutri - components: - - flags: SessionSpecific - type: MetaData - - pos: 17.5,-24.5 - parent: 0 - type: Transform -- uid: 2346 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-23.5 - parent: 0 - type: Transform -- uid: 2347 - type: TableGlass - components: - - pos: 17.5,-22.5 - parent: 0 - type: Transform -- uid: 2348 - type: TableGlass - components: - - pos: 19.5,-22.5 - parent: 0 - type: Transform -- uid: 2349 - type: Table - components: - - pos: 18.5,-24.5 - parent: 0 - type: Transform -- uid: 2350 - type: TableReinforced - components: - - pos: 28.5,-14.5 - parent: 0 - type: Transform -- uid: 2351 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,-14.5 - parent: 0 - type: Transform -- uid: 2352 - type: FirelockGlass - components: - - pos: 29.5,-14.5 - parent: 0 - type: Transform -- uid: 2353 - type: FirelockGlass - components: - - pos: 28.5,-14.5 - parent: 0 - type: Transform -- uid: 2354 - type: WindoorKitchenHydroponicsLocked - components: - - pos: 28.5,-14.5 - parent: 0 - type: Transform -- uid: 2355 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-14.5 - parent: 0 - type: Transform -- uid: 2356 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 20.5,-16.5 - parent: 0 - type: Transform -- uid: 2357 - type: Table - components: - - pos: 19.5,-18.5 - parent: 0 - type: Transform -- uid: 2358 - type: PottedPlantRandom - components: - - pos: 19.5,-17.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2359 - type: FirelockGlass - components: - - pos: 20.5,-20.5 - parent: 0 - type: Transform -- uid: 2360 - type: FirelockGlass - components: - - pos: 20.5,-19.5 - parent: 0 - type: Transform -- uid: 2361 - type: LockerBotanistFilled - components: - - pos: 35.5,-20.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 2362 - type: LockerBotanistFilled - components: - - pos: 35.5,-21.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 2363 - type: LockerBotanistFilled - components: - - pos: 35.5,-22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 2364 - type: AirlockMaintHydroLocked - components: - - pos: 36.5,-19.5 - parent: 0 - type: Transform -- uid: 2365 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-16.5 - parent: 0 - type: Transform -- uid: 2366 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-15.5 - parent: 0 - type: Transform -- uid: 2367 - type: FirelockGlass - components: - - pos: 17.5,-9.5 - parent: 0 - type: Transform -- uid: 2368 - type: FirelockGlass - components: - - pos: 16.5,-9.5 - parent: 0 - type: Transform -- uid: 2369 - type: FirelockGlass - components: - - pos: 15.5,-9.5 - parent: 0 - type: Transform -- uid: 2370 - type: ReinforcedWindow - components: - - pos: 18.5,-8.5 - parent: 0 - type: Transform -- uid: 2371 - type: Grille - components: - - pos: 32.5,-21.5 - parent: 0 - type: Transform -- uid: 2372 - type: Grille - components: - - pos: 32.5,-20.5 - parent: 0 - type: Transform -- uid: 2373 - type: DisposalUnit - components: - - pos: 21.5,-24.5 - parent: 0 - type: Transform -- uid: 2374 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-22.5 - parent: 0 - type: Transform -- uid: 2375 - type: TableGlass - components: - - pos: 21.5,-21.5 - parent: 0 - type: Transform -- uid: 2376 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-20.5 - parent: 0 - type: Transform -- uid: 2377 - type: AirlockMaintHydroLocked - components: - - pos: 22.5,-25.5 - parent: 0 - type: Transform -- uid: 2378 - type: WallSolid - components: - - pos: 42.5,-9.5 - parent: 0 - type: Transform -- uid: 2379 - type: WallSolid - components: - - pos: 42.5,-8.5 - parent: 0 - type: Transform -- uid: 2380 - type: WindoorBarLocked - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-7.5 - parent: 0 - type: Transform -- uid: 2381 - type: Window - components: - - pos: 18.5,-5.5 - parent: 0 - type: Transform -- uid: 2382 - type: Window - components: - - pos: 18.5,-4.5 - parent: 0 - type: Transform -- uid: 2383 - type: Window - components: - - pos: 18.5,-1.5 - parent: 0 - type: Transform -- uid: 2384 - type: Window - components: - - pos: 18.5,-0.5 - parent: 0 - type: Transform -- uid: 2385 - type: WallSolid - components: - - pos: 21.5,1.5 - parent: 0 - type: Transform -- uid: 2386 - type: Window - components: - - pos: 22.5,1.5 - parent: 0 - type: Transform -- uid: 2387 - type: Grille - components: - - pos: 23.5,1.5 - parent: 0 - type: Transform -- uid: 2388 - type: Window - components: - - pos: 26.5,1.5 - parent: 0 - type: Transform -- uid: 2389 - type: BarSign - components: - - desc: All right, buddy. I think you've had EI NATH. Time to get a cab. - name: The Ale' Nath - type: MetaData - - pos: 20.5,1.5 - parent: 0 - type: Transform - - current: TheAleNath - type: BarSign -- uid: 2390 - type: SignBar - components: - - pos: 18.5,-6.5 - parent: 0 - type: Transform -- uid: 2391 - type: AirlockGlass - components: - - pos: 18.5,2.5 - parent: 0 - type: Transform -- uid: 2392 - type: AirlockGlass - components: - - pos: 18.5,3.5 - parent: 0 - type: Transform -- uid: 2393 - type: AirlockGlass - components: - - pos: 18.5,4.5 - parent: 0 - type: Transform -- uid: 2394 - type: AirlockGlass - components: - - pos: 18.5,-3.5 - parent: 0 - type: Transform -- uid: 2395 - type: AirlockGlass - components: - - pos: 18.5,-2.5 - parent: 0 - type: Transform -- uid: 2396 - type: AirlockGlass - components: - - pos: 24.5,1.5 - parent: 0 - type: Transform -- uid: 2397 - type: AirlockGlass - components: - - pos: 25.5,1.5 - parent: 0 - type: Transform -- uid: 2398 - type: SignDirectionalEvac - components: - - pos: 18.5,1.5 - parent: 0 - type: Transform -- uid: 2399 - type: SignDirectionalMed - components: - - pos: 18.507772,1.6958265 - parent: 0 - type: Transform -- uid: 2400 - type: SignDirectionalSci - components: - - pos: 18.507772,1.2739515 - parent: 0 - type: Transform -- uid: 2401 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 0 - type: Transform -- uid: 2402 - type: FirelockGlass - components: - - pos: 19.5,-6.5 - parent: 0 - type: Transform -- uid: 2403 - type: FirelockGlass - components: - - pos: 20.5,-6.5 - parent: 0 - type: Transform -- uid: 2404 - type: FirelockGlass - components: - - pos: 21.5,-6.5 - parent: 0 - type: Transform -- uid: 2405 - type: FirelockGlass - components: - - pos: 22.5,-6.5 - parent: 0 - type: Transform -- uid: 2406 - type: FirelockGlass - components: - - pos: 23.5,-6.5 - parent: 0 - type: Transform -- uid: 2407 - type: FirelockGlass - components: - - pos: 24.5,-6.5 - parent: 0 - type: Transform -- uid: 2408 - type: FirelockGlass - components: - - pos: 25.5,-6.5 - parent: 0 - type: Transform -- uid: 2409 - type: FirelockGlass - components: - - pos: 32.5,-8.5 - parent: 0 - type: Transform -- uid: 2410 - type: FirelockGlass - components: - - pos: 31.5,-8.5 - parent: 0 - type: Transform -- uid: 2411 - type: FirelockGlass - components: - - pos: 30.5,-8.5 - parent: 0 - type: Transform -- uid: 2412 - type: FirelockGlass - components: - - pos: 29.5,-8.5 - parent: 0 - type: Transform -- uid: 2413 - type: FirelockGlass - components: - - pos: 28.5,-8.5 - parent: 0 - type: Transform -- uid: 2414 - type: FirelockGlass - components: - - pos: 27.5,-8.5 - parent: 0 - type: Transform -- uid: 2415 - type: ShuttersNormalOpen - components: - - pos: 25.5,-6.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3064 - type: SignalReceiver -- uid: 2416 - type: ShuttersNormalOpen - components: - - pos: 24.5,-6.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3064 - type: SignalReceiver -- uid: 2417 - type: ShuttersNormalOpen - components: - - pos: 23.5,-6.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3064 - type: SignalReceiver -- uid: 2418 - type: ShuttersNormalOpen - components: - - pos: 22.5,-6.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3064 - type: SignalReceiver -- uid: 2419 - type: ShuttersNormalOpen - components: - - pos: 21.5,-6.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3064 - type: SignalReceiver -- uid: 2420 - type: ShuttersNormalOpen - components: - - pos: 20.5,-6.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3064 - type: SignalReceiver -- uid: 2421 - type: ShuttersNormalOpen - components: - - pos: 19.5,-6.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3064 - type: SignalReceiver -- uid: 2422 - type: ShuttersNormalOpen - components: - - pos: 32.5,-8.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3063 - type: SignalReceiver -- uid: 2423 - type: ShuttersNormalOpen - components: - - pos: 31.5,-8.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3063 - type: SignalReceiver -- uid: 2424 - type: ShuttersNormalOpen - components: - - pos: 30.5,-8.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3063 - type: SignalReceiver -- uid: 2425 - type: ShuttersNormalOpen - components: - - pos: 29.5,-8.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3063 - type: SignalReceiver -- uid: 2426 - type: ShuttersNormalOpen - components: - - pos: 28.5,-8.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3063 - type: SignalReceiver -- uid: 2427 - type: ShuttersNormalOpen - components: - - pos: 27.5,-8.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 3063 - type: SignalReceiver -- uid: 2428 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 0 - type: Transform -- uid: 2429 - type: ReinforcedWindow - components: - - pos: -14.5,-32.5 - parent: 0 - type: Transform -- uid: 2430 - type: AirlockBarLocked - components: - - pos: 25.5,-9.5 - parent: 0 - type: Transform -- uid: 2431 - type: AirCanister - components: - - pos: 45.5,0.5 - parent: 0 - type: Transform -- uid: 2432 - type: AirlockBarLocked - components: - - pos: 20.5,-11.5 - parent: 0 - type: Transform -- uid: 2433 - type: AirlockFreezerKitchenHydroLocked - components: - - pos: 34.5,-12.5 - parent: 0 - type: Transform -- uid: 2434 - type: AirlockMaintTheatreLocked - components: - - pos: 40.5,-13.5 - parent: 0 - type: Transform -- uid: 2435 - type: AirlockTheatreLocked - components: - - pos: 37.5,-8.5 - parent: 0 - type: Transform -- uid: 2436 - type: TableReinforced - components: - - pos: 21.5,-8.5 - parent: 0 - type: Transform -- uid: 2437 - type: TableReinforced - components: - - pos: 22.5,-8.5 - parent: 0 - type: Transform -- uid: 2438 - type: TableReinforced - components: - - pos: 21.5,-10.5 - parent: 0 - type: Transform -- uid: 2439 - type: TableReinforced - components: - - pos: 22.5,-10.5 - parent: 0 - type: Transform -- uid: 2440 - type: TableReinforced - components: - - pos: 24.5,-10.5 - parent: 0 - type: Transform -- uid: 2441 - type: TableReinforced - components: - - pos: 23.5,-10.5 - parent: 0 - type: Transform -- uid: 2442 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 - parent: 0 - type: Transform -- uid: 2443 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,-10.5 - parent: 0 - type: Transform -- uid: 2444 - type: DisposalUnit - components: - - pos: 19.5,-7.5 - parent: 0 - type: Transform -- uid: 2445 - type: BoozeDispenser - components: - - pos: 21.5,-8.5 - parent: 0 - type: Transform -- uid: 2446 - type: BoozeDispenser - components: - - rot: 3.141592653589793 rad - pos: 22.5,-10.5 - parent: 0 - type: Transform -- uid: 2447 - type: soda_dispenser - components: - - pos: 22.5,-8.5 - parent: 0 - type: Transform -- uid: 2448 - type: soda_dispenser - components: - - rot: 3.141592653589793 rad - pos: 23.5,-10.5 - parent: 0 - type: Transform -- uid: 2449 - type: KitchenReagentGrinder - components: - - pos: 21.5,-10.5 - parent: 0 - type: Transform -- uid: 2450 - type: DrinkShaker - components: - - pos: 24.22996,-10.469978 - parent: 0 - type: Transform -- uid: 2451 - type: StoolBar - components: - - pos: 25.5,-5.5 - parent: 0 - type: Transform -- uid: 2452 - type: StoolBar - components: - - pos: 24.5,-5.5 - parent: 0 - type: Transform -- uid: 2453 - type: StoolBar - components: - - pos: 23.5,-5.5 - parent: 0 - type: Transform -- uid: 2454 - type: StoolBar - components: - - pos: 22.5,-5.5 - parent: 0 - type: Transform -- uid: 2455 - type: StoolBar - components: - - pos: 21.5,-5.5 - parent: 0 - type: Transform -- uid: 2456 - type: StoolBar - components: - - pos: 20.5,-5.5 - parent: 0 - type: Transform -- uid: 2457 - type: StoolBar - components: - - pos: 32.5,-7.5 - parent: 0 - type: Transform -- uid: 2458 - type: StoolBar - components: - - pos: 31.5,-7.5 - parent: 0 - type: Transform -- uid: 2459 - type: StoolBar - components: - - pos: 30.5,-7.5 - parent: 0 - type: Transform -- uid: 2460 - type: StoolBar - components: - - pos: 29.5,-7.5 - parent: 0 - type: Transform -- uid: 2461 - type: StoolBar - components: - - pos: 28.5,-7.5 - parent: 0 - type: Transform -- uid: 2462 - type: StoolBar - components: - - pos: 27.5,-7.5 - parent: 0 - type: Transform -- uid: 2463 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-8.5 - parent: 0 - type: Transform -- uid: 2464 - type: TableReinforced - components: - - pos: 19.5,-8.5 - parent: 0 - type: Transform -- uid: 2465 - type: PaintingMonkey - components: - - pos: 19.5,-11.5 - parent: 0 - type: Transform -- uid: 2466 - type: PottedPlantRandom - components: - - pos: 19.5,-5.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2467 - type: PottedPlantRandom - components: - - pos: 33.5,-7.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2468 - type: VendingMachineChefDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 35.5,-13.5 - parent: 0 - type: Transform -- uid: 2469 - type: VendingMachineDinnerware - components: - - flags: SessionSpecific - name: Dinnerware - type: MetaData - - pos: 26.5,-12.5 - parent: 0 - type: Transform -- uid: 2470 - type: Table - components: - - pos: 26.5,-11.5 - parent: 0 - type: Transform -- uid: 2471 - type: Table - components: - - pos: 26.5,-10.5 - parent: 0 - type: Transform -- uid: 2472 - type: Table - components: - - pos: 35.5,-10.5 - parent: 0 - type: Transform -- uid: 2473 - type: Table - components: - - pos: 35.5,-9.5 - parent: 0 - type: Transform -- uid: 2474 - type: Table - components: - - pos: 28.5,-10.5 - parent: 0 - type: Transform -- uid: 2475 - type: Table - components: - - pos: 29.5,-10.5 - parent: 0 - type: Transform -- uid: 2476 - type: Table - components: - - pos: 30.5,-10.5 - parent: 0 - type: Transform -- uid: 2477 - type: Table - components: - - pos: 29.5,-11.5 - parent: 0 - type: Transform -- uid: 2478 - type: JetpackBlueFilled - components: - - flags: InContainer - type: MetaData - - parent: 1932 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 2479 - type: ClosetChefFilled - components: - - pos: 30.5,-13.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 2480 - type: ClothingShoesChef - components: - - pos: 33.597214,-11.837595 - parent: 0 - type: Transform -- uid: 2481 - type: DisposalUnit - components: - - pos: 35.5,-11.5 - parent: 0 - type: Transform -- uid: 2482 - type: KitchenMicrowave - components: - - pos: 26.5,-10.5 - parent: 0 - type: Transform -- uid: 2483 - type: KitchenMicrowave - components: - - pos: 30.5,-10.5 - parent: 0 - type: Transform -- uid: 2484 - type: KitchenReagentGrinder - components: - - pos: 29.5,-10.5 - parent: 0 - type: Transform -- uid: 2485 - type: KitchenReagentGrinder - components: - - pos: 35.5,-9.5 - parent: 0 - type: Transform -- uid: 2486 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-12.5 - parent: 0 - type: Transform -- uid: 2487 - type: SinkWide - components: - - pos: 34.5,-9.5 - parent: 0 - type: Transform -- uid: 2488 - type: LockerFreezer - components: - - pos: 33.5,-9.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 2489 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2490 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2491 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -17.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2492 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2493 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2494 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2495 - type: GasPipeTJunction - components: - - pos: 25.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2496 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 2.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2497 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2498 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2499 - type: GasPipeTJunction - components: - - pos: 8.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2500 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2501 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2502 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2503 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2504 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2505 - type: GasPipeFourway - components: - - pos: 7.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2506 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2507 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2508 - type: GasPipeTJunction - components: - - pos: 24.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2509 - type: GasPipeTJunction - components: - - pos: -7.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2510 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2511 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 24.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2512 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 25.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2513 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2514 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2515 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2516 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2517 - type: GasPipeTJunction - components: - - pos: 20.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2518 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2519 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2520 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2521 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2522 - type: GasPipeStraight - components: - - pos: 25.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2523 - type: GasPipeStraight - components: - - pos: 25.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2524 - type: GasPipeStraight - components: - - pos: 25.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2525 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 24.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2526 - type: GasPipeStraight - components: - - pos: 25.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2527 - type: GasPipeStraight - components: - - pos: 24.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2528 - type: GasPipeStraight - components: - - pos: 24.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2529 - type: GasPipeStraight - components: - - pos: 24.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2530 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 25.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2531 - type: GasPipeStraight - components: - - pos: 24.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2532 - type: GasPipeStraight - components: - - pos: 24.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2533 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2534 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2535 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2536 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2537 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2538 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2539 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2540 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2541 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2542 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2543 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2544 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2545 - type: GasPipeFourway - components: - - pos: 27.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2546 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2547 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2548 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2549 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2550 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2551 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2552 - type: GasPipeTJunction - components: - - pos: 27.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2553 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2554 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2555 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2556 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2557 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2558 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2559 - type: ReinforcedWindow - components: - - pos: 6.5,5.5 - parent: 0 - type: Transform -- uid: 2560 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2561 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2562 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2563 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2564 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2565 - type: GasPipeStraight - components: - - pos: 27.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2566 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 28.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2567 - type: CableApcExtension - components: - - pos: 28.5,-18.5 - parent: 0 - type: Transform -- uid: 2568 - type: GasPipeBend - components: - - pos: 18.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2569 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 18.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2570 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 27.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2571 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2572 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2573 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2574 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2575 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2576 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2577 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2578 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2579 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2580 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2581 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2582 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2583 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2584 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2585 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2586 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2587 - type: GasPipeStraight - components: - - pos: 28.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2588 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 20.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2589 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 26.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2590 - type: GasPipeStraight - components: - - pos: 28.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2591 - type: GasPipeStraight - components: - - pos: 28.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2592 - type: GasPipeTJunction - components: - - pos: 16.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2593 - type: GasPipeStraight - components: - - pos: 28.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2594 - type: GasPipeStraight - components: - - pos: 28.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2595 - type: GasPipeStraight - components: - - pos: 28.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2596 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2597 - type: GasPipeStraight - components: - - pos: 28.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2598 - type: GasPipeStraight - components: - - pos: 28.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2599 - type: GasPipeStraight - components: - - pos: 28.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2600 - type: GasPipeStraight - components: - - pos: 28.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2601 - type: GasPipeStraight - components: - - pos: 28.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2602 - type: GasPipeStraight - components: - - pos: 28.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2603 - type: GasPipeStraight - components: - - pos: 28.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2604 - type: GasPipeStraight - components: - - pos: 28.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2605 - type: GasPipeTJunction - components: - - pos: 28.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2606 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2607 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2608 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2609 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2610 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2611 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2612 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 33.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2613 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2614 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2615 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2616 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2617 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2618 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2619 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2620 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2621 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2622 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2623 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2624 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2625 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2626 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2627 - type: WallSolid - components: - - pos: 30.5,1.5 - parent: 0 - type: Transform -- uid: 2628 - type: WallSolid - components: - - pos: 31.5,1.5 - parent: 0 - type: Transform -- uid: 2629 - type: WallSolid - components: - - pos: 32.5,1.5 - parent: 0 - type: Transform -- uid: 2630 - type: GasThermoMachineFreezer - components: - - pos: 33.5,-13.5 - parent: 0 - type: Transform -- uid: 2631 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2632 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2633 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2634 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2635 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2636 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2637 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2638 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2639 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 20.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2640 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2641 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 20.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2642 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2643 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2644 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2645 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2646 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2647 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2648 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2649 - type: GasPipeBend - components: - - pos: 34.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2650 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2651 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2652 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2653 - type: GasPressurePump - components: - - pos: 34.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2654 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2655 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2656 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 33.5,-15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2657 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2658 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2659 - type: GasPipeBend - components: - - pos: 37.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2660 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2661 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2662 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2663 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2664 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2665 - type: GasPipeTJunction - components: - - pos: 29.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2666 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2667 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2668 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2669 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2670 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2671 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2672 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2673 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2674 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2675 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2676 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 37.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2677 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2678 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2679 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2680 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2681 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2682 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2683 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2684 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2685 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2686 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2687 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2688 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2689 - type: GasPipeStraight - components: - - pos: 40.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2690 - type: GasPipeStraight - components: - - pos: 40.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2691 - type: GasPipeStraight - components: - - pos: 40.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2692 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2693 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2694 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2695 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2696 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2697 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2698 - type: GasVentScrubber - components: - - pos: 41.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2699 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2700 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 33.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2701 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2702 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2703 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2704 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2705 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2706 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2707 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2708 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2709 - type: WallSolid - components: - - pos: 39.5,-3.5 - parent: 0 - type: Transform -- uid: 2710 - type: GasPipeBend - components: - - pos: 20.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2711 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2712 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2713 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 23.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2714 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 26.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2715 - type: GasPipeTJunction - components: - - pos: 33.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2716 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 33.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2717 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 29.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2718 - type: SignDirectionalHydro - components: - - pos: 18.500969,1.0500911 - parent: 0 - type: Transform -- uid: 2719 - type: SignDirectionalDorms - components: - - rot: 3.141592653589793 rad - pos: 14.500969,-6.111933 - parent: 0 - type: Transform -- uid: 2720 - type: Table - components: - - pos: 31.5,-0.5 - parent: 0 - type: Transform -- uid: 2721 - type: Table - components: - - pos: 31.5,0.5 - parent: 0 - type: Transform -- uid: 2722 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-0.5 - parent: 0 - type: Transform -- uid: 2723 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 32.5,0.5 - parent: 0 - type: Transform -- uid: 2724 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-0.5 - parent: 0 - type: Transform -- uid: 2725 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 30.5,0.5 - parent: 0 - type: Transform -- uid: 2726 - type: RailingCornerSmall - components: - - pos: 22.5,-1.5 - parent: 0 - type: Transform -- uid: 2727 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-0.5 - parent: 0 - type: Transform -- uid: 2728 - type: Table - components: - - pos: 20.5,0.5 - parent: 0 - type: Transform -- uid: 2729 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-0.5 - parent: 0 - type: Transform -- uid: 2730 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-1.5 - parent: 0 - type: Transform -- uid: 2731 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 29.5,0.5 - parent: 0 - type: Transform -- uid: 2732 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-0.5 - parent: 0 - type: Transform -- uid: 2733 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-0.5 - parent: 0 - type: Transform -- uid: 2734 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 19.5,0.5 - parent: 0 - type: Transform -- uid: 2735 - type: DisposalUnit - components: - - pos: 29.5,0.5 - parent: 0 - type: Transform -- uid: 2736 - type: RandomVendingSnacks - components: - - pos: 27.5,0.5 - parent: 0 - type: Transform -- uid: 2737 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 34.5,-7.5 - parent: 0 - type: Transform -- uid: 2738 - type: RandomVendingDrinks - components: - - pos: 28.5,0.5 - parent: 0 - type: Transform -- uid: 2739 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-7.5 - parent: 0 - type: Transform -- uid: 2740 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-6.5 - parent: 0 - type: Transform -- uid: 2741 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 0 - type: Transform -- uid: 2742 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-4.5 - parent: 0 - type: Transform -- uid: 2743 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-3.5 - parent: 0 - type: Transform -- uid: 2744 - type: WindoorTheatreLocked - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-2.5 - parent: 0 - type: Transform -- uid: 2745 - type: TableWood - components: - - pos: 34.5,-3.5 - parent: 0 - type: Transform -- uid: 2746 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-6.5 - parent: 0 - type: Transform -- uid: 2747 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-5.5 - parent: 0 - type: Transform -- uid: 2748 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-4.5 - parent: 0 - type: Transform -- uid: 2749 - type: TableWood - components: - - pos: 28.5,-4.5 - parent: 0 - type: Transform -- uid: 2750 - type: TableWood - components: - - pos: 27.5,-4.5 - parent: 0 - type: Transform -- uid: 2751 - type: TableWood - components: - - pos: 22.5,-3.5 - parent: 0 - type: Transform -- uid: 2752 - type: TableCarpet - components: - - pos: 26.5,-2.5 - parent: 0 - type: Transform -- uid: 2753 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 27.5,-5.5 - parent: 0 - type: Transform -- uid: 2754 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 28.5,-5.5 - parent: 0 - type: Transform -- uid: 2755 - type: ChairWood - components: - - pos: 27.5,-3.5 - parent: 0 - type: Transform -- uid: 2756 - type: ChairWood - components: - - pos: 28.5,-3.5 - parent: 0 - type: Transform -- uid: 2757 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-3.5 - parent: 0 - type: Transform -- uid: 2758 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-3.5 - parent: 0 - type: Transform -- uid: 2759 - type: TableCarpet - components: - - pos: 26.5,-1.5 - parent: 0 - type: Transform -- uid: 2760 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-1.5 - parent: 0 - type: Transform -- uid: 2761 - type: DiceBag - components: - - pos: 25.49422,-1.5517087 - parent: 0 - type: Transform -- uid: 2762 - type: TableWood - components: - - pos: 31.5,-3.5 - parent: 0 - type: Transform -- uid: 2763 - type: ChairWood - components: - - pos: 31.5,-2.5 - parent: 0 - type: Transform -- uid: 2764 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-3.5 - parent: 0 - type: Transform -- uid: 2765 - type: TableCarpet - components: - - pos: 25.5,-1.5 - parent: 0 - type: Transform -- uid: 2766 - type: TableCarpet - components: - - pos: 25.5,-2.5 - parent: 0 - type: Transform -- uid: 2767 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 0 - type: Transform -- uid: 2768 - type: ClothingHeadHatFedoraGrey - components: - - pos: 34.50193,-3.4687605 - parent: 0 - type: Transform -- uid: 2769 - type: ToySpawner - components: - - pos: 26.5,-1.5 - parent: 0 - type: Transform -- uid: 2770 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-2.5 - parent: 0 - type: Transform -- uid: 2771 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 - parent: 0 - type: Transform -- uid: 2772 - type: ParchisBoard - components: - - pos: 26.36922,-2.2548337 - parent: 0 - type: Transform -- uid: 2773 - type: TableWood - components: - - pos: 38.5,-7.5 - parent: 0 - type: Transform -- uid: 2774 - type: APCBasic - components: - - pos: 34.5,-1.5 - parent: 0 - type: Transform -- uid: 2775 - type: TableWood - components: - - pos: 38.5,-5.5 - parent: 0 - type: Transform -- uid: 2776 - type: TableWood - components: - - pos: 38.5,-4.5 - parent: 0 - type: Transform -- uid: 2777 - type: TableWood - components: - - pos: 38.5,-3.5 - parent: 0 - type: Transform -- uid: 2778 - type: TableWood - components: - - pos: 38.5,-2.5 - parent: 0 - type: Transform -- uid: 2779 - type: APCBasic - components: - - pos: 24.5,-11.5 - parent: 0 - type: Transform -- uid: 2780 - type: APCBasic - components: - - pos: 31.5,-14.5 - parent: 0 - type: Transform -- uid: 2781 - type: WallSolid - components: - - pos: 36.5,1.5 - parent: 0 - type: Transform -- uid: 2782 - type: AirlockEngineeringLocked - components: - - pos: 38.5,-0.5 - parent: 0 - type: Transform -- uid: 2783 - type: SignElectricalMed - components: - - pos: 38.5,0.5 - parent: 0 - type: Transform -- uid: 2784 - type: Catwalk - components: - - pos: 36.5,-0.5 - parent: 0 - type: Transform -- uid: 2785 - type: CableMV - components: - - pos: 34.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2786 - type: CableMV - components: - - pos: 34.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2787 - type: CableMV - components: - - pos: 36.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2788 - type: Catwalk - components: - - pos: 37.5,-0.5 - parent: 0 - type: Transform -- uid: 2789 - type: CableMV - components: - - pos: 35.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2790 - type: SubstationBasic - components: - - name: Bar Substation - type: MetaData - - pos: 34.5,-0.5 - parent: 0 - type: Transform -- uid: 2791 - type: CableMV - components: - - pos: 37.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2792 - type: CableMV - components: - - pos: 38.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2793 - type: CableMV - components: - - pos: 39.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2794 - type: CableMV - components: - - pos: 40.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2795 - type: CableMV - components: - - pos: 40.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2796 - type: CableMV - components: - - pos: 40.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2797 - type: CableMV - components: - - pos: 40.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2798 - type: CableMV - components: - - pos: 40.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2799 - type: CableMV - components: - - pos: 40.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2800 - type: CableMV - components: - - pos: 40.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2801 - type: CableMV - components: - - pos: 39.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2802 - type: CableMV - components: - - pos: 38.5,-6.5 - parent: 0 - type: Transform -- uid: 2803 - type: CableMV - components: - - pos: 37.5,-6.5 - parent: 0 - type: Transform -- uid: 2804 - type: CableMV - components: - - pos: 37.5,-5.5 - parent: 0 - type: Transform -- uid: 2805 - type: CableMV - components: - - pos: 37.5,-4.5 - parent: 0 - type: Transform -- uid: 2806 - type: CableMV - components: - - pos: 37.5,-3.5 - parent: 0 - type: Transform -- uid: 2807 - type: CableMV - components: - - pos: 37.5,-2.5 - parent: 0 - type: Transform -- uid: 2808 - type: CableMV - components: - - pos: 36.5,-2.5 - parent: 0 - type: Transform -- uid: 2809 - type: CableMV - components: - - pos: 35.5,-2.5 - parent: 0 - type: Transform -- uid: 2810 - type: CableMV - components: - - pos: 34.5,-2.5 - parent: 0 - type: Transform -- uid: 2811 - type: CableMV - components: - - pos: 33.5,-2.5 - parent: 0 - type: Transform -- uid: 2812 - type: CableMV - components: - - pos: 32.5,-2.5 - parent: 0 - type: Transform -- uid: 2813 - type: CableMV - components: - - pos: 31.5,-2.5 - parent: 0 - type: Transform -- uid: 2814 - type: CableMV - components: - - pos: 30.5,-2.5 - parent: 0 - type: Transform -- uid: 2815 - type: CableMV - components: - - pos: 29.5,-2.5 - parent: 0 - type: Transform -- uid: 2816 - type: CableMV - components: - - pos: 28.5,-2.5 - parent: 0 - type: Transform -- uid: 2817 - type: CableMV - components: - - pos: 27.5,-2.5 - parent: 0 - type: Transform -- uid: 2818 - type: CableMV - components: - - pos: 26.5,-2.5 - parent: 0 - type: Transform -- uid: 2819 - type: CableMV - components: - - pos: 26.5,-3.5 - parent: 0 - type: Transform -- uid: 2820 - type: CableMV - components: - - pos: 26.5,-4.5 - parent: 0 - type: Transform -- uid: 2821 - type: CableMV - components: - - pos: 26.5,-5.5 - parent: 0 - type: Transform -- uid: 2822 - type: CableMV - components: - - pos: 26.5,-6.5 - parent: 0 - type: Transform -- uid: 2823 - type: CableMV - components: - - pos: 26.5,-7.5 - parent: 0 - type: Transform -- uid: 2824 - type: CableMV - components: - - pos: 26.5,-8.5 - parent: 0 - type: Transform -- uid: 2825 - type: CableMV - components: - - pos: 26.5,-9.5 - parent: 0 - type: Transform -- uid: 2826 - type: CableMV - components: - - pos: 27.5,-9.5 - parent: 0 - type: Transform -- uid: 2827 - type: CableMV - components: - - pos: 27.5,-10.5 - parent: 0 - type: Transform -- uid: 2828 - type: CableMV - components: - - pos: 27.5,-11.5 - parent: 0 - type: Transform -- uid: 2829 - type: CableMV - components: - - pos: 27.5,-12.5 - parent: 0 - type: Transform -- uid: 2830 - type: CableMV - components: - - pos: 27.5,-13.5 - parent: 0 - type: Transform -- uid: 2831 - type: CableMV - components: - - pos: 26.5,-13.5 - parent: 0 - type: Transform -- uid: 2832 - type: CableMV - components: - - pos: 25.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2833 - type: CableMV - components: - - pos: 24.5,-13.5 - parent: 0 - type: Transform -- uid: 2834 - type: CableMV - components: - - pos: 24.5,-12.5 - parent: 0 - type: Transform -- uid: 2835 - type: CableMV - components: - - pos: 24.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2836 - type: CableMV - components: - - pos: 27.5,-14.5 - parent: 0 - type: Transform -- uid: 2837 - type: CableMV - components: - - pos: 27.5,-15.5 - parent: 0 - type: Transform -- uid: 2838 - type: CableMV - components: - - pos: 28.5,-15.5 - parent: 0 - type: Transform -- uid: 2839 - type: CableMV - components: - - pos: 29.5,-15.5 - parent: 0 - type: Transform -- uid: 2840 - type: CableMV - components: - - pos: 30.5,-15.5 - parent: 0 - type: Transform -- uid: 2841 - type: CableMV - components: - - pos: 31.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2842 - type: CableMV - components: - - pos: 31.5,-15.5 - parent: 0 - type: Transform -- uid: 2843 - type: CableMV - components: - - pos: 41.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2844 - type: CableMV - components: - - pos: 43.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2845 - type: CableMV - components: - - pos: 43.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2846 - type: CableMV - components: - - pos: 42.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2847 - type: CableMV - components: - - pos: 43.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2848 - type: CableMV - components: - - pos: 43.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2849 - type: CableMV - components: - - pos: 43.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2850 - type: CableMV - components: - - pos: 43.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2851 - type: CableMV - components: - - pos: 43.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2852 - type: CableMV - components: - - pos: 43.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2853 - type: CableMV - components: - - pos: 43.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2854 - type: CableMV - components: - - pos: 43.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2855 - type: CableMV - components: - - pos: 43.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2856 - type: CableMV - components: - - pos: 42.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2857 - type: CableMV - components: - - pos: 41.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2858 - type: CableMV - components: - - pos: 40.5,-15.5 - parent: 0 - type: Transform -- uid: 2859 - type: CableMV - components: - - pos: 39.5,-15.5 - parent: 0 - type: Transform -- uid: 2860 - type: CableMV - components: - - pos: 38.5,-15.5 - parent: 0 - type: Transform -- uid: 2861 - type: CableMV - components: - - pos: 37.5,-15.5 - parent: 0 - type: Transform -- uid: 2862 - type: CableMV - components: - - pos: 36.5,-15.5 - parent: 0 - type: Transform -- uid: 2863 - type: CableMV - components: - - pos: 35.5,-15.5 - parent: 0 - type: Transform -- uid: 2864 - type: CableMV - components: - - pos: 34.5,-15.5 - parent: 0 - type: Transform -- uid: 2865 - type: CableMV - components: - - pos: 34.5,-14.5 - parent: 0 - type: Transform -- uid: 2866 - type: CableMV - components: - - pos: 34.5,-13.5 - parent: 0 - type: Transform -- uid: 2867 - type: CableMV - components: - - pos: 34.5,-12.5 - parent: 0 - type: Transform -- uid: 2868 - type: CableMV - components: - - pos: 34.5,-11.5 - parent: 0 - type: Transform -- uid: 2869 - type: CableMV - components: - - pos: 33.5,-11.5 - parent: 0 - type: Transform -- uid: 2870 - type: CableMV - components: - - pos: 32.5,-11.5 - parent: 0 - type: Transform -- uid: 2871 - type: CableMV - components: - - pos: 31.5,-11.5 - parent: 0 - type: Transform -- uid: 2872 - type: CableMV - components: - - pos: 30.5,-11.5 - parent: 0 - type: Transform -- uid: 2873 - type: CableMV - components: - - pos: 29.5,-11.5 - parent: 0 - type: Transform -- uid: 2874 - type: CableMV - components: - - pos: 28.5,-11.5 - parent: 0 - type: Transform -- uid: 2875 - type: CableApcExtension - components: - - pos: 24.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2876 - type: CableApcExtension - components: - - pos: 24.5,-10.5 - parent: 0 - type: Transform -- uid: 2877 - type: CableApcExtension - components: - - pos: 24.5,-9.5 - parent: 0 - type: Transform -- uid: 2878 - type: CableApcExtension - components: - - pos: 24.5,-8.5 - parent: 0 - type: Transform -- uid: 2879 - type: CableApcExtension - components: - - pos: 24.5,-7.5 - parent: 0 - type: Transform -- uid: 2880 - type: CableApcExtension - components: - - pos: 23.5,-9.5 - parent: 0 - type: Transform -- uid: 2881 - type: CableApcExtension - components: - - pos: 22.5,-9.5 - parent: 0 - type: Transform -- uid: 2882 - type: CableApcExtension - components: - - pos: 21.5,-9.5 - parent: 0 - type: Transform -- uid: 2883 - type: CableApcExtension - components: - - pos: 20.5,-9.5 - parent: 0 - type: Transform -- uid: 2884 - type: CableApcExtension - components: - - pos: 24.5,-6.5 - parent: 0 - type: Transform -- uid: 2885 - type: CableApcExtension - components: - - pos: 24.5,-5.5 - parent: 0 - type: Transform -- uid: 2886 - type: CableApcExtension - components: - - pos: 24.5,-4.5 - parent: 0 - type: Transform -- uid: 2887 - type: CableApcExtension - components: - - pos: 24.5,-3.5 - parent: 0 - type: Transform -- uid: 2888 - type: CableApcExtension - components: - - pos: 24.5,-2.5 - parent: 0 - type: Transform -- uid: 2889 - type: CableApcExtension - components: - - pos: 24.5,-1.5 - parent: 0 - type: Transform -- uid: 2890 - type: CableApcExtension - components: - - pos: 24.5,-0.5 - parent: 0 - type: Transform -- uid: 2891 - type: CableApcExtension - components: - - pos: 24.5,0.5 - parent: 0 - type: Transform -- uid: 2892 - type: CableApcExtension - components: - - pos: 23.5,-4.5 - parent: 0 - type: Transform -- uid: 2893 - type: CableApcExtension - components: - - pos: 22.5,-4.5 - parent: 0 - type: Transform -- uid: 2894 - type: CableApcExtension - components: - - pos: 21.5,-4.5 - parent: 0 - type: Transform -- uid: 2895 - type: CableApcExtension - components: - - pos: 20.5,-4.5 - parent: 0 - type: Transform -- uid: 2896 - type: CableApcExtension - components: - - pos: 19.5,-4.5 - parent: 0 - type: Transform -- uid: 2897 - type: CableApcExtension - components: - - pos: 23.5,-1.5 - parent: 0 - type: Transform -- uid: 2898 - type: CableApcExtension - components: - - pos: 22.5,-1.5 - parent: 0 - type: Transform -- uid: 2899 - type: CableApcExtension - components: - - pos: 21.5,-1.5 - parent: 0 - type: Transform -- uid: 2900 - type: CableApcExtension - components: - - pos: 20.5,-1.5 - parent: 0 - type: Transform -- uid: 2901 - type: CableApcExtension - components: - - pos: 19.5,-1.5 - parent: 0 - type: Transform -- uid: 2902 - type: CableApcExtension - components: - - pos: 24.5,-12.5 - parent: 0 - type: Transform -- uid: 2903 - type: CableApcExtension - components: - - pos: 24.5,-13.5 - parent: 0 - type: Transform -- uid: 2904 - type: CableApcExtension - components: - - pos: 23.5,-13.5 - parent: 0 - type: Transform -- uid: 2905 - type: CableApcExtension - components: - - pos: 22.5,-13.5 - parent: 0 - type: Transform -- uid: 2906 - type: CableApcExtension - components: - - pos: 21.5,-13.5 - parent: 0 - type: Transform -- uid: 2907 - type: CableApcExtension - components: - - pos: 20.5,-13.5 - parent: 0 - type: Transform -- uid: 2908 - type: CableApcExtension - components: - - pos: 19.5,-13.5 - parent: 0 - type: Transform -- uid: 2909 - type: CableApcExtension - components: - - pos: 34.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2910 - type: CableApcExtension - components: - - pos: 34.5,-2.5 - parent: 0 - type: Transform -- uid: 2911 - type: CableApcExtension - components: - - pos: 34.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2912 - type: CableApcExtension - components: - - pos: 35.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2913 - type: CableApcExtension - components: - - pos: 36.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2914 - type: CableApcExtension - components: - - pos: 37.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2915 - type: CableApcExtension - components: - - pos: 33.5,-2.5 - parent: 0 - type: Transform -- uid: 2916 - type: CableApcExtension - components: - - pos: 32.5,-2.5 - parent: 0 - type: Transform -- uid: 2917 - type: CableApcExtension - components: - - pos: 31.5,-2.5 - parent: 0 - type: Transform -- uid: 2918 - type: CableApcExtension - components: - - pos: 30.5,-2.5 - parent: 0 - type: Transform -- uid: 2919 - type: CableApcExtension - components: - - pos: 29.5,-2.5 - parent: 0 - type: Transform -- uid: 2920 - type: CableApcExtension - components: - - pos: 28.5,-2.5 - parent: 0 - type: Transform -- uid: 2921 - type: CableApcExtension - components: - - pos: 28.5,-1.5 - parent: 0 - type: Transform -- uid: 2922 - type: CableApcExtension - components: - - pos: 28.5,-0.5 - parent: 0 - type: Transform -- uid: 2923 - type: CableApcExtension - components: - - pos: 28.5,0.5 - parent: 0 - type: Transform -- uid: 2924 - type: CableApcExtension - components: - - pos: 28.5,-3.5 - parent: 0 - type: Transform -- uid: 2925 - type: CableApcExtension - components: - - pos: 28.5,-4.5 - parent: 0 - type: Transform -- uid: 2926 - type: CableApcExtension - components: - - pos: 28.5,-5.5 - parent: 0 - type: Transform -- uid: 2927 - type: CableApcExtension - components: - - pos: 28.5,-6.5 - parent: 0 - type: Transform -- uid: 2928 - type: CableApcExtension - components: - - pos: 28.5,-7.5 - parent: 0 - type: Transform -- uid: 2929 - type: CableApcExtension - components: - - pos: 35.5,-2.5 - parent: 0 - type: Transform -- uid: 2930 - type: CableApcExtension - components: - - pos: 37.5,-2.5 - parent: 0 - type: Transform -- uid: 2931 - type: CableApcExtension - components: - - pos: 36.5,-2.5 - parent: 0 - type: Transform -- uid: 2932 - type: CableApcExtension - components: - - pos: 37.5,-3.5 - parent: 0 - type: Transform -- uid: 2933 - type: CableApcExtension - components: - - pos: 37.5,-4.5 - parent: 0 - type: Transform -- uid: 2934 - type: CableApcExtension - components: - - pos: 37.5,-5.5 - parent: 0 - type: Transform -- uid: 2935 - type: CableApcExtension - components: - - pos: 37.5,-6.5 - parent: 0 - type: Transform -- uid: 2936 - type: CableApcExtension - components: - - pos: 37.5,-7.5 - parent: 0 - type: Transform -- uid: 2937 - type: CableApcExtension - components: - - pos: 37.5,-8.5 - parent: 0 - type: Transform -- uid: 2938 - type: CableApcExtension - components: - - pos: 37.5,-9.5 - parent: 0 - type: Transform -- uid: 2939 - type: CableApcExtension - components: - - pos: 37.5,-10.5 - parent: 0 - type: Transform -- uid: 2940 - type: CableApcExtension - components: - - pos: 37.5,-11.5 - parent: 0 - type: Transform -- uid: 2941 - type: CableApcExtension - components: - - pos: 37.5,-12.5 - parent: 0 - type: Transform -- uid: 2942 - type: CableApcExtension - components: - - pos: 37.5,-13.5 - parent: 0 - type: Transform -- uid: 2943 - type: CableApcExtension - components: - - pos: 38.5,-10.5 - parent: 0 - type: Transform -- uid: 2944 - type: CableApcExtension - components: - - pos: 39.5,-10.5 - parent: 0 - type: Transform -- uid: 2945 - type: CableApcExtension - components: - - pos: 40.5,-10.5 - parent: 0 - type: Transform -- uid: 2946 - type: CableApcExtension - components: - - pos: 41.5,-10.5 - parent: 0 - type: Transform -- uid: 2947 - type: CableApcExtension - components: - - pos: 38.5,-12.5 - parent: 0 - type: Transform -- uid: 2948 - type: CableApcExtension - components: - - pos: 39.5,-12.5 - parent: 0 - type: Transform -- uid: 2949 - type: CableApcExtension - components: - - pos: 40.5,-12.5 - parent: 0 - type: Transform -- uid: 2950 - type: CableApcExtension - components: - - pos: 41.5,-12.5 - parent: 0 - type: Transform -- uid: 2951 - type: CableApcExtension - components: - - pos: 38.5,-6.5 - parent: 0 - type: Transform -- uid: 2952 - type: CableApcExtension - components: - - pos: 39.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2953 - type: CableApcExtension - components: - - pos: 40.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2954 - type: CableApcExtension - components: - - pos: 40.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2955 - type: CableApcExtension - components: - - pos: 40.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2956 - type: CableApcExtension - components: - - pos: 40.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2957 - type: CableApcExtension - components: - - pos: 40.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2958 - type: CableApcExtension - components: - - pos: 40.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2959 - type: CableApcExtension - components: - - pos: 40.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2960 - type: CableApcExtension - components: - - pos: 40.5,-13.5 - parent: 0 - type: Transform -- uid: 2961 - type: CableApcExtension - components: - - pos: 40.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2962 - type: CableApcExtension - components: - - pos: 40.5,-15.5 - parent: 0 - type: Transform -- uid: 2963 - type: CableApcExtension - components: - - pos: 40.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2964 - type: CableApcExtension - components: - - pos: 31.5,-13.5 - parent: 0 - type: Transform -- uid: 2965 - type: CableApcExtension - components: - - pos: 31.5,-12.5 - parent: 0 - type: Transform -- uid: 2966 - type: CableApcExtension - components: - - pos: 31.5,-11.5 - parent: 0 - type: Transform -- uid: 2967 - type: CableApcExtension - components: - - pos: 31.5,-10.5 - parent: 0 - type: Transform -- uid: 2968 - type: CableApcExtension - components: - - pos: 31.5,-9.5 - parent: 0 - type: Transform -- uid: 2969 - type: CableApcExtension - components: - - pos: 30.5,-9.5 - parent: 0 - type: Transform -- uid: 2970 - type: CableApcExtension - components: - - pos: 29.5,-9.5 - parent: 0 - type: Transform -- uid: 2971 - type: CableApcExtension - components: - - pos: 28.5,-9.5 - parent: 0 - type: Transform -- uid: 2972 - type: CableApcExtension - components: - - pos: 27.5,-9.5 - parent: 0 - type: Transform -- uid: 2973 - type: CableApcExtension - components: - - pos: 30.5,-12.5 - parent: 0 - type: Transform -- uid: 2974 - type: CableApcExtension - components: - - pos: 29.5,-12.5 - parent: 0 - type: Transform -- uid: 2975 - type: CableApcExtension - components: - - pos: 28.5,-12.5 - parent: 0 - type: Transform -- uid: 2976 - type: CableApcExtension - components: - - pos: 27.5,-12.5 - parent: 0 - type: Transform -- uid: 2977 - type: CableApcExtension - components: - - pos: 32.5,-11.5 - parent: 0 - type: Transform -- uid: 2978 - type: CableApcExtension - components: - - pos: 33.5,-11.5 - parent: 0 - type: Transform -- uid: 2979 - type: CableApcExtension - components: - - pos: 34.5,-11.5 - parent: 0 - type: Transform -- uid: 2980 - type: CableApcExtension - components: - - pos: 34.5,-12.5 - parent: 0 - type: Transform -- uid: 2981 - type: CableApcExtension - components: - - pos: 34.5,-13.5 - parent: 0 - type: Transform -- uid: 2982 - type: CableApcExtension - components: - - pos: 34.5,-14.5 - parent: 0 - type: Transform -- uid: 2983 - type: CableApcExtension - components: - - pos: 34.5,-15.5 - parent: 0 - type: Transform -- uid: 2984 - type: CableApcExtension - components: - - pos: 34.5,-16.5 - parent: 0 - type: Transform -- uid: 2985 - type: CableApcExtension - components: - - pos: 35.5,-16.5 - parent: 0 - type: Transform -- uid: 2986 - type: CableApcExtension - components: - - pos: 36.5,-16.5 - parent: 0 - type: Transform -- uid: 2987 - type: CableApcExtension - components: - - pos: 37.5,-16.5 - parent: 0 - type: Transform -- uid: 2988 - type: CableApcExtension - components: - - pos: 38.5,-16.5 - parent: 0 - type: Transform -- uid: 2989 - type: CableApcExtension - components: - - pos: 31.5,-15.5 - parent: 0 - type: Transform -- uid: 2990 - type: CableApcExtension - components: - - pos: 31.5,-16.5 - parent: 0 - type: Transform -- uid: 2991 - type: CableApcExtension - components: - - pos: 31.5,-17.5 - parent: 0 - type: Transform -- uid: 2992 - type: CableApcExtension - components: - - pos: 31.5,-18.5 - parent: 0 - type: Transform -- uid: 2993 - type: CableApcExtension - components: - - pos: 31.5,-19.5 - parent: 0 - type: Transform -- uid: 2994 - type: CableApcExtension - components: - - pos: 30.5,-21.5 - parent: 0 - type: Transform -- uid: 2995 - type: CableApcExtension - components: - - pos: 30.5,-22.5 - parent: 0 - type: Transform -- uid: 2996 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 3.141592653589793 rad - pos: -63.5,-5.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 2997 - type: CableApcExtension - components: - - pos: 31.5,-23.5 - parent: 0 - type: Transform -- uid: 2998 - type: CableApcExtension - components: - - pos: 31.5,-24.5 - parent: 0 - type: Transform -- uid: 2999 - type: CableApcExtension - components: - - pos: 32.5,-23.5 - parent: 0 - type: Transform -- uid: 3000 - type: CableApcExtension - components: - - pos: 33.5,-23.5 - parent: 0 - type: Transform -- uid: 3001 - type: CableApcExtension - components: - - pos: 34.5,-23.5 - parent: 0 - type: Transform -- uid: 3002 - type: CableApcExtension - components: - - pos: 34.5,-22.5 - parent: 0 - type: Transform -- uid: 3003 - type: CableApcExtension - components: - - pos: 34.5,-21.5 - parent: 0 - type: Transform -- uid: 3004 - type: CableApcExtension - components: - - pos: 34.5,-20.5 - parent: 0 - type: Transform -- uid: 3005 - type: CableApcExtension - components: - - pos: 34.5,-19.5 - parent: 0 - type: Transform -- uid: 3006 - type: CableApcExtension - components: - - pos: 34.5,-18.5 - parent: 0 - type: Transform -- uid: 3007 - type: CableApcExtension - components: - - pos: 33.5,-18.5 - parent: 0 - type: Transform -- uid: 3008 - type: CableApcExtension - components: - - pos: 32.5,-18.5 - parent: 0 - type: Transform -- uid: 3009 - type: CableApcExtension - components: - - pos: 30.5,-23.5 - parent: 0 - type: Transform -- uid: 3010 - type: CableApcExtension - components: - - pos: 29.5,-23.5 - parent: 0 - type: Transform -- uid: 3011 - type: CableApcExtension - components: - - pos: 28.5,-23.5 - parent: 0 - type: Transform -- uid: 3012 - type: CableApcExtension - components: - - pos: 27.5,-23.5 - parent: 0 - type: Transform -- uid: 3013 - type: CableApcExtension - components: - - pos: 26.5,-23.5 - parent: 0 - type: Transform -- uid: 3014 - type: CableApcExtension - components: - - pos: 25.5,-23.5 - parent: 0 - type: Transform -- uid: 3015 - type: CableApcExtension - components: - - pos: 24.5,-23.5 - parent: 0 - type: Transform -- uid: 3016 - type: CableApcExtension - components: - - pos: 23.5,-23.5 - parent: 0 - type: Transform -- uid: 3017 - type: CableApcExtension - components: - - pos: 22.5,-23.5 - parent: 0 - type: Transform -- uid: 3018 - type: CableApcExtension - components: - - pos: 21.5,-23.5 - parent: 0 - type: Transform -- uid: 3019 - type: CableApcExtension - components: - - pos: 20.5,-23.5 - parent: 0 - type: Transform -- uid: 3020 - type: CableApcExtension - components: - - pos: 19.5,-23.5 - parent: 0 - type: Transform -- uid: 3021 - type: CableApcExtension - components: - - pos: 18.5,-23.5 - parent: 0 - type: Transform -- uid: 3022 - type: CableApcExtension - components: - - pos: 18.5,-22.5 - parent: 0 - type: Transform -- uid: 3023 - type: CableApcExtension - components: - - pos: 18.5,-21.5 - parent: 0 - type: Transform -- uid: 3024 - type: CableApcExtension - components: - - pos: 18.5,-20.5 - parent: 0 - type: Transform -- uid: 3025 - type: CableApcExtension - components: - - pos: 18.5,-19.5 - parent: 0 - type: Transform -- uid: 3026 - type: CableApcExtension - components: - - pos: 18.5,-18.5 - parent: 0 - type: Transform -- uid: 3027 - type: CableApcExtension - components: - - pos: 18.5,-17.5 - parent: 0 - type: Transform -- uid: 3028 - type: CableApcExtension - components: - - pos: 18.5,-16.5 - parent: 0 - type: Transform -- uid: 3029 - type: CableApcExtension - components: - - pos: 30.5,-16.5 - parent: 0 - type: Transform -- uid: 3030 - type: CableApcExtension - components: - - pos: 29.5,-16.5 - parent: 0 - type: Transform -- uid: 3031 - type: CableApcExtension - components: - - pos: 28.5,-16.5 - parent: 0 - type: Transform -- uid: 3032 - type: CableApcExtension - components: - - pos: 27.5,-16.5 - parent: 0 - type: Transform -- uid: 3033 - type: CableApcExtension - components: - - pos: 26.5,-16.5 - parent: 0 - type: Transform -- uid: 3034 - type: CableApcExtension - components: - - pos: 25.5,-16.5 - parent: 0 - type: Transform -- uid: 3035 - type: CableApcExtension - components: - - pos: 24.5,-16.5 - parent: 0 - type: Transform -- uid: 3036 - type: CableApcExtension - components: - - pos: 23.5,-16.5 - parent: 0 - type: Transform -- uid: 3037 - type: CableApcExtension - components: - - pos: 22.5,-16.5 - parent: 0 - type: Transform -- uid: 3038 - type: CableApcExtension - components: - - pos: 21.5,-16.5 - parent: 0 - type: Transform -- uid: 3039 - type: CableApcExtension - components: - - pos: 30.5,-20.5 - parent: 0 - type: Transform -- uid: 3040 - type: CableApcExtension - components: - - pos: 29.5,-20.5 - parent: 0 - type: Transform -- uid: 3041 - type: CableApcExtension - components: - - pos: 28.5,-20.5 - parent: 0 - type: Transform -- uid: 3042 - type: CableApcExtension - components: - - pos: 25.5,-21.5 - parent: 0 - type: Transform -- uid: 3043 - type: CableApcExtension - components: - - pos: 27.5,-21.5 - parent: 0 - type: Transform -- uid: 3044 - type: CableApcExtension - components: - - pos: 26.5,-21.5 - parent: 0 - type: Transform -- uid: 3045 - type: CableApcExtension - components: - - pos: 24.5,-20.5 - parent: 0 - type: Transform -- uid: 3046 - type: CableApcExtension - components: - - pos: 23.5,-20.5 - parent: 0 - type: Transform -- uid: 3047 - type: CableApcExtension - components: - - pos: 22.5,-20.5 - parent: 0 - type: Transform -- uid: 3048 - type: CableApcExtension - components: - - pos: 22.5,-19.5 - parent: 0 - type: Transform -- uid: 3049 - type: CableApcExtension - components: - - pos: 24.5,-21.5 - parent: 0 - type: Transform -- uid: 3050 - type: CableApcExtension - components: - - pos: 35.5,-19.5 - parent: 0 - type: Transform -- uid: 3051 - type: CableApcExtension - components: - - pos: 36.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3052 - type: CableApcExtension - components: - - pos: 37.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3053 - type: CableApcExtension - components: - - pos: 38.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3054 - type: CableApcExtension - components: - - pos: 39.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3055 - type: CableApcExtension - components: - - pos: 32.5,-3.5 - parent: 0 - type: Transform -- uid: 3056 - type: CableApcExtension - components: - - pos: 32.5,-4.5 - parent: 0 - type: Transform -- uid: 3057 - type: CableApcExtension - components: - - pos: 32.5,-5.5 - parent: 0 - type: Transform -- uid: 3058 - type: CableApcExtension - components: - - pos: 32.5,-6.5 - parent: 0 - type: Transform -- uid: 3059 - type: CableApcExtension - components: - - pos: 36.5,-7.5 - parent: 0 - type: Transform -- uid: 3060 - type: Table - components: - - pos: 35.5,-23.5 - parent: 0 - type: Transform -- uid: 3061 - type: AirlockHydroGlassLocked - components: - - pos: 32.5,-23.5 - parent: 0 - type: Transform -- uid: 3062 - type: AirlockHydroGlassLocked - components: - - pos: 32.5,-18.5 - parent: 0 - type: Transform -- uid: 3063 - type: SignalButton - components: - - pos: 32.5,-12.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2422 - - port: Toggle - uid: 2423 - - port: Toggle - uid: 2424 - - port: Toggle - uid: 2425 - - port: Toggle - uid: 2426 - - port: Toggle - uid: 2427 - type: SignalTransmitter -- uid: 3064 - type: SignalButton - components: - - pos: 21.5,-11.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2421 - - port: Toggle - uid: 2420 - - port: Toggle - uid: 2419 - - port: Toggle - uid: 2418 - - port: Toggle - uid: 2417 - - port: Toggle - uid: 2416 - - port: Toggle - uid: 2415 - type: SignalTransmitter -- uid: 3065 - type: Bookshelf - components: - - pos: 11.5,-4.5 - parent: 0 - type: Transform -- uid: 3066 - type: CarpetBlack - components: - - pos: 11.5,-2.5 - parent: 0 - type: Transform -- uid: 3067 - type: CarpetBlack - components: - - pos: 10.5,-2.5 - parent: 0 - type: Transform -- uid: 3068 - type: CarpetBlack - components: - - pos: 9.5,-2.5 - parent: 0 - type: Transform -- uid: 3069 - type: Railing - components: - - pos: 25.5,-20.5 - parent: 0 - type: Transform -- uid: 3070 - type: WaterTankHighCapacity - components: - - pos: 24.5,-20.5 - parent: 0 - type: Transform -- uid: 3071 - type: Railing - components: - - pos: 26.5,-18.5 - parent: 0 - type: Transform -- uid: 3072 - type: Railing - components: - - pos: 26.5,-20.5 - parent: 0 - type: Transform -- uid: 3073 - type: hydroponicsTray - components: - - pos: 24.5,-22.5 - parent: 0 - type: Transform -- uid: 3074 - type: hydroponicsTray - components: - - pos: 25.5,-22.5 - parent: 0 - type: Transform -- uid: 3075 - type: hydroponicsTray - components: - - pos: 27.5,-22.5 - parent: 0 - type: Transform -- uid: 3076 - type: hydroponicsTray - components: - - pos: 28.5,-22.5 - parent: 0 - type: Transform -- uid: 3077 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 22.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3078 - type: CableApcExtension - components: - - pos: 28.5,-21.5 - parent: 0 - type: Transform -- uid: 3079 - type: Railing - components: - - pos: 27.5,-18.5 - parent: 0 - type: Transform -- uid: 3080 - type: Railing - components: - - pos: 25.5,-18.5 - parent: 0 - type: Transform -- uid: 3081 - type: GasPipeTJunction - components: - - pos: 25.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3082 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3083 - type: Railing - components: - - pos: 27.5,-20.5 - parent: 0 - type: Transform -- uid: 3084 - type: hydroponicsTray - components: - - pos: 28.5,-24.5 - parent: 0 - type: Transform -- uid: 3085 - type: hydroponicsTray - components: - - pos: 27.5,-24.5 - parent: 0 - type: Transform -- uid: 3086 - type: hydroponicsTray - components: - - pos: 25.5,-24.5 - parent: 0 - type: Transform -- uid: 3087 - type: hydroponicsTray - components: - - pos: 24.5,-24.5 - parent: 0 - type: Transform -- uid: 3088 - type: Table - components: - - pos: 27.5,-21.5 - parent: 0 - type: Transform -- uid: 3089 - type: Table - components: - - pos: 26.5,-21.5 - parent: 0 - type: Transform -- uid: 3090 - type: Table - components: - - pos: 25.5,-21.5 - parent: 0 - type: Transform -- uid: 3091 - type: Table - components: - - pos: 30.5,-21.5 - parent: 0 - type: Transform -- uid: 3092 - type: Table - components: - - pos: 21.5,-15.5 - parent: 0 - type: Transform -- uid: 3093 - type: WaterTankHighCapacity - components: - - pos: 30.5,-20.5 - parent: 0 - type: Transform -- uid: 3094 - type: hydroponicsTray - components: - - pos: 22.5,-15.5 - parent: 0 - type: Transform -- uid: 3095 - type: hydroponicsTray - components: - - pos: 23.5,-15.5 - parent: 0 - type: Transform -- uid: 3096 - type: hydroponicsTray - components: - - pos: 22.5,-17.5 - parent: 0 - type: Transform -- uid: 3097 - type: hydroponicsTray - components: - - pos: 23.5,-17.5 - parent: 0 - type: Transform -- uid: 3098 - type: hydroponicsTray - components: - - pos: 29.5,-15.5 - parent: 0 - type: Transform -- uid: 3099 - type: hydroponicsTray - components: - - pos: 30.5,-15.5 - parent: 0 - type: Transform -- uid: 3100 - type: hydroponicsTray - components: - - pos: 29.5,-17.5 - parent: 0 - type: Transform -- uid: 3101 - type: hydroponicsTray - components: - - pos: 30.5,-17.5 - parent: 0 - type: Transform -- uid: 3102 - type: hydroponicsTray - components: - - pos: 30.5,-19.5 - parent: 0 - type: Transform -- uid: 3103 - type: hydroponicsTray - components: - - pos: 31.5,-22.5 - parent: 0 - type: Transform -- uid: 3104 - type: hydroponicsTray - components: - - pos: 30.5,-22.5 - parent: 0 - type: Transform -- uid: 3105 - type: hydroponicsTray - components: - - pos: 31.5,-19.5 - parent: 0 - type: Transform -- uid: 3106 - type: Table - components: - - pos: 21.5,-16.5 - parent: 0 - type: Transform -- uid: 3107 - type: Table - components: - - pos: 31.5,-15.5 - parent: 0 - type: Transform -- uid: 3108 - type: Table - components: - - pos: 31.5,-16.5 - parent: 0 - type: Transform -- uid: 3109 - type: VendingBarDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 24.5,-12.5 - parent: 0 - type: Transform -- uid: 3110 - type: ClothingHeadHatTrucker - components: - - pos: 35.483162,-23.425282 - parent: 0 - type: Transform -- uid: 3111 - type: LockerBoozeFilled - components: - - pos: 19.5,-13.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 3112 - type: LockerBoozeFilled - components: - - pos: 19.5,-12.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 3113 - type: ComfyChair - components: - - pos: 23.5,-12.5 - parent: 0 - type: Transform -- uid: 3114 - type: BoxBeanbag - components: - - pos: 21.490145,-12.448675 - parent: 0 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 3115 - type: Rack - components: - - pos: 21.5,-12.5 - parent: 0 - type: Transform -- uid: 3116 - type: BoxShotgunIncendiary - components: - - pos: 21.56827,-12.3393 - parent: 0 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 3117 - type: TableWood - components: - - pos: 22.5,-12.5 - parent: 0 - type: Transform -- uid: 3118 - type: ClothingEyesGlassesSunglasses - components: - - pos: 22.521395,-12.417425 - parent: 0 - type: Transform -- uid: 3119 - type: DrinkShaker - components: - - pos: 22.615145,-12.30805 - parent: 0 - type: Transform -- uid: 3120 - type: MonkeyCubeWrapped - components: - - pos: 22.271395,-12.2768 - parent: 0 - type: Transform -- uid: 3121 - type: CarpetBlack - components: - - pos: 21.5,-13.5 - parent: 0 - type: Transform -- uid: 3122 - type: CarpetBlack - components: - - pos: 21.5,-12.5 - parent: 0 - type: Transform -- uid: 3123 - type: CarpetBlack - components: - - pos: 22.5,-13.5 - parent: 0 - type: Transform -- uid: 3124 - type: CarpetBlack - components: - - pos: 22.5,-12.5 - parent: 0 - type: Transform -- uid: 3125 - type: SpawnPointBartender - components: - - pos: 21.5,-13.5 - parent: 0 - type: Transform -- uid: 3126 - type: SpawnPointBartender - components: - - pos: 22.5,-13.5 - parent: 0 - type: Transform -- uid: 3127 - type: SpawnPointBotanist - components: - - pos: 34.5,-22.5 - parent: 0 - type: Transform -- uid: 3128 - type: SpawnPointBotanist - components: - - pos: 34.5,-21.5 - parent: 0 - type: Transform -- uid: 3129 - type: SpawnPointBotanist - components: - - pos: 34.5,-20.5 - parent: 0 - type: Transform -- uid: 3130 - type: ClothingHeadHatPumpkin - components: - - pos: 34.541443,-23.720224 - parent: 0 - type: Transform -- uid: 3131 - type: KitchenReagentGrinder - components: - - pos: 21.5,-15.5 - parent: 0 - type: Transform -- uid: 3132 - type: SeedExtractor - components: - - pos: 31.5,-17.5 - parent: 0 - type: Transform -- uid: 3133 - type: ClothingHandsGlovesLeather - components: - - pos: 30.50714,-21.453907 - parent: 0 - type: Transform -- uid: 3134 - type: HydroponicsToolScythe - components: - - pos: 31.50714,-16.328907 - parent: 0 - type: Transform -- uid: 3135 - type: HydroponicsToolSpade - components: - - pos: 27.562069,-21.38146 - parent: 0 - type: Transform -- uid: 3136 - type: HydroponicsToolHatchet - components: - - pos: 27.507141,-21.391407 - parent: 0 - type: Transform -- uid: 3137 - type: HydroponicsToolMiniHoe - components: - - pos: 31.433645,-16.251284 - parent: 0 - type: Transform -- uid: 3138 - type: HydroponicsToolClippers - components: - - pos: 26.585266,-21.469532 - parent: 0 - type: Transform -- uid: 3139 - type: ChanterelleSeeds - components: - - pos: 25.569641,-21.532032 - parent: 0 - type: Transform -- uid: 3140 - type: WheatSeeds - components: - - pos: 25.569641,-21.485157 - parent: 0 - type: Transform -- uid: 3141 - type: TomatoSeeds - components: - - pos: 21.475891,-16.453907 - parent: 0 - type: Transform -- uid: 3142 - type: Bucket - components: - - pos: 21.451841,-21.282032 - parent: 0 - type: Transform -- uid: 3143 - type: Bucket - components: - - pos: 19.550106,-22.387535 - parent: 0 - type: Transform -- uid: 3144 - type: WheatBushel - components: - - pos: 17.508148,-22.401194 - parent: 0 - type: Transform -- uid: 3145 - type: CrowbarRed - components: - - pos: 19.486383,-22.490173 - parent: 0 - type: Transform -- uid: 3146 - type: KitchenSpike - components: - - pos: 33.5,-16.5 - parent: 0 - type: Transform -- uid: 3147 - type: KitchenSpike - components: - - pos: 36.5,-15.5 - parent: 0 - type: Transform -- uid: 3148 - type: WheatBushel - components: - - pos: 17.548883,-22.365173 - parent: 0 - type: Transform -- uid: 3149 - type: WheatBushel - components: - - pos: 17.548883,-22.365173 - parent: 0 - type: Transform -- uid: 3150 - type: PlantBGoneSpray - components: - - pos: 18.300106,-24.356285 - parent: 0 - type: Transform -- uid: 3151 - type: PlantBGoneSpray - components: - - pos: 18.393856,-24.418785 - parent: 0 - type: Transform -- uid: 3152 - type: PlantBGoneSpray - components: - - pos: 31.502409,-15.384094 - parent: 0 - type: Transform -- uid: 3153 - type: PottedPlantRandom - components: - - pos: 31.5,-24.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 3154 - type: PottedPlantRandom - components: - - pos: 24.5,-15.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 3155 - type: PottedPlantRandom - components: - - pos: 24.5,-21.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 3156 - type: EggplantSeeds - components: - - pos: 21.538008,-16.502546 - parent: 0 - type: Transform -- uid: 3157 - type: FloorDrain - components: - - pos: 35.5,-16.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 3158 - type: LockerFreezer - components: - - pos: 33.5,-14.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 234.99962 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 3159 - type: GasPipeTJunction - components: - - pos: 22.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3160 - type: FoodMeat - components: - - pos: 34.399467,-16.514908 - parent: 0 - type: Transform -- uid: 3161 - type: FoodMeat - components: - - pos: 33.602592,-15.764908 - parent: 0 - type: Transform -- uid: 3162 - type: FoodMeat - components: - - pos: 37.383842,-15.702408 - parent: 0 - type: Transform -- uid: 3163 - type: FoodCondimentBottleEnzyme - components: - - pos: 29.600767,-11.149616 - parent: 0 - type: Transform - - tags: [] - type: Tag -- uid: 3164 - type: FoodCondimentBottleEnzyme - components: - - pos: 29.694517,-11.102741 - parent: 0 - type: Transform - - tags: [] - type: Tag -- uid: 3165 - type: FoodCondimentBottleEnzyme - components: - - pos: 29.678892,-11.243366 - parent: 0 - type: Transform - - tags: [] - type: Tag -- uid: 3166 - type: LargeBeaker - components: - - pos: 29.425337,-11.337595 - parent: 0 - type: Transform -- uid: 3167 - type: ButchCleaver - components: - - pos: 35.33159,-14.47822 - parent: 0 - type: Transform -- uid: 3168 - type: ClothingOuterApronChef - components: - - pos: 35.481422,-10.344534 - parent: 0 - type: Transform -- uid: 3169 - type: DonkpocketBoxSpawner - components: - - pos: 26.5,-11.5 - parent: 0 - type: Transform -- uid: 3170 - type: ReagentContainerFlour - components: - - pos: 28.638247,-10.328909 - parent: 0 - type: Transform - - tags: [] - type: Tag -- uid: 3171 - type: SpawnPointChef - components: - - pos: 31.5,-10.5 - parent: 0 - type: Transform -- uid: 3172 - type: SpawnPointChef - components: - - pos: 30.5,-11.5 - parent: 0 - type: Transform -- uid: 3173 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3174 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3175 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3176 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3177 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3178 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3179 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3180 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3181 - type: Poweredlight - components: - - pos: 31.5,0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3182 - type: Poweredlight - components: - - pos: 20.5,0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3183 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3184 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3185 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3186 - type: Poweredlight - components: - - pos: 34.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3187 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3188 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3189 - type: Poweredlight - components: - - pos: 26.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3190 - type: Poweredlight - components: - - pos: 18.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3191 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3192 - type: PoweredSmallLight - components: - - pos: 38.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3193 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3194 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3195 - type: Dresser - components: - - pos: 38.5,-13.5 - parent: 0 - type: Transform -- uid: 3196 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: 37.5,-13.5 - parent: 0 - type: Transform -- uid: 3197 - type: TubaInstrument - components: - - pos: 40.5,-8.5 - parent: 0 - type: Transform -- uid: 3198 - type: TableWood - components: - - pos: 37.5,-11.5 - parent: 0 - type: Transform -- uid: 3199 - type: TableWood - components: - - pos: 37.5,-10.5 - parent: 0 - type: Transform -- uid: 3200 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-11.5 - parent: 0 - type: Transform -- uid: 3201 - type: LampBanana - components: - - pos: 37.53296,-10.087999 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 3202 - type: SpawnPointClown - components: - - pos: 38.5,-10.5 - parent: 0 - type: Transform -- uid: 3203 - type: FoodPieBananaCream - components: - - pos: 37.375732,-10.619249 - parent: 0 - type: Transform -- uid: 3204 - type: FoodPieBananaCream - components: - - pos: 37.469482,-10.681749 - parent: 0 - type: Transform -- uid: 3205 - type: FoodPieBananaCream - components: - - pos: 37.641357,-10.744249 - parent: 0 - type: Transform -- uid: 3206 - type: FoodBanana - components: - - pos: 37.219482,-11.056749 - parent: 0 - type: Transform -- uid: 3207 - type: FoodBanana - components: - - pos: 37.391357,-11.119249 - parent: 0 - type: Transform -- uid: 3208 - type: FoodBanana - components: - - pos: 37.578857,-11.181749 - parent: 0 - type: Transform -- uid: 3209 - type: TrashBananaPeel - components: - - pos: 38.485107,-10.712999 - parent: 0 - type: Transform -- uid: 3210 - type: BikeHornInstrument - components: - - pos: 37.438232,-11.525499 - parent: 0 - type: Transform -- uid: 3211 - type: BikeHorn - components: - - pos: 37.735107,-11.400499 - parent: 0 - type: Transform -- uid: 3212 - type: Table - components: - - pos: 41.5,-12.5 - parent: 0 - type: Transform -- uid: 3213 - type: Table - components: - - pos: 41.5,-11.5 - parent: 0 - type: Transform -- uid: 3214 - type: Chair - components: - - pos: 40.5,-11.5 - parent: 0 - type: Transform -- uid: 3215 - type: ClothingNeckScarfStripedZebra - components: - - pos: 40.469482,-11.712999 - parent: 0 - type: Transform -- uid: 3216 - type: RevolverCapGun - components: - - pos: 41.57982,-12.089542 - parent: 0 - type: Transform -- uid: 3217 - type: CrayonBox - components: - - pos: 41.345444,-11.980167 - parent: 0 - type: Transform -- uid: 3218 - type: FoodBurgerMime - components: - - pos: 41.626694,-11.620792 - parent: 0 - type: Transform -- uid: 3219 - type: DrinkBottleOfNothingFull - components: - - pos: 41.29857,-11.339542 - parent: 0 - type: Transform -- uid: 3220 - type: PosterContrabandClown - components: - - pos: 42.5,-9.5 - parent: 0 - type: Transform -- uid: 3221 - type: BedsheetClown - components: - - pos: 37.5,-11.5 - parent: 0 - type: Transform -- uid: 3222 - type: BedsheetMime - components: - - pos: 41.5,-12.5 - parent: 0 - type: Transform -- uid: 3223 - type: TableWood - components: - - pos: 41.5,-8.5 - parent: 0 - type: Transform -- uid: 3224 - type: DawInstrumentMachineCircuitboard - components: - - pos: 41.470444,-8.386417 - parent: 0 - type: Transform -- uid: 3225 - type: ElectricGuitarInstrument - components: - - pos: 41.45482,-8.464542 - parent: 0 - type: Transform -- uid: 3226 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 41.5,-9.5 - parent: 0 - type: Transform -- uid: 3227 - type: PianoInstrument - components: - - rot: 3.141592653589793 rad - pos: 37.5,-2.5 - parent: 0 - type: Transform -- uid: 3228 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 37.5,-3.5 - parent: 0 - type: Transform -- uid: 3229 - type: ComfyChair - components: - - pos: 36.5,-4.5 - parent: 0 - type: Transform -- uid: 3230 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 36.5,-6.5 - parent: 0 - type: Transform -- uid: 3231 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-6.5 - parent: 0 - type: Transform -- uid: 3232 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-5.5 - parent: 0 - type: Transform -- uid: 3233 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-4.5 - parent: 0 - type: Transform -- uid: 3234 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-3.5 - parent: 0 - type: Transform -- uid: 3235 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-6.5 - parent: 0 - type: Transform -- uid: 3236 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-5.5 - parent: 0 - type: Transform -- uid: 3237 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-4.5 - parent: 0 - type: Transform -- uid: 3238 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-3.5 - parent: 0 - type: Transform -- uid: 3239 - type: ClothingHeadHatSombrero - components: - - pos: 38.521996,-7.452637 - parent: 0 - type: Transform -- uid: 3240 - type: RandomSoap - components: - - pos: 38.5,-5.5 - parent: 0 - type: Transform -- uid: 3241 - type: RandomInstruments - components: - - pos: 38.5,-4.5 - parent: 0 - type: Transform -- uid: 3242 - type: LampGold - components: - - pos: 38.490746,-2.3432622 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 3243 - type: PottedPlantRandom - components: - - pos: 35.5,-7.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 3244 - type: ViolinInstrument - components: - - pos: 38.481636,-3.3719664 - parent: 0 - type: Transform -- uid: 3245 - type: ToySpawner - components: - - pos: 36.5,-2.5 - parent: 0 - type: Transform -- uid: 3246 - type: Catwalk - components: - - pos: 35.5,-0.5 - parent: 0 - type: Transform -- uid: 3247 - type: LockerElectricalSuppliesFilled - components: - - pos: 34.5,0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 3248 - type: CrateEngineeringCableBulk - components: - - pos: 37.5,0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 3249 - type: Rack - components: - - pos: 36.5,0.5 - parent: 0 - type: Transform -- uid: 3250 - type: MaintenanceToolSpawner - components: - - pos: 36.5,0.5 - parent: 0 - type: Transform -- uid: 3251 - type: FoodCheese - components: - - pos: 35.559807,-15.350866 - parent: 0 - type: Transform -- uid: 3252 - type: RandomFoodBakedWhole - components: - - pos: 28.5,-4.5 - parent: 0 - type: Transform -- uid: 3253 - type: RandomFoodMeal - components: - - pos: 20.5,-0.5 - parent: 0 - type: Transform -- uid: 3254 - type: FoodMeatClown - components: - - pos: 37.477272,-12.829533 - parent: 0 - type: Transform -- uid: 3255 - type: SpawnPointMime - components: - - pos: 40.5,-10.5 - parent: 0 - type: Transform -- uid: 3256 - type: SpawnPointMusician - components: - - pos: 39.5,-9.5 - parent: 0 - type: Transform -- uid: 3257 - type: PosterLegitReportCrimes - components: - - pos: 19.5,5.5 - parent: 0 - type: Transform -- uid: 3258 - type: RandomPosterLegit - components: - - pos: 36.5,-1.5 - parent: 0 - type: Transform -- uid: 3259 - type: RandomPosterLegit - components: - - pos: 18.5,-10.5 - parent: 0 - type: Transform -- uid: 3260 - type: RandomPosterLegit - components: - - pos: 30.5,1.5 - parent: 0 - type: Transform -- uid: 3261 - type: RandomPosterLegit - components: - - pos: 36.5,-21.5 - parent: 0 - type: Transform -- uid: 3262 - type: PosterContrabandWehWatches - components: - - pos: 42.5,-11.5 - parent: 0 - type: Transform -- uid: 3263 - type: FirelockGlass - components: - - pos: 17.5,0.5 - parent: 0 - type: Transform -- uid: 3264 - type: FirelockGlass - components: - - pos: 16.5,0.5 - parent: 0 - type: Transform -- uid: 3265 - type: FirelockGlass - components: - - pos: 15.5,0.5 - parent: 0 - type: Transform -- uid: 3266 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3267 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3268 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3269 - type: PottedPlantRandom - components: - - pos: 14.5,-10.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 3270 - type: PottedPlantRandom - components: - - pos: 14.5,-16.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 3271 - type: RandomVendingDrinks - components: - - pos: 14.5,-13.5 - parent: 0 - type: Transform -- uid: 3272 - type: RandomVendingSnacks - components: - - pos: 14.5,-12.5 - parent: 0 - type: Transform -- uid: 3273 - type: DisposalUnit - components: - - pos: 14.5,-14.5 - parent: 0 - type: Transform -- uid: 3274 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-11.5 - parent: 0 - type: Transform -- uid: 3275 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-15.5 - parent: 0 - type: Transform -- uid: 3276 - type: WallReinforced - components: - - pos: -10.5,22.5 - parent: 0 - type: Transform -- uid: 3277 - type: WallReinforced - components: - - pos: -14.5,18.5 - parent: 0 - type: Transform -- uid: 3278 - type: WallReinforced - components: - - pos: -4.5,20.5 - parent: 0 - type: Transform -- uid: 3279 - type: WallReinforced - components: - - pos: -4.5,16.5 - parent: 0 - type: Transform -- uid: 3280 - type: WallReinforced - components: - - pos: -16.5,22.5 - parent: 0 - type: Transform -- uid: 3281 - type: WallReinforced - components: - - pos: -15.5,22.5 - parent: 0 - type: Transform -- uid: 3282 - type: WallReinforced - components: - - pos: -9.5,22.5 - parent: 0 - type: Transform -- uid: 3283 - type: WallReinforced - components: - - pos: -4.5,15.5 - parent: 0 - type: Transform -- uid: 3284 - type: WallReinforced - components: - - pos: -4.5,14.5 - parent: 0 - type: Transform -- uid: 3285 - type: WallReinforced - components: - - pos: -4.5,19.5 - parent: 0 - type: Transform -- uid: 3286 - type: WallReinforced - components: - - pos: -13.5,22.5 - parent: 0 - type: Transform -- uid: 3287 - type: WallReinforced - components: - - pos: -4.5,12.5 - parent: 0 - type: Transform -- uid: 3288 - type: WallReinforced - components: - - pos: -6.5,18.5 - parent: 0 - type: Transform -- uid: 3289 - type: WallReinforced - components: - - pos: -7.5,20.5 - parent: 0 - type: Transform -- uid: 3290 - type: WallReinforced - components: - - pos: -6.5,19.5 - parent: 0 - type: Transform -- uid: 3291 - type: WallReinforced - components: - - pos: -8.5,13.5 - parent: 0 - type: Transform -- uid: 3292 - type: WallReinforced - components: - - pos: -12.5,12.5 - parent: 0 - type: Transform -- uid: 3293 - type: WallReinforced - components: - - pos: -12.5,11.5 - parent: 0 - type: Transform -- uid: 3294 - type: WallReinforced - components: - - pos: -16.5,12.5 - parent: 0 - type: Transform -- uid: 3295 - type: WallReinforced - components: - - pos: -15.5,12.5 - parent: 0 - type: Transform -- uid: 3296 - type: WallReinforced - components: - - pos: -9.5,13.5 - parent: 0 - type: Transform -- uid: 3297 - type: WallReinforced - components: - - pos: -9.5,11.5 - parent: 0 - type: Transform -- uid: 3298 - type: WallReinforced - components: - - pos: -11.5,20.5 - parent: 0 - type: Transform -- uid: 3299 - type: WallReinforced - components: - - pos: -10.5,20.5 - parent: 0 - type: Transform -- uid: 3300 - type: WallReinforced - components: - - pos: -13.5,20.5 - parent: 0 - type: Transform -- uid: 3301 - type: WallReinforced - components: - - pos: -13.5,19.5 - parent: 0 - type: Transform -- uid: 3302 - type: WallReinforced - components: - - pos: -12.5,22.5 - parent: 0 - type: Transform -- uid: 3303 - type: WallReinforced - components: - - pos: -8.5,22.5 - parent: 0 - type: Transform -- uid: 3304 - type: WallReinforced - components: - - pos: -5.5,22.5 - parent: 0 - type: Transform -- uid: 3305 - type: WallReinforced - components: - - pos: -4.5,18.5 - parent: 0 - type: Transform -- uid: 3306 - type: WallReinforced - components: - - pos: -5.5,12.5 - parent: 0 - type: Transform -- uid: 3307 - type: WallReinforced - components: - - pos: -7.5,19.5 - parent: 0 - type: Transform -- uid: 3308 - type: WallReinforced - components: - - pos: -12.5,20.5 - parent: 0 - type: Transform -- uid: 3309 - type: WallReinforced - components: - - pos: -11.5,11.5 - parent: 0 - type: Transform -- uid: 3310 - type: WallReinforced - components: - - pos: -13.5,12.5 - parent: 0 - type: Transform -- uid: 3311 - type: WallReinforced - components: - - pos: -6.5,15.5 - parent: 0 - type: Transform -- uid: 3312 - type: WallReinforced - components: - - pos: -12.5,13.5 - parent: 0 - type: Transform -- uid: 3313 - type: WallReinforced - components: - - pos: -16.5,19.5 - parent: 0 - type: Transform -- uid: 3314 - type: Window - components: - - pos: -21.5,11.5 - parent: 0 - type: Transform -- uid: 3315 - type: WallReinforced - components: - - pos: -9.5,20.5 - parent: 0 - type: Transform -- uid: 3316 - type: WallReinforced - components: - - pos: -12.5,14.5 - parent: 0 - type: Transform -- uid: 3317 - type: WallReinforced - components: - - pos: -16.5,15.5 - parent: 0 - type: Transform -- uid: 3318 - type: ReinforcedWindow - components: - - pos: -16.5,13.5 - parent: 0 - type: Transform -- uid: 3319 - type: WallReinforced - components: - - pos: -8.5,20.5 - parent: 0 - type: Transform -- uid: 3320 - type: WallReinforced - components: - - pos: -7.5,14.5 - parent: 0 - type: Transform -- uid: 3321 - type: Window - components: - - pos: -22.5,11.5 - parent: 0 - type: Transform -- uid: 3322 - type: WallReinforced - components: - - pos: -8.5,12.5 - parent: 0 - type: Transform -- uid: 3323 - type: WallReinforced - components: - - pos: -16.5,16.5 - parent: 0 - type: Transform -- uid: 3324 - type: WallReinforced - components: - - pos: -16.5,18.5 - parent: 0 - type: Transform -- uid: 3325 - type: WallReinforced - components: - - pos: -16.5,20.5 - parent: 0 - type: Transform -- uid: 3326 - type: WallReinforced - components: - - pos: -16.5,14.5 - parent: 0 - type: Transform -- uid: 3327 - type: ReinforcedWindow - components: - - pos: -16.5,21.5 - parent: 0 - type: Transform -- uid: 3328 - type: ReinforcedWindow - components: - - pos: -14.5,22.5 - parent: 0 - type: Transform -- uid: 3329 - type: ReinforcedWindow - components: - - pos: -6.5,22.5 - parent: 0 - type: Transform -- uid: 3330 - type: ReinforcedWindow - components: - - pos: -4.5,21.5 - parent: 0 - type: Transform -- uid: 3331 - type: ReinforcedWindow - components: - - pos: -4.5,13.5 - parent: 0 - type: Transform -- uid: 3332 - type: ReinforcedWindow - components: - - pos: -14.5,12.5 - parent: 0 - type: Transform -- uid: 3333 - type: WallReinforced - components: - - pos: -16.5,17.5 - parent: 0 - type: Transform -- uid: 3334 - type: WallReinforced - components: - - pos: -11.5,13.5 - parent: 0 - type: Transform -- uid: 3335 - type: WallReinforced - components: - - pos: -7.5,12.5 - parent: 0 - type: Transform -- uid: 3336 - type: WallReinforced - components: - - pos: -4.5,17.5 - parent: 0 - type: Transform -- uid: 3337 - type: WallReinforced - components: - - pos: -4.5,22.5 - parent: 0 - type: Transform -- uid: 3338 - type: WallReinforced - components: - - pos: -7.5,22.5 - parent: 0 - type: Transform -- uid: 3339 - type: WallReinforced - components: - - pos: -11.5,22.5 - parent: 0 - type: Transform -- uid: 3340 - type: WallReinforced - components: - - pos: -14.5,19.5 - parent: 0 - type: Transform -- uid: 3341 - type: WallReinforced - components: - - pos: -6.5,14.5 - parent: 0 - type: Transform -- uid: 3342 - type: WallReinforced - components: - - pos: -8.5,14.5 - parent: 0 - type: Transform -- uid: 3343 - type: WallReinforced - components: - - pos: -13.5,14.5 - parent: 0 - type: Transform -- uid: 3344 - type: WallReinforced - components: - - pos: -14.5,14.5 - parent: 0 - type: Transform -- uid: 3345 - type: WallReinforced - components: - - pos: -14.5,15.5 - parent: 0 - type: Transform -- uid: 3346 - type: WallReinforced - components: - - pos: -8.5,11.5 - parent: 0 - type: Transform -- uid: 3347 - type: WallReinforced - components: - - pos: -16.5,11.5 - parent: 0 - type: Transform -- uid: 3348 - type: WallSolid - components: - - pos: -19.5,11.5 - parent: 0 - type: Transform -- uid: 3349 - type: Window - components: - - pos: -20.5,11.5 - parent: 0 - type: Transform -- uid: 3350 - type: Window - components: - - pos: -24.5,20.5 - parent: 0 - type: Transform -- uid: 3351 - type: WallSolid - components: - - pos: -18.5,20.5 - parent: 0 - type: Transform -- uid: 3352 - type: WallSolid - components: - - pos: -17.5,20.5 - parent: 0 - type: Transform -- uid: 3353 - type: WallSolid - components: - - pos: -23.5,11.5 - parent: 0 - type: Transform -- uid: 3354 - type: WallSolid - components: - - pos: -24.5,11.5 - parent: 0 - type: Transform -- uid: 3355 - type: WallSolid - components: - - pos: -25.5,11.5 - parent: 0 - type: Transform -- uid: 3356 - type: WallSolid - components: - - pos: -25.5,12.5 - parent: 0 - type: Transform -- uid: 3357 - type: ConveyorBelt - components: - - pos: -38.5,6.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4025 - Forward: - - port: Left - uid: 4025 - Off: - - port: Middle - uid: 4025 - type: SignalReceiver -- uid: 3358 - type: WallSolid - components: - - pos: -25.5,14.5 - parent: 0 - type: Transform -- uid: 3359 - type: WallSolid - components: - - pos: -25.5,15.5 - parent: 0 - type: Transform -- uid: 3360 - type: AirlockMaintCargoLocked - components: - - pos: -32.5,19.5 - parent: 0 - type: Transform -- uid: 3361 - type: WallSolid - components: - - pos: -25.5,17.5 - parent: 0 - type: Transform -- uid: 3362 - type: WallSolid - components: - - pos: -25.5,18.5 - parent: 0 - type: Transform -- uid: 3363 - type: WallSolid - components: - - pos: -25.5,19.5 - parent: 0 - type: Transform -- uid: 3364 - type: WallSolid - components: - - pos: -25.5,20.5 - parent: 0 - type: Transform -- uid: 3365 - type: WallSolid - components: - - pos: -23.5,9.5 - parent: 0 - type: Transform -- uid: 3366 - type: WallSolid - components: - - pos: -24.5,9.5 - parent: 0 - type: Transform -- uid: 3367 - type: WallSolid - components: - - pos: -23.5,8.5 - parent: 0 - type: Transform -- uid: 3368 - type: CableApcExtension - components: - - pos: -25.5,8.5 - parent: 0 - type: Transform -- uid: 3369 - type: WallSolid - components: - - pos: -27.5,9.5 - parent: 0 - type: Transform -- uid: 3370 - type: WallSolid - components: - - pos: -27.5,10.5 - parent: 0 - type: Transform -- uid: 3371 - type: WallSolid - components: - - pos: -27.5,11.5 - parent: 0 - type: Transform -- uid: 3372 - type: WallSolid - components: - - pos: -27.5,12.5 - parent: 0 - type: Transform -- uid: 3373 - type: WallReinforced - components: - - pos: -27.5,13.5 - parent: 0 - type: Transform -- uid: 3374 - type: WallReinforced - components: - - pos: -27.5,14.5 - parent: 0 - type: Transform -- uid: 3375 - type: WallReinforced - components: - - pos: -27.5,15.5 - parent: 0 - type: Transform -- uid: 3376 - type: WallReinforced - components: - - pos: -27.5,16.5 - parent: 0 - type: Transform -- uid: 3377 - type: WallReinforced - components: - - pos: -27.5,17.5 - parent: 0 - type: Transform -- uid: 3378 - type: WallReinforced - components: - - pos: -27.5,18.5 - parent: 0 - type: Transform -- uid: 3379 - type: WallReinforced - components: - - pos: -28.5,18.5 - parent: 0 - type: Transform -- uid: 3380 - type: Window - components: - - pos: -28.5,1.5 - parent: 0 - type: Transform -- uid: 3381 - type: Window - components: - - pos: -23.5,3.5 - parent: 0 - type: Transform -- uid: 3382 - type: Window - components: - - pos: -23.5,6.5 - parent: 0 - type: Transform -- uid: 3383 - type: Window - components: - - pos: -24.5,1.5 - parent: 0 - type: Transform -- uid: 3384 - type: WallSolid - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 3385 - type: Window - components: - - pos: -25.5,1.5 - parent: 0 - type: Transform -- uid: 3386 - type: WallReinforced - components: - - pos: -29.5,18.5 - parent: 0 - type: Transform -- uid: 3387 - type: WallReinforced - components: - - pos: -30.5,18.5 - parent: 0 - type: Transform -- uid: 3388 - type: WallReinforced - components: - - pos: -31.5,18.5 - parent: 0 - type: Transform -- uid: 3389 - type: WallReinforced - components: - - pos: -32.5,18.5 - parent: 0 - type: Transform -- uid: 3390 - type: WallSolid - components: - - pos: -23.5,1.5 - parent: 0 - type: Transform -- uid: 3391 - type: WallSolid - components: - - pos: -23.5,2.5 - parent: 0 - type: Transform -- uid: 3392 - type: WallSolid - components: - - pos: -29.5,1.5 - parent: 0 - type: Transform -- uid: 3393 - type: AirlockCargoGlassLocked - components: - - pos: -29.5,3.5 - parent: 0 - type: Transform -- uid: 3394 - type: Grille - components: - - pos: -29.5,5.5 - parent: 0 - type: Transform -- uid: 3395 - type: WallSolid - components: - - pos: -30.5,1.5 - parent: 0 - type: Transform -- uid: 3396 - type: WallSolid - components: - - pos: -34.5,1.5 - parent: 0 - type: Transform -- uid: 3397 - type: WallSolid - components: - - pos: -35.5,1.5 - parent: 0 - type: Transform -- uid: 3398 - type: WallSolid - components: - - pos: -35.5,2.5 - parent: 0 - type: Transform -- uid: 3399 - type: WallSolid - components: - - pos: -35.5,3.5 - parent: 0 - type: Transform -- uid: 3400 - type: ReinforcedWindow - components: - - pos: -42.5,22.5 - parent: 0 - type: Transform -- uid: 3401 - type: WallSolid - components: - - pos: -35.5,6.5 - parent: 0 - type: Transform -- uid: 3402 - type: WallSolid - components: - - pos: -35.5,7.5 - parent: 0 - type: Transform -- uid: 3403 - type: WallSolid - components: - - pos: -35.5,8.5 - parent: 0 - type: Transform -- uid: 3404 - type: WallSolid - components: - - pos: -29.5,9.5 - parent: 0 - type: Transform -- uid: 3405 - type: ReinforcedWindow - components: - - pos: -29.5,5.5 - parent: 0 - type: Transform -- uid: 3406 - type: WallSolid - components: - - pos: -30.5,9.5 - parent: 0 - type: Transform -- uid: 3407 - type: WallSolid - components: - - pos: -31.5,9.5 - parent: 0 - type: Transform -- uid: 3408 - type: WallSolid - components: - - pos: -32.5,9.5 - parent: 0 - type: Transform -- uid: 3409 - type: WallSolid - components: - - pos: -32.5,8.5 - parent: 0 - type: Transform -- uid: 3410 - type: WallSolid - components: - - pos: -32.5,10.5 - parent: 0 - type: Transform -- uid: 3411 - type: WallSolid - components: - - pos: -32.5,12.5 - parent: 0 - type: Transform -- uid: 3412 - type: WallReinforced - components: - - pos: -32.5,13.5 - parent: 0 - type: Transform -- uid: 3413 - type: WallReinforced - components: - - pos: -31.5,13.5 - parent: 0 - type: Transform -- uid: 3414 - type: WallReinforced - components: - - pos: -30.5,13.5 - parent: 0 - type: Transform -- uid: 3415 - type: WallReinforced - components: - - pos: -29.5,13.5 - parent: 0 - type: Transform -- uid: 3416 - type: WallReinforced - components: - - pos: -28.5,13.5 - parent: 0 - type: Transform -- uid: 3417 - type: WallReinforced - components: - - pos: -32.5,14.5 - parent: 0 - type: Transform -- uid: 3418 - type: WallReinforced - components: - - pos: -32.5,15.5 - parent: 0 - type: Transform -- uid: 3419 - type: WallSolid - components: - - pos: -36.5,7.5 - parent: 0 - type: Transform -- uid: 3420 - type: WallSolid - components: - - pos: -37.5,7.5 - parent: 0 - type: Transform -- uid: 3421 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -51.5,-1.5 - parent: 0 - type: Transform -- uid: 3422 - type: WallSolid - components: - - pos: -39.5,7.5 - parent: 0 - type: Transform -- uid: 3423 - type: WallSolid - components: - - pos: -43.5,7.5 - parent: 0 - type: Transform -- uid: 3424 - type: WallSolid - components: - - pos: -44.5,7.5 - parent: 0 - type: Transform -- uid: 3425 - type: WallReinforced - components: - - pos: -43.5,12.5 - parent: 0 - type: Transform -- uid: 3426 - type: WallReinforced - components: - - pos: -43.5,11.5 - parent: 0 - type: Transform -- uid: 3427 - type: WallReinforced - components: - - pos: -44.5,11.5 - parent: 0 - type: Transform -- uid: 3428 - type: WallReinforced - components: - - pos: -44.5,10.5 - parent: 0 - type: Transform -- uid: 3429 - type: WallReinforced - components: - - pos: -44.5,9.5 - parent: 0 - type: Transform -- uid: 3430 - type: WallSolid - components: - - pos: -32.5,23.5 - parent: 0 - type: Transform -- uid: 3431 - type: WallSolid - components: - - pos: -29.5,21.5 - parent: 0 - type: Transform -- uid: 3432 - type: WallSolid - components: - - pos: -32.5,21.5 - parent: 0 - type: Transform -- uid: 3433 - type: WallSolid - components: - - pos: -32.5,20.5 - parent: 0 - type: Transform -- uid: 3434 - type: Grille - components: - - pos: -44.5,24.5 - parent: 0 - type: Transform -- uid: 3435 - type: WallSolid - components: - - pos: -38.5,23.5 - parent: 0 - type: Transform -- uid: 3436 - type: WallSolid - components: - - pos: -38.5,22.5 - parent: 0 - type: Transform -- uid: 3437 - type: WallSolid - components: - - pos: -39.5,22.5 - parent: 0 - type: Transform -- uid: 3438 - type: FireExtinguisher - components: - - pos: -43.309006,24.545294 - parent: 0 - type: Transform -- uid: 3439 - type: WallReinforced - components: - - pos: -44.5,22.5 - parent: 0 - type: Transform -- uid: 3440 - type: WallReinforced - components: - - pos: -43.5,22.5 - parent: 0 - type: Transform -- uid: 3441 - type: AirlockExternalGlassCargoLocked - components: - - pos: -44.5,33.5 - parent: 0 - type: Transform -- uid: 3442 - type: AirlockExternalGlassCargoLocked - components: - - pos: -43.5,29.5 - parent: 0 - type: Transform -- uid: 3443 - type: ReinforcedWindow - components: - - pos: -44.5,30.5 - parent: 0 - type: Transform -- uid: 3444 - type: ReinforcedWindow - components: - - pos: -44.5,28.5 - parent: 0 - type: Transform -- uid: 3445 - type: AirlockExternalGlassCargoLocked - components: - - pos: -44.5,32.5 - parent: 0 - type: Transform -- uid: 3446 - type: WallReinforced - components: - - pos: -44.5,27.5 - parent: 0 - type: Transform -- uid: 3447 - type: WallReinforced - components: - - pos: -41.5,29.5 - parent: 0 - type: Transform -- uid: 3448 - type: WallSolid - components: - - pos: -39.5,29.5 - parent: 0 - type: Transform -- uid: 3449 - type: WallSolid - components: - - pos: -38.5,29.5 - parent: 0 - type: Transform -- uid: 3450 - type: WallSolid - components: - - pos: -38.5,28.5 - parent: 0 - type: Transform -- uid: 3451 - type: WallSolid - components: - - pos: -37.5,29.5 - parent: 0 - type: Transform -- uid: 3452 - type: WallReinforced - components: - - pos: -32.5,24.5 - parent: 0 - type: Transform -- uid: 3453 - type: SubstationBasic - components: - - name: North Cargo Substation - type: MetaData - - pos: -33.5,25.5 - parent: 0 - type: Transform -- uid: 3454 - type: WallReinforced - components: - - pos: -32.5,27.5 - parent: 0 - type: Transform -- uid: 3455 - type: WallReinforced - components: - - pos: -32.5,25.5 - parent: 0 - type: Transform -- uid: 3456 - type: WallSolidRust - components: - - pos: -32.5,28.5 - parent: 0 - type: Transform -- uid: 3457 - type: WallSolid - components: - - pos: -32.5,29.5 - parent: 0 - type: Transform -- uid: 3458 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -34.5,29.5 - parent: 0 - type: Transform -- uid: 3459 - type: Girder - components: - - pos: -35.5,29.5 - parent: 0 - type: Transform -- uid: 3460 - type: WallSolidRust - components: - - pos: -36.5,29.5 - parent: 0 - type: Transform -- uid: 3461 - type: WallSolid - components: - - pos: -38.5,24.5 - parent: 0 - type: Transform -- uid: 3462 - type: WallSolid - components: - - pos: -38.5,25.5 - parent: 0 - type: Transform -- uid: 3463 - type: WallSolid - components: - - pos: -38.5,26.5 - parent: 0 - type: Transform -- uid: 3464 - type: ReinforcedWindow - components: - - pos: -43.5,13.5 - parent: 0 - type: Transform -- uid: 3465 - type: ReinforcedWindow - components: - - pos: -43.5,14.5 - parent: 0 - type: Transform -- uid: 3466 - type: ReinforcedWindow - components: - - pos: -44.5,14.5 - parent: 0 - type: Transform -- uid: 3467 - type: ReinforcedWindow - components: - - pos: -45.5,14.5 - parent: 0 - type: Transform -- uid: 3468 - type: ReinforcedWindow - components: - - pos: -43.5,21.5 - parent: 0 - type: Transform -- uid: 3469 - type: ReinforcedWindow - components: - - pos: -43.5,20.5 - parent: 0 - type: Transform -- uid: 3470 - type: ReinforcedWindow - components: - - pos: -44.5,20.5 - parent: 0 - type: Transform -- uid: 3471 - type: ReinforcedWindow - components: - - pos: -45.5,20.5 - parent: 0 - type: Transform -- uid: 3472 - type: ReinforcedWindow - components: - - pos: -43.5,17.5 - parent: 0 - type: Transform -- uid: 3473 - type: ReinforcedWindow - components: - - pos: -44.5,17.5 - parent: 0 - type: Transform -- uid: 3474 - type: ReinforcedWindow - components: - - pos: -45.5,17.5 - parent: 0 - type: Transform -- uid: 3475 - type: CableApcExtension - components: - - pos: -42.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3476 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3477 - type: Catwalk - components: - - pos: -43.5,33.5 - parent: 0 - type: Transform -- uid: 3478 - type: Catwalk - components: - - pos: -43.5,32.5 - parent: 0 - type: Transform -- uid: 3479 - type: WallReinforced - components: - - pos: -44.5,29.5 - parent: 0 - type: Transform -- uid: 3480 - type: ReinforcedWindow - components: - - pos: -44.5,24.5 - parent: 0 - type: Transform -- uid: 3481 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: -43.5,25.5 - parent: 0 - type: Transform -- uid: 3482 - type: WallReinforced - components: - - pos: -44.5,25.5 - parent: 0 - type: Transform -- uid: 3483 - type: GasPipeStraight - components: - - pos: -42.5,30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3484 - type: Catwalk - components: - - pos: -43.5,31.5 - parent: 0 - type: Transform -- uid: 3485 - type: PlasticFlapsAirtightClear - components: - - pos: -29.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3486 - type: Grille - components: - - pos: -29.5,8.5 - parent: 0 - type: Transform -- uid: 3487 - type: ReinforcedWindow - components: - - pos: -31.5,1.5 - parent: 0 - type: Transform -- uid: 3488 - type: ReinforcedWindow - components: - - pos: -33.5,1.5 - parent: 0 - type: Transform -- uid: 3489 - type: ReinforcedWindow - components: - - pos: -32.5,17.5 - parent: 0 - type: Transform -- uid: 3490 - type: WindoorSecureCargoLocked - components: - - rot: -1.5707963267948966 rad - pos: -29.5,6.5 - parent: 0 - type: Transform -- uid: 3491 - type: WindoorSecureCargoLocked - components: - - rot: -1.5707963267948966 rad - pos: -29.5,7.5 - parent: 0 - type: Transform -- uid: 3492 - type: Grille - components: - - pos: -29.5,2.5 - parent: 0 - type: Transform -- uid: 3493 - type: TableReinforced - components: - - pos: -29.5,7.5 - parent: 0 - type: Transform -- uid: 3494 - type: Grille - components: - - pos: -25.5,1.5 - parent: 0 - type: Transform -- uid: 3495 - type: Grille - components: - - pos: -24.5,1.5 - parent: 0 - type: Transform -- uid: 3496 - type: Grille - components: - - pos: -28.5,1.5 - parent: 0 - type: Transform -- uid: 3497 - type: Grille - components: - - pos: -23.5,3.5 - parent: 0 - type: Transform -- uid: 3498 - type: Grille - components: - - pos: -23.5,6.5 - parent: 0 - type: Transform -- uid: 3499 - type: Grille - components: - - pos: -31.5,1.5 - parent: 0 - type: Transform -- uid: 3500 - type: Grille - components: - - pos: -33.5,1.5 - parent: 0 - type: Transform -- uid: 3501 - type: FirelockGlass - components: - - pos: -26.5,1.5 - parent: 0 - type: Transform -- uid: 3502 - type: FirelockGlass - components: - - pos: -27.5,1.5 - parent: 0 - type: Transform -- uid: 3503 - type: FirelockGlass - components: - - pos: -23.5,4.5 - parent: 0 - type: Transform -- uid: 3504 - type: FirelockGlass - components: - - pos: -23.5,5.5 - parent: 0 - type: Transform -- uid: 3505 - type: ReinforcedWindow - components: - - pos: -29.5,2.5 - parent: 0 - type: Transform -- uid: 3506 - type: TableReinforced - components: - - pos: -29.5,6.5 - parent: 0 - type: Transform -- uid: 3507 - type: AirlockMaintLocked - components: - - pos: -25.5,9.5 - parent: 0 - type: Transform -- uid: 3508 - type: AirlockMaintLocked - components: - - pos: -23.5,10.5 - parent: 0 - type: Transform -- uid: 3509 - type: WallSolid - components: - - pos: -29.5,24.5 - parent: 0 - type: Transform -- uid: 3510 - type: WallSolid - components: - - pos: -27.5,20.5 - parent: 0 - type: Transform -- uid: 3511 - type: WallSolid - components: - - pos: -28.5,20.5 - parent: 0 - type: Transform -- uid: 3512 - type: WallSolid - components: - - pos: -29.5,20.5 - parent: 0 - type: Transform -- uid: 3513 - type: WallSolid - components: - - pos: -36.5,1.5 - parent: 0 - type: Transform -- uid: 3514 - type: WallSolid - components: - - pos: -30.5,24.5 - parent: 0 - type: Transform -- uid: 3515 - type: WallSolid - components: - - pos: -29.5,23.5 - parent: 0 - type: Transform -- uid: 3516 - type: WallSolid - components: - - pos: -30.5,20.5 - parent: 0 - type: Transform -- uid: 3517 - type: ReinforcedWindow - components: - - pos: -28.5,9.5 - parent: 0 - type: Transform -- uid: 3518 - type: WaterCooler - components: - - pos: -31.5,12.5 - parent: 0 - type: Transform -- uid: 3519 - type: Grille - components: - - pos: -28.5,9.5 - parent: 0 - type: Transform -- uid: 3520 - type: Table - components: - - pos: -30.5,12.5 - parent: 0 - type: Transform -- uid: 3521 - type: Table - components: - - pos: -29.5,12.5 - parent: 0 - type: Transform -- uid: 3522 - type: Table - components: - - pos: -28.5,12.5 - parent: 0 - type: Transform -- uid: 3523 - type: KitchenMicrowave - components: - - pos: -28.5,12.5 - parent: 0 - type: Transform -- uid: 3524 - type: DonkpocketBoxSpawner - components: - - pos: -29.5,12.5 - parent: 0 - type: Transform -- uid: 3525 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -30.5,10.5 - parent: 0 - type: Transform -- uid: 3526 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -28.5,10.5 - parent: 0 - type: Transform -- uid: 3527 - type: Table - components: - - pos: -29.5,10.5 - parent: 0 - type: Transform -- uid: 3528 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -31.5,10.5 - parent: 0 - type: Transform -- uid: 3529 - type: WallSolid - components: - - pos: -37.5,1.5 - parent: 0 - type: Transform -- uid: 3530 - type: WallSolid - components: - - pos: -38.5,1.5 - parent: 0 - type: Transform -- uid: 3531 - type: WallSolid - components: - - pos: -43.5,1.5 - parent: 0 - type: Transform -- uid: 3532 - type: WallSolid - components: - - pos: -43.5,2.5 - parent: 0 - type: Transform -- uid: 3533 - type: WallSolid - components: - - pos: -43.5,3.5 - parent: 0 - type: Transform -- uid: 3534 - type: FireExtinguisher - components: - - pos: -43.527756,24.607794 - parent: 0 - type: Transform -- uid: 3535 - type: WallSolid - components: - - pos: -44.5,4.5 - parent: 0 - type: Transform -- uid: 3536 - type: WallSolid - components: - - pos: -44.5,5.5 - parent: 0 - type: Transform -- uid: 3537 - type: ReinforcedWindow - components: - - pos: -42.5,7.5 - parent: 0 - type: Transform -- uid: 3538 - type: ReinforcedWindow - components: - - pos: -40.5,7.5 - parent: 0 - type: Transform -- uid: 3539 - type: ReinforcedWindow - components: - - pos: -39.5,1.5 - parent: 0 - type: Transform -- uid: 3540 - type: ReinforcedWindow - components: - - pos: -41.5,1.5 - parent: 0 - type: Transform -- uid: 3541 - type: PlasticFlapsAirtightClear - components: - - pos: -42.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3542 - type: TableReinforced - components: - - pos: -40.5,1.5 - parent: 0 - type: Transform -- uid: 3543 - type: FirelockGlass - components: - - pos: -40.5,1.5 - parent: 0 - type: Transform -- uid: 3544 - type: SignMail - components: - - pos: -38.5,1.5 - parent: 0 - type: Transform -- uid: 3545 - type: WallReinforced - components: - - pos: -45.5,9.5 - parent: 0 - type: Transform -- uid: 3546 - type: WallReinforced - components: - - pos: -46.5,9.5 - parent: 0 - type: Transform -- uid: 3547 - type: WallReinforced - components: - - pos: -47.5,9.5 - parent: 0 - type: Transform -- uid: 3548 - type: ReinforcedWindow - components: - - pos: -48.5,9.5 - parent: 0 - type: Transform -- uid: 3549 - type: ReinforcedWindow - components: - - pos: -50.5,9.5 - parent: 0 - type: Transform -- uid: 3550 - type: ReinforcedWindow - components: - - pos: -49.5,9.5 - parent: 0 - type: Transform -- uid: 3551 - type: WallReinforced - components: - - pos: -51.5,9.5 - parent: 0 - type: Transform -- uid: 3552 - type: WallReinforced - components: - - pos: -52.5,9.5 - parent: 0 - type: Transform -- uid: 3553 - type: WallReinforced - components: - - pos: -53.5,9.5 - parent: 0 - type: Transform -- uid: 3554 - type: WallReinforced - components: - - pos: -54.5,9.5 - parent: 0 - type: Transform -- uid: 3555 - type: Table - components: - - pos: -23.5,12.5 - parent: 0 - type: Transform -- uid: 3556 - type: DisposalTrunk - components: - - pos: -32.5,7.5 - parent: 0 - type: Transform -- uid: 3557 - type: DisposalJunction - components: - - pos: -33.5,4.5 - parent: 0 - type: Transform -- uid: 3558 - type: WallSolid - components: - - pos: 0.5,12.5 - parent: 0 - type: Transform -- uid: 3559 - type: trayScanner - components: - - pos: -17.494946,16.630125 - parent: 0 - type: Transform -- uid: 3560 - type: ToolboxEmergencyFilled - components: - - pos: -21.330643,15.927778 - parent: 0 - type: Transform -- uid: 3561 - type: PowerCellRecharger - components: - - pos: -20.5,19.5 - parent: 0 - type: Transform -- uid: 3562 - type: CableApcExtension - components: - - pos: -24.5,13.5 - parent: 0 - type: Transform -- uid: 3563 - type: CableApcExtension - components: - - pos: -23.5,19.5 - parent: 0 - type: Transform -- uid: 3564 - type: CrateEmptySpawner - components: - - pos: -24.5,17.5 - parent: 0 - type: Transform -- uid: 3565 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -24.5,14.5 - parent: 0 - type: Transform -- uid: 3566 - type: Rack - components: - - pos: -24.5,18.5 - parent: 0 - type: Transform -- uid: 3567 - type: DisposalPipe - components: - - pos: -21.5,-1.5 - parent: 0 - type: Transform -- uid: 3568 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -42.5,4.5 - parent: 0 - type: Transform -- uid: 3569 - type: BoxLightMixed - components: - - pos: -37.473976,2.6480932 - parent: 0 - type: Transform -- uid: 3570 - type: SignDirectionalSalvage - components: - - rot: 3.141592653589793 rad - pos: -29.50497,1.7240252 - parent: 0 - type: Transform -- uid: 3571 - type: HandheldGPSBasic - components: - - pos: -29.701797,16.777357 - parent: 0 - type: Transform -- uid: 3572 - type: Grille - components: - - pos: -6.5,16.5 - parent: 0 - type: Transform -- uid: 3573 - type: ClosetEmergencyFilledRandom - components: - - pos: -13.5,11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 3574 - type: DisposalPipe - components: - - pos: -21.5,4.5 - parent: 0 - type: Transform -- uid: 3575 - type: CrowbarRed - components: - - pos: -37.44284,23.453922 - parent: 0 - type: Transform -- uid: 3576 - type: PoweredSmallLight - components: - - pos: -44.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3577 - type: FirelockGlass - components: - - pos: -41.5,7.5 - parent: 0 - type: Transform -- uid: 3578 - type: SheetSteel - components: - - pos: -35.513077,23.556976 - parent: 0 - type: Transform -- uid: 3579 - type: ClothingBeltUtilityFilled - components: - - pos: -41.50058,2.5916038 - parent: 0 - type: Transform -- uid: 3580 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -34.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3581 - type: Grille - components: - - pos: -14.5,16.5 - parent: 0 - type: Transform -- uid: 3582 - type: AirlockExternalGlassCargoLocked - components: - - pos: -42.5,29.5 - parent: 0 - type: Transform -- uid: 3583 - type: Pickaxe - components: - - pos: -43.5036,24.391258 - parent: 0 - type: Transform -- uid: 3584 - type: FireExtinguisher - components: - - pos: -43.746506,24.670294 - parent: 0 - type: Transform -- uid: 3585 - type: Pen - components: - - pos: -29.364641,17.068672 - parent: 0 - type: Transform -- uid: 3586 - type: CrowbarRed - components: - - pos: -19.465536,12.436066 - parent: 0 - type: Transform -- uid: 3587 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -21.5,12.5 - parent: 0 - type: Transform -- uid: 3588 - type: WallReinforced - components: - - pos: 4.5,22.5 - parent: 0 - type: Transform -- uid: 3589 - type: WallSolid - components: - - pos: -0.5,18.5 - parent: 0 - type: Transform -- uid: 3590 - type: WallReinforced - components: - - pos: 6.5,22.5 - parent: 0 - type: Transform -- uid: 3591 - type: ClosetFireFilled - components: - - pos: -15.5,11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 3592 - type: ToolboxElectricalFilled - components: - - pos: -24.465536,18.592316 - parent: 0 - type: Transform -- uid: 3593 - type: WallSolid - components: - - pos: 3.5,11.5 - parent: 0 - type: Transform -- uid: 3594 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,9.5 - parent: 0 - type: Transform -- uid: 3595 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -21.5,9.5 - parent: 0 - type: Transform -- uid: 3596 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,13.5 - parent: 0 - type: Transform -- uid: 3597 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -32.5,3.5 - parent: 0 - type: Transform -- uid: 3598 - type: CableApcExtension - components: - - pos: -23.5,18.5 - parent: 0 - type: Transform -- uid: 3599 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,19.5 - parent: 0 - type: Transform -- uid: 3600 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: -29.5,1.5 - parent: 0 - type: Transform -- uid: 3601 - type: PowerCellRecharger - components: - - pos: -29.5,7.5 - parent: 0 - type: Transform -- uid: 3602 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -30.5,14.5 - parent: 0 - type: Transform -- uid: 3603 - type: SheetGlass - components: - - pos: -35.05995,23.556976 - parent: 0 - type: Transform -- uid: 3604 - type: WallSolid - components: - - pos: -0.5,22.5 - parent: 0 - type: Transform -- uid: 3605 - type: WallSolid - components: - - pos: 8.5,16.5 - parent: 0 - type: Transform -- uid: 3606 - type: WallSolid - components: - - pos: 0.5,16.5 - parent: 0 - type: Transform -- uid: 3607 - type: WallSolid - components: - - pos: 4.5,11.5 - parent: 0 - type: Transform -- uid: 3608 - type: WallSolid - components: - - pos: 9.5,12.5 - parent: 0 - type: Transform -- uid: 3609 - type: Grille - components: - - pos: -14.5,12.5 - parent: 0 - type: Transform -- uid: 3610 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 0 - type: Transform -- uid: 3611 - type: OxygenCanister - components: - - pos: -39.5,27.5 - parent: 0 - type: Transform -- uid: 3612 - type: SheetSteel - components: - - pos: -35.513077,23.556976 - parent: 0 - type: Transform -- uid: 3613 - type: Table - components: - - pos: -21.5,16.5 - parent: 0 - type: Transform -- uid: 3614 - type: Grille - components: - - pos: -6.5,22.5 - parent: 0 - type: Transform -- uid: 3615 - type: DisposalBend - components: - - pos: -18.5,13.5 - parent: 0 - type: Transform -- uid: 3616 - type: WallSolid - components: - - pos: 2.5,12.5 - parent: 0 - type: Transform -- uid: 3617 - type: SignToolStorage - components: - - pos: -20.5,20.5 - parent: 0 - type: Transform -- uid: 3618 - type: Grille - components: - - pos: -4.5,13.5 - parent: 0 - type: Transform -- uid: 3619 - type: WallSolid - components: - - pos: 1.5,22.5 - parent: 0 - type: Transform -- uid: 3620 - type: WallSolid - components: - - pos: 9.5,22.5 - parent: 0 - type: Transform -- uid: 3621 - type: WallSolid - components: - - pos: -0.5,16.5 - parent: 0 - type: Transform -- uid: 3622 - type: WallSolid - components: - - pos: -0.5,21.5 - parent: 0 - type: Transform -- uid: 3623 - type: SheetPlasteel - components: - - pos: -34.039635,23.494001 - parent: 0 - type: Transform -- uid: 3624 - type: FirelockGlass - components: - - pos: -33.5,8.5 - parent: 0 - type: Transform -- uid: 3625 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -33.5,3.5 - parent: 0 - type: Transform -- uid: 3626 - type: WeldingFuelTankFull - components: - - pos: -20.5,12.5 - parent: 0 - type: Transform -- uid: 3627 - type: DisposalPipe - components: - - pos: -21.5,7.5 - parent: 0 - type: Transform -- uid: 3628 - type: SignMail - components: - - pos: -35.5,6.5 - parent: 0 - type: Transform -- uid: 3629 - type: ExtinguisherCabinetFilled - components: - - pos: -23.5,8.5 - parent: 0 - type: Transform -- uid: 3630 - type: SignNosmoking - components: - - pos: -25.5,14.5 - parent: 0 - type: Transform -- uid: 3631 - type: ClothingHandsGlovesColorYellow - components: - - pos: -24.528036,19.404816 - parent: 0 - type: Transform -- uid: 3632 - type: HandheldGPSBasic - components: - - pos: -24.512411,19.51419 - parent: 0 - type: Transform -- uid: 3633 - type: Grille - components: - - pos: -14.5,17.5 - parent: 0 - type: Transform -- uid: 3634 - type: Chair - components: - - pos: -21.5,17.5 - parent: 0 - type: Transform -- uid: 3635 - type: ToolboxMechanicalFilled - components: - - pos: -21.440018,15.740278 - parent: 0 - type: Transform -- uid: 3636 - type: WelderMini - components: - - pos: -17.418661,17.42044 - parent: 0 - type: Transform -- uid: 3637 - type: Shovel - components: - - pos: -43.644226,24.625633 - parent: 0 - type: Transform -- uid: 3638 - type: YellowOxygenTankFilled - components: - - pos: -43.593536,23.615883 - parent: 0 - type: Transform -- uid: 3639 - type: YellowOxygenTankFilled - components: - - pos: -43.374786,23.584633 - parent: 0 - type: Transform -- uid: 3640 - type: ClothingHeadHatCargosoftFlipped - components: - - pos: -33.490707,14.741043 - parent: 0 - type: Transform -- uid: 3641 - type: CrateFilledSpawner - components: - - pos: -36.5,13.5 - parent: 0 - type: Transform -- uid: 3642 - type: Poweredlight - components: - - pos: -36.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3643 - type: SpawnPointCargoTechnician - components: - - pos: -31.5,4.5 - parent: 0 - type: Transform -- uid: 3644 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3645 - type: CableApcExtension - components: - - pos: -42.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3646 - type: DisposalPipe - components: - - pos: -21.5,2.5 - parent: 0 - type: Transform -- uid: 3647 - type: DisposalPipe - components: - - pos: -21.5,1.5 - parent: 0 - type: Transform -- uid: 3648 - type: Grille - components: - - pos: -44.5,26.5 - parent: 0 - type: Transform -- uid: 3649 - type: Poweredlight - components: - - pos: -38.5,21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3650 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3651 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3652 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3653 - type: CrateFilledSpawner - components: - - pos: -37.5,19.5 - parent: 0 - type: Transform -- uid: 3654 - type: DisposalPipe - components: - - pos: -21.5,0.5 - parent: 0 - type: Transform -- uid: 3655 - type: SpawnPointCargoTechnician - components: - - pos: -32.5,5.5 - parent: 0 - type: Transform -- uid: 3656 - type: Poweredlight - components: - - pos: -43.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3657 - type: MedkitBurnFilled - components: - - pos: -38.452568,11.441486 - parent: 0 - type: Transform -- uid: 3658 - type: Multitool - components: - - pos: -29.27196,17.553543 - parent: 0 - type: Transform -- uid: 3659 - type: SheetPlasteel - components: - - pos: -34.039635,23.494001 - parent: 0 - type: Transform -- uid: 3660 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -30.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3661 - type: SpawnPointCargoTechnician - components: - - pos: -33.5,6.5 - parent: 0 - type: Transform -- uid: 3662 - type: Multitool - components: - - pos: -17.309286,19.654816 - parent: 0 - type: Transform -- uid: 3663 - type: Wrench - components: - - pos: -23.63318,12.581865 - parent: 0 - type: Transform -- uid: 3664 - type: SignToolStorage - components: - - pos: -19.5,11.5 - parent: 0 - type: Transform -- uid: 3665 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,9.5 - parent: 0 - type: Transform -- uid: 3666 - type: DisposalPipe - components: - - pos: -18.5,10.5 - parent: 0 - type: Transform -- uid: 3667 - type: WallSolid - components: - - pos: 3.5,12.5 - parent: 0 - type: Transform -- uid: 3668 - type: WallSolid - components: - - pos: 1.5,12.5 - parent: 0 - type: Transform -- uid: 3669 - type: WallSolid - components: - - pos: -0.5,22.5 - parent: 0 - type: Transform -- uid: 3670 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,13.5 - parent: 0 - type: Transform -- uid: 3671 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -21.5,13.5 - parent: 0 - type: Transform -- uid: 3672 - type: Grille - components: - - pos: -4.5,21.5 - parent: 0 - type: Transform -- uid: 3673 - type: Multitool - components: - - pos: -17.668661,19.654816 - parent: 0 - type: Transform -- uid: 3674 - type: Screwdriver - components: - - pos: -17.512411,17.717316 - parent: 0 - type: Transform -- uid: 3675 - type: CableApcExtension - components: - - pos: -18.5,12.5 - parent: 0 - type: Transform -- uid: 3676 - type: MedkitFilled - components: - - pos: -20.512411,15.623566 - parent: 0 - type: Transform -- uid: 3677 - type: WallSolid - components: - - pos: -0.5,20.5 - parent: 0 - type: Transform -- uid: 3678 - type: WallSolid - components: - - pos: -0.5,17.5 - parent: 0 - type: Transform -- uid: 3679 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -22.5,16.5 - parent: 0 - type: Transform -- uid: 3680 - type: WallSolid - components: - - pos: -0.5,12.5 - parent: 0 - type: Transform -- uid: 3681 - type: WallSolid - components: - - pos: 2.5,22.5 - parent: 0 - type: Transform -- uid: 3682 - type: WallSolid - components: - - pos: 9.5,21.5 - parent: 0 - type: Transform -- uid: 3683 - type: WallSolid - components: - - pos: 9.5,19.5 - parent: 0 - type: Transform -- uid: 3684 - type: WallSolid - components: - - pos: 0.5,22.5 - parent: 0 - type: Transform -- uid: 3685 - type: ClosetEmergencyFilledRandom - components: - - pos: -14.5,11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 3686 - type: DisposalPipe - components: - - pos: -21.5,8.5 - parent: 0 - type: Transform -- uid: 3687 - type: DisposalPipe - components: - - pos: -21.5,6.5 - parent: 0 - type: Transform -- uid: 3688 - type: WaterTankFull - components: - - pos: -22.5,12.5 - parent: 0 - type: Transform -- uid: 3689 - type: ClothingMaskGasExplorer - components: - - pos: -33.49276,15.494001 - parent: 0 - type: Transform -- uid: 3690 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3691 - type: DisposalBend - components: - - pos: -26.5,3.5 - parent: 0 - type: Transform -- uid: 3692 - type: DisposalBend - components: - - pos: -42.5,5.5 - parent: 0 - type: Transform -- uid: 3693 - type: DisposalTrunk - components: - - pos: -33.5,13.5 - parent: 0 - type: Transform -- uid: 3694 - type: SheetSteel - components: - - pos: -35.513077,23.556976 - parent: 0 - type: Transform -- uid: 3695 - type: FirelockGlass - components: - - pos: -34.5,8.5 - parent: 0 - type: Transform -- uid: 3696 - type: Table - components: - - pos: -37.5,23.5 - parent: 0 - type: Transform -- uid: 3697 - type: TintedWindow - components: - - pos: -30.5,-44.5 - parent: 0 - type: Transform -- uid: 3698 - type: Rack - components: - - pos: -43.5,24.5 - parent: 0 - type: Transform -- uid: 3699 - type: Pickaxe - components: - - pos: -43.550476,24.406883 - parent: 0 - type: Transform -- uid: 3700 - type: Pickaxe - components: - - pos: -43.5661,24.391258 - parent: 0 - type: Transform -- uid: 3701 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: -39.5,26.5 - parent: 0 - type: Transform -- uid: 3702 - type: HandLabeler - components: - - pos: -36.553383,2.5699682 - parent: 0 - type: Transform -- uid: 3703 - type: SignDirectionalBridge - components: - - pos: -23.50497,1.2865252 - parent: 0 - type: Transform -- uid: 3704 - type: Table - components: - - pos: -41.5,2.5 - parent: 0 - type: Transform -- uid: 3705 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: -21.5,-0.5 - parent: 0 - type: Transform -- uid: 3706 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -21.5,-2.5 - parent: 0 - type: Transform -- uid: 3707 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -44.5,18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3708 - type: BoxBeaker - components: - - pos: -37.552216,23.652153 - parent: 0 - type: Transform -- uid: 3709 - type: DisposalPipe - components: - - pos: -21.5,3.5 - parent: 0 - type: Transform -- uid: 3710 - type: Table - components: - - pos: -17.5,19.5 - parent: 0 - type: Transform -- uid: 3711 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -24.5,17.5 - parent: 0 - type: Transform -- uid: 3712 - type: CrateEmptySpawner - components: - - pos: -24.5,15.5 - parent: 0 - type: Transform -- uid: 3713 - type: CableApcExtension - components: - - pos: -25.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3714 - type: CableApcExtension - components: - - pos: -23.5,13.5 - parent: 0 - type: Transform -- uid: 3715 - type: CableApcExtension - components: - - pos: -22.5,18.5 - parent: 0 - type: Transform -- uid: 3716 - type: Grille - components: - - pos: -6.5,12.5 - parent: 0 - type: Transform -- uid: 3717 - type: WallSolid - components: - - pos: 9.5,17.5 - parent: 0 - type: Transform -- uid: 3718 - type: WallSolid - components: - - pos: 10.5,16.5 - parent: 0 - type: Transform -- uid: 3719 - type: WallSolid - components: - - pos: 9.5,16.5 - parent: 0 - type: Transform -- uid: 3720 - type: WallSolid - components: - - pos: 8.5,11.5 - parent: 0 - type: Transform -- uid: 3721 - type: WallSolid - components: - - pos: 9.5,11.5 - parent: 0 - type: Transform -- uid: 3722 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -18.5,9.5 - parent: 0 - type: Transform -- uid: 3723 - type: CableApcExtension - components: - - pos: -21.5,13.5 - parent: 0 - type: Transform -- uid: 3724 - type: DisposalPipe - components: - - pos: -33.5,5.5 - parent: 0 - type: Transform -- uid: 3725 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,3.5 - parent: 0 - type: Transform -- uid: 3726 - type: CableApcExtension - components: - - pos: -25.5,16.5 - parent: 0 - type: Transform -- uid: 3727 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3728 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,3.5 - parent: 0 - type: Transform -- uid: 3729 - type: DisposalJunctionFlipped - components: - - pos: -33.5,6.5 - parent: 0 - type: Transform -- uid: 3730 - type: CableApcExtension - components: - - pos: -20.5,13.5 - parent: 0 - type: Transform -- uid: 3731 - type: CableApcExtension - components: - - pos: -19.5,13.5 - parent: 0 - type: Transform -- uid: 3732 - type: DisposalPipe - components: - - pos: -33.5,7.5 - parent: 0 - type: Transform -- uid: 3733 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,3.5 - parent: 0 - type: Transform -- uid: 3734 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -19.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3735 - type: CableApcExtension - components: - - pos: -22.5,15.5 - parent: 0 - type: Transform -- uid: 3736 - type: CableApcExtension - components: - - pos: -19.5,17.5 - parent: 0 - type: Transform -- uid: 3737 - type: CableApcExtension - components: - - pos: -22.5,16.5 - parent: 0 - type: Transform -- uid: 3738 - type: DisposalUnit - components: - - pos: -21.5,12.5 - parent: 0 - type: Transform -- uid: 3739 - type: SpawnPointSalvageSpecialist - components: - - pos: -41.5,26.5 - parent: 0 - type: Transform -- uid: 3740 - type: BannerCargo - components: - - pos: -39.5,2.5 - parent: 0 - type: Transform -- uid: 3741 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -37.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3742 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3743 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3744 - type: DisposalBend - components: - - pos: -18.5,-2.5 - parent: 0 - type: Transform -- uid: 3745 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -18.5,-3.5 - parent: 0 - type: Transform -- uid: 3746 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-0.5 - parent: 0 - type: Transform -- uid: 3747 - type: CableMVStack - components: - - pos: -20.403036,19.686066 - parent: 0 - type: Transform -- uid: 3748 - type: CableApcExtension - components: - - pos: -18.5,18.5 - parent: 0 - type: Transform -- uid: 3749 - type: CableApcExtension - components: - - pos: -20.5,17.5 - parent: 0 - type: Transform -- uid: 3750 - type: Table - components: - - pos: -24.5,19.5 - parent: 0 - type: Transform -- uid: 3751 - type: SpawnPointSalvageSpecialist - components: - - pos: -41.5,25.5 - parent: 0 - type: Transform -- uid: 3752 - type: CrateFilledSpawner - components: - - pos: -38.5,19.5 - parent: 0 - type: Transform -- uid: 3753 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3754 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3755 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 0 - type: Transform -- uid: 3756 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -39.5,4.5 - parent: 0 - type: Transform -- uid: 3757 - type: SheetPlastic - components: - - pos: -34.606827,23.525726 - parent: 0 - type: Transform -- uid: 3758 - type: Grille - components: - - pos: -44.5,30.5 - parent: 0 - type: Transform -- uid: 3759 - type: SheetPlastic - components: - - pos: -34.606827,23.525726 - parent: 0 - type: Transform -- uid: 3760 - type: SheetGlass - components: - - pos: -35.05995,23.556976 - parent: 0 - type: Transform -- uid: 3761 - type: PartRodMetal - components: - - pos: -42.473724,23.635101 - parent: 0 - type: Transform -- uid: 3762 - type: WallReinforced - components: - - pos: 5.5,22.5 - parent: 0 - type: Transform -- uid: 3763 - type: PartRodMetal - components: - - pos: -42.7706,23.635101 - parent: 0 - type: Transform -- uid: 3764 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -8.5,34.5 - parent: 0 - type: Transform -- uid: 3765 - type: Table - components: - - pos: -21.5,15.5 - parent: 0 - type: Transform -- uid: 3766 - type: Grille - components: - - pos: -16.5,13.5 - parent: 0 - type: Transform -- uid: 3767 - type: PosterContrabandMissingGloves - components: - - pos: -25.5,18.5 - parent: 0 - type: Transform -- uid: 3768 - type: CableApcStack - components: - - pos: -20.550795,19.586615 - parent: 0 - type: Transform -- uid: 3769 - type: CableApcExtension - components: - - pos: -21.5,17.5 - parent: 0 - type: Transform -- uid: 3770 - type: Table - components: - - pos: -20.5,19.5 - parent: 0 - type: Transform -- uid: 3771 - type: Table - components: - - pos: -17.5,17.5 - parent: 0 - type: Transform -- uid: 3772 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -17.5,15.5 - parent: 0 - type: Transform -- uid: 3773 - type: Table - components: - - pos: -19.5,12.5 - parent: 0 - type: Transform -- uid: 3774 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -24.5,12.5 - parent: 0 - type: Transform -- uid: 3775 - type: Table - components: - - pos: -20.5,15.5 - parent: 0 - type: Transform -- uid: 3776 - type: Table - components: - - pos: -17.5,16.5 - parent: 0 - type: Transform -- uid: 3777 - type: Table - components: - - pos: -21.5,19.5 - parent: 0 - type: Transform -- uid: 3778 - type: CableApcExtension - components: - - pos: -22.5,17.5 - parent: 0 - type: Transform -- uid: 3779 - type: FlashlightLantern - components: - - pos: -17.434286,16.98294 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 3780 - type: PosterContrabandHackingGuide - components: - - pos: -16.5,17.5 - parent: 0 - type: Transform -- uid: 3781 - type: PosterLegitReportCrimes - components: - - pos: -19.5,20.5 - parent: 0 - type: Transform -- uid: 3782 - type: DisposalPipe - components: - - pos: -18.5,11.5 - parent: 0 - type: Transform -- uid: 3783 - type: SpawnPointSalvageSpecialist - components: - - pos: -41.5,24.5 - parent: 0 - type: Transform -- uid: 3784 - type: CrateFilledSpawner - components: - - pos: -38.5,15.5 - parent: 0 - type: Transform -- uid: 3785 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3786 - type: SpawnPointQuartermaster - components: - - pos: -30.5,15.5 - parent: 0 - type: Transform -- uid: 3787 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 0 - type: Transform -- uid: 3788 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -38.5,4.5 - parent: 0 - type: Transform -- uid: 3789 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -35.5,4.5 - parent: 0 - type: Transform -- uid: 3790 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -31.5,3.5 - parent: 0 - type: Transform -- uid: 3791 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,3.5 - parent: 0 - type: Transform -- uid: 3792 - type: CableApcExtension - components: - - pos: -23.5,16.5 - parent: 0 - type: Transform -- uid: 3793 - type: CableApcExtension - components: - - pos: -24.5,16.5 - parent: 0 - type: Transform -- uid: 3794 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3795 - type: CableApcExtension - components: - - pos: -18.5,17.5 - parent: 0 - type: Transform -- uid: 3796 - type: CableApcExtension - components: - - pos: -22.5,14.5 - parent: 0 - type: Transform -- uid: 3797 - type: CableApcExtension - components: - - pos: -22.5,13.5 - parent: 0 - type: Transform -- uid: 3798 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -40.5,4.5 - parent: 0 - type: Transform -- uid: 3799 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -41.5,4.5 - parent: 0 - type: Transform -- uid: 3800 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -43.5,5.5 - parent: 0 - type: Transform -- uid: 3801 - type: Wirecutter - components: - - pos: -17.528036,16.592316 - parent: 0 - type: Transform -- uid: 3802 - type: Grille - components: - - pos: -14.5,22.5 - parent: 0 - type: Transform -- uid: 3803 - type: PosterContrabandTools - components: - - pos: -17.5,20.5 - parent: 0 - type: Transform -- uid: 3804 - type: DisposalPipe - components: - - pos: -18.5,12.5 - parent: 0 - type: Transform -- uid: 3805 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,14.5 - parent: 0 - type: Transform -- uid: 3806 - type: Grille - components: - - pos: -16.5,21.5 - parent: 0 - type: Transform -- uid: 3807 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -37.5,4.5 - parent: 0 - type: Transform -- uid: 3808 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -34.5,4.5 - parent: 0 - type: Transform -- uid: 3809 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -36.5,4.5 - parent: 0 - type: Transform -- uid: 3810 - type: WallSolid - components: - - pos: 8.5,22.5 - parent: 0 - type: Transform -- uid: 3811 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -8.5,33.5 - parent: 0 - type: Transform -- uid: 3812 - type: TintedWindow - components: - - pos: 9.5,13.5 - parent: 0 - type: Transform -- uid: 3813 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-0.5 - parent: 0 - type: Transform -- uid: 3814 - type: Table - components: - - pos: -20.5,16.5 - parent: 0 - type: Transform -- uid: 3815 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,19.5 - parent: 0 - type: Transform -- uid: 3816 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-2.5 - parent: 0 - type: Transform -- uid: 3817 - type: ClothingBeltUtilityFilled - components: - - pos: -23.559286,12.545441 - parent: 0 - type: Transform -- uid: 3818 - type: Table - components: - - pos: -29.5,16.5 - parent: 0 - type: Transform -- uid: 3819 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -34.5,14.5 - parent: 0 - type: Transform -- uid: 3820 - type: WallSolid - components: - - pos: -22.5,-44.5 - parent: 0 - type: Transform -- uid: 3821 - type: Table - components: - - pos: -33.5,23.5 - parent: 0 - type: Transform -- uid: 3822 - type: DisposalPipe - components: - - pos: -26.5,0.5 - parent: 0 - type: Transform -- uid: 3823 - type: DisposalPipe - components: - - pos: -33.5,10.5 - parent: 0 - type: Transform -- uid: 3824 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3825 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -33.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3826 - type: DisposalPipe - components: - - pos: -21.5,5.5 - parent: 0 - type: Transform -- uid: 3827 - type: Poweredlight - components: - - pos: -20.5,19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3828 - type: CableApcExtension - components: - - pos: -18.5,13.5 - parent: 0 - type: Transform -- uid: 3829 - type: PowerCellRecharger - components: - - pos: -21.5,19.5 - parent: 0 - type: Transform -- uid: 3830 - type: Welder - components: - - pos: -21.418661,16.54544 - parent: 0 - type: Transform -- uid: 3831 - type: Grille - components: - - pos: -6.5,17.5 - parent: 0 - type: Transform -- uid: 3832 - type: SheetSteel - components: - - pos: -20.705643,16.490278 - parent: 0 - type: Transform -- uid: 3833 - type: WallSolid - components: - - pos: 9.5,20.5 - parent: 0 - type: Transform -- uid: 3834 - type: PottedPlantRandom - components: - - pos: -7.5,11.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 3835 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -36.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3836 - type: DisposalUnit - components: - - pos: -43.5,5.5 - parent: 0 - type: Transform -- uid: 3837 - type: GasPipeStraight - components: - - pos: -45.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3838 - type: WallSolid - components: - - pos: -47.5,1.5 - parent: 0 - type: Transform -- uid: 3839 - type: WallSolid - components: - - pos: -53.5,1.5 - parent: 0 - type: Transform -- uid: 3840 - type: GasPipeStraight - components: - - pos: -44.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3841 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3842 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3843 - type: GasPipeTJunction - components: - - pos: -50.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3844 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3845 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3846 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3847 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3848 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3849 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -34.5,5.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 3860 - Forward: - - port: Left - uid: 3860 - Off: - - port: Middle - uid: 3860 - type: SignalReceiver -- uid: 3850 - type: Table - components: - - pos: -29.5,17.5 - parent: 0 - type: Transform -- uid: 3851 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -50.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3852 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3853 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3854 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3855 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3856 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3857 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3858 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3859 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3860 - type: TwoWayLever - components: - - pos: -34.5,6.5 - parent: 0 - type: Transform - - outputs: - Left: - - port: Forward - uid: 3849 - - port: Forward - uid: 4022 - - port: Forward - uid: 4023 - Right: - - port: Reverse - uid: 3849 - - port: Reverse - uid: 4022 - - port: Reverse - uid: 4023 - Middle: - - port: Off - uid: 3849 - - port: Off - uid: 4022 - - port: Off - uid: 4023 - type: SignalTransmitter -- uid: 3861 - type: ShowcaseRobotAntique - components: - - pos: -31.5,14.5 - parent: 0 - type: Transform -- uid: 3862 - type: BiomassReclaimer - components: - - pos: -15.5,-44.5 - parent: 0 - type: Transform -- uid: 3863 - type: filingCabinetDrawer - components: - - pos: -30.5,17.5 - parent: 0 - type: Transform -- uid: 3864 - type: LockerQuarterMasterFilled - components: - - pos: -31.5,17.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 3865 - type: PlasticFlapsAirtightClear - components: - - pos: -35.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3866 - type: PlasticFlapsAirtightClear - components: - - pos: -38.5,7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3867 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3868 - type: DisposalUnit - components: - - pos: -33.5,13.5 - parent: 0 - type: Transform -- uid: 3869 - type: Table - components: - - pos: -33.5,15.5 - parent: 0 - type: Transform -- uid: 3870 - type: CarpetOrange - components: - - pos: -28.5,15.5 - parent: 0 - type: Transform -- uid: 3871 - type: CarpetOrange - components: - - pos: -28.5,16.5 - parent: 0 - type: Transform -- uid: 3872 - type: CarpetOrange - components: - - pos: -29.5,15.5 - parent: 0 - type: Transform -- uid: 3873 - type: AirlockMaintCargoLocked - components: - - pos: -44.5,6.5 - parent: 0 - type: Transform -- uid: 3874 - type: AirlockMaintCargoLocked - components: - - pos: -44.5,8.5 - parent: 0 - type: Transform -- uid: 3875 - type: AirlockCargoGlassLocked - components: - - pos: -34.5,8.5 - parent: 0 - type: Transform -- uid: 3876 - type: AirlockCargoGlassLocked - components: - - pos: -33.5,8.5 - parent: 0 - type: Transform -- uid: 3877 - type: AirlockCargoGlassLocked - components: - - pos: -41.5,7.5 - parent: 0 - type: Transform -- uid: 3878 - type: AirlockCargoGlassLocked - components: - - pos: -35.5,4.5 - parent: 0 - type: Transform -- uid: 3879 - type: AirlockCargoGlassLocked - components: - - pos: -32.5,11.5 - parent: 0 - type: Transform -- uid: 3880 - type: AirlockSalvageGlassLocked - components: - - pos: -41.5,22.5 - parent: 0 - type: Transform -- uid: 3881 - type: AirlockSalvageGlassLocked - components: - - pos: -40.5,22.5 - parent: 0 - type: Transform -- uid: 3882 - type: VendingMachineSalvage - components: - - flags: SessionSpecific - name: Salvage Equipment - type: MetaData - - pos: -41.5,28.5 - parent: 0 - type: Transform -- uid: 3883 - type: GasPipeStraight - components: - - pos: -42.5,29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3884 - type: AirlockExternalGlassCargoLocked - components: - - pos: -43.5,18.5 - parent: 0 - type: Transform -- uid: 3885 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -45.5,16.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3886 - type: AirlockExternalGlassCargoLocked - components: - - pos: -43.5,16.5 - parent: 0 - type: Transform -- uid: 3887 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -45.5,18.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3888 - type: AirlockQuartermasterGlassLocked - components: - - pos: -32.5,16.5 - parent: 0 - type: Transform -- uid: 3889 - type: AirlockCargoLocked - components: - - pos: -29.5,22.5 - parent: 0 - type: Transform -- uid: 3890 - type: AirlockCargoLocked - components: - - pos: -32.5,22.5 - parent: 0 - type: Transform -- uid: 3891 - type: AirlockMaintLocked - components: - - pos: -26.5,20.5 - parent: 0 - type: Transform -- uid: 3892 - type: AirlockMaintLocked - components: - - pos: -31.5,20.5 - parent: 0 - type: Transform -- uid: 3893 - type: AirlockMaintLocked - components: - - pos: -31.5,24.5 - parent: 0 - type: Transform -- uid: 3894 - type: AirlockGlass - components: - - pos: -23.5,20.5 - parent: 0 - type: Transform -- uid: 3895 - type: AirlockGlass - components: - - pos: -22.5,20.5 - parent: 0 - type: Transform -- uid: 3896 - type: AirlockGlass - components: - - pos: -17.5,11.5 - parent: 0 - type: Transform -- uid: 3897 - type: AirlockGlass - components: - - pos: -18.5,11.5 - parent: 0 - type: Transform -- uid: 3898 - type: SignCargo - components: - - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 3899 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: -23.5,1.5 - parent: 0 - type: Transform -- uid: 3900 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: -23.502401,1.7142984 - parent: 0 - type: Transform -- uid: 3901 - type: GasPipeFourway - components: - - pos: -34.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3902 - type: TableReinforced - components: - - pos: -31.5,8.5 - parent: 0 - type: Transform -- uid: 3903 - type: OreProcessor - components: - - pos: -32.5,1.5 - parent: 0 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Plasma - - Uranium - - Gold - - Silver - type: MaterialStorage -- uid: 3904 - type: FirelockGlass - components: - - pos: -32.5,1.5 - parent: 0 - type: Transform -- uid: 3905 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -42.5,19.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4743 - Forward: - - port: Left - uid: 4743 - Off: - - port: Middle - uid: 4743 - type: SignalReceiver -- uid: 3906 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -43.5,19.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4743 - Forward: - - port: Left - uid: 4743 - Off: - - port: Middle - uid: 4743 - type: SignalReceiver -- uid: 3907 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -44.5,19.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4743 - Forward: - - port: Left - uid: 4743 - Off: - - port: Middle - uid: 4743 - type: SignalReceiver -- uid: 3908 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -45.5,19.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4743 - Forward: - - port: Left - uid: 4743 - Off: - - port: Middle - uid: 4743 - type: SignalReceiver -- uid: 3909 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -45.5,15.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4744 - Forward: - - port: Left - uid: 4744 - Off: - - port: Middle - uid: 4744 - type: SignalReceiver -- uid: 3910 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -44.5,15.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4744 - Forward: - - port: Left - uid: 4744 - Off: - - port: Middle - uid: 4744 - type: SignalReceiver -- uid: 3911 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -43.5,15.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4744 - Forward: - - port: Left - uid: 4744 - Off: - - port: Middle - uid: 4744 - type: SignalReceiver -- uid: 3912 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -42.5,15.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4744 - Forward: - - port: Left - uid: 4744 - Off: - - port: Middle - uid: 4744 - type: SignalReceiver -- uid: 3913 - type: ReinforcedWindow - components: - - pos: -29.5,8.5 - parent: 0 - type: Transform -- uid: 3914 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -33.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3915 - type: FirelockGlass - components: - - pos: -29.5,6.5 - parent: 0 - type: Transform -- uid: 3916 - type: FirelockGlass - components: - - pos: -29.5,7.5 - parent: 0 - type: Transform -- uid: 3917 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -30.5,7.5 - parent: 0 - type: Transform -- uid: 3918 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -30.5,6.5 - parent: 0 - type: Transform -- uid: 3919 - type: Autolathe - components: - - pos: -30.5,2.5 - parent: 0 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage -- uid: 3920 - type: Table - components: - - pos: -34.5,2.5 - parent: 0 - type: Transform -- uid: 3921 - type: Table - components: - - pos: -37.5,2.5 - parent: 0 - type: Transform -- uid: 3922 - type: Table - components: - - pos: -34.5,3.5 - parent: 0 - type: Transform -- uid: 3923 - type: Table - components: - - pos: -36.5,2.5 - parent: 0 - type: Transform -- uid: 3924 - type: CarpetOrange - components: - - pos: -29.5,16.5 - parent: 0 - type: Transform -- uid: 3925 - type: filingCabinetTall - components: - - pos: -38.5,2.5 - parent: 0 - type: Transform -- uid: 3926 - type: Table - components: - - pos: -30.5,5.5 - parent: 0 - type: Transform -- uid: 3927 - type: WindoorCargoLocked - components: - - rot: 3.141592653589793 rad - pos: -40.5,1.5 - parent: 0 - type: Transform -- uid: 3928 - type: ChairOfficeDark - components: - - pos: -40.5,2.5 - parent: 0 - type: Transform -- uid: 3929 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -37.5,3.5 - parent: 0 - type: Transform -- uid: 3930 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -33.5,3.5 - parent: 0 - type: Transform -- uid: 3931 - type: Table - components: - - pos: -24.5,2.5 - parent: 0 - type: Transform -- uid: 3932 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -24.5,3.5 - parent: 0 - type: Transform -- uid: 3933 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -24.5,6.5 - parent: 0 - type: Transform -- uid: 3934 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -24.5,7.5 - parent: 0 - type: Transform -- uid: 3935 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -24.5,8.5 - parent: 0 - type: Transform -- uid: 3936 - type: Table - components: - - pos: -27.5,8.5 - parent: 0 - type: Transform -- uid: 3937 - type: Rack - components: - - pos: -25.5,2.5 - parent: 0 - type: Transform -- uid: 3938 - type: HandLabeler - components: - - pos: -25.556776,2.4132605 - parent: 0 - type: Transform -- uid: 3939 - type: BoxFolderYellow - components: - - pos: -27.494276,8.585135 - parent: 0 - type: Transform -- uid: 3940 - type: Pen - components: - - pos: -27.259901,8.772635 - parent: 0 - type: Transform -- uid: 3941 - type: RubberStampApproved - components: - - pos: -31.650526,8.678885 - parent: 0 - type: Transform -- uid: 3942 - type: RubberStampDenied - components: - - pos: -31.400526,8.50701 - parent: 0 - type: Transform -- uid: 3943 - type: MedkitFilled - components: - - pos: -34.416153,2.6476355 - parent: 0 - type: Transform -- uid: 3944 - type: Multitool - components: - - pos: -34.431778,3.6007605 - parent: 0 - type: Transform -- uid: 3945 - type: Paper - components: - - pos: -30.509937,5.5851355 - parent: 0 - type: Transform -- uid: 3946 - type: Paper - components: - - pos: -30.509937,5.5851355 - parent: 0 - type: Transform -- uid: 3947 - type: Paper - components: - - pos: -30.509937,5.5851355 - parent: 0 - type: Transform -- uid: 3948 - type: Paper - components: - - pos: -30.509937,5.5851355 - parent: 0 - type: Transform -- uid: 3949 - type: Paper - components: - - pos: -30.509937,5.5851355 - parent: 0 - type: Transform -- uid: 3950 - type: Paper - components: - - pos: -30.509937,5.5851355 - parent: 0 - type: Transform -- uid: 3951 - type: Paper - components: - - pos: -30.509937,5.5851355 - parent: 0 - type: Transform -- uid: 3952 - type: Paper - components: - - pos: -30.509937,5.5851355 - parent: 0 - type: Transform -- uid: 3953 - type: Paper - components: - - pos: -30.509937,5.5851355 - parent: 0 - type: Transform -- uid: 3954 - type: Paper - components: - - pos: -30.509937,5.5851355 - parent: 0 - type: Transform -- uid: 3955 - type: Grille - components: - - pos: -20.5,11.5 - parent: 0 - type: Transform -- uid: 3956 - type: Grille - components: - - pos: -21.5,11.5 - parent: 0 - type: Transform -- uid: 3957 - type: Grille - components: - - pos: -22.5,11.5 - parent: 0 - type: Transform -- uid: 3958 - type: Grille - components: - - pos: -21.5,20.5 - parent: 0 - type: Transform -- uid: 3959 - type: Grille - components: - - pos: -24.5,20.5 - parent: 0 - type: Transform -- uid: 3960 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3961 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3962 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3963 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3964 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3965 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3966 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3967 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3968 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3969 - type: GasPipeTJunction - components: - - pos: -32.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3970 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3971 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3972 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3973 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3974 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3975 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3976 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3977 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3978 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -39.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3979 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3980 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3981 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3982 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3983 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3984 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3985 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3986 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3987 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -27.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3988 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3989 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3990 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3991 - type: GasPipeTJunction - components: - - pos: -31.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3992 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3993 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3994 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3995 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3996 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3997 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3998 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3999 - type: GasPipeTJunction - components: - - pos: -41.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4000 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4001 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4002 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4003 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4004 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -44.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4005 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4006 - type: SpawnMobRaccoonMorticia - components: - - pos: -29.5,14.5 - parent: 0 - type: Transform -- uid: 4007 - type: DogBed - components: - - name: raccoon bed - type: MetaData - - pos: -29.5,14.5 - parent: 0 - type: Transform -- uid: 4008 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4009 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -44.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4010 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4011 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4012 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4013 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4014 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4015 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4016 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4017 - type: BedsheetQM - components: - - pos: -28.5,14.5 - parent: 0 - type: Transform -- uid: 4018 - type: Bed - components: - - pos: -28.5,14.5 - parent: 0 - type: Transform -- uid: 4019 - type: BoxFolderYellow - components: - - pos: -29.420187,16.629967 - parent: 0 - type: Transform -- uid: 4020 - type: LampGold - components: - - pos: -29.498312,17.583092 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 4021 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -30.5,16.5 - parent: 0 - type: Transform -- uid: 4022 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -35.5,5.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 3860 - Forward: - - port: Left - uid: 3860 - Off: - - port: Middle - uid: 3860 - type: SignalReceiver -- uid: 4023 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -36.5,5.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 3860 - Forward: - - port: Left - uid: 3860 - Off: - - port: Middle - uid: 3860 - type: SignalReceiver -- uid: 4024 - type: VendingMachineCargoDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -36.5,8.5 - parent: 0 - type: Transform -- uid: 4025 - type: TwoWayLever - components: - - pos: -39.5,6.5 - parent: 0 - type: Transform - - outputs: - Left: - - port: Forward - uid: 3357 - - port: Forward - uid: 1992 - - port: Forward - uid: 4027 - Right: - - port: Reverse - uid: 3357 - - port: Reverse - uid: 1992 - - port: Reverse - uid: 4027 - Middle: - - port: Off - uid: 3357 - - port: Off - uid: 1992 - - port: Off - uid: 4027 - type: SignalTransmitter -- uid: 4026 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4027 - type: ConveyorBelt - components: - - pos: -38.5,8.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 4025 - Forward: - - port: Left - uid: 4025 - Off: - - port: Middle - uid: 4025 - type: SignalReceiver -- uid: 4028 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -47.5,0.5 - parent: 0 - type: Transform -- uid: 4029 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4030 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4031 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4032 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4033 - type: WallSolidRust - components: - - pos: 39.5,-25.5 - parent: 0 - type: Transform -- uid: 4034 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4035 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4036 - type: WallSolid - components: - - pos: -51.5,-9.5 - parent: 0 - type: Transform -- uid: 4037 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4038 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4039 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -28.5,16.5 - parent: 0 - type: Transform -- uid: 4040 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4041 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4042 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4043 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4044 - type: WallSolid - components: - - pos: -23.5,-44.5 - parent: 0 - type: Transform -- uid: 4045 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4046 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4047 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4048 - type: Table - components: - - pos: -35.5,23.5 - parent: 0 - type: Transform -- uid: 4049 - type: DisposalPipe - components: - - pos: -26.5,2.5 - parent: 0 - type: Transform -- uid: 4050 - type: DisposalPipe - components: - - pos: -33.5,12.5 - parent: 0 - type: Transform -- uid: 4051 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4052 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -36.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4053 - type: FoodBoxPizzaFilled - components: - - pos: -30.428444,12.756947 - parent: 0 - type: Transform - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - storagebase: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - isPlaceable: False - type: PlaceableSurface -- uid: 4054 - type: Table - components: - - pos: -34.5,23.5 - parent: 0 - type: Transform -- uid: 4055 - type: DisposalPipe - components: - - pos: -26.5,1.5 - parent: 0 - type: Transform -- uid: 4056 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4057 - type: DisposalPipe - components: - - pos: -33.5,11.5 - parent: 0 - type: Transform -- uid: 4058 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4059 - type: ClothingShoesBootsMag - components: - - pos: -39.44963,28.514044 - parent: 0 - type: Transform -- uid: 4060 - type: Table - components: - - pos: -43.5,10.5 - parent: 0 - type: Transform -- uid: 4061 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-0.5 - parent: 0 - type: Transform -- uid: 4062 - type: DisposalPipe - components: - - pos: -33.5,9.5 - parent: 0 - type: Transform -- uid: 4063 - type: CableApcExtension - components: - - pos: -42.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4064 - type: Table - components: - - pos: -33.5,14.5 - parent: 0 - type: Transform -- uid: 4065 - type: ClothingShoesBootsMag - components: - - pos: -39.559006,28.654669 - parent: 0 - type: Transform -- uid: 4066 - type: Rack - components: - - pos: -43.5,9.5 - parent: 0 - type: Transform -- uid: 4067 - type: DisposalUnit - components: - - pos: -32.5,7.5 - parent: 0 - type: Transform -- uid: 4068 - type: DisposalPipe - components: - - pos: -33.5,8.5 - parent: 0 - type: Transform -- uid: 4069 - type: WallReinforced - components: - - pos: -44.5,31.5 - parent: 0 - type: Transform -- uid: 4070 - type: ComfyChair - components: - - pos: -49.5,1.5 - parent: 0 - type: Transform -- uid: 4071 - type: ComfyChair - components: - - pos: -51.5,1.5 - parent: 0 - type: Transform -- uid: 4072 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-0.5 - parent: 0 - type: Transform -- uid: 4073 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -47.5,0.5 - parent: 0 - type: Transform -- uid: 4074 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-0.5 - parent: 0 - type: Transform -- uid: 4075 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4076 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-1.5 - parent: 0 - type: Transform -- uid: 4077 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4078 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-0.5 - parent: 0 - type: Transform -- uid: 4079 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-1.5 - parent: 0 - type: Transform -- uid: 4080 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -53.5,0.5 - parent: 0 - type: Transform -- uid: 4081 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-0.5 - parent: 0 - type: Transform -- uid: 4082 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -53.5,0.5 - parent: 0 - type: Transform -- uid: 4083 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-1.5 - parent: 0 - type: Transform -- uid: 4084 - type: TableWood - components: - - pos: -52.5,1.5 - parent: 0 - type: Transform -- uid: 4085 - type: FirelockGlass - components: - - pos: 8.5,-10.5 - parent: 0 - type: Transform -- uid: 4086 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-1.5 - parent: 0 - type: Transform -- uid: 4087 - type: PottedPlantRandom - components: - - pos: -48.5,-2.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 4088 - type: PottedPlantRandom - components: - - pos: -52.5,-2.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 4089 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -52.5,0.5 - parent: 0 - type: Transform -- uid: 4090 - type: GasPipeBend - components: - - pos: -44.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4091 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -48.5,0.5 - parent: 0 - type: Transform -- uid: 4092 - type: TableWood - components: - - pos: -48.5,1.5 - parent: 0 - type: Transform -- uid: 4093 - type: GasPipeBend - components: - - pos: -45.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4094 - type: WallSolid - components: - - pos: -43.5,4.5 - parent: 0 - type: Transform -- uid: 4095 - type: GasPipeStraight - components: - - pos: -44.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4096 - type: Grille - components: - - pos: -42.5,22.5 - parent: 0 - type: Transform -- uid: 4097 - type: SignMinerDock - components: - - pos: -39.5,22.5 - parent: 0 - type: Transform -- uid: 4098 - type: ReinforcedWindow - components: - - pos: -44.5,26.5 - parent: 0 - type: Transform -- uid: 4099 - type: CableApcExtension - components: - - pos: -42.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4100 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4101 - type: LockerSalvageSpecialistFilled - components: - - pos: -39.5,23.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 4102 - type: LockerSalvageSpecialistFilled - components: - - pos: -39.5,24.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 4103 - type: LockerSalvageSpecialistFilled - components: - - pos: -39.5,25.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 4104 - type: Rack - components: - - pos: -39.5,28.5 - parent: 0 - type: Transform -- uid: 4105 - type: Table - components: - - pos: -43.5,23.5 - parent: 0 - type: Transform -- uid: 4106 - type: Table - components: - - pos: -42.5,23.5 - parent: 0 - type: Transform -- uid: 4107 - type: FirelockGlass - components: - - pos: -15.5,-3.5 - parent: 0 - type: Transform -- uid: 4108 - type: FirelockGlass - components: - - pos: -15.5,-2.5 - parent: 0 - type: Transform -- uid: 4109 - type: FirelockGlass - components: - - pos: -15.5,-1.5 - parent: 0 - type: Transform -- uid: 4110 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,9.5 - parent: 0 - type: Transform -- uid: 4111 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,9.5 - parent: 0 - type: Transform -- uid: 4112 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,9.5 - parent: 0 - type: Transform -- uid: 4113 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,9.5 - parent: 0 - type: Transform -- uid: 4114 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,9.5 - parent: 0 - type: Transform -- uid: 4115 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,9.5 - parent: 0 - type: Transform -- uid: 4116 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,9.5 - parent: 0 - type: Transform -- uid: 4117 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,9.5 - parent: 0 - type: Transform -- uid: 4118 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,9.5 - parent: 0 - type: Transform -- uid: 4119 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,9.5 - parent: 0 - type: Transform -- uid: 4120 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4121 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4122 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4123 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4124 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4125 - type: GasPipeTJunction - components: - - pos: -27.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4126 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4127 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4128 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4129 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4130 - type: GasPipeFourway - components: - - pos: -33.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4131 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -34.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4132 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4133 - type: GasPipeStraight - components: - - pos: -34.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4134 - type: GasPipeStraight - components: - - pos: -34.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4135 - type: GasPipeStraight - components: - - pos: -34.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4136 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -34.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4137 - type: GasPipeStraight - components: - - pos: -34.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4138 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -34.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4139 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -34.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4140 - type: GasPipeStraight - components: - - pos: -34.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4141 - type: GasPipeStraight - components: - - pos: -34.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4142 - type: GasPipeStraight - components: - - pos: -34.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4143 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -36.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4144 - type: GasPipeStraight - components: - - pos: -34.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4145 - type: BlastDoor - components: - - pos: -45.5,15.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4747 - type: SignalReceiver -- uid: 4146 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -34.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4147 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -34.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4148 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -40.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4149 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4150 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4151 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4152 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4153 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4154 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4155 - type: GasPipeStraight - components: - - pos: -40.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4156 - type: GasPipeStraight - components: - - pos: -40.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4157 - type: GasPipeStraight - components: - - pos: -40.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4158 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -40.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4159 - type: GasPipeStraight - components: - - pos: -40.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4160 - type: GasPipeBend - components: - - pos: -40.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4161 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4162 - type: SalvageMagnet - components: - - rot: -1.5707963267948966 rad - pos: -43.5,26.5 - parent: 0 - type: Transform -- uid: 4163 - type: Catwalk - components: - - pos: -43.5,30.5 - parent: 0 - type: Transform -- uid: 4164 - type: SignMagneticsMed - components: - - pos: -41.5,29.5 - parent: 0 - type: Transform -- uid: 4165 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -34.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4166 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4167 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4168 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -31.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4169 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4170 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4171 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4172 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4173 - type: GasPipeTJunction - components: - - pos: -27.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4174 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4175 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -24.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4176 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4177 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4178 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4179 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4180 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -19.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4181 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -19.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4182 - type: GasPipeStraight - components: - - pos: -19.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4183 - type: GasPipeStraight - components: - - pos: -19.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4184 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4185 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4186 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4187 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4188 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4189 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4190 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4191 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4192 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4193 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4194 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4195 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4196 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4197 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4198 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4199 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4200 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4201 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4202 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4203 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4204 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4205 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4206 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4207 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4208 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4209 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4210 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4211 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4212 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4213 - type: GasPipeFourway - components: - - pos: -3.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4214 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4215 - type: GasPipeBend - components: - - pos: -18.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4216 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -23.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4217 - type: GasPipeTJunction - components: - - pos: -23.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4218 - type: GasPipeStraight - components: - - pos: -23.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4219 - type: GasPipeStraight - components: - - pos: -23.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4220 - type: GasPipeStraight - components: - - pos: -23.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4221 - type: GasPipeStraight - components: - - pos: -23.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4222 - type: GasPipeStraight - components: - - pos: -23.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4223 - type: GasPipeStraight - components: - - pos: -23.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4224 - type: GasPipeStraight - components: - - pos: -23.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4225 - type: GasPipeStraight - components: - - pos: -23.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4226 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4227 - type: GasPipeTJunction - components: - - pos: -20.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4228 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4229 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4230 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4231 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4232 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4233 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4234 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4235 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4236 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4237 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4238 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4239 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4240 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4241 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4242 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4243 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4244 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -7.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4245 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4246 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4247 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4248 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4249 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4250 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4251 - type: GasPipeTJunction - components: - - pos: -11.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4252 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4253 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4254 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4255 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4256 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4257 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4258 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4259 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4260 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -16.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4261 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -17.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4262 - type: GasPipeTJunction - components: - - pos: -22.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4263 - type: GasPipeStraight - components: - - pos: -17.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4264 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4265 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4266 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4267 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -21.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4268 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4269 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4270 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -22.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4271 - type: GasPipeBend - components: - - pos: -17.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4272 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4273 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -21.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4274 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4275 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4276 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4277 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4278 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4279 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4280 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4281 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4282 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4283 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4284 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4285 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4286 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4287 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4288 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -27.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4289 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -27.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4290 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -33.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4291 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -28.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4292 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4293 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4294 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4295 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4296 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -32.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4297 - type: GasPipeStraight - components: - - pos: -33.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4298 - type: GasPipeStraight - components: - - pos: -33.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4299 - type: GasPipeStraight - components: - - pos: -33.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4300 - type: GasPipeStraight - components: - - pos: -33.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4301 - type: GasPipeStraight - components: - - pos: -33.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4302 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -33.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4303 - type: GasPipeStraight - components: - - pos: -33.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4304 - type: GasPipeStraight - components: - - pos: -33.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4305 - type: GasPipeStraight - components: - - pos: -33.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4306 - type: GasPipeStraight - components: - - pos: -33.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4307 - type: GasPipeStraight - components: - - pos: -33.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4308 - type: BlastDoor - components: - - pos: -43.5,15.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4747 - type: SignalReceiver -- uid: 4309 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -33.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4310 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -68.5,4.5 - parent: 0 - type: Transform -- uid: 4311 - type: GasPipeBend - components: - - pos: -33.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4312 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -41.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4313 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -33.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4314 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4315 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4316 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -36.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4317 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4318 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4319 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4320 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4321 - type: GasPipeStraight - components: - - pos: -41.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4322 - type: GasPipeStraight - components: - - pos: -41.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4323 - type: GasPipeStraight - components: - - pos: -41.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4324 - type: GasPipeStraight - components: - - pos: -41.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4325 - type: GasPipeStraight - components: - - pos: -41.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4326 - type: GasVentScrubber - components: - - pos: -41.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4327 - type: Grille - components: - - pos: -44.5,28.5 - parent: 0 - type: Transform -- uid: 4328 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -41.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4329 - type: GasVentPump - components: - - pos: -27.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4330 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -26.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4331 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4332 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4333 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4334 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4335 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4336 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4337 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4338 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4339 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4340 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4341 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -41.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4342 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -41.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4343 - type: GasPipeStraight - components: - - pos: -41.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4344 - type: GasPipeStraight - components: - - pos: -41.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4345 - type: GasPipeStraight - components: - - pos: -41.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4346 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -41.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4347 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -38.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4348 - type: GasVentPump - components: - - pos: -32.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4349 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -32.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4350 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4351 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4352 - type: GasPipeBend - components: - - pos: -29.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4353 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -67.5,4.5 - parent: 0 - type: Transform -- uid: 4354 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4355 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4356 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4357 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4358 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4359 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4360 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4361 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4362 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4363 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -66.5,4.5 - parent: 0 - type: Transform -- uid: 4364 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4365 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4366 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4367 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4368 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4369 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4370 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4371 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4372 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4373 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -44.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4374 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -44.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4375 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4376 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4377 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4378 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -30.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4379 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4380 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4381 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4382 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4383 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4384 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4385 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4386 - type: GasPipeBend - components: - - pos: -28.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4387 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -29.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4388 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4389 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4390 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4391 - type: GasPipeStraight - components: - - pos: -29.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4392 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -30.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4393 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -29.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4394 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -65.5,4.5 - parent: 0 - type: Transform -- uid: 4395 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4396 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4397 - type: WindowReinforcedDirectional - components: - - pos: -65.5,4.5 - parent: 0 - type: Transform -- uid: 4398 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4399 - type: WindowReinforcedDirectional - components: - - pos: -66.5,4.5 - parent: 0 - type: Transform -- uid: 4400 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4401 - type: WindowReinforcedDirectional - components: - - pos: -68.5,4.5 - parent: 0 - type: Transform -- uid: 4402 - type: GasVentPump - components: - - pos: -21.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4403 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -20.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4404 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,9.5 - parent: 0 - type: Transform -- uid: 4405 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,9.5 - parent: 0 - type: Transform -- uid: 4406 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,9.5 - parent: 0 - type: Transform -- uid: 4407 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,9.5 - parent: 0 - type: Transform -- uid: 4408 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,9.5 - parent: 0 - type: Transform -- uid: 4409 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -2.5,9.5 - parent: 0 - type: Transform -- uid: 4410 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -2.5,10.5 - parent: 0 - type: Transform -- uid: 4411 - type: DisposalPipe - components: - - pos: -2.5,11.5 - parent: 0 - type: Transform -- uid: 4412 - type: DisposalPipe - components: - - pos: -2.5,12.5 - parent: 0 - type: Transform -- uid: 4413 - type: DisposalPipe - components: - - pos: -2.5,13.5 - parent: 0 - type: Transform -- uid: 4414 - type: DisposalPipe - components: - - pos: -2.5,14.5 - parent: 0 - type: Transform -- uid: 4415 - type: DisposalPipe - components: - - pos: -2.5,15.5 - parent: 0 - type: Transform -- uid: 4416 - type: DisposalPipe - components: - - pos: -2.5,16.5 - parent: 0 - type: Transform -- uid: 4417 - type: DisposalPipe - components: - - pos: -2.5,17.5 - parent: 0 - type: Transform -- uid: 4418 - type: DisposalPipe - components: - - pos: -2.5,18.5 - parent: 0 - type: Transform -- uid: 4419 - type: DisposalPipe - components: - - pos: -2.5,19.5 - parent: 0 - type: Transform -- uid: 4420 - type: DisposalPipe - components: - - pos: -2.5,20.5 - parent: 0 - type: Transform -- uid: 4421 - type: DisposalPipe - components: - - pos: -2.5,21.5 - parent: 0 - type: Transform -- uid: 4422 - type: DisposalPipe - components: - - pos: -2.5,22.5 - parent: 0 - type: Transform -- uid: 4423 - type: DisposalPipe - components: - - pos: -2.5,23.5 - parent: 0 - type: Transform -- uid: 4424 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -2.5,24.5 - parent: 0 - type: Transform -- uid: 4425 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,24.5 - parent: 0 - type: Transform -- uid: 4426 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,24.5 - parent: 0 - type: Transform -- uid: 4427 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,24.5 - parent: 0 - type: Transform -- uid: 4428 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4429 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4430 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4431 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4432 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4433 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4434 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4435 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4436 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4437 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4438 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4439 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4440 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -32.5,17.5 - parent: 0 - type: Transform -- uid: 4441 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -43.5,13.5 - parent: 0 - type: Transform -- uid: 4442 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -43.5,14.5 - parent: 0 - type: Transform -- uid: 4443 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,14.5 - parent: 0 - type: Transform -- uid: 4444 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -45.5,14.5 - parent: 0 - type: Transform -- uid: 4445 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -39.5,1.5 - parent: 0 - type: Transform -- uid: 4446 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -41.5,1.5 - parent: 0 - type: Transform -- uid: 4447 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -40.5,7.5 - parent: 0 - type: Transform -- uid: 4448 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -42.5,7.5 - parent: 0 - type: Transform -- uid: 4449 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -43.5,17.5 - parent: 0 - type: Transform -- uid: 4450 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,17.5 - parent: 0 - type: Transform -- uid: 4451 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -45.5,17.5 - parent: 0 - type: Transform -- uid: 4452 - type: Grille - components: - - pos: -45.5,20.5 - parent: 0 - type: Transform -- uid: 4453 - type: Grille - components: - - pos: -44.5,20.5 - parent: 0 - type: Transform -- uid: 4454 - type: Grille - components: - - pos: -43.5,20.5 - parent: 0 - type: Transform -- uid: 4455 - type: Grille - components: - - pos: -43.5,21.5 - parent: 0 - type: Transform -- uid: 4456 - type: GasPipeStraight - components: - - pos: -42.5,28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4457 - type: GasVentPump - components: - - pos: -42.5,31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4458 - type: CableApcExtension - components: - - pos: -42.5,28.5 - parent: 0 - type: Transform -- uid: 4459 - type: WallReinforced - components: - - pos: -44.5,23.5 - parent: 0 - type: Transform -- uid: 4460 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -42.5,27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4461 - type: FirelockGlass - components: - - pos: -40.5,22.5 - parent: 0 - type: Transform -- uid: 4462 - type: FirelockGlass - components: - - pos: -41.5,22.5 - parent: 0 - type: Transform -- uid: 4463 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 3.141592653589793 rad - pos: -70.5,-5.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4464 - type: AtmosDeviceFanTiny - components: - - pos: -70.5,-6.5 - parent: 0 - type: Transform -- uid: 4465 - type: AtmosDeviceFanTiny - components: - - pos: -63.5,-6.5 - parent: 0 - type: Transform -- uid: 4466 - type: AirlockEngineeringLocked - components: - - pos: -32.5,26.5 - parent: 0 - type: Transform -- uid: 4467 - type: WallReinforced - components: - - pos: -33.5,24.5 - parent: 0 - type: Transform -- uid: 4468 - type: WallReinforced - components: - - pos: -34.5,24.5 - parent: 0 - type: Transform -- uid: 4469 - type: WallReinforced - components: - - pos: -35.5,24.5 - parent: 0 - type: Transform -- uid: 4470 - type: WallReinforced - components: - - pos: -35.5,25.5 - parent: 0 - type: Transform -- uid: 4471 - type: WallReinforced - components: - - pos: -35.5,26.5 - parent: 0 - type: Transform -- uid: 4472 - type: WallReinforced - components: - - pos: -35.5,27.5 - parent: 0 - type: Transform -- uid: 4473 - type: WallReinforced - components: - - pos: -34.5,27.5 - parent: 0 - type: Transform -- uid: 4474 - type: WallReinforced - components: - - pos: -33.5,27.5 - parent: 0 - type: Transform -- uid: 4475 - type: CableHV - components: - - pos: -12.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4476 - type: CableHV - components: - - pos: -12.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4477 - type: CableHV - components: - - pos: -12.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4478 - type: CableHV - components: - - pos: -12.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4479 - type: CableHV - components: - - pos: -12.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4480 - type: CableHV - components: - - pos: -12.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4481 - type: CableHV - components: - - pos: -12.5,8.5 - parent: 0 - type: Transform -- uid: 4482 - type: CableHV - components: - - pos: -12.5,9.5 - parent: 0 - type: Transform -- uid: 4483 - type: CableHV - components: - - pos: -12.5,10.5 - parent: 0 - type: Transform -- uid: 4484 - type: CableHV - components: - - pos: -13.5,10.5 - parent: 0 - type: Transform -- uid: 4485 - type: CableHV - components: - - pos: -14.5,10.5 - parent: 0 - type: Transform -- uid: 4486 - type: CableHV - components: - - pos: -15.5,10.5 - parent: 0 - type: Transform -- uid: 4487 - type: CableHV - components: - - pos: -16.5,10.5 - parent: 0 - type: Transform -- uid: 4488 - type: CableHV - components: - - pos: -17.5,10.5 - parent: 0 - type: Transform -- uid: 4489 - type: CableHV - components: - - pos: -18.5,10.5 - parent: 0 - type: Transform -- uid: 4490 - type: CableHV - components: - - pos: -19.5,10.5 - parent: 0 - type: Transform -- uid: 4491 - type: CableHV - components: - - pos: -20.5,10.5 - parent: 0 - type: Transform -- uid: 4492 - type: CableHV - components: - - pos: -21.5,10.5 - parent: 0 - type: Transform -- uid: 4493 - type: CableHV - components: - - pos: -22.5,10.5 - parent: 0 - type: Transform -- uid: 4494 - type: CableHV - components: - - pos: -23.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4495 - type: CableHV - components: - - pos: -24.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4496 - type: CableHV - components: - - pos: -25.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4497 - type: CableHV - components: - - pos: -26.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4498 - type: CableHV - components: - - pos: -26.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4499 - type: CableHV - components: - - pos: -26.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4500 - type: CableHV - components: - - pos: -26.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4501 - type: CableHV - components: - - pos: -26.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4502 - type: CableHV - components: - - pos: -26.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4503 - type: CableHV - components: - - pos: -26.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4504 - type: CableHV - components: - - pos: -26.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4505 - type: CableHV - components: - - pos: -26.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4506 - type: CableHV - components: - - pos: -26.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4507 - type: CableHV - components: - - pos: -27.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4508 - type: CableHV - components: - - pos: -28.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4509 - type: CableHV - components: - - pos: -29.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4510 - type: CableHV - components: - - pos: -30.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4511 - type: CableHV - components: - - pos: -31.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4512 - type: CableHV - components: - - pos: -31.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4513 - type: CableHV - components: - - pos: -31.5,21.5 - parent: 0 - type: Transform -- uid: 4514 - type: CableHV - components: - - pos: -31.5,22.5 - parent: 0 - type: Transform -- uid: 4515 - type: CableHV - components: - - pos: -31.5,23.5 - parent: 0 - type: Transform -- uid: 4516 - type: CableHV - components: - - pos: -31.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4517 - type: CableHV - components: - - pos: -31.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4518 - type: CableHV - components: - - pos: -31.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4519 - type: CableHV - components: - - pos: -32.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4520 - type: CableHV - components: - - pos: -33.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4521 - type: CableHV - components: - - pos: -33.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4522 - type: APCBasic - components: - - pos: -38.5,22.5 - parent: 0 - type: Transform -- uid: 4523 - type: CableApcExtension - components: - - pos: -25.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4524 - type: CableMV - components: - - pos: -33.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4525 - type: CableMV - components: - - pos: -33.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4526 - type: CableMV - components: - - pos: -32.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4527 - type: CableMV - components: - - pos: -31.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4528 - type: CableMV - components: - - pos: -31.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4529 - type: CableMV - components: - - pos: -31.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4530 - type: CableMV - components: - - pos: -31.5,23.5 - parent: 0 - type: Transform -- uid: 4531 - type: CableMV - components: - - pos: -31.5,22.5 - parent: 0 - type: Transform -- uid: 4532 - type: CableMV - components: - - pos: -32.5,22.5 - parent: 0 - type: Transform -- uid: 4533 - type: CableMV - components: - - pos: -33.5,22.5 - parent: 0 - type: Transform -- uid: 4534 - type: CableMV - components: - - pos: -34.5,22.5 - parent: 0 - type: Transform -- uid: 4535 - type: CableMV - components: - - pos: -35.5,22.5 - parent: 0 - type: Transform -- uid: 4536 - type: CableMV - components: - - pos: -36.5,22.5 - parent: 0 - type: Transform -- uid: 4537 - type: CableMV - components: - - pos: -37.5,22.5 - parent: 0 - type: Transform -- uid: 4538 - type: CableMV - components: - - pos: -38.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4539 - type: CableMV - components: - - pos: -31.5,21.5 - parent: 0 - type: Transform -- uid: 4540 - type: CableMV - components: - - pos: -31.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4541 - type: CableMV - components: - - pos: -31.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4542 - type: CableMV - components: - - pos: -30.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4543 - type: CableMV - components: - - pos: -29.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4544 - type: CableMV - components: - - pos: -28.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4545 - type: CableMV - components: - - pos: -27.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4546 - type: CableMV - components: - - pos: -26.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4547 - type: CableMV - components: - - pos: -26.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4548 - type: CableMV - components: - - pos: -26.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4549 - type: CableMV - components: - - pos: -26.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4550 - type: CableMV - components: - - pos: -26.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4551 - type: CableMV - components: - - pos: -26.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4552 - type: CableMV - components: - - pos: -26.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4553 - type: CableMV - components: - - pos: -26.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4554 - type: CableMV - components: - - pos: -26.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4555 - type: CableMV - components: - - pos: -26.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4556 - type: WallSolid - components: - - pos: -26.5,9.5 - parent: 0 - type: Transform -- uid: 4557 - type: APCBasic - components: - - pos: -43.5,7.5 - parent: 0 - type: Transform -- uid: 4558 - type: CableMV - components: - - pos: -43.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4559 - type: CableMV - components: - - pos: -43.5,8.5 - parent: 0 - type: Transform -- uid: 4560 - type: CableMV - components: - - pos: -42.5,8.5 - parent: 0 - type: Transform -- uid: 4561 - type: CableMV - components: - - pos: -41.5,8.5 - parent: 0 - type: Transform -- uid: 4562 - type: CableMV - components: - - pos: -40.5,8.5 - parent: 0 - type: Transform -- uid: 4563 - type: CableMV - components: - - pos: -39.5,8.5 - parent: 0 - type: Transform -- uid: 4564 - type: CableMV - components: - - pos: -38.5,8.5 - parent: 0 - type: Transform -- uid: 4565 - type: CableMV - components: - - pos: -37.5,8.5 - parent: 0 - type: Transform -- uid: 4566 - type: CableMV - components: - - pos: -36.5,8.5 - parent: 0 - type: Transform -- uid: 4567 - type: CableMV - components: - - pos: -36.5,21.5 - parent: 0 - type: Transform -- uid: 4568 - type: CableMV - components: - - pos: -36.5,20.5 - parent: 0 - type: Transform -- uid: 4569 - type: CableMV - components: - - pos: -36.5,19.5 - parent: 0 - type: Transform -- uid: 4570 - type: CableMV - components: - - pos: -36.5,18.5 - parent: 0 - type: Transform -- uid: 4571 - type: CableMV - components: - - pos: -36.5,17.5 - parent: 0 - type: Transform -- uid: 4572 - type: CableMV - components: - - pos: -36.5,16.5 - parent: 0 - type: Transform -- uid: 4573 - type: CableMV - components: - - pos: -36.5,15.5 - parent: 0 - type: Transform -- uid: 4574 - type: CableMV - components: - - pos: -36.5,14.5 - parent: 0 - type: Transform -- uid: 4575 - type: CableMV - components: - - pos: -36.5,13.5 - parent: 0 - type: Transform -- uid: 4576 - type: CableMV - components: - - pos: -36.5,12.5 - parent: 0 - type: Transform -- uid: 4577 - type: CableMV - components: - - pos: -36.5,11.5 - parent: 0 - type: Transform -- uid: 4578 - type: CableMV - components: - - pos: -36.5,10.5 - parent: 0 - type: Transform -- uid: 4579 - type: CableMV - components: - - pos: -36.5,9.5 - parent: 0 - type: Transform -- uid: 4580 - type: APCBasic - components: - - pos: -32.5,8.5 - parent: 0 - type: Transform -- uid: 4581 - type: CableApcExtension - components: - - pos: -26.5,8.5 - parent: 0 - type: Transform -- uid: 4582 - type: CableApcExtension - components: - - pos: -26.5,7.5 - parent: 0 - type: Transform -- uid: 4583 - type: CableApcExtension - components: - - pos: -26.5,6.5 - parent: 0 - type: Transform -- uid: 4584 - type: CableApcExtension - components: - - pos: -26.5,5.5 - parent: 0 - type: Transform -- uid: 4585 - type: CableApcExtension - components: - - pos: -26.5,4.5 - parent: 0 - type: Transform -- uid: 4586 - type: CableApcExtension - components: - - pos: -26.5,3.5 - parent: 0 - type: Transform -- uid: 4587 - type: CableApcExtension - components: - - pos: -26.5,2.5 - parent: 0 - type: Transform -- uid: 4588 - type: CableApcExtension - components: - - pos: -26.5,1.5 - parent: 0 - type: Transform -- uid: 4589 - type: CableApcExtension - components: - - pos: -25.5,5.5 - parent: 0 - type: Transform -- uid: 4590 - type: CableApcExtension - components: - - pos: -24.5,5.5 - parent: 0 - type: Transform -- uid: 4591 - type: CableApcExtension - components: - - pos: -23.5,5.5 - parent: 0 - type: Transform -- uid: 4592 - type: CableApcExtension - components: - - pos: -27.5,3.5 - parent: 0 - type: Transform -- uid: 4593 - type: CableApcExtension - components: - - pos: -28.5,3.5 - parent: 0 - type: Transform -- uid: 4594 - type: CableApcExtension - components: - - pos: -29.5,3.5 - parent: 0 - type: Transform -- uid: 4595 - type: CableApcExtension - components: - - pos: -30.5,3.5 - parent: 0 - type: Transform -- uid: 4596 - type: CableApcExtension - components: - - pos: -31.5,3.5 - parent: 0 - type: Transform -- uid: 4597 - type: CableApcExtension - components: - - pos: -32.5,3.5 - parent: 0 - type: Transform -- uid: 4598 - type: CableApcExtension - components: - - pos: -33.5,3.5 - parent: 0 - type: Transform -- uid: 4599 - type: CableApcExtension - components: - - pos: -31.5,4.5 - parent: 0 - type: Transform -- uid: 4600 - type: CableApcExtension - components: - - pos: -31.5,5.5 - parent: 0 - type: Transform -- uid: 4601 - type: CableApcExtension - components: - - pos: -31.5,6.5 - parent: 0 - type: Transform -- uid: 4602 - type: CableApcExtension - components: - - pos: -31.5,7.5 - parent: 0 - type: Transform -- uid: 4603 - type: CableApcExtension - components: - - pos: -33.5,4.5 - parent: 0 - type: Transform -- uid: 4604 - type: CableApcExtension - components: - - pos: -33.5,5.5 - parent: 0 - type: Transform -- uid: 4605 - type: CableApcExtension - components: - - pos: -33.5,6.5 - parent: 0 - type: Transform -- uid: 4606 - type: CableApcExtension - components: - - pos: -33.5,7.5 - parent: 0 - type: Transform -- uid: 4607 - type: CableApcExtension - components: - - pos: -43.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4608 - type: CableApcExtension - components: - - pos: -43.5,6.5 - parent: 0 - type: Transform -- uid: 4609 - type: CableApcExtension - components: - - pos: -43.5,5.5 - parent: 0 - type: Transform -- uid: 4610 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,24.5 - parent: 0 - type: Transform -- uid: 4611 - type: CableApcExtension - components: - - pos: -42.5,5.5 - parent: 0 - type: Transform -- uid: 4612 - type: CableApcExtension - components: - - pos: -41.5,5.5 - parent: 0 - type: Transform -- uid: 4613 - type: CableApcExtension - components: - - pos: -40.5,5.5 - parent: 0 - type: Transform -- uid: 4614 - type: CableApcExtension - components: - - pos: -39.5,5.5 - parent: 0 - type: Transform -- uid: 4615 - type: CableApcExtension - components: - - pos: -38.5,5.5 - parent: 0 - type: Transform -- uid: 4616 - type: CableApcExtension - components: - - pos: -37.5,5.5 - parent: 0 - type: Transform -- uid: 4617 - type: CableApcExtension - components: - - pos: -36.5,5.5 - parent: 0 - type: Transform -- uid: 4618 - type: CableApcExtension - components: - - pos: -42.5,4.5 - parent: 0 - type: Transform -- uid: 4619 - type: CableApcExtension - components: - - pos: -42.5,3.5 - parent: 0 - type: Transform -- uid: 4620 - type: CableApcExtension - components: - - pos: -41.5,3.5 - parent: 0 - type: Transform -- uid: 4621 - type: CableApcExtension - components: - - pos: -40.5,3.5 - parent: 0 - type: Transform -- uid: 4622 - type: CableApcExtension - components: - - pos: -39.5,3.5 - parent: 0 - type: Transform -- uid: 4623 - type: CableApcExtension - components: - - pos: -38.5,3.5 - parent: 0 - type: Transform -- uid: 4624 - type: CableApcExtension - components: - - pos: -37.5,3.5 - parent: 0 - type: Transform -- uid: 4625 - type: CableApcExtension - components: - - pos: -44.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4626 - type: CableApcExtension - components: - - pos: -45.5,6.5 - parent: 0 - type: Transform -- uid: 4627 - type: CableApcExtension - components: - - pos: -46.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4628 - type: CableApcExtension - components: - - pos: -46.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4629 - type: CableApcExtension - components: - - pos: -46.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4630 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,24.5 - parent: 0 - type: Transform -- uid: 4631 - type: CableApcExtension - components: - - pos: -46.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4632 - type: CableApcExtension - components: - - pos: -46.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4633 - type: CableApcExtension - components: - - pos: -47.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4634 - type: CableApcExtension - components: - - pos: -48.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4635 - type: CableApcExtension - components: - - pos: -49.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4636 - type: CableApcExtension - components: - - pos: -50.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4637 - type: CableApcExtension - components: - - pos: -51.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4638 - type: CableApcExtension - components: - - pos: -52.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4639 - type: CableApcExtension - components: - - pos: -53.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4640 - type: CableApcExtension - components: - - pos: -38.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4641 - type: CableApcExtension - components: - - pos: -38.5,21.5 - parent: 0 - type: Transform -- uid: 4642 - type: CableApcExtension - components: - - pos: -38.5,20.5 - parent: 0 - type: Transform -- uid: 4643 - type: CableApcExtension - components: - - pos: -38.5,19.5 - parent: 0 - type: Transform -- uid: 4644 - type: CableApcExtension - components: - - pos: -38.5,18.5 - parent: 0 - type: Transform -- uid: 4645 - type: CableApcExtension - components: - - pos: -38.5,17.5 - parent: 0 - type: Transform -- uid: 4646 - type: CableApcExtension - components: - - pos: -38.5,16.5 - parent: 0 - type: Transform -- uid: 4647 - type: CableApcExtension - components: - - pos: -38.5,15.5 - parent: 0 - type: Transform -- uid: 4648 - type: CableApcExtension - components: - - pos: -38.5,14.5 - parent: 0 - type: Transform -- uid: 4649 - type: CableApcExtension - components: - - pos: -38.5,13.5 - parent: 0 - type: Transform -- uid: 4650 - type: CableApcExtension - components: - - pos: -38.5,12.5 - parent: 0 - type: Transform -- uid: 4651 - type: CableApcExtension - components: - - pos: -38.5,11.5 - parent: 0 - type: Transform -- uid: 4652 - type: CableApcExtension - components: - - pos: -38.5,10.5 - parent: 0 - type: Transform -- uid: 4653 - type: CableApcExtension - components: - - pos: -38.5,9.5 - parent: 0 - type: Transform -- uid: 4654 - type: CableApcExtension - components: - - pos: -38.5,8.5 - parent: 0 - type: Transform -- uid: 4655 - type: CableApcExtension - components: - - pos: -39.5,15.5 - parent: 0 - type: Transform -- uid: 4656 - type: CableApcExtension - components: - - pos: -40.5,15.5 - parent: 0 - type: Transform -- uid: 4657 - type: CableApcExtension - components: - - pos: -41.5,15.5 - parent: 0 - type: Transform -- uid: 4658 - type: CableApcExtension - components: - - pos: -42.5,15.5 - parent: 0 - type: Transform -- uid: 4659 - type: CableApcExtension - components: - - pos: -43.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4660 - type: CableApcExtension - components: - - pos: -44.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4661 - type: CableApcExtension - components: - - pos: -45.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4662 - type: CableApcExtension - components: - - pos: -39.5,19.5 - parent: 0 - type: Transform -- uid: 4663 - type: CableApcExtension - components: - - pos: -40.5,19.5 - parent: 0 - type: Transform -- uid: 4664 - type: CableApcExtension - components: - - pos: -41.5,19.5 - parent: 0 - type: Transform -- uid: 4665 - type: CableApcExtension - components: - - pos: -42.5,19.5 - parent: 0 - type: Transform -- uid: 4666 - type: CableApcExtension - components: - - pos: -43.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4667 - type: CableApcExtension - components: - - pos: -44.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4668 - type: CableApcExtension - components: - - pos: -45.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4669 - type: CableApcExtension - components: - - pos: -40.5,20.5 - parent: 0 - type: Transform -- uid: 4670 - type: CableApcExtension - components: - - pos: -40.5,21.5 - parent: 0 - type: Transform -- uid: 4671 - type: CableApcExtension - components: - - pos: -40.5,22.5 - parent: 0 - type: Transform -- uid: 4672 - type: CableApcExtension - components: - - pos: -40.5,23.5 - parent: 0 - type: Transform -- uid: 4673 - type: CableApcExtension - components: - - pos: -40.5,24.5 - parent: 0 - type: Transform -- uid: 4674 - type: CableApcExtension - components: - - pos: -40.5,25.5 - parent: 0 - type: Transform -- uid: 4675 - type: CableApcExtension - components: - - pos: -40.5,26.5 - parent: 0 - type: Transform -- uid: 4676 - type: CableApcExtension - components: - - pos: -40.5,27.5 - parent: 0 - type: Transform -- uid: 4677 - type: CableApcExtension - components: - - pos: -40.5,28.5 - parent: 0 - type: Transform -- uid: 4678 - type: CableApcExtension - components: - - pos: -41.5,27.5 - parent: 0 - type: Transform -- uid: 4679 - type: CableApcExtension - components: - - pos: -42.5,27.5 - parent: 0 - type: Transform -- uid: 4680 - type: AtmosDeviceFanTiny - components: - - pos: -63.5,5.5 - parent: 0 - type: Transform -- uid: 4681 - type: AtmosDeviceFanTiny - components: - - pos: -70.5,5.5 - parent: 0 - type: Transform -- uid: 4682 - type: AirlockExternalGlassShuttleArrivals - components: - - pos: -63.5,4.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4683 - type: AirlockExternalGlassShuttleArrivals - components: - - pos: -70.5,4.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4684 - type: CableApcExtension - components: - - pos: -37.5,22.5 - parent: 0 - type: Transform -- uid: 4685 - type: CableApcExtension - components: - - pos: -36.5,22.5 - parent: 0 - type: Transform -- uid: 4686 - type: CableApcExtension - components: - - pos: -35.5,22.5 - parent: 0 - type: Transform -- uid: 4687 - type: CableApcExtension - components: - - pos: -34.5,22.5 - parent: 0 - type: Transform -- uid: 4688 - type: CableApcExtension - components: - - pos: -33.5,22.5 - parent: 0 - type: Transform -- uid: 4689 - type: CableApcExtension - components: - - pos: -32.5,22.5 - parent: 0 - type: Transform -- uid: 4690 - type: CableApcExtension - components: - - pos: -31.5,22.5 - parent: 0 - type: Transform -- uid: 4691 - type: CableApcExtension - components: - - pos: -30.5,22.5 - parent: 0 - type: Transform -- uid: 4692 - type: CableApcExtension - components: - - pos: -37.5,16.5 - parent: 0 - type: Transform -- uid: 4693 - type: CableApcExtension - components: - - pos: -36.5,16.5 - parent: 0 - type: Transform -- uid: 4694 - type: CableApcExtension - components: - - pos: -35.5,16.5 - parent: 0 - type: Transform -- uid: 4695 - type: CableApcExtension - components: - - pos: -34.5,16.5 - parent: 0 - type: Transform -- uid: 4696 - type: CableApcExtension - components: - - pos: -33.5,16.5 - parent: 0 - type: Transform -- uid: 4697 - type: CableApcExtension - components: - - pos: -32.5,16.5 - parent: 0 - type: Transform -- uid: 4698 - type: CableApcExtension - components: - - pos: -31.5,16.5 - parent: 0 - type: Transform -- uid: 4699 - type: CableApcExtension - components: - - pos: -30.5,16.5 - parent: 0 - type: Transform -- uid: 4700 - type: CableApcExtension - components: - - pos: -29.5,16.5 - parent: 0 - type: Transform -- uid: 4701 - type: CableApcExtension - components: - - pos: -29.5,15.5 - parent: 0 - type: Transform -- uid: 4702 - type: CableApcExtension - components: - - pos: -37.5,11.5 - parent: 0 - type: Transform -- uid: 4703 - type: CableApcExtension - components: - - pos: -36.5,11.5 - parent: 0 - type: Transform -- uid: 4704 - type: CableApcExtension - components: - - pos: -35.5,11.5 - parent: 0 - type: Transform -- uid: 4705 - type: CableApcExtension - components: - - pos: -34.5,11.5 - parent: 0 - type: Transform -- uid: 4706 - type: CableApcExtension - components: - - pos: -33.5,11.5 - parent: 0 - type: Transform -- uid: 4707 - type: CableApcExtension - components: - - pos: -32.5,11.5 - parent: 0 - type: Transform -- uid: 4708 - type: CableApcExtension - components: - - pos: -31.5,11.5 - parent: 0 - type: Transform -- uid: 4709 - type: CableApcExtension - components: - - pos: -30.5,11.5 - parent: 0 - type: Transform -- uid: 4710 - type: CableApcExtension - components: - - pos: -29.5,11.5 - parent: 0 - type: Transform -- uid: 4711 - type: CableApcExtension - components: - - pos: -39.5,11.5 - parent: 0 - type: Transform -- uid: 4712 - type: CableApcExtension - components: - - pos: -40.5,11.5 - parent: 0 - type: Transform -- uid: 4713 - type: CableApcExtension - components: - - pos: -41.5,11.5 - parent: 0 - type: Transform -- uid: 4714 - type: CableApcExtension - components: - - pos: -39.5,8.5 - parent: 0 - type: Transform -- uid: 4715 - type: CableApcExtension - components: - - pos: -40.5,8.5 - parent: 0 - type: Transform -- uid: 4716 - type: CableApcExtension - components: - - pos: -41.5,8.5 - parent: 0 - type: Transform -- uid: 4717 - type: CableApcExtension - components: - - pos: -37.5,9.5 - parent: 0 - type: Transform -- uid: 4718 - type: CableApcExtension - components: - - pos: -36.5,9.5 - parent: 0 - type: Transform -- uid: 4719 - type: CableApcExtension - components: - - pos: -35.5,9.5 - parent: 0 - type: Transform -- uid: 4720 - type: CableApcExtension - components: - - pos: -37.5,19.5 - parent: 0 - type: Transform -- uid: 4721 - type: CableApcExtension - components: - - pos: -36.5,19.5 - parent: 0 - type: Transform -- uid: 4722 - type: CableApcExtension - components: - - pos: -35.5,19.5 - parent: 0 - type: Transform -- uid: 4723 - type: CableApcExtension - components: - - pos: -26.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4724 - type: CableApcExtension - components: - - pos: -26.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4725 - type: CableApcExtension - components: - - pos: -26.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4726 - type: CableApcExtension - components: - - pos: -26.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4727 - type: CableApcExtension - components: - - pos: -26.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4728 - type: CableApcExtension - components: - - pos: -26.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4729 - type: CableApcExtension - components: - - pos: -26.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4730 - type: CableApcExtension - components: - - pos: -26.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4731 - type: CableApcExtension - components: - - pos: -26.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4732 - type: CableApcExtension - components: - - pos: -26.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4733 - type: CableApcExtension - components: - - pos: -27.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4734 - type: CableApcExtension - components: - - pos: -28.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4735 - type: CableApcExtension - components: - - pos: -29.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4736 - type: CableApcExtension - components: - - pos: -30.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4737 - type: CableApcExtension - components: - - pos: -25.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4738 - type: CableApcExtension - components: - - pos: -24.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4739 - type: CableApcExtension - components: - - pos: -23.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4740 - type: CableApcExtension - components: - - pos: -22.5,10.5 - parent: 0 - type: Transform -- uid: 4741 - type: CableApcExtension - components: - - pos: -21.5,10.5 - parent: 0 - type: Transform -- uid: 4742 - type: CableApcExtension - components: - - pos: -20.5,10.5 - parent: 0 - type: Transform -- uid: 4743 - type: TwoWayLever - components: - - pos: -41.5,20.5 - parent: 0 - type: Transform - - outputs: - Left: - - port: Forward - uid: 3905 - - port: Forward - uid: 3906 - - port: Forward - uid: 3907 - - port: Forward - uid: 3908 - Right: - - port: Reverse - uid: 3905 - - port: Reverse - uid: 3906 - - port: Reverse - uid: 3907 - - port: Reverse - uid: 3908 - Middle: - - port: Off - uid: 3905 - - port: Off - uid: 3906 - - port: Off - uid: 3907 - - port: Off - uid: 3908 - type: SignalTransmitter -- uid: 4744 - type: TwoWayLever - components: - - pos: -41.5,14.5 - parent: 0 - type: Transform - - outputs: - Left: - - port: Forward - uid: 3912 - - port: Forward - uid: 3911 - - port: Forward - uid: 3910 - - port: Forward - uid: 3909 - Right: - - port: Reverse - uid: 3912 - - port: Reverse - uid: 3911 - - port: Reverse - uid: 3910 - - port: Reverse - uid: 3909 - Middle: - - port: Off - uid: 3912 - - port: Off - uid: 3911 - - port: Off - uid: 3910 - - port: Off - uid: 3909 - type: SignalTransmitter -- uid: 4745 - type: WindowReinforcedDirectional - components: - - pos: -67.5,4.5 - parent: 0 - type: Transform -- uid: 4746 - type: BlastDoor - components: - - pos: -43.5,19.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4748 - type: SignalReceiver -- uid: 4747 - type: SignalButton - components: - - pos: -43.5,14.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 4308 - - port: Toggle - uid: 4145 - type: SignalTransmitter -- uid: 4748 - type: SignalButton - components: - - pos: -43.5,20.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5045 - - port: Toggle - uid: 4746 - type: SignalTransmitter -- uid: 4749 - type: PlasticFlapsAirtightClear - components: - - pos: -43.5,19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4750 - type: PlasticFlapsAirtightClear - components: - - pos: -45.5,19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4751 - type: PlasticFlapsAirtightClear - components: - - pos: -45.5,15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4752 - type: PlasticFlapsAirtightClear - components: - - pos: -43.5,15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4753 - type: WallSolid - components: - - pos: -37.5,24.5 - parent: 0 - type: Transform -- uid: 4754 - type: WallSolid - components: - - pos: -38.5,27.5 - parent: 0 - type: Transform -- uid: 4755 - type: AirlockMaintCargoLocked - components: - - pos: -36.5,24.5 - parent: 0 - type: Transform -- uid: 4756 - type: AirlockMaintSalvageLocked - components: - - pos: -40.5,29.5 - parent: 0 - type: Transform -- uid: 4757 - type: Catwalk - components: - - pos: -26.5,10.5 - parent: 0 - type: Transform -- uid: 4758 - type: Catwalk - components: - - pos: -26.5,11.5 - parent: 0 - type: Transform -- uid: 4759 - type: Catwalk - components: - - pos: -26.5,12.5 - parent: 0 - type: Transform -- uid: 4760 - type: Catwalk - components: - - pos: -26.5,13.5 - parent: 0 - type: Transform -- uid: 4761 - type: Catwalk - components: - - pos: -26.5,14.5 - parent: 0 - type: Transform -- uid: 4762 - type: Catwalk - components: - - pos: -26.5,15.5 - parent: 0 - type: Transform -- uid: 4763 - type: Catwalk - components: - - pos: -26.5,16.5 - parent: 0 - type: Transform -- uid: 4764 - type: Catwalk - components: - - pos: -26.5,17.5 - parent: 0 - type: Transform -- uid: 4765 - type: Catwalk - components: - - pos: -26.5,18.5 - parent: 0 - type: Transform -- uid: 4766 - type: Catwalk - components: - - pos: -27.5,19.5 - parent: 0 - type: Transform -- uid: 4767 - type: Catwalk - components: - - pos: -28.5,19.5 - parent: 0 - type: Transform -- uid: 4768 - type: Catwalk - components: - - pos: -29.5,19.5 - parent: 0 - type: Transform -- uid: 4769 - type: Catwalk - components: - - pos: -30.5,19.5 - parent: 0 - type: Transform -- uid: 4770 - type: Grille - components: - - pos: -48.5,9.5 - parent: 0 - type: Transform -- uid: 4771 - type: Grille - components: - - pos: -49.5,9.5 - parent: 0 - type: Transform -- uid: 4772 - type: Grille - components: - - pos: -50.5,9.5 - parent: 0 - type: Transform -- uid: 4773 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4774 - type: WallSolid - components: - - pos: 14.5,-21.5 - parent: 0 - type: Transform -- uid: 4775 - type: WallSolid - components: - - pos: 14.5,-22.5 - parent: 0 - type: Transform -- uid: 4776 - type: WallReinforced - components: - - pos: 9.5,-22.5 - parent: 0 - type: Transform -- uid: 4777 - type: WallReinforced - components: - - pos: 10.5,-22.5 - parent: 0 - type: Transform -- uid: 4778 - type: WallReinforced - components: - - pos: 11.5,-22.5 - parent: 0 - type: Transform -- uid: 4779 - type: WallReinforced - components: - - pos: 12.5,-22.5 - parent: 0 - type: Transform -- uid: 4780 - type: WallSolid - components: - - pos: 8.5,-22.5 - parent: 0 - type: Transform -- uid: 4781 - type: Window - components: - - pos: 7.5,-22.5 - parent: 0 - type: Transform -- uid: 4782 - type: WallSolid - components: - - pos: 8.5,-22.5 - parent: 0 - type: Transform -- uid: 4783 - type: Window - components: - - pos: 2.5,-22.5 - parent: 0 - type: Transform -- uid: 4784 - type: GasPipeTJunction - components: - - pos: 4.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4785 - type: WallSolid - components: - - pos: -0.5,-22.5 - parent: 0 - type: Transform -- uid: 4786 - type: WallSolid - components: - - pos: 1.5,-22.5 - parent: 0 - type: Transform -- uid: 4787 - type: Window - components: - - pos: 5.5,-22.5 - parent: 0 - type: Transform -- uid: 4788 - type: WallReinforced - components: - - pos: 13.5,-22.5 - parent: 0 - type: Transform -- uid: 4789 - type: WallSolid - components: - - pos: 9.5,-21.5 - parent: 0 - type: Transform -- uid: 4790 - type: WallSolid - components: - - pos: -0.5,-23.5 - parent: 0 - type: Transform -- uid: 4791 - type: WallSolid - components: - - pos: -4.5,-23.5 - parent: 0 - type: Transform -- uid: 4792 - type: WallSolid - components: - - pos: -4.5,-22.5 - parent: 0 - type: Transform -- uid: 4793 - type: WallSolid - components: - - pos: -6.5,-22.5 - parent: 0 - type: Transform -- uid: 4794 - type: WallSolid - components: - - pos: -11.5,-22.5 - parent: 0 - type: Transform -- uid: 4795 - type: GasPipeTJunction - components: - - pos: 23.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4796 - type: GasPipeStraight - components: - - pos: 28.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4797 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4798 - type: WallReinforced - components: - - pos: 41.5,1.5 - parent: 0 - type: Transform -- uid: 4799 - type: WallReinforced - components: - - pos: 42.5,1.5 - parent: 0 - type: Transform -- uid: 4800 - type: WallReinforced - components: - - pos: 43.5,1.5 - parent: 0 - type: Transform -- uid: 4801 - type: WallReinforced - components: - - pos: 44.5,1.5 - parent: 0 - type: Transform -- uid: 4802 - type: WallReinforced - components: - - pos: 44.5,0.5 - parent: 0 - type: Transform -- uid: 4803 - type: WallReinforced - components: - - pos: 44.5,-0.5 - parent: 0 - type: Transform -- uid: 4804 - type: WallReinforced - components: - - pos: 44.5,-2.5 - parent: 0 - type: Transform -- uid: 4805 - type: WallReinforced - components: - - pos: 44.5,-3.5 - parent: 0 - type: Transform -- uid: 4806 - type: WallReinforced - components: - - pos: 44.5,-4.5 - parent: 0 - type: Transform -- uid: 4807 - type: WallReinforced - components: - - pos: 43.5,-4.5 - parent: 0 - type: Transform -- uid: 4808 - type: WallReinforced - components: - - pos: 42.5,-4.5 - parent: 0 - type: Transform -- uid: 4809 - type: WallReinforced - components: - - pos: 41.5,-4.5 - parent: 0 - type: Transform -- uid: 4810 - type: WallReinforced - components: - - pos: 41.5,-3.5 - parent: 0 - type: Transform -- uid: 4811 - type: WallReinforced - components: - - pos: 41.5,-2.5 - parent: 0 - type: Transform -- uid: 4812 - type: WallReinforced - components: - - pos: 41.5,-1.5 - parent: 0 - type: Transform -- uid: 4813 - type: WallReinforced - components: - - pos: 41.5,-0.5 - parent: 0 - type: Transform -- uid: 4814 - type: WallReinforced - components: - - pos: 41.5,0.5 - parent: 0 - type: Transform -- uid: 4815 - type: WallReinforced - components: - - pos: 48.5,1.5 - parent: 0 - type: Transform -- uid: 4816 - type: WallReinforced - components: - - pos: 48.5,0.5 - parent: 0 - type: Transform -- uid: 4817 - type: WallReinforced - components: - - pos: 48.5,5.5 - parent: 0 - type: Transform -- uid: 4818 - type: WallReinforced - components: - - pos: 45.5,5.5 - parent: 0 - type: Transform -- uid: 4819 - type: WallReinforced - components: - - pos: 44.5,5.5 - parent: 0 - type: Transform -- uid: 4820 - type: WallReinforced - components: - - pos: 43.5,5.5 - parent: 0 - type: Transform -- uid: 4821 - type: WallReinforced - components: - - pos: 42.5,5.5 - parent: 0 - type: Transform -- uid: 4822 - type: WallReinforced - components: - - pos: 41.5,5.5 - parent: 0 - type: Transform -- uid: 4823 - type: WallReinforced - components: - - pos: 41.5,6.5 - parent: 0 - type: Transform -- uid: 4824 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,24.5 - parent: 0 - type: Transform -- uid: 4825 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,24.5 - parent: 0 - type: Transform -- uid: 4826 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,24.5 - parent: 0 - type: Transform -- uid: 4827 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,24.5 - parent: 0 - type: Transform -- uid: 4828 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,24.5 - parent: 0 - type: Transform -- uid: 4829 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,24.5 - parent: 0 - type: Transform -- uid: 4830 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,24.5 - parent: 0 - type: Transform -- uid: 4831 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,24.5 - parent: 0 - type: Transform -- uid: 4832 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,24.5 - parent: 0 - type: Transform -- uid: 4833 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,24.5 - parent: 0 - type: Transform -- uid: 4834 - type: DisposalBend - components: - - pos: -1.5,10.5 - parent: 0 - type: Transform -- uid: 4835 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -1.5,9.5 - parent: 0 - type: Transform -- uid: 4836 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,9.5 - parent: 0 - type: Transform -- uid: 4837 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,9.5 - parent: 0 - type: Transform -- uid: 4838 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,9.5 - parent: 0 - type: Transform -- uid: 4839 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,9.5 - parent: 0 - type: Transform -- uid: 4840 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,9.5 - parent: 0 - type: Transform -- uid: 4841 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,9.5 - parent: 0 - type: Transform -- uid: 4842 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,9.5 - parent: 0 - type: Transform -- uid: 4843 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 0 - type: Transform -- uid: 4844 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,9.5 - parent: 0 - type: Transform -- uid: 4845 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,9.5 - parent: 0 - type: Transform -- uid: 4846 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,9.5 - parent: 0 - type: Transform -- uid: 4847 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,9.5 - parent: 0 - type: Transform -- uid: 4848 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 11.5,9.5 - parent: 0 - type: Transform -- uid: 4849 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,9.5 - parent: 0 - type: Transform -- uid: 4850 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,9.5 - parent: 0 - type: Transform -- uid: 4851 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,9.5 - parent: 0 - type: Transform -- uid: 4852 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,9.5 - parent: 0 - type: Transform -- uid: 4853 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4854 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 16.5,3.5 - parent: 0 - type: Transform -- uid: 4855 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,4.5 - parent: 0 - type: Transform -- uid: 4856 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,5.5 - parent: 0 - type: Transform -- uid: 4857 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,6.5 - parent: 0 - type: Transform -- uid: 4858 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,7.5 - parent: 0 - type: Transform -- uid: 4859 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,8.5 - parent: 0 - type: Transform -- uid: 4860 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,2.5 - parent: 0 - type: Transform -- uid: 4861 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,1.5 - parent: 0 - type: Transform -- uid: 4862 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,0.5 - parent: 0 - type: Transform -- uid: 4863 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-0.5 - parent: 0 - type: Transform -- uid: 4864 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-1.5 - parent: 0 - type: Transform -- uid: 4865 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-2.5 - parent: 0 - type: Transform -- uid: 4866 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 16.5,-3.5 - parent: 0 - type: Transform -- uid: 4867 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-4.5 - parent: 0 - type: Transform -- uid: 4868 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-5.5 - parent: 0 - type: Transform -- uid: 4869 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-6.5 - parent: 0 - type: Transform -- uid: 4870 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-7.5 - parent: 0 - type: Transform -- uid: 4871 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-8.5 - parent: 0 - type: Transform -- uid: 4872 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-9.5 - parent: 0 - type: Transform -- uid: 4873 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-10.5 - parent: 0 - type: Transform -- uid: 4874 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-11.5 - parent: 0 - type: Transform -- uid: 4875 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-12.5 - parent: 0 - type: Transform -- uid: 4876 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-13.5 - parent: 0 - type: Transform -- uid: 4877 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-14.5 - parent: 0 - type: Transform -- uid: 4878 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-15.5 - parent: 0 - type: Transform -- uid: 4879 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-16.5 - parent: 0 - type: Transform -- uid: 4880 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-17.5 - parent: 0 - type: Transform -- uid: 4881 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-18.5 - parent: 0 - type: Transform -- uid: 4882 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 21.5,-24.5 - parent: 0 - type: Transform -- uid: 4883 - type: DisposalBend - components: - - pos: 21.5,-23.5 - parent: 0 - type: Transform -- uid: 4884 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 18.5,-23.5 - parent: 0 - type: Transform -- uid: 4885 - type: DisposalBend - components: - - pos: 18.5,-19.5 - parent: 0 - type: Transform -- uid: 4886 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 16.5,-19.5 - parent: 0 - type: Transform -- uid: 4887 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-20.5 - parent: 0 - type: Transform -- uid: 4888 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 15.5,-20.5 - parent: 0 - type: Transform -- uid: 4889 - type: DisposalBend - components: - - pos: 15.5,-19.5 - parent: 0 - type: Transform -- uid: 4890 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-23.5 - parent: 0 - type: Transform -- uid: 4891 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-23.5 - parent: 0 - type: Transform -- uid: 4892 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 18.5,-22.5 - parent: 0 - type: Transform -- uid: 4893 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 18.5,-21.5 - parent: 0 - type: Transform -- uid: 4894 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 18.5,-20.5 - parent: 0 - type: Transform -- uid: 4895 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-19.5 - parent: 0 - type: Transform -- uid: 4896 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-7.5 - parent: 0 - type: Transform -- uid: 4897 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-7.5 - parent: 0 - type: Transform -- uid: 4898 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 20.5,-6.5 - parent: 0 - type: Transform -- uid: 4899 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 20.5,-5.5 - parent: 0 - type: Transform -- uid: 4900 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 20.5,-4.5 - parent: 0 - type: Transform -- uid: 4901 - type: DisposalTrunk - components: - - pos: 29.5,0.5 - parent: 0 - type: Transform -- uid: 4902 - type: DisposalPipe - components: - - pos: 29.5,-0.5 - parent: 0 - type: Transform -- uid: 4903 - type: DisposalPipe - components: - - pos: 29.5,-1.5 - parent: 0 - type: Transform -- uid: 4904 - type: DisposalPipe - components: - - pos: 29.5,-2.5 - parent: 0 - type: Transform -- uid: 4905 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-11.5 - parent: 0 - type: Transform -- uid: 4906 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 31.5,-11.5 - parent: 0 - type: Transform -- uid: 4907 - type: DisposalBend - components: - - pos: 31.5,-3.5 - parent: 0 - type: Transform -- uid: 4908 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-11.5 - parent: 0 - type: Transform -- uid: 4909 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-11.5 - parent: 0 - type: Transform -- uid: 4910 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-11.5 - parent: 0 - type: Transform -- uid: 4911 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,-10.5 - parent: 0 - type: Transform -- uid: 4912 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,-9.5 - parent: 0 - type: Transform -- uid: 4913 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,-8.5 - parent: 0 - type: Transform -- uid: 4914 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,-7.5 - parent: 0 - type: Transform -- uid: 4915 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,-6.5 - parent: 0 - type: Transform -- uid: 4916 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,-5.5 - parent: 0 - type: Transform -- uid: 4917 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 31.5,-4.5 - parent: 0 - type: Transform -- uid: 4918 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-3.5 - parent: 0 - type: Transform -- uid: 4919 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-3.5 - parent: 0 - type: Transform -- uid: 4920 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 0 - type: Transform -- uid: 4921 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-3.5 - parent: 0 - type: Transform -- uid: 4922 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-3.5 - parent: 0 - type: Transform -- uid: 4923 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-3.5 - parent: 0 - type: Transform -- uid: 4924 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-3.5 - parent: 0 - type: Transform -- uid: 4925 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 0 - type: Transform -- uid: 4926 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-3.5 - parent: 0 - type: Transform -- uid: 4927 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 0 - type: Transform -- uid: 4928 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 0 - type: Transform -- uid: 4929 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 0 - type: Transform -- uid: 4930 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-3.5 - parent: 0 - type: Transform -- uid: 4931 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-3.5 - parent: 0 - type: Transform -- uid: 4932 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,3.5 - parent: 0 - type: Transform -- uid: 4933 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,3.5 - parent: 0 - type: Transform -- uid: 4934 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,3.5 - parent: 0 - type: Transform -- uid: 4935 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,3.5 - parent: 0 - type: Transform -- uid: 4936 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,3.5 - parent: 0 - type: Transform -- uid: 4937 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,3.5 - parent: 0 - type: Transform -- uid: 4938 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,3.5 - parent: 0 - type: Transform -- uid: 4939 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,3.5 - parent: 0 - type: Transform -- uid: 4940 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,3.5 - parent: 0 - type: Transform -- uid: 4941 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,3.5 - parent: 0 - type: Transform -- uid: 4942 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,3.5 - parent: 0 - type: Transform -- uid: 4943 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,3.5 - parent: 0 - type: Transform -- uid: 4944 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 29.5,3.5 - parent: 0 - type: Transform -- uid: 4945 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,3.5 - parent: 0 - type: Transform -- uid: 4946 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,3.5 - parent: 0 - type: Transform -- uid: 4947 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,3.5 - parent: 0 - type: Transform -- uid: 4948 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,3.5 - parent: 0 - type: Transform -- uid: 4949 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,3.5 - parent: 0 - type: Transform -- uid: 4950 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,3.5 - parent: 0 - type: Transform -- uid: 4951 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,3.5 - parent: 0 - type: Transform -- uid: 4952 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,3.5 - parent: 0 - type: Transform -- uid: 4953 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,3.5 - parent: 0 - type: Transform -- uid: 4954 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 39.5,3.5 - parent: 0 - type: Transform -- uid: 4955 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 40.5,3.5 - parent: 0 - type: Transform -- uid: 4956 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 41.5,3.5 - parent: 0 - type: Transform -- uid: 4957 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 42.5,3.5 - parent: 0 - type: Transform -- uid: 4958 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 43.5,3.5 - parent: 0 - type: Transform -- uid: 4959 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 44.5,3.5 - parent: 0 - type: Transform -- uid: 4960 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 45.5,3.5 - parent: 0 - type: Transform -- uid: 4961 - type: GasPipeTJunction - components: - - pos: 3.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4962 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4963 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4964 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4965 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4966 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4967 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4968 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4969 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4970 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4971 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4972 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 23.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4973 - type: CrateNPCCow - components: - - pos: 32.5,-11.5 - parent: 0 - type: Transform - - air: - volume: 800 - immutable: False - temperature: 293.14987 - moles: - - 11.921543 - - 44.847713 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 4974 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4975 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4976 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4977 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4978 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4979 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4980 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4981 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4982 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4983 - type: FirelockGlass - components: - - pos: 34.5,2.5 - parent: 0 - type: Transform -- uid: 4984 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4985 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4986 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4987 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4988 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4989 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4990 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4991 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4992 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4993 - type: WallSolid - components: - - pos: -53.5,-2.5 - parent: 0 - type: Transform -- uid: 4994 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-1.5 - parent: 0 - type: Transform -- uid: 4995 - type: WallSolid - components: - - pos: -47.5,-2.5 - parent: 0 - type: Transform -- uid: 4996 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-1.5 - parent: 0 - type: Transform -- uid: 4997 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -49.5,-2.5 - parent: 0 - type: Transform -- uid: 4998 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -51.5,-2.5 - parent: 0 - type: Transform -- uid: 4999 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -51.5,-0.5 - parent: 0 - type: Transform -- uid: 5000 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -51.5,0.5 - parent: 0 - type: Transform -- uid: 5001 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -50.5,-1.5 - parent: 0 - type: Transform -- uid: 5002 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -50.5,-0.5 - parent: 0 - type: Transform -- uid: 5003 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -50.5,0.5 - parent: 0 - type: Transform -- uid: 5004 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -49.5,-1.5 - parent: 0 - type: Transform -- uid: 5005 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -49.5,-0.5 - parent: 0 - type: Transform -- uid: 5006 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: -49.5,0.5 - parent: 0 - type: Transform -- uid: 5007 - type: DisposalUnit - components: - - pos: -46.5,-2.5 - parent: 0 - type: Transform -- uid: 5008 - type: RandomVendingDrinks - components: - - pos: -46.5,-1.5 - parent: 0 - type: Transform -- uid: 5009 - type: RandomVendingSnacks - components: - - pos: -46.5,0.5 - parent: 0 - type: Transform -- uid: 5010 - type: RandomVending - components: - - pos: -46.5,-0.5 - parent: 0 - type: Transform -- uid: 5011 - type: PottedPlantRandom - components: - - pos: -46.5,1.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 5012 - type: LampGold - components: - - pos: -52.47187,1.6982079 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 5013 - type: DrinkLithiumFlask - components: - - pos: -48.518745,1.6357079 - parent: 0 - type: Transform -- uid: 5014 - type: ReinforcedWindow - components: - - pos: -63.5,-15.5 - parent: 0 - type: Transform -- uid: 5015 - type: GasVentScrubber - components: - - pos: -50.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5016 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5017 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -50.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5018 - type: ReinforcedWindow - components: - - pos: -62.5,-12.5 - parent: 0 - type: Transform -- uid: 5019 - type: ReinforcedWindow - components: - - pos: -64.5,-12.5 - parent: 0 - type: Transform -- uid: 5020 - type: ReinforcedWindow - components: - - pos: -63.5,-12.5 - parent: 0 - type: Transform -- uid: 5021 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -62.5,4.5 - parent: 0 - type: Transform -- uid: 5022 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -62.5,5.5 - parent: 0 - type: Transform -- uid: 5023 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -62.5,6.5 - parent: 0 - type: Transform -- uid: 5024 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -64.5,4.5 - parent: 0 - type: Transform -- uid: 5025 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -64.5,5.5 - parent: 0 - type: Transform -- uid: 5026 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -64.5,6.5 - parent: 0 - type: Transform -- uid: 5027 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -71.5,4.5 - parent: 0 - type: Transform -- uid: 5028 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -71.5,5.5 - parent: 0 - type: Transform -- uid: 5029 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -71.5,6.5 - parent: 0 - type: Transform -- uid: 5030 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -69.5,4.5 - parent: 0 - type: Transform -- uid: 5031 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -69.5,5.5 - parent: 0 - type: Transform -- uid: 5032 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -69.5,6.5 - parent: 0 - type: Transform -- uid: 5033 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -71.5,-7.5 - parent: 0 - type: Transform -- uid: 5034 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -71.5,-6.5 - parent: 0 - type: Transform -- uid: 5035 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -71.5,-5.5 - parent: 0 - type: Transform -- uid: 5036 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -69.5,-7.5 - parent: 0 - type: Transform -- uid: 5037 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -69.5,-6.5 - parent: 0 - type: Transform -- uid: 5038 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -69.5,-5.5 - parent: 0 - type: Transform -- uid: 5039 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -62.5,-7.5 - parent: 0 - type: Transform -- uid: 5040 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -62.5,-6.5 - parent: 0 - type: Transform -- uid: 5041 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -62.5,-5.5 - parent: 0 - type: Transform -- uid: 5042 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -64.5,-7.5 - parent: 0 - type: Transform -- uid: 5043 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -64.5,-6.5 - parent: 0 - type: Transform -- uid: 5044 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -64.5,-5.5 - parent: 0 - type: Transform -- uid: 5045 - type: BlastDoor - components: - - pos: -45.5,19.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 4748 - type: SignalReceiver -- uid: 5046 - type: SpawnPointLatejoin - components: - - pos: -65.5,-7.5 - parent: 0 - type: Transform -- uid: 5047 - type: SpawnPointLatejoin - components: - - pos: -66.5,-7.5 - parent: 0 - type: Transform -- uid: 5048 - type: SpawnPointLatejoin - components: - - pos: -67.5,-7.5 - parent: 0 - type: Transform -- uid: 5049 - type: SpawnPointLatejoin - components: - - pos: -68.5,-7.5 - parent: 0 - type: Transform -- uid: 5050 - type: SpawnPointLatejoin - components: - - pos: -68.5,6.5 - parent: 0 - type: Transform -- uid: 5051 - type: SpawnPointLatejoin - components: - - pos: -67.5,6.5 - parent: 0 - type: Transform -- uid: 5052 - type: SpawnPointLatejoin - components: - - pos: -66.5,6.5 - parent: 0 - type: Transform -- uid: 5053 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -57.5,-0.5 - parent: 0 - type: Transform -- uid: 5054 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -57.5,-1.5 - parent: 0 - type: Transform -- uid: 5055 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -57.5,-2.5 - parent: 0 - type: Transform -- uid: 5056 - type: WallReinforced - components: - - pos: -60.5,-6.5 - parent: 0 - type: Transform -- uid: 5057 - type: WallReinforced - components: - - pos: -57.5,2.5 - parent: 0 - type: Transform -- uid: 5058 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -57.5,0.5 - parent: 0 - type: Transform -- uid: 5059 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -57.5,1.5 - parent: 0 - type: Transform -- uid: 5060 - type: WallReinforced - components: - - pos: -57.5,-3.5 - parent: 0 - type: Transform -- uid: 5061 - type: WallReinforced - components: - - pos: -60.5,5.5 - parent: 0 - type: Transform -- uid: 5062 - type: ReinforcedWindow - components: - - pos: -63.5,-11.5 - parent: 0 - type: Transform -- uid: 5063 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -61.5,-6.5 - parent: 0 - type: Transform -- uid: 5064 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -61.5,5.5 - parent: 0 - type: Transform -- uid: 5065 - type: WallReinforced - components: - - pos: -57.5,5.5 - parent: 0 - type: Transform -- uid: 5066 - type: WallReinforced - components: - - pos: -57.5,-6.5 - parent: 0 - type: Transform -- uid: 5067 - type: ReinforcedWindow - components: - - pos: -59.5,-6.5 - parent: 0 - type: Transform -- uid: 5068 - type: ReinforcedWindow - components: - - pos: -58.5,-6.5 - parent: 0 - type: Transform -- uid: 5069 - type: ReinforcedWindow - components: - - pos: -57.5,-5.5 - parent: 0 - type: Transform -- uid: 5070 - type: ReinforcedWindow - components: - - pos: -57.5,-4.5 - parent: 0 - type: Transform -- uid: 5071 - type: ReinforcedWindow - components: - - pos: -57.5,3.5 - parent: 0 - type: Transform -- uid: 5072 - type: ReinforcedWindow - components: - - pos: -57.5,4.5 - parent: 0 - type: Transform -- uid: 5073 - type: ReinforcedWindow - components: - - pos: -58.5,5.5 - parent: 0 - type: Transform -- uid: 5074 - type: ReinforcedWindow - components: - - pos: -59.5,5.5 - parent: 0 - type: Transform -- uid: 5075 - type: SpawnPointLatejoin - components: - - pos: -65.5,6.5 - parent: 0 - type: Transform -- uid: 5076 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -32.5,6.5 - parent: 0 - type: Transform -- uid: 5077 - type: SignEscapePods - components: - - pos: -63.5,-14.5 - parent: 0 - type: Transform -- uid: 5078 - type: AirlockExternalGlassShuttleEscape - components: - - pos: -61.5,-24.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 5079 - type: AirlockExternalGlass - components: - - pos: 38.5,47.5 - parent: 0 - type: Transform -- uid: 5080 - type: AirlockExternalGlassShuttleEscape - components: - - rot: 1.5707963267948966 rad - pos: 41.5,47.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 5081 - type: RandomVendingDrinks - components: - - pos: 15.5,11.5 - parent: 0 - type: Transform -- uid: 5082 - type: RandomVendingSnacks - components: - - pos: 22.5,19.5 - parent: 0 - type: Transform -- uid: 5083 - type: RandomVendingDrinks - components: - - pos: 25.5,19.5 - parent: 0 - type: Transform -- uid: 5084 - type: RandomVending - components: - - pos: 26.5,39.5 - parent: 0 - type: Transform -- uid: 5085 - type: RandomVending - components: - - pos: 26.5,40.5 - parent: 0 - type: Transform -- uid: 5086 - type: AtmosDeviceFanTiny - components: - - pos: -61.5,-24.5 - parent: 0 - type: Transform -- uid: 5087 - type: AirlockExternalGlass - components: - - pos: -61.5,-22.5 - parent: 0 - type: Transform -- uid: 5088 - type: RandomVendingSnacks - components: - - pos: -5.5,-60.5 - parent: 0 - type: Transform -- uid: 5089 - type: RandomVendingDrinks - components: - - pos: -6.5,-60.5 - parent: 0 - type: Transform -- uid: 5090 - type: CableHV - components: - - pos: 94.5,1.5 - parent: 0 - type: Transform -- uid: 5091 - type: CableHV - components: - - pos: 59.5,3.5 - parent: 0 - type: Transform -- uid: 5092 - type: CableHV - components: - - pos: 59.5,2.5 - parent: 0 - type: Transform -- uid: 5093 - type: CableHV - components: - - pos: 59.5,1.5 - parent: 0 - type: Transform -- uid: 5094 - type: CableHV - components: - - pos: 59.5,0.5 - parent: 0 - type: Transform -- uid: 5095 - type: CableHV - components: - - pos: 60.5,0.5 - parent: 0 - type: Transform -- uid: 5096 - type: CableHV - components: - - pos: 61.5,0.5 - parent: 0 - type: Transform -- uid: 5097 - type: CableHV - components: - - pos: 62.5,0.5 - parent: 0 - type: Transform -- uid: 5098 - type: CableHV - components: - - pos: 63.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5099 - type: CableHV - components: - - pos: 64.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5100 - type: TargetClown - components: - - pos: 17.5,46.5 - parent: 0 - type: Transform -- uid: 5101 - type: CableHV - components: - - pos: 65.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5102 - type: CableHV - components: - - pos: 66.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5103 - type: CableHV - components: - - pos: 67.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5104 - type: CableHV - components: - - pos: 68.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5105 - type: CableHV - components: - - pos: 69.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5106 - type: CableHV - components: - - pos: 70.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5107 - type: CableHV - components: - - pos: 71.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5108 - type: CableHV - components: - - pos: 72.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5109 - type: CableHV - components: - - pos: 73.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5110 - type: CableHV - components: - - pos: 74.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5111 - type: CableHV - components: - - pos: 75.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5112 - type: CableHV - components: - - pos: 76.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5113 - type: WindowReinforcedDirectional - components: - - pos: -65.5,-5.5 - parent: 0 - type: Transform -- uid: 5114 - type: WindowReinforcedDirectional - components: - - pos: -66.5,-5.5 - parent: 0 - type: Transform -- uid: 5115 - type: WindowReinforcedDirectional - components: - - pos: -67.5,-5.5 - parent: 0 - type: Transform -- uid: 5116 - type: WindowReinforcedDirectional - components: - - pos: -68.5,-5.5 - parent: 0 - type: Transform -- uid: 5117 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -65.5,-5.5 - parent: 0 - type: Transform -- uid: 5118 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -66.5,-5.5 - parent: 0 - type: Transform -- uid: 5119 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -67.5,-5.5 - parent: 0 - type: Transform -- uid: 5120 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -68.5,-5.5 - parent: 0 - type: Transform -- uid: 5121 - type: CableHV - components: - - pos: 77.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5122 - type: CableHV - components: - - pos: 78.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5123 - type: CableHV - components: - - pos: 79.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5124 - type: CableHV - components: - - pos: 80.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5125 - type: CableHV - components: - - pos: 81.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5126 - type: ComputerCargoOrders - components: - - pos: 4.5,2.5 - parent: 0 - type: Transform -- uid: 5127 - type: ComputerCargoOrders - components: - - pos: -30.5,8.5 - parent: 0 - type: Transform -- uid: 5128 - type: ComputerShuttleCargo - components: - - pos: -42.5,17.5 - parent: 0 - type: Transform -- uid: 5129 - type: ComputerCargoShuttle - components: - - pos: -28.5,17.5 - parent: 0 - type: Transform -- uid: 5130 - type: CableHV - components: - - pos: 82.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5131 - type: CableHV - components: - - pos: 83.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5132 - type: CableHV - components: - - pos: 84.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5133 - type: CableHV - components: - - pos: 85.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5134 - type: CableHV - components: - - pos: 86.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5135 - type: CableHV - components: - - pos: 87.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5136 - type: CableHV - components: - - pos: 88.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5137 - type: CableHV - components: - - pos: 89.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5138 - type: CableHV - components: - - pos: 90.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5139 - type: CableHV - components: - - pos: 91.5,0.5 - parent: 0 - type: Transform -- uid: 5140 - type: CableHV - components: - - pos: 92.5,0.5 - parent: 0 - type: Transform -- uid: 5141 - type: ComputerCargoShuttle - components: - - pos: -39.5,21.5 - parent: 0 - type: Transform -- uid: 5142 - type: ComputerCargoOrders - components: - - rot: 3.141592653589793 rad - pos: -37.5,8.5 - parent: 0 - type: Transform -- uid: 5143 - type: CableHV - components: - - pos: 93.5,0.5 - parent: 0 - type: Transform -- uid: 5144 - type: CableHV - components: - - pos: 94.5,0.5 - parent: 0 - type: Transform -- uid: 5145 - type: CableHV - components: - - pos: 94.5,2.5 - parent: 0 - type: Transform -- uid: 5146 - type: CableHV - components: - - pos: 94.5,3.5 - parent: 0 - type: Transform -- uid: 5147 - type: CableHV - components: - - pos: 94.5,4.5 - parent: 0 - type: Transform -- uid: 5148 - type: CableHV - components: - - pos: 94.5,5.5 - parent: 0 - type: Transform -- uid: 5149 - type: CableHV - components: - - pos: 94.5,6.5 - parent: 0 - type: Transform -- uid: 5150 - type: CableHV - components: - - pos: 95.5,6.5 - parent: 0 - type: Transform -- uid: 5151 - type: CableHV - components: - - pos: 95.5,7.5 - parent: 0 - type: Transform -- uid: 5152 - type: CableHV - components: - - pos: 95.5,8.5 - parent: 0 - type: Transform -- uid: 5153 - type: CableHV - components: - - pos: 95.5,9.5 - parent: 0 - type: Transform -- uid: 5154 - type: CableHV - components: - - pos: 95.5,10.5 - parent: 0 - type: Transform -- uid: 5155 - type: CableHV - components: - - pos: 95.5,11.5 - parent: 0 - type: Transform -- uid: 5156 - type: CableHV - components: - - pos: 95.5,12.5 - parent: 0 - type: Transform -- uid: 5157 - type: CableHV - components: - - pos: 95.5,13.5 - parent: 0 - type: Transform -- uid: 5158 - type: CableHV - components: - - pos: 96.5,13.5 - parent: 0 - type: Transform -- uid: 5159 - type: CableHV - components: - - pos: 96.5,14.5 - parent: 0 - type: Transform -- uid: 5160 - type: CableHV - components: - - pos: 96.5,15.5 - parent: 0 - type: Transform -- uid: 5161 - type: Grille - components: - - pos: -71.5,-6.5 - parent: 0 - type: Transform -- uid: 5162 - type: Grille - components: - - pos: -71.5,-7.5 - parent: 0 - type: Transform -- uid: 5163 - type: Grille - components: - - pos: -71.5,-5.5 - parent: 0 - type: Transform -- uid: 5164 - type: Grille - components: - - pos: -69.5,-7.5 - parent: 0 - type: Transform -- uid: 5165 - type: Grille - components: - - pos: -69.5,-6.5 - parent: 0 - type: Transform -- uid: 5166 - type: Grille - components: - - pos: -69.5,-5.5 - parent: 0 - type: Transform -- uid: 5167 - type: Grille - components: - - pos: -68.5,-5.5 - parent: 0 - type: Transform -- uid: 5168 - type: Grille - components: - - pos: -67.5,-5.5 - parent: 0 - type: Transform -- uid: 5169 - type: Grille - components: - - pos: -66.5,-5.5 - parent: 0 - type: Transform -- uid: 5170 - type: Grille - components: - - pos: -65.5,-5.5 - parent: 0 - type: Transform -- uid: 5171 - type: Grille - components: - - pos: -64.5,-5.5 - parent: 0 - type: Transform -- uid: 5172 - type: Grille - components: - - pos: -64.5,-6.5 - parent: 0 - type: Transform -- uid: 5173 - type: Grille - components: - - pos: -64.5,-7.5 - parent: 0 - type: Transform -- uid: 5174 - type: Grille - components: - - pos: -62.5,-7.5 - parent: 0 - type: Transform -- uid: 5175 - type: Grille - components: - - pos: -62.5,-6.5 - parent: 0 - type: Transform -- uid: 5176 - type: Grille - components: - - pos: -62.5,-5.5 - parent: 0 - type: Transform -- uid: 5177 - type: Grille - components: - - pos: -61.5,-6.5 - parent: 0 - type: Transform -- uid: 5178 - type: Grille - components: - - pos: -59.5,-6.5 - parent: 0 - type: Transform -- uid: 5179 - type: Grille - components: - - pos: -58.5,-6.5 - parent: 0 - type: Transform -- uid: 5180 - type: Grille - components: - - pos: -57.5,-5.5 - parent: 0 - type: Transform -- uid: 5181 - type: Grille - components: - - pos: -57.5,-4.5 - parent: 0 - type: Transform -- uid: 5182 - type: Grille - components: - - pos: -57.5,-2.5 - parent: 0 - type: Transform -- uid: 5183 - type: Grille - components: - - pos: -57.5,-1.5 - parent: 0 - type: Transform -- uid: 5184 - type: Grille - components: - - pos: -57.5,-0.5 - parent: 0 - type: Transform -- uid: 5185 - type: Grille - components: - - pos: -57.5,0.5 - parent: 0 - type: Transform -- uid: 5186 - type: Grille - components: - - pos: -57.5,1.5 - parent: 0 - type: Transform -- uid: 5187 - type: Grille - components: - - pos: -57.5,3.5 - parent: 0 - type: Transform -- uid: 5188 - type: Grille - components: - - pos: -57.5,4.5 - parent: 0 - type: Transform -- uid: 5189 - type: Grille - components: - - pos: -58.5,5.5 - parent: 0 - type: Transform -- uid: 5190 - type: Grille - components: - - pos: -59.5,5.5 - parent: 0 - type: Transform -- uid: 5191 - type: Grille - components: - - pos: -61.5,5.5 - parent: 0 - type: Transform -- uid: 5192 - type: Grille - components: - - pos: -62.5,5.5 - parent: 0 - type: Transform -- uid: 5193 - type: Grille - components: - - pos: -62.5,6.5 - parent: 0 - type: Transform -- uid: 5194 - type: Grille - components: - - pos: -62.5,4.5 - parent: 0 - type: Transform -- uid: 5195 - type: Grille - components: - - pos: -64.5,6.5 - parent: 0 - type: Transform -- uid: 5196 - type: Grille - components: - - pos: -64.5,5.5 - parent: 0 - type: Transform -- uid: 5197 - type: Grille - components: - - pos: -64.5,4.5 - parent: 0 - type: Transform -- uid: 5198 - type: Grille - components: - - pos: -65.5,4.5 - parent: 0 - type: Transform -- uid: 5199 - type: Grille - components: - - pos: -66.5,4.5 - parent: 0 - type: Transform -- uid: 5200 - type: Grille - components: - - pos: -67.5,4.5 - parent: 0 - type: Transform -- uid: 5201 - type: Grille - components: - - pos: -68.5,4.5 - parent: 0 - type: Transform -- uid: 5202 - type: Grille - components: - - pos: -69.5,4.5 - parent: 0 - type: Transform -- uid: 5203 - type: Grille - components: - - pos: -69.5,5.5 - parent: 0 - type: Transform -- uid: 5204 - type: Grille - components: - - pos: -69.5,6.5 - parent: 0 - type: Transform -- uid: 5205 - type: Grille - components: - - pos: -71.5,6.5 - parent: 0 - type: Transform -- uid: 5206 - type: Grille - components: - - pos: -71.5,5.5 - parent: 0 - type: Transform -- uid: 5207 - type: Grille - components: - - pos: -71.5,4.5 - parent: 0 - type: Transform -- uid: 5208 - type: CableHV - components: - - pos: 96.5,16.5 - parent: 0 - type: Transform -- uid: 5209 - type: CableHV - components: - - pos: 96.5,17.5 - parent: 0 - type: Transform -- uid: 5210 - type: CableHV - components: - - pos: 96.5,18.5 - parent: 0 - type: Transform -- uid: 5211 - type: CableHV - components: - - pos: 97.5,18.5 - parent: 0 - type: Transform -- uid: 5212 - type: CableHV - components: - - pos: 98.5,18.5 - parent: 0 - type: Transform -- uid: 5213 - type: CableHV - components: - - pos: 99.5,18.5 - parent: 0 - type: Transform -- uid: 5214 - type: CableHV - components: - - pos: 100.5,18.5 - parent: 0 - type: Transform -- uid: 5215 - type: CableHV - components: - - pos: 101.5,18.5 - parent: 0 - type: Transform -- uid: 5216 - type: CableHV - components: - - pos: 102.5,18.5 - parent: 0 - type: Transform -- uid: 5217 - type: CableHV - components: - - pos: 103.5,18.5 - parent: 0 - type: Transform -- uid: 5218 - type: CableHV - components: - - pos: 104.5,18.5 - parent: 0 - type: Transform -- uid: 5219 - type: CableApcExtension - components: - - pos: 35.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5220 - type: CableApcExtension - components: - - pos: 35.5,51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5221 - type: CableHV - components: - - pos: 105.5,18.5 - parent: 0 - type: Transform -- uid: 5222 - type: CableHV - components: - - pos: 106.5,18.5 - parent: 0 - type: Transform -- uid: 5223 - type: CableHV - components: - - pos: 107.5,18.5 - parent: 0 - type: Transform -- uid: 5224 - type: CableHV - components: - - pos: 108.5,18.5 - parent: 0 - type: Transform -- uid: 5225 - type: CableHV - components: - - pos: 109.5,18.5 - parent: 0 - type: Transform -- uid: 5226 - type: CableHV - components: - - pos: 110.5,18.5 - parent: 0 - type: Transform -- uid: 5227 - type: CableHV - components: - - pos: 111.5,18.5 - parent: 0 - type: Transform -- uid: 5228 - type: CableHV - components: - - pos: 112.5,18.5 - parent: 0 - type: Transform -- uid: 5229 - type: CableHV - components: - - pos: 112.5,17.5 - parent: 0 - type: Transform -- uid: 5230 - type: CableHV - components: - - pos: 112.5,16.5 - parent: 0 - type: Transform -- uid: 5231 - type: CableHV - components: - - pos: 112.5,15.5 - parent: 0 - type: Transform -- uid: 5232 - type: CableHV - components: - - pos: 112.5,14.5 - parent: 0 - type: Transform -- uid: 5233 - type: CableHV - components: - - pos: 112.5,13.5 - parent: 0 - type: Transform -- uid: 5234 - type: CableHV - components: - - pos: 112.5,-5.5 - parent: 0 - type: Transform -- uid: 5235 - type: CableHV - components: - - pos: 113.5,13.5 - parent: 0 - type: Transform -- uid: 5236 - type: CableHV - components: - - pos: 56.5,4.5 - parent: 0 - type: Transform -- uid: 5237 - type: CableHV - components: - - pos: 56.5,5.5 - parent: 0 - type: Transform -- uid: 5238 - type: CableHV - components: - - pos: 47.5,12.5 - parent: 0 - type: Transform -- uid: 5239 - type: CableHV - components: - - pos: 47.5,11.5 - parent: 0 - type: Transform -- uid: 5240 - type: CableHV - components: - - pos: 113.5,12.5 - parent: 0 - type: Transform -- uid: 5241 - type: CableHV - components: - - pos: 113.5,11.5 - parent: 0 - type: Transform -- uid: 5242 - type: CableHV - components: - - pos: 113.5,10.5 - parent: 0 - type: Transform -- uid: 5243 - type: CableHV - components: - - pos: 113.5,9.5 - parent: 0 - type: Transform -- uid: 5244 - type: CableHV - components: - - pos: 113.5,8.5 - parent: 0 - type: Transform -- uid: 5245 - type: CableHV - components: - - pos: 113.5,7.5 - parent: 0 - type: Transform -- uid: 5246 - type: CableApcExtension - components: - - pos: 35.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5247 - type: CableApcExtension - components: - - pos: 34.5,50.5 - parent: 0 - type: Transform -- uid: 5248 - type: FireAlarm - components: - - pos: -11.5,-22.5 - parent: 0 - type: Transform - - devices: - - 14207 - - 14208 - - 14209 - - 14210 - - 14194 - - 14178 - - 24573 - type: DeviceList -- uid: 5249 - type: CableApcExtension - components: - - pos: -48.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5250 - type: CableHV - components: - - pos: 113.5,6.5 - parent: 0 - type: Transform -- uid: 5251 - type: CableHV - components: - - pos: 114.5,6.5 - parent: 0 - type: Transform -- uid: 5252 - type: CableHV - components: - - pos: 115.5,6.5 - parent: 0 - type: Transform -- uid: 5253 - type: CableHV - components: - - pos: 115.5,5.5 - parent: 0 - type: Transform -- uid: 5254 - type: CableHV - components: - - pos: 115.5,4.5 - parent: 0 - type: Transform -- uid: 5255 - type: CableHV - components: - - pos: 115.5,3.5 - parent: 0 - type: Transform -- uid: 5256 - type: CableHV - components: - - pos: 115.5,2.5 - parent: 0 - type: Transform -- uid: 5257 - type: CableHV - components: - - pos: 115.5,1.5 - parent: 0 - type: Transform -- uid: 5258 - type: CableHV - components: - - pos: 115.5,0.5 - parent: 0 - type: Transform -- uid: 5259 - type: CableHV - components: - - pos: 114.5,0.5 - parent: 0 - type: Transform -- uid: 5260 - type: CableHV - components: - - pos: 113.5,0.5 - parent: 0 - type: Transform -- uid: 5261 - type: CableHV - components: - - pos: 112.5,0.5 - parent: 0 - type: Transform -- uid: 5262 - type: CableHV - components: - - pos: 111.5,0.5 - parent: 0 - type: Transform -- uid: 5263 - type: CableHV - components: - - pos: 111.5,1.5 - parent: 0 - type: Transform -- uid: 5264 - type: CableHV - components: - - pos: 115.5,-0.5 - parent: 0 - type: Transform -- uid: 5265 - type: CableHV - components: - - pos: 115.5,-1.5 - parent: 0 - type: Transform -- uid: 5266 - type: CableHV - components: - - pos: 115.5,-2.5 - parent: 0 - type: Transform -- uid: 5267 - type: CableHV - components: - - pos: 115.5,-3.5 - parent: 0 - type: Transform -- uid: 5268 - type: CableHV - components: - - pos: 115.5,-4.5 - parent: 0 - type: Transform -- uid: 5269 - type: CableHV - components: - - pos: 114.5,-4.5 - parent: 0 - type: Transform -- uid: 5270 - type: CableHV - components: - - pos: 113.5,-4.5 - parent: 0 - type: Transform -- uid: 5271 - type: CableHV - components: - - pos: 112.5,-4.5 - parent: 0 - type: Transform -- uid: 5272 - type: CableHV - components: - - pos: 112.5,-6.5 - parent: 0 - type: Transform -- uid: 5273 - type: CableHV - components: - - pos: 112.5,-7.5 - parent: 0 - type: Transform -- uid: 5274 - type: ReinforcedWindow - components: - - pos: 47.5,5.5 - parent: 0 - type: Transform -- uid: 5275 - type: CableHV - components: - - pos: 112.5,-8.5 - parent: 0 - type: Transform -- uid: 5276 - type: CableHV - components: - - pos: 112.5,-9.5 - parent: 0 - type: Transform -- uid: 5277 - type: CableHV - components: - - pos: 112.5,-10.5 - parent: 0 - type: Transform -- uid: 5278 - type: CableHV - components: - - pos: 112.5,-11.5 - parent: 0 - type: Transform -- uid: 5279 - type: CableHV - components: - - pos: 112.5,-12.5 - parent: 0 - type: Transform -- uid: 5280 - type: CableHV - components: - - pos: 112.5,-13.5 - parent: 0 - type: Transform -- uid: 5281 - type: CableHV - components: - - pos: 112.5,-14.5 - parent: 0 - type: Transform -- uid: 5282 - type: CableHV - components: - - pos: 112.5,-15.5 - parent: 0 - type: Transform -- uid: 5283 - type: CableHV - components: - - pos: 112.5,-16.5 - parent: 0 - type: Transform -- uid: 5284 - type: CableHV - components: - - pos: 112.5,-17.5 - parent: 0 - type: Transform -- uid: 5285 - type: CableHV - components: - - pos: 112.5,-18.5 - parent: 0 - type: Transform -- uid: 5286 - type: CableHV - components: - - pos: 111.5,-18.5 - parent: 0 - type: Transform -- uid: 5287 - type: CableHV - components: - - pos: 110.5,-18.5 - parent: 0 - type: Transform -- uid: 5288 - type: CableHV - components: - - pos: 109.5,-18.5 - parent: 0 - type: Transform -- uid: 5289 - type: CableHV - components: - - pos: 108.5,-18.5 - parent: 0 - type: Transform -- uid: 5290 - type: CableHV - components: - - pos: 107.5,-18.5 - parent: 0 - type: Transform -- uid: 5291 - type: CableHV - components: - - pos: 106.5,-18.5 - parent: 0 - type: Transform -- uid: 5292 - type: CableHV - components: - - pos: 105.5,-18.5 - parent: 0 - type: Transform -- uid: 5293 - type: CableHV - components: - - pos: 104.5,-18.5 - parent: 0 - type: Transform -- uid: 5294 - type: CableHV - components: - - pos: 103.5,-18.5 - parent: 0 - type: Transform -- uid: 5295 - type: CableHV - components: - - pos: 102.5,-18.5 - parent: 0 - type: Transform -- uid: 5296 - type: CableHV - components: - - pos: 101.5,-18.5 - parent: 0 - type: Transform -- uid: 5297 - type: CableHV - components: - - pos: 100.5,-18.5 - parent: 0 - type: Transform -- uid: 5298 - type: CableHV - components: - - pos: 99.5,-18.5 - parent: 0 - type: Transform -- uid: 5299 - type: CableHV - components: - - pos: 98.5,-18.5 - parent: 0 - type: Transform -- uid: 5300 - type: CableHV - components: - - pos: 97.5,-18.5 - parent: 0 - type: Transform -- uid: 5301 - type: CableHV - components: - - pos: 96.5,-18.5 - parent: 0 - type: Transform -- uid: 5302 - type: CableHV - components: - - pos: 96.5,-17.5 - parent: 0 - type: Transform -- uid: 5303 - type: CableHV - components: - - pos: 96.5,-16.5 - parent: 0 - type: Transform -- uid: 5304 - type: CableHV - components: - - pos: 96.5,-15.5 - parent: 0 - type: Transform -- uid: 5305 - type: CableHV - components: - - pos: 96.5,-14.5 - parent: 0 - type: Transform -- uid: 5306 - type: CableHV - components: - - pos: 96.5,-13.5 - parent: 0 - type: Transform -- uid: 5307 - type: CableHV - components: - - pos: 96.5,-12.5 - parent: 0 - type: Transform -- uid: 5308 - type: CableHV - components: - - pos: 96.5,-11.5 - parent: 0 - type: Transform -- uid: 5309 - type: CableHV - components: - - pos: 96.5,-10.5 - parent: 0 - type: Transform -- uid: 5310 - type: CableHV - components: - - pos: 96.5,-9.5 - parent: 0 - type: Transform -- uid: 5311 - type: CableHV - components: - - pos: 96.5,-8.5 - parent: 0 - type: Transform -- uid: 5312 - type: CableHV - components: - - pos: 96.5,-7.5 - parent: 0 - type: Transform -- uid: 5313 - type: ReinforcedWindow - components: - - pos: 46.5,5.5 - parent: 0 - type: Transform -- uid: 5314 - type: Grille - components: - - pos: 47.5,5.5 - parent: 0 - type: Transform -- uid: 5315 - type: Grille - components: - - pos: 46.5,5.5 - parent: 0 - type: Transform -- uid: 5316 - type: Grille - components: - - pos: 48.5,4.5 - parent: 0 - type: Transform -- uid: 5317 - type: CableHV - components: - - pos: 96.5,-6.5 - parent: 0 - type: Transform -- uid: 5318 - type: CableHV - components: - - pos: 96.5,-5.5 - parent: 0 - type: Transform -- uid: 5319 - type: CableHV - components: - - pos: 96.5,-4.5 - parent: 0 - type: Transform -- uid: 5320 - type: CableHV - components: - - pos: 95.5,-4.5 - parent: 0 - type: Transform -- uid: 5321 - type: CableHV - components: - - pos: 94.5,-4.5 - parent: 0 - type: Transform -- uid: 5322 - type: CableHV - components: - - pos: 94.5,-3.5 - parent: 0 - type: Transform -- uid: 5323 - type: CableHV - components: - - pos: 94.5,-2.5 - parent: 0 - type: Transform -- uid: 5324 - type: CableHV - components: - - pos: 94.5,-1.5 - parent: 0 - type: Transform -- uid: 5325 - type: CableHV - components: - - pos: 94.5,-0.5 - parent: 0 - type: Transform -- uid: 5326 - type: AtmosDeviceFanTiny - components: - - pos: 41.5,47.5 - parent: 0 - type: Transform -- uid: 5327 - type: AirlockExternalGlassShuttleEscape - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-13.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 5328 - type: WallReinforced - components: - - pos: -52.5,-39.5 - parent: 0 - type: Transform -- uid: 5329 - type: SignEscapePods - components: - - pos: 38.5,45.5 - parent: 0 - type: Transform -- uid: 5330 - type: AtmosDeviceFanTiny - components: - - pos: -63.5,-13.5 - parent: 0 - type: Transform -- uid: 5331 - type: DeskBell - components: - - pos: -11.5,-5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5332 - type: DeskBell - components: - - pos: 32.5,-8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5333 - type: CableHV - components: - - pos: 47.5,10.5 - parent: 0 - type: Transform -- uid: 5334 - type: DeskBell - components: - - pos: 20.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5335 - type: ComputerStationRecords - components: - - rot: 1.5707963267948966 rad - pos: 9.5,24.5 - parent: 0 - type: Transform -- uid: 5336 - type: FirelockGlass - components: - - pos: 24.5,41.5 - parent: 0 - type: Transform -- uid: 5337 - type: Catwalk - components: - - pos: 16.5,21.5 - parent: 0 - type: Transform -- uid: 5338 - type: Catwalk - components: - - pos: 16.5,22.5 - parent: 0 - type: Transform -- uid: 5339 - type: Catwalk - components: - - pos: 16.5,23.5 - parent: 0 - type: Transform -- uid: 5355 - type: AirlockExternalGlass - components: - - pos: -70.5,6.5 - parent: 0 - type: Transform -- uid: 5356 - type: AirlockExternalGlass - components: - - pos: -63.5,6.5 - parent: 0 - type: Transform -- uid: 5357 - type: AirlockExternalGlass - components: - - pos: -63.5,-7.5 - parent: 0 - type: Transform -- uid: 5358 - type: AirlockExternalGlass - components: - - pos: -70.5,-7.5 - parent: 0 - type: Transform -- uid: 5363 - type: WallReinforced - components: - - pos: -55.5,9.5 - parent: 0 - type: Transform -- uid: 5364 - type: WallReinforced - components: - - pos: -56.5,9.5 - parent: 0 - type: Transform -- uid: 5365 - type: WallReinforced - components: - - pos: -57.5,9.5 - parent: 0 - type: Transform -- uid: 5366 - type: WallReinforced - components: - - pos: -58.5,9.5 - parent: 0 - type: Transform -- uid: 5367 - type: WallReinforced - components: - - pos: -59.5,9.5 - parent: 0 - type: Transform -- uid: 5368 - type: WallReinforced - components: - - pos: -60.5,9.5 - parent: 0 - type: Transform -- uid: 5369 - type: WallReinforced - components: - - pos: -61.5,9.5 - parent: 0 - type: Transform -- uid: 5370 - type: WallReinforced - components: - - pos: -62.5,9.5 - parent: 0 - type: Transform -- uid: 5371 - type: WallReinforced - components: - - pos: -63.5,9.5 - parent: 0 - type: Transform -- uid: 5372 - type: WallReinforced - components: - - pos: -64.5,9.5 - parent: 0 - type: Transform -- uid: 5373 - type: WallReinforced - components: - - pos: -65.5,9.5 - parent: 0 - type: Transform -- uid: 5374 - type: WallReinforced - components: - - pos: -66.5,9.5 - parent: 0 - type: Transform -- uid: 5375 - type: WallReinforced - components: - - pos: -67.5,9.5 - parent: 0 - type: Transform -- uid: 5376 - type: WallReinforced - components: - - pos: -68.5,9.5 - parent: 0 - type: Transform -- uid: 5377 - type: WallReinforced - components: - - pos: -69.5,9.5 - parent: 0 - type: Transform -- uid: 5378 - type: WallReinforced - components: - - pos: -70.5,9.5 - parent: 0 - type: Transform -- uid: 5379 - type: WallReinforced - components: - - pos: -71.5,9.5 - parent: 0 - type: Transform -- uid: 5380 - type: WallReinforced - components: - - pos: -72.5,9.5 - parent: 0 - type: Transform -- uid: 5381 - type: WallReinforced - components: - - pos: -73.5,9.5 - parent: 0 - type: Transform -- uid: 5382 - type: WallReinforced - components: - - pos: -74.5,9.5 - parent: 0 - type: Transform -- uid: 5383 - type: WallReinforced - components: - - pos: -75.5,9.5 - parent: 0 - type: Transform -- uid: 5384 - type: WallReinforced - components: - - pos: -76.5,9.5 - parent: 0 - type: Transform -- uid: 5385 - type: WallReinforced - components: - - pos: -77.5,9.5 - parent: 0 - type: Transform -- uid: 5386 - type: WallReinforced - components: - - pos: -72.5,6.5 - parent: 0 - type: Transform -- uid: 5387 - type: WallReinforced - components: - - pos: -74.5,6.5 - parent: 0 - type: Transform -- uid: 5388 - type: ReinforcedWindow - components: - - pos: -73.5,6.5 - parent: 0 - type: Transform -- uid: 5389 - type: ReinforcedWindow - components: - - pos: -76.5,5.5 - parent: 0 - type: Transform -- uid: 5390 - type: ReinforcedWindow - components: - - pos: -76.5,6.5 - parent: 0 - type: Transform -- uid: 5391 - type: ReinforcedWindow - components: - - pos: -75.5,6.5 - parent: 0 - type: Transform -- uid: 5392 - type: ReinforcedWindow - components: - - pos: -76.5,7.5 - parent: 0 - type: Transform -- uid: 5393 - type: ReinforcedWindow - components: - - pos: -77.5,7.5 - parent: 0 - type: Transform -- uid: 5394 - type: ReinforcedWindow - components: - - pos: -78.5,7.5 - parent: 0 - type: Transform -- uid: 5395 - type: ReinforcedWindow - components: - - pos: -78.5,9.5 - parent: 0 - type: Transform -- uid: 5396 - type: ReinforcedWindow - components: - - pos: -73.5,-7.5 - parent: 0 - type: Transform -- uid: 5397 - type: ReinforcedWindow - components: - - pos: -75.5,-7.5 - parent: 0 - type: Transform -- uid: 5398 - type: ReinforcedWindow - components: - - pos: -75.5,-10.5 - parent: 0 - type: Transform -- uid: 5399 - type: ReinforcedWindow - components: - - pos: -76.5,-10.5 - parent: 0 - type: Transform -- uid: 5400 - type: ReinforcedWindow - components: - - pos: -76.5,-9.5 - parent: 0 - type: Transform -- uid: 5401 - type: ReinforcedWindow - components: - - pos: -76.5,-8.5 - parent: 0 - type: Transform -- uid: 5402 - type: ReinforcedWindow - components: - - pos: -76.5,-7.5 - parent: 0 - type: Transform -- uid: 5403 - type: ReinforcedWindow - components: - - pos: -76.5,-6.5 - parent: 0 - type: Transform -- uid: 5404 - type: ReinforcedWindow - components: - - pos: -73.5,-10.5 - parent: 0 - type: Transform -- uid: 5405 - type: ReinforcedWindow - components: - - pos: -71.5,-10.5 - parent: 0 - type: Transform -- uid: 5406 - type: ReinforcedWindow - components: - - pos: -69.5,-10.5 - parent: 0 - type: Transform -- uid: 5407 - type: ReinforcedWindow - components: - - pos: -68.5,-10.5 - parent: 0 - type: Transform -- uid: 5408 - type: ReinforcedWindow - components: - - pos: -67.5,-10.5 - parent: 0 - type: Transform -- uid: 5409 - type: ReinforcedWindow - components: - - pos: -65.5,-10.5 - parent: 0 - type: Transform -- uid: 5410 - type: WallReinforced - components: - - pos: -64.5,-10.5 - parent: 0 - type: Transform -- uid: 5411 - type: WallReinforced - components: - - pos: -63.5,-10.5 - parent: 0 - type: Transform -- uid: 5412 - type: WallReinforced - components: - - pos: -62.5,-10.5 - parent: 0 - type: Transform -- uid: 5413 - type: WallReinforced - components: - - pos: -66.5,-10.5 - parent: 0 - type: Transform -- uid: 5414 - type: WallReinforced - components: - - pos: -70.5,-10.5 - parent: 0 - type: Transform -- uid: 5415 - type: WallReinforced - components: - - pos: -72.5,-10.5 - parent: 0 - type: Transform -- uid: 5416 - type: WallReinforced - components: - - pos: -74.5,-10.5 - parent: 0 - type: Transform -- uid: 5417 - type: WallReinforced - components: - - pos: -74.5,-7.5 - parent: 0 - type: Transform -- uid: 5418 - type: WallReinforced - components: - - pos: -72.5,-7.5 - parent: 0 - type: Transform -- uid: 5419 - type: SignSpace - components: - - pos: -75.5,6.5 - parent: 0 - type: Transform -- uid: 5420 - type: Grille - components: - - pos: -73.5,6.5 - parent: 0 - type: Transform -- uid: 5421 - type: Grille - components: - - pos: -75.5,6.5 - parent: 0 - type: Transform -- uid: 5422 - type: Grille - components: - - pos: -76.5,5.5 - parent: 0 - type: Transform -- uid: 5423 - type: Grille - components: - - pos: -76.5,6.5 - parent: 0 - type: Transform -- uid: 5424 - type: Grille - components: - - pos: -76.5,7.5 - parent: 0 - type: Transform -- uid: 5425 - type: Grille - components: - - pos: -77.5,7.5 - parent: 0 - type: Transform -- uid: 5426 - type: Grille - components: - - pos: -78.5,7.5 - parent: 0 - type: Transform -- uid: 5427 - type: Grille - components: - - pos: -78.5,9.5 - parent: 0 - type: Transform -- uid: 5428 - type: Grille - components: - - pos: -73.5,-7.5 - parent: 0 - type: Transform -- uid: 5429 - type: Grille - components: - - pos: -75.5,-7.5 - parent: 0 - type: Transform -- uid: 5430 - type: Grille - components: - - pos: -76.5,-6.5 - parent: 0 - type: Transform -- uid: 5431 - type: Grille - components: - - pos: -76.5,-7.5 - parent: 0 - type: Transform -- uid: 5432 - type: Grille - components: - - pos: -76.5,-8.5 - parent: 0 - type: Transform -- uid: 5433 - type: Grille - components: - - pos: -76.5,-9.5 - parent: 0 - type: Transform -- uid: 5434 - type: Grille - components: - - pos: -76.5,-10.5 - parent: 0 - type: Transform -- uid: 5435 - type: Grille - components: - - pos: -75.5,-10.5 - parent: 0 - type: Transform -- uid: 5436 - type: Grille - components: - - pos: -73.5,-10.5 - parent: 0 - type: Transform -- uid: 5437 - type: Grille - components: - - pos: -71.5,-10.5 - parent: 0 - type: Transform -- uid: 5438 - type: Grille - components: - - pos: -69.5,-10.5 - parent: 0 - type: Transform -- uid: 5439 - type: Grille - components: - - pos: -68.5,-10.5 - parent: 0 - type: Transform -- uid: 5440 - type: Grille - components: - - pos: -67.5,-10.5 - parent: 0 - type: Transform -- uid: 5441 - type: Grille - components: - - pos: -65.5,-10.5 - parent: 0 - type: Transform -- uid: 5442 - type: AirlockExternalGlassLocked - components: - - pos: -76.5,8.5 - parent: 0 - type: Transform -- uid: 5443 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -78.5,8.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 5444 - type: WallSolid - components: - - pos: -45.5,4.5 - parent: 0 - type: Transform -- uid: 5445 - type: WallSolid - components: - - pos: -47.5,4.5 - parent: 0 - type: Transform -- uid: 5446 - type: WallSolid - components: - - pos: -48.5,4.5 - parent: 0 - type: Transform -- uid: 5447 - type: WallReinforced - components: - - pos: -53.5,6.5 - parent: 0 - type: Transform -- uid: 5448 - type: WallReinforced - components: - - pos: -53.5,5.5 - parent: 0 - type: Transform -- uid: 5449 - type: WallReinforced - components: - - pos: -53.5,4.5 - parent: 0 - type: Transform -- uid: 5450 - type: WallReinforced - components: - - pos: -52.5,4.5 - parent: 0 - type: Transform -- uid: 5451 - type: WallReinforced - components: - - pos: -51.5,4.5 - parent: 0 - type: Transform -- uid: 5452 - type: WallReinforced - components: - - pos: -50.5,4.5 - parent: 0 - type: Transform -- uid: 5453 - type: WallReinforced - components: - - pos: -49.5,4.5 - parent: 0 - type: Transform -- uid: 5454 - type: WallReinforced - components: - - pos: -53.5,7.5 - parent: 0 - type: Transform -- uid: 5455 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5456 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -56.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5457 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -55.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5458 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5459 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5460 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5461 - type: GasPipeStraight - components: - - pos: -56.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5462 - type: GasPipeStraight - components: - - pos: -56.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5463 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5464 - type: GasPipeStraight - components: - - pos: -56.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5465 - type: GasPipeStraight - components: - - pos: -56.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5466 - type: GasPipeStraight - components: - - pos: -56.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5467 - type: GasPipeStraight - components: - - pos: -56.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5468 - type: GasPipeStraight - components: - - pos: -55.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5469 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -55.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5470 - type: GasPipeStraight - components: - - pos: -55.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5471 - type: GasPipeStraight - components: - - pos: -55.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5472 - type: GasPipeStraight - components: - - pos: -55.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5473 - type: GasPipeStraight - components: - - pos: -55.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5474 - type: GasPipeStraight - components: - - pos: -55.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5475 - type: GasPipeStraight - components: - - pos: -56.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5476 - type: GasPipeStraight - components: - - pos: -56.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5477 - type: GasPipeTJunction - components: - - pos: -58.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5478 - type: GasPipeStraight - components: - - pos: -56.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5479 - type: GasPipeStraight - components: - - pos: -55.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5480 - type: GasPipeStraight - components: - - pos: -55.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5481 - type: GasPipeStraight - components: - - pos: -55.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5482 - type: GasPipeStraight - components: - - pos: -56.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5483 - type: GasPipeStraight - components: - - pos: -56.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5484 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -58.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5485 - type: GasPipeStraight - components: - - pos: -56.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5486 - type: GasPipeStraight - components: - - pos: -55.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5487 - type: GasPipeStraight - components: - - pos: -55.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5488 - type: GasPipeStraight - components: - - pos: -55.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5489 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5490 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5491 - type: GasPipeBend - components: - - pos: -55.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5492 - type: GasPipeTJunction - components: - - pos: -56.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5493 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5494 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5495 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -56.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5496 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5497 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5498 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -61.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5499 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -62.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5500 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -63.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5501 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -64.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5502 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -65.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5503 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -66.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5504 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5505 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5506 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5507 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5508 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -61.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5509 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -62.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5510 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -63.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5511 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -64.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5512 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -65.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5513 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -66.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5514 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -55.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5515 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5516 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5517 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5518 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5519 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5520 - type: GasPipeTJunction - components: - - pos: -60.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5521 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5522 - type: GasPipeTJunction - components: - - pos: -63.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5523 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5524 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5525 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5526 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5527 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5528 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5529 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5530 - type: GasPipeTJunction - components: - - pos: -61.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5531 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5532 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5533 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5534 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5535 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5536 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5539 - type: SignCargo - components: - - pos: -44.5,7.5 - parent: 0 - type: Transform -- uid: 5540 - type: AirlockMaintLocked - components: - - pos: -46.5,4.5 - parent: 0 - type: Transform -- uid: 5541 - type: AirlockMaintLocked - components: - - pos: -53.5,8.5 - parent: 0 - type: Transform -- uid: 5542 - type: GasPipeTJunction - components: - - pos: -67.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5543 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -70.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5544 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -70.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5545 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -68.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5546 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5547 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -70.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5548 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -70.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5549 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5550 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5551 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5552 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5553 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -70.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5554 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -70.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5555 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -69.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5556 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5557 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -67.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5558 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -70.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5559 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -67.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5560 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -63.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5561 - type: GasVentPump - components: - - pos: -63.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5562 - type: GasVentPump - components: - - pos: -67.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5563 - type: GasVentPump - components: - - pos: -70.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5564 - type: FirelockGlass - components: - - pos: -53.5,-4.5 - parent: 0 - type: Transform -- uid: 5565 - type: FirelockGlass - components: - - pos: -53.5,-3.5 - parent: 0 - type: Transform -- uid: 5566 - type: FirelockGlass - components: - - pos: -53.5,2.5 - parent: 0 - type: Transform -- uid: 5567 - type: FirelockGlass - components: - - pos: -53.5,3.5 - parent: 0 - type: Transform -- uid: 5568 - type: GasPipeTJunction - components: - - pos: -39.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5569 - type: GasPipeTJunction - components: - - pos: -49.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5570 - type: GasPipeTJunction - components: - - pos: -52.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5571 - type: Window - components: - - pos: 0.5,-22.5 - parent: 0 - type: Transform -- uid: 5572 - type: FirelockGlass - components: - - pos: -56.5,5.5 - parent: 0 - type: Transform -- uid: 5573 - type: FirelockGlass - components: - - pos: -55.5,5.5 - parent: 0 - type: Transform -- uid: 5574 - type: FirelockGlass - components: - - pos: -54.5,5.5 - parent: 0 - type: Transform -- uid: 5575 - type: FirelockGlass - components: - - pos: -56.5,-6.5 - parent: 0 - type: Transform -- uid: 5576 - type: FirelockGlass - components: - - pos: -55.5,-6.5 - parent: 0 - type: Transform -- uid: 5577 - type: FirelockGlass - components: - - pos: -54.5,-6.5 - parent: 0 - type: Transform -- uid: 5578 - type: FirelockGlass - components: - - pos: -35.5,-1.5 - parent: 0 - type: Transform -- uid: 5579 - type: FirelockGlass - components: - - pos: -35.5,-0.5 - parent: 0 - type: Transform -- uid: 5580 - type: FirelockGlass - components: - - pos: -35.5,0.5 - parent: 0 - type: Transform -- uid: 5581 - type: WallSolid - components: - - pos: -39.5,-4.5 - parent: 0 - type: Transform -- uid: 5582 - type: WallSolid - components: - - pos: -43.5,-3.5 - parent: 0 - type: Transform -- uid: 5583 - type: WallSolid - components: - - pos: -43.5,-2.5 - parent: 0 - type: Transform -- uid: 5584 - type: WallSolid - components: - - pos: -42.5,-3.5 - parent: 0 - type: Transform -- uid: 5585 - type: WallSolid - components: - - pos: -41.5,-3.5 - parent: 0 - type: Transform -- uid: 5586 - type: WallSolid - components: - - pos: -40.5,-3.5 - parent: 0 - type: Transform -- uid: 5587 - type: WallSolid - components: - - pos: -39.5,-3.5 - parent: 0 - type: Transform -- uid: 5588 - type: WallSolid - components: - - pos: -39.5,-2.5 - parent: 0 - type: Transform -- uid: 5589 - type: WallSolid - components: - - pos: -38.5,-2.5 - parent: 0 - type: Transform -- uid: 5590 - type: WallSolid - components: - - pos: -36.5,-2.5 - parent: 0 - type: Transform -- uid: 5591 - type: WallSolid - components: - - pos: -35.5,-2.5 - parent: 0 - type: Transform -- uid: 5592 - type: WallSolid - components: - - pos: -34.5,-2.5 - parent: 0 - type: Transform -- uid: 5593 - type: WallSolid - components: - - pos: -35.5,-3.5 - parent: 0 - type: Transform -- uid: 5594 - type: WallSolid - components: - - pos: -23.5,-2.5 - parent: 0 - type: Transform -- uid: 5595 - type: WallSolid - components: - - pos: -23.5,-3.5 - parent: 0 - type: Transform -- uid: 5596 - type: WallSolid - components: - - pos: -23.5,-4.5 - parent: 0 - type: Transform -- uid: 5597 - type: WallSolid - components: - - pos: -23.5,-5.5 - parent: 0 - type: Transform -- uid: 5598 - type: WallSolid - components: - - pos: -24.5,-5.5 - parent: 0 - type: Transform -- uid: 5599 - type: WallSolid - components: - - pos: -27.5,-5.5 - parent: 0 - type: Transform -- uid: 5600 - type: WallSolid - components: - - pos: -26.5,-5.5 - parent: 0 - type: Transform -- uid: 5601 - type: WallSolid - components: - - pos: -26.5,-4.5 - parent: 0 - type: Transform -- uid: 5602 - type: WallSolid - components: - - pos: -26.5,-3.5 - parent: 0 - type: Transform -- uid: 5603 - type: WallSolid - components: - - pos: -26.5,-2.5 - parent: 0 - type: Transform -- uid: 5604 - type: WallSolid - components: - - pos: -25.5,-2.5 - parent: 0 - type: Transform -- uid: 5605 - type: WallSolid - components: - - pos: -24.5,-2.5 - parent: 0 - type: Transform -- uid: 5606 - type: WallSolid - components: - - pos: -27.5,-2.5 - parent: 0 - type: Transform -- uid: 5607 - type: WallSolid - components: - - pos: -28.5,-2.5 - parent: 0 - type: Transform -- uid: 5608 - type: WallSolid - components: - - pos: -29.5,-2.5 - parent: 0 - type: Transform -- uid: 5609 - type: WallSolid - components: - - pos: -29.5,-3.5 - parent: 0 - type: Transform -- uid: 5610 - type: WallSolid - components: - - pos: -29.5,-4.5 - parent: 0 - type: Transform -- uid: 5611 - type: WallSolid - components: - - pos: -29.5,-5.5 - parent: 0 - type: Transform -- uid: 5612 - type: WallSolid - components: - - pos: -30.5,-5.5 - parent: 0 - type: Transform -- uid: 5613 - type: WallSolid - components: - - pos: -24.5,-10.5 - parent: 0 - type: Transform -- uid: 5614 - type: WallSolid - components: - - pos: -23.5,-10.5 - parent: 0 - type: Transform -- uid: 5615 - type: WallSolid - components: - - pos: -24.5,-11.5 - parent: 0 - type: Transform -- uid: 5616 - type: WallSolid - components: - - pos: -24.5,-12.5 - parent: 0 - type: Transform -- uid: 5617 - type: WallSolid - components: - - pos: -24.5,-13.5 - parent: 0 - type: Transform -- uid: 5618 - type: WallSolid - components: - - pos: -24.5,-14.5 - parent: 0 - type: Transform -- uid: 5619 - type: WallSolid - components: - - pos: -23.5,-14.5 - parent: 0 - type: Transform -- uid: 5620 - type: WallSolid - components: - - pos: -23.5,-15.5 - parent: 0 - type: Transform -- uid: 5621 - type: WallSolid - components: - - pos: -23.5,-16.5 - parent: 0 - type: Transform -- uid: 5622 - type: WallSolid - components: - - pos: -23.5,-17.5 - parent: 0 - type: Transform -- uid: 5623 - type: WallSolid - components: - - pos: -36.5,-12.5 - parent: 0 - type: Transform -- uid: 5624 - type: WallSolid - components: - - pos: -24.5,-18.5 - parent: 0 - type: Transform -- uid: 5625 - type: WallSolid - components: - - pos: -24.5,-19.5 - parent: 0 - type: Transform -- uid: 5626 - type: WallSolid - components: - - pos: -25.5,-18.5 - parent: 0 - type: Transform -- uid: 5627 - type: WallSolid - components: - - pos: -26.5,-18.5 - parent: 0 - type: Transform -- uid: 5628 - type: WallSolid - components: - - pos: -27.5,-17.5 - parent: 0 - type: Transform -- uid: 5629 - type: WallSolid - components: - - pos: -27.5,-16.5 - parent: 0 - type: Transform -- uid: 5630 - type: WallSolid - components: - - pos: -27.5,-15.5 - parent: 0 - type: Transform -- uid: 5631 - type: WallSolid - components: - - pos: -27.5,-14.5 - parent: 0 - type: Transform -- uid: 5632 - type: WallSolid - components: - - pos: -26.5,-14.5 - parent: 0 - type: Transform -- uid: 5633 - type: WallSolid - components: - - pos: -28.5,-14.5 - parent: 0 - type: Transform -- uid: 5634 - type: WallSolid - components: - - pos: -29.5,-14.5 - parent: 0 - type: Transform -- uid: 5635 - type: WallSolid - components: - - pos: -27.5,-19.5 - parent: 0 - type: Transform -- uid: 5636 - type: WallSolid - components: - - pos: -28.5,-19.5 - parent: 0 - type: Transform -- uid: 5637 - type: WallSolid - components: - - pos: -35.5,-4.5 - parent: 0 - type: Transform -- uid: 5638 - type: WallSolid - components: - - pos: -35.5,-5.5 - parent: 0 - type: Transform -- uid: 5639 - type: WallSolid - components: - - pos: -35.5,-6.5 - parent: 0 - type: Transform -- uid: 5640 - type: ReinforcedWindow - components: - - pos: -33.5,-2.5 - parent: 0 - type: Transform -- uid: 5641 - type: WallSolid - components: - - pos: -33.5,-13.5 - parent: 0 - type: Transform -- uid: 5642 - type: FirelockGlass - components: - - pos: -20.5,-14.5 - parent: 0 - type: Transform -- uid: 5643 - type: WallSolid - components: - - pos: -34.5,-11.5 - parent: 0 - type: Transform -- uid: 5644 - type: WallSolid - components: - - pos: -35.5,-11.5 - parent: 0 - type: Transform -- uid: 5645 - type: WallSolid - components: - - pos: -33.5,-9.5 - parent: 0 - type: Transform -- uid: 5646 - type: WallSolid - components: - - pos: -33.5,-8.5 - parent: 0 - type: Transform -- uid: 5647 - type: WallSolid - components: - - pos: -35.5,-14.5 - parent: 0 - type: Transform -- uid: 5648 - type: WallSolid - components: - - pos: -35.5,-15.5 - parent: 0 - type: Transform -- uid: 5649 - type: WallSolid - components: - - pos: -35.5,-16.5 - parent: 0 - type: Transform -- uid: 5650 - type: WallSolid - components: - - pos: -35.5,-17.5 - parent: 0 - type: Transform -- uid: 5651 - type: WallSolid - components: - - pos: -35.5,-18.5 - parent: 0 - type: Transform -- uid: 5652 - type: WallSolid - components: - - pos: -35.5,-19.5 - parent: 0 - type: Transform -- uid: 5653 - type: WallSolid - components: - - pos: -34.5,-19.5 - parent: 0 - type: Transform -- uid: 5654 - type: WallSolid - components: - - pos: -33.5,-19.5 - parent: 0 - type: Transform -- uid: 5655 - type: WallSolid - components: - - pos: -32.5,-19.5 - parent: 0 - type: Transform -- uid: 5656 - type: WallSolid - components: - - pos: -31.5,-19.5 - parent: 0 - type: Transform -- uid: 5657 - type: AirlockMaintLocked - components: - - pos: -30.5,-19.5 - parent: 0 - type: Transform -- uid: 5658 - type: WallSolid - components: - - pos: -29.5,-19.5 - parent: 0 - type: Transform -- uid: 5659 - type: WallSolid - components: - - pos: -34.5,-14.5 - parent: 0 - type: Transform -- uid: 5660 - type: FirelockGlass - components: - - pos: -21.5,-14.5 - parent: 0 - type: Transform -- uid: 5661 - type: FirelockGlass - components: - - pos: -22.5,-14.5 - parent: 0 - type: Transform -- uid: 5662 - type: AirlockGlass - components: - - pos: -23.5,-1.5 - parent: 0 - type: Transform -- uid: 5663 - type: AirlockGlass - components: - - pos: -23.5,-0.5 - parent: 0 - type: Transform -- uid: 5664 - type: AirlockGlass - components: - - pos: -23.5,0.5 - parent: 0 - type: Transform -- uid: 5665 - type: FirelockGlass - components: - - pos: -16.5,8.5 - parent: 0 - type: Transform -- uid: 5666 - type: FirelockGlass - components: - - pos: -16.5,9.5 - parent: 0 - type: Transform -- uid: 5667 - type: FirelockGlass - components: - - pos: -16.5,10.5 - parent: 0 - type: Transform -- uid: 5668 - type: FirelockGlass - components: - - pos: -13.5,-20.5 - parent: 0 - type: Transform -- uid: 5669 - type: FirelockGlass - components: - - pos: -13.5,-19.5 - parent: 0 - type: Transform -- uid: 5670 - type: FirelockGlass - components: - - pos: 9.5,-20.5 - parent: 0 - type: Transform -- uid: 5671 - type: FirelockGlass - components: - - pos: -13.5,-18.5 - parent: 0 - type: Transform -- uid: 5672 - type: FirelockGlass - components: - - pos: 9.5,-19.5 - parent: 0 - type: Transform -- uid: 5673 - type: FirelockGlass - components: - - pos: 9.5,-18.5 - parent: 0 - type: Transform -- uid: 5674 - type: ReinforcedWindow - components: - - pos: -63.5,-14.5 - parent: 0 - type: Transform -- uid: 5675 - type: ReinforcedWindow - components: - - pos: -64.5,-14.5 - parent: 0 - type: Transform -- uid: 5676 - type: ReinforcedWindow - components: - - pos: -62.5,-14.5 - parent: 0 - type: Transform -- uid: 5677 - type: ReinforcedWindow - components: - - pos: -65.5,-16.5 - parent: 0 - type: Transform -- uid: 5678 - type: ReinforcedWindow - components: - - pos: -67.5,-16.5 - parent: 0 - type: Transform -- uid: 5679 - type: ReinforcedWindow - components: - - pos: -76.5,-16.5 - parent: 0 - type: Transform -- uid: 5680 - type: ReinforcedWindow - components: - - pos: -75.5,-16.5 - parent: 0 - type: Transform -- uid: 5681 - type: ReinforcedWindow - components: - - pos: -74.5,-16.5 - parent: 0 - type: Transform -- uid: 5682 - type: ReinforcedWindow - components: - - pos: -74.5,-18.5 - parent: 0 - type: Transform -- uid: 5683 - type: ReinforcedWindow - components: - - pos: -75.5,-18.5 - parent: 0 - type: Transform -- uid: 5684 - type: ReinforcedWindow - components: - - pos: -76.5,-18.5 - parent: 0 - type: Transform -- uid: 5685 - type: ReinforcedWindow - components: - - pos: -74.5,-21.5 - parent: 0 - type: Transform -- uid: 5686 - type: ReinforcedWindow - components: - - pos: -74.5,-20.5 - parent: 0 - type: Transform -- uid: 5687 - type: ReinforcedWindow - components: - - pos: -74.5,-19.5 - parent: 0 - type: Transform -- uid: 5688 - type: ReinforcedWindow - components: - - pos: -74.5,-22.5 - parent: 0 - type: Transform -- uid: 5689 - type: ReinforcedWindow - components: - - pos: -71.5,-22.5 - parent: 0 - type: Transform -- uid: 5690 - type: ReinforcedWindow - components: - - pos: -71.5,-21.5 - parent: 0 - type: Transform -- uid: 5691 - type: ReinforcedWindow - components: - - pos: -71.5,-20.5 - parent: 0 - type: Transform -- uid: 5692 - type: ReinforcedWindow - components: - - pos: -70.5,-16.5 - parent: 0 - type: Transform -- uid: 5693 - type: ReinforcedWindow - components: - - pos: -72.5,-16.5 - parent: 0 - type: Transform -- uid: 5694 - type: WallReinforced - components: - - pos: -73.5,-16.5 - parent: 0 - type: Transform -- uid: 5695 - type: WallReinforced - components: - - pos: -71.5,-16.5 - parent: 0 - type: Transform -- uid: 5696 - type: WallReinforced - components: - - pos: -69.5,-16.5 - parent: 0 - type: Transform -- uid: 5697 - type: WallReinforced - components: - - pos: -68.5,-16.5 - parent: 0 - type: Transform -- uid: 5698 - type: WallReinforced - components: - - pos: -66.5,-16.5 - parent: 0 - type: Transform -- uid: 5699 - type: WallReinforced - components: - - pos: -64.5,-16.5 - parent: 0 - type: Transform -- uid: 5700 - type: WallReinforced - components: - - pos: -63.5,-16.5 - parent: 0 - type: Transform -- uid: 5701 - type: WallReinforced - components: - - pos: -62.5,-16.5 - parent: 0 - type: Transform -- uid: 5702 - type: ReinforcedWindow - components: - - pos: -63.5,-19.5 - parent: 0 - type: Transform -- uid: 5703 - type: ReinforcedWindow - components: - - pos: -69.5,-19.5 - parent: 0 - type: Transform -- uid: 5704 - type: ReinforcedWindow - components: - - pos: -70.5,-19.5 - parent: 0 - type: Transform -- uid: 5705 - type: ReinforcedWindow - components: - - pos: -58.5,-30.5 - parent: 0 - type: Transform -- uid: 5706 - type: WallReinforced - components: - - pos: -62.5,-19.5 - parent: 0 - type: Transform -- uid: 5707 - type: ReinforcedWindow - components: - - pos: -71.5,-19.5 - parent: 0 - type: Transform -- uid: 5708 - type: ReinforcedWindow - components: - - pos: -66.5,-19.5 - parent: 0 - type: Transform -- uid: 5709 - type: ReinforcedWindow - components: - - pos: -67.5,-19.5 - parent: 0 - type: Transform -- uid: 5710 - type: WallReinforced - components: - - pos: -68.5,-19.5 - parent: 0 - type: Transform -- uid: 5711 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -76.5,-17.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 5712 - type: AirlockExternalGlassLocked - components: - - pos: -74.5,-17.5 - parent: 0 - type: Transform -- uid: 5713 - type: AirlockExternalGlassLocked - components: - - pos: -72.5,-19.5 - parent: 0 - type: Transform -- uid: 5714 - type: AirlockExternalGlassLocked - components: - - pos: -73.5,-19.5 - parent: 0 - type: Transform -- uid: 5715 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -73.5,-22.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 5716 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -72.5,-22.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 5717 - type: Grille - components: - - pos: -63.5,-15.5 - parent: 0 - type: Transform -- uid: 5718 - type: Grille - components: - - pos: -63.5,-14.5 - parent: 0 - type: Transform -- uid: 5719 - type: Grille - components: - - pos: -62.5,-14.5 - parent: 0 - type: Transform -- uid: 5720 - type: Grille - components: - - pos: -64.5,-14.5 - parent: 0 - type: Transform -- uid: 5721 - type: Grille - components: - - pos: -64.5,-12.5 - parent: 0 - type: Transform -- uid: 5722 - type: Grille - components: - - pos: -63.5,-12.5 - parent: 0 - type: Transform -- uid: 5723 - type: Grille - components: - - pos: -62.5,-12.5 - parent: 0 - type: Transform -- uid: 5724 - type: Grille - components: - - pos: -63.5,-11.5 - parent: 0 - type: Transform -- uid: 5725 - type: Grille - components: - - pos: -65.5,-16.5 - parent: 0 - type: Transform -- uid: 5726 - type: Grille - components: - - pos: -67.5,-16.5 - parent: 0 - type: Transform -- uid: 5727 - type: Grille - components: - - pos: -70.5,-16.5 - parent: 0 - type: Transform -- uid: 5728 - type: Grille - components: - - pos: -72.5,-16.5 - parent: 0 - type: Transform -- uid: 5729 - type: Grille - components: - - pos: -74.5,-16.5 - parent: 0 - type: Transform -- uid: 5730 - type: Grille - components: - - pos: -75.5,-16.5 - parent: 0 - type: Transform -- uid: 5731 - type: Grille - components: - - pos: -76.5,-16.5 - parent: 0 - type: Transform -- uid: 5732 - type: Grille - components: - - pos: -71.5,-22.5 - parent: 0 - type: Transform -- uid: 5733 - type: Grille - components: - - pos: -71.5,-21.5 - parent: 0 - type: Transform -- uid: 5734 - type: Grille - components: - - pos: -71.5,-20.5 - parent: 0 - type: Transform -- uid: 5735 - type: Grille - components: - - pos: -74.5,-22.5 - parent: 0 - type: Transform -- uid: 5736 - type: Grille - components: - - pos: -74.5,-21.5 - parent: 0 - type: Transform -- uid: 5737 - type: Grille - components: - - pos: -74.5,-20.5 - parent: 0 - type: Transform -- uid: 5738 - type: Grille - components: - - pos: -74.5,-19.5 - parent: 0 - type: Transform -- uid: 5739 - type: Grille - components: - - pos: -74.5,-18.5 - parent: 0 - type: Transform -- uid: 5740 - type: Grille - components: - - pos: -75.5,-18.5 - parent: 0 - type: Transform -- uid: 5741 - type: Grille - components: - - pos: -76.5,-18.5 - parent: 0 - type: Transform -- uid: 5742 - type: AirlockExternalGlassLocked - components: - - pos: -62.5,-13.5 - parent: 0 - type: Transform -- uid: 5744 - type: WallReinforced - components: - - pos: -51.5,-39.5 - parent: 0 - type: Transform -- uid: 5745 - type: WallReinforced - components: - - pos: -50.5,-39.5 - parent: 0 - type: Transform -- uid: 5746 - type: WallReinforced - components: - - pos: -51.5,-38.5 - parent: 0 - type: Transform -- uid: 5747 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 28.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5748 - type: WallReinforced - components: - - pos: -62.5,-22.5 - parent: 0 - type: Transform -- uid: 5749 - type: WallSolid - components: - - pos: -46.5,-12.5 - parent: 0 - type: Transform -- uid: 5750 - type: WallSolid - components: - - pos: -47.5,-12.5 - parent: 0 - type: Transform -- uid: 5751 - type: WallSolid - components: - - pos: -51.5,-10.5 - parent: 0 - type: Transform -- uid: 5752 - type: WallSolid - components: - - pos: -51.5,-11.5 - parent: 0 - type: Transform -- uid: 5753 - type: WallReinforced - components: - - pos: -52.5,-41.5 - parent: 0 - type: Transform -- uid: 5754 - type: WallReinforced - components: - - pos: -58.5,-28.5 - parent: 0 - type: Transform -- uid: 5755 - type: ReinforcedWindow - components: - - pos: -55.5,-35.5 - parent: 0 - type: Transform -- uid: 5756 - type: ReinforcedWindow - components: - - pos: -56.5,-35.5 - parent: 0 - type: Transform -- uid: 5757 - type: ReinforcedWindow - components: - - pos: -53.5,-35.5 - parent: 0 - type: Transform -- uid: 5758 - type: ReinforcedWindow - components: - - pos: -54.5,-35.5 - parent: 0 - type: Transform -- uid: 5759 - type: ReinforcedWindow - components: - - pos: -56.5,-34.5 - parent: 0 - type: Transform -- uid: 5760 - type: ReinforcedWindow - components: - - pos: -52.5,-35.5 - parent: 0 - type: Transform -- uid: 5761 - type: WallReinforced - components: - - pos: -58.5,-22.5 - parent: 0 - type: Transform -- uid: 5762 - type: WallReinforced - components: - - pos: -58.5,-23.5 - parent: 0 - type: Transform -- uid: 5763 - type: ReinforcedWindow - components: - - pos: -58.5,-24.5 - parent: 0 - type: Transform -- uid: 5764 - type: ReinforcedWindow - components: - - pos: -58.5,-25.5 - parent: 0 - type: Transform -- uid: 5765 - type: WallReinforced - components: - - pos: -58.5,-26.5 - parent: 0 - type: Transform -- uid: 5766 - type: WallReinforced - components: - - pos: -58.5,-27.5 - parent: 0 - type: Transform -- uid: 5767 - type: ReinforcedWindow - components: - - pos: -52.5,-34.5 - parent: 0 - type: Transform -- uid: 5768 - type: Grille - components: - - pos: -71.5,-19.5 - parent: 0 - type: Transform -- uid: 5769 - type: Grille - components: - - pos: -70.5,-19.5 - parent: 0 - type: Transform -- uid: 5770 - type: Grille - components: - - pos: -69.5,-19.5 - parent: 0 - type: Transform -- uid: 5771 - type: ReinforcedWindow - components: - - pos: -64.5,-19.5 - parent: 0 - type: Transform -- uid: 5772 - type: WallSolid - components: - - pos: -61.5,-19.5 - parent: 0 - type: Transform -- uid: 5773 - type: WallSolid - components: - - pos: -60.5,-19.5 - parent: 0 - type: Transform -- uid: 5774 - type: WallSolid - components: - - pos: -59.5,-19.5 - parent: 0 - type: Transform -- uid: 5775 - type: WallSolid - components: - - pos: -59.5,-18.5 - parent: 0 - type: Transform -- uid: 5776 - type: WallSolid - components: - - pos: -59.5,-17.5 - parent: 0 - type: Transform -- uid: 5777 - type: ReinforcedWindow - components: - - pos: -57.5,-29.5 - parent: 0 - type: Transform -- uid: 5778 - type: WallSolid - components: - - pos: -59.5,-15.5 - parent: 0 - type: Transform -- uid: 5779 - type: WallSolid - components: - - pos: -59.5,-14.5 - parent: 0 - type: Transform -- uid: 5780 - type: WallSolid - components: - - pos: -59.5,-13.5 - parent: 0 - type: Transform -- uid: 5781 - type: WallSolid - components: - - pos: -59.5,-12.5 - parent: 0 - type: Transform -- uid: 5782 - type: WallSolid - components: - - pos: -59.5,-11.5 - parent: 0 - type: Transform -- uid: 5783 - type: WallSolid - components: - - pos: -59.5,-10.5 - parent: 0 - type: Transform -- uid: 5784 - type: ReinforcedWindow - components: - - pos: -58.5,-29.5 - parent: 0 - type: Transform -- uid: 5785 - type: WallSolid - components: - - pos: -57.5,-10.5 - parent: 0 - type: Transform -- uid: 5786 - type: WallSolid - components: - - pos: -56.5,-10.5 - parent: 0 - type: Transform -- uid: 5787 - type: WallSolid - components: - - pos: -55.5,-10.5 - parent: 0 - type: Transform -- uid: 5788 - type: WallSolid - components: - - pos: -54.5,-10.5 - parent: 0 - type: Transform -- uid: 5789 - type: WallSolid - components: - - pos: -53.5,-10.5 - parent: 0 - type: Transform -- uid: 5790 - type: WallSolid - components: - - pos: -53.5,-9.5 - parent: 0 - type: Transform -- uid: 5791 - type: WallSolid - components: - - pos: -53.5,-8.5 - parent: 0 - type: Transform -- uid: 5792 - type: WallSolid - components: - - pos: -53.5,-7.5 - parent: 0 - type: Transform -- uid: 5793 - type: WallSolid - components: - - pos: -53.5,-6.5 - parent: 0 - type: Transform -- uid: 5794 - type: WallSolid - components: - - pos: -53.5,-5.5 - parent: 0 - type: Transform -- uid: 5796 - type: WallSolid - components: - - pos: -51.5,-5.5 - parent: 0 - type: Transform -- uid: 5797 - type: WallSolid - components: - - pos: -50.5,-5.5 - parent: 0 - type: Transform -- uid: 5798 - type: ReinforcedWindow - components: - - pos: -62.5,-20.5 - parent: 0 - type: Transform -- uid: 5799 - type: WallSolid - components: - - pos: -48.5,-5.5 - parent: 0 - type: Transform -- uid: 5800 - type: WallSolid - components: - - pos: -47.5,-5.5 - parent: 0 - type: Transform -- uid: 5801 - type: WallSolid - components: - - pos: -46.5,-5.5 - parent: 0 - type: Transform -- uid: 5802 - type: WallSolid - components: - - pos: -45.5,-5.5 - parent: 0 - type: Transform -- uid: 5803 - type: WallSolid - components: - - pos: -44.5,-5.5 - parent: 0 - type: Transform -- uid: 5804 - type: WallSolid - components: - - pos: -43.5,-5.5 - parent: 0 - type: Transform -- uid: 5805 - type: ReinforcedWindow - components: - - pos: -57.5,-34.5 - parent: 0 - type: Transform -- uid: 5806 - type: ReinforcedWindow - components: - - pos: -57.5,-33.5 - parent: 0 - type: Transform -- uid: 5807 - type: FirelockGlass - components: - - pos: -62.5,-9.5 - parent: 0 - type: Transform -- uid: 5808 - type: FirelockGlass - components: - - pos: -62.5,-8.5 - parent: 0 - type: Transform -- uid: 5809 - type: FirelockGlass - components: - - pos: -62.5,7.5 - parent: 0 - type: Transform -- uid: 5810 - type: FirelockGlass - components: - - pos: -62.5,8.5 - parent: 0 - type: Transform -- uid: 5811 - type: GasPipeStraight - components: - - pos: -61.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5812 - type: GasPipeStraight - components: - - pos: -61.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5813 - type: GasPipeStraight - components: - - pos: -61.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5814 - type: GasPipeStraight - components: - - pos: -61.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5815 - type: GasPipeStraight - components: - - pos: -61.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5816 - type: GasPipeStraight - components: - - pos: -61.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5817 - type: GasPipeStraight - components: - - pos: -61.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5818 - type: GasPipeStraight - components: - - pos: -60.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5819 - type: GasPipeStraight - components: - - pos: -60.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5820 - type: GasPipeStraight - components: - - pos: -60.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5821 - type: GasPipeStraight - components: - - pos: -60.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5822 - type: GasPipeStraight - components: - - pos: -60.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5823 - type: GasPipeStraight - components: - - pos: -60.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5824 - type: GasPipeStraight - components: - - pos: -60.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5825 - type: ReinforcedWindow - components: - - pos: -62.5,-21.5 - parent: 0 - type: Transform -- uid: 5826 - type: GasPipeStraight - components: - - pos: -60.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5827 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5828 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5829 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5830 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5831 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5832 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5833 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5834 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5835 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5836 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5837 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5838 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5839 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5840 - type: WallReinforced - components: - - pos: -77.5,10.5 - parent: 0 - type: Transform -- uid: 5841 - type: Carpet - components: - - pos: 8.5,46.5 - parent: 0 - type: Transform -- uid: 5842 - type: EmergencyLight - components: - - pos: 19.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 5843 - type: EmergencyLight - components: - - pos: 33.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 5844 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 5845 - type: EmergencyLight - components: - - pos: 5.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 5846 - type: EmergencyLight - components: - - pos: -14.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 5847 - type: Grille - components: - - pos: -60.5,10.5 - parent: 0 - type: Transform -- uid: 5848 - type: Grille - components: - - pos: -61.5,10.5 - parent: 0 - type: Transform -- uid: 5849 - type: Grille - components: - - pos: -62.5,10.5 - parent: 0 - type: Transform -- uid: 5850 - type: Grille - components: - - pos: -63.5,10.5 - parent: 0 - type: Transform -- uid: 5851 - type: Grille - components: - - pos: -64.5,10.5 - parent: 0 - type: Transform -- uid: 5852 - type: Grille - components: - - pos: -76.5,10.5 - parent: 0 - type: Transform -- uid: 5853 - type: Grille - components: - - pos: -75.5,10.5 - parent: 0 - type: Transform -- uid: 5854 - type: Grille - components: - - pos: -74.5,10.5 - parent: 0 - type: Transform -- uid: 5855 - type: Grille - components: - - pos: -73.5,10.5 - parent: 0 - type: Transform -- uid: 5856 - type: Grille - components: - - pos: -72.5,10.5 - parent: 0 - type: Transform -- uid: 5857 - type: Grille - components: - - pos: -70.5,10.5 - parent: 0 - type: Transform -- uid: 5858 - type: Grille - components: - - pos: -69.5,10.5 - parent: 0 - type: Transform -- uid: 5859 - type: Grille - components: - - pos: -68.5,10.5 - parent: 0 - type: Transform -- uid: 5860 - type: Grille - components: - - pos: -67.5,10.5 - parent: 0 - type: Transform -- uid: 5861 - type: Grille - components: - - pos: -66.5,10.5 - parent: 0 - type: Transform -- uid: 5862 - type: WallReinforced - components: - - pos: -71.5,10.5 - parent: 0 - type: Transform -- uid: 5863 - type: WallReinforced - components: - - pos: -65.5,10.5 - parent: 0 - type: Transform -- uid: 5864 - type: WallReinforced - components: - - pos: -59.5,10.5 - parent: 0 - type: Transform -- uid: 5865 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 5866 - type: SignSecureSmall - components: - - pos: -59.5,10.5 - parent: 0 - type: Transform -- uid: 5867 - type: SignSecureSmall - components: - - pos: -65.5,10.5 - parent: 0 - type: Transform -- uid: 5868 - type: SignSecureSmall - components: - - pos: -71.5,10.5 - parent: 0 - type: Transform -- uid: 5869 - type: SignSecureSmall - components: - - pos: -77.5,10.5 - parent: 0 - type: Transform -- uid: 5870 - type: AirlockGlass - components: - - pos: -3.5,12.5 - parent: 0 - type: Transform -- uid: 5871 - type: AirlockGlass - components: - - pos: -2.5,12.5 - parent: 0 - type: Transform -- uid: 5872 - type: AirlockGlass - components: - - pos: -1.5,12.5 - parent: 0 - type: Transform -- uid: 5873 - type: WallReinforced - components: - - pos: -52.5,7.5 - parent: 0 - type: Transform -- uid: 5874 - type: WallReinforced - components: - - pos: -51.5,7.5 - parent: 0 - type: Transform -- uid: 5875 - type: WallReinforced - components: - - pos: -50.5,7.5 - parent: 0 - type: Transform -- uid: 5876 - type: WallReinforced - components: - - pos: -49.5,7.5 - parent: 0 - type: Transform -- uid: 5877 - type: WallReinforced - components: - - pos: -49.5,6.5 - parent: 0 - type: Transform -- uid: 5878 - type: AirlockEngineeringLocked - components: - - pos: -49.5,5.5 - parent: 0 - type: Transform -- uid: 5879 - type: SignElectricalMed - components: - - pos: -49.5,6.5 - parent: 0 - type: Transform -- uid: 5880 - type: SubstationBasic - components: - - name: North Arrivals Substation - type: MetaData - - pos: -52.5,5.5 - parent: 0 - type: Transform -- uid: 5881 - type: APCBasic - components: - - pos: -52.5,4.5 - parent: 0 - type: Transform -- uid: 5882 - type: APCBasic - components: - - pos: -60.5,-6.5 - parent: 0 - type: Transform -- uid: 5883 - type: CableMV - components: - - pos: -52.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5884 - type: CableMV - components: - - pos: -51.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5885 - type: CableMV - components: - - pos: -50.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5886 - type: CableMV - components: - - pos: -49.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5887 - type: CableMV - components: - - pos: -48.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5888 - type: CableMV - components: - - pos: -47.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5889 - type: CableMV - components: - - pos: -46.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5890 - type: CableMV - components: - - pos: -52.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5891 - type: CableMV - components: - - pos: -46.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5892 - type: CableMV - components: - - pos: -46.5,3.5 - parent: 0 - type: Transform -- uid: 5893 - type: CableMV - components: - - pos: -46.5,2.5 - parent: 0 - type: Transform -- uid: 5894 - type: CableMV - components: - - pos: -46.5,1.5 - parent: 0 - type: Transform -- uid: 5895 - type: CableMV - components: - - pos: -46.5,0.5 - parent: 0 - type: Transform -- uid: 5896 - type: CableMV - components: - - pos: -46.5,-0.5 - parent: 0 - type: Transform -- uid: 5897 - type: CableMV - components: - - pos: -46.5,-1.5 - parent: 0 - type: Transform -- uid: 5898 - type: CableMV - components: - - pos: -46.5,-2.5 - parent: 0 - type: Transform -- uid: 5899 - type: CableMV - components: - - pos: -46.5,-3.5 - parent: 0 - type: Transform -- uid: 5900 - type: CableMV - components: - - pos: -46.5,-4.5 - parent: 0 - type: Transform -- uid: 5901 - type: CableMV - components: - - pos: -47.5,-4.5 - parent: 0 - type: Transform -- uid: 5902 - type: CableMV - components: - - pos: -48.5,-4.5 - parent: 0 - type: Transform -- uid: 5903 - type: CableMV - components: - - pos: -49.5,-4.5 - parent: 0 - type: Transform -- uid: 5904 - type: CableMV - components: - - pos: -50.5,-4.5 - parent: 0 - type: Transform -- uid: 5905 - type: CableMV - components: - - pos: -51.5,-4.5 - parent: 0 - type: Transform -- uid: 5906 - type: CableMV - components: - - pos: -52.5,-4.5 - parent: 0 - type: Transform -- uid: 5907 - type: CableMV - components: - - pos: -53.5,-4.5 - parent: 0 - type: Transform -- uid: 5908 - type: CableMV - components: - - pos: -54.5,-4.5 - parent: 0 - type: Transform -- uid: 5909 - type: CableMV - components: - - pos: -55.5,-4.5 - parent: 0 - type: Transform -- uid: 5910 - type: CableMV - components: - - pos: -56.5,-4.5 - parent: 0 - type: Transform -- uid: 5911 - type: CableMV - components: - - pos: -56.5,-5.5 - parent: 0 - type: Transform -- uid: 5912 - type: CableMV - components: - - pos: -56.5,-6.5 - parent: 0 - type: Transform -- uid: 5913 - type: CableMV - components: - - pos: -56.5,-7.5 - parent: 0 - type: Transform -- uid: 5914 - type: CableMV - components: - - pos: -57.5,-7.5 - parent: 0 - type: Transform -- uid: 5915 - type: CableMV - components: - - pos: -58.5,-7.5 - parent: 0 - type: Transform -- uid: 5916 - type: CableMV - components: - - pos: -59.5,-7.5 - parent: 0 - type: Transform -- uid: 5917 - type: CableMV - components: - - pos: -60.5,-7.5 - parent: 0 - type: Transform -- uid: 5918 - type: CableMV - components: - - pos: -60.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5919 - type: CableApcExtension - components: - - pos: -60.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5920 - type: CableApcExtension - components: - - pos: -60.5,-7.5 - parent: 0 - type: Transform -- uid: 5921 - type: CableApcExtension - components: - - pos: -60.5,-8.5 - parent: 0 - type: Transform -- uid: 5922 - type: CableApcExtension - components: - - pos: -60.5,-9.5 - parent: 0 - type: Transform -- uid: 5923 - type: CableApcExtension - components: - - pos: -61.5,-8.5 - parent: 0 - type: Transform -- uid: 5924 - type: CableApcExtension - components: - - pos: -62.5,-8.5 - parent: 0 - type: Transform -- uid: 5925 - type: CableApcExtension - components: - - pos: -63.5,-8.5 - parent: 0 - type: Transform -- uid: 5926 - type: CableApcExtension - components: - - pos: -64.5,-8.5 - parent: 0 - type: Transform -- uid: 5927 - type: CableApcExtension - components: - - pos: -65.5,-8.5 - parent: 0 - type: Transform -- uid: 5928 - type: CableApcExtension - components: - - pos: -66.5,-8.5 - parent: 0 - type: Transform -- uid: 5929 - type: CableApcExtension - components: - - pos: -67.5,-8.5 - parent: 0 - type: Transform -- uid: 5930 - type: CableApcExtension - components: - - pos: -68.5,-8.5 - parent: 0 - type: Transform -- uid: 5931 - type: CableApcExtension - components: - - pos: -69.5,-8.5 - parent: 0 - type: Transform -- uid: 5932 - type: CableApcExtension - components: - - pos: -70.5,-8.5 - parent: 0 - type: Transform -- uid: 5933 - type: CableApcExtension - components: - - pos: -71.5,-8.5 - parent: 0 - type: Transform -- uid: 5934 - type: CableApcExtension - components: - - pos: -72.5,-8.5 - parent: 0 - type: Transform -- uid: 5935 - type: CableApcExtension - components: - - pos: -73.5,-8.5 - parent: 0 - type: Transform -- uid: 5936 - type: CableApcExtension - components: - - pos: -74.5,-8.5 - parent: 0 - type: Transform -- uid: 5937 - type: CableApcExtension - components: - - pos: -70.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5938 - type: CableApcExtension - components: - - pos: -63.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5939 - type: CableApcExtension - components: - - pos: -60.5,-10.5 - parent: 0 - type: Transform -- uid: 5940 - type: CableApcExtension - components: - - pos: -60.5,-11.5 - parent: 0 - type: Transform -- uid: 5941 - type: CableApcExtension - components: - - pos: -60.5,-12.5 - parent: 0 - type: Transform -- uid: 5942 - type: CableApcExtension - components: - - pos: -60.5,-13.5 - parent: 0 - type: Transform -- uid: 5943 - type: CableApcExtension - components: - - pos: -60.5,-14.5 - parent: 0 - type: Transform -- uid: 5944 - type: CableApcExtension - components: - - pos: -60.5,-15.5 - parent: 0 - type: Transform -- uid: 5945 - type: CableApcExtension - components: - - pos: -60.5,-16.5 - parent: 0 - type: Transform -- uid: 5946 - type: CableApcExtension - components: - - pos: -60.5,-17.5 - parent: 0 - type: Transform -- uid: 5947 - type: CableApcExtension - components: - - pos: -60.5,-18.5 - parent: 0 - type: Transform -- uid: 5948 - type: CableApcExtension - components: - - pos: -61.5,-17.5 - parent: 0 - type: Transform -- uid: 5949 - type: CableApcExtension - components: - - pos: -62.5,-17.5 - parent: 0 - type: Transform -- uid: 5950 - type: CableApcExtension - components: - - pos: -63.5,-17.5 - parent: 0 - type: Transform -- uid: 5951 - type: CableApcExtension - components: - - pos: -64.5,-17.5 - parent: 0 - type: Transform -- uid: 5952 - type: CableApcExtension - components: - - pos: -65.5,-17.5 - parent: 0 - type: Transform -- uid: 5953 - type: CableApcExtension - components: - - pos: -66.5,-17.5 - parent: 0 - type: Transform -- uid: 5954 - type: CableApcExtension - components: - - pos: -67.5,-17.5 - parent: 0 - type: Transform -- uid: 5955 - type: CableApcExtension - components: - - pos: -68.5,-17.5 - parent: 0 - type: Transform -- uid: 5956 - type: CableApcExtension - components: - - pos: -69.5,-17.5 - parent: 0 - type: Transform -- uid: 5957 - type: CableApcExtension - components: - - pos: -70.5,-17.5 - parent: 0 - type: Transform -- uid: 5958 - type: CableApcExtension - components: - - pos: -71.5,-17.5 - parent: 0 - type: Transform -- uid: 5959 - type: CableApcExtension - components: - - pos: -72.5,-17.5 - parent: 0 - type: Transform -- uid: 5960 - type: CableApcExtension - components: - - pos: -73.5,-17.5 - parent: 0 - type: Transform -- uid: 5961 - type: CableApcExtension - components: - - pos: -74.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5962 - type: CableApcExtension - components: - - pos: -75.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5963 - type: CableApcExtension - components: - - pos: -72.5,-18.5 - parent: 0 - type: Transform -- uid: 5964 - type: CableApcExtension - components: - - pos: -72.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5965 - type: CableApcExtension - components: - - pos: -72.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5966 - type: CableApcExtension - components: - - pos: -72.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5967 - type: CableApcExtension - components: - - pos: -61.5,-13.5 - parent: 0 - type: Transform -- uid: 5968 - type: CableApcExtension - components: - - pos: -62.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5969 - type: CableApcExtension - components: - - pos: -63.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5970 - type: CableApcExtension - components: - - pos: -59.5,-8.5 - parent: 0 - type: Transform -- uid: 5971 - type: CableApcExtension - components: - - pos: -58.5,-8.5 - parent: 0 - type: Transform -- uid: 5972 - type: CableApcExtension - components: - - pos: -57.5,-8.5 - parent: 0 - type: Transform -- uid: 5973 - type: CableApcExtension - components: - - pos: -56.5,-8.5 - parent: 0 - type: Transform -- uid: 5974 - type: CableApcExtension - components: - - pos: -55.5,-8.5 - parent: 0 - type: Transform -- uid: 5975 - type: CableApcExtension - components: - - pos: -55.5,-7.5 - parent: 0 - type: Transform -- uid: 5976 - type: CableApcExtension - components: - - pos: -55.5,-6.5 - parent: 0 - type: Transform -- uid: 5977 - type: CableApcExtension - components: - - pos: -55.5,-5.5 - parent: 0 - type: Transform -- uid: 5978 - type: CableApcExtension - components: - - pos: -55.5,-4.5 - parent: 0 - type: Transform -- uid: 5979 - type: CableApcExtension - components: - - pos: -55.5,-3.5 - parent: 0 - type: Transform -- uid: 5980 - type: CableApcExtension - components: - - pos: -54.5,-4.5 - parent: 0 - type: Transform -- uid: 5981 - type: CableApcExtension - components: - - pos: -53.5,-4.5 - parent: 0 - type: Transform -- uid: 5982 - type: CableApcExtension - components: - - pos: -52.5,-4.5 - parent: 0 - type: Transform -- uid: 5983 - type: CableApcExtension - components: - - pos: -51.5,-4.5 - parent: 0 - type: Transform -- uid: 5984 - type: CableApcExtension - components: - - pos: -52.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5985 - type: CableApcExtension - components: - - pos: -52.5,3.5 - parent: 0 - type: Transform -- uid: 5986 - type: CableApcExtension - components: - - pos: -52.5,2.5 - parent: 0 - type: Transform -- uid: 5987 - type: CableApcExtension - components: - - pos: -51.5,2.5 - parent: 0 - type: Transform -- uid: 5988 - type: CableApcExtension - components: - - pos: -50.5,2.5 - parent: 0 - type: Transform -- uid: 5989 - type: CableApcExtension - components: - - pos: -49.5,2.5 - parent: 0 - type: Transform -- uid: 5990 - type: CableApcExtension - components: - - pos: -48.5,2.5 - parent: 0 - type: Transform -- uid: 5991 - type: CableApcExtension - components: - - pos: -47.5,2.5 - parent: 0 - type: Transform -- uid: 5992 - type: CableApcExtension - components: - - pos: -46.5,2.5 - parent: 0 - type: Transform -- uid: 5993 - type: CableApcExtension - components: - - pos: -45.5,2.5 - parent: 0 - type: Transform -- uid: 5994 - type: CableApcExtension - components: - - pos: -44.5,2.5 - parent: 0 - type: Transform -- uid: 5995 - type: CableApcExtension - components: - - pos: -45.5,1.5 - parent: 0 - type: Transform -- uid: 5996 - type: CableApcExtension - components: - - pos: -45.5,0.5 - parent: 0 - type: Transform -- uid: 5997 - type: CableApcExtension - components: - - pos: -45.5,-0.5 - parent: 0 - type: Transform -- uid: 5998 - type: CableApcExtension - components: - - pos: -45.5,-1.5 - parent: 0 - type: Transform -- uid: 5999 - type: CableApcExtension - components: - - pos: -45.5,-2.5 - parent: 0 - type: Transform -- uid: 6000 - type: CableApcExtension - components: - - pos: -50.5,1.5 - parent: 0 - type: Transform -- uid: 6001 - type: CableApcExtension - components: - - pos: -50.5,0.5 - parent: 0 - type: Transform -- uid: 6002 - type: CableApcExtension - components: - - pos: -50.5,-0.5 - parent: 0 - type: Transform -- uid: 6003 - type: CableApcExtension - components: - - pos: -53.5,3.5 - parent: 0 - type: Transform -- uid: 6004 - type: CableApcExtension - components: - - pos: -54.5,3.5 - parent: 0 - type: Transform -- uid: 6005 - type: CableApcExtension - components: - - pos: -55.5,3.5 - parent: 0 - type: Transform -- uid: 6006 - type: CableApcExtension - components: - - pos: -55.5,2.5 - parent: 0 - type: Transform -- uid: 6007 - type: CableApcExtension - components: - - pos: -55.5,1.5 - parent: 0 - type: Transform -- uid: 6008 - type: CableApcExtension - components: - - pos: -55.5,0.5 - parent: 0 - type: Transform -- uid: 6009 - type: CableApcExtension - components: - - pos: -55.5,-0.5 - parent: 0 - type: Transform -- uid: 6010 - type: CableApcExtension - components: - - pos: -55.5,4.5 - parent: 0 - type: Transform -- uid: 6011 - type: CableApcExtension - components: - - pos: -55.5,5.5 - parent: 0 - type: Transform -- uid: 6012 - type: CableApcExtension - components: - - pos: -55.5,6.5 - parent: 0 - type: Transform -- uid: 6013 - type: CableApcExtension - components: - - pos: -55.5,7.5 - parent: 0 - type: Transform -- uid: 6014 - type: CableApcExtension - components: - - pos: -56.5,7.5 - parent: 0 - type: Transform -- uid: 6015 - type: CableApcExtension - components: - - pos: -57.5,7.5 - parent: 0 - type: Transform -- uid: 6016 - type: CableApcExtension - components: - - pos: -58.5,7.5 - parent: 0 - type: Transform -- uid: 6017 - type: CableApcExtension - components: - - pos: -59.5,7.5 - parent: 0 - type: Transform -- uid: 6018 - type: CableApcExtension - components: - - pos: -60.5,7.5 - parent: 0 - type: Transform -- uid: 6019 - type: CableApcExtension - components: - - pos: -61.5,7.5 - parent: 0 - type: Transform -- uid: 6020 - type: CableApcExtension - components: - - pos: -62.5,7.5 - parent: 0 - type: Transform -- uid: 6021 - type: CableApcExtension - components: - - pos: -63.5,7.5 - parent: 0 - type: Transform -- uid: 6022 - type: CableApcExtension - components: - - pos: -64.5,7.5 - parent: 0 - type: Transform -- uid: 6023 - type: CableApcExtension - components: - - pos: -65.5,7.5 - parent: 0 - type: Transform -- uid: 6024 - type: CableApcExtension - components: - - pos: -66.5,7.5 - parent: 0 - type: Transform -- uid: 6025 - type: CableApcExtension - components: - - pos: -67.5,7.5 - parent: 0 - type: Transform -- uid: 6026 - type: CableApcExtension - components: - - pos: -68.5,7.5 - parent: 0 - type: Transform -- uid: 6027 - type: CableApcExtension - components: - - pos: -69.5,7.5 - parent: 0 - type: Transform -- uid: 6028 - type: CableApcExtension - components: - - pos: -70.5,7.5 - parent: 0 - type: Transform -- uid: 6029 - type: CableApcExtension - components: - - pos: -71.5,7.5 - parent: 0 - type: Transform -- uid: 6030 - type: CableApcExtension - components: - - pos: -72.5,7.5 - parent: 0 - type: Transform -- uid: 6031 - type: CableApcExtension - components: - - pos: -73.5,7.5 - parent: 0 - type: Transform -- uid: 6032 - type: CableApcExtension - components: - - pos: -74.5,7.5 - parent: 0 - type: Transform -- uid: 6033 - type: CableApcExtension - components: - - pos: -74.5,8.5 - parent: 0 - type: Transform -- uid: 6034 - type: CableApcExtension - components: - - pos: -75.5,8.5 - parent: 0 - type: Transform -- uid: 6035 - type: CableApcExtension - components: - - pos: -76.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6036 - type: CableApcExtension - components: - - pos: -77.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6037 - type: CableApcExtension - components: - - pos: -70.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6038 - type: CableApcExtension - components: - - pos: -63.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6039 - type: CableApcExtension - components: - - pos: -67.5,6.5 - parent: 0 - type: Transform -- uid: 6040 - type: CableApcExtension - components: - - pos: -66.5,-7.5 - parent: 0 - type: Transform -- uid: 6041 - type: CableApcExtension - components: - - pos: -44.5,-0.5 - parent: 0 - type: Transform -- uid: 6042 - type: CableApcExtension - components: - - pos: -43.5,-0.5 - parent: 0 - type: Transform -- uid: 6043 - type: CableApcExtension - components: - - pos: -42.5,-0.5 - parent: 0 - type: Transform -- uid: 6044 - type: CableApcExtension - components: - - pos: -41.5,-0.5 - parent: 0 - type: Transform -- uid: 6045 - type: CableApcExtension - components: - - pos: -40.5,-0.5 - parent: 0 - type: Transform -- uid: 6046 - type: CableApcExtension - components: - - pos: -39.5,-0.5 - parent: 0 - type: Transform -- uid: 6047 - type: CableApcExtension - components: - - pos: -38.5,-0.5 - parent: 0 - type: Transform -- uid: 6048 - type: CableApcExtension - components: - - pos: -37.5,-0.5 - parent: 0 - type: Transform -- uid: 6049 - type: ClosetEmergencyFilledRandom - components: - - pos: -40.5,-2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6050 - type: ClosetEmergencyFilledRandom - components: - - pos: -41.5,-2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6051 - type: ClosetFireFilled - components: - - pos: -42.5,-2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6052 - type: CableHV - components: - - pos: -11.5,-7.5 - parent: 0 - type: Transform -- uid: 6053 - type: CableHV - components: - - pos: -12.5,-7.5 - parent: 0 - type: Transform -- uid: 6054 - type: CableHV - components: - - pos: -13.5,-7.5 - parent: 0 - type: Transform -- uid: 6055 - type: CableHV - components: - - pos: -14.5,-7.5 - parent: 0 - type: Transform -- uid: 6056 - type: CableHV - components: - - pos: -15.5,-7.5 - parent: 0 - type: Transform -- uid: 6057 - type: CableHV - components: - - pos: -16.5,-7.5 - parent: 0 - type: Transform -- uid: 6058 - type: CableHV - components: - - pos: -17.5,-7.5 - parent: 0 - type: Transform -- uid: 6059 - type: CableHV - components: - - pos: -18.5,-7.5 - parent: 0 - type: Transform -- uid: 6060 - type: CableHV - components: - - pos: -19.5,-7.5 - parent: 0 - type: Transform -- uid: 6061 - type: CableHV - components: - - pos: -20.5,-7.5 - parent: 0 - type: Transform -- uid: 6062 - type: CableHV - components: - - pos: -21.5,-7.5 - parent: 0 - type: Transform -- uid: 6063 - type: CableHV - components: - - pos: -22.5,-7.5 - parent: 0 - type: Transform -- uid: 6064 - type: CableHV - components: - - pos: -22.5,-6.5 - parent: 0 - type: Transform -- uid: 6065 - type: CableHV - components: - - pos: -22.5,-5.5 - parent: 0 - type: Transform -- uid: 6066 - type: CableHV - components: - - pos: -22.5,-4.5 - parent: 0 - type: Transform -- uid: 6067 - type: CableHV - components: - - pos: -22.5,-3.5 - parent: 0 - type: Transform -- uid: 6068 - type: CableHV - components: - - pos: -22.5,-2.5 - parent: 0 - type: Transform -- uid: 6069 - type: CableHV - components: - - pos: -22.5,-1.5 - parent: 0 - type: Transform -- uid: 6070 - type: CableHV - components: - - pos: -22.5,-0.5 - parent: 0 - type: Transform -- uid: 6071 - type: CableHV - components: - - pos: -22.5,0.5 - parent: 0 - type: Transform -- uid: 6072 - type: CableHV - components: - - pos: -23.5,0.5 - parent: 0 - type: Transform -- uid: 6073 - type: CableHV - components: - - pos: -24.5,0.5 - parent: 0 - type: Transform -- uid: 6074 - type: CableHV - components: - - pos: -25.5,0.5 - parent: 0 - type: Transform -- uid: 6075 - type: CableHV - components: - - pos: -26.5,0.5 - parent: 0 - type: Transform -- uid: 6076 - type: CableHV - components: - - pos: -27.5,0.5 - parent: 0 - type: Transform -- uid: 6077 - type: CableHV - components: - - pos: -28.5,0.5 - parent: 0 - type: Transform -- uid: 6078 - type: CableHV - components: - - pos: -29.5,0.5 - parent: 0 - type: Transform -- uid: 6079 - type: CableHV - components: - - pos: -30.5,0.5 - parent: 0 - type: Transform -- uid: 6080 - type: CableHV - components: - - pos: -31.5,0.5 - parent: 0 - type: Transform -- uid: 6081 - type: CableHV - components: - - pos: -32.5,0.5 - parent: 0 - type: Transform -- uid: 6082 - type: CableHV - components: - - pos: -33.5,0.5 - parent: 0 - type: Transform -- uid: 6083 - type: CableHV - components: - - pos: -34.5,0.5 - parent: 0 - type: Transform -- uid: 6084 - type: CableHV - components: - - pos: -35.5,0.5 - parent: 0 - type: Transform -- uid: 6085 - type: CableHV - components: - - pos: -36.5,0.5 - parent: 0 - type: Transform -- uid: 6086 - type: CableHV - components: - - pos: -37.5,0.5 - parent: 0 - type: Transform -- uid: 6087 - type: CableHV - components: - - pos: -38.5,0.5 - parent: 0 - type: Transform -- uid: 6088 - type: CableHV - components: - - pos: -39.5,0.5 - parent: 0 - type: Transform -- uid: 6089 - type: CableHV - components: - - pos: -40.5,0.5 - parent: 0 - type: Transform -- uid: 6090 - type: CableHV - components: - - pos: -41.5,0.5 - parent: 0 - type: Transform -- uid: 6091 - type: CableHV - components: - - pos: -42.5,0.5 - parent: 0 - type: Transform -- uid: 6092 - type: CableHV - components: - - pos: -43.5,0.5 - parent: 0 - type: Transform -- uid: 6093 - type: CableHV - components: - - pos: -44.5,0.5 - parent: 0 - type: Transform -- uid: 6094 - type: CableHV - components: - - pos: -44.5,1.5 - parent: 0 - type: Transform -- uid: 6095 - type: CableHV - components: - - pos: -44.5,2.5 - parent: 0 - type: Transform -- uid: 6096 - type: CableHV - components: - - pos: -44.5,3.5 - parent: 0 - type: Transform -- uid: 6097 - type: CableHV - components: - - pos: -45.5,3.5 - parent: 0 - type: Transform -- uid: 6098 - type: CableHV - components: - - pos: -46.5,3.5 - parent: 0 - type: Transform -- uid: 6099 - type: CableHV - components: - - pos: -46.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6100 - type: CableHV - components: - - pos: -46.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6101 - type: CableHV - components: - - pos: -47.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6102 - type: CableHV - components: - - pos: -48.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6103 - type: CableHV - components: - - pos: -49.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6104 - type: CableHV - components: - - pos: -50.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6105 - type: CableHV - components: - - pos: -51.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6106 - type: CableHV - components: - - pos: -52.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6107 - type: CableHV - components: - - pos: -46.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6108 - type: CableHV - components: - - pos: -46.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6109 - type: CableHV - components: - - pos: -46.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6110 - type: CableHV - components: - - pos: -45.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6111 - type: CableHV - components: - - pos: -44.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6112 - type: CableHV - components: - - pos: -43.5,8.5 - parent: 0 - type: Transform -- uid: 6113 - type: CableHV - components: - - pos: -42.5,8.5 - parent: 0 - type: Transform -- uid: 6114 - type: CableHV - components: - - pos: -41.5,8.5 - parent: 0 - type: Transform -- uid: 6115 - type: CableHV - components: - - pos: -40.5,8.5 - parent: 0 - type: Transform -- uid: 6116 - type: CableHV - components: - - pos: -39.5,8.5 - parent: 0 - type: Transform -- uid: 6117 - type: CableHV - components: - - pos: -38.5,8.5 - parent: 0 - type: Transform -- uid: 6118 - type: CableHV - components: - - pos: -37.5,8.5 - parent: 0 - type: Transform -- uid: 6119 - type: CableHV - components: - - pos: -36.5,8.5 - parent: 0 - type: Transform -- uid: 6120 - type: CableHV - components: - - pos: -36.5,9.5 - parent: 0 - type: Transform -- uid: 6121 - type: CableHV - components: - - pos: -36.5,10.5 - parent: 0 - type: Transform -- uid: 6122 - type: CableHV - components: - - pos: -36.5,11.5 - parent: 0 - type: Transform -- uid: 6123 - type: CableHV - components: - - pos: -36.5,12.5 - parent: 0 - type: Transform -- uid: 6124 - type: CableHV - components: - - pos: -36.5,13.5 - parent: 0 - type: Transform -- uid: 6125 - type: CableHV - components: - - pos: -36.5,14.5 - parent: 0 - type: Transform -- uid: 6126 - type: CableHV - components: - - pos: -36.5,15.5 - parent: 0 - type: Transform -- uid: 6127 - type: CableHV - components: - - pos: -36.5,16.5 - parent: 0 - type: Transform -- uid: 6128 - type: CableHV - components: - - pos: -36.5,17.5 - parent: 0 - type: Transform -- uid: 6129 - type: CableHV - components: - - pos: -36.5,18.5 - parent: 0 - type: Transform -- uid: 6130 - type: CableHV - components: - - pos: -36.5,19.5 - parent: 0 - type: Transform -- uid: 6131 - type: CableHV - components: - - pos: -36.5,20.5 - parent: 0 - type: Transform -- uid: 6132 - type: CableHV - components: - - pos: -36.5,21.5 - parent: 0 - type: Transform -- uid: 6133 - type: CableHV - components: - - pos: -36.5,22.5 - parent: 0 - type: Transform -- uid: 6134 - type: CableHV - components: - - pos: -35.5,22.5 - parent: 0 - type: Transform -- uid: 6135 - type: CableHV - components: - - pos: -34.5,22.5 - parent: 0 - type: Transform -- uid: 6136 - type: CableHV - components: - - pos: -33.5,22.5 - parent: 0 - type: Transform -- uid: 6137 - type: CableHV - components: - - pos: -32.5,22.5 - parent: 0 - type: Transform -- uid: 6138 - type: CableHV - components: - - pos: -32.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6139 - type: CableHV - components: - - pos: -33.5,19.5 - parent: 0 - type: Transform -- uid: 6140 - type: CableHV - components: - - pos: -34.5,19.5 - parent: 0 - type: Transform -- uid: 6141 - type: CableHV - components: - - pos: -35.5,19.5 - parent: 0 - type: Transform -- uid: 6142 - type: CableHV - components: - - pos: -26.5,1.5 - parent: 0 - type: Transform -- uid: 6143 - type: CableHV - components: - - pos: -26.5,2.5 - parent: 0 - type: Transform -- uid: 6144 - type: CableHV - components: - - pos: -26.5,3.5 - parent: 0 - type: Transform -- uid: 6145 - type: CableHV - components: - - pos: -26.5,4.5 - parent: 0 - type: Transform -- uid: 6146 - type: CableHV - components: - - pos: -26.5,5.5 - parent: 0 - type: Transform -- uid: 6147 - type: CableHV - components: - - pos: -26.5,6.5 - parent: 0 - type: Transform -- uid: 6148 - type: CableHV - components: - - pos: -26.5,7.5 - parent: 0 - type: Transform -- uid: 6149 - type: CableHV - components: - - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 6150 - type: CableHV - components: - - pos: -25.5,8.5 - parent: 0 - type: Transform -- uid: 6151 - type: CableHV - components: - - pos: -25.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6152 - type: ClosetEmergencyFilledRandom - components: - - pos: -66.5,-6.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6153 - type: ClosetEmergencyFilledRandom - components: - - pos: -68.5,5.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6154 - type: ClosetEmergencyFilledRandom - components: - - pos: -67.5,5.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6155 - type: ClosetFireFilled - components: - - pos: -65.5,-6.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6156 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -68.5,-6.5 - parent: 0 - type: Transform -- uid: 6157 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -65.5,5.5 - parent: 0 - type: Transform -- uid: 6158 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -66.5,5.5 - parent: 0 - type: Transform -- uid: 6159 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -75.5,7.5 - parent: 0 - type: Transform -- uid: 6160 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -73.5,7.5 - parent: 0 - type: Transform -- uid: 6161 - type: Table - components: - - pos: -74.5,7.5 - parent: 0 - type: Transform -- uid: 6162 - type: ChessBoard - components: - - pos: -74.509964,7.5926437 - parent: 0 - type: Transform -- uid: 6163 - type: ClothingHeadHelmetTemplar - components: - - pos: -75.46309,7.4988937 - parent: 0 - type: Transform -- uid: 6164 - type: Chair - components: - - pos: -71.5,-8.5 - parent: 0 - type: Transform -- uid: 6165 - type: Chair - components: - - pos: -72.5,-8.5 - parent: 0 - type: Transform -- uid: 6166 - type: Chair - components: - - pos: -73.5,-8.5 - parent: 0 - type: Transform -- uid: 6167 - type: PottedPlantRandom - components: - - pos: -75.5,-8.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 6168 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6169 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6170 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6171 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6172 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6173 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -72.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6174 - type: Poweredlight - components: - - pos: -60.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6175 - type: Poweredlight - components: - - pos: -72.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6176 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -60.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6177 - type: Poweredlight - components: - - pos: -63.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6178 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6179 - type: PoweredSmallLight - components: - - pos: -77.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6180 - type: PoweredSmallLight - components: - - pos: -63.5,-13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6181 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -72.5,-20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6182 - type: PoweredSmallLight - components: - - pos: -75.5,-17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6183 - type: SignSpace - components: - - pos: -73.5,-16.5 - parent: 0 - type: Transform -- uid: 6184 - type: SignSpace - components: - - pos: -73.5,-7.5 - parent: 0 - type: Transform -- uid: 6185 - type: SignSecureMed - components: - - pos: -72.5,-10.5 - parent: 0 - type: Transform -- uid: 6186 - type: SignSecureMed - components: - - pos: -71.5,-16.5 - parent: 0 - type: Transform -- uid: 6187 - type: SignSecureMed - components: - - pos: -74.5,-7.5 - parent: 0 - type: Transform -- uid: 6188 - type: SignSecureMed - components: - - pos: -74.5,6.5 - parent: 0 - type: Transform -- uid: 6189 - type: SignSpace - components: - - pos: -57.5,-6.5 - parent: 0 - type: Transform -- uid: 6190 - type: SignSpace - components: - - pos: -57.5,5.5 - parent: 0 - type: Transform -- uid: 6191 - type: Girder - components: - - pos: -48.5,7.5 - parent: 0 - type: Transform -- uid: 6192 - type: GrilleBroken - components: - - pos: -47.5,7.5 - parent: 0 - type: Transform -- uid: 6193 - type: Catwalk - components: - - pos: -48.5,5.5 - parent: 0 - type: Transform -- uid: 6194 - type: Catwalk - components: - - pos: -47.5,5.5 - parent: 0 - type: Transform -- uid: 6195 - type: Catwalk - components: - - pos: -46.5,6.5 - parent: 0 - type: Transform -- uid: 6196 - type: Catwalk - components: - - pos: -46.5,7.5 - parent: 0 - type: Transform -- uid: 6197 - type: PottedPlantRandom - components: - - pos: 2.5,11.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 6198 - type: ExtinguisherCabinetFilled - components: - - pos: 3.5,11.5 - parent: 0 - type: Transform -- uid: 6199 - type: LockerElectricalSuppliesFilled - components: - - pos: -52.5,6.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6200 - type: CrateEngineeringCableMV - components: - - pos: -50.5,6.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 6201 - type: Chair - components: - - pos: -51.5,6.5 - parent: 0 - type: Transform -- uid: 6202 - type: Poweredlight - components: - - pos: -55.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6203 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -55.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6204 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -45.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6205 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -51.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6206 - type: PoweredSmallLight - components: - - pos: -47.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6207 - type: Rack - components: - - pos: -45.5,5.5 - parent: 0 - type: Transform -- uid: 6208 - type: MaintenanceFluffSpawner - components: - - pos: -45.5,5.5 - parent: 0 - type: Transform -- uid: 6209 - type: CableApcExtension - components: - - pos: 31.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6210 - type: ComfyChair - components: - - pos: -9.5,-10.5 - parent: 0 - type: Transform -- uid: 6211 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -75.5,-9.5 - parent: 0 - type: Transform -- uid: 6212 - type: WallReinforced - components: - - pos: 3.5,22.5 - parent: 0 - type: Transform -- uid: 6213 - type: TintedWindow - components: - - pos: 7.5,11.5 - parent: 0 - type: Transform -- uid: 6214 - type: TintedWindow - components: - - pos: 5.5,11.5 - parent: 0 - type: Transform -- uid: 6215 - type: TintedWindow - components: - - pos: -0.5,15.5 - parent: 0 - type: Transform -- uid: 6216 - type: TintedWindow - components: - - pos: 9.5,15.5 - parent: 0 - type: Transform -- uid: 6217 - type: AirlockGlass - components: - - pos: -0.5,14.5 - parent: 0 - type: Transform -- uid: 6218 - type: ReinforcedWindow - components: - - pos: 7.5,16.5 - parent: 0 - type: Transform -- uid: 6219 - type: ReinforcedWindow - components: - - pos: 6.5,16.5 - parent: 0 - type: Transform -- uid: 6220 - type: ReinforcedWindow - components: - - pos: 5.5,16.5 - parent: 0 - type: Transform -- uid: 6221 - type: ReinforcedWindow - components: - - pos: 3.5,16.5 - parent: 0 - type: Transform -- uid: 6222 - type: ReinforcedWindow - components: - - pos: 2.5,16.5 - parent: 0 - type: Transform -- uid: 6223 - type: ReinforcedWindow - components: - - pos: 1.5,16.5 - parent: 0 - type: Transform -- uid: 6224 - type: WallReinforced - components: - - pos: 3.5,23.5 - parent: 0 - type: Transform -- uid: 6225 - type: WallReinforced - components: - - pos: 3.5,24.5 - parent: 0 - type: Transform -- uid: 6226 - type: WallReinforced - components: - - pos: 3.5,25.5 - parent: 0 - type: Transform -- uid: 6227 - type: WallReinforced - components: - - pos: 9.5,29.5 - parent: 0 - type: Transform -- uid: 6228 - type: WallSolid - components: - - pos: 8.5,24.5 - parent: 0 - type: Transform -- uid: 6229 - type: WallSolid - components: - - pos: 8.5,23.5 - parent: 0 - type: Transform -- uid: 6230 - type: ReinforcedWindow - components: - - pos: 7.5,25.5 - parent: 0 - type: Transform -- uid: 6231 - type: ReinforcedWindow - components: - - pos: 5.5,25.5 - parent: 0 - type: Transform -- uid: 6232 - type: ReinforcedWindow - components: - - pos: 5.5,29.5 - parent: 0 - type: Transform -- uid: 6233 - type: ReinforcedWindow - components: - - pos: 3.5,27.5 - parent: 0 - type: Transform -- uid: 6234 - type: ReinforcedWindow - components: - - pos: 3.5,28.5 - parent: 0 - type: Transform -- uid: 6235 - type: ReinforcedWindow - components: - - pos: 4.5,29.5 - parent: 0 - type: Transform -- uid: 6236 - type: ReinforcedWindow - components: - - pos: 7.5,29.5 - parent: 0 - type: Transform -- uid: 6237 - type: ReinforcedWindow - components: - - pos: 8.5,29.5 - parent: 0 - type: Transform -- uid: 6238 - type: ReinforcedWindow - components: - - pos: -1.5,32.5 - parent: 0 - type: Transform -- uid: 6239 - type: ReinforcedWindow - components: - - pos: -3.5,32.5 - parent: 0 - type: Transform -- uid: 6240 - type: ReinforcedWindow - components: - - pos: -0.5,30.5 - parent: 0 - type: Transform -- uid: 6241 - type: ReinforcedWindow - components: - - pos: -5.5,30.5 - parent: 0 - type: Transform -- uid: 6242 - type: ReinforcedWindow - components: - - pos: -5.5,31.5 - parent: 0 - type: Transform -- uid: 6243 - type: Grille - components: - - pos: -13.5,26.5 - parent: 0 - type: Transform -- uid: 6244 - type: Grille - components: - - pos: -12.5,26.5 - parent: 0 - type: Transform -- uid: 6245 - type: ReinforcedWindow - components: - - pos: -0.5,27.5 - parent: 0 - type: Transform -- uid: 6246 - type: ReinforcedWindow - components: - - pos: -0.5,28.5 - parent: 0 - type: Transform -- uid: 6247 - type: ReinforcedWindow - components: - - pos: 1.5,26.5 - parent: 0 - type: Transform -- uid: 6248 - type: WallReinforced - components: - - pos: -0.5,32.5 - parent: 0 - type: Transform -- uid: 6249 - type: ReinforcedWindow - components: - - pos: 1.5,29.5 - parent: 0 - type: Transform -- uid: 6250 - type: ShuttersNormalOpen - components: - - pos: -3.5,26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7750 - type: SignalReceiver -- uid: 6251 - type: ShuttersNormalOpen - components: - - pos: -1.5,26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7750 - type: SignalReceiver -- uid: 6252 - type: Grille - components: - - pos: -9.5,26.5 - parent: 0 - type: Transform -- uid: 6253 - type: Grille - components: - - pos: -11.5,28.5 - parent: 0 - type: Transform -- uid: 6254 - type: ReinforcedWindow - components: - - pos: -7.5,29.5 - parent: 0 - type: Transform -- uid: 6255 - type: Grille - components: - - pos: -6.5,26.5 - parent: 0 - type: Transform -- uid: 6256 - type: Grille - components: - - pos: -8.5,28.5 - parent: 0 - type: Transform -- uid: 6257 - type: ReinforcedWindow - components: - - pos: -10.5,29.5 - parent: 0 - type: Transform -- uid: 6258 - type: ReinforcedWindow - components: - - pos: -13.5,29.5 - parent: 0 - type: Transform -- uid: 6259 - type: ShuttersNormalOpen - components: - - pos: -12.5,26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7750 - type: SignalReceiver -- uid: 6260 - type: ShuttersNormalOpen - components: - - pos: -9.5,26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7750 - type: SignalReceiver -- uid: 6261 - type: ShuttersNormalOpen - components: - - pos: -7.5,26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7750 - type: SignalReceiver -- uid: 6262 - type: CableMV - components: - - pos: -11.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6263 - type: CableMV - components: - - pos: -8.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6264 - type: CableMV - components: - - pos: 9.5,48.5 - parent: 0 - type: Transform -- uid: 6265 - type: WallReinforced - components: - - pos: -0.5,29.5 - parent: 0 - type: Transform -- uid: 6266 - type: WallReinforced - components: - - pos: -0.5,26.5 - parent: 0 - type: Transform -- uid: 6267 - type: WallReinforced - components: - - pos: -4.5,26.5 - parent: 0 - type: Transform -- uid: 6268 - type: WallReinforced - components: - - pos: -5.5,26.5 - parent: 0 - type: Transform -- uid: 6269 - type: WallReinforced - components: - - pos: -8.5,26.5 - parent: 0 - type: Transform -- uid: 6270 - type: WallSolid - components: - - pos: -11.5,29.5 - parent: 0 - type: Transform -- uid: 6271 - type: WallSolid - components: - - pos: -8.5,29.5 - parent: 0 - type: Transform -- uid: 6272 - type: WallReinforced - components: - - pos: -11.5,26.5 - parent: 0 - type: Transform -- uid: 6273 - type: WallReinforced - components: - - pos: -14.5,26.5 - parent: 0 - type: Transform -- uid: 6274 - type: WallReinforced - components: - - pos: -14.5,27.5 - parent: 0 - type: Transform -- uid: 6275 - type: WallReinforced - components: - - pos: -14.5,28.5 - parent: 0 - type: Transform -- uid: 6276 - type: WallReinforced - components: - - pos: -14.5,29.5 - parent: 0 - type: Transform -- uid: 6277 - type: WallReinforced - components: - - pos: -5.5,29.5 - parent: 0 - type: Transform -- uid: 6278 - type: WallReinforced - components: - - pos: -4.5,32.5 - parent: 0 - type: Transform -- uid: 6279 - type: WallReinforced - components: - - pos: -5.5,32.5 - parent: 0 - type: Transform -- uid: 6280 - type: WallSolid - components: - - pos: -9.5,32.5 - parent: 0 - type: Transform -- uid: 6281 - type: ReinforcedWindow - components: - - pos: -8.5,32.5 - parent: 0 - type: Transform -- uid: 6282 - type: WallReinforced - components: - - pos: 3.5,26.5 - parent: 0 - type: Transform -- uid: 6283 - type: WallReinforced - components: - - pos: 4.5,25.5 - parent: 0 - type: Transform -- uid: 6284 - type: WallReinforced - components: - - pos: 3.5,29.5 - parent: 0 - type: Transform -- uid: 6285 - type: WallReinforced - components: - - pos: 9.5,28.5 - parent: 0 - type: Transform -- uid: 6286 - type: WallReinforced - components: - - pos: 9.5,27.5 - parent: 0 - type: Transform -- uid: 6287 - type: WallReinforced - components: - - pos: 9.5,26.5 - parent: 0 - type: Transform -- uid: 6288 - type: WallReinforced - components: - - pos: 8.5,26.5 - parent: 0 - type: Transform -- uid: 6289 - type: WallReinforced - components: - - pos: 8.5,25.5 - parent: 0 - type: Transform -- uid: 6290 - type: WallSolid - components: - - pos: 14.5,16.5 - parent: 0 - type: Transform -- uid: 6291 - type: WallSolid - components: - - pos: 15.5,16.5 - parent: 0 - type: Transform -- uid: 6292 - type: WallSolid - components: - - pos: 15.5,17.5 - parent: 0 - type: Transform -- uid: 6293 - type: WallSolid - components: - - pos: 15.5,18.5 - parent: 0 - type: Transform -- uid: 6294 - type: WallSolid - components: - - pos: 15.5,19.5 - parent: 0 - type: Transform -- uid: 6295 - type: WallSolid - components: - - pos: 15.5,20.5 - parent: 0 - type: Transform -- uid: 6296 - type: WallSolid - components: - - pos: 15.5,21.5 - parent: 0 - type: Transform -- uid: 6297 - type: WallSolid - components: - - pos: 15.5,22.5 - parent: 0 - type: Transform -- uid: 6298 - type: WallSolid - components: - - pos: 13.5,22.5 - parent: 0 - type: Transform -- uid: 6299 - type: WallSolid - components: - - pos: 12.5,22.5 - parent: 0 - type: Transform -- uid: 6300 - type: WallSolid - components: - - pos: 11.5,22.5 - parent: 0 - type: Transform -- uid: 6301 - type: WallSolid - components: - - pos: 10.5,22.5 - parent: 0 - type: Transform -- uid: 6302 - type: WallSolid - components: - - pos: 12.5,23.5 - parent: 0 - type: Transform -- uid: 6303 - type: WallSolid - components: - - pos: 12.5,24.5 - parent: 0 - type: Transform -- uid: 6304 - type: WallSolid - components: - - pos: 14.5,24.5 - parent: 0 - type: Transform -- uid: 6305 - type: WallSolid - components: - - pos: 15.5,24.5 - parent: 0 - type: Transform -- uid: 6306 - type: WallSolid - components: - - pos: 15.5,25.5 - parent: 0 - type: Transform -- uid: 6307 - type: WallSolid - components: - - pos: 15.5,26.5 - parent: 0 - type: Transform -- uid: 6308 - type: WallSolid - components: - - pos: 15.5,27.5 - parent: 0 - type: Transform -- uid: 6309 - type: WallSolid - components: - - pos: 15.5,28.5 - parent: 0 - type: Transform -- uid: 6310 - type: WallReinforced - components: - - pos: 13.5,29.5 - parent: 0 - type: Transform -- uid: 6311 - type: WallReinforced - components: - - pos: 14.5,29.5 - parent: 0 - type: Transform -- uid: 6312 - type: WallReinforced - components: - - pos: 14.5,30.5 - parent: 0 - type: Transform -- uid: 6313 - type: WallReinforced - components: - - pos: 14.5,32.5 - parent: 0 - type: Transform -- uid: 6314 - type: WallReinforced - components: - - pos: 14.5,33.5 - parent: 0 - type: Transform -- uid: 6315 - type: WallReinforced - components: - - pos: 15.5,33.5 - parent: 0 - type: Transform -- uid: 6316 - type: WallReinforced - components: - - pos: 19.5,33.5 - parent: 0 - type: Transform -- uid: 6317 - type: WallReinforced - components: - - pos: 20.5,33.5 - parent: 0 - type: Transform -- uid: 6318 - type: WallReinforced - components: - - pos: 20.5,32.5 - parent: 0 - type: Transform -- uid: 6319 - type: WallReinforced - components: - - pos: 20.5,31.5 - parent: 0 - type: Transform -- uid: 6320 - type: WallReinforced - components: - - pos: 20.5,30.5 - parent: 0 - type: Transform -- uid: 6321 - type: WallReinforced - components: - - pos: 20.5,29.5 - parent: 0 - type: Transform -- uid: 6322 - type: WallReinforced - components: - - pos: 19.5,29.5 - parent: 0 - type: Transform -- uid: 6323 - type: WallReinforced - components: - - pos: 18.5,29.5 - parent: 0 - type: Transform -- uid: 6324 - type: WallReinforced - components: - - pos: 17.5,29.5 - parent: 0 - type: Transform -- uid: 6325 - type: WallReinforced - components: - - pos: 16.5,29.5 - parent: 0 - type: Transform -- uid: 6326 - type: WallReinforced - components: - - pos: 15.5,29.5 - parent: 0 - type: Transform -- uid: 6327 - type: WallReinforced - components: - - pos: 20.5,34.5 - parent: 0 - type: Transform -- uid: 6328 - type: WallReinforced - components: - - pos: 20.5,35.5 - parent: 0 - type: Transform -- uid: 6329 - type: WallReinforced - components: - - pos: 20.5,36.5 - parent: 0 - type: Transform -- uid: 6330 - type: WallReinforced - components: - - pos: 19.5,36.5 - parent: 0 - type: Transform -- uid: 6331 - type: WallReinforced - components: - - pos: 18.5,36.5 - parent: 0 - type: Transform -- uid: 6332 - type: WallReinforced - components: - - pos: 17.5,36.5 - parent: 0 - type: Transform -- uid: 6333 - type: WallReinforced - components: - - pos: 16.5,36.5 - parent: 0 - type: Transform -- uid: 6334 - type: WallReinforced - components: - - pos: 15.5,36.5 - parent: 0 - type: Transform -- uid: 6335 - type: WallReinforced - components: - - pos: 15.5,38.5 - parent: 0 - type: Transform -- uid: 6336 - type: WallReinforced - components: - - pos: 16.5,38.5 - parent: 0 - type: Transform -- uid: 6337 - type: WallReinforced - components: - - pos: 17.5,38.5 - parent: 0 - type: Transform -- uid: 6338 - type: WallReinforced - components: - - pos: 18.5,38.5 - parent: 0 - type: Transform -- uid: 6339 - type: WallReinforced - components: - - pos: 19.5,38.5 - parent: 0 - type: Transform -- uid: 6340 - type: WallReinforced - components: - - pos: 19.5,39.5 - parent: 0 - type: Transform -- uid: 6341 - type: WallReinforced - components: - - pos: 19.5,40.5 - parent: 0 - type: Transform -- uid: 6342 - type: WallReinforced - components: - - pos: 19.5,41.5 - parent: 0 - type: Transform -- uid: 6343 - type: CableMV - components: - - pos: 12.5,46.5 - parent: 0 - type: Transform -- uid: 6344 - type: WallReinforced - components: - - pos: 20.5,41.5 - parent: 0 - type: Transform -- uid: 6345 - type: CableMV - components: - - pos: 10.5,46.5 - parent: 0 - type: Transform -- uid: 6346 - type: CableMV - components: - - pos: 10.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6347 - type: ReinforcedWindow - components: - - pos: 15.5,42.5 - parent: 0 - type: Transform -- uid: 6348 - type: WallReinforced - components: - - pos: 15.5,41.5 - parent: 0 - type: Transform -- uid: 6349 - type: Grille - components: - - pos: 11.5,43.5 - parent: 0 - type: Transform -- uid: 6350 - type: WallReinforced - components: - - pos: 15.5,43.5 - parent: 0 - type: Transform -- uid: 6351 - type: WallReinforced - components: - - pos: 19.5,45.5 - parent: 0 - type: Transform -- uid: 6352 - type: Grille - components: - - pos: 3.5,44.5 - parent: 0 - type: Transform -- uid: 6353 - type: ReinforcedWindow - components: - - pos: 2.5,48.5 - parent: 0 - type: Transform -- uid: 6354 - type: Grille - components: - - pos: 15.5,46.5 - parent: 0 - type: Transform -- uid: 6355 - type: CableApcExtension - components: - - pos: 9.5,44.5 - parent: 0 - type: Transform -- uid: 6356 - type: WallReinforced - components: - - pos: 11.5,49.5 - parent: 0 - type: Transform -- uid: 6357 - type: ReinforcedWindow - components: - - pos: 8.5,49.5 - parent: 0 - type: Transform -- uid: 6358 - type: CableMV - components: - - pos: 8.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6359 - type: ReinforcedWindow - components: - - pos: 13.5,45.5 - parent: 0 - type: Transform -- uid: 6360 - type: ComputerSurveillanceCameraMonitor - components: - - pos: 5.5,42.5 - parent: 0 - type: Transform -- uid: 6361 - type: WallReinforced - components: - - pos: 12.5,43.5 - parent: 0 - type: Transform -- uid: 6362 - type: ComputerCriminalRecords - components: - - pos: 4.5,42.5 - parent: 0 - type: Transform -- uid: 6363 - type: ComputerSurveillanceCameraMonitor - components: - - pos: 9.5,48.5 - parent: 0 - type: Transform -- uid: 6364 - type: ComputerCriminalRecords - components: - - pos: 8.5,48.5 - parent: 0 - type: Transform -- uid: 6365 - type: AirlockHeadOfSecurityLocked - components: - - pos: 9.5,43.5 - parent: 0 - type: Transform -- uid: 6366 - type: LockerHeadOfSecurityFilled - components: - - pos: 6.5,47.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6367 - type: WallReinforced - components: - - pos: -6.5,45.5 - parent: 0 - type: Transform -- uid: 6368 - type: WallReinforced - components: - - pos: -8.5,45.5 - parent: 0 - type: Transform -- uid: 6369 - type: ReinforcedWindow - components: - - pos: 3.5,45.5 - parent: 0 - type: Transform -- uid: 6370 - type: ReinforcedWindow - components: - - pos: 3.5,44.5 - parent: 0 - type: Transform -- uid: 6371 - type: WallReinforced - components: - - pos: 3.5,46.5 - parent: 0 - type: Transform -- uid: 6372 - type: WallReinforced - components: - - pos: -9.5,46.5 - parent: 0 - type: Transform -- uid: 6373 - type: WallReinforced - components: - - pos: -9.5,45.5 - parent: 0 - type: Transform -- uid: 6374 - type: WallReinforced - components: - - pos: -9.5,44.5 - parent: 0 - type: Transform -- uid: 6375 - type: WallReinforced - components: - - pos: -9.5,43.5 - parent: 0 - type: Transform -- uid: 6376 - type: WallReinforced - components: - - pos: -9.5,42.5 - parent: 0 - type: Transform -- uid: 6377 - type: WallReinforced - components: - - pos: -9.5,41.5 - parent: 0 - type: Transform -- uid: 6378 - type: WallReinforced - components: - - pos: -0.5,35.5 - parent: 0 - type: Transform -- uid: 6379 - type: WallReinforced - components: - - pos: -0.5,36.5 - parent: 0 - type: Transform -- uid: 6380 - type: WallReinforced - components: - - pos: -0.5,37.5 - parent: 0 - type: Transform -- uid: 6381 - type: WallReinforced - components: - - pos: -0.5,38.5 - parent: 0 - type: Transform -- uid: 6382 - type: WallReinforced - components: - - pos: -0.5,39.5 - parent: 0 - type: Transform -- uid: 6383 - type: WallReinforced - components: - - pos: -0.5,40.5 - parent: 0 - type: Transform -- uid: 6384 - type: WallReinforced - components: - - pos: -0.5,41.5 - parent: 0 - type: Transform -- uid: 6385 - type: WallReinforced - components: - - pos: -1.5,41.5 - parent: 0 - type: Transform -- uid: 6386 - type: WallReinforced - components: - - pos: -2.5,41.5 - parent: 0 - type: Transform -- uid: 6387 - type: WallReinforced - components: - - pos: -3.5,41.5 - parent: 0 - type: Transform -- uid: 6388 - type: WallReinforced - components: - - pos: -4.5,41.5 - parent: 0 - type: Transform -- uid: 6389 - type: WallReinforced - components: - - pos: -5.5,41.5 - parent: 0 - type: Transform -- uid: 6390 - type: WallReinforced - components: - - pos: -6.5,41.5 - parent: 0 - type: Transform -- uid: 6391 - type: WallReinforced - components: - - pos: -7.5,41.5 - parent: 0 - type: Transform -- uid: 6392 - type: WallReinforced - components: - - pos: -8.5,41.5 - parent: 0 - type: Transform -- uid: 6393 - type: WallReinforced - components: - - pos: -7.5,45.5 - parent: 0 - type: Transform -- uid: 6394 - type: WallReinforced - components: - - pos: -5.5,46.5 - parent: 0 - type: Transform -- uid: 6395 - type: WallReinforced - components: - - pos: -4.5,46.5 - parent: 0 - type: Transform -- uid: 6396 - type: WallReinforced - components: - - pos: -3.5,46.5 - parent: 0 - type: Transform -- uid: 6397 - type: WallReinforced - components: - - pos: -2.5,46.5 - parent: 0 - type: Transform -- uid: 6398 - type: WallReinforced - components: - - pos: -1.5,46.5 - parent: 0 - type: Transform -- uid: 6399 - type: WallReinforced - components: - - pos: -0.5,46.5 - parent: 0 - type: Transform -- uid: 6400 - type: WallReinforced - components: - - pos: 0.5,46.5 - parent: 0 - type: Transform -- uid: 6401 - type: WallReinforced - components: - - pos: 1.5,46.5 - parent: 0 - type: Transform -- uid: 6402 - type: WallReinforced - components: - - pos: 2.5,46.5 - parent: 0 - type: Transform -- uid: 6403 - type: ReinforcedWindow - components: - - pos: 5.5,46.5 - parent: 0 - type: Transform -- uid: 6404 - type: WallSolid - components: - - pos: 3.5,42.5 - parent: 0 - type: Transform -- uid: 6405 - type: WallSolid - components: - - pos: 3.5,41.5 - parent: 0 - type: Transform -- uid: 6406 - type: WallReinforced - components: - - pos: 3.5,43.5 - parent: 0 - type: Transform -- uid: 6407 - type: WallReinforced - components: - - pos: 6.5,43.5 - parent: 0 - type: Transform -- uid: 6408 - type: WallReinforced - components: - - pos: 13.5,44.5 - parent: 0 - type: Transform -- uid: 6409 - type: WallReinforced - components: - - pos: 5.5,44.5 - parent: 0 - type: Transform -- uid: 6410 - type: WallSolid - components: - - pos: 3.5,35.5 - parent: 0 - type: Transform -- uid: 6411 - type: WallSolid - components: - - pos: 3.5,38.5 - parent: 0 - type: Transform -- uid: 6412 - type: WallSolid - components: - - pos: 3.5,36.5 - parent: 0 - type: Transform -- uid: 6413 - type: WallReinforced - components: - - pos: 7.5,49.5 - parent: 0 - type: Transform -- uid: 6414 - type: WallReinforced - components: - - pos: 6.5,49.5 - parent: 0 - type: Transform -- uid: 6415 - type: WallReinforced - components: - - pos: 6.5,48.5 - parent: 0 - type: Transform -- uid: 6416 - type: ReinforcedWindow - components: - - pos: 13.5,47.5 - parent: 0 - type: Transform -- uid: 6417 - type: Grille - components: - - pos: 7.5,43.5 - parent: 0 - type: Transform -- uid: 6418 - type: WallReinforced - components: - - pos: 15.5,45.5 - parent: 0 - type: Transform -- uid: 6419 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,44.5 - parent: 0 - type: Transform -- uid: 6420 - type: WallSolid - components: - - pos: 6.5,42.5 - parent: 0 - type: Transform -- uid: 6421 - type: WallSolid - components: - - pos: 12.5,33.5 - parent: 0 - type: Transform -- uid: 6422 - type: WallSolid - components: - - pos: 12.5,34.5 - parent: 0 - type: Transform -- uid: 6423 - type: WallSolid - components: - - pos: 9.5,33.5 - parent: 0 - type: Transform -- uid: 6424 - type: WallSolid - components: - - pos: 9.5,34.5 - parent: 0 - type: Transform -- uid: 6425 - type: WallSolid - components: - - pos: 4.5,33.5 - parent: 0 - type: Transform -- uid: 6426 - type: WallSolid - components: - - pos: 3.5,33.5 - parent: 0 - type: Transform -- uid: 6427 - type: WallSolid - components: - - pos: 4.5,35.5 - parent: 0 - type: Transform -- uid: 6428 - type: ReinforcedWindow - components: - - pos: -5.5,44.5 - parent: 0 - type: Transform -- uid: 6429 - type: ReinforcedWindow - components: - - pos: -5.5,42.5 - parent: 0 - type: Transform -- uid: 6430 - type: WallReinforced - components: - - pos: -5.5,45.5 - parent: 0 - type: Transform -- uid: 6431 - type: ReinforcedWindow - components: - - pos: 2.5,35.5 - parent: 0 - type: Transform -- uid: 6432 - type: ReinforcedWindow - components: - - pos: 0.5,35.5 - parent: 0 - type: Transform -- uid: 6433 - type: ReinforcedWindow - components: - - pos: 3.5,34.5 - parent: 0 - type: Transform -- uid: 6434 - type: ReinforcedWindow - components: - - pos: 5.5,33.5 - parent: 0 - type: Transform -- uid: 6435 - type: ReinforcedWindow - components: - - pos: 8.5,33.5 - parent: 0 - type: Transform -- uid: 6436 - type: ReinforcedWindow - components: - - pos: 10.5,33.5 - parent: 0 - type: Transform -- uid: 6437 - type: ReinforcedWindow - components: - - pos: 11.5,33.5 - parent: 0 - type: Transform -- uid: 6438 - type: ReinforcedWindow - components: - - pos: 13.5,33.5 - parent: 0 - type: Transform -- uid: 6439 - type: CableApcExtension - components: - - pos: 17.5,42.5 - parent: 0 - type: Transform -- uid: 6440 - type: CableApcExtension - components: - - pos: 9.5,43.5 - parent: 0 - type: Transform -- uid: 6441 - type: WallReinforced - components: - - pos: 12.5,48.5 - parent: 0 - type: Transform -- uid: 6442 - type: ComputerCrewMonitoring - components: - - pos: 10.5,48.5 - parent: 0 - type: Transform -- uid: 6443 - type: WallReinforced - components: - - pos: 5.5,43.5 - parent: 0 - type: Transform -- uid: 6444 - type: TableWood - components: - - pos: 8.5,46.5 - parent: 0 - type: Transform -- uid: 6445 - type: ClothingHeadHatUshanka - components: - - pos: 35.5203,-25.668785 - parent: 0 - type: Transform -- uid: 6446 - type: ReinforcedWindow - components: - - pos: 5.5,47.5 - parent: 0 - type: Transform -- uid: 6447 - type: CableMV - components: - - pos: -9.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6448 - type: CableApcExtension - components: - - pos: -15.5,27.5 - parent: 0 - type: Transform -- uid: 6449 - type: CableApcExtension - components: - - pos: -17.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6450 - type: ReinforcedWindow - components: - - pos: 3.5,37.5 - parent: 0 - type: Transform -- uid: 6451 - type: ReinforcedWindow - components: - - pos: 3.5,40.5 - parent: 0 - type: Transform -- uid: 6452 - type: WallReinforced - components: - - pos: -13.5,39.5 - parent: 0 - type: Transform -- uid: 6453 - type: ReinforcedWindow - components: - - pos: -1.5,35.5 - parent: 0 - type: Transform -- uid: 6454 - type: ReinforcedWindow - components: - - pos: -7.5,35.5 - parent: 0 - type: Transform -- uid: 6455 - type: ReinforcedWindow - components: - - pos: -5.5,35.5 - parent: 0 - type: Transform -- uid: 6456 - type: ReinforcedWindow - components: - - pos: -8.5,36.5 - parent: 0 - type: Transform -- uid: 6457 - type: WallReinforced - components: - - pos: -8.5,35.5 - parent: 0 - type: Transform -- uid: 6458 - type: WallReinforced - components: - - pos: -8.5,37.5 - parent: 0 - type: Transform -- uid: 6459 - type: WallReinforced - components: - - pos: -8.5,38.5 - parent: 0 - type: Transform -- uid: 6460 - type: WallReinforced - components: - - pos: -8.5,39.5 - parent: 0 - type: Transform -- uid: 6461 - type: WallReinforced - components: - - pos: -8.5,40.5 - parent: 0 - type: Transform -- uid: 6462 - type: WallReinforced - components: - - pos: -9.5,38.5 - parent: 0 - type: Transform -- uid: 6463 - type: SpawnPointAssistant - components: - - pos: -19.5,14.5 - parent: 0 - type: Transform -- uid: 6464 - type: WallReinforced - components: - - pos: -10.5,49.5 - parent: 0 - type: Transform -- uid: 6465 - type: SpawnPointAssistant - components: - - pos: -22.5,17.5 - parent: 0 - type: Transform -- uid: 6466 - type: SpawnPointAssistant - components: - - pos: -22.5,15.5 - parent: 0 - type: Transform -- uid: 6467 - type: CableApcExtension - components: - - pos: -17.5,29.5 - parent: 0 - type: Transform -- uid: 6468 - type: CableApcExtension - components: - - pos: -17.5,30.5 - parent: 0 - type: Transform -- uid: 6469 - type: CableApcExtension - components: - - pos: -17.5,31.5 - parent: 0 - type: Transform -- uid: 6470 - type: CableApcExtension - components: - - pos: -17.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6471 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 1.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6472 - type: CableApcExtension - components: - - pos: -15.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6473 - type: AtmosDeviceFanTiny - components: - - pos: -45.5,16.5 - parent: 0 - type: Transform -- uid: 6474 - type: ShuttersNormalOpen - components: - - pos: -15.5,26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7364 - type: SignalReceiver -- uid: 6475 - type: CableMV - components: - - pos: -17.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6476 - type: WallReinforced - components: - - pos: -4.5,35.5 - parent: 0 - type: Transform -- uid: 6477 - type: WallReinforced - components: - - pos: -6.5,35.5 - parent: 0 - type: Transform -- uid: 6478 - type: TableReinforced - components: - - pos: -3.5,35.5 - parent: 0 - type: Transform -- uid: 6479 - type: TableReinforced - components: - - pos: -0.5,31.5 - parent: 0 - type: Transform -- uid: 6480 - type: TableReinforced - components: - - pos: -2.5,26.5 - parent: 0 - type: Transform -- uid: 6481 - type: FirelockGlass - components: - - pos: -0.5,31.5 - parent: 0 - type: Transform -- uid: 6482 - type: FirelockGlass - components: - - pos: -2.5,26.5 - parent: 0 - type: Transform -- uid: 6483 - type: FirelockGlass - components: - - pos: -3.5,35.5 - parent: 0 - type: Transform -- uid: 6484 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: -3.5,35.5 - parent: 0 - type: Transform -- uid: 6485 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: -2.5,26.5 - parent: 0 - type: Transform -- uid: 6486 - type: WindoorArmoryLocked - components: - - rot: -1.5707963267948966 rad - pos: -0.5,31.5 - parent: 0 - type: Transform -- uid: 6487 - type: AirlockArmoryGlassLocked - components: - - pos: -2.5,32.5 - parent: 0 - type: Transform -- uid: 6488 - type: AirlockArmoryLocked - components: - - pos: -2.5,35.5 - parent: 0 - type: Transform -- uid: 6489 - type: SignArmory - components: - - pos: -4.5,35.5 - parent: 0 - type: Transform -- uid: 6490 - type: APCBasic - components: - - pos: -6.5,35.5 - parent: 0 - type: Transform -- uid: 6491 - type: ReinforcedWindow - components: - - pos: -15.5,51.5 - parent: 0 - type: Transform -- uid: 6492 - type: APCBasic - components: - - pos: 9.5,33.5 - parent: 0 - type: Transform -- uid: 6493 - type: FirelockGlass - components: - - pos: -2.5,22.5 - parent: 0 - type: Transform -- uid: 6494 - type: FirelockGlass - components: - - pos: -1.5,22.5 - parent: 0 - type: Transform -- uid: 6495 - type: FirelockGlass - components: - - pos: -3.5,22.5 - parent: 0 - type: Transform -- uid: 6496 - type: ReinforcedWindow - components: - - pos: 12.5,29.5 - parent: 0 - type: Transform -- uid: 6497 - type: ReinforcedWindow - components: - - pos: 10.5,29.5 - parent: 0 - type: Transform -- uid: 6498 - type: PottedPlantRandom - components: - - pos: -17.5,47.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 6499 - type: Grille - components: - - pos: -5.5,65.5 - parent: 0 - type: Transform -- uid: 6500 - type: CableApcExtension - components: - - pos: -10.5,13.5 - parent: 0 - type: Transform -- uid: 6501 - type: CableMV - components: - - pos: -11.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6502 - type: AtmosDeviceFanTiny - components: - - pos: -45.5,18.5 - parent: 0 - type: Transform -- uid: 6503 - type: WallReinforced - components: - - pos: -13.5,45.5 - parent: 0 - type: Transform -- uid: 6504 - type: WallReinforced - components: - - pos: -13.5,46.5 - parent: 0 - type: Transform -- uid: 6505 - type: WallReinforced - components: - - pos: -14.5,46.5 - parent: 0 - type: Transform -- uid: 6506 - type: WallReinforced - components: - - pos: -15.5,46.5 - parent: 0 - type: Transform -- uid: 6507 - type: WallReinforced - components: - - pos: -16.5,46.5 - parent: 0 - type: Transform -- uid: 6508 - type: WallReinforced - components: - - pos: -17.5,46.5 - parent: 0 - type: Transform -- uid: 6509 - type: WallReinforced - components: - - pos: -13.5,43.5 - parent: 0 - type: Transform -- uid: 6510 - type: CableMV - components: - - pos: -12.5,9.5 - parent: 0 - type: Transform -- uid: 6511 - type: WallReinforced - components: - - pos: -15.5,43.5 - parent: 0 - type: Transform -- uid: 6512 - type: WallReinforced - components: - - pos: -16.5,43.5 - parent: 0 - type: Transform -- uid: 6513 - type: WallReinforced - components: - - pos: -17.5,43.5 - parent: 0 - type: Transform -- uid: 6514 - type: WallReinforced - components: - - pos: -17.5,44.5 - parent: 0 - type: Transform -- uid: 6515 - type: WallReinforced - components: - - pos: -17.5,45.5 - parent: 0 - type: Transform -- uid: 6516 - type: GasPipeStraight - components: - - pos: 0.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6517 - type: GasPipeStraight - components: - - pos: -0.5,50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6518 - type: GasPipeStraight - components: - - pos: -0.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6519 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6520 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6521 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6522 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6523 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6524 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6525 - type: ReinforcedWindow - components: - - pos: -0.5,49.5 - parent: 0 - type: Transform -- uid: 6526 - type: Grille - components: - - pos: -1.5,59.5 - parent: 0 - type: Transform -- uid: 6527 - type: Grille - components: - - pos: -0.5,54.5 - parent: 0 - type: Transform -- uid: 6528 - type: Grille - components: - - pos: -3.5,60.5 - parent: 0 - type: Transform -- uid: 6529 - type: WallReinforced - components: - - pos: 2.5,57.5 - parent: 0 - type: Transform -- uid: 6530 - type: Grille - components: - - pos: -0.5,49.5 - parent: 0 - type: Transform -- uid: 6531 - type: CableApcExtension - components: - - pos: -11.5,52.5 - parent: 0 - type: Transform -- uid: 6532 - type: CableApcExtension - components: - - pos: -11.5,51.5 - parent: 0 - type: Transform -- uid: 6533 - type: CableApcExtension - components: - - pos: -11.5,50.5 - parent: 0 - type: Transform -- uid: 6534 - type: Grille - components: - - pos: -14.5,58.5 - parent: 0 - type: Transform -- uid: 6535 - type: CableApcExtension - components: - - pos: -11.5,56.5 - parent: 0 - type: Transform -- uid: 6536 - type: CableApcExtension - components: - - pos: -4.5,48.5 - parent: 0 - type: Transform -- uid: 6537 - type: CableApcExtension - components: - - pos: -7.5,49.5 - parent: 0 - type: Transform -- uid: 6538 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -10.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6539 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6540 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6541 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6542 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -4.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6543 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6544 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6545 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6546 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6547 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6548 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -5.5,60.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6549 - type: GasVentPump - components: - - pos: -7.5,60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6550 - type: Grille - components: - - pos: 7.5,53.5 - parent: 0 - type: Transform -- uid: 6551 - type: Grille - components: - - pos: 8.5,53.5 - parent: 0 - type: Transform -- uid: 6552 - type: Grille - components: - - pos: 9.5,53.5 - parent: 0 - type: Transform -- uid: 6553 - type: Grille - components: - - pos: 10.5,53.5 - parent: 0 - type: Transform -- uid: 6554 - type: Grille - components: - - pos: 11.5,53.5 - parent: 0 - type: Transform -- uid: 6555 - type: AirlockSecurityGlassLocked - components: - - pos: -3.5,49.5 - parent: 0 - type: Transform -- uid: 6556 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -3.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6557 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -7.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6558 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -11.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6559 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6560 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6561 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6562 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6563 - type: PoweredSmallLight - components: - - pos: -10.5,51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6564 - type: LockerEvidence - components: - - pos: -17.5,49.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6565 - type: Grille - components: - - pos: -9.5,65.5 - parent: 0 - type: Transform -- uid: 6566 - type: CableMV - components: - - pos: -12.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6567 - type: CableMV - components: - - pos: -12.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6568 - type: CableMV - components: - - pos: -12.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6569 - type: CableMV - components: - - pos: -12.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6570 - type: CableMV - components: - - pos: -12.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6571 - type: APCHighCapacity - components: - - pos: -11.5,11.5 - parent: 0 - type: Transform -- uid: 6572 - type: Bed - components: - - pos: -2.5,50.5 - parent: 0 - type: Transform -- uid: 6573 - type: DiceBag - components: - - pos: -6.517153,56.534855 - parent: 0 - type: Transform -- uid: 6574 - type: CableApcExtension - components: - - pos: -6.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6575 - type: CableApcExtension - components: - - pos: -11.5,15.5 - parent: 0 - type: Transform -- uid: 6576 - type: CableApcExtension - components: - - pos: -10.5,16.5 - parent: 0 - type: Transform -- uid: 6577 - type: CableApcExtension - components: - - pos: -10.5,17.5 - parent: 0 - type: Transform -- uid: 6578 - type: Grille - components: - - pos: -3.5,65.5 - parent: 0 - type: Transform -- uid: 6579 - type: Grille - components: - - pos: -11.5,60.5 - parent: 0 - type: Transform -- uid: 6580 - type: Grille - components: - - pos: -12.5,60.5 - parent: 0 - type: Transform -- uid: 6581 - type: Grille - components: - - pos: -13.5,60.5 - parent: 0 - type: Transform -- uid: 6582 - type: Grille - components: - - pos: -14.5,60.5 - parent: 0 - type: Transform -- uid: 6583 - type: ReinforcedWindow - components: - - pos: -7.5,58.5 - parent: 0 - type: Transform -- uid: 6584 - type: WallSolid - components: - - pos: -13.5,55.5 - parent: 0 - type: Transform -- uid: 6585 - type: WallSolid - components: - - pos: -13.5,54.5 - parent: 0 - type: Transform -- uid: 6586 - type: WallReinforced - components: - - pos: -13.5,53.5 - parent: 0 - type: Transform -- uid: 6587 - type: WallSolid - components: - - pos: -14.5,53.5 - parent: 0 - type: Transform -- uid: 6588 - type: WallReinforced - components: - - pos: -15.5,56.5 - parent: 0 - type: Transform -- uid: 6589 - type: WallReinforced - components: - - pos: -15.5,55.5 - parent: 0 - type: Transform -- uid: 6590 - type: WallReinforced - components: - - pos: -15.5,54.5 - parent: 0 - type: Transform -- uid: 6591 - type: WallReinforced - components: - - pos: -15.5,53.5 - parent: 0 - type: Transform -- uid: 6592 - type: WallReinforced - components: - - pos: -13.5,58.5 - parent: 0 - type: Transform -- uid: 6593 - type: ReinforcedWindow - components: - - pos: -9.5,60.5 - parent: 0 - type: Transform -- uid: 6594 - type: WallReinforced - components: - - pos: -9.5,58.5 - parent: 0 - type: Transform -- uid: 6595 - type: WallReinforced - components: - - pos: -1.5,57.5 - parent: 0 - type: Transform -- uid: 6596 - type: CableApcExtension - components: - - pos: 3.5,44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6597 - type: CableMV - components: - - pos: -12.5,48.5 - parent: 0 - type: Transform -- uid: 6598 - type: CableMV - components: - - pos: -11.5,48.5 - parent: 0 - type: Transform -- uid: 6599 - type: CableMV - components: - - pos: -10.5,48.5 - parent: 0 - type: Transform -- uid: 6600 - type: CableMV - components: - - pos: -9.5,48.5 - parent: 0 - type: Transform -- uid: 6601 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6602 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -15.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6603 - type: CableMV - components: - - pos: -11.5,10.5 - parent: 0 - type: Transform -- uid: 6604 - type: ReinforcedWindow - components: - - pos: -11.5,58.5 - parent: 0 - type: Transform -- uid: 6605 - type: CableMV - components: - - pos: -11.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6606 - type: WallReinforced - components: - - pos: -12.5,52.5 - parent: 0 - type: Transform -- uid: 6607 - type: WallReinforced - components: - - pos: -13.5,50.5 - parent: 0 - type: Transform -- uid: 6608 - type: ReinforcedWindow - components: - - pos: -15.5,52.5 - parent: 0 - type: Transform -- uid: 6609 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6610 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6611 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6612 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6613 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6614 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6615 - type: ReinforcedWindow - components: - - pos: -8.5,27.5 - parent: 0 - type: Transform -- uid: 6616 - type: SinkWide - components: - - pos: -13.5,57.5 - parent: 0 - type: Transform -- uid: 6617 - type: ReinforcedWindow - components: - - pos: -2.5,58.5 - parent: 0 - type: Transform -- uid: 6618 - type: CableMV - components: - - pos: -11.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6619 - type: WallReinforced - components: - - pos: -8.5,58.5 - parent: 0 - type: Transform -- uid: 6620 - type: WallReinforced - components: - - pos: -4.5,58.5 - parent: 0 - type: Transform -- uid: 6621 - type: WallReinforced - components: - - pos: -3.5,59.5 - parent: 0 - type: Transform -- uid: 6622 - type: CableMV - components: - - pos: -12.5,47.5 - parent: 0 - type: Transform -- uid: 6623 - type: APCHyperCapacity - components: - - pos: -9.5,49.5 - parent: 0 - type: Transform -- uid: 6624 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 9.5,45.5 - parent: 0 - type: Transform -- uid: 6625 - type: CableApcExtension - components: - - pos: -9.5,17.5 - parent: 0 - type: Transform -- uid: 6626 - type: ReinforcedWindow - components: - - pos: -10.5,26.5 - parent: 0 - type: Transform -- uid: 6627 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -2.5,55.5 - parent: 0 - type: Transform -- uid: 6628 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: -8.5,55.5 - parent: 0 - type: Transform -- uid: 6629 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -5.5,56.5 - parent: 0 - type: Transform -- uid: 6630 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -5.5,55.5 - parent: 0 - type: Transform -- uid: 6631 - type: hydroponicsTray - components: - - pos: -8.5,59.5 - parent: 0 - type: Transform -- uid: 6632 - type: Grille - components: - - pos: -5.5,28.5 - parent: 0 - type: Transform -- uid: 6633 - type: CableApcExtension - components: - - pos: -13.5,17.5 - parent: 0 - type: Transform -- uid: 6634 - type: Table - components: - - pos: -7.5,56.5 - parent: 0 - type: Transform -- uid: 6635 - type: Table - components: - - pos: -7.5,55.5 - parent: 0 - type: Transform -- uid: 6636 - type: CableApcExtension - components: - - pos: -11.5,17.5 - parent: 0 - type: Transform -- uid: 6637 - type: GasPipeStraight - components: - - pos: -12.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6638 - type: CableMV - components: - - pos: -7.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6639 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -10.5,56.5 - parent: 0 - type: Transform -- uid: 6640 - type: SpaceVillainArcade - components: - - pos: -10.5,57.5 - parent: 0 - type: Transform -- uid: 6641 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: -13.5,56.5 - parent: 0 - type: Transform -- uid: 6642 - type: WindowReinforcedDirectional - components: - - pos: -3.5,56.5 - parent: 0 - type: Transform -- uid: 6643 - type: HighSecCommandLocked - components: - - pos: -10.5,13.5 - parent: 0 - type: Transform -- uid: 6644 - type: CableApcExtension - components: - - pos: -10.5,18.5 - parent: 0 - type: Transform -- uid: 6645 - type: ReinforcedWindow - components: - - pos: -11.5,43.5 - parent: 0 - type: Transform -- uid: 6646 - type: ReinforcedWindow - components: - - pos: -11.5,46.5 - parent: 0 - type: Transform -- uid: 6647 - type: ReinforcedWindow - components: - - pos: -11.5,28.5 - parent: 0 - type: Transform -- uid: 6648 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -12.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6649 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6650 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6651 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 14.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6652 - type: WallSolid - components: - - pos: 12.5,42.5 - parent: 0 - type: Transform -- uid: 6653 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6654 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 8.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6655 - type: APCHighCapacity - components: - - pos: 12.5,42.5 - parent: 0 - type: Transform -- uid: 6656 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 5.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6657 - type: CableApcExtension - components: - - pos: 12.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6658 - type: WallReinforced - components: - - pos: 13.5,43.5 - parent: 0 - type: Transform -- uid: 6659 - type: CableApcExtension - components: - - pos: 12.5,41.5 - parent: 0 - type: Transform -- uid: 6660 - type: ReinforcedWindow - components: - - pos: 14.5,43.5 - parent: 0 - type: Transform -- uid: 6661 - type: GasVentScrubber - components: - - pos: 10.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6662 - type: GasVentPump - components: - - pos: 8.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6663 - type: CableMV - components: - - pos: 10.5,41.5 - parent: 0 - type: Transform -- uid: 6664 - type: Grille - components: - - pos: 8.5,49.5 - parent: 0 - type: Transform -- uid: 6665 - type: ReinforcedWindow - components: - - pos: 7.5,43.5 - parent: 0 - type: Transform -- uid: 6666 - type: ReinforcedWindow - components: - - pos: 10.5,43.5 - parent: 0 - type: Transform -- uid: 6667 - type: GasPipeBend - components: - - pos: 14.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6668 - type: CableMV - components: - - pos: 9.5,43.5 - parent: 0 - type: Transform -- uid: 6669 - type: CableMV - components: - - pos: 9.5,45.5 - parent: 0 - type: Transform -- uid: 6670 - type: Grille - components: - - pos: 4.5,43.5 - parent: 0 - type: Transform -- uid: 6671 - type: ReinforcedWindow - components: - - pos: 9.5,49.5 - parent: 0 - type: Transform -- uid: 6672 - type: CableMV - components: - - pos: 5.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6673 - type: CableApcExtension - components: - - pos: 17.5,43.5 - parent: 0 - type: Transform -- uid: 6674 - type: Grille - components: - - pos: 13.5,46.5 - parent: 0 - type: Transform -- uid: 6675 - type: Grille - components: - - pos: 15.5,42.5 - parent: 0 - type: Transform -- uid: 6676 - type: CableApcExtension - components: - - pos: 17.5,45.5 - parent: 0 - type: Transform -- uid: 6677 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,41.5 - parent: 0 - type: Transform -- uid: 6678 - type: DisposalPipe - components: - - pos: 14.5,40.5 - parent: 0 - type: Transform -- uid: 6679 - type: WallReinforced - components: - - pos: 19.5,48.5 - parent: 0 - type: Transform -- uid: 6680 - type: CableMV - components: - - pos: 8.5,46.5 - parent: 0 - type: Transform -- uid: 6681 - type: CableMV - components: - - pos: 13.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6682 - type: CableMV - components: - - pos: 11.5,46.5 - parent: 0 - type: Transform -- uid: 6683 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6684 - type: WallReinforced - components: - - pos: 19.5,43.5 - parent: 0 - type: Transform -- uid: 6685 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6686 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6687 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -15.5,47.5 - parent: 0 - type: Transform -- uid: 6688 - type: Grille - components: - - pos: -6.5,65.5 - parent: 0 - type: Transform -- uid: 6689 - type: Grille - components: - - pos: -8.5,65.5 - parent: 0 - type: Transform -- uid: 6690 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6691 - type: CableApcExtension - components: - - pos: 0.5,52.5 - parent: 0 - type: Transform -- uid: 6692 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6693 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6694 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -13.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6695 - type: PoweredSmallLight - components: - - pos: -2.5,51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6696 - type: Grille - components: - - pos: -7.5,65.5 - parent: 0 - type: Transform -- uid: 6697 - type: CableMV - components: - - pos: -12.5,8.5 - parent: 0 - type: Transform -- uid: 6698 - type: CableApcExtension - components: - - pos: -8.5,17.5 - parent: 0 - type: Transform -- uid: 6699 - type: GasPipeStraight - components: - - pos: -10.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6700 - type: WallReinforced - components: - - pos: -2.5,52.5 - parent: 0 - type: Transform -- uid: 6701 - type: WallReinforced - components: - - pos: -1.5,51.5 - parent: 0 - type: Transform -- uid: 6702 - type: WallReinforced - components: - - pos: -1.5,50.5 - parent: 0 - type: Transform -- uid: 6703 - type: WallReinforced - components: - - pos: -1.5,49.5 - parent: 0 - type: Transform -- uid: 6704 - type: WallReinforced - components: - - pos: -6.5,52.5 - parent: 0 - type: Transform -- uid: 6705 - type: WallReinforced - components: - - pos: -9.5,52.5 - parent: 0 - type: Transform -- uid: 6706 - type: WallReinforced - components: - - pos: -5.5,50.5 - parent: 0 - type: Transform -- uid: 6707 - type: TableWood - components: - - pos: 10.5,46.5 - parent: 0 - type: Transform -- uid: 6708 - type: BedsheetHOS - components: - - pos: 6.5,45.5 - parent: 0 - type: Transform -- uid: 6709 - type: ClothingHeadHatUshanka - components: - - pos: 35.36405,-25.43441 - parent: 0 - type: Transform -- uid: 6710 - type: WallReinforced - components: - - pos: -15.5,57.5 - parent: 0 - type: Transform -- uid: 6711 - type: PosterLegitFruitBowl - components: - - pos: 13.5,-38.5 - parent: 0 - type: Transform -- uid: 6712 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: 34.5,-25.5 - parent: 0 - type: Transform -- uid: 6713 - type: AirlockMaintLocked - components: - - pos: 39.5,24.5 - parent: 0 - type: Transform -- uid: 6714 - type: SurveillanceCameraRouterEngineering - components: - - pos: 35.5,10.5 - parent: 0 - type: Transform -- uid: 6715 - type: VendingMachineEngiDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 55.5,-3.5 - parent: 0 - type: Transform -- uid: 6716 - type: ComfyChair - components: - - pos: 9.5,47.5 - parent: 0 - type: Transform -- uid: 6717 - type: CableApcExtension - components: - - pos: -9.5,48.5 - parent: 0 - type: Transform -- uid: 6718 - type: Bed - components: - - pos: -6.5,50.5 - parent: 0 - type: Transform -- uid: 6719 - type: WallReinforced - components: - - pos: -3.5,58.5 - parent: 0 - type: Transform -- uid: 6720 - type: WallReinforced - components: - - pos: -9.5,59.5 - parent: 0 - type: Transform -- uid: 6721 - type: WallReinforced - components: - - pos: -12.5,58.5 - parent: 0 - type: Transform -- uid: 6722 - type: WallReinforced - components: - - pos: -4.5,62.5 - parent: 0 - type: Transform -- uid: 6723 - type: CableApcExtension - components: - - pos: -6.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6724 - type: WardrobePrisonFilled - components: - - pos: -6.5,51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6725 - type: Poweredlight - components: - - pos: 6.5,41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6726 - type: GasPipeStraight - components: - - pos: 12.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6727 - type: Beaker - components: - - pos: -0.37171292,53.669495 - parent: 0 - type: Transform -- uid: 6728 - type: Syringe - components: - - pos: 0.5657871,53.52887 - parent: 0 - type: Transform -- uid: 6729 - type: EpinephrineChemistryBottle - components: - - pos: 0.37828708,53.65387 - parent: 0 - type: Transform -- uid: 6730 - type: ReinforcedWindow - components: - - pos: -14.5,30.5 - parent: 0 - type: Transform -- uid: 6731 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 0.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6732 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 2.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6733 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6734 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6735 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6736 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6737 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6738 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6739 - type: GasPipeStraight - components: - - pos: -3.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6740 - type: GasPipeStraight - components: - - pos: -3.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6741 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6742 - type: GasPipeStraight - components: - - pos: -3.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6743 - type: GasPipeStraight - components: - - pos: -3.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6744 - type: GasPipeStraight - components: - - pos: -3.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6745 - type: GasPipeStraight - components: - - pos: -3.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6746 - type: GasPipeStraight - components: - - pos: -1.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6747 - type: GasPipeStraight - components: - - pos: -1.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6748 - type: GasPipeStraight - components: - - pos: -1.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6749 - type: GasPipeStraight - components: - - pos: -1.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6750 - type: GasPipeStraight - components: - - pos: -1.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6751 - type: GasPipeStraight - components: - - pos: -1.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6752 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6753 - type: GasPipeStraight - components: - - pos: -1.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6754 - type: GasPipeStraight - components: - - pos: -1.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6755 - type: GasPipeStraight - components: - - pos: 0.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6756 - type: GasPipeStraight - components: - - pos: 0.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6757 - type: GasPipeStraight - components: - - pos: 0.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6758 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 2.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6759 - type: GasPipeStraight - components: - - pos: 0.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6760 - type: GasPipeStraight - components: - - pos: 0.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6761 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6762 - type: GasPipeStraight - components: - - pos: 0.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6763 - type: GasPipeStraight - components: - - pos: 0.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6764 - type: GasPipeStraight - components: - - pos: 2.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6765 - type: GasPipeStraight - components: - - pos: 2.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6766 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6767 - type: GasPipeStraight - components: - - pos: 2.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6768 - type: GasPipeStraight - components: - - pos: 2.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6769 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 2.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6770 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 2.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6771 - type: GasPipeFourway - components: - - pos: -3.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6772 - type: GasPipeFourway - components: - - pos: -1.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6773 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 2.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6774 - type: GasPipeFourway - components: - - pos: 0.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6775 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6776 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6777 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6778 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6779 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6780 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6781 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6782 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6783 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6784 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6785 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6786 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6787 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6788 - type: GasPipeStraight - components: - - pos: 2.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6789 - type: GasPipeStraight - components: - - pos: 0.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6790 - type: GasPipeStraight - components: - - pos: 0.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6791 - type: GasPipeStraight - components: - - pos: 0.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6792 - type: GasPipeStraight - components: - - pos: 2.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6793 - type: GasPipeStraight - components: - - pos: 2.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6794 - type: GasPipeStraight - components: - - pos: -1.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6795 - type: GasPipeStraight - components: - - pos: -1.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6796 - type: GasPipeStraight - components: - - pos: -1.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6797 - type: GasPipeStraight - components: - - pos: -3.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6798 - type: GasPipeStraight - components: - - pos: -3.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6799 - type: GasPipeFourway - components: - - pos: -1.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6800 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -7.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6801 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -6.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6802 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6803 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -6.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6804 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -7.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6805 - type: GasPipeTJunction - components: - - pos: -9.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6806 - type: GasPipeTJunction - components: - - pos: -10.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6807 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -12.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6808 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -13.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6809 - type: GasPipeStraight - components: - - pos: -6.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6810 - type: GasPipeStraight - components: - - pos: -6.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6811 - type: GasPipeStraight - components: - - pos: -7.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6812 - type: GasPipeStraight - components: - - pos: -7.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6813 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6814 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6815 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6816 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6817 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6818 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6819 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6820 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6821 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6822 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6823 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6824 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6825 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6826 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6827 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6828 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6829 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6830 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -13.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6831 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -12.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6832 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -12.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6833 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6834 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6835 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6836 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -10.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6837 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -12.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6838 - type: Carpet - components: - - pos: 11.5,28.5 - parent: 0 - type: Transform -- uid: 6839 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6840 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6841 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6842 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6843 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6844 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6845 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6846 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6847 - type: BoxFolderRed - components: - - pos: -0.43421292,50.512177 - parent: 0 - type: Transform -- uid: 6848 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -10.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6849 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6850 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6851 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6852 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6853 - type: Carpet - components: - - pos: 12.5,27.5 - parent: 0 - type: Transform -- uid: 6854 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6855 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6856 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6857 - type: TableGlass - components: - - pos: -0.5,50.5 - parent: 0 - type: Transform -- uid: 6858 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6859 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6860 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6861 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -12.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6862 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6863 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6864 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6865 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6866 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6867 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6868 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6869 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6870 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6871 - type: GasPipeFourway - components: - - pos: 6.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6872 - type: GasPipeFourway - components: - - pos: 7.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6873 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6874 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6875 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6876 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 8.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6877 - type: GasPipeTJunction - components: - - pos: 11.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6878 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6879 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6880 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6881 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6882 - type: GasPipeTJunction - components: - - pos: 10.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6883 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6884 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6885 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6886 - type: GasPipeTJunction - components: - - pos: 12.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6887 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6888 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6889 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6890 - type: GasPipeStraight - components: - - pos: 12.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6891 - type: GasPipeStraight - components: - - pos: 12.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6892 - type: GasPipeStraight - components: - - pos: 12.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6893 - type: GasPipeStraight - components: - - pos: 11.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6894 - type: GasPipeStraight - components: - - pos: 11.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6895 - type: GasPipeStraight - components: - - pos: 11.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6896 - type: GasPipeStraight - components: - - pos: 11.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6897 - type: ShuttersNormalOpen - components: - - pos: -14.5,30.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7364 - type: SignalReceiver -- uid: 6898 - type: GasPipeStraight - components: - - pos: 7.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6899 - type: GasPipeStraight - components: - - pos: 7.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6900 - type: GasPipeStraight - components: - - pos: 6.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6901 - type: GasPipeStraight - components: - - pos: 6.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6902 - type: GasPipeStraight - components: - - pos: 6.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6903 - type: GasPipeStraight - components: - - pos: 6.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6904 - type: GasPipeStraight - components: - - pos: 6.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6905 - type: GasPipeStraight - components: - - pos: 6.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6906 - type: GasPipeStraight - components: - - pos: 6.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6907 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6908 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6909 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6910 - type: GasPipeFourway - components: - - pos: 6.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6911 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 2.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6912 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6913 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6914 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6915 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6916 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6917 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6918 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6919 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6920 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 11.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6921 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 12.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6922 - type: GasPipeStraight - components: - - pos: 12.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6923 - type: GasPipeStraight - components: - - pos: 12.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6924 - type: GasPipeStraight - components: - - pos: 12.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6925 - type: GasPipeStraight - components: - - pos: 12.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6926 - type: FirelockGlass - components: - - pos: 34.5,3.5 - parent: 0 - type: Transform -- uid: 6927 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6928 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6929 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6930 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6931 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6932 - type: FirelockGlass - components: - - pos: 34.5,4.5 - parent: 0 - type: Transform -- uid: 6933 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6934 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6935 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6936 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6937 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6938 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6939 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6940 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6941 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6942 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6943 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 11.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6944 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6945 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6946 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 6.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6947 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6948 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6949 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6950 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6951 - type: GasPipeTJunction - components: - - pos: 6.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6952 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6953 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6954 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6955 - type: GasPipeTJunction - components: - - pos: 7.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6956 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 4.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6957 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 5.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6958 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 13.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6959 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 14.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6960 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6961 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6962 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6963 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6964 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6965 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6966 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6967 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6968 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6969 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6970 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6971 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6972 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6973 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6974 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6975 - type: GasPipeStraight - components: - - pos: 5.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6976 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 5.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6977 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6978 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6979 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6980 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 4.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6981 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6982 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 13.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6983 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6984 - type: TableGlass - components: - - pos: 0.5,53.5 - parent: 0 - type: Transform -- uid: 6985 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6986 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6987 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6988 - type: TableGlass - components: - - pos: -0.5,53.5 - parent: 0 - type: Transform -- uid: 6989 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6990 - type: GasPipeStraight - components: - - pos: 14.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6991 - type: GasPipeBend - components: - - pos: 13.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6992 - type: GasPipeStraight - components: - - pos: 5.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6993 - type: Bed - components: - - pos: -0.5,52.5 - parent: 0 - type: Transform -- uid: 6994 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6995 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6996 - type: ScalpelShiv - components: - - flags: InContainer - type: MetaData - - parent: 7004 - type: Transform - - canCollide: False - type: Physics -- uid: 6997 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6998 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6999 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7000 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7001 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 13.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7002 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7003 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7004 - type: PottedPlantRandomPlastic - components: - - pos: -9.5,53.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot - ent: 6996 - type: ContainerContainer -- uid: 7005 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7006 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7007 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7008 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7009 - type: Basketball - components: - - pos: -4.626528,57.33173 - parent: 0 - type: Transform -- uid: 7010 - type: ReinforcedWindow - components: - - pos: -5.5,62.5 - parent: 0 - type: Transform -- uid: 7011 - type: CrayonBox - components: - - pos: -5.5068436,53.60521 - parent: 0 - type: Transform -- uid: 7012 - type: PottedPlantRandom - components: - - pos: 1.5,48.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 7013 - type: WallReinforced - components: - - pos: 2.5,50.5 - parent: 0 - type: Transform -- uid: 7014 - type: WallReinforced - components: - - pos: 2.5,52.5 - parent: 0 - type: Transform -- uid: 7015 - type: ReinforcedWindow - components: - - pos: 1.5,54.5 - parent: 0 - type: Transform -- uid: 7016 - type: ReinforcedWindow - components: - - pos: -0.5,54.5 - parent: 0 - type: Transform -- uid: 7017 - type: Grille - components: - - pos: -4.5,65.5 - parent: 0 - type: Transform -- uid: 7018 - type: CableApcExtension - components: - - pos: -10.5,15.5 - parent: 0 - type: Transform -- uid: 7019 - type: CableApcExtension - components: - - pos: 16.5,46.5 - parent: 0 - type: Transform -- uid: 7020 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 13.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7021 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7022 - type: ReinforcedWindow - components: - - pos: -5.5,27.5 - parent: 0 - type: Transform -- uid: 7023 - type: DonkpocketBoxSpawner - components: - - pos: -12.5,53.5 - parent: 0 - type: Transform -- uid: 7024 - type: ReinforcedWindow - components: - - pos: -9.5,26.5 - parent: 0 - type: Transform -- uid: 7025 - type: AppleSeeds - components: - - pos: -8.510362,60.487736 - parent: 0 - type: Transform -- uid: 7026 - type: Table - components: - - pos: -2.5,53.5 - parent: 0 - type: Transform -- uid: 7027 - type: ReinforcedWindow - components: - - pos: -1.5,26.5 - parent: 0 - type: Transform -- uid: 7028 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7029 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 2.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7030 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7031 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7032 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7033 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7034 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7035 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 0.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7036 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7037 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7038 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7039 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7040 - type: GasPipeBend - components: - - pos: 0.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7041 - type: GasPipeBend - components: - - pos: 2.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7042 - type: GasPipeTJunction - components: - - pos: -0.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7043 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -2.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7044 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7045 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7046 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7047 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7048 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7049 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7050 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7051 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7052 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7053 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7054 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7055 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7056 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7057 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7058 - type: GasPipeBend - components: - - pos: -3.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7059 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7060 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7061 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -6.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7062 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7063 - type: GasPipeBend - components: - - pos: -1.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7064 - type: CableApcExtension - components: - - pos: 17.5,48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7065 - type: Pen - components: - - pos: -8.256844,50.76146 - parent: 0 - type: Transform -- uid: 7066 - type: Pen - components: - - pos: -4.2880936,50.73021 - parent: 0 - type: Transform -- uid: 7067 - type: Paper - components: - - pos: -12.506844,50.558334 - parent: 0 - type: Transform -- uid: 7068 - type: Poweredlight - components: - - pos: 12.5,41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7069 - type: ShuttersNormalOpen - components: - - pos: -18.5,26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7364 - type: SignalReceiver -- uid: 7070 - type: Poweredlight - components: - - pos: 7.5,48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7071 - type: Poweredlight - components: - - pos: -0.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7072 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,44.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7073 - type: Poweredlight - components: - - pos: -4.5,57.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7074 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -10.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7075 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -13.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7076 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -2.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7077 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 1.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7078 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 1.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7079 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 5.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7080 - type: GasPipeStraight - components: - - pos: -10.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7081 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,59.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7082 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -9.5,53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7083 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 1.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7084 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -0.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7085 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -7.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7086 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -11.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7087 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 1.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7088 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -2.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7089 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -2.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7090 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 1.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7091 - type: GasVentPump - components: - - pos: -6.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7092 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -6.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7093 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -9.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7094 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -12.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7095 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 1.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7096 - type: CableMV - components: - - pos: -12.5,30.5 - parent: 0 - type: Transform -- uid: 7097 - type: WallReinforced - components: - - pos: -19.5,32.5 - parent: 0 - type: Transform -- uid: 7098 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 16.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7099 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -13.5,56.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7100 - type: Table - components: - - pos: -2.5,57.5 - parent: 0 - type: Transform -- uid: 7101 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 16.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7102 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 10.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7103 - type: GasVentScrubber - components: - - pos: 8.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7104 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 5.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7105 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 4.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7106 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7107 - type: GasVentScrubber - components: - - pos: 13.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7108 - type: GasVentScrubber - components: - - pos: -2.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7109 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -7.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7110 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -11.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7111 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 7.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7112 - type: GasVentScrubber - components: - - pos: 2.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7113 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 3.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7114 - type: GasVentScrubber - components: - - pos: 12.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7115 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 5.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7116 - type: GasVentPump - components: - - pos: 6.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7117 - type: GasVentPump - components: - - pos: 11.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7118 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7119 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7120 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7121 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7122 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7123 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 17.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7124 - type: GasPipeTJunction - components: - - pos: 17.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7125 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 2.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7126 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 1.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7127 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -11.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7128 - type: GasVentScrubber - components: - - pos: -8.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7129 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -2.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7130 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -2.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7131 - type: Stool - components: - - pos: -4.5,51.5 - parent: 0 - type: Transform -- uid: 7132 - type: Stool - components: - - pos: -12.5,51.5 - parent: 0 - type: Transform -- uid: 7133 - type: CableApcExtension - components: - - pos: -3.5,53.5 - parent: 0 - type: Transform -- uid: 7134 - type: CableApcExtension - components: - - pos: -3.5,51.5 - parent: 0 - type: Transform -- uid: 7135 - type: CableApcExtension - components: - - pos: -3.5,50.5 - parent: 0 - type: Transform -- uid: 7136 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7137 - type: CableApcExtension - components: - - pos: 0.5,51.5 - parent: 0 - type: Transform -- uid: 7138 - type: CableApcExtension - components: - - pos: 0.5,50.5 - parent: 0 - type: Transform -- uid: 7139 - type: CableApcExtension - components: - - pos: 0.5,48.5 - parent: 0 - type: Transform -- uid: 7140 - type: CableApcExtension - components: - - pos: -0.5,48.5 - parent: 0 - type: Transform -- uid: 7141 - type: CableApcExtension - components: - - pos: -14.5,48.5 - parent: 0 - type: Transform -- uid: 7142 - type: CableApcExtension - components: - - pos: -14.5,56.5 - parent: 0 - type: Transform -- uid: 7143 - type: CableApcExtension - components: - - pos: -11.5,57.5 - parent: 0 - type: Transform -- uid: 7144 - type: CableApcExtension - components: - - pos: -4.5,54.5 - parent: 0 - type: Transform -- uid: 7145 - type: CableApcExtension - components: - - pos: -6.5,60.5 - parent: 0 - type: Transform -- uid: 7146 - type: CableApcExtension - components: - - pos: -6.5,57.5 - parent: 0 - type: Transform -- uid: 7147 - type: CableApcExtension - components: - - pos: -7.5,55.5 - parent: 0 - type: Transform -- uid: 7148 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7149 - type: CableApcExtension - components: - - pos: -1.5,48.5 - parent: 0 - type: Transform -- uid: 7150 - type: CableApcExtension - components: - - pos: -7.5,52.5 - parent: 0 - type: Transform -- uid: 7151 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -6.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7152 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7153 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7154 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7155 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -13.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7156 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7157 - type: CableApcExtension - components: - - pos: -3.5,48.5 - parent: 0 - type: Transform -- uid: 7158 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7159 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7160 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 0.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7161 - type: WallSolid - components: - - pos: -14.5,50.5 - parent: 0 - type: Transform -- uid: 7162 - type: WallReinforced - components: - - pos: -16.5,50.5 - parent: 0 - type: Transform -- uid: 7163 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7164 - type: GasPipeFourway - components: - - pos: -8.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7165 - type: TableWood - components: - - pos: 6.5,45.5 - parent: 0 - type: Transform -- uid: 7166 - type: TableWood - components: - - pos: 12.5,45.5 - parent: 0 - type: Transform -- uid: 7167 - type: LockerEvidence - components: - - pos: -15.5,49.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7168 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -10.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7169 - type: Table - components: - - pos: -8.5,50.5 - parent: 0 - type: Transform -- uid: 7170 - type: ParchisBoard - components: - - pos: -7.423403,55.722355 - parent: 0 - type: Transform -- uid: 7171 - type: Poweredlight - components: - - pos: -1.5,48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7172 - type: CableApcExtension - components: - - pos: -16.5,30.5 - parent: 0 - type: Transform -- uid: 7173 - type: computerBodyScanner - components: - - pos: 1.5,53.5 - parent: 0 - type: Transform -- uid: 7174 - type: Pen - components: - - pos: -12.272469,50.777084 - parent: 0 - type: Transform -- uid: 7175 - type: Paper - components: - - pos: -4.4912186,50.51146 - parent: 0 - type: Transform -- uid: 7176 - type: ReinforcedWindow - components: - - pos: -3.5,60.5 - parent: 0 - type: Transform -- uid: 7177 - type: CableApcExtension - components: - - pos: -9.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7178 - type: CableApcExtension - components: - - pos: -10.5,48.5 - parent: 0 - type: Transform -- uid: 7179 - type: ReinforcedWindow - components: - - pos: -3.5,26.5 - parent: 0 - type: Transform -- uid: 7180 - type: Bed - components: - - pos: -10.5,50.5 - parent: 0 - type: Transform -- uid: 7181 - type: Table - components: - - pos: -5.5,53.5 - parent: 0 - type: Transform -- uid: 7182 - type: CableApcExtension - components: - - pos: 2.5,44.5 - parent: 0 - type: Transform -- uid: 7183 - type: WallReinforced - components: - - pos: -8.5,62.5 - parent: 0 - type: Transform -- uid: 7184 - type: ReinforcedWindow - components: - - pos: -14.5,58.5 - parent: 0 - type: Transform -- uid: 7185 - type: WallReinforced - components: - - pos: -1.5,54.5 - parent: 0 - type: Transform -- uid: 7186 - type: ReinforcedWindow - components: - - pos: -7.5,26.5 - parent: 0 - type: Transform -- uid: 7187 - type: BlockGameArcade - components: - - pos: -9.5,57.5 - parent: 0 - type: Transform -- uid: 7188 - type: CableMV - components: - - pos: -10.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7189 - type: GasPipeStraight - components: - - pos: 39.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7190 - type: Bed - components: - - pos: 1.5,52.5 - parent: 0 - type: Transform -- uid: 7191 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7192 - type: CableApcExtension - components: - - pos: -14.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7193 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -3.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7194 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -7.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7195 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -11.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7196 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -6.5,60.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7197 - type: GasVentPump - components: - - pos: -0.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7198 - type: Grille - components: - - pos: -15.5,51.5 - parent: 0 - type: Transform -- uid: 7199 - type: Table - components: - - pos: -14.5,49.5 - parent: 0 - type: Transform -- uid: 7200 - type: Grille - components: - - pos: -11.5,58.5 - parent: 0 - type: Transform -- uid: 7201 - type: Grille - components: - - pos: -5.5,62.5 - parent: 0 - type: Transform -- uid: 7202 - type: Grille - components: - - pos: -7.5,62.5 - parent: 0 - type: Transform -- uid: 7203 - type: Grille - components: - - pos: -9.5,60.5 - parent: 0 - type: Transform -- uid: 7204 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -4.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7205 - type: Grille - components: - - pos: -7.5,58.5 - parent: 0 - type: Transform -- uid: 7206 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -2.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7207 - type: Grille - components: - - pos: -5.5,58.5 - parent: 0 - type: Transform -- uid: 7208 - type: CableApcExtension - components: - - pos: -10.5,12.5 - parent: 0 - type: Transform -- uid: 7209 - type: CableApcExtension - components: - - pos: -3.5,56.5 - parent: 0 - type: Transform -- uid: 7210 - type: CableApcExtension - components: - - pos: -14.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7211 - type: ReinforcedWindow - components: - - pos: -12.5,26.5 - parent: 0 - type: Transform -- uid: 7212 - type: hydroponicsTray - components: - - pos: -8.5,60.5 - parent: 0 - type: Transform -- uid: 7213 - type: hydroponicsTray - components: - - pos: -4.5,60.5 - parent: 0 - type: Transform -- uid: 7214 - type: Bucket - components: - - pos: -7.4478617,61.34711 - parent: 0 - type: Transform -- uid: 7215 - type: CarrotSeeds - components: - - pos: -8.541612,59.456486 - parent: 0 - type: Transform -- uid: 7216 - type: ChanterelleSeeds - components: - - pos: -4.5259867,59.362736 - parent: 0 - type: Transform -- uid: 7217 - type: Table - components: - - pos: -12.5,54.5 - parent: 0 - type: Transform -- uid: 7218 - type: KitchenMicrowave - components: - - pos: -12.5,55.5 - parent: 0 - type: Transform -- uid: 7219 - type: ReinforcedWindow - components: - - pos: -6.5,26.5 - parent: 0 - type: Transform -- uid: 7220 - type: CableApcExtension - components: - - pos: -7.5,17.5 - parent: 0 - type: Transform -- uid: 7221 - type: CableApcExtension - components: - - pos: -11.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7222 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,55.5 - parent: 0 - type: Transform -- uid: 7223 - type: Paper - components: - - pos: -8.491219,50.527084 - parent: 0 - type: Transform -- uid: 7224 - type: WardrobePrisonFilled - components: - - pos: -2.5,51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7225 - type: CableApcExtension - components: - - pos: -17.5,28.5 - parent: 0 - type: Transform -- uid: 7226 - type: ClothingOuterStraightjacket - components: - - pos: -0.5748379,52.52935 - parent: 0 - type: Transform -- uid: 7227 - type: CableApcExtension - components: - - pos: -3.5,55.5 - parent: 0 - type: Transform -- uid: 7228 - type: CableApcExtension - components: - - pos: -7.5,51.5 - parent: 0 - type: Transform -- uid: 7229 - type: CableApcExtension - components: - - pos: -7.5,54.5 - parent: 0 - type: Transform -- uid: 7230 - type: CableApcExtension - components: - - pos: -6.5,56.5 - parent: 0 - type: Transform -- uid: 7231 - type: CableApcExtension - components: - - pos: -6.5,59.5 - parent: 0 - type: Transform -- uid: 7232 - type: CableApcExtension - components: - - pos: -5.5,54.5 - parent: 0 - type: Transform -- uid: 7233 - type: CableApcExtension - components: - - pos: -10.5,55.5 - parent: 0 - type: Transform -- uid: 7234 - type: CableApcExtension - components: - - pos: -14.5,57.5 - parent: 0 - type: Transform -- uid: 7235 - type: CableApcExtension - components: - - pos: -13.5,48.5 - parent: 0 - type: Transform -- uid: 7236 - type: GasPipeFourway - components: - - pos: -12.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7237 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7238 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7239 - type: ReinforcedWindow - components: - - pos: 5.5,45.5 - parent: 0 - type: Transform -- uid: 7240 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 10.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7241 - type: CableMV - components: - - pos: -12.5,10.5 - parent: 0 - type: Transform -- uid: 7242 - type: WallReinforced - components: - - pos: 13.5,48.5 - parent: 0 - type: Transform -- uid: 7243 - type: CableMV - components: - - pos: 12.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7244 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7245 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7246 - type: EmergencyLight - components: - - pos: 44.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 7247 - type: Carpet - components: - - pos: 9.5,46.5 - parent: 0 - type: Transform -- uid: 7248 - type: CableApcExtension - components: - - pos: 10.5,46.5 - parent: 0 - type: Transform -- uid: 7249 - type: CableApcExtension - components: - - pos: 7.5,46.5 - parent: 0 - type: Transform -- uid: 7250 - type: CableApcExtension - components: - - pos: 8.5,46.5 - parent: 0 - type: Transform -- uid: 7251 - type: CableApcExtension - components: - - pos: 9.5,48.5 - parent: 0 - type: Transform -- uid: 7252 - type: ReinforcedWindow - components: - - pos: 11.5,43.5 - parent: 0 - type: Transform -- uid: 7253 - type: ReinforcedWindow - components: - - pos: 8.5,43.5 - parent: 0 - type: Transform -- uid: 7254 - type: CableMV - components: - - pos: 9.5,44.5 - parent: 0 - type: Transform -- uid: 7255 - type: CableMV - components: - - pos: 9.5,47.5 - parent: 0 - type: Transform -- uid: 7256 - type: Grille - components: - - pos: 5.5,47.5 - parent: 0 - type: Transform -- uid: 7257 - type: CableMV - components: - - pos: 5.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7258 - type: CableApcExtension - components: - - pos: 17.5,39.5 - parent: 0 - type: Transform -- uid: 7259 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,41.5 - parent: 0 - type: Transform -- uid: 7260 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,43.5 - parent: 0 - type: Transform -- uid: 7261 - type: CableMV - components: - - pos: 4.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7262 - type: CableMV - components: - - pos: 13.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7263 - type: ReinforcedWindow - components: - - pos: 17.5,48.5 - parent: 0 - type: Transform -- uid: 7264 - type: WallReinforced - components: - - pos: 19.5,47.5 - parent: 0 - type: Transform -- uid: 7265 - type: Grille - components: - - pos: 15.5,40.5 - parent: 0 - type: Transform -- uid: 7266 - type: CableApcExtension - components: - - pos: -10.5,11.5 - parent: 0 - type: Transform -- uid: 7267 - type: CableApcExtension - components: - - pos: -10.5,14.5 - parent: 0 - type: Transform -- uid: 7268 - type: WallReinforced - components: - - pos: 47.5,30.5 - parent: 0 - type: Transform -- uid: 7269 - type: CableApcExtension - components: - - pos: -10.5,47.5 - parent: 0 - type: Transform -- uid: 7270 - type: CableApcExtension - components: - - pos: 3.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7271 - type: WallReinforced - components: - - pos: -1.5,58.5 - parent: 0 - type: Transform -- uid: 7272 - type: WallReinforced - components: - - pos: -10.5,58.5 - parent: 0 - type: Transform -- uid: 7273 - type: ReinforcedWindow - components: - - pos: -7.5,62.5 - parent: 0 - type: Transform -- uid: 7274 - type: WallReinforced - components: - - pos: -15.5,58.5 - parent: 0 - type: Transform -- uid: 7275 - type: WallReinforced - components: - - pos: -3.5,62.5 - parent: 0 - type: Transform -- uid: 7276 - type: WallReinforced - components: - - pos: -6.5,62.5 - parent: 0 - type: Transform -- uid: 7277 - type: WallReinforced - components: - - pos: -9.5,61.5 - parent: 0 - type: Transform -- uid: 7278 - type: CableApcExtension - components: - - pos: 17.5,47.5 - parent: 0 - type: Transform -- uid: 7279 - type: WallReinforced - components: - - pos: -1.5,56.5 - parent: 0 - type: Transform -- uid: 7280 - type: AirlockSecurityGlassLocked - components: - - pos: 15.5,39.5 - parent: 0 - type: Transform -- uid: 7281 - type: TableWood - components: - - pos: 11.5,48.5 - parent: 0 - type: Transform -- uid: 7282 - type: WallReinforced - components: - - pos: 2.5,49.5 - parent: 0 - type: Transform -- uid: 7283 - type: WallReinforced - components: - - pos: 2.5,51.5 - parent: 0 - type: Transform -- uid: 7284 - type: WallReinforced - components: - - pos: 2.5,53.5 - parent: 0 - type: Transform -- uid: 7285 - type: ReinforcedWindow - components: - - pos: 0.5,54.5 - parent: 0 - type: Transform -- uid: 7286 - type: WallReinforced - components: - - pos: -1.5,53.5 - parent: 0 - type: Transform -- uid: 7287 - type: TableWood - components: - - pos: 6.5,46.5 - parent: 0 - type: Transform -- uid: 7288 - type: TableWood - components: - - pos: 12.5,46.5 - parent: 0 - type: Transform -- uid: 7289 - type: TableWood - components: - - pos: 9.5,46.5 - parent: 0 - type: Transform -- uid: 7290 - type: WallReinforced - components: - - pos: -10.5,52.5 - parent: 0 - type: Transform -- uid: 7291 - type: CableApcExtension - components: - - pos: -3.5,54.5 - parent: 0 - type: Transform -- uid: 7292 - type: CableApcExtension - components: - - pos: -7.5,50.5 - parent: 0 - type: Transform -- uid: 7293 - type: CableApcExtension - components: - - pos: -7.5,53.5 - parent: 0 - type: Transform -- uid: 7294 - type: CableApcExtension - components: - - pos: -7.5,56.5 - parent: 0 - type: Transform -- uid: 7295 - type: CableApcExtension - components: - - pos: -6.5,58.5 - parent: 0 - type: Transform -- uid: 7296 - type: CableApcExtension - components: - - pos: -6.5,54.5 - parent: 0 - type: Transform -- uid: 7297 - type: CableApcExtension - components: - - pos: -9.5,55.5 - parent: 0 - type: Transform -- uid: 7298 - type: CableApcExtension - components: - - pos: -13.5,57.5 - parent: 0 - type: Transform -- uid: 7299 - type: CableApcExtension - components: - - pos: -12.5,48.5 - parent: 0 - type: Transform -- uid: 7300 - type: GasPipeFourway - components: - - pos: -10.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7301 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -12.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7302 - type: CableApcExtension - components: - - pos: -3.5,52.5 - parent: 0 - type: Transform -- uid: 7303 - type: ClothingHeadHelmetEVA - components: - - pos: -14.579267,45.526848 - parent: 0 - type: Transform -- uid: 7304 - type: WallReinforced - components: - - pos: -8.5,49.5 - parent: 0 - type: Transform -- uid: 7305 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7306 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7307 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7308 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7309 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7310 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7311 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -8.5,57.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7312 - type: GasPipeFourway - components: - - pos: -6.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7313 - type: GasPipeBend - components: - - pos: -2.5,54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7314 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -6.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7315 - type: GasPipeStraight - components: - - pos: 0.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7316 - type: PoweredSmallLight - components: - - pos: -6.5,51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7317 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -16.5,47.5 - parent: 0 - type: Transform -- uid: 7318 - type: LockerEvidence - components: - - pos: -16.5,49.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7319 - type: CableApcExtension - components: - - pos: -3.5,49.5 - parent: 0 - type: Transform -- uid: 7320 - type: CableApcExtension - components: - - pos: -5.5,48.5 - parent: 0 - type: Transform -- uid: 7321 - type: CableApcExtension - components: - - pos: -11.5,53.5 - parent: 0 - type: Transform -- uid: 7322 - type: Grille - components: - - pos: 1.5,54.5 - parent: 0 - type: Transform -- uid: 7323 - type: Grille - components: - - pos: 1.5,49.5 - parent: 0 - type: Transform -- uid: 7324 - type: CableApcExtension - components: - - pos: -2.5,48.5 - parent: 0 - type: Transform -- uid: 7325 - type: CableApcExtension - components: - - pos: -7.5,48.5 - parent: 0 - type: Transform -- uid: 7326 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -2.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7327 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7328 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -4.5,54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7329 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7330 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -0.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7331 - type: CableMV - components: - - pos: -14.5,31.5 - parent: 0 - type: Transform -- uid: 7332 - type: AirlockSecurityLocked - components: - - pos: -14.5,31.5 - parent: 0 - type: Transform -- uid: 7333 - type: SignMedical - components: - - pos: -14.5,26.5 - parent: 0 - type: Transform -- uid: 7334 - type: SignMedical - components: - - pos: -14.5,32.5 - parent: 0 - type: Transform -- uid: 7335 - type: SpawnPointAssistant - components: - - pos: -18.5,18.5 - parent: 0 - type: Transform -- uid: 7336 - type: WallReinforced - components: - - pos: -19.5,29.5 - parent: 0 - type: Transform -- uid: 7337 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -11.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7338 - type: WallReinforced - components: - - pos: -19.5,31.5 - parent: 0 - type: Transform -- uid: 7339 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -9.5,36.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 7340 - type: WallReinforced - components: - - pos: -19.5,30.5 - parent: 0 - type: Transform -- uid: 7341 - type: GasVentScrubber - components: - - pos: 37.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7342 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 39.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7343 - type: DisposalYJunction - components: - - rot: -1.5707963267948966 rad - pos: 16.5,9.5 - parent: 0 - type: Transform -- uid: 7344 - type: WallReinforced - components: - - pos: 21.5,41.5 - parent: 0 - type: Transform -- uid: 7345 - type: WallReinforced - components: - - pos: 22.5,41.5 - parent: 0 - type: Transform -- uid: 7346 - type: WallReinforced - components: - - pos: 23.5,41.5 - parent: 0 - type: Transform -- uid: 7347 - type: WallReinforced - components: - - pos: 23.5,40.5 - parent: 0 - type: Transform -- uid: 7348 - type: GasPipeFourway - components: - - pos: 39.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7349 - type: SubstationBasic - components: - - name: East Sec Substation - type: MetaData - - pos: 20.5,40.5 - parent: 0 - type: Transform -- uid: 7350 - type: SpawnPointAssistant - components: - - pos: -21.5,14.5 - parent: 0 - type: Transform -- uid: 7351 - type: SpawnPointAssistant - components: - - pos: -20.5,17.5 - parent: 0 - type: Transform -- uid: 7352 - type: SpawnPointServiceWorker - components: - - pos: 28.5,-11.5 - parent: 0 - type: Transform -- uid: 7353 - type: WallReinforced - components: - - pos: -19.5,28.5 - parent: 0 - type: Transform -- uid: 7354 - type: WallReinforced - components: - - pos: -19.5,26.5 - parent: 0 - type: Transform -- uid: 7355 - type: ReinforcedWindow - components: - - pos: -17.5,26.5 - parent: 0 - type: Transform -- uid: 7356 - type: CableApcExtension - components: - - pos: 8.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7357 - type: CableApcExtension - components: - - pos: 7.5,26.5 - parent: 0 - type: Transform -- uid: 7358 - type: WallReinforced - components: - - pos: -15.5,50.5 - parent: 0 - type: Transform -- uid: 7359 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7360 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7361 - type: WallmountTelevisionFrame - components: - - pos: 24.5,20.5 - parent: 0 - type: Transform -- uid: 7362 - type: AirlockBrigLocked - components: - - pos: 7.5,22.5 - parent: 0 - type: Transform -- uid: 7363 - type: AirlockMedicalGlassLocked - components: - - pos: -16.5,26.5 - parent: 0 - type: Transform -- uid: 7364 - type: SignalButton - components: - - pos: -14.5,29.5 - parent: 0 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 6897 - - port: Toggle - uid: 6474 - - port: Toggle - uid: 7365 - - port: Toggle - uid: 7069 - type: SignalTransmitter -- uid: 7365 - type: ShuttersNormalOpen - components: - - pos: -17.5,26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7364 - type: SignalReceiver -- uid: 7366 - type: ReinforcedWindow - components: - - pos: -15.5,26.5 - parent: 0 - type: Transform -- uid: 7367 - type: ReinforcedWindow - components: - - pos: -18.5,26.5 - parent: 0 - type: Transform -- uid: 7368 - type: WallReinforced - components: - - pos: -19.5,27.5 - parent: 0 - type: Transform -- uid: 7369 - type: SpawnPointAssistant - components: - - pos: -23.5,13.5 - parent: 0 - type: Transform -- uid: 7370 - type: CableMV - components: - - pos: -13.5,31.5 - parent: 0 - type: Transform -- uid: 7371 - type: CableMV - components: - - pos: -12.5,31.5 - parent: 0 - type: Transform -- uid: 7372 - type: CableMV - components: - - pos: -11.5,31.5 - parent: 0 - type: Transform -- uid: 7373 - type: CableMV - components: - - pos: -10.5,31.5 - parent: 0 - type: Transform -- uid: 7374 - type: CableMV - components: - - pos: -9.5,31.5 - parent: 0 - type: Transform -- uid: 7375 - type: CableMV - components: - - pos: -8.5,31.5 - parent: 0 - type: Transform -- uid: 7376 - type: CableMV - components: - - pos: -7.5,31.5 - parent: 0 - type: Transform -- uid: 7377 - type: CableMV - components: - - pos: -6.5,31.5 - parent: 0 - type: Transform -- uid: 7378 - type: CableMV - components: - - pos: -6.5,32.5 - parent: 0 - type: Transform -- uid: 7379 - type: CableMV - components: - - pos: -6.5,33.5 - parent: 0 - type: Transform -- uid: 7380 - type: CableMV - components: - - pos: -6.5,34.5 - parent: 0 - type: Transform -- uid: 7381 - type: CableMV - components: - - pos: -6.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7382 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7383 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7384 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7385 - type: WallReinforced - components: - - pos: -17.5,50.5 - parent: 0 - type: Transform -- uid: 7386 - type: WallReinforced - components: - - pos: -18.5,50.5 - parent: 0 - type: Transform -- uid: 7387 - type: WallReinforced - components: - - pos: -18.5,48.5 - parent: 0 - type: Transform -- uid: 7388 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -9.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7389 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 1.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7390 - type: PosterLegitNoERP - components: - - pos: -14.5,53.5 - parent: 0 - type: Transform -- uid: 7391 - type: KitchenReagentGrinder - components: - - pos: -12.5,54.5 - parent: 0 - type: Transform -- uid: 7392 - type: Table - components: - - pos: -12.5,55.5 - parent: 0 - type: Transform -- uid: 7393 - type: Table - components: - - pos: -12.5,53.5 - parent: 0 - type: Transform -- uid: 7394 - type: WheatSeeds - components: - - pos: -4.4791117,60.47211 - parent: 0 - type: Transform -- uid: 7395 - type: Bucket - components: - - pos: -5.5259867,59.362736 - parent: 0 - type: Transform -- uid: 7396 - type: WaterTankFull - components: - - pos: -8.5,61.5 - parent: 0 - type: Transform -- uid: 7397 - type: hydroponicsTray - components: - - pos: -4.5,59.5 - parent: 0 - type: Transform -- uid: 7398 - type: WardrobePrisonFilled - components: - - pos: -10.5,51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7399 - type: PillTricordrazine - components: - - pos: 0.7133255,53.419666 - parent: 0 - type: Transform -- uid: 7400 - type: ClothingMaskMuzzle - components: - - pos: -0.5904629,52.3106 - parent: 0 - type: Transform -- uid: 7401 - type: Poweredlight - components: - - pos: 11.5,48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7402 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7403 - type: Poweredlight - components: - - pos: -9.5,31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7404 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7405 - type: Poweredlight - components: - - pos: -9.5,48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7406 - type: Poweredlight - components: - - pos: -8.5,57.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7407 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,61.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7408 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -5.5,53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7409 - type: Beaker - components: - - pos: -12.317899,55.235 - parent: 0 - type: Transform -- uid: 7410 - type: ClothingShoesSlippers - components: - - pos: -3.541605,57.19826 - parent: 0 - type: Transform -- uid: 7411 - type: Stool - components: - - pos: -8.5,51.5 - parent: 0 - type: Transform -- uid: 7412 - type: Table - components: - - pos: -4.5,50.5 - parent: 0 - type: Transform -- uid: 7413 - type: Table - components: - - pos: -12.5,50.5 - parent: 0 - type: Transform -- uid: 7414 - type: HydroponicsToolSpade - components: - - pos: -5.4322367,61.428654 - parent: 0 - type: Transform -- uid: 7415 - type: CableMV - components: - - pos: -12.5,46.5 - parent: 0 - type: Transform -- uid: 7416 - type: CableMV - components: - - pos: -12.5,45.5 - parent: 0 - type: Transform -- uid: 7417 - type: CableMV - components: - - pos: -12.5,44.5 - parent: 0 - type: Transform -- uid: 7418 - type: CableMV - components: - - pos: -12.5,43.5 - parent: 0 - type: Transform -- uid: 7419 - type: CableMV - components: - - pos: -12.5,42.5 - parent: 0 - type: Transform -- uid: 7420 - type: CableMV - components: - - pos: -12.5,41.5 - parent: 0 - type: Transform -- uid: 7421 - type: CableMV - components: - - pos: -12.5,40.5 - parent: 0 - type: Transform -- uid: 7422 - type: CableMV - components: - - pos: -12.5,39.5 - parent: 0 - type: Transform -- uid: 7423 - type: CableMV - components: - - pos: -12.5,38.5 - parent: 0 - type: Transform -- uid: 7424 - type: CableMV - components: - - pos: -12.5,37.5 - parent: 0 - type: Transform -- uid: 7425 - type: CableMV - components: - - pos: -12.5,36.5 - parent: 0 - type: Transform -- uid: 7426 - type: CableMV - components: - - pos: -12.5,35.5 - parent: 0 - type: Transform -- uid: 7427 - type: CableMV - components: - - pos: -12.5,34.5 - parent: 0 - type: Transform -- uid: 7428 - type: CableMV - components: - - pos: -12.5,33.5 - parent: 0 - type: Transform -- uid: 7429 - type: CableMV - components: - - pos: -12.5,32.5 - parent: 0 - type: Transform -- uid: 7430 - type: CableMV - components: - - pos: 20.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7431 - type: CableMV - components: - - pos: 20.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7432 - type: GasPipeTJunction - components: - - pos: 40.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7433 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 37.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7434 - type: CableMV - components: - - pos: 23.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7435 - type: CableMV - components: - - pos: 24.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7436 - type: CableMV - components: - - pos: 24.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7437 - type: CableMV - components: - - pos: 24.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7438 - type: GasPipeTJunction - components: - - pos: 10.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7439 - type: CableMV - components: - - pos: 22.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7440 - type: CableMV - components: - - pos: 21.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7441 - type: CableMV - components: - - pos: 20.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7442 - type: CableMV - components: - - pos: 19.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7443 - type: CableMV - components: - - pos: 18.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7444 - type: CableMV - components: - - pos: 17.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7445 - type: CableMV - components: - - pos: 16.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7446 - type: CableMV - components: - - pos: 15.5,37.5 - parent: 0 - type: Transform -- uid: 7447 - type: CableMV - components: - - pos: 14.5,37.5 - parent: 0 - type: Transform -- uid: 7448 - type: CableMV - components: - - pos: 13.5,37.5 - parent: 0 - type: Transform -- uid: 7449 - type: CableMV - components: - - pos: 12.5,37.5 - parent: 0 - type: Transform -- uid: 7450 - type: CableMV - components: - - pos: 11.5,37.5 - parent: 0 - type: Transform -- uid: 7451 - type: CableMV - components: - - pos: 11.5,38.5 - parent: 0 - type: Transform -- uid: 7452 - type: CableMV - components: - - pos: 11.5,39.5 - parent: 0 - type: Transform -- uid: 7453 - type: CableMV - components: - - pos: 11.5,40.5 - parent: 0 - type: Transform -- uid: 7454 - type: CableMV - components: - - pos: 11.5,41.5 - parent: 0 - type: Transform -- uid: 7455 - type: CableMV - components: - - pos: -13.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7456 - type: SpawnPointServiceWorker - components: - - pos: 28.5,-12.5 - parent: 0 - type: Transform -- uid: 7457 - type: CableMV - components: - - pos: 9.5,41.5 - parent: 0 - type: Transform -- uid: 7458 - type: CableMV - components: - - pos: 8.5,41.5 - parent: 0 - type: Transform -- uid: 7459 - type: CableMV - components: - - pos: 7.5,41.5 - parent: 0 - type: Transform -- uid: 7460 - type: CableMV - components: - - pos: 6.5,41.5 - parent: 0 - type: Transform -- uid: 7461 - type: CableMV - components: - - pos: 5.5,41.5 - parent: 0 - type: Transform -- uid: 7462 - type: CableMV - components: - - pos: 4.5,41.5 - parent: 0 - type: Transform -- uid: 7463 - type: CableMV - components: - - pos: 3.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7464 - type: CableMV - components: - - pos: 9.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7465 - type: CableMV - components: - - pos: 9.5,32.5 - parent: 0 - type: Transform -- uid: 7466 - type: CableMV - components: - - pos: 8.5,32.5 - parent: 0 - type: Transform -- uid: 7467 - type: CableMV - components: - - pos: 7.5,32.5 - parent: 0 - type: Transform -- uid: 7468 - type: CableMV - components: - - pos: 7.5,33.5 - parent: 0 - type: Transform -- uid: 7469 - type: CableMV - components: - - pos: 7.5,34.5 - parent: 0 - type: Transform -- uid: 7470 - type: CableMV - components: - - pos: 7.5,35.5 - parent: 0 - type: Transform -- uid: 7471 - type: CableMV - components: - - pos: 7.5,36.5 - parent: 0 - type: Transform -- uid: 7472 - type: CableMV - components: - - pos: 8.5,36.5 - parent: 0 - type: Transform -- uid: 7473 - type: CableMV - components: - - pos: 9.5,36.5 - parent: 0 - type: Transform -- uid: 7474 - type: CableMV - components: - - pos: 10.5,36.5 - parent: 0 - type: Transform -- uid: 7475 - type: CableMV - components: - - pos: 11.5,36.5 - parent: 0 - type: Transform -- uid: 7476 - type: CableMV - components: - - pos: -12.5,29.5 - parent: 0 - type: Transform -- uid: 7477 - type: CableMV - components: - - pos: -12.5,28.5 - parent: 0 - type: Transform -- uid: 7478 - type: CableMV - components: - - pos: -12.5,27.5 - parent: 0 - type: Transform -- uid: 7479 - type: CableMV - components: - - pos: -12.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7480 - type: CableMV - components: - - pos: -13.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7481 - type: CableMV - components: - - pos: -9.5,30.5 - parent: 0 - type: Transform -- uid: 7482 - type: CableMV - components: - - pos: -9.5,29.5 - parent: 0 - type: Transform -- uid: 7483 - type: CableMV - components: - - pos: -9.5,28.5 - parent: 0 - type: Transform -- uid: 7484 - type: CableMV - components: - - pos: -9.5,27.5 - parent: 0 - type: Transform -- uid: 7485 - type: CableMV - components: - - pos: -9.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7486 - type: CableMV - components: - - pos: -10.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7487 - type: CableMV - components: - - pos: -6.5,30.5 - parent: 0 - type: Transform -- uid: 7488 - type: CableMV - components: - - pos: -6.5,29.5 - parent: 0 - type: Transform -- uid: 7489 - type: CableMV - components: - - pos: -6.5,28.5 - parent: 0 - type: Transform -- uid: 7490 - type: CableMV - components: - - pos: -6.5,27.5 - parent: 0 - type: Transform -- uid: 7491 - type: CableMV - components: - - pos: -6.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7492 - type: CableMV - components: - - pos: -7.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7493 - type: CableMV - components: - - pos: -5.5,33.5 - parent: 0 - type: Transform -- uid: 7494 - type: CableMV - components: - - pos: -4.5,33.5 - parent: 0 - type: Transform -- uid: 7495 - type: CableMV - components: - - pos: -3.5,33.5 - parent: 0 - type: Transform -- uid: 7496 - type: CableMV - components: - - pos: -5.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7497 - type: CableMV - components: - - pos: -2.5,32.5 - parent: 0 - type: Transform -- uid: 7498 - type: CableMV - components: - - pos: -2.5,31.5 - parent: 0 - type: Transform -- uid: 7499 - type: CableMV - components: - - pos: -2.5,30.5 - parent: 0 - type: Transform -- uid: 7500 - type: CableMV - components: - - pos: -2.5,29.5 - parent: 0 - type: Transform -- uid: 7501 - type: CableMV - components: - - pos: -2.5,28.5 - parent: 0 - type: Transform -- uid: 7502 - type: CableMV - components: - - pos: -2.5,27.5 - parent: 0 - type: Transform -- uid: 7503 - type: CableMV - components: - - pos: -2.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7504 - type: CableMV - components: - - pos: -3.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7505 - type: CableMV - components: - - pos: -1.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7506 - type: CableMV - components: - - pos: 6.5,32.5 - parent: 0 - type: Transform -- uid: 7507 - type: CableMV - components: - - pos: 5.5,32.5 - parent: 0 - type: Transform -- uid: 7508 - type: CableMV - components: - - pos: 4.5,32.5 - parent: 0 - type: Transform -- uid: 7509 - type: CableMV - components: - - pos: 3.5,32.5 - parent: 0 - type: Transform -- uid: 7510 - type: CableMV - components: - - pos: 2.5,32.5 - parent: 0 - type: Transform -- uid: 7511 - type: CableMV - components: - - pos: 1.5,32.5 - parent: 0 - type: Transform -- uid: 7512 - type: CableMV - components: - - pos: 1.5,31.5 - parent: 0 - type: Transform -- uid: 7513 - type: CableMV - components: - - pos: 1.5,30.5 - parent: 0 - type: Transform -- uid: 7514 - type: CableMV - components: - - pos: 1.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7515 - type: CableMV - components: - - pos: 1.5,28.5 - parent: 0 - type: Transform -- uid: 7516 - type: CableMV - components: - - pos: 1.5,27.5 - parent: 0 - type: Transform -- uid: 7517 - type: CableMV - components: - - pos: 1.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7518 - type: CableMV - components: - - pos: 2.5,27.5 - parent: 0 - type: Transform -- uid: 7519 - type: CableMV - components: - - pos: 3.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7520 - type: CableMV - components: - - pos: 3.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7521 - type: CableMV - components: - - pos: 0.5,27.5 - parent: 0 - type: Transform -- uid: 7522 - type: CableMV - components: - - pos: -0.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7523 - type: CableMV - components: - - pos: -0.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7524 - type: CableMV - components: - - pos: -3.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7525 - type: CableMV - components: - - pos: -1.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7526 - type: CableMV - components: - - pos: -7.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7527 - type: CableMV - components: - - pos: -3.5,34.5 - parent: 0 - type: Transform -- uid: 7528 - type: CableMV - components: - - pos: -2.5,34.5 - parent: 0 - type: Transform -- uid: 7529 - type: CableMV - components: - - pos: -1.5,34.5 - parent: 0 - type: Transform -- uid: 7530 - type: CableMV - components: - - pos: -1.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7531 - type: CableMV - components: - - pos: -11.5,36.5 - parent: 0 - type: Transform -- uid: 7532 - type: CableMV - components: - - pos: -10.5,36.5 - parent: 0 - type: Transform -- uid: 7533 - type: CableMV - components: - - pos: -9.5,36.5 - parent: 0 - type: Transform -- uid: 7534 - type: CableMV - components: - - pos: -8.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7535 - type: Table - components: - - pos: -6.5,55.5 - parent: 0 - type: Transform -- uid: 7536 - type: CableApcExtension - components: - - pos: -6.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7537 - type: CableApcExtension - components: - - pos: -6.5,36.5 - parent: 0 - type: Transform -- uid: 7538 - type: CableApcExtension - components: - - pos: -6.5,37.5 - parent: 0 - type: Transform -- uid: 7539 - type: CableApcExtension - components: - - pos: -6.5,38.5 - parent: 0 - type: Transform -- uid: 7540 - type: CableApcExtension - components: - - pos: -5.5,38.5 - parent: 0 - type: Transform -- uid: 7541 - type: CableApcExtension - components: - - pos: -4.5,38.5 - parent: 0 - type: Transform -- uid: 7542 - type: CableApcExtension - components: - - pos: -3.5,38.5 - parent: 0 - type: Transform -- uid: 7543 - type: CableApcExtension - components: - - pos: -2.5,38.5 - parent: 0 - type: Transform -- uid: 7544 - type: CableApcExtension - components: - - pos: -2.5,37.5 - parent: 0 - type: Transform -- uid: 7545 - type: CableApcExtension - components: - - pos: -2.5,39.5 - parent: 0 - type: Transform -- uid: 7546 - type: CableApcExtension - components: - - pos: -6.5,39.5 - parent: 0 - type: Transform -- uid: 7547 - type: CableApcExtension - components: - - pos: -2.5,36.5 - parent: 0 - type: Transform -- uid: 7548 - type: CableApcExtension - components: - - pos: -6.5,34.5 - parent: 0 - type: Transform -- uid: 7549 - type: CableApcExtension - components: - - pos: -6.5,33.5 - parent: 0 - type: Transform -- uid: 7550 - type: CableApcExtension - components: - - pos: -6.5,32.5 - parent: 0 - type: Transform -- uid: 7551 - type: CableApcExtension - components: - - pos: -6.5,31.5 - parent: 0 - type: Transform -- uid: 7552 - type: CableApcExtension - components: - - pos: -6.5,30.5 - parent: 0 - type: Transform -- uid: 7553 - type: CableApcExtension - components: - - pos: -6.5,29.5 - parent: 0 - type: Transform -- uid: 7554 - type: CableApcExtension - components: - - pos: -6.5,28.5 - parent: 0 - type: Transform -- uid: 7555 - type: CableApcExtension - components: - - pos: -6.5,27.5 - parent: 0 - type: Transform -- uid: 7556 - type: CableApcExtension - components: - - pos: -7.5,30.5 - parent: 0 - type: Transform -- uid: 7557 - type: CableApcExtension - components: - - pos: -8.5,30.5 - parent: 0 - type: Transform -- uid: 7558 - type: CableApcExtension - components: - - pos: -9.5,30.5 - parent: 0 - type: Transform -- uid: 7559 - type: CableApcExtension - components: - - pos: -10.5,30.5 - parent: 0 - type: Transform -- uid: 7560 - type: CableApcExtension - components: - - pos: -11.5,30.5 - parent: 0 - type: Transform -- uid: 7561 - type: CableApcExtension - components: - - pos: -12.5,30.5 - parent: 0 - type: Transform -- uid: 7562 - type: CableApcExtension - components: - - pos: -12.5,29.5 - parent: 0 - type: Transform -- uid: 7563 - type: CableApcExtension - components: - - pos: -12.5,28.5 - parent: 0 - type: Transform -- uid: 7564 - type: CableApcExtension - components: - - pos: -12.5,27.5 - parent: 0 - type: Transform -- uid: 7565 - type: CableApcExtension - components: - - pos: -9.5,29.5 - parent: 0 - type: Transform -- uid: 7566 - type: CableApcExtension - components: - - pos: -9.5,28.5 - parent: 0 - type: Transform -- uid: 7567 - type: CableApcExtension - components: - - pos: -9.5,27.5 - parent: 0 - type: Transform -- uid: 7568 - type: CableApcExtension - components: - - pos: -5.5,33.5 - parent: 0 - type: Transform -- uid: 7569 - type: CableApcExtension - components: - - pos: -4.5,33.5 - parent: 0 - type: Transform -- uid: 7570 - type: CableApcExtension - components: - - pos: -3.5,33.5 - parent: 0 - type: Transform -- uid: 7571 - type: CableApcExtension - components: - - pos: -2.5,33.5 - parent: 0 - type: Transform -- uid: 7572 - type: CableApcExtension - components: - - pos: -2.5,32.5 - parent: 0 - type: Transform -- uid: 7573 - type: CableApcExtension - components: - - pos: -2.5,31.5 - parent: 0 - type: Transform -- uid: 7574 - type: CableApcExtension - components: - - pos: -2.5,30.5 - parent: 0 - type: Transform -- uid: 7575 - type: CableApcExtension - components: - - pos: -2.5,29.5 - parent: 0 - type: Transform -- uid: 7576 - type: CableApcExtension - components: - - pos: -2.5,28.5 - parent: 0 - type: Transform -- uid: 7577 - type: CableApcExtension - components: - - pos: -2.5,27.5 - parent: 0 - type: Transform -- uid: 7578 - type: CableApcExtension - components: - - pos: -3.5,30.5 - parent: 0 - type: Transform -- uid: 7579 - type: CableApcExtension - components: - - pos: -4.5,30.5 - parent: 0 - type: Transform -- uid: 7580 - type: CableApcExtension - components: - - pos: -3.5,27.5 - parent: 0 - type: Transform -- uid: 7581 - type: CableApcExtension - components: - - pos: -4.5,27.5 - parent: 0 - type: Transform -- uid: 7582 - type: CableApcExtension - components: - - pos: 9.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7583 - type: CableApcExtension - components: - - pos: 9.5,32.5 - parent: 0 - type: Transform -- uid: 7584 - type: CableApcExtension - components: - - pos: 9.5,31.5 - parent: 0 - type: Transform -- uid: 7585 - type: CableApcExtension - components: - - pos: 8.5,31.5 - parent: 0 - type: Transform -- uid: 7586 - type: CableApcExtension - components: - - pos: 7.5,31.5 - parent: 0 - type: Transform -- uid: 7587 - type: CableApcExtension - components: - - pos: 6.5,31.5 - parent: 0 - type: Transform -- uid: 7588 - type: CableApcExtension - components: - - pos: 5.5,31.5 - parent: 0 - type: Transform -- uid: 7589 - type: CableApcExtension - components: - - pos: 4.5,31.5 - parent: 0 - type: Transform -- uid: 7590 - type: CableApcExtension - components: - - pos: 3.5,31.5 - parent: 0 - type: Transform -- uid: 7591 - type: CableApcExtension - components: - - pos: 2.5,31.5 - parent: 0 - type: Transform -- uid: 7592 - type: CableApcExtension - components: - - pos: 2.5,30.5 - parent: 0 - type: Transform -- uid: 7593 - type: CableApcExtension - components: - - pos: 2.5,29.5 - parent: 0 - type: Transform -- uid: 7594 - type: CableApcExtension - components: - - pos: 2.5,28.5 - parent: 0 - type: Transform -- uid: 7595 - type: CableApcExtension - components: - - pos: 2.5,27.5 - parent: 0 - type: Transform -- uid: 7596 - type: CableApcExtension - components: - - pos: 10.5,31.5 - parent: 0 - type: Transform -- uid: 7597 - type: CableApcExtension - components: - - pos: 11.5,31.5 - parent: 0 - type: Transform -- uid: 7598 - type: CableApcExtension - components: - - pos: 12.5,31.5 - parent: 0 - type: Transform -- uid: 7599 - type: CableApcExtension - components: - - pos: 13.5,31.5 - parent: 0 - type: Transform -- uid: 7600 - type: CableApcExtension - components: - - pos: 14.5,31.5 - parent: 0 - type: Transform -- uid: 7601 - type: CableApcExtension - components: - - pos: 15.5,31.5 - parent: 0 - type: Transform -- uid: 7602 - type: CableApcExtension - components: - - pos: 16.5,31.5 - parent: 0 - type: Transform -- uid: 7603 - type: CableApcExtension - components: - - pos: 17.5,31.5 - parent: 0 - type: Transform -- uid: 7604 - type: CableApcExtension - components: - - pos: 18.5,31.5 - parent: 0 - type: Transform -- uid: 7605 - type: CableApcExtension - components: - - pos: -18.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7606 - type: CableApcExtension - components: - - pos: 11.5,29.5 - parent: 0 - type: Transform -- uid: 7607 - type: CableApcExtension - components: - - pos: 11.5,28.5 - parent: 0 - type: Transform -- uid: 7608 - type: CableApcExtension - components: - - pos: 11.5,27.5 - parent: 0 - type: Transform -- uid: 7609 - type: CableApcExtension - components: - - pos: 11.5,26.5 - parent: 0 - type: Transform -- uid: 7610 - type: CableApcExtension - components: - - pos: 11.5,25.5 - parent: 0 - type: Transform -- uid: 7611 - type: CableApcExtension - components: - - pos: 11.5,24.5 - parent: 0 - type: Transform -- uid: 7612 - type: CableApcExtension - components: - - pos: 11.5,23.5 - parent: 0 - type: Transform -- uid: 7613 - type: CableApcExtension - components: - - pos: 12.5,26.5 - parent: 0 - type: Transform -- uid: 7614 - type: CableApcExtension - components: - - pos: 13.5,26.5 - parent: 0 - type: Transform -- uid: 7615 - type: CableApcExtension - components: - - pos: 10.5,23.5 - parent: 0 - type: Transform -- uid: 7616 - type: SpawnPointAssistant - components: - - pos: -19.5,16.5 - parent: 0 - type: Transform -- uid: 7617 - type: CableApcExtension - components: - - pos: 6.5,29.5 - parent: 0 - type: Transform -- uid: 7618 - type: CableApcExtension - components: - - pos: 6.5,28.5 - parent: 0 - type: Transform -- uid: 7619 - type: CableApcExtension - components: - - pos: 6.5,27.5 - parent: 0 - type: Transform -- uid: 7620 - type: CableApcExtension - components: - - pos: 6.5,26.5 - parent: 0 - type: Transform -- uid: 7621 - type: CableApcExtension - components: - - pos: 6.5,25.5 - parent: 0 - type: Transform -- uid: 7622 - type: CableApcExtension - components: - - pos: 6.5,24.5 - parent: 0 - type: Transform -- uid: 7623 - type: CableApcExtension - components: - - pos: 6.5,21.5 - parent: 0 - type: Transform -- uid: 7624 - type: CableApcExtension - components: - - pos: 3.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7625 - type: CableApcExtension - components: - - pos: 2.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7626 - type: CableApcExtension - components: - - pos: 1.5,41.5 - parent: 0 - type: Transform -- uid: 7627 - type: CableApcExtension - components: - - pos: 1.5,42.5 - parent: 0 - type: Transform -- uid: 7628 - type: CableApcExtension - components: - - pos: 1.5,43.5 - parent: 0 - type: Transform -- uid: 7629 - type: CableApcExtension - components: - - pos: 0.5,43.5 - parent: 0 - type: Transform -- uid: 7630 - type: CableApcExtension - components: - - pos: -0.5,43.5 - parent: 0 - type: Transform -- uid: 7631 - type: CableApcExtension - components: - - pos: -1.5,43.5 - parent: 0 - type: Transform -- uid: 7632 - type: CableApcExtension - components: - - pos: -2.5,43.5 - parent: 0 - type: Transform -- uid: 7633 - type: CableApcExtension - components: - - pos: -3.5,43.5 - parent: 0 - type: Transform -- uid: 7634 - type: CableApcExtension - components: - - pos: -4.5,43.5 - parent: 0 - type: Transform -- uid: 7635 - type: CableApcExtension - components: - - pos: -5.5,43.5 - parent: 0 - type: Transform -- uid: 7636 - type: CableApcExtension - components: - - pos: -6.5,43.5 - parent: 0 - type: Transform -- uid: 7637 - type: CableApcExtension - components: - - pos: -7.5,43.5 - parent: 0 - type: Transform -- uid: 7638 - type: CableApcExtension - components: - - pos: 1.5,44.5 - parent: 0 - type: Transform -- uid: 7639 - type: CableApcExtension - components: - - pos: -7.5,44.5 - parent: 0 - type: Transform -- uid: 7640 - type: CableApcExtension - components: - - pos: -2.5,44.5 - parent: 0 - type: Transform -- uid: 7641 - type: CableApcExtension - components: - - pos: 1.5,40.5 - parent: 0 - type: Transform -- uid: 7642 - type: CableApcExtension - components: - - pos: 1.5,39.5 - parent: 0 - type: Transform -- uid: 7643 - type: CableApcExtension - components: - - pos: 1.5,38.5 - parent: 0 - type: Transform -- uid: 7644 - type: CableApcExtension - components: - - pos: 1.5,37.5 - parent: 0 - type: Transform -- uid: 7645 - type: CableApcExtension - components: - - pos: 1.5,36.5 - parent: 0 - type: Transform -- uid: 7646 - type: CableApcExtension - components: - - pos: 1.5,35.5 - parent: 0 - type: Transform -- uid: 7647 - type: CableApcExtension - components: - - pos: 1.5,34.5 - parent: 0 - type: Transform -- uid: 7648 - type: SeedExtractor - components: - - pos: -4.5,61.5 - parent: 0 - type: Transform -- uid: 7649 - type: CableApcExtension - components: - - pos: 11.5,41.5 - parent: 0 - type: Transform -- uid: 7650 - type: CableApcExtension - components: - - pos: 11.5,40.5 - parent: 0 - type: Transform -- uid: 7651 - type: CableApcExtension - components: - - pos: 11.5,39.5 - parent: 0 - type: Transform -- uid: 7652 - type: CableApcExtension - components: - - pos: 11.5,38.5 - parent: 0 - type: Transform -- uid: 7653 - type: CableApcExtension - components: - - pos: 11.5,37.5 - parent: 0 - type: Transform -- uid: 7654 - type: CableApcExtension - components: - - pos: 11.5,36.5 - parent: 0 - type: Transform -- uid: 7655 - type: CableApcExtension - components: - - pos: 11.5,35.5 - parent: 0 - type: Transform -- uid: 7656 - type: CableApcExtension - components: - - pos: 10.5,35.5 - parent: 0 - type: Transform -- uid: 7657 - type: CableApcExtension - components: - - pos: 9.5,35.5 - parent: 0 - type: Transform -- uid: 7658 - type: CableApcExtension - components: - - pos: 8.5,35.5 - parent: 0 - type: Transform -- uid: 7659 - type: CableApcExtension - components: - - pos: 7.5,35.5 - parent: 0 - type: Transform -- uid: 7660 - type: CableApcExtension - components: - - pos: 6.5,35.5 - parent: 0 - type: Transform -- uid: 7661 - type: CableApcExtension - components: - - pos: 5.5,35.5 - parent: 0 - type: Transform -- uid: 7662 - type: CableApcExtension - components: - - pos: 5.5,36.5 - parent: 0 - type: Transform -- uid: 7663 - type: CableApcExtension - components: - - pos: 5.5,37.5 - parent: 0 - type: Transform -- uid: 7664 - type: CableApcExtension - components: - - pos: 5.5,38.5 - parent: 0 - type: Transform -- uid: 7665 - type: CableApcExtension - components: - - pos: 5.5,39.5 - parent: 0 - type: Transform -- uid: 7666 - type: CableApcExtension - components: - - pos: 5.5,40.5 - parent: 0 - type: Transform -- uid: 7667 - type: CableApcExtension - components: - - pos: 5.5,41.5 - parent: 0 - type: Transform -- uid: 7668 - type: CableApcExtension - components: - - pos: 5.5,42.5 - parent: 0 - type: Transform -- uid: 7669 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 13.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7670 - type: PottedPlantRandom - components: - - pos: 7.5,48.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 7671 - type: CheapRollerBed - components: - - pos: 1.5189121,50.574677 - parent: 0 - type: Transform -- uid: 7672 - type: ChessBoard - components: - - pos: -2.5015278,53.628605 - parent: 0 - type: Transform -- uid: 7673 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -13.5,57.5 - parent: 0 - type: Transform -- uid: 7674 - type: ReinforcedWindow - components: - - pos: -8.5,28.5 - parent: 0 - type: Transform -- uid: 7675 - type: CableApcExtension - components: - - pos: -9.5,15.5 - parent: 0 - type: Transform -- uid: 7676 - type: WindowReinforcedDirectional - components: - - pos: -2.5,56.5 - parent: 0 - type: Transform -- uid: 7677 - type: HighSecCommandLocked - components: - - name: AI Upload - type: MetaData - - pos: -10.5,11.5 - parent: 0 - type: Transform -- uid: 7678 - type: CableApcExtension - components: - - pos: 10.5,41.5 - parent: 0 - type: Transform -- uid: 7679 - type: CableApcExtension - components: - - pos: 9.5,41.5 - parent: 0 - type: Transform -- uid: 7680 - type: CableApcExtension - components: - - pos: 8.5,41.5 - parent: 0 - type: Transform -- uid: 7681 - type: CableApcExtension - components: - - pos: 7.5,41.5 - parent: 0 - type: Transform -- uid: 7682 - type: CableApcExtension - components: - - pos: 6.5,41.5 - parent: 0 - type: Transform -- uid: 7683 - type: CableApcExtension - components: - - pos: 12.5,39.5 - parent: 0 - type: Transform -- uid: 7684 - type: CableApcExtension - components: - - pos: 13.5,39.5 - parent: 0 - type: Transform -- uid: 7685 - type: CableApcExtension - components: - - pos: 14.5,39.5 - parent: 0 - type: Transform -- uid: 7686 - type: CableApcExtension - components: - - pos: 15.5,39.5 - parent: 0 - type: Transform -- uid: 7687 - type: ReinforcedWindow - components: - - pos: -11.5,27.5 - parent: 0 - type: Transform -- uid: 7688 - type: SignSecureMed - components: - - pos: -14.5,50.5 - parent: 0 - type: Transform -- uid: 7689 - type: ReinforcedWindow - components: - - pos: -13.5,26.5 - parent: 0 - type: Transform -- uid: 7690 - type: ReinforcedWindow - components: - - pos: 10.5,49.5 - parent: 0 - type: Transform -- uid: 7691 - type: Grille - components: - - pos: 9.5,49.5 - parent: 0 - type: Transform -- uid: 7692 - type: Grille - components: - - pos: 5.5,46.5 - parent: 0 - type: Transform -- uid: 7693 - type: CableMV - components: - - pos: 5.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7694 - type: CableApcExtension - components: - - pos: 16.5,39.5 - parent: 0 - type: Transform -- uid: 7695 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,41.5 - parent: 0 - type: Transform -- uid: 7696 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,42.5 - parent: 0 - type: Transform -- uid: 7697 - type: Carpet - components: - - pos: 9.5,47.5 - parent: 0 - type: Transform -- uid: 7698 - type: CableApcExtension - components: - - pos: 17.5,41.5 - parent: 0 - type: Transform -- uid: 7699 - type: CableMV - components: - - pos: 28.5,37.5 - parent: 0 - type: Transform -- uid: 7700 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 7.5,44.5 - parent: 0 - type: Transform -- uid: 7701 - type: CableApcExtension - components: - - pos: 12.5,35.5 - parent: 0 - type: Transform -- uid: 7702 - type: CableApcExtension - components: - - pos: 13.5,35.5 - parent: 0 - type: Transform -- uid: 7703 - type: CableApcExtension - components: - - pos: 14.5,35.5 - parent: 0 - type: Transform -- uid: 7704 - type: CableApcExtension - components: - - pos: 15.5,35.5 - parent: 0 - type: Transform -- uid: 7705 - type: CableApcExtension - components: - - pos: 16.5,35.5 - parent: 0 - type: Transform -- uid: 7706 - type: CableApcExtension - components: - - pos: 17.5,35.5 - parent: 0 - type: Transform -- uid: 7707 - type: CableApcExtension - components: - - pos: 18.5,35.5 - parent: 0 - type: Transform -- uid: 7708 - type: CableApcExtension - components: - - pos: 19.5,35.5 - parent: 0 - type: Transform -- uid: 7709 - type: WallReinforced - components: - - pos: 16.5,48.5 - parent: 0 - type: Transform -- uid: 7710 - type: CableMV - components: - - pos: 25.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7711 - type: CableMV - components: - - pos: 26.5,37.5 - parent: 0 - type: Transform -- uid: 7712 - type: Grille - components: - - pos: 8.5,43.5 - parent: 0 - type: Transform -- uid: 7713 - type: CableApcExtension - components: - - pos: 17.5,44.5 - parent: 0 - type: Transform -- uid: 7714 - type: Grille - components: - - pos: 2.5,48.5 - parent: 0 - type: Transform -- uid: 7715 - type: CableApcExtension - components: - - pos: 9.5,42.5 - parent: 0 - type: Transform -- uid: 7716 - type: ReinforcedWindow - components: - - pos: 13.5,46.5 - parent: 0 - type: Transform -- uid: 7717 - type: Grille - components: - - pos: 3.5,45.5 - parent: 0 - type: Transform -- uid: 7718 - type: CableApcExtension - components: - - pos: 17.5,40.5 - parent: 0 - type: Transform -- uid: 7719 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 9.5,41.5 - parent: 0 - type: Transform -- uid: 7720 - type: WallReinforced - components: - - pos: 15.5,47.5 - parent: 0 - type: Transform -- uid: 7721 - type: Grille - components: - - pos: 10.5,43.5 - parent: 0 - type: Transform -- uid: 7722 - type: WallReinforced - components: - - pos: 12.5,49.5 - parent: 0 - type: Transform -- uid: 7723 - type: CableApcExtension - components: - - pos: 9.5,47.5 - parent: 0 - type: Transform -- uid: 7724 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 17.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7725 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 17.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7726 - type: ReinforcedWindow - components: - - pos: 4.5,43.5 - parent: 0 - type: Transform -- uid: 7727 - type: Grille - components: - - pos: -2.5,58.5 - parent: 0 - type: Transform -- uid: 7728 - type: Grille - components: - - pos: 0.5,54.5 - parent: 0 - type: Transform -- uid: 7729 - type: ReinforcedWindow - components: - - pos: 1.5,49.5 - parent: 0 - type: Transform -- uid: 7730 - type: Grille - components: - - pos: 2.5,59.5 - parent: 0 - type: Transform -- uid: 7731 - type: WallReinforced - components: - - pos: 2.5,58.5 - parent: 0 - type: Transform -- uid: 7732 - type: AirlockSecurityGlassLocked - components: - - pos: -7.5,49.5 - parent: 0 - type: Transform -- uid: 7733 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7734 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7735 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7736 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7737 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7738 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,58.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7739 - type: ClothingHeadHelmetEVA - components: - - pos: -16.735516,45.511223 - parent: 0 - type: Transform -- uid: 7740 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7741 - type: WallReinforced - components: - - pos: -9.5,49.5 - parent: 0 - type: Transform -- uid: 7742 - type: Airlock - components: - - pos: -14.5,55.5 - parent: 0 - type: Transform -- uid: 7743 - type: ReinforcedWindow - components: - - pos: -5.5,28.5 - parent: 0 - type: Transform -- uid: 7744 - type: ClothingHeadHatChef - components: - - pos: -12.479112,53.69428 - parent: 0 - type: Transform -- uid: 7745 - type: ShuttersNormalOpen - components: - - pos: -13.5,26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7750 - type: SignalReceiver -- uid: 7746 - type: ShuttersNormalOpen - components: - - pos: -10.5,26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7750 - type: SignalReceiver -- uid: 7747 - type: Grille - components: - - pos: -8.5,27.5 - parent: 0 - type: Transform -- uid: 7748 - type: Grille - components: - - pos: -7.5,26.5 - parent: 0 - type: Transform -- uid: 7749 - type: ShuttersNormalOpen - components: - - pos: -6.5,26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 7750 - type: SignalReceiver -- uid: 7750 - type: SignalButton - components: - - pos: -5.5,29.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6250 - - port: Toggle - uid: 6251 - - port: Toggle - uid: 7749 - - port: Toggle - uid: 6261 - - port: Toggle - uid: 6260 - - port: Toggle - uid: 7746 - - port: Toggle - uid: 6259 - - port: Toggle - uid: 7745 - type: SignalTransmitter -- uid: 7751 - type: Grille - components: - - pos: -10.5,26.5 - parent: 0 - type: Transform -- uid: 7752 - type: Grille - components: - - pos: -11.5,27.5 - parent: 0 - type: Transform -- uid: 7753 - type: CableMV - components: - - pos: -8.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7754 - type: CableMV - components: - - pos: -11.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7755 - type: CableMV - components: - - pos: -5.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7756 - type: CableApcExtension - components: - - pos: -10.5,46.5 - parent: 0 - type: Transform -- uid: 7757 - type: CableApcExtension - components: - - pos: -10.5,45.5 - parent: 0 - type: Transform -- uid: 7758 - type: CableApcExtension - components: - - pos: -10.5,44.5 - parent: 0 - type: Transform -- uid: 7759 - type: CableApcExtension - components: - - pos: -10.5,43.5 - parent: 0 - type: Transform -- uid: 7760 - type: CableApcExtension - components: - - pos: -10.5,42.5 - parent: 0 - type: Transform -- uid: 7761 - type: CableApcExtension - components: - - pos: -10.5,41.5 - parent: 0 - type: Transform -- uid: 7762 - type: CableApcExtension - components: - - pos: -10.5,40.5 - parent: 0 - type: Transform -- uid: 7763 - type: CableApcExtension - components: - - pos: -11.5,40.5 - parent: 0 - type: Transform -- uid: 7764 - type: CableApcExtension - components: - - pos: -12.5,40.5 - parent: 0 - type: Transform -- uid: 7765 - type: CableMV - components: - - pos: -5.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7766 - type: WallReinforced - components: - - pos: -13.5,52.5 - parent: 0 - type: Transform -- uid: 7767 - type: CableApcExtension - components: - - pos: -11.5,44.5 - parent: 0 - type: Transform -- uid: 7768 - type: CableApcExtension - components: - - pos: -12.5,44.5 - parent: 0 - type: Transform -- uid: 7769 - type: CableApcExtension - components: - - pos: -13.5,44.5 - parent: 0 - type: Transform -- uid: 7770 - type: CableApcExtension - components: - - pos: -14.5,44.5 - parent: 0 - type: Transform -- uid: 7771 - type: CableApcExtension - components: - - pos: -15.5,44.5 - parent: 0 - type: Transform -- uid: 7772 - type: WallReinforced - components: - - pos: -9.5,51.5 - parent: 0 - type: Transform -- uid: 7773 - type: WallReinforced - components: - - pos: -4.5,49.5 - parent: 0 - type: Transform -- uid: 7774 - type: WallReinforced - components: - - pos: -12.5,49.5 - parent: 0 - type: Transform -- uid: 7775 - type: WallReinforced - components: - - pos: -13.5,51.5 - parent: 0 - type: Transform -- uid: 7776 - type: WallReinforced - components: - - pos: -5.5,52.5 - parent: 0 - type: Transform -- uid: 7777 - type: WallReinforced - components: - - pos: -2.5,49.5 - parent: 0 - type: Transform -- uid: 7778 - type: WallReinforced - components: - - pos: -5.5,49.5 - parent: 0 - type: Transform -- uid: 7779 - type: WallReinforced - components: - - pos: -9.5,50.5 - parent: 0 - type: Transform -- uid: 7780 - type: WallReinforced - components: - - pos: -5.5,51.5 - parent: 0 - type: Transform -- uid: 7781 - type: WallReinforced - components: - - pos: -6.5,49.5 - parent: 0 - type: Transform -- uid: 7782 - type: WallReinforced - components: - - pos: -8.5,52.5 - parent: 0 - type: Transform -- uid: 7783 - type: WallReinforced - components: - - pos: -13.5,49.5 - parent: 0 - type: Transform -- uid: 7784 - type: WallReinforced - components: - - pos: -4.5,52.5 - parent: 0 - type: Transform -- uid: 7785 - type: WallReinforced - components: - - pos: 5.5,48.5 - parent: 0 - type: Transform -- uid: 7786 - type: GasPipeStraight - components: - - pos: 0.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7787 - type: CableMV - components: - - pos: -12.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7788 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -7.5,57.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7789 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7790 - type: WallReinforced - components: - - pos: -18.5,47.5 - parent: 0 - type: Transform -- uid: 7791 - type: WallReinforced - components: - - pos: -18.5,46.5 - parent: 0 - type: Transform -- uid: 7792 - type: WallReinforced - components: - - pos: -1.5,52.5 - parent: 0 - type: Transform -- uid: 7793 - type: CableMV - components: - - pos: 9.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7794 - type: CableApcExtension - components: - - pos: 15.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7795 - type: WallReinforced - components: - - pos: -3.5,61.5 - parent: 0 - type: Transform -- uid: 7796 - type: SinkWide - components: - - pos: -6.5,61.5 - parent: 0 - type: Transform -- uid: 7797 - type: Table - components: - - pos: -6.5,56.5 - parent: 0 - type: Transform -- uid: 7798 - type: HydroponicsToolMiniHoe - components: - - pos: -5.4322367,61.397404 - parent: 0 - type: Transform -- uid: 7799 - type: CableApcExtension - components: - - pos: -7.5,47.5 - parent: 0 - type: Transform -- uid: 7800 - type: CableApcExtension - components: - - pos: -6.5,48.5 - parent: 0 - type: Transform -- uid: 7801 - type: WallReinforced - components: - - pos: -18.5,49.5 - parent: 0 - type: Transform -- uid: 7802 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -5.5,56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7803 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 1.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7804 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,54.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7805 - type: AirlockGlass - components: - - pos: -6.5,58.5 - parent: 0 - type: Transform -- uid: 7806 - type: RandomSpawner - components: - - pos: -14.5,51.5 - parent: 0 - type: Transform -- uid: 7807 - type: AirlockGlass - components: - - pos: -3.5,52.5 - parent: 0 - type: Transform -- uid: 7808 - type: AirlockGlass - components: - - pos: -7.5,52.5 - parent: 0 - type: Transform -- uid: 7809 - type: AirlockGlass - components: - - pos: -11.5,52.5 - parent: 0 - type: Transform -- uid: 7810 - type: AirlockSecurityGlassLocked - components: - - pos: -11.5,49.5 - parent: 0 - type: Transform -- uid: 7811 - type: WallReinforced - components: - - pos: -13.5,42.5 - parent: 0 - type: Transform -- uid: 7812 - type: WallReinforced - components: - - pos: -13.5,41.5 - parent: 0 - type: Transform -- uid: 7813 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7814 - type: CableApcExtension - components: - - pos: -8.5,48.5 - parent: 0 - type: Transform -- uid: 7815 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7816 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -14.5,52.5 - parent: 0 - type: Transform -- uid: 7817 - type: ToiletEmpty - components: - - rot: 1.5707963267948966 rad - pos: -14.5,54.5 - parent: 0 - type: Transform -- uid: 7818 - type: AirlockSecurityGlassLocked - components: - - pos: 0.5,49.5 - parent: 0 - type: Transform -- uid: 7819 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 0.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7820 - type: Grille - components: - - pos: -15.5,52.5 - parent: 0 - type: Transform -- uid: 7821 - type: WallReinforced - components: - - pos: -13.5,40.5 - parent: 0 - type: Transform -- uid: 7822 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7823 - type: CableApcExtension - components: - - pos: -12.5,17.5 - parent: 0 - type: Transform -- uid: 7824 - type: CableApcExtension - components: - - pos: -10.5,19.5 - parent: 0 - type: Transform -- uid: 7825 - type: WallReinforced - components: - - pos: -9.5,62.5 - parent: 0 - type: Transform -- uid: 7826 - type: WallReinforced - components: - - pos: -1.5,55.5 - parent: 0 - type: Transform -- uid: 7827 - type: WallReinforced - components: - - pos: -14.5,43.5 - parent: 0 - type: Transform -- uid: 7828 - type: CableApcExtension - components: - - pos: 0.5,49.5 - parent: 0 - type: Transform -- uid: 7829 - type: SoapHomemade - components: - - pos: -14.541612,57.459904 - parent: 0 - type: Transform -- uid: 7830 - type: Grille - components: - - pos: -5.5,27.5 - parent: 0 - type: Transform -- uid: 7831 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -8.5,56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7832 - type: GasPipeBend - components: - - pos: -4.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7833 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7834 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7835 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7836 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7837 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7838 - type: CableApcExtension - components: - - pos: -14.5,55.5 - parent: 0 - type: Transform -- uid: 7839 - type: CableApcExtension - components: - - pos: -12.5,57.5 - parent: 0 - type: Transform -- uid: 7840 - type: CableApcExtension - components: - - pos: -8.5,55.5 - parent: 0 - type: Transform -- uid: 7841 - type: CableApcExtension - components: - - pos: -11.5,49.5 - parent: 0 - type: Transform -- uid: 7842 - type: CableApcExtension - components: - - pos: -11.5,48.5 - parent: 0 - type: Transform -- uid: 7843 - type: CableApcExtension - components: - - pos: -11.5,55.5 - parent: 0 - type: Transform -- uid: 7844 - type: CableApcExtension - components: - - pos: -11.5,54.5 - parent: 0 - type: Transform -- uid: 7845 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7846 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7847 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -12.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7848 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7849 - type: Grille - components: - - pos: 10.5,49.5 - parent: 0 - type: Transform -- uid: 7850 - type: Grille - components: - - pos: 13.5,47.5 - parent: 0 - type: Transform -- uid: 7851 - type: Grille - components: - - pos: 5.5,45.5 - parent: 0 - type: Transform -- uid: 7852 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 4.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7853 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7854 - type: DisposalJunction - components: - - pos: 14.5,41.5 - parent: 0 - type: Transform -- uid: 7855 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7856 - type: CableMV - components: - - pos: 9.5,42.5 - parent: 0 - type: Transform -- uid: 7857 - type: CableMV - components: - - pos: 9.5,46.5 - parent: 0 - type: Transform -- uid: 7858 - type: CableMV - components: - - pos: 7.5,46.5 - parent: 0 - type: Transform -- uid: 7859 - type: CableMV - components: - - pos: 4.5,42.5 - parent: 0 - type: Transform -- uid: 7860 - type: DisposalBend - components: - - pos: 9.5,44.5 - parent: 0 - type: Transform -- uid: 7861 - type: DisposalUnit - components: - - pos: 7.5,44.5 - parent: 0 - type: Transform -- uid: 7862 - type: ReinforcedWindow - components: - - pos: 15.5,46.5 - parent: 0 - type: Transform -- uid: 7863 - type: CableMV - components: - - pos: 14.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7864 - type: CableMV - components: - - pos: 13.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7865 - type: WallReinforced - components: - - pos: 15.5,48.5 - parent: 0 - type: Transform -- uid: 7866 - type: WallReinforced - components: - - pos: 18.5,48.5 - parent: 0 - type: Transform -- uid: 7867 - type: CableMV - components: - - pos: 29.5,37.5 - parent: 0 - type: Transform -- uid: 7868 - type: Grille - components: - - pos: 13.5,45.5 - parent: 0 - type: Transform -- uid: 7869 - type: CableMV - components: - - pos: 6.5,46.5 - parent: 0 - type: Transform -- uid: 7870 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 15.5,40.5 - parent: 0 - type: Transform -- uid: 7871 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,41.5 - parent: 0 - type: Transform -- uid: 7872 - type: Grille - components: - - pos: 17.5,48.5 - parent: 0 - type: Transform -- uid: 7873 - type: Grille - components: - - pos: 2.5,47.5 - parent: 0 - type: Transform -- uid: 7874 - type: ReinforcedWindow - components: - - pos: 2.5,47.5 - parent: 0 - type: Transform -- uid: 7875 - type: CableApcExtension - components: - - pos: 17.5,46.5 - parent: 0 - type: Transform -- uid: 7876 - type: CableApcExtension - components: - - pos: 9.5,46.5 - parent: 0 - type: Transform -- uid: 7877 - type: Grille - components: - - pos: 14.5,43.5 - parent: 0 - type: Transform -- uid: 7878 - type: CableApcExtension - components: - - pos: 8.5,44.5 - parent: 0 - type: Transform -- uid: 7879 - type: CableApcExtension - components: - - pos: -11.5,31.5 - parent: 0 - type: Transform -- uid: 7880 - type: CableApcExtension - components: - - pos: -11.5,32.5 - parent: 0 - type: Transform -- uid: 7881 - type: CableApcExtension - components: - - pos: -11.5,33.5 - parent: 0 - type: Transform -- uid: 7882 - type: CableApcExtension - components: - - pos: -11.5,34.5 - parent: 0 - type: Transform -- uid: 7883 - type: CableApcExtension - components: - - pos: -11.5,35.5 - parent: 0 - type: Transform -- uid: 7884 - type: CableApcExtension - components: - - pos: -11.5,36.5 - parent: 0 - type: Transform -- uid: 7885 - type: CableApcExtension - components: - - pos: -11.5,37.5 - parent: 0 - type: Transform -- uid: 7886 - type: CableApcExtension - components: - - pos: -11.5,38.5 - parent: 0 - type: Transform -- uid: 7887 - type: CableApcExtension - components: - - pos: -12.5,36.5 - parent: 0 - type: Transform -- uid: 7888 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 7.5,31.5 - parent: 0 - type: Transform -- uid: 7889 - type: WallReinforced - components: - - pos: -17.5,32.5 - parent: 0 - type: Transform -- uid: 7890 - type: WallReinforced - components: - - pos: -15.5,32.5 - parent: 0 - type: Transform -- uid: 7891 - type: WallReinforced - components: - - pos: -14.5,32.5 - parent: 0 - type: Transform -- uid: 7892 - type: CableApcExtension - components: - - pos: -12.5,31.5 - parent: 0 - type: Transform -- uid: 7893 - type: CableApcExtension - components: - - pos: -13.5,31.5 - parent: 0 - type: Transform -- uid: 7894 - type: CableApcExtension - components: - - pos: -10.5,34.5 - parent: 0 - type: Transform -- uid: 7895 - type: CableApcExtension - components: - - pos: -9.5,34.5 - parent: 0 - type: Transform -- uid: 7896 - type: WallReinforced - components: - - pos: -18.5,32.5 - parent: 0 - type: Transform -- uid: 7897 - type: CableApcExtension - components: - - pos: -17.5,27.5 - parent: 0 - type: Transform -- uid: 7898 - type: CableMV - components: - - pos: -15.5,31.5 - parent: 0 - type: Transform -- uid: 7899 - type: CableMV - components: - - pos: -16.5,31.5 - parent: 0 - type: Transform -- uid: 7900 - type: APCBasic - components: - - pos: -17.5,32.5 - parent: 0 - type: Transform -- uid: 7901 - type: WallReinforced - components: - - pos: -16.5,32.5 - parent: 0 - type: Transform -- uid: 7902 - type: CableMV - components: - - pos: -17.5,31.5 - parent: 0 - type: Transform -- uid: 7903 - type: CableMV - components: - - pos: 12.5,41.5 - parent: 0 - type: Transform -- uid: 7904 - type: CableMV - components: - - pos: 13.5,41.5 - parent: 0 - type: Transform -- uid: 7905 - type: CableMV - components: - - pos: 14.5,41.5 - parent: 0 - type: Transform -- uid: 7906 - type: CableMV - components: - - pos: 14.5,42.5 - parent: 0 - type: Transform -- uid: 7907 - type: CableApcExtension - components: - - pos: 11.5,46.5 - parent: 0 - type: Transform -- uid: 7908 - type: CableApcExtension - components: - - pos: 10.5,44.5 - parent: 0 - type: Transform -- uid: 7909 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7910 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -6.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7911 - type: CableApcExtension - components: - - pos: 9.5,45.5 - parent: 0 - type: Transform -- uid: 7912 - type: CableApcExtension - components: - - pos: -15.5,30.5 - parent: 0 - type: Transform -- uid: 7913 - type: WallReinforced - components: - - pos: 2.5,56.5 - parent: 0 - type: Transform -- uid: 7914 - type: WallReinforced - components: - - pos: 2.5,55.5 - parent: 0 - type: Transform -- uid: 7915 - type: WallReinforced - components: - - pos: 2.5,54.5 - parent: 0 - type: Transform -- uid: 7916 - type: ReinforcedWindow - components: - - pos: -5.5,58.5 - parent: 0 - type: Transform -- uid: 7917 - type: WallReinforced - components: - - pos: 24.5,20.5 - parent: 0 - type: Transform -- uid: 7918 - type: PottedPlantRandom - components: - - pos: 0.5,17.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 7919 - type: PottedPlantRandom - components: - - pos: 8.5,17.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 7920 - type: TintedWindow - components: - - pos: -0.5,13.5 - parent: 0 - type: Transform -- uid: 7921 - type: AirlockGlass - components: - - pos: 9.5,14.5 - parent: 0 - type: Transform -- uid: 7922 - type: AirlockGlass - components: - - pos: 6.5,11.5 - parent: 0 - type: Transform -- uid: 7923 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 1.5,15.5 - parent: 0 - type: Transform -- uid: 7924 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 2.5,15.5 - parent: 0 - type: Transform -- uid: 7925 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 3.5,15.5 - parent: 0 - type: Transform -- uid: 7926 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 5.5,15.5 - parent: 0 - type: Transform -- uid: 7927 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 6.5,15.5 - parent: 0 - type: Transform -- uid: 7928 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 7.5,15.5 - parent: 0 - type: Transform -- uid: 7929 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 7.5,14.5 - parent: 0 - type: Transform -- uid: 7930 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 6.5,14.5 - parent: 0 - type: Transform -- uid: 7931 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 5.5,14.5 - parent: 0 - type: Transform -- uid: 7932 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 3.5,14.5 - parent: 0 - type: Transform -- uid: 7933 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 2.5,14.5 - parent: 0 - type: Transform -- uid: 7934 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 1.5,14.5 - parent: 0 - type: Transform -- uid: 7935 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 0.5,15.5 - parent: 0 - type: Transform -- uid: 7936 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 8.5,15.5 - parent: 0 - type: Transform -- uid: 7937 - type: Grille - components: - - pos: 3.5,40.5 - parent: 0 - type: Transform -- uid: 7938 - type: Grille - components: - - pos: 3.5,37.5 - parent: 0 - type: Transform -- uid: 7939 - type: Grille - components: - - pos: -5.5,42.5 - parent: 0 - type: Transform -- uid: 7940 - type: Grille - components: - - pos: -5.5,44.5 - parent: 0 - type: Transform -- uid: 7941 - type: Table - components: - - pos: 4.5,12.5 - parent: 0 - type: Transform -- uid: 7942 - type: Table - components: - - pos: 8.5,12.5 - parent: 0 - type: Transform -- uid: 7943 - type: PottedPlantRandom - components: - - pos: 10.5,15.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 7944 - type: ReinforcedWindow - components: - - pos: 17.5,24.5 - parent: 0 - type: Transform -- uid: 7945 - type: CableMV - components: - - pos: 22.5,40.5 - parent: 0 - type: Transform -- uid: 7946 - type: SubstationBasic - components: - - name: West Dorms Substation - type: MetaData - - pos: 22.5,40.5 - parent: 0 - type: Transform -- uid: 7947 - type: WallReinforced - components: - - pos: 26.5,22.5 - parent: 0 - type: Transform -- uid: 7948 - type: WallReinforced - components: - - pos: 26.5,21.5 - parent: 0 - type: Transform -- uid: 7949 - type: WallReinforced - components: - - pos: 26.5,20.5 - parent: 0 - type: Transform -- uid: 7950 - type: WallReinforced - components: - - pos: 25.5,20.5 - parent: 0 - type: Transform -- uid: 7951 - type: CableMV - components: - - pos: 22.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7952 - type: CableMV - components: - - pos: 27.5,37.5 - parent: 0 - type: Transform -- uid: 7953 - type: SignElectricalMed - components: - - pos: 21.5,38.5 - parent: 0 - type: Transform -- uid: 7954 - type: WallReinforced - components: - - pos: 19.5,27.5 - parent: 0 - type: Transform -- uid: 7955 - type: ReinforcedWindow - components: - - pos: 19.5,46.5 - parent: 0 - type: Transform -- uid: 7956 - type: ReinforcedWindow - components: - - pos: 19.5,42.5 - parent: 0 - type: Transform -- uid: 7957 - type: Grille - components: - - pos: -11.5,46.5 - parent: 0 - type: Transform -- uid: 7958 - type: Grille - components: - - pos: -11.5,43.5 - parent: 0 - type: Transform -- uid: 7959 - type: ReinforcedWindow - components: - - pos: 19.5,44.5 - parent: 0 - type: Transform -- uid: 7960 - type: ReinforcedWindow - components: - - pos: 17.5,23.5 - parent: 0 - type: Transform -- uid: 7961 - type: ReinforcedWindow - components: - - pos: 15.5,44.5 - parent: 0 - type: Transform -- uid: 7962 - type: SolarPanel - components: - - pos: -27.5,52.5 - parent: 0 - type: Transform -- uid: 7963 - type: Grille - components: - - pos: 22.5,26.5 - parent: 0 - type: Transform -- uid: 7964 - type: Grille - components: - - pos: 19.5,21.5 - parent: 0 - type: Transform -- uid: 7965 - type: WallReinforced - components: - - pos: 17.5,21.5 - parent: 0 - type: Transform -- uid: 7966 - type: WallReinforced - components: - - pos: 23.5,20.5 - parent: 0 - type: Transform -- uid: 7967 - type: WallReinforced - components: - - pos: 22.5,20.5 - parent: 0 - type: Transform -- uid: 7968 - type: ReinforcedWindow - components: - - pos: 19.5,24.5 - parent: 0 - type: Transform -- uid: 7969 - type: WallReinforced - components: - - pos: 17.5,20.5 - parent: 0 - type: Transform -- uid: 7970 - type: WallReinforced - components: - - pos: 19.5,20.5 - parent: 0 - type: Transform -- uid: 7971 - type: WallReinforced - components: - - pos: 18.5,20.5 - parent: 0 - type: Transform -- uid: 7972 - type: ReinforcedWindow - components: - - pos: 29.5,7.5 - parent: 0 - type: Transform -- uid: 7973 - type: ReinforcedWindow - components: - - pos: 31.5,7.5 - parent: 0 - type: Transform -- uid: 7974 - type: WallReinforced - components: - - pos: 29.5,6.5 - parent: 0 - type: Transform -- uid: 7975 - type: WallReinforced - components: - - pos: 29.5,5.5 - parent: 0 - type: Transform -- uid: 7976 - type: SolarPanel - components: - - pos: -26.5,54.5 - parent: 0 - type: Transform -- uid: 7977 - type: WallReinforced - components: - - pos: 31.5,5.5 - parent: 0 - type: Transform -- uid: 7978 - type: WallReinforced - components: - - pos: 31.5,6.5 - parent: 0 - type: Transform -- uid: 7979 - type: WallReinforced - components: - - pos: 31.5,8.5 - parent: 0 - type: Transform -- uid: 7980 - type: WallReinforced - components: - - pos: 31.5,9.5 - parent: 0 - type: Transform -- uid: 7981 - type: WallReinforced - components: - - pos: 32.5,9.5 - parent: 0 - type: Transform -- uid: 7982 - type: WallReinforced - components: - - pos: 33.5,9.5 - parent: 0 - type: Transform -- uid: 7983 - type: WallReinforced - components: - - pos: 32.5,5.5 - parent: 0 - type: Transform -- uid: 7984 - type: WallReinforced - components: - - pos: 33.5,5.5 - parent: 0 - type: Transform -- uid: 7985 - type: WallReinforced - components: - - pos: 34.5,5.5 - parent: 0 - type: Transform -- uid: 7986 - type: WallReinforced - components: - - pos: 34.5,6.5 - parent: 0 - type: Transform -- uid: 7987 - type: Grille - components: - - pos: -13.5,29.5 - parent: 0 - type: Transform -- uid: 7988 - type: WallReinforced - components: - - pos: 34.5,9.5 - parent: 0 - type: Transform -- uid: 7989 - type: WallReinforced - components: - - pos: 34.5,8.5 - parent: 0 - type: Transform -- uid: 7990 - type: WallReinforced - components: - - pos: 29.5,8.5 - parent: 0 - type: Transform -- uid: 7991 - type: WallReinforced - components: - - pos: 29.5,9.5 - parent: 0 - type: Transform -- uid: 7992 - type: Grille - components: - - pos: -10.5,29.5 - parent: 0 - type: Transform -- uid: 7993 - type: CableHV - components: - - pos: -27.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7994 - type: WallSolid - components: - - pos: 19.5,12.5 - parent: 0 - type: Transform -- uid: 7995 - type: Grille - components: - - pos: -7.5,29.5 - parent: 0 - type: Transform -- uid: 7996 - type: WallSolid - components: - - pos: 20.5,12.5 - parent: 0 - type: Transform -- uid: 7997 - type: WallSolid - components: - - pos: 20.5,11.5 - parent: 0 - type: Transform -- uid: 7998 - type: WallSolid - components: - - pos: 21.5,11.5 - parent: 0 - type: Transform -- uid: 7999 - type: WallSolid - components: - - pos: 22.5,11.5 - parent: 0 - type: Transform -- uid: 8000 - type: Grille - components: - - pos: -3.5,26.5 - parent: 0 - type: Transform -- uid: 8001 - type: Grille - components: - - pos: -1.5,26.5 - parent: 0 - type: Transform -- uid: 8002 - type: Grille - components: - - pos: -0.5,27.5 - parent: 0 - type: Transform -- uid: 8003 - type: Grille - components: - - pos: -0.5,28.5 - parent: 0 - type: Transform -- uid: 8004 - type: Grille - components: - - pos: 1.5,26.5 - parent: 0 - type: Transform -- uid: 8005 - type: Grille - components: - - pos: 3.5,27.5 - parent: 0 - type: Transform -- uid: 8006 - type: Grille - components: - - pos: 3.5,28.5 - parent: 0 - type: Transform -- uid: 8007 - type: Grille - components: - - pos: 1.5,29.5 - parent: 0 - type: Transform -- uid: 8008 - type: Grille - components: - - pos: -0.5,30.5 - parent: 0 - type: Transform -- uid: 8009 - type: Grille - components: - - pos: -1.5,32.5 - parent: 0 - type: Transform -- uid: 8010 - type: Grille - components: - - pos: -3.5,32.5 - parent: 0 - type: Transform -- uid: 8011 - type: Grille - components: - - pos: -5.5,31.5 - parent: 0 - type: Transform -- uid: 8012 - type: Grille - components: - - pos: -5.5,30.5 - parent: 0 - type: Transform -- uid: 8013 - type: Grille - components: - - pos: -1.5,35.5 - parent: 0 - type: Transform -- uid: 8014 - type: Grille - components: - - pos: -5.5,35.5 - parent: 0 - type: Transform -- uid: 8015 - type: Grille - components: - - pos: -7.5,35.5 - parent: 0 - type: Transform -- uid: 8016 - type: Grille - components: - - pos: -8.5,36.5 - parent: 0 - type: Transform -- uid: 8017 - type: Grille - components: - - pos: 0.5,35.5 - parent: 0 - type: Transform -- uid: 8018 - type: Grille - components: - - pos: 2.5,35.5 - parent: 0 - type: Transform -- uid: 8019 - type: Grille - components: - - pos: 3.5,34.5 - parent: 0 - type: Transform -- uid: 8020 - type: Grille - components: - - pos: 7.5,25.5 - parent: 0 - type: Transform -- uid: 8021 - type: Grille - components: - - pos: 5.5,25.5 - parent: 0 - type: Transform -- uid: 8022 - type: Grille - components: - - pos: 4.5,29.5 - parent: 0 - type: Transform -- uid: 8023 - type: Grille - components: - - pos: 5.5,29.5 - parent: 0 - type: Transform -- uid: 8024 - type: Grille - components: - - pos: 7.5,29.5 - parent: 0 - type: Transform -- uid: 8025 - type: Grille - components: - - pos: 8.5,29.5 - parent: 0 - type: Transform -- uid: 8026 - type: Grille - components: - - pos: 10.5,29.5 - parent: 0 - type: Transform -- uid: 8027 - type: Grille - components: - - pos: 12.5,29.5 - parent: 0 - type: Transform -- uid: 8028 - type: Grille - components: - - pos: 13.5,33.5 - parent: 0 - type: Transform -- uid: 8029 - type: Grille - components: - - pos: 11.5,33.5 - parent: 0 - type: Transform -- uid: 8030 - type: Grille - components: - - pos: 10.5,33.5 - parent: 0 - type: Transform -- uid: 8031 - type: Grille - components: - - pos: 8.5,33.5 - parent: 0 - type: Transform -- uid: 8032 - type: Grille - components: - - pos: 5.5,33.5 - parent: 0 - type: Transform -- uid: 8033 - type: CableApcExtension - components: - - pos: 8.5,40.5 - parent: 0 - type: Transform -- uid: 8034 - type: CableApcExtension - components: - - pos: 8.5,39.5 - parent: 0 - type: Transform -- uid: 8035 - type: CableApcExtension - components: - - pos: 8.5,38.5 - parent: 0 - type: Transform -- uid: 8036 - type: CableApcExtension - components: - - pos: 8.5,37.5 - parent: 0 - type: Transform -- uid: 8037 - type: CableApcExtension - components: - - pos: 8.5,36.5 - parent: 0 - type: Transform -- uid: 8038 - type: WallSolid - components: - - pos: 23.5,11.5 - parent: 0 - type: Transform -- uid: 8039 - type: WallSolid - components: - - pos: 25.5,11.5 - parent: 0 - type: Transform -- uid: 8040 - type: WallSolid - components: - - pos: 26.5,11.5 - parent: 0 - type: Transform -- uid: 8041 - type: WallSolid - components: - - pos: 27.5,11.5 - parent: 0 - type: Transform -- uid: 8042 - type: WallSolid - components: - - pos: 28.5,11.5 - parent: 0 - type: Transform -- uid: 8043 - type: WallSolid - components: - - pos: 34.5,10.5 - parent: 0 - type: Transform -- uid: 8044 - type: WallSolid - components: - - pos: 29.5,11.5 - parent: 0 - type: Transform -- uid: 8045 - type: WallSolid - components: - - pos: 30.5,11.5 - parent: 0 - type: Transform -- uid: 8046 - type: WallSolid - components: - - pos: 30.5,12.5 - parent: 0 - type: Transform -- uid: 8047 - type: WallSolid - components: - - pos: 34.5,11.5 - parent: 0 - type: Transform -- uid: 8048 - type: WallSolid - components: - - pos: 30.5,13.5 - parent: 0 - type: Transform -- uid: 8049 - type: WallSolid - components: - - pos: 31.5,13.5 - parent: 0 - type: Transform -- uid: 8050 - type: WallSolid - components: - - pos: 32.5,13.5 - parent: 0 - type: Transform -- uid: 8051 - type: WallSolid - components: - - pos: 33.5,13.5 - parent: 0 - type: Transform -- uid: 8052 - type: AirlockBrigGlassLocked - components: - - pos: 0.5,29.5 - parent: 0 - type: Transform -- uid: 8053 - type: AirlockBrigGlassLocked - components: - - pos: 2.5,29.5 - parent: 0 - type: Transform -- uid: 8054 - type: AirlockBrigGlassLocked - components: - - pos: 2.5,26.5 - parent: 0 - type: Transform -- uid: 8055 - type: AirlockBrigGlassLocked - components: - - pos: 0.5,26.5 - parent: 0 - type: Transform -- uid: 8056 - type: AirlockBrigGlassLocked - components: - - pos: -0.5,19.5 - parent: 0 - type: Transform -- uid: 8057 - type: WindoorSecurityLocked - components: - - pos: -6.5,29.5 - parent: 0 - type: Transform -- uid: 8058 - type: WindoorSecurityLocked - components: - - pos: -9.5,29.5 - parent: 0 - type: Transform -- uid: 8059 - type: WindoorSecurityLocked - components: - - pos: -12.5,29.5 - parent: 0 - type: Transform -- uid: 8060 - type: AirlockSecurityGlassLocked - components: - - pos: 1.5,35.5 - parent: 0 - type: Transform -- uid: 8061 - type: AirlockSecurityGlassLocked - components: - - pos: 3.5,39.5 - parent: 0 - type: Transform -- uid: 8062 - type: WallSolid - components: - - pos: 35.5,13.5 - parent: 0 - type: Transform -- uid: 8063 - type: AirlockSecurityGlassLocked - components: - - pos: 7.5,33.5 - parent: 0 - type: Transform -- uid: 8064 - type: AirlockSecurityGlassLocked - components: - - pos: 6.5,33.5 - parent: 0 - type: Transform -- uid: 8065 - type: AirlockSecurityGlassLocked - components: - - pos: -10.5,43.5 - parent: 0 - type: Transform -- uid: 8066 - type: AirlockSecurityGlassLocked - components: - - pos: -10.5,46.5 - parent: 0 - type: Transform -- uid: 8067 - type: AirlockSecurityGlassLocked - components: - - pos: -12.5,43.5 - parent: 0 - type: Transform -- uid: 8068 - type: AirlockSecurityGlassLocked - components: - - pos: 11.5,29.5 - parent: 0 - type: Transform -- uid: 8069 - type: AirlockSecurityGlassLocked - components: - - pos: 14.5,31.5 - parent: 0 - type: Transform -- uid: 8070 - type: AirlockSecurityGlassLocked - components: - - pos: -12.5,46.5 - parent: 0 - type: Transform -- uid: 8071 - type: AirlockSecurityLocked - components: - - pos: -13.5,44.5 - parent: 0 - type: Transform -- uid: 8072 - type: WallSolid - components: - - pos: 36.5,13.5 - parent: 0 - type: Transform -- uid: 8073 - type: WallSolid - components: - - pos: 37.5,13.5 - parent: 0 - type: Transform -- uid: 8074 - type: WallSolid - components: - - pos: 35.5,11.5 - parent: 0 - type: Transform -- uid: 8075 - type: WallSolid - components: - - pos: 36.5,11.5 - parent: 0 - type: Transform -- uid: 8076 - type: WallSolid - components: - - pos: 37.5,11.5 - parent: 0 - type: Transform -- uid: 8077 - type: CableHV - components: - - pos: -25.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8078 - type: ReinforcedWindow - components: - - pos: 24.5,25.5 - parent: 0 - type: Transform -- uid: 8079 - type: Grille - components: - - pos: -8.5,32.5 - parent: 0 - type: Transform -- uid: 8080 - type: Grille - components: - - pos: 17.5,33.5 - parent: 0 - type: Transform -- uid: 8081 - type: Grille - components: - - pos: 18.5,33.5 - parent: 0 - type: Transform -- uid: 8082 - type: Grille - components: - - pos: 16.5,33.5 - parent: 0 - type: Transform -- uid: 8083 - type: AirlockBrigGlassLocked - components: - - pos: 15.5,35.5 - parent: 0 - type: Transform -- uid: 8084 - type: ReinforcedWindow - components: - - pos: 15.5,34.5 - parent: 0 - type: Transform -- uid: 8085 - type: Grille - components: - - pos: 15.5,34.5 - parent: 0 - type: Transform -- uid: 8086 - type: TintedWindow - components: - - pos: 16.5,33.5 - parent: 0 - type: Transform -- uid: 8087 - type: TintedWindow - components: - - pos: 17.5,33.5 - parent: 0 - type: Transform -- uid: 8088 - type: TintedWindow - components: - - pos: 18.5,33.5 - parent: 0 - type: Transform -- uid: 8089 - type: CableHV - components: - - pos: -26.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8090 - type: CableApcExtension - components: - - pos: -14.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8091 - type: CableApcExtension - components: - - pos: -16.5,27.5 - parent: 0 - type: Transform -- uid: 8092 - type: AirlockMaintSecLocked - components: - - pos: 15.5,37.5 - parent: 0 - type: Transform -- uid: 8094 - type: AirlockBrigGlassLocked - components: - - pos: 6.5,25.5 - parent: 0 - type: Transform -- uid: 8095 - type: AirlockBrigGlassLocked - components: - - pos: 6.5,29.5 - parent: 0 - type: Transform -- uid: 8096 - type: AirlockMaintSecLocked - components: - - pos: 13.5,24.5 - parent: 0 - type: Transform -- uid: 8097 - type: WallReinforced - components: - - pos: 18.5,27.5 - parent: 0 - type: Transform -- uid: 8098 - type: WallReinforced - components: - - pos: 17.5,27.5 - parent: 0 - type: Transform -- uid: 8099 - type: ReinforcedWindow - components: - - pos: 17.5,25.5 - parent: 0 - type: Transform -- uid: 8100 - type: WallReinforced - components: - - pos: 20.5,27.5 - parent: 0 - type: Transform -- uid: 8101 - type: AirlockMaintLocked - components: - - pos: 16.5,20.5 - parent: 0 - type: Transform -- uid: 8102 - type: WallReinforced - components: - - pos: 26.5,28.5 - parent: 0 - type: Transform -- uid: 8103 - type: WallReinforced - components: - - pos: 22.5,27.5 - parent: 0 - type: Transform -- uid: 8104 - type: Grille - components: - - pos: 22.5,22.5 - parent: 0 - type: Transform -- uid: 8105 - type: Grille - components: - - pos: 23.5,25.5 - parent: 0 - type: Transform -- uid: 8106 - type: WallReinforced - components: - - pos: 26.5,26.5 - parent: 0 - type: Transform -- uid: 8107 - type: Grille - components: - - pos: -0.5,13.5 - parent: 0 - type: Transform -- uid: 8108 - type: Grille - components: - - pos: -0.5,15.5 - parent: 0 - type: Transform -- uid: 8109 - type: Grille - components: - - pos: 1.5,16.5 - parent: 0 - type: Transform -- uid: 8110 - type: Grille - components: - - pos: 2.5,16.5 - parent: 0 - type: Transform -- uid: 8111 - type: Grille - components: - - pos: 3.5,16.5 - parent: 0 - type: Transform -- uid: 8112 - type: Grille - components: - - pos: 5.5,16.5 - parent: 0 - type: Transform -- uid: 8113 - type: Grille - components: - - pos: 6.5,16.5 - parent: 0 - type: Transform -- uid: 8114 - type: Grille - components: - - pos: 7.5,16.5 - parent: 0 - type: Transform -- uid: 8115 - type: Grille - components: - - pos: 9.5,15.5 - parent: 0 - type: Transform -- uid: 8116 - type: Grille - components: - - pos: 9.5,13.5 - parent: 0 - type: Transform -- uid: 8117 - type: Grille - components: - - pos: 7.5,11.5 - parent: 0 - type: Transform -- uid: 8118 - type: Grille - components: - - pos: 5.5,11.5 - parent: 0 - type: Transform -- uid: 8119 - type: AirlockBrigGlassLocked - components: - - pos: 4.5,16.5 - parent: 0 - type: Transform -- uid: 8120 - type: AirlockBrigGlassLocked - components: - - pos: 9.5,18.5 - parent: 0 - type: Transform -- uid: 8121 - type: AirlockBrigGlassLocked - components: - - pos: 12.5,16.5 - parent: 0 - type: Transform -- uid: 8122 - type: ReinforcedWindow - components: - - pos: 11.5,16.5 - parent: 0 - type: Transform -- uid: 8123 - type: ReinforcedWindow - components: - - pos: 13.5,16.5 - parent: 0 - type: Transform -- uid: 8124 - type: Grille - components: - - pos: 11.5,16.5 - parent: 0 - type: Transform -- uid: 8125 - type: Grille - components: - - pos: 13.5,16.5 - parent: 0 - type: Transform -- uid: 8126 - type: WindowReinforcedDirectional - components: - - pos: 7.5,20.5 - parent: 0 - type: Transform -- uid: 8127 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 7.5,20.5 - parent: 0 - type: Transform -- uid: 8128 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 7.5,21.5 - parent: 0 - type: Transform -- uid: 8129 - type: WindoorBrigLocked - components: - - pos: 8.5,20.5 - parent: 0 - type: Transform -- uid: 8130 - type: Chair - components: - - pos: 8.5,21.5 - parent: 0 - type: Transform -- uid: 8131 - type: AirlockBrigLocked - components: - - pos: 14.5,22.5 - parent: 0 - type: Transform -- uid: 8132 - type: Window - components: - - pos: 10.5,11.5 - parent: 0 - type: Transform -- uid: 8133 - type: Window - components: - - pos: 13.5,11.5 - parent: 0 - type: Transform -- uid: 8134 - type: Window - components: - - pos: 15.5,14.5 - parent: 0 - type: Transform -- uid: 8135 - type: Grille - components: - - pos: 13.5,11.5 - parent: 0 - type: Transform -- uid: 8136 - type: Grille - components: - - pos: 10.5,11.5 - parent: 0 - type: Transform -- uid: 8137 - type: Grille - components: - - pos: 15.5,14.5 - parent: 0 - type: Transform -- uid: 8138 - type: AirlockGlass - components: - - pos: 11.5,11.5 - parent: 0 - type: Transform -- uid: 8139 - type: AirlockGlass - components: - - pos: 12.5,11.5 - parent: 0 - type: Transform -- uid: 8140 - type: AirlockGlass - components: - - pos: 15.5,13.5 - parent: 0 - type: Transform -- uid: 8141 - type: AirlockGlass - components: - - pos: 15.5,15.5 - parent: 0 - type: Transform -- uid: 8142 - type: FirelockGlass - components: - - pos: -7.5,32.5 - parent: 0 - type: Transform -- uid: 8143 - type: FirelockGlass - components: - - pos: -6.5,32.5 - parent: 0 - type: Transform -- uid: 8144 - type: ReinforcedWindow - components: - - pos: 17.5,22.5 - parent: 0 - type: Transform -- uid: 8145 - type: WallReinforced - components: - - pos: 26.5,25.5 - parent: 0 - type: Transform -- uid: 8146 - type: Window - components: - - pos: 26.5,24.5 - parent: 0 - type: Transform -- uid: 8147 - type: ReinforcedWindow - components: - - pos: 30.5,5.5 - parent: 0 - type: Transform -- uid: 8148 - type: WallReinforced - components: - - pos: 17.5,26.5 - parent: 0 - type: Transform -- uid: 8149 - type: Grille - components: - - pos: 26.5,27.5 - parent: 0 - type: Transform -- uid: 8150 - type: AirlockMaintLocked - components: - - pos: 21.5,27.5 - parent: 0 - type: Transform -- uid: 8151 - type: Grille - components: - - pos: 17.5,23.5 - parent: 0 - type: Transform -- uid: 8152 - type: Grille - components: - - pos: 17.5,24.5 - parent: 0 - type: Transform -- uid: 8153 - type: Grille - components: - - pos: 17.5,25.5 - parent: 0 - type: Transform -- uid: 8154 - type: WallSolid - components: - - pos: 30.5,14.5 - parent: 0 - type: Transform -- uid: 8155 - type: ReinforcedWindow - components: - - pos: 30.5,9.5 - parent: 0 - type: Transform -- uid: 8156 - type: ReinforcedWindow - components: - - pos: 19.5,22.5 - parent: 0 - type: Transform -- uid: 8157 - type: ReinforcedWindow - components: - - pos: 22.5,25.5 - parent: 0 - type: Transform -- uid: 8158 - type: ReinforcedWindow - components: - - pos: 22.5,22.5 - parent: 0 - type: Transform -- uid: 8159 - type: Grille - components: - - pos: 19.5,23.5 - parent: 0 - type: Transform -- uid: 8160 - type: ReinforcedWindow - components: - - pos: 25.5,22.5 - parent: 0 - type: Transform -- uid: 8161 - type: Window - components: - - pos: 20.5,20.5 - parent: 0 - type: Transform -- uid: 8162 - type: ReinforcedWindow - components: - - pos: 19.5,26.5 - parent: 0 - type: Transform -- uid: 8163 - type: SolarPanel - components: - - pos: -25.5,52.5 - parent: 0 - type: Transform -- uid: 8164 - type: ReinforcedWindow - components: - - pos: 19.5,21.5 - parent: 0 - type: Transform -- uid: 8165 - type: ReinforcedWindow - components: - - pos: 22.5,26.5 - parent: 0 - type: Transform -- uid: 8166 - type: ReinforcedWindow - components: - - pos: 22.5,21.5 - parent: 0 - type: Transform -- uid: 8167 - type: ReinforcedWindow - components: - - pos: 19.5,25.5 - parent: 0 - type: Transform -- uid: 8168 - type: SolarPanel - components: - - pos: -26.5,52.5 - parent: 0 - type: Transform -- uid: 8169 - type: SolarPanel - components: - - pos: -25.5,54.5 - parent: 0 - type: Transform -- uid: 8170 - type: SolarPanel - components: - - pos: -27.5,54.5 - parent: 0 - type: Transform -- uid: 8171 - type: WallReinforced - components: - - pos: 25.5,28.5 - parent: 0 - type: Transform -- uid: 8172 - type: WallReinforced - components: - - pos: 24.5,28.5 - parent: 0 - type: Transform -- uid: 8173 - type: WallReinforced - components: - - pos: 23.5,28.5 - parent: 0 - type: Transform -- uid: 8174 - type: WallReinforced - components: - - pos: 22.5,28.5 - parent: 0 - type: Transform -- uid: 8175 - type: CableHV - components: - - pos: -26.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8176 - type: CableHV - components: - - pos: -25.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8177 - type: Grille - components: - - pos: 23.5,22.5 - parent: 0 - type: Transform -- uid: 8178 - type: Grille - components: - - pos: 22.5,21.5 - parent: 0 - type: Transform -- uid: 8179 - type: Grille - components: - - pos: 22.5,25.5 - parent: 0 - type: Transform -- uid: 8180 - type: Grille - components: - - pos: 19.5,26.5 - parent: 0 - type: Transform -- uid: 8181 - type: Grille - components: - - pos: 17.5,22.5 - parent: 0 - type: Transform -- uid: 8182 - type: ReinforcedWindow - components: - - pos: 23.5,25.5 - parent: 0 - type: Transform -- uid: 8183 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -15.5,44.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8184 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8185 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8186 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8187 - type: PoweredSmallLight - components: - - pos: 18.5,35.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8188 - type: Table - components: - - pos: 17.5,30.5 - parent: 0 - type: Transform -- uid: 8189 - type: Table - components: - - pos: 17.5,31.5 - parent: 0 - type: Transform -- uid: 8190 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 18.5,30.5 - parent: 0 - type: Transform -- uid: 8191 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 18.5,31.5 - parent: 0 - type: Transform -- uid: 8192 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 16.5,30.5 - parent: 0 - type: Transform -- uid: 8193 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 16.5,31.5 - parent: 0 - type: Transform -- uid: 8194 - type: Lamp - components: - - pos: 17.59783,31.574615 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 8195 - type: ClosetL3SecurityFilled - components: - - pos: -8.5,34.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8196 - type: ClosetBombFilled - components: - - pos: -8.5,33.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8197 - type: Bed - components: - - pos: -6.5,27.5 - parent: 0 - type: Transform -- uid: 8198 - type: Bed - components: - - pos: -9.5,27.5 - parent: 0 - type: Transform -- uid: 8199 - type: Bed - components: - - pos: -12.5,27.5 - parent: 0 - type: Transform -- uid: 8200 - type: BedsheetOrange - components: - - pos: -6.5,27.5 - parent: 0 - type: Transform -- uid: 8201 - type: BedsheetOrange - components: - - pos: -9.5,27.5 - parent: 0 - type: Transform -- uid: 8202 - type: BedsheetOrange - components: - - pos: -12.5,27.5 - parent: 0 - type: Transform -- uid: 8203 - type: WardrobePrisonFilled - components: - - pos: -13.5,27.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8204 - type: WardrobePrisonFilled - components: - - pos: -10.5,27.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8205 - type: WardrobePrisonFilled - components: - - pos: -7.5,27.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8206 - type: SignPrison - components: - - pos: -9.5,41.5 - parent: 0 - type: Transform -- uid: 8207 - type: ReinforcedWindow - components: - - pos: 19.5,23.5 - parent: 0 - type: Transform -- uid: 8208 - type: Table - components: - - pos: -9.5,37.5 - parent: 0 - type: Transform -- uid: 8209 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: -9.5,35.5 - parent: 0 - type: Transform -- uid: 8210 - type: ComputerSurveillanceCameraMonitor - components: - - rot: -1.5707963267948966 rad - pos: -9.5,36.5 - parent: 0 - type: Transform -- uid: 8211 - type: LockerEvidence - components: - - pos: -9.5,33.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8212 - type: LockerEvidence - components: - - pos: -9.5,34.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8213 - type: ComputerSurveillanceCameraMonitor - components: - - rot: -1.5707963267948966 rad - pos: -1.5,27.5 - parent: 0 - type: Transform -- uid: 8214 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: -1.5,28.5 - parent: 0 - type: Transform -- uid: 8215 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -3.5,27.5 - parent: 0 - type: Transform -- uid: 8216 - type: Table - components: - - pos: -1.5,29.5 - parent: 0 - type: Transform -- uid: 8217 - type: Table - components: - - pos: -2.5,29.5 - parent: 0 - type: Transform -- uid: 8218 - type: Table - components: - - pos: -4.5,29.5 - parent: 0 - type: Transform -- uid: 8219 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -1.5,31.5 - parent: 0 - type: Transform -- uid: 8220 - type: ChairOfficeDark - components: - - pos: -2.5,27.5 - parent: 0 - type: Transform -- uid: 8221 - type: DogBed - components: - - pos: -4.5,31.5 - parent: 0 - type: Transform -- uid: 8222 - type: LockerWardenFilled - components: - - pos: -4.5,30.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8223 - type: SpawnPointWarden - components: - - pos: -3.5,30.5 - parent: 0 - type: Transform -- uid: 8224 - type: SpawnMobMcGriff - components: - - pos: -4.5,31.5 - parent: 0 - type: Transform -- uid: 8225 - type: Windoor - components: - - pos: -2.5,26.5 - parent: 0 - type: Transform -- uid: 8226 - type: Windoor - components: - - pos: -3.5,35.5 - parent: 0 - type: Transform -- uid: 8227 - type: Chair - components: - - pos: 4.5,28.5 - parent: 0 - type: Transform -- uid: 8228 - type: Chair - components: - - pos: 5.5,28.5 - parent: 0 - type: Transform -- uid: 8229 - type: Chair - components: - - pos: 7.5,28.5 - parent: 0 - type: Transform -- uid: 8230 - type: Chair - components: - - pos: 8.5,28.5 - parent: 0 - type: Transform -- uid: 8231 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 7.5,26.5 - parent: 0 - type: Transform -- uid: 8232 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 5.5,26.5 - parent: 0 - type: Transform -- uid: 8233 - type: LockerEvidence - components: - - pos: 4.5,23.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8234 - type: PottedPlantRandom - components: - - pos: 8.5,34.5 - parent: 0 - type: Transform -- uid: 8235 - type: Bed - components: - - pos: 7.5,24.5 - parent: 0 - type: Transform -- uid: 8236 - type: AirlockSecurityGlassLocked - components: - - pos: -5.5,43.5 - parent: 0 - type: Transform -- uid: 8237 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: -4.5,12.5 - parent: 0 - type: Transform -- uid: 8238 - type: SignDirectionalEvac - components: - - pos: -0.5,12.5 - parent: 0 - type: Transform -- uid: 8239 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: -4.497774,12.686386 - parent: 0 - type: Transform -- uid: 8240 - type: SignDirectionalBridge - components: - - pos: -4.497774,12.295761 - parent: 0 - type: Transform -- uid: 8241 - type: SignDirectionalMed - components: - - pos: -0.49777412,12.702011 - parent: 0 - type: Transform -- uid: 8242 - type: SignDirectionalSci - components: - - pos: -0.49777412,12.280136 - parent: 0 - type: Transform -- uid: 8243 - type: Grille - components: - - pos: 19.5,22.5 - parent: 0 - type: Transform -- uid: 8244 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8245 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 45.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8246 - type: ReinforcedWindow - components: - - pos: 25.5,25.5 - parent: 0 - type: Transform -- uid: 8247 - type: Rack - components: - - pos: -16.5,45.5 - parent: 0 - type: Transform -- uid: 8248 - type: Rack - components: - - pos: -14.5,45.5 - parent: 0 - type: Transform -- uid: 8249 - type: ClothingOuterHardsuitEVAPrisoner - components: - - pos: -14.365703,45.638844 - parent: 0 - type: Transform -- uid: 8250 - type: ClothingOuterHardsuitEVAPrisoner - components: - - pos: -16.428204,45.62322 - parent: 0 - type: Transform -- uid: 8251 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: -15.5,45.5 - parent: 0 - type: Transform -- uid: 8252 - type: SignEVA - components: - - pos: -13.5,45.5 - parent: 0 - type: Transform -- uid: 8253 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8254 - type: AirlockGlass - components: - - pos: 29.5,20.5 - parent: 0 - type: Transform -- uid: 8255 - type: AirlockGlass - components: - - pos: 27.5,20.5 - parent: 0 - type: Transform -- uid: 8256 - type: Grille - components: - - pos: 24.5,22.5 - parent: 0 - type: Transform -- uid: 8257 - type: ReinforcedWindow - components: - - pos: 24.5,22.5 - parent: 0 - type: Transform -- uid: 8258 - type: WallSolid - components: - - pos: 27.5,26.5 - parent: 0 - type: Transform -- uid: 8259 - type: WallSolid - components: - - pos: 28.5,26.5 - parent: 0 - type: Transform -- uid: 8260 - type: WallSolid - components: - - pos: 29.5,26.5 - parent: 0 - type: Transform -- uid: 8261 - type: WallSolid - components: - - pos: 30.5,26.5 - parent: 0 - type: Transform -- uid: 8262 - type: WallSolid - components: - - pos: 30.5,25.5 - parent: 0 - type: Transform -- uid: 8263 - type: WallSolid - components: - - pos: 30.5,24.5 - parent: 0 - type: Transform -- uid: 8264 - type: WallSolid - components: - - pos: 30.5,23.5 - parent: 0 - type: Transform -- uid: 8265 - type: WallSolid - components: - - pos: 30.5,22.5 - parent: 0 - type: Transform -- uid: 8266 - type: WallSolid - components: - - pos: 30.5,21.5 - parent: 0 - type: Transform -- uid: 8267 - type: WallSolid - components: - - pos: 30.5,20.5 - parent: 0 - type: Transform -- uid: 8268 - type: TintedWindow - components: - - pos: 28.5,20.5 - parent: 0 - type: Transform -- uid: 8269 - type: Grille - components: - - pos: 28.5,20.5 - parent: 0 - type: Transform -- uid: 8270 - type: ReinforcedWindow - components: - - pos: 26.5,27.5 - parent: 0 - type: Transform -- uid: 8271 - type: WallSolid - components: - - pos: 30.5,15.5 - parent: 0 - type: Transform -- uid: 8272 - type: WallSolid - components: - - pos: 30.5,16.5 - parent: 0 - type: Transform -- uid: 8273 - type: WallSolid - components: - - pos: 31.5,16.5 - parent: 0 - type: Transform -- uid: 8274 - type: WallSolid - components: - - pos: 32.5,16.5 - parent: 0 - type: Transform -- uid: 8275 - type: WallSolid - components: - - pos: 33.5,16.5 - parent: 0 - type: Transform -- uid: 8276 - type: WallSolid - components: - - pos: 33.5,15.5 - parent: 0 - type: Transform -- uid: 8277 - type: WallSolid - components: - - pos: 38.5,20.5 - parent: 0 - type: Transform -- uid: 8278 - type: WallSolid - components: - - pos: 37.5,20.5 - parent: 0 - type: Transform -- uid: 8279 - type: WallSolid - components: - - pos: 39.5,20.5 - parent: 0 - type: Transform -- uid: 8280 - type: WallSolid - components: - - pos: 39.5,18.5 - parent: 0 - type: Transform -- uid: 8281 - type: WallSolid - components: - - pos: 38.5,13.5 - parent: 0 - type: Transform -- uid: 8282 - type: WallSolid - components: - - pos: 39.5,17.5 - parent: 0 - type: Transform -- uid: 8283 - type: WallSolid - components: - - pos: 39.5,13.5 - parent: 0 - type: Transform -- uid: 8284 - type: WallSolid - components: - - pos: 38.5,16.5 - parent: 0 - type: Transform -- uid: 8285 - type: WallSolid - components: - - pos: 36.5,20.5 - parent: 0 - type: Transform -- uid: 8286 - type: WallSolid - components: - - pos: 36.5,19.5 - parent: 0 - type: Transform -- uid: 8287 - type: WallSolid - components: - - pos: 37.5,16.5 - parent: 0 - type: Transform -- uid: 8288 - type: WallSolid - components: - - pos: 36.5,16.5 - parent: 0 - type: Transform -- uid: 8289 - type: WallSolid - components: - - pos: 36.5,15.5 - parent: 0 - type: Transform -- uid: 8290 - type: WallSolid - components: - - pos: 33.5,20.5 - parent: 0 - type: Transform -- uid: 8291 - type: WallSolid - components: - - pos: 39.5,16.5 - parent: 0 - type: Transform -- uid: 8292 - type: WallSolid - components: - - pos: 39.5,19.5 - parent: 0 - type: Transform -- uid: 8293 - type: WallSolid - components: - - pos: 36.5,17.5 - parent: 0 - type: Transform -- uid: 8294 - type: Table - components: - - pos: 12.5,39.5 - parent: 0 - type: Transform -- uid: 8295 - type: Table - components: - - pos: 12.5,38.5 - parent: 0 - type: Transform -- uid: 8296 - type: Table - components: - - pos: 12.5,37.5 - parent: 0 - type: Transform -- uid: 8297 - type: Table - components: - - pos: 11.5,37.5 - parent: 0 - type: Transform -- uid: 8298 - type: Table - components: - - pos: 10.5,37.5 - parent: 0 - type: Transform -- uid: 8299 - type: Table - components: - - pos: 6.5,39.5 - parent: 0 - type: Transform -- uid: 8300 - type: Table - components: - - pos: 6.5,37.5 - parent: 0 - type: Transform -- uid: 8301 - type: Table - components: - - pos: 6.5,38.5 - parent: 0 - type: Transform -- uid: 8302 - type: Table - components: - - pos: 7.5,37.5 - parent: 0 - type: Transform -- uid: 8303 - type: Table - components: - - pos: 8.5,37.5 - parent: 0 - type: Transform -- uid: 8304 - type: Table - components: - - pos: 10.5,39.5 - parent: 0 - type: Transform -- uid: 8305 - type: Table - components: - - pos: 9.5,39.5 - parent: 0 - type: Transform -- uid: 8306 - type: Table - components: - - pos: 8.5,39.5 - parent: 0 - type: Transform -- uid: 8307 - type: ComputerSurveillanceCameraMonitor - components: - - rot: -1.5707963267948966 rad - pos: 10.5,40.5 - parent: 0 - type: Transform -- uid: 8308 - type: DisposalUnit - components: - - pos: 14.5,42.5 - parent: 0 - type: Transform -- uid: 8309 - type: WallSolid - components: - - pos: 39.5,15.5 - parent: 0 - type: Transform -- uid: 8310 - type: DisposalUnit - components: - - pos: -13.5,30.5 - parent: 0 - type: Transform -- uid: 8311 - type: DisposalUnit - components: - - pos: -4.5,27.5 - parent: 0 - type: Transform -- uid: 8312 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,24.5 - parent: 0 - type: Transform -- uid: 8313 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,24.5 - parent: 0 - type: Transform -- uid: 8314 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -4.5,27.5 - parent: 0 - type: Transform -- uid: 8315 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -4.5,31.5 - parent: 0 - type: Transform -- uid: 8316 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -2.5,31.5 - parent: 0 - type: Transform -- uid: 8317 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,28.5 - parent: 0 - type: Transform -- uid: 8318 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,29.5 - parent: 0 - type: Transform -- uid: 8319 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,30.5 - parent: 0 - type: Transform -- uid: 8320 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,31.5 - parent: 0 - type: Transform -- uid: 8321 - type: DisposalPipe - components: - - pos: -2.5,32.5 - parent: 0 - type: Transform -- uid: 8322 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -13.5,30.5 - parent: 0 - type: Transform -- uid: 8323 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -6.5,30.5 - parent: 0 - type: Transform -- uid: 8324 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -6.5,33.5 - parent: 0 - type: Transform -- uid: 8325 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,30.5 - parent: 0 - type: Transform -- uid: 8326 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,30.5 - parent: 0 - type: Transform -- uid: 8327 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,30.5 - parent: 0 - type: Transform -- uid: 8328 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,30.5 - parent: 0 - type: Transform -- uid: 8329 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,30.5 - parent: 0 - type: Transform -- uid: 8330 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,30.5 - parent: 0 - type: Transform -- uid: 8331 - type: DisposalPipe - components: - - pos: -6.5,31.5 - parent: 0 - type: Transform -- uid: 8332 - type: DisposalPipe - components: - - pos: -6.5,32.5 - parent: 0 - type: Transform -- uid: 8333 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,33.5 - parent: 0 - type: Transform -- uid: 8334 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,33.5 - parent: 0 - type: Transform -- uid: 8335 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,33.5 - parent: 0 - type: Transform -- uid: 8336 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -2.5,33.5 - parent: 0 - type: Transform -- uid: 8337 - type: WallSolid - components: - - pos: 39.5,14.5 - parent: 0 - type: Transform -- uid: 8338 - type: DisposalTrunk - components: - - pos: 14.5,42.5 - parent: 0 - type: Transform -- uid: 8339 - type: WallSolid - components: - - pos: 31.5,20.5 - parent: 0 - type: Transform -- uid: 8340 - type: WallSolid - components: - - pos: 32.5,20.5 - parent: 0 - type: Transform -- uid: 8341 - type: WallSolid - components: - - pos: 38.5,21.5 - parent: 0 - type: Transform -- uid: 8342 - type: WallSolid - components: - - pos: 38.5,22.5 - parent: 0 - type: Transform -- uid: 8343 - type: WallSolid - components: - - pos: 33.5,21.5 - parent: 0 - type: Transform -- uid: 8344 - type: WallSolid - components: - - pos: 33.5,22.5 - parent: 0 - type: Transform -- uid: 8345 - type: WallSolid - components: - - pos: 32.5,22.5 - parent: 0 - type: Transform -- uid: 8346 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 14.5,39.5 - parent: 0 - type: Transform -- uid: 8347 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 14.5,38.5 - parent: 0 - type: Transform -- uid: 8348 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 14.5,37.5 - parent: 0 - type: Transform -- uid: 8349 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 0 - type: Transform -- uid: 8350 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,35.5 - parent: 0 - type: Transform -- uid: 8351 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,35.5 - parent: 0 - type: Transform -- uid: 8352 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,35.5 - parent: 0 - type: Transform -- uid: 8353 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,35.5 - parent: 0 - type: Transform -- uid: 8354 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,35.5 - parent: 0 - type: Transform -- uid: 8355 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,35.5 - parent: 0 - type: Transform -- uid: 8356 - type: DisposalPipe - components: - - pos: 7.5,34.5 - parent: 0 - type: Transform -- uid: 8357 - type: DisposalPipe - components: - - pos: 7.5,33.5 - parent: 0 - type: Transform -- uid: 8358 - type: DisposalPipe - components: - - pos: 7.5,32.5 - parent: 0 - type: Transform -- uid: 8359 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 14.5,35.5 - parent: 0 - type: Transform -- uid: 8360 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 7.5,35.5 - parent: 0 - type: Transform -- uid: 8361 - type: DisposalBend - components: - - pos: 1.5,33.5 - parent: 0 - type: Transform -- uid: 8363 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,31.5 - parent: 0 - type: Transform -- uid: 8364 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,31.5 - parent: 0 - type: Transform -- uid: 8365 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,31.5 - parent: 0 - type: Transform -- uid: 8366 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,31.5 - parent: 0 - type: Transform -- uid: 8367 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,31.5 - parent: 0 - type: Transform -- uid: 8368 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,33.5 - parent: 0 - type: Transform -- uid: 8369 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,33.5 - parent: 0 - type: Transform -- uid: 8370 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,33.5 - parent: 0 - type: Transform -- uid: 8371 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,32.5 - parent: 0 - type: Transform -- uid: 8372 - type: DisposalJunctionFlipped - components: - - pos: 1.5,31.5 - parent: 0 - type: Transform -- uid: 8373 - type: DisposalPipe - components: - - pos: 1.5,30.5 - parent: 0 - type: Transform -- uid: 8374 - type: DisposalPipe - components: - - pos: 1.5,29.5 - parent: 0 - type: Transform -- uid: 8375 - type: DisposalPipe - components: - - pos: 1.5,28.5 - parent: 0 - type: Transform -- uid: 8376 - type: DisposalPipe - components: - - pos: 1.5,27.5 - parent: 0 - type: Transform -- uid: 8377 - type: DisposalPipe - components: - - pos: 1.5,26.5 - parent: 0 - type: Transform -- uid: 8378 - type: DisposalPipe - components: - - pos: 1.5,25.5 - parent: 0 - type: Transform -- uid: 8379 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 1.5,24.5 - parent: 0 - type: Transform -- uid: 8380 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,24.5 - parent: 0 - type: Transform -- uid: 8381 - type: WallSolid - components: - - pos: 33.5,24.5 - parent: 0 - type: Transform -- uid: 8382 - type: WallSolid - components: - - pos: 33.5,25.5 - parent: 0 - type: Transform -- uid: 8383 - type: Chair - components: - - pos: 16.5,34.5 - parent: 0 - type: Transform -- uid: 8384 - type: Chair - components: - - pos: 17.5,34.5 - parent: 0 - type: Transform -- uid: 8385 - type: Chair - components: - - pos: 18.5,34.5 - parent: 0 - type: Transform -- uid: 8386 - type: TableWood - components: - - pos: 19.5,34.5 - parent: 0 - type: Transform -- uid: 8387 - type: TableWood - components: - - pos: 19.5,35.5 - parent: 0 - type: Transform -- uid: 8388 - type: WallSolid - components: - - pos: 33.5,26.5 - parent: 0 - type: Transform -- uid: 8389 - type: WallSolid - components: - - pos: 31.5,25.5 - parent: 0 - type: Transform -- uid: 8390 - type: WallSolid - components: - - pos: 32.5,25.5 - parent: 0 - type: Transform -- uid: 8391 - type: WallSolid - components: - - pos: 39.5,23.5 - parent: 0 - type: Transform -- uid: 8392 - type: WallSolid - components: - - pos: 38.5,23.5 - parent: 0 - type: Transform -- uid: 8393 - type: WallSolid - components: - - pos: 37.5,23.5 - parent: 0 - type: Transform -- uid: 8394 - type: WallSolid - components: - - pos: 36.5,23.5 - parent: 0 - type: Transform -- uid: 8395 - type: WallSolid - components: - - pos: 36.5,24.5 - parent: 0 - type: Transform -- uid: 8396 - type: WallSolid - components: - - pos: 36.5,26.5 - parent: 0 - type: Transform -- uid: 8397 - type: WallSolid - components: - - pos: 36.5,27.5 - parent: 0 - type: Transform -- uid: 8398 - type: WallSolid - components: - - pos: 37.5,27.5 - parent: 0 - type: Transform -- uid: 8399 - type: WallSolid - components: - - pos: 38.5,27.5 - parent: 0 - type: Transform -- uid: 8400 - type: WallSolid - components: - - pos: 39.5,27.5 - parent: 0 - type: Transform -- uid: 8401 - type: WallReinforced - components: - - pos: 47.5,31.5 - parent: 0 - type: Transform -- uid: 8402 - type: WallSolid - components: - - pos: 39.5,25.5 - parent: 0 - type: Transform -- uid: 8403 - type: WallSolid - components: - - pos: 39.5,26.5 - parent: 0 - type: Transform -- uid: 8404 - type: Window - components: - - pos: 30.5,18.5 - parent: 0 - type: Transform -- uid: 8405 - type: AirlockGlass - components: - - pos: 30.5,17.5 - parent: 0 - type: Transform -- uid: 8406 - type: AirlockGlass - components: - - pos: 30.5,19.5 - parent: 0 - type: Transform -- uid: 8407 - type: Grille - components: - - pos: 30.5,18.5 - parent: 0 - type: Transform -- uid: 8408 - type: AirlockMaintLocked - components: - - pos: 18.5,11.5 - parent: 0 - type: Transform -- uid: 8409 - type: AirlockMaintLocked - components: - - pos: 24.5,11.5 - parent: 0 - type: Transform -- uid: 8410 - type: AirlockMaintLocked - components: - - pos: 28.5,5.5 - parent: 0 - type: Transform -- uid: 8411 - type: AirlockMaintLocked - components: - - pos: 34.5,13.5 - parent: 0 - type: Transform -- uid: 8412 - type: WallSolid - components: - - pos: 33.5,28.5 - parent: 0 - type: Transform -- uid: 8413 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: -1.5,30.5 - parent: 0 - type: Transform -- uid: 8414 - type: WeaponCapacitorRecharger - components: - - pos: -1.5,29.5 - parent: 0 - type: Transform -- uid: 8415 - type: SpawnVehicleSecway - components: - - pos: -4.5,28.5 - parent: 0 - type: Transform -- uid: 8416 - type: VehicleKeySecway - components: - - pos: -4.5,29.5 - parent: 0 - type: Transform -- uid: 8417 - type: HandLabeler - components: - - pos: -2.5,29.5 - parent: 0 - type: Transform -- uid: 8418 - type: TableWood - components: - - pos: 6.5,17.5 - parent: 0 - type: Transform -- uid: 8419 - type: TableWood - components: - - pos: 6.5,18.5 - parent: 0 - type: Transform -- uid: 8420 - type: TableWood - components: - - pos: 2.5,17.5 - parent: 0 - type: Transform -- uid: 8421 - type: TableWood - components: - - pos: 2.5,18.5 - parent: 0 - type: Transform -- uid: 8422 - type: TableWood - components: - - pos: 5.5,20.5 - parent: 0 - type: Transform -- uid: 8423 - type: TableWood - components: - - pos: 4.5,20.5 - parent: 0 - type: Transform -- uid: 8424 - type: TableWood - components: - - pos: 3.5,20.5 - parent: 0 - type: Transform -- uid: 8425 - type: ComfyChair - components: - - pos: 4.5,21.5 - parent: 0 - type: Transform -- uid: 8426 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 7.5,17.5 - parent: 0 - type: Transform -- uid: 8427 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 7.5,18.5 - parent: 0 - type: Transform -- uid: 8428 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 1.5,17.5 - parent: 0 - type: Transform -- uid: 8429 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 1.5,18.5 - parent: 0 - type: Transform -- uid: 8430 - type: Chair - components: - - pos: 1.5,21.5 - parent: 0 - type: Transform -- uid: 8431 - type: ClosetLegalFilled - components: - - pos: 0.5,21.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8432 - type: Carpet - components: - - pos: 5.5,17.5 - parent: 0 - type: Transform -- uid: 8433 - type: Carpet - components: - - pos: 5.5,18.5 - parent: 0 - type: Transform -- uid: 8434 - type: Carpet - components: - - pos: 6.5,17.5 - parent: 0 - type: Transform -- uid: 8435 - type: Carpet - components: - - pos: 6.5,18.5 - parent: 0 - type: Transform -- uid: 8436 - type: Carpet - components: - - pos: 7.5,17.5 - parent: 0 - type: Transform -- uid: 8437 - type: Carpet - components: - - pos: 7.5,18.5 - parent: 0 - type: Transform -- uid: 8438 - type: CarpetBlue - components: - - pos: 1.5,17.5 - parent: 0 - type: Transform -- uid: 8439 - type: CarpetBlue - components: - - pos: 1.5,18.5 - parent: 0 - type: Transform -- uid: 8440 - type: CarpetBlue - components: - - pos: 2.5,17.5 - parent: 0 - type: Transform -- uid: 8441 - type: CarpetBlue - components: - - pos: 2.5,18.5 - parent: 0 - type: Transform -- uid: 8442 - type: CarpetBlue - components: - - pos: 3.5,17.5 - parent: 0 - type: Transform -- uid: 8443 - type: CarpetBlue - components: - - pos: 3.5,18.5 - parent: 0 - type: Transform -- uid: 8444 - type: CarpetBlack - components: - - pos: 3.5,20.5 - parent: 0 - type: Transform -- uid: 8445 - type: CarpetBlack - components: - - pos: 3.5,21.5 - parent: 0 - type: Transform -- uid: 8446 - type: CarpetBlack - components: - - pos: 4.5,20.5 - parent: 0 - type: Transform -- uid: 8447 - type: CarpetBlack - components: - - pos: 4.5,21.5 - parent: 0 - type: Transform -- uid: 8448 - type: CarpetBlack - components: - - pos: 5.5,20.5 - parent: 0 - type: Transform -- uid: 8449 - type: CarpetBlack - components: - - pos: 5.5,21.5 - parent: 0 - type: Transform -- uid: 8450 - type: BoxFolderBlue - components: - - pos: 2.5,18.5 - parent: 0 - type: Transform -- uid: 8451 - type: BoxFolderRed - components: - - pos: 6.5,17.5 - parent: 0 - type: Transform -- uid: 8452 - type: Paper - components: - - pos: 2.655427,18.03125 - parent: 0 - type: Transform -- uid: 8453 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8454 - type: Table - components: - - pos: 4.5,36.5 - parent: 0 - type: Transform -- uid: 8455 - type: ComfyChair - components: - - pos: 9.5,40.5 - parent: 0 - type: Transform -- uid: 8456 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 13.5,38.5 - parent: 0 - type: Transform -- uid: 8457 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 13.5,39.5 - parent: 0 - type: Transform -- uid: 8458 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 5.5,38.5 - parent: 0 - type: Transform -- uid: 8459 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 5.5,39.5 - parent: 0 - type: Transform -- uid: 8460 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 6.5,36.5 - parent: 0 - type: Transform -- uid: 8461 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 7.5,36.5 - parent: 0 - type: Transform -- uid: 8462 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 8.5,36.5 - parent: 0 - type: Transform -- uid: 8463 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 10.5,36.5 - parent: 0 - type: Transform -- uid: 8464 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 11.5,36.5 - parent: 0 - type: Transform -- uid: 8465 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 12.5,36.5 - parent: 0 - type: Transform -- uid: 8466 - type: WallSolid - components: - - pos: 33.5,29.5 - parent: 0 - type: Transform -- uid: 8471 - type: WallSolid - components: - - pos: 33.5,30.5 - parent: 0 - type: Transform -- uid: 8482 - type: ComputerCargoOrders - components: - - pos: -28.5,8.5 - parent: 0 - type: Transform -- uid: 8483 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8484 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8485 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8486 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8487 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8488 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8489 - type: SignDirectionalEvac - components: - - pos: -23.5,-2.5 - parent: 0 - type: Transform -- uid: 8490 - type: SignDirectionalMed - components: - - pos: -23.492994,-2.2766008 - parent: 0 - type: Transform -- uid: 8491 - type: SignDirectionalSci - components: - - pos: -23.492994,-2.7141008 - parent: 0 - type: Transform -- uid: 8492 - type: Table - components: - - pos: -40.5,6.5 - parent: 0 - type: Transform -- uid: 8493 - type: Table - components: - - pos: -40.5,5.5 - parent: 0 - type: Transform -- uid: 8494 - type: Table - components: - - pos: -42.5,13.5 - parent: 0 - type: Transform -- uid: 8495 - type: Table - components: - - pos: -41.5,13.5 - parent: 0 - type: Transform -- uid: 8496 - type: Table - components: - - pos: -42.5,11.5 - parent: 0 - type: Transform -- uid: 8497 - type: Table - components: - - pos: -41.5,11.5 - parent: 0 - type: Transform -- uid: 8498 - type: Grille - components: - - pos: 48.5,2.5 - parent: 0 - type: Transform -- uid: 8499 - type: Grille - components: - - pos: 48.5,-0.5 - parent: 0 - type: Transform -- uid: 8500 - type: WallSolid - components: - - pos: 32.5,30.5 - parent: 0 - type: Transform -- uid: 8501 - type: WallSolid - components: - - pos: 31.5,30.5 - parent: 0 - type: Transform -- uid: 8502 - type: WallSolid - components: - - pos: 30.5,30.5 - parent: 0 - type: Transform -- uid: 8503 - type: WallSolid - components: - - pos: 30.5,29.5 - parent: 0 - type: Transform -- uid: 8504 - type: WallSolid - components: - - pos: 29.5,29.5 - parent: 0 - type: Transform -- uid: 8505 - type: WallSolid - components: - - pos: 28.5,29.5 - parent: 0 - type: Transform -- uid: 8506 - type: WallSolid - components: - - pos: 30.5,31.5 - parent: 0 - type: Transform -- uid: 8507 - type: WallSolid - components: - - pos: 29.5,31.5 - parent: 0 - type: Transform -- uid: 8508 - type: WallSolid - components: - - pos: 28.5,31.5 - parent: 0 - type: Transform -- uid: 8509 - type: WallSolid - components: - - pos: 27.5,31.5 - parent: 0 - type: Transform -- uid: 8510 - type: WallSolid - components: - - pos: 26.5,31.5 - parent: 0 - type: Transform -- uid: 8511 - type: WallSolid - components: - - pos: 26.5,29.5 - parent: 0 - type: Transform -- uid: 8512 - type: WallSolid - components: - - pos: 26.5,30.5 - parent: 0 - type: Transform -- uid: 8513 - type: WallSolid - components: - - pos: 33.5,31.5 - parent: 0 - type: Transform -- uid: 8514 - type: AirlockGlass - components: - - pos: 29.5,47.5 - parent: 0 - type: Transform -- uid: 8515 - type: WallSolid - components: - - pos: 33.5,34.5 - parent: 0 - type: Transform -- uid: 8516 - type: WallSolid - components: - - pos: 33.5,35.5 - parent: 0 - type: Transform -- uid: 8517 - type: WallSolid - components: - - pos: 33.5,36.5 - parent: 0 - type: Transform -- uid: 8518 - type: WallSolid - components: - - pos: 32.5,36.5 - parent: 0 - type: Transform -- uid: 8519 - type: WallSolid - components: - - pos: 31.5,36.5 - parent: 0 - type: Transform -- uid: 8520 - type: WallSolid - components: - - pos: 30.5,36.5 - parent: 0 - type: Transform -- uid: 8521 - type: WallSolid - components: - - pos: 29.5,36.5 - parent: 0 - type: Transform -- uid: 8522 - type: WallSolid - components: - - pos: 28.5,36.5 - parent: 0 - type: Transform -- uid: 8523 - type: WallSolid - components: - - pos: 27.5,36.5 - parent: 0 - type: Transform -- uid: 8524 - type: WallSolid - components: - - pos: 26.5,36.5 - parent: 0 - type: Transform -- uid: 8525 - type: WallSolid - components: - - pos: 26.5,32.5 - parent: 0 - type: Transform -- uid: 8526 - type: WallSolid - components: - - pos: 26.5,33.5 - parent: 0 - type: Transform -- uid: 8527 - type: WallSolid - components: - - pos: 26.5,34.5 - parent: 0 - type: Transform -- uid: 8528 - type: WallSolid - components: - - pos: 26.5,35.5 - parent: 0 - type: Transform -- uid: 8529 - type: WallSolid - components: - - pos: 27.5,33.5 - parent: 0 - type: Transform -- uid: 8530 - type: WallSolid - components: - - pos: 29.5,33.5 - parent: 0 - type: Transform -- uid: 8531 - type: WallSolid - components: - - pos: 29.5,34.5 - parent: 0 - type: Transform -- uid: 8532 - type: WallSolid - components: - - pos: 29.5,35.5 - parent: 0 - type: Transform -- uid: 8533 - type: WallSolid - components: - - pos: 31.5,34.5 - parent: 0 - type: Transform -- uid: 8534 - type: WallSolid - components: - - pos: 31.5,35.5 - parent: 0 - type: Transform -- uid: 8535 - type: WallSolid - components: - - pos: 36.5,29.5 - parent: 0 - type: Transform -- uid: 8536 - type: WallSolid - components: - - pos: 37.5,29.5 - parent: 0 - type: Transform -- uid: 8537 - type: WallSolid - components: - - pos: 38.5,29.5 - parent: 0 - type: Transform -- uid: 8538 - type: WallSolid - components: - - pos: 39.5,29.5 - parent: 0 - type: Transform -- uid: 8539 - type: WallSolid - components: - - pos: 39.5,30.5 - parent: 0 - type: Transform -- uid: 8540 - type: WallSolid - components: - - pos: 39.5,31.5 - parent: 0 - type: Transform -- uid: 8541 - type: WallSolid - components: - - pos: 39.5,32.5 - parent: 0 - type: Transform -- uid: 8542 - type: WallSolid - components: - - pos: 38.5,32.5 - parent: 0 - type: Transform -- uid: 8543 - type: WallSolid - components: - - pos: 37.5,32.5 - parent: 0 - type: Transform -- uid: 8544 - type: WallSolid - components: - - pos: 36.5,32.5 - parent: 0 - type: Transform -- uid: 8545 - type: WallSolid - components: - - pos: 36.5,31.5 - parent: 0 - type: Transform -- uid: 8546 - type: WallSolid - components: - - pos: 56.5,-13.5 - parent: 0 - type: Transform -- uid: 8547 - type: ReinforcedWindow - components: - - pos: 33.5,55.5 - parent: 0 - type: Transform -- uid: 8548 - type: ReinforcedWindow - components: - - pos: 32.5,55.5 - parent: 0 - type: Transform -- uid: 8549 - type: ReinforcedWindow - components: - - pos: 31.5,55.5 - parent: 0 - type: Transform -- uid: 8550 - type: ReinforcedWindow - components: - - pos: 30.5,55.5 - parent: 0 - type: Transform -- uid: 8551 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 47.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8552 - type: ReinforcedWindow - components: - - pos: 35.5,52.5 - parent: 0 - type: Transform -- uid: 8553 - type: ReinforcedWindow - components: - - pos: 35.5,53.5 - parent: 0 - type: Transform -- uid: 8554 - type: ReinforcedWindow - components: - - pos: 35.5,54.5 - parent: 0 - type: Transform -- uid: 8555 - type: ReinforcedWindow - components: - - pos: 37.5,49.5 - parent: 0 - type: Transform -- uid: 8556 - type: ReinforcedWindow - components: - - pos: 36.5,49.5 - parent: 0 - type: Transform -- uid: 8557 - type: ReinforcedWindow - components: - - pos: 26.5,54.5 - parent: 0 - type: Transform -- uid: 8558 - type: ReinforcedWindow - components: - - pos: 26.5,53.5 - parent: 0 - type: Transform -- uid: 8559 - type: ReinforcedWindow - components: - - pos: 26.5,52.5 - parent: 0 - type: Transform -- uid: 8560 - type: ReinforcedWindow - components: - - pos: 26.5,50.5 - parent: 0 - type: Transform -- uid: 8561 - type: WallReinforced - components: - - pos: 26.5,51.5 - parent: 0 - type: Transform -- uid: 8562 - type: WallReinforced - components: - - pos: 26.5,55.5 - parent: 0 - type: Transform -- uid: 8563 - type: WallReinforced - components: - - pos: 27.5,55.5 - parent: 0 - type: Transform -- uid: 8564 - type: WallReinforced - components: - - pos: 28.5,55.5 - parent: 0 - type: Transform -- uid: 8565 - type: WallReinforced - components: - - pos: 29.5,55.5 - parent: 0 - type: Transform -- uid: 8566 - type: WallReinforced - components: - - pos: 34.5,55.5 - parent: 0 - type: Transform -- uid: 8567 - type: WallReinforced - components: - - pos: 35.5,55.5 - parent: 0 - type: Transform -- uid: 8568 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 47.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8569 - type: WallSolidRust - components: - - pos: -34.5,39.5 - parent: 0 - type: Transform -- uid: 8570 - type: WallReinforced - components: - - pos: 26.5,49.5 - parent: 0 - type: Transform -- uid: 8571 - type: WallReinforced - components: - - pos: 26.5,48.5 - parent: 0 - type: Transform -- uid: 8572 - type: WallReinforced - components: - - pos: 26.5,47.5 - parent: 0 - type: Transform -- uid: 8573 - type: TintedWindow - components: - - pos: 28.5,47.5 - parent: 0 - type: Transform -- uid: 8574 - type: TintedWindow - components: - - pos: 31.5,47.5 - parent: 0 - type: Transform -- uid: 8575 - type: TintedWindow - components: - - pos: 32.5,47.5 - parent: 0 - type: Transform -- uid: 8576 - type: WallSolid - components: - - pos: 27.5,47.5 - parent: 0 - type: Transform -- uid: 8577 - type: WallSolid - components: - - pos: 30.5,47.5 - parent: 0 - type: Transform -- uid: 8578 - type: WallSolid - components: - - pos: 33.5,47.5 - parent: 0 - type: Transform -- uid: 8579 - type: WallSolid - components: - - pos: 34.5,47.5 - parent: 0 - type: Transform -- uid: 8580 - type: WallSolid - components: - - pos: 35.5,47.5 - parent: 0 - type: Transform -- uid: 8581 - type: WallSolid - components: - - pos: 35.5,48.5 - parent: 0 - type: Transform -- uid: 8582 - type: WallSolid - components: - - pos: 25.5,36.5 - parent: 0 - type: Transform -- uid: 8583 - type: WallSolid - components: - - pos: 26.5,38.5 - parent: 0 - type: Transform -- uid: 8584 - type: Grille - components: - - pos: 25.5,25.5 - parent: 0 - type: Transform -- uid: 8585 - type: Grille - components: - - pos: 19.5,25.5 - parent: 0 - type: Transform -- uid: 8586 - type: WallSolid - components: - - pos: 26.5,41.5 - parent: 0 - type: Transform -- uid: 8587 - type: WallSolid - components: - - pos: 26.5,42.5 - parent: 0 - type: Transform -- uid: 8588 - type: WallSolid - components: - - pos: 26.5,43.5 - parent: 0 - type: Transform -- uid: 8589 - type: WallSolid - components: - - pos: 26.5,44.5 - parent: 0 - type: Transform -- uid: 8590 - type: WallSolid - components: - - pos: 26.5,45.5 - parent: 0 - type: Transform -- uid: 8591 - type: WallSolid - components: - - pos: 26.5,46.5 - parent: 0 - type: Transform -- uid: 8592 - type: WallReinforced - components: - - pos: 38.5,49.5 - parent: 0 - type: Transform -- uid: 8593 - type: WallReinforced - components: - - pos: 38.5,45.5 - parent: 0 - type: Transform -- uid: 8594 - type: ReinforcedWindow - components: - - pos: 38.5,46.5 - parent: 0 - type: Transform -- uid: 8595 - type: ReinforcedWindow - components: - - pos: 38.5,48.5 - parent: 0 - type: Transform -- uid: 8596 - type: ReinforcedWindow - components: - - pos: 39.5,49.5 - parent: 0 - type: Transform -- uid: 8597 - type: ReinforcedWindow - components: - - pos: 40.5,49.5 - parent: 0 - type: Transform -- uid: 8598 - type: ReinforcedWindow - components: - - pos: 39.5,45.5 - parent: 0 - type: Transform -- uid: 8599 - type: ReinforcedWindow - components: - - pos: 40.5,45.5 - parent: 0 - type: Transform -- uid: 8600 - type: ReinforcedWindow - components: - - pos: 41.5,46.5 - parent: 0 - type: Transform -- uid: 8601 - type: ReinforcedWindow - components: - - pos: 41.5,48.5 - parent: 0 - type: Transform -- uid: 8602 - type: WallReinforced - components: - - pos: 41.5,49.5 - parent: 0 - type: Transform -- uid: 8603 - type: WallReinforced - components: - - pos: 41.5,45.5 - parent: 0 - type: Transform -- uid: 8606 - type: WallReinforced - components: - - pos: 42.5,45.5 - parent: 0 - type: Transform -- uid: 8607 - type: WallReinforced - components: - - pos: 43.5,45.5 - parent: 0 - type: Transform -- uid: 8608 - type: WallReinforced - components: - - pos: 43.5,49.5 - parent: 0 - type: Transform -- uid: 8609 - type: WallReinforced - components: - - pos: 42.5,49.5 - parent: 0 - type: Transform -- uid: 8610 - type: Grille - components: - - pos: 24.5,25.5 - parent: 0 - type: Transform -- uid: 8611 - type: WallReinforced - components: - - pos: 21.5,43.5 - parent: 0 - type: Transform -- uid: 8612 - type: Grille - components: - - pos: 25.5,22.5 - parent: 0 - type: Transform -- uid: 8613 - type: WallReinforced - components: - - pos: 21.5,45.5 - parent: 0 - type: Transform -- uid: 8614 - type: Grille - components: - - pos: 19.5,24.5 - parent: 0 - type: Transform -- uid: 8615 - type: WallReinforced - components: - - pos: 21.5,47.5 - parent: 0 - type: Transform -- uid: 8616 - type: ReinforcedWindow - components: - - pos: 23.5,22.5 - parent: 0 - type: Transform -- uid: 8617 - type: WallReinforced - components: - - pos: 23.5,47.5 - parent: 0 - type: Transform -- uid: 8618 - type: WallReinforced - components: - - pos: 24.5,47.5 - parent: 0 - type: Transform -- uid: 8619 - type: WallReinforced - components: - - pos: 25.5,47.5 - parent: 0 - type: Transform -- uid: 8620 - type: WallSolid - components: - - pos: 24.5,36.5 - parent: 0 - type: Transform -- uid: 8621 - type: CableHV - components: - - pos: -27.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8622 - type: AirlockGlass - components: - - pos: 21.5,20.5 - parent: 0 - type: Transform -- uid: 8623 - type: WallSolid - components: - - pos: 23.5,35.5 - parent: 0 - type: Transform -- uid: 8624 - type: WallSolid - components: - - pos: 25.5,41.5 - parent: 0 - type: Transform -- uid: 8625 - type: WindowReinforcedDirectional - components: - - pos: 34.5,39.5 - parent: 0 - type: Transform -- uid: 8626 - type: WindowReinforcedDirectional - components: - - pos: 33.5,39.5 - parent: 0 - type: Transform -- uid: 8627 - type: WindowReinforcedDirectional - components: - - pos: 32.5,39.5 - parent: 0 - type: Transform -- uid: 8628 - type: WindowReinforcedDirectional - components: - - pos: 31.5,39.5 - parent: 0 - type: Transform -- uid: 8629 - type: WindowReinforcedDirectional - components: - - pos: 30.5,39.5 - parent: 0 - type: Transform -- uid: 8630 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 30.5,43.5 - parent: 0 - type: Transform -- uid: 8631 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 31.5,43.5 - parent: 0 - type: Transform -- uid: 8632 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 32.5,43.5 - parent: 0 - type: Transform -- uid: 8633 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 33.5,43.5 - parent: 0 - type: Transform -- uid: 8634 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 34.5,43.5 - parent: 0 - type: Transform -- uid: 8635 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 34.5,40.5 - parent: 0 - type: Transform -- uid: 8636 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 34.5,41.5 - parent: 0 - type: Transform -- uid: 8637 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 34.5,42.5 - parent: 0 - type: Transform -- uid: 8638 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 34.5,43.5 - parent: 0 - type: Transform -- uid: 8639 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 30.5,39.5 - parent: 0 - type: Transform -- uid: 8640 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 30.5,40.5 - parent: 0 - type: Transform -- uid: 8641 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 30.5,41.5 - parent: 0 - type: Transform -- uid: 8642 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 30.5,42.5 - parent: 0 - type: Transform -- uid: 8643 - type: AirlockGlass - components: - - pos: 26.5,23.5 - parent: 0 - type: Transform -- uid: 8644 - type: WallSolid - components: - - pos: 25.5,39.5 - parent: 0 - type: Transform -- uid: 8645 - type: WallSolid - components: - - pos: 25.5,38.5 - parent: 0 - type: Transform -- uid: 8646 - type: ReinforcedWindow - components: - - pos: 21.5,42.5 - parent: 0 - type: Transform -- uid: 8647 - type: ReinforcedWindow - components: - - pos: 21.5,44.5 - parent: 0 - type: Transform -- uid: 8648 - type: ReinforcedWindow - components: - - pos: 21.5,46.5 - parent: 0 - type: Transform -- uid: 8649 - type: ReinforcedWindow - components: - - pos: 22.5,47.5 - parent: 0 - type: Transform -- uid: 8650 - type: WallSolidRust - components: - - pos: 23.5,36.5 - parent: 0 - type: Transform -- uid: 8651 - type: WallSolidRust - components: - - pos: 21.5,36.5 - parent: 0 - type: Transform -- uid: 8652 - type: WallReinforced - components: - - pos: 44.5,43.5 - parent: 0 - type: Transform -- uid: 8653 - type: WallReinforced - components: - - pos: 38.5,43.5 - parent: 0 - type: Transform -- uid: 8654 - type: WallReinforced - components: - - pos: 44.5,42.5 - parent: 0 - type: Transform -- uid: 8655 - type: Airlock - components: - - pos: 33.5,14.5 - parent: 0 - type: Transform -- uid: 8656 - type: Airlock - components: - - pos: 36.5,14.5 - parent: 0 - type: Transform -- uid: 8657 - type: Airlock - components: - - pos: 36.5,18.5 - parent: 0 - type: Transform -- uid: 8658 - type: Airlock - components: - - pos: 33.5,23.5 - parent: 0 - type: Transform -- uid: 8659 - type: Airlock - components: - - pos: 36.5,25.5 - parent: 0 - type: Transform -- uid: 8660 - type: Airlock - components: - - pos: 33.5,27.5 - parent: 0 - type: Transform -- uid: 8661 - type: Airlock - components: - - pos: 33.5,32.5 - parent: 0 - type: Transform -- uid: 8662 - type: AirlockGlass - components: - - pos: 35.5,31.5 - parent: 0 - type: Transform -- uid: 8663 - type: AirlockGlass - components: - - pos: 34.5,31.5 - parent: 0 - type: Transform -- uid: 8664 - type: Airlock - components: - - pos: 33.5,33.5 - parent: 0 - type: Transform -- uid: 8665 - type: ReinforcedWindow - components: - - pos: 45.5,42.5 - parent: 0 - type: Transform -- uid: 8666 - type: AirlockMaintLocked - components: - - pos: 36.5,28.5 - parent: 0 - type: Transform -- uid: 8667 - type: AirlockMaintLocked - components: - - pos: 26.5,37.5 - parent: 0 - type: Transform -- uid: 8668 - type: ReinforcedWindow - components: - - pos: 46.5,42.5 - parent: 0 - type: Transform -- uid: 8669 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 27.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8670 - type: WallReinforced - components: - - pos: 47.5,42.5 - parent: 0 - type: Transform -- uid: 8671 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 34.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8672 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8673 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 30.5,32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8674 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8675 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8676 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8677 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8678 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8679 - type: ReinforcedWindow - components: - - pos: 38.5,44.5 - parent: 0 - type: Transform -- uid: 8680 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8681 - type: AirlockJanitorLocked - components: - - pos: 36.5,30.5 - parent: 0 - type: Transform -- uid: 8682 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8683 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8684 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8685 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8686 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8687 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8688 - type: GasPipeTJunction - components: - - pos: 28.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8689 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8690 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 35.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8691 - type: GasPipeStraight - components: - - pos: 35.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8692 - type: GasPipeStraight - components: - - pos: 35.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8693 - type: GasPipeStraight - components: - - pos: 35.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8694 - type: GasPipeStraight - components: - - pos: 35.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8695 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 20.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8696 - type: GasPipeStraight - components: - - pos: 35.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8697 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 26.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8698 - type: GasPipeStraight - components: - - pos: 35.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8699 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 29.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8700 - type: GasPipeStraight - components: - - pos: 35.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8701 - type: GasPipeStraight - components: - - pos: 35.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8702 - type: GasPipeStraight - components: - - pos: 35.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8703 - type: GasPipeStraight - components: - - pos: 35.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8704 - type: GasPipeStraight - components: - - pos: 35.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8705 - type: GasPipeTJunction - components: - - pos: 32.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8706 - type: GasPipeStraight - components: - - pos: 35.5,34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8707 - type: GasPipeStraight - components: - - pos: 35.5,35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8708 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 35.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8709 - type: GasPipeStraight - components: - - pos: 35.5,37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8710 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8711 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 35.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8712 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8713 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8714 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8715 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8716 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 29.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8717 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 35.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8718 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8719 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8720 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8721 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8722 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 35.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8723 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 35.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8724 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8725 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8726 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8727 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8728 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8729 - type: GasPipeStraight - components: - - pos: 34.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8730 - type: GasPipeStraight - components: - - pos: 34.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8731 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 36.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8732 - type: GasPipeStraight - components: - - pos: 34.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8733 - type: GasPipeStraight - components: - - pos: 34.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8734 - type: GasPipeStraight - components: - - pos: 34.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8735 - type: GasPipeStraight - components: - - pos: 34.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8736 - type: GasPipeStraight - components: - - pos: 34.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8737 - type: WallReinforced - components: - - pos: -62.5,-24.5 - parent: 0 - type: Transform -- uid: 8738 - type: GasPipeStraight - components: - - pos: 34.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8739 - type: GasPipeStraight - components: - - pos: 34.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8740 - type: GasPipeStraight - components: - - pos: 34.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8741 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 33.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8742 - type: GasPipeStraight - components: - - pos: 34.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8743 - type: GasPipeStraight - components: - - pos: 34.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8744 - type: GasPipeStraight - components: - - pos: 34.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8745 - type: GasPipeStraight - components: - - pos: 34.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8746 - type: GasPipeTJunction - components: - - pos: 34.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8747 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 35.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8748 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 29.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8749 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 28.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8750 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 29.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8751 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 28.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8752 - type: GasPipeBend - components: - - pos: 35.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8753 - type: GasPipeBend - components: - - pos: 36.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8754 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 36.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8755 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8756 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8757 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8758 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8759 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8760 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8761 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8762 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8763 - type: GasPipeTJunction - components: - - pos: 20.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8764 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8765 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8766 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 21.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8767 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8768 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8769 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8770 - type: GasPipeTJunction - components: - - pos: 26.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8771 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 34.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8772 - type: GasPipeStraight - components: - - pos: 35.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8773 - type: GasPipeStraight - components: - - pos: 35.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8774 - type: GasPipeStraight - components: - - pos: 35.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8775 - type: GasPipeStraight - components: - - pos: 36.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8776 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 34.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8777 - type: GasPipeStraight - components: - - pos: 36.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8778 - type: GasPipeStraight - components: - - pos: 36.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8779 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 29.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8780 - type: GasPipeStraight - components: - - pos: 36.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8781 - type: GasPipeStraight - components: - - pos: 36.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8782 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8783 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8784 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8785 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8786 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8787 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8788 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 31.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8789 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8790 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8791 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 28.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8792 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8793 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8794 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8795 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8796 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8797 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8798 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8799 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8800 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8801 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8802 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8803 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8804 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8805 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8806 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8807 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8808 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8809 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8810 - type: GasPipeTJunction - components: - - pos: 22.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8811 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 22.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8812 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 21.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8813 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 35.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8814 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 16.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8815 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 16.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8816 - type: GasPipeStraight - components: - - pos: 16.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8817 - type: GasPipeStraight - components: - - pos: 16.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8818 - type: GasPipeStraight - components: - - pos: 16.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8819 - type: GasPipeStraight - components: - - pos: 16.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8820 - type: GasPipeStraight - components: - - pos: 16.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8821 - type: GasPipeStraight - components: - - pos: 16.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8822 - type: GasPipeStraight - components: - - pos: 16.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8823 - type: GasPipeStraight - components: - - pos: 16.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8824 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8825 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8826 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8827 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8828 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8829 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8830 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8831 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8832 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8833 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8834 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8835 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8836 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8837 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8838 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8839 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8840 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8841 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8842 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8843 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8844 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8845 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8846 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8847 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 14.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8848 - type: WallReinforced - components: - - pos: 48.5,-3.5 - parent: 0 - type: Transform -- uid: 8849 - type: WallReinforced - components: - - pos: 48.5,-4.5 - parent: 0 - type: Transform -- uid: 8850 - type: WallReinforced - components: - - pos: 49.5,-4.5 - parent: 0 - type: Transform -- uid: 8851 - type: WallReinforced - components: - - pos: 50.5,-5.5 - parent: 0 - type: Transform -- uid: 8852 - type: WallReinforced - components: - - pos: 50.5,-4.5 - parent: 0 - type: Transform -- uid: 8853 - type: WallReinforced - components: - - pos: 52.5,-5.5 - parent: 0 - type: Transform -- uid: 8854 - type: WallReinforced - components: - - pos: 52.5,-4.5 - parent: 0 - type: Transform -- uid: 8855 - type: WallReinforced - components: - - pos: 53.5,-4.5 - parent: 0 - type: Transform -- uid: 8856 - type: WallReinforced - components: - - pos: 54.5,-4.5 - parent: 0 - type: Transform -- uid: 8857 - type: ReinforcedWindow - components: - - pos: 48.5,-2.5 - parent: 0 - type: Transform -- uid: 8858 - type: ReinforcedWindow - components: - - pos: 48.5,-0.5 - parent: 0 - type: Transform -- uid: 8859 - type: ReinforcedWindow - components: - - pos: 48.5,2.5 - parent: 0 - type: Transform -- uid: 8860 - type: ReinforcedWindow - components: - - pos: 48.5,4.5 - parent: 0 - type: Transform -- uid: 8861 - type: ReinforcedWindow - components: - - pos: 45.5,-4.5 - parent: 0 - type: Transform -- uid: 8862 - type: WallReinforced - components: - - pos: 55.5,-4.5 - parent: 0 - type: Transform -- uid: 8863 - type: WallReinforced - components: - - pos: 56.5,-4.5 - parent: 0 - type: Transform -- uid: 8864 - type: WallReinforced - components: - - pos: 51.5,-9.5 - parent: 0 - type: Transform -- uid: 8865 - type: WallReinforced - components: - - pos: 52.5,-9.5 - parent: 0 - type: Transform -- uid: 8866 - type: WallReinforced - components: - - pos: 50.5,-9.5 - parent: 0 - type: Transform -- uid: 8867 - type: WallReinforced - components: - - pos: 50.5,-10.5 - parent: 0 - type: Transform -- uid: 8868 - type: WallReinforced - components: - - pos: 50.5,-11.5 - parent: 0 - type: Transform -- uid: 8869 - type: WallReinforced - components: - - pos: 50.5,-12.5 - parent: 0 - type: Transform -- uid: 8870 - type: WallReinforced - components: - - pos: 44.5,-5.5 - parent: 0 - type: Transform -- uid: 8871 - type: WallReinforced - components: - - pos: 44.5,-6.5 - parent: 0 - type: Transform -- uid: 8872 - type: WallReinforced - components: - - pos: 44.5,-7.5 - parent: 0 - type: Transform -- uid: 8873 - type: WallReinforced - components: - - pos: 44.5,-8.5 - parent: 0 - type: Transform -- uid: 8874 - type: WallReinforced - components: - - pos: 44.5,-9.5 - parent: 0 - type: Transform -- uid: 8875 - type: WallReinforced - components: - - pos: 45.5,-9.5 - parent: 0 - type: Transform -- uid: 8876 - type: WallReinforced - components: - - pos: 45.5,-10.5 - parent: 0 - type: Transform -- uid: 8877 - type: WallReinforced - components: - - pos: 45.5,-11.5 - parent: 0 - type: Transform -- uid: 8878 - type: WallReinforced - components: - - pos: 45.5,-12.5 - parent: 0 - type: Transform -- uid: 8879 - type: WallReinforced - components: - - pos: 46.5,-12.5 - parent: 0 - type: Transform -- uid: 8880 - type: WallReinforced - components: - - pos: 47.5,-12.5 - parent: 0 - type: Transform -- uid: 8881 - type: WallReinforced - components: - - pos: 48.5,-12.5 - parent: 0 - type: Transform -- uid: 8882 - type: WallReinforced - components: - - pos: 49.5,-12.5 - parent: 0 - type: Transform -- uid: 8883 - type: ReinforcedWindow - components: - - pos: 53.5,-9.5 - parent: 0 - type: Transform -- uid: 8884 - type: ReinforcedWindow - components: - - pos: 55.5,-9.5 - parent: 0 - type: Transform -- uid: 8885 - type: ReinforcedWindow - components: - - pos: 56.5,-9.5 - parent: 0 - type: Transform -- uid: 8886 - type: WallSolidRust - components: - - pos: -36.5,37.5 - parent: 0 - type: Transform -- uid: 8887 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 29.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8888 - type: ReinforcedWindow - components: - - pos: 56.5,-6.5 - parent: 0 - type: Transform -- uid: 8889 - type: ReinforcedWindow - components: - - pos: 56.5,-5.5 - parent: 0 - type: Transform -- uid: 8890 - type: TableReinforced - components: - - pos: 46.5,-4.5 - parent: 0 - type: Transform -- uid: 8891 - type: TableReinforced - components: - - pos: 48.5,-1.5 - parent: 0 - type: Transform -- uid: 8892 - type: PlasticFlapsAirtightClear - components: - - pos: 47.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8893 - type: WindoorEngineeringLocked - components: - - pos: 46.5,-4.5 - parent: 0 - type: Transform -- uid: 8894 - type: WindoorEngineeringLocked - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-1.5 - parent: 0 - type: Transform -- uid: 8895 - type: FirelockGlass - components: - - pos: 46.5,-4.5 - parent: 0 - type: Transform -- uid: 8896 - type: FirelockGlass - components: - - pos: 48.5,-1.5 - parent: 0 - type: Transform -- uid: 8897 - type: WaterTankFull - components: - - pos: 43.5,0.5 - parent: 0 - type: Transform -- uid: 8898 - type: Table - components: - - pos: 42.5,0.5 - parent: 0 - type: Transform -- uid: 8899 - type: Table - components: - - pos: 42.5,-3.5 - parent: 0 - type: Transform -- uid: 8900 - type: Table - components: - - pos: 43.5,-3.5 - parent: 0 - type: Transform -- uid: 8901 - type: PosterContrabandFreeDrone - components: - - pos: 41.5,-1.5 - parent: 0 - type: Transform -- uid: 8902 - type: SignDrones - components: - - pos: 44.5,-0.5 - parent: 0 - type: Transform -- uid: 8903 - type: SpawnMobDrone - components: - - pos: 42.5,-2.5 - parent: 0 - type: Transform -- uid: 8904 - type: SpawnMobDrone - components: - - pos: 42.5,-1.5 - parent: 0 - type: Transform -- uid: 8905 - type: SpawnMobDrone - components: - - pos: 42.5,-0.5 - parent: 0 - type: Transform -- uid: 8906 - type: SheetGlass - components: - - pos: 43.00039,-3.4709759 - parent: 0 - type: Transform -- uid: 8907 - type: SheetGlass - components: - - pos: 43.00039,-3.4709759 - parent: 0 - type: Transform -- uid: 8908 - type: SheetGlass - components: - - pos: 43.00039,-3.4709759 - parent: 0 - type: Transform -- uid: 8909 - type: SheetPlasteel - components: - - pos: 43.422264,-3.5022259 - parent: 0 - type: Transform -- uid: 8910 - type: SheetPlasteel - components: - - pos: 43.422264,-3.5022259 - parent: 0 - type: Transform -- uid: 8911 - type: SheetSteel - components: - - pos: 42.547264,-3.4866009 - parent: 0 - type: Transform -- uid: 8912 - type: SheetSteel - components: - - pos: 42.547264,-3.4866009 - parent: 0 - type: Transform -- uid: 8913 - type: SprayBottleSpaceCleaner - components: - - pos: 42.328514,0.6852741 - parent: 0 - type: Transform -- uid: 8914 - type: SprayBottleSpaceCleaner - components: - - pos: 42.31289,0.48214912 - parent: 0 - type: Transform -- uid: 8915 - type: TrashBag - components: - - pos: 42.56289,0.6696491 - parent: 0 - type: Transform -- uid: 8916 - type: TrashBag - components: - - pos: 42.68789,0.6227741 - parent: 0 - type: Transform -- uid: 8917 - type: MopBucket - components: - - pos: 43.50039,-0.37722588 - parent: 0 - type: Transform -- uid: 8918 - type: MopItem - components: - - pos: 43.516014,-0.36160088 - parent: 0 - type: Transform -- uid: 8919 - type: AirlockCaptainLocked - components: - - name: Drone Closet - type: MetaData - - pos: 44.5,-1.5 - parent: 0 - type: Transform -- uid: 8920 - type: WallSolid - components: - - pos: 40.5,11.5 - parent: 0 - type: Transform -- uid: 8921 - type: WallSolid - components: - - pos: 37.5,5.5 - parent: 0 - type: Transform -- uid: 8922 - type: WallSolid - components: - - pos: 36.5,5.5 - parent: 0 - type: Transform -- uid: 8923 - type: WallSolid - components: - - pos: 35.5,5.5 - parent: 0 - type: Transform -- uid: 8924 - type: WallSolid - components: - - pos: 40.5,5.5 - parent: 0 - type: Transform -- uid: 8925 - type: WallReinforced - components: - - pos: 41.5,11.5 - parent: 0 - type: Transform -- uid: 8926 - type: WallReinforced - components: - - pos: 41.5,10.5 - parent: 0 - type: Transform -- uid: 8927 - type: WallReinforced - components: - - pos: 41.5,9.5 - parent: 0 - type: Transform -- uid: 8928 - type: WallReinforced - components: - - pos: 41.5,8.5 - parent: 0 - type: Transform -- uid: 8929 - type: WallReinforced - components: - - pos: 41.5,7.5 - parent: 0 - type: Transform -- uid: 8930 - type: WallSolid - components: - - pos: 39.5,11.5 - parent: 0 - type: Transform -- uid: 8931 - type: WallSolid - components: - - pos: 38.5,11.5 - parent: 0 - type: Transform -- uid: 8932 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: 35.5,6.5 - parent: 0 - type: Transform -- uid: 8933 - type: Table - components: - - pos: 36.5,6.5 - parent: 0 - type: Transform -- uid: 8934 - type: WallSolid - components: - - pos: 38.5,5.5 - parent: 0 - type: Transform -- uid: 8935 - type: Table - components: - - pos: 37.5,6.5 - parent: 0 - type: Transform -- uid: 8936 - type: Table - components: - - pos: 40.5,6.5 - parent: 0 - type: Transform -- uid: 8937 - type: Table - components: - - pos: 40.5,7.5 - parent: 0 - type: Transform -- uid: 8938 - type: Table - components: - - pos: 40.5,8.5 - parent: 0 - type: Transform -- uid: 8939 - type: Table - components: - - pos: 40.5,9.5 - parent: 0 - type: Transform -- uid: 8940 - type: Table - components: - - pos: 40.5,10.5 - parent: 0 - type: Transform -- uid: 8941 - type: Table - components: - - pos: 39.5,10.5 - parent: 0 - type: Transform -- uid: 8942 - type: Rack - components: - - pos: 38.5,10.5 - parent: 0 - type: Transform -- uid: 8943 - type: Rack - components: - - pos: 37.5,10.5 - parent: 0 - type: Transform -- uid: 8944 - type: Rack - components: - - pos: 36.5,10.5 - parent: 0 - type: Transform -- uid: 8945 - type: WallReinforced - components: - - pos: 46.5,18.5 - parent: 0 - type: Transform -- uid: 8946 - type: Rack - components: - - pos: 38.5,8.5 - parent: 0 - type: Transform -- uid: 8947 - type: Rack - components: - - pos: 37.5,8.5 - parent: 0 - type: Transform -- uid: 8948 - type: Rack - components: - - pos: 36.5,8.5 - parent: 0 - type: Transform -- uid: 8949 - type: Rack - components: - - pos: 38.5,6.5 - parent: 0 - type: Transform -- uid: 8950 - type: Rack - components: - - pos: 32.5,6.5 - parent: 0 - type: Transform -- uid: 8951 - type: Rack - components: - - pos: 32.5,7.5 - parent: 0 - type: Transform -- uid: 8952 - type: Rack - components: - - pos: 32.5,8.5 - parent: 0 - type: Transform -- uid: 8953 - type: Grille - components: - - pos: 31.5,7.5 - parent: 0 - type: Transform -- uid: 8954 - type: Grille - components: - - pos: 29.5,7.5 - parent: 0 - type: Transform -- uid: 8955 - type: AirlockEngineeringLocked - components: - - name: Circuitry - type: MetaData - - pos: 39.5,5.5 - parent: 0 - type: Transform -- uid: 8956 - type: HighSecCommandLocked - components: - - pos: 34.5,7.5 - parent: 0 - type: Transform -- uid: 8957 - type: CableApcExtension - components: - - pos: 40.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8958 - type: AirlockMaintLocked - components: - - pos: 40.5,1.5 - parent: 0 - type: Transform -- uid: 8959 - type: AirlockMaintLocked - components: - - pos: 15.5,-21.5 - parent: 0 - type: Transform -- uid: 8960 - type: Grille - components: - - pos: 48.5,-2.5 - parent: 0 - type: Transform -- uid: 8961 - type: Grille - components: - - pos: 45.5,-4.5 - parent: 0 - type: Transform -- uid: 8962 - type: WallReinforced - components: - - pos: 48.5,6.5 - parent: 0 - type: Transform -- uid: 8963 - type: WallReinforced - components: - - pos: 48.5,7.5 - parent: 0 - type: Transform -- uid: 8964 - type: WallReinforced - components: - - pos: 48.5,8.5 - parent: 0 - type: Transform -- uid: 8965 - type: WallReinforced - components: - - pos: 48.5,9.5 - parent: 0 - type: Transform -- uid: 8966 - type: WallReinforced - components: - - pos: 48.5,10.5 - parent: 0 - type: Transform -- uid: 8967 - type: WallReinforced - components: - - pos: 48.5,11.5 - parent: 0 - type: Transform -- uid: 8968 - type: WallReinforced - components: - - pos: 45.5,11.5 - parent: 0 - type: Transform -- uid: 8969 - type: WallReinforced - components: - - pos: 45.5,12.5 - parent: 0 - type: Transform -- uid: 8970 - type: WallReinforced - components: - - pos: 44.5,12.5 - parent: 0 - type: Transform -- uid: 8971 - type: WallReinforced - components: - - pos: 43.5,12.5 - parent: 0 - type: Transform -- uid: 8972 - type: WallReinforced - components: - - pos: 42.5,12.5 - parent: 0 - type: Transform -- uid: 8973 - type: WallReinforced - components: - - pos: 41.5,12.5 - parent: 0 - type: Transform -- uid: 8974 - type: ReinforcedWindow - components: - - pos: 46.5,11.5 - parent: 0 - type: Transform -- uid: 8975 - type: Grille - components: - - pos: 46.5,11.5 - parent: 0 - type: Transform -- uid: 8976 - type: AirlockChiefEngineerLocked - components: - - pos: 47.5,11.5 - parent: 0 - type: Transform -- uid: 8977 - type: AirlockAtmosphericsLocked - components: - - pos: 51.5,-5.5 - parent: 0 - type: Transform -- uid: 8978 - type: BlastDoorOpen - components: - - pos: 51.5,-4.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8979 - type: SignalReceiver -- uid: 8979 - type: SignalButton - components: - - pos: 50.5,-5.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 8978 - - port: Toggle - uid: 8981 - - port: Toggle - uid: 8980 - type: SignalTransmitter -- uid: 8980 - type: BlastDoorOpen - components: - - pos: 46.5,-4.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8979 - type: SignalReceiver -- uid: 8981 - type: BlastDoorOpen - components: - - pos: 47.5,-4.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8979 - type: SignalReceiver -- uid: 8982 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 28.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8983 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 48.5,-5.5 - parent: 0 - type: Transform -- uid: 8984 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 54.5,-9.5 - parent: 0 - type: Transform -- uid: 8985 - type: DisposalUnit - components: - - pos: 50.5,-8.5 - parent: 0 - type: Transform -- uid: 8986 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 35.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8987 - type: GasPipeStraight - components: - - pos: 46.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8988 - type: GasPipeStraight - components: - - pos: 46.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8989 - type: GasPipeStraight - components: - - pos: 46.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8990 - type: GasPipeStraight - components: - - pos: 46.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8991 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8992 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8993 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8994 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8995 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8996 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8997 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 45.5,-2.5 - parent: 0 - type: Transform -- uid: 8998 - type: PortableScrubber - components: - - pos: 45.5,-2.5 - parent: 0 - type: Transform -- uid: 8999 - type: PortableScrubber - components: - - pos: 45.5,-3.5 - parent: 0 - type: Transform -- uid: 9000 - type: GasPipeStraight - components: - - pos: 46.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9001 - type: GasPipeStraight - components: - - pos: 46.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9002 - type: GasPipeTJunction - components: - - pos: 47.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9003 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9004 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9005 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9006 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9007 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9008 - type: AirlockAtmosphericsLocked - components: - - pos: -35.5,32.5 - parent: 0 - type: Transform -- uid: 9009 - type: ChairOfficeDark - components: - - pos: 12.5,21.5 - parent: 0 - type: Transform -- uid: 9010 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9011 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9012 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9013 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9014 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9015 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9016 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9017 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9018 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9019 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9020 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9021 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-6.5 - parent: 0 - type: Transform -- uid: 9022 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-5.5 - parent: 0 - type: Transform -- uid: 9023 - type: ComputerAlert - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-7.5 - parent: 0 - type: Transform -- uid: 9024 - type: Table - components: - - pos: 53.5,-5.5 - parent: 0 - type: Transform -- uid: 9025 - type: Table - components: - - pos: 54.5,-5.5 - parent: 0 - type: Transform -- uid: 9026 - type: Table - components: - - pos: 55.5,-5.5 - parent: 0 - type: Transform -- uid: 9027 - type: Table - components: - - pos: 55.5,-6.5 - parent: 0 - type: Transform -- uid: 9028 - type: WallSolid - components: - - pos: 48.5,12.5 - parent: 0 - type: Transform -- uid: 9029 - type: WallSolid - components: - - pos: 49.5,11.5 - parent: 0 - type: Transform -- uid: 9030 - type: WallSolid - components: - - pos: 51.5,11.5 - parent: 0 - type: Transform -- uid: 9031 - type: WallReinforced - components: - - pos: 57.5,12.5 - parent: 0 - type: Transform -- uid: 9032 - type: WallSolid - components: - - pos: 52.5,11.5 - parent: 0 - type: Transform -- uid: 9033 - type: WallSolid - components: - - pos: 52.5,10.5 - parent: 0 - type: Transform -- uid: 9034 - type: ReinforcedWindow - components: - - pos: 52.5,8.5 - parent: 0 - type: Transform -- uid: 9035 - type: ReinforcedWindow - components: - - pos: 52.5,9.5 - parent: 0 - type: Transform -- uid: 9036 - type: WallSolid - components: - - pos: 52.5,7.5 - parent: 0 - type: Transform -- uid: 9037 - type: WallSolid - components: - - pos: 52.5,6.5 - parent: 0 - type: Transform -- uid: 9038 - type: WallSolid - components: - - pos: 52.5,5.5 - parent: 0 - type: Transform -- uid: 9039 - type: WallSolid - components: - - pos: 51.5,6.5 - parent: 0 - type: Transform -- uid: 9040 - type: WallSolid - components: - - pos: 49.5,6.5 - parent: 0 - type: Transform -- uid: 9041 - type: AirlockEngineeringLocked - components: - - pos: 50.5,6.5 - parent: 0 - type: Transform -- uid: 9042 - type: AirlockEngineeringLocked - components: - - pos: 50.5,11.5 - parent: 0 - type: Transform -- uid: 9043 - type: AirlockEngineeringGlassLocked - components: - - pos: 48.5,3.5 - parent: 0 - type: Transform -- uid: 9044 - type: ClosetRadiationSuitFilled - components: - - pos: 51.5,7.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9045 - type: ClosetRadiationSuitFilled - components: - - pos: 49.5,7.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9046 - type: ClosetRadiationSuitFilled - components: - - pos: 49.5,10.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9047 - type: ClosetFireFilled - components: - - pos: 51.5,10.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9048 - type: WaterTankFull - components: - - pos: 51.5,8.5 - parent: 0 - type: Transform -- uid: 9049 - type: ExtinguisherCabinetFilled - components: - - pos: 48.5,9.5 - parent: 0 - type: Transform -- uid: 9050 - type: WallmountTelescreen - components: - - rot: -1.5707963267948966 rad - pos: 48.5,8.5 - parent: 0 - type: Transform -- uid: 9051 - type: LockerChiefEngineerFilled - components: - - pos: 47.5,6.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9052 - type: TableReinforced - components: - - pos: 46.5,8.5 - parent: 0 - type: Transform -- uid: 9053 - type: TableReinforced - components: - - pos: 46.5,9.5 - parent: 0 - type: Transform -- uid: 9054 - type: TableReinforced - components: - - pos: 45.5,9.5 - parent: 0 - type: Transform -- uid: 9055 - type: TableReinforced - components: - - pos: 44.5,9.5 - parent: 0 - type: Transform -- uid: 9056 - type: TableReinforced - components: - - pos: 43.5,9.5 - parent: 0 - type: Transform -- uid: 9057 - type: TableReinforced - components: - - pos: 43.5,8.5 - parent: 0 - type: Transform -- uid: 9058 - type: ComputerSolarControl - components: - - pos: 42.5,11.5 - parent: 0 - type: Transform -- uid: 9059 - type: ComputerPowerMonitoring - components: - - pos: 43.5,11.5 - parent: 0 - type: Transform -- uid: 9060 - type: ComputerAlert - components: - - pos: 44.5,11.5 - parent: 0 - type: Transform -- uid: 9061 - type: DisposalUnit - components: - - pos: 42.5,6.5 - parent: 0 - type: Transform -- uid: 9062 - type: filingCabinetDrawer - components: - - pos: 46.5,6.5 - parent: 0 - type: Transform -- uid: 9063 - type: Rack - components: - - pos: 45.5,6.5 - parent: 0 - type: Transform -- uid: 9064 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 44.5,8.5 - parent: 0 - type: Transform -- uid: 9065 - type: ReinforcedWindow - components: - - pos: 53.5,6.5 - parent: 0 - type: Transform -- uid: 9066 - type: ReinforcedWindow - components: - - pos: 55.5,6.5 - parent: 0 - type: Transform -- uid: 9067 - type: ReinforcedWindow - components: - - pos: 56.5,6.5 - parent: 0 - type: Transform -- uid: 9068 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 21.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9069 - type: WallSolid - components: - - pos: 57.5,7.5 - parent: 0 - type: Transform -- uid: 9070 - type: WallSolid - components: - - pos: 57.5,8.5 - parent: 0 - type: Transform -- uid: 9071 - type: WallSolid - components: - - pos: 57.5,9.5 - parent: 0 - type: Transform -- uid: 9072 - type: WallSolid - components: - - pos: 57.5,10.5 - parent: 0 - type: Transform -- uid: 9073 - type: WallSolid - components: - - pos: 57.5,11.5 - parent: 0 - type: Transform -- uid: 9074 - type: WallReinforced - components: - - pos: 52.5,12.5 - parent: 0 - type: Transform -- uid: 9075 - type: WallReinforced - components: - - pos: 53.5,12.5 - parent: 0 - type: Transform -- uid: 9076 - type: WallReinforced - components: - - pos: 54.5,12.5 - parent: 0 - type: Transform -- uid: 9077 - type: WallReinforced - components: - - pos: 55.5,12.5 - parent: 0 - type: Transform -- uid: 9078 - type: WallReinforced - components: - - pos: 56.5,12.5 - parent: 0 - type: Transform -- uid: 9079 - type: WallReinforced - components: - - pos: 58.5,-3.5 - parent: 0 - type: Transform -- uid: 9080 - type: WallReinforced - components: - - pos: 58.5,-2.5 - parent: 0 - type: Transform -- uid: 9081 - type: WallReinforced - components: - - pos: 58.5,-1.5 - parent: 0 - type: Transform -- uid: 9082 - type: WallReinforced - components: - - pos: 58.5,-0.5 - parent: 0 - type: Transform -- uid: 9083 - type: WallReinforced - components: - - pos: 58.5,0.5 - parent: 0 - type: Transform -- uid: 9084 - type: WallReinforced - components: - - pos: 58.5,1.5 - parent: 0 - type: Transform -- uid: 9085 - type: WallReinforced - components: - - pos: 58.5,2.5 - parent: 0 - type: Transform -- uid: 9086 - type: WallReinforced - components: - - pos: 63.5,-3.5 - parent: 0 - type: Transform -- uid: 9087 - type: WallReinforced - components: - - pos: 62.5,-3.5 - parent: 0 - type: Transform -- uid: 9088 - type: WallReinforced - components: - - pos: 61.5,-3.5 - parent: 0 - type: Transform -- uid: 9089 - type: WallReinforced - components: - - pos: 60.5,-3.5 - parent: 0 - type: Transform -- uid: 9090 - type: WallReinforced - components: - - pos: 59.5,-3.5 - parent: 0 - type: Transform -- uid: 9091 - type: WallReinforced - components: - - pos: 63.5,-1.5 - parent: 0 - type: Transform -- uid: 9092 - type: WallReinforced - components: - - pos: 62.5,-1.5 - parent: 0 - type: Transform -- uid: 9093 - type: WallReinforced - components: - - pos: 61.5,-1.5 - parent: 0 - type: Transform -- uid: 9094 - type: WallReinforced - components: - - pos: 62.5,2.5 - parent: 0 - type: Transform -- uid: 9095 - type: WallReinforced - components: - - pos: 61.5,2.5 - parent: 0 - type: Transform -- uid: 9096 - type: WallReinforced - components: - - pos: 60.5,2.5 - parent: 0 - type: Transform -- uid: 9097 - type: WallReinforced - components: - - pos: 57.5,-3.5 - parent: 0 - type: Transform -- uid: 9098 - type: WallReinforced - components: - - pos: 56.5,-3.5 - parent: 0 - type: Transform -- uid: 9099 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 24.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9100 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 56.5,-8.5 - parent: 0 - type: Transform -- uid: 9101 - type: VendingMachineTankDispenserEngineering - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 49.5,-5.5 - parent: 0 - type: Transform -- uid: 9102 - type: ReinforcedWindow - components: - - pos: 63.5,2.5 - parent: 0 - type: Transform -- uid: 9103 - type: ReinforcedWindow - components: - - pos: 64.5,2.5 - parent: 0 - type: Transform -- uid: 9104 - type: ReinforcedWindow - components: - - pos: 65.5,2.5 - parent: 0 - type: Transform -- uid: 9105 - type: ReinforcedWindow - components: - - pos: 66.5,3.5 - parent: 0 - type: Transform -- uid: 9106 - type: ReinforcedWindow - components: - - pos: 66.5,5.5 - parent: 0 - type: Transform -- uid: 9107 - type: ReinforcedWindow - components: - - pos: 68.5,3.5 - parent: 0 - type: Transform -- uid: 9108 - type: ReinforcedWindow - components: - - pos: 68.5,5.5 - parent: 0 - type: Transform -- uid: 9109 - type: WallReinforced - components: - - pos: 69.5,2.5 - parent: 0 - type: Transform -- uid: 9110 - type: WallReinforced - components: - - pos: 68.5,2.5 - parent: 0 - type: Transform -- uid: 9111 - type: WallReinforced - components: - - pos: 67.5,2.5 - parent: 0 - type: Transform -- uid: 9112 - type: WallReinforced - components: - - pos: 66.5,2.5 - parent: 0 - type: Transform -- uid: 9113 - type: WallReinforced - components: - - pos: 61.5,3.5 - parent: 0 - type: Transform -- uid: 9114 - type: WallReinforced - components: - - pos: 61.5,5.5 - parent: 0 - type: Transform -- uid: 9115 - type: WallReinforced - components: - - pos: 61.5,6.5 - parent: 0 - type: Transform -- uid: 9116 - type: WallReinforced - components: - - pos: 62.5,6.5 - parent: 0 - type: Transform -- uid: 9117 - type: WallReinforced - components: - - pos: 63.5,6.5 - parent: 0 - type: Transform -- uid: 9118 - type: WallReinforced - components: - - pos: 64.5,6.5 - parent: 0 - type: Transform -- uid: 9119 - type: WallReinforced - components: - - pos: 65.5,6.5 - parent: 0 - type: Transform -- uid: 9120 - type: WallReinforced - components: - - pos: 66.5,6.5 - parent: 0 - type: Transform -- uid: 9121 - type: WallReinforced - components: - - pos: 67.5,6.5 - parent: 0 - type: Transform -- uid: 9122 - type: WallReinforced - components: - - pos: 68.5,6.5 - parent: 0 - type: Transform -- uid: 9123 - type: WallReinforced - components: - - pos: 69.5,6.5 - parent: 0 - type: Transform -- uid: 9124 - type: WallReinforced - components: - - pos: 61.5,7.5 - parent: 0 - type: Transform -- uid: 9125 - type: ReinforcedWindow - components: - - pos: 61.5,9.5 - parent: 0 - type: Transform -- uid: 9126 - type: ReinforcedWindow - components: - - pos: 61.5,8.5 - parent: 0 - type: Transform -- uid: 9127 - type: ReinforcedWindow - components: - - pos: 60.5,9.5 - parent: 0 - type: Transform -- uid: 9128 - type: ReinforcedWindow - components: - - pos: 60.5,10.5 - parent: 0 - type: Transform -- uid: 9129 - type: WallReinforced - components: - - pos: 60.5,11.5 - parent: 0 - type: Transform -- uid: 9130 - type: WallReinforced - components: - - pos: 60.5,12.5 - parent: 0 - type: Transform -- uid: 9131 - type: WallReinforced - components: - - pos: 58.5,12.5 - parent: 0 - type: Transform -- uid: 9132 - type: WallReinforced - components: - - pos: 60.5,6.5 - parent: 0 - type: Transform -- uid: 9133 - type: WallReinforced - components: - - pos: 59.5,6.5 - parent: 0 - type: Transform -- uid: 9134 - type: WallSolid - components: - - pos: 54.5,-3.5 - parent: 0 - type: Transform -- uid: 9135 - type: WallSolid - components: - - pos: 54.5,-2.5 - parent: 0 - type: Transform -- uid: 9136 - type: WallSolid - components: - - pos: 54.5,1.5 - parent: 0 - type: Transform -- uid: 9137 - type: ReinforcedWindow - components: - - pos: 54.5,-1.5 - parent: 0 - type: Transform -- uid: 9138 - type: ReinforcedWindow - components: - - pos: 54.5,0.5 - parent: 0 - type: Transform -- uid: 9139 - type: ReinforcedWindow - components: - - pos: 55.5,1.5 - parent: 0 - type: Transform -- uid: 9140 - type: ReinforcedWindow - components: - - pos: 56.5,1.5 - parent: 0 - type: Transform -- uid: 9141 - type: ReinforcedWindow - components: - - pos: 57.5,1.5 - parent: 0 - type: Transform -- uid: 9142 - type: Grille - components: - - pos: 54.5,-1.5 - parent: 0 - type: Transform -- uid: 9143 - type: Grille - components: - - pos: 54.5,0.5 - parent: 0 - type: Transform -- uid: 9144 - type: Grille - components: - - pos: 55.5,1.5 - parent: 0 - type: Transform -- uid: 9145 - type: Grille - components: - - pos: 56.5,1.5 - parent: 0 - type: Transform -- uid: 9146 - type: Grille - components: - - pos: 57.5,1.5 - parent: 0 - type: Transform -- uid: 9147 - type: AirlockEngineeringGlassLocked - components: - - pos: 54.5,-0.5 - parent: 0 - type: Transform -- uid: 9148 - type: LockerEngineerFilled - components: - - pos: 57.5,-2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9149 - type: LockerEngineerFilled - components: - - pos: 57.5,-1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9150 - type: LockerEngineerFilled - components: - - pos: 57.5,-0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9151 - type: LockerEngineerFilled - components: - - pos: 57.5,0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9152 - type: Table - components: - - pos: 55.5,0.5 - parent: 0 - type: Transform -- uid: 9153 - type: WallReinforced - components: - - pos: 41.5,24.5 - parent: 0 - type: Transform -- uid: 9154 - type: AirlockMaintEngiLocked - components: - - pos: 58.5,6.5 - parent: 0 - type: Transform -- uid: 9155 - type: GasPipeFourway - components: - - pos: 46.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9156 - type: AirlockExternalGlassLocked - components: - - pos: 66.5,4.5 - parent: 0 - type: Transform -- uid: 9157 - type: AirlockExternalGlassLocked - components: - - pos: 68.5,4.5 - parent: 0 - type: Transform -- uid: 9158 - type: AirlockGlass - components: - - pos: -14.5,-21.5 - parent: 0 - type: Transform -- uid: 9159 - type: AirlockEngineeringGlassLocked - components: - - pos: 54.5,6.5 - parent: 0 - type: Transform -- uid: 9160 - type: Grille - components: - - pos: 53.5,6.5 - parent: 0 - type: Transform -- uid: 9161 - type: Grille - components: - - pos: 56.5,6.5 - parent: 0 - type: Transform -- uid: 9162 - type: Grille - components: - - pos: 55.5,6.5 - parent: 0 - type: Transform -- uid: 9163 - type: Grille - components: - - pos: 52.5,8.5 - parent: 0 - type: Transform -- uid: 9164 - type: Grille - components: - - pos: 52.5,9.5 - parent: 0 - type: Transform -- uid: 9165 - type: Grille - components: - - pos: 61.5,8.5 - parent: 0 - type: Transform -- uid: 9166 - type: Grille - components: - - pos: 61.5,9.5 - parent: 0 - type: Transform -- uid: 9167 - type: Grille - components: - - pos: 60.5,9.5 - parent: 0 - type: Transform -- uid: 9168 - type: Grille - components: - - pos: 60.5,10.5 - parent: 0 - type: Transform -- uid: 9169 - type: WallReinforced - components: - - pos: 57.5,6.5 - parent: 0 - type: Transform -- uid: 9170 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 63.5,1.5 - parent: 0 - type: Transform -- uid: 9171 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-0.5 - parent: 0 - type: Transform -- uid: 9172 - type: Grille - components: - - pos: 63.5,2.5 - parent: 0 - type: Transform -- uid: 9173 - type: Grille - components: - - pos: 64.5,2.5 - parent: 0 - type: Transform -- uid: 9174 - type: Grille - components: - - pos: 65.5,2.5 - parent: 0 - type: Transform -- uid: 9175 - type: Grille - components: - - pos: 66.5,3.5 - parent: 0 - type: Transform -- uid: 9176 - type: Grille - components: - - pos: 66.5,5.5 - parent: 0 - type: Transform -- uid: 9177 - type: Grille - components: - - pos: 68.5,5.5 - parent: 0 - type: Transform -- uid: 9178 - type: Grille - components: - - pos: 68.5,3.5 - parent: 0 - type: Transform -- uid: 9179 - type: AirlockCommandLocked - components: - - pos: 59.5,2.5 - parent: 0 - type: Transform -- uid: 9180 - type: AirlockExternalEngineeringLocked - components: - - pos: 63.5,-2.5 - parent: 0 - type: Transform -- uid: 9181 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 61.5,-2.5 - parent: 0 - type: Transform -- uid: 9182 - type: TableGlass - components: - - pos: 62.5,-0.5 - parent: 0 - type: Transform -- uid: 9183 - type: TableGlass - components: - - pos: 62.5,0.5 - parent: 0 - type: Transform -- uid: 9184 - type: TableGlass - components: - - pos: 59.5,-2.5 - parent: 0 - type: Transform -- uid: 9185 - type: TableGlass - components: - - pos: 59.5,-1.5 - parent: 0 - type: Transform -- uid: 9186 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-0.5 - parent: 0 - type: Transform -- uid: 9187 - type: TableReinforced - components: - - pos: 49.5,-3.5 - parent: 0 - type: Transform -- uid: 9188 - type: TableReinforced - components: - - pos: 49.5,-2.5 - parent: 0 - type: Transform -- uid: 9189 - type: TableReinforced - components: - - pos: 53.5,-3.5 - parent: 0 - type: Transform -- uid: 9190 - type: TableReinforced - components: - - pos: 53.5,-2.5 - parent: 0 - type: Transform -- uid: 9191 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 59.5,5.5 - parent: 0 - type: Transform -- uid: 9192 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 60.5,5.5 - parent: 0 - type: Transform -- uid: 9193 - type: PottedPlant21 - components: - - pos: 60.5,3.5 - parent: 0 - type: Transform -- uid: 9194 - type: PottedPlant5 - components: - - pos: 53.5,-1.5 - parent: 0 - type: Transform -- uid: 9195 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-1.5 - parent: 0 - type: Transform -- uid: 9196 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 46.5,-5.5 - parent: 0 - type: Transform -- uid: 9197 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-7.5 - parent: 0 - type: Transform -- uid: 9198 - type: ComputerSolarControl - components: - - pos: 55.5,5.5 - parent: 0 - type: Transform -- uid: 9199 - type: ComputerPowerMonitoring - components: - - pos: 56.5,5.5 - parent: 0 - type: Transform -- uid: 9200 - type: Rack - components: - - pos: 57.5,2.5 - parent: 0 - type: Transform -- uid: 9201 - type: Rack - components: - - pos: 56.5,2.5 - parent: 0 - type: Transform -- uid: 9202 - type: DisposalUnit - components: - - pos: 55.5,2.5 - parent: 0 - type: Transform -- uid: 9203 - type: TableGlass - components: - - pos: 57.5,5.5 - parent: 0 - type: Transform -- uid: 9204 - type: filingCabinet - components: - - pos: 49.5,0.5 - parent: 0 - type: Transform -- uid: 9205 - type: PottedPlant4 - components: - - pos: 49.5,1.5 - parent: 0 - type: Transform -- uid: 9206 - type: Table - components: - - pos: 51.5,1.5 - parent: 0 - type: Transform -- uid: 9207 - type: Table - components: - - pos: 51.5,2.5 - parent: 0 - type: Transform -- uid: 9208 - type: Table - components: - - pos: 52.5,2.5 - parent: 0 - type: Transform -- uid: 9209 - type: Table - components: - - pos: 52.5,1.5 - parent: 0 - type: Transform -- uid: 9210 - type: Chair - components: - - pos: 51.5,3.5 - parent: 0 - type: Transform -- uid: 9211 - type: Chair - components: - - pos: 52.5,3.5 - parent: 0 - type: Transform -- uid: 9212 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 52.5,0.5 - parent: 0 - type: Transform -- uid: 9213 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 51.5,0.5 - parent: 0 - type: Transform -- uid: 9214 - type: Grille - components: - - pos: -15.5,26.5 - parent: 0 - type: Transform -- uid: 9215 - type: Grille - components: - - pos: -17.5,26.5 - parent: 0 - type: Transform -- uid: 9216 - type: Grille - components: - - pos: -18.5,26.5 - parent: 0 - type: Transform -- uid: 9217 - type: Grille - components: - - pos: -14.5,30.5 - parent: 0 - type: Transform -- uid: 9218 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9219 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9220 - type: GasPipeStraight - components: - - pos: -17.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9221 - type: GasPipeStraight - components: - - pos: -17.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9222 - type: GasPipeStraight - components: - - pos: -17.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9223 - type: GasVentScrubber - components: - - pos: -17.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9224 - type: GasPipeStraight - components: - - pos: -16.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9225 - type: GasVentPump - components: - - pos: -16.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9226 - type: Bed - components: - - pos: -15.5,29.5 - parent: 0 - type: Transform -- uid: 9227 - type: Bed - components: - - pos: -15.5,28.5 - parent: 0 - type: Transform -- uid: 9228 - type: BedsheetMedical - components: - - pos: -15.5,28.5 - parent: 0 - type: Transform -- uid: 9229 - type: BedsheetMedical - components: - - pos: -15.5,29.5 - parent: 0 - type: Transform -- uid: 9230 - type: Carpet - components: - - pos: -17.5,28.5 - parent: 0 - type: Transform -- uid: 9231 - type: Carpet - components: - - pos: -17.5,29.5 - parent: 0 - type: Transform -- uid: 9232 - type: Carpet - components: - - pos: -17.5,30.5 - parent: 0 - type: Transform -- uid: 9233 - type: Carpet - components: - - pos: -16.5,28.5 - parent: 0 - type: Transform -- uid: 9234 - type: Carpet - components: - - pos: -16.5,29.5 - parent: 0 - type: Transform -- uid: 9235 - type: Carpet - components: - - pos: -16.5,30.5 - parent: 0 - type: Transform -- uid: 9236 - type: TableWood - components: - - pos: -15.5,27.5 - parent: 0 - type: Transform -- uid: 9237 - type: CheapRollerBed - components: - - pos: -17.514263,27.5629 - parent: 0 - type: Transform -- uid: 9238 - type: TableWood - components: - - pos: -18.5,27.5 - parent: 0 - type: Transform -- uid: 9239 - type: ChairOfficeDark - components: - - pos: -18.5,28.5 - parent: 0 - type: Transform -- uid: 9240 - type: SprayBottleSpaceCleaner - components: - - pos: -15.217388,27.5004 - parent: 0 - type: Transform -- uid: 9241 - type: MedkitFilled - components: - - pos: -15.498638,27.59415 - parent: 0 - type: Transform -- uid: 9242 - type: Rack - components: - - pos: -18.5,29.5 - parent: 0 - type: Transform -- uid: 9243 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -18.5,31.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9244 - type: ClothingOuterStraightjacket - components: - - pos: -18.5,29.5 - parent: 0 - type: Transform -- uid: 9245 - type: LockerMedicineFilled - components: - - pos: -18.5,30.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9246 - type: HandheldHealthAnalyzer - components: - - pos: -18.389263,29.453526 - parent: 0 - type: Transform -- uid: 9247 - type: Syringe - components: - - pos: -18.467388,29.5629 - parent: 0 - type: Transform -- uid: 9248 - type: VendingMachineWallMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -16.5,32.5 - parent: 0 - type: Transform -- uid: 9249 - type: AirlockMaintSecLocked - components: - - pos: -14.5,33.5 - parent: 0 - type: Transform -- uid: 9250 - type: WallReinforced - components: - - pos: -14.5,34.5 - parent: 0 - type: Transform -- uid: 9251 - type: WallReinforced - components: - - pos: -13.5,34.5 - parent: 0 - type: Transform -- uid: 9252 - type: WallReinforced - components: - - pos: -13.5,35.5 - parent: 0 - type: Transform -- uid: 9253 - type: WallReinforced - components: - - pos: -13.5,36.5 - parent: 0 - type: Transform -- uid: 9254 - type: WallReinforced - components: - - pos: -13.5,37.5 - parent: 0 - type: Transform -- uid: 9255 - type: WallReinforced - components: - - pos: -13.5,38.5 - parent: 0 - type: Transform -- uid: 9256 - type: WallSolid - components: - - pos: -28.5,24.5 - parent: 0 - type: Transform -- uid: 9257 - type: WallSolid - components: - - pos: -27.5,24.5 - parent: 0 - type: Transform -- uid: 9258 - type: WallSolid - components: - - pos: -26.5,24.5 - parent: 0 - type: Transform -- uid: 9259 - type: WallSolid - components: - - pos: -22.5,26.5 - parent: 0 - type: Transform -- uid: 9260 - type: WallSolid - components: - - pos: -23.5,25.5 - parent: 0 - type: Transform -- uid: 9261 - type: WallSolid - components: - - pos: -22.5,25.5 - parent: 0 - type: Transform -- uid: 9262 - type: WallSolid - components: - - pos: -22.5,24.5 - parent: 0 - type: Transform -- uid: 9263 - type: AirlockMaintLocked - components: - - pos: -21.5,24.5 - parent: 0 - type: Transform -- uid: 9264 - type: WallSolid - components: - - pos: -20.5,24.5 - parent: 0 - type: Transform -- uid: 9265 - type: WallSolid - components: - - pos: -20.5,25.5 - parent: 0 - type: Transform -- uid: 9266 - type: WallSolid - components: - - pos: -20.5,26.5 - parent: 0 - type: Transform -- uid: 9267 - type: WallSolid - components: - - pos: -25.5,25.5 - parent: 0 - type: Transform -- uid: 9268 - type: WallSolid - components: - - pos: -26.5,25.5 - parent: 0 - type: Transform -- uid: 9269 - type: WallSolid - components: - - pos: -22.5,27.5 - parent: 0 - type: Transform -- uid: 9270 - type: WallSolid - components: - - pos: -22.5,28.5 - parent: 0 - type: Transform -- uid: 9271 - type: WallSolid - components: - - pos: -22.5,29.5 - parent: 0 - type: Transform -- uid: 9272 - type: WallSolid - components: - - pos: -23.5,29.5 - parent: 0 - type: Transform -- uid: 9273 - type: AirlockMaintJanitorLocked - components: - - name: Jani Closet - type: MetaData - - pos: -24.5,29.5 - parent: 0 - type: Transform -- uid: 9274 - type: WallSolid - components: - - pos: -25.5,29.5 - parent: 0 - type: Transform -- uid: 9275 - type: WallSolid - components: - - pos: -26.5,29.5 - parent: 0 - type: Transform -- uid: 9276 - type: WallSolid - components: - - pos: -27.5,29.5 - parent: 0 - type: Transform -- uid: 9277 - type: WallSolid - components: - - pos: -28.5,29.5 - parent: 0 - type: Transform -- uid: 9278 - type: WallSolid - components: - - pos: -29.5,29.5 - parent: 0 - type: Transform -- uid: 9279 - type: WallSolid - components: - - pos: -29.5,25.5 - parent: 0 - type: Transform -- uid: 9280 - type: WallSolid - components: - - pos: -29.5,26.5 - parent: 0 - type: Transform -- uid: 9281 - type: WallSolid - components: - - pos: -29.5,27.5 - parent: 0 - type: Transform -- uid: 9282 - type: WallSolid - components: - - pos: -29.5,28.5 - parent: 0 - type: Transform -- uid: 9283 - type: AirlockJanitorLocked - components: - - name: Jani Closet - type: MetaData - - pos: -24.5,25.5 - parent: 0 - type: Transform -- uid: 9284 - type: ClosetL3JanitorFilled - components: - - pos: -26.5,28.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9285 - type: JanitorialTrolley - components: - - pos: -28.5,28.5 - parent: 0 - type: Transform -- uid: 9286 - type: VendingMachineJaniDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -27.5,28.5 - parent: 0 - type: Transform -- uid: 9287 - type: Table - components: - - pos: -27.5,25.5 - parent: 0 - type: Transform -- uid: 9288 - type: Table - components: - - pos: -28.5,25.5 - parent: 0 - type: Transform -- uid: 9289 - type: Table - components: - - pos: -28.5,26.5 - parent: 0 - type: Transform -- uid: 9290 - type: VehicleKeyJanicart - components: - - pos: -28.519938,26.44267 - parent: 0 - type: Transform -- uid: 9291 - type: SpawnVehicleJanicart - components: - - pos: -23.5,28.5 - parent: 0 - type: Transform -- uid: 9292 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -18.5,24.5 - parent: 0 - type: Transform -- uid: 9293 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -18.5,22.5 - parent: 0 - type: Transform -- uid: 9294 - type: DisposalYJunction - components: - - rot: 3.141592653589793 rad - pos: -21.5,22.5 - parent: 0 - type: Transform -- uid: 9295 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -18.5,23.5 - parent: 0 - type: Transform -- uid: 9296 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,22.5 - parent: 0 - type: Transform -- uid: 9297 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,22.5 - parent: 0 - type: Transform -- uid: 9298 - type: DisposalPipe - components: - - pos: -21.5,23.5 - parent: 0 - type: Transform -- uid: 9299 - type: DisposalPipe - components: - - pos: -21.5,24.5 - parent: 0 - type: Transform -- uid: 9300 - type: DisposalPipe - components: - - pos: -21.5,25.5 - parent: 0 - type: Transform -- uid: 9301 - type: DisposalPipe - components: - - pos: -21.5,26.5 - parent: 0 - type: Transform -- uid: 9302 - type: DisposalPipe - components: - - pos: -21.5,27.5 - parent: 0 - type: Transform -- uid: 9303 - type: DisposalPipe - components: - - pos: -21.5,28.5 - parent: 0 - type: Transform -- uid: 9304 - type: DisposalPipe - components: - - pos: -21.5,29.5 - parent: 0 - type: Transform -- uid: 9305 - type: DisposalPipe - components: - - pos: -21.5,30.5 - parent: 0 - type: Transform -- uid: 9306 - type: DisposalUnit - components: - - pos: -23.5,26.5 - parent: 0 - type: Transform -- uid: 9307 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -23.5,26.5 - parent: 0 - type: Transform -- uid: 9308 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -24.5,26.5 - parent: 0 - type: Transform -- uid: 9309 - type: DisposalPipe - components: - - pos: -24.5,25.5 - parent: 0 - type: Transform -- uid: 9310 - type: DisposalJunction - components: - - pos: -24.5,24.5 - parent: 0 - type: Transform -- uid: 9311 - type: DisposalPipe - components: - - pos: -24.5,23.5 - parent: 0 - type: Transform -- uid: 9312 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,22.5 - parent: 0 - type: Transform -- uid: 9313 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,22.5 - parent: 0 - type: Transform -- uid: 9314 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -24.5,22.5 - parent: 0 - type: Transform -- uid: 9315 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9316 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9317 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9318 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9319 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9320 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9321 - type: GasVentPump - components: - - pos: -24.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9322 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9323 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9324 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9325 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9326 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9327 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9328 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9329 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9330 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9331 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9332 - type: GasPipeStraight - components: - - pos: -24.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9333 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -24.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9334 - type: GasPipeBend - components: - - pos: -21.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9335 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -24.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9336 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9337 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -26.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9338 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -27.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9339 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9340 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9341 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9342 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9343 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9344 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9345 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9346 - type: GasPipeBend - components: - - pos: -31.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9347 - type: SignElectricalMed - components: - - pos: -32.5,25.5 - parent: 0 - type: Transform -- uid: 9348 - type: Rack - components: - - pos: -34.5,25.5 - parent: 0 - type: Transform -- uid: 9349 - type: Stool - components: - - pos: -34.5,26.5 - parent: 0 - type: Transform -- uid: 9350 - type: ToolboxElectricalFilled - components: - - pos: -34.51216,25.521719 - parent: 0 - type: Transform -- uid: 9351 - type: WallReinforced - components: - - pos: -41.5,30.5 - parent: 0 - type: Transform -- uid: 9352 - type: WallReinforced - components: - - pos: -41.5,31.5 - parent: 0 - type: Transform -- uid: 9353 - type: WallReinforced - components: - - pos: -41.5,32.5 - parent: 0 - type: Transform -- uid: 9354 - type: WallReinforced - components: - - pos: -41.5,33.5 - parent: 0 - type: Transform -- uid: 9355 - type: WallReinforced - components: - - pos: -41.5,34.5 - parent: 0 - type: Transform -- uid: 9356 - type: WallReinforced - components: - - pos: -42.5,34.5 - parent: 0 - type: Transform -- uid: 9357 - type: WallReinforced - components: - - pos: -43.5,34.5 - parent: 0 - type: Transform -- uid: 9358 - type: WallReinforced - components: - - pos: -44.5,34.5 - parent: 0 - type: Transform -- uid: 9359 - type: WallReinforced - components: - - pos: -44.5,36.5 - parent: 0 - type: Transform -- uid: 9360 - type: WallReinforced - components: - - pos: -42.5,37.5 - parent: 0 - type: Transform -- uid: 9361 - type: WallReinforced - components: - - pos: -41.5,37.5 - parent: 0 - type: Transform -- uid: 9362 - type: WallSolid - components: - - pos: -41.5,36.5 - parent: 0 - type: Transform -- uid: 9363 - type: WallReinforced - components: - - pos: -44.5,37.5 - parent: 0 - type: Transform -- uid: 9364 - type: ReinforcedWindow - components: - - pos: -43.5,37.5 - parent: 0 - type: Transform -- uid: 9365 - type: WallReinforced - components: - - pos: -41.5,38.5 - parent: 0 - type: Transform -- uid: 9366 - type: WallReinforced - components: - - pos: -41.5,39.5 - parent: 0 - type: Transform -- uid: 9367 - type: WallReinforced - components: - - pos: -41.5,40.5 - parent: 0 - type: Transform -- uid: 9368 - type: WallReinforced - components: - - pos: -41.5,41.5 - parent: 0 - type: Transform -- uid: 9369 - type: WallReinforced - components: - - pos: -41.5,42.5 - parent: 0 - type: Transform -- uid: 9370 - type: WallReinforced - components: - - pos: -41.5,43.5 - parent: 0 - type: Transform -- uid: 9371 - type: ReinforcedWindow - components: - - pos: -39.5,42.5 - parent: 0 - type: Transform -- uid: 9372 - type: ReinforcedWindow - components: - - pos: -39.5,43.5 - parent: 0 - type: Transform -- uid: 9373 - type: ReinforcedWindow - components: - - pos: -38.5,43.5 - parent: 0 - type: Transform -- uid: 9374 - type: ReinforcedWindow - components: - - pos: -37.5,43.5 - parent: 0 - type: Transform -- uid: 9375 - type: ReinforcedWindow - components: - - pos: -36.5,43.5 - parent: 0 - type: Transform -- uid: 9376 - type: ReinforcedWindow - components: - - pos: -35.5,43.5 - parent: 0 - type: Transform -- uid: 9377 - type: ReinforcedWindow - components: - - pos: -34.5,45.5 - parent: 0 - type: Transform -- uid: 9378 - type: ReinforcedWindow - components: - - pos: -33.5,45.5 - parent: 0 - type: Transform -- uid: 9379 - type: ReinforcedWindow - components: - - pos: -33.5,46.5 - parent: 0 - type: Transform -- uid: 9380 - type: ReinforcedWindow - components: - - pos: -33.5,47.5 - parent: 0 - type: Transform -- uid: 9381 - type: ReinforcedWindow - components: - - pos: -31.5,47.5 - parent: 0 - type: Transform -- uid: 9382 - type: ReinforcedWindow - components: - - pos: -31.5,45.5 - parent: 0 - type: Transform -- uid: 9383 - type: ReinforcedWindow - components: - - pos: -30.5,45.5 - parent: 0 - type: Transform -- uid: 9384 - type: WallReinforced - components: - - pos: -34.5,44.5 - parent: 0 - type: Transform -- uid: 9385 - type: WallReinforced - components: - - pos: -34.5,43.5 - parent: 0 - type: Transform -- uid: 9386 - type: WallReinforced - components: - - pos: -34.5,42.5 - parent: 0 - type: Transform -- uid: 9387 - type: WallReinforced - components: - - pos: -34.5,41.5 - parent: 0 - type: Transform -- uid: 9388 - type: WallReinforced - components: - - pos: -30.5,44.5 - parent: 0 - type: Transform -- uid: 9389 - type: WallReinforced - components: - - pos: -30.5,43.5 - parent: 0 - type: Transform -- uid: 9390 - type: WallReinforced - components: - - pos: -30.5,42.5 - parent: 0 - type: Transform -- uid: 9391 - type: WallReinforced - components: - - pos: -30.5,41.5 - parent: 0 - type: Transform -- uid: 9392 - type: WallReinforced - components: - - pos: -31.5,41.5 - parent: 0 - type: Transform -- uid: 9393 - type: WallReinforced - components: - - pos: -33.5,41.5 - parent: 0 - type: Transform -- uid: 9394 - type: ConveyorBelt - components: - - pos: -40.5,41.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9421 - Forward: - - port: Left - uid: 9421 - Off: - - port: Middle - uid: 9421 - type: SignalReceiver -- uid: 9395 - type: TableWood - components: - - pos: 13.5,20.5 - parent: 0 - type: Transform -- uid: 9396 - type: WallSolid - components: - - pos: -34.5,38.5 - parent: 0 - type: Transform -- uid: 9397 - type: WallSolid - components: - - pos: -34.5,37.5 - parent: 0 - type: Transform -- uid: 9398 - type: WallSolid - components: - - pos: -35.5,37.5 - parent: 0 - type: Transform -- uid: 9399 - type: Pen - components: - - pos: 13.340509,20.649384 - parent: 0 - type: Transform -- uid: 9400 - type: ReinforcedWindow - components: - - pos: -39.5,41.5 - parent: 0 - type: Transform -- uid: 9401 - type: ConveyorBelt - components: - - pos: -40.5,42.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9421 - Forward: - - port: Left - uid: 9421 - Off: - - port: Middle - uid: 9421 - type: SignalReceiver -- uid: 9402 - type: ConveyorBelt - components: - - pos: -40.5,43.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9421 - Forward: - - port: Left - uid: 9421 - Off: - - port: Middle - uid: 9421 - type: SignalReceiver -- uid: 9403 - type: WallSolid - components: - - pos: -40.5,37.5 - parent: 0 - type: Transform -- uid: 9404 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9405 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9406 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 62.5,0.5 - parent: 0 - type: Transform -- uid: 9407 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9408 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9409 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9410 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9411 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 50.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9412 - type: ExtinguisherCabinetFilled - components: - - pos: -22.5,26.5 - parent: 0 - type: Transform -- uid: 9413 - type: ClothingHandsGlovesColorOrange - components: - - pos: -28.50576,26.161058 - parent: 0 - type: Transform -- uid: 9414 - type: BoxLightMixed - components: - - pos: -27.896385,25.536058 - parent: 0 - type: Transform -- uid: 9415 - type: SinkWide - components: - - rot: 1.5707963267948966 rad - pos: -28.5,27.5 - parent: 0 - type: Transform -- uid: 9416 - type: WallReinforced - components: - - pos: -17.5,41.5 - parent: 0 - type: Transform -- uid: 9417 - type: WallReinforced - components: - - pos: -17.5,42.5 - parent: 0 - type: Transform -- uid: 9418 - type: ConveyorBelt - components: - - pos: -40.5,40.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9421 - Forward: - - port: Left - uid: 9421 - Off: - - port: Middle - uid: 9421 - type: SignalReceiver -- uid: 9419 - type: ConveyorBelt - components: - - pos: -40.5,39.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9421 - Forward: - - port: Left - uid: 9421 - Off: - - port: Middle - uid: 9421 - type: SignalReceiver -- uid: 9420 - type: Recycler - components: - - pos: -40.5,38.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9421 - Forward: - - port: Left - uid: 9421 - Off: - - port: Middle - uid: 9421 - type: SignalReceiver -- uid: 9421 - type: TwoWayLever - components: - - pos: -38.5,41.5 - parent: 0 - type: Transform - - outputs: - Left: - - port: Forward - uid: 9402 - - port: Forward - uid: 9401 - - port: Forward - uid: 9394 - - port: Forward - uid: 9418 - - port: Forward - uid: 9419 - - port: Forward - uid: 9420 - - port: Forward - uid: 9497 - Right: - - port: Reverse - uid: 9402 - - port: Reverse - uid: 9401 - - port: Reverse - uid: 9394 - - port: Reverse - uid: 9418 - - port: Reverse - uid: 9419 - - port: Reverse - uid: 9420 - - port: Reverse - uid: 9497 - Middle: - - port: Off - uid: 9402 - - port: Off - uid: 9401 - - port: Off - uid: 9394 - - port: Off - uid: 9418 - - port: Off - uid: 9419 - - port: Off - uid: 9420 - - port: Off - uid: 9497 - type: SignalTransmitter -- uid: 9422 - type: Grille - components: - - pos: -39.5,41.5 - parent: 0 - type: Transform -- uid: 9423 - type: Grille - components: - - pos: -39.5,42.5 - parent: 0 - type: Transform -- uid: 9424 - type: Grille - components: - - pos: -39.5,43.5 - parent: 0 - type: Transform -- uid: 9425 - type: Grille - components: - - pos: -38.5,43.5 - parent: 0 - type: Transform -- uid: 9426 - type: Grille - components: - - pos: -37.5,43.5 - parent: 0 - type: Transform -- uid: 9427 - type: Grille - components: - - pos: -36.5,43.5 - parent: 0 - type: Transform -- uid: 9428 - type: Grille - components: - - pos: -35.5,43.5 - parent: 0 - type: Transform -- uid: 9429 - type: Grille - components: - - pos: -43.5,37.5 - parent: 0 - type: Transform -- uid: 9430 - type: Grille - components: - - pos: -33.5,45.5 - parent: 0 - type: Transform -- uid: 9431 - type: Grille - components: - - pos: -34.5,45.5 - parent: 0 - type: Transform -- uid: 9432 - type: Grille - components: - - pos: -33.5,46.5 - parent: 0 - type: Transform -- uid: 9433 - type: Grille - components: - - pos: -33.5,47.5 - parent: 0 - type: Transform -- uid: 9434 - type: Grille - components: - - pos: -31.5,47.5 - parent: 0 - type: Transform -- uid: 9435 - type: Grille - components: - - pos: -31.5,45.5 - parent: 0 - type: Transform -- uid: 9436 - type: Grille - components: - - pos: -30.5,45.5 - parent: 0 - type: Transform -- uid: 9437 - type: BlastDoor - components: - - pos: -40.5,41.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9439 - type: SignalReceiver -- uid: 9438 - type: BlastDoor - components: - - pos: -40.5,43.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9440 - type: SignalReceiver -- uid: 9439 - type: SignalButton - components: - - pos: -39.5,41.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9437 - type: SignalTransmitter -- uid: 9440 - type: SignalButton - components: - - pos: -39.5,42.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9438 - type: SignalTransmitter -- uid: 9441 - type: SignSpace - components: - - pos: -39.5,43.5 - parent: 0 - type: Transform -- uid: 9442 - type: PlasticFlapsAirtightClear - components: - - pos: -39.5,37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9443 - type: AirlockMaintGlassLocked - components: - - name: Disposals - type: MetaData - - pos: -38.5,37.5 - parent: 0 - type: Transform -- uid: 9444 - type: AirlockMaintGlassLocked - components: - - name: Disposals - type: MetaData - - pos: -34.5,40.5 - parent: 0 - type: Transform -- uid: 9445 - type: WallSolid - components: - - pos: -37.5,37.5 - parent: 0 - type: Transform -- uid: 9446 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -40.5,39.5 - parent: 0 - type: Transform -- uid: 9447 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -39.5,39.5 - parent: 0 - type: Transform -- uid: 9448 - type: DisposalPipe - components: - - pos: -38.5,38.5 - parent: 0 - type: Transform -- uid: 9449 - type: DisposalPipe - components: - - pos: -38.5,37.5 - parent: 0 - type: Transform -- uid: 9450 - type: DisposalPipe - components: - - pos: -38.5,36.5 - parent: 0 - type: Transform -- uid: 9451 - type: DisposalPipe - components: - - pos: -38.5,35.5 - parent: 0 - type: Transform -- uid: 9452 - type: DisposalPipe - components: - - pos: -38.5,34.5 - parent: 0 - type: Transform -- uid: 9453 - type: DisposalPipe - components: - - pos: -38.5,33.5 - parent: 0 - type: Transform -- uid: 9454 - type: DisposalPipe - components: - - pos: -38.5,32.5 - parent: 0 - type: Transform -- uid: 9455 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -38.5,31.5 - parent: 0 - type: Transform -- uid: 9456 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,31.5 - parent: 0 - type: Transform -- uid: 9457 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,31.5 - parent: 0 - type: Transform -- uid: 9458 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,31.5 - parent: 0 - type: Transform -- uid: 9459 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,31.5 - parent: 0 - type: Transform -- uid: 9460 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,31.5 - parent: 0 - type: Transform -- uid: 9461 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,31.5 - parent: 0 - type: Transform -- uid: 9462 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,31.5 - parent: 0 - type: Transform -- uid: 9463 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,31.5 - parent: 0 - type: Transform -- uid: 9464 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,31.5 - parent: 0 - type: Transform -- uid: 9465 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -31.5,31.5 - parent: 0 - type: Transform -- uid: 9466 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -32.5,31.5 - parent: 0 - type: Transform -- uid: 9467 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -33.5,31.5 - parent: 0 - type: Transform -- uid: 9468 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,31.5 - parent: 0 - type: Transform -- uid: 9469 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -35.5,31.5 - parent: 0 - type: Transform -- uid: 9470 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -36.5,31.5 - parent: 0 - type: Transform -- uid: 9471 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -37.5,31.5 - parent: 0 - type: Transform -- uid: 9472 - type: DisposalBend - components: - - pos: -38.5,39.5 - parent: 0 - type: Transform -- uid: 9473 - type: DisposalBend - components: - - pos: -21.5,31.5 - parent: 0 - type: Transform -- uid: 9474 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -39.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9475 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9476 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9477 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9478 - type: CableHV - components: - - pos: -33.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9479 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9480 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9481 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9482 - type: GasPipeStraight - components: - - pos: -39.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9483 - type: GasPipeStraight - components: - - pos: -39.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9484 - type: GasPipeStraight - components: - - pos: -39.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9485 - type: GasPipeStraight - components: - - pos: -39.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9486 - type: GasPipeStraight - components: - - pos: -39.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9487 - type: GasPipeStraight - components: - - pos: -39.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9488 - type: GasPipeStraight - components: - - pos: -39.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9489 - type: GasPipeStraight - components: - - pos: -39.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9490 - type: GasPipeStraight - components: - - pos: -39.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9491 - type: GasVentPump - components: - - pos: -39.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9492 - type: AirlockExternalLocked - components: - - pos: -44.5,35.5 - parent: 0 - type: Transform -- uid: 9493 - type: AirlockExternalGlassLocked - components: - - pos: -41.5,35.5 - parent: 0 - type: Transform -- uid: 9494 - type: AirlockExternalGlassLocked - components: - - pos: -32.5,45.5 - parent: 0 - type: Transform -- uid: 9495 - type: AirlockExternalGlassLocked - components: - - pos: -32.5,47.5 - parent: 0 - type: Transform -- uid: 9496 - type: WallReinforced - components: - - pos: -31.5,46.5 - parent: 0 - type: Transform -- uid: 9497 - type: ConveyorBelt - components: - - pos: -40.5,44.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 9421 - Forward: - - port: Left - uid: 9421 - Off: - - port: Middle - uid: 9421 - type: SignalReceiver -- uid: 9498 - type: AirlockEngineeringLocked - components: - - pos: -32.5,41.5 - parent: 0 - type: Transform -- uid: 9499 - type: ChairOfficeDark - components: - - pos: -27.5,26.5 - parent: 0 - type: Transform -- uid: 9500 - type: FloorDrain - components: - - pos: -26.5,27.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 9501 - type: CrateServiceJanitorialSupplies - components: - - pos: -25.5,28.5 - parent: 0 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9502 - type: MopBucket - components: - - pos: -23.51719,27.59582 - parent: 0 - type: Transform -- uid: 9503 - type: MopItem - components: - - pos: -23.501566,27.56457 - parent: 0 - type: Transform -- uid: 9504 - type: Bucket - components: - - pos: -28.490135,27.379808 - parent: 0 - type: Transform -- uid: 9505 - type: SprayBottleSpaceCleaner - components: - - pos: -28.637318,25.65832 - parent: 0 - type: Transform -- uid: 9506 - type: SprayBottleSpaceCleaner - components: - - pos: -28.496693,25.56457 - parent: 0 - type: Transform -- uid: 9507 - type: SprayBottleSpaceCleaner - components: - - pos: -28.340443,25.43957 - parent: 0 - type: Transform -- uid: 9508 - type: TrashBag - components: - - pos: -27.434193,25.580194 - parent: 0 - type: Transform -- uid: 9509 - type: RandomPosterAny - components: - - pos: -29.5,26.5 - parent: 0 - type: Transform -- uid: 9510 - type: RandomPosterAny - components: - - pos: -22.5,28.5 - parent: 0 - type: Transform -- uid: 9511 - type: PosterLegitCleanliness - components: - - pos: -25.5,25.5 - parent: 0 - type: Transform -- uid: 9512 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -25.5,24.5 - parent: 0 - type: Transform -- uid: 9513 - type: DisposalUnit - components: - - pos: -25.5,24.5 - parent: 0 - type: Transform -- uid: 9514 - type: PottedPlant22 - components: - - pos: -23.5,24.5 - parent: 0 - type: Transform -- uid: 9515 - type: ClosetFireFilled - components: - - pos: -28.5,23.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9516 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -27.5,23.5 - parent: 0 - type: Transform -- uid: 9517 - type: APCBasic - components: - - pos: -26.5,29.5 - parent: 0 - type: Transform -- uid: 9518 - type: SMESBasic - components: - - name: North West Solars SMES - type: MetaData - - pos: -33.5,44.5 - parent: 0 - type: Transform -- uid: 9519 - type: SubstationBasic - components: - - name: North West Solars Substation - type: MetaData - - pos: -33.5,42.5 - parent: 0 - type: Transform -- uid: 9520 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: -32.5,44.5 - parent: 0 - type: Transform -- uid: 9521 - type: CableHV - components: - - pos: -32.5,44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9522 - type: CableHV - components: - - pos: -32.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9523 - type: CableHV - components: - - pos: -32.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9524 - type: CableHV - components: - - pos: -32.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9525 - type: CableHV - components: - - pos: -32.5,48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9526 - type: CableHV - components: - - pos: -33.5,44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9527 - type: CableHV - components: - - pos: -33.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9528 - type: CableHV - components: - - pos: -33.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9529 - type: CableHV - components: - - pos: -32.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9530 - type: CableHV - components: - - pos: -32.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9531 - type: CableHV - components: - - pos: -32.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9532 - type: CableHV - components: - - pos: -32.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9533 - type: CableHV - components: - - pos: -32.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9534 - type: APCBasic - components: - - pos: -31.5,41.5 - parent: 0 - type: Transform -- uid: 9535 - type: CableMV - components: - - pos: -33.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9536 - type: CableMV - components: - - pos: -32.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9537 - type: CableMV - components: - - pos: -31.5,42.5 - parent: 0 - type: Transform -- uid: 9538 - type: CableMV - components: - - pos: -31.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9539 - type: CableApcExtension - components: - - pos: -31.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9540 - type: CableApcExtension - components: - - pos: -31.5,42.5 - parent: 0 - type: Transform -- uid: 9541 - type: CableApcExtension - components: - - pos: -31.5,43.5 - parent: 0 - type: Transform -- uid: 9542 - type: CableApcExtension - components: - - pos: -32.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9543 - type: CableApcExtension - components: - - pos: -32.5,44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9544 - type: CableApcExtension - components: - - pos: -32.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9545 - type: CableApcExtension - components: - - pos: -32.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9546 - type: CableApcExtension - components: - - pos: -32.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9547 - type: CableApcExtension - components: - - pos: -31.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9548 - type: CableApcExtension - components: - - pos: -32.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9549 - type: CableApcExtension - components: - - pos: -33.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9550 - type: CableApcExtension - components: - - pos: -34.5,40.5 - parent: 0 - type: Transform -- uid: 9551 - type: CableApcExtension - components: - - pos: -35.5,40.5 - parent: 0 - type: Transform -- uid: 9552 - type: CableApcExtension - components: - - pos: -36.5,40.5 - parent: 0 - type: Transform -- uid: 9553 - type: CableApcExtension - components: - - pos: -37.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9554 - type: CableApcExtension - components: - - pos: -38.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9555 - type: CableApcExtension - components: - - pos: -38.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9556 - type: CableApcExtension - components: - - pos: -38.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9557 - type: CableApcExtension - components: - - pos: -39.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9558 - type: CableApcExtension - components: - - pos: -40.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9559 - type: CableApcExtension - components: - - pos: -40.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9560 - type: CableApcExtension - components: - - pos: -40.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9561 - type: CableApcExtension - components: - - pos: -37.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9562 - type: CableApcExtension - components: - - pos: -37.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9563 - type: CableApcExtension - components: - - pos: -35.5,39.5 - parent: 0 - type: Transform -- uid: 9564 - type: CableApcExtension - components: - - pos: -35.5,38.5 - parent: 0 - type: Transform -- uid: 9565 - type: CableApcExtension - components: - - pos: -26.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9566 - type: CableApcExtension - components: - - pos: -26.5,28.5 - parent: 0 - type: Transform -- uid: 9567 - type: CableApcExtension - components: - - pos: -26.5,27.5 - parent: 0 - type: Transform -- uid: 9568 - type: CableApcExtension - components: - - pos: -26.5,26.5 - parent: 0 - type: Transform -- uid: 9569 - type: CableApcExtension - components: - - pos: -27.5,27.5 - parent: 0 - type: Transform -- uid: 9570 - type: CableApcExtension - components: - - pos: -28.5,27.5 - parent: 0 - type: Transform -- uid: 9571 - type: CableApcExtension - components: - - pos: -25.5,27.5 - parent: 0 - type: Transform -- uid: 9572 - type: CableApcExtension - components: - - pos: -24.5,27.5 - parent: 0 - type: Transform -- uid: 9573 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -20.5,25.5 - parent: 0 - type: Transform -- uid: 9574 - type: CableApcExtension - components: - - pos: -23.5,26.5 - parent: 0 - type: Transform -- uid: 9575 - type: CableApcExtension - components: - - pos: -24.5,28.5 - parent: 0 - type: Transform -- uid: 9576 - type: CableApcExtension - components: - - pos: -24.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9577 - type: CableApcExtension - components: - - pos: -24.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9578 - type: CableApcExtension - components: - - pos: -24.5,26.5 - parent: 0 - type: Transform -- uid: 9579 - type: CableApcExtension - components: - - pos: -24.5,25.5 - parent: 0 - type: Transform -- uid: 9580 - type: CableApcExtension - components: - - pos: -24.5,24.5 - parent: 0 - type: Transform -- uid: 9581 - type: CableApcExtension - components: - - pos: -23.5,24.5 - parent: 0 - type: Transform -- uid: 9582 - type: CableApcExtension - components: - - pos: -20.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9583 - type: CableApcExtension - components: - - pos: -19.5,25.5 - parent: 0 - type: Transform -- uid: 9584 - type: CableApcExtension - components: - - pos: -19.5,24.5 - parent: 0 - type: Transform -- uid: 9585 - type: CableApcExtension - components: - - pos: -19.5,23.5 - parent: 0 - type: Transform -- uid: 9586 - type: CableApcExtension - components: - - pos: -19.5,22.5 - parent: 0 - type: Transform -- uid: 9587 - type: CableApcExtension - components: - - pos: -20.5,22.5 - parent: 0 - type: Transform -- uid: 9588 - type: CableApcExtension - components: - - pos: -21.5,22.5 - parent: 0 - type: Transform -- uid: 9589 - type: CableApcExtension - components: - - pos: -22.5,22.5 - parent: 0 - type: Transform -- uid: 9590 - type: CableApcExtension - components: - - pos: -23.5,22.5 - parent: 0 - type: Transform -- uid: 9591 - type: CableApcExtension - components: - - pos: -24.5,22.5 - parent: 0 - type: Transform -- uid: 9592 - type: CableApcExtension - components: - - pos: -25.5,22.5 - parent: 0 - type: Transform -- uid: 9593 - type: CableApcExtension - components: - - pos: -26.5,22.5 - parent: 0 - type: Transform -- uid: 9594 - type: CableApcExtension - components: - - pos: -27.5,22.5 - parent: 0 - type: Transform -- uid: 9595 - type: CableApcExtension - components: - - pos: -18.5,24.5 - parent: 0 - type: Transform -- uid: 9596 - type: CableApcExtension - components: - - pos: -17.5,24.5 - parent: 0 - type: Transform -- uid: 9597 - type: CableApcExtension - components: - - pos: -16.5,24.5 - parent: 0 - type: Transform -- uid: 9598 - type: CableApcExtension - components: - - pos: -15.5,24.5 - parent: 0 - type: Transform -- uid: 9599 - type: CableApcExtension - components: - - pos: -14.5,24.5 - parent: 0 - type: Transform -- uid: 9600 - type: CableApcExtension - components: - - pos: -13.5,24.5 - parent: 0 - type: Transform -- uid: 9601 - type: CableApcExtension - components: - - pos: -12.5,24.5 - parent: 0 - type: Transform -- uid: 9602 - type: CableApcExtension - components: - - pos: -11.5,24.5 - parent: 0 - type: Transform -- uid: 9603 - type: CableApcExtension - components: - - pos: -10.5,24.5 - parent: 0 - type: Transform -- uid: 9604 - type: CableApcExtension - components: - - pos: -9.5,24.5 - parent: 0 - type: Transform -- uid: 9605 - type: CableApcExtension - components: - - pos: -8.5,24.5 - parent: 0 - type: Transform -- uid: 9606 - type: CableApcExtension - components: - - pos: -7.5,24.5 - parent: 0 - type: Transform -- uid: 9607 - type: CableApcExtension - components: - - pos: -6.5,24.5 - parent: 0 - type: Transform -- uid: 9608 - type: CableApcExtension - components: - - pos: -5.5,24.5 - parent: 0 - type: Transform -- uid: 9609 - type: CableApcExtension - components: - - pos: -4.5,24.5 - parent: 0 - type: Transform -- uid: 9610 - type: CableApcExtension - components: - - pos: -3.5,24.5 - parent: 0 - type: Transform -- uid: 9611 - type: CableApcExtension - components: - - pos: -2.5,24.5 - parent: 0 - type: Transform -- uid: 9612 - type: CableApcExtension - components: - - pos: -1.5,24.5 - parent: 0 - type: Transform -- uid: 9613 - type: CableApcExtension - components: - - pos: -0.5,24.5 - parent: 0 - type: Transform -- uid: 9614 - type: CableApcExtension - components: - - pos: 0.5,24.5 - parent: 0 - type: Transform -- uid: 9615 - type: CableApcExtension - components: - - pos: 1.5,24.5 - parent: 0 - type: Transform -- uid: 9616 - type: CableApcExtension - components: - - pos: -2.5,23.5 - parent: 0 - type: Transform -- uid: 9617 - type: CableApcExtension - components: - - pos: -2.5,22.5 - parent: 0 - type: Transform -- uid: 9618 - type: CableApcExtension - components: - - pos: -2.5,21.5 - parent: 0 - type: Transform -- uid: 9619 - type: CableApcExtension - components: - - pos: -2.5,20.5 - parent: 0 - type: Transform -- uid: 9620 - type: WallReinforced - components: - - pos: -17.5,40.5 - parent: 0 - type: Transform -- uid: 9621 - type: WallReinforced - components: - - pos: -17.5,39.5 - parent: 0 - type: Transform -- uid: 9622 - type: WallReinforced - components: - - pos: -17.5,38.5 - parent: 0 - type: Transform -- uid: 9623 - type: WallReinforced - components: - - pos: -17.5,37.5 - parent: 0 - type: Transform -- uid: 9624 - type: WallReinforced - components: - - pos: -16.5,37.5 - parent: 0 - type: Transform -- uid: 9625 - type: WallReinforced - components: - - pos: -14.5,37.5 - parent: 0 - type: Transform -- uid: 9626 - type: AirlockEngineeringLocked - components: - - pos: -15.5,37.5 - parent: 0 - type: Transform -- uid: 9627 - type: SubstationBasic - components: - - name: West Sec Substation - type: MetaData - - pos: -14.5,40.5 - parent: 0 - type: Transform -- uid: 9628 - type: ComputerPowerMonitoring - components: - - rot: -1.5707963267948966 rad - pos: -14.5,39.5 - parent: 0 - type: Transform -- uid: 9629 - type: ComputerSolarControl - components: - - rot: 1.5707963267948966 rad - pos: -33.5,43.5 - parent: 0 - type: Transform -- uid: 9630 - type: SignElectricalMed - components: - - pos: -16.5,37.5 - parent: 0 - type: Transform -- uid: 9631 - type: CableMV - components: - - pos: -13.5,33.5 - parent: 0 - type: Transform -- uid: 9632 - type: CableMV - components: - - pos: -14.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9633 - type: CableMV - components: - - pos: -15.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9634 - type: CableMV - components: - - pos: -15.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9635 - type: CableMV - components: - - pos: -15.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9636 - type: CableMV - components: - - pos: -15.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9637 - type: CableMV - components: - - pos: -15.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9638 - type: CableMV - components: - - pos: -15.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9639 - type: CableMV - components: - - pos: -15.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9640 - type: CableMV - components: - - pos: -15.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9641 - type: CableMV - components: - - pos: -14.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9642 - type: CableHV - components: - - pos: -32.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9643 - type: CableHV - components: - - pos: -32.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9644 - type: CableHV - components: - - pos: -33.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9645 - type: CableHV - components: - - pos: -34.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9646 - type: CableHV - components: - - pos: -35.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9647 - type: CableHV - components: - - pos: -36.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9648 - type: CableHV - components: - - pos: -37.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9649 - type: CableHV - components: - - pos: -38.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9650 - type: CableHV - components: - - pos: -39.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9651 - type: CableHV - components: - - pos: -39.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9652 - type: CableHV - components: - - pos: -39.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9653 - type: CableHV - components: - - pos: -39.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9654 - type: CableHV - components: - - pos: -39.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9655 - type: CableHV - components: - - pos: -39.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9656 - type: CableHV - components: - - pos: -39.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9657 - type: CableHV - components: - - pos: -38.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9658 - type: CableHV - components: - - pos: -37.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9659 - type: CableHV - components: - - pos: -36.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9660 - type: CableHV - components: - - pos: -35.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9661 - type: CableHV - components: - - pos: -34.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9662 - type: CableHV - components: - - pos: -33.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9663 - type: CableHV - components: - - pos: -32.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9664 - type: CableHV - components: - - pos: -31.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9665 - type: CableHV - components: - - pos: -31.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9666 - type: CableHV - components: - - pos: -31.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9667 - type: CableHV - components: - - pos: -31.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9668 - type: CableHV - components: - - pos: -30.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9669 - type: CableHV - components: - - pos: -29.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9670 - type: CableHV - components: - - pos: -28.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9671 - type: CableHV - components: - - pos: -27.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9672 - type: CableHV - components: - - pos: -26.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9673 - type: CableHV - components: - - pos: -25.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9674 - type: CableHV - components: - - pos: -24.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9675 - type: CableHV - components: - - pos: -23.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9676 - type: CableHV - components: - - pos: -22.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9677 - type: CableHV - components: - - pos: -21.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9678 - type: CableHV - components: - - pos: -21.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9679 - type: CableHV - components: - - pos: -21.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9680 - type: CableHV - components: - - pos: -21.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9681 - type: CableHV - components: - - pos: -20.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9682 - type: CableHV - components: - - pos: -19.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9683 - type: CableHV - components: - - pos: -18.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9684 - type: CableHV - components: - - pos: -17.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9685 - type: CableHV - components: - - pos: -16.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9686 - type: CableHV - components: - - pos: -15.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9687 - type: CableHV - components: - - pos: -15.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9688 - type: CableHV - components: - - pos: -15.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9689 - type: CableHV - components: - - pos: -15.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9690 - type: CableHV - components: - - pos: -15.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9691 - type: CableHV - components: - - pos: -15.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9692 - type: CableHV - components: - - pos: -15.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9693 - type: CableHV - components: - - pos: -15.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9694 - type: CableHV - components: - - pos: -14.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9695 - type: CableHV - components: - - pos: -30.5,22.5 - parent: 0 - type: Transform -- uid: 9696 - type: CableHV - components: - - pos: -29.5,22.5 - parent: 0 - type: Transform -- uid: 9697 - type: CableHV - components: - - pos: -28.5,22.5 - parent: 0 - type: Transform -- uid: 9698 - type: CableHV - components: - - pos: -27.5,22.5 - parent: 0 - type: Transform -- uid: 9699 - type: CableHV - components: - - pos: -26.5,22.5 - parent: 0 - type: Transform -- uid: 9700 - type: CableHV - components: - - pos: -25.5,22.5 - parent: 0 - type: Transform -- uid: 9701 - type: CableHV - components: - - pos: -24.5,22.5 - parent: 0 - type: Transform -- uid: 9702 - type: CableHV - components: - - pos: -23.5,22.5 - parent: 0 - type: Transform -- uid: 9703 - type: CableHV - components: - - pos: -22.5,22.5 - parent: 0 - type: Transform -- uid: 9704 - type: CableHV - components: - - pos: -21.5,22.5 - parent: 0 - type: Transform -- uid: 9705 - type: CableHV - components: - - pos: -21.5,23.5 - parent: 0 - type: Transform -- uid: 9706 - type: CableHV - components: - - pos: -21.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9707 - type: CableHV - components: - - pos: -21.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9708 - type: CableHV - components: - - pos: -21.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9709 - type: CableHV - components: - - pos: -21.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9710 - type: CableHV - components: - - pos: -21.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9711 - type: CableHV - components: - - pos: -21.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9712 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9713 - type: GasPipeTJunction - components: - - pos: 51.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9714 - type: GasPipeStraight - components: - - pos: 51.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9715 - type: GasPipeStraight - components: - - pos: 51.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9716 - type: GasPipeStraight - components: - - pos: 51.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9717 - type: GasPipeStraight - components: - - pos: 51.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9718 - type: AirlockMaintGlassLocked - components: - - pos: 61.5,4.5 - parent: 0 - type: Transform -- uid: 9719 - type: GasPipeStraight - components: - - pos: 51.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9720 - type: GasPipeStraight - components: - - pos: 51.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9721 - type: GasPipeStraight - components: - - pos: 51.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9722 - type: GasPipeStraight - components: - - pos: 51.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9723 - type: GasPipeStraight - components: - - pos: 51.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9724 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 63.5,0.5 - parent: 0 - type: Transform -- uid: 9725 - type: GasPipeStraight - components: - - pos: 47.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9726 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 47.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9727 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 51.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9728 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9729 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9730 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9731 - type: GasPipeStraight - components: - - pos: 46.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9732 - type: GasPipeStraight - components: - - pos: 46.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9733 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 46.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9734 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9735 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9736 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9737 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9738 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9739 - type: SignAtmosMinsky - components: - - pos: 52.5,-4.5 - parent: 0 - type: Transform -- uid: 9740 - type: AirlockGlass - components: - - pos: -3.5,-22.5 - parent: 0 - type: Transform -- uid: 9741 - type: AirlockGlass - components: - - pos: -2.5,-22.5 - parent: 0 - type: Transform -- uid: 9742 - type: AirlockGlass - components: - - pos: -1.5,-22.5 - parent: 0 - type: Transform -- uid: 9743 - type: SignDirectionalEvac - components: - - pos: -0.5,-22.5 - parent: 0 - type: Transform -- uid: 9744 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 0 - type: Transform -- uid: 9745 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 62.5,1.5 - parent: 0 - type: Transform -- uid: 9746 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-0.5 - parent: 0 - type: Transform -- uid: 9747 - type: Window - components: - - pos: -0.5,-26.5 - parent: 0 - type: Transform -- uid: 9748 - type: WallSolid - components: - - pos: 6.5,-22.5 - parent: 0 - type: Transform -- uid: 9749 - type: FirelockGlass - components: - - pos: 3.5,-22.5 - parent: 0 - type: Transform -- uid: 9750 - type: FirelockGlass - components: - - pos: 4.5,-22.5 - parent: 0 - type: Transform -- uid: 9751 - type: ReinforcedWindow - components: - - pos: 9.5,-23.5 - parent: 0 - type: Transform -- uid: 9752 - type: ReinforcedWindow - components: - - pos: 9.5,-25.5 - parent: 0 - type: Transform -- uid: 9753 - type: ReinforcedWindow - components: - - pos: 9.5,-26.5 - parent: 0 - type: Transform -- uid: 9754 - type: WallReinforced - components: - - pos: -0.5,-27.5 - parent: 0 - type: Transform -- uid: 9755 - type: WallReinforced - components: - - pos: 0.5,-27.5 - parent: 0 - type: Transform -- uid: 9756 - type: WallReinforced - components: - - pos: -62.5,-23.5 - parent: 0 - type: Transform -- uid: 9757 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-8.5 - parent: 0 - type: Transform -- uid: 9758 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-7.5 - parent: 0 - type: Transform -- uid: 9759 - type: WallReinforced - components: - - pos: 4.5,-27.5 - parent: 0 - type: Transform -- uid: 9760 - type: WallReinforced - components: - - pos: 5.5,-27.5 - parent: 0 - type: Transform -- uid: 9761 - type: ReinforcedWindow - components: - - pos: 9.5,-28.5 - parent: 0 - type: Transform -- uid: 9762 - type: ReinforcedWindow - components: - - pos: 5.5,-28.5 - parent: 0 - type: Transform -- uid: 9763 - type: WallReinforced - components: - - pos: 8.5,-27.5 - parent: 0 - type: Transform -- uid: 9764 - type: WallReinforced - components: - - pos: 9.5,-27.5 - parent: 0 - type: Transform -- uid: 9765 - type: TintedWindow - components: - - pos: 5.5,-30.5 - parent: 0 - type: Transform -- uid: 9766 - type: TintedWindow - components: - - pos: 9.5,-30.5 - parent: 0 - type: Transform -- uid: 9767 - type: TintedWindow - components: - - pos: 9.5,-32.5 - parent: 0 - type: Transform -- uid: 9768 - type: TintedWindow - components: - - pos: 5.5,-32.5 - parent: 0 - type: Transform -- uid: 9769 - type: WallSolid - components: - - pos: 5.5,-31.5 - parent: 0 - type: Transform -- uid: 9770 - type: WallSolid - components: - - pos: 5.5,-29.5 - parent: 0 - type: Transform -- uid: 9771 - type: WallSolid - components: - - pos: 9.5,-29.5 - parent: 0 - type: Transform -- uid: 9772 - type: WallSolid - components: - - pos: 9.5,-31.5 - parent: 0 - type: Transform -- uid: 9773 - type: WallSolid - components: - - pos: 9.5,-33.5 - parent: 0 - type: Transform -- uid: 9774 - type: WallSolid - components: - - pos: 8.5,-33.5 - parent: 0 - type: Transform -- uid: 9775 - type: WallSolid - components: - - pos: 5.5,-33.5 - parent: 0 - type: Transform -- uid: 9776 - type: TableReinforced - components: - - pos: 9.5,-24.5 - parent: 0 - type: Transform -- uid: 9777 - type: FirelockGlass - components: - - pos: 9.5,-24.5 - parent: 0 - type: Transform -- uid: 9778 - type: AirlockScienceLocked - components: - - pos: 7.5,-27.5 - parent: 0 - type: Transform -- uid: 9779 - type: AirlockScienceLocked - components: - - pos: 6.5,-27.5 - parent: 0 - type: Transform -- uid: 9780 - type: AirlockScienceLocked - components: - - pos: 7.5,-33.5 - parent: 0 - type: Transform -- uid: 9781 - type: AirlockScienceLocked - components: - - pos: 6.5,-33.5 - parent: 0 - type: Transform -- uid: 9782 - type: ClosetFireFilled - components: - - pos: 8.5,-28.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9783 - type: ClosetEmergencyFilledRandom - components: - - pos: 8.5,-32.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9784 - type: WallReinforced - components: - - pos: 13.5,-23.5 - parent: 0 - type: Transform -- uid: 9785 - type: WallReinforced - components: - - pos: 13.5,-24.5 - parent: 0 - type: Transform -- uid: 9786 - type: WallReinforced - components: - - pos: 13.5,-25.5 - parent: 0 - type: Transform -- uid: 9787 - type: WallReinforced - components: - - pos: 13.5,-26.5 - parent: 0 - type: Transform -- uid: 9788 - type: WindoorScienceLocked - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 0 - type: Transform -- uid: 9789 - type: SignScience1 - components: - - pos: 6.5,-22.5 - parent: 0 - type: Transform -- uid: 9790 - type: SignScience1 - components: - - pos: 1.5,-22.5 - parent: 0 - type: Transform -- uid: 9791 - type: SignScience1 - components: - - pos: -0.5,-23.5 - parent: 0 - type: Transform -- uid: 9792 - type: WallReinforced - components: - - pos: 13.5,-27.5 - parent: 0 - type: Transform -- uid: 9793 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9794 - type: WallReinforced - components: - - pos: 15.5,-27.5 - parent: 0 - type: Transform -- uid: 9795 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 34.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9796 - type: WallReinforced - components: - - pos: 17.5,-27.5 - parent: 0 - type: Transform -- uid: 9797 - type: CableMV - components: - - pos: -6.5,10.5 - parent: 0 - type: Transform -- uid: 9798 - type: CableMV - components: - - pos: -7.5,10.5 - parent: 0 - type: Transform -- uid: 9799 - type: CableMV - components: - - pos: -8.5,10.5 - parent: 0 - type: Transform -- uid: 9800 - type: CableMV - components: - - pos: -9.5,10.5 - parent: 0 - type: Transform -- uid: 9801 - type: CableMV - components: - - pos: -10.5,10.5 - parent: 0 - type: Transform -- uid: 9802 - type: APCBasic - components: - - pos: 0.5,12.5 - parent: 0 - type: Transform -- uid: 9803 - type: ComputerResearchAndDevelopment - components: - - pos: 15.5,-30.5 - parent: 0 - type: Transform -- uid: 9804 - type: CircuitImprinter - components: - - pos: 14.5,-32.5 - parent: 0 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Gold - type: MaterialStorage -- uid: 9805 - type: Protolathe - components: - - pos: 15.5,-32.5 - parent: 0 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold - type: MaterialStorage -- uid: 9806 - type: Autolathe - components: - - pos: 14.5,-30.5 - parent: 0 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage -- uid: 9807 - type: CableMV - components: - - pos: -5.5,10.5 - parent: 0 - type: Transform -- uid: 9808 - type: CableMV - components: - - pos: -4.5,10.5 - parent: 0 - type: Transform -- uid: 9809 - type: CableMV - components: - - pos: -3.5,10.5 - parent: 0 - type: Transform -- uid: 9810 - type: CableMV - components: - - pos: -2.5,10.5 - parent: 0 - type: Transform -- uid: 9811 - type: CableMV - components: - - pos: -1.5,10.5 - parent: 0 - type: Transform -- uid: 9812 - type: CableMV - components: - - pos: -0.5,10.5 - parent: 0 - type: Transform -- uid: 9813 - type: CableMV - components: - - pos: 0.5,10.5 - parent: 0 - type: Transform -- uid: 9814 - type: CableMV - components: - - pos: 0.5,11.5 - parent: 0 - type: Transform -- uid: 9815 - type: CableMV - components: - - pos: 0.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9816 - type: CableApcExtension - components: - - pos: 0.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9817 - type: CableApcExtension - components: - - pos: 0.5,11.5 - parent: 0 - type: Transform -- uid: 9818 - type: CableApcExtension - components: - - pos: 0.5,10.5 - parent: 0 - type: Transform -- uid: 9819 - type: CableApcExtension - components: - - pos: 0.5,9.5 - parent: 0 - type: Transform -- uid: 9820 - type: CableApcExtension - components: - - pos: -0.5,9.5 - parent: 0 - type: Transform -- uid: 9821 - type: CableApcExtension - components: - - pos: -1.5,9.5 - parent: 0 - type: Transform -- uid: 9822 - type: CableApcExtension - components: - - pos: -2.5,9.5 - parent: 0 - type: Transform -- uid: 9823 - type: CableApcExtension - components: - - pos: -3.5,9.5 - parent: 0 - type: Transform -- uid: 9824 - type: CableApcExtension - components: - - pos: -4.5,9.5 - parent: 0 - type: Transform -- uid: 9825 - type: CableApcExtension - components: - - pos: -5.5,9.5 - parent: 0 - type: Transform -- uid: 9826 - type: CableApcExtension - components: - - pos: -6.5,9.5 - parent: 0 - type: Transform -- uid: 9827 - type: CableApcExtension - components: - - pos: -7.5,9.5 - parent: 0 - type: Transform -- uid: 9828 - type: CableApcExtension - components: - - pos: -8.5,9.5 - parent: 0 - type: Transform -- uid: 9829 - type: CableApcExtension - components: - - pos: -9.5,9.5 - parent: 0 - type: Transform -- uid: 9830 - type: CableApcExtension - components: - - pos: -10.5,9.5 - parent: 0 - type: Transform -- uid: 9831 - type: CableApcExtension - components: - - pos: -11.5,9.5 - parent: 0 - type: Transform -- uid: 9832 - type: CableApcExtension - components: - - pos: -12.5,9.5 - parent: 0 - type: Transform -- uid: 9833 - type: CableApcExtension - components: - - pos: -13.5,9.5 - parent: 0 - type: Transform -- uid: 9834 - type: CableApcExtension - components: - - pos: -14.5,9.5 - parent: 0 - type: Transform -- uid: 9835 - type: CableApcExtension - components: - - pos: -15.5,9.5 - parent: 0 - type: Transform -- uid: 9836 - type: CableApcExtension - components: - - pos: -16.5,9.5 - parent: 0 - type: Transform -- uid: 9837 - type: CableApcExtension - components: - - pos: -17.5,9.5 - parent: 0 - type: Transform -- uid: 9838 - type: CableApcExtension - components: - - pos: -18.5,9.5 - parent: 0 - type: Transform -- uid: 9839 - type: CableApcExtension - components: - - pos: 1.5,9.5 - parent: 0 - type: Transform -- uid: 9840 - type: CableApcExtension - components: - - pos: 2.5,9.5 - parent: 0 - type: Transform -- uid: 9841 - type: CableApcExtension - components: - - pos: 3.5,9.5 - parent: 0 - type: Transform -- uid: 9842 - type: CableApcExtension - components: - - pos: 4.5,9.5 - parent: 0 - type: Transform -- uid: 9843 - type: CableApcExtension - components: - - pos: 5.5,9.5 - parent: 0 - type: Transform -- uid: 9844 - type: CableApcExtension - components: - - pos: 6.5,9.5 - parent: 0 - type: Transform -- uid: 9845 - type: CableApcExtension - components: - - pos: 7.5,9.5 - parent: 0 - type: Transform -- uid: 9846 - type: CableApcExtension - components: - - pos: 8.5,9.5 - parent: 0 - type: Transform -- uid: 9847 - type: CableApcExtension - components: - - pos: 9.5,9.5 - parent: 0 - type: Transform -- uid: 9848 - type: CableApcExtension - components: - - pos: 10.5,9.5 - parent: 0 - type: Transform -- uid: 9849 - type: CableApcExtension - components: - - pos: 11.5,9.5 - parent: 0 - type: Transform -- uid: 9850 - type: CableApcExtension - components: - - pos: 12.5,9.5 - parent: 0 - type: Transform -- uid: 9851 - type: CableApcExtension - components: - - pos: 13.5,9.5 - parent: 0 - type: Transform -- uid: 9852 - type: CableApcExtension - components: - - pos: 14.5,9.5 - parent: 0 - type: Transform -- uid: 9853 - type: CableApcExtension - components: - - pos: 15.5,9.5 - parent: 0 - type: Transform -- uid: 9854 - type: CableApcExtension - components: - - pos: 16.5,9.5 - parent: 0 - type: Transform -- uid: 9855 - type: CableApcExtension - components: - - pos: 0.5,13.5 - parent: 0 - type: Transform -- uid: 9856 - type: CableApcExtension - components: - - pos: 0.5,14.5 - parent: 0 - type: Transform -- uid: 9857 - type: CableApcExtension - components: - - pos: -0.5,14.5 - parent: 0 - type: Transform -- uid: 9858 - type: CableApcExtension - components: - - pos: -1.5,14.5 - parent: 0 - type: Transform -- uid: 9859 - type: CableApcExtension - components: - - pos: -2.5,14.5 - parent: 0 - type: Transform -- uid: 9860 - type: CableApcExtension - components: - - pos: -2.5,13.5 - parent: 0 - type: Transform -- uid: 9861 - type: CableApcExtension - components: - - pos: -2.5,12.5 - parent: 0 - type: Transform -- uid: 9862 - type: CableApcExtension - components: - - pos: 1.5,14.5 - parent: 0 - type: Transform -- uid: 9863 - type: CableApcExtension - components: - - pos: 2.5,14.5 - parent: 0 - type: Transform -- uid: 9864 - type: CableApcExtension - components: - - pos: 3.5,14.5 - parent: 0 - type: Transform -- uid: 9865 - type: CableApcExtension - components: - - pos: 4.5,14.5 - parent: 0 - type: Transform -- uid: 9866 - type: CableApcExtension - components: - - pos: 5.5,14.5 - parent: 0 - type: Transform -- uid: 9867 - type: CableApcExtension - components: - - pos: 6.5,14.5 - parent: 0 - type: Transform -- uid: 9868 - type: CableApcExtension - components: - - pos: 7.5,14.5 - parent: 0 - type: Transform -- uid: 9869 - type: CableApcExtension - components: - - pos: 8.5,14.5 - parent: 0 - type: Transform -- uid: 9870 - type: CableApcExtension - components: - - pos: 9.5,14.5 - parent: 0 - type: Transform -- uid: 9871 - type: CableApcExtension - components: - - pos: 10.5,14.5 - parent: 0 - type: Transform -- uid: 9872 - type: CableApcExtension - components: - - pos: 11.5,14.5 - parent: 0 - type: Transform -- uid: 9873 - type: CableApcExtension - components: - - pos: 12.5,14.5 - parent: 0 - type: Transform -- uid: 9874 - type: CableApcExtension - components: - - pos: 11.5,13.5 - parent: 0 - type: Transform -- uid: 9875 - type: CableApcExtension - components: - - pos: 11.5,12.5 - parent: 0 - type: Transform -- uid: 9876 - type: CableApcExtension - components: - - pos: 11.5,11.5 - parent: 0 - type: Transform -- uid: 9877 - type: CableApcExtension - components: - - pos: 11.5,10.5 - parent: 0 - type: Transform -- uid: 9878 - type: CableApcExtension - components: - - pos: 6.5,10.5 - parent: 0 - type: Transform -- uid: 9879 - type: CableApcExtension - components: - - pos: 6.5,11.5 - parent: 0 - type: Transform -- uid: 9880 - type: CableApcExtension - components: - - pos: 6.5,12.5 - parent: 0 - type: Transform -- uid: 9881 - type: RandomSpawner - components: - - pos: -24.5,14.5 - parent: 0 - type: Transform -- uid: 9882 - type: RandomSpawner - components: - - pos: -26.5,15.5 - parent: 0 - type: Transform -- uid: 9883 - type: RandomSpawner - components: - - pos: -40.5,12.5 - parent: 0 - type: Transform -- uid: 9884 - type: RandomSpawner - components: - - pos: -35.5,17.5 - parent: 0 - type: Transform -- uid: 9885 - type: RandomSpawner - components: - - pos: -31.5,3.5 - parent: 0 - type: Transform -- uid: 9886 - type: RandomSpawner - components: - - pos: -15.5,4.5 - parent: 0 - type: Transform -- uid: 9887 - type: RandomSpawner - components: - - pos: -51.5,2.5 - parent: 0 - type: Transform -- uid: 9888 - type: RandomSpawner - components: - - pos: -71.5,8.5 - parent: 0 - type: Transform -- uid: 9889 - type: RandomSpawner - components: - - pos: -57.5,-7.5 - parent: 0 - type: Transform -- uid: 9890 - type: RandomSpawner - components: - - pos: -7.5,-8.5 - parent: 0 - type: Transform -- uid: 9891 - type: RandomFoodMeal - components: - - pos: 31.5,-8.5 - parent: 0 - type: Transform -- uid: 9892 - type: RandomFoodSingle - components: - - pos: 31.5,0.5 - parent: 0 - type: Transform -- uid: 9893 - type: RandomDrinkGlass - components: - - pos: 23.5,-6.5 - parent: 0 - type: Transform -- uid: 9894 - type: RandomDrinkGlass - components: - - pos: 22.5,-3.5 - parent: 0 - type: Transform -- uid: 9895 - type: RandomDrinkGlass - components: - - pos: 20.5,-6.5 - parent: 0 - type: Transform -- uid: 9896 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-3.5 - parent: 0 - type: Transform -- uid: 9897 - type: CableMV - components: - - pos: 14.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9898 - type: CableApcExtension - components: - - pos: 15.5,-3.5 - parent: 0 - type: Transform -- uid: 9899 - type: CableApcExtension - components: - - pos: 14.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9900 - type: CableApcExtension - components: - - pos: 16.5,-3.5 - parent: 0 - type: Transform -- uid: 9901 - type: CableApcExtension - components: - - pos: 16.5,-2.5 - parent: 0 - type: Transform -- uid: 9902 - type: CableApcExtension - components: - - pos: 16.5,-1.5 - parent: 0 - type: Transform -- uid: 9903 - type: CableApcExtension - components: - - pos: 16.5,-0.5 - parent: 0 - type: Transform -- uid: 9904 - type: CableApcExtension - components: - - pos: 16.5,0.5 - parent: 0 - type: Transform -- uid: 9905 - type: CableApcExtension - components: - - pos: 16.5,1.5 - parent: 0 - type: Transform -- uid: 9906 - type: CableApcExtension - components: - - pos: 16.5,2.5 - parent: 0 - type: Transform -- uid: 9907 - type: CableApcExtension - components: - - pos: 16.5,3.5 - parent: 0 - type: Transform -- uid: 9908 - type: CableApcExtension - components: - - pos: 16.5,4.5 - parent: 0 - type: Transform -- uid: 9909 - type: CableApcExtension - components: - - pos: 16.5,5.5 - parent: 0 - type: Transform -- uid: 9910 - type: CableApcExtension - components: - - pos: 16.5,6.5 - parent: 0 - type: Transform -- uid: 9911 - type: CableApcExtension - components: - - pos: 17.5,3.5 - parent: 0 - type: Transform -- uid: 9912 - type: CableApcExtension - components: - - pos: 18.5,3.5 - parent: 0 - type: Transform -- uid: 9913 - type: CableApcExtension - components: - - pos: 19.5,3.5 - parent: 0 - type: Transform -- uid: 9914 - type: CableApcExtension - components: - - pos: 20.5,3.5 - parent: 0 - type: Transform -- uid: 9915 - type: CableApcExtension - components: - - pos: 21.5,3.5 - parent: 0 - type: Transform -- uid: 9916 - type: CableApcExtension - components: - - pos: 16.5,-4.5 - parent: 0 - type: Transform -- uid: 9917 - type: CableApcExtension - components: - - pos: 16.5,-5.5 - parent: 0 - type: Transform -- uid: 9918 - type: CableApcExtension - components: - - pos: 16.5,-6.5 - parent: 0 - type: Transform -- uid: 9919 - type: CableApcExtension - components: - - pos: 16.5,-7.5 - parent: 0 - type: Transform -- uid: 9920 - type: CableApcExtension - components: - - pos: 16.5,-8.5 - parent: 0 - type: Transform -- uid: 9921 - type: CableApcExtension - components: - - pos: 16.5,-9.5 - parent: 0 - type: Transform -- uid: 9922 - type: CableApcExtension - components: - - pos: 16.5,-10.5 - parent: 0 - type: Transform -- uid: 9923 - type: CableApcExtension - components: - - pos: 16.5,-11.5 - parent: 0 - type: Transform -- uid: 9924 - type: CableApcExtension - components: - - pos: 16.5,-12.5 - parent: 0 - type: Transform -- uid: 9925 - type: CableApcExtension - components: - - pos: 16.5,-13.5 - parent: 0 - type: Transform -- uid: 9926 - type: CableApcExtension - components: - - pos: 16.5,-14.5 - parent: 0 - type: Transform -- uid: 9927 - type: CableApcExtension - components: - - pos: 15.5,-7.5 - parent: 0 - type: Transform -- uid: 9928 - type: SpawnPointHeadOfSecurity - components: - - pos: 9.5,47.5 - parent: 0 - type: Transform -- uid: 9929 - type: Carpet - components: - - pos: 14.5,28.5 - parent: 0 - type: Transform -- uid: 9930 - type: Carpet - components: - - pos: 14.5,27.5 - parent: 0 - type: Transform -- uid: 9931 - type: Carpet - components: - - pos: 14.5,26.5 - parent: 0 - type: Transform -- uid: 9932 - type: Carpet - components: - - pos: 13.5,28.5 - parent: 0 - type: Transform -- uid: 9933 - type: Carpet - components: - - pos: 13.5,27.5 - parent: 0 - type: Transform -- uid: 9934 - type: Carpet - components: - - pos: 13.5,26.5 - parent: 0 - type: Transform -- uid: 9935 - type: Carpet - components: - - pos: 12.5,28.5 - parent: 0 - type: Transform -- uid: 9936 - type: GasPipeStraight - components: - - pos: 11.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9937 - type: Carpet - components: - - pos: 12.5,26.5 - parent: 0 - type: Transform -- uid: 9938 - type: GasPipeStraight - components: - - pos: 11.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9939 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 11.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9940 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 12.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9941 - type: Carpet - components: - - pos: 11.5,27.5 - parent: 0 - type: Transform -- uid: 9942 - type: Carpet - components: - - pos: 11.5,26.5 - parent: 0 - type: Transform -- uid: 9943 - type: APCBasic - components: - - pos: 9.5,26.5 - parent: 0 - type: Transform -- uid: 9944 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 8.5,26.5 - parent: 0 - type: Transform -- uid: 9945 - type: CableMV - components: - - pos: 6.5,31.5 - parent: 0 - type: Transform -- uid: 9946 - type: CableMV - components: - - pos: 6.5,30.5 - parent: 0 - type: Transform -- uid: 9947 - type: CableMV - components: - - pos: 6.5,29.5 - parent: 0 - type: Transform -- uid: 9948 - type: CableMV - components: - - pos: 6.5,28.5 - parent: 0 - type: Transform -- uid: 9949 - type: CableMV - components: - - pos: 6.5,27.5 - parent: 0 - type: Transform -- uid: 9950 - type: CableMV - components: - - pos: 6.5,26.5 - parent: 0 - type: Transform -- uid: 9951 - type: CableMV - components: - - pos: 7.5,26.5 - parent: 0 - type: Transform -- uid: 9952 - type: CableMV - components: - - pos: 8.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9953 - type: CableMV - components: - - pos: 9.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9954 - type: CableMV - components: - - pos: 10.5,26.5 - parent: 0 - type: Transform -- uid: 9955 - type: CableMV - components: - - pos: 11.5,26.5 - parent: 0 - type: Transform -- uid: 9956 - type: CableMV - components: - - pos: 11.5,27.5 - parent: 0 - type: Transform -- uid: 9957 - type: CableMV - components: - - pos: 11.5,28.5 - parent: 0 - type: Transform -- uid: 9958 - type: CableMV - components: - - pos: 11.5,29.5 - parent: 0 - type: Transform -- uid: 9959 - type: CableMV - components: - - pos: 11.5,30.5 - parent: 0 - type: Transform -- uid: 9960 - type: CableMV - components: - - pos: 11.5,31.5 - parent: 0 - type: Transform -- uid: 9961 - type: CableMV - components: - - pos: 11.5,32.5 - parent: 0 - type: Transform -- uid: 9962 - type: CableMV - components: - - pos: 10.5,32.5 - parent: 0 - type: Transform -- uid: 9963 - type: CableApcExtension - components: - - pos: 10.5,26.5 - parent: 0 - type: Transform -- uid: 9964 - type: CableApcExtension - components: - - pos: 9.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9965 - type: CableApcExtension - components: - - pos: 6.5,20.5 - parent: 0 - type: Transform -- uid: 9966 - type: CableApcExtension - components: - - pos: 6.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9967 - type: CableApcExtension - components: - - pos: 6.5,19.5 - parent: 0 - type: Transform -- uid: 9968 - type: CableApcExtension - components: - - pos: 5.5,19.5 - parent: 0 - type: Transform -- uid: 9969 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9970 - type: CableApcExtension - components: - - pos: 13.5,25.5 - parent: 0 - type: Transform -- uid: 9971 - type: CableApcExtension - components: - - pos: 13.5,24.5 - parent: 0 - type: Transform -- uid: 9972 - type: TableWood - components: - - pos: 14.5,28.5 - parent: 0 - type: Transform -- uid: 9973 - type: TableWood - components: - - pos: 13.5,28.5 - parent: 0 - type: Transform -- uid: 9974 - type: TableWood - components: - - pos: 12.5,28.5 - parent: 0 - type: Transform -- uid: 9975 - type: TableWood - components: - - pos: 12.5,27.5 - parent: 0 - type: Transform -- uid: 9976 - type: TableWood - components: - - pos: 12.5,26.5 - parent: 0 - type: Transform -- uid: 9977 - type: SpawnPointDetective - components: - - pos: 11.5,27.5 - parent: 0 - type: Transform -- uid: 9978 - type: VendingMachineDetDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,25.5 - parent: 0 - type: Transform -- uid: 9979 - type: LockerDetectiveFilled - components: - - pos: 11.5,23.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9980 - type: DisposalUnit - components: - - pos: 9.5,25.5 - parent: 0 - type: Transform -- uid: 9981 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 9.5,25.5 - parent: 0 - type: Transform -- uid: 9982 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 10.5,25.5 - parent: 0 - type: Transform -- uid: 9983 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 10.5,26.5 - parent: 0 - type: Transform -- uid: 9984 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 10.5,27.5 - parent: 0 - type: Transform -- uid: 9985 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 10.5,28.5 - parent: 0 - type: Transform -- uid: 9986 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 10.5,29.5 - parent: 0 - type: Transform -- uid: 9987 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 10.5,30.5 - parent: 0 - type: Transform -- uid: 9988 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,31.5 - parent: 0 - type: Transform -- uid: 9989 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,31.5 - parent: 0 - type: Transform -- uid: 9990 - type: DisposalBend - components: - - pos: 10.5,31.5 - parent: 0 - type: Transform -- uid: 9991 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 11.5,24.5 - parent: 0 - type: Transform -- uid: 9992 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 9.5,24.5 - parent: 0 - type: Transform -- uid: 9993 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: 10.5,24.5 - parent: 0 - type: Transform -- uid: 9994 - type: Rack - components: - - pos: 10.5,28.5 - parent: 0 - type: Transform -- uid: 9995 - type: ComputerTelevision - components: - - pos: 14.5,28.5 - parent: 0 - type: Transform -- uid: 9996 - type: WallmountTelescreen - components: - - pos: 13.5,29.5 - parent: 0 - type: Transform -- uid: 9997 - type: filingCabinet - components: - - pos: 10.5,23.5 - parent: 0 - type: Transform -- uid: 9998 - type: TableWood - components: - - pos: 9.5,23.5 - parent: 0 - type: Transform -- uid: 9999 - type: LampGold - components: - - pos: 12.580236,28.90407 - parent: 0 - type: Transform -- uid: 10000 - type: ChairOfficeDark - components: - - pos: 13.5,27.5 - parent: 0 - type: Transform -- uid: 10001 - type: ComputerCrewMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 14.5,26.5 - parent: 0 - type: Transform -- uid: 10002 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: 14.5,27.5 - parent: 0 - type: Transform -- uid: 10003 - type: BoxBodyBag - components: - - pos: 9.502111,23.68532 - parent: 0 - type: Transform -- uid: 10004 - type: FlashlightSeclite - components: - - pos: 9.502111,23.49782 - parent: 0 - type: Transform -- uid: 10005 - type: Handcuffs - components: - - pos: 13.4615,28.638445 - parent: 0 - type: Transform -- uid: 10006 - type: BriefcaseBrownFilled - components: - - pos: 10.477125,28.68532 - parent: 0 - type: Transform -- uid: 10007 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10008 - type: Table - components: - - pos: 13.5,30.5 - parent: 0 - type: Transform -- uid: 10009 - type: SignInterrogation - components: - - pos: 14.5,32.5 - parent: 0 - type: Transform -- uid: 10010 - type: CableHV - components: - - pos: -14.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10011 - type: APCBasic - components: - - pos: -14.5,37.5 - parent: 0 - type: Transform -- uid: 10012 - type: CableMV - components: - - pos: -14.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10013 - type: CableApcExtension - components: - - pos: -14.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10014 - type: CableApcExtension - components: - - pos: -14.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10015 - type: CableApcExtension - components: - - pos: -15.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10016 - type: CableApcExtension - components: - - pos: -15.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10017 - type: CableApcExtension - components: - - pos: -15.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10018 - type: CableApcExtension - components: - - pos: -15.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10019 - type: CableApcExtension - components: - - pos: -14.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10020 - type: CableApcExtension - components: - - pos: -15.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10021 - type: CableApcExtension - components: - - pos: -15.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10022 - type: CableApcExtension - components: - - pos: -15.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10023 - type: CableApcExtension - components: - - pos: -16.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10024 - type: CableApcExtension - components: - - pos: -17.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10025 - type: CableMV - components: - - pos: -31.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10026 - type: CableMV - components: - - pos: -31.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10027 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 50.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10028 - type: GasPipeFourway - components: - - pos: 51.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10029 - type: CableMV - components: - - pos: -31.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10030 - type: CableMV - components: - - pos: -31.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10031 - type: CableMV - components: - - pos: -30.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10032 - type: CableMV - components: - - pos: -29.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10033 - type: CableMV - components: - - pos: -28.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10034 - type: CableMV - components: - - pos: -27.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10035 - type: CableMV - components: - - pos: -26.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10036 - type: CableMV - components: - - pos: -26.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10037 - type: CableMV - components: - - pos: -21.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10038 - type: CableMV - components: - - pos: -20.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10039 - type: CableMV - components: - - pos: -21.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10040 - type: CableMV - components: - - pos: -21.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10041 - type: CableMV - components: - - pos: -21.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10042 - type: CableMV - components: - - pos: -21.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10043 - type: CableMV - components: - - pos: -21.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10044 - type: CableMV - components: - - pos: -21.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10045 - type: CableMV - components: - - pos: -21.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10046 - type: CableMV - components: - - pos: -21.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10047 - type: CableMV - components: - - pos: -20.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10048 - type: CableMV - components: - - pos: -19.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10049 - type: CableMV - components: - - pos: -18.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10050 - type: CableMV - components: - - pos: -17.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10051 - type: CableMV - components: - - pos: -16.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10052 - type: APCBasic - components: - - pos: 6.5,22.5 - parent: 0 - type: Transform -- uid: 10053 - type: CableMV - components: - - pos: 6.5,23.5 - parent: 0 - type: Transform -- uid: 10054 - type: CableMV - components: - - pos: 6.5,24.5 - parent: 0 - type: Transform -- uid: 10055 - type: CableMV - components: - - pos: 6.5,25.5 - parent: 0 - type: Transform -- uid: 10056 - type: CableMV - components: - - pos: 6.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10057 - type: CableApcExtension - components: - - pos: 4.5,19.5 - parent: 0 - type: Transform -- uid: 10058 - type: CableApcExtension - components: - - pos: 3.5,19.5 - parent: 0 - type: Transform -- uid: 10059 - type: CableApcExtension - components: - - pos: 2.5,19.5 - parent: 0 - type: Transform -- uid: 10060 - type: CableApcExtension - components: - - pos: 1.5,19.5 - parent: 0 - type: Transform -- uid: 10061 - type: CableApcExtension - components: - - pos: 0.5,19.5 - parent: 0 - type: Transform -- uid: 10062 - type: CableApcExtension - components: - - pos: -2.5,15.5 - parent: 0 - type: Transform -- uid: 10063 - type: CableApcExtension - components: - - pos: -2.5,16.5 - parent: 0 - type: Transform -- uid: 10064 - type: CableApcExtension - components: - - pos: -2.5,17.5 - parent: 0 - type: Transform -- uid: 10065 - type: CableApcExtension - components: - - pos: 4.5,18.5 - parent: 0 - type: Transform -- uid: 10066 - type: CableApcExtension - components: - - pos: 4.5,17.5 - parent: 0 - type: Transform -- uid: 10067 - type: CableApcExtension - components: - - pos: 7.5,19.5 - parent: 0 - type: Transform -- uid: 10068 - type: TableWood - components: - - pos: 12.5,20.5 - parent: 0 - type: Transform -- uid: 10069 - type: TableWood - components: - - pos: 12.5,19.5 - parent: 0 - type: Transform -- uid: 10070 - type: TableWood - components: - - pos: 11.5,19.5 - parent: 0 - type: Transform -- uid: 10071 - type: TableWood - components: - - pos: 10.5,19.5 - parent: 0 - type: Transform -- uid: 10072 - type: CarpetGreen - components: - - pos: 10.5,20.5 - parent: 0 - type: Transform -- uid: 10073 - type: CarpetGreen - components: - - pos: 10.5,21.5 - parent: 0 - type: Transform -- uid: 10074 - type: CarpetGreen - components: - - pos: 11.5,20.5 - parent: 0 - type: Transform -- uid: 10075 - type: CarpetGreen - components: - - pos: 11.5,21.5 - parent: 0 - type: Transform -- uid: 10076 - type: CarpetGreen - components: - - pos: 12.5,20.5 - parent: 0 - type: Transform -- uid: 10077 - type: CarpetGreen - components: - - pos: 12.5,21.5 - parent: 0 - type: Transform -- uid: 10078 - type: ChairOfficeDark - components: - - pos: 11.5,20.5 - parent: 0 - type: Transform -- uid: 10079 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 11.5,18.5 - parent: 0 - type: Transform -- uid: 10080 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 12.5,18.5 - parent: 0 - type: Transform -- uid: 10081 - type: APCBasic - components: - - pos: 13.5,22.5 - parent: 0 - type: Transform -- uid: 10082 - type: CableMV - components: - - pos: 22.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10083 - type: CableMV - components: - - pos: 22.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10084 - type: CableMV - components: - - pos: 22.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10085 - type: CableMV - components: - - pos: 22.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10086 - type: CableMV - components: - - pos: 22.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10087 - type: CableMV - components: - - pos: 22.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10088 - type: CableMV - components: - - pos: 22.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10089 - type: CableMV - components: - - pos: 22.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10090 - type: CableMV - components: - - pos: 21.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10091 - type: CableMV - components: - - pos: 21.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10092 - type: CableMV - components: - - pos: 20.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10093 - type: CableMV - components: - - pos: 19.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10094 - type: CableMV - components: - - pos: 18.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10095 - type: CableMV - components: - - pos: 17.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10096 - type: CableMV - components: - - pos: 16.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10097 - type: CableMV - components: - - pos: 16.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10098 - type: CableMV - components: - - pos: 16.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10099 - type: CableMV - components: - - pos: 16.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10100 - type: CableMV - components: - - pos: 16.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10101 - type: CableMV - components: - - pos: 16.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10102 - type: CableMV - components: - - pos: 15.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10103 - type: CableMV - components: - - pos: 14.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10104 - type: CableMV - components: - - pos: 13.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10105 - type: CableMV - components: - - pos: 13.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10106 - type: CableApcExtension - components: - - pos: 13.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10107 - type: CableApcExtension - components: - - pos: 13.5,21.5 - parent: 0 - type: Transform -- uid: 10108 - type: CableApcExtension - components: - - pos: 13.5,20.5 - parent: 0 - type: Transform -- uid: 10109 - type: CableApcExtension - components: - - pos: 13.5,19.5 - parent: 0 - type: Transform -- uid: 10110 - type: CableApcExtension - components: - - pos: 13.5,18.5 - parent: 0 - type: Transform -- uid: 10111 - type: CableApcExtension - components: - - pos: 13.5,17.5 - parent: 0 - type: Transform -- uid: 10112 - type: CableApcExtension - components: - - pos: 12.5,18.5 - parent: 0 - type: Transform -- uid: 10113 - type: CableApcExtension - components: - - pos: 10.5,18.5 - parent: 0 - type: Transform -- uid: 10114 - type: CableApcExtension - components: - - pos: 11.5,18.5 - parent: 0 - type: Transform -- uid: 10115 - type: CableApcExtension - components: - - pos: 12.5,21.5 - parent: 0 - type: Transform -- uid: 10116 - type: VendingMachineLawDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,17.5 - parent: 0 - type: Transform -- uid: 10117 - type: DisposalUnit - components: - - pos: 10.5,17.5 - parent: 0 - type: Transform -- uid: 10118 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 10.5,17.5 - parent: 0 - type: Transform -- uid: 10119 - type: DisposalBend - components: - - pos: 11.5,17.5 - parent: 0 - type: Transform -- uid: 10120 - type: DisposalPipe - components: - - pos: 11.5,16.5 - parent: 0 - type: Transform -- uid: 10121 - type: DisposalPipe - components: - - pos: 11.5,15.5 - parent: 0 - type: Transform -- uid: 10122 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 52.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10123 - type: DisposalPipe - components: - - pos: 11.5,13.5 - parent: 0 - type: Transform -- uid: 10124 - type: DisposalPipe - components: - - pos: 11.5,12.5 - parent: 0 - type: Transform -- uid: 10125 - type: DisposalPipe - components: - - pos: 11.5,11.5 - parent: 0 - type: Transform -- uid: 10126 - type: DisposalPipe - components: - - pos: 11.5,10.5 - parent: 0 - type: Transform -- uid: 10127 - type: WallReinforced - components: - - pos: -4.5,-27.5 - parent: 0 - type: Transform -- uid: 10128 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10129 - type: filingCabinet - components: - - pos: 10.5,20.5 - parent: 0 - type: Transform -- uid: 10130 - type: SpawnPointLawyer - components: - - pos: 11.5,20.5 - parent: 0 - type: Transform -- uid: 10131 - type: SpawnPointLawyer - components: - - pos: 13.5,18.5 - parent: 0 - type: Transform -- uid: 10132 - type: LampGold - components: - - pos: 10.5029335,19.882265 - parent: 0 - type: Transform -- uid: 10133 - type: BriefcaseBrownFilled - components: - - pos: 11.588376,17.686413 - parent: 0 - type: Transform -- uid: 10134 - type: BriefcaseBrownFilled - components: - - pos: 11.416501,17.608288 - parent: 0 - type: Transform -- uid: 10135 - type: BoxFolderRed - components: - - pos: 11.4873085,19.55414 - parent: 0 - type: Transform -- uid: 10136 - type: BoxFolderBlue - components: - - pos: 12.5029335,20.382265 - parent: 0 - type: Transform -- uid: 10137 - type: CableHV - components: - - pos: -28.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10138 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10139 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10140 - type: Poweredlight - components: - - pos: 2.5,21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10141 - type: Poweredlight - components: - - pos: 6.5,21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10142 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 1.5,13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10143 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10144 - type: Catwalk - components: - - pos: -42.5,35.5 - parent: 0 - type: Transform -- uid: 10145 - type: Catwalk - components: - - pos: -38.5,38.5 - parent: 0 - type: Transform -- uid: 10146 - type: Catwalk - components: - - pos: -38.5,39.5 - parent: 0 - type: Transform -- uid: 10147 - type: Catwalk - components: - - pos: -38.5,40.5 - parent: 0 - type: Transform -- uid: 10148 - type: Poweredlight - components: - - pos: 60.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10149 - type: DisposalJunctionFlipped - components: - - pos: 11.5,14.5 - parent: 0 - type: Transform -- uid: 10150 - type: ToolboxEmergencyFilled - components: - - pos: 19.463247,6.6312637 - parent: 0 - type: Transform -- uid: 10151 - type: ClosetToolFilled - components: - - pos: 23.5,8.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10152 - type: ClosetToolFilled - components: - - pos: 22.5,8.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10153 - type: PottedPlant21 - components: - - pos: 20.5,8.5 - parent: 0 - type: Transform -- uid: 10154 - type: Table - components: - - pos: 23.5,6.5 - parent: 0 - type: Transform -- uid: 10155 - type: Table - components: - - pos: 20.5,6.5 - parent: 0 - type: Transform -- uid: 10156 - type: Table - components: - - pos: 19.5,6.5 - parent: 0 - type: Transform -- uid: 10157 - type: Rack - components: - - pos: 22.5,6.5 - parent: 0 - type: Transform -- uid: 10158 - type: ClosetEmergencyFilledRandom - components: - - pos: 67.5,3.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10159 - type: Rack - components: - - pos: 58.5,10.5 - parent: 0 - type: Transform -- uid: 10160 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 52.5,7.5 - parent: 0 - type: Transform -- uid: 10161 - type: Rack - components: - - pos: 62.5,5.5 - parent: 0 - type: Transform -- uid: 10162 - type: ClothingMaskBreathMedical - components: - - pos: 62.505043,5.469975 - parent: 0 - type: Transform -- uid: 10163 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 28.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10164 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 60.5,8.5 - parent: 0 - type: Transform -- uid: 10165 - type: GasVentScrubber - components: - - pos: 2.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10166 - type: WeldingFuelTankFull - components: - - pos: 58.5,11.5 - parent: 0 - type: Transform -- uid: 10167 - type: SubstationBasic - components: - - pos: 60.5,7.5 - parent: 0 - type: Transform -- uid: 10168 - type: Bed - components: - - pos: 44.5,6.5 - parent: 0 - type: Transform -- uid: 10169 - type: BedsheetCE - components: - - pos: 44.5,6.5 - parent: 0 - type: Transform -- uid: 10170 - type: ClosetFireFilled - components: - - pos: 63.5,5.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10171 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10172 - type: SolarPanel - components: - - pos: -39.5,52.5 - parent: 0 - type: Transform -- uid: 10173 - type: SolarPanel - components: - - pos: -38.5,52.5 - parent: 0 - type: Transform -- uid: 10174 - type: SolarPanel - components: - - pos: -37.5,52.5 - parent: 0 - type: Transform -- uid: 10175 - type: SolarPanel - components: - - pos: -36.5,52.5 - parent: 0 - type: Transform -- uid: 10176 - type: SolarPanel - components: - - pos: -35.5,52.5 - parent: 0 - type: Transform -- uid: 10177 - type: SolarPanel - components: - - pos: -34.5,52.5 - parent: 0 - type: Transform -- uid: 10178 - type: SolarPanel - components: - - pos: -30.5,52.5 - parent: 0 - type: Transform -- uid: 10179 - type: SolarPanel - components: - - pos: -29.5,52.5 - parent: 0 - type: Transform -- uid: 10180 - type: SolarPanel - components: - - pos: -28.5,52.5 - parent: 0 - type: Transform -- uid: 10181 - type: ComfyChair - components: - - pos: 64.5,3.5 - parent: 0 - type: Transform -- uid: 10182 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 29.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10183 - type: WeldingFuelTankFull - components: - - pos: 19.5,8.5 - parent: 0 - type: Transform -- uid: 10184 - type: Rack - components: - - pos: 19.5,7.5 - parent: 0 - type: Transform -- uid: 10185 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -7.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10186 - type: PoweredSmallLight - components: - - pos: 67.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10187 - type: SolarPanel - components: - - pos: -28.5,54.5 - parent: 0 - type: Transform -- uid: 10188 - type: SolarPanel - components: - - pos: -29.5,54.5 - parent: 0 - type: Transform -- uid: 10189 - type: SolarPanel - components: - - pos: -30.5,54.5 - parent: 0 - type: Transform -- uid: 10190 - type: SolarPanel - components: - - pos: -34.5,54.5 - parent: 0 - type: Transform -- uid: 10191 - type: SolarPanel - components: - - pos: -35.5,54.5 - parent: 0 - type: Transform -- uid: 10192 - type: SolarPanel - components: - - pos: -36.5,54.5 - parent: 0 - type: Transform -- uid: 10193 - type: SolarPanel - components: - - pos: -37.5,54.5 - parent: 0 - type: Transform -- uid: 10194 - type: SolarPanel - components: - - pos: -38.5,54.5 - parent: 0 - type: Transform -- uid: 10195 - type: SolarPanel - components: - - pos: -39.5,54.5 - parent: 0 - type: Transform -- uid: 10196 - type: SolarPanel - components: - - pos: -30.5,56.5 - parent: 0 - type: Transform -- uid: 10197 - type: SolarPanel - components: - - pos: -29.5,56.5 - parent: 0 - type: Transform -- uid: 10198 - type: SolarPanel - components: - - pos: -28.5,56.5 - parent: 0 - type: Transform -- uid: 10199 - type: SolarPanel - components: - - pos: -27.5,56.5 - parent: 0 - type: Transform -- uid: 10200 - type: SolarPanel - components: - - pos: -26.5,56.5 - parent: 0 - type: Transform -- uid: 10201 - type: SolarPanel - components: - - pos: -25.5,56.5 - parent: 0 - type: Transform -- uid: 10202 - type: SolarPanel - components: - - pos: -25.5,58.5 - parent: 0 - type: Transform -- uid: 10203 - type: SolarPanel - components: - - pos: -26.5,58.5 - parent: 0 - type: Transform -- uid: 10204 - type: SolarPanel - components: - - pos: -27.5,58.5 - parent: 0 - type: Transform -- uid: 10205 - type: SolarPanel - components: - - pos: -28.5,58.5 - parent: 0 - type: Transform -- uid: 10206 - type: SolarPanel - components: - - pos: -29.5,58.5 - parent: 0 - type: Transform -- uid: 10207 - type: SolarPanel - components: - - pos: -30.5,58.5 - parent: 0 - type: Transform -- uid: 10208 - type: SolarPanel - components: - - pos: -34.5,56.5 - parent: 0 - type: Transform -- uid: 10209 - type: SolarPanel - components: - - pos: -35.5,56.5 - parent: 0 - type: Transform -- uid: 10210 - type: SolarPanel - components: - - pos: -36.5,56.5 - parent: 0 - type: Transform -- uid: 10211 - type: SolarPanel - components: - - pos: -37.5,56.5 - parent: 0 - type: Transform -- uid: 10212 - type: SolarPanel - components: - - pos: -38.5,56.5 - parent: 0 - type: Transform -- uid: 10213 - type: SolarPanel - components: - - pos: -39.5,56.5 - parent: 0 - type: Transform -- uid: 10214 - type: SolarPanel - components: - - pos: -39.5,58.5 - parent: 0 - type: Transform -- uid: 10215 - type: SolarPanel - components: - - pos: -38.5,58.5 - parent: 0 - type: Transform -- uid: 10216 - type: SolarPanel - components: - - pos: -37.5,58.5 - parent: 0 - type: Transform -- uid: 10217 - type: SolarPanel - components: - - pos: -36.5,58.5 - parent: 0 - type: Transform -- uid: 10218 - type: SolarPanel - components: - - pos: -35.5,58.5 - parent: 0 - type: Transform -- uid: 10219 - type: SolarPanel - components: - - pos: -34.5,58.5 - parent: 0 - type: Transform -- uid: 10220 - type: SolarPanel - components: - - pos: -30.5,60.5 - parent: 0 - type: Transform -- uid: 10221 - type: SolarPanel - components: - - pos: -29.5,60.5 - parent: 0 - type: Transform -- uid: 10222 - type: SolarPanel - components: - - pos: -28.5,60.5 - parent: 0 - type: Transform -- uid: 10223 - type: SolarPanel - components: - - pos: -27.5,60.5 - parent: 0 - type: Transform -- uid: 10224 - type: SolarPanel - components: - - pos: -26.5,60.5 - parent: 0 - type: Transform -- uid: 10225 - type: SolarPanel - components: - - pos: -25.5,60.5 - parent: 0 - type: Transform -- uid: 10226 - type: SolarPanel - components: - - pos: -25.5,62.5 - parent: 0 - type: Transform -- uid: 10227 - type: SolarPanel - components: - - pos: -26.5,62.5 - parent: 0 - type: Transform -- uid: 10228 - type: SolarPanel - components: - - pos: -27.5,62.5 - parent: 0 - type: Transform -- uid: 10229 - type: SolarPanel - components: - - pos: -28.5,62.5 - parent: 0 - type: Transform -- uid: 10230 - type: SolarPanel - components: - - pos: -29.5,62.5 - parent: 0 - type: Transform -- uid: 10231 - type: SolarPanel - components: - - pos: -30.5,62.5 - parent: 0 - type: Transform -- uid: 10232 - type: SolarPanel - components: - - pos: -34.5,60.5 - parent: 0 - type: Transform -- uid: 10233 - type: SolarPanel - components: - - pos: -35.5,60.5 - parent: 0 - type: Transform -- uid: 10234 - type: SolarPanel - components: - - pos: -36.5,60.5 - parent: 0 - type: Transform -- uid: 10235 - type: SolarPanel - components: - - pos: -37.5,60.5 - parent: 0 - type: Transform -- uid: 10236 - type: SolarPanel - components: - - pos: -38.5,60.5 - parent: 0 - type: Transform -- uid: 10237 - type: SolarPanel - components: - - pos: -39.5,60.5 - parent: 0 - type: Transform -- uid: 10238 - type: SolarPanel - components: - - pos: -39.5,62.5 - parent: 0 - type: Transform -- uid: 10239 - type: SolarPanel - components: - - pos: -38.5,62.5 - parent: 0 - type: Transform -- uid: 10240 - type: SolarPanel - components: - - pos: -37.5,62.5 - parent: 0 - type: Transform -- uid: 10241 - type: SolarPanel - components: - - pos: -36.5,62.5 - parent: 0 - type: Transform -- uid: 10242 - type: SolarPanel - components: - - pos: -35.5,62.5 - parent: 0 - type: Transform -- uid: 10243 - type: SolarPanel - components: - - pos: -34.5,62.5 - parent: 0 - type: Transform -- uid: 10244 - type: SolarPanel - components: - - pos: -30.5,64.5 - parent: 0 - type: Transform -- uid: 10245 - type: SolarPanel - components: - - pos: -29.5,64.5 - parent: 0 - type: Transform -- uid: 10246 - type: SolarPanel - components: - - pos: -28.5,64.5 - parent: 0 - type: Transform -- uid: 10247 - type: SolarPanel - components: - - pos: -27.5,64.5 - parent: 0 - type: Transform -- uid: 10248 - type: SolarPanel - components: - - pos: -26.5,64.5 - parent: 0 - type: Transform -- uid: 10249 - type: SolarPanel - components: - - pos: -25.5,64.5 - parent: 0 - type: Transform -- uid: 10250 - type: SolarPanel - components: - - pos: -25.5,66.5 - parent: 0 - type: Transform -- uid: 10251 - type: SolarPanel - components: - - pos: -26.5,66.5 - parent: 0 - type: Transform -- uid: 10252 - type: SolarPanel - components: - - pos: -27.5,66.5 - parent: 0 - type: Transform -- uid: 10253 - type: SolarPanel - components: - - pos: -28.5,66.5 - parent: 0 - type: Transform -- uid: 10254 - type: SolarPanel - components: - - pos: -29.5,66.5 - parent: 0 - type: Transform -- uid: 10255 - type: SolarPanel - components: - - pos: -30.5,66.5 - parent: 0 - type: Transform -- uid: 10256 - type: CableHV - components: - - pos: -29.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10257 - type: SolarPanel - components: - - pos: -35.5,64.5 - parent: 0 - type: Transform -- uid: 10258 - type: SolarPanel - components: - - pos: -36.5,64.5 - parent: 0 - type: Transform -- uid: 10259 - type: SolarPanel - components: - - pos: -37.5,64.5 - parent: 0 - type: Transform -- uid: 10260 - type: SolarPanel - components: - - pos: -38.5,64.5 - parent: 0 - type: Transform -- uid: 10261 - type: SolarPanel - components: - - pos: -39.5,64.5 - parent: 0 - type: Transform -- uid: 10262 - type: SolarPanel - components: - - pos: -39.5,66.5 - parent: 0 - type: Transform -- uid: 10263 - type: SolarPanel - components: - - pos: -38.5,66.5 - parent: 0 - type: Transform -- uid: 10264 - type: SolarPanel - components: - - pos: -37.5,66.5 - parent: 0 - type: Transform -- uid: 10265 - type: SolarPanel - components: - - pos: -36.5,66.5 - parent: 0 - type: Transform -- uid: 10266 - type: SolarPanel - components: - - pos: -35.5,66.5 - parent: 0 - type: Transform -- uid: 10267 - type: SolarPanel - components: - - pos: -34.5,66.5 - parent: 0 - type: Transform -- uid: 10268 - type: CableHV - components: - - pos: -30.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10269 - type: CableHV - components: - - pos: -34.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10270 - type: CableHV - components: - - pos: -35.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10271 - type: CableHV - components: - - pos: -36.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10272 - type: CableHV - components: - - pos: -37.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10273 - type: CableHV - components: - - pos: -38.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10274 - type: CableHV - components: - - pos: -39.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10275 - type: CableHV - components: - - pos: -34.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10276 - type: CableHV - components: - - pos: -35.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10277 - type: CableHV - components: - - pos: -36.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10278 - type: CableHV - components: - - pos: -37.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10279 - type: CableHV - components: - - pos: -38.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10280 - type: CableHV - components: - - pos: -39.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10281 - type: ClothingEyesGlassesMeson - components: - - pos: -16.522465,40.893593 - parent: 0 - type: Transform -- uid: 10282 - type: Rack - components: - - pos: -3.5,42.5 - parent: 0 - type: Transform -- uid: 10283 - type: BoxHandcuff - components: - - pos: -3.3393211,42.60784 - parent: 0 - type: Transform -- uid: 10284 - type: BoxZiptie - components: - - pos: -3.5893211,42.467216 - parent: 0 - type: Transform -- uid: 10285 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10286 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 58.5,2.5 - parent: 0 - type: Transform -- uid: 10287 - type: Grille - components: - - pos: 30.5,5.5 - parent: 0 - type: Transform -- uid: 10288 - type: Grille - components: - - pos: 30.5,9.5 - parent: 0 - type: Transform -- uid: 10289 - type: MaintenanceToolSpawner - components: - - pos: 58.5,10.5 - parent: 0 - type: Transform -- uid: 10290 - type: WaterTankFull - components: - - pos: 65.5,5.5 - parent: 0 - type: Transform -- uid: 10291 - type: FireAxeCabinetFilled - components: - - pos: 51.5,-17.5 - parent: 0 - type: Transform -- uid: 10292 - type: WallReinforced - components: - - pos: 70.5,-7.5 - parent: 0 - type: Transform -- uid: 10293 - type: BlastDoor - components: - - pos: 68.5,-5.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12022 - type: SignalReceiver -- uid: 10294 - type: AtmosDeviceFanTiny - components: - - pos: 39.5,-15.5 - parent: 0 - type: Transform -- uid: 10295 - type: AtmosFixFreezerMarker - components: - - pos: 33.5,-16.5 - parent: 0 - type: Transform -- uid: 10296 - type: AtmosFixFreezerMarker - components: - - pos: 33.5,-15.5 - parent: 0 - type: Transform -- uid: 10297 - type: SpawnVehicleSecway - components: - - pos: 4.5,34.5 - parent: 0 - type: Transform -- uid: 10298 - type: AtmosFixFreezerMarker - components: - - pos: 33.5,-14.5 - parent: 0 - type: Transform -- uid: 10299 - type: AtmosFixFreezerMarker - components: - - pos: 33.5,-13.5 - parent: 0 - type: Transform -- uid: 10300 - type: AtmosFixFreezerMarker - components: - - pos: 34.5,-16.5 - parent: 0 - type: Transform -- uid: 10301 - type: AtmosFixFreezerMarker - components: - - pos: 34.5,-15.5 - parent: 0 - type: Transform -- uid: 10302 - type: AtmosFixFreezerMarker - components: - - pos: 34.5,-14.5 - parent: 0 - type: Transform -- uid: 10303 - type: AtmosFixFreezerMarker - components: - - pos: 34.5,-13.5 - parent: 0 - type: Transform -- uid: 10304 - type: AtmosFixFreezerMarker - components: - - pos: 35.5,-16.5 - parent: 0 - type: Transform -- uid: 10305 - type: AtmosFixFreezerMarker - components: - - pos: 35.5,-15.5 - parent: 0 - type: Transform -- uid: 10306 - type: Girder - components: - - pos: -30.5,29.5 - parent: 0 - type: Transform -- uid: 10307 - type: ClosetMaintenanceFilledRandom - components: - - pos: -37.5,28.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10308 - type: Rack - components: - - pos: -37.5,25.5 - parent: 0 - type: Transform -- uid: 10309 - type: ClosetEmergencyFilledRandom - components: - - pos: -30.5,25.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10310 - type: MaintenanceFluffSpawner - components: - - pos: -37.5,25.5 - parent: 0 - type: Transform -- uid: 10311 - type: MaintenanceToolSpawner - components: - - pos: -30.5,28.5 - parent: 0 - type: Transform -- uid: 10312 - type: RandomSpawner - components: - - pos: -35.5,28.5 - parent: 0 - type: Transform -- uid: 10313 - type: PoweredSmallLight - components: - - pos: -30.5,23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10314 - type: Poweredlight - components: - - pos: -25.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10315 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -28.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10316 - type: Poweredlight - components: - - pos: -26.5,23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10317 - type: Poweredlight - components: - - pos: -20.5,23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10318 - type: Poweredlight - components: - - pos: -5.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10319 - type: Poweredlight - components: - - pos: -11.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10320 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -15.5,39.5 - parent: 0 - type: Transform -- uid: 10321 - type: LockerElectricalSuppliesFilled - components: - - pos: -14.5,38.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10322 - type: Table - components: - - pos: -14.5,41.5 - parent: 0 - type: Transform -- uid: 10323 - type: Table - components: - - pos: -14.5,42.5 - parent: 0 - type: Transform -- uid: 10324 - type: Table - components: - - pos: -15.5,42.5 - parent: 0 - type: Transform -- uid: 10325 - type: Table - components: - - pos: -16.5,42.5 - parent: 0 - type: Transform -- uid: 10326 - type: Table - components: - - pos: -16.5,41.5 - parent: 0 - type: Transform -- uid: 10327 - type: Table - components: - - pos: -16.5,40.5 - parent: 0 - type: Transform -- uid: 10328 - type: ToolboxEmergencyFilled - components: - - pos: -16.465958,42.545643 - parent: 0 - type: Transform -- uid: 10329 - type: CableApcStack - components: - - pos: -15.387832,42.640137 - parent: 0 - type: Transform -- uid: 10330 - type: CableMVStack - components: - - pos: -15.215957,42.53076 - parent: 0 - type: Transform -- uid: 10331 - type: CableHVStack - components: - - pos: -15.059707,42.421387 - parent: 0 - type: Transform -- uid: 10332 - type: trayScanner - components: - - pos: -14.434707,42.56201 - parent: 0 - type: Transform -- uid: 10333 - type: Screwdriver - components: - - pos: -16.542467,41.846718 - parent: 0 - type: Transform -- uid: 10334 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10335 - type: ShuttersNormalOpen - components: - - pos: 1.5,41.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10478 - type: SignalReceiver -- uid: 10336 - type: TintedWindow - components: - - pos: 0.5,41.5 - parent: 0 - type: Transform -- uid: 10337 - type: TintedWindow - components: - - pos: 2.5,41.5 - parent: 0 - type: Transform -- uid: 10338 - type: Grille - components: - - pos: 0.5,41.5 - parent: 0 - type: Transform -- uid: 10339 - type: Grille - components: - - pos: 2.5,41.5 - parent: 0 - type: Transform -- uid: 10340 - type: VendingMachineSec - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,36.5 - parent: 0 - type: Transform -- uid: 10341 - type: VendingMachineSecDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,40.5 - parent: 0 - type: Transform -- uid: 10342 - type: Table - components: - - pos: 0.5,40.5 - parent: 0 - type: Transform -- uid: 10343 - type: Table - components: - - pos: 0.5,38.5 - parent: 0 - type: Transform -- uid: 10344 - type: WeaponCapacitorRecharger - components: - - pos: 0.5,40.5 - parent: 0 - type: Transform -- uid: 10345 - type: WeaponCapacitorRecharger - components: - - pos: 0.5,38.5 - parent: 0 - type: Transform -- uid: 10346 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10347 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10348 - type: LockerSecurityFilled - components: - - pos: -3.5,45.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10349 - type: LockerSecurityFilled - components: - - pos: -2.5,45.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10350 - type: LockerSecurityFilled - components: - - pos: -1.5,45.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10351 - type: LockerSecurityFilled - components: - - pos: -0.5,45.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10352 - type: ClosetL3SecurityFilled - components: - - pos: 0.5,45.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10353 - type: ClosetBombFilled - components: - - pos: 1.5,45.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10354 - type: TableReinforced - components: - - pos: -4.5,38.5 - parent: 0 - type: Transform -- uid: 10355 - type: TableReinforced - components: - - pos: -3.5,38.5 - parent: 0 - type: Transform -- uid: 10356 - type: TableReinforced - components: - - pos: -5.5,38.5 - parent: 0 - type: Transform -- uid: 10357 - type: ClothingOuterArmorRiot - components: - - pos: -1.3128319,37.521873 - parent: 0 - type: Transform -- uid: 10358 - type: Rack - components: - - pos: -7.5,37.5 - parent: 0 - type: Transform -- uid: 10359 - type: Rack - components: - - pos: -1.5,39.5 - parent: 0 - type: Transform -- uid: 10360 - type: PortableFlasher - components: - - pos: -6.5,44.5 - parent: 0 - type: Transform -- uid: 10361 - type: PortableFlasher - components: - - pos: -8.5,44.5 - parent: 0 - type: Transform -- uid: 10362 - type: SecurityTechFab - components: - - pos: -1.5,36.5 - parent: 0 - type: Transform - - materialWhiteList: - - Glass - - Plastic - - Steel - type: MaterialStorage -- uid: 10363 - type: Rack - components: - - pos: -7.5,39.5 - parent: 0 - type: Transform -- uid: 10364 - type: Table - components: - - pos: -1.5,38.5 - parent: 0 - type: Transform -- uid: 10365 - type: Rack - components: - - pos: -7.5,38.5 - parent: 0 - type: Transform -- uid: 10366 - type: Rack - components: - - pos: -1.5,37.5 - parent: 0 - type: Transform -- uid: 10367 - type: PortableFlasher - components: - - pos: -7.5,44.5 - parent: 0 - type: Transform -- uid: 10368 - type: PortableFlasher - components: - - pos: -4.5,36.5 - parent: 0 - type: Transform -- uid: 10369 - type: ClothingOuterArmorRiot - components: - - pos: -1.4847069,37.63125 - parent: 0 - type: Transform -- uid: 10370 - type: ClothingOuterArmorRiot - components: - - pos: -1.6097069,37.740623 - parent: 0 - type: Transform -- uid: 10371 - type: DeployableBarrier - components: - - anchored: False - pos: -8.5,42.5 - parent: 0 - type: Transform -- uid: 10372 - type: DeployableBarrier - components: - - anchored: False - pos: -7.5,42.5 - parent: 0 - type: Transform -- uid: 10373 - type: DeployableBarrier - components: - - anchored: False - pos: -6.5,42.5 - parent: 0 - type: Transform -- uid: 10374 - type: RiotShield - components: - - pos: -1.6097069,39.615623 - parent: 0 - type: Transform -- uid: 10375 - type: RiotShield - components: - - pos: -1.5003319,39.5375 - parent: 0 - type: Transform -- uid: 10376 - type: RiotShield - components: - - pos: -1.3597069,39.396873 - parent: 0 - type: Transform -- uid: 10377 - type: ClothingHeadHelmetRiot - components: - - pos: -1.6722069,37.928123 - parent: 0 - type: Transform -- uid: 10378 - type: ClothingHeadHelmetRiot - components: - - pos: -1.5159569,37.834373 - parent: 0 - type: Transform -- uid: 10379 - type: ClothingHeadHelmetRiot - components: - - pos: -1.3440819,37.75625 - parent: 0 - type: Transform -- uid: 10380 - type: BoxLethalshot - components: - - pos: -7.4380465,39.459373 - parent: 0 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 10381 - type: BoxShotgunIncendiary - components: - - pos: -7.5474215,39.646873 - parent: 0 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 10382 - type: BoxShotgunSlug - components: - - pos: -7.5005465,39.56875 - parent: 0 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 10383 - type: MagazineRifle - components: - - pos: -7.3283668,38.638325 - parent: 0 - type: Transform -- uid: 10384 - type: MagazineRifle - components: - - pos: -7.2658668,38.638325 - parent: 0 - type: Transform -- uid: 10385 - type: MagazineRifle - components: - - pos: -7.7033668,38.638325 - parent: 0 - type: Transform -- uid: 10386 - type: WeaponRifleLecter - components: - - pos: -4.5158668,38.700825 - parent: 0 - type: Transform -- uid: 10387 - type: WeaponRifleLecter - components: - - pos: -4.4846168,38.4352 - parent: 0 - type: Transform -- uid: 10388 - type: WeaponRifleLecter - components: - - pos: -4.5002418,38.575825 - parent: 0 - type: Transform -- uid: 10389 - type: MagazineRifle - components: - - pos: -7.4846168,38.638325 - parent: 0 - type: Transform -- uid: 10390 - type: MagazineRifle - components: - - pos: -7.5939918,38.638325 - parent: 0 - type: Transform -- uid: 10391 - type: MagazineRifleRubber - components: - - pos: -7.3908668,38.3727 - parent: 0 - type: Transform -- uid: 10392 - type: MagazineRifleRubber - components: - - pos: -7.5314918,38.3727 - parent: 0 - type: Transform -- uid: 10393 - type: MagazineRifleRubber - components: - - pos: -7.6877418,38.3727 - parent: 0 - type: Transform -- uid: 10394 - type: WeaponRifleLecter - components: - - pos: -4.5005465,38.6 - parent: 0 - type: Transform -- uid: 10395 - type: WeaponShotgunKammerer - components: - - pos: -3.5630465,38.57788 - parent: 0 - type: Transform - - unspawnedCount: 4 - type: BallisticAmmoProvider -- uid: 10396 - type: WeaponShotgunKammerer - components: - - pos: -3.5630465,38.687256 - parent: 0 - type: Transform - - unspawnedCount: 4 - type: BallisticAmmoProvider -- uid: 10397 - type: WeaponShotgunKammerer - components: - - pos: -3.5474215,38.437256 - parent: 0 - type: Transform - - unspawnedCount: 4 - type: BallisticAmmoProvider -- uid: 10398 - type: LockerSyndicatePersonal - components: - - pos: -1.5,40.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 10401 - - 10400 - - 10399 - type: ContainerContainer -- uid: 10399 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 10398 - type: Transform - - canCollide: False - type: Physics -- uid: 10400 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 10398 - type: Transform - - canCollide: False - type: Physics -- uid: 10401 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 10398 - type: Transform - - canCollide: False - type: Physics -- uid: 10402 - type: SurveillanceCameraRouterSecurity - components: - - pos: -7.5,36.5 - parent: 0 - type: Transform -- uid: 10403 - type: PortableFlasher - components: - - pos: -6.5,36.5 - parent: 0 - type: Transform -- uid: 10404 - type: WeaponPistolMk58 - components: - - pos: -4.5803065,40.598953 - parent: 0 - type: Transform -- uid: 10405 - type: WeaponPistolMk58 - components: - - pos: -4.5178065,40.505203 - parent: 0 - type: Transform -- uid: 10406 - type: WeaponPistolMk58 - components: - - pos: -4.4084315,40.411453 - parent: 0 - type: Transform -- uid: 10407 - type: MagazinePistol - components: - - pos: -7.4396815,37.52083 - parent: 0 - type: Transform - - unspawnedCount: 10 - type: BallisticAmmoProvider -- uid: 10408 - type: MagazinePistol - components: - - pos: -7.3928065,37.45833 - parent: 0 - type: Transform - - unspawnedCount: 10 - type: BallisticAmmoProvider -- uid: 10409 - type: MagazinePistol - components: - - pos: -7.3146815,37.380203 - parent: 0 - type: Transform - - unspawnedCount: 10 - type: BallisticAmmoProvider -- uid: 10410 - type: WeaponDisabler - components: - - pos: -1.6002245,38.76935 - parent: 0 - type: Transform -- uid: 10411 - type: WeaponDisabler - components: - - pos: -1.5533495,38.6756 - parent: 0 - type: Transform -- uid: 10412 - type: WeaponDisabler - components: - - pos: -1.4752245,38.566223 - parent: 0 - type: Transform -- uid: 10413 - type: Rack - components: - - pos: -4.5,40.5 - parent: 0 - type: Transform -- uid: 10414 - type: Rack - components: - - pos: -3.5,40.5 - parent: 0 - type: Transform -- uid: 10415 - type: Rack - components: - - pos: -5.5,40.5 - parent: 0 - type: Transform -- uid: 10416 - type: WindowReinforcedDirectional - components: - - pos: -7.5,40.5 - parent: 0 - type: Transform -- uid: 10417 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -7.5,36.5 - parent: 0 - type: Transform -- uid: 10418 - type: Table - components: - - pos: -7.5,40.5 - parent: 0 - type: Transform -- uid: 10419 - type: BoxFlashbang - components: - - pos: -7.601442,40.64435 - parent: 0 - type: Transform -- uid: 10420 - type: ClothingEyesGlassesSecurity - components: - - pos: -3.442388,40.441223 - parent: 0 - type: Transform -- uid: 10421 - type: ClothingEyesGlassesSecurity - components: - - pos: -3.458013,40.5506 - parent: 0 - type: Transform -- uid: 10422 - type: Flash - components: - - pos: -3.661138,40.628723 - parent: 0 - type: Transform -- uid: 10423 - type: Flash - components: - - pos: -3.426763,40.6131 - parent: 0 - type: Transform -- uid: 10424 - type: ClothingHeadHelmetHelmetOld - components: - - pos: -5.6908035,40.63534 - parent: 0 - type: Transform -- uid: 10425 - type: ClothingHeadHelmetHelmetOld - components: - - pos: -5.5033035,40.57284 - parent: 0 - type: Transform -- uid: 10426 - type: ClothingHeadHelmetHelmetOld - components: - - pos: -5.3470535,40.47909 - parent: 0 - type: Transform -- uid: 10427 - type: BoxHandcuff - components: - - pos: -7.3626785,40.557217 - parent: 0 - type: Transform -- uid: 10428 - type: Table - components: - - pos: -4.5,45.5 - parent: 0 - type: Transform -- uid: 10429 - type: Table - components: - - pos: -0.5,42.5 - parent: 0 - type: Transform -- uid: 10430 - type: Table - components: - - pos: -1.5,42.5 - parent: 0 - type: Transform -- uid: 10431 - type: Table - components: - - pos: -2.5,42.5 - parent: 0 - type: Transform -- uid: 10432 - type: VehicleKeySecway - components: - - pos: 4.4444723,36.563564 - parent: 0 - type: Transform -- uid: 10433 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,43.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10434 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,43.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10435 - type: Poweredlight - components: - - pos: -4.5,45.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10436 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 12.5,47.5 - parent: 0 - type: Transform -- uid: 10437 - type: WeaponSubMachineGunWt550 - components: - - pos: 12.542325,46.203403 - parent: 0 - type: Transform -- uid: 10438 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: 12.5892,46.75028 - parent: 0 - type: Transform - - unspawnedCount: 30 - type: BallisticAmmoProvider -- uid: 10439 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: 12.5892,46.53153 - parent: 0 - type: Transform - - unspawnedCount: 30 - type: BallisticAmmoProvider -- uid: 10440 - type: ClothingBackpackDuffelSecurity - components: - - pos: 12.515491,39.758232 - parent: 0 - type: Transform -- uid: 10441 - type: ClothingBackpackDuffelSecurity - components: - - pos: 12.546741,39.523857 - parent: 0 - type: Transform -- uid: 10442 - type: ClothingMaskGasSecurity - components: - - pos: 12.440818,38.680107 - parent: 0 - type: Transform -- uid: 10443 - type: ClothingMaskGasSecurity - components: - - pos: 12.628318,38.398857 - parent: 0 - type: Transform -- uid: 10444 - type: BoxFlashbang - components: - - pos: -4.528169,45.67725 - parent: 0 - type: Transform -- uid: 10445 - type: Flash - components: - - pos: 6.512413,38.517647 - parent: 0 - type: Transform -- uid: 10446 - type: BoxFolderBlue - components: - - pos: 6.512413,37.56452 - parent: 0 - type: Transform -- uid: 10447 - type: BoxFolderBlue - components: - - pos: 6.949913,37.59577 - parent: 0 - type: Transform -- uid: 10448 - type: BoxFolderRed - components: - - pos: 11.434288,37.580147 - parent: 0 - type: Transform -- uid: 10449 - type: CigPackBlack - components: - - pos: 11.932327,37.63461 - parent: 0 - type: Transform -- uid: 10450 - type: FlashlightSeclite - components: - - pos: 8.387413,37.53327 - parent: 0 - type: Transform -- uid: 10451 - type: Pen - components: - - pos: 7.590538,37.62702 - parent: 0 - type: Transform -- uid: 10452 - type: Pen - components: - - pos: 10.465538,37.611397 - parent: 0 - type: Transform -- uid: 10453 - type: Table - components: - - pos: 13.5,42.5 - parent: 0 - type: Transform -- uid: 10454 - type: KitchenMicrowave - components: - - pos: 13.5,42.5 - parent: 0 - type: Transform -- uid: 10455 - type: Rack - components: - - pos: 11.5,34.5 - parent: 0 - type: Transform -- uid: 10456 - type: Rack - components: - - pos: 10.5,34.5 - parent: 0 - type: Transform -- uid: 10457 - type: RadioHandheld - components: - - pos: 11.379476,34.53771 - parent: 0 - type: Transform -- uid: 10458 - type: RadioHandheld - components: - - pos: 11.691976,34.53771 - parent: 0 - type: Transform -- uid: 10459 - type: Handcuffs - components: - - pos: 10.457601,34.63146 - parent: 0 - type: Transform -- uid: 10460 - type: Handcuffs - components: - - pos: 10.535726,34.522083 - parent: 0 - type: Transform -- uid: 10461 - type: Handcuffs - components: - - pos: 10.629476,34.365833 - parent: 0 - type: Transform -- uid: 10462 - type: Table - components: - - pos: 13.5,34.5 - parent: 0 - type: Transform -- uid: 10463 - type: WeaponCapacitorRecharger - components: - - pos: 13.5,34.5 - parent: 0 - type: Transform -- uid: 10464 - type: BriefcaseBrownFilled - components: - - pos: 6.448141,39.49746 - parent: 0 - type: Transform -- uid: 10465 - type: FoodBoxDonut - components: - - pos: 9.549685,39.603043 - parent: 0 - type: Transform -- uid: 10466 - type: VendingMachineDonut - components: - - flags: SessionSpecific - name: Donut - type: MetaData - - pos: 7.5,42.5 - parent: 0 - type: Transform -- uid: 10467 - type: PottedPlant12 - components: - - pos: 11.5,42.5 - parent: 0 - type: Transform -- uid: 10468 - type: WallmountTelescreen - components: - - rot: 3.141592653589793 rad - pos: 17.5,33.5 - parent: 0 - type: Transform -- uid: 10469 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 19.5,31.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Interrogation - type: SurveillanceCamera -- uid: 10470 - type: SignElectricalMed - components: - - pos: -8.5,26.5 - parent: 0 - type: Transform -- uid: 10471 - type: SignSecureMedRed - components: - - pos: -11.5,26.5 - parent: 0 - type: Transform -- uid: 10472 - type: SignSecureSmallRed - components: - - pos: -0.5,29.5 - parent: 0 - type: Transform -- uid: 10473 - type: PottedPlant5 - components: - - pos: 10.5,27.5 - parent: 0 - type: Transform -- uid: 10474 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 11.5,26.5 - parent: 0 - type: Transform -- uid: 10475 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 11.5,27.5 - parent: 0 - type: Transform -- uid: 10476 - type: CigarCase - components: - - pos: 12.530261,26.684832 - parent: 0 - type: Transform -- uid: 10477 - type: Lighter - components: - - pos: 12.202136,26.903582 - parent: 0 - type: Transform -- uid: 10478 - type: SignalButton - components: - - pos: -0.5,41.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10335 - type: SignalTransmitter -- uid: 10479 - type: ShuttersNormalOpen - components: - - pos: -11.5,52.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10482 - type: SignalReceiver -- uid: 10480 - type: ShuttersNormalOpen - components: - - pos: -7.5,52.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10482 - type: SignalReceiver -- uid: 10481 - type: ShuttersNormalOpen - components: - - pos: -3.5,52.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10482 - type: SignalReceiver -- uid: 10482 - type: SignalButton - components: - - pos: -5.5,49.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10481 - - port: Toggle - uid: 10480 - - port: Toggle - uid: 10479 - type: SignalTransmitter -- uid: 10483 - type: BlastDoorOpen - components: - - pos: -12.5,45.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10486 - type: SignalReceiver -- uid: 10484 - type: BlastDoorOpen - components: - - pos: -11.5,45.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10486 - type: SignalReceiver -- uid: 10485 - type: BlastDoorOpen - components: - - pos: -10.5,45.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10486 - type: SignalReceiver -- uid: 10486 - type: SignalButton - components: - - pos: -9.5,44.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10485 - - port: Toggle - uid: 10484 - - port: Toggle - uid: 10483 - type: SignalTransmitter -- uid: 10487 - type: LockerEvidence - components: - - pos: -9.5,39.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10488 - type: LockerEvidence - components: - - pos: -9.5,40.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10489 - type: ExtinguisherCabinetFilled - components: - - pos: -9.5,38.5 - parent: 0 - type: Transform -- uid: 10490 - type: WeaponCapacitorRecharger - components: - - pos: -9.5,37.5 - parent: 0 - type: Transform -- uid: 10491 - type: VendingMachineSec - components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,42.5 - parent: 0 - type: Transform -- uid: 10492 - type: LockerSecurityFilled - components: - - pos: 0.5,39.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10493 - type: Table - components: - - pos: 18.5,41.5 - parent: 0 - type: Transform -- uid: 10494 - type: Table - components: - - pos: 16.5,41.5 - parent: 0 - type: Transform -- uid: 10495 - type: Rack - components: - - pos: 18.5,40.5 - parent: 0 - type: Transform -- uid: 10496 - type: WeaponCapacitorRecharger - components: - - pos: 16.5,41.5 - parent: 0 - type: Transform -- uid: 10497 - type: ClothingEyesGlassesSecurity - components: - - pos: 18.535847,41.55662 - parent: 0 - type: Transform -- uid: 10498 - type: ClothingNeckHeadphones - components: - - pos: 18.567097,41.697247 - parent: 0 - type: Transform -- uid: 10499 - type: WeaponDisabler - components: - - pos: 18.520222,40.65037 - parent: 0 - type: Transform -- uid: 10500 - type: WeaponDisabler - components: - - pos: 18.520222,40.509747 - parent: 0 - type: Transform -- uid: 10501 - type: WeaponDisabler - components: - - pos: -2.513685,42.554882 - parent: 0 - type: Transform -- uid: 10502 - type: WindowReinforcedDirectional - components: - - pos: 16.5,42.5 - parent: 0 - type: Transform -- uid: 10503 - type: WindowReinforcedDirectional - components: - - pos: 18.5,42.5 - parent: 0 - type: Transform -- uid: 10504 - type: SignElectricalMed - components: - - pos: 15.5,48.5 - parent: 0 - type: Transform -- uid: 10505 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 59.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 10506 - type: PhoneInstrument - components: - - pos: 10.504407,46.541214 - parent: 0 - type: Transform -- uid: 10507 - type: Cigar - components: - - pos: 9.54374,46.60626 - parent: 0 - type: Transform -- uid: 10508 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -6.5,46.5 - parent: 0 - type: Transform -- uid: 10509 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -8.5,46.5 - parent: 0 - type: Transform -- uid: 10510 - type: Table - components: - - pos: -7.5,46.5 - parent: 0 - type: Transform -- uid: 10511 - type: WindoorBrigLocked - components: - - pos: -8.5,47.5 - parent: 0 - type: Transform -- uid: 10512 - type: WindoorBrigLocked - components: - - pos: -6.5,47.5 - parent: 0 - type: Transform -- uid: 10513 - type: Flash - components: - - pos: -1.6641116,42.53175 - parent: 0 - type: Transform -- uid: 10514 - type: WindowReinforcedDirectional - components: - - pos: -7.5,47.5 - parent: 0 - type: Transform -- uid: 10515 - type: Lamp - components: - - pos: 8.57861,46.945236 - parent: 0 - type: Transform -- uid: 10516 - type: Flash - components: - - pos: -1.3516116,42.609875 - parent: 0 - type: Transform -- uid: 10517 - type: WeaponCapacitorRecharger - components: - - pos: 11.5,48.5 - parent: 0 - type: Transform -- uid: 10518 - type: SpawnPointSecurityCadet - components: - - pos: 1.5,37.5 - parent: 0 - type: Transform -- uid: 10519 - type: SpawnPointSecurityCadet - components: - - pos: 1.5,39.5 - parent: 0 - type: Transform -- uid: 10520 - type: SpawnPointSecurityOfficer - components: - - pos: -3.5,44.5 - parent: 0 - type: Transform -- uid: 10521 - type: SpawnPointSecurityOfficer - components: - - pos: -2.5,44.5 - parent: 0 - type: Transform -- uid: 10522 - type: SpawnPointSecurityOfficer - components: - - pos: -1.5,44.5 - parent: 0 - type: Transform -- uid: 10523 - type: SpawnPointSecurityOfficer - components: - - pos: -0.5,44.5 - parent: 0 - type: Transform -- uid: 10524 - type: WardrobeSecurityFilled - components: - - pos: 0.5,36.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10525 - type: JetpackSecurityFilled - components: - - pos: -5.530875,40.73829 - parent: 0 - type: Transform -- uid: 10526 - type: ClothingEyesHudSecurity - components: - - pos: -0.67004156,42.722664 - parent: 0 - type: Transform -- uid: 10527 - type: ClothingEyesHudSecurity - components: - - pos: -0.48254156,42.55079 - parent: 0 - type: Transform -- uid: 10528 - type: DoorRemoteSecurity - components: - - pos: -1.9200416,29.619633 - parent: 0 - type: Transform - - tags: - - HeadOfSecurity - - Security - - Armory - - Brig - type: Access -- uid: 10529 - type: ClothingNeckMantleHOS - components: - - pos: 6.568678,46.642025 - parent: 0 - type: Transform -- uid: 10530 - type: PottedPlant22 - components: - - pos: 12.5,44.5 - parent: 0 - type: Transform -- uid: 10531 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: -11.5,57.5 - parent: 0 - type: Transform -- uid: 10532 - type: Rack - components: - - pos: 11.5,17.5 - parent: 0 - type: Transform -- uid: 10533 - type: PottedPlant8 - components: - - pos: 13.5,17.5 - parent: 0 - type: Transform -- uid: 10534 - type: CarpetBlack - components: - - pos: 13.5,18.5 - parent: 0 - type: Transform -- uid: 10535 - type: CarpetBlack - components: - - pos: 13.5,19.5 - parent: 0 - type: Transform -- uid: 10536 - type: CarpetBlack - components: - - pos: 14.5,18.5 - parent: 0 - type: Transform -- uid: 10537 - type: CarpetBlack - components: - - pos: 14.5,19.5 - parent: 0 - type: Transform -- uid: 10538 - type: WaterCooler - components: - - pos: 10.5,21.5 - parent: 0 - type: Transform -- uid: 10539 - type: PottedPlantRandom - components: - - pos: 3.5,30.5 - parent: 0 - type: Transform -- uid: 10540 - type: Chair - components: - - pos: -5.5,25.5 - parent: 0 - type: Transform -- uid: 10541 - type: Chair - components: - - pos: -4.5,25.5 - parent: 0 - type: Transform -- uid: 10542 - type: Chair - components: - - pos: -3.5,25.5 - parent: 0 - type: Transform -- uid: 10543 - type: FirelockGlass - components: - - pos: 1.5,41.5 - parent: 0 - type: Transform -- uid: 10544 - type: CableMV - components: - - pos: -48.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10545 - type: SignSpace - components: - - pos: -43.5,17.5 - parent: 0 - type: Transform -- uid: 10546 - type: AtmosFixFreezerMarker - components: - - pos: 35.5,-14.5 - parent: 0 - type: Transform -- uid: 10547 - type: AtmosFixFreezerMarker - components: - - pos: 35.5,-13.5 - parent: 0 - type: Transform -- uid: 10548 - type: AtmosFixFreezerMarker - components: - - pos: 36.5,-16.5 - parent: 0 - type: Transform -- uid: 10549 - type: AtmosFixFreezerMarker - components: - - pos: 36.5,-15.5 - parent: 0 - type: Transform -- uid: 10550 - type: CableHV - components: - - pos: -28.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10551 - type: CableHV - components: - - pos: -29.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10552 - type: CableHV - components: - - pos: -30.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10553 - type: CableHV - components: - - pos: -30.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10554 - type: CableHV - components: - - pos: -29.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10555 - type: CableHV - components: - - pos: -28.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10556 - type: CableHV - components: - - pos: -27.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10557 - type: CableHV - components: - - pos: -26.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10558 - type: CableHV - components: - - pos: -25.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10559 - type: CableHV - components: - - pos: -25.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10560 - type: CableHV - components: - - pos: -26.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10561 - type: CableHV - components: - - pos: -27.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10562 - type: CableHV - components: - - pos: -28.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10563 - type: CableHV - components: - - pos: -29.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10564 - type: CableHV - components: - - pos: -30.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10565 - type: CableHV - components: - - pos: -34.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10566 - type: CableHV - components: - - pos: -35.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10567 - type: CableHV - components: - - pos: -36.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10568 - type: CableHV - components: - - pos: -37.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10569 - type: CableHV - components: - - pos: -38.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10570 - type: CableHV - components: - - pos: -39.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10571 - type: CableHV - components: - - pos: -39.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10572 - type: CableHV - components: - - pos: -38.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10573 - type: CableHV - components: - - pos: -37.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10574 - type: CableHV - components: - - pos: -36.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10575 - type: CableHV - components: - - pos: -35.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10576 - type: CableHV - components: - - pos: -34.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10577 - type: CableHV - components: - - pos: -39.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10578 - type: CableHV - components: - - pos: -38.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10579 - type: CableHV - components: - - pos: -37.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10580 - type: CableHV - components: - - pos: -36.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10581 - type: CableHV - components: - - pos: -35.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10582 - type: CableHV - components: - - pos: -34.5,60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10583 - type: CableHV - components: - - pos: -39.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10584 - type: CableHV - components: - - pos: -38.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10585 - type: CableHV - components: - - pos: -37.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10586 - type: CableHV - components: - - pos: -36.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10587 - type: CableHV - components: - - pos: -35.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10588 - type: CableHV - components: - - pos: -34.5,62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10589 - type: CableHV - components: - - pos: -39.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10590 - type: CableHV - components: - - pos: -38.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10591 - type: CableHV - components: - - pos: -37.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10592 - type: CableHV - components: - - pos: -36.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10593 - type: CableHV - components: - - pos: -35.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10594 - type: CableHV - components: - - pos: -34.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10595 - type: CableHV - components: - - pos: -39.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10596 - type: CableHV - components: - - pos: -38.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10597 - type: CableHV - components: - - pos: -37.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10598 - type: CableHV - components: - - pos: -36.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10599 - type: CableHV - components: - - pos: -35.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10600 - type: CableHV - components: - - pos: -34.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10601 - type: CableHV - components: - - pos: -32.5,70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10602 - type: CableHV - components: - - pos: -32.5,69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10603 - type: CableHV - components: - - pos: -32.5,68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10604 - type: CableHV - components: - - pos: -32.5,67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10605 - type: CableHV - components: - - pos: -32.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10606 - type: CableHV - components: - - pos: -30.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10607 - type: CableHV - components: - - pos: -29.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10608 - type: CableHV - components: - - pos: -28.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10609 - type: CableHV - components: - - pos: -27.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10610 - type: CableHV - components: - - pos: -26.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10611 - type: CableHV - components: - - pos: -25.5,66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10612 - type: CableHV - components: - - pos: -25.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10613 - type: CableHV - components: - - pos: -26.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10614 - type: CableHV - components: - - pos: -27.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10615 - type: CableHV - components: - - pos: -28.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10616 - type: CableHV - components: - - pos: -29.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10617 - type: CableHV - components: - - pos: -30.5,64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10618 - type: CableHV - components: - - pos: -30.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10619 - type: CableHV - components: - - pos: -31.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10620 - type: CableHV - components: - - pos: -34.5,65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10621 - type: SolarPanel - components: - - pos: -34.5,64.5 - parent: 0 - type: Transform -- uid: 10622 - type: CableHV - components: - - pos: -34.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10623 - type: CableHV - components: - - pos: -33.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10624 - type: CableHV - components: - - pos: -31.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10625 - type: CableHV - components: - - pos: -30.5,61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10626 - type: CableHV - components: - - pos: -30.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10627 - type: CableHV - components: - - pos: -31.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10628 - type: CableHV - components: - - pos: -34.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10629 - type: CableHV - components: - - pos: -33.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10630 - type: CableHV - components: - - pos: -34.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10631 - type: CableHV - components: - - pos: -33.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10632 - type: CableHV - components: - - pos: -30.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10633 - type: CableHV - components: - - pos: -31.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10634 - type: CableHV - components: - - pos: -32.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10635 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 17.5,30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10636 - type: Poweredlight - components: - - pos: 3.5,32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10637 - type: Poweredlight - components: - - pos: 12.5,32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10638 - type: DonkpocketBoxSpawner - components: - - pos: 12.5,37.5 - parent: 0 - type: Transform -- uid: 10639 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 8.5,42.5 - parent: 0 - type: Transform -- uid: 10640 - type: PottedPlantRandom - components: - - pos: 0.5,13.5 - parent: 0 - type: Transform -- uid: 10641 - type: FoodBoxDonut - components: - - pos: 4.498446,12.635635 - parent: 0 - type: Transform -- uid: 10642 - type: Poweredlight - components: - - pos: -5.5,11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10643 - type: Poweredlight - components: - - pos: 1.5,11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10644 - type: WallSolid - components: - - pos: -37.5,35.5 - parent: 0 - type: Transform -- uid: 10645 - type: WallSolid - components: - - pos: -37.5,34.5 - parent: 0 - type: Transform -- uid: 10646 - type: WallSolidRust - components: - - pos: -37.5,33.5 - parent: 0 - type: Transform -- uid: 10647 - type: WallSolidRust - components: - - pos: -34.5,35.5 - parent: 0 - type: Transform -- uid: 10648 - type: WallSolid - components: - - pos: -36.5,32.5 - parent: 0 - type: Transform -- uid: 10649 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -35.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10650 - type: WallSolid - components: - - pos: -34.5,32.5 - parent: 0 - type: Transform -- uid: 10651 - type: WallSolid - components: - - pos: -33.5,32.5 - parent: 0 - type: Transform -- uid: 10652 - type: WallSolid - components: - - pos: -33.5,33.5 - parent: 0 - type: Transform -- uid: 10653 - type: WallSolid - components: - - pos: -33.5,34.5 - parent: 0 - type: Transform -- uid: 10654 - type: WallSolid - components: - - pos: -33.5,35.5 - parent: 0 - type: Transform -- uid: 10655 - type: WallSolidRust - components: - - pos: -37.5,32.5 - parent: 0 - type: Transform -- uid: 10656 - type: WallSolid - components: - - pos: -35.5,35.5 - parent: 0 - type: Transform -- uid: 10657 - type: WallSolid - components: - - pos: -36.5,35.5 - parent: 0 - type: Transform -- uid: 10658 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -35.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10659 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -35.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10660 - type: GasPressurePump - components: - - pos: -35.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10661 - type: GasPipeBend - components: - - pos: -35.5,34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10662 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -36.5,34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 10663 - type: AirCanister - components: - - pos: -36.5,34.5 - parent: 0 - type: Transform -- uid: 10664 - type: Table - components: - - pos: -34.5,34.5 - parent: 0 - type: Transform -- uid: 10665 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -34.5,33.5 - parent: 0 - type: Transform -- uid: 10666 - type: PortableScrubber - components: - - pos: -36.5,33.5 - parent: 0 - type: Transform -- uid: 10667 - type: PoweredSmallLight - components: - - pos: -35.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10668 - type: HolofanProjector - components: - - pos: -34.462692,34.496433 - parent: 0 - type: Transform -- uid: 10669 - type: ClothingMaskGasAtmos - components: - - pos: -34.478317,34.66831 - parent: 0 - type: Transform -- uid: 10670 - type: APCBasic - components: - - pos: -34.5,32.5 - parent: 0 - type: Transform -- uid: 10671 - type: CableMV - components: - - pos: -31.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10672 - type: CableMV - components: - - pos: -31.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10673 - type: CableMV - components: - - pos: -31.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10674 - type: CableMV - components: - - pos: -31.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10675 - type: CableMV - components: - - pos: -31.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10676 - type: CableMV - components: - - pos: -32.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10677 - type: CableMV - components: - - pos: -32.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10678 - type: CableMV - components: - - pos: -32.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10679 - type: CableMV - components: - - pos: -32.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10680 - type: CableMV - components: - - pos: -32.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10681 - type: CableMV - components: - - pos: -32.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10682 - type: CableMV - components: - - pos: -33.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10683 - type: CableMV - components: - - pos: -34.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10684 - type: CableMV - components: - - pos: -34.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10685 - type: CableApcExtension - components: - - pos: -34.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10686 - type: CableApcExtension - components: - - pos: -34.5,33.5 - parent: 0 - type: Transform -- uid: 10687 - type: CableApcExtension - components: - - pos: -35.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10688 - type: CableApcExtension - components: - - pos: -35.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10689 - type: CableApcExtension - components: - - pos: -34.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10690 - type: CableApcExtension - components: - - pos: -35.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10691 - type: CableApcExtension - components: - - pos: -36.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10692 - type: CableApcExtension - components: - - pos: -37.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10693 - type: CableApcExtension - components: - - pos: -38.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10694 - type: CableApcExtension - components: - - pos: -38.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10695 - type: CableApcExtension - components: - - pos: -38.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10696 - type: CableApcExtension - components: - - pos: -38.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10697 - type: CableApcExtension - components: - - pos: -38.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10698 - type: CableApcExtension - components: - - pos: -39.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10699 - type: CableApcExtension - components: - - pos: -40.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10700 - type: CableApcExtension - components: - - pos: -41.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10701 - type: CableApcExtension - components: - - pos: -42.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10702 - type: CableApcExtension - components: - - pos: -43.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10703 - type: CableApcExtension - components: - - pos: -33.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10704 - type: CableApcExtension - components: - - pos: -32.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10705 - type: CableApcExtension - components: - - pos: -32.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10706 - type: CableApcExtension - components: - - pos: -32.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10707 - type: CableApcExtension - components: - - pos: -32.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10708 - type: CableApcExtension - components: - - pos: -32.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10709 - type: CableApcExtension - components: - - pos: -32.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10710 - type: CableApcExtension - components: - - pos: -32.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10711 - type: CableApcExtension - components: - - pos: -34.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10712 - type: CableApcExtension - components: - - pos: -34.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10713 - type: CableApcExtension - components: - - pos: -34.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10714 - type: CableApcExtension - components: - - pos: -35.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10715 - type: CableApcExtension - components: - - pos: -36.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10716 - type: CableApcExtension - components: - - pos: -36.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10717 - type: CableApcExtension - components: - - pos: -36.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10718 - type: CableApcExtension - components: - - pos: -36.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10719 - type: CableApcExtension - components: - - pos: -31.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10720 - type: CableApcExtension - components: - - pos: -31.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10721 - type: CableApcExtension - components: - - pos: -31.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10722 - type: CableApcExtension - components: - - pos: -31.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10723 - type: CableApcExtension - components: - - pos: -31.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10724 - type: CableApcExtension - components: - - pos: -31.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10725 - type: CableApcExtension - components: - - pos: -32.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10726 - type: CableApcExtension - components: - - pos: -33.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10727 - type: CableApcExtension - components: - - pos: -30.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10728 - type: CableApcExtension - components: - - pos: -29.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10729 - type: PoweredSmallLight - components: - - pos: -42.5,36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10730 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10731 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10732 - type: PoweredSmallLight - components: - - pos: -34.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10733 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10734 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,43.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10735 - type: Catwalk - components: - - pos: -43.5,35.5 - parent: 0 - type: Transform -- uid: 10736 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -37.5,38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10737 - type: PowerCellMedium - components: - - pos: -3.4349246,-15.451952 - parent: 0 - type: Transform -- uid: 10738 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10739 - type: Table - components: - - pos: -10.5,19.5 - parent: 0 - type: Transform -- uid: 10740 - type: Table - components: - - pos: -13.5,18.5 - parent: 0 - type: Transform -- uid: 10741 - type: Table - components: - - pos: -13.5,15.5 - parent: 0 - type: Transform -- uid: 10742 - type: Table - components: - - pos: -13.5,16.5 - parent: 0 - type: Transform -- uid: 10743 - type: Table - components: - - pos: -7.5,15.5 - parent: 0 - type: Transform -- uid: 10744 - type: Table - components: - - pos: -7.5,16.5 - parent: 0 - type: Transform -- uid: 10745 - type: Table - components: - - pos: -7.5,18.5 - parent: 0 - type: Transform -- uid: 10746 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10747 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10748 - type: WallmountTelescreen - components: - - rot: 1.5707963267948966 rad - pos: -12.5,12.5 - parent: 0 - type: Transform -- uid: 10749 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -9.5,12.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Upload Airlock - type: SurveillanceCamera -- uid: 10750 - type: SurveillanceCameraCommand - components: - - pos: -12.5,15.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Upload West - type: SurveillanceCamera -- uid: 10751 - type: SurveillanceCameraCommand - components: - - pos: -8.5,15.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Upload East - type: SurveillanceCamera -- uid: 10752 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -12.5,10.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Upload Exterior - type: SurveillanceCamera -- uid: 10753 - type: ExtinguisherCabinetFilled - components: - - pos: -4.5,15.5 - parent: 0 - type: Transform -- uid: 10754 - type: ExtinguisherCabinetFilled - components: - - pos: 15.5,36.5 - parent: 0 - type: Transform -- uid: 10755 - type: ComputerFrame - components: - - pos: -11.5,17.5 - parent: 0 - type: Transform -- uid: 10756 - type: ComputerFrame - components: - - pos: -9.5,17.5 - parent: 0 - type: Transform -- uid: 10757 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -11.5,17.5 - parent: 0 - type: Transform -- uid: 10758 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -9.5,17.5 - parent: 0 - type: Transform -- uid: 10759 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -9.5,17.5 - parent: 0 - type: Transform -- uid: 10760 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -9.5,17.5 - parent: 0 - type: Transform -- uid: 10761 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -11.5,17.5 - parent: 0 - type: Transform -- uid: 10762 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -11.5,17.5 - parent: 0 - type: Transform -- uid: 10763 - type: WindoorCommandLocked - components: - - pos: -11.5,17.5 - parent: 0 - type: Transform -- uid: 10764 - type: WindoorCommandLocked - components: - - pos: -9.5,17.5 - parent: 0 - type: Transform -- uid: 10765 - type: WindowReinforcedDirectional - components: - - pos: -13.5,18.5 - parent: 0 - type: Transform -- uid: 10766 - type: WindowReinforcedDirectional - components: - - pos: -7.5,18.5 - parent: 0 - type: Transform -- uid: 10767 - type: WindoorCommandLocked - components: - - rot: 1.5707963267948966 rad - pos: -13.5,18.5 - parent: 0 - type: Transform -- uid: 10768 - type: WindoorCommandLocked - components: - - rot: -1.5707963267948966 rad - pos: -7.5,18.5 - parent: 0 - type: Transform -- uid: 10769 - type: PottedPlantBioluminscent - components: - - pos: -11.5,19.5 - parent: 0 - type: Transform -- uid: 10770 - type: PottedPlantBioluminscent - components: - - pos: -9.5,19.5 - parent: 0 - type: Transform -- uid: 10771 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10772 - type: PoweredSmallLight - components: - - pos: -12.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10773 - type: PoweredSmallLight - components: - - pos: -8.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10774 - type: SignSecureMed - components: - - pos: -12.5,11.5 - parent: 0 - type: Transform -- uid: 10775 - type: SignSecureMed - components: - - pos: -8.5,11.5 - parent: 0 - type: Transform -- uid: 10776 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10777 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10778 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10779 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10780 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10781 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10782 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10783 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10784 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10785 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10786 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10787 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10788 - type: GasVentPump - components: - - pos: -11.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10789 - type: GasVentScrubber - components: - - pos: -9.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10790 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -58.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10791 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -57.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10792 - type: GasVentScrubber - components: - - pos: -58.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10793 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10794 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10795 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10796 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -54.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10797 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -41.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10798 - type: GasVentScrubber - components: - - pos: -39.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10799 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -21.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10800 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -21.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10801 - type: GasVentScrubber - components: - - pos: -0.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10802 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -4.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10803 - type: PottedPlant21 - components: - - pos: -19.5,3.5 - parent: 0 - type: Transform -- uid: 10804 - type: PottedPlant12 - components: - - pos: -16.5,3.5 - parent: 0 - type: Transform -- uid: 10805 - type: FoodBoxDonut - components: - - pos: 5.5441723,0.6160625 - parent: 0 - type: Transform -- uid: 10806 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 45.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10807 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 45.5,1.5 - parent: 0 - type: Transform -- uid: 10808 - type: WindowReinforcedDirectional - components: - - pos: 45.5,0.5 - parent: 0 - type: Transform -- uid: 10809 - type: Table - components: - - pos: 45.5,-0.5 - parent: 0 - type: Transform -- uid: 10810 - type: Wrench - components: - - pos: 45.515312,-0.44373488 - parent: 0 - type: Transform -- uid: 10811 - type: Crowbar - components: - - pos: 45.530937,-0.5062349 - parent: 0 - type: Transform -- uid: 10812 - type: WallReinforced - components: - - pos: 64.5,-3.5 - parent: 0 - type: Transform -- uid: 10813 - type: WallReinforced - components: - - pos: 64.5,-4.5 - parent: 0 - type: Transform -- uid: 10814 - type: WallReinforced - components: - - pos: 64.5,-5.5 - parent: 0 - type: Transform -- uid: 10815 - type: ReinforcedWindow - components: - - pos: 64.5,-6.5 - parent: 0 - type: Transform -- uid: 10816 - type: ReinforcedWindow - components: - - pos: 64.5,-7.5 - parent: 0 - type: Transform -- uid: 10817 - type: ReinforcedWindow - components: - - pos: 64.5,-8.5 - parent: 0 - type: Transform -- uid: 10818 - type: ReinforcedWindow - components: - - pos: 64.5,-9.5 - parent: 0 - type: Transform -- uid: 10819 - type: WallSolid - components: - - pos: 54.5,-17.5 - parent: 0 - type: Transform -- uid: 10820 - type: ReinforcedWindow - components: - - pos: 64.5,-10.5 - parent: 0 - type: Transform -- uid: 10821 - type: ReinforcedWindow - components: - - pos: 64.5,-11.5 - parent: 0 - type: Transform -- uid: 10822 - type: ReinforcedWindow - components: - - pos: 64.5,-12.5 - parent: 0 - type: Transform -- uid: 10823 - type: ReinforcedWindow - components: - - pos: 64.5,-13.5 - parent: 0 - type: Transform -- uid: 10824 - type: ReinforcedWindow - components: - - pos: 64.5,-14.5 - parent: 0 - type: Transform -- uid: 10825 - type: ReinforcedWindow - components: - - pos: 64.5,-15.5 - parent: 0 - type: Transform -- uid: 10826 - type: ReinforcedWindow - components: - - pos: 64.5,-16.5 - parent: 0 - type: Transform -- uid: 10827 - type: ReinforcedWindow - components: - - pos: 64.5,-17.5 - parent: 0 - type: Transform -- uid: 10828 - type: ReinforcedWindow - components: - - pos: 64.5,-18.5 - parent: 0 - type: Transform -- uid: 10829 - type: ReinforcedWindow - components: - - pos: 64.5,-19.5 - parent: 0 - type: Transform -- uid: 10830 - type: ReinforcedWindow - components: - - pos: 64.5,-20.5 - parent: 0 - type: Transform -- uid: 10831 - type: WallReinforced - components: - - pos: 64.5,-21.5 - parent: 0 - type: Transform -- uid: 10832 - type: WallReinforced - components: - - pos: 64.5,-22.5 - parent: 0 - type: Transform -- uid: 10833 - type: WallReinforced - components: - - pos: 64.5,-23.5 - parent: 0 - type: Transform -- uid: 10834 - type: WallReinforced - components: - - pos: 65.5,-23.5 - parent: 0 - type: Transform -- uid: 10835 - type: WallReinforced - components: - - pos: 66.5,-23.5 - parent: 0 - type: Transform -- uid: 10836 - type: WallReinforced - components: - - pos: 67.5,-23.5 - parent: 0 - type: Transform -- uid: 10837 - type: WallReinforced - components: - - pos: 67.5,-25.5 - parent: 0 - type: Transform -- uid: 10838 - type: WallReinforced - components: - - pos: 66.5,-25.5 - parent: 0 - type: Transform -- uid: 10839 - type: WallReinforced - components: - - pos: 65.5,-25.5 - parent: 0 - type: Transform -- uid: 10840 - type: WallReinforced - components: - - pos: 64.5,-25.5 - parent: 0 - type: Transform -- uid: 10841 - type: WallReinforced - components: - - pos: 63.5,-25.5 - parent: 0 - type: Transform -- uid: 10842 - type: WallReinforced - components: - - pos: 62.5,-25.5 - parent: 0 - type: Transform -- uid: 10843 - type: ReinforcedWindow - components: - - pos: 61.5,-25.5 - parent: 0 - type: Transform -- uid: 10844 - type: ReinforcedWindow - components: - - pos: 60.5,-25.5 - parent: 0 - type: Transform -- uid: 10845 - type: ReinforcedWindow - components: - - pos: 59.5,-25.5 - parent: 0 - type: Transform -- uid: 10846 - type: ReinforcedWindow - components: - - pos: 58.5,-25.5 - parent: 0 - type: Transform -- uid: 10847 - type: ReinforcedWindow - components: - - pos: 57.5,-25.5 - parent: 0 - type: Transform -- uid: 10848 - type: ReinforcedWindow - components: - - pos: 56.5,-25.5 - parent: 0 - type: Transform -- uid: 10849 - type: ReinforcedWindow - components: - - pos: 55.5,-25.5 - parent: 0 - type: Transform -- uid: 10850 - type: ReinforcedWindow - components: - - pos: 54.5,-25.5 - parent: 0 - type: Transform -- uid: 10851 - type: ReinforcedWindow - components: - - pos: 53.5,-25.5 - parent: 0 - type: Transform -- uid: 10852 - type: ReinforcedWindow - components: - - pos: 52.5,-25.5 - parent: 0 - type: Transform -- uid: 10853 - type: ReinforcedWindow - components: - - pos: 51.5,-25.5 - parent: 0 - type: Transform -- uid: 10854 - type: ReinforcedWindow - components: - - pos: 50.5,-25.5 - parent: 0 - type: Transform -- uid: 10855 - type: WallReinforced - components: - - pos: 49.5,-25.5 - parent: 0 - type: Transform -- uid: 10856 - type: WallReinforced - components: - - pos: 48.5,-25.5 - parent: 0 - type: Transform -- uid: 10857 - type: WallReinforced - components: - - pos: 48.5,-24.5 - parent: 0 - type: Transform -- uid: 10858 - type: WallReinforced - components: - - pos: 48.5,-23.5 - parent: 0 - type: Transform -- uid: 10859 - type: WallReinforced - components: - - pos: 48.5,-22.5 - parent: 0 - type: Transform -- uid: 10860 - type: WallReinforced - components: - - pos: 48.5,-21.5 - parent: 0 - type: Transform -- uid: 10861 - type: WallReinforced - components: - - pos: 48.5,-19.5 - parent: 0 - type: Transform -- uid: 10862 - type: WallReinforced - components: - - pos: 48.5,-18.5 - parent: 0 - type: Transform -- uid: 10863 - type: WallReinforced - components: - - pos: 49.5,-18.5 - parent: 0 - type: Transform -- uid: 10864 - type: WallReinforced - components: - - pos: 50.5,-18.5 - parent: 0 - type: Transform -- uid: 10865 - type: WallReinforced - components: - - pos: 50.5,-17.5 - parent: 0 - type: Transform -- uid: 10866 - type: WallReinforced - components: - - pos: 50.5,-16.5 - parent: 0 - type: Transform -- uid: 10867 - type: AtmosFixFreezerMarker - components: - - pos: 37.5,-16.5 - parent: 0 - type: Transform -- uid: 10868 - type: WallReinforced - components: - - pos: 50.5,-15.5 - parent: 0 - type: Transform -- uid: 10869 - type: WallReinforced - components: - - pos: 50.5,-14.5 - parent: 0 - type: Transform -- uid: 10870 - type: WallReinforced - components: - - pos: 50.5,-13.5 - parent: 0 - type: Transform -- uid: 10871 - type: WallReinforced - components: - - pos: 51.5,-11.5 - parent: 0 - type: Transform -- uid: 10872 - type: WallSolid - components: - - pos: 55.5,-17.5 - parent: 0 - type: Transform -- uid: 10873 - type: WallSolid - components: - - pos: 56.5,-17.5 - parent: 0 - type: Transform -- uid: 10874 - type: WallSolid - components: - - pos: 55.5,-16.5 - parent: 0 - type: Transform -- uid: 10875 - type: WallSolid - components: - - pos: 55.5,-15.5 - parent: 0 - type: Transform -- uid: 10876 - type: WallSolid - components: - - pos: 55.5,-14.5 - parent: 0 - type: Transform -- uid: 10877 - type: WallSolid - components: - - pos: 55.5,-13.5 - parent: 0 - type: Transform -- uid: 10878 - type: WallSolid - components: - - pos: 54.5,-13.5 - parent: 0 - type: Transform -- uid: 10879 - type: WallReinforced - components: - - pos: 50.5,-27.5 - parent: 0 - type: Transform -- uid: 10880 - type: WallReinforced - components: - - pos: 50.5,-28.5 - parent: 0 - type: Transform -- uid: 10881 - type: WallReinforced - components: - - pos: 50.5,-29.5 - parent: 0 - type: Transform -- uid: 10882 - type: WallReinforced - components: - - pos: 50.5,-30.5 - parent: 0 - type: Transform -- uid: 10883 - type: WallReinforced - components: - - pos: 50.5,-31.5 - parent: 0 - type: Transform -- uid: 10884 - type: WallReinforced - components: - - pos: 51.5,-31.5 - parent: 0 - type: Transform -- uid: 10885 - type: WallReinforced - components: - - pos: 52.5,-31.5 - parent: 0 - type: Transform -- uid: 10886 - type: WallReinforced - components: - - pos: 53.5,-31.5 - parent: 0 - type: Transform -- uid: 10887 - type: WallReinforced - components: - - pos: 54.5,-31.5 - parent: 0 - type: Transform -- uid: 10888 - type: WallReinforced - components: - - pos: 55.5,-31.5 - parent: 0 - type: Transform -- uid: 10889 - type: WallReinforced - components: - - pos: 56.5,-31.5 - parent: 0 - type: Transform -- uid: 10890 - type: WallReinforced - components: - - pos: 57.5,-31.5 - parent: 0 - type: Transform -- uid: 10891 - type: WallReinforced - components: - - pos: 58.5,-31.5 - parent: 0 - type: Transform -- uid: 10892 - type: WallReinforced - components: - - pos: 59.5,-31.5 - parent: 0 - type: Transform -- uid: 10893 - type: WallReinforced - components: - - pos: 60.5,-31.5 - parent: 0 - type: Transform -- uid: 10894 - type: WallReinforced - components: - - pos: 61.5,-31.5 - parent: 0 - type: Transform -- uid: 10895 - type: WallReinforced - components: - - pos: 62.5,-31.5 - parent: 0 - type: Transform -- uid: 10896 - type: WallReinforced - components: - - pos: 62.5,-30.5 - parent: 0 - type: Transform -- uid: 10897 - type: WallReinforced - components: - - pos: 62.5,-29.5 - parent: 0 - type: Transform -- uid: 10898 - type: WallReinforced - components: - - pos: 62.5,-28.5 - parent: 0 - type: Transform -- uid: 10899 - type: WallReinforced - components: - - pos: 62.5,-27.5 - parent: 0 - type: Transform -- uid: 10900 - type: WallReinforced - components: - - pos: 54.5,-30.5 - parent: 0 - type: Transform -- uid: 10901 - type: WallReinforced - components: - - pos: 54.5,-29.5 - parent: 0 - type: Transform -- uid: 10902 - type: WallReinforced - components: - - pos: 54.5,-28.5 - parent: 0 - type: Transform -- uid: 10903 - type: WallReinforced - components: - - pos: 54.5,-27.5 - parent: 0 - type: Transform -- uid: 10904 - type: WallReinforced - components: - - pos: 58.5,-30.5 - parent: 0 - type: Transform -- uid: 10905 - type: WallReinforced - components: - - pos: 58.5,-29.5 - parent: 0 - type: Transform -- uid: 10906 - type: WallReinforced - components: - - pos: 58.5,-28.5 - parent: 0 - type: Transform -- uid: 10907 - type: WallReinforced - components: - - pos: 58.5,-27.5 - parent: 0 - type: Transform -- uid: 10908 - type: WallReinforced - components: - - pos: 66.5,-21.5 - parent: 0 - type: Transform -- uid: 10909 - type: WallReinforced - components: - - pos: 67.5,-21.5 - parent: 0 - type: Transform -- uid: 10910 - type: WallReinforced - components: - - pos: 68.5,-21.5 - parent: 0 - type: Transform -- uid: 10911 - type: WallReinforced - components: - - pos: 69.5,-21.5 - parent: 0 - type: Transform -- uid: 10912 - type: WallReinforced - components: - - pos: 70.5,-21.5 - parent: 0 - type: Transform -- uid: 10913 - type: WallReinforced - components: - - pos: 70.5,-20.5 - parent: 0 - type: Transform -- uid: 10914 - type: WallReinforced - components: - - pos: 70.5,-19.5 - parent: 0 - type: Transform -- uid: 10915 - type: WallReinforced - components: - - pos: 70.5,-18.5 - parent: 0 - type: Transform -- uid: 10916 - type: WallReinforced - components: - - pos: 70.5,-17.5 - parent: 0 - type: Transform -- uid: 10917 - type: WallReinforced - components: - - pos: 70.5,-16.5 - parent: 0 - type: Transform -- uid: 10918 - type: WallReinforced - components: - - pos: 70.5,-15.5 - parent: 0 - type: Transform -- uid: 10919 - type: WallReinforced - components: - - pos: 70.5,-14.5 - parent: 0 - type: Transform -- uid: 10920 - type: WallReinforced - components: - - pos: 70.5,-13.5 - parent: 0 - type: Transform -- uid: 10921 - type: WallReinforced - components: - - pos: 70.5,-12.5 - parent: 0 - type: Transform -- uid: 10922 - type: WallReinforced - components: - - pos: 70.5,-11.5 - parent: 0 - type: Transform -- uid: 10923 - type: WallReinforced - components: - - pos: 70.5,-10.5 - parent: 0 - type: Transform -- uid: 10924 - type: WallReinforced - components: - - pos: 70.5,-9.5 - parent: 0 - type: Transform -- uid: 10925 - type: WallReinforced - components: - - pos: 70.5,-8.5 - parent: 0 - type: Transform -- uid: 10926 - type: AtmosFixFreezerMarker - components: - - pos: 37.5,-15.5 - parent: 0 - type: Transform -- uid: 10927 - type: WallReinforced - components: - - pos: 70.5,-6.5 - parent: 0 - type: Transform -- uid: 10928 - type: WallReinforced - components: - - pos: 70.5,-5.5 - parent: 0 - type: Transform -- uid: 10929 - type: WallReinforced - components: - - pos: 69.5,-5.5 - parent: 0 - type: Transform -- uid: 10930 - type: AtmosFixFreezerMarker - components: - - pos: 38.5,-16.5 - parent: 0 - type: Transform -- uid: 10931 - type: WallReinforced - components: - - pos: 67.5,-5.5 - parent: 0 - type: Transform -- uid: 10932 - type: WallReinforced - components: - - pos: 66.5,-5.5 - parent: 0 - type: Transform -- uid: 10933 - type: WallReinforced - components: - - pos: 69.5,-9.5 - parent: 0 - type: Transform -- uid: 10934 - type: WallReinforced - components: - - pos: 68.5,-9.5 - parent: 0 - type: Transform -- uid: 10935 - type: WallReinforced - components: - - pos: 67.5,-9.5 - parent: 0 - type: Transform -- uid: 10936 - type: WallReinforced - components: - - pos: 66.5,-9.5 - parent: 0 - type: Transform -- uid: 10937 - type: WallReinforced - components: - - pos: 69.5,-13.5 - parent: 0 - type: Transform -- uid: 10938 - type: WallReinforced - components: - - pos: 68.5,-13.5 - parent: 0 - type: Transform -- uid: 10939 - type: WallReinforced - components: - - pos: 67.5,-13.5 - parent: 0 - type: Transform -- uid: 10940 - type: WallReinforced - components: - - pos: 66.5,-13.5 - parent: 0 - type: Transform -- uid: 10941 - type: WallReinforced - components: - - pos: 69.5,-17.5 - parent: 0 - type: Transform -- uid: 10942 - type: WallReinforced - components: - - pos: 68.5,-17.5 - parent: 0 - type: Transform -- uid: 10943 - type: WallReinforced - components: - - pos: 67.5,-17.5 - parent: 0 - type: Transform -- uid: 10944 - type: WallReinforced - components: - - pos: 66.5,-17.5 - parent: 0 - type: Transform -- uid: 10945 - type: AtmosFixFreezerMarker - components: - - pos: 38.5,-15.5 - parent: 0 - type: Transform -- uid: 10946 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10947 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10948 - type: GasVolumePump - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10949 - type: GasVolumePump - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10950 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10951 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10952 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10953 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10954 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10955 - type: GasPipeTJunction - components: - - pos: 53.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10956 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10957 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10958 - type: GasPipeStraight - components: - - pos: 54.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10959 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10960 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10961 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10962 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10963 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 53.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10964 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10965 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10966 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10967 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10968 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10969 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10970 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10971 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10972 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10973 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10974 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10975 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10976 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10977 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10978 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10979 - type: GasValve - components: - - pos: 50.5,-24.5 - parent: 0 - type: Transform - - open: False - type: GasValve - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10980 - type: GasPipeStraight - components: - - pos: 50.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10981 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 50.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10982 - type: SpawnMobAlexander - components: - - pos: 29.5,-13.5 - parent: 0 - type: Transform -- uid: 10983 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 61.5,-28.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10984 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 57.5,-28.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10985 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 53.5,-28.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10986 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-18.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10987 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-14.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10988 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-10.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10989 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-6.5 - parent: 0 - type: Transform - - color: '#B342F5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10990 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-8.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10991 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-12.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10992 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-16.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10993 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-20.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10994 - type: GasOutletInjector - components: - - rot: 3.141592653589793 rad - pos: 55.5,-28.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10995 - type: GasOutletInjector - components: - - rot: 3.141592653589793 rad - pos: 51.5,-28.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10996 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10997 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10998 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10999 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11000 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 58.5,-12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11001 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11002 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11003 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11004 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11005 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11006 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11007 - type: GasPressurePump - components: - - pos: 57.5,-13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11008 - type: GasPressurePump - components: - - pos: 59.5,-13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11009 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11010 - type: GasPressurePump - components: - - pos: 59.5,-11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11011 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11012 - type: GasPressurePump - components: - - pos: 59.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11013 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-20.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11014 - type: GasFilter - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11015 - type: GasFilter - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-23.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11016 - type: GasPipeStraight - components: - - pos: 51.5,-27.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11017 - type: GasPipeStraight - components: - - pos: 51.5,-26.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11018 - type: GasPipeStraight - components: - - pos: 51.5,-25.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11019 - type: GasPipeStraight - components: - - pos: 51.5,-24.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11020 - type: GasPipeStraight - components: - - pos: 55.5,-27.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11021 - type: GasPipeStraight - components: - - pos: 55.5,-26.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11022 - type: GasPipeStraight - components: - - pos: 55.5,-25.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11023 - type: GasPipeStraight - components: - - pos: 55.5,-24.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11024 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-23.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11025 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-23.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11026 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-23.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11027 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-23.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11028 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-23.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11029 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-23.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11030 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-23.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11031 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-23.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11032 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-23.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11033 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-23.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11034 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 62.5,-22.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11035 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 62.5,-21.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11036 - type: GasFilter - components: - - rot: 3.141592653589793 rad - pos: 62.5,-20.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11037 - type: GasFilter - components: - - rot: 3.141592653589793 rad - pos: 62.5,-16.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11038 - type: GasFilter - components: - - rot: 3.141592653589793 rad - pos: 62.5,-12.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11039 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-20.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11040 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-20.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11041 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-20.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11042 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-20.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11043 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-16.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11044 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-16.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11045 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-16.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11046 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-16.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11047 - type: GasPipeStraight - components: - - pos: 62.5,-19.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11048 - type: GasPipeStraight - components: - - pos: 62.5,-18.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11049 - type: GasPipeStraight - components: - - pos: 62.5,-17.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11050 - type: GasPipeStraight - components: - - pos: 62.5,-15.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11051 - type: GasPipeStraight - components: - - pos: 62.5,-14.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11052 - type: GasPipeStraight - components: - - pos: 62.5,-13.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11053 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-12.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11054 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-12.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11055 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-12.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11056 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-12.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11057 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11058 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-27.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11059 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-26.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11060 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-25.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11061 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,-24.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11062 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 57.5,-27.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11063 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 57.5,-25.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11064 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 57.5,-24.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11065 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 58.5,-25.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11066 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 58.5,-24.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11067 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 61.5,-23.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11068 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 58.5,-23.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11069 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 57.5,-23.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11070 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-26.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11071 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-26.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11072 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-22.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11073 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-21.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11074 - type: GasMixer - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-22.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11075 - type: GasPipeTJunction - components: - - pos: 59.5,-21.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11076 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-22.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11077 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-22.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11078 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-22.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11079 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-22.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11080 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-21.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11081 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-21.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11082 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-21.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11083 - type: GasMixer - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-21.5 - parent: 0 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11084 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-21.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11085 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,-22.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11086 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,-23.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11087 - type: Carpet - components: - - pos: 8.5,47.5 - parent: 0 - type: Transform -- uid: 11088 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,-25.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11089 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,-26.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11090 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,-27.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11091 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-21.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11092 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 57.5,-22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11093 - type: GasPipeStraight - components: - - pos: 61.5,-27.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11094 - type: GasPipeStraight - components: - - pos: 61.5,-26.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11095 - type: GasPipeStraight - components: - - pos: 61.5,-25.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11096 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-24.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11097 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 63.5,-24.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11098 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-24.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11099 - type: GasPipeStraight - components: - - pos: 63.5,-23.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11100 - type: GasPipeStraight - components: - - pos: 63.5,-22.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11101 - type: GasPipeStraight - components: - - pos: 63.5,-21.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11102 - type: GasPipeStraight - components: - - pos: 63.5,-20.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11103 - type: GasPipeStraight - components: - - pos: 63.5,-19.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11104 - type: GasPipeStraight - components: - - pos: 63.5,-18.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11105 - type: GasPipeStraight - components: - - pos: 63.5,-17.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11106 - type: GasPipeStraight - components: - - pos: 63.5,-16.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11107 - type: GasPipeStraight - components: - - pos: 63.5,-15.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11108 - type: GasPipeStraight - components: - - pos: 63.5,-14.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11109 - type: GasPipeStraight - components: - - pos: 63.5,-13.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11110 - type: GasPipeStraight - components: - - pos: 63.5,-12.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11111 - type: GasPipeStraight - components: - - pos: 63.5,-11.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11112 - type: GasPipeStraight - components: - - pos: 63.5,-10.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11113 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-9.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11114 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-9.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11115 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-9.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11116 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-9.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11117 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-9.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11118 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-9.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11119 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-10.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11120 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-13.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11121 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-12.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11122 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-13.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11123 - type: GasPipeFourway - components: - - pos: 52.5,-12.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11124 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11125 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-10.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11126 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-12.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11127 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,-11.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11128 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-12.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11129 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-10.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11130 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-9.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11131 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 63.5,-8.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11132 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 63.5,-7.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11133 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 63.5,-6.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11134 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-5.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11135 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-5.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11136 - type: GasPressurePump - components: - - pos: 62.5,-6.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11137 - type: GasPipeBend - components: - - pos: 62.5,-4.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11138 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11139 - type: GasThermoMachineHeater - components: - - pos: 63.5,-4.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor -- uid: 11140 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11141 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11142 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11143 - type: GasPipeTJunction - components: - - pos: 54.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11144 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11145 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11146 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11147 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11148 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11149 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11150 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11151 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 57.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11152 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11153 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 59.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11154 - type: GasThermoMachineFreezer - components: - - pos: 59.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor -- uid: 11155 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-20.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11156 - type: GasMixerFlipped - components: - - pos: 61.5,-22.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11157 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 53.5,-23.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11158 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-22.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11159 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-22.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11160 - type: GasPipeStraight - components: - - pos: 61.5,-21.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11161 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-18.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11162 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-18.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11163 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-18.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11164 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-18.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11165 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11166 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-14.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11167 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-14.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11168 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-14.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11169 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-14.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11170 - type: GasPressurePump - components: - - pos: 57.5,-11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11171 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-10.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11172 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-10.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11173 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-10.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11174 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-10.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11175 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11176 - type: GasMixer - components: - - rot: 3.141592653589793 rad - pos: 61.5,-18.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11177 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-19.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11178 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-17.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11179 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-16.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11180 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-15.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11181 - type: GasMixer - components: - - rot: 3.141592653589793 rad - pos: 61.5,-14.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11182 - type: GasMixerFlipped - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-10.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11183 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-13.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11184 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-12.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11185 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-11.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11186 - type: GasThermoMachineHeater - components: - - pos: 60.5,-17.5 - parent: 0 - type: Transform -- uid: 11187 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 60.5,-10.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11188 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-10.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11189 - type: GasPipeStraight - components: - - pos: 60.5,-9.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11190 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11191 - type: GasPassiveGate - components: - - pos: 59.5,-24.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11192 - type: GasPipeTJunction - components: - - pos: 61.5,-7.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11193 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-7.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11194 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 62.5,-11.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11195 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 62.5,-10.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11196 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 62.5,-9.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11197 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 62.5,-8.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11198 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 61.5,-8.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11199 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-8.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11200 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-8.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11201 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-8.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11202 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-8.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11203 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-7.5 - parent: 0 - type: Transform - - color: '#27E312FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11204 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-6.5 - parent: 0 - type: Transform - - color: '#B342F5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11205 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-6.5 - parent: 0 - type: Transform - - color: '#B342F5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11206 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-6.5 - parent: 0 - type: Transform - - color: '#B342F5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11207 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-6.5 - parent: 0 - type: Transform - - color: '#B342F5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11208 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-6.5 - parent: 0 - type: Transform - - color: '#B342F5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11209 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-6.5 - parent: 0 - type: Transform - - color: '#B342F5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11210 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-6.5 - parent: 0 - type: Transform - - color: '#B342F5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11211 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-6.5 - parent: 0 - type: Transform - - color: '#B342F5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11212 - type: GasPipeStraight - components: - - pos: 58.5,-10.5 - parent: 0 - type: Transform - - color: '#B342F5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11213 - type: GasPipeStraight - components: - - pos: 58.5,-9.5 - parent: 0 - type: Transform - - color: '#B342F5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11214 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-8.5 - parent: 0 - type: Transform - - color: '#B342F5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11215 - type: GasPipeStraight - components: - - pos: 58.5,-7.5 - parent: 0 - type: Transform - - color: '#B342F5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11216 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-6.5 - parent: 0 - type: Transform - - color: '#B342F5FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11217 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11218 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11219 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11220 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11221 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11222 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11223 - type: GasPressurePump - components: - - pos: 57.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11224 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-21.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11225 - type: GasPipeTJunction - components: - - pos: 52.5,-20.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11226 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 59.5,-20.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11227 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-20.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11228 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-20.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11229 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-20.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11230 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-20.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11231 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-20.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11232 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-20.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11233 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-20.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11234 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-20.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11235 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-20.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11236 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-20.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11237 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-24.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11238 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-24.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11239 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-24.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11240 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-24.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11241 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-24.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11242 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11243 - type: GasPort - components: - - pos: 68.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11244 - type: GasPort - components: - - pos: 70.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11245 - type: GasOutletInjector - components: - - rot: 3.141592653589793 rad - pos: 68.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11246 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 70.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11247 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 68.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11248 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 70.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11249 - type: GasPressurePump - components: - - pos: 68.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11250 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 70.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11251 - type: WindowReinforcedDirectional - components: - - pos: 68.5,-23.5 - parent: 0 - type: Transform -- uid: 11252 - type: WindowReinforcedDirectional - components: - - pos: 69.5,-23.5 - parent: 0 - type: Transform -- uid: 11253 - type: WindowReinforcedDirectional - components: - - pos: 70.5,-23.5 - parent: 0 - type: Transform -- uid: 11254 - type: WindowReinforcedDirectional - components: - - pos: 71.5,-23.5 - parent: 0 - type: Transform -- uid: 11255 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 71.5,-25.5 - parent: 0 - type: Transform -- uid: 11256 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 70.5,-25.5 - parent: 0 - type: Transform -- uid: 11257 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 68.5,-25.5 - parent: 0 - type: Transform -- uid: 11258 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-25.5 - parent: 0 - type: Transform -- uid: 11259 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-26.5 - parent: 0 - type: Transform -- uid: 11260 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-26.5 - parent: 0 - type: Transform -- uid: 11261 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-25.5 - parent: 0 - type: Transform -- uid: 11262 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 68.5,-27.5 - parent: 0 - type: Transform -- uid: 11263 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-27.5 - parent: 0 - type: Transform -- uid: 11264 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-28.5 - parent: 0 - type: Transform -- uid: 11265 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 70.5,-27.5 - parent: 0 - type: Transform -- uid: 11266 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-27.5 - parent: 0 - type: Transform -- uid: 11267 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-28.5 - parent: 0 - type: Transform -- uid: 11268 - type: WallReinforced - components: - - pos: 70.5,-29.5 - parent: 0 - type: Transform -- uid: 11269 - type: WallReinforced - components: - - pos: 68.5,-29.5 - parent: 0 - type: Transform -- uid: 11270 - type: WallReinforced - components: - - pos: 67.5,-29.5 - parent: 0 - type: Transform -- uid: 11271 - type: WallReinforced - components: - - pos: 70.5,-33.5 - parent: 0 - type: Transform -- uid: 11272 - type: Girder - components: - - pos: 71.5,-29.5 - parent: 0 - type: Transform -- uid: 11273 - type: Girder - components: - - pos: 71.5,-30.5 - parent: 0 - type: Transform -- uid: 11274 - type: Girder - components: - - pos: 71.5,-33.5 - parent: 0 - type: Transform -- uid: 11275 - type: Girder - components: - - pos: 71.5,-32.5 - parent: 0 - type: Transform -- uid: 11276 - type: Girder - components: - - pos: 69.5,-33.5 - parent: 0 - type: Transform -- uid: 11277 - type: Girder - components: - - pos: 68.5,-33.5 - parent: 0 - type: Transform -- uid: 11278 - type: Girder - components: - - pos: 67.5,-31.5 - parent: 0 - type: Transform -- uid: 11279 - type: Girder - components: - - pos: 67.5,-30.5 - parent: 0 - type: Transform -- uid: 11280 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 69.5,-29.5 - parent: 0 - type: Transform -- uid: 11281 - type: PartRodMetal - components: - - pos: 69.50123,-31.532166 - parent: 0 - type: Transform -- uid: 11282 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-24.5 - parent: 0 - type: Transform -- uid: 11283 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-24.5 - parent: 0 - type: Transform -- uid: 11284 - type: AirlockExternalGlassAtmosphericsLocked - components: - - pos: 64.5,-24.5 - parent: 0 - type: Transform -- uid: 11285 - type: AirlockExternalGlassAtmosphericsLocked - components: - - pos: 67.5,-24.5 - parent: 0 - type: Transform -- uid: 11286 - type: PoweredSmallLight - components: - - pos: 65.5,-24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11287 - type: SignSpace - components: - - pos: 65.5,-25.5 - parent: 0 - type: Transform -- uid: 11288 - type: ReinforcedPlasmaWindow - components: - - pos: 51.5,-27.5 - parent: 0 - type: Transform -- uid: 11289 - type: ReinforcedPlasmaWindow - components: - - pos: 52.5,-27.5 - parent: 0 - type: Transform -- uid: 11290 - type: ReinforcedPlasmaWindow - components: - - pos: 53.5,-27.5 - parent: 0 - type: Transform -- uid: 11291 - type: ReinforcedPlasmaWindow - components: - - pos: 55.5,-27.5 - parent: 0 - type: Transform -- uid: 11292 - type: ReinforcedPlasmaWindow - components: - - pos: 56.5,-27.5 - parent: 0 - type: Transform -- uid: 11293 - type: ReinforcedPlasmaWindow - components: - - pos: 57.5,-27.5 - parent: 0 - type: Transform -- uid: 11294 - type: ReinforcedPlasmaWindow - components: - - pos: 59.5,-27.5 - parent: 0 - type: Transform -- uid: 11295 - type: ReinforcedPlasmaWindow - components: - - pos: 60.5,-27.5 - parent: 0 - type: Transform -- uid: 11296 - type: ReinforcedPlasmaWindow - components: - - pos: 61.5,-27.5 - parent: 0 - type: Transform -- uid: 11297 - type: ReinforcedPlasmaWindow - components: - - pos: 66.5,-20.5 - parent: 0 - type: Transform -- uid: 11298 - type: ReinforcedPlasmaWindow - components: - - pos: 66.5,-19.5 - parent: 0 - type: Transform -- uid: 11299 - type: ReinforcedPlasmaWindow - components: - - pos: 66.5,-18.5 - parent: 0 - type: Transform -- uid: 11300 - type: ReinforcedPlasmaWindow - components: - - pos: 66.5,-16.5 - parent: 0 - type: Transform -- uid: 11301 - type: ReinforcedPlasmaWindow - components: - - pos: 66.5,-15.5 - parent: 0 - type: Transform -- uid: 11302 - type: ReinforcedPlasmaWindow - components: - - pos: 66.5,-14.5 - parent: 0 - type: Transform -- uid: 11303 - type: ReinforcedPlasmaWindow - components: - - pos: 66.5,-12.5 - parent: 0 - type: Transform -- uid: 11304 - type: ReinforcedPlasmaWindow - components: - - pos: 66.5,-11.5 - parent: 0 - type: Transform -- uid: 11305 - type: ReinforcedPlasmaWindow - components: - - pos: 66.5,-10.5 - parent: 0 - type: Transform -- uid: 11306 - type: ReinforcedPlasmaWindow - components: - - pos: 66.5,-8.5 - parent: 0 - type: Transform -- uid: 11307 - type: ReinforcedPlasmaWindow - components: - - pos: 66.5,-7.5 - parent: 0 - type: Transform -- uid: 11308 - type: ReinforcedPlasmaWindow - components: - - pos: 66.5,-6.5 - parent: 0 - type: Transform -- uid: 11309 - type: Grille - components: - - pos: 66.5,-8.5 - parent: 0 - type: Transform -- uid: 11310 - type: Grille - components: - - pos: 66.5,-7.5 - parent: 0 - type: Transform -- uid: 11311 - type: Grille - components: - - pos: 66.5,-6.5 - parent: 0 - type: Transform -- uid: 11312 - type: Grille - components: - - pos: 66.5,-12.5 - parent: 0 - type: Transform -- uid: 11313 - type: Grille - components: - - pos: 66.5,-11.5 - parent: 0 - type: Transform -- uid: 11314 - type: Grille - components: - - pos: 66.5,-10.5 - parent: 0 - type: Transform -- uid: 11315 - type: Grille - components: - - pos: 66.5,-16.5 - parent: 0 - type: Transform -- uid: 11316 - type: Grille - components: - - pos: 66.5,-15.5 - parent: 0 - type: Transform -- uid: 11317 - type: Grille - components: - - pos: 66.5,-14.5 - parent: 0 - type: Transform -- uid: 11318 - type: Grille - components: - - pos: 66.5,-20.5 - parent: 0 - type: Transform -- uid: 11319 - type: Grille - components: - - pos: 66.5,-19.5 - parent: 0 - type: Transform -- uid: 11320 - type: Grille - components: - - pos: 66.5,-18.5 - parent: 0 - type: Transform -- uid: 11321 - type: Grille - components: - - pos: 61.5,-27.5 - parent: 0 - type: Transform -- uid: 11322 - type: Grille - components: - - pos: 60.5,-27.5 - parent: 0 - type: Transform -- uid: 11323 - type: Grille - components: - - pos: 59.5,-27.5 - parent: 0 - type: Transform -- uid: 11324 - type: Grille - components: - - pos: 57.5,-27.5 - parent: 0 - type: Transform -- uid: 11325 - type: Grille - components: - - pos: 56.5,-27.5 - parent: 0 - type: Transform -- uid: 11326 - type: Grille - components: - - pos: 55.5,-27.5 - parent: 0 - type: Transform -- uid: 11327 - type: Grille - components: - - pos: 53.5,-27.5 - parent: 0 - type: Transform -- uid: 11328 - type: Grille - components: - - pos: 52.5,-27.5 - parent: 0 - type: Transform -- uid: 11329 - type: Grille - components: - - pos: 51.5,-27.5 - parent: 0 - type: Transform -- uid: 11330 - type: Grille - components: - - pos: 50.5,-25.5 - parent: 0 - type: Transform -- uid: 11331 - type: Grille - components: - - pos: 51.5,-25.5 - parent: 0 - type: Transform -- uid: 11332 - type: Grille - components: - - pos: 52.5,-25.5 - parent: 0 - type: Transform -- uid: 11333 - type: Grille - components: - - pos: 53.5,-25.5 - parent: 0 - type: Transform -- uid: 11334 - type: Grille - components: - - pos: 54.5,-25.5 - parent: 0 - type: Transform -- uid: 11335 - type: Grille - components: - - pos: 55.5,-25.5 - parent: 0 - type: Transform -- uid: 11336 - type: Grille - components: - - pos: 56.5,-25.5 - parent: 0 - type: Transform -- uid: 11337 - type: Grille - components: - - pos: 57.5,-25.5 - parent: 0 - type: Transform -- uid: 11338 - type: Grille - components: - - pos: 58.5,-25.5 - parent: 0 - type: Transform -- uid: 11339 - type: Grille - components: - - pos: 59.5,-25.5 - parent: 0 - type: Transform -- uid: 11340 - type: Grille - components: - - pos: 60.5,-25.5 - parent: 0 - type: Transform -- uid: 11341 - type: Grille - components: - - pos: 61.5,-25.5 - parent: 0 - type: Transform -- uid: 11342 - type: Grille - components: - - pos: 64.5,-20.5 - parent: 0 - type: Transform -- uid: 11343 - type: Grille - components: - - pos: 64.5,-19.5 - parent: 0 - type: Transform -- uid: 11344 - type: Grille - components: - - pos: 64.5,-18.5 - parent: 0 - type: Transform -- uid: 11345 - type: Grille - components: - - pos: 64.5,-17.5 - parent: 0 - type: Transform -- uid: 11346 - type: Grille - components: - - pos: 64.5,-16.5 - parent: 0 - type: Transform -- uid: 11347 - type: Grille - components: - - pos: 64.5,-15.5 - parent: 0 - type: Transform -- uid: 11348 - type: Grille - components: - - pos: 64.5,-14.5 - parent: 0 - type: Transform -- uid: 11349 - type: Grille - components: - - pos: 64.5,-13.5 - parent: 0 - type: Transform -- uid: 11350 - type: Grille - components: - - pos: 64.5,-12.5 - parent: 0 - type: Transform -- uid: 11351 - type: Grille - components: - - pos: 64.5,-11.5 - parent: 0 - type: Transform -- uid: 11352 - type: Grille - components: - - pos: 64.5,-10.5 - parent: 0 - type: Transform -- uid: 11353 - type: Grille - components: - - pos: 64.5,-9.5 - parent: 0 - type: Transform -- uid: 11354 - type: Grille - components: - - pos: 64.5,-8.5 - parent: 0 - type: Transform -- uid: 11355 - type: Grille - components: - - pos: 64.5,-7.5 - parent: 0 - type: Transform -- uid: 11356 - type: Grille - components: - - pos: 64.5,-6.5 - parent: 0 - type: Transform -- uid: 11357 - type: Grille - components: - - pos: 53.5,-9.5 - parent: 0 - type: Transform -- uid: 11358 - type: Grille - components: - - pos: 55.5,-9.5 - parent: 0 - type: Transform -- uid: 11359 - type: Grille - components: - - pos: 56.5,-9.5 - parent: 0 - type: Transform -- uid: 11360 - type: GasPressurePump - components: - - pos: 58.5,-11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11361 - type: Grille - components: - - pos: 56.5,-6.5 - parent: 0 - type: Transform -- uid: 11362 - type: Grille - components: - - pos: 56.5,-5.5 - parent: 0 - type: Transform -- uid: 11363 - type: AirlockAtmosphericsGlassLocked - components: - - pos: 56.5,-7.5 - parent: 0 - type: Transform -- uid: 11364 - type: GasThermoMachineFreezer - components: - - pos: 54.5,-18.5 - parent: 0 - type: Transform -- uid: 11365 - type: GasThermoMachineFreezer - components: - - pos: 55.5,-18.5 - parent: 0 - type: Transform -- uid: 11366 - type: GasThermoMachineHeater - components: - - pos: 56.5,-18.5 - parent: 0 - type: Transform -- uid: 11367 - type: ExtinguisherCabinetFilled - components: - - pos: 54.5,-13.5 - parent: 0 - type: Transform -- uid: 11368 - type: ExtinguisherCabinetFilled - components: - - pos: 56.5,-13.5 - parent: 0 - type: Transform -- uid: 11369 - type: SignSmoking - components: - - pos: 55.5,-15.5 - parent: 0 - type: Transform -- uid: 11370 - type: LockerAtmosphericsFilled - components: - - pos: 54.5,-16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11371 - type: LockerAtmosphericsFilled - components: - - pos: 54.5,-15.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11372 - type: LockerAtmosphericsFilled - components: - - pos: 54.5,-14.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11373 - type: AirlockMaintAtmoLocked - components: - - pos: 48.5,-20.5 - parent: 0 - type: Transform -- uid: 11374 - type: WallReinforced - components: - - pos: 51.5,-17.5 - parent: 0 - type: Transform -- uid: 11375 - type: VendingMachineAtmosDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 51.5,-16.5 - parent: 0 - type: Transform -- uid: 11376 - type: PlaqueAtmos - components: - - pos: 49.5,-4.5 - parent: 0 - type: Transform -- uid: 11377 - type: SignAtmos - components: - - pos: 44.5,-4.5 - parent: 0 - type: Transform -- uid: 11378 - type: ReinforcedWindow - components: - - pos: 48.5,-26.5 - parent: 0 - type: Transform -- uid: 11379 - type: ReinforcedWindow - components: - - pos: 43.5,-29.5 - parent: 0 - type: Transform -- uid: 11380 - type: WallReinforced - components: - - pos: 44.5,-29.5 - parent: 0 - type: Transform -- uid: 11381 - type: WallReinforced - components: - - pos: 45.5,-29.5 - parent: 0 - type: Transform -- uid: 11382 - type: WallReinforced - components: - - pos: 47.5,-29.5 - parent: 0 - type: Transform -- uid: 11383 - type: WallReinforced - components: - - pos: 48.5,-29.5 - parent: 0 - type: Transform -- uid: 11384 - type: WallReinforced - components: - - pos: 48.5,-30.5 - parent: 0 - type: Transform -- uid: 11385 - type: WallReinforced - components: - - pos: 48.5,-31.5 - parent: 0 - type: Transform -- uid: 11386 - type: WallReinforced - components: - - pos: 47.5,-31.5 - parent: 0 - type: Transform -- uid: 11387 - type: WallReinforced - components: - - pos: 45.5,-31.5 - parent: 0 - type: Transform -- uid: 11388 - type: WallReinforced - components: - - pos: 44.5,-31.5 - parent: 0 - type: Transform -- uid: 11389 - type: WallReinforced - components: - - pos: 44.5,-30.5 - parent: 0 - type: Transform -- uid: 11390 - type: WallReinforced - components: - - pos: 44.5,-32.5 - parent: 0 - type: Transform -- uid: 11391 - type: WallReinforced - components: - - pos: 44.5,-33.5 - parent: 0 - type: Transform -- uid: 11392 - type: WallReinforced - components: - - pos: 45.5,-33.5 - parent: 0 - type: Transform -- uid: 11393 - type: WallReinforced - components: - - pos: 45.5,-34.5 - parent: 0 - type: Transform -- uid: 11394 - type: WallReinforced - components: - - pos: 45.5,-35.5 - parent: 0 - type: Transform -- uid: 11395 - type: WallReinforced - components: - - pos: 47.5,-35.5 - parent: 0 - type: Transform -- uid: 11396 - type: WallReinforced - components: - - pos: 47.5,-34.5 - parent: 0 - type: Transform -- uid: 11397 - type: WallReinforced - components: - - pos: 47.5,-33.5 - parent: 0 - type: Transform -- uid: 11398 - type: WallReinforced - components: - - pos: 48.5,-33.5 - parent: 0 - type: Transform -- uid: 11399 - type: WallReinforced - components: - - pos: 48.5,-28.5 - parent: 0 - type: Transform -- uid: 11400 - type: WallReinforced - components: - - pos: 48.5,-27.5 - parent: 0 - type: Transform -- uid: 11401 - type: WallSolid - components: - - pos: 47.5,-22.5 - parent: 0 - type: Transform -- uid: 11402 - type: WallSolid - components: - - pos: 46.5,-22.5 - parent: 0 - type: Transform -- uid: 11403 - type: WallSolid - components: - - pos: 44.5,-22.5 - parent: 0 - type: Transform -- uid: 11404 - type: WallSolid - components: - - pos: 44.5,-23.5 - parent: 0 - type: Transform -- uid: 11405 - type: WallSolidRust - components: - - pos: 43.5,-23.5 - parent: 0 - type: Transform -- uid: 11406 - type: WallSolid - components: - - pos: 42.5,-23.5 - parent: 0 - type: Transform -- uid: 11407 - type: WallSolid - components: - - pos: 41.5,-23.5 - parent: 0 - type: Transform -- uid: 11408 - type: WallSolidRust - components: - - pos: 41.5,-24.5 - parent: 0 - type: Transform -- uid: 11409 - type: WallSolidRust - components: - - pos: 41.5,-25.5 - parent: 0 - type: Transform -- uid: 11410 - type: WallSolid - components: - - pos: 41.5,-26.5 - parent: 0 - type: Transform -- uid: 11411 - type: WallSolid - components: - - pos: 41.5,-27.5 - parent: 0 - type: Transform -- uid: 11412 - type: WallSolidRust - components: - - pos: 41.5,-28.5 - parent: 0 - type: Transform -- uid: 11413 - type: WallSolid - components: - - pos: 41.5,-29.5 - parent: 0 - type: Transform -- uid: 11414 - type: WallReinforced - components: - - pos: 42.5,-29.5 - parent: 0 - type: Transform -- uid: 11415 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-20.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11416 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 45.5,-24.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11417 - type: GasPipeBend - components: - - pos: 47.5,-24.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11418 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-24.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11419 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-23.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11420 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-22.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11421 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-21.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11422 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-20.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11423 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-20.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11424 - type: GasPipeStraight - components: - - pos: 47.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11425 - type: GasPipeStraight - components: - - pos: 47.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11426 - type: GasPipeStraight - components: - - pos: 47.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11427 - type: GasPipeStraight - components: - - pos: 47.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11428 - type: GasPressurePump - components: - - pos: 47.5,-25.5 - parent: 0 - type: Transform - - color: '#000000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11429 - type: GasPipeStraight - components: - - pos: 47.5,-31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11430 - type: GasPressurePump - components: - - pos: 47.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11431 - type: GasOutletInjector - components: - - rot: 3.141592653589793 rad - pos: 47.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11432 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 45.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11433 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11434 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11435 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 45.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11436 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11437 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11438 - type: GasPort - components: - - pos: 44.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11439 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11440 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 44.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11441 - type: GasPipeBend - components: - - pos: 45.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11442 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11443 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 43.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11444 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11445 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11446 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11447 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11448 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11449 - type: GasPressurePump - components: - - pos: 43.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11450 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11451 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11452 - type: GasOutletInjector - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11453 - type: DisposalUnit - components: - - pos: 46.5,-23.5 - parent: 0 - type: Transform -- uid: 11454 - type: DisposalTrunk - components: - - pos: 46.5,-23.5 - parent: 0 - type: Transform -- uid: 11455 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-24.5 - parent: 0 - type: Transform -- uid: 11456 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-24.5 - parent: 0 - type: Transform -- uid: 11457 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 43.5,-35.5 - parent: 0 - type: Transform -- uid: 11458 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-35.5 - parent: 0 - type: Transform -- uid: 11459 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,-34.5 - parent: 0 - type: Transform -- uid: 11460 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,-33.5 - parent: 0 - type: Transform -- uid: 11461 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,-32.5 - parent: 0 - type: Transform -- uid: 11462 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,-31.5 - parent: 0 - type: Transform -- uid: 11463 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,-30.5 - parent: 0 - type: Transform -- uid: 11464 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,-29.5 - parent: 0 - type: Transform -- uid: 11465 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,-28.5 - parent: 0 - type: Transform -- uid: 11466 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,-27.5 - parent: 0 - type: Transform -- uid: 11467 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,-26.5 - parent: 0 - type: Transform -- uid: 11468 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 43.5,-25.5 - parent: 0 - type: Transform -- uid: 11469 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-24.5 - parent: 0 - type: Transform -- uid: 11470 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-24.5 - parent: 0 - type: Transform -- uid: 11471 - type: Catwalk - components: - - pos: 44.5,-35.5 - parent: 0 - type: Transform -- uid: 11472 - type: Catwalk - components: - - pos: 44.5,-36.5 - parent: 0 - type: Transform -- uid: 11473 - type: Catwalk - components: - - pos: 44.5,-37.5 - parent: 0 - type: Transform -- uid: 11474 - type: Catwalk - components: - - pos: 45.5,-37.5 - parent: 0 - type: Transform -- uid: 11475 - type: Catwalk - components: - - pos: 46.5,-37.5 - parent: 0 - type: Transform -- uid: 11476 - type: Catwalk - components: - - pos: 47.5,-37.5 - parent: 0 - type: Transform -- uid: 11477 - type: Catwalk - components: - - pos: 48.5,-37.5 - parent: 0 - type: Transform -- uid: 11478 - type: Catwalk - components: - - pos: 48.5,-36.5 - parent: 0 - type: Transform -- uid: 11479 - type: Catwalk - components: - - pos: 48.5,-35.5 - parent: 0 - type: Transform -- uid: 11480 - type: Catwalk - components: - - pos: 48.5,-34.5 - parent: 0 - type: Transform -- uid: 11481 - type: SignFire - components: - - pos: 48.5,-30.5 - parent: 0 - type: Transform -- uid: 11482 - type: SignFire - components: - - pos: 44.5,-30.5 - parent: 0 - type: Transform -- uid: 11483 - type: SignFire - components: - - pos: 48.5,-25.5 - parent: 0 - type: Transform -- uid: 11484 - type: SignFire - components: - - pos: 47.5,-35.5 - parent: 0 - type: Transform -- uid: 11485 - type: SignFire - components: - - pos: 45.5,-35.5 - parent: 0 - type: Transform -- uid: 11486 - type: BlastDoor - components: - - pos: 46.5,-35.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12021 - type: SignalReceiver -- uid: 11487 - type: BlastDoor - components: - - pos: 48.5,-32.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12021 - type: SignalReceiver -- uid: 11488 - type: AirlockGlass - components: - - pos: 46.5,-31.5 - parent: 0 - type: Transform -- uid: 11489 - type: AirlockGlass - components: - - pos: 46.5,-29.5 - parent: 0 - type: Transform -- uid: 11490 - type: SignSpace - components: - - pos: 47.5,-33.5 - parent: 0 - type: Transform -- uid: 11491 - type: Wrench - components: - - pos: 48.484764,-34.476368 - parent: 0 - type: Transform -- uid: 11492 - type: WeldingFuelTankFull - components: - - pos: 43.5,-22.5 - parent: 0 - type: Transform -- uid: 11493 - type: WaterTankFull - components: - - pos: 42.5,-22.5 - parent: 0 - type: Transform -- uid: 11494 - type: AirlockMaintAtmoLocked - components: - - name: Thruster - type: MetaData - - pos: 45.5,-22.5 - parent: 0 - type: Transform -- uid: 11495 - type: SignAtmosMinsky - components: - - pos: 44.5,-22.5 - parent: 0 - type: Transform -- uid: 11496 - type: GasThermoMachineFreezer - components: - - pos: 42.5,-24.5 - parent: 0 - type: Transform -- uid: 11497 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-24.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11498 - type: SMESBasic - components: - - pos: 47.5,-23.5 - parent: 0 - type: Transform -- uid: 11499 - type: WeldingFuelTankFull - components: - - pos: 42.5,-27.5 - parent: 0 - type: Transform -- uid: 11500 - type: WaterTankFull - components: - - pos: 42.5,-28.5 - parent: 0 - type: Transform -- uid: 11501 - type: Grille - components: - - pos: 43.5,-29.5 - parent: 0 - type: Transform -- uid: 11502 - type: Grille - components: - - pos: 48.5,-26.5 - parent: 0 - type: Transform -- uid: 11503 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11504 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11505 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 42.5,-28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11506 - type: Poweredlight - components: - - pos: 44.5,-24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11507 - type: ComputerAlert - components: - - rot: 3.141592653589793 rad - pos: 47.5,-28.5 - parent: 0 - type: Transform -- uid: 11508 - type: Stool - components: - - pos: 47.5,-27.5 - parent: 0 - type: Transform -- uid: 11509 - type: WindowReinforcedDirectional - components: - - pos: 42.5,-26.5 - parent: 0 - type: Transform -- uid: 11510 - type: LockerAtmospherics - components: - - pos: 42.5,-26.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11511 - type: ClosetRadiationSuitFilled - components: - - pos: 42.5,-25.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11512 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-23.5 - parent: 0 - type: Transform -- uid: 11513 - type: APCBasic - components: - - pos: 44.5,-23.5 - parent: 0 - type: Transform -- uid: 11514 - type: SinkStemlessWater - components: - - pos: 43.5,-24.5 - parent: 0 - type: Transform -- uid: 11515 - type: StorageCanister - components: - - pos: 45.5,-26.5 - parent: 0 - type: Transform -- uid: 11516 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-24.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Thruster - type: SurveillanceCamera -- uid: 11517 - type: FirelockGlass - components: - - pos: 56.5,-12.5 - parent: 0 - type: Transform -- uid: 11518 - type: FirelockGlass - components: - - pos: 56.5,-11.5 - parent: 0 - type: Transform -- uid: 11519 - type: FirelockGlass - components: - - pos: 56.5,-10.5 - parent: 0 - type: Transform -- uid: 11520 - type: PosterContrabandAtmosiaDeclarationIndependence - components: - - pos: 55.5,-17.5 - parent: 0 - type: Transform -- uid: 11521 - type: DisposalUnit - components: - - pos: 51.5,-18.5 - parent: 0 - type: Transform -- uid: 11522 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-18.5 - parent: 0 - type: Transform -- uid: 11523 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-18.5 - parent: 0 - type: Transform -- uid: 11524 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-18.5 - parent: 0 - type: Transform -- uid: 11525 - type: DisposalPipe - components: - - pos: 53.5,-17.5 - parent: 0 - type: Transform -- uid: 11526 - type: DisposalPipe - components: - - pos: 53.5,-16.5 - parent: 0 - type: Transform -- uid: 11527 - type: DisposalPipe - components: - - pos: 53.5,-15.5 - parent: 0 - type: Transform -- uid: 11528 - type: DisposalPipe - components: - - pos: 53.5,-14.5 - parent: 0 - type: Transform -- uid: 11529 - type: DisposalPipe - components: - - pos: 53.5,-13.5 - parent: 0 - type: Transform -- uid: 11530 - type: DisposalPipe - components: - - pos: 53.5,-12.5 - parent: 0 - type: Transform -- uid: 11531 - type: DisposalPipe - components: - - pos: 53.5,-11.5 - parent: 0 - type: Transform -- uid: 11532 - type: DisposalPipe - components: - - pos: 53.5,-10.5 - parent: 0 - type: Transform -- uid: 11533 - type: DisposalPipe - components: - - pos: 53.5,-9.5 - parent: 0 - type: Transform -- uid: 11534 - type: DisposalPipe - components: - - pos: 53.5,-8.5 - parent: 0 - type: Transform -- uid: 11535 - type: DisposalPipe - components: - - pos: 53.5,-7.5 - parent: 0 - type: Transform -- uid: 11536 - type: DisposalBend - components: - - pos: 53.5,-6.5 - parent: 0 - type: Transform -- uid: 11537 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 51.5,-6.5 - parent: 0 - type: Transform -- uid: 11538 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-6.5 - parent: 0 - type: Transform -- uid: 11539 - type: DisposalPipe - components: - - pos: 51.5,-7.5 - parent: 0 - type: Transform -- uid: 11540 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-8.5 - parent: 0 - type: Transform -- uid: 11541 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-8.5 - parent: 0 - type: Transform -- uid: 11542 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 51.5,-5.5 - parent: 0 - type: Transform -- uid: 11543 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 51.5,-4.5 - parent: 0 - type: Transform -- uid: 11544 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 51.5,-3.5 - parent: 0 - type: Transform -- uid: 11545 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 51.5,-2.5 - parent: 0 - type: Transform -- uid: 11546 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 51.5,-1.5 - parent: 0 - type: Transform -- uid: 11547 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 51.5,-0.5 - parent: 0 - type: Transform -- uid: 11548 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 51.5,0.5 - parent: 0 - type: Transform -- uid: 11549 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 51.5,1.5 - parent: 0 - type: Transform -- uid: 11550 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 51.5,2.5 - parent: 0 - type: Transform -- uid: 11551 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 51.5,3.5 - parent: 0 - type: Transform -- uid: 11552 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 50.5,3.5 - parent: 0 - type: Transform -- uid: 11553 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 49.5,3.5 - parent: 0 - type: Transform -- uid: 11554 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 48.5,3.5 - parent: 0 - type: Transform -- uid: 11555 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 47.5,3.5 - parent: 0 - type: Transform -- uid: 11556 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 46.5,3.5 - parent: 0 - type: Transform -- uid: 11557 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 52.5,3.5 - parent: 0 - type: Transform -- uid: 11558 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 53.5,3.5 - parent: 0 - type: Transform -- uid: 11559 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 54.5,3.5 - parent: 0 - type: Transform -- uid: 11560 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 55.5,2.5 - parent: 0 - type: Transform -- uid: 11561 - type: DisposalBend - components: - - pos: 55.5,3.5 - parent: 0 - type: Transform -- uid: 11562 - type: PortableScrubber - components: - - pos: 51.5,-15.5 - parent: 0 - type: Transform -- uid: 11563 - type: PortableScrubber - components: - - pos: 51.5,-14.5 - parent: 0 - type: Transform -- uid: 11564 - type: FirelockGlass - components: - - pos: 53.5,-17.5 - parent: 0 - type: Transform -- uid: 11565 - type: FirelockGlass - components: - - pos: 52.5,-17.5 - parent: 0 - type: Transform -- uid: 11566 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 52.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11567 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 56.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11568 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 60.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11569 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11570 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11571 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11572 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11573 - type: NitrogenCanister - components: - - pos: 52.5,-30.5 - parent: 0 - type: Transform -- uid: 11574 - type: GasMinerNitrogen - components: - - pos: 52.5,-29.5 - parent: 0 - type: Transform -- uid: 11575 - type: AtmosFixNitrogenMarker - components: - - pos: 51.5,-30.5 - parent: 0 - type: Transform -- uid: 11576 - type: AtmosFixNitrogenMarker - components: - - pos: 51.5,-29.5 - parent: 0 - type: Transform -- uid: 11577 - type: AtmosFixNitrogenMarker - components: - - pos: 51.5,-28.5 - parent: 0 - type: Transform -- uid: 11578 - type: AtmosFixNitrogenMarker - components: - - pos: 52.5,-30.5 - parent: 0 - type: Transform -- uid: 11579 - type: AtmosFixNitrogenMarker - components: - - pos: 52.5,-29.5 - parent: 0 - type: Transform -- uid: 11580 - type: AtmosFixNitrogenMarker - components: - - pos: 52.5,-28.5 - parent: 0 - type: Transform -- uid: 11581 - type: AtmosFixNitrogenMarker - components: - - pos: 53.5,-30.5 - parent: 0 - type: Transform -- uid: 11582 - type: AtmosFixNitrogenMarker - components: - - pos: 53.5,-29.5 - parent: 0 - type: Transform -- uid: 11583 - type: AtmosFixNitrogenMarker - components: - - pos: 53.5,-28.5 - parent: 0 - type: Transform -- uid: 11584 - type: OxygenCanister - components: - - pos: 56.5,-30.5 - parent: 0 - type: Transform -- uid: 11585 - type: GasMinerOxygen - components: - - pos: 56.5,-29.5 - parent: 0 - type: Transform -- uid: 11586 - type: AtmosFixOxygenMarker - components: - - pos: 55.5,-28.5 - parent: 0 - type: Transform -- uid: 11587 - type: AtmosFixOxygenMarker - components: - - pos: 55.5,-29.5 - parent: 0 - type: Transform -- uid: 11588 - type: AtmosFixOxygenMarker - components: - - pos: 55.5,-30.5 - parent: 0 - type: Transform -- uid: 11589 - type: AtmosFixOxygenMarker - components: - - pos: 56.5,-28.5 - parent: 0 - type: Transform -- uid: 11590 - type: AtmosFixOxygenMarker - components: - - pos: 56.5,-29.5 - parent: 0 - type: Transform -- uid: 11591 - type: AtmosFixOxygenMarker - components: - - pos: 56.5,-30.5 - parent: 0 - type: Transform -- uid: 11592 - type: AtmosFixOxygenMarker - components: - - pos: 57.5,-28.5 - parent: 0 - type: Transform -- uid: 11593 - type: AtmosFixOxygenMarker - components: - - pos: 57.5,-29.5 - parent: 0 - type: Transform -- uid: 11594 - type: AtmosFixOxygenMarker - components: - - pos: 57.5,-30.5 - parent: 0 - type: Transform -- uid: 11595 - type: AirCanister - components: - - pos: 60.5,-30.5 - parent: 0 - type: Transform -- uid: 11596 - type: GasMinerCarbonDioxide - components: - - pos: 68.5,-19.5 - parent: 0 - type: Transform -- uid: 11597 - type: CarbonDioxideCanister - components: - - pos: 69.5,-19.5 - parent: 0 - type: Transform -- uid: 11598 - type: PlasmaCanister - components: - - pos: 69.5,-15.5 - parent: 0 - type: Transform -- uid: 11599 - type: GasMinerPlasma - components: - - pos: 68.5,-15.5 - parent: 0 - type: Transform -- uid: 11600 - type: AtmosFixPlasmaMarker - components: - - pos: 67.5,-16.5 - parent: 0 - type: Transform -- uid: 11601 - type: AtmosFixPlasmaMarker - components: - - pos: 67.5,-15.5 - parent: 0 - type: Transform -- uid: 11602 - type: AtmosFixPlasmaMarker - components: - - pos: 67.5,-14.5 - parent: 0 - type: Transform -- uid: 11603 - type: AtmosFixPlasmaMarker - components: - - pos: 68.5,-16.5 - parent: 0 - type: Transform -- uid: 11604 - type: AtmosFixPlasmaMarker - components: - - pos: 68.5,-15.5 - parent: 0 - type: Transform -- uid: 11605 - type: AtmosFixPlasmaMarker - components: - - pos: 68.5,-14.5 - parent: 0 - type: Transform -- uid: 11606 - type: AtmosFixPlasmaMarker - components: - - pos: 69.5,-16.5 - parent: 0 - type: Transform -- uid: 11607 - type: AtmosFixPlasmaMarker - components: - - pos: 69.5,-15.5 - parent: 0 - type: Transform -- uid: 11608 - type: AtmosFixPlasmaMarker - components: - - pos: 69.5,-14.5 - parent: 0 - type: Transform -- uid: 11609 - type: AtmosFixBlockerMarker - components: - - pos: 67.5,-20.5 - parent: 0 - type: Transform -- uid: 11610 - type: AtmosFixBlockerMarker - components: - - pos: 67.5,-19.5 - parent: 0 - type: Transform -- uid: 11611 - type: AtmosFixBlockerMarker - components: - - pos: 67.5,-18.5 - parent: 0 - type: Transform -- uid: 11612 - type: AtmosFixBlockerMarker - components: - - pos: 68.5,-20.5 - parent: 0 - type: Transform -- uid: 11613 - type: AtmosFixBlockerMarker - components: - - pos: 68.5,-19.5 - parent: 0 - type: Transform -- uid: 11614 - type: AtmosFixBlockerMarker - components: - - pos: 68.5,-18.5 - parent: 0 - type: Transform -- uid: 11615 - type: AtmosFixBlockerMarker - components: - - pos: 69.5,-20.5 - parent: 0 - type: Transform -- uid: 11616 - type: AtmosFixBlockerMarker - components: - - pos: 69.5,-19.5 - parent: 0 - type: Transform -- uid: 11617 - type: AtmosFixBlockerMarker - components: - - pos: 69.5,-18.5 - parent: 0 - type: Transform -- uid: 11618 - type: AtmosFixBlockerMarker - components: - - pos: 67.5,-8.5 - parent: 0 - type: Transform -- uid: 11619 - type: AtmosFixBlockerMarker - components: - - pos: 67.5,-7.5 - parent: 0 - type: Transform -- uid: 11620 - type: AtmosFixBlockerMarker - components: - - pos: 68.5,-8.5 - parent: 0 - type: Transform -- uid: 11621 - type: AtmosFixBlockerMarker - components: - - pos: 68.5,-7.5 - parent: 0 - type: Transform -- uid: 11622 - type: AtmosFixBlockerMarker - components: - - pos: 69.5,-8.5 - parent: 0 - type: Transform -- uid: 11623 - type: AtmosFixBlockerMarker - components: - - pos: 69.5,-7.5 - parent: 0 - type: Transform -- uid: 11624 - type: AtmosFixBlockerMarker - components: - - pos: 69.5,-6.5 - parent: 0 - type: Transform -- uid: 11625 - type: AtmosFixBlockerMarker - components: - - pos: 68.5,-6.5 - parent: 0 - type: Transform -- uid: 11626 - type: AtmosFixBlockerMarker - components: - - pos: 67.5,-6.5 - parent: 0 - type: Transform -- uid: 11627 - type: StorageCanister - components: - - pos: 69.5,-11.5 - parent: 0 - type: Transform -- uid: 11628 - type: AtmosFixBlockerMarker - components: - - pos: 67.5,-12.5 - parent: 0 - type: Transform -- uid: 11629 - type: AtmosFixBlockerMarker - components: - - pos: 67.5,-11.5 - parent: 0 - type: Transform -- uid: 11630 - type: AtmosFixBlockerMarker - components: - - pos: 67.5,-10.5 - parent: 0 - type: Transform -- uid: 11631 - type: AtmosFixBlockerMarker - components: - - pos: 68.5,-12.5 - parent: 0 - type: Transform -- uid: 11632 - type: AtmosFixBlockerMarker - components: - - pos: 68.5,-11.5 - parent: 0 - type: Transform -- uid: 11633 - type: AtmosFixBlockerMarker - components: - - pos: 68.5,-10.5 - parent: 0 - type: Transform -- uid: 11634 - type: AtmosFixBlockerMarker - components: - - pos: 69.5,-12.5 - parent: 0 - type: Transform -- uid: 11635 - type: AtmosFixBlockerMarker - components: - - pos: 69.5,-11.5 - parent: 0 - type: Transform -- uid: 11636 - type: AtmosFixBlockerMarker - components: - - pos: 69.5,-10.5 - parent: 0 - type: Transform -- uid: 11637 - type: WarningN2 - components: - - pos: 50.5,-27.5 - parent: 0 - type: Transform -- uid: 11638 - type: WarningO2 - components: - - pos: 54.5,-27.5 - parent: 0 - type: Transform -- uid: 11639 - type: WarningAir - components: - - pos: 58.5,-27.5 - parent: 0 - type: Transform -- uid: 11640 - type: WarningCO2 - components: - - pos: 66.5,-17.5 - parent: 0 - type: Transform -- uid: 11641 - type: WarningPlasma - components: - - pos: 66.5,-13.5 - parent: 0 - type: Transform -- uid: 11642 - type: WarningWaste - components: - - pos: 66.5,-9.5 - parent: 0 - type: Transform -- uid: 11643 - type: WarningWaste - components: - - pos: 66.5,-5.5 - parent: 0 - type: Transform -- uid: 11644 - type: TableWood - components: - - pos: 36.5,34.5 - parent: 0 - type: Transform -- uid: 11645 - type: APCBasic - components: - - pos: 52.5,-9.5 - parent: 0 - type: Transform -- uid: 11646 - type: CableApcExtension - components: - - pos: 52.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11647 - type: CableApcExtension - components: - - pos: 52.5,-10.5 - parent: 0 - type: Transform -- uid: 11648 - type: CableApcExtension - components: - - pos: 52.5,-11.5 - parent: 0 - type: Transform -- uid: 11649 - type: CableApcExtension - components: - - pos: 52.5,-12.5 - parent: 0 - type: Transform -- uid: 11650 - type: CableApcExtension - components: - - pos: 52.5,-13.5 - parent: 0 - type: Transform -- uid: 11651 - type: CableApcExtension - components: - - pos: 52.5,-14.5 - parent: 0 - type: Transform -- uid: 11652 - type: CableApcExtension - components: - - pos: 52.5,-15.5 - parent: 0 - type: Transform -- uid: 11653 - type: CableApcExtension - components: - - pos: 44.5,-25.5 - parent: 0 - type: Transform -- uid: 11654 - type: CableApcExtension - components: - - pos: 52.5,-17.5 - parent: 0 - type: Transform -- uid: 11655 - type: CableApcExtension - components: - - pos: 52.5,-18.5 - parent: 0 - type: Transform -- uid: 11656 - type: CableApcExtension - components: - - pos: 52.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11657 - type: CableApcExtension - components: - - pos: 51.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11658 - type: CableApcExtension - components: - - pos: 52.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11659 - type: CableApcExtension - components: - - pos: 52.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11660 - type: CableApcExtension - components: - - pos: 52.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11661 - type: CableApcExtension - components: - - pos: 52.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11662 - type: CableApcExtension - components: - - pos: 52.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11663 - type: CableApcExtension - components: - - pos: 52.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11664 - type: CableApcExtension - components: - - pos: 51.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11665 - type: CableApcExtension - components: - - pos: 50.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11666 - type: CableApcExtension - components: - - pos: 53.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11667 - type: CableApcExtension - components: - - pos: 54.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11668 - type: CableApcExtension - components: - - pos: 55.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11669 - type: CableApcExtension - components: - - pos: 56.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11670 - type: CableApcExtension - components: - - pos: 57.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11671 - type: CableApcExtension - components: - - pos: 58.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11672 - type: CableApcExtension - components: - - pos: 59.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11673 - type: CableApcExtension - components: - - pos: 60.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11674 - type: CableApcExtension - components: - - pos: 61.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11675 - type: CableApcExtension - components: - - pos: 52.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11676 - type: CableApcExtension - components: - - pos: 51.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11677 - type: CableApcExtension - components: - - pos: 52.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11678 - type: CableApcExtension - components: - - pos: 53.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11679 - type: CableApcExtension - components: - - pos: 56.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11680 - type: CableApcExtension - components: - - pos: 55.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11681 - type: CableApcExtension - components: - - pos: 56.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11682 - type: CableApcExtension - components: - - pos: 57.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11683 - type: CableApcExtension - components: - - pos: 60.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11684 - type: CableApcExtension - components: - - pos: 59.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11685 - type: CableApcExtension - components: - - pos: 60.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11686 - type: CableApcExtension - components: - - pos: 61.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11687 - type: CableApcExtension - components: - - pos: 60.5,-28.5 - parent: 0 - type: Transform -- uid: 11688 - type: CableApcExtension - components: - - pos: 60.5,-29.5 - parent: 0 - type: Transform -- uid: 11689 - type: CableApcExtension - components: - - pos: 56.5,-28.5 - parent: 0 - type: Transform -- uid: 11690 - type: CableApcExtension - components: - - pos: 56.5,-29.5 - parent: 0 - type: Transform -- uid: 11691 - type: CableApcExtension - components: - - pos: 52.5,-29.5 - parent: 0 - type: Transform -- uid: 11692 - type: CableApcExtension - components: - - pos: 52.5,-28.5 - parent: 0 - type: Transform -- uid: 11693 - type: CableApcExtension - components: - - pos: 61.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11694 - type: CableApcExtension - components: - - pos: 62.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11695 - type: CableApcExtension - components: - - pos: 63.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11696 - type: CableApcExtension - components: - - pos: 63.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11697 - type: CableApcExtension - components: - - pos: 64.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11698 - type: CableApcExtension - components: - - pos: 65.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11699 - type: CableApcExtension - components: - - pos: 66.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11700 - type: CableApcExtension - components: - - pos: 63.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11701 - type: CableApcExtension - components: - - pos: 63.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11702 - type: CableApcExtension - components: - - pos: 63.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11703 - type: CableApcExtension - components: - - pos: 64.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11704 - type: CableApcExtension - components: - - pos: 64.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11705 - type: CableApcExtension - components: - - pos: 64.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11706 - type: CableApcExtension - components: - - pos: 64.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11707 - type: CableApcExtension - components: - - pos: 64.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11708 - type: CableApcExtension - components: - - pos: 64.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11709 - type: CableApcExtension - components: - - pos: 64.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11710 - type: CableApcExtension - components: - - pos: 64.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11711 - type: CableApcExtension - components: - - pos: 64.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11712 - type: CableApcExtension - components: - - pos: 64.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11713 - type: CableApcExtension - components: - - pos: 64.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11714 - type: CableApcExtension - components: - - pos: 64.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11715 - type: CableApcExtension - components: - - pos: 64.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11716 - type: CableApcExtension - components: - - pos: 64.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11717 - type: CableApcExtension - components: - - pos: 64.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11718 - type: CableApcExtension - components: - - pos: 65.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11719 - type: CableApcExtension - components: - - pos: 66.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11720 - type: CableApcExtension - components: - - pos: 66.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11721 - type: CableApcExtension - components: - - pos: 66.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11722 - type: CableApcExtension - components: - - pos: 65.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11723 - type: CableApcExtension - components: - - pos: 66.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11724 - type: CableApcExtension - components: - - pos: 66.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11725 - type: CableApcExtension - components: - - pos: 66.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11726 - type: CableApcExtension - components: - - pos: 65.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11727 - type: CableApcExtension - components: - - pos: 66.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11728 - type: CableApcExtension - components: - - pos: 66.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11729 - type: CableApcExtension - components: - - pos: 66.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11730 - type: CableApcExtension - components: - - pos: 65.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11731 - type: CableApcExtension - components: - - pos: 66.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11732 - type: CableApcExtension - components: - - pos: 66.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11733 - type: CableApcExtension - components: - - pos: 66.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11734 - type: CableApcExtension - components: - - pos: 67.5,-19.5 - parent: 0 - type: Transform -- uid: 11735 - type: CableApcExtension - components: - - pos: 68.5,-19.5 - parent: 0 - type: Transform -- uid: 11736 - type: CableApcExtension - components: - - pos: 67.5,-15.5 - parent: 0 - type: Transform -- uid: 11737 - type: CableApcExtension - components: - - pos: 68.5,-15.5 - parent: 0 - type: Transform -- uid: 11738 - type: CableApcExtension - components: - - pos: 67.5,-11.5 - parent: 0 - type: Transform -- uid: 11739 - type: CableApcExtension - components: - - pos: 68.5,-11.5 - parent: 0 - type: Transform -- uid: 11740 - type: CableApcExtension - components: - - pos: 67.5,-7.5 - parent: 0 - type: Transform -- uid: 11741 - type: CableApcExtension - components: - - pos: 68.5,-7.5 - parent: 0 - type: Transform -- uid: 11742 - type: CableApcExtension - components: - - pos: 53.5,-10.5 - parent: 0 - type: Transform -- uid: 11743 - type: CableApcExtension - components: - - pos: 54.5,-10.5 - parent: 0 - type: Transform -- uid: 11744 - type: CableApcExtension - components: - - pos: 55.5,-10.5 - parent: 0 - type: Transform -- uid: 11745 - type: CableApcExtension - components: - - pos: 56.5,-10.5 - parent: 0 - type: Transform -- uid: 11746 - type: CableApcExtension - components: - - pos: 44.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11747 - type: CableApcExtension - components: - - pos: 58.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11748 - type: CableApcExtension - components: - - pos: 59.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11749 - type: CableApcExtension - components: - - pos: 60.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11750 - type: CableApcExtension - components: - - pos: 60.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11751 - type: CableApcExtension - components: - - pos: 61.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11752 - type: CableApcExtension - components: - - pos: 62.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11753 - type: CableApcExtension - components: - - pos: 63.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11754 - type: CableApcExtension - components: - - pos: 63.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11755 - type: CableApcExtension - components: - - pos: 62.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11756 - type: CableApcExtension - components: - - pos: 61.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11757 - type: CableApcExtension - components: - - pos: 60.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11758 - type: CableApcExtension - components: - - pos: 59.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11759 - type: CableApcExtension - components: - - pos: 58.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11760 - type: CableApcExtension - components: - - pos: 57.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11761 - type: CableApcExtension - components: - - pos: 58.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11762 - type: CableApcExtension - components: - - pos: 58.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11763 - type: CableApcExtension - components: - - pos: 61.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11764 - type: CableApcExtension - components: - - pos: 61.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11765 - type: CableApcExtension - components: - - pos: 53.5,-12.5 - parent: 0 - type: Transform -- uid: 11766 - type: CableApcExtension - components: - - pos: 54.5,-12.5 - parent: 0 - type: Transform -- uid: 11767 - type: CableApcExtension - components: - - pos: 55.5,-12.5 - parent: 0 - type: Transform -- uid: 11768 - type: CableApcExtension - components: - - pos: 56.5,-12.5 - parent: 0 - type: Transform -- uid: 11769 - type: CableApcExtension - components: - - pos: 44.5,-24.5 - parent: 0 - type: Transform -- uid: 11770 - type: CableApcExtension - components: - - pos: 58.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11771 - type: CableApcExtension - components: - - pos: 58.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11772 - type: CableApcExtension - components: - - pos: 58.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11773 - type: CableApcExtension - components: - - pos: 58.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11774 - type: CableApcExtension - components: - - pos: 58.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11775 - type: CableApcExtension - components: - - pos: 58.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11776 - type: CableApcExtension - components: - - pos: 58.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11777 - type: CableApcExtension - components: - - pos: 58.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11778 - type: CableApcExtension - components: - - pos: 58.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11779 - type: CableApcExtension - components: - - pos: 58.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11780 - type: CableApcExtension - components: - - pos: 57.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11781 - type: CableApcExtension - components: - - pos: 56.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11782 - type: CableApcExtension - components: - - pos: 55.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11783 - type: CableApcExtension - components: - - pos: 54.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11784 - type: CableApcExtension - components: - - pos: 63.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11785 - type: CableApcExtension - components: - - pos: 62.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11786 - type: WallSolid - components: - - pos: 47.5,-19.5 - parent: 0 - type: Transform -- uid: 11787 - type: WallSolid - components: - - pos: 45.5,-19.5 - parent: 0 - type: Transform -- uid: 11788 - type: WallSolid - components: - - pos: 45.5,-18.5 - parent: 0 - type: Transform -- uid: 11789 - type: WallSolid - components: - - pos: 44.5,-18.5 - parent: 0 - type: Transform -- uid: 11790 - type: WallSolid - components: - - pos: 43.5,-18.5 - parent: 0 - type: Transform -- uid: 11791 - type: PlasticFlapsAirtightOpaque - components: - - pos: 44.5,-17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11792 - type: WallSolid - components: - - pos: 44.5,-16.5 - parent: 0 - type: Transform -- uid: 11793 - type: WallSolidRust - components: - - pos: 44.5,-14.5 - parent: 0 - type: Transform -- uid: 11794 - type: WallSolidRust - components: - - pos: 44.5,-15.5 - parent: 0 - type: Transform -- uid: 11795 - type: WallSolid - components: - - pos: 44.5,-13.5 - parent: 0 - type: Transform -- uid: 11796 - type: WallSolid - components: - - pos: 44.5,-12.5 - parent: 0 - type: Transform -- uid: 11797 - type: GasThermoMachineHeater - components: - - pos: 45.5,-13.5 - parent: 0 - type: Transform -- uid: 11798 - type: GasMixer - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11799 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11800 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 45.5,-15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11801 - type: GasPort - components: - - pos: 46.5,-13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11802 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11803 - type: GasThermoMachineFreezer - components: - - pos: 49.5,-14.5 - parent: 0 - type: Transform -- uid: 11804 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11805 - type: GasMixerFlipped - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11806 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 49.5,-16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11807 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11808 - type: GasPort - components: - - pos: 48.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11809 - type: AirlockMaintLocked - components: - - pos: 46.5,-19.5 - parent: 0 - type: Transform -- uid: 11810 - type: Table - components: - - pos: 51.5,-10.5 - parent: 0 - type: Transform -- uid: 11811 - type: SheetGlass - components: - - pos: 51.545227,-10.492907 - parent: 0 - type: Transform -- uid: 11812 - type: PartRodMetal - components: - - pos: 51.513977,-10.461657 - parent: 0 - type: Transform -- uid: 11813 - type: NitrogenCanister - components: - - pos: 47.5,-11.5 - parent: 0 - type: Transform -- uid: 11814 - type: NitrogenCanister - components: - - pos: 47.5,-10.5 - parent: 0 - type: Transform -- uid: 11815 - type: CarbonDioxideCanister - components: - - pos: 48.5,-10.5 - parent: 0 - type: Transform -- uid: 11816 - type: OxygenCanister - components: - - pos: 46.5,-11.5 - parent: 0 - type: Transform -- uid: 11817 - type: OxygenCanister - components: - - pos: 46.5,-10.5 - parent: 0 - type: Transform -- uid: 11818 - type: OxygenCanister - components: - - pos: 46.5,-9.5 - parent: 0 - type: Transform -- uid: 11819 - type: StorageCanister - components: - - pos: 49.5,-11.5 - parent: 0 - type: Transform -- uid: 11820 - type: StorageCanister - components: - - pos: 49.5,-10.5 - parent: 0 - type: Transform -- uid: 11821 - type: StorageCanister - components: - - pos: 49.5,-9.5 - parent: 0 - type: Transform -- uid: 11822 - type: StorageCanister - components: - - pos: 56.5,-16.5 - parent: 0 - type: Transform -- uid: 11823 - type: StorageCanister - components: - - pos: 56.5,-15.5 - parent: 0 - type: Transform -- uid: 11824 - type: StorageCanister - components: - - pos: 56.5,-14.5 - parent: 0 - type: Transform -- uid: 11825 - type: NitrousOxideCanister - components: - - pos: 48.5,-11.5 - parent: 0 - type: Transform -- uid: 11826 - type: WaterVaporCanister - components: - - pos: 48.5,-9.5 - parent: 0 - type: Transform -- uid: 11827 - type: NitrogenCanister - components: - - pos: 47.5,-9.5 - parent: 0 - type: Transform -- uid: 11828 - type: WaterTankFull - components: - - pos: 54.5,-12.5 - parent: 0 - type: Transform -- uid: 11829 - type: WeldingFuelTankFull - components: - - pos: 55.5,-12.5 - parent: 0 - type: Transform -- uid: 11830 - type: ClothingHeadHatCone - components: - - pos: 49.48513,-19.498276 - parent: 0 - type: Transform -- uid: 11831 - type: Rack - components: - - pos: 49.5,-24.5 - parent: 0 - type: Transform -- uid: 11832 - type: LockerWeldingSuppliesFilled - components: - - pos: 49.5,-23.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11833 - type: ClothingHeadHatWelding - components: - - pos: 53.31784,-5.209595 - parent: 0 - type: Transform -- uid: 11834 - type: ClothingHeadHatWelding - components: - - pos: 53.56784,-5.35022 - parent: 0 - type: Transform -- uid: 11835 - type: ClothingHeadHatWelding - components: - - pos: 53.802216,-5.50647 - parent: 0 - type: Transform -- uid: 11836 - type: SheetSteel - components: - - pos: 54.552216,-5.490845 - parent: 0 - type: Transform -- uid: 11837 - type: ClothingBeltUtilityFilled - components: - - pos: 55.520966,-5.41272 - parent: 0 - type: Transform -- uid: 11838 - type: trayScanner - components: - - pos: 55.63034,-6.35022 - parent: 0 - type: Transform -- uid: 11839 - type: GasPipeStraight - components: - - pos: 40.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11840 - type: GasPipeStraight - components: - - pos: 40.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11841 - type: GasPipeStraight - components: - - pos: 40.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11842 - type: GasPipeStraight - components: - - pos: 40.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11843 - type: GasPipeStraight - components: - - pos: 40.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11844 - type: GasPipeStraight - components: - - pos: 40.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11845 - type: GasPipeStraight - components: - - pos: 40.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11846 - type: GasPipeStraight - components: - - pos: 40.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11847 - type: GasPipeStraight - components: - - pos: 40.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11848 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11849 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11850 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11851 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11852 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11853 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11854 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11855 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11856 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11857 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11858 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11859 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11860 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 43.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11861 - type: GasPipeBend - components: - - pos: 43.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11862 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 40.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11863 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 43.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11864 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11865 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11866 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11867 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11868 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-24.5 - parent: 0 - type: Transform -- uid: 11869 - type: WallSolidRust - components: - - pos: 39.5,-24.5 - parent: 0 - type: Transform -- uid: 11870 - type: WallSolidRust - components: - - pos: 38.5,-24.5 - parent: 0 - type: Transform -- uid: 11871 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-23.5 - parent: 0 - type: Transform -- uid: 11872 - type: SubstationBasic - components: - - name: Atmos Substation - type: MetaData - - pos: 37.5,-21.5 - parent: 0 - type: Transform -- uid: 11873 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-21.5 - parent: 0 - type: Transform -- uid: 11874 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-20.5 - parent: 0 - type: Transform -- uid: 11875 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-20.5 - parent: 0 - type: Transform -- uid: 11876 - type: WallSolidRust - components: - - pos: 38.5,-20.5 - parent: 0 - type: Transform -- uid: 11877 - type: CableHV - components: - - pos: 37.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11878 - type: CableHV - components: - - pos: 37.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11879 - type: CableHV - components: - - pos: 38.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11880 - type: CableHV - components: - - pos: 39.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11881 - type: CableHV - components: - - pos: 40.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11882 - type: CableHV - components: - - pos: 34.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11883 - type: CableHV - components: - - pos: 35.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11884 - type: CableHV - components: - - pos: 36.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11885 - type: CableHV - components: - - pos: 37.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11886 - type: CableHV - components: - - pos: 38.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11887 - type: CableHV - components: - - pos: 39.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11888 - type: CableHV - components: - - pos: 40.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11889 - type: CableHV - components: - - pos: 40.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11890 - type: CableHV - components: - - pos: 40.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11891 - type: CableHV - components: - - pos: 40.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11892 - type: CableHV - components: - - pos: 40.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11893 - type: CableHV - components: - - pos: 40.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11894 - type: CableHV - components: - - pos: 40.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11895 - type: CableHV - components: - - pos: 41.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11896 - type: CableHV - components: - - pos: 42.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11897 - type: CableHV - components: - - pos: 43.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11898 - type: CableHV - components: - - pos: 43.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11899 - type: CableHV - components: - - pos: 43.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11900 - type: CableHV - components: - - pos: 43.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11901 - type: CableHV - components: - - pos: 43.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11902 - type: CableHV - components: - - pos: 43.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11903 - type: CableHV - components: - - pos: 43.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11904 - type: CableHV - components: - - pos: 43.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11905 - type: CableHV - components: - - pos: 43.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11906 - type: CableHV - components: - - pos: 43.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11907 - type: CableHV - components: - - pos: 43.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11908 - type: CableHV - components: - - pos: 43.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11909 - type: CableHV - components: - - pos: 41.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11910 - type: CableHV - components: - - pos: 41.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11911 - type: CableHV - components: - - pos: 41.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11912 - type: CableHV - components: - - pos: 41.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11913 - type: CableHV - components: - - pos: 41.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11914 - type: CableHV - components: - - pos: 41.5,-17.5 - parent: 0 - type: Transform -- uid: 11915 - type: CableHV - components: - - pos: 42.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11916 - type: APCBasic - components: - - pos: 43.5,-18.5 - parent: 0 - type: Transform -- uid: 11917 - type: CableMV - components: - - pos: 37.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11918 - type: CableMV - components: - - pos: 37.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11919 - type: CableMV - components: - - pos: 38.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11920 - type: CableMV - components: - - pos: 39.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11921 - type: CableMV - components: - - pos: 40.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11922 - type: CableMV - components: - - pos: 41.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11923 - type: CableMV - components: - - pos: 41.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11924 - type: CableMV - components: - - pos: 42.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11925 - type: CableMV - components: - - pos: 43.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11926 - type: CableMV - components: - - pos: 44.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11927 - type: CableMV - components: - - pos: 45.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11928 - type: CableMV - components: - - pos: 45.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11929 - type: CableMV - components: - - pos: 45.5,-23.5 - parent: 0 - type: Transform -- uid: 11930 - type: CableMV - components: - - pos: 44.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11931 - type: CableMV - components: - - pos: 43.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11932 - type: CableMV - components: - - pos: 43.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11933 - type: CableMV - components: - - pos: 43.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11934 - type: CableMV - components: - - pos: 45.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11935 - type: CableMV - components: - - pos: 46.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11936 - type: CableMV - components: - - pos: 47.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11937 - type: CableMV - components: - - pos: 48.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11938 - type: CableMV - components: - - pos: 49.5,-20.5 - parent: 0 - type: Transform -- uid: 11939 - type: CableMV - components: - - pos: 50.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11940 - type: CableMV - components: - - pos: 51.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11941 - type: CableMV - components: - - pos: 52.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11942 - type: CableMV - components: - - pos: 52.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11943 - type: CableMV - components: - - pos: 52.5,-18.5 - parent: 0 - type: Transform -- uid: 11944 - type: CableMV - components: - - pos: 52.5,-17.5 - parent: 0 - type: Transform -- uid: 11945 - type: CableMV - components: - - pos: 52.5,-16.5 - parent: 0 - type: Transform -- uid: 11946 - type: CableMV - components: - - pos: 52.5,-15.5 - parent: 0 - type: Transform -- uid: 11947 - type: CableMV - components: - - pos: 52.5,-14.5 - parent: 0 - type: Transform -- uid: 11948 - type: CableMV - components: - - pos: 52.5,-13.5 - parent: 0 - type: Transform -- uid: 11949 - type: CableMV - components: - - pos: 52.5,-12.5 - parent: 0 - type: Transform -- uid: 11950 - type: CableMV - components: - - pos: 52.5,-11.5 - parent: 0 - type: Transform -- uid: 11951 - type: CableMV - components: - - pos: 52.5,-10.5 - parent: 0 - type: Transform -- uid: 11952 - type: CableMV - components: - - pos: 52.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11953 - type: CableApcExtension - components: - - pos: 52.5,-8.5 - parent: 0 - type: Transform -- uid: 11954 - type: CableApcExtension - components: - - pos: 52.5,-7.5 - parent: 0 - type: Transform -- uid: 11955 - type: CableApcExtension - components: - - pos: 53.5,-7.5 - parent: 0 - type: Transform -- uid: 11956 - type: CableApcExtension - components: - - pos: 55.5,-7.5 - parent: 0 - type: Transform -- uid: 11957 - type: CableApcExtension - components: - - pos: 54.5,-7.5 - parent: 0 - type: Transform -- uid: 11958 - type: CableApcExtension - components: - - pos: 51.5,-7.5 - parent: 0 - type: Transform -- uid: 11959 - type: CableApcExtension - components: - - pos: 50.5,-7.5 - parent: 0 - type: Transform -- uid: 11960 - type: CableApcExtension - components: - - pos: 49.5,-7.5 - parent: 0 - type: Transform -- uid: 11961 - type: CableApcExtension - components: - - pos: 48.5,-7.5 - parent: 0 - type: Transform -- uid: 11962 - type: CableApcExtension - components: - - pos: 47.5,-7.5 - parent: 0 - type: Transform -- uid: 11963 - type: CableApcExtension - components: - - pos: 46.5,-7.5 - parent: 0 - type: Transform -- uid: 11964 - type: CableApcExtension - components: - - pos: 47.5,-6.5 - parent: 0 - type: Transform -- uid: 11965 - type: CableApcExtension - components: - - pos: 47.5,-5.5 - parent: 0 - type: Transform -- uid: 11966 - type: CableMV - components: - - pos: 50.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11967 - type: CableMV - components: - - pos: 50.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11968 - type: CableApcExtension - components: - - pos: 50.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11969 - type: CableApcExtension - components: - - pos: 50.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11970 - type: APCBasic - components: - - pos: 50.5,-18.5 - parent: 0 - type: Transform -- uid: 11971 - type: CableApcExtension - components: - - pos: 44.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11972 - type: CableApcExtension - components: - - pos: 44.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11973 - type: CableApcExtension - components: - - pos: 44.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11974 - type: CableApcExtension - components: - - pos: 45.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11975 - type: CableApcExtension - components: - - pos: 46.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11976 - type: CableApcExtension - components: - - pos: 46.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11977 - type: CableApcExtension - components: - - pos: 46.5,-29.5 - parent: 0 - type: Transform -- uid: 11978 - type: CableApcExtension - components: - - pos: 46.5,-30.5 - parent: 0 - type: Transform -- uid: 11979 - type: CableApcExtension - components: - - pos: 46.5,-31.5 - parent: 0 - type: Transform -- uid: 11980 - type: CableApcExtension - components: - - pos: 46.5,-32.5 - parent: 0 - type: Transform -- uid: 11981 - type: CableApcExtension - components: - - pos: 46.5,-33.5 - parent: 0 - type: Transform -- uid: 11982 - type: CableApcExtension - components: - - pos: 46.5,-34.5 - parent: 0 - type: Transform -- uid: 11983 - type: CableApcExtension - components: - - pos: 46.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11984 - type: CableApcExtension - components: - - pos: 46.5,-25.5 - parent: 0 - type: Transform -- uid: 11985 - type: CableApcExtension - components: - - pos: 46.5,-24.5 - parent: 0 - type: Transform -- uid: 11986 - type: CableApcExtension - components: - - pos: 43.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11987 - type: CableApcExtension - components: - - pos: 43.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11988 - type: CableApcExtension - components: - - pos: 43.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11989 - type: CableApcExtension - components: - - pos: 43.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11990 - type: CableApcExtension - components: - - pos: 42.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11991 - type: CableApcExtension - components: - - pos: 41.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11992 - type: CableApcExtension - components: - - pos: 41.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11993 - type: CableApcExtension - components: - - pos: 40.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11994 - type: CableApcExtension - components: - - pos: 39.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11995 - type: CableApcExtension - components: - - pos: 38.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11996 - type: CableApcExtension - components: - - pos: 44.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11997 - type: CableApcExtension - components: - - pos: 45.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11998 - type: CableApcExtension - components: - - pos: 46.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11999 - type: CableApcExtension - components: - - pos: 46.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12000 - type: CableApcExtension - components: - - pos: 46.5,-18.5 - parent: 0 - type: Transform -- uid: 12001 - type: CableApcExtension - components: - - pos: 46.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12002 - type: CableApcExtension - components: - - pos: 46.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12003 - type: CableApcExtension - components: - - pos: 46.5,-15.5 - parent: 0 - type: Transform -- uid: 12004 - type: CableApcExtension - components: - - pos: 46.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12005 - type: CableApcExtension - components: - - pos: 47.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12006 - type: CableApcExtension - components: - - pos: 48.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12007 - type: CableApcExtension - components: - - pos: 47.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12008 - type: CableApcExtension - components: - - pos: 48.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12009 - type: CableApcExtension - components: - - pos: 43.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12010 - type: CableApcExtension - components: - - pos: 43.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12011 - type: CableApcExtension - components: - - pos: 43.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12012 - type: CableApcExtension - components: - - pos: 43.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12013 - type: CableApcExtension - components: - - pos: 43.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12014 - type: CableApcExtension - components: - - pos: 43.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12015 - type: CableApcExtension - components: - - pos: 43.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12016 - type: CableApcExtension - components: - - pos: 40.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12017 - type: CableApcExtension - components: - - pos: 40.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12018 - type: CableApcExtension - components: - - pos: 40.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12019 - type: CableApcExtension - components: - - pos: 40.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12020 - type: StorageCanister - components: - - pos: 49.5,-17.5 - parent: 0 - type: Transform -- uid: 12021 - type: SignalButton - components: - - pos: 45.5,-29.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 11487 - - port: Toggle - uid: 11486 - type: SignalTransmitter -- uid: 12022 - type: SignalButton - components: - - pos: 64.5,-5.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10293 - type: SignalTransmitter -- uid: 12023 - type: StorageCanister - components: - - pos: 48.5,-17.5 - parent: 0 - type: Transform -- uid: 12024 - type: PoweredSmallLight - components: - - pos: 47.5,-13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12025 - type: PoweredSmallLight - components: - - pos: 38.5,-21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12026 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12027 - type: PoweredSmallLight - components: - - pos: 42.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12028 - type: AirlockEngineeringLocked - components: - - pos: 39.5,-22.5 - parent: 0 - type: Transform -- uid: 12029 - type: Table - components: - - pos: 37.5,-23.5 - parent: 0 - type: Transform -- uid: 12030 - type: LockerElectricalSupplies - components: - - pos: 38.5,-21.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12031 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-23.5 - parent: 0 - type: Transform -- uid: 12032 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12033 - type: ClothingEyesGlassesThermal - components: - - pos: 55.441452,-5.9908156 - parent: 0 - type: Transform -- uid: 12034 - type: ClothingEyesGlassesThermal - components: - - pos: 55.535202,-6.1158156 - parent: 0 - type: Transform -- uid: 12035 - type: InflatableWallStack - components: - - pos: 45.50215,-5.5220656 - parent: 0 - type: Transform -- uid: 12036 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12037 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12038 - type: Poweredlight - components: - - pos: 54.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12039 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12040 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12041 - type: Poweredlight - components: - - pos: 55.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12042 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12043 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12044 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12045 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 58.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12046 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12047 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12048 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12049 - type: GasVentPump - components: - - pos: 52.5,-11.5 - parent: 0 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12050 - type: GasVentScrubber - components: - - pos: 52.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12051 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12052 - type: GasPipeStraight - components: - - pos: 39.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12053 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 39.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12054 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12055 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12056 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12057 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12058 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12059 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 33.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12060 - type: GasVentPump - components: - - pos: 39.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12061 - type: SignElectricalMed - components: - - pos: 38.5,5.5 - parent: 0 - type: Transform -- uid: 12062 - type: ToolboxElectricalFilled - components: - - pos: 38.4915,6.594829 - parent: 0 - type: Transform -- uid: 12063 - type: PowerCellRecharger - components: - - pos: 40.5,6.5 - parent: 0 - type: Transform -- uid: 12064 - type: HandheldHealthAnalyzer - components: - - pos: 37.477158,6.4982557 - parent: 0 - type: Transform -- uid: 12065 - type: FlashlightLantern - components: - - pos: 39.461533,10.607632 - parent: 0 - type: Transform -- uid: 12066 - type: Flash - components: - - pos: 39.820908,10.513882 - parent: 0 - type: Transform -- uid: 12067 - type: CableApcStack - components: - - pos: 40.36506,9.826381 - parent: 0 - type: Transform -- uid: 12068 - type: CableMVStack - components: - - pos: 40.52131,9.732631 - parent: 0 - type: Transform -- uid: 12069 - type: CableHVStack - components: - - pos: 40.630684,9.592006 - parent: 0 - type: Transform -- uid: 12070 - type: Screwdriver - components: - - pos: 40.512733,8.842006 - parent: 0 - type: Transform -- uid: 12071 - type: Wirecutter - components: - - pos: 40.55256,8.513881 - parent: 0 - type: Transform -- uid: 12072 - type: Multitool - components: - - pos: 40.49711,7.4826307 - parent: 0 - type: Transform -- uid: 12073 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 50.5,4.5 - parent: 0 - type: Transform -- uid: 12074 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 50.5,5.5 - parent: 0 - type: Transform -- uid: 12075 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 50.5,6.5 - parent: 0 - type: Transform -- uid: 12076 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 50.5,7.5 - parent: 0 - type: Transform -- uid: 12077 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 50.5,8.5 - parent: 0 - type: Transform -- uid: 12078 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 50.5,9.5 - parent: 0 - type: Transform -- uid: 12079 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 50.5,10.5 - parent: 0 - type: Transform -- uid: 12080 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 50.5,11.5 - parent: 0 - type: Transform -- uid: 12081 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 50.5,12.5 - parent: 0 - type: Transform -- uid: 12082 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 50.5,13.5 - parent: 0 - type: Transform -- uid: 12083 - type: DisposalJunction - components: - - pos: 50.5,14.5 - parent: 0 - type: Transform -- uid: 12084 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 49.5,14.5 - parent: 0 - type: Transform -- uid: 12085 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 48.5,14.5 - parent: 0 - type: Transform -- uid: 12086 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 47.5,14.5 - parent: 0 - type: Transform -- uid: 12087 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 47.5,6.5 - parent: 0 - type: Transform -- uid: 12088 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 42.5,6.5 - parent: 0 - type: Transform -- uid: 12089 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 43.5,6.5 - parent: 0 - type: Transform -- uid: 12090 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 44.5,6.5 - parent: 0 - type: Transform -- uid: 12091 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 45.5,6.5 - parent: 0 - type: Transform -- uid: 12092 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 46.5,6.5 - parent: 0 - type: Transform -- uid: 12093 - type: DisposalPipe - components: - - pos: 47.5,7.5 - parent: 0 - type: Transform -- uid: 12094 - type: DisposalPipe - components: - - pos: 47.5,8.5 - parent: 0 - type: Transform -- uid: 12095 - type: DisposalPipe - components: - - pos: 47.5,9.5 - parent: 0 - type: Transform -- uid: 12096 - type: DisposalPipe - components: - - pos: 47.5,10.5 - parent: 0 - type: Transform -- uid: 12097 - type: DisposalPipe - components: - - pos: 47.5,11.5 - parent: 0 - type: Transform -- uid: 12098 - type: DisposalPipe - components: - - pos: 47.5,12.5 - parent: 0 - type: Transform -- uid: 12099 - type: DisposalPipe - components: - - pos: 47.5,13.5 - parent: 0 - type: Transform -- uid: 12100 - type: ExtinguisherCabinetFilled - components: - - pos: 41.5,9.5 - parent: 0 - type: Transform -- uid: 12101 - type: ClothingHeadHatBunny - components: - - pos: 49.528442,-24.481068 - parent: 0 - type: Transform -- uid: 12102 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 16.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12103 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 16.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12104 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 16.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12105 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 16.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12106 - type: GasPipeStraight - components: - - pos: 8.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12107 - type: GasPipeStraight - components: - - pos: 8.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12108 - type: GasPipeStraight - components: - - pos: 8.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12109 - type: GasPipeStraight - components: - - pos: 8.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12110 - type: GasPipeStraight - components: - - pos: 8.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12111 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 8.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12112 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12113 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12114 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12115 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 7.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12116 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12117 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12118 - type: GasVentPump - components: - - pos: -17.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12119 - type: Catwalk - components: - - pos: -12.5,-14.5 - parent: 0 - type: Transform -- uid: 12120 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12121 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12122 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12123 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12124 - type: GasVentPump - components: - - pos: -0.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12125 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -4.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12126 - type: GasVentPump - components: - - pos: 16.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12127 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-28.5 - parent: 0 - type: Transform -- uid: 12128 - type: VendingMachineNutri - components: - - flags: SessionSpecific - type: MetaData - - pos: 28.5,-19.5 - parent: 0 - type: Transform -- uid: 12129 - type: VendingMachineSeeds - components: - - flags: SessionSpecific - type: MetaData - - pos: 28.5,-20.5 - parent: 0 - type: Transform -- uid: 12130 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12131 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12132 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12133 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12134 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12135 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 22.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12136 - type: GasPipeBend - components: - - pos: 23.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12137 - type: GasPipeStraight - components: - - pos: 22.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12138 - type: GasPipeStraight - components: - - pos: 22.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12139 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 23.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12140 - type: GasPipeBend - components: - - pos: 29.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12141 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 29.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12142 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 25.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12143 - type: GasVentScrubber - components: - - pos: 26.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12144 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12145 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12146 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12147 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12148 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12149 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12150 - type: GasVentPump - components: - - pos: 20.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12151 - type: GasVentScrubber - components: - - pos: 22.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12152 - type: Catwalk - components: - - pos: -32.5,48.5 - parent: 0 - type: Transform -- uid: 12153 - type: Catwalk - components: - - pos: -32.5,49.5 - parent: 0 - type: Transform -- uid: 12154 - type: Catwalk - components: - - pos: -32.5,50.5 - parent: 0 - type: Transform -- uid: 12155 - type: Catwalk - components: - - pos: -32.5,51.5 - parent: 0 - type: Transform -- uid: 12156 - type: Catwalk - components: - - pos: -32.5,52.5 - parent: 0 - type: Transform -- uid: 12157 - type: Catwalk - components: - - pos: -32.5,53.5 - parent: 0 - type: Transform -- uid: 12158 - type: Catwalk - components: - - pos: -32.5,54.5 - parent: 0 - type: Transform -- uid: 12159 - type: Catwalk - components: - - pos: -32.5,55.5 - parent: 0 - type: Transform -- uid: 12160 - type: Catwalk - components: - - pos: -32.5,56.5 - parent: 0 - type: Transform -- uid: 12161 - type: Catwalk - components: - - pos: -32.5,57.5 - parent: 0 - type: Transform -- uid: 12162 - type: Catwalk - components: - - pos: -32.5,58.5 - parent: 0 - type: Transform -- uid: 12163 - type: Catwalk - components: - - pos: -32.5,59.5 - parent: 0 - type: Transform -- uid: 12164 - type: Catwalk - components: - - pos: -32.5,60.5 - parent: 0 - type: Transform -- uid: 12165 - type: Catwalk - components: - - pos: -32.5,61.5 - parent: 0 - type: Transform -- uid: 12166 - type: Catwalk - components: - - pos: -32.5,62.5 - parent: 0 - type: Transform -- uid: 12167 - type: Catwalk - components: - - pos: -32.5,63.5 - parent: 0 - type: Transform -- uid: 12168 - type: Catwalk - components: - - pos: -32.5,64.5 - parent: 0 - type: Transform -- uid: 12169 - type: Catwalk - components: - - pos: -32.5,65.5 - parent: 0 - type: Transform -- uid: 12170 - type: Catwalk - components: - - pos: -32.5,66.5 - parent: 0 - type: Transform -- uid: 12171 - type: Catwalk - components: - - pos: -32.5,67.5 - parent: 0 - type: Transform -- uid: 12172 - type: Catwalk - components: - - pos: -32.5,68.5 - parent: 0 - type: Transform -- uid: 12173 - type: Catwalk - components: - - pos: -32.5,69.5 - parent: 0 - type: Transform -- uid: 12174 - type: Catwalk - components: - - pos: -31.5,65.5 - parent: 0 - type: Transform -- uid: 12175 - type: Catwalk - components: - - pos: -30.5,65.5 - parent: 0 - type: Transform -- uid: 12176 - type: Catwalk - components: - - pos: -29.5,65.5 - parent: 0 - type: Transform -- uid: 12177 - type: Catwalk - components: - - pos: -28.5,65.5 - parent: 0 - type: Transform -- uid: 12178 - type: Catwalk - components: - - pos: -27.5,65.5 - parent: 0 - type: Transform -- uid: 12179 - type: Catwalk - components: - - pos: -26.5,65.5 - parent: 0 - type: Transform -- uid: 12180 - type: Catwalk - components: - - pos: -25.5,65.5 - parent: 0 - type: Transform -- uid: 12181 - type: Catwalk - components: - - pos: -33.5,65.5 - parent: 0 - type: Transform -- uid: 12182 - type: Catwalk - components: - - pos: -34.5,65.5 - parent: 0 - type: Transform -- uid: 12183 - type: Catwalk - components: - - pos: -35.5,65.5 - parent: 0 - type: Transform -- uid: 12184 - type: Catwalk - components: - - pos: -36.5,65.5 - parent: 0 - type: Transform -- uid: 12185 - type: Catwalk - components: - - pos: -37.5,65.5 - parent: 0 - type: Transform -- uid: 12186 - type: Catwalk - components: - - pos: -38.5,65.5 - parent: 0 - type: Transform -- uid: 12187 - type: Catwalk - components: - - pos: -39.5,65.5 - parent: 0 - type: Transform -- uid: 12188 - type: Catwalk - components: - - pos: -33.5,61.5 - parent: 0 - type: Transform -- uid: 12189 - type: Catwalk - components: - - pos: -34.5,61.5 - parent: 0 - type: Transform -- uid: 12190 - type: Catwalk - components: - - pos: -35.5,61.5 - parent: 0 - type: Transform -- uid: 12191 - type: Catwalk - components: - - pos: -36.5,61.5 - parent: 0 - type: Transform -- uid: 12192 - type: Catwalk - components: - - pos: -37.5,61.5 - parent: 0 - type: Transform -- uid: 12193 - type: Catwalk - components: - - pos: -38.5,61.5 - parent: 0 - type: Transform -- uid: 12194 - type: Catwalk - components: - - pos: -39.5,61.5 - parent: 0 - type: Transform -- uid: 12195 - type: Catwalk - components: - - pos: -31.5,61.5 - parent: 0 - type: Transform -- uid: 12196 - type: Catwalk - components: - - pos: -30.5,61.5 - parent: 0 - type: Transform -- uid: 12197 - type: Catwalk - components: - - pos: -29.5,61.5 - parent: 0 - type: Transform -- uid: 12198 - type: Catwalk - components: - - pos: -28.5,61.5 - parent: 0 - type: Transform -- uid: 12199 - type: Catwalk - components: - - pos: -27.5,61.5 - parent: 0 - type: Transform -- uid: 12200 - type: Catwalk - components: - - pos: -26.5,61.5 - parent: 0 - type: Transform -- uid: 12201 - type: Catwalk - components: - - pos: -25.5,61.5 - parent: 0 - type: Transform -- uid: 12202 - type: Catwalk - components: - - pos: -25.5,57.5 - parent: 0 - type: Transform -- uid: 12203 - type: Catwalk - components: - - pos: -26.5,57.5 - parent: 0 - type: Transform -- uid: 12204 - type: Catwalk - components: - - pos: -27.5,57.5 - parent: 0 - type: Transform -- uid: 12205 - type: Catwalk - components: - - pos: -28.5,57.5 - parent: 0 - type: Transform -- uid: 12206 - type: Catwalk - components: - - pos: -29.5,57.5 - parent: 0 - type: Transform -- uid: 12207 - type: Catwalk - components: - - pos: -30.5,57.5 - parent: 0 - type: Transform -- uid: 12208 - type: Catwalk - components: - - pos: -31.5,57.5 - parent: 0 - type: Transform -- uid: 12209 - type: Catwalk - components: - - pos: -34.5,57.5 - parent: 0 - type: Transform -- uid: 12210 - type: Catwalk - components: - - pos: -35.5,57.5 - parent: 0 - type: Transform -- uid: 12211 - type: Catwalk - components: - - pos: -36.5,57.5 - parent: 0 - type: Transform -- uid: 12212 - type: Catwalk - components: - - pos: -37.5,57.5 - parent: 0 - type: Transform -- uid: 12213 - type: Catwalk - components: - - pos: -38.5,57.5 - parent: 0 - type: Transform -- uid: 12214 - type: Catwalk - components: - - pos: -39.5,57.5 - parent: 0 - type: Transform -- uid: 12215 - type: Catwalk - components: - - pos: -33.5,57.5 - parent: 0 - type: Transform -- uid: 12216 - type: Catwalk - components: - - pos: -39.5,53.5 - parent: 0 - type: Transform -- uid: 12217 - type: Catwalk - components: - - pos: -38.5,53.5 - parent: 0 - type: Transform -- uid: 12218 - type: Catwalk - components: - - pos: -37.5,53.5 - parent: 0 - type: Transform -- uid: 12219 - type: Catwalk - components: - - pos: -36.5,53.5 - parent: 0 - type: Transform -- uid: 12220 - type: Catwalk - components: - - pos: -35.5,53.5 - parent: 0 - type: Transform -- uid: 12221 - type: Catwalk - components: - - pos: -34.5,53.5 - parent: 0 - type: Transform -- uid: 12222 - type: Catwalk - components: - - pos: -33.5,53.5 - parent: 0 - type: Transform -- uid: 12223 - type: Catwalk - components: - - pos: -31.5,53.5 - parent: 0 - type: Transform -- uid: 12224 - type: Catwalk - components: - - pos: -30.5,53.5 - parent: 0 - type: Transform -- uid: 12225 - type: Catwalk - components: - - pos: -29.5,53.5 - parent: 0 - type: Transform -- uid: 12226 - type: Catwalk - components: - - pos: -28.5,53.5 - parent: 0 - type: Transform -- uid: 12227 - type: Catwalk - components: - - pos: -27.5,53.5 - parent: 0 - type: Transform -- uid: 12228 - type: Catwalk - components: - - pos: -26.5,53.5 - parent: 0 - type: Transform -- uid: 12229 - type: Catwalk - components: - - pos: -25.5,53.5 - parent: 0 - type: Transform -- uid: 12230 - type: Grille - components: - - pos: -43.5,67.5 - parent: 0 - type: Transform -- uid: 12231 - type: Grille - components: - - pos: -43.5,68.5 - parent: 0 - type: Transform -- uid: 12232 - type: Grille - components: - - pos: -43.5,69.5 - parent: 0 - type: Transform -- uid: 12233 - type: Grille - components: - - pos: -36.5,68.5 - parent: 0 - type: Transform -- uid: 12234 - type: Grille - components: - - pos: -34.5,70.5 - parent: 0 - type: Transform -- uid: 12235 - type: Grille - components: - - pos: -34.5,71.5 - parent: 0 - type: Transform -- uid: 12236 - type: Grille - components: - - pos: -34.5,72.5 - parent: 0 - type: Transform -- uid: 12237 - type: Grille - components: - - pos: -33.5,72.5 - parent: 0 - type: Transform -- uid: 12238 - type: Grille - components: - - pos: -32.5,72.5 - parent: 0 - type: Transform -- uid: 12239 - type: Grille - components: - - pos: -31.5,72.5 - parent: 0 - type: Transform -- uid: 12240 - type: Grille - components: - - pos: -30.5,72.5 - parent: 0 - type: Transform -- uid: 12241 - type: Grille - components: - - pos: -30.5,71.5 - parent: 0 - type: Transform -- uid: 12242 - type: Grille - components: - - pos: -30.5,70.5 - parent: 0 - type: Transform -- uid: 12243 - type: Grille - components: - - pos: -35.5,68.5 - parent: 0 - type: Transform -- uid: 12244 - type: Grille - components: - - pos: -37.5,68.5 - parent: 0 - type: Transform -- uid: 12245 - type: Grille - components: - - pos: -38.5,68.5 - parent: 0 - type: Transform -- uid: 12246 - type: Grille - components: - - pos: -40.5,68.5 - parent: 0 - type: Transform -- uid: 12247 - type: Grille - components: - - pos: -30.5,68.5 - parent: 0 - type: Transform -- uid: 12248 - type: Grille - components: - - pos: -29.5,68.5 - parent: 0 - type: Transform -- uid: 12249 - type: Grille - components: - - pos: -28.5,68.5 - parent: 0 - type: Transform -- uid: 12250 - type: Grille - components: - - pos: -27.5,68.5 - parent: 0 - type: Transform -- uid: 12251 - type: Grille - components: - - pos: -26.5,68.5 - parent: 0 - type: Transform -- uid: 12252 - type: Grille - components: - - pos: -23.5,68.5 - parent: 0 - type: Transform -- uid: 12253 - type: Grille - components: - - pos: -41.5,50.5 - parent: 0 - type: Transform -- uid: 12254 - type: Grille - components: - - pos: -41.5,51.5 - parent: 0 - type: Transform -- uid: 12255 - type: Grille - components: - - pos: -41.5,52.5 - parent: 0 - type: Transform -- uid: 12256 - type: Grille - components: - - pos: -41.5,53.5 - parent: 0 - type: Transform -- uid: 12257 - type: Grille - components: - - pos: -42.5,56.5 - parent: 0 - type: Transform -- uid: 12258 - type: Grille - components: - - pos: -42.5,57.5 - parent: 0 - type: Transform -- uid: 12259 - type: Grille - components: - - pos: -42.5,58.5 - parent: 0 - type: Transform -- uid: 12260 - type: Grille - components: - - pos: -42.5,59.5 - parent: 0 - type: Transform -- uid: 12261 - type: Grille - components: - - pos: -42.5,61.5 - parent: 0 - type: Transform -- uid: 12262 - type: Grille - components: - - pos: -42.5,62.5 - parent: 0 - type: Transform -- uid: 12263 - type: Grille - components: - - pos: -42.5,63.5 - parent: 0 - type: Transform -- uid: 12264 - type: Grille - components: - - pos: -42.5,64.5 - parent: 0 - type: Transform -- uid: 12265 - type: GrilleBroken - components: - - pos: -42.5,60.5 - parent: 0 - type: Transform -- uid: 12266 - type: GrilleBroken - components: - - pos: -42.5,65.5 - parent: 0 - type: Transform -- uid: 12267 - type: GrilleBroken - components: - - pos: -42.5,69.5 - parent: 0 - type: Transform -- uid: 12268 - type: GrilleBroken - components: - - pos: -39.5,68.5 - parent: 0 - type: Transform -- uid: 12269 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -25.5,68.5 - parent: 0 - type: Transform -- uid: 12270 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -24.5,68.5 - parent: 0 - type: Transform -- uid: 12271 - type: Grille - components: - - pos: -20.5,64.5 - parent: 0 - type: Transform -- uid: 12272 - type: Grille - components: - - pos: -20.5,65.5 - parent: 0 - type: Transform -- uid: 12273 - type: Grille - components: - - pos: -20.5,66.5 - parent: 0 - type: Transform -- uid: 12275 - type: ClothingHandsGlovesColorYellow - components: - - pos: 19.510122,7.5531387 - parent: 0 - type: Transform -- uid: 12276 - type: BoxLightMixed - components: - - pos: 20.494497,6.5062637 - parent: 0 - type: Transform -- uid: 12277 - type: SheetSteel - components: - - pos: 20.494497,6.6000137 - parent: 0 - type: Transform -- uid: 12278 - type: SheetGlass - components: - - pos: 23.494497,6.5375137 - parent: 0 - type: Transform -- uid: 12279 - type: PartRodMetal - components: - - pos: 23.556997,6.6000137 - parent: 0 - type: Transform -- uid: 12280 - type: DoorElectronics - components: - - pos: 22.463247,6.6468887 - parent: 0 - type: Transform -- uid: 12281 - type: DoorElectronics - components: - - pos: 22.572622,6.4437637 - parent: 0 - type: Transform -- uid: 12282 - type: CableApcExtension - components: - - pos: 21.5,4.5 - parent: 0 - type: Transform -- uid: 12283 - type: CableApcExtension - components: - - pos: 21.5,5.5 - parent: 0 - type: Transform -- uid: 12284 - type: CableApcExtension - components: - - pos: 21.5,6.5 - parent: 0 - type: Transform -- uid: 12285 - type: CableApcExtension - components: - - pos: 21.5,7.5 - parent: 0 - type: Transform -- uid: 12286 - type: CableApcExtension - components: - - pos: 21.5,8.5 - parent: 0 - type: Transform -- uid: 12287 - type: PoweredSmallLight - components: - - pos: 20.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12288 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12289 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: 18.5,5.5 - parent: 0 - type: Transform -- uid: 12290 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 18.500496,5.717153 - parent: 0 - type: Transform -- uid: 12291 - type: SignDirectionalBridge - components: - - pos: 18.500496,5.310903 - parent: 0 - type: Transform -- uid: 12292 - type: ClothingOuterVestHazard - components: - - pos: 19.546776,7.4788427 - parent: 0 - type: Transform -- uid: 12293 - type: ExtinguisherCabinetFilled - components: - - pos: 32.5,5.5 - parent: 0 - type: Transform -- uid: 12294 - type: PosterLegitBuild - components: - - pos: 44.5,5.5 - parent: 0 - type: Transform -- uid: 12295 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: 53.5,11.5 - parent: 0 - type: Transform -- uid: 12296 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: 54.5,11.5 - parent: 0 - type: Transform -- uid: 12297 - type: Protolathe - components: - - pos: 56.5,9.5 - parent: 0 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold - type: MaterialStorage -- uid: 12298 - type: Autolathe - components: - - pos: 56.5,10.5 - parent: 0 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage -- uid: 12299 - type: TableReinforced - components: - - pos: 53.5,7.5 - parent: 0 - type: Transform -- uid: 12300 - type: TableReinforced - components: - - pos: 53.5,8.5 - parent: 0 - type: Transform -- uid: 12301 - type: Rack - components: - - pos: 56.5,11.5 - parent: 0 - type: Transform -- uid: 12302 - type: Rack - components: - - pos: 55.5,11.5 - parent: 0 - type: Transform -- uid: 12303 - type: Rack - components: - - pos: 56.5,7.5 - parent: 0 - type: Transform -- uid: 12304 - type: ExtinguisherCabinetFilled - components: - - pos: 59.5,6.5 - parent: 0 - type: Transform -- uid: 12305 - type: SignSecureMed - components: - - pos: 57.5,6.5 - parent: 0 - type: Transform -- uid: 12306 - type: KitchenMicrowave - components: - - pos: 53.5,8.5 - parent: 0 - type: Transform -- uid: 12307 - type: SignSecureMed - components: - - pos: 61.5,2.5 - parent: 0 - type: Transform -- uid: 12308 - type: SignAi - components: - - pos: 60.5,2.5 - parent: 0 - type: Transform -- uid: 12309 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 44.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12310 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12311 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12312 - type: Poweredlight - components: - - pos: 57.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12313 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 56.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12314 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 52.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12315 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12316 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12317 - type: PoweredSmallLight - components: - - pos: 55.5,11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12318 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12319 - type: GasPipeStraight - components: - - pos: 46.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12320 - type: GasPipeStraight - components: - - pos: 46.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12321 - type: GasPipeStraight - components: - - pos: 46.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12322 - type: GasPipeStraight - components: - - pos: 46.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12323 - type: GasPipeStraight - components: - - pos: 46.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12324 - type: GasPipeStraight - components: - - pos: 46.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12325 - type: GasPipeStraight - components: - - pos: 46.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12326 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 46.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12327 - type: GasPipeStraight - components: - - pos: 46.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12328 - type: GasPipeStraight - components: - - pos: 46.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12329 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 50.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12330 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 47.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12331 - type: GasPipeStraight - components: - - pos: 47.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12332 - type: GasPipeStraight - components: - - pos: 47.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12333 - type: GasPipeStraight - components: - - pos: 47.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12334 - type: GasPipeStraight - components: - - pos: 47.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12335 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12336 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12337 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 42.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12338 - type: GasPipeStraight - components: - - pos: 42.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12339 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12340 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12341 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12342 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 54.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12343 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 55.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12344 - type: GasPipeTJunction - components: - - pos: 59.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12345 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12346 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12347 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12348 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12349 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12350 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12351 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12352 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12353 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12354 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12355 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 55.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12356 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12357 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12358 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12359 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12360 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 50.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12361 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 50.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12362 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12363 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12364 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12365 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12366 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12367 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12368 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12369 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 59.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 12370 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12371 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 61.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12372 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12373 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12374 - type: GasVentPump - components: - - pos: 54.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12375 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 64.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12376 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 59.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12377 - type: GasVentScrubber - components: - - pos: 55.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12378 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 56.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12379 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12380 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12381 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12382 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12383 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12384 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12385 - type: CableHV - components: - - pos: 40.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12386 - type: CableHV - components: - - pos: 40.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12387 - type: CableHV - components: - - pos: 40.5,2.5 - parent: 0 - type: Transform -- uid: 12388 - type: CableHV - components: - - pos: 40.5,3.5 - parent: 0 - type: Transform -- uid: 12389 - type: CableHV - components: - - pos: 41.5,3.5 - parent: 0 - type: Transform -- uid: 12390 - type: CableHV - components: - - pos: 42.5,3.5 - parent: 0 - type: Transform -- uid: 12391 - type: CableHV - components: - - pos: 43.5,3.5 - parent: 0 - type: Transform -- uid: 12392 - type: CableHV - components: - - pos: 44.5,3.5 - parent: 0 - type: Transform -- uid: 12393 - type: CableHV - components: - - pos: 45.5,3.5 - parent: 0 - type: Transform -- uid: 12394 - type: CableHV - components: - - pos: 46.5,3.5 - parent: 0 - type: Transform -- uid: 12395 - type: CableHV - components: - - pos: 47.5,3.5 - parent: 0 - type: Transform -- uid: 12396 - type: CableHV - components: - - pos: 48.5,3.5 - parent: 0 - type: Transform -- uid: 12397 - type: CableHV - components: - - pos: 49.5,3.5 - parent: 0 - type: Transform -- uid: 12398 - type: CableHV - components: - - pos: 50.5,3.5 - parent: 0 - type: Transform -- uid: 12399 - type: CableHV - components: - - pos: 51.5,3.5 - parent: 0 - type: Transform -- uid: 12400 - type: CableHV - components: - - pos: 52.5,3.5 - parent: 0 - type: Transform -- uid: 12401 - type: CableHV - components: - - pos: 53.5,3.5 - parent: 0 - type: Transform -- uid: 12402 - type: CableHV - components: - - pos: 54.5,3.5 - parent: 0 - type: Transform -- uid: 12403 - type: CableHV - components: - - pos: 55.5,3.5 - parent: 0 - type: Transform -- uid: 12404 - type: CableHV - components: - - pos: 56.5,3.5 - parent: 0 - type: Transform -- uid: 12405 - type: CableHV - components: - - pos: 57.5,3.5 - parent: 0 - type: Transform -- uid: 12406 - type: CableHV - components: - - pos: 58.5,3.5 - parent: 0 - type: Transform -- uid: 12407 - type: CableHV - components: - - pos: 58.5,4.5 - parent: 0 - type: Transform -- uid: 12408 - type: CableHV - components: - - pos: 58.5,5.5 - parent: 0 - type: Transform -- uid: 12409 - type: CableHV - components: - - pos: 58.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12410 - type: CableHV - components: - - pos: 58.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12411 - type: CableHV - components: - - pos: 59.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12412 - type: CableHV - components: - - pos: 60.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12413 - type: CableHV - components: - - pos: 51.5,2.5 - parent: 0 - type: Transform -- uid: 12414 - type: CableHV - components: - - pos: 51.5,1.5 - parent: 0 - type: Transform -- uid: 12415 - type: CableHV - components: - - pos: 51.5,0.5 - parent: 0 - type: Transform -- uid: 12416 - type: CableHV - components: - - pos: 51.5,-0.5 - parent: 0 - type: Transform -- uid: 12417 - type: CableHV - components: - - pos: 51.5,-1.5 - parent: 0 - type: Transform -- uid: 12418 - type: CableHV - components: - - pos: 51.5,-2.5 - parent: 0 - type: Transform -- uid: 12419 - type: CableHV - components: - - pos: 51.5,-3.5 - parent: 0 - type: Transform -- uid: 12420 - type: CableHV - components: - - pos: 51.5,-4.5 - parent: 0 - type: Transform -- uid: 12421 - type: CableHV - components: - - pos: 51.5,-5.5 - parent: 0 - type: Transform -- uid: 12422 - type: CableHV - components: - - pos: 51.5,-6.5 - parent: 0 - type: Transform -- uid: 12423 - type: CableHV - components: - - pos: 51.5,-7.5 - parent: 0 - type: Transform -- uid: 12424 - type: CableHV - components: - - pos: 51.5,-8.5 - parent: 0 - type: Transform -- uid: 12425 - type: CableHV - components: - - pos: 52.5,-8.5 - parent: 0 - type: Transform -- uid: 12426 - type: CableHV - components: - - pos: 53.5,-8.5 - parent: 0 - type: Transform -- uid: 12427 - type: CableHV - components: - - pos: 54.5,-8.5 - parent: 0 - type: Transform -- uid: 12428 - type: CableHV - components: - - pos: 54.5,-9.5 - parent: 0 - type: Transform -- uid: 12429 - type: CableHV - components: - - pos: 54.5,-10.5 - parent: 0 - type: Transform -- uid: 12430 - type: CableHV - components: - - pos: 54.5,-11.5 - parent: 0 - type: Transform -- uid: 12431 - type: CableHV - components: - - pos: 53.5,-11.5 - parent: 0 - type: Transform -- uid: 12432 - type: CableHV - components: - - pos: 52.5,-11.5 - parent: 0 - type: Transform -- uid: 12433 - type: CableHV - components: - - pos: 52.5,-12.5 - parent: 0 - type: Transform -- uid: 12434 - type: CableHV - components: - - pos: 52.5,-13.5 - parent: 0 - type: Transform -- uid: 12435 - type: CableHV - components: - - pos: 52.5,-14.5 - parent: 0 - type: Transform -- uid: 12436 - type: CableHV - components: - - pos: 52.5,-15.5 - parent: 0 - type: Transform -- uid: 12437 - type: CableHV - components: - - pos: 52.5,-16.5 - parent: 0 - type: Transform -- uid: 12438 - type: CableHV - components: - - pos: 52.5,-17.5 - parent: 0 - type: Transform -- uid: 12439 - type: CableHV - components: - - pos: 52.5,-18.5 - parent: 0 - type: Transform -- uid: 12440 - type: CableHV - components: - - pos: 52.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12441 - type: CableHV - components: - - pos: 52.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12442 - type: CableHV - components: - - pos: 51.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12443 - type: CableHV - components: - - pos: 50.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12444 - type: CableHV - components: - - pos: 49.5,-20.5 - parent: 0 - type: Transform -- uid: 12445 - type: CableHV - components: - - pos: 48.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12446 - type: CableHV - components: - - pos: 47.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12447 - type: CableHV - components: - - pos: 46.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12448 - type: CableHV - components: - - pos: 45.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12449 - type: CableHV - components: - - pos: 44.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12450 - type: CableHV - components: - - pos: 43.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12451 - type: CableHV - components: - - pos: 42.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12452 - type: CableMV - components: - - pos: 60.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12453 - type: CableMV - components: - - pos: 59.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12454 - type: CableMV - components: - - pos: 58.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12455 - type: CableMV - components: - - pos: 58.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12456 - type: CableMV - components: - - pos: 58.5,5.5 - parent: 0 - type: Transform -- uid: 12457 - type: CableMV - components: - - pos: 58.5,4.5 - parent: 0 - type: Transform -- uid: 12458 - type: CableMV - components: - - pos: 58.5,3.5 - parent: 0 - type: Transform -- uid: 12459 - type: CableMV - components: - - pos: 58.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12460 - type: CableMV - components: - - pos: 57.5,4.5 - parent: 0 - type: Transform -- uid: 12461 - type: CableMV - components: - - pos: 56.5,4.5 - parent: 0 - type: Transform -- uid: 12462 - type: CableMV - components: - - pos: 55.5,4.5 - parent: 0 - type: Transform -- uid: 12463 - type: CableMV - components: - - pos: 54.5,4.5 - parent: 0 - type: Transform -- uid: 12464 - type: CableMV - components: - - pos: 54.5,5.5 - parent: 0 - type: Transform -- uid: 12465 - type: CableMV - components: - - pos: 54.5,6.5 - parent: 0 - type: Transform -- uid: 12466 - type: CableMV - components: - - pos: 54.5,7.5 - parent: 0 - type: Transform -- uid: 12467 - type: CableMV - components: - - pos: 53.5,7.5 - parent: 0 - type: Transform -- uid: 12468 - type: CableMV - components: - - pos: 52.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12469 - type: CableApcExtension - components: - - pos: 52.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12470 - type: CableApcExtension - components: - - pos: 53.5,7.5 - parent: 0 - type: Transform -- uid: 12471 - type: CableApcExtension - components: - - pos: 54.5,7.5 - parent: 0 - type: Transform -- uid: 12472 - type: CableApcExtension - components: - - pos: 55.5,7.5 - parent: 0 - type: Transform -- uid: 12473 - type: CableApcExtension - components: - - pos: 54.5,8.5 - parent: 0 - type: Transform -- uid: 12474 - type: CableApcExtension - components: - - pos: 54.5,9.5 - parent: 0 - type: Transform -- uid: 12475 - type: CableApcExtension - components: - - pos: 54.5,10.5 - parent: 0 - type: Transform -- uid: 12476 - type: CableApcExtension - components: - - pos: 58.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12477 - type: CableApcExtension - components: - - pos: 58.5,3.5 - parent: 0 - type: Transform -- uid: 12478 - type: CableApcExtension - components: - - pos: 58.5,4.5 - parent: 0 - type: Transform -- uid: 12479 - type: CableApcExtension - components: - - pos: 58.5,5.5 - parent: 0 - type: Transform -- uid: 12480 - type: CableApcExtension - components: - - pos: 57.5,3.5 - parent: 0 - type: Transform -- uid: 12481 - type: CableApcExtension - components: - - pos: 56.5,3.5 - parent: 0 - type: Transform -- uid: 12482 - type: CableApcExtension - components: - - pos: 55.5,3.5 - parent: 0 - type: Transform -- uid: 12483 - type: CableApcExtension - components: - - pos: 54.5,3.5 - parent: 0 - type: Transform -- uid: 12484 - type: CableApcExtension - components: - - pos: 53.5,3.5 - parent: 0 - type: Transform -- uid: 12485 - type: CableApcExtension - components: - - pos: 52.5,3.5 - parent: 0 - type: Transform -- uid: 12486 - type: CableApcExtension - components: - - pos: 51.5,3.5 - parent: 0 - type: Transform -- uid: 12487 - type: CableApcExtension - components: - - pos: 50.5,3.5 - parent: 0 - type: Transform -- uid: 12488 - type: CableApcExtension - components: - - pos: 50.5,2.5 - parent: 0 - type: Transform -- uid: 12489 - type: CableApcExtension - components: - - pos: 50.5,1.5 - parent: 0 - type: Transform -- uid: 12490 - type: CableApcExtension - components: - - pos: 50.5,0.5 - parent: 0 - type: Transform -- uid: 12491 - type: CableApcExtension - components: - - pos: 50.5,-0.5 - parent: 0 - type: Transform -- uid: 12492 - type: CableApcExtension - components: - - pos: 50.5,-1.5 - parent: 0 - type: Transform -- uid: 12493 - type: CableApcExtension - components: - - pos: 50.5,-2.5 - parent: 0 - type: Transform -- uid: 12494 - type: CableApcExtension - components: - - pos: 50.5,-3.5 - parent: 0 - type: Transform -- uid: 12495 - type: CableApcExtension - components: - - pos: 51.5,-3.5 - parent: 0 - type: Transform -- uid: 12496 - type: CableApcExtension - components: - - pos: 51.5,-0.5 - parent: 0 - type: Transform -- uid: 12497 - type: CableApcExtension - components: - - pos: 52.5,-0.5 - parent: 0 - type: Transform -- uid: 12498 - type: CableApcExtension - components: - - pos: 53.5,-0.5 - parent: 0 - type: Transform -- uid: 12499 - type: CableApcExtension - components: - - pos: 54.5,-0.5 - parent: 0 - type: Transform -- uid: 12500 - type: CableApcExtension - components: - - pos: 55.5,-0.5 - parent: 0 - type: Transform -- uid: 12501 - type: CableApcExtension - components: - - pos: 56.5,-0.5 - parent: 0 - type: Transform -- uid: 12502 - type: CableApcExtension - components: - - pos: 56.5,-1.5 - parent: 0 - type: Transform -- uid: 12503 - type: CableApcExtension - components: - - pos: 56.5,-2.5 - parent: 0 - type: Transform -- uid: 12504 - type: CableApcExtension - components: - - pos: 59.5,2.5 - parent: 0 - type: Transform -- uid: 12505 - type: CableApcExtension - components: - - pos: 59.5,1.5 - parent: 0 - type: Transform -- uid: 12506 - type: CableApcExtension - components: - - pos: 59.5,0.5 - parent: 0 - type: Transform -- uid: 12507 - type: CableApcExtension - components: - - pos: 59.5,-0.5 - parent: 0 - type: Transform -- uid: 12508 - type: CableApcExtension - components: - - pos: 60.5,-0.5 - parent: 0 - type: Transform -- uid: 12509 - type: CableApcExtension - components: - - pos: 60.5,-1.5 - parent: 0 - type: Transform -- uid: 12510 - type: CableApcExtension - components: - - pos: 60.5,-2.5 - parent: 0 - type: Transform -- uid: 12511 - type: CableApcExtension - components: - - pos: 61.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12512 - type: CableApcExtension - components: - - pos: 62.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12513 - type: CableApcExtension - components: - - pos: 60.5,1.5 - parent: 0 - type: Transform -- uid: 12514 - type: CableApcExtension - components: - - pos: 61.5,1.5 - parent: 0 - type: Transform -- uid: 12515 - type: CableApcExtension - components: - - pos: 59.5,4.5 - parent: 0 - type: Transform -- uid: 12516 - type: CableApcExtension - components: - - pos: 60.5,4.5 - parent: 0 - type: Transform -- uid: 12517 - type: CableApcExtension - components: - - pos: 61.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12518 - type: CableApcExtension - components: - - pos: 62.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12519 - type: CableApcExtension - components: - - pos: 63.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12520 - type: CableApcExtension - components: - - pos: 64.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12521 - type: CableApcExtension - components: - - pos: 65.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12522 - type: CableApcExtension - components: - - pos: 66.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12523 - type: CableApcExtension - components: - - pos: 67.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12524 - type: CableApcExtension - components: - - pos: 58.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12525 - type: CableApcExtension - components: - - pos: 58.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12526 - type: CableApcExtension - components: - - pos: 58.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12527 - type: CableApcExtension - components: - - pos: 58.5,9.5 - parent: 0 - type: Transform -- uid: 12528 - type: CableApcExtension - components: - - pos: 59.5,9.5 - parent: 0 - type: Transform -- uid: 12529 - type: CableApcExtension - components: - - pos: 59.5,10.5 - parent: 0 - type: Transform -- uid: 12530 - type: CableApcExtension - components: - - pos: 51.5,7.5 - parent: 0 - type: Transform -- uid: 12531 - type: CableApcExtension - components: - - pos: 50.5,7.5 - parent: 0 - type: Transform -- uid: 12532 - type: CableApcExtension - components: - - pos: 50.5,8.5 - parent: 0 - type: Transform -- uid: 12533 - type: CableApcExtension - components: - - pos: 50.5,9.5 - parent: 0 - type: Transform -- uid: 12534 - type: CableApcExtension - components: - - pos: 50.5,10.5 - parent: 0 - type: Transform -- uid: 12535 - type: CableApcExtension - components: - - pos: 50.5,4.5 - parent: 0 - type: Transform -- uid: 12536 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 48.5,10.5 - parent: 0 - type: Transform -- uid: 12537 - type: CableMV - components: - - pos: 51.5,7.5 - parent: 0 - type: Transform -- uid: 12538 - type: CableMV - components: - - pos: 50.5,7.5 - parent: 0 - type: Transform -- uid: 12539 - type: CableMV - components: - - pos: 49.5,7.5 - parent: 0 - type: Transform -- uid: 12540 - type: CableMV - components: - - pos: 49.5,8.5 - parent: 0 - type: Transform -- uid: 12541 - type: CableMV - components: - - pos: 49.5,9.5 - parent: 0 - type: Transform -- uid: 12542 - type: CableMV - components: - - pos: 49.5,10.5 - parent: 0 - type: Transform -- uid: 12543 - type: CableMV - components: - - pos: 48.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12544 - type: CableApcExtension - components: - - pos: 48.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12545 - type: CableApcExtension - components: - - pos: 47.5,10.5 - parent: 0 - type: Transform -- uid: 12546 - type: CableApcExtension - components: - - pos: 46.5,10.5 - parent: 0 - type: Transform -- uid: 12547 - type: CableApcExtension - components: - - pos: 45.5,10.5 - parent: 0 - type: Transform -- uid: 12548 - type: CableApcExtension - components: - - pos: 44.5,10.5 - parent: 0 - type: Transform -- uid: 12549 - type: CableApcExtension - components: - - pos: 43.5,10.5 - parent: 0 - type: Transform -- uid: 12550 - type: CableApcExtension - components: - - pos: 42.5,10.5 - parent: 0 - type: Transform -- uid: 12551 - type: CableApcExtension - components: - - pos: 42.5,9.5 - parent: 0 - type: Transform -- uid: 12552 - type: CableApcExtension - components: - - pos: 42.5,8.5 - parent: 0 - type: Transform -- uid: 12553 - type: CableApcExtension - components: - - pos: 42.5,7.5 - parent: 0 - type: Transform -- uid: 12554 - type: CableApcExtension - components: - - pos: 42.5,6.5 - parent: 0 - type: Transform -- uid: 12555 - type: CableApcExtension - components: - - pos: 47.5,9.5 - parent: 0 - type: Transform -- uid: 12556 - type: CableApcExtension - components: - - pos: 47.5,8.5 - parent: 0 - type: Transform -- uid: 12557 - type: CableApcExtension - components: - - pos: 47.5,7.5 - parent: 0 - type: Transform -- uid: 12558 - type: CableApcExtension - components: - - pos: 47.5,6.5 - parent: 0 - type: Transform -- uid: 12559 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12560 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12561 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12562 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 51.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12563 - type: GasVentScrubber - components: - - pos: 51.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12564 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 49.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12565 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12566 - type: BlastDoorOpen - components: - - pos: 49.5,5.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12569 - type: SignalReceiver -- uid: 12567 - type: BlastDoorOpen - components: - - pos: 50.5,5.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12569 - type: SignalReceiver -- uid: 12568 - type: BlastDoorOpen - components: - - pos: 51.5,5.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 12569 - type: SignalReceiver -- uid: 12569 - type: SignalButton - components: - - name: Engineering Blast Doors - type: MetaData - - pos: 48.5,6.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 12566 - - port: Toggle - uid: 12567 - - port: Toggle - uid: 12568 - type: SignalTransmitter -- uid: 12570 - type: LightReplacer - components: - - pos: 56.45862,11.6050415 - parent: 0 - type: Transform -- uid: 12571 - type: ClothingBeltUtilityFilled - components: - - pos: 56.536743,7.5112915 - parent: 0 - type: Transform -- uid: 12572 - type: ClosetToolFilled - components: - - pos: 56.5,8.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12573 - type: BoxFolderYellow - components: - - pos: 49.503273,-2.5632868 - parent: 0 - type: Transform -- uid: 12574 - type: SpawnMobCleanBot - components: - - pos: 14.5,9.5 - parent: 0 - type: Transform -- uid: 12575 - type: DonkpocketBoxSpawner - components: - - pos: 53.5,7.5 - parent: 0 - type: Transform -- uid: 12576 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 59.5,7.5 - parent: 0 - type: Transform -- uid: 12577 - type: ChairOfficeDark - components: - - pos: 45.5,10.5 - parent: 0 - type: Transform -- uid: 12578 - type: RCD - components: - - pos: 45.49111,6.5163803 - parent: 0 - type: Transform -- uid: 12579 - type: RCDAmmo - components: - - pos: 43.381737,8.657005 - parent: 0 - type: Transform -- uid: 12580 - type: RCDAmmo - components: - - pos: 43.631737,8.657005 - parent: 0 - type: Transform -- uid: 12581 - type: Lamp - components: - - pos: 43.569237,9.89138 - parent: 0 - type: Transform -- uid: 12582 - type: CableApcStack - components: - - pos: 46.162987,9.688255 - parent: 0 - type: Transform -- uid: 12583 - type: CableMVStack - components: - - pos: 46.287987,9.594505 - parent: 0 - type: Transform -- uid: 12584 - type: CableHVStack - components: - - pos: 46.42861,9.469505 - parent: 0 - type: Transform -- uid: 12585 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 47.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12586 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 42.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12587 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12588 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12589 - type: APCBasic - components: - - pos: 37.5,11.5 - parent: 0 - type: Transform -- uid: 12590 - type: CableApcExtension - components: - - pos: 37.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12591 - type: CableApcExtension - components: - - pos: 37.5,10.5 - parent: 0 - type: Transform -- uid: 12592 - type: CableApcExtension - components: - - pos: 37.5,9.5 - parent: 0 - type: Transform -- uid: 12593 - type: CableApcExtension - components: - - pos: 37.5,8.5 - parent: 0 - type: Transform -- uid: 12594 - type: CableApcExtension - components: - - pos: 37.5,7.5 - parent: 0 - type: Transform -- uid: 12595 - type: CableApcExtension - components: - - pos: 38.5,7.5 - parent: 0 - type: Transform -- uid: 12596 - type: CableApcExtension - components: - - pos: 39.5,7.5 - parent: 0 - type: Transform -- uid: 12597 - type: CableApcExtension - components: - - pos: 36.5,7.5 - parent: 0 - type: Transform -- uid: 12598 - type: CableApcExtension - components: - - pos: 35.5,7.5 - parent: 0 - type: Transform -- uid: 12599 - type: CableApcExtension - components: - - pos: 34.5,7.5 - parent: 0 - type: Transform -- uid: 12600 - type: CableApcExtension - components: - - pos: 33.5,7.5 - parent: 0 - type: Transform -- uid: 12601 - type: CableApcExtension - components: - - pos: 36.5,9.5 - parent: 0 - type: Transform -- uid: 12602 - type: CableApcExtension - components: - - pos: 39.5,6.5 - parent: 0 - type: Transform -- uid: 12603 - type: CableApcExtension - components: - - pos: 39.5,5.5 - parent: 0 - type: Transform -- uid: 12604 - type: CableApcExtension - components: - - pos: 39.5,4.5 - parent: 0 - type: Transform -- uid: 12605 - type: CableApcExtension - components: - - pos: 39.5,3.5 - parent: 0 - type: Transform -- uid: 12606 - type: CableApcExtension - components: - - pos: 40.5,3.5 - parent: 0 - type: Transform -- uid: 12607 - type: CableApcExtension - components: - - pos: 41.5,3.5 - parent: 0 - type: Transform -- uid: 12608 - type: CableApcExtension - components: - - pos: 42.5,3.5 - parent: 0 - type: Transform -- uid: 12609 - type: CableApcExtension - components: - - pos: 43.5,3.5 - parent: 0 - type: Transform -- uid: 12610 - type: CableApcExtension - components: - - pos: 44.5,3.5 - parent: 0 - type: Transform -- uid: 12611 - type: CableApcExtension - components: - - pos: 45.5,3.5 - parent: 0 - type: Transform -- uid: 12612 - type: CableApcExtension - components: - - pos: 46.5,3.5 - parent: 0 - type: Transform -- uid: 12613 - type: CableApcExtension - components: - - pos: 22.5,3.5 - parent: 0 - type: Transform -- uid: 12614 - type: CableApcExtension - components: - - pos: 23.5,3.5 - parent: 0 - type: Transform -- uid: 12615 - type: CableApcExtension - components: - - pos: 24.5,3.5 - parent: 0 - type: Transform -- uid: 12616 - type: CableApcExtension - components: - - pos: 25.5,3.5 - parent: 0 - type: Transform -- uid: 12617 - type: CableApcExtension - components: - - pos: 26.5,3.5 - parent: 0 - type: Transform -- uid: 12618 - type: CableApcExtension - components: - - pos: 38.5,3.5 - parent: 0 - type: Transform -- uid: 12619 - type: CableApcExtension - components: - - pos: 37.5,3.5 - parent: 0 - type: Transform -- uid: 12620 - type: CableApcExtension - components: - - pos: 36.5,3.5 - parent: 0 - type: Transform -- uid: 12621 - type: CableApcExtension - components: - - pos: 35.5,3.5 - parent: 0 - type: Transform -- uid: 12622 - type: CableApcExtension - components: - - pos: 34.5,3.5 - parent: 0 - type: Transform -- uid: 12623 - type: CableApcExtension - components: - - pos: 33.5,3.5 - parent: 0 - type: Transform -- uid: 12624 - type: CableApcExtension - components: - - pos: 32.5,3.5 - parent: 0 - type: Transform -- uid: 12625 - type: CableApcExtension - components: - - pos: 31.5,3.5 - parent: 0 - type: Transform -- uid: 12626 - type: CableApcExtension - components: - - pos: 30.5,3.5 - parent: 0 - type: Transform -- uid: 12627 - type: CableApcExtension - components: - - pos: 49.5,-1.5 - parent: 0 - type: Transform -- uid: 12628 - type: CableApcExtension - components: - - pos: 48.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12629 - type: CableApcExtension - components: - - pos: 47.5,-1.5 - parent: 0 - type: Transform -- uid: 12630 - type: CableApcExtension - components: - - pos: 46.5,-1.5 - parent: 0 - type: Transform -- uid: 12631 - type: CableApcExtension - components: - - pos: 46.5,-2.5 - parent: 0 - type: Transform -- uid: 12632 - type: CableApcExtension - components: - - pos: 46.5,-3.5 - parent: 0 - type: Transform -- uid: 12633 - type: CableApcExtension - components: - - pos: 45.5,-1.5 - parent: 0 - type: Transform -- uid: 12634 - type: CableApcExtension - components: - - pos: 44.5,-1.5 - parent: 0 - type: Transform -- uid: 12635 - type: CableApcExtension - components: - - pos: 43.5,-1.5 - parent: 0 - type: Transform -- uid: 12636 - type: CableApcExtension - components: - - pos: 43.5,-2.5 - parent: 0 - type: Transform -- uid: 12637 - type: CableApcExtension - components: - - pos: 43.5,-0.5 - parent: 0 - type: Transform -- uid: 12638 - type: CableApcExtension - components: - - pos: 46.5,-0.5 - parent: 0 - type: Transform -- uid: 12639 - type: CableApcExtension - components: - - pos: 46.5,0.5 - parent: 0 - type: Transform -- uid: 12640 - type: CableApcExtension - components: - - pos: 46.5,1.5 - parent: 0 - type: Transform -- uid: 12641 - type: Catwalk - components: - - pos: 40.5,-5.5 - parent: 0 - type: Transform -- uid: 12642 - type: Catwalk - components: - - pos: 40.5,-4.5 - parent: 0 - type: Transform -- uid: 12643 - type: Catwalk - components: - - pos: 40.5,-3.5 - parent: 0 - type: Transform -- uid: 12644 - type: Catwalk - components: - - pos: 40.5,-2.5 - parent: 0 - type: Transform -- uid: 12645 - type: Catwalk - components: - - pos: 40.5,-1.5 - parent: 0 - type: Transform -- uid: 12646 - type: FirelockGlass - components: - - pos: 43.5,-7.5 - parent: 0 - type: Transform -- uid: 12647 - type: Catwalk - components: - - pos: 43.5,-8.5 - parent: 0 - type: Transform -- uid: 12648 - type: Catwalk - components: - - pos: 43.5,-9.5 - parent: 0 - type: Transform -- uid: 12649 - type: Catwalk - components: - - pos: 43.5,-10.5 - parent: 0 - type: Transform -- uid: 12650 - type: Catwalk - components: - - pos: 43.5,-11.5 - parent: 0 - type: Transform -- uid: 12651 - type: Catwalk - components: - - pos: 43.5,-12.5 - parent: 0 - type: Transform -- uid: 12652 - type: Catwalk - components: - - pos: 43.5,-13.5 - parent: 0 - type: Transform -- uid: 12653 - type: Catwalk - components: - - pos: 43.5,-14.5 - parent: 0 - type: Transform -- uid: 12654 - type: Catwalk - components: - - pos: 43.5,-15.5 - parent: 0 - type: Transform -- uid: 12655 - type: Catwalk - components: - - pos: 43.5,-16.5 - parent: 0 - type: Transform -- uid: 12656 - type: Catwalk - components: - - pos: 43.5,-17.5 - parent: 0 - type: Transform -- uid: 12657 - type: AcousticGuitarInstrument - components: - - pos: 46.51438,8.721584 - parent: 0 - type: Transform -- uid: 12658 - type: ReinforcedWindow - components: - - pos: 35.5,51.5 - parent: 0 - type: Transform -- uid: 12659 - type: WallReinforced - components: - - pos: 35.5,49.5 - parent: 0 - type: Transform -- uid: 12660 - type: WallReinforced - components: - - pos: 35.5,50.5 - parent: 0 - type: Transform -- uid: 12661 - type: Grille - components: - - pos: 26.5,50.5 - parent: 0 - type: Transform -- uid: 12662 - type: Grille - components: - - pos: 36.5,49.5 - parent: 0 - type: Transform -- uid: 12663 - type: Grille - components: - - pos: 37.5,49.5 - parent: 0 - type: Transform -- uid: 12664 - type: Grille - components: - - pos: 38.5,48.5 - parent: 0 - type: Transform -- uid: 12665 - type: Grille - components: - - pos: 38.5,46.5 - parent: 0 - type: Transform -- uid: 12666 - type: Grille - components: - - pos: 39.5,45.5 - parent: 0 - type: Transform -- uid: 12667 - type: Grille - components: - - pos: 40.5,45.5 - parent: 0 - type: Transform -- uid: 12668 - type: Grille - components: - - pos: 41.5,46.5 - parent: 0 - type: Transform -- uid: 12669 - type: Grille - components: - - pos: 41.5,48.5 - parent: 0 - type: Transform -- uid: 12670 - type: Grille - components: - - pos: 40.5,49.5 - parent: 0 - type: Transform -- uid: 12671 - type: Grille - components: - - pos: 39.5,49.5 - parent: 0 - type: Transform -- uid: 12672 - type: Grille - components: - - pos: 35.5,51.5 - parent: 0 - type: Transform -- uid: 12673 - type: Grille - components: - - pos: 35.5,52.5 - parent: 0 - type: Transform -- uid: 12674 - type: Grille - components: - - pos: 35.5,53.5 - parent: 0 - type: Transform -- uid: 12675 - type: Grille - components: - - pos: 35.5,54.5 - parent: 0 - type: Transform -- uid: 12676 - type: Grille - components: - - pos: 33.5,55.5 - parent: 0 - type: Transform -- uid: 12677 - type: Grille - components: - - pos: 32.5,55.5 - parent: 0 - type: Transform -- uid: 12678 - type: Grille - components: - - pos: 31.5,55.5 - parent: 0 - type: Transform -- uid: 12679 - type: Grille - components: - - pos: 30.5,55.5 - parent: 0 - type: Transform -- uid: 12680 - type: Grille - components: - - pos: 26.5,52.5 - parent: 0 - type: Transform -- uid: 12681 - type: Grille - components: - - pos: 26.5,53.5 - parent: 0 - type: Transform -- uid: 12682 - type: Grille - components: - - pos: 26.5,54.5 - parent: 0 - type: Transform -- uid: 12683 - type: Grille - components: - - pos: 28.5,47.5 - parent: 0 - type: Transform -- uid: 12684 - type: Grille - components: - - pos: 31.5,47.5 - parent: 0 - type: Transform -- uid: 12685 - type: Grille - components: - - pos: 32.5,47.5 - parent: 0 - type: Transform -- uid: 12686 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12687 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12688 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12689 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12690 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12691 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12692 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12693 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12694 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 29.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12695 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 30.5,33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12696 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: 32.5,31.5 - parent: 0 - type: Transform -- uid: 12697 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 31.5,31.5 - parent: 0 - type: Transform -- uid: 12698 - type: Mirror - components: - - pos: 30.5,31.5 - parent: 0 - type: Transform -- uid: 12699 - type: Mirror - components: - - pos: 33.5,31.5 - parent: 0 - type: Transform -- uid: 12700 - type: Mirror - components: - - pos: 28.5,31.5 - parent: 0 - type: Transform -- uid: 12701 - type: ToiletDirtyWater - components: - - pos: 30.5,35.5 - parent: 0 - type: Transform -- uid: 12702 - type: ToiletEmpty - components: - - pos: 32.5,35.5 - parent: 0 - type: Transform -- uid: 12703 - type: Table - components: - - pos: 27.5,32.5 - parent: 0 - type: Transform -- uid: 12704 - type: ToiletEmpty - components: - - rot: -1.5707963267948966 rad - pos: 29.5,30.5 - parent: 0 - type: Transform -- uid: 12705 - type: Sink - components: - - pos: 28.5,30.5 - parent: 0 - type: Transform -- uid: 12706 - type: HospitalCurtainsOpen - components: - - pos: 27.5,29.5 - parent: 0 - type: Transform -- uid: 12707 - type: HospitalCurtainsOpen - components: - - pos: 28.5,33.5 - parent: 0 - type: Transform -- uid: 12708 - type: FloorDrain - components: - - pos: 28.5,34.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 12709 - type: RandomSoap - components: - - pos: 27.5,35.5 - parent: 0 - type: Transform -- uid: 12710 - type: Airlock - components: - - pos: 30.5,34.5 - parent: 0 - type: Transform -- uid: 12711 - type: Airlock - components: - - pos: 32.5,34.5 - parent: 0 - type: Transform -- uid: 12712 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12713 - type: PoweredSmallLight - components: - - pos: 28.5,35.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12714 - type: PoweredSmallLight - components: - - pos: 30.5,35.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12715 - type: PoweredSmallLight - components: - - pos: 32.5,35.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12716 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 28.5,30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12717 - type: PosterContrabandLustyExomorph - components: - - pos: 32.5,30.5 - parent: 0 - type: Transform -- uid: 12718 - type: ExtinguisherCabinetFilled - components: - - pos: 31.5,30.5 - parent: 0 - type: Transform -- uid: 12719 - type: Mirror - components: - - pos: 30.5,21.5 - parent: 0 - type: Transform -- uid: 12720 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 31.5,21.5 - parent: 0 - type: Transform -- uid: 12721 - type: ToiletEmpty - components: - - rot: -1.5707963267948966 rad - pos: 32.5,21.5 - parent: 0 - type: Transform -- uid: 12722 - type: HospitalCurtainsOpen - components: - - pos: 31.5,22.5 - parent: 0 - type: Transform -- uid: 12723 - type: Dresser - components: - - pos: 31.5,24.5 - parent: 0 - type: Transform -- uid: 12724 - type: Bed - components: - - pos: 32.5,24.5 - parent: 0 - type: Transform -- uid: 12725 - type: BedsheetSpawner - components: - - pos: 32.5,24.5 - parent: 0 - type: Transform -- uid: 12726 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12727 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12728 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12729 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 31.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12730 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12731 - type: ClosetFireFilled - components: - - pos: 37.5,22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12732 - type: DisposalUnit - components: - - pos: 37.5,21.5 - parent: 0 - type: Transform -- uid: 12733 - type: Dresser - components: - - pos: 31.5,29.5 - parent: 0 - type: Transform -- uid: 12734 - type: Bed - components: - - pos: 32.5,29.5 - parent: 0 - type: Transform -- uid: 12735 - type: BedsheetSpawner - components: - - pos: 32.5,29.5 - parent: 0 - type: Transform -- uid: 12736 - type: TableWood - components: - - pos: 31.5,26.5 - parent: 0 - type: Transform -- uid: 12737 - type: TableWood - components: - - pos: 32.5,26.5 - parent: 0 - type: Transform -- uid: 12738 - type: ChairWood - components: - - pos: 31.5,27.5 - parent: 0 - type: Transform -- uid: 12739 - type: CarpetOrange - components: - - pos: 28.5,27.5 - parent: 0 - type: Transform -- uid: 12740 - type: CarpetOrange - components: - - pos: 28.5,28.5 - parent: 0 - type: Transform -- uid: 12741 - type: CarpetOrange - components: - - pos: 29.5,27.5 - parent: 0 - type: Transform -- uid: 12742 - type: CarpetOrange - components: - - pos: 29.5,28.5 - parent: 0 - type: Transform -- uid: 12743 - type: CarpetOrange - components: - - pos: 30.5,27.5 - parent: 0 - type: Transform -- uid: 12744 - type: CarpetOrange - components: - - pos: 30.5,28.5 - parent: 0 - type: Transform -- uid: 12745 - type: CarpetOrange - components: - - pos: 31.5,28.5 - parent: 0 - type: Transform -- uid: 12746 - type: CarpetOrange - components: - - pos: 31.5,27.5 - parent: 0 - type: Transform -- uid: 12747 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12748 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12749 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12750 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12751 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12752 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12753 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12754 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 27.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12755 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12756 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12757 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 38.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12758 - type: Dresser - components: - - pos: 37.5,26.5 - parent: 0 - type: Transform -- uid: 12759 - type: Bed - components: - - pos: 38.5,26.5 - parent: 0 - type: Transform -- uid: 12760 - type: BedsheetSpawner - components: - - pos: 38.5,26.5 - parent: 0 - type: Transform -- uid: 12761 - type: TableWood - components: - - pos: 37.5,24.5 - parent: 0 - type: Transform -- uid: 12762 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 38.5,24.5 - parent: 0 - type: Transform -- uid: 12763 - type: Carpet - components: - - pos: 37.5,26.5 - parent: 0 - type: Transform -- uid: 12764 - type: Carpet - components: - - pos: 38.5,26.5 - parent: 0 - type: Transform -- uid: 12765 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12766 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 31.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12767 - type: PoweredSmallLight - components: - - pos: 32.5,29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12768 - type: PoweredSmallLight - components: - - pos: 28.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12769 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12770 - type: TableGlass - components: - - pos: 23.5,24.5 - parent: 0 - type: Transform -- uid: 12771 - type: TableGlass - components: - - pos: 20.5,25.5 - parent: 0 - type: Transform -- uid: 12772 - type: TableGlass - components: - - pos: 20.5,22.5 - parent: 0 - type: Transform -- uid: 12773 - type: ComfyChair - components: - - pos: 20.5,26.5 - parent: 0 - type: Transform -- uid: 12774 - type: ComfyChair - components: - - pos: 20.5,23.5 - parent: 0 - type: Transform -- uid: 12775 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 20.5,24.5 - parent: 0 - type: Transform -- uid: 12776 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 20.5,21.5 - parent: 0 - type: Transform -- uid: 12777 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 22.5,24.5 - parent: 0 - type: Transform -- uid: 12778 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 24.5,24.5 - parent: 0 - type: Transform -- uid: 12779 - type: PottedPlant21 - components: - - pos: 25.5,24.5 - parent: 0 - type: Transform -- uid: 12780 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 18.5,21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12781 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 25.5,21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12782 - type: Poweredlight - components: - - pos: 25.5,27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12783 - type: Poweredlight - components: - - pos: 18.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12784 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12785 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12786 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12787 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12788 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 21.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12789 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12790 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12791 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12792 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 22.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12793 - type: GasVentPump - components: - - pos: 27.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12794 - type: GasVentScrubber - components: - - pos: 29.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12795 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 10.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12796 - type: GasVentScrubber - components: - - pos: 13.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12797 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 35.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12798 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 30.5,28.5 - parent: 0 - type: Transform -- uid: 12799 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 28.5,28.5 - parent: 0 - type: Transform -- uid: 12800 - type: TableCarpet - components: - - pos: 29.5,28.5 - parent: 0 - type: Transform -- uid: 12801 - type: PlushieLamp - components: - - pos: 31.556364,26.770002 - parent: 0 - type: Transform -- uid: 12802 - type: Dresser - components: - - pos: 32.5,15.5 - parent: 0 - type: Transform -- uid: 12803 - type: Bed - components: - - pos: 31.5,15.5 - parent: 0 - type: Transform -- uid: 12804 - type: BedsheetClown - components: - - pos: 31.5,15.5 - parent: 0 - type: Transform -- uid: 12805 - type: Bed - components: - - pos: 38.5,15.5 - parent: 0 - type: Transform -- uid: 12806 - type: BedsheetSpawner - components: - - pos: 38.5,15.5 - parent: 0 - type: Transform -- uid: 12807 - type: Bed - components: - - pos: 38.5,19.5 - parent: 0 - type: Transform -- uid: 12808 - type: BedsheetSpawner - components: - - pos: 38.5,19.5 - parent: 0 - type: Transform -- uid: 12809 - type: Dresser - components: - - pos: 37.5,19.5 - parent: 0 - type: Transform -- uid: 12810 - type: TableWood - components: - - pos: 37.5,17.5 - parent: 0 - type: Transform -- uid: 12811 - type: ChairWood - components: - - pos: 38.5,18.5 - parent: 0 - type: Transform -- uid: 12812 - type: TableWood - components: - - pos: 38.5,17.5 - parent: 0 - type: Transform -- uid: 12813 - type: MaintenanceWeaponSpawner - components: - - pos: 38.5,17.5 - parent: 0 - type: Transform -- uid: 12814 - type: ClothingBeltHolster - components: - - pos: 37.47535,17.640844 - parent: 0 - type: Transform -- uid: 12815 - type: Table - components: - - pos: 37.5,15.5 - parent: 0 - type: Transform -- uid: 12816 - type: CarpetGreen - components: - - pos: 37.5,15.5 - parent: 0 - type: Transform -- uid: 12817 - type: CarpetGreen - components: - - pos: 38.5,15.5 - parent: 0 - type: Transform -- uid: 12818 - type: CarpetPurple - components: - - pos: 37.5,18.5 - parent: 0 - type: Transform -- uid: 12819 - type: CarpetPurple - components: - - pos: 38.5,18.5 - parent: 0 - type: Transform -- uid: 12820 - type: Carpet - components: - - pos: 37.5,25.5 - parent: 0 - type: Transform -- uid: 12821 - type: Carpet - components: - - pos: 38.5,25.5 - parent: 0 - type: Transform -- uid: 12822 - type: CarpetBlue - components: - - pos: 32.5,23.5 - parent: 0 - type: Transform -- uid: 12823 - type: CarpetBlue - components: - - pos: 32.5,24.5 - parent: 0 - type: Transform -- uid: 12824 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 35.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12825 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12826 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12827 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12828 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12829 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12830 - type: GasPipeStraight - components: - - pos: 35.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12831 - type: GasPipeStraight - components: - - pos: 35.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12832 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12833 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 37.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12834 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 38.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12835 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 31.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12836 - type: MaintenanceFluffSpawner - components: - - pos: 37.5,15.5 - parent: 0 - type: Transform -- uid: 12837 - type: BikeHorn - components: - - pos: 32.50686,14.562178 - parent: 0 - type: Transform -- uid: 12838 - type: PoweredSmallLight - components: - - pos: 32.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12839 - type: PoweredSmallLight - components: - - pos: 37.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12840 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12841 - type: MopBucket - components: - - pos: 38.445152,31.536383 - parent: 0 - type: Transform -- uid: 12842 - type: MopItem - components: - - pos: 38.460777,31.536383 - parent: 0 - type: Transform -- uid: 12843 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12844 - type: WetFloorSign - components: - - pos: 37.554527,31.458258 - parent: 0 - type: Transform -- uid: 12845 - type: TintedWindow - components: - - pos: 43.5,43.5 - parent: 0 - type: Transform -- uid: 12846 - type: TintedWindow - components: - - pos: 42.5,43.5 - parent: 0 - type: Transform -- uid: 12847 - type: TintedWindow - components: - - pos: 41.5,43.5 - parent: 0 - type: Transform -- uid: 12848 - type: TintedWindow - components: - - pos: 40.5,43.5 - parent: 0 - type: Transform -- uid: 12849 - type: TintedWindow - components: - - pos: 39.5,43.5 - parent: 0 - type: Transform -- uid: 12850 - type: WallSolid - components: - - pos: 38.5,42.5 - parent: 0 - type: Transform -- uid: 12851 - type: WallSolid - components: - - pos: 38.5,33.5 - parent: 0 - type: Transform -- uid: 12852 - type: WallSolid - components: - - pos: 40.5,32.5 - parent: 0 - type: Transform -- uid: 12853 - type: WallSolid - components: - - pos: 41.5,32.5 - parent: 0 - type: Transform -- uid: 12854 - type: WallSolid - components: - - pos: 42.5,32.5 - parent: 0 - type: Transform -- uid: 12855 - type: WallSolid - components: - - pos: 43.5,32.5 - parent: 0 - type: Transform -- uid: 12856 - type: WallSolid - components: - - pos: 44.5,32.5 - parent: 0 - type: Transform -- uid: 12857 - type: WallSolid - components: - - pos: 44.5,33.5 - parent: 0 - type: Transform -- uid: 12858 - type: WallSolid - components: - - pos: 44.5,34.5 - parent: 0 - type: Transform -- uid: 12859 - type: WallSolid - components: - - pos: 45.5,34.5 - parent: 0 - type: Transform -- uid: 12860 - type: TintedWindow - components: - - pos: 44.5,40.5 - parent: 0 - type: Transform -- uid: 12861 - type: TintedWindow - components: - - pos: 44.5,41.5 - parent: 0 - type: Transform -- uid: 12862 - type: TintedWindow - components: - - pos: 38.5,40.5 - parent: 0 - type: Transform -- uid: 12863 - type: TintedWindow - components: - - pos: 38.5,38.5 - parent: 0 - type: Transform -- uid: 12864 - type: TintedWindow - components: - - pos: 38.5,37.5 - parent: 0 - type: Transform -- uid: 12865 - type: TintedWindow - components: - - pos: 38.5,35.5 - parent: 0 - type: Transform -- uid: 12866 - type: TintedWindow - components: - - pos: 38.5,34.5 - parent: 0 - type: Transform -- uid: 12867 - type: TintedWindow - components: - - pos: 44.5,38.5 - parent: 0 - type: Transform -- uid: 12868 - type: TintedWindow - components: - - pos: 44.5,37.5 - parent: 0 - type: Transform -- uid: 12869 - type: TintedWindow - components: - - pos: 44.5,35.5 - parent: 0 - type: Transform -- uid: 12870 - type: TintedWindow - components: - - pos: 38.5,41.5 - parent: 0 - type: Transform -- uid: 12871 - type: Grille - components: - - pos: 38.5,44.5 - parent: 0 - type: Transform -- uid: 12872 - type: Grille - components: - - pos: 39.5,43.5 - parent: 0 - type: Transform -- uid: 12873 - type: Grille - components: - - pos: 40.5,43.5 - parent: 0 - type: Transform -- uid: 12874 - type: Grille - components: - - pos: 41.5,43.5 - parent: 0 - type: Transform -- uid: 12875 - type: Grille - components: - - pos: 42.5,43.5 - parent: 0 - type: Transform -- uid: 12876 - type: Grille - components: - - pos: 43.5,43.5 - parent: 0 - type: Transform -- uid: 12877 - type: Grille - components: - - pos: 45.5,42.5 - parent: 0 - type: Transform -- uid: 12878 - type: Grille - components: - - pos: 46.5,42.5 - parent: 0 - type: Transform -- uid: 12879 - type: Grille - components: - - pos: 44.5,41.5 - parent: 0 - type: Transform -- uid: 12880 - type: Grille - components: - - pos: 44.5,40.5 - parent: 0 - type: Transform -- uid: 12881 - type: Grille - components: - - pos: 44.5,38.5 - parent: 0 - type: Transform -- uid: 12882 - type: Grille - components: - - pos: 44.5,37.5 - parent: 0 - type: Transform -- uid: 12883 - type: Grille - components: - - pos: 44.5,35.5 - parent: 0 - type: Transform -- uid: 12884 - type: Grille - components: - - pos: 38.5,34.5 - parent: 0 - type: Transform -- uid: 12885 - type: Grille - components: - - pos: 38.5,35.5 - parent: 0 - type: Transform -- uid: 12886 - type: Grille - components: - - pos: 38.5,37.5 - parent: 0 - type: Transform -- uid: 12887 - type: Grille - components: - - pos: 38.5,38.5 - parent: 0 - type: Transform -- uid: 12888 - type: Grille - components: - - pos: 38.5,40.5 - parent: 0 - type: Transform -- uid: 12889 - type: Grille - components: - - pos: 38.5,41.5 - parent: 0 - type: Transform -- uid: 12890 - type: Airlock - components: - - pos: 44.5,36.5 - parent: 0 - type: Transform -- uid: 12891 - type: Airlock - components: - - pos: 44.5,39.5 - parent: 0 - type: Transform -- uid: 12892 - type: Airlock - components: - - pos: 38.5,39.5 - parent: 0 - type: Transform -- uid: 12893 - type: Airlock - components: - - pos: 38.5,36.5 - parent: 0 - type: Transform -- uid: 12894 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 31.5,38.5 - parent: 0 - type: Transform -- uid: 12895 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 32.5,38.5 - parent: 0 - type: Transform -- uid: 12896 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 33.5,38.5 - parent: 0 - type: Transform -- uid: 12897 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 37.5,37.5 - parent: 0 - type: Transform -- uid: 12898 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 37.5,38.5 - parent: 0 - type: Transform -- uid: 12899 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 37.5,40.5 - parent: 0 - type: Transform -- uid: 12900 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 37.5,41.5 - parent: 0 - type: Transform -- uid: 12901 - type: Chair - components: - - pos: 33.5,44.5 - parent: 0 - type: Transform -- uid: 12902 - type: Chair - components: - - pos: 32.5,44.5 - parent: 0 - type: Transform -- uid: 12903 - type: Chair - components: - - pos: 31.5,44.5 - parent: 0 - type: Transform -- uid: 12904 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 36.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12905 - type: Table - components: - - pos: 29.5,41.5 - parent: 0 - type: Transform -- uid: 12906 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 35.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12907 - type: Table - components: - - pos: 29.5,38.5 - parent: 0 - type: Transform -- uid: 12908 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 27.5,53.5 - parent: 0 - type: Transform -- uid: 12909 - type: DisposalBend - components: - - pos: 28.5,53.5 - parent: 0 - type: Transform -- uid: 12910 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 28.5,48.5 - parent: 0 - type: Transform -- uid: 12911 - type: DisposalBend - components: - - pos: 29.5,48.5 - parent: 0 - type: Transform -- uid: 12912 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 29.5,39.5 - parent: 0 - type: Transform -- uid: 12913 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 29.5,46.5 - parent: 0 - type: Transform -- uid: 12914 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 28.5,46.5 - parent: 0 - type: Transform -- uid: 12915 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 28.5,37.5 - parent: 0 - type: Transform -- uid: 12916 - type: DisposalBend - components: - - pos: 34.5,37.5 - parent: 0 - type: Transform -- uid: 12917 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 34.5,17.5 - parent: 0 - type: Transform -- uid: 12918 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 37.5,21.5 - parent: 0 - type: Transform -- uid: 12919 - type: DisposalJunctionFlipped - components: - - pos: 28.5,39.5 - parent: 0 - type: Transform -- uid: 12920 - type: DisposalJunctionFlipped - components: - - pos: 34.5,21.5 - parent: 0 - type: Transform -- uid: 12921 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 23.5,17.5 - parent: 0 - type: Transform -- uid: 12922 - type: DisposalTrunk - components: - - pos: 23.5,19.5 - parent: 0 - type: Transform -- uid: 12923 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 16.5,17.5 - parent: 0 - type: Transform -- uid: 12924 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 16.5,14.5 - parent: 0 - type: Transform -- uid: 12925 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,14.5 - parent: 0 - type: Transform -- uid: 12926 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,14.5 - parent: 0 - type: Transform -- uid: 12927 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,14.5 - parent: 0 - type: Transform -- uid: 12928 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,14.5 - parent: 0 - type: Transform -- uid: 12929 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,15.5 - parent: 0 - type: Transform -- uid: 12930 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,16.5 - parent: 0 - type: Transform -- uid: 12931 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,17.5 - parent: 0 - type: Transform -- uid: 12932 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,17.5 - parent: 0 - type: Transform -- uid: 12933 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,17.5 - parent: 0 - type: Transform -- uid: 12934 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,17.5 - parent: 0 - type: Transform -- uid: 12935 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,17.5 - parent: 0 - type: Transform -- uid: 12936 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,17.5 - parent: 0 - type: Transform -- uid: 12937 - type: DisposalPipe - components: - - pos: 23.5,18.5 - parent: 0 - type: Transform -- uid: 12938 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,17.5 - parent: 0 - type: Transform -- uid: 12939 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,17.5 - parent: 0 - type: Transform -- uid: 12940 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,17.5 - parent: 0 - type: Transform -- uid: 12941 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,17.5 - parent: 0 - type: Transform -- uid: 12942 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,17.5 - parent: 0 - type: Transform -- uid: 12943 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,17.5 - parent: 0 - type: Transform -- uid: 12944 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,17.5 - parent: 0 - type: Transform -- uid: 12945 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,17.5 - parent: 0 - type: Transform -- uid: 12946 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,17.5 - parent: 0 - type: Transform -- uid: 12947 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 33.5,17.5 - parent: 0 - type: Transform -- uid: 12948 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 34.5,18.5 - parent: 0 - type: Transform -- uid: 12949 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 34.5,19.5 - parent: 0 - type: Transform -- uid: 12950 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 34.5,20.5 - parent: 0 - type: Transform -- uid: 12951 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,21.5 - parent: 0 - type: Transform -- uid: 12952 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,21.5 - parent: 0 - type: Transform -- uid: 12953 - type: DisposalPipe - components: - - pos: 34.5,22.5 - parent: 0 - type: Transform -- uid: 12954 - type: DisposalPipe - components: - - pos: 34.5,23.5 - parent: 0 - type: Transform -- uid: 12955 - type: DisposalPipe - components: - - pos: 34.5,24.5 - parent: 0 - type: Transform -- uid: 12956 - type: DisposalPipe - components: - - pos: 34.5,25.5 - parent: 0 - type: Transform -- uid: 12957 - type: DisposalPipe - components: - - pos: 34.5,26.5 - parent: 0 - type: Transform -- uid: 12958 - type: DisposalPipe - components: - - pos: 34.5,27.5 - parent: 0 - type: Transform -- uid: 12959 - type: DisposalPipe - components: - - pos: 34.5,28.5 - parent: 0 - type: Transform -- uid: 12960 - type: DisposalPipe - components: - - pos: 34.5,29.5 - parent: 0 - type: Transform -- uid: 12961 - type: DisposalPipe - components: - - pos: 34.5,30.5 - parent: 0 - type: Transform -- uid: 12962 - type: DisposalPipe - components: - - pos: 34.5,31.5 - parent: 0 - type: Transform -- uid: 12963 - type: DisposalPipe - components: - - pos: 34.5,32.5 - parent: 0 - type: Transform -- uid: 12964 - type: DisposalPipe - components: - - pos: 34.5,33.5 - parent: 0 - type: Transform -- uid: 12965 - type: DisposalPipe - components: - - pos: 34.5,34.5 - parent: 0 - type: Transform -- uid: 12966 - type: DisposalPipe - components: - - pos: 34.5,35.5 - parent: 0 - type: Transform -- uid: 12967 - type: DisposalPipe - components: - - pos: 34.5,36.5 - parent: 0 - type: Transform -- uid: 12968 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 33.5,37.5 - parent: 0 - type: Transform -- uid: 12969 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,37.5 - parent: 0 - type: Transform -- uid: 12970 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,37.5 - parent: 0 - type: Transform -- uid: 12971 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,37.5 - parent: 0 - type: Transform -- uid: 12972 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,37.5 - parent: 0 - type: Transform -- uid: 12973 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,38.5 - parent: 0 - type: Transform -- uid: 12974 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,40.5 - parent: 0 - type: Transform -- uid: 12975 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,41.5 - parent: 0 - type: Transform -- uid: 12976 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,42.5 - parent: 0 - type: Transform -- uid: 12977 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,43.5 - parent: 0 - type: Transform -- uid: 12978 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,44.5 - parent: 0 - type: Transform -- uid: 12979 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,45.5 - parent: 0 - type: Transform -- uid: 12980 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,49.5 - parent: 0 - type: Transform -- uid: 12981 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,50.5 - parent: 0 - type: Transform -- uid: 12982 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,51.5 - parent: 0 - type: Transform -- uid: 12983 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 28.5,52.5 - parent: 0 - type: Transform -- uid: 12984 - type: SignDirectionalDorms - components: - - rot: 3.141592653589793 rad - pos: 14.5,11.5 - parent: 0 - type: Transform -- uid: 12985 - type: DisposalUnit - components: - - pos: 16.5,11.5 - parent: 0 - type: Transform -- uid: 12987 - type: DisposalTrunk - components: - - pos: 16.5,11.5 - parent: 0 - type: Transform -- uid: 12988 - type: DisposalPipe - components: - - pos: 16.5,10.5 - parent: 0 - type: Transform -- uid: 12989 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12990 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 20.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12991 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12992 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12993 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 20.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12994 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 26.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12995 - type: GasVentScrubber - components: - - pos: 20.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12996 - type: GasVentScrubber - components: - - pos: 26.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12997 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12998 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12999 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13000 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 33.5,39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13001 - type: GasPipeBend - components: - - pos: 31.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13002 - type: GasPipeStraight - components: - - pos: 31.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13003 - type: GasPipeStraight - components: - - pos: 33.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13004 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 31.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13005 - type: GasVentScrubber - components: - - pos: 33.5,41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13006 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13007 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13008 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13009 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13010 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13011 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13012 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13013 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13014 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13015 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13016 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13017 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13018 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13019 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13020 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13021 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13022 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13023 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13024 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13025 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 46.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13026 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 46.5,36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13027 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 32.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13028 - type: GasVentScrubber - components: - - pos: 33.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13029 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 27.5,42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13030 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 37.5,40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13031 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 27.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13032 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 37.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13033 - type: Table - components: - - pos: 29.5,40.5 - parent: 0 - type: Transform -- uid: 13034 - type: Table - components: - - pos: 29.5,42.5 - parent: 0 - type: Transform -- uid: 13035 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13036 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13037 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13038 - type: GasPipeBend - components: - - pos: 29.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13039 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13040 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13041 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13042 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13043 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13044 - type: GasPipeBend - components: - - pos: 31.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13045 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 30.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13046 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 28.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13047 - type: APCBasic - components: - - pos: 34.5,47.5 - parent: 0 - type: Transform -- uid: 13048 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 35.5,49.5 - parent: 0 - type: Transform -- uid: 13049 - type: APCBasic - components: - - pos: 33.5,20.5 - parent: 0 - type: Transform -- uid: 13050 - type: APCBasic - components: - - pos: 19.5,20.5 - parent: 0 - type: Transform -- uid: 13051 - type: CableMV - components: - - pos: 30.5,37.5 - parent: 0 - type: Transform -- uid: 13052 - type: CableMV - components: - - pos: 31.5,37.5 - parent: 0 - type: Transform -- uid: 13053 - type: CableMV - components: - - pos: 32.5,37.5 - parent: 0 - type: Transform -- uid: 13054 - type: CableMV - components: - - pos: 33.5,37.5 - parent: 0 - type: Transform -- uid: 13055 - type: CableMV - components: - - pos: 34.5,37.5 - parent: 0 - type: Transform -- uid: 13056 - type: CableMV - components: - - pos: 35.5,37.5 - parent: 0 - type: Transform -- uid: 13057 - type: CableMV - components: - - pos: 35.5,38.5 - parent: 0 - type: Transform -- uid: 13058 - type: CableMV - components: - - pos: 35.5,39.5 - parent: 0 - type: Transform -- uid: 13059 - type: CableMV - components: - - pos: 35.5,40.5 - parent: 0 - type: Transform -- uid: 13060 - type: CableMV - components: - - pos: 35.5,41.5 - parent: 0 - type: Transform -- uid: 13061 - type: CableMV - components: - - pos: 35.5,42.5 - parent: 0 - type: Transform -- uid: 13062 - type: CableMV - components: - - pos: 35.5,43.5 - parent: 0 - type: Transform -- uid: 13063 - type: CableMV - components: - - pos: 35.5,44.5 - parent: 0 - type: Transform -- uid: 13064 - type: CableMV - components: - - pos: 35.5,45.5 - parent: 0 - type: Transform -- uid: 13065 - type: CableMV - components: - - pos: 35.5,46.5 - parent: 0 - type: Transform -- uid: 13066 - type: CableMV - components: - - pos: 34.5,46.5 - parent: 0 - type: Transform -- uid: 13067 - type: CableMV - components: - - pos: 34.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13068 - type: CableMV - components: - - pos: 34.5,48.5 - parent: 0 - type: Transform -- uid: 13069 - type: CableMV - components: - - pos: 34.5,49.5 - parent: 0 - type: Transform -- uid: 13070 - type: CableMV - components: - - pos: 35.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13071 - type: CableMV - components: - - pos: 34.5,36.5 - parent: 0 - type: Transform -- uid: 13072 - type: CableMV - components: - - pos: 34.5,35.5 - parent: 0 - type: Transform -- uid: 13073 - type: CableMV - components: - - pos: 34.5,34.5 - parent: 0 - type: Transform -- uid: 13074 - type: CableMV - components: - - pos: 34.5,33.5 - parent: 0 - type: Transform -- uid: 13075 - type: CableMV - components: - - pos: 34.5,32.5 - parent: 0 - type: Transform -- uid: 13076 - type: CableMV - components: - - pos: 34.5,31.5 - parent: 0 - type: Transform -- uid: 13077 - type: CableMV - components: - - pos: 34.5,30.5 - parent: 0 - type: Transform -- uid: 13078 - type: CableMV - components: - - pos: 34.5,29.5 - parent: 0 - type: Transform -- uid: 13079 - type: CableMV - components: - - pos: 34.5,28.5 - parent: 0 - type: Transform -- uid: 13080 - type: CableMV - components: - - pos: 34.5,27.5 - parent: 0 - type: Transform -- uid: 13081 - type: CableMV - components: - - pos: 34.5,26.5 - parent: 0 - type: Transform -- uid: 13082 - type: CableMV - components: - - pos: 34.5,25.5 - parent: 0 - type: Transform -- uid: 13083 - type: CableMV - components: - - pos: 34.5,24.5 - parent: 0 - type: Transform -- uid: 13084 - type: CableMV - components: - - pos: 34.5,23.5 - parent: 0 - type: Transform -- uid: 13085 - type: CableMV - components: - - pos: 34.5,22.5 - parent: 0 - type: Transform -- uid: 13086 - type: CableMV - components: - - pos: 34.5,21.5 - parent: 0 - type: Transform -- uid: 13087 - type: CableMV - components: - - pos: 34.5,20.5 - parent: 0 - type: Transform -- uid: 13088 - type: CableMV - components: - - pos: 33.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13089 - type: CableMV - components: - - pos: 33.5,19.5 - parent: 0 - type: Transform -- uid: 13090 - type: CableMV - components: - - pos: 32.5,19.5 - parent: 0 - type: Transform -- uid: 13091 - type: CableMV - components: - - pos: 31.5,19.5 - parent: 0 - type: Transform -- uid: 13092 - type: CableMV - components: - - pos: 30.5,19.5 - parent: 0 - type: Transform -- uid: 13093 - type: CableMV - components: - - pos: 29.5,19.5 - parent: 0 - type: Transform -- uid: 13094 - type: CableMV - components: - - pos: 28.5,19.5 - parent: 0 - type: Transform -- uid: 13095 - type: CableMV - components: - - pos: 27.5,19.5 - parent: 0 - type: Transform -- uid: 13096 - type: CableMV - components: - - pos: 26.5,19.5 - parent: 0 - type: Transform -- uid: 13097 - type: CableMV - components: - - pos: 25.5,19.5 - parent: 0 - type: Transform -- uid: 13098 - type: CableMV - components: - - pos: 24.5,19.5 - parent: 0 - type: Transform -- uid: 13099 - type: CableMV - components: - - pos: 23.5,19.5 - parent: 0 - type: Transform -- uid: 13100 - type: CableMV - components: - - pos: 22.5,19.5 - parent: 0 - type: Transform -- uid: 13101 - type: CableMV - components: - - pos: 21.5,19.5 - parent: 0 - type: Transform -- uid: 13102 - type: CableMV - components: - - pos: 20.5,19.5 - parent: 0 - type: Transform -- uid: 13103 - type: CableMV - components: - - pos: 19.5,19.5 - parent: 0 - type: Transform -- uid: 13104 - type: CableMV - components: - - pos: 19.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13105 - type: CableMV - components: - - pos: 20.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13106 - type: WallReinforced - components: - - pos: 23.5,38.5 - parent: 0 - type: Transform -- uid: 13107 - type: WallReinforced - components: - - pos: 22.5,38.5 - parent: 0 - type: Transform -- uid: 13108 - type: WallReinforced - components: - - pos: 21.5,38.5 - parent: 0 - type: Transform -- uid: 13109 - type: AirlockEngineeringLocked - components: - - pos: 20.5,38.5 - parent: 0 - type: Transform -- uid: 13110 - type: AirlockEngineeringLocked - components: - - pos: 23.5,39.5 - parent: 0 - type: Transform -- uid: 13111 - type: CableHV - components: - - pos: 20.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13112 - type: CableHV - components: - - pos: 21.5,40.5 - parent: 0 - type: Transform -- uid: 13113 - type: CableHV - components: - - pos: 22.5,40.5 - parent: 0 - type: Transform -- uid: 13114 - type: CableHV - components: - - pos: 20.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13115 - type: CableHV - components: - - pos: 20.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13116 - type: CableHV - components: - - pos: 20.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13117 - type: CableHV - components: - - pos: 21.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13118 - type: CableHV - components: - - pos: 22.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13119 - type: CableHV - components: - - pos: 23.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13120 - type: CableHV - components: - - pos: 24.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13121 - type: CableHV - components: - - pos: 24.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13122 - type: CableHV - components: - - pos: 24.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13123 - type: CableHV - components: - - pos: 23.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13124 - type: CableHV - components: - - pos: 22.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13125 - type: CableHV - components: - - pos: 22.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13126 - type: CableHV - components: - - pos: 22.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13127 - type: CableHV - components: - - pos: 22.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13128 - type: CableHV - components: - - pos: 22.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13129 - type: CableHV - components: - - pos: 22.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13130 - type: CableHV - components: - - pos: 22.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13131 - type: CableHV - components: - - pos: 22.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13132 - type: CableHV - components: - - pos: 22.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13133 - type: CableHV - components: - - pos: 21.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13134 - type: CableHV - components: - - pos: 21.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13135 - type: CableHV - components: - - pos: 20.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13136 - type: CableHV - components: - - pos: 19.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13137 - type: CableHV - components: - - pos: 18.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13138 - type: CableHV - components: - - pos: 17.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13139 - type: CableHV - components: - - pos: 16.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13140 - type: CableHV - components: - - pos: 16.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13141 - type: CableHV - components: - - pos: 16.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13142 - type: CableHV - components: - - pos: 16.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13143 - type: CableHV - components: - - pos: 16.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13144 - type: CableHV - components: - - pos: 16.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13145 - type: CableHV - components: - - pos: 16.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13146 - type: CableHV - components: - - pos: 16.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13147 - type: CableHV - components: - - pos: 16.5,20.5 - parent: 0 - type: Transform -- uid: 13148 - type: CableHV - components: - - pos: 16.5,19.5 - parent: 0 - type: Transform -- uid: 13149 - type: CableHV - components: - - pos: 16.5,18.5 - parent: 0 - type: Transform -- uid: 13150 - type: CableHV - components: - - pos: 16.5,17.5 - parent: 0 - type: Transform -- uid: 13151 - type: CableHV - components: - - pos: 16.5,16.5 - parent: 0 - type: Transform -- uid: 13152 - type: CableHV - components: - - pos: 16.5,15.5 - parent: 0 - type: Transform -- uid: 13153 - type: CableHV - components: - - pos: 16.5,14.5 - parent: 0 - type: Transform -- uid: 13154 - type: CableHV - components: - - pos: 16.5,13.5 - parent: 0 - type: Transform -- uid: 13155 - type: CableHV - components: - - pos: 17.5,13.5 - parent: 0 - type: Transform -- uid: 13156 - type: CableHV - components: - - pos: 18.5,13.5 - parent: 0 - type: Transform -- uid: 13157 - type: CableHV - components: - - pos: 19.5,13.5 - parent: 0 - type: Transform -- uid: 13158 - type: CableHV - components: - - pos: 20.5,13.5 - parent: 0 - type: Transform -- uid: 13159 - type: CableHV - components: - - pos: 21.5,13.5 - parent: 0 - type: Transform -- uid: 13160 - type: CableHV - components: - - pos: 22.5,13.5 - parent: 0 - type: Transform -- uid: 13161 - type: CableHV - components: - - pos: 23.5,13.5 - parent: 0 - type: Transform -- uid: 13162 - type: CableHV - components: - - pos: 24.5,13.5 - parent: 0 - type: Transform -- uid: 13163 - type: CableHV - components: - - pos: 24.5,12.5 - parent: 0 - type: Transform -- uid: 13164 - type: CableHV - components: - - pos: 24.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13165 - type: CableHV - components: - - pos: 24.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13166 - type: CableHV - components: - - pos: 25.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13167 - type: CableHV - components: - - pos: 26.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13168 - type: CableHV - components: - - pos: 27.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13169 - type: CableHV - components: - - pos: 28.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13170 - type: CableHV - components: - - pos: 28.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13171 - type: CableHV - components: - - pos: 28.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13172 - type: CableHV - components: - - pos: 28.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13173 - type: CableHV - components: - - pos: 28.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13174 - type: CableHV - components: - - pos: 28.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13175 - type: CableHV - components: - - pos: 28.5,4.5 - parent: 0 - type: Transform -- uid: 13176 - type: CableHV - components: - - pos: 28.5,3.5 - parent: 0 - type: Transform -- uid: 13177 - type: CableHV - components: - - pos: 29.5,3.5 - parent: 0 - type: Transform -- uid: 13178 - type: CableHV - components: - - pos: 30.5,3.5 - parent: 0 - type: Transform -- uid: 13179 - type: CableHV - components: - - pos: 31.5,3.5 - parent: 0 - type: Transform -- uid: 13180 - type: CableHV - components: - - pos: 32.5,3.5 - parent: 0 - type: Transform -- uid: 13181 - type: CableHV - components: - - pos: 33.5,3.5 - parent: 0 - type: Transform -- uid: 13182 - type: CableHV - components: - - pos: 34.5,3.5 - parent: 0 - type: Transform -- uid: 13183 - type: CableHV - components: - - pos: 35.5,3.5 - parent: 0 - type: Transform -- uid: 13184 - type: CableHV - components: - - pos: 36.5,3.5 - parent: 0 - type: Transform -- uid: 13185 - type: CableHV - components: - - pos: 37.5,3.5 - parent: 0 - type: Transform -- uid: 13186 - type: CableHV - components: - - pos: 38.5,3.5 - parent: 0 - type: Transform -- uid: 13187 - type: CableHV - components: - - pos: 39.5,3.5 - parent: 0 - type: Transform -- uid: 13188 - type: CableHV - components: - - pos: 40.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13189 - type: CableHV - components: - - pos: 39.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13190 - type: CableHV - components: - - pos: 38.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13191 - type: CableHV - components: - - pos: 37.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13192 - type: CableHV - components: - - pos: 36.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13193 - type: CableHV - components: - - pos: 35.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13194 - type: CableHV - components: - - pos: 34.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13195 - type: CableHV - components: - - pos: 33.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13196 - type: CableHV - components: - - pos: 32.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13197 - type: CableHV - components: - - pos: 31.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13198 - type: CableHV - components: - - pos: 31.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13199 - type: CableHV - components: - - pos: 31.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13200 - type: CableHV - components: - - pos: 30.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13201 - type: CableHV - components: - - pos: 29.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13202 - type: CableHV - components: - - pos: 25.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13203 - type: CableHV - components: - - pos: 26.5,37.5 - parent: 0 - type: Transform -- uid: 13204 - type: CableHV - components: - - pos: 27.5,37.5 - parent: 0 - type: Transform -- uid: 13205 - type: CableHV - components: - - pos: 28.5,37.5 - parent: 0 - type: Transform -- uid: 13206 - type: CableHV - components: - - pos: 29.5,37.5 - parent: 0 - type: Transform -- uid: 13207 - type: CableHV - components: - - pos: 30.5,37.5 - parent: 0 - type: Transform -- uid: 13208 - type: CableHV - components: - - pos: 31.5,37.5 - parent: 0 - type: Transform -- uid: 13209 - type: CableHV - components: - - pos: 32.5,37.5 - parent: 0 - type: Transform -- uid: 13210 - type: CableHV - components: - - pos: 33.5,37.5 - parent: 0 - type: Transform -- uid: 13211 - type: CableHV - components: - - pos: 34.5,37.5 - parent: 0 - type: Transform -- uid: 13212 - type: CableHV - components: - - pos: 35.5,37.5 - parent: 0 - type: Transform -- uid: 13213 - type: CableHV - components: - - pos: 35.5,36.5 - parent: 0 - type: Transform -- uid: 13214 - type: CableHV - components: - - pos: 35.5,35.5 - parent: 0 - type: Transform -- uid: 13215 - type: CableHV - components: - - pos: 35.5,34.5 - parent: 0 - type: Transform -- uid: 13216 - type: CableHV - components: - - pos: 35.5,33.5 - parent: 0 - type: Transform -- uid: 13217 - type: CableHV - components: - - pos: 35.5,32.5 - parent: 0 - type: Transform -- uid: 13218 - type: CableHV - components: - - pos: 35.5,31.5 - parent: 0 - type: Transform -- uid: 13219 - type: CableHV - components: - - pos: 35.5,30.5 - parent: 0 - type: Transform -- uid: 13220 - type: CableHV - components: - - pos: 35.5,29.5 - parent: 0 - type: Transform -- uid: 13221 - type: CableHV - components: - - pos: 35.5,28.5 - parent: 0 - type: Transform -- uid: 13222 - type: CableHV - components: - - pos: 36.5,28.5 - parent: 0 - type: Transform -- uid: 13223 - type: CableHV - components: - - pos: 37.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13224 - type: CableHV - components: - - pos: 38.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13225 - type: CableHV - components: - - pos: 39.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13226 - type: Grille - components: - - pos: 20.5,20.5 - parent: 0 - type: Transform -- uid: 13227 - type: Grille - components: - - pos: 26.5,24.5 - parent: 0 - type: Transform -- uid: 13228 - type: ComputerPowerMonitoring - components: - - pos: 21.5,40.5 - parent: 0 - type: Transform -- uid: 13229 - type: CableApcExtension - components: - - pos: 35.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13230 - type: CableApcExtension - components: - - pos: 34.5,49.5 - parent: 0 - type: Transform -- uid: 13231 - type: CableApcExtension - components: - - pos: 33.5,49.5 - parent: 0 - type: Transform -- uid: 13232 - type: CableApcExtension - components: - - pos: 32.5,49.5 - parent: 0 - type: Transform -- uid: 13233 - type: CableApcExtension - components: - - pos: 31.5,49.5 - parent: 0 - type: Transform -- uid: 13234 - type: CableApcExtension - components: - - pos: 30.5,49.5 - parent: 0 - type: Transform -- uid: 13235 - type: CableApcExtension - components: - - pos: 29.5,49.5 - parent: 0 - type: Transform -- uid: 13236 - type: CableApcExtension - components: - - pos: 28.5,49.5 - parent: 0 - type: Transform -- uid: 13237 - type: CableApcExtension - components: - - pos: 28.5,50.5 - parent: 0 - type: Transform -- uid: 13238 - type: CableApcExtension - components: - - pos: 28.5,51.5 - parent: 0 - type: Transform -- uid: 13239 - type: CableApcExtension - components: - - pos: 28.5,52.5 - parent: 0 - type: Transform -- uid: 13240 - type: CableApcExtension - components: - - pos: 28.5,53.5 - parent: 0 - type: Transform -- uid: 13241 - type: CableApcExtension - components: - - pos: 28.5,54.5 - parent: 0 - type: Transform -- uid: 13242 - type: CableApcExtension - components: - - pos: 33.5,50.5 - parent: 0 - type: Transform -- uid: 13243 - type: GasPipeBend - components: - - pos: -50.5,-56.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 13244 - type: GasPipeStraight - components: - - pos: -50.5,-53.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 13245 - type: CableMV - components: - - pos: -49.5,-55.5 - parent: 0 - type: Transform -- uid: 13246 - type: CableApcExtension - components: - - pos: -44.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13247 - type: CableApcExtension - components: - - pos: 27.5,49.5 - parent: 0 - type: Transform -- uid: 13248 - type: CableApcExtension - components: - - pos: 34.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13249 - type: CableApcExtension - components: - - pos: 34.5,46.5 - parent: 0 - type: Transform -- uid: 13250 - type: CableApcExtension - components: - - pos: 34.5,45.5 - parent: 0 - type: Transform -- uid: 13251 - type: CableApcExtension - components: - - pos: 34.5,44.5 - parent: 0 - type: Transform -- uid: 13252 - type: CableApcExtension - components: - - pos: 35.5,46.5 - parent: 0 - type: Transform -- uid: 13253 - type: CableApcExtension - components: - - pos: 36.5,46.5 - parent: 0 - type: Transform -- uid: 13254 - type: CableApcExtension - components: - - pos: 37.5,46.5 - parent: 0 - type: Transform -- uid: 13255 - type: CableApcExtension - components: - - pos: 37.5,47.5 - parent: 0 - type: Transform -- uid: 13256 - type: CableApcExtension - components: - - pos: 38.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13257 - type: CableApcExtension - components: - - pos: 39.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13258 - type: CableApcExtension - components: - - pos: 40.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13259 - type: CableApcExtension - components: - - pos: 33.5,45.5 - parent: 0 - type: Transform -- uid: 13260 - type: CableApcExtension - components: - - pos: 32.5,45.5 - parent: 0 - type: Transform -- uid: 13261 - type: CableApcExtension - components: - - pos: 31.5,45.5 - parent: 0 - type: Transform -- uid: 13262 - type: CableApcExtension - components: - - pos: 30.5,45.5 - parent: 0 - type: Transform -- uid: 13263 - type: CableApcExtension - components: - - pos: 29.5,45.5 - parent: 0 - type: Transform -- uid: 13264 - type: CableApcExtension - components: - - pos: 28.5,45.5 - parent: 0 - type: Transform -- uid: 13265 - type: CableApcExtension - components: - - pos: 28.5,44.5 - parent: 0 - type: Transform -- uid: 13266 - type: CableApcExtension - components: - - pos: 28.5,43.5 - parent: 0 - type: Transform -- uid: 13267 - type: CableApcExtension - components: - - pos: 28.5,42.5 - parent: 0 - type: Transform -- uid: 13268 - type: CableApcExtension - components: - - pos: 28.5,41.5 - parent: 0 - type: Transform -- uid: 13269 - type: CableApcExtension - components: - - pos: 28.5,40.5 - parent: 0 - type: Transform -- uid: 13270 - type: CableApcExtension - components: - - pos: 28.5,39.5 - parent: 0 - type: Transform -- uid: 13271 - type: CableApcExtension - components: - - pos: 28.5,38.5 - parent: 0 - type: Transform -- uid: 13272 - type: CableApcExtension - components: - - pos: 28.5,37.5 - parent: 0 - type: Transform -- uid: 13273 - type: CableApcExtension - components: - - pos: 35.5,44.5 - parent: 0 - type: Transform -- uid: 13274 - type: CableApcExtension - components: - - pos: 35.5,43.5 - parent: 0 - type: Transform -- uid: 13275 - type: CableApcExtension - components: - - pos: 35.5,42.5 - parent: 0 - type: Transform -- uid: 13276 - type: CableApcExtension - components: - - pos: 35.5,41.5 - parent: 0 - type: Transform -- uid: 13277 - type: CableApcExtension - components: - - pos: 35.5,40.5 - parent: 0 - type: Transform -- uid: 13278 - type: CableApcExtension - components: - - pos: 35.5,39.5 - parent: 0 - type: Transform -- uid: 13279 - type: CableApcExtension - components: - - pos: 35.5,38.5 - parent: 0 - type: Transform -- uid: 13280 - type: CableApcExtension - components: - - pos: 35.5,37.5 - parent: 0 - type: Transform -- uid: 13281 - type: CableApcExtension - components: - - pos: 36.5,39.5 - parent: 0 - type: Transform -- uid: 13282 - type: CableApcExtension - components: - - pos: 37.5,39.5 - parent: 0 - type: Transform -- uid: 13283 - type: CableApcExtension - components: - - pos: 38.5,39.5 - parent: 0 - type: Transform -- uid: 13284 - type: CableApcExtension - components: - - pos: 39.5,39.5 - parent: 0 - type: Transform -- uid: 13285 - type: CableApcExtension - components: - - pos: 40.5,39.5 - parent: 0 - type: Transform -- uid: 13286 - type: CableApcExtension - components: - - pos: 41.5,39.5 - parent: 0 - type: Transform -- uid: 13287 - type: CableApcExtension - components: - - pos: 42.5,39.5 - parent: 0 - type: Transform -- uid: 13288 - type: CableApcExtension - components: - - pos: 43.5,39.5 - parent: 0 - type: Transform -- uid: 13289 - type: CableApcExtension - components: - - pos: 44.5,39.5 - parent: 0 - type: Transform -- uid: 13290 - type: CableApcExtension - components: - - pos: 45.5,39.5 - parent: 0 - type: Transform -- uid: 13291 - type: CableApcExtension - components: - - pos: 35.5,36.5 - parent: 0 - type: Transform -- uid: 13292 - type: CableApcExtension - components: - - pos: 36.5,36.5 - parent: 0 - type: Transform -- uid: 13293 - type: CableApcExtension - components: - - pos: 37.5,36.5 - parent: 0 - type: Transform -- uid: 13294 - type: CableApcExtension - components: - - pos: 38.5,36.5 - parent: 0 - type: Transform -- uid: 13295 - type: CableApcExtension - components: - - pos: 39.5,36.5 - parent: 0 - type: Transform -- uid: 13296 - type: CableApcExtension - components: - - pos: 40.5,36.5 - parent: 0 - type: Transform -- uid: 13297 - type: CableApcExtension - components: - - pos: 41.5,36.5 - parent: 0 - type: Transform -- uid: 13298 - type: CableApcExtension - components: - - pos: 42.5,36.5 - parent: 0 - type: Transform -- uid: 13299 - type: CableApcExtension - components: - - pos: 43.5,36.5 - parent: 0 - type: Transform -- uid: 13300 - type: CableApcExtension - components: - - pos: 44.5,36.5 - parent: 0 - type: Transform -- uid: 13301 - type: CableApcExtension - components: - - pos: 45.5,36.5 - parent: 0 - type: Transform -- uid: 13302 - type: CableApcExtension - components: - - pos: 41.5,35.5 - parent: 0 - type: Transform -- uid: 13303 - type: CableApcExtension - components: - - pos: 41.5,34.5 - parent: 0 - type: Transform -- uid: 13304 - type: CableApcExtension - components: - - pos: 41.5,40.5 - parent: 0 - type: Transform -- uid: 13305 - type: CableApcExtension - components: - - pos: 41.5,41.5 - parent: 0 - type: Transform -- uid: 13306 - type: CableApcExtension - components: - - pos: 34.5,39.5 - parent: 0 - type: Transform -- uid: 13307 - type: CableApcExtension - components: - - pos: 33.5,39.5 - parent: 0 - type: Transform -- uid: 13308 - type: CableApcExtension - components: - - pos: 32.5,39.5 - parent: 0 - type: Transform -- uid: 13309 - type: CableApcExtension - components: - - pos: 32.5,40.5 - parent: 0 - type: Transform -- uid: 13310 - type: CableApcExtension - components: - - pos: 35.5,35.5 - parent: 0 - type: Transform -- uid: 13311 - type: CableApcExtension - components: - - pos: 27.5,37.5 - parent: 0 - type: Transform -- uid: 13312 - type: CableApcExtension - components: - - pos: 26.5,37.5 - parent: 0 - type: Transform -- uid: 13313 - type: CableApcExtension - components: - - pos: 25.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13314 - type: CableApcExtension - components: - - pos: 24.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13315 - type: CableApcExtension - components: - - pos: 23.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13316 - type: CableApcExtension - components: - - pos: 22.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13317 - type: CableApcExtension - components: - - pos: 21.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13318 - type: CableApcExtension - components: - - pos: 20.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13319 - type: CableApcExtension - components: - - pos: 20.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13320 - type: CableApcExtension - components: - - pos: 20.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13321 - type: CableApcExtension - components: - - pos: 24.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13322 - type: CableApcExtension - components: - - pos: 24.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13323 - type: CableApcExtension - components: - - pos: 24.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13324 - type: CableApcExtension - components: - - pos: 22.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13325 - type: CableApcExtension - components: - - pos: 22.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13326 - type: CableApcExtension - components: - - pos: 19.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13327 - type: CableApcExtension - components: - - pos: 19.5,19.5 - parent: 0 - type: Transform -- uid: 13328 - type: CableApcExtension - components: - - pos: 19.5,18.5 - parent: 0 - type: Transform -- uid: 13329 - type: CableApcExtension - components: - - pos: 19.5,17.5 - parent: 0 - type: Transform -- uid: 13330 - type: CableApcExtension - components: - - pos: 19.5,16.5 - parent: 0 - type: Transform -- uid: 13331 - type: CableApcExtension - components: - - pos: 19.5,15.5 - parent: 0 - type: Transform -- uid: 13332 - type: CableApcExtension - components: - - pos: 19.5,14.5 - parent: 0 - type: Transform -- uid: 13333 - type: CableApcExtension - components: - - pos: 19.5,13.5 - parent: 0 - type: Transform -- uid: 13334 - type: CableApcExtension - components: - - pos: 18.5,14.5 - parent: 0 - type: Transform -- uid: 13335 - type: CableApcExtension - components: - - pos: 17.5,14.5 - parent: 0 - type: Transform -- uid: 13336 - type: CableApcExtension - components: - - pos: 16.5,14.5 - parent: 0 - type: Transform -- uid: 13337 - type: CableApcExtension - components: - - pos: 18.5,18.5 - parent: 0 - type: Transform -- uid: 13338 - type: CableApcExtension - components: - - pos: 17.5,18.5 - parent: 0 - type: Transform -- uid: 13339 - type: CableApcExtension - components: - - pos: 16.5,18.5 - parent: 0 - type: Transform -- uid: 13340 - type: CableApcExtension - components: - - pos: 16.5,19.5 - parent: 0 - type: Transform -- uid: 13341 - type: CableApcExtension - components: - - pos: 16.5,20.5 - parent: 0 - type: Transform -- uid: 13342 - type: CableApcExtension - components: - - pos: 16.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13343 - type: CableApcExtension - components: - - pos: 16.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13344 - type: CableApcExtension - components: - - pos: 16.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13345 - type: CableApcExtension - components: - - pos: 16.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13346 - type: CableApcExtension - components: - - pos: 16.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13347 - type: CableApcExtension - components: - - pos: 16.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13348 - type: CableApcExtension - components: - - pos: 16.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13349 - type: CableApcExtension - components: - - pos: 16.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13350 - type: PortableScrubber - components: - - pos: 29.5,12.5 - parent: 0 - type: Transform -- uid: 13351 - type: CableApcExtension - components: - - pos: 21.5,19.5 - parent: 0 - type: Transform -- uid: 13352 - type: CableApcExtension - components: - - pos: 21.5,20.5 - parent: 0 - type: Transform -- uid: 13353 - type: CableApcExtension - components: - - pos: 21.5,21.5 - parent: 0 - type: Transform -- uid: 13354 - type: CableApcExtension - components: - - pos: 21.5,22.5 - parent: 0 - type: Transform -- uid: 13355 - type: CableApcExtension - components: - - pos: 21.5,23.5 - parent: 0 - type: Transform -- uid: 13356 - type: CableApcExtension - components: - - pos: 21.5,24.5 - parent: 0 - type: Transform -- uid: 13357 - type: CableApcExtension - components: - - pos: 21.5,25.5 - parent: 0 - type: Transform -- uid: 13358 - type: CableApcExtension - components: - - pos: 21.5,26.5 - parent: 0 - type: Transform -- uid: 13359 - type: CableApcExtension - components: - - pos: 21.5,27.5 - parent: 0 - type: Transform -- uid: 13360 - type: CableApcExtension - components: - - pos: 20.5,14.5 - parent: 0 - type: Transform -- uid: 13361 - type: CableApcExtension - components: - - pos: 21.5,14.5 - parent: 0 - type: Transform -- uid: 13362 - type: CableApcExtension - components: - - pos: 22.5,14.5 - parent: 0 - type: Transform -- uid: 13363 - type: CableApcExtension - components: - - pos: 23.5,14.5 - parent: 0 - type: Transform -- uid: 13364 - type: CableApcExtension - components: - - pos: 24.5,14.5 - parent: 0 - type: Transform -- uid: 13365 - type: CableApcExtension - components: - - pos: 25.5,14.5 - parent: 0 - type: Transform -- uid: 13366 - type: CableApcExtension - components: - - pos: 26.5,14.5 - parent: 0 - type: Transform -- uid: 13367 - type: CableApcExtension - components: - - pos: 27.5,14.5 - parent: 0 - type: Transform -- uid: 13368 - type: CableApcExtension - components: - - pos: 28.5,14.5 - parent: 0 - type: Transform -- uid: 13369 - type: CableApcExtension - components: - - pos: 24.5,13.5 - parent: 0 - type: Transform -- uid: 13370 - type: CableApcExtension - components: - - pos: 24.5,12.5 - parent: 0 - type: Transform -- uid: 13371 - type: CableApcExtension - components: - - pos: 24.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13372 - type: CableApcExtension - components: - - pos: 24.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13373 - type: CableApcExtension - components: - - pos: 23.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13374 - type: CableApcExtension - components: - - pos: 22.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13375 - type: CableApcExtension - components: - - pos: 21.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13376 - type: CableApcExtension - components: - - pos: 33.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13377 - type: CableApcExtension - components: - - pos: 33.5,19.5 - parent: 0 - type: Transform -- uid: 13378 - type: CableApcExtension - components: - - pos: 33.5,18.5 - parent: 0 - type: Transform -- uid: 13379 - type: CableApcExtension - components: - - pos: 33.5,17.5 - parent: 0 - type: Transform -- uid: 13380 - type: CableApcExtension - components: - - pos: 34.5,18.5 - parent: 0 - type: Transform -- uid: 13381 - type: CableApcExtension - components: - - pos: 35.5,18.5 - parent: 0 - type: Transform -- uid: 13382 - type: CableApcExtension - components: - - pos: 36.5,18.5 - parent: 0 - type: Transform -- uid: 13383 - type: CableApcExtension - components: - - pos: 37.5,18.5 - parent: 0 - type: Transform -- uid: 13384 - type: CableApcExtension - components: - - pos: 35.5,17.5 - parent: 0 - type: Transform -- uid: 13385 - type: CableApcExtension - components: - - pos: 35.5,16.5 - parent: 0 - type: Transform -- uid: 13386 - type: CableApcExtension - components: - - pos: 35.5,15.5 - parent: 0 - type: Transform -- uid: 13387 - type: CableApcExtension - components: - - pos: 35.5,14.5 - parent: 0 - type: Transform -- uid: 13388 - type: CableApcExtension - components: - - pos: 36.5,14.5 - parent: 0 - type: Transform -- uid: 13389 - type: CableApcExtension - components: - - pos: 37.5,14.5 - parent: 0 - type: Transform -- uid: 13390 - type: CableApcExtension - components: - - pos: 34.5,14.5 - parent: 0 - type: Transform -- uid: 13391 - type: CableApcExtension - components: - - pos: 33.5,14.5 - parent: 0 - type: Transform -- uid: 13392 - type: CableApcExtension - components: - - pos: 32.5,14.5 - parent: 0 - type: Transform -- uid: 13393 - type: CableApcExtension - components: - - pos: 34.5,20.5 - parent: 0 - type: Transform -- uid: 13394 - type: CableApcExtension - components: - - pos: 34.5,21.5 - parent: 0 - type: Transform -- uid: 13395 - type: CableApcExtension - components: - - pos: 34.5,22.5 - parent: 0 - type: Transform -- uid: 13396 - type: CableApcExtension - components: - - pos: 34.5,23.5 - parent: 0 - type: Transform -- uid: 13397 - type: CableApcExtension - components: - - pos: 34.5,24.5 - parent: 0 - type: Transform -- uid: 13398 - type: CableApcExtension - components: - - pos: 34.5,25.5 - parent: 0 - type: Transform -- uid: 13399 - type: CableApcExtension - components: - - pos: 34.5,26.5 - parent: 0 - type: Transform -- uid: 13400 - type: CableApcExtension - components: - - pos: 34.5,27.5 - parent: 0 - type: Transform -- uid: 13401 - type: CableApcExtension - components: - - pos: 34.5,28.5 - parent: 0 - type: Transform -- uid: 13402 - type: CableApcExtension - components: - - pos: 34.5,29.5 - parent: 0 - type: Transform -- uid: 13403 - type: CableApcExtension - components: - - pos: 34.5,30.5 - parent: 0 - type: Transform -- uid: 13404 - type: CableApcExtension - components: - - pos: 34.5,31.5 - parent: 0 - type: Transform -- uid: 13405 - type: CableApcExtension - components: - - pos: 34.5,32.5 - parent: 0 - type: Transform -- uid: 13406 - type: CableApcExtension - components: - - pos: 33.5,32.5 - parent: 0 - type: Transform -- uid: 13407 - type: CableApcExtension - components: - - pos: 32.5,32.5 - parent: 0 - type: Transform -- uid: 13408 - type: CableApcExtension - components: - - pos: 31.5,32.5 - parent: 0 - type: Transform -- uid: 13409 - type: CableApcExtension - components: - - pos: 30.5,32.5 - parent: 0 - type: Transform -- uid: 13410 - type: CableApcExtension - components: - - pos: 29.5,32.5 - parent: 0 - type: Transform -- uid: 13411 - type: CableApcExtension - components: - - pos: 28.5,32.5 - parent: 0 - type: Transform -- uid: 13412 - type: CableApcExtension - components: - - pos: 28.5,33.5 - parent: 0 - type: Transform -- uid: 13413 - type: CableApcExtension - components: - - pos: 28.5,34.5 - parent: 0 - type: Transform -- uid: 13414 - type: CableApcExtension - components: - - pos: 32.5,33.5 - parent: 0 - type: Transform -- uid: 13415 - type: CableApcExtension - components: - - pos: 35.5,30.5 - parent: 0 - type: Transform -- uid: 13416 - type: CableApcExtension - components: - - pos: 35.5,25.5 - parent: 0 - type: Transform -- uid: 13417 - type: CableApcExtension - components: - - pos: 36.5,25.5 - parent: 0 - type: Transform -- uid: 13418 - type: CableApcExtension - components: - - pos: 37.5,25.5 - parent: 0 - type: Transform -- uid: 13419 - type: CableApcExtension - components: - - pos: 33.5,27.5 - parent: 0 - type: Transform -- uid: 13420 - type: CableApcExtension - components: - - pos: 32.5,27.5 - parent: 0 - type: Transform -- uid: 13421 - type: CableApcExtension - components: - - pos: 31.5,27.5 - parent: 0 - type: Transform -- uid: 13422 - type: CableApcExtension - components: - - pos: 30.5,27.5 - parent: 0 - type: Transform -- uid: 13423 - type: CableApcExtension - components: - - pos: 29.5,27.5 - parent: 0 - type: Transform -- uid: 13424 - type: CableApcExtension - components: - - pos: 28.5,27.5 - parent: 0 - type: Transform -- uid: 13425 - type: CableApcExtension - components: - - pos: 27.5,27.5 - parent: 0 - type: Transform -- uid: 13426 - type: CableApcExtension - components: - - pos: 27.5,28.5 - parent: 0 - type: Transform -- uid: 13427 - type: CableApcExtension - components: - - pos: 33.5,23.5 - parent: 0 - type: Transform -- uid: 13428 - type: CableApcExtension - components: - - pos: 32.5,23.5 - parent: 0 - type: Transform -- uid: 13429 - type: CableApcExtension - components: - - pos: 31.5,23.5 - parent: 0 - type: Transform -- uid: 13430 - type: CableApcExtension - components: - - pos: 34.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13431 - type: CableApcExtension - components: - - pos: 34.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13432 - type: CableApcExtension - components: - - pos: 33.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13433 - type: CableApcExtension - components: - - pos: 32.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13434 - type: CableApcExtension - components: - - pos: 20.5,18.5 - parent: 0 - type: Transform -- uid: 13435 - type: CableApcExtension - components: - - pos: 21.5,18.5 - parent: 0 - type: Transform -- uid: 13436 - type: CableApcExtension - components: - - pos: 22.5,18.5 - parent: 0 - type: Transform -- uid: 13437 - type: CableApcExtension - components: - - pos: 23.5,18.5 - parent: 0 - type: Transform -- uid: 13438 - type: CableApcExtension - components: - - pos: 24.5,18.5 - parent: 0 - type: Transform -- uid: 13439 - type: CableApcExtension - components: - - pos: 25.5,18.5 - parent: 0 - type: Transform -- uid: 13440 - type: CableApcExtension - components: - - pos: 26.5,18.5 - parent: 0 - type: Transform -- uid: 13441 - type: CableApcExtension - components: - - pos: 27.5,18.5 - parent: 0 - type: Transform -- uid: 13442 - type: CableApcExtension - components: - - pos: 28.5,18.5 - parent: 0 - type: Transform -- uid: 13443 - type: CableApcExtension - components: - - pos: 27.5,17.5 - parent: 0 - type: Transform -- uid: 13444 - type: CableApcExtension - components: - - pos: 27.5,16.5 - parent: 0 - type: Transform -- uid: 13445 - type: CableApcExtension - components: - - pos: 27.5,15.5 - parent: 0 - type: Transform -- uid: 13446 - type: CableApcExtension - components: - - pos: 27.5,19.5 - parent: 0 - type: Transform -- uid: 13447 - type: CableApcExtension - components: - - pos: 27.5,20.5 - parent: 0 - type: Transform -- uid: 13448 - type: CableApcExtension - components: - - pos: 27.5,21.5 - parent: 0 - type: Transform -- uid: 13449 - type: CableApcExtension - components: - - pos: 27.5,22.5 - parent: 0 - type: Transform -- uid: 13450 - type: CableApcExtension - components: - - pos: 27.5,23.5 - parent: 0 - type: Transform -- uid: 13451 - type: CableApcExtension - components: - - pos: 27.5,24.5 - parent: 0 - type: Transform -- uid: 13452 - type: CableMV - components: - - pos: 37.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13453 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-31.5 - parent: 0 - type: Transform -- uid: 13454 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13455 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13456 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13457 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13458 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13459 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13460 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13461 - type: GasPressurePump - components: - - pos: 24.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13462 - type: GasPort - components: - - pos: 24.5,46.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 13463 - type: WallSolidRust - components: - - pos: 23.5,46.5 - parent: 0 - type: Transform -- uid: 13464 - type: WallSolid - components: - - pos: 23.5,44.5 - parent: 0 - type: Transform -- uid: 13465 - type: WallSolid - components: - - pos: 23.5,45.5 - parent: 0 - type: Transform -- uid: 13466 - type: WallSolidRust - components: - - pos: 25.5,44.5 - parent: 0 - type: Transform -- uid: 13467 - type: AirlockAtmosphericsLocked - components: - - pos: 24.5,44.5 - parent: 0 - type: Transform -- uid: 13468 - type: AirCanister - components: - - pos: 24.5,46.5 - parent: 0 - type: Transform -- uid: 13469 - type: Table - components: - - pos: 25.5,46.5 - parent: 0 - type: Transform -- uid: 13470 - type: CableApcExtension - components: - - pos: 24.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13471 - type: CableApcExtension - components: - - pos: 24.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13472 - type: CableApcExtension - components: - - pos: 24.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13473 - type: CableApcExtension - components: - - pos: 24.5,44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13474 - type: CableApcExtension - components: - - pos: 24.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13475 - type: CableApcExtension - components: - - pos: 23.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13476 - type: CableApcExtension - components: - - pos: 22.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13477 - type: CableApcExtension - components: - - pos: 22.5,44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13478 - type: CableApcExtension - components: - - pos: 22.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13479 - type: Wrench - components: - - pos: 25.48321,46.539497 - parent: 0 - type: Transform -- uid: 13480 - type: Crowbar - components: - - pos: 25.51446,46.492622 - parent: 0 - type: Transform -- uid: 13481 - type: Grille - components: - - pos: 21.5,42.5 - parent: 0 - type: Transform -- uid: 13482 - type: Grille - components: - - pos: 21.5,44.5 - parent: 0 - type: Transform -- uid: 13483 - type: Grille - components: - - pos: 21.5,46.5 - parent: 0 - type: Transform -- uid: 13484 - type: Grille - components: - - pos: 22.5,47.5 - parent: 0 - type: Transform -- uid: 13485 - type: GrilleBroken - components: - - pos: 15.5,23.5 - parent: 0 - type: Transform -- uid: 13486 - type: PortableScrubber - components: - - pos: 28.5,12.5 - parent: 0 - type: Transform -- uid: 13487 - type: ExtinguisherCabinetFilled - components: - - pos: 30.5,13.5 - parent: 0 - type: Transform -- uid: 13488 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: 24.5,19.5 - parent: 0 - type: Transform -- uid: 13491 - type: Rack - components: - - pos: 26.5,19.5 - parent: 0 - type: Transform -- uid: 13492 - type: ToolboxMechanicalFilled - components: - - pos: 26.383194,19.631002 - parent: 0 - type: Transform -- uid: 13493 - type: ToolboxMechanicalFilled - components: - - pos: 26.555069,19.506002 - parent: 0 - type: Transform -- uid: 13494 - type: WardrobePinkFilled - components: - - pos: 19.5,19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13495 - type: WardrobeYellowFilled - components: - - pos: 18.5,19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13496 - type: WardrobeWhiteFilled - components: - - pos: 17.5,19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13497 - type: WallSolid - components: - - pos: 23.5,12.5 - parent: 0 - type: Transform -- uid: 13498 - type: WardrobeGreenFilled - components: - - pos: 21.5,12.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13499 - type: WardrobeBlueFilled - components: - - pos: 22.5,12.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13500 - type: Table - components: - - pos: 19.5,16.5 - parent: 0 - type: Transform -- uid: 13501 - type: Table - components: - - pos: 20.5,16.5 - parent: 0 - type: Transform -- uid: 13502 - type: Table - components: - - pos: 20.5,15.5 - parent: 0 - type: Transform -- uid: 13503 - type: Table - components: - - pos: 19.5,15.5 - parent: 0 - type: Transform -- uid: 13504 - type: Table - components: - - pos: 25.5,15.5 - parent: 0 - type: Transform -- uid: 13505 - type: Table - components: - - pos: 25.5,16.5 - parent: 0 - type: Transform -- uid: 13506 - type: Stool - components: - - pos: 20.5,17.5 - parent: 0 - type: Transform -- uid: 13507 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 21.5,15.5 - parent: 0 - type: Transform -- uid: 13508 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 21.5,16.5 - parent: 0 - type: Transform -- uid: 13509 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 20.5,14.5 - parent: 0 - type: Transform -- uid: 13510 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 18.5,15.5 - parent: 0 - type: Transform -- uid: 13511 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 18.5,16.5 - parent: 0 - type: Transform -- uid: 13512 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 24.5,15.5 - parent: 0 - type: Transform -- uid: 13513 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 24.5,16.5 - parent: 0 - type: Transform -- uid: 13514 - type: Stool - components: - - pos: 25.5,17.5 - parent: 0 - type: Transform -- uid: 13515 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 26.5,16.5 - parent: 0 - type: Transform -- uid: 13516 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 26.5,15.5 - parent: 0 - type: Transform -- uid: 13517 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 25.5,14.5 - parent: 0 - type: Transform -- uid: 13518 - type: Rack - components: - - pos: 16.5,16.5 - parent: 0 - type: Transform -- uid: 13519 - type: Rack - components: - - pos: 16.5,17.5 - parent: 0 - type: Transform -- uid: 13520 - type: ExtinguisherCabinetFilled - components: - - pos: 15.5,16.5 - parent: 0 - type: Transform -- uid: 13521 - type: BriefcaseBrownFilled - components: - - pos: 16.428085,17.61908 - parent: 0 - type: Transform -- uid: 13522 - type: ClothingMaskBreath - components: - - pos: 16.53746,16.540955 - parent: 0 - type: Transform -- uid: 13523 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.533634,16.505785 - parent: 0 - type: Transform -- uid: 13524 - type: MedkitFilled - components: - - pos: 25.54926,15.61516 - parent: 0 - type: Transform -- uid: 13525 - type: DiceBag - components: - - pos: 25.54926,16.55266 - parent: 0 - type: Transform -- uid: 13526 - type: BoxFolderGrey - components: - - pos: 20.502384,15.693285 - parent: 0 - type: Transform -- uid: 13527 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 8.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13528 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13529 - type: Poweredlight - components: - - pos: 14.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13530 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13531 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 23.5,13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13532 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13533 - type: Poweredlight - components: - - pos: 18.5,19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13534 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13535 - type: Poweredlight - components: - - pos: 32.5,19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13536 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13537 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13538 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13539 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 30.5,37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13540 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13541 - type: Poweredlight - components: - - pos: 35.5,46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13542 - type: Poweredlight - components: - - pos: 27.5,46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13543 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 34.5,48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13544 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 30.5,48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13545 - type: Poweredlight - components: - - pos: 34.5,54.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13546 - type: Poweredlight - components: - - pos: 29.5,54.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13547 - type: Table - components: - - pos: 28.5,54.5 - parent: 0 - type: Transform -- uid: 13548 - type: Table - components: - - pos: 27.5,54.5 - parent: 0 - type: Transform -- uid: 13549 - type: Table - components: - - pos: 27.5,48.5 - parent: 0 - type: Transform -- uid: 13550 - type: Table - components: - - pos: 27.5,49.5 - parent: 0 - type: Transform -- uid: 13551 - type: Table - components: - - pos: 27.5,51.5 - parent: 0 - type: Transform -- uid: 13552 - type: SeedExtractor - components: - - pos: 27.5,50.5 - parent: 0 - type: Transform -- uid: 13553 - type: hydroponicsTray - components: - - pos: 29.5,49.5 - parent: 0 - type: Transform -- uid: 13554 - type: hydroponicsTray - components: - - pos: 30.5,49.5 - parent: 0 - type: Transform -- uid: 13555 - type: hydroponicsTray - components: - - pos: 32.5,49.5 - parent: 0 - type: Transform -- uid: 13556 - type: hydroponicsTray - components: - - pos: 33.5,49.5 - parent: 0 - type: Transform -- uid: 13557 - type: hydroponicsSoil - components: - - pos: 30.5,52.5 - parent: 0 - type: Transform -- uid: 13558 - type: hydroponicsSoil - components: - - pos: 30.5,53.5 - parent: 0 - type: Transform -- uid: 13559 - type: hydroponicsSoil - components: - - pos: 30.5,54.5 - parent: 0 - type: Transform -- uid: 13560 - type: hydroponicsSoil - components: - - pos: 33.5,52.5 - parent: 0 - type: Transform -- uid: 13561 - type: hydroponicsSoil - components: - - pos: 33.5,53.5 - parent: 0 - type: Transform -- uid: 13562 - type: hydroponicsSoil - components: - - pos: 33.5,54.5 - parent: 0 - type: Transform -- uid: 13563 - type: WindowReinforcedDirectional - components: - - pos: 34.5,51.5 - parent: 0 - type: Transform -- uid: 13564 - type: WindowReinforcedDirectional - components: - - pos: 33.5,51.5 - parent: 0 - type: Transform -- uid: 13565 - type: WindowReinforcedDirectional - components: - - pos: 30.5,51.5 - parent: 0 - type: Transform -- uid: 13566 - type: WindowReinforcedDirectional - components: - - pos: 29.5,51.5 - parent: 0 - type: Transform -- uid: 13567 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 28.5,51.5 - parent: 0 - type: Transform -- uid: 13568 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 28.5,52.5 - parent: 0 - type: Transform -- uid: 13569 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 28.5,53.5 - parent: 0 - type: Transform -- uid: 13570 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 28.5,54.5 - parent: 0 - type: Transform -- uid: 13571 - type: Windoor - components: - - pos: 31.5,51.5 - parent: 0 - type: Transform -- uid: 13572 - type: Windoor - components: - - pos: 32.5,51.5 - parent: 0 - type: Transform -- uid: 13573 - type: WaterTankFull - components: - - pos: 27.5,52.5 - parent: 0 - type: Transform -- uid: 13574 - type: Bucket - components: - - pos: 27.518969,48.68621 - parent: 0 - type: Transform -- uid: 13575 - type: HydroponicsToolMiniHoe - components: - - pos: 27.456469,49.46746 - parent: 0 - type: Transform -- uid: 13576 - type: HydroponicsToolSpade - components: - - pos: 27.565844,49.59246 - parent: 0 - type: Transform -- uid: 13577 - type: Crowbar - components: - - pos: 27.456469,48.59246 - parent: 0 - type: Transform -- uid: 13578 - type: ChanterelleSeeds - components: - - pos: 27.572693,54.544304 - parent: 0 - type: Transform -- uid: 13579 - type: WheatSeeds - components: - - pos: 27.557068,54.55993 - parent: 0 - type: Transform -- uid: 13580 - type: PotatoSeeds - components: - - pos: 27.432068,54.59118 - parent: 0 - type: Transform -- uid: 13581 - type: OatSeeds - components: - - pos: 27.510193,54.606804 - parent: 0 - type: Transform -- uid: 13582 - type: BananaSeeds - components: - - pos: 27.478943,54.52868 - parent: 0 - type: Transform -- uid: 13583 - type: WheatBushel - components: - - pos: 28.388376,54.54269 - parent: 0 - type: Transform -- uid: 13584 - type: FoodApple - components: - - pos: 28.466501,54.558315 - parent: 0 - type: Transform -- uid: 13585 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: 30.5,43.5 - parent: 0 - type: Transform -- uid: 13586 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: 34.5,39.5 - parent: 0 - type: Transform -- uid: 13587 - type: WaterCooler - components: - - pos: 30.5,38.5 - parent: 0 - type: Transform -- uid: 13588 - type: DrinkWaterCup - components: - - pos: 29.36374,38.637756 - parent: 0 - type: Transform - - tags: [] - type: Tag -- uid: 13589 - type: DrinkWaterCup - components: - - pos: 29.48874,38.49713 - parent: 0 - type: Transform - - tags: [] - type: Tag -- uid: 13590 - type: DrinkWaterCup - components: - - pos: 29.61374,38.65338 - parent: 0 - type: Transform - - tags: [] - type: Tag -- uid: 13591 - type: WallSolid - components: - - pos: 25.5,40.5 - parent: 0 - type: Transform -- uid: 13593 - type: WardrobeBlackFilled - components: - - pos: 31.5,46.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13594 - type: WardrobeMixedFilled - components: - - pos: 32.5,46.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13595 - type: WardrobeYellowFilled - components: - - pos: 33.5,46.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13596 - type: ClosetBase - components: - - pos: 34.5,46.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13597 - type: ClosetBase - components: - - pos: 27.5,46.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13598 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13599 - type: ReinforcedWindow - components: - - pos: 47.5,41.5 - parent: 0 - type: Transform -- uid: 13600 - type: ReinforcedWindow - components: - - pos: 48.5,40.5 - parent: 0 - type: Transform -- uid: 13601 - type: WallReinforced - components: - - pos: 47.5,40.5 - parent: 0 - type: Transform -- uid: 13602 - type: WallSolid - components: - - pos: 47.5,34.5 - parent: 0 - type: Transform -- uid: 13603 - type: WallSolid - components: - - pos: 47.5,35.5 - parent: 0 - type: Transform -- uid: 13604 - type: WallSolid - components: - - pos: 47.5,36.5 - parent: 0 - type: Transform -- uid: 13605 - type: WallSolid - components: - - pos: 47.5,37.5 - parent: 0 - type: Transform -- uid: 13606 - type: WallSolid - components: - - pos: 47.5,38.5 - parent: 0 - type: Transform -- uid: 13607 - type: WallSolid - components: - - pos: 47.5,39.5 - parent: 0 - type: Transform -- uid: 13608 - type: AirlockMaintLocked - components: - - pos: 46.5,34.5 - parent: 0 - type: Transform -- uid: 13609 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13610 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13611 - type: TableWood - components: - - pos: 45.5,40.5 - parent: 0 - type: Transform -- uid: 13612 - type: TableWood - components: - - pos: 45.5,41.5 - parent: 0 - type: Transform -- uid: 13613 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 46.5,40.5 - parent: 0 - type: Transform -- uid: 13614 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 46.5,41.5 - parent: 0 - type: Transform -- uid: 13615 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 46.5,38.5 - parent: 0 - type: Transform -- uid: 13616 - type: ComputerFrame - components: - - rot: 1.5707963267948966 rad - pos: 45.5,38.5 - parent: 0 - type: Transform -- uid: 13617 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 29.5,57.5 - parent: 0 - type: Transform -- uid: 13618 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13619 - type: ClothingUniformJumpsuitBartender - components: - - pos: 29.498106,42.552605 - parent: 0 - type: Transform -- uid: 13620 - type: MedkitBruteFilled - components: - - pos: 29.492418,41.521355 - parent: 0 - type: Transform -- uid: 13621 - type: ClothingHandsGlovesBoxingBlue - components: - - pos: 31.204893,42.958855 - parent: 0 - type: Transform -- uid: 13622 - type: ClothingHandsGlovesBoxingRed - components: - - pos: 34.017395,39.833855 - parent: 0 - type: Transform -- uid: 13623 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 28.5,41.5 - parent: 0 - type: Transform -- uid: 13624 - type: ClosetFireFilled - components: - - pos: 36.5,48.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13625 - type: RandomArcade - components: - - pos: 37.5,48.5 - parent: 0 - type: Transform -- uid: 13626 - type: ClosetEmergencyFilledRandom - components: - - pos: 39.5,48.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13627 - type: PlantBag - components: - - pos: 27.500471,51.577972 - parent: 0 - type: Transform -- uid: 13628 - type: Grille - components: - - pos: 16.5,53.5 - parent: 0 - type: Transform -- uid: 13629 - type: Grille - components: - - pos: 17.5,53.5 - parent: 0 - type: Transform -- uid: 13630 - type: Grille - components: - - pos: 18.5,53.5 - parent: 0 - type: Transform -- uid: 13631 - type: Grille - components: - - pos: 25.5,57.5 - parent: 0 - type: Transform -- uid: 13632 - type: Grille - components: - - pos: 26.5,57.5 - parent: 0 - type: Transform -- uid: 13633 - type: Grille - components: - - pos: 27.5,57.5 - parent: 0 - type: Transform -- uid: 13634 - type: Grille - components: - - pos: 28.5,57.5 - parent: 0 - type: Transform -- uid: 13635 - type: Grille - components: - - pos: 30.5,57.5 - parent: 0 - type: Transform -- uid: 13636 - type: Grille - components: - - pos: 33.5,57.5 - parent: 0 - type: Transform -- uid: 13637 - type: Grille - components: - - pos: 32.5,57.5 - parent: 0 - type: Transform -- uid: 13638 - type: Grille - components: - - pos: 35.5,57.5 - parent: 0 - type: Transform -- uid: 13639 - type: Grille - components: - - pos: 36.5,57.5 - parent: 0 - type: Transform -- uid: 13640 - type: Grille - components: - - pos: 37.5,57.5 - parent: 0 - type: Transform -- uid: 13641 - type: GrilleBroken - components: - - pos: 31.5,57.5 - parent: 0 - type: Transform -- uid: 13642 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 34.5,57.5 - parent: 0 - type: Transform -- uid: 13643 - type: GrilleBroken - components: - - pos: 38.5,57.5 - parent: 0 - type: Transform -- uid: 13644 - type: CarpetGreen - components: - - pos: 18.5,14.5 - parent: 0 - type: Transform -- uid: 13645 - type: CarpetGreen - components: - - pos: 18.5,15.5 - parent: 0 - type: Transform -- uid: 13646 - type: CarpetGreen - components: - - pos: 18.5,16.5 - parent: 0 - type: Transform -- uid: 13647 - type: CarpetGreen - components: - - pos: 18.5,17.5 - parent: 0 - type: Transform -- uid: 13648 - type: CarpetGreen - components: - - pos: 19.5,14.5 - parent: 0 - type: Transform -- uid: 13649 - type: CarpetGreen - components: - - pos: 19.5,15.5 - parent: 0 - type: Transform -- uid: 13650 - type: CarpetGreen - components: - - pos: 19.5,16.5 - parent: 0 - type: Transform -- uid: 13651 - type: CarpetGreen - components: - - pos: 19.5,17.5 - parent: 0 - type: Transform -- uid: 13652 - type: CarpetGreen - components: - - pos: 20.5,14.5 - parent: 0 - type: Transform -- uid: 13653 - type: CarpetGreen - components: - - pos: 20.5,15.5 - parent: 0 - type: Transform -- uid: 13654 - type: CarpetGreen - components: - - pos: 20.5,16.5 - parent: 0 - type: Transform -- uid: 13655 - type: CarpetGreen - components: - - pos: 20.5,17.5 - parent: 0 - type: Transform -- uid: 13656 - type: CarpetGreen - components: - - pos: 21.5,14.5 - parent: 0 - type: Transform -- uid: 13657 - type: CarpetGreen - components: - - pos: 21.5,15.5 - parent: 0 - type: Transform -- uid: 13658 - type: CarpetGreen - components: - - pos: 21.5,16.5 - parent: 0 - type: Transform -- uid: 13659 - type: CarpetGreen - components: - - pos: 21.5,17.5 - parent: 0 - type: Transform -- uid: 13660 - type: CarpetPink - components: - - pos: 26.5,14.5 - parent: 0 - type: Transform -- uid: 13661 - type: CarpetPink - components: - - pos: 24.5,17.5 - parent: 0 - type: Transform -- uid: 13662 - type: CarpetPink - components: - - pos: 24.5,16.5 - parent: 0 - type: Transform -- uid: 13663 - type: CarpetPink - components: - - pos: 24.5,15.5 - parent: 0 - type: Transform -- uid: 13664 - type: CarpetPink - components: - - pos: 24.5,14.5 - parent: 0 - type: Transform -- uid: 13665 - type: CarpetPink - components: - - pos: 25.5,17.5 - parent: 0 - type: Transform -- uid: 13666 - type: CarpetPink - components: - - pos: 25.5,16.5 - parent: 0 - type: Transform -- uid: 13667 - type: CarpetPink - components: - - pos: 25.5,15.5 - parent: 0 - type: Transform -- uid: 13668 - type: CarpetPink - components: - - pos: 25.5,14.5 - parent: 0 - type: Transform -- uid: 13669 - type: CarpetPink - components: - - pos: 26.5,15.5 - parent: 0 - type: Transform -- uid: 13670 - type: CarpetPink - components: - - pos: 26.5,16.5 - parent: 0 - type: Transform -- uid: 13671 - type: CarpetPink - components: - - pos: 26.5,17.5 - parent: 0 - type: Transform -- uid: 13672 - type: CableHV - components: - - pos: 40.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13673 - type: CableHV - components: - - pos: 40.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13674 - type: CableHV - components: - - pos: 40.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13675 - type: CableHV - components: - - pos: 40.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13676 - type: CableHV - components: - - pos: 40.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13677 - type: CableHV - components: - - pos: 40.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13678 - type: CableHV - components: - - pos: 40.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13679 - type: CableHV - components: - - pos: 40.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13680 - type: CableHV - components: - - pos: 40.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13681 - type: CableHV - components: - - pos: 40.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13682 - type: CableHV - components: - - pos: 40.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13683 - type: CableHV - components: - - pos: 40.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13684 - type: CableHV - components: - - pos: 40.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13685 - type: CableHV - components: - - pos: 40.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13686 - type: CableHV - components: - - pos: 40.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13687 - type: CableHV - components: - - pos: 40.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13688 - type: CableHV - components: - - pos: -14.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13689 - type: CableHV - components: - - pos: -13.5,33.5 - parent: 0 - type: Transform -- uid: 13690 - type: CableHV - components: - - pos: -12.5,33.5 - parent: 0 - type: Transform -- uid: 13691 - type: CableHV - components: - - pos: -11.5,33.5 - parent: 0 - type: Transform -- uid: 13692 - type: CableHV - components: - - pos: -10.5,33.5 - parent: 0 - type: Transform -- uid: 13693 - type: CableHV - components: - - pos: -9.5,33.5 - parent: 0 - type: Transform -- uid: 13694 - type: CableHV - components: - - pos: -8.5,33.5 - parent: 0 - type: Transform -- uid: 13695 - type: CableHV - components: - - pos: -7.5,33.5 - parent: 0 - type: Transform -- uid: 13696 - type: CableHV - components: - - pos: -6.5,33.5 - parent: 0 - type: Transform -- uid: 13697 - type: CableHV - components: - - pos: -5.5,33.5 - parent: 0 - type: Transform -- uid: 13698 - type: CableHV - components: - - pos: -4.5,33.5 - parent: 0 - type: Transform -- uid: 13699 - type: CableHV - components: - - pos: -3.5,33.5 - parent: 0 - type: Transform -- uid: 13700 - type: CableHV - components: - - pos: -2.5,33.5 - parent: 0 - type: Transform -- uid: 13701 - type: CableHV - components: - - pos: -1.5,33.5 - parent: 0 - type: Transform -- uid: 13702 - type: CableHV - components: - - pos: -0.5,33.5 - parent: 0 - type: Transform -- uid: 13703 - type: CableHV - components: - - pos: 0.5,33.5 - parent: 0 - type: Transform -- uid: 13704 - type: CableHV - components: - - pos: 1.5,33.5 - parent: 0 - type: Transform -- uid: 13705 - type: CableHV - components: - - pos: 2.5,33.5 - parent: 0 - type: Transform -- uid: 13706 - type: CableHV - components: - - pos: 2.5,32.5 - parent: 0 - type: Transform -- uid: 13707 - type: CableHV - components: - - pos: 3.5,32.5 - parent: 0 - type: Transform -- uid: 13708 - type: CableHV - components: - - pos: 4.5,32.5 - parent: 0 - type: Transform -- uid: 13709 - type: CableHV - components: - - pos: 5.5,32.5 - parent: 0 - type: Transform -- uid: 13710 - type: CableHV - components: - - pos: 6.5,32.5 - parent: 0 - type: Transform -- uid: 13711 - type: CableHV - components: - - pos: 7.5,32.5 - parent: 0 - type: Transform -- uid: 13712 - type: CableHV - components: - - pos: 7.5,33.5 - parent: 0 - type: Transform -- uid: 13713 - type: CableHV - components: - - pos: 7.5,34.5 - parent: 0 - type: Transform -- uid: 13714 - type: CableHV - components: - - pos: 7.5,35.5 - parent: 0 - type: Transform -- uid: 13715 - type: CableHV - components: - - pos: 7.5,36.5 - parent: 0 - type: Transform -- uid: 13716 - type: CableHV - components: - - pos: 8.5,36.5 - parent: 0 - type: Transform -- uid: 13717 - type: CableHV - components: - - pos: 9.5,36.5 - parent: 0 - type: Transform -- uid: 13718 - type: CableHV - components: - - pos: 10.5,36.5 - parent: 0 - type: Transform -- uid: 13719 - type: CableHV - components: - - pos: 11.5,36.5 - parent: 0 - type: Transform -- uid: 13720 - type: CableHV - components: - - pos: 12.5,36.5 - parent: 0 - type: Transform -- uid: 13721 - type: CableHV - components: - - pos: 13.5,36.5 - parent: 0 - type: Transform -- uid: 13722 - type: CableHV - components: - - pos: 14.5,36.5 - parent: 0 - type: Transform -- uid: 13723 - type: CableHV - components: - - pos: 14.5,37.5 - parent: 0 - type: Transform -- uid: 13724 - type: CableHV - components: - - pos: 15.5,37.5 - parent: 0 - type: Transform -- uid: 13725 - type: CableHV - components: - - pos: 16.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13726 - type: CableHV - components: - - pos: 17.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13727 - type: CableHV - components: - - pos: 18.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13728 - type: CableHV - components: - - pos: 19.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13729 - type: Catwalk - components: - - pos: 16.5,37.5 - parent: 0 - type: Transform -- uid: 13730 - type: Catwalk - components: - - pos: 17.5,37.5 - parent: 0 - type: Transform -- uid: 13731 - type: Catwalk - components: - - pos: 18.5,37.5 - parent: 0 - type: Transform -- uid: 13732 - type: Catwalk - components: - - pos: 19.5,37.5 - parent: 0 - type: Transform -- uid: 13733 - type: Catwalk - components: - - pos: 20.5,37.5 - parent: 0 - type: Transform -- uid: 13734 - type: Catwalk - components: - - pos: 21.5,37.5 - parent: 0 - type: Transform -- uid: 13735 - type: Catwalk - components: - - pos: 22.5,37.5 - parent: 0 - type: Transform -- uid: 13736 - type: Catwalk - components: - - pos: 23.5,37.5 - parent: 0 - type: Transform -- uid: 13737 - type: Catwalk - components: - - pos: 24.5,37.5 - parent: 0 - type: Transform -- uid: 13738 - type: Catwalk - components: - - pos: 25.5,37.5 - parent: 0 - type: Transform -- uid: 13739 - type: RandomInstruments - components: - - pos: 37.5,24.5 - parent: 0 - type: Transform -- uid: 13740 - type: ToySpawner - components: - - pos: 32.5,26.5 - parent: 0 - type: Transform -- uid: 13741 - type: RandomSoap - components: - - pos: 27.5,30.5 - parent: 0 - type: Transform -- uid: 13742 - type: ClothingOuterCoatGentle - components: - - pos: 23.465069,24.654417 - parent: 0 - type: Transform -- uid: 13743 - type: RandomPosterAny - components: - - pos: 29.5,29.5 - parent: 0 - type: Transform -- uid: 13744 - type: RandomPosterAny - components: - - pos: 38.5,22.5 - parent: 0 - type: Transform -- uid: 13745 - type: RandomPosterAny - components: - - pos: 39.5,14.5 - parent: 0 - type: Transform -- uid: 13746 - type: RandomPosterLegit - components: - - pos: 39.5,19.5 - parent: 0 - type: Transform -- uid: 13747 - type: RandomPosterLegit - components: - - pos: 31.5,13.5 - parent: 0 - type: Transform -- uid: 13748 - type: RandomPosterLegit - components: - - pos: 26.5,42.5 - parent: 0 - type: Transform -- uid: 13749 - type: RandomPosterLegit - components: - - pos: 33.5,35.5 - parent: 0 - type: Transform -- uid: 13750 - type: RandomPosterLegit - components: - - pos: 36.5,27.5 - parent: 0 - type: Transform -- uid: 13751 - type: RandomPosterLegit - components: - - pos: 22.5,11.5 - parent: 0 - type: Transform -- uid: 13752 - type: RandomPosterLegit - components: - - pos: 17.5,12.5 - parent: 0 - type: Transform -- uid: 13753 - type: Table - components: - - pos: 27.5,25.5 - parent: 0 - type: Transform -- uid: 13754 - type: Table - components: - - pos: 29.5,25.5 - parent: 0 - type: Transform -- uid: 13755 - type: ClothingShoesColorYellow - components: - - pos: 29.454126,25.423965 - parent: 0 - type: Transform -- uid: 13756 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: 28.5,25.5 - parent: 0 - type: Transform -- uid: 13757 - type: MaintenanceFluffSpawner - components: - - pos: 27.5,25.5 - parent: 0 - type: Transform -- uid: 13758 - type: Table - components: - - pos: 28.5,22.5 - parent: 0 - type: Transform -- uid: 13759 - type: Table - components: - - pos: 28.5,23.5 - parent: 0 - type: Transform -- uid: 13760 - type: MaintenanceFluffSpawner - components: - - pos: 28.5,22.5 - parent: 0 - type: Transform -- uid: 13761 - type: PowerCellRecharger - components: - - pos: 28.5,23.5 - parent: 0 - type: Transform -- uid: 13762 - type: PosterContrabandClown - components: - - pos: 30.5,15.5 - parent: 0 - type: Transform -- uid: 13763 - type: RandomPosterLegit - components: - - pos: 32.5,20.5 - parent: 0 - type: Transform -- uid: 13764 - type: PoweredSmallLight - components: - - pos: 18.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13765 - type: PoweredSmallLight - components: - - pos: 21.5,37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13766 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,45.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13767 - type: Grille - components: - - pos: 15.5,44.5 - parent: 0 - type: Transform -- uid: 13768 - type: Grille - components: - - pos: 19.5,42.5 - parent: 0 - type: Transform -- uid: 13769 - type: Grille - components: - - pos: 19.5,44.5 - parent: 0 - type: Transform -- uid: 13770 - type: Grille - components: - - pos: 19.5,46.5 - parent: 0 - type: Transform -- uid: 13771 - type: CableApcExtension - components: - - pos: 16.5,44.5 - parent: 0 - type: Transform -- uid: 13772 - type: CableApcExtension - components: - - pos: 15.5,44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13773 - type: CableApcExtension - components: - - pos: 16.5,42.5 - parent: 0 - type: Transform -- uid: 13774 - type: CableApcExtension - components: - - pos: 15.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13775 - type: CableApcExtension - components: - - pos: 18.5,42.5 - parent: 0 - type: Transform -- uid: 13776 - type: CableApcExtension - components: - - pos: 19.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13777 - type: CableApcExtension - components: - - pos: 18.5,44.5 - parent: 0 - type: Transform -- uid: 13778 - type: CableApcExtension - components: - - pos: 19.5,44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13779 - type: CableApcExtension - components: - - pos: 18.5,46.5 - parent: 0 - type: Transform -- uid: 13780 - type: CableApcExtension - components: - - pos: 19.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13781 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 17.5,39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13782 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,47.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13783 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,43.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13784 - type: ClothingShoesColorOrange - components: - - pos: -2.5458217,57.40607 - parent: 0 - type: Transform -- uid: 13785 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -11.5,54.5 - parent: 0 - type: Transform -- uid: 13786 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 46.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13787 - type: PoweredSmallLight - components: - - pos: 40.5,48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13788 - type: Grille - components: - - pos: 47.5,41.5 - parent: 0 - type: Transform -- uid: 13789 - type: Grille - components: - - pos: 48.5,40.5 - parent: 0 - type: Transform -- uid: 13790 - type: WallReinforced - components: - - pos: 52.5,38.5 - parent: 0 - type: Transform -- uid: 13791 - type: WallReinforced - components: - - pos: 50.5,38.5 - parent: 0 - type: Transform -- uid: 13792 - type: WallReinforced - components: - - pos: 49.5,38.5 - parent: 0 - type: Transform -- uid: 13793 - type: WallReinforced - components: - - pos: 49.5,40.5 - parent: 0 - type: Transform -- uid: 13794 - type: ReinforcedWindow - components: - - pos: 51.5,38.5 - parent: 0 - type: Transform -- uid: 13795 - type: WallReinforced - components: - - pos: 53.5,38.5 - parent: 0 - type: Transform -- uid: 13796 - type: WallReinforced - components: - - pos: 53.5,39.5 - parent: 0 - type: Transform -- uid: 13797 - type: WallReinforced - components: - - pos: 53.5,40.5 - parent: 0 - type: Transform -- uid: 13798 - type: WallReinforced - components: - - pos: 53.5,41.5 - parent: 0 - type: Transform -- uid: 13799 - type: WallReinforced - components: - - pos: 53.5,42.5 - parent: 0 - type: Transform -- uid: 13800 - type: WallReinforced - components: - - pos: 54.5,42.5 - parent: 0 - type: Transform -- uid: 13801 - type: WallReinforced - components: - - pos: 55.5,42.5 - parent: 0 - type: Transform -- uid: 13802 - type: WallReinforced - components: - - pos: 56.5,42.5 - parent: 0 - type: Transform -- uid: 13803 - type: WallReinforced - components: - - pos: 57.5,42.5 - parent: 0 - type: Transform -- uid: 13804 - type: WallReinforced - components: - - pos: 58.5,42.5 - parent: 0 - type: Transform -- uid: 13805 - type: WallReinforced - components: - - pos: 59.5,42.5 - parent: 0 - type: Transform -- uid: 13806 - type: WallReinforced - components: - - pos: 59.5,41.5 - parent: 0 - type: Transform -- uid: 13807 - type: WallReinforced - components: - - pos: 59.5,40.5 - parent: 0 - type: Transform -- uid: 13808 - type: WallReinforced - components: - - pos: 59.5,39.5 - parent: 0 - type: Transform -- uid: 13809 - type: WallReinforced - components: - - pos: 59.5,38.5 - parent: 0 - type: Transform -- uid: 13810 - type: ReinforcedWindow - components: - - pos: 54.5,37.5 - parent: 0 - type: Transform -- uid: 13811 - type: ReinforcedWindow - components: - - pos: 55.5,37.5 - parent: 0 - type: Transform -- uid: 13812 - type: ReinforcedWindow - components: - - pos: 57.5,37.5 - parent: 0 - type: Transform -- uid: 13813 - type: ReinforcedWindow - components: - - pos: 58.5,37.5 - parent: 0 - type: Transform -- uid: 13814 - type: WallReinforced - components: - - pos: 53.5,37.5 - parent: 0 - type: Transform -- uid: 13815 - type: WallReinforced - components: - - pos: 59.5,37.5 - parent: 0 - type: Transform -- uid: 13816 - type: WallReinforced - components: - - pos: 53.5,36.5 - parent: 0 - type: Transform -- uid: 13817 - type: WallReinforced - components: - - pos: 53.5,35.5 - parent: 0 - type: Transform -- uid: 13818 - type: WallReinforced - components: - - pos: 53.5,34.5 - parent: 0 - type: Transform -- uid: 13819 - type: WallReinforced - components: - - pos: 59.5,36.5 - parent: 0 - type: Transform -- uid: 13820 - type: WallReinforced - components: - - pos: 59.5,35.5 - parent: 0 - type: Transform -- uid: 13821 - type: WallReinforced - components: - - pos: 59.5,34.5 - parent: 0 - type: Transform -- uid: 13822 - type: WallReinforced - components: - - pos: 59.5,33.5 - parent: 0 - type: Transform -- uid: 13823 - type: WallReinforced - components: - - pos: 58.5,33.5 - parent: 0 - type: Transform -- uid: 13824 - type: WallReinforced - components: - - pos: 57.5,33.5 - parent: 0 - type: Transform -- uid: 13825 - type: WallReinforced - components: - - pos: 56.5,33.5 - parent: 0 - type: Transform -- uid: 13826 - type: WallReinforced - components: - - pos: 56.5,34.5 - parent: 0 - type: Transform -- uid: 13827 - type: WallReinforced - components: - - pos: 55.5,34.5 - parent: 0 - type: Transform -- uid: 13828 - type: WallReinforced - components: - - pos: 68.5,34.5 - parent: 0 - type: Transform -- uid: 13829 - type: WallReinforced - components: - - pos: 61.5,34.5 - parent: 0 - type: Transform -- uid: 13830 - type: ReinforcedWindow - components: - - pos: 60.5,35.5 - parent: 0 - type: Transform -- uid: 13831 - type: WallReinforced - components: - - pos: 61.5,35.5 - parent: 0 - type: Transform -- uid: 13832 - type: WallReinforced - components: - - pos: 61.5,36.5 - parent: 0 - type: Transform -- uid: 13833 - type: WallReinforced - components: - - pos: 61.5,37.5 - parent: 0 - type: Transform -- uid: 13834 - type: ReinforcedWindow - components: - - pos: 67.5,34.5 - parent: 0 - type: Transform -- uid: 13835 - type: WallReinforced - components: - - pos: 65.5,35.5 - parent: 0 - type: Transform -- uid: 13836 - type: WallReinforced - components: - - pos: 65.5,36.5 - parent: 0 - type: Transform -- uid: 13837 - type: WallReinforced - components: - - pos: 65.5,37.5 - parent: 0 - type: Transform -- uid: 13838 - type: ReinforcedWindow - components: - - pos: 61.5,38.5 - parent: 0 - type: Transform -- uid: 13839 - type: ReinforcedWindow - components: - - pos: 62.5,38.5 - parent: 0 - type: Transform -- uid: 13840 - type: ReinforcedWindow - components: - - pos: 62.5,39.5 - parent: 0 - type: Transform -- uid: 13841 - type: ReinforcedWindow - components: - - pos: 62.5,40.5 - parent: 0 - type: Transform -- uid: 13842 - type: ReinforcedWindow - components: - - pos: 65.5,38.5 - parent: 0 - type: Transform -- uid: 13843 - type: ReinforcedWindow - components: - - pos: 64.5,38.5 - parent: 0 - type: Transform -- uid: 13844 - type: ReinforcedWindow - components: - - pos: 64.5,39.5 - parent: 0 - type: Transform -- uid: 13845 - type: ReinforcedWindow - components: - - pos: 64.5,40.5 - parent: 0 - type: Transform -- uid: 13846 - type: WallReinforced - components: - - pos: 65.5,34.5 - parent: 0 - type: Transform -- uid: 13847 - type: WallReinforced - components: - - pos: 66.5,34.5 - parent: 0 - type: Transform -- uid: 13848 - type: WallReinforced - components: - - pos: 62.5,34.5 - parent: 0 - type: Transform -- uid: 13849 - type: WallReinforced - components: - - pos: 64.5,34.5 - parent: 0 - type: Transform -- uid: 13850 - type: WallReinforced - components: - - pos: 69.5,34.5 - parent: 0 - type: Transform -- uid: 13851 - type: WallReinforced - components: - - pos: 71.5,34.5 - parent: 0 - type: Transform -- uid: 13852 - type: WallReinforced - components: - - pos: 71.5,31.5 - parent: 0 - type: Transform -- uid: 13853 - type: WallReinforced - components: - - pos: 70.5,31.5 - parent: 0 - type: Transform -- uid: 13854 - type: WallReinforced - components: - - pos: 69.5,31.5 - parent: 0 - type: Transform -- uid: 13855 - type: WallReinforced - components: - - pos: 68.5,31.5 - parent: 0 - type: Transform -- uid: 13856 - type: WallReinforced - components: - - pos: 72.5,31.5 - parent: 0 - type: Transform -- uid: 13857 - type: WallReinforced - components: - - pos: 67.5,31.5 - parent: 0 - type: Transform -- uid: 13858 - type: WallReinforced - components: - - pos: 66.5,31.5 - parent: 0 - type: Transform -- uid: 13859 - type: WallReinforced - components: - - pos: 66.5,30.5 - parent: 0 - type: Transform -- uid: 13860 - type: WallReinforced - components: - - pos: 65.5,30.5 - parent: 0 - type: Transform -- uid: 13861 - type: WallReinforced - components: - - pos: 64.5,30.5 - parent: 0 - type: Transform -- uid: 13862 - type: WallReinforced - components: - - pos: 63.5,30.5 - parent: 0 - type: Transform -- uid: 13863 - type: WallReinforced - components: - - pos: 62.5,30.5 - parent: 0 - type: Transform -- uid: 13864 - type: WallReinforced - components: - - pos: 62.5,31.5 - parent: 0 - type: Transform -- uid: 13865 - type: WallReinforced - components: - - pos: 61.5,31.5 - parent: 0 - type: Transform -- uid: 13866 - type: WallReinforced - components: - - pos: 60.5,31.5 - parent: 0 - type: Transform -- uid: 13867 - type: WallReinforced - components: - - pos: 59.5,31.5 - parent: 0 - type: Transform -- uid: 13868 - type: WallReinforced - components: - - pos: 58.5,31.5 - parent: 0 - type: Transform -- uid: 13869 - type: WallReinforced - components: - - pos: 57.5,31.5 - parent: 0 - type: Transform -- uid: 13870 - type: WallReinforced - components: - - pos: 56.5,31.5 - parent: 0 - type: Transform -- uid: 13871 - type: WallReinforced - components: - - pos: 55.5,31.5 - parent: 0 - type: Transform -- uid: 13872 - type: WallReinforced - components: - - pos: 53.5,31.5 - parent: 0 - type: Transform -- uid: 13873 - type: WallSolid - components: - - pos: 52.5,34.5 - parent: 0 - type: Transform -- uid: 13874 - type: WallSolid - components: - - pos: 52.5,33.5 - parent: 0 - type: Transform -- uid: 13875 - type: WallSolid - components: - - pos: 51.5,33.5 - parent: 0 - type: Transform -- uid: 13876 - type: WallSolid - components: - - pos: 47.5,33.5 - parent: 0 - type: Transform -- uid: 13877 - type: WallSolid - components: - - pos: 48.5,33.5 - parent: 0 - type: Transform -- uid: 13878 - type: WallSolid - components: - - pos: 49.5,33.5 - parent: 0 - type: Transform -- uid: 13879 - type: WallReinforced - components: - - pos: 52.5,31.5 - parent: 0 - type: Transform -- uid: 13880 - type: WallReinforced - components: - - pos: 51.5,31.5 - parent: 0 - type: Transform -- uid: 13881 - type: WallReinforced - components: - - pos: 50.5,31.5 - parent: 0 - type: Transform -- uid: 13882 - type: WallReinforced - components: - - pos: 49.5,31.5 - parent: 0 - type: Transform -- uid: 13883 - type: WallReinforced - components: - - pos: 48.5,31.5 - parent: 0 - type: Transform -- uid: 13884 - type: WallReinforced - components: - - pos: 41.5,23.5 - parent: 0 - type: Transform -- uid: 13885 - type: WallReinforced - components: - - pos: 41.5,22.5 - parent: 0 - type: Transform -- uid: 13886 - type: WallReinforced - components: - - pos: 41.5,21.5 - parent: 0 - type: Transform -- uid: 13887 - type: WallReinforced - components: - - pos: 41.5,20.5 - parent: 0 - type: Transform -- uid: 13888 - type: WallReinforced - components: - - pos: 41.5,19.5 - parent: 0 - type: Transform -- uid: 13889 - type: WallReinforced - components: - - pos: 47.5,26.5 - parent: 0 - type: Transform -- uid: 13890 - type: WallReinforced - components: - - pos: 41.5,13.5 - parent: 0 - type: Transform -- uid: 13891 - type: WallReinforced - components: - - pos: 41.5,14.5 - parent: 0 - type: Transform -- uid: 13892 - type: WallReinforced - components: - - pos: 41.5,15.5 - parent: 0 - type: Transform -- uid: 13893 - type: WallReinforced - components: - - pos: 41.5,16.5 - parent: 0 - type: Transform -- uid: 13894 - type: WallReinforced - components: - - pos: 41.5,17.5 - parent: 0 - type: Transform -- uid: 13895 - type: WallReinforced - components: - - pos: 41.5,18.5 - parent: 0 - type: Transform -- uid: 13896 - type: ReinforcedWindow - components: - - pos: 42.5,18.5 - parent: 0 - type: Transform -- uid: 13897 - type: ReinforcedWindow - components: - - pos: 43.5,18.5 - parent: 0 - type: Transform -- uid: 13898 - type: ReinforcedWindow - components: - - pos: 44.5,18.5 - parent: 0 - type: Transform -- uid: 13899 - type: WallReinforced - components: - - pos: 45.5,18.5 - parent: 0 - type: Transform -- uid: 13900 - type: ReinforcedWindow - components: - - pos: 45.5,13.5 - parent: 0 - type: Transform -- uid: 13901 - type: ReinforcedWindow - components: - - pos: 45.5,14.5 - parent: 0 - type: Transform -- uid: 13902 - type: ReinforcedWindow - components: - - pos: 45.5,16.5 - parent: 0 - type: Transform -- uid: 13903 - type: ReinforcedWindow - components: - - pos: 45.5,17.5 - parent: 0 - type: Transform -- uid: 13904 - type: WallReinforced - components: - - pos: 47.5,18.5 - parent: 0 - type: Transform -- uid: 13905 - type: WallReinforced - components: - - pos: 49.5,27.5 - parent: 0 - type: Transform -- uid: 13906 - type: soda_dispenser - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-24.5 - parent: 0 - type: Transform -- uid: 13907 - type: WallSolid - components: - - pos: -20.5,37.5 - parent: 0 - type: Transform -- uid: 13908 - type: WallSolid - components: - - pos: -20.5,38.5 - parent: 0 - type: Transform -- uid: 13909 - type: PosterLegitCleanliness - components: - - pos: 36.5,31.5 - parent: 0 - type: Transform -- uid: 13910 - type: SpawnPointAssistant - components: - - pos: 21.5,7.5 - parent: 0 - type: Transform -- uid: 13911 - type: SpawnPointAtmos - components: - - pos: 48.5,-7.5 - parent: 0 - type: Transform -- uid: 13912 - type: SpawnPointAtmos - components: - - pos: 50.5,-7.5 - parent: 0 - type: Transform -- uid: 13913 - type: SpawnPointAtmos - components: - - pos: 52.5,-7.5 - parent: 0 - type: Transform -- uid: 13914 - type: PosterContrabandHighEffectEngineering - components: - - pos: 57.5,10.5 - parent: 0 - type: Transform -- uid: 13915 - type: SpawnPointStationEngineer - components: - - pos: 56.5,0.5 - parent: 0 - type: Transform -- uid: 13916 - type: SpawnPointStationEngineer - components: - - pos: 56.5,-0.5 - parent: 0 - type: Transform -- uid: 13917 - type: SpawnPointStationEngineer - components: - - pos: 56.5,-1.5 - parent: 0 - type: Transform -- uid: 13918 - type: SpawnPointStationEngineer - components: - - pos: 56.5,-2.5 - parent: 0 - type: Transform -- uid: 13919 - type: SpawnPointTechnicalAssistant - components: - - pos: 55.5,-0.5 - parent: 0 - type: Transform -- uid: 13920 - type: SpawnPointTechnicalAssistant - components: - - pos: 55.5,-1.5 - parent: 0 - type: Transform -- uid: 13921 - type: AirlockExternalLocked - components: - - pos: 49.5,39.5 - parent: 0 - type: Transform -- uid: 13922 - type: AirlockExternalGlassLocked - components: - - pos: 48.5,38.5 - parent: 0 - type: Transform -- uid: 13923 - type: AirlockExternalLocked - components: - - pos: 70.5,34.5 - parent: 0 - type: Transform -- uid: 13924 - type: AirlockExternalLocked - components: - - pos: 71.5,32.5 - parent: 0 - type: Transform -- uid: 13925 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-29.5 - parent: 0 - type: Transform -- uid: 13926 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 63.5,38.5 - parent: 0 - type: Transform -- uid: 13927 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 63.5,40.5 - parent: 0 - type: Transform -- uid: 13928 - type: AirlockEngineeringLocked - components: - - pos: 63.5,34.5 - parent: 0 - type: Transform -- uid: 13929 - type: HighSecCommandLocked - components: - - name: Grav Gen - type: MetaData - - pos: 54.5,34.5 - parent: 0 - type: Transform -- uid: 13930 - type: AirlockEngineeringLocked - components: - - pos: 54.5,31.5 - parent: 0 - type: Transform -- uid: 13931 - type: AirlockCommandGlassLocked - components: - - pos: 56.5,37.5 - parent: 0 - type: Transform -- uid: 13932 - type: CableHV - components: - - pos: 40.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13933 - type: CableHV - components: - - pos: 40.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13934 - type: CableHV - components: - - pos: 41.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13935 - type: CableHV - components: - - pos: 42.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13936 - type: CableHV - components: - - pos: 43.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13937 - type: CableHV - components: - - pos: 44.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13938 - type: CableHV - components: - - pos: 45.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13939 - type: CableHV - components: - - pos: 46.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13940 - type: CableHV - components: - - pos: 46.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13941 - type: CableHV - components: - - pos: 46.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13942 - type: CableHV - components: - - pos: 47.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13943 - type: CableHV - components: - - pos: 48.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13944 - type: CableHV - components: - - pos: 49.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13945 - type: CableHV - components: - - pos: 50.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13946 - type: CableHV - components: - - pos: 51.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13947 - type: CableHV - components: - - pos: 52.5,32.5 - parent: 0 - type: Transform -- uid: 13948 - type: CableHV - components: - - pos: 53.5,32.5 - parent: 0 - type: Transform -- uid: 13949 - type: CableHV - components: - - pos: 54.5,32.5 - parent: 0 - type: Transform -- uid: 13950 - type: CableHV - components: - - pos: 55.5,32.5 - parent: 0 - type: Transform -- uid: 13951 - type: CableHV - components: - - pos: 56.5,32.5 - parent: 0 - type: Transform -- uid: 13952 - type: CableHV - components: - - pos: 57.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13953 - type: CableHV - components: - - pos: 58.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13954 - type: CableHV - components: - - pos: 59.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13955 - type: CableHV - components: - - pos: 60.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13956 - type: CableHV - components: - - pos: 61.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13957 - type: CableHV - components: - - pos: 62.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13958 - type: CableHV - components: - - pos: 63.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13959 - type: CableHV - components: - - pos: 63.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13960 - type: CableHV - components: - - pos: 63.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13961 - type: CableHV - components: - - pos: 63.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13962 - type: CableHV - components: - - pos: 64.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13963 - type: CableHV - components: - - pos: 64.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13964 - type: CableHV - components: - - pos: 64.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13965 - type: CableHV - components: - - pos: 63.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13966 - type: CableHV - components: - - pos: 63.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13967 - type: CableHV - components: - - pos: 63.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13968 - type: CableHV - components: - - pos: 63.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13969 - type: CableHV - components: - - pos: 54.5,33.5 - parent: 0 - type: Transform -- uid: 13970 - type: CableHV - components: - - pos: 54.5,34.5 - parent: 0 - type: Transform -- uid: 13971 - type: CableHV - components: - - pos: 54.5,35.5 - parent: 0 - type: Transform -- uid: 13972 - type: CableHV - components: - - pos: 55.5,35.5 - parent: 0 - type: Transform -- uid: 13973 - type: CableHV - components: - - pos: 56.5,35.5 - parent: 0 - type: Transform -- uid: 13974 - type: CableHV - components: - - pos: 57.5,35.5 - parent: 0 - type: Transform -- uid: 13975 - type: CableHV - components: - - pos: 57.5,34.5 - parent: 0 - type: Transform -- uid: 13976 - type: CableHV - components: - - pos: 58.5,34.5 - parent: 0 - type: Transform -- uid: 13977 - type: SMESBasic - components: - - name: North East Solars SMES - type: MetaData - - pos: 64.5,37.5 - parent: 0 - type: Transform -- uid: 13978 - type: SMESBasic - components: - - name: Grav Gen SMES - type: MetaData - - pos: 57.5,34.5 - parent: 0 - type: Transform -- uid: 13979 - type: CableTerminal - components: - - pos: 57.5,35.5 - parent: 0 - type: Transform -- uid: 13980 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: 63.5,37.5 - parent: 0 - type: Transform -- uid: 13981 - type: SubstationBasic - components: - - name: Grav Gen Substation - type: MetaData - - pos: 58.5,34.5 - parent: 0 - type: Transform -- uid: 13982 - type: SubstationBasic - components: - - name: North East Solars Substation - type: MetaData - - pos: 64.5,35.5 - parent: 0 - type: Transform -- uid: 13983 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 53.5,36.5 - parent: 0 - type: Transform -- uid: 13984 - type: APCBasic - components: - - pos: 62.5,34.5 - parent: 0 - type: Transform -- uid: 13985 - type: CableMV - components: - - pos: 58.5,34.5 - parent: 0 - type: Transform -- uid: 13986 - type: CableMV - components: - - pos: 58.5,35.5 - parent: 0 - type: Transform -- uid: 13987 - type: CableMV - components: - - pos: 58.5,36.5 - parent: 0 - type: Transform -- uid: 13988 - type: CableMV - components: - - pos: 57.5,36.5 - parent: 0 - type: Transform -- uid: 13989 - type: CableMV - components: - - pos: 56.5,36.5 - parent: 0 - type: Transform -- uid: 13990 - type: CableMV - components: - - pos: 55.5,36.5 - parent: 0 - type: Transform -- uid: 13991 - type: CableMV - components: - - pos: 54.5,36.5 - parent: 0 - type: Transform -- uid: 13992 - type: CableMV - components: - - pos: 53.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13993 - type: CableMV - components: - - pos: 64.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13994 - type: CableMV - components: - - pos: 63.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13995 - type: CableMV - components: - - pos: 62.5,35.5 - parent: 0 - type: Transform -- uid: 13996 - type: CableMV - components: - - pos: 62.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13997 - type: Grille - components: - - pos: 54.5,37.5 - parent: 0 - type: Transform -- uid: 13998 - type: Grille - components: - - pos: 55.5,37.5 - parent: 0 - type: Transform -- uid: 13999 - type: Grille - components: - - pos: 57.5,37.5 - parent: 0 - type: Transform -- uid: 14000 - type: Grille - components: - - pos: 58.5,37.5 - parent: 0 - type: Transform -- uid: 14001 - type: Grille - components: - - pos: 51.5,38.5 - parent: 0 - type: Transform -- uid: 14002 - type: Grille - components: - - pos: 60.5,35.5 - parent: 0 - type: Transform -- uid: 14003 - type: Grille - components: - - pos: 67.5,34.5 - parent: 0 - type: Transform -- uid: 14004 - type: Grille - components: - - pos: 65.5,38.5 - parent: 0 - type: Transform -- uid: 14005 - type: Grille - components: - - pos: 64.5,38.5 - parent: 0 - type: Transform -- uid: 14006 - type: Grille - components: - - pos: 64.5,39.5 - parent: 0 - type: Transform -- uid: 14007 - type: Grille - components: - - pos: 64.5,40.5 - parent: 0 - type: Transform -- uid: 14008 - type: Grille - components: - - pos: 62.5,40.5 - parent: 0 - type: Transform -- uid: 14009 - type: Grille - components: - - pos: 62.5,39.5 - parent: 0 - type: Transform -- uid: 14010 - type: Grille - components: - - pos: 62.5,38.5 - parent: 0 - type: Transform -- uid: 14011 - type: Grille - components: - - pos: 61.5,38.5 - parent: 0 - type: Transform -- uid: 14012 - type: WallReinforced - components: - - pos: 69.5,33.5 - parent: 0 - type: Transform -- uid: 14013 - type: WallReinforced - components: - - pos: 71.5,33.5 - parent: 0 - type: Transform -- uid: 14014 - type: CableMV - components: - - pos: 55.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14015 - type: CableMV - components: - - pos: 54.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14016 - type: CableMV - components: - - pos: 57.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14017 - type: CableMV - components: - - pos: 58.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14018 - type: CableApcExtension - components: - - pos: 53.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14019 - type: CableApcExtension - components: - - pos: 54.5,36.5 - parent: 0 - type: Transform -- uid: 14020 - type: CableApcExtension - components: - - pos: 55.5,36.5 - parent: 0 - type: Transform -- uid: 14021 - type: CableApcExtension - components: - - pos: 56.5,36.5 - parent: 0 - type: Transform -- uid: 14022 - type: CableApcExtension - components: - - pos: 56.5,37.5 - parent: 0 - type: Transform -- uid: 14023 - type: CableApcExtension - components: - - pos: 56.5,38.5 - parent: 0 - type: Transform -- uid: 14024 - type: CableApcExtension - components: - - pos: 56.5,39.5 - parent: 0 - type: Transform -- uid: 14025 - type: CableApcExtension - components: - - pos: 56.5,40.5 - parent: 0 - type: Transform -- uid: 14026 - type: CableApcExtension - components: - - pos: 56.5,41.5 - parent: 0 - type: Transform -- uid: 14027 - type: CableApcExtension - components: - - pos: 56.5,35.5 - parent: 0 - type: Transform -- uid: 14028 - type: CableApcExtension - components: - - pos: 54.5,35.5 - parent: 0 - type: Transform -- uid: 14029 - type: CableApcExtension - components: - - pos: 54.5,34.5 - parent: 0 - type: Transform -- uid: 14030 - type: CableApcExtension - components: - - pos: 54.5,33.5 - parent: 0 - type: Transform -- uid: 14031 - type: CableApcExtension - components: - - pos: 54.5,32.5 - parent: 0 - type: Transform -- uid: 14032 - type: CableApcExtension - components: - - pos: 62.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14033 - type: CableApcExtension - components: - - pos: 62.5,35.5 - parent: 0 - type: Transform -- uid: 14034 - type: CableApcExtension - components: - - pos: 63.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14035 - type: CableApcExtension - components: - - pos: 63.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14036 - type: CableApcExtension - components: - - pos: 63.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14037 - type: CableApcExtension - components: - - pos: 63.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14038 - type: CableApcExtension - components: - - pos: 63.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14039 - type: CableApcExtension - components: - - pos: 62.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14040 - type: CableApcExtension - components: - - pos: 62.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14041 - type: CableApcExtension - components: - - pos: 63.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14042 - type: CableApcExtension - components: - - pos: 64.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14043 - type: CableApcExtension - components: - - pos: 65.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14044 - type: CableApcExtension - components: - - pos: 66.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14045 - type: CableApcExtension - components: - - pos: 67.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14046 - type: CableApcExtension - components: - - pos: 68.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14047 - type: CableApcExtension - components: - - pos: 69.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14048 - type: CableApcExtension - components: - - pos: 70.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14049 - type: CableApcExtension - components: - - pos: 61.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14050 - type: CableApcExtension - components: - - pos: 60.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14051 - type: CableApcExtension - components: - - pos: 59.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14052 - type: CableApcExtension - components: - - pos: 58.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14053 - type: GravityGenerator - components: - - pos: 56.5,40.5 - parent: 0 - type: Transform - - charge: 100 - type: GravityGenerator - - radius: 175.75 - type: PointLight -- uid: 14054 - type: GeneratorPlasma - components: - - pos: 58.5,36.5 - parent: 0 - type: Transform -- uid: 14055 - type: AirlockMaintLocked - components: - - pos: 52.5,32.5 - parent: 0 - type: Transform -- uid: 14056 - type: AirlockMaintLocked - components: - - pos: 56.5,32.5 - parent: 0 - type: Transform -- uid: 14057 - type: ClosetRadiationSuitFilled - components: - - pos: 53.5,33.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14058 - type: ClosetRadiationSuitFilled - components: - - pos: 55.5,33.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14059 - type: WallSolid - components: - - pos: -20.5,39.5 - parent: 0 - type: Transform -- uid: 14060 - type: SignSecureMed - components: - - pos: 55.5,31.5 - parent: 0 - type: Transform -- uid: 14061 - type: SignRadiationMed - components: - - pos: 57.5,33.5 - parent: 0 - type: Transform -- uid: 14062 - type: SignRadiationMed - components: - - pos: 55.5,34.5 - parent: 0 - type: Transform -- uid: 14063 - type: ReinforcedWindow - components: - - pos: 17.5,-30.5 - parent: 0 - type: Transform -- uid: 14064 - type: SignRadiationMed - components: - - pos: 56.5,42.5 - parent: 0 - type: Transform -- uid: 14065 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14066 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14067 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 53.5,32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14068 - type: ComputerSolarControl - components: - - pos: 62.5,37.5 - parent: 0 - type: Transform -- uid: 14069 - type: CableApcExtension - components: - - pos: -75.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14070 - type: CableApcExtension - components: - - pos: -76.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14071 - type: CableApcExtension - components: - - pos: -75.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14072 - type: CableApcExtension - components: - - pos: -74.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14073 - type: CableApcExtension - components: - - pos: -73.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14074 - type: CableApcExtension - components: - - pos: -72.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14075 - type: CableApcExtension - components: - - pos: -71.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14076 - type: CableApcExtension - components: - - pos: -70.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14077 - type: CableApcExtension - components: - - pos: -69.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14078 - type: CableApcExtension - components: - - pos: -68.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14079 - type: CableApcExtension - components: - - pos: -67.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14080 - type: CableApcExtension - components: - - pos: -66.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14081 - type: CableApcExtension - components: - - pos: -65.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14082 - type: CableApcExtension - components: - - pos: -64.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14083 - type: CableApcExtension - components: - - pos: -63.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14084 - type: CableApcExtension - components: - - pos: -62.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14085 - type: CableApcExtension - components: - - pos: -61.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14086 - type: CableApcExtension - components: - - pos: -60.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14087 - type: CableApcExtension - components: - - pos: -59.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14088 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 60.5,-8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 14089 - type: EmergencyLight - components: - - pos: -30.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14090 - type: EmergencyLight - components: - - pos: 4.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14091 - type: EmergencyLight - components: - - pos: -10.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14092 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 14093 - type: CableApcExtension - components: - - pos: -49.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14094 - type: CableApcExtension - components: - - pos: -50.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14095 - type: CableApcExtension - components: - - pos: -48.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14096 - type: CableHV - components: - - pos: 46.5,10.5 - parent: 0 - type: Transform -- uid: 14097 - type: CableHV - components: - - pos: 45.5,10.5 - parent: 0 - type: Transform -- uid: 14098 - type: CableHV - components: - - pos: 44.5,10.5 - parent: 0 - type: Transform -- uid: 14099 - type: CableHV - components: - - pos: 43.5,10.5 - parent: 0 - type: Transform -- uid: 14100 - type: CableHV - components: - - pos: 43.5,11.5 - parent: 0 - type: Transform -- uid: 14106 - type: CableApcExtension - components: - - pos: -75.5,-8.5 - parent: 0 - type: Transform -- uid: 14107 - type: CableApcExtension - components: - - pos: -76.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14108 - type: CableApcExtension - components: - - pos: -76.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14109 - type: CableApcExtension - components: - - pos: -75.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14110 - type: CableApcExtension - components: - - pos: -76.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14111 - type: CableApcExtension - components: - - pos: -76.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14112 - type: CableApcExtension - components: - - pos: -76.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14113 - type: CableApcExtension - components: - - pos: -75.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14114 - type: CableApcExtension - components: - - pos: -76.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14115 - type: CableApcExtension - components: - - pos: -76.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14116 - type: CableApcExtension - components: - - pos: -76.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14117 - type: CableApcExtension - components: - - pos: -75.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14118 - type: CableApcExtension - components: - - pos: -77.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14119 - type: CableApcExtension - components: - - pos: -78.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14120 - type: CableApcExtension - components: - - pos: -78.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14121 - type: CableApcExtension - components: - - pos: -78.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14122 - type: CableApcExtension - components: - - pos: -73.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14123 - type: CableApcExtension - components: - - pos: -71.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14124 - type: CableApcExtension - components: - - pos: -71.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14125 - type: CableApcExtension - components: - - pos: -71.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14126 - type: CableApcExtension - components: - - pos: -71.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14127 - type: CableApcExtension - components: - - pos: -71.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14128 - type: CableApcExtension - components: - - pos: -71.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14129 - type: CableApcExtension - components: - - pos: -73.5,-9.5 - parent: 0 - type: Transform -- uid: 14130 - type: CableApcExtension - components: - - pos: -73.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14131 - type: CableApcExtension - components: - - pos: -71.5,-9.5 - parent: 0 - type: Transform -- uid: 14132 - type: CableApcExtension - components: - - pos: -71.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14133 - type: CableApcExtension - components: - - pos: -68.5,-9.5 - parent: 0 - type: Transform -- uid: 14134 - type: CableApcExtension - components: - - pos: -68.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14135 - type: CableApcExtension - components: - - pos: -69.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14136 - type: CableApcExtension - components: - - pos: -67.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14137 - type: CableApcExtension - components: - - pos: -65.5,-9.5 - parent: 0 - type: Transform -- uid: 14138 - type: CableApcExtension - components: - - pos: -65.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14139 - type: WallSolid - components: - - pos: 17.5,-28.5 - parent: 0 - type: Transform -- uid: 14140 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14141 - type: Catwalk - components: - - pos: 70.5,35.5 - parent: 0 - type: Transform -- uid: 14142 - type: Catwalk - components: - - pos: 70.5,36.5 - parent: 0 - type: Transform -- uid: 14143 - type: Catwalk - components: - - pos: 72.5,32.5 - parent: 0 - type: Transform -- uid: 14144 - type: Catwalk - components: - - pos: 73.5,32.5 - parent: 0 - type: Transform -- uid: 14145 - type: LockerElectricalSuppliesFilled - components: - - pos: 51.5,12.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14146 - type: LockerWeldingSuppliesFilled - components: - - pos: 49.5,12.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14147 - type: PosterLegitSafetyEyeProtection - components: - - pos: 49.5,6.5 - parent: 0 - type: Transform -- uid: 14148 - type: PosterLegitSafetyInternals - components: - - pos: 51.5,11.5 - parent: 0 - type: Transform -- uid: 14149 - type: SignMedical - components: - - pos: -6.5,-22.5 - parent: 0 - type: Transform -- uid: 14150 - type: CableApcExtension - components: - - pos: -44.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14151 - type: Window - components: - - pos: -4.5,-26.5 - parent: 0 - type: Transform -- uid: 14152 - type: SignMedical - components: - - pos: -4.5,-23.5 - parent: 0 - type: Transform -- uid: 14153 - type: Window - components: - - pos: -5.5,-22.5 - parent: 0 - type: Transform -- uid: 14154 - type: Window - components: - - pos: -7.5,-22.5 - parent: 0 - type: Transform -- uid: 14155 - type: Window - components: - - pos: -10.5,-22.5 - parent: 0 - type: Transform -- uid: 14156 - type: Window - components: - - pos: -12.5,-22.5 - parent: 0 - type: Transform -- uid: 14157 - type: WallReinforced - components: - - pos: -4.5,-31.5 - parent: 0 - type: Transform -- uid: 14158 - type: WallReinforced - components: - - pos: -4.5,-29.5 - parent: 0 - type: Transform -- uid: 14159 - type: WallReinforced - components: - - pos: -4.5,-32.5 - parent: 0 - type: Transform -- uid: 14160 - type: WallReinforced - components: - - pos: -5.5,-32.5 - parent: 0 - type: Transform -- uid: 14161 - type: WallReinforced - components: - - pos: -10.5,-28.5 - parent: 0 - type: Transform -- uid: 14162 - type: TableGlass - components: - - pos: -7.5,-28.5 - parent: 0 - type: Transform -- uid: 14163 - type: WallReinforced - components: - - pos: -10.5,-27.5 - parent: 0 - type: Transform -- uid: 14164 - type: WallReinforced - components: - - pos: -10.5,-32.5 - parent: 0 - type: Transform -- uid: 14165 - type: WallReinforced - components: - - pos: -10.5,-33.5 - parent: 0 - type: Transform -- uid: 14166 - type: WallReinforced - components: - - pos: -10.5,-34.5 - parent: 0 - type: Transform -- uid: 14167 - type: WallReinforced - components: - - pos: -10.5,-35.5 - parent: 0 - type: Transform -- uid: 14168 - type: WallReinforced - components: - - pos: -10.5,-36.5 - parent: 0 - type: Transform -- uid: 14169 - type: WallReinforced - components: - - pos: -9.5,-36.5 - parent: 0 - type: Transform -- uid: 14170 - type: WallReinforced - components: - - pos: -7.5,-36.5 - parent: 0 - type: Transform -- uid: 14171 - type: WallReinforced - components: - - pos: -6.5,-36.5 - parent: 0 - type: Transform -- uid: 14172 - type: WallReinforced - components: - - pos: -5.5,-36.5 - parent: 0 - type: Transform -- uid: 14173 - type: ReinforcedWindow - components: - - pos: -5.5,-35.5 - parent: 0 - type: Transform -- uid: 14174 - type: ReinforcedWindow - components: - - pos: -5.5,-33.5 - parent: 0 - type: Transform -- uid: 14175 - type: ReinforcedWindow - components: - - pos: -4.5,-30.5 - parent: 0 - type: Transform -- uid: 14176 - type: ReinforcedWindow - components: - - pos: -4.5,-28.5 - parent: 0 - type: Transform -- uid: 14177 - type: ReinforcedWindow - components: - - pos: -5.5,-27.5 - parent: 0 - type: Transform -- uid: 14178 - type: FirelockGlass - components: - - pos: -8.5,-27.5 - parent: 0 - type: Transform -- uid: 14179 - type: TableReinforced - components: - - pos: -10.5,-31.5 - parent: 0 - type: Transform -- uid: 14180 - type: TableReinforced - components: - - pos: -6.5,-27.5 - parent: 0 - type: Transform -- uid: 14181 - type: TableReinforced - components: - - pos: -5.5,-34.5 - parent: 0 - type: Transform -- uid: 14182 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,-30.5 - parent: 0 - type: Transform -- uid: 14183 - type: WindoorChemistryLocked - components: - - pos: -8.5,-27.5 - parent: 0 - type: Transform -- uid: 14184 - type: AirlockChemistryLocked - components: - - pos: -10.5,-29.5 - parent: 0 - type: Transform -- uid: 14185 - type: AirlockMaintChemLocked - components: - - pos: -8.5,-36.5 - parent: 0 - type: Transform -- uid: 14186 - type: WindoorChemistryLocked - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-31.5 - parent: 0 - type: Transform -- uid: 14187 - type: WindoorChemistryLocked - components: - - pos: -6.5,-27.5 - parent: 0 - type: Transform -- uid: 14188 - type: ReinforcedWindow - components: - - pos: -7.5,-27.5 - parent: 0 - type: Transform -- uid: 14189 - type: WindoorChemistryLocked - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-34.5 - parent: 0 - type: Transform -- uid: 14190 - type: FirelockGlass - components: - - pos: -5.5,-34.5 - parent: 0 - type: Transform -- uid: 14191 - type: FirelockGlass - components: - - pos: -10.5,-31.5 - parent: 0 - type: Transform -- uid: 14192 - type: FirelockGlass - components: - - pos: -10.5,-30.5 - parent: 0 - type: Transform -- uid: 14193 - type: ShuttersNormalOpen - components: - - pos: -7.5,-27.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14204 - type: SignalReceiver -- uid: 14194 - type: FirelockGlass - components: - - pos: -6.5,-27.5 - parent: 0 - type: Transform -- uid: 14195 - type: ExtinguisherCabinetFilled - components: - - pos: -4.5,-31.5 - parent: 0 - type: Transform -- uid: 14196 - type: ShuttersNormalOpen - components: - - pos: -5.5,-27.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14204 - type: SignalReceiver -- uid: 14197 - type: chem_dispenser - components: - - pos: -9.5,-33.5 - parent: 0 - type: Transform -- uid: 14198 - type: TableGlass - components: - - pos: -6.5,-30.5 - parent: 0 - type: Transform -- uid: 14199 - type: ExtinguisherCabinetFilled - components: - - pos: -13.5,-21.5 - parent: 0 - type: Transform -- uid: 14200 - type: ShuttersWindowOpen - components: - - pos: -8.5,-27.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14204 - type: SignalReceiver -- uid: 14201 - type: ShuttersWindowOpen - components: - - pos: -6.5,-27.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14204 - type: SignalReceiver -- uid: 14202 - type: TableGlass - components: - - pos: -7.5,-30.5 - parent: 0 - type: Transform -- uid: 14203 - type: WallReinforced - components: - - pos: -18.5,-37.5 - parent: 0 - type: Transform -- uid: 14204 - type: SignalButton - components: - - pos: -5.5,-32.5 - parent: 0 - type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 14200 - - port: Toggle - uid: 14193 - - port: Toggle - uid: 14201 - - port: Toggle - uid: 14196 - - port: Toggle - uid: 14849 - - port: Toggle - uid: 14850 - - port: Toggle - uid: 14848 - - port: Toggle - uid: 14847 - - port: Toggle - uid: 14846 - type: SignalTransmitter -- uid: 14205 - type: FirelockGlass - components: - - pos: -0.5,-25.5 - parent: 0 - type: Transform -- uid: 14206 - type: FirelockGlass - components: - - pos: -0.5,-24.5 - parent: 0 - type: Transform -- uid: 14207 - type: FirelockGlass - components: - - pos: -4.5,-25.5 - parent: 0 - type: Transform -- uid: 14208 - type: FirelockGlass - components: - - pos: -4.5,-24.5 - parent: 0 - type: Transform -- uid: 14209 - type: FirelockGlass - components: - - pos: -8.5,-22.5 - parent: 0 - type: Transform -- uid: 14210 - type: FirelockGlass - components: - - pos: -9.5,-22.5 - parent: 0 - type: Transform -- uid: 14211 - type: WallReinforced - components: - - pos: -12.5,-36.5 - parent: 0 - type: Transform -- uid: 14212 - type: WallSolid - components: - - pos: -4.5,-36.5 - parent: 0 - type: Transform -- uid: 14213 - type: WallReinforced - components: - - pos: -12.5,-34.5 - parent: 0 - type: Transform -- uid: 14214 - type: WallReinforced - components: - - pos: -12.5,-33.5 - parent: 0 - type: Transform -- uid: 14215 - type: WallReinforced - components: - - pos: -12.5,-32.5 - parent: 0 - type: Transform -- uid: 14216 - type: WallReinforced - components: - - pos: -13.5,-32.5 - parent: 0 - type: Transform -- uid: 14217 - type: WallReinforced - components: - - pos: -17.5,-32.5 - parent: 0 - type: Transform -- uid: 14218 - type: WallReinforced - components: - - pos: -18.5,-32.5 - parent: 0 - type: Transform -- uid: 14219 - type: WallReinforced - components: - - pos: -18.5,-33.5 - parent: 0 - type: Transform -- uid: 14220 - type: WallReinforced - components: - - pos: -12.5,-39.5 - parent: 0 - type: Transform -- uid: 14221 - type: WallReinforced - components: - - pos: -18.5,-38.5 - parent: 0 - type: Transform -- uid: 14222 - type: WallReinforced - components: - - pos: -18.5,-39.5 - parent: 0 - type: Transform -- uid: 14223 - type: WallReinforced - components: - - pos: -17.5,-39.5 - parent: 0 - type: Transform -- uid: 14224 - type: WallReinforced - components: - - pos: -16.5,-39.5 - parent: 0 - type: Transform -- uid: 14225 - type: WallReinforced - components: - - pos: -15.5,-39.5 - parent: 0 - type: Transform -- uid: 14226 - type: WallReinforced - components: - - pos: -13.5,-39.5 - parent: 0 - type: Transform -- uid: 14227 - type: WallReinforced - components: - - pos: -14.5,-39.5 - parent: 0 - type: Transform -- uid: 14228 - type: TableGlass - components: - - pos: -21.5,-23.5 - parent: 0 - type: Transform -- uid: 14229 - type: WallReinforced - components: - - pos: -12.5,-38.5 - parent: 0 - type: Transform -- uid: 14230 - type: WallReinforced - components: - - pos: -12.5,-37.5 - parent: 0 - type: Transform -- uid: 14231 - type: TableGlass - components: - - pos: -20.5,-23.5 - parent: 0 - type: Transform -- uid: 14232 - type: AirlockChiefMedicalOfficerGlassLocked - components: - - pos: -18.5,-34.5 - parent: 0 - type: Transform -- uid: 14233 - type: AirlockChiefMedicalOfficerLocked - components: - - pos: -12.5,-35.5 - parent: 0 - type: Transform -- uid: 14234 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 3.5,41.5 - parent: 0 - type: Transform -- uid: 14235 - type: ReinforcedWindow - components: - - pos: -18.5,-40.5 - parent: 0 - type: Transform -- uid: 14236 - type: ReinforcedWindow - components: - - pos: -18.5,-43.5 - parent: 0 - type: Transform -- uid: 14237 - type: WallSolid - components: - - pos: -18.5,-44.5 - parent: 0 - type: Transform -- uid: 14238 - type: WallSolid - components: - - pos: -13.5,-22.5 - parent: 0 - type: Transform -- uid: 14239 - type: WallSolid - components: - - pos: -13.5,-21.5 - parent: 0 - type: Transform -- uid: 14240 - type: MedkitAdvancedFilled - components: - - pos: -23.427843,-27.372747 - parent: 0 - type: Transform -- uid: 14241 - type: WallSolid - components: - - pos: -17.5,-28.5 - parent: 0 - type: Transform -- uid: 14242 - type: WallSolid - components: - - pos: -17.5,-27.5 - parent: 0 - type: Transform -- uid: 14243 - type: ComputerMedicalRecords - components: - - rot: 3.141592653589793 rad - pos: -18.5,-25.5 - parent: 0 - type: Transform -- uid: 14244 - type: Grille - components: - - pos: -11.5,-27.5 - parent: 0 - type: Transform -- uid: 14245 - type: ReinforcedWindow - components: - - pos: -15.5,-27.5 - parent: 0 - type: Transform -- uid: 14246 - type: MedkitBurnFilled - components: - - pos: -21.310926,-23.4915 - parent: 0 - type: Transform -- uid: 14247 - type: Grille - components: - - pos: -17.5,-23.5 - parent: 0 - type: Transform -- uid: 14248 - type: AirlockGlass - components: - - pos: -16.5,-21.5 - parent: 0 - type: Transform -- uid: 14249 - type: ReinforcedWindow - components: - - pos: -17.5,-31.5 - parent: 0 - type: Transform -- uid: 14250 - type: WallSolid - components: - - pos: -17.5,-22.5 - parent: 0 - type: Transform -- uid: 14251 - type: WallSolid - components: - - pos: -17.5,-21.5 - parent: 0 - type: Transform -- uid: 14252 - type: FirelockGlass - components: - - pos: -14.5,-21.5 - parent: 0 - type: Transform -- uid: 14253 - type: FirelockGlass - components: - - pos: -15.5,-21.5 - parent: 0 - type: Transform -- uid: 14254 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14255 - type: ReinforcedWindow - components: - - pos: -21.5,-28.5 - parent: 0 - type: Transform -- uid: 14256 - type: ReinforcedWindow - components: - - pos: -19.5,-28.5 - parent: 0 - type: Transform -- uid: 14257 - type: SignChemistry1 - components: - - pos: -4.5,-32.5 - parent: 0 - type: Transform -- uid: 14258 - type: WallSolid - components: - - pos: -21.5,-21.5 - parent: 0 - type: Transform -- uid: 14259 - type: VendingMachineChemDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,-32.5 - parent: 0 - type: Transform -- uid: 14260 - type: TableReinforced - components: - - pos: -8.5,-27.5 - parent: 0 - type: Transform -- uid: 14261 - type: WallReinforced - components: - - pos: -9.5,-27.5 - parent: 0 - type: Transform -- uid: 14262 - type: chem_dispenser - components: - - pos: -5.5,-28.5 - parent: 0 - type: Transform -- uid: 14263 - type: chem_dispenser - components: - - pos: -6.5,-33.5 - parent: 0 - type: Transform -- uid: 14264 - type: chem_master - components: - - pos: -6.5,-35.5 - parent: 0 - type: Transform -- uid: 14265 - type: ReinforcedWindow - components: - - pos: -15.5,-32.5 - parent: 0 - type: Transform -- uid: 14266 - type: ReinforcedWindow - components: - - pos: -16.5,-32.5 - parent: 0 - type: Transform -- uid: 14267 - type: ReinforcedWindow - components: - - pos: -18.5,-36.5 - parent: 0 - type: Transform -- uid: 14268 - type: ReinforcedWindow - components: - - pos: -18.5,-35.5 - parent: 0 - type: Transform -- uid: 14269 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-36.5 - parent: 0 - type: Transform -- uid: 14270 - type: ReinforcedWindow - components: - - pos: -20.5,-22.5 - parent: 0 - type: Transform -- uid: 14271 - type: ReinforcedWindow - components: - - pos: -18.5,-22.5 - parent: 0 - type: Transform -- uid: 14272 - type: WallSolid - components: - - pos: -18.5,-28.5 - parent: 0 - type: Transform -- uid: 14273 - type: WallSolid - components: - - pos: -21.5,-22.5 - parent: 0 - type: Transform -- uid: 14274 - type: ReinforcedWindow - components: - - pos: -28.5,-28.5 - parent: 0 - type: Transform -- uid: 14275 - type: WallReinforced - components: - - pos: -24.5,-25.5 - parent: 0 - type: Transform -- uid: 14276 - type: WallSolid - components: - - pos: -34.5,-37.5 - parent: 0 - type: Transform -- uid: 14277 - type: ReinforcedWindow - components: - - pos: -22.5,-31.5 - parent: 0 - type: Transform -- uid: 14278 - type: WallReinforced - components: - - pos: -24.5,-23.5 - parent: 0 - type: Transform -- uid: 14279 - type: WallSolid - components: - - pos: -22.5,-28.5 - parent: 0 - type: Transform -- uid: 14280 - type: WallSolid - components: - - pos: -22.5,-29.5 - parent: 0 - type: Transform -- uid: 14281 - type: WallSolid - components: - - pos: -38.5,-37.5 - parent: 0 - type: Transform -- uid: 14282 - type: WallSolid - components: - - pos: -22.5,-38.5 - parent: 0 - type: Transform -- uid: 14283 - type: WallSolid - components: - - pos: -23.5,-38.5 - parent: 0 - type: Transform -- uid: 14284 - type: WallSolid - components: - - pos: -22.5,-30.5 - parent: 0 - type: Transform -- uid: 14285 - type: WallSolid - components: - - pos: -24.5,-38.5 - parent: 0 - type: Transform -- uid: 14286 - type: AirlockMedicalGlassLocked - components: - - pos: -17.5,-30.5 - parent: 0 - type: Transform -- uid: 14287 - type: AirlockMaintMedLocked - components: - - pos: -11.5,-32.5 - parent: 0 - type: Transform -- uid: 14288 - type: AirlockMedicalGlassLocked - components: - - pos: -17.5,-29.5 - parent: 0 - type: Transform -- uid: 14289 - type: AirlockMedicalGlassLocked - components: - - pos: -20.5,-28.5 - parent: 0 - type: Transform -- uid: 14290 - type: AirlockMedicalGlassLocked - components: - - pos: -19.5,-22.5 - parent: 0 - type: Transform -- uid: 14291 - type: Bed - components: - - pos: -13.5,-42.5 - parent: 0 - type: Transform -- uid: 14292 - type: TableReinforced - components: - - pos: -17.5,-24.5 - parent: 0 - type: Transform -- uid: 14293 - type: Grille - components: - - pos: -17.5,-26.5 - parent: 0 - type: Transform -- uid: 14294 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-28.5 - parent: 0 - type: Transform -- uid: 14295 - type: DisposalUnit - components: - - pos: -9.5,-28.5 - parent: 0 - type: Transform -- uid: 14296 - type: SignChemistry1 - components: - - pos: -9.5,-27.5 - parent: 0 - type: Transform -- uid: 14297 - type: TableGlass - components: - - pos: -5.5,-30.5 - parent: 0 - type: Transform -- uid: 14298 - type: LockerChemistryFilled - components: - - pos: -5.5,-31.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14299 - type: TableGlass - components: - - pos: -9.5,-34.5 - parent: 0 - type: Transform -- uid: 14300 - type: KitchenReagentGrinder - components: - - pos: -9.5,-34.5 - parent: 0 - type: Transform -- uid: 14301 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-33.5 - parent: 0 - type: Transform -- uid: 14302 - type: chem_master - components: - - pos: -9.5,-32.5 - parent: 0 - type: Transform -- uid: 14303 - type: TableGlass - components: - - pos: -9.5,-35.5 - parent: 0 - type: Transform -- uid: 14304 - type: chem_master - components: - - pos: -5.5,-29.5 - parent: 0 - type: Transform -- uid: 14305 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-34.5 - parent: 0 - type: Transform -- uid: 14306 - type: WallReinforced - components: - - pos: -30.5,-25.5 - parent: 0 - type: Transform -- uid: 14307 - type: WallSolid - components: - - pos: -33.5,-37.5 - parent: 0 - type: Transform -- uid: 14308 - type: WallSolid - components: - - pos: -35.5,-29.5 - parent: 0 - type: Transform -- uid: 14309 - type: WallSolid - components: - - pos: -37.5,-29.5 - parent: 0 - type: Transform -- uid: 14310 - type: ReinforcedWindow - components: - - pos: -25.5,-24.5 - parent: 0 - type: Transform -- uid: 14311 - type: WallReinforced - components: - - pos: -24.5,-24.5 - parent: 0 - type: Transform -- uid: 14312 - type: WallSolid - components: - - pos: -38.5,-30.5 - parent: 0 - type: Transform -- uid: 14313 - type: WallReinforced - components: - - pos: -30.5,-24.5 - parent: 0 - type: Transform -- uid: 14314 - type: WallSolid - components: - - pos: -38.5,-36.5 - parent: 0 - type: Transform -- uid: 14315 - type: WallSolid - components: - - pos: -38.5,-29.5 - parent: 0 - type: Transform -- uid: 14316 - type: WallSolid - components: - - pos: -36.5,-29.5 - parent: 0 - type: Transform -- uid: 14317 - type: WallReinforced - components: - - pos: -31.5,-28.5 - parent: 0 - type: Transform -- uid: 14318 - type: ReinforcedWindow - components: - - pos: -27.5,-24.5 - parent: 0 - type: Transform -- uid: 14319 - type: WallReinforced - components: - - pos: -24.5,-27.5 - parent: 0 - type: Transform -- uid: 14320 - type: WallReinforced - components: - - pos: -25.5,-28.5 - parent: 0 - type: Transform -- uid: 14321 - type: WallReinforced - components: - - pos: -30.5,-28.5 - parent: 0 - type: Transform -- uid: 14322 - type: WallReinforced - components: - - pos: -24.5,-22.5 - parent: 0 - type: Transform -- uid: 14323 - type: ReinforcedWindow - components: - - pos: -26.5,-22.5 - parent: 0 - type: Transform -- uid: 14324 - type: ReinforcedWindow - components: - - pos: -27.5,-22.5 - parent: 0 - type: Transform -- uid: 14325 - type: ReinforcedWindow - components: - - pos: -28.5,-22.5 - parent: 0 - type: Transform -- uid: 14326 - type: ReinforcedWindow - components: - - pos: -29.5,-22.5 - parent: 0 - type: Transform -- uid: 14327 - type: WallReinforced - components: - - pos: -30.5,-23.5 - parent: 0 - type: Transform -- uid: 14328 - type: ReinforcedWindow - components: - - pos: -29.5,-24.5 - parent: 0 - type: Transform -- uid: 14329 - type: WallReinforced - components: - - pos: -24.5,-28.5 - parent: 0 - type: Transform -- uid: 14330 - type: WallReinforced - components: - - pos: -30.5,-27.5 - parent: 0 - type: Transform -- uid: 14331 - type: WallReinforced - components: - - pos: -29.5,-28.5 - parent: 0 - type: Transform -- uid: 14332 - type: ReinforcedWindow - components: - - pos: -25.5,-22.5 - parent: 0 - type: Transform -- uid: 14333 - type: Window - components: - - pos: -29.5,-38.5 - parent: 0 - type: Transform -- uid: 14334 - type: Window - components: - - pos: -27.5,-38.5 - parent: 0 - type: Transform -- uid: 14335 - type: WallSolid - components: - - pos: -31.5,-38.5 - parent: 0 - type: Transform -- uid: 14336 - type: WallSolid - components: - - pos: -32.5,-38.5 - parent: 0 - type: Transform -- uid: 14337 - type: WallSolid - components: - - pos: -32.5,-37.5 - parent: 0 - type: Transform -- uid: 14338 - type: WallSolid - components: - - pos: -32.5,-36.5 - parent: 0 - type: Transform -- uid: 14339 - type: ReinforcedWindow - components: - - pos: -32.5,-35.5 - parent: 0 - type: Transform -- uid: 14340 - type: ReinforcedWindow - components: - - pos: -32.5,-33.5 - parent: 0 - type: Transform -- uid: 14341 - type: ReinforcedWindow - components: - - pos: -26.5,-24.5 - parent: 0 - type: Transform -- uid: 14342 - type: ReinforcedWindow - components: - - pos: -32.5,-31.5 - parent: 0 - type: Transform -- uid: 14343 - type: WallSolid - components: - - pos: -32.5,-30.5 - parent: 0 - type: Transform -- uid: 14344 - type: WallReinforced - components: - - pos: -32.5,-29.5 - parent: 0 - type: Transform -- uid: 14345 - type: WallReinforced - components: - - pos: -33.5,-29.5 - parent: 0 - type: Transform -- uid: 14346 - type: ReinforcedWindow - components: - - pos: -26.5,-28.5 - parent: 0 - type: Transform -- uid: 14347 - type: Chair - components: - - pos: -11.5,-23.5 - parent: 0 - type: Transform -- uid: 14348 - type: Chair - components: - - pos: -6.5,-23.5 - parent: 0 - type: Transform -- uid: 14349 - type: ReinforcedWindow - components: - - pos: -28.5,-24.5 - parent: 0 - type: Transform -- uid: 14350 - type: WallSolid - components: - - pos: -38.5,-31.5 - parent: 0 - type: Transform -- uid: 14351 - type: WallSolid - components: - - pos: -38.5,-34.5 - parent: 0 - type: Transform -- uid: 14352 - type: WallSolid - components: - - pos: -22.5,-37.5 - parent: 0 - type: Transform -- uid: 14353 - type: BoxSyringe - components: - - pos: -6.5339723,-30.289627 - parent: 0 - type: Transform -- uid: 14354 - type: BoxBeaker - components: - - pos: -6.3620973,-30.383377 - parent: 0 - type: Transform -- uid: 14355 - type: BoxPillCanister - components: - - pos: -6.7214723,-30.149002 - parent: 0 - type: Transform -- uid: 14356 - type: HandLabeler - components: - - pos: -5.524764,-30.414627 - parent: 0 - type: Transform -- uid: 14357 - type: Dropper - components: - - pos: -7.462264,-30.336502 - parent: 0 - type: Transform -- uid: 14358 - type: Dropper - components: - - pos: -7.352889,-30.492752 - parent: 0 - type: Transform -- uid: 14359 - type: SprayBottle - components: - - pos: -7.431014,-30.180252 - parent: 0 - type: Transform -- uid: 14360 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -10.5,-31.5 - parent: 0 - type: Transform -- uid: 14361 - type: Grille - components: - - pos: -5.5,-35.5 - parent: 0 - type: Transform -- uid: 14362 - type: Grille - components: - - pos: -5.5,-33.5 - parent: 0 - type: Transform -- uid: 14363 - type: Grille - components: - - pos: -4.5,-30.5 - parent: 0 - type: Transform -- uid: 14364 - type: Grille - components: - - pos: -4.5,-28.5 - parent: 0 - type: Transform -- uid: 14365 - type: Grille - components: - - pos: -5.5,-27.5 - parent: 0 - type: Transform -- uid: 14366 - type: Grille - components: - - pos: -7.5,-27.5 - parent: 0 - type: Transform -- uid: 14367 - type: Grille - components: - - pos: -4.5,-26.5 - parent: 0 - type: Transform -- uid: 14368 - type: Grille - components: - - pos: -5.5,-22.5 - parent: 0 - type: Transform -- uid: 14369 - type: Grille - components: - - pos: -7.5,-22.5 - parent: 0 - type: Transform -- uid: 14370 - type: Grille - components: - - pos: -10.5,-22.5 - parent: 0 - type: Transform -- uid: 14371 - type: Grille - components: - - pos: -12.5,-22.5 - parent: 0 - type: Transform -- uid: 14372 - type: Grille - components: - - pos: -12.5,-27.5 - parent: 0 - type: Transform -- uid: 14373 - type: Grille - components: - - pos: -15.5,-27.5 - parent: 0 - type: Transform -- uid: 14374 - type: WallSolid - components: - - pos: -16.5,-27.5 - parent: 0 - type: Transform -- uid: 14375 - type: Grille - components: - - pos: -18.5,-22.5 - parent: 0 - type: Transform -- uid: 14376 - type: Grille - components: - - pos: -20.5,-22.5 - parent: 0 - type: Transform -- uid: 14377 - type: Grille - components: - - pos: -19.5,-28.5 - parent: 0 - type: Transform -- uid: 14378 - type: Grille - components: - - pos: -21.5,-28.5 - parent: 0 - type: Transform -- uid: 14379 - type: Grille - components: - - pos: -17.5,-31.5 - parent: 0 - type: Transform -- uid: 14380 - type: Grille - components: - - pos: -14.5,-32.5 - parent: 0 - type: Transform -- uid: 14381 - type: Grille - components: - - pos: -15.5,-32.5 - parent: 0 - type: Transform -- uid: 14382 - type: Grille - components: - - pos: -16.5,-32.5 - parent: 0 - type: Transform -- uid: 14383 - type: Grille - components: - - pos: -18.5,-36.5 - parent: 0 - type: Transform -- uid: 14384 - type: Grille - components: - - pos: -18.5,-35.5 - parent: 0 - type: Transform -- uid: 14385 - type: SheetPlasma1 - components: - - pos: -9.48052,-35.333794 - parent: 0 - type: Transform -- uid: 14386 - type: SheetPlasma1 - components: - - pos: -9.48052,-35.333794 - parent: 0 - type: Transform -- uid: 14387 - type: SheetPlasma1 - components: - - pos: -9.48052,-35.333794 - parent: 0 - type: Transform -- uid: 14388 - type: DisposalUnit - components: - - pos: -5.5,-26.5 - parent: 0 - type: Transform -- uid: 14389 - type: DisposalUnit - components: - - pos: -16.5,-28.5 - parent: 0 - type: Transform -- uid: 14390 - type: ReinforcedWindow - components: - - pos: -22.5,-33.5 - parent: 0 - type: Transform -- uid: 14391 - type: TableGlass - components: - - pos: -5.5,-23.5 - parent: 0 - type: Transform -- uid: 14392 - type: WallSolid - components: - - pos: -35.5,-37.5 - parent: 0 - type: Transform -- uid: 14393 - type: WallReinforced - components: - - pos: -32.5,-28.5 - parent: 0 - type: Transform -- uid: 14394 - type: ReinforcedWindow - components: - - pos: -17.5,-25.5 - parent: 0 - type: Transform -- uid: 14395 - type: IntercomMedical - components: - - pos: -13.5,-22.5 - parent: 0 - type: Transform -- uid: 14396 - type: IntercomMedical - components: - - pos: -31.5,-38.5 - parent: 0 - type: Transform -- uid: 14397 - type: IntercomMedical - components: - - pos: -26.5,-44.5 - parent: 0 - type: Transform -- uid: 14398 - type: IntercomMedical - components: - - pos: -14.5,-39.5 - parent: 0 - type: Transform -- uid: 14399 - type: Chair - components: - - pos: -10.5,-23.5 - parent: 0 - type: Transform -- uid: 14400 - type: Chair - components: - - pos: -7.5,-23.5 - parent: 0 - type: Transform -- uid: 14401 - type: WaterCooler - components: - - pos: -12.5,-23.5 - parent: 0 - type: Transform -- uid: 14402 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-42.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cloning - type: SurveillanceCamera -- uid: 14403 - type: CheapRollerBed - components: - - pos: -11.520684,-28.026764 - parent: 0 - type: Transform -- uid: 14404 - type: EmergencyRollerBedSpawnFolded - components: - - pos: -18.542707,-26.473202 - parent: 0 - type: Transform -- uid: 14405 - type: WallSolid - components: - - pos: -36.5,-37.5 - parent: 0 - type: Transform -- uid: 14406 - type: WallSolid - components: - - pos: -37.5,-37.5 - parent: 0 - type: Transform -- uid: 14407 - type: WallSolid - components: - - pos: -22.5,-36.5 - parent: 0 - type: Transform -- uid: 14408 - type: ReinforcedWindow - components: - - pos: -22.5,-35.5 - parent: 0 - type: Transform -- uid: 14409 - type: WallSolid - components: - - pos: -30.5,-38.5 - parent: 0 - type: Transform -- uid: 14410 - type: Window - components: - - pos: -25.5,-38.5 - parent: 0 - type: Transform -- uid: 14411 - type: WallSolid - components: - - pos: -38.5,-32.5 - parent: 0 - type: Transform -- uid: 14412 - type: WallSolid - components: - - pos: -38.5,-33.5 - parent: 0 - type: Transform -- uid: 14413 - type: WallReinforced - components: - - pos: -30.5,-22.5 - parent: 0 - type: Transform -- uid: 14414 - type: ShuttersNormal - components: - - pos: -22.5,-21.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15655 - type: SignalReceiver -- uid: 14415 - type: WallReinforced - components: - - pos: -30.5,-26.5 - parent: 0 - type: Transform -- uid: 14416 - type: WallSolid - components: - - pos: -23.5,-28.5 - parent: 0 - type: Transform -- uid: 14417 - type: WallReinforced - components: - - pos: -24.5,-26.5 - parent: 0 - type: Transform -- uid: 14418 - type: FirelockGlass - components: - - pos: -17.5,-24.5 - parent: 0 - type: Transform -- uid: 14419 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-24.5 - parent: 0 - type: Transform -- uid: 14420 - type: WallReinforced - components: - - pos: -34.5,-29.5 - parent: 0 - type: Transform -- uid: 14421 - type: Grille - components: - - pos: -25.5,-22.5 - parent: 0 - type: Transform -- uid: 14422 - type: Grille - components: - - pos: -26.5,-22.5 - parent: 0 - type: Transform -- uid: 14423 - type: WallSolid - components: - - pos: -24.5,-21.5 - parent: 0 - type: Transform -- uid: 14424 - type: WallSolid - components: - - pos: -23.5,-21.5 - parent: 0 - type: Transform -- uid: 14425 - type: Grille - components: - - pos: -27.5,-22.5 - parent: 0 - type: Transform -- uid: 14426 - type: Grille - components: - - pos: -28.5,-22.5 - parent: 0 - type: Transform -- uid: 14427 - type: Grille - components: - - pos: -29.5,-22.5 - parent: 0 - type: Transform -- uid: 14428 - type: Grille - components: - - pos: -25.5,-24.5 - parent: 0 - type: Transform -- uid: 14429 - type: Grille - components: - - pos: -26.5,-24.5 - parent: 0 - type: Transform -- uid: 14430 - type: Grille - components: - - pos: -27.5,-24.5 - parent: 0 - type: Transform -- uid: 14431 - type: Grille - components: - - pos: -28.5,-24.5 - parent: 0 - type: Transform -- uid: 14432 - type: Grille - components: - - pos: -29.5,-24.5 - parent: 0 - type: Transform -- uid: 14433 - type: Grille - components: - - pos: -28.5,-28.5 - parent: 0 - type: Transform -- uid: 14434 - type: Grille - components: - - pos: -26.5,-28.5 - parent: 0 - type: Transform -- uid: 14435 - type: Grille - components: - - pos: -22.5,-31.5 - parent: 0 - type: Transform -- uid: 14436 - type: Grille - components: - - pos: -22.5,-33.5 - parent: 0 - type: Transform -- uid: 14437 - type: Grille - components: - - pos: -22.5,-35.5 - parent: 0 - type: Transform -- uid: 14438 - type: Grille - components: - - pos: -32.5,-35.5 - parent: 0 - type: Transform -- uid: 14439 - type: Grille - components: - - pos: -32.5,-33.5 - parent: 0 - type: Transform -- uid: 14440 - type: Grille - components: - - pos: -32.5,-31.5 - parent: 0 - type: Transform -- uid: 14441 - type: Grille - components: - - pos: -29.5,-38.5 - parent: 0 - type: Transform -- uid: 14442 - type: Grille - components: - - pos: -27.5,-38.5 - parent: 0 - type: Transform -- uid: 14443 - type: Grille - components: - - pos: -25.5,-38.5 - parent: 0 - type: Transform -- uid: 14444 - type: AirlockMedicalGlassLocked - components: - - pos: -22.5,-34.5 - parent: 0 - type: Transform -- uid: 14445 - type: AirlockMedicalGlassLocked - components: - - pos: -22.5,-32.5 - parent: 0 - type: Transform -- uid: 14446 - type: AirlockMedicalGlassLocked - components: - - pos: -26.5,-38.5 - parent: 0 - type: Transform -- uid: 14447 - type: AirlockMedicalGlassLocked - components: - - pos: -28.5,-38.5 - parent: 0 - type: Transform -- uid: 14448 - type: AirlockMedicalGlassLocked - components: - - pos: -32.5,-34.5 - parent: 0 - type: Transform -- uid: 14449 - type: AirlockMedicalGlassLocked - components: - - pos: -32.5,-32.5 - parent: 0 - type: Transform -- uid: 14450 - type: Catwalk - components: - - pos: 70.5,0.5 - parent: 0 - type: Transform -- uid: 14451 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14452 - type: Catwalk - components: - - pos: 69.5,0.5 - parent: 0 - type: Transform -- uid: 14453 - type: SignCryogenicsMed - components: - - pos: -29.5,-28.5 - parent: 0 - type: Transform -- uid: 14454 - type: TableGlass - components: - - pos: -31.5,-30.5 - parent: 0 - type: Transform -- uid: 14455 - type: TableGlass - components: - - pos: -31.5,-29.5 - parent: 0 - type: Transform -- uid: 14456 - type: TableGlass - components: - - pos: -23.5,-30.5 - parent: 0 - type: Transform -- uid: 14457 - type: TableGlass - components: - - pos: -23.5,-29.5 - parent: 0 - type: Transform -- uid: 14458 - type: TableGlass - components: - - pos: -23.5,-37.5 - parent: 0 - type: Transform -- uid: 14459 - type: TableGlass - components: - - pos: -23.5,-36.5 - parent: 0 - type: Transform -- uid: 14460 - type: TableGlass - components: - - pos: -31.5,-37.5 - parent: 0 - type: Transform -- uid: 14461 - type: TableGlass - components: - - pos: -31.5,-36.5 - parent: 0 - type: Transform -- uid: 14462 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14463 - type: TableGlass - components: - - pos: -26.5,-33.5 - parent: 0 - type: Transform -- uid: 14464 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14465 - type: TableGlass - components: - - pos: -28.5,-34.5 - parent: 0 - type: Transform -- uid: 14466 - type: TableGlass - components: - - pos: -28.5,-33.5 - parent: 0 - type: Transform -- uid: 14467 - type: GasPipeStraight - components: - - pos: -28.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14468 - type: StasisBed - components: - - pos: -24.5,-29.5 - parent: 0 - type: Transform -- uid: 14469 - type: MedicalBed - components: - - pos: -24.5,-37.5 - parent: 0 - type: Transform -- uid: 14470 - type: MedicalBed - components: - - pos: -30.5,-37.5 - parent: 0 - type: Transform -- uid: 14471 - type: Bed - components: - - pos: -30.5,-29.5 - parent: 0 - type: Transform -- uid: 14472 - type: BedsheetMedical - components: - - pos: -30.5,-29.5 - parent: 0 - type: Transform -- uid: 14473 - type: BedsheetMedical - components: - - pos: -30.5,-37.5 - parent: 0 - type: Transform -- uid: 14474 - type: BedsheetMedical - components: - - pos: -24.5,-37.5 - parent: 0 - type: Transform -- uid: 14475 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-33.5 - parent: 0 - type: Transform -- uid: 14476 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-33.5 - parent: 0 - type: Transform -- uid: 14477 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -33.5,-30.5 - parent: 0 - type: Transform -- uid: 14478 - type: TableGlass - components: - - pos: -35.5,-30.5 - parent: 0 - type: Transform -- uid: 14479 - type: TableGlass - components: - - pos: -36.5,-30.5 - parent: 0 - type: Transform -- uid: 14480 - type: TableGlass - components: - - pos: -37.5,-30.5 - parent: 0 - type: Transform -- uid: 14481 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-30.5 - parent: 0 - type: Transform -- uid: 14482 - type: WindoorMedicalLocked - components: - - pos: -36.5,-30.5 - parent: 0 - type: Transform -- uid: 14483 - type: WindowReinforcedDirectional - components: - - pos: -37.5,-30.5 - parent: 0 - type: Transform -- uid: 14484 - type: WindowReinforcedDirectional - components: - - pos: -35.5,-30.5 - parent: 0 - type: Transform -- uid: 14485 - type: MedkitBruteFilled - components: - - pos: -37.514,-30.541584 - parent: 0 - type: Transform -- uid: 14486 - type: MedkitBruteFilled - components: - - pos: -37.310875,-30.338459 - parent: 0 - type: Transform -- uid: 14487 - type: MedkitBurnFilled - components: - - pos: -36.498375,-30.588459 - parent: 0 - type: Transform -- uid: 14488 - type: MedkitBurnFilled - components: - - pos: -36.23275,-30.354084 - parent: 0 - type: Transform -- uid: 14489 - type: MedkitFilled - components: - - pos: -37.4515,-30.432209 - parent: 0 - type: Transform -- uid: 14490 - type: MedkitFilled - components: - - pos: -36.389,-30.463459 - parent: 0 - type: Transform -- uid: 14491 - type: ClothingBeltMedicalFilled - components: - - pos: -35.529625,-30.354084 - parent: 0 - type: Transform -- uid: 14492 - type: ClothingBeltMedicalFilled - components: - - pos: -35.498375,-30.541584 - parent: 0 - type: Transform -- uid: 14493 - type: LockerMedicineFilled - components: - - pos: -37.5,-31.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14494 - type: MedicalTechFab - components: - - pos: -34.5,-30.5 - parent: 0 - type: Transform - - materialWhiteList: - - Glass - - Steel - - Plastic - - Durathread - - Cloth - type: MaterialStorage -- uid: 14495 - type: DisposalUnit - components: - - pos: -27.5,-34.5 - parent: 0 - type: Transform -- uid: 14496 - type: DisposalUnit - components: - - pos: -37.5,-36.5 - parent: 0 - type: Transform -- uid: 14497 - type: VendingMachineMediDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -33.5,-36.5 - parent: 0 - type: Transform -- uid: 14498 - type: TableGlass - components: - - pos: -37.5,-32.5 - parent: 0 - type: Transform -- uid: 14499 - type: TableGlass - components: - - pos: -37.5,-33.5 - parent: 0 - type: Transform -- uid: 14500 - type: WindowReinforcedDirectional - components: - - pos: -37.5,-33.5 - parent: 0 - type: Transform -- uid: 14501 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -37.5,-32.5 - parent: 0 - type: Transform -- uid: 14502 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-32.5 - parent: 0 - type: Transform -- uid: 14503 - type: WindoorMedicalLocked - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-33.5 - parent: 0 - type: Transform -- uid: 14504 - type: MedkitToxinFilled - components: - - pos: -37.634094,-33.489902 - parent: 0 - type: Transform -- uid: 14505 - type: MedkitToxinFilled - components: - - pos: -37.49347,-33.411777 - parent: 0 - type: Transform -- uid: 14506 - type: MedkitOxygenFilled - components: - - pos: -37.634094,-32.755527 - parent: 0 - type: Transform -- uid: 14507 - type: MedkitOxygenFilled - components: - - pos: -37.46222,-32.614902 - parent: 0 - type: Transform -- uid: 14508 - type: LockerMedicalFilled - components: - - pos: -36.5,-36.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14509 - type: LockerMedicalFilled - components: - - pos: -35.5,-36.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14510 - type: ComputerMedicalRecords - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-34.5 - parent: 0 - type: Transform -- uid: 14511 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-34.5 - parent: 0 - type: Transform -- uid: 14512 - type: Table - components: - - pos: -34.5,-36.5 - parent: 0 - type: Transform -- uid: 14513 - type: HandheldCrewMonitor - components: - - pos: -34.4662,-36.43679 - parent: 0 - type: Transform -- uid: 14514 - type: SubstationMachineCircuitboard - components: - - pos: -7.4354076,18.595453 - parent: 0 - type: Transform -- uid: 14515 - type: Bed - components: - - pos: -25.5,-26.5 - parent: 0 - type: Transform -- uid: 14516 - type: TableGlass - components: - - pos: -29.5,-27.5 - parent: 0 - type: Transform -- uid: 14517 - type: ClothingNeckScarfStripedBlue - components: - - pos: -29.522497,-27.51232 - parent: 0 - type: Transform -- uid: 14518 - type: ShuttleConsoleCircuitboard - components: - - pos: -13.513533,18.579828 - parent: 0 - type: Transform -- uid: 14519 - type: BiomassReclaimerMachineCircuitboard - components: - - pos: -7.4510326,15.532953 - parent: 0 - type: Transform -- uid: 14520 - type: RadarConsoleCircuitboard - components: - - pos: -7.4666576,16.532953 - parent: 0 - type: Transform -- uid: 14521 - type: Catwalk - components: - - pos: 66.5,0.5 - parent: 0 - type: Transform -- uid: 14522 - type: ClothingNeckStethoscope - components: - - pos: -25.522497,-27.35607 - parent: 0 - type: Transform -- uid: 14523 - type: GasPipeStraight - components: - - pos: -3.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14524 - type: GasPipeStraight - components: - - pos: -3.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14525 - type: GasPipeStraight - components: - - pos: -3.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14526 - type: GasPipeStraight - components: - - pos: -3.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14527 - type: CableMV - components: - - pos: 40.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14528 - type: GasPipeStraight - components: - - pos: -3.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14529 - type: GasPipeStraight - components: - - pos: -3.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14530 - type: GasPipeStraight - components: - - pos: -3.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14531 - type: GasPipeStraight - components: - - pos: -3.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14532 - type: GasPipeStraight - components: - - pos: -3.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14533 - type: GasPipeStraight - components: - - pos: -3.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14534 - type: GasPipeStraight - components: - - pos: -3.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14535 - type: GasPipeStraight - components: - - pos: -3.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14536 - type: AirlockExternalGlassLocked - components: - - pos: 69.5,32.5 - parent: 0 - type: Transform -- uid: 14537 - type: GasPipeStraight - components: - - pos: -3.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14538 - type: GasPipeStraight - components: - - pos: -3.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14539 - type: SignGravity - components: - - pos: 53.5,34.5 - parent: 0 - type: Transform -- uid: 14540 - type: Catwalk - components: - - pos: 65.5,48.5 - parent: 0 - type: Transform -- uid: 14541 - type: Catwalk - components: - - pos: 64.5,48.5 - parent: 0 - type: Transform -- uid: 14542 - type: GasPipeStraight - components: - - pos: -1.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14543 - type: GasPipeStraight - components: - - pos: -1.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14544 - type: GasPipeStraight - components: - - pos: -1.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14545 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -2.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14546 - type: GasPipeStraight - components: - - pos: -1.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14547 - type: GasPipeStraight - components: - - pos: -1.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14548 - type: GasPipeStraight - components: - - pos: -1.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14549 - type: GasPipeStraight - components: - - pos: -1.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14550 - type: GasPipeStraight - components: - - pos: -1.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14551 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14552 - type: GasPipeStraight - components: - - pos: -1.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14553 - type: GasPipeStraight - components: - - pos: -1.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14554 - type: GasPipeStraight - components: - - pos: -1.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14555 - type: GasPipeStraight - components: - - pos: -1.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14556 - type: GasPipeStraight - components: - - pos: -1.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14557 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14558 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14559 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14560 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14561 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14562 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -9.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14563 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14564 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14565 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14566 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14567 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14568 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14569 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14570 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -12.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14571 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14572 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14573 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14574 - type: GasPipeTJunction - components: - - pos: -14.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14575 - type: GasVentPump - components: - - pos: -14.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14576 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14577 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14578 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14579 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14580 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14581 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14582 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14583 - type: GasPipeStraight - components: - - pos: -21.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14584 - type: GasPipeStraight - components: - - pos: -21.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14585 - type: GasPipeStraight - components: - - pos: -21.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14586 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14587 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14588 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14589 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14590 - type: GasPipeStraight - components: - - pos: -20.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14591 - type: GasPipeStraight - components: - - pos: -20.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14592 - type: GasPipeStraight - components: - - pos: -21.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14593 - type: GasPipeStraight - components: - - pos: -21.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14594 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14595 - type: GasPipeStraight - components: - - pos: -21.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14596 - type: GasPipeStraight - components: - - pos: -21.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14597 - type: GasPipeStraight - components: - - pos: -21.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14598 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14599 - type: GasPipeStraight - components: - - pos: -21.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14600 - type: GasPipeStraight - components: - - pos: -21.5,-38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14601 - type: GasPipeStraight - components: - - pos: -21.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14602 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14603 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14604 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14605 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14606 - type: GasPipeFourway - components: - - pos: -28.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14607 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -27.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14608 - type: GasPipeStraight - components: - - pos: -28.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14609 - type: GasPipeTJunction - components: - - pos: -29.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14610 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14611 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14612 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14613 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14614 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14615 - type: GasPipeStraight - components: - - pos: -28.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14616 - type: GasPipeStraight - components: - - pos: -28.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14617 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -29.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 14618 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 14619 - type: GasPipeBend - components: - - pos: -25.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 14620 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 14621 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-25.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 14622 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 14623 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14624 - type: CryoPod - components: - - pos: -28.5,-25.5 - parent: 0 - type: Transform -- uid: 14625 - type: GasFilter - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 14626 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -29.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14627 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14628 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14629 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14630 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14631 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14632 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14633 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14634 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14635 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14636 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14637 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14638 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14639 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14640 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14641 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -11.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14642 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14643 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14644 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14645 - type: GasPipeStraight - components: - - pos: -8.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14646 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14647 - type: GasPipeStraight - components: - - pos: -8.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14648 - type: GasPipeStraight - components: - - pos: -8.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14649 - type: GasPipeStraight - components: - - pos: -8.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14650 - type: GasPipeStraight - components: - - pos: -8.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14651 - type: GasPipeStraight - components: - - pos: -8.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14652 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14653 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14654 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14655 - type: GasPipeStraight - components: - - pos: -6.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14656 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14657 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14658 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14659 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14660 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14661 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14662 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14663 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14664 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14665 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14666 - type: GasPipeBend - components: - - pos: -8.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14667 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14668 - type: GasPipeStraight - components: - - pos: -8.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14669 - type: GasPipeStraight - components: - - pos: -8.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14670 - type: GasPipeStraight - components: - - pos: -8.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14671 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -8.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14672 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14673 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14674 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14675 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -15.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14676 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14677 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14678 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14679 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -14.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14680 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14681 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14682 - type: GasPipeStraight - components: - - pos: -15.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14683 - type: GasPipeStraight - components: - - pos: -15.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14684 - type: GasPipeStraight - components: - - pos: -15.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14685 - type: GasPipeStraight - components: - - pos: -15.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14686 - type: GasPipeStraight - components: - - pos: -19.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14687 - type: GasPipeStraight - components: - - pos: -19.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14688 - type: GasPipeStraight - components: - - pos: -19.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14689 - type: GasPipeStraight - components: - - pos: -19.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14690 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14691 - type: GasPipeStraight - components: - - pos: -19.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14692 - type: GasPipeStraight - components: - - pos: -19.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14693 - type: GasPipeStraight - components: - - pos: -19.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14694 - type: GasPipeStraight - components: - - pos: -19.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14695 - type: GasPipeStraight - components: - - pos: -19.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14696 - type: GasPipeStraight - components: - - pos: -19.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14697 - type: GasVentScrubber - components: - - pos: -15.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14698 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14699 - type: GasPipeStraight - components: - - pos: -19.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14700 - type: GasPipeStraight - components: - - pos: -19.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14701 - type: GasPipeFourway - components: - - pos: -19.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14702 - type: GasPipeStraight - components: - - pos: -19.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14703 - type: GasPipeStraight - components: - - pos: -19.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14704 - type: GasPipeStraight - components: - - pos: -19.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14705 - type: GasPipeStraight - components: - - pos: -19.5,-38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14706 - type: GasPipeStraight - components: - - pos: -19.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14707 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14708 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14709 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14710 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14711 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14712 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -25.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14713 - type: GasPipeFourway - components: - - pos: -26.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14714 - type: GasVentPump - components: - - pos: -27.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14715 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14716 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14717 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14718 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14719 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14720 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14721 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14722 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14723 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14724 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14725 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14726 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: -28.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 14727 - type: GasPipeFourway - components: - - pos: -28.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 14728 - type: GasVentScrubber - components: - - pos: -25.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14729 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14730 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14731 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14732 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14733 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14734 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -20.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14735 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14736 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14737 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14738 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14739 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14740 - type: GasVentPump - components: - - pos: -20.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14741 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14742 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -14.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14743 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14744 - type: GasPipeStraight - components: - - pos: -28.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14745 - type: GasPipeStraight - components: - - pos: -28.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14746 - type: GasPipeStraight - components: - - pos: -28.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14747 - type: GasPipeStraight - components: - - pos: -28.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14748 - type: GasPipeStraight - components: - - pos: -28.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14749 - type: GasPipeStraight - components: - - pos: -26.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14750 - type: GasPipeStraight - components: - - pos: -26.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14751 - type: GasPipeStraight - components: - - pos: -26.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14752 - type: DisposalPipe - components: - - pos: -21.5,-3.5 - parent: 0 - type: Transform -- uid: 14753 - type: DisposalPipe - components: - - pos: -21.5,-4.5 - parent: 0 - type: Transform -- uid: 14754 - type: DisposalPipe - components: - - pos: -21.5,-5.5 - parent: 0 - type: Transform -- uid: 14755 - type: DisposalPipe - components: - - pos: -21.5,-6.5 - parent: 0 - type: Transform -- uid: 14756 - type: DisposalPipe - components: - - pos: -21.5,-7.5 - parent: 0 - type: Transform -- uid: 14757 - type: DisposalPipe - components: - - pos: -21.5,-8.5 - parent: 0 - type: Transform -- uid: 14758 - type: DisposalPipe - components: - - pos: -21.5,-9.5 - parent: 0 - type: Transform -- uid: 14759 - type: DisposalPipe - components: - - pos: -21.5,-10.5 - parent: 0 - type: Transform -- uid: 14760 - type: DisposalPipe - components: - - pos: -21.5,-11.5 - parent: 0 - type: Transform -- uid: 14761 - type: DisposalPipe - components: - - pos: -21.5,-12.5 - parent: 0 - type: Transform -- uid: 14762 - type: DisposalPipe - components: - - pos: -21.5,-13.5 - parent: 0 - type: Transform -- uid: 14763 - type: DisposalPipe - components: - - pos: -21.5,-14.5 - parent: 0 - type: Transform -- uid: 14764 - type: DisposalPipe - components: - - pos: -21.5,-15.5 - parent: 0 - type: Transform -- uid: 14765 - type: DisposalPipe - components: - - pos: -21.5,-16.5 - parent: 0 - type: Transform -- uid: 14766 - type: DisposalPipe - components: - - pos: -21.5,-17.5 - parent: 0 - type: Transform -- uid: 14767 - type: DisposalPipe - components: - - pos: -21.5,-18.5 - parent: 0 - type: Transform -- uid: 14768 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -21.5,-19.5 - parent: 0 - type: Transform -- uid: 14769 - type: DisposalBend - components: - - pos: -9.5,-19.5 - parent: 0 - type: Transform -- uid: 14770 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-19.5 - parent: 0 - type: Transform -- uid: 14771 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-19.5 - parent: 0 - type: Transform -- uid: 14772 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-19.5 - parent: 0 - type: Transform -- uid: 14773 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-19.5 - parent: 0 - type: Transform -- uid: 14774 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-19.5 - parent: 0 - type: Transform -- uid: 14775 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-19.5 - parent: 0 - type: Transform -- uid: 14776 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-19.5 - parent: 0 - type: Transform -- uid: 14777 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-19.5 - parent: 0 - type: Transform -- uid: 14778 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-19.5 - parent: 0 - type: Transform -- uid: 14779 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-19.5 - parent: 0 - type: Transform -- uid: 14780 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-19.5 - parent: 0 - type: Transform -- uid: 14781 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -9.5,-20.5 - parent: 0 - type: Transform -- uid: 14782 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -9.5,-21.5 - parent: 0 - type: Transform -- uid: 14783 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -9.5,-22.5 - parent: 0 - type: Transform -- uid: 14784 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -9.5,-23.5 - parent: 0 - type: Transform -- uid: 14785 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -9.5,-24.5 - parent: 0 - type: Transform -- uid: 14786 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -9.5,-25.5 - parent: 0 - type: Transform -- uid: 14787 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-26.5 - parent: 0 - type: Transform -- uid: 14788 - type: DisposalYJunction - components: - - rot: 3.141592653589793 rad - pos: -9.5,-26.5 - parent: 0 - type: Transform -- uid: 14789 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 0 - type: Transform -- uid: 14790 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-26.5 - parent: 0 - type: Transform -- uid: 14791 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-26.5 - parent: 0 - type: Transform -- uid: 14792 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-26.5 - parent: 0 - type: Transform -- uid: 14793 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-26.5 - parent: 0 - type: Transform -- uid: 14794 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-29.5 - parent: 0 - type: Transform -- uid: 14795 - type: DisposalTrunk - components: - - pos: -16.5,-28.5 - parent: 0 - type: Transform -- uid: 14796 - type: DisposalTrunk - components: - - pos: -9.5,-28.5 - parent: 0 - type: Transform -- uid: 14797 - type: DisposalTrunk - components: - - pos: -27.5,-34.5 - parent: 0 - type: Transform -- uid: 14798 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -37.5,-36.5 - parent: 0 - type: Transform -- uid: 14799 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-29.5 - parent: 0 - type: Transform -- uid: 14800 - type: DisposalYJunction - components: - - rot: 3.141592653589793 rad - pos: -11.5,-29.5 - parent: 0 - type: Transform -- uid: 14801 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -11.5,-28.5 - parent: 0 - type: Transform -- uid: 14802 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -11.5,-27.5 - parent: 0 - type: Transform -- uid: 14803 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-29.5 - parent: 0 - type: Transform -- uid: 14804 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-29.5 - parent: 0 - type: Transform -- uid: 14805 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-29.5 - parent: 0 - type: Transform -- uid: 14806 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-29.5 - parent: 0 - type: Transform -- uid: 14807 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-29.5 - parent: 0 - type: Transform -- uid: 14808 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-29.5 - parent: 0 - type: Transform -- uid: 14809 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-29.5 - parent: 0 - type: Transform -- uid: 14810 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-29.5 - parent: 0 - type: Transform -- uid: 14811 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-29.5 - parent: 0 - type: Transform -- uid: 14812 - type: DisposalPipe - components: - - pos: -20.5,-30.5 - parent: 0 - type: Transform -- uid: 14813 - type: DisposalPipe - components: - - pos: -20.5,-31.5 - parent: 0 - type: Transform -- uid: 14814 - type: DisposalPipe - components: - - pos: -20.5,-32.5 - parent: 0 - type: Transform -- uid: 14815 - type: DisposalPipe - components: - - pos: -20.5,-33.5 - parent: 0 - type: Transform -- uid: 14816 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: -20.5,-34.5 - parent: 0 - type: Transform -- uid: 14817 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-34.5 - parent: 0 - type: Transform -- uid: 14818 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-34.5 - parent: 0 - type: Transform -- uid: 14819 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-34.5 - parent: 0 - type: Transform -- uid: 14820 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-34.5 - parent: 0 - type: Transform -- uid: 14821 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-34.5 - parent: 0 - type: Transform -- uid: 14822 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-34.5 - parent: 0 - type: Transform -- uid: 14823 - type: DisposalBend - components: - - pos: -28.5,-34.5 - parent: 0 - type: Transform -- uid: 14824 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-35.5 - parent: 0 - type: Transform -- uid: 14825 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-35.5 - parent: 0 - type: Transform -- uid: 14826 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -28.5,-35.5 - parent: 0 - type: Transform -- uid: 14827 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-35.5 - parent: 0 - type: Transform -- uid: 14828 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-35.5 - parent: 0 - type: Transform -- uid: 14829 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-34.5 - parent: 0 - type: Transform -- uid: 14830 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-34.5 - parent: 0 - type: Transform -- uid: 14831 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-34.5 - parent: 0 - type: Transform -- uid: 14832 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-34.5 - parent: 0 - type: Transform -- uid: 14833 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-34.5 - parent: 0 - type: Transform -- uid: 14834 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-34.5 - parent: 0 - type: Transform -- uid: 14835 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-34.5 - parent: 0 - type: Transform -- uid: 14836 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-34.5 - parent: 0 - type: Transform -- uid: 14837 - type: DisposalPipe - components: - - pos: -20.5,-35.5 - parent: 0 - type: Transform -- uid: 14838 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -20.5,-36.5 - parent: 0 - type: Transform -- uid: 14839 - type: DisposalPipe - components: - - pos: -20.5,-37.5 - parent: 0 - type: Transform -- uid: 14840 - type: DisposalPipe - components: - - pos: -20.5,-38.5 - parent: 0 - type: Transform -- uid: 14841 - type: DisposalPipe - components: - - pos: -20.5,-39.5 - parent: 0 - type: Transform -- uid: 14842 - type: TableGlass - components: - - pos: -26.5,-34.5 - parent: 0 - type: Transform -- uid: 14843 - type: TableGlass - components: - - pos: -26.5,-32.5 - parent: 0 - type: Transform -- uid: 14844 - type: TableGlass - components: - - pos: -28.5,-32.5 - parent: 0 - type: Transform -- uid: 14845 - type: FloorDrain - components: - - pos: -7.5,-33.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 14846 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14204 - type: SignalReceiver -- uid: 14847 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-30.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14204 - type: SignalReceiver -- uid: 14848 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-33.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14204 - type: SignalReceiver -- uid: 14849 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-35.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14204 - type: SignalReceiver -- uid: 14850 - type: ShuttersWindowOpen - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-34.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14204 - type: SignalReceiver -- uid: 14851 - type: ExtinguisherCabinetFilled - components: - - pos: -22.5,-29.5 - parent: 0 - type: Transform -- uid: 14852 - type: SignExamroom - components: - - pos: -22.5,-30.5 - parent: 0 - type: Transform -- uid: 14853 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-30.5 - parent: 0 - type: Transform -- uid: 14854 - type: TableGlass - components: - - pos: -13.5,-23.5 - parent: 0 - type: Transform -- uid: 14855 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -13.5,-31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14856 - type: ComputerCrewMonitoring - components: - - pos: -18.5,-23.5 - parent: 0 - type: Transform -- uid: 14857 - type: ReinforcedWindow - components: - - pos: -17.5,-23.5 - parent: 0 - type: Transform -- uid: 14858 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,-27.5 - parent: 0 - type: Transform -- uid: 14859 - type: DiseaseDiagnoser - components: - - pos: -19.5,-27.5 - parent: 0 - type: Transform -- uid: 14860 - type: TableGlass - components: - - pos: -16.5,-26.5 - parent: 0 - type: Transform -- uid: 14861 - type: PottedPlant21 - components: - - pos: -15.5,-28.5 - parent: 0 - type: Transform -- uid: 14862 - type: PottedPlant1 - components: - - pos: -18.5,-31.5 - parent: 0 - type: Transform -- uid: 14863 - type: PottedPlant1 - components: - - pos: -20.5,-21.5 - parent: 0 - type: Transform -- uid: 14864 - type: PottedPlant0 - components: - - pos: -12.5,-21.5 - parent: 0 - type: Transform -- uid: 14865 - type: CheapRollerBed - components: - - pos: -12.505059,-28.011139 - parent: 0 - type: Transform -- uid: 14866 - type: PottedPlant11 - components: - - pos: -7.5,-26.5 - parent: 0 - type: Transform -- uid: 14867 - type: PottedPlant14 - components: - - pos: -23.5,-35.5 - parent: 0 - type: Transform -- uid: 14868 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-30.5 - parent: 0 - type: Transform -- uid: 14869 - type: IntercomCommand - components: - - rot: 3.141592653589793 rad - pos: -11.5,13.5 - parent: 0 - type: Transform -- uid: 14870 - type: Catwalk - components: - - pos: 67.5,0.5 - parent: 0 - type: Transform -- uid: 14871 - type: AlertsComputerCircuitboard - components: - - pos: -13.482283,16.470453 - parent: 0 - type: Transform -- uid: 14872 - type: IntercomMedical - components: - - pos: -53.5,-53.5 - parent: 0 - type: Transform -- uid: 14873 - type: Catwalk - components: - - pos: 68.5,0.5 - parent: 0 - type: Transform -- uid: 14874 - type: IntercomMedical - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-48.5 - parent: 0 - type: Transform -- uid: 14875 - type: IntercomMedical - components: - - pos: -53.5,-50.5 - parent: 0 - type: Transform -- uid: 14876 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-30.5 - parent: 0 - type: Transform -- uid: 14877 - type: Bed - components: - - pos: -25.5,-25.5 - parent: 0 - type: Transform -- uid: 14878 - type: RadarConsoleCircuitboard - components: - - pos: -13.482283,15.642328 - parent: 0 - type: Transform -- uid: 14879 - type: SyringeInaprovaline - components: - - pos: -25.538122,-27.407509 - parent: 0 - type: Transform -- uid: 14880 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-26.5 - parent: 0 - type: Transform -- uid: 14881 - type: TableGlass - components: - - pos: -25.5,-27.5 - parent: 0 - type: Transform -- uid: 14882 - type: AirlockMedicalGlassLocked - components: - - pos: -27.5,-28.5 - parent: 0 - type: Transform -- uid: 14883 - type: GasPipeTJunction - components: - - pos: -27.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14884 - type: ClothingNeckStethoscope - components: - - pos: -31.537365,-30.347004 - parent: 0 - type: Transform -- uid: 14885 - type: TableGlass - components: - - pos: -17.5,-33.5 - parent: 0 - type: Transform -- uid: 14886 - type: TableGlass - components: - - pos: -16.5,-33.5 - parent: 0 - type: Transform -- uid: 14887 - type: TableGlass - components: - - pos: -15.5,-33.5 - parent: 0 - type: Transform -- uid: 14888 - type: TableGlass - components: - - pos: -17.5,-36.5 - parent: 0 - type: Transform -- uid: 14889 - type: TableGlass - components: - - pos: -16.5,-36.5 - parent: 0 - type: Transform -- uid: 14890 - type: TableGlass - components: - - pos: -15.5,-36.5 - parent: 0 - type: Transform -- uid: 14891 - type: ComputerMedicalRecords - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-38.5 - parent: 0 - type: Transform -- uid: 14892 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-37.5 - parent: 0 - type: Transform -- uid: 14893 - type: filingCabinetDrawer - components: - - pos: -13.5,-38.5 - parent: 0 - type: Transform -- uid: 14894 - type: PottedPlant21 - components: - - pos: -17.5,-35.5 - parent: 0 - type: Transform -- uid: 14895 - type: LockerChiefMedicalOfficerFilled - components: - - pos: -13.5,-33.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14896 - type: SpawnMobCat - components: - - pos: -14.5,-33.5 - parent: 0 - type: Transform -- uid: 14897 - type: ToyMouse - components: - - pos: -14.351369,-33.647137 - parent: 0 - type: Transform -- uid: 14898 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-37.5 - parent: 0 - type: Transform -- uid: 14899 - type: ChairOfficeLight - components: - - pos: -16.5,-35.5 - parent: 0 - type: Transform -- uid: 14900 - type: ChairOfficeLight - components: - - pos: -15.5,-35.5 - parent: 0 - type: Transform -- uid: 14901 - type: VendingMachineWallMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,-33.5 - parent: 0 - type: Transform -- uid: 14902 - type: DisposalUnit - components: - - pos: -13.5,-37.5 - parent: 0 - type: Transform -- uid: 14903 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-36.5 - parent: 0 - type: Transform -- uid: 14904 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-36.5 - parent: 0 - type: Transform -- uid: 14905 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-36.5 - parent: 0 - type: Transform -- uid: 14906 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-36.5 - parent: 0 - type: Transform -- uid: 14907 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-36.5 - parent: 0 - type: Transform -- uid: 14908 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-36.5 - parent: 0 - type: Transform -- uid: 14909 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -13.5,-37.5 - parent: 0 - type: Transform -- uid: 14910 - type: DisposalBend - components: - - pos: -13.5,-36.5 - parent: 0 - type: Transform -- uid: 14911 - type: Bed - components: - - pos: -14.5,-38.5 - parent: 0 - type: Transform -- uid: 14912 - type: BedsheetCMO - components: - - pos: -14.5,-38.5 - parent: 0 - type: Transform -- uid: 14913 - type: SignalButton - components: - - pos: -12.5,-38.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 14916 - - port: Toggle - uid: 14915 - - port: Toggle - uid: 14914 - - port: Toggle - uid: 14918 - - port: Toggle - uid: 14917 - type: SignalTransmitter -- uid: 14914 - type: ShuttersNormalOpen - components: - - pos: -14.5,-32.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14913 - type: SignalReceiver -- uid: 14915 - type: ShuttersNormalOpen - components: - - pos: -15.5,-32.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14913 - type: SignalReceiver -- uid: 14916 - type: ShuttersNormalOpen - components: - - pos: -16.5,-32.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14913 - type: SignalReceiver -- uid: 14917 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-36.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14913 - type: SignalReceiver -- uid: 14918 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-35.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 14913 - type: SignalReceiver -- uid: 14919 - type: DogBed - components: - - name: cat bed - type: MetaData - - pos: -14.5,-33.5 - parent: 0 - type: Transform -- uid: 14920 - type: MedkitCombatFilled - components: - - pos: -15.425713,-33.289745 - parent: 0 - type: Transform -- uid: 14921 - type: MedkitRadiationFilled - components: - - pos: -15.597588,-33.49287 - parent: 0 - type: Transform -- uid: 14922 - type: ClothingEyesHudMedical - components: - - pos: -16.358051,-33.480976 - parent: 0 - type: Transform -- uid: 14923 - type: WallmountTelescreen - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-38.5 - parent: 0 - type: Transform -- uid: 14924 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -27.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14925 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -27.5,-32.5 - parent: 0 - type: Transform -- uid: 14926 - type: FirelockGlass - components: - - pos: -19.5,-37.5 - parent: 0 - type: Transform -- uid: 14927 - type: FirelockGlass - components: - - pos: -20.5,-37.5 - parent: 0 - type: Transform -- uid: 14928 - type: FirelockGlass - components: - - pos: -21.5,-37.5 - parent: 0 - type: Transform -- uid: 14929 - type: WindoorMedicalLocked - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-24.5 - parent: 0 - type: Transform -- uid: 14930 - type: SignDirectionalMed - components: - - pos: -10.5,-27.5 - parent: 0 - type: Transform -- uid: 14931 - type: SignDirectionalCryo - components: - - rot: -1.5707963267948966 rad - pos: -10.509329,-27.733538 - parent: 0 - type: Transform -- uid: 14932 - type: AirlockMaintLocked - components: - - pos: -4.5,-37.5 - parent: 0 - type: Transform -- uid: 14933 - type: WallSolid - components: - - pos: -4.5,-38.5 - parent: 0 - type: Transform -- uid: 14934 - type: WallSolid - components: - - pos: -4.5,-39.5 - parent: 0 - type: Transform -- uid: 14935 - type: WallSolid - components: - - pos: -4.5,-40.5 - parent: 0 - type: Transform -- uid: 14936 - type: WallSolid - components: - - pos: -4.5,-41.5 - parent: 0 - type: Transform -- uid: 14937 - type: WallSolid - components: - - pos: -4.5,-42.5 - parent: 0 - type: Transform -- uid: 14938 - type: WallSolid - components: - - pos: -4.5,-43.5 - parent: 0 - type: Transform -- uid: 14939 - type: WallSolid - components: - - pos: -4.5,-44.5 - parent: 0 - type: Transform -- uid: 14940 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14941 - type: WallSolid - components: - - pos: -4.5,-46.5 - parent: 0 - type: Transform -- uid: 14942 - type: WallSolid - components: - - pos: -4.5,-47.5 - parent: 0 - type: Transform -- uid: 14943 - type: WallSolid - components: - - pos: -4.5,-48.5 - parent: 0 - type: Transform -- uid: 14944 - type: WallSolid - components: - - pos: -4.5,-49.5 - parent: 0 - type: Transform -- uid: 14945 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14946 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14947 - type: GasPipeFourway - components: - - pos: -3.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14948 - type: GasPipeFourway - components: - - pos: -1.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14949 - type: AirlockMaintLocked - components: - - pos: -4.5,-45.5 - parent: 0 - type: Transform -- uid: 14950 - type: WallReinforced - components: - - pos: -0.5,-33.5 - parent: 0 - type: Transform -- uid: 14951 - type: WallSolid - components: - - pos: 9.5,-40.5 - parent: 0 - type: Transform -- uid: 14952 - type: WallReinforced - components: - - pos: -0.5,-42.5 - parent: 0 - type: Transform -- uid: 14953 - type: WallReinforced - components: - - pos: 0.5,-37.5 - parent: 0 - type: Transform -- uid: 14954 - type: WallReinforced - components: - - pos: -0.5,-41.5 - parent: 0 - type: Transform -- uid: 14955 - type: WallSolid - components: - - pos: -0.5,-46.5 - parent: 0 - type: Transform -- uid: 14956 - type: WallSolid - components: - - pos: -0.5,-47.5 - parent: 0 - type: Transform -- uid: 14957 - type: WallSolid - components: - - pos: -0.5,-48.5 - parent: 0 - type: Transform -- uid: 14958 - type: WallSolid - components: - - pos: -0.5,-49.5 - parent: 0 - type: Transform -- uid: 14959 - type: WallSolid - components: - - pos: -18.5,-45.5 - parent: 0 - type: Transform -- uid: 14960 - type: WallSolid - components: - - pos: -17.5,-45.5 - parent: 0 - type: Transform -- uid: 14961 - type: WallSolid - components: - - pos: -16.5,-45.5 - parent: 0 - type: Transform -- uid: 14962 - type: WallSolid - components: - - pos: -15.5,-45.5 - parent: 0 - type: Transform -- uid: 14963 - type: WallSolid - components: - - pos: -13.5,-45.5 - parent: 0 - type: Transform -- uid: 14964 - type: WallReinforced - components: - - pos: -10.5,-42.5 - parent: 0 - type: Transform -- uid: 14965 - type: WallReinforced - components: - - pos: -11.5,-42.5 - parent: 0 - type: Transform -- uid: 14966 - type: WallReinforced - components: - - pos: -12.5,-42.5 - parent: 0 - type: Transform -- uid: 14967 - type: AirlockMaintMedLocked - components: - - pos: -12.5,-41.5 - parent: 0 - type: Transform -- uid: 14968 - type: WallSolid - components: - - pos: -12.5,-40.5 - parent: 0 - type: Transform -- uid: 14969 - type: WallSolid - components: - - pos: -18.5,-46.5 - parent: 0 - type: Transform -- uid: 14970 - type: WallSolid - components: - - pos: -18.5,-47.5 - parent: 0 - type: Transform -- uid: 14971 - type: WallSolid - components: - - pos: -18.5,-49.5 - parent: 0 - type: Transform -- uid: 14972 - type: WallSolid - components: - - pos: -18.5,-50.5 - parent: 0 - type: Transform -- uid: 14973 - type: WallSolid - components: - - pos: -18.5,-51.5 - parent: 0 - type: Transform -- uid: 14974 - type: WallSolid - components: - - pos: -18.5,-52.5 - parent: 0 - type: Transform -- uid: 14975 - type: WallSolid - components: - - pos: -17.5,-52.5 - parent: 0 - type: Transform -- uid: 14976 - type: WallSolid - components: - - pos: -16.5,-52.5 - parent: 0 - type: Transform -- uid: 14977 - type: WallSolid - components: - - pos: -15.5,-52.5 - parent: 0 - type: Transform -- uid: 14978 - type: WallSolid - components: - - pos: -4.5,-50.5 - parent: 0 - type: Transform -- uid: 14979 - type: WallSolid - components: - - pos: -4.5,-52.5 - parent: 0 - type: Transform -- uid: 14980 - type: WallSolid - components: - - pos: -4.5,-51.5 - parent: 0 - type: Transform -- uid: 14981 - type: WallSolid - components: - - pos: -14.5,-52.5 - parent: 0 - type: Transform -- uid: 14982 - type: WallSolid - components: - - pos: -13.5,-52.5 - parent: 0 - type: Transform -- uid: 14983 - type: WallSolid - components: - - pos: -12.5,-52.5 - parent: 0 - type: Transform -- uid: 14984 - type: WallSolid - components: - - pos: -11.5,-52.5 - parent: 0 - type: Transform -- uid: 14985 - type: WallSolid - components: - - pos: -10.5,-52.5 - parent: 0 - type: Transform -- uid: 14986 - type: WallSolid - components: - - pos: -9.5,-52.5 - parent: 0 - type: Transform -- uid: 14987 - type: WallSolid - components: - - pos: -8.5,-52.5 - parent: 0 - type: Transform -- uid: 14988 - type: WallSolid - components: - - pos: -7.5,-52.5 - parent: 0 - type: Transform -- uid: 14989 - type: WallSolid - components: - - pos: -7.5,-51.5 - parent: 0 - type: Transform -- uid: 14990 - type: AirlockMaintMedLocked - components: - - name: Morgue - type: MetaData - - pos: -7.5,-50.5 - parent: 0 - type: Transform -- uid: 14991 - type: WallSolid - components: - - pos: -7.5,-49.5 - parent: 0 - type: Transform -- uid: 14992 - type: WallSolid - components: - - pos: -7.5,-48.5 - parent: 0 - type: Transform -- uid: 14993 - type: WallSolid - components: - - pos: -7.5,-47.5 - parent: 0 - type: Transform -- uid: 14994 - type: WallSolid - components: - - pos: -7.5,-46.5 - parent: 0 - type: Transform -- uid: 14995 - type: WallReinforced - components: - - pos: -7.5,-45.5 - parent: 0 - type: Transform -- uid: 14996 - type: WallReinforced - components: - - pos: -8.5,-45.5 - parent: 0 - type: Transform -- uid: 14997 - type: WallReinforced - components: - - pos: -9.5,-45.5 - parent: 0 - type: Transform -- uid: 14998 - type: WallReinforced - components: - - pos: -10.5,-45.5 - parent: 0 - type: Transform -- uid: 14999 - type: CableHV - components: - - pos: -10.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15000 - type: SubstationBasic - components: - - name: East Med Substation - type: MetaData - - pos: -11.5,-44.5 - parent: 0 - type: Transform -- uid: 15001 - type: AirlockMedicalLocked - components: - - pos: -14.5,-45.5 - parent: 0 - type: Transform -- uid: 15002 - type: AirlockMedicalLocked - components: - - name: Morgue - type: MetaData - - pos: -18.5,-48.5 - parent: 0 - type: Transform -- uid: 15003 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-46.5 - parent: 0 - type: Transform -- uid: 15004 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-47.5 - parent: 0 - type: Transform -- uid: 15005 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-48.5 - parent: 0 - type: Transform -- uid: 15006 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-51.5 - parent: 0 - type: Transform -- uid: 15007 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-50.5 - parent: 0 - type: Transform -- uid: 15008 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-46.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15009 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-47.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15010 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-48.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15011 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-48.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14938 - moles: - - 2.8406363 - - 10.686202 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15012 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-47.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14938 - moles: - - 2.8406363 - - 10.686202 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15013 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-46.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14938 - moles: - - 2.8406363 - - 10.686202 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15014 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-49.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15015 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-48.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15016 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-47.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15017 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-46.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15018 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-46.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14935 - moles: - - 2.6133852 - - 9.831306 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15019 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-47.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14935 - moles: - - 2.6133852 - - 9.831306 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15020 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-48.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14935 - moles: - - 2.6133852 - - 9.831306 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15021 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-49.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15022 - type: Morgue - components: - - rot: 3.141592653589793 rad - pos: -8.5,-51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15023 - type: Morgue - components: - - rot: 3.141592653589793 rad - pos: -9.5,-51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15024 - type: Morgue - components: - - rot: 3.141592653589793 rad - pos: -10.5,-51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15025 - type: Morgue - components: - - rot: 3.141592653589793 rad - pos: -11.5,-51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15026 - type: Morgue - components: - - rot: 3.141592653589793 rad - pos: -12.5,-51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15027 - type: Morgue - components: - - rot: 3.141592653589793 rad - pos: -13.5,-51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15028 - type: SignMorgue - components: - - pos: -18.5,-47.5 - parent: 0 - type: Transform -- uid: 15029 - type: FirelockGlass - components: - - pos: -21.5,-51.5 - parent: 0 - type: Transform -- uid: 15030 - type: TableReinforced - components: - - pos: -17.5,-51.5 - parent: 0 - type: Transform -- uid: 15031 - type: TableReinforced - components: - - pos: -16.5,-51.5 - parent: 0 - type: Transform -- uid: 15032 - type: TableReinforced - components: - - pos: -15.5,-46.5 - parent: 0 - type: Transform -- uid: 15033 - type: filingCabinetDrawer - components: - - pos: -15.5,-51.5 - parent: 0 - type: Transform -- uid: 15034 - type: OperatingTable - components: - - pos: -16.5,-46.5 - parent: 0 - type: Transform -- uid: 15035 - type: ChairOfficeDark - components: - - pos: -16.5,-50.5 - parent: 0 - type: Transform -- uid: 15036 - type: BoxBodyBag - components: - - pos: -17.486391,-51.30227 - parent: 0 - type: Transform -- uid: 15037 - type: computerBodyScanner - components: - - pos: -17.5,-46.5 - parent: 0 - type: Transform -- uid: 15038 - type: ClothingHandsGlovesLatex - components: - - pos: -16.580141,-51.42727 - parent: 0 - type: Transform -- uid: 15039 - type: Scalpel - components: - - pos: -15.564329,-46.42406 - parent: 0 - type: Transform -- uid: 15040 - type: ClothingMaskSterile - components: - - pos: -16.579954,-51.234177 - parent: 0 - type: Transform -- uid: 15041 - type: ClothingOuterCoatLab - components: - - pos: -17.03308,-51.515427 - parent: 0 - type: Transform -- uid: 15042 - type: AirlockEngineeringLocked - components: - - pos: 59.5,12.5 - parent: 0 - type: Transform -- uid: 15043 - type: BooksBag - components: - - pos: -25.559725,-17.587234 - parent: 0 - type: Transform -- uid: 15044 - type: AirlockMaintMedLocked - components: - - pos: -38.5,-35.5 - parent: 0 - type: Transform -- uid: 15045 - type: WindoorMedicalLocked - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-49.5 - parent: 0 - type: Transform -- uid: 15046 - type: DisposalUnit - components: - - pos: -14.5,-51.5 - parent: 0 - type: Transform -- uid: 15047 - type: ComputerCloningConsole - components: - - pos: -13.5,-40.5 - parent: 0 - type: Transform - - outputs: - MedicalScannerSender: - - port: MedicalScannerReceiver - uid: 16246 - CloningPodSender: - - port: CloningPodReceiver - uid: 15053 - type: SignalTransmitter -- uid: 15048 - type: SignCloning - components: - - pos: -18.5,-44.5 - parent: 0 - type: Transform -- uid: 15049 - type: AirlockMedicalGlassLocked - components: - - pos: -18.5,-42.5 - parent: 0 - type: Transform -- uid: 15050 - type: AirlockMedicalGlassLocked - components: - - pos: -18.5,-41.5 - parent: 0 - type: Transform -- uid: 15051 - type: AirlockVirologyGlassLocked - components: - - pos: -48.5,-53.5 - parent: 0 - type: Transform -- uid: 15052 - type: TableGlass - components: - - pos: -50.5,-56.5 - parent: 0 - type: Transform -- uid: 15053 - type: CloningPod - components: - - pos: -15.5,-40.5 - parent: 0 - type: Transform - - inputs: - CloningPodReceiver: - - port: CloningPodSender - uid: 15047 - type: SignalReceiver -- uid: 15054 - type: Catwalk - components: - - pos: -37.5,40.5 - parent: 0 - type: Transform -- uid: 15055 - type: Catwalk - components: - - pos: -37.5,41.5 - parent: 0 - type: Transform -- uid: 15056 - type: Catwalk - components: - - pos: -37.5,42.5 - parent: 0 - type: Transform -- uid: 15057 - type: Catwalk - components: - - pos: -39.5,39.5 - parent: 0 - type: Transform -- uid: 15058 - type: Catwalk - components: - - pos: -31.5,25.5 - parent: 0 - type: Transform -- uid: 15059 - type: Catwalk - components: - - pos: -31.5,26.5 - parent: 0 - type: Transform -- uid: 15060 - type: Catwalk - components: - - pos: -31.5,27.5 - parent: 0 - type: Transform -- uid: 15061 - type: Catwalk - components: - - pos: -31.5,28.5 - parent: 0 - type: Transform -- uid: 15062 - type: Catwalk - components: - - pos: -31.5,29.5 - parent: 0 - type: Transform -- uid: 15063 - type: Catwalk - components: - - pos: -15.5,34.5 - parent: 0 - type: Transform -- uid: 15064 - type: Catwalk - components: - - pos: -15.5,35.5 - parent: 0 - type: Transform -- uid: 15065 - type: Catwalk - components: - - pos: -15.5,36.5 - parent: 0 - type: Transform -- uid: 15066 - type: Catwalk - components: - - pos: -16.5,33.5 - parent: 0 - type: Transform -- uid: 15067 - type: Catwalk - components: - - pos: -17.5,33.5 - parent: 0 - type: Transform -- uid: 15068 - type: Catwalk - components: - - pos: -18.5,33.5 - parent: 0 - type: Transform -- uid: 15069 - type: Catwalk - components: - - pos: -19.5,33.5 - parent: 0 - type: Transform -- uid: 15070 - type: Catwalk - components: - - pos: -20.5,33.5 - parent: 0 - type: Transform -- uid: 15071 - type: Catwalk - components: - - pos: -21.5,32.5 - parent: 0 - type: Transform -- uid: 15072 - type: Catwalk - components: - - pos: -21.5,31.5 - parent: 0 - type: Transform -- uid: 15073 - type: Catwalk - components: - - pos: -21.5,30.5 - parent: 0 - type: Transform -- uid: 15074 - type: Catwalk - components: - - pos: -21.5,29.5 - parent: 0 - type: Transform -- uid: 15075 - type: Catwalk - components: - - pos: -21.5,28.5 - parent: 0 - type: Transform -- uid: 15076 - type: Catwalk - components: - - pos: -21.5,27.5 - parent: 0 - type: Transform -- uid: 15077 - type: Catwalk - components: - - pos: -21.5,26.5 - parent: 0 - type: Transform -- uid: 15078 - type: Catwalk - components: - - pos: -21.5,25.5 - parent: 0 - type: Transform -- uid: 15079 - type: FirelockGlass - components: - - pos: -28.5,-44.5 - parent: 0 - type: Transform -- uid: 15080 - type: WallSolid - components: - - pos: -26.5,-44.5 - parent: 0 - type: Transform -- uid: 15081 - type: HospitalCurtainsOpen - components: - - pos: -31.5,-44.5 - parent: 0 - type: Transform -- uid: 15082 - type: TintedWindow - components: - - pos: -27.5,-44.5 - parent: 0 - type: Transform -- uid: 15083 - type: WallSolid - components: - - pos: -29.5,-44.5 - parent: 0 - type: Transform -- uid: 15084 - type: HospitalCurtainsOpen - components: - - pos: -25.5,-44.5 - parent: 0 - type: Transform -- uid: 15085 - type: TintedWindow - components: - - pos: -24.5,-44.5 - parent: 0 - type: Transform -- uid: 15086 - type: WallSolid - components: - - pos: -32.5,-44.5 - parent: 0 - type: Transform -- uid: 15087 - type: ReinforcedWindow - components: - - pos: -22.5,-47.5 - parent: 0 - type: Transform -- uid: 15088 - type: WallSolid - components: - - pos: -22.5,-48.5 - parent: 0 - type: Transform -- uid: 15089 - type: WallSolid - components: - - pos: -22.5,-49.5 - parent: 0 - type: Transform -- uid: 15090 - type: WallSolid - components: - - pos: -22.5,-50.5 - parent: 0 - type: Transform -- uid: 15091 - type: WallSolid - components: - - pos: -22.5,-51.5 - parent: 0 - type: Transform -- uid: 15092 - type: WallSolid - components: - - pos: -22.5,-52.5 - parent: 0 - type: Transform -- uid: 15093 - type: ReinforcedWindow - components: - - pos: -23.5,-48.5 - parent: 0 - type: Transform -- uid: 15094 - type: ReinforcedWindow - components: - - pos: -24.5,-48.5 - parent: 0 - type: Transform -- uid: 15095 - type: ReinforcedWindow - components: - - pos: -25.5,-48.5 - parent: 0 - type: Transform -- uid: 15096 - type: WallSolid - components: - - pos: -26.5,-48.5 - parent: 0 - type: Transform -- uid: 15097 - type: WallSolid - components: - - pos: -28.5,-48.5 - parent: 0 - type: Transform -- uid: 15098 - type: WallSolid - components: - - pos: -28.5,-49.5 - parent: 0 - type: Transform -- uid: 15099 - type: WallSolid - components: - - pos: -29.5,-49.5 - parent: 0 - type: Transform -- uid: 15100 - type: WallSolid - components: - - pos: -30.5,-49.5 - parent: 0 - type: Transform -- uid: 15101 - type: WallSolid - components: - - pos: -30.5,-48.5 - parent: 0 - type: Transform -- uid: 15102 - type: WallSolid - components: - - pos: -29.5,-50.5 - parent: 0 - type: Transform -- uid: 15103 - type: WallSolid - components: - - pos: -29.5,-51.5 - parent: 0 - type: Transform -- uid: 15104 - type: WallSolid - components: - - pos: -29.5,-52.5 - parent: 0 - type: Transform -- uid: 15105 - type: WallSolid - components: - - pos: -22.5,-53.5 - parent: 0 - type: Transform -- uid: 15106 - type: WallSolid - components: - - pos: -23.5,-53.5 - parent: 0 - type: Transform -- uid: 15107 - type: WallSolid - components: - - pos: -24.5,-53.5 - parent: 0 - type: Transform -- uid: 15108 - type: WallSolid - components: - - pos: -25.5,-53.5 - parent: 0 - type: Transform -- uid: 15109 - type: WallSolid - components: - - pos: -26.5,-53.5 - parent: 0 - type: Transform -- uid: 15110 - type: WallSolid - components: - - pos: -27.5,-53.5 - parent: 0 - type: Transform -- uid: 15111 - type: WallSolid - components: - - pos: -28.5,-53.5 - parent: 0 - type: Transform -- uid: 15112 - type: WallSolid - components: - - pos: -29.5,-53.5 - parent: 0 - type: Transform -- uid: 15113 - type: WallSolid - components: - - pos: -30.5,-53.5 - parent: 0 - type: Transform -- uid: 15114 - type: WallSolid - components: - - pos: -31.5,-53.5 - parent: 0 - type: Transform -- uid: 15115 - type: WallSolid - components: - - pos: -32.5,-53.5 - parent: 0 - type: Transform -- uid: 15116 - type: WallSolid - components: - - pos: -33.5,-53.5 - parent: 0 - type: Transform -- uid: 15117 - type: WallSolid - components: - - pos: -34.5,-53.5 - parent: 0 - type: Transform -- uid: 15118 - type: WallSolid - components: - - pos: -35.5,-53.5 - parent: 0 - type: Transform -- uid: 15119 - type: WallSolid - components: - - pos: -32.5,-48.5 - parent: 0 - type: Transform -- uid: 15120 - type: WallSolid - components: - - pos: -36.5,-53.5 - parent: 0 - type: Transform -- uid: 15121 - type: WallSolid - components: - - pos: -36.5,-52.5 - parent: 0 - type: Transform -- uid: 15122 - type: WallSolid - components: - - pos: -36.5,-51.5 - parent: 0 - type: Transform -- uid: 15123 - type: WallSolid - components: - - pos: -36.5,-50.5 - parent: 0 - type: Transform -- uid: 15124 - type: WallSolid - components: - - pos: -36.5,-49.5 - parent: 0 - type: Transform -- uid: 15125 - type: WallSolid - components: - - pos: -36.5,-48.5 - parent: 0 - type: Transform -- uid: 15126 - type: ReinforcedWindow - components: - - pos: -35.5,-48.5 - parent: 0 - type: Transform -- uid: 15127 - type: ReinforcedWindow - components: - - pos: -34.5,-48.5 - parent: 0 - type: Transform -- uid: 15128 - type: ReinforcedWindow - components: - - pos: -33.5,-48.5 - parent: 0 - type: Transform -- uid: 15129 - type: WallReinforced - components: - - pos: -37.5,-47.5 - parent: 0 - type: Transform -- uid: 15130 - type: WallReinforced - components: - - pos: -37.5,-48.5 - parent: 0 - type: Transform -- uid: 15131 - type: WallReinforced - components: - - pos: -37.5,-44.5 - parent: 0 - type: Transform -- uid: 15132 - type: WallReinforced - components: - - pos: -37.5,-45.5 - parent: 0 - type: Transform -- uid: 15133 - type: WallReinforced - components: - - pos: -36.5,-44.5 - parent: 0 - type: Transform -- uid: 15134 - type: WallReinforced - components: - - pos: -35.5,-44.5 - parent: 0 - type: Transform -- uid: 15135 - type: WallReinforced - components: - - pos: -34.5,-44.5 - parent: 0 - type: Transform -- uid: 15136 - type: AirlockMaintMedLocked - components: - - pos: -33.5,-44.5 - parent: 0 - type: Transform -- uid: 15137 - type: DisposalUnit - components: - - pos: -32.5,-49.5 - parent: 0 - type: Transform -- uid: 15138 - type: DisposalUnit - components: - - pos: -26.5,-49.5 - parent: 0 - type: Transform -- uid: 15139 - type: OperatingTable - components: - - pos: -24.5,-51.5 - parent: 0 - type: Transform -- uid: 15140 - type: OperatingTable - components: - - pos: -34.5,-51.5 - parent: 0 - type: Transform -- uid: 15141 - type: computerBodyScanner - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-51.5 - parent: 0 - type: Transform -- uid: 15142 - type: computerBodyScanner - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-51.5 - parent: 0 - type: Transform -- uid: 15143 - type: AirlockMedicalLocked - components: - - pos: -31.5,-48.5 - parent: 0 - type: Transform -- uid: 15144 - type: AirlockMedicalLocked - components: - - pos: -27.5,-48.5 - parent: 0 - type: Transform -- uid: 15145 - type: Grille - components: - - pos: -33.5,-48.5 - parent: 0 - type: Transform -- uid: 15146 - type: Grille - components: - - pos: -34.5,-48.5 - parent: 0 - type: Transform -- uid: 15147 - type: Grille - components: - - pos: -35.5,-48.5 - parent: 0 - type: Transform -- uid: 15148 - type: Grille - components: - - pos: -25.5,-48.5 - parent: 0 - type: Transform -- uid: 15149 - type: Grille - components: - - pos: -24.5,-48.5 - parent: 0 - type: Transform -- uid: 15150 - type: Grille - components: - - pos: -23.5,-48.5 - parent: 0 - type: Transform -- uid: 15151 - type: Grille - components: - - pos: -22.5,-47.5 - parent: 0 - type: Transform -- uid: 15152 - type: Grille - components: - - pos: -18.5,-40.5 - parent: 0 - type: Transform -- uid: 15153 - type: Grille - components: - - pos: -18.5,-43.5 - parent: 0 - type: Transform -- uid: 15154 - type: CrateMedicalSurgery - components: - - pos: -30.5,-52.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 15155 - type: CrateMedicalSurgery - components: - - pos: -28.5,-52.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 15156 - type: LockerMedicineFilled - components: - - pos: -30.5,-51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15157 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: -30.5,-50.5 - parent: 0 - type: Transform -- uid: 15158 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: -28.5,-50.5 - parent: 0 - type: Transform -- uid: 15159 - type: LockerMedicineFilled - components: - - pos: -28.5,-51.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15160 - type: TableGlass - components: - - pos: -33.5,-49.5 - parent: 0 - type: Transform -- uid: 15161 - type: TableGlass - components: - - pos: -35.5,-49.5 - parent: 0 - type: Transform -- uid: 15162 - type: TableGlass - components: - - pos: -23.5,-49.5 - parent: 0 - type: Transform -- uid: 15163 - type: TableGlass - components: - - pos: -25.5,-49.5 - parent: 0 - type: Transform -- uid: 15164 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -29.5,-48.5 - parent: 0 - type: Transform -- uid: 15165 - type: Chair - components: - - pos: -35.5,-47.5 - parent: 0 - type: Transform -- uid: 15166 - type: Chair - components: - - pos: -34.5,-47.5 - parent: 0 - type: Transform -- uid: 15167 - type: Chair - components: - - pos: -33.5,-47.5 - parent: 0 - type: Transform -- uid: 15168 - type: Chair - components: - - pos: -23.5,-47.5 - parent: 0 - type: Transform -- uid: 15169 - type: Chair - components: - - pos: -24.5,-47.5 - parent: 0 - type: Transform -- uid: 15170 - type: Chair - components: - - pos: -25.5,-47.5 - parent: 0 - type: Transform -- uid: 15171 - type: AirlockMedicalGlassLocked - components: - - pos: -22.5,-46.5 - parent: 0 - type: Transform -- uid: 15172 - type: AirlockMedicalGlassLocked - components: - - pos: -22.5,-45.5 - parent: 0 - type: Transform -- uid: 15173 - type: AirlockMaintMedLocked - components: - - pos: -32.5,-39.5 - parent: 0 - type: Transform -- uid: 15174 - type: WallSolid - components: - - pos: -32.5,-40.5 - parent: 0 - type: Transform -- uid: 15175 - type: WallSolid - components: - - pos: -32.5,-41.5 - parent: 0 - type: Transform -- uid: 15176 - type: WallSolid - components: - - pos: -32.5,-42.5 - parent: 0 - type: Transform -- uid: 15177 - type: WallSolid - components: - - pos: -32.5,-43.5 - parent: 0 - type: Transform -- uid: 15178 - type: CheapRollerBed - components: - - pos: -29.467377,-45.395847 - parent: 0 - type: Transform -- uid: 15179 - type: CheapRollerBed - components: - - pos: -30.514252,-45.380222 - parent: 0 - type: Transform -- uid: 15180 - type: CheapRollerBed - components: - - pos: -36.529877,-47.395847 - parent: 0 - type: Transform -- uid: 15181 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-49.5 - parent: 0 - type: Transform -- uid: 15182 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-49.5 - parent: 0 - type: Transform -- uid: 15183 - type: SignalButton - components: - - pos: -30.5,-49.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15187 - - port: Toggle - uid: 15186 - - port: Toggle - uid: 15185 - type: SignalTransmitter -- uid: 15184 - type: SignalButton - components: - - pos: -28.5,-49.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 15190 - - port: Toggle - uid: 15189 - - port: Toggle - uid: 15188 - type: SignalTransmitter -- uid: 15185 - type: ShuttersWindowOpen - components: - - pos: -35.5,-48.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15183 - type: SignalReceiver -- uid: 15186 - type: ShuttersWindowOpen - components: - - pos: -34.5,-48.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15183 - type: SignalReceiver -- uid: 15187 - type: ShuttersWindowOpen - components: - - pos: -33.5,-48.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15183 - type: SignalReceiver -- uid: 15188 - type: ShuttersWindowOpen - components: - - pos: -23.5,-48.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15184 - type: SignalReceiver -- uid: 15189 - type: ShuttersWindowOpen - components: - - pos: -24.5,-48.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15184 - type: SignalReceiver -- uid: 15190 - type: ShuttersWindowOpen - components: - - pos: -25.5,-48.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 15184 - type: SignalReceiver -- uid: 15191 - type: SignSurgery - components: - - pos: -22.5,-48.5 - parent: 0 - type: Transform -- uid: 15192 - type: FirelockGlass - components: - - pos: -20.5,-51.5 - parent: 0 - type: Transform -- uid: 15193 - type: FirelockGlass - components: - - pos: -19.5,-51.5 - parent: 0 - type: Transform -- uid: 15194 - type: ExtinguisherCabinetFilled - components: - - pos: -22.5,-50.5 - parent: 0 - type: Transform -- uid: 15195 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-49.5 - parent: 0 - type: Transform -- uid: 15196 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-49.5 - parent: 0 - type: Transform -- uid: 15197 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -14.5,-51.5 - parent: 0 - type: Transform -- uid: 15198 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-49.5 - parent: 0 - type: Transform -- uid: 15199 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -27.5,-49.5 - parent: 0 - type: Transform -- uid: 15200 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-46.5 - parent: 0 - type: Transform -- uid: 15201 - type: DisposalBend - components: - - pos: -14.5,-49.5 - parent: 0 - type: Transform -- uid: 15202 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -16.5,-49.5 - parent: 0 - type: Transform -- uid: 15203 - type: DisposalBend - components: - - pos: -16.5,-48.5 - parent: 0 - type: Transform -- uid: 15204 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -20.5,-48.5 - parent: 0 - type: Transform -- uid: 15205 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-46.5 - parent: 0 - type: Transform -- uid: 15206 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: -20.5,-46.5 - parent: 0 - type: Transform -- uid: 15207 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-48.5 - parent: 0 - type: Transform -- uid: 15208 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -31.5,-47.5 - parent: 0 - type: Transform -- uid: 15209 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-46.5 - parent: 0 - type: Transform -- uid: 15210 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-46.5 - parent: 0 - type: Transform -- uid: 15211 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-46.5 - parent: 0 - type: Transform -- uid: 15212 - type: DisposalPipe - components: - - pos: -27.5,-48.5 - parent: 0 - type: Transform -- uid: 15213 - type: DisposalPipe - components: - - pos: -27.5,-47.5 - parent: 0 - type: Transform -- uid: 15214 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-46.5 - parent: 0 - type: Transform -- uid: 15215 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-46.5 - parent: 0 - type: Transform -- uid: 15216 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-46.5 - parent: 0 - type: Transform -- uid: 15217 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-46.5 - parent: 0 - type: Transform -- uid: 15218 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-46.5 - parent: 0 - type: Transform -- uid: 15219 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-46.5 - parent: 0 - type: Transform -- uid: 15220 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-48.5 - parent: 0 - type: Transform -- uid: 15221 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-48.5 - parent: 0 - type: Transform -- uid: 15222 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-48.5 - parent: 0 - type: Transform -- uid: 15223 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-49.5 - parent: 0 - type: Transform -- uid: 15224 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -14.5,-50.5 - parent: 0 - type: Transform -- uid: 15225 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,-47.5 - parent: 0 - type: Transform -- uid: 15226 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,-45.5 - parent: 0 - type: Transform -- uid: 15227 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,-44.5 - parent: 0 - type: Transform -- uid: 15228 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,-43.5 - parent: 0 - type: Transform -- uid: 15229 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,-42.5 - parent: 0 - type: Transform -- uid: 15230 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,-41.5 - parent: 0 - type: Transform -- uid: 15231 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,-40.5 - parent: 0 - type: Transform -- uid: 15232 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -27.5,-51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15233 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -31.5,-51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15234 - type: GasPipeTJunction - components: - - pos: -31.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15235 - type: GasPipeTJunction - components: - - pos: -27.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15236 - type: GasPipeTJunction - components: - - pos: -32.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15237 - type: GasPipeStraight - components: - - pos: -31.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15238 - type: GasPipeStraight - components: - - pos: -31.5,-49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15239 - type: GasPipeStraight - components: - - pos: -31.5,-48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15240 - type: GasPipeStraight - components: - - pos: -31.5,-47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15241 - type: GasPipeStraight - components: - - pos: -31.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15242 - type: GasPipeStraight - components: - - pos: -27.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15243 - type: GasPipeStraight - components: - - pos: -27.5,-49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15244 - type: GasPipeStraight - components: - - pos: -27.5,-48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15245 - type: GasPipeStraight - components: - - pos: -27.5,-47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15246 - type: GasPipeStraight - components: - - pos: -27.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15247 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15248 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15249 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15250 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -23.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15251 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15252 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15253 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15254 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15255 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15256 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15257 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15258 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15259 - type: GasPipeTJunction - components: - - pos: -20.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15260 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15261 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15262 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -34.5,-50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15263 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -24.5,-50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15264 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -32.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15265 - type: GasPipeTJunction - components: - - pos: -34.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15266 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -35.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15267 - type: GasPipeTJunction - components: - - pos: -24.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15268 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15269 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15270 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15271 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15272 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15273 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15274 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15275 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15276 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15277 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15278 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15279 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15280 - type: GasPipeStraight - components: - - pos: -24.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15281 - type: GasPipeStraight - components: - - pos: -24.5,-48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15282 - type: GasPipeTJunction - components: - - pos: -26.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15283 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15284 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15285 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15286 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15287 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15288 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15289 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15290 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15291 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15292 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15293 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15294 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15295 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15296 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15297 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15298 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15299 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15300 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15301 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15302 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15303 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15304 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15305 - type: GasVentScrubber - components: - - pos: -35.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15306 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -26.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15307 - type: GasVentScrubber - components: - - pos: -23.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15308 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15309 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15310 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15311 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15312 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15313 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15314 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15315 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15316 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15317 - type: GasPipeTJunction - components: - - pos: -15.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15318 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -20.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15319 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15320 - type: GasPipeBend - components: - - pos: -14.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15321 - type: GasPipeStraight - components: - - pos: -14.5,-43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15322 - type: GasPipeStraight - components: - - pos: -14.5,-44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15323 - type: GasPipeStraight - components: - - pos: -14.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15324 - type: GasPipeStraight - components: - - pos: -14.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15325 - type: GasPipeStraight - components: - - pos: -14.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15326 - type: GasPipeStraight - components: - - pos: -14.5,-48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15327 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -14.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15328 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15329 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15330 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15331 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15332 - type: GasVentScrubber - components: - - pos: -11.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15333 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -11.5,-50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15334 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -15.5,-43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15335 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15336 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15337 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15338 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15339 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -16.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15340 - type: GasPipeBend - components: - - pos: -16.5,-48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15341 - type: GasPipeStraight - components: - - pos: -16.5,-49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15342 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15343 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15344 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15345 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15346 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15347 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15348 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15349 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-41.5 - parent: 0 - type: Transform -- uid: 15350 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-42.5 - parent: 0 - type: Transform -- uid: 15351 - type: Window - components: - - pos: -23.5,-39.5 - parent: 0 - type: Transform -- uid: 15352 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-43.5 - parent: 0 - type: Transform -- uid: 15353 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-41.5 - parent: 0 - type: Transform -- uid: 15354 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-43.5 - parent: 0 - type: Transform -- uid: 15355 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-42.5 - parent: 0 - type: Transform -- uid: 15356 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-41.5 - parent: 0 - type: Transform -- uid: 15357 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-42.5 - parent: 0 - type: Transform -- uid: 15358 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-43.5 - parent: 0 - type: Transform -- uid: 15359 - type: TintedWindow - components: - - pos: -24.5,-41.5 - parent: 0 - type: Transform -- uid: 15360 - type: TintedWindow - components: - - pos: -27.5,-41.5 - parent: 0 - type: Transform -- uid: 15361 - type: TintedWindow - components: - - pos: -30.5,-41.5 - parent: 0 - type: Transform -- uid: 15362 - type: HospitalCurtainsOpen - components: - - pos: -31.5,-41.5 - parent: 0 - type: Transform -- uid: 15363 - type: HospitalCurtainsOpen - components: - - pos: -28.5,-41.5 - parent: 0 - type: Transform -- uid: 15364 - type: HospitalCurtainsOpen - components: - - pos: -25.5,-41.5 - parent: 0 - type: Transform -- uid: 15365 - type: Grille - components: - - pos: -30.5,-41.5 - parent: 0 - type: Transform -- uid: 15366 - type: Grille - components: - - pos: -27.5,-41.5 - parent: 0 - type: Transform -- uid: 15367 - type: Grille - components: - - pos: -24.5,-41.5 - parent: 0 - type: Transform -- uid: 15368 - type: Grille - components: - - pos: -23.5,-39.5 - parent: 0 - type: Transform -- uid: 15369 - type: AirlockMedicalGlassLocked - components: - - pos: -23.5,-40.5 - parent: 0 - type: Transform -- uid: 15370 - type: FirelockGlass - components: - - pos: -31.5,-41.5 - parent: 0 - type: Transform -- uid: 15371 - type: FirelockGlass - components: - - pos: -28.5,-41.5 - parent: 0 - type: Transform -- uid: 15372 - type: FirelockGlass - components: - - pos: -25.5,-41.5 - parent: 0 - type: Transform -- uid: 15373 - type: MedicalBed - components: - - pos: -30.5,-42.5 - parent: 0 - type: Transform -- uid: 15374 - type: MedicalBed - components: - - pos: -27.5,-42.5 - parent: 0 - type: Transform -- uid: 15375 - type: MedicalBed - components: - - pos: -24.5,-42.5 - parent: 0 - type: Transform -- uid: 15376 - type: BedsheetMedical - components: - - pos: -30.5,-42.5 - parent: 0 - type: Transform -- uid: 15377 - type: BedsheetMedical - components: - - pos: -27.5,-42.5 - parent: 0 - type: Transform -- uid: 15378 - type: BedsheetMedical - components: - - pos: -24.5,-42.5 - parent: 0 - type: Transform -- uid: 15379 - type: Table - components: - - pos: -30.5,-43.5 - parent: 0 - type: Transform -- uid: 15380 - type: Table - components: - - pos: -27.5,-43.5 - parent: 0 - type: Transform -- uid: 15381 - type: Table - components: - - pos: -24.5,-43.5 - parent: 0 - type: Transform -- uid: 15382 - type: Catwalk - components: - - pos: 72.5,0.5 - parent: 0 - type: Transform -- uid: 15383 - type: Catwalk - components: - - pos: 73.5,0.5 - parent: 0 - type: Transform -- uid: 15384 - type: Catwalk - components: - - pos: 71.5,0.5 - parent: 0 - type: Transform -- uid: 15385 - type: WallSolid - components: - - pos: -13.5,-53.5 - parent: 0 - type: Transform -- uid: 15386 - type: WallSolid - components: - - pos: -22.5,-54.5 - parent: 0 - type: Transform -- uid: 15387 - type: WallSolid - components: - - pos: -22.5,-58.5 - parent: 0 - type: Transform -- uid: 15388 - type: WallSolid - components: - - pos: -22.5,-59.5 - parent: 0 - type: Transform -- uid: 15389 - type: WallSolid - components: - - pos: -23.5,-59.5 - parent: 0 - type: Transform -- uid: 15390 - type: WallSolid - components: - - pos: -25.5,-59.5 - parent: 0 - type: Transform -- uid: 15391 - type: WallSolid - components: - - pos: -24.5,-59.5 - parent: 0 - type: Transform -- uid: 15392 - type: WallSolid - components: - - pos: -27.5,-59.5 - parent: 0 - type: Transform -- uid: 15393 - type: WallSolid - components: - - pos: -28.5,-59.5 - parent: 0 - type: Transform -- uid: 15394 - type: WallSolid - components: - - pos: -28.5,-58.5 - parent: 0 - type: Transform -- uid: 15395 - type: WallSolid - components: - - pos: -28.5,-56.5 - parent: 0 - type: Transform -- uid: 15396 - type: WallSolid - components: - - pos: -28.5,-55.5 - parent: 0 - type: Transform -- uid: 15397 - type: WallSolid - components: - - pos: -28.5,-54.5 - parent: 0 - type: Transform -- uid: 15398 - type: Window - components: - - pos: -22.5,-57.5 - parent: 0 - type: Transform -- uid: 15399 - type: Window - components: - - pos: -22.5,-55.5 - parent: 0 - type: Transform -- uid: 15400 - type: WallSolid - components: - - pos: -36.5,-54.5 - parent: 0 - type: Transform -- uid: 15401 - type: WallSolid - components: - - pos: -36.5,-56.5 - parent: 0 - type: Transform -- uid: 15402 - type: WallSolidRust - components: - - pos: -36.5,-57.5 - parent: 0 - type: Transform -- uid: 15403 - type: WallSolid - components: - - pos: -36.5,-58.5 - parent: 0 - type: Transform -- uid: 15404 - type: WallSolid - components: - - pos: -29.5,-58.5 - parent: 0 - type: Transform -- uid: 15405 - type: WallSolid - components: - - pos: -30.5,-58.5 - parent: 0 - type: Transform -- uid: 15406 - type: WallSolidRust - components: - - pos: -31.5,-58.5 - parent: 0 - type: Transform -- uid: 15407 - type: WallSolidRust - components: - - pos: -32.5,-58.5 - parent: 0 - type: Transform -- uid: 15408 - type: WallSolid - components: - - pos: -33.5,-58.5 - parent: 0 - type: Transform -- uid: 15409 - type: WallSolid - components: - - pos: -34.5,-58.5 - parent: 0 - type: Transform -- uid: 15410 - type: WallSolid - components: - - pos: -35.5,-58.5 - parent: 0 - type: Transform -- uid: 15411 - type: WallSolid - components: - - pos: -37.5,-54.5 - parent: 0 - type: Transform -- uid: 15412 - type: WallSolid - components: - - pos: -38.5,-54.5 - parent: 0 - type: Transform -- uid: 15413 - type: WallSolid - components: - - pos: -37.5,-52.5 - parent: 0 - type: Transform -- uid: 15414 - type: WallSolidRust - components: - - pos: -38.5,-52.5 - parent: 0 - type: Transform -- uid: 15415 - type: WallSolid - components: - - pos: -36.5,-59.5 - parent: 0 - type: Transform -- uid: 15416 - type: WallSolidRust - components: - - pos: -37.5,-59.5 - parent: 0 - type: Transform -- uid: 15417 - type: WallSolid - components: - - pos: -30.5,-59.5 - parent: 0 - type: Transform -- uid: 15418 - type: AirlockMaintMedLocked - components: - - pos: -26.5,-59.5 - parent: 0 - type: Transform -- uid: 15419 - type: AirlockMaintLocked - components: - - pos: -36.5,-55.5 - parent: 0 - type: Transform -- uid: 15420 - type: AirlockMedicalLocked - components: - - pos: -28.5,-57.5 - parent: 0 - type: Transform -- uid: 15421 - type: Airlock - components: - - pos: -38.5,-53.5 - parent: 0 - type: Transform -- uid: 15422 - type: ToiletDirtyWater - components: - - pos: -37.5,-53.5 - parent: 0 - type: Transform -- uid: 15423 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-53.5 - parent: 0 - type: Transform -- uid: 15424 - type: Grille - components: - - pos: -22.5,-57.5 - parent: 0 - type: Transform -- uid: 15425 - type: Grille - components: - - pos: -22.5,-55.5 - parent: 0 - type: Transform -- uid: 15426 - type: DisposalUnit - components: - - pos: -27.5,-58.5 - parent: 0 - type: Transform -- uid: 15427 - type: WallReinforced - components: - - pos: -39.5,-48.5 - parent: 0 - type: Transform -- uid: 15428 - type: WallReinforced - components: - - pos: -38.5,-44.5 - parent: 0 - type: Transform -- uid: 15429 - type: WallReinforced - components: - - pos: -40.5,-48.5 - parent: 0 - type: Transform -- uid: 15430 - type: WallReinforced - components: - - pos: -40.5,-47.5 - parent: 0 - type: Transform -- uid: 15431 - type: WallReinforced - components: - - pos: -40.5,-44.5 - parent: 0 - type: Transform -- uid: 15432 - type: WallReinforced - components: - - pos: -40.5,-45.5 - parent: 0 - type: Transform -- uid: 15433 - type: WallReinforced - components: - - pos: -41.5,-44.5 - parent: 0 - type: Transform -- uid: 15434 - type: WallReinforced - components: - - pos: -42.5,-44.5 - parent: 0 - type: Transform -- uid: 15435 - type: WallReinforced - components: - - pos: -43.5,-44.5 - parent: 0 - type: Transform -- uid: 15436 - type: WallReinforced - components: - - pos: -44.5,-44.5 - parent: 0 - type: Transform -- uid: 15437 - type: WallReinforced - components: - - pos: -41.5,-48.5 - parent: 0 - type: Transform -- uid: 15438 - type: WallReinforced - components: - - pos: -42.5,-48.5 - parent: 0 - type: Transform -- uid: 15439 - type: WallReinforced - components: - - pos: -43.5,-48.5 - parent: 0 - type: Transform -- uid: 15440 - type: WallReinforced - components: - - pos: -44.5,-48.5 - parent: 0 - type: Transform -- uid: 15441 - type: WallReinforced - components: - - pos: -44.5,-47.5 - parent: 0 - type: Transform -- uid: 15442 - type: WallReinforced - components: - - pos: -39.5,-49.5 - parent: 0 - type: Transform -- uid: 15443 - type: WallReinforced - components: - - pos: -44.5,-45.5 - parent: 0 - type: Transform -- uid: 15444 - type: WallReinforced - components: - - pos: -39.5,-50.5 - parent: 0 - type: Transform -- uid: 15445 - type: WallReinforced - components: - - pos: -40.5,-50.5 - parent: 0 - type: Transform -- uid: 15446 - type: WallReinforced - components: - - pos: -40.5,-51.5 - parent: 0 - type: Transform -- uid: 15447 - type: ReinforcedWindow - components: - - pos: -40.5,-52.5 - parent: 0 - type: Transform -- uid: 15448 - type: ReinforcedWindow - components: - - pos: -40.5,-53.5 - parent: 0 - type: Transform -- uid: 15449 - type: ReinforcedWindow - components: - - pos: -40.5,-54.5 - parent: 0 - type: Transform -- uid: 15450 - type: ReinforcedWindow - components: - - pos: -40.5,-55.5 - parent: 0 - type: Transform -- uid: 15451 - type: WallReinforced - components: - - pos: -40.5,-56.5 - parent: 0 - type: Transform -- uid: 15452 - type: WallReinforced - components: - - pos: -40.5,-57.5 - parent: 0 - type: Transform -- uid: 15453 - type: WallReinforced - components: - - pos: -39.5,-57.5 - parent: 0 - type: Transform -- uid: 15454 - type: WallReinforced - components: - - pos: -39.5,-58.5 - parent: 0 - type: Transform -- uid: 15455 - type: WallReinforced - components: - - pos: -39.5,-59.5 - parent: 0 - type: Transform -- uid: 15456 - type: WallReinforced - components: - - pos: -39.5,-60.5 - parent: 0 - type: Transform -- uid: 15457 - type: WallReinforced - components: - - pos: -39.5,-61.5 - parent: 0 - type: Transform -- uid: 15458 - type: AirlockVirologyGlassLocked - components: - - pos: -37.5,-46.5 - parent: 0 - type: Transform -- uid: 15459 - type: AirlockVirologyLocked - components: - - pos: -40.5,-46.5 - parent: 0 - type: Transform -- uid: 15460 - type: AirlockMaintLocked - components: - - pos: -38.5,-48.5 - parent: 0 - type: Transform -- uid: 15461 - type: AirlockMaintLocked - components: - - pos: -39.5,-44.5 - parent: 0 - type: Transform -- uid: 15462 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -27.5,-58.5 - parent: 0 - type: Transform -- uid: 15463 - type: DisposalBend - components: - - pos: -30.5,-55.5 - parent: 0 - type: Transform -- uid: 15464 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -30.5,-57.5 - parent: 0 - type: Transform -- uid: 15465 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -39.5,-55.5 - parent: 0 - type: Transform -- uid: 15466 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-51.5 - parent: 0 - type: Transform -- uid: 15467 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-51.5 - parent: 0 - type: Transform -- uid: 15468 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-46.5 - parent: 0 - type: Transform -- uid: 15469 - type: DisposalBend - components: - - pos: -27.5,-57.5 - parent: 0 - type: Transform -- uid: 15470 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-57.5 - parent: 0 - type: Transform -- uid: 15471 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-57.5 - parent: 0 - type: Transform -- uid: 15472 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -30.5,-56.5 - parent: 0 - type: Transform -- uid: 15473 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-55.5 - parent: 0 - type: Transform -- uid: 15474 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-55.5 - parent: 0 - type: Transform -- uid: 15475 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-55.5 - parent: 0 - type: Transform -- uid: 15476 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-55.5 - parent: 0 - type: Transform -- uid: 15477 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-55.5 - parent: 0 - type: Transform -- uid: 15478 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-55.5 - parent: 0 - type: Transform -- uid: 15479 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-55.5 - parent: 0 - type: Transform -- uid: 15480 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-55.5 - parent: 0 - type: Transform -- uid: 15481 - type: DisposalPipe - components: - - pos: -39.5,-54.5 - parent: 0 - type: Transform -- uid: 15482 - type: DisposalPipe - components: - - pos: -39.5,-53.5 - parent: 0 - type: Transform -- uid: 15483 - type: DisposalPipe - components: - - pos: -39.5,-52.5 - parent: 0 - type: Transform -- uid: 15484 - type: DisposalPipe - components: - - pos: -38.5,-50.5 - parent: 0 - type: Transform -- uid: 15485 - type: DisposalPipe - components: - - pos: -38.5,-49.5 - parent: 0 - type: Transform -- uid: 15486 - type: DisposalPipe - components: - - pos: -38.5,-48.5 - parent: 0 - type: Transform -- uid: 15487 - type: DisposalPipe - components: - - pos: -38.5,-47.5 - parent: 0 - type: Transform -- uid: 15488 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-46.5 - parent: 0 - type: Transform -- uid: 15489 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-46.5 - parent: 0 - type: Transform -- uid: 15490 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-46.5 - parent: 0 - type: Transform -- uid: 15491 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-46.5 - parent: 0 - type: Transform -- uid: 15492 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-46.5 - parent: 0 - type: Transform -- uid: 15493 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-46.5 - parent: 0 - type: Transform -- uid: 15494 - type: WallSolid - components: - - pos: -21.5,-58.5 - parent: 0 - type: Transform -- uid: 15495 - type: WallSolid - components: - - pos: -19.5,-58.5 - parent: 0 - type: Transform -- uid: 15496 - type: WallSolid - components: - - pos: -17.5,-56.5 - parent: 0 - type: Transform -- uid: 15497 - type: WallSolid - components: - - pos: -18.5,-56.5 - parent: 0 - type: Transform -- uid: 15498 - type: WallSolid - components: - - pos: -18.5,-57.5 - parent: 0 - type: Transform -- uid: 15499 - type: WallSolid - components: - - pos: -18.5,-58.5 - parent: 0 - type: Transform -- uid: 15500 - type: WallSolid - components: - - pos: -18.5,-59.5 - parent: 0 - type: Transform -- uid: 15501 - type: WallSolid - components: - - pos: -18.5,-60.5 - parent: 0 - type: Transform -- uid: 15502 - type: WallSolid - components: - - pos: -18.5,-61.5 - parent: 0 - type: Transform -- uid: 15503 - type: WallSolid - components: - - pos: -17.5,-61.5 - parent: 0 - type: Transform -- uid: 15504 - type: WallSolid - components: - - pos: -15.5,-61.5 - parent: 0 - type: Transform -- uid: 15505 - type: WallSolid - components: - - pos: -14.5,-61.5 - parent: 0 - type: Transform -- uid: 15506 - type: WallSolid - components: - - pos: -14.5,-60.5 - parent: 0 - type: Transform -- uid: 15507 - type: WallSolid - components: - - pos: -14.5,-59.5 - parent: 0 - type: Transform -- uid: 15508 - type: WallSolid - components: - - pos: -14.5,-58.5 - parent: 0 - type: Transform -- uid: 15509 - type: WallSolid - components: - - pos: -14.5,-57.5 - parent: 0 - type: Transform -- uid: 15510 - type: WallSolid - components: - - pos: -14.5,-56.5 - parent: 0 - type: Transform -- uid: 15511 - type: WallSolid - components: - - pos: -15.5,-56.5 - parent: 0 - type: Transform -- uid: 15512 - type: WallSolid - components: - - pos: -16.5,-61.5 - parent: 0 - type: Transform -- uid: 15513 - type: WallSolid - components: - - pos: -13.5,-56.5 - parent: 0 - type: Transform -- uid: 15514 - type: WallSolid - components: - - pos: -13.5,-55.5 - parent: 0 - type: Transform -- uid: 15515 - type: WallSolid - components: - - pos: -13.5,-54.5 - parent: 0 - type: Transform -- uid: 15516 - type: WallSolid - components: - - pos: -37.5,-56.5 - parent: 0 - type: Transform -- uid: 15517 - type: GasPipeFourway - components: - - pos: -21.5,-55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15518 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15519 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15520 - type: GasPipeStraight - components: - - pos: -21.5,-54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15521 - type: GasPipeStraight - components: - - pos: -21.5,-53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15522 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15523 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15524 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15525 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15526 - type: GasPipeBend - components: - - pos: -16.5,-55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15527 - type: GasPipeStraight - components: - - pos: -16.5,-56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15528 - type: GasPipeStraight - components: - - pos: -16.5,-57.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15529 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -21.5,-56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15530 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15531 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -16.5,-58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15532 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15533 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15534 - type: WallReinforced - components: - - pos: -0.5,-40.5 - parent: 0 - type: Transform -- uid: 15535 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15536 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15537 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15538 - type: GasPipeStraight - components: - - pos: -19.5,-56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15539 - type: GasPipeStraight - components: - - pos: -19.5,-55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15540 - type: GasPipeStraight - components: - - pos: -19.5,-53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15541 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15542 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15543 - type: AirlockMaintMedLocked - components: - - pos: -20.5,-58.5 - parent: 0 - type: Transform -- uid: 15544 - type: AirlockMedicalGlassLocked - components: - - pos: -22.5,-56.5 - parent: 0 - type: Transform -- uid: 15545 - type: AirlockMedicalGlassLocked - components: - - pos: -16.5,-56.5 - parent: 0 - type: Transform -- uid: 15546 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,-53.5 - parent: 0 - type: Transform -- uid: 15547 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -15.5,-53.5 - parent: 0 - type: Transform -- uid: 15548 - type: Table - components: - - pos: -16.5,-53.5 - parent: 0 - type: Transform -- uid: 15549 - type: Rack - components: - - pos: -17.5,-60.5 - parent: 0 - type: Transform -- uid: 15550 - type: Rack - components: - - pos: -17.5,-59.5 - parent: 0 - type: Transform -- uid: 15551 - type: Rack - components: - - pos: -15.5,-60.5 - parent: 0 - type: Transform -- uid: 15552 - type: Rack - components: - - pos: -15.5,-59.5 - parent: 0 - type: Transform -- uid: 15553 - type: Rack - components: - - pos: -15.5,-58.5 - parent: 0 - type: Transform -- uid: 15554 - type: Table - components: - - pos: -15.5,-57.5 - parent: 0 - type: Transform -- uid: 15555 - type: LockerMedicineFilled - components: - - pos: -17.5,-57.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15556 - type: LockerMedicalFilled - components: - - pos: -17.5,-58.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15557 - type: PowerCellRecharger - components: - - pos: -15.5,-57.5 - parent: 0 - type: Transform -- uid: 15558 - type: PowerCellMediumPrinted - components: - - pos: -15.352961,-57.3929 - parent: 0 - type: Transform -- uid: 15559 - type: MedkitBurnFilled - components: - - pos: -17.524836,-59.564774 - parent: 0 - type: Transform -- uid: 15560 - type: MedkitRadiationFilled - components: - - pos: -17.399836,-59.4554 - parent: 0 - type: Transform -- uid: 15561 - type: MedkitToxinFilled - components: - - pos: -15.540461,-59.533524 - parent: 0 - type: Transform -- uid: 15562 - type: MedkitBruteFilled - components: - - pos: -15.431086,-59.4554 - parent: 0 - type: Transform -- uid: 15563 - type: MedkitFilled - components: - - pos: -15.524836,-60.533524 - parent: 0 - type: Transform -- uid: 15564 - type: MedkitOxygenFilled - components: - - pos: -15.384211,-60.408524 - parent: 0 - type: Transform -- uid: 15565 - type: EmergencyOxygenTankFilled - components: - - pos: -17.618586,-60.596024 - parent: 0 - type: Transform -- uid: 15566 - type: EmergencyOxygenTankFilled - components: - - pos: -17.649836,-60.3304 - parent: 0 - type: Transform -- uid: 15567 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: -17.32171,-60.596024 - parent: 0 - type: Transform -- uid: 15568 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: -17.337336,-60.36165 - parent: 0 - type: Transform -- uid: 15569 - type: NitrogenTankFilled - components: - - pos: -15.587336,-58.471024 - parent: 0 - type: Transform -- uid: 15570 - type: NitrogenTankFilled - components: - - pos: -15.399836,-58.48665 - parent: 0 - type: Transform -- uid: 15571 - type: NitrousOxideTankFilled - components: - - pos: -15.215536,-58.521538 - parent: 0 - type: Transform -- uid: 15572 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: -23.5,-54.5 - parent: 0 - type: Transform -- uid: 15573 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -24.5,-54.5 - parent: 0 - type: Transform -- uid: 15574 - type: Table - components: - - pos: -25.5,-58.5 - parent: 0 - type: Transform -- uid: 15575 - type: Table - components: - - pos: -24.5,-58.5 - parent: 0 - type: Transform -- uid: 15576 - type: Table - components: - - pos: -26.5,-55.5 - parent: 0 - type: Transform -- uid: 15577 - type: Table - components: - - pos: -27.5,-55.5 - parent: 0 - type: Transform -- uid: 15578 - type: ComfyChair - components: - - pos: -27.5,-54.5 - parent: 0 - type: Transform -- uid: 15579 - type: ComfyChair - components: - - pos: -26.5,-54.5 - parent: 0 - type: Transform -- uid: 15580 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -26.5,-56.5 - parent: 0 - type: Transform -- uid: 15581 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -27.5,-56.5 - parent: 0 - type: Transform -- uid: 15582 - type: Stool - components: - - pos: -24.5,-57.5 - parent: 0 - type: Transform -- uid: 15583 - type: ComputerCrewMonitoring - components: - - rot: 3.141592653589793 rad - pos: -23.5,-58.5 - parent: 0 - type: Transform -- uid: 15584 - type: CheapRollerBed - components: - - pos: -33.53067,-54.422638 - parent: 0 - type: Transform -- uid: 15585 - type: Rack - components: - - pos: -30.5,-54.5 - parent: 0 - type: Transform -- uid: 15586 - type: Rack - components: - - pos: -31.5,-54.5 - parent: 0 - type: Transform -- uid: 15587 - type: Rack - components: - - pos: -33.5,-57.5 - parent: 0 - type: Transform -- uid: 15588 - type: TableReinforced - components: - - pos: -34.5,-57.5 - parent: 0 - type: Transform -- uid: 15589 - type: TableReinforced - components: - - pos: -35.5,-57.5 - parent: 0 - type: Transform -- uid: 15590 - type: ChairOfficeLight - components: - - pos: -34.5,-56.5 - parent: 0 - type: Transform -- uid: 15591 - type: CrateMedical - components: - - pos: -32.5,-54.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 15592 - type: NitrousOxideTankFilled - components: - - pos: -31.515045,-54.516388 - parent: 0 - type: Transform -- uid: 15593 - type: WeedSpray - components: - - pos: -31.733795,-54.282013 - parent: 0 - type: Transform -- uid: 15594 - type: PartRodMetal - components: - - pos: -31.515045,-57.516388 - parent: 0 - type: Transform -- uid: 15595 - type: ClosetMaintenanceFilledRandom - components: - - pos: -32.5,-57.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15596 - type: Matchbox - components: - - pos: -35.40567,-57.407013 - parent: 0 - type: Transform -- uid: 15597 - type: ClothingHandsGlovesNitrile - components: - - pos: -34.53067,-57.469513 - parent: 0 - type: Transform -- uid: 15598 - type: ClothingHandsGlovesNitrile - components: - - pos: -26.519468,-33.432796 - parent: 0 - type: Transform -- uid: 15599 - type: PlushieLizard - components: - - pos: -33.40767,-57.376446 - parent: 0 - type: Transform -- uid: 15600 - type: Chair - components: - - pos: -29.5,-54.5 - parent: 0 - type: Transform -- uid: 15601 - type: Chair - components: - - pos: -34.5,-54.5 - parent: 0 - type: Transform -- uid: 15602 - type: Chair - components: - - pos: -35.5,-54.5 - parent: 0 - type: Transform -- uid: 15603 - type: RandomSpawner - components: - - pos: -30.5,-56.5 - parent: 0 - type: Transform -- uid: 15604 - type: RandomSpawner - components: - - pos: -35.5,-55.5 - parent: 0 - type: Transform -- uid: 15605 - type: SignSecureMed - components: - - pos: -28.5,-58.5 - parent: 0 - type: Transform -- uid: 15606 - type: WaterTankFull - components: - - pos: -29.5,-59.5 - parent: 0 - type: Transform -- uid: 15607 - type: ClosetFireFilled - components: - - pos: -19.5,-59.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15608 - type: RandomSpawner - components: - - pos: -19.5,-60.5 - parent: 0 - type: Transform -- uid: 15609 - type: PoweredSmallLight - components: - - pos: -21.5,-59.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15610 - type: PoweredSmallLight - components: - - pos: -11.5,-46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15611 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15612 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15613 - type: PoweredSmallLight - components: - - pos: -16.5,-46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15614 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15615 - type: AirlockGlass - components: - - pos: -15.5,-21.5 - parent: 0 - type: Transform -- uid: 15616 - type: SpawnPointChiefMedicalOfficer - components: - - pos: -14.5,-35.5 - parent: 0 - type: Transform -- uid: 15617 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15618 - type: Poweredlight - components: - - pos: -8.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15619 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15620 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15621 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15622 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-35.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15623 - type: ReinforcedWindow - components: - - pos: -17.5,-26.5 - parent: 0 - type: Transform -- uid: 15624 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15625 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15626 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15627 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -23.5,-37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15628 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15629 - type: Poweredlight - components: - - pos: -25.5,-29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15630 - type: Poweredlight - components: - - pos: -29.5,-29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15631 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15632 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15633 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15634 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15635 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15636 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15637 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15638 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15639 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-44.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15640 - type: Poweredlight - components: - - pos: -17.5,-40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15641 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15642 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15643 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15644 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -27.5,-52.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15645 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-52.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15646 - type: Poweredlight - components: - - pos: -26.5,-45.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15647 - type: Poweredlight - components: - - pos: -32.5,-45.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15648 - type: Poweredlight - components: - - pos: -26.5,-54.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15649 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -24.5,-58.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15650 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-57.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15651 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-60.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15652 - type: Poweredlight - components: - - pos: -16.5,-53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15653 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-49.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15654 - type: AirlockMaintLocked - components: - - pos: -24.5,-20.5 - parent: 0 - type: Transform -- uid: 15655 - type: SignalButton - components: - - pos: -21.5,-22.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 14414 - type: SignalTransmitter -- uid: 15656 - type: SpawnVehicleATV - components: - - pos: -22.5,-22.5 - parent: 0 - type: Transform -- uid: 15657 - type: TableGlass - components: - - pos: -23.5,-26.5 - parent: 0 - type: Transform -- uid: 15658 - type: TableGlass - components: - - pos: -23.5,-27.5 - parent: 0 - type: Transform -- uid: 15659 - type: TableGlass - components: - - pos: -21.5,-27.5 - parent: 0 - type: Transform -- uid: 15660 - type: TableGlass - components: - - pos: -22.5,-27.5 - parent: 0 - type: Transform -- uid: 15661 - type: Table - components: - - pos: -23.5,-24.5 - parent: 0 - type: Transform -- uid: 15662 - type: ComputerCrewMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-25.5 - parent: 0 - type: Transform -- uid: 15663 - type: HandheldCrewMonitor - components: - - pos: -23.590824,-24.432009 - parent: 0 - type: Transform -- uid: 15664 - type: LockerMedicineFilled - components: - - pos: -23.5,-22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15665 - type: VehicleKeyATV - components: - - pos: -23.240427,-24.422453 - parent: 0 - type: Transform -- uid: 15666 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-26.5 - parent: 0 - type: Transform -- uid: 15667 - type: Bed - components: - - pos: -13.5,-43.5 - parent: 0 - type: Transform -- uid: 15668 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -15.5,-26.5 - parent: 0 - type: Transform -- uid: 15669 - type: RollerBed - components: - - pos: -17.516401,-53.384216 - parent: 0 - type: Transform -- uid: 15670 - type: ClothingOuterWinterPara - components: - - pos: -23.490427,-24.290588 - parent: 0 - type: Transform -- uid: 15671 - type: Pen - components: - - pos: -23.188292,-26.942913 - parent: 0 - type: Transform -- uid: 15672 - type: BoxFolderWhite - components: - - pos: -23.427849,-26.482494 - parent: 0 - type: Transform -- uid: 15673 - type: Grille - components: - - pos: -17.5,-25.5 - parent: 0 - type: Transform -- uid: 15674 - type: BoxFolderWhite - components: - - pos: -16.847462,-51.492405 - parent: 0 - type: Transform -- uid: 15675 - type: ClothingMaskBreathMedical - components: - - pos: -15.627907,-57.300232 - parent: 0 - type: Transform -- uid: 15676 - type: ClothingMaskBreathMedical - components: - - pos: -15.612282,-57.472107 - parent: 0 - type: Transform -- uid: 15677 - type: SprayBottleSpaceCleaner - components: - - pos: -16.471657,-53.440857 - parent: 0 - type: Transform -- uid: 15678 - type: PottedPlant18 - components: - - pos: -36.5,-45.5 - parent: 0 - type: Transform -- uid: 15679 - type: ClosetEmergencyFilledRandom - components: - - pos: -18.5,-53.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15680 - type: PottedPlantRandom - components: - - pos: -14.5,-55.5 - parent: 0 - type: Transform -- uid: 15681 - type: PottedPlantRandom - components: - - pos: -21.5,-57.5 - parent: 0 - type: Transform -- uid: 15682 - type: PottedPlantRandom - components: - - pos: -22.5,-43.5 - parent: 0 - type: Transform -- uid: 15683 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-42.5 - parent: 0 - type: Transform -- uid: 15684 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-41.5 - parent: 0 - type: Transform -- uid: 15685 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15686 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-36.5 - parent: 0 - type: Transform -- uid: 15687 - type: APCBasic - components: - - pos: -24.5,-28.5 - parent: 0 - type: Transform -- uid: 15688 - type: APCBasic - components: - - pos: -22.5,-38.5 - parent: 0 - type: Transform -- uid: 15689 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: -13.5,-32.5 - parent: 0 - type: Transform -- uid: 15690 - type: APCBasic - components: - - pos: -7.5,-36.5 - parent: 0 - type: Transform -- uid: 15691 - type: APCBasic - components: - - pos: -8.5,-45.5 - parent: 0 - type: Transform -- uid: 15692 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-47.5 - parent: 0 - type: Transform -- uid: 15693 - type: WallReinforced - components: - - pos: -34.5,-43.5 - parent: 0 - type: Transform -- uid: 15694 - type: WallReinforced - components: - - pos: -34.5,-42.5 - parent: 0 - type: Transform -- uid: 15695 - type: WallReinforced - components: - - pos: -34.5,-41.5 - parent: 0 - type: Transform -- uid: 15696 - type: WallReinforced - components: - - pos: -34.5,-40.5 - parent: 0 - type: Transform -- uid: 15697 - type: WallReinforced - components: - - pos: -35.5,-40.5 - parent: 0 - type: Transform -- uid: 15698 - type: AirlockEngineeringLocked - components: - - pos: -36.5,-40.5 - parent: 0 - type: Transform -- uid: 15699 - type: WallReinforced - components: - - pos: -37.5,-40.5 - parent: 0 - type: Transform -- uid: 15700 - type: WallReinforced - components: - - pos: -38.5,-40.5 - parent: 0 - type: Transform -- uid: 15701 - type: WallReinforced - components: - - pos: -38.5,-43.5 - parent: 0 - type: Transform -- uid: 15702 - type: WallReinforced - components: - - pos: -38.5,-42.5 - parent: 0 - type: Transform -- uid: 15703 - type: WallReinforced - components: - - pos: -38.5,-41.5 - parent: 0 - type: Transform -- uid: 15704 - type: SignElectricalMed - components: - - pos: -37.5,-40.5 - parent: 0 - type: Transform -- uid: 15705 - type: SubstationBasic - components: - - name: West Med Substation - type: MetaData - - pos: -36.5,-43.5 - parent: 0 - type: Transform -- uid: 15706 - type: CableMV - components: - - pos: -36.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15707 - type: CableMV - components: - - pos: -36.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15708 - type: CableMV - components: - - pos: -36.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15709 - type: CableMV - components: - - pos: -36.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15710 - type: CableMV - components: - - pos: -36.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15711 - type: CableMV - components: - - pos: -35.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15712 - type: CableMV - components: - - pos: -34.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15713 - type: CableMV - components: - - pos: -33.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15714 - type: CableMV - components: - - pos: -33.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15715 - type: CableMV - components: - - pos: -33.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15716 - type: CableMV - components: - - pos: -33.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15717 - type: CableMV - components: - - pos: -33.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15718 - type: CableMV - components: - - pos: -33.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15719 - type: CableMV - components: - - pos: -33.5,-45.5 - parent: 0 - type: Transform -- uid: 15720 - type: CableMV - components: - - pos: -33.5,-46.5 - parent: 0 - type: Transform -- uid: 15721 - type: CableMV - components: - - pos: -33.5,-47.5 - parent: 0 - type: Transform -- uid: 15722 - type: CableMV - components: - - pos: -34.5,-47.5 - parent: 0 - type: Transform -- uid: 15723 - type: CableMV - components: - - pos: -35.5,-47.5 - parent: 0 - type: Transform -- uid: 15724 - type: CableMV - components: - - pos: -36.5,-47.5 - parent: 0 - type: Transform -- uid: 15725 - type: CableMV - components: - - pos: -37.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15726 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-54.5 - parent: 0 - type: Transform -- uid: 15727 - type: CableMV - components: - - pos: -22.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15728 - type: CableMV - components: - - pos: -21.5,-54.5 - parent: 0 - type: Transform -- uid: 15729 - type: CableMV - components: - - pos: -21.5,-53.5 - parent: 0 - type: Transform -- uid: 15730 - type: CableMV - components: - - pos: -21.5,-52.5 - parent: 0 - type: Transform -- uid: 15731 - type: CableMV - components: - - pos: -21.5,-51.5 - parent: 0 - type: Transform -- uid: 15732 - type: CableMV - components: - - pos: -21.5,-50.5 - parent: 0 - type: Transform -- uid: 15733 - type: CableMV - components: - - pos: -21.5,-49.5 - parent: 0 - type: Transform -- uid: 15734 - type: CableMV - components: - - pos: -21.5,-48.5 - parent: 0 - type: Transform -- uid: 15735 - type: CableMV - components: - - pos: -21.5,-47.5 - parent: 0 - type: Transform -- uid: 15736 - type: CableMV - components: - - pos: -21.5,-46.5 - parent: 0 - type: Transform -- uid: 15737 - type: CableMV - components: - - pos: -22.5,-46.5 - parent: 0 - type: Transform -- uid: 15738 - type: CableMV - components: - - pos: -23.5,-46.5 - parent: 0 - type: Transform -- uid: 15739 - type: CableMV - components: - - pos: -24.5,-46.5 - parent: 0 - type: Transform -- uid: 15740 - type: CableMV - components: - - pos: -25.5,-46.5 - parent: 0 - type: Transform -- uid: 15741 - type: CableMV - components: - - pos: -26.5,-46.5 - parent: 0 - type: Transform -- uid: 15742 - type: CableMV - components: - - pos: -27.5,-46.5 - parent: 0 - type: Transform -- uid: 15743 - type: CableMV - components: - - pos: -28.5,-46.5 - parent: 0 - type: Transform -- uid: 15744 - type: CableMV - components: - - pos: -29.5,-46.5 - parent: 0 - type: Transform -- uid: 15745 - type: CableMV - components: - - pos: -30.5,-46.5 - parent: 0 - type: Transform -- uid: 15746 - type: CableMV - components: - - pos: -31.5,-46.5 - parent: 0 - type: Transform -- uid: 15747 - type: CableMV - components: - - pos: -32.5,-46.5 - parent: 0 - type: Transform -- uid: 15748 - type: CableMV - components: - - pos: -21.5,-45.5 - parent: 0 - type: Transform -- uid: 15749 - type: CableMV - components: - - pos: -21.5,-44.5 - parent: 0 - type: Transform -- uid: 15750 - type: CableMV - components: - - pos: -21.5,-43.5 - parent: 0 - type: Transform -- uid: 15751 - type: CableMV - components: - - pos: -21.5,-42.5 - parent: 0 - type: Transform -- uid: 15752 - type: CableMV - components: - - pos: -21.5,-41.5 - parent: 0 - type: Transform -- uid: 15753 - type: CableMV - components: - - pos: -21.5,-40.5 - parent: 0 - type: Transform -- uid: 15754 - type: CableMV - components: - - pos: -21.5,-39.5 - parent: 0 - type: Transform -- uid: 15755 - type: CableMV - components: - - pos: -22.5,-39.5 - parent: 0 - type: Transform -- uid: 15756 - type: CableMV - components: - - pos: -22.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15757 - type: CableApcExtension - components: - - pos: -37.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15758 - type: CableApcExtension - components: - - pos: -38.5,-47.5 - parent: 0 - type: Transform -- uid: 15759 - type: CableApcExtension - components: - - pos: -38.5,-46.5 - parent: 0 - type: Transform -- uid: 15760 - type: CableApcExtension - components: - - pos: -39.5,-46.5 - parent: 0 - type: Transform -- uid: 15761 - type: CableApcExtension - components: - - pos: -36.5,-47.5 - parent: 0 - type: Transform -- uid: 15762 - type: CableApcExtension - components: - - pos: -35.5,-47.5 - parent: 0 - type: Transform -- uid: 15763 - type: CableApcExtension - components: - - pos: -35.5,-46.5 - parent: 0 - type: Transform -- uid: 15764 - type: CableApcExtension - components: - - pos: -34.5,-46.5 - parent: 0 - type: Transform -- uid: 15765 - type: CableApcExtension - components: - - pos: -33.5,-46.5 - parent: 0 - type: Transform -- uid: 15766 - type: CableApcExtension - components: - - pos: -32.5,-46.5 - parent: 0 - type: Transform -- uid: 15767 - type: CableApcExtension - components: - - pos: -31.5,-46.5 - parent: 0 - type: Transform -- uid: 15768 - type: CableApcExtension - components: - - pos: -30.5,-46.5 - parent: 0 - type: Transform -- uid: 15769 - type: CableApcExtension - components: - - pos: -29.5,-46.5 - parent: 0 - type: Transform -- uid: 15770 - type: CableApcExtension - components: - - pos: -28.5,-46.5 - parent: 0 - type: Transform -- uid: 15771 - type: CableApcExtension - components: - - pos: -27.5,-46.5 - parent: 0 - type: Transform -- uid: 15772 - type: CableApcExtension - components: - - pos: -26.5,-46.5 - parent: 0 - type: Transform -- uid: 15773 - type: CableApcExtension - components: - - pos: -25.5,-46.5 - parent: 0 - type: Transform -- uid: 15774 - type: CableApcExtension - components: - - pos: -24.5,-46.5 - parent: 0 - type: Transform -- uid: 15775 - type: CableApcExtension - components: - - pos: -31.5,-47.5 - parent: 0 - type: Transform -- uid: 15776 - type: CableApcExtension - components: - - pos: -31.5,-48.5 - parent: 0 - type: Transform -- uid: 15777 - type: CableApcExtension - components: - - pos: -31.5,-49.5 - parent: 0 - type: Transform -- uid: 15778 - type: CableApcExtension - components: - - pos: -31.5,-50.5 - parent: 0 - type: Transform -- uid: 15779 - type: CableApcExtension - components: - - pos: -31.5,-51.5 - parent: 0 - type: Transform -- uid: 15780 - type: CableApcExtension - components: - - pos: -32.5,-51.5 - parent: 0 - type: Transform -- uid: 15781 - type: CableApcExtension - components: - - pos: -33.5,-51.5 - parent: 0 - type: Transform -- uid: 15782 - type: CableApcExtension - components: - - pos: -34.5,-51.5 - parent: 0 - type: Transform -- uid: 15783 - type: CableApcExtension - components: - - pos: -27.5,-47.5 - parent: 0 - type: Transform -- uid: 15784 - type: CableApcExtension - components: - - pos: -27.5,-48.5 - parent: 0 - type: Transform -- uid: 15785 - type: CableApcExtension - components: - - pos: -27.5,-49.5 - parent: 0 - type: Transform -- uid: 15786 - type: CableApcExtension - components: - - pos: -27.5,-50.5 - parent: 0 - type: Transform -- uid: 15787 - type: CableApcExtension - components: - - pos: -27.5,-51.5 - parent: 0 - type: Transform -- uid: 15788 - type: CableApcExtension - components: - - pos: -26.5,-51.5 - parent: 0 - type: Transform -- uid: 15789 - type: CableApcExtension - components: - - pos: -25.5,-51.5 - parent: 0 - type: Transform -- uid: 15790 - type: CableApcExtension - components: - - pos: -24.5,-51.5 - parent: 0 - type: Transform -- uid: 15791 - type: CableApcExtension - components: - - pos: -33.5,-45.5 - parent: 0 - type: Transform -- uid: 15792 - type: CableApcExtension - components: - - pos: -33.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15793 - type: CableApcExtension - components: - - pos: -33.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15794 - type: CableApcExtension - components: - - pos: -33.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15795 - type: CableApcExtension - components: - - pos: -33.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15796 - type: CableApcExtension - components: - - pos: -33.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15797 - type: CableApcExtension - components: - - pos: -33.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15798 - type: CableApcExtension - components: - - pos: -34.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15799 - type: CableApcExtension - components: - - pos: -35.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15800 - type: CableApcExtension - components: - - pos: -36.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15801 - type: CableApcExtension - components: - - pos: -36.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15802 - type: CableApcExtension - components: - - pos: -36.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15803 - type: CableApcExtension - components: - - pos: -36.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15804 - type: CableApcExtension - components: - - pos: -22.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15805 - type: CableApcExtension - components: - - pos: -22.5,-39.5 - parent: 0 - type: Transform -- uid: 15806 - type: CableApcExtension - components: - - pos: -22.5,-40.5 - parent: 0 - type: Transform -- uid: 15807 - type: CableApcExtension - components: - - pos: -23.5,-40.5 - parent: 0 - type: Transform -- uid: 15808 - type: CableApcExtension - components: - - pos: -24.5,-40.5 - parent: 0 - type: Transform -- uid: 15809 - type: CableApcExtension - components: - - pos: -25.5,-40.5 - parent: 0 - type: Transform -- uid: 15810 - type: CableApcExtension - components: - - pos: -26.5,-40.5 - parent: 0 - type: Transform -- uid: 15811 - type: CableApcExtension - components: - - pos: -27.5,-40.5 - parent: 0 - type: Transform -- uid: 15812 - type: CableApcExtension - components: - - pos: -28.5,-40.5 - parent: 0 - type: Transform -- uid: 15813 - type: CableApcExtension - components: - - pos: -29.5,-40.5 - parent: 0 - type: Transform -- uid: 15814 - type: CableApcExtension - components: - - pos: -30.5,-40.5 - parent: 0 - type: Transform -- uid: 15815 - type: CableApcExtension - components: - - pos: -31.5,-40.5 - parent: 0 - type: Transform -- uid: 15816 - type: CableApcExtension - components: - - pos: -31.5,-41.5 - parent: 0 - type: Transform -- uid: 15817 - type: CableApcExtension - components: - - pos: -31.5,-42.5 - parent: 0 - type: Transform -- uid: 15818 - type: CableApcExtension - components: - - pos: -28.5,-41.5 - parent: 0 - type: Transform -- uid: 15819 - type: CableApcExtension - components: - - pos: -25.5,-41.5 - parent: 0 - type: Transform -- uid: 15820 - type: CableApcExtension - components: - - pos: -28.5,-39.5 - parent: 0 - type: Transform -- uid: 15821 - type: CableApcExtension - components: - - pos: -21.5,-40.5 - parent: 0 - type: Transform -- uid: 15822 - type: CableApcExtension - components: - - pos: -20.5,-40.5 - parent: 0 - type: Transform -- uid: 15823 - type: CableApcExtension - components: - - pos: -20.5,-41.5 - parent: 0 - type: Transform -- uid: 15824 - type: CableApcExtension - components: - - pos: -20.5,-42.5 - parent: 0 - type: Transform -- uid: 15825 - type: CableApcExtension - components: - - pos: -20.5,-43.5 - parent: 0 - type: Transform -- uid: 15826 - type: CableApcExtension - components: - - pos: -20.5,-44.5 - parent: 0 - type: Transform -- uid: 15827 - type: CableApcExtension - components: - - pos: -20.5,-45.5 - parent: 0 - type: Transform -- uid: 15828 - type: CableApcExtension - components: - - pos: -20.5,-46.5 - parent: 0 - type: Transform -- uid: 15829 - type: CableApcExtension - components: - - pos: -20.5,-47.5 - parent: 0 - type: Transform -- uid: 15830 - type: CableApcExtension - components: - - pos: -20.5,-48.5 - parent: 0 - type: Transform -- uid: 15831 - type: CableApcExtension - components: - - pos: -20.5,-49.5 - parent: 0 - type: Transform -- uid: 15832 - type: CableApcExtension - components: - - pos: -20.5,-50.5 - parent: 0 - type: Transform -- uid: 15833 - type: CableApcExtension - components: - - pos: -19.5,-41.5 - parent: 0 - type: Transform -- uid: 15834 - type: CableApcExtension - components: - - pos: -18.5,-41.5 - parent: 0 - type: Transform -- uid: 15835 - type: CableApcExtension - components: - - pos: -17.5,-41.5 - parent: 0 - type: Transform -- uid: 15836 - type: CableApcExtension - components: - - pos: -16.5,-41.5 - parent: 0 - type: Transform -- uid: 15837 - type: CableApcExtension - components: - - pos: -15.5,-41.5 - parent: 0 - type: Transform -- uid: 15838 - type: CableApcExtension - components: - - pos: -14.5,-41.5 - parent: 0 - type: Transform -- uid: 15839 - type: CableApcExtension - components: - - pos: -14.5,-42.5 - parent: 0 - type: Transform -- uid: 15840 - type: CableApcExtension - components: - - pos: -14.5,-43.5 - parent: 0 - type: Transform -- uid: 15841 - type: CableApcExtension - components: - - pos: -16.5,-42.5 - parent: 0 - type: Transform -- uid: 15842 - type: CableApcExtension - components: - - pos: -16.5,-43.5 - parent: 0 - type: Transform -- uid: 15843 - type: CableApcExtension - components: - - pos: -8.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15844 - type: CableApcExtension - components: - - pos: -8.5,-46.5 - parent: 0 - type: Transform -- uid: 15845 - type: CableApcExtension - components: - - pos: -8.5,-47.5 - parent: 0 - type: Transform -- uid: 15846 - type: CableApcExtension - components: - - pos: -8.5,-48.5 - parent: 0 - type: Transform -- uid: 15847 - type: CableApcExtension - components: - - pos: -8.5,-49.5 - parent: 0 - type: Transform -- uid: 15848 - type: CableApcExtension - components: - - pos: -8.5,-50.5 - parent: 0 - type: Transform -- uid: 15849 - type: CableApcExtension - components: - - pos: -9.5,-50.5 - parent: 0 - type: Transform -- uid: 15850 - type: CableApcExtension - components: - - pos: -10.5,-50.5 - parent: 0 - type: Transform -- uid: 15851 - type: CableApcExtension - components: - - pos: -11.5,-50.5 - parent: 0 - type: Transform -- uid: 15852 - type: CableApcExtension - components: - - pos: -12.5,-50.5 - parent: 0 - type: Transform -- uid: 15853 - type: CableApcExtension - components: - - pos: -13.5,-50.5 - parent: 0 - type: Transform -- uid: 15854 - type: CableApcExtension - components: - - pos: -14.5,-50.5 - parent: 0 - type: Transform -- uid: 15855 - type: CableApcExtension - components: - - pos: -11.5,-49.5 - parent: 0 - type: Transform -- uid: 15856 - type: CableApcExtension - components: - - pos: -11.5,-48.5 - parent: 0 - type: Transform -- uid: 15857 - type: CableApcExtension - components: - - pos: -14.5,-49.5 - parent: 0 - type: Transform -- uid: 15858 - type: CableApcExtension - components: - - pos: -14.5,-48.5 - parent: 0 - type: Transform -- uid: 15859 - type: CableApcExtension - components: - - pos: -15.5,-49.5 - parent: 0 - type: Transform -- uid: 15860 - type: CableApcExtension - components: - - pos: -16.5,-49.5 - parent: 0 - type: Transform -- uid: 15861 - type: CableApcExtension - components: - - pos: -16.5,-50.5 - parent: 0 - type: Transform -- uid: 15862 - type: CableApcExtension - components: - - pos: -16.5,-48.5 - parent: 0 - type: Transform -- uid: 15863 - type: CableApcExtension - components: - - pos: -16.5,-47.5 - parent: 0 - type: Transform -- uid: 15864 - type: CableApcExtension - components: - - pos: -22.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15865 - type: CableApcExtension - components: - - pos: -21.5,-54.5 - parent: 0 - type: Transform -- uid: 15866 - type: CableApcExtension - components: - - pos: -20.5,-54.5 - parent: 0 - type: Transform -- uid: 15867 - type: CableApcExtension - components: - - pos: -19.5,-54.5 - parent: 0 - type: Transform -- uid: 15868 - type: CableApcExtension - components: - - pos: -18.5,-54.5 - parent: 0 - type: Transform -- uid: 15869 - type: CableApcExtension - components: - - pos: -17.5,-54.5 - parent: 0 - type: Transform -- uid: 15870 - type: CableApcExtension - components: - - pos: -16.5,-54.5 - parent: 0 - type: Transform -- uid: 15871 - type: CableApcExtension - components: - - pos: -15.5,-54.5 - parent: 0 - type: Transform -- uid: 15872 - type: CableApcExtension - components: - - pos: -16.5,-55.5 - parent: 0 - type: Transform -- uid: 15873 - type: CableApcExtension - components: - - pos: -16.5,-56.5 - parent: 0 - type: Transform -- uid: 15874 - type: CableApcExtension - components: - - pos: -16.5,-57.5 - parent: 0 - type: Transform -- uid: 15875 - type: CableApcExtension - components: - - pos: -16.5,-58.5 - parent: 0 - type: Transform -- uid: 15876 - type: CableApcExtension - components: - - pos: -16.5,-59.5 - parent: 0 - type: Transform -- uid: 15877 - type: CableApcExtension - components: - - pos: -20.5,-55.5 - parent: 0 - type: Transform -- uid: 15878 - type: CableApcExtension - components: - - pos: -20.5,-56.5 - parent: 0 - type: Transform -- uid: 15879 - type: CableApcExtension - components: - - pos: -21.5,-56.5 - parent: 0 - type: Transform -- uid: 15880 - type: CableApcExtension - components: - - pos: -22.5,-56.5 - parent: 0 - type: Transform -- uid: 15881 - type: CableApcExtension - components: - - pos: -23.5,-56.5 - parent: 0 - type: Transform -- uid: 15882 - type: CableApcExtension - components: - - pos: -24.5,-56.5 - parent: 0 - type: Transform -- uid: 15883 - type: CableApcExtension - components: - - pos: -25.5,-56.5 - parent: 0 - type: Transform -- uid: 15884 - type: CableApcExtension - components: - - pos: -26.5,-56.5 - parent: 0 - type: Transform -- uid: 15885 - type: CableApcExtension - components: - - pos: -26.5,-57.5 - parent: 0 - type: Transform -- uid: 15886 - type: CableApcExtension - components: - - pos: -27.5,-57.5 - parent: 0 - type: Transform -- uid: 15887 - type: CableApcExtension - components: - - pos: -28.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15888 - type: CableApcExtension - components: - - pos: -29.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15889 - type: CableApcExtension - components: - - pos: -30.5,-57.5 - parent: 0 - type: Transform -- uid: 15890 - type: CableApcExtension - components: - - pos: -31.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15891 - type: CableApcExtension - components: - - pos: -31.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15892 - type: CableApcExtension - components: - - pos: -32.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15893 - type: CableApcExtension - components: - - pos: -33.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15894 - type: CableApcExtension - components: - - pos: -34.5,-56.5 - parent: 0 - type: Transform -- uid: 15895 - type: CableApcExtension - components: - - pos: -31.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15896 - type: CableApcExtension - components: - - pos: -34.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15897 - type: CableApcExtension - components: - - pos: -35.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15898 - type: CableApcExtension - components: - - pos: -36.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15899 - type: CableApcExtension - components: - - pos: -37.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15900 - type: CableApcExtension - components: - - pos: -38.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15901 - type: CableApcExtension - components: - - pos: -20.5,-57.5 - parent: 0 - type: Transform -- uid: 15902 - type: CableApcExtension - components: - - pos: -20.5,-53.5 - parent: 0 - type: Transform -- uid: 15903 - type: WallReinforced - components: - - pos: -31.5,-25.5 - parent: 0 - type: Transform -- uid: 15904 - type: WallReinforced - components: - - pos: -32.5,-25.5 - parent: 0 - type: Transform -- uid: 15905 - type: WallReinforced - components: - - pos: -33.5,-25.5 - parent: 0 - type: Transform -- uid: 15906 - type: WallReinforced - components: - - pos: -34.5,-25.5 - parent: 0 - type: Transform -- uid: 15907 - type: WallReinforced - components: - - pos: -34.5,-26.5 - parent: 0 - type: Transform -- uid: 15908 - type: WallReinforced - components: - - pos: -34.5,-28.5 - parent: 0 - type: Transform -- uid: 15909 - type: AirlockEngineeringLocked - components: - - pos: -34.5,-27.5 - parent: 0 - type: Transform -- uid: 15910 - type: SubstationBasic - components: - - name: North Med Substation - type: MetaData - - pos: -31.5,-27.5 - parent: 0 - type: Transform -- uid: 15911 - type: CableMV - components: - - pos: -31.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15912 - type: CableMV - components: - - pos: -32.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15913 - type: CableMV - components: - - pos: -33.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15914 - type: CableMV - components: - - pos: -34.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15915 - type: CableMV - components: - - pos: -35.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15916 - type: CableMV - components: - - pos: -36.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15917 - type: CableMV - components: - - pos: -37.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15918 - type: CableMV - components: - - pos: -38.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15919 - type: CableMV - components: - - pos: -39.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15920 - type: CableMV - components: - - pos: -39.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15921 - type: CableMV - components: - - pos: -39.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15922 - type: CableMV - components: - - pos: -39.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15923 - type: CableMV - components: - - pos: -39.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15924 - type: CableMV - components: - - pos: -39.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15925 - type: CableMV - components: - - pos: -39.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15926 - type: CableMV - components: - - pos: -39.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15927 - type: CableMV - components: - - pos: -39.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15928 - type: CableMV - components: - - pos: -38.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15929 - type: CableMV - components: - - pos: -37.5,-35.5 - parent: 0 - type: Transform -- uid: 15930 - type: CableMV - components: - - pos: -36.5,-35.5 - parent: 0 - type: Transform -- uid: 15931 - type: CableMV - components: - - pos: -35.5,-35.5 - parent: 0 - type: Transform -- uid: 15932 - type: CableMV - components: - - pos: -34.5,-35.5 - parent: 0 - type: Transform -- uid: 15933 - type: CableMV - components: - - pos: -33.5,-35.5 - parent: 0 - type: Transform -- uid: 15934 - type: CableMV - components: - - pos: -33.5,-34.5 - parent: 0 - type: Transform -- uid: 15935 - type: CableMV - components: - - pos: -32.5,-34.5 - parent: 0 - type: Transform -- uid: 15936 - type: CableMV - components: - - pos: -31.5,-34.5 - parent: 0 - type: Transform -- uid: 15937 - type: CableMV - components: - - pos: -30.5,-34.5 - parent: 0 - type: Transform -- uid: 15938 - type: CableMV - components: - - pos: -29.5,-34.5 - parent: 0 - type: Transform -- uid: 15939 - type: CableMV - components: - - pos: -28.5,-34.5 - parent: 0 - type: Transform -- uid: 15940 - type: CableMV - components: - - pos: -27.5,-34.5 - parent: 0 - type: Transform -- uid: 15941 - type: CableMV - components: - - pos: -26.5,-34.5 - parent: 0 - type: Transform -- uid: 15942 - type: CableMV - components: - - pos: -25.5,-34.5 - parent: 0 - type: Transform -- uid: 15943 - type: CableMV - components: - - pos: -24.5,-34.5 - parent: 0 - type: Transform -- uid: 15944 - type: CableMV - components: - - pos: -24.5,-33.5 - parent: 0 - type: Transform -- uid: 15945 - type: CableMV - components: - - pos: -24.5,-32.5 - parent: 0 - type: Transform -- uid: 15946 - type: CableMV - components: - - pos: -24.5,-31.5 - parent: 0 - type: Transform -- uid: 15947 - type: CableMV - components: - - pos: -24.5,-30.5 - parent: 0 - type: Transform -- uid: 15948 - type: CableMV - components: - - pos: -24.5,-29.5 - parent: 0 - type: Transform -- uid: 15949 - type: CableMV - components: - - pos: -24.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15950 - type: CableMV - components: - - pos: -23.5,-32.5 - parent: 0 - type: Transform -- uid: 15951 - type: CableMV - components: - - pos: -22.5,-32.5 - parent: 0 - type: Transform -- uid: 15952 - type: CableMV - components: - - pos: -21.5,-32.5 - parent: 0 - type: Transform -- uid: 15953 - type: CableMV - components: - - pos: -20.5,-32.5 - parent: 0 - type: Transform -- uid: 15954 - type: CableMV - components: - - pos: -19.5,-32.5 - parent: 0 - type: Transform -- uid: 15955 - type: CableMV - components: - - pos: -19.5,-31.5 - parent: 0 - type: Transform -- uid: 15956 - type: CableMV - components: - - pos: -19.5,-30.5 - parent: 0 - type: Transform -- uid: 15957 - type: CableMV - components: - - pos: -18.5,-30.5 - parent: 0 - type: Transform -- uid: 15958 - type: CableMV - components: - - pos: -17.5,-30.5 - parent: 0 - type: Transform -- uid: 15959 - type: CableMV - components: - - pos: -16.5,-30.5 - parent: 0 - type: Transform -- uid: 15960 - type: CableMV - components: - - pos: -15.5,-30.5 - parent: 0 - type: Transform -- uid: 15961 - type: CableMV - components: - - pos: -14.5,-30.5 - parent: 0 - type: Transform -- uid: 15962 - type: CableMV - components: - - pos: -13.5,-30.5 - parent: 0 - type: Transform -- uid: 15963 - type: CableMV - components: - - pos: -13.5,-31.5 - parent: 0 - type: Transform -- uid: 15964 - type: CableMV - components: - - pos: -13.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15965 - type: WallReinforced - components: - - pos: -7.5,-44.5 - parent: 0 - type: Transform -- uid: 15966 - type: WallReinforced - components: - - pos: -7.5,-43.5 - parent: 0 - type: Transform -- uid: 15967 - type: WallReinforced - components: - - pos: -7.5,-42.5 - parent: 0 - type: Transform -- uid: 15968 - type: WallReinforced - components: - - pos: -12.5,-43.5 - parent: 0 - type: Transform -- uid: 15969 - type: WallReinforced - components: - - pos: -12.5,-45.5 - parent: 0 - type: Transform -- uid: 15970 - type: WallReinforced - components: - - pos: -12.5,-44.5 - parent: 0 - type: Transform -- uid: 15971 - type: WallReinforced - components: - - pos: -9.5,-42.5 - parent: 0 - type: Transform -- uid: 15972 - type: AirlockEngineeringLocked - components: - - pos: -8.5,-42.5 - parent: 0 - type: Transform -- uid: 15973 - type: WallReinforced - components: - - pos: -11.5,-45.5 - parent: 0 - type: Transform -- uid: 15974 - type: CableMV - components: - - pos: -9.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15975 - type: CableMV - components: - - pos: -8.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15976 - type: CableMV - components: - - pos: -8.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15977 - type: CableMV - components: - - pos: -8.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15978 - type: CableMV - components: - - pos: -8.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15979 - type: CableMV - components: - - pos: -8.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15980 - type: CableMV - components: - - pos: -8.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15981 - type: CableMV - components: - - pos: -8.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15982 - type: CableMV - components: - - pos: -8.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15983 - type: CableMV - components: - - pos: -8.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15984 - type: CableMV - components: - - pos: -7.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15985 - type: CableMV - components: - - pos: -7.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15986 - type: APCBasic - components: - - pos: -34.5,-29.5 - parent: 0 - type: Transform -- uid: 15987 - type: CableMV - components: - - pos: -33.5,-33.5 - parent: 0 - type: Transform -- uid: 15988 - type: CableMV - components: - - pos: -33.5,-32.5 - parent: 0 - type: Transform -- uid: 15989 - type: CableMV - components: - - pos: -34.5,-32.5 - parent: 0 - type: Transform -- uid: 15990 - type: CableMV - components: - - pos: -34.5,-31.5 - parent: 0 - type: Transform -- uid: 15991 - type: CableMV - components: - - pos: -34.5,-30.5 - parent: 0 - type: Transform -- uid: 15992 - type: CableMV - components: - - pos: -34.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15993 - type: CableApcExtension - components: - - pos: -24.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15994 - type: CableApcExtension - components: - - pos: -24.5,-29.5 - parent: 0 - type: Transform -- uid: 15995 - type: CableApcExtension - components: - - pos: -24.5,-30.5 - parent: 0 - type: Transform -- uid: 15996 - type: CableApcExtension - components: - - pos: -24.5,-31.5 - parent: 0 - type: Transform -- uid: 15997 - type: CableApcExtension - components: - - pos: -24.5,-32.5 - parent: 0 - type: Transform -- uid: 15998 - type: CableApcExtension - components: - - pos: -24.5,-33.5 - parent: 0 - type: Transform -- uid: 15999 - type: CableApcExtension - components: - - pos: -24.5,-34.5 - parent: 0 - type: Transform -- uid: 16000 - type: CableApcExtension - components: - - pos: -24.5,-35.5 - parent: 0 - type: Transform -- uid: 16001 - type: CableApcExtension - components: - - pos: -24.5,-36.5 - parent: 0 - type: Transform -- uid: 16002 - type: CableApcExtension - components: - - pos: -25.5,-30.5 - parent: 0 - type: Transform -- uid: 16003 - type: CableApcExtension - components: - - pos: -26.5,-30.5 - parent: 0 - type: Transform -- uid: 16004 - type: CableApcExtension - components: - - pos: -27.5,-30.5 - parent: 0 - type: Transform -- uid: 16005 - type: CableApcExtension - components: - - pos: -28.5,-30.5 - parent: 0 - type: Transform -- uid: 16006 - type: CableApcExtension - components: - - pos: -29.5,-30.5 - parent: 0 - type: Transform -- uid: 16007 - type: CableApcExtension - components: - - pos: -30.5,-30.5 - parent: 0 - type: Transform -- uid: 16008 - type: CableApcExtension - components: - - pos: -25.5,-35.5 - parent: 0 - type: Transform -- uid: 16009 - type: CableApcExtension - components: - - pos: -26.5,-35.5 - parent: 0 - type: Transform -- uid: 16010 - type: CableApcExtension - components: - - pos: -27.5,-35.5 - parent: 0 - type: Transform -- uid: 16011 - type: CableApcExtension - components: - - pos: -28.5,-35.5 - parent: 0 - type: Transform -- uid: 16012 - type: CableApcExtension - components: - - pos: -29.5,-35.5 - parent: 0 - type: Transform -- uid: 16013 - type: CableApcExtension - components: - - pos: -30.5,-35.5 - parent: 0 - type: Transform -- uid: 16014 - type: CableApcExtension - components: - - pos: -27.5,-29.5 - parent: 0 - type: Transform -- uid: 16015 - type: CableApcExtension - components: - - pos: -27.5,-28.5 - parent: 0 - type: Transform -- uid: 16016 - type: CableApcExtension - components: - - pos: -27.5,-27.5 - parent: 0 - type: Transform -- uid: 16017 - type: CableApcExtension - components: - - pos: -27.5,-26.5 - parent: 0 - type: Transform -- uid: 16018 - type: GasThermoMachineFreezer - components: - - pos: -29.5,-25.5 - parent: 0 - type: Transform -- uid: 16019 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -27.5,-26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16020 - type: CableApcExtension - components: - - pos: -34.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16021 - type: CableApcExtension - components: - - pos: -34.5,-30.5 - parent: 0 - type: Transform -- uid: 16022 - type: CableApcExtension - components: - - pos: -34.5,-31.5 - parent: 0 - type: Transform -- uid: 16023 - type: CableApcExtension - components: - - pos: -34.5,-32.5 - parent: 0 - type: Transform -- uid: 16024 - type: CableApcExtension - components: - - pos: -34.5,-33.5 - parent: 0 - type: Transform -- uid: 16025 - type: CableApcExtension - components: - - pos: -34.5,-34.5 - parent: 0 - type: Transform -- uid: 16026 - type: CableApcExtension - components: - - pos: -34.5,-35.5 - parent: 0 - type: Transform -- uid: 16027 - type: CableApcExtension - components: - - pos: -35.5,-35.5 - parent: 0 - type: Transform -- uid: 16028 - type: CableApcExtension - components: - - pos: -36.5,-35.5 - parent: 0 - type: Transform -- uid: 16029 - type: CableApcExtension - components: - - pos: -37.5,-35.5 - parent: 0 - type: Transform -- uid: 16030 - type: CableApcExtension - components: - - pos: -38.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16031 - type: CableApcExtension - components: - - pos: -39.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16032 - type: CableApcExtension - components: - - pos: -39.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16033 - type: CableApcExtension - components: - - pos: -39.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16034 - type: CableApcExtension - components: - - pos: -39.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16035 - type: CableApcExtension - components: - - pos: -39.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16036 - type: CableApcExtension - components: - - pos: -39.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16037 - type: CableApcExtension - components: - - pos: -39.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16038 - type: CableApcExtension - components: - - pos: -39.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16039 - type: CableApcExtension - components: - - pos: -39.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16040 - type: CableApcExtension - components: - - pos: -38.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16041 - type: CableApcExtension - components: - - pos: -37.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16042 - type: CableApcExtension - components: - - pos: -36.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16043 - type: CableApcExtension - components: - - pos: -35.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16044 - type: CableApcExtension - components: - - pos: -34.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16045 - type: CableApcExtension - components: - - pos: -33.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16046 - type: CableApcExtension - components: - - pos: -35.5,-31.5 - parent: 0 - type: Transform -- uid: 16047 - type: CableApcExtension - components: - - pos: -36.5,-31.5 - parent: 0 - type: Transform -- uid: 16048 - type: CableApcExtension - components: - - pos: -30.5,-33.5 - parent: 0 - type: Transform -- uid: 16049 - type: CableApcExtension - components: - - pos: -30.5,-34.5 - parent: 0 - type: Transform -- uid: 16050 - type: CableApcExtension - components: - - pos: -30.5,-36.5 - parent: 0 - type: Transform -- uid: 16051 - type: CableApcExtension - components: - - pos: -13.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16052 - type: CableApcExtension - components: - - pos: -13.5,-33.5 - parent: 0 - type: Transform -- uid: 16053 - type: CableApcExtension - components: - - pos: -13.5,-34.5 - parent: 0 - type: Transform -- uid: 16054 - type: CableApcExtension - components: - - pos: -13.5,-35.5 - parent: 0 - type: Transform -- uid: 16055 - type: CableApcExtension - components: - - pos: -13.5,-36.5 - parent: 0 - type: Transform -- uid: 16056 - type: CableApcExtension - components: - - pos: -13.5,-37.5 - parent: 0 - type: Transform -- uid: 16057 - type: CableApcExtension - components: - - pos: -14.5,-36.5 - parent: 0 - type: Transform -- uid: 16058 - type: CableApcExtension - components: - - pos: -15.5,-36.5 - parent: 0 - type: Transform -- uid: 16059 - type: CableApcExtension - components: - - pos: -16.5,-36.5 - parent: 0 - type: Transform -- uid: 16060 - type: CableApcExtension - components: - - pos: -17.5,-36.5 - parent: 0 - type: Transform -- uid: 16061 - type: CableApcExtension - components: - - pos: -14.5,-34.5 - parent: 0 - type: Transform -- uid: 16062 - type: CableApcExtension - components: - - pos: -15.5,-34.5 - parent: 0 - type: Transform -- uid: 16063 - type: CableApcExtension - components: - - pos: -16.5,-34.5 - parent: 0 - type: Transform -- uid: 16064 - type: CableApcExtension - components: - - pos: -17.5,-34.5 - parent: 0 - type: Transform -- uid: 16065 - type: CableApcExtension - components: - - pos: -18.5,-34.5 - parent: 0 - type: Transform -- uid: 16066 - type: CableApcExtension - components: - - pos: -19.5,-34.5 - parent: 0 - type: Transform -- uid: 16067 - type: CableApcExtension - components: - - pos: -20.5,-34.5 - parent: 0 - type: Transform -- uid: 16068 - type: CableApcExtension - components: - - pos: -20.5,-35.5 - parent: 0 - type: Transform -- uid: 16069 - type: CableApcExtension - components: - - pos: -20.5,-37.5 - parent: 0 - type: Transform -- uid: 16070 - type: CableApcExtension - components: - - pos: -20.5,-36.5 - parent: 0 - type: Transform -- uid: 16071 - type: CableApcExtension - components: - - pos: -20.5,-33.5 - parent: 0 - type: Transform -- uid: 16072 - type: CableApcExtension - components: - - pos: -20.5,-32.5 - parent: 0 - type: Transform -- uid: 16073 - type: CableApcExtension - components: - - pos: -20.5,-31.5 - parent: 0 - type: Transform -- uid: 16074 - type: CableApcExtension - components: - - pos: -20.5,-30.5 - parent: 0 - type: Transform -- uid: 16075 - type: CableApcExtension - components: - - pos: -20.5,-29.5 - parent: 0 - type: Transform -- uid: 16076 - type: CableApcExtension - components: - - pos: -20.5,-28.5 - parent: 0 - type: Transform -- uid: 16077 - type: CableApcExtension - components: - - pos: -20.5,-27.5 - parent: 0 - type: Transform -- uid: 16078 - type: CableApcExtension - components: - - pos: -20.5,-26.5 - parent: 0 - type: Transform -- uid: 16079 - type: CableApcExtension - components: - - pos: -20.5,-25.5 - parent: 0 - type: Transform -- uid: 16080 - type: CableApcExtension - components: - - pos: -20.5,-24.5 - parent: 0 - type: Transform -- uid: 16081 - type: CableApcExtension - components: - - pos: -20.5,-23.5 - parent: 0 - type: Transform -- uid: 16082 - type: CableApcExtension - components: - - pos: -21.5,-25.5 - parent: 0 - type: Transform -- uid: 16083 - type: CableApcExtension - components: - - pos: -22.5,-25.5 - parent: 0 - type: Transform -- uid: 16084 - type: CableApcExtension - components: - - pos: -19.5,-24.5 - parent: 0 - type: Transform -- uid: 16085 - type: CableApcExtension - components: - - pos: -21.5,-23.5 - parent: 0 - type: Transform -- uid: 16086 - type: CableApcExtension - components: - - pos: -22.5,-23.5 - parent: 0 - type: Transform -- uid: 16087 - type: CableApcExtension - components: - - pos: -22.5,-22.5 - parent: 0 - type: Transform -- uid: 16088 - type: CableApcExtension - components: - - pos: -16.5,-19.5 - parent: 0 - type: Transform -- uid: 16089 - type: CableApcExtension - components: - - pos: -17.5,-19.5 - parent: 0 - type: Transform -- uid: 16090 - type: CableApcExtension - components: - - pos: -18.5,-19.5 - parent: 0 - type: Transform -- uid: 16091 - type: CableApcExtension - components: - - pos: -19.5,-19.5 - parent: 0 - type: Transform -- uid: 16092 - type: CableApcExtension - components: - - pos: -20.5,-19.5 - parent: 0 - type: Transform -- uid: 16093 - type: CableApcExtension - components: - - pos: -21.5,-19.5 - parent: 0 - type: Transform -- uid: 16094 - type: CableApcExtension - components: - - pos: -21.5,-18.5 - parent: 0 - type: Transform -- uid: 16095 - type: CableApcExtension - components: - - pos: -21.5,-17.5 - parent: 0 - type: Transform -- uid: 16096 - type: CableApcExtension - components: - - pos: -21.5,-16.5 - parent: 0 - type: Transform -- uid: 16097 - type: CableApcExtension - components: - - pos: -21.5,-15.5 - parent: 0 - type: Transform -- uid: 16098 - type: CableApcExtension - components: - - pos: -21.5,-14.5 - parent: 0 - type: Transform -- uid: 16099 - type: CableApcExtension - components: - - pos: -21.5,-13.5 - parent: 0 - type: Transform -- uid: 16100 - type: CableApcExtension - components: - - pos: -21.5,-12.5 - parent: 0 - type: Transform -- uid: 16101 - type: CableApcExtension - components: - - pos: -21.5,-11.5 - parent: 0 - type: Transform -- uid: 16102 - type: CableApcExtension - components: - - pos: -21.5,-10.5 - parent: 0 - type: Transform -- uid: 16103 - type: CableApcExtension - components: - - pos: -13.5,-31.5 - parent: 0 - type: Transform -- uid: 16104 - type: CableApcExtension - components: - - pos: -13.5,-30.5 - parent: 0 - type: Transform -- uid: 16105 - type: CableApcExtension - components: - - pos: -14.5,-30.5 - parent: 0 - type: Transform -- uid: 16106 - type: CableApcExtension - components: - - pos: -15.5,-30.5 - parent: 0 - type: Transform -- uid: 16107 - type: CableApcExtension - components: - - pos: -16.5,-30.5 - parent: 0 - type: Transform -- uid: 16108 - type: CableApcExtension - components: - - pos: -18.5,-24.5 - parent: 0 - type: Transform -- uid: 16109 - type: CableApcExtension - components: - - pos: -17.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16110 - type: CableApcExtension - components: - - pos: -16.5,-24.5 - parent: 0 - type: Transform -- uid: 16111 - type: CableApcExtension - components: - - pos: -15.5,-24.5 - parent: 0 - type: Transform -- uid: 16112 - type: CableApcExtension - components: - - pos: -15.5,-25.5 - parent: 0 - type: Transform -- uid: 16113 - type: CableApcExtension - components: - - pos: -12.5,-30.5 - parent: 0 - type: Transform -- uid: 16114 - type: CableApcExtension - components: - - pos: -12.5,-29.5 - parent: 0 - type: Transform -- uid: 16115 - type: CableApcExtension - components: - - pos: -12.5,-28.5 - parent: 0 - type: Transform -- uid: 16116 - type: CableApcExtension - components: - - pos: -12.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16117 - type: CableApcExtension - components: - - pos: -12.5,-26.5 - parent: 0 - type: Transform -- uid: 16118 - type: CableApcExtension - components: - - pos: -12.5,-25.5 - parent: 0 - type: Transform -- uid: 16119 - type: CableApcExtension - components: - - pos: -12.5,-24.5 - parent: 0 - type: Transform -- uid: 16120 - type: CableApcExtension - components: - - pos: -11.5,-25.5 - parent: 0 - type: Transform -- uid: 16121 - type: CableApcExtension - components: - - pos: -10.5,-25.5 - parent: 0 - type: Transform -- uid: 16122 - type: CableApcExtension - components: - - pos: -9.5,-25.5 - parent: 0 - type: Transform -- uid: 16123 - type: CableApcExtension - components: - - pos: -8.5,-25.5 - parent: 0 - type: Transform -- uid: 16124 - type: CableApcExtension - components: - - pos: -7.5,-25.5 - parent: 0 - type: Transform -- uid: 16125 - type: CableApcExtension - components: - - pos: -6.5,-25.5 - parent: 0 - type: Transform -- uid: 16126 - type: CableApcExtension - components: - - pos: -5.5,-25.5 - parent: 0 - type: Transform -- uid: 16127 - type: CableApcExtension - components: - - pos: -6.5,-24.5 - parent: 0 - type: Transform -- uid: 16128 - type: CableApcExtension - components: - - pos: -9.5,-24.5 - parent: 0 - type: Transform -- uid: 16129 - type: CableApcExtension - components: - - pos: -9.5,-23.5 - parent: 0 - type: Transform -- uid: 16130 - type: CableApcExtension - components: - - pos: -9.5,-20.5 - parent: 0 - type: Transform -- uid: 16131 - type: CableApcExtension - components: - - pos: -7.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16132 - type: CableApcExtension - components: - - pos: -7.5,-35.5 - parent: 0 - type: Transform -- uid: 16133 - type: CableApcExtension - components: - - pos: -7.5,-34.5 - parent: 0 - type: Transform -- uid: 16134 - type: CableApcExtension - components: - - pos: -7.5,-33.5 - parent: 0 - type: Transform -- uid: 16135 - type: CableApcExtension - components: - - pos: -7.5,-32.5 - parent: 0 - type: Transform -- uid: 16136 - type: CableApcExtension - components: - - pos: -7.5,-31.5 - parent: 0 - type: Transform -- uid: 16137 - type: CableApcExtension - components: - - pos: -7.5,-30.5 - parent: 0 - type: Transform -- uid: 16138 - type: CableApcExtension - components: - - pos: -7.5,-29.5 - parent: 0 - type: Transform -- uid: 16139 - type: CableApcExtension - components: - - pos: -8.5,-31.5 - parent: 0 - type: Transform -- uid: 16140 - type: CableApcExtension - components: - - pos: -9.5,-31.5 - parent: 0 - type: Transform -- uid: 16141 - type: CableApcExtension - components: - - pos: -7.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16142 - type: CableApcExtension - components: - - pos: -8.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16143 - type: CableApcExtension - components: - - pos: -8.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16144 - type: CableApcExtension - components: - - pos: -8.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16145 - type: CableApcExtension - components: - - pos: -8.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16146 - type: CableApcExtension - components: - - pos: -8.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16147 - type: CableApcExtension - components: - - pos: -8.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16148 - type: CableApcExtension - components: - - pos: -8.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16149 - type: SignElectricalMed - components: - - pos: -9.5,-42.5 - parent: 0 - type: Transform -- uid: 16150 - type: SignElectricalMed - components: - - pos: -34.5,-26.5 - parent: 0 - type: Transform -- uid: 16151 - type: CableHV - components: - - pos: -36.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16152 - type: CableHV - components: - - pos: -36.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16153 - type: CableHV - components: - - pos: -36.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16154 - type: CableHV - components: - - pos: -36.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16155 - type: CableHV - components: - - pos: -36.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16156 - type: CableHV - components: - - pos: -38.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16157 - type: CableHV - components: - - pos: -37.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16158 - type: WallSolidRust - components: - - pos: -37.5,-38.5 - parent: 0 - type: Transform -- uid: 16159 - type: CableHV - components: - - pos: -39.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16160 - type: CableHV - components: - - pos: -39.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16161 - type: CableHV - components: - - pos: -39.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16162 - type: CableHV - components: - - pos: -39.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16163 - type: CableHV - components: - - pos: -39.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16164 - type: CableHV - components: - - pos: -39.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16165 - type: CableHV - components: - - pos: -39.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16166 - type: CableHV - components: - - pos: -39.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16167 - type: CableHV - components: - - pos: -39.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16168 - type: CableHV - components: - - pos: -39.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16169 - type: CableHV - components: - - pos: -39.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16170 - type: CableHV - components: - - pos: -39.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16171 - type: CableHV - components: - - pos: -38.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16172 - type: CableHV - components: - - pos: -37.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16173 - type: CableHV - components: - - pos: -36.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16174 - type: CableHV - components: - - pos: -35.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16175 - type: CableHV - components: - - pos: -34.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16176 - type: CableHV - components: - - pos: -33.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16177 - type: CableHV - components: - - pos: -32.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16178 - type: CableHV - components: - - pos: -31.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16179 - type: CableHV - components: - - pos: -9.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16180 - type: CableHV - components: - - pos: -8.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16181 - type: CableHV - components: - - pos: -8.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16182 - type: CableHV - components: - - pos: -8.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16183 - type: CableHV - components: - - pos: -8.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16184 - type: CableHV - components: - - pos: -9.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16185 - type: CableHV - components: - - pos: -10.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16186 - type: CableHV - components: - - pos: -11.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16187 - type: CableHV - components: - - pos: -12.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16188 - type: CableHV - components: - - pos: -13.5,-41.5 - parent: 0 - type: Transform -- uid: 16189 - type: CableHV - components: - - pos: -14.5,-41.5 - parent: 0 - type: Transform -- uid: 16190 - type: CableHV - components: - - pos: -15.5,-41.5 - parent: 0 - type: Transform -- uid: 16191 - type: CableHV - components: - - pos: -16.5,-41.5 - parent: 0 - type: Transform -- uid: 16192 - type: CableHV - components: - - pos: -17.5,-41.5 - parent: 0 - type: Transform -- uid: 16193 - type: CableHV - components: - - pos: -18.5,-41.5 - parent: 0 - type: Transform -- uid: 16194 - type: CableHV - components: - - pos: -19.5,-41.5 - parent: 0 - type: Transform -- uid: 16195 - type: CableHV - components: - - pos: -20.5,-41.5 - parent: 0 - type: Transform -- uid: 16196 - type: CableHV - components: - - pos: -21.5,-41.5 - parent: 0 - type: Transform -- uid: 16197 - type: CableHV - components: - - pos: -22.5,-41.5 - parent: 0 - type: Transform -- uid: 16198 - type: CableHV - components: - - pos: -22.5,-40.5 - parent: 0 - type: Transform -- uid: 16199 - type: CableHV - components: - - pos: -23.5,-40.5 - parent: 0 - type: Transform -- uid: 16200 - type: CableHV - components: - - pos: -24.5,-40.5 - parent: 0 - type: Transform -- uid: 16201 - type: CableHV - components: - - pos: -25.5,-40.5 - parent: 0 - type: Transform -- uid: 16202 - type: CableHV - components: - - pos: -26.5,-40.5 - parent: 0 - type: Transform -- uid: 16203 - type: CableHV - components: - - pos: -27.5,-40.5 - parent: 0 - type: Transform -- uid: 16204 - type: CableHV - components: - - pos: -28.5,-40.5 - parent: 0 - type: Transform -- uid: 16205 - type: CableHV - components: - - pos: -29.5,-40.5 - parent: 0 - type: Transform -- uid: 16206 - type: CableHV - components: - - pos: -30.5,-40.5 - parent: 0 - type: Transform -- uid: 16207 - type: CableHV - components: - - pos: -31.5,-40.5 - parent: 0 - type: Transform -- uid: 16208 - type: CableHV - components: - - pos: -31.5,-39.5 - parent: 0 - type: Transform -- uid: 16209 - type: CableHV - components: - - pos: -32.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16210 - type: CableHV - components: - - pos: -33.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16211 - type: CableHV - components: - - pos: -34.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16212 - type: CableHV - components: - - pos: -35.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16213 - type: CableHV - components: - - pos: -11.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16214 - type: CableMV - components: - - pos: -10.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16215 - type: CableMV - components: - - pos: -11.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16216 - type: CableApcExtension - components: - - pos: -9.5,-43.5 - parent: 0 - type: Transform -- uid: 16217 - type: CableApcExtension - components: - - pos: -10.5,-43.5 - parent: 0 - type: Transform -- uid: 16218 - type: FirelockGlass - components: - - pos: -31.5,-44.5 - parent: 0 - type: Transform -- uid: 16219 - type: Grille - components: - - pos: -30.5,-44.5 - parent: 0 - type: Transform -- uid: 16220 - type: FirelockGlass - components: - - pos: -25.5,-44.5 - parent: 0 - type: Transform -- uid: 16221 - type: Grille - components: - - pos: -27.5,-44.5 - parent: 0 - type: Transform -- uid: 16222 - type: Grille - components: - - pos: -24.5,-44.5 - parent: 0 - type: Transform -- uid: 16223 - type: HospitalCurtainsOpen - components: - - pos: -28.5,-44.5 - parent: 0 - type: Transform -- uid: 16224 - type: Chair - components: - - pos: -30.5,-39.5 - parent: 0 - type: Transform -- uid: 16225 - type: Chair - components: - - pos: -29.5,-39.5 - parent: 0 - type: Transform -- uid: 16226 - type: PottedPlantRandom - components: - - pos: -24.5,-39.5 - parent: 0 - type: Transform -- uid: 16227 - type: BoxSterileMask - components: - - pos: -21.60331,-27.402424 - parent: 0 - type: Transform -- uid: 16228 - type: BoxLatexGloves - components: - - pos: -28.48332,-33.302094 - parent: 0 - type: Transform -- uid: 16229 - type: BoxSterileMask - components: - - pos: -28.35832,-33.47397 - parent: 0 - type: Transform -- uid: 16230 - type: EpinephrineChemistryBottle - components: - - pos: -26.55828,-32.44256 - parent: 0 - type: Transform -- uid: 16231 - type: EpinephrineChemistryBottle - components: - - pos: -26.417656,-32.66131 - parent: 0 - type: Transform -- uid: 16232 - type: Syringe - components: - - pos: -26.52703,-34.25506 - parent: 0 - type: Transform -- uid: 16233 - type: ClothingNeckStethoscope - components: - - pos: -27.520784,-43.411144 - parent: 0 - type: Transform -- uid: 16234 - type: Brutepack - components: - - pos: -28.549599,-33.996464 - parent: 0 - type: Transform -- uid: 16235 - type: MaterialCloth1 - components: - - pos: -28.446468,-34.38949 - parent: 0 - type: Transform -- uid: 16236 - type: MaterialCloth1 - components: - - pos: -24.477718,-43.42454 - parent: 0 - type: Transform -- uid: 16237 - type: ClothingEyesHudMedical - components: - - pos: -28.52515,-32.371704 - parent: 0 - type: Transform -- uid: 16238 - type: ClothingEyesHudMedical - components: - - pos: -28.447025,-32.559204 - parent: 0 - type: Transform -- uid: 16239 - type: BoxFolderBlue - components: - - pos: -16.623676,-36.345753 - parent: 0 - type: Transform -- uid: 16240 - type: BoxFolderWhite - components: - - pos: -16.467426,-36.470753 - parent: 0 - type: Transform -- uid: 16241 - type: HandheldCrewMonitor - components: - - pos: -17.467426,-36.423878 - parent: 0 - type: Transform -- uid: 16242 - type: HandheldHealthAnalyzer - components: - - pos: -16.529926,-33.314503 - parent: 0 - type: Transform -- uid: 16243 - type: ClothingNeckStethoscope - components: - - pos: -17.498676,-33.3716 - parent: 0 - type: Transform -- uid: 16244 - type: FirelockGlass - components: - - pos: -16.5,-21.5 - parent: 0 - type: Transform -- uid: 16245 - type: MachineAnomalyGenerator - components: - - pos: 38.5,-40.5 - parent: 0 - type: Transform - - enabled: False - type: AmbientSound -- uid: 16246 - type: MedicalScanner - components: - - pos: -17.5,-40.5 - parent: 0 - type: Transform - - inputs: - MedicalScannerReceiver: - - port: MedicalScannerSender - uid: 15047 - type: SignalReceiver -- uid: 16247 - type: TableGlass - components: - - pos: -13.5,-44.5 - parent: 0 - type: Transform -- uid: 16248 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -44.5,40.5 - parent: 0 - type: Transform -- uid: 16249 - type: SpaceMedipen - components: - - pos: -13.434084,-44.518677 - parent: 0 - type: Transform -- uid: 16250 - type: EmergencyMedipen - components: - - pos: -13.434084,-44.362427 - parent: 0 - type: Transform -- uid: 16251 - type: AntiPoisonMedipen - components: - - pos: -30.486795,-43.524475 - parent: 0 - type: Transform -- uid: 16252 - type: Sink - components: - - pos: -43.5,-45.5 - parent: 0 - type: Transform -- uid: 16253 - type: AirlockVirologyLocked - components: - - pos: -44.5,-46.5 - parent: 0 - type: Transform -- uid: 16254 - type: ClosetL3VirologyFilled - components: - - pos: -41.5,-47.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16255 - type: ClosetL3VirologyFilled - components: - - pos: -43.5,-47.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16256 - type: ReinforcedWindow - components: - - pos: -45.5,-47.5 - parent: 0 - type: Transform -- uid: 16257 - type: ReinforcedWindow - components: - - pos: -46.5,-47.5 - parent: 0 - type: Transform -- uid: 16258 - type: ReinforcedWindow - components: - - pos: -47.5,-47.5 - parent: 0 - type: Transform -- uid: 16259 - type: ReinforcedWindow - components: - - pos: -45.5,-45.5 - parent: 0 - type: Transform -- uid: 16260 - type: ReinforcedWindow - components: - - pos: -46.5,-45.5 - parent: 0 - type: Transform -- uid: 16261 - type: ReinforcedWindow - components: - - pos: -47.5,-45.5 - parent: 0 - type: Transform -- uid: 16262 - type: ReinforcedWindow - components: - - pos: -44.5,-52.5 - parent: 0 - type: Transform -- uid: 16263 - type: ReinforcedWindow - components: - - pos: -44.5,-53.5 - parent: 0 - type: Transform -- uid: 16264 - type: ReinforcedWindow - components: - - pos: -44.5,-54.5 - parent: 0 - type: Transform -- uid: 16265 - type: ReinforcedWindow - components: - - pos: -44.5,-55.5 - parent: 0 - type: Transform -- uid: 16266 - type: ReinforcedWindow - components: - - pos: -45.5,-57.5 - parent: 0 - type: Transform -- uid: 16267 - type: ReinforcedWindow - components: - - pos: -46.5,-57.5 - parent: 0 - type: Transform -- uid: 16268 - type: ReinforcedWindow - components: - - pos: -47.5,-57.5 - parent: 0 - type: Transform -- uid: 16269 - type: ReinforcedWindow - components: - - pos: -48.5,-54.5 - parent: 0 - type: Transform -- uid: 16270 - type: ReinforcedWindow - components: - - pos: -48.5,-55.5 - parent: 0 - type: Transform -- uid: 16271 - type: ReinforcedWindow - components: - - pos: -48.5,-52.5 - parent: 0 - type: Transform -- uid: 16272 - type: ReinforcedWindow - components: - - pos: -52.5,-55.5 - parent: 0 - type: Transform -- uid: 16273 - type: ReinforcedWindow - components: - - pos: -55.5,-55.5 - parent: 0 - type: Transform -- uid: 16274 - type: ReinforcedWindow - components: - - pos: -55.5,-54.5 - parent: 0 - type: Transform -- uid: 16275 - type: ReinforcedWindow - components: - - pos: -55.5,-52.5 - parent: 0 - type: Transform -- uid: 16276 - type: ReinforcedWindow - components: - - pos: -55.5,-51.5 - parent: 0 - type: Transform -- uid: 16277 - type: ReinforcedWindow - components: - - pos: -52.5,-51.5 - parent: 0 - type: Transform -- uid: 16278 - type: ReinforcedWindow - components: - - pos: -49.5,-57.5 - parent: 0 - type: Transform -- uid: 16279 - type: ReinforcedWindow - components: - - pos: -50.5,-57.5 - parent: 0 - type: Transform -- uid: 16280 - type: ReinforcedWindow - components: - - pos: -51.5,-57.5 - parent: 0 - type: Transform -- uid: 16281 - type: ReinforcedWindow - components: - - pos: -55.5,-48.5 - parent: 0 - type: Transform -- uid: 16282 - type: ReinforcedWindow - components: - - pos: -55.5,-47.5 - parent: 0 - type: Transform -- uid: 16283 - type: ReinforcedWindow - components: - - pos: -55.5,-46.5 - parent: 0 - type: Transform -- uid: 16284 - type: WallReinforced - components: - - pos: -48.5,-45.5 - parent: 0 - type: Transform -- uid: 16285 - type: WallReinforced - components: - - pos: -48.5,-44.5 - parent: 0 - type: Transform -- uid: 16286 - type: WallReinforced - components: - - pos: -49.5,-44.5 - parent: 0 - type: Transform -- uid: 16287 - type: WallReinforced - components: - - pos: -50.5,-44.5 - parent: 0 - type: Transform -- uid: 16288 - type: WallReinforced - components: - - pos: -51.5,-44.5 - parent: 0 - type: Transform -- uid: 16289 - type: WallReinforced - components: - - pos: -52.5,-44.5 - parent: 0 - type: Transform -- uid: 16290 - type: WallReinforced - components: - - pos: -53.5,-44.5 - parent: 0 - type: Transform -- uid: 16291 - type: WallReinforced - components: - - pos: -54.5,-44.5 - parent: 0 - type: Transform -- uid: 16292 - type: WallReinforced - components: - - pos: -55.5,-44.5 - parent: 0 - type: Transform -- uid: 16293 - type: WallReinforced - components: - - pos: -55.5,-45.5 - parent: 0 - type: Transform -- uid: 16294 - type: WallReinforced - components: - - pos: -55.5,-49.5 - parent: 0 - type: Transform -- uid: 16295 - type: WallReinforced - components: - - pos: -55.5,-50.5 - parent: 0 - type: Transform -- uid: 16296 - type: WallReinforced - components: - - pos: -53.5,-50.5 - parent: 0 - type: Transform -- uid: 16297 - type: WallReinforced - components: - - pos: -54.5,-50.5 - parent: 0 - type: Transform -- uid: 16298 - type: WallReinforced - components: - - pos: -52.5,-53.5 - parent: 0 - type: Transform -- uid: 16299 - type: WallReinforced - components: - - pos: -51.5,-50.5 - parent: 0 - type: Transform -- uid: 16300 - type: WallReinforced - components: - - pos: -53.5,-53.5 - parent: 0 - type: Transform -- uid: 16301 - type: WallReinforced - components: - - pos: -48.5,-51.5 - parent: 0 - type: Transform -- uid: 16302 - type: WallReinforced - components: - - pos: -48.5,-50.5 - parent: 0 - type: Transform -- uid: 16303 - type: WallReinforced - components: - - pos: -48.5,-49.5 - parent: 0 - type: Transform -- uid: 16304 - type: WallReinforced - components: - - pos: -48.5,-48.5 - parent: 0 - type: Transform -- uid: 16305 - type: WallReinforced - components: - - pos: -48.5,-47.5 - parent: 0 - type: Transform -- uid: 16306 - type: WallReinforced - components: - - pos: -47.5,-50.5 - parent: 0 - type: Transform -- uid: 16307 - type: WallReinforced - components: - - pos: -46.5,-50.5 - parent: 0 - type: Transform -- uid: 16308 - type: WallReinforced - components: - - pos: -45.5,-50.5 - parent: 0 - type: Transform -- uid: 16309 - type: WallReinforced - components: - - pos: -44.5,-50.5 - parent: 0 - type: Transform -- uid: 16310 - type: WallReinforced - components: - - pos: -44.5,-51.5 - parent: 0 - type: Transform -- uid: 16311 - type: WallReinforced - components: - - pos: -48.5,-57.5 - parent: 0 - type: Transform -- uid: 16312 - type: CableApcExtension - components: - - pos: -48.5,-53.5 - parent: 0 - type: Transform -- uid: 16313 - type: WallReinforced - components: - - pos: -44.5,-57.5 - parent: 0 - type: Transform -- uid: 16314 - type: WallReinforced - components: - - pos: -44.5,-56.5 - parent: 0 - type: Transform -- uid: 16315 - type: WallReinforced - components: - - pos: -52.5,-57.5 - parent: 0 - type: Transform -- uid: 16316 - type: WallReinforced - components: - - pos: -52.5,-56.5 - parent: 0 - type: Transform -- uid: 16317 - type: WallReinforced - components: - - pos: -53.5,-56.5 - parent: 0 - type: Transform -- uid: 16318 - type: WallReinforced - components: - - pos: -54.5,-56.5 - parent: 0 - type: Transform -- uid: 16319 - type: WallReinforced - components: - - pos: -55.5,-56.5 - parent: 0 - type: Transform -- uid: 16320 - type: WallReinforced - components: - - pos: -54.5,-53.5 - parent: 0 - type: Transform -- uid: 16321 - type: WallReinforced - components: - - pos: -52.5,-50.5 - parent: 0 - type: Transform -- uid: 16322 - type: ReinforcedWindow - components: - - pos: -49.5,-50.5 - parent: 0 - type: Transform -- uid: 16323 - type: WallReinforced - components: - - pos: -55.5,-53.5 - parent: 0 - type: Transform -- uid: 16324 - type: Grille - components: - - pos: -55.5,-55.5 - parent: 0 - type: Transform -- uid: 16325 - type: Grille - components: - - pos: -55.5,-54.5 - parent: 0 - type: Transform -- uid: 16326 - type: Grille - components: - - pos: -52.5,-55.5 - parent: 0 - type: Transform -- uid: 16327 - type: Grille - components: - - pos: -51.5,-57.5 - parent: 0 - type: Transform -- uid: 16328 - type: Grille - components: - - pos: -50.5,-57.5 - parent: 0 - type: Transform -- uid: 16329 - type: Grille - components: - - pos: -49.5,-57.5 - parent: 0 - type: Transform -- uid: 16330 - type: Grille - components: - - pos: -47.5,-57.5 - parent: 0 - type: Transform -- uid: 16331 - type: Grille - components: - - pos: -46.5,-57.5 - parent: 0 - type: Transform -- uid: 16332 - type: Grille - components: - - pos: -45.5,-57.5 - parent: 0 - type: Transform -- uid: 16333 - type: Grille - components: - - pos: -44.5,-55.5 - parent: 0 - type: Transform -- uid: 16334 - type: Grille - components: - - pos: -44.5,-54.5 - parent: 0 - type: Transform -- uid: 16335 - type: Grille - components: - - pos: -44.5,-53.5 - parent: 0 - type: Transform -- uid: 16336 - type: Grille - components: - - pos: -44.5,-52.5 - parent: 0 - type: Transform -- uid: 16337 - type: Grille - components: - - pos: -48.5,-55.5 - parent: 0 - type: Transform -- uid: 16338 - type: Grille - components: - - pos: -48.5,-54.5 - parent: 0 - type: Transform -- uid: 16339 - type: Grille - components: - - pos: -48.5,-52.5 - parent: 0 - type: Transform -- uid: 16340 - type: Grille - components: - - pos: -52.5,-51.5 - parent: 0 - type: Transform -- uid: 16341 - type: Grille - components: - - pos: -55.5,-52.5 - parent: 0 - type: Transform -- uid: 16342 - type: Grille - components: - - pos: -55.5,-51.5 - parent: 0 - type: Transform -- uid: 16343 - type: Grille - components: - - pos: -55.5,-48.5 - parent: 0 - type: Transform -- uid: 16344 - type: Grille - components: - - pos: -55.5,-47.5 - parent: 0 - type: Transform -- uid: 16345 - type: Grille - components: - - pos: -55.5,-46.5 - parent: 0 - type: Transform -- uid: 16346 - type: Grille - components: - - pos: -45.5,-47.5 - parent: 0 - type: Transform -- uid: 16347 - type: Grille - components: - - pos: -46.5,-47.5 - parent: 0 - type: Transform -- uid: 16348 - type: Grille - components: - - pos: -47.5,-47.5 - parent: 0 - type: Transform -- uid: 16349 - type: Grille - components: - - pos: -45.5,-45.5 - parent: 0 - type: Transform -- uid: 16350 - type: Grille - components: - - pos: -46.5,-45.5 - parent: 0 - type: Transform -- uid: 16351 - type: Grille - components: - - pos: -47.5,-45.5 - parent: 0 - type: Transform -- uid: 16352 - type: CableApcExtension - components: - - pos: -48.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16353 - type: AirlockVirologyGlassLocked - components: - - pos: -52.5,-54.5 - parent: 0 - type: Transform -- uid: 16354 - type: AirlockVirologyGlassLocked - components: - - pos: -52.5,-52.5 - parent: 0 - type: Transform -- uid: 16355 - type: AirlockVirologyGlassLocked - components: - - pos: -50.5,-50.5 - parent: 0 - type: Transform -- uid: 16356 - type: AirlockVirologyGlassLocked - components: - - pos: -48.5,-46.5 - parent: 0 - type: Transform -- uid: 16357 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16358 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16359 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16360 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16361 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16362 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16363 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16364 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -39.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16365 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16366 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16367 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -42.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16368 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16369 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16370 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16371 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16372 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16373 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16374 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16375 - type: GasPipeTJunction - components: - - pos: -50.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16376 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16377 - type: TableGlass - components: - - pos: -49.5,-56.5 - parent: 0 - type: Transform -- uid: 16378 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16379 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -50.5,-52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16380 - type: WallReinforced - components: - - pos: -48.5,-56.5 - parent: 0 - type: Transform -- uid: 16381 - type: CableMV - components: - - pos: -48.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16382 - type: CableApcExtension - components: - - pos: -44.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16383 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16384 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16385 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16386 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16387 - type: GasPipeStraight - components: - - pos: -50.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16388 - type: GasPipeStraight - components: - - pos: -50.5,-49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16389 - type: GasPipeStraight - components: - - pos: -50.5,-48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16390 - type: GasPipeStraight - components: - - pos: -50.5,-47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16391 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16392 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16393 - type: GasVentPump - components: - - pos: -42.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16394 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16395 - type: CableApcExtension - components: - - pos: -48.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16396 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16397 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16398 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -50.5,-55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16399 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-55.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16400 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-52.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16401 - type: GasPipeStraight - components: - - pos: -51.5,-54.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16402 - type: CableApcExtension - components: - - pos: -48.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16403 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-55.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16404 - type: CableApcExtension - components: - - pos: -47.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16405 - type: GasPipeStraight - components: - - pos: -50.5,-57.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16406 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -50.5,-58.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16407 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -51.5,-56.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16408 - type: GasPipeStraight - components: - - pos: -51.5,-53.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16409 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-52.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16410 - type: CableApcExtension - components: - - pos: -46.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16411 - type: CableApcExtension - components: - - pos: -45.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16412 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-55.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16413 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-52.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16414 - type: GasPipeStraight - components: - - pos: -51.5,-51.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16415 - type: GasPipeStraight - components: - - pos: -51.5,-50.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16416 - type: GasPipeStraight - components: - - pos: -51.5,-49.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16417 - type: GasPipeStraight - components: - - pos: -51.5,-48.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16418 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-47.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16419 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-47.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16420 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-47.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16421 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-52.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16422 - type: Grille - components: - - pos: -49.5,-50.5 - parent: 0 - type: Transform -- uid: 16423 - type: Bed - components: - - pos: -53.5,-55.5 - parent: 0 - type: Transform -- uid: 16424 - type: Bed - components: - - pos: -53.5,-51.5 - parent: 0 - type: Transform -- uid: 16425 - type: BedsheetGreen - components: - - pos: -53.5,-51.5 - parent: 0 - type: Transform -- uid: 16426 - type: BedsheetGreen - components: - - pos: -53.5,-55.5 - parent: 0 - type: Transform -- uid: 16427 - type: TableGlass - components: - - pos: -54.5,-54.5 - parent: 0 - type: Transform -- uid: 16428 - type: TableGlass - components: - - pos: -54.5,-55.5 - parent: 0 - type: Transform -- uid: 16429 - type: TableGlass - components: - - pos: -54.5,-52.5 - parent: 0 - type: Transform -- uid: 16430 - type: TableGlass - components: - - pos: -54.5,-51.5 - parent: 0 - type: Transform -- uid: 16431 - type: TableGlass - components: - - pos: -51.5,-56.5 - parent: 0 - type: Transform -- uid: 16432 - type: CableApcExtension - components: - - pos: -44.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16433 - type: CableApcExtension - components: - - pos: -44.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16434 - type: TableGlass - components: - - pos: -54.5,-48.5 - parent: 0 - type: Transform -- uid: 16435 - type: TableGlass - components: - - pos: -54.5,-49.5 - parent: 0 - type: Transform -- uid: 16436 - type: TableGlass - components: - - pos: -53.5,-49.5 - parent: 0 - type: Transform -- uid: 16437 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-51.5 - parent: 0 - type: Transform -- uid: 16438 - type: PosterLegitCleanliness - components: - - pos: -44.5,-45.5 - parent: 0 - type: Transform -- uid: 16439 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: -52.5,-49.5 - parent: 0 - type: Transform -- uid: 16440 - type: DisposalUnit - components: - - pos: -51.5,-49.5 - parent: 0 - type: Transform -- uid: 16441 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-53.5 - parent: 0 - type: Transform -- uid: 16442 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-53.5 - parent: 0 - type: Transform -- uid: 16443 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-53.5 - parent: 0 - type: Transform -- uid: 16444 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-49.5 - parent: 0 - type: Transform -- uid: 16445 - type: DisposalBend - components: - - pos: -50.5,-49.5 - parent: 0 - type: Transform -- uid: 16446 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-53.5 - parent: 0 - type: Transform -- uid: 16447 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-53.5 - parent: 0 - type: Transform -- uid: 16448 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-53.5 - parent: 0 - type: Transform -- uid: 16449 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-53.5 - parent: 0 - type: Transform -- uid: 16450 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-53.5 - parent: 0 - type: Transform -- uid: 16451 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-53.5 - parent: 0 - type: Transform -- uid: 16452 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -50.5,-52.5 - parent: 0 - type: Transform -- uid: 16453 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -50.5,-51.5 - parent: 0 - type: Transform -- uid: 16454 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -50.5,-50.5 - parent: 0 - type: Transform -- uid: 16455 - type: Catwalk - components: - - pos: -56.5,-53.5 - parent: 0 - type: Transform -- uid: 16456 - type: Catwalk - components: - - pos: -57.5,-53.5 - parent: 0 - type: Transform -- uid: 16457 - type: Catwalk - components: - - pos: -58.5,-53.5 - parent: 0 - type: Transform -- uid: 16458 - type: GrilleBroken - components: - - pos: -58.5,-53.5 - parent: 0 - type: Transform -- uid: 16459 - type: Rack - components: - - pos: -51.5,-51.5 - parent: 0 - type: Transform -- uid: 16460 - type: Wrench - components: - - pos: -51.50495,-51.523224 - parent: 0 - type: Transform -- uid: 16461 - type: CrowbarRed - components: - - pos: -51.4737,-51.616974 - parent: 0 - type: Transform -- uid: 16462 - type: VendingMachineViroDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -49.5,-49.5 - parent: 0 - type: Transform -- uid: 16463 - type: SignVirology - components: - - pos: -40.5,-45.5 - parent: 0 - type: Transform -- uid: 16464 - type: SignVirology - components: - - pos: -48.5,-47.5 - parent: 0 - type: Transform -- uid: 16465 - type: ExtinguisherCabinetFilled - components: - - pos: -48.5,-45.5 - parent: 0 - type: Transform -- uid: 16466 - type: ClosetL3VirologyFilled - components: - - pos: -52.5,-45.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16467 - type: LockerMedicineFilled - components: - - pos: -53.5,-45.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16468 - type: Rack - components: - - pos: -49.5,-45.5 - parent: 0 - type: Transform -- uid: 16469 - type: Rack - components: - - pos: -50.5,-45.5 - parent: 0 - type: Transform -- uid: 16470 - type: KitchenReagentGrinder - components: - - pos: -54.5,-48.5 - parent: 0 - type: Transform -- uid: 16471 - type: Vaccinator - components: - - pos: -54.5,-47.5 - parent: 0 - type: Transform -- uid: 16472 - type: DiseaseDiagnoser - components: - - pos: -54.5,-46.5 - parent: 0 - type: Transform -- uid: 16473 - type: TableGlass - components: - - pos: -54.5,-45.5 - parent: 0 - type: Transform -- uid: 16474 - type: SprayBottleSpaceCleaner - components: - - pos: -49.57247,-45.339725 - parent: 0 - type: Transform -- uid: 16475 - type: BoxSterileMask - components: - - pos: -50.35372,-45.464725 - parent: 0 - type: Transform -- uid: 16476 - type: BoxLatexGloves - components: - - pos: -50.525597,-45.2616 - parent: 0 - type: Transform -- uid: 16477 - type: BoxSyringe - components: - - pos: -53.400597,-49.464725 - parent: 0 - type: Transform -- uid: 16478 - type: BoxMouthSwab - components: - - pos: -53.775597,-49.35535 - parent: 0 - type: Transform -- uid: 16479 - type: SheetPlasma1 - components: - - pos: -54.463097,-49.41785 - parent: 0 - type: Transform -- uid: 16480 - type: SheetPlasma1 - components: - - pos: -54.463097,-49.41785 - parent: 0 - type: Transform -- uid: 16481 - type: LargeBeaker - components: - - pos: -54.57247,-49.0741 - parent: 0 - type: Transform -- uid: 16482 - type: Dropper - components: - - pos: -54.41622,-54.48465 - parent: 0 - type: Transform -- uid: 16483 - type: Dropper - components: - - pos: -54.431847,-52.500275 - parent: 0 - type: Transform -- uid: 16484 - type: Beaker - components: - - pos: -54.463097,-54.219025 - parent: 0 - type: Transform -- uid: 16485 - type: Beaker - components: - - pos: -54.47872,-52.187775 - parent: 0 - type: Transform -- uid: 16486 - type: BoxFolderWhite - components: - - pos: -54.494347,-55.3909 - parent: 0 - type: Transform -- uid: 16487 - type: BoxFolderWhite - components: - - pos: -54.463097,-51.562775 - parent: 0 - type: Transform -- uid: 16488 - type: Pen - components: - - pos: -54.32247,-55.125275 - parent: 0 - type: Transform -- uid: 16489 - type: Pen - components: - - pos: -54.32247,-51.281525 - parent: 0 - type: Transform -- uid: 16490 - type: Pen - components: - - pos: -50.16622,-56.281525 - parent: 0 - type: Transform -- uid: 16491 - type: Paper - components: - - pos: -54.60372,-55.281525 - parent: 0 - type: Transform -- uid: 16492 - type: Paper - components: - - pos: -54.60372,-55.281525 - parent: 0 - type: Transform -- uid: 16493 - type: Paper - components: - - pos: -54.556847,-51.48465 - parent: 0 - type: Transform -- uid: 16494 - type: Paper - components: - - pos: -54.556847,-51.48465 - parent: 0 - type: Transform -- uid: 16495 - type: Paper - components: - - pos: -50.60372,-56.3284 - parent: 0 - type: Transform -- uid: 16496 - type: Paper - components: - - pos: -50.60372,-56.3284 - parent: 0 - type: Transform -- uid: 16497 - type: BoxFolderWhite - components: - - pos: -50.494347,-56.469025 - parent: 0 - type: Transform -- uid: 16498 - type: HandLabeler - components: - - pos: -51.556847,-56.500275 - parent: 0 - type: Transform -- uid: 16499 - type: ClothingHeadsetGrey - components: - - pos: -51.181847,-56.375275 - parent: 0 - type: Transform -- uid: 16500 - type: Grille - components: - - pos: -40.5,-55.5 - parent: 0 - type: Transform -- uid: 16501 - type: Grille - components: - - pos: -40.5,-54.5 - parent: 0 - type: Transform -- uid: 16502 - type: Grille - components: - - pos: -40.5,-53.5 - parent: 0 - type: Transform -- uid: 16503 - type: Grille - components: - - pos: -40.5,-52.5 - parent: 0 - type: Transform -- uid: 16504 - type: Catwalk - components: - - pos: -42.5,-54.5 - parent: 0 - type: Transform -- uid: 16505 - type: Catwalk - components: - - pos: -42.5,-53.5 - parent: 0 - type: Transform -- uid: 16506 - type: AcousticGuitarInstrument - components: - - pos: -42.475952,-54.406525 - parent: 0 - type: Transform -- uid: 16507 - type: Blunt - components: - - pos: -42.538452,-53.54715 - parent: 0 - type: Transform -- uid: 16508 - type: Grille - components: - - pos: -57.5,-44.5 - parent: 0 - type: Transform -- uid: 16509 - type: Grille - components: - - pos: -57.5,-45.5 - parent: 0 - type: Transform -- uid: 16510 - type: Grille - components: - - pos: -57.5,-46.5 - parent: 0 - type: Transform -- uid: 16511 - type: Grille - components: - - pos: -57.5,-47.5 - parent: 0 - type: Transform -- uid: 16512 - type: Grille - components: - - pos: -57.5,-48.5 - parent: 0 - type: Transform -- uid: 16513 - type: Grille - components: - - pos: -57.5,-49.5 - parent: 0 - type: Transform -- uid: 16514 - type: Grille - components: - - pos: -57.5,-50.5 - parent: 0 - type: Transform -- uid: 16515 - type: Grille - components: - - pos: -57.5,-51.5 - parent: 0 - type: Transform -- uid: 16516 - type: Grille - components: - - pos: -57.5,-52.5 - parent: 0 - type: Transform -- uid: 16517 - type: APCHyperCapacity - components: - - pos: -50.5,-44.5 - parent: 0 - type: Transform -- uid: 16518 - type: CableMV - components: - - pos: -37.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16519 - type: CableMV - components: - - pos: -38.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16520 - type: CableMV - components: - - pos: -39.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16521 - type: CableMV - components: - - pos: -39.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16522 - type: CableMV - components: - - pos: -39.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16523 - type: CableMV - components: - - pos: -39.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16524 - type: CableMV - components: - - pos: -39.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16525 - type: CableMV - components: - - pos: -39.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16526 - type: CableMV - components: - - pos: -39.5,-45.5 - parent: 0 - type: Transform -- uid: 16527 - type: CableMV - components: - - pos: -39.5,-46.5 - parent: 0 - type: Transform -- uid: 16528 - type: CableMV - components: - - pos: -39.5,-47.5 - parent: 0 - type: Transform -- uid: 16529 - type: CableMV - components: - - pos: -38.5,-47.5 - parent: 0 - type: Transform -- uid: 16530 - type: CableMV - components: - - pos: -37.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16531 - type: CableMV - components: - - pos: -40.5,-46.5 - parent: 0 - type: Transform -- uid: 16532 - type: CableMV - components: - - pos: -41.5,-46.5 - parent: 0 - type: Transform -- uid: 16533 - type: CableMV - components: - - pos: -42.5,-46.5 - parent: 0 - type: Transform -- uid: 16534 - type: CableMV - components: - - pos: -43.5,-46.5 - parent: 0 - type: Transform -- uid: 16535 - type: CableMV - components: - - pos: -44.5,-46.5 - parent: 0 - type: Transform -- uid: 16536 - type: CableMV - components: - - pos: -45.5,-46.5 - parent: 0 - type: Transform -- uid: 16537 - type: CableMV - components: - - pos: -46.5,-46.5 - parent: 0 - type: Transform -- uid: 16538 - type: CableMV - components: - - pos: -47.5,-46.5 - parent: 0 - type: Transform -- uid: 16539 - type: CableMV - components: - - pos: -48.5,-46.5 - parent: 0 - type: Transform -- uid: 16540 - type: CableMV - components: - - pos: -49.5,-46.5 - parent: 0 - type: Transform -- uid: 16541 - type: CableMV - components: - - pos: -50.5,-46.5 - parent: 0 - type: Transform -- uid: 16542 - type: CableMV - components: - - pos: -50.5,-45.5 - parent: 0 - type: Transform -- uid: 16543 - type: CableMV - components: - - pos: -50.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16544 - type: CableMV - components: - - pos: -50.5,-47.5 - parent: 0 - type: Transform -- uid: 16545 - type: CableMV - components: - - pos: -51.5,-47.5 - parent: 0 - type: Transform -- uid: 16546 - type: CableMV - components: - - pos: -52.5,-47.5 - parent: 0 - type: Transform -- uid: 16547 - type: CableMV - components: - - pos: -53.5,-47.5 - parent: 0 - type: Transform -- uid: 16548 - type: CableMV - components: - - pos: -54.5,-47.5 - parent: 0 - type: Transform -- uid: 16549 - type: CableMV - components: - - pos: -55.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16550 - type: CableMV - components: - - pos: -55.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16551 - type: CableMV - components: - - pos: -55.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16552 - type: CableMV - components: - - pos: -50.5,-48.5 - parent: 0 - type: Transform -- uid: 16553 - type: CableMV - components: - - pos: -50.5,-49.5 - parent: 0 - type: Transform -- uid: 16554 - type: CableMV - components: - - pos: -50.5,-50.5 - parent: 0 - type: Transform -- uid: 16555 - type: CableMV - components: - - pos: -50.5,-51.5 - parent: 0 - type: Transform -- uid: 16556 - type: CableMV - components: - - pos: -50.5,-52.5 - parent: 0 - type: Transform -- uid: 16557 - type: CableMV - components: - - pos: -50.5,-53.5 - parent: 0 - type: Transform -- uid: 16558 - type: CableMV - components: - - pos: -50.5,-54.5 - parent: 0 - type: Transform -- uid: 16559 - type: CableMV - components: - - pos: -50.5,-55.5 - parent: 0 - type: Transform -- uid: 16560 - type: CableMV - components: - - pos: -50.5,-56.5 - parent: 0 - type: Transform -- uid: 16561 - type: CableMV - components: - - pos: -50.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16562 - type: CableMV - components: - - pos: -51.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16563 - type: CableMV - components: - - pos: -49.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16564 - type: CableMV - components: - - pos: -51.5,-54.5 - parent: 0 - type: Transform -- uid: 16565 - type: CableMV - components: - - pos: -52.5,-54.5 - parent: 0 - type: Transform -- uid: 16566 - type: CableMV - components: - - pos: -53.5,-54.5 - parent: 0 - type: Transform -- uid: 16567 - type: CableMV - components: - - pos: -54.5,-54.5 - parent: 0 - type: Transform -- uid: 16568 - type: CableMV - components: - - pos: -55.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16569 - type: CableMV - components: - - pos: -55.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16570 - type: CableMV - components: - - pos: -51.5,-52.5 - parent: 0 - type: Transform -- uid: 16571 - type: CableMV - components: - - pos: -52.5,-52.5 - parent: 0 - type: Transform -- uid: 16572 - type: CableMV - components: - - pos: -53.5,-52.5 - parent: 0 - type: Transform -- uid: 16573 - type: CableMV - components: - - pos: -54.5,-52.5 - parent: 0 - type: Transform -- uid: 16574 - type: CableMV - components: - - pos: -55.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16575 - type: CableMV - components: - - pos: -55.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16576 - type: CableMV - components: - - pos: -49.5,-53.5 - parent: 0 - type: Transform -- uid: 16577 - type: CableApcExtension - components: - - pos: -44.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16578 - type: CableApcExtension - components: - - pos: -44.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16579 - type: CableApcExtension - components: - - pos: -44.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16580 - type: AirAlarm - components: - - pos: 11.5,-6.5 - parent: 0 - type: Transform - - devices: - - 16585 - - 4085 - - invalid - - 1393 - - 1392 - - 10185 - - 10165 - type: DeviceList -- uid: 16581 - type: CableMV - components: - - pos: -44.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16582 - type: CableMV - components: - - pos: -44.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16583 - type: CableMV - components: - - pos: -44.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16584 - type: CableMV - components: - - pos: -44.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16585 - type: AirSensor - components: - - pos: 5.5,-8.5 - parent: 0 - type: Transform -- uid: 16586 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -8.5,-9.5 - parent: 0 - type: Transform - - devices: - - 16585 - - 4085 - - invalid - - 1393 - - 1392 - type: DeviceList -- uid: 16587 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -10.5,0.5 - parent: 0 - type: Transform - - devices: - - 772 - - 16610 - - 768 - - 769 - - 16611 - - 771 - type: DeviceList -- uid: 16588 - type: CableMV - components: - - pos: -46.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16589 - type: CableMV - components: - - pos: -47.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16590 - type: CableMV - components: - - pos: -45.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16591 - type: CableMV - components: - - pos: -46.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16592 - type: CableMV - components: - - pos: -47.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16593 - type: CableMV - components: - - pos: -45.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16594 - type: CableMV - components: - - pos: -45.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16595 - type: CableMV - components: - - pos: -46.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16596 - type: CableMV - components: - - pos: -47.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16597 - type: CableApcExtension - components: - - pos: -50.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16598 - type: CableApcExtension - components: - - pos: -50.5,-45.5 - parent: 0 - type: Transform -- uid: 16599 - type: CableApcExtension - components: - - pos: -50.5,-46.5 - parent: 0 - type: Transform -- uid: 16600 - type: CableApcExtension - components: - - pos: -50.5,-47.5 - parent: 0 - type: Transform -- uid: 16601 - type: CableApcExtension - components: - - pos: -50.5,-48.5 - parent: 0 - type: Transform -- uid: 16602 - type: CableApcExtension - components: - - pos: -50.5,-49.5 - parent: 0 - type: Transform -- uid: 16603 - type: CableApcExtension - components: - - pos: -50.5,-50.5 - parent: 0 - type: Transform -- uid: 16604 - type: CableApcExtension - components: - - pos: -50.5,-51.5 - parent: 0 - type: Transform -- uid: 16605 - type: CableApcExtension - components: - - pos: -50.5,-52.5 - parent: 0 - type: Transform -- uid: 16606 - type: CableApcExtension - components: - - pos: -50.5,-53.5 - parent: 0 - type: Transform -- uid: 16607 - type: CableApcExtension - components: - - pos: -50.5,-54.5 - parent: 0 - type: Transform -- uid: 16608 - type: CableApcExtension - components: - - pos: -50.5,-55.5 - parent: 0 - type: Transform -- uid: 16609 - type: CableApcExtension - components: - - pos: -49.5,-53.5 - parent: 0 - type: Transform -- uid: 16610 - type: AirSensor - components: - - pos: -6.5,1.5 - parent: 0 - type: Transform -- uid: 16611 - type: AirSensor - components: - - pos: 1.5,1.5 - parent: 0 - type: Transform -- uid: 16612 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -15.5,0.5 - parent: 0 - type: Transform - - devices: - - 4107 - - 4108 - - 4109 - - 22826 - - 22835 - - 747 - - 755 - - 24213 - type: DeviceList -- uid: 16613 - type: CableApcExtension - components: - - pos: -46.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16614 - type: FireAlarm - components: - - pos: -12.5,0.5 - parent: 0 - type: Transform - - devices: - - 4107 - - 4108 - - 4109 - - 22826 - - 22835 - - 24213 - type: DeviceList -- uid: 16615 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -15.5,1.5 - parent: 0 - type: Transform - - devices: - - 4107 - - 4108 - - 4109 - - 22826 - - 22835 - - 24213 - type: DeviceList -- uid: 16616 - type: CableApcExtension - components: - - pos: -51.5,-54.5 - parent: 0 - type: Transform -- uid: 16617 - type: CableApcExtension - components: - - pos: -52.5,-54.5 - parent: 0 - type: Transform -- uid: 16618 - type: CableApcExtension - components: - - pos: -53.5,-54.5 - parent: 0 - type: Transform -- uid: 16619 - type: CableApcExtension - components: - - pos: -51.5,-52.5 - parent: 0 - type: Transform -- uid: 16620 - type: CableApcExtension - components: - - pos: -52.5,-52.5 - parent: 0 - type: Transform -- uid: 16621 - type: CableApcExtension - components: - - pos: -53.5,-52.5 - parent: 0 - type: Transform -- uid: 16622 - type: CableApcExtension - components: - - pos: -51.5,-47.5 - parent: 0 - type: Transform -- uid: 16623 - type: CableApcExtension - components: - - pos: -52.5,-47.5 - parent: 0 - type: Transform -- uid: 16624 - type: CableApcExtension - components: - - pos: -53.5,-47.5 - parent: 0 - type: Transform -- uid: 16625 - type: CableApcExtension - components: - - pos: -53.5,-48.5 - parent: 0 - type: Transform -- uid: 16626 - type: CableApcExtension - components: - - pos: -49.5,-46.5 - parent: 0 - type: Transform -- uid: 16627 - type: CableApcExtension - components: - - pos: -48.5,-46.5 - parent: 0 - type: Transform -- uid: 16628 - type: CableApcExtension - components: - - pos: -47.5,-46.5 - parent: 0 - type: Transform -- uid: 16629 - type: CableApcExtension - components: - - pos: -46.5,-46.5 - parent: 0 - type: Transform -- uid: 16630 - type: CableApcExtension - components: - - pos: -45.5,-46.5 - parent: 0 - type: Transform -- uid: 16631 - type: CableApcExtension - components: - - pos: -44.5,-46.5 - parent: 0 - type: Transform -- uid: 16632 - type: CableApcExtension - components: - - pos: -43.5,-46.5 - parent: 0 - type: Transform -- uid: 16633 - type: CableApcExtension - components: - - pos: -42.5,-46.5 - parent: 0 - type: Transform -- uid: 16634 - type: Poweredlight - components: - - pos: -42.5,-45.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16635 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-47.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16636 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16637 - type: Poweredlight - components: - - pos: -53.5,-45.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16638 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-56.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16639 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16640 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16641 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -54.5,-55.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16642 - type: PoweredSmallLight - components: - - pos: -54.5,-51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16643 - type: MonkeyCubeBox - components: - - pos: -46.53311,-52.435802 - parent: 0 - type: Transform -- uid: 16644 - type: FoodBanana - components: - - pos: -47.43936,-56.623302 - parent: 0 - type: Transform -- uid: 16645 - type: FoodBanana - components: - - pos: -46.65811,-54.076427 - parent: 0 - type: Transform -- uid: 16646 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-47.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology - type: SurveillanceCamera -- uid: 16647 - type: BoxMouthSwab - components: - - pos: -54.443115,-45.403034 - parent: 0 - type: Transform -- uid: 16648 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-36.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: CMO's Office - type: SurveillanceCamera -- uid: 16649 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-32.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - type: SurveillanceCamera -- uid: 16650 - type: SurveillanceCameraMedical - components: - - pos: -10.5,-26.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medbay Lobby - type: SurveillanceCamera -- uid: 16651 - type: SurveillanceCameraMedical - components: - - pos: -13.5,-51.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue - type: SurveillanceCamera -- uid: 16652 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-52.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Operating Theatre 2 - type: SurveillanceCamera -- uid: 16653 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-52.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Operating Theatre 1 - type: SurveillanceCamera -- uid: 16654 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: -27.5,-39.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Treatment Rooms - type: SurveillanceCamera -- uid: 16655 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-33.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Examinations - type: SurveillanceCamera -- uid: 16656 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-27.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cryonics - type: SurveillanceCamera -- uid: 16657 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: -21.5,-23.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Paramed - type: SurveillanceCamera -- uid: 16658 - type: ReinforcedWindow - components: - - pos: -58.5,-31.5 - parent: 0 - type: Transform -- uid: 16659 - type: ReinforcedWindow - components: - - pos: -58.5,-32.5 - parent: 0 - type: Transform -- uid: 16660 - type: WallReinforced - components: - - pos: -65.5,-19.5 - parent: 0 - type: Transform -- uid: 16661 - type: ReinforcedWindow - components: - - pos: -58.5,-33.5 - parent: 0 - type: Transform -- uid: 16662 - type: CableApcExtension - components: - - pos: 53.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16663 - type: Poweredlight - components: - - pos: 35.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16664 - type: Poweredlight - components: - - pos: 27.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16665 - type: WallReinforced - components: - - pos: -51.5,-37.5 - parent: 0 - type: Transform -- uid: 16666 - type: WallReinforced - components: - - pos: -51.5,-36.5 - parent: 0 - type: Transform -- uid: 16667 - type: WallReinforced - components: - - pos: -51.5,-35.5 - parent: 0 - type: Transform -- uid: 16668 - type: WallReinforced - components: - - pos: -51.5,-41.5 - parent: 0 - type: Transform -- uid: 16669 - type: WallReinforced - components: - - pos: -50.5,-41.5 - parent: 0 - type: Transform -- uid: 16670 - type: WallReinforced - components: - - pos: -44.5,-43.5 - parent: 0 - type: Transform -- uid: 16671 - type: WallReinforced - components: - - pos: -44.5,-42.5 - parent: 0 - type: Transform -- uid: 16672 - type: WallReinforced - components: - - pos: -48.5,-42.5 - parent: 0 - type: Transform -- uid: 16673 - type: WallReinforced - components: - - pos: -49.5,-42.5 - parent: 0 - type: Transform -- uid: 16674 - type: WallReinforced - components: - - pos: -50.5,-42.5 - parent: 0 - type: Transform -- uid: 16675 - type: ReinforcedWindow - components: - - pos: -45.5,-42.5 - parent: 0 - type: Transform -- uid: 16676 - type: ReinforcedWindow - components: - - pos: -46.5,-42.5 - parent: 0 - type: Transform -- uid: 16677 - type: ReinforcedWindow - components: - - pos: -47.5,-42.5 - parent: 0 - type: Transform -- uid: 16678 - type: WallSolid - components: - - pos: -40.5,-43.5 - parent: 0 - type: Transform -- uid: 16679 - type: WallSolid - components: - - pos: -41.5,-42.5 - parent: 0 - type: Transform -- uid: 16680 - type: WallSolid - components: - - pos: -42.5,-42.5 - parent: 0 - type: Transform -- uid: 16681 - type: WallSolid - components: - - pos: -43.5,-42.5 - parent: 0 - type: Transform -- uid: 16682 - type: WallSolid - components: - - pos: -40.5,-42.5 - parent: 0 - type: Transform -- uid: 16683 - type: FoodFrozenSnowconeClown - components: - - pos: -41.863617,-43.375446 - parent: 0 - type: Transform -- uid: 16684 - type: ClothingHeadHatTophat - components: - - pos: -43.66812,-43.23482 - parent: 0 - type: Transform -- uid: 16685 - type: ClothingNeckScarfStripedRed - components: - - pos: -42.784225,-43.57857 - parent: 0 - type: Transform -- uid: 16686 - type: FoodCarrot - components: - - pos: -43.3869,-43.531696 - parent: 0 - type: Transform -- uid: 16687 - type: WallSolid - components: - - pos: -57.5,-22.5 - parent: 0 - type: Transform -- uid: 16688 - type: WallSolid - components: - - pos: -50.5,-35.5 - parent: 0 - type: Transform -- uid: 16689 - type: WallSolid - components: - - pos: -49.5,-35.5 - parent: 0 - type: Transform -- uid: 16690 - type: WallSolid - components: - - pos: -48.5,-35.5 - parent: 0 - type: Transform -- uid: 16691 - type: WallSolidRust - components: - - pos: -48.5,-34.5 - parent: 0 - type: Transform -- uid: 16692 - type: WallSolid - components: - - pos: -48.5,-33.5 - parent: 0 - type: Transform -- uid: 16693 - type: WallSolid - components: - - pos: -48.5,-32.5 - parent: 0 - type: Transform -- uid: 16694 - type: WallSolid - components: - - pos: -49.5,-32.5 - parent: 0 - type: Transform -- uid: 16695 - type: WallSolid - components: - - pos: -48.5,-31.5 - parent: 0 - type: Transform -- uid: 16696 - type: WallSolid - components: - - pos: -48.5,-30.5 - parent: 0 - type: Transform -- uid: 16697 - type: WallSolidRust - components: - - pos: -48.5,-29.5 - parent: 0 - type: Transform -- uid: 16698 - type: WallSolid - components: - - pos: -49.5,-29.5 - parent: 0 - type: Transform -- uid: 16699 - type: WallSolid - components: - - pos: -48.5,-27.5 - parent: 0 - type: Transform -- uid: 16700 - type: WallSolid - components: - - pos: -48.5,-26.5 - parent: 0 - type: Transform -- uid: 16701 - type: WallSolid - components: - - pos: -49.5,-26.5 - parent: 0 - type: Transform -- uid: 16702 - type: WallSolid - components: - - pos: -48.5,-25.5 - parent: 0 - type: Transform -- uid: 16703 - type: WallSolid - components: - - pos: -48.5,-24.5 - parent: 0 - type: Transform -- uid: 16704 - type: WallSolidRust - components: - - pos: -50.5,-22.5 - parent: 0 - type: Transform -- uid: 16705 - type: WallSolidRust - components: - - pos: -49.5,-22.5 - parent: 0 - type: Transform -- uid: 16706 - type: WallSolidRust - components: - - pos: -48.5,-22.5 - parent: 0 - type: Transform -- uid: 16707 - type: WallSolidRust - components: - - pos: -48.5,-23.5 - parent: 0 - type: Transform -- uid: 16708 - type: WallSolid - components: - - pos: -51.5,-22.5 - parent: 0 - type: Transform -- uid: 16709 - type: WallSolid - components: - - pos: -52.5,-22.5 - parent: 0 - type: Transform -- uid: 16710 - type: WallSolid - components: - - pos: -53.5,-22.5 - parent: 0 - type: Transform -- uid: 16711 - type: WallSolidRust - components: - - pos: -54.5,-22.5 - parent: 0 - type: Transform -- uid: 16712 - type: WallSolid - components: - - pos: -55.5,-22.5 - parent: 0 - type: Transform -- uid: 16713 - type: WallSolid - components: - - pos: -56.5,-22.5 - parent: 0 - type: Transform -- uid: 16714 - type: WoodDoor - components: - - pos: -48.5,-28.5 - parent: 0 - type: Transform -- uid: 16715 - type: AirlockExternalLocked - components: - - pos: -52.5,-40.5 - parent: 0 - type: Transform -- uid: 16716 - type: AirlockExternalGlassLocked - components: - - pos: -50.5,-40.5 - parent: 0 - type: Transform -- uid: 16717 - type: WallSolid - components: - - pos: -48.5,-36.5 - parent: 0 - type: Transform -- uid: 16718 - type: WallSolid - components: - - pos: -48.5,-37.5 - parent: 0 - type: Transform -- uid: 16719 - type: WallSolid - components: - - pos: -48.5,-38.5 - parent: 0 - type: Transform -- uid: 16720 - type: WallSolid - components: - - pos: -48.5,-39.5 - parent: 0 - type: Transform -- uid: 16721 - type: AirlockAtmosphericsLocked - components: - - pos: -49.5,-39.5 - parent: 0 - type: Transform -- uid: 16722 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16723 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16724 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16725 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16726 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16727 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16728 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16729 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16730 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16731 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16732 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16733 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16734 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16735 - type: GasPipeStraight - components: - - pos: -49.5,-40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16736 - type: GasPipeStraight - components: - - pos: -49.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16737 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16738 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16739 - type: GasPressurePump - components: - - pos: -49.5,-38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16740 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -50.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16741 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16742 - type: GasPort - components: - - pos: -49.5,-36.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16743 - type: GasPort - components: - - pos: -50.5,-36.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 16744 - type: AirCanister - components: - - pos: -49.5,-36.5 - parent: 0 - type: Transform -- uid: 16745 - type: NitrogenCanister - components: - - pos: -50.5,-36.5 - parent: 0 - type: Transform -- uid: 16746 - type: Table - components: - - pos: -50.5,-38.5 - parent: 0 - type: Transform -- uid: 16747 - type: Grille - components: - - pos: -45.5,-42.5 - parent: 0 - type: Transform -- uid: 16748 - type: Grille - components: - - pos: -46.5,-42.5 - parent: 0 - type: Transform -- uid: 16749 - type: Grille - components: - - pos: -47.5,-42.5 - parent: 0 - type: Transform -- uid: 16750 - type: Grille - components: - - pos: -52.5,-35.5 - parent: 0 - type: Transform -- uid: 16751 - type: Grille - components: - - pos: -52.5,-34.5 - parent: 0 - type: Transform -- uid: 16752 - type: Grille - components: - - pos: -53.5,-35.5 - parent: 0 - type: Transform -- uid: 16753 - type: Grille - components: - - pos: -54.5,-35.5 - parent: 0 - type: Transform -- uid: 16754 - type: Grille - components: - - pos: -55.5,-35.5 - parent: 0 - type: Transform -- uid: 16755 - type: Grille - components: - - pos: -56.5,-35.5 - parent: 0 - type: Transform -- uid: 16756 - type: Grille - components: - - pos: -56.5,-34.5 - parent: 0 - type: Transform -- uid: 16757 - type: Grille - components: - - pos: -57.5,-34.5 - parent: 0 - type: Transform -- uid: 16758 - type: Grille - components: - - pos: -57.5,-33.5 - parent: 0 - type: Transform -- uid: 16759 - type: Grille - components: - - pos: -58.5,-33.5 - parent: 0 - type: Transform -- uid: 16760 - type: Grille - components: - - pos: -58.5,-32.5 - parent: 0 - type: Transform -- uid: 16761 - type: Grille - components: - - pos: -58.5,-31.5 - parent: 0 - type: Transform -- uid: 16762 - type: Grille - components: - - pos: -58.5,-30.5 - parent: 0 - type: Transform -- uid: 16763 - type: Grille - components: - - pos: -58.5,-29.5 - parent: 0 - type: Transform -- uid: 16764 - type: Grille - components: - - pos: -57.5,-29.5 - parent: 0 - type: Transform -- uid: 16765 - type: Grille - components: - - pos: -58.5,-25.5 - parent: 0 - type: Transform -- uid: 16766 - type: Grille - components: - - pos: -58.5,-24.5 - parent: 0 - type: Transform -- uid: 16767 - type: Grille - components: - - pos: -63.5,-19.5 - parent: 0 - type: Transform -- uid: 16768 - type: Grille - components: - - pos: -64.5,-19.5 - parent: 0 - type: Transform -- uid: 16769 - type: Grille - components: - - pos: -67.5,-19.5 - parent: 0 - type: Transform -- uid: 16770 - type: Grille - components: - - pos: -66.5,-19.5 - parent: 0 - type: Transform -- uid: 16771 - type: TableWood - components: - - pos: -51.5,-34.5 - parent: 0 - type: Transform -- uid: 16772 - type: TableWood - components: - - pos: -50.5,-34.5 - parent: 0 - type: Transform -- uid: 16773 - type: TableWood - components: - - pos: -49.5,-34.5 - parent: 0 - type: Transform -- uid: 16774 - type: TableWood - components: - - pos: -49.5,-33.5 - parent: 0 - type: Transform -- uid: 16775 - type: TableWood - components: - - pos: -55.5,-28.5 - parent: 0 - type: Transform -- uid: 16776 - type: TableWood - components: - - pos: -54.5,-28.5 - parent: 0 - type: Transform -- uid: 16777 - type: TableWood - components: - - pos: -54.5,-27.5 - parent: 0 - type: Transform -- uid: 16778 - type: TableWood - components: - - pos: -54.5,-26.5 - parent: 0 - type: Transform -- uid: 16779 - type: TableWood - components: - - pos: -54.5,-25.5 - parent: 0 - type: Transform -- uid: 16780 - type: TableWood - components: - - pos: -54.5,-24.5 - parent: 0 - type: Transform -- uid: 16781 - type: TableWood - components: - - pos: -54.5,-23.5 - parent: 0 - type: Transform -- uid: 16782 - type: TableWood - components: - - pos: -57.5,-24.5 - parent: 0 - type: Transform -- uid: 16783 - type: TableWood - components: - - pos: -57.5,-25.5 - parent: 0 - type: Transform -- uid: 16784 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: -57.5,-23.5 - parent: 0 - type: Transform -- uid: 16785 - type: LockerBoozeFilled - components: - - pos: -56.5,-23.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16786 - type: Rack - components: - - pos: -55.5,-23.5 - parent: 0 - type: Transform -- uid: 16787 - type: CarpetGreen - components: - - pos: -56.5,-24.5 - parent: 0 - type: Transform -- uid: 16788 - type: CarpetGreen - components: - - pos: -56.5,-25.5 - parent: 0 - type: Transform -- uid: 16789 - type: CarpetGreen - components: - - pos: -56.5,-26.5 - parent: 0 - type: Transform -- uid: 16790 - type: CarpetGreen - components: - - pos: -56.5,-27.5 - parent: 0 - type: Transform -- uid: 16791 - type: CarpetGreen - components: - - pos: -55.5,-24.5 - parent: 0 - type: Transform -- uid: 16792 - type: CarpetGreen - components: - - pos: -55.5,-25.5 - parent: 0 - type: Transform -- uid: 16793 - type: CarpetGreen - components: - - pos: -55.5,-26.5 - parent: 0 - type: Transform -- uid: 16794 - type: CarpetGreen - components: - - pos: -55.5,-27.5 - parent: 0 - type: Transform -- uid: 16795 - type: TableWood - components: - - pos: -57.5,-28.5 - parent: 0 - type: Transform -- uid: 16796 - type: SinkWide - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-27.5 - parent: 0 - type: Transform -- uid: 16797 - type: Mirror - components: - - pos: -58.5,-27.5 - parent: 0 - type: Transform -- uid: 16798 - type: DogBed - components: - - pos: -57.5,-26.5 - parent: 0 - type: Transform -- uid: 16799 - type: LampGold - components: - - pos: -57.509872,-28.24864 - parent: 0 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: Objects/Tools/flashlight.rsi/flashlight.png - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 16800 - type: DrinkShaker - components: - - pos: -55.712997,-23.300583 - parent: 0 - type: Transform -- uid: 16801 - type: LargeBeaker - components: - - pos: -55.447372,-23.519333 - parent: 0 - type: Transform -- uid: 16802 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -55.5,-29.5 - parent: 0 - type: Transform -- uid: 16803 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -54.5,-29.5 - parent: 0 - type: Transform -- uid: 16804 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-28.5 - parent: 0 - type: Transform -- uid: 16805 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-27.5 - parent: 0 - type: Transform -- uid: 16806 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-26.5 - parent: 0 - type: Transform -- uid: 16807 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-24.5 - parent: 0 - type: Transform -- uid: 16808 - type: TableCarpet - components: - - pos: -54.5,-34.5 - parent: 0 - type: Transform -- uid: 16809 - type: TableCarpet - components: - - pos: -57.5,-31.5 - parent: 0 - type: Transform -- uid: 16810 - type: PottedPlantRandom - components: - - pos: -56.5,-33.5 - parent: 0 - type: Transform -- uid: 16811 - type: PottedPlantRandom - components: - - pos: -49.5,-25.5 - parent: 0 - type: Transform -- uid: 16812 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-27.5 - parent: 0 - type: Transform -- uid: 16813 - type: RandomPosterAny - components: - - pos: -48.5,-27.5 - parent: 0 - type: Transform -- uid: 16814 - type: RandomPosterAny - components: - - pos: -49.5,-26.5 - parent: 0 - type: Transform -- uid: 16815 - type: RandomPosterAny - components: - - pos: -48.5,-24.5 - parent: 0 - type: Transform -- uid: 16816 - type: RandomPosterAny - components: - - pos: -53.5,-22.5 - parent: 0 - type: Transform -- uid: 16817 - type: RandomPosterAny - components: - - pos: -51.5,-35.5 - parent: 0 - type: Transform -- uid: 16818 - type: RandomPosterAny - components: - - pos: -48.5,-33.5 - parent: 0 - type: Transform -- uid: 16819 - type: RandomPosterAny - components: - - pos: -58.5,-26.5 - parent: 0 - type: Transform -- uid: 16820 - type: RandomInstruments - components: - - pos: -49.5,-33.5 - parent: 0 - type: Transform -- uid: 16821 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -49.5,-31.5 - parent: 0 - type: Transform -- uid: 16822 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: -49.5,-30.5 - parent: 0 - type: Transform -- uid: 16823 - type: Stool - components: - - pos: -54.5,-33.5 - parent: 0 - type: Transform -- uid: 16824 - type: Stool - components: - - pos: -57.5,-30.5 - parent: 0 - type: Transform -- uid: 16825 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-31.5 - parent: 0 - type: Transform -- uid: 16826 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-34.5 - parent: 0 - type: Transform -- uid: 16827 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-34.5 - parent: 0 - type: Transform -- uid: 16828 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -57.5,-32.5 - parent: 0 - type: Transform -- uid: 16829 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -50.5,-24.5 - parent: 0 - type: Transform -- uid: 16830 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -51.5,-24.5 - parent: 0 - type: Transform -- uid: 16831 - type: BlockGameArcade - components: - - pos: -51.5,-23.5 - parent: 0 - type: Transform -- uid: 16832 - type: BlockGameArcade - components: - - pos: -50.5,-23.5 - parent: 0 - type: Transform -- uid: 16833 - type: SpaceVillainArcadeFilled - components: - - pos: -49.5,-23.5 - parent: 0 - type: Transform -- uid: 16834 - type: WallReinforced - components: - - pos: -18.5,40.5 - parent: 0 - type: Transform -- uid: 16835 - type: Grille - components: - - pos: -67.5,-42.5 - parent: 0 - type: Transform -- uid: 16836 - type: Grille - components: - - pos: -67.5,-41.5 - parent: 0 - type: Transform -- uid: 16837 - type: Grille - components: - - pos: -67.5,-40.5 - parent: 0 - type: Transform -- uid: 16838 - type: Catwalk - components: - - pos: -61.5,-40.5 - parent: 0 - type: Transform -- uid: 16839 - type: Catwalk - components: - - pos: -60.5,-40.5 - parent: 0 - type: Transform -- uid: 16840 - type: Catwalk - components: - - pos: -59.5,-40.5 - parent: 0 - type: Transform -- uid: 16841 - type: Catwalk - components: - - pos: -58.5,-40.5 - parent: 0 - type: Transform -- uid: 16842 - type: Catwalk - components: - - pos: -57.5,-40.5 - parent: 0 - type: Transform -- uid: 16843 - type: Catwalk - components: - - pos: -56.5,-40.5 - parent: 0 - type: Transform -- uid: 16844 - type: Catwalk - components: - - pos: -55.5,-40.5 - parent: 0 - type: Transform -- uid: 16845 - type: Catwalk - components: - - pos: -54.5,-40.5 - parent: 0 - type: Transform -- uid: 16846 - type: Catwalk - components: - - pos: -53.5,-40.5 - parent: 0 - type: Transform -- uid: 16847 - type: AirlockExternal - components: - - pos: -62.5,-40.5 - parent: 0 - type: Transform -- uid: 16848 - type: WallSolid - components: - - pos: -62.5,-39.5 - parent: 0 - type: Transform -- uid: 16849 - type: WallSolid - components: - - pos: -62.5,-41.5 - parent: 0 - type: Transform -- uid: 16850 - type: WallSolid - components: - - pos: -62.5,-42.5 - parent: 0 - type: Transform -- uid: 16851 - type: WallSolid - components: - - pos: -62.5,-43.5 - parent: 0 - type: Transform -- uid: 16852 - type: WallSolid - components: - - pos: -66.5,-43.5 - parent: 0 - type: Transform -- uid: 16853 - type: WallSolid - components: - - pos: -66.5,-42.5 - parent: 0 - type: Transform -- uid: 16854 - type: WallSolid - components: - - pos: -66.5,-41.5 - parent: 0 - type: Transform -- uid: 16855 - type: WallSolid - components: - - pos: -66.5,-40.5 - parent: 0 - type: Transform -- uid: 16856 - type: WallSolid - components: - - pos: -64.5,-40.5 - parent: 0 - type: Transform -- uid: 16857 - type: WallSolid - components: - - pos: -64.5,-39.5 - parent: 0 - type: Transform -- uid: 16858 - type: WallSolid - components: - - pos: -64.5,-38.5 - parent: 0 - type: Transform -- uid: 16859 - type: WallSolid - components: - - pos: -65.5,-38.5 - parent: 0 - type: Transform -- uid: 16860 - type: WallSolid - components: - - pos: -66.5,-38.5 - parent: 0 - type: Transform -- uid: 16861 - type: Window - components: - - pos: -63.5,-43.5 - parent: 0 - type: Transform -- uid: 16862 - type: Window - components: - - pos: -64.5,-43.5 - parent: 0 - type: Transform -- uid: 16863 - type: Window - components: - - pos: -65.5,-43.5 - parent: 0 - type: Transform -- uid: 16864 - type: Window - components: - - pos: -63.5,-39.5 - parent: 0 - type: Transform -- uid: 16865 - type: Windoor - components: - - pos: -65.5,-40.5 - parent: 0 - type: Transform -- uid: 16866 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: -65.5,-40.5 - parent: 0 - type: Transform -- uid: 16867 - type: Railing - components: - - pos: -67.5,-39.5 - parent: 0 - type: Transform -- uid: 16868 - type: Railing - components: - - pos: -68.5,-39.5 - parent: 0 - type: Transform -- uid: 16869 - type: Railing - components: - - pos: -69.5,-39.5 - parent: 0 - type: Transform -- uid: 16870 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -69.5,-39.5 - parent: 0 - type: Transform -- uid: 16871 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -68.5,-39.5 - parent: 0 - type: Transform -- uid: 16872 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -67.5,-39.5 - parent: 0 - type: Transform -- uid: 16873 - type: RailingCornerSmall - components: - - pos: -66.5,-39.5 - parent: 0 - type: Transform -- uid: 16874 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-39.5 - parent: 0 - type: Transform -- uid: 16875 - type: Table - components: - - pos: -64.5,-42.5 - parent: 0 - type: Transform -- uid: 16876 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-42.5 - parent: 0 - type: Transform -- uid: 16877 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-42.5 - parent: 0 - type: Transform -- uid: 16878 - type: RadioHandheld - components: - - pos: -64.48487,-42.241108 - parent: 0 - type: Transform -- uid: 16879 - type: FoodPlateSmall - components: - - pos: -64.500496,-42.366108 - parent: 0 - type: Transform -- uid: 16880 - type: Grille - components: - - pos: -65.5,-43.5 - parent: 0 - type: Transform -- uid: 16881 - type: Grille - components: - - pos: -64.5,-43.5 - parent: 0 - type: Transform -- uid: 16882 - type: Grille - components: - - pos: -63.5,-43.5 - parent: 0 - type: Transform -- uid: 16883 - type: Grille - components: - - pos: -63.5,-39.5 - parent: 0 - type: Transform -- uid: 16884 - type: Skub - components: - - pos: -64.500496,-45.428608 - parent: 0 - type: Transform -- uid: 16885 - type: ReinforcedWindow - components: - - pos: -39.5,-65.5 - parent: 0 - type: Transform -- uid: 16886 - type: ReinforcedWindow - components: - - pos: -39.5,-64.5 - parent: 0 - type: Transform -- uid: 16887 - type: ReinforcedWindow - components: - - pos: -40.5,-64.5 - parent: 0 - type: Transform -- uid: 16888 - type: ReinforcedWindow - components: - - pos: -41.5,-64.5 - parent: 0 - type: Transform -- uid: 16889 - type: ReinforcedWindow - components: - - pos: -42.5,-64.5 - parent: 0 - type: Transform -- uid: 16890 - type: ReinforcedWindow - components: - - pos: -42.5,-62.5 - parent: 0 - type: Transform -- uid: 16891 - type: ReinforcedWindow - components: - - pos: -41.5,-62.5 - parent: 0 - type: Transform -- uid: 16892 - type: ReinforcedWindow - components: - - pos: -40.5,-62.5 - parent: 0 - type: Transform -- uid: 16893 - type: ReinforcedWindow - components: - - pos: -39.5,-62.5 - parent: 0 - type: Transform -- uid: 16894 - type: WallReinforced - components: - - pos: -38.5,-65.5 - parent: 0 - type: Transform -- uid: 16895 - type: WallReinforced - components: - - pos: -37.5,-65.5 - parent: 0 - type: Transform -- uid: 16896 - type: WallReinforced - components: - - pos: -36.5,-65.5 - parent: 0 - type: Transform -- uid: 16897 - type: WallReinforced - components: - - pos: -35.5,-65.5 - parent: 0 - type: Transform -- uid: 16898 - type: WallReinforced - components: - - pos: -35.5,-64.5 - parent: 0 - type: Transform -- uid: 16899 - type: WallReinforced - components: - - pos: -34.5,-64.5 - parent: 0 - type: Transform -- uid: 16900 - type: WallReinforced - components: - - pos: -33.5,-64.5 - parent: 0 - type: Transform -- uid: 16901 - type: WallReinforced - components: - - pos: -32.5,-64.5 - parent: 0 - type: Transform -- uid: 16902 - type: WallReinforced - components: - - pos: -31.5,-64.5 - parent: 0 - type: Transform -- uid: 16903 - type: WallReinforced - components: - - pos: -31.5,-65.5 - parent: 0 - type: Transform -- uid: 16904 - type: WallReinforced - components: - - pos: -35.5,-63.5 - parent: 0 - type: Transform -- uid: 16905 - type: WallReinforced - components: - - pos: -35.5,-62.5 - parent: 0 - type: Transform -- uid: 16906 - type: WallReinforced - components: - - pos: -35.5,-61.5 - parent: 0 - type: Transform -- uid: 16907 - type: WallReinforced - components: - - pos: -36.5,-61.5 - parent: 0 - type: Transform -- uid: 16908 - type: WallReinforced - components: - - pos: -38.5,-61.5 - parent: 0 - type: Transform -- uid: 16909 - type: Catwalk - components: - - pos: -57.5,-77.5 - parent: 0 - type: Transform -- uid: 16910 - type: Catwalk - components: - - pos: -51.5,-77.5 - parent: 0 - type: Transform -- uid: 16911 - type: Catwalk - components: - - pos: -45.5,-77.5 - parent: 0 - type: Transform -- uid: 16912 - type: Catwalk - components: - - pos: -39.5,-77.5 - parent: 0 - type: Transform -- uid: 16913 - type: Grille - components: - - pos: -40.5,-75.5 - parent: 0 - type: Transform -- uid: 16914 - type: Grille - components: - - pos: -41.5,-75.5 - parent: 0 - type: Transform -- uid: 16915 - type: Grille - components: - - pos: -42.5,-75.5 - parent: 0 - type: Transform -- uid: 16916 - type: Grille - components: - - pos: -43.5,-75.5 - parent: 0 - type: Transform -- uid: 16917 - type: Grille - components: - - pos: -44.5,-75.5 - parent: 0 - type: Transform -- uid: 16918 - type: Grille - components: - - pos: -46.5,-75.5 - parent: 0 - type: Transform -- uid: 16919 - type: Grille - components: - - pos: -47.5,-75.5 - parent: 0 - type: Transform -- uid: 16920 - type: Grille - components: - - pos: -48.5,-75.5 - parent: 0 - type: Transform -- uid: 16921 - type: Grille - components: - - pos: -49.5,-75.5 - parent: 0 - type: Transform -- uid: 16922 - type: Grille - components: - - pos: -50.5,-75.5 - parent: 0 - type: Transform -- uid: 16923 - type: Grille - components: - - pos: -52.5,-75.5 - parent: 0 - type: Transform -- uid: 16924 - type: Grille - components: - - pos: -53.5,-75.5 - parent: 0 - type: Transform -- uid: 16925 - type: Grille - components: - - pos: -54.5,-75.5 - parent: 0 - type: Transform -- uid: 16926 - type: Grille - components: - - pos: -55.5,-75.5 - parent: 0 - type: Transform -- uid: 16927 - type: Grille - components: - - pos: -56.5,-75.5 - parent: 0 - type: Transform -- uid: 16928 - type: Grille - components: - - pos: -58.5,-75.5 - parent: 0 - type: Transform -- uid: 16929 - type: Grille - components: - - pos: -59.5,-75.5 - parent: 0 - type: Transform -- uid: 16930 - type: Grille - components: - - pos: -63.5,-73.5 - parent: 0 - type: Transform -- uid: 16931 - type: Grille - components: - - pos: -63.5,-72.5 - parent: 0 - type: Transform -- uid: 16932 - type: Grille - components: - - pos: -63.5,-71.5 - parent: 0 - type: Transform -- uid: 16933 - type: Grille - components: - - pos: -63.5,-70.5 - parent: 0 - type: Transform -- uid: 16934 - type: Grille - components: - - pos: -63.5,-69.5 - parent: 0 - type: Transform -- uid: 16935 - type: Grille - components: - - pos: -63.5,-68.5 - parent: 0 - type: Transform -- uid: 16936 - type: Grille - components: - - pos: -63.5,-67.5 - parent: 0 - type: Transform -- uid: 16937 - type: Grille - components: - - pos: -63.5,-66.5 - parent: 0 - type: Transform -- uid: 16938 - type: Grille - components: - - pos: -63.5,-65.5 - parent: 0 - type: Transform -- uid: 16939 - type: Grille - components: - - pos: -63.5,-64.5 - parent: 0 - type: Transform -- uid: 16940 - type: Grille - components: - - pos: -63.5,-63.5 - parent: 0 - type: Transform -- uid: 16941 - type: Grille - components: - - pos: -63.5,-62.5 - parent: 0 - type: Transform -- uid: 16942 - type: Grille - components: - - pos: -63.5,-61.5 - parent: 0 - type: Transform -- uid: 16943 - type: Grille - components: - - pos: -63.5,-60.5 - parent: 0 - type: Transform -- uid: 16944 - type: Grille - components: - - pos: -63.5,-59.5 - parent: 0 - type: Transform -- uid: 16945 - type: Grille - components: - - pos: -63.5,-58.5 - parent: 0 - type: Transform -- uid: 16946 - type: Grille - components: - - pos: -58.5,-57.5 - parent: 0 - type: Transform -- uid: 16947 - type: Grille - components: - - pos: -59.5,-57.5 - parent: 0 - type: Transform -- uid: 16948 - type: Grille - components: - - pos: -60.5,-57.5 - parent: 0 - type: Transform -- uid: 16949 - type: Grille - components: - - pos: -61.5,-57.5 - parent: 0 - type: Transform -- uid: 16950 - type: Grille - components: - - pos: -62.5,-57.5 - parent: 0 - type: Transform -- uid: 16951 - type: Grille - components: - - pos: -63.5,-57.5 - parent: 0 - type: Transform -- uid: 16952 - type: Catwalk - components: - - pos: -60.5,-60.5 - parent: 0 - type: Transform -- uid: 16953 - type: Catwalk - components: - - pos: -60.5,-59.5 - parent: 0 - type: Transform -- uid: 16954 - type: TableWood - components: - - pos: -60.5,-59.5 - parent: 0 - type: Transform -- uid: 16955 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -60.5,-60.5 - parent: 0 - type: Transform -- uid: 16956 - type: CrayonBox - components: - - pos: -60.537613,-59.31129 - parent: 0 - type: Transform -- uid: 16957 - type: Paper - components: - - pos: -60.475113,-59.483166 - parent: 0 - type: Transform -- uid: 16958 - type: CableHV - components: - - pos: -58.5,-70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16959 - type: CableHV - components: - - pos: -58.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16960 - type: CableHV - components: - - pos: -58.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16961 - type: CableHV - components: - - pos: -58.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16962 - type: CableHV - components: - - pos: -58.5,-66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16963 - type: CableHV - components: - - pos: -58.5,-65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16964 - type: CableHV - components: - - pos: -58.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16965 - type: CableHV - components: - - pos: -56.5,-70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16966 - type: CableHV - components: - - pos: -56.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16967 - type: CableHV - components: - - pos: -56.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16968 - type: CableHV - components: - - pos: -56.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16969 - type: CableHV - components: - - pos: -56.5,-66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16970 - type: CableHV - components: - - pos: -56.5,-65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16971 - type: CableHV - components: - - pos: -56.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16972 - type: CableHV - components: - - pos: -57.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16973 - type: CableHV - components: - - pos: -53.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16974 - type: CableHV - components: - - pos: -54.5,-70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16975 - type: CableHV - components: - - pos: -54.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16976 - type: CableHV - components: - - pos: -54.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16977 - type: CableHV - components: - - pos: -54.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16978 - type: CableHV - components: - - pos: -54.5,-66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16979 - type: CableHV - components: - - pos: -54.5,-65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16980 - type: CableHV - components: - - pos: -54.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16981 - type: CableHV - components: - - pos: -52.5,-70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16982 - type: CableHV - components: - - pos: -52.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16983 - type: CableHV - components: - - pos: -52.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16984 - type: CableHV - components: - - pos: -52.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16985 - type: CableHV - components: - - pos: -52.5,-66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16986 - type: CableHV - components: - - pos: -52.5,-65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16987 - type: CableHV - components: - - pos: -52.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16988 - type: CableHV - components: - - pos: -50.5,-70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16989 - type: CableHV - components: - - pos: -50.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16990 - type: CableHV - components: - - pos: -50.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16991 - type: CableHV - components: - - pos: -50.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16992 - type: CableHV - components: - - pos: -50.5,-66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16993 - type: CableHV - components: - - pos: -50.5,-65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16994 - type: CableHV - components: - - pos: -50.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16995 - type: CableHV - components: - - pos: -49.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16996 - type: CableHV - components: - - pos: -48.5,-70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16997 - type: CableHV - components: - - pos: -48.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16998 - type: CableHV - components: - - pos: -48.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16999 - type: CableHV - components: - - pos: -48.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17000 - type: CableHV - components: - - pos: -48.5,-66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17001 - type: CableHV - components: - - pos: -48.5,-65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17002 - type: CableHV - components: - - pos: -48.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17003 - type: CableHV - components: - - pos: -46.5,-70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17004 - type: CableHV - components: - - pos: -46.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17005 - type: CableHV - components: - - pos: -46.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17006 - type: CableHV - components: - - pos: -46.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17007 - type: CableHV - components: - - pos: -46.5,-66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17008 - type: CableHV - components: - - pos: -46.5,-65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17009 - type: CableHV - components: - - pos: -46.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17010 - type: CableHV - components: - - pos: -44.5,-70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17011 - type: CableHV - components: - - pos: -44.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17012 - type: CableHV - components: - - pos: -44.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17013 - type: CableHV - components: - - pos: -44.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17014 - type: CableHV - components: - - pos: -44.5,-66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17015 - type: CableHV - components: - - pos: -44.5,-65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17016 - type: CableHV - components: - - pos: -44.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17017 - type: CableHV - components: - - pos: -45.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17018 - type: CableHV - components: - - pos: -46.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17019 - type: CableHV - components: - - pos: -45.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17020 - type: CableHV - components: - - pos: -44.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17021 - type: CableHV - components: - - pos: -45.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17022 - type: CableHV - components: - - pos: -48.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17023 - type: CableHV - components: - - pos: -49.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17024 - type: CableHV - components: - - pos: -50.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17025 - type: CableHV - components: - - pos: -49.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17026 - type: CableHV - components: - - pos: -52.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17027 - type: CableHV - components: - - pos: -53.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17028 - type: CableHV - components: - - pos: -54.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17029 - type: CableHV - components: - - pos: -53.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17030 - type: CableHV - components: - - pos: -56.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17031 - type: CableHV - components: - - pos: -57.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17032 - type: CableHV - components: - - pos: -58.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17033 - type: CableHV - components: - - pos: -57.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17034 - type: CableHV - components: - - pos: -57.5,-70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17035 - type: CableHV - components: - - pos: -53.5,-70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17036 - type: CableHV - components: - - pos: -49.5,-70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17037 - type: CableHV - components: - - pos: -45.5,-70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17038 - type: CableHV - components: - - pos: -57.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17039 - type: CableHV - components: - - pos: -53.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17040 - type: CableHV - components: - - pos: -49.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17041 - type: CableHV - components: - - pos: -45.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17042 - type: CableHV - components: - - pos: -60.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17043 - type: CableHV - components: - - pos: -61.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17044 - type: SolarPanel - components: - - pos: -58.5,-69.5 - parent: 0 - type: Transform -- uid: 17045 - type: SolarPanel - components: - - pos: -58.5,-68.5 - parent: 0 - type: Transform -- uid: 17046 - type: SolarTracker - components: - - pos: -61.5,-63.5 - parent: 0 - type: Transform -- uid: 17047 - type: SolarPanel - components: - - pos: -58.5,-70.5 - parent: 0 - type: Transform -- uid: 17048 - type: SolarPanel - components: - - pos: -58.5,-67.5 - parent: 0 - type: Transform -- uid: 17049 - type: SolarPanel - components: - - pos: -58.5,-66.5 - parent: 0 - type: Transform -- uid: 17050 - type: SolarPanel - components: - - pos: -58.5,-65.5 - parent: 0 - type: Transform -- uid: 17051 - type: SolarPanel - components: - - pos: -58.5,-64.5 - parent: 0 - type: Transform -- uid: 17052 - type: SolarPanel - components: - - pos: -57.5,-71.5 - parent: 0 - type: Transform -- uid: 17053 - type: SolarPanel - components: - - pos: -56.5,-70.5 - parent: 0 - type: Transform -- uid: 17054 - type: SolarPanel - components: - - pos: -56.5,-69.5 - parent: 0 - type: Transform -- uid: 17055 - type: SolarPanel - components: - - pos: -56.5,-68.5 - parent: 0 - type: Transform -- uid: 17056 - type: SolarPanel - components: - - pos: -56.5,-67.5 - parent: 0 - type: Transform -- uid: 17057 - type: SolarPanel - components: - - pos: -56.5,-66.5 - parent: 0 - type: Transform -- uid: 17058 - type: SolarPanel - components: - - pos: -56.5,-65.5 - parent: 0 - type: Transform -- uid: 17059 - type: SolarPanel - components: - - pos: -56.5,-64.5 - parent: 0 - type: Transform -- uid: 17060 - type: SolarPanel - components: - - pos: -58.5,-62.5 - parent: 0 - type: Transform -- uid: 17061 - type: SolarPanel - components: - - pos: -57.5,-61.5 - parent: 0 - type: Transform -- uid: 17062 - type: SolarPanel - components: - - pos: -56.5,-62.5 - parent: 0 - type: Transform -- uid: 17063 - type: SolarPanel - components: - - pos: -54.5,-62.5 - parent: 0 - type: Transform -- uid: 17064 - type: SolarPanel - components: - - pos: -53.5,-61.5 - parent: 0 - type: Transform -- uid: 17065 - type: SolarPanel - components: - - pos: -52.5,-62.5 - parent: 0 - type: Transform -- uid: 17066 - type: SolarPanel - components: - - pos: -50.5,-62.5 - parent: 0 - type: Transform -- uid: 17067 - type: SolarPanel - components: - - pos: -49.5,-61.5 - parent: 0 - type: Transform -- uid: 17068 - type: SolarPanel - components: - - pos: -48.5,-62.5 - parent: 0 - type: Transform -- uid: 17069 - type: SolarPanel - components: - - pos: -46.5,-62.5 - parent: 0 - type: Transform -- uid: 17070 - type: SolarPanel - components: - - pos: -45.5,-61.5 - parent: 0 - type: Transform -- uid: 17071 - type: SolarPanel - components: - - pos: -44.5,-62.5 - parent: 0 - type: Transform -- uid: 17072 - type: SolarPanel - components: - - pos: -44.5,-70.5 - parent: 0 - type: Transform -- uid: 17073 - type: SolarPanel - components: - - pos: -44.5,-69.5 - parent: 0 - type: Transform -- uid: 17074 - type: SolarPanel - components: - - pos: -44.5,-68.5 - parent: 0 - type: Transform -- uid: 17075 - type: SolarPanel - components: - - pos: -44.5,-67.5 - parent: 0 - type: Transform -- uid: 17076 - type: SolarPanel - components: - - pos: -44.5,-66.5 - parent: 0 - type: Transform -- uid: 17077 - type: SolarPanel - components: - - pos: -44.5,-65.5 - parent: 0 - type: Transform -- uid: 17078 - type: SolarPanel - components: - - pos: -44.5,-64.5 - parent: 0 - type: Transform -- uid: 17079 - type: SolarPanel - components: - - pos: -46.5,-64.5 - parent: 0 - type: Transform -- uid: 17080 - type: SolarPanel - components: - - pos: -46.5,-65.5 - parent: 0 - type: Transform -- uid: 17081 - type: SolarPanel - components: - - pos: -46.5,-66.5 - parent: 0 - type: Transform -- uid: 17082 - type: SolarPanel - components: - - pos: -46.5,-67.5 - parent: 0 - type: Transform -- uid: 17083 - type: SolarPanel - components: - - pos: -46.5,-68.5 - parent: 0 - type: Transform -- uid: 17084 - type: SolarPanel - components: - - pos: -46.5,-69.5 - parent: 0 - type: Transform -- uid: 17085 - type: SolarPanel - components: - - pos: -46.5,-70.5 - parent: 0 - type: Transform -- uid: 17086 - type: SolarPanel - components: - - pos: -48.5,-70.5 - parent: 0 - type: Transform -- uid: 17087 - type: SolarPanel - components: - - pos: -48.5,-69.5 - parent: 0 - type: Transform -- uid: 17088 - type: SolarPanel - components: - - pos: -48.5,-68.5 - parent: 0 - type: Transform -- uid: 17089 - type: SolarPanel - components: - - pos: -48.5,-67.5 - parent: 0 - type: Transform -- uid: 17090 - type: SolarPanel - components: - - pos: -48.5,-66.5 - parent: 0 - type: Transform -- uid: 17091 - type: SolarPanel - components: - - pos: -48.5,-65.5 - parent: 0 - type: Transform -- uid: 17092 - type: SolarPanel - components: - - pos: -48.5,-64.5 - parent: 0 - type: Transform -- uid: 17093 - type: SolarPanel - components: - - pos: -50.5,-64.5 - parent: 0 - type: Transform -- uid: 17094 - type: SolarPanel - components: - - pos: -50.5,-65.5 - parent: 0 - type: Transform -- uid: 17095 - type: SolarPanel - components: - - pos: -50.5,-66.5 - parent: 0 - type: Transform -- uid: 17096 - type: SolarPanel - components: - - pos: -50.5,-67.5 - parent: 0 - type: Transform -- uid: 17097 - type: SolarPanel - components: - - pos: -50.5,-68.5 - parent: 0 - type: Transform -- uid: 17098 - type: SolarPanel - components: - - pos: -50.5,-69.5 - parent: 0 - type: Transform -- uid: 17099 - type: SolarPanel - components: - - pos: -50.5,-70.5 - parent: 0 - type: Transform -- uid: 17100 - type: SolarPanel - components: - - pos: -52.5,-70.5 - parent: 0 - type: Transform -- uid: 17101 - type: SolarPanel - components: - - pos: -52.5,-69.5 - parent: 0 - type: Transform -- uid: 17102 - type: SolarPanel - components: - - pos: -52.5,-68.5 - parent: 0 - type: Transform -- uid: 17103 - type: SolarPanel - components: - - pos: -52.5,-67.5 - parent: 0 - type: Transform -- uid: 17104 - type: SolarPanel - components: - - pos: -52.5,-66.5 - parent: 0 - type: Transform -- uid: 17105 - type: SolarPanel - components: - - pos: -52.5,-65.5 - parent: 0 - type: Transform -- uid: 17106 - type: SolarPanel - components: - - pos: -52.5,-64.5 - parent: 0 - type: Transform -- uid: 17107 - type: SolarPanel - components: - - pos: -54.5,-64.5 - parent: 0 - type: Transform -- uid: 17108 - type: SolarPanel - components: - - pos: -54.5,-65.5 - parent: 0 - type: Transform -- uid: 17109 - type: SolarPanel - components: - - pos: -54.5,-66.5 - parent: 0 - type: Transform -- uid: 17110 - type: SolarPanel - components: - - pos: -54.5,-67.5 - parent: 0 - type: Transform -- uid: 17111 - type: SolarPanel - components: - - pos: -54.5,-68.5 - parent: 0 - type: Transform -- uid: 17112 - type: SolarPanel - components: - - pos: -54.5,-69.5 - parent: 0 - type: Transform -- uid: 17113 - type: SolarPanel - components: - - pos: -54.5,-70.5 - parent: 0 - type: Transform -- uid: 17114 - type: SolarPanel - components: - - pos: -53.5,-71.5 - parent: 0 - type: Transform -- uid: 17115 - type: SolarPanel - components: - - pos: -49.5,-71.5 - parent: 0 - type: Transform -- uid: 17116 - type: SolarPanel - components: - - pos: -45.5,-71.5 - parent: 0 - type: Transform -- uid: 17117 - type: Catwalk - components: - - pos: -53.5,-70.5 - parent: 0 - type: Transform -- uid: 17118 - type: Catwalk - components: - - pos: -53.5,-69.5 - parent: 0 - type: Transform -- uid: 17119 - type: Catwalk - components: - - pos: -53.5,-68.5 - parent: 0 - type: Transform -- uid: 17120 - type: Catwalk - components: - - pos: -53.5,-67.5 - parent: 0 - type: Transform -- uid: 17121 - type: Catwalk - components: - - pos: -53.5,-66.5 - parent: 0 - type: Transform -- uid: 17122 - type: Catwalk - components: - - pos: -53.5,-65.5 - parent: 0 - type: Transform -- uid: 17123 - type: Catwalk - components: - - pos: -53.5,-64.5 - parent: 0 - type: Transform -- uid: 17124 - type: Catwalk - components: - - pos: -53.5,-63.5 - parent: 0 - type: Transform -- uid: 17125 - type: Catwalk - components: - - pos: -53.5,-62.5 - parent: 0 - type: Transform -- uid: 17126 - type: Catwalk - components: - - pos: -57.5,-70.5 - parent: 0 - type: Transform -- uid: 17127 - type: Catwalk - components: - - pos: -57.5,-69.5 - parent: 0 - type: Transform -- uid: 17128 - type: Catwalk - components: - - pos: -57.5,-68.5 - parent: 0 - type: Transform -- uid: 17129 - type: Catwalk - components: - - pos: -57.5,-67.5 - parent: 0 - type: Transform -- uid: 17130 - type: Catwalk - components: - - pos: -57.5,-66.5 - parent: 0 - type: Transform -- uid: 17131 - type: Catwalk - components: - - pos: -57.5,-65.5 - parent: 0 - type: Transform -- uid: 17132 - type: Catwalk - components: - - pos: -57.5,-64.5 - parent: 0 - type: Transform -- uid: 17133 - type: Catwalk - components: - - pos: -57.5,-63.5 - parent: 0 - type: Transform -- uid: 17134 - type: Catwalk - components: - - pos: -57.5,-62.5 - parent: 0 - type: Transform -- uid: 17135 - type: Catwalk - components: - - pos: -60.5,-63.5 - parent: 0 - type: Transform -- uid: 17136 - type: Catwalk - components: - - pos: -59.5,-63.5 - parent: 0 - type: Transform -- uid: 17137 - type: Catwalk - components: - - pos: -58.5,-63.5 - parent: 0 - type: Transform -- uid: 17138 - type: Catwalk - components: - - pos: -56.5,-63.5 - parent: 0 - type: Transform -- uid: 17139 - type: Catwalk - components: - - pos: -55.5,-63.5 - parent: 0 - type: Transform -- uid: 17140 - type: Catwalk - components: - - pos: -54.5,-63.5 - parent: 0 - type: Transform -- uid: 17141 - type: Catwalk - components: - - pos: -52.5,-63.5 - parent: 0 - type: Transform -- uid: 17142 - type: Catwalk - components: - - pos: -51.5,-63.5 - parent: 0 - type: Transform -- uid: 17143 - type: Catwalk - components: - - pos: -50.5,-63.5 - parent: 0 - type: Transform -- uid: 17144 - type: Catwalk - components: - - pos: -49.5,-63.5 - parent: 0 - type: Transform -- uid: 17145 - type: Catwalk - components: - - pos: -48.5,-63.5 - parent: 0 - type: Transform -- uid: 17146 - type: Catwalk - components: - - pos: -47.5,-63.5 - parent: 0 - type: Transform -- uid: 17147 - type: Catwalk - components: - - pos: -46.5,-63.5 - parent: 0 - type: Transform -- uid: 17148 - type: Catwalk - components: - - pos: -45.5,-63.5 - parent: 0 - type: Transform -- uid: 17149 - type: Catwalk - components: - - pos: -44.5,-63.5 - parent: 0 - type: Transform -- uid: 17150 - type: Catwalk - components: - - pos: -43.5,-63.5 - parent: 0 - type: Transform -- uid: 17151 - type: Catwalk - components: - - pos: -45.5,-62.5 - parent: 0 - type: Transform -- uid: 17152 - type: Catwalk - components: - - pos: -49.5,-62.5 - parent: 0 - type: Transform -- uid: 17153 - type: Catwalk - components: - - pos: -49.5,-64.5 - parent: 0 - type: Transform -- uid: 17154 - type: Catwalk - components: - - pos: -49.5,-65.5 - parent: 0 - type: Transform -- uid: 17155 - type: Catwalk - components: - - pos: -49.5,-66.5 - parent: 0 - type: Transform -- uid: 17156 - type: Catwalk - components: - - pos: -49.5,-67.5 - parent: 0 - type: Transform -- uid: 17157 - type: Catwalk - components: - - pos: -49.5,-68.5 - parent: 0 - type: Transform -- uid: 17158 - type: Catwalk - components: - - pos: -49.5,-69.5 - parent: 0 - type: Transform -- uid: 17159 - type: Catwalk - components: - - pos: -49.5,-70.5 - parent: 0 - type: Transform -- uid: 17160 - type: Catwalk - components: - - pos: -45.5,-70.5 - parent: 0 - type: Transform -- uid: 17161 - type: Catwalk - components: - - pos: -45.5,-69.5 - parent: 0 - type: Transform -- uid: 17162 - type: Catwalk - components: - - pos: -45.5,-68.5 - parent: 0 - type: Transform -- uid: 17163 - type: Catwalk - components: - - pos: -45.5,-67.5 - parent: 0 - type: Transform -- uid: 17164 - type: Catwalk - components: - - pos: -45.5,-66.5 - parent: 0 - type: Transform -- uid: 17165 - type: Catwalk - components: - - pos: -45.5,-65.5 - parent: 0 - type: Transform -- uid: 17166 - type: Catwalk - components: - - pos: -45.5,-64.5 - parent: 0 - type: Transform -- uid: 17167 - type: Catwalk - components: - - pos: -63.5,-74.5 - parent: 0 - type: Transform -- uid: 17168 - type: AirlockEngineeringLocked - components: - - pos: -37.5,-61.5 - parent: 0 - type: Transform -- uid: 17169 - type: SMESBasic - components: - - name: South West Solars SMES - type: MetaData - - pos: -38.5,-64.5 - parent: 0 - type: Transform -- uid: 17170 - type: SubstationBasic - components: - - name: South West Solars Substation - type: MetaData - - pos: -36.5,-64.5 - parent: 0 - type: Transform -- uid: 17171 - type: ComputerSolarControl - components: - - rot: 3.141592653589793 rad - pos: -37.5,-64.5 - parent: 0 - type: Transform -- uid: 17172 - type: APCBasic - components: - - pos: -36.5,-61.5 - parent: 0 - type: Transform -- uid: 17173 - type: CableHV - components: - - pos: -42.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17174 - type: CableHV - components: - - pos: -41.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17175 - type: CableHV - components: - - pos: -40.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17176 - type: CableHV - components: - - pos: -39.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17177 - type: CableHV - components: - - pos: -38.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17178 - type: CableHV - components: - - pos: -38.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17179 - type: CableHV - components: - - pos: -37.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17180 - type: CableHV - components: - - pos: -36.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17181 - type: CableTerminal - components: - - pos: -38.5,-63.5 - parent: 0 - type: Transform -- uid: 17182 - type: CableMV - components: - - pos: -36.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17183 - type: CableMV - components: - - pos: -36.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17184 - type: CableMV - components: - - pos: -36.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17185 - type: CableMV - components: - - pos: -36.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17186 - type: CableApcExtension - components: - - pos: -36.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17187 - type: CableApcExtension - components: - - pos: -36.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17188 - type: CableApcExtension - components: - - pos: -36.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17189 - type: CableApcExtension - components: - - pos: -37.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17190 - type: CableApcExtension - components: - - pos: -38.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17191 - type: CableApcExtension - components: - - pos: -39.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17192 - type: CableApcExtension - components: - - pos: -40.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17193 - type: CableApcExtension - components: - - pos: -41.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17194 - type: CableApcExtension - components: - - pos: -36.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17195 - type: CableApcExtension - components: - - pos: -37.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17196 - type: CableApcExtension - components: - - pos: -38.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17197 - type: CableApcExtension - components: - - pos: -38.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17198 - type: CableApcExtension - components: - - pos: -38.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17199 - type: CableApcExtension - components: - - pos: -38.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17200 - type: CableApcExtension - components: - - pos: -38.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17201 - type: CableApcExtension - components: - - pos: -38.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17202 - type: CableApcExtension - components: - - pos: -38.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17203 - type: CableApcExtension - components: - - pos: -38.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17204 - type: AirlockExternalGlassLocked - components: - - pos: -42.5,-63.5 - parent: 0 - type: Transform -- uid: 17205 - type: AirlockExternalGlassLocked - components: - - pos: -39.5,-63.5 - parent: 0 - type: Transform -- uid: 17206 - type: CableHV - components: - - pos: -43.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17207 - type: Grille - components: - - pos: -39.5,-65.5 - parent: 0 - type: Transform -- uid: 17208 - type: Grille - components: - - pos: -39.5,-64.5 - parent: 0 - type: Transform -- uid: 17209 - type: Grille - components: - - pos: -40.5,-64.5 - parent: 0 - type: Transform -- uid: 17210 - type: Grille - components: - - pos: -41.5,-64.5 - parent: 0 - type: Transform -- uid: 17211 - type: Grille - components: - - pos: -42.5,-64.5 - parent: 0 - type: Transform -- uid: 17212 - type: Grille - components: - - pos: -42.5,-62.5 - parent: 0 - type: Transform -- uid: 17213 - type: Grille - components: - - pos: -41.5,-62.5 - parent: 0 - type: Transform -- uid: 17214 - type: Grille - components: - - pos: -40.5,-62.5 - parent: 0 - type: Transform -- uid: 17215 - type: Grille - components: - - pos: -39.5,-62.5 - parent: 0 - type: Transform -- uid: 17216 - type: CrateEngineeringCableHV - components: - - pos: -38.5,-62.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 17217 - type: Table - components: - - pos: -36.5,-62.5 - parent: 0 - type: Transform -- uid: 17218 - type: ChairOfficeDark - components: - - pos: -37.5,-63.5 - parent: 0 - type: Transform -- uid: 17219 - type: AirlockMaintLocked - components: - - pos: -38.5,-59.5 - parent: 0 - type: Transform -- uid: 17220 - type: WallSolid - components: - - pos: -39.5,-5.5 - parent: 0 - type: Transform -- uid: 17221 - type: WallSolid - components: - - pos: -40.5,-5.5 - parent: 0 - type: Transform -- uid: 17222 - type: WallSolid - components: - - pos: -45.5,-6.5 - parent: 0 - type: Transform -- uid: 17223 - type: WallSolid - components: - - pos: -45.5,-7.5 - parent: 0 - type: Transform -- uid: 17224 - type: WallSolidRust - components: - - pos: -45.5,-8.5 - parent: 0 - type: Transform -- uid: 17225 - type: WallSolid - components: - - pos: -44.5,-8.5 - parent: 0 - type: Transform -- uid: 17226 - type: WallSolidRust - components: - - pos: -45.5,-9.5 - parent: 0 - type: Transform -- uid: 17227 - type: WallSolid - components: - - pos: -45.5,-10.5 - parent: 0 - type: Transform -- uid: 17228 - type: WallSolid - components: - - pos: -45.5,-11.5 - parent: 0 - type: Transform -- uid: 17229 - type: WallSolid - components: - - pos: -44.5,-11.5 - parent: 0 - type: Transform -- uid: 17230 - type: WallSolid - components: - - pos: -43.5,-11.5 - parent: 0 - type: Transform -- uid: 17231 - type: WallSolid - components: - - pos: -42.5,-11.5 - parent: 0 - type: Transform -- uid: 17232 - type: WallSolid - components: - - pos: -42.5,-10.5 - parent: 0 - type: Transform -- uid: 17233 - type: WallSolid - components: - - pos: -42.5,-9.5 - parent: 0 - type: Transform -- uid: 17234 - type: WallSolid - components: - - pos: -42.5,-8.5 - parent: 0 - type: Transform -- uid: 17235 - type: WallSolid - components: - - pos: -41.5,-11.5 - parent: 0 - type: Transform -- uid: 17236 - type: WallSolid - components: - - pos: -40.5,-11.5 - parent: 0 - type: Transform -- uid: 17237 - type: WallSolid - components: - - pos: -39.5,-11.5 - parent: 0 - type: Transform -- uid: 17238 - type: WallSolidRust - components: - - pos: -38.5,-5.5 - parent: 0 - type: Transform -- uid: 17239 - type: WallSolid - components: - - pos: -38.5,-6.5 - parent: 0 - type: Transform -- uid: 17240 - type: WallSolid - components: - - pos: -38.5,-7.5 - parent: 0 - type: Transform -- uid: 17241 - type: WallSolid - components: - - pos: -38.5,-8.5 - parent: 0 - type: Transform -- uid: 17242 - type: WallSolid - components: - - pos: -38.5,-9.5 - parent: 0 - type: Transform -- uid: 17243 - type: WallSolidRust - components: - - pos: -39.5,-9.5 - parent: 0 - type: Transform -- uid: 17244 - type: WallSolid - components: - - pos: -38.5,-11.5 - parent: 0 - type: Transform -- uid: 17245 - type: WallSolidRust - components: - - pos: -38.5,-10.5 - parent: 0 - type: Transform -- uid: 17246 - type: WallSolid - components: - - pos: -40.5,-9.5 - parent: 0 - type: Transform -- uid: 17247 - type: WallSolid - components: - - pos: -39.5,-7.5 - parent: 0 - type: Transform -- uid: 17248 - type: WallSolid - components: - - pos: -40.5,-7.5 - parent: 0 - type: Transform -- uid: 17249 - type: WallSolid - components: - - pos: -38.5,-12.5 - parent: 0 - type: Transform -- uid: 17250 - type: WallSolid - components: - - pos: -38.5,-13.5 - parent: 0 - type: Transform -- uid: 17251 - type: WallSolid - components: - - pos: -38.5,-14.5 - parent: 0 - type: Transform -- uid: 17252 - type: WallSolid - components: - - pos: -38.5,-15.5 - parent: 0 - type: Transform -- uid: 17253 - type: GasPipeBend - components: - - pos: -41.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17254 - type: WallSolid - components: - - pos: -39.5,-15.5 - parent: 0 - type: Transform -- uid: 17255 - type: WallSolid - components: - - pos: -45.5,-12.5 - parent: 0 - type: Transform -- uid: 17256 - type: WallSolidRust - components: - - pos: -45.5,-14.5 - parent: 0 - type: Transform -- uid: 17257 - type: WallSolidRust - components: - - pos: -45.5,-13.5 - parent: 0 - type: Transform -- uid: 17258 - type: WallSolid - components: - - pos: -45.5,-15.5 - parent: 0 - type: Transform -- uid: 17259 - type: WallSolid - components: - - pos: -41.5,-15.5 - parent: 0 - type: Transform -- uid: 17260 - type: WallSolidRust - components: - - pos: -42.5,-15.5 - parent: 0 - type: Transform -- uid: 17261 - type: WallSolid - components: - - pos: -43.5,-15.5 - parent: 0 - type: Transform -- uid: 17262 - type: WallSolid - components: - - pos: -44.5,-15.5 - parent: 0 - type: Transform -- uid: 17263 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17264 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17265 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17266 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17267 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -41.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17268 - type: Airlock - components: - - pos: -43.5,-4.5 - parent: 0 - type: Transform -- uid: 17269 - type: Sink - components: - - pos: -42.5,-4.5 - parent: 0 - type: Transform -- uid: 17270 - type: Sink - components: - - pos: -41.5,-4.5 - parent: 0 - type: Transform -- uid: 17271 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -40.5,-4.5 - parent: 0 - type: Transform -- uid: 17272 - type: Airlock - components: - - pos: -43.5,-8.5 - parent: 0 - type: Transform -- uid: 17273 - type: Airlock - components: - - pos: -40.5,-10.5 - parent: 0 - type: Transform -- uid: 17274 - type: Airlock - components: - - pos: -40.5,-8.5 - parent: 0 - type: Transform -- uid: 17275 - type: Airlock - components: - - pos: -40.5,-6.5 - parent: 0 - type: Transform -- uid: 17276 - type: ToiletEmpty - components: - - pos: -39.5,-6.5 - parent: 0 - type: Transform -- uid: 17277 - type: ToiletEmpty - components: - - pos: -39.5,-8.5 - parent: 0 - type: Transform -- uid: 17278 - type: ToiletEmpty - components: - - pos: -39.5,-10.5 - parent: 0 - type: Transform -- uid: 17279 - type: RandomSoap - components: - - pos: -44.5,-9.5 - parent: 0 - type: Transform -- uid: 17280 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-10.5 - parent: 0 - type: Transform -- uid: 17281 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17282 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17283 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17284 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17285 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17286 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -41.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17287 - type: Mirror - components: - - pos: -40.5,-5.5 - parent: 0 - type: Transform -- uid: 17288 - type: RandomPosterContraband - components: - - pos: -39.5,-4.5 - parent: 0 - type: Transform -- uid: 17289 - type: RandomSpawner - components: - - pos: -44.5,-6.5 - parent: 0 - type: Transform -- uid: 17290 - type: RandomSpawner - components: - - pos: -41.5,-10.5 - parent: 0 - type: Transform -- uid: 17291 - type: AirlockMaintLocked - components: - - pos: -40.5,-15.5 - parent: 0 - type: Transform -- uid: 17292 - type: Table - components: - - pos: -44.5,-13.5 - parent: 0 - type: Transform -- uid: 17293 - type: Table - components: - - pos: -44.5,-12.5 - parent: 0 - type: Transform -- uid: 17294 - type: Rack - components: - - pos: -40.5,-12.5 - parent: 0 - type: Transform -- uid: 17295 - type: Rack - components: - - pos: -39.5,-12.5 - parent: 0 - type: Transform -- uid: 17296 - type: Rack - components: - - pos: -39.5,-13.5 - parent: 0 - type: Transform -- uid: 17297 - type: Rack - components: - - pos: -39.5,-14.5 - parent: 0 - type: Transform -- uid: 17298 - type: Rack - components: - - pos: -44.5,-14.5 - parent: 0 - type: Transform -- uid: 17299 - type: ClosetMaintenanceFilledRandom - components: - - pos: -42.5,-12.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17300 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: -41.5,-12.5 - parent: 0 - type: Transform -- uid: 17301 - type: CrateEmptySpawner - components: - - pos: -43.5,-12.5 - parent: 0 - type: Transform -- uid: 17302 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-13.5 - parent: 0 - type: Transform -- uid: 17303 - type: BoxCardboard - components: - - pos: -39.5,-14.5 - parent: 0 - type: Transform -- uid: 17304 - type: MaintenanceFluffSpawner - components: - - pos: -44.5,-14.5 - parent: 0 - type: Transform -- uid: 17305 - type: ClothingHandsGlovesColorBlack - components: - - pos: -44.5,-12.5 - parent: 0 - type: Transform -- uid: 17306 - type: PaperRolling - components: - - pos: -44.5,-13.5 - parent: 0 - type: Transform -- uid: 17307 - type: MaintenanceWeaponSpawner - components: - - pos: -39.5,-12.5 - parent: 0 - type: Transform -- uid: 17308 - type: RandomPosterContraband - components: - - pos: -41.5,-11.5 - parent: 0 - type: Transform -- uid: 17309 - type: RandomPosterContraband - components: - - pos: -43.5,-15.5 - parent: 0 - type: Transform -- uid: 17310 - type: SheetGlass - components: - - pos: -36.5,-62.5 - parent: 0 - type: Transform -- uid: 17311 - type: WallSolid - components: - - pos: -34.5,-61.5 - parent: 0 - type: Transform -- uid: 17312 - type: WallSolid - components: - - pos: -31.5,-63.5 - parent: 0 - type: Transform -- uid: 17313 - type: WallSolid - components: - - pos: -31.5,-62.5 - parent: 0 - type: Transform -- uid: 17314 - type: WallSolid - components: - - pos: -30.5,-62.5 - parent: 0 - type: Transform -- uid: 17315 - type: WallSolidRust - components: - - pos: -47.5,-38.5 - parent: 0 - type: Transform -- uid: 17316 - type: WallSolidRust - components: - - pos: -45.5,-38.5 - parent: 0 - type: Transform -- uid: 17317 - type: WallSolid - components: - - pos: -46.5,-39.5 - parent: 0 - type: Transform -- uid: 17318 - type: WallSolidRust - components: - - pos: -46.5,-38.5 - parent: 0 - type: Transform -- uid: 17319 - type: WallSolid - components: - - pos: -44.5,-38.5 - parent: 0 - type: Transform -- uid: 17320 - type: WallSolid - components: - - pos: -44.5,-39.5 - parent: 0 - type: Transform -- uid: 17321 - type: WallSolid - components: - - pos: -40.5,-38.5 - parent: 0 - type: Transform -- uid: 17322 - type: WallSolidRust - components: - - pos: -40.5,-39.5 - parent: 0 - type: Transform -- uid: 17323 - type: WallSolid - components: - - pos: -39.5,-26.5 - parent: 0 - type: Transform -- uid: 17324 - type: WallSolid - components: - - pos: -45.5,-29.5 - parent: 0 - type: Transform -- uid: 17325 - type: WallSolid - components: - - pos: -44.5,-29.5 - parent: 0 - type: Transform -- uid: 17326 - type: WallSolid - components: - - pos: -42.5,-29.5 - parent: 0 - type: Transform -- uid: 17327 - type: WallSolidRust - components: - - pos: -41.5,-29.5 - parent: 0 - type: Transform -- uid: 17328 - type: WallSolid - components: - - pos: -40.5,-29.5 - parent: 0 - type: Transform -- uid: 17329 - type: WallSolid - components: - - pos: -40.5,-30.5 - parent: 0 - type: Transform -- uid: 17330 - type: WallSolid - components: - - pos: -40.5,-31.5 - parent: 0 - type: Transform -- uid: 17331 - type: WallSolidRust - components: - - pos: -40.5,-32.5 - parent: 0 - type: Transform -- uid: 17332 - type: WallSolid - components: - - pos: -40.5,-33.5 - parent: 0 - type: Transform -- uid: 17333 - type: WallSolid - components: - - pos: -40.5,-34.5 - parent: 0 - type: Transform -- uid: 17334 - type: WallSolid - components: - - pos: -40.5,-35.5 - parent: 0 - type: Transform -- uid: 17335 - type: WallSolid - components: - - pos: -40.5,-36.5 - parent: 0 - type: Transform -- uid: 17336 - type: WallSolid - components: - - pos: -40.5,-37.5 - parent: 0 - type: Transform -- uid: 17337 - type: ShuttersNormal - components: - - pos: -41.5,-39.5 - parent: 0 - type: Transform -- uid: 17338 - type: ShuttersNormal - components: - - pos: -42.5,-39.5 - parent: 0 - type: Transform -- uid: 17339 - type: ShuttersNormal - components: - - pos: -43.5,-39.5 - parent: 0 - type: Transform -- uid: 17340 - type: OxygenCanister - components: - - pos: -47.5,-39.5 - parent: 0 - type: Transform -- uid: 17341 - type: ClosetMaintenanceFilledRandom - components: - - pos: -45.5,-39.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17342 - type: ClosetEmergencyFilledRandom - components: - - pos: -44.5,-40.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17343 - type: WeldingFuelTankFull - components: - - pos: -46.5,-40.5 - parent: 0 - type: Transform -- uid: 17344 - type: RandomSpawner - components: - - pos: -47.5,-41.5 - parent: 0 - type: Transform -- uid: 17345 - type: SpawnMobMouse - components: - - pos: -45.5,-40.5 - parent: 0 - type: Transform -- uid: 17346 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -49.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17347 - type: CableHV - components: - - pos: -39.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17348 - type: WaterTankFull - components: - - pos: -36.5,-38.5 - parent: 0 - type: Transform -- uid: 17349 - type: Rack - components: - - pos: -35.5,-38.5 - parent: 0 - type: Transform -- uid: 17350 - type: CrateEmptySpawner - components: - - pos: -33.5,-38.5 - parent: 0 - type: Transform -- uid: 17351 - type: ClothingBeltUtility - components: - - pos: -35.5,-38.5 - parent: 0 - type: Transform -- uid: 17352 - type: CableHV - components: - - pos: -35.5,-41.5 - parent: 0 - type: Transform -- uid: 17353 - type: ComputerPowerMonitoring - components: - - pos: -35.5,-41.5 - parent: 0 - type: Transform -- uid: 17354 - type: Table - components: - - pos: -35.5,-43.5 - parent: 0 - type: Transform -- uid: 17355 - type: LockerElectricalSuppliesFilled - components: - - pos: -37.5,-43.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17356 - type: SheetSteel - components: - - pos: -35.5,-43.5 - parent: 0 - type: Transform -- uid: 17357 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -35.5,-42.5 - parent: 0 - type: Transform -- uid: 17358 - type: PlasticFlapsAirtightClear - components: - - pos: -46.5,-29.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 17359 - type: AirlockMaintLocked - components: - - pos: -43.5,-29.5 - parent: 0 - type: Transform -- uid: 17360 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-30.5 - parent: 0 - type: Transform -- uid: 17361 - type: CableApcExtension - components: - - pos: -39.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17362 - type: CableApcExtension - components: - - pos: -39.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17363 - type: CableApcExtension - components: - - pos: -39.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17364 - type: CableApcExtension - components: - - pos: -39.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17365 - type: CableApcExtension - components: - - pos: -39.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17366 - type: CableApcExtension - components: - - pos: -39.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17367 - type: CableApcExtension - components: - - pos: -39.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17368 - type: CableApcExtension - components: - - pos: -40.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17369 - type: CableApcExtension - components: - - pos: -41.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17370 - type: CableApcExtension - components: - - pos: -42.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17371 - type: CableApcExtension - components: - - pos: -43.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17372 - type: CableApcExtension - components: - - pos: -44.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17373 - type: CableApcExtension - components: - - pos: -45.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17374 - type: CableApcExtension - components: - - pos: -46.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17375 - type: CableApcExtension - components: - - pos: -47.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17376 - type: CableApcExtension - components: - - pos: -48.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17377 - type: CableApcExtension - components: - - pos: -49.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17378 - type: CableApcExtension - components: - - pos: -49.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17379 - type: CableApcExtension - components: - - pos: -49.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17380 - type: CableApcExtension - components: - - pos: -49.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17381 - type: CableApcExtension - components: - - pos: -49.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17382 - type: CableApcExtension - components: - - pos: -50.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17383 - type: CableApcExtension - components: - - pos: -42.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17384 - type: CableApcExtension - components: - - pos: -42.5,-39.5 - parent: 0 - type: Transform -- uid: 17385 - type: CableApcExtension - components: - - pos: -42.5,-38.5 - parent: 0 - type: Transform -- uid: 17386 - type: CableApcExtension - components: - - pos: -42.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17387 - type: CableApcExtension - components: - - pos: -42.5,-36.5 - parent: 0 - type: Transform -- uid: 17388 - type: CableApcExtension - components: - - pos: -42.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17389 - type: CableApcExtension - components: - - pos: -43.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17390 - type: CableApcExtension - components: - - pos: -44.5,-37.5 - parent: 0 - type: Transform -- uid: 17391 - type: CableApcExtension - components: - - pos: -40.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17392 - type: CableApcExtension - components: - - pos: -41.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17393 - type: CableApcExtension - components: - - pos: -42.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17394 - type: CableApcExtension - components: - - pos: -43.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17395 - type: CableApcExtension - components: - - pos: -44.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17396 - type: CableApcExtension - components: - - pos: -45.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17397 - type: CableApcExtension - components: - - pos: -46.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17398 - type: CableApcExtension - components: - - pos: -47.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17399 - type: CableApcExtension - components: - - pos: -48.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17400 - type: CableApcExtension - components: - - pos: -49.5,-28.5 - parent: 0 - type: Transform -- uid: 17401 - type: CableApcExtension - components: - - pos: -50.5,-28.5 - parent: 0 - type: Transform -- uid: 17402 - type: CableApcExtension - components: - - pos: -51.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17403 - type: CableApcExtension - components: - - pos: -52.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17404 - type: CableApcExtension - components: - - pos: -53.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17405 - type: CableApcExtension - components: - - pos: -54.5,-28.5 - parent: 0 - type: Transform -- uid: 17406 - type: CableApcExtension - components: - - pos: -55.5,-28.5 - parent: 0 - type: Transform -- uid: 17407 - type: CableApcExtension - components: - - pos: -56.5,-28.5 - parent: 0 - type: Transform -- uid: 17408 - type: CableApcExtension - components: - - pos: -52.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17409 - type: CableApcExtension - components: - - pos: -52.5,-26.5 - parent: 0 - type: Transform -- uid: 17410 - type: CableApcExtension - components: - - pos: -52.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17411 - type: CableApcExtension - components: - - pos: -52.5,-24.5 - parent: 0 - type: Transform -- uid: 17412 - type: CableApcExtension - components: - - pos: -56.5,-27.5 - parent: 0 - type: Transform -- uid: 17413 - type: CableApcExtension - components: - - pos: -56.5,-26.5 - parent: 0 - type: Transform -- uid: 17414 - type: CableApcExtension - components: - - pos: -56.5,-25.5 - parent: 0 - type: Transform -- uid: 17415 - type: CableApcExtension - components: - - pos: -56.5,-24.5 - parent: 0 - type: Transform -- uid: 17416 - type: CableApcExtension - components: - - pos: -51.5,-29.5 - parent: 0 - type: Transform -- uid: 17417 - type: CableApcExtension - components: - - pos: -51.5,-30.5 - parent: 0 - type: Transform -- uid: 17418 - type: CableApcExtension - components: - - pos: -51.5,-31.5 - parent: 0 - type: Transform -- uid: 17419 - type: CableApcExtension - components: - - pos: -51.5,-32.5 - parent: 0 - type: Transform -- uid: 17420 - type: CableApcExtension - components: - - pos: -51.5,-33.5 - parent: 0 - type: Transform -- uid: 17421 - type: CableApcExtension - components: - - pos: -55.5,-29.5 - parent: 0 - type: Transform -- uid: 17422 - type: CableApcExtension - components: - - pos: -55.5,-30.5 - parent: 0 - type: Transform -- uid: 17423 - type: CableApcExtension - components: - - pos: -55.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17424 - type: CableApcExtension - components: - - pos: -55.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17425 - type: CableApcExtension - components: - - pos: -55.5,-33.5 - parent: 0 - type: Transform -- uid: 17426 - type: CableApcExtension - components: - - pos: -43.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17427 - type: CableApcExtension - components: - - pos: -43.5,-30.5 - parent: 0 - type: Transform -- uid: 17428 - type: CableApcExtension - components: - - pos: -43.5,-31.5 - parent: 0 - type: Transform -- uid: 17429 - type: CableApcExtension - components: - - pos: -43.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17430 - type: CableApcExtension - components: - - pos: -43.5,-33.5 - parent: 0 - type: Transform -- uid: 17431 - type: CableApcExtension - components: - - pos: -43.5,-34.5 - parent: 0 - type: Transform -- uid: 17432 - type: CableApcExtension - components: - - pos: -42.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17433 - type: CableApcExtension - components: - - pos: -44.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17434 - type: CableApcExtension - components: - - pos: -45.5,-32.5 - parent: 0 - type: Transform -- uid: 17435 - type: CableApcExtension - components: - - pos: -46.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17436 - type: CableApcExtension - components: - - pos: -47.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17437 - type: CableApcExtension - components: - - pos: -46.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17438 - type: CableApcExtension - components: - - pos: -46.5,-33.5 - parent: 0 - type: Transform -- uid: 17439 - type: CableApcExtension - components: - - pos: -46.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17440 - type: CableApcExtension - components: - - pos: -46.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17441 - type: CableApcExtension - components: - - pos: -46.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17442 - type: Table - components: - - pos: -42.5,-30.5 - parent: 0 - type: Transform -- uid: 17443 - type: Table - components: - - pos: -41.5,-30.5 - parent: 0 - type: Transform -- uid: 17444 - type: Table - components: - - pos: -41.5,-31.5 - parent: 0 - type: Transform -- uid: 17445 - type: Rack - components: - - pos: -41.5,-32.5 - parent: 0 - type: Transform -- uid: 17446 - type: Rack - components: - - pos: -41.5,-33.5 - parent: 0 - type: Transform -- uid: 17447 - type: Rack - components: - - pos: -41.5,-34.5 - parent: 0 - type: Transform -- uid: 17448 - type: DisposalUnit - components: - - pos: -41.5,-35.5 - parent: 0 - type: Transform -- uid: 17449 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-35.5 - parent: 0 - type: Transform -- uid: 17450 - type: WallSolid - components: - - pos: -38.5,-26.5 - parent: 0 - type: Transform -- uid: 17451 - type: GeneratorPlasma - components: - - pos: -47.5,-35.5 - parent: 0 - type: Transform -- uid: 17452 - type: CrateFilledSpawner - components: - - pos: -46.5,-35.5 - parent: 0 - type: Transform -- uid: 17453 - type: CrateEmptySpawner - components: - - pos: -45.5,-35.5 - parent: 0 - type: Transform -- uid: 17454 - type: CrateEmptySpawner - components: - - pos: -44.5,-35.5 - parent: 0 - type: Transform -- uid: 17455 - type: CrateFilledSpawner - components: - - pos: -44.5,-37.5 - parent: 0 - type: Transform -- uid: 17456 - type: CrateEmptySpawner - components: - - pos: -46.5,-37.5 - parent: 0 - type: Transform -- uid: 17457 - type: CrateFilledSpawner - components: - - pos: -46.5,-33.5 - parent: 0 - type: Transform -- uid: 17458 - type: CrateEmptySpawner - components: - - pos: -47.5,-33.5 - parent: 0 - type: Transform -- uid: 17459 - type: CrateEmptySpawner - components: - - pos: -45.5,-32.5 - parent: 0 - type: Transform -- uid: 17460 - type: SheetGlass - components: - - pos: -41.5,-32.5 - parent: 0 - type: Transform -- uid: 17461 - type: SheetSteel - components: - - pos: -41.5,-33.5 - parent: 0 - type: Transform -- uid: 17462 - type: MaterialCloth - components: - - pos: -41.5,-34.5 - parent: 0 - type: Transform -- uid: 17463 - type: LampGold - components: - - pos: -42.417267,-30.139824 - parent: 0 - type: Transform -- uid: 17464 - type: ChairOfficeDark - components: - - pos: -42.5,-31.5 - parent: 0 - type: Transform -- uid: 17465 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17466 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17467 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17468 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17469 - type: WallReinforced - components: - - pos: -0.5,-39.5 - parent: 0 - type: Transform -- uid: 17470 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17471 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17472 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17473 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17474 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17475 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17476 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17477 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17478 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17479 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17480 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17481 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17482 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17483 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17484 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17485 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17486 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17487 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17488 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -43.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17489 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -43.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17490 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -43.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17491 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -43.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17492 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -43.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17493 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -43.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17494 - type: GasPipeTJunction - components: - - pos: -43.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17495 - type: WallReinforced - components: - - pos: -0.5,-38.5 - parent: 0 - type: Transform -- uid: 17496 - type: WallReinforced - components: - - pos: -0.5,-37.5 - parent: 0 - type: Transform -- uid: 17497 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17498 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17499 - type: PoweredSmallLight - components: - - pos: -32.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17500 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17501 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17502 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -51.5,-34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17503 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -37.5,-53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17504 - type: Catwalk - components: - - pos: -33.5,-39.5 - parent: 0 - type: Transform -- uid: 17505 - type: Catwalk - components: - - pos: -34.5,-39.5 - parent: 0 - type: Transform -- uid: 17506 - type: Catwalk - components: - - pos: -35.5,-39.5 - parent: 0 - type: Transform -- uid: 17507 - type: Catwalk - components: - - pos: -36.5,-39.5 - parent: 0 - type: Transform -- uid: 17508 - type: Catwalk - components: - - pos: -37.5,-39.5 - parent: 0 - type: Transform -- uid: 17509 - type: Catwalk - components: - - pos: -38.5,-39.5 - parent: 0 - type: Transform -- uid: 17510 - type: Catwalk - components: - - pos: -39.5,-38.5 - parent: 0 - type: Transform -- uid: 17511 - type: Catwalk - components: - - pos: -39.5,-37.5 - parent: 0 - type: Transform -- uid: 17512 - type: Catwalk - components: - - pos: -39.5,-36.5 - parent: 0 - type: Transform -- uid: 17513 - type: Catwalk - components: - - pos: -39.5,-35.5 - parent: 0 - type: Transform -- uid: 17514 - type: Catwalk - components: - - pos: -39.5,-34.5 - parent: 0 - type: Transform -- uid: 17515 - type: Catwalk - components: - - pos: -39.5,-33.5 - parent: 0 - type: Transform -- uid: 17516 - type: Catwalk - components: - - pos: -39.5,-32.5 - parent: 0 - type: Transform -- uid: 17517 - type: Catwalk - components: - - pos: -39.5,-31.5 - parent: 0 - type: Transform -- uid: 17518 - type: Catwalk - components: - - pos: -39.5,-30.5 - parent: 0 - type: Transform -- uid: 17519 - type: Catwalk - components: - - pos: -39.5,-29.5 - parent: 0 - type: Transform -- uid: 17520 - type: GrilleBroken - components: - - pos: -40.5,-41.5 - parent: 0 - type: Transform -- uid: 17521 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -38.5,-38.5 - parent: 0 - type: Transform -- uid: 17522 - type: Barricade - components: - - pos: -49.5,-28.5 - parent: 0 - type: Transform -- uid: 17523 - type: Barricade - components: - - pos: -52.5,-33.5 - parent: 0 - type: Transform -- uid: 17524 - type: DiceBag - components: - - pos: -51.40007,-34.528267 - parent: 0 - type: Transform -- uid: 17525 - type: ChessBoard - components: - - pos: -54.509445,-34.465767 - parent: 0 - type: Transform -- uid: 17526 - type: Wrench - components: - - pos: -50.53782,-38.41765 - parent: 0 - type: Transform -- uid: 17527 - type: ToolboxEmergencyFilled - components: - - pos: -41.54277,-30.370773 - parent: 0 - type: Transform -- uid: 17528 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17529 - type: PoweredSmallLight - components: - - pos: -34.5,-38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17530 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17531 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-63.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17532 - type: RandomDrinkBottle - components: - - pos: -54.5,-23.5 - parent: 0 - type: Transform -- uid: 17533 - type: RandomDrinkBottle - components: - - pos: -55.5,-23.5 - parent: 0 - type: Transform -- uid: 17534 - type: RandomDrinkBottle - components: - - pos: -55.5,-28.5 - parent: 0 - type: Transform -- uid: 17535 - type: RandomDrinkGlass - components: - - pos: -54.5,-25.5 - parent: 0 - type: Transform -- uid: 17536 - type: RandomDrinkGlass - components: - - pos: -54.5,-27.5 - parent: 0 - type: Transform -- uid: 17537 - type: SpaceCash10 - components: - - pos: -39.415024,-8.573042 - parent: 0 - type: Transform -- uid: 17538 - type: RandomInstruments - components: - - pos: -39.5,-10.5 - parent: 0 - type: Transform -- uid: 17539 - type: WallSolid - components: - - pos: -31.5,-14.5 - parent: 0 - type: Transform -- uid: 17540 - type: WallSolid - components: - - pos: -36.5,-11.5 - parent: 0 - type: Transform -- uid: 17541 - type: WallSolid - components: - - pos: -32.5,-14.5 - parent: 0 - type: Transform -- uid: 17542 - type: WallSolid - components: - - pos: -33.5,-14.5 - parent: 0 - type: Transform -- uid: 17543 - type: WallSolid - components: - - pos: -27.5,-18.5 - parent: 0 - type: Transform -- uid: 17544 - type: WallSolid - components: - - pos: -36.5,-9.5 - parent: 0 - type: Transform -- uid: 17545 - type: ReinforcedWindow - components: - - pos: -30.5,-2.5 - parent: 0 - type: Transform -- uid: 17546 - type: WallSolid - components: - - pos: -33.5,-11.5 - parent: 0 - type: Transform -- uid: 17547 - type: WallSolid - components: - - pos: -36.5,-13.5 - parent: 0 - type: Transform -- uid: 17548 - type: WallSolid - components: - - pos: -36.5,-14.5 - parent: 0 - type: Transform -- uid: 17549 - type: WallSolid - components: - - pos: -36.5,-10.5 - parent: 0 - type: Transform -- uid: 17550 - type: WallSolid - components: - - pos: -36.5,-8.5 - parent: 0 - type: Transform -- uid: 17551 - type: WallSolid - components: - - pos: -34.5,-8.5 - parent: 0 - type: Transform -- uid: 17552 - type: WallSolid - components: - - pos: -35.5,-8.5 - parent: 0 - type: Transform -- uid: 17553 - type: ReinforcedWindow - components: - - pos: -23.5,-9.5 - parent: 0 - type: Transform -- uid: 17554 - type: ReinforcedWindow - components: - - pos: -23.5,-6.5 - parent: 0 - type: Transform -- uid: 17555 - type: AirlockMaintLocked - components: - - pos: -35.5,-7.5 - parent: 0 - type: Transform -- uid: 17556 - type: AirlockMaintLocked - components: - - pos: -37.5,-2.5 - parent: 0 - type: Transform -- uid: 17557 - type: TableWood - components: - - pos: -35.5,-13.5 - parent: 0 - type: Transform -- uid: 17558 - type: TableWood - components: - - pos: -35.5,-12.5 - parent: 0 - type: Transform -- uid: 17559 - type: TableWood - components: - - pos: -35.5,-10.5 - parent: 0 - type: Transform -- uid: 17560 - type: TableWood - components: - - pos: -35.5,-9.5 - parent: 0 - type: Transform -- uid: 17561 - type: TableWood - components: - - pos: -28.5,-3.5 - parent: 0 - type: Transform -- uid: 17562 - type: TableWood - components: - - pos: -27.5,-3.5 - parent: 0 - type: Transform -- uid: 17563 - type: TableWood - components: - - pos: -25.5,-3.5 - parent: 0 - type: Transform -- uid: 17564 - type: TableWood - components: - - pos: -24.5,-3.5 - parent: 0 - type: Transform -- uid: 17565 - type: LampGold - components: - - pos: -28.451937,-3.0870194 - parent: 0 - type: Transform -- uid: 17566 - type: LampGold - components: - - pos: -25.405062,-3.1026444 - parent: 0 - type: Transform -- uid: 17567 - type: LampGold - components: - - pos: -35.59874,-12.098646 - parent: 0 - type: Transform -- uid: 17568 - type: PlushieLamp - components: - - pos: -35.50499,-9.239271 - parent: 0 - type: Transform -- uid: 17569 - type: WoodDoor - components: - - pos: -28.5,-5.5 - parent: 0 - type: Transform -- uid: 17570 - type: WoodDoor - components: - - pos: -25.5,-5.5 - parent: 0 - type: Transform -- uid: 17571 - type: WoodDoor - components: - - pos: -33.5,-10.5 - parent: 0 - type: Transform -- uid: 17572 - type: WoodDoor - components: - - pos: -33.5,-12.5 - parent: 0 - type: Transform -- uid: 17573 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-9.5 - parent: 0 - type: Transform -- uid: 17574 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-13.5 - parent: 0 - type: Transform -- uid: 17575 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -27.5,-4.5 - parent: 0 - type: Transform -- uid: 17576 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 0 - type: Transform -- uid: 17577 - type: ExtinguisherCabinetFilled - components: - - pos: -23.5,-4.5 - parent: 0 - type: Transform -- uid: 17578 - type: ExtinguisherCabinetFilled - components: - - pos: -26.5,-2.5 - parent: 0 - type: Transform -- uid: 17579 - type: ClosetEmergencyFilledRandom - components: - - pos: -23.5,-13.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17580 - type: ClosetEmergencyFilledRandom - components: - - pos: -23.5,-12.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17581 - type: ClosetFireFilled - components: - - pos: -23.5,-11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17582 - type: Bookshelf - components: - - pos: -24.5,-17.5 - parent: 0 - type: Transform -- uid: 17583 - type: VendingMachineDonut - components: - - flags: SessionSpecific - name: Donut - type: MetaData - - pos: -23.5,-18.5 - parent: 0 - type: Transform -- uid: 17584 - type: DisposalUnit - components: - - pos: -23.5,-19.5 - parent: 0 - type: Transform -- uid: 17585 - type: TableWood - components: - - pos: -33.5,-17.5 - parent: 0 - type: Transform -- uid: 17586 - type: TableWood - components: - - pos: -33.5,-16.5 - parent: 0 - type: Transform -- uid: 17587 - type: TableWood - components: - - pos: -32.5,-17.5 - parent: 0 - type: Transform -- uid: 17588 - type: TableWood - components: - - pos: -32.5,-16.5 - parent: 0 - type: Transform -- uid: 17589 - type: TableWood - components: - - pos: -31.5,-17.5 - parent: 0 - type: Transform -- uid: 17590 - type: TableWood - components: - - pos: -31.5,-16.5 - parent: 0 - type: Transform -- uid: 17591 - type: TableWood - components: - - pos: -30.5,-17.5 - parent: 0 - type: Transform -- uid: 17592 - type: TableWood - components: - - pos: -30.5,-16.5 - parent: 0 - type: Transform -- uid: 17593 - type: Carpet - components: - - pos: -33.5,-16.5 - parent: 0 - type: Transform -- uid: 17594 - type: Carpet - components: - - pos: -33.5,-17.5 - parent: 0 - type: Transform -- uid: 17595 - type: Carpet - components: - - pos: -32.5,-16.5 - parent: 0 - type: Transform -- uid: 17596 - type: Carpet - components: - - pos: -32.5,-17.5 - parent: 0 - type: Transform -- uid: 17597 - type: Carpet - components: - - pos: -31.5,-16.5 - parent: 0 - type: Transform -- uid: 17598 - type: Carpet - components: - - pos: -31.5,-17.5 - parent: 0 - type: Transform -- uid: 17599 - type: Carpet - components: - - pos: -30.5,-16.5 - parent: 0 - type: Transform -- uid: 17600 - type: Carpet - components: - - pos: -30.5,-17.5 - parent: 0 - type: Transform -- uid: 17601 - type: DiceBag - components: - - pos: -31.475151,-16.521818 - parent: 0 - type: Transform -- uid: 17602 - type: ChairOfficeDark - components: - - pos: -32.5,-15.5 - parent: 0 - type: Transform -- uid: 17603 - type: ChairOfficeDark - components: - - pos: -31.5,-15.5 - parent: 0 - type: Transform -- uid: 17604 - type: LampGold - components: - - pos: -33.459526,-16.131193 - parent: 0 - type: Transform -- uid: 17605 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -32.5,-18.5 - parent: 0 - type: Transform -- uid: 17606 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -31.5,-18.5 - parent: 0 - type: Transform -- uid: 17607 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-17.5 - parent: 0 - type: Transform -- uid: 17608 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-16.5 - parent: 0 - type: Transform -- uid: 17609 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-16.5 - parent: 0 - type: Transform -- uid: 17610 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-17.5 - parent: 0 - type: Transform -- uid: 17611 - type: Paper - components: - - pos: -33.1314,-17.334318 - parent: 0 - type: Transform -- uid: 17612 - type: Paper - components: - - pos: -33.1314,-17.334318 - parent: 0 - type: Transform -- uid: 17613 - type: Paper - components: - - pos: -32.740776,-16.537443 - parent: 0 - type: Transform -- uid: 17614 - type: Paper - components: - - pos: -32.740776,-16.537443 - parent: 0 - type: Transform -- uid: 17615 - type: Paper - components: - - pos: -31.178276,-17.178068 - parent: 0 - type: Transform -- uid: 17616 - type: Paper - components: - - pos: -31.178276,-17.178068 - parent: 0 - type: Transform -- uid: 17617 - type: Paper - components: - - pos: -30.615776,-16.584318 - parent: 0 - type: Transform -- uid: 17618 - type: Paper - components: - - pos: -30.615776,-16.584318 - parent: 0 - type: Transform -- uid: 17619 - type: Pen - components: - - pos: -30.318901,-16.349943 - parent: 0 - type: Transform -- uid: 17620 - type: Pen - components: - - pos: -32.9439,-16.912443 - parent: 0 - type: Transform -- uid: 17621 - type: Pen - components: - - pos: -30.647026,-17.443693 - parent: 0 - type: Transform -- uid: 17622 - type: FigureSpawner - components: - - pos: -31.5,-17.5 - parent: 0 - type: Transform -- uid: 17623 - type: FigureSpawner - components: - - pos: -32.5,-16.5 - parent: 0 - type: Transform -- uid: 17624 - type: ToySkeleton - components: - - pos: -32.490776,-17.318693 - parent: 0 - type: Transform -- uid: 17625 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -29.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17626 - type: Poweredlight - components: - - pos: -33.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17627 - type: PoweredSmallLight - components: - - pos: -34.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17628 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17629 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17630 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17631 - type: PoweredSmallLight - components: - - pos: -24.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17632 - type: TableWood - components: - - pos: -34.5,-6.5 - parent: 0 - type: Transform -- uid: 17633 - type: TableWood - components: - - pos: -34.5,-5.5 - parent: 0 - type: Transform -- uid: 17634 - type: TableWood - components: - - pos: -34.5,-4.5 - parent: 0 - type: Transform -- uid: 17635 - type: Bookshelf - components: - - pos: -34.5,-3.5 - parent: 0 - type: Transform -- uid: 17636 - type: TableWood - components: - - pos: -33.5,-5.5 - parent: 0 - type: Transform -- uid: 17637 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-6.5 - parent: 0 - type: Transform -- uid: 17638 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-4.5 - parent: 0 - type: Transform -- uid: 17639 - type: LampGold - components: - - rot: 1.5707963267948966 rad - pos: -34.47307,-5.081062 - parent: 0 - type: Transform -- uid: 17640 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-4.5 - parent: 0 - type: Transform -- uid: 17641 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-3.5 - parent: 0 - type: Transform -- uid: 17642 - type: ComfyChair - components: - - pos: -30.5,-6.5 - parent: 0 - type: Transform -- uid: 17643 - type: ComfyChair - components: - - pos: -27.5,-6.5 - parent: 0 - type: Transform -- uid: 17644 - type: TableWood - components: - - pos: -29.5,-6.5 - parent: 0 - type: Transform -- uid: 17645 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -26.5,-6.5 - parent: 0 - type: Transform -- uid: 17646 - type: PottedPlant22 - components: - - pos: -24.5,-6.5 - parent: 0 - type: Transform -- uid: 17647 - type: PottedPlant22 - components: - - pos: -33.5,-3.5 - parent: 0 - type: Transform -- uid: 17648 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17649 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17650 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17651 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17652 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17653 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17654 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17655 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17656 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17657 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17658 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17659 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17660 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17661 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17662 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17663 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17664 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -32.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17665 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17666 - type: GasPipeStraight - components: - - pos: -30.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17667 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17668 - type: GasPipeStraight - components: - - pos: -30.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17669 - type: GasPipeStraight - components: - - pos: -30.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17670 - type: GasPipeStraight - components: - - pos: -30.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17671 - type: GasPipeStraight - components: - - pos: -30.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17672 - type: GasPipeStraight - components: - - pos: -30.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17673 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -30.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17674 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17675 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-0.5 - parent: 0 - type: Transform -- uid: 17676 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-0.5 - parent: 0 - type: Transform -- uid: 17677 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-0.5 - parent: 0 - type: Transform -- uid: 17678 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-2.5 - parent: 0 - type: Transform -- uid: 17679 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-0.5 - parent: 0 - type: Transform -- uid: 17680 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-2.5 - parent: 0 - type: Transform -- uid: 17681 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-0.5 - parent: 0 - type: Transform -- uid: 17682 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-0.5 - parent: 0 - type: Transform -- uid: 17683 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-0.5 - parent: 0 - type: Transform -- uid: 17684 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-0.5 - parent: 0 - type: Transform -- uid: 17685 - type: DisposalPipe - components: - - pos: -45.5,-1.5 - parent: 0 - type: Transform -- uid: 17686 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -28.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17687 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17688 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17689 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17690 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17691 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17692 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17693 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17694 - type: GasPipeTJunction - components: - - pos: -30.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17695 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17696 - type: GasPipeTJunction - components: - - pos: -28.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17697 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17698 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17699 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17700 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17701 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17702 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17703 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -31.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17704 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17705 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-0.5 - parent: 0 - type: Transform -- uid: 17706 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-0.5 - parent: 0 - type: Transform -- uid: 17707 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-0.5 - parent: 0 - type: Transform -- uid: 17708 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-0.5 - parent: 0 - type: Transform -- uid: 17709 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-0.5 - parent: 0 - type: Transform -- uid: 17710 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-0.5 - parent: 0 - type: Transform -- uid: 17711 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 0 - type: Transform -- uid: 17712 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 0 - type: Transform -- uid: 17713 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 - parent: 0 - type: Transform -- uid: 17714 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-0.5 - parent: 0 - type: Transform -- uid: 17715 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 0 - type: Transform -- uid: 17716 - type: AirlockServiceLocked - components: - - pos: -25.5,-14.5 - parent: 0 - type: Transform -- uid: 17717 - type: Airlock - components: - - pos: -30.5,-14.5 - parent: 0 - type: Transform -- uid: 17718 - type: TableWood - components: - - pos: -25.5,-11.5 - parent: 0 - type: Transform -- uid: 17719 - type: TableWood - components: - - pos: -25.5,-10.5 - parent: 0 - type: Transform -- uid: 17720 - type: TableWood - components: - - pos: -26.5,-10.5 - parent: 0 - type: Transform -- uid: 17721 - type: TableWood - components: - - pos: -27.5,-10.5 - parent: 0 - type: Transform -- uid: 17722 - type: TableWood - components: - - pos: -28.5,-10.5 - parent: 0 - type: Transform -- uid: 17723 - type: TableWood - components: - - pos: -28.5,-13.5 - parent: 0 - type: Transform -- uid: 17724 - type: TableWood - components: - - pos: -28.5,-12.5 - parent: 0 - type: Transform -- uid: 17725 - type: Carpet - components: - - pos: -32.5,-2.5 - parent: 0 - type: Transform -- uid: 17726 - type: Carpet - components: - - pos: -31.5,-2.5 - parent: 0 - type: Transform -- uid: 17727 - type: Carpet - components: - - pos: -32.5,-3.5 - parent: 0 - type: Transform -- uid: 17728 - type: Carpet - components: - - pos: -32.5,-4.5 - parent: 0 - type: Transform -- uid: 17729 - type: Carpet - components: - - pos: -32.5,-5.5 - parent: 0 - type: Transform -- uid: 17730 - type: Carpet - components: - - pos: -32.5,-6.5 - parent: 0 - type: Transform -- uid: 17731 - type: Carpet - components: - - pos: -32.5,-7.5 - parent: 0 - type: Transform -- uid: 17732 - type: Carpet - components: - - pos: -32.5,-8.5 - parent: 0 - type: Transform -- uid: 17733 - type: Carpet - components: - - pos: -32.5,-9.5 - parent: 0 - type: Transform -- uid: 17734 - type: Carpet - components: - - pos: -31.5,-3.5 - parent: 0 - type: Transform -- uid: 17735 - type: Carpet - components: - - pos: -31.5,-4.5 - parent: 0 - type: Transform -- uid: 17736 - type: Carpet - components: - - pos: -31.5,-5.5 - parent: 0 - type: Transform -- uid: 17737 - type: Carpet - components: - - pos: -31.5,-6.5 - parent: 0 - type: Transform -- uid: 17738 - type: Carpet - components: - - pos: -31.5,-7.5 - parent: 0 - type: Transform -- uid: 17739 - type: Carpet - components: - - pos: -31.5,-8.5 - parent: 0 - type: Transform -- uid: 17740 - type: Carpet - components: - - pos: -31.5,-9.5 - parent: 0 - type: Transform -- uid: 17741 - type: Carpet - components: - - pos: -23.5,-7.5 - parent: 0 - type: Transform -- uid: 17742 - type: Carpet - components: - - pos: -23.5,-8.5 - parent: 0 - type: Transform -- uid: 17743 - type: Carpet - components: - - pos: -24.5,-8.5 - parent: 0 - type: Transform -- uid: 17744 - type: Carpet - components: - - pos: -25.5,-8.5 - parent: 0 - type: Transform -- uid: 17745 - type: Carpet - components: - - pos: -26.5,-8.5 - parent: 0 - type: Transform -- uid: 17746 - type: Carpet - components: - - pos: -27.5,-8.5 - parent: 0 - type: Transform -- uid: 17747 - type: Carpet - components: - - pos: -28.5,-8.5 - parent: 0 - type: Transform -- uid: 17748 - type: Carpet - components: - - pos: -29.5,-8.5 - parent: 0 - type: Transform -- uid: 17749 - type: Carpet - components: - - pos: -30.5,-8.5 - parent: 0 - type: Transform -- uid: 17750 - type: Carpet - components: - - pos: -30.5,-7.5 - parent: 0 - type: Transform -- uid: 17751 - type: Carpet - components: - - pos: -29.5,-7.5 - parent: 0 - type: Transform -- uid: 17752 - type: Carpet - components: - - pos: -28.5,-7.5 - parent: 0 - type: Transform -- uid: 17753 - type: Carpet - components: - - pos: -27.5,-7.5 - parent: 0 - type: Transform -- uid: 17754 - type: Carpet - components: - - pos: -26.5,-7.5 - parent: 0 - type: Transform -- uid: 17755 - type: Carpet - components: - - pos: -25.5,-7.5 - parent: 0 - type: Transform -- uid: 17756 - type: Carpet - components: - - pos: -24.5,-7.5 - parent: 0 - type: Transform -- uid: 17757 - type: Carpet - components: - - pos: -32.5,-10.5 - parent: 0 - type: Transform -- uid: 17758 - type: Carpet - components: - - pos: -32.5,-11.5 - parent: 0 - type: Transform -- uid: 17759 - type: Carpet - components: - - pos: -32.5,-12.5 - parent: 0 - type: Transform -- uid: 17760 - type: Carpet - components: - - pos: -32.5,-13.5 - parent: 0 - type: Transform -- uid: 17761 - type: Carpet - components: - - pos: -31.5,-10.5 - parent: 0 - type: Transform -- uid: 17762 - type: Carpet - components: - - pos: -31.5,-11.5 - parent: 0 - type: Transform -- uid: 17763 - type: Carpet - components: - - pos: -31.5,-12.5 - parent: 0 - type: Transform -- uid: 17764 - type: Carpet - components: - - pos: -31.5,-13.5 - parent: 0 - type: Transform -- uid: 17765 - type: Bookshelf - components: - - pos: -24.5,-9.5 - parent: 0 - type: Transform -- uid: 17766 - type: Bookshelf - components: - - pos: -29.5,-13.5 - parent: 0 - type: Transform -- uid: 17767 - type: Bookshelf - components: - - pos: -29.5,-10.5 - parent: 0 - type: Transform -- uid: 17768 - type: Bookshelf - components: - - pos: -30.5,-10.5 - parent: 0 - type: Transform -- uid: 17769 - type: Bookshelf - components: - - pos: -29.5,-12.5 - parent: 0 - type: Transform -- uid: 17770 - type: LampGold - components: - - pos: -28.424265,-10.048199 - parent: 0 - type: Transform -- uid: 17771 - type: Windoor - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-11.5 - parent: 0 - type: Transform -- uid: 17772 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -26.5,-11.5 - parent: 0 - type: Transform -- uid: 17773 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -27.5,-11.5 - parent: 0 - type: Transform -- uid: 17774 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -27.5,-12.5 - parent: 0 - type: Transform -- uid: 17775 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -26.5,-11.5 - parent: 0 - type: Transform -- uid: 17776 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: -26.5,-12.5 - parent: 0 - type: Transform -- uid: 17777 - type: Paper - components: - - pos: -28.47114,-12.470074 - parent: 0 - type: Transform -- uid: 17778 - type: Paper - components: - - pos: -28.47114,-12.470074 - parent: 0 - type: Transform -- uid: 17779 - type: Paper - components: - - pos: -28.47114,-12.470074 - parent: 0 - type: Transform -- uid: 17780 - type: Paper - components: - - pos: -28.47114,-12.470074 - parent: 0 - type: Transform -- uid: 17781 - type: Paper - components: - - pos: -28.47114,-12.470074 - parent: 0 - type: Transform -- uid: 17782 - type: Paper - components: - - pos: -26.28364,-10.470074 - parent: 0 - type: Transform -- uid: 17783 - type: BoxFolderGrey - components: - - pos: -28.455515,-13.345074 - parent: 0 - type: Transform -- uid: 17784 - type: BoxFolderYellow - components: - - pos: -25.424265,-11.235699 - parent: 0 - type: Transform -- uid: 17785 - type: BoxFolderRed - components: - - pos: -25.47114,-10.454449 - parent: 0 - type: Transform -- uid: 17786 - type: TableWood - components: - - pos: -25.5,-17.5 - parent: 0 - type: Transform -- uid: 17787 - type: TableWood - components: - - pos: -26.5,-17.5 - parent: 0 - type: Transform -- uid: 17788 - type: TableWood - components: - - pos: -26.5,-16.5 - parent: 0 - type: Transform -- uid: 17789 - type: Bookshelf - components: - - pos: -28.5,-18.5 - parent: 0 - type: Transform -- uid: 17790 - type: Bookshelf - components: - - pos: -28.5,-17.5 - parent: 0 - type: Transform -- uid: 17791 - type: Bookshelf - components: - - pos: -28.5,-15.5 - parent: 0 - type: Transform -- uid: 17792 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: -28.5,-16.5 - parent: 0 - type: Transform -- uid: 17793 - type: Bed - components: - - pos: -24.5,-15.5 - parent: 0 - type: Transform -- uid: 17794 - type: BedsheetSpawner - components: - - pos: -24.5,-15.5 - parent: 0 - type: Transform -- uid: 17795 - type: ComfyChair - components: - - pos: -25.5,-16.5 - parent: 0 - type: Transform -- uid: 17796 - type: AirlockGlass - components: - - pos: -23.5,-8.5 - parent: 0 - type: Transform -- uid: 17797 - type: AirlockGlass - components: - - pos: -23.5,-7.5 - parent: 0 - type: Transform -- uid: 17798 - type: Grille - components: - - pos: -23.5,-6.5 - parent: 0 - type: Transform -- uid: 17799 - type: Grille - components: - - pos: -30.5,-2.5 - parent: 0 - type: Transform -- uid: 17800 - type: Grille - components: - - pos: -23.5,-9.5 - parent: 0 - type: Transform -- uid: 17801 - type: Grille - components: - - pos: -33.5,-2.5 - parent: 0 - type: Transform -- uid: 17802 - type: AirlockGlass - components: - - pos: -32.5,-2.5 - parent: 0 - type: Transform -- uid: 17803 - type: AirlockGlass - components: - - pos: -31.5,-2.5 - parent: 0 - type: Transform -- uid: 17804 - type: APCBasic - components: - - pos: -30.5,-5.5 - parent: 0 - type: Transform -- uid: 17805 - type: APCBasic - components: - - pos: -41.5,-3.5 - parent: 0 - type: Transform -- uid: 17806 - type: CableMV - components: - - pos: -45.5,-0.5 - parent: 0 - type: Transform -- uid: 17807 - type: CableMV - components: - - pos: -44.5,-0.5 - parent: 0 - type: Transform -- uid: 17808 - type: CableMV - components: - - pos: -43.5,-0.5 - parent: 0 - type: Transform -- uid: 17809 - type: CableMV - components: - - pos: -42.5,-0.5 - parent: 0 - type: Transform -- uid: 17810 - type: CableMV - components: - - pos: -41.5,-0.5 - parent: 0 - type: Transform -- uid: 17811 - type: CableMV - components: - - pos: -40.5,-0.5 - parent: 0 - type: Transform -- uid: 17812 - type: CableMV - components: - - pos: -39.5,-0.5 - parent: 0 - type: Transform -- uid: 17813 - type: CableMV - components: - - pos: -38.5,-0.5 - parent: 0 - type: Transform -- uid: 17814 - type: CableMV - components: - - pos: -37.5,-0.5 - parent: 0 - type: Transform -- uid: 17815 - type: CableMV - components: - - pos: -36.5,-0.5 - parent: 0 - type: Transform -- uid: 17816 - type: CableMV - components: - - pos: -35.5,-0.5 - parent: 0 - type: Transform -- uid: 17817 - type: CableMV - components: - - pos: -34.5,-0.5 - parent: 0 - type: Transform -- uid: 17818 - type: CableMV - components: - - pos: -33.5,-0.5 - parent: 0 - type: Transform -- uid: 17819 - type: CableMV - components: - - pos: -32.5,-0.5 - parent: 0 - type: Transform -- uid: 17820 - type: CableMV - components: - - pos: -31.5,-0.5 - parent: 0 - type: Transform -- uid: 17821 - type: CableMV - components: - - pos: -31.5,-1.5 - parent: 0 - type: Transform -- uid: 17822 - type: CableMV - components: - - pos: -31.5,-2.5 - parent: 0 - type: Transform -- uid: 17823 - type: CableMV - components: - - pos: -31.5,-3.5 - parent: 0 - type: Transform -- uid: 17824 - type: CableMV - components: - - pos: -31.5,-4.5 - parent: 0 - type: Transform -- uid: 17825 - type: CableMV - components: - - pos: -31.5,-5.5 - parent: 0 - type: Transform -- uid: 17826 - type: CableMV - components: - - pos: -30.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17827 - type: CableMV - components: - - pos: -41.5,-1.5 - parent: 0 - type: Transform -- uid: 17828 - type: CableMV - components: - - pos: -41.5,-2.5 - parent: 0 - type: Transform -- uid: 17829 - type: CableMV - components: - - pos: -41.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17830 - type: CableApcExtension - components: - - pos: -41.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17831 - type: CableApcExtension - components: - - pos: -41.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17832 - type: CableApcExtension - components: - - pos: -41.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17833 - type: CableApcExtension - components: - - pos: -41.5,-6.5 - parent: 0 - type: Transform -- uid: 17834 - type: CableApcExtension - components: - - pos: -41.5,-7.5 - parent: 0 - type: Transform -- uid: 17835 - type: CableApcExtension - components: - - pos: -41.5,-8.5 - parent: 0 - type: Transform -- uid: 17836 - type: CableApcExtension - components: - - pos: -41.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17837 - type: CableApcExtension - components: - - pos: -41.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17838 - type: CableApcExtension - components: - - pos: -42.5,-7.5 - parent: 0 - type: Transform -- uid: 17839 - type: CableApcExtension - components: - - pos: -43.5,-7.5 - parent: 0 - type: Transform -- uid: 17840 - type: CableApcExtension - components: - - pos: -30.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17841 - type: CableApcExtension - components: - - pos: -30.5,-6.5 - parent: 0 - type: Transform -- uid: 17842 - type: CableApcExtension - components: - - pos: -30.5,-7.5 - parent: 0 - type: Transform -- uid: 17843 - type: CableApcExtension - components: - - pos: -30.5,-8.5 - parent: 0 - type: Transform -- uid: 17844 - type: CableApcExtension - components: - - pos: -30.5,-9.5 - parent: 0 - type: Transform -- uid: 17845 - type: CableApcExtension - components: - - pos: -30.5,-10.5 - parent: 0 - type: Transform -- uid: 17846 - type: CableApcExtension - components: - - pos: -30.5,-11.5 - parent: 0 - type: Transform -- uid: 17847 - type: CableApcExtension - components: - - pos: -30.5,-12.5 - parent: 0 - type: Transform -- uid: 17848 - type: CableApcExtension - components: - - pos: -30.5,-13.5 - parent: 0 - type: Transform -- uid: 17849 - type: CableApcExtension - components: - - pos: -30.5,-14.5 - parent: 0 - type: Transform -- uid: 17850 - type: CableApcExtension - components: - - pos: -30.5,-15.5 - parent: 0 - type: Transform -- uid: 17851 - type: CableApcExtension - components: - - pos: -30.5,-16.5 - parent: 0 - type: Transform -- uid: 17852 - type: CableApcExtension - components: - - pos: -30.5,-17.5 - parent: 0 - type: Transform -- uid: 17853 - type: CableApcExtension - components: - - pos: -30.5,-18.5 - parent: 0 - type: Transform -- uid: 17854 - type: CableApcExtension - components: - - pos: -31.5,-16.5 - parent: 0 - type: Transform -- uid: 17855 - type: CableApcExtension - components: - - pos: -32.5,-16.5 - parent: 0 - type: Transform -- uid: 17856 - type: CableApcExtension - components: - - pos: -33.5,-16.5 - parent: 0 - type: Transform -- uid: 17857 - type: CableApcExtension - components: - - pos: -29.5,-11.5 - parent: 0 - type: Transform -- uid: 17858 - type: CableApcExtension - components: - - pos: -28.5,-11.5 - parent: 0 - type: Transform -- uid: 17859 - type: CableApcExtension - components: - - pos: -27.5,-11.5 - parent: 0 - type: Transform -- uid: 17860 - type: CableApcExtension - components: - - pos: -26.5,-11.5 - parent: 0 - type: Transform -- uid: 17861 - type: CableApcExtension - components: - - pos: -25.5,-11.5 - parent: 0 - type: Transform -- uid: 17862 - type: CableApcExtension - components: - - pos: -25.5,-12.5 - parent: 0 - type: Transform -- uid: 17863 - type: CableApcExtension - components: - - pos: -25.5,-13.5 - parent: 0 - type: Transform -- uid: 17864 - type: CableApcExtension - components: - - pos: -25.5,-14.5 - parent: 0 - type: Transform -- uid: 17865 - type: CableApcExtension - components: - - pos: -25.5,-15.5 - parent: 0 - type: Transform -- uid: 17866 - type: CableApcExtension - components: - - pos: -25.5,-16.5 - parent: 0 - type: Transform -- uid: 17867 - type: CableApcExtension - components: - - pos: -31.5,-12.5 - parent: 0 - type: Transform -- uid: 17868 - type: CableApcExtension - components: - - pos: -32.5,-12.5 - parent: 0 - type: Transform -- uid: 17869 - type: CableApcExtension - components: - - pos: -33.5,-12.5 - parent: 0 - type: Transform -- uid: 17870 - type: CableApcExtension - components: - - pos: -34.5,-12.5 - parent: 0 - type: Transform -- uid: 17871 - type: CableApcExtension - components: - - pos: -31.5,-10.5 - parent: 0 - type: Transform -- uid: 17872 - type: CableApcExtension - components: - - pos: -32.5,-10.5 - parent: 0 - type: Transform -- uid: 17873 - type: CableApcExtension - components: - - pos: -33.5,-10.5 - parent: 0 - type: Transform -- uid: 17874 - type: CableApcExtension - components: - - pos: -34.5,-10.5 - parent: 0 - type: Transform -- uid: 17875 - type: CableApcExtension - components: - - pos: -29.5,-7.5 - parent: 0 - type: Transform -- uid: 17876 - type: CableApcExtension - components: - - pos: -28.5,-7.5 - parent: 0 - type: Transform -- uid: 17877 - type: CableApcExtension - components: - - pos: -27.5,-7.5 - parent: 0 - type: Transform -- uid: 17878 - type: CableApcExtension - components: - - pos: -26.5,-7.5 - parent: 0 - type: Transform -- uid: 17879 - type: CableApcExtension - components: - - pos: -25.5,-7.5 - parent: 0 - type: Transform -- uid: 17880 - type: CableApcExtension - components: - - pos: -25.5,-6.5 - parent: 0 - type: Transform -- uid: 17881 - type: CableApcExtension - components: - - pos: -25.5,-5.5 - parent: 0 - type: Transform -- uid: 17882 - type: CableApcExtension - components: - - pos: -25.5,-4.5 - parent: 0 - type: Transform -- uid: 17883 - type: CableApcExtension - components: - - pos: -28.5,-6.5 - parent: 0 - type: Transform -- uid: 17884 - type: CableApcExtension - components: - - pos: -28.5,-5.5 - parent: 0 - type: Transform -- uid: 17885 - type: CableApcExtension - components: - - pos: -28.5,-4.5 - parent: 0 - type: Transform -- uid: 17886 - type: CableApcExtension - components: - - pos: -31.5,-7.5 - parent: 0 - type: Transform -- uid: 17887 - type: CableApcExtension - components: - - pos: -32.5,-7.5 - parent: 0 - type: Transform -- uid: 17888 - type: CableApcExtension - components: - - pos: -33.5,-7.5 - parent: 0 - type: Transform -- uid: 17889 - type: CableApcExtension - components: - - pos: -34.5,-7.5 - parent: 0 - type: Transform -- uid: 17890 - type: CableApcExtension - components: - - pos: -32.5,-4.5 - parent: 0 - type: Transform -- uid: 17891 - type: CableApcExtension - components: - - pos: -33.5,-4.5 - parent: 0 - type: Transform -- uid: 17892 - type: CableApcExtension - components: - - pos: -26.5,-9.5 - parent: 0 - type: Transform -- uid: 17893 - type: CableApcExtension - components: - - pos: -26.5,-8.5 - parent: 0 - type: Transform -- uid: 17894 - type: CableApcExtension - components: - - pos: -22.5,-7.5 - parent: 0 - type: Transform -- uid: 17895 - type: CableApcExtension - components: - - pos: -23.5,-7.5 - parent: 0 - type: Transform -- uid: 17896 - type: CableApcExtension - components: - - pos: -24.5,-7.5 - parent: 0 - type: Transform -- uid: 17897 - type: CableApcExtension - components: - - pos: -21.5,-7.5 - parent: 0 - type: Transform -- uid: 17898 - type: CableApcExtension - components: - - pos: -21.5,-6.5 - parent: 0 - type: Transform -- uid: 17899 - type: CableApcExtension - components: - - pos: -21.5,-5.5 - parent: 0 - type: Transform -- uid: 17900 - type: CableApcExtension - components: - - pos: -21.5,-4.5 - parent: 0 - type: Transform -- uid: 17901 - type: CableApcExtension - components: - - pos: -21.5,-3.5 - parent: 0 - type: Transform -- uid: 17902 - type: CableApcExtension - components: - - pos: -21.5,-2.5 - parent: 0 - type: Transform -- uid: 17903 - type: CableApcExtension - components: - - pos: -21.5,-1.5 - parent: 0 - type: Transform -- uid: 17904 - type: CableApcExtension - components: - - pos: -20.5,5.5 - parent: 0 - type: Transform -- uid: 17905 - type: CableApcExtension - components: - - pos: -21.5,5.5 - parent: 0 - type: Transform -- uid: 17906 - type: CableApcExtension - components: - - pos: -21.5,4.5 - parent: 0 - type: Transform -- uid: 17907 - type: CableApcExtension - components: - - pos: -21.5,3.5 - parent: 0 - type: Transform -- uid: 17908 - type: CableApcExtension - components: - - pos: -21.5,2.5 - parent: 0 - type: Transform -- uid: 17909 - type: CableApcExtension - components: - - pos: -21.5,1.5 - parent: 0 - type: Transform -- uid: 17910 - type: CableApcExtension - components: - - pos: -26.5,0.5 - parent: 0 - type: Transform -- uid: 17911 - type: CableApcExtension - components: - - pos: -26.5,-0.5 - parent: 0 - type: Transform -- uid: 17912 - type: CableApcExtension - components: - - pos: -27.5,-0.5 - parent: 0 - type: Transform -- uid: 17913 - type: CableApcExtension - components: - - pos: -28.5,-0.5 - parent: 0 - type: Transform -- uid: 17914 - type: CableApcExtension - components: - - pos: -29.5,-0.5 - parent: 0 - type: Transform -- uid: 17915 - type: CableApcExtension - components: - - pos: -30.5,-0.5 - parent: 0 - type: Transform -- uid: 17916 - type: CableApcExtension - components: - - pos: -31.5,-0.5 - parent: 0 - type: Transform -- uid: 17917 - type: CableApcExtension - components: - - pos: -32.5,-0.5 - parent: 0 - type: Transform -- uid: 17918 - type: CableApcExtension - components: - - pos: -33.5,-0.5 - parent: 0 - type: Transform -- uid: 17919 - type: CableApcExtension - components: - - pos: -34.5,-0.5 - parent: 0 - type: Transform -- uid: 17920 - type: CableApcExtension - components: - - pos: -25.5,-0.5 - parent: 0 - type: Transform -- uid: 17921 - type: CableApcExtension - components: - - pos: -24.5,-0.5 - parent: 0 - type: Transform -- uid: 17922 - type: Poweredlight - components: - - pos: -19.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17923 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17924 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17925 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17926 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17927 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17928 - type: PaintingMoony - components: - - pos: -26.5,-5.5 - parent: 0 - type: Transform -- uid: 17929 - type: PaintingTheKiss - components: - - pos: -33.5,-8.5 - parent: 0 - type: Transform -- uid: 17930 - type: PaintingTheScream - components: - - pos: -33.5,-11.5 - parent: 0 - type: Transform -- uid: 17931 - type: PaintingPersistenceOfMemory - components: - - pos: -29.5,-5.5 - parent: 0 - type: Transform -- uid: 17932 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17933 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17934 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17935 - type: Poweredlight - components: - - pos: -27.5,-6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17936 - type: Poweredlight - components: - - pos: -37.5,0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17937 - type: Poweredlight - components: - - pos: -29.5,0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17938 - type: Carpet - components: - - pos: -32.5,-18.5 - parent: 0 - type: Transform -- uid: 17939 - type: Carpet - components: - - pos: -31.5,-18.5 - parent: 0 - type: Transform -- uid: 17940 - type: Carpet - components: - - pos: -32.5,-15.5 - parent: 0 - type: Transform -- uid: 17941 - type: Carpet - components: - - pos: -31.5,-15.5 - parent: 0 - type: Transform -- uid: 17942 - type: CableApcExtension - components: - - pos: -35.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17943 - type: CableApcExtension - components: - - pos: -36.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17944 - type: CableApcExtension - components: - - pos: -37.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17945 - type: CableApcExtension - components: - - pos: -37.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17946 - type: CableApcExtension - components: - - pos: -37.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17947 - type: CableApcExtension - components: - - pos: -37.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17948 - type: CableApcExtension - components: - - pos: -37.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17949 - type: CableApcExtension - components: - - pos: -37.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17950 - type: CableApcExtension - components: - - pos: -37.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17951 - type: CableApcExtension - components: - - pos: -37.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17952 - type: CableApcExtension - components: - - pos: -37.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17953 - type: CableApcExtension - components: - - pos: -37.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17954 - type: CableApcExtension - components: - - pos: -37.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17955 - type: CableApcExtension - components: - - pos: -37.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17956 - type: CableApcExtension - components: - - pos: -37.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17957 - type: CableApcExtension - components: - - pos: -37.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17958 - type: CableApcExtension - components: - - pos: -37.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17959 - type: CableApcExtension - components: - - pos: -38.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17960 - type: CableApcExtension - components: - - pos: -39.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17961 - type: CableApcExtension - components: - - pos: -40.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17962 - type: CableApcExtension - components: - - pos: -41.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17963 - type: CableApcExtension - components: - - pos: -42.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17964 - type: CableApcExtension - components: - - pos: -43.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17965 - type: CableApcExtension - components: - - pos: -44.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17966 - type: CableApcExtension - components: - - pos: -40.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17967 - type: CableApcExtension - components: - - pos: -40.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17968 - type: CableApcExtension - components: - - pos: -40.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17969 - type: CableApcExtension - components: - - pos: -41.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17970 - type: CableApcExtension - components: - - pos: -42.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17971 - type: CableApcExtension - components: - - pos: -43.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17972 - type: ClothingNeckScarfStripedGreen - components: - - pos: -26.463423,-17.438467 - parent: 0 - type: Transform -- uid: 17973 - type: LampGold - components: - - pos: -26.492193,-16.169508 - parent: 0 - type: Transform -- uid: 17974 - type: SpawnPointLibrarian - components: - - pos: -25.5,-16.5 - parent: 0 - type: Transform -- uid: 17975 - type: SpawnMobSlothPaperwork - components: - - pos: -30.5,-9.5 - parent: 0 - type: Transform -- uid: 17976 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -27.273796,-10.459642 - parent: 0 - type: Transform -- uid: 17977 - type: ToySpawner - components: - - pos: -35.5,-10.5 - parent: 0 - type: Transform -- uid: 17978 - type: ChairOfficeDark - components: - - pos: -26.5,-9.5 - parent: 0 - type: Transform -- uid: 17979 - type: ChairOfficeDark - components: - - pos: -27.5,-9.5 - parent: 0 - type: Transform -- uid: 17980 - type: SpawnMobMouse - components: - - pos: -28.5,-4.5 - parent: 0 - type: Transform -- uid: 17981 - type: ToyMouse - components: - - pos: -24.51708,-3.2737136 - parent: 0 - type: Transform -- uid: 17982 - type: WallSolidRust - components: - - pos: -47.5,-29.5 - parent: 0 - type: Transform -- uid: 17983 - type: WallSolid - components: - - pos: -40.5,-26.5 - parent: 0 - type: Transform -- uid: 17984 - type: WallSolid - components: - - pos: -41.5,-26.5 - parent: 0 - type: Transform -- uid: 17985 - type: WallSolid - components: - - pos: -38.5,-25.5 - parent: 0 - type: Transform -- uid: 17986 - type: WallSolid - components: - - pos: -37.5,-25.5 - parent: 0 - type: Transform -- uid: 17987 - type: WallSolidRust - components: - - pos: -42.5,-20.5 - parent: 0 - type: Transform -- uid: 17988 - type: WallSolidRust - components: - - pos: -37.5,-23.5 - parent: 0 - type: Transform -- uid: 17989 - type: WallSolid - components: - - pos: -37.5,-22.5 - parent: 0 - type: Transform -- uid: 17990 - type: WallSolid - components: - - pos: -37.5,-21.5 - parent: 0 - type: Transform -- uid: 17991 - type: WallSolid - components: - - pos: -37.5,-20.5 - parent: 0 - type: Transform -- uid: 17992 - type: WallSolid - components: - - pos: -38.5,-20.5 - parent: 0 - type: Transform -- uid: 17993 - type: WallSolid - components: - - pos: -40.5,-22.5 - parent: 0 - type: Transform -- uid: 17994 - type: WallSolid - components: - - pos: -39.5,-22.5 - parent: 0 - type: Transform -- uid: 17995 - type: WallSolid - components: - - pos: -41.5,-22.5 - parent: 0 - type: Transform -- uid: 17996 - type: WallSolid - components: - - pos: -41.5,-21.5 - parent: 0 - type: Transform -- uid: 17997 - type: WallSolid - components: - - pos: -38.5,-22.5 - parent: 0 - type: Transform -- uid: 17998 - type: WallSolid - components: - - pos: -40.5,-20.5 - parent: 0 - type: Transform -- uid: 17999 - type: WallSolid - components: - - pos: -41.5,-20.5 - parent: 0 - type: Transform -- uid: 18000 - type: WallSolidRust - components: - - pos: -37.5,-24.5 - parent: 0 - type: Transform -- uid: 18001 - type: WallSolid - components: - - pos: -43.5,-20.5 - parent: 0 - type: Transform -- uid: 18002 - type: WallSolid - components: - - pos: -44.5,-20.5 - parent: 0 - type: Transform -- uid: 18003 - type: WallSolid - components: - - pos: -45.5,-20.5 - parent: 0 - type: Transform -- uid: 18004 - type: WallSolid - components: - - pos: -45.5,-21.5 - parent: 0 - type: Transform -- uid: 18005 - type: WallSolid - components: - - pos: -45.5,-22.5 - parent: 0 - type: Transform -- uid: 18006 - type: WallSolid - components: - - pos: -45.5,-23.5 - parent: 0 - type: Transform -- uid: 18007 - type: WallSolid - components: - - pos: -45.5,-25.5 - parent: 0 - type: Transform -- uid: 18008 - type: WallSolid - components: - - pos: -45.5,-26.5 - parent: 0 - type: Transform -- uid: 18009 - type: WallSolid - components: - - pos: -44.5,-26.5 - parent: 0 - type: Transform -- uid: 18010 - type: WallSolid - components: - - pos: -43.5,-26.5 - parent: 0 - type: Transform -- uid: 18011 - type: WallSolid - components: - - pos: -42.5,-26.5 - parent: 0 - type: Transform -- uid: 18012 - type: WallSolid - components: - - pos: -46.5,-20.5 - parent: 0 - type: Transform -- uid: 18013 - type: WallSolid - components: - - pos: -46.5,-18.5 - parent: 0 - type: Transform -- uid: 18014 - type: AirlockMaintLocked - components: - - pos: -0.5,-45.5 - parent: 0 - type: Transform -- uid: 18015 - type: WallSolid - components: - - pos: -46.5,-16.5 - parent: 0 - type: Transform -- uid: 18016 - type: WallSolid - components: - - pos: -46.5,-15.5 - parent: 0 - type: Transform -- uid: 18017 - type: WallSolid - components: - - pos: -47.5,-15.5 - parent: 0 - type: Transform -- uid: 18018 - type: WallSolid - components: - - pos: -48.5,-15.5 - parent: 0 - type: Transform -- uid: 18019 - type: WallSolid - components: - - pos: -49.5,-15.5 - parent: 0 - type: Transform -- uid: 18020 - type: WallSolid - components: - - pos: -50.5,-15.5 - parent: 0 - type: Transform -- uid: 18021 - type: WallSolid - components: - - pos: -51.5,-15.5 - parent: 0 - type: Transform -- uid: 18022 - type: WallSolid - components: - - pos: -51.5,-16.5 - parent: 0 - type: Transform -- uid: 18023 - type: WallSolid - components: - - pos: -51.5,-17.5 - parent: 0 - type: Transform -- uid: 18024 - type: WallSolid - components: - - pos: -51.5,-18.5 - parent: 0 - type: Transform -- uid: 18025 - type: WallSolid - components: - - pos: -51.5,-19.5 - parent: 0 - type: Transform -- uid: 18026 - type: WallSolid - components: - - pos: -51.5,-20.5 - parent: 0 - type: Transform -- uid: 18027 - type: WallSolid - components: - - pos: -50.5,-20.5 - parent: 0 - type: Transform -- uid: 18028 - type: WallSolid - components: - - pos: -49.5,-20.5 - parent: 0 - type: Transform -- uid: 18029 - type: WallSolidRust - components: - - pos: -47.5,-20.5 - parent: 0 - type: Transform -- uid: 18030 - type: WallSolidRust - components: - - pos: -46.5,-26.5 - parent: 0 - type: Transform -- uid: 18031 - type: Grille - components: - - pos: -39.5,-20.5 - parent: 0 - type: Transform -- uid: 18032 - type: AirlockMaintLocked - components: - - pos: -45.5,-24.5 - parent: 0 - type: Transform -- uid: 18033 - type: AirlockMaintLocked - components: - - pos: -48.5,-20.5 - parent: 0 - type: Transform -- uid: 18034 - type: AirlockMaintLocked - components: - - pos: -46.5,-19.5 - parent: 0 - type: Transform -- uid: 18035 - type: Girder - components: - - pos: -47.5,-22.5 - parent: 0 - type: Transform -- uid: 18036 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -43.5,-35.5 - parent: 0 - type: Transform -- uid: 18037 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-35.5 - parent: 0 - type: Transform -- uid: 18038 - type: DisposalPipe - components: - - pos: -43.5,-34.5 - parent: 0 - type: Transform -- uid: 18039 - type: DisposalPipe - components: - - pos: -43.5,-33.5 - parent: 0 - type: Transform -- uid: 18040 - type: DisposalPipe - components: - - pos: -43.5,-32.5 - parent: 0 - type: Transform -- uid: 18041 - type: DisposalPipe - components: - - pos: -43.5,-31.5 - parent: 0 - type: Transform -- uid: 18042 - type: DisposalPipe - components: - - pos: -43.5,-30.5 - parent: 0 - type: Transform -- uid: 18043 - type: DisposalPipe - components: - - pos: -43.5,-29.5 - parent: 0 - type: Transform -- uid: 18044 - type: DisposalPipe - components: - - pos: -43.5,-28.5 - parent: 0 - type: Transform -- uid: 18045 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-27.5 - parent: 0 - type: Transform -- uid: 18046 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-27.5 - parent: 0 - type: Transform -- uid: 18047 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-20.5 - parent: 0 - type: Transform -- uid: 18048 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-27.5 - parent: 0 - type: Transform -- uid: 18049 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-27.5 - parent: 0 - type: Transform -- uid: 18050 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-27.5 - parent: 0 - type: Transform -- uid: 18051 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-27.5 - parent: 0 - type: Transform -- uid: 18052 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-27.5 - parent: 0 - type: Transform -- uid: 18053 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-27.5 - parent: 0 - type: Transform -- uid: 18054 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-27.5 - parent: 0 - type: Transform -- uid: 18055 - type: DisposalPipe - components: - - pos: -35.5,-26.5 - parent: 0 - type: Transform -- uid: 18056 - type: DisposalPipe - components: - - pos: -35.5,-25.5 - parent: 0 - type: Transform -- uid: 18057 - type: DisposalPipe - components: - - pos: -35.5,-24.5 - parent: 0 - type: Transform -- uid: 18058 - type: DisposalPipe - components: - - pos: -35.5,-23.5 - parent: 0 - type: Transform -- uid: 18059 - type: DisposalPipe - components: - - pos: -35.5,-22.5 - parent: 0 - type: Transform -- uid: 18060 - type: DisposalPipe - components: - - pos: -35.5,-21.5 - parent: 0 - type: Transform -- uid: 18061 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-20.5 - parent: 0 - type: Transform -- uid: 18062 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-20.5 - parent: 0 - type: Transform -- uid: 18063 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-20.5 - parent: 0 - type: Transform -- uid: 18064 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-20.5 - parent: 0 - type: Transform -- uid: 18065 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-20.5 - parent: 0 - type: Transform -- uid: 18066 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-20.5 - parent: 0 - type: Transform -- uid: 18067 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-20.5 - parent: 0 - type: Transform -- uid: 18068 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-20.5 - parent: 0 - type: Transform -- uid: 18069 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-20.5 - parent: 0 - type: Transform -- uid: 18070 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-20.5 - parent: 0 - type: Transform -- uid: 18071 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-20.5 - parent: 0 - type: Transform -- uid: 18072 - type: DisposalTrunk - components: - - pos: -23.5,-19.5 - parent: 0 - type: Transform -- uid: 18073 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-20.5 - parent: 0 - type: Transform -- uid: 18074 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-20.5 - parent: 0 - type: Transform -- uid: 18075 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-20.5 - parent: 0 - type: Transform -- uid: 18076 - type: Girder - components: - - pos: -34.5,-22.5 - parent: 0 - type: Transform -- uid: 18077 - type: GrilleBroken - components: - - pos: -34.5,-24.5 - parent: 0 - type: Transform -- uid: 18078 - type: CableHV - components: - - pos: -37.5,-0.5 - parent: 0 - type: Transform -- uid: 18079 - type: CableHV - components: - - pos: -37.5,-1.5 - parent: 0 - type: Transform -- uid: 18080 - type: CableHV - components: - - pos: -37.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18081 - type: CableHV - components: - - pos: -37.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18082 - type: CableHV - components: - - pos: -37.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18083 - type: CableHV - components: - - pos: -37.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18084 - type: CableHV - components: - - pos: -37.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18085 - type: CableHV - components: - - pos: -37.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18086 - type: CableHV - components: - - pos: -37.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18087 - type: CableHV - components: - - pos: -37.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18088 - type: CableHV - components: - - pos: -37.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18089 - type: CableHV - components: - - pos: -37.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18090 - type: CableHV - components: - - pos: -37.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18091 - type: CableHV - components: - - pos: -37.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18092 - type: CableHV - components: - - pos: -37.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18093 - type: CableHV - components: - - pos: -37.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18094 - type: CableHV - components: - - pos: -37.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18095 - type: CableHV - components: - - pos: -37.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18096 - type: CableHV - components: - - pos: -37.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18097 - type: CableHV - components: - - pos: -37.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18098 - type: CableHV - components: - - pos: -36.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18099 - type: CableHV - components: - - pos: -36.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18100 - type: CableHV - components: - - pos: -36.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18101 - type: CableHV - components: - - pos: -36.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18102 - type: CableHV - components: - - pos: -36.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18103 - type: CableHV - components: - - pos: -36.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18104 - type: CableHV - components: - - pos: -36.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18105 - type: CableHV - components: - - pos: -36.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18106 - type: CableHV - components: - - pos: -35.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18107 - type: CableHV - components: - - pos: -34.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18108 - type: CableHV - components: - - pos: -33.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18109 - type: CableHV - components: - - pos: -32.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18110 - type: CableHV - components: - - pos: -31.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18111 - type: CableHV - components: - - pos: -30.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18112 - type: CableHV - components: - - pos: -29.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18113 - type: CableHV - components: - - pos: -28.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18114 - type: CableHV - components: - - pos: -27.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18115 - type: CableHV - components: - - pos: -26.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18116 - type: CableHV - components: - - pos: -25.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18117 - type: CableHV - components: - - pos: -24.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18118 - type: CableHV - components: - - pos: -23.5,-20.5 - parent: 0 - type: Transform -- uid: 18119 - type: CableHV - components: - - pos: -22.5,-20.5 - parent: 0 - type: Transform -- uid: 18120 - type: CableHV - components: - - pos: -21.5,-20.5 - parent: 0 - type: Transform -- uid: 18121 - type: CableHV - components: - - pos: -20.5,-20.5 - parent: 0 - type: Transform -- uid: 18122 - type: CableHV - components: - - pos: -19.5,-20.5 - parent: 0 - type: Transform -- uid: 18123 - type: CableHV - components: - - pos: -18.5,-20.5 - parent: 0 - type: Transform -- uid: 18124 - type: CableHV - components: - - pos: -17.5,-20.5 - parent: 0 - type: Transform -- uid: 18125 - type: CableHV - components: - - pos: -16.5,-20.5 - parent: 0 - type: Transform -- uid: 18126 - type: CableHV - components: - - pos: -15.5,-20.5 - parent: 0 - type: Transform -- uid: 18127 - type: CableHV - components: - - pos: -14.5,-20.5 - parent: 0 - type: Transform -- uid: 18128 - type: CableHV - components: - - pos: -13.5,-20.5 - parent: 0 - type: Transform -- uid: 18129 - type: CableHV - components: - - pos: -12.5,-20.5 - parent: 0 - type: Transform -- uid: 18130 - type: CableHV - components: - - pos: -12.5,-19.5 - parent: 0 - type: Transform -- uid: 18131 - type: CableHV - components: - - pos: -12.5,-18.5 - parent: 0 - type: Transform -- uid: 18132 - type: CableHV - components: - - pos: -12.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18133 - type: CableHV - components: - - pos: -12.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18134 - type: CableHV - components: - - pos: -12.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18135 - type: CableHV - components: - - pos: -12.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18136 - type: CableHV - components: - - pos: -12.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18137 - type: CableHV - components: - - pos: -12.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18138 - type: CableHV - components: - - pos: -12.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18139 - type: CableHV - components: - - pos: -12.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18140 - type: CableHV - components: - - pos: -12.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18141 - type: CableHV - components: - - pos: -12.5,-8.5 - parent: 0 - type: Transform -- uid: 18142 - type: CableHV - components: - - pos: -47.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18143 - type: CableHV - components: - - pos: -48.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18144 - type: CableHV - components: - - pos: -49.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18145 - type: CableHV - components: - - pos: -50.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18146 - type: CableHV - components: - - pos: -51.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18147 - type: CableHV - components: - - pos: -52.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18148 - type: CableHV - components: - - pos: -53.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18149 - type: CableHV - components: - - pos: -54.5,8.5 - parent: 0 - type: Transform -- uid: 18150 - type: CableHV - components: - - pos: -54.5,7.5 - parent: 0 - type: Transform -- uid: 18151 - type: CableHV - components: - - pos: -54.5,6.5 - parent: 0 - type: Transform -- uid: 18152 - type: CableHV - components: - - pos: -54.5,5.5 - parent: 0 - type: Transform -- uid: 18153 - type: CableHV - components: - - pos: -54.5,4.5 - parent: 0 - type: Transform -- uid: 18154 - type: CableHV - components: - - pos: -54.5,3.5 - parent: 0 - type: Transform -- uid: 18155 - type: CableHV - components: - - pos: -54.5,2.5 - parent: 0 - type: Transform -- uid: 18156 - type: CableHV - components: - - pos: -54.5,1.5 - parent: 0 - type: Transform -- uid: 18157 - type: CableHV - components: - - pos: -54.5,0.5 - parent: 0 - type: Transform -- uid: 18158 - type: CableHV - components: - - pos: -54.5,-0.5 - parent: 0 - type: Transform -- uid: 18159 - type: CableHV - components: - - pos: -54.5,-1.5 - parent: 0 - type: Transform -- uid: 18160 - type: CableHV - components: - - pos: -54.5,-2.5 - parent: 0 - type: Transform -- uid: 18161 - type: CableHV - components: - - pos: -54.5,-3.5 - parent: 0 - type: Transform -- uid: 18162 - type: CableHV - components: - - pos: -54.5,-4.5 - parent: 0 - type: Transform -- uid: 18163 - type: CableHV - components: - - pos: -54.5,-5.5 - parent: 0 - type: Transform -- uid: 18164 - type: CableHV - components: - - pos: -54.5,-6.5 - parent: 0 - type: Transform -- uid: 18165 - type: CableHV - components: - - pos: -54.5,-7.5 - parent: 0 - type: Transform -- uid: 18166 - type: CableHV - components: - - pos: -54.5,-8.5 - parent: 0 - type: Transform -- uid: 18167 - type: CableHV - components: - - pos: -54.5,-9.5 - parent: 0 - type: Transform -- uid: 18168 - type: CableHV - components: - - pos: -55.5,-9.5 - parent: 0 - type: Transform -- uid: 18169 - type: CableHV - components: - - pos: -56.5,-9.5 - parent: 0 - type: Transform -- uid: 18170 - type: CableHV - components: - - pos: -57.5,-9.5 - parent: 0 - type: Transform -- uid: 18171 - type: CableHV - components: - - pos: -58.5,-9.5 - parent: 0 - type: Transform -- uid: 18172 - type: CableHV - components: - - pos: -59.5,-9.5 - parent: 0 - type: Transform -- uid: 18173 - type: CableHV - components: - - pos: -60.5,-9.5 - parent: 0 - type: Transform -- uid: 18174 - type: CableHV - components: - - pos: -60.5,-10.5 - parent: 0 - type: Transform -- uid: 18175 - type: CableHV - components: - - pos: -60.5,-11.5 - parent: 0 - type: Transform -- uid: 18176 - type: CableHV - components: - - pos: -60.5,-12.5 - parent: 0 - type: Transform -- uid: 18177 - type: CableHV - components: - - pos: -60.5,-13.5 - parent: 0 - type: Transform -- uid: 18178 - type: CableHV - components: - - pos: -60.5,-14.5 - parent: 0 - type: Transform -- uid: 18179 - type: CableHV - components: - - pos: -60.5,-15.5 - parent: 0 - type: Transform -- uid: 18180 - type: CableHV - components: - - pos: -60.5,-16.5 - parent: 0 - type: Transform -- uid: 18181 - type: CableHV - components: - - pos: -59.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18182 - type: CableHV - components: - - pos: -58.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18183 - type: CableHV - components: - - pos: -57.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18184 - type: CableHV - components: - - pos: -56.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18185 - type: CableHV - components: - - pos: -55.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18186 - type: CableHV - components: - - pos: -54.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18187 - type: CableHV - components: - - pos: -53.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18188 - type: CableHV - components: - - pos: -52.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18189 - type: CableHV - components: - - pos: -52.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18190 - type: CableHV - components: - - pos: -52.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18191 - type: CableHV - components: - - pos: -52.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18192 - type: CableHV - components: - - pos: -52.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18193 - type: CableHV - components: - - pos: -52.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18194 - type: CableHV - components: - - pos: -40.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18195 - type: CableHV - components: - - pos: -41.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18196 - type: CableHV - components: - - pos: -42.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18197 - type: CableHV - components: - - pos: -43.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18198 - type: CableHV - components: - - pos: -44.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18199 - type: CableHV - components: - - pos: -45.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18200 - type: CableHV - components: - - pos: -46.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18201 - type: CableHV - components: - - pos: -47.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18202 - type: CableHV - components: - - pos: -47.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18203 - type: CableHV - components: - - pos: -47.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18204 - type: CableHV - components: - - pos: -47.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18205 - type: CableHV - components: - - pos: -47.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18206 - type: CableHV - components: - - pos: -46.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18207 - type: CableHV - components: - - pos: -46.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18208 - type: CableHV - components: - - pos: -46.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18209 - type: CableHV - components: - - pos: -47.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18210 - type: CableHV - components: - - pos: -48.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18211 - type: CableHV - components: - - pos: -49.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18212 - type: CableHV - components: - - pos: -50.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18213 - type: CableHV - components: - - pos: -51.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18214 - type: GasPipeTJunction - components: - - pos: -20.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18215 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -47.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18216 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -22.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18217 - type: Girder - components: - - pos: -48.5,-40.5 - parent: 0 - type: Transform -- uid: 18218 - type: ShuttersNormal - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-17.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 18402 - type: SignalReceiver -- uid: 18219 - type: WallSolid - components: - - pos: -51.5,-8.5 - parent: 0 - type: Transform -- uid: 18220 - type: WallSolid - components: - - pos: -51.5,-7.5 - parent: 0 - type: Transform -- uid: 18221 - type: WallSolid - components: - - pos: -51.5,-6.5 - parent: 0 - type: Transform -- uid: 18222 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-7.5 - parent: 0 - type: Transform -- uid: 18223 - type: TableWood - components: - - pos: -48.5,-7.5 - parent: 0 - type: Transform -- uid: 18224 - type: TableWood - components: - - pos: -48.5,-6.5 - parent: 0 - type: Transform -- uid: 18225 - type: TableWood - components: - - pos: -47.5,-6.5 - parent: 0 - type: Transform -- uid: 18226 - type: Carpet - components: - - pos: -48.5,-7.5 - parent: 0 - type: Transform -- uid: 18227 - type: TableWood - components: - - pos: -47.5,-11.5 - parent: 0 - type: Transform -- uid: 18228 - type: ChairOfficeDark - components: - - pos: -47.5,-10.5 - parent: 0 - type: Transform -- uid: 18229 - type: TableWood - components: - - pos: -49.5,-11.5 - parent: 0 - type: Transform -- uid: 18230 - type: CableApcExtension - components: - - pos: -58.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18231 - type: TableWood - components: - - pos: -48.5,-8.5 - parent: 0 - type: Transform -- uid: 18232 - type: CableApcExtension - components: - - pos: -59.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18233 - type: WallSolid - components: - - pos: -50.5,-12.5 - parent: 0 - type: Transform -- uid: 18234 - type: TableWood - components: - - pos: -50.5,-10.5 - parent: 0 - type: Transform -- uid: 18235 - type: CableApcExtension - components: - - pos: -49.5,-4.5 - parent: 0 - type: Transform -- uid: 18236 - type: CableApcExtension - components: - - pos: -49.5,-6.5 - parent: 0 - type: Transform -- uid: 18237 - type: CableApcExtension - components: - - pos: -49.5,-7.5 - parent: 0 - type: Transform -- uid: 18238 - type: CableApcExtension - components: - - pos: -52.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18239 - type: CableApcExtension - components: - - pos: -49.5,-9.5 - parent: 0 - type: Transform -- uid: 18240 - type: CableApcExtension - components: - - pos: -52.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18241 - type: CableApcExtension - components: - - pos: -52.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18242 - type: CableApcExtension - components: - - pos: -52.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18243 - type: CableApcExtension - components: - - pos: -52.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18244 - type: CableApcExtension - components: - - pos: -52.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18245 - type: CableApcExtension - components: - - pos: -52.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18246 - type: CableApcExtension - components: - - pos: -49.5,-8.5 - parent: 0 - type: Transform -- uid: 18247 - type: CableApcExtension - components: - - pos: -49.5,-10.5 - parent: 0 - type: Transform -- uid: 18248 - type: CableApcExtension - components: - - pos: -48.5,-10.5 - parent: 0 - type: Transform -- uid: 18249 - type: Carpet - components: - - pos: -48.5,-8.5 - parent: 0 - type: Transform -- uid: 18250 - type: TableWood - components: - - pos: -46.5,-10.5 - parent: 0 - type: Transform -- uid: 18251 - type: Carpet - components: - - pos: -47.5,-8.5 - parent: 0 - type: Transform -- uid: 18252 - type: Carpet - components: - - pos: -49.5,-8.5 - parent: 0 - type: Transform -- uid: 18253 - type: Carpet - components: - - pos: -47.5,-7.5 - parent: 0 - type: Transform -- uid: 18254 - type: TableWood - components: - - pos: -46.5,-7.5 - parent: 0 - type: Transform -- uid: 18255 - type: TableWood - components: - - pos: -46.5,-11.5 - parent: 0 - type: Transform -- uid: 18256 - type: Carpet - components: - - pos: -49.5,-7.5 - parent: 0 - type: Transform -- uid: 18257 - type: TableWood - components: - - pos: -46.5,-6.5 - parent: 0 - type: Transform -- uid: 18258 - type: CableApcExtension - components: - - pos: -50.5,-4.5 - parent: 0 - type: Transform -- uid: 18259 - type: CableApcExtension - components: - - pos: -49.5,-5.5 - parent: 0 - type: Transform -- uid: 18260 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-10.5 - parent: 0 - type: Transform -- uid: 18261 - type: WallSolid - components: - - pos: -51.5,-12.5 - parent: 0 - type: Transform -- uid: 18262 - type: WallSolid - components: - - pos: -49.5,-12.5 - parent: 0 - type: Transform -- uid: 18263 - type: TableWood - components: - - pos: -50.5,-11.5 - parent: 0 - type: Transform -- uid: 18264 - type: CableApcExtension - components: - - pos: -57.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18265 - type: CableApcExtension - components: - - pos: -56.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18266 - type: CableApcExtension - components: - - pos: -55.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18267 - type: CableApcExtension - components: - - pos: -54.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18268 - type: Grille - components: - - pos: -62.5,-21.5 - parent: 0 - type: Transform -- uid: 18269 - type: Grille - components: - - pos: -62.5,-20.5 - parent: 0 - type: Transform -- uid: 18270 - type: Airlock - components: - - pos: -49.5,-5.5 - parent: 0 - type: Transform -- uid: 18271 - type: AirlockMaintLocked - components: - - pos: -48.5,-12.5 - parent: 0 - type: Transform -- uid: 18272 - type: AirlockMaintLocked - components: - - pos: -52.5,-5.5 - parent: 0 - type: Transform -- uid: 18273 - type: AirlockMaintLocked - components: - - pos: -59.5,-16.5 - parent: 0 - type: Transform -- uid: 18274 - type: ClosetMaintenanceFilledRandom - components: - - pos: -38.5,-21.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18275 - type: Rack - components: - - pos: -40.5,-21.5 - parent: 0 - type: Transform -- uid: 18276 - type: MaintenanceToolSpawner - components: - - pos: -40.5,-21.5 - parent: 0 - type: Transform -- uid: 18277 - type: RandomSpawner - components: - - pos: -39.5,-21.5 - parent: 0 - type: Transform -- uid: 18278 - type: CableApcExtension - components: - - pos: -30.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18279 - type: CableApcExtension - components: - - pos: -30.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18280 - type: CableApcExtension - components: - - pos: -31.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18281 - type: CableApcExtension - components: - - pos: -32.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18282 - type: CableApcExtension - components: - - pos: -33.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18283 - type: CableApcExtension - components: - - pos: -34.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18284 - type: CableApcExtension - components: - - pos: -35.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18285 - type: CableApcExtension - components: - - pos: -36.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18286 - type: CableApcExtension - components: - - pos: -36.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18287 - type: CableApcExtension - components: - - pos: -36.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18288 - type: CableApcExtension - components: - - pos: -36.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18289 - type: CableApcExtension - components: - - pos: -36.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18290 - type: CableApcExtension - components: - - pos: -36.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18291 - type: CableApcExtension - components: - - pos: -36.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18292 - type: CableApcExtension - components: - - pos: -21.5,-20.5 - parent: 0 - type: Transform -- uid: 18293 - type: CableApcExtension - components: - - pos: -22.5,-20.5 - parent: 0 - type: Transform -- uid: 18294 - type: CableApcExtension - components: - - pos: -23.5,-20.5 - parent: 0 - type: Transform -- uid: 18295 - type: CableApcExtension - components: - - pos: -24.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18296 - type: CableApcExtension - components: - - pos: -25.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18297 - type: CableApcExtension - components: - - pos: -26.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18298 - type: CableApcExtension - components: - - pos: -53.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18299 - type: CableApcExtension - components: - - pos: -52.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18300 - type: CableApcExtension - components: - - pos: -52.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18301 - type: CableApcExtension - components: - - pos: -52.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18302 - type: CableApcExtension - components: - - pos: -52.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18303 - type: CableApcExtension - components: - - pos: -52.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18304 - type: CableApcExtension - components: - - pos: -52.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18305 - type: CableApcExtension - components: - - pos: -51.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18306 - type: CableApcExtension - components: - - pos: -50.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18307 - type: CableApcExtension - components: - - pos: -49.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18308 - type: CableApcExtension - components: - - pos: -48.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18309 - type: CableApcExtension - components: - - pos: -47.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18310 - type: CableApcExtension - components: - - pos: -46.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18311 - type: CableApcExtension - components: - - pos: -48.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18312 - type: CableApcExtension - components: - - pos: -48.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18313 - type: CableApcExtension - components: - - pos: -48.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18314 - type: CableApcExtension - components: - - pos: -48.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18315 - type: CableApcExtension - components: - - pos: -46.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18316 - type: CableApcExtension - components: - - pos: -46.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18317 - type: CableApcExtension - components: - - pos: -46.5,-24.5 - parent: 0 - type: Transform -- uid: 18318 - type: CableApcExtension - components: - - pos: -45.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18319 - type: CableApcExtension - components: - - pos: -44.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18320 - type: CableApcExtension - components: - - pos: -43.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18321 - type: CableApcExtension - components: - - pos: -42.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18322 - type: CableApcExtension - components: - - pos: -41.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18323 - type: CableApcExtension - components: - - pos: -40.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18324 - type: CableApcExtension - components: - - pos: -41.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18325 - type: CableApcExtension - components: - - pos: -41.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18326 - type: CableApcExtension - components: - - pos: -52.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18327 - type: CableApcExtension - components: - - pos: -52.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18328 - type: CableApcExtension - components: - - pos: -59.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18329 - type: CableApcExtension - components: - - pos: -58.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18330 - type: CableApcExtension - components: - - pos: -57.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18331 - type: CableApcExtension - components: - - pos: -56.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18332 - type: CableApcExtension - components: - - pos: -55.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18333 - type: CrayonBox - components: - - pos: -35.50563,-13.457037 - parent: 0 - type: Transform -- uid: 18334 - type: WallSolid - components: - - pos: -58.5,-10.5 - parent: 0 - type: Transform -- uid: 18335 - type: FirelockGlass - components: - - pos: -62.5,-18.5 - parent: 0 - type: Transform -- uid: 18336 - type: FirelockGlass - components: - - pos: -62.5,-17.5 - parent: 0 - type: Transform -- uid: 18337 - type: Poweredlight - components: - - pos: -63.5,-17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18338 - type: Poweredlight - components: - - pos: -69.5,-17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18339 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18340 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18341 - type: Lamp - components: - - pos: -48.471794,-6.190209 - parent: 0 - type: Transform -- uid: 18342 - type: LampGold - components: - - pos: -50.54992,-11.002708 - parent: 0 - type: Transform -- uid: 18343 - type: BoxFolderWhite - components: - - pos: -47.48742,-6.408959 - parent: 0 - type: Transform -- uid: 18344 - type: BoxFolderGrey - components: - - pos: -49.61242,-11.455833 - parent: 0 - type: Transform -- uid: 18345 - type: BoxFolderBlue - components: - - pos: -46.45617,-11.408958 - parent: 0 - type: Transform -- uid: 18346 - type: CarpetPink - components: - - pos: -50.5,-11.5 - parent: 0 - type: Transform -- uid: 18347 - type: CarpetPink - components: - - pos: -50.5,-10.5 - parent: 0 - type: Transform -- uid: 18348 - type: CarpetPink - components: - - pos: -49.5,-11.5 - parent: 0 - type: Transform -- uid: 18349 - type: CarpetPink - components: - - pos: -49.5,-10.5 - parent: 0 - type: Transform -- uid: 18350 - type: CarpetSBlue - components: - - pos: -46.5,-11.5 - parent: 0 - type: Transform -- uid: 18351 - type: CarpetSBlue - components: - - pos: -46.5,-10.5 - parent: 0 - type: Transform -- uid: 18352 - type: CarpetSBlue - components: - - pos: -47.5,-11.5 - parent: 0 - type: Transform -- uid: 18353 - type: CarpetSBlue - components: - - pos: -47.5,-10.5 - parent: 0 - type: Transform -- uid: 18354 - type: GasPipeStraight - components: - - pos: -49.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18355 - type: GasPipeStraight - components: - - pos: -49.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18356 - type: GasPipeStraight - components: - - pos: -49.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18357 - type: GasPipeStraight - components: - - pos: -49.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18358 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -49.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18359 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18360 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18361 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18362 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18363 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18364 - type: GasPipeStraight - components: - - pos: -35.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18365 - type: GasPipeStraight - components: - - pos: -35.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18366 - type: GasPipeStraight - components: - - pos: -35.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18367 - type: GasPipeStraight - components: - - pos: -35.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18368 - type: GasPipeStraight - components: - - pos: -35.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18369 - type: GasPipeStraight - components: - - pos: -35.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18370 - type: GasPipeStraight - components: - - pos: -35.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18371 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18372 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18373 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18374 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18375 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18376 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18377 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18378 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18379 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18380 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18381 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18382 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18383 - type: Table - components: - - pos: -50.5,-17.5 - parent: 0 - type: Transform -- uid: 18384 - type: Table - components: - - pos: -50.5,-16.5 - parent: 0 - type: Transform -- uid: 18385 - type: Table - components: - - pos: -49.5,-16.5 - parent: 0 - type: Transform -- uid: 18386 - type: Table - components: - - pos: -48.5,-16.5 - parent: 0 - type: Transform -- uid: 18387 - type: Table - components: - - pos: -47.5,-18.5 - parent: 0 - type: Transform -- uid: 18388 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-17.5 - parent: 0 - type: Transform -- uid: 18389 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-17.5 - parent: 0 - type: Transform -- uid: 18390 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-18.5 - parent: 0 - type: Transform -- uid: 18391 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-18.5 - parent: 0 - type: Transform -- uid: 18392 - type: LockerFreezer - components: - - pos: -50.5,-19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18393 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-18.5 - parent: 0 - type: Transform -- uid: 18394 - type: ClothingOuterApronChef - components: - - pos: -50.46202,-17.365347 - parent: 0 - type: Transform -- uid: 18395 - type: Lamp - components: - - rot: -1.5707963267948966 rad - pos: -47.52452,-18.068472 - parent: 0 - type: Transform -- uid: 18396 - type: KitchenMicrowave - components: - - pos: -48.5,-16.5 - parent: 0 - type: Transform -- uid: 18397 - type: FoodCondimentBottleEnzyme - components: - - pos: -50.602646,-16.334097 - parent: 0 - type: Transform - - tags: [] - type: Tag -- uid: 18398 - type: ReagentContainerFlour - components: - - pos: -50.27452,-16.459097 - parent: 0 - type: Transform - - tags: [] - type: Tag -- uid: 18399 - type: Beaker - components: - - pos: -49.540146,-16.412222 - parent: 0 - type: Transform -- uid: 18400 - type: KitchenSpike - components: - - pos: -49.5,-19.5 - parent: 0 - type: Transform -- uid: 18401 - type: PoweredSmallLight - components: - - pos: -47.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18402 - type: SignalButton - components: - - pos: -46.5,-18.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 18218 - type: SignalTransmitter -- uid: 18403 - type: RandomSpawner - components: - - pos: -50.5,-18.5 - parent: 0 - type: Transform -- uid: 18404 - type: PartRodMetal - components: - - pos: -49.49327,-18.412222 - parent: 0 - type: Transform -- uid: 18405 - type: Rack - components: - - pos: -44.5,-25.5 - parent: 0 - type: Transform -- uid: 18406 - type: Rack - components: - - pos: -43.5,-25.5 - parent: 0 - type: Transform -- uid: 18407 - type: Rack - components: - - pos: -41.5,-25.5 - parent: 0 - type: Transform -- uid: 18408 - type: Table - components: - - pos: -40.5,-25.5 - parent: 0 - type: Transform -- uid: 18409 - type: ClosetMaintenanceFilledRandom - components: - - pos: -38.5,-23.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18410 - type: Grille - components: - - pos: -51.5,-13.5 - parent: 0 - type: Transform -- uid: 18411 - type: ClosetEmergencyFilledRandom - components: - - pos: -50.5,-13.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18412 - type: WaterTankFull - components: - - pos: -49.5,-13.5 - parent: 0 - type: Transform -- uid: 18413 - type: RandomSpawner - components: - - pos: -47.5,-14.5 - parent: 0 - type: Transform -- uid: 18414 - type: ToolboxMechanicalFilled - components: - - pos: -46.552124,-14.521681 - parent: 0 - type: Transform -- uid: 18415 - type: CableApcExtension - components: - - pos: -61.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18416 - type: Rack - components: - - pos: -61.5,-20.5 - parent: 0 - type: Transform -- uid: 18417 - type: WallReinforced - components: - - pos: -59.5,-22.5 - parent: 0 - type: Transform -- uid: 18419 - type: CableApcExtension - components: - - pos: -61.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18420 - type: WallReinforced - components: - - pos: -60.5,-24.5 - parent: 0 - type: Transform -- uid: 18421 - type: Catwalk - components: - - pos: -59.5,-25.5 - parent: 0 - type: Transform -- uid: 18426 - type: CableApcExtension - components: - - pos: -54.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18427 - type: CableApcExtension - components: - - pos: -53.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18428 - type: WallSolid - components: - - pos: -56.5,-17.5 - parent: 0 - type: Transform -- uid: 18429 - type: CableApcExtension - components: - - pos: -60.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18430 - type: WallReinforced - components: - - pos: -60.5,-23.5 - parent: 0 - type: Transform -- uid: 18431 - type: WallReinforced - components: - - pos: -60.5,-22.5 - parent: 0 - type: Transform -- uid: 18432 - type: WallSolid - components: - - pos: -58.5,-17.5 - parent: 0 - type: Transform -- uid: 18433 - type: WallSolid - components: - - pos: -57.5,-17.5 - parent: 0 - type: Transform -- uid: 18434 - type: Rack - components: - - pos: -40.5,-23.5 - parent: 0 - type: Transform -- uid: 18435 - type: WardrobeMixedFilled - components: - - pos: -38.5,-24.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18436 - type: HandLabeler - components: - - pos: -44.452965,-25.546503 - parent: 0 - type: Transform -- uid: 18437 - type: PowerCellRecharger - components: - - pos: -40.5,-25.5 - parent: 0 - type: Transform -- uid: 18438 - type: FlashlightSeclite - components: - - pos: -43.515465,-25.484003 - parent: 0 - type: Transform -- uid: 18439 - type: Wrench - components: - - pos: -43.46788,-25.484003 - parent: 0 - type: Transform -- uid: 18440 - type: ClothingHandsGlovesColorYellowBudget - components: - - pos: -40.43663,-23.468378 - parent: 0 - type: Transform -- uid: 18441 - type: UnfinishedMachineFrame - components: - - pos: -41.5,-23.5 - parent: 0 - type: Transform -- uid: 18442 - type: ComputerBroken - components: - - pos: -42.5,-21.5 - parent: 0 - type: Transform -- uid: 18443 - type: MachineFrameDestroyed - components: - - pos: -44.5,-21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 18444 - type: CableApcStack - components: - - pos: -41.4989,-25.484003 - parent: 0 - type: Transform -- uid: 18445 - type: Screwdriver - components: - - pos: -41.452026,-25.515253 - parent: 0 - type: Transform -- uid: 18446 - type: ClothingHeadHatWeldingMaskFlameBlue - components: - - pos: -40.532333,-25.270031 - parent: 0 - type: Transform -- uid: 18447 - type: Welder - components: - - pos: -41.420776,-25.437128 - parent: 0 - type: Transform -- uid: 18448 - type: ClothingHeadHatAnimalHeadslime - components: - - pos: -49.47802,-56.376602 - parent: 0 - type: Transform -- uid: 18449 - type: ChairOfficeLight - components: - - pos: -50.5,-55.5 - parent: 0 - type: Transform -- uid: 18450 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-48.5 - parent: 0 - type: Transform -- uid: 18451 - type: GasPipeStraight - components: - - pos: -52.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18452 - type: GasPipeStraight - components: - - pos: -52.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18453 - type: GasPipeStraight - components: - - pos: -52.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18454 - type: GasPipeStraight - components: - - pos: -52.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18455 - type: GasPipeStraight - components: - - pos: -52.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18456 - type: GasPipeStraight - components: - - pos: -52.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18457 - type: GasPipeStraight - components: - - pos: -52.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18458 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18459 - type: GasPipeStraight - components: - - pos: -52.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18460 - type: GasPipeStraight - components: - - pos: -52.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18461 - type: GasPipeStraight - components: - - pos: -52.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18462 - type: GasPipeStraight - components: - - pos: -52.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18463 - type: GasPipeStraight - components: - - pos: -52.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18464 - type: GasPipeStraight - components: - - pos: -52.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18465 - type: GasPipeStraight - components: - - pos: -52.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18466 - type: GasPipeStraight - components: - - pos: -52.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18467 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18468 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18469 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18470 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18471 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18472 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18473 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -47.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18474 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -47.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18475 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -47.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18476 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -47.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18477 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18478 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18479 - type: GasPipeBend - components: - - pos: -47.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18480 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -52.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18481 - type: GasPipeBend - components: - - pos: -46.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18482 - type: WallSolid - components: - - pos: -53.5,-14.5 - parent: 0 - type: Transform -- uid: 18483 - type: WallSolid - components: - - pos: -54.5,-14.5 - parent: 0 - type: Transform -- uid: 18484 - type: WallSolid - components: - - pos: -55.5,-14.5 - parent: 0 - type: Transform -- uid: 18485 - type: PlasticFlapsAirtightOpaque - components: - - pos: -56.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 18486 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18487 - type: WallSolid - components: - - pos: -58.5,-14.5 - parent: 0 - type: Transform -- uid: 18488 - type: WallSolid - components: - - pos: -57.5,-14.5 - parent: 0 - type: Transform -- uid: 18489 - type: WallSolid - components: - - pos: -53.5,-13.5 - parent: 0 - type: Transform -- uid: 18490 - type: WallSolid - components: - - pos: -53.5,-11.5 - parent: 0 - type: Transform -- uid: 18491 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18492 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -54.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18493 - type: GasPipeBend - components: - - pos: -54.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18494 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18495 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: -55.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18496 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -55.5,-13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 18497 - type: AirCanister - components: - - pos: -55.5,-13.5 - parent: 0 - type: Transform -- uid: 18498 - type: AirlockAtmosphericsLocked - components: - - pos: -53.5,-12.5 - parent: 0 - type: Transform -- uid: 18499 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18500 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18501 - type: GasPipeStraight - components: - - pos: -56.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18502 - type: GasPipeStraight - components: - - pos: -56.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18503 - type: GasPipeStraight - components: - - pos: -56.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18504 - type: GasPipeBend - components: - - pos: -56.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18505 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -58.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18506 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -57.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18507 - type: GasPort - components: - - pos: -58.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18508 - type: GasPort - components: - - pos: -57.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18509 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18510 - type: PortableScrubber - components: - - pos: -58.5,-11.5 - parent: 0 - type: Transform -- uid: 18511 - type: PortableScrubber - components: - - pos: -57.5,-11.5 - parent: 0 - type: Transform -- uid: 18512 - type: Table - components: - - pos: -57.5,-13.5 - parent: 0 - type: Transform -- uid: 18513 - type: Table - components: - - pos: -58.5,-13.5 - parent: 0 - type: Transform -- uid: 18514 - type: Table - components: - - pos: -54.5,-13.5 - parent: 0 - type: Transform -- uid: 18515 - type: CableApcExtension - components: - - pos: -56.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18516 - type: CableApcExtension - components: - - pos: -56.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18517 - type: CableApcExtension - components: - - pos: -56.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18518 - type: CableApcExtension - components: - - pos: -56.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18519 - type: PoweredSmallLight - components: - - pos: -56.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18520 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18521 - type: ChairOfficeDark - components: - - pos: -57.5,-12.5 - parent: 0 - type: Transform -- uid: 18522 - type: GasAnalyzer - components: - - pos: -57.517693,-13.493662 - parent: 0 - type: Transform -- uid: 18523 - type: ClothingMaskGasAtmos - components: - - pos: -58.392693,-13.462412 - parent: 0 - type: Transform -- uid: 18524 - type: Wrench - components: - - pos: -54.517693,-13.462412 - parent: 0 - type: Transform -- uid: 18525 - type: Crowbar - components: - - pos: -54.502068,-13.509287 - parent: 0 - type: Transform -- uid: 18526 - type: ClosetFireFilled - components: - - pos: -56.5,-11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18527 - type: PottedPlantRandom - components: - - pos: -60.5,-18.5 - parent: 0 - type: Transform -- uid: 18528 - type: PottedPlantRandom - components: - - pos: -54.5,-9.5 - parent: 0 - type: Transform -- uid: 18529 - type: PosterContrabandAtmosiaDeclarationIndependence - components: - - pos: -54.5,-14.5 - parent: 0 - type: Transform -- uid: 18530 - type: ExtinguisherCabinetFilled - components: - - pos: -59.5,-12.5 - parent: 0 - type: Transform -- uid: 18531 - type: ExtinguisherCabinetFilled - components: - - pos: -43.5,-3.5 - parent: 0 - type: Transform -- uid: 18532 - type: Chair - components: - - pos: -69.5,-17.5 - parent: 0 - type: Transform -- uid: 18533 - type: Chair - components: - - pos: -68.5,-17.5 - parent: 0 - type: Transform -- uid: 18534 - type: WallReinforced - components: - - pos: -29.5,42.5 - parent: 0 - type: Transform -- uid: 18535 - type: WallReinforced - components: - - pos: -27.5,42.5 - parent: 0 - type: Transform -- uid: 18536 - type: WallReinforced - components: - - pos: -26.5,42.5 - parent: 0 - type: Transform -- uid: 18537 - type: WallReinforced - components: - - pos: -26.5,41.5 - parent: 0 - type: Transform -- uid: 18538 - type: WallReinforced - components: - - pos: -25.5,41.5 - parent: 0 - type: Transform -- uid: 18539 - type: WallReinforced - components: - - pos: -25.5,40.5 - parent: 0 - type: Transform -- uid: 18540 - type: WallReinforced - components: - - pos: -24.5,40.5 - parent: 0 - type: Transform -- uid: 18541 - type: WallReinforced - components: - - pos: -23.5,40.5 - parent: 0 - type: Transform -- uid: 18542 - type: WallReinforced - components: - - pos: -22.5,40.5 - parent: 0 - type: Transform -- uid: 18543 - type: WallReinforced - components: - - pos: -21.5,40.5 - parent: 0 - type: Transform -- uid: 18544 - type: WallReinforced - components: - - pos: -20.5,40.5 - parent: 0 - type: Transform -- uid: 18545 - type: WallReinforced - components: - - pos: -19.5,40.5 - parent: 0 - type: Transform -- uid: 18546 - type: AirlockMaintGlassLocked - components: - - pos: -28.5,34.5 - parent: 0 - type: Transform -- uid: 18547 - type: GasPipeFourway - components: - - pos: 54.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18548 - type: ComputerResearchAndDevelopment - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-40.5 - parent: 0 - type: Transform -- uid: 18549 - type: RandomSpawner - components: - - pos: -13.5,-57.5 - parent: 0 - type: Transform -- uid: 18550 - type: Grille - components: - - pos: -28.5,42.5 - parent: 0 - type: Transform -- uid: 18551 - type: ReinforcedWindow - components: - - pos: -28.5,42.5 - parent: 0 - type: Transform -- uid: 18552 - type: WallReinforced - components: - - pos: -30.5,40.5 - parent: 0 - type: Transform -- uid: 18553 - type: WallReinforced - components: - - pos: -30.5,38.5 - parent: 0 - type: Transform -- uid: 18554 - type: WallReinforced - components: - - pos: -25.5,39.5 - parent: 0 - type: Transform -- uid: 18555 - type: WallReinforced - components: - - pos: -25.5,38.5 - parent: 0 - type: Transform -- uid: 18556 - type: WallSolid - components: - - pos: -25.5,37.5 - parent: 0 - type: Transform -- uid: 18557 - type: WallSolid - components: - - pos: -25.5,36.5 - parent: 0 - type: Transform -- uid: 18558 - type: WallSolid - components: - - pos: -25.5,34.5 - parent: 0 - type: Transform -- uid: 18559 - type: WallSolid - components: - - pos: -25.5,35.5 - parent: 0 - type: Transform -- uid: 18560 - type: WallSolid - components: - - pos: -30.5,37.5 - parent: 0 - type: Transform -- uid: 18561 - type: WallSolid - components: - - pos: -30.5,35.5 - parent: 0 - type: Transform -- uid: 18562 - type: WallSolid - components: - - pos: -30.5,34.5 - parent: 0 - type: Transform -- uid: 18563 - type: WallSolid - components: - - pos: -31.5,34.5 - parent: 0 - type: Transform -- uid: 18564 - type: WallSolid - components: - - pos: -29.5,34.5 - parent: 0 - type: Transform -- uid: 18565 - type: TrashBananaPeel - components: - - pos: 23.532316,-52.707714 - parent: 0 - type: Transform -- uid: 18566 - type: WallSolid - components: - - pos: -27.5,34.5 - parent: 0 - type: Transform -- uid: 18567 - type: WallSolid - components: - - pos: -26.5,34.5 - parent: 0 - type: Transform -- uid: 18568 - type: WallSolid - components: - - pos: -24.5,35.5 - parent: 0 - type: Transform -- uid: 18569 - type: WallSolid - components: - - pos: -20.5,36.5 - parent: 0 - type: Transform -- uid: 18570 - type: WallSolid - components: - - pos: -20.5,35.5 - parent: 0 - type: Transform -- uid: 18571 - type: WallSolid - components: - - pos: -21.5,35.5 - parent: 0 - type: Transform -- uid: 18572 - type: WallSolid - components: - - pos: -22.5,35.5 - parent: 0 - type: Transform -- uid: 18573 - type: SpawnPointMedicalDoctor - components: - - pos: -36.5,-33.5 - parent: 0 - type: Transform -- uid: 18574 - type: SpawnPointMedicalDoctor - components: - - pos: -36.5,-32.5 - parent: 0 - type: Transform -- uid: 18575 - type: SpawnPointMedicalDoctor - components: - - pos: -35.5,-31.5 - parent: 0 - type: Transform -- uid: 18576 - type: SpawnPointMedicalDoctor - components: - - pos: -34.5,-32.5 - parent: 0 - type: Transform -- uid: 18577 - type: SpawnPointMedicalIntern - components: - - pos: -35.5,-35.5 - parent: 0 - type: Transform -- uid: 18578 - type: SpawnPointMedicalIntern - components: - - pos: -34.5,-34.5 - parent: 0 - type: Transform -- uid: 18579 - type: SpawnPointChemist - components: - - pos: -7.5,-32.5 - parent: 0 - type: Transform -- uid: 18580 - type: SpawnPointChemist - components: - - pos: -8.5,-31.5 - parent: 0 - type: Transform -- uid: 18581 - type: SpawnPointChemist - components: - - pos: -8.5,-30.5 - parent: 0 - type: Transform -- uid: 18582 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18583 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18584 - type: Poweredlight - components: - - pos: -4.5,40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18585 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18586 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18587 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18588 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18589 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18590 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18591 - type: CableMV - components: - - pos: 40.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18592 - type: CableMV - components: - - pos: 40.5,2.5 - parent: 0 - type: Transform -- uid: 18593 - type: CableMV - components: - - pos: 40.5,3.5 - parent: 0 - type: Transform -- uid: 18594 - type: CableMV - components: - - pos: 40.5,4.5 - parent: 0 - type: Transform -- uid: 18595 - type: CableMV - components: - - pos: 39.5,4.5 - parent: 0 - type: Transform -- uid: 18596 - type: CableMV - components: - - pos: 39.5,5.5 - parent: 0 - type: Transform -- uid: 18597 - type: CableMV - components: - - pos: 39.5,6.5 - parent: 0 - type: Transform -- uid: 18598 - type: CableMV - components: - - pos: 39.5,7.5 - parent: 0 - type: Transform -- uid: 18599 - type: CableMV - components: - - pos: 39.5,8.5 - parent: 0 - type: Transform -- uid: 18600 - type: CableMV - components: - - pos: 39.5,9.5 - parent: 0 - type: Transform -- uid: 18601 - type: CableMV - components: - - pos: 38.5,9.5 - parent: 0 - type: Transform -- uid: 18602 - type: CableMV - components: - - pos: 37.5,9.5 - parent: 0 - type: Transform -- uid: 18603 - type: CableMV - components: - - pos: 37.5,10.5 - parent: 0 - type: Transform -- uid: 18604 - type: CableMV - components: - - pos: 37.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18605 - type: CableApcExtension - components: - - pos: 29.5,3.5 - parent: 0 - type: Transform -- uid: 18606 - type: CableApcExtension - components: - - pos: 28.5,3.5 - parent: 0 - type: Transform -- uid: 18607 - type: CableApcExtension - components: - - pos: 28.5,4.5 - parent: 0 - type: Transform -- uid: 18608 - type: CableApcExtension - components: - - pos: 28.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18609 - type: CableApcExtension - components: - - pos: 28.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18610 - type: CableApcExtension - components: - - pos: 28.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18611 - type: CableApcExtension - components: - - pos: 28.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18612 - type: Grille - components: - - pos: -0.5,-26.5 - parent: 0 - type: Transform -- uid: 18613 - type: Grille - components: - - pos: 2.5,-22.5 - parent: 0 - type: Transform -- uid: 18614 - type: Grille - components: - - pos: 5.5,-22.5 - parent: 0 - type: Transform -- uid: 18615 - type: Grille - components: - - pos: 7.5,-22.5 - parent: 0 - type: Transform -- uid: 18616 - type: Grille - components: - - pos: 9.5,-23.5 - parent: 0 - type: Transform -- uid: 18617 - type: Grille - components: - - pos: 9.5,-25.5 - parent: 0 - type: Transform -- uid: 18618 - type: Grille - components: - - pos: 9.5,-26.5 - parent: 0 - type: Transform -- uid: 18619 - type: Grille - components: - - pos: 5.5,-32.5 - parent: 0 - type: Transform -- uid: 18620 - type: Grille - components: - - pos: 5.5,-30.5 - parent: 0 - type: Transform -- uid: 18621 - type: Grille - components: - - pos: 5.5,-28.5 - parent: 0 - type: Transform -- uid: 18622 - type: Grille - components: - - pos: 9.5,-28.5 - parent: 0 - type: Transform -- uid: 18623 - type: Grille - components: - - pos: 9.5,-30.5 - parent: 0 - type: Transform -- uid: 18624 - type: Grille - components: - - pos: 9.5,-32.5 - parent: 0 - type: Transform -- uid: 18625 - type: Poweredlight - components: - - pos: 3.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18626 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18627 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18628 - type: Poweredlight - components: - - pos: 13.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18629 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18630 - type: MopItem - components: - - pos: -28.563576,28.404015 - parent: 0 - type: Transform -- uid: 18631 - type: Catwalk - components: - - pos: 73.5,37.5 - parent: 0 - type: Transform -- uid: 18632 - type: Catwalk - components: - - pos: 72.5,37.5 - parent: 0 - type: Transform -- uid: 18633 - type: Catwalk - components: - - pos: 71.5,37.5 - parent: 0 - type: Transform -- uid: 18634 - type: Catwalk - components: - - pos: 70.5,37.5 - parent: 0 - type: Transform -- uid: 18635 - type: Catwalk - components: - - pos: 69.5,37.5 - parent: 0 - type: Transform -- uid: 18636 - type: Catwalk - components: - - pos: 68.5,37.5 - parent: 0 - type: Transform -- uid: 18637 - type: Catwalk - components: - - pos: 67.5,37.5 - parent: 0 - type: Transform -- uid: 18638 - type: Catwalk - components: - - pos: 67.5,38.5 - parent: 0 - type: Transform -- uid: 18639 - type: Catwalk - components: - - pos: 67.5,39.5 - parent: 0 - type: Transform -- uid: 18640 - type: Catwalk - components: - - pos: 67.5,40.5 - parent: 0 - type: Transform -- uid: 18641 - type: Catwalk - components: - - pos: 67.5,41.5 - parent: 0 - type: Transform -- uid: 18642 - type: Catwalk - components: - - pos: 67.5,42.5 - parent: 0 - type: Transform -- uid: 18643 - type: Catwalk - components: - - pos: 74.5,32.5 - parent: 0 - type: Transform -- uid: 18644 - type: Catwalk - components: - - pos: 75.5,32.5 - parent: 0 - type: Transform -- uid: 18645 - type: WallSolid - components: - - pos: 73.5,34.5 - parent: 0 - type: Transform -- uid: 18646 - type: SignSecureMed - components: - - pos: 73.5,34.5 - parent: 0 - type: Transform -- uid: 18647 - type: Catwalk - components: - - pos: 69.5,43.5 - parent: 0 - type: Transform -- uid: 18648 - type: Catwalk - components: - - pos: 68.5,43.5 - parent: 0 - type: Transform -- uid: 18649 - type: Catwalk - components: - - pos: 67.5,43.5 - parent: 0 - type: Transform -- uid: 18650 - type: Catwalk - components: - - pos: 62.5,43.5 - parent: 0 - type: Transform -- uid: 18651 - type: Catwalk - components: - - pos: 61.5,43.5 - parent: 0 - type: Transform -- uid: 18652 - type: Catwalk - components: - - pos: 60.5,43.5 - parent: 0 - type: Transform -- uid: 18653 - type: Catwalk - components: - - pos: 59.5,43.5 - parent: 0 - type: Transform -- uid: 18654 - type: Catwalk - components: - - pos: 58.5,43.5 - parent: 0 - type: Transform -- uid: 18655 - type: Catwalk - components: - - pos: 57.5,43.5 - parent: 0 - type: Transform -- uid: 18656 - type: Catwalk - components: - - pos: 56.5,43.5 - parent: 0 - type: Transform -- uid: 18657 - type: Catwalk - components: - - pos: 55.5,43.5 - parent: 0 - type: Transform -- uid: 18658 - type: Catwalk - components: - - pos: 54.5,43.5 - parent: 0 - type: Transform -- uid: 18659 - type: Catwalk - components: - - pos: 53.5,43.5 - parent: 0 - type: Transform -- uid: 18660 - type: Catwalk - components: - - pos: 52.5,43.5 - parent: 0 - type: Transform -- uid: 18661 - type: Catwalk - components: - - pos: 51.5,43.5 - parent: 0 - type: Transform -- uid: 18662 - type: Catwalk - components: - - pos: 51.5,39.5 - parent: 0 - type: Transform -- uid: 18663 - type: Catwalk - components: - - pos: 51.5,40.5 - parent: 0 - type: Transform -- uid: 18664 - type: Catwalk - components: - - pos: 51.5,41.5 - parent: 0 - type: Transform -- uid: 18665 - type: Catwalk - components: - - pos: 51.5,42.5 - parent: 0 - type: Transform -- uid: 18666 - type: Catwalk - components: - - pos: 50.5,39.5 - parent: 0 - type: Transform -- uid: 18667 - type: Catwalk - components: - - pos: 66.5,48.5 - parent: 0 - type: Transform -- uid: 18668 - type: Catwalk - components: - - pos: 67.5,48.5 - parent: 0 - type: Transform -- uid: 18669 - type: Catwalk - components: - - pos: 68.5,48.5 - parent: 0 - type: Transform -- uid: 18670 - type: Catwalk - components: - - pos: 69.5,48.5 - parent: 0 - type: Transform -- uid: 18671 - type: Catwalk - components: - - pos: 70.5,48.5 - parent: 0 - type: Transform -- uid: 18672 - type: Catwalk - components: - - pos: 71.5,48.5 - parent: 0 - type: Transform -- uid: 18673 - type: Catwalk - components: - - pos: 72.5,48.5 - parent: 0 - type: Transform -- uid: 18674 - type: Catwalk - components: - - pos: 73.5,48.5 - parent: 0 - type: Transform -- uid: 18675 - type: Catwalk - components: - - pos: 74.5,48.5 - parent: 0 - type: Transform -- uid: 18676 - type: Catwalk - components: - - pos: 75.5,48.5 - parent: 0 - type: Transform -- uid: 18677 - type: Catwalk - components: - - pos: 76.5,48.5 - parent: 0 - type: Transform -- uid: 18678 - type: Catwalk - components: - - pos: 77.5,48.5 - parent: 0 - type: Transform -- uid: 18679 - type: Catwalk - components: - - pos: 76.5,46.5 - parent: 0 - type: Transform -- uid: 18680 - type: Catwalk - components: - - pos: 76.5,47.5 - parent: 0 - type: Transform -- uid: 18681 - type: Catwalk - components: - - pos: 76.5,49.5 - parent: 0 - type: Transform -- uid: 18682 - type: Catwalk - components: - - pos: 76.5,50.5 - parent: 0 - type: Transform -- uid: 18683 - type: Catwalk - components: - - pos: 73.5,46.5 - parent: 0 - type: Transform -- uid: 18684 - type: Catwalk - components: - - pos: 73.5,47.5 - parent: 0 - type: Transform -- uid: 18685 - type: Catwalk - components: - - pos: 73.5,49.5 - parent: 0 - type: Transform -- uid: 18686 - type: Catwalk - components: - - pos: 73.5,50.5 - parent: 0 - type: Transform -- uid: 18687 - type: Catwalk - components: - - pos: 70.5,49.5 - parent: 0 - type: Transform -- uid: 18688 - type: Catwalk - components: - - pos: 70.5,50.5 - parent: 0 - type: Transform -- uid: 18689 - type: Catwalk - components: - - pos: 67.5,46.5 - parent: 0 - type: Transform -- uid: 18690 - type: Catwalk - components: - - pos: 67.5,47.5 - parent: 0 - type: Transform -- uid: 18691 - type: Catwalk - components: - - pos: 67.5,49.5 - parent: 0 - type: Transform -- uid: 18692 - type: Catwalk - components: - - pos: 67.5,50.5 - parent: 0 - type: Transform -- uid: 18693 - type: Catwalk - components: - - pos: 64.5,54.5 - parent: 0 - type: Transform -- uid: 18694 - type: Catwalk - components: - - pos: 65.5,54.5 - parent: 0 - type: Transform -- uid: 18695 - type: Catwalk - components: - - pos: 66.5,54.5 - parent: 0 - type: Transform -- uid: 18696 - type: Catwalk - components: - - pos: 67.5,54.5 - parent: 0 - type: Transform -- uid: 18697 - type: Catwalk - components: - - pos: 68.5,54.5 - parent: 0 - type: Transform -- uid: 18698 - type: Catwalk - components: - - pos: 69.5,54.5 - parent: 0 - type: Transform -- uid: 18699 - type: Catwalk - components: - - pos: 70.5,54.5 - parent: 0 - type: Transform -- uid: 18700 - type: Catwalk - components: - - pos: 71.5,54.5 - parent: 0 - type: Transform -- uid: 18701 - type: Catwalk - components: - - pos: 72.5,54.5 - parent: 0 - type: Transform -- uid: 18702 - type: Catwalk - components: - - pos: 73.5,54.5 - parent: 0 - type: Transform -- uid: 18703 - type: Catwalk - components: - - pos: 74.5,54.5 - parent: 0 - type: Transform -- uid: 18704 - type: Catwalk - components: - - pos: 75.5,54.5 - parent: 0 - type: Transform -- uid: 18705 - type: Catwalk - components: - - pos: 76.5,54.5 - parent: 0 - type: Transform -- uid: 18706 - type: Catwalk - components: - - pos: 77.5,54.5 - parent: 0 - type: Transform -- uid: 18707 - type: Catwalk - components: - - pos: 76.5,53.5 - parent: 0 - type: Transform -- uid: 18708 - type: Catwalk - components: - - pos: 76.5,52.5 - parent: 0 - type: Transform -- uid: 18709 - type: Catwalk - components: - - pos: 76.5,55.5 - parent: 0 - type: Transform -- uid: 18710 - type: Catwalk - components: - - pos: 76.5,56.5 - parent: 0 - type: Transform -- uid: 18711 - type: Catwalk - components: - - pos: 73.5,52.5 - parent: 0 - type: Transform -- uid: 18712 - type: Catwalk - components: - - pos: 73.5,53.5 - parent: 0 - type: Transform -- uid: 18713 - type: Catwalk - components: - - pos: 73.5,55.5 - parent: 0 - type: Transform -- uid: 18714 - type: Catwalk - components: - - pos: 73.5,56.5 - parent: 0 - type: Transform -- uid: 18715 - type: Catwalk - components: - - pos: 70.5,52.5 - parent: 0 - type: Transform -- uid: 18716 - type: Catwalk - components: - - pos: 70.5,53.5 - parent: 0 - type: Transform -- uid: 18717 - type: Catwalk - components: - - pos: 70.5,55.5 - parent: 0 - type: Transform -- uid: 18718 - type: Catwalk - components: - - pos: 70.5,56.5 - parent: 0 - type: Transform -- uid: 18719 - type: Catwalk - components: - - pos: 67.5,52.5 - parent: 0 - type: Transform -- uid: 18720 - type: Catwalk - components: - - pos: 67.5,53.5 - parent: 0 - type: Transform -- uid: 18721 - type: Catwalk - components: - - pos: 67.5,55.5 - parent: 0 - type: Transform -- uid: 18722 - type: Catwalk - components: - - pos: 67.5,56.5 - parent: 0 - type: Transform -- uid: 18723 - type: SolarTracker - components: - - pos: 63.5,59.5 - parent: 0 - type: Transform -- uid: 18724 - type: SolarPanel - components: - - pos: 65.5,55.5 - parent: 0 - type: Transform -- uid: 18725 - type: SolarPanel - components: - - pos: 65.5,56.5 - parent: 0 - type: Transform -- uid: 18726 - type: SolarPanel - components: - - pos: 66.5,56.5 - parent: 0 - type: Transform -- uid: 18727 - type: SolarPanel - components: - - pos: 66.5,55.5 - parent: 0 - type: Transform -- uid: 18728 - type: SolarPanel - components: - - pos: 65.5,53.5 - parent: 0 - type: Transform -- uid: 18729 - type: SolarPanel - components: - - pos: 65.5,52.5 - parent: 0 - type: Transform -- uid: 18730 - type: SolarPanel - components: - - pos: 66.5,53.5 - parent: 0 - type: Transform -- uid: 18731 - type: SolarPanel - components: - - pos: 66.5,52.5 - parent: 0 - type: Transform -- uid: 18732 - type: SolarPanel - components: - - pos: 65.5,50.5 - parent: 0 - type: Transform -- uid: 18733 - type: SolarPanel - components: - - pos: 65.5,49.5 - parent: 0 - type: Transform -- uid: 18734 - type: SolarPanel - components: - - pos: 66.5,50.5 - parent: 0 - type: Transform -- uid: 18735 - type: SolarPanel - components: - - pos: 66.5,49.5 - parent: 0 - type: Transform -- uid: 18736 - type: SolarPanel - components: - - pos: 65.5,47.5 - parent: 0 - type: Transform -- uid: 18737 - type: SolarPanel - components: - - pos: 65.5,46.5 - parent: 0 - type: Transform -- uid: 18738 - type: SolarPanel - components: - - pos: 66.5,47.5 - parent: 0 - type: Transform -- uid: 18739 - type: SolarPanel - components: - - pos: 66.5,46.5 - parent: 0 - type: Transform -- uid: 18740 - type: SolarPanel - components: - - pos: 68.5,47.5 - parent: 0 - type: Transform -- uid: 18741 - type: SolarPanel - components: - - pos: 68.5,46.5 - parent: 0 - type: Transform -- uid: 18742 - type: SolarPanel - components: - - pos: 69.5,47.5 - parent: 0 - type: Transform -- uid: 18743 - type: SolarPanel - components: - - pos: 69.5,46.5 - parent: 0 - type: Transform -- uid: 18744 - type: SolarPanel - components: - - pos: 68.5,50.5 - parent: 0 - type: Transform -- uid: 18745 - type: SolarPanel - components: - - pos: 68.5,49.5 - parent: 0 - type: Transform -- uid: 18746 - type: SolarPanel - components: - - pos: 69.5,50.5 - parent: 0 - type: Transform -- uid: 18747 - type: SolarPanel - components: - - pos: 69.5,49.5 - parent: 0 - type: Transform -- uid: 18748 - type: SolarPanel - components: - - pos: 68.5,53.5 - parent: 0 - type: Transform -- uid: 18749 - type: SolarPanel - components: - - pos: 68.5,52.5 - parent: 0 - type: Transform -- uid: 18750 - type: SolarPanel - components: - - pos: 69.5,53.5 - parent: 0 - type: Transform -- uid: 18751 - type: SolarPanel - components: - - pos: 69.5,52.5 - parent: 0 - type: Transform -- uid: 18752 - type: SolarPanel - components: - - pos: 68.5,56.5 - parent: 0 - type: Transform -- uid: 18753 - type: SolarPanel - components: - - pos: 68.5,55.5 - parent: 0 - type: Transform -- uid: 18754 - type: SolarPanel - components: - - pos: 69.5,56.5 - parent: 0 - type: Transform -- uid: 18755 - type: SolarPanel - components: - - pos: 69.5,55.5 - parent: 0 - type: Transform -- uid: 18756 - type: SolarPanel - components: - - pos: 71.5,56.5 - parent: 0 - type: Transform -- uid: 18757 - type: SolarPanel - components: - - pos: 71.5,55.5 - parent: 0 - type: Transform -- uid: 18758 - type: SolarPanel - components: - - pos: 72.5,56.5 - parent: 0 - type: Transform -- uid: 18759 - type: SolarPanel - components: - - pos: 72.5,55.5 - parent: 0 - type: Transform -- uid: 18760 - type: SolarPanel - components: - - pos: 71.5,53.5 - parent: 0 - type: Transform -- uid: 18761 - type: SolarPanel - components: - - pos: 71.5,52.5 - parent: 0 - type: Transform -- uid: 18762 - type: SolarPanel - components: - - pos: 72.5,53.5 - parent: 0 - type: Transform -- uid: 18763 - type: SolarPanel - components: - - pos: 72.5,52.5 - parent: 0 - type: Transform -- uid: 18764 - type: SolarPanel - components: - - pos: 71.5,50.5 - parent: 0 - type: Transform -- uid: 18765 - type: SolarPanel - components: - - pos: 71.5,49.5 - parent: 0 - type: Transform -- uid: 18766 - type: SolarPanel - components: - - pos: 72.5,50.5 - parent: 0 - type: Transform -- uid: 18767 - type: SolarPanel - components: - - pos: 72.5,49.5 - parent: 0 - type: Transform -- uid: 18768 - type: SolarPanel - components: - - pos: 71.5,47.5 - parent: 0 - type: Transform -- uid: 18769 - type: SolarPanel - components: - - pos: 71.5,46.5 - parent: 0 - type: Transform -- uid: 18770 - type: SolarPanel - components: - - pos: 72.5,47.5 - parent: 0 - type: Transform -- uid: 18771 - type: SolarPanel - components: - - pos: 72.5,46.5 - parent: 0 - type: Transform -- uid: 18772 - type: SolarPanel - components: - - pos: 74.5,47.5 - parent: 0 - type: Transform -- uid: 18773 - type: SolarPanel - components: - - pos: 74.5,46.5 - parent: 0 - type: Transform -- uid: 18774 - type: SolarPanel - components: - - pos: 75.5,47.5 - parent: 0 - type: Transform -- uid: 18775 - type: SolarPanel - components: - - pos: 75.5,46.5 - parent: 0 - type: Transform -- uid: 18776 - type: SolarPanel - components: - - pos: 74.5,50.5 - parent: 0 - type: Transform -- uid: 18777 - type: SolarPanel - components: - - pos: 74.5,49.5 - parent: 0 - type: Transform -- uid: 18778 - type: SolarPanel - components: - - pos: 75.5,50.5 - parent: 0 - type: Transform -- uid: 18779 - type: SolarPanel - components: - - pos: 75.5,49.5 - parent: 0 - type: Transform -- uid: 18780 - type: SolarPanel - components: - - pos: 74.5,53.5 - parent: 0 - type: Transform -- uid: 18781 - type: SolarPanel - components: - - pos: 74.5,52.5 - parent: 0 - type: Transform -- uid: 18782 - type: SolarPanel - components: - - pos: 75.5,53.5 - parent: 0 - type: Transform -- uid: 18783 - type: SolarPanel - components: - - pos: 75.5,52.5 - parent: 0 - type: Transform -- uid: 18784 - type: SolarPanel - components: - - pos: 74.5,56.5 - parent: 0 - type: Transform -- uid: 18785 - type: SolarPanel - components: - - pos: 74.5,55.5 - parent: 0 - type: Transform -- uid: 18786 - type: SolarPanel - components: - - pos: 75.5,56.5 - parent: 0 - type: Transform -- uid: 18787 - type: SolarPanel - components: - - pos: 75.5,55.5 - parent: 0 - type: Transform -- uid: 18788 - type: CableHV - components: - - pos: 65.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18789 - type: CableHV - components: - - pos: 65.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18790 - type: CableHV - components: - - pos: 66.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18791 - type: CableHV - components: - - pos: 66.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18792 - type: CableHV - components: - - pos: 65.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18793 - type: CableHV - components: - - pos: 65.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18794 - type: CableHV - components: - - pos: 66.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18795 - type: CableHV - components: - - pos: 66.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18796 - type: CableHV - components: - - pos: 68.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18797 - type: CableHV - components: - - pos: 68.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18798 - type: CableHV - components: - - pos: 69.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18799 - type: CableHV - components: - - pos: 69.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18800 - type: CableHV - components: - - pos: 68.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18801 - type: CableHV - components: - - pos: 68.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18802 - type: CableHV - components: - - pos: 69.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18803 - type: CableHV - components: - - pos: 69.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18804 - type: CableHV - components: - - pos: 71.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18805 - type: CableHV - components: - - pos: 71.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18806 - type: CableHV - components: - - pos: 72.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18807 - type: CableHV - components: - - pos: 72.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18808 - type: CableHV - components: - - pos: 71.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18809 - type: CableHV - components: - - pos: 71.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18810 - type: CableHV - components: - - pos: 72.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18811 - type: CableHV - components: - - pos: 72.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18812 - type: CableHV - components: - - pos: 74.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18813 - type: CableHV - components: - - pos: 74.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18814 - type: CableHV - components: - - pos: 75.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18815 - type: CableHV - components: - - pos: 75.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18816 - type: CableHV - components: - - pos: 74.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18817 - type: CableHV - components: - - pos: 74.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18818 - type: CableHV - components: - - pos: 75.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18819 - type: CableHV - components: - - pos: 75.5,55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18820 - type: CableHV - components: - - pos: 74.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18821 - type: CableHV - components: - - pos: 74.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18822 - type: CableHV - components: - - pos: 75.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18823 - type: CableHV - components: - - pos: 75.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18824 - type: CableHV - components: - - pos: 71.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18825 - type: CableHV - components: - - pos: 71.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18826 - type: CableHV - components: - - pos: 72.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18827 - type: CableHV - components: - - pos: 72.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18828 - type: CableHV - components: - - pos: 74.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18829 - type: CableHV - components: - - pos: 74.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18830 - type: CableHV - components: - - pos: 75.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18831 - type: CableHV - components: - - pos: 75.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18832 - type: CableHV - components: - - pos: 71.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18833 - type: CableHV - components: - - pos: 71.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18834 - type: CableHV - components: - - pos: 72.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18835 - type: CableHV - components: - - pos: 72.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18836 - type: CableHV - components: - - pos: 68.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18837 - type: CableHV - components: - - pos: 68.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18838 - type: CableHV - components: - - pos: 69.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18839 - type: CableHV - components: - - pos: 69.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18840 - type: CableHV - components: - - pos: 68.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18841 - type: CableHV - components: - - pos: 68.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18842 - type: CableHV - components: - - pos: 69.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18843 - type: CableHV - components: - - pos: 69.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18844 - type: CableHV - components: - - pos: 65.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18845 - type: CableHV - components: - - pos: 65.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18846 - type: CableHV - components: - - pos: 66.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18847 - type: CableHV - components: - - pos: 66.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18848 - type: CableHV - components: - - pos: 65.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18849 - type: CableHV - components: - - pos: 65.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18850 - type: CableHV - components: - - pos: 66.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18851 - type: CableHV - components: - - pos: 66.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18852 - type: CableHV - components: - - pos: 63.5,41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18853 - type: CableHV - components: - - pos: 63.5,42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18854 - type: CableHV - components: - - pos: 63.5,43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18855 - type: CableHV - components: - - pos: 63.5,44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18856 - type: CableHV - components: - - pos: 63.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18857 - type: CableHV - components: - - pos: 63.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18858 - type: CableHV - components: - - pos: 63.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18859 - type: CableHV - components: - - pos: 63.5,48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18860 - type: CableHV - components: - - pos: 63.5,49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18861 - type: CableHV - components: - - pos: 63.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18862 - type: CableHV - components: - - pos: 63.5,51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18863 - type: CableHV - components: - - pos: 63.5,52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18864 - type: Catwalk - components: - - pos: 72.5,43.5 - parent: 0 - type: Transform -- uid: 18865 - type: CableHV - components: - - pos: 63.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18866 - type: Catwalk - components: - - pos: 71.5,43.5 - parent: 0 - type: Transform -- uid: 18867 - type: CableHV - components: - - pos: 63.5,56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18868 - type: CableHV - components: - - pos: 63.5,57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18869 - type: CableHV - components: - - pos: 63.5,58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18870 - type: CableHV - components: - - pos: 63.5,59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18871 - type: Catwalk - components: - - pos: 73.5,43.5 - parent: 0 - type: Transform -- uid: 18872 - type: Catwalk - components: - - pos: 61.5,51.5 - parent: 0 - type: Transform -- uid: 18873 - type: Catwalk - components: - - pos: 57.5,51.5 - parent: 0 - type: Transform -- uid: 18874 - type: Catwalk - components: - - pos: 53.5,51.5 - parent: 0 - type: Transform -- uid: 18875 - type: Catwalk - components: - - pos: 49.5,51.5 - parent: 0 - type: Transform -- uid: 18876 - type: Catwalk - components: - - pos: 45.5,51.5 - parent: 0 - type: Transform -- uid: 18877 - type: Catwalk - components: - - pos: 41.5,51.5 - parent: 0 - type: Transform -- uid: 18878 - type: Grille - components: - - pos: 42.5,53.5 - parent: 0 - type: Transform -- uid: 18879 - type: Grille - components: - - pos: 41.5,53.5 - parent: 0 - type: Transform -- uid: 18880 - type: Grille - components: - - pos: 40.5,53.5 - parent: 0 - type: Transform -- uid: 18881 - type: Grille - components: - - pos: 39.5,53.5 - parent: 0 - type: Transform -- uid: 18882 - type: Grille - components: - - pos: 38.5,53.5 - parent: 0 - type: Transform -- uid: 18883 - type: Grille - components: - - pos: 61.5,62.5 - parent: 0 - type: Transform -- uid: 18884 - type: Grille - components: - - pos: 62.5,62.5 - parent: 0 - type: Transform -- uid: 18885 - type: Grille - components: - - pos: 63.5,62.5 - parent: 0 - type: Transform -- uid: 18886 - type: Grille - components: - - pos: 64.5,62.5 - parent: 0 - type: Transform -- uid: 18887 - type: Grille - components: - - pos: 65.5,62.5 - parent: 0 - type: Transform -- uid: 18888 - type: Grille - components: - - pos: 66.5,62.5 - parent: 0 - type: Transform -- uid: 18889 - type: Grille - components: - - pos: 59.5,52.5 - parent: 0 - type: Transform -- uid: 18890 - type: Grille - components: - - pos: 59.5,53.5 - parent: 0 - type: Transform -- uid: 18891 - type: Grille - components: - - pos: 59.5,54.5 - parent: 0 - type: Transform -- uid: 18892 - type: Grille - components: - - pos: 59.5,55.5 - parent: 0 - type: Transform -- uid: 18893 - type: Grille - components: - - pos: 59.5,56.5 - parent: 0 - type: Transform -- uid: 18894 - type: GrilleBroken - components: - - pos: 59.5,57.5 - parent: 0 - type: Transform -- uid: 18895 - type: Grille - components: - - pos: 59.5,58.5 - parent: 0 - type: Transform -- uid: 18896 - type: Grille - components: - - pos: 59.5,59.5 - parent: 0 - type: Transform -- uid: 18897 - type: Grille - components: - - pos: 60.5,59.5 - parent: 0 - type: Transform -- uid: 18898 - type: Grille - components: - - pos: 61.5,59.5 - parent: 0 - type: Transform -- uid: 18899 - type: Grille - components: - - pos: 61.5,60.5 - parent: 0 - type: Transform -- uid: 18900 - type: Grille - components: - - pos: 61.5,61.5 - parent: 0 - type: Transform -- uid: 18901 - type: Grille - components: - - pos: 66.5,61.5 - parent: 0 - type: Transform -- uid: 18902 - type: Grille - components: - - pos: 66.5,59.5 - parent: 0 - type: Transform -- uid: 18903 - type: Grille - components: - - pos: 67.5,59.5 - parent: 0 - type: Transform -- uid: 18904 - type: Grille - components: - - pos: 68.5,59.5 - parent: 0 - type: Transform -- uid: 18905 - type: Grille - components: - - pos: 69.5,59.5 - parent: 0 - type: Transform -- uid: 18906 - type: Grille - components: - - pos: 70.5,59.5 - parent: 0 - type: Transform -- uid: 18907 - type: Grille - components: - - pos: 71.5,59.5 - parent: 0 - type: Transform -- uid: 18908 - type: Grille - components: - - pos: 72.5,59.5 - parent: 0 - type: Transform -- uid: 18909 - type: Grille - components: - - pos: 73.5,59.5 - parent: 0 - type: Transform -- uid: 18910 - type: Grille - components: - - pos: 74.5,59.5 - parent: 0 - type: Transform -- uid: 18911 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 75.5,59.5 - parent: 0 - type: Transform -- uid: 18912 - type: Grille - components: - - pos: 76.5,59.5 - parent: 0 - type: Transform -- uid: 18913 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 77.5,59.5 - parent: 0 - type: Transform -- uid: 18914 - type: Grille - components: - - pos: 78.5,59.5 - parent: 0 - type: Transform -- uid: 18915 - type: Grille - components: - - pos: 78.5,58.5 - parent: 0 - type: Transform -- uid: 18916 - type: Grille - components: - - pos: 78.5,57.5 - parent: 0 - type: Transform -- uid: 18917 - type: Grille - components: - - pos: 78.5,56.5 - parent: 0 - type: Transform -- uid: 18918 - type: Grille - components: - - pos: 78.5,55.5 - parent: 0 - type: Transform -- uid: 18919 - type: Grille - components: - - pos: 78.5,54.5 - parent: 0 - type: Transform -- uid: 18920 - type: Grille - components: - - pos: 78.5,53.5 - parent: 0 - type: Transform -- uid: 18921 - type: Grille - components: - - pos: 78.5,52.5 - parent: 0 - type: Transform -- uid: 18922 - type: Grille - components: - - pos: 78.5,51.5 - parent: 0 - type: Transform -- uid: 18923 - type: GrilleBroken - components: - - pos: 76.5,43.5 - parent: 0 - type: Transform -- uid: 18924 - type: GrilleBroken - components: - - pos: 78.5,49.5 - parent: 0 - type: Transform -- uid: 18925 - type: Grille - components: - - pos: 78.5,48.5 - parent: 0 - type: Transform -- uid: 18926 - type: Grille - components: - - pos: 78.5,47.5 - parent: 0 - type: Transform -- uid: 18927 - type: Grille - components: - - pos: 78.5,46.5 - parent: 0 - type: Transform -- uid: 18928 - type: Grille - components: - - pos: 78.5,45.5 - parent: 0 - type: Transform -- uid: 18929 - type: Grille - components: - - pos: 78.5,44.5 - parent: 0 - type: Transform -- uid: 18930 - type: Grille - components: - - pos: 78.5,43.5 - parent: 0 - type: Transform -- uid: 18931 - type: Grille - components: - - pos: 77.5,43.5 - parent: 0 - type: Transform -- uid: 18932 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 62.5,36.5 - parent: 0 - type: Transform -- uid: 18933 - type: Grille - components: - - pos: 75.5,43.5 - parent: 0 - type: Transform -- uid: 18934 - type: Grille - components: - - pos: 74.5,43.5 - parent: 0 - type: Transform -- uid: 18935 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18936 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 70.5,33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18937 - type: SignSpace - components: - - pos: 49.5,38.5 - parent: 0 - type: Transform -- uid: 18938 - type: SignSpace - components: - - pos: 69.5,33.5 - parent: 0 - type: Transform -- uid: 18939 - type: SignSpace - components: - - pos: 71.5,33.5 - parent: 0 - type: Transform -- uid: 18940 - type: SignSpace - components: - - pos: 65.5,37.5 - parent: 0 - type: Transform -- uid: 18941 - type: Table - components: - - pos: 49.5,37.5 - parent: 0 - type: Transform -- uid: 18942 - type: SinkWide - components: - - pos: 50.5,37.5 - parent: 0 - type: Transform -- uid: 18943 - type: Rack - components: - - pos: 52.5,35.5 - parent: 0 - type: Transform -- uid: 18944 - type: Rack - components: - - pos: 52.5,36.5 - parent: 0 - type: Transform -- uid: 18945 - type: Rack - components: - - pos: 48.5,34.5 - parent: 0 - type: Transform -- uid: 18946 - type: Rack - components: - - pos: 48.5,35.5 - parent: 0 - type: Transform -- uid: 18947 - type: Barricade - components: - - pos: 50.5,34.5 - parent: 0 - type: Transform -- uid: 18948 - type: AirlockMaintLocked - components: - - pos: 50.5,33.5 - parent: 0 - type: Transform -- uid: 18949 - type: CableApcExtension - components: - - pos: 53.5,32.5 - parent: 0 - type: Transform -- uid: 18950 - type: CableApcExtension - components: - - pos: 52.5,32.5 - parent: 0 - type: Transform -- uid: 18951 - type: CableApcExtension - components: - - pos: 51.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18952 - type: CableApcExtension - components: - - pos: 50.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18953 - type: CableApcExtension - components: - - pos: 49.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18954 - type: CableApcExtension - components: - - pos: 48.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18955 - type: CableApcExtension - components: - - pos: 47.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18956 - type: CableApcExtension - components: - - pos: 46.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18957 - type: CableApcExtension - components: - - pos: 50.5,33.5 - parent: 0 - type: Transform -- uid: 18958 - type: CableApcExtension - components: - - pos: 50.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18959 - type: CableApcExtension - components: - - pos: 50.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18960 - type: CableApcExtension - components: - - pos: 50.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18961 - type: CableApcExtension - components: - - pos: 50.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18962 - type: CableApcExtension - components: - - pos: 49.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18963 - type: CableApcExtension - components: - - pos: 48.5,36.5 - parent: 0 - type: Transform -- uid: 18964 - type: CableApcExtension - components: - - pos: 48.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18965 - type: CableApcExtension - components: - - pos: 48.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18966 - type: CableApcExtension - components: - - pos: 48.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18967 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 40.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18968 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 40.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18969 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 46.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18970 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 46.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18971 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 50.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18972 - type: Rack - components: - - pos: -8.5,-55.5 - parent: 0 - type: Transform -- uid: 18973 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18974 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18975 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18976 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18977 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18978 - type: GasPipeStraight - components: - - pos: 40.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18979 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18980 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18981 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18982 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18983 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18984 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 46.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18985 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18986 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18987 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18988 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18989 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18990 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18991 - type: GasPipeStraight - components: - - pos: 54.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18992 - type: GasPipeStraight - components: - - pos: 54.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18993 - type: GasPipeStraight - components: - - pos: 54.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18994 - type: GasPipeStraight - components: - - pos: 50.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18995 - type: GasPipeStraight - components: - - pos: 50.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18996 - type: GasPipeStraight - components: - - pos: 50.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18997 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 54.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18998 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 56.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18999 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19000 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 56.5,37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19001 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 55.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19002 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 56.5,35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19003 - type: GasVentPump - components: - - pos: 56.5,38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19004 - type: GasVentPump - components: - - pos: 50.5,36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19005 - type: EmergencyOxygenTankFilled - components: - - pos: 49.43905,37.59502 - parent: 0 - type: Transform -- uid: 19006 - type: ClothingMaskBreath - components: - - pos: 49.50155,37.50127 - parent: 0 - type: Transform -- uid: 19007 - type: ClosetMaintenanceFilledRandom - components: - - pos: 52.5,37.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19008 - type: ClothingOuterPonchoClassic - components: - - pos: 48.50155,35.454395 - parent: 0 - type: Transform -- uid: 19009 - type: ClothingHeadHatSombrero - components: - - pos: 48.485924,35.59502 - parent: 0 - type: Transform -- uid: 19010 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19011 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19012 - type: BoxLightMixed - components: - - pos: 52.510452,35.537533 - parent: 0 - type: Transform -- uid: 19013 - type: MaintenanceWeaponSpawner - components: - - pos: 48.5,34.5 - parent: 0 - type: Transform -- uid: 19014 - type: MaintenanceFluffSpawner - components: - - pos: 52.5,36.5 - parent: 0 - type: Transform -- uid: 19015 - type: RandomSpawner - components: - - pos: 51.5,35.5 - parent: 0 - type: Transform -- uid: 19016 - type: ClosetEmergencyFilledRandom - components: - - pos: 68.5,33.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19017 - type: Girder - components: - - pos: 65.5,33.5 - parent: 0 - type: Transform -- uid: 19018 - type: Rack - components: - - pos: 66.5,33.5 - parent: 0 - type: Transform -- uid: 19019 - type: ClothingMaskGas - components: - - pos: 66.53678,33.470314 - parent: 0 - type: Transform -- uid: 19020 - type: ClothingEyesGlassesSunglasses - components: - - pos: 66.56803,33.64219 - parent: 0 - type: Transform -- uid: 19021 - type: CrateEngineeringCableBulk - components: - - pos: 67.5,33.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 19022 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 60.5,34.5 - parent: 0 - type: Transform -- uid: 19023 - type: RandomSpawner - components: - - pos: 61.5,33.5 - parent: 0 - type: Transform -- uid: 19024 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 65.5,31.5 - parent: 0 - type: Transform -- uid: 19025 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 63.5,31.5 - parent: 0 - type: Transform -- uid: 19026 - type: Table - components: - - pos: 64.5,31.5 - parent: 0 - type: Transform -- uid: 19027 - type: ClothingUnderSocksCoder - components: - - pos: 58.519066,38.228786 - parent: 0 - type: Transform -- uid: 19028 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19029 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19030 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19031 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19032 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19033 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 28.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19034 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 31.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19035 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 31.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19036 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19037 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19038 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19039 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19040 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19041 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19042 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19043 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19044 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19045 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19046 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19047 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 40.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19048 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19049 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19050 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19051 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19052 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19053 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19054 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19055 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19056 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19057 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19058 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19059 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19060 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19061 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19062 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19063 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-32.5 - parent: 0 - type: Transform -- uid: 19064 - type: WallReinforced - components: - - pos: 0.5,-33.5 - parent: 0 - type: Transform -- uid: 19065 - type: WallReinforced - components: - - pos: 1.5,-33.5 - parent: 0 - type: Transform -- uid: 19066 - type: ReinforcedWindow - components: - - pos: 0.5,-34.5 - parent: 0 - type: Transform -- uid: 19067 - type: ReinforcedWindow - components: - - pos: 0.5,-36.5 - parent: 0 - type: Transform -- uid: 19068 - type: ReinforcedWindow - components: - - pos: 9.5,-39.5 - parent: 0 - type: Transform -- uid: 19069 - type: ReinforcedWindow - components: - - pos: 9.5,-41.5 - parent: 0 - type: Transform -- uid: 19070 - type: WallSolid - components: - - pos: 4.5,-33.5 - parent: 0 - type: Transform -- uid: 19071 - type: WallSolid - components: - - pos: 3.5,-33.5 - parent: 0 - type: Transform -- uid: 19072 - type: WallSolid - components: - - pos: 5.5,-37.5 - parent: 0 - type: Transform -- uid: 19073 - type: ReinforcedWindow - components: - - pos: 9.5,-38.5 - parent: 0 - type: Transform -- uid: 19074 - type: WallSolid - components: - - pos: 9.5,-37.5 - parent: 0 - type: Transform -- uid: 19075 - type: WallSolid - components: - - pos: 8.5,-37.5 - parent: 0 - type: Transform -- uid: 19076 - type: ReinforcedWindow - components: - - pos: 3.5,-43.5 - parent: 0 - type: Transform -- uid: 19077 - type: WallSolid - components: - - pos: 5.5,-43.5 - parent: 0 - type: Transform -- uid: 19078 - type: ReinforcedWindow - components: - - pos: 7.5,-37.5 - parent: 0 - type: Transform -- uid: 19079 - type: WallSolid - components: - - pos: 6.5,-43.5 - parent: 0 - type: Transform -- uid: 19080 - type: ReinforcedWindow - components: - - pos: 7.5,-43.5 - parent: 0 - type: Transform -- uid: 19081 - type: WallSolid - components: - - pos: 9.5,-43.5 - parent: 0 - type: Transform -- uid: 19082 - type: ReinforcedWindow - components: - - pos: 9.5,-42.5 - parent: 0 - type: Transform -- uid: 19083 - type: WallSolid - components: - - pos: 8.5,-43.5 - parent: 0 - type: Transform -- uid: 19084 - type: WallSolid - components: - - pos: 2.5,-43.5 - parent: 0 - type: Transform -- uid: 19085 - type: WallSolid - components: - - pos: 1.5,-43.5 - parent: 0 - type: Transform -- uid: 19086 - type: WallSolid - components: - - pos: 1.5,-44.5 - parent: 0 - type: Transform -- uid: 19087 - type: WallSolid - components: - - pos: 5.5,-36.5 - parent: 0 - type: Transform -- uid: 19088 - type: ReinforcedWindow - components: - - pos: 5.5,-35.5 - parent: 0 - type: Transform -- uid: 19089 - type: WallSolid - components: - - pos: 5.5,-34.5 - parent: 0 - type: Transform -- uid: 19090 - type: WallSolid - components: - - pos: 1.5,-46.5 - parent: 0 - type: Transform -- uid: 19091 - type: WallSolid - components: - - pos: 1.5,-45.5 - parent: 0 - type: Transform -- uid: 19092 - type: WallSolid - components: - - pos: 1.5,-47.5 - parent: 0 - type: Transform -- uid: 19093 - type: WallSolid - components: - - pos: -0.5,-43.5 - parent: 0 - type: Transform -- uid: 19094 - type: WallSolid - components: - - pos: 0.5,-49.5 - parent: 0 - type: Transform -- uid: 19095 - type: WallSolid - components: - - pos: 0.5,-52.5 - parent: 0 - type: Transform -- uid: 19096 - type: WallSolid - components: - - pos: -0.5,-52.5 - parent: 0 - type: Transform -- uid: 19097 - type: WallSolid - components: - - pos: -0.5,-53.5 - parent: 0 - type: Transform -- uid: 19098 - type: WallSolid - components: - - pos: -0.5,-54.5 - parent: 0 - type: Transform -- uid: 19099 - type: WallSolid - components: - - pos: -0.5,-55.5 - parent: 0 - type: Transform -- uid: 19100 - type: WallSolid - components: - - pos: -0.5,-56.5 - parent: 0 - type: Transform -- uid: 19101 - type: WallSolid - components: - - pos: 0.5,-56.5 - parent: 0 - type: Transform -- uid: 19102 - type: WallSolid - components: - - pos: 1.5,-56.5 - parent: 0 - type: Transform -- uid: 19103 - type: WallSolid - components: - - pos: 2.5,-56.5 - parent: 0 - type: Transform -- uid: 19104 - type: WallSolidRust - components: - - pos: 2.5,-57.5 - parent: 0 - type: Transform -- uid: 19105 - type: WallSolid - components: - - pos: 2.5,-58.5 - parent: 0 - type: Transform -- uid: 19106 - type: WallSolid - components: - - pos: 2.5,-60.5 - parent: 0 - type: Transform -- uid: 19107 - type: WallSolidRust - components: - - pos: 1.5,-60.5 - parent: 0 - type: Transform -- uid: 19108 - type: WallSolid - components: - - pos: 0.5,-60.5 - parent: 0 - type: Transform -- uid: 19109 - type: WallSolid - components: - - pos: -0.5,-60.5 - parent: 0 - type: Transform -- uid: 19110 - type: WallSolid - components: - - pos: -0.5,-58.5 - parent: 0 - type: Transform -- uid: 19111 - type: WallSolid - components: - - pos: -0.5,-57.5 - parent: 0 - type: Transform -- uid: 19112 - type: WallSolid - components: - - pos: -0.5,-59.5 - parent: 0 - type: Transform -- uid: 19113 - type: WallSolid - components: - - pos: -0.5,-61.5 - parent: 0 - type: Transform -- uid: 19114 - type: WallSolid - components: - - pos: -4.5,-60.5 - parent: 0 - type: Transform -- uid: 19115 - type: WallSolid - components: - - pos: -4.5,-59.5 - parent: 0 - type: Transform -- uid: 19116 - type: WallSolid - components: - - pos: -5.5,-59.5 - parent: 0 - type: Transform -- uid: 19117 - type: WallSolid - components: - - pos: -6.5,-59.5 - parent: 0 - type: Transform -- uid: 19118 - type: WallSolid - components: - - pos: -7.5,-59.5 - parent: 0 - type: Transform -- uid: 19119 - type: WallSolid - components: - - pos: -8.5,-59.5 - parent: 0 - type: Transform -- uid: 19120 - type: WallSolid - components: - - pos: -8.5,-60.5 - parent: 0 - type: Transform -- uid: 19121 - type: WallSolid - components: - - pos: -10.5,-59.5 - parent: 0 - type: Transform -- uid: 19122 - type: WallSolid - components: - - pos: -11.5,-59.5 - parent: 0 - type: Transform -- uid: 19123 - type: WallSolid - components: - - pos: -12.5,-59.5 - parent: 0 - type: Transform -- uid: 19124 - type: WallSolid - components: - - pos: -12.5,-60.5 - parent: 0 - type: Transform -- uid: 19125 - type: WallSolid - components: - - pos: -12.5,-61.5 - parent: 0 - type: Transform -- uid: 19126 - type: WallSolid - components: - - pos: -4.5,-57.5 - parent: 0 - type: Transform -- uid: 19127 - type: WallSolid - components: - - pos: -4.5,-56.5 - parent: 0 - type: Transform -- uid: 19128 - type: WallSolid - components: - - pos: -4.5,-53.5 - parent: 0 - type: Transform -- uid: 19129 - type: WallSolid - components: - - pos: -5.5,-53.5 - parent: 0 - type: Transform -- uid: 19130 - type: WallSolid - components: - - pos: -5.5,-54.5 - parent: 0 - type: Transform -- uid: 19131 - type: ReinforcedWindow - components: - - pos: 17.5,-31.5 - parent: 0 - type: Transform -- uid: 19132 - type: ReinforcedWindow - components: - - pos: 17.5,-32.5 - parent: 0 - type: Transform -- uid: 19133 - type: ReinforcedWindow - components: - - pos: 16.5,-33.5 - parent: 0 - type: Transform -- uid: 19134 - type: ReinforcedWindow - components: - - pos: 15.5,-33.5 - parent: 0 - type: Transform -- uid: 19135 - type: ReinforcedWindow - components: - - pos: 14.5,-33.5 - parent: 0 - type: Transform -- uid: 19136 - type: ReinforcedWindow - components: - - pos: 10.5,-33.5 - parent: 0 - type: Transform -- uid: 19137 - type: WallSolid - components: - - pos: 12.5,-33.5 - parent: 0 - type: Transform -- uid: 19138 - type: WallSolid - components: - - pos: 13.5,-33.5 - parent: 0 - type: Transform -- uid: 19139 - type: WallSolid - components: - - pos: 13.5,-34.5 - parent: 0 - type: Transform -- uid: 19140 - type: ReinforcedWindow - components: - - pos: 13.5,-36.5 - parent: 0 - type: Transform -- uid: 19141 - type: ReinforcedWindow - components: - - pos: 13.5,-37.5 - parent: 0 - type: Transform -- uid: 19142 - type: WallSolid - components: - - pos: 13.5,-38.5 - parent: 0 - type: Transform -- uid: 19143 - type: WallSolid - components: - - pos: 13.5,-39.5 - parent: 0 - type: Transform -- uid: 19144 - type: WallSolid - components: - - pos: 13.5,-40.5 - parent: 0 - type: Transform -- uid: 19145 - type: WallSolid - components: - - pos: 16.5,-40.5 - parent: 0 - type: Transform -- uid: 19146 - type: WallSolid - components: - - pos: 16.5,-39.5 - parent: 0 - type: Transform -- uid: 19147 - type: ReinforcedWindow - components: - - pos: 15.5,-39.5 - parent: 0 - type: Transform -- uid: 19148 - type: ReinforcedWindow - components: - - pos: 14.5,-39.5 - parent: 0 - type: Transform -- uid: 19149 - type: ReinforcedWindow - components: - - pos: 17.5,-39.5 - parent: 0 - type: Transform -- uid: 19150 - type: WallReinforced - components: - - pos: 18.5,-40.5 - parent: 0 - type: Transform -- uid: 19151 - type: WallReinforced - components: - - pos: 18.5,-39.5 - parent: 0 - type: Transform -- uid: 19152 - type: WallReinforced - components: - - pos: 18.5,-38.5 - parent: 0 - type: Transform -- uid: 19153 - type: WallReinforced - components: - - pos: 18.5,-37.5 - parent: 0 - type: Transform -- uid: 19154 - type: WallReinforced - components: - - pos: 18.5,-36.5 - parent: 0 - type: Transform -- uid: 19155 - type: WallReinforced - components: - - pos: 18.5,-35.5 - parent: 0 - type: Transform -- uid: 19156 - type: WallReinforced - components: - - pos: 18.5,-34.5 - parent: 0 - type: Transform -- uid: 19157 - type: WallReinforced - components: - - pos: 18.5,-33.5 - parent: 0 - type: Transform -- uid: 19158 - type: WallReinforced - components: - - pos: 17.5,-33.5 - parent: 0 - type: Transform -- uid: 19159 - type: ReinforcedWindow - components: - - pos: 19.5,-33.5 - parent: 0 - type: Transform -- uid: 19160 - type: ReinforcedWindow - components: - - pos: 21.5,-33.5 - parent: 0 - type: Transform -- uid: 19161 - type: ReinforcedWindow - components: - - pos: 22.5,-33.5 - parent: 0 - type: Transform -- uid: 19162 - type: ReinforcedWindow - components: - - pos: 19.5,-40.5 - parent: 0 - type: Transform -- uid: 19163 - type: ReinforcedWindow - components: - - pos: 20.5,-40.5 - parent: 0 - type: Transform -- uid: 19164 - type: ReinforcedWindow - components: - - pos: 22.5,-40.5 - parent: 0 - type: Transform -- uid: 19165 - type: WallReinforced - components: - - pos: 23.5,-40.5 - parent: 0 - type: Transform -- uid: 19166 - type: WallReinforced - components: - - pos: 24.5,-40.5 - parent: 0 - type: Transform -- uid: 19167 - type: WallReinforced - components: - - pos: 25.5,-40.5 - parent: 0 - type: Transform -- uid: 19168 - type: WallReinforced - components: - - pos: 26.5,-40.5 - parent: 0 - type: Transform -- uid: 19169 - type: WallReinforced - components: - - pos: 27.5,-40.5 - parent: 0 - type: Transform -- uid: 19170 - type: WallReinforced - components: - - pos: 26.5,-39.5 - parent: 0 - type: Transform -- uid: 19171 - type: WallReinforced - components: - - pos: 26.5,-38.5 - parent: 0 - type: Transform -- uid: 19172 - type: WallReinforced - components: - - pos: 26.5,-37.5 - parent: 0 - type: Transform -- uid: 19173 - type: ReinforcedWindow - components: - - pos: 26.5,-36.5 - parent: 0 - type: Transform -- uid: 19174 - type: ReinforcedWindow - components: - - pos: 26.5,-35.5 - parent: 0 - type: Transform -- uid: 19175 - type: WallReinforced - components: - - pos: 26.5,-34.5 - parent: 0 - type: Transform -- uid: 19176 - type: WallReinforced - components: - - pos: 26.5,-33.5 - parent: 0 - type: Transform -- uid: 19177 - type: WallReinforced - components: - - pos: 25.5,-33.5 - parent: 0 - type: Transform -- uid: 19178 - type: WallReinforced - components: - - pos: 24.5,-33.5 - parent: 0 - type: Transform -- uid: 19179 - type: WallReinforced - components: - - pos: 23.5,-33.5 - parent: 0 - type: Transform -- uid: 19180 - type: ReinforcedWindow - components: - - pos: 27.5,-37.5 - parent: 0 - type: Transform -- uid: 19181 - type: ReinforcedWindow - components: - - pos: 29.5,-37.5 - parent: 0 - type: Transform -- uid: 19182 - type: WallReinforced - components: - - pos: 27.5,-34.5 - parent: 0 - type: Transform -- uid: 19183 - type: WallReinforced - components: - - pos: 28.5,-34.5 - parent: 0 - type: Transform -- uid: 19184 - type: WallReinforced - components: - - pos: 29.5,-34.5 - parent: 0 - type: Transform -- uid: 19185 - type: WallReinforced - components: - - pos: 30.5,-34.5 - parent: 0 - type: Transform -- uid: 19186 - type: WallReinforced - components: - - pos: 30.5,-35.5 - parent: 0 - type: Transform -- uid: 19187 - type: WallReinforced - components: - - pos: 30.5,-36.5 - parent: 0 - type: Transform -- uid: 19188 - type: WallReinforced - components: - - pos: 30.5,-37.5 - parent: 0 - type: Transform -- uid: 19189 - type: WallReinforced - components: - - pos: 30.5,-38.5 - parent: 0 - type: Transform -- uid: 19190 - type: WallReinforced - components: - - pos: 30.5,-39.5 - parent: 0 - type: Transform -- uid: 19191 - type: WallReinforced - components: - - pos: 30.5,-40.5 - parent: 0 - type: Transform -- uid: 19192 - type: WallReinforced - components: - - pos: 29.5,-40.5 - parent: 0 - type: Transform -- uid: 19193 - type: WallReinforced - components: - - pos: 5.5,-47.5 - parent: 0 - type: Transform -- uid: 19194 - type: WallReinforced - components: - - pos: 6.5,-47.5 - parent: 0 - type: Transform -- uid: 19195 - type: WallReinforced - components: - - pos: 8.5,-47.5 - parent: 0 - type: Transform -- uid: 19196 - type: WallReinforced - components: - - pos: 5.5,-48.5 - parent: 0 - type: Transform -- uid: 19197 - type: WallReinforced - components: - - pos: 5.5,-49.5 - parent: 0 - type: Transform -- uid: 19198 - type: WallReinforced - components: - - pos: 5.5,-50.5 - parent: 0 - type: Transform -- uid: 19199 - type: WallReinforced - components: - - pos: 5.5,-51.5 - parent: 0 - type: Transform -- uid: 19200 - type: WallReinforced - components: - - pos: 5.5,-52.5 - parent: 0 - type: Transform -- uid: 19201 - type: WallReinforced - components: - - pos: 5.5,-53.5 - parent: 0 - type: Transform -- uid: 19202 - type: WallReinforced - components: - - pos: 5.5,-54.5 - parent: 0 - type: Transform -- uid: 19203 - type: WallReinforced - components: - - pos: 5.5,-55.5 - parent: 0 - type: Transform -- uid: 19204 - type: WallReinforced - components: - - pos: 5.5,-56.5 - parent: 0 - type: Transform -- uid: 19205 - type: WallSolid - components: - - pos: 4.5,-56.5 - parent: 0 - type: Transform -- uid: 19206 - type: WallReinforced - components: - - pos: 7.5,-56.5 - parent: 0 - type: Transform -- uid: 19207 - type: WallReinforced - components: - - pos: 8.5,-56.5 - parent: 0 - type: Transform -- uid: 19208 - type: WallReinforced - components: - - pos: 9.5,-56.5 - parent: 0 - type: Transform -- uid: 19209 - type: WallReinforced - components: - - pos: 10.5,-56.5 - parent: 0 - type: Transform -- uid: 19210 - type: WallReinforced - components: - - pos: 11.5,-56.5 - parent: 0 - type: Transform -- uid: 19211 - type: WallReinforced - components: - - pos: 12.5,-56.5 - parent: 0 - type: Transform -- uid: 19212 - type: WallReinforced - components: - - pos: 13.5,-56.5 - parent: 0 - type: Transform -- uid: 19213 - type: ReinforcedWindow - components: - - pos: 9.5,-47.5 - parent: 0 - type: Transform -- uid: 19214 - type: ReinforcedWindow - components: - - pos: 10.5,-47.5 - parent: 0 - type: Transform -- uid: 19215 - type: ReinforcedWindow - components: - - pos: 11.5,-47.5 - parent: 0 - type: Transform -- uid: 19216 - type: ReinforcedWindow - components: - - pos: 13.5,-47.5 - parent: 0 - type: Transform -- uid: 19217 - type: ReinforcedWindow - components: - - pos: 14.5,-47.5 - parent: 0 - type: Transform -- uid: 19218 - type: ReinforcedWindow - components: - - pos: 15.5,-47.5 - parent: 0 - type: Transform -- uid: 19219 - type: WallSolid - components: - - pos: 12.5,-47.5 - parent: 0 - type: Transform -- uid: 19220 - type: WallSolid - components: - - pos: 12.5,-48.5 - parent: 0 - type: Transform -- uid: 19221 - type: WallReinforced - components: - - pos: 16.5,-48.5 - parent: 0 - type: Transform -- uid: 19222 - type: WallReinforced - components: - - pos: 16.5,-47.5 - parent: 0 - type: Transform -- uid: 19223 - type: WallReinforced - components: - - pos: 16.5,-46.5 - parent: 0 - type: Transform -- uid: 19224 - type: WallReinforced - components: - - pos: 16.5,-45.5 - parent: 0 - type: Transform -- uid: 19225 - type: WallReinforced - components: - - pos: 16.5,-44.5 - parent: 0 - type: Transform -- uid: 19226 - type: WallReinforced - components: - - pos: 17.5,-44.5 - parent: 0 - type: Transform -- uid: 19227 - type: WallReinforced - components: - - pos: 18.5,-44.5 - parent: 0 - type: Transform -- uid: 19228 - type: WallReinforced - components: - - pos: 19.5,-44.5 - parent: 0 - type: Transform -- uid: 19229 - type: WallReinforced - components: - - pos: 20.5,-44.5 - parent: 0 - type: Transform -- uid: 19230 - type: WallReinforced - components: - - pos: 21.5,-44.5 - parent: 0 - type: Transform -- uid: 19231 - type: WallReinforced - components: - - pos: 22.5,-44.5 - parent: 0 - type: Transform -- uid: 19232 - type: WallReinforced - components: - - pos: 24.5,-44.5 - parent: 0 - type: Transform -- uid: 19233 - type: WallReinforced - components: - - pos: 25.5,-44.5 - parent: 0 - type: Transform -- uid: 19234 - type: WallReinforced - components: - - pos: 26.5,-44.5 - parent: 0 - type: Transform -- uid: 19235 - type: WallReinforced - components: - - pos: 27.5,-44.5 - parent: 0 - type: Transform -- uid: 19236 - type: WallReinforced - components: - - pos: 28.5,-44.5 - parent: 0 - type: Transform -- uid: 19237 - type: WallReinforced - components: - - pos: 29.5,-44.5 - parent: 0 - type: Transform -- uid: 19238 - type: WallReinforced - components: - - pos: 30.5,-44.5 - parent: 0 - type: Transform -- uid: 19239 - type: WallReinforced - components: - - pos: 30.5,-43.5 - parent: 0 - type: Transform -- uid: 19240 - type: WallReinforced - components: - - pos: 30.5,-41.5 - parent: 0 - type: Transform -- uid: 19241 - type: WallReinforced - components: - - pos: 16.5,-51.5 - parent: 0 - type: Transform -- uid: 19242 - type: WallReinforced - components: - - pos: 16.5,-52.5 - parent: 0 - type: Transform -- uid: 19243 - type: WallReinforced - components: - - pos: 16.5,-53.5 - parent: 0 - type: Transform -- uid: 19244 - type: WallReinforced - components: - - pos: 12.5,-51.5 - parent: 0 - type: Transform -- uid: 19245 - type: WallReinforced - components: - - pos: 12.5,-53.5 - parent: 0 - type: Transform -- uid: 19246 - type: WallReinforced - components: - - pos: 12.5,-52.5 - parent: 0 - type: Transform -- uid: 19247 - type: WallReinforced - components: - - pos: 11.5,-53.5 - parent: 0 - type: Transform -- uid: 19248 - type: WallReinforced - components: - - pos: 14.5,-56.5 - parent: 0 - type: Transform -- uid: 19249 - type: WallReinforced - components: - - pos: 15.5,-56.5 - parent: 0 - type: Transform -- uid: 19250 - type: WallReinforced - components: - - pos: 16.5,-56.5 - parent: 0 - type: Transform -- uid: 19251 - type: WallReinforced - components: - - pos: 17.5,-56.5 - parent: 0 - type: Transform -- uid: 19252 - type: WallReinforced - components: - - pos: 17.5,-53.5 - parent: 0 - type: Transform -- uid: 19253 - type: WallSolid - components: - - pos: 17.5,-51.5 - parent: 0 - type: Transform -- uid: 19254 - type: WallSolid - components: - - pos: 19.5,-51.5 - parent: 0 - type: Transform -- uid: 19255 - type: WallSolid - components: - - pos: 17.5,-47.5 - parent: 0 - type: Transform -- uid: 19256 - type: AirlockMaintLocked - components: - - pos: 18.5,-47.5 - parent: 0 - type: Transform -- uid: 19257 - type: TintedWindow - components: - - pos: 4.5,-47.5 - parent: 0 - type: Transform -- uid: 19258 - type: TintedWindow - components: - - pos: 2.5,-47.5 - parent: 0 - type: Transform -- uid: 19259 - type: FirelockGlass - components: - - pos: -1.5,-52.5 - parent: 0 - type: Transform -- uid: 19260 - type: FirelockGlass - components: - - pos: -2.5,-52.5 - parent: 0 - type: Transform -- uid: 19261 - type: FirelockGlass - components: - - pos: -3.5,-52.5 - parent: 0 - type: Transform -- uid: 19262 - type: FirelockGlass - components: - - pos: -1.5,-38.5 - parent: 0 - type: Transform -- uid: 19263 - type: FirelockGlass - components: - - pos: -2.5,-38.5 - parent: 0 - type: Transform -- uid: 19264 - type: FirelockGlass - components: - - pos: -3.5,-38.5 - parent: 0 - type: Transform -- uid: 19265 - type: AirlockMaintRnDLocked - components: - - name: Genetics - type: MetaData - - pos: 3.5,-47.5 - parent: 0 - type: Transform -- uid: 19266 - type: AirlockMaintRnDLocked - components: - - pos: 6.5,-56.5 - parent: 0 - type: Transform -- uid: 19267 - type: AirlockMaintRnDMedLocked - components: - - pos: 0.5,-47.5 - parent: 0 - type: Transform -- uid: 19268 - type: AirlockMaintRnDLocked - components: - - pos: 0.5,-43.5 - parent: 0 - type: Transform -- uid: 19269 - type: WallReinforced - components: - - pos: 26.5,-32.5 - parent: 0 - type: Transform -- uid: 19270 - type: WallReinforced - components: - - pos: 26.5,-31.5 - parent: 0 - type: Transform -- uid: 19271 - type: WallReinforced - components: - - pos: 26.5,-30.5 - parent: 0 - type: Transform -- uid: 19272 - type: WallReinforced - components: - - pos: 26.5,-29.5 - parent: 0 - type: Transform -- uid: 19273 - type: WallReinforced - components: - - pos: 26.5,-28.5 - parent: 0 - type: Transform -- uid: 19274 - type: WallReinforced - components: - - pos: 26.5,-27.5 - parent: 0 - type: Transform -- uid: 19275 - type: WallReinforced - components: - - pos: 18.5,-27.5 - parent: 0 - type: Transform -- uid: 19276 - type: WallReinforced - components: - - pos: 19.5,-27.5 - parent: 0 - type: Transform -- uid: 19277 - type: WallReinforced - components: - - pos: 21.5,-27.5 - parent: 0 - type: Transform -- uid: 19278 - type: WallReinforced - components: - - pos: 22.5,-27.5 - parent: 0 - type: Transform -- uid: 19279 - type: WallReinforced - components: - - pos: 23.5,-27.5 - parent: 0 - type: Transform -- uid: 19280 - type: WallReinforced - components: - - pos: 24.5,-27.5 - parent: 0 - type: Transform -- uid: 19281 - type: WallReinforced - components: - - pos: 25.5,-27.5 - parent: 0 - type: Transform -- uid: 19282 - type: AirlockMaintRnDLocked - components: - - pos: 20.5,-27.5 - parent: 0 - type: Transform -- uid: 19283 - type: AirlockMaintRnDLocked - components: - - pos: 14.5,-27.5 - parent: 0 - type: Transform -- uid: 19284 - type: AirlockScienceLocked - components: - - pos: 11.5,-33.5 - parent: 0 - type: Transform -- uid: 19285 - type: AirlockScienceLocked - components: - - name: Robotics - type: MetaData - - pos: 6.5,-37.5 - parent: 0 - type: Transform -- uid: 19286 - type: AirlockScienceLocked - components: - - name: Toxins - type: MetaData - - pos: 7.5,-47.5 - parent: 0 - type: Transform -- uid: 19287 - type: AirlockScienceLocked - components: - - pos: 16.5,-49.5 - parent: 0 - type: Transform -- uid: 19288 - type: AirlockScienceLocked - components: - - name: Toxins Storage - type: MetaData - - pos: 20.5,-49.5 - parent: 0 - type: Transform -- uid: 19289 - type: AirlockScienceGlassLocked - components: - - pos: 13.5,-35.5 - parent: 0 - type: Transform -- uid: 19290 - type: AirlockScienceGlassLocked - components: - - name: Anomaly Lab - type: MetaData - - pos: 17.5,-29.5 - parent: 0 - type: Transform -- uid: 19291 - type: AirlockScienceGlassLocked - components: - - pos: 2.5,-33.5 - parent: 0 - type: Transform -- uid: 19292 - type: AirlockScienceLocked - components: - - pos: -0.5,-30.5 - parent: 0 - type: Transform -- uid: 19293 - type: TableReinforced - components: - - pos: 4.5,-43.5 - parent: 0 - type: Transform -- uid: 19294 - type: TableReinforced - components: - - pos: 0.5,-35.5 - parent: 0 - type: Transform -- uid: 19295 - type: FirelockGlass - components: - - pos: 0.5,-35.5 - parent: 0 - type: Transform -- uid: 19296 - type: FirelockGlass - components: - - pos: 4.5,-43.5 - parent: 0 - type: Transform -- uid: 19297 - type: WindoorScienceLocked - components: - - rot: 3.141592653589793 rad - pos: 4.5,-43.5 - parent: 0 - type: Transform -- uid: 19298 - type: WindoorScienceLocked - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-35.5 - parent: 0 - type: Transform -- uid: 19299 - type: Grille - components: - - pos: 0.5,-36.5 - parent: 0 - type: Transform -- uid: 19300 - type: Grille - components: - - pos: 0.5,-34.5 - parent: 0 - type: Transform -- uid: 19301 - type: Grille - components: - - pos: 5.5,-35.5 - parent: 0 - type: Transform -- uid: 19302 - type: Grille - components: - - pos: 7.5,-37.5 - parent: 0 - type: Transform -- uid: 19303 - type: Grille - components: - - pos: 9.5,-38.5 - parent: 0 - type: Transform -- uid: 19304 - type: Grille - components: - - pos: 9.5,-39.5 - parent: 0 - type: Transform -- uid: 19305 - type: Grille - components: - - pos: 9.5,-41.5 - parent: 0 - type: Transform -- uid: 19306 - type: Grille - components: - - pos: 9.5,-42.5 - parent: 0 - type: Transform -- uid: 19307 - type: Grille - components: - - pos: 7.5,-43.5 - parent: 0 - type: Transform -- uid: 19308 - type: Grille - components: - - pos: 3.5,-43.5 - parent: 0 - type: Transform -- uid: 19309 - type: Grille - components: - - pos: 10.5,-33.5 - parent: 0 - type: Transform -- uid: 19310 - type: Grille - components: - - pos: 16.5,-33.5 - parent: 0 - type: Transform -- uid: 19311 - type: Grille - components: - - pos: 15.5,-33.5 - parent: 0 - type: Transform -- uid: 19312 - type: Grille - components: - - pos: 14.5,-33.5 - parent: 0 - type: Transform -- uid: 19313 - type: Grille - components: - - pos: 13.5,-37.5 - parent: 0 - type: Transform -- uid: 19314 - type: Grille - components: - - pos: 13.5,-36.5 - parent: 0 - type: Transform -- uid: 19315 - type: Grille - components: - - pos: 15.5,-39.5 - parent: 0 - type: Transform -- uid: 19316 - type: Grille - components: - - pos: 14.5,-39.5 - parent: 0 - type: Transform -- uid: 19317 - type: Grille - components: - - pos: 17.5,-39.5 - parent: 0 - type: Transform -- uid: 19318 - type: Grille - components: - - pos: 19.5,-33.5 - parent: 0 - type: Transform -- uid: 19319 - type: Grille - components: - - pos: 22.5,-33.5 - parent: 0 - type: Transform -- uid: 19320 - type: Grille - components: - - pos: 21.5,-33.5 - parent: 0 - type: Transform -- uid: 19321 - type: Grille - components: - - pos: 26.5,-36.5 - parent: 0 - type: Transform -- uid: 19322 - type: Grille - components: - - pos: 26.5,-35.5 - parent: 0 - type: Transform -- uid: 19323 - type: Grille - components: - - pos: 27.5,-37.5 - parent: 0 - type: Transform -- uid: 19324 - type: Grille - components: - - pos: 29.5,-37.5 - parent: 0 - type: Transform -- uid: 19325 - type: Grille - components: - - pos: 22.5,-40.5 - parent: 0 - type: Transform -- uid: 19326 - type: Grille - components: - - pos: 20.5,-40.5 - parent: 0 - type: Transform -- uid: 19327 - type: Grille - components: - - pos: 19.5,-40.5 - parent: 0 - type: Transform -- uid: 19328 - type: Grille - components: - - pos: 17.5,-32.5 - parent: 0 - type: Transform -- uid: 19329 - type: Grille - components: - - pos: 17.5,-31.5 - parent: 0 - type: Transform -- uid: 19330 - type: Grille - components: - - pos: 17.5,-30.5 - parent: 0 - type: Transform -- uid: 19331 - type: Grille - components: - - pos: 15.5,-47.5 - parent: 0 - type: Transform -- uid: 19332 - type: Grille - components: - - pos: 14.5,-47.5 - parent: 0 - type: Transform -- uid: 19333 - type: Grille - components: - - pos: 13.5,-47.5 - parent: 0 - type: Transform -- uid: 19334 - type: Grille - components: - - pos: 11.5,-47.5 - parent: 0 - type: Transform -- uid: 19335 - type: Grille - components: - - pos: 10.5,-47.5 - parent: 0 - type: Transform -- uid: 19336 - type: Grille - components: - - pos: 9.5,-47.5 - parent: 0 - type: Transform -- uid: 19337 - type: AirlockMaintRnDLocked - components: - - pos: 23.5,-44.5 - parent: 0 - type: Transform -- uid: 19338 - type: AirlockResearchDirectorLocked - components: - - pos: 21.5,-40.5 - parent: 0 - type: Transform -- uid: 19339 - type: AirlockResearchDirectorLocked - components: - - pos: 20.5,-33.5 - parent: 0 - type: Transform -- uid: 19340 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19341 - type: BlastDoor - components: - - pos: 3.5,-27.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19447 - type: SignalReceiver -- uid: 19342 - type: AirlockResearchDirectorGlassLocked - components: - - pos: 28.5,-37.5 - parent: 0 - type: Transform -- uid: 19343 - type: BlastDoor - components: - - pos: 2.5,-27.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19447 - type: SignalReceiver -- uid: 19344 - type: BlastDoor - components: - - pos: 1.5,-27.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19447 - type: SignalReceiver -- uid: 19345 - type: BlastDoor - components: - - pos: 16.5,-50.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19439 - type: SignalReceiver -- uid: 19346 - type: BlastDoor - components: - - pos: 20.5,-50.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24075 - type: SignalReceiver -- uid: 19347 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-55.5 - parent: 0 - type: Transform -- uid: 19348 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-54.5 - parent: 0 - type: Transform -- uid: 19349 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-54.5 - parent: 0 - type: Transform -- uid: 19350 - type: PlasmaReinforcedWindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-55.5 - parent: 0 - type: Transform -- uid: 19351 - type: Grille - components: - - pos: 15.5,-52.5 - parent: 0 - type: Transform -- uid: 19352 - type: ComputerAnalysisConsole - components: - - rot: 3.141592653589793 rad - pos: 13.5,-51.5 - parent: 0 - type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 19358 - type: SignalTransmitter -- uid: 19353 - type: Grille - components: - - pos: 13.5,-52.5 - parent: 0 - type: Transform -- uid: 19354 - type: ReinforcedWindow - components: - - pos: 15.5,-52.5 - parent: 0 - type: Transform -- uid: 19355 - type: ReinforcedWindow - components: - - pos: 13.5,-52.5 - parent: 0 - type: Transform -- uid: 19356 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -44.5,39.5 - parent: 0 - type: Transform -- uid: 19357 - type: MachineArtifactAnalyzer - components: - - rot: 3.141592653589793 rad - pos: 24.5,-30.5 - parent: 0 - type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 19453 - type: SignalReceiver -- uid: 19358 - type: MachineArtifactAnalyzer - components: - - pos: 14.5,-54.5 - parent: 0 - type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 19352 - type: SignalReceiver -- uid: 19359 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -44.5,41.5 - parent: 0 - type: Transform -- uid: 19360 - type: AirlockScienceGlassLocked - components: - - pos: 14.5,-52.5 - parent: 0 - type: Transform -- uid: 19361 - type: ClosetRadiationSuitFilled - components: - - pos: 6.5,-48.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19362 - type: BlastDoor - components: - - pos: 12.5,-55.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19438 - type: SignalReceiver -- uid: 19363 - type: BlastDoor - components: - - pos: 12.5,-54.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19438 - type: SignalReceiver -- uid: 19364 - type: BlastDoor - components: - - pos: 16.5,-55.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19438 - type: SignalReceiver -- uid: 19365 - type: BlastDoor - components: - - pos: 16.5,-54.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19438 - type: SignalReceiver -- uid: 19366 - type: WallSolid - components: - - pos: 6.5,-54.5 - parent: 0 - type: Transform -- uid: 19367 - type: WallSolid - components: - - pos: -0.5,-44.5 - parent: 0 - type: Transform -- uid: 19368 - type: GasThermoMachineFreezer - components: - - pos: 6.5,-50.5 - parent: 0 - type: Transform -- uid: 19369 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 6.5,-51.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19370 - type: GasThermoMachineHeater - components: - - pos: 6.5,-52.5 - parent: 0 - type: Transform -- uid: 19371 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 6.5,-53.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19372 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-51.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19373 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 8.5,-52.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19374 - type: GasMixer - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-51.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19375 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-51.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19376 - type: GasPort - components: - - pos: 13.5,-48.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19377 - type: GasPort - components: - - pos: 15.5,-48.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19378 - type: GasPressurePump - components: - - pos: 13.5,-50.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19379 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 15.5,-50.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19380 - type: GasValve - components: - - rot: 3.141592653589793 rad - pos: 13.5,-49.5 - parent: 0 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 19381 - type: GasValve - components: - - rot: 3.141592653589793 rad - pos: 15.5,-49.5 - parent: 0 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 19382 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-51.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19383 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-52.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19384 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-53.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19385 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-51.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19386 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-52.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19387 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-53.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19388 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-54.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19389 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-54.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19390 - type: GasOutletInjector - components: - - rot: 3.141592653589793 rad - pos: 13.5,-55.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19391 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 15.5,-55.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19392 - type: ClosetBombFilled - components: - - pos: 6.5,-49.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19393 - type: ComputerResearchAndDevelopment - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-24.5 - parent: 0 - type: Transform -- uid: 19394 - type: ClosetFireFilled - components: - - pos: 11.5,-48.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19395 - type: Rack - components: - - pos: 10.5,-48.5 - parent: 0 - type: Transform -- uid: 19396 - type: Rack - components: - - pos: 9.5,-48.5 - parent: 0 - type: Transform -- uid: 19397 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 11.5,-52.5 - parent: 0 - type: Transform -- uid: 19398 - type: WallSolid - components: - - pos: 11.5,-51.5 - parent: 0 - type: Transform -- uid: 19399 - type: PosterLegitStateLaws - components: - - pos: 11.5,-51.5 - parent: 0 - type: Transform -- uid: 19400 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-54.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19401 - type: GasValve - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-54.5 - parent: 0 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 19402 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-54.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19403 - type: AirlockMaintRnDMedLocked - components: - - pos: 3.5,-56.5 - parent: 0 - type: Transform -- uid: 19404 - type: TintedWindow - components: - - pos: 0.5,-50.5 - parent: 0 - type: Transform -- uid: 19405 - type: ShuttersNormal - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-51.5 - parent: 0 - type: Transform -- uid: 19406 - type: Grille - components: - - pos: 0.5,-50.5 - parent: 0 - type: Transform -- uid: 19407 - type: Grille - components: - - pos: 2.5,-47.5 - parent: 0 - type: Transform -- uid: 19408 - type: Grille - components: - - pos: 4.5,-47.5 - parent: 0 - type: Transform -- uid: 19409 - type: Barricade - components: - - pos: 3.5,-48.5 - parent: 0 - type: Transform -- uid: 19410 - type: UnfinishedMachineFrame - components: - - pos: 4.5,-49.5 - parent: 0 - type: Transform -- uid: 19411 - type: ComputerFrame - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-50.5 - parent: 0 - type: Transform -- uid: 19412 - type: ComputerFrame - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-52.5 - parent: 0 - type: Transform -- uid: 19413 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-51.5 - parent: 0 - type: Transform -- uid: 19414 - type: Table - components: - - pos: 4.5,-51.5 - parent: 0 - type: Transform -- uid: 19415 - type: ClosetBase - components: - - pos: 4.5,-53.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19416 - type: ShardGlass - components: - - pos: 3.4984002,-55.47984 - parent: 0 - type: Transform -- uid: 19417 - type: Table - components: - - pos: 0.5,-53.5 - parent: 0 - type: Transform -- uid: 19418 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-53.5 - parent: 0 - type: Transform -- uid: 19419 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 0.5,-54.5 - parent: 0 - type: Transform -- uid: 19420 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 1.5,-54.5 - parent: 0 - type: Transform -- uid: 19421 - type: ShardGlass - components: - - pos: 2.4644556,-52.554646 - parent: 0 - type: Transform -- uid: 19422 - type: MonkeyCube - components: - - pos: 0.5113306,-55.492146 - parent: 0 - type: Transform -- uid: 19423 - type: SignScience1 - components: - - pos: -0.5,-52.5 - parent: 0 - type: Transform -- uid: 19424 - type: FireExtinguisher - components: - - pos: 3.4800806,-51.523396 - parent: 0 - type: Transform -- uid: 19425 - type: DisposalUnit - components: - - pos: 1.5,-52.5 - parent: 0 - type: Transform -- uid: 19426 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-52.5 - parent: 0 - type: Transform -- uid: 19427 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 2.5,-51.5 - parent: 0 - type: Transform -- uid: 19428 - type: DisposalPipeBroken - components: - - pos: 2.5,-50.5 - parent: 0 - type: Transform -- uid: 19429 - type: ShuttersNormalOpen - components: - - pos: 9.5,-47.5 - parent: 0 - type: Transform - - SecondsUntilStateChange: -16306.083 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19435 - type: SignalReceiver -- uid: 19430 - type: ShuttersNormalOpen - components: - - pos: 10.5,-47.5 - parent: 0 - type: Transform - - SecondsUntilStateChange: -16306.083 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19435 - type: SignalReceiver -- uid: 19431 - type: ShuttersNormalOpen - components: - - pos: 11.5,-47.5 - parent: 0 - type: Transform - - SecondsUntilStateChange: -16306.083 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19435 - type: SignalReceiver -- uid: 19432 - type: ShuttersNormalOpen - components: - - pos: 13.5,-47.5 - parent: 0 - type: Transform - - SecondsUntilStateChange: -16306.083 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19435 - type: SignalReceiver -- uid: 19433 - type: ShuttersNormalOpen - components: - - pos: 14.5,-47.5 - parent: 0 - type: Transform - - SecondsUntilStateChange: -16306.083 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19435 - type: SignalReceiver -- uid: 19434 - type: ShuttersNormalOpen - components: - - pos: 15.5,-47.5 - parent: 0 - type: Transform - - SecondsUntilStateChange: -16306.083 - state: Closing - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 19435 - type: SignalReceiver -- uid: 19435 - type: SignalButton - components: - - name: Window Shutters - type: MetaData - - pos: 12.5,-48.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 19429 - - port: Toggle - uid: 19430 - - port: Toggle - uid: 19431 - - port: Toggle - uid: 19432 - - port: Toggle - uid: 19433 - - port: Toggle - uid: 19434 - type: SignalTransmitter - - type: ItemCooldown -- uid: 19436 - type: AirlockMaintLocked - components: - - pos: 18.5,-51.5 - parent: 0 - type: Transform -- uid: 19437 - type: WallSolid - components: - - pos: 19.5,-47.5 - parent: 0 - type: Transform -- uid: 19438 - type: SignalButton - components: - - name: Toxins Chamber Blast Doors - type: MetaData - - pos: 12.5,-51.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 19363 - - port: Toggle - uid: 19362 - - port: Toggle - uid: 19365 - - port: Toggle - uid: 19364 - type: SignalTransmitter -- uid: 19439 - type: SignalButton - components: - - name: maint blast door - type: MetaData - - pos: 16.5,-51.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 19345 - type: SignalTransmitter -- uid: 19440 - type: ClothingOuterVestHazard - components: - - pos: 0.53534174,-53.480457 - parent: 0 - type: Transform -- uid: 19441 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-49.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19442 - type: RandomSpawner - components: - - pos: 0.5,-46.5 - parent: 0 - type: Transform -- uid: 19443 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-36.5 - parent: 0 - type: Transform -- uid: 19444 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-35.5 - parent: 0 - type: Transform -- uid: 19445 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-34.5 - parent: 0 - type: Transform -- uid: 19446 - type: SignalButton - components: - - pos: 0.5,-37.5 - parent: 0 - type: Transform -- uid: 19447 - type: SignalButton - components: - - pos: 1.5,-33.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 19344 - - port: Toggle - uid: 19343 - - port: Toggle - uid: 19341 - type: SignalTransmitter -- uid: 19448 - type: Table - components: - - pos: 10.5,-23.5 - parent: 0 - type: Transform -- uid: 19449 - type: Table - components: - - pos: 11.5,-23.5 - parent: 0 - type: Transform -- uid: 19450 - type: Table - components: - - pos: 12.5,-23.5 - parent: 0 - type: Transform -- uid: 19451 - type: Table - components: - - pos: 12.5,-26.5 - parent: 0 - type: Transform -- uid: 19452 - type: Table - components: - - pos: 12.5,-25.5 - parent: 0 - type: Transform -- uid: 19453 - type: ComputerAnalysisConsole - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-30.5 - parent: 0 - type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 19357 - type: SignalTransmitter -- uid: 19454 - type: Table - components: - - pos: 12.5,-32.5 - parent: 0 - type: Transform -- uid: 19455 - type: Table - components: - - pos: 12.5,-31.5 - parent: 0 - type: Transform -- uid: 19456 - type: Table - components: - - pos: 12.5,-30.5 - parent: 0 - type: Transform -- uid: 19457 - type: Table - components: - - pos: 18.5,-28.5 - parent: 0 - type: Transform -- uid: 19458 - type: Table - components: - - pos: 22.5,-28.5 - parent: 0 - type: Transform -- uid: 19459 - type: Table - components: - - pos: 22.5,-29.5 - parent: 0 - type: Transform -- uid: 19460 - type: Table - components: - - pos: 18.5,-32.5 - parent: 0 - type: Transform -- uid: 19461 - type: Table - components: - - pos: 18.5,-31.5 - parent: 0 - type: Transform -- uid: 19462 - type: Table - components: - - pos: 18.5,-30.5 - parent: 0 - type: Transform -- uid: 19463 - type: Table - components: - - pos: 19.5,-32.5 - parent: 0 - type: Transform -- uid: 19464 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-32.5 - parent: 0 - type: Transform -- uid: 19465 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-30.5 - parent: 0 - type: Transform -- uid: 19466 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-29.5 - parent: 0 - type: Transform -- uid: 19467 - type: PlasmaReinforcedWindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 0 - type: Transform -- uid: 19468 - type: Grille - components: - - pos: 28.5,-61.5 - parent: 0 - type: Transform -- uid: 19469 - type: WindoorScienceLocked - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-31.5 - parent: 0 - type: Transform -- uid: 19470 - type: PlasticFlapsAirtightOpaque - components: - - pos: 16.5,-27.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 19471 - type: Morgue - components: - - pos: 7.5,-38.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19472 - type: Table - components: - - pos: 8.5,-38.5 - parent: 0 - type: Transform -- uid: 19473 - type: Table - components: - - pos: 8.5,-39.5 - parent: 0 - type: Transform -- uid: 19474 - type: Table - components: - - pos: 8.5,-42.5 - parent: 0 - type: Transform -- uid: 19475 - type: Table - components: - - pos: 7.5,-42.5 - parent: 0 - type: Transform -- uid: 19476 - type: Table - components: - - pos: 6.5,-42.5 - parent: 0 - type: Transform -- uid: 19477 - type: TableReinforced - components: - - pos: 0.5,-38.5 - parent: 0 - type: Transform -- uid: 19478 - type: TableReinforced - components: - - pos: 3.5,-34.5 - parent: 0 - type: Transform -- uid: 19479 - type: TableReinforced - components: - - pos: 4.5,-34.5 - parent: 0 - type: Transform -- uid: 19480 - type: TableReinforced - components: - - pos: 4.5,-35.5 - parent: 0 - type: Transform -- uid: 19481 - type: TableReinforced - components: - - pos: 4.5,-36.5 - parent: 0 - type: Transform -- uid: 19482 - type: TableReinforced - components: - - pos: 0.5,-32.5 - parent: 0 - type: Transform -- uid: 19483 - type: TableReinforced - components: - - pos: 0.5,-28.5 - parent: 0 - type: Transform -- uid: 19484 - type: Rack - components: - - pos: 0.5,-40.5 - parent: 0 - type: Transform -- uid: 19485 - type: Rack - components: - - pos: 6.5,-41.5 - parent: 0 - type: Transform -- uid: 19486 - type: OperatingTable - components: - - pos: 8.5,-40.5 - parent: 0 - type: Transform -- uid: 19487 - type: computerBodyScanner - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-41.5 - parent: 0 - type: Transform -- uid: 19488 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-42.5 - parent: 0 - type: Transform -- uid: 19489 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-41.5 - parent: 0 - type: Transform -- uid: 19490 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 6.5,-41.5 - parent: 0 - type: Transform -- uid: 19491 - type: DisposalUnit - components: - - pos: 4.5,-37.5 - parent: 0 - type: Transform -- uid: 19492 - type: DisposalUnit - components: - - pos: 5.5,-26.5 - parent: 0 - type: Transform -- uid: 19493 - type: DisposalUnit - components: - - pos: 12.5,-27.5 - parent: 0 - type: Transform -- uid: 19494 - type: DisposalUnit - components: - - pos: 21.5,-28.5 - parent: 0 - type: Transform -- uid: 19495 - type: DisposalUnit - components: - - pos: 14.5,-34.5 - parent: 0 - type: Transform -- uid: 19496 - type: FirelockGlass - components: - - pos: 16.5,-43.5 - parent: 0 - type: Transform -- uid: 19497 - type: FirelockGlass - components: - - pos: 16.5,-42.5 - parent: 0 - type: Transform -- uid: 19498 - type: FirelockGlass - components: - - pos: 16.5,-41.5 - parent: 0 - type: Transform -- uid: 19499 - type: FirelockGlass - components: - - pos: 12.5,-40.5 - parent: 0 - type: Transform -- uid: 19500 - type: FirelockGlass - components: - - pos: 11.5,-40.5 - parent: 0 - type: Transform -- uid: 19501 - type: FirelockGlass - components: - - pos: 10.5,-40.5 - parent: 0 - type: Transform -- uid: 19502 - type: TableGlass - components: - - pos: 15.5,-40.5 - parent: 0 - type: Transform -- uid: 19503 - type: TableGlass - components: - - pos: 14.5,-40.5 - parent: 0 - type: Transform -- uid: 19504 - type: Table - components: - - pos: 17.5,-35.5 - parent: 0 - type: Transform -- uid: 19505 - type: Table - components: - - pos: 16.5,-35.5 - parent: 0 - type: Transform -- uid: 19506 - type: Table - components: - - pos: 15.5,-38.5 - parent: 0 - type: Transform -- uid: 19507 - type: Table - components: - - pos: 14.5,-38.5 - parent: 0 - type: Transform -- uid: 19508 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 17.5,-37.5 - parent: 0 - type: Transform -- uid: 19509 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 17.5,-38.5 - parent: 0 - type: Transform -- uid: 19510 - type: ComfyChair - components: - - pos: 17.5,-34.5 - parent: 0 - type: Transform -- uid: 19511 - type: ComfyChair - components: - - pos: 16.5,-34.5 - parent: 0 - type: Transform -- uid: 19512 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 17.5,-36.5 - parent: 0 - type: Transform -- uid: 19513 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 16.5,-36.5 - parent: 0 - type: Transform -- uid: 19514 - type: KitchenMicrowave - components: - - pos: 14.5,-38.5 - parent: 0 - type: Transform -- uid: 19515 - type: DonkpocketBoxSpawner - components: - - pos: 15.5,-38.5 - parent: 0 - type: Transform -- uid: 19516 - type: VendingMachineRoboDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-34.5 - parent: 0 - type: Transform -- uid: 19517 - type: ComputerResearchAndDevelopment - components: - - rot: 3.141592653589793 rad - pos: 1.5,-36.5 - parent: 0 - type: Transform -- uid: 19518 - type: TableGlass - components: - - pos: 0.5,-23.5 - parent: 0 - type: Transform -- uid: 19519 - type: TableGlass - components: - - pos: 1.5,-23.5 - parent: 0 - type: Transform -- uid: 19520 - type: TableGlass - components: - - pos: 6.5,-23.5 - parent: 0 - type: Transform -- uid: 19521 - type: TableGlass - components: - - pos: 4.5,-26.5 - parent: 0 - type: Transform -- uid: 19522 - type: Chair - components: - - pos: 2.5,-23.5 - parent: 0 - type: Transform -- uid: 19523 - type: Chair - components: - - pos: 7.5,-23.5 - parent: 0 - type: Transform -- uid: 19524 - type: Chair - components: - - pos: 8.5,-23.5 - parent: 0 - type: Transform -- uid: 19525 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 0 - type: Transform -- uid: 19526 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-31.5 - parent: 0 - type: Transform -- uid: 19527 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-35.5 - parent: 0 - type: Transform -- uid: 19528 - type: TableGlass - components: - - pos: 8.5,-26.5 - parent: 0 - type: Transform -- uid: 19529 - type: PottedPlant10 - components: - - pos: 0.5,-26.5 - parent: 0 - type: Transform -- uid: 19530 - type: PottedPlant24 - components: - - pos: 12.5,-34.5 - parent: 0 - type: Transform -- uid: 19531 - type: WindowReinforcedDirectional - components: - - pos: 13.5,-44.5 - parent: 0 - type: Transform -- uid: 19532 - type: WindowReinforcedDirectional - components: - - pos: 12.5,-44.5 - parent: 0 - type: Transform -- uid: 19533 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 12.5,-43.5 - parent: 0 - type: Transform -- uid: 19534 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 13.5,-43.5 - parent: 0 - type: Transform -- uid: 19535 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-43.5 - parent: 0 - type: Transform -- uid: 19536 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-44.5 - parent: 0 - type: Transform -- uid: 19537 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-44.5 - parent: 0 - type: Transform -- uid: 19538 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-43.5 - parent: 0 - type: Transform -- uid: 19539 - type: Grille - components: - - pos: 24.5,60.5 - parent: 0 - type: Transform -- uid: 19540 - type: ResearchAndDevelopmentServer - components: - - pos: 29.5,-35.5 - parent: 0 - type: Transform -- uid: 19541 - type: SurveillanceCameraRouterScience - components: - - pos: 27.5,-35.5 - parent: 0 - type: Transform -- uid: 19542 - type: GasThermoMachineFreezer - components: - - pos: 29.5,-38.5 - parent: 0 - type: Transform -- uid: 19543 - type: ComputerResearchAndDevelopment - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-38.5 - parent: 0 - type: Transform -- uid: 19544 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-39.5 - parent: 0 - type: Transform -- uid: 19545 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-37.5 - parent: 0 - type: Transform -- uid: 19546 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-37.5 - parent: 0 - type: Transform -- uid: 19547 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-37.5 - parent: 0 - type: Transform -- uid: 19548 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-37.5 - parent: 0 - type: Transform -- uid: 19549 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-37.5 - parent: 0 - type: Transform -- uid: 19550 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-37.5 - parent: 0 - type: Transform -- uid: 19551 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-37.5 - parent: 0 - type: Transform -- uid: 19552 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-37.5 - parent: 0 - type: Transform -- uid: 19553 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-43.5 - parent: 0 - type: Transform -- uid: 19554 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-44.5 - parent: 0 - type: Transform -- uid: 19555 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-44.5 - parent: 0 - type: Transform -- uid: 19556 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-44.5 - parent: 0 - type: Transform -- uid: 19557 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-44.5 - parent: 0 - type: Transform -- uid: 19558 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-44.5 - parent: 0 - type: Transform -- uid: 19559 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-44.5 - parent: 0 - type: Transform -- uid: 19560 - type: ReinforcedWindow - components: - - pos: 40.5,-41.5 - parent: 0 - type: Transform -- uid: 19561 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-44.5 - parent: 0 - type: Transform -- uid: 19562 - type: ReinforcedWindow - components: - - pos: 40.5,-42.5 - parent: 0 - type: Transform -- uid: 19563 - type: ReinforcedWindow - components: - - pos: 40.5,-43.5 - parent: 0 - type: Transform -- uid: 19564 - type: ReinforcedWindow - components: - - pos: 39.5,-44.5 - parent: 0 - type: Transform -- uid: 19565 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-40.5 - parent: 0 - type: Transform -- uid: 19566 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-39.5 - parent: 0 - type: Transform -- uid: 19567 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-38.5 - parent: 0 - type: Transform -- uid: 19568 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-41.5 - parent: 0 - type: Transform -- uid: 19569 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-40.5 - parent: 0 - type: Transform -- uid: 19570 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-39.5 - parent: 0 - type: Transform -- uid: 19571 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-38.5 - parent: 0 - type: Transform -- uid: 19572 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-30.5 - parent: 0 - type: Transform -- uid: 19573 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-31.5 - parent: 0 - type: Transform -- uid: 19574 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-32.5 - parent: 0 - type: Transform -- uid: 19575 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-33.5 - parent: 0 - type: Transform -- uid: 19576 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-35.5 - parent: 0 - type: Transform -- uid: 19577 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-34.5 - parent: 0 - type: Transform -- uid: 19578 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-36.5 - parent: 0 - type: Transform -- uid: 19579 - type: WallReinforced - components: - - pos: 42.5,-37.5 - parent: 0 - type: Transform -- uid: 19580 - type: WallReinforced - components: - - pos: 41.5,-37.5 - parent: 0 - type: Transform -- uid: 19581 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-44.5 - parent: 0 - type: Transform -- uid: 19582 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-40.5 - parent: 0 - type: Transform -- uid: 19583 - type: WallSolid - components: - - pos: 36.5,-36.5 - parent: 0 - type: Transform -- uid: 19584 - type: WallSolid - components: - - pos: 36.5,-33.5 - parent: 0 - type: Transform -- uid: 19585 - type: WallSolid - components: - - pos: 40.5,-29.5 - parent: 0 - type: Transform -- uid: 19586 - type: WallSolidRust - components: - - pos: 38.5,-29.5 - parent: 0 - type: Transform -- uid: 19587 - type: WallSolidRust - components: - - pos: 39.5,-29.5 - parent: 0 - type: Transform -- uid: 19588 - type: WallSolid - components: - - pos: 37.5,-29.5 - parent: 0 - type: Transform -- uid: 19589 - type: WallSolid - components: - - pos: 36.5,-29.5 - parent: 0 - type: Transform -- uid: 19590 - type: WallSolid - components: - - pos: 36.5,-31.5 - parent: 0 - type: Transform -- uid: 19591 - type: WallSolid - components: - - pos: 36.5,-32.5 - parent: 0 - type: Transform -- uid: 19592 - type: WallSolid - components: - - pos: 36.5,-30.5 - parent: 0 - type: Transform -- uid: 19593 - type: WallSolid - components: - - pos: 34.5,-36.5 - parent: 0 - type: Transform -- uid: 19594 - type: WallSolidRust - components: - - pos: 34.5,-35.5 - parent: 0 - type: Transform -- uid: 19595 - type: WallSolid - components: - - pos: 34.5,-34.5 - parent: 0 - type: Transform -- uid: 19596 - type: WallSolid - components: - - pos: 34.5,-33.5 - parent: 0 - type: Transform -- uid: 19597 - type: WallSolid - components: - - pos: 33.5,-33.5 - parent: 0 - type: Transform -- uid: 19598 - type: WallSolid - components: - - pos: 33.5,-32.5 - parent: 0 - type: Transform -- uid: 19599 - type: WallSolid - components: - - pos: 35.5,-29.5 - parent: 0 - type: Transform -- uid: 19600 - type: WallSolid - components: - - pos: 34.5,-29.5 - parent: 0 - type: Transform -- uid: 19601 - type: WallSolid - components: - - pos: 33.5,-29.5 - parent: 0 - type: Transform -- uid: 19602 - type: WallSolid - components: - - pos: 33.5,-30.5 - parent: 0 - type: Transform -- uid: 19603 - type: WallSolid - components: - - pos: 27.5,-29.5 - parent: 0 - type: Transform -- uid: 19604 - type: WallSolid - components: - - pos: 28.5,-29.5 - parent: 0 - type: Transform -- uid: 19605 - type: WallSolid - components: - - pos: 28.5,-28.5 - parent: 0 - type: Transform -- uid: 19606 - type: WallSolid - components: - - pos: 28.5,-27.5 - parent: 0 - type: Transform -- uid: 19607 - type: WallReinforced - components: - - pos: 29.5,-32.5 - parent: 0 - type: Transform -- uid: 19608 - type: WallReinforced - components: - - pos: 29.5,-31.5 - parent: 0 - type: Transform -- uid: 19609 - type: WallReinforced - components: - - pos: 28.5,-31.5 - parent: 0 - type: Transform -- uid: 19610 - type: WallReinforced - components: - - pos: 27.5,-31.5 - parent: 0 - type: Transform -- uid: 19611 - type: WallSolid - components: - - pos: 32.5,-37.5 - parent: 0 - type: Transform -- uid: 19612 - type: AirlockScienceGlassLocked - components: - - pos: 30.5,-42.5 - parent: 0 - type: Transform -- uid: 19613 - type: AirlockScienceGlassLocked - components: - - pos: 33.5,-42.5 - parent: 0 - type: Transform -- uid: 19614 - type: AirlockMaintLocked - components: - - pos: 31.5,-44.5 - parent: 0 - type: Transform -- uid: 19615 - type: AirlockMaintLocked - components: - - pos: 31.5,-40.5 - parent: 0 - type: Transform -- uid: 19616 - type: WallReinforced - components: - - pos: 20.5,-48.5 - parent: 0 - type: Transform -- uid: 19617 - type: WallReinforced - components: - - pos: 20.5,-51.5 - parent: 0 - type: Transform -- uid: 19618 - type: WallReinforced - components: - - pos: 20.5,-47.5 - parent: 0 - type: Transform -- uid: 19619 - type: WallReinforced - components: - - pos: 21.5,-47.5 - parent: 0 - type: Transform -- uid: 19620 - type: WallReinforced - components: - - pos: 22.5,-47.5 - parent: 0 - type: Transform -- uid: 19621 - type: WallReinforced - components: - - pos: 23.5,-47.5 - parent: 0 - type: Transform -- uid: 19622 - type: WallReinforced - components: - - pos: 24.5,-47.5 - parent: 0 - type: Transform -- uid: 19623 - type: WallReinforced - components: - - pos: 25.5,-47.5 - parent: 0 - type: Transform -- uid: 19624 - type: WallReinforced - components: - - pos: 26.5,-47.5 - parent: 0 - type: Transform -- uid: 19625 - type: WallReinforced - components: - - pos: 27.5,-47.5 - parent: 0 - type: Transform -- uid: 19626 - type: WallReinforced - components: - - pos: 28.5,-47.5 - parent: 0 - type: Transform -- uid: 19627 - type: WallReinforced - components: - - pos: 28.5,-48.5 - parent: 0 - type: Transform -- uid: 19628 - type: WallReinforced - components: - - pos: 28.5,-50.5 - parent: 0 - type: Transform -- uid: 19629 - type: WallReinforced - components: - - pos: 28.5,-51.5 - parent: 0 - type: Transform -- uid: 19630 - type: WallReinforced - components: - - pos: 28.5,-52.5 - parent: 0 - type: Transform -- uid: 19631 - type: WallReinforced - components: - - pos: 20.5,-52.5 - parent: 0 - type: Transform -- uid: 19632 - type: WallReinforced - components: - - pos: 20.5,-53.5 - parent: 0 - type: Transform -- uid: 19633 - type: WallReinforced - components: - - pos: 21.5,-53.5 - parent: 0 - type: Transform -- uid: 19634 - type: WallReinforced - components: - - pos: 22.5,-53.5 - parent: 0 - type: Transform -- uid: 19635 - type: WallReinforced - components: - - pos: 24.5,-53.5 - parent: 0 - type: Transform -- uid: 19636 - type: WallReinforced - components: - - pos: 25.5,-53.5 - parent: 0 - type: Transform -- uid: 19637 - type: WallReinforced - components: - - pos: 26.5,-53.5 - parent: 0 - type: Transform -- uid: 19638 - type: WallReinforced - components: - - pos: 27.5,-53.5 - parent: 0 - type: Transform -- uid: 19639 - type: WallReinforced - components: - - pos: 28.5,-53.5 - parent: 0 - type: Transform -- uid: 19640 - type: SignConference - components: - - pos: -7.5,-3.5 - parent: 0 - type: Transform -- uid: 19641 - type: SignConference - components: - - pos: 2.5,-3.5 - parent: 0 - type: Transform -- uid: 19642 - type: ReinforcedWindow - components: - - pos: -8.5,-74.5 - parent: 0 - type: Transform -- uid: 19643 - type: ReinforcedWindow - components: - - pos: -8.5,-73.5 - parent: 0 - type: Transform -- uid: 19644 - type: ReinforcedWindow - components: - - pos: -8.5,-72.5 - parent: 0 - type: Transform -- uid: 19645 - type: ReinforcedWindow - components: - - pos: -7.5,-72.5 - parent: 0 - type: Transform -- uid: 19646 - type: ReinforcedWindow - components: - - pos: -6.5,-72.5 - parent: 0 - type: Transform -- uid: 19647 - type: ReinforcedWindow - components: - - pos: -5.5,-72.5 - parent: 0 - type: Transform -- uid: 19648 - type: ReinforcedWindow - components: - - pos: -4.5,-72.5 - parent: 0 - type: Transform -- uid: 19649 - type: ReinforcedWindow - components: - - pos: -4.5,-73.5 - parent: 0 - type: Transform -- uid: 19650 - type: ReinforcedWindow - components: - - pos: -4.5,-74.5 - parent: 0 - type: Transform -- uid: 19651 - type: ReinforcedWindow - components: - - pos: -2.5,-74.5 - parent: 0 - type: Transform -- uid: 19652 - type: ReinforcedWindow - components: - - pos: -2.5,-73.5 - parent: 0 - type: Transform -- uid: 19653 - type: ReinforcedWindow - components: - - pos: -2.5,-72.5 - parent: 0 - type: Transform -- uid: 19654 - type: ReinforcedWindow - components: - - pos: -1.5,-72.5 - parent: 0 - type: Transform -- uid: 19655 - type: ReinforcedWindow - components: - - pos: -10.5,-74.5 - parent: 0 - type: Transform -- uid: 19656 - type: ReinforcedWindow - components: - - pos: -10.5,-73.5 - parent: 0 - type: Transform -- uid: 19657 - type: ReinforcedWindow - components: - - pos: -10.5,-72.5 - parent: 0 - type: Transform -- uid: 19658 - type: WallReinforced - components: - - pos: -12.5,-74.5 - parent: 0 - type: Transform -- uid: 19659 - type: WallReinforced - components: - - pos: -12.5,-73.5 - parent: 0 - type: Transform -- uid: 19660 - type: WallReinforced - components: - - pos: -12.5,-72.5 - parent: 0 - type: Transform -- uid: 19661 - type: WallReinforced - components: - - pos: -13.5,-74.5 - parent: 0 - type: Transform -- uid: 19662 - type: WallReinforced - components: - - pos: -14.5,-74.5 - parent: 0 - type: Transform -- uid: 19663 - type: ReinforcedWindow - components: - - pos: -15.5,-74.5 - parent: 0 - type: Transform -- uid: 19664 - type: ReinforcedWindow - components: - - pos: -16.5,-74.5 - parent: 0 - type: Transform -- uid: 19665 - type: ReinforcedWindow - components: - - pos: -17.5,-74.5 - parent: 0 - type: Transform -- uid: 19666 - type: ReinforcedWindow - components: - - pos: -18.5,-74.5 - parent: 0 - type: Transform -- uid: 19667 - type: ReinforcedWindow - components: - - pos: -19.5,-74.5 - parent: 0 - type: Transform -- uid: 19668 - type: WallReinforced - components: - - pos: -20.5,-74.5 - parent: 0 - type: Transform -- uid: 19669 - type: WallReinforced - components: - - pos: -21.5,-74.5 - parent: 0 - type: Transform -- uid: 19670 - type: WallReinforced - components: - - pos: -22.5,-74.5 - parent: 0 - type: Transform -- uid: 19671 - type: WallReinforced - components: - - pos: -23.5,-74.5 - parent: 0 - type: Transform -- uid: 19672 - type: WallReinforced - components: - - pos: -25.5,-74.5 - parent: 0 - type: Transform -- uid: 19673 - type: WallReinforced - components: - - pos: -29.5,-74.5 - parent: 0 - type: Transform -- uid: 19674 - type: WallReinforced - components: - - pos: -30.5,-74.5 - parent: 0 - type: Transform -- uid: 19675 - type: WallReinforced - components: - - pos: -32.5,-74.5 - parent: 0 - type: Transform -- uid: 19676 - type: WallReinforced - components: - - pos: -32.5,-72.5 - parent: 0 - type: Transform -- uid: 19677 - type: WallReinforced - components: - - pos: -32.5,-68.5 - parent: 0 - type: Transform -- uid: 19678 - type: WallReinforced - components: - - pos: -31.5,-68.5 - parent: 0 - type: Transform -- uid: 19679 - type: WallReinforced - components: - - pos: -31.5,-67.5 - parent: 0 - type: Transform -- uid: 19680 - type: WallReinforced - components: - - pos: -31.5,-66.5 - parent: 0 - type: Transform -- uid: 19681 - type: ReinforcedWindow - components: - - pos: -24.5,-74.5 - parent: 0 - type: Transform -- uid: 19682 - type: ReinforcedWindow - components: - - pos: -26.5,-74.5 - parent: 0 - type: Transform -- uid: 19683 - type: ReinforcedWindow - components: - - pos: -27.5,-74.5 - parent: 0 - type: Transform -- uid: 19684 - type: ReinforcedWindow - components: - - pos: -28.5,-74.5 - parent: 0 - type: Transform -- uid: 19685 - type: ReinforcedWindow - components: - - pos: -31.5,-74.5 - parent: 0 - type: Transform -- uid: 19686 - type: ReinforcedWindow - components: - - pos: -32.5,-73.5 - parent: 0 - type: Transform -- uid: 19687 - type: ReinforcedWindow - components: - - pos: -32.5,-71.5 - parent: 0 - type: Transform -- uid: 19688 - type: ReinforcedWindow - components: - - pos: -32.5,-70.5 - parent: 0 - type: Transform -- uid: 19689 - type: ReinforcedWindow - components: - - pos: -32.5,-69.5 - parent: 0 - type: Transform -- uid: 19690 - type: WallReinforced - components: - - pos: -0.5,-74.5 - parent: 0 - type: Transform -- uid: 19691 - type: WallReinforced - components: - - pos: -0.5,-72.5 - parent: 0 - type: Transform -- uid: 19692 - type: WallReinforced - components: - - pos: -0.5,-71.5 - parent: 0 - type: Transform -- uid: 19693 - type: WallReinforced - components: - - pos: -0.5,-70.5 - parent: 0 - type: Transform -- uid: 19694 - type: ReinforcedWindow - components: - - pos: -0.5,-68.5 - parent: 0 - type: Transform -- uid: 19695 - type: ReinforcedWindow - components: - - pos: 0.5,-74.5 - parent: 0 - type: Transform -- uid: 19696 - type: ReinforcedWindow - components: - - pos: 1.5,-74.5 - parent: 0 - type: Transform -- uid: 19697 - type: ReinforcedWindow - components: - - pos: 2.5,-74.5 - parent: 0 - type: Transform -- uid: 19698 - type: WallReinforced - components: - - pos: 3.5,-74.5 - parent: 0 - type: Transform -- uid: 19699 - type: WallReinforced - components: - - pos: 3.5,-73.5 - parent: 0 - type: Transform -- uid: 19700 - type: WallReinforced - components: - - pos: 4.5,-73.5 - parent: 0 - type: Transform -- uid: 19701 - type: ReinforcedWindow - components: - - pos: 4.5,-70.5 - parent: 0 - type: Transform -- uid: 19702 - type: ReinforcedWindow - components: - - pos: 4.5,-71.5 - parent: 0 - type: Transform -- uid: 19703 - type: ReinforcedWindow - components: - - pos: 4.5,-72.5 - parent: 0 - type: Transform -- uid: 19704 - type: WallReinforced - components: - - pos: 4.5,-69.5 - parent: 0 - type: Transform -- uid: 19705 - type: WallReinforced - components: - - pos: 4.5,-68.5 - parent: 0 - type: Transform -- uid: 19706 - type: WallReinforced - components: - - pos: 4.5,-67.5 - parent: 0 - type: Transform -- uid: 19707 - type: WallReinforced - components: - - pos: 4.5,-66.5 - parent: 0 - type: Transform -- uid: 19708 - type: WallReinforced - components: - - pos: 3.5,-66.5 - parent: 0 - type: Transform -- uid: 19709 - type: WallReinforced - components: - - pos: 2.5,-66.5 - parent: 0 - type: Transform -- uid: 19710 - type: WallReinforced - components: - - pos: 1.5,-66.5 - parent: 0 - type: Transform -- uid: 19711 - type: WallReinforced - components: - - pos: 0.5,-66.5 - parent: 0 - type: Transform -- uid: 19712 - type: WallReinforced - components: - - pos: -0.5,-66.5 - parent: 0 - type: Transform -- uid: 19713 - type: WallReinforced - components: - - pos: 6.5,-67.5 - parent: 0 - type: Transform -- uid: 19714 - type: WallReinforced - components: - - pos: 6.5,-66.5 - parent: 0 - type: Transform -- uid: 19715 - type: WallReinforced - components: - - pos: 6.5,-65.5 - parent: 0 - type: Transform -- uid: 19716 - type: WallReinforced - components: - - pos: 7.5,-65.5 - parent: 0 - type: Transform -- uid: 19717 - type: WallReinforced - components: - - pos: 8.5,-65.5 - parent: 0 - type: Transform -- uid: 19718 - type: WallReinforced - components: - - pos: 8.5,-63.5 - parent: 0 - type: Transform -- uid: 19719 - type: WallReinforced - components: - - pos: 8.5,-64.5 - parent: 0 - type: Transform -- uid: 19720 - type: WallReinforced - components: - - pos: 8.5,-62.5 - parent: 0 - type: Transform -- uid: 19721 - type: ReinforcedWindow - components: - - pos: 9.5,-62.5 - parent: 0 - type: Transform -- uid: 19722 - type: ReinforcedWindow - components: - - pos: 10.5,-62.5 - parent: 0 - type: Transform -- uid: 19723 - type: WallReinforced - components: - - pos: 11.5,-62.5 - parent: 0 - type: Transform -- uid: 19724 - type: WallReinforced - components: - - pos: 12.5,-62.5 - parent: 0 - type: Transform -- uid: 19725 - type: WallReinforced - components: - - pos: 12.5,-61.5 - parent: 0 - type: Transform -- uid: 19726 - type: WallReinforced - components: - - pos: 12.5,-60.5 - parent: 0 - type: Transform -- uid: 19727 - type: WallReinforced - components: - - pos: 13.5,-60.5 - parent: 0 - type: Transform -- uid: 19728 - type: WallReinforced - components: - - pos: 14.5,-60.5 - parent: 0 - type: Transform -- uid: 19729 - type: ReinforcedWindow - components: - - pos: 15.5,-60.5 - parent: 0 - type: Transform -- uid: 19730 - type: WallReinforced - components: - - pos: 16.5,-60.5 - parent: 0 - type: Transform -- uid: 19731 - type: WallReinforced - components: - - pos: 16.5,-61.5 - parent: 0 - type: Transform -- uid: 19732 - type: WallReinforced - components: - - pos: 16.5,-62.5 - parent: 0 - type: Transform -- uid: 19733 - type: WallReinforced - components: - - pos: 17.5,-62.5 - parent: 0 - type: Transform -- uid: 19734 - type: WallReinforced - components: - - pos: 18.5,-62.5 - parent: 0 - type: Transform -- uid: 19735 - type: WallReinforced - components: - - pos: 19.5,-62.5 - parent: 0 - type: Transform -- uid: 19736 - type: WallReinforced - components: - - pos: 20.5,-62.5 - parent: 0 - type: Transform -- uid: 19737 - type: WallReinforced - components: - - pos: 20.5,-61.5 - parent: 0 - type: Transform -- uid: 19738 - type: WallReinforced - components: - - pos: 20.5,-60.5 - parent: 0 - type: Transform -- uid: 19739 - type: ReinforcedWindow - components: - - pos: 21.5,-60.5 - parent: 0 - type: Transform -- uid: 19740 - type: ReinforcedWindow - components: - - pos: 22.5,-60.5 - parent: 0 - type: Transform -- uid: 19741 - type: ReinforcedWindow - components: - - pos: 24.5,-60.5 - parent: 0 - type: Transform -- uid: 19742 - type: ReinforcedWindow - components: - - pos: 25.5,-60.5 - parent: 0 - type: Transform -- uid: 19743 - type: WallReinforced - components: - - pos: 23.5,-60.5 - parent: 0 - type: Transform -- uid: 19744 - type: WallReinforced - components: - - pos: 26.5,-60.5 - parent: 0 - type: Transform -- uid: 19745 - type: WallReinforced - components: - - pos: 26.5,-61.5 - parent: 0 - type: Transform -- uid: 19746 - type: WallReinforced - components: - - pos: 26.5,-62.5 - parent: 0 - type: Transform -- uid: 19747 - type: ReinforcedWindow - components: - - pos: 27.5,-61.5 - parent: 0 - type: Transform -- uid: 19748 - type: Grille - components: - - pos: 27.5,-61.5 - parent: 0 - type: Transform -- uid: 19749 - type: ReinforcedWindow - components: - - pos: 29.5,-61.5 - parent: 0 - type: Transform -- uid: 19750 - type: WallReinforced - components: - - pos: 30.5,-61.5 - parent: 0 - type: Transform -- uid: 19751 - type: WallReinforced - components: - - pos: 30.5,-60.5 - parent: 0 - type: Transform -- uid: 19752 - type: WallReinforced - components: - - pos: 30.5,-59.5 - parent: 0 - type: Transform -- uid: 19753 - type: WallReinforced - components: - - pos: 30.5,-58.5 - parent: 0 - type: Transform -- uid: 19754 - type: WallReinforced - components: - - pos: 31.5,-58.5 - parent: 0 - type: Transform -- uid: 19755 - type: WallReinforced - components: - - pos: 32.5,-58.5 - parent: 0 - type: Transform -- uid: 19756 - type: ReinforcedWindow - components: - - pos: 33.5,-58.5 - parent: 0 - type: Transform -- uid: 19757 - type: WallReinforced - components: - - pos: 34.5,-58.5 - parent: 0 - type: Transform -- uid: 19758 - type: WallReinforced - components: - - pos: 35.5,-58.5 - parent: 0 - type: Transform -- uid: 19759 - type: WallReinforced - components: - - pos: 36.5,-58.5 - parent: 0 - type: Transform -- uid: 19760 - type: WallReinforced - components: - - pos: 36.5,-59.5 - parent: 0 - type: Transform -- uid: 19761 - type: WallReinforced - components: - - pos: 36.5,-60.5 - parent: 0 - type: Transform -- uid: 19762 - type: WallReinforced - components: - - pos: 40.5,-60.5 - parent: 0 - type: Transform -- uid: 19763 - type: WallReinforced - components: - - pos: 40.5,-59.5 - parent: 0 - type: Transform -- uid: 19764 - type: WallReinforced - components: - - pos: 40.5,-58.5 - parent: 0 - type: Transform -- uid: 19765 - type: ReinforcedWindow - components: - - pos: 36.5,-61.5 - parent: 0 - type: Transform -- uid: 19766 - type: ReinforcedWindow - components: - - pos: 37.5,-61.5 - parent: 0 - type: Transform -- uid: 19767 - type: ReinforcedWindow - components: - - pos: 40.5,-61.5 - parent: 0 - type: Transform -- uid: 19768 - type: ReinforcedWindow - components: - - pos: 39.5,-61.5 - parent: 0 - type: Transform -- uid: 19769 - type: ReinforcedWindow - components: - - pos: 39.5,-64.5 - parent: 0 - type: Transform -- uid: 19770 - type: ReinforcedWindow - components: - - pos: 39.5,-63.5 - parent: 0 - type: Transform -- uid: 19771 - type: ReinforcedWindow - components: - - pos: 39.5,-62.5 - parent: 0 - type: Transform -- uid: 19772 - type: ReinforcedWindow - components: - - pos: 37.5,-64.5 - parent: 0 - type: Transform -- uid: 19773 - type: ReinforcedWindow - components: - - pos: 37.5,-63.5 - parent: 0 - type: Transform -- uid: 19774 - type: ReinforcedWindow - components: - - pos: 37.5,-62.5 - parent: 0 - type: Transform -- uid: 19775 - type: WallReinforced - components: - - pos: 40.5,-57.5 - parent: 0 - type: Transform -- uid: 19776 - type: WallReinforced - components: - - pos: 39.5,-57.5 - parent: 0 - type: Transform -- uid: 19777 - type: WallReinforced - components: - - pos: 36.5,-57.5 - parent: 0 - type: Transform -- uid: 19778 - type: WallReinforced - components: - - pos: 37.5,-57.5 - parent: 0 - type: Transform -- uid: 19779 - type: WallReinforced - components: - - pos: 38.5,-45.5 - parent: 0 - type: Transform -- uid: 19780 - type: WallReinforced - components: - - pos: 38.5,-46.5 - parent: 0 - type: Transform -- uid: 19781 - type: WallReinforced - components: - - pos: 38.5,-47.5 - parent: 0 - type: Transform -- uid: 19782 - type: WallReinforced - components: - - pos: 38.5,-48.5 - parent: 0 - type: Transform -- uid: 19783 - type: WallReinforced - components: - - pos: 39.5,-48.5 - parent: 0 - type: Transform -- uid: 19784 - type: WallReinforced - components: - - pos: 39.5,-49.5 - parent: 0 - type: Transform -- uid: 19785 - type: WallReinforced - components: - - pos: 39.5,-50.5 - parent: 0 - type: Transform -- uid: 19786 - type: WallReinforced - components: - - pos: 39.5,-51.5 - parent: 0 - type: Transform -- uid: 19787 - type: WallReinforced - components: - - pos: 39.5,-52.5 - parent: 0 - type: Transform -- uid: 19788 - type: WallReinforced - components: - - pos: 39.5,-53.5 - parent: 0 - type: Transform -- uid: 19789 - type: WallReinforced - components: - - pos: 40.5,-53.5 - parent: 0 - type: Transform -- uid: 19790 - type: WallReinforced - components: - - pos: 39.5,-55.5 - parent: 0 - type: Transform -- uid: 19791 - type: WallReinforced - components: - - pos: 39.5,-56.5 - parent: 0 - type: Transform -- uid: 19792 - type: Catwalk - components: - - pos: 37.5,-76.5 - parent: 0 - type: Transform -- uid: 19793 - type: Catwalk - components: - - pos: 36.5,-76.5 - parent: 0 - type: Transform -- uid: 19794 - type: Catwalk - components: - - pos: 35.5,-76.5 - parent: 0 - type: Transform -- uid: 19795 - type: Catwalk - components: - - pos: 34.5,-76.5 - parent: 0 - type: Transform -- uid: 19796 - type: Catwalk - components: - - pos: 39.5,-76.5 - parent: 0 - type: Transform -- uid: 19797 - type: Catwalk - components: - - pos: 40.5,-76.5 - parent: 0 - type: Transform -- uid: 19798 - type: Catwalk - components: - - pos: 41.5,-76.5 - parent: 0 - type: Transform -- uid: 19799 - type: Catwalk - components: - - pos: 42.5,-76.5 - parent: 0 - type: Transform -- uid: 19800 - type: Catwalk - components: - - pos: 42.5,-72.5 - parent: 0 - type: Transform -- uid: 19801 - type: Catwalk - components: - - pos: 41.5,-72.5 - parent: 0 - type: Transform -- uid: 19802 - type: Catwalk - components: - - pos: 40.5,-72.5 - parent: 0 - type: Transform -- uid: 19803 - type: Catwalk - components: - - pos: 39.5,-72.5 - parent: 0 - type: Transform -- uid: 19804 - type: Catwalk - components: - - pos: 37.5,-72.5 - parent: 0 - type: Transform -- uid: 19805 - type: Catwalk - components: - - pos: 36.5,-72.5 - parent: 0 - type: Transform -- uid: 19806 - type: Catwalk - components: - - pos: 35.5,-72.5 - parent: 0 - type: Transform -- uid: 19807 - type: Catwalk - components: - - pos: 34.5,-72.5 - parent: 0 - type: Transform -- uid: 19808 - type: Catwalk - components: - - pos: 34.5,-68.5 - parent: 0 - type: Transform -- uid: 19809 - type: Catwalk - components: - - pos: 35.5,-68.5 - parent: 0 - type: Transform -- uid: 19810 - type: Catwalk - components: - - pos: 36.5,-68.5 - parent: 0 - type: Transform -- uid: 19811 - type: Catwalk - components: - - pos: 37.5,-68.5 - parent: 0 - type: Transform -- uid: 19812 - type: Catwalk - components: - - pos: 39.5,-68.5 - parent: 0 - type: Transform -- uid: 19813 - type: Catwalk - components: - - pos: 40.5,-68.5 - parent: 0 - type: Transform -- uid: 19814 - type: Catwalk - components: - - pos: 41.5,-68.5 - parent: 0 - type: Transform -- uid: 19815 - type: Catwalk - components: - - pos: 42.5,-68.5 - parent: 0 - type: Transform -- uid: 19816 - type: Catwalk - components: - - pos: 44.5,-68.5 - parent: 0 - type: Transform -- uid: 19817 - type: Catwalk - components: - - pos: 32.5,-68.5 - parent: 0 - type: Transform -- uid: 19818 - type: Catwalk - components: - - pos: 31.5,-68.5 - parent: 0 - type: Transform -- uid: 19819 - type: Catwalk - components: - - pos: 32.5,-76.5 - parent: 0 - type: Transform -- uid: 19820 - type: Catwalk - components: - - pos: 31.5,-76.5 - parent: 0 - type: Transform -- uid: 19821 - type: Catwalk - components: - - pos: 23.5,-68.5 - parent: 0 - type: Transform -- uid: 19822 - type: Catwalk - components: - - pos: 22.5,-68.5 - parent: 0 - type: Transform -- uid: 19823 - type: Catwalk - components: - - pos: 21.5,-68.5 - parent: 0 - type: Transform -- uid: 19824 - type: Catwalk - components: - - pos: 19.5,-68.5 - parent: 0 - type: Transform -- uid: 19825 - type: Catwalk - components: - - pos: 18.5,-68.5 - parent: 0 - type: Transform -- uid: 19826 - type: Catwalk - components: - - pos: 17.5,-68.5 - parent: 0 - type: Transform -- uid: 19827 - type: Catwalk - components: - - pos: 5.5,-68.5 - parent: 0 - type: Transform -- uid: 19828 - type: Catwalk - components: - - pos: 6.5,-68.5 - parent: 0 - type: Transform -- uid: 19829 - type: Catwalk - components: - - pos: 7.5,-68.5 - parent: 0 - type: Transform -- uid: 19830 - type: Catwalk - components: - - pos: 9.5,-68.5 - parent: 0 - type: Transform -- uid: 19831 - type: Catwalk - components: - - pos: 10.5,-68.5 - parent: 0 - type: Transform -- uid: 19832 - type: Catwalk - components: - - pos: 11.5,-68.5 - parent: 0 - type: Transform -- uid: 19833 - type: Catwalk - components: - - pos: 13.5,-68.5 - parent: 0 - type: Transform -- uid: 19834 - type: Catwalk - components: - - pos: 14.5,-68.5 - parent: 0 - type: Transform -- uid: 19835 - type: Catwalk - components: - - pos: 15.5,-68.5 - parent: 0 - type: Transform -- uid: 19836 - type: Catwalk - components: - - pos: 8.5,-71.5 - parent: 0 - type: Transform -- uid: 19837 - type: Catwalk - components: - - pos: 12.5,-71.5 - parent: 0 - type: Transform -- uid: 19838 - type: Catwalk - components: - - pos: 16.5,-71.5 - parent: 0 - type: Transform -- uid: 19839 - type: Catwalk - components: - - pos: 20.5,-71.5 - parent: 0 - type: Transform -- uid: 19840 - type: Catwalk - components: - - pos: 25.5,-64.5 - parent: 0 - type: Transform -- uid: 19841 - type: Catwalk - components: - - pos: 29.5,-64.5 - parent: 0 - type: Transform -- uid: 19842 - type: Catwalk - components: - - pos: 29.5,-72.5 - parent: 0 - type: Transform -- uid: 19843 - type: Catwalk - components: - - pos: 25.5,-72.5 - parent: 0 - type: Transform -- uid: 19844 - type: Catwalk - components: - - pos: 25.5,-80.5 - parent: 0 - type: Transform -- uid: 19845 - type: Catwalk - components: - - pos: 29.5,-80.5 - parent: 0 - type: Transform -- uid: 19846 - type: Catwalk - components: - - pos: 29.5,-88.5 - parent: 0 - type: Transform -- uid: 19847 - type: Catwalk - components: - - pos: 25.5,-88.5 - parent: 0 - type: Transform -- uid: 19848 - type: WallSolid - components: - - pos: 46.5,-84.5 - parent: 0 - type: Transform -- uid: 19849 - type: Grille - components: - - pos: 45.5,-84.5 - parent: 0 - type: Transform -- uid: 19850 - type: Grille - components: - - pos: 44.5,-84.5 - parent: 0 - type: Transform -- uid: 19851 - type: Grille - components: - - pos: 43.5,-84.5 - parent: 0 - type: Transform -- uid: 19852 - type: Grille - components: - - pos: 42.5,-84.5 - parent: 0 - type: Transform -- uid: 19853 - type: Grille - components: - - pos: 41.5,-84.5 - parent: 0 - type: Transform -- uid: 19854 - type: Grille - components: - - pos: 40.5,-84.5 - parent: 0 - type: Transform -- uid: 19855 - type: Grille - components: - - pos: 39.5,-84.5 - parent: 0 - type: Transform -- uid: 19856 - type: Grille - components: - - pos: 38.5,-84.5 - parent: 0 - type: Transform -- uid: 19857 - type: Grille - components: - - pos: 37.5,-84.5 - parent: 0 - type: Transform -- uid: 19858 - type: Grille - components: - - pos: 36.5,-84.5 - parent: 0 - type: Transform -- uid: 19859 - type: Grille - components: - - pos: 35.5,-84.5 - parent: 0 - type: Transform -- uid: 19860 - type: Grille - components: - - pos: 34.5,-84.5 - parent: 0 - type: Transform -- uid: 19861 - type: Grille - components: - - pos: 33.5,-84.5 - parent: 0 - type: Transform -- uid: 19862 - type: Grille - components: - - pos: 46.5,-83.5 - parent: 0 - type: Transform -- uid: 19863 - type: Grille - components: - - pos: 46.5,-82.5 - parent: 0 - type: Transform -- uid: 19864 - type: Grille - components: - - pos: 46.5,-81.5 - parent: 0 - type: Transform -- uid: 19865 - type: Grille - components: - - pos: 46.5,-80.5 - parent: 0 - type: Transform -- uid: 19866 - type: Grille - components: - - pos: 46.5,-79.5 - parent: 0 - type: Transform -- uid: 19867 - type: Grille - components: - - pos: 46.5,-78.5 - parent: 0 - type: Transform -- uid: 19868 - type: Grille - components: - - pos: 46.5,-77.5 - parent: 0 - type: Transform -- uid: 19869 - type: Grille - components: - - pos: 46.5,-76.5 - parent: 0 - type: Transform -- uid: 19870 - type: Grille - components: - - pos: 46.5,-75.5 - parent: 0 - type: Transform -- uid: 19871 - type: Grille - components: - - pos: 46.5,-74.5 - parent: 0 - type: Transform -- uid: 19872 - type: Grille - components: - - pos: 46.5,-73.5 - parent: 0 - type: Transform -- uid: 19873 - type: Grille - components: - - pos: 46.5,-72.5 - parent: 0 - type: Transform -- uid: 19874 - type: Grille - components: - - pos: 46.5,-71.5 - parent: 0 - type: Transform -- uid: 19875 - type: Grille - components: - - pos: 46.5,-70.5 - parent: 0 - type: Transform -- uid: 19876 - type: Grille - components: - - pos: 46.5,-69.5 - parent: 0 - type: Transform -- uid: 19877 - type: Grille - components: - - pos: 46.5,-68.5 - parent: 0 - type: Transform -- uid: 19878 - type: Grille - components: - - pos: 46.5,-67.5 - parent: 0 - type: Transform -- uid: 19879 - type: Grille - components: - - pos: 46.5,-66.5 - parent: 0 - type: Transform -- uid: 19880 - type: Grille - components: - - pos: 46.5,-65.5 - parent: 0 - type: Transform -- uid: 19881 - type: Grille - components: - - pos: 46.5,-64.5 - parent: 0 - type: Transform -- uid: 19882 - type: Grille - components: - - pos: 46.5,-63.5 - parent: 0 - type: Transform -- uid: 19883 - type: Grille - components: - - pos: 46.5,-62.5 - parent: 0 - type: Transform -- uid: 19884 - type: Grille - components: - - pos: 46.5,-61.5 - parent: 0 - type: Transform -- uid: 19885 - type: Grille - components: - - pos: 46.5,-60.5 - parent: 0 - type: Transform -- uid: 19886 - type: Grille - components: - - pos: 45.5,-60.5 - parent: 0 - type: Transform -- uid: 19887 - type: CableHV - components: - - pos: 36.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19888 - type: CableHV - components: - - pos: 35.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19889 - type: CableHV - components: - - pos: 34.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19890 - type: CableHV - components: - - pos: 33.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19891 - type: CableHV - components: - - pos: 34.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19892 - type: CableHV - components: - - pos: 35.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19893 - type: CableHV - components: - - pos: 36.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19894 - type: CableHV - components: - - pos: 40.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19895 - type: CableHV - components: - - pos: 41.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19896 - type: CableHV - components: - - pos: 42.5,-69.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19897 - type: CableHV - components: - - pos: 43.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19898 - type: CableHV - components: - - pos: 42.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19899 - type: CableHV - components: - - pos: 41.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19900 - type: CableHV - components: - - pos: 40.5,-67.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19901 - type: CableHV - components: - - pos: 42.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19902 - type: CableHV - components: - - pos: 34.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19903 - type: CableHV - components: - - pos: 36.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19904 - type: CableHV - components: - - pos: 37.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19905 - type: CableHV - components: - - pos: 39.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19906 - type: CableHV - components: - - pos: 40.5,-68.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19907 - type: CableHV - components: - - pos: 40.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19908 - type: CableHV - components: - - pos: 41.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19909 - type: CableHV - components: - - pos: 42.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19910 - type: CableHV - components: - - pos: 42.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19911 - type: CableHV - components: - - pos: 43.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19912 - type: CableHV - components: - - pos: 42.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19913 - type: CableHV - components: - - pos: 41.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19914 - type: CableHV - components: - - pos: 40.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19915 - type: CableHV - components: - - pos: 40.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19916 - type: CableHV - components: - - pos: 39.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19917 - type: CableHV - components: - - pos: 37.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19918 - type: CableHV - components: - - pos: 36.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19919 - type: CableHV - components: - - pos: 36.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19920 - type: CableHV - components: - - pos: 35.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19921 - type: CableHV - components: - - pos: 34.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19922 - type: CableHV - components: - - pos: 34.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19923 - type: CableHV - components: - - pos: 33.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19924 - type: CableHV - components: - - pos: 34.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19925 - type: CableHV - components: - - pos: 35.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19926 - type: CableHV - components: - - pos: 36.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19927 - type: CableHV - components: - - pos: 37.5,-76.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19928 - type: CableHV - components: - - pos: 36.5,-76.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19929 - type: CableHV - components: - - pos: 36.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19930 - type: CableHV - components: - - pos: 35.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19931 - type: CableHV - components: - - pos: 34.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19932 - type: CableHV - components: - - pos: 34.5,-76.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19933 - type: CableHV - components: - - pos: 33.5,-76.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19934 - type: CableHV - components: - - pos: 34.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19935 - type: CableHV - components: - - pos: 35.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19936 - type: CableHV - components: - - pos: 36.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19937 - type: CableHV - components: - - pos: 39.5,-76.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19938 - type: CableHV - components: - - pos: 40.5,-76.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19939 - type: CableHV - components: - - pos: 40.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19940 - type: CableHV - components: - - pos: 41.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19941 - type: CableHV - components: - - pos: 42.5,-75.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19942 - type: CableHV - components: - - pos: 42.5,-76.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19943 - type: CableHV - components: - - pos: 43.5,-76.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19944 - type: CableHV - components: - - pos: 42.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19945 - type: CableHV - components: - - pos: 40.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19946 - type: CableHV - components: - - pos: 41.5,-77.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19947 - type: CableHV - components: - - pos: 38.5,-79.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19948 - type: CableHV - components: - - pos: 38.5,-78.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19949 - type: CableHV - components: - - pos: 38.5,-65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19950 - type: CableHV - components: - - pos: 38.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19951 - type: CableHV - components: - - pos: 38.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19952 - type: CableHV - components: - - pos: 38.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19953 - type: CableHV - components: - - pos: 38.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19954 - type: CableHV - components: - - pos: 38.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19955 - type: CableHV - components: - - pos: 39.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19956 - type: CableHV - components: - - pos: 39.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19957 - type: CableHV - components: - - pos: 39.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19958 - type: CableHV - components: - - pos: 38.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19959 - type: CableHV - components: - - pos: 38.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19960 - type: CableHV - components: - - pos: 38.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19961 - type: SolarPanel - components: - - pos: 36.5,-69.5 - parent: 0 - type: Transform -- uid: 19962 - type: SolarPanel - components: - - pos: 35.5,-69.5 - parent: 0 - type: Transform -- uid: 19963 - type: SolarPanel - components: - - pos: 34.5,-69.5 - parent: 0 - type: Transform -- uid: 19964 - type: SolarPanel - components: - - pos: 33.5,-68.5 - parent: 0 - type: Transform -- uid: 19965 - type: SolarPanel - components: - - pos: 34.5,-67.5 - parent: 0 - type: Transform -- uid: 19966 - type: SolarPanel - components: - - pos: 35.5,-67.5 - parent: 0 - type: Transform -- uid: 19967 - type: SolarPanel - components: - - pos: 36.5,-67.5 - parent: 0 - type: Transform -- uid: 19968 - type: SolarPanel - components: - - pos: 40.5,-67.5 - parent: 0 - type: Transform -- uid: 19969 - type: SolarPanel - components: - - pos: 41.5,-67.5 - parent: 0 - type: Transform -- uid: 19970 - type: SolarPanel - components: - - pos: 42.5,-67.5 - parent: 0 - type: Transform -- uid: 19971 - type: SolarPanel - components: - - pos: 43.5,-68.5 - parent: 0 - type: Transform -- uid: 19972 - type: SolarPanel - components: - - pos: 42.5,-69.5 - parent: 0 - type: Transform -- uid: 19973 - type: SolarPanel - components: - - pos: 41.5,-69.5 - parent: 0 - type: Transform -- uid: 19974 - type: SolarPanel - components: - - pos: 40.5,-69.5 - parent: 0 - type: Transform -- uid: 19975 - type: SolarPanel - components: - - pos: 40.5,-71.5 - parent: 0 - type: Transform -- uid: 19976 - type: SolarPanel - components: - - pos: 41.5,-71.5 - parent: 0 - type: Transform -- uid: 19977 - type: SolarPanel - components: - - pos: 42.5,-71.5 - parent: 0 - type: Transform -- uid: 19978 - type: SolarPanel - components: - - pos: 43.5,-72.5 - parent: 0 - type: Transform -- uid: 19979 - type: SolarPanel - components: - - pos: 42.5,-73.5 - parent: 0 - type: Transform -- uid: 19980 - type: SolarPanel - components: - - pos: 41.5,-73.5 - parent: 0 - type: Transform -- uid: 19981 - type: SolarPanel - components: - - pos: 40.5,-73.5 - parent: 0 - type: Transform -- uid: 19982 - type: SolarPanel - components: - - pos: 36.5,-73.5 - parent: 0 - type: Transform -- uid: 19983 - type: SolarPanel - components: - - pos: 35.5,-73.5 - parent: 0 - type: Transform -- uid: 19984 - type: SolarPanel - components: - - pos: 34.5,-73.5 - parent: 0 - type: Transform -- uid: 19985 - type: SolarPanel - components: - - pos: 33.5,-72.5 - parent: 0 - type: Transform -- uid: 19986 - type: SolarPanel - components: - - pos: 34.5,-71.5 - parent: 0 - type: Transform -- uid: 19987 - type: SolarPanel - components: - - pos: 36.5,-71.5 - parent: 0 - type: Transform -- uid: 19988 - type: SolarPanel - components: - - pos: 35.5,-71.5 - parent: 0 - type: Transform -- uid: 19989 - type: SolarPanel - components: - - pos: 36.5,-77.5 - parent: 0 - type: Transform -- uid: 19990 - type: SolarPanel - components: - - pos: 35.5,-77.5 - parent: 0 - type: Transform -- uid: 19991 - type: SolarPanel - components: - - pos: 34.5,-77.5 - parent: 0 - type: Transform -- uid: 19992 - type: SolarPanel - components: - - pos: 33.5,-76.5 - parent: 0 - type: Transform -- uid: 19993 - type: SolarPanel - components: - - pos: 34.5,-75.5 - parent: 0 - type: Transform -- uid: 19994 - type: SolarPanel - components: - - pos: 35.5,-75.5 - parent: 0 - type: Transform -- uid: 19995 - type: SolarPanel - components: - - pos: 36.5,-75.5 - parent: 0 - type: Transform -- uid: 19996 - type: SolarPanel - components: - - pos: 41.5,-77.5 - parent: 0 - type: Transform -- uid: 19997 - type: SolarPanel - components: - - pos: 40.5,-77.5 - parent: 0 - type: Transform -- uid: 19998 - type: SolarPanel - components: - - pos: 42.5,-77.5 - parent: 0 - type: Transform -- uid: 19999 - type: SolarPanel - components: - - pos: 43.5,-76.5 - parent: 0 - type: Transform -- uid: 20000 - type: SolarPanel - components: - - pos: 42.5,-75.5 - parent: 0 - type: Transform -- uid: 20001 - type: SolarPanel - components: - - pos: 41.5,-75.5 - parent: 0 - type: Transform -- uid: 20002 - type: SolarPanel - components: - - pos: 40.5,-75.5 - parent: 0 - type: Transform -- uid: 20003 - type: SolarTracker - components: - - pos: 38.5,-79.5 - parent: 0 - type: Transform -- uid: 20004 - type: Grille - components: - - pos: 39.5,-64.5 - parent: 0 - type: Transform -- uid: 20005 - type: Grille - components: - - pos: 39.5,-63.5 - parent: 0 - type: Transform -- uid: 20006 - type: Grille - components: - - pos: 39.5,-62.5 - parent: 0 - type: Transform -- uid: 20007 - type: Grille - components: - - pos: 39.5,-61.5 - parent: 0 - type: Transform -- uid: 20008 - type: Grille - components: - - pos: 40.5,-61.5 - parent: 0 - type: Transform -- uid: 20009 - type: Grille - components: - - pos: 37.5,-63.5 - parent: 0 - type: Transform -- uid: 20010 - type: Grille - components: - - pos: 37.5,-64.5 - parent: 0 - type: Transform -- uid: 20011 - type: Grille - components: - - pos: 37.5,-62.5 - parent: 0 - type: Transform -- uid: 20012 - type: Grille - components: - - pos: 37.5,-61.5 - parent: 0 - type: Transform -- uid: 20013 - type: Grille - components: - - pos: 36.5,-61.5 - parent: 0 - type: Transform -- uid: 20014 - type: Grille - components: - - pos: 33.5,-58.5 - parent: 0 - type: Transform -- uid: 20015 - type: Grille - components: - - pos: 29.5,-61.5 - parent: 0 - type: Transform -- uid: 20016 - type: Grille - components: - - pos: 25.5,-60.5 - parent: 0 - type: Transform -- uid: 20017 - type: Grille - components: - - pos: 24.5,-60.5 - parent: 0 - type: Transform -- uid: 20018 - type: Grille - components: - - pos: 22.5,-60.5 - parent: 0 - type: Transform -- uid: 20019 - type: Grille - components: - - pos: 21.5,-60.5 - parent: 0 - type: Transform -- uid: 20020 - type: Grille - components: - - pos: 15.5,-60.5 - parent: 0 - type: Transform -- uid: 20021 - type: Grille - components: - - pos: 10.5,-62.5 - parent: 0 - type: Transform -- uid: 20022 - type: Grille - components: - - pos: 9.5,-62.5 - parent: 0 - type: Transform -- uid: 20023 - type: WallSolid - components: - - pos: 4.5,-65.5 - parent: 0 - type: Transform -- uid: 20024 - type: WallSolid - components: - - pos: 4.5,-64.5 - parent: 0 - type: Transform -- uid: 20025 - type: WallSolidRust - components: - - pos: 4.5,-63.5 - parent: 0 - type: Transform -- uid: 20026 - type: AirlockExternalLocked - components: - - pos: 5.5,-67.5 - parent: 0 - type: Transform -- uid: 20027 - type: AirlockExternalGlassLocked - components: - - pos: 5.5,-65.5 - parent: 0 - type: Transform -- uid: 20028 - type: ClosetEmergencyFilledRandom - components: - - pos: 27.5,-58.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20029 - type: AirlockExternalGlassLocked - components: - - pos: 38.5,-64.5 - parent: 0 - type: Transform -- uid: 20030 - type: AirlockExternalGlassLocked - components: - - pos: 38.5,-61.5 - parent: 0 - type: Transform -- uid: 20031 - type: SMESBasic - components: - - name: South East Solars SMES - type: MetaData - - pos: 39.5,-60.5 - parent: 0 - type: Transform -- uid: 20032 - type: SubstationBasic - components: - - name: South East Solars Substation - type: MetaData - - pos: 39.5,-58.5 - parent: 0 - type: Transform -- uid: 20033 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-60.5 - parent: 0 - type: Transform -- uid: 20034 - type: WallReinforced - components: - - pos: 41.5,-53.5 - parent: 0 - type: Transform -- uid: 20035 - type: WallReinforced - components: - - pos: 41.5,-55.5 - parent: 0 - type: Transform -- uid: 20036 - type: WallReinforced - components: - - pos: 40.5,-55.5 - parent: 0 - type: Transform -- uid: 20037 - type: AirlockExternalLocked - components: - - pos: 41.5,-54.5 - parent: 0 - type: Transform -- uid: 20038 - type: AirlockExternalGlassLocked - components: - - pos: 39.5,-54.5 - parent: 0 - type: Transform -- uid: 20039 - type: Catwalk - components: - - pos: 42.5,-55.5 - parent: 0 - type: Transform -- uid: 20040 - type: Catwalk - components: - - pos: 42.5,-54.5 - parent: 0 - type: Transform -- uid: 20041 - type: Catwalk - components: - - pos: 42.5,-53.5 - parent: 0 - type: Transform -- uid: 20042 - type: WallReinforced - components: - - pos: 8.5,-61.5 - parent: 0 - type: Transform -- uid: 20043 - type: WallReinforced - components: - - pos: 8.5,-60.5 - parent: 0 - type: Transform -- uid: 20044 - type: WallReinforced - components: - - pos: 12.5,-59.5 - parent: 0 - type: Transform -- uid: 20045 - type: WallReinforced - components: - - pos: 11.5,-59.5 - parent: 0 - type: Transform -- uid: 20046 - type: WallReinforced - components: - - pos: 8.5,-59.5 - parent: 0 - type: Transform -- uid: 20047 - type: WallReinforced - components: - - pos: 9.5,-59.5 - parent: 0 - type: Transform -- uid: 20048 - type: AirlockEngineeringLocked - components: - - pos: 10.5,-59.5 - parent: 0 - type: Transform -- uid: 20049 - type: SubstationBasic - components: - - name: South Sci Substation - type: MetaData - - pos: 11.5,-61.5 - parent: 0 - type: Transform -- uid: 20050 - type: CableHV - components: - - pos: 11.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20051 - type: CableHV - components: - - pos: 10.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20052 - type: CableHV - components: - - pos: 10.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20053 - type: CableHV - components: - - pos: 10.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20054 - type: CableHV - components: - - pos: 10.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20055 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - pos: -1.5,-74.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 20056 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - pos: -3.5,-74.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 20057 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - pos: -9.5,-74.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 20058 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - pos: -11.5,-74.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 20059 - type: AirlockExternalGlass - components: - - pos: -11.5,-72.5 - parent: 0 - type: Transform -- uid: 20060 - type: AirlockExternalGlass - components: - - pos: -9.5,-72.5 - parent: 0 - type: Transform -- uid: 20061 - type: AirlockExternalGlass - components: - - pos: -3.5,-72.5 - parent: 0 - type: Transform -- uid: 20062 - type: AirlockExternalGlass - components: - - pos: -0.5,-73.5 - parent: 0 - type: Transform -- uid: 20063 - type: AtmosDeviceFanTiny - components: - - pos: -11.5,-74.5 - parent: 0 - type: Transform -- uid: 20064 - type: AtmosDeviceFanTiny - components: - - pos: -9.5,-74.5 - parent: 0 - type: Transform -- uid: 20065 - type: AtmosDeviceFanTiny - components: - - pos: -3.5,-74.5 - parent: 0 - type: Transform -- uid: 20066 - type: AtmosDeviceFanTiny - components: - - pos: -1.5,-74.5 - parent: 0 - type: Transform -- uid: 20067 - type: Grille - components: - - pos: -15.5,-74.5 - parent: 0 - type: Transform -- uid: 20068 - type: Grille - components: - - pos: -16.5,-74.5 - parent: 0 - type: Transform -- uid: 20069 - type: Grille - components: - - pos: -17.5,-74.5 - parent: 0 - type: Transform -- uid: 20070 - type: Grille - components: - - pos: -18.5,-74.5 - parent: 0 - type: Transform -- uid: 20071 - type: Grille - components: - - pos: -19.5,-74.5 - parent: 0 - type: Transform -- uid: 20072 - type: Grille - components: - - pos: -24.5,-74.5 - parent: 0 - type: Transform -- uid: 20073 - type: Grille - components: - - pos: -26.5,-74.5 - parent: 0 - type: Transform -- uid: 20074 - type: Grille - components: - - pos: -27.5,-74.5 - parent: 0 - type: Transform -- uid: 20075 - type: Grille - components: - - pos: -28.5,-74.5 - parent: 0 - type: Transform -- uid: 20076 - type: Grille - components: - - pos: -31.5,-74.5 - parent: 0 - type: Transform -- uid: 20077 - type: Grille - components: - - pos: -32.5,-73.5 - parent: 0 - type: Transform -- uid: 20078 - type: Grille - components: - - pos: -32.5,-71.5 - parent: 0 - type: Transform -- uid: 20079 - type: Grille - components: - - pos: -32.5,-70.5 - parent: 0 - type: Transform -- uid: 20080 - type: Grille - components: - - pos: -32.5,-69.5 - parent: 0 - type: Transform -- uid: 20081 - type: Grille - components: - - pos: -10.5,-74.5 - parent: 0 - type: Transform -- uid: 20082 - type: Grille - components: - - pos: -10.5,-73.5 - parent: 0 - type: Transform -- uid: 20083 - type: Grille - components: - - pos: -10.5,-72.5 - parent: 0 - type: Transform -- uid: 20084 - type: Grille - components: - - pos: -8.5,-74.5 - parent: 0 - type: Transform -- uid: 20085 - type: Grille - components: - - pos: -8.5,-73.5 - parent: 0 - type: Transform -- uid: 20086 - type: Grille - components: - - pos: -8.5,-72.5 - parent: 0 - type: Transform -- uid: 20087 - type: Grille - components: - - pos: -7.5,-72.5 - parent: 0 - type: Transform -- uid: 20088 - type: Grille - components: - - pos: -6.5,-72.5 - parent: 0 - type: Transform -- uid: 20089 - type: Grille - components: - - pos: -5.5,-72.5 - parent: 0 - type: Transform -- uid: 20090 - type: Grille - components: - - pos: -4.5,-74.5 - parent: 0 - type: Transform -- uid: 20091 - type: Grille - components: - - pos: -4.5,-73.5 - parent: 0 - type: Transform -- uid: 20092 - type: Grille - components: - - pos: -4.5,-72.5 - parent: 0 - type: Transform -- uid: 20093 - type: Grille - components: - - pos: -2.5,-74.5 - parent: 0 - type: Transform -- uid: 20094 - type: Grille - components: - - pos: -2.5,-73.5 - parent: 0 - type: Transform -- uid: 20095 - type: Grille - components: - - pos: -2.5,-72.5 - parent: 0 - type: Transform -- uid: 20096 - type: Grille - components: - - pos: -1.5,-72.5 - parent: 0 - type: Transform -- uid: 20097 - type: Grille - components: - - pos: 0.5,-74.5 - parent: 0 - type: Transform -- uid: 20098 - type: Grille - components: - - pos: 1.5,-74.5 - parent: 0 - type: Transform -- uid: 20099 - type: Grille - components: - - pos: 2.5,-74.5 - parent: 0 - type: Transform -- uid: 20100 - type: Grille - components: - - pos: 4.5,-72.5 - parent: 0 - type: Transform -- uid: 20101 - type: Grille - components: - - pos: 4.5,-71.5 - parent: 0 - type: Transform -- uid: 20102 - type: Grille - components: - - pos: 4.5,-70.5 - parent: 0 - type: Transform -- uid: 20103 - type: Grille - components: - - pos: -0.5,-68.5 - parent: 0 - type: Transform -- uid: 20104 - type: WallSolid - components: - - pos: -0.5,-65.5 - parent: 0 - type: Transform -- uid: 20105 - type: WallSolid - components: - - pos: -0.5,-64.5 - parent: 0 - type: Transform -- uid: 20106 - type: WallSolid - components: - - pos: -0.5,-63.5 - parent: 0 - type: Transform -- uid: 20107 - type: WallSolid - components: - - pos: -12.5,-63.5 - parent: 0 - type: Transform -- uid: 20108 - type: WallSolid - components: - - pos: -13.5,-63.5 - parent: 0 - type: Transform -- uid: 20109 - type: WallSolid - components: - - pos: -13.5,-64.5 - parent: 0 - type: Transform -- uid: 20110 - type: WallSolid - components: - - pos: -13.5,-67.5 - parent: 0 - type: Transform -- uid: 20111 - type: WallSolid - components: - - pos: -13.5,-68.5 - parent: 0 - type: Transform -- uid: 20112 - type: WallSolid - components: - - pos: -12.5,-68.5 - parent: 0 - type: Transform -- uid: 20113 - type: WallSolid - components: - - pos: -12.5,-71.5 - parent: 0 - type: Transform -- uid: 20114 - type: WallSolid - components: - - pos: -12.5,-70.5 - parent: 0 - type: Transform -- uid: 20115 - type: WallSolid - components: - - pos: -12.5,-69.5 - parent: 0 - type: Transform -- uid: 20116 - type: WallSolid - components: - - pos: -23.5,-73.5 - parent: 0 - type: Transform -- uid: 20117 - type: WallSolid - components: - - pos: -23.5,-72.5 - parent: 0 - type: Transform -- uid: 20118 - type: WallSolid - components: - - pos: -22.5,-72.5 - parent: 0 - type: Transform -- uid: 20119 - type: WallSolid - components: - - pos: -22.5,-71.5 - parent: 0 - type: Transform -- uid: 20120 - type: WallSolid - components: - - pos: -22.5,-69.5 - parent: 0 - type: Transform -- uid: 20121 - type: WallSolid - components: - - pos: -22.5,-68.5 - parent: 0 - type: Transform -- uid: 20122 - type: WallSolid - components: - - pos: -23.5,-68.5 - parent: 0 - type: Transform -- uid: 20123 - type: WallSolid - components: - - pos: -21.5,-68.5 - parent: 0 - type: Transform -- uid: 20124 - type: WallSolid - components: - - pos: -21.5,-67.5 - parent: 0 - type: Transform -- uid: 20125 - type: WallSolid - components: - - pos: -21.5,-66.5 - parent: 0 - type: Transform -- uid: 20126 - type: WallSolid - components: - - pos: -23.5,-66.5 - parent: 0 - type: Transform -- uid: 20127 - type: WallSolid - components: - - pos: -23.5,-65.5 - parent: 0 - type: Transform -- uid: 20128 - type: WallSolid - components: - - pos: -23.5,-64.5 - parent: 0 - type: Transform -- uid: 20129 - type: WallSolid - components: - - pos: -22.5,-64.5 - parent: 0 - type: Transform -- uid: 20130 - type: WallSolid - components: - - pos: -21.5,-64.5 - parent: 0 - type: Transform -- uid: 20131 - type: WallSolid - components: - - pos: -21.5,-63.5 - parent: 0 - type: Transform -- uid: 20132 - type: WallSolid - components: - - pos: -21.5,-62.5 - parent: 0 - type: Transform -- uid: 20133 - type: WallSolid - components: - - pos: -22.5,-62.5 - parent: 0 - type: Transform -- uid: 20134 - type: WallSolid - components: - - pos: -23.5,-62.5 - parent: 0 - type: Transform -- uid: 20135 - type: WallSolid - components: - - pos: -20.5,-63.5 - parent: 0 - type: Transform -- uid: 20136 - type: WallSolid - components: - - pos: -19.5,-63.5 - parent: 0 - type: Transform -- uid: 20137 - type: WallSolid - components: - - pos: -18.5,-63.5 - parent: 0 - type: Transform -- uid: 20138 - type: WallSolid - components: - - pos: -14.5,-63.5 - parent: 0 - type: Transform -- uid: 20139 - type: WallSolid - components: - - pos: -15.5,-63.5 - parent: 0 - type: Transform -- uid: 20140 - type: WallSolid - components: - - pos: -16.5,-63.5 - parent: 0 - type: Transform -- uid: 20141 - type: WallSolid - components: - - pos: -31.5,-72.5 - parent: 0 - type: Transform -- uid: 20142 - type: WallSolid - components: - - pos: -30.5,-72.5 - parent: 0 - type: Transform -- uid: 20143 - type: WallSolid - components: - - pos: -30.5,-68.5 - parent: 0 - type: Transform -- uid: 20144 - type: WallSolid - components: - - pos: -29.5,-68.5 - parent: 0 - type: Transform -- uid: 20145 - type: WallSolid - components: - - pos: -29.5,-69.5 - parent: 0 - type: Transform -- uid: 20146 - type: WallSolid - components: - - pos: -28.5,-68.5 - parent: 0 - type: Transform -- uid: 20147 - type: WallSolid - components: - - pos: -27.5,-68.5 - parent: 0 - type: Transform -- uid: 20148 - type: WallSolid - components: - - pos: -26.5,-68.5 - parent: 0 - type: Transform -- uid: 20149 - type: WallSolid - components: - - pos: -25.5,-68.5 - parent: 0 - type: Transform -- uid: 20150 - type: WallSolid - components: - - pos: -25.5,-69.5 - parent: 0 - type: Transform -- uid: 20151 - type: WallSolid - components: - - pos: -28.5,-67.5 - parent: 0 - type: Transform -- uid: 20152 - type: WallSolid - components: - - pos: -28.5,-65.5 - parent: 0 - type: Transform -- uid: 20153 - type: WallSolid - components: - - pos: -28.5,-64.5 - parent: 0 - type: Transform -- uid: 20154 - type: WallSolid - components: - - pos: -28.5,-63.5 - parent: 0 - type: Transform -- uid: 20155 - type: WallSolid - components: - - pos: -28.5,-62.5 - parent: 0 - type: Transform -- uid: 20156 - type: WallSolid - components: - - pos: -27.5,-62.5 - parent: 0 - type: Transform -- uid: 20157 - type: WallSolid - components: - - pos: -26.5,-62.5 - parent: 0 - type: Transform -- uid: 20158 - type: WallSolid - components: - - pos: -24.5,-62.5 - parent: 0 - type: Transform -- uid: 20159 - type: AirlockSecurityGlassLocked - components: - - pos: -0.5,-69.5 - parent: 0 - type: Transform -- uid: 20160 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-67.5 - parent: 0 - type: Transform -- uid: 20161 - type: TableReinforced - components: - - pos: -0.5,-67.5 - parent: 0 - type: Transform -- uid: 20162 - type: AirlockMaintLocked - components: - - pos: -17.5,-63.5 - parent: 0 - type: Transform -- uid: 20163 - type: AirlockMaintLocked - components: - - pos: -12.5,-62.5 - parent: 0 - type: Transform -- uid: 20164 - type: AirlockMaintLocked - components: - - pos: -4.5,-58.5 - parent: 0 - type: Transform -- uid: 20165 - type: AirlockMaintLocked - components: - - pos: -0.5,-62.5 - parent: 0 - type: Transform -- uid: 20166 - type: AirlockGlass - components: - - pos: -1.5,-60.5 - parent: 0 - type: Transform -- uid: 20167 - type: AirlockGlass - components: - - pos: -2.5,-60.5 - parent: 0 - type: Transform -- uid: 20168 - type: AirlockGlass - components: - - pos: -3.5,-60.5 - parent: 0 - type: Transform -- uid: 20169 - type: SignDirectionalEvac - components: - - pos: -4.5,-59.5 - parent: 0 - type: Transform -- uid: 20170 - type: SignDirectionalEvac - components: - - pos: -0.5,-59.5 - parent: 0 - type: Transform -- uid: 20171 - type: SignDirectionalChapel - components: - - pos: -4.5048943,-59.2832 - parent: 0 - type: Transform -- uid: 20172 - type: SignDirectionalChapel - components: - - pos: -0.504894,-22.303492 - parent: 0 - type: Transform -- uid: 20173 - type: SignDirectionalHydro - components: - - rot: 1.5707963267948966 rad - pos: -0.504894,-22.709742 - parent: 0 - type: Transform -- uid: 20174 - type: SignDirectionalSupply - components: - - rot: -1.5707963267948966 rad - pos: -4.5005393,-22.287867 - parent: 0 - type: Transform -- uid: 20175 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: -4.5005393,-22.725367 - parent: 0 - type: Transform -- uid: 20176 - type: SpawnMobMedibot - components: - - pos: -25.5,-31.5 - parent: 0 - type: Transform -- uid: 20177 - type: SignRobo - components: - - pos: -0.5,-33.5 - parent: 0 - type: Transform -- uid: 20178 - type: SubstationBasic - components: - - name: East Sci Substation - type: MetaData - - pos: 27.5,-32.5 - parent: 0 - type: Transform -- uid: 20179 - type: AirlockEngineeringLocked - components: - - pos: 29.5,-33.5 - parent: 0 - type: Transform -- uid: 20180 - type: SignElectricalMed - components: - - pos: 29.5,-32.5 - parent: 0 - type: Transform -- uid: 20181 - type: SignElectricalMed - components: - - pos: 9.5,-59.5 - parent: 0 - type: Transform -- uid: 20182 - type: SignElectricalMed - components: - - pos: 39.5,-21.5 - parent: 0 - type: Transform -- uid: 20183 - type: SignElectricalMed - components: - - pos: 37.5,-57.5 - parent: 0 - type: Transform -- uid: 20184 - type: SignElectricalMed - components: - - pos: -33.5,41.5 - parent: 0 - type: Transform -- uid: 20185 - type: SignElectricalMed - components: - - pos: -38.5,-61.5 - parent: 0 - type: Transform -- uid: 20186 - type: CableHV - components: - - pos: 27.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20187 - type: CableHV - components: - - pos: 27.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20188 - type: CableHV - components: - - pos: 28.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20189 - type: CableHV - components: - - pos: 30.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20190 - type: APCBasic - components: - - pos: 13.5,-27.5 - parent: 0 - type: Transform -- uid: 20191 - type: CableHV - components: - - pos: 29.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20192 - type: APCBasic - components: - - pos: 5.5,-37.5 - parent: 0 - type: Transform -- uid: 20193 - type: APCBasic - components: - - pos: 13.5,-40.5 - parent: 0 - type: Transform -- uid: 20194 - type: APCBasic - components: - - pos: 8.5,-47.5 - parent: 0 - type: Transform -- uid: 20195 - type: APCBasic - components: - - pos: 32.5,-40.5 - parent: 0 - type: Transform -- uid: 20196 - type: CableMV - components: - - pos: 11.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20197 - type: CableMV - components: - - pos: 10.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20198 - type: CableMV - components: - - pos: 10.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20199 - type: CableMV - components: - - pos: 10.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20200 - type: CableMV - components: - - pos: 10.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20201 - type: CableMV - components: - - pos: 10.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20202 - type: CableMV - components: - - pos: 9.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20203 - type: CableMV - components: - - pos: 8.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20204 - type: CableMV - components: - - pos: 7.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20205 - type: CableMV - components: - - pos: 6.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20206 - type: CableMV - components: - - pos: 6.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20207 - type: CableMV - components: - - pos: 6.5,-55.5 - parent: 0 - type: Transform -- uid: 20208 - type: CableMV - components: - - pos: 7.5,-55.5 - parent: 0 - type: Transform -- uid: 20209 - type: CableMV - components: - - pos: 7.5,-54.5 - parent: 0 - type: Transform -- uid: 20210 - type: CableMV - components: - - pos: 7.5,-53.5 - parent: 0 - type: Transform -- uid: 20211 - type: CableMV - components: - - pos: 7.5,-52.5 - parent: 0 - type: Transform -- uid: 20212 - type: CableMV - components: - - pos: 7.5,-51.5 - parent: 0 - type: Transform -- uid: 20213 - type: CableMV - components: - - pos: 7.5,-50.5 - parent: 0 - type: Transform -- uid: 20214 - type: CableMV - components: - - pos: 7.5,-49.5 - parent: 0 - type: Transform -- uid: 20215 - type: CableMV - components: - - pos: 8.5,-49.5 - parent: 0 - type: Transform -- uid: 20216 - type: CableMV - components: - - pos: 8.5,-48.5 - parent: 0 - type: Transform -- uid: 20217 - type: CableMV - components: - - pos: 8.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20218 - type: CableMV - components: - - pos: 27.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20219 - type: CableMV - components: - - pos: 27.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20220 - type: CableMV - components: - - pos: 28.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20221 - type: CableMV - components: - - pos: 29.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20222 - type: CableMV - components: - - pos: 30.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20223 - type: CableMV - components: - - pos: 31.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20224 - type: CableMV - components: - - pos: 31.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20225 - type: CableMV - components: - - pos: 31.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20226 - type: CableMV - components: - - pos: 31.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20227 - type: CableMV - components: - - pos: 31.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20228 - type: CableMV - components: - - pos: 31.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20229 - type: CableMV - components: - - pos: 31.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20230 - type: CableMV - components: - - pos: 32.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20231 - type: CableMV - components: - - pos: 32.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20232 - type: CableMV - components: - - pos: 30.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20233 - type: CableMV - components: - - pos: 30.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20234 - type: CableMV - components: - - pos: 30.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20235 - type: CableMV - components: - - pos: 30.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20236 - type: CableMV - components: - - pos: 30.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20237 - type: CableMV - components: - - pos: 30.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20238 - type: CableMV - components: - - pos: 30.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20239 - type: CableMV - components: - - pos: 29.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20240 - type: CableMV - components: - - pos: 28.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20241 - type: CableMV - components: - - pos: 27.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20242 - type: CableMV - components: - - pos: 26.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20243 - type: CableMV - components: - - pos: 25.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20244 - type: CableMV - components: - - pos: 24.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20245 - type: CableMV - components: - - pos: 23.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20246 - type: CableMV - components: - - pos: 22.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20247 - type: CableMV - components: - - pos: 21.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20248 - type: CableMV - components: - - pos: 20.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20249 - type: CableMV - components: - - pos: 19.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20250 - type: CableMV - components: - - pos: 18.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20251 - type: CableMV - components: - - pos: 17.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20252 - type: CableMV - components: - - pos: 16.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20253 - type: CableMV - components: - - pos: 15.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20254 - type: CableMV - components: - - pos: 14.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20255 - type: CableMV - components: - - pos: 14.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20256 - type: CableMV - components: - - pos: 14.5,-28.5 - parent: 0 - type: Transform -- uid: 20257 - type: CableMV - components: - - pos: 13.5,-28.5 - parent: 0 - type: Transform -- uid: 20258 - type: CableMV - components: - - pos: 13.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20259 - type: CableMV - components: - - pos: 12.5,-28.5 - parent: 0 - type: Transform -- uid: 20260 - type: CableMV - components: - - pos: 11.5,-28.5 - parent: 0 - type: Transform -- uid: 20261 - type: CableMV - components: - - pos: 11.5,-29.5 - parent: 0 - type: Transform -- uid: 20262 - type: CableMV - components: - - pos: 11.5,-30.5 - parent: 0 - type: Transform -- uid: 20263 - type: CableMV - components: - - pos: 11.5,-31.5 - parent: 0 - type: Transform -- uid: 20264 - type: CableMV - components: - - pos: 11.5,-32.5 - parent: 0 - type: Transform -- uid: 20265 - type: CableMV - components: - - pos: 11.5,-33.5 - parent: 0 - type: Transform -- uid: 20266 - type: CableMV - components: - - pos: 11.5,-34.5 - parent: 0 - type: Transform -- uid: 20267 - type: CableMV - components: - - pos: 11.5,-35.5 - parent: 0 - type: Transform -- uid: 20268 - type: CableMV - components: - - pos: 10.5,-35.5 - parent: 0 - type: Transform -- uid: 20269 - type: CableMV - components: - - pos: 9.5,-35.5 - parent: 0 - type: Transform -- uid: 20270 - type: CableMV - components: - - pos: 8.5,-35.5 - parent: 0 - type: Transform -- uid: 20271 - type: CableMV - components: - - pos: 7.5,-35.5 - parent: 0 - type: Transform -- uid: 20272 - type: CableMV - components: - - pos: 6.5,-35.5 - parent: 0 - type: Transform -- uid: 20273 - type: CableMV - components: - - pos: 6.5,-36.5 - parent: 0 - type: Transform -- uid: 20274 - type: CableMV - components: - - pos: 6.5,-37.5 - parent: 0 - type: Transform -- uid: 20275 - type: CableMV - components: - - pos: 5.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20276 - type: CableMV - components: - - pos: 8.5,-46.5 - parent: 0 - type: Transform -- uid: 20277 - type: CableMV - components: - - pos: 8.5,-45.5 - parent: 0 - type: Transform -- uid: 20278 - type: CableMV - components: - - pos: 8.5,-44.5 - parent: 0 - type: Transform -- uid: 20279 - type: CableMV - components: - - pos: 9.5,-44.5 - parent: 0 - type: Transform -- uid: 20280 - type: CableMV - components: - - pos: 10.5,-44.5 - parent: 0 - type: Transform -- uid: 20281 - type: CableMV - components: - - pos: 11.5,-44.5 - parent: 0 - type: Transform -- uid: 20282 - type: CableMV - components: - - pos: 11.5,-43.5 - parent: 0 - type: Transform -- uid: 20283 - type: CableMV - components: - - pos: 11.5,-42.5 - parent: 0 - type: Transform -- uid: 20284 - type: CableMV - components: - - pos: 11.5,-41.5 - parent: 0 - type: Transform -- uid: 20285 - type: CableMV - components: - - pos: 12.5,-41.5 - parent: 0 - type: Transform -- uid: 20286 - type: CableMV - components: - - pos: 13.5,-41.5 - parent: 0 - type: Transform -- uid: 20287 - type: CableMV - components: - - pos: 13.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20288 - type: CableApcExtension - components: - - pos: 8.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20289 - type: CableApcExtension - components: - - pos: 8.5,-48.5 - parent: 0 - type: Transform -- uid: 20290 - type: CableApcExtension - components: - - pos: 8.5,-49.5 - parent: 0 - type: Transform -- uid: 20291 - type: CableApcExtension - components: - - pos: 8.5,-50.5 - parent: 0 - type: Transform -- uid: 20292 - type: CableApcExtension - components: - - pos: 8.5,-51.5 - parent: 0 - type: Transform -- uid: 20293 - type: CableApcExtension - components: - - pos: 8.5,-52.5 - parent: 0 - type: Transform -- uid: 20294 - type: CableApcExtension - components: - - pos: 8.5,-53.5 - parent: 0 - type: Transform -- uid: 20295 - type: CableApcExtension - components: - - pos: 8.5,-54.5 - parent: 0 - type: Transform -- uid: 20296 - type: CableApcExtension - components: - - pos: 8.5,-55.5 - parent: 0 - type: Transform -- uid: 20297 - type: CableApcExtension - components: - - pos: 9.5,-50.5 - parent: 0 - type: Transform -- uid: 20298 - type: CableApcExtension - components: - - pos: 10.5,-50.5 - parent: 0 - type: Transform -- uid: 20299 - type: CableApcExtension - components: - - pos: 11.5,-50.5 - parent: 0 - type: Transform -- uid: 20300 - type: CableApcExtension - components: - - pos: 12.5,-50.5 - parent: 0 - type: Transform -- uid: 20301 - type: CableApcExtension - components: - - pos: 13.5,-50.5 - parent: 0 - type: Transform -- uid: 20302 - type: CableApcExtension - components: - - pos: 14.5,-50.5 - parent: 0 - type: Transform -- uid: 20303 - type: CableApcExtension - components: - - pos: 14.5,-49.5 - parent: 0 - type: Transform -- uid: 20304 - type: CableApcExtension - components: - - pos: 15.5,-49.5 - parent: 0 - type: Transform -- uid: 20305 - type: CableApcExtension - components: - - pos: 16.5,-49.5 - parent: 0 - type: Transform -- uid: 20306 - type: CableApcExtension - components: - - pos: 17.5,-49.5 - parent: 0 - type: Transform -- uid: 20307 - type: CableApcExtension - components: - - pos: 18.5,-49.5 - parent: 0 - type: Transform -- uid: 20308 - type: CableApcExtension - components: - - pos: 19.5,-49.5 - parent: 0 - type: Transform -- uid: 20309 - type: CableApcExtension - components: - - pos: 20.5,-49.5 - parent: 0 - type: Transform -- uid: 20310 - type: CableApcExtension - components: - - pos: 21.5,-49.5 - parent: 0 - type: Transform -- uid: 20311 - type: CableApcExtension - components: - - pos: 22.5,-49.5 - parent: 0 - type: Transform -- uid: 20312 - type: CableApcExtension - components: - - pos: 23.5,-49.5 - parent: 0 - type: Transform -- uid: 20313 - type: CableApcExtension - components: - - pos: 24.5,-49.5 - parent: 0 - type: Transform -- uid: 20314 - type: CableApcExtension - components: - - pos: 25.5,-49.5 - parent: 0 - type: Transform -- uid: 20315 - type: CableApcExtension - components: - - pos: 26.5,-49.5 - parent: 0 - type: Transform -- uid: 20316 - type: CableApcExtension - components: - - pos: 22.5,-50.5 - parent: 0 - type: Transform -- uid: 20317 - type: CableApcExtension - components: - - pos: 22.5,-51.5 - parent: 0 - type: Transform -- uid: 20318 - type: CableApcExtension - components: - - pos: 22.5,-52.5 - parent: 0 - type: Transform -- uid: 20319 - type: CableApcExtension - components: - - pos: 26.5,-50.5 - parent: 0 - type: Transform -- uid: 20320 - type: CableApcExtension - components: - - pos: 26.5,-51.5 - parent: 0 - type: Transform -- uid: 20321 - type: CableApcExtension - components: - - pos: 26.5,-52.5 - parent: 0 - type: Transform -- uid: 20322 - type: CableApcExtension - components: - - pos: 7.5,-55.5 - parent: 0 - type: Transform -- uid: 20323 - type: CableApcExtension - components: - - pos: 6.5,-55.5 - parent: 0 - type: Transform -- uid: 20324 - type: CableApcExtension - components: - - pos: 6.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20325 - type: APCBasic - components: - - pos: 10.5,-56.5 - parent: 0 - type: Transform -- uid: 20326 - type: CableApcExtension - components: - - pos: 6.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20327 - type: CableApcExtension - components: - - pos: 7.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20328 - type: CableApcExtension - components: - - pos: 8.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20329 - type: CableApcExtension - components: - - pos: 9.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20330 - type: CableApcExtension - components: - - pos: 10.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20331 - type: CableApcExtension - components: - - pos: 11.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20332 - type: CableApcExtension - components: - - pos: 10.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20333 - type: CableApcExtension - components: - - pos: 10.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20334 - type: CableApcExtension - components: - - pos: 5.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20335 - type: CableApcExtension - components: - - pos: 4.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20336 - type: CableApcExtension - components: - - pos: 3.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20337 - type: CableApcExtension - components: - - pos: 3.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20338 - type: CableApcExtension - components: - - pos: 3.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20339 - type: CableApcExtension - components: - - pos: 3.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20340 - type: CableApcExtension - components: - - pos: 3.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20341 - type: CableApcExtension - components: - - pos: 3.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20342 - type: CableApcExtension - components: - - pos: 3.5,-51.5 - parent: 0 - type: Transform -- uid: 20343 - type: CableApcExtension - components: - - pos: 3.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20344 - type: CableApcExtension - components: - - pos: 3.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20345 - type: CableApcExtension - components: - - pos: 2.5,-49.5 - parent: 0 - type: Transform -- uid: 20346 - type: CableApcExtension - components: - - pos: 1.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20347 - type: CableApcExtension - components: - - pos: 1.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20348 - type: CableApcExtension - components: - - pos: 0.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20349 - type: CableApcExtension - components: - - pos: 0.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20350 - type: CableApcExtension - components: - - pos: 0.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20351 - type: CableApcExtension - components: - - pos: 0.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20352 - type: CableApcExtension - components: - - pos: 2.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20353 - type: CableApcExtension - components: - - pos: 13.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20354 - type: CableApcExtension - components: - - pos: 13.5,-41.5 - parent: 0 - type: Transform -- uid: 20355 - type: CableApcExtension - components: - - pos: 13.5,-42.5 - parent: 0 - type: Transform -- uid: 20356 - type: CableApcExtension - components: - - pos: 14.5,-42.5 - parent: 0 - type: Transform -- uid: 20357 - type: CableApcExtension - components: - - pos: 15.5,-42.5 - parent: 0 - type: Transform -- uid: 20358 - type: CableApcExtension - components: - - pos: 16.5,-42.5 - parent: 0 - type: Transform -- uid: 20359 - type: CableApcExtension - components: - - pos: 17.5,-42.5 - parent: 0 - type: Transform -- uid: 20360 - type: CableApcExtension - components: - - pos: 18.5,-42.5 - parent: 0 - type: Transform -- uid: 20361 - type: CableApcExtension - components: - - pos: 19.5,-42.5 - parent: 0 - type: Transform -- uid: 20362 - type: CableApcExtension - components: - - pos: 20.5,-42.5 - parent: 0 - type: Transform -- uid: 20363 - type: CableApcExtension - components: - - pos: 21.5,-42.5 - parent: 0 - type: Transform -- uid: 20364 - type: CableApcExtension - components: - - pos: 22.5,-42.5 - parent: 0 - type: Transform -- uid: 20365 - type: CableApcExtension - components: - - pos: 23.5,-42.5 - parent: 0 - type: Transform -- uid: 20366 - type: CableApcExtension - components: - - pos: 24.5,-42.5 - parent: 0 - type: Transform -- uid: 20367 - type: CableApcExtension - components: - - pos: 25.5,-42.5 - parent: 0 - type: Transform -- uid: 20368 - type: CableApcExtension - components: - - pos: 26.5,-42.5 - parent: 0 - type: Transform -- uid: 20369 - type: CableApcExtension - components: - - pos: 27.5,-42.5 - parent: 0 - type: Transform -- uid: 20370 - type: CableApcExtension - components: - - pos: 28.5,-42.5 - parent: 0 - type: Transform -- uid: 20371 - type: CableApcExtension - components: - - pos: 28.5,-41.5 - parent: 0 - type: Transform -- uid: 20372 - type: CableApcExtension - components: - - pos: 28.5,-40.5 - parent: 0 - type: Transform -- uid: 20373 - type: CableApcExtension - components: - - pos: 28.5,-39.5 - parent: 0 - type: Transform -- uid: 20374 - type: CableApcExtension - components: - - pos: 28.5,-38.5 - parent: 0 - type: Transform -- uid: 20375 - type: CableApcExtension - components: - - pos: 28.5,-37.5 - parent: 0 - type: Transform -- uid: 20376 - type: CableApcExtension - components: - - pos: 28.5,-36.5 - parent: 0 - type: Transform -- uid: 20377 - type: CableApcExtension - components: - - pos: 21.5,-41.5 - parent: 0 - type: Transform -- uid: 20378 - type: CableApcExtension - components: - - pos: 21.5,-40.5 - parent: 0 - type: Transform -- uid: 20379 - type: CableApcExtension - components: - - pos: 21.5,-39.5 - parent: 0 - type: Transform -- uid: 20380 - type: CableApcExtension - components: - - pos: 21.5,-38.5 - parent: 0 - type: Transform -- uid: 20381 - type: CableApcExtension - components: - - pos: 21.5,-37.5 - parent: 0 - type: Transform -- uid: 20382 - type: CableApcExtension - components: - - pos: 21.5,-36.5 - parent: 0 - type: Transform -- uid: 20383 - type: CableApcExtension - components: - - pos: 21.5,-35.5 - parent: 0 - type: Transform -- uid: 20384 - type: CableApcExtension - components: - - pos: 22.5,-35.5 - parent: 0 - type: Transform -- uid: 20385 - type: CableApcExtension - components: - - pos: 23.5,-35.5 - parent: 0 - type: Transform -- uid: 20386 - type: CableApcExtension - components: - - pos: 24.5,-35.5 - parent: 0 - type: Transform -- uid: 20387 - type: CableApcExtension - components: - - pos: 24.5,-36.5 - parent: 0 - type: Transform -- uid: 20388 - type: CableApcExtension - components: - - pos: 24.5,-37.5 - parent: 0 - type: Transform -- uid: 20389 - type: CableApcExtension - components: - - pos: 24.5,-38.5 - parent: 0 - type: Transform -- uid: 20390 - type: CableApcExtension - components: - - pos: 12.5,-42.5 - parent: 0 - type: Transform -- uid: 20391 - type: CableApcExtension - components: - - pos: 11.5,-42.5 - parent: 0 - type: Transform -- uid: 20392 - type: CableApcExtension - components: - - pos: 11.5,-43.5 - parent: 0 - type: Transform -- uid: 20393 - type: CableApcExtension - components: - - pos: 11.5,-44.5 - parent: 0 - type: Transform -- uid: 20394 - type: CableApcExtension - components: - - pos: 11.5,-45.5 - parent: 0 - type: Transform -- uid: 20395 - type: CableApcExtension - components: - - pos: 10.5,-45.5 - parent: 0 - type: Transform -- uid: 20396 - type: CableApcExtension - components: - - pos: 9.5,-45.5 - parent: 0 - type: Transform -- uid: 20397 - type: CableApcExtension - components: - - pos: 8.5,-45.5 - parent: 0 - type: Transform -- uid: 20398 - type: CableApcExtension - components: - - pos: 7.5,-45.5 - parent: 0 - type: Transform -- uid: 20399 - type: CableApcExtension - components: - - pos: 6.5,-45.5 - parent: 0 - type: Transform -- uid: 20400 - type: CableApcExtension - components: - - pos: 5.5,-45.5 - parent: 0 - type: Transform -- uid: 20401 - type: CableApcExtension - components: - - pos: 4.5,-45.5 - parent: 0 - type: Transform -- uid: 20402 - type: CableApcExtension - components: - - pos: 3.5,-45.5 - parent: 0 - type: Transform -- uid: 20403 - type: CableApcExtension - components: - - pos: 5.5,-38.5 - parent: 0 - type: Transform -- uid: 20404 - type: CableApcExtension - components: - - pos: 5.5,-39.5 - parent: 0 - type: Transform -- uid: 20405 - type: CableApcExtension - components: - - pos: 5.5,-40.5 - parent: 0 - type: Transform -- uid: 20406 - type: CableApcExtension - components: - - pos: 5.5,-41.5 - parent: 0 - type: Transform -- uid: 20407 - type: CableApcExtension - components: - - pos: 5.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20408 - type: CableApcExtension - components: - - pos: 6.5,-40.5 - parent: 0 - type: Transform -- uid: 20409 - type: CableApcExtension - components: - - pos: 7.5,-40.5 - parent: 0 - type: Transform -- uid: 20410 - type: CableApcExtension - components: - - pos: 4.5,-40.5 - parent: 0 - type: Transform -- uid: 20411 - type: CableApcExtension - components: - - pos: 3.5,-40.5 - parent: 0 - type: Transform -- uid: 20412 - type: CableApcExtension - components: - - pos: 2.5,-40.5 - parent: 0 - type: Transform -- uid: 20413 - type: CableApcExtension - components: - - pos: 1.5,-40.5 - parent: 0 - type: Transform -- uid: 20414 - type: CableApcExtension - components: - - pos: 2.5,-39.5 - parent: 0 - type: Transform -- uid: 20415 - type: CableApcExtension - components: - - pos: 2.5,-38.5 - parent: 0 - type: Transform -- uid: 20416 - type: CableApcExtension - components: - - pos: 2.5,-37.5 - parent: 0 - type: Transform -- uid: 20417 - type: CableApcExtension - components: - - pos: 2.5,-36.5 - parent: 0 - type: Transform -- uid: 20418 - type: CableApcExtension - components: - - pos: 2.5,-35.5 - parent: 0 - type: Transform -- uid: 20419 - type: CableApcExtension - components: - - pos: 2.5,-34.5 - parent: 0 - type: Transform -- uid: 20420 - type: CableApcExtension - components: - - pos: 2.5,-33.5 - parent: 0 - type: Transform -- uid: 20421 - type: CableApcExtension - components: - - pos: 2.5,-32.5 - parent: 0 - type: Transform -- uid: 20422 - type: CableApcExtension - components: - - pos: 2.5,-31.5 - parent: 0 - type: Transform -- uid: 20423 - type: CableApcExtension - components: - - pos: 2.5,-30.5 - parent: 0 - type: Transform -- uid: 20424 - type: CableApcExtension - components: - - pos: 2.5,-29.5 - parent: 0 - type: Transform -- uid: 20425 - type: CableApcExtension - components: - - pos: 2.5,-28.5 - parent: 0 - type: Transform -- uid: 20426 - type: CableApcExtension - components: - - pos: 3.5,-35.5 - parent: 0 - type: Transform -- uid: 20427 - type: CableApcExtension - components: - - pos: 3.5,-30.5 - parent: 0 - type: Transform -- uid: 20428 - type: CableApcExtension - components: - - pos: 1.5,-30.5 - parent: 0 - type: Transform -- uid: 20429 - type: CableApcExtension - components: - - pos: 0.5,-30.5 - parent: 0 - type: Transform -- uid: 20430 - type: CableApcExtension - components: - - pos: -0.5,-30.5 - parent: 0 - type: Transform -- uid: 20431 - type: CableApcExtension - components: - - pos: -1.5,-30.5 - parent: 0 - type: Transform -- uid: 20432 - type: CableApcExtension - components: - - pos: -2.5,-30.5 - parent: 0 - type: Transform -- uid: 20433 - type: CableApcExtension - components: - - pos: -2.5,-31.5 - parent: 0 - type: Transform -- uid: 20434 - type: CableApcExtension - components: - - pos: -2.5,-32.5 - parent: 0 - type: Transform -- uid: 20435 - type: CableApcExtension - components: - - pos: -2.5,-33.5 - parent: 0 - type: Transform -- uid: 20436 - type: CableApcExtension - components: - - pos: -2.5,-34.5 - parent: 0 - type: Transform -- uid: 20437 - type: CableApcExtension - components: - - pos: -2.5,-35.5 - parent: 0 - type: Transform -- uid: 20438 - type: CableApcExtension - components: - - pos: -2.5,-36.5 - parent: 0 - type: Transform -- uid: 20439 - type: CableApcExtension - components: - - pos: -2.5,-29.5 - parent: 0 - type: Transform -- uid: 20440 - type: CableApcExtension - components: - - pos: -2.5,-28.5 - parent: 0 - type: Transform -- uid: 20441 - type: CableApcExtension - components: - - pos: -2.5,-27.5 - parent: 0 - type: Transform -- uid: 20442 - type: CableApcExtension - components: - - pos: -0.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20443 - type: CableApcExtension - components: - - pos: -1.5,-45.5 - parent: 0 - type: Transform -- uid: 20444 - type: CableApcExtension - components: - - pos: -2.5,-45.5 - parent: 0 - type: Transform -- uid: 20445 - type: CableApcExtension - components: - - pos: -2.5,-44.5 - parent: 0 - type: Transform -- uid: 20446 - type: CableApcExtension - components: - - pos: -2.5,-43.5 - parent: 0 - type: Transform -- uid: 20447 - type: CableApcExtension - components: - - pos: -2.5,-42.5 - parent: 0 - type: Transform -- uid: 20448 - type: CableApcExtension - components: - - pos: -2.5,-41.5 - parent: 0 - type: Transform -- uid: 20449 - type: CableApcExtension - components: - - pos: -2.5,-40.5 - parent: 0 - type: Transform -- uid: 20450 - type: CableApcExtension - components: - - pos: -2.5,-46.5 - parent: 0 - type: Transform -- uid: 20451 - type: CableApcExtension - components: - - pos: -2.5,-47.5 - parent: 0 - type: Transform -- uid: 20452 - type: CableApcExtension - components: - - pos: -2.5,-48.5 - parent: 0 - type: Transform -- uid: 20453 - type: CableApcExtension - components: - - pos: -2.5,-49.5 - parent: 0 - type: Transform -- uid: 20454 - type: CableApcExtension - components: - - pos: -2.5,-50.5 - parent: 0 - type: Transform -- uid: 20455 - type: CableApcExtension - components: - - pos: -2.5,-51.5 - parent: 0 - type: Transform -- uid: 20456 - type: CableApcExtension - components: - - pos: -2.5,-52.5 - parent: 0 - type: Transform -- uid: 20457 - type: CableApcExtension - components: - - pos: -2.5,-53.5 - parent: 0 - type: Transform -- uid: 20458 - type: CableApcExtension - components: - - pos: -2.5,-54.5 - parent: 0 - type: Transform -- uid: 20459 - type: CableApcExtension - components: - - pos: -2.5,-56.5 - parent: 0 - type: Transform -- uid: 20460 - type: CableApcExtension - components: - - pos: -2.5,-55.5 - parent: 0 - type: Transform -- uid: 20461 - type: CableApcExtension - components: - - pos: 12.5,-45.5 - parent: 0 - type: Transform -- uid: 20462 - type: CableApcExtension - components: - - pos: 13.5,-45.5 - parent: 0 - type: Transform -- uid: 20463 - type: CableApcExtension - components: - - pos: 14.5,-45.5 - parent: 0 - type: Transform -- uid: 20464 - type: CableApcExtension - components: - - pos: 14.5,-44.5 - parent: 0 - type: Transform -- uid: 20465 - type: CableApcExtension - components: - - pos: 13.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20466 - type: CableApcExtension - components: - - pos: 13.5,-28.5 - parent: 0 - type: Transform -- uid: 20467 - type: CableApcExtension - components: - - pos: 13.5,-29.5 - parent: 0 - type: Transform -- uid: 20468 - type: CableApcExtension - components: - - pos: 13.5,-30.5 - parent: 0 - type: Transform -- uid: 20469 - type: CableApcExtension - components: - - pos: 13.5,-31.5 - parent: 0 - type: Transform -- uid: 20470 - type: CableApcExtension - components: - - pos: 13.5,-32.5 - parent: 0 - type: Transform -- uid: 20471 - type: CableApcExtension - components: - - pos: 14.5,-29.5 - parent: 0 - type: Transform -- uid: 20472 - type: CableApcExtension - components: - - pos: 15.5,-29.5 - parent: 0 - type: Transform -- uid: 20473 - type: CableApcExtension - components: - - pos: 16.5,-29.5 - parent: 0 - type: Transform -- uid: 20474 - type: CableApcExtension - components: - - pos: 17.5,-29.5 - parent: 0 - type: Transform -- uid: 20475 - type: CableApcExtension - components: - - pos: 18.5,-29.5 - parent: 0 - type: Transform -- uid: 20476 - type: CableApcExtension - components: - - pos: 19.5,-29.5 - parent: 0 - type: Transform -- uid: 20477 - type: CableApcExtension - components: - - pos: 20.5,-29.5 - parent: 0 - type: Transform -- uid: 20478 - type: CableApcExtension - components: - - pos: 21.5,-29.5 - parent: 0 - type: Transform -- uid: 20479 - type: CableApcExtension - components: - - pos: 20.5,-30.5 - parent: 0 - type: Transform -- uid: 20480 - type: CableApcExtension - components: - - pos: 20.5,-31.5 - parent: 0 - type: Transform -- uid: 20481 - type: CableApcExtension - components: - - pos: 21.5,-31.5 - parent: 0 - type: Transform -- uid: 20482 - type: CableApcExtension - components: - - pos: 22.5,-31.5 - parent: 0 - type: Transform -- uid: 20483 - type: CableApcExtension - components: - - pos: 23.5,-31.5 - parent: 0 - type: Transform -- uid: 20484 - type: CableApcExtension - components: - - pos: 24.5,-31.5 - parent: 0 - type: Transform -- uid: 20485 - type: CableApcExtension - components: - - pos: 24.5,-30.5 - parent: 0 - type: Transform -- uid: 20486 - type: CableApcExtension - components: - - pos: 24.5,-29.5 - parent: 0 - type: Transform -- uid: 20487 - type: CableApcExtension - components: - - pos: 20.5,-28.5 - parent: 0 - type: Transform -- uid: 20488 - type: CableApcExtension - components: - - pos: 20.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20489 - type: CableApcExtension - components: - - pos: 20.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20490 - type: CableApcExtension - components: - - pos: 19.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20491 - type: CableApcExtension - components: - - pos: 18.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20492 - type: CableApcExtension - components: - - pos: 17.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20493 - type: CableApcExtension - components: - - pos: 16.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20494 - type: CableApcExtension - components: - - pos: 15.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20495 - type: CableApcExtension - components: - - pos: 15.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20496 - type: CableApcExtension - components: - - pos: 15.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20497 - type: CableApcExtension - components: - - pos: 15.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20498 - type: CableApcExtension - components: - - pos: 14.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20499 - type: CableApcExtension - components: - - pos: 14.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20500 - type: CableApcExtension - components: - - pos: 21.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20501 - type: CableApcExtension - components: - - pos: 22.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20502 - type: CableApcExtension - components: - - pos: 23.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20503 - type: CableApcExtension - components: - - pos: 24.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20504 - type: CableApcExtension - components: - - pos: 25.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20505 - type: CableApcExtension - components: - - pos: 26.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20506 - type: CableApcExtension - components: - - pos: 27.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20507 - type: CableApcExtension - components: - - pos: 28.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20508 - type: CableApcExtension - components: - - pos: 29.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20509 - type: CableApcExtension - components: - - pos: 30.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20510 - type: CableApcExtension - components: - - pos: 30.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20511 - type: CableApcExtension - components: - - pos: 32.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20512 - type: CableApcExtension - components: - - pos: 32.5,-41.5 - parent: 0 - type: Transform -- uid: 20513 - type: CableApcExtension - components: - - pos: 32.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20514 - type: CableApcExtension - components: - - pos: 31.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20515 - type: CableApcExtension - components: - - pos: 31.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20516 - type: CableApcExtension - components: - - pos: 31.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20517 - type: CableApcExtension - components: - - pos: 31.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20518 - type: CableApcExtension - components: - - pos: 31.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20519 - type: CableApcExtension - components: - - pos: 31.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20520 - type: CableApcExtension - components: - - pos: 31.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20521 - type: CableApcExtension - components: - - pos: 31.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20522 - type: CableApcExtension - components: - - pos: 31.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20523 - type: CableApcExtension - components: - - pos: 30.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20524 - type: CableApcExtension - components: - - pos: 32.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20525 - type: CableApcExtension - components: - - pos: 33.5,-31.5 - parent: 0 - type: Transform -- uid: 20526 - type: CableApcExtension - components: - - pos: 34.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20527 - type: CableApcExtension - components: - - pos: 35.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20528 - type: CableApcExtension - components: - - pos: 35.5,-32.5 - parent: 0 - type: Transform -- uid: 20529 - type: CableApcExtension - components: - - pos: 35.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20530 - type: CableApcExtension - components: - - pos: 35.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20531 - type: CableApcExtension - components: - - pos: 35.5,-35.5 - parent: 0 - type: Transform -- uid: 20532 - type: CableApcExtension - components: - - pos: 36.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20533 - type: CableApcExtension - components: - - pos: 37.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20534 - type: CableApcExtension - components: - - pos: 38.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20535 - type: CableApcExtension - components: - - pos: 39.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20536 - type: CableApcExtension - components: - - pos: 40.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20537 - type: CableApcExtension - components: - - pos: 39.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20538 - type: CableApcExtension - components: - - pos: 39.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20539 - type: CableApcExtension - components: - - pos: 39.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20540 - type: CableApcExtension - components: - - pos: 32.5,-42.5 - parent: 0 - type: Transform -- uid: 20541 - type: CableApcExtension - components: - - pos: 32.5,-43.5 - parent: 0 - type: Transform -- uid: 20542 - type: CableApcExtension - components: - - pos: 33.5,-42.5 - parent: 0 - type: Transform -- uid: 20543 - type: CableApcExtension - components: - - pos: 34.5,-42.5 - parent: 0 - type: Transform -- uid: 20544 - type: CableApcExtension - components: - - pos: 35.5,-42.5 - parent: 0 - type: Transform -- uid: 20545 - type: CableApcExtension - components: - - pos: 36.5,-42.5 - parent: 0 - type: Transform -- uid: 20546 - type: CableApcExtension - components: - - pos: 37.5,-42.5 - parent: 0 - type: Transform -- uid: 20547 - type: CableApcExtension - components: - - pos: 38.5,-42.5 - parent: 0 - type: Transform -- uid: 20548 - type: CableApcExtension - components: - - pos: 39.5,-42.5 - parent: 0 - type: Transform -- uid: 20549 - type: CableApcExtension - components: - - pos: 36.5,-41.5 - parent: 0 - type: Transform -- uid: 20550 - type: CableApcExtension - components: - - pos: 36.5,-40.5 - parent: 0 - type: Transform -- uid: 20551 - type: CableApcExtension - components: - - pos: 36.5,-39.5 - parent: 0 - type: Transform -- uid: 20552 - type: CableApcExtension - components: - - pos: 36.5,-38.5 - parent: 0 - type: Transform -- uid: 20553 - type: CableApcExtension - components: - - pos: 30.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20554 - type: CableApcExtension - components: - - pos: 31.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20555 - type: CableApcExtension - components: - - pos: 31.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20556 - type: CableApcExtension - components: - - pos: 31.5,-43.5 - parent: 0 - type: Transform -- uid: 20557 - type: CableApcExtension - components: - - pos: 31.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20558 - type: WallSolid - components: - - pos: 31.5,-48.5 - parent: 0 - type: Transform -- uid: 20559 - type: WallSolid - components: - - pos: 31.5,-49.5 - parent: 0 - type: Transform -- uid: 20560 - type: CableApcExtension - components: - - pos: 30.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20561 - type: CableApcExtension - components: - - pos: 29.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20562 - type: CableApcExtension - components: - - pos: 28.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20563 - type: CableApcExtension - components: - - pos: 27.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20564 - type: CableApcExtension - components: - - pos: 26.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20565 - type: CableApcExtension - components: - - pos: 25.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20566 - type: CableApcExtension - components: - - pos: 24.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20567 - type: CableApcExtension - components: - - pos: 23.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20568 - type: CableApcExtension - components: - - pos: 22.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20569 - type: CableApcExtension - components: - - pos: 21.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20570 - type: CableApcExtension - components: - - pos: 12.5,-29.5 - parent: 0 - type: Transform -- uid: 20571 - type: CableApcExtension - components: - - pos: 11.5,-29.5 - parent: 0 - type: Transform -- uid: 20572 - type: CableApcExtension - components: - - pos: 11.5,-28.5 - parent: 0 - type: Transform -- uid: 20573 - type: CableApcExtension - components: - - pos: 11.5,-27.5 - parent: 0 - type: Transform -- uid: 20574 - type: CableApcExtension - components: - - pos: 11.5,-26.5 - parent: 0 - type: Transform -- uid: 20575 - type: CableApcExtension - components: - - pos: 11.5,-25.5 - parent: 0 - type: Transform -- uid: 20576 - type: CableApcExtension - components: - - pos: 11.5,-24.5 - parent: 0 - type: Transform -- uid: 20577 - type: CableApcExtension - components: - - pos: 11.5,-30.5 - parent: 0 - type: Transform -- uid: 20578 - type: CableApcExtension - components: - - pos: 11.5,-31.5 - parent: 0 - type: Transform -- uid: 20579 - type: CableApcExtension - components: - - pos: 11.5,-32.5 - parent: 0 - type: Transform -- uid: 20580 - type: CableApcExtension - components: - - pos: 11.5,-33.5 - parent: 0 - type: Transform -- uid: 20581 - type: CableApcExtension - components: - - pos: 11.5,-34.5 - parent: 0 - type: Transform -- uid: 20582 - type: CableApcExtension - components: - - pos: 11.5,-35.5 - parent: 0 - type: Transform -- uid: 20583 - type: CableApcExtension - components: - - pos: 10.5,-35.5 - parent: 0 - type: Transform -- uid: 20584 - type: CableApcExtension - components: - - pos: 9.5,-35.5 - parent: 0 - type: Transform -- uid: 20585 - type: CableApcExtension - components: - - pos: 8.5,-35.5 - parent: 0 - type: Transform -- uid: 20586 - type: CableApcExtension - components: - - pos: 7.5,-35.5 - parent: 0 - type: Transform -- uid: 20587 - type: CableApcExtension - components: - - pos: 6.5,-35.5 - parent: 0 - type: Transform -- uid: 20588 - type: CableApcExtension - components: - - pos: 7.5,-34.5 - parent: 0 - type: Transform -- uid: 20589 - type: CableApcExtension - components: - - pos: 7.5,-33.5 - parent: 0 - type: Transform -- uid: 20590 - type: CableApcExtension - components: - - pos: 7.5,-32.5 - parent: 0 - type: Transform -- uid: 20591 - type: CableApcExtension - components: - - pos: 7.5,-31.5 - parent: 0 - type: Transform -- uid: 20592 - type: CableApcExtension - components: - - pos: 7.5,-30.5 - parent: 0 - type: Transform -- uid: 20593 - type: CableApcExtension - components: - - pos: 7.5,-29.5 - parent: 0 - type: Transform -- uid: 20594 - type: CableApcExtension - components: - - pos: 7.5,-28.5 - parent: 0 - type: Transform -- uid: 20595 - type: CableApcExtension - components: - - pos: 7.5,-27.5 - parent: 0 - type: Transform -- uid: 20596 - type: CableApcExtension - components: - - pos: 7.5,-26.5 - parent: 0 - type: Transform -- uid: 20597 - type: CableApcExtension - components: - - pos: 7.5,-25.5 - parent: 0 - type: Transform -- uid: 20598 - type: CableApcExtension - components: - - pos: 7.5,-24.5 - parent: 0 - type: Transform -- uid: 20599 - type: CableApcExtension - components: - - pos: 6.5,-25.5 - parent: 0 - type: Transform -- uid: 20600 - type: CableApcExtension - components: - - pos: 5.5,-25.5 - parent: 0 - type: Transform -- uid: 20601 - type: CableApcExtension - components: - - pos: 4.5,-25.5 - parent: 0 - type: Transform -- uid: 20602 - type: CableApcExtension - components: - - pos: 3.5,-25.5 - parent: 0 - type: Transform -- uid: 20603 - type: CableApcExtension - components: - - pos: 2.5,-25.5 - parent: 0 - type: Transform -- uid: 20604 - type: CableApcExtension - components: - - pos: 1.5,-25.5 - parent: 0 - type: Transform -- uid: 20605 - type: CableApcExtension - components: - - pos: 3.5,-24.5 - parent: 0 - type: Transform -- uid: 20606 - type: CableApcExtension - components: - - pos: 3.5,-23.5 - parent: 0 - type: Transform -- uid: 20607 - type: CableApcExtension - components: - - pos: 3.5,-22.5 - parent: 0 - type: Transform -- uid: 20608 - type: CableApcExtension - components: - - pos: 3.5,-21.5 - parent: 0 - type: Transform -- uid: 20609 - type: CableApcExtension - components: - - pos: 3.5,-20.5 - parent: 0 - type: Transform -- uid: 20610 - type: CableApcExtension - components: - - pos: 4.5,-20.5 - parent: 0 - type: Transform -- uid: 20611 - type: CableApcExtension - components: - - pos: 5.5,-20.5 - parent: 0 - type: Transform -- uid: 20612 - type: CableApcExtension - components: - - pos: 6.5,-20.5 - parent: 0 - type: Transform -- uid: 20613 - type: CableApcExtension - components: - - pos: 7.5,-20.5 - parent: 0 - type: Transform -- uid: 20614 - type: CableApcExtension - components: - - pos: 8.5,-20.5 - parent: 0 - type: Transform -- uid: 20615 - type: CableApcExtension - components: - - pos: 9.5,-20.5 - parent: 0 - type: Transform -- uid: 20616 - type: CableApcExtension - components: - - pos: 10.5,-20.5 - parent: 0 - type: Transform -- uid: 20617 - type: CableApcExtension - components: - - pos: 11.5,-20.5 - parent: 0 - type: Transform -- uid: 20618 - type: CableApcExtension - components: - - pos: 12.5,-20.5 - parent: 0 - type: Transform -- uid: 20619 - type: CableApcExtension - components: - - pos: 13.5,-20.5 - parent: 0 - type: Transform -- uid: 20620 - type: CableApcExtension - components: - - pos: 6.5,-19.5 - parent: 0 - type: Transform -- uid: 20621 - type: CableApcExtension - components: - - pos: 2.5,-20.5 - parent: 0 - type: Transform -- uid: 20622 - type: CableApcExtension - components: - - pos: 1.5,-20.5 - parent: 0 - type: Transform -- uid: 20623 - type: CableApcExtension - components: - - pos: 0.5,-20.5 - parent: 0 - type: Transform -- uid: 20624 - type: CableApcExtension - components: - - pos: -0.5,-20.5 - parent: 0 - type: Transform -- uid: 20625 - type: CableApcExtension - components: - - pos: -1.5,-20.5 - parent: 0 - type: Transform -- uid: 20626 - type: CableApcExtension - components: - - pos: -2.5,-20.5 - parent: 0 - type: Transform -- uid: 20627 - type: CableApcExtension - components: - - pos: -2.5,-19.5 - parent: 0 - type: Transform -- uid: 20628 - type: CableApcExtension - components: - - pos: 0.5,-25.5 - parent: 0 - type: Transform -- uid: 20629 - type: CableApcExtension - components: - - pos: -0.5,-25.5 - parent: 0 - type: Transform -- uid: 20630 - type: CableApcExtension - components: - - pos: -1.5,-25.5 - parent: 0 - type: Transform -- uid: 20631 - type: CableApcExtension - components: - - pos: -1.5,-24.5 - parent: 0 - type: Transform -- uid: 20632 - type: CableApcExtension - components: - - pos: -1.5,-23.5 - parent: 0 - type: Transform -- uid: 20633 - type: CableApcExtension - components: - - pos: 29.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20634 - type: CableApcExtension - components: - - pos: 31.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20635 - type: CableApcExtension - components: - - pos: 31.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20636 - type: GasPipeTJunction - components: - - pos: -2.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20637 - type: GasPipeStraight - components: - - pos: 3.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20638 - type: GasPipeStraight - components: - - pos: 3.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20639 - type: GasPipeStraight - components: - - pos: 3.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20640 - type: GasPipeStraight - components: - - pos: 3.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20641 - type: GasPipeStraight - components: - - pos: 4.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20642 - type: GasPipeStraight - components: - - pos: 4.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20643 - type: GasPipeStraight - components: - - pos: 4.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20644 - type: GasPipeStraight - components: - - pos: 4.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20645 - type: GasPipeStraight - components: - - pos: 4.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20646 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20647 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20648 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20649 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20650 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20651 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20652 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20653 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20654 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20655 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20656 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20657 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 4.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20658 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -2.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20659 - type: GasVentScrubber - components: - - pos: -2.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20660 - type: GasPipeStraight - components: - - pos: -3.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20661 - type: GasPipeStraight - components: - - pos: -3.5,-38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20662 - type: GasPipeStraight - components: - - pos: -3.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20663 - type: GasPipeStraight - components: - - pos: -3.5,-40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20664 - type: GasPipeStraight - components: - - pos: -3.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20665 - type: GasPipeStraight - components: - - pos: -3.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20666 - type: GasPipeStraight - components: - - pos: -3.5,-43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20667 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20668 - type: GasPipeStraight - components: - - pos: -3.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20669 - type: GasPipeStraight - components: - - pos: -3.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20670 - type: GasPipeStraight - components: - - pos: -3.5,-47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20671 - type: GasPipeStraight - components: - - pos: -3.5,-48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20672 - type: GasPipeStraight - components: - - pos: -3.5,-49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20673 - type: GasPipeStraight - components: - - pos: -3.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20674 - type: GasPipeStraight - components: - - pos: -3.5,-51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20675 - type: GasPipeStraight - components: - - pos: -3.5,-52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20676 - type: GasPipeStraight - components: - - pos: -3.5,-53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20677 - type: GasPipeStraight - components: - - pos: -3.5,-54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20678 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20679 - type: GasPipeStraight - components: - - pos: -3.5,-56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20680 - type: GasPipeStraight - components: - - pos: -3.5,-57.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20681 - type: GasPipeStraight - components: - - pos: -3.5,-58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20682 - type: GasPipeStraight - components: - - pos: -3.5,-59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20683 - type: GasPipeStraight - components: - - pos: -3.5,-60.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20684 - type: GasPipeStraight - components: - - pos: -3.5,-61.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20685 - type: GasPipeStraight - components: - - pos: -1.5,-61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20686 - type: GasPipeStraight - components: - - pos: -1.5,-60.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20687 - type: GasPipeStraight - components: - - pos: -1.5,-59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20688 - type: GasPipeStraight - components: - - pos: -1.5,-58.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20689 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20690 - type: GasPipeStraight - components: - - pos: -1.5,-56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20691 - type: GasPipeStraight - components: - - pos: -1.5,-55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20692 - type: GasPipeStraight - components: - - pos: -1.5,-54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20693 - type: GasPipeStraight - components: - - pos: -1.5,-53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20694 - type: GasPipeStraight - components: - - pos: -1.5,-52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20695 - type: GasPipeStraight - components: - - pos: -1.5,-51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20696 - type: GasPipeStraight - components: - - pos: -1.5,-50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20697 - type: GasPipeStraight - components: - - pos: -1.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20698 - type: GasPipeStraight - components: - - pos: -1.5,-48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20699 - type: GasPipeStraight - components: - - pos: -1.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20700 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20701 - type: GasPipeStraight - components: - - pos: -1.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20702 - type: GasPipeStraight - components: - - pos: -1.5,-44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20703 - type: GasPipeStraight - components: - - pos: -1.5,-43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20704 - type: GasPipeStraight - components: - - pos: -1.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20705 - type: GasPipeStraight - components: - - pos: -1.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20706 - type: GasPipeStraight - components: - - pos: -1.5,-40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20707 - type: GasPipeStraight - components: - - pos: -1.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20708 - type: GasPipeStraight - components: - - pos: -1.5,-38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20709 - type: GasPipeStraight - components: - - pos: -1.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20710 - type: CableApcExtension - components: - - pos: 12.5,-35.5 - parent: 0 - type: Transform -- uid: 20711 - type: CableApcExtension - components: - - pos: 13.5,-35.5 - parent: 0 - type: Transform -- uid: 20712 - type: CableApcExtension - components: - - pos: 14.5,-35.5 - parent: 0 - type: Transform -- uid: 20713 - type: CableApcExtension - components: - - pos: 15.5,-35.5 - parent: 0 - type: Transform -- uid: 20714 - type: CableApcExtension - components: - - pos: 15.5,-36.5 - parent: 0 - type: Transform -- uid: 20715 - type: CableApcExtension - components: - - pos: 15.5,-37.5 - parent: 0 - type: Transform -- uid: 20716 - type: CableApcExtension - components: - - pos: 16.5,-37.5 - parent: 0 - type: Transform -- uid: 20717 - type: CableApcExtension - components: - - pos: 11.5,-41.5 - parent: 0 - type: Transform -- uid: 20718 - type: CableApcExtension - components: - - pos: 11.5,-40.5 - parent: 0 - type: Transform -- uid: 20719 - type: CableApcExtension - components: - - pos: 11.5,-39.5 - parent: 0 - type: Transform -- uid: 20720 - type: CableApcExtension - components: - - pos: 11.5,-38.5 - parent: 0 - type: Transform -- uid: 20721 - type: CableApcExtension - components: - - pos: -1.5,-10.5 - parent: 0 - type: Transform -- uid: 20722 - type: CableApcExtension - components: - - pos: -2.5,-10.5 - parent: 0 - type: Transform -- uid: 20723 - type: CableApcExtension - components: - - pos: -3.5,-10.5 - parent: 0 - type: Transform -- uid: 20724 - type: GasPipeStraight - components: - - pos: 6.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20725 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20726 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20727 - type: GasPipeBend - components: - - pos: 6.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20728 - type: GasPipeStraight - components: - - pos: 6.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20729 - type: GasPipeStraight - components: - - pos: 6.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20730 - type: GasPipeStraight - components: - - pos: 6.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20731 - type: GasPipeStraight - components: - - pos: 6.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20732 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20733 - type: GasPipeStraight - components: - - pos: 6.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20734 - type: GasPipeStraight - components: - - pos: 6.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20735 - type: GasPipeStraight - components: - - pos: 6.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20736 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20737 - type: GasPipeStraight - components: - - pos: 6.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20738 - type: GasPipeStraight - components: - - pos: 6.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20739 - type: GasPipeStraight - components: - - pos: 6.5,-38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20740 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20741 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 2.5,-40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20742 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20743 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20744 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20745 - type: GasPipeStraight - components: - - pos: 2.5,-38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20746 - type: GasPipeStraight - components: - - pos: 2.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20747 - type: GasPipeStraight - components: - - pos: 2.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20748 - type: GasPipeStraight - components: - - pos: 2.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20749 - type: GasPipeStraight - components: - - pos: 2.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20750 - type: GasPipeStraight - components: - - pos: 2.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20751 - type: GasPipeStraight - components: - - pos: 2.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20752 - type: GasPipeFourway - components: - - pos: 11.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20753 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20754 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20755 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20756 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20757 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20758 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20759 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20760 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20761 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20762 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20763 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20764 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20765 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20766 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20767 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20768 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20769 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20770 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20771 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20772 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20773 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20774 - type: GasPipeTJunction - components: - - pos: 20.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20775 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20776 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20777 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20778 - type: GasVentPump - components: - - pos: 11.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20779 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20780 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 20.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20781 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20782 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 6.5,-40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20783 - type: GasVentPump - components: - - pos: 2.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20784 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20785 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20786 - type: GasPipeStraight - components: - - pos: 11.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20787 - type: GasPipeStraight - components: - - pos: 11.5,-38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20788 - type: GasPipeStraight - components: - - pos: 11.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20789 - type: GasPipeStraight - components: - - pos: 11.5,-40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20790 - type: GasPipeStraight - components: - - pos: 11.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20791 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20792 - type: GasPipeStraight - components: - - pos: 11.5,-43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20793 - type: GasPipeStraight - components: - - pos: 11.5,-44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20794 - type: GasPipeStraight - components: - - pos: 11.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20795 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 11.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20796 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20797 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20798 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20799 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20800 - type: GasPipeStraight - components: - - pos: 7.5,-47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20801 - type: GasPipeStraight - components: - - pos: 7.5,-48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20802 - type: GasPipeStraight - components: - - pos: 7.5,-49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20803 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 8.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20804 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 7.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20805 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20806 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20807 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20808 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20809 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20810 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20811 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20812 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20813 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20814 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20815 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20816 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20817 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20818 - type: GasPipeTJunction - components: - - pos: 22.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20819 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20820 - type: GasVentPump - components: - - pos: 8.5,-49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20821 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20822 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20823 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20824 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20825 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20826 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20827 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20828 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20829 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20830 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20831 - type: GasPipeFourway - components: - - pos: 21.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20832 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20833 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20834 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20835 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20836 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20837 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20838 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 28.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20839 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20840 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20841 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20842 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20843 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20844 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20845 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20846 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20847 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20848 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20849 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20850 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20851 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20852 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 28.5,-40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20853 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-39.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 20854 - type: GasPipeStraight - components: - - pos: 28.5,-38.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 20855 - type: GasPipeStraight - components: - - pos: 28.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 20856 - type: GasPipeStraight - components: - - pos: 28.5,-36.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 20857 - type: GasVentPump - components: - - pos: 28.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 20858 - type: GasVentPump - components: - - pos: 21.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20859 - type: AirlockResearchDirectorLocked - components: - - pos: 28.5,-40.5 - parent: 0 - type: Transform -- uid: 20860 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20861 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-59.5 - parent: 0 - type: Transform -- uid: 20862 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-58.5 - parent: 0 - type: Transform -- uid: 20863 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-54.5 - parent: 0 - type: Transform -- uid: 20864 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-57.5 - parent: 0 - type: Transform -- uid: 20865 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-55.5 - parent: 0 - type: Transform -- uid: 20866 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-53.5 - parent: 0 - type: Transform -- uid: 20867 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-53.5 - parent: 0 - type: Transform -- uid: 20868 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-54.5 - parent: 0 - type: Transform -- uid: 20869 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-55.5 - parent: 0 - type: Transform -- uid: 20870 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-56.5 - parent: 0 - type: Transform -- uid: 20871 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-57.5 - parent: 0 - type: Transform -- uid: 20872 - type: WallSolidRust - components: - - pos: 16.5,-59.5 - parent: 0 - type: Transform -- uid: 20873 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-58.5 - parent: 0 - type: Transform -- uid: 20874 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-58.5 - parent: 0 - type: Transform -- uid: 20875 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-58.5 - parent: 0 - type: Transform -- uid: 20876 - type: AirlockMaintRnDLocked - components: - - pos: 20.5,-56.5 - parent: 0 - type: Transform -- uid: 20877 - type: AirlockMaintGlassLocked - components: - - pos: 18.5,-58.5 - parent: 0 - type: Transform -- uid: 20878 - type: WallSolid - components: - - pos: 26.5,-58.5 - parent: 0 - type: Transform -- uid: 20879 - type: ShuttersNormal - components: - - pos: 27.5,-57.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20957 - - port: Pressed - uid: 20956 - type: SignalReceiver -- uid: 20880 - type: WallSolid - components: - - pos: 26.5,-57.5 - parent: 0 - type: Transform -- uid: 20881 - type: ReinforcedWindow - components: - - pos: 28.5,-61.5 - parent: 0 - type: Transform -- uid: 20882 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 22.5,-52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20883 - type: GasPipeBend - components: - - pos: 23.5,-52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20884 - type: GasPipeStraight - components: - - pos: 22.5,-51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20885 - type: GasPipeStraight - components: - - pos: 23.5,-53.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20886 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20887 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 23.5,-55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20888 - type: GasPipeBend - components: - - pos: 29.5,-54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20889 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20890 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20891 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20892 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20893 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-54.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20894 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20895 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-56.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20896 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-57.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20897 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-58.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20898 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 29.5,-59.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20899 - type: CableMV - components: - - pos: 10.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20900 - type: CableApcExtension - components: - - pos: 10.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20901 - type: CableApcExtension - components: - - pos: 10.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20902 - type: CableApcExtension - components: - - pos: 7.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20903 - type: CableApcExtension - components: - - pos: 6.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20904 - type: CableApcExtension - components: - - pos: 5.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20905 - type: CableApcExtension - components: - - pos: 5.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20906 - type: CableApcExtension - components: - - pos: 5.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20907 - type: CableApcExtension - components: - - pos: 5.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20908 - type: CableApcExtension - components: - - pos: 5.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20909 - type: CableApcExtension - components: - - pos: 5.5,-64.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20910 - type: CableApcExtension - components: - - pos: 5.5,-65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20911 - type: CableApcExtension - components: - - pos: 5.5,-66.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20912 - type: CableApcExtension - components: - - pos: 12.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20913 - type: CableApcExtension - components: - - pos: 12.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20914 - type: CableApcExtension - components: - - pos: 13.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20915 - type: CableApcExtension - components: - - pos: 14.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20916 - type: CableApcExtension - components: - - pos: 15.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20917 - type: CableApcExtension - components: - - pos: 16.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20918 - type: CableApcExtension - components: - - pos: 17.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20919 - type: CableApcExtension - components: - - pos: 18.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20920 - type: CableApcExtension - components: - - pos: 18.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20921 - type: CableApcExtension - components: - - pos: 18.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20922 - type: CableApcExtension - components: - - pos: 18.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20923 - type: CableApcExtension - components: - - pos: 18.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20924 - type: CableApcExtension - components: - - pos: 19.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20925 - type: CableApcExtension - components: - - pos: 20.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20926 - type: CableApcExtension - components: - - pos: 21.5,-56.5 - parent: 0 - type: Transform -- uid: 20927 - type: CableApcExtension - components: - - pos: 22.5,-56.5 - parent: 0 - type: Transform -- uid: 20928 - type: CableApcExtension - components: - - pos: 23.5,-56.5 - parent: 0 - type: Transform -- uid: 20929 - type: CableApcExtension - components: - - pos: 24.5,-56.5 - parent: 0 - type: Transform -- uid: 20930 - type: CableApcExtension - components: - - pos: 25.5,-56.5 - parent: 0 - type: Transform -- uid: 20931 - type: CableApcExtension - components: - - pos: 26.5,-56.5 - parent: 0 - type: Transform -- uid: 20932 - type: CableApcExtension - components: - - pos: 27.5,-56.5 - parent: 0 - type: Transform -- uid: 20933 - type: CableApcExtension - components: - - pos: 28.5,-56.5 - parent: 0 - type: Transform -- uid: 20934 - type: CableApcExtension - components: - - pos: 28.5,-57.5 - parent: 0 - type: Transform -- uid: 20935 - type: CableApcExtension - components: - - pos: 28.5,-58.5 - parent: 0 - type: Transform -- uid: 20936 - type: CableApcExtension - components: - - pos: 28.5,-59.5 - parent: 0 - type: Transform -- uid: 20937 - type: CableApcExtension - components: - - pos: 28.5,-60.5 - parent: 0 - type: Transform -- uid: 20938 - type: CableApcExtension - components: - - pos: 23.5,-57.5 - parent: 0 - type: Transform -- uid: 20939 - type: CableApcExtension - components: - - pos: 23.5,-58.5 - parent: 0 - type: Transform -- uid: 20940 - type: CableApcExtension - components: - - pos: 23.5,-59.5 - parent: 0 - type: Transform -- uid: 20941 - type: CableApcExtension - components: - - pos: 23.5,-55.5 - parent: 0 - type: Transform -- uid: 20942 - type: CableApcExtension - components: - - pos: 23.5,-54.5 - parent: 0 - type: Transform -- uid: 20943 - type: CableApcExtension - components: - - pos: 18.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20944 - type: CableApcExtension - components: - - pos: 18.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20945 - type: CableApcExtension - components: - - pos: 18.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20946 - type: CableApcExtension - components: - - pos: 14.5,-51.5 - parent: 0 - type: Transform -- uid: 20947 - type: CableApcExtension - components: - - pos: 14.5,-52.5 - parent: 0 - type: Transform -- uid: 20948 - type: CableApcExtension - components: - - pos: 14.5,-53.5 - parent: 0 - type: Transform -- uid: 20949 - type: CableApcExtension - components: - - pos: 14.5,-54.5 - parent: 0 - type: Transform -- uid: 20950 - type: CableApcExtension - components: - - pos: 14.5,-55.5 - parent: 0 - type: Transform -- uid: 20951 - type: CableApcExtension - components: - - pos: 13.5,-54.5 - parent: 0 - type: Transform -- uid: 20952 - type: CableApcExtension - components: - - pos: 15.5,-54.5 - parent: 0 - type: Transform -- uid: 20953 - type: GasPipeBend - components: - - pos: 7.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20954 - type: ChairOfficeLight - components: - - pos: 22.5,-57.5 - parent: 0 - type: Transform -- uid: 20955 - type: TableCarpet - components: - - pos: 23.5,-59.5 - parent: 0 - type: Transform -- uid: 20956 - type: SignalButton - components: - - pos: 30.5,-58.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 20959 - - port: Toggle - uid: 22274 - - port: Toggle - uid: 20879 - type: SignalTransmitter -- uid: 20957 - type: SignalButton - components: - - pos: 26.5,-57.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 20879 - - port: Toggle - uid: 22274 - - port: Toggle - uid: 20959 - type: SignalTransmitter -- uid: 20958 - type: TableCarpet - components: - - pos: 22.5,-59.5 - parent: 0 - type: Transform -- uid: 20959 - type: ShuttersNormal - components: - - pos: 29.5,-57.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20957 - - port: Pressed - uid: 20956 - type: SignalReceiver -- uid: 20960 - type: WallSolid - components: - - pos: 26.5,-59.5 - parent: 0 - type: Transform -- uid: 20961 - type: CrateArtifactContainer - components: - - pos: 22.5,-32.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.9593205 - - 14.894587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20962 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20963 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20964 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20965 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20966 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20967 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20968 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20969 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20970 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20971 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20972 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20973 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 7.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20974 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20975 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20976 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20977 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20978 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20979 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20980 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20981 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20982 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20983 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20984 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20985 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20986 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20987 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20988 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20989 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20990 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20991 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20992 - type: GasVentScrubber - components: - - pos: 10.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20993 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20994 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20995 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20996 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20997 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20998 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20999 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21000 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21001 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21002 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21003 - type: GasVentScrubber - components: - - pos: 21.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21004 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 21.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21005 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 21006 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21007 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21008 - type: IntercomSecurity - components: - - pos: 12.5,22.5 - parent: 0 - type: Transform -- uid: 21009 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21010 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21011 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21012 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21013 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21014 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21015 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21016 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21017 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21018 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21019 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21020 - type: GasVentScrubber - components: - - pos: 2.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21021 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21022 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21023 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21024 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21025 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21026 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21027 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 10.5,-50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21028 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21029 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21030 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21031 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21032 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21033 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21034 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21035 - type: GasPipeStraight - components: - - pos: 5.5,-61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21036 - type: GasPipeStraight - components: - - pos: 5.5,-60.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21037 - type: GasPipeStraight - components: - - pos: 5.5,-59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21038 - type: GasPipeStraight - components: - - pos: 5.5,-58.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21039 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 6.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21040 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21041 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21042 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21043 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21044 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21045 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21046 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21047 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21048 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21049 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21050 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21051 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21052 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21053 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21054 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21055 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21056 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21057 - type: GasPipeStraight - components: - - pos: 18.5,-55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21058 - type: GasPipeStraight - components: - - pos: 18.5,-54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21059 - type: GasPipeStraight - components: - - pos: 18.5,-53.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21060 - type: GasPipeStraight - components: - - pos: 18.5,-52.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21061 - type: GasPipeStraight - components: - - pos: 18.5,-51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21062 - type: GasPipeStraight - components: - - pos: 18.5,-50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21063 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21064 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 19.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21065 - type: GasPipeStraight - components: - - pos: 18.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21066 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21067 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21068 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21069 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21070 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21071 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-56.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21072 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21073 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-55.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21074 - type: GasVentScrubber - components: - - pos: 7.5,-54.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21075 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21076 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 15.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21077 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 20.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21078 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21079 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21080 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21081 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21082 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21083 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21084 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21085 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21086 - type: GasPipeStraight - components: - - pos: 20.5,-40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21087 - type: GasPipeStraight - components: - - pos: 20.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21088 - type: GasPipeStraight - components: - - pos: 20.5,-38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21089 - type: GasPipeStraight - components: - - pos: 15.5,-40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21090 - type: GasPipeStraight - components: - - pos: 15.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21091 - type: GasPipeStraight - components: - - pos: 15.5,-38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21092 - type: GasPipeStraight - components: - - pos: 15.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21093 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21094 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21095 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21096 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21097 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21098 - type: GasVentScrubber - components: - - pos: 20.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21099 - type: GasVentScrubber - components: - - pos: 15.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21100 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 21.5,-43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21101 - type: SignSecureMed - components: - - pos: 16.5,-48.5 - parent: 0 - type: Transform -- uid: 21102 - type: AirlockScienceLocked - components: - - name: Emotional Waste Lab - type: MetaData - - pos: 23.5,-53.5 - parent: 0 - type: Transform -- uid: 21103 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21104 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21105 - type: GasPipeBend - components: - - pos: 31.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21106 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 15.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21107 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21108 - type: GasPipeStraight - components: - - pos: 15.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21109 - type: GasPipeStraight - components: - - pos: 15.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21110 - type: GasPipeStraight - components: - - pos: 15.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21111 - type: GasPipeStraight - components: - - pos: 15.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21112 - type: GasPipeStraight - components: - - pos: 15.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21113 - type: GasPipeStraight - components: - - pos: 15.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21114 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21115 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21116 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21117 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21118 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21119 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21120 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21121 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21122 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21123 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21124 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21125 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21126 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21127 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21128 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21129 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21130 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21131 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21132 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21133 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21134 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21135 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21136 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21137 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21138 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21139 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21140 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21141 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21142 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21143 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21144 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21145 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 32.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21146 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21147 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21148 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21149 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21150 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21151 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21152 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21153 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21154 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21155 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21156 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21157 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21158 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21159 - type: GasPipeStraight - components: - - pos: 18.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21160 - type: GasVentPump - components: - - pos: 32.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21161 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21162 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-19.5 - parent: 0 - type: Transform -- uid: 21163 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-19.5 - parent: 0 - type: Transform -- uid: 21164 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-19.5 - parent: 0 - type: Transform -- uid: 21165 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 - parent: 0 - type: Transform -- uid: 21166 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 0 - type: Transform -- uid: 21167 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 0 - type: Transform -- uid: 21168 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-19.5 - parent: 0 - type: Transform -- uid: 21169 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-19.5 - parent: 0 - type: Transform -- uid: 21170 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-19.5 - parent: 0 - type: Transform -- uid: 21171 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-19.5 - parent: 0 - type: Transform -- uid: 21172 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-19.5 - parent: 0 - type: Transform -- uid: 21173 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-19.5 - parent: 0 - type: Transform -- uid: 21174 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-19.5 - parent: 0 - type: Transform -- uid: 21175 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-19.5 - parent: 0 - type: Transform -- uid: 21176 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 - parent: 0 - type: Transform -- uid: 21177 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-19.5 - parent: 0 - type: Transform -- uid: 21178 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-19.5 - parent: 0 - type: Transform -- uid: 21179 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-19.5 - parent: 0 - type: Transform -- uid: 21180 - type: DisposalPipe - components: - - pos: -2.5,-20.5 - parent: 0 - type: Transform -- uid: 21181 - type: DisposalPipe - components: - - pos: -2.5,-21.5 - parent: 0 - type: Transform -- uid: 21182 - type: DisposalPipe - components: - - pos: -2.5,-22.5 - parent: 0 - type: Transform -- uid: 21183 - type: DisposalPipe - components: - - pos: -2.5,-23.5 - parent: 0 - type: Transform -- uid: 21184 - type: DisposalPipe - components: - - pos: -2.5,-24.5 - parent: 0 - type: Transform -- uid: 21185 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: -2.5,-25.5 - parent: 0 - type: Transform -- uid: 21186 - type: DisposalPipe - components: - - pos: -2.5,-26.5 - parent: 0 - type: Transform -- uid: 21187 - type: DisposalPipe - components: - - pos: -2.5,-27.5 - parent: 0 - type: Transform -- uid: 21188 - type: DisposalPipe - components: - - pos: -2.5,-28.5 - parent: 0 - type: Transform -- uid: 21189 - type: DisposalPipe - components: - - pos: -2.5,-29.5 - parent: 0 - type: Transform -- uid: 21190 - type: DisposalPipe - components: - - pos: -2.5,-30.5 - parent: 0 - type: Transform -- uid: 21191 - type: DisposalPipe - components: - - pos: -2.5,-31.5 - parent: 0 - type: Transform -- uid: 21192 - type: DisposalPipe - components: - - pos: -2.5,-32.5 - parent: 0 - type: Transform -- uid: 21193 - type: DisposalPipe - components: - - pos: -2.5,-33.5 - parent: 0 - type: Transform -- uid: 21194 - type: DisposalPipe - components: - - pos: -2.5,-34.5 - parent: 0 - type: Transform -- uid: 21195 - type: DisposalPipe - components: - - pos: -2.5,-35.5 - parent: 0 - type: Transform -- uid: 21196 - type: DisposalPipe - components: - - pos: -2.5,-36.5 - parent: 0 - type: Transform -- uid: 21197 - type: DisposalPipe - components: - - pos: -2.5,-37.5 - parent: 0 - type: Transform -- uid: 21198 - type: DisposalPipe - components: - - pos: -2.5,-38.5 - parent: 0 - type: Transform -- uid: 21199 - type: DisposalPipe - components: - - pos: -2.5,-39.5 - parent: 0 - type: Transform -- uid: 21200 - type: DisposalPipe - components: - - pos: -2.5,-40.5 - parent: 0 - type: Transform -- uid: 21201 - type: DisposalPipe - components: - - pos: -2.5,-41.5 - parent: 0 - type: Transform -- uid: 21202 - type: DisposalPipe - components: - - pos: -2.5,-42.5 - parent: 0 - type: Transform -- uid: 21203 - type: DisposalPipe - components: - - pos: -2.5,-43.5 - parent: 0 - type: Transform -- uid: 21204 - type: DisposalPipe - components: - - pos: -2.5,-44.5 - parent: 0 - type: Transform -- uid: 21205 - type: DisposalPipe - components: - - pos: -2.5,-45.5 - parent: 0 - type: Transform -- uid: 21206 - type: DisposalPipe - components: - - pos: -2.5,-46.5 - parent: 0 - type: Transform -- uid: 21207 - type: DisposalPipe - components: - - pos: -2.5,-47.5 - parent: 0 - type: Transform -- uid: 21208 - type: DisposalPipe - components: - - pos: -2.5,-48.5 - parent: 0 - type: Transform -- uid: 21209 - type: DisposalPipe - components: - - pos: -2.5,-49.5 - parent: 0 - type: Transform -- uid: 21210 - type: DisposalPipe - components: - - pos: -2.5,-50.5 - parent: 0 - type: Transform -- uid: 21211 - type: DisposalPipe - components: - - pos: -2.5,-51.5 - parent: 0 - type: Transform -- uid: 21212 - type: DisposalPipe - components: - - pos: -2.5,-52.5 - parent: 0 - type: Transform -- uid: 21213 - type: DisposalPipe - components: - - pos: -2.5,-53.5 - parent: 0 - type: Transform -- uid: 21214 - type: DisposalPipe - components: - - pos: -2.5,-54.5 - parent: 0 - type: Transform -- uid: 21215 - type: DisposalPipe - components: - - pos: -2.5,-55.5 - parent: 0 - type: Transform -- uid: 21216 - type: DisposalPipe - components: - - pos: -2.5,-56.5 - parent: 0 - type: Transform -- uid: 21217 - type: DisposalPipe - components: - - pos: -2.5,-57.5 - parent: 0 - type: Transform -- uid: 21218 - type: DisposalPipe - components: - - pos: -2.5,-58.5 - parent: 0 - type: Transform -- uid: 21219 - type: DisposalPipe - components: - - pos: -2.5,-59.5 - parent: 0 - type: Transform -- uid: 21220 - type: DisposalPipe - components: - - pos: -2.5,-60.5 - parent: 0 - type: Transform -- uid: 21221 - type: DisposalPipe - components: - - pos: -2.5,-61.5 - parent: 0 - type: Transform -- uid: 21222 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 5.5,-26.5 - parent: 0 - type: Transform -- uid: 21223 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-27.5 - parent: 0 - type: Transform -- uid: 21224 - type: DisposalTrunk - components: - - pos: 14.5,-34.5 - parent: 0 - type: Transform -- uid: 21225 - type: DisposalTrunk - components: - - pos: 4.5,-37.5 - parent: 0 - type: Transform -- uid: 21226 - type: DisposalTrunk - components: - - pos: 21.5,-28.5 - parent: 0 - type: Transform -- uid: 21227 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-29.5 - parent: 0 - type: Transform -- uid: 21228 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-27.5 - parent: 0 - type: Transform -- uid: 21229 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-35.5 - parent: 0 - type: Transform -- uid: 21230 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 4.5,-38.5 - parent: 0 - type: Transform -- uid: 21231 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-29.5 - parent: 0 - type: Transform -- uid: 21232 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-29.5 - parent: 0 - type: Transform -- uid: 21233 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-29.5 - parent: 0 - type: Transform -- uid: 21234 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-29.5 - parent: 0 - type: Transform -- uid: 21235 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-29.5 - parent: 0 - type: Transform -- uid: 21236 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-29.5 - parent: 0 - type: Transform -- uid: 21237 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-29.5 - parent: 0 - type: Transform -- uid: 21238 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-29.5 - parent: 0 - type: Transform -- uid: 21239 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-29.5 - parent: 0 - type: Transform -- uid: 21240 - type: DisposalPipe - components: - - pos: 11.5,-28.5 - parent: 0 - type: Transform -- uid: 21241 - type: DisposalJunctionFlipped - components: - - pos: 11.5,-29.5 - parent: 0 - type: Transform -- uid: 21242 - type: DisposalPipe - components: - - pos: 11.5,-30.5 - parent: 0 - type: Transform -- uid: 21243 - type: DisposalPipe - components: - - pos: 11.5,-31.5 - parent: 0 - type: Transform -- uid: 21244 - type: DisposalPipe - components: - - pos: 11.5,-32.5 - parent: 0 - type: Transform -- uid: 21245 - type: DisposalPipe - components: - - pos: 11.5,-33.5 - parent: 0 - type: Transform -- uid: 21246 - type: DisposalPipe - components: - - pos: 11.5,-34.5 - parent: 0 - type: Transform -- uid: 21247 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-35.5 - parent: 0 - type: Transform -- uid: 21248 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-35.5 - parent: 0 - type: Transform -- uid: 21249 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-35.5 - parent: 0 - type: Transform -- uid: 21250 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-38.5 - parent: 0 - type: Transform -- uid: 21251 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-38.5 - parent: 0 - type: Transform -- uid: 21252 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-37.5 - parent: 0 - type: Transform -- uid: 21253 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-36.5 - parent: 0 - type: Transform -- uid: 21254 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-35.5 - parent: 0 - type: Transform -- uid: 21255 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-35.5 - parent: 0 - type: Transform -- uid: 21256 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-35.5 - parent: 0 - type: Transform -- uid: 21257 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-35.5 - parent: 0 - type: Transform -- uid: 21258 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 6.5,-35.5 - parent: 0 - type: Transform -- uid: 21259 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-34.5 - parent: 0 - type: Transform -- uid: 21260 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-33.5 - parent: 0 - type: Transform -- uid: 21261 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-32.5 - parent: 0 - type: Transform -- uid: 21262 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-31.5 - parent: 0 - type: Transform -- uid: 21263 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-30.5 - parent: 0 - type: Transform -- uid: 21264 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-29.5 - parent: 0 - type: Transform -- uid: 21265 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-28.5 - parent: 0 - type: Transform -- uid: 21266 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-27.5 - parent: 0 - type: Transform -- uid: 21267 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,-26.5 - parent: 0 - type: Transform -- uid: 21268 - type: DisposalBend - components: - - pos: 6.5,-25.5 - parent: 0 - type: Transform -- uid: 21269 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-25.5 - parent: 0 - type: Transform -- uid: 21270 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 0 - type: Transform -- uid: 21271 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 0 - type: Transform -- uid: 21272 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 0 - type: Transform -- uid: 21273 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-25.5 - parent: 0 - type: Transform -- uid: 21274 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 0 - type: Transform -- uid: 21275 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-25.5 - parent: 0 - type: Transform -- uid: 21276 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 0 - type: Transform -- uid: 21277 - type: CableHV - components: - - pos: -36.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21278 - type: CableHV - components: - - pos: -36.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21279 - type: CableHV - components: - - pos: -37.5,-62.5 - parent: 0 - type: Transform -- uid: 21280 - type: CableHV - components: - - pos: -37.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21281 - type: CableHV - components: - - pos: -37.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21282 - type: CableHV - components: - - pos: -36.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21283 - type: CableHV - components: - - pos: -35.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21284 - type: CableHV - components: - - pos: -34.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21285 - type: CableHV - components: - - pos: -33.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21286 - type: CableHV - components: - - pos: -32.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21287 - type: CableHV - components: - - pos: -31.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21288 - type: CableHV - components: - - pos: -30.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21289 - type: CableHV - components: - - pos: -29.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21290 - type: CableHV - components: - - pos: -28.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21291 - type: CableHV - components: - - pos: -27.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21292 - type: CableHV - components: - - pos: -26.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21293 - type: CableHV - components: - - pos: -25.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21294 - type: CableHV - components: - - pos: -24.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21295 - type: CableHV - components: - - pos: -23.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21296 - type: CableHV - components: - - pos: -22.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21297 - type: CableHV - components: - - pos: -21.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21298 - type: CableHV - components: - - pos: -20.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21299 - type: CableHV - components: - - pos: -20.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21300 - type: CableHV - components: - - pos: -20.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21301 - type: CableHV - components: - - pos: -19.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21302 - type: CableHV - components: - - pos: -18.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21303 - type: CableHV - components: - - pos: -17.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21304 - type: CableHV - components: - - pos: -16.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21305 - type: CableHV - components: - - pos: -15.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21306 - type: CableHV - components: - - pos: -14.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21307 - type: CableHV - components: - - pos: -13.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21308 - type: CableHV - components: - - pos: -12.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21309 - type: CableHV - components: - - pos: -11.5,-62.5 - parent: 0 - type: Transform -- uid: 21310 - type: CableHV - components: - - pos: -10.5,-62.5 - parent: 0 - type: Transform -- uid: 21311 - type: CableHV - components: - - pos: -9.5,-62.5 - parent: 0 - type: Transform -- uid: 21312 - type: CableHV - components: - - pos: -8.5,-62.5 - parent: 0 - type: Transform -- uid: 21313 - type: CableHV - components: - - pos: -7.5,-62.5 - parent: 0 - type: Transform -- uid: 21314 - type: CableHV - components: - - pos: -6.5,-62.5 - parent: 0 - type: Transform -- uid: 21315 - type: CableHV - components: - - pos: -5.5,-62.5 - parent: 0 - type: Transform -- uid: 21316 - type: CableHV - components: - - pos: -4.5,-62.5 - parent: 0 - type: Transform -- uid: 21317 - type: CableHV - components: - - pos: -3.5,-62.5 - parent: 0 - type: Transform -- uid: 21318 - type: CableHV - components: - - pos: -2.5,-62.5 - parent: 0 - type: Transform -- uid: 21319 - type: CableHV - components: - - pos: -1.5,-62.5 - parent: 0 - type: Transform -- uid: 21320 - type: CableHV - components: - - pos: -0.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21321 - type: CableHV - components: - - pos: 0.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21322 - type: CableHV - components: - - pos: 1.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21323 - type: CableHV - components: - - pos: 2.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21324 - type: CableHV - components: - - pos: 3.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21325 - type: CableHV - components: - - pos: 4.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21326 - type: CableHV - components: - - pos: 5.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21327 - type: CableHV - components: - - pos: 6.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21328 - type: CableHV - components: - - pos: 6.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21329 - type: CableHV - components: - - pos: 6.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21330 - type: CableHV - components: - - pos: 6.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21331 - type: CableHV - components: - - pos: 6.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21332 - type: CableHV - components: - - pos: 7.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21333 - type: CableHV - components: - - pos: 8.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21334 - type: CableHV - components: - - pos: 9.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21335 - type: CableHV - components: - - pos: 10.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21336 - type: CableHV - components: - - pos: 11.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21337 - type: CableHV - components: - - pos: 12.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21338 - type: CableHV - components: - - pos: 13.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21339 - type: CableHV - components: - - pos: 14.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21340 - type: CableHV - components: - - pos: 15.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21341 - type: CableHV - components: - - pos: 16.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21342 - type: CableHV - components: - - pos: 17.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21343 - type: CableHV - components: - - pos: 18.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21344 - type: CableHV - components: - - pos: 18.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21345 - type: CableHV - components: - - pos: 18.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21346 - type: CableHV - components: - - pos: 18.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21347 - type: CableHV - components: - - pos: 18.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21348 - type: CableHV - components: - - pos: 18.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21349 - type: CableHV - components: - - pos: 18.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21350 - type: CableHV - components: - - pos: 18.5,-50.5 - parent: 0 - type: Transform -- uid: 21351 - type: CableHV - components: - - pos: 18.5,-49.5 - parent: 0 - type: Transform -- uid: 21352 - type: CableHV - components: - - pos: 18.5,-48.5 - parent: 0 - type: Transform -- uid: 21353 - type: CableHV - components: - - pos: 18.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21354 - type: CableHV - components: - - pos: 18.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21355 - type: CableHV - components: - - pos: 18.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21356 - type: CableHV - components: - - pos: 19.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21357 - type: CableHV - components: - - pos: 20.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21358 - type: CableHV - components: - - pos: 21.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21359 - type: CableHV - components: - - pos: 22.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21360 - type: CableHV - components: - - pos: 23.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21361 - type: CableHV - components: - - pos: 24.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21362 - type: CableHV - components: - - pos: 25.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21363 - type: CableHV - components: - - pos: 26.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21364 - type: CableHV - components: - - pos: 27.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21365 - type: CableHV - components: - - pos: 28.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21366 - type: CableHV - components: - - pos: 29.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21367 - type: CableHV - components: - - pos: 30.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21368 - type: CableHV - components: - - pos: 31.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21369 - type: CableHV - components: - - pos: 31.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21370 - type: CableHV - components: - - pos: 31.5,-43.5 - parent: 0 - type: Transform -- uid: 21371 - type: CableHV - components: - - pos: 31.5,-42.5 - parent: 0 - type: Transform -- uid: 21372 - type: CableHV - components: - - pos: 31.5,-41.5 - parent: 0 - type: Transform -- uid: 21373 - type: CableHV - components: - - pos: 31.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21374 - type: CableHV - components: - - pos: 31.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21375 - type: CableHV - components: - - pos: 31.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21376 - type: CableHV - components: - - pos: 31.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21377 - type: CableHV - components: - - pos: 31.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21378 - type: CableHV - components: - - pos: 31.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21379 - type: CableHV - components: - - pos: 31.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21380 - type: CableHV - components: - - pos: 31.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21381 - type: CableHV - components: - - pos: 40.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21382 - type: CableHV - components: - - pos: 40.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21383 - type: CableHV - components: - - pos: 40.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21384 - type: CableHV - components: - - pos: 40.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21385 - type: CableHV - components: - - pos: 39.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21386 - type: CableHV - components: - - pos: 38.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21387 - type: CableHV - components: - - pos: 37.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21388 - type: CableHV - components: - - pos: 36.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21389 - type: CableHV - components: - - pos: 35.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21390 - type: CableHV - components: - - pos: 34.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21391 - type: CableHV - components: - - pos: 33.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21392 - type: CableHV - components: - - pos: 32.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21393 - type: CableHV - components: - - pos: 31.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21394 - type: CableHV - components: - - pos: 31.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21395 - type: CableHV - components: - - pos: 31.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21396 - type: CableHV - components: - - pos: 31.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21397 - type: CableHV - components: - - pos: 31.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21398 - type: CableHV - components: - - pos: 31.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21399 - type: CableHV - components: - - pos: 31.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21400 - type: CableHV - components: - - pos: -39.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21401 - type: CableHV - components: - - pos: -39.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21402 - type: CableHV - components: - - pos: -39.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21403 - type: CableHV - components: - - pos: -39.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21404 - type: CableHV - components: - - pos: -39.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21405 - type: CableHV - components: - - pos: -39.5,-45.5 - parent: 0 - type: Transform -- uid: 21406 - type: CableHV - components: - - pos: -39.5,-46.5 - parent: 0 - type: Transform -- uid: 21407 - type: CableHV - components: - - pos: -39.5,-47.5 - parent: 0 - type: Transform -- uid: 21408 - type: CableHV - components: - - pos: -38.5,-47.5 - parent: 0 - type: Transform -- uid: 21409 - type: CableHV - components: - - pos: -38.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21410 - type: CableHV - components: - - pos: -38.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21411 - type: CableHV - components: - - pos: -38.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21412 - type: CableHV - components: - - pos: -38.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21413 - type: CableHV - components: - - pos: -39.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21414 - type: CableHV - components: - - pos: -39.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21415 - type: CableHV - components: - - pos: -39.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21416 - type: CableHV - components: - - pos: -39.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21417 - type: CableHV - components: - - pos: -39.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21418 - type: CableHV - components: - - pos: -39.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21419 - type: CableHV - components: - - pos: -38.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21420 - type: CableHV - components: - - pos: -38.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21421 - type: CableHV - components: - - pos: -38.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21422 - type: CableHV - components: - - pos: -38.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21423 - type: CableHV - components: - - pos: -38.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21424 - type: CableHV - components: - - pos: -7.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21425 - type: CableHV - components: - - pos: -6.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21426 - type: CableHV - components: - - pos: -6.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21427 - type: CableHV - components: - - pos: -6.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21428 - type: CableHV - components: - - pos: -6.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21429 - type: CableHV - components: - - pos: -6.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21430 - type: CableHV - components: - - pos: -6.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21431 - type: CableHV - components: - - pos: -6.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21432 - type: CableHV - components: - - pos: -6.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21433 - type: CableHV - components: - - pos: -6.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21434 - type: CableHV - components: - - pos: -6.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21435 - type: CableHV - components: - - pos: -6.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21436 - type: CableHV - components: - - pos: -6.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21437 - type: CableHV - components: - - pos: -6.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21438 - type: CableHV - components: - - pos: -6.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21439 - type: CableHV - components: - - pos: -6.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21440 - type: CableHV - components: - - pos: -6.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21441 - type: CableHV - components: - - pos: -6.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21442 - type: CableHV - components: - - pos: -6.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21443 - type: CableHV - components: - - pos: -13.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21444 - type: CableHV - components: - - pos: -13.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21445 - type: CableHV - components: - - pos: -13.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21446 - type: CableHV - components: - - pos: -13.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21447 - type: CableHV - components: - - pos: -12.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21448 - type: CableHV - components: - - pos: -11.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21449 - type: CableHV - components: - - pos: -10.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21450 - type: CableHV - components: - - pos: -9.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21451 - type: CableHV - components: - - pos: -8.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21452 - type: CableHV - components: - - pos: -7.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21453 - type: CableApcExtension - components: - - pos: 1.5,-41.5 - parent: 0 - type: Transform -- uid: 21454 - type: Grille - components: - - pos: 0.5,-22.5 - parent: 0 - type: Transform -- uid: 21455 - type: CableApcExtension - components: - - pos: 22.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21456 - type: CableApcExtension - components: - - pos: 20.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21457 - type: CableApcExtension - components: - - pos: 19.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21458 - type: CableApcExtension - components: - - pos: 21.5,-34.5 - parent: 0 - type: Transform -- uid: 21459 - type: CableApcExtension - components: - - pos: 21.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21460 - type: CableApcExtension - components: - - pos: 22.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21461 - type: CableApcExtension - components: - - pos: 20.5,-35.5 - parent: 0 - type: Transform -- uid: 21462 - type: CableApcExtension - components: - - pos: 19.5,-35.5 - parent: 0 - type: Transform -- uid: 21463 - type: CableApcExtension - components: - - pos: 19.5,-34.5 - parent: 0 - type: Transform -- uid: 21464 - type: CableApcExtension - components: - - pos: 19.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21465 - type: CableApcExtension - components: - - pos: 25.5,-35.5 - parent: 0 - type: Transform -- uid: 21466 - type: CableApcExtension - components: - - pos: 26.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21467 - type: CableApcExtension - components: - - pos: 26.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21468 - type: CableApcExtension - components: - - pos: 27.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21469 - type: CableApcExtension - components: - - pos: 29.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21470 - type: CableApcExtension - components: - - pos: 14.5,-48.5 - parent: 0 - type: Transform -- uid: 21471 - type: CableApcExtension - components: - - pos: 15.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21472 - type: CableApcExtension - components: - - pos: 14.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21473 - type: CableApcExtension - components: - - pos: 13.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21474 - type: CableApcExtension - components: - - pos: 10.5,-49.5 - parent: 0 - type: Transform -- uid: 21475 - type: CableApcExtension - components: - - pos: 10.5,-48.5 - parent: 0 - type: Transform -- uid: 21476 - type: CableApcExtension - components: - - pos: 9.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21477 - type: CableApcExtension - components: - - pos: 10.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21478 - type: CableApcExtension - components: - - pos: 11.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21479 - type: AirlockMaintChapelLocked - components: - - pos: -29.5,-62.5 - parent: 0 - type: Transform -- uid: 21480 - type: AirlockMaintChapelLocked - components: - - pos: -25.5,-62.5 - parent: 0 - type: Transform -- uid: 21481 - type: AirlockChapelLocked - components: - - pos: -28.5,-66.5 - parent: 0 - type: Transform -- uid: 21482 - type: AirlockChapelGlassLocked - components: - - pos: -24.5,-68.5 - parent: 0 - type: Transform -- uid: 21483 - type: AirlockChapelGlassLocked - components: - - pos: -22.5,-70.5 - parent: 0 - type: Transform -- uid: 21484 - type: WoodDoor - components: - - pos: -23.5,-67.5 - parent: 0 - type: Transform -- uid: 21485 - type: WoodDoor - components: - - pos: -21.5,-65.5 - parent: 0 - type: Transform -- uid: 21486 - type: TintedWindow - components: - - pos: -22.5,-66.5 - parent: 0 - type: Transform -- uid: 21487 - type: AirlockGlass - components: - - pos: -13.5,-66.5 - parent: 0 - type: Transform -- uid: 21488 - type: AirlockGlass - components: - - pos: -13.5,-65.5 - parent: 0 - type: Transform -- uid: 21489 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,-69.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21490 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-69.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21491 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-69.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21492 - type: GasPipeStraight - components: - - pos: -1.5,-68.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21493 - type: GasPipeStraight - components: - - pos: -1.5,-67.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21494 - type: GasPipeStraight - components: - - pos: -1.5,-66.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21495 - type: GasPipeStraight - components: - - pos: -1.5,-65.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21496 - type: GasPipeStraight - components: - - pos: -1.5,-64.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21497 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21498 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-69.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21499 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-69.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21500 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-69.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21501 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-69.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21502 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-69.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21503 - type: GasPipeTJunction - components: - - pos: -5.5,-70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21504 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-69.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21505 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-69.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21506 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-69.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21507 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -11.5,-69.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21508 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21509 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21510 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21511 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21512 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -5.5,-63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21513 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21514 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21515 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21516 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21517 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21518 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-66.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21519 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-67.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21520 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-68.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21521 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-65.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21522 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-64.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21523 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-66.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21524 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-66.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21525 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-66.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21526 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-66.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21527 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-66.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21528 - type: GasPipeStraight - components: - - pos: -16.5,-67.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21529 - type: GasPipeStraight - components: - - pos: -16.5,-68.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21530 - type: GasPipeStraight - components: - - pos: -16.5,-69.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21531 - type: GasPipeStraight - components: - - pos: -16.5,-70.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21532 - type: GasPipeStraight - components: - - pos: -16.5,-71.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21533 - type: GasPipeStraight - components: - - pos: -16.5,-72.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21534 - type: GasPipeBend - components: - - pos: -11.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21535 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -20.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21536 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21537 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-60.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21538 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-59.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21539 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-58.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21540 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21541 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21542 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21543 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21544 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21545 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21546 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21547 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21548 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21549 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21550 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21551 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21552 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21553 - type: GasPipeStraight - components: - - pos: -25.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21554 - type: GasPipeStraight - components: - - pos: -25.5,-63.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21555 - type: GasPipeStraight - components: - - pos: -25.5,-64.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21556 - type: GasPipeStraight - components: - - pos: -25.5,-65.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21557 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-66.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21558 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-66.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21559 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-66.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21560 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-66.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21561 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-66.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21562 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-66.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21563 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -25.5,-67.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21564 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -16.5,-73.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21565 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21566 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21567 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21568 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21569 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -10.5,-71.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21570 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-71.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21571 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21572 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21573 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21574 - type: GasPipeBend - components: - - pos: -9.5,-71.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21575 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-71.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21576 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-67.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21577 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21578 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21579 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21580 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21581 - type: GasPipeTJunction - components: - - pos: -7.5,-69.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21582 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21583 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-69.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21584 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-68.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21585 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-66.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21586 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21587 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-64.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21588 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21589 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21590 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21591 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21592 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -7.5,-62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21593 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21594 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-62.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21595 - type: GasPipeStraight - components: - - pos: -10.5,-63.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21596 - type: GasPipeStraight - components: - - pos: -10.5,-64.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21597 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21598 - type: GasPipeStraight - components: - - pos: -10.5,-66.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21599 - type: GasPipeStraight - components: - - pos: -10.5,-67.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21600 - type: GasPipeStraight - components: - - pos: -10.5,-68.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21601 - type: GasPipeStraight - components: - - pos: -10.5,-69.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21602 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-67.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21603 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-67.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21604 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-67.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21605 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-67.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21606 - type: GasPipeBend - components: - - pos: 1.5,-67.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21607 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 1.5,-68.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21608 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-69.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21609 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -11.5,-73.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21610 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -9.5,-73.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21611 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -3.5,-73.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21612 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21613 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21614 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21615 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21616 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21617 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21618 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21619 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21620 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21621 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-72.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21622 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-71.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21623 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-69.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21624 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-68.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21625 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-67.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21626 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-66.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21627 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21628 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21629 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21630 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21631 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21632 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-70.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21633 - type: GasPipeStraight - components: - - pos: -24.5,-69.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21634 - type: GasPipeStraight - components: - - pos: -24.5,-68.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21635 - type: GasPipeStraight - components: - - pos: -24.5,-67.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21636 - type: GasPipeStraight - components: - - pos: -24.5,-66.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21637 - type: GasPipeStraight - components: - - pos: -24.5,-65.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21638 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -24.5,-71.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21639 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -18.5,-73.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21640 - type: GasVentPump - components: - - pos: -24.5,-64.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21641 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-62.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21642 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-70.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21643 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -5.5,-71.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21644 - type: GasVentPump - components: - - pos: -7.5,-61.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21645 - type: GasVentScrubber - components: - - pos: -5.5,-61.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21646 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -7.5,-71.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21647 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -24.5,-72.5 - parent: 0 - type: Transform -- uid: 21648 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -25.5,-72.5 - parent: 0 - type: Transform -- uid: 21649 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-73.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21657 - type: SignalReceiver -- uid: 21650 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-71.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21657 - type: SignalReceiver -- uid: 21651 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-70.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21657 - type: SignalReceiver -- uid: 21652 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-69.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21657 - type: SignalReceiver -- uid: 21653 - type: ShuttersNormalOpen - components: - - pos: -31.5,-74.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21657 - type: SignalReceiver -- uid: 21654 - type: ShuttersNormalOpen - components: - - pos: -28.5,-74.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21657 - type: SignalReceiver -- uid: 21655 - type: ShuttersNormalOpen - components: - - pos: -27.5,-74.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21657 - type: SignalReceiver -- uid: 21656 - type: ShuttersNormalOpen - components: - - pos: -26.5,-74.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 21657 - type: SignalReceiver -- uid: 21657 - type: SignalButton - components: - - pos: -30.5,-72.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 21652 - - port: Toggle - uid: 21651 - - port: Toggle - uid: 21650 - - port: Toggle - uid: 21649 - - port: Toggle - uid: 21653 - - port: Toggle - uid: 21654 - - port: Toggle - uid: 21655 - - port: Toggle - uid: 21656 - type: SignalTransmitter -- uid: 21658 - type: SignChapel - components: - - pos: -13.5,-64.5 - parent: 0 - type: Transform -- uid: 21659 - type: TableWood - components: - - pos: -20.5,-64.5 - parent: 0 - type: Transform -- uid: 21660 - type: TableWood - components: - - pos: -19.5,-64.5 - parent: 0 - type: Transform -- uid: 21661 - type: TableWood - components: - - pos: -18.5,-64.5 - parent: 0 - type: Transform -- uid: 21662 - type: TableWood - components: - - pos: -16.5,-64.5 - parent: 0 - type: Transform -- uid: 21663 - type: TableWood - components: - - pos: -15.5,-64.5 - parent: 0 - type: Transform -- uid: 21664 - type: TableWood - components: - - pos: -14.5,-64.5 - parent: 0 - type: Transform -- uid: 21665 - type: TableWood - components: - - pos: -19.5,-72.5 - parent: 0 - type: Transform -- uid: 21666 - type: TableWood - components: - - pos: -19.5,-71.5 - parent: 0 - type: Transform -- uid: 21667 - type: TableWood - components: - - pos: -15.5,-72.5 - parent: 0 - type: Transform -- uid: 21668 - type: TableWood - components: - - pos: -15.5,-71.5 - parent: 0 - type: Transform -- uid: 21669 - type: TableWood - components: - - pos: -16.5,-71.5 - parent: 0 - type: Transform -- uid: 21670 - type: TableWood - components: - - pos: -18.5,-71.5 - parent: 0 - type: Transform -- uid: 21671 - type: TableWood - components: - - pos: -28.5,-69.5 - parent: 0 - type: Transform -- uid: 21672 - type: TableWood - components: - - pos: -26.5,-69.5 - parent: 0 - type: Transform -- uid: 21673 - type: TableWood - components: - - pos: -27.5,-69.5 - parent: 0 - type: Transform -- uid: 21674 - type: TableWood - components: - - pos: -27.5,-63.5 - parent: 0 - type: Transform -- uid: 21675 - type: TableWood - components: - - pos: -27.5,-64.5 - parent: 0 - type: Transform -- uid: 21676 - type: TableWood - components: - - pos: -27.5,-65.5 - parent: 0 - type: Transform -- uid: 21677 - type: TableWood - components: - - pos: -26.5,-65.5 - parent: 0 - type: Transform -- uid: 21678 - type: TableWood - components: - - pos: -25.5,-65.5 - parent: 0 - type: Transform -- uid: 21679 - type: TableWood - components: - - pos: -25.5,-64.5 - parent: 0 - type: Transform -- uid: 21680 - type: VendingMachineChapel - components: - - flags: SessionSpecific - type: MetaData - - pos: -22.5,-63.5 - parent: 0 - type: Transform -- uid: 21681 - type: TableWood - components: - - pos: -31.5,-73.5 - parent: 0 - type: Transform -- uid: 21682 - type: Bookshelf - components: - - pos: -24.5,-73.5 - parent: 0 - type: Transform -- uid: 21683 - type: ChairWood - components: - - pos: -22.5,-65.5 - parent: 0 - type: Transform -- uid: 21684 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -22.5,-67.5 - parent: 0 - type: Transform -- uid: 21685 - type: AltarSpawner - components: - - pos: -17.5,-71.5 - parent: 0 - type: Transform -- uid: 21686 - type: Carpet - components: - - pos: -13.5,-66.5 - parent: 0 - type: Transform -- uid: 21687 - type: Carpet - components: - - pos: -13.5,-65.5 - parent: 0 - type: Transform -- uid: 21688 - type: Carpet - components: - - pos: -14.5,-66.5 - parent: 0 - type: Transform -- uid: 21689 - type: Carpet - components: - - pos: -14.5,-65.5 - parent: 0 - type: Transform -- uid: 21690 - type: Carpet - components: - - pos: -15.5,-66.5 - parent: 0 - type: Transform -- uid: 21691 - type: Carpet - components: - - pos: -15.5,-65.5 - parent: 0 - type: Transform -- uid: 21692 - type: Carpet - components: - - pos: -16.5,-66.5 - parent: 0 - type: Transform -- uid: 21693 - type: Carpet - components: - - pos: -16.5,-65.5 - parent: 0 - type: Transform -- uid: 21694 - type: Carpet - components: - - pos: -17.5,-66.5 - parent: 0 - type: Transform -- uid: 21695 - type: Carpet - components: - - pos: -17.5,-65.5 - parent: 0 - type: Transform -- uid: 21696 - type: Carpet - components: - - pos: -18.5,-66.5 - parent: 0 - type: Transform -- uid: 21697 - type: Carpet - components: - - pos: -18.5,-65.5 - parent: 0 - type: Transform -- uid: 21698 - type: Carpet - components: - - pos: -19.5,-66.5 - parent: 0 - type: Transform -- uid: 21699 - type: Carpet - components: - - pos: -19.5,-65.5 - parent: 0 - type: Transform -- uid: 21700 - type: Carpet - components: - - pos: -20.5,-66.5 - parent: 0 - type: Transform -- uid: 21701 - type: Carpet - components: - - pos: -20.5,-65.5 - parent: 0 - type: Transform -- uid: 21702 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-73.5 - parent: 0 - type: Transform -- uid: 21703 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-73.5 - parent: 0 - type: Transform -- uid: 21704 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -13.5,-73.5 - parent: 0 - type: Transform -- uid: 21705 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -20.5,-73.5 - parent: 0 - type: Transform -- uid: 21706 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -20.5,-71.5 - parent: 0 - type: Transform -- uid: 21707 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -20.5,-69.5 - parent: 0 - type: Transform -- uid: 21708 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -20.5,-67.5 - parent: 0 - type: Transform -- uid: 21709 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -13.5,-71.5 - parent: 0 - type: Transform -- uid: 21710 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -13.5,-69.5 - parent: 0 - type: Transform -- uid: 21711 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-72.5 - parent: 0 - type: Transform -- uid: 21712 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-70.5 - parent: 0 - type: Transform -- uid: 21713 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-72.5 - parent: 0 - type: Transform -- uid: 21714 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-70.5 - parent: 0 - type: Transform -- uid: 21715 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-68.5 - parent: 0 - type: Transform -- uid: 21716 - type: CarpetChapel - components: - - pos: -21.5,-72.5 - parent: 0 - type: Transform -- uid: 21717 - type: CarpetChapel - components: - - pos: -14.5,-72.5 - parent: 0 - type: Transform -- uid: 21718 - type: CarpetChapel - components: - - pos: -14.5,-70.5 - parent: 0 - type: Transform -- uid: 21719 - type: CarpetChapel - components: - - pos: -14.5,-68.5 - parent: 0 - type: Transform -- uid: 21720 - type: CarpetChapel - components: - - pos: -21.5,-70.5 - parent: 0 - type: Transform -- uid: 21721 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-69.5 - parent: 0 - type: Transform -- uid: 21722 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-71.5 - parent: 0 - type: Transform -- uid: 21723 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-71.5 - parent: 0 - type: Transform -- uid: 21724 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-69.5 - parent: 0 - type: Transform -- uid: 21725 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-67.5 - parent: 0 - type: Transform -- uid: 21726 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-67.5 - parent: 0 - type: Transform -- uid: 21727 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-67.5 - parent: 0 - type: Transform -- uid: 21728 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-69.5 - parent: 0 - type: Transform -- uid: 21729 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-69.5 - parent: 0 - type: Transform -- uid: 21730 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -18.5,-67.5 - parent: 0 - type: Transform -- uid: 21731 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -15.5,-67.5 - parent: 0 - type: Transform -- uid: 21732 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -15.5,-69.5 - parent: 0 - type: Transform -- uid: 21733 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-70.5 - parent: 0 - type: Transform -- uid: 21734 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-70.5 - parent: 0 - type: Transform -- uid: 21735 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-68.5 - parent: 0 - type: Transform -- uid: 21736 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-68.5 - parent: 0 - type: Transform -- uid: 21737 - type: CarpetChapel - components: - - pos: -19.5,-70.5 - parent: 0 - type: Transform -- uid: 21738 - type: CarpetChapel - components: - - pos: -19.5,-68.5 - parent: 0 - type: Transform -- uid: 21739 - type: CarpetChapel - components: - - pos: -16.5,-70.5 - parent: 0 - type: Transform -- uid: 21740 - type: CarpetChapel - components: - - pos: -16.5,-68.5 - parent: 0 - type: Transform -- uid: 21741 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -18.5,-69.5 - parent: 0 - type: Transform -- uid: 21742 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-73.5 - parent: 0 - type: Transform -- uid: 21743 - type: ChairWood - components: - - pos: -18.5,-69.5 - parent: 0 - type: Transform -- uid: 21744 - type: ChairWood - components: - - pos: -19.5,-69.5 - parent: 0 - type: Transform -- uid: 21745 - type: ChairWood - components: - - pos: -19.5,-68.5 - parent: 0 - type: Transform -- uid: 21746 - type: ChairWood - components: - - pos: -18.5,-68.5 - parent: 0 - type: Transform -- uid: 21747 - type: ChairWood - components: - - pos: -18.5,-67.5 - parent: 0 - type: Transform -- uid: 21748 - type: ChairWood - components: - - pos: -19.5,-67.5 - parent: 0 - type: Transform -- uid: 21749 - type: ChairWood - components: - - pos: -16.5,-69.5 - parent: 0 - type: Transform -- uid: 21750 - type: ChairWood - components: - - pos: -15.5,-69.5 - parent: 0 - type: Transform -- uid: 21751 - type: ChairWood - components: - - pos: -15.5,-68.5 - parent: 0 - type: Transform -- uid: 21752 - type: ChairWood - components: - - pos: -16.5,-68.5 - parent: 0 - type: Transform -- uid: 21753 - type: ChairWood - components: - - pos: -16.5,-67.5 - parent: 0 - type: Transform -- uid: 21754 - type: ChairWood - components: - - pos: -15.5,-67.5 - parent: 0 - type: Transform -- uid: 21755 - type: APCBasic - components: - - pos: -19.5,-63.5 - parent: 0 - type: Transform -- uid: 21756 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-65.5 - parent: 0 - type: Transform -- uid: 21757 - type: CableMV - components: - - pos: -19.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21758 - type: CableMV - components: - - pos: -19.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21759 - type: CableMV - components: - - pos: -19.5,-61.5 - parent: 0 - type: Transform -- uid: 21760 - type: CableMV - components: - - pos: -20.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21761 - type: CableMV - components: - - pos: -21.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21762 - type: CableMV - components: - - pos: -22.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21763 - type: CableMV - components: - - pos: -23.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21764 - type: CableMV - components: - - pos: -24.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21765 - type: CableMV - components: - - pos: -25.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21766 - type: CableMV - components: - - pos: -26.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21767 - type: CableMV - components: - - pos: -27.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21768 - type: CableMV - components: - - pos: -28.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21769 - type: CableMV - components: - - pos: -29.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21770 - type: CableMV - components: - - pos: -30.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21771 - type: CableMV - components: - - pos: -31.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21772 - type: CableMV - components: - - pos: -32.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21773 - type: CableMV - components: - - pos: -33.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21774 - type: CableMV - components: - - pos: -33.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21775 - type: CableMV - components: - - pos: -34.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21776 - type: CableMV - components: - - pos: -35.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21777 - type: CableMV - components: - - pos: -36.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21778 - type: CableMV - components: - - pos: -0.5,-65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21779 - type: CableMV - components: - - pos: 0.5,-65.5 - parent: 0 - type: Transform -- uid: 21780 - type: CableMV - components: - - pos: 1.5,-65.5 - parent: 0 - type: Transform -- uid: 21781 - type: CableMV - components: - - pos: 1.5,-64.5 - parent: 0 - type: Transform -- uid: 21782 - type: CableMV - components: - - pos: 1.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21783 - type: CableMV - components: - - pos: 1.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21784 - type: CableMV - components: - - pos: 2.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21785 - type: CableMV - components: - - pos: 3.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21786 - type: CableMV - components: - - pos: 4.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21787 - type: CableMV - components: - - pos: 5.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21788 - type: CableMV - components: - - pos: 6.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21789 - type: CableMV - components: - - pos: 6.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21790 - type: CableMV - components: - - pos: 6.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21791 - type: CableMV - components: - - pos: 6.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21792 - type: CableMV - components: - - pos: 6.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21793 - type: TableWood - components: - - pos: -23.5,-69.5 - parent: 0 - type: Transform -- uid: 21794 - type: TableWood - components: - - pos: -23.5,-71.5 - parent: 0 - type: Transform -- uid: 21795 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-73.5 - parent: 0 - type: Transform -- uid: 21796 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-71.5 - parent: 0 - type: Transform -- uid: 21797 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-69.5 - parent: 0 - type: Transform -- uid: 21798 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-72.5 - parent: 0 - type: Transform -- uid: 21799 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-71.5 - parent: 0 - type: Transform -- uid: 21800 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-69.5 - parent: 0 - type: Transform -- uid: 21801 - type: Chair - components: - - pos: -27.5,-70.5 - parent: 0 - type: Transform -- uid: 21802 - type: Chair - components: - - pos: -27.5,-71.5 - parent: 0 - type: Transform -- uid: 21803 - type: TableReinforced - components: - - pos: -27.5,-73.5 - parent: 0 - type: Transform -- uid: 21804 - type: Chair - components: - - pos: -28.5,-71.5 - parent: 0 - type: Transform -- uid: 21805 - type: HospitalCurtainsOpen - components: - - pos: -30.5,-73.5 - parent: 0 - type: Transform -- uid: 21806 - type: FoodPoppy - components: - - pos: -31.49961,-73.40545 - parent: 0 - type: Transform -- uid: 21807 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-71.5 - parent: 0 - type: Transform -- uid: 21808 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-69.5 - parent: 0 - type: Transform -- uid: 21809 - type: WindoorChapelLocked - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-70.5 - parent: 0 - type: Transform -- uid: 21810 - type: Crematorium - components: - - pos: -30.5,-63.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21811 - type: Morgue - components: - - rot: 3.141592653589793 rad - pos: -30.5,-67.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21812 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-71.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21813 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-70.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21814 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-69.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21815 - type: Chair - components: - - pos: -28.5,-70.5 - parent: 0 - type: Transform -- uid: 21816 - type: WoodDoor - components: - - pos: -23.5,-63.5 - parent: 0 - type: Transform -- uid: 21817 - type: SpawnPointChaplain - components: - - pos: -24.5,-65.5 - parent: 0 - type: Transform -- uid: 21818 - type: WardrobeChapelFilled - components: - - pos: -27.5,-67.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21819 - type: CrayonBox - components: - - pos: -27.5,-65.5 - parent: 0 - type: Transform -- uid: 21820 - type: Lamp - components: - - pos: -27.522722,-64.31669 - parent: 0 - type: Transform -- uid: 21821 - type: ChairOfficeDark - components: - - pos: -26.5,-64.5 - parent: 0 - type: Transform -- uid: 21822 - type: BoxFolderGrey - components: - - pos: -26.616472,-65.44169 - parent: 0 - type: Transform -- uid: 21823 - type: Table - components: - - pos: -29.5,-67.5 - parent: 0 - type: Transform -- uid: 21824 - type: BoxBodyBag - components: - - pos: -29.507097,-67.36356 - parent: 0 - type: Transform -- uid: 21825 - type: CableApcExtension - components: - - pos: -19.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21826 - type: CableApcExtension - components: - - pos: -19.5,-64.5 - parent: 0 - type: Transform -- uid: 21827 - type: CableApcExtension - components: - - pos: -18.5,-64.5 - parent: 0 - type: Transform -- uid: 21828 - type: CableApcExtension - components: - - pos: -17.5,-64.5 - parent: 0 - type: Transform -- uid: 21829 - type: CableApcExtension - components: - - pos: -17.5,-65.5 - parent: 0 - type: Transform -- uid: 21830 - type: CableApcExtension - components: - - pos: -17.5,-66.5 - parent: 0 - type: Transform -- uid: 21831 - type: CableApcExtension - components: - - pos: -17.5,-67.5 - parent: 0 - type: Transform -- uid: 21832 - type: CableApcExtension - components: - - pos: -17.5,-68.5 - parent: 0 - type: Transform -- uid: 21833 - type: CableApcExtension - components: - - pos: -17.5,-69.5 - parent: 0 - type: Transform -- uid: 21834 - type: CableApcExtension - components: - - pos: -17.5,-70.5 - parent: 0 - type: Transform -- uid: 21835 - type: CableApcExtension - components: - - pos: -17.5,-71.5 - parent: 0 - type: Transform -- uid: 21836 - type: CableApcExtension - components: - - pos: -17.5,-72.5 - parent: 0 - type: Transform -- uid: 21837 - type: CableApcExtension - components: - - pos: -17.5,-73.5 - parent: 0 - type: Transform -- uid: 21838 - type: CableApcExtension - components: - - pos: -16.5,-70.5 - parent: 0 - type: Transform -- uid: 21839 - type: CableApcExtension - components: - - pos: -15.5,-70.5 - parent: 0 - type: Transform -- uid: 21840 - type: CableApcExtension - components: - - pos: -14.5,-70.5 - parent: 0 - type: Transform -- uid: 21841 - type: CableApcExtension - components: - - pos: -18.5,-70.5 - parent: 0 - type: Transform -- uid: 21842 - type: CableApcExtension - components: - - pos: -19.5,-70.5 - parent: 0 - type: Transform -- uid: 21843 - type: CableApcExtension - components: - - pos: -20.5,-70.5 - parent: 0 - type: Transform -- uid: 21844 - type: CableApcExtension - components: - - pos: -21.5,-70.5 - parent: 0 - type: Transform -- uid: 21845 - type: CableApcExtension - components: - - pos: -22.5,-70.5 - parent: 0 - type: Transform -- uid: 21846 - type: CableApcExtension - components: - - pos: -23.5,-70.5 - parent: 0 - type: Transform -- uid: 21847 - type: CableApcExtension - components: - - pos: -24.5,-70.5 - parent: 0 - type: Transform -- uid: 21848 - type: CableApcExtension - components: - - pos: -25.5,-70.5 - parent: 0 - type: Transform -- uid: 21849 - type: CableApcExtension - components: - - pos: -26.5,-70.5 - parent: 0 - type: Transform -- uid: 21850 - type: CableApcExtension - components: - - pos: -27.5,-70.5 - parent: 0 - type: Transform -- uid: 21851 - type: CableApcExtension - components: - - pos: -28.5,-70.5 - parent: 0 - type: Transform -- uid: 21852 - type: CableApcExtension - components: - - pos: -29.5,-70.5 - parent: 0 - type: Transform -- uid: 21853 - type: CableApcExtension - components: - - pos: -26.5,-71.5 - parent: 0 - type: Transform -- uid: 21854 - type: CableApcExtension - components: - - pos: -26.5,-72.5 - parent: 0 - type: Transform -- uid: 21855 - type: CableApcExtension - components: - - pos: -26.5,-73.5 - parent: 0 - type: Transform -- uid: 21856 - type: CableApcExtension - components: - - pos: -29.5,-71.5 - parent: 0 - type: Transform -- uid: 21857 - type: CableApcExtension - components: - - pos: -29.5,-72.5 - parent: 0 - type: Transform -- uid: 21858 - type: CableApcExtension - components: - - pos: -29.5,-73.5 - parent: 0 - type: Transform -- uid: 21859 - type: CableApcExtension - components: - - pos: -24.5,-69.5 - parent: 0 - type: Transform -- uid: 21860 - type: CableApcExtension - components: - - pos: -24.5,-68.5 - parent: 0 - type: Transform -- uid: 21861 - type: CableApcExtension - components: - - pos: -24.5,-67.5 - parent: 0 - type: Transform -- uid: 21862 - type: CableApcExtension - components: - - pos: -24.5,-66.5 - parent: 0 - type: Transform -- uid: 21863 - type: CableApcExtension - components: - - pos: -24.5,-65.5 - parent: 0 - type: Transform -- uid: 21864 - type: CableApcExtension - components: - - pos: -24.5,-64.5 - parent: 0 - type: Transform -- uid: 21865 - type: CableApcExtension - components: - - pos: -25.5,-66.5 - parent: 0 - type: Transform -- uid: 21866 - type: CableApcExtension - components: - - pos: -26.5,-66.5 - parent: 0 - type: Transform -- uid: 21867 - type: CableApcExtension - components: - - pos: -27.5,-66.5 - parent: 0 - type: Transform -- uid: 21868 - type: CableApcExtension - components: - - pos: -28.5,-66.5 - parent: 0 - type: Transform -- uid: 21869 - type: CableApcExtension - components: - - pos: -29.5,-66.5 - parent: 0 - type: Transform -- uid: 21870 - type: CableApcExtension - components: - - pos: -29.5,-65.5 - parent: 0 - type: Transform -- uid: 21871 - type: CableApcExtension - components: - - pos: -29.5,-64.5 - parent: 0 - type: Transform -- uid: 21872 - type: CableApcExtension - components: - - pos: -29.5,-63.5 - parent: 0 - type: Transform -- uid: 21873 - type: CableApcExtension - components: - - pos: -24.5,-63.5 - parent: 0 - type: Transform -- uid: 21874 - type: CableApcExtension - components: - - pos: -25.5,-63.5 - parent: 0 - type: Transform -- uid: 21875 - type: CableApcExtension - components: - - pos: -25.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21876 - type: CableApcExtension - components: - - pos: -25.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21877 - type: CableApcExtension - components: - - pos: -24.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21878 - type: CableApcExtension - components: - - pos: -23.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21879 - type: CableApcExtension - components: - - pos: -22.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21880 - type: CableApcExtension - components: - - pos: -21.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21881 - type: CableApcExtension - components: - - pos: -20.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21882 - type: CableApcExtension - components: - - pos: -19.5,-61.5 - parent: 0 - type: Transform -- uid: 21883 - type: CableApcExtension - components: - - pos: -19.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21884 - type: CableApcExtension - components: - - pos: -18.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21885 - type: CableApcExtension - components: - - pos: -17.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21886 - type: CableApcExtension - components: - - pos: -16.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21887 - type: CableApcExtension - components: - - pos: -15.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21888 - type: CableApcExtension - components: - - pos: -14.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21889 - type: CableApcExtension - components: - - pos: -13.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21890 - type: CableApcExtension - components: - - pos: -25.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21891 - type: CableApcExtension - components: - - pos: -26.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21892 - type: CableApcExtension - components: - - pos: -27.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21893 - type: CableApcExtension - components: - - pos: -28.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21894 - type: CableApcExtension - components: - - pos: -29.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21895 - type: CableApcExtension - components: - - pos: -30.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21896 - type: CableApcExtension - components: - - pos: -31.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21897 - type: CableApcExtension - components: - - pos: -32.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21898 - type: CableApcExtension - components: - - pos: -33.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21899 - type: CableApcExtension - components: - - pos: -0.5,-65.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21900 - type: CableApcExtension - components: - - pos: -1.5,-65.5 - parent: 0 - type: Transform -- uid: 21901 - type: CableApcExtension - components: - - pos: -2.5,-65.5 - parent: 0 - type: Transform -- uid: 21902 - type: CableApcExtension - components: - - pos: -2.5,-66.5 - parent: 0 - type: Transform -- uid: 21903 - type: CableApcExtension - components: - - pos: -2.5,-67.5 - parent: 0 - type: Transform -- uid: 21904 - type: CableApcExtension - components: - - pos: -2.5,-68.5 - parent: 0 - type: Transform -- uid: 21905 - type: CableApcExtension - components: - - pos: -2.5,-69.5 - parent: 0 - type: Transform -- uid: 21906 - type: CableApcExtension - components: - - pos: -2.5,-70.5 - parent: 0 - type: Transform -- uid: 21907 - type: CableApcExtension - components: - - pos: -3.5,-70.5 - parent: 0 - type: Transform -- uid: 21908 - type: CableApcExtension - components: - - pos: -4.5,-70.5 - parent: 0 - type: Transform -- uid: 21909 - type: CableApcExtension - components: - - pos: -5.5,-70.5 - parent: 0 - type: Transform -- uid: 21910 - type: CableApcExtension - components: - - pos: -6.5,-70.5 - parent: 0 - type: Transform -- uid: 21911 - type: CableApcExtension - components: - - pos: -7.5,-70.5 - parent: 0 - type: Transform -- uid: 21912 - type: CableApcExtension - components: - - pos: -8.5,-70.5 - parent: 0 - type: Transform -- uid: 21913 - type: CableApcExtension - components: - - pos: -9.5,-70.5 - parent: 0 - type: Transform -- uid: 21914 - type: CableApcExtension - components: - - pos: -9.5,-69.5 - parent: 0 - type: Transform -- uid: 21915 - type: CableApcExtension - components: - - pos: -9.5,-68.5 - parent: 0 - type: Transform -- uid: 21916 - type: CableApcExtension - components: - - pos: -9.5,-67.5 - parent: 0 - type: Transform -- uid: 21917 - type: CableApcExtension - components: - - pos: -9.5,-66.5 - parent: 0 - type: Transform -- uid: 21918 - type: CableApcExtension - components: - - pos: -9.5,-65.5 - parent: 0 - type: Transform -- uid: 21919 - type: CableApcExtension - components: - - pos: -9.5,-64.5 - parent: 0 - type: Transform -- uid: 21920 - type: CableApcExtension - components: - - pos: -9.5,-63.5 - parent: 0 - type: Transform -- uid: 21921 - type: CableApcExtension - components: - - pos: -9.5,-62.5 - parent: 0 - type: Transform -- uid: 21922 - type: CableApcExtension - components: - - pos: -8.5,-62.5 - parent: 0 - type: Transform -- uid: 21923 - type: CableApcExtension - components: - - pos: -7.5,-62.5 - parent: 0 - type: Transform -- uid: 21924 - type: CableApcExtension - components: - - pos: -6.5,-62.5 - parent: 0 - type: Transform -- uid: 21925 - type: CableApcExtension - components: - - pos: -5.5,-62.5 - parent: 0 - type: Transform -- uid: 21926 - type: CableApcExtension - components: - - pos: -4.5,-62.5 - parent: 0 - type: Transform -- uid: 21927 - type: CableApcExtension - components: - - pos: -3.5,-62.5 - parent: 0 - type: Transform -- uid: 21928 - type: CableApcExtension - components: - - pos: -2.5,-62.5 - parent: 0 - type: Transform -- uid: 21929 - type: CableApcExtension - components: - - pos: -2.5,-63.5 - parent: 0 - type: Transform -- uid: 21930 - type: CableApcExtension - components: - - pos: -2.5,-64.5 - parent: 0 - type: Transform -- uid: 21931 - type: CableApcExtension - components: - - pos: -9.5,-71.5 - parent: 0 - type: Transform -- uid: 21932 - type: CableApcExtension - components: - - pos: -9.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21933 - type: CableApcExtension - components: - - pos: -10.5,-70.5 - parent: 0 - type: Transform -- uid: 21934 - type: CableApcExtension - components: - - pos: -11.5,-70.5 - parent: 0 - type: Transform -- uid: 21935 - type: CableApcExtension - components: - - pos: -11.5,-71.5 - parent: 0 - type: Transform -- uid: 21936 - type: CableApcExtension - components: - - pos: -11.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21937 - type: CableApcExtension - components: - - pos: -3.5,-71.5 - parent: 0 - type: Transform -- uid: 21938 - type: CableApcExtension - components: - - pos: -3.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21939 - type: CableApcExtension - components: - - pos: -1.5,-69.5 - parent: 0 - type: Transform -- uid: 21940 - type: CableApcExtension - components: - - pos: -0.5,-69.5 - parent: 0 - type: Transform -- uid: 21941 - type: CableApcExtension - components: - - pos: 0.5,-69.5 - parent: 0 - type: Transform -- uid: 21942 - type: CableApcExtension - components: - - pos: 1.5,-69.5 - parent: 0 - type: Transform -- uid: 21943 - type: CableApcExtension - components: - - pos: 2.5,-69.5 - parent: 0 - type: Transform -- uid: 21944 - type: CableApcExtension - components: - - pos: 1.5,-70.5 - parent: 0 - type: Transform -- uid: 21945 - type: CableApcExtension - components: - - pos: 1.5,-71.5 - parent: 0 - type: Transform -- uid: 21946 - type: CableApcExtension - components: - - pos: 1.5,-72.5 - parent: 0 - type: Transform -- uid: 21947 - type: CableApcExtension - components: - - pos: 1.5,-73.5 - parent: 0 - type: Transform -- uid: 21948 - type: CableApcExtension - components: - - pos: 0.5,-73.5 - parent: 0 - type: Transform -- uid: 21949 - type: CableApcExtension - components: - - pos: -0.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21950 - type: CableApcExtension - components: - - pos: -1.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21951 - type: CableApcExtension - components: - - pos: -3.5,-66.5 - parent: 0 - type: Transform -- uid: 21952 - type: CableApcExtension - components: - - pos: -4.5,-66.5 - parent: 0 - type: Transform -- uid: 21953 - type: CableApcExtension - components: - - pos: -1.5,-62.5 - parent: 0 - type: Transform -- uid: 21954 - type: CableApcExtension - components: - - pos: -0.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21955 - type: CableApcExtension - components: - - pos: 0.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21956 - type: CableApcExtension - components: - - pos: 1.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21957 - type: CableApcExtension - components: - - pos: 2.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21958 - type: CableApcExtension - components: - - pos: -2.5,-61.5 - parent: 0 - type: Transform -- uid: 21959 - type: CableApcExtension - components: - - pos: -2.5,-60.5 - parent: 0 - type: Transform -- uid: 21960 - type: CableApcExtension - components: - - pos: -2.5,-59.5 - parent: 0 - type: Transform -- uid: 21961 - type: CableApcExtension - components: - - pos: -7.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21962 - type: CableApcExtension - components: - - pos: -6.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21963 - type: CableApcExtension - components: - - pos: -6.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21964 - type: CableApcExtension - components: - - pos: -6.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21965 - type: CableApcExtension - components: - - pos: -6.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21966 - type: CableApcExtension - components: - - pos: -6.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21967 - type: CableApcExtension - components: - - pos: -6.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21968 - type: CableApcExtension - components: - - pos: -6.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21969 - type: CableApcExtension - components: - - pos: -6.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21970 - type: CableApcExtension - components: - - pos: -6.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21971 - type: CableApcExtension - components: - - pos: -6.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21972 - type: CableApcExtension - components: - - pos: -6.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21973 - type: CableApcExtension - components: - - pos: -6.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21974 - type: CableApcExtension - components: - - pos: -6.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21975 - type: CableApcExtension - components: - - pos: -6.5,-44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21976 - type: WallSolid - components: - - pos: -9.5,-59.5 - parent: 0 - type: Transform -- uid: 21977 - type: DisposalUnit - components: - - pos: -7.5,-60.5 - parent: 0 - type: Transform -- uid: 21978 - type: DisposalUnit - components: - - pos: -26.5,-67.5 - parent: 0 - type: Transform -- uid: 21979 - type: DisposalTrunk - components: - - pos: -7.5,-60.5 - parent: 0 - type: Transform -- uid: 21980 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-67.5 - parent: 0 - type: Transform -- uid: 21981 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-67.5 - parent: 0 - type: Transform -- uid: 21982 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-66.5 - parent: 0 - type: Transform -- uid: 21983 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-65.5 - parent: 0 - type: Transform -- uid: 21984 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-64.5 - parent: 0 - type: Transform -- uid: 21985 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-63.5 - parent: 0 - type: Transform -- uid: 21986 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-62.5 - parent: 0 - type: Transform -- uid: 21987 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -25.5,-61.5 - parent: 0 - type: Transform -- uid: 21988 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-60.5 - parent: 0 - type: Transform -- uid: 21989 - type: DisposalBend - components: - - pos: -20.5,-60.5 - parent: 0 - type: Transform -- uid: 21990 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -20.5,-62.5 - parent: 0 - type: Transform -- uid: 21991 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-60.5 - parent: 0 - type: Transform -- uid: 21992 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-60.5 - parent: 0 - type: Transform -- uid: 21993 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-60.5 - parent: 0 - type: Transform -- uid: 21994 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-60.5 - parent: 0 - type: Transform -- uid: 21995 - type: DisposalPipe - components: - - pos: -20.5,-61.5 - parent: 0 - type: Transform -- uid: 21996 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-62.5 - parent: 0 - type: Transform -- uid: 21997 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-62.5 - parent: 0 - type: Transform -- uid: 21998 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-62.5 - parent: 0 - type: Transform -- uid: 21999 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-62.5 - parent: 0 - type: Transform -- uid: 22000 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-62.5 - parent: 0 - type: Transform -- uid: 22001 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-62.5 - parent: 0 - type: Transform -- uid: 22002 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-62.5 - parent: 0 - type: Transform -- uid: 22003 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-62.5 - parent: 0 - type: Transform -- uid: 22004 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-62.5 - parent: 0 - type: Transform -- uid: 22005 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-62.5 - parent: 0 - type: Transform -- uid: 22006 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-62.5 - parent: 0 - type: Transform -- uid: 22007 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-62.5 - parent: 0 - type: Transform -- uid: 22008 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-62.5 - parent: 0 - type: Transform -- uid: 22009 - type: DisposalPipe - components: - - pos: -7.5,-61.5 - parent: 0 - type: Transform -- uid: 22010 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-62.5 - parent: 0 - type: Transform -- uid: 22011 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-62.5 - parent: 0 - type: Transform -- uid: 22012 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-62.5 - parent: 0 - type: Transform -- uid: 22013 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-62.5 - parent: 0 - type: Transform -- uid: 22014 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-62.5 - parent: 0 - type: Transform -- uid: 22015 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-64.5 - parent: 0 - type: Transform -- uid: 22016 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-68.5 - parent: 0 - type: Transform -- uid: 22017 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-66.5 - parent: 0 - type: Transform -- uid: 22018 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-55.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22019 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-57.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22020 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22021 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22022 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22023 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22024 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-65.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22025 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-67.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22026 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-65.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22027 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-65.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22028 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-65.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22029 - type: PoweredSmallLight - components: - - pos: -29.5,-70.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22030 - type: PoweredSmallLight - components: - - pos: -25.5,-70.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22031 - type: PoweredSmallLight - components: - - pos: -25.5,-73.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22032 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-73.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22033 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-73.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22034 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-68.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22035 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-68.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22036 - type: PoweredSmallLight - components: - - pos: -19.5,-64.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22037 - type: PoweredSmallLight - components: - - pos: -15.5,-64.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22038 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-73.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22039 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-73.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22040 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-73.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22041 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-73.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22042 - type: ReinforcedWindow - components: - - pos: -6.5,-67.5 - parent: 0 - type: Transform -- uid: 22043 - type: ReinforcedWindow - components: - - pos: -6.5,-65.5 - parent: 0 - type: Transform -- uid: 22046 - type: BlockGameArcade - components: - - pos: -9.5,-60.5 - parent: 0 - type: Transform -- uid: 22047 - type: ClosetEmergencyFilledRandom - components: - - pos: -10.5,-60.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22048 - type: ClosetFireFilled - components: - - pos: -11.5,-60.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22049 - type: Table - components: - - pos: -12.5,-67.5 - parent: 0 - type: Transform -- uid: 22050 - type: Table - components: - - pos: -12.5,-64.5 - parent: 0 - type: Transform -- uid: 22051 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-68.5 - parent: 0 - type: Transform -- uid: 22052 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-67.5 - parent: 0 - type: Transform -- uid: 22053 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-66.5 - parent: 0 - type: Transform -- uid: 22054 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-65.5 - parent: 0 - type: Transform -- uid: 22055 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-64.5 - parent: 0 - type: Transform -- uid: 22056 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-68.5 - parent: 0 - type: Transform -- uid: 22057 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-67.5 - parent: 0 - type: Transform -- uid: 22058 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-66.5 - parent: 0 - type: Transform -- uid: 22059 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-65.5 - parent: 0 - type: Transform -- uid: 22060 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-64.5 - parent: 0 - type: Transform -- uid: 22061 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-66.5 - parent: 0 - type: Transform -- uid: 22062 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-65.5 - parent: 0 - type: Transform -- uid: 22063 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-64.5 - parent: 0 - type: Transform -- uid: 22064 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-64.5 - parent: 0 - type: Transform -- uid: 22065 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-67.5 - parent: 0 - type: Transform -- uid: 22066 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-68.5 - parent: 0 - type: Transform -- uid: 22067 - type: PottedPlantRandom - components: - - pos: -11.5,-69.5 - parent: 0 - type: Transform -- uid: 22068 - type: PottedPlantRandom - components: - - pos: -11.5,-63.5 - parent: 0 - type: Transform -- uid: 22069 - type: PottedPlantRandom - components: - - pos: -1.5,-63.5 - parent: 0 - type: Transform -- uid: 22070 - type: Bookshelf - components: - - pos: -22.5,-73.5 - parent: 0 - type: Transform -- uid: 22071 - type: lantern - components: - - pos: -19.536581,-72.15275 - parent: 0 - type: Transform -- uid: 22072 - type: lantern - components: - - pos: -15.520956,-72.19962 - parent: 0 - type: Transform -- uid: 22073 - type: FoodPoppy - components: - - pos: -19.505331,-64.46194 - parent: 0 - type: Transform -- uid: 22074 - type: ClothingHeadHatHairflower - components: - - pos: -27.485363,-69.41039 - parent: 0 - type: Transform -- uid: 22075 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-69.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22076 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-63.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22077 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-63.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22078 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-70.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22079 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-71.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22080 - type: Poweredlight - components: - - pos: 3.5,-67.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22081 - type: ComputerCriminalRecords - components: - - rot: 3.141592653589793 rad - pos: 0.5,-68.5 - parent: 0 - type: Transform -- uid: 22082 - type: FirelockGlass - components: - - pos: -0.5,-67.5 - parent: 0 - type: Transform -- uid: 22083 - type: Table - components: - - pos: 3.5,-67.5 - parent: 0 - type: Transform -- uid: 22084 - type: Table - components: - - pos: 3.5,-69.5 - parent: 0 - type: Transform -- uid: 22085 - type: Table - components: - - pos: 3.5,-68.5 - parent: 0 - type: Transform -- uid: 22086 - type: Table - components: - - pos: 2.5,-69.5 - parent: 0 - type: Transform -- uid: 22087 - type: WeaponCapacitorRecharger - components: - - pos: 3.5,-67.5 - parent: 0 - type: Transform -- uid: 22088 - type: CableApcExtension - components: - - pos: 1.5,-74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22089 - type: CableApcExtension - components: - - pos: 0.5,-74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22090 - type: CableApcExtension - components: - - pos: 2.5,-74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22091 - type: CableApcExtension - components: - - pos: 2.5,-71.5 - parent: 0 - type: Transform -- uid: 22092 - type: CableApcExtension - components: - - pos: 3.5,-71.5 - parent: 0 - type: Transform -- uid: 22093 - type: CableApcExtension - components: - - pos: 4.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22094 - type: CableApcExtension - components: - - pos: 4.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22095 - type: CableApcExtension - components: - - pos: 4.5,-70.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22096 - type: CableApcExtension - components: - - pos: -2.5,-73.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22097 - type: CableApcExtension - components: - - pos: -2.5,-74.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22098 - type: CableApcExtension - components: - - pos: -2.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22099 - type: CableApcExtension - components: - - pos: -1.5,-72.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22100 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-67.5 - parent: 0 - type: Transform -- uid: 22101 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-68.5 - parent: 0 - type: Transform -- uid: 22102 - type: ClosetMaintenanceFilledRandom - components: - - pos: -34.5,-62.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22103 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-72.5 - parent: 0 - type: Transform -- uid: 22104 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-71.5 - parent: 0 - type: Transform -- uid: 22105 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-70.5 - parent: 0 - type: Transform -- uid: 22106 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-72.5 - parent: 0 - type: Transform -- uid: 22107 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-71.5 - parent: 0 - type: Transform -- uid: 22108 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-70.5 - parent: 0 - type: Transform -- uid: 22109 - type: Table - components: - - pos: -34.5,-63.5 - parent: 0 - type: Transform -- uid: 22110 - type: SpawnMobMouse - components: - - pos: -33.5,-63.5 - parent: 0 - type: Transform -- uid: 22111 - type: Rack - components: - - pos: -32.5,-63.5 - parent: 0 - type: Transform -- uid: 22112 - type: MopItem - components: - - pos: -32.555313,-63.442554 - parent: 0 - type: Transform -- uid: 22113 - type: RandomSpawner - components: - - pos: -33.5,-62.5 - parent: 0 - type: Transform -- uid: 22114 - type: MaintenanceFluffSpawner - components: - - pos: -34.5,-63.5 - parent: 0 - type: Transform -- uid: 22115 - type: Rack - components: - - pos: -31.5,-59.5 - parent: 0 - type: Transform -- uid: 22116 - type: Rack - components: - - pos: -32.5,-59.5 - parent: 0 - type: Transform -- uid: 22117 - type: SignSpace - components: - - pos: -38.5,-65.5 - parent: 0 - type: Transform -- uid: 22118 - type: FireExtinguisher - components: - - pos: -31.517387,-59.322933 - parent: 0 - type: Transform -- uid: 22119 - type: WardrobeBlackFilled - components: - - pos: -33.5,-59.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22120 - type: ClothingOuterHoodieBlack - components: - - pos: -32.486137,-59.447933 - parent: 0 - type: Transform -- uid: 22121 - type: Catwalk - components: - - pos: -36.5,-60.5 - parent: 0 - type: Transform -- uid: 22122 - type: Catwalk - components: - - pos: -35.5,-60.5 - parent: 0 - type: Transform -- uid: 22123 - type: Catwalk - components: - - pos: -34.5,-60.5 - parent: 0 - type: Transform -- uid: 22124 - type: Catwalk - components: - - pos: -33.5,-60.5 - parent: 0 - type: Transform -- uid: 22125 - type: Catwalk - components: - - pos: -32.5,-60.5 - parent: 0 - type: Transform -- uid: 22126 - type: Catwalk - components: - - pos: -31.5,-60.5 - parent: 0 - type: Transform -- uid: 22127 - type: Catwalk - components: - - pos: -30.5,-60.5 - parent: 0 - type: Transform -- uid: 22128 - type: Catwalk - components: - - pos: -29.5,-60.5 - parent: 0 - type: Transform -- uid: 22129 - type: Catwalk - components: - - pos: -28.5,-60.5 - parent: 0 - type: Transform -- uid: 22130 - type: Catwalk - components: - - pos: -27.5,-60.5 - parent: 0 - type: Transform -- uid: 22131 - type: Catwalk - components: - - pos: -26.5,-60.5 - parent: 0 - type: Transform -- uid: 22132 - type: Catwalk - components: - - pos: -25.5,-60.5 - parent: 0 - type: Transform -- uid: 22133 - type: Catwalk - components: - - pos: -24.5,-60.5 - parent: 0 - type: Transform -- uid: 22134 - type: Catwalk - components: - - pos: -23.5,-60.5 - parent: 0 - type: Transform -- uid: 22135 - type: Catwalk - components: - - pos: -22.5,-60.5 - parent: 0 - type: Transform -- uid: 22136 - type: Catwalk - components: - - pos: -21.5,-60.5 - parent: 0 - type: Transform -- uid: 22137 - type: Catwalk - components: - - pos: 31.5,-39.5 - parent: 0 - type: Transform -- uid: 22138 - type: Catwalk - components: - - pos: 31.5,-38.5 - parent: 0 - type: Transform -- uid: 22139 - type: FirelockGlass - components: - - pos: 31.5,-37.5 - parent: 0 - type: Transform -- uid: 22140 - type: Catwalk - components: - - pos: 31.5,-36.5 - parent: 0 - type: Transform -- uid: 22141 - type: Catwalk - components: - - pos: 31.5,-35.5 - parent: 0 - type: Transform -- uid: 22142 - type: Catwalk - components: - - pos: 31.5,-34.5 - parent: 0 - type: Transform -- uid: 22143 - type: VendingMachineGeneDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 4.5,-55.5 - parent: 0 - type: Transform -- uid: 22144 - type: ClosetEmergencyFilledRandom - components: - - pos: -0.5,-50.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22145 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-39.5 - parent: 0 - type: Transform -- uid: 22146 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-38.5 - parent: 0 - type: Transform -- uid: 22147 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-37.5 - parent: 0 - type: Transform -- uid: 22148 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 23.5,-37.5 - parent: 0 - type: Transform -- uid: 22149 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 25.5,-37.5 - parent: 0 - type: Transform -- uid: 22150 - type: Table - components: - - pos: 22.5,-39.5 - parent: 0 - type: Transform -- uid: 22151 - type: Table - components: - - pos: 22.5,-38.5 - parent: 0 - type: Transform -- uid: 22152 - type: DisposalUnit - components: - - pos: 22.5,-37.5 - parent: 0 - type: Transform -- uid: 22153 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-37.5 - parent: 0 - type: Transform -- uid: 22154 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 20.5,-37.5 - parent: 0 - type: Transform -- uid: 22155 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-37.5 - parent: 0 - type: Transform -- uid: 22156 - type: DisposalPipe - components: - - pos: 20.5,-36.5 - parent: 0 - type: Transform -- uid: 22157 - type: DisposalPipe - components: - - pos: 20.5,-35.5 - parent: 0 - type: Transform -- uid: 22158 - type: DisposalPipe - components: - - pos: 20.5,-34.5 - parent: 0 - type: Transform -- uid: 22159 - type: DisposalPipe - components: - - pos: 20.5,-33.5 - parent: 0 - type: Transform -- uid: 22160 - type: DisposalPipe - components: - - pos: 20.5,-32.5 - parent: 0 - type: Transform -- uid: 22161 - type: DisposalPipe - components: - - pos: 20.5,-31.5 - parent: 0 - type: Transform -- uid: 22162 - type: DisposalPipe - components: - - pos: 20.5,-30.5 - parent: 0 - type: Transform -- uid: 22163 - type: TableWood - components: - - pos: 23.5,-35.5 - parent: 0 - type: Transform -- uid: 22164 - type: TableWood - components: - - pos: 23.5,-34.5 - parent: 0 - type: Transform -- uid: 22165 - type: Table - components: - - pos: 19.5,-39.5 - parent: 0 - type: Transform -- uid: 22166 - type: filingCabinetDrawer - components: - - pos: 19.5,-35.5 - parent: 0 - type: Transform -- uid: 22167 - type: ComputerResearchAndDevelopment - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-35.5 - parent: 0 - type: Transform -- uid: 22168 - type: ComputerResearchAndDevelopment - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-38.5 - parent: 0 - type: Transform -- uid: 22169 - type: WallmountTelescreen - components: - - pos: 24.5,-33.5 - parent: 0 - type: Transform -- uid: 22170 - type: PowerCellRecharger - components: - - pos: 6.5,-23.5 - parent: 0 - type: Transform -- uid: 22171 - type: PowerCellRecharger - components: - - pos: 12.5,-23.5 - parent: 0 - type: Transform -- uid: 22172 - type: ExtinguisherCabinetFilled - components: - - pos: 9.5,-31.5 - parent: 0 - type: Transform -- uid: 22173 - type: ExtinguisherCabinetFilled - components: - - pos: 5.5,-36.5 - parent: 0 - type: Transform -- uid: 22174 - type: ExtinguisherCabinetFilled - components: - - pos: 14.5,-21.5 - parent: 0 - type: Transform -- uid: 22175 - type: ExtinguisherCabinetFilled - components: - - pos: 16.5,-22.5 - parent: 0 - type: Transform -- uid: 22176 - type: ExtinguisherCabinetFilled - components: - - pos: 9.5,-43.5 - parent: 0 - type: Transform -- uid: 22177 - type: ExtinguisherCabinetFilled - components: - - pos: 5.5,-52.5 - parent: 0 - type: Transform -- uid: 22178 - type: ExtinguisherCabinetOpen - components: - - pos: 5.5,-54.5 - parent: 0 - type: Transform -- uid: 22179 - type: AirlockMaintRnDLocked - components: - - pos: 28.5,-49.5 - parent: 0 - type: Transform -- uid: 22180 - type: ExtinguisherCabinetFilled - components: - - pos: 28.5,-48.5 - parent: 0 - type: Transform -- uid: 22181 - type: SignSecureMed - components: - - pos: 20.5,-48.5 - parent: 0 - type: Transform -- uid: 22182 - type: SignToxins2 - components: - - pos: 6.5,-47.5 - parent: 0 - type: Transform -- uid: 22183 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22184 - type: GasVentPump - components: - - pos: 19.5,-49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22185 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22186 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22187 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22188 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22189 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22190 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.501195,-26.427847 - parent: 0 - type: Transform -- uid: 22191 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-23.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22198 - type: SignalReceiver -- uid: 22192 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22198 - type: SignalReceiver -- uid: 22193 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-25.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22198 - type: SignalReceiver -- uid: 22194 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22198 - type: SignalReceiver -- uid: 22195 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-28.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22198 - type: SignalReceiver -- uid: 22196 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-30.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22198 - type: SignalReceiver -- uid: 22197 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-32.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 22198 - type: SignalReceiver -- uid: 22198 - type: SignalButton - components: - - pos: 9.5,-27.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 22191 - - port: Toggle - uid: 22192 - - port: Toggle - uid: 22193 - - port: Toggle - uid: 22194 - - port: Toggle - uid: 22195 - - port: Toggle - uid: 22196 - - port: Toggle - uid: 22197 - type: SignalTransmitter -- uid: 22199 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22200 - type: Poweredlight - components: - - pos: 11.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22201 - type: Poweredlight - components: - - pos: 1.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22202 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22203 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22204 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22205 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22206 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22207 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22208 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22209 - type: Poweredlight - components: - - pos: 8.5,-38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22210 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22211 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22212 - type: Poweredlight - components: - - pos: 9.5,-34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22213 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22214 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 13.5,-32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22215 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22216 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22217 - type: Poweredlight - components: - - pos: 22.5,-28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22218 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22219 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22220 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22221 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22222 - type: Poweredlight - components: - - pos: 18.5,-41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22223 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-43.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22224 - type: Poweredlight - components: - - pos: 13.5,-41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22225 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 8.5,-46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22226 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-54.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22227 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-52.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22228 - type: Poweredlight - components: - - pos: 23.5,-48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22229 - type: Poweredlight - components: - - pos: 26.5,-48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22230 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-52.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22231 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-59.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22232 - type: Poweredlight - components: - - pos: 22.5,-54.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22233 - type: Poweredlight - components: - - pos: 26.5,-54.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22234 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-59.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22235 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22236 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22237 - type: PoweredSmallLight - components: - - pos: 17.5,-48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22238 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-50.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22239 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22240 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22241 - type: PoweredSmallLight - components: - - pos: 24.5,-28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22242 - type: ExtinguisherCabinetFilled - components: - - pos: 24.5,-40.5 - parent: 0 - type: Transform -- uid: 22243 - type: LockerResearchDirectorFilled - components: - - pos: 19.5,-36.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22244 - type: PottedPlantRD - components: - - pos: 19.5,-34.5 - parent: 0 - type: Transform -- uid: 22245 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-35.5 - parent: 0 - type: Transform -- uid: 22246 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-35.5 - parent: 0 - type: Transform -- uid: 22247 - type: PottedPlant20 - components: - - pos: 22.5,-34.5 - parent: 0 - type: Transform -- uid: 22248 - type: Bed - components: - - pos: 25.5,-39.5 - parent: 0 - type: Transform -- uid: 22249 - type: BedsheetRD - components: - - pos: 25.5,-39.5 - parent: 0 - type: Transform -- uid: 22250 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: 24.5,-37.5 - parent: 0 - type: Transform -- uid: 22251 - type: WeaponCapacitorRecharger - components: - - pos: 10.5,-23.5 - parent: 0 - type: Transform -- uid: 22252 - type: WeaponCapacitorRecharger - components: - - pos: 23.5,-34.5 - parent: 0 - type: Transform -- uid: 22253 - type: PowerCellRecharger - components: - - pos: 18.5,-28.5 - parent: 0 - type: Transform -- uid: 22254 - type: Lamp - components: - - pos: 22.482906,-28.272987 - parent: 0 - type: Transform -- uid: 22255 - type: Crowbar - components: - - pos: 22.529781,-29.351112 - parent: 0 - type: Transform -- uid: 22256 - type: LargeBeaker - components: - - pos: 18.529781,-32.413612 - parent: 0 - type: Transform -- uid: 22257 - type: Dropper - components: - - pos: 18.561031,-31.757362 - parent: 0 - type: Transform -- uid: 22258 - type: ExosuitFabricator - components: - - pos: 0.5,-39.5 - parent: 0 - type: Transform -- uid: 22259 - type: ToolboxMechanicalFilled - components: - - pos: 11.4342785,-23.391693 - parent: 0 - type: Transform -- uid: 22260 - type: UnfinishedMachineFrame - components: - - pos: 0.5,-41.5 - parent: 0 - type: Transform -- uid: 22261 - type: RandomArtifactSpawner - components: - - pos: 24.5,-30.5 - parent: 0 - type: Transform -- uid: 22262 - type: NitrousOxideTankFilled - components: - - pos: 8.528717,-38.458675 - parent: 0 - type: Transform -- uid: 22263 - type: ClothingMaskBreathMedical - components: - - pos: 8.575592,-38.5993 - parent: 0 - type: Transform -- uid: 22264 - type: SprayBottle - components: - - pos: 8.169342,-38.333675 - parent: 0 - type: Transform -- uid: 22265 - type: Hemostat - components: - - pos: 7.4486217,-42.45404 - parent: 0 - type: Transform -- uid: 22266 - type: Saw - components: - - pos: 8.432997,-42.407166 - parent: 0 - type: Transform -- uid: 22267 - type: Scalpel - components: - - pos: 6.5892467,-42.51654 - parent: 0 - type: Transform -- uid: 22268 - type: BoxSterileMask - components: - - pos: 6.5111217,-41.51654 - parent: 0 - type: Transform -- uid: 22269 - type: CircuitImprinter - components: - - pos: 1.5,-37.5 - parent: 0 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Gold - type: MaterialStorage -- uid: 22270 - type: MedkitFilled - components: - - pos: 3.483295,-34.5677 - parent: 0 - type: Transform -- uid: 22271 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 4.09267,-34.5052 - parent: 0 - type: Transform -- uid: 22272 - type: PowerCellRecharger - components: - - pos: 4.5,-35.5 - parent: 0 - type: Transform -- uid: 22273 - type: RandomArtifactSpawner - components: - - pos: 14.5,-54.5 - parent: 0 - type: Transform -- uid: 22274 - type: ShuttersNormal - components: - - pos: 28.5,-57.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 20957 - - port: Pressed - uid: 20956 - type: SignalReceiver -- uid: 22275 - type: PowerCellSmall - components: - - pos: 4.46767,-35.0052 - parent: 0 - type: Transform -- uid: 22276 - type: SheetPlasteel1 - components: - - pos: 4.56142,-34.520824 - parent: 0 - type: Transform -- uid: 22277 - type: SheetPlasteel1 - components: - - pos: 4.56142,-34.520824 - parent: 0 - type: Transform -- uid: 22278 - type: SheetPlasteel1 - components: - - pos: 4.56142,-34.520824 - parent: 0 - type: Transform -- uid: 22279 - type: SheetPlasteel1 - components: - - pos: 4.56142,-34.520824 - parent: 0 - type: Transform -- uid: 22280 - type: SheetPlasteel1 - components: - - pos: 4.56142,-34.520824 - parent: 0 - type: Transform -- uid: 22281 - type: SheetGlass - components: - - pos: 4.46767,-36.4427 - parent: 0 - type: Transform -- uid: 22282 - type: PowerCellRecharger - components: - - pos: 0.5,-28.5 - parent: 0 - type: Transform -- uid: 22283 - type: WeldingFuelTankFull - components: - - pos: 4.5,-30.5 - parent: 0 - type: Transform -- uid: 22284 - type: UnfinishedMachineFrame - components: - - pos: 4.5,-31.5 - parent: 0 - type: Transform -- uid: 22285 - type: UnfinishedMachineFrame - components: - - pos: 4.5,-29.5 - parent: 0 - type: Transform -- uid: 22286 - type: ComputerFrame - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-30.5 - parent: 0 - type: Transform -- uid: 22287 - type: HandLabeler - components: - - pos: 0.5438633,-32.442223 - parent: 0 - type: Transform -- uid: 22288 - type: TableReinforced - components: - - pos: -4.5,-33.5 - parent: 0 - type: Transform -- uid: 22289 - type: TableReinforced - components: - - pos: -0.5,-34.5 - parent: 0 - type: Transform -- uid: 22290 - type: SheetGlass - components: - - pos: 12.452702,-26.423004 - parent: 0 - type: Transform -- uid: 22291 - type: SheetSteel - components: - - pos: 12.546452,-32.46988 - parent: 0 - type: Transform -- uid: 22292 - type: ClothingHeadHatWelding - components: - - pos: 12.468327,-32.43863 - parent: 0 - type: Transform -- uid: 22293 - type: Wrench - components: - - pos: 12.483952,-32.40738 - parent: 0 - type: Transform -- uid: 22294 - type: AdvancedMatterBinStockPart - components: - - pos: 12.374577,-30.31363 - parent: 0 - type: Transform -- uid: 22295 - type: AdvancedMatterBinStockPart - components: - - pos: 12.655827,-30.204254 - parent: 0 - type: Transform -- uid: 22296 - type: CableApcStack - components: - - pos: 12.515202,-31.391754 - parent: 0 - type: Transform -- uid: 22297 - type: MicroLaserStockPart - components: - - pos: 12.593327,-30.87613 - parent: 0 - type: Transform -- uid: 22298 - type: CapacitorStockPart - components: - - pos: 12.327702,-31.798004 - parent: 0 - type: Transform -- uid: 22299 - type: Bookshelf - components: - - pos: 25.5,-34.5 - parent: 0 - type: Transform -- uid: 22300 - type: Bookshelf - components: - - pos: 24.5,-34.5 - parent: 0 - type: Transform -- uid: 22301 - type: DisposalUnit - components: - - pos: 8.5,-48.5 - parent: 0 - type: Transform -- uid: 22302 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-48.5 - parent: 0 - type: Transform -- uid: 22303 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 7.5,-48.5 - parent: 0 - type: Transform -- uid: 22304 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-45.5 - parent: 0 - type: Transform -- uid: 22305 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-45.5 - parent: 0 - type: Transform -- uid: 22306 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 7.5,-47.5 - parent: 0 - type: Transform -- uid: 22307 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 7.5,-46.5 - parent: 0 - type: Transform -- uid: 22308 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-45.5 - parent: 0 - type: Transform -- uid: 22309 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-45.5 - parent: 0 - type: Transform -- uid: 22310 - type: DisposalPipe - components: - - pos: 10.5,-44.5 - parent: 0 - type: Transform -- uid: 22311 - type: DisposalPipe - components: - - pos: 10.5,-43.5 - parent: 0 - type: Transform -- uid: 22312 - type: DisposalPipe - components: - - pos: 10.5,-42.5 - parent: 0 - type: Transform -- uid: 22313 - type: DisposalPipe - components: - - pos: 10.5,-41.5 - parent: 0 - type: Transform -- uid: 22314 - type: DisposalPipe - components: - - pos: 10.5,-40.5 - parent: 0 - type: Transform -- uid: 22315 - type: DisposalPipe - components: - - pos: 10.5,-39.5 - parent: 0 - type: Transform -- uid: 22316 - type: DisposalPipe - components: - - pos: 10.5,-38.5 - parent: 0 - type: Transform -- uid: 22317 - type: DisposalPipe - components: - - pos: 10.5,-37.5 - parent: 0 - type: Transform -- uid: 22318 - type: DisposalPipe - components: - - pos: 10.5,-36.5 - parent: 0 - type: Transform -- uid: 22319 - type: FireExtinguisher - components: - - pos: 10.443425,-48.38857 - parent: 0 - type: Transform -- uid: 22320 - type: FireExtinguisher - components: - - pos: 9.45905,-48.41982 - parent: 0 - type: Transform -- uid: 22321 - type: ModularGrenade - components: - - pos: 9.27155,-48.57607 - parent: 0 - type: Transform -- uid: 22322 - type: ModularGrenade - components: - - pos: 10.2403,-48.57607 - parent: 0 - type: Transform -- uid: 22323 - type: Table - components: - - pos: 21.5,-52.5 - parent: 0 - type: Transform -- uid: 22324 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-52.5 - parent: 0 - type: Transform -- uid: 22325 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-51.5 - parent: 0 - type: Transform -- uid: 22326 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-50.5 - parent: 0 - type: Transform -- uid: 22327 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-48.5 - parent: 0 - type: Transform -- uid: 22328 - type: PortableScrubber - components: - - pos: 22.5,-48.5 - parent: 0 - type: Transform -- uid: 22329 - type: StorageCanister - components: - - pos: 27.5,-52.5 - parent: 0 - type: Transform -- uid: 22330 - type: StorageCanister - components: - - pos: 26.5,-52.5 - parent: 0 - type: Transform -- uid: 22331 - type: OxygenCanister - components: - - pos: 26.5,-51.5 - parent: 0 - type: Transform -- uid: 22332 - type: OxygenCanister - components: - - pos: 26.5,-50.5 - parent: 0 - type: Transform -- uid: 22333 - type: OxygenCanister - components: - - pos: 27.5,-50.5 - parent: 0 - type: Transform -- uid: 22334 - type: OxygenCanister - components: - - pos: 27.5,-51.5 - parent: 0 - type: Transform -- uid: 22335 - type: CarbonDioxideCanister - components: - - pos: 24.5,-48.5 - parent: 0 - type: Transform -- uid: 22336 - type: CarbonDioxideCanister - components: - - pos: 25.5,-48.5 - parent: 0 - type: Transform -- uid: 22337 - type: NitrogenCanister - components: - - pos: 26.5,-48.5 - parent: 0 - type: Transform -- uid: 22338 - type: NitrogenCanister - components: - - pos: 27.5,-48.5 - parent: 0 - type: Transform -- uid: 22339 - type: TableCarpet - components: - - pos: 23.5,-58.5 - parent: 0 - type: Transform -- uid: 22340 - type: LockerScienceFilled - components: - - pos: 27.5,-54.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.9593205 - - 14.894587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22341 - type: Table - components: - - pos: 26.5,-54.5 - parent: 0 - type: Transform -- uid: 22342 - type: Cigar - components: - - pos: 23.27771,-59.303585 - parent: 0 - type: Transform -- uid: 22343 - type: ClosetRadiationSuitFilled - components: - - pos: 27.5,-60.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22344 - type: ClosetFireFilled - components: - - pos: 27.5,-59.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22345 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 29.5,-58.5 - parent: 0 - type: Transform -- uid: 22346 - type: ChairOfficeLight - components: - - pos: 23.5,-57.5 - parent: 0 - type: Transform -- uid: 22347 - type: TableCarpet - components: - - pos: 22.5,-58.5 - parent: 0 - type: Transform -- uid: 22348 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-58.5 - parent: 0 - type: Transform -- uid: 22349 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-54.5 - parent: 0 - type: Transform -- uid: 22350 - type: Table - components: - - pos: 21.5,-55.5 - parent: 0 - type: Transform -- uid: 22351 - type: Table - components: - - pos: 21.5,-54.5 - parent: 0 - type: Transform -- uid: 22352 - type: PottedPlant1 - components: - - pos: 22.5,-54.5 - parent: 0 - type: Transform -- uid: 22353 - type: PottedPlant1 - components: - - pos: 24.5,-54.5 - parent: 0 - type: Transform -- uid: 22354 - type: Rack - components: - - pos: 29.5,-58.5 - parent: 0 - type: Transform -- uid: 22355 - type: Rack - components: - - pos: 29.5,-60.5 - parent: 0 - type: Transform -- uid: 22356 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 27.5,-58.5 - parent: 0 - type: Transform -- uid: 22357 - type: ClothingBeltUtilityFilled - components: - - pos: 23.512508,-58.913982 - parent: 0 - type: Transform -- uid: 22358 - type: ClothingEyesGlasses - components: - - pos: 21.450008,-55.148357 - parent: 0 - type: Transform -- uid: 22359 - type: FlashlightLantern - components: - - pos: 21.496883,-55.538982 - parent: 0 - type: Transform -- uid: 22360 - type: FloraTreeLarge02 - components: - - pos: 26.37503,-20.036427 - parent: 0 - type: Transform -- uid: 22361 - type: Grille - components: - - pos: 39.5,-44.5 - parent: 0 - type: Transform -- uid: 22362 - type: Grille - components: - - pos: 40.5,-43.5 - parent: 0 - type: Transform -- uid: 22363 - type: Grille - components: - - pos: 40.5,-42.5 - parent: 0 - type: Transform -- uid: 22364 - type: Grille - components: - - pos: 40.5,-41.5 - parent: 0 - type: Transform -- uid: 22365 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 32.5,-43.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22366 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-43.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22367 - type: Poweredlight - components: - - pos: 35.5,-38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22368 - type: SheetPlasma - components: - - pos: 36.507072,-40.386047 - parent: 0 - type: Transform -- uid: 22369 - type: SpawnPointScientist - components: - - pos: 27.5,-55.5 - parent: 0 - type: Transform -- uid: 22370 - type: MachineAPE - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-43.5 - parent: 0 - type: Transform -- uid: 22371 - type: SpawnPointScientist - components: - - pos: 24.5,-55.5 - parent: 0 - type: Transform -- uid: 22372 - type: SpawnPointScientist - components: - - pos: 25.5,-55.5 - parent: 0 - type: Transform -- uid: 22373 - type: LockerScienceFilled - components: - - pos: 28.5,-54.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.9593205 - - 14.894587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22374 - type: SpawnPointScientist - components: - - pos: 26.5,-55.5 - parent: 0 - type: Transform -- uid: 22375 - type: LockerScienceFilled - components: - - pos: 29.5,-54.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.9593205 - - 14.894587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22376 - type: MachineAnomalyVessel - components: - - pos: 34.5,-43.5 - parent: 0 - type: Transform -- uid: 22377 - type: ClosetFireFilled - components: - - pos: 34.5,-39.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.7407026 - - 14.072167 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22378 - type: Rack - components: - - pos: -8.5,-54.5 - parent: 0 - type: Transform -- uid: 22379 - type: TablePlasmaGlass - components: - - pos: 36.5,-40.5 - parent: 0 - type: Transform -- uid: 22380 - type: AnomalyScanner - components: - - pos: 36.573296,-39.715855 - parent: 0 - type: Transform -- uid: 22381 - type: AnomalyScanner - components: - - pos: 36.40142,-39.497105 - parent: 0 - type: Transform -- uid: 22382 - type: ClothingEyesGlasses - components: - - pos: 21.512508,-55.242107 - parent: 0 - type: Transform -- uid: 22383 - type: FlashlightLantern - components: - - pos: 21.450008,-54.851482 - parent: 0 - type: Transform -- uid: 22384 - type: LockerScienceFilled - components: - - pos: 5.5,-42.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22385 - type: MachineAPE - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-43.5 - parent: 0 - type: Transform -- uid: 22386 - type: SignAnomaly2 - components: - - pos: 33.5,-41.5 - parent: 0 - type: Transform -- uid: 22387 - type: Grille - components: - - pos: 42.5,-35.5 - parent: 0 - type: Transform -- uid: 22388 - type: Grille - components: - - pos: 42.5,-33.5 - parent: 0 - type: Transform -- uid: 22389 - type: Grille - components: - - pos: 22.5,53.5 - parent: 0 - type: Transform -- uid: 22390 - type: Grille - components: - - pos: 22.5,52.5 - parent: 0 - type: Transform -- uid: 22391 - type: ClosetRadiationSuitFilled - components: - - pos: 34.5,-38.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.9593205 - - 14.894587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22392 - type: ToolboxEmergencyFilled - components: - - pos: 21.476677,-54.476643 - parent: 0 - type: Transform -- uid: 22393 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-59.5 - parent: 0 - type: Transform -- uid: 22394 - type: WindoorCargoLocked - components: - - pos: -32.5,1.5 - parent: 0 - type: Transform -- uid: 22395 - type: ExplosivesSignMed - components: - - pos: 22.5,-53.5 - parent: 0 - type: Transform -- uid: 22396 - type: WallSolid - components: - - pos: 36.5,-56.5 - parent: 0 - type: Transform -- uid: 22397 - type: WallSolid - components: - - pos: 36.5,-55.5 - parent: 0 - type: Transform -- uid: 22398 - type: WallSolid - components: - - pos: 36.5,-54.5 - parent: 0 - type: Transform -- uid: 22399 - type: WallSolid - components: - - pos: 36.5,-53.5 - parent: 0 - type: Transform -- uid: 22400 - type: WallSolid - components: - - pos: 36.5,-52.5 - parent: 0 - type: Transform -- uid: 22401 - type: WallSolid - components: - - pos: 35.5,-52.5 - parent: 0 - type: Transform -- uid: 22402 - type: WallSolid - components: - - pos: 35.5,-51.5 - parent: 0 - type: Transform -- uid: 22403 - type: WallSolid - components: - - pos: 35.5,-50.5 - parent: 0 - type: Transform -- uid: 22404 - type: WallSolid - components: - - pos: 35.5,-49.5 - parent: 0 - type: Transform -- uid: 22405 - type: WallSolid - components: - - pos: 35.5,-48.5 - parent: 0 - type: Transform -- uid: 22406 - type: WallSolid - components: - - pos: 34.5,-48.5 - parent: 0 - type: Transform -- uid: 22407 - type: WallSolid - components: - - pos: 33.5,-48.5 - parent: 0 - type: Transform -- uid: 22408 - type: WallSolid - components: - - pos: 29.5,-51.5 - parent: 0 - type: Transform -- uid: 22409 - type: WallSolid - components: - - pos: 30.5,-51.5 - parent: 0 - type: Transform -- uid: 22410 - type: WallSolid - components: - - pos: 31.5,-51.5 - parent: 0 - type: Transform -- uid: 22411 - type: WallSolid - components: - - pos: 32.5,-51.5 - parent: 0 - type: Transform -- uid: 22412 - type: WallSolid - components: - - pos: 33.5,-51.5 - parent: 0 - type: Transform -- uid: 22413 - type: WallSolid - components: - - pos: 31.5,-50.5 - parent: 0 - type: Transform -- uid: 22414 - type: AirlockEngineeringLocked - components: - - pos: 38.5,-57.5 - parent: 0 - type: Transform -- uid: 22415 - type: APCBasic - components: - - pos: 38.5,-48.5 - parent: 0 - type: Transform -- uid: 22416 - type: CableHV - components: - - pos: 38.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22417 - type: CableHV - components: - - pos: 38.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22418 - type: CableHV - components: - - pos: 38.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22419 - type: CableHV - components: - - pos: 38.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22420 - type: CableHV - components: - - pos: 38.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22421 - type: CableHV - components: - - pos: 38.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22422 - type: CableHV - components: - - pos: 38.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22423 - type: CableHV - components: - - pos: 37.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22424 - type: CableHV - components: - - pos: 37.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22425 - type: CableHV - components: - - pos: 37.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22426 - type: CableHV - components: - - pos: 37.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22427 - type: CableHV - components: - - pos: 34.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22428 - type: CableHV - components: - - pos: 35.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22429 - type: CableHV - components: - - pos: 33.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22430 - type: CableHV - components: - - pos: 36.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22431 - type: CableHV - components: - - pos: 32.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22432 - type: CableHV - components: - - pos: 31.5,-46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22433 - type: CableMV - components: - - pos: 39.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22434 - type: CableMV - components: - - pos: 38.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22435 - type: CableMV - components: - - pos: 38.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22436 - type: CableMV - components: - - pos: 38.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22437 - type: CableMV - components: - - pos: 38.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22438 - type: CableMV - components: - - pos: 38.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22439 - type: CableMV - components: - - pos: 38.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22440 - type: CableMV - components: - - pos: 38.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22441 - type: CableMV - components: - - pos: 38.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22442 - type: CableMV - components: - - pos: 38.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22443 - type: CableMV - components: - - pos: 38.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22444 - type: CableMV - components: - - pos: 38.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22445 - type: CableApcExtension - components: - - pos: 38.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22446 - type: CableApcExtension - components: - - pos: 37.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22447 - type: CableApcExtension - components: - - pos: 37.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22448 - type: CableApcExtension - components: - - pos: 37.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22449 - type: CableApcExtension - components: - - pos: 37.5,-51.5 - parent: 0 - type: Transform -- uid: 22450 - type: CableApcExtension - components: - - pos: 37.5,-52.5 - parent: 0 - type: Transform -- uid: 22451 - type: CableApcExtension - components: - - pos: 37.5,-53.5 - parent: 0 - type: Transform -- uid: 22452 - type: CableApcExtension - components: - - pos: 37.5,-54.5 - parent: 0 - type: Transform -- uid: 22453 - type: CableApcExtension - components: - - pos: 37.5,-55.5 - parent: 0 - type: Transform -- uid: 22454 - type: CableApcExtension - components: - - pos: 37.5,-56.5 - parent: 0 - type: Transform -- uid: 22455 - type: CableApcExtension - components: - - pos: 38.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22456 - type: CableApcExtension - components: - - pos: 39.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22457 - type: CableApcExtension - components: - - pos: 40.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22458 - type: CableApcExtension - components: - - pos: 38.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22459 - type: CableApcExtension - components: - - pos: 38.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22460 - type: CableApcExtension - components: - - pos: 38.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22461 - type: CableApcExtension - components: - - pos: 38.5,-59.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22462 - type: CableApcExtension - components: - - pos: 38.5,-60.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22463 - type: CableApcExtension - components: - - pos: 38.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22464 - type: CableApcExtension - components: - - pos: 38.5,-62.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22465 - type: CableApcExtension - components: - - pos: 38.5,-63.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22466 - type: CableApcExtension - components: - - pos: 37.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22467 - type: CableApcExtension - components: - - pos: 36.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22468 - type: CableApcExtension - components: - - pos: 35.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22469 - type: CableApcExtension - components: - - pos: 34.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22470 - type: CableApcExtension - components: - - pos: 33.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22471 - type: CableApcExtension - components: - - pos: 32.5,-47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22472 - type: CableApcExtension - components: - - pos: 30.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22473 - type: CableApcExtension - components: - - pos: 30.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22474 - type: CableApcExtension - components: - - pos: 32.5,-48.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22475 - type: CableApcExtension - components: - - pos: 32.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22476 - type: CableApcExtension - components: - - pos: 32.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22477 - type: CableApcExtension - components: - - pos: 33.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22478 - type: CableApcExtension - components: - - pos: 34.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22479 - type: CableApcExtension - components: - - pos: 34.5,-51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22480 - type: CableApcExtension - components: - - pos: 34.5,-52.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22481 - type: CableApcExtension - components: - - pos: 34.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22482 - type: CableApcExtension - components: - - pos: 34.5,-54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22483 - type: CableApcExtension - components: - - pos: 34.5,-55.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22484 - type: CableApcExtension - components: - - pos: 34.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22485 - type: CableApcExtension - components: - - pos: 34.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22486 - type: CableApcExtension - components: - - pos: 33.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22487 - type: CableApcExtension - components: - - pos: 32.5,-53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22488 - type: CableApcExtension - components: - - pos: 33.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22489 - type: CableApcExtension - components: - - pos: 32.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22490 - type: Grille - components: - - pos: 22.5,56.5 - parent: 0 - type: Transform -- uid: 22491 - type: Grille - components: - - pos: 22.5,57.5 - parent: 0 - type: Transform -- uid: 22492 - type: Grille - components: - - pos: 22.5,55.5 - parent: 0 - type: Transform -- uid: 22493 - type: Grille - components: - - pos: 22.5,54.5 - parent: 0 - type: Transform -- uid: 22494 - type: SpawnPointResearchDirector - components: - - pos: 21.5,-36.5 - parent: 0 - type: Transform -- uid: 22495 - type: SpawnMobBandito - components: - - pos: 19.5,-37.5 - parent: 0 - type: Transform -- uid: 22496 - type: DogBed - components: - - pos: 19.5,-37.5 - parent: 0 - type: Transform -- uid: 22497 - type: Girder - components: - - pos: 34.5,-51.5 - parent: 0 - type: Transform -- uid: 22498 - type: WallSolid - components: - - pos: 31.5,-54.5 - parent: 0 - type: Transform -- uid: 22499 - type: Grille - components: - - pos: 30.5,-52.5 - parent: 0 - type: Transform -- uid: 22500 - type: Table - components: - - pos: 29.5,-52.5 - parent: 0 - type: Transform -- uid: 22501 - type: Window - components: - - pos: 33.5,-55.5 - parent: 0 - type: Transform -- uid: 22502 - type: Window - components: - - pos: 33.5,-54.5 - parent: 0 - type: Transform -- uid: 22503 - type: hydroponicsSoil - components: - - pos: 31.5,-57.5 - parent: 0 - type: Transform -- uid: 22504 - type: hydroponicsSoil - components: - - pos: 31.5,-56.5 - parent: 0 - type: Transform -- uid: 22505 - type: hydroponicsSoil - components: - - pos: 31.5,-55.5 - parent: 0 - type: Transform -- uid: 22506 - type: hydroponicsSoil - components: - - pos: 35.5,-57.5 - parent: 0 - type: Transform -- uid: 22507 - type: hydroponicsSoil - components: - - pos: 35.5,-56.5 - parent: 0 - type: Transform -- uid: 22508 - type: hydroponicsSoil - components: - - pos: 35.5,-55.5 - parent: 0 - type: Transform -- uid: 22509 - type: hydroponicsSoil - components: - - pos: 35.5,-54.5 - parent: 0 - type: Transform -- uid: 22510 - type: hydroponicsSoil - components: - - pos: 35.5,-53.5 - parent: 0 - type: Transform -- uid: 22511 - type: Rack - components: - - pos: 32.5,-57.5 - parent: 0 - type: Transform -- uid: 22512 - type: Rack - components: - - pos: 34.5,-57.5 - parent: 0 - type: Transform -- uid: 22513 - type: SeedExtractor - components: - - pos: 33.5,-52.5 - parent: 0 - type: Transform -- uid: 22514 - type: WheatSeeds - components: - - pos: 32.39612,-57.495396 - parent: 0 - type: Transform -- uid: 22515 - type: PoppySeeds - components: - - pos: 32.599243,-57.44852 - parent: 0 - type: Transform -- uid: 22516 - type: TowercapSeeds - components: - - pos: 34.39612,-57.60477 - parent: 0 - type: Transform -- uid: 22517 - type: TobaccoSeeds - components: - - pos: 34.630493,-57.41727 - parent: 0 - type: Transform -- uid: 22518 - type: Chair - components: - - pos: 33.5,-57.5 - parent: 0 - type: Transform -- uid: 22519 - type: PlushieNuke - components: - - pos: 33.505493,-57.495396 - parent: 0 - type: Transform -- uid: 22520 - type: PosterContrabandSyndicateRecruitment - components: - - pos: 31.5,-54.5 - parent: 0 - type: Transform -- uid: 22521 - type: WaterTankFull - components: - - pos: 32.5,-50.5 - parent: 0 - type: Transform -- uid: 22522 - type: WaterTankFull - components: - - pos: 36.5,-45.5 - parent: 0 - type: Transform -- uid: 22523 - type: WeldingFuelTankFull - components: - - pos: 35.5,-45.5 - parent: 0 - type: Transform -- uid: 22524 - type: OxygenCanister - components: - - pos: 37.5,-56.5 - parent: 0 - type: Transform -- uid: 22525 - type: CrateEngineeringCableHV - components: - - pos: 37.5,-58.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 22526 - type: ComputerSolarControl - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-59.5 - parent: 0 - type: Transform -- uid: 22527 - type: ExtinguisherCabinetFilled - components: - - pos: 35.5,-44.5 - parent: 0 - type: Transform -- uid: 22528 - type: HydroponicsToolMiniHoe - components: - - pos: 32.415176,-54.5886 - parent: 0 - type: Transform -- uid: 22529 - type: ClothingMaskJoy - components: - - pos: 29.472578,-52.493137 - parent: 0 - type: Transform -- uid: 22530 - type: ClothingOuterBioScientist - components: - - pos: 29.488203,-52.305637 - parent: 0 - type: Transform -- uid: 22531 - type: ClosetMaintenanceFilledRandom - components: - - pos: 38.5,-53.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22532 - type: ClosetMaintenanceFilledRandom - components: - - pos: 34.5,-49.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22533 - type: Rack - components: - - pos: 30.5,-50.5 - parent: 0 - type: Transform -- uid: 22534 - type: CrateEmptySpawner - components: - - pos: 29.5,-50.5 - parent: 0 - type: Transform -- uid: 22535 - type: SpawnMobMouse - components: - - pos: 30.5,-49.5 - parent: 0 - type: Transform -- uid: 22536 - type: trayScanner - components: - - pos: 30.531458,-50.513107 - parent: 0 - type: Transform -- uid: 22537 - type: ClosetFireFilled - components: - - pos: 37.5,-45.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22538 - type: Girder - components: - - pos: 32.5,-45.5 - parent: 0 - type: Transform -- uid: 22539 - type: Catwalk - components: - - pos: 38.5,-56.5 - parent: 0 - type: Transform -- uid: 22540 - type: Catwalk - components: - - pos: 38.5,-55.5 - parent: 0 - type: Transform -- uid: 22541 - type: Catwalk - components: - - pos: 38.5,-54.5 - parent: 0 - type: Transform -- uid: 22542 - type: Catwalk - components: - - pos: 38.5,-53.5 - parent: 0 - type: Transform -- uid: 22543 - type: Catwalk - components: - - pos: 38.5,-52.5 - parent: 0 - type: Transform -- uid: 22544 - type: Catwalk - components: - - pos: 38.5,-51.5 - parent: 0 - type: Transform -- uid: 22545 - type: Catwalk - components: - - pos: 38.5,-50.5 - parent: 0 - type: Transform -- uid: 22546 - type: Catwalk - components: - - pos: 38.5,-49.5 - parent: 0 - type: Transform -- uid: 22547 - type: Catwalk - components: - - pos: 36.5,-46.5 - parent: 0 - type: Transform -- uid: 22548 - type: Catwalk - components: - - pos: 35.5,-46.5 - parent: 0 - type: Transform -- uid: 22549 - type: Catwalk - components: - - pos: 34.5,-46.5 - parent: 0 - type: Transform -- uid: 22550 - type: Catwalk - components: - - pos: 33.5,-46.5 - parent: 0 - type: Transform -- uid: 22551 - type: Catwalk - components: - - pos: 32.5,-46.5 - parent: 0 - type: Transform -- uid: 22552 - type: Catwalk - components: - - pos: 30.5,-45.5 - parent: 0 - type: Transform -- uid: 22553 - type: Catwalk - components: - - pos: 29.5,-45.5 - parent: 0 - type: Transform -- uid: 22554 - type: Catwalk - components: - - pos: 28.5,-45.5 - parent: 0 - type: Transform -- uid: 22555 - type: Catwalk - components: - - pos: 27.5,-45.5 - parent: 0 - type: Transform -- uid: 22556 - type: Catwalk - components: - - pos: 26.5,-45.5 - parent: 0 - type: Transform -- uid: 22557 - type: Catwalk - components: - - pos: 25.5,-45.5 - parent: 0 - type: Transform -- uid: 22558 - type: Catwalk - components: - - pos: 24.5,-45.5 - parent: 0 - type: Transform -- uid: 22559 - type: Catwalk - components: - - pos: 23.5,-45.5 - parent: 0 - type: Transform -- uid: 22560 - type: Catwalk - components: - - pos: 22.5,-45.5 - parent: 0 - type: Transform -- uid: 22561 - type: Catwalk - components: - - pos: 21.5,-45.5 - parent: 0 - type: Transform -- uid: 22562 - type: Catwalk - components: - - pos: 20.5,-45.5 - parent: 0 - type: Transform -- uid: 22563 - type: Catwalk - components: - - pos: 19.5,-45.5 - parent: 0 - type: Transform -- uid: 22564 - type: PoweredSmallLight - components: - - pos: 28.5,-45.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22565 - type: PartRodMetal - components: - - pos: 37.537308,-55.40471 - parent: 0 - type: Transform -- uid: 22566 - type: Rack - components: - - pos: 36.5,-51.5 - parent: 0 - type: Transform -- uid: 22567 - type: MaintenanceToolSpawner - components: - - pos: 36.5,-51.5 - parent: 0 - type: Transform -- uid: 22568 - type: GrilleBroken - components: - - pos: 32.5,-48.5 - parent: 0 - type: Transform -- uid: 22569 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-52.5 - parent: 0 - type: Transform -- uid: 22570 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-59.5 - parent: 0 - type: Transform -- uid: 22571 - type: SignSpace - components: - - pos: 40.5,-60.5 - parent: 0 - type: Transform -- uid: 22572 - type: RandomPosterAny - components: - - pos: 36.5,-54.5 - parent: 0 - type: Transform -- uid: 22573 - type: RandomPosterAny - components: - - pos: 34.5,-48.5 - parent: 0 - type: Transform -- uid: 22574 - type: PosterLegitSafetyInternals - components: - - pos: 16.5,-44.5 - parent: 0 - type: Transform -- uid: 22575 - type: PosterLegitSafetyEyeProtection - components: - - pos: 5.5,-48.5 - parent: 0 - type: Transform -- uid: 22576 - type: PosterLegitSafetyInternals - components: - - pos: 5.5,-29.5 - parent: 0 - type: Transform -- uid: 22577 - type: PosterLegitSafetyEyeProtection - components: - - pos: 5.5,-31.5 - parent: 0 - type: Transform -- uid: 22578 - type: PottedPlantRandom - components: - - pos: 17.5,-40.5 - parent: 0 - type: Transform -- uid: 22579 - type: PottedPlantRandom - components: - - pos: 15.5,-46.5 - parent: 0 - type: Transform -- uid: 22580 - type: VendingMachineSciDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,-45.5 - parent: 0 - type: Transform -- uid: 22581 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 2.5,-46.5 - parent: 0 - type: Transform -- uid: 22582 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,-44.5 - parent: 0 - type: Transform -- uid: 22583 - type: PosterContrabandRobustSoftdrinks - components: - - pos: 1.5,-45.5 - parent: 0 - type: Transform -- uid: 22584 - type: RandomPosterLegit - components: - - pos: -0.5,-55.5 - parent: 0 - type: Transform -- uid: 22585 - type: SignSpace - components: - - pos: -12.5,-71.5 - parent: 0 - type: Transform -- uid: 22586 - type: SignSpace - components: - - pos: -0.5,-71.5 - parent: 0 - type: Transform -- uid: 22587 - type: ExtinguisherCabinetFilled - components: - - pos: -12.5,-69.5 - parent: 0 - type: Transform -- uid: 22588 - type: AirCanister - components: - - pos: 7.5,-64.5 - parent: 0 - type: Transform -- uid: 22589 - type: NitrogenCanister - components: - - pos: 6.5,-64.5 - parent: 0 - type: Transform -- uid: 22590 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-64.5 - parent: 0 - type: Transform -- uid: 22591 - type: WaterTankFull - components: - - pos: 7.5,-62.5 - parent: 0 - type: Transform -- uid: 22592 - type: Rack - components: - - pos: 7.5,-61.5 - parent: 0 - type: Transform -- uid: 22593 - type: LockerWeldingSuppliesFilled - components: - - pos: 9.5,-61.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22594 - type: Table - components: - - pos: 11.5,-60.5 - parent: 0 - type: Transform -- uid: 22595 - type: trayScanner - components: - - pos: 11.46165,-60.490517 - parent: 0 - type: Transform -- uid: 22596 - type: WallSolid - components: - - pos: 0.5,-63.5 - parent: 0 - type: Transform -- uid: 22597 - type: WallSolid - components: - - pos: 3.5,-63.5 - parent: 0 - type: Transform -- uid: 22598 - type: WallSolid - components: - - pos: 2.5,-63.5 - parent: 0 - type: Transform -- uid: 22599 - type: Rack - components: - - pos: 3.5,-65.5 - parent: 0 - type: Transform -- uid: 22600 - type: Rack - components: - - pos: 3.5,-64.5 - parent: 0 - type: Transform -- uid: 22601 - type: BoxLightbulb - components: - - pos: 3.4836774,-64.40184 - parent: 0 - type: Transform -- uid: 22602 - type: BoxLighttube - components: - - pos: 3.5461774,-65.43309 - parent: 0 - type: Transform -- uid: 22603 - type: AirlockMaintLocked - components: - - pos: 1.5,-63.5 - parent: 0 - type: Transform -- uid: 22604 - type: AirlockMaintLocked - components: - - pos: 2.5,-59.5 - parent: 0 - type: Transform -- uid: 22605 - type: SpaceVillainArcadeFilled - components: - - pos: 0.5,-64.5 - parent: 0 - type: Transform -- uid: 22606 - type: BlockGameArcade - components: - - pos: 2.5,-64.5 - parent: 0 - type: Transform -- uid: 22607 - type: ClothingShoesWizard - components: - - pos: 0.5097017,-65.83838 - parent: 0 - type: Transform -- uid: 22608 - type: PlushieRGBee - components: - - pos: 2.4472017,-65.61963 - parent: 0 - type: Transform -- uid: 22609 - type: RandomPosterAny - components: - - pos: 4.5,-64.5 - parent: 0 - type: Transform -- uid: 22610 - type: RandomPosterAny - components: - - pos: 0.5,-63.5 - parent: 0 - type: Transform -- uid: 22611 - type: RandomPosterLegit - components: - - pos: -0.5,-61.5 - parent: 0 - type: Transform -- uid: 22612 - type: WeldingFuelTankFull - components: - - pos: 0.5,-59.5 - parent: 0 - type: Transform -- uid: 22613 - type: ClosetMaintenanceFilledRandom - components: - - pos: 1.5,-57.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22614 - type: Rack - components: - - pos: 0.5,-57.5 - parent: 0 - type: Transform -- uid: 22615 - type: MaintenanceFluffSpawner - components: - - pos: 0.5,-57.5 - parent: 0 - type: Transform -- uid: 22616 - type: Screwdriver - components: - - pos: 7.534196,-61.39386 - parent: 0 - type: Transform -- uid: 22617 - type: PoweredSmallLight - components: - - pos: 9.5,-60.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22618 - type: FirelockGlass - components: - - pos: -6.5,-48.5 - parent: 0 - type: Transform -- uid: 22619 - type: Catwalk - components: - - pos: 3.5,-62.5 - parent: 0 - type: Transform -- uid: 22620 - type: Catwalk - components: - - pos: 4.5,-62.5 - parent: 0 - type: Transform -- uid: 22621 - type: Catwalk - components: - - pos: 5.5,-62.5 - parent: 0 - type: Transform -- uid: 22622 - type: Catwalk - components: - - pos: 6.5,-61.5 - parent: 0 - type: Transform -- uid: 22623 - type: Catwalk - components: - - pos: 6.5,-60.5 - parent: 0 - type: Transform -- uid: 22624 - type: Catwalk - components: - - pos: 6.5,-59.5 - parent: 0 - type: Transform -- uid: 22625 - type: Catwalk - components: - - pos: 7.5,-58.5 - parent: 0 - type: Transform -- uid: 22626 - type: Catwalk - components: - - pos: 8.5,-58.5 - parent: 0 - type: Transform -- uid: 22627 - type: Catwalk - components: - - pos: 9.5,-58.5 - parent: 0 - type: Transform -- uid: 22628 - type: Girder - components: - - pos: 3.5,-60.5 - parent: 0 - type: Transform -- uid: 22629 - type: Rack - components: - - pos: 17.5,-61.5 - parent: 0 - type: Transform -- uid: 22630 - type: Rack - components: - - pos: 17.5,-60.5 - parent: 0 - type: Transform -- uid: 22631 - type: Rack - components: - - pos: 17.5,-59.5 - parent: 0 - type: Transform -- uid: 22632 - type: Rack - components: - - pos: 19.5,-61.5 - parent: 0 - type: Transform -- uid: 22633 - type: Wrench - components: - - pos: 17.554293,-59.541943 - parent: 0 - type: Transform -- uid: 22634 - type: Screwdriver - components: - - pos: 17.476168,-59.526318 - parent: 0 - type: Transform -- uid: 22635 - type: Wirecutter - components: - - pos: 17.554293,-61.510693 - parent: 0 - type: Transform -- uid: 22636 - type: CigPackBlue - components: - - pos: 17.507418,-60.510693 - parent: 0 - type: Transform -- uid: 22637 - type: ClothingMaskGas - components: - - pos: 19.476168,-61.479443 - parent: 0 - type: Transform -- uid: 22638 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-63.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22639 - type: Chair - components: - - pos: 15.5,-59.5 - parent: 0 - type: Transform -- uid: 22640 - type: WeldingFuelTankFull - components: - - pos: 13.5,-59.5 - parent: 0 - type: Transform -- uid: 22641 - type: Cigarette - components: - - pos: 14.479532,-58.752098 - parent: 0 - type: Transform -- uid: 22642 - type: ClothingShoesBootsJack - components: - - pos: 19.461918,-59.533348 - parent: 0 - type: Transform -- uid: 22643 - type: OxygenCanister - components: - - pos: -17.5,-44.5 - parent: 0 - type: Transform -- uid: 22644 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22645 - type: WaterTankFull - components: - - pos: 17.5,-45.5 - parent: 0 - type: Transform -- uid: 22646 - type: CrateScience - components: - - pos: 17.5,-46.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 22647 - type: Girder - components: - - pos: 21.5,-46.5 - parent: 0 - type: Transform -- uid: 22648 - type: ClosetFireFilled - components: - - pos: 20.5,-46.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22649 - type: RandomSpawner - components: - - pos: 23.5,-46.5 - parent: 0 - type: Transform -- uid: 22650 - type: RandomSpawner - components: - - pos: 33.5,-45.5 - parent: 0 - type: Transform -- uid: 22651 - type: RandomSpawner - components: - - pos: 19.5,-55.5 - parent: 0 - type: Transform -- uid: 22652 - type: RandomSpawner - components: - - pos: 4.5,-58.5 - parent: 0 - type: Transform -- uid: 22653 - type: RandomSpawner - components: - - pos: 6.5,-63.5 - parent: 0 - type: Transform -- uid: 22654 - type: NitrogenCanister - components: - - pos: 40.5,-28.5 - parent: 0 - type: Transform -- uid: 22655 - type: NitrogenCanister - components: - - pos: 39.5,-28.5 - parent: 0 - type: Transform -- uid: 22656 - type: WaterTankFull - components: - - pos: 38.5,-28.5 - parent: 0 - type: Transform -- uid: 22657 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-28.5 - parent: 0 - type: Transform -- uid: 22658 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-28.5 - parent: 0 - type: Transform -- uid: 22659 - type: Girder - components: - - pos: 33.5,-27.5 - parent: 0 - type: Transform -- uid: 22660 - type: SignMedical - components: - - pos: 36.5,-30.5 - parent: 0 - type: Transform -- uid: 22661 - type: Barricade - components: - - pos: 36.5,-35.5 - parent: 0 - type: Transform -- uid: 22662 - type: Barricade - components: - - pos: 36.5,-34.5 - parent: 0 - type: Transform -- uid: 22663 - type: CheapRollerBed - components: - - pos: 35.5058,-36.358624 - parent: 0 - type: Transform -- uid: 22664 - type: PlushieSnake - components: - - pos: 35.53705,-36.43675 - parent: 0 - type: Transform -- uid: 22665 - type: ClosetBase - components: - - pos: 34.5,-30.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22666 - type: PottedPlantRandomPlastic - components: - - pos: 35.5,-30.5 - parent: 0 - type: Transform -- uid: 22667 - type: Table - components: - - pos: 37.5,-36.5 - parent: 0 - type: Transform -- uid: 22668 - type: Table - components: - - pos: 38.5,-36.5 - parent: 0 - type: Transform -- uid: 22669 - type: Table - components: - - pos: 37.5,-33.5 - parent: 0 - type: Transform -- uid: 22670 - type: Table - components: - - pos: 38.5,-33.5 - parent: 0 - type: Transform -- uid: 22671 - type: Table - components: - - pos: 41.5,-30.5 - parent: 0 - type: Transform -- uid: 22672 - type: Table - components: - - pos: 40.5,-30.5 - parent: 0 - type: Transform -- uid: 22673 - type: Rack - components: - - pos: 37.5,-32.5 - parent: 0 - type: Transform -- uid: 22674 - type: Rack - components: - - pos: 37.5,-31.5 - parent: 0 - type: Transform -- uid: 22675 - type: Rack - components: - - pos: 39.5,-36.5 - parent: 0 - type: Transform -- uid: 22676 - type: Rack - components: - - pos: 41.5,-36.5 - parent: 0 - type: Transform -- uid: 22677 - type: Rack - components: - - pos: 41.5,-34.5 - parent: 0 - type: Transform -- uid: 22678 - type: NitrousOxideTankFilled - components: - - pos: 41.490173,-36.468 - parent: 0 - type: Transform -- uid: 22679 - type: ClothingMaskBreath - components: - - pos: 41.583923,-36.62425 - parent: 0 - type: Transform -- uid: 22680 - type: Bed - components: - - pos: 41.5,-35.5 - parent: 0 - type: Transform -- uid: 22681 - type: BedsheetMedical - components: - - pos: 41.5,-35.5 - parent: 0 - type: Transform -- uid: 22682 - type: CheapRollerBed - components: - - pos: 40.5058,-36.389874 - parent: 0 - type: Transform -- uid: 22683 - type: SinkWide - components: - - pos: 39.5,-30.5 - parent: 0 - type: Transform -- uid: 22684 - type: OperatingTable - components: - - pos: 38.5,-30.5 - parent: 0 - type: Transform -- uid: 22685 - type: ComputerFrame - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-30.5 - parent: 0 - type: Transform -- uid: 22686 - type: UnfinishedMachineFrame - components: - - pos: 41.5,-31.5 - parent: 0 - type: Transform -- uid: 22687 - type: KitchenReagentGrinder - components: - - pos: 41.5,-30.5 - parent: 0 - type: Transform -- uid: 22688 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-31.5 - parent: 0 - type: Transform -- uid: 22689 - type: Stool - components: - - pos: 38.5,-32.5 - parent: 0 - type: Transform -- uid: 22690 - type: Cablecuffs - components: - - pos: 38.5058,-36.452374 - parent: 0 - type: Transform -- uid: 22691 - type: MedkitFilled - components: - - pos: 41.5683,-34.452374 - parent: 0 - type: Transform -- uid: 22692 - type: Brutepack - components: - - pos: 38.4433,-33.389874 - parent: 0 - type: Transform -- uid: 22693 - type: ClothingOuterApronChef - components: - - pos: 37.53705,-32.468 - parent: 0 - type: Transform -- uid: 22694 - type: ClothingOuterApronChef - components: - - pos: 37.5058,-31.421124 - parent: 0 - type: Transform -- uid: 22695 - type: ClothingMaskSterile - components: - - pos: 37.365173,-32.546124 - parent: 0 - type: Transform -- uid: 22696 - type: ClothingMaskSterile - components: - - pos: 37.3808,-31.499249 - parent: 0 - type: Transform -- uid: 22697 - type: DrinkGlass - components: - - pos: 40.365173,-30.264874 - parent: 0 - type: Transform -- uid: 22698 - type: DrinkGlass - components: - - pos: 40.646423,-30.108624 - parent: 0 - type: Transform -- uid: 22699 - type: DrinkGlass - components: - - pos: 40.8183,-30.436749 - parent: 0 - type: Transform -- uid: 22700 - type: HydroponicsToolHatchet - components: - - pos: 39.5683,-36.56175 - parent: 0 - type: Transform -- uid: 22701 - type: Rack - components: - - pos: 34.5,-32.5 - parent: 0 - type: Transform -- uid: 22702 - type: MaintenanceToolSpawner - components: - - pos: 34.5,-32.5 - parent: 0 - type: Transform -- uid: 22703 - type: MaterialWoodPlank1 - components: - - pos: 35.46261,-32.532078 - parent: 0 - type: Transform -- uid: 22704 - type: WoodenBuckler - components: - - pos: 37.46614,-33.453953 - parent: 0 - type: Transform -- uid: 22705 - type: AirlockMaintLocked - components: - - pos: 27.5,-27.5 - parent: 0 - type: Transform -- uid: 22706 - type: AirlockMaintLocked - components: - - pos: 28.5,-30.5 - parent: 0 - type: Transform -- uid: 22707 - type: WeldingFuelTankFull - components: - - pos: 27.5,-30.5 - parent: 0 - type: Transform -- uid: 22708 - type: MopBucket - components: - - pos: 27.507814,-28.484226 - parent: 0 - type: Transform -- uid: 22709 - type: MopItem - components: - - pos: 27.49219,-28.452976 - parent: 0 - type: Transform -- uid: 22710 - type: LockerElectricalSuppliesFilled - components: - - pos: 28.5,-32.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22711 - type: Girder - components: - - pos: 32.5,-33.5 - parent: 0 - type: Transform -- uid: 22712 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-27.5 - parent: 0 - type: Transform -- uid: 22713 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-28.5 - parent: 0 - type: Transform -- uid: 22714 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-27.5 - parent: 0 - type: Transform -- uid: 22715 - type: Table - components: - - pos: 36.5,-28.5 - parent: 0 - type: Transform -- uid: 22716 - type: Table - components: - - pos: 36.5,-27.5 - parent: 0 - type: Transform -- uid: 22717 - type: SpaceCash10 - components: - - pos: 36.50068,-27.427324 - parent: 0 - type: Transform -- uid: 22718 - type: SpaceCash10 - components: - - pos: 36.672554,-28.427324 - parent: 0 - type: Transform -- uid: 22719 - type: ClothingHeadHatTophat - components: - - pos: 35.46943,-27.552324 - parent: 0 - type: Transform -- uid: 22720 - type: ClothingNeckScarfStripedGreen - components: - - pos: 37.485054,-28.646074 - parent: 0 - type: Transform -- uid: 22721 - type: CigPackGreen - components: - - pos: 37.453804,-25.5992 - parent: 0 - type: Transform -- uid: 22722 - type: Grille - components: - - pos: 36.5,-25.5 - parent: 0 - type: Transform -- uid: 22723 - type: RandomSpawner - components: - - pos: 39.5,-26.5 - parent: 0 - type: Transform -- uid: 22724 - type: RandomSpawner - components: - - pos: 31.5,-28.5 - parent: 0 - type: Transform -- uid: 22725 - type: RandomSpawner - components: - - pos: 32.5,-36.5 - parent: 0 - type: Transform -- uid: 22726 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22727 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22728 - type: Girder - components: - - pos: 42.5,-14.5 - parent: 0 - type: Transform -- uid: 22729 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 42.5,-15.5 - parent: 0 - type: Transform -- uid: 22730 - type: GrilleBroken - components: - - pos: 41.5,-22.5 - parent: 0 - type: Transform -- uid: 22731 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 37.5,-18.5 - parent: 0 - type: Transform -- uid: 22732 - type: Stool - components: - - pos: 38.5,-18.5 - parent: 0 - type: Transform -- uid: 22733 - type: Stool - components: - - pos: 39.5,-18.5 - parent: 0 - type: Transform -- uid: 22734 - type: Rack - components: - - pos: 43.5,-5.5 - parent: 0 - type: Transform -- uid: 22735 - type: FlashlightLantern - components: - - pos: 43.407234,-5.5430093 - parent: 0 - type: Transform -- uid: 22736 - type: MaintenanceFluffSpawner - components: - - pos: 43.5,-5.5 - parent: 0 - type: Transform -- uid: 22737 - type: Chair - components: - - pos: 35.5,0.5 - parent: 0 - type: Transform -- uid: 22738 - type: ClosetFireFilled - components: - - pos: 39.5,0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22739 - type: Catwalk - components: - - pos: 39.5,-26.5 - parent: 0 - type: Transform -- uid: 22740 - type: Catwalk - components: - - pos: 38.5,-26.5 - parent: 0 - type: Transform -- uid: 22741 - type: Catwalk - components: - - pos: 37.5,-26.5 - parent: 0 - type: Transform -- uid: 22742 - type: Catwalk - components: - - pos: 36.5,-26.5 - parent: 0 - type: Transform -- uid: 22743 - type: Catwalk - components: - - pos: 35.5,-26.5 - parent: 0 - type: Transform -- uid: 22744 - type: Catwalk - components: - - pos: 34.5,-26.5 - parent: 0 - type: Transform -- uid: 22745 - type: Catwalk - components: - - pos: 33.5,-26.5 - parent: 0 - type: Transform -- uid: 22746 - type: Catwalk - components: - - pos: 32.5,-26.5 - parent: 0 - type: Transform -- uid: 22747 - type: RandomSpawner - components: - - pos: 15.5,-24.5 - parent: 0 - type: Transform -- uid: 22748 - type: GalaxythistleSeeds - components: - - pos: 15.452318,-25.658424 - parent: 0 - type: Transform -- uid: 22749 - type: RandomSpawner - components: - - pos: 30.5,-26.5 - parent: 0 - type: Transform -- uid: 22750 - type: WetFloorSign - components: - - pos: 29.490416,-28.538149 - parent: 0 - type: Transform -- uid: 22751 - type: DisposalUnit - components: - - pos: 13.5,-21.5 - parent: 0 - type: Transform -- uid: 22752 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 13.5,-21.5 - parent: 0 - type: Transform -- uid: 22753 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 13.5,-20.5 - parent: 0 - type: Transform -- uid: 22754 - type: ClosetEmergencyFilledRandom - components: - - pos: 12.5,-21.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22755 - type: ClosetEmergencyFilledRandom - components: - - pos: 11.5,-21.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22756 - type: ClosetFireFilled - components: - - pos: 10.5,-21.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22757 - type: ClosetToolFilled - components: - - pos: 14.5,-23.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22758 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-28.5 - parent: 0 - type: Transform -- uid: 22759 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22760 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22761 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22762 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22763 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-44.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22764 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-49.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22765 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-55.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22766 - type: ComputerPowerMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-43.5 - parent: 0 - type: Transform -- uid: 22767 - type: Poweredlight - components: - - pos: -6.5,-69.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22768 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-63.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22769 - type: CableHV - components: - - pos: -11.5,-43.5 - parent: 0 - type: Transform -- uid: 22770 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-43.5 - parent: 0 - type: Transform -- uid: 22771 - type: LockerWeldingSuppliesFilled - components: - - pos: -9.5,-43.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22772 - type: Rack - components: - - pos: -33.5,-28.5 - parent: 0 - type: Transform -- uid: 22773 - type: Rack - components: - - pos: -31.5,-26.5 - parent: 0 - type: Transform -- uid: 22774 - type: ClothingHeadHatWeldingMaskFlame - components: - - pos: -33.611534,-28.46992 - parent: 0 - type: Transform -- uid: 22775 - type: WelderIndustrialAdvanced - components: - - pos: -31.37716,-26.50117 - parent: 0 - type: Transform -- uid: 22776 - type: Stool - components: - - pos: -32.5,-26.5 - parent: 0 - type: Transform -- uid: 22777 - type: PoweredSmallLight - components: - - pos: -41.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22778 - type: PoweredSmallLight - components: - - pos: -42.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22779 - type: RandomSpawner - components: - - pos: -45.5,-28.5 - parent: 0 - type: Transform -- uid: 22780 - type: RandomSpawner - components: - - pos: -26.5,-60.5 - parent: 0 - type: Transform -- uid: 22781 - type: CarpetBlack - components: - - pos: -25.5,-16.5 - parent: 0 - type: Transform -- uid: 22782 - type: CarpetBlack - components: - - pos: -25.5,-15.5 - parent: 0 - type: Transform -- uid: 22783 - type: CarpetBlack - components: - - pos: -24.5,-15.5 - parent: 0 - type: Transform -- uid: 22784 - type: CarpetBlack - components: - - pos: -24.5,-16.5 - parent: 0 - type: Transform -- uid: 22785 - type: ComputerTelevision - components: - - pos: -26.5,-15.5 - parent: 0 - type: Transform -- uid: 22786 - type: WaterTankFull - components: - - pos: -25.5,-19.5 - parent: 0 - type: Transform -- uid: 22787 - type: ClosetMaintenanceFilledRandom - components: - - pos: -26.5,-19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22788 - type: FirelockGlass - components: - - pos: -51.5,-21.5 - parent: 0 - type: Transform -- uid: 22789 - type: FirelockGlass - components: - - pos: -14.5,-62.5 - parent: 0 - type: Transform -- uid: 22790 - type: PoweredSmallLight - components: - - pos: 9.5,0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22791 - type: TableCarpet - components: - - pos: -32.5,-23.5 - parent: 0 - type: Transform -- uid: 22792 - type: Chair - components: - - pos: -32.5,-22.5 - parent: 0 - type: Transform -- uid: 22793 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -32.5,-24.5 - parent: 0 - type: Transform -- uid: 22794 - type: ChessBoard - components: - - pos: -32.46505,-23.466705 - parent: 0 - type: Transform -- uid: 22795 - type: WaterCooler - components: - - pos: -31.5,-23.5 - parent: 0 - type: Transform -- uid: 22796 - type: WallSolid - components: - - pos: -55.5,-17.5 - parent: 0 - type: Transform -- uid: 22797 - type: WallSolid - components: - - pos: -54.5,-17.5 - parent: 0 - type: Transform -- uid: 22798 - type: WallSolid - components: - - pos: -53.5,-17.5 - parent: 0 - type: Transform -- uid: 22799 - type: WallSolid - components: - - pos: -53.5,-18.5 - parent: 0 - type: Transform -- uid: 22800 - type: WallSolid - components: - - pos: -53.5,-19.5 - parent: 0 - type: Transform -- uid: 22801 - type: WallSolid - components: - - pos: -53.5,-20.5 - parent: 0 - type: Transform -- uid: 22802 - type: WallSolid - components: - - pos: -54.5,-20.5 - parent: 0 - type: Transform -- uid: 22803 - type: WallSolid - components: - - pos: -55.5,-20.5 - parent: 0 - type: Transform -- uid: 22804 - type: AirlockMaintGlassLocked - components: - - pos: -56.5,-20.5 - parent: 0 - type: Transform -- uid: 22805 - type: WallSolid - components: - - pos: -57.5,-20.5 - parent: 0 - type: Transform -- uid: 22806 - type: WallSolid - components: - - pos: -58.5,-20.5 - parent: 0 - type: Transform -- uid: 22807 - type: WallSolid - components: - - pos: -59.5,-20.5 - parent: 0 - type: Transform -- uid: 22808 - type: Table - components: - - pos: -57.5,-18.5 - parent: 0 - type: Transform -- uid: 22809 - type: Table - components: - - pos: -54.5,-19.5 - parent: 0 - type: Transform -- uid: 22810 - type: Chair - components: - - pos: -54.5,-18.5 - parent: 0 - type: Transform -- uid: 22811 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-19.5 - parent: 0 - type: Transform -- uid: 22812 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-18.5 - parent: 0 - type: Transform -- uid: 22813 - type: NuclearBombKeg - components: - - pos: -58.5,-19.5 - parent: 0 - type: Transform -- uid: 22814 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-18.5 - parent: 0 - type: Transform -- uid: 22815 - type: FoodBoxPizzaFilled - components: - - pos: -57.500534,-18.21264 - parent: 0 - type: Transform -- uid: 22816 - type: ClothingOuterCoatBomber - components: - - pos: -54.487633,-18.620468 - parent: 0 - type: Transform -- uid: 22817 - type: GlowstickPurple - components: - - pos: -54.531784,-19.447016 - parent: 0 - type: Transform -- uid: 22818 - type: GlowstickBlue - components: - - pos: -58.45366,-18.603266 - parent: 0 - type: Transform -- uid: 22819 - type: SynthesizerInstrument - components: - - pos: -55.51616,-19.572016 - parent: 0 - type: Transform -- uid: 22820 - type: PosterContrabandRevolver - components: - - pos: -53.5,-18.5 - parent: 0 - type: Transform -- uid: 22821 - type: PosterContrabandRIPBadger - components: - - pos: -59.5,-18.5 - parent: 0 - type: Transform -- uid: 22822 - type: RandomPosterAny - components: - - pos: -50.5,-20.5 - parent: 0 - type: Transform -- uid: 22823 - type: PosterMapMetaRight - components: - - pos: 1.9809327,12.5 - parent: 0 - type: Transform -- uid: 22824 - type: RandomPosterAny - components: - - pos: -51.5,-7.5 - parent: 0 - type: Transform -- uid: 22825 - type: RandomPosterLegit - components: - - pos: -53.5,-9.5 - parent: 0 - type: Transform -- uid: 22826 - type: AirSensor - components: - - pos: -16.5,1.5 - parent: 0 - type: Transform -- uid: 22827 - type: RandomPosterAny - components: - - pos: -38.5,-8.5 - parent: 0 - type: Transform -- uid: 22828 - type: RandomPosterLegit - components: - - pos: -36.5,-10.5 - parent: 0 - type: Transform -- uid: 22829 - type: RandomPosterLegit - components: - - pos: -35.5,-16.5 - parent: 0 - type: Transform -- uid: 22830 - type: RandomPosterLegit - components: - - pos: -35.5,-18.5 - parent: 0 - type: Transform -- uid: 22831 - type: RandomPosterLegit - components: - - pos: -29.5,-19.5 - parent: 0 - type: Transform -- uid: 22832 - type: RandomPosterLegit - components: - - pos: -40.5,-31.5 - parent: 0 - type: Transform -- uid: 22833 - type: RandomPosterLegit - components: - - pos: -34.5,-58.5 - parent: 0 - type: Transform -- uid: 22834 - type: RandomPosterLegit - components: - - pos: -12.5,-60.5 - parent: 0 - type: Transform -- uid: 22835 - type: AirSensor - components: - - pos: -12.5,-0.5 - parent: 0 - type: Transform -- uid: 22836 - type: RandomPosterLegit - components: - - pos: -10.5,-59.5 - parent: 0 - type: Transform -- uid: 22837 - type: RandomPosterLegit - components: - - pos: -0.5,-64.5 - parent: 0 - type: Transform -- uid: 22838 - type: PosterContrabandWehWatches - components: - - pos: 44.5,-13.5 - parent: 0 - type: Transform -- uid: 22839 - type: PosterContrabandVoteWeh - components: - - pos: 44.5,-16.5 - parent: 0 - type: Transform -- uid: 22840 - type: PlushieLizard - components: - - pos: 49.476562,-13.534864 - parent: 0 - type: Transform -- uid: 22841 - type: PlushieSpaceLizard - components: - - pos: 45.507812,-16.51924 - parent: 0 - type: Transform -- uid: 22842 - type: FirelockGlass - components: - - pos: -37.5,-14.5 - parent: 0 - type: Transform -- uid: 22843 - type: Catwalk - components: - - pos: -37.5,-13.5 - parent: 0 - type: Transform -- uid: 22844 - type: Catwalk - components: - - pos: -37.5,-12.5 - parent: 0 - type: Transform -- uid: 22845 - type: Catwalk - components: - - pos: -37.5,-11.5 - parent: 0 - type: Transform -- uid: 22846 - type: Catwalk - components: - - pos: -37.5,-10.5 - parent: 0 - type: Transform -- uid: 22847 - type: Catwalk - components: - - pos: -37.5,-9.5 - parent: 0 - type: Transform -- uid: 22848 - type: Catwalk - components: - - pos: -37.5,-8.5 - parent: 0 - type: Transform -- uid: 22849 - type: Catwalk - components: - - pos: -37.5,-7.5 - parent: 0 - type: Transform -- uid: 22850 - type: Catwalk - components: - - pos: -37.5,-6.5 - parent: 0 - type: Transform -- uid: 22851 - type: Catwalk - components: - - pos: -37.5,-5.5 - parent: 0 - type: Transform -- uid: 22852 - type: Catwalk - components: - - pos: -37.5,-4.5 - parent: 0 - type: Transform -- uid: 22853 - type: Catwalk - components: - - pos: -37.5,-3.5 - parent: 0 - type: Transform -- uid: 22854 - type: Catwalk - components: - - pos: -35.5,-27.5 - parent: 0 - type: Transform -- uid: 22855 - type: Catwalk - components: - - pos: -36.5,-27.5 - parent: 0 - type: Transform -- uid: 22856 - type: Catwalk - components: - - pos: -37.5,-27.5 - parent: 0 - type: Transform -- uid: 22857 - type: Catwalk - components: - - pos: -38.5,-27.5 - parent: 0 - type: Transform -- uid: 22858 - type: OxygenCanister - components: - - pos: -54.5,-15.5 - parent: 0 - type: Transform -- uid: 22859 - type: NitrogenCanister - components: - - pos: -53.5,-15.5 - parent: 0 - type: Transform -- uid: 22860 - type: AirCanister - components: - - pos: -55.5,-15.5 - parent: 0 - type: Transform -- uid: 22861 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-15.5 - parent: 0 - type: Transform -- uid: 22862 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-15.5 - parent: 0 - type: Transform -- uid: 22863 - type: Rack - components: - - pos: -57.5,-15.5 - parent: 0 - type: Transform -- uid: 22864 - type: ClothingNeckScarfStripedBlue - components: - - pos: -57.4765,-15.515913 - parent: 0 - type: Transform -- uid: 22865 - type: MaintenanceToolSpawner - components: - - pos: -61.5,-20.5 - parent: 0 - type: Transform -- uid: 22866 - type: AltarConvertMaint - components: - - pos: -60.5,-20.5 - parent: 0 - type: Transform -- uid: 22867 - type: TableGlass - components: - - pos: -40.5,-19.5 - parent: 0 - type: Transform -- uid: 22868 - type: TableGlass - components: - - pos: -41.5,-19.5 - parent: 0 - type: Transform -- uid: 22869 - type: TableGlass - components: - - pos: -42.5,-19.5 - parent: 0 - type: Transform -- uid: 22870 - type: StoolBar - components: - - pos: -42.5,-18.5 - parent: 0 - type: Transform -- uid: 22871 - type: StoolBar - components: - - pos: -41.5,-18.5 - parent: 0 - type: Transform -- uid: 22872 - type: StoolBar - components: - - pos: -40.5,-18.5 - parent: 0 - type: Transform -- uid: 22873 - type: RandomFoodMeal - components: - - pos: -42.5,-19.5 - parent: 0 - type: Transform -- uid: 22874 - type: RandomFoodMeal - components: - - pos: -41.5,-19.5 - parent: 0 - type: Transform -- uid: 22875 - type: RandomFoodMeal - components: - - pos: -40.5,-19.5 - parent: 0 - type: Transform -- uid: 22876 - type: PottedPlantRandom - components: - - pos: -45.5,-16.5 - parent: 0 - type: Transform -- uid: 22877 - type: RandomSpawner - components: - - pos: -43.5,-17.5 - parent: 0 - type: Transform -- uid: 22878 - type: RandomSpawner - components: - - pos: -33.5,-24.5 - parent: 0 - type: Transform -- uid: 22879 - type: RandomSpawner - components: - - pos: -27.5,-20.5 - parent: 0 - type: Transform -- uid: 22880 - type: PoweredSmallLight - components: - - pos: -31.5,-20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22881 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -56.5,-9.5 - parent: 0 - type: Transform -- uid: 22882 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -58.5,-9.5 - parent: 0 - type: Transform -- uid: 22883 - type: Chair - components: - - pos: -71.5,-17.5 - parent: 0 - type: Transform -- uid: 22884 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-11.5 - parent: 0 - type: Transform -- uid: 22885 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-15.5 - parent: 0 - type: Transform -- uid: 22886 - type: UprightPianoInstrument - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-26.5 - parent: 0 - type: Transform -- uid: 22887 - type: ChurchOrganInstrument - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-69.5 - parent: 0 - type: Transform -- uid: 22888 - type: Catwalk - components: - - pos: 38.5,-65.5 - parent: 0 - type: Transform -- uid: 22889 - type: Catwalk - components: - - pos: 38.5,-66.5 - parent: 0 - type: Transform -- uid: 22890 - type: Catwalk - components: - - pos: 38.5,-67.5 - parent: 0 - type: Transform -- uid: 22891 - type: Catwalk - components: - - pos: 38.5,-68.5 - parent: 0 - type: Transform -- uid: 22892 - type: Catwalk - components: - - pos: 38.5,-69.5 - parent: 0 - type: Transform -- uid: 22893 - type: Catwalk - components: - - pos: 38.5,-70.5 - parent: 0 - type: Transform -- uid: 22894 - type: Catwalk - components: - - pos: 38.5,-71.5 - parent: 0 - type: Transform -- uid: 22895 - type: Catwalk - components: - - pos: 38.5,-72.5 - parent: 0 - type: Transform -- uid: 22896 - type: Catwalk - components: - - pos: 38.5,-73.5 - parent: 0 - type: Transform -- uid: 22897 - type: Catwalk - components: - - pos: 38.5,-74.5 - parent: 0 - type: Transform -- uid: 22898 - type: Catwalk - components: - - pos: 38.5,-75.5 - parent: 0 - type: Transform -- uid: 22899 - type: Catwalk - components: - - pos: 38.5,-76.5 - parent: 0 - type: Transform -- uid: 22900 - type: Catwalk - components: - - pos: 38.5,-77.5 - parent: 0 - type: Transform -- uid: 22901 - type: Catwalk - components: - - pos: 38.5,-78.5 - parent: 0 - type: Transform -- uid: 22902 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-59.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22903 - type: Poweredlight - components: - - pos: 32.5,-52.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22904 - type: WallSolid - components: - - pos: -5.5,-40.5 - parent: 0 - type: Transform -- uid: 22905 - type: WallSolidRust - components: - - pos: -9.5,-39.5 - parent: 0 - type: Transform -- uid: 22906 - type: WallSolid - components: - - pos: -6.5,-39.5 - parent: 0 - type: Transform -- uid: 22907 - type: WallSolid - components: - - pos: -6.5,-38.5 - parent: 0 - type: Transform -- uid: 22908 - type: WallSolid - components: - - pos: -5.5,-38.5 - parent: 0 - type: Transform -- uid: 22909 - type: ClothingOuterCoatPirate - components: - - pos: -5.527274,-39.534935 - parent: 0 - type: Transform -- uid: 22910 - type: ClothingHeadHatPirate - components: - - pos: -5.511649,-39.23806 - parent: 0 - type: Transform -- uid: 22911 - type: SpaceCash100 - components: - - pos: -5.417899,-39.628685 - parent: 0 - type: Transform -- uid: 22912 - type: WallSolid - components: - - pos: -11.5,-38.5 - parent: 0 - type: Transform -- uid: 22913 - type: WallSolid - components: - - pos: -10.5,-38.5 - parent: 0 - type: Transform -- uid: 22914 - type: WallSolid - components: - - pos: -9.5,-38.5 - parent: 0 - type: Transform -- uid: 22915 - type: WallSolidRust - components: - - pos: -6.5,-40.5 - parent: 0 - type: Transform -- uid: 22916 - type: PottedPlant22 - components: - - pos: -11.5,-39.5 - parent: 0 - type: Transform -- uid: 22917 - type: PottedPlant22 - components: - - pos: -10.5,-39.5 - parent: 0 - type: Transform -- uid: 22918 - type: Girder - components: - - pos: -9.5,-40.5 - parent: 0 - type: Transform -- uid: 22919 - type: Catwalk - components: - - pos: -6.5,-52.5 - parent: 0 - type: Transform -- uid: 22920 - type: Catwalk - components: - - pos: -6.5,-51.5 - parent: 0 - type: Transform -- uid: 22921 - type: Catwalk - components: - - pos: -6.5,-50.5 - parent: 0 - type: Transform -- uid: 22922 - type: Catwalk - components: - - pos: -6.5,-49.5 - parent: 0 - type: Transform -- uid: 22923 - type: FirelockGlass - components: - - pos: -5.5,-48.5 - parent: 0 - type: Transform -- uid: 22924 - type: Catwalk - components: - - pos: -6.5,-47.5 - parent: 0 - type: Transform -- uid: 22925 - type: Catwalk - components: - - pos: -6.5,-46.5 - parent: 0 - type: Transform -- uid: 22926 - type: Catwalk - components: - - pos: -6.5,-45.5 - parent: 0 - type: Transform -- uid: 22927 - type: Catwalk - components: - - pos: -6.5,-44.5 - parent: 0 - type: Transform -- uid: 22928 - type: Catwalk - components: - - pos: -6.5,-43.5 - parent: 0 - type: Transform -- uid: 22929 - type: Catwalk - components: - - pos: -6.5,-42.5 - parent: 0 - type: Transform -- uid: 22930 - type: PosterLegitUeNo - components: - - pos: -6.5,-68.5 - parent: 0 - type: Transform -- uid: 22931 - type: PosterLegitNanotrasenLogo - components: - - pos: -6.5,-64.5 - parent: 0 - type: Transform -- uid: 22932 - type: PosterLegitNanomichiAd - components: - - pos: -12.5,-63.5 - parent: 0 - type: Transform -- uid: 22933 - type: ExtinguisherCabinetFilled - components: - - pos: -0.5,-63.5 - parent: 0 - type: Transform -- uid: 22934 - type: WallSolid - components: - - pos: -5.5,-55.5 - parent: 0 - type: Transform -- uid: 22935 - type: WallSolid - components: - - pos: -5.5,-56.5 - parent: 0 - type: Transform -- uid: 22936 - type: VendingMachineDonut - components: - - flags: SessionSpecific - name: Donut - type: MetaData - - pos: -4.5,-54.5 - parent: 0 - type: Transform -- uid: 22937 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -4.5,-55.5 - parent: 0 - type: Transform -- uid: 22938 - type: SignDirectionalEvac - components: - - pos: -0.5,-53.5 - parent: 0 - type: Transform -- uid: 22939 - type: SignDirectionalEvac - components: - - pos: -4.5,-53.5 - parent: 0 - type: Transform -- uid: 22940 - type: SignDirectionalEvac - components: - - pos: -0.5,-46.5 - parent: 0 - type: Transform -- uid: 22941 - type: SignDirectionalEvac - components: - - pos: -4.5,-46.5 - parent: 0 - type: Transform -- uid: 22942 - type: SignSmoking - components: - - pos: -0.5,-48.5 - parent: 0 - type: Transform -- uid: 22943 - type: ExtinguisherCabinetFilled - components: - - pos: -4.5,-56.5 - parent: 0 - type: Transform -- uid: 22944 - type: ExtinguisherCabinetFilled - components: - - pos: -0.5,-40.5 - parent: 0 - type: Transform -- uid: 22945 - type: TableWood - components: - - pos: -11.5,-40.5 - parent: 0 - type: Transform -- uid: 22946 - type: Girder - components: - - pos: -5.5,-46.5 - parent: 0 - type: Transform -- uid: 22947 - type: SpawnMobWalter - components: - - pos: -8.5,-32.5 - parent: 0 - type: Transform -- uid: 22948 - type: DogBed - components: - - pos: -9.5,-30.5 - parent: 0 - type: Transform -- uid: 22949 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22950 - type: ClothingOuterApron - components: - - pos: -11.475971,-40.404152 - parent: 0 - type: Transform -- uid: 22951 - type: ClothingHandsGlovesColorLightBrown - components: - - pos: -11.565706,-40.310402 - parent: 0 - type: Transform -- uid: 22952 - type: Chair - components: - - pos: -5.5,-41.5 - parent: 0 - type: Transform -- uid: 22953 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -5.5,-43.5 - parent: 0 - type: Transform -- uid: 22954 - type: Table - components: - - pos: -5.5,-42.5 - parent: 0 - type: Transform -- uid: 22955 - type: WeldingFuelTankFull - components: - - pos: -5.5,-47.5 - parent: 0 - type: Transform -- uid: 22956 - type: RandomSpawner - components: - - pos: -7.5,-40.5 - parent: 0 - type: Transform -- uid: 22957 - type: RandomSpawner - components: - - pos: -11.5,-35.5 - parent: 0 - type: Transform -- uid: 22958 - type: FoodTinPeachesMaint - components: - - pos: -5.5005608,-42.19132 - parent: 0 - type: Transform -- uid: 22959 - type: TableReinforced - components: - - pos: -11.5,-53.5 - parent: 0 - type: Transform -- uid: 22960 - type: WallSolid - components: - - pos: -9.5,-54.5 - parent: 0 - type: Transform -- uid: 22961 - type: WallSolid - components: - - pos: -9.5,-53.5 - parent: 0 - type: Transform -- uid: 22962 - type: WallSolidRust - components: - - pos: -10.5,-56.5 - parent: 0 - type: Transform -- uid: 22963 - type: WallSolidRust - components: - - pos: -9.5,-56.5 - parent: 0 - type: Transform -- uid: 22964 - type: WallSolidRust - components: - - pos: -9.5,-55.5 - parent: 0 - type: Transform -- uid: 22965 - type: WallSolid - components: - - pos: -12.5,-56.5 - parent: 0 - type: Transform -- uid: 22966 - type: TableReinforced - components: - - pos: -11.5,-54.5 - parent: 0 - type: Transform -- uid: 22967 - type: WallSolidRust - components: - - pos: -11.5,-56.5 - parent: 0 - type: Transform -- uid: 22968 - type: ClothingOuterArmorScaf - components: - - pos: -11.485536,-54.27606 - parent: 0 - type: Transform -- uid: 22969 - type: ClothingHeadHelmetScaf - components: - - pos: -11.516786,-53.52606 - parent: 0 - type: Transform -- uid: 22970 - type: WeaponShotgunDoubleBarreled - components: - - pos: -11.550534,-54.57394 - parent: 0 - type: Transform - - unspawnedCount: 2 - type: BallisticAmmoProvider -- uid: 22971 - type: ClosetMaintenanceFilledRandom - components: - - pos: -8.5,-53.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22972 - type: MaintenanceToolSpawner - components: - - pos: -8.5,-54.5 - parent: 0 - type: Transform -- uid: 22973 - type: MaintenanceFluffSpawner - components: - - pos: -8.5,-55.5 - parent: 0 - type: Transform -- uid: 22974 - type: RandomSpawner - components: - - pos: -6.5,-57.5 - parent: 0 - type: Transform -- uid: 22975 - type: Catwalk - components: - - pos: -6.5,-53.5 - parent: 0 - type: Transform -- uid: 22976 - type: Catwalk - components: - - pos: -6.5,-54.5 - parent: 0 - type: Transform -- uid: 22977 - type: Catwalk - components: - - pos: -6.5,-55.5 - parent: 0 - type: Transform -- uid: 22978 - type: Catwalk - components: - - pos: -6.5,-56.5 - parent: 0 - type: Transform -- uid: 22979 - type: Catwalk - components: - - pos: -6.5,-57.5 - parent: 0 - type: Transform -- uid: 22980 - type: Catwalk - components: - - pos: -7.5,-58.5 - parent: 0 - type: Transform -- uid: 22981 - type: Catwalk - components: - - pos: -8.5,-58.5 - parent: 0 - type: Transform -- uid: 22982 - type: Catwalk - components: - - pos: -9.5,-58.5 - parent: 0 - type: Transform -- uid: 22983 - type: Catwalk - components: - - pos: -10.5,-58.5 - parent: 0 - type: Transform -- uid: 22984 - type: Catwalk - components: - - pos: -11.5,-58.5 - parent: 0 - type: Transform -- uid: 22985 - type: Catwalk - components: - - pos: -12.5,-58.5 - parent: 0 - type: Transform -- uid: 22986 - type: PaintingTheScream - components: - - pos: -25.5,-68.5 - parent: 0 - type: Transform -- uid: 22987 - type: PosterLegitThereIsNoGasGiant - components: - - pos: -4.5,-50.5 - parent: 0 - type: Transform -- uid: 22988 - type: SignAnomaly - components: - - pos: 17.5,-28.5 - parent: 0 - type: Transform -- uid: 22989 - type: SignRND - components: - - pos: 9.5,-33.5 - parent: 0 - type: Transform -- uid: 22990 - type: BoozeDispenser - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-25.5 - parent: 0 - type: Transform -- uid: 22991 - type: ClothingHeadFishCap - components: - - pos: -16.117708,6.497216 - parent: 0 - type: Transform -- uid: 22992 - type: ClothingEyesEyepatch - components: - - pos: -42.535194,36.511623 - parent: 0 - type: Transform -- uid: 22993 - type: ClothingEyesEyepatch - components: - - pos: -13.4433,3.668646 - parent: 0 - type: Transform -- uid: 22994 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 22995 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 22996 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 22997 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 22998 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 22999 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23000 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23001 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23002 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23003 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23004 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23005 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23006 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23007 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23008 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23009 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23010 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23011 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23012 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23013 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23014 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23015 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23016 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23017 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23018 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23019 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23020 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23021 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23022 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23023 - type: FloorTileItemEighties - components: - - pos: -39.485245,-25.525764 - parent: 0 - type: Transform -- uid: 23024 - type: ClothingNeckHeadphones - components: - - pos: -42.440857,-53.459534 - parent: 0 - type: Transform -- uid: 23025 - type: PillHyronalin - components: - - pos: 33.453438,-49.228096 - parent: 0 - type: Transform -- uid: 23026 - type: WelderIndustrial - components: - - pos: 55.47799,-5.388656 - parent: 0 - type: Transform -- uid: 23027 - type: ClosetL3ScienceFilled - components: - - pos: 19.5,-28.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23028 - type: SignLibrary - components: - - pos: -34.5,-2.5 - parent: 0 - type: Transform -- uid: 23029 - type: SignLibrary - components: - - pos: -23.5,-5.5 - parent: 0 - type: Transform -- uid: 23030 - type: Milkalyzer - components: - - pos: -69.60844,-17.618492 - parent: 0 - type: Transform -- uid: 23031 - type: SignNosmoking - components: - - pos: -36.5,32.5 - parent: 0 - type: Transform -- uid: 23032 - type: FoodBakedPancake - components: - - pos: -17.590538,-0.5185499 - parent: 0 - type: Transform -- uid: 23033 - type: ClothingBeltHolster - components: - - pos: -49.479202,-34.51553 - parent: 0 - type: Transform -- uid: 23034 - type: SignToolStorage - components: - - pos: 23.5,5.5 - parent: 0 - type: Transform -- uid: 23035 - type: ClothingHeadHatCone - components: - - pos: -16.503195,-10.605946 - parent: 0 - type: Transform -- uid: 23036 - type: AirlockMaintLocked - components: - - pos: -30.5,39.5 - parent: 0 - type: Transform -- uid: 23037 - type: AirlockMaintGlassLocked - components: - - pos: -30.5,36.5 - parent: 0 - type: Transform -- uid: 23038 - type: WindowReinforcedDirectional - components: - - pos: -29.5,38.5 - parent: 0 - type: Transform -- uid: 23039 - type: WindowReinforcedDirectional - components: - - pos: -27.5,38.5 - parent: 0 - type: Transform -- uid: 23040 - type: WindowReinforcedDirectional - components: - - pos: -26.5,38.5 - parent: 0 - type: Transform -- uid: 23041 - type: TableReinforced - components: - - pos: -29.5,38.5 - parent: 0 - type: Transform -- uid: 23042 - type: TableReinforced - components: - - pos: -28.5,38.5 - parent: 0 - type: Transform -- uid: 23043 - type: TableReinforced - components: - - pos: -27.5,38.5 - parent: 0 - type: Transform -- uid: 23044 - type: TableReinforced - components: - - pos: -26.5,38.5 - parent: 0 - type: Transform -- uid: 23045 - type: Windoor - components: - - pos: -28.5,38.5 - parent: 0 - type: Transform -- uid: 23046 - type: CableApcExtension - components: - - pos: -32.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23047 - type: CableApcExtension - components: - - pos: -31.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23048 - type: CableApcExtension - components: - - pos: -30.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23049 - type: CableApcExtension - components: - - pos: -29.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23050 - type: CableApcExtension - components: - - pos: -28.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23051 - type: CableApcExtension - components: - - pos: -27.5,39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23052 - type: CableApcExtension - components: - - pos: -28.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23053 - type: CableApcExtension - components: - - pos: -28.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23054 - type: CableApcExtension - components: - - pos: -28.5,37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23055 - type: CableApcExtension - components: - - pos: -28.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23056 - type: CableApcExtension - components: - - pos: -28.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23057 - type: CableApcExtension - components: - - pos: -18.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23058 - type: CableApcExtension - components: - - pos: -19.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23059 - type: CableApcExtension - components: - - pos: -20.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23060 - type: CableApcExtension - components: - - pos: -21.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23061 - type: CableApcExtension - components: - - pos: -22.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23062 - type: CableApcExtension - components: - - pos: -23.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23063 - type: CableApcExtension - components: - - pos: -23.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23064 - type: CableApcExtension - components: - - pos: -23.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23065 - type: CableApcExtension - components: - - pos: -23.5,37.5 - parent: 0 - type: Transform -- uid: 23066 - type: CableApcExtension - components: - - pos: -23.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23067 - type: Table - components: - - pos: -29.5,41.5 - parent: 0 - type: Transform -- uid: 23068 - type: Rack - components: - - pos: -29.5,40.5 - parent: 0 - type: Transform -- uid: 23069 - type: Rack - components: - - pos: -26.5,39.5 - parent: 0 - type: Transform -- uid: 23070 - type: Rack - components: - - pos: -26.5,40.5 - parent: 0 - type: Transform -- uid: 23071 - type: ClothingNeckTieRed - components: - - pos: -26.59686,40.418045 - parent: 0 - type: Transform -- uid: 23072 - type: MaterialCloth1 - components: - - pos: -29.47186,41.605545 - parent: 0 - type: Transform -- uid: 23073 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: -27.487486,38.58992 - parent: 0 - type: Transform -- uid: 23074 - type: EmergencyOxygenTankFilled - components: - - pos: -26.549986,39.52742 - parent: 0 - type: Transform -- uid: 23075 - type: ClothingUniformJumpsuitColorBlack - components: - - pos: -29.53436,40.46492 - parent: 0 - type: Transform -- uid: 23076 - type: ClothingHandsGlovesColorYellow - components: - - pos: -29.487486,40.58992 - parent: 0 - type: Transform -- uid: 23077 - type: CableApcStack - components: - - pos: -29.53436,40.699295 - parent: 0 - type: Transform -- uid: 23078 - type: MopItem - components: - - pos: -29.487486,40.636795 - parent: 0 - type: Transform -- uid: 23079 - type: BriefcaseBrownFilled - components: - - pos: -26.53436,39.65242 - parent: 0 - type: Transform -- uid: 23080 - type: PestSpray - components: - - pos: -26.59686,38.58992 - parent: 0 - type: Transform -- uid: 23081 - type: DoorElectronics - components: - - pos: -26.456236,38.730545 - parent: 0 - type: Transform -- uid: 23082 - type: DoorElectronics - components: - - pos: -26.424986,38.58992 - parent: 0 - type: Transform -- uid: 23083 - type: HandheldHealthAnalyzer - components: - - pos: -26.518736,40.55867 - parent: 0 - type: Transform -- uid: 23084 - type: Wrench - components: - - pos: -29.456236,38.605545 - parent: 0 - type: Transform -- uid: 23085 - type: BodyBag_Folded - components: - - pos: -29.40936,38.730545 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23086 - type: ClosetMaintenanceFilledRandom - components: - - pos: -28.5,41.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23087 - type: ClosetFireFilled - components: - - pos: -27.5,41.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23088 - type: Cigarette - components: - - pos: -28.50311,35.418045 - parent: 0 - type: Transform -- uid: 23089 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -29.5,37.5 - parent: 0 - type: Transform -- uid: 23090 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -29.5,35.5 - parent: 0 - type: Transform -- uid: 23091 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -26.5,35.5 - parent: 0 - type: Transform -- uid: 23092 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -26.5,37.5 - parent: 0 - type: Transform -- uid: 23093 - type: ClothingOuterCardborg - components: - - pos: -29.50311,41.636795 - parent: 0 - type: Transform -- uid: 23094 - type: ClothingShoesColorOrange - components: - - pos: -29.549986,41.324295 - parent: 0 - type: Transform -- uid: 23095 - type: BookDetective - components: - - pos: -27.456236,38.65242 - parent: 0 - type: Transform -- uid: 23096 - type: ClothingNeckScarfStripedGreen - components: - - pos: -26.47186,40.636795 - parent: 0 - type: Transform -- uid: 23097 - type: ToolboxMechanicalFilled - components: - - pos: -27.487486,35.449295 - parent: 0 - type: Transform -- uid: 23098 - type: ClosetEmergencyFilledRandom - components: - - pos: -31.5,40.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23099 - type: RandomSpawner - components: - - pos: -33.5,39.5 - parent: 0 - type: Transform -- uid: 23100 - type: RandomSpawner - components: - - pos: -40.5,44.5 - parent: 0 - type: Transform -- uid: 23101 - type: RandomSpawner - components: - - pos: -40.5,45.5 - parent: 0 - type: Transform -- uid: 23102 - type: RandomSpawner - components: - - pos: -41.5,45.5 - parent: 0 - type: Transform -- uid: 23103 - type: RandomSpawner - components: - - pos: -40.5,46.5 - parent: 0 - type: Transform -- uid: 23104 - type: RandomSpawner - components: - - pos: -38.5,45.5 - parent: 0 - type: Transform -- uid: 23105 - type: RandomSpawner - components: - - pos: -40.5,40.5 - parent: 0 - type: Transform -- uid: 23106 - type: RandomSpawner - components: - - pos: -39.5,39.5 - parent: 0 - type: Transform -- uid: 23107 - type: RandomSpawner - components: - - pos: -38.5,42.5 - parent: 0 - type: Transform -- uid: 23108 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -37.5,41.5 - parent: 0 - type: Transform -- uid: 23109 - type: WeldingFuelTankFull - components: - - pos: -31.5,35.5 - parent: 0 - type: Transform -- uid: 23110 - type: BoxLightMixed - components: - - pos: -35.4991,39.41281 - parent: 0 - type: Transform -- uid: 23111 - type: WardrobeMixedFilled - components: - - pos: -35.5,38.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23112 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -26.5,36.5 - parent: 0 - type: Transform -- uid: 23113 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23114 - type: PoweredSmallLight - components: - - pos: -27.5,41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23115 - type: SpawnMobMouse - components: - - pos: -36.5,40.5 - parent: 0 - type: Transform -- uid: 23116 - type: Girder - components: - - pos: -40.5,34.5 - parent: 0 - type: Transform -- uid: 23117 - type: FirelockGlass - components: - - pos: -32.5,34.5 - parent: 0 - type: Transform -- uid: 23118 - type: FirelockGlass - components: - - pos: -37.5,31.5 - parent: 0 - type: Transform -- uid: 23119 - type: FirelockGlass - components: - - pos: -37.5,30.5 - parent: 0 - type: Transform -- uid: 23120 - type: FoodTinPeachesMaint - components: - - pos: -26.95732,38.759464 - parent: 0 - type: Transform -- uid: 23121 - type: WallSolid - components: - - pos: -25.5,33.5 - parent: 0 - type: Transform -- uid: 23122 - type: WallSolid - components: - - pos: -25.5,32.5 - parent: 0 - type: Transform -- uid: 23123 - type: TableWood - components: - - pos: -24.5,37.5 - parent: 0 - type: Transform -- uid: 23124 - type: TableWood - components: - - pos: -23.5,37.5 - parent: 0 - type: Transform -- uid: 23125 - type: TableWood - components: - - pos: -22.5,37.5 - parent: 0 - type: Transform -- uid: 23126 - type: TableWood - components: - - pos: -22.5,38.5 - parent: 0 - type: Transform -- uid: 23127 - type: ClosetBase - components: - - pos: -24.5,39.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23133 - type: ContainerContainer -- uid: 23128 - type: ComfyChair - components: - - pos: -23.5,38.5 - parent: 0 - type: Transform -- uid: 23129 - type: ClothingOuterCoatInspector - components: - - pos: -22.593464,38.504482 - parent: 0 - type: Transform -- uid: 23130 - type: ClothingHeadHatFedoraBrown - components: - - pos: -22.593464,38.738857 - parent: 0 - type: Transform -- uid: 23131 - type: ClothingShoeSlippersDuck - components: - - pos: -21.437214,36.348232 - parent: 0 - type: Transform -- uid: 23132 - type: ClothingNeckTieRed - components: - - pos: -22.609089,38.441982 - parent: 0 - type: Transform -- uid: 23133 - type: SheetPlasma - components: - - flags: InContainer - type: MetaData - - parent: 23127 - type: Transform - - canCollide: False - type: Physics -- uid: 23134 - type: Airlock - components: - - pos: -23.5,35.5 - parent: 0 - type: Transform -- uid: 23135 - type: PoweredSmallLight - components: - - pos: -22.5,39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23136 - type: PottedPlantRandomPlastic - components: - - pos: -24.5,36.5 - parent: 0 - type: Transform -- uid: 23137 - type: PlushieLizard - components: - - pos: -24.437214,37.699917 - parent: 0 - type: Transform -- uid: 23138 - type: CrateEmptySpawner - components: - - pos: -19.5,36.5 - parent: 0 - type: Transform -- uid: 23139 - type: Girder - components: - - pos: -17.5,35.5 - parent: 0 - type: Transform -- uid: 23140 - type: Girder - components: - - pos: -17.5,36.5 - parent: 0 - type: Transform -- uid: 23141 - type: Rack - components: - - pos: -18.5,36.5 - parent: 0 - type: Transform -- uid: 23142 - type: FlashlightLantern - components: - - pos: -18.515219,36.495285 - parent: 0 - type: Transform -- uid: 23143 - type: WallSolid - components: - - pos: -18.5,37.5 - parent: 0 - type: Transform -- uid: 23144 - type: WallSolid - components: - - pos: -19.5,37.5 - parent: 0 - type: Transform -- uid: 23145 - type: KitchenSpike - components: - - pos: -18.5,39.5 - parent: 0 - type: Transform -- uid: 23146 - type: ClothingHandsGlovesColorPurple - components: - - pos: -19.032953,38.47564 - parent: 0 - type: Transform -- uid: 23147 - type: ClothingHeadHatPurplesoft - components: - - pos: -19.439203,39.44439 - parent: 0 - type: Transform -- uid: 23148 - type: ClothingUniformJumpskirtColorPurple - components: - - pos: -19.345453,38.897514 - parent: 0 - type: Transform -- uid: 23149 - type: ClothingShoesColorPurple - components: - - pos: -19.095453,38.10064 - parent: 0 - type: Transform -- uid: 23150 - type: BaseBallBat - components: - - pos: -18.470453,38.60064 - parent: 0 - type: Transform -- uid: 23151 - type: Catwalk - components: - - pos: -33.5,36.5 - parent: 0 - type: Transform -- uid: 23152 - type: Catwalk - components: - - pos: -34.5,36.5 - parent: 0 - type: Transform -- uid: 23153 - type: Catwalk - components: - - pos: -35.5,36.5 - parent: 0 - type: Transform -- uid: 23154 - type: Catwalk - components: - - pos: -36.5,36.5 - parent: 0 - type: Transform -- uid: 23155 - type: Catwalk - components: - - pos: -37.5,36.5 - parent: 0 - type: Transform -- uid: 23156 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -31.5,33.5 - parent: 0 - type: Transform -- uid: 23157 - type: Chair - components: - - pos: -30.5,33.5 - parent: 0 - type: Transform -- uid: 23158 - type: PosterLegitDickGumshue - components: - - pos: -21.5,35.5 - parent: 0 - type: Transform -- uid: 23159 - type: RandomPosterContraband - components: - - pos: -34.5,38.5 - parent: 0 - type: Transform -- uid: 23160 - type: RandomPosterAny - components: - - pos: -41.5,39.5 - parent: 0 - type: Transform -- uid: 23161 - type: RandomPosterAny - components: - - pos: -25.5,37.5 - parent: 0 - type: Transform -- uid: 23162 - type: RandomPosterAny - components: - - pos: -27.5,29.5 - parent: 0 - type: Transform -- uid: 23163 - type: Rack - components: - - pos: -20.5,27.5 - parent: 0 - type: Transform -- uid: 23164 - type: Rack - components: - - pos: -20.5,28.5 - parent: 0 - type: Transform -- uid: 23165 - type: RandomSpawner - components: - - pos: -24.5,30.5 - parent: 0 - type: Transform -- uid: 23166 - type: RandomSpawner - components: - - pos: -30.5,32.5 - parent: 0 - type: Transform -- uid: 23167 - type: RandomSpawner - components: - - pos: -18.5,34.5 - parent: 0 - type: Transform -- uid: 23168 - type: MaintenanceFluffSpawner - components: - - pos: -20.5,28.5 - parent: 0 - type: Transform -- uid: 23169 - type: Table - components: - - pos: -24.5,32.5 - parent: 0 - type: Transform -- uid: 23170 - type: Table - components: - - pos: -24.5,33.5 - parent: 0 - type: Transform -- uid: 23171 - type: Table - components: - - pos: -24.5,34.5 - parent: 0 - type: Transform -- uid: 23172 - type: Screwdriver - components: - - pos: -24.491926,33.57334 - parent: 0 - type: Transform -- uid: 23173 - type: ToolboxEmergencyFilled - components: - - pos: -36.564575,42.50289 - parent: 0 - type: Transform -- uid: 23174 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 22.5,46.5 - parent: 0 - type: Transform -- uid: 23175 - type: ClothingHandsGlovesBoxingYellow - components: - - pos: -26.532928,39.669155 - parent: 0 - type: Transform -- uid: 23176 - type: SurveillanceCameraScience - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-29.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RND - type: SurveillanceCamera -- uid: 23177 - type: SurveillanceCameraScience - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-37.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics - type: SurveillanceCamera -- uid: 23178 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 12.5,-49.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Toxins - type: SurveillanceCamera -- uid: 23179 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 23.5,-48.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Toxins Storage - type: SurveillanceCamera -- uid: 23180 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 23.5,-34.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RD's Room - type: SurveillanceCamera -- uid: 23181 - type: SurveillanceCameraScience - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-39.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Sci Server Room - type: SurveillanceCamera -- uid: 23182 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 37.5,-38.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Sci Locker Room - type: SurveillanceCamera -- uid: 23183 - type: SurveillanceCameraScience - components: - - pos: 4.5,-26.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Sci Lobby - type: SurveillanceCamera -- uid: 23184 - type: SurveillanceCameraSupply - components: - - rot: -1.5707963267948966 rad - pos: -42.5,13.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Bay - type: SurveillanceCamera -- uid: 23185 - type: SurveillanceCameraSupply - components: - - rot: 3.141592653589793 rad - pos: -39.5,6.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Mail Room - type: SurveillanceCamera -- uid: 23186 - type: SurveillanceCameraSupply - components: - - rot: -1.5707963267948966 rad - pos: -31.5,15.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: QM's Room - type: SurveillanceCamera -- uid: 23187 - type: SurveillanceCameraSupply - components: - - rot: -1.5707963267948966 rad - pos: -34.5,6.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Desk - type: SurveillanceCamera -- uid: 23188 - type: SurveillanceCameraSupply - components: - - rot: 1.5707963267948966 rad - pos: -39.5,27.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvage Bay - type: SurveillanceCamera -- uid: 23189 - type: SurveillanceCameraGeneral - components: - - pos: -36.5,38.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Disposals - type: SurveillanceCamera -- uid: 23190 - type: SurveillanceCameraGeneral - components: - - pos: -26.5,26.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Janitor's Closet - type: SurveillanceCamera -- uid: 23191 - type: SpawnPointJanitor - components: - - pos: -26.5,27.5 - parent: 0 - type: Transform -- uid: 23192 - type: SpawnPointJanitor - components: - - pos: -25.5,27.5 - parent: 0 - type: Transform -- uid: 23193 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -16.5,31.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Med Room - type: SurveillanceCamera -- uid: 23194 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -8.5,57.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig - type: SurveillanceCamera -- uid: 23195 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -6.5,61.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig Farm - type: SurveillanceCamera -- uid: 23196 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,51.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23197 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: -9.5,31.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell Block - type: SurveillanceCamera -- uid: 23198 - type: SurveillanceCameraSecurity - components: - - pos: -10.5,23.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Hall - type: SurveillanceCamera -- uid: 23199 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 1.5,28.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Entrance - type: SurveillanceCamera -- uid: 23200 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -1.5,38.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - type: SurveillanceCamera -- uid: 23201 - type: SurveillanceCameraSecurity - components: - - pos: -0.5,42.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Locker Room - type: SurveillanceCamera -- uid: 23202 - type: SurveillanceCameraSecurity - components: - - pos: 10.5,44.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: HoS Room - type: SurveillanceCamera -- uid: 23203 - type: SurveillanceCameraSecurity - components: - - pos: 9.5,35.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Breakroom - type: SurveillanceCamera -- uid: 23204 - type: SurveillanceCameraSecurity - components: - - pos: 5.5,17.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Courtroom - type: SurveillanceCamera -- uid: 23205 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: 10.5,26.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective Office - type: SurveillanceCamera -- uid: 23206 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 18.5,40.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Gun Range - type: SurveillanceCamera -- uid: 23207 - type: SurveillanceCameraGeneral - components: - - pos: 31.5,48.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Public Farm - type: SurveillanceCamera -- uid: 23208 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 27.5,42.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Boxing Ring - type: SurveillanceCamera -- uid: 23209 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 22.5,19.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dorm Lounge - type: SurveillanceCamera -- uid: 23210 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 21.5,0.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bar - type: SurveillanceCamera -- uid: 23211 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 33.5,-2.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Theater - type: SurveillanceCamera -- uid: 23212 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-11.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Kitchen - type: SurveillanceCamera -- uid: 23213 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 22.5,-12.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bartender Room - type: SurveillanceCamera -- uid: 23214 - type: SurveillanceCameraService - components: - - pos: 26.5,-24.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany - type: SurveillanceCamera -- uid: 23215 - type: SurveillanceCameraService - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-15.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Freezer - type: SurveillanceCamera -- uid: 23216 - type: SurveillanceCameraEngineering - components: - - pos: 60.5,-30.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Air Resevoir - type: SurveillanceCamera -- uid: 23217 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 56.5,-18.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: South Atmos - type: SurveillanceCamera -- uid: 23218 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-9.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: North Atmos - type: SurveillanceCamera -- uid: 23219 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 50.5,-6.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Desk - type: SurveillanceCamera -- uid: 23220 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 49.5,1.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engi Lobby - type: SurveillanceCamera -- uid: 23221 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 53.5,9.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engi Tool Room - type: SurveillanceCamera -- uid: 23222 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: 47.5,8.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: CE's Room - type: SurveillanceCamera -- uid: 23223 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 35.5,8.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Technical Storage - type: SurveillanceCamera -- uid: 23224 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EVA - type: SurveillanceCamera -- uid: 23225 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -17.5,15.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Tool Room - type: SurveillanceCamera -- uid: 23226 - type: GeneratorPlasma - components: - - pos: -37.5,-49.5 - parent: 0 - type: Transform -- uid: 23227 - type: Rack - components: - - pos: -37.5,-51.5 - parent: 0 - type: Transform -- uid: 23228 - type: MaintenanceToolSpawner - components: - - pos: -37.5,-51.5 - parent: 0 - type: Transform -- uid: 23229 - type: CableHV - components: - - pos: 44.5,16.5 - parent: 0 - type: Transform -- uid: 23230 - type: WallReinforced - components: - - pos: 46.5,27.5 - parent: 0 - type: Transform -- uid: 23231 - type: WallReinforced - components: - - pos: 47.5,27.5 - parent: 0 - type: Transform -- uid: 23232 - type: WallReinforced - components: - - pos: 41.5,26.5 - parent: 0 - type: Transform -- uid: 23233 - type: WallReinforced - components: - - pos: 45.5,27.5 - parent: 0 - type: Transform -- uid: 23234 - type: ReinforcedWindow - components: - - pos: 47.5,21.5 - parent: 0 - type: Transform -- uid: 23235 - type: WallReinforced - components: - - pos: 41.5,25.5 - parent: 0 - type: Transform -- uid: 23236 - type: WallReinforced - components: - - pos: 47.5,28.5 - parent: 0 - type: Transform -- uid: 23237 - type: CableApcExtension - components: - - pos: 43.5,14.5 - parent: 0 - type: Transform -- uid: 23238 - type: CableApcExtension - components: - - pos: 48.5,18.5 - parent: 0 - type: Transform -- uid: 23239 - type: CableApcExtension - components: - - pos: 42.5,14.5 - parent: 0 - type: Transform -- uid: 23240 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 44.5,17.5 - parent: 0 - type: Transform -- uid: 23241 - type: WallReinforced - components: - - pos: 47.5,29.5 - parent: 0 - type: Transform -- uid: 23242 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 44.5,16.5 - parent: 0 - type: Transform -- uid: 23243 - type: CableHV - components: - - pos: 44.5,17.5 - parent: 0 - type: Transform -- uid: 23244 - type: WallReinforced - components: - - pos: 41.5,27.5 - parent: 0 - type: Transform -- uid: 23245 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 44.5,15.5 - parent: 0 - type: Transform -- uid: 23246 - type: WallReinforced - components: - - pos: 42.5,27.5 - parent: 0 - type: Transform -- uid: 23247 - type: WallReinforced - components: - - pos: 47.5,22.5 - parent: 0 - type: Transform -- uid: 23248 - type: WallReinforced - components: - - pos: 47.5,23.5 - parent: 0 - type: Transform -- uid: 23249 - type: WallReinforced - components: - - pos: 47.5,24.5 - parent: 0 - type: Transform -- uid: 23250 - type: WallReinforced - components: - - pos: 47.5,25.5 - parent: 0 - type: Transform -- uid: 23251 - type: WallReinforced - components: - - pos: 44.5,27.5 - parent: 0 - type: Transform -- uid: 23252 - type: ReinforcedWindow - components: - - pos: 47.5,19.5 - parent: 0 - type: Transform -- uid: 23253 - type: WallReinforced - components: - - pos: 43.5,27.5 - parent: 0 - type: Transform -- uid: 23254 - type: CableHV - components: - - pos: 44.5,15.5 - parent: 0 - type: Transform -- uid: 23255 - type: CableHV - components: - - pos: 45.5,15.5 - parent: 0 - type: Transform -- uid: 23256 - type: CableHV - components: - - pos: 46.5,15.5 - parent: 0 - type: Transform -- uid: 23257 - type: CableHV - components: - - pos: 47.5,15.5 - parent: 0 - type: Transform -- uid: 23258 - type: CableHV - components: - - pos: 48.5,15.5 - parent: 0 - type: Transform -- uid: 23259 - type: CableHV - components: - - pos: 48.5,16.5 - parent: 0 - type: Transform -- uid: 23260 - type: CableHV - components: - - pos: 48.5,17.5 - parent: 0 - type: Transform -- uid: 23261 - type: CableHV - components: - - pos: 48.5,18.5 - parent: 0 - type: Transform -- uid: 23262 - type: CableHV - components: - - pos: 48.5,19.5 - parent: 0 - type: Transform -- uid: 23263 - type: CableHV - components: - - pos: 48.5,20.5 - parent: 0 - type: Transform -- uid: 23264 - type: CableHV - components: - - pos: 47.5,20.5 - parent: 0 - type: Transform -- uid: 23265 - type: CableHV - components: - - pos: 46.5,20.5 - parent: 0 - type: Transform -- uid: 23266 - type: CableHV - components: - - pos: 45.5,20.5 - parent: 0 - type: Transform -- uid: 23267 - type: CableHV - components: - - pos: 44.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23268 - type: CableHV - components: - - pos: 44.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23269 - type: CableHV - components: - - pos: 44.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23270 - type: CableHV - components: - - pos: 44.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23271 - type: CableHV - components: - - pos: 44.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23272 - type: CableHV - components: - - pos: 44.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23273 - type: CableHV - components: - - pos: 43.5,17.5 - parent: 0 - type: Transform -- uid: 23274 - type: CableHV - components: - - pos: 43.5,16.5 - parent: 0 - type: Transform -- uid: 23275 - type: CableHV - components: - - pos: 43.5,15.5 - parent: 0 - type: Transform -- uid: 23276 - type: CableHV - components: - - pos: 43.5,14.5 - parent: 0 - type: Transform -- uid: 23277 - type: CableHV - components: - - pos: 43.5,13.5 - parent: 0 - type: Transform -- uid: 23278 - type: CableHV - components: - - pos: 44.5,13.5 - parent: 0 - type: Transform -- uid: 23279 - type: CableHV - components: - - pos: 45.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23280 - type: CableHV - components: - - pos: 46.5,13.5 - parent: 0 - type: Transform -- uid: 23281 - type: CableHV - components: - - pos: 47.5,13.5 - parent: 0 - type: Transform -- uid: 23282 - type: CableHV - components: - - pos: 48.5,13.5 - parent: 0 - type: Transform -- uid: 23283 - type: CableHV - components: - - pos: 49.5,13.5 - parent: 0 - type: Transform -- uid: 23284 - type: CableHV - components: - - pos: 50.5,13.5 - parent: 0 - type: Transform -- uid: 23285 - type: CableHV - components: - - pos: 50.5,12.5 - parent: 0 - type: Transform -- uid: 23286 - type: CableHV - components: - - pos: 50.5,11.5 - parent: 0 - type: Transform -- uid: 23287 - type: CableHV - components: - - pos: 50.5,10.5 - parent: 0 - type: Transform -- uid: 23288 - type: CableHV - components: - - pos: 50.5,9.5 - parent: 0 - type: Transform -- uid: 23289 - type: CableHV - components: - - pos: 50.5,8.5 - parent: 0 - type: Transform -- uid: 23290 - type: CableHV - components: - - pos: 50.5,7.5 - parent: 0 - type: Transform -- uid: 23291 - type: CableHV - components: - - pos: 50.5,6.5 - parent: 0 - type: Transform -- uid: 23292 - type: CableHV - components: - - pos: 50.5,5.5 - parent: 0 - type: Transform -- uid: 23293 - type: CableHV - components: - - pos: 50.5,4.5 - parent: 0 - type: Transform -- uid: 23294 - type: Grille - components: - - pos: 45.5,13.5 - parent: 0 - type: Transform -- uid: 23295 - type: Grille - components: - - pos: 45.5,14.5 - parent: 0 - type: Transform -- uid: 23296 - type: Grille - components: - - pos: 45.5,16.5 - parent: 0 - type: Transform -- uid: 23297 - type: Grille - components: - - pos: 45.5,17.5 - parent: 0 - type: Transform -- uid: 23298 - type: Grille - components: - - pos: 44.5,18.5 - parent: 0 - type: Transform -- uid: 23299 - type: Grille - components: - - pos: 43.5,18.5 - parent: 0 - type: Transform -- uid: 23300 - type: Grille - components: - - pos: 42.5,18.5 - parent: 0 - type: Transform -- uid: 23301 - type: Grille - components: - - pos: 47.5,19.5 - parent: 0 - type: Transform -- uid: 23302 - type: Grille - components: - - pos: 47.5,21.5 - parent: 0 - type: Transform -- uid: 23303 - type: ComputerAlert - components: - - rot: 3.141592653589793 rad - pos: 42.5,13.5 - parent: 0 - type: Transform -- uid: 23304 - type: ComputerPowerMonitoring - components: - - rot: 3.141592653589793 rad - pos: 43.5,13.5 - parent: 0 - type: Transform -- uid: 23305 - type: LockerElectricalSuppliesFilled - components: - - pos: 44.5,13.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23306 - type: Catwalk - components: - - pos: 44.5,20.5 - parent: 0 - type: Transform -- uid: 23307 - type: Catwalk - components: - - pos: 44.5,21.5 - parent: 0 - type: Transform -- uid: 23308 - type: Catwalk - components: - - pos: 44.5,22.5 - parent: 0 - type: Transform -- uid: 23309 - type: Catwalk - components: - - pos: 44.5,23.5 - parent: 0 - type: Transform -- uid: 23310 - type: Catwalk - components: - - pos: 44.5,24.5 - parent: 0 - type: Transform -- uid: 23311 - type: Catwalk - components: - - pos: 44.5,25.5 - parent: 0 - type: Transform -- uid: 23312 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 47.5,18.5 - parent: 0 - type: Transform -- uid: 23313 - type: CableMV - components: - - pos: 50.5,10.5 - parent: 0 - type: Transform -- uid: 23314 - type: CableMV - components: - - pos: 50.5,11.5 - parent: 0 - type: Transform -- uid: 23315 - type: CableMV - components: - - pos: 50.5,12.5 - parent: 0 - type: Transform -- uid: 23316 - type: CableMV - components: - - pos: 50.5,13.5 - parent: 0 - type: Transform -- uid: 23317 - type: CableMV - components: - - pos: 50.5,14.5 - parent: 0 - type: Transform -- uid: 23318 - type: CableMV - components: - - pos: 50.5,15.5 - parent: 0 - type: Transform -- uid: 23319 - type: CableMV - components: - - pos: 50.5,16.5 - parent: 0 - type: Transform -- uid: 23320 - type: CableMV - components: - - pos: 50.5,17.5 - parent: 0 - type: Transform -- uid: 23321 - type: CableMV - components: - - pos: 50.5,18.5 - parent: 0 - type: Transform -- uid: 23322 - type: CableMV - components: - - pos: 49.5,18.5 - parent: 0 - type: Transform -- uid: 23323 - type: CableMV - components: - - pos: 48.5,18.5 - parent: 0 - type: Transform -- uid: 23324 - type: CableMV - components: - - pos: 47.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23325 - type: CableApcExtension - components: - - pos: 47.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23326 - type: CableApcExtension - components: - - pos: 47.5,17.5 - parent: 0 - type: Transform -- uid: 23327 - type: CableApcExtension - components: - - pos: 47.5,16.5 - parent: 0 - type: Transform -- uid: 23328 - type: CableApcExtension - components: - - pos: 47.5,15.5 - parent: 0 - type: Transform -- uid: 23329 - type: CableApcExtension - components: - - pos: 47.5,14.5 - parent: 0 - type: Transform -- uid: 23330 - type: CableApcExtension - components: - - pos: 47.5,13.5 - parent: 0 - type: Transform -- uid: 23331 - type: CableApcExtension - components: - - pos: 46.5,15.5 - parent: 0 - type: Transform -- uid: 23332 - type: CableApcExtension - components: - - pos: 45.5,15.5 - parent: 0 - type: Transform -- uid: 23333 - type: SMESBasic - components: - - pos: 43.5,15.5 - parent: 0 - type: Transform -- uid: 23334 - type: SMESBasic - components: - - pos: 43.5,16.5 - parent: 0 - type: Transform -- uid: 23335 - type: SMESBasic - components: - - pos: 43.5,17.5 - parent: 0 - type: Transform -- uid: 23336 - type: CableApcExtension - components: - - pos: 44.5,14.5 - parent: 0 - type: Transform -- uid: 23337 - type: CableApcExtension - components: - - pos: 45.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23338 - type: CableApcExtension - components: - - pos: 50.5,18.5 - parent: 0 - type: Transform -- uid: 23339 - type: CableApcExtension - components: - - pos: 50.5,17.5 - parent: 0 - type: Transform -- uid: 23340 - type: CableApcExtension - components: - - pos: 49.5,18.5 - parent: 0 - type: Transform -- uid: 23341 - type: CableApcExtension - components: - - pos: 50.5,16.5 - parent: 0 - type: Transform -- uid: 23342 - type: CableApcExtension - components: - - pos: 50.5,15.5 - parent: 0 - type: Transform -- uid: 23343 - type: CableApcExtension - components: - - pos: 50.5,14.5 - parent: 0 - type: Transform -- uid: 23344 - type: CableApcExtension - components: - - pos: 50.5,13.5 - parent: 0 - type: Transform -- uid: 23345 - type: CableApcExtension - components: - - pos: 50.5,19.5 - parent: 0 - type: Transform -- uid: 23346 - type: CableApcExtension - components: - - pos: 50.5,20.5 - parent: 0 - type: Transform -- uid: 23347 - type: CableApcExtension - components: - - pos: 50.5,21.5 - parent: 0 - type: Transform -- uid: 23348 - type: CableApcExtension - components: - - pos: 50.5,22.5 - parent: 0 - type: Transform -- uid: 23349 - type: CableApcExtension - components: - - pos: 50.5,23.5 - parent: 0 - type: Transform -- uid: 23350 - type: CableApcExtension - components: - - pos: 50.5,24.5 - parent: 0 - type: Transform -- uid: 23351 - type: CableApcExtension - components: - - pos: 50.5,25.5 - parent: 0 - type: Transform -- uid: 23352 - type: CableApcExtension - components: - - pos: 50.5,26.5 - parent: 0 - type: Transform -- uid: 23353 - type: CableApcExtension - components: - - pos: 50.5,27.5 - parent: 0 - type: Transform -- uid: 23354 - type: CableApcExtension - components: - - pos: 50.5,28.5 - parent: 0 - type: Transform -- uid: 23355 - type: CableApcExtension - components: - - pos: 49.5,20.5 - parent: 0 - type: Transform -- uid: 23356 - type: CableApcExtension - components: - - pos: 48.5,20.5 - parent: 0 - type: Transform -- uid: 23357 - type: CableApcExtension - components: - - pos: 47.5,20.5 - parent: 0 - type: Transform -- uid: 23358 - type: CableApcExtension - components: - - pos: 46.5,20.5 - parent: 0 - type: Transform -- uid: 23359 - type: CableApcExtension - components: - - pos: 45.5,20.5 - parent: 0 - type: Transform -- uid: 23360 - type: CableApcExtension - components: - - pos: 44.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23361 - type: CableApcExtension - components: - - pos: 43.5,20.5 - parent: 0 - type: Transform -- uid: 23362 - type: CableApcExtension - components: - - pos: 43.5,21.5 - parent: 0 - type: Transform -- uid: 23363 - type: CableApcExtension - components: - - pos: 43.5,22.5 - parent: 0 - type: Transform -- uid: 23364 - type: CableApcExtension - components: - - pos: 43.5,23.5 - parent: 0 - type: Transform -- uid: 23365 - type: CableApcExtension - components: - - pos: 43.5,24.5 - parent: 0 - type: Transform -- uid: 23366 - type: CableApcExtension - components: - - pos: 45.5,21.5 - parent: 0 - type: Transform -- uid: 23367 - type: CableApcExtension - components: - - pos: 45.5,22.5 - parent: 0 - type: Transform -- uid: 23368 - type: CableApcExtension - components: - - pos: 45.5,23.5 - parent: 0 - type: Transform -- uid: 23369 - type: CableApcExtension - components: - - pos: 45.5,24.5 - parent: 0 - type: Transform -- uid: 23370 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: 46.5,17.5 - parent: 0 - type: Transform -- uid: 23371 - type: LockerEngineerFilled - components: - - pos: 47.5,17.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23372 - type: WallReinforced - components: - - pos: 60.5,13.5 - parent: 0 - type: Transform -- uid: 23373 - type: ReinforcedWindow - components: - - pos: 61.5,23.5 - parent: 0 - type: Transform -- uid: 23374 - type: ReinforcedWindow - components: - - pos: 60.5,23.5 - parent: 0 - type: Transform -- uid: 23375 - type: ReinforcedWindow - components: - - pos: 59.5,23.5 - parent: 0 - type: Transform -- uid: 23376 - type: ReinforcedWindow - components: - - pos: 61.5,17.5 - parent: 0 - type: Transform -- uid: 23377 - type: ReinforcedWindow - components: - - pos: 61.5,18.5 - parent: 0 - type: Transform -- uid: 23378 - type: ReinforcedWindow - components: - - pos: 61.5,22.5 - parent: 0 - type: Transform -- uid: 23379 - type: ReinforcedWindow - components: - - pos: 60.5,26.5 - parent: 0 - type: Transform -- uid: 23380 - type: ReinforcedWindow - components: - - pos: 61.5,21.5 - parent: 0 - type: Transform -- uid: 23381 - type: ReinforcedWindow - components: - - pos: 61.5,20.5 - parent: 0 - type: Transform -- uid: 23382 - type: ReinforcedWindow - components: - - pos: 61.5,19.5 - parent: 0 - type: Transform -- uid: 23383 - type: ReinforcedWindow - components: - - pos: 59.5,17.5 - parent: 0 - type: Transform -- uid: 23384 - type: ReinforcedWindow - components: - - pos: 60.5,16.5 - parent: 0 - type: Transform -- uid: 23385 - type: ReinforcedWindow - components: - - pos: 60.5,17.5 - parent: 0 - type: Transform -- uid: 23386 - type: WallReinforced - components: - - pos: 60.5,27.5 - parent: 0 - type: Transform -- uid: 23387 - type: WallReinforced - components: - - pos: 60.5,28.5 - parent: 0 - type: Transform -- uid: 23388 - type: WallReinforced - components: - - pos: 62.5,28.5 - parent: 0 - type: Transform -- uid: 23389 - type: WallReinforced - components: - - pos: 61.5,28.5 - parent: 0 - type: Transform -- uid: 23390 - type: ReinforcedWindow - components: - - pos: 60.5,25.5 - parent: 0 - type: Transform -- uid: 23391 - type: ReinforcedWindow - components: - - pos: 60.5,24.5 - parent: 0 - type: Transform -- uid: 23392 - type: ReinforcedWindow - components: - - pos: 60.5,15.5 - parent: 0 - type: Transform -- uid: 23393 - type: ReinforcedWindow - components: - - pos: 60.5,14.5 - parent: 0 - type: Transform -- uid: 23394 - type: WallReinforced - components: - - pos: 59.5,28.5 - parent: 0 - type: Transform -- uid: 23395 - type: WallReinforced - components: - - pos: 58.5,17.5 - parent: 0 - type: Transform -- uid: 23396 - type: WallReinforced - components: - - pos: 57.5,17.5 - parent: 0 - type: Transform -- uid: 23397 - type: WallReinforced - components: - - pos: 55.5,17.5 - parent: 0 - type: Transform -- uid: 23398 - type: WallReinforced - components: - - pos: 54.5,17.5 - parent: 0 - type: Transform -- uid: 23399 - type: WallReinforced - components: - - pos: 54.5,18.5 - parent: 0 - type: Transform -- uid: 23400 - type: WallReinforced - components: - - pos: 58.5,23.5 - parent: 0 - type: Transform -- uid: 23401 - type: WallReinforced - components: - - pos: 57.5,23.5 - parent: 0 - type: Transform -- uid: 23402 - type: WallReinforced - components: - - pos: 55.5,23.5 - parent: 0 - type: Transform -- uid: 23403 - type: WallReinforced - components: - - pos: 54.5,23.5 - parent: 0 - type: Transform -- uid: 23404 - type: WallReinforced - components: - - pos: 54.5,22.5 - parent: 0 - type: Transform -- uid: 23405 - type: WallReinforced - components: - - pos: 58.5,28.5 - parent: 0 - type: Transform -- uid: 23406 - type: WallReinforced - components: - - pos: 57.5,14.5 - parent: 0 - type: Transform -- uid: 23407 - type: WallReinforced - components: - - pos: 57.5,15.5 - parent: 0 - type: Transform -- uid: 23408 - type: WallReinforced - components: - - pos: 57.5,16.5 - parent: 0 - type: Transform -- uid: 23409 - type: CryoPodMachineCircuitboard - components: - - pos: 37.518967,10.578541 - parent: 0 - type: Transform -- uid: 23410 - type: SignRadiationMed - components: - - pos: 58.5,12.5 - parent: 0 - type: Transform -- uid: 23411 - type: RadiationCollector - components: - - pos: 59.5,14.5 - parent: 0 - type: Transform -- uid: 23412 - type: RadiationCollector - components: - - pos: 59.5,15.5 - parent: 0 - type: Transform -- uid: 23413 - type: RadiationCollector - components: - - pos: 59.5,16.5 - parent: 0 - type: Transform -- uid: 23414 - type: RadiationCollector - components: - - pos: 59.5,24.5 - parent: 0 - type: Transform -- uid: 23415 - type: RadiationCollector - components: - - pos: 59.5,25.5 - parent: 0 - type: Transform -- uid: 23416 - type: RadiationCollector - components: - - pos: 59.5,26.5 - parent: 0 - type: Transform -- uid: 23417 - type: BlastDoor - components: - - pos: 54.5,21.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23796 - type: SignalReceiver -- uid: 23418 - type: BlastDoor - components: - - pos: 54.5,20.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23796 - type: SignalReceiver -- uid: 23419 - type: BlastDoor - components: - - pos: 54.5,19.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23796 - type: SignalReceiver -- uid: 23420 - type: Grille - components: - - pos: 60.5,14.5 - parent: 0 - type: Transform -- uid: 23421 - type: Grille - components: - - pos: 60.5,15.5 - parent: 0 - type: Transform -- uid: 23422 - type: Grille - components: - - pos: 60.5,16.5 - parent: 0 - type: Transform -- uid: 23423 - type: Grille - components: - - pos: 60.5,17.5 - parent: 0 - type: Transform -- uid: 23424 - type: Grille - components: - - pos: 59.5,17.5 - parent: 0 - type: Transform -- uid: 23425 - type: Grille - components: - - pos: 61.5,17.5 - parent: 0 - type: Transform -- uid: 23426 - type: Grille - components: - - pos: 61.5,18.5 - parent: 0 - type: Transform -- uid: 23427 - type: Grille - components: - - pos: 61.5,19.5 - parent: 0 - type: Transform -- uid: 23428 - type: Grille - components: - - pos: 61.5,20.5 - parent: 0 - type: Transform -- uid: 23429 - type: Grille - components: - - pos: 61.5,21.5 - parent: 0 - type: Transform -- uid: 23430 - type: Grille - components: - - pos: 61.5,22.5 - parent: 0 - type: Transform -- uid: 23431 - type: Grille - components: - - pos: 61.5,23.5 - parent: 0 - type: Transform -- uid: 23432 - type: Grille - components: - - pos: 60.5,23.5 - parent: 0 - type: Transform -- uid: 23433 - type: Grille - components: - - pos: 59.5,23.5 - parent: 0 - type: Transform -- uid: 23434 - type: Grille - components: - - pos: 60.5,24.5 - parent: 0 - type: Transform -- uid: 23435 - type: Grille - components: - - pos: 60.5,25.5 - parent: 0 - type: Transform -- uid: 23436 - type: Grille - components: - - pos: 60.5,26.5 - parent: 0 - type: Transform -- uid: 23437 - type: WallReinforced - components: - - pos: 57.5,24.5 - parent: 0 - type: Transform -- uid: 23438 - type: WallReinforced - components: - - pos: 57.5,25.5 - parent: 0 - type: Transform -- uid: 23439 - type: WallReinforced - components: - - pos: 57.5,26.5 - parent: 0 - type: Transform -- uid: 23440 - type: WallReinforced - components: - - pos: 57.5,28.5 - parent: 0 - type: Transform -- uid: 23441 - type: AirlockEngineeringGlassLocked - components: - - pos: 57.5,27.5 - parent: 0 - type: Transform -- uid: 23442 - type: AirlockEngineeringLocked - components: - - pos: 57.5,13.5 - parent: 0 - type: Transform -- uid: 23443 - type: ContainmentFieldGenerator - components: - - pos: 64.5,24.5 - parent: 0 - type: Transform -- uid: 23444 - type: FirelockGlass - components: - - pos: 24.5,1.5 - parent: 0 - type: Transform -- uid: 23445 - type: ContainmentFieldGenerator - components: - - pos: 72.5,24.5 - parent: 0 - type: Transform -- uid: 23446 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23447 - type: ContainmentFieldGenerator - components: - - pos: 72.5,16.5 - parent: 0 - type: Transform -- uid: 23448 - type: FirelockGlass - components: - - pos: 25.5,1.5 - parent: 0 - type: Transform -- uid: 23449 - type: ContainmentFieldGenerator - components: - - pos: 64.5,16.5 - parent: 0 - type: Transform -- uid: 23450 - type: WallReinforced - components: - - pos: 59.5,30.5 - parent: 0 - type: Transform -- uid: 23451 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 59.5,29.5 - parent: 0 - type: Transform -- uid: 23452 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: 62.5,29.5 - parent: 0 - type: Transform -- uid: 23453 - type: ParticleAcceleratorEmitterCenterUnfinished - components: - - rot: 1.5707963267948966 rad - pos: 59.5,20.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23454 - type: Catwalk - components: - - pos: 62.5,14.5 - parent: 0 - type: Transform -- uid: 23455 - type: Catwalk - components: - - pos: 63.5,14.5 - parent: 0 - type: Transform -- uid: 23456 - type: Catwalk - components: - - pos: 64.5,14.5 - parent: 0 - type: Transform -- uid: 23457 - type: Catwalk - components: - - pos: 65.5,14.5 - parent: 0 - type: Transform -- uid: 23458 - type: Catwalk - components: - - pos: 66.5,14.5 - parent: 0 - type: Transform -- uid: 23459 - type: Catwalk - components: - - pos: 67.5,14.5 - parent: 0 - type: Transform -- uid: 23460 - type: Catwalk - components: - - pos: 68.5,14.5 - parent: 0 - type: Transform -- uid: 23461 - type: Catwalk - components: - - pos: 69.5,14.5 - parent: 0 - type: Transform -- uid: 23462 - type: Catwalk - components: - - pos: 70.5,14.5 - parent: 0 - type: Transform -- uid: 23463 - type: Catwalk - components: - - pos: 71.5,14.5 - parent: 0 - type: Transform -- uid: 23464 - type: Catwalk - components: - - pos: 72.5,14.5 - parent: 0 - type: Transform -- uid: 23465 - type: Catwalk - components: - - pos: 73.5,14.5 - parent: 0 - type: Transform -- uid: 23466 - type: Catwalk - components: - - pos: 74.5,14.5 - parent: 0 - type: Transform -- uid: 23467 - type: Catwalk - components: - - pos: 74.5,15.5 - parent: 0 - type: Transform -- uid: 23468 - type: Catwalk - components: - - pos: 74.5,16.5 - parent: 0 - type: Transform -- uid: 23469 - type: Catwalk - components: - - pos: 74.5,17.5 - parent: 0 - type: Transform -- uid: 23470 - type: Catwalk - components: - - pos: 74.5,18.5 - parent: 0 - type: Transform -- uid: 23471 - type: Catwalk - components: - - pos: 74.5,19.5 - parent: 0 - type: Transform -- uid: 23472 - type: Catwalk - components: - - pos: 74.5,20.5 - parent: 0 - type: Transform -- uid: 23473 - type: Catwalk - components: - - pos: 74.5,21.5 - parent: 0 - type: Transform -- uid: 23474 - type: Catwalk - components: - - pos: 74.5,22.5 - parent: 0 - type: Transform -- uid: 23475 - type: Catwalk - components: - - pos: 74.5,23.5 - parent: 0 - type: Transform -- uid: 23476 - type: Catwalk - components: - - pos: 74.5,24.5 - parent: 0 - type: Transform -- uid: 23477 - type: Catwalk - components: - - pos: 74.5,25.5 - parent: 0 - type: Transform -- uid: 23478 - type: Catwalk - components: - - pos: 74.5,26.5 - parent: 0 - type: Transform -- uid: 23479 - type: Catwalk - components: - - pos: 73.5,26.5 - parent: 0 - type: Transform -- uid: 23480 - type: Catwalk - components: - - pos: 72.5,26.5 - parent: 0 - type: Transform -- uid: 23481 - type: Catwalk - components: - - pos: 71.5,26.5 - parent: 0 - type: Transform -- uid: 23482 - type: Catwalk - components: - - pos: 70.5,26.5 - parent: 0 - type: Transform -- uid: 23483 - type: Catwalk - components: - - pos: 69.5,26.5 - parent: 0 - type: Transform -- uid: 23484 - type: Catwalk - components: - - pos: 68.5,26.5 - parent: 0 - type: Transform -- uid: 23485 - type: Catwalk - components: - - pos: 67.5,26.5 - parent: 0 - type: Transform -- uid: 23486 - type: Catwalk - components: - - pos: 66.5,26.5 - parent: 0 - type: Transform -- uid: 23487 - type: Catwalk - components: - - pos: 65.5,26.5 - parent: 0 - type: Transform -- uid: 23488 - type: Catwalk - components: - - pos: 64.5,26.5 - parent: 0 - type: Transform -- uid: 23489 - type: Catwalk - components: - - pos: 63.5,26.5 - parent: 0 - type: Transform -- uid: 23490 - type: Catwalk - components: - - pos: 62.5,26.5 - parent: 0 - type: Transform -- uid: 23491 - type: ParticleAcceleratorEmitterLeftUnfinished - components: - - rot: 1.5707963267948966 rad - pos: 59.5,19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23492 - type: Catwalk - components: - - pos: 67.5,27.5 - parent: 0 - type: Transform -- uid: 23493 - type: Catwalk - components: - - pos: 69.5,27.5 - parent: 0 - type: Transform -- uid: 23494 - type: Catwalk - components: - - pos: 67.5,13.5 - parent: 0 - type: Transform -- uid: 23495 - type: Catwalk - components: - - pos: 69.5,13.5 - parent: 0 - type: Transform -- uid: 23496 - type: ParticleAcceleratorEmitterRightUnfinished - components: - - rot: 1.5707963267948966 rad - pos: 59.5,21.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23497 - type: ParticleAcceleratorEndCapUnfinished - components: - - rot: 1.5707963267948966 rad - pos: 56.5,20.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23498 - type: ParticleAcceleratorFuelChamberUnfinished - components: - - rot: 1.5707963267948966 rad - pos: 57.5,20.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23499 - type: ParticleAcceleratorPowerBoxUnfinished - components: - - rot: 1.5707963267948966 rad - pos: 58.5,20.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23500 - type: ParticleAcceleratorControlBoxUnfinished - components: - - pos: 43.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 23501 - type: WallReinforced - components: - - pos: 77.5,10.5 - parent: 0 - type: Transform -- uid: 23502 - type: WallReinforced - components: - - pos: 77.5,11.5 - parent: 0 - type: Transform -- uid: 23503 - type: WallReinforced - components: - - pos: 78.5,10.5 - parent: 0 - type: Transform -- uid: 23504 - type: WallReinforced - components: - - pos: 77.5,12.5 - parent: 0 - type: Transform -- uid: 23505 - type: WallReinforced - components: - - pos: 77.5,13.5 - parent: 0 - type: Transform -- uid: 23506 - type: WallReinforced - components: - - pos: 77.5,14.5 - parent: 0 - type: Transform -- uid: 23507 - type: WallReinforced - components: - - pos: 77.5,15.5 - parent: 0 - type: Transform -- uid: 23508 - type: WallReinforced - components: - - pos: 77.5,16.5 - parent: 0 - type: Transform -- uid: 23509 - type: WallReinforced - components: - - pos: 77.5,17.5 - parent: 0 - type: Transform -- uid: 23510 - type: WallReinforced - components: - - pos: 77.5,18.5 - parent: 0 - type: Transform -- uid: 23511 - type: WallReinforced - components: - - pos: 77.5,19.5 - parent: 0 - type: Transform -- uid: 23512 - type: WallReinforced - components: - - pos: 77.5,20.5 - parent: 0 - type: Transform -- uid: 23513 - type: WallReinforced - components: - - pos: 77.5,21.5 - parent: 0 - type: Transform -- uid: 23514 - type: WallReinforced - components: - - pos: 77.5,22.5 - parent: 0 - type: Transform -- uid: 23515 - type: WallReinforced - components: - - pos: 77.5,23.5 - parent: 0 - type: Transform -- uid: 23516 - type: WallReinforced - components: - - pos: 77.5,24.5 - parent: 0 - type: Transform -- uid: 23517 - type: WallReinforced - components: - - pos: 77.5,25.5 - parent: 0 - type: Transform -- uid: 23518 - type: WallReinforced - components: - - pos: 77.5,26.5 - parent: 0 - type: Transform -- uid: 23519 - type: WallReinforced - components: - - pos: 77.5,27.5 - parent: 0 - type: Transform -- uid: 23520 - type: WallReinforced - components: - - pos: 77.5,28.5 - parent: 0 - type: Transform -- uid: 23521 - type: WallReinforced - components: - - pos: 77.5,29.5 - parent: 0 - type: Transform -- uid: 23522 - type: WallReinforced - components: - - pos: 78.5,30.5 - parent: 0 - type: Transform -- uid: 23523 - type: WallReinforced - components: - - pos: 76.5,10.5 - parent: 0 - type: Transform -- uid: 23524 - type: WallReinforced - components: - - pos: 76.5,18.5 - parent: 0 - type: Transform -- uid: 23525 - type: WallReinforced - components: - - pos: 78.5,18.5 - parent: 0 - type: Transform -- uid: 23526 - type: WallReinforced - components: - - pos: 76.5,22.5 - parent: 0 - type: Transform -- uid: 23527 - type: WallReinforced - components: - - pos: 78.5,22.5 - parent: 0 - type: Transform -- uid: 23528 - type: WallReinforced - components: - - pos: 76.5,14.5 - parent: 0 - type: Transform -- uid: 23529 - type: WallReinforced - components: - - pos: 78.5,14.5 - parent: 0 - type: Transform -- uid: 23530 - type: WallReinforced - components: - - pos: 76.5,26.5 - parent: 0 - type: Transform -- uid: 23531 - type: WallReinforced - components: - - pos: 78.5,26.5 - parent: 0 - type: Transform -- uid: 23532 - type: WallReinforced - components: - - pos: 77.5,30.5 - parent: 0 - type: Transform -- uid: 23533 - type: WallReinforced - components: - - pos: 76.5,30.5 - parent: 0 - type: Transform -- uid: 23534 - type: WallReinforced - components: - - pos: 75.5,30.5 - parent: 0 - type: Transform -- uid: 23535 - type: WallReinforced - components: - - pos: 75.5,29.5 - parent: 0 - type: Transform -- uid: 23536 - type: WallReinforced - components: - - pos: 74.5,29.5 - parent: 0 - type: Transform -- uid: 23537 - type: WallReinforced - components: - - pos: 73.5,29.5 - parent: 0 - type: Transform -- uid: 23538 - type: WallReinforced - components: - - pos: 72.5,29.5 - parent: 0 - type: Transform -- uid: 23539 - type: WallReinforced - components: - - pos: 71.5,29.5 - parent: 0 - type: Transform -- uid: 23540 - type: WallReinforced - components: - - pos: 70.5,29.5 - parent: 0 - type: Transform -- uid: 23541 - type: WallReinforced - components: - - pos: 69.5,29.5 - parent: 0 - type: Transform -- uid: 23542 - type: WallReinforced - components: - - pos: 68.5,29.5 - parent: 0 - type: Transform -- uid: 23543 - type: WallReinforced - components: - - pos: 67.5,29.5 - parent: 0 - type: Transform -- uid: 23544 - type: WallReinforced - components: - - pos: 66.5,29.5 - parent: 0 - type: Transform -- uid: 23545 - type: Catwalk - components: - - pos: 62.5,25.5 - parent: 0 - type: Transform -- uid: 23546 - type: Catwalk - components: - - pos: 62.5,24.5 - parent: 0 - type: Transform -- uid: 23547 - type: Catwalk - components: - - pos: 62.5,23.5 - parent: 0 - type: Transform -- uid: 23548 - type: Catwalk - components: - - pos: 62.5,22.5 - parent: 0 - type: Transform -- uid: 23549 - type: Catwalk - components: - - pos: 62.5,21.5 - parent: 0 - type: Transform -- uid: 23550 - type: Catwalk - components: - - pos: 62.5,20.5 - parent: 0 - type: Transform -- uid: 23551 - type: Catwalk - components: - - pos: 62.5,19.5 - parent: 0 - type: Transform -- uid: 23552 - type: Catwalk - components: - - pos: 62.5,18.5 - parent: 0 - type: Transform -- uid: 23553 - type: Catwalk - components: - - pos: 62.5,17.5 - parent: 0 - type: Transform -- uid: 23554 - type: Catwalk - components: - - pos: 62.5,16.5 - parent: 0 - type: Transform -- uid: 23555 - type: Catwalk - components: - - pos: 62.5,15.5 - parent: 0 - type: Transform -- uid: 23556 - type: WallReinforced - components: - - pos: 75.5,10.5 - parent: 0 - type: Transform -- uid: 23557 - type: WallReinforced - components: - - pos: 75.5,11.5 - parent: 0 - type: Transform -- uid: 23558 - type: WallReinforced - components: - - pos: 74.5,11.5 - parent: 0 - type: Transform -- uid: 23559 - type: WallReinforced - components: - - pos: 73.5,11.5 - parent: 0 - type: Transform -- uid: 23560 - type: WallReinforced - components: - - pos: 72.5,11.5 - parent: 0 - type: Transform -- uid: 23561 - type: WallReinforced - components: - - pos: 71.5,11.5 - parent: 0 - type: Transform -- uid: 23562 - type: WallReinforced - components: - - pos: 70.5,11.5 - parent: 0 - type: Transform -- uid: 23563 - type: WallReinforced - components: - - pos: 69.5,11.5 - parent: 0 - type: Transform -- uid: 23564 - type: WallReinforced - components: - - pos: 68.5,11.5 - parent: 0 - type: Transform -- uid: 23565 - type: WallReinforced - components: - - pos: 67.5,11.5 - parent: 0 - type: Transform -- uid: 23566 - type: WallReinforced - components: - - pos: 66.5,11.5 - parent: 0 - type: Transform -- uid: 23567 - type: WallReinforced - components: - - pos: 65.5,11.5 - parent: 0 - type: Transform -- uid: 23568 - type: WallReinforced - components: - - pos: 64.5,11.5 - parent: 0 - type: Transform -- uid: 23569 - type: WallReinforced - components: - - pos: 63.5,11.5 - parent: 0 - type: Transform -- uid: 23570 - type: WallReinforced - components: - - pos: 62.5,11.5 - parent: 0 - type: Transform -- uid: 23571 - type: WallReinforced - components: - - pos: 61.5,11.5 - parent: 0 - type: Transform -- uid: 23572 - type: Grille - components: - - pos: 76.5,11.5 - parent: 0 - type: Transform -- uid: 23573 - type: Grille - components: - - pos: 76.5,12.5 - parent: 0 - type: Transform -- uid: 23574 - type: Grille - components: - - pos: 76.5,13.5 - parent: 0 - type: Transform -- uid: 23575 - type: Grille - components: - - pos: 78.5,11.5 - parent: 0 - type: Transform -- uid: 23576 - type: Grille - components: - - pos: 78.5,12.5 - parent: 0 - type: Transform -- uid: 23577 - type: Grille - components: - - pos: 78.5,13.5 - parent: 0 - type: Transform -- uid: 23578 - type: Grille - components: - - pos: 78.5,15.5 - parent: 0 - type: Transform -- uid: 23579 - type: Grille - components: - - pos: 78.5,16.5 - parent: 0 - type: Transform -- uid: 23580 - type: Grille - components: - - pos: 78.5,17.5 - parent: 0 - type: Transform -- uid: 23581 - type: Grille - components: - - pos: 76.5,15.5 - parent: 0 - type: Transform -- uid: 23582 - type: Grille - components: - - pos: 76.5,16.5 - parent: 0 - type: Transform -- uid: 23583 - type: Grille - components: - - pos: 76.5,17.5 - parent: 0 - type: Transform -- uid: 23584 - type: Grille - components: - - pos: 76.5,19.5 - parent: 0 - type: Transform -- uid: 23585 - type: Grille - components: - - pos: 76.5,20.5 - parent: 0 - type: Transform -- uid: 23586 - type: Grille - components: - - pos: 76.5,21.5 - parent: 0 - type: Transform -- uid: 23587 - type: Grille - components: - - pos: 78.5,19.5 - parent: 0 - type: Transform -- uid: 23588 - type: Grille - components: - - pos: 78.5,20.5 - parent: 0 - type: Transform -- uid: 23589 - type: Grille - components: - - pos: 78.5,21.5 - parent: 0 - type: Transform -- uid: 23590 - type: Grille - components: - - pos: 78.5,23.5 - parent: 0 - type: Transform -- uid: 23591 - type: Grille - components: - - pos: 78.5,24.5 - parent: 0 - type: Transform -- uid: 23592 - type: Grille - components: - - pos: 78.5,25.5 - parent: 0 - type: Transform -- uid: 23593 - type: Grille - components: - - pos: 76.5,23.5 - parent: 0 - type: Transform -- uid: 23594 - type: Grille - components: - - pos: 76.5,24.5 - parent: 0 - type: Transform -- uid: 23595 - type: Grille - components: - - pos: 76.5,25.5 - parent: 0 - type: Transform -- uid: 23596 - type: Grille - components: - - pos: 78.5,27.5 - parent: 0 - type: Transform -- uid: 23597 - type: Grille - components: - - pos: 78.5,28.5 - parent: 0 - type: Transform -- uid: 23598 - type: Grille - components: - - pos: 78.5,29.5 - parent: 0 - type: Transform -- uid: 23599 - type: Grille - components: - - pos: 76.5,27.5 - parent: 0 - type: Transform -- uid: 23600 - type: Grille - components: - - pos: 76.5,28.5 - parent: 0 - type: Transform -- uid: 23601 - type: Grille - components: - - pos: 76.5,29.5 - parent: 0 - type: Transform -- uid: 23602 - type: Grille - components: - - pos: 74.5,30.5 - parent: 0 - type: Transform -- uid: 23603 - type: Grille - components: - - pos: 73.5,30.5 - parent: 0 - type: Transform -- uid: 23604 - type: Grille - components: - - pos: 72.5,30.5 - parent: 0 - type: Transform -- uid: 23605 - type: Catwalk - components: - - pos: 63.5,0.5 - parent: 0 - type: Transform -- uid: 23606 - type: Catwalk - components: - - pos: 64.5,0.5 - parent: 0 - type: Transform -- uid: 23607 - type: Catwalk - components: - - pos: 65.5,0.5 - parent: 0 - type: Transform -- uid: 23608 - type: AirlockEngineeringGlassLocked - components: - - pos: 56.5,17.5 - parent: 0 - type: Transform -- uid: 23609 - type: AirlockEngineeringGlassLocked - components: - - pos: 56.5,23.5 - parent: 0 - type: Transform -- uid: 23610 - type: Emitter - components: - - pos: 72.5,28.5 - parent: 0 - type: Transform -- uid: 23611 - type: Emitter - components: - - pos: 64.5,28.5 - parent: 0 - type: Transform -- uid: 23612 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: 72.5,12.5 - parent: 0 - type: Transform -- uid: 23613 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: 64.5,12.5 - parent: 0 - type: Transform -- uid: 23614 - type: CableMV - components: - - pos: 72.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23615 - type: CableMV - components: - - pos: 71.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23616 - type: CableMV - components: - - pos: 70.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23617 - type: CableMV - components: - - pos: 69.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23618 - type: CableMV - components: - - pos: 68.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23619 - type: CableMV - components: - - pos: 67.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23620 - type: CableMV - components: - - pos: 66.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23621 - type: CableMV - components: - - pos: 65.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23622 - type: CableMV - components: - - pos: 64.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23623 - type: CableMV - components: - - pos: 72.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23624 - type: CableMV - components: - - pos: 71.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23625 - type: CableMV - components: - - pos: 70.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23626 - type: CableMV - components: - - pos: 69.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23627 - type: CableMV - components: - - pos: 68.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23628 - type: CableMV - components: - - pos: 67.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23629 - type: CableMV - components: - - pos: 66.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23630 - type: CableMV - components: - - pos: 65.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23631 - type: CableMV - components: - - pos: 64.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23632 - type: SignRadiationMed - components: - - pos: 78.5,26.5 - parent: 0 - type: Transform -- uid: 23633 - type: SignRadiationMed - components: - - pos: 78.5,14.5 - parent: 0 - type: Transform -- uid: 23634 - type: CableHV - components: - - pos: 59.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23635 - type: CableHV - components: - - pos: 59.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23636 - type: CableHV - components: - - pos: 59.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23637 - type: CableHV - components: - - pos: 59.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23638 - type: CableHV - components: - - pos: 59.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23639 - type: CableHV - components: - - pos: 59.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23640 - type: CableHV - components: - - pos: 59.5,27.5 - parent: 0 - type: Transform -- uid: 23641 - type: CableHV - components: - - pos: 58.5,27.5 - parent: 0 - type: Transform -- uid: 23642 - type: CableHV - components: - - pos: 57.5,27.5 - parent: 0 - type: Transform -- uid: 23643 - type: CableHV - components: - - pos: 56.5,27.5 - parent: 0 - type: Transform -- uid: 23644 - type: CableHV - components: - - pos: 59.5,13.5 - parent: 0 - type: Transform -- uid: 23645 - type: CableHV - components: - - pos: 58.5,13.5 - parent: 0 - type: Transform -- uid: 23646 - type: CableHV - components: - - pos: 57.5,13.5 - parent: 0 - type: Transform -- uid: 23647 - type: CableHV - components: - - pos: 56.5,13.5 - parent: 0 - type: Transform -- uid: 23648 - type: CableHV - components: - - pos: 55.5,13.5 - parent: 0 - type: Transform -- uid: 23649 - type: CableHV - components: - - pos: 54.5,13.5 - parent: 0 - type: Transform -- uid: 23650 - type: CableHV - components: - - pos: 53.5,13.5 - parent: 0 - type: Transform -- uid: 23651 - type: CableHV - components: - - pos: 53.5,14.5 - parent: 0 - type: Transform -- uid: 23652 - type: CableHV - components: - - pos: 53.5,15.5 - parent: 0 - type: Transform -- uid: 23653 - type: CableHV - components: - - pos: 53.5,16.5 - parent: 0 - type: Transform -- uid: 23654 - type: CableHV - components: - - pos: 53.5,17.5 - parent: 0 - type: Transform -- uid: 23655 - type: CableHV - components: - - pos: 53.5,18.5 - parent: 0 - type: Transform -- uid: 23656 - type: CableHV - components: - - pos: 53.5,19.5 - parent: 0 - type: Transform -- uid: 23657 - type: CableHV - components: - - pos: 53.5,20.5 - parent: 0 - type: Transform -- uid: 23658 - type: CableHV - components: - - pos: 53.5,21.5 - parent: 0 - type: Transform -- uid: 23659 - type: CableHV - components: - - pos: 53.5,22.5 - parent: 0 - type: Transform -- uid: 23660 - type: CableHV - components: - - pos: 53.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23661 - type: CableHV - components: - - pos: 53.5,24.5 - parent: 0 - type: Transform -- uid: 23662 - type: CableHV - components: - - pos: 53.5,25.5 - parent: 0 - type: Transform -- uid: 23663 - type: CableHV - components: - - pos: 53.5,26.5 - parent: 0 - type: Transform -- uid: 23664 - type: BlastDoor - components: - - pos: 51.5,27.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23946 - type: SignalReceiver -- uid: 23665 - type: CableHV - components: - - pos: 54.5,27.5 - parent: 0 - type: Transform -- uid: 23666 - type: CableHV - components: - - pos: 52.5,20.5 - parent: 0 - type: Transform -- uid: 23667 - type: CableHV - components: - - pos: 55.5,27.5 - parent: 0 - type: Transform -- uid: 23668 - type: CableHV - components: - - pos: 51.5,20.5 - parent: 0 - type: Transform -- uid: 23669 - type: CableHV - components: - - pos: 50.5,20.5 - parent: 0 - type: Transform -- uid: 23670 - type: CableHV - components: - - pos: 49.5,20.5 - parent: 0 - type: Transform -- uid: 23671 - type: CableApcExtension - components: - - pos: 51.5,15.5 - parent: 0 - type: Transform -- uid: 23672 - type: CableApcExtension - components: - - pos: 52.5,15.5 - parent: 0 - type: Transform -- uid: 23673 - type: CableApcExtension - components: - - pos: 53.5,15.5 - parent: 0 - type: Transform -- uid: 23674 - type: CableApcExtension - components: - - pos: 54.5,15.5 - parent: 0 - type: Transform -- uid: 23675 - type: CableApcExtension - components: - - pos: 55.5,15.5 - parent: 0 - type: Transform -- uid: 23676 - type: CableApcExtension - components: - - pos: 56.5,15.5 - parent: 0 - type: Transform -- uid: 23677 - type: CableApcExtension - components: - - pos: 51.5,25.5 - parent: 0 - type: Transform -- uid: 23678 - type: CableApcExtension - components: - - pos: 52.5,25.5 - parent: 0 - type: Transform -- uid: 23679 - type: CableApcExtension - components: - - pos: 53.5,25.5 - parent: 0 - type: Transform -- uid: 23680 - type: CableApcExtension - components: - - pos: 54.5,25.5 - parent: 0 - type: Transform -- uid: 23681 - type: CableApcExtension - components: - - pos: 55.5,25.5 - parent: 0 - type: Transform -- uid: 23682 - type: CableApcExtension - components: - - pos: 56.5,25.5 - parent: 0 - type: Transform -- uid: 23683 - type: CableApcExtension - components: - - pos: 56.5,16.5 - parent: 0 - type: Transform -- uid: 23684 - type: CableApcExtension - components: - - pos: 56.5,17.5 - parent: 0 - type: Transform -- uid: 23685 - type: CableApcExtension - components: - - pos: 56.5,18.5 - parent: 0 - type: Transform -- uid: 23686 - type: CableApcExtension - components: - - pos: 57.5,18.5 - parent: 0 - type: Transform -- uid: 23687 - type: CableApcExtension - components: - - pos: 58.5,18.5 - parent: 0 - type: Transform -- uid: 23688 - type: CableApcExtension - components: - - pos: 59.5,18.5 - parent: 0 - type: Transform -- uid: 23689 - type: CableApcExtension - components: - - pos: 56.5,24.5 - parent: 0 - type: Transform -- uid: 23690 - type: CableApcExtension - components: - - pos: 56.5,23.5 - parent: 0 - type: Transform -- uid: 23691 - type: CableApcExtension - components: - - pos: 56.5,22.5 - parent: 0 - type: Transform -- uid: 23692 - type: CableApcExtension - components: - - pos: 57.5,22.5 - parent: 0 - type: Transform -- uid: 23693 - type: CableApcExtension - components: - - pos: 58.5,22.5 - parent: 0 - type: Transform -- uid: 23694 - type: CableApcExtension - components: - - pos: 59.5,22.5 - parent: 0 - type: Transform -- uid: 23695 - type: CableApcExtension - components: - - pos: 59.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23696 - type: CableApcExtension - components: - - pos: 55.5,14.5 - parent: 0 - type: Transform -- uid: 23697 - type: CableApcExtension - components: - - pos: 55.5,13.5 - parent: 0 - type: Transform -- uid: 23698 - type: CableApcExtension - components: - - pos: 55.5,26.5 - parent: 0 - type: Transform -- uid: 23699 - type: CableApcExtension - components: - - pos: 55.5,27.5 - parent: 0 - type: Transform -- uid: 23700 - type: CableApcExtension - components: - - pos: 55.5,28.5 - parent: 0 - type: Transform -- uid: 23701 - type: CableApcExtension - components: - - pos: 55.5,29.5 - parent: 0 - type: Transform -- uid: 23702 - type: CableApcExtension - components: - - pos: 56.5,29.5 - parent: 0 - type: Transform -- uid: 23703 - type: CableApcExtension - components: - - pos: 57.5,29.5 - parent: 0 - type: Transform -- uid: 23704 - type: CableApcExtension - components: - - pos: 58.5,29.5 - parent: 0 - type: Transform -- uid: 23705 - type: CableApcExtension - components: - - pos: 59.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23706 - type: CableApcExtension - components: - - pos: 60.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23707 - type: CableApcExtension - components: - - pos: 61.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23708 - type: CableApcExtension - components: - - pos: 54.5,29.5 - parent: 0 - type: Transform -- uid: 23709 - type: WallReinforced - components: - - pos: 53.5,29.5 - parent: 0 - type: Transform -- uid: 23710 - type: CableApcExtension - components: - - pos: 50.5,29.5 - parent: 0 - type: Transform -- uid: 23711 - type: AirlockEngineeringGlassLocked - components: - - pos: 45.5,15.5 - parent: 0 - type: Transform -- uid: 23712 - type: AirlockEngineeringGlassLocked - components: - - pos: 47.5,20.5 - parent: 0 - type: Transform -- uid: 23713 - type: CableHV - components: - - pos: 47.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23714 - type: CableHV - components: - - pos: 47.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23715 - type: CableHV - components: - - pos: 43.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23716 - type: CableHV - components: - - pos: 42.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23717 - type: CableApcExtension - components: - - pos: 44.5,19.5 - parent: 0 - type: Transform -- uid: 23718 - type: CableApcExtension - components: - - pos: 44.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23719 - type: CableApcExtension - components: - - pos: 59.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23720 - type: CableApcExtension - components: - - pos: 60.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23721 - type: CableApcExtension - components: - - pos: 60.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23722 - type: CableApcExtension - components: - - pos: 60.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23723 - type: CableApcExtension - components: - - pos: 60.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23724 - type: CableApcExtension - components: - - pos: 61.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23725 - type: CableApcExtension - components: - - pos: 61.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23726 - type: CableApcExtension - components: - - pos: 61.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23727 - type: CableApcExtension - components: - - pos: 61.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23728 - type: CableApcExtension - components: - - pos: 61.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23729 - type: CableApcExtension - components: - - pos: 61.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23730 - type: CableApcExtension - components: - - pos: 61.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23731 - type: CableApcExtension - components: - - pos: 60.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23732 - type: CableApcExtension - components: - - pos: 59.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23733 - type: CableApcExtension - components: - - pos: 60.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23734 - type: CableApcExtension - components: - - pos: 60.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23735 - type: CableApcExtension - components: - - pos: 60.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23736 - type: FirelockGlass - components: - - pos: 18.5,-2.5 - parent: 0 - type: Transform -- uid: 23737 - type: FirelockGlass - components: - - pos: -47.5,-4.5 - parent: 0 - type: Transform -- uid: 23738 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: 61.5,16.5 - parent: 0 - type: Transform -- uid: 23739 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: 61.5,24.5 - parent: 0 - type: Transform -- uid: 23740 - type: FirelockGlass - components: - - pos: 18.5,-3.5 - parent: 0 - type: Transform -- uid: 23741 - type: CableMV - components: - - pos: 62.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23742 - type: CableMV - components: - - pos: 63.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23743 - type: CableMV - components: - - pos: 64.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23744 - type: CableMV - components: - - pos: 65.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23745 - type: CableMV - components: - - pos: 66.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23746 - type: CableMV - components: - - pos: 67.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23747 - type: CableMV - components: - - pos: 68.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23748 - type: CableMV - components: - - pos: 69.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23749 - type: CableMV - components: - - pos: 70.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23750 - type: CableMV - components: - - pos: 71.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23751 - type: CableMV - components: - - pos: 72.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23752 - type: CableMV - components: - - pos: 73.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23753 - type: CableMV - components: - - pos: 74.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23754 - type: CableMV - components: - - pos: 74.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23755 - type: CableMV - components: - - pos: 74.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23756 - type: CableMV - components: - - pos: 74.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23757 - type: CableMV - components: - - pos: 74.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23758 - type: CableMV - components: - - pos: 74.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23759 - type: CableMV - components: - - pos: 74.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23760 - type: CableMV - components: - - pos: 74.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23761 - type: CableMV - components: - - pos: 74.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23762 - type: CableMV - components: - - pos: 74.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23763 - type: CableMV - components: - - pos: 74.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23764 - type: CableMV - components: - - pos: 74.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23765 - type: CableMV - components: - - pos: 74.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23766 - type: CableMV - components: - - pos: 73.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23767 - type: CableMV - components: - - pos: 72.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23768 - type: CableMV - components: - - pos: 71.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23769 - type: CableMV - components: - - pos: 70.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23770 - type: CableMV - components: - - pos: 69.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23771 - type: CableMV - components: - - pos: 68.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23772 - type: CableMV - components: - - pos: 67.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23773 - type: CableMV - components: - - pos: 66.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23774 - type: CableMV - components: - - pos: 65.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23775 - type: CableMV - components: - - pos: 64.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23776 - type: CableMV - components: - - pos: 63.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23777 - type: CableMV - components: - - pos: 62.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23778 - type: CableMV - components: - - pos: 62.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23779 - type: CableMV - components: - - pos: 62.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23780 - type: CableMV - components: - - pos: 62.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23781 - type: CableMV - components: - - pos: 62.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23782 - type: CableMV - components: - - pos: 62.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23783 - type: CableMV - components: - - pos: 62.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23784 - type: CableMV - components: - - pos: 62.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23785 - type: CableMV - components: - - pos: 62.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23786 - type: CableMV - components: - - pos: 62.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23787 - type: CableMV - components: - - pos: 62.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23788 - type: CableMV - components: - - pos: 62.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23789 - type: CableMV - components: - - pos: 61.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23790 - type: CableMV - components: - - pos: 61.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23791 - type: CableMV - components: - - pos: 67.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23792 - type: CableMV - components: - - pos: 69.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23793 - type: CableMV - components: - - pos: 69.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23794 - type: CableMV - components: - - pos: 67.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23795 - type: CableMV - components: - - pos: 75.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23796 - type: SignalButton - components: - - pos: 54.5,18.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 23419 - - port: Toggle - uid: 23418 - - port: Toggle - uid: 23417 - type: SignalTransmitter -- uid: 23797 - type: WallReinforced - components: - - pos: 53.5,23.5 - parent: 0 - type: Transform -- uid: 23798 - type: ReinforcedWindow - components: - - pos: 49.5,23.5 - parent: 0 - type: Transform -- uid: 23799 - type: Grille - components: - - pos: 49.5,23.5 - parent: 0 - type: Transform -- uid: 23800 - type: Grille - components: - - pos: 52.5,23.5 - parent: 0 - type: Transform -- uid: 23801 - type: ReinforcedWindow - components: - - pos: 52.5,23.5 - parent: 0 - type: Transform -- uid: 23802 - type: WallReinforced - components: - - pos: 48.5,23.5 - parent: 0 - type: Transform -- uid: 23803 - type: AirlockEngineeringGlassLocked - components: - - pos: 51.5,23.5 - parent: 0 - type: Transform -- uid: 23804 - type: AirlockEngineeringGlassLocked - components: - - pos: 50.5,23.5 - parent: 0 - type: Transform -- uid: 23805 - type: PoweredlightSodium - components: - - rot: 1.5707963267948966 rad - pos: 58.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23806 - type: PoweredlightSodium - components: - - rot: 1.5707963267948966 rad - pos: 58.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23807 - type: Poweredlight - components: - - pos: 57.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23808 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 57.5,18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23809 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23810 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 46.5,19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23811 - type: Poweredlight - components: - - pos: 42.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23812 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23813 - type: CableHV - components: - - pos: 54.5,20.5 - parent: 0 - type: Transform -- uid: 23814 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 48.5,13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23815 - type: Poweredlight - components: - - pos: 53.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23816 - type: Poweredlight - components: - - pos: 48.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23817 - type: VendingMachineEngiDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 46.5,12.5 - parent: 0 - type: Transform -- uid: 23818 - type: Table - components: - - pos: 48.5,22.5 - parent: 0 - type: Transform -- uid: 23819 - type: GasPipeStraight - components: - - pos: 50.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23820 - type: GasPipeStraight - components: - - pos: 50.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23821 - type: GasPipeStraight - components: - - pos: 50.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23822 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 50.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23823 - type: GasPipeFourway - components: - - pos: 50.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23824 - type: GasPipeStraight - components: - - pos: 50.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23825 - type: GasPipeStraight - components: - - pos: 50.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23826 - type: GasPipeStraight - components: - - pos: 50.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23827 - type: PowerCellRecharger - components: - - pos: 48.5,22.5 - parent: 0 - type: Transform -- uid: 23828 - type: GasPipeStraight - components: - - pos: 50.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23829 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23830 - type: GasPipeStraight - components: - - pos: 50.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23831 - type: GasPipeStraight - components: - - pos: 50.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23832 - type: GasPipeStraight - components: - - pos: 50.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23833 - type: GasPipeStraight - components: - - pos: 54.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23834 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 50.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23835 - type: GasVentPump - components: - - pos: 50.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23836 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23837 - type: GasPipeStraight - components: - - pos: 54.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23838 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 50.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23839 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 54.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23840 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23841 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23842 - type: GasPipeFourway - components: - - pos: 49.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23843 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23844 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23845 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 46.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23846 - type: GasPipeTJunction - components: - - pos: 51.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23847 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23848 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23849 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23850 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 55.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23851 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 51.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23852 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 51.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23853 - type: GasVentPump - components: - - pos: 51.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23854 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 46.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23855 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 52.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23856 - type: GasPipeBend - components: - - pos: 52.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23857 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 51.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23858 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 46.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23859 - type: GasPipeStraight - components: - - pos: 46.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23860 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23861 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23862 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23863 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23864 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23865 - type: GasPipeStraight - components: - - pos: 52.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23866 - type: GasPipeStraight - components: - - pos: 52.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23867 - type: GasPipeStraight - components: - - pos: 52.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23868 - type: GasPipeStraight - components: - - pos: 52.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23869 - type: GasPipeStraight - components: - - pos: 52.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23870 - type: GasPipeStraight - components: - - pos: 51.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23871 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 51.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23872 - type: GasPipeStraight - components: - - pos: 51.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23873 - type: GasPipeStraight - components: - - pos: 51.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23874 - type: WallReinforced - components: - - pos: 52.5,27.5 - parent: 0 - type: Transform -- uid: 23875 - type: GasVentScrubber - components: - - pos: 54.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23876 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23877 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23878 - type: GasPipeStraight - components: - - pos: 51.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23879 - type: GasVentScrubber - components: - - pos: 51.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23880 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 49.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23881 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 49.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23882 - type: GasPipeStraight - components: - - pos: 54.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23883 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 51.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23884 - type: TableReinforced - components: - - pos: 53.5,17.5 - parent: 0 - type: Transform -- uid: 23885 - type: TableReinforced - components: - - pos: 53.5,18.5 - parent: 0 - type: Transform -- uid: 23886 - type: TableReinforced - components: - - pos: 53.5,22.5 - parent: 0 - type: Transform -- uid: 23887 - type: ClosetRadiationSuitFilled - components: - - pos: 54.5,16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23888 - type: SignRadiationMed - components: - - pos: 55.5,17.5 - parent: 0 - type: Transform -- uid: 23889 - type: SMESBasic - components: - - pos: 56.5,30.5 - parent: 0 - type: Transform -- uid: 23890 - type: CableHV - components: - - pos: 54.5,31.5 - parent: 0 - type: Transform -- uid: 23891 - type: CableHV - components: - - pos: 54.5,30.5 - parent: 0 - type: Transform -- uid: 23892 - type: CableHV - components: - - pos: 55.5,30.5 - parent: 0 - type: Transform -- uid: 23893 - type: CableHV - components: - - pos: 56.5,30.5 - parent: 0 - type: Transform -- uid: 23894 - type: CableHV - components: - - pos: 57.5,30.5 - parent: 0 - type: Transform -- uid: 23895 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: 55.5,30.5 - parent: 0 - type: Transform -- uid: 23896 - type: SubstationBasic - components: - - pos: 57.5,30.5 - parent: 0 - type: Transform -- uid: 23897 - type: CableMV - components: - - pos: 58.5,30.5 - parent: 0 - type: Transform -- uid: 23898 - type: CableMV - components: - - pos: 57.5,30.5 - parent: 0 - type: Transform -- uid: 23899 - type: CableMV - components: - - pos: 58.5,29.5 - parent: 0 - type: Transform -- uid: 23900 - type: CableMV - components: - - pos: 59.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23901 - type: CableMV - components: - - pos: 60.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23902 - type: CableMV - components: - - pos: 61.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23903 - type: CableMV - components: - - pos: 62.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23904 - type: CableMV - components: - - pos: 63.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23905 - type: CableMV - components: - - pos: 64.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23906 - type: CableMV - components: - - pos: 60.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23907 - type: CableMV - components: - - pos: 59.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23908 - type: CableMV - components: - - pos: 58.5,16.5 - parent: 0 - type: Transform -- uid: 23909 - type: CableMV - components: - - pos: 58.5,15.5 - parent: 0 - type: Transform -- uid: 23910 - type: CableMV - components: - - pos: 58.5,14.5 - parent: 0 - type: Transform -- uid: 23911 - type: CableMV - components: - - pos: 58.5,13.5 - parent: 0 - type: Transform -- uid: 23912 - type: CableMV - components: - - pos: 57.5,13.5 - parent: 0 - type: Transform -- uid: 23913 - type: CableMV - components: - - pos: 56.5,13.5 - parent: 0 - type: Transform -- uid: 23914 - type: CableMV - components: - - pos: 55.5,13.5 - parent: 0 - type: Transform -- uid: 23915 - type: CableMV - components: - - pos: 54.5,13.5 - parent: 0 - type: Transform -- uid: 23916 - type: CableMV - components: - - pos: 53.5,13.5 - parent: 0 - type: Transform -- uid: 23917 - type: CableMV - components: - - pos: 52.5,13.5 - parent: 0 - type: Transform -- uid: 23918 - type: CableMV - components: - - pos: 51.5,13.5 - parent: 0 - type: Transform -- uid: 23919 - type: ClosetEmergencyFilledRandom - components: - - pos: 58.5,30.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23920 - type: Catwalk - components: - - pos: 61.5,29.5 - parent: 0 - type: Transform -- uid: 23921 - type: Catwalk - components: - - pos: 60.5,29.5 - parent: 0 - type: Transform -- uid: 23922 - type: DisposalUnit - components: - - pos: 49.5,22.5 - parent: 0 - type: Transform -- uid: 23923 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 49.5,22.5 - parent: 0 - type: Transform -- uid: 23924 - type: DisposalBend - components: - - pos: 50.5,22.5 - parent: 0 - type: Transform -- uid: 23925 - type: DisposalPipe - components: - - pos: 50.5,21.5 - parent: 0 - type: Transform -- uid: 23926 - type: DisposalPipe - components: - - pos: 50.5,20.5 - parent: 0 - type: Transform -- uid: 23927 - type: DisposalPipe - components: - - pos: 50.5,19.5 - parent: 0 - type: Transform -- uid: 23928 - type: DisposalPipe - components: - - pos: 50.5,18.5 - parent: 0 - type: Transform -- uid: 23929 - type: DisposalPipe - components: - - pos: 50.5,17.5 - parent: 0 - type: Transform -- uid: 23930 - type: DisposalPipe - components: - - pos: 50.5,16.5 - parent: 0 - type: Transform -- uid: 23931 - type: DisposalPipe - components: - - pos: 50.5,15.5 - parent: 0 - type: Transform -- uid: 23932 - type: SignRadiationMed - components: - - pos: 55.5,23.5 - parent: 0 - type: Transform -- uid: 23933 - type: SignDangerMed - components: - - pos: 54.5,22.5 - parent: 0 - type: Transform -- uid: 23934 - type: SignElectricalMed - components: - - pos: 57.5,15.5 - parent: 0 - type: Transform -- uid: 23935 - type: SignElectricalMed - components: - - pos: 57.5,25.5 - parent: 0 - type: Transform -- uid: 23936 - type: SignSpace - components: - - pos: 59.5,30.5 - parent: 0 - type: Transform -- uid: 23937 - type: PoweredSmallLight - components: - - pos: 60.5,30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23938 - type: CrateEngineeringAMEJar - components: - - pos: 46.5,19.5 - parent: 0 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23939 - type: WallReinforced - components: - - pos: 53.5,30.5 - parent: 0 - type: Transform -- uid: 23940 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 54.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23941 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23942 - type: CableHV - components: - - pos: 55.5,20.5 - parent: 0 - type: Transform -- uid: 23943 - type: CableHV - components: - - pos: 56.5,20.5 - parent: 0 - type: Transform -- uid: 23944 - type: CableHV - components: - - pos: 57.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23945 - type: WallReinforced - components: - - pos: 53.5,28.5 - parent: 0 - type: Transform -- uid: 23946 - type: SignalButton - components: - - pos: 52.5,27.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 23664 - - port: Toggle - uid: 23947 - type: SignalTransmitter -- uid: 23947 - type: BlastDoor - components: - - pos: 50.5,27.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 23946 - type: SignalReceiver -- uid: 23948 - type: WallReinforced - components: - - pos: 53.5,27.5 - parent: 0 - type: Transform -- uid: 23949 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23950 - type: WallReinforced - components: - - pos: 48.5,27.5 - parent: 0 - type: Transform -- uid: 23951 - type: CableApcExtension - components: - - pos: 51.5,29.5 - parent: 0 - type: Transform -- uid: 23952 - type: Emitter - components: - - pos: 48.5,29.5 - parent: 0 - type: Transform -- uid: 23953 - type: Emitter - components: - - pos: 48.5,28.5 - parent: 0 - type: Transform -- uid: 23954 - type: Emitter - components: - - pos: 49.5,29.5 - parent: 0 - type: Transform -- uid: 23955 - type: Emitter - components: - - pos: 49.5,28.5 - parent: 0 - type: Transform -- uid: 23956 - type: ContainmentFieldGenerator - components: - - pos: 52.5,30.5 - parent: 0 - type: Transform -- uid: 23957 - type: ContainmentFieldGenerator - components: - - pos: 52.5,29.5 - parent: 0 - type: Transform -- uid: 23958 - type: ContainmentFieldGenerator - components: - - pos: 52.5,28.5 - parent: 0 - type: Transform -- uid: 23959 - type: ClosetFireFilled - components: - - pos: 48.5,30.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23960 - type: Rack - components: - - pos: 51.5,30.5 - parent: 0 - type: Transform -- uid: 23961 - type: SheetPlasma - components: - - pos: 51.502686,30.452164 - parent: 0 - type: Transform -- uid: 23962 - type: SheetGlass - components: - - pos: 51.502686,30.514664 - parent: 0 - type: Transform -- uid: 23963 - type: PartRodMetal - components: - - pos: 51.45581,30.514664 - parent: 0 - type: Transform -- uid: 23964 - type: HandheldGPSBasic - components: - - pos: 51.51831,30.452164 - parent: 0 - type: Transform -- uid: 23965 - type: PoweredSmallLight - components: - - pos: 50.5,30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23966 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 54.5,24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23967 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23968 - type: Poweredlight - components: - - pos: 56.5,30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23969 - type: CrateEngineeringAMEShielding - components: - - pos: 45.5,19.5 - parent: 0 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23970 - type: CrateEngineeringAMEShielding - components: - - pos: 44.5,19.5 - parent: 0 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23971 - type: AMEController - components: - - pos: 43.5,19.5 - parent: 0 - type: Transform -- uid: 23972 - type: SignElectricalMed - components: - - pos: 47.5,22.5 - parent: 0 - type: Transform -- uid: 23973 - type: SheetGlass - components: - - pos: 53.529083,18.016285 - parent: 0 - type: Transform -- uid: 23974 - type: SheetSteel - components: - - pos: 53.529083,18.485035 - parent: 0 - type: Transform -- uid: 23975 - type: SheetSteel - components: - - pos: 53.529083,18.485035 - parent: 0 - type: Transform -- uid: 23976 - type: SheetGlass - components: - - pos: 53.54471,18.00066 - parent: 0 - type: Transform -- uid: 23977 - type: PartRodMetal - components: - - pos: 53.57596,17.578785 - parent: 0 - type: Transform -- uid: 23978 - type: PartRodMetal - components: - - pos: 53.57596,17.578785 - parent: 0 - type: Transform -- uid: 23979 - type: CableMV - components: - - pos: 76.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23980 - type: CableMV - components: - - pos: 76.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23981 - type: CableMV - components: - - pos: 76.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23982 - type: CableMV - components: - - pos: 77.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23983 - type: CableMV - components: - - pos: 78.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23984 - type: CableMV - components: - - pos: 78.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23985 - type: CableMV - components: - - pos: 78.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23986 - type: CableMV - components: - - pos: 78.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23987 - type: CableMV - components: - - pos: 78.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23988 - type: CableMV - components: - - pos: 78.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23989 - type: CableMV - components: - - pos: 78.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23990 - type: CableMV - components: - - pos: 78.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23991 - type: CableMV - components: - - pos: 78.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23992 - type: CableMV - components: - - pos: 78.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23993 - type: CableMV - components: - - pos: 78.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23994 - type: CableMV - components: - - pos: 76.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23995 - type: CableMV - components: - - pos: 76.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23996 - type: CableMV - components: - - pos: 76.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23997 - type: CableMV - components: - - pos: 76.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23998 - type: CableMV - components: - - pos: 76.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23999 - type: CableMV - components: - - pos: 76.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24000 - type: CableMV - components: - - pos: 76.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24001 - type: CableMV - components: - - pos: 76.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24002 - type: CableMV - components: - - pos: 76.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24003 - type: CableMV - components: - - pos: 78.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24004 - type: CableMV - components: - - pos: 78.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24005 - type: CableMV - components: - - pos: 78.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24006 - type: CableMV - components: - - pos: 78.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24007 - type: CableMV - components: - - pos: 78.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24008 - type: CableMV - components: - - pos: 78.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24009 - type: CableMV - components: - - pos: 78.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24010 - type: CableMV - components: - - pos: 78.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24011 - type: CableMV - components: - - pos: 76.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24012 - type: CableMV - components: - - pos: 76.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24013 - type: CableMV - components: - - pos: 76.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24014 - type: CableMV - components: - - pos: 76.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24015 - type: CableMV - components: - - pos: 76.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24016 - type: CableMV - components: - - pos: 76.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24017 - type: CableMV - components: - - pos: 76.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24018 - type: CableMV - components: - - pos: 72.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24019 - type: WallSolid - components: - - pos: 92.5,3.5 - parent: 0 - type: Transform -- uid: 24020 - type: WallSolid - components: - - pos: 92.5,2.5 - parent: 0 - type: Transform -- uid: 24021 - type: WallSolid - components: - - pos: 92.5,-1.5 - parent: 0 - type: Transform -- uid: 24022 - type: CableMV - components: - - pos: 72.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24023 - type: CableMV - components: - - pos: 72.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24024 - type: CableMV - components: - - pos: 73.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24025 - type: CableMV - components: - - pos: 74.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24026 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 48.5,26.5 - parent: 0 - type: Transform -- uid: 24027 - type: LockerElectricalSuppliesFilled - components: - - pos: 48.5,25.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24028 - type: LockerWeldingSuppliesFilled - components: - - pos: 48.5,24.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24029 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 49.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24030 - type: GasVentScrubber - components: - - pos: 49.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24031 - type: SpawnPointChiefEngineer - components: - - pos: 45.5,8.5 - parent: 0 - type: Transform -- uid: 24032 - type: ChairOfficeDark - components: - - pos: 44.5,10.5 - parent: 0 - type: Transform -- uid: 24033 - type: CrateEngineeringCableBulk - components: - - pos: 49.5,30.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 24034 - type: CrateEngineeringCableBulk - components: - - pos: 53.5,9.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 24035 - type: ClothingHeadHatCone - components: - - pos: 50.489906,28.35037 - parent: 0 - type: Transform -- uid: 24036 - type: SingularityGenerator - components: - - pos: 50.5,30.5 - parent: 0 - type: Transform -- uid: 24037 - type: SingularityGenerator - components: - - pos: 61.5,30.5 - parent: 0 - type: Transform -- uid: 24038 - type: ClothingHandsGlovesColorYellow - components: - - pos: 55.51793,11.520578 - parent: 0 - type: Transform -- uid: 24039 - type: ClothingEyesGlassesMeson - components: - - pos: 53.467796,22.707859 - parent: 0 - type: Transform -- uid: 24040 - type: ClothingEyesGlassesMeson - components: - - pos: 53.57717,22.535984 - parent: 0 - type: Transform -- uid: 24041 - type: ClothingEyesGlassesMeson - components: - - pos: 49.467796,-3.1973677 - parent: 0 - type: Transform -- uid: 24042 - type: ClothingEyesGlassesThermal - components: - - pos: 49.499046,-3.4786177 - parent: 0 - type: Transform -- uid: 24043 - type: trayScanner - components: - - pos: 53.592796,-2.4786177 - parent: 0 - type: Transform -- uid: 24044 - type: BoxLightMixed - components: - - pos: 53.48342,-3.351499 - parent: 0 - type: Transform -- uid: 24045 - type: LightReplacer - components: - - pos: 42.475327,0.6953759 - parent: 0 - type: Transform -- uid: 24046 - type: LightReplacer - components: - - pos: 42.475327,0.6797509 - parent: 0 - type: Transform -- uid: 24047 - type: WeldingFuelTankFull - components: - - pos: 54.5,13.5 - parent: 0 - type: Transform -- uid: 24048 - type: ExtinguisherCabinetFilled - components: - - pos: 47.5,23.5 - parent: 0 - type: Transform -- uid: 24049 - type: ExtinguisherCabinetFilled - components: - - pos: 53.5,28.5 - parent: 0 - type: Transform -- uid: 24050 - type: ExtinguisherCabinetFilled - components: - - pos: 55.5,12.5 - parent: 0 - type: Transform -- uid: 24051 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 58.5,22.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Particle Accelerator - type: SurveillanceCamera -- uid: 24052 - type: SurveillanceCameraEngineering - components: - - rot: 1.5707963267948966 rad - pos: 46.5,22.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME - type: SurveillanceCamera -- uid: 24053 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: 51.5,30.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engi Storage - type: SurveillanceCamera -- uid: 24054 - type: SurveillanceCameraEngineering - components: - - pos: 56.5,35.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Grav Gen - type: SurveillanceCamera -- uid: 24055 - type: CableHV - components: - - pos: 54.5,26.5 - parent: 0 - type: Transform -- uid: 24056 - type: PoweredSmallLight - components: - - pos: 26.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24057 - type: Catwalk - components: - - pos: 25.5,10.5 - parent: 0 - type: Transform -- uid: 24058 - type: Catwalk - components: - - pos: 26.5,10.5 - parent: 0 - type: Transform -- uid: 24059 - type: Catwalk - components: - - pos: 27.5,10.5 - parent: 0 - type: Transform -- uid: 24060 - type: Catwalk - components: - - pos: 28.5,10.5 - parent: 0 - type: Transform -- uid: 24061 - type: FirelockGlass - components: - - pos: 29.5,10.5 - parent: 0 - type: Transform -- uid: 24062 - type: Catwalk - components: - - pos: 30.5,10.5 - parent: 0 - type: Transform -- uid: 24063 - type: Girder - components: - - pos: 25.5,9.5 - parent: 0 - type: Transform -- uid: 24064 - type: MinimoogInstrument - components: - - rot: -1.5707963267948966 rad - pos: 25.5,8.5 - parent: 0 - type: Transform -- uid: 24065 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 26.5,8.5 - parent: 0 - type: Transform -- uid: 24066 - type: Rack - components: - - pos: 25.5,7.5 - parent: 0 - type: Transform -- uid: 24067 - type: ClothingUnderSocksBee - components: - - pos: 34.582787,51.583603 - parent: 0 - type: Transform -- uid: 24068 - type: ClothingHeadHatAnimalCatBlack - components: - - pos: 22.486315,46.414825 - parent: 0 - type: Transform -- uid: 24069 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: 42.5,16.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES Bank - type: SurveillanceCamera -- uid: 24070 - type: SurveillanceCameraEngineering - components: - - pos: 52.5,13.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering - type: SurveillanceCamera -- uid: 24071 - type: SurveillanceCameraRouterCommand - components: - - pos: 9.5,-12.5 - parent: 0 - type: Transform -- uid: 24072 - type: SurveillanceCameraRouterMedical - components: - - pos: -16.5,-60.5 - parent: 0 - type: Transform -- uid: 24073 - type: SurveillanceCameraRouterSupply - components: - - pos: -30.5,14.5 - parent: 0 - type: Transform -- uid: 24074 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-55.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24075 - type: SignalButton - components: - - name: maint blast door - type: MetaData - - pos: 20.5,-51.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 19346 - type: SignalTransmitter -- uid: 24076 - type: ClosetL3Filled - components: - - pos: -58.5,-15.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24077 - type: ClosetRadiationSuitFilled - components: - - pos: 33.5,10.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24078 - type: Rack - components: - - pos: 32.5,10.5 - parent: 0 - type: Transform -- uid: 24079 - type: RandomSpawner - components: - - pos: 32.5,12.5 - parent: 0 - type: Transform -- uid: 24080 - type: Catwalk - components: - - pos: 32.5,12.5 - parent: 0 - type: Transform -- uid: 24081 - type: Catwalk - components: - - pos: 33.5,12.5 - parent: 0 - type: Transform -- uid: 24082 - type: Catwalk - components: - - pos: 34.5,12.5 - parent: 0 - type: Transform -- uid: 24083 - type: Catwalk - components: - - pos: 35.5,12.5 - parent: 0 - type: Transform -- uid: 24084 - type: Catwalk - components: - - pos: 36.5,12.5 - parent: 0 - type: Transform -- uid: 24085 - type: Catwalk - components: - - pos: 37.5,12.5 - parent: 0 - type: Transform -- uid: 24086 - type: Catwalk - components: - - pos: 38.5,12.5 - parent: 0 - type: Transform -- uid: 24087 - type: Catwalk - components: - - pos: 39.5,12.5 - parent: 0 - type: Transform -- uid: 24088 - type: Catwalk - components: - - pos: 40.5,13.5 - parent: 0 - type: Transform -- uid: 24089 - type: Catwalk - components: - - pos: 40.5,14.5 - parent: 0 - type: Transform -- uid: 24090 - type: Catwalk - components: - - pos: 40.5,15.5 - parent: 0 - type: Transform -- uid: 24091 - type: Catwalk - components: - - pos: 40.5,16.5 - parent: 0 - type: Transform -- uid: 24092 - type: Catwalk - components: - - pos: 40.5,17.5 - parent: 0 - type: Transform -- uid: 24093 - type: Catwalk - components: - - pos: 40.5,18.5 - parent: 0 - type: Transform -- uid: 24094 - type: Catwalk - components: - - pos: 40.5,19.5 - parent: 0 - type: Transform -- uid: 24095 - type: Catwalk - components: - - pos: 40.5,20.5 - parent: 0 - type: Transform -- uid: 24096 - type: Catwalk - components: - - pos: 40.5,21.5 - parent: 0 - type: Transform -- uid: 24097 - type: Catwalk - components: - - pos: 40.5,22.5 - parent: 0 - type: Transform -- uid: 24098 - type: Catwalk - components: - - pos: 40.5,23.5 - parent: 0 - type: Transform -- uid: 24099 - type: Catwalk - components: - - pos: 40.5,24.5 - parent: 0 - type: Transform -- uid: 24100 - type: Catwalk - components: - - pos: 40.5,25.5 - parent: 0 - type: Transform -- uid: 24101 - type: Catwalk - components: - - pos: 40.5,26.5 - parent: 0 - type: Transform -- uid: 24102 - type: FirelockGlass - components: - - pos: 40.5,27.5 - parent: 0 - type: Transform -- uid: 24103 - type: WallSolid - components: - - pos: 45.5,29.5 - parent: 0 - type: Transform -- uid: 24104 - type: WallSolid - components: - - pos: 45.5,28.5 - parent: 0 - type: Transform -- uid: 24105 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24106 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24107 - type: PoweredSmallLight - components: - - pos: 33.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24108 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 33.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24109 - type: ClothingUniformJumpsuitDetective - components: - - pos: 25.38619,7.639444 - parent: 0 - type: Transform -- uid: 24110 - type: ClothingUniformJumpskirtDetective - components: - - pos: 25.57369,7.483194 - parent: 0 - type: Transform -- uid: 24111 - type: ClothingOuterSuitMonkey - components: - - pos: 45.551994,40.766094 - parent: 0 - type: Transform -- uid: 24112 - type: ClothingOuterSkub - components: - - pos: -40.49492,33.44372 - parent: 0 - type: Transform -- uid: 24113 - type: ClothingHeadHatSkub - components: - - pos: -40.479294,33.50622 - parent: 0 - type: Transform -- uid: 24114 - type: ClothingShoesSwat - components: - - pos: -26.57573,33.39192 - parent: 0 - type: Transform -- uid: 24115 - type: ClothingShoesFlippers - components: - - pos: 32.519005,10.632517 - parent: 0 - type: Transform -- uid: 24116 - type: ClothingNeckCloakTrans - components: - - pos: -12.481159,-67.51491 - parent: 0 - type: Transform -- uid: 24117 - type: ClothingHeadHatAnimalMonkey - components: - - pos: 45.50863,41.570244 - parent: 0 - type: Transform -- uid: 24118 - type: ClothingOuterCoatJensen - components: - - pos: 37.49283,34.632744 - parent: 0 - type: Transform -- uid: 24119 - type: ShuttleConsoleCircuitboard - components: - - pos: 32.45495,8.475415 - parent: 0 - type: Transform -- uid: 24120 - type: ProtolatheMachineCircuitboard - components: - - pos: 32.501823,7.537915 - parent: 0 - type: Transform -- uid: 24121 - type: MicrowaveMachineCircuitboard - components: - - pos: 36.533073,10.553541 - parent: 0 - type: Transform -- uid: 24122 - type: GeneratorUraniumMachineCircuitboard - components: - - pos: 32.470573,6.569165 - parent: 0 - type: Transform -- uid: 24123 - type: HotplateMachineCircuitboard - components: - - pos: 36.518967,8.578541 - parent: 0 - type: Transform -- uid: 24124 - type: SMESMachineCircuitboard - components: - - pos: 38.439323,10.631666 - parent: 0 - type: Transform -- uid: 24125 - type: SMESMachineCircuitboard - components: - - pos: 38.564323,10.569166 - parent: 0 - type: Transform -- uid: 24126 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -44.5,42.5 - parent: 0 - type: Transform -- uid: 24127 - type: AlertsComputerCircuitboard - components: - - pos: 37.4862,8.55354 - parent: 0 - type: Transform -- uid: 24128 - type: SubstationMachineCircuitboard - components: - - pos: 38.3612,8.631665 - parent: 0 - type: Transform -- uid: 24129 - type: SubstationMachineCircuitboard - components: - - pos: 38.57995,8.444165 - parent: 0 - type: Transform -- uid: 24130 - type: WeldingFuelTankFull - components: - - pos: 45.5,33.5 - parent: 0 - type: Transform -- uid: 24131 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24132 - type: CableApcExtension - components: - - pos: 35.5,22.5 - parent: 0 - type: Transform -- uid: 24133 - type: CableApcExtension - components: - - pos: 36.5,22.5 - parent: 0 - type: Transform -- uid: 24134 - type: CableApcExtension - components: - - pos: 37.5,22.5 - parent: 0 - type: Transform -- uid: 24135 - type: Chair - components: - - pos: 39.5,22.5 - parent: 0 - type: Transform -- uid: 24136 - type: Rack - components: - - pos: 39.5,21.5 - parent: 0 - type: Transform -- uid: 24137 - type: AirlockMaintLocked - components: - - pos: 46.5,29.5 - parent: 0 - type: Transform -- uid: 24138 - type: MopBucket - components: - - pos: 46.549408,28.547007 - parent: 0 - type: Transform -- uid: 24139 - type: MopItem - components: - - pos: 46.471283,28.484507 - parent: 0 - type: Transform -- uid: 24140 - type: WetFloorSign - components: - - pos: 46.486908,30.531382 - parent: 0 - type: Transform -- uid: 24141 - type: ClosetMaintenanceFilledRandom - components: - - pos: 44.5,28.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24142 - type: Rack - components: - - pos: 43.5,28.5 - parent: 0 - type: Transform -- uid: 24143 - type: SpawnMobMouse - components: - - pos: 42.5,30.5 - parent: 0 - type: Transform -- uid: 24144 - type: MaintenanceWeaponSpawner - components: - - pos: 43.5,28.5 - parent: 0 - type: Transform -- uid: 24145 - type: AirCanister - components: - - pos: 40.5,31.5 - parent: 0 - type: Transform -- uid: 24146 - type: NitrogenCanister - components: - - pos: 41.5,31.5 - parent: 0 - type: Transform -- uid: 24147 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 41.5,31.5 - parent: 0 - type: Transform -- uid: 24148 - type: Chair - components: - - pos: 42.5,31.5 - parent: 0 - type: Transform -- uid: 24149 - type: Chair - components: - - pos: 43.5,31.5 - parent: 0 - type: Transform -- uid: 24150 - type: RandomSpawner - components: - - pos: 41.5,29.5 - parent: 0 - type: Transform -- uid: 24151 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 42.5,28.5 - parent: 0 - type: Transform -- uid: 24152 - type: PoweredSmallLight - components: - - pos: 64.5,33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24153 - type: WallSolid - components: - - pos: 23.5,29.5 - parent: 0 - type: Transform -- uid: 24154 - type: WallSolid - components: - - pos: 23.5,30.5 - parent: 0 - type: Transform -- uid: 24155 - type: WallSolid - components: - - pos: 23.5,31.5 - parent: 0 - type: Transform -- uid: 24156 - type: WallSolid - components: - - pos: 23.5,32.5 - parent: 0 - type: Transform -- uid: 24157 - type: AirlockMaintGlassLocked - components: - - name: chair zone - type: MetaData - - pos: 23.5,33.5 - parent: 0 - type: Transform -- uid: 24158 - type: AirlockMaintGlassLocked - components: - - name: chair zone - type: MetaData - - pos: 23.5,34.5 - parent: 0 - type: Transform -- uid: 24159 - type: ChairFoldingSpawnFolded - components: - - pos: 25.352604,29.876839 - parent: 0 - type: Transform -- uid: 24160 - type: ChairFoldingSpawnFolded - components: - - pos: 25.352604,30.079964 - parent: 0 - type: Transform -- uid: 24161 - type: ChairFoldingSpawnFolded - components: - - pos: 24.446354,30.298714 - parent: 0 - type: Transform -- uid: 24162 - type: ChairFoldingSpawnFolded - components: - - pos: 25.477604,30.361214 - parent: 0 - type: Transform -- uid: 24163 - type: ChairFoldingSpawnFolded - components: - - pos: 24.415104,30.064339 - parent: 0 - type: Transform -- uid: 24164 - type: ChairFoldingSpawnFolded - components: - - pos: 24.415104,29.876839 - parent: 0 - type: Transform -- uid: 24165 - type: ChairFoldingSpawnFolded - components: - - pos: 24.461979,29.564339 - parent: 0 - type: Transform -- uid: 24166 - type: ChairFoldingSpawnFolded - components: - - pos: 25.383854,29.579964 - parent: 0 - type: Transform -- uid: 24167 - type: Table - components: - - pos: 24.5,35.5 - parent: 0 - type: Transform -- uid: 24168 - type: Table - components: - - pos: 25.5,35.5 - parent: 0 - type: Transform -- uid: 24169 - type: ClothingHeadHatAnimalCatBrown - components: - - pos: 20.52728,22.507175 - parent: 0 - type: Transform -- uid: 24170 - type: ClothingBeltMilitaryWebbing - components: - - pos: 67.436325,30.557962 - parent: 0 - type: Transform -- uid: 24171 - type: ClothingHeadHatChickenhead - components: - - pos: -5.4823875,-23.406746 - parent: 0 - type: Transform -- uid: 24172 - type: ClothingEyesHudDiagnostic - components: - - pos: 52.550156,2.658132 - parent: 0 - type: Transform -- uid: 24173 - type: ClothingEyesEyepatch - components: - - pos: 43.52742,-30.488503 - parent: 0 - type: Transform -- uid: 24174 - type: MachineAnomalyVessel - components: - - pos: 35.5,-43.5 - parent: 0 - type: Transform -- uid: 24175 - type: SignAnomaly2 - components: - - pos: 30.5,-41.5 - parent: 0 - type: Transform -- uid: 24176 - type: ClothingEyesGlasses - components: - - pos: -25.430895,-58.372234 - parent: 0 - type: Transform -- uid: 24177 - type: ClothingEyesGlasses - components: - - pos: 36.53991,34.527035 - parent: 0 - type: Transform -- uid: 24178 - type: ClothingHeadHatAnimalCat - components: - - pos: -39.54943,-6.4190793 - parent: 0 - type: Transform -- uid: 24179 - type: ClothingNeckCloakHerald - components: - - pos: -32.42196,-65.44334 - parent: 0 - type: Transform -- uid: 24180 - type: Catwalk - components: - - pos: -6.5,-74.5 - parent: 0 - type: Transform -- uid: 24181 - type: RandomPosterAny - components: - - pos: 23.5,30.5 - parent: 0 - type: Transform -- uid: 24182 - type: RandomPosterAny - components: - - pos: 26.5,34.5 - parent: 0 - type: Transform -- uid: 24183 - type: RandomPosterAny - components: - - pos: 26.5,45.5 - parent: 0 - type: Transform -- uid: 24184 - type: RandomPosterAny - components: - - pos: 48.5,33.5 - parent: 0 - type: Transform -- uid: 24185 - type: AtmosFixBlockerMarker - components: - - pos: 13.5,-53.5 - parent: 0 - type: Transform -- uid: 24186 - type: AtmosFixBlockerMarker - components: - - pos: 13.5,-54.5 - parent: 0 - type: Transform -- uid: 24187 - type: AtmosFixBlockerMarker - components: - - pos: 13.5,-55.5 - parent: 0 - type: Transform -- uid: 24188 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,-53.5 - parent: 0 - type: Transform -- uid: 24189 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,-54.5 - parent: 0 - type: Transform -- uid: 24190 - type: AtmosFixBlockerMarker - components: - - pos: 14.5,-55.5 - parent: 0 - type: Transform -- uid: 24191 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-53.5 - parent: 0 - type: Transform -- uid: 24192 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-54.5 - parent: 0 - type: Transform -- uid: 24193 - type: AtmosFixBlockerMarker - components: - - pos: 15.5,-55.5 - parent: 0 - type: Transform -- uid: 24194 - type: Poweredlight - components: - - pos: 8.5,-48.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24195 - type: MedkitBruteFilled - components: - - pos: -21.482801,-23.304 - parent: 0 - type: Transform -- uid: 24196 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 55.5,-12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24197 - type: CableApcExtension - components: - - pos: -31.5,-5.5 - parent: 0 - type: Transform -- uid: 24198 - type: CableApcExtension - components: - - pos: -31.5,-4.5 - parent: 0 - type: Transform -- uid: 24199 - type: CableApcExtension - components: - - pos: -10.5,-65.5 - parent: 0 - type: Transform -- uid: 24200 - type: CableApcExtension - components: - - pos: -11.5,-65.5 - parent: 0 - type: Transform -- uid: 24201 - type: CableApcExtension - components: - - pos: -12.5,-65.5 - parent: 0 - type: Transform -- uid: 24202 - type: CableApcExtension - components: - - pos: -16.5,-65.5 - parent: 0 - type: Transform -- uid: 24203 - type: CableApcExtension - components: - - pos: -15.5,-65.5 - parent: 0 - type: Transform -- uid: 24204 - type: SolarTracker - components: - - pos: -32.5,70.5 - parent: 0 - type: Transform -- uid: 24205 - type: FirelockGlass - components: - - pos: -47.5,-3.5 - parent: 0 - type: Transform -- uid: 24206 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24207 - type: Carpet - components: - - pos: 10.5,47.5 - parent: 0 - type: Transform -- uid: 24208 - type: Carpet - components: - - pos: 10.5,46.5 - parent: 0 - type: Transform -- uid: 24209 - type: JetpackBlueFilled - components: - - pos: 52.47567,1.6499598 - parent: 0 - type: Transform -- uid: 24210 - type: JetpackMini - components: - - pos: -14.618027,-11.380314 - parent: 0 - type: Transform -- uid: 24211 - type: JetpackMini - components: - - pos: -14.649277,-10.317814 - parent: 0 - type: Transform -- uid: 24212 - type: JetpackBlue - components: - - pos: 25.51189,48.436398 - parent: 0 - type: Transform -- uid: 24213 - type: FirelockGlass - components: - - pos: -12.5,-4.5 - parent: 0 - type: Transform -- uid: 24214 - type: WarpPoint - components: - - pos: -2.5,2.5 - parent: 0 - type: Transform - - location: Bridge - type: WarpPoint -- uid: 24215 - type: WarpPoint - components: - - pos: -2.5,-4.5 - parent: 0 - type: Transform - - location: Conference Room - type: WarpPoint -- uid: 24216 - type: SpawnPointObserver - components: - - pos: -2.5,-8.5 - parent: 0 - type: Transform -- uid: 24217 - type: WarpPoint - components: - - pos: -2.5,-14.5 - parent: 0 - type: Transform - - location: Showroom - type: WarpPoint -- uid: 24218 - type: WarpPoint - components: - - pos: 8.5,-13.5 - parent: 0 - type: Transform - - location: Vault - type: WarpPoint -- uid: 24219 - type: WarpPoint - components: - - pos: 10.5,5.5 - parent: 0 - type: Transform - - location: Captain's Bedroom - type: WarpPoint -- uid: 24220 - type: WarpPoint - components: - - pos: 22.5,-4.5 - parent: 0 - type: Transform - - location: Bar - type: WarpPoint -- uid: 24221 - type: WarpPoint - components: - - pos: 29.5,-12.5 - parent: 0 - type: Transform - - location: Kitchen - type: WarpPoint -- uid: 24222 - type: WarpPoint - components: - - pos: 22.5,-20.5 - parent: 0 - type: Transform - - location: Botany - type: WarpPoint -- uid: 24223 - type: WarpPoint - components: - - pos: 13.5,-29.5 - parent: 0 - type: Transform - - location: RND - type: WarpPoint -- uid: 24224 - type: WarpPoint - components: - - pos: 3.5,-40.5 - parent: 0 - type: Transform - - location: Robotics - type: WarpPoint -- uid: 24225 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -44.5,43.5 - parent: 0 - type: Transform -- uid: 24226 - type: VendingMachineChefvend - components: - - flags: SessionSpecific - type: MetaData - - pos: 26.5,-13.5 - parent: 0 - type: Transform -- uid: 24227 - type: DisposalTrunk - components: - - pos: 14.5,-51.5 - parent: 0 - type: Transform -- uid: 24228 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 14.5,-53.5 - parent: 0 - type: Transform -- uid: 24229 - type: DisposalPipe - components: - - pos: 14.5,-52.5 - parent: 0 - type: Transform -- uid: 24230 - type: WarpPoint - components: - - pos: 9.5,-50.5 - parent: 0 - type: Transform - - location: Toxins - type: WarpPoint -- uid: 24231 - type: WarpPoint - components: - - pos: 4.5,-24.5 - parent: 0 - type: Transform - - location: Sci Lobby - type: WarpPoint -- uid: 24232 - type: WarpPoint - components: - - pos: 4.5,14.5 - parent: 0 - type: Transform - - location: Courtroom - type: WarpPoint -- uid: 24233 - type: WarpPoint - components: - - pos: -4.5,37.5 - parent: 0 - type: Transform - - location: Armory - type: WarpPoint -- uid: 24234 - type: WarpPoint - components: - - pos: -7.5,54.5 - parent: 0 - type: Transform - - location: Perma - type: WarpPoint -- uid: 24235 - type: WarpPoint - components: - - pos: -10.5,30.5 - parent: 0 - type: Transform - - location: Cellblock - type: WarpPoint -- uid: 24236 - type: WarpPoint - components: - - pos: 9.5,38.5 - parent: 0 - type: Transform - - location: Security - type: WarpPoint -- uid: 24237 - type: WarpPoint - components: - - pos: -10.5,15.5 - parent: 0 - type: Transform - - location: AI Upload - type: WarpPoint -- uid: 24238 - type: WarpPoint - components: - - pos: -20.5,14.5 - parent: 0 - type: Transform - - location: Tool Room - type: WarpPoint -- uid: 24239 - type: WarpPoint - components: - - pos: -40.5,17.5 - parent: 0 - type: Transform - - location: Cargo Bay - type: WarpPoint -- uid: 24240 - type: WarpPoint - components: - - pos: -42.5,27.5 - parent: 0 - type: Transform - - location: Salvage Bay - type: WarpPoint -- uid: 24241 - type: WarpPoint - components: - - pos: -37.5,39.5 - parent: 0 - type: Transform - - location: Disposals - type: WarpPoint -- uid: 24242 - type: WarpPoint - components: - - pos: -25.5,26.5 - parent: 0 - type: Transform - - location: Janitor Closet - type: WarpPoint -- uid: 24243 - type: WarpPoint - components: - - pos: -27.5,5.5 - parent: 0 - type: Transform - - location: Cargo Desk - type: WarpPoint -- uid: 24244 - type: WarpPoint - components: - - pos: -13.5,-2.5 - parent: 0 - type: Transform - - location: HoP Office - type: WarpPoint -- uid: 24245 - type: WarpPoint - components: - - pos: -16.5,-11.5 - parent: 0 - type: Transform - - location: EVA Storage - type: WarpPoint -- uid: 24246 - type: WarpPoint - components: - - pos: -31.5,-8.5 - parent: 0 - type: Transform - - location: Library - type: WarpPoint -- uid: 24247 - type: WarpPoint - components: - - pos: -9.5,-25.5 - parent: 0 - type: Transform - - location: Medbay Lobby - type: WarpPoint -- uid: 24248 - type: WarpPoint - components: - - pos: -7.5,-34.5 - parent: 0 - type: Transform - - location: Chemistry - type: WarpPoint -- uid: 24249 - type: WarpPoint - components: - - pos: -27.5,-35.5 - parent: 0 - type: Transform - - location: Medbay - type: WarpPoint -- uid: 24250 - type: WarpPoint - components: - - pos: -29.5,-46.5 - parent: 0 - type: Transform - - location: Surgery - type: WarpPoint -- uid: 24251 - type: WarpPoint - components: - - pos: -12.5,-49.5 - parent: 0 - type: Transform - - location: Morgue - type: WarpPoint -- uid: 24252 - type: WarpPoint - components: - - pos: -15.5,-42.5 - parent: 0 - type: Transform - - location: Cloning - type: WarpPoint -- uid: 24253 - type: WarpPoint - components: - - pos: -51.5,-47.5 - parent: 0 - type: Transform - - location: Virology - type: WarpPoint -- uid: 24254 - type: WarpPoint - components: - - pos: -17.5,-67.5 - parent: 0 - type: Transform - - location: Chapel - type: WarpPoint -- uid: 24255 - type: WarpPoint - components: - - pos: -6.5,-70.5 - parent: 0 - type: Transform - - location: Evac - type: WarpPoint -- uid: 24257 - type: EmergencyLight - components: - - pos: 50.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24258 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24259 - type: EmergencyLight - components: - - pos: 62.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24260 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24261 - type: EmergencyLight - components: - - pos: 53.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24262 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,38.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24263 - type: EmergencyLight - components: - - pos: -0.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24264 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24265 - type: EmergencyLight - components: - - pos: -4.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24266 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -8.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24267 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,40.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24268 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 12.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24269 - type: EmergencyLight - components: - - pos: -22.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24270 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24271 - type: AirSensor - components: - - pos: -17.5,-13.5 - parent: 0 - type: Transform -- uid: 24272 - type: EmergencyLight - components: - - pos: -32.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24275 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -61.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24276 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24277 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24278 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24279 - type: EmergencyLight - components: - - pos: 10.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24280 - type: EmergencyLight - components: - - pos: 26.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24281 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24282 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24283 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-71.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24284 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-61.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24285 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24286 - type: EmergencyLight - components: - - pos: -29.5,-45.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24287 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-49.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 24288 - type: BlockGameArcade - components: - - pos: 23.5,0.5 - parent: 0 - type: Transform -- uid: 24289 - type: SpaceVillainArcade - components: - - pos: -61.5,-7.5 - parent: 0 - type: Transform -- uid: 24290 - type: SpawnMobMouse - components: - - pos: -53.5,-30.5 - parent: 0 - type: Transform -- uid: 24291 - type: MouseTimedSpawner - components: - - pos: 36.5,-0.5 - parent: 0 - type: Transform -- uid: 24292 - type: ClothingHandsGlovesColorBlack - components: - - pos: -11.481922,-54.086338 - parent: 0 - type: Transform -- uid: 24293 - type: ClothingShoesBootsCombat - components: - - pos: -11.466297,-54.758213 - parent: 0 - type: Transform -- uid: 24294 - type: BagpipeInstrument - components: - - pos: 24.436468,-91.50737 - parent: 0 - type: Transform -- uid: 24295 - type: CrateEmptySpawner - components: - - pos: -37.5,17.5 - parent: 0 - type: Transform -- uid: 24296 - type: CrateEmptySpawner - components: - - pos: -38.5,17.5 - parent: 0 - type: Transform -- uid: 24297 - type: PottedPlant24 - components: - - pos: 8.5,-21.5 - parent: 0 - type: Transform -- uid: 24298 - type: ClothingHandsGlovesCombat - components: - - pos: 55.524384,-6.5323644 - parent: 0 - type: Transform -- uid: 24299 - type: ClothingHeadHatWelding - components: - - pos: 55.633385,11.524261 - parent: 0 - type: Transform -- uid: 24300 - type: ClothingHeadHatWelding - components: - - pos: 55.52401,0.66989374 - parent: 0 - type: Transform -- uid: 24301 - type: ShuttersRadiationOpen - components: - - pos: 56.5,23.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24303 - type: SignalReceiver -- uid: 24302 - type: ShuttersRadiationOpen - components: - - pos: 56.5,17.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24304 - type: SignalReceiver -- uid: 24303 - type: SignalButton - components: - - pos: 57.5,23.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 24301 - type: SignalTransmitter -- uid: 24304 - type: SignalButton - components: - - pos: 57.5,17.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 24302 - type: SignalTransmitter -- uid: 24305 - type: WallmountTelescreen - components: - - rot: 3.141592653589793 rad - pos: 9.5,-6.5 - parent: 0 - type: Transform -- uid: 24306 - type: PosterMapMetaRight - components: - - pos: -44.987633,4.5 - parent: 0 - type: Transform -- uid: 24307 - type: PosterMapMetaRight - components: - - pos: -57.98687,9.5 - parent: 0 - type: Transform -- uid: 24308 - type: PosterMapMetaRight - components: - - pos: -45.986656,-5.5 - parent: 0 - type: Transform -- uid: 24309 - type: SignKiddiePlaque - components: - - pos: -32.46485,-14.5 - parent: 0 - type: Transform -- uid: 24310 - type: PosterMapMetaRight - components: - - pos: 25.999088,6.5 - parent: 0 - type: Transform -- uid: 24311 - type: PosterMapMetaRight - components: - - pos: -6.5203104,-59.5 - parent: 0 - type: Transform -- uid: 24312 - type: PosterMapMetaRight - components: - - pos: -60.998116,-19.5 - parent: 0 - type: Transform -- uid: 24313 - type: PosterMapMetaRight - components: - - pos: 8.5,-17.5 - parent: 0 - type: Transform -- uid: 24314 - type: SignKiddiePlaque - components: - - pos: 3.5,-13.5 - parent: 0 - type: Transform -- uid: 24315 - type: SignKiddiePlaque - components: - - pos: -8.5,-16.5 - parent: 0 - type: Transform -- uid: 24316 - type: SignKiddiePlaque - components: - - pos: -10.5,20.5 - parent: 0 - type: Transform -- uid: 24317 - type: SignSecurity - components: - - pos: -4.5,22.5 - parent: 0 - type: Transform -- uid: 24318 - type: SignSecurity - components: - - pos: -0.5,22.5 - parent: 0 - type: Transform -- uid: 24319 - type: PosterMapMetaRight - components: - - pos: 17.97155,20.5 - parent: 0 - type: Transform -- uid: 24320 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-14.5 - parent: 0 - type: Transform - - devices: - - 1581 - - 24271 - - 1584 - type: DeviceList -- uid: 24321 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 0 - type: Transform - - devices: - - 1611 - - 24322 - - 1610 - type: DeviceList -- uid: 24322 - type: AirSensor - components: - - pos: -2.5,-14.5 - parent: 0 - type: Transform -- uid: 24323 - type: AirSensor - components: - - pos: 7.5,-13.5 - parent: 0 - type: Transform -- uid: 24324 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-12.5 - parent: 0 - type: Transform - - devices: - - 24323 - - 12111 - - 12116 - type: DeviceList -- uid: 24325 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 16.5,-21.5 - parent: 0 - type: Transform - - devices: - - 24326 - - 2359 - - 2360 - - 5670 - - 5672 - - 5673 - - 2369 - - 2368 - - 2367 - - 12126 - - 21107 - type: DeviceList -- uid: 24326 - type: AirSensor - components: - - pos: 15.5,-19.5 - parent: 0 - type: Transform -- uid: 24327 - type: FireAlarm - components: - - pos: 13.5,-17.5 - parent: 0 - type: Transform - - devices: - - 24326 - - 2359 - - 2360 - - 5670 - - 5672 - - 5673 - - 2369 - - 2368 - - 2367 - type: DeviceList -- uid: 24328 - type: FireAlarm - components: - - pos: -11.5,-17.5 - parent: 0 - type: Transform - - devices: - - 5668 - - 5669 - - 5671 - - 14210 - - 14209 - - 24330 - - 9749 - - 9750 - - 5670 - - 5672 - - 5673 - - 26531 - - 26533 - - 26532 - type: DeviceList -- uid: 24329 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 0 - type: Transform - - devices: - - 5668 - - 5669 - - 5671 - - 14210 - - 14209 - - 24330 - - 9749 - - 9750 - - 5670 - - 5672 - - 5673 - type: DeviceList -- uid: 24330 - type: AirSensor - components: - - pos: -2.5,-19.5 - parent: 0 - type: Transform -- uid: 24331 - type: AirAlarm - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform - - devices: - - 5668 - - 5669 - - 5671 - - 14210 - - 14209 - - 24330 - - 9749 - - 9750 - - 5670 - - 5672 - - 5673 - - 12125 - - 12124 - type: DeviceList -- uid: 24332 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-15.5 - parent: 0 - type: Transform - - devices: - - 5668 - - 5669 - - 5671 - - 5661 - - 5660 - - 5642 - - 24335 - - 2077 - - 24334 - type: DeviceList -- uid: 24333 - type: FireAlarm - components: - - pos: -18.5,-17.5 - parent: 0 - type: Transform - - devices: - - 5668 - - 5669 - - 5671 - - 5661 - - 5660 - - 5642 - - 24335 - type: DeviceList -- uid: 24334 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 24335 - type: AirSensor - components: - - pos: -20.5,-19.5 - parent: 0 - type: Transform -- uid: 24336 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -19.5,2.5 - parent: 0 - type: Transform - - devices: - - 26483 - - 26484 - - 26485 - - 24339 - - 3503 - - 3504 - - 5665 - - 5666 - - 5667 - type: DeviceList -- uid: 24337 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-4.5 - parent: 0 - type: Transform - - devices: - - 5642 - - 5660 - - 5661 - - invalid - - 24338 - - 26485 - - 26484 - - 26483 - - 12123 - - 12122 - type: DeviceList -- uid: 24338 - type: AirSensor - components: - - pos: -21.5,-6.5 - parent: 0 - type: Transform -- uid: 24339 - type: AirSensor - components: - - pos: -21.5,6.5 - parent: 0 - type: Transform -- uid: 24340 - type: AirAlarm - components: - - pos: -7.5,12.5 - parent: 0 - type: Transform - - devices: - - 5665 - - 5666 - - 5667 - - 24341 - - 2126 - - 2127 - - 2125 - - 6495 - - 6493 - - 6494 - - 10802 - - 10801 - - 7129 - - 7130 - type: DeviceList -- uid: 24341 - type: AirSensor - components: - - pos: -2.5,9.5 - parent: 0 - type: Transform -- uid: 24342 - type: FireAlarm - components: - - pos: -5.5,12.5 - parent: 0 - type: Transform - - devices: - - 5665 - - 5666 - - 5667 - - 24341 - - 2126 - - 2127 - - 2125 - - 6495 - - 6493 - - 6494 - type: DeviceList -- uid: 24343 - type: AirAlarm - components: - - pos: -9.5,20.5 - parent: 0 - type: Transform - - devices: - - 10789 - - 10788 - - 24344 - type: DeviceList -- uid: 24344 - type: AirSensor - components: - - pos: -10.5,16.5 - parent: 0 - type: Transform -- uid: 24345 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -23.5,11.5 - parent: 0 - type: Transform - - devices: - - 4402 - - 4403 - - 24346 - type: DeviceList -- uid: 24346 - type: AirSensor - components: - - pos: -19.5,15.5 - parent: 0 - type: Transform -- uid: 24347 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -26.5,25.5 - parent: 0 - type: Transform - - devices: - - 24348 - - 9321 - - 9335 - type: DeviceList -- uid: 24348 - type: AirSensor - components: - - pos: -26.5,26.5 - parent: 0 - type: Transform -- uid: 24349 - type: AirAlarm - components: - - pos: -24.5,9.5 - parent: 0 - type: Transform - - devices: - - 24350 - - 3915 - - 3916 - - 3503 - - 3504 - - 3502 - - 3501 - - 4330 - - 4329 - type: DeviceList -- uid: 24350 - type: AirSensor - components: - - pos: -26.5,5.5 - parent: 0 - type: Transform -- uid: 24351 - type: FireAlarm - components: - - pos: -27.5,9.5 - parent: 0 - type: Transform - - devices: - - 24350 - - 3915 - - 3916 - - 3503 - - 3504 - - 3502 - - 3501 - type: DeviceList -- uid: 24352 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -35.5,7.5 - parent: 0 - type: Transform - - devices: - - 3904 - - 3915 - - 3916 - - 3624 - - 3695 - - 24353 - - 4349 - - 4348 - type: DeviceList -- uid: 24353 - type: AirSensor - components: - - pos: -32.5,2.5 - parent: 0 - type: Transform -- uid: 24354 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -35.5,2.5 - parent: 0 - type: Transform - - devices: - - 3904 - - 3915 - - 3916 - - 3624 - - 3695 - - 24353 - type: DeviceList -- uid: 24355 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -29.5,-2.5 - parent: 0 - type: Transform - - devices: - - 3501 - - 3502 - - 5578 - - 5579 - - 5580 - - 24357 - - 17704 - - 17665 - type: DeviceList -- uid: 24356 - type: FireAlarm - components: - - pos: -30.5,1.5 - parent: 0 - type: Transform - - devices: - - 3501 - - 3502 - - 5578 - - 5579 - - 5580 - - 24357 - - 26543 - - 26542 - - 26541 - type: DeviceList -- uid: 24357 - type: AirSensor - components: - - pos: -25.5,-0.5 - parent: 0 - type: Transform -- uid: 24358 - type: AirSensor - components: - - pos: -43.5,-0.5 - parent: 0 - type: Transform -- uid: 24359 - type: AirAlarm - components: - - pos: -49.5,4.5 - parent: 0 - type: Transform - - devices: - - 5564 - - 5565 - - 5566 - - 5567 - - 24358 - - 5578 - - 5579 - - 5580 - - 3543 - - 10798 - - 10797 - - 5015 - - 5017 - type: DeviceList -- uid: 24360 - type: FireAlarm - components: - - pos: -43.5,1.5 - parent: 0 - type: Transform - - devices: - - 5564 - - 5565 - - 5566 - - 5567 - - 24358 - - 5578 - - 5579 - - 5580 - - 3543 - type: DeviceList -- uid: 24361 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-3.5 - parent: 0 - type: Transform - - devices: - - 5575 - - 5576 - - 5577 - - 5564 - - 5565 - - 24362 - - 5566 - - 5567 - - 5574 - - 5573 - - 5572 - - 10795 - - 10796 - type: DeviceList -- uid: 24362 - type: AirSensor - components: - - pos: -56.5,-0.5 - parent: 0 - type: Transform -- uid: 24363 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -57.5,2.5 - parent: 0 - type: Transform - - devices: - - 5575 - - 5576 - - 5577 - - 5564 - - 5565 - - 24362 - - 5566 - - 5567 - - 5574 - - 5573 - - 5572 - type: DeviceList -- uid: 24364 - type: AirAlarm - components: - - pos: -59.5,9.5 - parent: 0 - type: Transform - - devices: - - 24367 - - 5572 - - 5573 - - 5574 - - 5809 - - 5810 - - 10791 - - 10790 - - 5503 - - 5559 - - 24368 - type: DeviceList -- uid: 24365 - type: FireAlarm - components: - - pos: -60.5,9.5 - parent: 0 - type: Transform - - devices: - - 24367 - - 5572 - - 5573 - - 5574 - - 5809 - - 5810 - type: DeviceList -- uid: 24366 - type: FireAlarm - components: - - pos: -65.5,9.5 - parent: 0 - type: Transform - - devices: - - 5809 - - 5810 - - 24368 - type: DeviceList -- uid: 24367 - type: AirSensor - components: - - pos: -59.5,6.5 - parent: 0 - type: Transform -- uid: 24368 - type: AirSensor - components: - - pos: -68.5,8.5 - parent: 0 - type: Transform -- uid: 24373 - type: FireAlarm - components: - - pos: -72.5,-7.5 - parent: 0 - type: Transform - - devices: - - 24375 - - 5807 - - 5808 - type: DeviceList -- uid: 24374 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -63.5,-10.5 - parent: 0 - type: Transform - - devices: - - 24375 - - 5807 - - 5808 - - 5562 - - 5536 - type: DeviceList -- uid: 24375 - type: AirSensor - components: - - pos: -68.5,-8.5 - parent: 0 - type: Transform -- uid: 24376 - type: AirSensor - components: - - pos: -59.5,-7.5 - parent: 0 - type: Transform -- uid: 24377 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -62.5,-10.5 - parent: 0 - type: Transform - - devices: - - 24376 - - 5807 - - 5808 - - 18335 - - 18336 - - 5575 - - 5576 - - 5577 - - 10792 - - 10793 - type: DeviceList -- uid: 24378 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -59.5,-10.5 - parent: 0 - type: Transform - - devices: - - 24376 - - 5807 - - 5808 - - 18335 - - 18336 - - 5575 - - 5576 - - 5577 - type: DeviceList -- uid: 24379 - type: AirSensor - components: - - pos: -68.5,-18.5 - parent: 0 - type: Transform -- uid: 24380 - type: AirAlarm - components: - - pos: -63.5,-16.5 - parent: 0 - type: Transform - - devices: - - 24379 - - 18335 - - 18336 - - 5838 - - 5839 - type: DeviceList -- uid: 24381 - type: FireAlarm - components: - - pos: -64.5,-16.5 - parent: 0 - type: Transform - - devices: - - 24379 - - 18335 - - 18336 - type: DeviceList -- uid: 24382 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-8.5 - parent: 0 - type: Transform - - devices: - - 18358 - - 24383 - type: DeviceList -- uid: 24383 - type: AirSensor - components: - - pos: -47.5,-9.5 - parent: 0 - type: Transform -- uid: 24384 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-6.5 - parent: 0 - type: Transform - - devices: - - 24385 - - 17686 - - 17674 - type: DeviceList -- uid: 24385 - type: AirSensor - components: - - pos: -25.5,-9.5 - parent: 0 - type: Transform -- uid: 24386 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -43.5,4.5 - parent: 0 - type: Transform - - devices: - - 3577 - - 24388 - - 3543 - - 4346 - - 4347 - type: DeviceList -- uid: 24387 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -43.5,3.5 - parent: 0 - type: Transform - - devices: - - 3577 - - 24388 - - 3543 - type: DeviceList -- uid: 24388 - type: AirSensor - components: - - pos: -39.5,4.5 - parent: 0 - type: Transform -- uid: 24389 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -32.5,15.5 - parent: 0 - type: Transform - - devices: - - 3695 - - 3624 - - 3577 - - 24390 - - 4143 - - 4052 - - 3835 - type: DeviceList -- uid: 24390 - type: AirSensor - components: - - pos: -34.5,16.5 - parent: 0 - type: Transform -- uid: 24391 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -32.5,9.5 - parent: 0 - type: Transform - - devices: - - 3695 - - 3624 - - 3577 - - 24390 - type: DeviceList -- uid: 24392 - type: AirAlarm - components: - - pos: -29.5,18.5 - parent: 0 - type: Transform - - devices: - - 24393 - - 4393 - - 4392 - type: DeviceList -- uid: 24393 - type: AirSensor - components: - - pos: -31.5,14.5 - parent: 0 - type: Transform -- uid: 24394 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -38.5,24.5 - parent: 0 - type: Transform - - devices: - - 4328 - - 24395 - - 4326 - type: DeviceList -- uid: 24395 - type: AirSensor - components: - - pos: -40.5,24.5 - parent: 0 - type: Transform -- uid: 24396 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -34.5,41.5 - parent: 0 - type: Transform - - devices: - - 24397 - - 9491 - type: DeviceList -- uid: 24397 - type: AirSensor - components: - - pos: -36.5,41.5 - parent: 0 - type: Transform -- uid: 24398 - type: AirAlarm - components: - - pos: -5.5,26.5 - parent: 0 - type: Transform - - devices: - - 24400 - - 6482 - - 6495 - - 6493 - - 6494 - - 7126 - - 7125 - - 7128 - - 7127 - - 9337 - - 9338 - type: DeviceList -- uid: 24399 - type: FireAlarm - components: - - pos: -0.5,26.5 - parent: 0 - type: Transform - - devices: - - 24400 - - 6482 - - 6495 - - 6493 - - 6494 - type: DeviceList -- uid: 24400 - type: AirSensor - components: - - pos: -5.5,24.5 - parent: 0 - type: Transform -- uid: 24401 - type: AirAlarm - components: - - pos: -15.5,32.5 - parent: 0 - type: Transform - - devices: - - 9223 - - 9225 - - 24402 - type: DeviceList -- uid: 24402 - type: AirSensor - components: - - pos: -16.5,31.5 - parent: 0 - type: Transform -- uid: 24403 - type: AirAlarm - components: - - pos: -0.5,35.5 - parent: 0 - type: Transform - - devices: - - 24405 - - 6483 - - 8143 - - 8142 - - 7087 - - 7078 - - 7103 - - 7102 - type: DeviceList -- uid: 24404 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -5.5,32.5 - parent: 0 - type: Transform - - devices: - - 24405 - - 6483 - - 8143 - - 8142 - type: DeviceList -- uid: 24405 - type: AirSensor - components: - - pos: -4.5,33.5 - parent: 0 - type: Transform -- uid: 24406 - type: AirAlarm - components: - - pos: -4.5,32.5 - parent: 0 - type: Transform - - devices: - - 7076 - - 24407 - - 7088 - - 6482 - - 6481 - type: DeviceList -- uid: 24407 - type: AirSensor - components: - - pos: -3.5,29.5 - parent: 0 - type: Transform -- uid: 24408 - type: AirAlarm - components: - - pos: -13.5,34.5 - parent: 0 - type: Transform - - devices: - - 8143 - - 8142 - - 24410 - - 7337 - - 7075 - - 7094 - - 7074 - - 7093 - - 4244 - - 7092 - type: DeviceList -- uid: 24409 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -13.5,35.5 - parent: 0 - type: Transform - - devices: - - 8143 - - 8142 - - 24410 - type: DeviceList -- uid: 24410 - type: AirSensor - components: - - pos: -11.5,31.5 - parent: 0 - type: Transform -- uid: 24411 - type: AirAlarm - components: - - pos: -13.5,49.5 - parent: 0 - type: Transform - - devices: - - 7155 - - 6694 - - 24412 - - 7110 - - 7086 - - 7803 - - 6471 - type: DeviceList -- uid: 24412 - type: AirSensor - components: - - pos: -9.5,47.5 - parent: 0 - type: Transform -- uid: 24413 - type: AirAlarm - components: - - pos: -5.5,41.5 - parent: 0 - type: Transform - - devices: - - 7091 - - 7089 - - 24414 - - 6483 - type: DeviceList -- uid: 24414 - type: AirSensor - components: - - pos: -5.5,36.5 - parent: 0 - type: Transform -- uid: 24415 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -0.5,38.5 - parent: 0 - type: Transform - - devices: - - 10543 - - 24417 - - 7090 - - 7083 - type: DeviceList -- uid: 24416 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -0.5,39.5 - parent: 0 - type: Transform - - devices: - - 10543 - - 24417 - type: DeviceList -- uid: 24417 - type: AirSensor - components: - - pos: 1.5,38.5 - parent: 0 - type: Transform -- uid: 24418 - type: AirAlarm - components: - - pos: 2.5,46.5 - parent: 0 - type: Transform - - devices: - - 10543 - - 24420 - - 7084 - - 7108 - - 7085 - - 7109 - type: DeviceList -- uid: 24419 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 3.5,43.5 - parent: 0 - type: Transform - - devices: - - 10543 - - 24420 - type: DeviceList -- uid: 24420 - type: AirSensor - components: - - pos: 1.5,43.5 - parent: 0 - type: Transform -- uid: 24421 - type: ExtinguisherCabinetFilled - components: - - pos: -5.5,45.5 - parent: 0 - type: Transform -- uid: 24422 - type: ExtinguisherCabinetFilled - components: - - pos: -0.5,37.5 - parent: 0 - type: Transform -- uid: 24423 - type: ExtinguisherCabinetFilled - components: - - pos: -13.5,37.5 - parent: 0 - type: Transform -- uid: 24424 - type: AirAlarm - components: - - pos: 6.5,42.5 - parent: 0 - type: Transform - - devices: - - 24425 - - 8847 - - 7105 - - 7104 - - 7107 - type: DeviceList -- uid: 24425 - type: AirSensor - components: - - pos: 9.5,37.5 - parent: 0 - type: Transform -- uid: 24426 - type: ShuttersNormalOpen - components: - - pos: 7.5,43.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24430 - type: SignalReceiver -- uid: 24427 - type: ShuttersNormalOpen - components: - - pos: 8.5,43.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24430 - type: SignalReceiver -- uid: 24428 - type: ShuttersNormalOpen - components: - - pos: 10.5,43.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24430 - type: SignalReceiver -- uid: 24429 - type: ShuttersNormalOpen - components: - - pos: 11.5,43.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24430 - type: SignalReceiver -- uid: 24430 - type: SignalButton - components: - - pos: 6.5,48.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 24426 - - port: Toggle - uid: 24427 - - port: Toggle - uid: 24428 - - port: Toggle - uid: 24429 - type: SignalTransmitter -- uid: 24431 - type: AirAlarm - components: - - pos: 12.5,48.5 - parent: 0 - type: Transform - - devices: - - 6662 - - 24432 - - 6661 - type: DeviceList -- uid: 24432 - type: AirSensor - components: - - pos: 9.5,44.5 - parent: 0 - type: Transform -- uid: 24433 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 19.5,41.5 - parent: 0 - type: Transform - - devices: - - 7725 - - 7724 - - 24434 - type: DeviceList -- uid: 24434 - type: AirSensor - components: - - pos: 17.5,41.5 - parent: 0 - type: Transform -- uid: 24435 - type: AirSensor - components: - - pos: 19.5,31.5 - parent: 0 - type: Transform -- uid: 24436 - type: AirAlarm - components: - - pos: 19.5,33.5 - parent: 0 - type: Transform - - devices: - - 7098 - - 7101 - - 24435 - type: DeviceList -- uid: 24437 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 9.5,27.5 - parent: 0 - type: Transform - - devices: - - 24439 - - 9939 - - 9940 - type: DeviceList -- uid: 24438 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 9.5,28.5 - parent: 0 - type: Transform - - devices: - - 7079 - - 24440 - - 7111 - type: DeviceList -- uid: 24439 - type: AirSensor - components: - - pos: 10.5,25.5 - parent: 0 - type: Transform -- uid: 24440 - type: AirSensor - components: - - pos: 6.5,26.5 - parent: 0 - type: Transform -- uid: 24441 - type: AirSensor - components: - - pos: 0.5,20.5 - parent: 0 - type: Transform -- uid: 24442 - type: AirAlarm - components: - - pos: 3.5,22.5 - parent: 0 - type: Transform - - devices: - - 7116 - - 7112 - - 24441 - type: DeviceList -- uid: 24443 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 3.5,12.5 - parent: 0 - type: Transform - - devices: - - 7115 - - 7113 - - 24444 - type: DeviceList -- uid: 24444 - type: AirSensor - components: - - pos: 5.5,12.5 - parent: 0 - type: Transform -- uid: 24445 - type: AirSensor - components: - - pos: 15.5,9.5 - parent: 0 - type: Transform -- uid: 24446 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 18.5,9.5 - parent: 0 - type: Transform - - devices: - - 2124 - - 2123 - - 2122 - - 24445 - - 2126 - - 2127 - - 2125 - - 12105 - - 12104 - type: DeviceList -- uid: 24447 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 14.5,7.5 - parent: 0 - type: Transform - - devices: - - 2124 - - 2123 - - 2122 - - 24445 - - 2126 - - 2127 - - 2125 - type: DeviceList -- uid: 24448 - type: AirSensor - components: - - pos: 16.5,3.5 - parent: 0 - type: Transform -- uid: 24449 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 14.5,1.5 - parent: 0 - type: Transform - - devices: - - 3265 - - 3264 - - 3263 - - 24448 - - 2124 - - 2123 - - 2122 - - 12102 - - 12103 - type: DeviceList -- uid: 24450 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 14.5,2.5 - parent: 0 - type: Transform - - devices: - - 3265 - - 3264 - - 3263 - - 24448 - - 2124 - - 2123 - - 2122 - type: DeviceList -- uid: 24451 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 0 - type: Transform - - devices: - - 24452 - - 793 - - 794 - type: DeviceList -- uid: 24452 - type: AirSensor - components: - - pos: 6.5,-4.5 - parent: 0 - type: Transform -- uid: 24453 - type: AirAlarm - components: - - pos: 0.5,-2.5 - parent: 0 - type: Transform - - devices: - - 827 - - 24454 - - 826 - type: DeviceList -- uid: 24454 - type: AirSensor - components: - - pos: -2.5,-3.5 - parent: 0 - type: Transform -- uid: 24455 - type: AirSensor - components: - - pos: 12.5,2.5 - parent: 0 - type: Transform -- uid: 24456 - type: AirAlarm - components: - - pos: 9.5,7.5 - parent: 0 - type: Transform - - devices: - - 813 - - 814 - - 24455 - type: DeviceList -- uid: 24457 - type: HospitalCurtainsOpen - components: - - pos: 6.5,2.5 - parent: 0 - type: Transform -- uid: 24458 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-5.5 - parent: 0 - type: Transform - - devices: - - 2369 - - 2368 - - 2367 - - invalid - - 24460 - - 3265 - - 3264 - - 3263 - - 12121 - - 12120 - - 23740 - - 23736 - type: DeviceList -- uid: 24459 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-4.5 - parent: 0 - type: Transform - - devices: - - 2369 - - 2368 - - 2367 - - invalid - - 24460 - - 3265 - - 3264 - - 3263 - - 23740 - - 23736 - type: DeviceList -- uid: 24460 - type: AirSensor - components: - - pos: 16.5,-6.5 - parent: 0 - type: Transform -- uid: 24461 - type: AirAlarm - components: - - pos: 29.5,5.5 - parent: 0 - type: Transform - - devices: - - 24463 - - 4983 - - 6926 - - 6932 - - 23448 - - 23444 - - 12143 - - 12142 - type: DeviceList -- uid: 24462 - type: FireAlarm - components: - - pos: 31.5,5.5 - parent: 0 - type: Transform - - devices: - - 24463 - - 4983 - - 6926 - - 6932 - - 23448 - - 23444 - type: DeviceList -- uid: 24463 - type: AirSensor - components: - - pos: 28.5,3.5 - parent: 0 - type: Transform -- uid: 24464 - type: AirAlarm - components: - - pos: 33.5,-1.5 - parent: 0 - type: Transform - - devices: - - 24466 - - 23448 - - 23444 - - 23740 - - 23736 - - 2402 - - 2403 - - 2404 - - 2405 - - 2406 - - 2407 - - 2408 - - 2414 - - 2413 - - 2412 - - 2411 - - 2410 - - 2409 - - 2714 - - 2711 - - 2712 - - 2717 - - 2716 - type: DeviceList -- uid: 24465 - type: FireAlarm - components: - - pos: 29.5,1.5 - parent: 0 - type: Transform - - devices: - - 24466 - - 23448 - - 23444 - - 23740 - - 23736 - - 2402 - - 2403 - - 2404 - - 2405 - - 2406 - - 2407 - - 2408 - - 2414 - - 2413 - - 2412 - - 2411 - - 2410 - - 2409 - type: DeviceList -- uid: 24466 - type: AirSensor - components: - - pos: 26.5,-4.5 - parent: 0 - type: Transform -- uid: 24467 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-8.5 - parent: 0 - type: Transform - - devices: - - 24469 - - 2402 - - 2403 - - 2404 - - 2405 - - 2406 - - 2407 - - 2408 - type: DeviceList -- uid: 24468 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-9.5 - parent: 0 - type: Transform - - devices: - - 24469 - - 2402 - - 2403 - - 2404 - - 2405 - - 2406 - - 2407 - - 2408 - - 2642 - - 2640 - type: DeviceList -- uid: 24469 - type: AirSensor - components: - - pos: 21.5,-9.5 - parent: 0 - type: Transform -- uid: 24470 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-11.5 - parent: 0 - type: Transform - - devices: - - 24472 - - 2414 - - 2413 - - 2412 - - 2411 - - 2410 - - 2409 - - 2353 - type: DeviceList -- uid: 24471 - type: AirAlarm - components: - - pos: 33.5,-8.5 - parent: 0 - type: Transform - - devices: - - 24472 - - 2414 - - 2413 - - 2412 - - 2411 - - 2410 - - 2409 - - 2353 - - 2658 - - 2657 - type: DeviceList -- uid: 24472 - type: AirSensor - components: - - pos: 29.5,-9.5 - parent: 0 - type: Transform -- uid: 24473 - type: CableApcExtension - components: - - pos: 28.5,-19.5 - parent: 0 - type: Transform -- uid: 24474 - type: CableApcExtension - components: - - pos: 27.5,-18.5 - parent: 0 - type: Transform -- uid: 24475 - type: CableApcExtension - components: - - pos: 26.5,-18.5 - parent: 0 - type: Transform -- uid: 24476 - type: CableApcExtension - components: - - pos: 25.5,-18.5 - parent: 0 - type: Transform -- uid: 24477 - type: CableApcExtension - components: - - pos: 24.5,-18.5 - parent: 0 - type: Transform -- uid: 24478 - type: CableApcExtension - components: - - pos: 24.5,-19.5 - parent: 0 - type: Transform -- uid: 24479 - type: SeedExtractor - components: - - pos: 24.5,-19.5 - parent: 0 - type: Transform -- uid: 24480 - type: FirelockGlass - components: - - pos: -47.5,2.5 - parent: 0 - type: Transform -- uid: 24481 - type: AirAlarm - components: - - pos: 25.5,-14.5 - parent: 0 - type: Transform - - devices: - - 2359 - - 2360 - - 24483 - - 2353 - - 12131 - - 12130 - - 3266 - - 12141 - - 12139 - - 4972 - type: DeviceList -- uid: 24482 - type: FireAlarm - components: - - pos: 24.5,-14.5 - parent: 0 - type: Transform - - devices: - - 2359 - - 2360 - - 24483 - - 2353 - type: DeviceList -- uid: 24483 - type: AirSensor - components: - - pos: 26.5,-23.5 - parent: 0 - type: Transform -- uid: 24484 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-20.5 - parent: 0 - type: Transform - - devices: - - 2620 - - 24485 - - 2619 - type: DeviceList -- uid: 24485 - type: AirSensor - components: - - pos: 34.5,-19.5 - parent: 0 - type: Transform -- uid: 24486 - type: AirAlarm - components: - - pos: 39.5,-8.5 - parent: 0 - type: Transform - - devices: - - 2676 - - invalid - - 2698 - - 24487 - type: DeviceList -- uid: 24487 - type: AirSensor - components: - - pos: 40.5,-8.5 - parent: 0 - type: Transform -- uid: 24488 - type: AirSensor - components: - - pos: 38.5,-7.5 - parent: 0 - type: Transform -- uid: 24489 - type: AirAlarm - components: - - pos: 38.5,-1.5 - parent: 0 - type: Transform - - devices: - - 2708 - - 2707 - - 24488 - type: DeviceList -- uid: 24490 - type: AirAlarm - components: - - pos: 41.5,5.5 - parent: 0 - type: Transform - - devices: - - 4983 - - 6926 - - 6932 - - 8896 - - 8895 - - 24492 - - 7341 - - 7342 - type: DeviceList -- uid: 24491 - type: FireAlarm - components: - - pos: 40.5,5.5 - parent: 0 - type: Transform - - devices: - - 4983 - - 6926 - - 6932 - - 8896 - - 8895 - - 24492 - type: DeviceList -- uid: 24492 - type: AirSensor - components: - - pos: 41.5,3.5 - parent: 0 - type: Transform -- uid: 24493 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 34.5,9.5 - parent: 0 - type: Transform - - devices: - - 24494 - - 12060 - type: DeviceList -- uid: 24494 - type: AirSensor - components: - - pos: 35.5,8.5 - parent: 0 - type: Transform -- uid: 24495 - type: AirAlarm - components: - - pos: 45.5,11.5 - parent: 0 - type: Transform - - devices: - - 12585 - - 12586 - - 24496 - type: DeviceList -- uid: 24496 - type: AirSensor - components: - - pos: 42.5,10.5 - parent: 0 - type: Transform -- uid: 24497 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 48.5,0.5 - parent: 0 - type: Transform - - devices: - - 24499 - - 8896 - type: DeviceList -- uid: 24498 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 48.5,1.5 - parent: 0 - type: Transform - - devices: - - 24499 - - 8896 - - 12378 - - 12384 - type: DeviceList -- uid: 24499 - type: AirSensor - components: - - pos: 50.5,3.5 - parent: 0 - type: Transform -- uid: 24500 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 52.5,10.5 - parent: 0 - type: Transform - - devices: - - 24501 - - 12374 - - 12377 - type: DeviceList -- uid: 24501 - type: AirSensor - components: - - pos: 54.5,8.5 - parent: 0 - type: Transform -- uid: 24502 - type: AirAlarm - components: - - pos: 54.5,17.5 - parent: 0 - type: Transform - - devices: - - 24503 - - 23851 - - 24030 - - 23881 - - 23853 - type: DeviceList -- uid: 24503 - type: AirSensor - components: - - pos: 51.5,21.5 - parent: 0 - type: Transform -- uid: 24504 - type: AirAlarm - components: - - pos: 53.5,27.5 - parent: 0 - type: Transform - - devices: - - 24505 - - 23875 - - 23883 - type: DeviceList -- uid: 24505 - type: AirSensor - components: - - pos: 55.5,28.5 - parent: 0 - type: Transform -- uid: 24506 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 59.5,35.5 - parent: 0 - type: Transform - - devices: - - 24507 - - 19002 - - 19003 - type: DeviceList -- uid: 24507 - type: AirSensor - components: - - pos: 54.5,36.5 - parent: 0 - type: Transform -- uid: 24508 - type: AirAlarm - components: - - pos: 52.5,-5.5 - parent: 0 - type: Transform - - devices: - - 12050 - - 12051 - - 24509 - type: DeviceList -- uid: 24509 - type: AirSensor - components: - - pos: 54.5,-7.5 - parent: 0 - type: Transform -- uid: 24510 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-11.5 - parent: 0 - type: Transform - - devices: - - 11517 - - 11518 - - 11519 - - 11565 - - 11564 - - 24512 - - 12049 - - 12032 - type: DeviceList -- uid: 24511 - type: FireAlarm - components: - - pos: 51.5,-9.5 - parent: 0 - type: Transform - - devices: - - 11517 - - 11518 - - 11519 - - 11565 - - 11564 - - 24512 - type: DeviceList -- uid: 24512 - type: AirSensor - components: - - pos: 52.5,-12.5 - parent: 0 - type: Transform -- uid: 24513 - type: FireAlarm - components: - - pos: 56.5,-17.5 - parent: 0 - type: Transform - - devices: - - 24514 - - 11565 - - 11564 - - 11517 - - 11518 - - 11519 - type: DeviceList -- uid: 24514 - type: AirSensor - components: - - pos: 53.5,-18.5 - parent: 0 - type: Transform -- uid: 24515 - type: AirAlarm - components: - - pos: 61.5,-3.5 - parent: 0 - type: Transform - - devices: - - 24516 - type: DeviceList -- uid: 24516 - type: AirSensor - components: - - pos: 68.5,-7.5 - parent: 0 - type: Transform -- uid: 24517 - type: AirAlarm - components: - - pos: 54.5,-17.5 - parent: 0 - type: Transform - - devices: - - 11057 - - 24514 - - 11091 - type: DeviceList -- uid: 24518 - type: AirSensor - components: - - pos: 69.5,-32.5 - parent: 0 - type: Transform -- uid: 24519 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 68.5,-29.5 - parent: 0 - type: Transform - - devices: - - 24518 - type: DeviceList -- uid: 24520 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 44.5,-29.5 - parent: 0 - type: Transform - - devices: - - 24521 - type: DeviceList -- uid: 24521 - type: AirSensor - components: - - pos: 46.5,-33.5 - parent: 0 - type: Transform -- uid: 24522 - type: AirSensor - components: - - pos: 0.5,-26.5 - parent: 0 - type: Transform -- uid: 24523 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 5.5,-27.5 - parent: 0 - type: Transform - - devices: - - 9777 - - 9750 - - 9749 - - 14205 - - 14206 - - 24522 - type: DeviceList -- uid: 24524 - type: AirAlarm - components: - - pos: 15.5,-27.5 - parent: 0 - type: Transform - - devices: - - 9777 - - 24526 - - 20992 - - 20778 - type: DeviceList -- uid: 24525 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-26.5 - parent: 0 - type: Transform - - devices: - - 9777 - - 24526 - type: DeviceList -- uid: 24526 - type: AirSensor - components: - - pos: 16.5,-30.5 - parent: 0 - type: Transform -- uid: 24527 - type: AirSensor - components: - - pos: 20.5,-32.5 - parent: 0 - type: Transform -- uid: 24528 - type: AirAlarm - components: - - pos: 21.5,-27.5 - parent: 0 - type: Transform - - devices: - - 20779 - - invalid - - 21003 - - 20780 - - 24527 - type: DeviceList -- uid: 24529 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-37.5 - parent: 0 - type: Transform - - devices: - - 24532 - - 21098 - - 20858 - type: DeviceList -- uid: 24530 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-36.5 - parent: 0 - type: Transform - - devices: - - 24531 - - 21099 - - 20781 - type: DeviceList -- uid: 24531 - type: AirSensor - components: - - pos: 15.5,-37.5 - parent: 0 - type: Transform -- uid: 24532 - type: AirSensor - components: - - pos: 20.5,-38.5 - parent: 0 - type: Transform -- uid: 24533 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-37.5 - parent: 0 - type: Transform - - devices: - - 19501 - - 19500 - - 19499 - - 24534 - type: DeviceList -- uid: 24534 - type: AirSensor - components: - - pos: 10.5,-34.5 - parent: 0 - type: Transform -- uid: 24535 - type: FireAlarm - components: - - pos: 8.5,-43.5 - parent: 0 - type: Transform - - devices: - - 19496 - - 19497 - - 19498 - - 19499 - - 19500 - - 19501 - - 24536 - - 19296 - type: DeviceList -- uid: 24536 - type: AirSensor - components: - - pos: 14.5,-42.5 - parent: 0 - type: Transform -- uid: 24537 - type: AirAlarm - components: - - pos: 6.5,-43.5 - parent: 0 - type: Transform - - devices: - - 19496 - - 19497 - - 19498 - - 19499 - - 19500 - - 19501 - - 24536 - - 21075 - - 20821 - - 19296 - type: DeviceList -- uid: 24538 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 1.5,-43.5 - parent: 0 - type: Transform - - devices: - - 24540 - - 19295 - - 19296 - - 20782 - - 20741 - - 21021 - type: DeviceList -- uid: 24539 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 2.5,-43.5 - parent: 0 - type: Transform - - devices: - - 24540 - - 19295 - - 19296 - type: DeviceList -- uid: 24540 - type: AirSensor - components: - - pos: 5.5,-38.5 - parent: 0 - type: Transform -- uid: 24541 - type: AirAlarm - components: - - pos: 4.5,-27.5 - parent: 0 - type: Transform - - devices: - - 24542 - - 20783 - - 21020 - type: DeviceList -- uid: 24542 - type: AirSensor - components: - - pos: 1.5,-30.5 - parent: 0 - type: Transform -- uid: 24543 - type: AirAlarm - components: - - pos: 26.5,-40.5 - parent: 0 - type: Transform - - devices: - - 24544 - - 19498 - - 19497 - - 19496 - - 21100 - - 21097 - type: DeviceList -- uid: 24544 - type: AirSensor - components: - - pos: 29.5,-43.5 - parent: 0 - type: Transform -- uid: 24545 - type: FireAlarm - components: - - pos: 18.5,-40.5 - parent: 0 - type: Transform - - devices: - - 24544 - - 19498 - - 19497 - - 19496 - type: DeviceList -- uid: 24546 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-53.5 - parent: 0 - type: Transform - - devices: - - 21074 - - 24547 - - 21027 - - 20820 - type: DeviceList -- uid: 24547 - type: AirSensor - components: - - pos: 9.5,-52.5 - parent: 0 - type: Transform -- uid: 24548 - type: AirAlarm - components: - - pos: 23.5,-47.5 - parent: 0 - type: Transform - - devices: - - 24549 - - 20819 - - 22189 - type: DeviceList -- uid: 24549 - type: AirSensor - components: - - pos: 23.5,-51.5 - parent: 0 - type: Transform -- uid: 24550 - type: AirAlarm - components: - - pos: 28.5,-53.5 - parent: 0 - type: Transform - - devices: - - 24551 - - 21068 - - 20887 - type: DeviceList -- uid: 24551 - type: AirSensor - components: - - pos: 27.5,-55.5 - parent: 0 - type: Transform -- uid: 24552 - type: AirSensor - components: - - pos: -2.5,-30.5 - parent: 0 - type: Transform -- uid: 24553 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-27.5 - parent: 0 - type: Transform - - devices: - - 19295 - - 19262 - - 19263 - - 19264 - - 24552 - - 14190 - - 14207 - - 14208 - - 14205 - - 14206 - type: DeviceList -- uid: 24554 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-27.5 - parent: 0 - type: Transform - - devices: - - 19295 - - 19262 - - 19263 - - 19264 - - 24552 - - 14190 - - 14207 - - 14208 - - 14205 - - 14206 - - 20658 - - 20659 - - 22023 - - 22022 - type: DeviceList -- uid: 24555 - type: AirSensor - components: - - pos: -2.5,-48.5 - parent: 0 - type: Transform -- uid: 24556 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-43.5 - parent: 0 - type: Transform - - devices: - - 24555 - - 19261 - - 19260 - - 19259 - - 19262 - - 19263 - - 19264 - type: DeviceList -- uid: 24557 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-40.5 - parent: 0 - type: Transform - - devices: - - 24555 - - 19261 - - 19260 - - 19259 - - 19262 - - 19263 - - 19264 - - 22020 - - 22021 - type: DeviceList -- uid: 24558 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-56.5 - parent: 0 - type: Transform - - devices: - - 24559 - - 19261 - - 19260 - - 19259 - type: DeviceList -- uid: 24559 - type: AirSensor - components: - - pos: -2.5,-56.5 - parent: 0 - type: Transform -- uid: 24560 - type: AirAlarm - components: - - pos: -8.5,-60.5 - parent: 0 - type: Transform - - devices: - - 24561 - - 21644 - - 21645 - - 22019 - - 22018 - - 21643 - - 21646 - type: DeviceList -- uid: 24561 - type: AirSensor - components: - - pos: -9.5,-61.5 - parent: 0 - type: Transform -- uid: 24562 - type: AirSensor - components: - - pos: 1.5,-70.5 - parent: 0 - type: Transform -- uid: 24563 - type: AirAlarm - components: - - pos: 1.5,-66.5 - parent: 0 - type: Transform - - devices: - - 24562 - - 21608 - - 21607 - type: DeviceList -- uid: 24564 - type: AirSensor - components: - - pos: -17.5,-73.5 - parent: 0 - type: Transform -- uid: 24565 - type: AirAlarm - components: - - pos: -21.5,-68.5 - parent: 0 - type: Transform - - devices: - - 21564 - - 24564 - - 21639 - type: DeviceList -- uid: 24566 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-64.5 - parent: 0 - type: Transform - - devices: - - 24567 - - 21640 - - 21563 - type: DeviceList -- uid: 24567 - type: AirSensor - components: - - pos: -26.5,-63.5 - parent: 0 - type: Transform -- uid: 24568 - type: AirSensor - components: - - pos: -16.5,-48.5 - parent: 0 - type: Transform -- uid: 24569 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-49.5 - parent: 0 - type: Transform - - devices: - - 24568 - - 15348 - - 15345 - - 15344 - - 15333 - - 15332 - type: DeviceList -- uid: 24570 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-32.5 - parent: 0 - type: Transform - - devices: - - 14178 - - 14194 - - 14190 - - 14191 - - 24572 - - 14673 - - 14672 - - 14632 - type: DeviceList -- uid: 24571 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-28.5 - parent: 0 - type: Transform - - devices: - - 14178 - - 14194 - - 14190 - - 14191 - - 24572 - type: DeviceList -- uid: 24572 - type: AirSensor - components: - - pos: -6.5,-31.5 - parent: 0 - type: Transform -- uid: 24573 - type: AirSensor - components: - - pos: -7.5,-25.5 - parent: 0 - type: Transform -- uid: 24574 - type: AirlockMedicalGlassLocked - components: - - pos: -14.5,-27.5 - parent: 0 - type: Transform -- uid: 24575 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -12.5,-32.5 - parent: 0 - type: Transform - - devices: - - 14742 - - 14575 - - 24576 - type: DeviceList -- uid: 24576 - type: AirSensor - components: - - pos: -15.5,-28.5 - parent: 0 - type: Transform -- uid: 24577 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-36.5 - parent: 0 - type: Transform - - devices: - - 24579 - - 14928 - - 14927 - - 14926 - type: DeviceList -- uid: 24578 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 0 - type: Transform - - devices: - - 24579 - - 14928 - - 14927 - - 14926 - - 14740 - - 14741 - type: DeviceList -- uid: 24579 - type: AirSensor - components: - - pos: -20.5,-30.5 - parent: 0 - type: Transform -- uid: 24580 - type: AirSensor - components: - - pos: -18.5,-25.5 - parent: 0 - type: Transform -- uid: 24581 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-27.5 - parent: 0 - type: Transform - - devices: - - 24580 - - 15261 - - 14627 - type: DeviceList -- uid: 24582 - type: AirSensor - components: - - pos: -15.5,-38.5 - parent: 0 - type: Transform -- uid: 24583 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-37.5 - parent: 0 - type: Transform - - devices: - - 24582 - - 14739 - - 14733 - type: DeviceList -- uid: 24584 - type: AirAlarm - components: - - pos: -30.5,-28.5 - parent: 0 - type: Transform - - devices: - - 14924 - - 14626 - - 14714 - - 14728 - - 24585 - type: DeviceList -- uid: 24585 - type: AirSensor - components: - - pos: -23.5,-33.5 - parent: 0 - type: Transform -- uid: 24586 - type: AirSensor - components: - - pos: -33.5,-33.5 - parent: 0 - type: Transform -- uid: 24587 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-34.5 - parent: 0 - type: Transform - - devices: - - 14729 - - 24586 - - 14623 - type: DeviceList -- uid: 24588 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-39.5 - parent: 0 - type: Transform - - devices: - - 14928 - - 14927 - - 14926 - - 24589 - - 15029 - - 15192 - - 15193 - type: DeviceList -- uid: 24589 - type: AirSensor - components: - - pos: -20.5,-40.5 - parent: 0 - type: Transform -- uid: 24590 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-45.5 - parent: 0 - type: Transform - - devices: - - 14928 - - 14927 - - 14926 - - 24589 - - 15029 - - 15192 - - 15193 - - 15319 - - 15318 - type: DeviceList -- uid: 24591 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-42.5 - parent: 0 - type: Transform - - devices: - - 24592 - - 15334 - - 15316 - type: DeviceList -- uid: 24592 - type: AirSensor - components: - - pos: -13.5,-42.5 - parent: 0 - type: Transform -- uid: 24593 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-53.5 - parent: 0 - type: Transform - - devices: - - 24595 - - 15029 - - 15192 - - 15193 - type: DeviceList -- uid: 24594 - type: AirAlarm - components: - - pos: -18.5,-52.5 - parent: 0 - type: Transform - - devices: - - 24595 - - 15029 - - 15192 - - 15193 - - 15541 - - 15529 - type: DeviceList -- uid: 24595 - type: AirSensor - components: - - pos: -18.5,-55.5 - parent: 0 - type: Transform -- uid: 24596 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-51.5 - parent: 0 - type: Transform - - devices: - - 15263 - - 15232 - - 24599 - type: DeviceList -- uid: 24597 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-51.5 - parent: 0 - type: Transform - - devices: - - 24598 - - 15233 - - 15262 - type: DeviceList -- uid: 24598 - type: AirSensor - components: - - pos: -31.5,-52.5 - parent: 0 - type: Transform -- uid: 24599 - type: AirSensor - components: - - pos: -27.5,-52.5 - parent: 0 - type: Transform -- uid: 24600 - type: AirAlarm - components: - - pos: -29.5,-44.5 - parent: 0 - type: Transform - - devices: - - 24601 - - 15264 - - 15305 - - 15306 - - 15307 - type: DeviceList -- uid: 24601 - type: AirSensor - components: - - pos: -29.5,-46.5 - parent: 0 - type: Transform -- uid: 24602 - type: AirAlarm - components: - - pos: -51.5,-44.5 - parent: 0 - type: Transform - - devices: - - 16394 - - 24603 - - 16420 - type: DeviceList -- uid: 24603 - type: AirSensor - components: - - pos: -51.5,-48.5 - parent: 0 - type: Transform -- uid: 24604 - type: CableMV - components: - - pos: -48.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24605 - type: CableMV - components: - - pos: -44.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24606 - type: CableMV - components: - - pos: -44.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24607 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-53.5 - parent: 0 - type: Transform - - devices: - - 24608 - - 16398 - - 16421 - - 16399 - - 16396 - - 16400 - - 16397 - type: DeviceList -- uid: 24608 - type: AirSensor - components: - - pos: -51.5,-55.5 - parent: 0 - type: Transform -- uid: 24609 - type: ExtinguisherCabinetFilled - components: - - pos: -48.5,-56.5 - parent: 0 - type: Transform -- uid: 24610 - type: ExtinguisherCabinetFilled - components: - - pos: -30.5,-48.5 - parent: 0 - type: Transform -- uid: 24611 - type: ExtinguisherCabinetFilled - components: - - pos: -23.5,-41.5 - parent: 0 - type: Transform -- uid: 24612 - type: ExtinguisherCabinetFilled - components: - - pos: -18.5,-57.5 - parent: 0 - type: Transform -- uid: 24613 - type: ExtinguisherCabinetFilled - components: - - pos: -38.5,-31.5 - parent: 0 - type: Transform -- uid: 24614 - type: ExtinguisherCabinetFilled - components: - - pos: -24.5,-25.5 - parent: 0 - type: Transform -- uid: 24615 - type: ExtinguisherCabinetFilled - components: - - pos: 13.5,-13.5 - parent: 0 - type: Transform -- uid: 24616 - type: ExtinguisherCabinetFilled - components: - - pos: -19.5,-17.5 - parent: 0 - type: Transform -- uid: 24617 - type: ExtinguisherCabinetFilled - components: - - pos: 42.5,5.5 - parent: 0 - type: Transform -- uid: 24618 - type: ExtinguisherCabinetFilled - components: - - pos: 48.5,-3.5 - parent: 0 - type: Transform -- uid: 24619 - type: ExtinguisherCabinetFilled - components: - - pos: 23.5,-14.5 - parent: 0 - type: Transform -- uid: 24620 - type: ExtinguisherCabinetFilled - components: - - pos: 19.5,-27.5 - parent: 0 - type: Transform -- uid: 24621 - type: ComputerRadar - components: - - pos: -42.5,33.5 - parent: 0 - type: Transform -- uid: 24622 - type: CableApcExtension - components: - - pos: 30.5,-19.5 - parent: 0 - type: Transform -- uid: 24626 - type: ShuttersNormalOpen - components: - - pos: 19.5,-33.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24632 - type: SignalReceiver -- uid: 24627 - type: ShuttersNormalOpen - components: - - pos: 21.5,-33.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24632 - type: SignalReceiver -- uid: 24628 - type: ShuttersNormalOpen - components: - - pos: 22.5,-33.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24632 - type: SignalReceiver -- uid: 24629 - type: ShuttersNormalOpen - components: - - pos: 19.5,-40.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24632 - type: SignalReceiver -- uid: 24630 - type: ShuttersNormalOpen - components: - - pos: 20.5,-40.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24632 - type: SignalReceiver -- uid: 24631 - type: ShuttersNormalOpen - components: - - pos: 22.5,-40.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 24632 - type: SignalReceiver -- uid: 24632 - type: SignalButton - components: - - pos: 18.5,-39.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 24629 - - port: Toggle - uid: 24630 - - port: Toggle - uid: 24631 - - port: Toggle - uid: 24626 - - port: Toggle - uid: 24627 - - port: Toggle - uid: 24628 - type: SignalTransmitter -- uid: 24633 - type: SignalButtonExt1 - components: - - pos: 9.5,3.5 - parent: 0 - type: Transform -- uid: 24634 - type: BlastDoorExterior1Open - components: - - pos: 6.5,5.5 - parent: 0 - type: Transform -- uid: 24635 - type: PaintingAmogusTriptych - components: - - pos: -5.5,-2.5 - parent: 0 - type: Transform -- uid: 24636 - type: PosterMapMetaRight - components: - - pos: -3.9678726,-2.5046391 - parent: 0 - type: Transform -- uid: 24637 - type: CableApcExtension - components: - - pos: 35.5,53.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24638 - type: CableApcExtension - components: - - pos: 35.5,54.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24639 - type: ReinforcedWindow - components: - - pos: -11.5,-27.5 - parent: 0 - type: Transform -- uid: 24640 - type: GroundCannabis - components: - - pos: 32.084,21.358435 - parent: 0 - type: Transform -- uid: 24641 - type: SmokingPipeFilledCannabis - components: - - pos: 31.677748,21.358435 - parent: 0 - type: Transform -- uid: 24642 - type: GroundCannabis - components: - - pos: 31.677748,21.795935 - parent: 0 - type: Transform -- uid: 24643 - type: SmokingPipeFilledTobacco - components: - - pos: 7.5573273,5.1162806 - parent: 0 - type: Transform -- uid: 24644 - type: FirelockGlass - components: - - pos: -47.5,3.5 - parent: 0 - type: Transform -- uid: 24645 - type: AirlockMedicalGlassLocked - components: - - pos: -13.5,-27.5 - parent: 0 - type: Transform -- uid: 24646 - type: ReinforcedWindow - components: - - pos: -12.5,-27.5 - parent: 0 - type: Transform -- uid: 24647 - type: PlushieLizard - components: - - pos: -20.482801,-23.429 - parent: 0 - type: Transform -- uid: 24648 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24649 - type: Poweredlight - components: - - pos: -6.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24650 - type: Poweredlight - components: - - pos: 6.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24651 - type: SurveillanceCameraWirelessRouterEntertainment - components: - - pos: -8.5,19.5 - parent: 0 - type: Transform -- uid: 24652 - type: SurveillanceWirelessCameraMovableEntertainment - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 0 - type: Transform -- uid: 24653 - type: WallmountTelevision - components: - - pos: 36.5,5.5 - parent: 0 - type: Transform -- uid: 24654 - type: WallmountTelevision - components: - - pos: -67.5,9.5 - parent: 0 - type: Transform -- uid: 24655 - type: SignDirectionalChapel - components: - - pos: -23.48918,-2.9497242 - parent: 0 - type: Transform -- uid: 24656 - type: SignDirectionalChemistry - components: - - rot: 1.5707963267948966 rad - pos: -10.504869,-27.946617 - parent: 0 - type: Transform -- uid: 24657 - type: SignDirectionalDorms - components: - - rot: 3.141592653589793 rad - pos: -23.500013,1.9273539 - parent: 0 - type: Transform -- uid: 24658 - type: SignDirectionalGravity - components: - - rot: 3.141592653589793 rad - pos: 51.5,6.5 - parent: 0 - type: Transform -- uid: 24659 - type: SignDirectionalGravity - components: - - rot: 3.141592653589793 rad - pos: 53.5,23.5 - parent: 0 - type: Transform -- uid: 24660 - type: SignDirectionalFood - components: - - rot: 1.5707963267948966 rad - pos: 18.506844,0.8347988 - parent: 0 - type: Transform -- uid: 24661 - type: SignDirectionalJanitor - components: - - rot: 3.141592653589793 rad - pos: -23.499208,2.128264 - parent: 0 - type: Transform -- uid: 24662 - type: SignDirectionalJanitor - components: - - rot: 3.141592653589793 rad - pos: -16.5,11.5 - parent: 0 - type: Transform -- uid: 24663 - type: SignDirectionalJanitor - components: - - rot: 3.141592653589793 rad - pos: -23.5,25.5 - parent: 0 - type: Transform -- uid: 24664 - type: SignDirectionalLibrary - components: - - pos: -29.5006,1.291754 - parent: 0 - type: Transform -- uid: 24665 - type: SignDirectionalWash - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-5.5 - parent: 0 - type: Transform -- uid: 24666 - type: WetFloorSign - components: - - pos: -44.451256,-7.405459 - parent: 0 - type: Transform -- uid: 24667 - type: SignDirectionalSupply - components: - - rot: 1.5707963267948966 rad - pos: -53.5,1.5 - parent: 0 - type: Transform -- uid: 24668 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: -53.4983,1.6983032 - parent: 0 - type: Transform -- uid: 24669 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -53.4983,1.2764282 - parent: 0 - type: Transform -- uid: 24670 - type: SignDirectionalMed - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-2.5 - parent: 0 - type: Transform -- uid: 24671 - type: SignDirectionalEng - components: - - rot: 1.5707963267948966 rad - pos: -53.4934,-2.299724 - parent: 0 - type: Transform -- uid: 24672 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: -53.4934,-2.705974 - parent: 0 - type: Transform -- uid: 24673 - type: SignDirectionalHop - components: - - rot: 3.141592653589793 rad - pos: -18.5,-6.5 - parent: 0 - type: Transform -- uid: 24674 - type: ToyAmongPequeno - components: - - pos: 10.817179,-14.742743 - parent: 0 - type: Transform -- uid: 24675 - type: ComputerTechnologyDiskTerminal - components: - - pos: 10.5,-32.5 - parent: 0 - type: Transform -- uid: 24676 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 0.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24677 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24678 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -44.5,45.5 - parent: 0 - type: Transform -- uid: 24679 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -44.5,46.5 - parent: 0 - type: Transform -- uid: 24680 - type: Table - components: - - pos: 18.5,39.5 - parent: 0 - type: Transform -- uid: 24681 - type: WeaponDisablerPractice - components: - - pos: 18.5245,39.635532 - parent: 0 - type: Transform -- uid: 24682 - type: AirCanister - components: - - pos: 45.5,1.5 - parent: 0 - type: Transform -- uid: 24683 - type: TintedWindow - components: - - pos: 25.5,-13.5 - parent: 0 - type: Transform -- uid: 24684 - type: Grille - components: - - pos: 25.5,-13.5 - parent: 0 - type: Transform -- uid: 24685 - type: ChemistryHotplate - components: - - pos: -7.5,-28.5 - parent: 0 - type: Transform -- uid: 24686 - type: BookEscalation - components: - - pos: -34.513412,-6.2170644 - parent: 0 - type: Transform -- uid: 24687 - type: BookEscalationSecurity - components: - - pos: -34.419662,-6.0608144 - parent: 0 - type: Transform -- uid: 24688 - type: BookAtmosAirAlarms - components: - - pos: -27.690191,-3.3828607 - parent: 0 - type: Transform -- uid: 24689 - type: BookAtmosDistro - components: - - pos: -27.408941,-3.4609857 - parent: 0 - type: Transform -- uid: 24690 - type: BookAtmosWaste - components: - - pos: -34.485977,-4.4922357 - parent: 0 - type: Transform -- uid: 24691 - type: BookAtmosVentsMore - components: - - pos: -27.813232,-10.445145 - parent: 0 - type: Transform -- uid: 24692 - type: Cigar - components: - - pos: 23.49646,-59.428585 - parent: 0 - type: Transform -- uid: 24693 - type: PaintingSkeletonCigarette - components: - - pos: 20.5,-58.5 - parent: 0 - type: Transform -- uid: 24694 - type: DrinkWhiskeyBottleFull - components: - - pos: 22.673197,-58.35046 - parent: 0 - type: Transform -- uid: 24695 - type: DrinkGlass - components: - - pos: 22.532572,-58.772335 - parent: 0 - type: Transform -- uid: 24696 - type: DrinkGlass - components: - - pos: 22.891947,-58.709835 - parent: 0 - type: Transform -- uid: 24697 - type: DrinkGlass - components: - - pos: 23.657572,-58.428585 - parent: 0 - type: Transform -- uid: 24698 - type: PowerDrill - components: - - pos: 22.490398,-38.506836 - parent: 0 - type: Transform -- uid: 24699 - type: BookAtmosAirAlarms - components: - - pos: 22.567205,-39.444336 - parent: 0 - type: Transform -- uid: 24700 - type: ClothingHeadsetMedicalScience - components: - - pos: 19.542976,-39.444336 - parent: 0 - type: Transform -- uid: 24701 - type: Crowbar - components: - - pos: 29.526897,-58.586998 - parent: 0 - type: Transform -- uid: 24702 - type: HandLabeler - components: - - pos: 29.558147,-58.540123 - parent: 0 - type: Transform -- uid: 24703 - type: WelderMini - components: - - pos: 22.653908,-59.423954 - parent: 0 - type: Transform -- uid: 24704 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,-59.5 - parent: 0 - type: Transform -- uid: 24705 - type: PosterContrabandLustyExomorph - components: - - pos: 26.5,-58.5 - parent: 0 - type: Transform -- uid: 24706 - type: FoodDonutBungo - components: - - pos: 26.523855,-54.396164 - parent: 0 - type: Transform -- uid: 24707 - type: DrinkWhiskeyBottleFull - components: - - pos: 29.547186,-60.28679 - parent: 0 - type: Transform -- uid: 24708 - type: AirCanister - components: - - pos: 51.5,-13.5 - parent: 0 - type: Transform -- uid: 24709 - type: AirCanister - components: - - pos: 51.5,-12.5 - parent: 0 - type: Transform -- uid: 24710 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 33.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24711 - type: MagazineRifleRubber - components: - - pos: -7.2814918,38.3727 - parent: 0 - type: Transform -- uid: 24712 - type: WeaponLaserCarbine - components: - - pos: -5.4221168,38.700825 - parent: 0 - type: Transform -- uid: 24713 - type: WeaponLaserCarbine - components: - - pos: -5.4221168,38.52895 - parent: 0 - type: Transform -- uid: 24714 - type: WeaponLaserCarbine - components: - - pos: -5.4221168,38.357075 - parent: 0 - type: Transform -- uid: 24715 - type: WeaponCapacitorRecharger - components: - - pos: -3.5,35.5 - parent: 0 - type: Transform -- uid: 24716 - type: HighPowerMicroLaserStockPart - components: - - pos: 40.44346,10.567184 - parent: 0 - type: Transform -- uid: 24717 - type: HighPowerMicroLaserStockPart - components: - - pos: 40.56846,10.489059 - parent: 0 - type: Transform -- uid: 24718 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,19.5 - parent: 0 - type: Transform -- uid: 24719 - type: IntercomEngineering - components: - - pos: 45.5,5.5 - parent: 0 - type: Transform -- uid: 24720 - type: IntercomEngineering - components: - - rot: 3.141592653589793 rad - pos: 52.5,12.5 - parent: 0 - type: Transform -- uid: 24721 - type: IntercomEngineering - components: - - pos: 58.5,-3.5 - parent: 0 - type: Transform -- uid: 24722 - type: IntercomCommand - components: - - rot: 3.141592653589793 rad - pos: -7.5,-1.5 - parent: 0 - type: Transform -- uid: 24723 - type: IntercomAll - components: - - rot: 3.141592653589793 rad - pos: -1.5,-2.5 - parent: 0 - type: Transform -- uid: 24724 - type: IntercomSupply - components: - - rot: -1.5707963267948966 rad - pos: -32.5,18.5 - parent: 0 - type: Transform -- uid: 24725 - type: CableMV - components: - - pos: -26.5,8.5 - parent: 0 - type: Transform -- uid: 24726 - type: CableMV - components: - - pos: -26.5,7.5 - parent: 0 - type: Transform -- uid: 24727 - type: CableMV - components: - - pos: -27.5,7.5 - parent: 0 - type: Transform -- uid: 24728 - type: CableMV - components: - - pos: -28.5,7.5 - parent: 0 - type: Transform -- uid: 24729 - type: CableMV - components: - - pos: -29.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24730 - type: CableMV - components: - - pos: -30.5,7.5 - parent: 0 - type: Transform -- uid: 24731 - type: CableMV - components: - - pos: -31.5,7.5 - parent: 0 - type: Transform -- uid: 24732 - type: CableMV - components: - - pos: -32.5,7.5 - parent: 0 - type: Transform -- uid: 24733 - type: CableMV - components: - - pos: -32.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24734 - type: CableMV - components: - - pos: -25.5,8.5 - parent: 0 - type: Transform -- uid: 24735 - type: CableMV - components: - - pos: -25.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24736 - type: CableMV - components: - - pos: -25.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24737 - type: IntercomSupply - components: - - pos: -26.5,9.5 - parent: 0 - type: Transform -- uid: 24738 - type: IntercomSecurity - components: - - rot: -1.5707963267948966 rad - pos: 3.5,25.5 - parent: 0 - type: Transform -- uid: 24739 - type: IntercomSecurity - components: - - rot: -1.5707963267948966 rad - pos: 15.5,38.5 - parent: 0 - type: Transform -- uid: 24740 - type: FirelockGlass - components: - - pos: 22.5,36.5 - parent: 0 - type: Transform -- uid: 24741 - type: FirelockGlass - components: - - pos: 24.5,38.5 - parent: 0 - type: Transform -- uid: 24742 - type: FirelockGlass - components: - - pos: 16.5,24.5 - parent: 0 - type: Transform -- uid: 24743 - type: FirelockGlass - components: - - pos: 47.5,32.5 - parent: 0 - type: Transform -- uid: 24744 - type: FirelockGlass - components: - - pos: 59.5,32.5 - parent: 0 - type: Transform -- uid: 24745 - type: FirelockGlass - components: - - pos: 17.5,-26.5 - parent: 0 - type: Transform -- uid: 24746 - type: FirelockGlass - components: - - pos: 37.5,-48.5 - parent: 0 - type: Transform -- uid: 24747 - type: FirelockGlass - components: - - pos: 36.5,-48.5 - parent: 0 - type: Transform -- uid: 24748 - type: FirelockGlass - components: - - pos: 16.5,-57.5 - parent: 0 - type: Transform -- uid: 24749 - type: FirelockGlass - components: - - pos: 2.5,-62.5 - parent: 0 - type: Transform -- uid: 24750 - type: FirelockGlass - components: - - pos: 2.5,-61.5 - parent: 0 - type: Transform -- uid: 24751 - type: FirelockGlass - components: - - pos: -40.5,-41.5 - parent: 0 - type: Transform -- uid: 24752 - type: FirelockGlass - components: - - pos: -40.5,-40.5 - parent: 0 - type: Transform -- uid: 24753 - type: FirelockGlass - components: - - pos: -52.5,-10.5 - parent: 0 - type: Transform -- uid: 24754 - type: FirelockGlass - components: - - pos: -35.5,-25.5 - parent: 0 - type: Transform -- uid: 24755 - type: FirelockGlass - components: - - pos: -36.5,-25.5 - parent: 0 - type: Transform -- uid: 24756 - type: ChairFoldingSpawnFolded - components: - - pos: 24.461979,30.611214 - parent: 0 - type: Transform -- uid: 24757 - type: ChairFoldingSpawnFolded - components: - - pos: 25.508854,30.626839 - parent: 0 - type: Transform -- uid: 24758 - type: GlowstickPurple - components: - - pos: 24.477604,35.673714 - parent: 0 - type: Transform -- uid: 24759 - type: GlowstickBase - components: - - pos: 24.633854,35.53309 - parent: 0 - type: Transform -- uid: 24760 - type: BlockGameArcade - components: - - rot: -1.5707963267948966 rad - pos: 25.5,32.5 - parent: 0 - type: Transform -- uid: 24761 - type: SpaceVillainArcadeFilled - components: - - rot: -1.5707963267948966 rad - pos: 25.5,31.5 - parent: 0 - type: Transform -- uid: 24762 - type: SpaceVillainArcadeFilled - components: - - rot: -1.5707963267948966 rad - pos: 25.5,33.5 - parent: 0 - type: Transform -- uid: 24763 - type: MaintenanceFluffSpawner - components: - - pos: 25.5,35.5 - parent: 0 - type: Transform -- uid: 24764 - type: WallSandstone - components: - - pos: 41.5,39.5 - parent: 0 - type: Transform -- uid: 24765 - type: WallSandstone - components: - - pos: 41.5,40.5 - parent: 0 - type: Transform -- uid: 24766 - type: WallSandstone - components: - - pos: 40.5,38.5 - parent: 0 - type: Transform -- uid: 24767 - type: WallSandstone - components: - - pos: 40.5,37.5 - parent: 0 - type: Transform -- uid: 24768 - type: WallSandstone - components: - - pos: 41.5,38.5 - parent: 0 - type: Transform -- uid: 24769 - type: WallVaultSandstone - components: - - pos: 40.5,36.5 - parent: 0 - type: Transform -- uid: 24770 - type: WallVaultSandstone - components: - - pos: 42.5,38.5 - parent: 0 - type: Transform -- uid: 24771 - type: WallVaultSandstone - components: - - pos: 40.5,41.5 - parent: 0 - type: Transform -- uid: 24772 - type: TableWood - components: - - pos: 41.5,37.5 - parent: 0 - type: Transform -- uid: 24773 - type: TableWood - components: - - pos: 42.5,37.5 - parent: 0 - type: Transform -- uid: 24774 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 42.5,36.5 - parent: 0 - type: Transform -- uid: 24775 - type: HydroponicsToolSpade - components: - - pos: 42.042435,37.355846 - parent: 0 - type: Transform - - nextAttack: 1342.3605519 - type: MeleeWeapon -- uid: 24776 - type: Lamp - components: - - pos: 41.602013,37.957184 - parent: 0 - type: Transform -- uid: 24777 - type: HatBandGold - components: - - pos: 42.602013,37.613434 - parent: 0 - type: Transform -- uid: 24778 - type: PoweredlightSodium - components: - - rot: 1.5707963267948966 rad - pos: 39.5,42.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24779 - type: PoweredlightSodium - components: - - rot: -1.5707963267948966 rad - pos: 43.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24780 - type: CratePrivateSecure - components: - - pos: 41.5,36.5 - parent: 0 - type: Transform - - locked: False - type: Lock - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 24781 - - 24782 - - 24783 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 24781 - type: ClothingUniformJumpskirtColorLightBrown - components: - - flags: InContainer - type: MetaData - - parent: 24780 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 24782 - type: ClothingUniformJumpsuitColorLightBrown - components: - - flags: InContainer - type: MetaData - - parent: 24780 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 24783 - type: IngotSilver - components: - - flags: InContainer - type: MetaData - - parent: 24780 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 24784 - type: ClockworkShield - components: - - pos: 41.477013,41.440697 - parent: 0 - type: Transform -- uid: 24785 - type: WallClock - components: - - pos: 42.5,41.5 - parent: 0 - type: Transform -- uid: 24786 - type: WallClock - components: - - pos: 42.5,40.5 - parent: 0 - type: Transform -- uid: 24787 - type: Barricade - components: - - pos: 40.5,35.5 - parent: 0 - type: Transform -- uid: 24788 - type: Barricade - components: - - pos: 41.5,35.5 - parent: 0 - type: Transform -- uid: 24789 - type: ClothingShoesBootsWork - components: - - pos: 43.50186,33.483242 - parent: 0 - type: Transform -- uid: 24790 - type: BodyBag_Container - components: - - pos: 41.49443,33.608242 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24791 - type: Cowbar - components: - - pos: 42.541306,39.350433 - parent: 0 - type: Transform -- uid: 24792 - type: PaintingMonkey - components: - - pos: 41.5,38.5 - parent: 0 - type: Transform -- uid: 24793 - type: MonkeyCube - components: - - pos: 42.943726,35.05897 - parent: 0 - type: Transform -- uid: 24794 - type: IntercomService - components: - - pos: 23.5,-11.5 - parent: 0 - type: Transform -- uid: 24795 - type: IntercomService - components: - - pos: 34.5,-8.5 - parent: 0 - type: Transform -- uid: 24796 - type: IntercomService - components: - - pos: 26.5,-14.5 - parent: 0 - type: Transform -- uid: 24797 - type: IntercomScience - components: - - pos: 8.5,-22.5 - parent: 0 - type: Transform -- uid: 24798 - type: IntercomSecurity - components: - - pos: -9.5,32.5 - parent: 0 - type: Transform -- uid: 24799 - type: IntercomCommand - components: - - pos: 7.5,49.5 - parent: 0 - type: Transform -- uid: 24800 - type: IntercomMedical - components: - - rot: 1.5707963267948966 rad - pos: -19.5,28.5 - parent: 0 - type: Transform -- uid: 24801 - type: IntercomService - components: - - pos: -25.5,29.5 - parent: 0 - type: Transform -- uid: 24802 - type: IntercomSupply - components: - - rot: 1.5707963267948966 rad - pos: -44.5,31.5 - parent: 0 - type: Transform -- uid: 24803 - type: IntercomCommand - components: - - rot: -1.5707963267948966 rad - pos: -27.5,15.5 - parent: 0 - type: Transform -- uid: 24804 - type: Intercom - components: - - pos: -24.5,-5.5 - parent: 0 - type: Transform -- uid: 24805 - type: Intercom - components: - - pos: 4.5,-17.5 - parent: 0 - type: Transform -- uid: 24806 - type: Intercom - components: - - pos: 24.5,5.5 - parent: 0 - type: Transform -- uid: 24807 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -16.5,18.5 - parent: 0 - type: Transform -- uid: 24808 - type: IntercomAll - components: - - rot: 3.141592653589793 rad - pos: 12.5,1.5 - parent: 0 - type: Transform -- uid: 24809 - type: IntercomAll - components: - - rot: 3.141592653589793 rad - pos: 7.5,-15.5 - parent: 0 - type: Transform -- uid: 24810 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-41.5 - parent: 0 - type: Transform -- uid: 24811 - type: IntercomScience - components: - - rot: 3.141592653589793 rad - pos: 16.5,-39.5 - parent: 0 - type: Transform -- uid: 24812 - type: TableWood - components: - - pos: 25.5,-37.5 - parent: 0 - type: Transform -- uid: 24813 - type: Dresser - components: - - pos: 25.5,-38.5 - parent: 0 - type: Transform -- uid: 24814 - type: IntercomScience - components: - - pos: 23.5,-40.5 - parent: 0 - type: Transform -- uid: 24815 - type: CarpetPurple - components: - - pos: 24.5,-38.5 - parent: 0 - type: Transform -- uid: 24816 - type: CarpetPurple - components: - - pos: 24.5,-39.5 - parent: 0 - type: Transform -- uid: 24817 - type: IntercomCommand - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-35.5 - parent: 0 - type: Transform -- uid: 24818 - type: CarpetPurple - components: - - pos: 25.5,-39.5 - parent: 0 - type: Transform -- uid: 24819 - type: CarpetPurple - components: - - pos: 25.5,-38.5 - parent: 0 - type: Transform -- uid: 24820 - type: ComfyChair - components: - - pos: 23.5,-38.5 - parent: 0 - type: Transform -- uid: 24821 - type: LampGold - components: - - pos: 25.542782,-37.18416 - parent: 0 - type: Transform -- uid: 24822 - type: IntercomScience - components: - - pos: 25.5,-53.5 - parent: 0 - type: Transform -- uid: 24823 - type: Intercom - components: - - pos: -4.5,-60.5 - parent: 0 - type: Transform -- uid: 24824 - type: IntercomCommand - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-36.5 - parent: 0 - type: Transform -- uid: 24839 - type: Catwalk - components: - - pos: 74.5,0.5 - parent: 0 - type: Transform -- uid: 24840 - type: Catwalk - components: - - pos: 75.5,0.5 - parent: 0 - type: Transform -- uid: 24841 - type: Catwalk - components: - - pos: 76.5,0.5 - parent: 0 - type: Transform -- uid: 24842 - type: Catwalk - components: - - pos: 77.5,0.5 - parent: 0 - type: Transform -- uid: 24843 - type: Catwalk - components: - - pos: 78.5,0.5 - parent: 0 - type: Transform -- uid: 24844 - type: Catwalk - components: - - pos: 79.5,0.5 - parent: 0 - type: Transform -- uid: 24845 - type: Catwalk - components: - - pos: 80.5,0.5 - parent: 0 - type: Transform -- uid: 24846 - type: Catwalk - components: - - pos: 81.5,0.5 - parent: 0 - type: Transform -- uid: 24847 - type: Catwalk - components: - - pos: 82.5,0.5 - parent: 0 - type: Transform -- uid: 24848 - type: Catwalk - components: - - pos: 83.5,0.5 - parent: 0 - type: Transform -- uid: 24849 - type: Catwalk - components: - - pos: 84.5,0.5 - parent: 0 - type: Transform -- uid: 24850 - type: Catwalk - components: - - pos: 85.5,0.5 - parent: 0 - type: Transform -- uid: 24851 - type: Catwalk - components: - - pos: 86.5,0.5 - parent: 0 - type: Transform -- uid: 24852 - type: Catwalk - components: - - pos: 87.5,0.5 - parent: 0 - type: Transform -- uid: 24853 - type: Catwalk - components: - - pos: 88.5,0.5 - parent: 0 - type: Transform -- uid: 24854 - type: Catwalk - components: - - pos: 89.5,0.5 - parent: 0 - type: Transform -- uid: 24855 - type: Catwalk - components: - - pos: 90.5,0.5 - parent: 0 - type: Transform -- uid: 24856 - type: DisposalUnit - components: - - pos: 62.5,1.5 - parent: 0 - type: Transform -- uid: 24857 - type: DisposalTrunk - components: - - pos: 62.5,1.5 - parent: 0 - type: Transform -- uid: 24858 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 62.5,0.5 - parent: 0 - type: Transform -- uid: 24859 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 63.5,0.5 - parent: 0 - type: Transform -- uid: 24860 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 64.5,0.5 - parent: 0 - type: Transform -- uid: 24861 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 65.5,0.5 - parent: 0 - type: Transform -- uid: 24862 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 66.5,0.5 - parent: 0 - type: Transform -- uid: 24863 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 67.5,0.5 - parent: 0 - type: Transform -- uid: 24864 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 68.5,0.5 - parent: 0 - type: Transform -- uid: 24865 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 69.5,0.5 - parent: 0 - type: Transform -- uid: 24866 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 70.5,0.5 - parent: 0 - type: Transform -- uid: 24867 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 71.5,0.5 - parent: 0 - type: Transform -- uid: 24868 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 72.5,0.5 - parent: 0 - type: Transform -- uid: 24869 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 73.5,0.5 - parent: 0 - type: Transform -- uid: 24870 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 74.5,0.5 - parent: 0 - type: Transform -- uid: 24871 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 75.5,0.5 - parent: 0 - type: Transform -- uid: 24872 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 76.5,0.5 - parent: 0 - type: Transform -- uid: 24873 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 77.5,0.5 - parent: 0 - type: Transform -- uid: 24874 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 78.5,0.5 - parent: 0 - type: Transform -- uid: 24875 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 79.5,0.5 - parent: 0 - type: Transform -- uid: 24876 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 80.5,0.5 - parent: 0 - type: Transform -- uid: 24877 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 81.5,0.5 - parent: 0 - type: Transform -- uid: 24878 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 82.5,0.5 - parent: 0 - type: Transform -- uid: 24879 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 83.5,0.5 - parent: 0 - type: Transform -- uid: 24880 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 84.5,0.5 - parent: 0 - type: Transform -- uid: 24881 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 85.5,0.5 - parent: 0 - type: Transform -- uid: 24882 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 86.5,0.5 - parent: 0 - type: Transform -- uid: 24883 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 87.5,0.5 - parent: 0 - type: Transform -- uid: 24884 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 88.5,0.5 - parent: 0 - type: Transform -- uid: 24885 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 89.5,0.5 - parent: 0 - type: Transform -- uid: 24886 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 90.5,0.5 - parent: 0 - type: Transform -- uid: 24887 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 91.5,0.5 - parent: 0 - type: Transform -- uid: 24888 - type: DisposalUnit - components: - - pos: 91.5,0.5 - parent: 0 - type: Transform -- uid: 24889 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 24890 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 61.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 24891 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 24892 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24893 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 64.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24894 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24895 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 66.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24896 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24897 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24898 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 69.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24899 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 70.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24900 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 71.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24901 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 72.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24902 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 73.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24903 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 74.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24904 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 75.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24905 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 76.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24906 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 77.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24907 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 78.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24908 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 79.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24909 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 80.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24910 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 81.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24911 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 82.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24912 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 83.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24913 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 84.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24914 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 85.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24915 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 86.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24916 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 87.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24917 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 88.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24918 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 89.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24919 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 90.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24920 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 91.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 24921 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: 92.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 24922 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 108.5,22.5 - parent: 0 - type: Transform -- uid: 24923 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 107.5,22.5 - parent: 0 - type: Transform -- uid: 24924 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 106.5,22.5 - parent: 0 - type: Transform -- uid: 24925 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 105.5,22.5 - parent: 0 - type: Transform -- uid: 24926 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 104.5,22.5 - parent: 0 - type: Transform -- uid: 24927 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 103.5,22.5 - parent: 0 - type: Transform -- uid: 24928 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 102.5,22.5 - parent: 0 - type: Transform -- uid: 24929 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 101.5,22.5 - parent: 0 - type: Transform -- uid: 24930 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 100.5,22.5 - parent: 0 - type: Transform -- uid: 24931 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 100.5,21.5 - parent: 0 - type: Transform -- uid: 24932 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 100.5,20.5 - parent: 0 - type: Transform -- uid: 24933 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 99.5,20.5 - parent: 0 - type: Transform -- uid: 24934 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 98.5,20.5 - parent: 0 - type: Transform -- uid: 24935 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 97.5,20.5 - parent: 0 - type: Transform -- uid: 24936 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 96.5,20.5 - parent: 0 - type: Transform -- uid: 24937 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 95.5,20.5 - parent: 0 - type: Transform -- uid: 24938 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,20.5 - parent: 0 - type: Transform -- uid: 24939 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,18.5 - parent: 0 - type: Transform -- uid: 24940 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,17.5 - parent: 0 - type: Transform -- uid: 24941 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,16.5 - parent: 0 - type: Transform -- uid: 24942 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,15.5 - parent: 0 - type: Transform -- uid: 24943 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,14.5 - parent: 0 - type: Transform -- uid: 24944 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 93.5,14.5 - parent: 0 - type: Transform -- uid: 24945 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 93.5,13.5 - parent: 0 - type: Transform -- uid: 24946 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 93.5,12.5 - parent: 0 - type: Transform -- uid: 24947 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 93.5,11.5 - parent: 0 - type: Transform -- uid: 24948 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 93.5,10.5 - parent: 0 - type: Transform -- uid: 24949 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,19.5 - parent: 0 - type: Transform -- uid: 24950 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 108.5,21.5 - parent: 0 - type: Transform -- uid: 24951 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 108.5,20.5 - parent: 0 - type: Transform -- uid: 24952 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 109.5,20.5 - parent: 0 - type: Transform -- uid: 24953 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 110.5,20.5 - parent: 0 - type: Transform -- uid: 24954 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 111.5,20.5 - parent: 0 - type: Transform -- uid: 24955 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 112.5,20.5 - parent: 0 - type: Transform -- uid: 24956 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 113.5,20.5 - parent: 0 - type: Transform -- uid: 24957 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,20.5 - parent: 0 - type: Transform -- uid: 24958 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,18.5 - parent: 0 - type: Transform -- uid: 24959 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,17.5 - parent: 0 - type: Transform -- uid: 24960 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,16.5 - parent: 0 - type: Transform -- uid: 24961 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,15.5 - parent: 0 - type: Transform -- uid: 24962 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,14.5 - parent: 0 - type: Transform -- uid: 24963 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-19.5 - parent: 0 - type: Transform -- uid: 24964 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 117.5,8.5 - parent: 0 - type: Transform -- uid: 24965 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 117.5,7.5 - parent: 0 - type: Transform -- uid: 24966 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 117.5,6.5 - parent: 0 - type: Transform -- uid: 24967 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 117.5,5.5 - parent: 0 - type: Transform -- uid: 24968 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 117.5,4.5 - parent: 0 - type: Transform -- uid: 24969 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 117.5,3.5 - parent: 0 - type: Transform -- uid: 24970 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 117.5,2.5 - parent: 0 - type: Transform -- uid: 24971 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 117.5,1.5 - parent: 0 - type: Transform -- uid: 24972 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 117.5,0.5 - parent: 0 - type: Transform -- uid: 24973 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 117.5,-0.5 - parent: 0 - type: Transform -- uid: 24974 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 117.5,-1.5 - parent: 0 - type: Transform -- uid: 24975 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 117.5,-2.5 - parent: 0 - type: Transform -- uid: 24976 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 117.5,-3.5 - parent: 0 - type: Transform -- uid: 24977 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 117.5,-4.5 - parent: 0 - type: Transform -- uid: 24978 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 117.5,-5.5 - parent: 0 - type: Transform -- uid: 24979 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 117.5,-6.5 - parent: 0 - type: Transform -- uid: 24980 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 115.5,14.5 - parent: 0 - type: Transform -- uid: 24981 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 115.5,13.5 - parent: 0 - type: Transform -- uid: 24982 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 115.5,12.5 - parent: 0 - type: Transform -- uid: 24983 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 115.5,11.5 - parent: 0 - type: Transform -- uid: 24984 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 115.5,10.5 - parent: 0 - type: Transform -- uid: 24985 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 115.5,9.5 - parent: 0 - type: Transform -- uid: 24986 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 115.5,8.5 - parent: 0 - type: Transform -- uid: 24987 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 116.5,8.5 - parent: 0 - type: Transform -- uid: 24988 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 116.5,-6.5 - parent: 0 - type: Transform -- uid: 24989 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 115.5,-6.5 - parent: 0 - type: Transform -- uid: 24990 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-6.5 - parent: 0 - type: Transform -- uid: 24991 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-7.5 - parent: 0 - type: Transform -- uid: 24992 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-8.5 - parent: 0 - type: Transform -- uid: 24993 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-9.5 - parent: 0 - type: Transform -- uid: 24994 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-10.5 - parent: 0 - type: Transform -- uid: 24995 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-11.5 - parent: 0 - type: Transform -- uid: 24996 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-12.5 - parent: 0 - type: Transform -- uid: 24997 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-13.5 - parent: 0 - type: Transform -- uid: 24998 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-14.5 - parent: 0 - type: Transform -- uid: 24999 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-15.5 - parent: 0 - type: Transform -- uid: 25000 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-16.5 - parent: 0 - type: Transform -- uid: 25001 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-17.5 - parent: 0 - type: Transform -- uid: 25002 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-18.5 - parent: 0 - type: Transform -- uid: 25003 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-19.5 - parent: 0 - type: Transform -- uid: 25004 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-20.5 - parent: 0 - type: Transform -- uid: 25005 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 113.5,-20.5 - parent: 0 - type: Transform -- uid: 25006 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-20.5 - parent: 0 - type: Transform -- uid: 25007 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 111.5,-20.5 - parent: 0 - type: Transform -- uid: 25008 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 110.5,-20.5 - parent: 0 - type: Transform -- uid: 25009 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 109.5,-20.5 - parent: 0 - type: Transform -- uid: 25010 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 108.5,-20.5 - parent: 0 - type: Transform -- uid: 25011 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 108.5,-21.5 - parent: 0 - type: Transform -- uid: 25012 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 108.5,-22.5 - parent: 0 - type: Transform -- uid: 25013 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 107.5,-22.5 - parent: 0 - type: Transform -- uid: 25014 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 106.5,-22.5 - parent: 0 - type: Transform -- uid: 25015 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 105.5,-22.5 - parent: 0 - type: Transform -- uid: 25016 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 104.5,-22.5 - parent: 0 - type: Transform -- uid: 25017 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 103.5,-22.5 - parent: 0 - type: Transform -- uid: 25018 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 102.5,-22.5 - parent: 0 - type: Transform -- uid: 25019 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 101.5,-22.5 - parent: 0 - type: Transform -- uid: 25020 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 100.5,-22.5 - parent: 0 - type: Transform -- uid: 25021 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 100.5,-21.5 - parent: 0 - type: Transform -- uid: 25022 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 100.5,-20.5 - parent: 0 - type: Transform -- uid: 25023 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 99.5,-20.5 - parent: 0 - type: Transform -- uid: 25024 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 98.5,-20.5 - parent: 0 - type: Transform -- uid: 25025 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 97.5,-20.5 - parent: 0 - type: Transform -- uid: 25026 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-20.5 - parent: 0 - type: Transform -- uid: 25027 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-20.5 - parent: 0 - type: Transform -- uid: 25028 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-20.5 - parent: 0 - type: Transform -- uid: 25029 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-18.5 - parent: 0 - type: Transform -- uid: 25030 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-17.5 - parent: 0 - type: Transform -- uid: 25031 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-16.5 - parent: 0 - type: Transform -- uid: 25032 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-15.5 - parent: 0 - type: Transform -- uid: 25033 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-14.5 - parent: 0 - type: Transform -- uid: 25034 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-13.5 - parent: 0 - type: Transform -- uid: 25035 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-12.5 - parent: 0 - type: Transform -- uid: 25036 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-11.5 - parent: 0 - type: Transform -- uid: 25037 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-10.5 - parent: 0 - type: Transform -- uid: 25038 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-9.5 - parent: 0 - type: Transform -- uid: 25039 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-8.5 - parent: 0 - type: Transform -- uid: 25040 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-7.5 - parent: 0 - type: Transform -- uid: 25041 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-6.5 - parent: 0 - type: Transform -- uid: 25042 - type: WindowReinforcedDirectional - components: - - pos: 96.5,19.5 - parent: 0 - type: Transform -- uid: 25043 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 93.5,-6.5 - parent: 0 - type: Transform -- uid: 25044 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 92.5,-6.5 - parent: 0 - type: Transform -- uid: 25045 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 92.5,-5.5 - parent: 0 - type: Transform -- uid: 25046 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 92.5,-4.5 - parent: 0 - type: Transform -- uid: 25047 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 92.5,-3.5 - parent: 0 - type: Transform -- uid: 25048 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 92.5,-2.5 - parent: 0 - type: Transform -- uid: 25049 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 92.5,6.5 - parent: 0 - type: Transform -- uid: 25050 - type: AirlockExternalGlassLocked - components: - - pos: 90.5,4.5 - parent: 0 - type: Transform -- uid: 25051 - type: AirlockExternalGlassLocked - components: - - pos: 90.5,5.5 - parent: 0 - type: Transform -- uid: 25052 - type: Catwalk - components: - - pos: 89.5,4.5 - parent: 0 - type: Transform -- uid: 25053 - type: Catwalk - components: - - pos: 89.5,5.5 - parent: 0 - type: Transform -- uid: 25054 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: 93.5,4.5 - parent: 0 - type: Transform -- uid: 25055 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: 93.5,5.5 - parent: 0 - type: Transform -- uid: 25056 - type: WindowReinforcedDirectional - components: - - pos: 91.5,6.5 - parent: 0 - type: Transform -- uid: 25057 - type: WindowReinforcedDirectional - components: - - pos: 90.5,6.5 - parent: 0 - type: Transform -- uid: 25058 - type: WindowReinforcedDirectional - components: - - pos: 93.5,6.5 - parent: 0 - type: Transform -- uid: 25059 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 93.5,3.5 - parent: 0 - type: Transform -- uid: 25060 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 91.5,3.5 - parent: 0 - type: Transform -- uid: 25061 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 90.5,3.5 - parent: 0 - type: Transform -- uid: 25062 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 93.5,3.5 - parent: 0 - type: Transform -- uid: 25063 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 93.5,2.5 - parent: 0 - type: Transform -- uid: 25064 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 95.5,2.5 - parent: 0 - type: Transform -- uid: 25065 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 95.5,3.5 - parent: 0 - type: Transform -- uid: 25066 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 95.5,4.5 - parent: 0 - type: Transform -- uid: 25067 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 95.5,5.5 - parent: 0 - type: Transform -- uid: 25068 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 95.5,5.5 - parent: 0 - type: Transform -- uid: 25069 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 93.5,6.5 - parent: 0 - type: Transform -- uid: 25070 - type: WindowReinforcedDirectional - components: - - pos: 94.5,7.5 - parent: 0 - type: Transform -- uid: 25071 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,6.5 - parent: 0 - type: Transform -- uid: 25072 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,7.5 - parent: 0 - type: Transform -- uid: 25073 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,8.5 - parent: 0 - type: Transform -- uid: 25074 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,9.5 - parent: 0 - type: Transform -- uid: 25075 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,10.5 - parent: 0 - type: Transform -- uid: 25076 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,11.5 - parent: 0 - type: Transform -- uid: 25077 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,12.5 - parent: 0 - type: Transform -- uid: 25078 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 94.5,7.5 - parent: 0 - type: Transform -- uid: 25079 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 94.5,8.5 - parent: 0 - type: Transform -- uid: 25080 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 94.5,9.5 - parent: 0 - type: Transform -- uid: 25081 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 94.5,10.5 - parent: 0 - type: Transform -- uid: 25082 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 94.5,11.5 - parent: 0 - type: Transform -- uid: 25083 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 94.5,12.5 - parent: 0 - type: Transform -- uid: 25084 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 94.5,13.5 - parent: 0 - type: Transform -- uid: 25085 - type: WindowReinforcedDirectional - components: - - pos: 95.5,14.5 - parent: 0 - type: Transform -- uid: 25086 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 96.5,12.5 - parent: 0 - type: Transform -- uid: 25087 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,13.5 - parent: 0 - type: Transform -- uid: 25088 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,14.5 - parent: 0 - type: Transform -- uid: 25089 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,15.5 - parent: 0 - type: Transform -- uid: 25090 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,16.5 - parent: 0 - type: Transform -- uid: 25091 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,17.5 - parent: 0 - type: Transform -- uid: 25092 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,14.5 - parent: 0 - type: Transform -- uid: 25093 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,15.5 - parent: 0 - type: Transform -- uid: 25094 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,16.5 - parent: 0 - type: Transform -- uid: 25095 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,17.5 - parent: 0 - type: Transform -- uid: 25096 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,18.5 - parent: 0 - type: Transform -- uid: 25097 - type: WindowReinforcedDirectional - components: - - pos: 97.5,19.5 - parent: 0 - type: Transform -- uid: 25098 - type: WindowReinforcedDirectional - components: - - pos: 98.5,19.5 - parent: 0 - type: Transform -- uid: 25099 - type: WindowReinforcedDirectional - components: - - pos: 99.5,19.5 - parent: 0 - type: Transform -- uid: 25100 - type: WindowReinforcedDirectional - components: - - pos: 100.5,19.5 - parent: 0 - type: Transform -- uid: 25101 - type: WindowReinforcedDirectional - components: - - pos: 101.5,19.5 - parent: 0 - type: Transform -- uid: 25102 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 101.5,19.5 - parent: 0 - type: Transform -- uid: 25103 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 101.5,20.5 - parent: 0 - type: Transform -- uid: 25104 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,18.5 - parent: 0 - type: Transform -- uid: 25105 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 97.5,17.5 - parent: 0 - type: Transform -- uid: 25106 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 98.5,17.5 - parent: 0 - type: Transform -- uid: 25107 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 99.5,17.5 - parent: 0 - type: Transform -- uid: 25108 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 100.5,17.5 - parent: 0 - type: Transform -- uid: 25109 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 101.5,17.5 - parent: 0 - type: Transform -- uid: 25110 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 102.5,17.5 - parent: 0 - type: Transform -- uid: 25111 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 103.5,17.5 - parent: 0 - type: Transform -- uid: 25112 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 104.5,17.5 - parent: 0 - type: Transform -- uid: 25113 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 105.5,17.5 - parent: 0 - type: Transform -- uid: 25114 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 106.5,17.5 - parent: 0 - type: Transform -- uid: 25115 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 107.5,17.5 - parent: 0 - type: Transform -- uid: 25116 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 108.5,17.5 - parent: 0 - type: Transform -- uid: 25117 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 109.5,17.5 - parent: 0 - type: Transform -- uid: 25118 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 110.5,17.5 - parent: 0 - type: Transform -- uid: 25119 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 111.5,17.5 - parent: 0 - type: Transform -- uid: 25120 - type: WindowReinforcedDirectional - components: - - pos: 102.5,21.5 - parent: 0 - type: Transform -- uid: 25121 - type: WindowReinforcedDirectional - components: - - pos: 103.5,21.5 - parent: 0 - type: Transform -- uid: 25122 - type: WindowReinforcedDirectional - components: - - pos: 104.5,21.5 - parent: 0 - type: Transform -- uid: 25123 - type: WindowReinforcedDirectional - components: - - pos: 105.5,21.5 - parent: 0 - type: Transform -- uid: 25124 - type: WindowReinforcedDirectional - components: - - pos: 106.5,21.5 - parent: 0 - type: Transform -- uid: 25125 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 107.5,20.5 - parent: 0 - type: Transform -- uid: 25126 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 107.5,19.5 - parent: 0 - type: Transform -- uid: 25127 - type: WindowReinforcedDirectional - components: - - pos: 107.5,19.5 - parent: 0 - type: Transform -- uid: 25128 - type: WindowReinforcedDirectional - components: - - pos: 108.5,19.5 - parent: 0 - type: Transform -- uid: 25129 - type: WindowReinforcedDirectional - components: - - pos: 109.5,19.5 - parent: 0 - type: Transform -- uid: 25130 - type: WindowReinforcedDirectional - components: - - pos: 110.5,19.5 - parent: 0 - type: Transform -- uid: 25131 - type: WindowReinforcedDirectional - components: - - pos: 111.5,19.5 - parent: 0 - type: Transform -- uid: 25132 - type: WindowReinforcedDirectional - components: - - pos: 112.5,19.5 - parent: 0 - type: Transform -- uid: 25133 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,17.5 - parent: 0 - type: Transform -- uid: 25134 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,16.5 - parent: 0 - type: Transform -- uid: 25135 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,15.5 - parent: 0 - type: Transform -- uid: 25136 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,14.5 - parent: 0 - type: Transform -- uid: 25137 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,17.5 - parent: 0 - type: Transform -- uid: 25138 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,16.5 - parent: 0 - type: Transform -- uid: 25139 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,15.5 - parent: 0 - type: Transform -- uid: 25140 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,14.5 - parent: 0 - type: Transform -- uid: 25141 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,13.5 - parent: 0 - type: Transform -- uid: 25142 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-17.5 - parent: 0 - type: Transform -- uid: 25143 - type: WindowReinforcedDirectional - components: - - pos: 113.5,14.5 - parent: 0 - type: Transform -- uid: 25144 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 112.5,12.5 - parent: 0 - type: Transform -- uid: 25145 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 114.5,13.5 - parent: 0 - type: Transform -- uid: 25146 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 114.5,12.5 - parent: 0 - type: Transform -- uid: 25147 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 114.5,11.5 - parent: 0 - type: Transform -- uid: 25148 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 114.5,10.5 - parent: 0 - type: Transform -- uid: 25149 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 114.5,9.5 - parent: 0 - type: Transform -- uid: 25150 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 114.5,8.5 - parent: 0 - type: Transform -- uid: 25151 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 114.5,7.5 - parent: 0 - type: Transform -- uid: 25152 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,6.5 - parent: 0 - type: Transform -- uid: 25153 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,7.5 - parent: 0 - type: Transform -- uid: 25154 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,8.5 - parent: 0 - type: Transform -- uid: 25155 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,9.5 - parent: 0 - type: Transform -- uid: 25156 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,10.5 - parent: 0 - type: Transform -- uid: 25157 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,11.5 - parent: 0 - type: Transform -- uid: 25158 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,12.5 - parent: 0 - type: Transform -- uid: 25159 - type: WindowReinforcedDirectional - components: - - pos: 114.5,7.5 - parent: 0 - type: Transform -- uid: 25160 - type: WindowReinforcedDirectional - components: - - pos: 115.5,7.5 - parent: 0 - type: Transform -- uid: 25161 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 113.5,5.5 - parent: 0 - type: Transform -- uid: 25162 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 114.5,5.5 - parent: 0 - type: Transform -- uid: 25163 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 116.5,6.5 - parent: 0 - type: Transform -- uid: 25164 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 116.5,5.5 - parent: 0 - type: Transform -- uid: 25165 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 116.5,4.5 - parent: 0 - type: Transform -- uid: 25166 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 116.5,3.5 - parent: 0 - type: Transform -- uid: 25167 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 116.5,2.5 - parent: 0 - type: Transform -- uid: 25168 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 116.5,1.5 - parent: 0 - type: Transform -- uid: 25169 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 116.5,0.5 - parent: 0 - type: Transform -- uid: 25170 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 116.5,-0.5 - parent: 0 - type: Transform -- uid: 25171 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 116.5,-1.5 - parent: 0 - type: Transform -- uid: 25172 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 116.5,-2.5 - parent: 0 - type: Transform -- uid: 25173 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 116.5,-3.5 - parent: 0 - type: Transform -- uid: 25174 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 116.5,-4.5 - parent: 0 - type: Transform -- uid: 25175 - type: WindowReinforcedDirectional - components: - - pos: 113.5,1.5 - parent: 0 - type: Transform -- uid: 25176 - type: WindowReinforcedDirectional - components: - - pos: 114.5,1.5 - parent: 0 - type: Transform -- uid: 25177 - type: WindowReinforcedDirectional - components: - - pos: 112.5,-3.5 - parent: 0 - type: Transform -- uid: 25178 - type: WindowReinforcedDirectional - components: - - pos: 113.5,-3.5 - parent: 0 - type: Transform -- uid: 25179 - type: WindowReinforcedDirectional - components: - - pos: 114.5,-3.5 - parent: 0 - type: Transform -- uid: 25180 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-3.5 - parent: 0 - type: Transform -- uid: 25181 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-2.5 - parent: 0 - type: Transform -- uid: 25182 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-1.5 - parent: 0 - type: Transform -- uid: 25183 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-0.5 - parent: 0 - type: Transform -- uid: 25184 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 114.5,-0.5 - parent: 0 - type: Transform -- uid: 25185 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 113.5,-0.5 - parent: 0 - type: Transform -- uid: 25186 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 114.5,1.5 - parent: 0 - type: Transform -- uid: 25187 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 114.5,2.5 - parent: 0 - type: Transform -- uid: 25188 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 114.5,3.5 - parent: 0 - type: Transform -- uid: 25189 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 114.5,4.5 - parent: 0 - type: Transform -- uid: 25190 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 114.5,5.5 - parent: 0 - type: Transform -- uid: 25191 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,-4.5 - parent: 0 - type: Transform -- uid: 25192 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,-5.5 - parent: 0 - type: Transform -- uid: 25193 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,-6.5 - parent: 0 - type: Transform -- uid: 25194 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,-7.5 - parent: 0 - type: Transform -- uid: 25195 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,-8.5 - parent: 0 - type: Transform -- uid: 25196 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,-9.5 - parent: 0 - type: Transform -- uid: 25197 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,-10.5 - parent: 0 - type: Transform -- uid: 25198 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,-11.5 - parent: 0 - type: Transform -- uid: 25199 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,-12.5 - parent: 0 - type: Transform -- uid: 25200 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,-13.5 - parent: 0 - type: Transform -- uid: 25201 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,-14.5 - parent: 0 - type: Transform -- uid: 25202 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,-15.5 - parent: 0 - type: Transform -- uid: 25203 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,-16.5 - parent: 0 - type: Transform -- uid: 25204 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 111.5,-17.5 - parent: 0 - type: Transform -- uid: 25205 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 115.5,-5.5 - parent: 0 - type: Transform -- uid: 25206 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 114.5,-5.5 - parent: 0 - type: Transform -- uid: 25207 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 113.5,-5.5 - parent: 0 - type: Transform -- uid: 25208 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-5.5 - parent: 0 - type: Transform -- uid: 25209 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-6.5 - parent: 0 - type: Transform -- uid: 25210 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-7.5 - parent: 0 - type: Transform -- uid: 25211 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-8.5 - parent: 0 - type: Transform -- uid: 25212 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-9.5 - parent: 0 - type: Transform -- uid: 25213 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-10.5 - parent: 0 - type: Transform -- uid: 25214 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-11.5 - parent: 0 - type: Transform -- uid: 25215 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-12.5 - parent: 0 - type: Transform -- uid: 25216 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-13.5 - parent: 0 - type: Transform -- uid: 25217 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-14.5 - parent: 0 - type: Transform -- uid: 25218 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-15.5 - parent: 0 - type: Transform -- uid: 25219 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-16.5 - parent: 0 - type: Transform -- uid: 25220 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-17.5 - parent: 0 - type: Transform -- uid: 25221 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-18.5 - parent: 0 - type: Transform -- uid: 25222 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 112.5,-19.5 - parent: 0 - type: Transform -- uid: 25223 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 111.5,-19.5 - parent: 0 - type: Transform -- uid: 25224 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 110.5,-19.5 - parent: 0 - type: Transform -- uid: 25225 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 109.5,-19.5 - parent: 0 - type: Transform -- uid: 25226 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 108.5,-19.5 - parent: 0 - type: Transform -- uid: 25227 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 107.5,-19.5 - parent: 0 - type: Transform -- uid: 25228 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 107.5,-19.5 - parent: 0 - type: Transform -- uid: 25229 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 107.5,-20.5 - parent: 0 - type: Transform -- uid: 25230 - type: WindowReinforcedDirectional - components: - - pos: 111.5,-17.5 - parent: 0 - type: Transform -- uid: 25231 - type: WindowReinforcedDirectional - components: - - pos: 110.5,-17.5 - parent: 0 - type: Transform -- uid: 25232 - type: WindowReinforcedDirectional - components: - - pos: 109.5,-17.5 - parent: 0 - type: Transform -- uid: 25233 - type: WindowReinforcedDirectional - components: - - pos: 108.5,-17.5 - parent: 0 - type: Transform -- uid: 25234 - type: WindowReinforcedDirectional - components: - - pos: 107.5,-17.5 - parent: 0 - type: Transform -- uid: 25235 - type: WindowReinforcedDirectional - components: - - pos: 106.5,-17.5 - parent: 0 - type: Transform -- uid: 25236 - type: WindowReinforcedDirectional - components: - - pos: 105.5,-17.5 - parent: 0 - type: Transform -- uid: 25237 - type: WindowReinforcedDirectional - components: - - pos: 104.5,-17.5 - parent: 0 - type: Transform -- uid: 25238 - type: WindowReinforcedDirectional - components: - - pos: 103.5,-17.5 - parent: 0 - type: Transform -- uid: 25239 - type: WindowReinforcedDirectional - components: - - pos: 102.5,-17.5 - parent: 0 - type: Transform -- uid: 25240 - type: WindowReinforcedDirectional - components: - - pos: 101.5,-17.5 - parent: 0 - type: Transform -- uid: 25241 - type: WindowReinforcedDirectional - components: - - pos: 100.5,-17.5 - parent: 0 - type: Transform -- uid: 25242 - type: WindowReinforcedDirectional - components: - - pos: 99.5,-17.5 - parent: 0 - type: Transform -- uid: 25243 - type: WindowReinforcedDirectional - components: - - pos: 98.5,-17.5 - parent: 0 - type: Transform -- uid: 25244 - type: WindowReinforcedDirectional - components: - - pos: 97.5,-17.5 - parent: 0 - type: Transform -- uid: 25245 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-16.5 - parent: 0 - type: Transform -- uid: 25246 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-15.5 - parent: 0 - type: Transform -- uid: 25247 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-14.5 - parent: 0 - type: Transform -- uid: 25248 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-13.5 - parent: 0 - type: Transform -- uid: 25249 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-12.5 - parent: 0 - type: Transform -- uid: 25250 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-11.5 - parent: 0 - type: Transform -- uid: 25251 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-10.5 - parent: 0 - type: Transform -- uid: 25252 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-9.5 - parent: 0 - type: Transform -- uid: 25253 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-8.5 - parent: 0 - type: Transform -- uid: 25254 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-7.5 - parent: 0 - type: Transform -- uid: 25255 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-6.5 - parent: 0 - type: Transform -- uid: 25256 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-5.5 - parent: 0 - type: Transform -- uid: 25257 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,18.5 - parent: 0 - type: Transform -- uid: 25258 - type: WindowReinforcedDirectional - components: - - pos: 97.5,-3.5 - parent: 0 - type: Transform -- uid: 25259 - type: WindowReinforcedDirectional - components: - - pos: 96.5,-3.5 - parent: 0 - type: Transform -- uid: 25260 - type: WindowReinforcedDirectional - components: - - pos: 95.5,-3.5 - parent: 0 - type: Transform -- uid: 25261 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 95.5,-3.5 - parent: 0 - type: Transform -- uid: 25262 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 95.5,-2.5 - parent: 0 - type: Transform -- uid: 25263 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 95.5,-1.5 - parent: 0 - type: Transform -- uid: 25264 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 97.5,-5.5 - parent: 0 - type: Transform -- uid: 25265 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 93.5,-1.5 - parent: 0 - type: Transform -- uid: 25266 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 93.5,-2.5 - parent: 0 - type: Transform -- uid: 25267 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 93.5,-3.5 - parent: 0 - type: Transform -- uid: 25268 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 93.5,-4.5 - parent: 0 - type: Transform -- uid: 25269 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 94.5,-5.5 - parent: 0 - type: Transform -- uid: 25270 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 95.5,-5.5 - parent: 0 - type: Transform -- uid: 25271 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-5.5 - parent: 0 - type: Transform -- uid: 25272 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-6.5 - parent: 0 - type: Transform -- uid: 25273 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-7.5 - parent: 0 - type: Transform -- uid: 25274 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-8.5 - parent: 0 - type: Transform -- uid: 25275 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-9.5 - parent: 0 - type: Transform -- uid: 25276 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-10.5 - parent: 0 - type: Transform -- uid: 25277 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-11.5 - parent: 0 - type: Transform -- uid: 25278 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-12.5 - parent: 0 - type: Transform -- uid: 25279 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-13.5 - parent: 0 - type: Transform -- uid: 25280 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-14.5 - parent: 0 - type: Transform -- uid: 25281 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-15.5 - parent: 0 - type: Transform -- uid: 25282 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-16.5 - parent: 0 - type: Transform -- uid: 25283 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-17.5 - parent: 0 - type: Transform -- uid: 25284 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-18.5 - parent: 0 - type: Transform -- uid: 25285 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 96.5,-19.5 - parent: 0 - type: Transform -- uid: 25286 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 97.5,-19.5 - parent: 0 - type: Transform -- uid: 25287 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 98.5,-19.5 - parent: 0 - type: Transform -- uid: 25288 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 99.5,-19.5 - parent: 0 - type: Transform -- uid: 25289 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 100.5,-19.5 - parent: 0 - type: Transform -- uid: 25290 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 101.5,-19.5 - parent: 0 - type: Transform -- uid: 25291 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 106.5,-21.5 - parent: 0 - type: Transform -- uid: 25292 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 105.5,-21.5 - parent: 0 - type: Transform -- uid: 25293 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 104.5,-21.5 - parent: 0 - type: Transform -- uid: 25294 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 103.5,-21.5 - parent: 0 - type: Transform -- uid: 25295 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 102.5,-21.5 - parent: 0 - type: Transform -- uid: 25296 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 101.5,-20.5 - parent: 0 - type: Transform -- uid: 25297 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 101.5,-19.5 - parent: 0 - type: Transform -- uid: 25298 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 93.5,-1.5 - parent: 0 - type: Transform -- uid: 25299 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 91.5,-1.5 - parent: 0 - type: Transform -- uid: 25300 - type: WindowReinforcedDirectional - components: - - pos: 95.5,2.5 - parent: 0 - type: Transform -- uid: 25301 - type: WindowReinforcedDirectional - components: - - pos: 96.5,2.5 - parent: 0 - type: Transform -- uid: 25302 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 96.5,-1.5 - parent: 0 - type: Transform -- uid: 25303 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 95.5,-1.5 - parent: 0 - type: Transform -- uid: 25304 - type: WindowReinforcedDirectional - components: - - pos: 93.5,2.5 - parent: 0 - type: Transform -- uid: 25305 - type: WindowReinforcedDirectional - components: - - pos: 91.5,2.5 - parent: 0 - type: Transform -- uid: 25306 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 90.5,-0.5 - parent: 0 - type: Transform -- uid: 25307 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 90.5,1.5 - parent: 0 - type: Transform -- uid: 25308 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 91.5,1.5 - parent: 0 - type: Transform -- uid: 25309 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 91.5,-0.5 - parent: 0 - type: Transform -- uid: 25310 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 91.5,0.5 - parent: 0 - type: Transform -- uid: 25311 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 90.5,0.5 - parent: 0 - type: Transform -- uid: 25312 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 91.5,1.5 - parent: 0 - type: Transform -- uid: 25313 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 93.5,1.5 - parent: 0 - type: Transform -- uid: 25314 - type: AirAlarm - components: - - pos: 92.5,2.5 - parent: 0 - type: Transform - - devices: - - 26237 - - 25560 - type: DeviceList -- uid: 25315 - type: WindowReinforcedDirectional - components: - - pos: 91.5,-0.5 - parent: 0 - type: Transform -- uid: 25316 - type: SignSpace - components: - - pos: 92.5,6.5 - parent: 0 - type: Transform -- uid: 25317 - type: WindowReinforcedDirectional - components: - - pos: 93.5,-0.5 - parent: 0 - type: Transform -- uid: 25318 - type: WindowReinforcedDirectional - components: - - pos: 95.5,-0.5 - parent: 0 - type: Transform -- uid: 25319 - type: WindowReinforcedDirectional - components: - - pos: 96.5,-0.5 - parent: 0 - type: Transform -- uid: 25320 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 95.5,1.5 - parent: 0 - type: Transform -- uid: 25321 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 96.5,1.5 - parent: 0 - type: Transform -- uid: 25322 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 94.5,2.5 - parent: 0 - type: Transform -- uid: 25323 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 94.5,3.5 - parent: 0 - type: Transform -- uid: 25324 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 94.5,4.5 - parent: 0 - type: Transform -- uid: 25325 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 94.5,5.5 - parent: 0 - type: Transform -- uid: 25326 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 94.5,2.5 - parent: 0 - type: Transform -- uid: 25327 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 94.5,3.5 - parent: 0 - type: Transform -- uid: 25328 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 94.5,6.5 - parent: 0 - type: Transform -- uid: 25329 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 94.5,6.5 - parent: 0 - type: Transform -- uid: 25330 - type: WindowReinforcedDirectional - components: - - pos: 95.5,6.5 - parent: 0 - type: Transform -- uid: 25331 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,6.5 - parent: 0 - type: Transform -- uid: 25332 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,7.5 - parent: 0 - type: Transform -- uid: 25333 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,8.5 - parent: 0 - type: Transform -- uid: 25334 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,9.5 - parent: 0 - type: Transform -- uid: 25335 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,10.5 - parent: 0 - type: Transform -- uid: 25336 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,11.5 - parent: 0 - type: Transform -- uid: 25337 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 95.5,12.5 - parent: 0 - type: Transform -- uid: 25338 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 95.5,7.5 - parent: 0 - type: Transform -- uid: 25339 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 95.5,8.5 - parent: 0 - type: Transform -- uid: 25340 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 95.5,9.5 - parent: 0 - type: Transform -- uid: 25341 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 95.5,10.5 - parent: 0 - type: Transform -- uid: 25342 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 95.5,11.5 - parent: 0 - type: Transform -- uid: 25343 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 95.5,12.5 - parent: 0 - type: Transform -- uid: 25344 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 95.5,13.5 - parent: 0 - type: Transform -- uid: 25345 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 95.5,13.5 - parent: 0 - type: Transform -- uid: 25346 - type: WindowReinforcedDirectional - components: - - pos: 96.5,13.5 - parent: 0 - type: Transform -- uid: 25347 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,13.5 - parent: 0 - type: Transform -- uid: 25348 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,14.5 - parent: 0 - type: Transform -- uid: 25349 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,15.5 - parent: 0 - type: Transform -- uid: 25350 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,16.5 - parent: 0 - type: Transform -- uid: 25351 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,17.5 - parent: 0 - type: Transform -- uid: 25352 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,14.5 - parent: 0 - type: Transform -- uid: 25353 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,15.5 - parent: 0 - type: Transform -- uid: 25354 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,16.5 - parent: 0 - type: Transform -- uid: 25355 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,17.5 - parent: 0 - type: Transform -- uid: 25356 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,18.5 - parent: 0 - type: Transform -- uid: 25357 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 96.5,18.5 - parent: 0 - type: Transform -- uid: 25358 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 97.5,18.5 - parent: 0 - type: Transform -- uid: 25359 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 98.5,18.5 - parent: 0 - type: Transform -- uid: 25360 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 99.5,18.5 - parent: 0 - type: Transform -- uid: 25361 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 100.5,18.5 - parent: 0 - type: Transform -- uid: 25362 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 101.5,18.5 - parent: 0 - type: Transform -- uid: 25363 - type: WindowReinforcedDirectional - components: - - pos: 97.5,18.5 - parent: 0 - type: Transform -- uid: 25364 - type: WindowReinforcedDirectional - components: - - pos: 98.5,18.5 - parent: 0 - type: Transform -- uid: 25365 - type: WindowReinforcedDirectional - components: - - pos: 99.5,18.5 - parent: 0 - type: Transform -- uid: 25366 - type: WindowReinforcedDirectional - components: - - pos: 100.5,18.5 - parent: 0 - type: Transform -- uid: 25367 - type: WindowReinforcedDirectional - components: - - pos: 101.5,18.5 - parent: 0 - type: Transform -- uid: 25368 - type: WindowReinforcedDirectional - components: - - pos: 102.5,18.5 - parent: 0 - type: Transform -- uid: 25369 - type: WindowReinforcedDirectional - components: - - pos: 103.5,18.5 - parent: 0 - type: Transform -- uid: 25370 - type: WindowReinforcedDirectional - components: - - pos: 104.5,18.5 - parent: 0 - type: Transform -- uid: 25371 - type: WindowReinforcedDirectional - components: - - pos: 105.5,18.5 - parent: 0 - type: Transform -- uid: 25372 - type: WindowReinforcedDirectional - components: - - pos: 106.5,18.5 - parent: 0 - type: Transform -- uid: 25373 - type: WindowReinforcedDirectional - components: - - pos: 107.5,18.5 - parent: 0 - type: Transform -- uid: 25374 - type: WindowReinforcedDirectional - components: - - pos: 108.5,18.5 - parent: 0 - type: Transform -- uid: 25375 - type: WindowReinforcedDirectional - components: - - pos: 109.5,18.5 - parent: 0 - type: Transform -- uid: 25376 - type: WindowReinforcedDirectional - components: - - pos: 110.5,18.5 - parent: 0 - type: Transform -- uid: 25377 - type: WindowReinforcedDirectional - components: - - pos: 111.5,18.5 - parent: 0 - type: Transform -- uid: 25378 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 102.5,19.5 - parent: 0 - type: Transform -- uid: 25379 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 102.5,20.5 - parent: 0 - type: Transform -- uid: 25380 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 102.5,20.5 - parent: 0 - type: Transform -- uid: 25381 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 103.5,20.5 - parent: 0 - type: Transform -- uid: 25382 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 104.5,20.5 - parent: 0 - type: Transform -- uid: 25383 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 105.5,20.5 - parent: 0 - type: Transform -- uid: 25384 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 106.5,20.5 - parent: 0 - type: Transform -- uid: 25385 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 106.5,20.5 - parent: 0 - type: Transform -- uid: 25386 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 106.5,19.5 - parent: 0 - type: Transform -- uid: 25387 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 107.5,18.5 - parent: 0 - type: Transform -- uid: 25388 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 108.5,18.5 - parent: 0 - type: Transform -- uid: 25389 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 109.5,18.5 - parent: 0 - type: Transform -- uid: 25390 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 110.5,18.5 - parent: 0 - type: Transform -- uid: 25391 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 111.5,18.5 - parent: 0 - type: Transform -- uid: 25392 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 112.5,18.5 - parent: 0 - type: Transform -- uid: 25393 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,17.5 - parent: 0 - type: Transform -- uid: 25394 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,16.5 - parent: 0 - type: Transform -- uid: 25395 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,15.5 - parent: 0 - type: Transform -- uid: 25396 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,14.5 - parent: 0 - type: Transform -- uid: 25397 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,-18.5 - parent: 0 - type: Transform -- uid: 25398 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,17.5 - parent: 0 - type: Transform -- uid: 25399 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,16.5 - parent: 0 - type: Transform -- uid: 25400 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,15.5 - parent: 0 - type: Transform -- uid: 25401 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,14.5 - parent: 0 - type: Transform -- uid: 25402 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,13.5 - parent: 0 - type: Transform -- uid: 25403 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 113.5,13.5 - parent: 0 - type: Transform -- uid: 25404 - type: WindowReinforcedDirectional - components: - - pos: 112.5,13.5 - parent: 0 - type: Transform -- uid: 25405 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 113.5,13.5 - parent: 0 - type: Transform -- uid: 25406 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 113.5,12.5 - parent: 0 - type: Transform -- uid: 25407 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 113.5,11.5 - parent: 0 - type: Transform -- uid: 25408 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 113.5,10.5 - parent: 0 - type: Transform -- uid: 25409 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 113.5,9.5 - parent: 0 - type: Transform -- uid: 25410 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 113.5,8.5 - parent: 0 - type: Transform -- uid: 25411 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 113.5,7.5 - parent: 0 - type: Transform -- uid: 25412 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,12.5 - parent: 0 - type: Transform -- uid: 25413 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,11.5 - parent: 0 - type: Transform -- uid: 25414 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,10.5 - parent: 0 - type: Transform -- uid: 25415 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,9.5 - parent: 0 - type: Transform -- uid: 25416 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,8.5 - parent: 0 - type: Transform -- uid: 25417 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,7.5 - parent: 0 - type: Transform -- uid: 25418 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 113.5,6.5 - parent: 0 - type: Transform -- uid: 25419 - type: WindowReinforcedDirectional - components: - - pos: 113.5,6.5 - parent: 0 - type: Transform -- uid: 25420 - type: WindowReinforcedDirectional - components: - - pos: 114.5,6.5 - parent: 0 - type: Transform -- uid: 25421 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 114.5,6.5 - parent: 0 - type: Transform -- uid: 25422 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 115.5,6.5 - parent: 0 - type: Transform -- uid: 25423 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 115.5,6.5 - parent: 0 - type: Transform -- uid: 25424 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 115.5,5.5 - parent: 0 - type: Transform -- uid: 25425 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 115.5,4.5 - parent: 0 - type: Transform -- uid: 25426 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 115.5,3.5 - parent: 0 - type: Transform -- uid: 25427 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 115.5,2.5 - parent: 0 - type: Transform -- uid: 25428 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 115.5,1.5 - parent: 0 - type: Transform -- uid: 25429 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 115.5,0.5 - parent: 0 - type: Transform -- uid: 25430 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 115.5,-0.5 - parent: 0 - type: Transform -- uid: 25431 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 115.5,-1.5 - parent: 0 - type: Transform -- uid: 25432 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 115.5,-2.5 - parent: 0 - type: Transform -- uid: 25433 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 115.5,-3.5 - parent: 0 - type: Transform -- uid: 25434 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 115.5,-4.5 - parent: 0 - type: Transform -- uid: 25435 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 115.5,5.5 - parent: 0 - type: Transform -- uid: 25436 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 115.5,4.5 - parent: 0 - type: Transform -- uid: 25437 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 115.5,3.5 - parent: 0 - type: Transform -- uid: 25438 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 115.5,2.5 - parent: 0 - type: Transform -- uid: 25439 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 115.5,1.5 - parent: 0 - type: Transform -- uid: 25440 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 114.5,0.5 - parent: 0 - type: Transform -- uid: 25441 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 113.5,0.5 - parent: 0 - type: Transform -- uid: 25442 - type: WindowReinforcedDirectional - components: - - pos: 113.5,0.5 - parent: 0 - type: Transform -- uid: 25443 - type: WindowReinforcedDirectional - components: - - pos: 114.5,0.5 - parent: 0 - type: Transform -- uid: 25444 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 115.5,-0.5 - parent: 0 - type: Transform -- uid: 25445 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 115.5,-1.5 - parent: 0 - type: Transform -- uid: 25446 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 115.5,-2.5 - parent: 0 - type: Transform -- uid: 25447 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 115.5,-3.5 - parent: 0 - type: Transform -- uid: 25448 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 114.5,-4.5 - parent: 0 - type: Transform -- uid: 25449 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 113.5,-4.5 - parent: 0 - type: Transform -- uid: 25450 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 112.5,-4.5 - parent: 0 - type: Transform -- uid: 25451 - type: WindowReinforcedDirectional - components: - - pos: 115.5,-4.5 - parent: 0 - type: Transform -- uid: 25452 - type: WindowReinforcedDirectional - components: - - pos: 114.5,-4.5 - parent: 0 - type: Transform -- uid: 25453 - type: WindowReinforcedDirectional - components: - - pos: 113.5,-4.5 - parent: 0 - type: Transform -- uid: 25454 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,-4.5 - parent: 0 - type: Transform -- uid: 25455 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,-5.5 - parent: 0 - type: Transform -- uid: 25456 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,-6.5 - parent: 0 - type: Transform -- uid: 25457 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,-7.5 - parent: 0 - type: Transform -- uid: 25458 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,-8.5 - parent: 0 - type: Transform -- uid: 25459 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,-9.5 - parent: 0 - type: Transform -- uid: 25460 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,-10.5 - parent: 0 - type: Transform -- uid: 25461 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,-11.5 - parent: 0 - type: Transform -- uid: 25462 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,-12.5 - parent: 0 - type: Transform -- uid: 25463 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,-13.5 - parent: 0 - type: Transform -- uid: 25464 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,-14.5 - parent: 0 - type: Transform -- uid: 25465 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,-15.5 - parent: 0 - type: Transform -- uid: 25466 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,-16.5 - parent: 0 - type: Transform -- uid: 25467 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 112.5,-17.5 - parent: 0 - type: Transform -- uid: 25468 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-18.5 - parent: 0 - type: Transform -- uid: 25469 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-17.5 - parent: 0 - type: Transform -- uid: 25470 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-16.5 - parent: 0 - type: Transform -- uid: 25471 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-15.5 - parent: 0 - type: Transform -- uid: 25472 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-14.5 - parent: 0 - type: Transform -- uid: 25473 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-13.5 - parent: 0 - type: Transform -- uid: 25474 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-12.5 - parent: 0 - type: Transform -- uid: 25475 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-11.5 - parent: 0 - type: Transform -- uid: 25476 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-10.5 - parent: 0 - type: Transform -- uid: 25477 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-9.5 - parent: 0 - type: Transform -- uid: 25478 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-8.5 - parent: 0 - type: Transform -- uid: 25479 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-7.5 - parent: 0 - type: Transform -- uid: 25480 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-6.5 - parent: 0 - type: Transform -- uid: 25481 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-5.5 - parent: 0 - type: Transform -- uid: 25482 - type: WindowReinforcedDirectional - components: - - pos: 112.5,-18.5 - parent: 0 - type: Transform -- uid: 25483 - type: WindowReinforcedDirectional - components: - - pos: 111.5,-18.5 - parent: 0 - type: Transform -- uid: 25484 - type: WindowReinforcedDirectional - components: - - pos: 110.5,-18.5 - parent: 0 - type: Transform -- uid: 25485 - type: WindowReinforcedDirectional - components: - - pos: 109.5,-18.5 - parent: 0 - type: Transform -- uid: 25486 - type: WindowReinforcedDirectional - components: - - pos: 108.5,-18.5 - parent: 0 - type: Transform -- uid: 25487 - type: WindowReinforcedDirectional - components: - - pos: 107.5,-18.5 - parent: 0 - type: Transform -- uid: 25488 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 111.5,-18.5 - parent: 0 - type: Transform -- uid: 25489 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 110.5,-18.5 - parent: 0 - type: Transform -- uid: 25490 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 109.5,-18.5 - parent: 0 - type: Transform -- uid: 25491 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 108.5,-18.5 - parent: 0 - type: Transform -- uid: 25492 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 107.5,-18.5 - parent: 0 - type: Transform -- uid: 25493 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 106.5,-18.5 - parent: 0 - type: Transform -- uid: 25494 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 105.5,-18.5 - parent: 0 - type: Transform -- uid: 25495 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 104.5,-18.5 - parent: 0 - type: Transform -- uid: 25496 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 103.5,-18.5 - parent: 0 - type: Transform -- uid: 25497 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 102.5,-18.5 - parent: 0 - type: Transform -- uid: 25498 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 101.5,-18.5 - parent: 0 - type: Transform -- uid: 25499 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 100.5,-18.5 - parent: 0 - type: Transform -- uid: 25500 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 99.5,-18.5 - parent: 0 - type: Transform -- uid: 25501 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 98.5,-18.5 - parent: 0 - type: Transform -- uid: 25502 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 97.5,-18.5 - parent: 0 - type: Transform -- uid: 25503 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 106.5,-19.5 - parent: 0 - type: Transform -- uid: 25504 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 106.5,-20.5 - parent: 0 - type: Transform -- uid: 25505 - type: WindowReinforcedDirectional - components: - - pos: 106.5,-20.5 - parent: 0 - type: Transform -- uid: 25506 - type: WindowReinforcedDirectional - components: - - pos: 105.5,-20.5 - parent: 0 - type: Transform -- uid: 25507 - type: WindowReinforcedDirectional - components: - - pos: 104.5,-20.5 - parent: 0 - type: Transform -- uid: 25508 - type: WindowReinforcedDirectional - components: - - pos: 103.5,-20.5 - parent: 0 - type: Transform -- uid: 25509 - type: WindowReinforcedDirectional - components: - - pos: 102.5,-20.5 - parent: 0 - type: Transform -- uid: 25510 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 102.5,-20.5 - parent: 0 - type: Transform -- uid: 25511 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 102.5,-19.5 - parent: 0 - type: Transform -- uid: 25512 - type: WindowReinforcedDirectional - components: - - pos: 101.5,-18.5 - parent: 0 - type: Transform -- uid: 25513 - type: WindowReinforcedDirectional - components: - - pos: 100.5,-18.5 - parent: 0 - type: Transform -- uid: 25514 - type: WindowReinforcedDirectional - components: - - pos: 99.5,-18.5 - parent: 0 - type: Transform -- uid: 25515 - type: WindowReinforcedDirectional - components: - - pos: 98.5,-18.5 - parent: 0 - type: Transform -- uid: 25516 - type: WindowReinforcedDirectional - components: - - pos: 97.5,-18.5 - parent: 0 - type: Transform -- uid: 25517 - type: WindowReinforcedDirectional - components: - - pos: 96.5,-18.5 - parent: 0 - type: Transform -- uid: 25518 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,-17.5 - parent: 0 - type: Transform -- uid: 25519 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,-16.5 - parent: 0 - type: Transform -- uid: 25520 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,-15.5 - parent: 0 - type: Transform -- uid: 25521 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,-14.5 - parent: 0 - type: Transform -- uid: 25522 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,-13.5 - parent: 0 - type: Transform -- uid: 25523 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,-12.5 - parent: 0 - type: Transform -- uid: 25524 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,-11.5 - parent: 0 - type: Transform -- uid: 25525 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,-10.5 - parent: 0 - type: Transform -- uid: 25526 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,-9.5 - parent: 0 - type: Transform -- uid: 25527 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,-8.5 - parent: 0 - type: Transform -- uid: 25528 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,-7.5 - parent: 0 - type: Transform -- uid: 25529 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,-6.5 - parent: 0 - type: Transform -- uid: 25530 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 96.5,-5.5 - parent: 0 - type: Transform -- uid: 25531 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 97.5,-4.5 - parent: 0 - type: Transform -- uid: 25532 - type: WindowReinforcedDirectional - components: - - pos: 97.5,-4.5 - parent: 0 - type: Transform -- uid: 25533 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 96.5,-4.5 - parent: 0 - type: Transform -- uid: 25534 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 95.5,-4.5 - parent: 0 - type: Transform -- uid: 25535 - type: WindowReinforcedDirectional - components: - - pos: 95.5,-4.5 - parent: 0 - type: Transform -- uid: 25536 - type: WindowReinforcedDirectional - components: - - pos: 94.5,-4.5 - parent: 0 - type: Transform -- uid: 25537 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-5.5 - parent: 0 - type: Transform -- uid: 25538 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-6.5 - parent: 0 - type: Transform -- uid: 25539 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-7.5 - parent: 0 - type: Transform -- uid: 25540 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-8.5 - parent: 0 - type: Transform -- uid: 25541 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-9.5 - parent: 0 - type: Transform -- uid: 25542 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-10.5 - parent: 0 - type: Transform -- uid: 25543 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-11.5 - parent: 0 - type: Transform -- uid: 25544 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-12.5 - parent: 0 - type: Transform -- uid: 25545 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-13.5 - parent: 0 - type: Transform -- uid: 25546 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-14.5 - parent: 0 - type: Transform -- uid: 25547 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-15.5 - parent: 0 - type: Transform -- uid: 25548 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-16.5 - parent: 0 - type: Transform -- uid: 25549 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-17.5 - parent: 0 - type: Transform -- uid: 25550 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 97.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25551 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-3.5 - parent: 0 - type: Transform -- uid: 25552 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-2.5 - parent: 0 - type: Transform -- uid: 25553 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 94.5,-1.5 - parent: 0 - type: Transform -- uid: 25554 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 94.5,-4.5 - parent: 0 - type: Transform -- uid: 25555 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 94.5,-3.5 - parent: 0 - type: Transform -- uid: 25556 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 94.5,-2.5 - parent: 0 - type: Transform -- uid: 25557 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 94.5,-1.5 - parent: 0 - type: Transform -- uid: 25558 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 93.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25559 - type: GasPipeFourway - components: - - pos: 94.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25560 - type: GasVentPump - components: - - pos: 93.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25561 - type: GasPipeStraight - components: - - pos: 94.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25562 - type: GasPipeStraight - components: - - pos: 94.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25563 - type: GasPipeStraight - components: - - pos: 94.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25564 - type: GasPipeStraight - components: - - pos: 94.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25565 - type: GasPipeStraight - components: - - pos: 94.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25566 - type: GasPipeStraight - components: - - pos: 95.5,7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25567 - type: GasPipeStraight - components: - - pos: 95.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25568 - type: GasPipeStraight - components: - - pos: 95.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25569 - type: GasPipeStraight - components: - - pos: 95.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25570 - type: GasPipeStraight - components: - - pos: 95.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25571 - type: GasPipeStraight - components: - - pos: 95.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25572 - type: GasPipeStraight - components: - - pos: 96.5,14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25573 - type: GasPipeStraight - components: - - pos: 96.5,15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25574 - type: GasPipeStraight - components: - - pos: 96.5,16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25575 - type: GasPipeStraight - components: - - pos: 96.5,17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25576 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 98.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25577 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 99.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25578 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 100.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25579 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 101.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25580 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 102.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25581 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 103.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25582 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 105.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25583 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 106.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25584 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 107.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25585 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 108.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25586 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 109.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25587 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 110.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25588 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 111.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25589 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 112.5,17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25590 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 112.5,16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25591 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 112.5,15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25592 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 112.5,14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25593 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 113.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25594 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 113.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25595 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 113.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25596 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 113.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25597 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 113.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25598 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 113.5,7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25599 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 115.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25600 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 115.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25601 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 115.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25602 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 115.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25603 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 115.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25604 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 111.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25605 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 115.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25606 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 115.5,-1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25607 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 115.5,-2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25608 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 115.5,-3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25609 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 114.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25610 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 113.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25611 - type: GasPipeStraight - components: - - pos: 112.5,-5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25612 - type: GasPipeStraight - components: - - pos: 112.5,-6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25613 - type: GasPipeStraight - components: - - pos: 112.5,-7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25614 - type: GasPipeStraight - components: - - pos: 112.5,-8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25615 - type: GasPipeStraight - components: - - pos: 112.5,-9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25616 - type: GasPipeStraight - components: - - pos: 112.5,-10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25617 - type: GasPipeStraight - components: - - pos: 112.5,-11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25618 - type: GasPipeStraight - components: - - pos: 112.5,-12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25619 - type: GasPipeStraight - components: - - pos: 112.5,-13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25620 - type: GasPipeStraight - components: - - pos: 112.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25621 - type: GasPipeStraight - components: - - pos: 112.5,-15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25622 - type: GasPipeStraight - components: - - pos: 112.5,-16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25623 - type: GasPipeStraight - components: - - pos: 112.5,-17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25624 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 110.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25625 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 109.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25626 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 108.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25627 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 107.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25628 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 106.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25629 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 105.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25630 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 103.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25631 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 102.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25632 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 101.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25633 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 100.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25634 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 99.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25635 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 98.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25636 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 97.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25637 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 96.5,-17.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25638 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 96.5,-16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25639 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 96.5,-15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25640 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 96.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25641 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 96.5,-13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25642 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 96.5,-12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25643 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 96.5,-11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25644 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 96.5,-10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25645 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 96.5,-9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25646 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 96.5,-8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25647 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 96.5,-7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25648 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 96.5,-6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25649 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 96.5,-5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25650 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 95.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25651 - type: GasPipeStraight - components: - - pos: 94.5,-3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25652 - type: GasPipeStraight - components: - - pos: 94.5,-2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25653 - type: GasPipeStraight - components: - - pos: 94.5,-1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25654 - type: GasPipeStraight - components: - - pos: 94.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25655 - type: GasPipeTJunction - components: - - pos: 96.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25656 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 94.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25657 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 94.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25658 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 95.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25659 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 96.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25660 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 95.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25661 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 96.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25662 - type: GasPipeBend - components: - - pos: 112.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25663 - type: GasPipeBend - components: - - pos: 113.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25664 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 112.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25665 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 113.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25666 - type: GasPipeBend - components: - - pos: 115.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25667 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 114.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25668 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 115.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25669 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 115.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25670 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25671 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 112.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25672 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 96.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25673 - type: GasPipeTJunction - components: - - pos: 104.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25674 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 104.5,18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25675 - type: GasVentPump - components: - - pos: 104.5,19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25676 - type: Windoor - components: - - pos: 94.5,-0.5 - parent: 0 - type: Transform -- uid: 25677 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 104.5,-19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25678 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: 94.5,1.5 - parent: 0 - type: Transform -- uid: 25679 - type: Windoor - components: - - pos: 95.5,13.5 - parent: 0 - type: Transform -- uid: 25680 - type: Windoor - components: - - pos: 113.5,13.5 - parent: 0 - type: Transform -- uid: 25681 - type: CableApcExtension - components: - - pos: 111.5,-18.5 - parent: 0 - type: Transform -- uid: 25682 - type: WallReinforced - components: - - pos: 98.5,-5.5 - parent: 0 - type: Transform -- uid: 25683 - type: WallReinforced - components: - - pos: 99.5,-5.5 - parent: 0 - type: Transform -- uid: 25684 - type: WallReinforced - components: - - pos: 99.5,-6.5 - parent: 0 - type: Transform -- uid: 25685 - type: WallReinforced - components: - - pos: 100.5,-6.5 - parent: 0 - type: Transform -- uid: 25686 - type: WallReinforced - components: - - pos: 100.5,-5.5 - parent: 0 - type: Transform -- uid: 25687 - type: WallReinforced - components: - - pos: 98.5,-3.5 - parent: 0 - type: Transform -- uid: 25688 - type: WallReinforced - components: - - pos: 98.5,-2.5 - parent: 0 - type: Transform -- uid: 25689 - type: WallReinforced - components: - - pos: 100.5,-3.5 - parent: 0 - type: Transform -- uid: 25690 - type: WallReinforced - components: - - pos: 98.5,-1.5 - parent: 0 - type: Transform -- uid: 25691 - type: WallReinforced - components: - - pos: 97.5,-1.5 - parent: 0 - type: Transform -- uid: 25692 - type: WallReinforced - components: - - pos: 97.5,-0.5 - parent: 0 - type: Transform -- uid: 25693 - type: WallReinforced - components: - - pos: 97.5,1.5 - parent: 0 - type: Transform -- uid: 25694 - type: WallReinforced - components: - - pos: 97.5,2.5 - parent: 0 - type: Transform -- uid: 25695 - type: WallReinforced - components: - - pos: 100.5,-1.5 - parent: 0 - type: Transform -- uid: 25696 - type: WallReinforced - components: - - pos: 98.5,3.5 - parent: 0 - type: Transform -- uid: 25697 - type: WallReinforced - components: - - pos: 98.5,4.5 - parent: 0 - type: Transform -- uid: 25698 - type: WallReinforced - components: - - pos: 97.5,3.5 - parent: 0 - type: Transform -- uid: 25699 - type: WallReinforced - components: - - pos: 100.5,-2.5 - parent: 0 - type: Transform -- uid: 25700 - type: WallReinforced - components: - - pos: 101.5,-1.5 - parent: 0 - type: Transform -- uid: 25701 - type: WallReinforced - components: - - pos: 102.5,-1.5 - parent: 0 - type: Transform -- uid: 25702 - type: WallReinforced - components: - - pos: 101.5,-0.5 - parent: 0 - type: Transform -- uid: 25703 - type: WallReinforced - components: - - pos: 112.5,3.5 - parent: 0 - type: Transform -- uid: 25704 - type: WallReinforced - components: - - pos: 101.5,2.5 - parent: 0 - type: Transform -- uid: 25705 - type: WallReinforced - components: - - pos: 101.5,3.5 - parent: 0 - type: Transform -- uid: 25706 - type: WallReinforced - components: - - pos: 100.5,3.5 - parent: 0 - type: Transform -- uid: 25707 - type: WallReinforced - components: - - pos: 99.5,3.5 - parent: 0 - type: Transform -- uid: 25708 - type: WallReinforced - components: - - pos: 101.5,1.5 - parent: 0 - type: Transform -- uid: 25709 - type: WallReinforced - components: - - pos: 112.5,2.5 - parent: 0 - type: Transform -- uid: 25710 - type: WallReinforced - components: - - pos: 112.5,1.5 - parent: 0 - type: Transform -- uid: 25711 - type: WallReinforced - components: - - pos: 112.5,-0.5 - parent: 0 - type: Transform -- uid: 25712 - type: WallReinforced - components: - - pos: 112.5,-1.5 - parent: 0 - type: Transform -- uid: 25713 - type: WallReinforced - components: - - pos: 111.5,-1.5 - parent: 0 - type: Transform -- uid: 25714 - type: WallReinforced - components: - - pos: 110.5,-1.5 - parent: 0 - type: Transform -- uid: 25715 - type: WallReinforced - components: - - pos: 110.5,-2.5 - parent: 0 - type: Transform -- uid: 25716 - type: WallReinforced - components: - - pos: 110.5,-3.5 - parent: 0 - type: Transform -- uid: 25717 - type: WallReinforced - components: - - pos: 110.5,-4.5 - parent: 0 - type: Transform -- uid: 25718 - type: WallReinforced - components: - - pos: 110.5,-5.5 - parent: 0 - type: Transform -- uid: 25719 - type: WallReinforced - components: - - pos: 109.5,-5.5 - parent: 0 - type: Transform -- uid: 25720 - type: WallReinforced - components: - - pos: 109.5,-6.5 - parent: 0 - type: Transform -- uid: 25721 - type: WallReinforced - components: - - pos: 109.5,-7.5 - parent: 0 - type: Transform -- uid: 25722 - type: WallReinforced - components: - - pos: 109.5,-8.5 - parent: 0 - type: Transform -- uid: 25723 - type: WallReinforced - components: - - pos: 109.5,-9.5 - parent: 0 - type: Transform -- uid: 25724 - type: WallReinforced - components: - - pos: 109.5,-10.5 - parent: 0 - type: Transform -- uid: 25725 - type: WallReinforced - components: - - pos: 109.5,-11.5 - parent: 0 - type: Transform -- uid: 25726 - type: WallReinforced - components: - - pos: 109.5,-12.5 - parent: 0 - type: Transform -- uid: 25727 - type: WallReinforced - components: - - pos: 109.5,-13.5 - parent: 0 - type: Transform -- uid: 25728 - type: WallReinforced - components: - - pos: 108.5,-13.5 - parent: 0 - type: Transform -- uid: 25729 - type: WallReinforced - components: - - pos: 108.5,-14.5 - parent: 0 - type: Transform -- uid: 25730 - type: WallReinforced - components: - - pos: 107.5,-14.5 - parent: 0 - type: Transform -- uid: 25731 - type: WallReinforced - components: - - pos: 106.5,-14.5 - parent: 0 - type: Transform -- uid: 25732 - type: WallReinforced - components: - - pos: 106.5,-15.5 - parent: 0 - type: Transform -- uid: 25733 - type: WallReinforced - components: - - pos: 105.5,-15.5 - parent: 0 - type: Transform -- uid: 25734 - type: WallReinforced - components: - - pos: 104.5,-15.5 - parent: 0 - type: Transform -- uid: 25735 - type: WallReinforced - components: - - pos: 103.5,-15.5 - parent: 0 - type: Transform -- uid: 25736 - type: WallReinforced - components: - - pos: 102.5,-15.5 - parent: 0 - type: Transform -- uid: 25737 - type: WallReinforced - components: - - pos: 102.5,-14.5 - parent: 0 - type: Transform -- uid: 25738 - type: WallReinforced - components: - - pos: 101.5,-14.5 - parent: 0 - type: Transform -- uid: 25739 - type: WallReinforced - components: - - pos: 100.5,-14.5 - parent: 0 - type: Transform -- uid: 25740 - type: WallReinforced - components: - - pos: 100.5,-13.5 - parent: 0 - type: Transform -- uid: 25741 - type: WallReinforced - components: - - pos: 99.5,-13.5 - parent: 0 - type: Transform -- uid: 25742 - type: WallReinforced - components: - - pos: 99.5,-12.5 - parent: 0 - type: Transform -- uid: 25743 - type: WallReinforced - components: - - pos: 99.5,-11.5 - parent: 0 - type: Transform -- uid: 25744 - type: WallReinforced - components: - - pos: 99.5,-10.5 - parent: 0 - type: Transform -- uid: 25745 - type: WallReinforced - components: - - pos: 99.5,-9.5 - parent: 0 - type: Transform -- uid: 25746 - type: WallReinforced - components: - - pos: 99.5,-8.5 - parent: 0 - type: Transform -- uid: 25747 - type: WallReinforced - components: - - pos: 99.5,-7.5 - parent: 0 - type: Transform -- uid: 25748 - type: WallReinforced - components: - - pos: 98.5,5.5 - parent: 0 - type: Transform -- uid: 25749 - type: WallReinforced - components: - - pos: 98.5,6.5 - parent: 0 - type: Transform -- uid: 25750 - type: WallReinforced - components: - - pos: 98.5,7.5 - parent: 0 - type: Transform -- uid: 25751 - type: WallReinforced - components: - - pos: 98.5,8.5 - parent: 0 - type: Transform -- uid: 25752 - type: WallReinforced - components: - - pos: 98.5,9.5 - parent: 0 - type: Transform -- uid: 25753 - type: WallReinforced - components: - - pos: 98.5,10.5 - parent: 0 - type: Transform -- uid: 25754 - type: WallReinforced - components: - - pos: 98.5,11.5 - parent: 0 - type: Transform -- uid: 25755 - type: WallReinforced - components: - - pos: 99.5,11.5 - parent: 0 - type: Transform -- uid: 25756 - type: WallReinforced - components: - - pos: 99.5,12.5 - parent: 0 - type: Transform -- uid: 25757 - type: WallReinforced - components: - - pos: 99.5,13.5 - parent: 0 - type: Transform -- uid: 25758 - type: WallReinforced - components: - - pos: 100.5,13.5 - parent: 0 - type: Transform -- uid: 25759 - type: WallReinforced - components: - - pos: 100.5,14.5 - parent: 0 - type: Transform -- uid: 25760 - type: WallReinforced - components: - - pos: 101.5,14.5 - parent: 0 - type: Transform -- uid: 25761 - type: WallReinforced - components: - - pos: 102.5,14.5 - parent: 0 - type: Transform -- uid: 25762 - type: WallReinforced - components: - - pos: 102.5,15.5 - parent: 0 - type: Transform -- uid: 25763 - type: WallReinforced - components: - - pos: 103.5,15.5 - parent: 0 - type: Transform -- uid: 25764 - type: WallReinforced - components: - - pos: 104.5,15.5 - parent: 0 - type: Transform -- uid: 25765 - type: WallReinforced - components: - - pos: 105.5,15.5 - parent: 0 - type: Transform -- uid: 25766 - type: WallReinforced - components: - - pos: 106.5,15.5 - parent: 0 - type: Transform -- uid: 25767 - type: WallReinforced - components: - - pos: 106.5,14.5 - parent: 0 - type: Transform -- uid: 25768 - type: WallReinforced - components: - - pos: 107.5,14.5 - parent: 0 - type: Transform -- uid: 25769 - type: WallReinforced - components: - - pos: 108.5,14.5 - parent: 0 - type: Transform -- uid: 25770 - type: WallReinforced - components: - - pos: 108.5,13.5 - parent: 0 - type: Transform -- uid: 25771 - type: WallReinforced - components: - - pos: 109.5,13.5 - parent: 0 - type: Transform -- uid: 25772 - type: WallReinforced - components: - - pos: 109.5,12.5 - parent: 0 - type: Transform -- uid: 25773 - type: WallReinforced - components: - - pos: 109.5,11.5 - parent: 0 - type: Transform -- uid: 25774 - type: WallReinforced - components: - - pos: 110.5,11.5 - parent: 0 - type: Transform -- uid: 25775 - type: WallReinforced - components: - - pos: 110.5,10.5 - parent: 0 - type: Transform -- uid: 25776 - type: WallReinforced - components: - - pos: 110.5,9.5 - parent: 0 - type: Transform -- uid: 25777 - type: WallReinforced - components: - - pos: 110.5,8.5 - parent: 0 - type: Transform -- uid: 25778 - type: WallReinforced - components: - - pos: 110.5,7.5 - parent: 0 - type: Transform -- uid: 25779 - type: WallReinforced - components: - - pos: 110.5,6.5 - parent: 0 - type: Transform -- uid: 25780 - type: WallReinforced - components: - - pos: 110.5,5.5 - parent: 0 - type: Transform -- uid: 25781 - type: WallReinforced - components: - - pos: 110.5,4.5 - parent: 0 - type: Transform -- uid: 25782 - type: WallReinforced - components: - - pos: 110.5,3.5 - parent: 0 - type: Transform -- uid: 25783 - type: WallReinforced - components: - - pos: 111.5,3.5 - parent: 0 - type: Transform -- uid: 25784 - type: WallReinforced - components: - - pos: 109.5,-1.5 - parent: 0 - type: Transform -- uid: 25785 - type: WallReinforced - components: - - pos: 107.5,-1.5 - parent: 0 - type: Transform -- uid: 25786 - type: WallReinforced - components: - - pos: 108.5,-1.5 - parent: 0 - type: Transform -- uid: 25787 - type: WallReinforced - components: - - pos: 107.5,-0.5 - parent: 0 - type: Transform -- uid: 25788 - type: WallReinforced - components: - - pos: 109.5,3.5 - parent: 0 - type: Transform -- uid: 25789 - type: WallReinforced - components: - - pos: 108.5,3.5 - parent: 0 - type: Transform -- uid: 25790 - type: WallReinforced - components: - - pos: 107.5,3.5 - parent: 0 - type: Transform -- uid: 25791 - type: WallReinforced - components: - - pos: 107.5,2.5 - parent: 0 - type: Transform -- uid: 25792 - type: WallReinforced - components: - - pos: 107.5,1.5 - parent: 0 - type: Transform -- uid: 25793 - type: WallReinforced - components: - - pos: 106.5,-1.5 - parent: 0 - type: Transform -- uid: 25794 - type: WallReinforced - components: - - pos: 105.5,-1.5 - parent: 0 - type: Transform -- uid: 25795 - type: WallReinforced - components: - - pos: 103.5,-1.5 - parent: 0 - type: Transform -- uid: 25796 - type: WallReinforced - components: - - pos: 103.5,3.5 - parent: 0 - type: Transform -- uid: 25797 - type: WallReinforced - components: - - pos: 102.5,3.5 - parent: 0 - type: Transform -- uid: 25798 - type: WallReinforced - components: - - pos: 105.5,3.5 - parent: 0 - type: Transform -- uid: 25799 - type: WallReinforced - components: - - pos: 106.5,3.5 - parent: 0 - type: Transform -- uid: 25800 - type: WallReinforced - components: - - pos: 104.5,7.5 - parent: 0 - type: Transform -- uid: 25801 - type: WallReinforced - components: - - pos: 103.5,7.5 - parent: 0 - type: Transform -- uid: 25802 - type: WallReinforced - components: - - pos: 105.5,7.5 - parent: 0 - type: Transform -- uid: 25803 - type: WallReinforced - components: - - pos: 105.5,8.5 - parent: 0 - type: Transform -- uid: 25804 - type: WallReinforced - components: - - pos: 103.5,8.5 - parent: 0 - type: Transform -- uid: 25805 - type: WallReinforced - components: - - pos: 105.5,10.5 - parent: 0 - type: Transform -- uid: 25806 - type: WallReinforced - components: - - pos: 103.5,10.5 - parent: 0 - type: Transform -- uid: 25807 - type: WallReinforced - components: - - pos: 103.5,14.5 - parent: 0 - type: Transform -- uid: 25808 - type: WallReinforced - components: - - pos: 103.5,13.5 - parent: 0 - type: Transform -- uid: 25809 - type: WallReinforced - components: - - pos: 104.5,14.5 - parent: 0 - type: Transform -- uid: 25810 - type: WallReinforced - components: - - pos: 105.5,14.5 - parent: 0 - type: Transform -- uid: 25811 - type: WallReinforced - components: - - pos: 105.5,13.5 - parent: 0 - type: Transform -- uid: 25812 - type: WallReinforced - components: - - pos: 102.5,13.5 - parent: 0 - type: Transform -- uid: 25813 - type: WallReinforced - components: - - pos: 101.5,13.5 - parent: 0 - type: Transform -- uid: 25814 - type: WallReinforced - components: - - pos: 106.5,13.5 - parent: 0 - type: Transform -- uid: 25815 - type: WallReinforced - components: - - pos: 107.5,13.5 - parent: 0 - type: Transform -- uid: 25816 - type: WallReinforced - components: - - pos: 109.5,4.5 - parent: 0 - type: Transform -- uid: 25817 - type: WallReinforced - components: - - pos: 109.5,5.5 - parent: 0 - type: Transform -- uid: 25818 - type: WallReinforced - components: - - pos: 109.5,6.5 - parent: 0 - type: Transform -- uid: 25819 - type: WallReinforced - components: - - pos: 109.5,7.5 - parent: 0 - type: Transform -- uid: 25820 - type: WallReinforced - components: - - pos: 109.5,8.5 - parent: 0 - type: Transform -- uid: 25821 - type: WallReinforced - components: - - pos: 109.5,9.5 - parent: 0 - type: Transform -- uid: 25822 - type: WallReinforced - components: - - pos: 109.5,10.5 - parent: 0 - type: Transform -- uid: 25823 - type: WallReinforced - components: - - pos: 99.5,10.5 - parent: 0 - type: Transform -- uid: 25824 - type: WallReinforced - components: - - pos: 99.5,9.5 - parent: 0 - type: Transform -- uid: 25825 - type: WallReinforced - components: - - pos: 99.5,8.5 - parent: 0 - type: Transform -- uid: 25826 - type: WallReinforced - components: - - pos: 99.5,7.5 - parent: 0 - type: Transform -- uid: 25827 - type: WallReinforced - components: - - pos: 99.5,6.5 - parent: 0 - type: Transform -- uid: 25828 - type: WallReinforced - components: - - pos: 99.5,5.5 - parent: 0 - type: Transform -- uid: 25829 - type: WallReinforced - components: - - pos: 99.5,4.5 - parent: 0 - type: Transform -- uid: 25830 - type: WallReinforced - components: - - pos: 100.5,4.5 - parent: 0 - type: Transform -- uid: 25831 - type: WallReinforced - components: - - pos: 100.5,5.5 - parent: 0 - type: Transform -- uid: 25832 - type: WallReinforced - components: - - pos: 100.5,6.5 - parent: 0 - type: Transform -- uid: 25833 - type: WallReinforced - components: - - pos: 100.5,7.5 - parent: 0 - type: Transform -- uid: 25834 - type: WallReinforced - components: - - pos: 100.5,8.5 - parent: 0 - type: Transform -- uid: 25835 - type: WallReinforced - components: - - pos: 100.5,10.5 - parent: 0 - type: Transform -- uid: 25836 - type: WallReinforced - components: - - pos: 100.5,11.5 - parent: 0 - type: Transform -- uid: 25837 - type: WallReinforced - components: - - pos: 100.5,12.5 - parent: 0 - type: Transform -- uid: 25838 - type: WallReinforced - components: - - pos: 108.5,12.5 - parent: 0 - type: Transform -- uid: 25839 - type: WallReinforced - components: - - pos: 108.5,11.5 - parent: 0 - type: Transform -- uid: 25840 - type: WallReinforced - components: - - pos: 108.5,10.5 - parent: 0 - type: Transform -- uid: 25841 - type: WallReinforced - components: - - pos: 108.5,8.5 - parent: 0 - type: Transform -- uid: 25842 - type: WallReinforced - components: - - pos: 108.5,7.5 - parent: 0 - type: Transform -- uid: 25843 - type: WallReinforced - components: - - pos: 108.5,6.5 - parent: 0 - type: Transform -- uid: 25844 - type: WallReinforced - components: - - pos: 108.5,5.5 - parent: 0 - type: Transform -- uid: 25845 - type: WallReinforced - components: - - pos: 108.5,4.5 - parent: 0 - type: Transform -- uid: 25846 - type: WallReinforced - components: - - pos: 109.5,-2.5 - parent: 0 - type: Transform -- uid: 25847 - type: WallReinforced - components: - - pos: 109.5,-3.5 - parent: 0 - type: Transform -- uid: 25848 - type: WallReinforced - components: - - pos: 109.5,-4.5 - parent: 0 - type: Transform -- uid: 25849 - type: WallReinforced - components: - - pos: 101.5,-6.5 - parent: 0 - type: Transform -- uid: 25850 - type: WallReinforced - components: - - pos: 102.5,-6.5 - parent: 0 - type: Transform -- uid: 25851 - type: WallReinforced - components: - - pos: 106.5,-6.5 - parent: 0 - type: Transform -- uid: 25852 - type: WallReinforced - components: - - pos: 107.5,-6.5 - parent: 0 - type: Transform -- uid: 25853 - type: WallReinforced - components: - - pos: 108.5,-6.5 - parent: 0 - type: Transform -- uid: 25854 - type: WallReinforced - components: - - pos: 105.5,-14.5 - parent: 0 - type: Transform -- uid: 25855 - type: WallReinforced - components: - - pos: 104.5,-14.5 - parent: 0 - type: Transform -- uid: 25856 - type: WallReinforced - components: - - pos: 103.5,-14.5 - parent: 0 - type: Transform -- uid: 25857 - type: WallReinforced - components: - - pos: 100.5,-12.5 - parent: 0 - type: Transform -- uid: 25858 - type: WallReinforced - components: - - pos: 100.5,-11.5 - parent: 0 - type: Transform -- uid: 25859 - type: WallReinforced - components: - - pos: 108.5,-12.5 - parent: 0 - type: Transform -- uid: 25860 - type: WallReinforced - components: - - pos: 108.5,-11.5 - parent: 0 - type: Transform -- uid: 25861 - type: ReinforcedWindow - components: - - pos: 103.5,-6.5 - parent: 0 - type: Transform -- uid: 25862 - type: ReinforcedWindow - components: - - pos: 103.5,-7.5 - parent: 0 - type: Transform -- uid: 25863 - type: ReinforcedWindow - components: - - pos: 103.5,-8.5 - parent: 0 - type: Transform -- uid: 25864 - type: ReinforcedWindow - components: - - pos: 105.5,-8.5 - parent: 0 - type: Transform -- uid: 25865 - type: ReinforcedWindow - components: - - pos: 105.5,-7.5 - parent: 0 - type: Transform -- uid: 25866 - type: ReinforcedWindow - components: - - pos: 105.5,-6.5 - parent: 0 - type: Transform -- uid: 25867 - type: ReinforcedWindow - components: - - pos: 104.5,10.5 - parent: 0 - type: Transform -- uid: 25868 - type: SMESBasic - components: - - pos: 109.5,2.5 - parent: 0 - type: Transform -- uid: 25869 - type: SMESBasic - components: - - pos: 104.5,13.5 - parent: 0 - type: Transform -- uid: 25870 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 95.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25871 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 96.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25872 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 97.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25873 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 98.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25874 - type: GasPressurePump - components: - - pos: 110.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25875 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 100.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25876 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 101.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25877 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 102.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25878 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 103.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25879 - type: GasPipeFourway - components: - - pos: 104.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25880 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 105.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25881 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 106.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25882 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 107.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25883 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 108.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25884 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 110.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25885 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 109.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25886 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 111.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25887 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 112.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25888 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 113.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25889 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 114.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25890 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 99.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25891 - type: GasVentPump - components: - - pos: 99.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25892 - type: GasVentPump - components: - - pos: 109.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25893 - type: GasPort - components: - - pos: 110.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25894 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 104.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25895 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 104.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25896 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 104.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25897 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 104.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25898 - type: GasPipeStraight - components: - - pos: 104.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25899 - type: GasPipeStraight - components: - - pos: 104.5,-1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25900 - type: GasPipeStraight - components: - - pos: 104.5,-2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25901 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 104.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25902 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 104.5,-3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25903 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 104.5,-5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25904 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 104.5,-6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25905 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 104.5,-7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25906 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 104.5,-8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25907 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 104.5,-9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25908 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 97.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25909 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 98.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25910 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 99.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25911 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 100.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25912 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 101.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25913 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 102.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25914 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 103.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25915 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 103.5,-3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25916 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 102.5,-3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25917 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 103.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25918 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 105.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25919 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 104.5,-10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25920 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 103.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25921 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 98.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25922 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 111.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25923 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 106.5,-3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25924 - type: GasVentScrubber - components: - - pos: 104.5,-13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25925 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 102.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25926 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 101.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25927 - type: GasPipeBend - components: - - pos: 101.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25928 - type: GasPipeStraight - components: - - pos: 101.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25929 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 100.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25930 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 99.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25931 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 98.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25932 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: 97.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25933 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: 96.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25934 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 113.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25935 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 111.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25936 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 104.5,-16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25937 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 104.5,-15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25938 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 104.5,-14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25939 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 97.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25940 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 112.5,-0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25941 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 107.5,-3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 25942 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 109.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25943 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 110.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25944 - type: GasPipeBend - components: - - pos: 108.5,-3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25945 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 108.5,-4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25946 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 100.5,-1.5 - parent: 0 - type: Transform -- uid: 25947 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 108.5,-1.5 - parent: 0 - type: Transform -- uid: 25948 - type: APCBasic - components: - - pos: 105.5,7.5 - parent: 0 - type: Transform -- uid: 25949 - type: APCBasic - components: - - pos: 103.5,-1.5 - parent: 0 - type: Transform -- uid: 25950 - type: APCBasic - components: - - pos: 103.5,3.5 - parent: 0 - type: Transform -- uid: 25951 - type: APCBasic - components: - - pos: 107.5,-6.5 - parent: 0 - type: Transform -- uid: 25952 - type: SubstationBasic - components: - - pos: 108.5,2.5 - parent: 0 - type: Transform -- uid: 25953 - type: CableMV - components: - - pos: 108.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25954 - type: CableMV - components: - - pos: 108.5,1.5 - parent: 0 - type: Transform -- uid: 25955 - type: CableMV - components: - - pos: 108.5,0.5 - parent: 0 - type: Transform -- uid: 25956 - type: CableMV - components: - - pos: 108.5,-0.5 - parent: 0 - type: Transform -- uid: 25957 - type: CableMV - components: - - pos: 108.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25958 - type: CableMV - components: - - pos: 107.5,0.5 - parent: 0 - type: Transform -- uid: 25959 - type: CableMV - components: - - pos: 106.5,0.5 - parent: 0 - type: Transform -- uid: 25960 - type: CableMV - components: - - pos: 105.5,0.5 - parent: 0 - type: Transform -- uid: 25961 - type: CableMV - components: - - pos: 104.5,0.5 - parent: 0 - type: Transform -- uid: 25962 - type: CableMV - components: - - pos: 103.5,0.5 - parent: 0 - type: Transform -- uid: 25963 - type: CableMV - components: - - pos: 102.5,0.5 - parent: 0 - type: Transform -- uid: 25964 - type: CableMV - components: - - pos: 101.5,0.5 - parent: 0 - type: Transform -- uid: 25965 - type: CableMV - components: - - pos: 100.5,0.5 - parent: 0 - type: Transform -- uid: 25966 - type: CableMV - components: - - pos: 100.5,-0.5 - parent: 0 - type: Transform -- uid: 25967 - type: CableMV - components: - - pos: 100.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25968 - type: CableMV - components: - - pos: 103.5,1.5 - parent: 0 - type: Transform -- uid: 25969 - type: CableMV - components: - - pos: 103.5,2.5 - parent: 0 - type: Transform -- uid: 25970 - type: CableMV - components: - - pos: 103.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25971 - type: CableMV - components: - - pos: 104.5,3.5 - parent: 0 - type: Transform -- uid: 25972 - type: CableMV - components: - - pos: 104.5,4.5 - parent: 0 - type: Transform -- uid: 25973 - type: CableMV - components: - - pos: 104.5,5.5 - parent: 0 - type: Transform -- uid: 25974 - type: CableMV - components: - - pos: 104.5,6.5 - parent: 0 - type: Transform -- uid: 25975 - type: CableMV - components: - - pos: 105.5,6.5 - parent: 0 - type: Transform -- uid: 25976 - type: CableMV - components: - - pos: 105.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25977 - type: CableMV - components: - - pos: 103.5,-0.5 - parent: 0 - type: Transform -- uid: 25978 - type: CableMV - components: - - pos: 103.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25979 - type: CableMV - components: - - pos: 103.5,-2.5 - parent: 0 - type: Transform -- uid: 25980 - type: CableMV - components: - - pos: 103.5,-3.5 - parent: 0 - type: Transform -- uid: 25981 - type: CableMV - components: - - pos: 103.5,-4.5 - parent: 0 - type: Transform -- uid: 25982 - type: CableMV - components: - - pos: 103.5,-5.5 - parent: 0 - type: Transform -- uid: 25983 - type: CableMV - components: - - pos: 105.5,-5.5 - parent: 0 - type: Transform -- uid: 25984 - type: CableMV - components: - - pos: 104.5,-5.5 - parent: 0 - type: Transform -- uid: 25985 - type: CableMV - components: - - pos: 106.5,-5.5 - parent: 0 - type: Transform -- uid: 25986 - type: CableMV - components: - - pos: 107.5,-5.5 - parent: 0 - type: Transform -- uid: 25987 - type: CableMV - components: - - pos: 107.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25988 - type: CableHV - components: - - pos: 108.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25989 - type: CableHV - components: - - pos: 109.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25990 - type: CableHV - components: - - pos: 110.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25991 - type: CableHV - components: - - pos: 111.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25992 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 110.5,2.5 - parent: 0 - type: Transform -- uid: 25993 - type: GeneratorUranium - components: - - pos: 111.5,2.5 - parent: 0 - type: Transform -- uid: 25994 - type: CableApcExtension - components: - - pos: 100.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25995 - type: CableApcExtension - components: - - pos: 108.5,-0.5 - parent: 0 - type: Transform -- uid: 25996 - type: CableApcExtension - components: - - pos: 108.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25997 - type: CableApcExtension - components: - - pos: 99.5,0.5 - parent: 0 - type: Transform -- uid: 25998 - type: CableApcExtension - components: - - pos: 99.5,-0.5 - parent: 0 - type: Transform -- uid: 25999 - type: CableApcExtension - components: - - pos: 99.5,-1.5 - parent: 0 - type: Transform -- uid: 26000 - type: CableApcExtension - components: - - pos: 99.5,-2.5 - parent: 0 - type: Transform -- uid: 26001 - type: CableApcExtension - components: - - pos: 99.5,-3.5 - parent: 0 - type: Transform -- uid: 26002 - type: CableApcExtension - components: - - pos: 99.5,-4.5 - parent: 0 - type: Transform -- uid: 26003 - type: CableApcExtension - components: - - pos: 99.5,1.5 - parent: 0 - type: Transform -- uid: 26004 - type: CableApcExtension - components: - - pos: 98.5,0.5 - parent: 0 - type: Transform -- uid: 26005 - type: CableApcExtension - components: - - pos: 97.5,0.5 - parent: 0 - type: Transform -- uid: 26006 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 92.5,-1.5 - parent: 0 - type: Transform -- uid: 26007 - type: CableApcExtension - components: - - pos: 108.5,0.5 - parent: 0 - type: Transform -- uid: 26008 - type: CableApcExtension - components: - - pos: 109.5,0.5 - parent: 0 - type: Transform -- uid: 26009 - type: CableApcExtension - components: - - pos: 110.5,0.5 - parent: 0 - type: Transform -- uid: 26010 - type: CableApcExtension - components: - - pos: 111.5,0.5 - parent: 0 - type: Transform -- uid: 26011 - type: CableApcExtension - components: - - pos: 112.5,0.5 - parent: 0 - type: Transform -- uid: 26012 - type: CableApcExtension - components: - - pos: 113.5,0.5 - parent: 0 - type: Transform -- uid: 26013 - type: CableApcExtension - components: - - pos: 114.5,0.5 - parent: 0 - type: Transform -- uid: 26014 - type: CableApcExtension - components: - - pos: 115.5,0.5 - parent: 0 - type: Transform -- uid: 26015 - type: CableApcExtension - components: - - pos: 115.5,1.5 - parent: 0 - type: Transform -- uid: 26016 - type: CableApcExtension - components: - - pos: 115.5,2.5 - parent: 0 - type: Transform -- uid: 26017 - type: CableApcExtension - components: - - pos: 115.5,3.5 - parent: 0 - type: Transform -- uid: 26018 - type: CableApcExtension - components: - - pos: 115.5,4.5 - parent: 0 - type: Transform -- uid: 26019 - type: CableApcExtension - components: - - pos: 115.5,5.5 - parent: 0 - type: Transform -- uid: 26020 - type: CableApcExtension - components: - - pos: 115.5,6.5 - parent: 0 - type: Transform -- uid: 26021 - type: CableApcExtension - components: - - pos: 114.5,6.5 - parent: 0 - type: Transform -- uid: 26022 - type: CableApcExtension - components: - - pos: 113.5,6.5 - parent: 0 - type: Transform -- uid: 26023 - type: CableApcExtension - components: - - pos: 113.5,7.5 - parent: 0 - type: Transform -- uid: 26024 - type: CableApcExtension - components: - - pos: 113.5,8.5 - parent: 0 - type: Transform -- uid: 26025 - type: CableApcExtension - components: - - pos: 113.5,9.5 - parent: 0 - type: Transform -- uid: 26026 - type: CableApcExtension - components: - - pos: 113.5,10.5 - parent: 0 - type: Transform -- uid: 26027 - type: CableApcExtension - components: - - pos: 113.5,11.5 - parent: 0 - type: Transform -- uid: 26028 - type: CableApcExtension - components: - - pos: 115.5,-0.5 - parent: 0 - type: Transform -- uid: 26029 - type: CableApcExtension - components: - - pos: 115.5,-1.5 - parent: 0 - type: Transform -- uid: 26030 - type: CableApcExtension - components: - - pos: 115.5,-2.5 - parent: 0 - type: Transform -- uid: 26031 - type: CableApcExtension - components: - - pos: 115.5,-3.5 - parent: 0 - type: Transform -- uid: 26032 - type: CableApcExtension - components: - - pos: 115.5,-4.5 - parent: 0 - type: Transform -- uid: 26033 - type: CableApcExtension - components: - - pos: 114.5,-4.5 - parent: 0 - type: Transform -- uid: 26034 - type: CableApcExtension - components: - - pos: 113.5,-4.5 - parent: 0 - type: Transform -- uid: 26035 - type: Windoor - components: - - pos: 96.5,-11.5 - parent: 0 - type: Transform -- uid: 26036 - type: Windoor - components: - - pos: 112.5,-11.5 - parent: 0 - type: Transform -- uid: 26037 - type: CableApcExtension - components: - - pos: 112.5,-10.5 - parent: 0 - type: Transform -- uid: 26038 - type: CableApcExtension - components: - - pos: 112.5,-9.5 - parent: 0 - type: Transform -- uid: 26039 - type: CableApcExtension - components: - - pos: 112.5,-8.5 - parent: 0 - type: Transform -- uid: 26040 - type: CableApcExtension - components: - - pos: 112.5,-7.5 - parent: 0 - type: Transform -- uid: 26041 - type: CableApcExtension - components: - - pos: 112.5,-6.5 - parent: 0 - type: Transform -- uid: 26042 - type: CableApcExtension - components: - - pos: 112.5,-5.5 - parent: 0 - type: Transform -- uid: 26043 - type: CableApcExtension - components: - - pos: 112.5,-4.5 - parent: 0 - type: Transform -- uid: 26044 - type: CableApcExtension - components: - - pos: 112.5,-13.5 - parent: 0 - type: Transform -- uid: 26045 - type: CableApcExtension - components: - - pos: 112.5,-14.5 - parent: 0 - type: Transform -- uid: 26046 - type: CableApcExtension - components: - - pos: 112.5,-15.5 - parent: 0 - type: Transform -- uid: 26047 - type: CableApcExtension - components: - - pos: 112.5,-16.5 - parent: 0 - type: Transform -- uid: 26048 - type: CableApcExtension - components: - - pos: 112.5,-17.5 - parent: 0 - type: Transform -- uid: 26049 - type: CableApcExtension - components: - - pos: 112.5,-18.5 - parent: 0 - type: Transform -- uid: 26050 - type: CableApcExtension - components: - - pos: 110.5,-18.5 - parent: 0 - type: Transform -- uid: 26051 - type: CableApcExtension - components: - - pos: 109.5,-18.5 - parent: 0 - type: Transform -- uid: 26052 - type: CableApcExtension - components: - - pos: 108.5,-18.5 - parent: 0 - type: Transform -- uid: 26053 - type: CableApcExtension - components: - - pos: 107.5,-18.5 - parent: 0 - type: Transform -- uid: 26054 - type: CableApcExtension - components: - - pos: 106.5,-18.5 - parent: 0 - type: Transform -- uid: 26055 - type: CableApcExtension - components: - - pos: 105.5,-18.5 - parent: 0 - type: Transform -- uid: 26056 - type: CableApcExtension - components: - - pos: 104.5,-18.5 - parent: 0 - type: Transform -- uid: 26057 - type: CableApcExtension - components: - - pos: 103.5,-18.5 - parent: 0 - type: Transform -- uid: 26058 - type: CableApcExtension - components: - - pos: 102.5,-18.5 - parent: 0 - type: Transform -- uid: 26059 - type: CableApcExtension - components: - - pos: 101.5,-18.5 - parent: 0 - type: Transform -- uid: 26060 - type: CableApcExtension - components: - - pos: 100.5,-18.5 - parent: 0 - type: Transform -- uid: 26061 - type: CableApcExtension - components: - - pos: 99.5,-18.5 - parent: 0 - type: Transform -- uid: 26062 - type: CableApcExtension - components: - - pos: 98.5,-18.5 - parent: 0 - type: Transform -- uid: 26063 - type: CableApcExtension - components: - - pos: 97.5,-18.5 - parent: 0 - type: Transform -- uid: 26064 - type: CableApcExtension - components: - - pos: 96.5,-18.5 - parent: 0 - type: Transform -- uid: 26065 - type: CableApcExtension - components: - - pos: 93.5,0.5 - parent: 0 - type: Transform -- uid: 26066 - type: CableApcExtension - components: - - pos: 96.5,-17.5 - parent: 0 - type: Transform -- uid: 26067 - type: CableApcExtension - components: - - pos: 96.5,-16.5 - parent: 0 - type: Transform -- uid: 26068 - type: CableApcExtension - components: - - pos: 96.5,-15.5 - parent: 0 - type: Transform -- uid: 26069 - type: CableApcExtension - components: - - pos: 96.5,-14.5 - parent: 0 - type: Transform -- uid: 26070 - type: CableApcExtension - components: - - pos: 96.5,-13.5 - parent: 0 - type: Transform -- uid: 26071 - type: CableApcExtension - components: - - pos: 96.5,-12.5 - parent: 0 - type: Transform -- uid: 26072 - type: CableApcExtension - components: - - pos: 96.5,-11.5 - parent: 0 - type: Transform -- uid: 26073 - type: CableApcExtension - components: - - pos: 96.5,-10.5 - parent: 0 - type: Transform -- uid: 26074 - type: CableApcExtension - components: - - pos: 96.5,-9.5 - parent: 0 - type: Transform -- uid: 26075 - type: CableApcExtension - components: - - pos: 96.5,-8.5 - parent: 0 - type: Transform -- uid: 26076 - type: CableApcExtension - components: - - pos: 96.5,-7.5 - parent: 0 - type: Transform -- uid: 26077 - type: CableApcExtension - components: - - pos: 96.5,-6.5 - parent: 0 - type: Transform -- uid: 26078 - type: CableApcExtension - components: - - pos: 96.5,-5.5 - parent: 0 - type: Transform -- uid: 26079 - type: CableApcExtension - components: - - pos: 96.5,-4.5 - parent: 0 - type: Transform -- uid: 26080 - type: CableApcExtension - components: - - pos: 95.5,-4.5 - parent: 0 - type: Transform -- uid: 26081 - type: CableApcExtension - components: - - pos: 94.5,-4.5 - parent: 0 - type: Transform -- uid: 26082 - type: CableApcExtension - components: - - pos: 94.5,-3.5 - parent: 0 - type: Transform -- uid: 26083 - type: CableApcExtension - components: - - pos: 94.5,-2.5 - parent: 0 - type: Transform -- uid: 26084 - type: CableApcExtension - components: - - pos: 94.5,-1.5 - parent: 0 - type: Transform -- uid: 26085 - type: CableApcExtension - components: - - pos: 94.5,-0.5 - parent: 0 - type: Transform -- uid: 26086 - type: CableApcExtension - components: - - pos: 94.5,0.5 - parent: 0 - type: Transform -- uid: 26087 - type: CableApcExtension - components: - - pos: 92.5,0.5 - parent: 0 - type: Transform -- uid: 26088 - type: CableApcExtension - components: - - pos: 92.5,-0.5 - parent: 0 - type: Transform -- uid: 26089 - type: CableApcExtension - components: - - pos: 92.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26090 - type: CableApcExtension - components: - - pos: 94.5,1.5 - parent: 0 - type: Transform -- uid: 26091 - type: CableApcExtension - components: - - pos: 94.5,2.5 - parent: 0 - type: Transform -- uid: 26092 - type: CableApcExtension - components: - - pos: 94.5,3.5 - parent: 0 - type: Transform -- uid: 26093 - type: CableApcExtension - components: - - pos: 94.5,4.5 - parent: 0 - type: Transform -- uid: 26094 - type: CableApcExtension - components: - - pos: 94.5,5.5 - parent: 0 - type: Transform -- uid: 26095 - type: CableApcExtension - components: - - pos: 94.5,6.5 - parent: 0 - type: Transform -- uid: 26096 - type: CableApcExtension - components: - - pos: 93.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26097 - type: CableApcExtension - components: - - pos: 92.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26098 - type: CableApcExtension - components: - - pos: 91.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26099 - type: CableApcExtension - components: - - pos: 95.5,6.5 - parent: 0 - type: Transform -- uid: 26100 - type: CableApcExtension - components: - - pos: 95.5,7.5 - parent: 0 - type: Transform -- uid: 26101 - type: CableApcExtension - components: - - pos: 95.5,8.5 - parent: 0 - type: Transform -- uid: 26102 - type: CableApcExtension - components: - - pos: 95.5,9.5 - parent: 0 - type: Transform -- uid: 26103 - type: CableApcExtension - components: - - pos: 95.5,10.5 - parent: 0 - type: Transform -- uid: 26104 - type: CableApcExtension - components: - - pos: 95.5,11.5 - parent: 0 - type: Transform -- uid: 26105 - type: CableApcExtension - components: - - pos: 95.5,12.5 - parent: 0 - type: Transform -- uid: 26106 - type: CableApcExtension - components: - - pos: 95.5,13.5 - parent: 0 - type: Transform -- uid: 26107 - type: Grille - components: - - pos: 92.5,-8.5 - parent: 0 - type: Transform -- uid: 26108 - type: CableApcExtension - components: - - pos: 96.5,13.5 - parent: 0 - type: Transform -- uid: 26109 - type: CableApcExtension - components: - - pos: 96.5,14.5 - parent: 0 - type: Transform -- uid: 26110 - type: CableApcExtension - components: - - pos: 96.5,15.5 - parent: 0 - type: Transform -- uid: 26111 - type: CableApcExtension - components: - - pos: 96.5,16.5 - parent: 0 - type: Transform -- uid: 26112 - type: CableApcExtension - components: - - pos: 96.5,17.5 - parent: 0 - type: Transform -- uid: 26113 - type: CableApcExtension - components: - - pos: 96.5,18.5 - parent: 0 - type: Transform -- uid: 26114 - type: CableApcExtension - components: - - pos: 97.5,18.5 - parent: 0 - type: Transform -- uid: 26115 - type: CableApcExtension - components: - - pos: 98.5,18.5 - parent: 0 - type: Transform -- uid: 26116 - type: CableApcExtension - components: - - pos: 99.5,18.5 - parent: 0 - type: Transform -- uid: 26117 - type: CableApcExtension - components: - - pos: 100.5,18.5 - parent: 0 - type: Transform -- uid: 26118 - type: CableApcExtension - components: - - pos: 101.5,18.5 - parent: 0 - type: Transform -- uid: 26119 - type: CableApcExtension - components: - - pos: 102.5,18.5 - parent: 0 - type: Transform -- uid: 26120 - type: CableApcExtension - components: - - pos: 103.5,18.5 - parent: 0 - type: Transform -- uid: 26121 - type: CableApcExtension - components: - - pos: 104.5,18.5 - parent: 0 - type: Transform -- uid: 26122 - type: CableApcExtension - components: - - pos: 105.5,18.5 - parent: 0 - type: Transform -- uid: 26123 - type: CableApcExtension - components: - - pos: 106.5,18.5 - parent: 0 - type: Transform -- uid: 26124 - type: CableApcExtension - components: - - pos: 107.5,18.5 - parent: 0 - type: Transform -- uid: 26125 - type: CableApcExtension - components: - - pos: 108.5,18.5 - parent: 0 - type: Transform -- uid: 26126 - type: CableApcExtension - components: - - pos: 109.5,18.5 - parent: 0 - type: Transform -- uid: 26127 - type: CableApcExtension - components: - - pos: 110.5,18.5 - parent: 0 - type: Transform -- uid: 26128 - type: CableApcExtension - components: - - pos: 111.5,18.5 - parent: 0 - type: Transform -- uid: 26129 - type: CableApcExtension - components: - - pos: 112.5,18.5 - parent: 0 - type: Transform -- uid: 26130 - type: CableApcExtension - components: - - pos: 112.5,17.5 - parent: 0 - type: Transform -- uid: 26131 - type: CableApcExtension - components: - - pos: 112.5,16.5 - parent: 0 - type: Transform -- uid: 26132 - type: CableApcExtension - components: - - pos: 112.5,15.5 - parent: 0 - type: Transform -- uid: 26133 - type: CableApcExtension - components: - - pos: 112.5,14.5 - parent: 0 - type: Transform -- uid: 26134 - type: CableApcExtension - components: - - pos: 104.5,19.5 - parent: 0 - type: Transform -- uid: 26135 - type: CableApcExtension - components: - - pos: 104.5,-19.5 - parent: 0 - type: Transform -- uid: 26136 - type: CableMV - components: - - pos: 92.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26137 - type: CableMV - components: - - pos: 92.5,-0.5 - parent: 0 - type: Transform -- uid: 26138 - type: CableMV - components: - - pos: 92.5,0.5 - parent: 0 - type: Transform -- uid: 26139 - type: CableMV - components: - - pos: 93.5,0.5 - parent: 0 - type: Transform -- uid: 26140 - type: CableMV - components: - - pos: 94.5,0.5 - parent: 0 - type: Transform -- uid: 26141 - type: CableMV - components: - - pos: 95.5,0.5 - parent: 0 - type: Transform -- uid: 26142 - type: CableMV - components: - - pos: 96.5,0.5 - parent: 0 - type: Transform -- uid: 26143 - type: CableMV - components: - - pos: 97.5,0.5 - parent: 0 - type: Transform -- uid: 26144 - type: CableMV - components: - - pos: 98.5,0.5 - parent: 0 - type: Transform -- uid: 26145 - type: CableMV - components: - - pos: 99.5,0.5 - parent: 0 - type: Transform -- uid: 26146 - type: CableApcExtension - components: - - pos: 103.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26147 - type: CableApcExtension - components: - - pos: 103.5,-2.5 - parent: 0 - type: Transform -- uid: 26148 - type: CableApcExtension - components: - - pos: 103.5,-3.5 - parent: 0 - type: Transform -- uid: 26149 - type: CableApcExtension - components: - - pos: 103.5,-4.5 - parent: 0 - type: Transform -- uid: 26150 - type: CableApcExtension - components: - - pos: 103.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26151 - type: CableApcExtension - components: - - pos: 102.5,-4.5 - parent: 0 - type: Transform -- uid: 26152 - type: CableApcExtension - components: - - pos: 104.5,-4.5 - parent: 0 - type: Transform -- uid: 26153 - type: CableApcExtension - components: - - pos: 105.5,-4.5 - parent: 0 - type: Transform -- uid: 26154 - type: CableApcExtension - components: - - pos: 106.5,-4.5 - parent: 0 - type: Transform -- uid: 26155 - type: CableApcExtension - components: - - pos: 107.5,-4.5 - parent: 0 - type: Transform -- uid: 26156 - type: CableApcExtension - components: - - pos: 107.5,-3.5 - parent: 0 - type: Transform -- uid: 26157 - type: CableApcExtension - components: - - pos: 107.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26158 - type: CableApcExtension - components: - - pos: 107.5,-7.5 - parent: 0 - type: Transform -- uid: 26159 - type: CableApcExtension - components: - - pos: 107.5,-8.5 - parent: 0 - type: Transform -- uid: 26160 - type: CableApcExtension - components: - - pos: 107.5,-9.5 - parent: 0 - type: Transform -- uid: 26161 - type: CableApcExtension - components: - - pos: 107.5,-10.5 - parent: 0 - type: Transform -- uid: 26162 - type: CableApcExtension - components: - - pos: 107.5,-11.5 - parent: 0 - type: Transform -- uid: 26163 - type: CableApcExtension - components: - - pos: 107.5,-12.5 - parent: 0 - type: Transform -- uid: 26164 - type: CableApcExtension - components: - - pos: 107.5,-13.5 - parent: 0 - type: Transform -- uid: 26165 - type: CableApcExtension - components: - - pos: 106.5,-12.5 - parent: 0 - type: Transform -- uid: 26166 - type: CableApcExtension - components: - - pos: 105.5,-12.5 - parent: 0 - type: Transform -- uid: 26167 - type: CableApcExtension - components: - - pos: 104.5,-12.5 - parent: 0 - type: Transform -- uid: 26168 - type: CableApcExtension - components: - - pos: 103.5,-12.5 - parent: 0 - type: Transform -- uid: 26169 - type: CableApcExtension - components: - - pos: 102.5,-12.5 - parent: 0 - type: Transform -- uid: 26170 - type: CableApcExtension - components: - - pos: 101.5,-12.5 - parent: 0 - type: Transform -- uid: 26171 - type: CableApcExtension - components: - - pos: 101.5,-11.5 - parent: 0 - type: Transform -- uid: 26172 - type: CableApcExtension - components: - - pos: 101.5,-10.5 - parent: 0 - type: Transform -- uid: 26173 - type: CableApcExtension - components: - - pos: 101.5,-9.5 - parent: 0 - type: Transform -- uid: 26174 - type: CableApcExtension - components: - - pos: 101.5,-8.5 - parent: 0 - type: Transform -- uid: 26175 - type: CableApcExtension - components: - - pos: 104.5,-11.5 - parent: 0 - type: Transform -- uid: 26176 - type: CableApcExtension - components: - - pos: 104.5,-10.5 - parent: 0 - type: Transform -- uid: 26177 - type: CableApcExtension - components: - - pos: 104.5,-9.5 - parent: 0 - type: Transform -- uid: 26178 - type: CableApcExtension - components: - - pos: 104.5,-8.5 - parent: 0 - type: Transform -- uid: 26179 - type: CableApcExtension - components: - - pos: 105.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26180 - type: CableApcExtension - components: - - pos: 105.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26181 - type: CableApcExtension - components: - - pos: 105.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26182 - type: CableApcExtension - components: - - pos: 103.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26183 - type: CableApcExtension - components: - - pos: 103.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26184 - type: CableApcExtension - components: - - pos: 103.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26185 - type: CableApcExtension - components: - - pos: 103.5,2.5 - parent: 0 - type: Transform -- uid: 26186 - type: CableApcExtension - components: - - pos: 103.5,1.5 - parent: 0 - type: Transform -- uid: 26187 - type: CableApcExtension - components: - - pos: 103.5,0.5 - parent: 0 - type: Transform -- uid: 26188 - type: CableApcExtension - components: - - pos: 104.5,0.5 - parent: 0 - type: Transform -- uid: 26189 - type: CableApcExtension - components: - - pos: 105.5,0.5 - parent: 0 - type: Transform -- uid: 26190 - type: CableApcExtension - components: - - pos: 106.5,0.5 - parent: 0 - type: Transform -- uid: 26191 - type: CableApcExtension - components: - - pos: 105.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26192 - type: CableApcExtension - components: - - pos: 105.5,6.5 - parent: 0 - type: Transform -- uid: 26193 - type: CableApcExtension - components: - - pos: 105.5,5.5 - parent: 0 - type: Transform -- uid: 26194 - type: CableApcExtension - components: - - pos: 104.5,5.5 - parent: 0 - type: Transform -- uid: 26195 - type: CableApcExtension - components: - - pos: 103.5,5.5 - parent: 0 - type: Transform -- uid: 26196 - type: CableApcExtension - components: - - pos: 102.5,5.5 - parent: 0 - type: Transform -- uid: 26197 - type: CableApcExtension - components: - - pos: 102.5,6.5 - parent: 0 - type: Transform -- uid: 26198 - type: CableApcExtension - components: - - pos: 102.5,7.5 - parent: 0 - type: Transform -- uid: 26199 - type: CableApcExtension - components: - - pos: 102.5,8.5 - parent: 0 - type: Transform -- uid: 26200 - type: CableApcExtension - components: - - pos: 102.5,9.5 - parent: 0 - type: Transform -- uid: 26201 - type: CableApcExtension - components: - - pos: 102.5,10.5 - parent: 0 - type: Transform -- uid: 26202 - type: CableApcExtension - components: - - pos: 102.5,11.5 - parent: 0 - type: Transform -- uid: 26203 - type: CableApcExtension - components: - - pos: 103.5,11.5 - parent: 0 - type: Transform -- uid: 26204 - type: CableApcExtension - components: - - pos: 104.5,11.5 - parent: 0 - type: Transform -- uid: 26205 - type: CableApcExtension - components: - - pos: 105.5,11.5 - parent: 0 - type: Transform -- uid: 26206 - type: CableApcExtension - components: - - pos: 106.5,11.5 - parent: 0 - type: Transform -- uid: 26207 - type: CableApcExtension - components: - - pos: 106.5,10.5 - parent: 0 - type: Transform -- uid: 26208 - type: CableApcExtension - components: - - pos: 106.5,9.5 - parent: 0 - type: Transform -- uid: 26209 - type: CableApcExtension - components: - - pos: 106.5,8.5 - parent: 0 - type: Transform -- uid: 26210 - type: CableApcExtension - components: - - pos: 106.5,7.5 - parent: 0 - type: Transform -- uid: 26211 - type: CableApcExtension - components: - - pos: 105.5,9.5 - parent: 0 - type: Transform -- uid: 26212 - type: CableApcExtension - components: - - pos: 104.5,9.5 - parent: 0 - type: Transform -- uid: 26213 - type: CableApcExtension - components: - - pos: 104.5,8.5 - parent: 0 - type: Transform -- uid: 26214 - type: CableApcExtension - components: - - pos: 104.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26215 - type: WallReinforced - components: - - pos: 108.5,-5.5 - parent: 0 - type: Transform -- uid: 26216 - type: WallReinforced - components: - - pos: 108.5,-4.5 - parent: 0 - type: Transform -- uid: 26217 - type: WallReinforced - components: - - pos: 108.5,-3.5 - parent: 0 - type: Transform -- uid: 26218 - type: WallReinforced - components: - - pos: 108.5,-2.5 - parent: 0 - type: Transform -- uid: 26219 - type: Grille - components: - - pos: 103.5,-8.5 - parent: 0 - type: Transform -- uid: 26220 - type: Grille - components: - - pos: 103.5,-7.5 - parent: 0 - type: Transform -- uid: 26221 - type: Grille - components: - - pos: 103.5,-6.5 - parent: 0 - type: Transform -- uid: 26222 - type: Grille - components: - - pos: 105.5,-8.5 - parent: 0 - type: Transform -- uid: 26223 - type: Grille - components: - - pos: 105.5,-7.5 - parent: 0 - type: Transform -- uid: 26224 - type: Grille - components: - - pos: 105.5,-6.5 - parent: 0 - type: Transform -- uid: 26225 - type: Grille - components: - - pos: 104.5,10.5 - parent: 0 - type: Transform -- uid: 26226 - type: AirlockCommandLocked - components: - - pos: 97.5,0.5 - parent: 0 - type: Transform -- uid: 26227 - type: AirlockCommandLocked - components: - - pos: 101.5,0.5 - parent: 0 - type: Transform -- uid: 26228 - type: AirlockCommandLocked - components: - - pos: 99.5,-1.5 - parent: 0 - type: Transform -- uid: 26229 - type: AirlockCommandLocked - components: - - pos: 98.5,-4.5 - parent: 0 - type: Transform -- uid: 26230 - type: AirlockCommandLocked - components: - - pos: 100.5,-4.5 - parent: 0 - type: Transform -- uid: 26231 - type: AirlockCommandLocked - components: - - pos: 104.5,-8.5 - parent: 0 - type: Transform -- uid: 26232 - type: AirlockCommandLocked - components: - - pos: 104.5,-6.5 - parent: 0 - type: Transform -- uid: 26233 - type: AirlockCommandLocked - components: - - pos: 104.5,-1.5 - parent: 0 - type: Transform -- uid: 26234 - type: HighSecCommandLocked - components: - - pos: 104.5,3.5 - parent: 0 - type: Transform -- uid: 26235 - type: AirlockMaintCommandLocked - components: - - pos: 107.5,0.5 - parent: 0 - type: Transform -- uid: 26236 - type: AirlockMaintCommandLocked - components: - - pos: 112.5,0.5 - parent: 0 - type: Transform -- uid: 26237 - type: AirSensor - components: - - pos: 94.5,0.5 - parent: 0 - type: Transform -- uid: 26238 - type: AirSensor - components: - - pos: 105.5,0.5 - parent: 0 - type: Transform -- uid: 26239 - type: AirSensor - components: - - pos: 104.5,4.5 - parent: 0 - type: Transform -- uid: 26240 - type: AirSensor - components: - - pos: 104.5,-4.5 - parent: 0 - type: Transform -- uid: 26241 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 100.5,-5.5 - parent: 0 - type: Transform - - devices: - - 26240 - - 25923 - - 25916 - type: DeviceList -- uid: 26242 - type: AirAlarm - components: - - pos: 103.5,7.5 - parent: 0 - type: Transform - - devices: - - 25920 - - 26239 - - 25918 - type: DeviceList -- uid: 26243 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 101.5,-0.5 - parent: 0 - type: Transform - - devices: - - 26238 - - 25917 - - 25921 - - 25922 - type: DeviceList -- uid: 26244 - type: Grille - components: - - pos: 93.5,-8.5 - parent: 0 - type: Transform -- uid: 26245 - type: Grille - components: - - pos: 90.5,-8.5 - parent: 0 - type: Transform -- uid: 26246 - type: Grille - components: - - pos: 89.5,-8.5 - parent: 0 - type: Transform -- uid: 26247 - type: Grille - components: - - pos: 88.5,-8.5 - parent: 0 - type: Transform -- uid: 26248 - type: Grille - components: - - pos: 87.5,-8.5 - parent: 0 - type: Transform -- uid: 26249 - type: Grille - components: - - pos: 86.5,-8.5 - parent: 0 - type: Transform -- uid: 26250 - type: Grille - components: - - pos: 85.5,-8.5 - parent: 0 - type: Transform -- uid: 26251 - type: Grille - components: - - pos: 84.5,-8.5 - parent: 0 - type: Transform -- uid: 26252 - type: Grille - components: - - pos: 83.5,-8.5 - parent: 0 - type: Transform -- uid: 26253 - type: Grille - components: - - pos: 82.5,-8.5 - parent: 0 - type: Transform -- uid: 26254 - type: Grille - components: - - pos: 80.5,-8.5 - parent: 0 - type: Transform -- uid: 26255 - type: Grille - components: - - pos: 78.5,-8.5 - parent: 0 - type: Transform -- uid: 26256 - type: Grille - components: - - pos: 77.5,-6.5 - parent: 0 - type: Transform -- uid: 26257 - type: Grille - components: - - pos: 78.5,-6.5 - parent: 0 - type: Transform -- uid: 26258 - type: Grille - components: - - pos: 79.5,-6.5 - parent: 0 - type: Transform -- uid: 26259 - type: Grille - components: - - pos: 80.5,-6.5 - parent: 0 - type: Transform -- uid: 26260 - type: Grille - components: - - pos: 81.5,-6.5 - parent: 0 - type: Transform -- uid: 26261 - type: Grille - components: - - pos: 82.5,-6.5 - parent: 0 - type: Transform -- uid: 26262 - type: Grille - components: - - pos: 83.5,-6.5 - parent: 0 - type: Transform -- uid: 26263 - type: Grille - components: - - pos: 88.5,-6.5 - parent: 0 - type: Transform -- uid: 26264 - type: Grille - components: - - pos: 90.5,-6.5 - parent: 0 - type: Transform -- uid: 26265 - type: Grille - components: - - pos: 86.5,-6.5 - parent: 0 - type: Transform -- uid: 26266 - type: GrilleBroken - components: - - pos: 79.5,-8.5 - parent: 0 - type: Transform -- uid: 26267 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 82.5,-8.5 - parent: 0 - type: Transform -- uid: 26268 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 91.5,-8.5 - parent: 0 - type: Transform -- uid: 26269 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 91.5,-6.5 - parent: 0 - type: Transform -- uid: 26270 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 89.5,-6.5 - parent: 0 - type: Transform -- uid: 26271 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 87.5,-6.5 - parent: 0 - type: Transform -- uid: 26272 - type: GrilleBroken - components: - - pos: 85.5,-6.5 - parent: 0 - type: Transform -- uid: 26273 - type: GrilleBroken - components: - - pos: 84.5,-6.5 - parent: 0 - type: Transform -- uid: 26274 - type: Grille - components: - - pos: 92.5,10.5 - parent: 0 - type: Transform -- uid: 26275 - type: Grille - components: - - pos: 91.5,10.5 - parent: 0 - type: Transform -- uid: 26276 - type: Grille - components: - - pos: 90.5,10.5 - parent: 0 - type: Transform -- uid: 26277 - type: Grille - components: - - pos: 89.5,10.5 - parent: 0 - type: Transform -- uid: 26278 - type: Grille - components: - - pos: 88.5,10.5 - parent: 0 - type: Transform -- uid: 26279 - type: Grille - components: - - pos: 87.5,10.5 - parent: 0 - type: Transform -- uid: 26280 - type: Grille - components: - - pos: 86.5,10.5 - parent: 0 - type: Transform -- uid: 26281 - type: Grille - components: - - pos: 83.5,10.5 - parent: 0 - type: Transform -- uid: 26282 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 85.5,10.5 - parent: 0 - type: Transform -- uid: 26283 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 84.5,10.5 - parent: 0 - type: Transform -- uid: 26284 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 82.5,10.5 - parent: 0 - type: Transform -- uid: 26285 - type: Grille - components: - - pos: 77.5,-23.5 - parent: 0 - type: Transform -- uid: 26286 - type: Grille - components: - - pos: 77.5,-22.5 - parent: 0 - type: Transform -- uid: 26287 - type: Grille - components: - - pos: 77.5,-21.5 - parent: 0 - type: Transform -- uid: 26288 - type: Grille - components: - - pos: 77.5,-20.5 - parent: 0 - type: Transform -- uid: 26289 - type: Grille - components: - - pos: 77.5,-19.5 - parent: 0 - type: Transform -- uid: 26290 - type: Grille - components: - - pos: 77.5,-18.5 - parent: 0 - type: Transform -- uid: 26291 - type: Grille - components: - - pos: 77.5,-17.5 - parent: 0 - type: Transform -- uid: 26292 - type: Grille - components: - - pos: 77.5,-16.5 - parent: 0 - type: Transform -- uid: 26293 - type: Grille - components: - - pos: 77.5,-15.5 - parent: 0 - type: Transform -- uid: 26294 - type: Grille - components: - - pos: 77.5,-14.5 - parent: 0 - type: Transform -- uid: 26295 - type: Grille - components: - - pos: 77.5,-12.5 - parent: 0 - type: Transform -- uid: 26296 - type: Grille - components: - - pos: 77.5,-8.5 - parent: 0 - type: Transform -- uid: 26297 - type: Grille - components: - - pos: 77.5,-10.5 - parent: 0 - type: Transform -- uid: 26298 - type: Grille - components: - - pos: 75.5,-6.5 - parent: 0 - type: Transform -- uid: 26299 - type: Grille - components: - - pos: 75.5,-7.5 - parent: 0 - type: Transform -- uid: 26300 - type: Grille - components: - - pos: 75.5,-8.5 - parent: 0 - type: Transform -- uid: 26301 - type: Grille - components: - - pos: 75.5,-9.5 - parent: 0 - type: Transform -- uid: 26302 - type: Grille - components: - - pos: 75.5,-10.5 - parent: 0 - type: Transform -- uid: 26303 - type: Grille - components: - - pos: 75.5,-11.5 - parent: 0 - type: Transform -- uid: 26304 - type: Grille - components: - - pos: 75.5,-12.5 - parent: 0 - type: Transform -- uid: 26305 - type: Grille - components: - - pos: 75.5,-13.5 - parent: 0 - type: Transform -- uid: 26306 - type: Grille - components: - - pos: 75.5,-14.5 - parent: 0 - type: Transform -- uid: 26307 - type: Grille - components: - - pos: 75.5,-18.5 - parent: 0 - type: Transform -- uid: 26308 - type: Grille - components: - - pos: 75.5,-19.5 - parent: 0 - type: Transform -- uid: 26309 - type: Grille - components: - - pos: 75.5,-20.5 - parent: 0 - type: Transform -- uid: 26310 - type: Grille - components: - - pos: 75.5,-21.5 - parent: 0 - type: Transform -- uid: 26311 - type: Grille - components: - - pos: 75.5,-22.5 - parent: 0 - type: Transform -- uid: 26312 - type: Grille - components: - - pos: 75.5,-24.5 - parent: 0 - type: Transform -- uid: 26313 - type: Grille - components: - - pos: 73.5,-22.5 - parent: 0 - type: Transform -- uid: 26314 - type: Grille - components: - - pos: 73.5,-21.5 - parent: 0 - type: Transform -- uid: 26315 - type: Grille - components: - - pos: 73.5,-20.5 - parent: 0 - type: Transform -- uid: 26316 - type: Grille - components: - - pos: 73.5,-19.5 - parent: 0 - type: Transform -- uid: 26317 - type: Grille - components: - - pos: 73.5,-18.5 - parent: 0 - type: Transform -- uid: 26318 - type: Grille - components: - - pos: 73.5,-17.5 - parent: 0 - type: Transform -- uid: 26319 - type: Grille - components: - - pos: 73.5,-14.5 - parent: 0 - type: Transform -- uid: 26320 - type: Grille - components: - - pos: 73.5,-13.5 - parent: 0 - type: Transform -- uid: 26321 - type: Grille - components: - - pos: 73.5,-12.5 - parent: 0 - type: Transform -- uid: 26322 - type: Grille - components: - - pos: 73.5,-11.5 - parent: 0 - type: Transform -- uid: 26323 - type: Grille - components: - - pos: 73.5,-10.5 - parent: 0 - type: Transform -- uid: 26324 - type: Grille - components: - - pos: 73.5,-9.5 - parent: 0 - type: Transform -- uid: 26325 - type: Grille - components: - - pos: 73.5,-8.5 - parent: 0 - type: Transform -- uid: 26326 - type: Grille - components: - - pos: 73.5,-5.5 - parent: 0 - type: Transform -- uid: 26327 - type: Grille - components: - - pos: 73.5,-3.5 - parent: 0 - type: Transform -- uid: 26328 - type: GrilleBroken - components: - - pos: 73.5,-4.5 - parent: 0 - type: Transform -- uid: 26329 - type: GrilleBroken - components: - - pos: 73.5,-2.5 - parent: 0 - type: Transform -- uid: 26330 - type: GrilleBroken - components: - - pos: 75.5,-5.5 - parent: 0 - type: Transform -- uid: 26331 - type: GrilleBroken - components: - - pos: 77.5,-7.5 - parent: 0 - type: Transform -- uid: 26332 - type: GrilleBroken - components: - - pos: 77.5,-9.5 - parent: 0 - type: Transform -- uid: 26333 - type: GrilleBroken - components: - - pos: 73.5,-7.5 - parent: 0 - type: Transform -- uid: 26334 - type: GrilleBroken - components: - - pos: 75.5,-17.5 - parent: 0 - type: Transform -- uid: 26335 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 73.5,-15.5 - parent: 0 - type: Transform -- uid: 26336 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 77.5,-13.5 - parent: 0 - type: Transform -- uid: 26337 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 77.5,-24.5 - parent: 0 - type: Transform -- uid: 26338 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 75.5,-23.5 - parent: 0 - type: Transform -- uid: 26339 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 75.5,-25.5 - parent: 0 - type: Transform -- uid: 26340 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 73.5,-23.5 - parent: 0 - type: Transform -- uid: 26341 - type: GrilleBroken - components: - - pos: 73.5,-24.5 - parent: 0 - type: Transform -- uid: 26342 - type: PoweredSmallLight - components: - - pos: 92.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26343 - type: PoweredSmallLight - components: - - pos: 92.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26344 - type: Catwalk - components: - - pos: 104.5,16.5 - parent: 0 - type: Transform -- uid: 26345 - type: Catwalk - components: - - pos: 104.5,17.5 - parent: 0 - type: Transform -- uid: 26346 - type: Catwalk - components: - - pos: 104.5,-17.5 - parent: 0 - type: Transform -- uid: 26347 - type: Catwalk - components: - - pos: 104.5,-16.5 - parent: 0 - type: Transform -- uid: 26348 - type: Chair - components: - - pos: 103.5,-19.5 - parent: 0 - type: Transform -- uid: 26349 - type: Chair - components: - - pos: 105.5,-19.5 - parent: 0 - type: Transform -- uid: 26350 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 103.5,19.5 - parent: 0 - type: Transform -- uid: 26351 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 105.5,19.5 - parent: 0 - type: Transform -- uid: 26352 - type: PoweredlightExterior - components: - - rot: 3.141592653589793 rad - pos: 104.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26353 - type: PoweredlightExterior - components: - - pos: 104.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26354 - type: PoweredlightExterior - components: - - rot: -1.5707963267948966 rad - pos: 98.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26355 - type: PoweredlightExterior - components: - - rot: 1.5707963267948966 rad - pos: 110.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26356 - type: PoweredlightExterior - components: - - rot: 1.5707963267948966 rad - pos: 111.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26357 - type: PoweredlightExterior - components: - - rot: -1.5707963267948966 rad - pos: 97.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26358 - type: PoweredlightExterior - components: - - rot: 1.5707963267948966 rad - pos: 113.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26359 - type: PoweredlightExterior - components: - - rot: -1.5707963267948966 rad - pos: 98.5,13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26360 - type: PoweredlightExterior - components: - - rot: 1.5707963267948966 rad - pos: 110.5,13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26361 - type: Poweredlight - components: - - pos: 99.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26362 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 109.5,-0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26363 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 101.5,11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26364 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 107.5,11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26365 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 107.5,7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26366 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 101.5,7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26367 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 99.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26368 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 101.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26369 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 107.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26370 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 108.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26371 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 100.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26372 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 101.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26373 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 101.5,-12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26374 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 107.5,-12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26375 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 107.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26376 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 106.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26377 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 102.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26378 - type: TableReinforced - components: - - pos: 101.5,5.5 - parent: 0 - type: Transform -- uid: 26379 - type: TableReinforced - components: - - pos: 101.5,4.5 - parent: 0 - type: Transform -- uid: 26380 - type: TableReinforced - components: - - pos: 107.5,4.5 - parent: 0 - type: Transform -- uid: 26381 - type: TableReinforced - components: - - pos: 107.5,5.5 - parent: 0 - type: Transform -- uid: 26382 - type: Table - components: - - pos: 108.5,-0.5 - parent: 0 - type: Transform -- uid: 26383 - type: TableWood - components: - - pos: 101.5,-2.5 - parent: 0 - type: Transform -- uid: 26384 - type: TableWood - components: - - pos: 102.5,-2.5 - parent: 0 - type: Transform -- uid: 26385 - type: TableWood - components: - - pos: 107.5,-2.5 - parent: 0 - type: Transform -- uid: 26386 - type: TableWood - components: - - pos: 107.5,-5.5 - parent: 0 - type: Transform -- uid: 26387 - type: TableWood - components: - - pos: 106.5,-5.5 - parent: 0 - type: Transform -- uid: 26388 - type: Rack - components: - - pos: 111.5,-0.5 - parent: 0 - type: Transform -- uid: 26389 - type: CableHV - components: - - pos: 109.5,1.5 - parent: 0 - type: Transform -- uid: 26390 - type: CableHV - components: - - pos: 109.5,0.5 - parent: 0 - type: Transform -- uid: 26391 - type: CableHV - components: - - pos: 109.5,-0.5 - parent: 0 - type: Transform -- uid: 26392 - type: CableHV - components: - - pos: 110.5,-0.5 - parent: 0 - type: Transform -- uid: 26393 - type: ComputerPowerMonitoring - components: - - rot: 3.141592653589793 rad - pos: 110.5,-0.5 - parent: 0 - type: Transform -- uid: 26394 - type: ComputerAlert - components: - - rot: 3.141592653589793 rad - pos: 109.5,-0.5 - parent: 0 - type: Transform -- uid: 26395 - type: ComputerCrewMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 107.5,-4.5 - parent: 0 - type: Transform -- uid: 26396 - type: ComputerMedicalRecords - components: - - rot: -1.5707963267948966 rad - pos: 107.5,-3.5 - parent: 0 - type: Transform -- uid: 26397 - type: ComputerStationRecords - components: - - pos: 106.5,-2.5 - parent: 0 - type: Transform -- uid: 26398 - type: ComputerRadar - components: - - pos: 98.5,2.5 - parent: 0 - type: Transform -- uid: 26399 - type: ShuttersNormalOpen - components: - - pos: 104.5,3.5 - parent: 0 - type: Transform -- uid: 26400 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 100.5,-0.5 - parent: 0 - type: Transform -- uid: 26401 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 111.5,-0.5 - parent: 0 - type: Transform -- uid: 26402 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 102.5,1.5 - parent: 0 - type: Transform -- uid: 26403 - type: SurveillanceCameraCommand - components: - - pos: 103.5,4.5 - parent: 0 - type: Transform -- uid: 26404 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 105.5,9.5 - parent: 0 - type: Transform -- uid: 26405 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 105.5,12.5 - parent: 0 - type: Transform -- uid: 26406 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 97.5,6.5 - parent: 0 - type: Transform -- uid: 26407 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 98.5,13.5 - parent: 0 - type: Transform -- uid: 26408 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 110.5,13.5 - parent: 0 - type: Transform -- uid: 26409 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 111.5,6.5 - parent: 0 - type: Transform -- uid: 26410 - type: SurveillanceCameraCommand - components: - - pos: 104.5,16.5 - parent: 0 - type: Transform -- uid: 26411 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 110.5,-11.5 - parent: 0 - type: Transform -- uid: 26412 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 104.5,-16.5 - parent: 0 - type: Transform -- uid: 26413 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 98.5,-11.5 - parent: 0 - type: Transform -- uid: 26414 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: 96.5,-0.5 - parent: 0 - type: Transform -- uid: 26415 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 92.5,5.5 - parent: 0 - type: Transform -- uid: 26416 - type: WeaponTurretSyndicateBroken - components: - - pos: 106.5,2.5 - parent: 0 - type: Transform -- uid: 26417 - type: WeaponTurretSyndicateBroken - components: - - pos: 102.5,2.5 - parent: 0 - type: Transform -- uid: 26418 - type: WeaponTurretSyndicateBroken - components: - - pos: 104.5,6.5 - parent: 0 - type: Transform -- uid: 26419 - type: WeaponTurretSyndicateBroken - components: - - pos: 107.5,6.5 - parent: 0 - type: Transform -- uid: 26420 - type: WeaponTurretSyndicateBroken - components: - - pos: 101.5,6.5 - parent: 0 - type: Transform -- uid: 26421 - type: WeaponTurretSyndicateBroken - components: - - pos: 101.5,12.5 - parent: 0 - type: Transform -- uid: 26422 - type: WeaponTurretSyndicateBroken - components: - - pos: 107.5,12.5 - parent: 0 - type: Transform -- uid: 26423 - type: ToyAi - components: - - pos: 104.485725,8.611769 - parent: 0 - type: Transform -- uid: 26424 - type: WindoorCommandLocked - components: - - rot: -1.5707963267948966 rad - pos: 103.5,9.5 - parent: 0 - type: Transform -- uid: 26425 - type: WindoorCommandLocked - components: - - rot: 1.5707963267948966 rad - pos: 105.5,9.5 - parent: 0 - type: Transform -- uid: 26426 - type: WindoorCommandLocked - components: - - rot: 1.5707963267948966 rad - pos: 107.5,9.5 - parent: 0 - type: Transform -- uid: 26427 - type: WindoorCommandLocked - components: - - rot: -1.5707963267948966 rad - pos: 101.5,9.5 - parent: 0 - type: Transform -- uid: 26428 - type: IntercomAll - components: - - rot: -1.5707963267948966 rad - pos: 105.5,8.5 - parent: 0 - type: Transform -- uid: 26429 - type: IntercomCommand - components: - - rot: 1.5707963267948966 rad - pos: 103.5,8.5 - parent: 0 - type: Transform -- uid: 26430 - type: IntercomEngineering - components: - - pos: 100.5,10.5 - parent: 0 - type: Transform -- uid: 26431 - type: IntercomSupply - components: - - rot: 1.5707963267948966 rad - pos: 99.5,9.5 - parent: 0 - type: Transform -- uid: 26432 - type: IntercomService - components: - - rot: 3.141592653589793 rad - pos: 100.5,8.5 - parent: 0 - type: Transform -- uid: 26433 - type: IntercomMedical - components: - - pos: 108.5,10.5 - parent: 0 - type: Transform -- uid: 26434 - type: IntercomScience - components: - - rot: -1.5707963267948966 rad - pos: 109.5,9.5 - parent: 0 - type: Transform -- uid: 26435 - type: IntercomSecurity - components: - - rot: 3.141592653589793 rad - pos: 108.5,8.5 - parent: 0 - type: Transform -- uid: 26436 - type: MachineFrame - components: - - pos: 99.5,2.5 - parent: 0 - type: Transform -- uid: 26437 - type: UnfinishedMachineFrame - components: - - pos: 100.5,2.5 - parent: 0 - type: Transform -- uid: 26438 - type: SurveillanceCameraRouterSupply - components: - - pos: 101.5,-11.5 - parent: 0 - type: Transform -- uid: 26439 - type: SurveillanceCameraRouterMedical - components: - - pos: 108.5,-10.5 - parent: 0 - type: Transform -- uid: 26440 - type: SurveillanceCameraRouterScience - components: - - pos: 107.5,-11.5 - parent: 0 - type: Transform -- uid: 26441 - type: SurveillanceCameraRouterEngineering - components: - - pos: 100.5,-10.5 - parent: 0 - type: Transform -- uid: 26442 - type: TelecomServer - components: - - pos: 102.5,-11.5 - parent: 0 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 26443 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 26443 - type: EncryptionKeyCargo - components: - - flags: InContainer - type: MetaData - - parent: 26442 - type: Transform - - canCollide: False - type: Physics -- uid: 26444 - type: TelecomServer - components: - - pos: 102.5,-10.5 - parent: 0 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 26445 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 26445 - type: EncryptionKeyEngineering - components: - - flags: InContainer - type: MetaData - - parent: 26444 - type: Transform - - canCollide: False - type: Physics -- uid: 26446 - type: SurveillanceCameraRouterCommand - components: - - pos: 101.5,-13.5 - parent: 0 - type: Transform -- uid: 26447 - type: TelecomServer - components: - - pos: 106.5,-11.5 - parent: 0 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 26463 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 26448 - type: TableGlass - components: - - pos: 104.5,-10.5 - parent: 0 - type: Transform -- uid: 26449 - type: ComputerSurveillanceCameraMonitor - components: - - pos: 104.5,-11.5 - parent: 0 - type: Transform -- uid: 26450 - type: PottedPlant21 - components: - - pos: 103.5,-5.5 - parent: 0 - type: Transform -- uid: 26451 - type: PottedPlant22 - components: - - pos: 101.5,-5.5 - parent: 0 - type: Transform -- uid: 26452 - type: filingCabinet - components: - - pos: 105.5,-5.5 - parent: 0 - type: Transform -- uid: 26453 - type: KitchenMicrowave - components: - - pos: 101.5,-2.5 - parent: 0 - type: Transform -- uid: 26454 - type: DonkpocketBoxSpawner - components: - - pos: 102.5,-2.5 - parent: 0 - type: Transform -- uid: 26455 - type: ChairOfficeDark - components: - - pos: 106.5,-4.5 - parent: 0 - type: Transform -- uid: 26456 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 106.5,-3.5 - parent: 0 - type: Transform -- uid: 26457 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 102.5,4.5 - parent: 0 - type: Transform -- uid: 26458 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 106.5,4.5 - parent: 0 - type: Transform -- uid: 26459 - type: ShowcaseRobot - components: - - pos: 103.5,2.5 - parent: 0 - type: Transform -- uid: 26460 - type: ShowcaseRobot - components: - - pos: 105.5,2.5 - parent: 0 - type: Transform -- uid: 26461 - type: ShowcaseRobot - components: - - pos: 105.5,-2.5 - parent: 0 - type: Transform -- uid: 26462 - type: ShowcaseRobot - components: - - pos: 103.5,-2.5 - parent: 0 - type: Transform -- uid: 26463 - type: EncryptionKeyScience - components: - - flags: InContainer - type: MetaData - - parent: 26447 - type: Transform - - canCollide: False - type: Physics -- uid: 26464 - type: TelecomServer - components: - - pos: 103.5,-13.5 - parent: 0 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 26546 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 26465 - type: ToolboxMechanicalFilled - components: - - pos: 111.43204,-0.5186236 - parent: 0 - type: Transform -- uid: 26466 - type: ToolboxElectricalFilled - components: - - pos: 111.55704,-0.3623736 - parent: 0 - type: Transform -- uid: 26467 - type: Multitool - components: - - pos: 111.71329,-0.5498736 - parent: 0 - type: Transform -- uid: 26468 - type: SheetGlass - components: - - pos: 108.52579,-0.4561236 - parent: 0 - type: Transform -- uid: 26469 - type: SheetPlasma - components: - - pos: 108.52579,-0.4873736 - parent: 0 - type: Transform -- uid: 26470 - type: SheetSteel - components: - - pos: 108.46329,-0.4404986 - parent: 0 - type: Transform -- uid: 26471 - type: PhoneInstrument - components: - - pos: 107.47891,5.5114894 - parent: 0 - type: Transform -- uid: 26472 - type: CigarSpent - components: - - pos: 107.65079,5.2458644 - parent: 0 - type: Transform -- uid: 26473 - type: BoxFolderBlack - components: - - pos: 101.44766,4.5896144 - parent: 0 - type: Transform -- uid: 26474 - type: BoxFolderBlack - components: - - pos: 107.55704,4.6052394 - parent: 0 - type: Transform -- uid: 26475 - type: BoxFolderGrey - components: - - pos: 106.51016,-5.446425 - parent: 0 - type: Transform -- uid: 26476 - type: Pen - components: - - pos: 106.80704,-5.290175 - parent: 0 - type: Transform -- uid: 26477 - type: Pen - components: - - pos: 107.73134,4.881879 - parent: 0 - type: Transform -- uid: 26478 - type: Pen - components: - - pos: 101.70009,4.866254 - parent: 0 - type: Transform -- uid: 26479 - type: WallmountTelescreen - components: - - rot: -1.5707963267948966 rad - pos: 108.5,-3.5 - parent: 0 - type: Transform -- uid: 26480 - type: AirCanister - components: - - pos: 110.5,2.5 - parent: 0 - type: Transform -- uid: 26481 - type: FirelockGlass - components: - - pos: -7.5,-38.5 - parent: 0 - type: Transform -- uid: 26482 - type: FirelockGlass - components: - - pos: -8.5,-38.5 - parent: 0 - type: Transform -- uid: 26483 - type: FirelockGlass - components: - - pos: -20.5,1.5 - parent: 0 - type: Transform -- uid: 26484 - type: FirelockGlass - components: - - pos: -21.5,1.5 - parent: 0 - type: Transform -- uid: 26485 - type: FirelockGlass - components: - - pos: -22.5,1.5 - parent: 0 - type: Transform -- uid: 26486 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -18.5,7.5 - parent: 0 - type: Transform - - devices: - - 26483 - - 26484 - - 26485 - - 24339 - - 3503 - - 3504 - - 5665 - - 5666 - - 5667 - - 10800 - - 10799 - type: DeviceList -- uid: 26487 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-3.5 - parent: 0 - type: Transform - - devices: - - 5642 - - 5660 - - 5661 - - invalid - - 24338 - - 26485 - - 26484 - - 26483 - - 26543 - - 26542 - - 26541 - type: DeviceList -- uid: 26488 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-66.5 - parent: 0 - type: Transform -- uid: 26489 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-65.5 - parent: 0 - type: Transform -- uid: 26490 - type: SpaceVillainArcadeFilled - components: - - pos: -67.5,-17.5 - parent: 0 - type: Transform -- uid: 26491 - type: Grille - components: - - pos: 22.5,59.5 - parent: 0 - type: Transform -- uid: 26492 - type: FlashlightLantern - components: - - pos: 6.441122,38.116646 - parent: 0 - type: Transform -- uid: 26493 - type: FlashlightLantern - components: - - pos: -24.456419,19.89809 - parent: 0 - type: Transform -- uid: 26494 - type: FlashlightLantern - components: - - pos: -40.537697,6.694974 - parent: 0 - type: Transform -- uid: 26495 - type: FlashlightLantern - components: - - pos: -44.511673,-13.055965 - parent: 0 - type: Transform -- uid: 26496 - type: FlashlightLantern - components: - - pos: -41.517128,-31.277687 - parent: 0 - type: Transform -- uid: 26497 - type: FlashlightLantern - components: - - pos: -24.696465,-58.425083 - parent: 0 - type: Transform -- uid: 26498 - type: FlashlightLantern - components: - - pos: 3.4482613,-68.257904 - parent: 0 - type: Transform -- uid: 26499 - type: TablePlasmaGlass - components: - - pos: 36.5,-39.5 - parent: 0 - type: Transform -- uid: 26500 - type: FlashlightLantern - components: - - pos: 45.4628,-6.4283414 - parent: 0 - type: Transform -- uid: 26501 - type: FlashlightLantern - components: - - pos: 51.482796,2.6505728 - parent: 0 - type: Transform -- uid: 26502 - type: FlashlightLantern - components: - - pos: 51.607796,2.3849478 - parent: 0 - type: Transform -- uid: 26503 - type: FlashlightLantern - components: - - pos: 48.47242,22.667204 - parent: 0 - type: Transform -- uid: 26504 - type: BananaPhoneInstrument - components: - - pos: 37.749847,-10.30641 - parent: 0 - type: Transform -- uid: 26505 - type: Grille - components: - - pos: 25.5,60.5 - parent: 0 - type: Transform -- uid: 26506 - type: Grille - components: - - pos: 26.5,60.5 - parent: 0 - type: Transform -- uid: 26507 - type: Grille - components: - - pos: 27.5,60.5 - parent: 0 - type: Transform -- uid: 26508 - type: Grille - components: - - pos: 28.5,60.5 - parent: 0 - type: Transform -- uid: 26509 - type: Grille - components: - - pos: 29.5,60.5 - parent: 0 - type: Transform -- uid: 26510 - type: Grille - components: - - pos: 31.5,60.5 - parent: 0 - type: Transform -- uid: 26511 - type: Grille - components: - - pos: 33.5,60.5 - parent: 0 - type: Transform -- uid: 26512 - type: Grille - components: - - pos: 34.5,60.5 - parent: 0 - type: Transform -- uid: 26513 - type: Grille - components: - - pos: 35.5,60.5 - parent: 0 - type: Transform -- uid: 26514 - type: Grille - components: - - pos: 36.5,60.5 - parent: 0 - type: Transform -- uid: 26515 - type: Grille - components: - - pos: 37.5,60.5 - parent: 0 - type: Transform -- uid: 26516 - type: Grille - components: - - pos: 38.5,60.5 - parent: 0 - type: Transform -- uid: 26517 - type: Grille - components: - - pos: 39.5,60.5 - parent: 0 - type: Transform -- uid: 26518 - type: Grille - components: - - pos: 40.5,60.5 - parent: 0 - type: Transform -- uid: 26519 - type: Grille - components: - - pos: 22.5,60.5 - parent: 0 - type: Transform -- uid: 26520 - type: Grille - components: - - pos: 23.5,60.5 - parent: 0 - type: Transform -- uid: 26521 - type: GrilleBroken - components: - - pos: 22.5,58.5 - parent: 0 - type: Transform -- uid: 26522 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 22.5,58.5 - parent: 0 - type: Transform -- uid: 26523 - type: GrilleBroken - components: - - pos: 30.5,60.5 - parent: 0 - type: Transform -- uid: 26524 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 41.5,60.5 - parent: 0 - type: Transform -- uid: 26525 - type: FirelockGlass - components: - - pos: -47.5,-26.5 - parent: 0 - type: Transform -- uid: 26526 - type: VendingMachineHappyHonk - components: - - flags: SessionSpecific - type: MetaData - - pos: 31.5,-13.5 - parent: 0 - type: Transform -- uid: 26527 - type: ClosetJanitorFilled - components: - - pos: -26.5,26.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 4.0733747 - - 15.323648 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26528 - type: CrewMonitoringServer - components: - - pos: 108.5,-7.5 - parent: 0 - type: Transform -- uid: 26529 - type: CableApcExtension - components: - - pos: -32.5,7.5 - parent: 0 - type: Transform -- uid: 26530 - type: CableApcExtension - components: - - pos: -32.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26531 - type: FirelockGlass - components: - - pos: -3.5,-22.5 - parent: 0 - type: Transform -- uid: 26532 - type: FirelockGlass - components: - - pos: -2.5,-22.5 - parent: 0 - type: Transform -- uid: 26533 - type: FirelockGlass - components: - - pos: -1.5,-22.5 - parent: 0 - type: Transform -- uid: 26534 - type: FirelockGlass - components: - - pos: -1.5,-60.5 - parent: 0 - type: Transform -- uid: 26535 - type: FirelockGlass - components: - - pos: -2.5,-60.5 - parent: 0 - type: Transform -- uid: 26536 - type: FirelockGlass - components: - - pos: -3.5,-60.5 - parent: 0 - type: Transform -- uid: 26537 - type: FirelockGlass - components: - - pos: -72.5,7.5 - parent: 0 - type: Transform -- uid: 26538 - type: FirelockGlass - components: - - pos: -72.5,8.5 - parent: 0 - type: Transform -- uid: 26539 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-9.5 - parent: 0 - type: Transform -- uid: 26540 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-8.5 - parent: 0 - type: Transform -- uid: 26541 - type: FirelockGlass - components: - - pos: -23.5,-1.5 - parent: 0 - type: Transform -- uid: 26542 - type: FirelockGlass - components: - - pos: -23.5,-0.5 - parent: 0 - type: Transform -- uid: 26543 - type: FirelockGlass - components: - - pos: -23.5,0.5 - parent: 0 - type: Transform -- uid: 26544 - type: SpawnPointResearchAssistant - components: - - pos: 23.5,-56.5 - parent: 0 - type: Transform -- uid: 26545 - type: SpawnPointResearchAssistant - components: - - pos: 24.5,-56.5 - parent: 0 - type: Transform -- uid: 26546 - type: EncryptionKeyCommand - components: - - flags: InContainer - type: MetaData - - parent: 26464 - type: Transform - - canCollide: False - type: Physics -- uid: 26547 - type: TelecomServer - components: - - pos: 106.5,-10.5 - parent: 0 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 26548 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 26548 - type: EncryptionKeyMedical - components: - - flags: InContainer - type: MetaData - - parent: 26547 - type: Transform - - canCollide: False - type: Physics -- uid: 26549 - type: SurveillanceCameraRouterService - components: - - pos: 100.5,-7.5 - parent: 0 - type: Transform -- uid: 26550 - type: SurveillanceCameraRouterGeneral - components: - - pos: 102.5,-7.5 - parent: 0 - type: Transform -- uid: 26551 - type: SurveillanceCameraRouterSecurity - components: - - pos: 107.5,-13.5 - parent: 0 - type: Transform -- uid: 26552 - type: TelecomServer - components: - - pos: 105.5,-13.5 - parent: 0 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 26553 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 26553 - type: EncryptionKeySecurity - components: - - flags: InContainer - type: MetaData - - parent: 26552 - type: Transform - - canCollide: False - type: Physics -- uid: 26554 - type: TelecomServer - components: - - pos: 100.5,-8.5 - parent: 0 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 26555 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 26555 - type: EncryptionKeyService - components: - - flags: InContainer - type: MetaData - - parent: 26554 - type: Transform - - canCollide: False - type: Physics -- uid: 26556 - type: TelecomServer - components: - - pos: 102.5,-8.5 - parent: 0 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 26557 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 26557 - type: EncryptionKeyCommon - components: - - flags: InContainer - type: MetaData - - parent: 26556 - type: Transform - - canCollide: False - type: Physics -- uid: 26558 - type: SurveillanceCameraWirelessRouterConstructed - components: - - pos: 106.5,-7.5 - parent: 0 - type: Transform -- uid: 26559 - type: SurveillanceCameraWirelessRouterEntertainment - components: - - pos: 106.5,-8.5 - parent: 0 - type: Transform -- uid: 26560 - type: SurveillanceCameraRouterConstructed - components: - - pos: 108.5,-8.5 - parent: 0 - type: Transform -... diff --git a/Resources/Maps/moose.yml b/Resources/Maps/moose.yml index 8706a0ceec..59a3d093ef 100644 --- a/Resources/Maps/moose.yml +++ b/Resources/Maps/moose.yml @@ -17,7 +17,7 @@ tilemap: 10: FloorAsteroidSand 11: FloorAsteroidTile 12: FloorBar - 13: FloorBasalt + 13: FloorBasaslt 14: FloorBlue 15: FloorBlueCircuit 16: FloorBoxing @@ -36,69 +36,65 @@ tilemap: 29: FloorDarkPavement 30: FloorDarkPavementVertical 31: FloorDarkPlastic - 32: FloorDesert - 33: FloorDirt - 34: FloorEighties - 35: FloorElevatorShaft - 36: FloorFlesh - 37: FloorFreezer - 38: FloorGlass - 39: FloorGold - 40: FloorGrass - 41: FloorGrassDark - 42: FloorGrassJungle - 43: FloorGrassLight - 44: FloorGreenCircuit - 45: FloorGym - 46: FloorHydro - 47: FloorKitchen - 48: FloorLaundry - 49: FloorLino - 50: FloorLowDesert - 51: FloorMetalDiamond - 52: FloorMime - 53: FloorMono - 54: FloorPlanetDirt - 55: FloorPlanetGrass - 56: FloorPlastic - 57: FloorRGlass - 58: FloorReinforced - 59: FloorRockVault - 60: FloorShowroom - 61: FloorShuttleBlue - 62: FloorShuttleOrange - 63: FloorShuttlePurple - 64: FloorShuttleRed - 65: FloorShuttleWhite - 66: FloorSilver - 67: FloorSnow - 68: FloorSteel - 69: FloorSteelDiagonal - 70: FloorSteelDiagonalMini - 71: FloorSteelDirty - 72: FloorSteelHerringbone - 73: FloorSteelMini - 74: FloorSteelMono - 75: FloorSteelOffset - 76: FloorSteelPavement - 77: FloorSteelPavementVertical - 78: FloorTechMaint - 79: FloorTechMaint2 - 80: FloorTechMaint3 - 81: FloorWhite - 82: FloorWhiteDiagonal - 83: FloorWhiteDiagonalMini - 84: FloorWhiteHerringbone - 85: FloorWhiteMini - 86: FloorWhiteMono - 87: FloorWhiteOffset - 88: FloorWhitePavement - 89: FloorWhitePavementVertical - 90: FloorWhitePlastic - 91: FloorWood - 92: FloorWoodTile - 93: Lattice - 94: Plating + 32: FloorDirt + 33: FloorEighties + 34: FloorElevatorShaft + 35: FloorFlesh + 36: FloorFreezer + 37: FloorGlass + 38: FloorGold + 39: FloorGrass + 40: FloorGrassDark + 41: FloorGrassJungle + 42: FloorGrassLight + 43: FloorGreenCircuit + 44: FloorGym + 45: FloorHydro + 46: FloorKitchen + 47: FloorLaundry + 48: FloorLino + 49: FloorMetalDiamond + 50: FloorMime + 51: FloorMono + 52: FloorPlastic + 53: FloorRGlass + 54: FloorReinforced + 55: FloorRockVault + 56: FloorShowroom + 57: FloorShuttleBlue + 58: FloorShuttleOrange + 59: FloorShuttlePurple + 60: FloorShuttleRed + 61: FloorShuttleWhite + 62: FloorSilver + 63: FloorSnow + 64: FloorSteel + 65: FloorSteelDiagonal + 66: FloorSteelDiagonalMini + 67: FloorSteelDirty + 68: FloorSteelHerringbone + 69: FloorSteelMini + 70: FloorSteelMono + 71: FloorSteelOffset + 72: FloorSteelPavement + 73: FloorSteelPavementVertical + 74: FloorTechMaint + 75: FloorTechMaint2 + 76: FloorTechMaint3 + 77: FloorWhite + 78: FloorWhiteDiagonal + 79: FloorWhiteDiagonalMini + 80: FloorWhiteHerringbone + 81: FloorWhiteMini + 82: FloorWhiteMono + 83: FloorWhiteOffset + 84: FloorWhitePavement + 85: FloorWhitePavementVertical + 86: FloorWhitePlastic + 87: FloorWood + 88: FloorWoodTile + 89: Lattice + 90: Plating entities: - uid: 0 type: WallReinforced @@ -139,7 +135,7 @@ entities: components: - type: MetaData - type: Transform - - index: 4 + - index: 11 type: Map - type: PhysicsMap - type: Broadphase @@ -153,190 +149,190 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: RAAAAEQAAAFEAAADLgAAABYAAAAuAAAAFgAAAi4AAABeAAAAXgAAAF4AAABPAAAAEgAAABIAAABPAAAAWwAAAUQAAANEAAADRAAAAhYAAAAuAAAAFgAAAy4AAAAWAAACXgAAAE8AAABeAAAAXgAAABIAAAASAAAAXgAAAFsAAAFEAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAADRAAAAEQAAANEAAACRAAAAUQAAABEAAADRAAAAEQAAAJEAAAARAAAA0QAAAFEAAACRAAAA0QAAAJEAAADRAAAAUQAAAJEAAABRAAAAUQAAAJEAAAARAAAAUQAAAFEAAADRAAAAEQAAABEAAAARAAAAEQAAAFEAAACRAAAAkQAAAJEAAABRAAAA0QAAANEAAABRAAAAUQAAANEAAAARAAAAkQAAANEAAABRAAAAUQAAABEAAACRAAAAkQAAABeAAAAFgAAARYAAAIWAAABFgAAARYAAAJeAAAATwAAAF4AAABKAAADSgAAAkoAAANKAAAASgAAAkQAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADEAAABEAAAARAAAA14AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAMQAAADEAAAAxAAAARAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAMQAAADEAAAAxAAAAMQAAAEQAAAFEAAADXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATwAAADEAAAAxAAAAMQAAADEAAABEAAADRAAAA14AAABeAAAATgAAAF4AAABVAAADVQAAAl4AAABeAAAATgAAAF4AAABeAAAAXgAAADEAAABeAAAARAAAA0QAAAFeAAAAXgAAAE4AAABeAAAAVQAAAVUAAABVAAADXgAAAE4AAABeAAAAWwAAAFsAAAJbAAACWwAAAkQAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAVQAAAF4AAABOAAAATwAAAFsAAAM7AAAAOwAAADsAAABEAAACRAAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAAlsAAAJeAAAAXgAAAF4AAABbAAABOwAAAFsAAAJbAAADRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAJbAAACXgAAAFsAAAFeAAAAWwAAATsAAABbAAABWwAAAQ== + tiles: QAAAAkAAAAFAAAADLQAAABYAAAMtAAAAFgAAAS0AAABaAAAAWgAAAFoAAABLAAAAEgAAABIAAABLAAAAVwAAAEAAAAFAAAACQAAAABYAAAItAAAAFgAAAS0AAAAWAAAAWgAAAEsAAABaAAAAWgAAABIAAAASAAAAWgAAAFcAAAFAAAAAQAAAAVoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAWAAACFgAAAFoAAABaAAAAWgAAAFoAAABaAAAAQAAAA0AAAAFAAAACQAAAA0AAAAJAAAAAQAAAAkAAAAJAAAABQAAAA0AAAAFAAAABQAAAAUAAAANAAAABQAAAA0AAAAJAAAACQAAAAEAAAAFAAAABQAAAAUAAAABAAAADQAAAA0AAAANAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAJAAAABQAAAAUAAAAJAAAABQAAAA0AAAAJAAAACQAAAAkAAAAJAAAAAQAAAAEAAAAFAAAACQAAAAkAAAAJAAAAAQAAAAEAAAAJaAAAAFgAAARYAAAMWAAAAFgAAAxYAAAJaAAAASwAAAFoAAABGAAABRgAAAkYAAABGAAAARgAAAkAAAABAAAADWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAADAAAABAAAAAQAAAAloAAABaAAAAWgAAAEoAAABKAAAASgAAAFoAAABaAAAAWgAAAFoAAAAwAAAAMAAAADAAAAAwAAAAQAAAAEAAAANaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAMAAAADAAAAAwAAAAMAAAAEAAAAFAAAAAWgAAAFoAAABKAAAAWgAAAFoAAABaAAAAWgAAAFoAAABKAAAASwAAADAAAAAwAAAAMAAAADAAAABAAAADQAAAAVoAAABaAAAASgAAAFoAAABRAAACUQAAAFoAAABaAAAASgAAAFoAAABaAAAAWgAAADAAAABaAAAAQAAAAUAAAANaAAAAWgAAAEoAAABaAAAAUQAAAVEAAAFRAAADWgAAAEoAAABaAAAAVwAAAFcAAAFXAAABVwAAA0AAAANAAAACWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAUQAAAFoAAABKAAAASwAAAFcAAAE3AAAANwAAADcAAABAAAABQAAAA1oAAABaAAAAWgAAAEoAAABaAAAAVwAAAFcAAAFaAAAAWgAAAFoAAABXAAADNwAAAFcAAANXAAABQAAAAkAAAANaAAAAWgAAAFoAAABaAAAAWgAAAFcAAAFXAAADWgAAAFcAAAFaAAAAVwAAAjcAAABXAAADVwAAAg== 0,-1: ind: 0,-1 - tiles: WwAAAFsAAANbAAADWwAAA1sAAAJEAAACRAAAAl4AAAAxAAAAMQAAADEAAABeAAAAWwAAAVsAAAFbAAACWwAAA1sAAANbAAACWwAAA1sAAANbAAADRAAAAUQAAABeAAAAMQAAADEAAAAxAAAAXgAAAFsAAANbAAABWwAAAVsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABXgAAAF4AAAAxAAAAXgAAAF4AAABeAAAARAAAA14AAABeAAAARAAAAEQAAABEAAACRAAAAEQAAAFEAAADRAAAAUQAAAJEAAABRAAAAEQAAABEAAABRAAAAEQAAABEAAAARAAAAEQAAABEAAADRAAAA0QAAANEAAADRAAAAkQAAAFEAAACRAAAAEQAAAFEAAABRAAAAkQAAABEAAABRAAAA0QAAAFEAAADRAAAAkQAAANEAAACRAAAAUQAAAFEAAACRAAAA0QAAANEAAACRAAAA0QAAAFEAAADRAAAA0QAAANEAAAAXgAAABYAAAAWAAACFgAAAF4AAABEAAAARAAAAl4AAABEAAADRAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAACRAAAAUQAAAJEAAACSgAAABYAAAFKAAABRAAAAkQAAAJeAAAAWwAAA1sAAABbAAAAXgAAAEQAAANEAAABRAAAAEQAAAFEAAACRAAAA14AAAAcAAAAXgAAAEQAAAFEAAACMQAAAFsAAANbAAABWwAAAF4AAABEAAADRAAAA0QAAANEAAAARAAAAEQAAAJKAAABFgAAAkoAAABEAAADRAAAAl4AAABbAAABWwAAAlsAAANeAAAARAAAAEQAAANeAAAAFgAAAhYAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAACXgAAABYAAAEWAAACFgAAAF4AAABEAAACRAAAAUQAAAJEAAABWwAAAl4AAAAEAAACBAAAAV4AAABEAAADRAAAAF4AAAAWAAAAFgAAAhYAAAAWAAADRAAAAEQAAAFEAAABRAAAAzsAAABeAAAABQAAAAQAAAJeAAAARAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAV4AAABbAAAAXgAAAAQAAAIEAAACXgAAAEQAAAJEAAADXgAAAEcAAABHAAAAXgAAAEQAAAJEAAABRAAAAEQAAAJeAAAAWwAAAl4AAAAEAAACBAAAAl4AAABEAAABRAAAA14AAABHAAAARwAAAF4AAABEAAABRAAAA0QAAABEAAADGgAAAQ== + tiles: VwAAAFcAAAJXAAABVwAAAFcAAAFAAAABQAAAAVoAAAAwAAAAMAAAADAAAABaAAAAVwAAAlcAAABXAAAAVwAAA1cAAANXAAAAVwAAA1cAAAJXAAACQAAAAUAAAANaAAAAMAAAADAAAAAwAAAAWgAAAFcAAANXAAACVwAAA1cAAAJaAAAAWgAAAFoAAABaAAAAWgAAAEAAAABAAAAAWgAAAFoAAAAwAAAAWgAAAFoAAABaAAAAQAAAAVoAAABaAAAAQAAAAkAAAAJAAAADQAAAAkAAAABAAAABQAAAAEAAAAFAAAACQAAAA0AAAAFAAAADQAAAAkAAAAFAAAADQAAAAkAAAANAAAABQAAAAEAAAAJAAAACQAAAAUAAAAFAAAACQAAAA0AAAABAAAACQAAAAUAAAAFAAAABQAAAA0AAAAFAAAABQAAAAUAAAABAAAACQAAAAkAAAABAAAADQAAAA0AAAAFAAAAAQAAAA0AAAANAAAADQAAAA0AAAAJAAAABWgAAABYAAAMWAAADFgAAAFoAAABAAAABQAAAA1oAAABAAAABQAAAAkAAAANaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAQAAAA0AAAANAAAAAQAAAAEAAAANAAAAARgAAARYAAANGAAAAQAAAAUAAAANaAAAAVwAAA1cAAAFXAAADWgAAAEAAAAJAAAACQAAAAkAAAAJAAAAAQAAAAVoAAAAcAAAAWgAAAEAAAAFAAAADMAAAAFcAAAFXAAABVwAAAVoAAABAAAACQAAAAUAAAAJAAAACQAAAA0AAAABGAAACFgAAAEYAAAJAAAAAQAAAAFoAAABXAAAAVwAAA1cAAABaAAAAQAAAAEAAAABaAAAAFgAAARYAAANaAAAAWgAAAFoAAABaAAAAQAAAAkAAAAFaAAAAWgAAAFoAAABaAAAAWgAAAEAAAABAAAAAWgAAABYAAAIWAAACFgAAAVoAAABAAAADQAAAAUAAAAJAAAAAVwAAAFoAAAAEAAABBAAAAloAAABAAAADQAAAA1oAAAAWAAACFgAAAhYAAAIWAAADQAAAA0AAAANAAAABQAAAAjcAAABaAAAABQAAAAQAAABaAAAAQAAAA0AAAANaAAAAWgAAAFoAAABaAAAAWgAAAEAAAABAAAABQAAAAFoAAABXAAACWgAAAAQAAAIEAAACWgAAAEAAAABAAAADWgAAAEMAAABDAAAAWgAAAEAAAAFAAAACQAAAAEAAAAJaAAAAVwAAAVoAAAAEAAACBAAAAloAAABAAAABQAAAAVoAAABDAAAAQwAAAFoAAABAAAAAQAAAAEAAAABAAAADGgAAAQ== -1,0: ind: -1,0 - tiles: RAAAAkQAAABeAAAAXgAAAF4AAABPAAAAXgAAAFsAAAFbAAABWwAAAlsAAAIWAAABWwAAADsAAAA7AAAAOwAAAEQAAABEAAAATwAAAF4AAABeAAAAXgAAAF4AAABbAAADWwAAAlsAAAJbAAABXgAAAFsAAANbAAADWwAAAFsAAAJEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAACRAAAAkQAAAMbAAABFgAAAhYAAAIbAAABHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAAEQAAAFEAAABGwAAAxYAAAMWAAADGwAAAhwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAABEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAAxsAAAIbAAABXgAAAF4AAABeAAAARAAAAkQAAAFEAAABRAAAAV4AAAAWAAACFgAAAxYAAAEWAAABFgAAAxYAAAMWAAAAFgAAAxYAAAEWAAAAFgAAAEQAAABEAAADRAAAAEQAAAJeAAAAFgAAARYAAAEcAAAAHAAAABYAAAEcAAAAHAAAABwAAAAWAAAAHAAAABwAAABEAAACRAAAAUQAAANEAAACXgAAABYAAAEWAAADHAAAABwAAAAWAAAAHAAAABwAAAAcAAAAFgAAARwAAAAcAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAADFgAAAhYAAAMWAAABFgAAAhYAAAAWAAABFgAAAAQAAAEEAAABBAAAAgQAAAEEAAAABAAAAF4AAAAWAAABFgAAAhYAAAEWAAADFgAAABYAAAMWAAACFgAAARYAAAEEAAACBAAAAAQAAAIEAAAABAAAAQQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAACBAAAAAQAAAAEAAAABAAAAgQAAAIEAAACBAAAAgQAAAIEAAABBAAAAgQAAAEEAAACBAAAAQQAAAEEAAABBAAAAQQAAAEEAAACBAAAAAUAAAAEAAAABAAAAgQAAAEEAAACBAAAAgQAAAEEAAACBQAAAAQAAAAKAAAACgAAAAoAAAAEAAAABAAAAAQAAAAEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: QAAAA0AAAABaAAAAWgAAAFoAAABLAAAAWgAAAFcAAAFXAAAAVwAAAFcAAAMWAAABVwAAADcAAAA3AAAANwAAAEAAAANAAAACSwAAAFoAAABaAAAAWgAAAFoAAABXAAACVwAAAFcAAAJXAAAAWgAAAFcAAABXAAAAVwAAAFcAAAFAAAACQAAAAVoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAABYAAAMWAAACQAAAAUAAAAAbAAAAFgAAAhYAAAIbAAADHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAAEAAAANAAAAAGwAAABYAAAAWAAACGwAAAxwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAABAAAADQAAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAGwAAARsAAAMbAAABWgAAAFoAAABaAAAAQAAAAEAAAABAAAADQAAAAloAAAAWAAADFgAAAxYAAAAWAAAAFgAAABYAAAAWAAABFgAAAhYAAAMWAAAAFgAAAUAAAANAAAABQAAAAEAAAAFaAAAAFgAAARYAAAAcAAAAHAAAABYAAAMcAAAAHAAAABwAAAAWAAADHAAAABwAAABAAAAAQAAAAUAAAAJAAAADWgAAABYAAAEWAAAAHAAAABwAAAAWAAADHAAAABwAAAAcAAAAFgAAAxwAAAAcAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAABYAAAAWAAABFgAAAxYAAAAWAAABFgAAAxYAAAEWAAAAFgAAAAQAAAIEAAABBAAAAgQAAAAEAAAABAAAAFoAAAAWAAACFgAAAhYAAAMWAAABFgAAARYAAAIWAAADFgAAAhYAAAAEAAABBAAAAAQAAAIEAAACBAAAAQQAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAABAAAAgQAAAAEAAACBAAAAAQAAAIEAAAABAAAAgQAAAIEAAAABAAAAQQAAAIEAAAABAAAAQQAAAIEAAAABAAAAAQAAAAEAAABBAAAAQQAAAAEAAACBAAAAAUAAAAEAAACBAAAAgQAAAIEAAABBAAAAgQAAAEEAAAABQAAAAQAAAIKAAAACgAAAAoAAAAEAAABBAAAAAQAAAAEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAlkAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: OwAAAF4AAAAEAAACBAAAAl4AAABEAAADRAAAAV4AAABHAAAARwAAAFAAAANEAAABRAAAAEQAAANEAAADXgAAAFsAAAJbAAABBAAAAgUAAABeAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADXgAAAEcAAABHAAAAUAAAA0QAAANEAAABRAAAAl4AAABeAAAAHAAAABsAAAIWAAACFgAAARsAAAFEAAADRAAAAF4AAABHAAAARwAAAF4AAABEAAAARAAAA0QAAANEAAAARAAAABwAAAAbAAAAFgAAABYAAAMbAAACRAAAA0QAAAFeAAAARwAAAEcAAABeAAAARAAAAkQAAABEAAABRAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAAFgAAAxYAAABeAAAAKQAAAykAAABEAAADRAAAA0QAAABEAAAAXgAAABoAAAIaAAAAGgAAA14AAABEAAABRAAAARYAAAAWAAADXgAAACkAAAMpAAABRAAAAEQAAABEAAACRAAAA14AAAAaAAADGgAAABoAAAEbAAACRAAAAkQAAAEWAAABFgAAA14AAAApAAADKQAAA0QAAAFEAAAARAAAAkQAAANeAAAAGgAAABoAAAMaAAADXgAAAEQAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAABoAAAEaAAAAGgAAA14AAABEAAADRAAAAl4AAAAEAAACBAAAAQQAAAEEAAACBQAAAAQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAARsAAANeAAAABAAAAQQAAAEEAAACBAAAAgQAAAIEAAABXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAGwAAABsAAAMbAAACBAAAAgQAAAAEAAABBAAAAgQAAAEEAAACBAAAAV4AAABeAAAATgAAAE4AAABOAAAAXgAAABsAAAAbAAAAGwAAAQQAAAEEAAABBAAAAQQAAAEAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAARsAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAEQAAAJEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAADRAAAAQ== + tiles: NwAAAFoAAAAEAAACBAAAAVoAAABAAAADQAAAAFoAAABDAAAAQwAAAEwAAANAAAACQAAAAEAAAABAAAACWgAAAFcAAANXAAABBAAAAQUAAABaAAAAQAAAA0AAAAFaAAAAWgAAAFoAAABaAAAAQAAAAEAAAABAAAABQAAAAloAAABaAAAAWgAAAFoAAABaAAAAWgAAAEAAAABAAAABWgAAAEMAAABDAAAATAAAAEAAAABAAAAAQAAAA1oAAABaAAAAHAAAABsAAAAWAAABFgAAARsAAABAAAADQAAAA1oAAABDAAAAQwAAAFoAAABAAAADQAAAAkAAAAJAAAABQAAAAhwAAAAbAAABFgAAAxYAAAMbAAAAQAAAAEAAAAJaAAAAQwAAAEMAAABaAAAAQAAAAkAAAAJAAAABQAAAAkAAAAJaAAAAWgAAAFoAAABaAAAAWgAAAEAAAAJAAAADWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAEAAAABAAAABFgAAARYAAANaAAAAKAAAAygAAAJAAAAAQAAAA0AAAANAAAADWgAAABoAAAAaAAAAGgAAAloAAABAAAABQAAAABYAAAMWAAADWgAAACgAAAEoAAAAQAAAAEAAAABAAAADQAAAAloAAAAaAAACGgAAARoAAAMbAAADQAAAAkAAAAMWAAACFgAAA1oAAAAoAAAAKAAAA0AAAAJAAAADQAAAAkAAAAJaAAAAGgAAABoAAAAaAAACWgAAAEAAAAFAAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABLAAAAWgAAABoAAAMaAAADGgAAAVoAAABAAAADQAAAAFoAAAAEAAAABAAAAgQAAAIEAAACBQAAAAQAAAJaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAGwAAABsAAANaAAAABAAAAgQAAAIEAAAABAAAAAQAAAAEAAAAWgAAAFoAAABaAAAAWgAAAFoAAABLAAAAGwAAAxsAAAMbAAAABAAAAAQAAAAEAAABBAAAAQQAAAIEAAACBAAAAFoAAABaAAAASgAAAEoAAABKAAAAWgAAABsAAAMbAAADGwAAAQQAAAEEAAAABAAAAgQAAAAAAAAAAAAAAFkAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAGwAAABsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAFkAAABZAAAAWgAAAEAAAANAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFoAAABAAAADQAAAAA== 1,0: ind: 1,0 - tiles: GgAAAhoAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAARoAAAIaAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAMAAAADAAAAAwAAAAMAAAAF4AAABEAAACRAAAAl4AAAAbAAACGwAAARsAAAFeAAAAXgAAAF4AAABOAAAAXgAAADAAAAAwAAAAMAAAADAAAABeAAAARAAAA0QAAANeAAAAFgAAAxYAAAMWAAAAXgAAAF4AAABeAAAATgAAAF4AAAAwAAAAMAAAADAAAAAwAAAAXgAAAEQAAAFEAAAAGwAAAhYAAAMWAAACFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAl4AAAAWAAABFgAAAhYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABRAAAAUQAAAFeAAAAGwAAABsAAAMbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAFgAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAABYAAAMWAAACFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAADTwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAQQAAAIFAAAABAAAAQQAAAIEAAACGwAAAV4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAACBAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GgAAABoAAANaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABAAAADQAAAAhoAAAAaAAADWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAQAAAA0AAAAFaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABLAAAAWgAAAFoAAABaAAAAWgAAAEAAAAJAAAADWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAEoAAABaAAAALwAAAC8AAAAvAAAALwAAAFoAAABAAAAAQAAAAVoAAAAbAAACGwAAAhsAAAJaAAAAWgAAAFoAAABKAAAAWgAAAC8AAAAvAAAALwAAAC8AAABaAAAAQAAAAUAAAABaAAAAFgAAAxYAAAEWAAAAWgAAAFoAAABaAAAASgAAAFoAAAAvAAAALwAAAC8AAAAvAAAAWgAAAEAAAAJAAAABGwAAAxYAAAAWAAAAFgAAAloAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABAAAACQAAAAFoAAAAWAAACFgAAABYAAAJaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAWAAADQAAAAUAAAANaAAAAGwAAABsAAAAbAAACWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABLAAAAFgAAAUAAAABAAAADWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABKAAAASgAAAEoAAABaAAAAWgAAABYAAAIWAAABFgAAAloAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAbAAAASwAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAEAAAABAAAAQQAAAIFAAAABAAAAQQAAAIEAAAAGwAAAVoAAABKAAAASgAAAEoAAABKAAAAWgAAAFoAAABaAAAABAAAAgQAAAAEAAACBAAAAlkAAAAAAAAAAAAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAWQAAAFkAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,-1: ind: 1,-1 - tiles: WwAAAFsAAAFeAAAAXgAAAE4AAABeAAAABAAAAAQAAAAEAAACBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAFsAAAFbAAADXgAAAE8AAABeAAAAXgAAAAQAAAEEAAACBAAAAAQAAAIEAAACBAAAAQQAAAEAAAAAAAAAAAAAAABEAAADXgAAAF4AAAAWAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAADRAAAAkQAAANEAAADRAAAAkQAAANEAAADRAAAAEQAAANEAAADRAAAAEQAAANEAAAARAAAA0QAAAFEAAAARAAAAUQAAAFEAAADRAAAAEQAAAJEAAAARAAAA0QAAANEAAADRAAAA0QAAANEAAACRAAAA0QAAAJEAAABRAAAAEQAAAFEAAAARAAAAEQAAAJEAAABRAAAA0QAAABEAAADRAAAA0QAAANEAAADRAAAAUQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAAhYAAAIWAAAAXgAAAF4AAAAiAAAAXgAAAF4AAABEAAADRAAAAF4AAAAWAAABFgAAAxYAAAFeAAAATwAAAF4AAABeAAAAXgAAAF4AAAAiAAAAIgAAACIAAABeAAAARAAAA0QAAAAWAAADFgAAAxYAAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAIgAAACIAAAAiAAAAXgAAAEQAAAFEAAADXgAAABYAAAEWAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAACIAAAAiAAAAIgAAAF4AAABEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAAAiAAAAIgAAACIAAABeAAAARAAAAUQAAABEAAACRAAAAU8AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAIgAAACIAAAAiAAAAXgAAAEQAAABEAAAARAAAAkQAAAFeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAF4AAAAbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAEaAAACGgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAAGgAAAhoAAANeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAg== + tiles: VwAAAFcAAAJaAAAAWgAAAEoAAABaAAAABAAAAAQAAAIEAAACBAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAFcAAANXAAABWgAAAEsAAABaAAAAWgAAAAQAAAAEAAACBAAAAQQAAAEEAAABBAAAAQQAAAEAAAAAAAAAAAAAAABAAAACWgAAAFoAAAAWAAACFgAAAVoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAQAAAAUAAAABAAAADQAAAA0AAAAFAAAAAQAAAA0AAAANAAAABQAAAAUAAAAJAAAABQAAAAEAAAABAAAABQAAAAEAAAANAAAABQAAAAUAAAAJAAAACQAAAAUAAAABAAAAAQAAAA0AAAANAAAACQAAAAkAAAAFAAAABQAAAAUAAAAFAAAACQAAAAkAAAAJAAAABQAAAAEAAAAJAAAAAQAAAA0AAAABAAAACQAAAA0AAAAJAAAABQAAAAUAAAAFAAAACWgAAAFoAAABaAAAAWgAAAFoAAAAWAAADFgAAABYAAAIWAAADWgAAAFoAAAAhAAAAWgAAAFoAAABAAAADQAAAAloAAAAWAAAAFgAAAxYAAAJaAAAASwAAAFoAAABaAAAAWgAAAFoAAAAhAAAAIQAAACEAAABaAAAAQAAAAUAAAAMWAAADFgAAABYAAAEWAAADWgAAAFoAAABaAAAAWgAAAFoAAABLAAAAIQAAACEAAAAhAAAAWgAAAEAAAABAAAACWgAAABYAAAEWAAADFgAAAloAAABaAAAAWgAAAFoAAABaAAAAWgAAACEAAAAhAAAAIQAAAFoAAABAAAAAQAAAAloAAABaAAAAWgAAAFoAAABaAAAAWgAAAEoAAABaAAAAWgAAAFoAAAAhAAAAIQAAACEAAABaAAAAQAAAA0AAAANAAAACQAAAA0sAAABaAAAAWgAAAFoAAABKAAAAWgAAAFoAAABaAAAAIQAAACEAAAAhAAAAWgAAAEAAAANAAAADQAAAAEAAAANaAAAAWgAAAFoAAABLAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABAAAACQAAAA1oAAAAbAAABWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAQAAAAkAAAAAaAAABGgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAEAAAABAAAADGgAAAhoAAABaAAAAWgAAAFoAAABKAAAASgAAAEoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABAAAADQAAAAA== -2,0: ind: -2,0 - tiles: RAAAAUQAAAFeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABXgAAABYAAAAWAAACFgAAARYAAAFOAAAAXgAAABkAAAAdAAADHQAAAx0AAAMZAAABXgAAAF4AAABEAAADRAAAAF4AAAAzAAAAMwAAADMAAAAWAAABTgAAAF4AAAAeAAABGwAAAiwAAAAbAAADHgAAAV4AAABeAAAARAAAAEQAAAFeAAAAMwAAADMAAAAzAAAAFgAAAk4AAABeAAAAHgAAAywAAAAbAAACLAAAAB4AAABeAAAAXgAAAEQAAAJEAAAAXgAAADMAAAAzAAAAMwAAABYAAABOAAAAXgAAAB4AAAMbAAACLAAAABsAAAEeAAACXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAARAAAA14AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAE8AAABEAAABRAAAAEQAAAFOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAACRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAABAAAAAQAAAAEAAAABAAAAgQAAAAEAAABXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAAXgAAAAQAAAIEAAACBAAAAgQAAAAEAAACBAAAAgQAAAEEAAABBAAAAAQAAAEEAAACBAAAAgQAAABEAAABRAAAAF4AAAAEAAACBAAAAgQAAAIEAAAABAAAAQQAAAIEAAAABAAAAQQAAAIEAAACBAAAAgQAAAEEAAACRAAAA0QAAABeAAAACAAAAAcAAAAEAAACBQAAAAQAAAAEAAABBAAAAAQAAAAEAAACBAAAAgQAAAEEAAAABQAAAEQAAABEAAAAXgAAAAYAAAAHAAAABAAAAQQAAAAEAAAABAAAAgQAAAEEAAACBAAAAAQAAAIEAAACBAAAAgQAAABeAAAAXgAAAF4AAAAEAAACBgAAAAQAAAIKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAXgAAAF4AAABeAAAABAAAAAYAAAAGAAAAXgAAAAYAAAAGAAAABAAAAQQAAAEEAAABBAAAAQQAAAAEAAABBAAAAQ== + tiles: QAAAAEAAAABaAAAAWgAAAFoAAABKAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAWAAACWgAAAFoAAABaAAAAWgAAAEAAAAJAAAAAWgAAABYAAAEWAAADFgAAARYAAANKAAAAWgAAABkAAAAdAAABHQAAAR0AAAEZAAACWgAAAFoAAABAAAABQAAAAFoAAAAxAAAAMQAAADEAAAAWAAADSgAAAFoAAAAeAAACGwAAAysAAAAbAAACHgAAAFoAAABaAAAAQAAAA0AAAABaAAAAMQAAADEAAAAxAAAAFgAAAEoAAABaAAAAHgAAACsAAAAbAAABKwAAAB4AAANaAAAAWgAAAEAAAABAAAADWgAAADEAAAAxAAAAMQAAABYAAAJKAAAAWgAAAB4AAAIbAAAAKwAAABsAAAMeAAACWgAAAFoAAABKAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAEoAAABLAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAEAAAAFAAAABQAAAAVoAAABKAAAAWgAAAFoAAABaAAAAWgAAAEoAAABKAAAASgAAAEoAAABaAAAAWgAAAEsAAABAAAACQAAAAEAAAAFKAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAQAAAAUAAAABAAAACQAAAA0AAAANaAAAAWgAAAFoAAABaAAAABAAAAQQAAAEEAAACBAAAAAQAAAIEAAAAWgAAAFoAAABaAAAAWgAAAEAAAABAAAABWgAAAAQAAAAEAAACBAAAAAQAAAIEAAACBAAAAgQAAAIEAAABBAAAAQQAAAEEAAABBAAAAQQAAAFAAAADQAAAAFoAAAAEAAACBAAAAAQAAAIEAAAABAAAAgQAAAIEAAAABAAAAQQAAAEEAAACBAAAAgQAAAIEAAABQAAAAEAAAAFaAAAACAAAAAcAAAAEAAAABQAAAAQAAAIEAAAABAAAAQQAAAEEAAAABAAAAgQAAAAEAAAABQAAAEAAAAFAAAACWgAAAAYAAAAHAAAABAAAAQQAAAIEAAACBAAAAAQAAAIEAAAABAAAAQQAAAEEAAAABAAAAgQAAAFaAAAAWgAAAFoAAAAEAAABBgAAAAQAAAEKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAWgAAAFoAAABaAAAABAAAAAYAAAAGAAAAWgAAAAYAAAAGAAAABAAAAgQAAAAEAAABBAAAAQQAAAEEAAAABAAAAQ== -2,-1: ind: -2,-1 - tiles: XgAAABYAAAMWAAACFgAAAF4AAABRAAABUQAAAFcAAABXAAAAVwAAAFEAAABRAAACRAAAAkQAAAJEAAADRAAAAl4AAAAWAAADFgAAARYAAABeAAAAUQAAAFEAAANRAAADUQAAAFEAAAJRAAADXgAAAEQAAAJEAAAARAAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAEQAAAJeAAAARAAAAUQAAAJEAAAARAAAAkQAAABEAAACRAAAAUQAAAFEAAACRAAAAEQAAAJEAAADRAAAA0QAAAJEAAABRAAAAEQAAABEAAACRAAAA0QAAABEAAACRAAAA0QAAABEAAAARAAAAEQAAAFEAAADRAAAAkQAAAJEAAADRAAAAkQAAANEAAADRAAAA0QAAAFEAAACRAAAAkQAAABEAAACRAAAAEQAAAFEAAABRAAAAkQAAABEAAABRAAAA0QAAANEAAAAXgAAABYAAAIWAAABFgAAABYAAAMWAAAAFgAAAxYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAACkAAAMpAAADKQAAASkAAAFOAAAARAAAA0QAAAJEAAAARAAAAkQAAANEAAADRAAAAF4AAABeAAAAXgAAAF4AAAApAAADKQAAACkAAAApAAAAXgAAAEQAAABEAAABRAAAAEQAAAFEAAABRAAAA0QAAAJeAAAAGgAAAhoAAANeAAAAKQAAACkAAAMpAAAAKQAAAV4AAABEAAADRAAAAUQAAABEAAADRAAAAEQAAAJEAAACRAAAABoAAAEaAAADXgAAACkAAAMpAAABKQAAASkAAANeAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAaAAABGgAAA14AAAApAAADKQAAAikAAAMpAAABRAAAAEQAAAFEAAADXgAAAEQAAAFEAAACRAAAAUQAAABeAAAAGgAAAxoAAANeAAAAKQAAACkAAAApAAAAKQAAAEQAAAFEAAABRAAAA14AAABEAAADRAAAAEQAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAAJOAAAARAAAAEQAAAFEAAAARAAAAE4AAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAABeAAAARAAAAEQAAANEAAAATgAAAEQAAANEAAAARAAAAUQAAABeAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAFgAAAA== + tiles: WgAAABYAAAEWAAADFgAAAVoAAABNAAADTQAAAVMAAABTAAAAUwAAAE0AAAFNAAADQAAAAEAAAAJAAAACQAAAAloAAAAWAAACFgAAAxYAAAFaAAAATQAAA00AAAFNAAADTQAAAE0AAABNAAACWgAAAEAAAABAAAADQAAAAkAAAAJaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABAAAAAQAAAA0AAAAFaAAAAQAAAA0AAAAJAAAACQAAAAkAAAAFAAAABQAAAAkAAAANAAAACQAAAA0AAAAFAAAABQAAAAEAAAAJAAAADQAAAA0AAAAJAAAAAQAAAAEAAAANAAAADQAAAA0AAAABAAAACQAAAAEAAAANAAAABQAAAAEAAAANAAAACQAAAA0AAAAJAAAAAQAAAAUAAAANAAAACQAAAAkAAAANAAAADQAAAAEAAAAJAAAAAQAAAAkAAAAFAAAACQAAAAUAAAAJAAAAAWgAAABYAAAEWAAACFgAAAxYAAAMWAAADFgAAAxYAAANaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAEAAAANAAAABQAAAAloAAABaAAAAWgAAAFoAAABaAAAAWgAAACgAAAAoAAABKAAAASgAAAJKAAAAQAAAAEAAAANAAAAAQAAAAkAAAABAAAAAQAAAA1oAAABaAAAAWgAAAFoAAAAoAAACKAAAAigAAAAoAAABWgAAAEAAAABAAAADQAAAA0AAAANAAAABQAAAAEAAAAFaAAAAGgAAARoAAANaAAAAKAAAASgAAAIoAAABKAAAAVoAAABAAAABQAAAAEAAAABAAAAAQAAAAEAAAANAAAADQAAAAhoAAAIaAAABWgAAACgAAAMoAAABKAAAAygAAANaAAAAQAAAAkAAAAFaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAaAAACGgAAAloAAAAoAAAAKAAAASgAAAAoAAADQAAAAEAAAABAAAABWgAAAEAAAAFAAAACQAAAAUAAAABaAAAAGgAAARoAAANaAAAAKAAAAigAAAAoAAADKAAAAkAAAAJAAAABQAAAAVoAAABAAAACQAAAA0AAAAFAAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABAAAABQAAAAUAAAANKAAAAQAAAAEAAAAJAAAABQAAAAEoAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAABaAAAAQAAAAkAAAAJAAAABSgAAAEAAAANAAAABQAAAAEAAAAFaAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAFgAAAg== -2,-2: ind: -2,-2 - tiles: XgAAAF4AAABeAAAATgAAAF4AAABRAAACUQAAAVEAAABRAAABUQAAAl4AAABeAAAAFgAAAhYAAAAWAAABXgAAAE8AAABeAAAAXgAAAE4AAABeAAAAUQAAAF4AAABRAAABUQAAAlEAAAMWAAACFgAAARYAAAIWAAADFgAAAEQAAANeAAAAXgAAAF4AAABOAAAAXgAAAFEAAAFRAAADUQAAAFEAAANRAAAAXgAAABYAAAMWAAABFgAAABYAAAFEAAADXgAAAF4AAABPAAAAXgAAAF4AAABRAAABXgAAAFEAAAJRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAfAAABHwAAAh8AAABeAAAAUQAAAFEAAAFRAAABUQAAAlEAAAIfAAAAHwAAAh8AAAMfAAACHwAAAF4AAABeAAAAHwAAAR8AAAMfAAACXgAAAFEAAAFRAAABUQAAAVEAAAFeAAAAHwAAARwAAAAcAAAAHAAAAB8AAAFeAAAAXgAAAB8AAAAfAAAAHwAAAF4AAABRAAABUQAAA1EAAABRAAACXgAAAB8AAAIfAAABHwAAAB8AAAAfAAABXgAAAF4AAAAfAAABHwAAAR8AAABeAAAAUQAAAVEAAAFRAAABUQAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAF4AAABeAAAAXgAAAFEAAANeAAAAXgAAAF4AAABRAAADUQAAAV4AAABeAAAAUQAAAlEAAABRAAABUQAAA1EAAAJeAAAAUQAAA1EAAAJRAAADUQAAA1EAAAJRAAACUQAAAFEAAAJRAAADUQAAAFEAAANRAAABUQAAAVEAAANRAAADXgAAAFEAAAFRAAACUQAAA1EAAANeAAAAUQAAAFEAAAFRAAAAUQAAAlEAAABRAAAAUQAAA1EAAANRAAABUQAAAF4AAABRAAADUQAAAFEAAABRAAABUQAAAVEAAABRAAAAUQAAA1EAAAJRAAAAUQAAAlEAAAJRAAAAUQAAA1EAAABeAAAAXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAUQAAAVEAAANRAAADUQAAAFEAAAJRAAACXgAAAF4AAAAWAAADFgAAAhYAAABeAAAAUQAAAVEAAAFeAAAAUQAAA14AAABeAAAAXgAAAFEAAANRAAABUQAAA14AAABeAAAAGwAAAhYAAAIbAAACXgAAAFEAAABRAAACUQAAAVEAAANRAAACUQAAAF4AAABRAAABUQAAAl4AAABeAAAAXgAAABYAAAIWAAACFgAAAl4AAABRAAABUQAAAVcAAABXAAAAVwAAAFEAAANeAAAARAAAA0QAAAJEAAADRAAAAw== + tiles: WgAAAFoAAABaAAAASgAAAFoAAABNAAADTQAAAU0AAAJNAAACTQAAAVoAAABaAAAAFgAAAxYAAAAWAAAAWgAAAEsAAABaAAAAWgAAAEoAAABaAAAATQAAA1oAAABNAAAATQAAA00AAAMWAAAAFgAAABYAAAAWAAADFgAAAEAAAABaAAAAWgAAAFoAAABKAAAAWgAAAE0AAABNAAADTQAAAU0AAANNAAAAWgAAABYAAAAWAAACFgAAABYAAAFAAAAAWgAAAFoAAABLAAAAWgAAAFoAAABNAAADWgAAAE0AAANNAAADWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAfAAACHwAAAB8AAAJaAAAATQAAAk0AAAJNAAACTQAAAE0AAAMfAAACHwAAAR8AAAEfAAACHwAAA1oAAABaAAAAHwAAAB8AAAIfAAADWgAAAE0AAAJNAAAATQAAAk0AAAFaAAAAHwAAAxwAAAAcAAAAHAAAAB8AAANaAAAAWgAAAB8AAAMfAAAAHwAAA1oAAABNAAADTQAAA00AAABNAAACWgAAAB8AAAMfAAAAHwAAAB8AAAIfAAABWgAAAFoAAAAfAAACHwAAAR8AAABaAAAATQAAA00AAAFNAAAATQAAAFoAAABaAAAAWgAAAFoAAABaAAAATQAAAloAAABaAAAAWgAAAE0AAABaAAAAWgAAAFoAAABNAAADTQAAAFoAAABaAAAATQAAAU0AAABNAAACTQAAAU0AAAFaAAAATQAAA00AAAJNAAACTQAAA00AAAJNAAAATQAAA00AAAJNAAACTQAAAE0AAAFNAAABTQAAA00AAANNAAADWgAAAE0AAAJNAAAATQAAAU0AAANaAAAATQAAAE0AAAFNAAACTQAAAE0AAAJNAAADTQAAAU0AAAFNAAAATQAAAloAAABNAAAATQAAAU0AAABNAAABTQAAAk0AAAFNAAABTQAAAU0AAAJNAAAATQAAAU0AAABNAAAATQAAAk0AAAJaAAAAWgAAAFoAAAAWAAABWgAAAFoAAABaAAAAWgAAAFoAAABNAAACTQAAAU0AAABNAAABTQAAAk0AAAFNAAACWgAAAFoAAAAWAAADFgAAARYAAAJaAAAATQAAAU0AAABaAAAATQAAAVoAAABaAAAAWgAAAE0AAAJNAAADTQAAA1oAAABaAAAAGwAAARYAAAIbAAABWgAAAE0AAABNAAAATQAAAE0AAANNAAAATQAAAVoAAABNAAABTQAAAloAAABaAAAAWgAAABYAAAIWAAAAFgAAA1oAAABNAAADTQAAA1MAAABTAAAAUwAAAE0AAABaAAAAQAAAAUAAAANAAAABQAAAAg== -1,-2: ind: -1,-2 - tiles: RAAAAEQAAABEAAABXgAAAAAAAABeAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAEQAAABEAAACRAAAAV4AAABdAAAAXgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABEAAABRAAAA0QAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFEAAABXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAEQAAAJEAAACRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAA0QAAAFeAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAWAAACFgAAABYAAAEWAAADRAAAAUQAAABEAAADXgAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAAFgAAARYAAAIWAAACFgAAAUQAAANEAAADRAAAA14AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAAXgAAABYAAAEWAAADFgAAAhYAAAJEAAABRAAAAUQAAAFeAAAAXgAAAC4AAAAuAAAAXgAAAC8AAAAvAAAALwAAAC8AAAAWAAABFgAAAxYAAAAWAAACRAAAAUQAAAFEAAADXgAAAC4AAAAWAAACLgAAAF4AAABPAAAAXgAAAF4AAABeAAAAFgAAAxYAAAIWAAABFgAAAEQAAAJEAAAARAAAA14AAAAWAAABLgAAABYAAABeAAAAJQAAACUAAAAlAAAAXgAAABYAAAAWAAABFgAAABYAAAJEAAABRAAAAEQAAAAuAAAALgAAABYAAAMuAAAAXgAAACUAAAAlAAAAJQAAAF4AAAAWAAAAFgAAABYAAAEWAAABRAAAAkQAAANEAAADXgAAABYAAAEuAAAAFgAAAF4AAABeAAAAXgAAAE8AAABeAAAAFgAAAxYAAAAWAAADWwAAAEQAAAFEAAABRAAAAV4AAAAuAAAAFgAAAy4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANEAAAARAAAAF4AAABeAAAAFgAAAC4AAAAWAAAALgAAAF4AAABeAAAAXgAAAF4AAAASAAAAEgAAAF4AAABbAAABRAAAAkQAAABEAAADFgAAAi4AAAAWAAACLgAAABYAAANeAAAAXgAAAF4AAABeAAAAEgAAABIAAABeAAAAWwAAAw== + tiles: QAAAAkAAAAJAAAAAWgAAAAAAAABaAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAEAAAAFAAAADQAAAA1oAAABZAAAAWgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAABAAAACQAAAAEAAAAJaAAAAWQAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAQAAAAUAAAAJAAAABWgAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAFkAAABZAAAAAAAAAAAAAAAAAAAAWQAAAEAAAAFAAAAAQAAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABAAAABQAAAAUAAAABaAAAALgAAAC4AAAAuAAAALgAAAC4AAAAuAAAALgAAAC4AAAAWAAAAFgAAAxYAAAIWAAAAQAAAA0AAAABAAAABWgAAAC4AAAAuAAAALgAAAC4AAAAuAAAALgAAAC4AAAAuAAAAFgAAARYAAAEWAAABFgAAA0AAAAJAAAACQAAAA1oAAAAuAAAALgAAAC4AAAAuAAAALgAAAC4AAAAuAAAAWgAAABYAAAMWAAACFgAAAhYAAABAAAABQAAAAUAAAANaAAAAWgAAAC0AAAAtAAAAWgAAAC4AAAAuAAAALgAAAC4AAAAWAAACFgAAAhYAAAMWAAADQAAAA0AAAABAAAABWgAAAC0AAAAWAAADLQAAAFoAAABLAAAAWgAAAFoAAABaAAAAFgAAAxYAAAIWAAADFgAAAUAAAAFAAAACQAAAA1oAAAAWAAAALQAAABYAAANaAAAAJAAAACQAAAAkAAAAWgAAABYAAAIWAAACFgAAAxYAAANAAAABQAAAAEAAAAAtAAAALQAAABYAAAEtAAAAWgAAACQAAAAkAAAAJAAAAFoAAAAWAAAAFgAAARYAAAIWAAABQAAAAkAAAAFAAAAAWgAAABYAAAMtAAAAFgAAAFoAAABaAAAAWgAAAEsAAABaAAAAFgAAAhYAAAIWAAACVwAAA0AAAAJAAAABQAAAA1oAAAAtAAAAFgAAAi0AAAAWAAABWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFcAAAJAAAABQAAAAVoAAABaAAAAFgAAAC0AAAAWAAAALQAAAFoAAABaAAAAWgAAAFoAAAASAAAAEgAAAFoAAABXAAAAQAAAA0AAAAJAAAADFgAAAS0AAAAWAAABLQAAABYAAABaAAAAWgAAAFoAAABaAAAAEgAAABIAAABaAAAAVwAAAg== 0,-2: ind: 0,-2 - tiles: XgAAAE4AAABOAAAAXgAAAEQAAANEAAABRAAAAF4AAAAaAAAAGgAAAhoAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAARAAAAEQAAABEAAACFgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAACIAAAAiAAAAXQAAAF0AAABdAAAAXgAAAEQAAANEAAAARAAAAhYAAANeAAAATgAAAE4AAABOAAAAXgAAAF4AAAAiAAAAIgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAIgAAACIAAAAWAAABFgAAABYAAANeAAAARAAAAEQAAABEAAADFgAAAhYAAAEWAAACWwAAA1sAAANbAAABIgAAACIAAAAiAAAAFgAAABYAAAMWAAAAXgAAAEQAAANEAAAARAAAAhYAAAMWAAADFgAAAlsAAAJbAAACWwAAA14AAABeAAAAXgAAABYAAAMWAAACFgAAA14AAABEAAAARAAAAUQAAAMWAAADFgAAAhYAAAFbAAACWwAAAlsAAAJeAAAATgAAAE4AAAAWAAADFgAAARYAAANeAAAARAAAAEQAAANEAAADFgAAABYAAAIWAAACWwAAAFsAAABbAAADXgAAAE4AAABeAAAAFgAAAhYAAAIWAAAAXgAAAEQAAANEAAACRAAAAhYAAAMWAAACFgAAA1sAAABbAAADWwAAAU8AAABOAAAAXgAAABYAAAIWAAADFgAAAkQAAANEAAABRAAAAkQAAAAWAAAAFgAAARYAAAJbAAACWwAAAVsAAAJeAAAATgAAAF4AAAAWAAACFgAAAxYAAANEAAAARAAAAEQAAANEAAABFgAAAxYAAAIWAAADFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAWwAAAFsAAABbAAABXgAAAEQAAABEAAACRAAAAxYAAAEWAAABFgAAABYAAABeAAAAWwAAAVsAAAJbAAAAWwAAAVsAAANbAAACWwAAAF4AAABeAAAARAAAAUQAAAMWAAABFgAAAhYAAAIWAAACXgAAAFsAAAFbAAAAWwAAAFsAAABbAAADWwAAAlsAAANbAAAAWwAAAkQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAA1sAAAJbAAACWwAAAVsAAANbAAABWwAAA1sAAAFEAAACRAAAAF4AAAAxAAAAMQAAADEAAAAxAAAAWwAAAVsAAABbAAACWwAAAQ== + tiles: WgAAAEoAAABKAAAAWgAAAEAAAANAAAACQAAAAFoAAAAaAAAAGgAAARoAAAFaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABAAAAAQAAAA0AAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWQAAAFkAAABaAAAAQAAAAUAAAAJAAAACFgAAAEsAAABaAAAAWgAAAFoAAABaAAAAWgAAACEAAAAhAAAAWQAAAFkAAABZAAAAWgAAAEAAAAJAAAAAQAAAARYAAAFaAAAASgAAAEoAAABKAAAAWgAAAFoAAAAhAAAAIQAAAFoAAABaAAAAWgAAAFoAAABAAAABQAAAA0AAAAFaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAIQAAACEAAAAWAAACFgAAARYAAAJaAAAAQAAAAEAAAANAAAAAFgAAAxYAAAEWAAADVwAAA1cAAANXAAACIQAAACEAAAAhAAAAFgAAABYAAAAWAAACWgAAAEAAAABAAAABQAAAABYAAAIWAAABFgAAAlcAAANXAAADVwAAAVoAAABaAAAAWgAAABYAAAAWAAAAFgAAAloAAABAAAABQAAAAUAAAAAWAAADFgAAAhYAAANXAAADVwAAA1cAAABaAAAASgAAAEoAAAAWAAADFgAAAxYAAABaAAAAQAAAAUAAAANAAAADFgAAABYAAAAWAAADVwAAAFcAAANXAAACWgAAAEoAAABaAAAAFgAAAxYAAAMWAAADWgAAAEAAAABAAAAAQAAAAhYAAAMWAAAAFgAAAFcAAAJXAAADVwAAAEsAAABKAAAAWgAAABYAAAMWAAACFgAAAkAAAAFAAAAAQAAAA0AAAAEWAAADFgAAABYAAABXAAAAVwAAAFcAAABaAAAASgAAAFoAAAAWAAABFgAAAxYAAAJAAAACQAAAA0AAAAJAAAAAFgAAABYAAAEWAAADFgAAA1oAAABaAAAAWgAAAFoAAABaAAAAVwAAAVcAAABXAAACWgAAAEAAAAJAAAABQAAAAhYAAAEWAAADFgAAAxYAAAFaAAAAVwAAA1cAAAFXAAAAVwAAAFcAAANXAAADVwAAAVoAAABaAAAAQAAAA0AAAAIWAAACFgAAABYAAAIWAAAAWgAAAFcAAAFXAAAAVwAAAVcAAAFXAAAAVwAAA1cAAAJXAAACVwAAAkAAAAJAAAADWgAAAFoAAABaAAAAWgAAAFoAAABXAAABVwAAA1cAAANXAAADVwAAAlcAAABXAAABVwAAAVcAAAFAAAABQAAAA1oAAAAwAAAAMAAAADAAAAAwAAAAVwAAAFcAAAFXAAAAVwAAAg== 1,-2: ind: 1,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAIgAAAF4AAABeAAAAXgAAAAUAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAACIAAABeAAAAXgAAAF4AAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIAAAAiAAAAXgAAAF4AAABeAAAABAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAiAAAAIgAAAF4AAABeAAAAXgAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAATwAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAl0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAJdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABdAAAAWwAAA1sAAAFPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAFsAAAFbAAAAXgAAAF4AAABOAAAAXgAAAAQAAAAEAAABBAAAAl0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABbAAADWwAAA14AAABeAAAATgAAAF4AAAAEAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAWwAAAlsAAAJeAAAAXgAAAE4AAABeAAAABAAAAgQAAAEFAAAABAAAAgAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAA== + tiles: WgAAAFoAAABaAAAAWgAAAFoAAAAEAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAAWgAAAFoAAABaAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAIQAAAFoAAABaAAAAWgAAAAUAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAACEAAABaAAAAWgAAAFoAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACEAAAAhAAAAWgAAAFoAAABaAAAABAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAAAhAAAAIQAAAFoAAABaAAAAWgAAAAQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAASwAAAFoAAABaAAAAWgAAAFoAAAAEAAABBAAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFoAAABaAAAAWgAAAFoAAABaAAAABAAAAgQAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWQAAAFkAAAAAAAAAAAAAAFkAAABZAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFkAAABZAAAAAAAAAAAAAABZAAAAWQAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABZAAAAWQAAAAAAAAAAAAAAWQAAAFkAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWQAAAFkAAAAAAAAAAAAAAFkAAABZAAAAVwAAAVcAAABLAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFkAAABZAAAAAAAAAAAAAABZAAAAWQAAAFcAAAJXAAAAWgAAAFoAAABKAAAAWgAAAAQAAAIEAAABBAAAAlkAAABZAAAAAAAAAAAAAAAAAAAAWQAAAFkAAABXAAADVwAAAVoAAABaAAAASgAAAFoAAAAEAAABBAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABZAAAAVwAAAlcAAAJaAAAAWgAAAEoAAABaAAAABAAAAgQAAAEFAAAABAAAAgAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAA== 0,1: ind: 0,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABEAAACRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAASgAAAkoAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAAEQAAAJHAAAARwAAAEQAAANEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFEAAAARAAAAUQAAANHAAAARAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAl4AAABEAAAARwAAAEQAAANEAAAARAAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAABeAAAAVQAAAV4AAABeAAAAXgAAAF4AAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAXgAAAFUAAABVAAABVQAAAFUAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAF4AAABeAAAAVQAAA1UAAAFVAAAAXgAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAACBAAAAgQAAAIEAAACBAAAAQQAAAAEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAAEAAAABAAAAgQAAAEEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAACBAAAAgQAAAAFAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAQQAAAIEAAABBAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAABBAAAAQQAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAEEAAACBAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAQAAAIEAAACAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAWQAAAFoAAABAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFoAAABaAAAAWgAAAFoAAABaAAAARgAAAUYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAQwAAAEAAAANDAAAAQwAAAEAAAAFAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAEAAAANAAAABQAAAAkAAAABDAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAloAAABAAAAAQwAAAEAAAANAAAABQAAAAEMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAFaAAAAUQAAAFoAAABaAAAAWgAAAFoAAABDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAWgAAAFEAAABRAAAAUQAAAVEAAABaAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAloAAABaAAAAUQAAA1EAAANRAAABWgAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACWgAAAFoAAABaAAAAWgAAAFoAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAABBAAAAgQAAAIEAAAABAAAAAQAAAIEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAAQAAAIEAAAABAAAAQQAAAAEAAACBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAAABAAAAQQAAAIFAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAAQAAAAEAAACBAAAAQQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAABBAAAAQQAAAAEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAIEAAAABAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAgQAAAIEAAAAAAAAAA== 2,0: ind: 2,0 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAA14AAAAWAAADFgAAABsAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAJEAAACRAAAAkQAAAJEAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAA0QAAAJEAAAARAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAF4AAAAWAAADFgAAAhsAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAAXgAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAV4AAABdAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: WgAAAAAAAABaAAAAOwAAAD0AAAA9AAAAOwAAAFoAAAAAAAAAWgAAAEAAAABAAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAAAAAAWgAAADsAAAA9AAAAPQAAADsAAABaAAAAAAAAAFoAAABAAAACQAAAAloAAAAWAAAAFgAAARsAAANaAAAAAAAAAFoAAAA7AAAAPQAAAD0AAAA7AAAAWgAAAAAAAABaAAAAQAAAAkAAAABAAAAAQAAAA0AAAAJAAAADWgAAAAAAAABaAAAAOwAAAD0AAAA9AAAAOwAAAFoAAAAAAAAAWgAAAEAAAAJAAAADQAAAAUAAAAFAAAADQAAAAVoAAABaAAAAWgAAADsAAAA9AAAAPQAAADsAAABaAAAAWgAAAFoAAABAAAACQAAAAVoAAAAWAAAAFgAAABsAAANaAAAAWgAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAFoAAABaAAAAQAAAAkAAAAFaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAABaAAAAWgAAAEAAAABAAAAAWgAAAFkAAABZAAAAWQAAAFoAAABaAAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAWgAAAFoAAABAAAADQAAAAFoAAABZAAAAAAAAAAAAAABaAAAAWgAAAFoAAAA9AAAAOgAAADoAAAA9AAAAWgAAAFoAAABaAAAAQAAAAUAAAABaAAAAAAAAAAAAAAAAAAAAWgAAAAAAAABaAAAAOgAAADoAAAA6AAAAOgAAAFoAAAAAAAAAWgAAABYAAAIWAAABWgAAAAAAAAAAAAAAAAAAAFoAAAAAAAAAWgAAAFoAAAA6AAAAOgAAAFoAAABaAAAAAAAAAFoAAABaAAAAWgAAAFoAAABZAAAAAAAAAAAAAAAFAAAAAAAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAAAAABZAAAAAAAAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAARAAAAEQAAAFEAAACRAAAAEQAAAJEAAABRAAAAUQAAAFEAAAARAAAAUQAAAFEAAABXgAAAAAAAAAAAAAAAAAAAEQAAAFEAAADRAAAAUQAAAFEAAABRAAAAEQAAAFEAAABRAAAA0QAAABEAAACRAAAAF4AAAAAAAAAAAAAAAAAAABEAAACRAAAAkQAAABEAAACRAAAA0QAAAFEAAABRAAAAEQAAABEAAACRAAAAEQAAANeAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABeAAAAFgAAAxYAAAMbAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADXgAAAEQAAABEAAADRAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAV4AAABEAAABRAAAAkQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFeAAAAFgAAAhYAAAIbAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAARYAAAFeAAAAXQAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAEWAAAAXgAAAF0AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAAFgAAAl4AAABdAAAAXQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAAAAAAAAAAAAAAAAAQAAAAUAAAAFAAAABQAAAAkAAAABAAAABQAAAA0AAAABAAAACQAAAA0AAAAJAAAAAWgAAAAAAAAAAAAAAAAAAAEAAAABAAAADQAAAAUAAAAJAAAADQAAAAUAAAAJAAAABQAAAAUAAAAFAAAABQAAAAVoAAAAAAAAAAAAAAAAAAABAAAABQAAAAEAAAANAAAACQAAAAkAAAAJAAAADQAAAAEAAAABAAAAAQAAAA0AAAAJaAAAAWQAAAAAAAAAAAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAEAAAAJAAAADWgAAAFkAAABZAAAAWQAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABAAAAAQAAAAFoAAABaAAAAWgAAAFoAAABaAAAAAAAAAAAAAABaAAAAWgAAAFoAAABaAAAAAAAAAAAAAABaAAAAQAAAA0AAAAJaAAAAFgAAARYAAAAbAAABWgAAAAAAAABaAAAAWgAAADkAAAA5AAAAWgAAAFoAAAAAAAAAWgAAAEAAAAJAAAADWgAAAEAAAABAAAACQAAAAloAAABaAAAAWgAAADkAAAA5AAAAOQAAADkAAABaAAAAWgAAAFoAAABAAAAAQAAAAVoAAABAAAADQAAAAkAAAAFaAAAAWgAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAFoAAABaAAAAQAAAA0AAAANaAAAAFgAAAxYAAAEbAAACWgAAAFoAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAABaAAAAWgAAAEAAAAJAAAADWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAWgAAAFoAAABAAAADQAAAAxYAAABaAAAAWQAAAFkAAABaAAAAWgAAAFoAAAA7AAAAPQAAAD0AAAA7AAAAWgAAAFoAAABaAAAAQAAAAUAAAAMWAAAAWgAAAFkAAAAAAAAAWgAAAAAAAABaAAAAOwAAAD0AAAA9AAAAOwAAAFoAAAAAAAAAWgAAAEAAAAJAAAAAFgAAAFoAAABZAAAAWQAAAA== 3,0: ind: 3,0 - tiles: XgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: WgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAFkAAAAAAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAAAAAABZAAAAAAAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAAAAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAFkAAAAAAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAABZAAAAAAAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAWQAAAAAAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAFkAAAAAAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAABZAAAAAAAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAWQAAAAAAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAFkAAAAAAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAABZAAAAAAAAAA== 1,1: ind: 1,1 - tiles: XgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAACEAAAAhAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAAIhAAAAIQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFHAAAARAAAAEQAAAFeAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAAkQAAAJEAAADXgAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAUAAAAEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAEEAAABBAAAAAQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAQQAAAIEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAAQAAAIEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAAEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: WgAAAFkAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAAWgAAAFoAAABaAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAyAAAAMgAAACWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAA0AAAAIgAAAAIAAAA1oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFDAAAAQAAAAkAAAABaAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAADQAAAAkAAAANAAAABWgAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAgUAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAEEAAAABAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAABBAAAAAQAAAIEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAAQAAAEEAAAABAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAAEAAAABAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAQQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-3: ind: -1,-3 - tiles: RAAAAw8AAABeAAAARAAAA0QAAABEAAADRAAAA0QAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACXgAAAF4AAABEAAADRAAAAl4AAABPAAAAXgAAABYAAAAWAAAAFgAAAhYAAABEAAADRAAAAkQAAAJEAAADRAAAA0QAAANEAAABRAAAA0QAAAJEAAADRAAAAUQAAANEAAACRAAAA0QAAABEAAAARAAAAUQAAAFEAAACRAAAAUQAAANEAAAARAAAAUQAAABEAAADRAAAAEQAAANEAAADRAAAAUQAAANEAAAARAAAAkQAAANEAAABRAAAA0QAAABEAAADRAAAAkQAAANEAAACRAAAAkQAAAJEAAAARAAAAEQAAAJEAAADRAAAA0QAAAJEAAACRAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAACXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAEQAAANEAAACRAAAA14AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAAFeAAAAXQAAAF4AAAAQAAACEAAAARAAAAEQAAAAEAAAAxAAAAAQAAADEAAAABAAAAMQAAABRAAAA0QAAAFEAAABXgAAAAAAAABeAAAAEAAAAxAAAAAQAAACEAAAAxAAAAEQAAABEAAAABAAAAMQAAAAEAAAAkQAAAJEAAABRAAAAF4AAAAAAAAAXgAAABAAAAIQAAAAEAAAAhAAAAEQAAADEAAAAxAAAAEQAAACEAAAARAAAABEAAABRAAAAUQAAAJeAAAAXgAAAF4AAAAQAAAAEAAAAxAAAAMQAAAAEAAAAxAAAAIQAAABEAAAAxAAAAAQAAAARAAAAUQAAABEAAADTgAAAE4AAABOAAAAOgAAABAAAAMQAAADEAAAARAAAAEQAAABEAAAAhAAAAEQAAACOgAAAEQAAANEAAAARAAAAU4AAABOAAAATgAAADoAAAAKAAAACgAAABAAAAAQAAADEAAAAwoAAAAKAAAACgAAADoAAABEAAAARAAAAEQAAABeAAAAXgAAAF4AAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAARAAAAUQAAAFEAAADXgAAAAAAAABeAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAA== + tiles: QAAAAg8AAABaAAAAQAAAAkAAAAFAAAADQAAAA0AAAAJAAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAEAAAAFAAAACWgAAAFoAAABAAAADQAAAAFoAAABLAAAAWgAAABYAAAIWAAAAFgAAARYAAAFAAAACQAAAAEAAAANAAAAAQAAAAkAAAANAAAABQAAAAkAAAABAAAABQAAAAUAAAABAAAAAQAAAAEAAAAFAAAAAQAAAAEAAAAJAAAABQAAAA0AAAANAAAADQAAAAUAAAANAAAAAQAAAA0AAAABAAAADQAAAA0AAAABAAAADQAAAAUAAAAJAAAADQAAAAUAAAABAAAAAQAAAAkAAAABAAAABQAAAAUAAAAFAAAABQAAAAEAAAABAAAADQAAAAUAAAAFAAAADQAAAAUAAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAQAAAA0AAAAJAAAADWgAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAFkAAABZAAAAAAAAAAAAAAAAAAAAWQAAAEAAAABAAAABQAAAA1oAAABZAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABAAAADQAAAAkAAAANaAAAAWQAAAFoAAAAQAAACEAAAAhAAAAEQAAAAEAAAARAAAAEQAAADEAAAAxAAAAMQAAABQAAAAEAAAANAAAADWgAAAAAAAABaAAAAEAAAARAAAAEQAAAAEAAAAxAAAAEQAAADEAAAABAAAAIQAAAAEAAAAkAAAAJAAAAAQAAAAVoAAAAAAAAAWgAAABAAAAMQAAABEAAAABAAAAEQAAACEAAAAhAAAAIQAAABEAAAABAAAAJAAAADQAAAAkAAAANaAAAAWgAAAFoAAAAQAAAAEAAAABAAAAMQAAADEAAAAhAAAAAQAAADEAAAABAAAAMQAAAAQAAAAkAAAAJAAAABSgAAAEoAAABKAAAANgAAABAAAAMQAAABEAAAAhAAAAEQAAADEAAAABAAAAIQAAABNgAAAEAAAANAAAACQAAAA0oAAABKAAAASgAAADYAAAAKAAAACgAAABAAAAEQAAAAEAAAAQoAAAAKAAAACgAAADYAAABAAAABQAAAAkAAAABaAAAAWgAAAFoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAQAAAAkAAAAJAAAABWgAAAAAAAABaAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAA== 0,-3: ind: 0,-3 - tiles: XgAAAF4AAAAWAAAAFgAAAxYAAAAWAAAAFgAAAxYAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAARAAAAl4AAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAAFEAAADRAAAAkQAAANEAAADXgAAAE4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAARAAAAUQAAAFEAAABRAAAAUQAAAJEAAABRAAAAE8AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAAXgAAAEQAAAJEAAADRAAAAkQAAAFEAAADRAAAAkQAAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANEAAABXgAAAF4AAABeAAAAXgAAABoAAAIaAAABGgAAARoAAAJeAAAAXQAAAF0AAABdAAAAXgAAAEQAAAFEAAAARAAAAV4AAABeAAAAXgAAAF4AAAAaAAAAGgAAAhoAAAEaAAABXgAAAF4AAABdAAAAXQAAAF4AAABEAAACRAAAAEQAAANEAAAARAAAAUQAAAFEAAADGgAAAxoAAAAaAAADGgAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAADRAAAA0QAAAFEAAACRAAAABoAAAIaAAABGgAAARoAAAJeAAAAXgAAAE4AAABOAAAAXgAAAEQAAANEAAAARAAAA14AAABEAAADRAAAAV4AAABeAAAAXgAAAEQAAAFEAAABXgAAAF4AAABOAAAATgAAAF4AAABEAAADRAAAAUQAAAJeAAAARAAAAkQAAAFeAAAARAAAAkQAAANEAAADRAAAA0QAAAJeAAAATgAAAE4AAABeAAAARAAAA0QAAANEAAADRAAAAkQAAABEAAADRAAAAEQAAANEAAACRAAAA0QAAANEAAAARAAAA0QAAAFEAAACRAAAAUQAAANEAAACRAAAAEQAAAJEAAAARAAAAEQAAABEAAAARAAAA0QAAANEAAABRAAAA0QAAAFEAAABRAAAAEQAAANEAAADRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAUQAAAFeAAAATgAAAE4AAABeAAAARAAAAUQAAABEAAABXgAAABoAAAEaAAAAGgAAAUQAAANEAAADRAAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAEQAAAFEAAABRAAAAF4AAAAaAAABGgAAAxoAAAJeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: WgAAAFoAAAAWAAAAFgAAAhYAAAMWAAAAFgAAARYAAABLAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAABYAAANaAAAAQAAAAFoAAABAAAADWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABAAAACQAAAA0AAAAJAAAADQAAAA0AAAANAAAADWgAAAEoAAABaAAAAWgAAAEoAAABKAAAASgAAAEoAAABKAAAAQAAAAUAAAANAAAABQAAAAEAAAAJAAAAAQAAAAUsAAABaAAAAWgAAAFoAAABKAAAASgAAAEoAAABKAAAAWgAAAEAAAAFAAAABQAAAAEAAAANAAAADQAAAAkAAAABaAAAAWgAAAEsAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAQAAAAEAAAABAAAADWgAAAFoAAABaAAAAWgAAABoAAAEaAAAAGgAAARoAAABaAAAAWQAAAFkAAABZAAAAWgAAAEAAAANAAAABQAAAA1oAAABaAAAAWgAAAFoAAAAaAAADGgAAABoAAAAaAAACWgAAAFoAAABZAAAAWQAAAFoAAABAAAAAQAAAAEAAAAFAAAACQAAAAkAAAAFAAAABGgAAAxoAAAEaAAACGgAAA1oAAABaAAAAWgAAAFoAAABaAAAAQAAAA0AAAANAAAAAQAAAAEAAAAJAAAADQAAAAxoAAAEaAAAAGgAAARoAAANaAAAAWgAAAEoAAABKAAAAWgAAAEAAAANAAAAAQAAAAloAAABAAAAAQAAAA1oAAABaAAAAWgAAAEAAAAFAAAADWgAAAFoAAABKAAAASgAAAFoAAABAAAADQAAAAUAAAAJaAAAAQAAAAUAAAABaAAAAQAAAA0AAAAJAAAAAQAAAA0AAAAJaAAAASgAAAEoAAABaAAAAQAAAAkAAAAFAAAAAQAAAAUAAAABAAAACQAAAAEAAAAFAAAACQAAAA0AAAABAAAACQAAAAkAAAAJAAAADQAAAAUAAAAJAAAADQAAAA0AAAABAAAACQAAAAEAAAAFAAAABQAAAAEAAAANAAAACQAAAAEAAAAFAAAAAQAAAA0AAAAJAAAACQAAAAkAAAANaAAAAWgAAAFoAAABaAAAAWgAAAEAAAANAAAABQAAAAkAAAAJaAAAASgAAAEoAAABaAAAAQAAAAEAAAANAAAABWgAAABoAAAIaAAACGgAAAUAAAAFAAAABQAAAA1oAAABaAAAAWgAAAEoAAABKAAAAWgAAAEAAAAJAAAAAQAAAAVoAAAAaAAABGgAAAhoAAAFaAAAAWgAAAFoAAABaAAAAWgAAAA== -2,-3: ind: -2,-3 - tiles: WwAAAxsAAAIZAAACGQAAABkAAAEZAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAzAAAAMwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAARYAAAMWAAACFgAAARYAAAFeAAAAXgAAAF4AAABEAAACRAAAAkQAAABEAAADRAAAA0QAAAFEAAAARAAAA0QAAANEAAACRAAAAEQAAAJEAAABRAAAAEQAAABEAAACRAAAA0QAAABEAAACRAAAAEQAAABEAAACRAAAAEQAAAJEAAACRAAAAEQAAANEAAABRAAAAkQAAANEAAADRAAAA0QAAAFEAAAARAAAAUQAAAJEAAACRAAAAEQAAABEAAACRAAAAEQAAABEAAAARAAAAkQAAANEAAABRAAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAVQAAA1UAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANbAAABWwAAAlsAAABbAAACXgAAAFUAAAFVAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAWwAAA1sAAANbAAAAWwAAAV4AAABVAAABVQAAA14AAABeAAAATgAAAF4AAABbAAACWwAAA14AAABbAAABWwAAAFsAAAJbAAAAWwAAAVsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAA1sAAAFeAAAAWwAAA1sAAAFbAAABWwAAA1sAAABbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAADWwAAAFsAAAFbAAADWwAAAVsAAANbAAACWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAUAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAFAAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAJRAAAAUQAAA1EAAAJRAAACUQAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAABXgAAAFEAAANRAAADUQAAAVEAAANeAAAAFgAAABYAAAIWAAACGwAAAA== + tiles: VwAAABsAAAEZAAADGQAAAhkAAAAZAAAAWgAAAEsAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAxAAAAMQAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAWAAAAFgAAARYAAAMWAAADFgAAAxYAAABaAAAAWgAAAFoAAABAAAAAQAAAAUAAAABAAAADQAAAAUAAAANAAAADQAAAAkAAAAJAAAACQAAAAUAAAAJAAAADQAAAAEAAAABAAAAAQAAAAkAAAAFAAAAAQAAAAEAAAAJAAAACQAAAAUAAAANAAAACQAAAA0AAAANAAAABQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAAAUAAAANAAAACQAAAAUAAAABAAAACQAAAAEAAAAFAAAADQAAAA0AAAAJaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAASwAAAFoAAABaAAAAWgAAAFoAAABAAAADWgAAAFoAAABaAAAAUQAAAlEAAAJaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFcAAAJXAAAAVwAAAlcAAAJXAAABWgAAAFEAAAFRAAACWgAAAFoAAABKAAAAWgAAAFoAAABaAAAAWgAAAFoAAABXAAACVwAAAFcAAAJXAAACVwAAAVoAAABRAAADUQAAAFoAAABaAAAASgAAAFoAAABXAAACVwAAAVoAAABXAAABVwAAAlcAAANXAAABVwAAAlcAAANaAAAAWgAAAFoAAABaAAAAWgAAAEoAAABaAAAAVwAAAVcAAABaAAAAVwAAAVcAAANXAAACVwAAAlcAAANXAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFcAAABXAAACVwAAAVcAAAFXAAADVwAAAFcAAAJXAAACVwAAA1oAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAASwAAAFoAAABaAAAAWgAAAFoAAABaAAAATAAAAVoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAASwAAAEwAAAJaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAASwAAAFoAAABaAAAAWgAAAEoAAABKAAAASgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAE0AAANNAAACTQAAA00AAAFNAAACTQAAA1oAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABNAAABWgAAAE0AAANNAAADTQAAAk0AAAFaAAAAFgAAAxYAAAAWAAADGwAAAg== 1,-3: ind: 1,-3 - tiles: XgAAAF4AAABeAAAATgAAAF4AAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAE4AAABeAAAABAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAAXgAAAF4AAABOAAAAXgAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE8AAABPAAAAXgAAAF4AAAAEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAEWAAADFgAAAhYAAABeAAAABAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAAxYAAAEWAAACXgAAAAQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAxYAAAIWAAACFgAAAl4AAAAEAAABBAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAADFgAAABYAAAJeAAAABAAAAAUAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAGwAAABsAAANeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAAJEAAABRAAAAl4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAACRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAAkQAAANEAAADXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAABEAAACRAAAAV4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFEAAACRAAAAkQAAANeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABOAAAATgAAAF4AAAAEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: WgAAAFoAAABaAAAASgAAAFoAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAAWgAAAEoAAABaAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAAWgAAAFoAAABKAAAAWgAAAAQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAEsAAABLAAAAWgAAAFoAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAAAFgAAAhYAAANaAAAABAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABFgAAAxYAAAIWAAAAWgAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAIWAAABFgAAAloAAAAEAAAABAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAAAFgAAAxYAAANaAAAABAAAAQUAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAGwAAABsAAABaAAAAWgAAAFoAAABaAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAA0AAAABAAAAAQAAAAVoAAABaAAAAWgAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAADQAAAAkAAAAFaAAAAWgAAAFoAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAA0AAAAJAAAAAWgAAAFoAAABaAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAUAAAAFAAAABQAAAAFoAAABaAAAAWgAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAACQAAAAEAAAAFaAAAAWgAAAFoAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAEoAAABKAAAASgAAAFoAAAAEAAAABAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-4: ind: 0,-4 - tiles: BAAAAQQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAQQAAAEEAAACBAAAAgQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAEAAACBQAAAAQAAAAEAAAABAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAEAAACBAAAAQQAAAEEAAAABAAAAgQAAAEEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAABAAAAQoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAKAAAACgAAAAoAAAAEAAAABAAAAgQAAAIEAAABBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAACgAAAAoAAAAEAAAABAAAAQQAAAAEAAACBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAUAAAAEAAABBAAAAAQAAAIEAAACBAAAAAQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAAABAAAAgQAAAIEAAABBAAAAAQAAAEEAAABXgAAAF4AAAAWAAACFgAAABYAAAEWAAACFgAAAl4AAAAEAAABBAAAAgQAAAEEAAAABAAAAQQAAAEEAAACBAAAAV4AAABeAAAAFgAAABYAAAIWAAAAFgAAAhYAAAJeAAAABAAAAgQAAAEEAAABBAAAAAQAAAIEAAABBAAAAQQAAAFeAAAAXgAAABYAAAIWAAAAFgAAAxYAAAMWAAACXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAQQAAAIEAAAAXgAAAE8AAAAWAAABFgAAABYAAAEWAAAAFgAAAxYAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: BAAAAQQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAAQAAAAEAAACBAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAIEAAABBQAAAAQAAAEEAAABBAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAFoAAAAEAAACBAAAAQQAAAIEAAAABAAAAAQAAAEEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAABAAAAQoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAWgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAFoAAAAKAAAACgAAAAoAAAAEAAACBAAAAgQAAAIEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAACgAAAAoAAAAEAAACBAAAAQQAAAEEAAAABAAAAgQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAQAAAEEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAEAAAABAAAAQQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAABAAAAQUAAAAEAAACBAAAAgQAAAEEAAAABAAAAAQAAAFaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAQAAAAEAAACBAAAAQQAAAAEAAABBAAAAQQAAAAEAAABWgAAAFoAAAAWAAADFgAAAxYAAAIWAAAAFgAAAFoAAAAEAAACBAAAAQQAAAIEAAAABAAAAQQAAAEEAAACBAAAAFoAAABaAAAAFgAAAhYAAAMWAAAAFgAAABYAAAJaAAAABAAAAgQAAAIEAAACBAAAAAQAAAAEAAAABAAAAgQAAABaAAAAWgAAABYAAAMWAAABFgAAAxYAAAEWAAABWgAAAFoAAABaAAAAWgAAAFoAAAAEAAACBAAAAQQAAAIEAAABWgAAAEsAAAAWAAABFgAAAhYAAAMWAAAAFgAAAhYAAAFLAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAA== 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACBAAAAQQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAgQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABQAAAAQAAAAEAAACBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAACBAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAgQAAAIEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABQAAAAQAAAIEAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-4: ind: -1,-4 - tiles: BAAAAgQAAAAEAAABBAAAAAQAAAIEAAACBAAAAV4AAAAWAAAAHgAAAh4AAAAWAAADXgAAAAQAAAAEAAABBAAAAQQAAAAEAAACBAAAAgQAAAAEAAACBAAAAAQAAAJeAAAAFgAAAh4AAAIeAAACFgAAAV4AAAAEAAAABAAAAQQAAAAEAAAABAAAAAQAAAIEAAAABAAAAQQAAAIEAAAAXgAAABYAAAIeAAACHgAAARYAAAFeAAAABAAAAgQAAAIEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAABsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAFgAAAR4AAAEeAAABFgAAAl4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEeAAADHgAAARYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGwAAAhsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAA0QAAAJEAAAARAAAAkQAAANEAAABRAAAA0QAAANEAAACRAAAAV4AAABOAAAATgAAAF4AAABEAAABRAAAAEQAAABEAAABRAAAA0QAAAFEAAAARAAAA0QAAAFEAAABRAAAA0QAAAJPAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAABRAAAA14AAABEAAACRAAAAkQAAAJEAAADRAAAAkQAAAFEAAAAXgAAABYAAAIWAAABFgAAAkQAAAJEAAACRAAAAUQAAAJeAAAAGwAAAF4AAABeAAAATwAAAF4AAABeAAAAFgAAAV4AAAAWAAABFgAAAxYAAAJEAAACRAAAAEQAAAJEAAACXgAAAB4AAAFVAAABXgAAAE4AAABeAAAAGgAAABoAAAJeAAAAFgAAAxYAAABeAAAARAAAAkQAAAJEAAABRAAAAF4AAAAeAAACVQAAA14AAABOAAAAXgAAABoAAAMaAAAAXgAAABYAAAIWAAADXgAAAEQAAAFEAAACRAAAA0QAAAJeAAAAHgAAAFUAAANeAAAATgAAAF4AAAAaAAAAGgAAAF4AAABEAAADDwAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAABsAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAg8AAABeAAAARAAAAUQAAAFEAAABRAAAAUQAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: BAAAAgQAAAIEAAACBAAAAQQAAAAEAAACBAAAAFoAAAAWAAADHgAAAh4AAAIWAAADWgAAAAQAAAEEAAABBAAAAQQAAAIEAAACBAAAAgQAAAEEAAAABAAAAgQAAAFaAAAAFgAAAx4AAAMeAAADFgAAAFoAAAAEAAACBAAAAgQAAAIEAAAABAAAAQQAAAEEAAAABAAAAQQAAAAEAAABWgAAABYAAAEeAAABHgAAABYAAABaAAAABAAAAgQAAAEEAAACWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAGwAAAxsAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABKAAAASgAAAEoAAABaAAAAFgAAAh4AAAMeAAABFgAAAloAAABKAAAASgAAAEoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAABYAAAMeAAABHgAAABYAAAJaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAGwAAABsAAANaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAEAAAANAAAACQAAAAkAAAAJAAAADQAAAA0AAAABAAAACQAAAAkAAAANAAAACQAAAA1oAAABKAAAASgAAAFoAAABAAAAAQAAAAUAAAABAAAACQAAAA0AAAABAAAACQAAAA0AAAAFAAAABQAAAAUAAAANLAAAAWgAAAFoAAABaAAAAQAAAAEAAAABAAAABQAAAAFoAAABAAAADQAAAAUAAAABAAAACQAAAAUAAAAFAAAADWgAAABYAAAMWAAACFgAAAkAAAANAAAABQAAAAUAAAABaAAAAGwAAAVoAAABaAAAASwAAAFoAAABaAAAAFgAAA1oAAAAWAAAAFgAAAhYAAABAAAADQAAAAUAAAAFAAAADWgAAAB4AAAFRAAADWgAAAEoAAABaAAAAGgAAAhoAAAJaAAAAFgAAAxYAAAJaAAAAQAAAAEAAAABAAAACQAAAA1oAAAAeAAADUQAAAloAAABKAAAAWgAAABoAAAEaAAACWgAAABYAAAAWAAABWgAAAEAAAAFAAAADQAAAAUAAAABaAAAAHgAAAVEAAANaAAAASgAAAFoAAAAaAAABGgAAAFoAAABAAAACDwAAAFoAAABaAAAAQAAAAFoAAABaAAAAWgAAABsAAANaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAQAAAAA8AAABaAAAAQAAAAEAAAABAAAADQAAAAEAAAAJAAAABWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAA== -2,-4: ind: -2,-4 - tiles: XgAAAF4AAAAEAAAABAAAAAQAAAEEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAQQAAAIEAAABBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAIEAAABBAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAACBAAAAQQAAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAATgAAAE4AAABeAAAAXgAAAE4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAFsAAABeAAAAHwAAAR8AAAJeAAAAXgAAAEcAAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAABGwAAAR8AAAIfAAACXgAAAEcAAABeAAAAXgAAAEcAAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABOAAAAWwAAAl4AAAAfAAACHwAAAl4AAABeAAAARwAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABPAAAAFgAAAhYAAABbAAAAGwAAAlsAAAFbAAACXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAWwAAAhsAAAFeAAAAXgAAAF4AAABHAAAARwAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAVsAAAIbAAABXgAAAFsAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAFgAAABYAAAFbAAABXgAAAF4AAAAbAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADMAAAAzAAAAWwAAAV4AAAAZAAABGQAAABkAAAAZAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAzAAAAMwAAAA== + tiles: WgAAAFoAAAAEAAABBAAAAgQAAAEEAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAEAAACBAAAAQQAAAAEAAACBAAAAVoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAABAAAAAQAAAAEAAABBAAAAgQAAAJaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAQAAAAEAAABBAAAAQQAAAAEAAABWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAASgAAAFoAAABaAAAASgAAAEoAAABKAAAAWgAAAEoAAABKAAAASgAAAEoAAABaAAAASgAAAEoAAABaAAAAWgAAAEoAAABaAAAASwAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAASwAAAFcAAAFaAAAAHwAAAR8AAAFaAAAAWgAAAEMAAABaAAAAWgAAAEMAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABXAAACGwAAAh8AAAAfAAAAWgAAAEMAAABaAAAAWgAAAEMAAABaAAAAQwAAAFoAAABaAAAAWgAAAFoAAABKAAAAVwAAAVoAAAAfAAACHwAAAFoAAABaAAAAQwAAAFoAAABDAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFcAAAFaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABDAAAAWgAAAFoAAABLAAAAFgAAABYAAAJXAAAAGwAAAVcAAAFXAAAAWgAAAFoAAABDAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAABYAAAMWAAADVwAAAxsAAABaAAAAWgAAAFoAAABDAAAAQwAAAFoAAABDAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAWAAACFgAAAlcAAAMbAAABWgAAAFcAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABDAAAAWgAAAFoAAABaAAAAFgAAAxYAAANXAAAAWgAAAFoAAAAbAAADWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAADEAAAAxAAAAVwAAA1oAAAAZAAAAGQAAABkAAAIZAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAxAAAAMQAAAA== -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAEAAAABAAAAQQAAAIFAAAABAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAABAAAAgQAAAIEAAAABAAAAAQAAAFeAAAAFgAAABYAAAAWAAADFgAAAhYAAAMWAAACFgAAAV4AAAAAAAAABAAAAAQAAAJeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAABFgAAAhYAAAAWAAACFgAAAxYAAAMWAAACBAAAAAQAAAAEAAABXgAAAA8AAAAPAAAADwAAAF4AAAAWAAADFgAAABYAAAEWAAABFgAAAxYAAAMWAAADFgAAAQQAAAIEAAACBAAAAF4AAAAdAAAAHQAAAx0AAANeAAAAFgAAAhYAAAIWAAABXgAAAF4AAAAWAAAAFgAAABYAAAIEAAACBAAAAgQAAAJeAAAAHQAAAB0AAAIdAAADGwAAABYAAAAWAAAAFgAAA14AAABeAAAAFgAAARYAAAFeAAAABAAAAQQAAAIEAAAAXgAAAE4AAABOAAAATgAAAF4AAAAWAAACFgAAARYAAAJeAAAAXgAAABYAAAEWAAACXgAAAAAAAAAEAAACBAAAAV4AAABOAAAATgAAAE4AAABeAAAAFgAAAxYAAAMWAAAAXgAAAF4AAAAWAAABFgAAAxsAAAIAAAAAAAAAAAQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAbAAACGwAAA14AAABeAAAAFgAAABYAAAFeAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACBAAAAF4AAAAWAAACHgAAAx4AAAIWAAADXgAAABYAAAMWAAABGwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAABeAAAAFgAAAR4AAAEeAAADFgAAAl4AAAAWAAABFgAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABXgAAAF4AAAAbAAACGwAAA14AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAFeAAAAXgAAAF4AAABeAAAABAAAAQUAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIFAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAl4AAABeAAAAXgAAAF4AAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAF4AAABeAAAAGwAAAhsAAANeAAAAXgAAAAQAAAAEAAAABAAAAg== + tiles: AAAAAAAAAAAEAAAABAAAAAQAAAIFAAAABAAAAVoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAAAAAAAAAAABAAAAAQAAAEEAAACBAAAAgQAAAJaAAAAFgAAARYAAAEWAAAAFgAAAhYAAAIWAAACFgAAAFoAAAAAAAAABAAAAgQAAAJaAAAAWgAAAFoAAABaAAAAWgAAABYAAAEWAAACFgAAAhYAAAAWAAADFgAAAxYAAAAWAAAABAAAAQQAAAEEAAACWgAAAA8AAAAPAAAADwAAAFoAAAAWAAADFgAAABYAAAIWAAADFgAAAhYAAAMWAAAAFgAAAQQAAAEEAAACBAAAAFoAAAAdAAAAHQAAAB0AAAFaAAAAFgAAABYAAAAWAAADWgAAAFoAAAAWAAADFgAAAhYAAAAEAAACBAAAAgQAAAJaAAAAHQAAAx0AAAMdAAADGwAAAxYAAAEWAAADFgAAAFoAAABaAAAAFgAAAxYAAAJaAAAABAAAAQQAAAAEAAABWgAAAEoAAABKAAAASgAAAFoAAAAWAAACFgAAABYAAABaAAAAWgAAABYAAAAWAAAAWgAAAAAAAAAEAAAABAAAAVoAAABKAAAASgAAAEoAAABaAAAAFgAAABYAAAIWAAACWgAAAFoAAAAWAAAAFgAAAhsAAAMAAAAAAAAAAAQAAAFaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAbAAABGwAAAVoAAABaAAAAFgAAARYAAAJaAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACBAAAAloAAAAWAAAAHgAAAB4AAAAWAAADWgAAABYAAAEWAAACGwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAABaAAAAFgAAAh4AAAIeAAADFgAAAVoAAAAWAAABFgAAAVoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACWgAAAFoAAAAbAAABGwAAAFoAAABaAAAAWgAAAFoAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAJaAAAAWgAAAFoAAABaAAAABAAAAAUAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAFAAAAWgAAAFoAAABaAAAAWgAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAVoAAABaAAAAWgAAAFoAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAVoAAABaAAAAGwAAARsAAAFaAAAAWgAAAAQAAAAEAAACBAAAAA== 0,-5: ind: 0,-5 - tiles: FgAAARYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAIbAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAxYAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAMWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: FgAAABYAAAJaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAIbAAABWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACFgAAAloAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAJaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAEWAAADWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAWgAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAFoAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAWgAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAFoAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAWgAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-6: ind: -1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAgQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAABBAAAAQQAAAEEAAABBQAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAAABAAAAQQAAAEEAAACBAAAAQQAAAIEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAAABAAAAAQAAAAEAAABBQAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAACBAAAAAQAAAIEAAABBAAAAgQAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAJaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACBAAAAloAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAA== 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADFgAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAA1oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAARYAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-2: ind: -3,-2 - tiles: EgAAABIAAAASAAAARAAAAUQAAAJEAAACXgAAABEAAAARAAAAEQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAABIAAAASAAAAEgAAAF4AAABEAAADRAAAA14AAAARAAAAEQAAABEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAASAAAAEgAAABIAAABeAAAARAAAAUQAAANEAAAAEQAAABEAAAARAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAEAAAABAAAAAwAAAF4AAAAxAAAAMQAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAABAAAAAwAAAAMAAABeAAAAMQAAAF4AAAAxAAAAXgAAAF4AAABOAAAARAAAAUQAAAJeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAEoAAAJEAAABXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABKAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABRAAADUQAAA1EAAAJRAAABUQAAAlEAAAFRAAADUQAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAlEAAAJRAAAAUQAAAFEAAANRAAABUQAAAFEAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAFRAAACUQAAAlEAAAFRAAAAUQAAAFEAAAFRAAAATgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAUQAAAl4AAABeAAAAXgAAAF4AAABRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGgAAAhoAAAIaAAACGgAAAF4AAABRAAAAUQAAAFEAAAI8AAAAPAAAADwAAAA8AAAAXgAAAE4AAABeAAAAXgAAABoAAAAaAAADGgAAAxoAAAFeAAAAUQAAAFEAAAJRAAAAPAAAADwAAAA8AAAAPAAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAANRAAADUQAAAg== + tiles: EgAAABIAAAASAAAAQAAAAUAAAAFAAAAAWgAAABEAAAARAAAAEQAAAFoAAABaAAAAWgAAAEoAAABaAAAAWgAAABIAAAASAAAAEgAAAFoAAABAAAACQAAAAVoAAAARAAAAEQAAABEAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAASAAAAEgAAABIAAABaAAAAQAAAAUAAAAFAAAAAEQAAABEAAAARAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAEsAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAASgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAEAAAABAAAAAwAAAFoAAAAwAAAAMAAAAFoAAABaAAAAWgAAAEoAAABaAAAAWgAAAFoAAABKAAAAWgAAAFoAAAABAAAAAwAAAAMAAABaAAAAMAAAAFoAAAAwAAAAWgAAAFoAAABKAAAAQAAAA0AAAABaAAAASgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAASgAAAEYAAAFAAAADWgAAAEoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABGAAADQAAAAloAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAASwAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAEsAAABNAAAATQAAAU0AAABNAAAATQAAAE0AAAFNAAABTQAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAATQAAAE0AAAJNAAAATQAAA00AAANNAAADTQAAAU0AAAFaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAE0AAAFNAAAATQAAAU0AAAFNAAAATQAAAk0AAAJNAAACSgAAAEoAAABKAAAASgAAAEoAAABaAAAAWgAAAFoAAABaAAAATQAAAloAAABaAAAAWgAAAFoAAABNAAABWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAGgAAABoAAAAaAAABGgAAA1oAAABNAAABTQAAAE0AAAM4AAAAOAAAADgAAAA4AAAAWgAAAEoAAABaAAAAWgAAABoAAAMaAAABGgAAAxoAAAJaAAAATQAAAk0AAABNAAABOAAAADgAAAA4AAAAOAAAAFoAAABKAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAE0AAABNAAAATQAAAQ== -3,-1: ind: -3,-1 - tiles: PAAAADwAAAA8AAAAPAAAAF4AAABOAAAAXgAAAF4AAABbAAAAWwAAAlsAAAFbAAABXgAAAFEAAAJRAAABUQAAAzwAAAA8AAAAPAAAADwAAABeAAAAXgAAAE8AAABeAAAAWwAAAlsAAABbAAAAWwAAA14AAABRAAACUQAAA1EAAANeAAAAPAAAAF4AAABeAAAAXgAAABYAAAIWAAADXgAAAEQAAAJeAAAARAAAAEQAAANeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAACRAAAA0QAAANEAAADRAAAAUQAAABEAAACRAAAAUQAAAFEAAACRAAAAUQAAABEAAACRAAAAkQAAAJEAAAARAAAA0QAAAFEAAADRAAAAUQAAAJEAAAARAAAAEQAAAFEAAABRAAAAUQAAANEAAADRAAAAEQAAAJEAAACRAAAAkQAAANEAAADRAAAAUQAAAJEAAADRAAAA0QAAANEAAADRAAAA0QAAAJEAAAARAAAAUQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAAQAAAEEAAABBAAAAQQAAAEEAAABXgAAAE8AAABeAAAAXgAAABYAAAIWAAABFgAAAl4AAABOAAAARAAAAU4AAAAEAAAABAAAAAUAAAAEAAAABAAAAV4AAABeAAAATgAAAF4AAAAWAAABFgAAARYAAAJOAAAARAAAAkQAAAJEAAABBAAAAAQAAAEEAAACBAAAAAQAAAFeAAAAXgAAAE4AAABeAAAAFgAAAxYAAAMWAAABXgAAAE4AAABOAAAATgAAAAQAAAAEAAACBAAAAQQAAAAEAAACXgAAAF4AAABOAAAAXgAAABYAAAAWAAAAFgAAAV4AAABeAAAAXgAAAF4AAAAEAAACBAAAAgQAAAIEAAACBAAAAV4AAABeAAAATgAAAF4AAABEAAADRAAAA0QAAAJEAAACRAAAA0QAAAJEAAAABAAAAAQAAAIEAAAABAAAAAQAAAJeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAABRAAAAUQAAAJEAAAARAAAAgQAAAIEAAAABAAAAQQAAAIEAAABXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAA0QAAABEAAADRAAAA0QAAAIEAAAABAAAAgQAAAIEAAACBAAAAV4AAABeAAAAXgAAAE8AAABEAAAARAAAAkQAAABEAAACRAAAAkQAAAJEAAABAAAAAAQAAAIFAAAABAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAARAAAAA== + tiles: OAAAADgAAAA4AAAAOAAAAFoAAABKAAAAWgAAAFoAAABXAAADVwAAAlcAAAJXAAADWgAAAE0AAABNAAABTQAAATgAAAA4AAAAOAAAADgAAABaAAAAWgAAAEsAAABaAAAAVwAAA1cAAANXAAABVwAAAloAAABNAAABTQAAAE0AAANaAAAAOAAAAFoAAABaAAAAWgAAABYAAAIWAAADWgAAAEAAAAJaAAAAQAAAAUAAAAFaAAAAWgAAAFoAAABaAAAAQAAAAkAAAANAAAACQAAAAUAAAABAAAADQAAAAEAAAAJAAAACQAAAAEAAAAFAAAACQAAAA0AAAAFAAAADQAAAAUAAAABAAAADQAAAAUAAAAFAAAAAQAAAAEAAAANAAAABQAAAA0AAAANAAAABQAAAAkAAAAJAAAAAQAAAAkAAAAJAAAABQAAAAEAAAAJAAAADQAAAAUAAAAJAAAADQAAAA0AAAAJAAAABQAAAAUAAAABAAAACQAAAA0AAAABAAAADWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAFgAAAxYAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABKAAAAWgAAAAQAAAEEAAABBAAAAQQAAAAEAAABWgAAAEsAAABaAAAAWgAAABYAAAMWAAABFgAAAVoAAABKAAAAQAAAAkoAAAAEAAAABAAAAQUAAAAEAAACBAAAAVoAAABaAAAASgAAAFoAAAAWAAAAFgAAAhYAAAJKAAAAQAAAAEAAAAFAAAADBAAAAgQAAAIEAAAABAAAAQQAAAJaAAAAWgAAAEoAAABaAAAAFgAAABYAAAIWAAABWgAAAEoAAABKAAAASgAAAAQAAAAEAAABBAAAAgQAAAEEAAAAWgAAAFoAAABKAAAAWgAAABYAAAEWAAABFgAAAVoAAABaAAAAWgAAAFoAAAAEAAAABAAAAQQAAAEEAAABBAAAAloAAABaAAAASgAAAFoAAABAAAADQAAAAkAAAAFAAAADQAAAA0AAAAFAAAABBAAAAgQAAAEEAAAABAAAAQQAAAJaAAAAWgAAAFoAAABaAAAAQAAAAkAAAAJAAAAAQAAAAEAAAAJAAAABQAAAAwQAAAEEAAACBAAAAAQAAAIEAAACWgAAAFoAAABaAAAAWgAAAEAAAAFAAAAAQAAAA0AAAAFAAAADQAAAA0AAAAEEAAABBAAAAAQAAAEEAAACBAAAAFoAAABaAAAAWgAAAEsAAABAAAACQAAAAEAAAABAAAABQAAAAEAAAABAAAAAAAAAAAQAAAAFAAAABAAAAgQAAAJaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABKAAAAWgAAAFoAAABaAAAAQAAAAw== -3,0: ind: -3,0 - tiles: AAAAAAQAAAEEAAABBAAAAQQAAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAACRAAAAEQAAANeAAAARAAAAgAAAAAEAAABBAAAAgQAAAIEAAAAXgAAAF4AAABOAAAAXgAAAEQAAAJEAAAAXgAAAEQAAAJEAAAAXgAAAEQAAAIAAAAABAAAAgQAAAAEAAAABAAAAF4AAABeAAAATgAAAF4AAABEAAABMwAAAF4AAAAzAAAARAAAAF4AAABEAAACAAAAAAQAAAAEAAAABAAAAQQAAAFeAAAAXgAAAE4AAABeAAAARAAAAF4AAABeAAAAXgAAAEQAAAJeAAAARAAAAQAAAAAEAAACBAAAAQQAAAAEAAABXgAAAF4AAABeAAAAXgAAAEQAAAIzAAAAMwAAADMAAABEAAABXgAAAEQAAAAAAAAABAAAAQQAAAEFAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAQAAAAEAAABBAAAAAQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAATgAAAAQAAAIEAAAABAAAAQQAAAIEAAACBgAAAAYAAAAGAAAABgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAAAEAAACBAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAACXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAFAAAABAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAQAAAAEAAABBAAAAAQAAAJaAAAAWgAAAFoAAABaAAAAQAAAAUAAAABAAAACQAAAAkAAAANaAAAAQAAAAgAAAAAEAAABBAAAAAQAAAIEAAACWgAAAFoAAABKAAAAWgAAAEAAAAFAAAAAWgAAAEAAAAFAAAADWgAAAEAAAAEAAAAABAAAAAQAAAIEAAABBAAAAFoAAABaAAAASgAAAFoAAABAAAACMQAAAFoAAAAxAAAAQAAAAVoAAABAAAADAAAAAAQAAAIEAAACBAAAAQQAAAJaAAAAWgAAAEoAAABaAAAAQAAAAFoAAABaAAAAWgAAAEAAAAFaAAAAQAAAAQAAAAAEAAABBAAAAgQAAAIEAAACWgAAAFoAAABaAAAAWgAAAEAAAAAxAAAAMQAAADEAAABAAAAAWgAAAEAAAAIAAAAABAAAAQQAAAEFAAAABAAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAAAAAAAQAAAIEAAACBAAAAgQAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABLAAAASgAAAAQAAAEEAAAABAAAAQQAAAAEAAAABgAAAAYAAAAGAAAABgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAEoAAAAEAAAABAAAAFoAAABaAAAAWgAAAFoAAABaAAAAWQAAAFkAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAABAAAAAQAAABaAAAAWgAAAFoAAABaAAAAWgAAAFkAAABZAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAQAAAAEAAABWgAAAFoAAABaAAAAWgAAAFoAAABZAAAAWQAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAFAAAABAAAAloAAABaAAAAWgAAAFoAAABaAAAAWQAAAFkAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAABAAAAQQAAAFaAAAAWgAAAFoAAABaAAAAWgAAAFkAAABZAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAQAAAEEAAABWgAAAFoAAABaAAAAWgAAAFoAAABZAAAAWQAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAEAAACBAAAAloAAABaAAAAWgAAAFoAAABaAAAAWQAAAFkAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAABAAAAAQAAAJaAAAAWgAAAFoAAABaAAAAWgAAAFkAAABZAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAA== -3,-3: ind: -3,-3 - tiles: XgAAAFsAAANeAAAAWwAAAlsAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAlsAAAJbAAAAWwAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAEQAAABEAAAARAAAAkQAAANEAAACRAAAAkQAAANEAAADRAAAAkQAAABEAAABRAAAAEQAAAFEAAACRAAAAEQAAAJEAAADRAAAAUQAAANEAAABRAAAAUQAAABEAAACRAAAAEQAAABEAAAARAAAAkQAAAFEAAADRAAAAEQAAAJEAAAARAAAA0QAAAJEAAABRAAAAkQAAANEAAADRAAAA0QAAAJEAAAARAAAAUQAAAFEAAAARAAAAEQAAABEAAABRAAAAkQAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFUAAANeAAAALgAAAC4AAAAuAAAAXgAAAEQAAABEAAABXgAAAFsAAAFbAAAAWwAAAl4AAABVAAADVQAAAVUAAANVAAABVQAAAC4AAAAuAAAALgAAAF4AAABEAAACRAAAA0QAAABbAAACWwAAA1sAAAFeAAAAVQAAAFUAAAJVAAADVQAAAFUAAAMuAAAALgAAAC4AAABEAAABRAAAAEQAAANeAAAAWwAAA1sAAABbAAACXgAAAFUAAANVAAAAVQAAAFUAAANVAAACXgAAAF4AAAAuAAAAXgAAAEQAAAJEAAAAXgAAAFsAAABbAAACWwAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAACIAAABeAAAAXgAAAF4AAABEAAAARAAAAV4AAABeAAAAXgAAAFsAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAiAAAAIgAAACIAAABeAAAARAAAA0QAAABeAAAAHwAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAIgAAACIAAAAiAAAARAAAAEQAAAFEAAACXgAAAB8AAAIfAAADHwAAAl4AAABeAAAAXgAAAF4AAABeAAAAUAAAAiIAAAAiAAAAIgAAAF4AAABEAAACRAAAAkQAAAMfAAABHwAAAh8AAAJeAAAAXgAAAF4AAABeAAAAUAAAAlAAAAAiAAAAIgAAACIAAABeAAAARAAAAEQAAAJeAAAAHwAAAh8AAAIfAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAA== + tiles: WgAAAFcAAABaAAAAVwAAAVcAAAJaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAVwAAAVcAAABXAAADVwAAA1oAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABLAAAAWgAAAFoAAABaAAAAWgAAAFoAAABAAAAAWgAAAEAAAAFAAAACQAAAAEAAAAJAAAAAQAAAAUAAAAFAAAADQAAAAkAAAAFAAAACQAAAA0AAAAJAAAACQAAAA0AAAABAAAAAQAAAAUAAAANAAAAAQAAAAEAAAABAAAABQAAAA0AAAAFAAAABQAAAAEAAAAJAAAACQAAAAEAAAANAAAADQAAAA0AAAAFAAAAAQAAAAkAAAABAAAABQAAAAEAAAANAAAADQAAAAkAAAABAAAACQAAAA0AAAAJAAAACQAAAAEAAAAJaAAAAWgAAAFoAAABaAAAAQAAAAUAAAAJaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFEAAAFaAAAALQAAAC0AAAAtAAAAWgAAAEAAAABAAAACWgAAAFcAAAJXAAABVwAAA1oAAABRAAABUQAAAlEAAAJRAAAAUQAAAS0AAAAtAAAALQAAAFoAAABAAAACQAAAAkAAAAJXAAAAVwAAA1cAAAJaAAAAUQAAAlEAAAFRAAADUQAAAVEAAAEtAAAALQAAAC0AAABAAAABQAAAAEAAAANaAAAAVwAAAVcAAAFXAAACWgAAAFEAAAFRAAACUQAAA1EAAAFRAAADWgAAAFoAAAAtAAAAWgAAAEAAAANAAAACWgAAAFcAAAFXAAABVwAAAFoAAABaAAAAWgAAAFoAAABLAAAAWgAAACEAAABaAAAAWgAAAFoAAABAAAACQAAAAVoAAABaAAAAWgAAAFcAAAJaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAhAAAAIQAAACEAAABaAAAAQAAAAUAAAANaAAAAHwAAA1oAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAIQAAACEAAAAhAAAAQAAAAEAAAANAAAADWgAAAB8AAAIfAAAAHwAAA1oAAABaAAAAWgAAAFoAAABaAAAATAAAACEAAAAhAAAAIQAAAFoAAABAAAADQAAAAEAAAAIfAAACHwAAAh8AAAJaAAAAWgAAAFoAAABaAAAATAAAAkwAAAEhAAAAIQAAACEAAABaAAAAQAAAAEAAAABaAAAAHwAAAR8AAAMfAAABWgAAAFoAAABaAAAASgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAEAAAAFAAAACWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAEoAAABaAAAAWgAAAA== -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAQQAAAIEAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAIEAAACBQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAAQAAAIEAAAABAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAAQAAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAABBAAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAABAAAAgQAAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAABbAAACWwAAA1sAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABbAAABWwAAAlsAAANbAAADXgAAAF4AAABbAAADXgAAAFsAAAFbAAADWwAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAFsAAABbAAAAWwAAAV4AAABeAAAAWwAAAFsAAANeAAAAXgAAAFsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANbAAAAWwAAAFsAAANeAAAAXgAAAFsAAABeAAAAXgAAAFsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAA1sAAANbAAACXgAAAFsAAANbAAABXgAAAFsAAANHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAA1sAAAFbAAACWwAAAl4AAABeAAAAWwAAA1sAAABbAAAAXgAAAEcAAABHAAAAXgAAAF4AAABOAAAAXgAAAFsAAANbAAAAWwAAAVsAAAJeAAAAWwAAAl4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAATgAAAF4AAABbAAAAWwAAA1sAAANbAAACXgAAAFsAAAJbAAACWwAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAWwAAA1sAAABbAAAAWwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAAQAAAEEAAAAWgAAAFoAAABaAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAAEAAABBQAAAFoAAABaAAAAWgAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAgQAAAEEAAAABAAAAgQAAABaAAAAWgAAAFoAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAVoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAQQAAAJaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAEAAACBAAAAgQAAAIEAAAAWgAAAFoAAABaAAAAWgAAAFoAAABKAAAASgAAAFoAAABaAAAAWgAAAFoAAABaAAAABAAAAgQAAAEEAAABBAAAAVoAAABKAAAASgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAQAAAAEAAAABAAAAAQAAAJaAAAASgAAAEoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFcAAAJXAAACVwAAAFcAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAASgAAAFoAAABXAAAAVwAAAVcAAAFXAAABWgAAAFoAAABXAAACWgAAAFcAAAFXAAAAVwAAAVoAAABaAAAAWgAAAFoAAABaAAAAVwAAAVcAAAFXAAADVwAAAloAAABaAAAAVwAAAlcAAABaAAAAWgAAAFcAAAFaAAAAWgAAAFoAAABaAAAAWgAAAFcAAAJXAAACVwAAAFcAAAJaAAAAWgAAAFcAAAJaAAAAWgAAAFcAAANaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABXAAADVwAAAVcAAABXAAACWgAAAFcAAAJXAAAAWgAAAFcAAANDAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAVwAAAlcAAABXAAADVwAAAVoAAABaAAAAVwAAAVcAAAFXAAACWgAAAEMAAABDAAAAWgAAAFoAAABKAAAAWgAAAFcAAANXAAACVwAAAlcAAABaAAAAVwAAAVoAAABaAAAAWgAAAFoAAABDAAAAWgAAAFoAAABaAAAASgAAAFoAAABXAAACVwAAAlcAAANXAAACWgAAAFcAAANXAAAAVwAAA1oAAABaAAAAWgAAAFoAAABaAAAAWgAAAEoAAABaAAAAVwAAAVcAAAFXAAADVwAAAQ== -4,-3: ind: -4,-3 - tiles: XQAAAF0AAABdAAAABAAAAAQAAAIEAAABTgAAAE4AAAAPAAAAGwAAAQ8AAABeAAAAWwAAAFsAAAJbAAAAWwAAAF0AAABdAAAABAAAAAQAAAEEAAABXgAAAE4AAABOAAAADwAAABsAAAEPAAAAXgAAAF4AAABeAAAARAAAAV4AAABdAAAAXQAAAAQAAAEEAAACBAAAAV4AAAAWAAABFgAAABYAAAAWAAABFgAAABYAAAEbAAACRAAAAUQAAANEAAABAAAAAF0AAAAEAAACBAAAAQQAAAFeAAAAFgAAARYAAAIWAAADFgAAAxYAAAEWAAAAXgAAAEQAAAJEAAACRAAAA10AAABdAAAABAAAAgQAAAEEAAAAXgAAABYAAAEWAAADFgAAAhYAAAMWAAADFgAAARsAAABEAAABRAAAAUQAAAJdAAAAXQAAAAQAAAAEAAAABAAAAF4AAABOAAAATgAAAA8AAAAbAAADDwAAAF4AAABeAAAAXgAAAE8AAABeAAAAXQAAAF0AAAAEAAABBAAAAQQAAAEEAAAATgAAAE4AAAAPAAAAGwAAAQ8AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAABAAAAAQAAAAFAAAABAAAAQQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABdAAAAAAAAAAQAAAIEAAACBAAAAAQAAAAEAAACBAAAAAQAAAEEAAABBAAAAQQAAAFeAAAATgAAAF4AAABeAAAAAAAAAAAAAAAEAAACBAAAAQQAAAAEAAABBAAAAQQAAAAEAAACBAAAAAQAAAEEAAACXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAgQAAAAEAAACBAAAAgQAAAAEAAACBAAAAl4AAABOAAAAXgAAAF4AAAAEAAABBAAAAAQAAAAEAAACBAAAAQQAAAIEAAACBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAEEAAABBAAAAgQAAAEEAAACBAAAAgQAAAFeAAAARwAAAEcAAABHAAAARwAAAF4AAABeAAAAXgAAAAQAAAEEAAAABAAAAgQAAAEEAAABBAAAAgQAAAEEAAAAXgAAAEcAAABHAAAARwAAAEcAAABeAAAAXgAAAF4AAAAEAAACBAAAAQQAAAAEAAABBAAAAgQAAAAEAAAABAAAAV4AAABHAAAARwAAAEcAAABHAAAAXgAAAF4AAABeAAAABAAAAAQAAAEEAAACBAAAAQQAAAEEAAAABAAAAgQAAAJeAAAARwAAAEcAAABHAAAARwAAAE8AAABeAAAAXgAAAA== + tiles: WQAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAloAAAAWAAABFgAAARYAAAFaAAAAVwAAAlcAAABXAAACVwAAA1kAAABZAAAAWQAAAAQAAAEEAAAAWgAAAFoAAABaAAAAFgAAABYAAAEWAAACWgAAAFoAAABaAAAAQAAAAFoAAABZAAAAWQAAAFkAAAAEAAABBAAAAloAAAAWAAADFgAAARYAAAMWAAAAFgAAARYAAAMbAAACQAAAA0AAAABAAAADAAAAAAAAAAAAAAAABAAAAQQAAAJaAAAAWgAAAFoAAAAWAAABFgAAARYAAAEWAAAAWgAAAEAAAAFAAAACQAAAAVkAAABZAAAAWQAAAAQAAAIEAAABWgAAABYAAAEWAAAAFgAAARYAAAMWAAADFgAAAhsAAAFAAAACQAAAAUAAAABZAAAAWQAAAFkAAAAEAAABBAAAAFoAAABaAAAAWgAAABYAAAAWAAADFgAAAVoAAABaAAAAWgAAAEsAAABaAAAAWQAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAVoAAAAWAAADFgAAAxYAAAFaAAAAWgAAAFoAAABaAAAAWgAAAAAAAAAAAAAAAAAAAAQAAAEFAAAABAAAAgQAAAFaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABKAAAAWgAAAFoAAABZAAAAAAAAAAQAAAEEAAABBAAAAAQAAAEEAAACBAAAAAQAAAEEAAAABAAAAAQAAAJaAAAASgAAAFoAAABaAAAAAAAAAAAAAAAEAAABBAAAAgQAAAIEAAABBAAAAgQAAAEEAAABBAAAAQQAAAIEAAACWgAAAEoAAABaAAAAWgAAAAAAAAAAAAAABAAAAgQAAAIEAAACBAAAAQQAAAEEAAACBAAAAAQAAAAEAAAABAAAAFoAAABKAAAAWgAAAFoAAAAEAAACBAAAAAQAAAAEAAABBAAAAQQAAAEEAAABBAAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAABAAAAAQAAAAEAAABBAAAAQQAAAIEAAACBAAAAAQAAAFaAAAAQwAAAEMAAABDAAAAQwAAAFoAAABaAAAAWgAAAAQAAAIEAAACBAAAAQQAAAEEAAAABAAAAQQAAAIEAAABWgAAAEMAAABDAAAAQwAAAEMAAABaAAAAWgAAAFoAAAAEAAAABAAAAAQAAAIEAAABBAAAAgQAAAIEAAAABAAAAFoAAABDAAAAQwAAAEMAAABDAAAAWgAAAFoAAABaAAAABAAAAQQAAAEEAAABBAAAAQQAAAIEAAABBAAAAAQAAAJaAAAAQwAAAEMAAABDAAAAQwAAAEsAAABaAAAAWgAAAA== -4,-2: ind: -4,-2 - tiles: BAAAAQQAAAEEAAABBAAAAQQAAAEEAAACBAAAAgQAAAFeAAAARwAAAEcAAABHAAAARwAAAF4AAABeAAAAXgAAAAQAAAIEAAACBAAAAQQAAAIEAAABBAAAAQQAAAEEAAABXgAAAF4AAABeAAAARwAAAEcAAABeAAAAXgAAAF4AAAAEAAAABAAAAAQAAAIEAAACBAAAAQQAAAIEAAABBAAAAgQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAUAAAAEAAACBAAAAgQAAAAEAAABBAAAAQQAAAIEAAABBAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAACBAAAAgQAAAAFAAAABAAAAAQAAAIEAAAABAAAAQQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAgQAAAEEAAABBAAAAAQAAAAEAAABBAAAAAQAAAEEAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAIEAAAABAAAAAQAAAEEAAACBAAAAAQAAAEEAAACBAAAAF4AAABOAAAAXgAAAF4AAABEAAAARAAAAQoAAAAKAAAABAAAAgQAAAEEAAACBAAAAQQAAAIEAAACBAAAAgQAAAFeAAAATgAAAF4AAABeAAAARAAAAkoAAAMKAAAACgAAAAoAAAAKAAAABAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJKAAACBAAAAQQAAAAKAAAACgAAAAQAAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAARAAAA0QAAAJEAAABRAAAAkQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEQAAAJVAAAAVQAAA1UAAAFVAAACRAAAA14AAABeAAAAXgAAAE8AAABPAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAAAVQAAA1UAAABVAAABVQAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAFUAAABVAAAAVQAAAVUAAAJEAAABXgAAAA== + tiles: BAAAAQQAAAIEAAAABAAAAQQAAAIEAAACBAAAAAQAAABaAAAAQwAAAEMAAABDAAAAQwAAAFoAAABaAAAAWgAAAAQAAAAEAAABBAAAAgQAAAAEAAAABAAAAgQAAAEEAAACWgAAAFoAAABaAAAAQwAAAEMAAABaAAAAWgAAAFoAAAAEAAACBAAAAgQAAAEEAAAABAAAAAQAAAEEAAAABAAAAgQAAAIEAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAABAAAAAUAAAAEAAAABAAAAgQAAAEEAAACBAAAAAQAAAIEAAABBAAAAVoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAQAAAIEAAAABAAAAAQAAAEFAAAABAAAAgQAAAAEAAABBAAAAQQAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAEAAABBAAAAgQAAAEEAAACBAAAAgQAAAIEAAACBAAAAgQAAAIEAAABWgAAAEoAAABaAAAAWgAAAFoAAABaAAAABAAAAAQAAAEEAAACBAAAAQQAAAIEAAACBAAAAgQAAAAEAAABBAAAAFoAAABKAAAAWgAAAFoAAABAAAAAQAAAAgoAAAAKAAAABAAAAgQAAAEEAAAABAAAAQQAAAAEAAACBAAAAQQAAAFaAAAASgAAAFoAAABaAAAAQAAAAUYAAAEKAAAACgAAAAoAAAAKAAAABAAAAVoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAEAAAAFGAAABBAAAAgQAAAAKAAAACgAAAAQAAABaAAAAWgAAAFoAAABKAAAASgAAAEoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAcAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABKAAAAWgAAAFoAAABaAAAASwAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAASgAAAFoAAABaAAAAQAAAAUAAAAFAAAABQAAAAUAAAAJAAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAEoAAABaAAAAWgAAAEAAAAJRAAACUQAAAVEAAANRAAADQAAAAFoAAABaAAAAWgAAAEsAAABLAAAAWgAAAFoAAABKAAAAWgAAAFoAAABAAAACUQAAA1EAAAFRAAABUQAAAkAAAANaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAQAAAA1EAAAJRAAACUQAAAlEAAAJAAAABWgAAAA== -4,-1: ind: -4,-1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAFUAAABVAAACVQAAAlUAAANEAAABXgAAAEQAAANEAAAARAAAAUQAAANEAAADRAAAA0QAAANEAAABXgAAAEQAAANEAAADRAAAAUQAAAFEAAAARAAAAl4AAABEAAAASwAAAEsAAABLAAAASwAAAEsAAABEAAADRAAAAF4AAABeAAAARAAAAl4AAABeAAAARAAAAl4AAABeAAAARAAAAUsAAAApAAADKQAAAikAAAJLAAAARAAAAEQAAAFEAAABRAAAAkQAAANEAAAARAAAA0QAAAFEAAAARAAAA0QAAANLAAAASwAAAEsAAABLAAAASwAAAEQAAAJEAAACRAAAAkQAAANEAAABRAAAA0QAAABEAAAARAAAAEQAAABEAAACRAAAA0QAAAJEAAAARAAAAEQAAAJEAAACRAAAA0QAAABEAAABRAAAAEQAAAJEAAACRAAAAUQAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAgQAAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEFAAAABAAAAgQAAAAEAAAABAAAAAQAAAFeAAAABAAAAgUAAAAEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAgQAAAEEAAAABAAAAAQAAAEEAAAAXgAAAAQAAAIEAAACBAAAAV4AAABeAAAAXgAAAF4AAABeAAAABAAAAQQAAAAEAAABBAAAAAQAAAEEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: WgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAQAAAA1EAAANRAAACUQAAAFEAAAJAAAAAWgAAAEAAAANAAAADQAAAA0AAAANAAAAAQAAAA0AAAAFAAAADWgAAAEAAAAFAAAADQAAAA0AAAAFAAAADQAAAAFoAAABAAAAARwAAAEcAAABHAAAARwAAAEcAAABAAAADQAAAA1oAAABaAAAAQAAAAloAAABaAAAAQAAAA1oAAABaAAAAQAAAAkcAAAAoAAAAKAAAASgAAANHAAAAQAAAAEAAAABAAAAAQAAAAUAAAABAAAACQAAAAkAAAAJAAAACQAAAA0AAAANHAAAARwAAAEcAAABHAAAARwAAAEAAAABAAAACQAAAAUAAAANAAAACQAAAAEAAAABAAAAAQAAAAEAAAAJAAAAAQAAAAUAAAAFAAAAAQAAAAEAAAAJAAAADQAAAAkAAAANAAAACQAAAA0AAAANAAAACQAAAAkAAAABAAAACWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAEAAABBAAAAQQAAABaAAAAWgAAAFoAAABaAAAAWgAAAAQAAAEFAAAABAAAAgQAAAEEAAACBAAAAQQAAABaAAAABAAAAQUAAAAEAAABWgAAAFoAAABaAAAAWgAAAFoAAAAEAAABBAAAAgQAAAEEAAAABAAAAgQAAAAEAAACWgAAAAQAAAAEAAABBAAAAVoAAABaAAAAWgAAAFoAAABaAAAABAAAAgQAAAIEAAAABAAAAgQAAAIEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,1: ind: -3,1 - tiles: BAAAAAQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAFAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAABXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAAQAAAAEAAAABAAAAgQAAAEEAAAABAAAAQQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAgQAAAEEAAACBQAAAAQAAAIEAAACBAAAAQUAAAAEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIEAAAABAAAAAQAAAAEAAABBAAAAQQAAAEEAAABBAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAABAAAAAQAAAAEAAACBAAAAAQAAAAEAAAABAAAAQQAAAEEAAABBAAAAV0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAQAAAAEAAABBAAAAgQAAAAEAAACBAAAAAQAAAEEAAABBAAAAgQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAEAAAABAAAAgQAAAIEAAACBAAAAAQAAAIEAAABBAAAAgQAAAEEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAABAAAAQQAAAEEAAACBAAAAQQAAAIEAAABBAAAAQQAAAIEAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAQAAAEEAAABBAAAAAQAAAAEAAAABAAAAAQAAAIEAAAABAAAAgQAAAAEAAABBAAAAQQAAAIEAAACBAAAAgAAAAAAAAAABAAAAAQAAAIEAAACBAAAAAQAAAAEAAACBAAAAAQAAAAEAAAABQAAAAQAAAIEAAAABAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAgQAAAAEAAABBAAAAQQAAAAEAAACBAAAAgQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAgQAAAAEAAAABAAAAA== + tiles: BAAAAgQAAAJaAAAAWgAAAFoAAABaAAAAWgAAAFkAAABZAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAQAAAAEAAACWgAAAFoAAABaAAAAWgAAAFoAAABZAAAAWQAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAFAAAABAAAAFoAAABaAAAAWgAAAFoAAABaAAAAWQAAAFkAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAABAAAAAQAAAJaAAAAWgAAAFoAAABaAAAAWgAAAFkAAABZAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAQAAAIEAAAAWgAAAFoAAABaAAAAWgAAAFoAAABZAAAAWQAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAEAAABBAAAAgQAAAEEAAAABAAAAQQAAAAEAAACBAAAAQQAAAFaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAABAAAAAQAAAAEAAABBQAAAAQAAAAEAAAABAAAAQUAAAAEAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAQAAAEEAAACBAAAAQQAAAEEAAAABAAAAAQAAAIEAAACBAAAAVoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAAAAAABAAAAAQAAAIEAAAABAAAAgQAAAAEAAAABAAAAQQAAAAEAAACBAAAAlkAAABZAAAAWQAAAFkAAABZAAAAAAAAAAQAAAEEAAAABAAAAgQAAAIEAAAABAAAAAQAAAIEAAABBAAAAgQAAAFaAAAAWgAAAFoAAABaAAAAWgAAAAAAAAAEAAABBAAAAgQAAAAEAAAABAAAAgQAAAEEAAABBAAAAAQAAAEEAAABWgAAAFoAAABaAAAAWgAAAFoAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAEEAAACBAAAAAQAAAIEAAABBAAAAloAAABaAAAAWgAAAFoAAABaAAAAAAAAAAQAAAAEAAACBAAAAgQAAAIEAAAABAAAAAQAAAAEAAAABAAAAQQAAAAEAAAABAAAAAQAAAEEAAACBAAAAAAAAAAAAAAABAAAAAQAAAAEAAACBAAAAgQAAAEEAAACBAAAAAQAAAAEAAABBQAAAAQAAAEEAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAACBAAAAAQAAAEEAAABBAAAAgQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAgQAAAEEAAACBAAAAA== -2,1: ind: -2,1 - tiles: XgAAAF4AAABeAAAABAAAAF4AAABeAAAAXgAAAF4AAAAGAAAABAAAAQQAAAEEAAABBAAAAAQAAAIEAAAAAAAAAF4AAABeAAAAXgAAAAQAAAFeAAAAXgAAAF4AAABeAAAABgAAAAQAAAAEAAAABAAAAQQAAAAEAAACAAAAAAAAAABeAAAAXgAAAF4AAAAEAAAAXgAAAF4AAABeAAAAXgAAAAYAAAAEAAAABAAAAgQAAAIFAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAABAAAAgYAAAAGAAAAXgAAAAYAAAAGAAAABAAAAQQAAAEEAAABBAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAQAAAEEAAAABAAAAAQAAAIEAAAABAAAAQQAAAAEAAABBAAAAAQAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAEAAAABAAAAQQAAAAEAAAABAAAAgQAAAAEAAABBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAABBAAAAAQAAAIEAAACBAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAQAAAEEAAACBAAAAgQAAAIEAAACBAAAAgQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAAEAAAABAAAAAQAAAAEAAABBAAAAAQAAAIEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABBQAAAAQAAAIEAAABBAAAAAQAAAIEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAgQAAAEEAAAABAAAAgQAAAIEAAAABAAAAAQAAAEEAAABAAAAAF0AAABdAAAAXQAAAF0AAAAEAAACBAAAAQQAAAAEAAAABAAAAAQAAAEEAAACBAAAAgQAAAEEAAABBAAAAQAAAABdAAAAXQAAAF0AAABdAAAABAAAAgQAAAIEAAAABAAAAgQAAAEEAAAABAAAAQQAAAIEAAABBAAAAgQAAAIAAAAAXQAAAF0AAABdAAAAXQAAAAQAAAAEAAACBAAAAAQAAAIEAAAABAAAAgQAAAEEAAACBAAAAQQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAIEAAABBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAABAAAAgYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAA== + tiles: WgAAAFoAAABaAAAABAAAAVoAAABaAAAAWgAAAFoAAAAGAAAABAAAAgQAAAAEAAAABAAAAAQAAAAEAAACAAAAAFoAAABaAAAAWgAAAAQAAABaAAAAWgAAAFoAAABaAAAABgAAAAQAAAAEAAABBAAAAgQAAAEEAAABAAAAAAAAAABaAAAAWgAAAFoAAAAEAAACWgAAAFoAAABaAAAAWgAAAAYAAAAEAAABBAAAAgQAAAEFAAAAAAAAAAAAAAAAAAAAWgAAAFoAAABaAAAABAAAAgYAAAAGAAAAWgAAAAYAAAAGAAAABAAAAgQAAAAEAAACBAAAAgAAAAAAAAAAAAAAAFoAAABaAAAAWgAAAAQAAAEEAAABBAAAAQQAAAAEAAAABAAAAAQAAAEEAAAABAAAAQQAAAEAAAAAAAAAAAAAAABaAAAAWgAAAFoAAAAEAAAABAAAAgQAAAEEAAABBAAAAAQAAAAEAAABBAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAFoAAABaAAAABAAAAAQAAAIEAAABBAAAAQQAAAIEAAABBAAAAgQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAAWgAAAAQAAAEEAAABBAAAAAQAAAAEAAAABAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAgQAAAIEAAABBAAAAgQAAAEEAAAABAAAAQQAAAAEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAAABQAAAAQAAAIEAAACBAAAAAQAAAIEAAACBAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAgQAAAAEAAACBAAAAQQAAAEEAAAABAAAAgQAAAIEAAABAAAAAFkAAABZAAAAWQAAAFkAAAAEAAACBAAAAQQAAAIEAAABBAAAAAQAAAEEAAABBAAAAQQAAAEEAAACBAAAAQAAAABZAAAAWQAAAFkAAABZAAAABAAAAgQAAAIEAAABBAAAAgQAAAEEAAABBAAAAQQAAAIEAAACBAAAAAQAAAEAAAAAWQAAAFkAAABZAAAAWQAAAAQAAAAEAAABBAAAAgQAAAEEAAABBAAAAQQAAAEEAAABBAAAAQQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAAEAAABBAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAABZAAAABAAAAQYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFkAAABZAAAAWQAAAA== -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAEFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAABBAAAAgQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACBAAAAQQAAAEEAAABBAAAAAQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAAQAAAIEAAABBAAAAAQAAAEEAAABBAAAAV0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAIEAAABBQAAAAQAAAAEAAACBAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAIEAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAIEAAAABAAAAQQAAABeAAAAWwAAAlsAAAFbAAABWwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAUAAAAEAAAABAAAAQQAAAEEAAABXgAAAFsAAANbAAADWwAAAFsAAABdAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAABBAAAAgQAAAIEAAAABAAAAF4AAABbAAACWwAAAlsAAAFbAAABAAAAAAAAAAAAAAAABAAAAQQAAAEEAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAVsAAANbAAAAWwAAAg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEEAAAABAAAAAQAAAEEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAQQAAAEEAAABBAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAABBAAAAgQAAAEEAAACBAAAAAQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAACBAAAAQQAAAAEAAACBAAAAQQAAAAEAAABBAAAAVkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAEEAAABBQAAAAQAAAAEAAACBAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAIEAAACBAAAAloAAABaAAAAWgAAAFoAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAEAAAABAAAAgQAAABaAAAAVwAAAVcAAANXAAADVwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQUAAAAEAAABBAAAAQQAAAAEAAACWgAAAFcAAANXAAABVwAAAlcAAAJZAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAAQAAAEEAAAABAAAAloAAABXAAABVwAAAVcAAAJXAAADAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAVoAAABaAAAAWgAAAFoAAABaAAAAVwAAAFcAAABXAAABVwAAAQ== -5,-1: ind: -5,-1 - tiles: AAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAQAAAIEAAACBAAAAAQAAAEEAAABXgAAAE4AAABeAAAATwAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAQAAAAEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAEAAAABAAAAV4AAAAWAAAAFgAAARYAAAMWAAAAFgAAA14AAABEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAJeAAAAFgAAAhYAAAIWAAABFgAAAhYAAABKAAABRAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABXgAAABYAAAIWAAADFgAAAhYAAAEWAAAAXgAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAV4AAAAWAAACFgAAAxYAAAIWAAADFgAAA14AAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAIAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQUAAAAEAAAABAAAAV4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAAQAAAJeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAAQAAAAEAAABWgAAAEoAAABaAAAASwAAAAAAAABZAAAAAAAAAFkAAAAAAAAAAAAAAAQAAAIEAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAEAAAAJZAAAAWQAAAFkAAABZAAAAWQAAAAAAAAAEAAABBAAAAloAAAAWAAAAFgAAAhYAAAEWAAABFgAAAVoAAABAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAJaAAAAFgAAAhYAAAAWAAABFgAAAhYAAAJGAAADQAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACWgAAABYAAAEWAAADFgAAAhYAAAMWAAACWgAAAEAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAVoAAAAWAAABFgAAAxYAAAEWAAAAFgAAAVoAAABAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIIAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAgUAAAAEAAACBAAAAFoAAABaAAAAWgAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAgQAAAFaAAAAWgAAAFoAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABWgAAAFoAAABaAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -5,-2: ind: -5,-2 - tiles: AAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAIEAAABAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAABAAAAAQAAAIEAAABBAAAAV0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAEAAACBAAAAQQAAAIEAAABBAAAAgUAAAAEAAACAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAABAAAAAQAAAEEAAAABAAAAQAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAAQAAAIEAAACBAAAAgQAAAIAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAAEAAABBAAAAgQAAAAEAAACAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEFAAAABAAAAgQAAAIEAAACBAAAAQAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABBAAAAl4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAQQAAAFeAAAATgAAAE4AAABOAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAQQAAAEEAAABXgAAAE4AAABOAAAAXgAAAA== + tiles: AAAAAFkAAABZAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgAAAABZAAAAWQAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEAAAAAWQAAAFkAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACAAAAAFkAAABZAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgAAAABZAAAAWQAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIAAAAAWQAAAFkAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAACAAAAAAAAAABZAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAWQAAAFkAAABZAAAABAAAAgQAAAIEAAAABAAAAlkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAEAAACBAAAAAQAAAIEAAACBAAAAgUAAAAEAAAAAAAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAABBAAAAAQAAAAEAAACBAAAAQAAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAQQAAAIEAAABBAAAAgQAAAEAAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAgQAAAEEAAACBAAAAAQAAAEEAAABAAAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEFAAAABAAAAQQAAAEEAAABBAAAAAAAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAABAAAAFoAAABaAAAAWgAAAFoAAAAAAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAQQAAAFaAAAASgAAAEoAAABKAAAAAAAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAEEAAABWgAAAEoAAABKAAAAWgAAAA== -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAA== -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAEEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,2: ind: -2,2 - tiles: BAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAWQAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 1,2: ind: 1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIFAAAABAAAAgQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAEEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEFAAAABAAAAQQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAIEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgQAAAAEAAABXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAgQAAAAEAAABBQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABZAAAAWQAAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAIEAAABWgAAAFoAAABaAAAAWgAAAFoAAAAEAAACBAAAAgQAAAAEAAAABQAAAA== -5,-3: ind: -5,-3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAABdAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABHAAAARwAAAF4AAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAXQAAAF0AAAAAAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQ== + tiles: WgAAAFoAAABaAAAAWgAAAFoAAABaAAAAAAAAAAAAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFkAAABZAAAAWQAAAAAAAABZAAAAWQAAAAAAAABZAAAAWQAAAAAAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWQAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAWQAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABaAAAAWgAAAFoAAABDAAAAQwAAAFoAAABZAAAAWQAAAFkAAAAAAAAAWQAAAFkAAAAAAAAAWQAAAFkAAAAAAAAAWgAAAFoAAABaAAAAQwAAAFoAAABaAAAAAAAAAAAAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFoAAABDAAAAWgAAAFoAAABaAAAAWgAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABaAAAAQwAAAFoAAABaAAAAWgAAAFoAAAAAAAAAAAAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABZAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQ== -6,-3: ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABHAAAARwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAAWgAAAEMAAABaAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAQwAAAFoAAABaAAAAWgAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAWgAAAFoAAABDAAAAQwAAAFoAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAAWgAAAEMAAABaAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAWgAAAFoAAABaAAAAWgAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAAWgAAAFoAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAWgAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAABZAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAFkAAABZAAAAWQAAAA== -2,-6: ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABZAAAAWQAAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABZAAAAWQAAAA== -5,-4: ind: -5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABaAAAAWgAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFoAAABaAAAAWgAAAFoAAABaAAAAWgAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABaAAAAWgAAAEMAAABaAAAAWgAAAFoAAAAAAAAAAAAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWgAAAFoAAABaAAAAWgAAAFoAAABaAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAA== -6,-4: ind: -6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARwAAAEcAAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAWgAAAFoAAABaAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAFoAAABaAAAAWgAAAEMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAFoAAABaAAAAQwAAAEMAAABDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAABaAAAAQwAAAFoAAABaAAAAWgAAAA== -6,-2: ind: -6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABZAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAABZAAAAWQAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAFkAAABZAAAAWQAAAA== -6,-1: ind: -6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAWQAAAFkAAABZAAAAAAAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAAFkAAAAAAAAAWQAAAAAAAABZAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,1: ind: -1,1 - tiles: XQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAA== + tiles: WQAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAAAAAAAAAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAAAAAAAAWQAAAAAAAAAAAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAABZAAAAAAAAAAAAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAAAAAAAAAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAAAAAAFkAAAAAAAAAAAAAAA== -1,2: ind: -1,2 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: WQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAAAAAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAAAAAAAAAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAAAAAAFkAAAAAAAAAAAAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAWQAAAAAAAAAAAAAAWQAAAAAAAABZAAAAAAAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAABZAAAAWQAAAFkAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAWQAAAFkAAABZAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -354,5283 +350,22056 @@ entities: path: /Audio/Effects/alert.ogg type: Gravity - chunkCollection: - version: 2 - nodes: - - node: + -1,0: + 0: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: -14,4 + 1: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: -14,3 + 2: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: -11,4 + 3: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: -11,3 + 8: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: -6,5 + 9: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: -5,5 + 10: color: '#DE3A3A96' id: StandClearGreyscale - decals: - 0: -14,4 - 1: -14,3 - 2: -11,4 - 3: -11,3 - 4: 1,4 - 5: 1,3 - 6: 4,4 - 7: 4,3 - 8: -6,5 - 9: -5,5 - 10: -4,5 - 11: 11,-7 - 12: 11,-9 - 13: 13,-7 - 14: 13,-9 - 15: 15,10 - 16: 14,10 - 17: 14,13 - 18: 15,13 - 19: 15,17 - 20: 14,17 - - node: + coordinates: -4,5 + 21: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + coordinates: -3,1 + 22: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + coordinates: -2,1 + 23: color: '#FFFFFFFF' id: WoodTrimThinLineS - decals: - 21: -3,1 - 22: -2,1 - 23: -1,1 - 24: 0,1 - 25: 1,1 - 26: -1,-2 - 27: 0,-2 - 1193: -35,-47 - 1194: -33,-47 - - node: + coordinates: -1,1 + 28: color: '#FFFFFFFF' id: WoodTrimThinLineE - decals: - 28: -4,0 - 29: -4,-1 - 30: -4,-2 - 31: -4,-3 - 131: 4,-15 - 132: 4,-16 - 133: 4,-17 - 134: 4,-18 - 1352: -2,-20 - - node: + coordinates: -4,0 + 39: color: '#FFFFFFFF' id: WoodTrimThinInnerSe - decals: - 39: -4,1 - - node: + coordinates: -4,1 + 471: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -12,4 + 472: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -12,3 + 473: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -15,4 + 474: color: '#FFFFFFFF' id: BrickTileDarkLineE - decals: - 91: -5,-70 - 92: -5,-71 - 99: -5,-62 - 100: -5,-63 - 101: -5,-64 - 183: -23,-31 - 242: 10,-33 - 251: 14,-41 - 252: 14,-42 - 433: 17,-1 - 434: 17,0 - 445: 12,8 - 446: 12,7 - 458: 3,4 - 459: 3,3 - 471: -12,4 - 472: -12,3 - 473: -15,4 - 474: -15,3 - 635: -5,-59 - 636: -5,-60 - 820: -22,-5 - 821: -22,-6 - 862: -37,-8 - 863: -37,-9 - 864: -37,-6 - 865: -37,-7 - 988: -15,-54 - 989: -15,-53 - 990: -15,-52 - 991: -15,-51 - 1200: 7,-48 - 1201: 7,-49 - 1202: 6,-50 - 1203: 6,-51 - 1204: 6,-52 - 1221: -2,-52 - 1236: -25,-1 - 1237: -25,-2 - 1353: -5,-26 - 1354: -5,-27 - 1355: -22,-49 - 1426: -67,-11 - 1427: -67,-12 - 1428: -67,-13 - 1429: -67,-14 - 2834: -55,-42 - 2835: -55,-43 - 2836: -55,-47 - 2837: -55,-48 - 2856: -53,-44 - 2857: -53,-46 - - node: + coordinates: -15,3 + 475: color: '#FFFFFFFF' id: BrickTileDarkInnerSe - decals: - 184: -23,-30 - 367: 13,11 - 475: -15,5 - - node: + coordinates: -15,5 + 476: color: '#FFFFFFFF' id: BrickTileDarkInnerNe - decals: - 185: -23,-32 - 368: 13,12 - 476: -15,2 - 1238: -25,-3 - - node: + coordinates: -15,2 + 477: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -13,4 + 478: color: '#FFFFFFFF' id: BrickTileDarkLineW - decals: - 58: -8,-73 - 59: -8,-74 - 60: -8,-75 - 61: -8,-76 - 62: -8,-77 - 63: -8,-78 - 89: -8,-70 - 90: -8,-71 - 102: -8,-62 - 103: -8,-63 - 104: -8,-64 - 243: 8,-33 - 255: 11,-42 - 256: 11,-41 - 435: 16,-1 - 436: 16,0 - 447: 10,8 - 448: 10,7 - 455: 5,3 - 456: 5,4 - 460: 2,4 - 461: 2,3 - 477: -13,4 - 478: -13,3 - 510: -16,-33 - 633: -8,-59 - 634: -8,-60 - 742: -51,-44 - 743: -51,-45 - 744: -51,-46 - 822: -23,-5 - 823: -23,-6 - 858: -39,-6 - 859: -39,-7 - 860: -39,-8 - 861: -39,-9 - 992: -18,-51 - 993: -18,-52 - 994: -18,-53 - 995: -18,-54 - 1195: 2,-48 - 1196: 2,-49 - 1197: 2,-50 - 1198: 2,-51 - 1199: 2,-52 - 1222: -3,-52 - 1228: -16,-1 - 1229: -16,-2 - 1422: -71,-11 - 1423: -71,-12 - 1424: -71,-13 - 1425: -71,-14 - 2830: -55,-47 - 2831: -55,-48 - 2832: -55,-43 - 2833: -55,-42 - 2858: -53,-46 - 2859: -53,-44 - - node: + coordinates: -13,3 + 479: color: '#FFFFFFFF' id: BrickTileDarkCornerNw - decals: - 240: 8,-32 - 248: 11,-40 - 438: 16,1 - 439: 10,9 - 479: -10,4 - 624: -9,8 - 625: -6,8 - 626: -2,8 - 662: -40,-18 - 816: -23,-4 - 1223: -3,-51 - 1245: -23,-1 - - node: + coordinates: -10,4 + 480: color: '#FFFFFFFF' id: BrickTileDarkCornerSw - decals: - 64: -8,-79 - 237: 8,-34 - 245: 11,-43 - 431: 16,-2 - 440: 10,6 - 480: -10,3 - 621: -9,7 - 622: -6,7 - 623: -2,7 - 664: -40,-19 - 817: -23,-7 - 1226: -3,-53 - 1244: -23,-2 - - node: + coordinates: -10,3 + 483: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -1,4 + 484: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -2,4 + 485: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -3,4 + 486: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -4,4 + 487: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -5,4 + 488: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -6,4 + 489: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -7,4 + 490: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -8,4 + 491: color: '#FFFFFFFF' id: BrickTileDarkLineN - decals: - 172: -18,-30 - 173: -19,-30 - 174: -20,-30 - 175: -21,-30 - 244: 9,-32 - 249: 12,-40 - 250: 13,-40 - 328: 12,-8 - 329: 12,-7 - 338: 17,-7 - 339: 18,-7 - 340: 19,-7 - 369: 15,12 - 370: 14,12 - 444: 11,9 - 483: -1,4 - 484: -2,4 - 485: -3,4 - 486: -4,4 - 487: -5,4 - 488: -6,4 - 489: -7,4 - 490: -8,4 - 491: -9,4 - 562: -11,8 - 563: -10,8 - 564: -9,10 - 565: -8,10 - 566: -7,10 - 567: -6,10 - 568: -5,10 - 569: -4,10 - 570: -3,10 - 571: -2,10 - 572: -1,10 - 573: 0,8 - 574: 1,8 - 627: -5,8 - 667: -39,-18 - 668: -38,-18 - 937: -22,-26 - 938: -21,-26 - 939: -20,-26 - 940: -19,-26 - 941: -18,-26 - 952: -20,-27 - 1111: 8,-4 - 1112: 9,-4 - 1113: 10,-4 - 1246: -22,-1 - 1247: -21,-1 - 1248: -20,-1 - 1249: -19,-1 - 2771: -31,-15 - 2772: -30,-15 - 2773: -29,-15 - 2786: -12,-77 - 2787: -11,-77 - 2788: -10,-77 - 2846: -56,-45 - 2847: -55,-45 - - node: + coordinates: -9,4 + 492: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -9,3 + 493: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -8,3 + 494: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -7,3 + 495: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -6,3 + 496: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -5,3 + 497: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -4,3 + 498: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -3,3 + 499: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -2,3 + 500: color: '#FFFFFFFF' id: BrickTileDarkLineS - decals: - 65: -7,-79 - 66: -6,-79 - 67: -5,-79 - 68: -4,-79 - 69: -3,-79 - 71: -2,-79 - 169: -18,-33 - 170: -19,-33 - 171: -20,-33 - 241: 9,-34 - 253: 13,-43 - 254: 12,-43 - 327: 12,-8 - 330: 12,-9 - 335: 19,-9 - 336: 18,-9 - 337: 17,-9 - 364: 14,11 - 371: 15,11 - 443: 11,6 - 492: -9,3 - 493: -8,3 - 494: -7,3 - 495: -6,3 - 496: -5,3 - 497: -4,3 - 498: -3,3 - 499: -2,3 - 500: -1,3 - 549: -11,6 - 550: -10,6 - 551: -9,6 - 552: -8,6 - 553: -7,6 - 554: -6,6 - 555: -5,6 - 556: -4,6 - 557: -3,6 - 558: -2,6 - 559: -1,6 - 560: 0,6 - 561: 1,6 - 628: -5,7 - 665: -39,-19 - 666: -38,-19 - 932: -20,-28 - 933: -21,-28 - 934: -22,-28 - 935: -19,-28 - 936: -18,-28 - 953: -20,-27 - 1117: 8,-6 - 1118: 9,-6 - 1250: -22,-2 - 1251: -21,-2 - 1252: -20,-2 - 1253: -19,-2 - 2770: -29,-19 - 2778: -31,-19 - 2779: -30,-19 - 2844: -56,-45 - 2845: -55,-45 - - node: + coordinates: -1,3 + 501: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -9,3 + 502: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -8,3 + 503: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -7,3 + 504: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -6,3 + 505: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -5,3 + 506: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -4,3 + 507: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -3,3 + 508: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -2,3 + 509: color: '#334E6DC8' id: BrickTileWhiteLineS - decals: - 501: -9,3 - 502: -8,3 - 503: -7,3 - 504: -6,3 - 505: -5,3 - 506: -4,3 - 507: -3,3 - 508: -2,3 - 509: -1,3 - 575: -11,6 - 576: -10,6 - 577: -9,6 - 578: -8,6 - 579: -7,6 - 580: -6,6 - 581: -5,6 - 582: -4,6 - 583: -3,6 - 584: -2,6 - 585: -1,6 - 586: 0,6 - 587: 1,6 - 1258: -22,-2 - 1259: -21,-2 - 1260: -20,-2 - 1261: -19,-2 - - node: + coordinates: -1,3 + 528: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -1,4 + 529: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -2,4 + 530: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -3,4 + 531: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -4,4 + 532: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -5,4 + 533: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -6,4 + 534: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -7,4 + 535: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -8,4 + 536: color: '#334E6DC8' id: BrickTileWhiteLineN - decals: - 528: -1,4 - 529: -2,4 - 530: -3,4 - 531: -4,4 - 532: -5,4 - 533: -6,4 - 534: -7,4 - 535: -8,4 - 536: -9,4 - 588: 1,8 - 589: 0,8 - 590: -1,10 - 591: -2,10 - 592: -3,10 - 593: -4,10 - 594: -5,10 - 595: -6,10 - 596: -7,10 - 597: -8,10 - 598: -9,10 - 599: -10,8 - 600: -11,8 - 1254: -22,-1 - 1255: -21,-1 - 1256: -20,-1 - 1257: -19,-1 - - node: + coordinates: -9,4 + 537: color: '#334E6DC8' id: BrickTileWhiteCornerSw - decals: - 537: -10,3 - 1262: -23,-2 - - node: + coordinates: -10,3 + 538: color: '#334E6DC8' id: BrickTileWhiteCornerNw - decals: - 538: -10,4 - 1263: -23,-1 - - node: + coordinates: -10,4 + 539: + color: '#334E6DC8' + id: BrickTileWhiteLineW + coordinates: -13,4 + 540: color: '#334E6DC8' id: BrickTileWhiteLineW - decals: - 463: 5,4 - 464: 5,3 - 465: 2,3 - 466: 2,4 - 539: -13,4 - 540: -13,3 - 1232: -16,-2 - 1233: -16,-1 - 1356: -51,-46 - 1357: -51,-45 - 1358: -51,-44 - 1430: -71,-11 - 1431: -71,-12 - 1432: -71,-13 - 1433: -71,-14 - 2862: -55,-42 - - node: + coordinates: -13,3 + 541: + color: '#334E6DC8' + id: BrickTileWhiteLineE + coordinates: -15,4 + 542: + color: '#334E6DC8' + id: BrickTileWhiteLineE + coordinates: -15,3 + 543: + color: '#334E6DC8' + id: BrickTileWhiteLineE + coordinates: -12,4 + 544: color: '#334E6DC8' id: BrickTileWhiteLineE - decals: - 469: 3,3 - 470: 3,4 - 541: -15,4 - 542: -15,3 - 543: -12,4 - 544: -12,3 - 1239: -25,-1 - 1240: -25,-2 - 1434: -67,-11 - 1435: -67,-12 - 1436: -67,-13 - 1437: -67,-14 - - node: + coordinates: -12,3 + 545: color: '#334E6DC8' id: BrickTileWhiteInnerNe - decals: - 545: -15,2 - 1241: -25,-3 - - node: + coordinates: -15,2 + 546: color: '#334E6DC8' id: BrickTileWhiteInnerSe - decals: - 546: -15,5 - - node: - color: '#334E6DC8' - id: OffsetCheckerBOverlay - decals: - 601: -9,8 - 602: -9,7 - 603: -8,7 - 604: -8,8 - 605: -6,8 - 606: -6,7 - 607: -5,8 - 608: -4,8 - 609: -4,7 - 610: -5,7 - 611: -2,8 - 612: -1,8 - 613: -2,7 - 614: -1,7 - - node: + coordinates: -15,5 + 549: color: '#FFFFFFFF' - id: BrickTileDarkCornerNe - decals: - 238: 10,-32 - 246: 14,-40 - 437: 17,1 - 442: 12,9 - 481: 0,4 - 615: -8,8 - 616: -4,8 - 617: -1,8 - 663: -37,-18 - 819: -22,-4 - 1224: -2,-51 - 1242: -18,-1 - - node: + id: BrickTileDarkLineS + coordinates: -11,6 + 550: color: '#FFFFFFFF' - id: BrickTileDarkCornerSe - decals: - 239: 10,-34 - 247: 14,-43 - 432: 17,-2 - 441: 12,6 - 482: 0,3 - 618: -1,7 - 619: -4,7 - 620: -8,7 - 661: -37,-19 - 818: -22,-7 - 1225: -2,-53 - 1243: -18,-2 - - node: + id: BrickTileDarkLineS + coordinates: -10,6 + 551: color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 276: 11,-36 - 282: 14,-35 - 283: 15,-35 - 284: 16,-35 - 285: 17,-35 - 286: 18,-35 - 287: 19,-35 - 347: 17,-4 - 348: 16,-4 - 349: 15,-4 - 350: 11,4 - 351: 12,4 - 352: 13,4 - 356: 14,9 - 357: 15,9 - 360: 15,16 - 361: 14,16 - 397: 14,1 - 881: -39,-2 - 882: -38,-2 - 883: -37,-2 - 884: -36,-2 - 885: -35,-2 - 886: -34,-2 - 887: -33,4 - 888: -32,4 - 889: -31,4 - 900: -31,-6 - 901: -30,-6 - 902: -29,-6 - 903: -28,-6 - 904: -27,-6 - 905: -26,-6 - 906: -25,-6 - 930: -30,-1 - 1150: -62,-12 - 1151: -61,-12 - 1152: -60,-12 - 1293: -52,-16 - 1294: -53,-16 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineN - decals: - 914: -31,-6 - 915: -30,-6 - 916: -29,-6 - 917: -28,-6 - 918: -27,-6 - 919: -26,-6 - 920: -25,-6 - 921: -39,-2 - 922: -38,-2 - 923: -37,-2 - 924: -36,-2 - 925: -35,-2 - 926: -34,-2 - 927: -33,4 - 928: -32,4 - 929: -31,4 - 931: -30,-1 - - node: + id: BrickTileDarkLineS + coordinates: -9,6 + 552: color: '#FFFFFFFF' - id: BrickTileDarkInnerSw - decals: - 365: 16,11 - 457: 5,5 - 511: -16,-32 - 1230: -16,0 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSw - decals: - 468: 5,5 - 1234: -16,0 - - node: - color: '#EFB34196' - id: Bot - decals: - 1370: 29,7 - 1371: 43,9 - 1372: 20,-14 - 1373: 11,1 - 1374: 7,8 - 1375: -7,8 - 1376: -4,1 - 1377: -6,-14 - 1378: -19,6 - 1379: -33,-1 - 1380: -41,-10 - 1381: -58,-15 - 1382: -40,-22 - 1383: -14,-31 - 1384: -22,-47 - 1385: -40,-46 - 1386: -3,-47 - 1387: -13,-55 - 1388: 4,-40 - 1389: 13,-34 - 1390: 7,-29 - 1391: -4,-20 - 2769: -12,-25 - - node: + id: BrickTileDarkLineS + coordinates: -8,6 + 553: color: '#FFFFFFFF' - id: WarnLineE - decals: - 72: -6,-74 - 73: -6,-75 - 74: -6,-76 - 119: -2,-71 - 120: -2,-73 - 123: 1,-73 - 124: 1,-71 - 855: -34,-9 - 1392: -13,4 - 1393: -13,3 - - node: - cleanable: True - color: '#A4610696' - id: DirtLight - decals: - 1438: -32,12 - 1439: -36,0 - 1440: -37,-4 - 1441: -31,-3 - 1442: -32,0 - 1443: -27,-3 - 1444: -19,-2 - 1445: -31,-12 - 1446: -37,-13 - 1447: -46,-12 - 1448: -51,-13 - 1449: -58,-12 - 1450: -64,-14 - 1451: -60,-17 - 1452: -58,-14 - 1453: -52,-15 - 1454: -53,-19 - 1455: -51,-19 - 1456: -47,-16 - 1457: -38,-12 - 1458: -34,-13 - 1459: -34,-17 - 1460: -30,-16 - 1461: -29,-23 - 1462: -35,-23 - 1463: -39,-22 - 1464: -23,-23 - 1465: -19,-20 - 1466: -18,-20 - 1467: -24,-17 - 1468: -26,-16 - 1469: -23,-16 - 1470: -22,-17 - 1471: -24,-31 - 1472: -24,-33 - 1473: -26,-32 - 1474: -23,-34 - 1475: -20,-32 - 1476: -18,-32 - 1477: -16,-29 - 1478: -14,-24 - 1479: -15,-18 - 1480: -17,-14 - 1481: -15,-13 - 1482: -15,-8 - 1483: -15,-4 - 1484: -16,0 - 1485: -16,4 - 1486: -15,7 - 1487: -18,6 - 1488: -9,3 - 1489: -3,3 - 1490: 2,3 - 1491: -3,7 - 1492: -7,6 - 1493: -10,6 - 1494: 8,8 - 1495: 6,1 - 1496: 5,-4 - 1497: 6,-10 - 1498: 9,-11 - 1499: 15,-12 - 1500: 21,-13 - 1501: 15,-8 - 1502: 15,-4 - 1503: 12,-3 - 1504: 13,3 - 1505: 15,6 - 1506: 15,9 - 1507: 15,15 - 1508: 16,19 - 1509: 18,20 - 1510: 10,19 - 1511: 23,-12 - 1512: 26,-13 - 1513: 36,-11 - 1514: 40,-12 - 1515: 42,-12 - 1517: 43,-4 - 1519: 43,4 - 1521: 46,3 - 1522: 47,3 - 1523: 46,-7 - 1524: 47,-6 - 1525: 31,4 - 1526: 30,0 - 1527: 31,-4 - 1528: 30,-7 - 1529: 19,-17 - 1530: 19,-23 - 1531: 18,-22 - 1532: 15,-24 - 1533: 19,-25 - 1534: 8,-27 - 1535: 9,-20 - 1536: 6,-21 - 1537: 5,-16 - 1538: 1,-22 - 1539: -1,-23 - 1540: -3,-26 - 1541: -4,-25 - 1542: 0,-25 - 1543: 1,-25 - 1544: 6,-25 - 1545: 3,-29 - 1546: 5,-34 - 1547: 6,-36 - 1548: 4,-39 - 1549: 6,-40 - 1550: 4,-42 - 1551: 1,-38 - 1552: 1,-33 - 1553: 2,-34 - 1554: 8,-37 - 1555: 8,-39 - 1556: 12,-36 - 1557: 15,-36 - 1558: 16,-35 - 1559: 17,-38 - 1560: 18,-36 - 1561: 11,-40 - 1562: 14,-41 - 1563: 12,-42 - 1564: 18,-43 - 1565: 17,-41 - 1566: 18,-42 - 1567: 17,-44 - 1568: 18,-47 - 1569: 14,-48 - 1570: 10,-48 - 1571: 9,-46 - 1572: 10,-45 - 1573: 5,-51 - 1574: 2,-50 - 1575: 3,-49 - 1576: 6,-48 - 1577: -3,-45 - 1578: -8,-46 - 1579: -12,-45 - 1580: -17,-46 - 1581: -21,-45 - 1582: -25,-46 - 1583: -30,-45 - 1584: -34,-46 - 1585: -40,-45 - 1586: -44,-46 - 1587: -48,-45 - 1588: -55,-46 - 1589: -43,-41 - 1590: -44,-38 - 1591: -44,-34 - 1592: -43,-31 - 1593: -40,-36 - 1594: -48,-25 - 1595: -47,-25 - 1596: -52,-19 - 1597: -52,-16 - 1598: -47,-18 - 2718: -5,-11 - 2719: -1,-11 - 2720: -7,-14 - 2721: -13,-13 - 2722: -15,-14 - 2723: -33,-44 - 2724: -34,-44 - 2725: -33,-46 - 2726: -44,-44 - 2727: -43,-35 - 2728: -44,-32 - 2729: -44,-30 - 2748: -30,-26 - 2749: -30,-25 - - node: - cleanable: True - color: '#A4610641' - id: Dirt - decals: - 1601: -25,-13 - 1602: -16,-12 - 1603: -16,-5 - 1604: -15,2 - 1605: -15,7 - 1606: -37,-4 - 1607: -38,-3 - 1608: -31,-3 - 1609: -29,-7 - 1610: -26,-7 - 1611: -19,-15 - 1612: -19,-19 - 1613: -20,-21 - 1614: -24,-23 - 1615: -31,-22 - 1616: -37,-23 - 1617: -30,-15 - 1618: -35,-18 - 1619: -34,-18 - 1620: -33,-16 - 1621: -34,-16 - 1622: -25,-28 - 1623: -25,-31 - 1624: -24,-33 - 1625: -23,-31 - 1626: -23,-33 - 1627: -20,-32 - 1628: -19,-32 - 1629: -15,-29 - 1630: -14,-27 - 1631: -15,-23 - 1632: -15,-21 - 1633: -15,-18 - 1634: -16,-16 - 1635: -11,-18 - 1636: -12,-16 - 1637: -10,-16 - 1638: -11,-22 - 1639: -11,-20 - 1640: -10,-21 - 1641: -10,-23 - 1642: -10,-25 - 1643: -11,-26 - 1644: -8,-25 - 1645: -6,-24 - 1646: -6,-26 - 1647: -3,-25 - 1648: -3,-26 - 1649: -4,-26 - 1650: -14,-44 - 1651: -20,-46 - 1652: -25,-44 - 1653: -28,-46 - 1654: -30,-46 - 1655: -33,-45 - 1656: -36,-46 - 1657: -39,-44 - 1658: -42,-46 - 1659: -46,-45 - 1660: -48,-45 - 1661: -23,-45 - 1662: -20,-46 - 1663: -13,-46 - 1664: -9,-45 - 1665: -7,-46 - 1666: -3,-44 - 1667: 4,-44 - 1668: -9,-49 - 1669: -12,-49 - 1670: -11,-53 - 1671: -12,-55 - 1672: -10,-57 - 1673: -5,-57 - 1674: -4,-55 - 1675: -3,-56 - 1676: -6,-60 - 1677: -6,-64 - 1678: -6,-71 - 1679: -3,-72 - 1680: -2,-75 - 1681: -2,-77 - 1682: 0,-77 - 1683: -2,-77 - 1684: -5,-77 - 1685: -6,-77 - 1686: -5,-78 - 1687: -5,-78 - 1688: -5,-78 - 1689: -1,-77 - 1690: 1,-77 - 1691: 1,-80 - 1692: 1,-82 - 1693: -3,-74 - 1694: -3,-55 - 1695: 4,-44 - 1696: 5,-40 - 1697: 19,-38 - 1698: 19,-36 - 1699: 16,-37 - 1700: 17,-37 - 1701: 17,-42 - 1702: 18,-41 - 1703: 18,-43 - 1704: 17,-44 - 1705: 17,-44 - 1706: 17,-41 - 1707: 20,-41 - 1708: 12,-38 - 1709: 6,-34 - 1710: 5,-29 - 1711: 6,-25 - 1712: 8,-23 - 1713: 8,-21 - 1714: 9,-20 - 1715: 5,-18 - 1716: 6,-13 - 1717: 10,-11 - 1718: 10,-9 - 1719: 15,-8 - 1720: 15,-3 - 1721: 12,-2 - 1722: 13,1 - 1723: 14,5 - 1724: 14,8 - 1725: 16,18 - 1726: 17,19 - 1727: 18,20 - 1728: 18,20 - 1729: 14,20 - 1730: 11,20 - 1731: 10,20 - 1732: 11,19 - 1733: 13,19 - 1734: 13,19 - 1735: 12,19 - 1736: 12,19 - 1737: 12,19 - 1738: 12,19 - 1739: 13,19 - 1740: 17,19 - 1741: 17,20 - 1742: 17,20 - 1743: 17,19 - 1744: 17,19 - 1745: 10,19 - 1746: 10,20 - 1747: 11,22 - 1748: 12,23 - 1749: 11,23 - 1750: 12,22 - 1751: 12,22 - 1752: 10,22 - 1753: 10,22 - 1754: 13,23 - 1755: 13,23 - 1756: 13,23 - 1757: 12,22 - 1758: 13,22 - 1759: 12,22 - 1760: 17,18 - 1761: 15,14 - 1762: 15,8 - 1763: 17,-4 - 1764: 17,-4 - 1765: 20,-12 - 1766: 29,-11 - 1767: 34,-12 - 1768: 38,-12 - 1769: 43,-11 - 1772: 43,-4 - 1773: 43,0 - 1774: 43,3 - 1777: 46,2 - 1778: 47,3 - 1779: 31,4 - 1780: 31,1 - 1781: 30,-3 - 1782: 31,-5 - 1783: 31,-8 - 1784: 37,-11 - 1785: 23,-22 - 1786: 22,-22 - 1787: 19,-22 - 1788: 17,-23 - 1789: 16,-23 - 1790: 16,-25 - 1791: 20,-24 - 1792: 19,-25 - 1793: 19,-29 - 1794: 19,-31 - 1795: 18,-33 - 1796: 15,-32 - 1797: 12,-32 - 1798: 12,-30 - 1799: 9,-30 - 1800: 10,-46 - 1801: 10,-45 - 1802: 9,-45 - 1803: 6,-51 - 1804: 5,-51 - 1805: 4,-49 - 1806: 3,-49 - 1807: 5,-48 - 1808: 6,-48 - 1809: 6,-49 - 1810: 5,-50 - 1811: 4,-49 - 1812: 3,-49 - 1813: 5,-48 - 1814: 6,-48 - 1815: 5,-50 - 1816: 4,-50 - 1817: 2,-54 - 1818: 3,-54 - 1819: 4,-54 - 1820: 5,-54 - 1821: 6,-54 - 1822: 5,-54 - 1823: 3,-54 - 1824: 3,-55 - 1825: 3,-55 - 1826: 2,-55 - 1827: 2,-55 - 1828: 3,-54 - 1829: -33,-62 - 1830: -33,-62 - 1831: -28,-62 - 1832: -33,-62 - 1833: -57,-34 - 1834: -58,-34 - 1835: -58,-32 - 1836: -57,-32 - 1837: -59,-32 - 1838: -60,-33 - 1839: -59,-34 - 1840: -59,-36 - 1841: -58,-36 - 1842: -57,-36 - 1843: -58,-33 - 1844: -57,-32 - 1845: -54,-33 - 1846: -54,-32 - 1847: -53,-32 - 1848: -52,-32 - 1849: -52,-33 - 1850: -53,-33 - 1851: -54,-33 - 1852: -55,-33 - 1853: -53,-33 - 1854: -53,-32 - 1855: -54,-32 - 1856: -53,-34 - 1857: -52,-34 - 1858: -55,-33 - 1859: -55,-34 - 1860: -55,-35 - 1861: -54,-36 - 1862: -53,-36 - 1863: -52,-36 - - node: - cleanable: True - color: '#A4610696' - id: Dirt - decals: - 1599: -53,-15 - 1600: -38,-13 - 2165: -47,-46 - 2166: -48,-45 - 2167: -43,-45 - 2168: -41,-46 - 2169: -37,-44 - 2170: -43,-41 - 2171: -43,-39 - 2172: -44,-38 - 2173: -44,-37 - 2174: -44,-35 - 2175: -42,-34 - 2176: -44,-33 - 2177: -43,-32 - 2178: -43,-31 - 2179: -44,-30 - 2180: -44,-34 - 2181: -44,-36 - 2182: -43,-39 - 2183: -44,-41 - 2184: -30,-56 - 2185: -29,-56 - 2186: -30,-57 - 2187: -29,-57 - 2188: -44,-41 - 2189: -43,-33 - 2190: -43,-30 - 2191: -55,-44 - 2192: -56,-47 - 2193: -47,-46 - 2194: -43,-44 - 2195: -32,-46 - 2196: -29,-44 - 2197: -26,-45 - 2198: -21,-44 - 2199: -11,-45 - 2200: -9,-45 - 2201: -6,-46 - 2202: -4,-45 - 2203: -2,-45 - 2204: 3,-45 - 2205: 4,-45 - 2206: 6,-44 - 2207: 3,-48 - 2208: 4,-50 - 2209: 5,-51 - 2210: 5,-51 - 2211: 6,-49 - 2212: 7,-49 - 2213: 6,-51 - 2214: 5,-52 - 2215: 5,-52 - 2216: 3,-49 - 2217: 10,-46 - 2218: 11,-47 - 2219: 10,-46 - 2220: 11,-46 - 2221: 13,-45 - 2222: 14,-45 - 2223: 14,-46 - 2224: 11,-46 - 2225: 12,-47 - 2226: 15,-47 - 2227: 18,-47 - 2228: 18,-43 - 2229: 17,-42 - 2230: 18,-41 - 2231: 19,-42 - 2232: 19,-44 - 2233: 18,-44 - 2234: 17,-44 - 2235: 17,-44 - 2236: 17,-42 - 2237: 17,-41 - 2238: 17,-41 - 2239: 16,-41 - 2240: 13,-41 - 2241: 12,-41 - 2242: 12,-41 - 2243: 12,-42 - 2244: 11,-41 - 2245: 12,-38 - 2246: 14,-36 - 2247: 15,-37 - 2248: 17,-38 - 2249: 18,-36 - 2250: 18,-35 - 2251: 19,-38 - 2252: 14,-38 - 2253: 8,-36 - 2254: 8,-38 - 2255: 8,-40 - 2256: 4,-36 - 2257: 5,-33 - 2258: 5,-32 - 2259: 5,-30 - 2260: 5,-27 - 2261: 5,-25 - 2262: 5,-23 - 2263: 5,-21 - 2264: 5,-19 - 2265: 6,-18 - 2266: -14,-42 - 2267: -15,-40 - 2268: -15,-36 - 2269: -16,-33 - 2270: -15,-31 - 2271: -15,-29 - 2272: -15,-28 - 2273: -15,-26 - 2274: -15,-23 - 2275: -14,-22 - 2276: -16,-20 - 2277: -15,-18 - 2278: -17,-16 - 2279: -19,-14 - 2280: -20,-12 - 2281: -19,-14 - 2282: -17,-15 - 2283: -15,-12 - 2284: -16,-11 - 2285: -16,-8 - 2286: -15,-7 - 2287: -15,-5 - 2288: -16,-3 - 2289: -16,-1 - 2290: -15,2 - 2291: -16,3 - 2292: -15,5 - 2293: -14,7 - 2294: -16,7 - 2295: -18,7 - 2296: -18,7 - 2297: -14,6 - 2298: -9,3 - 2299: -6,4 - 2300: -3,3 - 2301: -1,3 - 2302: 0,4 - 2303: 3,3 - 2304: 2,4 - 2305: 4,4 - 2306: 6,6 - 2307: 8,8 - 2308: 5,-1 - 2309: 6,-3 - 2310: 5,-5 - 2311: 6,-7 - 2312: 6,-9 - 2313: 5,-10 - 2314: 6,-12 - 2315: 7,-13 - 2316: 8,-12 - 2317: 8,-9 - 2318: 10,-12 - 2319: 9,-9 - 2320: 8,-8 - 2321: 14,-9 - 2322: 15,-8 - 2323: 14,-6 - 2324: 16,-4 - 2325: 14,-5 - 2326: 13,-4 - 2327: 12,-2 - 2328: 11,0 - 2329: 12,1 - 2330: 13,4 - 2331: 9,2 - 2332: 8,2 - 2333: 8,2 - 2334: 8,3 - 2335: 8,4 - 2336: 9,3 - 2337: 8,0 - 2338: 8,-1 - 2339: 8,-2 - 2340: 9,-2 - 2341: 14,5 - 2342: 15,6 - 2343: 15,7 - 2344: 15,9 - 2345: 14,11 - 2346: 14,11 - 2347: 15,12 - 2348: 16,12 - 2349: 14,12 - 2350: 13,11 - 2351: 15,15 - 2352: 14,15 - 2353: 14,16 - 2354: 16,19 - 2355: 16,20 - 2356: 12,19 - 2357: 11,19 - 2358: 10,20 - 2359: 18,20 - 2360: 11,18 - 2361: 10,18 - 2362: 8,-13 - 2363: 13,-12 - 2364: 15,-12 - 2365: 20,-11 - 2366: 22,-12 - 2367: 26,-12 - 2368: 28,-11 - 2369: 34,-12 - 2370: 35,-12 - 2371: 37,-13 - 2372: 42,-12 - 2373: 42,-10 - 2375: 43,-6 - 2376: 43,-4 - 2381: 43,7 - 2382: 45,3 - 2383: 46,2 - 2384: 47,2 - 2385: 31,4 - 2386: 30,2 - 2387: 31,-1 - 2388: 30,-4 - 2389: 30,-6 - 2390: 31,-8 - 2391: 30,-12 - 2392: 26,-13 - 2393: 20,-11 - 2394: 13,-12 - 2395: 11,-11 - 2396: 8,-11 - 2397: 7,-12 - 2398: 1,-13 - 2399: -2,-12 - 2400: -5,-11 - 2401: -8,-13 - 2402: -9,-11 - 2403: -10,-12 - 2404: -5,-10 - 2405: -3,-10 - 2406: -2,-10 - 2407: -1,-10 - 2408: -1,-10 - 2409: -2,-13 - 2410: -4,-13 - 2411: -5,-12 - 2412: -7,-12 - 2413: -25,-22 - 2414: -30,-22 - 2415: -39,-22 - 2416: -30,-16 - 2417: -30,-15 - 2418: -14,-33 - 2419: -11,-26 - 2420: -10,-26 - 2421: -7,-25 - 2422: -6,-24 - 2423: -7,-26 - 2424: -6,-26 - 2425: -7,-24 - 2426: -8,-26 - 2427: -10,-26 - 2428: -10,-27 - 2429: -11,-25 - 2430: -7,-26 - 2438: -9,-25 - 2439: -7,-26 - 2440: -6,-26 - 2441: -6,-25 - 2442: -11,-26 - 2443: -11,-22 - 2444: -11,-21 - 2445: -10,-20 - 2446: -13,-16 - 2447: -12,-16 - 2448: -10,-16 - 2449: -11,-18 - 2450: -11,-19 - 2451: -11,-21 - 2452: -11,-21 - 2453: -3,-26 - 2454: -3,-25 - 2455: -1,-22 - 2456: 1,-21 - 2457: 2,-22 - 2458: -1,-22 - 2459: 1,-25 - 2460: 2,-25 - 2461: -1,-26 - 2462: -1,-26 - 2463: -4,-22 - 2464: -2,-20 - 2465: -37,-3 - 2466: -38,-4 - 2467: -39,-5 - 2468: -34,-3 - 2469: -32,-4 - 2470: -37,0 - 2471: -39,1 - 2472: -39,2 - 2473: -36,4 - 2474: -35,3 - 2475: -32,2 - 2476: -32,3 - 2477: -31,-3 - 2478: -31,-4 - 2479: -30,-3 - 2480: -27,-1 - 2481: -25,-1 - 2482: -25,-3 - 2483: -26,-3 - 2484: -23,-2 - 2485: -20,-2 - 2486: -18,-2 - 2487: -8,4 - 2488: -6,4 - 2489: -2,4 - 2490: 0,3 - 2491: -1,7 - 2492: -3,8 - 2493: -6,8 - 2494: -9,7 - 2495: -10,6 - 2496: -7,7 - 2497: -5,7 - 2498: -2,7 - 2499: -1,6 - 2500: -1,8 - 2501: -8,9 - 2502: -9,6 - 2503: -5,7 - 2504: -4,8 - 2505: -4,7 - 2506: -6,7 - 2507: -6,8 - 2508: -5,8 - 2509: -5,8 - 2510: -6,7 - 2511: -4,7 - 2512: -4,8 - 2513: -3,7 - 2514: -7,6 - 2515: -8,6 - 2516: -4,3 - 2517: -2,3 - 2518: -1,4 - 2519: -6,3 - 2520: -7,4 - 2521: -7,3 - 2522: 5,3 - 2523: 5,2 - 2524: 6,2 - 2525: 6,1 - 2526: 6,1 - 2527: 6,-8 - 2528: -3,-13 - 2529: -6,-12 - 2530: -13,-12 - 2531: -17,-12 - 2532: -19,-12 - 2533: -22,-12 - 2534: -25,-12 - 2535: -27,-12 - 2536: -29,-13 - 2537: -37,-12 - 2538: -39,-12 - 2539: -41,-13 - 2540: -36,-3 - 2541: -35,-2 - 2542: -35,-4 - 2543: -36,-4 - 2544: -31,4 - 2545: -32,4 - 2546: -33,9 - 2547: -32,11 - 2548: -32,13 - 2549: -32,12 - 2550: -32,10 - 2551: -32,10 - 2552: -31,13 - 2553: -33,18 - 2554: -35,20 - 2555: -36,20 - 2556: -38,18 - 2557: -36,15 - 2558: -33,14 - 2559: -36,13 - 2560: -36,11 - 2561: -36,10 - 2562: -37,10 - 2563: -35,13 - 2564: -33,16 - 2565: -33,17 - 2566: -32,17 - 2567: -21,1 - 2568: -20,1 - 2569: -22,1 - 2570: 7,-21 - 2571: 7,-24 - 2572: 7,-25 - 2573: 7,-30 - 2574: 7,-30 - 2575: 2,-46 - 2576: -6,-46 - 2577: -6,-46 - 2578: -25,-47 - 2579: -25,-47 - 2580: -41,-46 - 2581: -41,-48 - 2582: -39,-48 - 2583: -38,-48 - 2584: -19,-17 - 2585: -20,-17 - 2586: -18,-17 - 2587: -17,-17 - 2588: -16,-17 - 2589: -20,-13 - 2590: -21,-13 - 2591: -15,-14 - 2592: -15,-15 - 2593: -16,-15 - 2594: -14,-21 - 2595: -14,-26 - 2596: 4,-21 - 2597: 4,-22 - 2598: 9,-13 - 2599: 10,-9 - 2600: 10,-7 - 2601: 14,-7 - 2602: 14,-8 - 2603: 14,14 - 2604: 15,16 - 2605: 14,18 - 2606: 15,18 - 2607: 16,18 - 2608: 5,4 - 2609: -15,4 - 2610: -15,3 - 2611: -1,-11 - 2612: -8,-11 - 2613: -7,-11 - 2614: 14,-12 - 2615: 16,-13 - 2616: 19,-14 - 2617: 19,-13 - 2618: 20,-13 - 2619: 30,-11 - 2620: 29,-11 - 2621: 30,-10 - 2622: 43,-7 - 2623: 43,3 - 2624: 43,2 - 2625: 30,5 - 2626: 30,4 - 2627: 10,-8 - 2628: 9,-10 - 2629: 4,-35 - 2630: 2,-35 - 2631: 1,-35 - 2632: 1,-36 - 2633: 2,-36 - 2634: -14,-35 - 2635: -16,-36 - 2636: -16,-36 - 2637: -16,-32 - 2638: -20,-19 - 2639: -19,-20 - 2640: -19,-19 - 2641: -15,-44 - 2642: -14,-44 - 2643: -16,-44 - 2644: -13,-47 - 2645: -12,-47 - 2646: -8,-47 - 2647: 6,-45 - 2648: 7,-41 - 2649: 9,-40 - 2650: 9,-41 - 2651: 13,-38 - 2652: 14,-38 - 2653: 18,-40 - 2654: 17,-40 - 2655: -25,-2 - 2656: -30,-2 - 2657: -30,-1 - 2658: -30,-2 - 2659: -30,-4 - 2660: -32,4 - 2661: -38,-5 - 2662: -39,-2 - 2663: -38,-3 - 2664: -31,-8 - 2665: -30,-8 - 2666: -30,-7 - 2667: -31,-6 - 2668: -30,-6 - 2669: -31,-7 - 2670: -29,-7 - 2671: -28,-7 - 2672: -27,-8 - 2673: -47,-13 - 2674: -51,-13 - 2675: -54,-13 - 2676: -54,-15 - 2677: -51,-15 - 2678: -57,-11 - 2679: -59,-11 - 2680: -65,-11 - 2681: -65,-13 - 2682: -70,-13 - 2683: -69,-12 - 2684: -68,-11 - 2685: -67,-11 - 2686: -67,-13 - 2687: -68,-13 - 2688: -69,-13 - 2689: -67,-12 - 2690: -57,-12 - 2691: -54,-20 - 2692: -42,-14 - 2693: -42,-10 - 2694: -33,-13 - 2695: -29,-10 - 2696: -28,-10 - 2697: -27,-10 - 2698: -29,-11 - 2699: -28,-11 - 2700: -27,-11 - 2701: -26,-11 - 2702: -25,-12 - 2703: -20,-44 - 2704: -18,-46 - 2705: -17,-46 - 2706: 16,-35 - 2707: 16,-35 - 2708: 4,-22 - 2709: 27,-11 - 2710: 11,2 - 2711: 11,9 - 2712: 5,-14 - 2713: 6,-14 - 2714: 5,-13 - 2715: 3,-13 - 2716: 0,-12 - 2717: -4,-12 - 2750: -30,-25 - 2751: -30,-28 - 2752: -31,-28 - 2753: -26,-25 - 2754: -26,-27 - 2755: -25,-25 - 2756: -25,-23 - 2757: -26,-23 - 2758: -27,-21 - 2759: -27,-23 - 2760: -29,-21 - 2761: -29,-23 - 2762: -30,-21 - 2763: -30,-23 - 2764: -20,-27 - 2765: -18,-33 - 2766: -21,-31 - 2767: -18,-30 - 2768: -18,-31 - - node: + id: BrickTileDarkLineS + coordinates: -7,6 + 554: color: '#FFFFFFFF' - id: BrickTileSteelLineS - decals: - 269: 11,-38 - 270: 12,-38 - 271: 13,-38 - 272: 14,-38 - 273: 15,-38 - 341: 15,-9 - 342: 14,-9 - 343: 17,-5 - 344: 16,-5 - 345: 13,-5 - 346: 12,-5 - 353: 11,-2 - 354: 14,3 - 355: 15,3 - 358: 14,14 - 359: 15,14 - 874: -39,-5 - 875: -38,-5 - 876: -37,-5 - 877: -36,-5 - 878: -35,-5 - 879: -34,-5 - 880: -33,-5 - 890: -32,-4 - 891: -31,-4 - 892: -30,-4 - 893: -31,-8 - 894: -30,-8 - 895: -29,-8 - 896: -28,-8 - 897: -27,-8 - 898: -26,-8 - 899: -25,-8 - 1153: -62,-14 - 1154: -61,-14 - 1155: -60,-14 - 1285: -53,-19 - 1286: -52,-19 - 1288: -51,-19 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineS - decals: - 180: -18,-33 - 181: -19,-33 - 182: -20,-33 - 331: 12,-9 - 332: 12,-8 - 362: 14,14 - 363: 15,14 - 372: 14,11 - 373: 15,11 - 385: 15,3 - 386: 14,3 - 387: 11,-2 - 388: 12,-5 - 389: 13,-5 - 390: 14,-9 - 391: 15,-9 - 392: 16,-5 - 393: 17,-5 - 405: 17,-9 - 406: 18,-9 - 407: 19,-9 - 1119: 8,-6 - 1120: 9,-6 - - node: + id: BrickTileDarkLineS + coordinates: -6,6 + 555: color: '#FFFFFFFF' - id: BrickTileDarkInnerNw - decals: - 366: 16,12 - 462: 5,2 - 512: -16,-34 - 1231: -16,-3 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 176: -18,-30 - 177: -19,-30 - 178: -20,-30 - 179: -21,-30 - 333: 12,-8 - 334: 12,-7 - 374: 15,12 - 375: 14,12 - 380: 14,9 - 381: 15,9 - 382: 13,4 - 383: 12,4 - 384: 11,4 - 394: 17,-4 - 395: 16,-4 - 396: 15,-4 - 398: 14,1 - 399: 15,16 - 400: 14,16 - 408: 17,-7 - 409: 18,-7 - 410: 19,-7 - 1114: 8,-4 - 1115: 9,-4 - 1116: 10,-4 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerNw - decals: - 376: 16,12 - 515: -16,-34 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerNe - decals: - 188: -23,-32 - 377: 13,12 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSe - decals: - 187: -23,-30 - 378: 13,11 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSw - decals: - 379: 16,11 - 514: -16,-32 - - node: + id: BrickTileDarkLineS + coordinates: -5,6 + 556: color: '#FFFFFFFF' - id: Grassb1 - decals: - 401: 18,19 - - node: + id: BrickTileDarkLineS + coordinates: -4,6 + 557: color: '#FFFFFFFF' - id: Grassb2 - decals: - 402: 18,18 - - node: + id: BrickTileDarkLineS + coordinates: -3,6 + 558: color: '#FFFFFFFF' - id: Grassb3 - decals: - 403: 19,18 - - node: + id: BrickTileDarkLineS + coordinates: -2,6 + 559: color: '#FFFFFFFF' - id: Grassb5 - decals: - 404: 19,19 - - node: - color: '#DE3A3A96' - id: MiniTileCheckerAOverlay - decals: - 411: 10,9 - 412: 11,9 - 413: 12,9 - 414: 10,8 - 415: 11,8 - 416: 12,8 - 417: 10,7 - 418: 11,7 - 419: 12,7 - 420: 10,6 - 421: 11,6 - 422: 12,6 - 423: 16,1 - 424: 17,1 - 425: 16,0 - 426: 17,0 - 427: 16,-1 - 428: 17,-1 - 429: 16,-2 - 430: 17,-2 - - node: + id: BrickTileDarkLineS + coordinates: -1,6 + 562: color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 449: 4,6 - 450: 4,7 - 451: 4,8 - 965: -2,-55 - 966: -2,-56 - 967: -2,-57 - 968: -10,-54 - 969: -10,-55 - 970: -10,-51 - 971: -10,-52 - 972: -10,-53 - 1097: -17,-4 - 1098: -17,-6 - 1099: -17,-5 - 1100: -17,-7 - 1101: -17,-8 - 1102: -17,-9 - 1157: -59,-13 - 1290: -51,-18 - 1291: -51,-17 - - node: - color: '#9FED5896' - id: BrickTileSteelLineE - decals: - 452: 4,6 - 453: 4,7 - 454: 4,8 - 1103: -17,-4 - 1104: -17,-5 - 1105: -17,-6 - 1106: -17,-7 - 1107: -17,-8 - 1108: -17,-9 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNw - decals: - 467: 5,2 - 1235: -16,-3 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSe - decals: - 547: 0,3 - 1265: -18,-2 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNe - decals: - 548: 0,4 - 1264: -18,-1 - - node: + id: BrickTileDarkLineN + coordinates: -11,8 + 563: color: '#FFFFFFFF' - id: WarnLineW - decals: - 76: -7,-73 - 79: -7,-70 - 80: -6,-70 - 106: -5,-77 - 107: -4,-77 - 115: 0,-80 - 116: 1,-80 - 643: -7,-62 - 644: -6,-62 - 645: -7,-59 - 646: -6,-59 - 956: -8,-55 - 957: -5,-55 - 1364: 17,7 - 1365: 18,7 - 1366: 19,7 - 2789: -12,-75 - 2790: -11,-75 - 2791: -10,-75 - 2848: -57,-44 - 2849: -58,-44 - - node: + id: BrickTileDarkLineN + coordinates: -10,8 + 564: color: '#FFFFFFFF' - id: WarnLineN - decals: - 77: -7,-71 - 78: -6,-71 - 113: 0,-78 - 114: 1,-78 - 637: -7,-57 - 638: -6,-57 - 639: -7,-60 - 640: -6,-60 - 641: -7,-64 - 642: -6,-64 - 852: -35,-8 - 853: -33,-8 - 1004: -16,-50 - 1367: 17,5 - 1368: 18,5 - 1369: 19,5 - 2850: -58,-46 - 2851: -57,-46 - - node: + id: BrickTileDarkLineN + coordinates: -9,10 + 565: color: '#FFFFFFFF' - id: WarnLineS - decals: - 109: -3,-76 - 110: -3,-75 - 111: -3,-74 - 112: -3,-73 - 117: 0,-81 - 118: 0,-82 - 121: 0,-73 - 122: 0,-71 - 854: -34,-9 - 1189: -7,-52 - 1394: 3,4 - 1395: 3,3 - - node: - color: '#9FED5896' - id: Bushc2 - decals: - 1403: 3.3756588,6.1882553 - 1404: 3.2762673,7.1390595 - - node: - color: '#9FED5896' - id: Bushc3 - decals: - 1405: 3.8158202,7.9337606 - 1406: 2.8219063,6.103108 - 1407: 2.8361046,8.274347 - 1408: 2.8219063,7.2951617 - 1409: 3.9436097,6.656562 - - node: - color: '#9FED5896' - id: grasssnow07 - decals: - 1059: -19.505627,-6.4402337 - 1060: -17.796093,-5.8442063 - 1061: -19.227331,-4.393875 - 1062: -18.949036,-8.109108 - 1063: -17.577433,-8.864074 - 1064: -19.704409,-8.943545 - 1065: -17.537676,-6.360763 - 1066: -17.756336,-7.989902 - 1067: -19.028547,-5.16871 - 1068: -19.167696,-6.9567895 - 1093: -17.785707,-4.560443 - 1094: -19.13743,-8.514086 - 1095: -17.547167,-9.030642 - 1096: -17.646559,-5.9313035 - 1410: 2.9070985,8.075672 - 1411: 3.4182546,7.025531 - - node: - color: '#9FED5896' - id: grasssnow04 - decals: - 1412: 3.077484,6.3869305 - - node: - color: '#9FED5896' - id: grasssnow08 - decals: - 1413: 3.6454349,6.571415 - 1414: 3.7732244,7.9479523 - - node: - color: '#9FED5896' - id: grasssnowb1 - decals: - 1415: 3.489249,6.2592106 - - node: - color: '#9FED5866' - id: Rock05 - decals: - 1416: 3.0206888,6.2592106 - 1417: 3.9010134,6.64237 - 1418: 3.1768754,7.2951617 - 1419: 2.6941173,8.189201 - 1420: 3.801622,8.04729 - 1421: 2.9212978,7.2667794 - - node: - cleanable: True - color: '#A4610696' - id: DirtHeavy - decals: - 1887: 31,5 - 1888: 31,2 - 1889: 31,-1 - 1890: 31,-3 - 1891: 30,-5 - 1892: 30,-7 - 1893: 31,-9 - 1894: 31,-12 - 1895: 34,-13 - 1896: 36,-12 - 1897: 39,-12 - 1898: 41,-13 - 1899: 43,-12 - 1900: 43,-10 - 1901: 43,-8 - 1903: 43,-3 - 1906: 45,3 - 1907: 45,2 - 1908: 46,2 - 1909: 47,3 - 1910: 45,-6 - 1911: 47,-6 - 1912: 47,-7 - 1913: 46,-7 - 1914: 35,-13 - 1915: 26,-12 - 1916: 23,-13 - 1917: 21,-12 - 1918: 18,-12 - 1919: 15,-11 - 1920: 13,-12 - 1921: 10,-12 - 1922: 8,-11 - 1923: 6,-12 - 1924: 4,-11 - 1925: -1,-12 - 1926: -4,-13 - 1927: -6,-12 - 1928: -8,-13 - 1929: -11,-12 - 1930: -13,-12 - 1931: -16,-12 - 1932: -19,-12 - 1933: -21,-12 - 1934: -24,-12 - 1935: -26,-12 - 1936: -28,-12 - 1937: -31,-12 - 1938: -35,-13 - 1939: -38,-11 - 1940: -40,-13 - 1941: -43,-12 - 1942: -45,-13 - 1943: -50,-12 - 1944: -52,-12 - 1945: -53,-12 - 1946: -55,-12 - 1947: -56,-12 - 1948: -58,-13 - 1949: -60,-12 - 1950: -63,-12 - 1951: -64,-12 - 1952: -64,-13 - 1953: -63,-14 - 1954: -62,-15 - 1955: -59,-14 - 1956: -55,-15 - 1957: -51,-15 - 1958: -51,-19 - 1959: -53,-17 - 1960: -50,-16 - 1961: -53,-16 - 1962: -54,-19 - 1963: -55,-20 - 1964: -52,-19 - 1965: -53,-16 - 1966: -47,-16 - 1967: -48,-17 - 1968: -46,-18 - 1969: -45,-17 - 1970: -33,-23 - 1971: -30,-22 - 1972: -25,-22 - 1973: -21,-23 - 1974: -22,-24 - 1975: -19,-24 - 1976: -20,-20 - 1977: -18,-19 - 1978: -22,-17 - 1979: -26,-17 - 1980: -27,-17 - 1981: -25,-15 - 1982: -19,-15 - 1983: -19,-13 - 1984: -18,-16 - 1985: -17,-16 - 1986: -15,-13 - 1987: -16,-16 - 1988: -15,-20 - 1989: -15,-22 - 1990: -14,-25 - 1991: -16,-27 - 1992: -15,-30 - 1993: -14,-32 - 1994: -16,-33 - 1995: -14,-36 - 1996: -14,-40 - 1997: -16,-42 - 1998: -14,-41 - 1999: -18,-46 - 2000: -20,-45 - 2001: -23,-46 - 2002: -25,-46 - 2003: -27,-45 - 2004: -30,-46 - 2005: -32,-45 - 2006: -34,-44 - 2007: -36,-46 - 2008: -39,-45 - 2009: -41,-45 - 2010: -43,-46 - 2011: -45,-45 - 2012: -47,-44 - 2013: -49,-45 - 2014: -51,-46 - 2015: -15,-46 - 2016: -8,-45 - 2017: -5,-46 - 2018: -1,-45 - 2019: 1,-46 - 2020: 4,-45 - 2021: 6,-44 - 2022: 6,-41 - 2023: 8,-39 - 2024: 9,-38 - 2025: 9,-37 - 2026: 8,-40 - 2027: 4,-36 - 2028: 6,-33 - 2029: 5,-30 - 2030: 5,-27 - 2031: 5,-25 - 2032: 4,-23 - 2033: 5,-20 - 2034: 5,-18 - 2035: 8,-20 - 2036: 9,-22 - 2037: 8,-23 - 2038: 8,-28 - 2039: 17,-38 - 2040: 18,-37 - 2041: 18,-36 - 2042: 17,-36 - 2043: 13,-35 - 2044: 14,-37 - 2045: 12,-38 - 2046: 13,-40 - 2047: 12,-41 - 2048: 12,-42 - 2049: 13,-42 - 2050: 11,-40 - 2051: 17,-43 - 2052: 17,-44 - 2053: 18,-44 - 2054: 18,-44 - 2055: 18,-42 - 2056: 19,-41 - 2057: 18,-39 - 2058: 15,-36 - 2059: 4,-26 - 2060: 5,-24 - 2061: 5,-21 - 2062: 5,-19 - 2063: 6,-17 - 2064: 5,-9 - 2065: 6,-7 - 2066: 6,-5 - 2067: 5,-3 - 2068: 6,0 - 2069: 5,2 - 2070: 6,6 - 2071: 8,7 - 2072: 5,7 - 2073: 5,-1 - 2074: 16,-5 - 2075: 14,-4 - 2076: 13,-4 - 2077: 13,-3 - 2078: 12,1 - 2079: 12,2 - 2080: 13,3 - 2081: 14,4 - 2082: 14,7 - 2083: 14,8 - 2084: 15,8 - 2085: 15,14 - 2086: 14,15 - 2087: 14,16 - 2088: 14,7 - 2089: 15,5 - 2090: 13,3 - 2091: 11,1 - 2092: 11,0 - 2093: 12,-1 - 2094: 13,-2 - 2095: 13,-4 - 2096: 14,-5 - 2097: 16,-5 - 2098: 15,-9 - 2099: 14,-9 - 2100: 26,-11 - 2101: 28,-12 - 2102: 6,-36 - 2103: 5,-46 - 2104: 3,-46 - 2105: 0,-45 - 2106: 4,-48 - 2107: 4,-49 - 2108: 5,-50 - 2109: 5,-51 - 2110: 6,-51 - 2111: 6,-49 - 2112: 3,-48 - 2113: -3,-46 - 2114: -6,-45 - 2115: -8,-45 - 2116: -10,-46 - 2117: -13,-44 - 2118: -12,-48 - 2119: -10,-48 - 2120: -8,-48 - 2121: -12,-49 - 2122: -11,-52 - 2123: -12,-52 - 2124: -12,-55 - 2125: -12,-57 - 2126: -9,-57 - 2127: -6,-56 - 2128: -4,-55 - 2129: -3,-55 - 2130: -3,-56 - 2131: -6,-56 - 2132: -7,-60 - 2133: -7,-60 - 2134: -7,-63 - 2135: -6,-64 - 2136: -6,-62 - 2137: -6,-59 - 2138: -7,-71 - 2139: -6,-70 - 2140: -7,-75 - 2141: -6,-74 - 2142: -7,-76 - 2143: -7,-77 - 2144: -6,-78 - 2145: -5,-78 - 2146: -4,-77 - 2147: -2,-77 - 2148: 0,-77 - 2149: 0,-77 - 2150: -2,-78 - 2151: -3,-75 - 2152: -2,-71 - 2153: -3,-72 - 2154: -3,-73 - 2155: 1,-81 - 2156: 0,-82 - 2157: 1,-82 - 2158: -3,-77 - 2159: -22,-60 - 2160: -26,-60 - 2161: -30,-60 - 2162: -34,-60 - 2163: -37,-60 - 2164: -40,-58 - 2431: -7,-26 - 2432: -9,-25 - 2433: -9,-25 - 2434: -7,-26 - 2435: -12,-26 - 2436: -7,-25 - 2437: -6,-27 - 2746: -30,-27 - 2747: -30,-28 - - node: - cleanable: True - color: '#A4610696' - id: DirtMedium - decals: - 2730: -44,-30 - 2731: -50,-44 - 2732: -8,-49 - 2733: -8,-55 - 2734: -6,-62 - 2735: 0,-80 - 2736: 1,-82 - 2737: -26,-44 - 2738: -4,-46 - 2739: -1,-46 - 2740: -1,-47 - 2741: -12,-13 - 2742: -7,-13 - 2743: 7,7 - - node: + id: BrickTileDarkLineN + coordinates: -8,10 + 566: color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 32: -1,-1 - 33: 0,-1 - 34: -2,-4 - 35: -3,-4 - 36: -1,-4 - 37: 0,-4 - 1347: -1,-21 - 1348: 0,-21 - 1349: 1,-21 - 1350: 2,-21 - - node: + id: BrickTileDarkLineN + coordinates: -7,10 + 567: color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 135: 7,-19 - 136: 7,-20 - 137: 7,-21 - 138: 7,-22 - 139: 7,-23 - 140: 7,-24 - 141: 7,-25 - 142: 7,-26 - 143: 7,-27 - 278: 12,-35 - 958: -13,-51 - 959: -13,-52 - 960: -13,-53 - 961: -13,-54 - 962: -13,-55 - 963: -13,-56 - 964: -13,-57 - 1156: -63,-13 - 1282: -54,-17 - 1283: -54,-18 - - node: - color: '#A4610696' - id: MiniTileCheckerBOverlay - decals: - 228: 8,-32 - 229: 9,-32 - 230: 10,-32 - 231: 8,-33 - 232: 9,-33 - 233: 10,-33 - 234: 8,-34 - 235: 9,-34 - 236: 10,-34 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 315: 8,-9 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 316: 8,-11 - 323: 10,-7 - 324: 9,-7 - 325: 8,-7 - 326: 7,-7 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 317: 6,-11 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 318: 6,-9 - 319: 10,-9 - 320: 10,-8 - 321: 10,-7 - 322: 10,-10 - - node: - color: '#79150036' - id: CheckerNESW - decals: - 1295: -4,-20 - 1296: -4,-21 - 1297: -4,-22 - 1298: -4,-23 - 1299: -4,-24 - 1300: -4,-25 - 1301: -4,-26 - 1302: -4,-27 - 1303: -3,-27 - 1304: -2,-27 - 1305: -1,-27 - 1306: 0,-27 - 1307: 1,-27 - 1308: 2,-27 - 1309: 2,-26 - 1310: 2,-25 - 1311: 2,-24 - 1312: 2,-23 - 1313: 2,-22 - 1314: 2,-21 - 1315: -3,-20 - 1316: -2,-20 - 1317: 1,-21 - 1318: 0,-21 - 1319: -1,-21 - 1320: -2,-21 - 1321: -3,-21 - 1322: -3,-22 - 1323: -2,-22 - 1324: -1,-22 - 1325: 0,-22 - 1326: 1,-22 - 1327: 1,-23 - 1328: 0,-23 - 1329: -1,-23 - 1330: -2,-23 - 1331: -3,-23 - 1332: -3,-24 - 1333: -2,-24 - 1334: -1,-24 - 1335: 0,-24 - 1336: 1,-24 - 1337: 1,-25 - 1338: 0,-25 - 1339: -1,-25 - 1340: -2,-25 - 1341: -3,-25 - 1342: -3,-26 - 1343: -2,-26 - 1344: -1,-26 - 1345: 0,-26 - 1346: 1,-26 - - node: - color: '#52B4E9FF' - id: SpaceStationSign1 - decals: - 1396: 13,-12 - - node: - color: '#52B4E9FF' - id: SpaceStationSign2 - decals: - 1397: 14,-12 - - node: - color: '#52B4E9FF' - id: SpaceStationSign3 - decals: - 1398: 15,-12 - - node: - color: '#52B4E9FF' - id: SpaceStationSign4 - decals: - 1399: 16,-12 - - node: - color: '#52B4E9FF' - id: SpaceStationSign5 - decals: - 1400: 17,-12 - - node: - color: '#52B4E9FF' - id: SpaceStationSign6 - decals: - 1401: 18,-12 - - node: - color: '#52B4E9FF' - id: SpaceStationSign7 - decals: - 1402: 19,-12 - - node: + id: BrickTileDarkLineN + coordinates: -6,10 + 568: color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 38: -4,-4 - 1351: -2,-21 - - node: + id: BrickTileDarkLineN + coordinates: -5,10 + 569: color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - decals: - 40: -2,-1 - - node: + id: BrickTileDarkLineN + coordinates: -4,10 + 570: color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - decals: - 41: -2,-2 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 186: -23,-31 - 2863: -55,-42 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 189: -24,-25 - 190: -25,-25 - 191: -26,-25 - 192: -27,-25 - 193: -24,-26 - 194: -24,-27 - 195: -24,-28 - 196: -24,-29 - 197: -24,-30 - 198: -23,-30 - 199: -23,-33 - 200: -22,-33 - 201: -22,-34 - 527: -18,-15 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 202: -22,-34 - 203: -23,-34 - 204: -24,-34 - 205: -25,-34 - 206: -25,-33 - 207: -25,-32 - 208: -25,-31 - 209: -25,-30 - 210: -25,-29 - 211: -25,-28 - 212: -26,-28 - 213: -27,-28 - 214: -27,-27 - 215: -27,-26 - 216: -27,-25 - 526: -16,-13 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 516: -20,-14 - 517: -20,-15 - 518: -20,-16 - 519: -20,-17 - 525: -16,-15 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 520: -20,-17 - 521: -19,-17 - 522: -18,-17 - 523: -17,-17 - 524: -18,-13 - - node: + id: BrickTileDarkLineN + coordinates: -3,10 + 571: color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 647: -27,-19 - 648: -26,-19 - 649: -25,-18 - 650: -24,-18 - 651: -23,-18 - 652: -22,-18 - 695: -24,-17 - 699: -18,-24 - 700: -19,-24 - 701: -20,-24 - 702: -21,-24 - 703: -22,-24 - 704: -23,-23 - 705: -24,-23 - 706: -25,-23 - 707: -26,-23 - 708: -27,-23 - 709: -28,-23 - 710: -29,-23 - 711: -30,-23 - 712: -31,-23 - 713: -32,-23 - 714: -33,-23 - 715: -34,-23 - 716: -35,-23 - 717: -36,-23 - 718: -37,-23 - 719: -39,-23 - 720: -40,-23 - 1174: -6,-27 - 1175: -7,-27 - 1176: -8,-27 - 1177: -9,-27 - 1178: -10,-27 - 1179: -11,-27 - 2744: -38,-23 - - node: + id: BrickTileDarkLineN + coordinates: -2,10 + 572: color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -1,10 + 575: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -11,6 + 576: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -10,6 + 577: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -9,6 + 578: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -8,6 + 579: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -7,6 + 580: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -6,6 + 581: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -5,6 + 582: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -4,6 + 583: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -3,6 + 584: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -2,6 + 585: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -1,6 + 590: + color: '#334E6DC8' id: BrickTileWhiteLineN - decals: - 669: -27,-15 - 670: -26,-15 - 671: -25,-15 - 672: -24,-15 - 673: -23,-15 - 674: -22,-15 - 696: -24,-16 - 721: -40,-21 - 722: -39,-21 - 723: -38,-21 - 724: -37,-21 - 725: -36,-21 - 726: -35,-21 - 727: -34,-21 - 728: -33,-21 - 729: -32,-21 - 730: -31,-21 - 731: -30,-21 - 732: -29,-21 - 733: -26,-21 - 734: -25,-21 - 735: -24,-20 - 736: -23,-20 - 737: -22,-20 - 738: -21,-20 - 739: -20,-19 - 740: -19,-19 - 741: -18,-19 - 1166: -7,-24 - 1167: -6,-24 - 1183: -11,-25 - 1184: -10,-25 - 1185: -9,-25 - 1883: -28,-21 - 1884: -27,-21 - - node: - color: '#FF9F4196' + coordinates: -1,10 + 591: + color: '#334E6DC8' id: BrickTileWhiteLineN - decals: - 675: -27,-15 - 676: -26,-15 - 677: -25,-15 - 678: -24,-15 - 679: -23,-15 - 680: -22,-15 - - node: - color: '#FF9F4196' - id: BrickTileWhiteLineS - decals: - 681: -27,-19 - 682: -26,-19 - 683: -25,-18 - 684: -24,-18 - 685: -23,-18 - 686: -22,-18 - - node: - color: '#FF9F4196' + coordinates: -2,10 + 592: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -3,10 + 593: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -4,10 + 594: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -5,10 + 595: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -6,10 + 596: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -7,10 + 597: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -8,10 + 598: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -9,10 + 599: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -10,8 + 600: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -11,8 + 601: + color: '#334E6DC8' + id: OffsetCheckerBOverlay + coordinates: -9,8 + 602: + color: '#334E6DC8' + id: OffsetCheckerBOverlay + coordinates: -9,7 + 603: + color: '#334E6DC8' + id: OffsetCheckerBOverlay + coordinates: -8,7 + 604: + color: '#334E6DC8' + id: OffsetCheckerBOverlay + coordinates: -8,8 + 605: + color: '#334E6DC8' + id: OffsetCheckerBOverlay + coordinates: -6,8 + 606: + color: '#334E6DC8' + id: OffsetCheckerBOverlay + coordinates: -6,7 + 607: + color: '#334E6DC8' + id: OffsetCheckerBOverlay + coordinates: -5,8 + 608: + color: '#334E6DC8' + id: OffsetCheckerBOverlay + coordinates: -4,8 + 609: + color: '#334E6DC8' + id: OffsetCheckerBOverlay + coordinates: -4,7 + 610: + color: '#334E6DC8' + id: OffsetCheckerBOverlay + coordinates: -5,7 + 611: + color: '#334E6DC8' + id: OffsetCheckerBOverlay + coordinates: -2,8 + 612: + color: '#334E6DC8' + id: OffsetCheckerBOverlay + coordinates: -1,8 + 613: + color: '#334E6DC8' + id: OffsetCheckerBOverlay + coordinates: -2,7 + 614: + color: '#334E6DC8' id: OffsetCheckerBOverlay - decals: - 687: -25,-16 - 688: -25,-17 - 689: -24,-17 - 690: -23,-17 - 691: -23,-16 - 692: -24,-16 - - node: + coordinates: -1,7 + 615: color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - decals: - 693: -23,-16 - 1172: -5,-26 - - node: + id: BrickTileDarkCornerNe + coordinates: -8,8 + 616: color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - decals: - 694: -25,-16 - 1165: -8,-24 - 1182: -12,-25 - - node: + id: BrickTileDarkCornerNe + coordinates: -4,8 + 617: color: '#FFFFFFFF' - id: BrickTileWhiteCornerSw - decals: - 697: -25,-17 - 1180: -12,-27 - - node: + id: BrickTileDarkCornerNe + coordinates: -1,8 + 618: color: '#FFFFFFFF' - id: BrickTileWhiteCornerSe - decals: - 698: -23,-17 - 1173: -5,-27 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 745: -40,-23 - 746: -39,-23 - 747: -37,-23 - 748: -36,-23 - 749: -35,-23 - 750: -34,-23 - 751: -33,-23 - 752: -32,-23 - 753: -31,-23 - 754: -30,-23 - 755: -29,-23 - 756: -28,-23 - 757: -27,-23 - 758: -26,-23 - 759: -25,-23 - 760: -24,-23 - 761: -23,-23 - 762: -22,-24 - 763: -21,-24 - 764: -20,-24 - 765: -19,-24 - 766: -18,-24 - 942: -22,-28 - 943: -21,-28 - 944: -20,-28 - 945: -19,-28 - 946: -18,-28 - 2745: -38,-23 - 2774: -29,-19 - 2780: -31,-19 - 2781: -30,-19 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 767: -18,-19 - 768: -19,-19 - 769: -20,-19 - 770: -21,-20 - 771: -22,-20 - 772: -23,-20 - 773: -24,-20 - 774: -25,-21 - 775: -26,-21 - 776: -29,-21 - 777: -30,-21 - 778: -31,-21 - 779: -32,-21 - 780: -33,-21 - 781: -34,-21 - 782: -35,-21 - 783: -36,-21 - 784: -37,-21 - 785: -38,-21 - 786: -39,-21 - 787: -40,-21 - 947: -22,-26 - 948: -21,-26 - 949: -20,-26 - 950: -19,-26 - 951: -18,-26 - 1885: -28,-21 - 1886: -27,-21 - 2775: -31,-15 - 2776: -30,-15 - 2777: -29,-15 - - node: - color: '#EFB34196' - id: MiniTileCheckerAOverlay - decals: - 808: -23,-4 - 809: -22,-4 - 810: -23,-5 - 811: -22,-5 - 812: -23,-6 - 813: -22,-6 - 814: -23,-7 - 815: -22,-7 - - node: + id: BrickTileDarkCornerSe + coordinates: -1,7 + 619: color: '#FFFFFFFF' - id: BrickTileWhiteLineW - decals: - 798: -35,-19 - 799: -35,-18 - 800: -35,-17 - 801: -35,-16 - 802: -35,-15 - 824: -27,-29 - 825: -27,-30 - 826: -27,-31 - 827: -27,-32 - 828: -27,-33 - 829: -27,-34 - 1181: -12,-26 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineW - decals: - 830: -27,-29 - 831: -27,-30 - 832: -27,-31 - 833: -27,-32 - 834: -27,-33 - 835: -27,-34 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 836: -39,-11 - 837: -38,-11 - 838: -37,-11 - 839: -36,-11 - 840: -35,-11 - 841: -34,-11 - 842: -33,-11 - 843: -32,-11 - 844: -31,-11 - 845: -30,-11 - 846: -29,-11 - 847: -28,-11 - 848: -27,-11 - 849: -26,-11 - 850: -25,-11 - 851: -24,-11 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 907: -31,-8 - 908: -30,-8 - 909: -29,-8 - 910: -28,-8 - 911: -27,-8 - 912: -26,-8 - 913: -25,-8 - 1005: -39,-5 - 1006: -38,-5 - 1007: -37,-5 - 1008: -36,-5 - 1009: -35,-5 - 1010: -34,-5 - 1011: -33,-5 - 1012: -32,-4 - 1013: -31,-4 - 1014: -30,-4 - - node: + id: BrickTileDarkCornerSe + coordinates: -4,7 + 620: color: '#FFFFFFFF' - id: BrickTileDarkEndW - decals: - 954: -21,-27 - 2842: -57,-45 - - node: + id: BrickTileDarkCornerSe + coordinates: -8,7 + 621: color: '#FFFFFFFF' - id: BrickTileDarkEndE - decals: - 955: -19,-27 - 2843: -54,-45 - - node: - color: '#52B4E996' - id: WarnBoxGreyscale - decals: - 1015: -31,-10 - 1016: -30,-10 - - node: - color: '#DE3A3A96' - id: WarnBoxGreyscale - decals: - 1017: -26,-10 - 1018: -25,-10 - - node: - color: '#9FED5896' - id: Bushb3 - decals: - 1019: -19.545383,-4.6124187 - 1020: -17.815971,-4.4932137 - 1021: -19.56526,-6.2018223 - 1022: -19.783924,-8.24818 - 1023: -17.95512,-8.943545 - 1024: -17.557552,-7.294538 - 1025: -19.088182,-7.11573 - - node: - color: '#9FED5896' - id: Busha1 - decals: - 1026: -18.094267,-6.2415576 - 1027: -18.909277,-5.3673854 - 1028: -17.815971,-5.029637 - 1029: -20.241123,-4.0362597 - 1030: -20.101976,-5.864074 - 1031: -20.002584,-8.32765 - 1032: -20.161612,-9.082618 - 1033: -18.511711,-9.181956 - 1034: -19.048426,-8.049505 - 1035: -17.73646,-8.069372 - 1036: -17.398527,-9.420366 - 1037: -17.000961,-6.321028 - 1038: -19.048426,-6.2614245 - 1039: -20.161612,-7.3740087 - - node: - color: '#9FED5896' - id: Bushn1 - decals: - 1040: -18.611103,-5.943545 - 1041: -19.505627,-4.6124187 - 1042: -17.378649,-8.566062 - 1043: -19.426113,-8.6852665 - 1044: -18.352684,-7.1753325 - - node: - color: '#9FED5896' - id: Flowerspv3 - decals: - 1045: -19.8038,-4.989902 - 1046: -17.776215,-4.8110943 - 1047: -18.710495,-6.2415576 - 1048: -17.93524,-7.4733458 - - node: - color: '#9FED5896' - id: Flowerspv1 - decals: - 1049: -19.823679,-8.605797 - 1050: -19.903193,-7.095862 - 1051: -17.35877,-5.8044715 - 1052: -17.73646,-8.6654 - - node: - color: '#9FED5896' - id: Flowersy1 - decals: - 1053: -18.750252,-7.572683 - 1054: -19.764044,-5.6455307 - 1055: -17.398527,-7.1355968 - 1056: -19.764044,-7.3541408 - 1057: -18.31293,-8.864074 - 1058: -17.537676,-5.16871 - - node: - color: '#9FED5896' - id: Rock05 - decals: - 1069: -19.386356,-8.486591 - 1070: -17.756336,-8.32765 - 1071: -17.875607,-5.3872523 - 1072: -19.744167,-4.4932137 - 1073: -19.823679,-6.2018223 - 1074: -19.505627,-7.453478 - 1075: -18.591225,-7.4932137 - 1076: -17.776215,-7.572683 - 1077: -20.082096,-8.844207 - 1078: -17.815971,-5.943545 - 1079: -19.863436,-5.903809 - 1080: -17.080473,-7.791227 - 1081: -17.080473,-8.963412 - 1082: -19.028547,-9.122354 - 1083: -20.241123,-6.5594387 - 1084: -20.121855,-3.9766572 - 1085: -18.929155,-3.8773198 - 1086: -17.02084,-5.1885777 - 1087: -18.8894,-5.1289754 - - node: - color: '#9FED5896' - id: Grasse2 - decals: - 1088: -17.527288,-4.3816347 - 1089: -17.567047,-3.9445488 - 1090: -17.129723,-3.924681 - 1091: -17.427898,-5.3154097 - 1092: -18.819378,-4.083622 - - node: - color: '#334E6DC8' - id: BotLeftGreyscale - decals: - 1158: -2,-10 - 1159: -3,-10 - 1160: -4,-10 - - node: - color: '#334E6DC8' - id: DeliveryGreyscale - decals: - 1161: -1,-10 - - node: - color: '#334E6DC8' - id: LoadingAreaGreyscale - decals: - 1162: -1,-11 - - node: - angle: 3.141592653589793 rad - color: '#334E6DC8' - id: LoadingAreaGreyscale - decals: - 1163: -5,-11 - - node: - angle: 3.141592653589793 rad - color: '#334E6DC8' - id: BotLeftGreyscale - decals: - 1164: -5,-10 - - node: + id: BrickTileDarkCornerSw + coordinates: -9,7 + 622: color: '#FFFFFFFF' - id: BrickTileWhiteEndE - decals: - 1168: -5,-24 - - node: + id: BrickTileDarkCornerSw + coordinates: -6,7 + 623: color: '#FFFFFFFF' - id: BrickTileWhiteInnerSe - decals: - 1169: -6,-24 - - node: + id: BrickTileDarkCornerSw + coordinates: -2,7 + 624: color: '#FFFFFFFF' - id: BrickTileWhiteLineE - decals: - 803: -33,-19 - 804: -33,-18 - 805: -33,-17 - 806: -33,-16 - 807: -33,-15 - 1170: -6,-25 - - node: + id: BrickTileDarkCornerNw + coordinates: -9,8 + 625: color: '#FFFFFFFF' - id: BrickTileWhiteInnerNe - decals: - 1171: -6,-26 - - node: + id: BrickTileDarkCornerNw + coordinates: -6,8 + 626: color: '#FFFFFFFF' - id: BrickTileWhiteInnerNw - decals: - 1186: -8,-25 - - node: - angle: 3.141592653589793 rad - color: '#52B4E996' - id: ArrowsGreyscale - decals: - 2782: -31.248856,-18.00287 - 2783: -30.815523,-18.00287 - - node: - color: '#DE3A3A96' - id: ArrowsGreyscale - decals: - 2784: -29.218893,-17.986204 - 2785: -28.793892,-17.994537 - - node: - color: '#F9801D98' + id: BrickTileDarkCornerNw + coordinates: -2,8 + 627: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -5,8 + 628: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -5,7 + 888: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -32,4 + 889: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -31,4 + 928: + color: '#EFB34196' + id: BrickTileWhiteLineN + coordinates: -32,4 + 929: + color: '#EFB34196' + id: BrickTileWhiteLineN + coordinates: -31,4 + 1230: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + coordinates: -16,0 + 1234: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + coordinates: -16,0 + 1375: + color: '#EFB34196' + id: Bot + coordinates: -7,8 + 1376: + color: '#EFB34196' + id: Bot + coordinates: -4,1 + 1378: + color: '#EFB34196' + id: Bot + coordinates: -19,6 + 1392: + color: '#FFFFFFFF' + id: WarnLineE + coordinates: -13,4 + 1393: + color: '#FFFFFFFF' + id: WarnLineE + coordinates: -13,3 + 1438: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -32,12 + 1442: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -32,0 + 1484: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -16,0 + 1485: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -16,4 + 1486: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -15,7 + 1487: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -18,6 + 1488: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -9,3 + 1489: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -3,3 + 1491: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -3,7 + 1492: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -7,6 + 1493: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -10,6 + 1604: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -15,2 + 1605: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -15,7 + 2292: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,2 + 2293: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -16,3 + 2294: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,5 + 2295: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -14,7 + 2296: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -16,7 + 2297: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -18,7 + 2298: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -18,7 + 2299: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -14,6 + 2300: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -9,3 + 2301: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -6,4 + 2302: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -3,3 + 2303: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -1,3 + 2477: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -32,2 + 2478: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -32,3 + 2489: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -8,4 + 2490: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -6,4 + 2491: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -2,4 + 2493: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -1,7 + 2494: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -3,8 + 2495: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -6,8 + 2496: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -9,7 + 2497: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -10,6 + 2498: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -7,7 + 2499: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -5,7 + 2500: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -2,7 + 2501: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -1,6 + 2502: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -1,8 + 2503: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -8,9 + 2504: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -9,6 + 2505: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -5,7 + 2506: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -4,8 + 2507: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -4,7 + 2508: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -6,7 + 2509: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -6,8 + 2510: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -5,8 + 2511: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -5,8 + 2512: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -6,7 + 2513: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -4,7 + 2514: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -4,8 + 2515: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -3,7 + 2516: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -7,6 + 2517: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -8,6 + 2518: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -4,3 + 2519: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -2,3 + 2520: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -1,4 + 2521: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -6,3 + 2522: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -7,4 + 2523: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -7,3 + 2546: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -31,4 + 2547: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -32,4 + 2549: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -32,11 + 2550: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -32,13 + 2551: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -32,12 + 2552: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -32,10 + 2553: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -32,10 + 2554: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -31,13 + 2568: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -32,17 + 2569: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -21,1 + 2570: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -20,1 + 2571: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -22,1 + 2611: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,4 + 2612: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,3 + 2662: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -32,4 + 0,0: + 4: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: 1,4 + 5: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: 1,3 + 6: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: 4,4 + 7: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: 4,3 + 15: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: 15,10 + 16: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: 14,10 + 17: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: 14,13 + 18: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: 15,13 + 19: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: 15,17 + 20: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: 14,17 + 24: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + coordinates: 0,1 + 25: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + coordinates: 1,1 + 350: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 11,4 + 351: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 12,4 + 352: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 13,4 + 354: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: 14,3 + 355: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: 15,3 + 356: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 14,9 + 357: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 15,9 + 358: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: 14,14 + 359: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: 15,14 + 360: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 15,16 + 361: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 14,16 + 362: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 14,14 + 363: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 15,14 + 364: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: 14,11 + 365: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + coordinates: 16,11 + 366: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + coordinates: 16,12 + 367: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + coordinates: 13,11 + 368: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + coordinates: 13,12 + 369: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: 15,12 + 370: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: 14,12 + 371: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: 15,11 + 372: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 14,11 + 373: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 15,11 + 374: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 15,12 + 375: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 14,12 + 376: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + coordinates: 16,12 + 377: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + coordinates: 13,12 + 378: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + coordinates: 13,11 + 379: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + coordinates: 16,11 + 380: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 14,9 + 381: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 15,9 + 382: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 13,4 + 383: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 12,4 + 384: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 11,4 + 385: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 15,3 + 386: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 14,3 + 397: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 14,1 + 398: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 14,1 + 399: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 15,16 + 400: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 14,16 + 401: + color: '#FFFFFFFF' + id: Grassb1 + coordinates: 18,19 + 402: + color: '#FFFFFFFF' + id: Grassb2 + coordinates: 18,18 + 403: + color: '#FFFFFFFF' + id: Grassb3 + coordinates: 19,18 + 404: + color: '#FFFFFFFF' + id: Grassb5 + coordinates: 19,19 + 411: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 10,9 + 412: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 11,9 + 413: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 12,9 + 414: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 10,8 + 415: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 11,8 + 416: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 12,8 + 417: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 10,7 + 418: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 11,7 + 419: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 12,7 + 420: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 10,6 + 421: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 11,6 + 422: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 12,6 + 423: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 16,1 + 424: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 17,1 + 425: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 16,0 + 426: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 17,0 + 434: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: 17,0 + 436: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: 16,0 + 437: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + coordinates: 17,1 + 438: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + coordinates: 16,1 + 439: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + coordinates: 10,9 + 440: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + coordinates: 10,6 + 441: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + coordinates: 12,6 + 442: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + coordinates: 12,9 + 443: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: 11,6 + 444: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: 11,9 + 445: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: 12,8 + 446: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: 12,7 + 447: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: 10,8 + 448: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: 10,7 + 449: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: 4,6 + 450: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: 4,7 + 451: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: 4,8 + 452: + color: '#9FED5896' + id: BrickTileSteelLineE + coordinates: 4,6 + 453: + color: '#9FED5896' + id: BrickTileSteelLineE + coordinates: 4,7 + 454: + color: '#9FED5896' + id: BrickTileSteelLineE + coordinates: 4,8 + 455: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: 5,3 + 456: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: 5,4 + 457: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + coordinates: 5,5 + 458: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: 3,4 + 459: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: 3,3 + 460: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: 2,4 + 461: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: 2,3 + 462: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + coordinates: 5,2 + 463: + color: '#334E6DC8' + id: BrickTileWhiteLineW + coordinates: 5,4 + 464: + color: '#334E6DC8' + id: BrickTileWhiteLineW + coordinates: 5,3 + 465: + color: '#334E6DC8' + id: BrickTileWhiteLineW + coordinates: 2,3 + 466: + color: '#334E6DC8' + id: BrickTileWhiteLineW + coordinates: 2,4 + 467: + color: '#334E6DC8' + id: BrickTileWhiteInnerNw + coordinates: 5,2 + 468: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + coordinates: 5,5 + 469: + color: '#334E6DC8' + id: BrickTileWhiteLineE + coordinates: 3,3 + 470: + color: '#334E6DC8' + id: BrickTileWhiteLineE + coordinates: 3,4 + 481: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + coordinates: 0,4 + 482: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + coordinates: 0,3 + 547: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + coordinates: 0,3 + 548: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + coordinates: 0,4 + 560: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: 0,6 + 561: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: 1,6 + 573: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: 0,8 + 574: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: 1,8 + 586: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: 0,6 + 587: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: 1,6 + 588: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: 1,8 + 589: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: 0,8 + 1364: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: 17,7 + 1365: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: 18,7 + 1366: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: 19,7 + 1367: + color: '#FFFFFFFF' + id: WarnLineN + coordinates: 17,5 + 1368: + color: '#FFFFFFFF' + id: WarnLineN + coordinates: 18,5 + 1369: + color: '#FFFFFFFF' + id: WarnLineN + coordinates: 19,5 + 1370: + color: '#EFB34196' + id: Bot + coordinates: 29,7 + 1373: + color: '#EFB34196' + id: Bot + coordinates: 11,1 + 1374: + color: '#EFB34196' + id: Bot + coordinates: 7,8 + 1394: + color: '#FFFFFFFF' + id: WarnLineS + coordinates: 3,4 + 1395: + color: '#FFFFFFFF' + id: WarnLineS + coordinates: 3,3 + 1403: + color: '#9FED5896' + id: Bushc2 + coordinates: 3.3756588,6.1882553 + 1404: + color: '#9FED5896' + id: Bushc2 + coordinates: 3.2762673,7.1390595 + 1405: + color: '#9FED5896' + id: Bushc3 + coordinates: 3.8158202,7.9337606 + 1406: + color: '#9FED5896' + id: Bushc3 + coordinates: 2.8219063,6.103108 + 1407: + color: '#9FED5896' + id: Bushc3 + coordinates: 2.8361046,8.274347 + 1408: + color: '#9FED5896' + id: Bushc3 + coordinates: 2.8219063,7.2951617 + 1409: + color: '#9FED5896' + id: Bushc3 + coordinates: 3.9436097,6.656562 + 1410: + color: '#9FED5896' + id: grasssnow07 + coordinates: 2.9070985,8.075672 + 1411: + color: '#9FED5896' + id: grasssnow07 + coordinates: 3.4182546,7.025531 + 1412: + color: '#9FED5896' + id: grasssnow04 + coordinates: 3.077484,6.3869305 + 1413: + color: '#9FED5896' + id: grasssnow08 + coordinates: 3.6454349,6.571415 + 1414: + color: '#9FED5896' + id: grasssnow08 + coordinates: 3.7732244,7.9479523 + 1415: + color: '#9FED5896' + id: grasssnowb1 + coordinates: 3.489249,6.2592106 + 1416: + color: '#9FED5866' + id: Rock05 + coordinates: 3.0206888,6.2592106 + 1417: + color: '#9FED5866' + id: Rock05 + coordinates: 3.9010134,6.64237 + 1418: + color: '#9FED5866' + id: Rock05 + coordinates: 3.1768754,7.2951617 + 1419: + color: '#9FED5866' + id: Rock05 + coordinates: 2.6941173,8.189201 + 1420: + color: '#9FED5866' + id: Rock05 + coordinates: 3.801622,8.04729 + 1421: + color: '#9FED5866' + id: Rock05 + coordinates: 2.9212978,7.2667794 + 1490: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 2,3 + 1494: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 8,8 + 1495: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 6,1 + 1504: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 13,3 + 1505: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 15,6 + 1506: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 15,9 + 1507: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 15,15 + 1508: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 16,19 + 1509: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 18,20 + 1510: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 10,19 + 1525: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 31,4 + 1526: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 30,0 + 1722: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 13,1 + 1723: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 14,5 + 1724: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 14,8 + 1725: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 16,18 + 1726: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 17,19 + 1727: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 18,20 + 1728: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 18,20 + 1729: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 14,20 + 1730: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 11,20 + 1731: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 10,20 + 1732: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 11,19 + 1733: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 13,19 + 1734: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 13,19 + 1735: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 12,19 + 1736: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 12,19 + 1737: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 12,19 + 1738: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 12,19 + 1739: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 13,19 + 1740: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 17,19 + 1741: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 17,20 + 1742: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 17,20 + 1743: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 17,19 + 1744: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 17,19 + 1745: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 10,19 + 1746: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 10,20 + 1747: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 11,22 + 1748: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 12,23 + 1749: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 11,23 + 1750: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 12,22 + 1751: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 12,22 + 1752: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 10,22 + 1753: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 10,22 + 1754: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 13,23 + 1755: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 13,23 + 1756: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 13,23 + 1757: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 12,22 + 1758: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 13,22 + 1759: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 12,22 + 1760: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 17,18 + 1761: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 15,14 + 1762: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 15,8 + 1779: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 31,4 + 1780: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 31,1 + 1887: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 31,5 + 1888: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 31,2 + 2068: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 6,0 + 2069: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 5,2 + 2070: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 6,6 + 2071: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 8,7 + 2072: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 5,7 + 2078: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 12,1 + 2079: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 12,2 + 2080: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 13,3 + 2081: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 14,4 + 2082: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 14,7 + 2083: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 14,8 + 2084: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 15,8 + 2085: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 15,14 + 2086: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 14,15 + 2087: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 14,16 + 2088: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 14,7 + 2089: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 15,5 + 2090: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 13,3 + 2091: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 11,1 + 2092: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 11,0 + 2304: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 0,4 + 2305: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 3,3 + 2306: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 2,4 + 2307: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 4,4 + 2308: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 6,6 + 2309: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 8,8 + 2330: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 11,0 + 2331: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 12,1 + 2332: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 13,4 + 2333: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 9,2 + 2334: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 8,2 + 2335: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 8,2 + 2336: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 8,3 + 2337: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 8,4 + 2338: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 9,3 + 2339: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 8,0 + 2343: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,5 + 2344: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 15,6 + 2345: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 15,7 + 2346: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 15,9 + 2347: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,11 + 2348: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,11 + 2349: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 15,12 + 2350: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 16,12 + 2351: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,12 + 2352: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 13,11 + 2353: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 15,15 + 2354: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,15 + 2355: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,16 + 2356: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 16,19 + 2357: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 16,20 + 2358: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 12,19 + 2359: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 11,19 + 2360: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 10,20 + 2361: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 18,20 + 2362: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 11,18 + 2363: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 10,18 + 2387: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 31,4 + 2388: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 30,2 + 2492: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 0,3 + 2524: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,3 + 2525: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,2 + 2526: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 6,2 + 2527: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 6,1 + 2528: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 6,1 + 2605: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,14 + 2606: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 15,16 + 2607: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,18 + 2608: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 15,18 + 2609: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 16,18 + 2610: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,4 + 2627: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 30,5 + 2628: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 30,4 + 2712: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 11,2 + 2713: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 11,9 + 2745: + cleanable: True + color: '#A4610696' + id: DirtMedium + coordinates: 7,7 + 0,-1: + 11: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: 11,-7 + 12: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: 11,-9 + 13: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: 13,-7 + 14: + color: '#DE3A3A96' + id: StandClearGreyscale + coordinates: 13,-9 + 27: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + coordinates: 0,-2 + 33: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + coordinates: 0,-1 + 37: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + coordinates: 0,-4 + 131: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + coordinates: 4,-15 + 132: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + coordinates: 4,-16 + 133: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + coordinates: 4,-17 + 134: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + coordinates: 4,-18 + 135: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: 7,-19 + 136: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: 7,-20 + 137: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: 7,-21 + 138: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: 7,-22 + 139: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: 7,-23 + 140: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: 7,-24 + 141: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: 7,-25 + 142: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: 7,-26 + 143: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: 7,-27 + 228: + color: '#A4610696' + id: MiniTileCheckerBOverlay + coordinates: 8,-32 + 229: + color: '#A4610696' + id: MiniTileCheckerBOverlay + coordinates: 9,-32 + 230: + color: '#A4610696' + id: MiniTileCheckerBOverlay + coordinates: 10,-32 + 238: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + coordinates: 10,-32 + 240: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + coordinates: 8,-32 + 244: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: 9,-32 + 315: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + coordinates: 8,-9 + 316: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + coordinates: 8,-11 + 317: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + coordinates: 6,-11 + 318: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + coordinates: 6,-9 + 319: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + coordinates: 10,-9 + 320: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + coordinates: 10,-8 + 321: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + coordinates: 10,-7 + 322: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + coordinates: 10,-10 + 323: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + coordinates: 10,-7 + 324: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + coordinates: 9,-7 + 325: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + coordinates: 8,-7 + 326: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + coordinates: 7,-7 + 327: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: 12,-8 + 328: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: 12,-8 + 329: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: 12,-7 + 330: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: 12,-9 + 331: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 12,-9 + 332: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 12,-8 + 333: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 12,-8 + 334: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 12,-7 + 335: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: 19,-9 + 336: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: 18,-9 + 337: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: 17,-9 + 338: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: 17,-7 + 339: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: 18,-7 + 340: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: 19,-7 + 341: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: 15,-9 + 342: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: 14,-9 + 343: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: 17,-5 + 344: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: 16,-5 + 345: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: 13,-5 + 346: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: 12,-5 + 347: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 17,-4 + 348: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 16,-4 + 349: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 15,-4 + 353: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: 11,-2 + 387: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 11,-2 + 388: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 12,-5 + 389: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 13,-5 + 390: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 14,-9 + 391: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 15,-9 + 392: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 16,-5 + 393: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 17,-5 + 394: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 17,-4 + 395: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 16,-4 + 396: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 15,-4 + 405: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 17,-9 + 406: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 18,-9 + 407: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 19,-9 + 408: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 17,-7 + 409: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 18,-7 + 410: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 19,-7 + 427: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 16,-1 + 428: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 17,-1 + 429: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 16,-2 + 430: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + coordinates: 17,-2 + 431: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + coordinates: 16,-2 + 432: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + coordinates: 17,-2 + 433: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: 17,-1 + 435: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: 16,-1 + 1111: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: 8,-4 + 1112: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: 9,-4 + 1113: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: 10,-4 + 1114: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 8,-4 + 1115: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 9,-4 + 1116: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: 10,-4 + 1117: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: 8,-6 + 1118: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: 9,-6 + 1119: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 8,-6 + 1120: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: 9,-6 + 1306: + color: '#79150036' + id: CheckerNESW + coordinates: 0,-27 + 1307: + color: '#79150036' + id: CheckerNESW + coordinates: 1,-27 + 1308: + color: '#79150036' + id: CheckerNESW + coordinates: 2,-27 + 1309: + color: '#79150036' + id: CheckerNESW + coordinates: 2,-26 + 1310: + color: '#79150036' + id: CheckerNESW + coordinates: 2,-25 + 1311: + color: '#79150036' + id: CheckerNESW + coordinates: 2,-24 + 1312: + color: '#79150036' + id: CheckerNESW + coordinates: 2,-23 + 1313: + color: '#79150036' + id: CheckerNESW + coordinates: 2,-22 + 1314: + color: '#79150036' + id: CheckerNESW + coordinates: 2,-21 + 1317: + color: '#79150036' + id: CheckerNESW + coordinates: 1,-21 + 1318: + color: '#79150036' + id: CheckerNESW + coordinates: 0,-21 + 1325: + color: '#79150036' + id: CheckerNESW + coordinates: 0,-22 + 1326: + color: '#79150036' + id: CheckerNESW + coordinates: 1,-22 + 1327: + color: '#79150036' + id: CheckerNESW + coordinates: 1,-23 + 1328: + color: '#79150036' + id: CheckerNESW + coordinates: 0,-23 + 1335: + color: '#79150036' + id: CheckerNESW + coordinates: 0,-24 + 1336: + color: '#79150036' + id: CheckerNESW + coordinates: 1,-24 + 1337: + color: '#79150036' + id: CheckerNESW + coordinates: 1,-25 + 1338: + color: '#79150036' + id: CheckerNESW + coordinates: 0,-25 + 1345: + color: '#79150036' + id: CheckerNESW + coordinates: 0,-26 + 1346: + color: '#79150036' + id: CheckerNESW + coordinates: 1,-26 + 1348: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + coordinates: 0,-21 + 1349: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + coordinates: 1,-21 + 1350: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + coordinates: 2,-21 + 1372: + color: '#EFB34196' + id: Bot + coordinates: 20,-14 + 1390: + color: '#EFB34196' + id: Bot + coordinates: 7,-29 + 1396: + color: '#52B4E9FF' + id: SpaceStationSign1 + coordinates: 13,-12 + 1397: + color: '#52B4E9FF' + id: SpaceStationSign2 + coordinates: 14,-12 + 1398: + color: '#52B4E9FF' + id: SpaceStationSign3 + coordinates: 15,-12 + 1399: + color: '#52B4E9FF' + id: SpaceStationSign4 + coordinates: 16,-12 + 1400: + color: '#52B4E9FF' + id: SpaceStationSign5 + coordinates: 17,-12 + 1401: + color: '#52B4E9FF' + id: SpaceStationSign6 + coordinates: 18,-12 + 1402: + color: '#52B4E9FF' + id: SpaceStationSign7 + coordinates: 19,-12 + 1496: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 5,-4 + 1497: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 6,-10 + 1498: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 9,-11 + 1499: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 15,-12 + 1500: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 21,-13 + 1501: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 15,-8 + 1502: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 15,-4 + 1503: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 12,-3 + 1511: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 23,-12 + 1512: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 26,-13 + 1527: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 31,-4 + 1528: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 30,-7 + 1529: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 19,-17 + 1530: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 19,-23 + 1531: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 18,-22 + 1532: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 15,-24 + 1533: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 19,-25 + 1534: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 8,-27 + 1535: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 9,-20 + 1536: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 6,-21 + 1537: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 5,-16 + 1538: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 1,-22 + 1542: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 0,-25 + 1543: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 1,-25 + 1544: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 6,-25 + 1545: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 3,-29 + 1710: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 5,-29 + 1711: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 6,-25 + 1712: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 8,-23 + 1713: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 8,-21 + 1714: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 9,-20 + 1715: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 5,-18 + 1716: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 6,-13 + 1717: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 10,-11 + 1718: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 10,-9 + 1719: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 15,-8 + 1720: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 15,-3 + 1721: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 12,-2 + 1763: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 17,-4 + 1764: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 17,-4 + 1765: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 20,-12 + 1766: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 29,-11 + 1781: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 30,-3 + 1782: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 31,-5 + 1783: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 31,-8 + 1785: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 23,-22 + 1786: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 22,-22 + 1787: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 19,-22 + 1788: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 17,-23 + 1789: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 16,-23 + 1790: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 16,-25 + 1791: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 20,-24 + 1792: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 19,-25 + 1793: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 19,-29 + 1794: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 19,-31 + 1796: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 15,-32 + 1797: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 12,-32 + 1798: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 12,-30 + 1799: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 9,-30 + 1889: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 31,-1 + 1890: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 31,-3 + 1891: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 30,-5 + 1892: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 30,-7 + 1893: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 31,-9 + 1894: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 31,-12 + 1915: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 26,-12 + 1916: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 23,-13 + 1917: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 21,-12 + 1918: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 18,-12 + 1919: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 15,-11 + 1920: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 13,-12 + 1921: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 10,-12 + 1922: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 8,-11 + 1923: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 6,-12 + 1924: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 4,-11 + 2029: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 5,-30 + 2030: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 5,-27 + 2031: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 5,-25 + 2032: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 4,-23 + 2033: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 5,-20 + 2034: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 5,-18 + 2035: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 8,-20 + 2036: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 9,-22 + 2037: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 8,-23 + 2038: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 8,-28 + 2059: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 4,-26 + 2060: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 5,-24 + 2061: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 5,-21 + 2062: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 5,-19 + 2063: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 6,-17 + 2064: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 5,-9 + 2065: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 6,-7 + 2066: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 6,-5 + 2067: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 5,-3 + 2073: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 5,-1 + 2074: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 16,-5 + 2075: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 14,-4 + 2076: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 13,-4 + 2077: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 13,-3 + 2093: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 12,-1 + 2094: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 13,-2 + 2095: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 13,-4 + 2096: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 14,-5 + 2097: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 16,-5 + 2098: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 15,-9 + 2099: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 14,-9 + 2100: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 26,-11 + 2101: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 28,-12 + 2260: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,-32 + 2261: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,-30 + 2262: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,-27 + 2263: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,-25 + 2264: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,-23 + 2265: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,-21 + 2266: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,-19 + 2267: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 6,-18 + 2310: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,-1 + 2311: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 6,-3 + 2312: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,-5 + 2313: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 6,-7 + 2314: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 6,-9 + 2315: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,-10 + 2316: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 6,-12 + 2317: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 7,-13 + 2318: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 8,-12 + 2319: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 8,-9 + 2320: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 10,-12 + 2321: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 9,-9 + 2322: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 8,-8 + 2323: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,-9 + 2324: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 15,-8 + 2325: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,-6 + 2326: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 16,-4 + 2327: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,-5 + 2328: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 13,-4 + 2329: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 12,-2 + 2340: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 8,-1 + 2341: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 8,-2 + 2342: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 9,-2 + 2364: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 8,-13 + 2365: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 13,-12 + 2366: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 15,-12 + 2367: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 20,-11 + 2368: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 22,-12 + 2369: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 26,-12 + 2370: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 28,-11 + 2389: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 31,-1 + 2390: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 30,-4 + 2391: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 30,-6 + 2392: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 31,-8 + 2393: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 30,-12 + 2394: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 26,-13 + 2395: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 20,-11 + 2396: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 13,-12 + 2397: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 11,-11 + 2398: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 8,-11 + 2399: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 7,-12 + 2400: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 1,-13 + 2458: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 1,-21 + 2459: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 2,-22 + 2461: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 1,-25 + 2462: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 2,-25 + 2529: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 6,-8 + 2572: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 7,-21 + 2573: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 7,-24 + 2574: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 7,-25 + 2575: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 7,-30 + 2576: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 7,-30 + 2598: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 4,-21 + 2599: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 4,-22 + 2600: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 9,-13 + 2601: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 10,-9 + 2602: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 10,-7 + 2603: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,-7 + 2604: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,-8 + 2616: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,-12 + 2617: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 16,-13 + 2618: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 19,-14 + 2619: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 19,-13 + 2620: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 20,-13 + 2621: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 30,-11 + 2622: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 29,-11 + 2623: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 30,-10 + 2629: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 10,-8 + 2630: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 9,-10 + 2710: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 4,-22 + 2711: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 27,-11 + 2714: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,-14 + 2715: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 6,-14 + 2716: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,-13 + 2717: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 3,-13 + 2718: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 0,-12 + -1,-1: + 26: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + coordinates: -1,-2 + 29: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + coordinates: -4,-1 + 30: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + coordinates: -4,-2 + 31: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + coordinates: -4,-3 + 32: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + coordinates: -1,-1 + 34: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + coordinates: -2,-4 + 35: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + coordinates: -3,-4 + 36: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + coordinates: -1,-4 + 38: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + coordinates: -4,-4 + 40: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + coordinates: -2,-1 + 41: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + coordinates: -2,-2 + 172: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -18,-30 + 173: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -19,-30 + 174: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -20,-30 + 175: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -21,-30 + 176: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: -18,-30 + 177: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: -19,-30 + 178: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: -20,-30 + 179: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + coordinates: -21,-30 + 183: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -23,-31 + 184: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + coordinates: -23,-30 + 185: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + coordinates: -23,-32 + 186: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + coordinates: -23,-31 + 187: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + coordinates: -23,-30 + 188: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + coordinates: -23,-32 + 189: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: -24,-25 + 190: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: -25,-25 + 191: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: -26,-25 + 192: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: -27,-25 + 193: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: -24,-26 + 194: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: -24,-27 + 195: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: -24,-28 + 196: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: -24,-29 + 197: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: -24,-30 + 198: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: -23,-30 + 207: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -25,-32 + 208: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -25,-31 + 209: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -25,-30 + 210: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -25,-29 + 211: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -25,-28 + 212: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -26,-28 + 213: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -27,-28 + 214: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -27,-27 + 215: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -27,-26 + 216: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -27,-25 + 511: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + coordinates: -16,-32 + 514: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + coordinates: -16,-32 + 516: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + coordinates: -20,-14 + 517: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + coordinates: -20,-15 + 518: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + coordinates: -20,-16 + 519: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + coordinates: -20,-17 + 520: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: -20,-17 + 521: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: -19,-17 + 522: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: -18,-17 + 523: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: -17,-17 + 524: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + coordinates: -18,-13 + 525: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + coordinates: -16,-15 + 526: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -16,-13 + 527: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: -18,-15 + 647: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -27,-19 + 648: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -26,-19 + 649: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -25,-18 + 650: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -24,-18 + 651: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -23,-18 + 652: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -22,-18 + 669: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -27,-15 + 670: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -26,-15 + 671: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -25,-15 + 672: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -24,-15 + 673: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -23,-15 + 674: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -22,-15 + 675: + color: '#FF9F4196' + id: BrickTileWhiteLineN + coordinates: -27,-15 + 676: + color: '#FF9F4196' + id: BrickTileWhiteLineN + coordinates: -26,-15 + 677: + color: '#FF9F4196' + id: BrickTileWhiteLineN + coordinates: -25,-15 + 678: + color: '#FF9F4196' + id: BrickTileWhiteLineN + coordinates: -24,-15 + 679: + color: '#FF9F4196' + id: BrickTileWhiteLineN + coordinates: -23,-15 + 680: + color: '#FF9F4196' + id: BrickTileWhiteLineN + coordinates: -22,-15 + 681: + color: '#FF9F4196' + id: BrickTileWhiteLineS + coordinates: -27,-19 + 682: + color: '#FF9F4196' + id: BrickTileWhiteLineS + coordinates: -26,-19 + 683: + color: '#FF9F4196' + id: BrickTileWhiteLineS + coordinates: -25,-18 + 684: + color: '#FF9F4196' + id: BrickTileWhiteLineS + coordinates: -24,-18 + 685: + color: '#FF9F4196' + id: BrickTileWhiteLineS + coordinates: -23,-18 + 686: + color: '#FF9F4196' + id: BrickTileWhiteLineS + coordinates: -22,-18 + 687: + color: '#FF9F4196' + id: OffsetCheckerBOverlay + coordinates: -25,-16 + 688: + color: '#FF9F4196' + id: OffsetCheckerBOverlay + coordinates: -25,-17 + 689: + color: '#FF9F4196' + id: OffsetCheckerBOverlay + coordinates: -24,-17 + 690: + color: '#FF9F4196' + id: OffsetCheckerBOverlay + coordinates: -23,-17 + 691: + color: '#FF9F4196' + id: OffsetCheckerBOverlay + coordinates: -23,-16 + 692: + color: '#FF9F4196' + id: OffsetCheckerBOverlay + coordinates: -24,-16 + 693: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + coordinates: -23,-16 + 694: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + coordinates: -25,-16 + 695: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -24,-17 + 696: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -24,-16 + 697: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + coordinates: -25,-17 + 698: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + coordinates: -23,-17 + 699: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -18,-24 + 700: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -19,-24 + 701: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -20,-24 + 702: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -21,-24 + 703: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -22,-24 + 704: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -23,-23 + 705: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -24,-23 + 706: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -25,-23 + 707: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -26,-23 + 708: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -27,-23 + 709: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -28,-23 + 710: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -29,-23 + 711: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -30,-23 + 712: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -31,-23 + 713: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -32,-23 + 729: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -32,-21 + 730: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -31,-21 + 731: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -30,-21 + 732: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -29,-21 + 733: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -26,-21 + 734: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -25,-21 + 735: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -24,-20 + 736: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -23,-20 + 737: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -22,-20 + 738: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -21,-20 + 739: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -20,-19 + 740: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -19,-19 + 741: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -18,-19 + 752: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -32,-23 + 753: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -31,-23 + 754: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -30,-23 + 755: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -29,-23 + 756: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -28,-23 + 757: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -27,-23 + 758: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -26,-23 + 759: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -25,-23 + 760: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -24,-23 + 761: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -23,-23 + 762: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -22,-24 + 763: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -21,-24 + 764: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -20,-24 + 765: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -19,-24 + 766: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -18,-24 + 767: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -18,-19 + 768: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -19,-19 + 769: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -20,-19 + 770: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -21,-20 + 771: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -22,-20 + 772: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -23,-20 + 773: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -24,-20 + 774: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -25,-21 + 775: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -26,-21 + 776: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -29,-21 + 777: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -30,-21 + 778: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -31,-21 + 779: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -32,-21 + 808: + color: '#EFB34196' + id: MiniTileCheckerAOverlay + coordinates: -23,-4 + 809: + color: '#EFB34196' + id: MiniTileCheckerAOverlay + coordinates: -22,-4 + 810: + color: '#EFB34196' + id: MiniTileCheckerAOverlay + coordinates: -23,-5 + 811: + color: '#EFB34196' + id: MiniTileCheckerAOverlay + coordinates: -22,-5 + 812: + color: '#EFB34196' + id: MiniTileCheckerAOverlay + coordinates: -23,-6 + 813: + color: '#EFB34196' + id: MiniTileCheckerAOverlay + coordinates: -22,-6 + 814: + color: '#EFB34196' + id: MiniTileCheckerAOverlay + coordinates: -23,-7 + 815: + color: '#EFB34196' + id: MiniTileCheckerAOverlay + coordinates: -22,-7 + 816: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + coordinates: -23,-4 + 817: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + coordinates: -23,-7 + 818: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + coordinates: -22,-7 + 819: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + coordinates: -22,-4 + 820: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -22,-5 + 821: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -22,-6 + 822: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -23,-5 + 823: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -23,-6 + 824: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + coordinates: -27,-29 + 825: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + coordinates: -27,-30 + 826: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + coordinates: -27,-31 + 827: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + coordinates: -27,-32 + 830: + color: '#52B4E996' + id: BrickTileWhiteLineW + coordinates: -27,-29 + 831: + color: '#52B4E996' + id: BrickTileWhiteLineW + coordinates: -27,-30 + 832: + color: '#52B4E996' + id: BrickTileWhiteLineW + coordinates: -27,-31 + 833: + color: '#52B4E996' + id: BrickTileWhiteLineW + coordinates: -27,-32 + 843: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -32,-11 + 844: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -31,-11 + 845: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -30,-11 + 846: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -29,-11 + 847: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -28,-11 + 848: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -27,-11 + 849: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -26,-11 + 850: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -25,-11 + 851: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -24,-11 + 890: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -32,-4 + 891: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -31,-4 + 892: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -30,-4 + 893: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -31,-8 + 894: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -30,-8 + 895: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -29,-8 + 896: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -28,-8 + 897: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -27,-8 + 898: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -26,-8 + 899: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -25,-8 + 900: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -31,-6 + 901: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -30,-6 + 902: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -29,-6 + 903: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -28,-6 + 904: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -27,-6 + 905: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -26,-6 + 906: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -25,-6 + 907: + color: '#EFB34196' + id: BrickTileWhiteLineS + coordinates: -31,-8 + 908: + color: '#EFB34196' + id: BrickTileWhiteLineS + coordinates: -30,-8 + 909: + color: '#EFB34196' + id: BrickTileWhiteLineS + coordinates: -29,-8 + 910: + color: '#EFB34196' + id: BrickTileWhiteLineS + coordinates: -28,-8 + 911: + color: '#EFB34196' + id: BrickTileWhiteLineS + coordinates: -27,-8 + 912: + color: '#EFB34196' + id: BrickTileWhiteLineS + coordinates: -26,-8 + 913: + color: '#EFB34196' + id: BrickTileWhiteLineS + coordinates: -25,-8 + 914: + color: '#EFB34196' + id: BrickTileWhiteLineN + coordinates: -31,-6 + 915: + color: '#EFB34196' + id: BrickTileWhiteLineN + coordinates: -30,-6 + 916: + color: '#EFB34196' + id: BrickTileWhiteLineN + coordinates: -29,-6 + 917: + color: '#EFB34196' + id: BrickTileWhiteLineN + coordinates: -28,-6 + 918: + color: '#EFB34196' + id: BrickTileWhiteLineN + coordinates: -27,-6 + 919: + color: '#EFB34196' + id: BrickTileWhiteLineN + coordinates: -26,-6 + 920: + color: '#EFB34196' + id: BrickTileWhiteLineN + coordinates: -25,-6 + 930: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -30,-1 + 931: + color: '#EFB34196' + id: BrickTileWhiteLineN + coordinates: -30,-1 + 932: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -20,-28 + 933: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -21,-28 + 934: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -22,-28 + 935: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -19,-28 + 936: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -18,-28 + 937: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -22,-26 + 938: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -21,-26 + 939: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -20,-26 + 940: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -19,-26 + 941: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -18,-26 + 942: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -22,-28 + 943: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -21,-28 + 944: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -20,-28 + 945: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -19,-28 + 946: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -18,-28 + 947: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -22,-26 + 948: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -21,-26 + 949: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -20,-26 + 950: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -19,-26 + 951: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -18,-26 + 952: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -20,-27 + 953: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -20,-27 + 954: + color: '#FFFFFFFF' + id: BrickTileDarkEndW + coordinates: -21,-27 + 955: + color: '#FFFFFFFF' + id: BrickTileDarkEndE + coordinates: -19,-27 + 1012: + color: '#EFB34196' + id: BrickTileWhiteLineS + coordinates: -32,-4 + 1013: + color: '#EFB34196' + id: BrickTileWhiteLineS + coordinates: -31,-4 + 1014: + color: '#EFB34196' + id: BrickTileWhiteLineS + coordinates: -30,-4 + 1015: + color: '#52B4E996' + id: WarnBoxGreyscale + coordinates: -31,-10 + 1016: + color: '#52B4E996' + id: WarnBoxGreyscale + coordinates: -30,-10 + 1017: + color: '#DE3A3A96' + id: WarnBoxGreyscale + coordinates: -26,-10 + 1018: + color: '#DE3A3A96' + id: WarnBoxGreyscale + coordinates: -25,-10 + 1019: + color: '#9FED5896' + id: Bushb3 + coordinates: -19.545383,-4.6124187 + 1020: + color: '#9FED5896' + id: Bushb3 + coordinates: -17.815971,-4.4932137 + 1021: + color: '#9FED5896' + id: Bushb3 + coordinates: -19.56526,-6.2018223 + 1022: + color: '#9FED5896' + id: Bushb3 + coordinates: -19.783924,-8.24818 + 1023: + color: '#9FED5896' + id: Bushb3 + coordinates: -17.95512,-8.943545 + 1024: + color: '#9FED5896' + id: Bushb3 + coordinates: -17.557552,-7.294538 + 1025: + color: '#9FED5896' + id: Bushb3 + coordinates: -19.088182,-7.11573 + 1026: + color: '#9FED5896' + id: Busha1 + coordinates: -18.094267,-6.2415576 + 1027: + color: '#9FED5896' + id: Busha1 + coordinates: -18.909277,-5.3673854 + 1028: + color: '#9FED5896' + id: Busha1 + coordinates: -17.815971,-5.029637 + 1029: + color: '#9FED5896' + id: Busha1 + coordinates: -20.241123,-4.0362597 + 1030: + color: '#9FED5896' + id: Busha1 + coordinates: -20.101976,-5.864074 + 1031: + color: '#9FED5896' + id: Busha1 + coordinates: -20.002584,-8.32765 + 1032: + color: '#9FED5896' + id: Busha1 + coordinates: -20.161612,-9.082618 + 1033: + color: '#9FED5896' + id: Busha1 + coordinates: -18.511711,-9.181956 + 1034: + color: '#9FED5896' + id: Busha1 + coordinates: -19.048426,-8.049505 + 1035: + color: '#9FED5896' + id: Busha1 + coordinates: -17.73646,-8.069372 + 1036: + color: '#9FED5896' + id: Busha1 + coordinates: -17.398527,-9.420366 + 1037: + color: '#9FED5896' + id: Busha1 + coordinates: -17.000961,-6.321028 + 1038: + color: '#9FED5896' + id: Busha1 + coordinates: -19.048426,-6.2614245 + 1039: + color: '#9FED5896' + id: Busha1 + coordinates: -20.161612,-7.3740087 + 1040: + color: '#9FED5896' + id: Bushn1 + coordinates: -18.611103,-5.943545 + 1041: + color: '#9FED5896' + id: Bushn1 + coordinates: -19.505627,-4.6124187 + 1042: + color: '#9FED5896' + id: Bushn1 + coordinates: -17.378649,-8.566062 + 1043: + color: '#9FED5896' + id: Bushn1 + coordinates: -19.426113,-8.6852665 + 1044: + color: '#9FED5896' + id: Bushn1 + coordinates: -18.352684,-7.1753325 + 1045: + color: '#9FED5896' + id: Flowerspv3 + coordinates: -19.8038,-4.989902 + 1046: + color: '#9FED5896' + id: Flowerspv3 + coordinates: -17.776215,-4.8110943 + 1047: + color: '#9FED5896' + id: Flowerspv3 + coordinates: -18.710495,-6.2415576 + 1048: + color: '#9FED5896' + id: Flowerspv3 + coordinates: -17.93524,-7.4733458 + 1049: + color: '#9FED5896' + id: Flowerspv1 + coordinates: -19.823679,-8.605797 + 1050: + color: '#9FED5896' + id: Flowerspv1 + coordinates: -19.903193,-7.095862 + 1051: + color: '#9FED5896' + id: Flowerspv1 + coordinates: -17.35877,-5.8044715 + 1052: + color: '#9FED5896' + id: Flowerspv1 + coordinates: -17.73646,-8.6654 + 1053: + color: '#9FED5896' + id: Flowersy1 + coordinates: -18.750252,-7.572683 + 1054: + color: '#9FED5896' + id: Flowersy1 + coordinates: -19.764044,-5.6455307 + 1055: + color: '#9FED5896' + id: Flowersy1 + coordinates: -17.398527,-7.1355968 + 1056: + color: '#9FED5896' + id: Flowersy1 + coordinates: -19.764044,-7.3541408 + 1057: + color: '#9FED5896' + id: Flowersy1 + coordinates: -18.31293,-8.864074 + 1058: + color: '#9FED5896' + id: Flowersy1 + coordinates: -17.537676,-5.16871 + 1059: + color: '#9FED5896' + id: grasssnow07 + coordinates: -19.505627,-6.4402337 + 1060: + color: '#9FED5896' + id: grasssnow07 + coordinates: -17.796093,-5.8442063 + 1061: + color: '#9FED5896' + id: grasssnow07 + coordinates: -19.227331,-4.393875 + 1062: + color: '#9FED5896' + id: grasssnow07 + coordinates: -18.949036,-8.109108 + 1063: + color: '#9FED5896' + id: grasssnow07 + coordinates: -17.577433,-8.864074 + 1064: + color: '#9FED5896' + id: grasssnow07 + coordinates: -19.704409,-8.943545 + 1065: + color: '#9FED5896' + id: grasssnow07 + coordinates: -17.537676,-6.360763 + 1066: + color: '#9FED5896' + id: grasssnow07 + coordinates: -17.756336,-7.989902 + 1067: + color: '#9FED5896' + id: grasssnow07 + coordinates: -19.028547,-5.16871 + 1068: + color: '#9FED5896' + id: grasssnow07 + coordinates: -19.167696,-6.9567895 + 1069: + color: '#9FED5896' + id: Rock05 + coordinates: -19.386356,-8.486591 + 1070: + color: '#9FED5896' + id: Rock05 + coordinates: -17.756336,-8.32765 + 1071: + color: '#9FED5896' + id: Rock05 + coordinates: -17.875607,-5.3872523 + 1072: + color: '#9FED5896' + id: Rock05 + coordinates: -19.744167,-4.4932137 + 1073: + color: '#9FED5896' + id: Rock05 + coordinates: -19.823679,-6.2018223 + 1074: + color: '#9FED5896' + id: Rock05 + coordinates: -19.505627,-7.453478 + 1075: + color: '#9FED5896' + id: Rock05 + coordinates: -18.591225,-7.4932137 + 1076: + color: '#9FED5896' + id: Rock05 + coordinates: -17.776215,-7.572683 + 1077: + color: '#9FED5896' + id: Rock05 + coordinates: -20.082096,-8.844207 + 1078: + color: '#9FED5896' + id: Rock05 + coordinates: -17.815971,-5.943545 + 1079: + color: '#9FED5896' + id: Rock05 + coordinates: -19.863436,-5.903809 + 1080: + color: '#9FED5896' + id: Rock05 + coordinates: -17.080473,-7.791227 + 1081: + color: '#9FED5896' + id: Rock05 + coordinates: -17.080473,-8.963412 + 1082: + color: '#9FED5896' + id: Rock05 + coordinates: -19.028547,-9.122354 + 1083: + color: '#9FED5896' + id: Rock05 + coordinates: -20.241123,-6.5594387 + 1084: + color: '#9FED5896' + id: Rock05 + coordinates: -20.121855,-3.9766572 + 1085: + color: '#9FED5896' + id: Rock05 + coordinates: -18.929155,-3.8773198 + 1086: + color: '#9FED5896' + id: Rock05 + coordinates: -17.02084,-5.1885777 + 1087: + color: '#9FED5896' + id: Rock05 + coordinates: -18.8894,-5.1289754 + 1088: + color: '#9FED5896' + id: Grasse2 + coordinates: -17.527288,-4.3816347 + 1089: + color: '#9FED5896' + id: Grasse2 + coordinates: -17.567047,-3.9445488 + 1090: + color: '#9FED5896' + id: Grasse2 + coordinates: -17.129723,-3.924681 + 1091: + color: '#9FED5896' + id: Grasse2 + coordinates: -17.427898,-5.3154097 + 1092: + color: '#9FED5896' + id: Grasse2 + coordinates: -18.819378,-4.083622 + 1093: + color: '#9FED5896' + id: grasssnow07 + coordinates: -17.785707,-4.560443 + 1094: + color: '#9FED5896' + id: grasssnow07 + coordinates: -19.13743,-8.514086 + 1095: + color: '#9FED5896' + id: grasssnow07 + coordinates: -17.547167,-9.030642 + 1096: + color: '#9FED5896' + id: grasssnow07 + coordinates: -17.646559,-5.9313035 + 1097: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: -17,-4 + 1098: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: -17,-6 + 1099: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: -17,-5 + 1100: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: -17,-7 + 1101: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: -17,-8 + 1102: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: -17,-9 + 1103: + color: '#9FED5896' + id: BrickTileSteelLineE + coordinates: -17,-4 + 1104: + color: '#9FED5896' + id: BrickTileSteelLineE + coordinates: -17,-5 + 1105: + color: '#9FED5896' + id: BrickTileSteelLineE + coordinates: -17,-6 + 1106: + color: '#9FED5896' + id: BrickTileSteelLineE + coordinates: -17,-7 + 1107: + color: '#9FED5896' + id: BrickTileSteelLineE + coordinates: -17,-8 + 1108: + color: '#9FED5896' + id: BrickTileSteelLineE + coordinates: -17,-9 + 1158: + color: '#334E6DC8' + id: BotLeftGreyscale + coordinates: -2,-10 + 1159: + color: '#334E6DC8' + id: BotLeftGreyscale + coordinates: -3,-10 + 1160: + color: '#334E6DC8' + id: BotLeftGreyscale + coordinates: -4,-10 + 1161: + color: '#334E6DC8' + id: DeliveryGreyscale + coordinates: -1,-10 + 1162: + color: '#334E6DC8' + id: LoadingAreaGreyscale + coordinates: -1,-11 + 1163: + angle: 3.141592653589793 rad + color: '#334E6DC8' + id: LoadingAreaGreyscale + coordinates: -5,-11 + 1164: + angle: 3.141592653589793 rad + color: '#334E6DC8' + id: BotLeftGreyscale + coordinates: -5,-10 + 1165: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + coordinates: -8,-24 + 1166: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -7,-24 + 1167: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -6,-24 + 1168: + color: '#FFFFFFFF' + id: BrickTileWhiteEndE + coordinates: -5,-24 + 1169: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSe + coordinates: -6,-24 + 1170: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + coordinates: -6,-25 + 1171: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + coordinates: -6,-26 + 1172: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + coordinates: -5,-26 + 1173: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + coordinates: -5,-27 + 1174: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -6,-27 + 1175: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -7,-27 + 1176: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -8,-27 + 1177: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -9,-27 + 1178: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -10,-27 + 1179: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -11,-27 + 1180: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + coordinates: -12,-27 + 1181: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + coordinates: -12,-26 + 1182: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + coordinates: -12,-25 + 1183: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -11,-25 + 1184: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -10,-25 + 1185: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -9,-25 + 1186: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNw + coordinates: -8,-25 + 1228: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -16,-1 + 1229: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -16,-2 + 1231: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + coordinates: -16,-3 + 1232: + color: '#334E6DC8' + id: BrickTileWhiteLineW + coordinates: -16,-2 + 1233: + color: '#334E6DC8' + id: BrickTileWhiteLineW + coordinates: -16,-1 + 1235: + color: '#334E6DC8' + id: BrickTileWhiteInnerNw + coordinates: -16,-3 + 1236: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -25,-1 + 1237: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -25,-2 + 1238: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + coordinates: -25,-3 + 1239: + color: '#334E6DC8' + id: BrickTileWhiteLineE + coordinates: -25,-1 + 1240: + color: '#334E6DC8' + id: BrickTileWhiteLineE + coordinates: -25,-2 + 1241: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + coordinates: -25,-3 + 1242: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + coordinates: -18,-1 + 1243: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + coordinates: -18,-2 + 1244: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + coordinates: -23,-2 + 1245: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + coordinates: -23,-1 + 1246: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -22,-1 + 1247: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -21,-1 + 1248: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -20,-1 + 1249: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -19,-1 + 1250: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -22,-2 + 1251: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -21,-2 + 1252: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -20,-2 + 1253: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -19,-2 + 1254: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -22,-1 + 1255: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -21,-1 + 1256: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -20,-1 + 1257: + color: '#334E6DC8' + id: BrickTileWhiteLineN + coordinates: -19,-1 + 1258: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -22,-2 + 1259: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -21,-2 + 1260: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -20,-2 + 1261: + color: '#334E6DC8' + id: BrickTileWhiteLineS + coordinates: -19,-2 + 1262: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + coordinates: -23,-2 + 1263: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + coordinates: -23,-1 + 1264: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + coordinates: -18,-1 + 1265: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + coordinates: -18,-2 + 1295: + color: '#79150036' + id: CheckerNESW + coordinates: -4,-20 + 1296: + color: '#79150036' + id: CheckerNESW + coordinates: -4,-21 + 1297: + color: '#79150036' + id: CheckerNESW + coordinates: -4,-22 + 1298: + color: '#79150036' + id: CheckerNESW + coordinates: -4,-23 + 1299: + color: '#79150036' + id: CheckerNESW + coordinates: -4,-24 + 1300: + color: '#79150036' + id: CheckerNESW + coordinates: -4,-25 + 1301: + color: '#79150036' + id: CheckerNESW + coordinates: -4,-26 + 1302: + color: '#79150036' + id: CheckerNESW + coordinates: -4,-27 + 1303: + color: '#79150036' + id: CheckerNESW + coordinates: -3,-27 + 1304: + color: '#79150036' + id: CheckerNESW + coordinates: -2,-27 + 1305: + color: '#79150036' + id: CheckerNESW + coordinates: -1,-27 + 1315: + color: '#79150036' + id: CheckerNESW + coordinates: -3,-20 + 1316: + color: '#79150036' + id: CheckerNESW + coordinates: -2,-20 + 1319: + color: '#79150036' + id: CheckerNESW + coordinates: -1,-21 + 1320: + color: '#79150036' + id: CheckerNESW + coordinates: -2,-21 + 1321: + color: '#79150036' + id: CheckerNESW + coordinates: -3,-21 + 1322: + color: '#79150036' + id: CheckerNESW + coordinates: -3,-22 + 1323: + color: '#79150036' + id: CheckerNESW + coordinates: -2,-22 + 1324: + color: '#79150036' + id: CheckerNESW + coordinates: -1,-22 + 1329: + color: '#79150036' + id: CheckerNESW + coordinates: -1,-23 + 1330: + color: '#79150036' + id: CheckerNESW + coordinates: -2,-23 + 1331: + color: '#79150036' + id: CheckerNESW + coordinates: -3,-23 + 1332: + color: '#79150036' + id: CheckerNESW + coordinates: -3,-24 + 1333: + color: '#79150036' + id: CheckerNESW + coordinates: -2,-24 + 1334: + color: '#79150036' + id: CheckerNESW + coordinates: -1,-24 + 1339: + color: '#79150036' + id: CheckerNESW + coordinates: -1,-25 + 1340: + color: '#79150036' + id: CheckerNESW + coordinates: -2,-25 + 1341: + color: '#79150036' + id: CheckerNESW + coordinates: -3,-25 + 1342: + color: '#79150036' + id: CheckerNESW + coordinates: -3,-26 + 1343: + color: '#79150036' + id: CheckerNESW + coordinates: -2,-26 + 1344: + color: '#79150036' + id: CheckerNESW + coordinates: -1,-26 + 1347: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + coordinates: -1,-21 + 1351: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + coordinates: -2,-21 + 1352: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + coordinates: -2,-20 + 1353: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -5,-26 + 1354: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -5,-27 + 1377: + color: '#EFB34196' + id: Bot + coordinates: -6,-14 + 1383: + color: '#EFB34196' + id: Bot + coordinates: -14,-31 + 1391: + color: '#EFB34196' + id: Bot + coordinates: -4,-20 + 1441: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -31,-3 + 1443: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -27,-3 + 1444: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -19,-2 + 1445: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -31,-12 + 1460: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -30,-16 + 1461: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -29,-23 + 1464: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -23,-23 + 1465: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -19,-20 + 1466: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -18,-20 + 1467: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -24,-17 + 1468: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -26,-16 + 1469: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -23,-16 + 1470: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -22,-17 + 1471: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -24,-31 + 1473: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -26,-32 + 1475: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -20,-32 + 1476: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -18,-32 + 1477: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -16,-29 + 1478: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -14,-24 + 1479: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -15,-18 + 1480: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -17,-14 + 1481: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -15,-13 + 1482: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -15,-8 + 1483: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -15,-4 + 1539: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -1,-23 + 1540: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -3,-26 + 1541: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -4,-25 + 1601: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -25,-13 + 1602: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -16,-12 + 1603: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -16,-5 + 1608: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -31,-3 + 1609: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -29,-7 + 1610: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -26,-7 + 1611: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -19,-15 + 1612: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -19,-19 + 1613: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -20,-21 + 1614: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -24,-23 + 1615: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -31,-22 + 1617: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -30,-15 + 1622: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -25,-28 + 1623: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -25,-31 + 1625: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -23,-31 + 1627: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -20,-32 + 1628: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -19,-32 + 1629: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -15,-29 + 1630: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -14,-27 + 1631: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -15,-23 + 1632: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -15,-21 + 1633: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -15,-18 + 1634: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -16,-16 + 1635: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -11,-18 + 1636: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -12,-16 + 1637: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -10,-16 + 1638: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -11,-22 + 1639: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -11,-20 + 1640: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -10,-21 + 1641: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -10,-23 + 1642: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -10,-25 + 1643: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -11,-26 + 1644: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -8,-25 + 1645: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -6,-24 + 1646: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -6,-26 + 1647: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -3,-25 + 1648: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -3,-26 + 1649: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -4,-26 + 1883: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -28,-21 + 1884: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -27,-21 + 1885: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -28,-21 + 1886: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -27,-21 + 1925: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -1,-12 + 1926: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -4,-13 + 1927: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -6,-12 + 1928: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -8,-13 + 1929: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -11,-12 + 1930: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -13,-12 + 1931: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -16,-12 + 1932: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -19,-12 + 1933: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -21,-12 + 1934: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -24,-12 + 1935: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -26,-12 + 1936: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -28,-12 + 1937: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -31,-12 + 1971: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -30,-22 + 1972: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -25,-22 + 1973: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -21,-23 + 1974: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -22,-24 + 1975: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -19,-24 + 1976: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -20,-20 + 1977: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -18,-19 + 1978: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -22,-17 + 1979: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -26,-17 + 1980: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -27,-17 + 1981: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -25,-15 + 1982: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -19,-15 + 1983: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -19,-13 + 1984: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -18,-16 + 1985: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -17,-16 + 1986: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -15,-13 + 1987: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -16,-16 + 1988: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -15,-20 + 1989: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -15,-22 + 1990: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -14,-25 + 1991: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -16,-27 + 1992: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -15,-30 + 1993: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -14,-32 + 2272: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,-31 + 2273: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,-29 + 2274: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,-28 + 2275: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,-26 + 2276: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,-23 + 2277: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -14,-22 + 2278: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -16,-20 + 2279: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,-18 + 2280: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -17,-16 + 2281: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -19,-14 + 2282: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -20,-12 + 2283: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -19,-14 + 2284: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -17,-15 + 2285: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,-12 + 2286: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -16,-11 + 2287: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -16,-8 + 2288: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,-7 + 2289: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,-5 + 2290: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -16,-3 + 2291: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -16,-1 + 2401: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -2,-12 + 2402: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -5,-11 + 2403: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -8,-13 + 2404: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -9,-11 + 2405: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -10,-12 + 2406: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -5,-10 + 2407: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -3,-10 + 2408: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -2,-10 + 2409: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -1,-10 + 2410: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -1,-10 + 2411: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -2,-13 + 2412: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -4,-13 + 2413: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -5,-12 + 2414: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -7,-12 + 2415: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -25,-22 + 2416: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -30,-22 + 2418: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -30,-16 + 2419: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -30,-15 + 2421: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -11,-26 + 2422: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -10,-26 + 2423: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -7,-25 + 2424: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -6,-24 + 2425: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -7,-26 + 2426: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -6,-26 + 2427: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -7,-24 + 2428: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -8,-26 + 2429: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -10,-26 + 2430: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -10,-27 + 2431: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -11,-25 + 2432: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -7,-26 + 2433: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -7,-26 + 2434: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -9,-25 + 2435: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -9,-25 + 2436: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -7,-26 + 2437: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -12,-26 + 2438: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -7,-25 + 2439: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -6,-27 + 2440: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -9,-25 + 2441: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -7,-26 + 2442: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -6,-26 + 2443: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -6,-25 + 2444: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -11,-26 + 2445: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -11,-22 + 2446: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -11,-21 + 2447: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -10,-20 + 2448: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -13,-16 + 2449: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -12,-16 + 2450: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -10,-16 + 2451: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -11,-18 + 2452: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -11,-19 + 2453: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -11,-21 + 2454: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -11,-21 + 2455: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -3,-26 + 2456: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -3,-25 + 2457: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -1,-22 + 2460: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -1,-22 + 2463: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -1,-26 + 2464: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -1,-26 + 2465: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -4,-22 + 2466: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -2,-20 + 2471: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -32,-4 + 2479: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -31,-3 + 2480: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -31,-4 + 2481: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -30,-3 + 2482: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -27,-1 + 2483: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -25,-1 + 2484: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -25,-3 + 2485: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -26,-3 + 2486: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -23,-2 + 2487: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -20,-2 + 2488: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -18,-2 + 2530: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -3,-13 + 2531: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -6,-12 + 2532: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -13,-12 + 2533: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -17,-12 + 2534: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -19,-12 + 2535: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -22,-12 + 2536: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -25,-12 + 2537: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -27,-12 + 2538: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -29,-13 + 2586: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -19,-17 + 2587: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -20,-17 + 2588: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -18,-17 + 2589: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -17,-17 + 2590: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -16,-17 + 2591: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -20,-13 + 2592: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -21,-13 + 2593: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,-14 + 2594: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,-15 + 2595: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -16,-15 + 2596: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -14,-21 + 2597: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -14,-26 + 2613: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -1,-11 + 2614: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -8,-11 + 2615: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -7,-11 + 2639: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -16,-32 + 2640: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -20,-19 + 2641: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -19,-20 + 2642: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -19,-19 + 2657: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -25,-2 + 2658: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -30,-2 + 2659: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -30,-1 + 2660: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -30,-2 + 2661: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -30,-4 + 2666: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -31,-8 + 2667: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -30,-8 + 2668: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -30,-7 + 2669: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -31,-6 + 2670: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -30,-6 + 2671: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -31,-7 + 2672: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -29,-7 + 2673: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -28,-7 + 2674: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -27,-8 + 2697: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -29,-10 + 2698: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -28,-10 + 2699: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -27,-10 + 2700: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -29,-11 + 2701: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -28,-11 + 2702: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -27,-11 + 2703: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -26,-11 + 2704: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -25,-12 + 2719: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -4,-12 + 2720: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -5,-11 + 2721: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -1,-11 + 2722: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -7,-14 + 2723: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -13,-13 + 2724: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -15,-14 + 2743: + cleanable: True + color: '#A4610696' + id: DirtMedium + coordinates: -12,-13 + 2744: + cleanable: True + color: '#A4610696' + id: DirtMedium + coordinates: -7,-13 + 2748: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -30,-27 + 2749: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -30,-28 + 2750: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -30,-26 + 2751: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -30,-25 + 2752: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -30,-25 + 2753: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -30,-28 + 2754: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -31,-28 + 2755: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -26,-25 + 2756: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -26,-27 + 2757: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -25,-25 + 2758: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -25,-23 + 2759: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -26,-23 + 2760: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -27,-21 + 2761: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -27,-23 + 2762: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -29,-21 + 2763: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -29,-23 + 2764: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -30,-21 + 2765: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -30,-23 + 2766: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -20,-27 + 2768: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -21,-31 + 2769: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -18,-30 + 2770: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -18,-31 + 2771: + color: '#EFB34196' + id: Bot + coordinates: -12,-25 + 2772: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -29,-19 + 2773: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -31,-15 + 2774: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -30,-15 + 2775: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -29,-15 + 2776: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -29,-19 + 2777: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -31,-15 + 2778: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -30,-15 + 2779: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -29,-15 + 2780: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -31,-19 + 2781: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -30,-19 + 2782: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -31,-19 + 2783: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -30,-19 + 2784: + angle: 3.141592653589793 rad + color: '#52B4E996' + id: ArrowsGreyscale + coordinates: -31.248856,-18.00287 + 2785: + angle: 3.141592653589793 rad + color: '#52B4E996' + id: ArrowsGreyscale + coordinates: -30.815523,-18.00287 + 2786: + color: '#DE3A3A96' + id: ArrowsGreyscale + coordinates: -29.218893,-17.986204 + 2787: + color: '#DE3A3A96' + id: ArrowsGreyscale + coordinates: -28.793892,-17.994537 + 2809: + color: '#F9801D98' + id: Dirt + coordinates: -7,-32 + 2810: + color: '#F9801D98' + id: Dirt + coordinates: -4,-32 + 2812: + color: '#F9801D98' + id: Dirt + coordinates: -1,-32 + 2813: + color: '#F9801D98' + id: Dirt + coordinates: -7,-31 + 2815: + color: '#F9801D98' + id: Dirt + coordinates: -10,-31 + 2816: + color: '#F9801D98' + id: Dirt + coordinates: -5,-32 + 2829: + color: '#FFFFFFFF' + id: Basalt1 + coordinates: -10,-31 + 2831: + color: '#FFFFFFFF' + id: Basalt5 + coordinates: -4,-31 + -1,-2: + 42: + color: '#D381C996' + id: StandClearGreyscale + coordinates: -8,-54 + 43: + color: '#D381C996' + id: StandClearGreyscale + coordinates: -8,-50 + 93: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -8,-62 + 94: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -8,-63 + 95: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -8,-64 + 96: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + coordinates: -5,-62 + 97: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + coordinates: -5,-63 + 98: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + coordinates: -5,-64 + 99: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -5,-62 + 100: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -5,-63 + 101: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -5,-64 + 102: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -8,-62 + 103: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -8,-63 + 104: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -8,-64 + 150: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + coordinates: -8,-49 + 151: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + coordinates: -9,-49 + 152: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + coordinates: -10,-49 + 153: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + coordinates: -11,-49 + 154: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + coordinates: -12,-49 + 155: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + coordinates: -13,-49 + 156: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + coordinates: -13,-49 + 157: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + coordinates: -13,-48 + 158: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + coordinates: -13,-47 + 159: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + coordinates: -8,-48 + 160: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + coordinates: -8,-47 + 161: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + coordinates: -12,-46 + 162: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + coordinates: -11,-46 + 163: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + coordinates: -10,-46 + 164: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + coordinates: -9,-46 + 165: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + coordinates: -9,-48 + 166: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + coordinates: -10,-48 + 167: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + coordinates: -11,-48 + 168: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + coordinates: -12,-48 + 169: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -18,-33 + 170: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -19,-33 + 171: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -20,-33 + 180: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: -18,-33 + 181: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: -19,-33 + 182: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + coordinates: -20,-33 + 199: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: -23,-33 + 200: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: -22,-33 + 201: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + coordinates: -22,-34 + 202: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -22,-34 + 203: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -23,-34 + 204: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -24,-34 + 205: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -25,-34 + 206: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + coordinates: -25,-33 + 510: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -16,-33 + 512: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + coordinates: -16,-34 + 513: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + coordinates: -16,-33 + 515: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + coordinates: -16,-34 + 629: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -8,-60 + 630: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -8,-59 + 631: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + coordinates: -5,-59 + 632: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + coordinates: -5,-60 + 633: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -8,-59 + 634: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -8,-60 + 635: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -5,-59 + 636: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -5,-60 + 637: + color: '#FFFFFFFF' + id: WarnLineN + coordinates: -7,-57 + 638: + color: '#FFFFFFFF' + id: WarnLineN + coordinates: -6,-57 + 639: + color: '#FFFFFFFF' + id: WarnLineN + coordinates: -7,-60 + 640: + color: '#FFFFFFFF' + id: WarnLineN + coordinates: -6,-60 + 641: + color: '#FFFFFFFF' + id: WarnLineN + coordinates: -7,-64 + 642: + color: '#FFFFFFFF' + id: WarnLineN + coordinates: -6,-64 + 643: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: -7,-62 + 644: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: -6,-62 + 645: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: -7,-59 + 646: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: -6,-59 + 828: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + coordinates: -27,-33 + 829: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + coordinates: -27,-34 + 834: + color: '#52B4E996' + id: BrickTileWhiteLineW + coordinates: -27,-33 + 835: + color: '#52B4E996' + id: BrickTileWhiteLineW + coordinates: -27,-34 + 956: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: -8,-55 + 957: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: -5,-55 + 958: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: -13,-51 + 959: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: -13,-52 + 960: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: -13,-53 + 961: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: -13,-54 + 962: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: -13,-55 + 963: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: -13,-56 + 964: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: -13,-57 + 965: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: -2,-55 + 966: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: -2,-56 + 967: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: -2,-57 + 968: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: -10,-54 + 969: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: -10,-55 + 970: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: -10,-51 + 971: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: -10,-52 + 972: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: -10,-53 + 973: + color: '#D381C996' + id: BrickTileWhiteLineW + coordinates: -13,-51 + 974: + color: '#D381C996' + id: BrickTileWhiteLineW + coordinates: -13,-52 + 975: + color: '#D381C996' + id: BrickTileWhiteLineW + coordinates: -13,-53 + 976: + color: '#D381C996' + id: BrickTileWhiteLineW + coordinates: -13,-54 + 977: + color: '#D381C996' + id: BrickTileWhiteLineW + coordinates: -13,-55 + 978: + color: '#D381C996' + id: BrickTileWhiteLineW + coordinates: -13,-56 + 979: + color: '#D381C996' + id: BrickTileWhiteLineW + coordinates: -13,-57 + 980: + color: '#D381C996' + id: BrickTileWhiteLineE + coordinates: -10,-51 + 981: + color: '#D381C996' + id: BrickTileWhiteLineE + coordinates: -10,-52 + 982: + color: '#D381C996' + id: BrickTileWhiteLineE + coordinates: -10,-53 + 983: + color: '#D381C996' + id: BrickTileWhiteLineE + coordinates: -10,-54 + 984: + color: '#D381C996' + id: BrickTileWhiteLineE + coordinates: -10,-55 + 985: + color: '#D381C996' + id: BrickTileWhiteLineE + coordinates: -2,-55 + 986: + color: '#D381C996' + id: BrickTileWhiteLineE + coordinates: -2,-56 + 987: + color: '#D381C996' + id: BrickTileWhiteLineE + coordinates: -2,-57 + 988: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -15,-54 + 989: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -15,-53 + 990: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -15,-52 + 991: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -15,-51 + 992: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -18,-51 + 993: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -18,-52 + 994: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -18,-53 + 995: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -18,-54 + 996: + color: '#D381C996' + id: BrickTileWhiteLineW + coordinates: -18,-54 + 997: + color: '#D381C996' + id: BrickTileWhiteLineW + coordinates: -18,-53 + 998: + color: '#D381C996' + id: BrickTileWhiteLineW + coordinates: -18,-52 + 999: + color: '#D381C996' + id: BrickTileWhiteLineW + coordinates: -18,-51 + 1000: + color: '#D381C996' + id: BrickTileWhiteLineE + coordinates: -15,-54 + 1001: + color: '#D381C996' + id: BrickTileWhiteLineE + coordinates: -15,-53 + 1002: + color: '#D381C996' + id: BrickTileWhiteLineE + coordinates: -15,-52 + 1003: + color: '#D381C996' + id: BrickTileWhiteLineE + coordinates: -15,-51 + 1004: + color: '#FFFFFFFF' + id: WarnLineN + coordinates: -16,-50 + 1187: + color: '#FFFFFFFF' + id: WarnCornerNW + coordinates: -7,-51 + 1188: + color: '#FFFFFFFF' + id: WarnCornerSW + coordinates: -7,-53 + 1189: + color: '#FFFFFFFF' + id: WarnLineS + coordinates: -7,-52 + 1190: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + coordinates: -31,-53 + 1191: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + coordinates: -31,-52 + 1192: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + coordinates: -31,-51 + 1215: + color: '#D381C996' + id: MiniTileCheckerAOverlay + coordinates: -3,-51 + 1216: + color: '#D381C996' + id: MiniTileCheckerAOverlay + coordinates: -2,-51 + 1217: + color: '#D381C996' + id: MiniTileCheckerAOverlay + coordinates: -3,-52 + 1218: + color: '#D381C996' + id: MiniTileCheckerAOverlay + coordinates: -2,-52 + 1219: + color: '#D381C996' + id: MiniTileCheckerAOverlay + coordinates: -3,-53 + 1220: + color: '#D381C996' + id: MiniTileCheckerAOverlay + coordinates: -2,-53 + 1221: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -2,-52 + 1222: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -3,-52 + 1223: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + coordinates: -3,-51 + 1224: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + coordinates: -2,-51 + 1225: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + coordinates: -2,-53 + 1226: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + coordinates: -3,-53 + 1355: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -22,-49 + 1384: + color: '#EFB34196' + id: Bot + coordinates: -22,-47 + 1386: + color: '#EFB34196' + id: Bot + coordinates: -3,-47 + 1387: + color: '#EFB34196' + id: Bot + coordinates: -13,-55 + 1472: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -24,-33 + 1474: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -23,-34 + 1577: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -3,-45 + 1578: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -8,-46 + 1579: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -12,-45 + 1580: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -17,-46 + 1581: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -21,-45 + 1582: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -25,-46 + 1583: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -30,-45 + 1624: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -24,-33 + 1626: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -23,-33 + 1650: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -14,-44 + 1651: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -20,-46 + 1652: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -25,-44 + 1653: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -28,-46 + 1654: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -30,-46 + 1661: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -23,-45 + 1662: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -20,-46 + 1663: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -13,-46 + 1664: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -9,-45 + 1665: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -7,-46 + 1666: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -3,-44 + 1668: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -9,-49 + 1669: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -12,-49 + 1670: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -11,-53 + 1671: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -12,-55 + 1672: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -10,-57 + 1673: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -5,-57 + 1674: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -4,-55 + 1675: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -3,-56 + 1676: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -6,-60 + 1677: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -6,-64 + 1694: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -3,-55 + 1831: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -28,-62 + 1994: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -16,-33 + 1995: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -14,-36 + 1996: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -14,-40 + 1997: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -16,-42 + 1998: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -14,-41 + 1999: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -18,-46 + 2000: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -20,-45 + 2001: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -23,-46 + 2002: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -25,-46 + 2003: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -27,-45 + 2004: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -30,-46 + 2005: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -32,-45 + 2015: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -15,-46 + 2016: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -8,-45 + 2017: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -5,-46 + 2018: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -1,-45 + 2113: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -3,-46 + 2114: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -6,-45 + 2115: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -8,-45 + 2116: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -10,-46 + 2117: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -13,-44 + 2118: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -12,-48 + 2119: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -10,-48 + 2120: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -8,-48 + 2121: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -12,-49 + 2122: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -11,-52 + 2123: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -12,-52 + 2124: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -12,-55 + 2125: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -12,-57 + 2126: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -9,-57 + 2127: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -6,-56 + 2128: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -4,-55 + 2129: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -3,-55 + 2130: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -3,-56 + 2131: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -6,-56 + 2132: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -7,-60 + 2133: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -7,-60 + 2134: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -7,-63 + 2135: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -6,-64 + 2136: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -6,-62 + 2137: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -6,-59 + 2159: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -22,-60 + 2160: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -26,-60 + 2161: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -30,-60 + 2184: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -30,-56 + 2185: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -29,-56 + 2186: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -30,-57 + 2187: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -29,-57 + 2197: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -32,-46 + 2198: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -29,-44 + 2199: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -26,-45 + 2200: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -21,-44 + 2201: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -11,-45 + 2202: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -9,-45 + 2203: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -6,-46 + 2204: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -4,-45 + 2205: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -2,-45 + 2268: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -14,-42 + 2269: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,-40 + 2270: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,-36 + 2271: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -16,-33 + 2420: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -14,-33 + 2578: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -6,-46 + 2579: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -6,-46 + 2580: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -25,-47 + 2581: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -25,-47 + 2636: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -14,-35 + 2637: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -16,-36 + 2638: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -16,-36 + 2643: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -15,-44 + 2644: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -14,-44 + 2645: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -16,-44 + 2646: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -13,-47 + 2647: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -12,-47 + 2648: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -8,-47 + 2705: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -20,-44 + 2706: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -18,-46 + 2707: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -17,-46 + 2734: + cleanable: True + color: '#A4610696' + id: DirtMedium + coordinates: -8,-49 + 2735: + cleanable: True + color: '#A4610696' + id: DirtMedium + coordinates: -8,-55 + 2736: + cleanable: True + color: '#A4610696' + id: DirtMedium + coordinates: -6,-62 + 2739: + cleanable: True + color: '#A4610696' + id: DirtMedium + coordinates: -26,-44 + 2740: + cleanable: True + color: '#A4610696' + id: DirtMedium + coordinates: -4,-46 + 2741: + cleanable: True + color: '#A4610696' + id: DirtMedium + coordinates: -1,-46 + 2742: + cleanable: True + color: '#A4610696' + id: DirtMedium + coordinates: -1,-47 + 2767: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -18,-33 + 2794: + color: '#FFFFFFFF' + id: WarnCornerSW + coordinates: -1,-36 + 2795: + color: '#FFFFFFFF' + id: WarnCornerNW + coordinates: -1,-35 + 2796: + color: '#FFFFFFFF' + id: WarnCornerSE + coordinates: -10,-36 + 2797: + color: '#FFFFFFFF' + id: WarnCornerNE + coordinates: -10,-35 + 2798: + color: '#F9801DFF' + id: Dirt + coordinates: -8,-35 + 2799: + color: '#F9801DFF' + id: Dirt + coordinates: -7,-34 + 2800: + color: '#F9801DFF' + id: Dirt + coordinates: -9,-35 + 2801: + color: '#F9801DFF' + id: Dirt + coordinates: -8,-34 + 2802: + color: '#F9801DFF' + id: Dirt + coordinates: -6,-34 + 2803: + color: '#F9801DFF' + id: Dirt + coordinates: -5,-34 + 2804: + color: '#F9801DFF' + id: Dirt + coordinates: -4,-34 + 2805: + color: '#F9801DFF' + id: Dirt + coordinates: -4,-35 + 2806: + color: '#F9801DFF' + id: Dirt + coordinates: -3,-35 + 2807: + color: '#F9801DFF' + id: Dirt + coordinates: -2,-35 + 2808: + color: '#F9801D98' + id: Dirt + coordinates: -10,-34 + 2811: + color: '#F9801D98' + id: Dirt + coordinates: -2,-34 + 2814: + color: '#F9801D98' + id: Dirt + coordinates: -7,-33 + 2817: + color: '#F9801D98' + id: Dirt + coordinates: -1,-33 + 2818: + color: '#F9801D98' + id: Dirt + coordinates: -2,-33 + 2819: + color: '#FFFFFFFF' + id: Rust + coordinates: -9,-35 + 2820: + color: '#FFFFFFFF' + id: Rust + coordinates: -8,-35 + 2821: + color: '#FFFFFFFF' + id: Rust + coordinates: -8,-34 + 2822: + color: '#FFFFFFFF' + id: Rust + coordinates: -7,-34 + 2823: + color: '#FFFFFFFF' + id: Rust + coordinates: -6,-34 + 2824: + color: '#FFFFFFFF' + id: Rust + coordinates: -5,-34 + 2825: + color: '#FFFFFFFF' + id: Rust + coordinates: -4,-34 + 2826: + color: '#FFFFFFFF' + id: Rust + coordinates: -4,-35 + 2827: + color: '#FFFFFFFF' + id: Rust + coordinates: -3,-35 + 2828: + color: '#FFFFFFFF' + id: Rust + coordinates: -2,-35 + 2830: + color: '#FFFFFFFF' + id: Basalt3 + coordinates: -2,-34 + 0,-2: + 44: + color: '#EFB34196' + id: StandClear + coordinates: 18,-40 + 45: + color: '#EFB34196' + id: StandClear + coordinates: 17,-40 + 144: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + coordinates: 6,-46 + 145: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + coordinates: 5,-46 + 146: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + coordinates: 4,-46 + 147: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + coordinates: 3,-46 + 148: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + coordinates: 2,-46 + 149: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + coordinates: 1,-46 + 217: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + coordinates: 8,-36 + 218: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + coordinates: 7,-36 + 219: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + coordinates: 7,-41 + 220: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + coordinates: 8,-41 + 221: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + coordinates: 9,-41 + 222: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + coordinates: 9,-40 + 223: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + coordinates: 9,-41 + 224: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + coordinates: 9,-39 + 225: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + coordinates: 9,-38 + 226: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + coordinates: 9,-37 + 227: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + coordinates: 9,-36 + 231: + color: '#A4610696' + id: MiniTileCheckerBOverlay + coordinates: 8,-33 + 232: + color: '#A4610696' + id: MiniTileCheckerBOverlay + coordinates: 9,-33 + 233: + color: '#A4610696' + id: MiniTileCheckerBOverlay + coordinates: 10,-33 + 234: + color: '#A4610696' + id: MiniTileCheckerBOverlay + coordinates: 8,-34 + 235: + color: '#A4610696' + id: MiniTileCheckerBOverlay + coordinates: 9,-34 + 236: + color: '#A4610696' + id: MiniTileCheckerBOverlay + coordinates: 10,-34 + 237: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + coordinates: 8,-34 + 239: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + coordinates: 10,-34 + 241: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: 9,-34 + 242: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: 10,-33 + 243: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: 8,-33 + 245: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + coordinates: 11,-43 + 246: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + coordinates: 14,-40 + 247: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + coordinates: 14,-43 + 248: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + coordinates: 11,-40 + 249: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: 12,-40 + 250: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: 13,-40 + 251: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: 14,-41 + 252: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: 14,-42 + 253: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: 13,-43 + 254: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: 12,-43 + 255: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: 11,-42 + 256: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: 11,-41 + 257: + color: '#A4610696' + id: BrickTileWhiteCornerNe + coordinates: 14,-40 + 258: + color: '#A4610696' + id: BrickTileWhiteCornerSe + coordinates: 14,-43 + 259: + color: '#A4610696' + id: BrickTileWhiteCornerSw + coordinates: 11,-43 + 260: + color: '#A4610696' + id: BrickTileWhiteCornerNw + coordinates: 11,-40 + 261: + color: '#A4610696' + id: BrickTileWhiteLineS + coordinates: 12,-43 + 262: + color: '#A4610696' + id: BrickTileWhiteLineS + coordinates: 13,-43 + 263: + color: '#A4610696' + id: BrickTileWhiteLineE + coordinates: 14,-42 + 264: + color: '#A4610696' + id: BrickTileWhiteLineE + coordinates: 14,-41 + 265: + color: '#A4610696' + id: BrickTileWhiteLineW + coordinates: 11,-42 + 266: + color: '#A4610696' + id: BrickTileWhiteLineW + coordinates: 11,-41 + 267: + color: '#A4610696' + id: BrickTileWhiteLineN + coordinates: 12,-40 + 268: + color: '#A4610696' + id: BrickTileWhiteLineN + coordinates: 13,-40 + 269: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: 11,-38 + 270: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: 12,-38 + 271: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: 13,-38 + 272: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: 14,-38 + 273: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: 15,-38 + 274: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + coordinates: 16,-39 + 275: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + coordinates: 16,-38 + 276: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 11,-36 + 277: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNw + coordinates: 12,-36 + 278: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: 12,-35 + 279: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + coordinates: 12,-34 + 280: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + coordinates: 13,-34 + 281: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNe + coordinates: 13,-35 + 282: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 14,-35 + 283: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 15,-35 + 284: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 16,-35 + 285: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 17,-35 + 286: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 18,-35 + 287: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: 19,-35 + 288: + color: '#A4610696' + id: BrickTileWhiteLineS + coordinates: 11,-38 + 289: + color: '#A4610696' + id: BrickTileWhiteLineS + coordinates: 12,-38 + 290: + color: '#A4610696' + id: BrickTileWhiteLineS + coordinates: 13,-38 + 291: + color: '#A4610696' + id: BrickTileWhiteLineS + coordinates: 14,-38 + 292: + color: '#A4610696' + id: BrickTileWhiteLineS + coordinates: 15,-38 + 293: + color: '#A4610696' + id: BrickTileWhiteInnerSw + coordinates: 16,-38 + 294: + color: '#A4610696' + id: BrickTileWhiteCornerSw + coordinates: 16,-39 + 295: + color: '#A4610696' + id: BrickTileWhiteInnerNw + coordinates: 12,-36 + 296: + color: '#A4610696' + id: BrickTileWhiteLineN + coordinates: 11,-36 + 297: + color: '#A4610696' + id: BrickTileWhiteLineW + coordinates: 12,-35 + 298: + color: '#A4610696' + id: BrickTileWhiteCornerNw + coordinates: 12,-34 + 299: + color: '#A4610696' + id: BrickTileWhiteCornerNe + coordinates: 13,-34 + 300: + color: '#A4610696' + id: BrickTileWhiteInnerNe + coordinates: 13,-35 + 301: + color: '#A4610696' + id: BrickTileWhiteLineN + coordinates: 14,-35 + 302: + color: '#A4610696' + id: BrickTileWhiteLineN + coordinates: 15,-35 + 303: + color: '#A4610696' + id: BrickTileWhiteLineN + coordinates: 16,-35 + 304: + color: '#A4610696' + id: BrickTileWhiteLineN + coordinates: 17,-35 + 305: + color: '#A4610696' + id: BrickTileWhiteLineN + coordinates: 18,-35 + 306: + color: '#A4610696' + id: BrickTileWhiteLineN + coordinates: 19,-35 + 307: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + coordinates: 6,-39 + 308: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + coordinates: 6,-40 + 309: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + coordinates: 6,-38 + 310: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + coordinates: 6,-37 + 311: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + coordinates: 8,-40 + 312: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + coordinates: 8,-39 + 313: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + coordinates: 8,-38 + 314: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + coordinates: 8,-37 + 1121: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + coordinates: 18,-35 + 1122: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + coordinates: 18,-39 + 1123: + color: '#FFFFFFFF' + id: Box + coordinates: 16,-36 + 1124: + color: '#FFFFFFFF' + id: Box + coordinates: 16,-37 + 1125: + color: '#FFFFFFFF' + id: Box + coordinates: 15,-36 + 1126: + color: '#FFFFFFFF' + id: Box + coordinates: 15,-37 + 1127: + color: '#FFFFFFFF' + id: Delivery + coordinates: 17,-36 + 1128: + color: '#FFFFFFFF' + id: Delivery + coordinates: 17,-37 + 1129: + color: '#FFFFFFFF' + id: Box + coordinates: 16,-41 + 1130: + color: '#FFFFFFFF' + id: Box + coordinates: 16,-42 + 1131: + color: '#FFFFFFFF' + id: Box + coordinates: 16,-43 + 1132: + color: '#FFFFFFFF' + id: Box + coordinates: 16,-44 + 1133: + color: '#FFFFFFFF' + id: Box + coordinates: 19,-41 + 1134: + color: '#FFFFFFFF' + id: Box + coordinates: 19,-42 + 1135: + color: '#FFFFFFFF' + id: Box + coordinates: 19,-43 + 1136: + color: '#FFFFFFFF' + id: Box + coordinates: 19,-44 + 1195: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: 2,-48 + 1196: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: 2,-49 + 1197: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: 2,-50 + 1198: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: 2,-51 + 1199: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: 2,-52 + 1200: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: 7,-48 + 1201: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: 7,-49 + 1202: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: 6,-50 + 1203: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: 6,-51 + 1204: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: 6,-52 + 1205: + color: '#A4610696' + id: BrickTileWhiteLineW + coordinates: 2,-48 + 1206: + color: '#A4610696' + id: BrickTileWhiteLineW + coordinates: 2,-49 + 1207: + color: '#A4610696' + id: BrickTileWhiteLineW + coordinates: 2,-50 + 1208: + color: '#A4610696' + id: BrickTileWhiteLineW + coordinates: 2,-51 + 1209: + color: '#A4610696' + id: BrickTileWhiteLineW + coordinates: 2,-52 + 1210: + color: '#A4610696' + id: BrickTileWhiteLineE + coordinates: 7,-48 + 1211: + color: '#A4610696' + id: BrickTileWhiteLineE + coordinates: 7,-49 + 1212: + color: '#A4610696' + id: BrickTileWhiteLineE + coordinates: 6,-50 + 1213: + color: '#A4610696' + id: BrickTileWhiteLineE + coordinates: 6,-51 + 1214: + color: '#A4610696' + id: BrickTileWhiteLineE + coordinates: 6,-52 + 1227: + color: '#FFFFFFFF' + id: Bot + coordinates: 4,-51 + 1388: + color: '#EFB34196' + id: Bot + coordinates: 4,-40 + 1389: + color: '#EFB34196' + id: Bot + coordinates: 13,-34 + 1546: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 5,-34 + 1547: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 6,-36 + 1548: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 4,-39 + 1549: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 6,-40 + 1550: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 4,-42 + 1551: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 1,-38 + 1552: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 1,-33 + 1553: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 2,-34 + 1554: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 8,-37 + 1555: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 8,-39 + 1556: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 12,-36 + 1557: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 15,-36 + 1558: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 16,-35 + 1559: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 17,-38 + 1560: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 18,-36 + 1561: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 11,-40 + 1562: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 14,-41 + 1563: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 12,-42 + 1564: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 18,-43 + 1565: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 17,-41 + 1566: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 18,-42 + 1567: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 17,-44 + 1568: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 18,-47 + 1569: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 14,-48 + 1570: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 10,-48 + 1571: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 9,-46 + 1572: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 10,-45 + 1573: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 5,-51 + 1574: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 2,-50 + 1575: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 3,-49 + 1576: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 6,-48 + 1667: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 4,-44 + 1695: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 4,-44 + 1696: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 5,-40 + 1697: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 19,-38 + 1698: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 19,-36 + 1699: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 16,-37 + 1700: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 17,-37 + 1701: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 17,-42 + 1702: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 18,-41 + 1703: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 18,-43 + 1704: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 17,-44 + 1705: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 17,-44 + 1706: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 17,-41 + 1707: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 20,-41 + 1708: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 12,-38 + 1709: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 6,-34 + 1795: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 18,-33 + 1800: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 10,-46 + 1801: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 10,-45 + 1802: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 9,-45 + 1803: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 6,-51 + 1804: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 5,-51 + 1805: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 4,-49 + 1806: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 3,-49 + 1807: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 5,-48 + 1808: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 6,-48 + 1809: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 6,-49 + 1810: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 5,-50 + 1811: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 4,-49 + 1812: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 3,-49 + 1813: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 5,-48 + 1814: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 6,-48 + 1815: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 5,-50 + 1816: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 4,-50 + 1817: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 2,-54 + 1818: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 3,-54 + 1819: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 4,-54 + 1820: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 5,-54 + 1821: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 6,-54 + 1822: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 5,-54 + 1823: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 3,-54 + 1824: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 3,-55 + 1825: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 3,-55 + 1826: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 2,-55 + 1827: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 2,-55 + 1828: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 3,-54 + 2019: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 1,-46 + 2020: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 4,-45 + 2021: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 6,-44 + 2022: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 6,-41 + 2023: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 8,-39 + 2024: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 9,-38 + 2025: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 9,-37 + 2026: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 8,-40 + 2027: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 4,-36 + 2028: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 6,-33 + 2039: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 17,-38 + 2040: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 18,-37 + 2041: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 18,-36 + 2042: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 17,-36 + 2043: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 13,-35 + 2044: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 14,-37 + 2045: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 12,-38 + 2046: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 13,-40 + 2047: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 12,-41 + 2048: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 12,-42 + 2049: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 13,-42 + 2050: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 11,-40 + 2051: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 17,-43 + 2052: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 17,-44 + 2053: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 18,-44 + 2054: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 18,-44 + 2055: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 18,-42 + 2056: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 19,-41 + 2057: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 18,-39 + 2058: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 15,-36 + 2102: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 6,-36 + 2103: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 5,-46 + 2104: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 3,-46 + 2105: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 0,-45 + 2106: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 4,-48 + 2107: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 4,-49 + 2108: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 5,-50 + 2109: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 5,-51 + 2110: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 6,-51 + 2111: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 6,-49 + 2112: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 3,-48 + 2206: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 3,-45 + 2207: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 4,-45 + 2208: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 6,-44 + 2209: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 3,-48 + 2210: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 4,-50 + 2211: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,-51 + 2212: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,-51 + 2213: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 6,-49 + 2214: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 7,-49 + 2215: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 6,-51 + 2216: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,-52 + 2217: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,-52 + 2218: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 3,-49 + 2219: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 10,-46 + 2220: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 11,-47 + 2221: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 10,-46 + 2222: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 11,-46 + 2223: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 13,-45 + 2224: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,-45 + 2225: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,-46 + 2226: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 11,-46 + 2227: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 12,-47 + 2228: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 15,-47 + 2229: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 18,-47 + 2230: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 18,-43 + 2231: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 17,-42 + 2232: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 18,-41 + 2233: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 19,-42 + 2234: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 19,-44 + 2235: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 18,-44 + 2236: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 17,-44 + 2237: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 17,-44 + 2238: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 17,-42 + 2239: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 17,-41 + 2240: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 17,-41 + 2241: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 16,-41 + 2242: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 13,-41 + 2243: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 12,-41 + 2244: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 12,-41 + 2245: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 12,-42 + 2246: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 11,-41 + 2247: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 12,-38 + 2248: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,-36 + 2249: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 15,-37 + 2250: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 17,-38 + 2251: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 18,-36 + 2252: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 18,-35 + 2253: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 19,-38 + 2254: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,-38 + 2255: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 8,-36 + 2256: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 8,-38 + 2257: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 8,-40 + 2258: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 4,-36 + 2259: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 5,-33 + 2577: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 2,-46 + 2631: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 4,-35 + 2632: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 2,-35 + 2633: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 1,-35 + 2634: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 1,-36 + 2635: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 2,-36 + 2649: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 6,-45 + 2650: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 7,-41 + 2651: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 9,-40 + 2652: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 9,-41 + 2653: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 13,-38 + 2654: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 14,-38 + 2655: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 18,-40 + 2656: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 17,-40 + 2708: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 16,-35 + 2709: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 16,-35 + -1,-3: + 46: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -8,-73 + 47: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -8,-74 + 48: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -8,-75 + 49: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -8,-76 + 50: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -8,-77 + 51: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -8,-78 + 52: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale270 + coordinates: -8,-79 + 53: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -7,-79 + 54: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -6,-79 + 55: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -5,-79 + 56: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -4,-79 + 57: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -3,-79 + 58: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -8,-73 + 59: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -8,-74 + 60: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -8,-75 + 61: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -8,-76 + 62: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -8,-77 + 63: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -8,-78 + 64: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + coordinates: -8,-79 + 65: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -7,-79 + 66: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -6,-79 + 67: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -5,-79 + 68: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -4,-79 + 69: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -3,-79 + 70: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + coordinates: -2,-79 + 71: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -2,-79 + 72: + color: '#FFFFFFFF' + id: WarnLineE + coordinates: -6,-74 + 73: + color: '#FFFFFFFF' + id: WarnLineE + coordinates: -6,-75 + 74: + color: '#FFFFFFFF' + id: WarnLineE + coordinates: -6,-76 + 75: + color: '#FFFFFFFF' + id: WarnCornerNE + coordinates: -6,-73 + 76: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: -7,-73 + 77: + color: '#FFFFFFFF' + id: WarnLineN + coordinates: -7,-71 + 78: + color: '#FFFFFFFF' + id: WarnLineN + coordinates: -6,-71 + 79: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: -7,-70 + 80: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: -6,-70 + 81: + color: '#D381C996' + id: StandClearGreyscale + coordinates: -7,-69 + 82: + color: '#D381C996' + id: StandClearGreyscale + coordinates: -6,-69 + 83: + color: '#D381C996' + id: StandClearGreyscale + coordinates: -7,-72 + 84: + color: '#D381C996' + id: StandClearGreyscale + coordinates: -6,-72 + 85: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + coordinates: -5,-70 + 86: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + coordinates: -5,-71 + 87: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -8,-70 + 88: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + coordinates: -8,-71 + 89: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -8,-70 + 90: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -8,-71 + 91: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -5,-70 + 92: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -5,-71 + 105: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + coordinates: -6,-77 + 106: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: -5,-77 + 107: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: -4,-77 + 108: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + coordinates: -3,-77 + 109: + color: '#FFFFFFFF' + id: WarnLineS + coordinates: -3,-76 + 110: + color: '#FFFFFFFF' + id: WarnLineS + coordinates: -3,-75 + 111: + color: '#FFFFFFFF' + id: WarnLineS + coordinates: -3,-74 + 112: + color: '#FFFFFFFF' + id: WarnLineS + coordinates: -3,-73 + 119: + color: '#FFFFFFFF' + id: WarnLineE + coordinates: -2,-71 + 120: + color: '#FFFFFFFF' + id: WarnLineE + coordinates: -2,-73 + 127: + color: '#D381C996' + id: StandClearGreyscale + coordinates: -1,-81 + 128: + color: '#D381C996' + id: StandClearGreyscale + coordinates: -1,-82 + 129: + color: '#D381C996' + id: StandClearGreyscale + coordinates: -1,-73 + 130: + color: '#D381C996' + id: StandClearGreyscale + coordinates: -1,-71 + 1109: + color: '#D381C996' + id: StandClearGreyscale + coordinates: -7,-83 + 1110: + color: '#D381C996' + id: StandClearGreyscale + coordinates: -3,-83 + 1678: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -6,-71 + 1679: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -3,-72 + 1680: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -2,-75 + 1681: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -2,-77 + 1683: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -2,-77 + 1684: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -5,-77 + 1685: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -6,-77 + 1686: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -5,-78 + 1687: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -5,-78 + 1688: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -5,-78 + 1689: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -1,-77 + 1693: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -3,-74 + 2138: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -7,-71 + 2139: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -6,-70 + 2140: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -7,-75 + 2141: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -6,-74 + 2142: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -7,-76 + 2143: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -7,-77 + 2144: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -6,-78 + 2145: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -5,-78 + 2146: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -4,-77 + 2147: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -2,-77 + 2150: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -2,-78 + 2151: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -3,-75 + 2152: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -2,-71 + 2153: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -3,-72 + 2154: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -3,-73 + 2158: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -3,-77 + 2788: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -12,-77 + 2789: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -11,-77 + 2790: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -10,-77 + 2791: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: -12,-75 + 2792: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: -11,-75 + 2793: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: -10,-75 + 0,-3: + 113: + color: '#FFFFFFFF' + id: WarnLineN + coordinates: 0,-78 + 114: + color: '#FFFFFFFF' + id: WarnLineN + coordinates: 1,-78 + 115: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: 0,-80 + 116: + color: '#FFFFFFFF' + id: WarnLineW + coordinates: 1,-80 + 117: + color: '#FFFFFFFF' + id: WarnLineS + coordinates: 0,-81 + 118: + color: '#FFFFFFFF' + id: WarnLineS + coordinates: 0,-82 + 121: + color: '#FFFFFFFF' + id: WarnLineS + coordinates: 0,-73 + 122: + color: '#FFFFFFFF' + id: WarnLineS + coordinates: 0,-71 + 123: + color: '#FFFFFFFF' + id: WarnLineE + coordinates: 1,-73 + 124: + color: '#FFFFFFFF' + id: WarnLineE + coordinates: 1,-71 + 125: + color: '#D381C996' + id: StandClearGreyscale + coordinates: 0,-79 + 126: + color: '#D381C996' + id: StandClearGreyscale + coordinates: 1,-79 + 1682: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 0,-77 + 1690: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 1,-77 + 1691: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 1,-80 + 1692: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 1,-82 + 2148: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 0,-77 + 2149: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 0,-77 + 2155: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 1,-81 + 2156: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 0,-82 + 2157: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 1,-82 + 2737: + cleanable: True + color: '#A4610696' + id: DirtMedium + coordinates: 0,-80 + 2738: + cleanable: True + color: '#A4610696' + id: DirtMedium + coordinates: 1,-82 + -2,-1: + 653: + color: '#52B4E996' + id: MiniTileCheckerAOverlay + coordinates: -40,-18 + 654: + color: '#52B4E996' + id: MiniTileCheckerAOverlay + coordinates: -40,-19 + 655: + color: '#52B4E996' + id: MiniTileCheckerAOverlay + coordinates: -39,-18 + 656: + color: '#52B4E996' + id: MiniTileCheckerAOverlay + coordinates: -39,-19 + 657: + color: '#52B4E996' + id: MiniTileCheckerAOverlay + coordinates: -38,-18 + 658: + color: '#52B4E996' + id: MiniTileCheckerAOverlay + coordinates: -38,-19 + 659: + color: '#52B4E996' + id: MiniTileCheckerAOverlay + coordinates: -37,-18 + 660: + color: '#52B4E996' + id: MiniTileCheckerAOverlay + coordinates: -37,-19 + 661: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + coordinates: -37,-19 + 662: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + coordinates: -40,-18 + 663: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + coordinates: -37,-18 + 664: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + coordinates: -40,-19 + 665: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -39,-19 + 666: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + coordinates: -38,-19 + 667: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -39,-18 + 668: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + coordinates: -38,-18 + 714: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -33,-23 + 715: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -34,-23 + 716: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -35,-23 + 717: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -36,-23 + 718: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -37,-23 + 719: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -39,-23 + 720: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -40,-23 + 721: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -40,-21 + 722: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -39,-21 + 723: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -38,-21 + 724: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -37,-21 + 725: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -36,-21 + 726: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -35,-21 + 727: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -34,-21 + 728: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + coordinates: -33,-21 + 745: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -40,-23 + 746: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -39,-23 + 747: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -37,-23 + 748: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -36,-23 + 749: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -35,-23 + 750: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -34,-23 + 751: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -33,-23 + 780: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -33,-21 + 781: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -34,-21 + 782: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -35,-21 + 783: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -36,-21 + 784: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -37,-21 + 785: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -38,-21 + 786: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -39,-21 + 787: + color: '#52B4E996' + id: BrickTileWhiteLineN + coordinates: -40,-21 + 788: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + coordinates: -33,-19 + 789: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + coordinates: -33,-18 + 790: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + coordinates: -33,-17 + 791: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + coordinates: -33,-16 + 792: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + coordinates: -33,-15 + 793: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: -35,-19 + 794: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: -35,-18 + 795: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: -35,-17 + 796: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: -35,-16 + 797: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + coordinates: -35,-15 + 798: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + coordinates: -35,-19 + 799: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + coordinates: -35,-18 + 800: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + coordinates: -35,-17 + 801: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + coordinates: -35,-16 + 802: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + coordinates: -35,-15 + 803: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + coordinates: -33,-19 + 804: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + coordinates: -33,-18 + 805: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + coordinates: -33,-17 + 806: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + coordinates: -33,-16 + 807: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + coordinates: -33,-15 + 836: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -39,-11 + 837: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -38,-11 + 838: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -37,-11 + 839: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -36,-11 + 840: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -35,-11 + 841: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -34,-11 + 842: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + coordinates: -33,-11 + 852: + color: '#FFFFFFFF' + id: WarnLineN + coordinates: -35,-8 + 853: + color: '#FFFFFFFF' + id: WarnLineN + coordinates: -33,-8 + 854: + color: '#FFFFFFFF' + id: WarnLineS + coordinates: -34,-9 + 855: + color: '#FFFFFFFF' + id: WarnLineE + coordinates: -34,-9 + 856: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + coordinates: -34,-8 + 857: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + coordinates: -34,-8 + 858: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -39,-6 + 859: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -39,-7 + 860: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -39,-8 + 861: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -39,-9 + 862: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -37,-8 + 863: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -37,-9 + 864: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -37,-6 + 865: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + coordinates: -37,-7 + 866: + color: '#EFB34196' + id: BrickTileWhiteLineE + coordinates: -37,-6 + 867: + color: '#EFB34196' + id: BrickTileWhiteLineE + coordinates: -37,-7 + 868: + color: '#EFB34196' + id: BrickTileWhiteLineE + coordinates: -37,-8 + 869: + color: '#EFB34196' + id: BrickTileWhiteLineE + coordinates: -37,-9 + 870: + color: '#EFB34196' + id: BrickTileWhiteLineW + coordinates: -39,-6 + 871: + color: '#EFB34196' + id: BrickTileWhiteLineW + coordinates: -39,-7 + 872: + color: '#EFB34196' + id: BrickTileWhiteLineW + coordinates: -39,-8 + 873: + color: '#EFB34196' + id: BrickTileWhiteLineW + coordinates: -39,-9 + 874: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -39,-5 + 875: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -38,-5 + 876: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -37,-5 + 877: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -36,-5 + 878: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -35,-5 + 879: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -34,-5 + 880: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -33,-5 + 881: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -39,-2 + 882: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -38,-2 + 883: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -37,-2 + 884: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -36,-2 + 885: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -35,-2 + 886: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -34,-2 + 921: + color: '#EFB34196' + id: BrickTileWhiteLineN + coordinates: -39,-2 + 922: + color: '#EFB34196' + id: BrickTileWhiteLineN + coordinates: -38,-2 + 923: + color: '#EFB34196' + id: BrickTileWhiteLineN + coordinates: -37,-2 + 924: + color: '#EFB34196' + id: BrickTileWhiteLineN + coordinates: -36,-2 + 925: + color: '#EFB34196' + id: BrickTileWhiteLineN + coordinates: -35,-2 + 926: + color: '#EFB34196' + id: BrickTileWhiteLineN + coordinates: -34,-2 + 1005: + color: '#EFB34196' + id: BrickTileWhiteLineS + coordinates: -39,-5 + 1006: + color: '#EFB34196' + id: BrickTileWhiteLineS + coordinates: -38,-5 + 1007: + color: '#EFB34196' + id: BrickTileWhiteLineS + coordinates: -37,-5 + 1008: + color: '#EFB34196' + id: BrickTileWhiteLineS + coordinates: -36,-5 + 1009: + color: '#EFB34196' + id: BrickTileWhiteLineS + coordinates: -35,-5 + 1010: + color: '#EFB34196' + id: BrickTileWhiteLineS + coordinates: -34,-5 + 1011: + color: '#EFB34196' + id: BrickTileWhiteLineS + coordinates: -33,-5 + 1137: + color: '#9FED5896' + id: Grassa2 + coordinates: -62,-13 + 1138: + color: '#9FED5896' + id: Grassa2 + coordinates: -60,-13 + 1139: + color: '#9FED5896' + id: Grassa2 + coordinates: -61,-13 + 1140: + color: '#9FED5896' + id: Damaged + coordinates: -62,-13 + 1141: + color: '#9FED5896' + id: Damaged + coordinates: -60,-13 + 1142: + color: '#9FED5896' + id: Damaged + coordinates: -61,-13 + 1143: + color: '#FFFFFFFF' + id: Flowerspv3 + coordinates: -62,-13 + 1144: + color: '#FFFFFFFF' + id: Flowersbr1 + coordinates: -61,-13 + 1145: + color: '#FFFFFFFF' + id: Flowerspv1 + coordinates: -60,-13 + 1146: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + coordinates: -59,-12 + 1147: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + coordinates: -59,-14 + 1148: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + coordinates: -63,-12 + 1149: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + coordinates: -63,-14 + 1150: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -62,-12 + 1151: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -61,-12 + 1152: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -60,-12 + 1153: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -62,-14 + 1154: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -61,-14 + 1155: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -60,-14 + 1156: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: -63,-13 + 1157: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: -59,-13 + 1266: + color: '#52B4E9CB' + id: MiniTileCheckerAOverlay + coordinates: -54,-16 + 1267: + color: '#52B4E9CB' + id: MiniTileCheckerAOverlay + coordinates: -53,-16 + 1268: + color: '#52B4E9CB' + id: MiniTileCheckerAOverlay + coordinates: -52,-16 + 1269: + color: '#52B4E9CB' + id: MiniTileCheckerAOverlay + coordinates: -51,-16 + 1270: + color: '#52B4E9CB' + id: MiniTileCheckerAOverlay + coordinates: -51,-17 + 1271: + color: '#52B4E9CB' + id: MiniTileCheckerAOverlay + coordinates: -52,-17 + 1272: + color: '#52B4E9CB' + id: MiniTileCheckerAOverlay + coordinates: -53,-17 + 1273: + color: '#52B4E9CB' + id: MiniTileCheckerAOverlay + coordinates: -54,-17 + 1274: + color: '#52B4E9CB' + id: MiniTileCheckerAOverlay + coordinates: -54,-18 + 1275: + color: '#52B4E9CB' + id: MiniTileCheckerAOverlay + coordinates: -53,-18 + 1276: + color: '#52B4E9CB' + id: MiniTileCheckerAOverlay + coordinates: -52,-18 + 1277: + color: '#52B4E9CB' + id: MiniTileCheckerAOverlay + coordinates: -51,-18 + 1278: + color: '#52B4E9CB' + id: MiniTileCheckerAOverlay + coordinates: -52,-19 + 1279: + color: '#52B4E9CB' + id: MiniTileCheckerAOverlay + coordinates: -53,-19 + 1280: + color: '#52B4E9CB' + id: MiniTileCheckerAOverlay + coordinates: -54,-19 + 1281: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + coordinates: -54,-16 + 1282: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: -54,-17 + 1283: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + coordinates: -54,-18 + 1284: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + coordinates: -54,-19 + 1285: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -53,-19 + 1286: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -52,-19 + 1287: + color: '#52B4E9CB' + id: MiniTileCheckerAOverlay + coordinates: -51,-19 + 1288: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + coordinates: -51,-19 + 1289: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + coordinates: -51,-19 + 1290: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: -51,-18 + 1291: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + coordinates: -51,-17 + 1292: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + coordinates: -51,-16 + 1293: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -52,-16 + 1294: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -53,-16 + 1379: + color: '#EFB34196' + id: Bot + coordinates: -33,-1 + 1380: + color: '#EFB34196' + id: Bot + coordinates: -41,-10 + 1381: + color: '#EFB34196' + id: Bot + coordinates: -58,-15 + 1382: + color: '#EFB34196' + id: Bot + coordinates: -40,-22 + 1440: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -37,-4 + 1446: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -37,-13 + 1447: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -46,-12 + 1448: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -51,-13 + 1449: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -58,-12 + 1450: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -64,-14 + 1451: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -60,-17 + 1452: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -58,-14 + 1453: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -52,-15 + 1454: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -53,-19 + 1455: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -51,-19 + 1456: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -47,-16 + 1457: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -38,-12 + 1458: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -34,-13 + 1459: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -34,-17 + 1462: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -35,-23 + 1463: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -39,-22 + 1592: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -43,-31 + 1594: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -48,-25 + 1595: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -47,-25 + 1596: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -52,-19 + 1597: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -52,-16 + 1598: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -47,-18 + 1599: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -53,-15 + 1600: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -38,-13 + 1606: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -37,-4 + 1607: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -38,-3 + 1616: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -37,-23 + 1618: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -35,-18 + 1619: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -34,-18 + 1620: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -33,-16 + 1621: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -34,-16 + 1835: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -58,-32 + 1836: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -57,-32 + 1837: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -59,-32 + 1844: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -57,-32 + 1846: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -54,-32 + 1847: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -53,-32 + 1848: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -52,-32 + 1854: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -53,-32 + 1855: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -54,-32 + 1866: + cleanable: True + color: '#A461067F' + id: Dirt + coordinates: -52,-32 + 1870: + cleanable: True + color: '#A461067F' + id: Dirt + coordinates: -53,-32 + 1874: + cleanable: True + color: '#A461067F' + id: DirtHeavy + coordinates: -53,-31 + 1880: + cleanable: True + color: '#A461067F' + id: Damaged + coordinates: -58,-32 + 1881: + cleanable: True + color: '#A461067F' + id: Damaged + coordinates: -48,-25 + 1882: + cleanable: True + color: '#A461067F' + id: Damaged + coordinates: -45,-15 + 1938: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -35,-13 + 1939: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -38,-11 + 1940: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -40,-13 + 1941: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -43,-12 + 1942: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -45,-13 + 1943: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -50,-12 + 1944: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -52,-12 + 1945: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -53,-12 + 1946: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -55,-12 + 1947: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -56,-12 + 1948: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -58,-13 + 1949: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -60,-12 + 1950: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -63,-12 + 1951: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -64,-12 + 1952: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -64,-13 + 1953: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -63,-14 + 1954: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -62,-15 + 1955: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -59,-14 + 1956: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -55,-15 + 1957: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -51,-15 + 1958: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -51,-19 + 1959: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -53,-17 + 1960: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -50,-16 + 1961: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -53,-16 + 1962: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -54,-19 + 1963: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -55,-20 + 1964: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -52,-19 + 1965: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -53,-16 + 1966: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -47,-16 + 1967: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -48,-17 + 1968: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -46,-18 + 1969: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -45,-17 + 1970: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -33,-23 + 2177: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -43,-32 + 2178: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -43,-31 + 2179: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -44,-30 + 2190: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -43,-30 + 2417: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -39,-22 + 2467: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -37,-3 + 2468: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -38,-4 + 2469: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -39,-5 + 2470: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -34,-3 + 2539: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -37,-12 + 2540: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -39,-12 + 2541: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -41,-13 + 2542: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -36,-3 + 2543: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -35,-2 + 2544: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -35,-4 + 2545: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -36,-4 + 2663: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -38,-5 + 2664: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -39,-2 + 2665: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -38,-3 + 2675: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -47,-13 + 2676: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -51,-13 + 2677: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -54,-13 + 2678: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -54,-15 + 2679: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -51,-15 + 2680: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -57,-11 + 2681: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -59,-11 + 2692: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -57,-12 + 2693: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -54,-20 + 2694: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -42,-14 + 2695: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -42,-10 + 2696: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -33,-13 + 2730: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -44,-32 + 2731: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -44,-30 + 2732: + cleanable: True + color: '#A4610696' + id: DirtMedium + coordinates: -44,-30 + 2746: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + coordinates: -38,-23 + 2747: + color: '#52B4E996' + id: BrickTileWhiteLineS + coordinates: -38,-23 + -2,-2: + 742: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -51,-44 + 743: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -51,-45 + 744: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + coordinates: -51,-46 + 1193: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + coordinates: -35,-47 + 1194: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + coordinates: -33,-47 + 1356: + color: '#334E6DC8' + id: BrickTileWhiteLineW + coordinates: -51,-46 + 1357: + color: '#334E6DC8' + id: BrickTileWhiteLineW + coordinates: -51,-45 + 1358: + color: '#334E6DC8' + id: BrickTileWhiteLineW + coordinates: -51,-44 + 1385: + color: '#EFB34196' + id: Bot + coordinates: -40,-46 + 1584: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -34,-46 + 1585: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -40,-45 + 1586: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -44,-46 + 1587: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -48,-45 + 1588: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -55,-46 + 1589: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -43,-41 + 1590: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -44,-38 + 1591: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -44,-34 + 1593: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -40,-36 + 1655: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -33,-45 + 1656: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -36,-46 + 1657: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -39,-44 + 1658: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -42,-46 + 1659: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -46,-45 + 1660: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -48,-45 + 1829: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -33,-62 + 1830: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -33,-62 + 1832: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -33,-62 + 1833: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -57,-34 + 1834: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -58,-34 + 1838: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -60,-33 + 1839: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -59,-34 + 1840: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -59,-36 + 1841: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -58,-36 + 1842: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -57,-36 + 1843: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -58,-33 + 1845: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -54,-33 + 1849: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -52,-33 + 1850: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -53,-33 + 1851: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -54,-33 + 1852: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -55,-33 + 1853: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -53,-33 + 1856: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -53,-34 + 1857: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -52,-34 + 1858: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -55,-33 + 1859: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -55,-34 + 1860: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -55,-35 + 1861: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -54,-36 + 1862: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -53,-36 + 1863: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: -52,-36 + 1864: + cleanable: True + color: '#A461067F' + id: Dirt + coordinates: -54,-34 + 1865: + cleanable: True + color: '#A461067F' + id: Dirt + coordinates: -52,-33 + 1867: + cleanable: True + color: '#A461067F' + id: Dirt + coordinates: -53,-36 + 1868: + cleanable: True + color: '#A461067F' + id: Dirt + coordinates: -55,-36 + 1869: + cleanable: True + color: '#A461067F' + id: Dirt + coordinates: -53,-33 + 1871: + cleanable: True + color: '#A461067F' + id: DirtMedium + coordinates: -54,-33 + 1872: + cleanable: True + color: '#A461067F' + id: DirtMedium + coordinates: -53,-34 + 1873: + cleanable: True + color: '#A461067F' + id: DirtHeavy + coordinates: -52,-34 + 1875: + cleanable: True + color: '#A461067F' + id: DirtHeavy + coordinates: -54,-36 + 1876: + cleanable: True + color: '#A461067F' + id: DirtHeavy + coordinates: -54,-33 + 1877: + cleanable: True + color: '#A461067F' + id: Damaged + coordinates: -57,-34 + 1878: + cleanable: True + color: '#A461067F' + id: Damaged + coordinates: -59,-35 + 1879: + cleanable: True + color: '#A461067F' + id: Damaged + coordinates: -58,-36 + 2006: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -34,-44 + 2007: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -36,-46 + 2008: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -39,-45 + 2009: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -41,-45 + 2010: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -43,-46 + 2011: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -45,-45 + 2012: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -47,-44 + 2013: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -49,-45 + 2014: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -51,-46 + 2162: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -34,-60 + 2163: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -37,-60 + 2164: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: -40,-58 + 2165: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -47,-46 + 2166: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -48,-45 + 2167: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -43,-45 + 2168: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -41,-46 + 2169: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -37,-44 + 2170: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -43,-41 + 2171: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -43,-39 + 2172: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -44,-38 + 2173: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -44,-37 + 2174: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -44,-35 + 2175: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -42,-34 + 2176: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -44,-33 + 2180: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -44,-34 + 2181: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -44,-36 + 2182: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -43,-39 + 2183: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -44,-41 + 2188: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -44,-41 + 2189: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -43,-33 + 2191: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -53,-46 + 2192: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -53,-45 + 2193: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -55,-44 + 2194: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -56,-47 + 2195: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -47,-46 + 2196: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -43,-44 + 2582: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -41,-46 + 2583: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -41,-48 + 2584: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -39,-48 + 2585: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -38,-48 + 2725: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -33,-44 + 2726: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -34,-44 + 2727: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -33,-46 + 2728: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -44,-44 + 2729: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -43,-35 + 2733: + cleanable: True + color: '#A4610696' + id: DirtMedium + coordinates: -50,-44 + -2,0: + 887: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + coordinates: -33,4 + 927: + color: '#EFB34196' + id: BrickTileWhiteLineN + coordinates: -33,4 + 1359: + color: '#DE3A3A96' + id: WarnBox + coordinates: -33,7 + 1439: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: -36,0 + 2472: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -37,0 + 2473: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -39,1 + 2474: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -39,2 + 2475: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -36,4 + 2476: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -35,3 + 2548: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -33,9 + 2555: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -33,18 + 2556: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -35,20 + 2557: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -36,20 + 2558: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -38,18 + 2559: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -36,15 + 2560: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -33,14 + 2561: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -36,13 + 2562: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -36,11 + 2563: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -36,10 + 2564: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -37,10 + 2565: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -35,13 + 2566: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -33,16 + 2567: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -33,17 + 1,0: + 1360: + color: '#FFFFFFFF' + id: Bot + coordinates: 47,1 + 1361: + color: '#FFFFFFFF' + id: Bot + coordinates: 47,4 + 1371: + color: '#EFB34196' + id: Bot + coordinates: 43,9 + 1518: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 42,0 + 1519: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 43,4 + 1520: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 42,8 + 1521: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 46,3 + 1522: + cleanable: True + color: '#A4610696' + id: DirtLight + coordinates: 47,3 + 1773: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 43,0 + 1774: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 43,3 + 1775: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 42,5 + 1776: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 42,8 + 1777: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 46,2 + 1778: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 47,3 + 1904: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 42,0 + 1905: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 42,2 + 1906: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 45,3 + 1907: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 45,2 + 1908: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 46,2 + 1909: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 47,3 + 2380: + cleanable: True + color: '#A4610696' id: Dirt - decals: - 2806: -10,-34 - 2807: -7,-32 - 2808: -4,-32 - 2809: -2,-34 - 2810: -1,-32 - 2811: -7,-31 - 2812: -7,-33 - 2813: -10,-31 - 2814: -5,-32 - 2815: -1,-33 - 2816: -2,-33 - - node: - color: '#FFFFFFFF' - id: Basalt1 - decals: - 2827: -10,-31 - - node: - color: '#FFFFFFFF' - id: Basalt5 - decals: - 2829: -4,-31 - - node: - color: '#D381C996' - id: StandClearGreyscale - decals: - 42: -8,-54 - 43: -8,-50 - 81: -7,-69 - 82: -6,-69 - 83: -7,-72 - 84: -6,-72 - 125: 0,-79 - 126: 1,-79 - 127: -1,-81 - 128: -1,-82 - 129: -1,-73 - 130: -1,-71 - 1109: -7,-83 - 1110: -3,-83 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 46: -8,-73 - 47: -8,-74 - 48: -8,-75 - 49: -8,-76 - 50: -8,-77 - 51: -8,-78 - 87: -8,-70 - 88: -8,-71 - 93: -8,-62 - 94: -8,-63 - 95: -8,-64 - 629: -8,-60 - 630: -8,-59 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 85: -5,-70 - 86: -5,-71 - 96: -5,-62 - 97: -5,-63 - 98: -5,-64 - 631: -5,-59 - 632: -5,-60 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 150: -8,-49 - 151: -9,-49 - 152: -10,-49 - 153: -11,-49 - 154: -12,-49 - 155: -13,-49 - 159: -8,-48 - 160: -8,-47 - 161: -12,-46 - 162: -11,-46 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 156: -13,-49 - 157: -13,-48 - 158: -13,-47 - 165: -9,-48 - 166: -10,-48 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 163: -10,-46 - 164: -9,-46 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 167: -11,-48 - 168: -12,-48 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 513: -16,-33 - - node: - color: '#D381C996' - id: BrickTileWhiteLineW - decals: - 973: -13,-51 - 974: -13,-52 - 975: -13,-53 - 976: -13,-54 - 977: -13,-55 - 978: -13,-56 - 979: -13,-57 - 996: -18,-54 - 997: -18,-53 - 998: -18,-52 - 999: -18,-51 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 980: -10,-51 - 981: -10,-52 - 982: -10,-53 - 983: -10,-54 - 984: -10,-55 - 985: -2,-55 - 986: -2,-56 - 987: -2,-57 - 1000: -15,-54 - 1001: -15,-53 - 1002: -15,-52 - 1003: -15,-51 - 2867: -55,-48 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 1187: -7,-51 - 2793: -1,-35 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 1188: -7,-53 - 2792: -1,-36 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 1190: -31,-53 - 1191: -31,-52 - 1192: -31,-51 - - node: - color: '#D381C996' - id: MiniTileCheckerAOverlay - decals: - 1215: -3,-51 - 1216: -2,-51 - 1217: -3,-52 - 1218: -2,-52 - 1219: -3,-53 - 1220: -2,-53 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 2794: -10,-36 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 75: -6,-73 - 2795: -10,-35 - - node: - color: '#F9801DFF' + coordinates: 42,0 + 2381: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 42,2 + 2382: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 42,3 + 2383: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 43,7 + 2384: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 45,3 + 2385: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 46,2 + 2386: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 47,2 + 2625: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 43,3 + 2626: + cleanable: True + color: '#A4610696' id: Dirt - decals: - 2796: -8,-35 - 2797: -7,-34 - 2798: -9,-35 - 2799: -8,-34 - 2800: -6,-34 - 2801: -5,-34 - 2802: -4,-34 - 2803: -4,-35 - 2804: -3,-35 - 2805: -2,-35 - - node: + coordinates: 43,2 + 1,-1: + 1362: color: '#FFFFFFFF' - id: Rust - decals: - 2817: -9,-35 - 2818: -8,-35 - 2819: -8,-34 - 2820: -7,-34 - 2821: -6,-34 - 2822: -5,-34 - 2823: -4,-34 - 2824: -4,-35 - 2825: -3,-35 - 2826: -2,-35 - - node: + id: Bot + coordinates: 47,-8 + 1363: color: '#FFFFFFFF' - id: Basalt3 - decals: - 2828: -2,-34 - - node: - color: '#EFB34196' - id: StandClear - decals: - 44: 18,-40 - 45: 17,-40 - - node: + id: Bot + coordinates: 47,-5 + 1513: + cleanable: True color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 144: 6,-46 - 145: 5,-46 - 146: 4,-46 - 147: 3,-46 - 148: 2,-46 - 149: 1,-46 - 309: 6,-38 - 310: 6,-37 - - node: + id: DirtLight + coordinates: 36,-11 + 1514: + cleanable: True color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 217: 8,-36 - 218: 7,-36 - 222: 9,-40 - 223: 9,-41 - 224: 9,-39 - 225: 9,-38 - 226: 9,-37 - 227: 9,-36 - 307: 6,-39 - 308: 6,-40 - - node: + id: DirtLight + coordinates: 40,-12 + 1515: + cleanable: True color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 219: 7,-41 - 220: 8,-41 - 221: 9,-41 - 313: 8,-38 - 314: 8,-37 - - node: + id: DirtLight + coordinates: 42,-12 + 1516: + cleanable: True color: '#A4610696' - id: BrickTileWhiteCornerNe - decals: - 257: 14,-40 - 299: 13,-34 - - node: + id: DirtLight + coordinates: 42,-8 + 1517: + cleanable: True color: '#A4610696' - id: BrickTileWhiteCornerSe - decals: - 258: 14,-43 - - node: + id: DirtLight + coordinates: 43,-4 + 1523: + cleanable: True color: '#A4610696' - id: BrickTileWhiteCornerSw - decals: - 259: 11,-43 - 294: 16,-39 - - node: + id: DirtLight + coordinates: 46,-7 + 1524: + cleanable: True color: '#A4610696' - id: BrickTileWhiteCornerNw - decals: - 260: 11,-40 - 298: 12,-34 - - node: + id: DirtLight + coordinates: 47,-6 + 1767: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 34,-12 + 1768: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 38,-12 + 1769: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 43,-11 + 1770: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 42,-7 + 1771: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 42,-5 + 1772: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 43,-4 + 1784: + cleanable: True + color: '#A4610641' + id: Dirt + coordinates: 37,-11 + 1895: + cleanable: True color: '#A4610696' - id: BrickTileWhiteLineS - decals: - 261: 12,-43 - 262: 13,-43 - 288: 11,-38 - 289: 12,-38 - 290: 13,-38 - 291: 14,-38 - 292: 15,-38 - - node: + id: DirtHeavy + coordinates: 34,-13 + 1896: + cleanable: True color: '#A4610696' - id: BrickTileWhiteLineE - decals: - 263: 14,-42 - 264: 14,-41 - 1210: 7,-48 - 1211: 7,-49 - 1212: 6,-50 - 1213: 6,-51 - 1214: 6,-52 - - node: + id: DirtHeavy + coordinates: 36,-12 + 1897: + cleanable: True color: '#A4610696' - id: BrickTileWhiteLineW - decals: - 265: 11,-42 - 266: 11,-41 - 297: 12,-35 - 1205: 2,-48 - 1206: 2,-49 - 1207: 2,-50 - 1208: 2,-51 - 1209: 2,-52 - 2868: -55,-47 - - node: + id: DirtHeavy + coordinates: 39,-12 + 1898: + cleanable: True color: '#A4610696' - id: BrickTileWhiteLineN - decals: - 267: 12,-40 - 268: 13,-40 - 296: 11,-36 - 301: 14,-35 - 302: 15,-35 - 303: 16,-35 - 304: 17,-35 - 305: 18,-35 - 306: 19,-35 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSw - decals: - 274: 16,-39 - 1149: -63,-14 - 1284: -54,-19 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSw - decals: - 275: 16,-38 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNw - decals: - 277: 12,-36 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNw - decals: - 279: 12,-34 - 1148: -63,-12 - 1281: -54,-16 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNe - decals: - 280: 13,-34 - 1146: -59,-12 - 1292: -51,-16 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNe - decals: - 281: 13,-35 - - node: + id: DirtHeavy + coordinates: 41,-13 + 1899: + cleanable: True color: '#A4610696' - id: BrickTileWhiteInnerSw - decals: - 293: 16,-38 - - node: + id: DirtHeavy + coordinates: 43,-12 + 1900: + cleanable: True color: '#A4610696' - id: BrickTileWhiteInnerNw - decals: - 295: 12,-36 - - node: + id: DirtHeavy + coordinates: 43,-10 + 1901: + cleanable: True color: '#A4610696' - id: BrickTileWhiteInnerNe - decals: - 300: 13,-35 - - node: + id: DirtHeavy + coordinates: 43,-8 + 1902: + cleanable: True color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 311: 8,-40 - 312: 8,-39 - - node: - angle: 4.71238898038469 rad + id: DirtHeavy + coordinates: 42,-5 + 1903: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 43,-3 + 1910: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 45,-6 + 1911: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 47,-6 + 1912: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 47,-7 + 1913: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 46,-7 + 1914: + cleanable: True + color: '#A4610696' + id: DirtHeavy + coordinates: 35,-13 + 2371: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 34,-12 + 2372: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 35,-12 + 2373: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 37,-13 + 2374: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 42,-12 + 2375: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 42,-10 + 2376: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 42,-8 + 2377: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 43,-6 + 2378: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 43,-4 + 2379: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 42,-2 + 2624: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: 43,-7 + -3,-1: + 1422: color: '#FFFFFFFF' - id: LoadingArea - decals: - 1121: 18,-35 - 1122: 18,-39 - - node: + id: BrickTileDarkLineW + coordinates: -71,-11 + 1423: color: '#FFFFFFFF' - id: Box - decals: - 1123: 16,-36 - 1124: 16,-37 - 1125: 15,-36 - 1126: 15,-37 - 1129: 16,-41 - 1130: 16,-42 - 1131: 16,-43 - 1132: 16,-44 - 1133: 19,-41 - 1134: 19,-42 - 1135: 19,-43 - 1136: 19,-44 - - node: + id: BrickTileDarkLineW + coordinates: -71,-12 + 1424: color: '#FFFFFFFF' - id: Delivery - decals: - 1127: 17,-36 - 1128: 17,-37 - - node: + id: BrickTileDarkLineW + coordinates: -71,-13 + 1425: color: '#FFFFFFFF' - id: Bot - decals: - 1227: 4,-51 - 1360: 47,1 - 1361: 47,4 - 1362: 47,-8 - 1363: 47,-5 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 52: -8,-79 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 53: -7,-79 - 54: -6,-79 - 55: -5,-79 - 56: -4,-79 - 57: -3,-79 - 70: -2,-79 - - node: + id: BrickTileDarkLineW + coordinates: -71,-14 + 1426: color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 105: -6,-77 - - node: + id: BrickTileDarkLineE + coordinates: -67,-11 + 1427: color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 108: -3,-77 - - node: - color: '#52B4E996' - id: MiniTileCheckerAOverlay - decals: - 653: -40,-18 - 654: -40,-19 - 655: -39,-18 - 656: -39,-19 - 657: -38,-18 - 658: -38,-19 - 659: -37,-18 - 660: -37,-19 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 788: -33,-19 - 789: -33,-18 - 790: -33,-17 - 791: -33,-16 - 792: -33,-15 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 793: -35,-19 - 794: -35,-18 - 795: -35,-17 - 796: -35,-16 - 797: -35,-15 - - node: + id: BrickTileDarkLineE + coordinates: -67,-12 + 1428: color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 856: -34,-8 - - node: + id: BrickTileDarkLineE + coordinates: -67,-13 + 1429: color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 857: -34,-8 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineE - decals: - 866: -37,-6 - 867: -37,-7 - 868: -37,-8 - 869: -37,-9 - - node: - color: '#EFB34196' + id: BrickTileDarkLineE + coordinates: -67,-14 + 1430: + color: '#334E6DC8' id: BrickTileWhiteLineW - decals: - 870: -39,-6 - 871: -39,-7 - 872: -39,-8 - 873: -39,-9 - 2866: -55,-43 - - node: - color: '#9FED5896' - id: Grassa2 - decals: - 1137: -62,-13 - 1138: -60,-13 - 1139: -61,-13 - - node: - color: '#9FED5896' - id: Damaged - decals: - 1140: -62,-13 - 1141: -60,-13 - 1142: -61,-13 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 1143: -62,-13 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 1144: -61,-13 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 1145: -60,-13 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSe - decals: - 1147: -59,-14 - 1289: -51,-19 - - node: - color: '#52B4E9CB' - id: MiniTileCheckerAOverlay - decals: - 1266: -54,-16 - 1267: -53,-16 - 1268: -52,-16 - 1269: -51,-16 - 1270: -51,-17 - 1271: -52,-17 - 1272: -53,-17 - 1273: -54,-17 - 1274: -54,-18 - 1275: -53,-18 - 1276: -52,-18 - 1277: -51,-18 - 1278: -52,-19 - 1279: -53,-19 - 1280: -54,-19 - 1287: -51,-19 - - node: + coordinates: -71,-11 + 1431: + color: '#334E6DC8' + id: BrickTileWhiteLineW + coordinates: -71,-12 + 1432: + color: '#334E6DC8' + id: BrickTileWhiteLineW + coordinates: -71,-13 + 1433: + color: '#334E6DC8' + id: BrickTileWhiteLineW + coordinates: -71,-14 + 1434: + color: '#334E6DC8' + id: BrickTileWhiteLineE + coordinates: -67,-11 + 1435: + color: '#334E6DC8' + id: BrickTileWhiteLineE + coordinates: -67,-12 + 1436: + color: '#334E6DC8' + id: BrickTileWhiteLineE + coordinates: -67,-13 + 1437: + color: '#334E6DC8' + id: BrickTileWhiteLineE + coordinates: -67,-14 + 2682: cleanable: True - color: '#A461067F' + color: '#A4610696' id: Dirt - decals: - 1864: -54,-34 - 1865: -52,-33 - 1866: -52,-32 - 1867: -53,-36 - 1868: -55,-36 - 1869: -53,-33 - 1870: -53,-32 - - node: + coordinates: -65,-11 + 2683: cleanable: True - color: '#A461067F' - id: DirtHeavy - decals: - 1873: -52,-34 - 1874: -53,-31 - 1875: -54,-36 - 1876: -54,-33 - - node: + color: '#A4610696' + id: Dirt + coordinates: -65,-13 + 2684: cleanable: True - color: '#A461067F' - id: Damaged - decals: - 1877: -57,-34 - 1878: -59,-35 - 1879: -58,-36 - 1880: -58,-32 - 1881: -48,-25 - 1882: -45,-15 - - node: + color: '#A4610696' + id: Dirt + coordinates: -70,-13 + 2685: cleanable: True - color: '#A461067F' - id: DirtMedium - decals: - 1871: -54,-33 - 1872: -53,-34 - - node: - color: '#334E6DC8' - id: MiniTileCheckerAOverlay - decals: - 2838: -57,-45 - 2839: -56,-45 - 2840: -55,-45 - 2841: -54,-45 - - node: - color: '#D4D4D419' - id: HalfTileOverlayGreyscale90 - decals: - 2852: -53,-44 - 2853: -53,-46 - - node: - color: '#D4D4D40C' - id: HalfTileOverlayGreyscale270 - decals: - 2854: -53,-44 - 2855: -53,-46 - - node: - color: '#D4D4D426' - id: BrickTileWhiteLineE - decals: - 2860: -53,-46 - 2861: -53,-44 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineE - decals: - 2864: -55,-47 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 2865: -55,-48 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineE - decals: - 2869: -55,-43 - - node: - color: '#DE3A3A96' - id: WarnBox - decals: - 1359: -33,7 + color: '#A4610696' + id: Dirt + coordinates: -69,-12 + 2686: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -68,-11 + 2687: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -67,-11 + 2688: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -67,-13 + 2689: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -68,-13 + 2690: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -69,-13 + 2691: + cleanable: True + color: '#A4610696' + id: Dirt + coordinates: -67,-12 type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 65535 - 0,-2: - 0: 65533 - 1: 2 - 0,-1: - 0: 65535 - -4,-4: - 0: 65535 - -4,-3: - 0: 65535 - -4,-2: - 0: 65535 - -4,-1: - 0: 32767 - 1: 32768 - -3,-4: - 0: 65535 - -3,-3: - 0: 65535 - -3,-2: - 0: 65521 - 1: 14 - -3,-1: - 0: 32767 - 1: 32768 - -2,-4: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 63999 - 1: 1536 - 1,-4: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 62975 - 1: 2560 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - -4,0: - 0: 65527 - 1: 8 - -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: 32767 - -2,0: - 0: 65535 - -2,1: - 0: 65279 - 1: 256 - -2,2: - 0: 65535 - -2,3: - 0: 4095 - -1,0: - 0: 65535 - -1,1: - 0: 64511 - 1: 1024 - -1,2: - 0: 65535 - -1,3: - 0: 255 - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 255 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 1,3: - 0: 2255 - 2,0: - 0: 65535 - 2,1: - 0: 65525 - 1: 10 - 2,2: - 0: 65471 - 1: 64 - 2,3: - 0: 2295 - 1: 8 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65533 - 1: 2 - 4,0: - 0: 65503 - 1: 32 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 1: 13 - 0: 14322 - 5,0: - 0: 32767 - 1: 32768 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 3327 - 6,0: - 0: 65535 - 6,1: - 0: 61437 - 1: 4098 - 6,2: - 0: 65487 - 1: 48 - 6,3: - 0: 319 - 7,0: - 1: 1 - 0: 65534 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 3 - 4,-4: - 0: 65535 - 4,-3: - 0: 8191 - 1: 57344 - 4,-2: - 0: 32767 - 1: 32768 - 4,-1: - 0: 65527 - 1: 8 - 5,-4: - 1: 1 - 0: 65534 - 5,-3: - 0: 62463 - 1: 3072 - 5,-2: - 0: 65521 - 1: 14 - 5,-1: - 0: 65535 - 6,-4: - 0: 65535 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 65296 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - -8,0: - 0: 65535 - -8,1: - 0: 57343 - 1: 8192 - -8,2: - 0: 65535 - -8,3: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -7,3: - 0: 65535 - -6,0: - 0: 65503 - 1: 32 - -6,1: - 0: 16383 - 1: 49152 - -6,2: - 0: 65535 - -6,3: - 0: 65535 - -5,0: - 0: 65503 - 1: 32 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -8,-4: - 0: 65535 - -8,-3: - 0: 65535 - -8,-2: - 0: 65535 - -8,-1: - 0: 65535 - -7,-4: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-4: - 0: 65535 - -6,-3: - 0: 65535 - -6,-2: - 0: 65535 - -6,-1: - 0: 65531 - 1: 4 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -8,-8: - 0: 63487 - 1: 2048 - -8,-7: - 0: 48059 - 1: 17476 - -8,-6: - 0: 65535 - -8,-5: - 0: 65535 - -7,-8: - 0: 65535 - -7,-7: - 0: 65535 - -7,-6: - 0: 65535 - -7,-5: - 0: 65439 - 1: 96 - -6,-8: - 0: 65535 - -6,-7: - 0: 61183 - 1: 4352 - -6,-6: - 0: 65535 - -6,-5: - 0: 65535 - -5,-8: - 0: 65535 - -5,-7: - 0: 64767 - 1: 768 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 65535 - -3,-8: - 0: 32766 - -3,-7: - 0: 65535 - -3,-6: - 0: 64447 - 1: 1088 - -3,-5: - 0: 65535 - -2,-8: - 0: 53247 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 0: 48063 - 1: 17472 - -1,-8: - 0: 36863 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 57343 - 1: 8192 - 0,-8: - 0: 65535 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-8: - 1: 57345 - 0: 8190 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - 4,-8: - 0: 65535 - 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-8: - 0: 30591 - 5,-7: - 0: 65399 - 5,-6: - 0: 49151 - 1: 16384 - 5,-5: - 0: 61167 - 1: 4368 - 6,-7: - 0: 65280 - 6,-6: - 0: 65535 - 6,-5: - 0: 12671 - 7,-7: - 0: 65422 - 7,-6: - 0: 52428 - 7,-5: - 0: 52428 - 1,6: - 0: 36040 - 1,7: - 0: 8 - 2,5: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 52991 - 2,4: - 0: 61170 - 3,4: - 0: 65023 - 1: 512 - 3,5: - 0: 65535 - 3,6: - 0: 32767 - 3,7: - 0: 30583 - 8,0: - 0: 56797 - 8,1: - 0: 49087 - 1: 16448 - 8,2: - 0: 56799 - 9,0: - 0: 65535 - 9,1: - 0: 65535 - 9,2: - 0: 65535 - 10,1: - 0: 65535 - 10,2: - 0: 12015 - 10,0: - 0: 61166 - 11,0: - 0: 65535 - 11,1: - 0: 16383 - 11,2: - 0: 4881 - 8,-4: - 0: 65280 - 8,-3: - 0: 8191 - 8,-2: - 0: 49113 - 1: 16384 - 8,-1: - 0: 57279 - 1: 64 - 9,-4: - 0: 65280 - 9,-3: - 0: 4095 - 9,-2: - 0: 65527 - 9,-1: - 0: 65535 - 10,-4: - 0: 65280 - 10,-3: - 0: 61439 - 10,-2: - 0: 65518 - 10,-1: - 0: 61439 - 11,-4: - 0: 4352 - 11,-3: - 0: 65329 - 11,-2: - 0: 65535 - 11,-1: - 0: 63487 - 12,0: - 0: 4369 - 12,1: - 0: 273 - 12,-3: - 0: 4352 - 12,-2: - 0: 4369 - 12,-1: - 0: 4113 - 8,-7: - 0: 65423 - 8,-6: - 0: 56797 - 8,-5: - 0: 56797 - 9,-7: - 0: 65423 - 9,-6: - 0: 56797 - 9,-5: - 0: 56797 - 10,-7: - 0: 65423 - 10,-6: - 0: 56797 - 10,-5: - 0: 56797 - 11,-7: - 0: 30019 - 11,-6: - 0: 21845 - 11,-5: - 0: 21845 - 4,4: - 0: 65523 - 4,5: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 36046 - 5,4: - 0: 4401 - 5,5: - 0: 13107 - 5,6: - 0: 14199 - 5,7: - 0: 4371 - -4,-12: - 0: 65533 - 1: 2 - -4,-11: - 0: 65535 - -4,-10: - 0: 65535 - -4,-9: - 0: 65535 - -3,-12: - 0: 65535 - -3,-11: - 0: 63487 - -3,-10: - 0: 65263 - -3,-9: - 0: 61439 - -2,-12: - 0: 65535 - -2,-11: - 0: 64767 - -2,-10: - 0: 65535 - -2,-9: - 0: 65535 - -1,-12: - 0: 65535 - -1,-11: - 0: 63743 - -1,-10: - 0: 65535 - -1,-9: - 0: 65535 - 0,-12: - 0: 65535 - 0,-11: - 0: 65535 - 0,-10: - 0: 65535 - 0,-9: - 0: 65535 - 1,-12: - 0: 65535 - 1,-11: - 0: 65535 - 1,-10: - 0: 65535 - 1,-9: - 0: 65535 - 2,-12: - 0: 65279 - 1: 256 - 2,-11: - 0: 65535 - 2,-10: - 0: 65535 - 2,-9: - 0: 65535 - 3,-12: - 0: 63487 - 1: 2048 - 3,-11: - 0: 65535 - 3,-10: - 0: 65535 - 3,-9: - 0: 65535 - -8,-12: - 0: 65535 - -8,-11: - 0: 65535 - -8,-10: - 0: 65535 - -8,-9: - 0: 65535 - -7,-12: - 0: 65535 - -7,-11: - 0: 62463 - 1: 3072 - -7,-10: - 0: 65535 - -7,-9: - 0: 65535 - -6,-12: - 0: 65487 - 1: 48 - -6,-11: - 0: 65279 - 1: 256 - -6,-10: - 0: 65535 - -6,-9: - 0: 65535 - -5,-12: - 0: 65535 - -5,-11: - 0: 65535 - -5,-10: - 0: 65535 - -5,-9: - 0: 61327 - 1: 4208 - 4,-12: - 0: 65279 - 1: 256 - 4,-11: - 0: 65263 - 1: 272 - 4,-10: - 0: 65535 - 4,-9: - 0: 57343 - 1: 8192 - 5,-12: - 0: 30583 - 5,-11: - 0: 65399 - 5,-10: - 0: 65535 - 5,-9: - 0: 65535 - 0,-16: - 0: 65527 - 0,-15: - 0: 65535 - 0,-14: - 0: 65535 - 0,-13: - 0: 64447 - 1: 1088 - 1,-16: - 0: 65520 - 1,-15: - 0: 65535 - 1,-14: - 0: 65535 - 1,-13: - 0: 65535 - 2,-16: - 0: 29456 - 2,-15: - 0: 30583 - 2,-14: - 0: 65527 - 2,-13: - 0: 65535 - 3,-14: - 0: 65280 - 3,-13: - 0: 65535 - 4,-14: - 0: 61440 - 4,-13: - 0: 65535 - 5,-13: - 0: 13107 - -4,-16: - 0: 65535 - -4,-15: - 0: 65535 - -4,-14: - 0: 65535 - -4,-13: - 0: 65535 - -3,-16: - 0: 65535 - -3,-15: - 0: 40959 - 1: 24576 - -3,-14: - 0: 65535 - -3,-13: - 0: 65535 - -2,-16: - 0: 65399 - 1: 136 - -2,-15: - 0: 65535 - -2,-14: - 0: 57343 - 1: 8192 - -2,-13: - 0: 65501 - 1: 34 - -1,-16: - 0: 65535 - -1,-15: - 0: 65529 - 1: 6 - -1,-14: - 0: 65535 - -1,-13: - 0: 8159 - 1: 57376 - -8,-16: - 0: 65535 - -8,-15: - 0: 65343 - 1: 192 - -8,-14: - 0: 65403 - 1: 132 - -8,-13: - 0: 65535 - -7,-16: - 0: 63487 - 1: 2048 - -7,-15: - 0: 65535 - -7,-14: - 0: 65535 - -7,-13: - 0: 65535 - -6,-16: - 0: 65535 - -6,-15: - 0: 65343 - 1: 192 - -6,-14: - 0: 65535 - -6,-13: - 0: 36863 - 1: 28672 - -5,-16: - 0: 65535 - -5,-15: - 0: 65535 - -5,-14: - 0: 65535 - -5,-13: - 0: 65535 - -4,-20: - 0: 65228 - -4,-19: - 0: 61439 - -4,-18: - 0: 140 - -3,-20: - 0: 65535 - -3,-19: - 0: 65535 - -3,-18: - 0: 52991 - -3,-17: - 0: 60620 - -2,-20: - 0: 65535 - -2,-19: - 0: 65535 - -2,-18: - 0: 65535 - -2,-17: - 0: 65535 - -1,-20: - 0: 65535 - -1,-19: - 0: 65535 - -1,-18: - 0: 65535 - -1,-17: - 0: 62263 - 0,-20: - 0: 30583 - 0,-19: - 0: 30583 - 0,-18: - 0: 30583 - -4,-21: - 0: 32768 - -3,-21: - 0: 65516 - -3,-22: - 0: 32768 - -2,-22: - 0: 65024 - -2,-21: - 0: 65535 - -1,-22: - 0: 62208 - -1,-21: - 0: 65535 - 0,-21: - 0: 30579 - -12,-8: - 0: 65535 - -12,-7: - 0: 65535 - -12,-6: - 0: 65535 - -12,-5: - 0: 65535 - -11,-8: - 0: 65535 - -11,-7: - 0: 65471 - 1: 64 - -11,-6: - 0: 65535 - -11,-5: - 1: 8705 - 0: 56830 - -10,-8: - 0: 65535 - -10,-7: - 0: 65531 - 1: 4 - -10,-6: - 0: 65535 - -10,-5: - 0: 63487 - 1: 2048 - -9,-8: - 0: 65535 - -9,-7: - 0: 30583 - 1: 34952 - -9,-6: - 0: 65535 - -9,-5: - 0: 63487 - 1: 2048 - -12,-4: - 0: 65535 - -12,-3: - 0: 65535 - -12,-2: - 0: 65535 - -12,-1: - 0: 61439 - -11,-4: - 0: 65533 - 1: 2 - -11,-3: - 0: 65535 - -11,-2: - 0: 30591 - 1: 34944 - -11,-1: - 0: 65407 - 1: 128 - -10,-4: - 0: 65535 - -10,-3: - 0: 57343 - 1: 8192 - -10,-2: - 0: 32221 - 1: 33314 - -10,-1: - 0: 65535 - -9,-4: - 0: 65535 - -9,-3: - 0: 24575 - 1: 40960 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -12,1: - 0: 65262 - -12,2: - 0: 32639 - 2: 128 - 3: 32768 - -12,3: - 0: 32639 - 4: 32896 - -12,0: - 0: 61166 - -11,0: - 0: 32767 - 1: 32768 - -11,1: - 0: 65535 - -11,2: - 0: 53199 - 2: 48 - 3: 12288 - -11,3: - 0: 53199 - 4: 12336 - -10,0: - 0: 65533 - 1: 2 - -10,1: - 0: 65535 - -10,2: - 0: 65535 - -10,3: - 0: 65535 - -9,0: - 0: 30175 - 1: 35360 - -9,1: - 0: 65527 - 1: 8 - -9,2: - 0: 65535 - -9,3: - 0: 65535 - -12,-12: - 0: 65535 - -12,-11: - 0: 65535 - -12,-10: - 0: 65471 - 1: 64 - -12,-9: - 0: 65535 - -11,-12: - 0: 65535 - -11,-11: - 0: 65535 - -11,-10: - 0: 65535 - -11,-9: - 0: 63487 - 1: 2048 - -10,-12: - 0: 65535 - -10,-11: - 0: 65535 - -10,-10: - 0: 65535 - -10,-9: - 0: 65535 - -9,-12: - 0: 65535 - -9,-11: - 0: 65535 - -9,-10: - 0: 65535 - -9,-9: - 0: 65535 - -12,-15: - 0: 65528 - -12,-14: - 0: 65535 - -12,-13: - 0: 65535 - -11,-15: - 0: 65535 - -11,-14: - 0: 65535 - -11,-13: - 0: 64511 - 1: 1024 - -11,-16: - 0: 61064 - -10,-16: - 0: 65535 - -10,-15: - 0: 65439 - 1: 96 - -10,-14: - 0: 65535 - -10,-13: - 0: 48063 - 1: 17472 - -9,-16: - 0: 65535 - -9,-15: - 0: 65535 - -9,-14: - 0: 65535 - -9,-13: - 0: 65535 - -16,-12: - 0: 65521 - 4: 14 - -16,-11: - 0: 35327 - 4: 17920 - -16,-10: - 0: 64717 - -16,-9: - 0: 65535 - -15,-12: - 0: 65535 - -15,-11: - 0: 65535 - -15,-10: - 0: 65535 - -15,-9: - 0: 65535 - -14,-12: - 0: 65535 - -14,-11: - 0: 65535 - -14,-10: - 0: 65535 - -14,-9: - 0: 65535 - -13,-12: - 0: 65535 - -13,-11: - 0: 57087 - 1: 8448 - -13,-10: - 0: 65533 - 1: 2 - -13,-9: - 0: 65535 - -16,-8: - 0: 65535 - -16,-7: - 0: 65535 - -16,-6: - 0: 65535 - -16,-5: - 0: 65503 - 1: 32 - -15,-8: - 0: 65535 - -15,-7: - 0: 65535 - -15,-6: - 0: 65535 - -15,-5: - 0: 65535 - -14,-8: - 0: 32639 - 1: 32896 - -14,-7: - 0: 65535 - -14,-6: - 0: 65423 - 1: 112 - -14,-5: - 0: 64989 - 1: 546 - -13,-8: - 0: 61423 - 1: 4112 - -13,-7: - 0: 65535 - -13,-6: - 0: 65535 - -13,-5: - 1: 1091 - 0: 64444 - -16,-4: - 0: 65535 - -16,-3: - 0: 65535 - -16,-2: - 0: 255 - -15,-4: - 0: 63359 - 1: 2176 - -15,-3: - 0: 65535 - -15,-2: - 0: 255 - -14,-4: - 0: 65535 - -14,-3: - 0: 65535 - -14,-2: - 0: 255 - -13,-4: - 0: 65535 - -13,-3: - 0: 65535 - -13,-2: - 0: 2303 - -12,4: - 0: 32639 - 5: 128 - 4: 32768 - -12,5: - 0: 65535 - -12,6: - 0: 61166 - -12,7: - 0: 206 - -11,4: - 0: 53199 - 5: 48 - 4: 12288 - -11,5: - 0: 65535 - -11,6: - 0: 65535 - -11,7: - 0: 3839 - -10,4: - 0: 65535 - -10,5: - 0: 65535 - -10,6: - 0: 65535 - -10,7: - 0: 61439 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -9,6: - 0: 63743 - 4: 1792 - -9,7: - 0: 65535 - -8,4: - 0: 65535 - -8,5: - 0: 65535 - -8,6: - 0: 65535 - -8,7: - 0: 32767 - -7,4: - 0: 63487 - 1: 2048 - -7,5: - 0: 65535 - -7,6: - 0: 65535 - -7,7: - 0: 1023 - -6,4: - 0: 65535 - -6,5: - 0: 32767 - -6,6: - 0: 30583 - -6,7: - 0: 119 - -5,4: - 0: 4927 - -5,5: - 0: 1 - -15,-13: - 0: 65260 - 4: 258 - -15,-14: - 0: 51336 - -14,-14: - 0: 65535 - -14,-13: - 0: 65535 - -14,-15: - 0: 60928 - -13,-15: - 0: 32752 - 1: 32768 - -13,-14: - 0: 65535 - -13,-13: - 0: 65407 - 1: 128 - -19,-4: - 0: 52680 - -19,-3: - 0: 35020 - -18,-4: - 0: 63487 - 1: 2048 - -18,-3: - 0: 65535 - -18,-2: - 0: 207 - -17,-4: - 0: 65535 - -17,-3: - 0: 65535 - -17,-2: - 0: 255 - -19,-5: - 0: 32768 - -18,-5: - 0: 65534 - -18,-6: - 0: 61167 - -18,-8: - 0: 50252 - -18,-7: - 0: 65092 - -17,-8: - 0: 65485 - -17,-7: - 0: 65535 - -17,-6: - 0: 65535 - -17,-5: - 0: 61951 - 1: 3584 - -13,3: - 0: 52424 - -13,2: - 0: 34816 - -13,4: - 0: 36044 - -13,5: - 0: 136 - -9,8: - 0: 15 - -8,8: - 0: 1 - 5,8: - 0: 1 - 2,8: - 0: 2252 - 3,8: - 0: 13175 - 3,9: - 0: 2 - -8,-20: - 0: 65520 - -8,-19: - 0: 65520 - -8,-18: - 0: 65520 - -8,-17: - 0: 49152 - -7,-20: - 0: 65528 - -7,-19: - 0: 65528 - -7,-18: - 0: 65528 - -7,-17: - 0: 64648 - -6,-20: - 0: 13243 - -6,-19: - 0: 13107 - -6,-18: - 0: 13107 - -6,-17: - 0: 63283 - -5,-17: - 0: 61440 - -20,-12: - 0: 65535 - -20,-11: - 0: 65535 - -19,-12: - 0: 65523 - -19,-11: - 0: 13311 - -18,-12: - 0: 65527 - -18,-11: - 0: 10239 - -17,-12: - 0: 65532 - -17,-11: - 0: 36095 - -17,-9: - 0: 51339 - -22,-12: - 0: 65532 - -22,-11: - 0: 52479 - -21,-12: - 0: 65535 - -21,-11: - 0: 65535 - -8,-22: - 0: 61440 - -8,-21: - 0: 65520 - -7,-22: - 0: 13024 - -7,-21: - 0: 65528 - -6,-22: - 0: 39152 - -6,-21: - 0: 64507 - -9,-20: - 0: 60130 - -9,-19: - 0: 60130 - -9,-18: - 0: 60130 - -9,-17: - 0: 34 - -9,-22: - 0: 57344 - -9,-21: - 0: 60130 - 1,5: - 0: 32768 - -20,-10: - 0: 32767 - -20,-9: - 0: 57347 - -19,-10: - 0: 819 - -22,-10: - 0: 2188 - -21,-10: - 0: 53247 - -21,-9: - 0: 62008 - -20,-14: - 0: 29440 - -20,-13: - 0: 65535 - -19,-13: - 0: 13107 - -22,-13: - 0: 52360 - -21,-13: - 0: 65535 - -21,-14: - 0: 51200 - -10,8: - 0: 8 - -5,6: - 0: 65280 - -5,7: - 0: 65311 - -20,-4: - 0: 4014 - -20,-7: - 0: 65262 - -20,-6: - 0: 61167 - -20,-8: - 0: 61166 - -20,-5: - 0: 61166 - -19,-7: - 0: 65262 - -19,-6: - 0: 15 - -19,-8: - 0: 61166 - -19,-9: - 0: 57344 - -22,-9: - 0: 60144 - -22,-7: - 0: 62702 - -22,-6: - 0: 61164 - -22,-8: - 0: 61166 - -22,-5: - 0: 61166 - -21,-7: - 0: 65262 - -21,-6: - 0: 61167 - -21,-8: - 0: 61166 - -21,-5: - 0: 61166 - -22,-4: - 0: 4014 - -21,-4: - 0: 4015 - -4,6: - 0: 65484 - -4,7: - 0: 65487 - -4,4: - 0: 52943 - -4,5: - 0: 52428 - -3,4: - 0: 65280 - -3,5: - 0: 65295 - -3,6: - 0: 65295 - -3,7: - 0: 65295 - -2,4: - 0: 65408 - -2,5: - 0: 65423 - -2,6: - 0: 65423 - -2,7: - 0: 65455 - -16,-14: - 0: 256 - -16,-13: - 0: 256 - 4: 32768 - -18,-10: - 0: 8751 - -18,-9: - 0: 15 - -17,-10: - 0: 15 - -18,-14: - 0: 12032 - -18,-13: - 0: 12066 - -17,-14: - 0: 36608 - -17,-13: - 0: 36744 - -6,8: - 0: 19520 - -6,9: - 0: 3148 - -5,8: - 0: 65295 - -5,9: - 0: 3855 - -23,-9: - 0: 34944 - -23,-7: - 0: 41704 - -23,-6: - 0: 35042 - -23,-8: - 0: 34952 - -23,-5: - 0: 34952 - -23,-4: - 0: 2184 - -4,8: - 0: 65359 - -4,9: - 0: 5455 - -4,10: - 0: 15 - -3,8: - 0: 65295 - -3,9: - 0: 7951 - -3,10: - 0: 1 - -2,8: - 0: 65423 - -2,9: - 0: 3983 - -1,4: - 0: 8992 - -1,5: - 0: 8739 - -1,6: - 0: 8995 - -1,7: - 0: 8995 - -1,8: - 0: 8995 - -1,9: - 0: 803 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 20.078888 - - 75.53487 - - 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 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 + - tiles: + -1,-1: 0 + 0,-6: 0 + 0,-5: 0 + 0,-4: 0 + 0,-3: 0 + 0,-2: 0 + 0,-1: 0 + 1,-2: 0 + 1,-1: 0 + -16,-16: 0 + -16,-15: 0 + -16,-14: 0 + -16,-13: 0 + -16,-12: 0 + -16,-11: 0 + -16,-10: 0 + -16,-9: 0 + -16,-8: 0 + -16,-7: 0 + -16,-6: 0 + -16,-5: 0 + -16,-4: 0 + -16,-3: 0 + -16,-2: 0 + -16,-1: 0 + -15,-16: 0 + -15,-15: 0 + -15,-14: 0 + -15,-13: 0 + -15,-12: 0 + -15,-11: 0 + -15,-10: 0 + -15,-9: 0 + -15,-8: 0 + -15,-7: 0 + -15,-6: 0 + -15,-5: 0 + -15,-4: 0 + -15,-3: 0 + -15,-2: 0 + -15,-1: 0 + -14,-16: 0 + -14,-15: 0 + -14,-14: 0 + -14,-13: 0 + -14,-12: 0 + -14,-11: 0 + -14,-10: 0 + -14,-9: 0 + -14,-8: 0 + -14,-7: 0 + -14,-6: 0 + -14,-5: 0 + -14,-4: 0 + -14,-3: 0 + -14,-2: 0 + -14,-1: 0 + -13,-16: 0 + -13,-15: 0 + -13,-14: 0 + -13,-13: 0 + -13,-12: 0 + -13,-11: 0 + -13,-10: 0 + -13,-9: 0 + -13,-8: 0 + -13,-7: 0 + -13,-6: 0 + -13,-5: 0 + -13,-4: 0 + -13,-3: 0 + -13,-2: 0 + -13,-1: 0 + -12,-16: 0 + -12,-15: 0 + -12,-14: 0 + -12,-13: 0 + -12,-12: 0 + -12,-11: 0 + -12,-10: 0 + -12,-9: 0 + -12,-8: 0 + -12,-7: 0 + -12,-6: 0 + -12,-5: 0 + -12,-4: 0 + -12,-3: 0 + -12,-2: 0 + -12,-1: 0 + -11,-16: 0 + -11,-15: 0 + -11,-14: 0 + -11,-13: 0 + -11,-12: 0 + -11,-11: 0 + -11,-10: 0 + -11,-9: 0 + -11,-8: 0 + -11,-7: 0 + -11,-6: 0 + -11,-5: 0 + -11,-4: 0 + -11,-3: 0 + -11,-2: 0 + -11,-1: 0 + -10,-16: 0 + -10,-15: 0 + -10,-14: 0 + -10,-13: 0 + -10,-12: 0 + -10,-11: 0 + -10,-10: 0 + -10,-9: 0 + -10,-8: 0 + -10,-7: 0 + -10,-6: 0 + -10,-5: 0 + -10,-4: 0 + -10,-3: 0 + -10,-2: 0 + -10,-1: 0 + -9,-16: 0 + -9,-15: 0 + -9,-14: 0 + -9,-13: 0 + -9,-12: 0 + -9,-11: 0 + -9,-10: 0 + -9,-9: 0 + -9,-8: 0 + -9,-7: 0 + -9,-6: 0 + -9,-5: 0 + -9,-4: 0 + -9,-3: 0 + -9,-2: 0 + -9,-1: 0 + -8,-16: 0 + -8,-15: 0 + -8,-14: 0 + -8,-13: 0 + -8,-12: 0 + -8,-11: 0 + -8,-10: 0 + -8,-9: 0 + -8,-8: 0 + -8,-7: 0 + -8,-6: 0 + -8,-5: 0 + -8,-4: 0 + -8,-3: 0 + -8,-2: 0 + -8,-1: 0 + -7,-16: 0 + -7,-15: 0 + -7,-14: 0 + -7,-13: 0 + -7,-12: 0 + -7,-11: 0 + -7,-10: 0 + -7,-9: 0 + -7,-8: 0 + -7,-7: 0 + -7,-6: 0 + -7,-5: 0 + -7,-4: 0 + -7,-3: 0 + -7,-2: 0 + -7,-1: 0 + -6,-16: 0 + -6,-15: 0 + -6,-14: 0 + -6,-13: 0 + -6,-12: 0 + -6,-11: 0 + -6,-10: 0 + -6,-9: 0 + -6,-8: 0 + -6,-7: 0 + -6,-6: 0 + -6,-5: 0 + -6,-4: 0 + -6,-3: 0 + -6,-2: 0 + -6,-1: 0 + -5,-16: 0 + -5,-15: 0 + -5,-14: 0 + -5,-13: 0 + -5,-12: 0 + -5,-11: 0 + -5,-10: 0 + -5,-9: 0 + -5,-8: 0 + -5,-7: 0 + -5,-6: 0 + -5,-5: 0 + -5,-4: 0 + -5,-3: 0 + -5,-2: 0 + -5,-1: 0 + -4,-16: 0 + -4,-15: 0 + -4,-14: 0 + -4,-13: 0 + -4,-12: 0 + -4,-11: 0 + -4,-10: 0 + -4,-9: 0 + -4,-8: 0 + -4,-7: 0 + -4,-6: 0 + -4,-5: 0 + -4,-4: 0 + -4,-3: 0 + -4,-2: 0 + -4,-1: 0 + -3,-16: 0 + -3,-15: 0 + -3,-14: 0 + -3,-13: 0 + -3,-12: 0 + -3,-11: 0 + -3,-10: 0 + -3,-9: 0 + -3,-8: 0 + -3,-7: 0 + -3,-6: 0 + -3,-5: 0 + -3,-4: 0 + -3,-3: 0 + -3,-2: 0 + -3,-1: 0 + -2,-16: 0 + -2,-15: 0 + -2,-14: 0 + -2,-13: 0 + -2,-12: 0 + -2,-11: 0 + -2,-10: 0 + -2,-9: 0 + -2,-8: 0 + -2,-7: 0 + -2,-6: 0 + -2,-5: 0 + -2,-4: 0 + -2,-3: 0 + -2,-2: 0 + -2,-1: 0 + -1,-16: 0 + -1,-15: 0 + -1,-14: 0 + -1,-13: 0 + -1,-12: 0 + -1,-11: 0 + -1,-10: 0 + -1,-9: 0 + -1,-8: 0 + -1,-7: 0 + -1,-6: 0 + -1,-5: 0 + -1,-4: 0 + -1,-3: 0 + -1,-2: 0 + 0,-16: 0 + 0,-15: 0 + 0,-14: 0 + 0,-13: 0 + 0,-12: 0 + 0,-11: 0 + 0,-10: 0 + 0,-9: 0 + 0,-8: 0 + 0,-7: 0 + 1,-16: 0 + 1,-15: 0 + 1,-14: 0 + 1,-13: 0 + 1,-12: 0 + 1,-11: 0 + 1,-10: 0 + 1,-9: 0 + 1,-8: 0 + 1,-7: 0 + 1,-6: 0 + 1,-5: 0 + 1,-4: 0 + 1,-3: 0 + 2,-16: 0 + 2,-15: 0 + 2,-14: 0 + 2,-13: 0 + 2,-12: 0 + 2,-11: 0 + 2,-10: 0 + 2,-9: 0 + 2,-8: 0 + 2,-7: 0 + 2,-6: 0 + 2,-5: 0 + 2,-4: 0 + 2,-3: 0 + 2,-2: 0 + 2,-1: 0 + 3,-16: 0 + 3,-15: 0 + 3,-14: 0 + 3,-13: 0 + 3,-12: 0 + 3,-11: 0 + 3,-10: 0 + 3,-9: 0 + 3,-8: 0 + 3,-7: 0 + 3,-6: 0 + 3,-5: 0 + 3,-4: 0 + 3,-3: 0 + 3,-2: 0 + 3,-1: 0 + 4,-16: 0 + 4,-15: 0 + 4,-14: 0 + 4,-13: 0 + 4,-12: 0 + 4,-11: 0 + 4,-10: 0 + 4,-9: 0 + 4,-8: 0 + 4,-7: 0 + 4,-6: 0 + 4,-5: 0 + 4,-4: 0 + 4,-3: 0 + 4,-2: 0 + 4,-1: 0 + 5,-16: 0 + 5,-15: 0 + 5,-14: 0 + 5,-13: 0 + 5,-12: 0 + 5,-11: 0 + 5,-10: 0 + 5,-9: 0 + 5,-8: 0 + 5,-7: 0 + 5,-6: 0 + 5,-5: 0 + 5,-4: 0 + 5,-3: 0 + 5,-2: 0 + 5,-1: 0 + 6,-16: 0 + 6,-15: 0 + 6,-14: 0 + 6,-13: 0 + 6,-12: 0 + 6,-11: 0 + 6,-10: 0 + 6,-9: 0 + 6,-8: 0 + 6,-7: 0 + 6,-6: 0 + 6,-5: 0 + 6,-4: 0 + 6,-3: 0 + 6,-2: 0 + 6,-1: 0 + 7,-16: 0 + 7,-15: 0 + 7,-14: 0 + 7,-13: 0 + 7,-12: 0 + 7,-11: 0 + 7,-10: 0 + 7,-9: 0 + 7,-8: 0 + 7,-7: 0 + 7,-6: 0 + 7,-5: 0 + 7,-4: 0 + 7,-3: 0 + 7,-2: 0 + 7,-1: 0 + 8,-16: 0 + 8,-15: 0 + 8,-14: 0 + 8,-13: 0 + 8,-12: 0 + 8,-11: 0 + 8,-10: 0 + 8,-9: 0 + 8,-8: 0 + 8,-7: 0 + 8,-6: 0 + 8,-5: 0 + 8,-4: 0 + 8,-3: 0 + 8,-2: 0 + 8,-1: 0 + 9,-16: 0 + 9,-15: 0 + 9,-14: 0 + 9,-13: 0 + 9,-12: 0 + 9,-11: 0 + 9,-10: 0 + 9,-9: 0 + 9,-8: 0 + 9,-7: 0 + 9,-6: 0 + 9,-5: 0 + 9,-4: 0 + 9,-3: 0 + 9,-2: 0 + 9,-1: 0 + 10,-16: 0 + 10,-15: 0 + 10,-14: 0 + 10,-13: 0 + 10,-12: 0 + 10,-11: 0 + 10,-10: 0 + 10,-9: 0 + 10,-8: 0 + 10,-7: 0 + 10,-6: 0 + 10,-5: 0 + 10,-4: 0 + 10,-3: 0 + 10,-2: 0 + 10,-1: 0 + 11,-16: 0 + 11,-15: 0 + 11,-14: 0 + 11,-13: 0 + 11,-12: 0 + 11,-11: 0 + 11,-10: 0 + 11,-9: 0 + 11,-8: 0 + 11,-7: 0 + 11,-6: 0 + 11,-5: 0 + 11,-4: 0 + 11,-3: 0 + 11,-2: 0 + 11,-1: 0 + 12,-16: 0 + 12,-15: 0 + 12,-14: 0 + 12,-13: 0 + 12,-12: 0 + 12,-11: 0 + 12,-10: 0 + 12,-9: 0 + 12,-8: 0 + 12,-7: 0 + 12,-6: 0 + 12,-5: 0 + 12,-4: 0 + 12,-3: 0 + 12,-2: 0 + 12,-1: 0 + 13,-16: 0 + 13,-15: 0 + 13,-14: 0 + 13,-13: 0 + 13,-12: 0 + 13,-11: 0 + 13,-10: 0 + 13,-9: 0 + 13,-8: 0 + 13,-7: 0 + 13,-6: 0 + 13,-5: 0 + 13,-4: 0 + 13,-3: 0 + 13,-2: 0 + 13,-1: 0 + 14,-16: 0 + 14,-15: 0 + 14,-14: 0 + 14,-13: 0 + 14,-12: 0 + 14,-11: 0 + 14,-10: 0 + 14,-9: 0 + 14,-8: 0 + 14,-7: 0 + 14,-6: 0 + 14,-5: 0 + 14,-4: 0 + 14,-3: 0 + 14,-2: 0 + 14,-1: 0 + 15,-16: 0 + 15,-15: 0 + 15,-14: 0 + 15,-13: 0 + 15,-12: 0 + 15,-11: 0 + 15,-10: 0 + 15,-9: 0 + 15,-8: 0 + 15,-7: 0 + 15,-6: 0 + 15,-5: 0 + 15,-4: 0 + 15,-3: 0 + 15,-2: 0 + 15,-1: 0 + -16,0: 0 + -16,1: 0 + -16,2: 0 + -16,3: 0 + -16,4: 0 + -16,5: 0 + -16,6: 0 + -16,7: 0 + -16,8: 0 + -16,9: 0 + -16,10: 0 + -16,11: 0 + -16,12: 0 + -16,13: 0 + -16,14: 0 + -16,15: 0 + -15,0: 0 + -15,1: 0 + -15,2: 0 + -15,3: 0 + -15,4: 0 + -15,5: 0 + -15,6: 0 + -15,7: 0 + -15,8: 0 + -15,9: 0 + -15,10: 0 + -15,11: 0 + -15,12: 0 + -15,13: 0 + -15,14: 0 + -15,15: 0 + -14,0: 0 + -14,1: 0 + -14,2: 0 + -14,3: 0 + -14,4: 0 + -14,5: 0 + -14,6: 0 + -14,7: 0 + -14,8: 0 + -14,9: 0 + -14,10: 0 + -14,11: 0 + -14,12: 0 + -14,13: 0 + -14,14: 0 + -14,15: 0 + -13,0: 0 + -13,1: 0 + -13,2: 0 + -13,3: 0 + -13,4: 0 + -13,5: 0 + -13,6: 0 + -13,7: 0 + -13,8: 0 + -13,9: 0 + -13,10: 0 + -13,11: 0 + -13,12: 0 + -13,13: 0 + -13,14: 0 + -13,15: 0 + -12,0: 0 + -12,1: 0 + -12,2: 0 + -12,3: 0 + -12,4: 0 + -12,5: 0 + -12,6: 0 + -12,7: 0 + -12,8: 0 + -12,9: 0 + -12,10: 0 + -12,11: 0 + -12,12: 0 + -12,13: 0 + -12,14: 0 + -12,15: 0 + -11,0: 0 + -11,1: 0 + -11,2: 0 + -11,3: 0 + -11,4: 0 + -11,5: 0 + -11,6: 0 + -11,7: 0 + -11,8: 0 + -11,9: 0 + -11,10: 0 + -11,11: 0 + -11,12: 0 + -11,13: 0 + -11,14: 0 + -11,15: 0 + -10,0: 0 + -10,1: 0 + -10,2: 0 + -10,3: 0 + -10,4: 0 + -10,5: 0 + -10,6: 0 + -10,7: 0 + -10,8: 0 + -10,9: 0 + -10,10: 0 + -10,11: 0 + -10,12: 0 + -10,13: 0 + -10,14: 0 + -10,15: 0 + -9,0: 0 + -9,1: 0 + -9,2: 0 + -9,3: 0 + -9,4: 0 + -9,5: 0 + -9,6: 0 + -9,7: 0 + -9,8: 0 + -9,9: 0 + -9,10: 0 + -9,11: 0 + -9,12: 0 + -9,13: 0 + -9,14: 0 + -8,0: 0 + -8,1: 0 + -8,2: 0 + -8,3: 0 + -8,4: 0 + -8,5: 0 + -8,6: 0 + -8,7: 0 + -8,8: 0 + -8,9: 0 + -8,10: 0 + -8,11: 0 + -8,12: 0 + -8,13: 0 + -8,14: 0 + -7,0: 0 + -7,1: 0 + -7,2: 0 + -7,3: 0 + -7,4: 0 + -7,5: 0 + -7,6: 0 + -7,7: 0 + -7,8: 0 + -7,9: 0 + -7,10: 0 + -7,11: 0 + -7,12: 0 + -7,13: 0 + -7,14: 0 + -6,0: 0 + -6,1: 0 + -6,2: 0 + -6,3: 0 + -6,4: 0 + -6,5: 0 + -6,6: 0 + -6,7: 0 + -6,8: 0 + -6,9: 0 + -6,10: 0 + -6,11: 0 + -6,12: 0 + -6,13: 0 + -6,14: 0 + -5,0: 0 + -5,1: 0 + -5,2: 0 + -5,3: 0 + -5,4: 0 + -5,5: 0 + -5,6: 0 + -5,7: 0 + -5,8: 0 + -5,9: 0 + -5,10: 0 + -5,11: 0 + -5,12: 0 + -5,13: 0 + -5,14: 0 + -4,0: 0 + -4,1: 0 + -4,2: 0 + -4,3: 0 + -4,4: 0 + -4,5: 0 + -4,6: 0 + -4,7: 0 + -4,8: 0 + -4,9: 0 + -4,10: 0 + -4,11: 0 + -4,12: 0 + -4,13: 0 + -3,0: 0 + -3,1: 0 + -3,2: 0 + -3,3: 0 + -3,4: 0 + -3,5: 0 + -3,6: 0 + -3,7: 0 + -3,8: 0 + -3,9: 0 + -3,10: 0 + -3,11: 0 + -3,12: 0 + -3,13: 0 + -2,0: 0 + -2,1: 0 + -2,2: 0 + -2,3: 0 + -2,4: 0 + -2,5: 0 + -2,6: 0 + -2,7: 0 + -2,8: 0 + -2,9: 0 + -2,10: 0 + -2,11: 0 + -2,12: 0 + -2,13: 0 + -1,0: 0 + -1,1: 0 + -1,2: 0 + -1,3: 0 + -1,4: 0 + -1,5: 0 + -1,6: 0 + -1,7: 0 + -1,8: 0 + -1,9: 0 + -1,10: 0 + -1,11: 0 + -1,12: 0 + -1,13: 0 + 0,0: 0 + 0,1: 0 + 0,2: 0 + 0,3: 0 + 0,4: 0 + 0,5: 0 + 0,6: 0 + 0,7: 0 + 0,8: 0 + 0,9: 0 + 0,10: 0 + 0,11: 0 + 0,12: 0 + 0,13: 0 + 1,0: 0 + 1,1: 0 + 1,2: 0 + 1,3: 0 + 1,4: 0 + 1,5: 0 + 1,6: 0 + 1,7: 0 + 1,8: 0 + 1,9: 0 + 1,10: 0 + 1,11: 0 + 1,12: 0 + 1,13: 0 + 2,0: 0 + 2,1: 0 + 2,2: 0 + 2,3: 0 + 2,4: 0 + 2,5: 0 + 2,6: 0 + 2,7: 0 + 2,8: 0 + 2,9: 0 + 2,10: 0 + 2,11: 0 + 2,12: 0 + 2,13: 0 + 3,0: 0 + 3,1: 0 + 3,2: 0 + 3,3: 0 + 3,4: 0 + 3,5: 0 + 3,6: 0 + 3,7: 0 + 3,8: 0 + 3,9: 0 + 3,10: 0 + 3,11: 0 + 3,12: 0 + 3,13: 0 + 4,0: 0 + 4,1: 0 + 4,2: 0 + 4,3: 0 + 4,4: 0 + 4,5: 0 + 4,6: 0 + 4,7: 0 + 4,8: 0 + 4,9: 0 + 4,10: 0 + 4,11: 0 + 4,12: 0 + 5,0: 0 + 5,1: 0 + 5,2: 0 + 5,3: 0 + 5,4: 0 + 5,5: 0 + 5,6: 0 + 5,7: 0 + 5,8: 0 + 5,9: 0 + 5,10: 0 + 5,11: 0 + 5,12: 0 + 6,0: 0 + 6,1: 0 + 6,2: 0 + 6,3: 0 + 6,4: 0 + 6,5: 0 + 6,6: 0 + 6,7: 0 + 6,8: 0 + 6,9: 0 + 6,10: 0 + 6,11: 0 + 6,12: 0 + 7,0: 0 + 7,1: 0 + 7,2: 0 + 7,3: 0 + 7,4: 0 + 7,5: 0 + 7,6: 0 + 7,7: 0 + 7,8: 0 + 7,9: 0 + 7,10: 0 + 7,11: 0 + 7,12: 0 + 8,0: 0 + 8,1: 0 + 8,2: 0 + 8,3: 0 + 8,4: 0 + 8,5: 0 + 8,6: 0 + 8,7: 0 + 8,8: 0 + 8,9: 0 + 8,10: 0 + 8,11: 0 + 8,12: 0 + 9,0: 0 + 9,1: 0 + 9,2: 0 + 9,3: 0 + 9,4: 0 + 9,5: 0 + 9,6: 0 + 9,7: 0 + 9,8: 0 + 9,9: 0 + 9,10: 0 + 9,11: 0 + 9,12: 0 + 10,0: 0 + 10,1: 0 + 10,2: 0 + 10,3: 0 + 10,4: 0 + 10,5: 0 + 10,6: 0 + 10,7: 0 + 10,8: 0 + 10,9: 0 + 10,10: 0 + 10,11: 0 + 10,12: 0 + 11,0: 0 + 11,1: 0 + 11,2: 0 + 11,3: 0 + 11,4: 0 + 11,5: 0 + 11,6: 0 + 11,7: 0 + 11,8: 0 + 11,9: 0 + 11,10: 0 + 11,11: 0 + 11,12: 0 + 12,0: 0 + 12,1: 0 + 12,2: 0 + 12,3: 0 + 12,4: 0 + 12,5: 0 + 12,6: 0 + 12,7: 0 + 12,8: 0 + 12,9: 0 + 12,10: 0 + 12,11: 0 + 12,12: 0 + 13,0: 0 + 13,1: 0 + 13,2: 0 + 13,3: 0 + 13,4: 0 + 13,5: 0 + 13,6: 0 + 13,7: 0 + 13,8: 0 + 13,9: 0 + 13,10: 0 + 13,11: 0 + 13,12: 0 + 13,13: 0 + 13,14: 0 + 13,15: 0 + 14,0: 0 + 14,1: 0 + 14,2: 0 + 14,3: 0 + 14,4: 0 + 14,5: 0 + 14,6: 0 + 14,7: 0 + 14,8: 0 + 14,9: 0 + 14,10: 0 + 14,11: 0 + 14,12: 0 + 14,13: 0 + 14,14: 0 + 14,15: 0 + 15,0: 0 + 15,1: 0 + 15,2: 0 + 15,3: 0 + 15,4: 0 + 15,5: 0 + 15,6: 0 + 15,7: 0 + 15,8: 0 + 15,9: 0 + 15,10: 0 + 15,11: 0 + 15,12: 0 + 15,13: 0 + 15,14: 0 + 15,15: 0 + 16,0: 0 + 16,1: 0 + 16,2: 0 + 16,3: 0 + 16,4: 0 + 16,5: 0 + 16,6: 0 + 16,7: 0 + 16,8: 0 + 16,9: 0 + 16,10: 0 + 16,11: 0 + 16,12: 0 + 16,13: 0 + 16,14: 0 + 16,15: 0 + 17,0: 0 + 17,1: 0 + 17,2: 0 + 17,3: 0 + 17,4: 0 + 17,5: 0 + 17,6: 0 + 17,7: 0 + 17,8: 0 + 17,9: 0 + 17,10: 0 + 17,11: 0 + 17,12: 0 + 18,0: 0 + 18,1: 0 + 18,2: 0 + 18,3: 0 + 18,4: 0 + 18,5: 0 + 18,6: 0 + 18,7: 0 + 18,8: 0 + 18,9: 0 + 18,10: 0 + 18,11: 0 + 18,12: 0 + 19,0: 0 + 19,1: 0 + 19,2: 0 + 19,3: 0 + 19,4: 0 + 19,5: 0 + 19,6: 0 + 19,7: 0 + 19,8: 0 + 19,9: 0 + 19,10: 0 + 19,11: 0 + 19,12: 0 + 20,0: 0 + 20,1: 0 + 20,2: 0 + 20,3: 0 + 20,4: 0 + 20,5: 0 + 20,6: 0 + 20,7: 0 + 20,8: 0 + 20,9: 0 + 20,10: 0 + 20,11: 0 + 20,12: 0 + 21,0: 0 + 21,1: 0 + 21,2: 0 + 21,3: 0 + 21,4: 0 + 21,5: 0 + 21,6: 0 + 21,7: 0 + 21,8: 0 + 21,9: 0 + 21,10: 0 + 21,11: 0 + 21,12: 0 + 22,0: 0 + 22,1: 0 + 22,2: 0 + 22,3: 0 + 22,4: 0 + 22,5: 0 + 22,6: 0 + 22,7: 0 + 22,8: 0 + 22,9: 0 + 22,10: 0 + 22,11: 0 + 22,12: 0 + 23,0: 0 + 23,1: 0 + 23,2: 0 + 23,3: 0 + 23,4: 0 + 23,5: 0 + 23,6: 0 + 23,7: 0 + 23,8: 0 + 23,9: 0 + 23,10: 0 + 23,11: 0 + 23,12: 0 + 24,0: 0 + 24,1: 0 + 24,2: 0 + 24,3: 0 + 24,4: 0 + 24,5: 0 + 24,6: 0 + 24,7: 0 + 24,8: 0 + 24,9: 0 + 24,10: 0 + 24,11: 0 + 24,12: 0 + 25,0: 0 + 25,1: 0 + 25,2: 0 + 25,3: 0 + 25,4: 0 + 25,5: 0 + 25,6: 0 + 25,7: 0 + 25,8: 0 + 25,9: 0 + 25,10: 0 + 25,11: 0 + 25,12: 0 + 26,0: 0 + 26,1: 0 + 26,2: 0 + 26,3: 0 + 26,4: 0 + 26,5: 0 + 26,6: 0 + 26,7: 0 + 26,8: 0 + 26,9: 0 + 26,10: 0 + 26,11: 0 + 26,12: 0 + 27,0: 0 + 27,1: 0 + 27,2: 0 + 27,3: 0 + 27,4: 0 + 27,5: 0 + 27,6: 0 + 27,7: 0 + 27,8: 0 + 27,9: 0 + 27,10: 0 + 27,11: 0 + 27,12: 0 + 28,0: 0 + 28,1: 0 + 28,2: 0 + 28,3: 0 + 28,4: 0 + 28,5: 0 + 28,6: 0 + 28,7: 0 + 28,8: 0 + 28,9: 0 + 28,10: 0 + 28,11: 0 + 28,12: 0 + 29,0: 0 + 29,1: 0 + 29,2: 0 + 29,3: 0 + 29,4: 0 + 29,5: 0 + 29,6: 0 + 29,7: 0 + 29,8: 0 + 29,9: 0 + 29,10: 0 + 29,11: 0 + 30,0: 0 + 30,1: 0 + 30,2: 0 + 30,3: 0 + 30,4: 0 + 30,5: 0 + 30,6: 0 + 30,7: 0 + 30,8: 0 + 30,9: 0 + 30,10: 0 + 30,11: 0 + 31,0: 0 + 31,1: 0 + 31,2: 0 + 31,3: 0 + 31,4: 0 + 31,5: 0 + 31,6: 0 + 31,7: 0 + 31,8: 0 + 31,9: 0 + 31,10: 0 + 31,11: 0 + 16,-16: 0 + 16,-15: 0 + 16,-14: 0 + 16,-13: 0 + 16,-12: 0 + 16,-11: 0 + 16,-10: 0 + 16,-9: 0 + 16,-8: 0 + 16,-7: 0 + 16,-6: 0 + 16,-5: 0 + 16,-4: 0 + 16,-3: 0 + 16,-2: 0 + 16,-1: 0 + 17,-16: 0 + 17,-15: 0 + 17,-14: 0 + 17,-13: 0 + 17,-12: 0 + 17,-11: 0 + 17,-10: 0 + 17,-9: 0 + 17,-8: 0 + 17,-7: 0 + 17,-6: 0 + 17,-5: 0 + 17,-4: 0 + 17,-3: 0 + 17,-2: 0 + 17,-1: 0 + 18,-16: 0 + 18,-15: 0 + 18,-14: 0 + 18,-13: 0 + 18,-12: 0 + 18,-11: 0 + 18,-10: 0 + 18,-9: 0 + 18,-8: 0 + 18,-7: 0 + 18,-6: 0 + 18,-5: 0 + 18,-4: 0 + 18,-3: 0 + 18,-2: 0 + 18,-1: 0 + 19,-16: 0 + 19,-15: 0 + 19,-14: 0 + 19,-13: 0 + 19,-12: 0 + 19,-11: 0 + 19,-10: 0 + 19,-9: 0 + 19,-8: 0 + 19,-7: 0 + 19,-6: 0 + 19,-5: 0 + 19,-4: 0 + 19,-3: 0 + 19,-2: 0 + 19,-1: 0 + 20,-16: 0 + 20,-15: 0 + 20,-14: 0 + 20,-13: 0 + 20,-12: 0 + 20,-11: 0 + 20,-10: 0 + 20,-9: 0 + 20,-8: 0 + 20,-7: 0 + 20,-6: 0 + 20,-5: 0 + 20,-4: 0 + 20,-3: 0 + 20,-2: 0 + 20,-1: 0 + 21,-16: 0 + 21,-15: 0 + 21,-14: 0 + 21,-13: 0 + 21,-12: 0 + 21,-11: 0 + 21,-10: 0 + 21,-9: 0 + 21,-8: 0 + 21,-7: 0 + 21,-6: 0 + 21,-5: 0 + 21,-4: 0 + 21,-3: 0 + 21,-2: 0 + 21,-1: 0 + 22,-16: 0 + 22,-15: 0 + 22,-14: 0 + 22,-13: 0 + 22,-12: 0 + 22,-11: 0 + 22,-10: 0 + 22,-9: 0 + 22,-8: 0 + 22,-7: 0 + 22,-6: 0 + 22,-5: 0 + 22,-4: 0 + 22,-3: 0 + 22,-2: 0 + 22,-1: 0 + 23,-16: 0 + 23,-15: 0 + 23,-14: 0 + 23,-13: 0 + 23,-12: 0 + 23,-11: 0 + 23,-10: 0 + 23,-9: 0 + 23,-8: 0 + 23,-7: 0 + 23,-6: 0 + 23,-5: 0 + 23,-4: 0 + 23,-3: 0 + 23,-2: 0 + 23,-1: 0 + 24,-16: 0 + 24,-15: 0 + 24,-14: 0 + 24,-13: 0 + 24,-12: 0 + 24,-11: 0 + 24,-10: 0 + 24,-9: 0 + 24,-8: 0 + 24,-7: 0 + 24,-6: 0 + 24,-5: 0 + 24,-4: 0 + 24,-3: 0 + 24,-2: 0 + 24,-1: 0 + 25,-16: 0 + 25,-15: 0 + 25,-14: 0 + 25,-13: 0 + 25,-12: 0 + 25,-11: 0 + 25,-10: 0 + 25,-9: 0 + 25,-8: 0 + 25,-7: 0 + 25,-6: 0 + 25,-5: 0 + 25,-4: 0 + 25,-3: 0 + 25,-2: 0 + 25,-1: 0 + 26,-16: 0 + 26,-15: 0 + 26,-14: 0 + 26,-13: 0 + 26,-12: 0 + 26,-11: 0 + 26,-10: 0 + 26,-9: 0 + 26,-8: 0 + 26,-7: 0 + 26,-6: 0 + 26,-5: 0 + 26,-4: 0 + 26,-3: 0 + 26,-2: 0 + 26,-1: 0 + 27,-16: 0 + 27,-15: 0 + 27,-14: 0 + 27,-13: 0 + 27,-12: 0 + 27,-11: 0 + 27,-10: 0 + 27,-9: 0 + 27,-8: 0 + 27,-7: 0 + 27,-6: 0 + 27,-5: 0 + 27,-4: 0 + 27,-3: 0 + 27,-2: 0 + 27,-1: 0 + 28,-15: 0 + 28,-14: 0 + 28,-13: 0 + 28,-12: 0 + 28,-11: 0 + 28,-10: 0 + 28,-9: 0 + 28,-8: 0 + 28,-7: 0 + 28,-6: 0 + 28,-5: 0 + 28,-4: 0 + 28,-3: 0 + 28,-2: 0 + 28,-1: 0 + 29,-14: 0 + 29,-13: 0 + 29,-12: 0 + 29,-11: 0 + 29,-10: 0 + 29,-9: 0 + 29,-8: 0 + 29,-7: 0 + 29,-6: 0 + 29,-5: 0 + 29,-4: 0 + 29,-3: 0 + 29,-2: 0 + 29,-1: 0 + 30,-14: 0 + 30,-13: 0 + 30,-12: 0 + 30,-11: 0 + 30,-10: 0 + 30,-9: 0 + 30,-8: 0 + 30,-7: 0 + 30,-6: 0 + 30,-5: 0 + 30,-4: 0 + 30,-3: 0 + 30,-2: 0 + 30,-1: 0 + 31,-14: 0 + 31,-13: 0 + 31,-12: 0 + 31,-11: 0 + 31,-10: 0 + 31,-9: 0 + 31,-8: 0 + 31,-7: 0 + 31,-6: 0 + 31,-5: 0 + 31,-4: 0 + 31,-3: 0 + 31,-2: 0 + 31,-1: 0 + -32,0: 0 + -32,1: 0 + -32,2: 0 + -32,3: 0 + -32,4: 0 + -32,5: 0 + -32,6: 0 + -32,7: 0 + -32,8: 0 + -32,9: 0 + -32,10: 0 + -32,11: 0 + -32,12: 0 + -32,13: 0 + -32,14: 0 + -32,15: 0 + -31,0: 0 + -31,1: 0 + -31,2: 0 + -31,3: 0 + -31,4: 0 + -31,5: 0 + -31,6: 0 + -31,7: 0 + -31,8: 0 + -31,9: 0 + -31,10: 0 + -31,11: 0 + -31,12: 0 + -31,13: 0 + -31,14: 0 + -31,15: 0 + -30,0: 0 + -30,1: 0 + -30,2: 0 + -30,3: 0 + -30,4: 0 + -30,5: 0 + -30,6: 0 + -30,7: 0 + -30,8: 0 + -30,9: 0 + -30,10: 0 + -30,11: 0 + -30,12: 0 + -30,13: 0 + -30,14: 0 + -30,15: 0 + -29,0: 0 + -29,1: 0 + -29,2: 0 + -29,3: 0 + -29,4: 0 + -29,5: 0 + -29,6: 0 + -29,7: 0 + -29,8: 0 + -29,9: 0 + -29,10: 0 + -29,11: 0 + -29,12: 0 + -29,13: 0 + -29,14: 0 + -29,15: 0 + -28,0: 0 + -28,1: 0 + -28,2: 0 + -28,3: 0 + -28,4: 0 + -28,5: 0 + -28,6: 0 + -28,7: 0 + -28,8: 0 + -28,9: 0 + -28,10: 0 + -28,11: 0 + -28,12: 0 + -28,13: 0 + -28,14: 0 + -28,15: 0 + -27,0: 0 + -27,1: 0 + -27,2: 0 + -27,3: 0 + -27,4: 0 + -27,5: 0 + -27,6: 0 + -27,7: 0 + -27,8: 0 + -27,9: 0 + -27,10: 0 + -27,11: 0 + -27,12: 0 + -27,13: 0 + -27,14: 0 + -27,15: 0 + -26,0: 0 + -26,1: 0 + -26,2: 0 + -26,3: 0 + -26,4: 0 + -26,5: 0 + -26,6: 0 + -26,7: 0 + -26,8: 0 + -26,9: 0 + -26,10: 0 + -26,11: 0 + -26,12: 0 + -26,13: 0 + -26,14: 0 + -26,15: 0 + -25,0: 0 + -25,1: 0 + -25,2: 0 + -25,3: 0 + -25,4: 0 + -25,5: 0 + -25,6: 0 + -25,7: 0 + -25,8: 0 + -25,9: 0 + -25,10: 0 + -25,11: 0 + -25,12: 0 + -25,13: 0 + -25,14: 0 + -25,15: 0 + -24,0: 0 + -24,1: 0 + -24,2: 0 + -24,3: 0 + -24,4: 0 + -24,5: 0 + -24,6: 0 + -24,7: 0 + -24,8: 0 + -24,9: 0 + -24,10: 0 + -24,11: 0 + -24,12: 0 + -24,13: 0 + -24,14: 0 + -24,15: 0 + -23,0: 0 + -23,1: 0 + -23,2: 0 + -23,3: 0 + -23,4: 0 + -23,5: 0 + -23,6: 0 + -23,7: 0 + -23,8: 0 + -23,9: 0 + -23,10: 0 + -23,11: 0 + -23,12: 0 + -23,13: 0 + -23,14: 0 + -23,15: 0 + -22,0: 0 + -22,1: 0 + -22,2: 0 + -22,3: 0 + -22,4: 0 + -22,5: 0 + -22,6: 0 + -22,7: 0 + -22,8: 0 + -22,9: 0 + -22,10: 0 + -22,11: 0 + -22,12: 0 + -22,13: 0 + -22,14: 0 + -22,15: 0 + -21,0: 0 + -21,1: 0 + -21,2: 0 + -21,3: 0 + -21,4: 0 + -21,5: 0 + -21,6: 0 + -21,7: 0 + -21,8: 0 + -21,9: 0 + -21,10: 0 + -21,11: 0 + -21,12: 0 + -21,13: 0 + -21,14: 0 + -21,15: 0 + -20,0: 0 + -20,1: 0 + -20,2: 0 + -20,3: 0 + -20,4: 0 + -20,5: 0 + -20,6: 0 + -20,7: 0 + -20,8: 0 + -20,9: 0 + -20,10: 0 + -20,11: 0 + -20,12: 0 + -20,13: 0 + -20,14: 0 + -20,15: 0 + -19,0: 0 + -19,1: 0 + -19,2: 0 + -19,3: 0 + -19,4: 0 + -19,5: 0 + -19,6: 0 + -19,7: 0 + -19,8: 0 + -19,9: 0 + -19,10: 0 + -19,11: 0 + -19,12: 0 + -19,13: 0 + -19,14: 0 + -19,15: 0 + -18,0: 0 + -18,1: 0 + -18,2: 0 + -18,3: 0 + -18,4: 0 + -18,5: 0 + -18,6: 0 + -18,7: 0 + -18,8: 0 + -18,9: 0 + -18,10: 0 + -18,11: 0 + -18,12: 0 + -18,13: 0 + -18,14: 0 + -18,15: 0 + -17,0: 0 + -17,1: 0 + -17,2: 0 + -17,3: 0 + -17,4: 0 + -17,5: 0 + -17,6: 0 + -17,7: 0 + -17,8: 0 + -17,9: 0 + -17,10: 0 + -17,11: 0 + -17,12: 0 + -17,13: 0 + -17,14: 0 + -17,15: 0 + -32,-16: 0 + -32,-15: 0 + -32,-14: 0 + -32,-13: 0 + -32,-12: 0 + -32,-11: 0 + -32,-10: 0 + -32,-9: 0 + -32,-8: 0 + -32,-7: 0 + -32,-6: 0 + -32,-5: 0 + -32,-4: 0 + -32,-3: 0 + -32,-2: 0 + -32,-1: 0 + -31,-16: 0 + -31,-15: 0 + -31,-14: 0 + -31,-13: 0 + -31,-12: 0 + -31,-11: 0 + -31,-10: 0 + -31,-9: 0 + -31,-8: 0 + -31,-7: 0 + -31,-6: 0 + -31,-5: 0 + -31,-4: 0 + -31,-3: 0 + -31,-2: 0 + -31,-1: 0 + -30,-16: 0 + -30,-15: 0 + -30,-14: 0 + -30,-13: 0 + -30,-12: 0 + -30,-11: 0 + -30,-10: 0 + -30,-9: 0 + -30,-8: 0 + -30,-7: 0 + -30,-6: 0 + -30,-5: 0 + -30,-4: 0 + -30,-3: 0 + -30,-2: 0 + -30,-1: 0 + -29,-16: 0 + -29,-15: 0 + -29,-14: 0 + -29,-13: 0 + -29,-12: 0 + -29,-11: 0 + -29,-10: 0 + -29,-9: 0 + -29,-8: 0 + -29,-7: 0 + -29,-6: 0 + -29,-5: 0 + -29,-4: 0 + -29,-3: 0 + -29,-2: 0 + -29,-1: 0 + -28,-16: 0 + -28,-15: 0 + -28,-14: 0 + -28,-13: 0 + -28,-12: 0 + -28,-11: 0 + -28,-10: 0 + -28,-9: 0 + -28,-8: 0 + -28,-7: 0 + -28,-6: 0 + -28,-5: 0 + -28,-4: 0 + -28,-3: 0 + -28,-2: 0 + -28,-1: 0 + -27,-16: 0 + -27,-15: 0 + -27,-14: 0 + -27,-13: 0 + -27,-12: 0 + -27,-11: 0 + -27,-10: 0 + -27,-9: 0 + -27,-8: 0 + -27,-7: 0 + -27,-6: 0 + -27,-5: 0 + -27,-4: 0 + -27,-3: 0 + -27,-2: 0 + -27,-1: 0 + -26,-16: 0 + -26,-15: 0 + -26,-14: 0 + -26,-13: 0 + -26,-12: 0 + -26,-11: 0 + -26,-10: 0 + -26,-9: 0 + -26,-8: 0 + -26,-7: 0 + -26,-6: 0 + -26,-5: 0 + -26,-4: 0 + -26,-3: 0 + -26,-2: 0 + -26,-1: 0 + -25,-16: 0 + -25,-15: 0 + -25,-14: 0 + -25,-13: 0 + -25,-12: 0 + -25,-11: 0 + -25,-10: 0 + -25,-9: 0 + -25,-8: 0 + -25,-7: 0 + -25,-6: 0 + -25,-5: 0 + -25,-4: 0 + -25,-3: 0 + -25,-2: 0 + -25,-1: 0 + -24,-16: 0 + -24,-15: 0 + -24,-14: 0 + -24,-13: 0 + -24,-12: 0 + -24,-11: 0 + -24,-10: 0 + -24,-9: 0 + -24,-8: 0 + -24,-7: 0 + -24,-6: 0 + -24,-5: 0 + -24,-4: 0 + -24,-3: 0 + -24,-2: 0 + -24,-1: 0 + -23,-16: 0 + -23,-15: 0 + -23,-14: 0 + -23,-13: 0 + -23,-12: 0 + -23,-11: 0 + -23,-10: 0 + -23,-9: 0 + -23,-8: 0 + -23,-7: 0 + -23,-6: 0 + -23,-5: 0 + -23,-4: 0 + -23,-3: 0 + -23,-2: 0 + -23,-1: 0 + -22,-16: 0 + -22,-15: 0 + -22,-14: 0 + -22,-13: 0 + -22,-12: 0 + -22,-11: 0 + -22,-10: 0 + -22,-9: 0 + -22,-8: 0 + -22,-7: 0 + -22,-6: 0 + -22,-5: 0 + -22,-4: 0 + -22,-3: 0 + -22,-2: 0 + -22,-1: 0 + -21,-16: 0 + -21,-15: 0 + -21,-14: 0 + -21,-13: 0 + -21,-12: 0 + -21,-11: 0 + -21,-10: 0 + -21,-9: 0 + -21,-8: 0 + -21,-7: 0 + -21,-6: 0 + -21,-5: 0 + -21,-4: 0 + -21,-3: 0 + -21,-2: 0 + -21,-1: 0 + -20,-16: 0 + -20,-15: 0 + -20,-14: 0 + -20,-13: 0 + -20,-12: 0 + -20,-11: 0 + -20,-10: 0 + -20,-9: 0 + -20,-8: 0 + -20,-7: 0 + -20,-6: 0 + -20,-5: 0 + -20,-4: 0 + -20,-3: 0 + -20,-2: 0 + -20,-1: 0 + -19,-16: 0 + -19,-15: 0 + -19,-14: 0 + -19,-13: 0 + -19,-12: 0 + -19,-11: 0 + -19,-10: 0 + -19,-9: 0 + -19,-8: 0 + -19,-7: 0 + -19,-6: 0 + -19,-5: 0 + -19,-4: 0 + -19,-3: 0 + -19,-2: 0 + -19,-1: 0 + -18,-16: 0 + -18,-15: 0 + -18,-14: 0 + -18,-13: 0 + -18,-12: 0 + -18,-11: 0 + -18,-10: 0 + -18,-9: 0 + -18,-8: 0 + -18,-7: 0 + -18,-6: 0 + -18,-5: 0 + -18,-4: 0 + -18,-3: 0 + -18,-2: 0 + -18,-1: 0 + -17,-16: 0 + -17,-15: 0 + -17,-14: 0 + -17,-13: 0 + -17,-12: 0 + -17,-11: 0 + -17,-10: 0 + -17,-9: 0 + -17,-8: 0 + -17,-7: 0 + -17,-6: 0 + -17,-5: 0 + -17,-4: 0 + -17,-3: 0 + -17,-2: 0 + -17,-1: 0 + -32,-32: 0 + -32,-31: 0 + -32,-30: 0 + -32,-29: 0 + -32,-28: 0 + -32,-27: 0 + -32,-26: 0 + -32,-25: 0 + -32,-24: 0 + -32,-23: 0 + -32,-22: 0 + -32,-21: 0 + -32,-20: 0 + -32,-19: 0 + -32,-18: 0 + -32,-17: 0 + -31,-32: 0 + -31,-31: 0 + -31,-30: 0 + -31,-29: 0 + -31,-28: 0 + -31,-27: 0 + -31,-26: 0 + -31,-25: 0 + -31,-24: 0 + -31,-23: 0 + -31,-22: 0 + -31,-21: 0 + -31,-20: 0 + -31,-19: 0 + -31,-18: 0 + -31,-17: 0 + -30,-32: 0 + -30,-31: 0 + -30,-30: 0 + -30,-29: 0 + -30,-28: 0 + -30,-27: 0 + -30,-26: 0 + -30,-25: 0 + -30,-24: 0 + -30,-23: 0 + -30,-22: 0 + -30,-21: 0 + -30,-20: 0 + -30,-19: 0 + -30,-18: 0 + -30,-17: 0 + -29,-32: 0 + -29,-31: 0 + -29,-30: 0 + -29,-29: 0 + -29,-28: 0 + -29,-27: 0 + -29,-26: 0 + -29,-25: 0 + -29,-24: 0 + -29,-23: 0 + -29,-22: 0 + -29,-21: 0 + -29,-20: 0 + -29,-19: 0 + -29,-18: 0 + -29,-17: 0 + -28,-32: 0 + -28,-31: 0 + -28,-30: 0 + -28,-29: 0 + -28,-28: 0 + -28,-27: 0 + -28,-26: 0 + -28,-25: 0 + -28,-24: 0 + -28,-23: 0 + -28,-22: 0 + -28,-21: 0 + -28,-20: 0 + -28,-19: 0 + -28,-18: 0 + -28,-17: 0 + -27,-32: 0 + -27,-31: 0 + -27,-30: 0 + -27,-29: 0 + -27,-28: 0 + -27,-27: 0 + -27,-26: 0 + -27,-25: 0 + -27,-24: 0 + -27,-23: 0 + -27,-22: 0 + -27,-21: 0 + -27,-20: 0 + -27,-19: 0 + -27,-18: 0 + -27,-17: 0 + -26,-32: 0 + -26,-31: 0 + -26,-30: 0 + -26,-29: 0 + -26,-28: 0 + -26,-27: 0 + -26,-26: 0 + -26,-25: 0 + -26,-24: 0 + -26,-23: 0 + -26,-22: 0 + -26,-21: 0 + -26,-20: 0 + -26,-19: 0 + -26,-18: 0 + -26,-17: 0 + -25,-32: 0 + -25,-31: 0 + -25,-30: 0 + -25,-29: 0 + -25,-28: 0 + -25,-27: 0 + -25,-26: 0 + -25,-25: 0 + -25,-24: 0 + -25,-23: 0 + -25,-22: 0 + -25,-21: 0 + -25,-20: 0 + -25,-19: 0 + -25,-18: 0 + -25,-17: 0 + -24,-32: 0 + -24,-31: 0 + -24,-30: 0 + -24,-29: 0 + -24,-28: 0 + -24,-27: 0 + -24,-26: 0 + -24,-25: 0 + -24,-24: 0 + -24,-23: 0 + -24,-22: 0 + -24,-21: 0 + -24,-20: 0 + -24,-19: 0 + -24,-18: 0 + -24,-17: 0 + -23,-32: 0 + -23,-31: 0 + -23,-30: 0 + -23,-29: 0 + -23,-28: 0 + -23,-27: 0 + -23,-26: 0 + -23,-25: 0 + -23,-24: 0 + -23,-23: 0 + -23,-22: 0 + -23,-21: 0 + -23,-20: 0 + -23,-19: 0 + -23,-18: 0 + -23,-17: 0 + -22,-32: 0 + -22,-31: 0 + -22,-30: 0 + -22,-29: 0 + -22,-28: 0 + -22,-27: 0 + -22,-26: 0 + -22,-25: 0 + -22,-24: 0 + -22,-23: 0 + -22,-22: 0 + -22,-21: 0 + -22,-20: 0 + -22,-19: 0 + -22,-18: 0 + -22,-17: 0 + -21,-32: 0 + -21,-31: 0 + -21,-30: 0 + -21,-29: 0 + -21,-28: 0 + -21,-27: 0 + -21,-26: 0 + -21,-25: 0 + -21,-24: 0 + -21,-23: 0 + -21,-22: 0 + -21,-21: 0 + -21,-20: 0 + -21,-19: 0 + -21,-18: 0 + -21,-17: 0 + -20,-32: 0 + -20,-31: 0 + -20,-30: 0 + -20,-29: 0 + -20,-28: 0 + -20,-27: 0 + -20,-26: 0 + -20,-25: 0 + -20,-24: 0 + -20,-23: 0 + -20,-22: 0 + -20,-21: 0 + -20,-20: 0 + -20,-19: 0 + -20,-18: 0 + -20,-17: 0 + -19,-32: 0 + -19,-31: 0 + -19,-30: 0 + -19,-29: 0 + -19,-28: 0 + -19,-27: 0 + -19,-26: 0 + -19,-25: 0 + -19,-24: 0 + -19,-23: 0 + -19,-22: 0 + -19,-21: 0 + -19,-20: 0 + -19,-19: 0 + -19,-18: 0 + -19,-17: 0 + -18,-32: 0 + -18,-31: 0 + -18,-30: 0 + -18,-29: 0 + -18,-28: 0 + -18,-27: 0 + -18,-26: 0 + -18,-25: 0 + -18,-24: 0 + -18,-23: 0 + -18,-22: 0 + -18,-21: 0 + -18,-20: 0 + -18,-19: 0 + -18,-18: 0 + -18,-17: 0 + -17,-32: 0 + -17,-31: 0 + -17,-30: 0 + -17,-29: 0 + -17,-28: 0 + -17,-27: 0 + -17,-26: 0 + -17,-25: 0 + -17,-24: 0 + -17,-23: 0 + -17,-22: 0 + -17,-21: 0 + -17,-20: 0 + -17,-19: 0 + -17,-18: 0 + -17,-17: 0 + -16,-32: 0 + -16,-31: 0 + -16,-30: 0 + -16,-29: 0 + -16,-28: 0 + -16,-27: 0 + -16,-26: 0 + -16,-25: 0 + -16,-24: 0 + -16,-23: 0 + -16,-22: 0 + -16,-21: 0 + -16,-20: 0 + -16,-19: 0 + -16,-18: 0 + -16,-17: 0 + -15,-32: 0 + -15,-31: 0 + -15,-30: 0 + -15,-29: 0 + -15,-28: 0 + -15,-27: 0 + -15,-26: 0 + -15,-25: 0 + -15,-24: 0 + -15,-23: 0 + -15,-22: 0 + -15,-21: 0 + -15,-20: 0 + -15,-19: 0 + -15,-18: 0 + -15,-17: 0 + -14,-32: 0 + -14,-31: 0 + -14,-30: 0 + -14,-29: 0 + -14,-28: 0 + -14,-27: 0 + -14,-26: 0 + -14,-25: 0 + -14,-24: 0 + -14,-23: 0 + -14,-22: 0 + -14,-21: 0 + -14,-20: 0 + -14,-19: 0 + -14,-18: 0 + -14,-17: 0 + -13,-32: 0 + -13,-31: 0 + -13,-30: 0 + -13,-29: 0 + -13,-28: 0 + -13,-27: 0 + -13,-26: 0 + -13,-25: 0 + -13,-24: 0 + -13,-23: 0 + -13,-22: 0 + -13,-21: 0 + -13,-20: 0 + -13,-19: 0 + -13,-18: 0 + -13,-17: 0 + -12,-31: 0 + -12,-30: 0 + -12,-29: 0 + -12,-28: 0 + -12,-27: 0 + -12,-26: 0 + -12,-25: 0 + -12,-24: 0 + -12,-23: 0 + -12,-22: 0 + -12,-21: 0 + -12,-20: 0 + -12,-19: 0 + -12,-18: 0 + -12,-17: 0 + -11,-32: 0 + -11,-31: 0 + -11,-30: 0 + -11,-29: 0 + -11,-28: 0 + -11,-27: 0 + -11,-26: 0 + -11,-25: 0 + -11,-24: 0 + -11,-23: 0 + -11,-22: 0 + -11,-21: 0 + -11,-20: 0 + -11,-19: 0 + -11,-18: 0 + -11,-17: 0 + -10,-32: 0 + -10,-31: 0 + -10,-30: 0 + -10,-29: 0 + -10,-28: 0 + -10,-27: 0 + -10,-26: 0 + -10,-25: 0 + -10,-24: 0 + -10,-23: 0 + -10,-22: 0 + -10,-21: 0 + -10,-20: 0 + -10,-19: 0 + -10,-18: 0 + -10,-17: 0 + -9,-32: 0 + -9,-31: 0 + -9,-30: 0 + -9,-28: 0 + -9,-27: 0 + -9,-26: 0 + -9,-25: 0 + -9,-24: 0 + -9,-23: 0 + -9,-22: 0 + -9,-21: 0 + -9,-20: 0 + -9,-19: 0 + -9,-18: 0 + -9,-17: 0 + -8,-32: 0 + -8,-31: 0 + -8,-30: 0 + -8,-28: 0 + -8,-27: 0 + -8,-26: 0 + -8,-25: 0 + -8,-24: 0 + -8,-23: 0 + -8,-22: 0 + -8,-21: 0 + -8,-20: 0 + -8,-19: 0 + -8,-18: 0 + -8,-17: 0 + -7,-32: 0 + -7,-31: 0 + -7,-30: 0 + -7,-28: 0 + -7,-27: 0 + -7,-26: 0 + -7,-25: 0 + -7,-24: 0 + -7,-23: 0 + -7,-22: 0 + -7,-21: 0 + -7,-20: 0 + -7,-19: 0 + -7,-18: 0 + -7,-17: 0 + -6,-32: 0 + -6,-31: 0 + -6,-30: 0 + -6,-29: 0 + -6,-28: 0 + -6,-27: 0 + -6,-26: 0 + -6,-25: 0 + -6,-24: 0 + -6,-23: 0 + -6,-22: 0 + -6,-21: 0 + -6,-20: 0 + -6,-19: 0 + -6,-18: 0 + -6,-17: 0 + -5,-32: 0 + -5,-31: 0 + -5,-30: 0 + -5,-29: 0 + -5,-28: 0 + -5,-27: 0 + -5,-26: 0 + -5,-25: 0 + -5,-24: 0 + -5,-23: 0 + -5,-22: 0 + -5,-21: 0 + -5,-20: 0 + -5,-19: 0 + -5,-18: 0 + -5,-17: 0 + -4,-32: 0 + -4,-31: 0 + -4,-30: 0 + -4,-28: 0 + -4,-27: 0 + -4,-26: 0 + -4,-25: 0 + -4,-24: 0 + -4,-23: 0 + -4,-22: 0 + -4,-21: 0 + -4,-20: 0 + -4,-19: 0 + -4,-18: 0 + -4,-17: 0 + -3,-32: 0 + -3,-31: 0 + -3,-30: 0 + -3,-28: 0 + -3,-27: 0 + -3,-26: 0 + -3,-25: 0 + -3,-24: 0 + -3,-23: 0 + -3,-22: 0 + -3,-21: 0 + -3,-20: 0 + -3,-19: 0 + -3,-18: 0 + -3,-17: 0 + -2,-32: 0 + -2,-31: 0 + -2,-30: 0 + -2,-28: 0 + -2,-27: 0 + -2,-26: 0 + -2,-25: 0 + -2,-24: 0 + -2,-23: 0 + -2,-22: 0 + -2,-21: 0 + -2,-20: 0 + -2,-19: 0 + -2,-18: 0 + -2,-17: 0 + -1,-32: 0 + -1,-31: 0 + -1,-30: 0 + -1,-29: 0 + -1,-28: 0 + -1,-27: 0 + -1,-26: 0 + -1,-25: 0 + -1,-24: 0 + -1,-23: 0 + -1,-22: 0 + -1,-21: 0 + -1,-20: 0 + -1,-19: 0 + -1,-18: 0 + -1,-17: 0 + 0,-32: 0 + 0,-31: 0 + 0,-30: 0 + 0,-29: 0 + 0,-28: 0 + 0,-27: 0 + 0,-26: 0 + 0,-25: 0 + 0,-24: 0 + 0,-23: 0 + 0,-22: 0 + 0,-21: 0 + 0,-20: 0 + 0,-19: 0 + 0,-18: 0 + 0,-17: 0 + 1,-32: 0 + 1,-31: 0 + 1,-30: 0 + 1,-29: 0 + 1,-28: 0 + 1,-27: 0 + 1,-26: 0 + 1,-25: 0 + 1,-24: 0 + 1,-23: 0 + 1,-22: 0 + 1,-21: 0 + 1,-20: 0 + 1,-19: 0 + 1,-18: 0 + 1,-17: 0 + 2,-32: 0 + 2,-31: 0 + 2,-30: 0 + 2,-29: 0 + 2,-28: 0 + 2,-27: 0 + 2,-26: 0 + 2,-25: 0 + 2,-24: 0 + 2,-23: 0 + 2,-22: 0 + 2,-21: 0 + 2,-20: 0 + 2,-19: 0 + 2,-18: 0 + 2,-17: 0 + 3,-32: 0 + 3,-31: 0 + 3,-30: 0 + 3,-29: 0 + 3,-28: 0 + 3,-27: 0 + 3,-26: 0 + 3,-25: 0 + 3,-24: 0 + 3,-23: 0 + 3,-22: 0 + 3,-21: 0 + 3,-20: 0 + 3,-19: 0 + 3,-18: 0 + 3,-17: 0 + 4,-32: 0 + 4,-31: 0 + 4,-30: 0 + 4,-29: 0 + 4,-28: 0 + 4,-27: 0 + 4,-26: 0 + 4,-25: 0 + 4,-24: 0 + 4,-23: 0 + 4,-22: 0 + 4,-21: 0 + 4,-20: 0 + 4,-19: 0 + 4,-18: 0 + 4,-17: 0 + 5,-32: 0 + 5,-31: 0 + 5,-30: 0 + 5,-29: 0 + 5,-28: 0 + 5,-27: 0 + 5,-26: 0 + 5,-25: 0 + 5,-24: 0 + 5,-23: 0 + 5,-22: 0 + 5,-21: 0 + 5,-20: 0 + 5,-19: 0 + 5,-18: 0 + 5,-17: 0 + 6,-32: 0 + 6,-31: 0 + 6,-30: 0 + 6,-29: 0 + 6,-28: 0 + 6,-27: 0 + 6,-26: 0 + 6,-25: 0 + 6,-24: 0 + 6,-23: 0 + 6,-22: 0 + 6,-21: 0 + 6,-20: 0 + 6,-19: 0 + 6,-18: 0 + 6,-17: 0 + 7,-32: 0 + 7,-31: 0 + 7,-30: 0 + 7,-29: 0 + 7,-28: 0 + 7,-27: 0 + 7,-26: 0 + 7,-25: 0 + 7,-24: 0 + 7,-23: 0 + 7,-22: 0 + 7,-21: 0 + 7,-20: 0 + 7,-19: 0 + 7,-18: 0 + 7,-17: 0 + 8,-32: 0 + 8,-31: 0 + 8,-30: 0 + 8,-29: 0 + 8,-28: 0 + 8,-27: 0 + 8,-26: 0 + 8,-25: 0 + 8,-24: 0 + 8,-23: 0 + 8,-22: 0 + 8,-21: 0 + 8,-20: 0 + 8,-19: 0 + 8,-18: 0 + 8,-17: 0 + 9,-32: 0 + 9,-31: 0 + 9,-30: 0 + 9,-29: 0 + 9,-28: 0 + 9,-27: 0 + 9,-26: 0 + 9,-25: 0 + 9,-24: 0 + 9,-23: 0 + 9,-22: 0 + 9,-21: 0 + 9,-20: 0 + 9,-19: 0 + 9,-18: 0 + 9,-17: 0 + 10,-32: 0 + 10,-31: 0 + 10,-30: 0 + 10,-29: 0 + 10,-28: 0 + 10,-27: 0 + 10,-26: 0 + 10,-25: 0 + 10,-24: 0 + 10,-23: 0 + 10,-22: 0 + 10,-21: 0 + 10,-20: 0 + 10,-19: 0 + 10,-18: 0 + 10,-17: 0 + 11,-32: 0 + 11,-31: 0 + 11,-30: 0 + 11,-29: 0 + 11,-28: 0 + 11,-27: 0 + 11,-26: 0 + 11,-25: 0 + 11,-24: 0 + 11,-23: 0 + 11,-22: 0 + 11,-21: 0 + 11,-20: 0 + 11,-19: 0 + 11,-18: 0 + 11,-17: 0 + 12,-32: 0 + 12,-31: 0 + 12,-30: 0 + 12,-29: 0 + 12,-28: 0 + 12,-27: 0 + 12,-26: 0 + 12,-25: 0 + 12,-24: 0 + 12,-23: 0 + 12,-22: 0 + 12,-21: 0 + 12,-20: 0 + 12,-19: 0 + 12,-18: 0 + 12,-17: 0 + 13,-32: 0 + 13,-31: 0 + 13,-30: 0 + 13,-29: 0 + 13,-28: 0 + 13,-27: 0 + 13,-26: 0 + 13,-25: 0 + 13,-24: 0 + 13,-23: 0 + 13,-22: 0 + 13,-21: 0 + 13,-20: 0 + 13,-19: 0 + 13,-18: 0 + 13,-17: 0 + 14,-32: 0 + 14,-31: 0 + 14,-30: 0 + 14,-29: 0 + 14,-28: 0 + 14,-27: 0 + 14,-26: 0 + 14,-25: 0 + 14,-24: 0 + 14,-23: 0 + 14,-22: 0 + 14,-21: 0 + 14,-20: 0 + 14,-19: 0 + 14,-18: 0 + 14,-17: 0 + 15,-32: 0 + 15,-31: 0 + 15,-30: 0 + 15,-29: 0 + 15,-28: 0 + 15,-27: 0 + 15,-26: 0 + 15,-25: 0 + 15,-24: 0 + 15,-23: 0 + 15,-22: 0 + 15,-21: 0 + 15,-20: 0 + 15,-19: 0 + 15,-18: 0 + 15,-17: 0 + 16,-32: 0 + 16,-31: 0 + 16,-30: 0 + 16,-29: 0 + 16,-28: 0 + 16,-27: 0 + 16,-26: 0 + 16,-25: 0 + 16,-24: 0 + 16,-23: 0 + 16,-22: 0 + 16,-21: 0 + 16,-20: 0 + 16,-19: 0 + 16,-18: 0 + 16,-17: 0 + 17,-32: 0 + 17,-31: 0 + 17,-30: 0 + 17,-29: 0 + 17,-28: 0 + 17,-27: 0 + 17,-26: 0 + 17,-25: 0 + 17,-24: 0 + 17,-23: 0 + 17,-22: 0 + 17,-21: 0 + 17,-20: 0 + 17,-19: 0 + 17,-18: 0 + 17,-17: 0 + 18,-32: 0 + 18,-31: 0 + 18,-30: 0 + 18,-29: 0 + 18,-28: 0 + 18,-27: 0 + 18,-26: 0 + 18,-25: 0 + 18,-24: 0 + 18,-23: 0 + 18,-22: 0 + 18,-21: 0 + 18,-20: 0 + 18,-19: 0 + 18,-18: 0 + 18,-17: 0 + 19,-32: 0 + 19,-31: 0 + 19,-30: 0 + 19,-29: 0 + 19,-28: 0 + 19,-27: 0 + 19,-26: 0 + 19,-25: 0 + 19,-24: 0 + 19,-23: 0 + 19,-22: 0 + 19,-21: 0 + 19,-20: 0 + 19,-19: 0 + 19,-18: 0 + 19,-17: 0 + 20,-32: 0 + 20,-31: 0 + 20,-30: 0 + 20,-29: 0 + 20,-28: 0 + 20,-27: 0 + 20,-26: 0 + 20,-25: 0 + 20,-24: 0 + 20,-23: 0 + 20,-22: 0 + 20,-21: 0 + 20,-20: 0 + 20,-19: 0 + 20,-18: 0 + 20,-17: 0 + 21,-32: 0 + 21,-31: 0 + 21,-30: 0 + 21,-29: 0 + 21,-28: 0 + 21,-27: 0 + 21,-26: 0 + 21,-25: 0 + 21,-24: 0 + 21,-23: 0 + 21,-22: 0 + 21,-21: 0 + 21,-20: 0 + 21,-19: 0 + 21,-18: 0 + 21,-17: 0 + 22,-32: 0 + 22,-31: 0 + 22,-30: 0 + 22,-29: 0 + 22,-28: 0 + 22,-27: 0 + 22,-26: 0 + 22,-25: 0 + 22,-24: 0 + 22,-23: 0 + 22,-22: 0 + 22,-21: 0 + 22,-20: 0 + 22,-19: 0 + 22,-18: 0 + 22,-17: 0 + 23,-32: 0 + 23,-26: 0 + 23,-25: 0 + 23,-24: 0 + 23,-23: 0 + 23,-22: 0 + 23,-21: 0 + 23,-20: 0 + 23,-19: 0 + 23,-18: 0 + 23,-17: 0 + 24,-26: 0 + 24,-25: 0 + 24,-24: 0 + 24,-23: 0 + 24,-22: 0 + 24,-21: 0 + 24,-20: 0 + 24,-19: 0 + 24,-18: 0 + 24,-17: 0 + 25,-26: 0 + 25,-25: 0 + 25,-24: 0 + 25,-23: 0 + 25,-22: 0 + 25,-21: 0 + 25,-20: 0 + 25,-19: 0 + 25,-17: 0 + 26,-26: 0 + 26,-25: 0 + 26,-24: 0 + 26,-23: 0 + 26,-22: 0 + 26,-21: 0 + 26,-20: 0 + 26,-19: 0 + 27,-26: 0 + 27,-25: 0 + 27,-24: 0 + 27,-23: 0 + 27,-22: 0 + 27,-21: 0 + 27,-20: 0 + 28,-26: 0 + 28,-25: 0 + 29,-26: 0 + 29,-25: 0 + 30,-26: 0 + 30,-25: 0 + 30,-24: 0 + 30,-23: 0 + 30,-22: 0 + 30,-21: 0 + 30,-20: 0 + 30,-19: 0 + 30,-18: 0 + 30,-17: 0 + 31,-26: 0 + 31,-25: 0 + 31,-24: 0 + 31,-23: 0 + 31,-22: 0 + 31,-21: 0 + 31,-20: 0 + 31,-19: 0 + 31,-18: 0 + 31,-17: 0 + 6,25: 0 + 6,26: 0 + 7,24: 0 + 7,25: 0 + 7,26: 0 + 7,27: 0 + 7,28: 0 + 8,22: 0 + 8,23: 0 + 8,24: 0 + 8,25: 0 + 8,26: 0 + 8,27: 0 + 8,28: 0 + 8,29: 0 + 9,17: 0 + 9,18: 0 + 9,19: 0 + 9,20: 0 + 9,21: 0 + 9,22: 0 + 9,23: 0 + 9,24: 0 + 9,25: 0 + 9,26: 0 + 9,27: 0 + 9,28: 0 + 9,29: 0 + 9,30: 0 + 10,17: 0 + 10,18: 0 + 10,19: 0 + 10,20: 0 + 10,21: 0 + 10,22: 0 + 10,23: 0 + 10,24: 0 + 10,25: 0 + 10,26: 0 + 10,27: 0 + 10,28: 0 + 10,29: 0 + 10,30: 0 + 10,31: 0 + 11,17: 0 + 11,18: 0 + 11,19: 0 + 11,20: 0 + 11,21: 0 + 11,22: 0 + 11,23: 0 + 11,24: 0 + 11,25: 0 + 11,26: 0 + 11,27: 0 + 11,28: 0 + 11,29: 0 + 11,30: 0 + 11,31: 0 + 12,17: 0 + 12,18: 0 + 12,19: 0 + 12,20: 0 + 12,21: 0 + 12,22: 0 + 12,23: 0 + 12,24: 0 + 12,25: 0 + 12,26: 0 + 12,27: 0 + 12,28: 0 + 12,29: 0 + 12,30: 0 + 12,31: 0 + 13,16: 0 + 13,17: 0 + 13,18: 0 + 13,19: 0 + 13,20: 0 + 13,21: 0 + 13,22: 0 + 13,23: 0 + 13,24: 0 + 13,25: 0 + 13,26: 0 + 13,27: 0 + 13,28: 0 + 13,29: 0 + 13,30: 0 + 13,31: 0 + 14,16: 0 + 14,17: 0 + 14,18: 0 + 14,19: 0 + 14,20: 0 + 14,21: 0 + 14,22: 0 + 14,23: 0 + 14,24: 0 + 14,25: 0 + 14,26: 0 + 14,27: 0 + 14,28: 0 + 14,29: 0 + 14,30: 0 + 14,31: 0 + 15,16: 0 + 15,17: 0 + 15,18: 0 + 15,19: 0 + 15,20: 0 + 15,21: 0 + 15,22: 0 + 15,23: 0 + 15,24: 0 + 15,25: 0 + 15,26: 0 + 32,0: 0 + 32,1: 0 + 32,2: 0 + 32,3: 0 + 32,4: 0 + 32,5: 0 + 32,6: 0 + 32,7: 0 + 32,8: 0 + 32,9: 0 + 32,10: 0 + 32,11: 0 + 33,4: 0 + 33,5: 0 + 33,6: 0 + 33,7: 0 + 33,8: 0 + 34,0: 0 + 34,1: 0 + 34,2: 0 + 34,3: 0 + 34,4: 0 + 34,5: 0 + 34,6: 0 + 34,7: 0 + 34,8: 0 + 34,9: 0 + 34,10: 0 + 34,11: 0 + 35,0: 0 + 35,1: 0 + 35,2: 0 + 35,3: 0 + 35,4: 0 + 35,5: 0 + 35,6: 0 + 35,7: 0 + 35,8: 0 + 35,9: 0 + 35,10: 0 + 35,11: 0 + 36,0: 0 + 36,1: 0 + 36,2: 0 + 36,3: 0 + 36,4: 0 + 36,5: 0 + 36,6: 0 + 36,7: 0 + 36,8: 0 + 36,9: 0 + 36,10: 0 + 36,11: 0 + 37,0: 0 + 37,1: 0 + 37,2: 0 + 37,3: 0 + 37,4: 0 + 37,5: 0 + 37,6: 0 + 37,7: 0 + 37,8: 0 + 37,9: 0 + 37,10: 0 + 37,11: 0 + 38,0: 0 + 38,1: 0 + 38,2: 0 + 38,3: 0 + 38,4: 0 + 38,5: 0 + 38,6: 0 + 38,7: 0 + 38,8: 0 + 38,9: 0 + 38,10: 0 + 38,11: 0 + 39,0: 0 + 39,1: 0 + 39,2: 0 + 39,3: 0 + 39,4: 0 + 39,5: 0 + 39,6: 0 + 39,7: 0 + 39,8: 0 + 39,9: 0 + 39,10: 0 + 39,11: 0 + 40,4: 0 + 40,5: 0 + 40,6: 0 + 40,7: 0 + 40,8: 0 + 41,0: 0 + 41,1: 0 + 41,2: 0 + 41,3: 0 + 41,4: 0 + 41,5: 0 + 41,6: 0 + 41,7: 0 + 41,8: 0 + 41,9: 0 + 41,10: 0 + 42,0: 0 + 42,1: 0 + 42,2: 0 + 42,3: 0 + 42,4: 0 + 42,5: 0 + 42,6: 0 + 42,7: 0 + 42,8: 0 + 42,9: 0 + 42,10: 0 + 43,0: 0 + 43,1: 0 + 43,2: 0 + 43,3: 0 + 43,4: 0 + 43,5: 0 + 43,6: 0 + 43,7: 0 + 43,8: 0 + 43,9: 0 + 43,10: 0 + 44,0: 0 + 44,1: 0 + 44,2: 0 + 44,3: 0 + 44,4: 0 + 44,5: 0 + 44,6: 0 + 44,7: 0 + 44,8: 0 + 44,9: 0 + 44,10: 0 + 45,0: 0 + 45,1: 0 + 45,2: 0 + 45,3: 0 + 45,4: 0 + 45,5: 0 + 46,0: 0 + 46,1: 0 + 46,2: 0 + 46,3: 0 + 46,4: 0 + 46,5: 0 + 47,0: 0 + 47,1: 0 + 47,2: 0 + 47,3: 0 + 47,4: 0 + 47,5: 0 + 32,-14: 0 + 32,-13: 0 + 32,-12: 0 + 32,-11: 0 + 32,-10: 0 + 32,-9: 0 + 32,-8: 0 + 32,-7: 0 + 32,-6: 0 + 32,-5: 0 + 32,-4: 0 + 32,-3: 0 + 32,-2: 0 + 32,-1: 0 + 33,-14: 0 + 33,-13: 0 + 33,-12: 0 + 33,-11: 0 + 33,-10: 0 + 33,-6: 0 + 33,-5: 0 + 33,-4: 0 + 33,-3: 0 + 33,-2: 0 + 34,-14: 0 + 34,-13: 0 + 34,-12: 0 + 34,-11: 0 + 34,-10: 0 + 34,-7: 0 + 34,-6: 0 + 34,-5: 0 + 34,-4: 0 + 34,-3: 0 + 34,-2: 0 + 34,-1: 0 + 35,-14: 0 + 35,-13: 0 + 35,-12: 0 + 35,-11: 0 + 35,-10: 0 + 35,-8: 0 + 35,-7: 0 + 35,-6: 0 + 35,-5: 0 + 35,-4: 0 + 35,-3: 0 + 35,-2: 0 + 35,-1: 0 + 36,-14: 0 + 36,-13: 0 + 36,-12: 0 + 36,-11: 0 + 36,-10: 0 + 36,-8: 0 + 36,-7: 0 + 36,-6: 0 + 36,-5: 0 + 36,-4: 0 + 36,-3: 0 + 36,-2: 0 + 36,-1: 0 + 37,-14: 0 + 37,-13: 0 + 37,-12: 0 + 37,-11: 0 + 37,-10: 0 + 37,-8: 0 + 37,-7: 0 + 37,-6: 0 + 37,-5: 0 + 37,-4: 0 + 37,-3: 0 + 37,-2: 0 + 37,-1: 0 + 38,-14: 0 + 38,-13: 0 + 38,-12: 0 + 38,-11: 0 + 38,-10: 0 + 38,-8: 0 + 38,-7: 0 + 38,-6: 0 + 38,-5: 0 + 38,-4: 0 + 38,-3: 0 + 38,-2: 0 + 38,-1: 0 + 39,-14: 0 + 39,-13: 0 + 39,-12: 0 + 39,-11: 0 + 39,-10: 0 + 39,-7: 0 + 39,-6: 0 + 39,-5: 0 + 39,-4: 0 + 39,-3: 0 + 39,-2: 0 + 39,-1: 0 + 40,-14: 0 + 40,-13: 0 + 40,-12: 0 + 40,-11: 0 + 40,-10: 0 + 40,-6: 0 + 40,-5: 0 + 40,-4: 0 + 40,-3: 0 + 40,-2: 0 + 41,-14: 0 + 41,-13: 0 + 41,-12: 0 + 41,-11: 0 + 41,-10: 0 + 41,-9: 0 + 41,-8: 0 + 41,-7: 0 + 41,-6: 0 + 41,-5: 0 + 41,-4: 0 + 41,-3: 0 + 41,-2: 0 + 41,-1: 0 + 42,-14: 0 + 42,-13: 0 + 42,-12: 0 + 42,-11: 0 + 42,-10: 0 + 42,-9: 0 + 42,-8: 0 + 42,-7: 0 + 42,-6: 0 + 42,-5: 0 + 42,-4: 0 + 42,-3: 0 + 42,-2: 0 + 42,-1: 0 + 43,-14: 0 + 43,-13: 0 + 43,-12: 0 + 43,-11: 0 + 43,-10: 0 + 43,-9: 0 + 43,-8: 0 + 43,-7: 0 + 43,-6: 0 + 43,-5: 0 + 43,-4: 0 + 43,-3: 0 + 43,-2: 0 + 43,-1: 0 + 44,-14: 0 + 44,-13: 0 + 44,-12: 0 + 44,-11: 0 + 44,-10: 0 + 44,-9: 0 + 44,-8: 0 + 44,-7: 0 + 44,-6: 0 + 44,-5: 0 + 44,-4: 0 + 44,-3: 0 + 44,-2: 0 + 44,-1: 0 + 45,-9: 0 + 45,-8: 0 + 45,-7: 0 + 45,-6: 0 + 45,-5: 0 + 45,-4: 0 + 46,-9: 0 + 46,-8: 0 + 46,-7: 0 + 46,-6: 0 + 46,-5: 0 + 46,-4: 0 + 47,-9: 0 + 47,-8: 0 + 47,-7: 0 + 47,-6: 0 + 47,-5: 0 + 47,-4: 0 + 48,0: 0 + 48,1: 0 + 48,2: 0 + 48,3: 0 + 48,4: 0 + 48,5: 0 + 48,-9: 0 + 48,-8: 0 + 48,-7: 0 + 48,-6: 0 + 48,-5: 0 + 48,-4: 0 + 32,-26: 0 + 32,-25: 0 + 32,-24: 0 + 32,-23: 0 + 32,-22: 0 + 32,-21: 0 + 32,-20: 0 + 32,-19: 0 + 32,-18: 0 + 32,-17: 0 + 33,-26: 0 + 33,-25: 0 + 34,-26: 0 + 34,-25: 0 + 34,-24: 0 + 34,-23: 0 + 34,-22: 0 + 34,-21: 0 + 34,-20: 0 + 34,-19: 0 + 34,-18: 0 + 34,-17: 0 + 35,-26: 0 + 35,-25: 0 + 35,-24: 0 + 35,-23: 0 + 35,-22: 0 + 35,-21: 0 + 35,-20: 0 + 35,-19: 0 + 35,-18: 0 + 35,-17: 0 + 36,-26: 0 + 36,-25: 0 + 36,-24: 0 + 36,-23: 0 + 36,-22: 0 + 36,-21: 0 + 36,-20: 0 + 36,-19: 0 + 36,-18: 0 + 36,-17: 0 + 37,-26: 0 + 37,-25: 0 + 38,-26: 0 + 38,-25: 0 + 38,-24: 0 + 38,-23: 0 + 38,-22: 0 + 38,-21: 0 + 38,-20: 0 + 38,-19: 0 + 38,-18: 0 + 38,-17: 0 + 39,-26: 0 + 39,-25: 0 + 39,-24: 0 + 39,-23: 0 + 39,-22: 0 + 39,-21: 0 + 39,-20: 0 + 39,-19: 0 + 39,-18: 0 + 39,-17: 0 + 40,-26: 0 + 40,-25: 0 + 40,-24: 0 + 40,-23: 0 + 40,-22: 0 + 40,-21: 0 + 40,-20: 0 + 40,-19: 0 + 40,-18: 0 + 40,-17: 0 + 41,-26: 0 + 41,-25: 0 + 42,-26: 0 + 42,-25: 0 + 42,-24: 0 + 42,-23: 0 + 42,-22: 0 + 42,-21: 0 + 42,-20: 0 + 42,-19: 0 + 42,-18: 0 + 42,-17: 0 + 43,-26: 0 + 43,-25: 0 + 43,-24: 0 + 43,-23: 0 + 43,-22: 0 + 43,-21: 0 + 43,-20: 0 + 43,-19: 0 + 43,-18: 0 + 43,-17: 0 + 44,-26: 0 + 44,-25: 0 + 44,-24: 0 + 44,-23: 0 + 44,-22: 0 + 44,-21: 0 + 44,-20: 0 + 44,-19: 0 + 44,-18: 0 + 44,-17: 0 + 16,16: 0 + 16,17: 0 + 16,18: 0 + 16,19: 0 + 16,20: 0 + 16,21: 0 + 16,22: 0 + 16,23: 0 + 16,24: 0 + 16,25: 0 + 16,26: 0 + 16,27: 0 + 17,17: 0 + 17,18: 0 + 17,19: 0 + 17,20: 0 + 17,21: 0 + 17,22: 0 + 17,23: 0 + 17,24: 0 + 17,25: 0 + 17,26: 0 + 17,27: 0 + 17,28: 0 + 18,17: 0 + 18,18: 0 + 18,19: 0 + 18,20: 0 + 18,21: 0 + 18,22: 0 + 18,23: 0 + 18,24: 0 + 18,25: 0 + 18,26: 0 + 18,27: 0 + 18,28: 0 + 18,29: 0 + 18,30: 0 + 19,17: 0 + 19,18: 0 + 19,19: 0 + 19,20: 0 + 19,21: 0 + 19,22: 0 + 19,23: 0 + 19,24: 0 + 19,25: 0 + 19,26: 0 + 19,27: 0 + 19,28: 0 + 19,29: 0 + 19,30: 0 + 19,31: 0 + 20,17: 0 + 20,18: 0 + 20,19: 0 + 20,20: 0 + 20,21: 0 + 20,22: 0 + 20,23: 0 + 20,24: 0 + 20,25: 0 + 20,26: 0 + 20,27: 0 + 20,28: 0 + 20,29: 0 + 20,30: 0 + 20,31: 0 + 21,21: 0 + 21,22: 0 + 21,23: 0 + 21,24: 0 + 21,25: 0 + 21,26: 0 + 21,27: 0 + 21,28: 0 + 22,24: 0 + 22,25: 0 + 22,26: 0 + -16,-48: 0 + -16,-47: 0 + -16,-46: 0 + -16,-45: 0 + -16,-44: 0 + -16,-43: 0 + -16,-42: 0 + -16,-41: 0 + -16,-40: 0 + -16,-39: 0 + -16,-38: 0 + -16,-37: 0 + -16,-36: 0 + -16,-35: 0 + -16,-34: 0 + -16,-33: 0 + -15,-48: 0 + -15,-47: 0 + -15,-46: 0 + -15,-45: 0 + -15,-44: 0 + -15,-43: 0 + -15,-42: 0 + -15,-41: 0 + -15,-40: 0 + -15,-39: 0 + -15,-38: 0 + -15,-37: 0 + -15,-36: 0 + -15,-35: 0 + -15,-34: 0 + -15,-33: 0 + -14,-48: 0 + -14,-47: 0 + -14,-46: 0 + -14,-45: 0 + -14,-44: 0 + -14,-43: 0 + -14,-42: 0 + -14,-41: 0 + -14,-40: 0 + -14,-39: 0 + -14,-38: 0 + -14,-37: 0 + -14,-36: 0 + -14,-35: 0 + -14,-34: 0 + -14,-33: 0 + -13,-48: 0 + -13,-47: 0 + -13,-46: 0 + -13,-45: 0 + -13,-44: 0 + -13,-43: 0 + -13,-42: 0 + -13,-41: 0 + -13,-40: 0 + -13,-39: 0 + -13,-38: 0 + -13,-37: 0 + -13,-36: 0 + -13,-35: 0 + -13,-34: 0 + -13,-33: 0 + -12,-48: 0 + -12,-47: 0 + -12,-46: 0 + -12,-45: 0 + -12,-44: 0 + -12,-43: 0 + -12,-42: 0 + -12,-41: 0 + -12,-40: 0 + -12,-37: 0 + -12,-36: 0 + -12,-35: 0 + -12,-34: 0 + -11,-48: 0 + -11,-47: 0 + -11,-46: 0 + -11,-45: 0 + -11,-44: 0 + -11,-43: 0 + -11,-42: 0 + -11,-41: 0 + -11,-40: 0 + -11,-39: 0 + -11,-38: 0 + -11,-37: 0 + -11,-36: 0 + -11,-35: 0 + -11,-34: 0 + -11,-33: 0 + -10,-48: 0 + -10,-47: 0 + -10,-46: 0 + -10,-45: 0 + -10,-44: 0 + -10,-43: 0 + -10,-42: 0 + -10,-41: 0 + -10,-40: 0 + -10,-39: 0 + -10,-38: 0 + -10,-37: 0 + -10,-36: 0 + -10,-35: 0 + -10,-34: 0 + -10,-33: 0 + -9,-48: 0 + -9,-47: 0 + -9,-46: 0 + -9,-45: 0 + -9,-44: 0 + -9,-43: 0 + -9,-41: 0 + -9,-40: 0 + -9,-39: 0 + -9,-38: 0 + -9,-37: 0 + -9,-36: 0 + -9,-35: 0 + -9,-34: 0 + -9,-33: 0 + -8,-48: 0 + -8,-47: 0 + -8,-46: 0 + -8,-45: 0 + -8,-44: 0 + -8,-43: 0 + -8,-41: 0 + -8,-40: 0 + -8,-39: 0 + -8,-38: 0 + -8,-37: 0 + -8,-36: 0 + -8,-35: 0 + -8,-34: 0 + -8,-33: 0 + -7,-48: 0 + -7,-47: 0 + -7,-46: 0 + -7,-45: 0 + -7,-44: 0 + -7,-43: 0 + -7,-41: 0 + -7,-40: 0 + -7,-39: 0 + -7,-38: 0 + -7,-37: 0 + -7,-36: 0 + -7,-35: 0 + -7,-34: 0 + -7,-33: 0 + -6,-48: 0 + -6,-47: 0 + -6,-46: 0 + -6,-45: 0 + -6,-44: 0 + -6,-43: 0 + -6,-42: 0 + -6,-41: 0 + -6,-40: 0 + -6,-39: 0 + -6,-38: 0 + -6,-37: 0 + -6,-36: 0 + -6,-35: 0 + -6,-34: 0 + -6,-33: 0 + -5,-48: 0 + -5,-47: 0 + -5,-46: 0 + -5,-45: 0 + -5,-44: 0 + -5,-43: 0 + -5,-42: 0 + -5,-41: 0 + -5,-40: 0 + -5,-39: 0 + -5,-38: 0 + -5,-37: 0 + -5,-36: 0 + -5,-35: 0 + -5,-34: 0 + -5,-33: 0 + -4,-48: 0 + -4,-47: 0 + -4,-46: 0 + -4,-45: 0 + -4,-44: 0 + -4,-43: 0 + -4,-41: 0 + -4,-40: 0 + -4,-39: 0 + -4,-38: 0 + -4,-37: 0 + -4,-36: 0 + -4,-35: 0 + -4,-34: 0 + -4,-33: 0 + -3,-48: 0 + -3,-47: 0 + -3,-46: 0 + -3,-45: 0 + -3,-44: 0 + -3,-43: 0 + -3,-41: 0 + -3,-40: 0 + -3,-39: 0 + -3,-38: 0 + -3,-37: 0 + -3,-36: 0 + -3,-35: 0 + -3,-34: 0 + -3,-33: 0 + -2,-48: 0 + -2,-47: 0 + -2,-46: 0 + -2,-45: 0 + -2,-44: 0 + -2,-43: 0 + -2,-41: 0 + -2,-40: 0 + -2,-39: 0 + -2,-38: 0 + -2,-37: 0 + -2,-36: 0 + -2,-35: 0 + -2,-34: 0 + -2,-33: 0 + -1,-48: 0 + -1,-47: 0 + -1,-46: 0 + -1,-45: 0 + -1,-44: 0 + -1,-43: 0 + -1,-42: 0 + -1,-41: 0 + -1,-40: 0 + -1,-39: 0 + -1,-38: 0 + -1,-37: 0 + -1,-36: 0 + -1,-35: 0 + -1,-34: 0 + -1,-33: 0 + 0,-48: 0 + 0,-47: 0 + 0,-46: 0 + 0,-45: 0 + 0,-44: 0 + 0,-43: 0 + 0,-42: 0 + 0,-41: 0 + 0,-40: 0 + 0,-39: 0 + 0,-38: 0 + 0,-37: 0 + 0,-36: 0 + 0,-35: 0 + 0,-34: 0 + 0,-33: 0 + 1,-48: 0 + 1,-47: 0 + 1,-46: 0 + 1,-45: 0 + 1,-44: 0 + 1,-43: 0 + 1,-42: 0 + 1,-41: 0 + 1,-40: 0 + 1,-39: 0 + 1,-38: 0 + 1,-37: 0 + 1,-36: 0 + 1,-35: 0 + 1,-34: 0 + 1,-33: 0 + 2,-48: 0 + 2,-47: 0 + 2,-46: 0 + 2,-45: 0 + 2,-44: 0 + 2,-43: 0 + 2,-42: 0 + 2,-41: 0 + 2,-40: 0 + 2,-39: 0 + 2,-38: 0 + 2,-37: 0 + 2,-36: 0 + 2,-35: 0 + 2,-34: 0 + 2,-33: 0 + 3,-48: 0 + 3,-47: 0 + 3,-46: 0 + 3,-45: 0 + 3,-44: 0 + 3,-43: 0 + 3,-42: 0 + 3,-41: 0 + 3,-40: 0 + 3,-39: 0 + 3,-38: 0 + 3,-37: 0 + 3,-36: 0 + 3,-35: 0 + 3,-34: 0 + 3,-33: 0 + 4,-48: 0 + 4,-47: 0 + 4,-46: 0 + 4,-45: 0 + 4,-44: 0 + 4,-43: 0 + 4,-42: 0 + 4,-41: 0 + 4,-40: 0 + 4,-39: 0 + 4,-38: 0 + 4,-37: 0 + 4,-36: 0 + 4,-35: 0 + 4,-34: 0 + 4,-33: 0 + 5,-48: 0 + 5,-47: 0 + 5,-46: 0 + 5,-45: 0 + 5,-44: 0 + 5,-43: 0 + 5,-42: 0 + 5,-41: 0 + 5,-40: 0 + 5,-39: 0 + 5,-38: 0 + 5,-37: 0 + 5,-36: 0 + 5,-35: 0 + 5,-34: 0 + 5,-33: 0 + 6,-48: 0 + 6,-47: 0 + 6,-46: 0 + 6,-45: 0 + 6,-44: 0 + 6,-43: 0 + 6,-42: 0 + 6,-41: 0 + 6,-40: 0 + 6,-39: 0 + 6,-38: 0 + 6,-37: 0 + 6,-36: 0 + 6,-35: 0 + 6,-34: 0 + 6,-33: 0 + 7,-48: 0 + 7,-47: 0 + 7,-46: 0 + 7,-45: 0 + 7,-44: 0 + 7,-43: 0 + 7,-42: 0 + 7,-41: 0 + 7,-40: 0 + 7,-39: 0 + 7,-38: 0 + 7,-37: 0 + 7,-36: 0 + 7,-35: 0 + 7,-34: 0 + 7,-33: 0 + 8,-48: 0 + 8,-47: 0 + 8,-46: 0 + 8,-45: 0 + 8,-44: 0 + 8,-43: 0 + 8,-42: 0 + 8,-41: 0 + 8,-40: 0 + 8,-39: 0 + 8,-38: 0 + 8,-37: 0 + 8,-36: 0 + 8,-35: 0 + 8,-34: 0 + 8,-33: 0 + 9,-48: 0 + 9,-47: 0 + 9,-46: 0 + 9,-45: 0 + 9,-44: 0 + 9,-43: 0 + 9,-42: 0 + 9,-41: 0 + 9,-40: 0 + 9,-39: 0 + 9,-38: 0 + 9,-37: 0 + 9,-36: 0 + 9,-35: 0 + 9,-34: 0 + 9,-33: 0 + 10,-48: 0 + 10,-47: 0 + 10,-46: 0 + 10,-45: 0 + 10,-44: 0 + 10,-43: 0 + 10,-42: 0 + 10,-41: 0 + 10,-40: 0 + 10,-39: 0 + 10,-38: 0 + 10,-37: 0 + 10,-36: 0 + 10,-35: 0 + 10,-34: 0 + 10,-33: 0 + 11,-48: 0 + 11,-47: 0 + 11,-46: 0 + 11,-45: 0 + 11,-44: 0 + 11,-43: 0 + 11,-42: 0 + 11,-41: 0 + 11,-40: 0 + 11,-39: 0 + 11,-38: 0 + 11,-37: 0 + 11,-36: 0 + 11,-35: 0 + 11,-34: 0 + 11,-33: 0 + 12,-48: 0 + 12,-47: 0 + 12,-46: 0 + 12,-45: 0 + 12,-44: 0 + 12,-43: 0 + 12,-42: 0 + 12,-41: 0 + 12,-40: 0 + 12,-39: 0 + 12,-38: 0 + 12,-37: 0 + 12,-36: 0 + 12,-35: 0 + 12,-34: 0 + 12,-33: 0 + 13,-48: 0 + 13,-47: 0 + 13,-46: 0 + 13,-45: 0 + 13,-44: 0 + 13,-43: 0 + 13,-42: 0 + 13,-41: 0 + 13,-40: 0 + 13,-39: 0 + 13,-38: 0 + 13,-37: 0 + 13,-36: 0 + 13,-35: 0 + 13,-34: 0 + 13,-33: 0 + 14,-48: 0 + 14,-47: 0 + 14,-46: 0 + 14,-45: 0 + 14,-44: 0 + 14,-43: 0 + 14,-42: 0 + 14,-41: 0 + 14,-40: 0 + 14,-39: 0 + 14,-38: 0 + 14,-37: 0 + 14,-36: 0 + 14,-35: 0 + 14,-34: 0 + 14,-33: 0 + 15,-48: 0 + 15,-47: 0 + 15,-46: 0 + 15,-45: 0 + 15,-44: 0 + 15,-43: 0 + 15,-42: 0 + 15,-41: 0 + 15,-40: 0 + 15,-39: 0 + 15,-38: 0 + 15,-37: 0 + 15,-36: 0 + 15,-35: 0 + 15,-34: 0 + 15,-33: 0 + -32,-48: 0 + -32,-47: 0 + -32,-46: 0 + -32,-45: 0 + -32,-44: 0 + -32,-43: 0 + -32,-42: 0 + -32,-41: 0 + -32,-40: 0 + -32,-39: 0 + -32,-38: 0 + -32,-37: 0 + -32,-36: 0 + -32,-35: 0 + -32,-34: 0 + -32,-33: 0 + -31,-48: 0 + -31,-47: 0 + -31,-46: 0 + -31,-45: 0 + -31,-44: 0 + -31,-43: 0 + -31,-42: 0 + -31,-41: 0 + -31,-40: 0 + -31,-39: 0 + -31,-38: 0 + -31,-37: 0 + -31,-36: 0 + -31,-35: 0 + -31,-34: 0 + -31,-33: 0 + -30,-48: 0 + -30,-47: 0 + -30,-46: 0 + -30,-45: 0 + -30,-44: 0 + -30,-43: 0 + -30,-42: 0 + -30,-41: 0 + -30,-40: 0 + -30,-39: 0 + -30,-38: 0 + -30,-37: 0 + -30,-36: 0 + -30,-35: 0 + -30,-34: 0 + -30,-33: 0 + -29,-48: 0 + -29,-47: 0 + -29,-46: 0 + -29,-45: 0 + -29,-44: 0 + -29,-43: 0 + -29,-42: 0 + -29,-41: 0 + -29,-40: 0 + -29,-39: 0 + -29,-38: 0 + -29,-37: 0 + -29,-36: 0 + -29,-35: 0 + -29,-34: 0 + -29,-33: 0 + -28,-48: 0 + -28,-47: 0 + -28,-46: 0 + -28,-45: 0 + -28,-44: 0 + -28,-43: 0 + -28,-42: 0 + -28,-41: 0 + -28,-40: 0 + -28,-39: 0 + -28,-38: 0 + -28,-37: 0 + -28,-36: 0 + -28,-35: 0 + -28,-34: 0 + -28,-33: 0 + -27,-48: 0 + -27,-47: 0 + -27,-46: 0 + -27,-45: 0 + -27,-44: 0 + -27,-43: 0 + -27,-42: 0 + -27,-41: 0 + -27,-40: 0 + -27,-39: 0 + -27,-38: 0 + -27,-37: 0 + -27,-36: 0 + -27,-35: 0 + -27,-34: 0 + -27,-33: 0 + -26,-48: 0 + -26,-47: 0 + -26,-46: 0 + -26,-45: 0 + -26,-44: 0 + -26,-43: 0 + -26,-42: 0 + -26,-41: 0 + -26,-40: 0 + -26,-39: 0 + -26,-38: 0 + -26,-37: 0 + -26,-36: 0 + -26,-35: 0 + -26,-34: 0 + -26,-33: 0 + -25,-48: 0 + -25,-47: 0 + -25,-46: 0 + -25,-45: 0 + -25,-44: 0 + -25,-43: 0 + -25,-42: 0 + -25,-41: 0 + -25,-40: 0 + -25,-39: 0 + -25,-38: 0 + -25,-37: 0 + -25,-36: 0 + -25,-35: 0 + -25,-34: 0 + -25,-33: 0 + -24,-48: 0 + -24,-47: 0 + -24,-46: 0 + -24,-45: 0 + -24,-44: 0 + -24,-43: 0 + -24,-42: 0 + -24,-41: 0 + -24,-40: 0 + -24,-39: 0 + -24,-38: 0 + -24,-37: 0 + -24,-36: 0 + -24,-35: 0 + -24,-34: 0 + -24,-33: 0 + -23,-48: 0 + -23,-47: 0 + -23,-46: 0 + -23,-45: 0 + -23,-44: 0 + -23,-43: 0 + -23,-42: 0 + -23,-41: 0 + -23,-40: 0 + -23,-39: 0 + -23,-38: 0 + -23,-37: 0 + -23,-36: 0 + -23,-35: 0 + -23,-34: 0 + -23,-33: 0 + -22,-48: 0 + -22,-47: 0 + -22,-46: 0 + -22,-45: 0 + -22,-44: 0 + -22,-43: 0 + -22,-42: 0 + -22,-41: 0 + -22,-40: 0 + -22,-39: 0 + -22,-38: 0 + -22,-37: 0 + -22,-36: 0 + -22,-35: 0 + -22,-34: 0 + -22,-33: 0 + -21,-48: 0 + -21,-47: 0 + -21,-46: 0 + -21,-45: 0 + -21,-44: 0 + -21,-43: 0 + -21,-42: 0 + -21,-41: 0 + -21,-40: 0 + -21,-39: 0 + -21,-38: 0 + -21,-37: 0 + -21,-36: 0 + -21,-35: 0 + -21,-34: 0 + -21,-33: 0 + -20,-48: 0 + -20,-47: 0 + -20,-46: 0 + -20,-45: 0 + -20,-44: 0 + -20,-43: 0 + -20,-42: 0 + -20,-41: 0 + -20,-40: 0 + -20,-39: 0 + -20,-38: 0 + -20,-37: 0 + -20,-36: 0 + -20,-35: 0 + -20,-34: 0 + -20,-33: 0 + -19,-48: 0 + -19,-47: 0 + -19,-46: 0 + -19,-45: 0 + -19,-44: 0 + -19,-43: 0 + -19,-42: 0 + -19,-41: 0 + -19,-40: 0 + -19,-39: 0 + -19,-38: 0 + -19,-37: 0 + -19,-36: 0 + -19,-35: 0 + -19,-34: 0 + -19,-33: 0 + -18,-48: 0 + -18,-47: 0 + -18,-46: 0 + -18,-45: 0 + -18,-44: 0 + -18,-43: 0 + -18,-42: 0 + -18,-41: 0 + -18,-40: 0 + -18,-39: 0 + -18,-38: 0 + -18,-37: 0 + -18,-36: 0 + -18,-35: 0 + -18,-34: 0 + -18,-33: 0 + -17,-48: 0 + -17,-47: 0 + -17,-46: 0 + -17,-45: 0 + -17,-44: 0 + -17,-43: 0 + -17,-42: 0 + -17,-41: 0 + -17,-40: 0 + -17,-39: 0 + -17,-38: 0 + -17,-37: 0 + -17,-36: 0 + -17,-35: 0 + -17,-34: 0 + -17,-33: 0 + 16,-48: 0 + 16,-47: 0 + 16,-46: 0 + 16,-45: 0 + 16,-44: 0 + 16,-43: 0 + 16,-42: 0 + 16,-41: 0 + 16,-40: 0 + 16,-39: 0 + 16,-38: 0 + 16,-37: 0 + 16,-36: 0 + 16,-35: 0 + 16,-34: 0 + 16,-33: 0 + 17,-48: 0 + 17,-47: 0 + 17,-46: 0 + 17,-45: 0 + 17,-44: 0 + 17,-43: 0 + 17,-42: 0 + 17,-41: 0 + 17,-40: 0 + 17,-39: 0 + 17,-38: 0 + 17,-37: 0 + 17,-36: 0 + 17,-35: 0 + 17,-34: 0 + 17,-33: 0 + 18,-48: 0 + 18,-47: 0 + 18,-46: 0 + 18,-45: 0 + 18,-44: 0 + 18,-43: 0 + 18,-42: 0 + 18,-41: 0 + 18,-40: 0 + 18,-39: 0 + 18,-38: 0 + 18,-37: 0 + 18,-36: 0 + 18,-35: 0 + 18,-34: 0 + 18,-33: 0 + 19,-48: 0 + 19,-47: 0 + 19,-46: 0 + 19,-45: 0 + 19,-44: 0 + 19,-43: 0 + 19,-42: 0 + 19,-41: 0 + 19,-40: 0 + 19,-39: 0 + 19,-38: 0 + 19,-37: 0 + 19,-36: 0 + 19,-35: 0 + 19,-34: 0 + 19,-33: 0 + 20,-48: 0 + 20,-47: 0 + 20,-46: 0 + 20,-45: 0 + 20,-44: 0 + 20,-43: 0 + 20,-42: 0 + 20,-41: 0 + 20,-40: 0 + 20,-39: 0 + 20,-38: 0 + 20,-37: 0 + 20,-36: 0 + 20,-35: 0 + 20,-34: 0 + 20,-33: 0 + 21,-48: 0 + 21,-47: 0 + 21,-46: 0 + 21,-45: 0 + 21,-44: 0 + 21,-43: 0 + 21,-42: 0 + 21,-41: 0 + 21,-40: 0 + 21,-39: 0 + 21,-38: 0 + 21,-37: 0 + 21,-36: 0 + 21,-35: 0 + 21,-34: 0 + 21,-33: 0 + 22,-48: 0 + 22,-47: 0 + 22,-46: 0 + 22,-45: 0 + 22,-44: 0 + 22,-43: 0 + 22,-42: 0 + 22,-41: 0 + 22,-40: 0 + 22,-39: 0 + 22,-38: 0 + 22,-37: 0 + 22,-36: 0 + 22,-35: 0 + 22,-34: 0 + 22,-33: 0 + 23,-42: 0 + 23,-41: 0 + 23,-40: 0 + 23,-39: 0 + 23,-38: 0 + 23,-37: 0 + 23,-36: 0 + 23,-35: 0 + 23,-34: 0 + 23,-33: 0 + 0,-64: 0 + 0,-63: 0 + 0,-62: 0 + 0,-61: 0 + 0,-60: 0 + 0,-59: 0 + 0,-58: 0 + 0,-57: 0 + 0,-56: 0 + 0,-55: 0 + 0,-54: 0 + 0,-53: 0 + 0,-52: 0 + 0,-51: 0 + 0,-50: 0 + 0,-49: 0 + 1,-64: 0 + 1,-63: 0 + 1,-62: 0 + 1,-61: 0 + 1,-60: 0 + 1,-59: 0 + 1,-58: 0 + 1,-57: 0 + 1,-56: 0 + 1,-55: 0 + 1,-54: 0 + 1,-53: 0 + 1,-52: 0 + 1,-51: 0 + 1,-50: 0 + 1,-49: 0 + 2,-64: 0 + 2,-63: 0 + 2,-62: 0 + 2,-61: 0 + 2,-60: 0 + 2,-59: 0 + 2,-58: 0 + 2,-57: 0 + 2,-56: 0 + 2,-55: 0 + 2,-54: 0 + 2,-53: 0 + 2,-52: 0 + 2,-51: 0 + 2,-50: 0 + 2,-49: 0 + 3,-63: 0 + 3,-62: 0 + 3,-61: 0 + 3,-60: 0 + 3,-59: 0 + 3,-58: 0 + 3,-57: 0 + 3,-56: 0 + 3,-55: 0 + 3,-54: 0 + 3,-53: 0 + 3,-52: 0 + 3,-51: 0 + 3,-50: 0 + 3,-49: 0 + 4,-63: 0 + 4,-62: 0 + 4,-61: 0 + 4,-60: 0 + 4,-59: 0 + 4,-58: 0 + 4,-57: 0 + 4,-56: 0 + 4,-55: 0 + 4,-54: 0 + 4,-53: 0 + 4,-52: 0 + 4,-51: 0 + 4,-50: 0 + 4,-49: 0 + 5,-63: 0 + 5,-62: 0 + 5,-61: 0 + 5,-60: 0 + 5,-59: 0 + 5,-58: 0 + 5,-57: 0 + 5,-56: 0 + 5,-55: 0 + 5,-54: 0 + 5,-53: 0 + 5,-52: 0 + 5,-51: 0 + 5,-50: 0 + 5,-49: 0 + 6,-63: 0 + 6,-62: 0 + 6,-61: 0 + 6,-60: 0 + 6,-59: 0 + 6,-58: 0 + 6,-57: 0 + 6,-56: 0 + 6,-55: 0 + 6,-54: 0 + 6,-53: 0 + 6,-52: 0 + 6,-51: 0 + 6,-50: 0 + 6,-49: 0 + 7,-63: 0 + 7,-62: 0 + 7,-61: 0 + 7,-60: 0 + 7,-59: 0 + 7,-58: 0 + 7,-57: 0 + 7,-56: 0 + 7,-55: 0 + 7,-54: 0 + 7,-53: 0 + 7,-52: 0 + 7,-51: 0 + 7,-50: 0 + 7,-49: 0 + 8,-63: 0 + 8,-62: 0 + 8,-61: 0 + 8,-60: 0 + 8,-59: 0 + 8,-58: 0 + 8,-57: 0 + 8,-56: 0 + 8,-55: 0 + 8,-54: 0 + 8,-53: 0 + 8,-52: 0 + 8,-51: 0 + 8,-50: 0 + 8,-49: 0 + 9,-62: 0 + 9,-61: 0 + 9,-60: 0 + 9,-59: 0 + 9,-58: 0 + 9,-57: 0 + 9,-56: 0 + 9,-55: 0 + 9,-54: 0 + 9,-53: 0 + 9,-52: 0 + 9,-51: 0 + 9,-50: 0 + 9,-49: 0 + 10,-61: 0 + 10,-60: 0 + 10,-59: 0 + 10,-58: 0 + 10,-57: 0 + 10,-56: 0 + 10,-55: 0 + 10,-54: 0 + 10,-53: 0 + 10,-52: 0 + 10,-51: 0 + 10,-50: 0 + 10,-49: 0 + 11,-55: 0 + 11,-54: 0 + 11,-53: 0 + 11,-52: 0 + 11,-51: 0 + 11,-50: 0 + 11,-49: 0 + 12,-54: 0 + 12,-53: 0 + 12,-52: 0 + 12,-51: 0 + 12,-50: 0 + 12,-49: 0 + 13,-54: 0 + 13,-53: 0 + 13,-52: 0 + 13,-51: 0 + 13,-50: 0 + 13,-49: 0 + 14,-54: 0 + 14,-53: 0 + 14,-52: 0 + 14,-51: 0 + 14,-50: 0 + 14,-49: 0 + 15,-54: 0 + 15,-53: 0 + 15,-52: 0 + 15,-51: 0 + 15,-50: 0 + 15,-49: 0 + 16,-53: 0 + 16,-52: 0 + 16,-51: 0 + 16,-50: 0 + 16,-49: 0 + 17,-53: 0 + 17,-52: 0 + 17,-51: 0 + 17,-50: 0 + 17,-49: 0 + 18,-53: 0 + 18,-52: 0 + 18,-51: 0 + 18,-50: 0 + 18,-49: 0 + 19,-53: 0 + 19,-52: 0 + 19,-51: 0 + 19,-50: 0 + 19,-49: 0 + 20,-52: 0 + 20,-51: 0 + 20,-50: 0 + 20,-49: 0 + 21,-52: 0 + 21,-51: 0 + 21,-50: 0 + 21,-49: 0 + -16,-64: 0 + -16,-63: 0 + -16,-62: 0 + -16,-61: 0 + -16,-60: 0 + -16,-59: 0 + -16,-58: 0 + -16,-57: 0 + -16,-56: 0 + -16,-55: 0 + -16,-54: 0 + -16,-53: 0 + -16,-52: 0 + -16,-51: 0 + -16,-50: 0 + -16,-49: 0 + -15,-64: 0 + -15,-63: 0 + -15,-62: 0 + -15,-61: 0 + -15,-60: 0 + -15,-59: 0 + -15,-58: 0 + -15,-57: 0 + -15,-56: 0 + -15,-55: 0 + -15,-54: 0 + -15,-53: 0 + -15,-52: 0 + -15,-51: 0 + -15,-50: 0 + -15,-49: 0 + -14,-64: 0 + -14,-63: 0 + -14,-62: 0 + -14,-61: 0 + -14,-60: 0 + -14,-59: 0 + -14,-58: 0 + -14,-57: 0 + -14,-56: 0 + -14,-55: 0 + -14,-54: 0 + -14,-53: 0 + -14,-52: 0 + -14,-51: 0 + -14,-50: 0 + -14,-49: 0 + -13,-64: 0 + -13,-63: 0 + -13,-62: 0 + -13,-61: 0 + -13,-60: 0 + -13,-59: 0 + -13,-58: 0 + -13,-57: 0 + -13,-56: 0 + -13,-55: 0 + -13,-54: 0 + -13,-53: 0 + -13,-52: 0 + -13,-51: 0 + -13,-50: 0 + -13,-49: 0 + -12,-64: 0 + -12,-63: 0 + -12,-62: 0 + -12,-61: 0 + -12,-60: 0 + -12,-59: 0 + -12,-58: 0 + -12,-57: 0 + -12,-56: 0 + -12,-55: 0 + -12,-54: 0 + -12,-53: 0 + -12,-52: 0 + -12,-51: 0 + -12,-50: 0 + -12,-49: 0 + -11,-64: 0 + -11,-63: 0 + -11,-62: 0 + -11,-61: 0 + -11,-60: 0 + -11,-59: 0 + -11,-58: 0 + -11,-57: 0 + -11,-56: 0 + -11,-55: 0 + -11,-54: 0 + -11,-53: 0 + -11,-52: 0 + -11,-51: 0 + -11,-50: 0 + -11,-49: 0 + -10,-64: 0 + -10,-63: 0 + -10,-62: 0 + -10,-61: 0 + -10,-60: 0 + -10,-59: 0 + -10,-58: 0 + -10,-57: 0 + -10,-56: 0 + -10,-55: 0 + -10,-54: 0 + -10,-53: 0 + -10,-52: 0 + -10,-51: 0 + -10,-50: 0 + -10,-49: 0 + -9,-64: 0 + -9,-63: 0 + -9,-62: 0 + -9,-61: 0 + -9,-60: 0 + -9,-59: 0 + -9,-58: 0 + -9,-57: 0 + -9,-56: 0 + -9,-55: 0 + -9,-54: 0 + -9,-53: 0 + -9,-52: 0 + -9,-51: 0 + -9,-50: 0 + -9,-49: 0 + -8,-64: 0 + -8,-63: 0 + -8,-62: 0 + -8,-61: 0 + -8,-60: 0 + -8,-59: 0 + -8,-58: 0 + -8,-57: 0 + -8,-56: 0 + -8,-55: 0 + -8,-54: 0 + -8,-53: 0 + -8,-52: 0 + -8,-51: 0 + -8,-50: 0 + -8,-49: 0 + -7,-64: 0 + -7,-63: 0 + -7,-62: 0 + -7,-61: 0 + -7,-60: 0 + -7,-59: 0 + -7,-58: 0 + -7,-57: 0 + -7,-56: 0 + -7,-55: 0 + -7,-54: 0 + -7,-53: 0 + -7,-52: 0 + -7,-51: 0 + -7,-50: 0 + -7,-49: 0 + -6,-64: 0 + -6,-63: 0 + -6,-62: 0 + -6,-61: 0 + -6,-60: 0 + -6,-59: 0 + -6,-58: 0 + -6,-57: 0 + -6,-56: 0 + -6,-55: 0 + -6,-54: 0 + -6,-53: 0 + -6,-52: 0 + -6,-51: 0 + -6,-50: 0 + -6,-49: 0 + -5,-64: 0 + -5,-63: 0 + -5,-62: 0 + -5,-61: 0 + -5,-60: 0 + -5,-59: 0 + -5,-58: 0 + -5,-57: 0 + -5,-56: 0 + -5,-55: 0 + -5,-54: 0 + -5,-53: 0 + -5,-52: 0 + -5,-51: 0 + -5,-50: 0 + -5,-49: 0 + -4,-64: 0 + -4,-63: 0 + -4,-62: 0 + -4,-61: 0 + -4,-60: 0 + -4,-59: 0 + -4,-58: 0 + -4,-57: 0 + -4,-56: 0 + -4,-55: 0 + -4,-54: 0 + -4,-53: 0 + -4,-52: 0 + -4,-51: 0 + -4,-50: 0 + -4,-49: 0 + -3,-64: 0 + -3,-63: 0 + -3,-62: 0 + -3,-61: 0 + -3,-60: 0 + -3,-59: 0 + -3,-58: 0 + -3,-57: 0 + -3,-56: 0 + -3,-55: 0 + -3,-54: 0 + -3,-53: 0 + -3,-52: 0 + -3,-51: 0 + -3,-50: 0 + -3,-49: 0 + -2,-64: 0 + -2,-63: 0 + -2,-62: 0 + -2,-61: 0 + -2,-60: 0 + -2,-59: 0 + -2,-58: 0 + -2,-57: 0 + -2,-56: 0 + -2,-55: 0 + -2,-54: 0 + -2,-53: 0 + -2,-52: 0 + -2,-51: 0 + -2,-50: 0 + -2,-49: 0 + -1,-64: 0 + -1,-63: 0 + -1,-62: 0 + -1,-61: 0 + -1,-60: 0 + -1,-59: 0 + -1,-58: 0 + -1,-57: 0 + -1,-56: 0 + -1,-55: 0 + -1,-54: 0 + -1,-53: 0 + -1,-52: 0 + -1,-51: 0 + -1,-50: 0 + -1,-49: 0 + -32,-64: 0 + -32,-63: 0 + -32,-62: 0 + -32,-61: 0 + -32,-60: 0 + -32,-59: 0 + -32,-58: 0 + -32,-57: 0 + -32,-56: 0 + -32,-55: 0 + -32,-54: 0 + -32,-53: 0 + -32,-52: 0 + -32,-51: 0 + -32,-50: 0 + -32,-49: 0 + -31,-64: 0 + -31,-63: 0 + -31,-62: 0 + -31,-61: 0 + -31,-60: 0 + -31,-59: 0 + -31,-58: 0 + -31,-57: 0 + -31,-56: 0 + -31,-55: 0 + -31,-54: 0 + -31,-53: 0 + -31,-52: 0 + -31,-51: 0 + -31,-50: 0 + -31,-49: 0 + -30,-64: 0 + -30,-63: 0 + -30,-62: 0 + -30,-61: 0 + -30,-60: 0 + -30,-59: 0 + -30,-58: 0 + -30,-57: 0 + -30,-56: 0 + -30,-55: 0 + -30,-54: 0 + -30,-53: 0 + -30,-52: 0 + -30,-51: 0 + -30,-50: 0 + -30,-49: 0 + -29,-64: 0 + -29,-63: 0 + -29,-62: 0 + -29,-61: 0 + -29,-60: 0 + -29,-59: 0 + -29,-58: 0 + -29,-57: 0 + -29,-56: 0 + -29,-55: 0 + -29,-54: 0 + -29,-53: 0 + -29,-52: 0 + -29,-51: 0 + -29,-50: 0 + -29,-49: 0 + -28,-64: 0 + -28,-63: 0 + -28,-62: 0 + -28,-61: 0 + -28,-60: 0 + -28,-59: 0 + -28,-58: 0 + -28,-57: 0 + -28,-56: 0 + -28,-55: 0 + -28,-54: 0 + -28,-53: 0 + -28,-52: 0 + -28,-51: 0 + -28,-50: 0 + -28,-49: 0 + -27,-64: 0 + -27,-63: 0 + -27,-62: 0 + -27,-61: 0 + -27,-60: 0 + -27,-59: 0 + -27,-58: 0 + -27,-57: 0 + -27,-56: 0 + -27,-55: 0 + -27,-54: 0 + -27,-53: 0 + -27,-52: 0 + -27,-51: 0 + -27,-50: 0 + -27,-49: 0 + -26,-64: 0 + -26,-63: 0 + -26,-62: 0 + -26,-61: 0 + -26,-60: 0 + -26,-59: 0 + -26,-58: 0 + -26,-57: 0 + -26,-56: 0 + -26,-55: 0 + -26,-54: 0 + -26,-53: 0 + -26,-52: 0 + -26,-51: 0 + -26,-50: 0 + -26,-49: 0 + -25,-64: 0 + -25,-63: 0 + -25,-62: 0 + -25,-61: 0 + -25,-60: 0 + -25,-59: 0 + -25,-58: 0 + -25,-57: 0 + -25,-56: 0 + -25,-55: 0 + -25,-54: 0 + -25,-53: 0 + -25,-52: 0 + -25,-51: 0 + -25,-50: 0 + -25,-49: 0 + -24,-64: 0 + -24,-63: 0 + -24,-62: 0 + -24,-61: 0 + -24,-60: 0 + -24,-59: 0 + -24,-58: 0 + -24,-57: 0 + -24,-56: 0 + -24,-55: 0 + -24,-54: 0 + -24,-53: 0 + -24,-52: 0 + -24,-51: 0 + -24,-50: 0 + -24,-49: 0 + -23,-64: 0 + -23,-63: 0 + -23,-62: 0 + -23,-61: 0 + -23,-60: 0 + -23,-59: 0 + -23,-58: 0 + -23,-57: 0 + -23,-56: 0 + -23,-55: 0 + -23,-54: 0 + -23,-53: 0 + -23,-52: 0 + -23,-51: 0 + -23,-50: 0 + -23,-49: 0 + -22,-64: 0 + -22,-63: 0 + -22,-62: 0 + -22,-61: 0 + -22,-60: 0 + -22,-59: 0 + -22,-58: 0 + -22,-57: 0 + -22,-56: 0 + -22,-55: 0 + -22,-54: 0 + -22,-53: 0 + -22,-52: 0 + -22,-51: 0 + -22,-50: 0 + -22,-49: 0 + -21,-64: 0 + -21,-63: 0 + -21,-62: 0 + -21,-61: 0 + -21,-60: 0 + -21,-59: 0 + -21,-58: 0 + -21,-57: 0 + -21,-56: 0 + -21,-55: 0 + -21,-54: 0 + -21,-53: 0 + -21,-52: 0 + -21,-51: 0 + -21,-50: 0 + -21,-49: 0 + -20,-64: 0 + -20,-63: 0 + -20,-62: 0 + -20,-61: 0 + -20,-60: 0 + -20,-59: 0 + -20,-58: 0 + -20,-57: 0 + -20,-56: 0 + -20,-55: 0 + -20,-54: 0 + -20,-53: 0 + -20,-52: 0 + -20,-51: 0 + -20,-50: 0 + -20,-49: 0 + -19,-64: 0 + -19,-63: 0 + -19,-62: 0 + -19,-61: 0 + -19,-60: 0 + -19,-59: 0 + -19,-58: 0 + -19,-57: 0 + -19,-56: 0 + -19,-55: 0 + -19,-54: 0 + -19,-53: 0 + -19,-52: 0 + -19,-51: 0 + -19,-50: 0 + -19,-49: 0 + -18,-64: 0 + -18,-63: 0 + -18,-62: 0 + -18,-61: 0 + -18,-60: 0 + -18,-59: 0 + -18,-58: 0 + -18,-57: 0 + -18,-56: 0 + -18,-55: 0 + -18,-54: 0 + -18,-53: 0 + -18,-52: 0 + -18,-51: 0 + -18,-50: 0 + -18,-49: 0 + -17,-64: 0 + -17,-63: 0 + -17,-62: 0 + -17,-61: 0 + -17,-60: 0 + -17,-59: 0 + -17,-58: 0 + -17,-57: 0 + -17,-56: 0 + -17,-55: 0 + -17,-54: 0 + -17,-53: 0 + -17,-52: 0 + -17,-51: 0 + -17,-50: 0 + -17,-49: 0 + -15,-78: 0 + -15,-77: 0 + -15,-76: 0 + -15,-75: 0 + -15,-74: 0 + -15,-73: 0 + -14,-80: 0 + -14,-79: 0 + -14,-78: 0 + -14,-77: 0 + -14,-76: 0 + -14,-75: 0 + -14,-74: 0 + -14,-73: 0 + -14,-72: 0 + -13,-80: 0 + -13,-79: 0 + -13,-78: 0 + -13,-77: 0 + -13,-76: 0 + -13,-75: 0 + -13,-74: 0 + -13,-73: 0 + -13,-72: 0 + -13,-71: 0 + -12,-80: 0 + -12,-79: 0 + -12,-78: 0 + -12,-77: 0 + -12,-76: 0 + -12,-75: 0 + -12,-74: 0 + -12,-73: 0 + -12,-72: 0 + -12,-71: 0 + -11,-80: 0 + -11,-79: 0 + -11,-78: 0 + -11,-77: 0 + -11,-76: 0 + -11,-75: 0 + -11,-74: 0 + -11,-73: 0 + -11,-72: 0 + -11,-71: 0 + -11,-70: 0 + -11,-65: 0 + -10,-80: 0 + -10,-79: 0 + -10,-78: 0 + -10,-77: 0 + -10,-76: 0 + -10,-75: 0 + -10,-74: 0 + -10,-73: 0 + -10,-72: 0 + -10,-71: 0 + -10,-70: 0 + -10,-69: 0 + -10,-68: 0 + -10,-67: 0 + -10,-66: 0 + -10,-65: 0 + -9,-80: 0 + -9,-79: 0 + -9,-78: 0 + -9,-77: 0 + -9,-76: 0 + -9,-75: 0 + -9,-74: 0 + -9,-73: 0 + -9,-72: 0 + -9,-71: 0 + -9,-70: 0 + -9,-69: 0 + -9,-68: 0 + -9,-67: 0 + -9,-66: 0 + -9,-65: 0 + -8,-80: 0 + -8,-79: 0 + -8,-78: 0 + -8,-77: 0 + -8,-76: 0 + -8,-75: 0 + -8,-74: 0 + -8,-73: 0 + -8,-72: 0 + -8,-71: 0 + -8,-70: 0 + -8,-69: 0 + -8,-68: 0 + -8,-67: 0 + -8,-66: 0 + -8,-65: 0 + -7,-80: 0 + -7,-79: 0 + -7,-78: 0 + -7,-77: 0 + -7,-76: 0 + -7,-75: 0 + -7,-74: 0 + -7,-73: 0 + -7,-72: 0 + -7,-71: 0 + -7,-70: 0 + -7,-69: 0 + -7,-68: 0 + -7,-67: 0 + -7,-66: 0 + -7,-65: 0 + -6,-80: 0 + -6,-79: 0 + -6,-78: 0 + -6,-77: 0 + -6,-76: 0 + -6,-75: 0 + -6,-74: 0 + -6,-73: 0 + -6,-72: 0 + -6,-71: 0 + -6,-70: 0 + -6,-69: 0 + -6,-68: 0 + -6,-67: 0 + -6,-66: 0 + -6,-65: 0 + -5,-80: 0 + -5,-79: 0 + -5,-78: 0 + -5,-77: 0 + -5,-76: 0 + -5,-75: 0 + -5,-74: 0 + -5,-73: 0 + -5,-72: 0 + -5,-71: 0 + -5,-70: 0 + -5,-69: 0 + -5,-68: 0 + -5,-67: 0 + -5,-66: 0 + -5,-65: 0 + -4,-80: 0 + -4,-79: 0 + -4,-78: 0 + -4,-77: 0 + -4,-76: 0 + -4,-75: 0 + -4,-74: 0 + -4,-73: 0 + -4,-72: 0 + -4,-71: 0 + -4,-70: 0 + -4,-69: 0 + -4,-68: 0 + -4,-67: 0 + -4,-66: 0 + -4,-65: 0 + -3,-80: 0 + -3,-79: 0 + -3,-78: 0 + -3,-77: 0 + -3,-76: 0 + -3,-75: 0 + -3,-74: 0 + -3,-73: 0 + -3,-72: 0 + -3,-71: 0 + -3,-70: 0 + -3,-69: 0 + -3,-68: 0 + -3,-67: 0 + -3,-66: 0 + -3,-65: 0 + -2,-80: 0 + -2,-79: 0 + -2,-78: 0 + -2,-77: 0 + -2,-76: 0 + -2,-75: 0 + -2,-74: 0 + -2,-73: 0 + -2,-72: 0 + -2,-71: 0 + -2,-70: 0 + -2,-69: 0 + -2,-68: 0 + -2,-65: 0 + -1,-80: 0 + -1,-79: 0 + -1,-78: 0 + -1,-77: 0 + -1,-76: 0 + -1,-75: 0 + -1,-74: 0 + -1,-73: 0 + -1,-72: 0 + -1,-71: 0 + -1,-70: 0 + -1,-69: 0 + -1,-65: 0 + 0,-80: 0 + 0,-79: 0 + 0,-78: 0 + 0,-77: 0 + 0,-76: 0 + 0,-75: 0 + 0,-74: 0 + 0,-73: 0 + 0,-72: 0 + 0,-71: 0 + 0,-70: 0 + 0,-69: 0 + 1,-80: 0 + 1,-79: 0 + 1,-78: 0 + 1,-77: 0 + 1,-76: 0 + 1,-75: 0 + 1,-74: 0 + 1,-73: 0 + 1,-72: 0 + 1,-71: 0 + 1,-70: 0 + 1,-69: 0 + 2,-80: 0 + 2,-79: 0 + 2,-78: 0 + 2,-77: 0 + 2,-76: 0 + 2,-75: 0 + 2,-74: 0 + 2,-73: 0 + 2,-72: 0 + 2,-71: 0 + 2,-70: 0 + 2,-69: 0 + -13,-81: 0 + -12,-82: 0 + -12,-81: 0 + -11,-83: 0 + -11,-82: 0 + -11,-81: 0 + -10,-84: 0 + -10,-83: 0 + -10,-82: 0 + -10,-81: 0 + -9,-85: 0 + -9,-84: 0 + -9,-83: 0 + -9,-82: 0 + -9,-81: 0 + -8,-85: 0 + -8,-84: 0 + -8,-83: 0 + -8,-82: 0 + -8,-81: 0 + -7,-86: 0 + -7,-85: 0 + -7,-84: 0 + -7,-83: 0 + -7,-82: 0 + -7,-81: 0 + -6,-86: 0 + -6,-85: 0 + -6,-84: 0 + -6,-83: 0 + -6,-82: 0 + -6,-81: 0 + -5,-86: 0 + -5,-85: 0 + -5,-84: 0 + -5,-83: 0 + -5,-82: 0 + -5,-81: 0 + -4,-86: 0 + -4,-85: 0 + -4,-84: 0 + -4,-83: 0 + -4,-82: 0 + -4,-81: 0 + -3,-86: 0 + -3,-85: 0 + -3,-84: 0 + -3,-83: 0 + -3,-82: 0 + -3,-81: 0 + -2,-85: 0 + -2,-84: 0 + -2,-83: 0 + -2,-82: 0 + -2,-81: 0 + -1,-85: 0 + -1,-84: 0 + -1,-83: 0 + -1,-82: 0 + -1,-81: 0 + 0,-84: 0 + 0,-83: 0 + 0,-82: 0 + 0,-81: 0 + 1,-84: 0 + 1,-83: 0 + 1,-82: 0 + 1,-81: 0 + 2,-83: 0 + 2,-82: 0 + 2,-81: 0 + -48,-32: 0 + -48,-31: 0 + -48,-30: 0 + -48,-29: 0 + -48,-28: 0 + -48,-27: 0 + -48,-26: 0 + -48,-25: 0 + -48,-24: 0 + -48,-23: 0 + -48,-22: 0 + -48,-21: 0 + -48,-20: 0 + -48,-19: 0 + -48,-18: 0 + -48,-17: 0 + -47,-32: 0 + -47,-31: 0 + -47,-30: 0 + -47,-29: 0 + -47,-28: 0 + -47,-27: 0 + -47,-26: 0 + -47,-25: 0 + -47,-24: 0 + -47,-23: 0 + -47,-22: 0 + -47,-21: 0 + -47,-20: 0 + -47,-19: 0 + -47,-18: 0 + -47,-17: 0 + -46,-32: 0 + -46,-31: 0 + -46,-30: 0 + -46,-29: 0 + -46,-28: 0 + -46,-27: 0 + -46,-26: 0 + -46,-25: 0 + -46,-24: 0 + -46,-23: 0 + -46,-22: 0 + -46,-21: 0 + -46,-20: 0 + -46,-19: 0 + -46,-18: 0 + -46,-17: 0 + -45,-32: 0 + -45,-31: 0 + -45,-30: 0 + -45,-29: 0 + -45,-28: 0 + -45,-27: 0 + -45,-26: 0 + -45,-25: 0 + -45,-24: 0 + -45,-23: 0 + -45,-22: 0 + -45,-21: 0 + -45,-20: 0 + -45,-19: 0 + -45,-18: 0 + -45,-17: 0 + -44,-32: 0 + -44,-31: 0 + -44,-30: 0 + -44,-29: 0 + -44,-28: 0 + -44,-27: 0 + -44,-26: 0 + -44,-25: 0 + -44,-24: 0 + -44,-23: 0 + -44,-22: 0 + -44,-21: 0 + -44,-20: 0 + -44,-19: 0 + -44,-18: 0 + -44,-17: 0 + -43,-32: 0 + -43,-31: 0 + -43,-30: 0 + -43,-29: 0 + -43,-28: 0 + -43,-27: 0 + -43,-26: 0 + -43,-25: 0 + -43,-24: 0 + -43,-23: 0 + -43,-22: 0 + -43,-21: 0 + -43,-20: 0 + -43,-19: 0 + -43,-18: 0 + -43,-17: 0 + -42,-32: 0 + -42,-31: 0 + -42,-30: 0 + -42,-29: 0 + -42,-28: 0 + -42,-27: 0 + -42,-26: 0 + -42,-25: 0 + -42,-24: 0 + -42,-23: 0 + -42,-22: 0 + -42,-21: 0 + -42,-20: 0 + -42,-19: 0 + -42,-18: 0 + -42,-17: 0 + -41,-32: 0 + -41,-31: 0 + -41,-30: 0 + -41,-29: 0 + -41,-28: 0 + -41,-27: 0 + -41,-26: 0 + -41,-25: 0 + -41,-24: 0 + -41,-23: 0 + -41,-22: 0 + -41,-21: 0 + -41,-20: 0 + -41,-19: 0 + -41,-18: 0 + -41,-17: 0 + -40,-32: 0 + -40,-31: 0 + -40,-30: 0 + -40,-29: 0 + -40,-28: 0 + -40,-27: 0 + -40,-26: 0 + -40,-25: 0 + -40,-24: 0 + -40,-23: 0 + -40,-22: 0 + -40,-21: 0 + -40,-20: 0 + -40,-19: 0 + -40,-18: 0 + -40,-17: 0 + -39,-32: 0 + -39,-31: 0 + -39,-30: 0 + -39,-29: 0 + -39,-28: 0 + -39,-27: 0 + -39,-26: 0 + -39,-25: 0 + -39,-24: 0 + -39,-23: 0 + -39,-22: 0 + -39,-21: 0 + -39,-20: 0 + -39,-19: 0 + -39,-18: 0 + -39,-17: 0 + -38,-32: 0 + -38,-31: 0 + -38,-30: 0 + -38,-29: 0 + -38,-28: 0 + -38,-27: 0 + -38,-26: 0 + -38,-25: 0 + -38,-24: 0 + -38,-23: 0 + -38,-22: 0 + -38,-21: 0 + -38,-20: 0 + -38,-19: 0 + -38,-18: 0 + -38,-17: 0 + -37,-32: 0 + -37,-31: 0 + -37,-30: 0 + -37,-29: 0 + -37,-28: 0 + -37,-27: 0 + -37,-26: 0 + -37,-25: 0 + -37,-24: 0 + -37,-23: 0 + -37,-22: 0 + -37,-21: 0 + -37,-20: 0 + -37,-19: 0 + -37,-18: 0 + -37,-17: 0 + -36,-32: 0 + -36,-31: 0 + -36,-30: 0 + -36,-29: 0 + -36,-28: 0 + -36,-27: 0 + -36,-26: 0 + -36,-25: 0 + -36,-24: 0 + -36,-23: 0 + -36,-22: 0 + -36,-21: 0 + -36,-20: 0 + -36,-19: 0 + -36,-18: 0 + -36,-17: 0 + -35,-32: 0 + -35,-31: 0 + -35,-30: 0 + -35,-29: 0 + -35,-28: 0 + -35,-27: 0 + -35,-26: 0 + -35,-25: 0 + -35,-24: 0 + -35,-23: 0 + -35,-22: 0 + -35,-21: 0 + -35,-20: 0 + -35,-19: 0 + -35,-18: 0 + -35,-17: 0 + -34,-32: 0 + -34,-31: 0 + -34,-30: 0 + -34,-29: 0 + -34,-28: 0 + -34,-27: 0 + -34,-26: 0 + -34,-25: 0 + -34,-24: 0 + -34,-23: 0 + -34,-22: 0 + -34,-21: 0 + -34,-20: 0 + -34,-19: 0 + -34,-18: 0 + -34,-17: 0 + -33,-32: 0 + -33,-31: 0 + -33,-30: 0 + -33,-29: 0 + -33,-28: 0 + -33,-27: 0 + -33,-26: 0 + -33,-25: 0 + -33,-24: 0 + -33,-23: 0 + -33,-22: 0 + -33,-21: 0 + -33,-20: 0 + -33,-19: 0 + -33,-18: 0 + -33,-17: 0 + -48,-16: 0 + -48,-15: 0 + -48,-14: 0 + -48,-13: 0 + -48,-12: 0 + -48,-11: 0 + -48,-10: 0 + -48,-9: 0 + -48,-8: 0 + -48,-7: 0 + -48,-6: 0 + -48,-5: 0 + -48,-4: 0 + -48,-3: 0 + -48,-2: 0 + -47,-16: 0 + -47,-15: 0 + -47,-14: 0 + -47,-13: 0 + -47,-12: 0 + -47,-11: 0 + -47,-10: 0 + -47,-9: 0 + -47,-8: 0 + -47,-7: 0 + -47,-6: 0 + -47,-5: 0 + -47,-4: 0 + -47,-3: 0 + -47,-2: 0 + -47,-1: 0 + -46,-16: 0 + -46,-15: 0 + -46,-14: 0 + -46,-13: 0 + -46,-12: 0 + -46,-11: 0 + -46,-10: 0 + -46,-9: 0 + -46,-8: 0 + -46,-7: 0 + -46,-6: 0 + -46,-5: 0 + -46,-4: 0 + -46,-3: 0 + -46,-2: 0 + -46,-1: 0 + -45,-16: 0 + -45,-15: 0 + -45,-14: 0 + -45,-13: 0 + -45,-12: 0 + -45,-11: 0 + -45,-10: 0 + -45,-9: 0 + -45,-8: 0 + -45,-7: 0 + -45,-6: 0 + -45,-5: 0 + -45,-4: 0 + -45,-3: 0 + -45,-2: 0 + -45,-1: 0 + -44,-16: 0 + -44,-15: 0 + -44,-14: 0 + -44,-13: 0 + -44,-12: 0 + -44,-11: 0 + -44,-10: 0 + -44,-9: 0 + -44,-8: 0 + -44,-7: 0 + -44,-6: 0 + -44,-5: 0 + -44,-4: 0 + -44,-3: 0 + -44,-2: 0 + -44,-1: 0 + -43,-16: 0 + -43,-15: 0 + -43,-14: 0 + -43,-13: 0 + -43,-12: 0 + -43,-11: 0 + -43,-10: 0 + -43,-9: 0 + -43,-8: 0 + -43,-7: 0 + -43,-6: 0 + -43,-5: 0 + -43,-4: 0 + -43,-3: 0 + -43,-2: 0 + -43,-1: 0 + -42,-16: 0 + -42,-15: 0 + -42,-14: 0 + -42,-13: 0 + -42,-12: 0 + -42,-11: 0 + -42,-10: 0 + -42,-9: 0 + -42,-8: 0 + -42,-7: 0 + -42,-6: 0 + -42,-5: 0 + -42,-4: 0 + -42,-3: 0 + -42,-2: 0 + -42,-1: 0 + -41,-16: 0 + -41,-15: 0 + -41,-14: 0 + -41,-13: 0 + -41,-12: 0 + -41,-11: 0 + -41,-10: 0 + -41,-9: 0 + -41,-8: 0 + -41,-7: 0 + -41,-6: 0 + -41,-5: 0 + -41,-4: 0 + -41,-3: 0 + -41,-2: 0 + -41,-1: 0 + -40,-16: 0 + -40,-15: 0 + -40,-14: 0 + -40,-13: 0 + -40,-12: 0 + -40,-11: 0 + -40,-10: 0 + -40,-9: 0 + -40,-8: 0 + -40,-7: 0 + -40,-6: 0 + -40,-5: 0 + -40,-4: 0 + -40,-3: 0 + -40,-2: 0 + -40,-1: 0 + -39,-16: 0 + -39,-15: 0 + -39,-14: 0 + -39,-13: 0 + -39,-12: 0 + -39,-11: 0 + -39,-10: 0 + -39,-9: 0 + -39,-8: 0 + -39,-7: 0 + -39,-6: 0 + -39,-5: 0 + -39,-4: 0 + -39,-3: 0 + -39,-2: 0 + -39,-1: 0 + -38,-16: 0 + -38,-15: 0 + -38,-14: 0 + -38,-13: 0 + -38,-12: 0 + -38,-11: 0 + -38,-10: 0 + -38,-9: 0 + -38,-8: 0 + -38,-7: 0 + -38,-6: 0 + -38,-5: 0 + -38,-4: 0 + -38,-3: 0 + -38,-2: 0 + -38,-1: 0 + -37,-16: 0 + -37,-15: 0 + -37,-14: 0 + -37,-13: 0 + -37,-12: 0 + -37,-11: 0 + -37,-10: 0 + -37,-9: 0 + -37,-8: 0 + -37,-7: 0 + -37,-6: 0 + -37,-5: 0 + -37,-4: 0 + -37,-3: 0 + -37,-2: 0 + -37,-1: 0 + -36,-16: 0 + -36,-15: 0 + -36,-14: 0 + -36,-13: 0 + -36,-12: 0 + -36,-11: 0 + -36,-10: 0 + -36,-9: 0 + -36,-8: 0 + -36,-7: 0 + -36,-6: 0 + -36,-5: 0 + -36,-4: 0 + -36,-3: 0 + -36,-2: 0 + -36,-1: 0 + -35,-16: 0 + -35,-15: 0 + -35,-14: 0 + -35,-13: 0 + -35,-12: 0 + -35,-11: 0 + -35,-10: 0 + -35,-9: 0 + -35,-8: 0 + -35,-7: 0 + -35,-6: 0 + -35,-5: 0 + -35,-4: 0 + -35,-3: 0 + -35,-2: 0 + -35,-1: 0 + -34,-16: 0 + -34,-15: 0 + -34,-14: 0 + -34,-13: 0 + -34,-12: 0 + -34,-11: 0 + -34,-10: 0 + -34,-9: 0 + -34,-8: 0 + -34,-7: 0 + -34,-6: 0 + -34,-5: 0 + -34,-4: 0 + -34,-3: 0 + -34,-2: 0 + -34,-1: 0 + -33,-16: 0 + -33,-15: 0 + -33,-14: 0 + -33,-13: 0 + -33,-12: 0 + -33,-11: 0 + -33,-10: 0 + -33,-9: 0 + -33,-8: 0 + -33,-7: 0 + -33,-6: 0 + -33,-5: 0 + -33,-4: 0 + -33,-3: 0 + -33,-2: 0 + -33,-1: 0 + -48,7: 0 + -48,8: 0 + -48,9: 0 + -48,10: 0 + -48,11: 0 + -48,12: 0 + -48,13: 0 + -48,14: 0 + -48,15: 0 + -47,0: 0 + -47,1: 0 + -47,2: 0 + -47,3: 0 + -47,4: 0 + -47,5: 0 + -47,6: 0 + -47,7: 0 + -47,8: 0 + -47,9: 0 + -47,10: 0 + -47,11: 0 + -47,12: 0 + -47,13: 0 + -47,14: 0 + -47,15: 0 + -46,0: 0 + -46,1: 0 + -46,2: 0 + -46,3: 0 + -46,4: 0 + -46,5: 0 + -46,6: 0 + -46,7: 0 + -46,8: 0 + -46,9: 0 + -46,10: 0 + -46,11: 0 + -46,12: 0 + -46,13: 0 + -46,14: 0 + -46,15: 0 + -45,0: 0 + -45,1: 0 + -45,2: 0 + -45,3: 0 + -45,4: 0 + -45,5: 0 + -45,6: 0 + -45,7: 0 + -45,8: 0 + -45,9: 1 + -45,10: 0 + -45,11: 2 + -45,12: 0 + -45,13: 3 + -45,14: 0 + -45,15: 3 + -44,0: 0 + -44,1: 0 + -44,2: 0 + -44,3: 0 + -44,4: 0 + -44,5: 0 + -44,6: 0 + -44,7: 0 + -44,8: 0 + -44,9: 1 + -44,10: 0 + -44,11: 2 + -44,12: 0 + -44,13: 3 + -44,14: 0 + -44,15: 3 + -43,0: 0 + -43,1: 0 + -43,2: 0 + -43,3: 0 + -43,4: 0 + -43,5: 0 + -43,6: 0 + -43,7: 0 + -43,8: 0 + -43,9: 1 + -43,10: 0 + -43,11: 2 + -43,12: 0 + -43,13: 3 + -43,14: 0 + -43,15: 3 + -42,0: 0 + -42,1: 0 + -42,2: 0 + -42,3: 0 + -42,4: 0 + -42,5: 0 + -42,6: 0 + -42,7: 0 + -42,8: 0 + -42,9: 0 + -42,10: 0 + -42,11: 0 + -42,12: 0 + -42,13: 0 + -42,14: 0 + -42,15: 0 + -41,0: 0 + -41,1: 0 + -41,2: 0 + -41,3: 0 + -41,4: 0 + -41,5: 0 + -41,6: 0 + -41,7: 0 + -41,8: 0 + -41,9: 0 + -41,10: 0 + -41,11: 0 + -41,12: 0 + -41,13: 0 + -41,14: 0 + -41,15: 0 + -40,0: 0 + -40,1: 0 + -40,2: 0 + -40,3: 0 + -40,4: 0 + -40,5: 0 + -40,6: 0 + -40,7: 0 + -40,8: 0 + -40,9: 0 + -40,10: 0 + -40,11: 0 + -40,12: 0 + -40,13: 0 + -40,14: 0 + -40,15: 0 + -39,0: 0 + -39,1: 0 + -39,2: 0 + -39,3: 0 + -39,4: 0 + -39,5: 0 + -39,6: 0 + -39,7: 0 + -39,8: 0 + -39,9: 0 + -39,10: 0 + -39,11: 0 + -39,12: 0 + -39,13: 0 + -39,14: 0 + -39,15: 0 + -38,0: 0 + -38,1: 0 + -38,2: 0 + -38,3: 0 + -38,4: 0 + -38,5: 0 + -38,6: 0 + -38,7: 0 + -38,8: 0 + -38,9: 0 + -38,10: 0 + -38,11: 0 + -38,12: 0 + -38,13: 0 + -38,14: 0 + -38,15: 0 + -37,0: 0 + -37,1: 0 + -37,2: 0 + -37,3: 0 + -37,4: 0 + -37,5: 0 + -37,6: 0 + -37,7: 0 + -37,8: 0 + -37,9: 0 + -37,10: 0 + -37,11: 0 + -37,12: 0 + -37,13: 0 + -37,14: 0 + -37,15: 0 + -36,0: 0 + -36,1: 0 + -36,2: 0 + -36,3: 0 + -36,4: 0 + -36,5: 0 + -36,6: 0 + -36,7: 0 + -36,8: 0 + -36,9: 0 + -36,10: 0 + -36,11: 0 + -36,12: 0 + -36,13: 0 + -36,14: 0 + -36,15: 0 + -35,0: 0 + -35,1: 0 + -35,2: 0 + -35,3: 0 + -35,4: 0 + -35,5: 0 + -35,6: 0 + -35,7: 0 + -35,8: 0 + -35,9: 0 + -35,10: 0 + -35,11: 0 + -35,12: 0 + -35,13: 0 + -35,14: 0 + -35,15: 0 + -34,0: 0 + -34,1: 0 + -34,2: 0 + -34,3: 0 + -34,4: 0 + -34,5: 0 + -34,6: 0 + -34,7: 0 + -34,8: 0 + -34,9: 0 + -34,10: 0 + -34,11: 0 + -34,12: 0 + -34,13: 0 + -34,14: 0 + -34,15: 0 + -33,0: 0 + -33,1: 0 + -33,2: 0 + -33,3: 0 + -33,4: 0 + -33,5: 0 + -33,6: 0 + -33,7: 0 + -33,8: 0 + -33,9: 0 + -33,10: 0 + -33,11: 0 + -33,12: 0 + -33,13: 0 + -33,14: 0 + -33,15: 0 + -48,-48: 0 + -48,-47: 0 + -48,-46: 0 + -48,-45: 0 + -48,-44: 0 + -48,-43: 0 + -48,-42: 0 + -48,-41: 0 + -48,-40: 0 + -48,-39: 0 + -48,-38: 0 + -48,-37: 0 + -48,-36: 0 + -48,-35: 0 + -48,-34: 0 + -48,-33: 0 + -47,-48: 0 + -47,-47: 0 + -47,-46: 0 + -47,-45: 0 + -47,-44: 0 + -47,-43: 0 + -47,-42: 0 + -47,-41: 0 + -47,-40: 0 + -47,-39: 0 + -47,-38: 0 + -47,-37: 0 + -47,-36: 0 + -47,-35: 0 + -47,-34: 0 + -47,-33: 0 + -46,-48: 0 + -46,-47: 0 + -46,-46: 0 + -46,-45: 0 + -46,-44: 0 + -46,-43: 0 + -46,-42: 0 + -46,-41: 0 + -46,-40: 0 + -46,-39: 0 + -46,-38: 0 + -46,-37: 0 + -46,-36: 0 + -46,-35: 0 + -46,-34: 0 + -46,-33: 0 + -45,-48: 0 + -45,-47: 0 + -45,-46: 0 + -45,-45: 0 + -45,-44: 0 + -45,-43: 0 + -45,-42: 0 + -45,-41: 0 + -45,-40: 0 + -45,-39: 0 + -45,-38: 0 + -45,-37: 0 + -45,-36: 0 + -45,-35: 0 + -45,-34: 0 + -45,-33: 0 + -44,-48: 0 + -44,-47: 0 + -44,-46: 0 + -44,-45: 0 + -44,-44: 0 + -44,-43: 0 + -44,-42: 0 + -44,-41: 0 + -44,-40: 0 + -44,-39: 0 + -44,-38: 0 + -44,-37: 0 + -44,-36: 0 + -44,-35: 0 + -44,-34: 0 + -44,-33: 0 + -43,-48: 0 + -43,-47: 0 + -43,-46: 0 + -43,-45: 0 + -43,-44: 0 + -43,-43: 0 + -43,-42: 0 + -43,-41: 0 + -43,-40: 0 + -43,-39: 0 + -43,-38: 0 + -43,-37: 0 + -43,-36: 0 + -43,-35: 0 + -43,-34: 0 + -43,-33: 0 + -42,-48: 0 + -42,-47: 0 + -42,-46: 0 + -42,-45: 0 + -42,-44: 0 + -42,-43: 0 + -42,-42: 0 + -42,-41: 0 + -42,-40: 0 + -42,-39: 0 + -42,-38: 0 + -42,-37: 0 + -42,-36: 0 + -42,-35: 0 + -42,-34: 0 + -42,-33: 0 + -41,-48: 0 + -41,-47: 0 + -41,-46: 0 + -41,-45: 0 + -41,-44: 0 + -41,-43: 0 + -41,-42: 0 + -41,-41: 0 + -41,-40: 0 + -41,-39: 0 + -41,-38: 0 + -41,-37: 0 + -41,-36: 0 + -41,-35: 0 + -41,-34: 0 + -41,-33: 0 + -40,-48: 0 + -40,-47: 0 + -40,-46: 0 + -40,-45: 0 + -40,-44: 0 + -40,-43: 0 + -40,-42: 0 + -40,-41: 0 + -40,-40: 0 + -40,-39: 0 + -40,-38: 0 + -40,-37: 0 + -40,-36: 0 + -40,-35: 0 + -40,-34: 0 + -40,-33: 0 + -39,-48: 0 + -39,-47: 0 + -39,-46: 0 + -39,-45: 0 + -39,-44: 0 + -39,-43: 0 + -39,-42: 0 + -39,-41: 0 + -39,-40: 0 + -39,-39: 0 + -39,-38: 0 + -39,-37: 0 + -39,-36: 0 + -39,-35: 0 + -39,-34: 0 + -39,-33: 0 + -38,-48: 0 + -38,-47: 0 + -38,-46: 0 + -38,-45: 0 + -38,-44: 0 + -38,-43: 0 + -38,-42: 0 + -38,-41: 0 + -38,-40: 0 + -38,-39: 0 + -38,-38: 0 + -38,-37: 0 + -38,-36: 0 + -38,-35: 0 + -38,-34: 0 + -38,-33: 0 + -37,-48: 0 + -37,-47: 0 + -37,-46: 0 + -37,-45: 0 + -37,-44: 0 + -37,-43: 0 + -37,-42: 0 + -37,-41: 0 + -37,-40: 0 + -37,-39: 0 + -37,-38: 0 + -37,-37: 0 + -37,-36: 0 + -37,-35: 0 + -37,-34: 0 + -37,-33: 0 + -36,-48: 0 + -36,-47: 0 + -36,-46: 0 + -36,-45: 0 + -36,-44: 0 + -36,-43: 0 + -36,-42: 0 + -36,-41: 0 + -36,-40: 0 + -36,-39: 0 + -36,-38: 0 + -36,-37: 0 + -36,-36: 0 + -36,-35: 0 + -36,-34: 0 + -36,-33: 0 + -35,-48: 0 + -35,-47: 0 + -35,-46: 0 + -35,-45: 0 + -35,-44: 0 + -35,-43: 0 + -35,-42: 0 + -35,-41: 0 + -35,-40: 0 + -35,-39: 0 + -35,-38: 0 + -35,-37: 0 + -35,-36: 0 + -35,-35: 0 + -35,-34: 0 + -35,-33: 0 + -34,-48: 0 + -34,-47: 0 + -34,-46: 0 + -34,-45: 0 + -34,-44: 0 + -34,-43: 0 + -34,-42: 0 + -34,-41: 0 + -34,-40: 0 + -34,-39: 0 + -34,-38: 0 + -34,-37: 0 + -34,-36: 0 + -34,-35: 0 + -34,-34: 0 + -34,-33: 0 + -33,-48: 0 + -33,-47: 0 + -33,-46: 0 + -33,-45: 0 + -33,-44: 0 + -33,-43: 0 + -33,-42: 0 + -33,-41: 0 + -33,-40: 0 + -33,-39: 0 + -33,-38: 0 + -33,-37: 0 + -33,-36: 0 + -33,-35: 0 + -33,-34: 0 + -33,-33: 0 + -48,-59: 0 + -48,-58: 0 + -48,-57: 0 + -48,-56: 0 + -48,-55: 0 + -48,-54: 0 + -48,-53: 0 + -48,-52: 0 + -48,-51: 0 + -48,-50: 0 + -48,-49: 0 + -47,-59: 0 + -47,-58: 0 + -47,-57: 0 + -47,-56: 0 + -47,-55: 0 + -47,-54: 0 + -47,-53: 0 + -47,-52: 0 + -47,-51: 0 + -47,-50: 0 + -47,-49: 0 + -46,-59: 0 + -46,-58: 0 + -46,-57: 0 + -46,-56: 0 + -46,-55: 0 + -46,-54: 0 + -46,-53: 0 + -46,-52: 0 + -46,-51: 0 + -46,-50: 0 + -46,-49: 0 + -45,-60: 0 + -45,-59: 0 + -45,-58: 0 + -45,-57: 0 + -45,-56: 0 + -45,-55: 0 + -45,-54: 0 + -45,-53: 0 + -45,-52: 0 + -45,-51: 0 + -45,-50: 0 + -45,-49: 0 + -44,-60: 0 + -44,-59: 0 + -44,-58: 0 + -44,-57: 0 + -44,-56: 0 + -44,-55: 0 + -44,-54: 0 + -44,-53: 0 + -44,-52: 0 + -44,-51: 0 + -44,-50: 0 + -44,-49: 0 + -43,-62: 0 + -43,-61: 0 + -43,-60: 0 + -43,-59: 0 + -43,-58: 0 + -43,-57: 0 + -43,-56: 0 + -43,-55: 0 + -43,-54: 0 + -43,-53: 0 + -43,-52: 0 + -43,-51: 0 + -43,-50: 0 + -43,-49: 0 + -42,-62: 0 + -42,-61: 0 + -42,-60: 0 + -42,-59: 0 + -42,-58: 0 + -42,-57: 0 + -42,-56: 0 + -42,-55: 0 + -42,-54: 0 + -42,-53: 0 + -42,-52: 0 + -42,-51: 0 + -42,-50: 0 + -42,-49: 0 + -41,-63: 0 + -41,-62: 0 + -41,-61: 0 + -41,-60: 0 + -41,-59: 0 + -41,-58: 0 + -41,-57: 0 + -41,-56: 0 + -41,-55: 0 + -41,-54: 0 + -41,-53: 0 + -41,-52: 0 + -41,-51: 0 + -41,-50: 0 + -41,-49: 0 + -40,-63: 0 + -40,-62: 0 + -40,-61: 0 + -40,-60: 0 + -40,-59: 0 + -40,-58: 0 + -40,-57: 0 + -40,-56: 0 + -40,-55: 0 + -40,-54: 0 + -40,-53: 0 + -40,-52: 0 + -40,-51: 0 + -40,-50: 0 + -40,-49: 0 + -39,-63: 0 + -39,-62: 0 + -39,-61: 0 + -39,-60: 0 + -39,-59: 0 + -39,-58: 0 + -39,-57: 0 + -39,-56: 0 + -39,-55: 0 + -39,-54: 0 + -39,-53: 0 + -39,-52: 0 + -39,-51: 0 + -39,-50: 0 + -39,-49: 0 + -38,-63: 0 + -38,-62: 0 + -38,-61: 0 + -38,-60: 0 + -38,-59: 0 + -38,-58: 0 + -38,-57: 0 + -38,-56: 0 + -38,-55: 0 + -38,-54: 0 + -38,-53: 0 + -38,-52: 0 + -38,-51: 0 + -38,-50: 0 + -38,-49: 0 + -37,-63: 0 + -37,-62: 0 + -37,-61: 0 + -37,-60: 0 + -37,-59: 0 + -37,-58: 0 + -37,-57: 0 + -37,-56: 0 + -37,-55: 0 + -37,-54: 0 + -37,-53: 0 + -37,-52: 0 + -37,-51: 0 + -37,-50: 0 + -37,-49: 0 + -36,-63: 0 + -36,-62: 0 + -36,-61: 0 + -36,-60: 0 + -36,-59: 0 + -36,-58: 0 + -36,-57: 0 + -36,-56: 0 + -36,-55: 0 + -36,-54: 0 + -36,-53: 0 + -36,-52: 0 + -36,-51: 0 + -36,-50: 0 + -36,-49: 0 + -35,-63: 0 + -35,-62: 0 + -35,-61: 0 + -35,-60: 0 + -35,-59: 0 + -35,-58: 0 + -35,-57: 0 + -35,-56: 0 + -35,-55: 0 + -35,-54: 0 + -35,-53: 0 + -35,-52: 0 + -35,-51: 0 + -35,-50: 0 + -35,-49: 0 + -34,-64: 0 + -34,-63: 0 + -34,-62: 0 + -34,-61: 0 + -34,-60: 0 + -34,-59: 0 + -34,-58: 0 + -34,-57: 0 + -34,-56: 0 + -34,-55: 0 + -34,-54: 0 + -34,-53: 0 + -34,-52: 0 + -34,-51: 0 + -34,-50: 0 + -34,-49: 0 + -33,-64: 0 + -33,-63: 0 + -33,-62: 0 + -33,-61: 0 + -33,-60: 0 + -33,-59: 0 + -33,-58: 0 + -33,-57: 0 + -33,-56: 0 + -33,-55: 0 + -33,-54: 0 + -33,-53: 0 + -33,-52: 0 + -33,-51: 0 + -33,-50: 0 + -33,-49: 0 + -64,-47: 0 + -64,-46: 0 + -64,-45: 0 + -64,-44: 0 + -64,-43: 0 + -64,-37: 0 + -64,-36: 0 + -64,-35: 0 + -64,-34: 0 + -64,-33: 0 + -63,-47: 0 + -63,-46: 0 + -63,-45: 0 + -63,-44: 0 + -63,-43: 0 + -63,-37: 0 + -63,-36: 0 + -63,-35: 0 + -63,-34: 0 + -63,-33: 0 + -62,-47: 0 + -62,-46: 0 + -62,-45: 0 + -62,-44: 0 + -62,-43: 0 + -62,-40: 0 + -62,-39: 0 + -62,-38: 0 + -62,-37: 0 + -62,-36: 0 + -62,-35: 0 + -62,-34: 0 + -62,-33: 0 + -61,-47: 0 + -61,-46: 0 + -61,-45: 0 + -61,-44: 0 + -61,-43: 0 + -61,-42: 0 + -61,-41: 0 + -61,-40: 0 + -61,-39: 0 + -61,-38: 0 + -61,-37: 0 + -61,-36: 0 + -61,-35: 0 + -61,-34: 0 + -61,-33: 0 + -60,-48: 0 + -60,-47: 0 + -60,-46: 0 + -60,-45: 0 + -60,-44: 0 + -60,-43: 0 + -60,-42: 0 + -60,-41: 0 + -60,-40: 0 + -60,-39: 0 + -60,-38: 0 + -60,-37: 0 + -60,-36: 0 + -60,-35: 0 + -60,-34: 0 + -60,-33: 0 + -59,-48: 0 + -59,-47: 0 + -59,-46: 0 + -59,-45: 0 + -59,-44: 0 + -59,-43: 0 + -59,-42: 0 + -59,-41: 0 + -59,-40: 0 + -59,-39: 0 + -59,-38: 0 + -59,-37: 0 + -59,-36: 0 + -59,-35: 0 + -59,-34: 0 + -59,-33: 0 + -58,-48: 0 + -58,-47: 0 + -58,-46: 0 + -58,-45: 0 + -58,-44: 0 + -58,-43: 0 + -58,-42: 0 + -58,-41: 0 + -58,-40: 0 + -58,-39: 0 + -58,-38: 0 + -58,-37: 0 + -58,-36: 0 + -58,-35: 0 + -58,-34: 0 + -58,-33: 0 + -57,-48: 0 + -57,-47: 0 + -57,-46: 0 + -57,-45: 0 + -57,-44: 0 + -57,-43: 0 + -57,-42: 0 + -57,-41: 0 + -57,-40: 0 + -57,-39: 0 + -57,-38: 0 + -57,-37: 0 + -57,-36: 0 + -57,-35: 0 + -57,-34: 0 + -57,-33: 0 + -56,-48: 0 + -56,-47: 0 + -56,-46: 0 + -56,-45: 0 + -56,-44: 0 + -56,-43: 0 + -56,-42: 0 + -56,-41: 0 + -56,-40: 0 + -56,-39: 0 + -56,-38: 0 + -56,-37: 0 + -56,-36: 0 + -56,-35: 0 + -56,-34: 0 + -56,-33: 0 + -55,-48: 0 + -55,-47: 0 + -55,-46: 0 + -55,-45: 0 + -55,-44: 0 + -55,-43: 0 + -55,-42: 0 + -55,-41: 0 + -55,-40: 0 + -55,-39: 0 + -55,-38: 0 + -55,-37: 0 + -55,-36: 0 + -55,-35: 0 + -55,-34: 0 + -55,-33: 0 + -54,-48: 0 + -54,-47: 0 + -54,-46: 0 + -54,-45: 0 + -54,-44: 0 + -54,-43: 0 + -54,-42: 0 + -54,-41: 0 + -54,-40: 0 + -54,-39: 0 + -54,-38: 0 + -54,-37: 0 + -54,-36: 0 + -54,-35: 0 + -54,-34: 0 + -54,-33: 0 + -53,-48: 0 + -53,-47: 0 + -53,-46: 0 + -53,-45: 0 + -53,-44: 0 + -53,-43: 0 + -53,-42: 0 + -53,-41: 0 + -53,-40: 0 + -53,-39: 0 + -53,-38: 0 + -53,-37: 0 + -53,-36: 0 + -53,-35: 0 + -53,-34: 0 + -53,-33: 0 + -52,-48: 0 + -52,-47: 0 + -52,-46: 0 + -52,-45: 0 + -52,-44: 0 + -52,-43: 0 + -52,-42: 0 + -52,-41: 0 + -52,-40: 0 + -52,-39: 0 + -52,-38: 0 + -52,-37: 0 + -52,-36: 0 + -52,-35: 0 + -52,-34: 0 + -52,-33: 0 + -51,-48: 0 + -51,-47: 0 + -51,-46: 0 + -51,-45: 0 + -51,-44: 0 + -51,-43: 0 + -51,-42: 0 + -51,-41: 0 + -51,-40: 0 + -51,-39: 0 + -51,-38: 0 + -51,-37: 0 + -51,-36: 0 + -51,-35: 0 + -51,-34: 0 + -51,-33: 0 + -50,-48: 0 + -50,-47: 0 + -50,-46: 0 + -50,-45: 0 + -50,-44: 0 + -50,-43: 0 + -50,-42: 0 + -50,-41: 0 + -50,-40: 0 + -50,-39: 0 + -50,-38: 0 + -50,-37: 0 + -50,-36: 0 + -50,-35: 0 + -50,-34: 0 + -50,-33: 0 + -49,-48: 0 + -49,-47: 0 + -49,-46: 0 + -49,-45: 0 + -49,-44: 0 + -49,-43: 0 + -49,-42: 0 + -49,-41: 0 + -49,-40: 0 + -49,-39: 0 + -49,-38: 0 + -49,-37: 0 + -49,-36: 0 + -49,-35: 0 + -49,-34: 0 + -49,-33: 0 + -64,-32: 0 + -64,-31: 0 + -64,-30: 0 + -64,-29: 0 + -64,-28: 0 + -64,-27: 0 + -64,-26: 0 + -64,-25: 0 + -64,-24: 0 + -64,-23: 0 + -64,-22: 0 + -64,-21: 0 + -64,-20: 0 + -64,-19: 0 + -64,-18: 0 + -64,-17: 0 + -63,-32: 0 + -63,-31: 0 + -63,-30: 0 + -63,-29: 0 + -63,-28: 0 + -63,-27: 0 + -63,-26: 0 + -63,-25: 0 + -63,-24: 0 + -63,-23: 0 + -63,-22: 0 + -63,-21: 0 + -63,-20: 0 + -63,-19: 0 + -63,-18: 0 + -63,-17: 0 + -62,-32: 0 + -62,-31: 0 + -62,-30: 0 + -62,-29: 0 + -62,-28: 0 + -62,-27: 0 + -62,-26: 0 + -62,-25: 0 + -62,-24: 0 + -62,-23: 0 + -62,-22: 0 + -62,-21: 0 + -62,-20: 0 + -62,-19: 0 + -62,-18: 0 + -62,-17: 0 + -61,-32: 0 + -61,-31: 0 + -61,-30: 0 + -61,-29: 0 + -61,-28: 0 + -61,-27: 0 + -61,-26: 0 + -61,-25: 0 + -61,-24: 0 + -61,-23: 0 + -61,-22: 0 + -61,-21: 0 + -61,-20: 0 + -61,-19: 0 + -61,-18: 0 + -61,-17: 0 + -60,-32: 0 + -60,-31: 0 + -60,-30: 0 + -60,-29: 0 + -60,-28: 0 + -60,-27: 0 + -60,-26: 0 + -60,-25: 0 + -60,-24: 0 + -60,-23: 0 + -60,-22: 0 + -60,-21: 0 + -60,-20: 0 + -60,-19: 0 + -60,-18: 0 + -60,-17: 0 + -59,-32: 0 + -59,-31: 0 + -59,-30: 0 + -59,-29: 0 + -59,-28: 0 + -59,-27: 0 + -59,-26: 0 + -59,-25: 0 + -59,-24: 0 + -59,-23: 0 + -59,-22: 0 + -59,-21: 0 + -59,-20: 0 + -59,-19: 0 + -59,-18: 0 + -59,-17: 0 + -58,-32: 0 + -58,-31: 0 + -58,-30: 0 + -58,-29: 0 + -58,-28: 0 + -58,-27: 0 + -58,-26: 0 + -58,-25: 0 + -58,-24: 0 + -58,-23: 0 + -58,-22: 0 + -58,-21: 0 + -58,-20: 0 + -58,-19: 0 + -58,-18: 0 + -58,-17: 0 + -57,-32: 0 + -57,-31: 0 + -57,-30: 0 + -57,-29: 0 + -57,-28: 0 + -57,-27: 0 + -57,-26: 0 + -57,-25: 0 + -57,-24: 0 + -57,-23: 0 + -57,-22: 0 + -57,-21: 0 + -57,-20: 0 + -57,-19: 0 + -57,-18: 0 + -57,-17: 0 + -56,-32: 0 + -56,-31: 0 + -56,-30: 0 + -56,-29: 0 + -56,-28: 0 + -56,-27: 0 + -56,-26: 0 + -56,-25: 0 + -56,-24: 0 + -56,-23: 0 + -56,-22: 0 + -56,-21: 0 + -56,-20: 0 + -56,-19: 0 + -56,-18: 0 + -56,-17: 0 + -55,-32: 0 + -55,-31: 0 + -55,-30: 0 + -55,-29: 0 + -55,-28: 0 + -55,-27: 0 + -55,-26: 0 + -55,-25: 0 + -55,-24: 0 + -55,-23: 0 + -55,-22: 0 + -55,-21: 0 + -55,-20: 0 + -55,-19: 0 + -55,-18: 0 + -55,-17: 0 + -54,-32: 0 + -54,-31: 0 + -54,-30: 0 + -54,-29: 0 + -54,-28: 0 + -54,-27: 0 + -54,-26: 0 + -54,-25: 0 + -54,-24: 0 + -54,-23: 0 + -54,-22: 0 + -54,-21: 0 + -54,-20: 0 + -54,-19: 0 + -54,-18: 0 + -54,-17: 0 + -53,-32: 0 + -53,-31: 0 + -53,-30: 0 + -53,-29: 0 + -53,-28: 0 + -53,-27: 0 + -53,-26: 0 + -53,-25: 0 + -53,-24: 0 + -53,-23: 0 + -53,-22: 0 + -53,-21: 0 + -53,-20: 0 + -53,-19: 0 + -53,-18: 0 + -53,-17: 0 + -52,-32: 0 + -52,-31: 0 + -52,-30: 0 + -52,-29: 0 + -52,-28: 0 + -52,-27: 0 + -52,-26: 0 + -52,-25: 0 + -52,-24: 0 + -52,-23: 0 + -52,-22: 0 + -52,-21: 0 + -52,-20: 0 + -52,-19: 0 + -52,-18: 0 + -52,-17: 0 + -51,-32: 0 + -51,-31: 0 + -51,-30: 0 + -51,-29: 0 + -51,-28: 0 + -51,-27: 0 + -51,-26: 0 + -51,-25: 0 + -51,-24: 0 + -51,-23: 0 + -51,-22: 0 + -51,-21: 0 + -51,-20: 0 + -51,-19: 0 + -51,-18: 0 + -51,-17: 0 + -50,-32: 0 + -50,-31: 0 + -50,-30: 0 + -50,-29: 0 + -50,-28: 0 + -50,-27: 0 + -50,-26: 0 + -50,-25: 0 + -50,-24: 0 + -50,-23: 0 + -50,-22: 0 + -50,-21: 0 + -50,-20: 0 + -50,-19: 0 + -50,-18: 0 + -50,-17: 0 + -49,-32: 0 + -49,-31: 0 + -49,-30: 0 + -49,-29: 0 + -49,-28: 0 + -49,-27: 0 + -49,-26: 0 + -49,-25: 0 + -49,-24: 0 + -49,-23: 0 + -49,-22: 0 + -49,-21: 0 + -49,-20: 0 + -49,-19: 0 + -49,-18: 0 + -49,-17: 0 + -64,-16: 0 + -64,-15: 0 + -64,-14: 0 + -64,-13: 0 + -64,-12: 0 + -64,-11: 0 + -64,-10: 0 + -64,-9: 0 + -64,-8: 0 + -64,-7: 0 + -63,-16: 0 + -63,-15: 0 + -63,-14: 0 + -63,-13: 0 + -63,-12: 0 + -63,-11: 0 + -63,-10: 0 + -63,-9: 0 + -63,-8: 0 + -63,-7: 0 + -62,-16: 0 + -62,-15: 0 + -62,-14: 0 + -62,-13: 0 + -62,-12: 0 + -62,-11: 0 + -62,-10: 0 + -62,-9: 0 + -62,-8: 0 + -62,-7: 0 + -61,-16: 0 + -61,-15: 0 + -61,-14: 0 + -61,-13: 0 + -61,-12: 0 + -61,-11: 0 + -61,-10: 0 + -61,-9: 0 + -61,-8: 0 + -61,-7: 0 + -60,-16: 0 + -60,-15: 0 + -60,-14: 0 + -60,-13: 0 + -60,-12: 0 + -60,-11: 0 + -60,-10: 0 + -60,-9: 0 + -60,-8: 0 + -60,-7: 0 + -59,-16: 0 + -59,-15: 0 + -59,-14: 0 + -59,-13: 0 + -59,-12: 0 + -59,-11: 0 + -59,-10: 0 + -59,-9: 0 + -59,-8: 0 + -59,-7: 0 + -58,-16: 0 + -58,-15: 0 + -58,-14: 0 + -58,-13: 0 + -58,-12: 0 + -58,-11: 0 + -58,-10: 0 + -58,-9: 0 + -58,-8: 0 + -58,-7: 0 + -57,-16: 0 + -57,-15: 0 + -57,-14: 0 + -57,-13: 0 + -57,-12: 0 + -57,-11: 0 + -57,-10: 0 + -57,-9: 0 + -57,-8: 0 + -57,-7: 0 + -56,-16: 0 + -56,-15: 0 + -56,-14: 0 + -56,-13: 0 + -56,-12: 0 + -56,-11: 0 + -56,-10: 0 + -56,-9: 0 + -56,-8: 0 + -56,-7: 0 + -55,-16: 0 + -55,-15: 0 + -55,-14: 0 + -55,-13: 0 + -55,-12: 0 + -55,-11: 0 + -55,-10: 0 + -55,-9: 0 + -55,-8: 0 + -55,-7: 0 + -54,-16: 0 + -54,-15: 0 + -54,-14: 0 + -54,-13: 0 + -54,-12: 0 + -54,-11: 0 + -54,-10: 0 + -54,-9: 0 + -54,-8: 0 + -54,-7: 0 + -53,-16: 0 + -53,-15: 0 + -53,-14: 0 + -53,-13: 0 + -53,-12: 0 + -53,-11: 0 + -53,-10: 0 + -53,-9: 0 + -53,-8: 0 + -53,-7: 0 + -52,-16: 0 + -52,-15: 0 + -52,-14: 0 + -52,-13: 0 + -52,-12: 0 + -52,-11: 0 + -52,-10: 0 + -52,-9: 0 + -52,-8: 0 + -52,-7: 0 + -51,-16: 0 + -51,-15: 0 + -51,-14: 0 + -51,-13: 0 + -51,-12: 0 + -51,-11: 0 + -51,-10: 0 + -51,-9: 0 + -51,-8: 0 + -51,-7: 0 + -50,-16: 0 + -50,-15: 0 + -50,-14: 0 + -50,-13: 0 + -50,-12: 0 + -50,-11: 0 + -50,-10: 0 + -50,-9: 0 + -50,-8: 0 + -50,-7: 0 + -49,-16: 0 + -49,-15: 0 + -49,-14: 0 + -49,-13: 0 + -49,-12: 0 + -49,-11: 0 + -49,-10: 0 + -49,-9: 0 + -49,-8: 0 + -49,-7: 0 + -49,-6: 0 + -48,16: 0 + -48,17: 0 + -48,18: 0 + -48,19: 0 + -48,20: 0 + -48,21: 0 + -48,22: 0 + -48,23: 0 + -47,16: 0 + -47,17: 0 + -47,18: 0 + -47,19: 0 + -47,20: 0 + -47,21: 0 + -47,22: 0 + -47,23: 0 + -47,24: 0 + -47,25: 0 + -47,26: 0 + -47,27: 0 + -46,16: 0 + -46,17: 0 + -46,18: 0 + -46,19: 0 + -46,20: 0 + -46,21: 0 + -46,22: 0 + -46,23: 0 + -46,24: 0 + -46,25: 0 + -46,26: 0 + -46,27: 0 + -46,28: 0 + -46,29: 0 + -45,16: 0 + -45,17: 4 + -45,18: 0 + -45,19: 3 + -45,20: 0 + -45,21: 0 + -45,22: 0 + -45,23: 0 + -45,24: 0 + -45,25: 0 + -45,26: 0 + -45,27: 0 + -45,28: 0 + -45,29: 0 + -44,16: 0 + -44,17: 4 + -44,18: 0 + -44,19: 3 + -44,20: 0 + -44,21: 0 + -44,22: 0 + -44,23: 0 + -44,24: 0 + -44,25: 0 + -44,26: 0 + -44,27: 0 + -44,28: 0 + -44,29: 0 + -43,16: 0 + -43,17: 4 + -43,18: 0 + -43,19: 3 + -43,20: 0 + -43,21: 0 + -43,22: 0 + -43,23: 0 + -43,24: 0 + -43,25: 0 + -43,26: 0 + -43,27: 0 + -43,28: 0 + -43,29: 0 + -43,30: 0 + -42,16: 0 + -42,17: 0 + -42,18: 0 + -42,19: 0 + -42,20: 0 + -42,21: 0 + -42,22: 0 + -42,23: 0 + -42,24: 0 + -42,25: 0 + -42,26: 0 + -42,27: 0 + -42,28: 0 + -42,29: 0 + -42,30: 0 + -41,16: 0 + -41,17: 0 + -41,18: 0 + -41,19: 0 + -41,20: 0 + -41,21: 0 + -41,22: 0 + -41,23: 0 + -41,24: 0 + -41,25: 0 + -41,26: 0 + -41,27: 0 + -41,28: 0 + -41,29: 0 + -41,30: 0 + -40,16: 0 + -40,17: 0 + -40,18: 0 + -40,19: 0 + -40,20: 0 + -40,21: 0 + -40,22: 0 + -40,23: 0 + -40,24: 0 + -40,25: 0 + -40,26: 0 + -40,27: 0 + -40,28: 0 + -40,29: 0 + -40,30: 0 + -39,16: 0 + -39,17: 0 + -39,18: 0 + -39,19: 0 + -39,20: 0 + -39,21: 0 + -39,22: 0 + -39,23: 0 + -39,24: 0 + -39,25: 0 + -39,26: 0 + -39,27: 0 + -39,28: 0 + -39,29: 0 + -39,30: 0 + -39,31: 0 + -38,16: 0 + -38,17: 0 + -38,18: 0 + -38,19: 0 + -38,20: 0 + -38,21: 0 + -38,22: 0 + -38,23: 0 + -38,24: 0 + -38,25: 0 + -38,26: 0 + -38,27: 0 + -38,28: 0 + -38,29: 0 + -38,30: 0 + -38,31: 0 + -37,16: 0 + -37,17: 0 + -37,18: 0 + -37,19: 0 + -37,20: 0 + -37,21: 0 + -37,22: 0 + -37,23: 0 + -37,24: 0 + -37,25: 0 + -37,26: 0 + -37,27: 0 + -37,28: 0 + -37,29: 0 + -37,30: 0 + -37,31: 0 + -36,16: 0 + -36,17: 0 + -36,18: 0 + -36,19: 0 + -36,20: 0 + -36,21: 0 + -36,22: 0 + -36,23: 0 + -36,24: 0 + -36,25: 0 + -36,26: 3 + -36,27: 0 + -36,28: 0 + -36,29: 0 + -36,30: 0 + -36,31: 0 + -35,16: 0 + -35,17: 0 + -35,18: 0 + -35,19: 0 + -35,20: 0 + -35,21: 0 + -35,22: 0 + -35,23: 0 + -35,24: 0 + -35,25: 0 + -35,26: 3 + -35,27: 0 + -35,28: 0 + -35,29: 0 + -35,30: 0 + -35,31: 0 + -34,16: 0 + -34,17: 0 + -34,18: 0 + -34,19: 0 + -34,20: 0 + -34,21: 0 + -34,22: 0 + -34,23: 0 + -34,24: 0 + -34,25: 0 + -34,26: 3 + -34,27: 0 + -34,28: 0 + -34,29: 0 + -34,30: 0 + -34,31: 0 + -33,16: 0 + -33,17: 0 + -33,18: 0 + -33,19: 0 + -33,20: 0 + -33,21: 0 + -33,22: 0 + -33,23: 0 + -33,24: 0 + -33,25: 0 + -33,26: 0 + -33,27: 0 + -33,28: 0 + -33,29: 0 + -33,30: 0 + -33,31: 0 + -32,16: 0 + -32,17: 0 + -32,18: 0 + -32,19: 0 + -32,20: 0 + -32,21: 0 + -32,22: 0 + -32,23: 0 + -32,24: 0 + -32,25: 0 + -32,26: 0 + -32,27: 0 + -32,28: 0 + -32,29: 0 + -32,30: 0 + -32,31: 0 + -31,16: 0 + -31,17: 0 + -31,18: 0 + -31,19: 0 + -31,20: 0 + -31,21: 0 + -31,22: 0 + -31,23: 0 + -31,24: 0 + -31,25: 0 + -31,26: 0 + -31,27: 0 + -31,28: 0 + -31,29: 0 + -31,30: 0 + -31,31: 0 + -30,16: 0 + -30,17: 0 + -30,18: 0 + -30,19: 0 + -30,20: 0 + -30,21: 0 + -30,22: 0 + -30,23: 0 + -30,24: 0 + -30,25: 0 + -30,26: 0 + -30,27: 0 + -30,28: 0 + -30,29: 0 + -30,30: 0 + -30,31: 0 + -29,16: 0 + -29,17: 0 + -29,18: 0 + -29,19: 0 + -29,20: 0 + -29,21: 0 + -29,22: 0 + -29,23: 0 + -29,24: 0 + -29,25: 0 + -29,26: 0 + -29,27: 0 + -29,28: 0 + -29,29: 0 + -29,30: 0 + -28,16: 0 + -28,17: 0 + -28,18: 0 + -28,19: 0 + -28,20: 0 + -28,21: 0 + -28,22: 0 + -28,23: 0 + -28,24: 0 + -28,25: 0 + -28,26: 0 + -28,27: 0 + -28,28: 0 + -28,29: 0 + -28,30: 0 + -27,16: 0 + -27,17: 0 + -27,18: 0 + -27,19: 0 + -27,20: 0 + -27,21: 0 + -27,22: 0 + -27,23: 0 + -27,24: 0 + -27,25: 0 + -27,26: 0 + -27,27: 0 + -27,28: 0 + -27,29: 0 + -27,30: 0 + -26,16: 0 + -26,17: 0 + -26,18: 0 + -26,19: 0 + -26,20: 0 + -26,21: 0 + -26,22: 0 + -26,23: 0 + -26,24: 0 + -26,25: 0 + -26,26: 0 + -26,27: 0 + -26,28: 0 + -26,29: 0 + -25,16: 0 + -25,17: 0 + -25,18: 0 + -25,19: 0 + -25,20: 0 + -25,21: 0 + -25,22: 0 + -25,23: 0 + -25,24: 0 + -25,25: 0 + -25,26: 0 + -25,27: 0 + -25,28: 0 + -25,29: 0 + -24,16: 0 + -24,17: 0 + -24,18: 0 + -24,19: 0 + -24,20: 0 + -24,21: 0 + -24,22: 0 + -24,23: 0 + -24,24: 0 + -24,25: 0 + -24,26: 0 + -24,27: 0 + -24,28: 0 + -24,29: 0 + -23,16: 0 + -23,17: 0 + -23,18: 0 + -23,19: 0 + -23,20: 0 + -23,21: 0 + -23,22: 0 + -23,23: 0 + -23,24: 0 + -23,25: 0 + -23,26: 0 + -23,27: 0 + -23,28: 0 + -23,29: 0 + -22,16: 0 + -22,17: 0 + -22,18: 0 + -22,19: 0 + -22,20: 0 + -22,21: 0 + -22,22: 0 + -22,23: 0 + -22,24: 0 + -22,25: 0 + -22,26: 0 + -22,27: 0 + -22,28: 0 + -22,29: 0 + -21,16: 0 + -21,17: 0 + -21,18: 0 + -21,19: 0 + -21,20: 0 + -21,21: 0 + -21,22: 0 + -20,16: 0 + -20,17: 0 + -20,18: 0 + -20,19: 0 + -20,20: 0 + -19,16: 0 + -19,17: 0 + -19,18: 0 + -18,16: 0 + -17,16: 0 + -60,-49: 0 + -59,-51: 0 + -59,-50: 0 + -59,-49: 0 + -58,-53: 0 + -58,-52: 0 + -58,-51: 0 + -58,-50: 0 + -58,-49: 0 + -57,-56: 0 + -57,-55: 0 + -57,-54: 0 + -57,-53: 0 + -57,-52: 0 + -57,-51: 0 + -57,-50: 0 + -57,-49: 0 + -56,-56: 0 + -56,-55: 0 + -56,-54: 0 + -56,-53: 0 + -56,-52: 0 + -56,-51: 0 + -56,-50: 0 + -56,-49: 0 + -55,-58: 0 + -55,-57: 0 + -55,-56: 0 + -55,-55: 0 + -55,-54: 0 + -55,-53: 0 + -55,-52: 0 + -55,-51: 0 + -55,-50: 0 + -55,-49: 0 + -54,-58: 0 + -54,-57: 0 + -54,-56: 0 + -54,-55: 0 + -54,-54: 0 + -54,-53: 0 + -54,-52: 0 + -54,-51: 0 + -54,-50: 0 + -54,-49: 0 + -53,-58: 0 + -53,-57: 0 + -53,-56: 0 + -53,-55: 0 + -53,-54: 0 + -53,-53: 0 + -53,-52: 0 + -53,-51: 0 + -53,-50: 0 + -53,-49: 0 + -52,-59: 0 + -52,-58: 0 + -52,-57: 0 + -52,-56: 0 + -52,-55: 0 + -52,-54: 0 + -52,-53: 0 + -52,-52: 0 + -52,-51: 0 + -52,-50: 0 + -52,-49: 0 + -51,-59: 0 + -51,-58: 0 + -51,-57: 0 + -51,-56: 0 + -51,-55: 0 + -51,-54: 0 + -51,-53: 0 + -51,-52: 0 + -51,-51: 0 + -51,-50: 0 + -51,-49: 0 + -50,-59: 0 + -50,-58: 0 + -50,-57: 0 + -50,-56: 0 + -50,-55: 0 + -50,-54: 0 + -50,-53: 0 + -50,-52: 0 + -50,-51: 0 + -50,-50: 0 + -50,-49: 0 + -49,-59: 0 + -49,-58: 0 + -49,-57: 0 + -49,-56: 0 + -49,-55: 0 + -49,-54: 0 + -49,-53: 0 + -49,-52: 0 + -49,-51: 0 + -49,-50: 0 + -49,-49: 0 + -74,-14: 0 + -74,-13: 0 + -74,-12: 0 + -74,-11: 0 + -73,-16: 0 + -73,-15: 0 + -73,-14: 0 + -73,-13: 0 + -73,-12: 0 + -73,-11: 0 + -73,-10: 0 + -73,-9: 0 + -72,-16: 0 + -72,-15: 0 + -72,-14: 0 + -72,-13: 0 + -72,-12: 0 + -72,-11: 0 + -72,-10: 0 + -72,-9: 0 + -72,-8: 0 + -71,-16: 0 + -71,-15: 0 + -71,-14: 0 + -71,-13: 0 + -71,-12: 0 + -71,-11: 0 + -71,-10: 0 + -71,-9: 0 + -71,-8: 0 + -70,-16: 0 + -70,-15: 0 + -70,-14: 0 + -70,-13: 0 + -70,-12: 0 + -70,-11: 0 + -70,-10: 0 + -70,-9: 0 + -70,-8: 0 + -70,-7: 0 + -69,-16: 0 + -69,-15: 0 + -69,-14: 0 + -69,-13: 0 + -69,-12: 0 + -69,-11: 0 + -69,-10: 0 + -69,-9: 0 + -69,-8: 0 + -69,-7: 0 + -68,-16: 0 + -68,-15: 0 + -68,-14: 0 + -68,-13: 0 + -68,-12: 0 + -68,-11: 0 + -68,-10: 0 + -68,-9: 0 + -68,-8: 0 + -68,-7: 0 + -67,-16: 0 + -67,-15: 0 + -67,-14: 0 + -67,-13: 0 + -67,-12: 0 + -67,-11: 0 + -67,-10: 0 + -67,-9: 0 + -67,-8: 0 + -67,-7: 0 + -66,-16: 0 + -66,-15: 0 + -66,-14: 0 + -66,-13: 0 + -66,-12: 0 + -66,-11: 0 + -66,-10: 0 + -66,-9: 0 + -66,-8: 0 + -66,-7: 0 + -65,-16: 0 + -65,-15: 0 + -65,-14: 0 + -65,-13: 0 + -65,-12: 0 + -65,-11: 0 + -65,-10: 0 + -65,-9: 0 + -65,-8: 0 + -65,-7: 0 + -73,-17: 0 + -72,-19: 0 + -72,-18: 0 + -72,-17: 0 + -71,-24: 0 + -71,-23: 0 + -71,-22: 0 + -71,-21: 0 + -71,-20: 0 + -71,-19: 0 + -71,-18: 0 + -71,-17: 0 + -70,-32: 0 + -70,-31: 0 + -70,-30: 0 + -70,-29: 0 + -70,-28: 0 + -70,-27: 0 + -70,-26: 0 + -70,-25: 0 + -70,-24: 0 + -70,-23: 0 + -70,-22: 0 + -70,-21: 0 + -70,-20: 0 + -70,-19: 0 + -70,-18: 0 + -70,-17: 0 + -69,-32: 0 + -69,-29: 0 + -69,-26: 0 + -69,-25: 0 + -69,-24: 0 + -69,-23: 0 + -69,-22: 0 + -69,-21: 0 + -69,-20: 0 + -69,-19: 0 + -69,-18: 0 + -69,-17: 0 + -68,-32: 0 + -68,-30: 0 + -68,-29: 0 + -68,-28: 0 + -68,-27: 0 + -68,-26: 0 + -68,-25: 0 + -68,-24: 0 + -68,-23: 0 + -68,-22: 0 + -68,-21: 0 + -68,-20: 0 + -68,-19: 0 + -68,-18: 0 + -68,-17: 0 + -67,-30: 0 + -67,-29: 0 + -67,-28: 0 + -67,-27: 0 + -67,-26: 0 + -67,-25: 0 + -67,-24: 0 + -67,-23: 0 + -67,-22: 0 + -67,-21: 0 + -67,-20: 0 + -67,-19: 0 + -67,-18: 0 + -67,-17: 0 + -66,-32: 0 + -66,-31: 0 + -66,-30: 0 + -66,-29: 0 + -66,-28: 0 + -66,-27: 0 + -66,-26: 0 + -66,-25: 0 + -66,-24: 0 + -66,-23: 0 + -66,-22: 0 + -66,-21: 0 + -66,-20: 0 + -66,-19: 0 + -66,-18: 0 + -66,-17: 0 + -65,-32: 0 + -65,-31: 0 + -65,-30: 0 + -65,-29: 0 + -65,-28: 0 + -65,-27: 0 + -65,-26: 0 + -65,-25: 0 + -65,-24: 0 + -65,-23: 0 + -65,-22: 0 + -65,-21: 0 + -65,-20: 0 + -65,-19: 0 + -65,-18: 0 + -65,-17: 0 + -50,13: 0 + -50,14: 0 + -50,15: 0 + -49,10: 0 + -49,11: 0 + -49,12: 0 + -49,13: 0 + -49,14: 0 + -49,15: 0 + -50,16: 0 + -50,17: 0 + -50,18: 0 + -49,16: 0 + -49,17: 0 + -49,18: 0 + -49,19: 0 + -49,20: 0 + -49,21: 0 + -34,32: 0 + -33,32: 0 + -32,32: 0 + 20,32: 0 + 10,32: 0 + 10,33: 0 + 11,32: 0 + 11,33: 0 + 11,34: 0 + 12,32: 0 + 12,33: 0 + 12,34: 0 + 12,35: 0 + 13,32: 0 + 13,33: 0 + 13,34: 0 + 13,35: 0 + 13,36: 0 + 14,32: 0 + 14,33: 0 + -32,-79: 0 + -32,-78: 0 + -32,-77: 0 + -32,-75: 0 + -32,-74: 0 + -32,-73: 0 + -32,-71: 0 + -32,-70: 0 + -32,-69: 0 + -31,-79: 0 + -31,-78: 0 + -31,-77: 0 + -31,-75: 0 + -31,-74: 0 + -31,-73: 0 + -31,-71: 0 + -31,-70: 0 + -31,-69: 0 + -30,-79: 0 + -30,-78: 0 + -30,-77: 0 + -30,-75: 0 + -30,-74: 0 + -30,-73: 0 + -30,-71: 0 + -30,-70: 0 + -30,-69: 0 + -29,-79: 0 + -29,-78: 0 + -29,-77: 0 + -29,-75: 0 + -29,-74: 0 + -29,-73: 0 + -29,-71: 0 + -29,-70: 0 + -29,-69: 0 + -29,-65: 0 + -28,-79: 0 + -28,-78: 0 + -28,-77: 0 + -28,-75: 0 + -28,-74: 0 + -28,-73: 0 + -28,-71: 0 + -28,-70: 0 + -28,-69: 0 + -28,-65: 0 + -27,-79: 0 + -27,-78: 0 + -27,-77: 0 + -27,-75: 0 + -27,-74: 0 + -27,-73: 0 + -27,-71: 0 + -27,-70: 0 + -27,-69: 0 + -27,-65: 0 + -26,-79: 0 + -26,-78: 0 + -26,-77: 0 + -26,-75: 0 + -26,-74: 0 + -26,-73: 0 + -26,-71: 0 + -26,-70: 0 + -26,-69: 0 + -26,-66: 0 + -26,-65: 0 + -25,-80: 0 + -25,-79: 0 + -25,-78: 0 + -25,-77: 0 + -25,-76: 0 + -25,-75: 0 + -25,-74: 0 + -25,-73: 0 + -25,-72: 0 + -25,-71: 0 + -25,-70: 0 + -25,-69: 0 + -25,-68: 0 + -25,-67: 0 + -25,-66: 0 + -25,-65: 0 + -24,-80: 0 + -24,-79: 0 + -24,-78: 0 + -24,-77: 0 + -24,-76: 0 + -24,-75: 0 + -24,-74: 0 + -24,-73: 0 + -24,-72: 0 + -24,-71: 0 + -24,-70: 0 + -24,-69: 0 + -24,-68: 0 + -24,-67: 0 + -24,-66: 0 + -24,-65: 0 + -23,-80: 0 + -23,-79: 0 + -23,-78: 0 + -23,-77: 0 + -23,-76: 0 + -23,-75: 0 + -23,-74: 0 + -23,-73: 0 + -23,-72: 0 + -23,-71: 0 + -23,-70: 0 + -23,-69: 0 + -23,-68: 0 + -23,-67: 0 + -23,-66: 0 + -23,-65: 0 + -22,-66: 0 + -22,-65: 0 + -21,-80: 0 + -21,-79: 0 + -21,-65: 0 + -20,-65: 0 + -19,-65: 0 + -18,-65: 0 + -17,-65: 0 + -80,-47: 0 + -80,-46: 0 + -80,-45: 0 + -80,-44: 0 + -80,-43: 0 + -79,-47: 0 + -79,-46: 0 + -79,-45: 0 + -79,-44: 0 + -79,-43: 0 + -78,-47: 0 + -78,-46: 0 + -78,-45: 0 + -78,-44: 0 + -78,-43: 0 + -77,-47: 0 + -77,-46: 0 + -77,-45: 0 + -77,-44: 0 + -77,-43: 0 + -76,-47: 0 + -76,-46: 0 + -76,-45: 0 + -76,-44: 0 + -76,-43: 0 + -75,-47: 0 + -75,-46: 0 + -75,-45: 0 + -75,-44: 0 + -75,-43: 0 + -74,-47: 0 + -74,-46: 0 + -74,-45: 0 + -74,-44: 0 + -74,-43: 0 + -73,-47: 0 + -73,-46: 0 + -73,-45: 0 + -73,-44: 0 + -73,-43: 0 + -72,-47: 0 + -72,-46: 0 + -72,-45: 0 + -72,-44: 0 + -72,-43: 0 + -71,-47: 0 + -71,-46: 0 + -71,-45: 0 + -71,-44: 0 + -71,-43: 0 + -70,-47: 0 + -70,-46: 0 + -70,-45: 0 + -70,-44: 0 + -70,-43: 0 + -69,-47: 0 + -69,-46: 0 + -69,-45: 0 + -69,-44: 0 + -69,-43: 0 + -68,-47: 0 + -68,-46: 0 + -68,-45: 0 + -68,-44: 0 + -68,-43: 0 + -67,-47: 0 + -67,-46: 0 + -67,-45: 0 + -67,-44: 0 + -67,-43: 0 + -66,-47: 0 + -66,-46: 0 + -66,-45: 0 + -66,-44: 0 + -66,-43: 0 + -66,-33: 0 + -65,-47: 0 + -65,-46: 0 + -65,-45: 0 + -65,-44: 0 + -65,-43: 0 + -65,-36: 0 + -65,-35: 0 + -65,-34: 0 + -65,-33: 0 + -85,-47: 0 + -85,-46: 0 + -85,-45: 0 + -85,-44: 0 + -85,-43: 0 + -84,-47: 0 + -84,-46: 0 + -84,-45: 0 + -84,-44: 0 + -84,-43: 0 + -83,-47: 0 + -83,-46: 0 + -83,-45: 0 + -83,-44: 0 + -83,-43: 0 + -82,-47: 0 + -82,-46: 0 + -82,-45: 0 + -82,-44: 0 + -82,-43: 0 + -81,-47: 0 + -81,-46: 0 + -81,-45: 0 + -81,-44: 0 + -81,-43: 0 + -32,-85: 0 + -32,-83: 0 + -32,-82: 0 + -32,-81: 0 + -31,-85: 0 + -31,-83: 0 + -31,-82: 0 + -31,-81: 0 + -30,-85: 0 + -30,-83: 0 + -30,-82: 0 + -30,-81: 0 + -29,-85: 0 + -29,-83: 0 + -29,-82: 0 + -29,-81: 0 + -28,-85: 0 + -28,-83: 0 + -28,-82: 0 + -28,-81: 0 + -27,-87: 0 + -27,-86: 0 + -27,-85: 0 + -27,-83: 0 + -27,-82: 0 + -27,-81: 0 + -26,-87: 0 + -26,-83: 0 + -26,-82: 0 + -26,-81: 0 + -25,-87: 0 + -25,-84: 0 + -25,-83: 0 + -25,-82: 0 + -25,-81: 0 + -24,-87: 0 + -24,-85: 0 + -24,-84: 0 + -24,-83: 0 + -24,-82: 0 + -24,-81: 0 + -23,-87: 0 + -23,-84: 0 + -23,-83: 0 + -23,-82: 0 + -23,-81: 0 + -22,-87: 0 + -22,-83: 0 + -22,-81: 0 + -21,-87: 0 + -21,-86: 0 + -21,-85: 0 + -21,-84: 0 + -21,-83: 0 + -21,-82: 0 + -21,-81: 0 + -35,-80: 0 + -35,-79: 0 + -35,-78: 0 + -35,-77: 0 + -35,-76: 0 + -35,-75: 0 + -35,-74: 0 + -35,-73: 0 + -35,-72: 0 + -35,-71: 0 + -35,-70: 0 + -35,-69: 0 + -35,-68: 0 + -35,-67: 0 + -34,-79: 0 + -34,-77: 0 + -34,-75: 0 + -34,-73: 0 + -34,-71: 0 + -34,-69: 0 + -33,-79: 0 + -33,-78: 0 + -33,-77: 0 + -33,-75: 0 + -33,-74: 0 + -33,-73: 0 + -33,-71: 0 + -33,-70: 0 + -33,-69: 0 + -35,-85: 0 + -35,-84: 0 + -35,-83: 0 + -35,-82: 0 + -35,-81: 0 + -34,-85: 0 + -34,-83: 0 + -34,-81: 0 + -33,-85: 0 + -33,-83: 0 + -33,-82: 0 + -33,-81: 0 + 6,13: 0 + 7,13: 0 + 7,14: 0 + 8,13: 0 + 9,13: 0 + 10,13: 0 + 11,13: 0 + 11,14: 0 + 12,13: 0 + 12,14: 0 + 12,15: 0 + 17,13: 0 + 17,14: 0 + 17,15: 0 + 18,13: 0 + 18,14: 0 + 19,13: 0 + 20,13: 0 + 21,13: 0 + 22,13: 0 + 22,14: 0 + 23,13: 0 + 23,14: 0 + 24,13: 0 + 24,14: 0 + 25,13: 0 + 7,23: 0 + 8,17: 0 + 8,20: 0 + 8,21: 0 + 9,16: 0 + 12,16: 0 + 17,16: 0 + 20,16: 0 + 21,17: 0 + 21,20: 0 + -80,-48: 0 + -80,-42: 0 + -80,-41: 0 + -80,-40: 0 + -80,-39: 0 + -80,-38: 0 + -80,-37: 0 + -80,-36: 0 + -79,-48: 0 + -79,-42: 0 + -79,-41: 0 + -79,-40: 0 + -79,-39: 0 + -79,-38: 0 + -79,-37: 0 + -79,-36: 0 + -78,-48: 0 + -78,-42: 0 + -78,-41: 0 + -78,-40: 0 + -78,-39: 0 + -78,-38: 0 + -78,-37: 0 + -77,-48: 0 + -77,-42: 0 + -77,-41: 0 + -77,-40: 0 + -77,-39: 0 + -77,-38: 0 + -76,-48: 0 + -76,-42: 0 + -76,-41: 0 + -76,-40: 0 + -76,-39: 0 + -76,-38: 0 + -75,-48: 0 + -75,-42: 0 + -75,-41: 0 + -75,-40: 0 + -75,-39: 0 + -75,-38: 0 + -88,-47: 0 + -88,-46: 0 + -88,-45: 0 + -88,-44: 0 + -88,-43: 0 + -87,-47: 0 + -87,-46: 0 + -87,-45: 0 + -87,-44: 0 + -87,-43: 0 + -86,-48: 0 + -86,-47: 0 + -86,-46: 0 + -86,-45: 0 + -86,-44: 0 + -86,-43: 0 + -86,-42: 0 + -86,-41: 0 + -86,-40: 0 + -85,-48: 0 + -85,-42: 0 + -85,-41: 0 + -85,-40: 0 + -85,-39: 0 + -85,-38: 0 + -84,-48: 0 + -84,-42: 0 + -84,-41: 0 + -84,-40: 0 + -84,-39: 0 + -84,-38: 0 + -83,-48: 0 + -83,-42: 0 + -83,-41: 0 + -83,-40: 0 + -83,-39: 0 + -83,-38: 0 + -82,-48: 0 + -82,-42: 0 + -82,-41: 0 + -82,-40: 0 + -82,-39: 0 + -82,-38: 0 + -82,-37: 0 + -81,-48: 0 + -81,-42: 0 + -81,-41: 0 + -81,-40: 0 + -81,-39: 0 + -81,-38: 0 + -81,-37: 0 + -81,-36: 0 + -80,-54: 0 + -80,-53: 0 + -80,-52: 0 + -80,-51: 0 + -80,-50: 0 + -80,-49: 0 + -79,-54: 0 + -79,-53: 0 + -79,-52: 0 + -79,-51: 0 + -79,-50: 0 + -79,-49: 0 + -78,-53: 0 + -78,-52: 0 + -78,-51: 0 + -78,-50: 0 + -78,-49: 0 + -77,-52: 0 + -77,-51: 0 + -77,-50: 0 + -77,-49: 0 + -76,-52: 0 + -76,-51: 0 + -76,-50: 0 + -76,-49: 0 + -75,-52: 0 + -75,-51: 0 + -75,-50: 0 + -75,-49: 0 + -86,-50: 0 + -86,-49: 0 + -85,-52: 0 + -85,-51: 0 + -85,-50: 0 + -85,-49: 0 + -84,-52: 0 + -84,-51: 0 + -84,-50: 0 + -84,-49: 0 + -83,-52: 0 + -83,-51: 0 + -83,-50: 0 + -83,-49: 0 + -82,-53: 0 + -82,-52: 0 + -82,-51: 0 + -82,-50: 0 + -82,-49: 0 + -81,-54: 0 + -81,-53: 0 + -81,-52: 0 + -81,-51: 0 + -81,-50: 0 + -81,-49: 0 + 29,12: 0 + 29,-28: 0 + 30,-28: 0 + 31,-28: 0 + 31,-27: 0 + 41,11: 0 + 44,11: 0 + 45,6: 0 + 45,7: 0 + 45,10: 0 + 46,6: 0 + 47,6: 0 + 45,-11: 0 + 45,-10: 0 + 45,-3: 0 + 45,-2: 0 + 45,-1: 0 + 46,-10: 0 + 46,-3: 0 + 46,-1: 0 + 47,-10: 0 + 47,-3: 0 + 47,-1: 0 + 48,6: 0 + 48,-10: 0 + 48,-3: 0 + 48,-1: 0 + 32,-28: 0 + 33,-28: 0 + 34,-28: 0 + 35,-28: 0 + 35,-27: 0 + 36,-28: 0 + 37,-28: 0 + 38,-28: 0 + 39,-28: 0 + 39,-27: 0 + 40,-28: 0 + 41,-28: 0 + 42,-28: 0 + 43,-28: 0 + 43,-27: 0 + 44,-28: 0 + 45,-28: 0 + 45,-25: 0 + 46,-27: 0 + 46,-26: 0 + 46,-25: 0 + 46,-24: 0 + 46,-23: 0 + 46,-22: 0 + 46,-21: 0 + 46,-20: 0 + 46,-19: 0 + 46,-18: 0 + 46,-17: 0 + -37,32: 0 + -36,32: 0 + -35,32: 0 + -36,-64: 0 + -35,-64: 0 + -20,26: 0 + -20,27: 0 + -20,28: 0 + -20,29: 0 + -20,30: 0 + -19,26: 0 + -19,27: 0 + -19,28: 0 + -19,30: 0 + -18,26: 0 + -18,27: 0 + -18,28: 0 + -18,30: 0 + -17,26: 0 + -17,27: 0 + -17,28: 0 + -17,30: 0 + -80,-14: 0 + -79,-16: 0 + -79,-15: 0 + -79,-14: 0 + -78,-16: 0 + -78,-14: 0 + -77,-16: 0 + -77,-15: 0 + -77,-14: 0 + -76,-14: 0 + -80,-25: 0 + -80,-24: 0 + -79,-32: 0 + -79,-31: 0 + -79,-30: 0 + -79,-29: 0 + -79,-28: 0 + -79,-27: 0 + -79,-26: 0 + -79,-25: 0 + -79,-24: 0 + -79,-23: 0 + -79,-22: 0 + -79,-21: 0 + -79,-20: 0 + -79,-19: 0 + -79,-18: 0 + -79,-17: 0 + -78,-32: 0 + -78,-31: 0 + -78,-30: 0 + -78,-29: 0 + -78,-28: 0 + -78,-27: 0 + -78,-26: 0 + -78,-25: 0 + -78,-24: 0 + -78,-23: 0 + -78,-22: 0 + -78,-21: 0 + -78,-20: 0 + -78,-19: 0 + -78,-18: 0 + -78,-17: 0 + -77,-32: 0 + -77,-31: 0 + -77,-30: 0 + -77,-29: 0 + -77,-28: 0 + -77,-27: 0 + -77,-26: 0 + -77,-25: 0 + -77,-24: 0 + -77,-23: 0 + -77,-22: 0 + -77,-21: 0 + -77,-20: 0 + -77,-19: 0 + -77,-18: 0 + -77,-17: 0 + -76,-25: 0 + -76,-24: 0 + -75,-32: 0 + -75,-31: 0 + -75,-30: 0 + -75,-29: 0 + -75,-28: 0 + -75,-27: 0 + -75,-26: 0 + -75,-25: 0 + -75,-24: 0 + -74,-32: 0 + -74,-31: 0 + -74,-30: 0 + -74,-29: 0 + -74,-28: 0 + -74,-27: 0 + -74,-26: 0 + -74,-25: 0 + -74,-24: 0 + -73,-32: 0 + -73,-31: 0 + -73,-30: 0 + -73,-29: 0 + -73,-28: 0 + -73,-27: 0 + -73,-26: 0 + -73,-25: 0 + -73,-24: 0 + -72,-25: 0 + -72,-24: 0 + -71,-25: 0 + -79,-33: 0 + -78,-33: 0 + -77,-33: 0 + -75,-33: 0 + -74,-33: 0 + -73,-33: 0 + -85,-35: 0 + -85,-34: 0 + -85,-33: 0 + -84,-35: 0 + -84,-33: 0 + -83,-35: 0 + -83,-34: 0 + -83,-33: 0 + -82,-33: 0 + -81,-33: 0 + -86,-27: 0 + -86,-26: 0 + -86,-25: 0 + -86,-24: 0 + -86,-23: 0 + -86,-22: 0 + -85,-32: 0 + -85,-31: 0 + -85,-30: 0 + -85,-29: 0 + -85,-28: 0 + -85,-27: 0 + -85,-25: 0 + -85,-24: 0 + -85,-22: 0 + -85,-21: 0 + -85,-20: 0 + -85,-19: 0 + -85,-18: 0 + -85,-17: 0 + -84,-25: 0 + -84,-24: 0 + -83,-32: 0 + -83,-31: 0 + -83,-30: 0 + -83,-29: 0 + -83,-28: 0 + -83,-27: 0 + -83,-26: 0 + -83,-25: 0 + -83,-24: 0 + -83,-23: 0 + -83,-22: 0 + -83,-21: 0 + -83,-20: 0 + -83,-19: 0 + -83,-18: 0 + -83,-17: 0 + -82,-32: 0 + -82,-31: 0 + -82,-30: 0 + -82,-29: 0 + -82,-28: 0 + -82,-27: 0 + -82,-26: 0 + -82,-25: 0 + -82,-24: 0 + -82,-23: 0 + -82,-22: 0 + -82,-21: 0 + -82,-20: 0 + -82,-19: 0 + -82,-18: 0 + -82,-17: 0 + -81,-32: 0 + -81,-31: 0 + -81,-30: 0 + -81,-29: 0 + -81,-28: 0 + -81,-27: 0 + -81,-26: 0 + -81,-25: 0 + -81,-24: 0 + -81,-23: 0 + -81,-22: 0 + -81,-21: 0 + -81,-20: 0 + -81,-19: 0 + -81,-18: 0 + -81,-17: 0 + -85,-16: 0 + -85,-15: 0 + -85,-14: 0 + -84,-16: 0 + -84,-14: 0 + -83,-16: 0 + -83,-15: 0 + -83,-14: 0 + -82,-16: 0 + -82,-14: 0 + -81,-16: 0 + -81,-15: 0 + -81,-14: 0 + -16,26: 0 + -16,27: 0 + -16,28: 0 + -16,30: 0 + -16,31: 0 + -15,26: 0 + -15,27: 0 + -15,28: 0 + -15,31: 0 + -14,16: 0 + -14,17: 0 + -14,18: 0 + -14,19: 0 + -14,20: 0 + -14,21: 0 + -14,22: 0 + -14,23: 0 + -14,24: 0 + -14,25: 0 + -14,26: 0 + -14,27: 0 + -14,28: 0 + -14,29: 0 + -14,30: 0 + -14,31: 0 + -13,16: 0 + -13,17: 0 + -13,18: 0 + -13,19: 0 + -13,20: 0 + -13,21: 0 + -13,22: 0 + -13,23: 0 + -13,24: 0 + -13,25: 0 + -13,26: 0 + -13,27: 0 + -13,28: 0 + -13,29: 0 + -13,30: 0 + -13,31: 0 + -12,18: 0 + -12,19: 0 + -12,20: 0 + -12,22: 0 + -12,23: 0 + -12,24: 0 + -12,26: 0 + -12,27: 0 + -12,28: 0 + -12,31: 0 + -11,18: 0 + -11,19: 0 + -11,20: 0 + -11,22: 0 + -11,23: 0 + -11,24: 0 + -11,26: 0 + -11,27: 0 + -11,28: 0 + -11,30: 0 + -11,31: 0 + -10,18: 0 + -10,19: 0 + -10,20: 0 + -10,22: 0 + -10,23: 0 + -10,24: 0 + -10,26: 0 + -10,27: 0 + -10,28: 0 + -10,30: 0 + -9,18: 0 + -9,19: 0 + -9,20: 0 + -9,22: 0 + -9,23: 0 + -9,24: 0 + -9,26: 0 + -9,27: 0 + -9,28: 0 + -9,30: 0 + -8,18: 0 + -8,19: 0 + -8,20: 0 + -8,22: 0 + -8,23: 0 + -8,24: 0 + -8,26: 0 + -8,27: 0 + -8,28: 0 + -8,30: 0 + -7,18: 0 + -7,19: 0 + -7,20: 0 + -7,22: 0 + -7,23: 0 + -7,24: 0 + -7,26: 0 + -7,27: 0 + -7,28: 0 + -7,29: 0 + -7,30: 0 + -6,18: 0 + -6,20: 0 + -6,22: 0 + -6,24: 0 + -6,26: 0 + -6,28: 0 + -6,30: 0 + -5,17: 0 + -5,18: 0 + -5,19: 0 + -5,20: 0 + -5,21: 0 + -5,22: 0 + -5,23: 0 + -5,24: 0 + -5,25: 0 + -5,26: 0 + -5,27: 0 + -5,28: 0 + -5,29: 0 + -5,30: 0 + -47,28: 0 + 46,-2: 0 + -16,-77: 0 + -16,-76: 0 + -16,-75: 0 + -16,-74: 0 + -64,-48: 0 + -64,-42: 0 + -64,-40: 0 + -64,-54: 0 + -64,-50: 0 + -74,-15: 0 + -71,-26: 0 + -72,-48: 0 + -72,-42: 0 + -72,-40: 0 + -72,-36: 0 + -71,-48: 0 + -71,-42: 0 + -71,-41: 0 + -71,-40: 0 + -71,-39: 0 + -71,-38: 0 + -71,-37: 0 + -71,-36: 0 + -70,-48: 0 + -70,-42: 0 + -70,-40: 0 + -70,-36: 0 + -69,-40: 0 + -69,-36: 0 + -68,-40: 0 + -68,-36: 0 + -67,-40: 0 + -67,-36: 0 + -66,-48: 0 + -66,-42: 0 + -66,-40: 0 + -65,-48: 0 + -65,-42: 0 + -65,-41: 0 + -65,-40: 0 + -72,-54: 0 + -72,-50: 0 + -71,-54: 0 + -71,-53: 0 + -71,-52: 0 + -71,-51: 0 + -71,-50: 0 + -71,-49: 0 + -70,-54: 0 + -70,-50: 0 + -69,-54: 0 + -69,-50: 0 + -68,-54: 0 + -68,-50: 0 + -67,-54: 0 + -67,-50: 0 + -66,-54: 0 + -66,-50: 0 + -65,-54: 0 + -65,-53: 0 + -65,-52: 0 + -65,-51: 0 + -65,-50: 0 + -65,-49: 0 + -85,-23: 0 + -15,16: 0 + -12,30: 0 + -40,-64: 0 + -39,-64: 0 + -38,-64: 0 + -37,-64: 0 + -30,-65: 0 + -41,-64: 0 + -15,18: 0 + -16,16: 0 + -20,31: 0 + -19,31: 0 + -18,31: 0 + -17,31: 0 + -22,33: 0 + -22,34: 0 + -22,35: 0 + -22,36: 0 + -22,37: 0 + -22,38: 0 + -21,34: 0 + -21,36: 0 + -21,38: 0 + -20,32: 0 + -20,34: 0 + -20,35: 0 + -20,36: 0 + -20,38: 0 + -19,32: 0 + -19,34: 0 + -19,35: 0 + -19,36: 0 + -19,38: 0 + -18,32: 0 + -18,34: 0 + -18,35: 0 + -18,36: 0 + -18,38: 0 + -17,32: 0 + -17,34: 0 + -17,35: 0 + -17,36: 0 + -17,38: 0 + -89,-35: 0 + -89,-34: 0 + -89,-33: 0 + -88,-35: 0 + -87,-35: 0 + -87,-34: 0 + -87,-33: 0 + -86,-35: 0 + -86,-33: 0 + -91,-27: 0 + -91,-26: 0 + -91,-25: 0 + -91,-24: 0 + -91,-23: 0 + -90,-27: 0 + -90,-23: 0 + -89,-32: 0 + -89,-31: 0 + -89,-30: 0 + -89,-29: 0 + -89,-28: 0 + -89,-27: 0 + -89,-25: 0 + -89,-23: 0 + -89,-22: 0 + -89,-21: 0 + -89,-20: 0 + -89,-19: 0 + -89,-18: 0 + -89,-17: 0 + -88,-25: 0 + -87,-32: 0 + -87,-31: 0 + -87,-30: 0 + -87,-29: 0 + -87,-28: 0 + -87,-27: 0 + -87,-25: 0 + -87,-23: 0 + -87,-22: 0 + -87,-21: 0 + -87,-20: 0 + -87,-19: 0 + -87,-18: 0 + -87,-17: 0 + -86,-32: 0 + -86,-31: 0 + -86,-30: 0 + -86,-29: 0 + -86,-28: 0 + -86,-21: 0 + -86,-20: 0 + -86,-19: 0 + -86,-18: 0 + -86,-17: 0 + -89,-16: 0 + -89,-15: 0 + -89,-14: 0 + -88,-14: 0 + -87,-16: 0 + -87,-15: 0 + -87,-14: 0 + -86,-16: 0 + -86,-14: 0 + -15,30: 0 + -10,31: 0 + -9,31: 0 + -8,31: 0 + -7,31: 0 + -5,31: 0 + -16,32: 0 + -16,34: 0 + -16,35: 0 + -16,36: 0 + -16,38: 0 + -16,39: 0 + -16,40: 0 + -15,32: 0 + -15,34: 0 + -15,35: 0 + -15,36: 0 + -15,40: 0 + -14,32: 0 + -14,33: 0 + -14,34: 0 + -14,35: 0 + -14,36: 0 + -14,37: 0 + -14,38: 0 + -14,40: 0 + -13,32: 0 + -13,34: 0 + -13,35: 0 + -13,36: 0 + -13,40: 0 + -12,32: 0 + -12,34: 0 + -12,35: 0 + -12,36: 0 + -12,38: 0 + -12,39: 0 + -12,40: 0 + -11,32: 0 + -11,34: 0 + -11,35: 0 + -11,36: 0 + -11,38: 0 + -10,32: 0 + -10,34: 0 + -10,35: 0 + -10,36: 0 + -10,38: 0 + -9,32: 0 + -9,34: 0 + -9,35: 0 + -9,36: 0 + -9,38: 0 + -8,32: 0 + -8,34: 0 + -8,35: 0 + -8,36: 0 + -8,38: 0 + -7,32: 0 + -7,34: 0 + -7,35: 0 + -7,36: 0 + -7,38: 0 + -6,32: 0 + -6,34: 0 + -6,36: 0 + -6,38: 0 + -5,32: 0 + -5,33: 0 + -5,34: 0 + -5,35: 0 + -5,36: 0 + -5,37: 0 + -5,38: 0 + -6,19: 0 + -6,23: 0 + -6,27: 0 + -6,31: 0 + -4,18: 0 + -4,20: 0 + -4,24: 0 + -4,26: 0 + -4,28: 0 + -4,30: 0 + -3,17: 0 + -3,18: 0 + -3,19: 0 + -3,20: 0 + -3,21: 0 + -3,22: 0 + -3,23: 0 + -3,24: 0 + -3,25: 0 + -3,26: 0 + -3,27: 0 + -3,28: 0 + -3,29: 0 + -3,30: 0 + -3,31: 0 + -6,35: 0 + -4,32: 0 + -4,34: 0 + -4,36: 0 + -4,38: 0 + -3,32: 0 + -3,33: 0 + -3,34: 0 + -3,35: 0 + -3,36: 0 + -3,37: 0 + -3,38: 0 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 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 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 type: GridAtmosphere - id: Moose type: BecomesStation @@ -5703,24 +22472,12 @@ entities: - pos: 4.5,-5.5 parent: 6 type: Transform -- uid: 17 - type: AirlockHeadOfPersonnelLocked - components: - - pos: -1.5,-4.5 - parent: 6 - type: Transform - uid: 18 type: WallSolid components: - pos: -4.5,2.5 parent: 6 type: Transform -- uid: 19 - type: AirlockCaptainLocked - components: - - pos: -4.5,0.5 - parent: 6 - type: Transform - uid: 20 type: Grille components: @@ -5769,8 +22526,6 @@ entities: - pos: -1.5,0.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 28 type: WallReinforced components: @@ -5801,12 +22556,6 @@ entities: - pos: -3.5,-4.5 parent: 6 type: Transform -- uid: 33 - type: AirlockMaintCommandLocked - components: - - pos: -4.5,-2.5 - parent: 6 - type: Transform - uid: 34 type: WallReinforced components: @@ -5868,8 +22617,6 @@ entities: - pos: 0.5,0.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 44 type: WallReinforced components: @@ -5884,8 +22631,6 @@ entities: pos: 0.5,-2.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 46 type: TableReinforcedGlass components: @@ -5899,8 +22644,6 @@ entities: pos: -2.5,-1.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 48 type: ComfyChair components: @@ -5908,8 +22651,6 @@ entities: pos: -1.5,-2.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 49 type: SpawnMobMouse components: @@ -5962,16 +22703,12 @@ entities: pos: -0.5,-2.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 57 type: ComfyChair components: - pos: -0.5,0.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 58 type: TableReinforcedGlass components: @@ -5985,8 +22722,6 @@ entities: pos: -2.5,-0.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 60 type: WallReinforced components: @@ -6907,8 +23642,6 @@ entities: pos: 10.5,7.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 209 type: Chair components: @@ -6916,8 +23649,6 @@ entities: pos: 11.5,7.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 210 type: TablePlasmaGlass components: @@ -6982,13 +23713,6 @@ entities: - pos: -21.5,10.5 parent: 6 type: Transform -- uid: 220 - type: AirlockMaintLocked - components: - - rot: 1.5707963267948966 rad - pos: -19.5,7.5 - parent: 6 - type: Transform - uid: 221 type: WallReinforced components: @@ -7515,24 +24239,6 @@ entities: - pos: 17.5,-8.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 307 type: WallReinforced components: @@ -7945,8 +24651,6 @@ entities: - pos: 9.5,-18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 375 type: ReinforcedWindow components: @@ -8225,8 +24929,6 @@ entities: pos: 10.5,-19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 420 type: Grille components: @@ -8389,24 +25091,6 @@ entities: - pos: 19.5,-8.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 447 type: ReinforcedWindow components: @@ -8426,9 +25110,10 @@ entities: parent: 6 type: Transform - uid: 450 - type: PosterMapMoose + type: WallReinforced components: - - pos: 38.5,-9.5 + - rot: -1.5707963267948966 rad + pos: 41.5,5.5 parent: 6 type: Transform - uid: 451 @@ -8524,24 +25209,6 @@ entities: - pos: 18.5,-8.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 466 type: TableReinforced components: @@ -8567,8 +25234,6 @@ entities: - pos: -1.5,-20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 470 type: Chair components: @@ -8576,8 +25241,6 @@ entities: pos: -2.5,-23.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 471 type: WallSolid components: @@ -8685,9 +25348,10 @@ entities: parent: 6 type: Transform - uid: 488 - type: WallReinforced + type: ReinforcedWindow components: - - pos: 38.5,-9.5 + - rot: -1.5707963267948966 rad + pos: 38.5,-9.5 parent: 6 type: Transform - uid: 489 @@ -8746,9 +25410,10 @@ entities: parent: 6 type: Transform - uid: 497 - type: ReinforcedWindow + type: WallReinforced components: - - pos: 42.5,7.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-9.5 parent: 6 type: Transform - uid: 498 @@ -8887,13 +25552,15 @@ entities: - uid: 520 type: ReinforcedWindow components: - - pos: 42.5,9.5 + - rot: -1.5707963267948966 rad + pos: 32.5,-6.5 parent: 6 type: Transform - uid: 521 - type: WallReinforced + type: ReinforcedWindow components: - - pos: 42.5,10.5 + - rot: -1.5707963267948966 rad + pos: 32.5,-7.5 parent: 6 type: Transform - uid: 522 @@ -8904,82 +25571,52 @@ entities: parent: 6 type: Transform - uid: 523 - type: AirlockExternalGlassShuttleArrivals + type: ReinforcedWindow components: - rot: -1.5707963267948966 rad - pos: 42.5,2.5 + pos: 32.5,-5.5 parent: 6 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - uid: 524 - type: AtmosDeviceFanTiny + type: WallReinforced components: - - pos: 42.5,-4.5 + - rot: -1.5707963267948966 rad + pos: 32.5,-4.5 parent: 6 type: Transform - uid: 525 - type: ReinforcedWindow + type: WallReinforced components: - - pos: 42.5,0.5 + - rot: -1.5707963267948966 rad + pos: 32.5,-2.5 parent: 6 type: Transform - uid: 526 - type: ReinforcedWindow + type: WallReinforced components: - - pos: 42.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 32.5,1.5 parent: 6 type: Transform - uid: 527 - type: ReinforcedWindow + type: WallReinforced components: - - pos: 32.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 32.5,5.5 parent: 6 type: Transform - uid: 528 type: ReinforcedWindow components: - - pos: 32.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 32.5,-0.5 parent: 6 type: Transform - uid: 529 type: ReinforcedWindow components: - - pos: 42.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 32.5,-1.5 parent: 6 type: Transform - uid: 530 @@ -9013,25 +25650,29 @@ entities: - uid: 534 type: ReinforcedWindow components: - - pos: 32.5,0.5 + - rot: -1.5707963267948966 rad + pos: 32.5,2.5 parent: 6 type: Transform - uid: 535 - type: Grille + type: ReinforcedWindow components: - - pos: 32.5,-2.5 + - rot: -1.5707963267948966 rad + pos: 32.5,3.5 parent: 6 type: Transform - uid: 536 type: ReinforcedWindow components: - - pos: 32.5,-2.5 + - rot: -1.5707963267948966 rad + pos: 32.5,4.5 parent: 6 type: Transform - uid: 537 - type: Grille + type: ReinforcedWindow components: - - pos: 32.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 32.5,0.5 parent: 6 type: Transform - uid: 538 @@ -9095,19 +25736,22 @@ entities: - uid: 547 type: WallReinforced components: - - pos: 42.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 32.5,7.5 parent: 6 type: Transform - uid: 548 type: WallReinforced components: - - pos: 42.5,-9.5 + - rot: -1.5707963267948966 rad + pos: 41.5,7.5 parent: 6 type: Transform - uid: 549 - type: Grille + type: ReinforcedWindow components: - - pos: 41.5,-9.5 + - rot: -1.5707963267948966 rad + pos: 42.5,10.5 parent: 6 type: Transform - uid: 550 @@ -9132,15 +25776,17 @@ entities: parent: 6 type: Transform - uid: 553 - type: Grille + type: ReinforcedWindow components: - - pos: 32.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 41.5,8.5 parent: 6 type: Transform - uid: 554 - type: Grille + type: ReinforcedWindow components: - - pos: 32.5,0.5 + - rot: -1.5707963267948966 rad + pos: 41.5,9.5 parent: 6 type: Transform - uid: 555 @@ -9151,9 +25797,10 @@ entities: parent: 6 type: Transform - uid: 556 - type: Grille + type: WallReinforced components: - - pos: 42.5,7.5 + - rot: -1.5707963267948966 rad + pos: 41.5,10.5 parent: 6 type: Transform - uid: 557 @@ -9411,8 +26058,6 @@ entities: pos: 44.5,-2.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 599 type: ReinforcedWindow components: @@ -9675,27 +26320,31 @@ entities: parent: 6 type: Transform - uid: 639 - type: Grille + type: WallReinforced components: - - pos: 42.5,8.5 + - rot: -1.5707963267948966 rad + pos: 41.5,1.5 parent: 6 type: Transform - uid: 640 - type: Grille + type: WallReinforced components: - - pos: 32.5,4.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-2.5 parent: 6 type: Transform - uid: 641 - type: Grille + type: WallReinforced components: - - pos: 32.5,7.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-4.5 parent: 6 type: Transform - uid: 642 type: WallReinforced components: - - pos: 42.5,6.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-8.5 parent: 6 type: Transform - uid: 643 @@ -9740,112 +26389,85 @@ entities: - uid: 649 type: ReinforcedWindow components: - - pos: 32.5,7.5 + - rot: -1.5707963267948966 rad + pos: 41.5,4.5 parent: 6 type: Transform - uid: 650 type: ReinforcedWindow components: - - pos: 42.5,8.5 + - rot: -1.5707963267948966 rad + pos: 41.5,3.5 parent: 6 type: Transform - uid: 651 - type: AtmosDeviceFanTiny + type: ReinforcedWindow components: - - pos: 32.5,-4.5 + - rot: -1.5707963267948966 rad + pos: 41.5,2.5 parent: 6 type: Transform - uid: 652 - type: AirlockExternalGlassShuttleArrivals + type: ReinforcedWindow components: - rot: -1.5707963267948966 rad - pos: 42.5,-4.5 + pos: 41.5,0.5 parent: 6 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - uid: 653 - type: SpawnPointLatejoin + type: ReinforcedWindow components: - - pos: 35.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-0.5 parent: 6 type: Transform - uid: 654 - type: SpawnPointLatejoin + type: ReinforcedWindow components: - - pos: 36.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-1.5 parent: 6 type: Transform - uid: 655 - type: SpawnPointLatejoin + type: ReinforcedWindow components: - - pos: 38.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-5.5 parent: 6 type: Transform - uid: 656 - type: SpawnPointLatejoin + type: ReinforcedWindow components: - - pos: 39.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-6.5 parent: 6 type: Transform - uid: 657 type: ReinforcedWindow components: - - pos: 42.5,4.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-7.5 parent: 6 type: Transform - uid: 658 - type: ReinforcedWindow + type: Grille components: - - pos: 32.5,4.5 + - rot: -1.5707963267948966 rad + pos: 41.5,9.5 parent: 6 type: Transform - uid: 659 - type: GasPipeBend + type: Grille components: - - pos: 36.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 41.5,8.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 660 - type: WallReinforced + type: Grille components: - - pos: 42.5,3.5 + - rot: -1.5707963267948966 rad + pos: 42.5,10.5 parent: 6 type: Transform - uid: 661 @@ -9870,96 +26492,66 @@ entities: parent: 6 type: Transform - uid: 664 - type: AtmosDeviceFanTiny + type: Grille components: - - pos: 32.5,2.5 + - rot: -1.5707963267948966 rad + pos: 41.5,4.5 parent: 6 type: Transform - uid: 665 - type: WallReinforced + type: Grille components: - - pos: 32.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 41.5,3.5 parent: 6 type: Transform - uid: 666 - type: WallReinforced + type: Grille components: - - pos: 32.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 41.5,2.5 parent: 6 type: Transform - uid: 667 - type: WallReinforced + type: Grille components: - - pos: 42.5,-7.5 + - rot: -1.5707963267948966 rad + pos: 41.5,0.5 parent: 6 type: Transform - uid: 668 - type: WallReinforced + type: Grille components: - - pos: 42.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-0.5 parent: 6 type: Transform - uid: 669 - type: WallReinforced + type: Grille components: - - pos: 42.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-1.5 parent: 6 type: Transform - uid: 670 - type: AirlockExternalGlassShuttleArrivals + type: Grille components: - - rot: 1.5707963267948966 rad - pos: 32.5,-4.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-5.5 parent: 6 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - uid: 671 - type: GasPipeBend + type: Grille components: - - pos: 30.5,3.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-6.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 672 - type: WallReinforced + type: Grille components: - - pos: 32.5,-7.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-7.5 parent: 6 type: Transform - uid: 673 @@ -9990,14 +26582,12 @@ entities: parent: 6 type: Transform - uid: 677 - type: GasPipeBend + type: Grille components: - - rot: 1.5707963267948966 rad - pos: 43.5,2.5 + - rot: -1.5707963267948966 rad + pos: 38.5,-9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 678 type: Grille components: @@ -10027,154 +26617,131 @@ entities: parent: 6 type: Transform - uid: 682 - type: GasPipeStraight + type: Grille components: - - pos: 43.5,-2.5 + - rot: -1.5707963267948966 rad + pos: 32.5,3.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 683 - type: GasPipeStraight + type: Grille components: - - pos: 31.5,-3.5 + - rot: -1.5707963267948966 rad + pos: 32.5,4.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 684 - type: WallReinforced + type: Grille components: - - pos: 32.5,3.5 + - rot: -1.5707963267948966 rad + pos: 32.5,2.5 parent: 6 type: Transform - uid: 685 - type: WallReinforced + type: Grille components: - - pos: 42.5,-3.5 + - rot: -1.5707963267948966 rad + pos: 32.5,0.5 parent: 6 type: Transform - uid: 686 - type: WallReinforced + type: Grille components: - - pos: 42.5,1.5 + - rot: -1.5707963267948966 rad + pos: 32.5,-0.5 parent: 6 type: Transform - uid: 687 - type: WallReinforced + type: Grille components: - - pos: 42.5,5.5 + - rot: -1.5707963267948966 rad + pos: 32.5,-1.5 parent: 6 type: Transform - uid: 688 - type: WallReinforced + type: Grille components: - - pos: 32.5,-3.5 + - rot: -1.5707963267948966 rad + pos: 32.5,-5.5 parent: 6 type: Transform - uid: 689 - type: WallReinforced + type: Grille components: - - pos: 32.5,6.5 + - rot: -1.5707963267948966 rad + pos: 32.5,-6.5 parent: 6 type: Transform - uid: 690 - type: WallReinforced + type: Grille components: - - pos: 32.5,5.5 + - rot: -1.5707963267948966 rad + pos: 32.5,-7.5 parent: 6 type: Transform - uid: 691 - type: WallReinforced + type: ShuttleWindow components: - - pos: 32.5,1.5 + - rot: -1.5707963267948966 rad + pos: 35.5,-7.5 parent: 6 type: Transform - uid: 692 - type: Grille + type: ShuttleWindow components: - - pos: 42.5,-2.5 + - rot: -1.5707963267948966 rad + pos: 36.5,-7.5 parent: 6 type: Transform - uid: 693 - type: Grille + type: ShuttleWindow components: - - pos: 42.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 37.5,-7.5 parent: 6 type: Transform - uid: 694 - type: Grille + type: ShuttleWindow components: - - pos: 42.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 38.5,-7.5 parent: 6 type: Transform - uid: 695 - type: Grille + type: ShuttleWindow components: - - pos: 42.5,0.5 + - rot: -1.5707963267948966 rad + pos: 35.5,-6.5 parent: 6 type: Transform - uid: 696 - type: Grille + type: ShuttleWindow components: - - pos: 42.5,4.5 + - rot: -1.5707963267948966 rad + pos: 34.5,-6.5 parent: 6 type: Transform - uid: 697 - type: Grille + type: ShuttleWindow components: - - pos: 42.5,9.5 + - rot: -1.5707963267948966 rad + pos: 38.5,-6.5 parent: 6 type: Transform - uid: 698 - type: AtmosDeviceFanTiny + type: ShuttleWindow components: - - pos: 42.5,2.5 + - rot: -1.5707963267948966 rad + pos: 39.5,-6.5 parent: 6 type: Transform - uid: 699 - type: AirlockExternalGlassShuttleArrivals + type: WallShuttle components: - - rot: 1.5707963267948966 rad - pos: 32.5,2.5 + - rot: -1.5707963267948966 rad + pos: 34.5,-5.5 parent: 6 type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures - uid: 700 type: BiomassReclaimer components: @@ -10182,15 +26749,17 @@ entities: parent: 6 type: Transform - uid: 701 - type: ReinforcedWindow + type: WallShuttle components: - - pos: 41.5,-9.5 + - rot: -1.5707963267948966 rad + pos: 33.5,-4.5 parent: 6 type: Transform - uid: 702 - type: ReinforcedWindow + type: WallShuttle components: - - pos: 42.5,-2.5 + - rot: -1.5707963267948966 rad + pos: 33.5,-2.5 parent: 6 type: Transform - uid: 703 @@ -10200,12 +26769,82 @@ entities: pos: 26.5,0.5 parent: 6 type: Transform +- uid: 704 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 6 + type: Transform +- uid: 705 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-2.5 + parent: 6 + type: Transform - uid: 706 type: WallReinforced components: - pos: 7.5,12.5 parent: 6 type: Transform +- uid: 707 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-1.5 + parent: 6 + type: Transform +- uid: 708 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 40.5,5.5 + parent: 6 + type: Transform +- uid: 709 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 39.5,1.5 + parent: 6 + type: Transform +- uid: 710 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 39.5,4.5 + parent: 6 + type: Transform +- uid: 711 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 40.5,7.5 + parent: 6 + type: Transform +- uid: 712 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 35.5,11.5 + parent: 6 + type: Transform +- uid: 713 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 39.5,8.5 + parent: 6 + type: Transform +- uid: 714 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-4.5 + parent: 6 + type: Transform - uid: 715 type: WallSolid components: @@ -10213,6 +26852,223 @@ entities: pos: 26.5,-1.5 parent: 6 type: Transform +- uid: 716 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-5.5 + parent: 6 + type: Transform +- uid: 717 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 34.5,8.5 + parent: 6 + type: Transform +- uid: 718 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 36.5,11.5 + parent: 6 + type: Transform +- uid: 719 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 33.5,7.5 + parent: 6 + type: Transform +- uid: 720 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 33.5,5.5 + parent: 6 + type: Transform +- uid: 721 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 34.5,1.5 + parent: 6 + type: Transform +- uid: 722 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 34.5,4.5 + parent: 6 + type: Transform +- uid: 723 + type: ShuttleWindow + components: + - rot: -1.5707963267948966 rad + pos: 34.5,3.5 + parent: 6 + type: Transform +- uid: 724 + type: ShuttleWindow + components: + - rot: -1.5707963267948966 rad + pos: 34.5,2.5 + parent: 6 + type: Transform +- uid: 725 + type: ShuttleWindow + components: + - rot: -1.5707963267948966 rad + pos: 34.5,0.5 + parent: 6 + type: Transform +- uid: 726 + type: ShuttleWindow + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 6 + type: Transform +- uid: 727 + type: ShuttleWindow + components: + - rot: -1.5707963267948966 rad + pos: 39.5,0.5 + parent: 6 + type: Transform +- uid: 728 + type: ShuttleWindow + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-0.5 + parent: 6 + type: Transform +- uid: 729 + type: ShuttleWindow + components: + - rot: -1.5707963267948966 rad + pos: 39.5,3.5 + parent: 6 + type: Transform +- uid: 730 + type: ShuttleWindow + components: + - rot: -1.5707963267948966 rad + pos: 39.5,2.5 + parent: 6 + type: Transform +- uid: 731 + type: ShuttleWindow + components: + - rot: -1.5707963267948966 rad + pos: 34.5,9.5 + parent: 6 + type: Transform +- uid: 732 + type: ShuttleWindow + components: + - rot: -1.5707963267948966 rad + pos: 34.5,10.5 + parent: 6 + type: Transform +- uid: 733 + type: ShuttleWindow + components: + - rot: -1.5707963267948966 rad + pos: 35.5,10.5 + parent: 6 + type: Transform +- uid: 734 + type: ShuttleWindow + components: + - rot: -1.5707963267948966 rad + pos: 39.5,9.5 + parent: 6 + type: Transform +- uid: 735 + type: ShuttleWindow + components: + - rot: -1.5707963267948966 rad + pos: 39.5,10.5 + parent: 6 + type: Transform +- uid: 736 + type: ShuttleWindow + components: + - rot: -1.5707963267948966 rad + pos: 38.5,10.5 + parent: 6 + type: Transform +- uid: 737 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 40.5,8.5 + parent: 6 + type: Transform +- uid: 738 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 40.5,4.5 + parent: 6 + type: Transform +- uid: 739 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 33.5,4.5 + parent: 6 + type: Transform +- uid: 740 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 33.5,8.5 + parent: 6 + type: Transform +- uid: 741 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 37.5,11.5 + parent: 6 + type: Transform +- uid: 742 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 38.5,11.5 + parent: 6 + type: Transform +- uid: 743 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 6 + type: Transform +- uid: 744 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-1.5 + parent: 6 + type: Transform +- uid: 745 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-5.5 + parent: 6 + type: Transform +- uid: 746 + type: WallShuttle + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 6 + type: Transform - uid: 747 type: WallSolid components: @@ -10449,6 +27305,160 @@ entities: pos: 4.5,-2.5 parent: 6 type: Transform +- uid: 782 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 34.5,3.5 + parent: 6 + type: Transform +- uid: 783 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 34.5,2.5 + parent: 6 + type: Transform +- uid: 784 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 39.5,3.5 + parent: 6 + type: Transform +- uid: 785 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 39.5,2.5 + parent: 6 + type: Transform +- uid: 786 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 39.5,0.5 + parent: 6 + type: Transform +- uid: 787 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-0.5 + parent: 6 + type: Transform +- uid: 788 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 34.5,0.5 + parent: 6 + type: Transform +- uid: 789 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 6 + type: Transform +- uid: 790 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 34.5,9.5 + parent: 6 + type: Transform +- uid: 791 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 34.5,10.5 + parent: 6 + type: Transform +- uid: 792 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 35.5,10.5 + parent: 6 + type: Transform +- uid: 793 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 38.5,10.5 + parent: 6 + type: Transform +- uid: 794 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 39.5,10.5 + parent: 6 + type: Transform +- uid: 795 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 39.5,9.5 + parent: 6 + type: Transform +- uid: 796 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 6 + type: Transform +- uid: 797 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-6.5 + parent: 6 + type: Transform +- uid: 798 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-7.5 + parent: 6 + type: Transform +- uid: 799 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-7.5 + parent: 6 + type: Transform +- uid: 800 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-7.5 + parent: 6 + type: Transform +- uid: 801 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-7.5 + parent: 6 + type: Transform +- uid: 802 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-6.5 + parent: 6 + type: Transform +- uid: 803 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 6 + type: Transform - uid: 804 type: WallReinforced components: @@ -10621,6 +27631,12 @@ entities: - pos: 3.5,-20.5 parent: 6 type: Transform +- uid: 831 + type: ToolboxEmergencyFilled + components: + - pos: 35.416336,4.71931 + parent: 6 + type: Transform - uid: 832 type: SmokingPipe components: @@ -10720,12 +27736,6 @@ entities: pos: 5.5,-46.5 parent: 6 type: Transform -- uid: 848 - type: AirlockExternalGlassLocked - components: - - pos: -74.5,-45.5 - parent: 6 - type: Transform - uid: 849 type: WallSolid components: @@ -10928,12 +27938,6 @@ entities: - pos: -4.5,-16.5 parent: 6 type: Transform -- uid: 882 - type: AirlockMaintBarLocked - components: - - pos: -4.5,-15.5 - parent: 6 - type: Transform - uid: 883 type: WallSolid components: @@ -11190,12 +28194,6 @@ entities: pos: -32.5,-13.5 parent: 6 type: Transform -- uid: 924 - type: AirlockGlass - components: - - pos: 3.5,-21.5 - parent: 6 - type: Transform - uid: 925 type: WallSolid components: @@ -13226,12 +30224,6 @@ entities: - pos: -0.5,-54.5 parent: 6 type: Transform -- uid: 1262 - type: AirlockMaintRnDLocked - components: - - pos: -0.5,-55.5 - parent: 6 - type: Transform - uid: 1263 type: WallSolid components: @@ -13290,16 +30282,8 @@ entities: - port: Pressed uid: 5600 type: SignalReceiver -- uid: 1268 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-35.5 - parent: 6 - type: Transform - fixtures: - shape: !type:PolygonShape - radius: 0.01 vertices: - 0.49,-0.49 - 0.49,0.49 @@ -13318,31 +30302,14 @@ entities: - InteractImpassable - Opaque density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - shape: !type:PhysShapeCircle radius: 0.2 position: 0,-0.5 - mask: [] - layer: [] - density: 1 hard: False - restitution: 0 - friction: 0.4 id: docking type: Fixtures -- uid: 1269 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-37.5 - parent: 6 - type: Transform - fixtures: - shape: !type:PolygonShape - radius: 0.01 vertices: - 0.49,-0.49 - 0.49,0.49 @@ -13361,33 +30328,12 @@ entities: - InteractImpassable - Opaque density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - shape: !type:PhysShapeCircle radius: 0.2 position: 0,-0.5 - mask: [] - layer: [] - density: 1 hard: False - restitution: 0 - friction: 0.4 id: docking type: Fixtures -- uid: 1270 - type: AirlockExternalGlassCargoLocked - components: - - pos: 20.5,-35.5 - parent: 6 - type: Transform -- uid: 1271 - type: AirlockExternalGlassCargoLocked - components: - - pos: 20.5,-37.5 - parent: 6 - type: Transform - uid: 1272 type: WallReinforced components: @@ -14268,16 +31214,12 @@ entities: - pos: -5.5,-77.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 1416 type: GasPort components: - pos: -7.5,-77.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 1417 type: WallReinforced components: @@ -14338,48 +31280,24 @@ entities: - pos: 28.5,0.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 1427 type: CableApcExtension components: - pos: 5.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 1428 type: CableApcExtension components: - pos: 6.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 1429 type: CableApcExtension components: - pos: 7.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 1430 type: AsteroidRock components: @@ -14525,40 +31443,24 @@ entities: - pos: -7.5,-79.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 1453 type: GasPipeStraight components: - pos: -5.5,-79.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 1454 type: GasPipeStraight components: - pos: -3.5,-79.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 1455 type: GasPipeStraight components: - pos: -1.5,-79.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 1456 type: GasPassiveVent components: @@ -14566,8 +31468,6 @@ entities: pos: -7.5,-80.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 1457 type: GasPassiveVent components: @@ -14575,8 +31475,6 @@ entities: pos: -5.5,-80.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 1458 type: GasPassiveVent components: @@ -14584,8 +31482,6 @@ entities: pos: -3.5,-80.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 1459 type: GasPassiveVent components: @@ -14593,24 +31489,18 @@ entities: pos: -1.5,-80.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 1460 type: GasPressurePump components: - pos: -3.5,-78.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 1461 type: GasPressurePump components: - pos: -7.5,-78.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 1462 type: GasPressurePump components: @@ -14618,8 +31508,6 @@ entities: pos: -5.5,-78.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 1463 type: GasPressurePump components: @@ -14627,8 +31515,6 @@ entities: pos: -1.5,-78.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 1464 type: Grille components: @@ -14656,8 +31542,6 @@ entities: - pos: -9.5,-71.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 1468 type: WallReinforced components: @@ -14721,64 +31605,12 @@ entities: - pos: -3.5,-77.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 1477 type: GasPort components: - pos: -1.5,-77.5 parent: 6 type: Transform - - bodyType: Static - type: Physics -- uid: 1478 - type: AirlockScienceGlassLocked - components: - - pos: -4.5,-80.5 - parent: 6 - type: Transform -- uid: 1479 - type: AirlockScienceGlassLocked - components: - - pos: -4.5,-81.5 - parent: 6 - type: Transform -- uid: 1480 - type: AirlockScienceGlassLocked - components: - - pos: -0.5,-72.5 - parent: 6 - type: Transform -- uid: 1481 - type: AirlockScienceGlassLocked - components: - - pos: -0.5,-70.5 - parent: 6 - type: Transform -- uid: 1482 - type: AirlockScienceGlassLocked - components: - - pos: -5.5,-71.5 - parent: 6 - type: Transform -- uid: 1483 - type: AirlockScienceGlassLocked - components: - - pos: -6.5,-71.5 - parent: 6 - type: Transform -- uid: 1484 - type: AirlockScienceLocked - components: - - pos: -6.5,-60.5 - parent: 6 - type: Transform -- uid: 1485 - type: AirlockScienceLocked - components: - - pos: -5.5,-60.5 - parent: 6 - type: Transform - uid: 1486 type: WallReinforced components: @@ -16082,48 +32914,12 @@ entities: - pos: 9.5,-1.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 1700 type: WardrobePrisonFilled components: - pos: 9.5,4.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 1701 type: WallSolid components: @@ -16291,8 +33087,6 @@ entities: pos: -3.5,-72.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 1728 type: WallSolid components: @@ -16306,10 +33100,6 @@ entities: pos: -4.5,-72.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 1730 type: WallSolid components: @@ -16800,8 +33590,6 @@ entities: pos: -3.5,-73.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 1808 type: WallSolid components: @@ -16953,8 +33741,6 @@ entities: pos: -3.5,-74.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 1833 type: GasPort components: @@ -16962,8 +33748,6 @@ entities: pos: -4.5,-75.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 1834 type: WallSolid components: @@ -17343,8 +34127,6 @@ entities: pos: -4.5,-73.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 1896 type: WallSolid components: @@ -18947,8 +35729,6 @@ entities: - pos: -47.5,-30.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2142 type: WallSolidRust components: @@ -19111,10 +35891,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2166 type: GasFilterFlipped components: @@ -19123,88 +35899,66 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 2167 type: GasFilterFlipped components: - pos: -36.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2168 type: GasFilterFlipped components: - pos: -36.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2169 type: GasFilterFlipped components: - pos: -36.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2170 type: GasFilterFlipped components: - pos: -36.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2171 type: GasFilterFlipped components: - pos: -36.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2172 type: GasMixerFlipped components: - pos: -34.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2173 type: GasMixerFlipped components: - pos: -34.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2174 type: GasMixerFlipped components: - pos: -34.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2175 type: GasMixerFlipped components: - pos: -34.5,17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2176 type: GasMixerFlipped components: - pos: -34.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2177 type: GasPipeStraight components: @@ -19212,30 +35966,18 @@ entities: pos: -35.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2178 type: GasPipeStraight components: - pos: -36.5,17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2179 type: GasPipeStraight components: - pos: -36.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2180 type: GasPipeStraight components: @@ -19244,10 +35986,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2181 type: GasValve components: @@ -19259,8 +35997,6 @@ entities: type: GasValve - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 2182 type: GasPipeStraight components: @@ -19268,10 +36004,6 @@ entities: pos: -38.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2183 type: GasPipeStraight components: @@ -19279,10 +36011,6 @@ entities: pos: -38.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2184 type: GasPipeStraight components: @@ -19290,10 +36018,6 @@ entities: pos: -38.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2185 type: GasPipeStraight components: @@ -19301,10 +36025,6 @@ entities: pos: -38.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2186 type: GasPipeStraight components: @@ -19312,10 +36032,6 @@ entities: pos: -38.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2187 type: GasPipeStraight components: @@ -19323,10 +36039,6 @@ entities: pos: -38.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2188 type: GasPipeStraight components: @@ -19334,10 +36046,6 @@ entities: pos: -37.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2189 type: GasPipeStraight components: @@ -19345,10 +36053,6 @@ entities: pos: -36.5,9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2190 type: GasPipeStraight components: @@ -19356,10 +36060,6 @@ entities: pos: -37.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2191 type: GasPipeStraight components: @@ -19367,30 +36067,18 @@ entities: pos: -35.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2192 type: GasPipeStraight components: - pos: -36.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2193 type: GasPipeStraight components: - pos: -36.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2194 type: GasPipeStraight components: @@ -19400,10 +36088,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2195 type: GasPipeStraight components: @@ -19411,10 +36095,6 @@ entities: pos: -38.5,9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2196 type: GasPipeStraight components: @@ -19422,10 +36102,6 @@ entities: pos: -38.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2197 type: GasPipeStraight components: @@ -19433,10 +36109,6 @@ entities: pos: -38.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2198 type: GasPipeStraight components: @@ -19444,10 +36116,6 @@ entities: pos: -38.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2199 type: GasPipeStraight components: @@ -19455,10 +36123,6 @@ entities: pos: -38.5,17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2200 type: GasPipeStraight components: @@ -19466,10 +36130,6 @@ entities: pos: -38.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2201 type: GasPipeStraight components: @@ -19477,10 +36137,6 @@ entities: pos: -37.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2202 type: GasPipeStraight components: @@ -19488,10 +36144,6 @@ entities: pos: -36.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2203 type: GasPipeStraight components: @@ -19499,10 +36151,6 @@ entities: pos: -36.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2204 type: GasPipeStraight components: @@ -19510,10 +36158,6 @@ entities: pos: -36.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2205 type: GasPipeStraight components: @@ -19521,10 +36165,6 @@ entities: pos: -37.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2206 type: GasPipeStraight components: @@ -19532,10 +36172,6 @@ entities: pos: -37.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2207 type: GasPipeStraight components: @@ -19543,10 +36179,6 @@ entities: pos: -37.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2208 type: GasPressurePump components: @@ -19554,8 +36186,6 @@ entities: pos: -37.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2209 type: GasPressurePump components: @@ -19563,8 +36193,6 @@ entities: pos: -37.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2210 type: GasPressurePump components: @@ -19572,8 +36200,6 @@ entities: pos: -37.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2211 type: GasPressurePump components: @@ -19581,28 +36207,18 @@ entities: pos: -37.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2212 type: GasPipeStraight components: - pos: -34.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2213 type: GasPipeStraight components: - pos: -34.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2214 type: GasPressurePump components: @@ -19610,8 +36226,6 @@ entities: pos: -37.5,9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2215 type: GasPressurePump components: @@ -19619,38 +36233,24 @@ entities: pos: -37.5,17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2216 type: GasPipeStraight components: - pos: -34.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2217 type: GasPipeStraight components: - pos: -34.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2218 type: GasPipeStraight components: - pos: -36.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2219 type: GasPipeStraight components: @@ -19658,10 +36258,6 @@ entities: pos: -36.5,17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2220 type: GasPipeStraight components: @@ -19669,10 +36265,6 @@ entities: pos: -36.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2221 type: GasPipeStraight components: @@ -19680,10 +36272,6 @@ entities: pos: -35.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2222 type: GasPipeTJunction components: @@ -19691,10 +36279,6 @@ entities: pos: -35.5,9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2223 type: GasPipeTJunction components: @@ -19702,10 +36286,6 @@ entities: pos: -34.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2224 type: GasPipeStraight components: @@ -19713,10 +36293,6 @@ entities: pos: -35.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2225 type: GasPipeStraight components: @@ -19724,10 +36300,6 @@ entities: pos: -35.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2226 type: GasPipeBend components: @@ -19735,10 +36307,6 @@ entities: pos: -35.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2227 type: GasPipeStraight components: @@ -19746,20 +36314,12 @@ entities: pos: -35.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2228 type: GasPipeStraight components: - pos: -34.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2229 type: GasMixerFlipped components: @@ -19772,8 +36332,6 @@ entities: type: GasMixer - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 2230 type: GasPassiveVent components: @@ -19783,8 +36341,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 2231 type: Grille components: @@ -20212,10 +36768,6 @@ entities: pos: -39.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2292 type: GasPipeStraight components: @@ -20223,10 +36775,6 @@ entities: pos: -39.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2293 type: GasPipeStraight components: @@ -20234,10 +36782,6 @@ entities: pos: -39.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2294 type: GasPipeStraight components: @@ -20245,10 +36789,6 @@ entities: pos: -39.5,17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2295 type: GasPipeStraight components: @@ -20256,10 +36796,6 @@ entities: pos: -39.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2296 type: GasPipeStraight components: @@ -20267,10 +36803,6 @@ entities: pos: -39.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2297 type: GasPipeStraight components: @@ -20278,10 +36810,6 @@ entities: pos: -39.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2298 type: GasPipeStraight components: @@ -20289,10 +36817,6 @@ entities: pos: -39.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2299 type: GasPipeStraight components: @@ -20300,10 +36824,6 @@ entities: pos: -39.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2300 type: GasPipeStraight components: @@ -20311,10 +36831,6 @@ entities: pos: -39.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2301 type: GasPipeStraight components: @@ -20322,10 +36838,6 @@ entities: pos: -39.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2302 type: GasPipeStraight components: @@ -20333,10 +36845,6 @@ entities: pos: -39.5,9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2303 type: GasPipeStraight components: @@ -20344,10 +36852,6 @@ entities: pos: -40.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2304 type: GasPipeStraight components: @@ -20355,10 +36859,6 @@ entities: pos: -40.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2305 type: GasPipeStraight components: @@ -20366,10 +36866,6 @@ entities: pos: -40.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2306 type: GasPipeStraight components: @@ -20377,10 +36873,6 @@ entities: pos: -40.5,17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2307 type: GasPipeStraight components: @@ -20388,10 +36880,6 @@ entities: pos: -40.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2308 type: GasPipeStraight components: @@ -20399,10 +36887,6 @@ entities: pos: -40.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2309 type: GasPipeStraight components: @@ -20410,10 +36894,6 @@ entities: pos: -40.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2310 type: GasPipeStraight components: @@ -20421,10 +36901,6 @@ entities: pos: -40.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2311 type: GasPipeStraight components: @@ -20432,10 +36908,6 @@ entities: pos: -40.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2312 type: GasPipeStraight components: @@ -20443,10 +36915,6 @@ entities: pos: -40.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2313 type: GasPipeStraight components: @@ -20454,10 +36922,6 @@ entities: pos: -40.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2314 type: GasPipeStraight components: @@ -20465,10 +36929,6 @@ entities: pos: -40.5,9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2315 type: GasPipeStraight components: @@ -20476,10 +36936,6 @@ entities: pos: -41.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2316 type: GasPipeStraight components: @@ -20487,10 +36943,6 @@ entities: pos: -42.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2317 type: GasPipeStraight components: @@ -20498,10 +36950,6 @@ entities: pos: -41.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2318 type: GasPipeStraight components: @@ -20509,10 +36957,6 @@ entities: pos: -42.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2319 type: GasPipeStraight components: @@ -20520,10 +36964,6 @@ entities: pos: -41.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2320 type: GasPipeStraight components: @@ -20531,10 +36971,6 @@ entities: pos: -42.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2321 type: GasPipeStraight components: @@ -20542,10 +36978,6 @@ entities: pos: -41.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2322 type: GasPipeStraight components: @@ -20553,10 +36985,6 @@ entities: pos: -42.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2323 type: GasPipeStraight components: @@ -20564,10 +36992,6 @@ entities: pos: -41.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2324 type: GasPipeStraight components: @@ -20575,10 +36999,6 @@ entities: pos: -42.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2325 type: GasPipeStraight components: @@ -20586,10 +37006,6 @@ entities: pos: -41.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2326 type: GasPipeStraight components: @@ -20597,10 +37013,6 @@ entities: pos: -42.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2327 type: GasPipeBend components: @@ -20608,10 +37020,6 @@ entities: pos: -43.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2328 type: GasPipeBend components: @@ -20619,10 +37027,6 @@ entities: pos: -43.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2329 type: GasPipeBend components: @@ -20630,10 +37034,6 @@ entities: pos: -43.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2330 type: GasPipeBend components: @@ -20641,10 +37041,6 @@ entities: pos: -43.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2331 type: GasPipeBend components: @@ -20652,10 +37048,6 @@ entities: pos: -43.5,12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2332 type: GasPipeBend components: @@ -20663,10 +37055,6 @@ entities: pos: -43.5,10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2333 type: GasOutletInjector components: @@ -20674,8 +37062,6 @@ entities: pos: -43.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2334 type: GasOutletInjector components: @@ -20683,8 +37069,6 @@ entities: pos: -43.5,17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2335 type: GasOutletInjector components: @@ -20692,8 +37076,6 @@ entities: pos: -43.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2336 type: GasOutletInjector components: @@ -20701,8 +37083,6 @@ entities: pos: -43.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2337 type: GasOutletInjector components: @@ -20710,8 +37090,6 @@ entities: pos: -43.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2338 type: GasOutletInjector components: @@ -20719,8 +37097,6 @@ entities: pos: -43.5,9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2339 type: GasPipeStraight components: @@ -20728,10 +37104,6 @@ entities: pos: -41.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2340 type: GasPipeStraight components: @@ -20739,10 +37111,6 @@ entities: pos: -41.5,17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2341 type: GasPipeStraight components: @@ -20750,10 +37118,6 @@ entities: pos: -41.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2342 type: GasPipeStraight components: @@ -20761,10 +37125,6 @@ entities: pos: -41.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2343 type: GasPipeStraight components: @@ -20772,10 +37132,6 @@ entities: pos: -41.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2344 type: GasPipeStraight components: @@ -20783,10 +37139,6 @@ entities: pos: -41.5,9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2345 type: WallReinforced components: @@ -20927,8 +37279,6 @@ entities: pos: -42.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2365 type: GasPassiveVent components: @@ -20936,8 +37286,6 @@ entities: pos: -42.5,17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2366 type: GasPassiveVent components: @@ -20945,8 +37293,6 @@ entities: pos: -42.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2367 type: GasPassiveVent components: @@ -20954,8 +37300,6 @@ entities: pos: -42.5,13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2368 type: GasPassiveVent components: @@ -20963,8 +37307,6 @@ entities: pos: -42.5,11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2369 type: GasPassiveVent components: @@ -20972,8 +37314,6 @@ entities: pos: -42.5,9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2370 type: Grille components: @@ -21319,20 +37659,12 @@ entities: pos: -34.5,21.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2420 type: GasPipeTJunction components: - pos: -36.5,21.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2421 type: GasPipeStraight components: @@ -21340,10 +37672,6 @@ entities: pos: -38.5,21.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2422 type: GasPassiveVent components: @@ -21351,8 +37679,6 @@ entities: pos: -39.5,21.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2423 type: GasValve components: @@ -21360,10 +37686,6 @@ entities: pos: -37.5,21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - - bodyType: Static - type: Physics - uid: 2424 type: GasValve components: @@ -21373,8 +37695,6 @@ entities: type: Transform - open: False type: GasValve - - bodyType: Static - type: Physics - uid: 2425 type: GasPressurePump components: @@ -21382,18 +37702,12 @@ entities: pos: -34.5,22.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2426 type: GasPipeBend components: - pos: -34.5,23.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2427 type: GasPipeBend components: @@ -21401,10 +37715,6 @@ entities: pos: -35.5,23.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2428 type: GasPipeStraight components: @@ -21412,10 +37722,6 @@ entities: pos: -35.5,24.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2429 type: GasPipeStraight components: @@ -21423,94 +37729,60 @@ entities: pos: -35.5,25.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2430 type: GasOutletInjector components: - pos: -35.5,26.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2431 type: GasPassiveVent components: - pos: -33.5,26.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2432 type: GasPipeStraight components: - pos: -33.5,25.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2433 type: GasPipeStraight components: - pos: -33.5,24.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2434 type: GasPipeStraight components: - pos: -33.5,23.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2435 type: GasPressurePump components: - pos: -33.5,22.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2436 type: GasPipeStraight components: - pos: -33.5,21.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2437 type: GasPipeStraight components: - pos: -33.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2438 type: GasPipeStraight components: - pos: -33.5,19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2439 type: GasPipeBend components: @@ -21518,50 +37790,30 @@ entities: pos: -33.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2440 type: GasPipeBend components: - pos: -32.5,18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2441 type: GasValve components: - pos: -32.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - - bodyType: Static - type: Physics - uid: 2442 type: GasPipeFourway components: - pos: -32.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2443 type: GasPipeFourway components: - pos: -32.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2444 type: GasPipeTJunction components: @@ -21569,10 +37821,6 @@ entities: pos: -32.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 2445 type: GasPort components: @@ -21580,8 +37828,6 @@ entities: pos: -31.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2446 type: GasPort components: @@ -21589,8 +37835,6 @@ entities: pos: -31.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2447 type: GasPort components: @@ -21598,8 +37842,6 @@ entities: pos: -31.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2448 type: GasPort components: @@ -21607,8 +37849,6 @@ entities: pos: -33.5,16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2449 type: GasPort components: @@ -21616,8 +37856,6 @@ entities: pos: -33.5,15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2450 type: GasPort components: @@ -21625,8 +37863,6 @@ entities: pos: -33.5,14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2451 type: WallReinforced components: @@ -21815,12 +38051,6 @@ entities: pos: -46.5,-22.5 parent: 6 type: Transform -- uid: 2480 - type: AirlockMaintCaptainLocked - components: - - pos: -47.5,-22.5 - parent: 6 - type: Transform - uid: 2481 type: WallReinforced components: @@ -22018,22 +38248,24 @@ entities: parent: 6 type: Transform - uid: 2511 - type: AsteroidRock + type: WallReinforced components: - - pos: -61.5,-26.5 + - rot: 1.5707963267948966 rad + pos: -56.5,-47.5 parent: 6 type: Transform - uid: 2512 - type: Railing + type: WallReinforced components: - - rot: 3.141592653589793 rad - pos: -52.5,-44.5 + - rot: 1.5707963267948966 rad + pos: -56.5,-46.5 parent: 6 type: Transform - uid: 2513 - type: AsteroidRock + type: WallReinforced components: - - pos: -61.5,-42.5 + - rot: 1.5707963267948966 rad + pos: -57.5,-46.5 parent: 6 type: Transform - uid: 2514 @@ -22051,22 +38283,24 @@ entities: parent: 6 type: Transform - uid: 2516 - type: AsteroidRock + type: WallReinforced components: - - pos: -60.5,-40.5 + - rot: 1.5707963267948966 rad + pos: -57.5,-42.5 parent: 6 type: Transform - uid: 2517 - type: WindowReinforcedDirectional + type: WallReinforced components: - - rot: 3.141592653589793 rad - pos: -53.5,-43.5 + - rot: 1.5707963267948966 rad + pos: -56.5,-42.5 parent: 6 type: Transform - uid: 2518 - type: AsteroidRock + type: WallReinforced components: - - pos: -61.5,-41.5 + - rot: 1.5707963267948966 rad + pos: -56.5,-41.5 parent: 6 type: Transform - uid: 2519 @@ -22936,8 +39170,6 @@ entities: pos: -17.5,-18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2644 type: AsteroidRock components: @@ -22966,8 +39198,6 @@ entities: pos: -17.5,-19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2648 type: PottedPlantRandom components: @@ -24577,16 +40807,8 @@ entities: pos: -59.5,-21.5 parent: 6 type: Transform -- uid: 2880 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 3.141592653589793 rad - pos: -66.5,-6.5 - parent: 6 - type: Transform - fixtures: - shape: !type:PolygonShape - radius: 0.01 vertices: - 0.49,-0.49 - 0.49,0.49 @@ -24605,31 +40827,14 @@ entities: - InteractImpassable - Opaque density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - shape: !type:PhysShapeCircle radius: 0.2 position: 0,-0.5 - mask: [] - layer: [] - density: 1 hard: False - restitution: 0 - friction: 0.4 id: docking type: Fixtures -- uid: 2881 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 3.141592653589793 rad - pos: -64.5,-6.5 - parent: 6 - type: Transform - fixtures: - shape: !type:PolygonShape - radius: 0.01 vertices: - 0.49,-0.49 - 0.49,0.49 @@ -24648,31 +40853,14 @@ entities: - InteractImpassable - Opaque density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - shape: !type:PhysShapeCircle radius: 0.2 position: 0,-0.5 - mask: [] - layer: [] - density: 1 hard: False - restitution: 0 - friction: 0.4 id: docking type: Fixtures -- uid: 2882 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 3.141592653589793 rad - pos: -58.5,-6.5 - parent: 6 - type: Transform - fixtures: - shape: !type:PolygonShape - radius: 0.01 vertices: - 0.49,-0.49 - 0.49,0.49 @@ -24691,31 +40879,14 @@ entities: - InteractImpassable - Opaque density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - shape: !type:PhysShapeCircle radius: 0.2 position: 0,-0.5 - mask: [] - layer: [] - density: 1 hard: False - restitution: 0 - friction: 0.4 id: docking type: Fixtures -- uid: 2883 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 3.141592653589793 rad - pos: -56.5,-6.5 - parent: 6 - type: Transform - fixtures: - shape: !type:PolygonShape - radius: 0.01 vertices: - 0.49,-0.49 - 0.49,0.49 @@ -24734,19 +40905,10 @@ entities: - InteractImpassable - Opaque density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - shape: !type:PhysShapeCircle radius: 0.2 position: 0,-0.5 - mask: [] - layer: [] - density: 1 hard: False - restitution: 0 - friction: 0.4 id: docking type: Fixtures - uid: 2884 @@ -25104,16 +41266,12 @@ entities: - pos: 3.5,-57.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 2935 type: CableApcExtension components: - pos: 4.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 2936 type: AsteroidRock components: @@ -25330,8 +41488,6 @@ entities: - pos: -55.5,-34.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 2968 type: BlastDoor components: @@ -25345,66 +41501,6 @@ entities: - port: Pressed uid: 13052 type: SignalReceiver -- uid: 2969 - type: AirlockExternalGlassLocked - components: - - pos: -60.5,-21.5 - parent: 6 - type: Transform -- uid: 2970 - type: AirlockExternalGlassLocked - components: - - pos: -61.5,-21.5 - parent: 6 - type: Transform -- uid: 2971 - type: AirlockExternalGlassLocked - components: - - pos: -61.5,-17.5 - parent: 6 - type: Transform -- uid: 2972 - type: AirlockExternalGlassLocked - components: - - pos: -60.5,-17.5 - parent: 6 - type: Transform -- uid: 2973 - type: AirlockExternalGlass - components: - - pos: -66.5,-9.5 - parent: 6 - type: Transform -- uid: 2974 - type: AirlockExternalGlass - components: - - pos: -64.5,-9.5 - parent: 6 - type: Transform -- uid: 2975 - type: AirlockExternalGlass - components: - - pos: -58.5,-9.5 - parent: 6 - type: Transform -- uid: 2976 - type: AirlockExternalGlass - components: - - pos: -56.5,-9.5 - parent: 6 - type: Transform -- uid: 2977 - type: AsteroidRock - components: - - pos: -59.5,-39.5 - parent: 6 - type: Transform -- uid: 2978 - type: AsteroidRock - components: - - pos: -60.5,-45.5 - parent: 6 - type: Transform - uid: 2979 type: Grille components: @@ -25439,40 +41535,30 @@ entities: - pos: -25.5,14.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 2983 type: CableApcExtension components: - pos: -25.5,14.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 2984 type: CableHV components: - pos: -80.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 2985 type: CableHV components: - pos: -80.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 2986 type: CableHV components: - pos: -80.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 2987 type: ReinforcedWindow components: @@ -25485,60 +41571,36 @@ entities: - pos: -80.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 2989 type: CableHV components: - pos: -82.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 2990 type: CableHV components: - pos: -82.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 2991 type: CableHV components: - pos: -80.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 2992 type: CableHV components: - pos: -80.5,-28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 2993 type: CableHV components: - pos: -80.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 2994 - type: AirlockCommandLocked - components: - - pos: -23.5,-1.5 - parent: 6 - type: Transform -- uid: 2995 - type: AirlockCommandLocked - components: - - pos: -16.5,-0.5 - parent: 6 - type: Transform - uid: 2996 type: ReinforcedWindow components: @@ -25552,12 +41614,6 @@ entities: pos: 3.5,-4.5 parent: 6 type: Transform -- uid: 2998 - type: AirlockCaptainLocked - components: - - pos: -7.5,-2.5 - parent: 6 - type: Transform - uid: 2999 type: FloraRockSolid03 components: @@ -25570,13 +41626,6 @@ entities: - pos: -76.5,-24.5 parent: 6 type: Transform -- uid: 3001 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 3.5,-20.5 - parent: 6 - type: Transform - uid: 3002 type: RandomPosterLegit components: @@ -25589,8 +41638,6 @@ entities: - pos: -82.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 3004 type: Catwalk components: @@ -25603,8 +41650,6 @@ entities: - pos: -82.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 3006 type: Catwalk components: @@ -25623,6 +41668,12 @@ entities: - pos: -75.5,-24.5 parent: 6 type: Transform +- uid: 3009 + type: CrowbarRed + components: + - pos: 35.515728,0.31256053 + parent: 6 + type: Transform - uid: 3010 type: WallSolid components: @@ -25668,56 +41719,42 @@ entities: - pos: -82.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 3017 type: CableHV components: - pos: -82.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 3018 type: CableHV components: - pos: -82.5,-28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 3019 type: CableHV components: - pos: -82.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 3020 type: CableHV components: - pos: -82.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 3021 type: CableHV components: - pos: -82.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 3022 type: CableHV components: - pos: -82.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 3023 type: SpawnPointChiefMedicalOfficer components: @@ -25786,12 +41823,6 @@ entities: - pos: -77.5,-15.5 parent: 6 type: Transform -- uid: 3034 - type: AirlockMaintCargoLocked - components: - - pos: 17.5,-44.5 - parent: 6 - type: Transform - uid: 3035 type: Catwalk components: @@ -25804,12 +41835,6 @@ entities: - pos: -77.5,-22.5 parent: 6 type: Transform -- uid: 3037 - type: AirlockMaintCargoLocked - components: - - pos: 18.5,-44.5 - parent: 6 - type: Transform - uid: 3038 type: Catwalk components: @@ -25834,21 +41859,12 @@ entities: - pos: -80.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 3042 type: Catwalk components: - pos: -79.5,-24.5 parent: 6 type: Transform -- uid: 3043 - type: AirlockMaintSalvageLocked - components: - - rot: 3.141592653589793 rad - pos: 8.5,-47.5 - parent: 6 - type: Transform - uid: 3044 type: Catwalk components: @@ -25879,16 +41895,12 @@ entities: - pos: -80.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 3049 type: CableHV components: - pos: -80.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 3050 type: Catwalk components: @@ -25907,8 +41919,6 @@ entities: - pos: -82.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 3053 type: Catwalk components: @@ -26345,10 +42355,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 3125 type: GasPipeStraight components: @@ -26358,10 +42364,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 3126 type: Grille components: @@ -26385,10 +42387,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 3129 type: GasPipeTJunction components: @@ -26398,10 +42396,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 3130 type: AsteroidRock components: @@ -26425,10 +42419,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 3133 type: GasPipeStraight components: @@ -26438,10 +42428,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 3134 type: Grille components: @@ -26458,8 +42444,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 3136 type: GasPipeStraight components: @@ -26469,10 +42453,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 3137 type: GasPipeStraight components: @@ -26482,8 +42462,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 3138 type: AsteroidRock components: @@ -26507,10 +42485,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 3141 type: GasPipeStraight components: @@ -26520,10 +42494,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 3142 type: AsteroidRock components: @@ -26575,10 +42545,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 3149 type: GasPipeStraight components: @@ -26588,8 +42554,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 3150 type: AsteroidRock components: @@ -26776,25 +42740,12 @@ entities: - pos: -25.5,20.5 parent: 6 type: Transform -- uid: 3180 - type: AirlockMaintSalvageLocked - components: - - rot: 3.141592653589793 rad - pos: 8.5,-48.5 - parent: 6 - type: Transform - uid: 3181 type: PottedPlantRandom components: - pos: -19.5,-14.5 parent: 6 type: Transform -- uid: 3182 - type: AirlockMaintJanitorLocked - components: - - pos: 25.5,2.5 - parent: 6 - type: Transform - uid: 3183 type: Catwalk components: @@ -26807,16 +42758,12 @@ entities: - pos: -73.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 3185 type: CableHV components: - pos: -81.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 3186 type: Catwalk components: @@ -26866,8 +42813,6 @@ entities: - pos: -31.5,-20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 3193 type: AsteroidRock components: @@ -27667,12 +43612,6 @@ entities: - pos: -27.5,-8.5 parent: 6 type: Transform -- uid: 3326 - type: AirlockExternalGlassAtmosphericsLocked - components: - - pos: -30.5,23.5 - parent: 6 - type: Transform - uid: 3327 type: PaperOffice components: @@ -27722,8 +43661,6 @@ entities: - pos: -30.5,-20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 3335 type: FirelockGlass components: @@ -27761,8 +43698,6 @@ entities: pos: 23.5,-12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 3341 type: ClothingNeckAromanticPin components: @@ -27949,24 +43884,12 @@ entities: - pos: -41.5,-49.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage +- uid: 3369 + type: FirelockGlass + components: + - pos: 42.5,-9.5 + parent: 6 + type: Transform - uid: 3370 type: MedkitAdvancedFilled components: @@ -27979,48 +43902,12 @@ entities: - pos: -23.5,-24.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 3372 type: ClosetFireFilled components: - pos: -23.5,-25.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 3373 type: WallSolid components: @@ -28121,12 +44008,6 @@ entities: - pos: -37.648346,-15.26207 parent: 6 type: Transform -- uid: 3389 - type: AirlockMedicalGlassLocked - components: - - pos: -27.5,-22.5 - parent: 6 - type: Transform - uid: 3390 type: Grille components: @@ -28152,12 +44033,6 @@ entities: - pos: -37.544178,-15.470403 parent: 6 type: Transform -- uid: 3394 - type: AirlockExternalGlassLocked - components: - - pos: -74.5,-43.5 - parent: 6 - type: Transform - uid: 3395 type: Grille components: @@ -28177,12 +44052,6 @@ entities: - pos: -35.5,-17.5 parent: 6 type: Transform -- uid: 3398 - type: AirlockExternalGlassAtmosphericsLocked - components: - - pos: -30.5,20.5 - parent: 6 - type: Transform - uid: 3399 type: TableGlass components: @@ -28195,96 +44064,24 @@ entities: - pos: -19.5,-25.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 3401 type: LockerMedicalFilled components: - pos: -18.5,-25.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 3402 type: LockerWeldingSuppliesFilled components: - pos: -51.5,-19.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 3403 type: ClosetToolFilled components: - pos: -50.5,-19.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 3404 type: WallReinforced components: @@ -28320,8 +44117,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 3409 type: GasPipeTJunction components: @@ -28329,8 +44124,6 @@ entities: pos: -30.5,-16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 3410 type: DiseaseDiagnoser components: @@ -28343,24 +44136,6 @@ entities: - pos: -2.5,-16.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 3412 type: SpawnPointSecurityCadet components: @@ -28474,24 +44249,6 @@ entities: - pos: 17.5,1.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 3430 type: AsteroidRock components: @@ -28661,10 +44418,6 @@ entities: pos: -35.5,17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 3458 type: GasMinerCarbonDioxide components: @@ -28735,18 +44488,6 @@ entities: - pos: -37.356678,-15.241236 parent: 6 type: Transform -- uid: 3469 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -25.5,15.5 - parent: 6 - type: Transform -- uid: 3470 - type: AirlockExternalGlassEngineeringLocked - components: - - pos: -25.5,19.5 - parent: 6 - type: Transform - uid: 3471 type: SinkStemlessWater components: @@ -28778,30 +44519,6 @@ entities: - pos: 18.5,-7.5 parent: 6 type: Transform -- uid: 3484 - type: AirlockExternalGlass - components: - - pos: 44.5,3.5 - parent: 6 - type: Transform -- uid: 3485 - type: AirlockExternalGlass - components: - - pos: 44.5,2.5 - parent: 6 - type: Transform -- uid: 3486 - type: AirlockExternalGlass - components: - - pos: 44.5,-6.5 - parent: 6 - type: Transform -- uid: 3487 - type: AirlockExternalGlass - components: - - pos: 44.5,-5.5 - parent: 6 - type: Transform - uid: 3488 type: Grille components: @@ -28904,28 +44621,8 @@ entities: - pos: 41.5,-13.5 parent: 6 type: Transform -- uid: 3505 - type: AirlockExternalGlassLocked - components: - - pos: 25.5,-21.5 - parent: 6 - type: Transform -- uid: 3506 - type: AirlockExternalGlassLocked - components: - - pos: 21.5,-21.5 - parent: 6 - type: Transform -- uid: 3507 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-6.5 - parent: 6 - type: Transform - fixtures: - shape: !type:PolygonShape - radius: 0.01 vertices: - 0.49,-0.49 - 0.49,0.49 @@ -28944,31 +44641,14 @@ entities: - InteractImpassable - Opaque density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - shape: !type:PhysShapeCircle radius: 0.2 position: 0,-0.5 - mask: [] - layer: [] - density: 1 hard: False - restitution: 0 - friction: 0.4 id: docking type: Fixtures -- uid: 3508 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-5.5 - parent: 6 - type: Transform - fixtures: - shape: !type:PolygonShape - radius: 0.01 vertices: - 0.49,-0.49 - 0.49,0.49 @@ -28987,31 +44667,14 @@ entities: - InteractImpassable - Opaque density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - shape: !type:PhysShapeCircle radius: 0.2 position: 0,-0.5 - mask: [] - layer: [] - density: 1 hard: False - restitution: 0 - friction: 0.4 id: docking type: Fixtures -- uid: 3509 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 48.5,3.5 - parent: 6 - type: Transform - fixtures: - shape: !type:PolygonShape - radius: 0.01 vertices: - 0.49,-0.49 - 0.49,0.49 @@ -29030,31 +44693,14 @@ entities: - InteractImpassable - Opaque density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - shape: !type:PhysShapeCircle radius: 0.2 position: 0,-0.5 - mask: [] - layer: [] - density: 1 hard: False - restitution: 0 - friction: 0.4 id: docking type: Fixtures -- uid: 3510 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 48.5,2.5 - parent: 6 - type: Transform - fixtures: - shape: !type:PolygonShape - radius: 0.01 vertices: - 0.49,-0.49 - 0.49,0.49 @@ -29073,19 +44719,10 @@ entities: - InteractImpassable - Opaque density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - shape: !type:PhysShapeCircle radius: 0.2 position: 0,-0.5 - mask: [] - layer: [] - density: 1 hard: False - restitution: 0 - friction: 0.4 id: docking type: Fixtures - uid: 3511 @@ -29592,24 +45229,6 @@ entities: - pos: -48.5,-50.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 3595 type: VendingMachineDetDrobe components: @@ -29661,8 +45280,6 @@ entities: pos: -49.5,-49.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 3603 type: GasThermoMachineFreezer components: @@ -29684,30 +45301,6 @@ entities: - pos: -32.5,-18.5 parent: 6 type: Transform -- uid: 3606 - type: AirlockGlass - components: - - pos: 0.5,-34.5 - parent: 6 - type: Transform -- uid: 3607 - type: AirlockGlass - components: - - pos: 0.5,-35.5 - parent: 6 - type: Transform -- uid: 3608 - type: AirlockMaintLocked - components: - - pos: 3.5,-35.5 - parent: 6 - type: Transform -- uid: 3609 - type: AirlockMaintLocked - components: - - pos: 3.5,-34.5 - parent: 6 - type: Transform - uid: 3610 type: Grille components: @@ -29978,12 +45571,6 @@ entities: - pos: -6.5,-54.5 parent: 6 type: Transform -- uid: 3653 - type: AirlockMaintMedLocked - components: - - pos: -40.5,-22.5 - parent: 6 - type: Transform - uid: 3654 type: WindowDirectional components: @@ -30128,16 +45715,8 @@ entities: - pos: -9.5,-77.5 parent: 6 type: Transform -- uid: 3672 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-70.5 - parent: 6 - type: Transform - fixtures: - shape: !type:PolygonShape - radius: 0.01 vertices: - 0.49,-0.49 - 0.49,0.49 @@ -30156,31 +45735,14 @@ entities: - InteractImpassable - Opaque density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - shape: !type:PhysShapeCircle radius: 0.2 position: 0,-0.5 - mask: [] - layer: [] - density: 1 hard: False - restitution: 0 - friction: 0.4 id: docking type: Fixtures -- uid: 3673 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-72.5 - parent: 6 - type: Transform - fixtures: - shape: !type:PolygonShape - radius: 0.01 vertices: - 0.49,-0.49 - 0.49,0.49 @@ -30199,19 +45761,10 @@ entities: - InteractImpassable - Opaque density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - shape: !type:PhysShapeCircle radius: 0.2 position: 0,-0.5 - mask: [] - layer: [] - density: 1 hard: False - restitution: 0 - friction: 0.4 id: docking type: Fixtures - uid: 3674 @@ -30298,54 +45851,6 @@ entities: - pos: 2.5,-75.5 parent: 6 type: Transform -- uid: 3688 - type: AirlockScienceGlassLocked - components: - - pos: -0.5,-81.5 - parent: 6 - type: Transform -- uid: 3689 - type: AirlockScienceGlassLocked - components: - - pos: -0.5,-80.5 - parent: 6 - type: Transform -- uid: 3690 - type: AirlockScienceGlassLocked - components: - - pos: 0.5,-78.5 - parent: 6 - type: Transform -- uid: 3691 - type: AirlockScienceGlassLocked - components: - - pos: 1.5,-78.5 - parent: 6 - type: Transform -- uid: 3692 - type: AirlockExternalGlass - components: - - pos: -6.5,-64.5 - parent: 6 - type: Transform -- uid: 3693 - type: AirlockExternalGlass - components: - - pos: -5.5,-64.5 - parent: 6 - type: Transform -- uid: 3694 - type: AirlockExternalGlass - components: - - pos: -6.5,-68.5 - parent: 6 - type: Transform -- uid: 3695 - type: AirlockExternalGlass - components: - - pos: -5.5,-68.5 - parent: 6 - type: Transform - uid: 3696 type: BlastDoor components: @@ -30580,8 +46085,6 @@ entities: - pos: -53.5,-31.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 3726 type: AsteroidRock components: @@ -30792,12 +46295,6 @@ entities: pos: -25.5,-61.5 parent: 6 type: Transform -- uid: 3760 - type: AirlockExternalGlassLocked - components: - - pos: -23.5,-64.5 - parent: 6 - type: Transform - uid: 3761 type: WallReinforced components: @@ -30805,12 +46302,6 @@ entities: pos: -25.5,-62.5 parent: 6 type: Transform -- uid: 3762 - type: AirlockExternalGlassLocked - components: - - pos: -23.5,-60.5 - parent: 6 - type: Transform - uid: 3763 type: Catwalk components: @@ -31235,24 +46726,6 @@ entities: - pos: -48.5,-56.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 3832 type: AsteroidRock components: @@ -31356,16 +46829,15 @@ entities: parent: 6 type: Transform - uid: 3849 - type: WallReinforced + type: AsteroidRock components: - - rot: 1.5707963267948966 rad - pos: -58.5,-47.5 + - pos: -57.5,-48.5 parent: 6 type: Transform - uid: 3850 type: AsteroidRock components: - - pos: -59.5,-41.5 + - pos: -57.5,-47.5 parent: 6 type: Transform - uid: 3851 @@ -31381,17 +46853,15 @@ entities: parent: 6 type: Transform - uid: 3853 - type: WallReinforced + type: AsteroidRock components: - - rot: 1.5707963267948966 rad - pos: -58.5,-48.5 + - pos: -58.5,-48.5 parent: 6 type: Transform - uid: 3854 - type: WallReinforced + type: AsteroidRock components: - - rot: 1.5707963267948966 rad - pos: -57.5,-48.5 + - pos: -58.5,-47.5 parent: 6 type: Transform - uid: 3855 @@ -31425,10 +46895,9 @@ entities: parent: 6 type: Transform - uid: 3860 - type: WindowReinforcedDirectional + type: AsteroidRock components: - - rot: -1.5707963267948966 rad - pos: -55.5,-47.5 + - pos: -53.5,-39.5 parent: 6 type: Transform - uid: 3861 @@ -31444,10 +46913,9 @@ entities: parent: 6 type: Transform - uid: 3863 - type: WindowReinforcedDirectional + type: AsteroidRock components: - - rot: -1.5707963267948966 rad - pos: -55.5,-41.5 + - pos: -54.5,-39.5 parent: 6 type: Transform - uid: 3864 @@ -31463,9 +46931,9 @@ entities: parent: 6 type: Transform - uid: 3866 - type: WindoorCommandLocked + type: AsteroidRock components: - - pos: -54.5,-45.5 + - pos: -55.5,-39.5 parent: 6 type: Transform - uid: 3867 @@ -31487,16 +46955,15 @@ entities: parent: 6 type: Transform - uid: 3870 - type: WallReinforced + type: AsteroidRock components: - - rot: 1.5707963267948966 rad - pos: -57.5,-40.5 + - pos: -57.5,-40.5 parent: 6 type: Transform - uid: 3871 type: AsteroidRock components: - - pos: -60.5,-46.5 + - pos: -57.5,-41.5 parent: 6 type: Transform - uid: 3872 @@ -31506,17 +46973,15 @@ entities: parent: 6 type: Transform - uid: 3873 - type: WallReinforced + type: AsteroidRock components: - - rot: 1.5707963267948966 rad - pos: -58.5,-40.5 + - pos: -58.5,-40.5 parent: 6 type: Transform - uid: 3874 - type: WallReinforced + type: AsteroidRock components: - - rot: 1.5707963267948966 rad - pos: -58.5,-41.5 + - pos: -58.5,-41.5 parent: 6 type: Transform - uid: 3875 @@ -31622,8 +47087,6 @@ entities: pos: -13.5,-37.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 3892 type: Chair components: @@ -31631,8 +47094,6 @@ entities: pos: -13.5,-38.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 3893 type: Chair components: @@ -31640,8 +47101,6 @@ entities: pos: -13.5,-32.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 3894 type: AsteroidRock components: @@ -31661,8 +47120,6 @@ entities: pos: -13.5,-31.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 3897 type: PottedPlantRandom components: @@ -31864,9 +47321,9 @@ entities: parent: 6 type: Transform - uid: 3930 - type: AsteroidRock + type: ClothingShoesSpaceNinja components: - - pos: -61.5,-43.5 + - pos: -55.492546,-53.5542 parent: 6 type: Transform - uid: 3931 @@ -32874,600 +48331,454 @@ entities: - pos: -32.5,-68.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4094 type: CableHV components: - pos: -31.5,-68.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4095 type: CableHV components: - pos: -30.5,-68.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4096 type: CableHV components: - pos: -29.5,-68.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4097 type: CableHV components: - pos: -28.5,-68.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4098 type: CableHV components: - pos: -27.5,-68.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4099 type: CableHV components: - pos: -26.5,-68.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4100 type: CableHV components: - pos: -25.5,-68.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4101 type: CableHV components: - pos: -25.5,-69.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4102 type: CableHV components: - pos: -32.5,-70.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4103 type: CableHV components: - pos: -31.5,-70.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4104 type: CableHV components: - pos: -30.5,-70.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4105 type: CableHV components: - pos: -29.5,-70.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4106 type: CableHV components: - pos: -28.5,-70.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4107 type: CableHV components: - pos: -27.5,-70.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4108 type: CableHV components: - pos: -26.5,-70.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4109 type: CableHV components: - pos: -25.5,-70.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4110 type: CableHV components: - pos: -32.5,-72.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4111 type: CableHV components: - pos: -31.5,-72.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4112 type: CableHV components: - pos: -30.5,-72.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4113 type: CableHV components: - pos: -29.5,-72.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4114 type: CableHV components: - pos: -28.5,-72.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4115 type: CableHV components: - pos: -27.5,-72.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4116 type: CableHV components: - pos: -26.5,-72.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4117 type: CableHV components: - pos: -25.5,-72.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4118 type: CableHV components: - pos: -25.5,-73.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4119 type: CableHV components: - pos: -32.5,-74.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4120 type: CableHV components: - pos: -31.5,-74.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4121 type: CableHV components: - pos: -30.5,-74.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4122 type: CableHV components: - pos: -29.5,-74.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4123 type: CableHV components: - pos: -28.5,-74.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4124 type: CableHV components: - pos: -27.5,-74.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4125 type: CableHV components: - pos: -26.5,-74.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4126 type: CableHV components: - pos: -25.5,-74.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4127 type: CableHV components: - pos: -32.5,-76.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4128 type: CableHV components: - pos: -31.5,-76.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4129 type: CableHV components: - pos: -30.5,-76.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4130 type: CableHV components: - pos: -29.5,-76.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4131 type: CableHV components: - pos: -28.5,-76.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4132 type: CableHV components: - pos: -27.5,-76.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4133 type: CableHV components: - pos: -26.5,-76.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4134 type: CableHV components: - pos: -25.5,-76.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4135 type: CableHV components: - pos: -25.5,-77.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4136 type: CableHV components: - pos: -32.5,-78.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4137 type: CableHV components: - pos: -31.5,-78.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4138 type: CableHV components: - pos: -30.5,-78.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4139 type: CableHV components: - pos: -29.5,-78.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4140 type: CableHV components: - pos: -28.5,-78.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4141 type: CableHV components: - pos: -27.5,-78.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4142 type: CableHV components: - pos: -26.5,-78.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4143 type: CableHV components: - pos: -25.5,-78.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4144 type: CableHV components: - pos: -32.5,-80.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4145 type: CableHV components: - pos: -31.5,-80.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4146 type: CableHV components: - pos: -30.5,-80.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4147 type: CableHV components: - pos: -29.5,-80.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4148 type: CableHV components: - pos: -28.5,-80.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4149 type: CableHV components: - pos: -27.5,-80.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4150 type: CableHV components: - pos: -26.5,-80.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4151 type: CableHV components: - pos: -25.5,-80.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4152 type: CableHV components: - pos: -25.5,-81.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4153 type: CableHV components: - pos: -32.5,-82.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4154 type: CableHV components: - pos: -31.5,-82.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4155 type: CableHV components: - pos: -30.5,-82.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4156 type: CableHV components: - pos: -29.5,-82.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4157 type: CableHV components: - pos: -28.5,-82.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4158 type: CableHV components: - pos: -27.5,-82.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4159 type: CableHV components: - pos: -26.5,-82.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4160 type: CableHV components: - pos: -25.5,-82.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4161 type: CableHV components: - pos: -24.5,-81.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4162 type: CableHV components: - pos: -23.5,-81.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4163 type: CableHV components: - pos: -23.5,-82.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4164 type: CableHV components: - pos: -23.5,-83.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4165 type: CableHV components: - pos: -23.5,-84.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4166 - type: AsteroidRock + type: Catwalk components: - - pos: -59.5,-42.5 + - pos: -59.5,-43.5 parent: 6 type: Transform - uid: 4167 - type: AsteroidRock + type: Catwalk components: - - pos: -59.5,-40.5 + - pos: -60.5,-43.5 parent: 6 type: Transform - uid: 4168 - type: AsteroidRock + type: Catwalk components: - - pos: -61.5,-45.5 + - pos: -61.5,-43.5 parent: 6 type: Transform - uid: 4169 @@ -33735,21 +49046,21 @@ entities: parent: 6 type: Transform - uid: 4213 - type: AsteroidRock + type: Catwalk components: - - pos: -59.5,-46.5 + - pos: -61.5,-45.5 parent: 6 type: Transform - uid: 4214 - type: AsteroidRock + type: Catwalk components: - - pos: -60.5,-44.5 + - pos: -60.5,-45.5 parent: 6 type: Transform - uid: 4215 - type: ChemBag + type: Catwalk components: - - pos: -23.298819,-14.353152 + - pos: -59.5,-45.5 parent: 6 type: Transform - uid: 4216 @@ -34413,6 +49724,12 @@ entities: - pos: -16.5,-22.5 parent: 6 type: Transform +- uid: 4313 + type: CrowbarRed + components: + - pos: 38.568466,3.4149182 + parent: 6 + type: Transform - uid: 4314 type: AsteroidRock components: @@ -34739,24 +50056,6 @@ entities: - pos: -9.5,-22.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4362 type: hydroponicsTray components: @@ -34787,24 +50086,6 @@ entities: - pos: -9.5,-21.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4367 type: Grille components: @@ -34914,24 +50195,6 @@ entities: - pos: -8.5,-0.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4384 type: Bed components: @@ -35170,24 +50433,6 @@ entities: - pos: -29.5,-54.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4419 type: TableGlass components: @@ -35206,7 +50451,7 @@ entities: - pos: -29.5,-52.5 parent: 6 type: Transform - - SecondsUntilStateChange: -241494.92 + - SecondsUntilStateChange: -238945.73 state: Opening type: Door - uid: 4422 @@ -35386,8 +50631,6 @@ entities: pos: -53.5,-16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4451 type: Chair components: @@ -35395,8 +50638,6 @@ entities: pos: -53.5,-17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4452 type: Chair components: @@ -35404,8 +50645,6 @@ entities: pos: -50.5,-16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4453 type: Chair components: @@ -35413,32 +50652,12 @@ entities: pos: -50.5,-17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4454 type: WardrobeYellowFilled components: - pos: -54.5,-19.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4455 type: AsteroidRock components: @@ -35471,7 +50690,6 @@ entities: type: Transform - fixtures: - shape: !type:PolygonShape - radius: 0.01 vertices: - 0.25,-0.48 - 0.25,0.48 @@ -35485,10 +50703,6 @@ entities: - BulletImpassable - Opaque density: 145 - hard: True - restitution: 0 - friction: 0.4 - id: null type: Fixtures - open: True removedMasks: 20 @@ -35649,18 +50863,6 @@ entities: - pos: -20.5,12.5 parent: 6 type: Transform -- uid: 4484 - type: AirlockScienceLocked - components: - - pos: -6.5,-57.5 - parent: 6 - type: Transform -- uid: 4485 - type: AirlockScienceLocked - components: - - pos: -5.5,-57.5 - parent: 6 - type: Transform - uid: 4486 type: TableWood components: @@ -35736,8 +50938,6 @@ entities: pos: 15.5,-19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4498 type: ChairPilotSeat components: @@ -35745,8 +50945,6 @@ entities: pos: 14.5,-19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4499 type: Chair components: @@ -35754,8 +50952,6 @@ entities: pos: 12.5,-15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4500 type: Chair components: @@ -35763,8 +50959,6 @@ entities: pos: 12.5,-16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4501 type: Chair components: @@ -35772,8 +50966,6 @@ entities: pos: 17.5,-15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4502 type: Chair components: @@ -35781,8 +50973,6 @@ entities: pos: 17.5,-16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4503 type: Grille components: @@ -35803,24 +50993,6 @@ entities: pos: -28.5,-24.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4506 type: Rack components: @@ -35858,24 +51030,6 @@ entities: pos: -28.5,-25.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4512 type: ComputerCriminalRecords components: @@ -35910,10 +51064,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 4517 type: GasPipeStraight components: @@ -35923,10 +51073,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 4518 type: Morgue components: @@ -35934,24 +51080,6 @@ entities: pos: -28.5,-26.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4519 type: CableHV components: @@ -36012,48 +51140,12 @@ entities: - pos: 2.5,-50.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4529 type: LockerSalvageSpecialistFilled components: - pos: 2.5,-49.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4530 type: WallSolid components: @@ -36101,24 +51193,6 @@ entities: - pos: 8.5,-31.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4537 type: ComputerCargoOrders components: @@ -36160,24 +51234,6 @@ entities: - pos: -14.5,-47.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4543 type: OperatingTable components: @@ -36279,24 +51335,6 @@ entities: pos: -28.5,-27.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4559 type: TableGlass components: @@ -36544,6 +51582,42 @@ entities: - pos: 0.5,-2.5 parent: 6 type: Transform +- uid: 4600 + type: SpawnPointLatejoin + components: + - pos: 36.5,2.5 + parent: 6 + type: Transform +- uid: 4601 + type: SpawnPointLatejoin + components: + - pos: 36.5,0.5 + parent: 6 + type: Transform +- uid: 4602 + type: SpawnPointLatejoin + components: + - pos: 37.5,2.5 + parent: 6 + type: Transform +- uid: 4603 + type: SpawnPointLatejoin + components: + - pos: 37.5,0.5 + parent: 6 + type: Transform +- uid: 4604 + type: SpawnPointLatejoin + components: + - pos: 37.5,1.5 + parent: 6 + type: Transform +- uid: 4605 + type: SpawnPointLatejoin + components: + - pos: 36.5,1.5 + parent: 6 + type: Transform - uid: 4606 type: SpawnPointObserver components: @@ -36563,24 +51637,6 @@ entities: - pos: -19.5,-32.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4609 type: KitchenMicrowave components: @@ -36663,8 +51719,6 @@ entities: pos: 4.5,-14.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4622 type: StoolBar components: @@ -36672,8 +51726,6 @@ entities: pos: 4.5,-15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4623 type: StoolBar components: @@ -36681,8 +51733,6 @@ entities: pos: 4.5,-16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4624 type: StoolBar components: @@ -36690,8 +51740,6 @@ entities: pos: 4.5,-17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4625 type: StoolBar components: @@ -36699,8 +51747,6 @@ entities: pos: 0.5,-19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4626 type: StoolBar components: @@ -36708,8 +51754,6 @@ entities: pos: 1.5,-19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4627 type: StoolBar components: @@ -36717,8 +51761,6 @@ entities: pos: 2.5,-19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4628 type: Bed components: @@ -36805,51 +51847,17 @@ entities: - pos: -54.5,-18.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4642 type: WardrobePinkFilled components: - pos: -54.5,-17.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4643 type: Paper components: + - desc: "" + type: MetaData - pos: -28.609644,-18.461634 parent: 6 type: Transform @@ -36861,8 +51869,6 @@ entities: - pos: -28.5,-16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4645 type: GasPipeTJunction components: @@ -36870,8 +51876,6 @@ entities: pos: -29.5,-16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4646 type: CryoPod components: @@ -36920,24 +51924,6 @@ entities: - pos: -36.5,-17.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4654 type: TableGlass components: @@ -36980,48 +51966,12 @@ entities: - pos: -49.5,-17.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4661 type: WardrobeGreenFilled components: - pos: -49.5,-18.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4662 type: TableReinforced components: @@ -37040,56 +51990,18 @@ entities: - pos: 11.5,-1.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4665 type: LockerEvidence components: - pos: 11.5,4.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4666 type: ComfyChair components: - pos: 11.5,9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4667 type: WallReinforced components: @@ -37121,48 +52033,6 @@ entities: - pos: 10.5,9.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4672 - type: AirlockBrigGlassLocked - components: - - pos: 11.5,-6.5 - parent: 6 - type: Transform -- uid: 4673 - type: AirlockBrigGlassLocked - components: - - pos: 11.5,-8.5 - parent: 6 - type: Transform -- uid: 4674 - type: AirlockBrigGlassLocked - components: - - pos: 13.5,-6.5 - parent: 6 - type: Transform -- uid: 4675 - type: AirlockBrigGlassLocked - components: - - pos: 13.5,-8.5 - parent: 6 - type: Transform - uid: 4676 type: Grille components: @@ -37211,90 +52081,6 @@ entities: - pos: 19.5,-9.5 parent: 6 type: Transform -- uid: 4684 - type: AirlockSecurityGlassLocked - components: - - pos: 11.5,-3.5 - parent: 6 - type: Transform -- uid: 4685 - type: AirlockSecurityGlassLocked - components: - - pos: 15.5,10.5 - parent: 6 - type: Transform -- uid: 4686 - type: AirlockSecurityGlassLocked - components: - - pos: 14.5,10.5 - parent: 6 - type: Transform -- uid: 4687 - type: AirlockSecurityGlassLocked - components: - - pos: 14.5,13.5 - parent: 6 - type: Transform -- uid: 4688 - type: AirlockSecurityGlassLocked - components: - - pos: 15.5,13.5 - parent: 6 - type: Transform -- uid: 4689 - type: AirlockSecurityGlassLocked - components: - - pos: 15.5,17.5 - parent: 6 - type: Transform -- uid: 4690 - type: AirlockSecurityGlassLocked - components: - - pos: 14.5,17.5 - parent: 6 - type: Transform -- uid: 4691 - type: AirlockGlass - components: - - pos: 10.5,21.5 - parent: 6 - type: Transform -- uid: 4692 - type: AirlockHeadOfSecurityGlassLocked - components: - - pos: 13.5,7.5 - parent: 6 - type: Transform -- uid: 4693 - type: AirlockSecurityGlassLocked - components: - - pos: 10.5,0.5 - parent: 6 - type: Transform -- uid: 4694 - type: AirlockSecurityGlassLocked - components: - - pos: 10.5,2.5 - parent: 6 - type: Transform -- uid: 4695 - type: AirlockSecurityGlassLocked - components: - - pos: 16.5,-7.5 - parent: 6 - type: Transform -- uid: 4696 - type: AirlockArmoryGlassLocked - components: - - pos: 17.5,-2.5 - parent: 6 - type: Transform -- uid: 4697 - type: HighSecArmoryLocked - components: - - pos: 16.5,6.5 - parent: 6 - type: Transform - uid: 4698 type: WindoorArmoryLocked components: @@ -37790,8 +52576,6 @@ entities: - pos: -80.5,-48.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4779 type: FloorTileItemDirty components: @@ -37841,8 +52625,6 @@ entities: - pos: -20.5,3.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 4787 type: WallReinforced components: @@ -37921,48 +52703,12 @@ entities: - pos: -26.5,-18.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4800 type: LockerChemistryFilled components: - pos: -25.5,-18.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4801 type: chem_dispenser components: @@ -38017,36 +52763,6 @@ entities: - pos: -26.5,-14.5 parent: 6 type: Transform -- uid: 4810 - type: AirlockMedicalGlassLocked - components: - - pos: -22.5,-27.5 - parent: 6 - type: Transform -- uid: 4811 - type: AirlockMedicalGlassLocked - components: - - pos: -25.5,-23.5 - parent: 6 - type: Transform -- uid: 4812 - type: AirlockMedicalGlassLocked - components: - - pos: -24.5,-23.5 - parent: 6 - type: Transform -- uid: 4813 - type: AirlockMedicalGlassLocked - components: - - pos: -17.5,-24.5 - parent: 6 - type: Transform -- uid: 4814 - type: AirlockChemistryLocked - components: - - pos: -21.5,-18.5 - parent: 6 - type: Transform - uid: 4815 type: Grille components: @@ -38123,46 +52839,16 @@ entities: pos: -34.5,-19.5 parent: 6 type: Transform -- uid: 4826 - type: AirlockMedicalGlassLocked - components: - - pos: -29.5,-19.5 - parent: 6 - type: Transform -- uid: 4827 - type: AirlockMedicalGlassLocked - components: - - pos: -29.5,-23.5 - parent: 6 - type: Transform -- uid: 4828 - type: AirlockMedicalLocked - components: - - pos: -33.5,-19.5 - parent: 6 - type: Transform - uid: 4829 type: IntercomMedical components: - pos: -24.5,-19.5 parent: 6 type: Transform -- uid: 4830 - type: AirlockSecurityGlassLocked - components: - - pos: -21.5,-30.5 - parent: 6 - type: Transform -- uid: 4831 - type: AirlockSecurityGlassLocked - components: - - pos: -16.5,-32.5 - parent: 6 - type: Transform - uid: 4832 - type: CableHV + type: ClothingNeckStethoscope components: - - pos: -50.5,-43.5 + - pos: -17.654259,-21.479967 parent: 6 type: Transform - uid: 4833 @@ -38204,8 +52890,6 @@ entities: - pos: -23.5,14.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4839 type: ComputerPowerMonitoring components: @@ -38224,96 +52908,24 @@ entities: - pos: -38.5,-5.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4842 type: LockerEngineerFilled components: - pos: -38.5,-6.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4843 type: LockerAtmosphericsFilled components: - pos: -38.5,-8.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4844 type: LockerAtmosphericsFilled components: - pos: -38.5,-7.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4845 type: TableReinforced components: @@ -38536,48 +53148,12 @@ entities: - pos: -34.5,-8.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4881 type: LockerWeldingSuppliesFilled components: - pos: -32.5,-8.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4882 type: Rack components: @@ -38646,48 +53222,12 @@ entities: - pos: -34.5,2.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4893 type: CrateEngineeringAMEShielding components: - pos: -34.5,1.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4894 type: AMEController components: @@ -38706,24 +53246,6 @@ entities: - pos: -38.5,0.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4897 type: CloningPod components: @@ -38796,24 +53318,6 @@ entities: - pos: -30.5,7.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 4908 type: BlastDoor components: @@ -38890,16 +53394,12 @@ entities: - pos: -25.5,16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4917 type: CableHV components: - pos: -25.5,15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4918 type: WallReinforced components: @@ -38920,8 +53420,6 @@ entities: - pos: -23.5,14.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4921 type: AsteroidRock components: @@ -38976,8 +53474,6 @@ entities: - pos: -15.5,27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4929 type: WallReinforced components: @@ -39057,8 +53553,6 @@ entities: - pos: -41.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4941 type: Poweredlight components: @@ -39141,200 +53635,150 @@ entities: - pos: -24.5,16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4952 type: CableHV components: - pos: -24.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4953 type: CableHV components: - pos: -24.5,18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4954 type: CableHV components: - pos: -25.5,18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4955 type: CableHV components: - pos: -25.5,19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4956 type: CableHV components: - pos: -25.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4957 type: CableHV components: - pos: -25.5,21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4958 type: CableHV components: - pos: -25.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4959 type: CableHV components: - pos: -25.5,23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4960 type: CableHV components: - pos: -25.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4961 type: CableHV components: - pos: -26.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4962 type: CableHV components: - pos: -27.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4963 type: CableHV components: - pos: -28.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4964 type: CableHV components: - pos: -29.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4965 type: CableHV components: - pos: -30.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4966 type: CableHV components: - pos: -30.5,23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4967 type: CableHV components: - pos: -30.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4968 type: CableHV components: - pos: -30.5,21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4969 type: CableHV components: - pos: -30.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4970 type: CableHV components: - pos: -30.5,19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4971 type: CableHV components: - pos: -30.5,18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4972 type: CableHV components: - pos: -30.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4973 type: CableHV components: - pos: -30.5,16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4974 type: CableHV components: - pos: -30.5,15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4975 type: CableHV components: - pos: -30.5,14.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4976 type: CableHV components: @@ -39383,16 +53827,12 @@ entities: - pos: -31.5,7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4984 type: CableHV components: - pos: -31.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 4985 type: CableHV components: @@ -39489,40 +53929,30 @@ entities: - pos: -36.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 5001 type: CableHV components: - pos: -36.5,2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 5002 type: CableHV components: - pos: -36.5,3.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 5003 type: CableHV components: - pos: -35.5,3.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 5004 type: CableHV components: - pos: -37.5,3.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 5005 type: OxygenCanister components: @@ -39667,8 +54097,6 @@ entities: - pos: -16.5,-1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 5029 type: CableHV components: @@ -39699,8 +54127,6 @@ entities: - pos: -26.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 5034 type: CableHV components: @@ -39753,80 +54179,36 @@ entities: pos: -34.5,7.5 parent: 6 type: Transform -- uid: 5042 - type: AirlockAtmosphericsGlassLocked - components: - - pos: -31.5,5.5 - parent: 6 - type: Transform -- uid: 5043 - type: AirlockAtmosphericsGlassLocked - components: - - pos: -31.5,8.5 - parent: 6 - type: Transform - uid: 5044 type: Table components: - pos: -32.5,21.5 parent: 6 type: Transform -- uid: 5045 - type: HighSecCommandLocked - components: - - pos: -26.5,0.5 - parent: 6 - type: Transform - uid: 5046 type: CableHV components: - pos: -24.5,14.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 5047 type: CableApcExtension components: - pos: -24.5,14.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 5048 type: CableApcExtension components: - pos: 4.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 5049 type: CableApcExtension components: - pos: 1.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5050 - type: HighSecCommandLocked - components: - - pos: -20.5,0.5 - parent: 6 - type: Transform -- uid: 5051 - type: AirlockEngineeringLocked - components: - - pos: -28.5,-0.5 - parent: 6 - type: Transform -- uid: 5052 - type: AirlockEngineeringLocked - components: - - pos: -28.5,-1.5 - parent: 6 - type: Transform - uid: 5053 type: WindoorEngineeringLocked components: @@ -39834,42 +54216,6 @@ entities: pos: -37.5,-5.5 parent: 6 type: Transform -- uid: 5054 - type: AirlockEngineeringLocked - components: - - pos: -33.5,-9.5 - parent: 6 - type: Transform -- uid: 5055 - type: AirlockEngineeringLocked - components: - - pos: -35.5,-7.5 - parent: 6 - type: Transform -- uid: 5056 - type: AirlockEngineeringLocked - components: - - pos: -31.5,-7.5 - parent: 6 - type: Transform -- uid: 5057 - type: AirlockEngineeringGlassLocked - components: - - pos: -36.5,-0.5 - parent: 6 - type: Transform -- uid: 5058 - type: AirlockEngineeringGlassLocked - components: - - pos: -29.5,-4.5 - parent: 6 - type: Transform -- uid: 5059 - type: AirlockEngineeringGlassLocked - components: - - pos: -30.5,-4.5 - parent: 6 - type: Transform - uid: 5060 type: ReinforcedWindow components: @@ -39904,32 +54250,12 @@ entities: pos: -22.5,-6.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5065 type: LockerChiefEngineerFilled components: - pos: -21.5,-3.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 5066 type: IngotGold components: @@ -39992,28 +54318,8 @@ entities: - pos: -22.5,1.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - 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: - 5173 type: ContainerContainer @@ -40023,28 +54329,8 @@ entities: - pos: -18.5,1.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - 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: - 6326 - 6325 @@ -40184,24 +54470,6 @@ entities: - pos: 1.5,-7.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 5097 type: Bed components: @@ -40305,28 +54573,12 @@ entities: - pos: 1.5,-1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5114 - type: AirlockCommandGlassLocked - components: - - pos: 0.5,-6.5 - parent: 6 - type: Transform -- uid: 5115 - type: AirlockMaintCommandLocked - components: - - pos: -4.5,-5.5 - parent: 6 - type: Transform - uid: 5116 type: CableApcExtension components: - pos: 1.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 5117 type: WallSolid components: @@ -40339,92 +54591,12 @@ entities: - pos: -4.5,-1.5 parent: 6 type: Transform -- uid: 5119 - type: AirlockCommandGlassLocked - components: - - pos: 1.5,4.5 - parent: 6 - type: Transform -- uid: 5120 - type: AirlockCommandGlassLocked - components: - - pos: 1.5,3.5 - parent: 6 - type: Transform -- uid: 5121 - type: AirlockCommandGlassLocked - components: - - pos: 4.5,4.5 - parent: 6 - type: Transform -- uid: 5122 - type: AirlockCommandGlassLocked - components: - - pos: 4.5,3.5 - parent: 6 - type: Transform -- uid: 5123 - type: AirlockCommandGlassLocked - components: - - pos: -1.5,2.5 - parent: 6 - type: Transform -- uid: 5124 - type: AirlockCommandGlassLocked - components: - - pos: -0.5,2.5 - parent: 6 - type: Transform -- uid: 5125 - type: AirlockCommandGlassLocked - components: - - pos: -5.5,5.5 - parent: 6 - type: Transform -- uid: 5126 - type: AirlockCommandGlassLocked - components: - - pos: -4.5,5.5 - parent: 6 - type: Transform -- uid: 5127 - type: AirlockCommandGlassLocked - components: - - pos: -3.5,5.5 - parent: 6 - type: Transform -- uid: 5128 - type: AirlockCommandGlassLocked - components: - - pos: -10.5,4.5 - parent: 6 - type: Transform -- uid: 5129 - type: AirlockCommandGlassLocked - components: - - pos: -10.5,3.5 - parent: 6 - type: Transform -- uid: 5130 - type: AirlockCommandGlassLocked - components: - - pos: -13.5,4.5 - parent: 6 - type: Transform -- uid: 5131 - type: AirlockCommandGlassLocked - components: - - pos: -13.5,3.5 - parent: 6 - type: Transform - uid: 5132 type: ComfyChair components: - pos: -11.5,-9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5133 type: TableGlass components: @@ -40437,8 +54609,6 @@ entities: - pos: -9.5,-9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5135 type: VendingMachineCigs components: @@ -40469,42 +54639,6 @@ entities: - pos: 1.5,-9.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5139 - type: AirlockKitchenGlassLocked - components: - - pos: -4.5,-23.5 - parent: 6 - type: Transform -- uid: 5140 - type: AirlockHydroGlassLocked - components: - - pos: -12.5,-20.5 - parent: 6 - type: Transform -- uid: 5141 - type: AirlockKitchenLocked - components: - - pos: -12.5,-25.5 - parent: 6 - type: Transform - uid: 5142 type: Grille components: @@ -40535,35 +54669,23 @@ entities: - pos: -38.5,-4.5 parent: 6 type: Transform -- uid: 5147 - type: AirlockFreezerLocked - components: - - pos: -7.5,-22.5 - parent: 6 - type: Transform - uid: 5148 type: Paper components: + - desc: "" + type: MetaData - pos: -38.31556,-4.426944 parent: 6 type: Transform - content: > NT is having trouble getting supplies all the way out here so we only have one AME core for now. Make sure all four solar arrays are connected and calibrated or get those braniacs down in science to build us a couple generators in the meantime. type: Paper -- uid: 5149 - type: AirlockFreezerLocked - components: - - pos: -5.5,-19.5 - parent: 6 - type: Transform - uid: 5150 type: Chair components: - pos: -2.5,-20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5151 type: Grille components: @@ -40591,8 +54713,6 @@ entities: pos: -22.5,-22.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5155 type: WallSolid components: @@ -40611,24 +54731,6 @@ entities: - pos: 2.5,-9.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 5158 type: ToiletDirtyWater components: @@ -40636,8 +54738,6 @@ entities: pos: -8.5,-4.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5159 type: WindowTintedDirectional components: @@ -40723,8 +54823,6 @@ entities: pos: -23.5,-22.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5172 type: WaterCooler components: @@ -41019,16 +55117,12 @@ entities: - pos: 5.5,8.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5218 type: Chair components: - pos: 6.5,8.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5219 type: WindoorHydroponicsLocked components: @@ -41104,82 +55198,18 @@ entities: - pos: -9.5,-13.5 parent: 6 type: Transform -- uid: 5231 - type: AirlockBrigGlassLocked - components: - - pos: 9.5,-13.5 - parent: 6 - type: Transform -- uid: 5232 - type: AirlockBrigGlassLocked - components: - - pos: 11.5,-16.5 - parent: 6 - type: Transform -- uid: 5233 - type: AirlockGlass - components: - - pos: 13.5,-13.5 - parent: 6 - type: Transform -- uid: 5234 - type: AirlockGlass - components: - - pos: 16.5,-13.5 - parent: 6 - type: Transform -- uid: 5235 - type: AirlockMaintLocked - components: - - pos: 18.5,-19.5 - parent: 6 - type: Transform -- uid: 5236 - type: AirlockCargoGlass - components: - - pos: 14.5,-38.5 - parent: 6 - type: Transform -- uid: 5237 - type: AirlockCargoGlass - components: - - pos: 13.5,-38.5 - parent: 6 - type: Transform -- uid: 5238 - type: AirlockQuartermasterGlassLocked - components: - - pos: 11.5,-33.5 - parent: 6 - type: Transform - uid: 5239 type: CableMV components: - pos: 26.5,0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 5240 type: CableApcExtension components: - pos: 26.5,0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5241 - type: AirlockCargoLocked - components: - - pos: 10.5,-40.5 - parent: 6 - type: Transform -- uid: 5242 - type: AirlockCargoLocked - components: - - pos: 10.5,-39.5 - parent: 6 - type: Transform - uid: 5243 type: Chair components: @@ -41187,8 +55217,6 @@ entities: pos: 8.5,-25.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5244 type: Chair components: @@ -41196,8 +55224,6 @@ entities: pos: 8.5,-23.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5245 type: Chair components: @@ -41205,8 +55231,6 @@ entities: pos: 8.5,-21.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5246 type: Chair components: @@ -41214,8 +55238,6 @@ entities: pos: 7.5,-21.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5247 type: Chair components: @@ -41223,8 +55245,6 @@ entities: pos: 7.5,-23.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5248 type: Chair components: @@ -41232,14 +55252,6 @@ entities: pos: 7.5,-25.5 parent: 6 type: Transform - - bodyType: Static - type: Physics -- uid: 5249 - type: AirlockBarLocked - components: - - pos: -1.5,-15.5 - parent: 6 - type: Transform - uid: 5250 type: WallSolid components: @@ -41458,12 +55470,6 @@ entities: pos: 5.5,-46.5 parent: 6 type: Transform -- uid: 5284 - type: AirlockSalvageGlassLocked - components: - - pos: 2.5,-46.5 - parent: 6 - type: Transform - uid: 5285 type: WindoorSecureSalvageLocked components: @@ -41483,8 +55489,6 @@ entities: - pos: 3.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 5288 type: TableCarpet components: @@ -41636,75 +55640,21 @@ entities: - uid: 5312 type: ClosetFireFilled components: - - pos: 8.5,-45.5 - parent: 6 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage + - pos: 8.5,-45.5 + parent: 6 + type: Transform - uid: 5313 type: ClosetEmergencyFilledRandom components: - pos: 15.5,-45.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 5314 type: ClosetMaintenanceFilledRandom components: - pos: 16.5,-45.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 5315 type: Catwalk components: @@ -41849,30 +55799,6 @@ entities: - pos: 18.5,-45.5 parent: 6 type: Transform -- uid: 5339 - type: AirlockExternalGlassLocked - components: - - pos: 6.5,-52.5 - parent: 6 - type: Transform -- uid: 5340 - type: AirlockExternalGlassLocked - components: - - pos: 5.5,-52.5 - parent: 6 - type: Transform -- uid: 5341 - type: AirlockExternalGlassLocked - components: - - pos: 2.5,-55.5 - parent: 6 - type: Transform -- uid: 5342 - type: AirlockExternalGlassLocked - components: - - pos: 3.5,-55.5 - parent: 6 - type: Transform - uid: 5343 type: Grille components: @@ -41945,24 +55871,6 @@ entities: - pos: -2.5,-50.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 5355 type: TableGlass components: @@ -42001,14 +55909,6 @@ entities: - pos: 3.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5361 - type: AirlockResearchDirectorGlassLocked - components: - - pos: -1.5,-53.5 - parent: 6 - type: Transform - uid: 5362 type: TableReinforcedGlass components: @@ -42033,108 +55933,18 @@ entities: - pos: -6.5,-50.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 5366 type: ClosetRadiationSuitFilled components: - pos: -6.5,-51.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 5367 type: ClosetFireFilled components: - pos: -6.5,-52.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5368 - type: AirlockScienceLocked - components: - - pos: -7.5,-53.5 - parent: 6 - type: Transform -- uid: 5369 - type: AirlockScienceLocked - components: - - pos: -7.5,-49.5 - parent: 6 - type: Transform -- uid: 5370 - type: AirlockScienceGlassLocked - components: - - pos: -13.5,-52.5 - parent: 6 - type: Transform -- uid: 5371 - type: AirlockScienceGlassLocked - components: - - pos: -13.5,-53.5 - parent: 6 - type: Transform -- uid: 5372 - type: AirlockMaintRnDLocked - components: - - pos: -18.5,-53.5 - parent: 6 - type: Transform -- uid: 5373 - type: AirlockMaintRnDLocked - components: - - pos: -4.5,-53.5 - parent: 6 - type: Transform - uid: 5374 type: TableReinforcedGlass components: @@ -42315,48 +56125,12 @@ entities: - pos: -10.5,-56.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 5403 type: LockerScienceFilled components: - pos: -9.5,-56.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 5404 type: DisposalUnit components: @@ -42382,8 +56156,6 @@ entities: pos: -30.5,-41.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5408 type: ToiletEmpty components: @@ -42391,8 +56163,6 @@ entities: pos: -30.5,-40.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5409 type: ToiletEmpty components: @@ -42400,8 +56170,6 @@ entities: pos: -30.5,-39.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5410 type: Sink components: @@ -42508,24 +56276,6 @@ entities: - pos: -45.5,-38.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 5426 type: Bed components: @@ -42693,2026 +56443,2322 @@ entities: - uid: 5439 type: ConveyorBelt components: - - rot: -1.5707963267948966 rad - pos: -57.5,-34.5 + - rot: -1.5707963267948966 rad + pos: -57.5,-34.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 13053 + Forward: + - port: Left + uid: 13053 + Off: + - port: Middle + uid: 13053 + type: SignalReceiver +- uid: 5440 + type: ConveyorBelt + components: + - rot: 3.141592653589793 rad + pos: -51.5,-35.5 + parent: 6 + type: Transform + - inputs: + Reverse: + - port: Right + uid: 13053 + Forward: + - port: Left + uid: 13053 + Off: + - port: Middle + uid: 13053 + type: SignalReceiver +- uid: 5441 + type: TablePlasmaGlass + components: + - rot: 3.141592653589793 rad + pos: -53.5,-46.5 + parent: 6 + type: Transform +- uid: 5442 + type: TablePlasmaGlass + components: + - rot: 3.141592653589793 rad + pos: -54.5,-46.5 + parent: 6 + type: Transform +- uid: 5443 + type: TablePlasmaGlass + components: + - rot: 3.141592653589793 rad + pos: -55.5,-42.5 + parent: 6 + type: Transform +- uid: 5444 + type: TablePlasmaGlass + components: + - rot: 3.141592653589793 rad + pos: -54.5,-42.5 + parent: 6 + type: Transform +- uid: 5445 + type: ChairOfficeDark + components: + - pos: -55.5,-41.5 + parent: 6 + type: Transform +- uid: 5446 + type: ChairOfficeDark + components: + - pos: -54.5,-41.5 + parent: 6 + type: Transform +- uid: 5447 + type: ChairOfficeDark + components: + - rot: 3.141592653589793 rad + pos: -53.5,-47.5 + parent: 6 + type: Transform +- uid: 5448 + type: ChairOfficeDark + components: + - rot: 3.141592653589793 rad + pos: -54.5,-47.5 + parent: 6 + type: Transform +- uid: 5451 + type: ReinforcedWindow + components: + - pos: -56.5,-44.5 + parent: 6 + type: Transform +- uid: 5452 + type: Grille + components: + - pos: -56.5,-44.5 + parent: 6 + type: Transform +- uid: 5453 + type: ReinforcedWindow + components: + - pos: -57.5,-44.5 + parent: 6 + type: Transform +- uid: 5454 + type: Grille + components: + - pos: -57.5,-44.5 + parent: 6 + type: Transform +- uid: 5455 + type: BoxFolderBlue + components: + - pos: -54.5,-46.5 + parent: 6 + type: Transform +- uid: 5456 + type: BoxFolderBlue + components: + - pos: -53.5,-46.5 + parent: 6 + type: Transform +- uid: 5457 + type: BoxFolderBlue + components: + - rot: 3.141592653589793 rad + pos: -54.5,-42.5 + parent: 6 + type: Transform +- uid: 5458 + type: BoxFolderBlue + components: + - rot: 3.141592653589793 rad + pos: -55.5,-42.5 + parent: 6 + type: Transform +- uid: 5459 + type: PottedPlantRandom + components: + - pos: -51.5,-47.5 + parent: 6 + type: Transform +- uid: 5460 + type: PottedPlantRandom + components: + - pos: -51.5,-51.5 + parent: 6 + type: Transform +- uid: 5461 + type: Chair + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-48.5 + parent: 6 + type: Transform +- uid: 5462 + type: RandomArcade + components: + - pos: -48.5,-47.5 + parent: 6 + type: Transform +- uid: 5463 + type: SalvageMagnet + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-58.5 + parent: 6 + type: Transform +- uid: 5465 + type: AsteroidRock + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-75.5 + parent: 6 + type: Transform +- uid: 5486 + type: FirelockGlass + components: + - pos: -26.5,-45.5 + parent: 6 + type: Transform +- uid: 5487 + type: FirelockGlass + components: + - pos: -26.5,-44.5 + parent: 6 + type: Transform +- uid: 5488 + type: FirelockGlass + components: + - pos: -26.5,-43.5 + parent: 6 + type: Transform +- uid: 5492 + type: Table + components: + - pos: -32.5,-34.5 + parent: 6 + type: Transform +- uid: 5493 + type: VendingMachineSovietSoda + components: + - flags: SessionSpecific + type: MetaData + - pos: -31.5,-34.5 + parent: 6 + type: Transform +- uid: 5500 + type: Grille + components: + - pos: -44.5,-40.5 + parent: 6 + type: Transform +- uid: 5501 + type: Grille + components: + - pos: -41.5,-39.5 + parent: 6 + type: Transform +- uid: 5502 + type: Grille + components: + - pos: -41.5,-35.5 + parent: 6 + type: Transform +- uid: 5503 + type: Grille + components: + - pos: -44.5,-34.5 + parent: 6 + type: Transform +- uid: 5504 + type: Grille + components: + - pos: -44.5,-30.5 + parent: 6 + type: Transform +- uid: 5505 + type: Grille + components: + - pos: -41.5,-30.5 + parent: 6 + type: Transform +- uid: 5506 + type: CrayonBox + components: + - pos: -52.5,-16.5 + parent: 6 + type: Transform +- uid: 5507 + type: PersonalAI + components: + - flags: SessionSpecific + type: MetaData + - pos: -50.51295,-17.471216 + parent: 6 + type: Transform +- uid: 5508 + type: DiceBag + components: + - pos: -51.465637,-16.68054 + parent: 6 + type: Transform +- uid: 5509 + type: PaperOffice + components: + - pos: -52.64627,-17.066538 + parent: 6 + type: Transform +- uid: 5511 + type: RandomInstruments + components: + - pos: -51.5,-17.5 + parent: 6 + type: Transform +- uid: 5512 + type: Table + components: + - pos: -52.5,-19.5 + parent: 6 + type: Transform +- uid: 5513 + type: PowerCellRecharger + components: + - pos: -52.5,-19.5 + parent: 6 + type: Transform +- uid: 5516 + type: CableHV + components: + - pos: -80.5,-15.5 + parent: 6 + type: Transform +- uid: 5517 + type: Catwalk + components: + - pos: -82.5,-24.5 + parent: 6 + type: Transform +- uid: 5518 + type: CableHV + components: + - pos: -80.5,-22.5 + parent: 6 + type: Transform +- uid: 5519 + type: CableApcExtension + components: + - pos: 3.5,-56.5 + parent: 6 + type: Transform +- uid: 5520 + type: PoweredlightLED + components: + - rot: 3.141592653589793 rad + pos: -23.5,-22.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- uid: 5521 + type: Catwalk + components: + - pos: -81.5,-29.5 + parent: 6 + type: Transform +- uid: 5522 + type: Catwalk + components: + - pos: -81.5,-30.5 + parent: 6 + type: Transform +- uid: 5523 + type: Catwalk + components: + - pos: -81.5,-31.5 + parent: 6 + type: Transform +- uid: 5524 + type: Catwalk + components: + - pos: -81.5,-32.5 + parent: 6 + type: Transform +- uid: 5525 + type: Catwalk + components: + - pos: -77.5,-26.5 + parent: 6 + type: Transform +- uid: 5526 + type: Catwalk + components: + - pos: -77.5,-27.5 + parent: 6 + type: Transform +- uid: 5527 + type: Catwalk + components: + - pos: -77.5,-28.5 + parent: 6 + type: Transform +- uid: 5528 + type: Catwalk + components: + - pos: -77.5,-29.5 parent: 6 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13053 - Forward: - - port: Left - uid: 13053 - Off: - - port: Middle - uid: 13053 - type: SignalReceiver -- uid: 5440 - type: ConveyorBelt +- uid: 5529 + type: Catwalk components: - - rot: 3.141592653589793 rad - pos: -51.5,-35.5 + - pos: -77.5,-30.5 parent: 6 type: Transform - - inputs: - Reverse: - - port: Right - uid: 13053 - Forward: - - port: Left - uid: 13053 - Off: - - port: Middle - uid: 13053 - type: SignalReceiver -- uid: 5441 - type: CableHV +- uid: 5530 + type: Catwalk components: - - pos: -52.5,-43.5 + - pos: -77.5,-31.5 parent: 6 type: Transform -- uid: 5442 - type: WindowReinforcedDirectional +- uid: 5532 + type: CableHV components: - - pos: -53.5,-45.5 + - pos: -82.5,-21.5 parent: 6 type: Transform -- uid: 5443 - type: HighSecCommandLocked +- uid: 5533 + type: CableHV components: - - pos: -51.5,-43.5 + - pos: -80.5,-21.5 parent: 6 type: Transform -- uid: 5444 - type: WindowReinforcedDirectional +- uid: 5534 + type: GasCanisterBrokenBase components: - - rot: -1.5707963267948966 rad - pos: -55.5,-46.5 + - rot: 1.5707963267948966 rad + pos: -58.5,-29.5 parent: 6 type: Transform -- uid: 5445 - type: WindowReinforcedDirectional +- uid: 5535 + type: Poweredlight components: - rot: 3.141592653589793 rad - pos: -55.5,-43.5 + pos: -35.5,-22.5 parent: 6 type: Transform -- uid: 5446 - type: GasPassiveVent + - powerLoad: 0 + type: ApcPowerReceiver +- uid: 5536 + type: DisposalPipe components: - - rot: 3.141592653589793 rad - pos: -57.5,-42.5 + - rot: 1.5707963267948966 rad + pos: -27.5,-21.5 parent: 6 type: Transform - - bodyType: Static - type: Physics -- uid: 5447 - type: GasThermoMachineFreezer +- uid: 5537 + type: Window components: - - pos: -57.5,-41.5 + - pos: -27.5,-21.5 parent: 6 type: Transform -- uid: 5448 - type: Grille +- uid: 5538 + type: ComputerBroken components: - - pos: -58.5,-45.5 + - rot: 1.5707963267948966 rad + pos: -60.5,-36.5 parent: 6 type: Transform -- uid: 5449 - type: AsteroidRock +- uid: 5539 + type: MachineFrameDestroyed components: - - pos: -59.5,-48.5 + - pos: -62.5,-32.5 parent: 6 type: Transform -- uid: 5450 - type: AsteroidRock +- uid: 5540 + type: MachineFrameDestroyed components: - - pos: -59.5,-47.5 + - pos: -61.5,-31.5 parent: 6 type: Transform -- uid: 5451 - type: AsteroidRock +- uid: 5541 + type: CarpetBlue components: - - pos: -60.5,-26.5 + - pos: -8.5,-32.5 parent: 6 type: Transform -- uid: 5452 - type: AsteroidRock +- uid: 5542 + type: SolarPanel components: - - pos: -60.5,-41.5 + - rot: -1.5707963267948966 rad + pos: -84.5,-17.5 parent: 6 type: Transform -- uid: 5453 - type: AsteroidRock +- uid: 5543 + type: PosterContrabandFunPolice components: - - pos: -59.5,-25.5 + - pos: -10.5,-8.5 parent: 6 type: Transform -- uid: 5454 - type: CableHV +- uid: 5544 + type: SolarPanel components: - - pos: -53.5,-43.5 + - rot: -1.5707963267948966 rad + pos: -86.5,-29.5 parent: 6 type: Transform -- uid: 5455 - type: CableHV +- uid: 5545 + type: Catwalk components: - - pos: -51.5,-43.5 + - pos: -73.5,-31.5 parent: 6 type: Transform -- uid: 5456 - type: WindowReinforcedDirectional +- uid: 5546 + type: Catwalk components: - - rot: -1.5707963267948966 rad - pos: -55.5,-42.5 + - pos: -73.5,-32.5 parent: 6 type: Transform -- uid: 5457 - type: WindowReinforcedDirectional +- uid: 5547 + type: Catwalk components: - - pos: -55.5,-45.5 + - pos: -77.5,-32.5 parent: 6 type: Transform -- uid: 5458 - type: CrayonBox +- uid: 5548 + type: SolarPanel components: - - pos: -52.454147,-16.514137 + - rot: -1.5707963267948966 rad + pos: -84.5,-21.5 parent: 6 type: Transform -- uid: 5459 - type: PottedPlantRandom +- uid: 5549 + type: WallSolid components: - - pos: -51.5,-47.5 + - rot: -1.5707963267948966 rad + pos: 3.5,-25.5 parent: 6 type: Transform -- uid: 5460 - type: PottedPlantRandom +- uid: 5550 + type: Catwalk components: - - pos: -51.5,-51.5 + - pos: -73.5,-26.5 parent: 6 type: Transform -- uid: 5461 - type: Chair +- uid: 5551 + type: Catwalk components: - - rot: -1.5707963267948966 rad - pos: -49.5,-48.5 + - pos: -73.5,-27.5 parent: 6 type: Transform - - bodyType: Static - type: Physics -- uid: 5462 - type: RandomArcade +- uid: 5552 + type: Catwalk components: - - pos: -48.5,-47.5 + - pos: -73.5,-28.5 parent: 6 type: Transform -- uid: 5463 - type: SalvageMagnet +- uid: 5553 + type: CableHV components: - - rot: 1.5707963267948966 rad - pos: 8.5,-58.5 + - pos: -80.5,-20.5 parent: 6 type: Transform -- uid: 5464 - type: AirlockJanitorLocked +- uid: 5554 + type: CableHV components: - - pos: 29.5,5.5 + - pos: -80.5,-19.5 parent: 6 type: Transform -- uid: 5465 - type: AsteroidRock +- uid: 5555 + type: WallSolid components: - rot: -1.5707963267948966 rad - pos: -15.5,-75.5 + pos: 3.5,-26.5 parent: 6 type: Transform -- uid: 5466 - type: AirlockGlass +- uid: 5556 + type: VendingMachineCoffee components: - - pos: 27.5,-9.5 + - flags: SessionSpecific + type: MetaData + - pos: 0.5,-3.5 parent: 6 type: Transform -- uid: 5467 - type: AirlockGlass +- uid: 5559 + type: Poweredlight components: - - pos: 29.5,-10.5 + - rot: 3.141592653589793 rad + pos: -16.5,-16.5 parent: 6 type: Transform -- uid: 5468 - type: AirlockGlass + - powerLoad: 0 + type: ApcPowerReceiver +- uid: 5560 + type: Window components: - - pos: 29.5,-11.5 + - pos: 3.5,-22.5 parent: 6 type: Transform -- uid: 5469 - type: AirlockGlass +- uid: 5561 + type: AsteroidRock components: - - pos: 29.5,-12.5 + - pos: -68.5,-6.5 parent: 6 type: Transform -- uid: 5470 - type: AirlockGlass +- uid: 5562 + type: AsteroidRock components: - - pos: 4.5,-10.5 + - pos: -54.5,-6.5 parent: 6 type: Transform -- uid: 5471 - type: AirlockGlass +- uid: 5563 + type: FloraRockSolid02 components: - - pos: 4.5,-11.5 + - pos: 2.6674764,-62.22875 parent: 6 type: Transform -- uid: 5472 - type: AirlockGlass +- uid: 5564 + type: CableHV components: - - pos: 4.5,-12.5 + - pos: -60.5,-20.5 parent: 6 type: Transform -- uid: 5473 - type: AirlockGlass +- uid: 5565 + type: CableHV components: - - pos: -13.5,-10.5 + - pos: -61.5,-20.5 parent: 6 type: Transform -- uid: 5474 - type: AirlockGlass +- uid: 5566 + type: CableHV components: - - pos: -13.5,-11.5 + - pos: -61.5,-21.5 parent: 6 type: Transform -- uid: 5475 - type: AirlockGlass +- uid: 5567 + type: CableHV components: - - pos: -13.5,-12.5 + - pos: -60.5,-21.5 parent: 6 type: Transform -- uid: 5476 - type: AirlockGlass +- uid: 5568 + type: SMESBasic components: - - pos: -43.5,-10.5 + - pos: -59.5,-20.5 parent: 6 type: Transform -- uid: 5477 - type: AirlockGlass +- uid: 5569 + type: CableTerminal components: - - pos: -43.5,-11.5 + - rot: 1.5707963267948966 rad + pos: -60.5,-20.5 parent: 6 type: Transform -- uid: 5478 - type: AirlockGlass +- uid: 5570 + type: CableHV components: - - pos: -43.5,-12.5 + - pos: -59.5,-20.5 parent: 6 type: Transform -- uid: 5479 - type: AirlockGlass +- uid: 5571 + type: CableHV components: - - pos: 4.5,-42.5 + - pos: -59.5,-19.5 parent: 6 type: Transform -- uid: 5480 - type: AirlockGlass +- uid: 5572 + type: CableHV components: - - pos: 5.5,-42.5 + - pos: -59.5,-18.5 parent: 6 type: Transform -- uid: 5481 - type: AirlockGlass +- uid: 5573 + type: CableHV components: - - pos: 6.5,-42.5 + - pos: -60.5,-18.5 parent: 6 type: Transform -- uid: 5482 - type: AirlockGlass +- uid: 5574 + type: CableHV components: - - pos: -19.5,-42.5 + - pos: -60.5,-17.5 parent: 6 type: Transform -- uid: 5483 - type: AirlockGlass +- uid: 5575 + type: ComputerSolarControl components: - - pos: -13.5,-42.5 + - rot: -1.5707963267948966 rad + pos: -59.5,-19.5 parent: 6 type: Transform -- uid: 5484 - type: AirlockGlass +- uid: 5576 + type: TableReinforced components: - - pos: -14.5,-42.5 + - rot: -1.5707963267948966 rad + pos: -59.5,-18.5 parent: 6 type: Transform -- uid: 5485 - type: AirlockGlass +- uid: 5577 + type: CrateEngineeringCableBulk components: - - pos: -15.5,-42.5 + - pos: -62.5,-18.5 parent: 6 type: Transform -- uid: 5486 - type: FirelockGlass +- uid: 5578 + type: OxygenCanister components: - - pos: -26.5,-45.5 + - pos: -62.5,-19.5 parent: 6 type: Transform -- uid: 5487 - type: FirelockGlass +- uid: 5579 + type: NitrogenCanister components: - - pos: -26.5,-44.5 + - pos: -62.5,-20.5 parent: 6 type: Transform -- uid: 5488 - type: FirelockGlass +- uid: 5580 + type: ChairOfficeDark components: - - pos: -26.5,-43.5 + - rot: 1.5707963267948966 rad + pos: -60.5,-19.5 parent: 6 type: Transform -- uid: 5489 - type: AirlockGlass +- uid: 5581 + type: PowerCellRecharger components: - - pos: -34.5,-46.5 + - rot: 1.5707963267948966 rad + pos: -59.5,-18.5 parent: 6 type: Transform -- uid: 5490 - type: AirlockGlass +- uid: 5583 + type: Grille components: - - pos: -32.5,-46.5 + - pos: -48.5,-46.5 parent: 6 type: Transform -- uid: 5491 - type: AirlockGlass +- uid: 5584 + type: TableGlass components: - - pos: -33.5,-42.5 + - pos: 14.5,-42.5 parent: 6 type: Transform -- uid: 5492 - type: Table +- uid: 5585 + type: TableGlass components: - - pos: -32.5,-34.5 + - pos: 13.5,-42.5 parent: 6 type: Transform -- uid: 5493 - type: VendingMachineSovietSoda +- uid: 5586 + type: TableGlass components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,-34.5 + - pos: 12.5,-42.5 parent: 6 type: Transform -- uid: 5494 - type: Airlock +- uid: 5587 + type: TableGlass components: - - pos: -44.5,-39.5 + - pos: 11.5,-42.5 parent: 6 type: Transform -- uid: 5495 - type: Airlock +- uid: 5588 + type: VendingMachineCargoDrobe components: - - pos: -41.5,-40.5 + - flags: SessionSpecific + type: MetaData + - pos: 14.5,-41.5 parent: 6 type: Transform -- uid: 5496 - type: Airlock +- uid: 5589 + type: CarpetBlue components: - - pos: -44.5,-35.5 + - pos: -8.5,-31.5 parent: 6 type: Transform -- uid: 5497 - type: Airlock +- uid: 5590 + type: CarpetGreen components: - - pos: -41.5,-34.5 + - pos: -5.5,-31.5 parent: 6 type: Transform -- uid: 5498 - type: Airlock +- uid: 5591 + type: ClothingBeltUtilityFilled components: - - pos: -44.5,-31.5 + - pos: 13.270581,-42.52453 parent: 6 type: Transform -- uid: 5499 - type: Airlock +- uid: 5592 + type: SheetSteel components: - - pos: -41.5,-29.5 + - pos: 14.187247,-42.253696 parent: 6 type: Transform -- uid: 5500 - type: Grille +- uid: 5593 + type: SheetGlass components: - - pos: -44.5,-40.5 + - pos: 14.5244465,-42.262287 parent: 6 type: Transform -- uid: 5501 - type: Grille +- uid: 5594 + type: SheetPlastic components: - - pos: -41.5,-39.5 + - pos: 13.978914,-42.316196 parent: 6 type: Transform -- uid: 5502 - type: Grille +- uid: 5595 + type: BannerCargo components: - - pos: -41.5,-35.5 + - pos: 11.5,-41.5 parent: 6 type: Transform -- uid: 5503 - type: Grille +- uid: 5596 + type: Rack components: - - pos: -44.5,-34.5 + - pos: 16.5,-38.5 parent: 6 type: Transform -- uid: 5504 - type: Grille +- uid: 5597 + type: ShuttersNormal components: - - pos: -44.5,-30.5 + - pos: 18.5,-39.5 parent: 6 type: Transform -- uid: 5505 - type: Grille + - SecondsUntilStateChange: -111866.94 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 5599 + type: SignalReceiver +- uid: 5598 + type: ShuttersNormal components: - - pos: -41.5,-30.5 + - pos: 17.5,-39.5 parent: 6 type: Transform -- uid: 5506 - type: CableHV + - SecondsUntilStateChange: -111866.94 + state: Opening + type: Door + - inputs: + Open: [] + Close: [] + Toggle: + - port: Pressed + uid: 5599 + type: SignalReceiver +- uid: 5599 + type: SignalButton components: - - pos: -56.5,-47.5 + - rot: 3.141592653589793 rad + pos: 19.5,-39.5 parent: 6 type: Transform -- uid: 5507 - type: PersonalAI + - state: True + type: SignalSwitch + - outputs: + Pressed: + - port: Toggle + uid: 5597 + - port: Toggle + uid: 5598 + type: SignalTransmitter + - type: ItemCooldown +- uid: 5600 + type: SignalButton components: - - flags: SessionSpecific - type: MetaData - - pos: -50.51295,-17.471216 + - rot: -1.5707963267948966 rad + pos: 20.217419,-36.337383 parent: 6 type: Transform -- uid: 5508 - type: DiceBag + - outputs: + Pressed: + - port: Toggle + uid: 1267 + - port: Toggle + uid: 1264 + type: SignalTransmitter +- uid: 5601 + type: SignalButton components: - - pos: -51.465637,-16.68054 + - rot: -1.5707963267948966 rad + pos: 20.217419,-36.635395 parent: 6 type: Transform -- uid: 5509 - type: PaperOffice + - outputs: + Pressed: + - port: Toggle + uid: 1266 + - port: Toggle + uid: 1265 + type: SignalTransmitter +- uid: 5602 + type: PlasticFlapsAirtightClear components: - - pos: -52.64627,-17.066538 + - pos: 23.5,-38.5 parent: 6 type: Transform -- uid: 5510 - type: AirlockScienceGlassLocked +- uid: 5603 + type: PlasticFlapsAirtightClear components: - - pos: -8.5,-74.5 + - pos: 20.5,-38.5 parent: 6 type: Transform -- uid: 5511 - type: RandomInstruments +- uid: 5604 + type: PlasticFlapsAirtightClear components: - - pos: -51.5,-17.5 + - pos: 20.5,-34.5 parent: 6 type: Transform -- uid: 5512 - type: Table +- uid: 5605 + type: PlasticFlapsAirtightClear components: - - pos: -52.5,-19.5 + - pos: 23.5,-34.5 parent: 6 type: Transform -- uid: 5513 - type: PowerCellRecharger +- uid: 5606 + type: AtmosDeviceFanTiny components: - - pos: -52.5,-19.5 + - pos: 23.5,-35.5 parent: 6 type: Transform -- uid: 5514 - type: AirlockGlass +- uid: 5607 + type: AtmosDeviceFanTiny components: - - pos: -53.5,-13.5 + - pos: 23.5,-37.5 parent: 6 type: Transform -- uid: 5515 - type: AirlockGlass +- uid: 5608 + type: WindoorSecureCargoLocked components: - - pos: -50.5,-13.5 + - rot: 1.5707963267948966 rad + pos: 10.5,-36.5 parent: 6 type: Transform -- uid: 5516 - type: CableHV +- uid: 5609 + type: WindoorSecureCargoLocked components: - - pos: -80.5,-15.5 + - rot: 1.5707963267948966 rad + pos: 10.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5517 - type: Catwalk +- uid: 5612 + type: TableReinforced components: - - pos: -82.5,-24.5 + - pos: 14.5,-29.5 parent: 6 type: Transform -- uid: 5518 - type: CableHV +- uid: 5613 + type: TableReinforced components: - - pos: -80.5,-22.5 + - pos: 15.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5519 - type: CableApcExtension +- uid: 5614 + type: TableReinforced + components: + - pos: 16.5,-29.5 + parent: 6 + type: Transform +- uid: 5615 + type: TableReinforced components: - - pos: 3.5,-56.5 + - pos: 17.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5520 - type: PoweredlightLED +- uid: 5616 + type: TableReinforced components: - - rot: 3.141592653589793 rad - pos: -23.5,-22.5 + - pos: 14.5,-28.5 parent: 6 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5521 - type: Catwalk +- uid: 5617 + type: TubaInstrument components: - - pos: -81.5,-29.5 + - pos: 17.5,-26.5 parent: 6 type: Transform -- uid: 5522 - type: Catwalk +- uid: 5618 + type: LauncherCreamPie components: - - pos: -81.5,-30.5 + - pos: 17.501255,-29.56451 parent: 6 type: Transform -- uid: 5523 - type: Catwalk +- uid: 5619 + type: FoodPieBananaCream components: - - pos: -81.5,-31.5 + - pos: 17.430262,-29.15297 parent: 6 type: Transform -- uid: 5524 - type: Catwalk +- uid: 5620 + type: FoodPieBananaCream components: - - pos: -81.5,-32.5 + - pos: 17.302473,-29.29488 parent: 6 type: Transform -- uid: 5525 - type: Catwalk +- uid: 5621 + type: FoodPieBananaCream components: - - pos: -77.5,-26.5 + - pos: 17.146286,-29.465174 parent: 6 type: Transform -- uid: 5526 - type: Catwalk +- uid: 5622 + type: FoodPieBananaCream components: - - pos: -77.5,-27.5 + - pos: 17.018497,-29.195543 parent: 6 type: Transform -- uid: 5527 - type: Catwalk +- uid: 5623 + type: LampBanana components: - - pos: -77.5,-28.5 + - pos: 16.620932,-29.096205 parent: 6 type: Transform -- uid: 5528 - type: Catwalk +- uid: 5624 + type: FoodBanana components: - - pos: -77.5,-29.5 + - pos: 16.40795,-29.521938 parent: 6 type: Transform -- uid: 5529 - type: Catwalk +- uid: 5625 + type: FoodBanana components: - - pos: -77.5,-30.5 + - pos: 16.26596,-29.29488 parent: 6 type: Transform -- uid: 5530 - type: Catwalk +- uid: 5626 + type: FoodBanana components: - - pos: -77.5,-31.5 + - pos: 15.996186,-29.56451 parent: 6 type: Transform -- uid: 5531 - type: AirlockMedicalGlassLocked +- uid: 5627 + type: ClothingHeadHatMimesoftFlipped components: - - pos: -27.5,-20.5 + - pos: 15.754807,-29.252306 parent: 6 type: Transform -- uid: 5532 - type: CableHV +- uid: 5628 + type: FoodTartMime components: - - pos: -82.5,-21.5 + - pos: 15.300446,-29.40841 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5533 - type: CableHV +- uid: 5629 + type: DrinkBottleOfNothingFull components: - - pos: -80.5,-21.5 + - pos: 14.945476,-29.252306 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5534 - type: GasCanisterBrokenBase +- uid: 5630 + type: DawInstrumentMachineCircuitboard components: - - rot: 1.5707963267948966 rad - pos: -58.5,-29.5 + - pos: 14.519512,-28.344076 parent: 6 type: Transform -- uid: 5535 - type: Poweredlight +- uid: 5631 + type: RandomInstruments components: - - rot: 3.141592653589793 rad - pos: -35.5,-22.5 + - pos: 14.5,-29.5 parent: 6 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5536 - type: DisposalPipe +- uid: 5632 + type: ClothingShoesBootsPerformer components: - - rot: 1.5707963267948966 rad - pos: -27.5,-21.5 + - pos: 14.32073,-28.784 parent: 6 type: Transform -- uid: 5537 - type: Window +- uid: 5633 + type: ClothingUniformJumpskirtPerformer components: - - pos: -27.5,-21.5 + - pos: 14.562109,-28.727236 parent: 6 type: Transform -- uid: 5538 - type: ComputerBroken +- uid: 5634 + type: Paper components: - - rot: 1.5707963267948966 rad - pos: -60.5,-36.5 + - pos: 15.201054,-29.238115 parent: 6 type: Transform -- uid: 5539 - type: MachineFrameDestroyed +- uid: 5635 + type: Paper components: - - pos: -62.5,-32.5 + - pos: 15.357241,-29.351645 parent: 6 type: Transform - - bodyType: Static - type: Physics -- uid: 5540 - type: MachineFrameDestroyed +- uid: 5636 + type: VendingMachineTheater components: - - pos: -61.5,-31.5 + - flags: SessionSpecific + type: MetaData + - pos: 14.5,-27.5 parent: 6 type: Transform - - bodyType: Static - type: Physics -- uid: 5541 - type: CarpetBlue +- uid: 5639 + type: ComputerCargoOrders components: - - pos: -8.5,-32.5 + - pos: 10.5,-31.5 parent: 6 type: Transform -- uid: 5542 - type: SolarPanel +- uid: 5640 + type: HandheldCrewMonitor components: - - rot: -1.5707963267948966 rad - pos: -84.5,-17.5 + - pos: -37.635654,-18.448305 parent: 6 type: Transform -- uid: 5543 - type: PosterContrabandFunPolice +- uid: 5641 + type: DrinkDoctorsDelightGlass components: - - pos: -10.5,-8.5 + - pos: -37.13765,-18.30765 parent: 6 type: Transform -- uid: 5544 - type: SolarPanel +- uid: 5642 + type: StasisBedMachineCircuitboard components: - - rot: -1.5707963267948966 rad - pos: -86.5,-29.5 + - pos: -36.498703,-18.43537 parent: 6 type: Transform -- uid: 5545 - type: Catwalk +- uid: 5643 + type: ClothingNeckStethoscope components: - - pos: -73.5,-31.5 + - pos: -36.953064,-18.32184 parent: 6 type: Transform -- uid: 5546 - type: Catwalk +- uid: 5644 + type: filingCabinet components: - - pos: -73.5,-32.5 + - pos: -39.5,-18.5 parent: 6 type: Transform -- uid: 5547 - type: Catwalk +- uid: 5645 + type: ResearchAndDevelopmentServer components: - - pos: -77.5,-32.5 + - pos: -9.5,-76.5 parent: 6 type: Transform -- uid: 5548 - type: SolarPanel +- uid: 5646 + type: SpawnVendingMachineRestockFoodDrink components: - - rot: -1.5707963267948966 rad - pos: -84.5,-21.5 + - pos: 10.5,12.5 parent: 6 type: Transform -- uid: 5549 - type: WallSolid +- uid: 5647 + type: TablePlasmaGlass components: - - rot: -1.5707963267948966 rad - pos: 3.5,-25.5 + - pos: -4.5,-78.5 parent: 6 type: Transform -- uid: 5550 - type: Catwalk +- uid: 5648 + type: ComputerFrame components: - - pos: -73.5,-26.5 + - rot: 3.141592653589793 rad + pos: -6.5,-78.5 parent: 6 type: Transform -- uid: 5551 - type: Catwalk +- uid: 5649 + type: ComputerAnalysisConsole components: - - pos: -73.5,-27.5 + - rot: 3.141592653589793 rad + pos: -2.5,-78.5 parent: 6 type: Transform -- uid: 5552 - type: Catwalk +- uid: 5650 + type: MachineArtifactAnalyzer components: - - pos: -73.5,-28.5 + - pos: -2.5,-80.5 parent: 6 type: Transform -- uid: 5553 - type: CableHV +- uid: 5651 + type: Grille components: - - pos: -80.5,-20.5 + - pos: 7.5,-14.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5554 - type: CableHV +- uid: 5652 + type: GrilleBroken components: - - pos: -80.5,-19.5 + - pos: -20.5,-78.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5555 - type: WallSolid +- uid: 5653 + type: GrilleBroken components: - rot: -1.5707963267948966 rad - pos: 3.5,-26.5 + pos: -20.5,-86.5 parent: 6 type: Transform -- uid: 5556 - type: VendingMachineCoffee +- uid: 5654 + type: GrilleBroken components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,-3.5 + - rot: 1.5707963267948966 rad + pos: -26.5,-85.5 parent: 6 type: Transform -- uid: 5557 - type: AirlockMedicalGlass +- uid: 5655 + type: GrilleBroken components: - - pos: -19.5,-17.5 + - rot: 1.5707963267948966 rad + pos: -28.5,-84.5 + parent: 6 + type: Transform +- uid: 5656 + type: GrilleBroken + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-84.5 parent: 6 type: Transform -- uid: 5558 - type: AirlockMedicalGlass +- uid: 5657 + type: GrilleBroken components: - - pos: -18.5,-17.5 + - rot: 3.141592653589793 rad + pos: -34.5,-79.5 parent: 6 type: Transform -- uid: 5559 - type: Poweredlight +- uid: 5658 + type: GrilleBroken components: - rot: 3.141592653589793 rad - pos: -16.5,-16.5 + pos: -34.5,-77.5 parent: 6 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5560 - type: Window +- uid: 5659 + type: GrilleBroken components: - - pos: 3.5,-22.5 + - pos: -34.5,-73.5 parent: 6 type: Transform -- uid: 5561 - type: AsteroidRock +- uid: 5660 + type: GrilleBroken components: - - pos: -68.5,-6.5 + - rot: 3.141592653589793 rad + pos: -34.5,-69.5 parent: 6 type: Transform -- uid: 5562 - type: AsteroidRock +- uid: 5661 + type: Grille components: - - pos: -54.5,-6.5 + - rot: 1.5707963267948966 rad + pos: -34.5,-67.5 parent: 6 type: Transform -- uid: 5563 - type: FloraRockSolid02 +- uid: 5662 + type: Grille components: - - pos: 2.6674764,-62.22875 + - rot: 1.5707963267948966 rad + pos: -34.5,-71.5 parent: 6 type: Transform -- uid: 5564 - type: CableHV +- uid: 5663 + type: Grille components: - - pos: -60.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -34.5,-72.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5565 - type: CableHV +- uid: 5664 + type: Grille components: - - pos: -61.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -34.5,-74.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5566 - type: CableHV +- uid: 5665 + type: Grille components: - - pos: -61.5,-21.5 + - rot: 1.5707963267948966 rad + pos: -34.5,-75.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5567 - type: CableHV +- uid: 5666 + type: Grille components: - - pos: -60.5,-21.5 + - rot: 1.5707963267948966 rad + pos: -34.5,-76.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5568 - type: SMESBasic +- uid: 5667 + type: Grille components: - - pos: -59.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -34.5,-78.5 parent: 6 type: Transform -- uid: 5569 - type: CableTerminal +- uid: 5668 + type: Grille components: - rot: 1.5707963267948966 rad - pos: -60.5,-20.5 + pos: -34.5,-80.5 parent: 6 type: Transform -- uid: 5570 - type: CableHV +- uid: 5669 + type: Grille components: - - pos: -59.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -34.5,-81.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5571 - type: CableHV +- uid: 5670 + type: Grille components: - - pos: -59.5,-19.5 + - rot: 1.5707963267948966 rad + pos: -34.5,-82.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5572 - type: CableHV +- uid: 5671 + type: Grille components: - - pos: -59.5,-18.5 + - rot: 1.5707963267948966 rad + pos: -34.5,-83.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5573 - type: CableHV +- uid: 5672 + type: Grille components: - - pos: -60.5,-18.5 + - rot: 1.5707963267948966 rad + pos: -34.5,-84.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5574 - type: CableHV +- uid: 5673 + type: Grille components: - - pos: -60.5,-17.5 + - rot: 1.5707963267948966 rad + pos: -32.5,-84.5 parent: 6 type: Transform -- uid: 5575 - type: ComputerSolarControl +- uid: 5674 + type: Grille components: - - rot: -1.5707963267948966 rad - pos: -59.5,-19.5 + - rot: 1.5707963267948966 rad + pos: -31.5,-84.5 parent: 6 type: Transform -- uid: 5576 - type: TableReinforced +- uid: 5675 + type: Grille components: - - rot: -1.5707963267948966 rad - pos: -59.5,-18.5 + - rot: 1.5707963267948966 rad + pos: -30.5,-84.5 parent: 6 type: Transform -- uid: 5577 - type: CrateEngineeringCableBulk +- uid: 5676 + type: Grille components: - - pos: -62.5,-18.5 + - rot: 1.5707963267948966 rad + pos: -29.5,-84.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5578 - type: OxygenCanister +- uid: 5677 + type: Grille components: - - pos: -62.5,-19.5 + - rot: 1.5707963267948966 rad + pos: -27.5,-84.5 parent: 6 type: Transform -- uid: 5579 - type: NitrogenCanister +- uid: 5678 + type: Grille components: - - pos: -62.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -26.5,-84.5 parent: 6 type: Transform -- uid: 5580 - type: ChairOfficeDark +- uid: 5679 + type: Grille components: - rot: 1.5707963267948966 rad - pos: -60.5,-19.5 + pos: -26.5,-86.5 parent: 6 type: Transform -- uid: 5581 - type: PowerCellRecharger +- uid: 5680 + type: Grille components: - rot: 1.5707963267948966 rad - pos: -59.5,-18.5 + pos: -25.5,-86.5 parent: 6 type: Transform -- uid: 5582 - type: AirlockSecurityGlassLocked +- uid: 5681 + type: Grille components: - - pos: -49.5,-46.5 + - rot: 1.5707963267948966 rad + pos: -24.5,-86.5 parent: 6 type: Transform -- uid: 5583 +- uid: 5682 type: Grille components: - - pos: -48.5,-46.5 + - rot: 1.5707963267948966 rad + pos: -23.5,-86.5 parent: 6 type: Transform -- uid: 5584 - type: TableGlass +- uid: 5683 + type: Grille components: - - pos: 14.5,-42.5 + - rot: 1.5707963267948966 rad + pos: -22.5,-86.5 parent: 6 type: Transform -- uid: 5585 - type: TableGlass +- uid: 5684 + type: Grille components: - - pos: 13.5,-42.5 + - rot: 1.5707963267948966 rad + pos: -21.5,-86.5 parent: 6 type: Transform -- uid: 5586 - type: TableGlass +- uid: 5685 + type: Grille components: - - pos: 12.5,-42.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-85.5 parent: 6 type: Transform -- uid: 5587 - type: TableGlass +- uid: 5686 + type: Grille components: - - pos: 11.5,-42.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-84.5 parent: 6 type: Transform -- uid: 5588 - type: VendingMachineCargoDrobe +- uid: 5687 + type: Grille components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,-41.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-83.5 parent: 6 type: Transform -- uid: 5589 - type: CarpetBlue +- uid: 5688 + type: Grille components: - - pos: -8.5,-31.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-82.5 parent: 6 type: Transform -- uid: 5590 - type: CarpetGreen +- uid: 5689 + type: Grille components: - - pos: -5.5,-31.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-81.5 parent: 6 type: Transform -- uid: 5591 - type: ClothingBeltUtilityFilled +- uid: 5690 + type: Grille components: - - pos: 13.270581,-42.52453 + - rot: 1.5707963267948966 rad + pos: -20.5,-80.5 parent: 6 type: Transform -- uid: 5592 - type: SheetSteel +- uid: 5691 + type: Grille components: - - pos: 14.187247,-42.253696 + - rot: 1.5707963267948966 rad + pos: -20.5,-79.5 parent: 6 type: Transform -- uid: 5593 - type: SheetGlass +- uid: 5692 + type: GrilleBroken components: - - pos: 14.5244465,-42.262287 + - rot: 1.5707963267948966 rad + pos: 29.5,-27.5 parent: 6 type: Transform -- uid: 5594 - type: SheetPlastic +- uid: 5693 + type: GrilleBroken components: - - pos: 13.978914,-42.316196 + - rot: -1.5707963267948966 rad + pos: 35.5,-27.5 parent: 6 type: Transform -- uid: 5595 - type: BannerCargo +- uid: 5694 + type: GrilleBroken components: - - pos: 11.5,-41.5 + - rot: 1.5707963267948966 rad + pos: 36.5,-27.5 parent: 6 type: Transform -- uid: 5596 - type: Rack +- uid: 5695 + type: GrilleBroken components: - - pos: 16.5,-38.5 + - rot: -1.5707963267948966 rad + pos: 38.5,-27.5 parent: 6 type: Transform -- uid: 5597 - type: ShuttersNormal +- uid: 5696 + type: GrilleBroken components: - - pos: 18.5,-39.5 + - rot: -1.5707963267948966 rad + pos: 42.5,-27.5 parent: 6 type: Transform - - SecondsUntilStateChange: -114416.125 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5599 - type: SignalReceiver -- uid: 5598 - type: ShuttersNormal +- uid: 5697 + type: GrilleBroken components: - - pos: 17.5,-39.5 + - rot: -1.5707963267948966 rad + pos: 45.5,-27.5 parent: 6 type: Transform - - SecondsUntilStateChange: -114416.125 - state: Opening - type: Door - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5599 - type: SignalReceiver -- uid: 5599 - type: SignalButton +- uid: 5698 + type: GrilleBroken components: - rot: 3.141592653589793 rad - pos: 19.5,-39.5 + pos: 46.5,-26.5 parent: 6 type: Transform - - state: True - type: SignalSwitch - - outputs: - Pressed: - - port: Toggle - uid: 5597 - - port: Toggle - uid: 5598 - type: SignalTransmitter - - type: ItemCooldown -- uid: 5600 - type: SignalButton +- uid: 5699 + type: GrilleBroken components: - rot: -1.5707963267948966 rad - pos: 20.217419,-36.337383 + pos: 46.5,-20.5 parent: 6 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1267 - - port: Toggle - uid: 1264 - type: SignalTransmitter -- uid: 5601 - type: SignalButton +- uid: 5700 + type: GrilleBroken components: - - rot: -1.5707963267948966 rad - pos: 20.217419,-36.635395 + - pos: 46.5,-18.5 parent: 6 type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1266 - - port: Toggle - uid: 1265 - type: SignalTransmitter -- uid: 5602 - type: PlasticFlapsAirtightClear +- uid: 5701 + type: GrilleBroken components: - - pos: 23.5,-38.5 + - rot: 3.141592653589793 rad + pos: 46.5,-18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics -- uid: 5603 - type: PlasticFlapsAirtightClear +- uid: 5702 + type: GrilleBroken components: - - pos: 20.5,-38.5 + - pos: 46.5,-16.5 parent: 6 type: Transform - - bodyType: Static - type: Physics -- uid: 5604 - type: PlasticFlapsAirtightClear +- uid: 5703 + type: Grille components: - - pos: 20.5,-34.5 + - pos: 46.5,-17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics -- uid: 5605 - type: PlasticFlapsAirtightClear +- uid: 5704 + type: Grille components: - - pos: 23.5,-34.5 + - pos: 46.5,-19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics -- uid: 5606 - type: AtmosDeviceFanTiny +- uid: 5705 + type: Grille components: - - pos: 23.5,-35.5 + - pos: 46.5,-21.5 parent: 6 type: Transform -- uid: 5607 - type: AtmosDeviceFanTiny +- uid: 5706 + type: Grille components: - - pos: 23.5,-37.5 + - pos: 46.5,-22.5 parent: 6 type: Transform -- uid: 5608 - type: WindoorSecureCargoLocked +- uid: 5707 + type: Grille components: - - rot: 1.5707963267948966 rad - pos: 10.5,-36.5 + - pos: 46.5,-23.5 parent: 6 type: Transform -- uid: 5609 - type: WindoorSecureCargoLocked +- uid: 5708 + type: Grille components: - - rot: 1.5707963267948966 rad - pos: 10.5,-35.5 + - pos: 46.5,-24.5 parent: 6 type: Transform -- uid: 5610 - type: AirlockChiefMedicalOfficerGlassLocked +- uid: 5709 + type: Grille components: - - pos: -38.5,-19.5 + - pos: 46.5,-25.5 parent: 6 type: Transform -- uid: 5611 - type: AirlockChiefEngineerGlassLocked +- uid: 5710 + type: Grille components: - - pos: -23.5,-5.5 + - pos: 44.5,-27.5 parent: 6 type: Transform -- uid: 5612 - type: TableReinforced +- uid: 5711 + type: Grille components: - - pos: 14.5,-29.5 + - pos: 43.5,-27.5 parent: 6 type: Transform -- uid: 5613 - type: TableReinforced +- uid: 5712 + type: Grille components: - - pos: 15.5,-29.5 + - pos: 41.5,-27.5 parent: 6 type: Transform -- uid: 5614 - type: TableReinforced +- uid: 5713 + type: Grille components: - - pos: 16.5,-29.5 + - pos: 40.5,-27.5 parent: 6 type: Transform -- uid: 5615 - type: TableReinforced +- uid: 5714 + type: Grille components: - - pos: 17.5,-29.5 + - pos: 39.5,-27.5 parent: 6 type: Transform -- uid: 5616 - type: TableReinforced +- uid: 5715 + type: Grille components: - - pos: 14.5,-28.5 + - pos: 37.5,-27.5 parent: 6 type: Transform -- uid: 5617 - type: TubaInstrument +- uid: 5716 + type: Grille components: - - pos: 17.5,-26.5 + - pos: 34.5,-27.5 parent: 6 type: Transform -- uid: 5618 - type: LauncherCreamPie +- uid: 5717 + type: Grille components: - - pos: 17.501255,-29.56451 + - pos: 33.5,-27.5 parent: 6 type: Transform -- uid: 5619 - type: FoodPieBananaCream +- uid: 5718 + type: Grille components: - - pos: 17.430262,-29.15297 + - pos: 32.5,-27.5 parent: 6 type: Transform -- uid: 5620 - type: FoodPieBananaCream +- uid: 5719 + type: Grille components: - - pos: 17.302473,-29.29488 + - pos: 31.5,-27.5 parent: 6 type: Transform -- uid: 5621 - type: FoodPieBananaCream +- uid: 5720 + type: Grille components: - - pos: 17.146286,-29.465174 + - pos: 30.5,-27.5 parent: 6 type: Transform -- uid: 5622 - type: FoodPieBananaCream +- uid: 5721 + type: AsteroidRock components: - - pos: 17.018497,-29.195543 + - pos: 27.5,12.5 parent: 6 type: Transform -- uid: 5623 - type: LampBanana +- uid: 5722 + type: AsteroidRock components: - - pos: 16.620932,-29.096205 + - pos: 26.5,12.5 parent: 6 type: Transform -- uid: 5624 - type: FoodBanana +- uid: 5723 + type: AsteroidRock components: - - pos: 16.40795,-29.521938 + - pos: 28.5,11.5 parent: 6 type: Transform -- uid: 5625 - type: FoodBanana +- uid: 5724 + type: CableHV components: - - pos: 16.26596,-29.29488 + - pos: -77.5,-26.5 parent: 6 type: Transform -- uid: 5626 - type: FoodBanana +- uid: 5725 + type: ClothingUniformJumpskirtJanimaid components: - - pos: 15.996186,-29.56451 + - pos: -21.58178,-8.3689785 parent: 6 type: Transform -- uid: 5627 - type: ClothingHeadHatMimesoftFlipped +- uid: 5726 + type: FoodSoupBungo components: - - pos: 15.754807,-29.252306 + - pos: 25.439394,11.475561 parent: 6 type: Transform -- uid: 5628 - type: FoodTartMime +- uid: 5727 + type: Barricade components: - - pos: 15.300446,-29.40841 + - pos: 26.5,7.5 parent: 6 type: Transform -- uid: 5629 - type: DrinkBottleOfNothingFull +- uid: 5728 + type: AsteroidRock components: - - pos: 14.945476,-29.252306 + - pos: 25.5,12.5 parent: 6 type: Transform -- uid: 5630 - type: DawInstrumentMachineCircuitboard +- uid: 5729 + type: FoodBoxPizzaFilled components: - - pos: 14.519512,-28.344076 + - pos: 27.494638,-4.2537265 parent: 6 type: Transform -- uid: 5631 - type: RandomInstruments +- uid: 5730 + type: TableReinforced components: - - pos: 14.5,-29.5 + - pos: 27.5,-4.5 parent: 6 type: Transform -- uid: 5632 - type: ClothingShoesBootsPerformer +- uid: 5731 + type: Stool components: - - pos: 14.32073,-28.784 + - rot: 3.141592653589793 rad + pos: 28.5,-5.5 parent: 6 type: Transform -- uid: 5633 - type: ClothingUniformJumpskirtPerformer +- uid: 5732 + type: Stool components: - - pos: 14.562109,-28.727236 + - rot: 3.141592653589793 rad + pos: 26.5,-5.5 parent: 6 type: Transform -- uid: 5634 - type: Paper +- uid: 5733 + type: Stool components: - - pos: 15.201054,-29.238115 + - rot: 3.141592653589793 rad + pos: 28.5,-7.5 parent: 6 type: Transform -- uid: 5635 - type: Paper +- uid: 5734 + type: Stool components: - - pos: 15.357241,-29.351645 + - rot: 3.141592653589793 rad + pos: 26.5,-7.5 parent: 6 type: Transform -- uid: 5636 - type: VendingMachineTheater +- uid: 5735 + type: Grille components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,-27.5 + - pos: 29.5,-8.5 parent: 6 type: Transform -- uid: 5637 - type: AirlockMaintTheatreLocked +- uid: 5736 + type: Grille components: - - pos: 16.5,-25.5 + - pos: 29.5,-6.5 parent: 6 type: Transform -- uid: 5638 - type: AirlockTheatreLocked +- uid: 5737 + type: Grille components: - - pos: 13.5,-26.5 + - pos: 29.5,-4.5 parent: 6 type: Transform -- uid: 5639 - type: ComputerCargoOrders +- uid: 5738 + type: PowerCellRecharger components: - - pos: 10.5,-31.5 + - pos: 38.5,4.5 parent: 6 type: Transform -- uid: 5640 - type: HandheldCrewMonitor +- uid: 5739 + type: MaintenanceFluffSpawner components: - - pos: -37.635654,-18.448305 + - pos: 35.5,4.5 parent: 6 type: Transform -- uid: 5641 - type: DrinkDoctorsDelightGlass +- uid: 5740 + type: RandomInstruments components: - - pos: -37.13765,-18.30765 + - pos: 35.5,-1.5 parent: 6 type: Transform -- uid: 5642 - type: StasisBedMachineCircuitboard +- uid: 5741 + type: RandomSpawner components: - - pos: -36.498703,-18.43537 + - pos: 38.5,-0.5 parent: 6 type: Transform -- uid: 5643 - type: ClothingNeckStethoscope +- uid: 5742 + type: RandomSpawner components: - - pos: -36.953064,-18.32184 + - pos: 35.5,1.5 parent: 6 type: Transform -- uid: 5644 - type: filingCabinet +- uid: 5743 + type: RandomSpawner components: - - pos: -39.5,-18.5 + - pos: 35.5,6.5 parent: 6 type: Transform -- uid: 5645 - type: ResearchAndDevelopmentServer +- uid: 5744 + type: ToolboxEmergencyFilled components: - - pos: -9.5,-76.5 + - pos: 38.494343,9.651789 parent: 6 type: Transform -- uid: 5646 - type: SpawnVendingMachineRestockFoodDrink +- uid: 5745 + type: AirCanister components: - - pos: 10.5,12.5 + - pos: 35.5,9.5 parent: 6 type: Transform -- uid: 5647 - type: TablePlasmaGlass +- uid: 5746 + type: Rack components: - - pos: -4.5,-78.5 + - pos: 38.5,9.5 parent: 6 type: Transform -- uid: 5648 - type: ComputerFrame +- uid: 5747 + type: NitrogenTankFilled components: - - rot: 3.141592653589793 rad - pos: -6.5,-78.5 + - pos: 39.64937,-2.481242 parent: 6 type: Transform -- uid: 5649 - type: ComputerAnalysisConsole +- uid: 5748 + type: NitrogenTankFilled components: - - rot: 3.141592653589793 rad - pos: -2.5,-78.5 + - pos: 39.351192,-2.3393314 parent: 6 type: Transform -- uid: 5650 - type: MachineArtifactAnalyzer +- uid: 5749 + type: ToolboxEmergencyFilled components: - - pos: -2.5,-80.5 + - pos: 38.50854,-1.3842467 parent: 6 type: Transform -- uid: 5651 - type: Grille +- uid: 5750 + type: CrowbarRed components: - - pos: 7.5,-14.5 + - pos: 38.66965,-1.6013935 parent: 6 type: Transform -- uid: 5652 - type: GrilleBroken +- uid: 5751 + type: ClothingMaskBreath components: - - pos: -20.5,-78.5 + - pos: 39.663567,-4.468726 parent: 6 type: Transform -- uid: 5653 - type: GrilleBroken +- uid: 5752 + type: ClothingMaskBreath components: - - rot: -1.5707963267948966 rad - pos: -20.5,-86.5 + - pos: 39.464783,-4.2984324 parent: 6 type: Transform -- uid: 5654 - type: GrilleBroken +- uid: 5753 + type: ExtendedEmergencyOxygenTankFilled components: - - rot: 1.5707963267948966 rad - pos: -26.5,-85.5 + - pos: 39.50738,-4.5396814 parent: 6 type: Transform -- uid: 5655 - type: GrilleBroken +- uid: 5754 + type: ExtendedEmergencyOxygenTankFilled components: - - rot: 1.5707963267948966 rad - pos: -28.5,-84.5 + - pos: 39.308598,-4.355197 parent: 6 type: Transform -- uid: 5656 - type: GrilleBroken +- uid: 5755 + type: Rack components: - - rot: -1.5707963267948966 rad - pos: -33.5,-84.5 + - pos: 39.5,-4.5 parent: 6 type: Transform -- uid: 5657 - type: GrilleBroken +- uid: 5756 + type: Rack components: - - rot: 3.141592653589793 rad - pos: -34.5,-79.5 + - pos: 39.5,-2.5 parent: 6 type: Transform -- uid: 5658 - type: GrilleBroken +- uid: 5757 + type: VendingMachineClothing components: - - rot: 3.141592653589793 rad - pos: -34.5,-77.5 + - flags: SessionSpecific + type: MetaData + - pos: 39.5,7.5 parent: 6 type: Transform -- uid: 5659 - type: GrilleBroken +- uid: 5758 + type: VendingMachineYouTool components: - - pos: -34.5,-73.5 + - flags: SessionSpecific + type: MetaData + - pos: 39.5,5.5 parent: 6 type: Transform -- uid: 5660 - type: GrilleBroken +- uid: 5759 + type: ClosetEmergencyFilledRandom components: - - rot: 3.141592653589793 rad - pos: -34.5,-69.5 + - pos: 34.5,5.5 parent: 6 type: Transform -- uid: 5661 - type: Grille +- uid: 5760 + type: ClosetEmergencyFilledRandom components: - - rot: 1.5707963267948966 rad - pos: -34.5,-67.5 + - pos: 34.5,-2.5 parent: 6 type: Transform -- uid: 5662 - type: Grille +- uid: 5761 + type: ClosetFireFilled components: - - rot: 1.5707963267948966 rad - pos: -34.5,-71.5 + - pos: 34.5,-4.5 parent: 6 type: Transform -- uid: 5663 - type: Grille +- uid: 5762 + type: ClosetFireFilled components: - - rot: 1.5707963267948966 rad - pos: -34.5,-72.5 + - pos: 34.5,7.5 parent: 6 type: Transform -- uid: 5664 - type: Grille +- uid: 5763 + type: TableReinforced components: - - rot: 1.5707963267948966 rad - pos: -34.5,-74.5 + - pos: 38.5,4.5 parent: 6 type: Transform -- uid: 5665 - type: Grille +- uid: 5764 + type: TableReinforced components: - - rot: 1.5707963267948966 rad - pos: -34.5,-75.5 + - pos: 35.5,4.5 parent: 6 type: Transform -- uid: 5666 - type: Grille +- uid: 5765 + type: TableReinforced components: - rot: 1.5707963267948966 rad - pos: -34.5,-76.5 + pos: 38.5,-1.5 parent: 6 type: Transform -- uid: 5667 - type: Grille +- uid: 5766 + type: TableReinforced components: - rot: 1.5707963267948966 rad - pos: -34.5,-78.5 + pos: 35.5,-1.5 parent: 6 type: Transform -- uid: 5668 - type: Grille +- uid: 5767 + type: Chair components: - rot: 1.5707963267948966 rad - pos: -34.5,-80.5 + pos: 35.5,-0.5 parent: 6 type: Transform -- uid: 5669 - type: Grille +- uid: 5768 + type: Chair components: - rot: 1.5707963267948966 rad - pos: -34.5,-81.5 + pos: 35.5,3.5 parent: 6 type: Transform -- uid: 5670 - type: Grille +- uid: 5769 + type: Chair components: - - rot: 1.5707963267948966 rad - pos: -34.5,-82.5 + - rot: -1.5707963267948966 rad + pos: 38.5,-0.5 parent: 6 type: Transform -- uid: 5671 - type: Grille +- uid: 5770 + type: Chair components: - - rot: 1.5707963267948966 rad - pos: -34.5,-83.5 + - rot: -1.5707963267948966 rad + pos: 38.5,3.5 parent: 6 type: Transform -- uid: 5672 - type: Grille +- uid: 5771 + type: Chair components: - - rot: 1.5707963267948966 rad - pos: -34.5,-84.5 + - rot: -1.5707963267948966 rad + pos: 38.5,0.5 parent: 6 type: Transform -- uid: 5673 - type: Grille +- uid: 5772 + type: Chair components: - - rot: 1.5707963267948966 rad - pos: -32.5,-84.5 + - rot: -1.5707963267948966 rad + pos: 38.5,1.5 parent: 6 type: Transform -- uid: 5674 - type: Grille +- uid: 5773 + type: Chair components: - - rot: 1.5707963267948966 rad - pos: -31.5,-84.5 + - rot: -1.5707963267948966 rad + pos: 38.5,2.5 parent: 6 - type: Transform -- uid: 5675 - type: Grille + type: Transform +- uid: 5774 + type: Chair components: - rot: 1.5707963267948966 rad - pos: -30.5,-84.5 + pos: 35.5,0.5 parent: 6 type: Transform -- uid: 5676 - type: Grille +- uid: 5775 + type: Chair components: - rot: 1.5707963267948966 rad - pos: -29.5,-84.5 + pos: 35.5,1.5 parent: 6 type: Transform -- uid: 5677 - type: Grille +- uid: 5776 + type: Chair components: - rot: 1.5707963267948966 rad - pos: -27.5,-84.5 + pos: 35.5,2.5 parent: 6 type: Transform -- uid: 5678 - type: Grille +- uid: 5777 + type: Thruster components: - - rot: 1.5707963267948966 rad - pos: -26.5,-84.5 + - pos: 39.5,11.5 parent: 6 type: Transform -- uid: 5679 - type: Grille +- uid: 5778 + type: Thruster components: - - rot: 1.5707963267948966 rad - pos: -26.5,-86.5 + - pos: 34.5,11.5 parent: 6 type: Transform -- uid: 5680 - type: Grille +- uid: 5779 + type: RandomFoodBakedSingle components: - - rot: 1.5707963267948966 rad - pos: -25.5,-86.5 + - pos: 38.5,-5.5 parent: 6 type: Transform -- uid: 5681 - type: Grille +- uid: 5780 + type: RandomDrinkGlass components: - - rot: 1.5707963267948966 rad - pos: -24.5,-86.5 + - pos: 35.5,-5.5 parent: 6 type: Transform -- uid: 5682 - type: Grille +- uid: 5781 + type: TableReinforced components: - - rot: 1.5707963267948966 rad - pos: -23.5,-86.5 + - pos: 38.5,-5.5 parent: 6 type: Transform -- uid: 5683 - type: Grille +- uid: 5782 + type: TableReinforced components: - - rot: 1.5707963267948966 rad - pos: -22.5,-86.5 + - pos: 35.5,-5.5 parent: 6 type: Transform -- uid: 5684 - type: Grille +- uid: 5783 + type: ChairPilotSeat components: - - rot: 1.5707963267948966 rad - pos: -21.5,-86.5 + - pos: 37.5,-5.5 parent: 6 type: Transform -- uid: 5685 - type: Grille +- uid: 5784 + type: ChairPilotSeat components: - - rot: 1.5707963267948966 rad - pos: -20.5,-85.5 + - pos: 36.5,-5.5 parent: 6 type: Transform -- uid: 5686 - type: Grille +- uid: 5785 + type: WindoorCommandLocked components: - - rot: 1.5707963267948966 rad - pos: -20.5,-84.5 + - rot: 3.141592653589793 rad + pos: 37.5,-5.5 parent: 6 type: Transform -- uid: 5687 - type: Grille +- uid: 5786 + type: WindoorCommandLocked components: - - rot: 1.5707963267948966 rad - pos: -20.5,-83.5 + - rot: 3.141592653589793 rad + pos: 36.5,-5.5 parent: 6 type: Transform -- uid: 5688 - type: Grille +- uid: 5787 + type: CableApcExtension components: - - rot: 1.5707963267948966 rad - pos: -20.5,-82.5 + - pos: 36.5,9.5 parent: 6 type: Transform -- uid: 5689 - type: Grille +- uid: 5788 + type: CableApcExtension components: - - rot: 1.5707963267948966 rad - pos: -20.5,-81.5 + - pos: 37.5,9.5 parent: 6 type: Transform -- uid: 5690 - type: Grille +- uid: 5789 + type: CableApcExtension components: - - rot: 1.5707963267948966 rad - pos: -20.5,-80.5 + - pos: 38.5,9.5 parent: 6 type: Transform -- uid: 5691 - type: Grille +- uid: 5790 + type: CableApcExtension components: - - rot: 1.5707963267948966 rad - pos: -20.5,-79.5 + - pos: 38.5,8.5 parent: 6 type: Transform -- uid: 5692 - type: GrilleBroken +- uid: 5791 + type: CableApcExtension components: - - rot: 1.5707963267948966 rad - pos: 29.5,-27.5 + - pos: 38.5,7.5 parent: 6 type: Transform -- uid: 5693 - type: GrilleBroken +- uid: 5792 + type: CableApcExtension components: - - rot: -1.5707963267948966 rad - pos: 35.5,-27.5 + - pos: 38.5,6.5 parent: 6 type: Transform -- uid: 5694 - type: GrilleBroken +- uid: 5793 + type: CableApcExtension components: - - rot: 1.5707963267948966 rad - pos: 36.5,-27.5 + - pos: 38.5,5.5 parent: 6 type: Transform -- uid: 5695 - type: GrilleBroken +- uid: 5794 + type: CableApcExtension components: - - rot: -1.5707963267948966 rad - pos: 38.5,-27.5 + - pos: 38.5,4.5 parent: 6 type: Transform -- uid: 5696 - type: GrilleBroken +- uid: 5795 + type: CableApcExtension components: - - rot: -1.5707963267948966 rad - pos: 42.5,-27.5 + - pos: 38.5,3.5 parent: 6 type: Transform -- uid: 5697 - type: GrilleBroken +- uid: 5796 + type: CableApcExtension components: - - rot: -1.5707963267948966 rad - pos: 45.5,-27.5 + - pos: 38.5,2.5 parent: 6 type: Transform -- uid: 5698 - type: GrilleBroken +- uid: 5797 + type: CableApcExtension components: - - rot: 3.141592653589793 rad - pos: 46.5,-26.5 + - pos: 38.5,1.5 parent: 6 type: Transform -- uid: 5699 - type: GrilleBroken +- uid: 5798 + type: CableApcExtension components: - - rot: -1.5707963267948966 rad - pos: 46.5,-20.5 + - pos: 38.5,0.5 parent: 6 type: Transform -- uid: 5700 - type: GrilleBroken +- uid: 5799 + type: CableApcExtension components: - - pos: 46.5,-18.5 + - pos: 38.5,-0.5 parent: 6 type: Transform -- uid: 5701 - type: GrilleBroken +- uid: 5800 + type: CableApcExtension components: - - rot: 3.141592653589793 rad - pos: 46.5,-18.5 + - pos: 38.5,-1.5 parent: 6 type: Transform -- uid: 5702 - type: GrilleBroken +- uid: 5801 + type: CableApcExtension components: - - pos: 46.5,-16.5 + - pos: 38.5,-2.5 parent: 6 type: Transform -- uid: 5703 - type: Grille +- uid: 5802 + type: CableApcExtension components: - - pos: 46.5,-17.5 + - pos: 38.5,-3.5 parent: 6 type: Transform -- uid: 5704 - type: Grille +- uid: 5803 + type: CableApcExtension components: - - pos: 46.5,-19.5 + - pos: 38.5,-4.5 parent: 6 type: Transform -- uid: 5705 - type: Grille +- uid: 5804 + type: CableApcExtension components: - - pos: 46.5,-21.5 + - pos: 38.5,-5.5 parent: 6 type: Transform -- uid: 5706 - type: Grille +- uid: 5805 + type: CableApcExtension components: - - pos: 46.5,-22.5 + - pos: 37.5,-5.5 parent: 6 type: Transform -- uid: 5707 - type: Grille +- uid: 5806 + type: CableApcExtension components: - - pos: 46.5,-23.5 + - pos: 36.5,-5.5 parent: 6 type: Transform -- uid: 5708 - type: Grille +- uid: 5807 + type: CableApcExtension components: - - pos: 46.5,-24.5 + - pos: 35.5,-5.5 parent: 6 type: Transform -- uid: 5709 - type: Grille +- uid: 5808 + type: CableApcExtension components: - - pos: 46.5,-25.5 + - pos: 35.5,-4.5 parent: 6 type: Transform -- uid: 5710 - type: Grille +- uid: 5809 + type: CableApcExtension components: - - pos: 44.5,-27.5 + - pos: 35.5,-3.5 parent: 6 type: Transform -- uid: 5711 - type: Grille +- uid: 5810 + type: CableApcExtension components: - - pos: 43.5,-27.5 + - pos: 35.5,-2.5 parent: 6 type: Transform -- uid: 5712 - type: Grille +- uid: 5811 + type: CableApcExtension components: - - pos: 41.5,-27.5 + - pos: 35.5,-1.5 parent: 6 type: Transform -- uid: 5713 - type: Grille +- uid: 5812 + type: CableApcExtension components: - - pos: 40.5,-27.5 + - pos: 35.5,-0.5 parent: 6 type: Transform -- uid: 5714 - type: Grille +- uid: 5813 + type: CableApcExtension components: - - pos: 39.5,-27.5 + - pos: 35.5,0.5 parent: 6 type: Transform -- uid: 5715 - type: Grille +- uid: 5814 + type: CableApcExtension components: - - pos: 37.5,-27.5 + - pos: 35.5,1.5 parent: 6 type: Transform -- uid: 5716 - type: Grille +- uid: 5815 + type: CableApcExtension components: - - pos: 34.5,-27.5 + - pos: 35.5,2.5 parent: 6 type: Transform -- uid: 5717 - type: Grille +- uid: 5816 + type: CableApcExtension components: - - pos: 33.5,-27.5 + - pos: 35.5,3.5 parent: 6 type: Transform -- uid: 5718 - type: Grille +- uid: 5817 + type: CableApcExtension components: - - pos: 32.5,-27.5 + - pos: 35.5,4.5 parent: 6 type: Transform -- uid: 5719 - type: Grille +- uid: 5818 + type: CableApcExtension components: - - pos: 31.5,-27.5 + - pos: 35.5,5.5 parent: 6 type: Transform -- uid: 5720 - type: Grille +- uid: 5819 + type: CableApcExtension components: - - pos: 30.5,-27.5 + - pos: 35.5,6.5 parent: 6 type: Transform -- uid: 5721 - type: AsteroidRock +- uid: 5820 + type: CableApcExtension components: - - pos: 27.5,12.5 + - pos: 35.5,7.5 parent: 6 type: Transform -- uid: 5722 - type: AsteroidRock +- uid: 5821 + type: CableApcExtension components: - - pos: 26.5,12.5 + - pos: 35.5,8.5 parent: 6 type: Transform -- uid: 5723 - type: AsteroidRock +- uid: 5822 + type: CableApcExtension components: - - pos: 28.5,11.5 + - pos: 35.5,9.5 parent: 6 type: Transform -- uid: 5724 - type: CableHV +- uid: 5823 + type: CableApcExtension components: - - pos: -77.5,-26.5 + - pos: 35.5,10.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 5725 - type: ClothingUniformJumpskirtJanimaid +- uid: 5824 + type: CableMV components: - - pos: -21.58178,-8.3689785 + - pos: 35.5,10.5 parent: 6 type: Transform -- uid: 5726 - type: FoodSoupBungo +- uid: 5825 + type: CableMV components: - - pos: 25.439394,11.475561 + - pos: 36.5,10.5 parent: 6 type: Transform -- uid: 5727 - type: Barricade +- uid: 5826 + type: APCBasic components: - - pos: 26.5,7.5 + - pos: 35.5,10.5 parent: 6 type: Transform -- uid: 5728 - type: AsteroidRock +- uid: 5827 + type: CableHV components: - - pos: 25.5,12.5 + - pos: 36.5,10.5 parent: 6 type: Transform -- uid: 5729 - type: FoodBoxPizzaFilled +- uid: 5828 + type: CableHV components: - - pos: 27.494638,-4.2537265 + - pos: 37.5,10.5 parent: 6 type: Transform -- uid: 5730 - type: TableReinforced +- uid: 5829 + type: SubstationBasic components: - - pos: 27.5,-4.5 + - pos: 36.5,10.5 parent: 6 type: Transform -- uid: 5731 - type: Stool +- uid: 5830 + type: GeneratorPlasma components: - - rot: 3.141592653589793 rad - pos: 28.5,-5.5 + - pos: 37.5,10.5 parent: 6 type: Transform -- uid: 5732 - type: Stool +- uid: 5831 + type: WallShuttle components: - - rot: 3.141592653589793 rad - pos: 26.5,-5.5 + - pos: 35.5,8.5 parent: 6 type: Transform -- uid: 5733 - type: Stool +- uid: 5832 + type: WallShuttle components: - - rot: 3.141592653589793 rad - pos: 28.5,-7.5 + - pos: 38.5,8.5 parent: 6 type: Transform -- uid: 5734 - type: Stool +- uid: 5834 + type: WindowReinforcedDirectional components: - rot: 3.141592653589793 rad - pos: 26.5,-7.5 + pos: 38.5,-5.5 parent: 6 type: Transform -- uid: 5735 - type: Grille +- uid: 5835 + type: WindowReinforcedDirectional components: - - pos: 29.5,-8.5 + - rot: 3.141592653589793 rad + pos: 35.5,-5.5 parent: 6 type: Transform -- uid: 5736 - type: Grille +- uid: 5836 + type: ComputerBroken components: - - pos: 29.5,-6.5 + - rot: 3.141592653589793 rad + pos: 37.5,-6.5 parent: 6 type: Transform -- uid: 5737 - type: Grille +- uid: 5837 + type: ComputerFrame components: - - pos: 29.5,-4.5 + - rot: 3.141592653589793 rad + pos: 36.5,-6.5 parent: 6 type: Transform - uid: 5838 @@ -44793,28 +58839,8 @@ entities: - pos: -37.5,-27.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - 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: - 3188 type: ContainerContainer @@ -44833,28 +58859,8 @@ entities: - pos: -41.5,-26.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - 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: - 5851 - 5958 @@ -44979,36 +58985,12 @@ entities: - pos: -24.5,-56.5 parent: 6 type: Transform -- uid: 5873 - type: AirlockChapelLocked - components: - - pos: -30.5,-47.5 - parent: 6 - type: Transform - uid: 5874 type: TableWood components: - pos: -30.5,-50.5 parent: 6 type: Transform -- uid: 5875 - type: AirlockChapelLocked - components: - - pos: -28.5,-49.5 - parent: 6 - type: Transform -- uid: 5876 - type: AirlockChapelLocked - components: - - pos: -30.5,-55.5 - parent: 6 - type: Transform -- uid: 5877 - type: AirlockMaintChapelLocked - components: - - pos: -31.5,-57.5 - parent: 6 - type: Transform - uid: 5878 type: Bible components: @@ -45132,8 +59114,6 @@ entities: pos: -0.5,-46.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5897 type: ChairFolding components: @@ -45220,24 +59200,6 @@ entities: pos: 13.5,17.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 5911 type: BedsheetYellow components: @@ -45474,8 +59436,6 @@ entities: pos: -4.5,-74.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5949 type: PaperOffice components: @@ -45649,8 +59609,6 @@ entities: pos: -27.5,-48.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5978 type: Grille components: @@ -45782,8 +59740,6 @@ entities: - pos: 11.5,23.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 5999 type: WindowTintedDirectional components: @@ -45830,8 +59786,6 @@ entities: pos: 2.5,-25.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6006 type: TableWood components: @@ -45858,8 +59812,6 @@ entities: pos: 1.5,-26.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6010 type: VendingMachineCigs components: @@ -45918,16 +59870,12 @@ entities: - pos: 14.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6019 type: Chair components: - pos: 15.5,20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6020 type: KnifePlastic components: @@ -46118,8 +60066,6 @@ entities: - pos: 16.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6048 type: CableApcExtension components: @@ -46138,80 +60084,60 @@ entities: - pos: 13.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6051 type: CableApcExtension components: - pos: 12.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6052 type: CableApcExtension components: - pos: 11.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6053 type: CableApcExtension components: - pos: 10.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6054 type: CableApcExtension components: - pos: 9.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6055 type: CableApcExtension components: - pos: 9.5,18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6056 type: CableApcExtension components: - pos: 9.5,19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6057 type: CableApcExtension components: - pos: 9.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6058 type: CableApcExtension components: - pos: 9.5,21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6059 type: CableApcExtension components: - pos: 9.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6060 type: CableApcExtension components: @@ -46242,120 +60168,90 @@ entities: - pos: 14.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6065 type: CableApcExtension components: - pos: 15.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6066 type: CableApcExtension components: - pos: 16.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6067 type: CableApcExtension components: - pos: 17.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6068 type: CableApcExtension components: - pos: 18.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6069 type: CableApcExtension components: - pos: 19.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6070 type: CableApcExtension components: - pos: 20.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6071 type: CableApcExtension components: - pos: 20.5,21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6072 type: CableApcExtension components: - pos: 20.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6073 type: CableApcExtension components: - pos: 20.5,19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6074 type: CableApcExtension components: - pos: 20.5,18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6075 type: CableApcExtension components: - pos: 20.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6076 type: CableApcExtension components: - pos: 19.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6077 type: CableApcExtension components: - pos: 18.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6078 type: CableApcExtension components: - pos: 17.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6079 type: CableApcExtension components: @@ -46380,8 +60276,6 @@ entities: - pos: 13.5,21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6083 type: CableApcExtension components: @@ -46481,550 +60375,408 @@ entities: - pos: 30.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6099 type: CableHV components: - pos: 30.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6100 type: CableHV components: - pos: 30.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6101 type: CableHV components: - pos: 30.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6102 type: CableHV components: - pos: 30.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6103 type: CableHV components: - pos: 30.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6104 type: CableHV components: - pos: 30.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6105 type: CableHV components: - pos: 30.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6106 type: CableHV components: - pos: 32.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6107 type: CableHV components: - pos: 32.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6108 type: CableHV components: - pos: 32.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6109 type: CableHV components: - pos: 32.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6110 type: CableHV components: - pos: 32.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6111 type: CableHV components: - pos: 32.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6112 type: CableHV components: - pos: 32.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6113 type: CableHV components: - pos: 32.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6114 type: CableHV components: - pos: 31.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6115 type: CableHV components: - pos: 34.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6116 type: CableHV components: - pos: 34.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6117 type: CableHV components: - pos: 34.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6118 type: CableHV components: - pos: 34.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6119 type: CableHV components: - pos: 34.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6120 type: CableHV components: - pos: 34.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6121 type: CableHV components: - pos: 34.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6122 type: CableHV components: - pos: 34.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6123 type: CableHV components: - pos: 36.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6124 type: CableHV components: - pos: 36.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6125 type: CableHV components: - pos: 36.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6126 type: CableHV components: - pos: 36.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6127 type: CableHV components: - pos: 36.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6128 type: CableHV components: - pos: 36.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6129 type: CableHV components: - pos: 36.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6130 type: CableHV components: - pos: 36.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6131 type: CableHV components: - pos: 35.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6132 type: CableHV components: - pos: 38.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6133 type: CableHV components: - pos: 38.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6134 type: CableHV components: - pos: 38.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6135 type: CableHV components: - pos: 38.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6136 type: CableHV components: - pos: 38.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6137 type: CableHV components: - pos: 38.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6138 type: CableHV components: - pos: 38.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6139 type: CableHV components: - pos: 38.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6140 type: CableHV components: - pos: 40.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6141 type: CableHV components: - pos: 40.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6142 type: CableHV components: - pos: 40.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6143 type: CableHV components: - pos: 40.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6144 type: CableHV components: - pos: 40.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6145 type: CableHV components: - pos: 40.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6146 type: CableHV components: - pos: 40.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6147 type: CableHV components: - pos: 40.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6148 type: CableHV components: - pos: 39.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6149 type: CableHV components: - pos: 42.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6150 type: CableHV components: - pos: 42.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6151 type: CableHV components: - pos: 42.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6152 type: CableHV components: - pos: 42.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6153 type: CableHV components: - pos: 42.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6154 type: CableHV components: - pos: 42.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6155 type: CableHV components: - pos: 42.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6156 type: CableHV components: - pos: 42.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6157 type: CableHV components: - pos: 44.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6158 type: CableHV components: - pos: 44.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6159 type: CableHV components: - pos: 44.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6160 type: CableHV components: - pos: 44.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6161 type: CableHV components: - pos: 44.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6162 type: CableHV components: - pos: 44.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6163 type: CableHV components: - pos: 44.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6164 type: CableHV components: - pos: 44.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6165 type: CableHV components: - pos: 43.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 6166 - type: AirlockGlass - components: - - pos: -39.5,-13.5 - parent: 6 - type: Transform - uid: 6167 type: Grille components: @@ -47138,8 +60890,6 @@ entities: - pos: -27.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6185 type: VendingMachineChemDrobe components: @@ -47210,18 +60960,6 @@ entities: - pos: -33.368313,-14.301024 parent: 6 type: Transform -- uid: 6196 - type: SMESBasic - components: - - pos: -57.5,-47.5 - parent: 6 - type: Transform -- uid: 6197 - type: CableHV - components: - - pos: -57.5,-47.5 - parent: 6 - type: Transform - uid: 6198 type: TableGlass components: @@ -47299,24 +61037,6 @@ entities: - pos: -40.5,-33.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 6210 type: filingCabinet components: @@ -47342,8 +61062,6 @@ entities: pos: -39.5,-33.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6214 type: Table components: @@ -47388,8 +61106,6 @@ entities: - pos: -39.5,-38.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6221 type: HospitalCurtainsOpen components: @@ -47505,8 +61221,6 @@ entities: pos: -46.5,-39.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6240 type: ClothingHeadHatGreensoftFlipped components: @@ -47575,10 +61289,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 6251 type: GasPipeStraight components: @@ -47587,10 +61297,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 6252 type: GasPipeStraight components: @@ -47599,10 +61305,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 6253 type: GasPipeStraight components: @@ -47611,10 +61313,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 6254 type: GasPipeTJunction components: @@ -47623,8 +61321,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6255 type: GasPipeFourway components: @@ -47633,8 +61329,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6256 type: GasPipeBend components: @@ -47643,8 +61337,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6257 type: GasPipeFourway components: @@ -47653,8 +61345,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6258 type: GasPipeBend components: @@ -47663,8 +61353,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6259 type: GasPipeBend components: @@ -47674,8 +61362,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6260 type: GasVentPump components: @@ -47684,8 +61370,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6261 type: GasPipeBend components: @@ -47695,8 +61379,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6262 type: GasVentScrubber components: @@ -47705,8 +61387,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6263 type: GasPipeStraight components: @@ -47716,8 +61396,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6264 type: GasPipeStraight components: @@ -47727,8 +61405,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6265 type: GasPipeStraight components: @@ -47738,8 +61414,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6266 type: GasPipeStraight components: @@ -47749,8 +61423,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6267 type: GasPipeBend components: @@ -47760,8 +61432,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6268 type: GasPipeStraight components: @@ -47771,8 +61441,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6269 type: GasPipeStraight components: @@ -47782,8 +61450,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6270 type: GasPipeStraight components: @@ -47793,8 +61459,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6271 type: GasPipeStraight components: @@ -47804,8 +61468,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6272 type: GasPipeStraight components: @@ -47815,8 +61477,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6273 type: GasPipeTJunction components: @@ -47825,8 +61485,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6274 type: GasPipeTJunction components: @@ -47836,8 +61494,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6275 type: GasPipeStraight components: @@ -47847,8 +61503,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6276 type: GasPipeStraight components: @@ -47858,8 +61512,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6277 type: GasPipeStraight components: @@ -47869,8 +61521,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6278 type: GasPipeStraight components: @@ -47880,8 +61530,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6279 type: GasPipeStraight components: @@ -47891,8 +61539,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6280 type: GasPipeStraight components: @@ -47902,8 +61548,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6281 type: GasPipeStraight components: @@ -47913,8 +61557,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6282 type: GasPipeStraight components: @@ -47924,8 +61566,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6283 type: GasPipeStraight components: @@ -47935,10 +61575,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 6284 type: GasPipeTJunction components: @@ -47948,10 +61584,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 6285 type: GasPipeStraight components: @@ -47960,8 +61592,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6286 type: GasPipeTJunction components: @@ -47971,8 +61601,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6287 type: GasVentPump components: @@ -47982,8 +61610,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6288 type: GasVentPump components: @@ -47992,8 +61618,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6289 type: Catwalk components: @@ -48069,8 +61693,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6301 type: GasPipeStraight components: @@ -48080,8 +61702,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6302 type: GasPipeStraight components: @@ -48091,8 +61711,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6303 type: GasPipeTJunction components: @@ -48102,8 +61720,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6304 type: GasPipeStraight components: @@ -48113,8 +61729,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6305 type: GasPipeTJunction components: @@ -48124,8 +61738,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6306 type: GasPipeStraight components: @@ -48135,8 +61747,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6307 type: GasPipeStraight components: @@ -48146,8 +61756,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6308 type: GasPipeBend components: @@ -48157,8 +61765,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6309 type: GasPipeStraight components: @@ -48168,8 +61774,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6310 type: GasPipeStraight components: @@ -48179,8 +61783,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6311 type: GasPipeStraight components: @@ -48190,8 +61792,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6312 type: GasPipeStraight components: @@ -48201,8 +61801,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6313 type: GasPipeTJunction components: @@ -48211,8 +61809,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6314 type: GasPipeStraight components: @@ -48222,8 +61818,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6315 type: GasPipeStraight components: @@ -48233,8 +61827,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6316 type: GasPipeTJunction components: @@ -48244,8 +61836,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6317 type: GasPipeStraight components: @@ -48255,8 +61845,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6318 type: GasPipeStraight components: @@ -48266,8 +61854,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6319 type: GasVentPump components: @@ -48276,8 +61862,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6320 type: GasPipeTJunction components: @@ -48286,8 +61870,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6321 type: GasVentScrubber components: @@ -48297,8 +61879,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6322 type: GasVentPump components: @@ -48308,8 +61888,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6323 type: FoodFrozenPopsicleJumbo components: @@ -48364,24 +61942,6 @@ entities: - pos: -1.5,6.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 6329 type: ToolboxMechanicalFilled components: @@ -48442,24 +62002,6 @@ entities: - pos: -7.5,6.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 6339 type: Flash components: @@ -48553,8 +62095,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6354 type: GasPort components: @@ -48564,8 +62104,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6355 type: GasPort components: @@ -48575,8 +62113,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6356 type: GasPort components: @@ -48586,8 +62122,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6357 type: WallReinforced components: @@ -48618,72 +62152,18 @@ entities: - pos: -36.5,-4.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 6362 type: ClosetToolFilled components: - pos: -32.5,4.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 6363 type: CrateEngineeringSecure components: - pos: -32.5,3.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 6364 type: PowerCellRecharger components: @@ -48696,24 +62176,6 @@ entities: - pos: -32.5,2.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 6366 type: DoorElectronics components: @@ -48802,8 +62264,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 6380 type: DiseaseSwab components: @@ -49133,8 +62593,6 @@ entities: - pos: -30.5,-15.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6427 type: BoxSterileMask components: @@ -49501,8 +62959,7 @@ entities: - uid: 6487 type: DeployableBarrier components: - - anchored: False - pos: 12.5,-4.5 + - pos: 12.5,-4.5 parent: 6 type: Transform - uid: 6488 @@ -49770,8 +63227,6 @@ entities: pos: 4.5,-37.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6512 type: Chair components: @@ -49779,8 +63234,6 @@ entities: pos: 4.5,-38.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6513 type: PottedPlantRandom components: @@ -49800,8 +63253,6 @@ entities: pos: 4.5,-31.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6516 type: Chair components: @@ -49809,56 +63260,18 @@ entities: pos: 4.5,-32.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6517 type: CrateServiceBureaucracy components: - pos: 16.5,-41.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 6518 type: CrateServiceReplacementLights components: - pos: 16.5,-42.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 6519 type: CrateEmptySpawner components: @@ -50039,24 +63452,18 @@ entities: - pos: -61.5,-13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6534 type: Chair components: - pos: -60.5,-13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6535 type: Chair components: - pos: -59.5,-13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6536 type: Chair components: @@ -50064,8 +63471,6 @@ entities: pos: -61.5,-11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6537 type: Chair components: @@ -50073,8 +63478,6 @@ entities: pos: -60.5,-11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6538 type: Chair components: @@ -50082,8 +63485,6 @@ entities: pos: -59.5,-11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6539 type: VendingMachineCola components: @@ -50106,48 +63507,12 @@ entities: - pos: -56.5,-14.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 6542 type: ClosetEmergencyFilledRandom components: - pos: -56.5,-13.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 6543 type: FirelockGlass components: @@ -50810,8 +64175,6 @@ entities: - pos: 44.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6652 type: FirelockGlass components: @@ -50860,24 +64223,6 @@ entities: - pos: -4.5,-45.5 parent: 6 type: Transform -- uid: 6660 - type: AirlockGlass - components: - - pos: -26.5,-43.5 - parent: 6 - type: Transform -- uid: 6661 - type: AirlockGlass - components: - - pos: -26.5,-44.5 - parent: 6 - type: Transform -- uid: 6662 - type: AirlockGlass - components: - - pos: -26.5,-45.5 - parent: 6 - type: Transform - uid: 6663 type: FirelockGlass components: @@ -50909,56 +64254,42 @@ entities: - pos: -23.5,-63.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6668 type: CableHV components: - pos: -23.5,-64.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6669 type: CableHV components: - pos: -23.5,-65.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6670 type: CableHV components: - pos: -22.5,-63.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6671 type: CableHV components: - pos: -22.5,-62.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6672 type: CableHV components: - pos: -22.5,-61.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6673 type: CableHV components: - pos: -23.5,-61.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6674 type: SolarTracker components: @@ -50971,16 +64302,12 @@ entities: - pos: -23.5,-60.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6676 type: CableHV components: - pos: -23.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6677 type: ComputerSolarControl components: @@ -51025,32 +64352,12 @@ entities: - pos: -24.5,-61.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 6684 type: MachineFrameDestroyed components: - pos: -79.5,-48.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6685 type: ComputerBroken components: @@ -51130,248 +64437,186 @@ entities: - pos: -80.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6698 type: CableHV components: - pos: -79.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6699 type: CableHV components: - pos: -78.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6700 type: CableMV components: - pos: -78.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6701 type: CableMV components: - pos: -78.5,-49.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6702 type: CableMV components: - pos: -78.5,-50.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6703 type: CableMV components: - pos: -77.5,-50.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6704 type: CableMV components: - pos: -79.5,-50.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6705 type: CableMV components: - pos: -83.5,-46.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6706 type: CableMV components: - pos: -83.5,-45.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6707 type: CableMV components: - pos: -83.5,-44.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6708 type: CableMV components: - pos: -83.5,-41.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6709 type: CableMV components: - pos: -83.5,-40.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6710 type: CableApcExtension components: - pos: -83.5,-47.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6711 type: CableApcExtension components: - pos: -83.5,-46.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6712 type: CableApcExtension components: - pos: -83.5,-45.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6713 type: CableApcExtension components: - pos: -81.5,-38.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6714 type: CableApcExtension components: - pos: -82.5,-38.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6715 type: CableApcExtension components: - pos: -82.5,-39.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6716 type: CableApcExtension components: - pos: -80.5,-38.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6717 type: CableApcExtension components: - pos: -79.5,-38.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6718 type: CableApcExtension components: - pos: -76.5,-38.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6719 type: CableApcExtension components: - pos: -75.5,-38.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6720 type: CableApcExtension components: - pos: -76.5,-39.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6721 type: CableApcExtension components: - pos: -76.5,-40.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6722 type: CableApcExtension components: - pos: -77.5,-38.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6723 type: CableApcExtension components: - pos: -76.5,-47.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6724 type: CableApcExtension components: - pos: -76.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6725 type: CableApcExtension components: - pos: -76.5,-49.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6726 type: CableApcExtension components: - pos: -78.5,-50.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6727 type: CableApcExtension components: - pos: -79.5,-50.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6728 type: CableApcExtension components: @@ -51384,16 +64629,12 @@ entities: - pos: -81.5,-50.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6730 type: CableApcExtension components: - pos: -82.5,-50.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6731 type: CableApcStack1 components: @@ -51443,18 +64684,12 @@ entities: pos: -80.5,-40.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6739 type: GasPipeBend components: - pos: -80.5,-39.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 6740 type: GasPipeBend components: @@ -51462,10 +64697,6 @@ entities: pos: -82.5,-39.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 6741 type: GasPipeTJunction components: @@ -51473,10 +64704,6 @@ entities: pos: -78.5,-50.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 6742 type: GasPipeStraight components: @@ -51484,38 +64711,24 @@ entities: pos: -77.5,-50.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 6743 type: GasPipeStraight components: - pos: -83.5,-44.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 6744 type: GasPipeStraight components: - pos: -83.5,-45.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 6745 type: GasVentPump components: - pos: -76.5,-45.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6746 type: ToyAi components: @@ -51655,8 +64868,6 @@ entities: pos: -44.5,-50.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6767 type: StoolBar components: @@ -51664,8 +64875,6 @@ entities: pos: -44.5,-51.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6768 type: StoolBar components: @@ -51673,8 +64882,6 @@ entities: pos: -42.5,-53.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 6769 type: Barricade components: @@ -51712,8 +64919,6 @@ entities: - pos: -44.5,-49.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6775 type: CableApcExtension components: @@ -51726,16 +64931,12 @@ entities: - pos: -44.5,-51.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6777 type: CableApcExtension components: - pos: -44.5,-52.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6778 type: VendingMachineWallMedical components: @@ -51788,16 +64989,12 @@ entities: - pos: -43.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6785 type: CableApcExtension components: - pos: -42.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6786 type: CableApcExtension components: @@ -51816,8 +65013,6 @@ entities: - pos: -42.5,-50.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6789 type: CableApcExtension components: @@ -51830,72 +65025,54 @@ entities: - pos: -40.5,-47.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6791 type: CableApcExtension components: - pos: -39.5,-47.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6792 type: CableApcExtension components: - pos: -38.5,-47.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6793 type: CableApcExtension components: - pos: -38.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6794 type: CableApcExtension components: - pos: -38.5,-49.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6795 type: CableApcExtension components: - pos: -38.5,-50.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6796 type: CableApcExtension components: - pos: -38.5,-51.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6797 type: CableApcExtension components: - pos: -38.5,-52.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6798 type: CableApcExtension components: - pos: -38.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6799 type: CableHV components: @@ -51932,24 +65109,18 @@ entities: - pos: -12.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6805 type: CableHV components: - pos: -11.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6806 type: CableHV components: - pos: -10.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6807 type: CableHV components: @@ -51962,8 +65133,6 @@ entities: - pos: -10.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6809 type: CableHV components: @@ -52090,128 +65259,96 @@ entities: - pos: -6.5,-8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6830 type: CableHV components: - pos: -6.5,-7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6831 type: CableHV components: - pos: -6.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6832 type: CableHV components: - pos: -7.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6833 type: CableHV components: - pos: -8.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6834 type: CableHV components: - pos: -9.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6835 type: CableHV components: - pos: -10.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6836 type: CableHV components: - pos: -11.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6837 type: CableHV components: - pos: -12.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6838 type: CableHV components: - pos: -12.5,-5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6839 type: CableHV components: - pos: -12.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6840 type: CableHV components: - pos: -12.5,-3.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6841 type: CableHV components: - pos: -12.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6842 type: CableHV components: - pos: -12.5,-1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6843 type: CableHV components: - pos: -12.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6844 type: CableHV components: - pos: -12.5,0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6845 type: CableHV components: @@ -52542,280 +65679,210 @@ entities: - pos: -64.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6900 type: CableHV components: - pos: -63.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6901 type: CableHV components: - pos: -62.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6902 type: CableHV components: - pos: -61.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6903 type: CableHV components: - pos: -60.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6904 type: CableHV components: - pos: -59.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6905 type: CableHV components: - pos: -58.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6906 type: CableHV components: - pos: -57.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6907 type: CableHV components: - pos: -56.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6908 type: CableHV components: - pos: -56.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6909 type: CableHV components: - pos: -56.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6910 type: CableHV components: - pos: -56.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6911 type: CableHV components: - pos: -56.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6912 type: CableHV components: - pos: -56.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6913 type: CableHV components: - pos: -55.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6914 type: CableHV components: - pos: -54.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6915 type: CableHV components: - pos: -53.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6916 type: CableHV components: - pos: -52.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6917 type: CableHV components: - pos: -51.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6918 type: CableHV components: - pos: -50.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6919 type: CableHV components: - pos: -49.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6920 type: CableHV components: - pos: -48.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6921 type: CableHV components: - pos: -47.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6922 type: CableHV components: - pos: -46.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6923 type: CableHV components: - pos: -45.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6924 type: CableHV components: - pos: -44.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6925 type: CableHV components: - pos: -43.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6926 type: CableHV components: - pos: -43.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6927 type: CableHV components: - pos: -42.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6928 type: CableHV components: - pos: -41.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6929 type: CableHV components: - pos: -41.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6930 type: CableHV components: - pos: -41.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6931 type: CableHV components: - pos: -41.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6932 type: CableHV components: - pos: -41.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6933 type: CableHV components: - pos: -41.5,-15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6934 type: CableHV components: @@ -52858,384 +65925,288 @@ entities: - pos: -41.5,-7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6941 type: CableHV components: - pos: -41.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6942 type: CableHV components: - pos: -41.5,-5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6943 type: CableHV components: - pos: -41.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6944 type: CableHV components: - pos: -41.5,-3.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6945 type: CableHV components: - pos: -41.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6946 type: CableHV components: - pos: -41.5,-1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6947 type: CableHV components: - pos: -41.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6948 type: CableHV components: - pos: -41.5,0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6949 type: CableHV components: - pos: -41.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6950 type: CableHV components: - pos: -41.5,2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6951 type: CableHV components: - pos: -41.5,3.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6952 type: CableHV components: - pos: -51.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6953 type: CableHV components: - pos: -51.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6954 type: CableHV components: - pos: -51.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6955 type: CableHV components: - pos: -51.5,-25.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6956 type: CableHV components: - pos: -51.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6957 type: CableHV components: - pos: -51.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6958 type: CableHV components: - pos: -50.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6959 type: CableHV components: - pos: -49.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6960 type: CableHV components: - pos: -48.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6961 type: CableHV components: - pos: -47.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6962 type: CableHV components: - pos: -46.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6963 type: CableHV components: - pos: -45.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6964 type: CableHV components: - pos: -44.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6965 type: CableHV components: - pos: -43.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6966 type: CableHV components: - pos: -43.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6967 type: CableHV components: - pos: -43.5,-25.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6968 type: CableHV components: - pos: -43.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6969 type: CableHV components: - pos: -43.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6970 type: CableHV components: - pos: -42.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6971 type: CableHV components: - pos: -41.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6972 type: CableHV components: - pos: -41.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6973 type: CableHV components: - pos: -41.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6974 type: CableHV components: - pos: -49.5,-28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6975 type: CableHV components: - pos: -49.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6976 type: CableHV components: - pos: -49.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6977 type: CableHV components: - pos: -49.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6978 type: CableHV components: - pos: -49.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6979 type: CableHV components: - pos: -49.5,-33.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6980 type: CableHV components: - pos: -49.5,-34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6981 type: CableHV components: - pos: -49.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6982 type: CableHV components: - pos: -49.5,-36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6983 type: CableHV components: - pos: -49.5,-37.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6984 type: CableHV components: - pos: -49.5,-38.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6985 type: CableHV components: - pos: -49.5,-39.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6986 type: CableHV components: - pos: -49.5,-40.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6987 type: CableHV components: - pos: -49.5,-41.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 6988 type: CableHV components: @@ -53602,16 +66573,12 @@ entities: - pos: 8.5,-44.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7049 type: CableHV components: - pos: 9.5,-44.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7050 type: CableHV components: @@ -53624,16 +66591,12 @@ entities: - pos: 9.5,-42.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7052 type: CableHV components: - pos: 8.5,-42.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7053 type: CableHV components: @@ -53658,176 +66621,132 @@ entities: - pos: -5.5,-47.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7057 type: CableHV components: - pos: -5.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7058 type: CableHV components: - pos: -4.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7059 type: CableHV components: - pos: -3.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7060 type: CableHV components: - pos: -2.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7061 type: CableHV components: - pos: -1.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7062 type: CableHV components: - pos: -0.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7063 type: CableHV components: - pos: 0.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7064 type: CableHV components: - pos: 0.5,-49.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7065 type: CableHV components: - pos: 0.5,-50.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7066 type: CableHV components: - pos: 0.5,-51.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7067 type: CableHV components: - pos: 0.5,-52.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7068 type: CableHV components: - pos: 0.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7069 type: CableHV components: - pos: 0.5,-54.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7070 type: CableHV components: - pos: 0.5,-55.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7071 type: CableHV components: - pos: 0.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7072 type: CableHV components: - pos: 0.5,-57.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7073 type: CableHV components: - pos: 0.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7074 type: CableHV components: - pos: -0.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7075 type: CableHV components: - pos: -1.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7076 type: CableHV components: - pos: -2.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7077 type: CableHV components: - pos: -3.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7078 type: CableHV components: @@ -53858,96 +66777,72 @@ entities: - pos: -8.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7083 type: CableHV components: - pos: -9.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7084 type: CableHV components: - pos: -10.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7085 type: CableHV components: - pos: -11.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7086 type: CableHV components: - pos: -12.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7087 type: CableHV components: - pos: -13.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7088 type: CableHV components: - pos: -14.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7089 type: CableHV components: - pos: -14.5,-57.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7090 type: CableHV components: - pos: -14.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7091 type: CableHV components: - pos: -15.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7092 type: CableHV components: - pos: -17.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7093 type: CableHV components: - pos: -16.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7094 type: CableHV components: @@ -53960,8 +66855,6 @@ entities: - pos: -16.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7096 type: CableHV components: @@ -53974,120 +66867,90 @@ entities: - pos: -18.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7098 type: CableHV components: - pos: -19.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7099 type: CableHV components: - pos: -19.5,-55.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7100 type: CableHV components: - pos: -19.5,-54.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7101 type: CableHV components: - pos: -19.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7102 type: CableHV components: - pos: -19.5,-52.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7103 type: CableHV components: - pos: -19.5,-51.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7104 type: CableHV components: - pos: -19.5,-50.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7105 type: CableHV components: - pos: -19.5,-49.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7106 type: CableHV components: - pos: -19.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7107 type: CableHV components: - pos: -20.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7108 type: CableHV components: - pos: -21.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7109 type: CableHV components: - pos: -22.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7110 type: CableHV components: - pos: -23.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7111 type: CableHV components: - pos: -24.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7112 type: CableHV components: @@ -54118,296 +66981,222 @@ entities: - pos: -22.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7117 type: CableHV components: - pos: -21.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7118 type: CableHV components: - pos: -20.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7119 type: CableHV components: - pos: -19.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7120 type: CableHV components: - pos: -19.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7121 type: CableHV components: - pos: -19.5,-57.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7122 type: CableHV components: - pos: -24.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7123 type: CableHV components: - pos: -25.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7124 type: CableHV components: - pos: -26.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7125 type: CableHV components: - pos: -27.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7126 type: CableHV components: - pos: -28.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7127 type: CableHV components: - pos: -29.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7128 type: CableHV components: - pos: -30.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7129 type: CableHV components: - pos: -31.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7130 type: CableHV components: - pos: -32.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7131 type: CableHV components: - pos: -33.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7132 type: CableHV components: - pos: -34.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7133 type: CableHV components: - pos: -35.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7134 type: CableHV components: - pos: -36.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7135 type: CableHV components: - pos: -37.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7136 type: CableHV components: - pos: -38.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7137 type: CableHV components: - pos: -39.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7138 type: CableHV components: - pos: -39.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7139 type: CableHV components: - pos: -39.5,-57.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7140 type: CableHV components: - pos: -39.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7141 type: CableHV components: - pos: -39.5,-55.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7142 type: CableHV components: - pos: -39.5,-54.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7143 type: CableHV components: - pos: -39.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7144 type: CableHV components: - pos: -38.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7145 type: CableHV components: - pos: -38.5,-52.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7146 type: CableHV components: - pos: -38.5,-51.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7147 type: CableHV components: - pos: -38.5,-50.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7148 type: CableHV components: - pos: -38.5,-49.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7149 type: CableHV components: - pos: -38.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7150 type: CableHV components: - pos: -38.5,-47.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7151 type: CableHV components: - pos: -39.5,-47.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7152 type: CableHV components: - pos: -40.5,-47.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7153 type: CableHV components: @@ -54558,280 +67347,210 @@ entities: - pos: 9.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7178 type: CableHV components: - pos: 10.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7179 type: CableHV components: - pos: 11.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7180 type: CableHV components: - pos: 12.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7181 type: CableHV components: - pos: 12.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7182 type: CableHV components: - pos: 12.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7183 type: CableHV components: - pos: 13.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7184 type: CableHV components: - pos: 14.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7185 type: CableHV components: - pos: 15.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7186 type: CableHV components: - pos: 16.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7187 type: CableHV components: - pos: 17.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7188 type: CableHV components: - pos: 18.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7189 type: CableHV components: - pos: 19.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7190 type: CableHV components: - pos: 19.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7191 type: CableHV components: - pos: 19.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7192 type: CableHV components: - pos: 19.5,-28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7193 type: CableHV components: - pos: 19.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7194 type: CableHV components: - pos: 19.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7195 type: CableHV components: - pos: 19.5,-25.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7196 type: CableHV components: - pos: 19.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7197 type: CableHV components: - pos: 18.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7198 type: CableHV components: - pos: 17.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7199 type: CableHV components: - pos: 16.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7200 type: CableHV components: - pos: 16.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7201 type: CableHV components: - pos: 16.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7202 type: CableHV components: - pos: 17.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7203 type: CableHV components: - pos: 18.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7204 type: CableHV components: - pos: 19.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7205 type: CableHV components: - pos: 19.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7206 type: CableHV components: - pos: 20.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7207 type: CableHV components: - pos: 21.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7208 type: CableHV components: - pos: 19.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7209 type: CableHV components: - pos: 22.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7210 type: CableHV components: - pos: 22.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7211 type: CableHV components: - pos: 23.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7212 type: CableTerminal components: @@ -54844,40 +67563,30 @@ entities: - pos: 24.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7214 type: CableHV components: - pos: 24.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7215 type: CableHV components: - pos: 25.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7216 type: CableHV components: - pos: 26.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7217 type: CableHV components: - pos: 26.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7218 type: SMESBasic components: @@ -54915,24 +67624,6 @@ entities: - pos: 22.5,-20.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 7224 type: NitrogenCanister components: @@ -54957,56 +67648,42 @@ entities: - pos: 44.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7228 type: CableHV components: - pos: 45.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7229 type: CableHV components: - pos: 19.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7230 type: CableHV components: - pos: 19.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7231 type: CableHV components: - pos: 19.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7232 type: CableHV components: - pos: 19.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7233 type: CableHV components: - pos: 19.5,-15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7234 type: CableHV components: @@ -55067,96 +67744,72 @@ entities: - pos: 21.5,-7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7244 type: CableHV components: - pos: 22.5,-7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7245 type: CableHV components: - pos: 23.5,-7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7246 type: CableHV components: - pos: 24.5,-7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7247 type: CableHV components: - pos: 24.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7248 type: CableHV components: - pos: 24.5,-5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7249 type: CableHV components: - pos: 24.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7250 type: CableHV components: - pos: 24.5,-3.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7251 type: CableHV components: - pos: 24.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7252 type: CableHV components: - pos: 23.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7253 type: CableHV components: - pos: 22.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7254 type: CableHV components: - pos: 21.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7255 type: CableHV components: @@ -55169,8 +67822,6 @@ entities: - pos: 21.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7257 type: CableHV components: @@ -55333,144 +67984,108 @@ entities: - pos: -41.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7284 type: CableHV components: - pos: -40.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7285 type: CableHV components: - pos: -39.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7286 type: CableHV components: - pos: -38.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7287 type: CableHV components: - pos: -37.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7288 type: CableHV components: - pos: -36.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7289 type: CableHV components: - pos: -35.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7290 type: CableHV components: - pos: -34.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7291 type: CableHV components: - pos: -33.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7292 type: CableHV components: - pos: -33.5,-25.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7293 type: CableHV components: - pos: -33.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7294 type: CableHV components: - pos: -33.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7295 type: CableHV components: - pos: -33.5,-28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7296 type: CableHV components: - pos: -33.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7297 type: CableHV components: - pos: -32.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7298 type: CableHV components: - pos: -31.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7299 type: CableHV components: - pos: -30.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7300 type: CableHV components: - pos: -29.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7301 type: CableHV components: @@ -55489,144 +68104,108 @@ entities: - pos: -17.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7304 type: CableHV components: - pos: -18.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7305 type: CableHV components: - pos: -19.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7306 type: CableHV components: - pos: -20.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7307 type: CableHV components: - pos: -21.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7308 type: CableHV components: - pos: -22.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7309 type: CableHV components: - pos: -23.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7310 type: CableHV components: - pos: -24.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7311 type: CableHV components: - pos: -25.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7312 type: CableHV components: - pos: -26.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7313 type: CableHV components: - pos: -27.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7314 type: CableHV components: - pos: -28.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7315 type: CableHV components: - pos: -29.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7316 type: CableHV components: - pos: -29.5,-34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7317 type: CableHV components: - pos: -29.5,-33.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7318 type: CableHV components: - pos: -29.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7319 type: CableHV components: - pos: -29.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7320 type: CableHV components: - pos: -29.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7321 type: CableHV components: @@ -55639,16 +68218,12 @@ entities: - pos: -31.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7323 type: CableHV components: - pos: -32.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7324 type: CableHV components: @@ -55841,16 +68416,12 @@ entities: - pos: -37.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7356 type: CableHV components: - pos: -37.5,-54.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7357 type: CableHV components: @@ -55863,24 +68434,18 @@ entities: - pos: -37.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7359 type: Chair components: - pos: -35.5,-20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7360 type: Chair components: - pos: -36.5,-20.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7361 type: PottedPlantRandom components: @@ -56034,48 +68599,12 @@ entities: - pos: -4.5,-62.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 7375 type: ClosetFireFilled components: - pos: -4.5,-63.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 7376 type: Rack components: @@ -56507,24 +69036,6 @@ entities: - pos: -28.553457,-54.1594 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 7444 type: ChairFolding components: @@ -57660,54 +70171,18 @@ entities: - pos: -40.626602,-41.31247 parent: 6 type: Transform -- uid: 7631 - type: AirlockEVAGlassLocked - components: - - pos: -46.5,-13.5 - parent: 6 - type: Transform - uid: 7632 type: SignEVA components: - pos: -47.5,-13.5 parent: 6 type: Transform -- uid: 7633 - type: AirlockEngineeringLocked - components: - - pos: -10.5,0.5 - parent: 6 - type: Transform -- uid: 7634 - type: AirlockEngineeringLocked - components: - - pos: 21.5,-3.5 - parent: 6 - type: Transform - uid: 7635 type: CrateServiceJanitorialSupplies components: - pos: 24.5,7.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 7636 type: MopItem components: @@ -57756,40 +70231,18 @@ entities: - pos: 26.5,-0.5 parent: 6 type: Transform -- uid: 7644 - type: AirlockEngineeringLocked - components: - - pos: 9.5,-43.5 - parent: 6 - type: Transform -- uid: 7645 - type: AirlockEngineeringLocked - components: - - pos: -16.5,-57.5 - parent: 6 - type: Transform -- uid: 7646 - type: AirlockEngineeringLocked - components: - - pos: -31.5,-30.5 - parent: 6 - type: Transform - uid: 7647 type: Chair components: - pos: -49.5,-10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7648 type: Chair components: - pos: -48.5,-10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7649 type: PottedPlantRandom components: @@ -57863,8 +70316,6 @@ entities: pos: 24.5,-12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7661 type: PottedPlantRandom components: @@ -57877,32 +70328,24 @@ entities: - pos: 35.5,-10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7663 type: Chair components: - pos: 36.5,-10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7664 type: Chair components: - pos: 38.5,-10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7665 type: Chair components: - pos: 39.5,-10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7666 type: PottedPlantRandom components: @@ -58026,8 +70469,6 @@ entities: - pos: -11.5,-71.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7678 type: Catwalk components: @@ -58105,6 +70546,12 @@ entities: pos: -12.5,0.5 parent: 6 type: Transform +- uid: 7689 + type: RandomVending + components: + - pos: 42.5,9.5 + parent: 6 + type: Transform - uid: 7690 type: DisposalUnit components: @@ -58117,26 +70564,12 @@ entities: - pos: 31.5,9.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7692 type: PottedPlantRandom components: - pos: 30.5,9.5 parent: 6 type: Transform -- uid: 7693 - type: AirlockGlass - components: - - pos: -10.5,-34.5 - parent: 6 - type: Transform -- uid: 7694 - type: AirlockGlass - components: - - pos: -10.5,-35.5 - parent: 6 - type: Transform - uid: 7695 type: Catwalk components: @@ -58194,8 +70627,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 7704 type: Catwalk components: @@ -58292,18 +70723,6 @@ entities: - pos: 7.5,-28.5 parent: 6 type: Transform -- uid: 7720 - type: AirlockGlass - components: - - pos: -42.5,-42.5 - parent: 6 - type: Transform -- uid: 7721 - type: AirlockGlass - components: - - pos: -43.5,-42.5 - parent: 6 - type: Transform - uid: 7722 type: ChairFolding components: @@ -58454,8 +70873,6 @@ entities: pos: -21.5,-41.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7746 type: FaxMachineBase components: @@ -58497,12 +70914,6 @@ entities: - pos: -18.5,-42.5 parent: 6 type: Transform -- uid: 7752 - type: AirlockServiceLocked - components: - - pos: -23.5,-37.5 - parent: 6 - type: Transform - uid: 7753 type: Catwalk components: @@ -58781,8 +71192,6 @@ entities: pos: 12.5,-19.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7799 type: FaxMachineBase components: @@ -58911,8 +71320,6 @@ entities: pos: -1.5,-23.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7819 type: Chair components: @@ -58920,8 +71327,6 @@ entities: pos: 0.5,-22.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7820 type: Chair components: @@ -58929,8 +71334,6 @@ entities: pos: 0.5,-23.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7821 type: Chair components: @@ -58938,8 +71341,6 @@ entities: pos: 2.5,-22.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7822 type: Chair components: @@ -58947,24 +71348,18 @@ entities: pos: 2.5,-23.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7823 type: Chair components: - pos: -21.5,-43.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7824 type: Chair components: - pos: -22.5,-43.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7825 type: PottedPlantRandom components: @@ -58978,8 +71373,6 @@ entities: pos: -38.5,-45.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7827 type: Chair components: @@ -58987,8 +71380,6 @@ entities: pos: -37.5,-45.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 7828 type: PottedPlantRandom components: @@ -59023,24 +71414,6 @@ entities: - pos: -23.5,-46.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 7833 type: DisposalUnit components: @@ -59053,72 +71426,18 @@ entities: - pos: -22.5,-46.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 7835 type: ClosetEmergencyFilledRandom components: - pos: 22.5,-9.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 7836 type: ClosetFireFilled components: - pos: 23.5,-9.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 7837 type: RandomVending components: @@ -59233,160 +71552,120 @@ entities: - pos: -82.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7856 type: CableHV components: - pos: -82.5,-15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7857 type: CableHV components: - pos: -81.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7858 type: CableHV components: - pos: -78.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7859 type: CableHV components: - pos: -78.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7860 type: CableHV components: - pos: -78.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7861 type: CableHV components: - pos: -78.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7862 type: CableHV components: - pos: -78.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7863 type: CableHV components: - pos: -78.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7864 type: CableHV components: - pos: -78.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7865 type: CableHV components: - pos: -78.5,-15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7866 type: CableHV components: - pos: -76.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7867 type: CableHV components: - pos: -76.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7868 type: CableHV components: - pos: -76.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7869 type: CableHV components: - pos: -76.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7870 type: CableHV components: - pos: -76.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7871 type: CableHV components: - pos: -76.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7872 type: CableHV components: - pos: -76.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7873 type: CableHV components: - pos: -76.5,-15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7874 type: CableHV components: - pos: -77.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7875 type: ExtinguisherCabinetFilled components: @@ -59399,56 +71678,42 @@ entities: - pos: -78.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7877 type: CableHV components: - pos: -78.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7878 type: CableHV components: - pos: -78.5,-28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7879 type: CableHV components: - pos: -78.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7880 type: CableHV components: - pos: -78.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7881 type: CableHV components: - pos: -78.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7882 type: CableHV components: - pos: -78.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7883 type: ExtinguisherCabinetFilled components: @@ -59461,56 +71726,42 @@ entities: - pos: -76.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7885 type: CableHV components: - pos: -76.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7886 type: CableHV components: - pos: -76.5,-28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7887 type: CableHV components: - pos: -76.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7888 type: CableHV components: - pos: -76.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7889 type: CableHV components: - pos: -76.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7890 type: CableHV components: - pos: -76.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7891 type: ExtinguisherCabinetFilled components: @@ -59529,56 +71780,42 @@ entities: - pos: -74.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7894 type: CableHV components: - pos: -74.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7895 type: CableHV components: - pos: -74.5,-28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7896 type: CableHV components: - pos: -74.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7897 type: CableHV components: - pos: -74.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7898 type: CableHV components: - pos: -74.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7899 type: CableHV components: - pos: -74.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7900 type: ExtinguisherCabinetFilled components: @@ -59591,56 +71828,42 @@ entities: - pos: -72.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7902 type: CableHV components: - pos: -72.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7903 type: CableHV components: - pos: -72.5,-28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7904 type: CableHV components: - pos: -72.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7905 type: CableHV components: - pos: -72.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7906 type: CableHV components: - pos: -72.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7907 type: CableHV components: - pos: -72.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7908 type: ExtinguisherCabinetFilled components: @@ -59815,8 +72038,6 @@ entities: - pos: -88.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 7935 type: SolarPanel components: @@ -60061,6 +72282,12 @@ entities: - pos: -76.5,-15.5 parent: 6 type: Transform +- uid: 7975 + type: ExtinguisherCabinetFilled + components: + - pos: 41.5,1.5 + parent: 6 + type: Transform - uid: 7976 type: SolarPanel components: @@ -60145,6 +72372,12 @@ entities: - pos: -80.5,-26.5 parent: 6 type: Transform +- uid: 7990 + type: ExtinguisherCabinetFilled + components: + - pos: 32.5,1.5 + parent: 6 + type: Transform - uid: 7991 type: SolarPanel components: @@ -60514,8 +72747,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 8052 type: GasPipeBend components: @@ -60525,8 +72756,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 8053 type: WallSolid components: @@ -61005,40 +73234,30 @@ entities: - pos: -19.5,28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8131 type: CableHV components: - pos: -18.5,28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8132 type: CableHV components: - pos: -17.5,28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8133 type: CableHV components: - pos: -16.5,28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8134 type: CableHV components: - pos: -15.5,28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8135 type: Grille components: @@ -61059,40 +73278,30 @@ entities: - pos: -19.5,26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8138 type: CableHV components: - pos: -18.5,26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8139 type: CableHV components: - pos: -17.5,26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8140 type: CableHV components: - pos: -16.5,26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8141 type: CableHV components: - pos: -15.5,26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8142 type: Grille components: @@ -61106,256 +73315,192 @@ entities: - pos: -11.5,26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8144 type: CableHV components: - pos: -10.5,26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8145 type: CableHV components: - pos: -9.5,26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8146 type: CableHV components: - pos: -8.5,26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8147 type: CableHV components: - pos: -7.5,26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8148 type: CableHV components: - pos: -6.5,26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8149 type: CableHV components: - pos: -11.5,27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8150 type: CableHV components: - pos: -11.5,28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8151 type: CableHV components: - pos: -10.5,28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8152 type: CableHV components: - pos: -9.5,28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8153 type: CableHV components: - pos: -8.5,28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8154 type: CableHV components: - pos: -7.5,28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8155 type: CableHV components: - pos: -6.5,28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8156 type: CableHV components: - pos: -11.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8157 type: CableHV components: - pos: -10.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8158 type: CableHV components: - pos: -9.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8159 type: CableHV components: - pos: -8.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8160 type: CableHV components: - pos: -7.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8161 type: CableHV components: - pos: -6.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8162 type: CableHV components: - pos: -11.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8163 type: CableHV components: - pos: -10.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8164 type: CableHV components: - pos: -9.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8165 type: CableHV components: - pos: -8.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8166 type: CableHV components: - pos: -7.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8167 type: CableHV components: - pos: -6.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8168 type: CableHV components: - pos: -11.5,23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8169 type: CableHV components: - pos: -11.5,18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8170 type: CableHV components: - pos: -10.5,18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8171 type: CableHV components: - pos: -9.5,18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8172 type: CableHV components: - pos: -8.5,18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8173 type: CableHV components: - pos: -7.5,18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8174 type: CableHV components: - pos: -6.5,18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8175 type: Catwalk components: @@ -61369,56 +73514,42 @@ entities: - pos: -11.5,19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8177 type: CableHV components: - pos: -11.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8178 type: CableHV components: - pos: -10.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8179 type: CableHV components: - pos: -9.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8180 type: CableHV components: - pos: -8.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8181 type: CableHV components: - pos: -7.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8182 type: CableHV components: - pos: -6.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8183 type: Grille components: @@ -61483,24 +73614,6 @@ entities: - pos: -24.5,18.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 8192 type: CableApcExtension components: @@ -61639,8 +73752,6 @@ entities: - pos: -25.5,5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8215 type: SignDirectionalSolar components: @@ -62132,138 +74243,12 @@ entities: - pos: -38.5,-54.5 parent: 6 type: Transform -- uid: 8290 - type: AirlockEngineeringLocked - components: - - pos: -37.5,-54.5 - parent: 6 - type: Transform - uid: 8291 type: ShardGlass components: - pos: -32.534348,-36.4765 parent: 6 type: Transform -- uid: 8292 - type: AirlockMaintLocked - components: - - pos: 8.5,9.5 - parent: 6 - type: Transform -- uid: 8293 - type: AirlockMaintLocked - components: - - pos: 28.5,8.5 - parent: 6 - type: Transform -- uid: 8294 - type: AirlockMaintLocked - components: - - pos: 21.5,-8.5 - parent: 6 - type: Transform -- uid: 8295 - type: AirlockMaintLocked - components: - - pos: 25.5,-7.5 - parent: 6 - type: Transform -- uid: 8296 - type: AirlockMaintLocked - components: - - pos: 19.5,-14.5 - parent: 6 - type: Transform -- uid: 8297 - type: AirlockMaintLocked - components: - - pos: 8.5,-29.5 - parent: 6 - type: Transform -- uid: 8298 - type: AirlockMaintLocked - components: - - pos: 7.5,-44.5 - parent: 6 - type: Transform -- uid: 8299 - type: AirlockMaintLocked - components: - - pos: -5.5,-46.5 - parent: 6 - type: Transform -- uid: 8300 - type: AirlockMaintLocked - components: - - pos: -3.5,-58.5 - parent: 6 - type: Transform -- uid: 8301 - type: AirlockMaintLocked - components: - - pos: -8.5,-58.5 - parent: 6 - type: Transform -- uid: 8302 - type: AirlockMaintLocked - components: - - pos: -40.5,-46.5 - parent: 6 - type: Transform -- uid: 8303 - type: AirlockMaintLocked - components: - - pos: -49.5,-42.5 - parent: 6 - type: Transform -- uid: 8304 - type: AirlockMaintLocked - components: - - pos: -24.5,-42.5 - parent: 6 - type: Transform -- uid: 8305 - type: AirlockMaintLocked - components: - - pos: -16.5,-35.5 - parent: 6 - type: Transform -- uid: 8306 - type: AirlockMaintLocked - components: - - pos: -21.5,-36.5 - parent: 6 - type: Transform -- uid: 8307 - type: AirlockMaintLocked - components: - - pos: -41.5,-14.5 - parent: 6 - type: Transform -- uid: 8308 - type: AirlockMaintLocked - components: - - pos: -53.5,-20.5 - parent: 6 - type: Transform -- uid: 8309 - type: AirlockMaintLocked - components: - - pos: -64.5,-15.5 - parent: 6 - type: Transform -- uid: 8310 - type: AirlockMaintLocked - components: - - pos: -43.5,-28.5 - parent: 6 - type: Transform -- uid: 8311 - type: AirlockMaintLocked - components: - - pos: -50.5,-32.5 - parent: 6 - type: Transform - uid: 8312 type: Grille components: @@ -62288,48 +74273,6 @@ entities: - pos: -50.5,-35.5 parent: 6 type: Transform -- uid: 8316 - type: AirlockMaintLocked - components: - - pos: -33.5,-38.5 - parent: 6 - type: Transform -- uid: 8317 - type: AirlockMaintLocked - components: - - pos: -6.5,-14.5 - parent: 6 - type: Transform -- uid: 8318 - type: AirlockMaintLocked - components: - - pos: -6.5,-9.5 - parent: 6 - type: Transform -- uid: 8319 - type: AirlockMaintLocked - components: - - pos: -13.5,1.5 - parent: 6 - type: Transform -- uid: 8320 - type: AirlockMaintLocked - components: - - pos: -41.5,-8.5 - parent: 6 - type: Transform -- uid: 8321 - type: AirlockMaintLocked - components: - - pos: -33.5,6.5 - parent: 6 - type: Transform -- uid: 8322 - type: AirlockMaintLocked - components: - - pos: -29.5,6.5 - parent: 6 - type: Transform - uid: 8323 type: WallReinforced components: @@ -62337,42 +74280,6 @@ entities: pos: -19.5,6.5 parent: 6 type: Transform -- uid: 8324 - type: AirlockMaintLocked - components: - - pos: 12.5,11.5 - parent: 6 - type: Transform -- uid: 8325 - type: AirlockMaintLocked - components: - - pos: 17.5,11.5 - parent: 6 - type: Transform -- uid: 8326 - type: AirlockMaintSecLocked - components: - - pos: 18.5,-4.5 - parent: 6 - type: Transform -- uid: 8327 - type: AirlockMaintTheatreLocked - components: - - pos: 13.5,-22.5 - parent: 6 - type: Transform -- uid: 8328 - type: AirlockMaintCargoLocked - components: - - pos: 16.5,-33.5 - parent: 6 - type: Transform -- uid: 8329 - type: AirlockMaintSalvageLocked - components: - - pos: 1.5,-48.5 - parent: 6 - type: Transform - uid: 8330 type: SignDirectionalSolar components: @@ -62380,24 +74287,6 @@ entities: pos: 18.5,-30.5 parent: 6 type: Transform -- uid: 8331 - type: AirlockMaintMedLocked - components: - - pos: -29.5,-28.5 - parent: 6 - type: Transform -- uid: 8332 - type: AirlockMaintMedLocked - components: - - pos: -23.5,-34.5 - parent: 6 - type: Transform -- uid: 8333 - type: AirlockMaintEngiLocked - components: - - pos: -39.5,-1.5 - parent: 6 - type: Transform - uid: 8334 type: Catwalk components: @@ -62489,80 +74378,60 @@ entities: - pos: -41.5,4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8349 type: CableHV components: - pos: -41.5,5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8350 type: CableHV components: - pos: -41.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8351 type: CableHV components: - pos: -40.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8352 type: CableHV components: - pos: -39.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8353 type: CableHV components: - pos: -38.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8354 type: CableHV components: - pos: -37.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8355 type: CableHV components: - pos: -36.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8356 type: CableHV components: - pos: -35.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8357 type: CableHV components: - pos: -34.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8358 type: CableHV components: @@ -62576,10 +74445,6 @@ entities: pos: -32.5,0.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8360 type: CableHV @@ -62587,8 +74452,6 @@ entities: - pos: -31.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8361 type: EmergencyLight components: @@ -62596,10 +74459,6 @@ entities: pos: -30.5,14.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8362 type: CableHV @@ -62613,40 +74472,30 @@ entities: - pos: -28.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8364 type: CableHV components: - pos: -27.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8365 type: CableHV components: - pos: -26.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8366 type: CableHV components: - pos: -25.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8367 type: CableHV components: - pos: -24.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8368 type: CableHV components: @@ -62680,8 +74529,6 @@ entities: - pos: -20.5,7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8373 type: CableHV components: @@ -62737,7 +74584,7 @@ entities: pos: -20.5,-5.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116153.22 + - SecondsUntilStateChange: -113604.03 state: Opening type: Door - inputs: @@ -62754,7 +74601,7 @@ entities: pos: -20.5,-4.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116153.22 + - SecondsUntilStateChange: -113604.03 state: Opening type: Door - inputs: @@ -62863,10 +74710,6 @@ entities: pos: -27.5,-12.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8396 type: EmergencyLight @@ -62875,10 +74718,6 @@ entities: pos: -44.5,-12.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8397 type: EmergencyLight @@ -62887,10 +74726,6 @@ entities: pos: -60.5,-14.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8398 type: EmergencyLight @@ -62899,10 +74734,6 @@ entities: pos: -2.5,-12.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8399 type: EmergencyLight @@ -62911,10 +74742,6 @@ entities: pos: 21.5,-12.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8400 type: EmergencyLight @@ -62923,10 +74750,22 @@ entities: pos: 38.5,-12.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound + - type: ActiveEmergencyLight +- uid: 8401 + type: EmergencyLight + components: + - rot: -1.5707963267948966 rad + pos: 31.5,1.5 + parent: 6 + type: Transform + - type: ActiveEmergencyLight +- uid: 8402 + type: EmergencyLight + components: + - rot: 1.5707963267948966 rad + pos: 42.5,1.5 + parent: 6 + type: Transform - type: ActiveEmergencyLight - uid: 8403 type: EmergencyLight @@ -62934,10 +74773,6 @@ entities: - pos: 13.5,4.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8404 type: EmergencyLight @@ -62945,10 +74780,6 @@ entities: - pos: 11.5,20.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8405 type: EmergencyLight @@ -62956,10 +74787,6 @@ entities: - pos: 0.5,1.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8406 type: EmergencyLight @@ -62967,10 +74794,6 @@ entities: - pos: -4.5,10.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8407 type: EmergencyLight @@ -62978,10 +74801,6 @@ entities: - pos: -20.5,4.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8408 type: EmergencyLight @@ -62990,10 +74809,6 @@ entities: pos: -14.5,-0.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8409 type: EmergencyLight @@ -63001,10 +74816,6 @@ entities: - pos: -25.5,-20.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8410 type: EmergencyLight @@ -63013,10 +74824,6 @@ entities: pos: -19.5,-31.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8411 type: EmergencyLight @@ -63025,10 +74832,6 @@ entities: pos: -9.5,-19.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8412 type: EmergencyLight @@ -63037,10 +74840,6 @@ entities: pos: -9.5,-26.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8413 type: EmergencyLight @@ -63049,10 +74848,6 @@ entities: pos: 2.5,-33.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8414 type: EmergencyLight @@ -63061,10 +74856,6 @@ entities: pos: -0.5,-16.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8415 type: EmergencyLight @@ -63073,10 +74864,6 @@ entities: pos: 12.5,-25.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8416 type: EmergencyLight @@ -63085,10 +74872,6 @@ entities: pos: 15.5,-37.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8417 type: EmergencyLight @@ -63097,10 +74880,6 @@ entities: pos: 2.5,-47.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8418 type: EmergencyLight @@ -63108,10 +74887,6 @@ entities: - pos: -5.5,-43.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8419 type: EmergencyLight @@ -63119,10 +74894,6 @@ entities: - pos: -5.5,-54.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8420 type: EmergencyLight @@ -63130,10 +74901,6 @@ entities: - pos: -23.5,-43.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8421 type: EmergencyLight @@ -63141,10 +74908,6 @@ entities: - pos: -45.5,-43.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8422 type: EmergencyLight @@ -63153,10 +74916,6 @@ entities: pos: -33.5,-56.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8423 type: EmergencyLight @@ -63164,10 +74923,6 @@ entities: - pos: -4.5,-72.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8424 type: PoweredlightSodium @@ -63674,24 +75429,18 @@ entities: - pos: -6.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8484 type: CableApcExtension components: - pos: -0.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8485 type: CableApcExtension components: - pos: -10.5,-40.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8486 type: Table components: @@ -63704,16 +75453,12 @@ entities: - pos: -3.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8488 type: CableApcExtension components: - pos: 0.5,-38.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8489 type: PoweredSmallLight components: @@ -64167,10 +75912,6 @@ entities: - pos: -7.5,-58.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight - uid: 8542 type: Poweredlight @@ -64257,216 +75998,162 @@ entities: - pos: -29.5,14.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8553 type: CableApcExtension components: - pos: -29.5,14.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8554 type: CableApcExtension components: - pos: -30.5,14.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8555 type: CableApcExtension components: - pos: -30.5,15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8556 type: CableApcExtension components: - pos: -30.5,16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8557 type: CableApcExtension components: - pos: -30.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8558 type: CableApcExtension components: - pos: -30.5,18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8559 type: CableApcExtension components: - pos: -30.5,19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8560 type: CableApcExtension components: - pos: -30.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8561 type: CableApcExtension components: - pos: -30.5,21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8562 type: CableApcExtension components: - pos: -30.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8563 type: CableApcExtension components: - pos: -30.5,23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8564 type: CableApcExtension components: - pos: -30.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8565 type: CableApcExtension components: - pos: -29.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8566 type: CableApcExtension components: - pos: -28.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8567 type: CableApcExtension components: - pos: -27.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8568 type: CableApcExtension components: - pos: -26.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8569 type: CableApcExtension components: - pos: -25.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8570 type: CableApcExtension components: - pos: -25.5,23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8571 type: CableApcExtension components: - pos: -25.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8572 type: CableApcExtension components: - pos: -25.5,21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8573 type: CableApcExtension components: - pos: -25.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8574 type: CableApcExtension components: - pos: -25.5,19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8575 type: CableApcExtension components: - pos: -25.5,18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8576 type: CableApcExtension components: - pos: -25.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8577 type: CableApcExtension components: - pos: -25.5,16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8578 type: CableApcExtension components: - pos: -25.5,15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8579 type: hydroponicsTray components: @@ -64536,376 +76223,282 @@ entities: - pos: -32.5,9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8590 type: CableApcExtension components: - pos: -33.5,9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8591 type: CableApcExtension components: - pos: -34.5,9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8592 type: CableApcExtension components: - pos: -35.5,9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8593 type: CableApcExtension components: - pos: -36.5,9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8594 type: CableApcExtension components: - pos: -37.5,9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8595 type: CableApcExtension components: - pos: -38.5,9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8596 type: CableApcExtension components: - pos: -38.5,8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8597 type: CableApcExtension components: - pos: -38.5,10.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8598 type: CableApcExtension components: - pos: -38.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8599 type: CableApcExtension components: - pos: -38.5,12.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8600 type: CableApcExtension components: - pos: -38.5,13.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8601 type: CableApcExtension components: - pos: -38.5,14.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8602 type: CableApcExtension components: - pos: -38.5,15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8603 type: CableApcExtension components: - pos: -38.5,16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8604 type: CableApcExtension components: - pos: -38.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8605 type: CableApcExtension components: - pos: -38.5,18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8606 type: CableApcExtension components: - pos: -38.5,19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8607 type: CableApcExtension components: - pos: -38.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8608 type: CableApcExtension components: - pos: -38.5,21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8609 type: CableApcExtension components: - pos: -38.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8610 type: CableApcExtension components: - pos: -39.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8611 type: CableApcExtension components: - pos: -40.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8612 type: CableApcExtension components: - pos: -41.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8613 type: CableApcExtension components: - pos: -42.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8614 type: CableApcExtension components: - pos: -43.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8615 type: CableApcExtension components: - pos: -44.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8616 type: CableApcExtension components: - pos: -45.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8617 type: CableApcExtension components: - pos: -45.5,19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8618 type: CableApcExtension components: - pos: -45.5,18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8619 type: CableApcExtension components: - pos: -45.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8620 type: CableApcExtension components: - pos: -45.5,16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8621 type: CableApcExtension components: - pos: -45.5,15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8622 type: CableApcExtension components: - pos: -45.5,14.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8623 type: CableApcExtension components: - pos: -45.5,13.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8624 type: CableApcExtension components: - pos: -45.5,12.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8625 type: CableApcExtension components: - pos: -45.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8626 type: CableApcExtension components: - pos: -45.5,10.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8627 type: CableApcExtension components: - pos: -45.5,9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8628 type: CableApcExtension components: - pos: -45.5,8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8629 type: CableApcExtension components: - pos: -44.5,8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8630 type: CableApcExtension components: - pos: -43.5,8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8631 type: CableApcExtension components: - pos: -42.5,8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8632 type: CableApcExtension components: - pos: -41.5,8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8633 type: CableApcExtension components: - pos: -40.5,8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8634 type: CableApcExtension components: - pos: -39.5,8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8635 type: CableApcExtension components: - pos: -38.5,8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8636 type: PoweredSmallLight components: @@ -65046,136 +76639,102 @@ entities: - pos: -36.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8652 type: CableApcExtension components: - pos: -36.5,25.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8653 type: CableApcExtension components: - pos: -36.5,26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8654 type: CableApcExtension components: - pos: -36.5,27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8655 type: CableApcExtension components: - pos: -35.5,27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8656 type: CableApcExtension components: - pos: -34.5,27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8657 type: CableApcExtension components: - pos: -33.5,27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8658 type: CableApcExtension components: - pos: -32.5,27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8659 type: CableApcExtension components: - pos: -32.5,26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8660 type: CableApcExtension components: - pos: -32.5,25.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8661 type: CableApcExtension components: - pos: -32.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8662 type: CableApcExtension components: - pos: -33.5,23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8663 type: CableApcExtension components: - pos: -32.5,23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8664 type: CableApcExtension components: - pos: -34.5,23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8665 type: CableApcExtension components: - pos: -35.5,23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8666 type: CableApcExtension components: - pos: -36.5,23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8667 type: CableApcExtension components: - pos: -31.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8668 type: APCBasic components: @@ -65188,24 +76747,18 @@ entities: - pos: -33.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8670 type: CableApcExtension components: - pos: -34.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8671 type: CableApcExtension components: - pos: -35.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8672 type: CableApcExtension components: @@ -65218,56 +76771,42 @@ entities: - pos: -37.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8674 type: CableApcExtension components: - pos: -38.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8675 type: CableApcExtension components: - pos: -33.5,0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8676 type: CableApcExtension components: - pos: -33.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8677 type: CableApcExtension components: - pos: -33.5,2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8678 type: CableApcExtension components: - pos: -33.5,3.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8679 type: CableApcExtension components: - pos: -33.5,4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8680 type: CableApcExtension components: @@ -65515,8 +77054,6 @@ entities: - pos: -29.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8721 type: CableApcExtension components: @@ -65595,8 +77132,6 @@ entities: - pos: -23.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8734 type: CableApcExtension components: @@ -65783,16 +77318,12 @@ entities: - pos: -20.5,-5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8765 type: CableApcExtension components: - pos: -20.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8766 type: CableApcExtension components: @@ -65824,8 +77355,6 @@ entities: - pos: -55.5,-15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8771 type: CableApcExtension components: @@ -66066,120 +77595,90 @@ entities: - pos: -64.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8811 type: CableApcExtension components: - pos: -63.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8812 type: CableApcExtension components: - pos: -62.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8813 type: CableApcExtension components: - pos: -61.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8814 type: CableApcExtension components: - pos: -60.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8815 type: CableApcExtension components: - pos: -59.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8816 type: CableApcExtension components: - pos: -58.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8817 type: CableApcExtension components: - pos: -57.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8818 type: CableApcExtension components: - pos: -56.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8819 type: CableApcExtension components: - pos: -55.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8820 type: CableApcExtension components: - pos: -56.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8821 type: CableApcExtension components: - pos: -56.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8822 type: CableApcExtension components: - pos: -56.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8823 type: CableApcExtension components: - pos: -56.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8824 type: CableApcExtension components: - pos: -56.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8825 type: CableApcExtension components: @@ -66192,32 +77691,24 @@ entities: - pos: -60.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8827 type: CableApcExtension components: - pos: -60.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8828 type: CableApcExtension components: - pos: -60.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8829 type: CableApcExtension components: - pos: -60.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8830 type: PoweredLightPostSmall components: @@ -66238,72 +77729,54 @@ entities: - pos: -53.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8833 type: CableApcExtension components: - pos: -54.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8834 type: CableApcExtension components: - pos: -55.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8835 type: CableApcExtension components: - pos: -52.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8836 type: CableApcExtension components: - pos: -51.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8837 type: CableApcExtension components: - pos: -50.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8838 type: CableApcExtension components: - pos: -49.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8839 type: CableApcExtension components: - pos: -48.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8840 type: CableApcExtension components: - pos: -47.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8841 type: CableApcExtension components: @@ -66328,96 +77801,72 @@ entities: - pos: -46.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8845 type: CableApcExtension components: - pos: -45.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8846 type: CableApcExtension components: - pos: -44.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8847 type: CableApcExtension components: - pos: -43.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8848 type: CableApcExtension components: - pos: -43.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8849 type: CableApcExtension components: - pos: -42.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8850 type: CableApcExtension components: - pos: -41.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8851 type: CableApcExtension components: - pos: -41.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8852 type: CableApcExtension components: - pos: -41.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8853 type: CableApcExtension components: - pos: -41.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8854 type: CableApcExtension components: - pos: -41.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8855 type: CableApcExtension components: - pos: -41.5,-15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8856 type: CableApcExtension components: @@ -66466,32 +77915,24 @@ entities: - pos: -41.5,-7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8864 type: CableApcExtension components: - pos: -41.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8865 type: CableApcExtension components: - pos: -41.5,-5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8866 type: CableApcExtension components: - pos: -41.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8867 type: CableApcExtension components: @@ -66630,8 +78071,6 @@ entities: - pos: -45.5,-13.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8890 type: CableApcExtension components: @@ -66716,48 +78155,36 @@ entities: - pos: -58.5,-9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8904 type: CableApcExtension components: - pos: -58.5,-8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8905 type: CableApcExtension components: - pos: -56.5,-9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8906 type: CableApcExtension components: - pos: -56.5,-8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8907 type: CableApcExtension components: - pos: -64.5,-9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8908 type: CableApcExtension components: - pos: -64.5,-8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8909 type: CableApcExtension components: @@ -66788,16 +78215,12 @@ entities: - pos: -66.5,-9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8914 type: CableApcExtension components: - pos: -66.5,-8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8915 type: APCBasic components: @@ -66811,32 +78234,24 @@ entities: - pos: -6.5,5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8917 type: CableApcExtension components: - pos: -7.5,5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8918 type: CableApcExtension components: - pos: -8.5,5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8919 type: CableApcExtension components: - pos: -9.5,5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8920 type: CableApcExtension components: @@ -66861,32 +78276,24 @@ entities: - pos: -2.5,5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8924 type: CableApcExtension components: - pos: -1.5,5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8925 type: CableApcExtension components: - pos: -0.5,5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8926 type: CableApcExtension components: - pos: 0.5,5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8927 type: CableApcExtension components: @@ -66911,120 +78318,90 @@ entities: - pos: 0.5,9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8931 type: CableApcExtension components: - pos: 0.5,10.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8932 type: CableApcExtension components: - pos: 0.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8933 type: CableApcExtension components: - pos: -0.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8934 type: CableApcExtension components: - pos: -1.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8935 type: CableApcExtension components: - pos: -2.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8936 type: CableApcExtension components: - pos: -3.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8937 type: CableApcExtension components: - pos: -4.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8938 type: CableApcExtension components: - pos: -5.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8939 type: CableApcExtension components: - pos: -6.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8940 type: CableApcExtension components: - pos: -7.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8941 type: CableApcExtension components: - pos: -8.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8942 type: CableApcExtension components: - pos: -9.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8943 type: CableApcExtension components: - pos: -9.5,10.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8944 type: CableApcExtension components: - pos: -9.5,9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8945 type: CableApcExtension components: @@ -67163,8 +78540,6 @@ entities: - pos: -31.5,7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8968 type: CableApcExtension components: @@ -67177,8 +78552,6 @@ entities: - pos: -31.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8970 type: CableApcExtension components: @@ -67347,8 +78720,6 @@ entities: - pos: -3.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 8998 type: CableApcExtension components: @@ -67475,32 +78846,24 @@ entities: - pos: -5.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9019 type: CableApcExtension components: - pos: -6.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9020 type: CableApcExtension components: - pos: -6.5,-7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9021 type: CableApcExtension components: - pos: -6.5,-8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9022 type: CableApcExtension components: @@ -67573,8 +78936,6 @@ entities: - pos: 3.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9034 type: DisposalTrunk components: @@ -67609,8 +78970,6 @@ entities: pos: -13.5,-22.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 9039 type: Chair components: @@ -67618,16 +78977,12 @@ entities: pos: -13.5,-23.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 9040 type: CableApcExtension components: - pos: 1.5,0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9041 type: CableApcExtension components: @@ -67658,32 +79013,24 @@ entities: - pos: 4.5,0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9046 type: CableApcExtension components: - pos: 4.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9047 type: CableApcExtension components: - pos: 4.5,-1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9048 type: CableApcExtension components: - pos: 4.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9049 type: CableApcExtension components: @@ -67822,24 +79169,18 @@ entities: - pos: -12.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9072 type: CableApcExtension components: - pos: -11.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9073 type: CableApcExtension components: - pos: -10.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9074 type: CableApcExtension components: @@ -67852,88 +79193,66 @@ entities: - pos: -10.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9076 type: CableApcExtension components: - pos: -12.5,0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9077 type: CableApcExtension components: - pos: -12.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9078 type: CableApcExtension components: - pos: -12.5,-1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9079 type: CableApcExtension components: - pos: -12.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9080 type: CableApcExtension components: - pos: -12.5,-3.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9081 type: CableApcExtension components: - pos: -12.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9082 type: CableApcExtension components: - pos: -12.5,-5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9083 type: CableApcExtension components: - pos: -12.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9084 type: CableApcExtension components: - pos: -11.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9085 type: CableApcExtension components: - pos: -10.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9086 type: APCBasic components: @@ -68007,8 +79326,6 @@ entities: - pos: 7.5,-9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9098 type: CableApcExtension components: @@ -68039,160 +79356,120 @@ entities: - pos: 11.5,-9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9103 type: CableApcExtension components: - pos: 12.5,-9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9104 type: CableApcExtension components: - pos: 13.5,-9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9105 type: CableApcExtension components: - pos: 14.5,-9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9106 type: CableApcExtension components: - pos: 15.5,-9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9107 type: CableApcExtension components: - pos: 16.5,-9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9108 type: CableApcExtension components: - pos: 17.5,-9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9109 type: CableApcExtension components: - pos: 18.5,-9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9110 type: CableApcExtension components: - pos: 19.5,-9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9111 type: CableApcExtension components: - pos: 7.5,-5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9112 type: CableApcExtension components: - pos: 7.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9113 type: CableApcExtension components: - pos: 7.5,-3.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9114 type: CableApcExtension components: - pos: 7.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9115 type: CableApcExtension components: - pos: 7.5,-1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9116 type: CableApcExtension components: - pos: 7.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9117 type: CableApcExtension components: - pos: 7.5,0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9118 type: CableApcExtension components: - pos: 7.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9119 type: CableApcExtension components: - pos: 7.5,2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9120 type: CableApcExtension components: - pos: 7.5,3.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9121 type: CableApcExtension components: - pos: 7.5,4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9122 type: CableApcExtension components: @@ -68247,8 +79524,6 @@ entities: - pos: 14.5,2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9131 type: CableApcExtension components: @@ -68321,32 +79596,24 @@ entities: - pos: 11.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9143 type: CableApcExtension components: - pos: 10.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9144 type: CableApcExtension components: - pos: 9.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9145 type: CableApcExtension components: - pos: 8.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9146 type: CableApcExtension components: @@ -68371,40 +79638,30 @@ entities: - pos: 18.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9150 type: CableApcExtension components: - pos: 19.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9151 type: CableApcExtension components: - pos: 20.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9152 type: CableApcExtension components: - pos: 21.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9153 type: CableApcExtension components: - pos: 22.5,11.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9154 type: CableApcExtension components: @@ -68532,8 +79789,6 @@ entities: - pos: 25.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9174 type: CableApcExtension components: @@ -68582,8 +79837,6 @@ entities: - pos: 29.5,5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9182 type: CableApcExtension components: @@ -68632,16 +79885,12 @@ entities: - pos: 27.5,8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9190 type: CableApcExtension components: - pos: 27.5,9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9191 type: CableApcExtension components: @@ -68666,104 +79915,78 @@ entities: - pos: 23.5,9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9195 type: CableApcExtension components: - pos: 22.5,9.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9196 type: CableApcExtension components: - pos: 22.5,8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9197 type: CableApcExtension components: - pos: 22.5,7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9198 type: CableApcExtension components: - pos: 22.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9199 type: CableApcExtension components: - pos: 22.5,5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9200 type: CableApcExtension components: - pos: 22.5,4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9201 type: CableApcExtension components: - pos: 22.5,3.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9202 type: CableApcExtension components: - pos: 22.5,2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9203 type: CableApcExtension components: - pos: 22.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9204 type: CableApcExtension components: - pos: 21.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9205 type: CableApcExtension components: - pos: 20.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9206 type: CableApcExtension components: - pos: 19.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9207 type: CableApcExtension components: @@ -68788,56 +80011,42 @@ entities: - pos: 19.5,0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9211 type: CableApcExtension components: - pos: 19.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9212 type: CableApcExtension components: - pos: 19.5,-1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9213 type: CableApcExtension components: - pos: 19.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9214 type: CableApcExtension components: - pos: 20.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9215 type: CableApcExtension components: - pos: 21.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9216 type: CableApcExtension components: - pos: 22.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9217 type: CableApcExtension components: @@ -68850,88 +80059,66 @@ entities: - pos: 21.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9219 type: CableApcExtension components: - pos: 23.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9220 type: CableApcExtension components: - pos: 24.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9221 type: CableApcExtension components: - pos: 24.5,-3.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9222 type: CableApcExtension components: - pos: 24.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9223 type: CableApcExtension components: - pos: 24.5,-5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9224 type: CableApcExtension components: - pos: 24.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9225 type: CableApcExtension components: - pos: 24.5,-7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9226 type: CableApcExtension components: - pos: 23.5,-7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9227 type: CableApcExtension components: - pos: 22.5,-7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9228 type: CableApcExtension components: - pos: 21.5,-7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9229 type: CableApcExtension components: @@ -69226,24 +80413,18 @@ entities: - pos: 25.5,0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9278 type: CableApcExtension components: - pos: 25.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9279 type: CableApcExtension components: - pos: 24.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9280 type: CableApcExtension components: @@ -69256,8 +80437,6 @@ entities: - pos: 23.5,-1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9282 type: APCBasic components: @@ -69271,8 +80450,6 @@ entities: - pos: 11.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9284 type: CableApcExtension components: @@ -69321,40 +80498,30 @@ entities: - pos: 19.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9292 type: CableApcExtension components: - pos: 19.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9293 type: CableApcExtension components: - pos: 19.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9294 type: CableApcExtension components: - pos: 19.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9295 type: CableApcExtension components: - pos: 19.5,-15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9296 type: CableApcExtension components: @@ -69757,96 +80924,72 @@ entities: - pos: 15.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9363 type: CableApcExtension components: - pos: 16.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9364 type: CableApcExtension components: - pos: 17.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9365 type: CableApcExtension components: - pos: 18.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9366 type: CableApcExtension components: - pos: 19.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9367 type: CableApcExtension components: - pos: 19.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9368 type: CableApcExtension components: - pos: 19.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9369 type: CableApcExtension components: - pos: 16.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9370 type: CableApcExtension components: - pos: 16.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9371 type: CableApcExtension components: - pos: 17.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9372 type: CableApcExtension components: - pos: 18.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9373 type: CableApcExtension components: - pos: 19.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9374 type: CableApcExtension components: @@ -69901,144 +81044,108 @@ entities: - pos: 19.5,-25.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9383 type: CableApcExtension components: - pos: 19.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9384 type: CableApcExtension components: - pos: 19.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9385 type: CableApcExtension components: - pos: 19.5,-28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9386 type: CableApcExtension components: - pos: 19.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9387 type: CableApcExtension components: - pos: 19.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9388 type: CableApcExtension components: - pos: 18.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9389 type: CableApcExtension components: - pos: 17.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9390 type: CableApcExtension components: - pos: 16.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9391 type: CableApcExtension components: - pos: 15.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9392 type: CableApcExtension components: - pos: 14.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9393 type: CableApcExtension components: - pos: 13.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9394 type: CableApcExtension components: - pos: 12.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9395 type: CableApcExtension components: - pos: 12.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9396 type: CableApcExtension components: - pos: 12.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9397 type: CableApcExtension components: - pos: 11.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9398 type: CableApcExtension components: - pos: 10.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9399 type: CableApcExtension components: - pos: 9.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9400 type: CableApcExtension components: @@ -70159,16 +81266,12 @@ entities: - pos: 8.5,-44.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9420 type: CableApcExtension components: - pos: 9.5,-44.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9421 type: CableApcExtension components: @@ -70181,8 +81284,6 @@ entities: - pos: 9.5,-42.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9423 type: CableApcExtension components: @@ -70291,8 +81392,6 @@ entities: - pos: 16.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9441 type: CableApcExtension components: @@ -70317,24 +81416,18 @@ entities: - pos: 20.5,-34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9445 type: CableApcExtension components: - pos: 21.5,-34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9446 type: CableApcExtension components: - pos: 22.5,-34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9447 type: CableApcExtension components: @@ -70365,24 +81458,18 @@ entities: - pos: 20.5,-38.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9452 type: CableApcExtension components: - pos: 21.5,-38.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9453 type: CableApcExtension components: - pos: 22.5,-38.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9454 type: CableApcExtension components: @@ -70431,16 +81518,12 @@ entities: - pos: 18.5,-45.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9462 type: CableApcExtension components: - pos: 17.5,-45.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9463 type: CableApcExtension components: @@ -70483,16 +81566,12 @@ entities: - pos: 10.5,-45.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9470 type: CableApcExtension components: - pos: 9.5,-45.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9471 type: CableApcExtension components: @@ -70535,16 +81614,12 @@ entities: - pos: 8.5,-34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9478 type: CableApcExtension components: - pos: 9.5,-34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9479 type: CableApcExtension components: @@ -70563,8 +81638,6 @@ entities: - pos: 17.5,-33.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9482 type: APCBasic components: @@ -70583,8 +81656,6 @@ entities: - pos: 7.5,-46.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9485 type: CableApcExtension components: @@ -70627,56 +81698,42 @@ entities: - pos: 6.5,-52.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9492 type: CableApcExtension components: - pos: 6.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9493 type: CableApcExtension components: - pos: 5.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9494 type: CableApcExtension components: - pos: 4.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9495 type: CableApcExtension components: - pos: 3.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9496 type: CableApcExtension components: - pos: 3.5,-54.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9497 type: CableApcExtension components: - pos: 3.5,-55.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9498 type: SolarPanel components: @@ -70690,40 +81747,30 @@ entities: - pos: -83.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9500 type: CableHV components: - pos: -82.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9501 type: CableHV components: - pos: -81.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9502 type: CableHV components: - pos: -81.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9503 type: CableHV components: - pos: -81.5,-25.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9504 type: SignDirectionalJanitor components: @@ -70773,64 +81820,48 @@ entities: - pos: 0.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9512 type: CableApcExtension components: - pos: -0.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9513 type: CableApcExtension components: - pos: -1.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9514 type: CableApcExtension components: - pos: -2.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9515 type: CableApcExtension components: - pos: -3.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9516 type: CableApcExtension components: - pos: -4.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9517 type: CableApcExtension components: - pos: -5.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9518 type: CableApcExtension components: - pos: -5.5,-47.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9519 type: CableApcExtension components: @@ -70939,8 +81970,6 @@ entities: - pos: -5.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9537 type: CableApcExtension components: @@ -71043,8 +82072,6 @@ entities: - pos: -12.5,-49.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9554 type: CableApcExtension components: @@ -71195,136 +82222,102 @@ entities: - pos: -8.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9579 type: CableApcExtension components: - pos: -9.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9580 type: CableApcExtension components: - pos: -10.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9581 type: CableApcExtension components: - pos: -11.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9582 type: CableApcExtension components: - pos: -12.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9583 type: CableApcExtension components: - pos: -13.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9584 type: CableApcExtension components: - pos: -14.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9585 type: CableApcExtension components: - pos: -14.5,-57.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9586 type: CableApcExtension components: - pos: -14.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9587 type: CableApcExtension components: - pos: -15.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9588 type: CableApcExtension components: - pos: -16.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9589 type: CableApcExtension components: - pos: -17.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9590 type: CableApcExtension components: - pos: -18.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9591 type: CableApcExtension components: - pos: -19.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9592 type: CableApcExtension components: - pos: -19.5,-55.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9593 type: CableApcExtension components: - pos: -19.5,-54.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9594 type: CableApcExtension components: - pos: -19.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9595 type: CableApcExtension components: @@ -71481,80 +82474,60 @@ entities: - pos: -3.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9621 type: CableApcExtension components: - pos: -2.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9622 type: CableApcExtension components: - pos: -1.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9623 type: CableApcExtension components: - pos: -0.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9624 type: CableApcExtension components: - pos: 0.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9625 type: CableApcExtension components: - pos: 0.5,-57.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9626 type: CableApcExtension components: - pos: 0.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9627 type: CableApcExtension components: - pos: 0.5,-55.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9628 type: CableApcExtension components: - pos: 0.5,-54.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9629 type: CableApcExtension components: - pos: 0.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9630 type: APCBasic components: @@ -71568,8 +82541,6 @@ entities: - pos: -3.5,-70.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9632 type: CableApcExtension components: @@ -71744,16 +82715,12 @@ entities: - pos: 0.5,-70.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9661 type: CableApcExtension components: - pos: 1.5,-70.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9662 type: CableApcExtension components: @@ -71766,16 +82733,12 @@ entities: - pos: 0.5,-72.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9664 type: CableApcExtension components: - pos: 1.5,-72.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9665 type: CableApcExtension components: @@ -71830,64 +82793,48 @@ entities: - pos: -0.5,-81.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9674 type: CableApcExtension components: - pos: -1.5,-81.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9675 type: CableApcExtension components: - pos: -2.5,-81.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9676 type: CableApcExtension components: - pos: -3.5,-81.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9677 type: CableApcExtension components: - pos: -4.5,-81.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9678 type: CableApcExtension components: - pos: -5.5,-81.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9679 type: CableApcExtension components: - pos: -6.5,-81.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9680 type: CableApcExtension components: - pos: -7.5,-81.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9681 type: Poweredlight components: @@ -71963,16 +82910,12 @@ entities: - pos: -12.5,-74.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9692 type: CableApcExtension components: - pos: -12.5,-75.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9693 type: CableApcExtension components: @@ -71991,8 +82934,6 @@ entities: - pos: -10.5,-71.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9696 type: VendingMachineCondiments components: @@ -72013,24 +82954,18 @@ entities: - pos: -11.5,-77.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9699 type: CableApcExtension components: - pos: -10.5,-77.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9700 type: CableApcExtension components: - pos: -9.5,-77.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9701 type: APCBasic components: @@ -72044,8 +82979,6 @@ entities: - pos: 3.5,-36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9703 type: CableApcExtension components: @@ -72076,32 +83009,24 @@ entities: - pos: -5.5,-40.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9708 type: CableApcExtension components: - pos: -4.5,-40.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9709 type: CableApcExtension components: - pos: -3.5,-40.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9710 type: CableApcExtension components: - pos: -2.5,-40.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9711 type: Table components: @@ -72138,88 +83063,66 @@ entities: - pos: 0.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9717 type: CableApcExtension components: - pos: 0.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9718 type: CableApcExtension components: - pos: 0.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9719 type: CableApcExtension components: - pos: 0.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9720 type: CableApcExtension components: - pos: -1.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9721 type: CableApcExtension components: - pos: -5.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9722 type: CableApcExtension components: - pos: -7.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9723 type: CableApcExtension components: - pos: -8.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9724 type: CableApcExtension components: - pos: -9.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9725 type: CableApcExtension components: - pos: -10.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9726 type: CableApcExtension components: - pos: -10.5,-33.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9727 type: CableApcExtension components: @@ -72238,112 +83141,84 @@ entities: - pos: -10.5,-36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9730 type: CableApcExtension components: - pos: -10.5,-37.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9731 type: CableApcExtension components: - pos: -10.5,-38.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9732 type: CableApcExtension components: - pos: -2.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9733 type: CableApcExtension components: - pos: 0.5,-39.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9734 type: CableApcExtension components: - pos: 0.5,-40.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9735 type: CableApcExtension components: - pos: -0.5,-40.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9736 type: CableApcExtension components: - pos: -1.5,-40.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9737 type: CableApcExtension components: - pos: -10.5,-39.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9738 type: CableApcExtension components: - pos: -9.5,-40.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9739 type: CableApcExtension components: - pos: -8.5,-40.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9740 type: CableApcExtension components: - pos: -7.5,-40.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9741 type: CableApcExtension components: - pos: -6.5,-40.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9742 type: CableApcExtension components: - pos: -10.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9743 type: CableApcExtension components: @@ -72392,48 +83267,36 @@ entities: - pos: -10.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9751 type: CableApcExtension components: - pos: -10.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9752 type: CableApcExtension components: - pos: -4.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9753 type: CableApcExtension components: - pos: 0.5,-36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9754 type: CableApcExtension components: - pos: 0.5,-33.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9755 type: CableApcExtension components: - pos: 0.5,-37.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9756 type: CableHV components: @@ -72447,17 +83310,7 @@ entities: pos: 4.5,-29.5 parent: 6 type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - type: ActiveEmergencyLight -- uid: 9758 - type: AirlockMaintLocked - components: - - pos: -24.5,-47.5 - parent: 6 - type: Transform - uid: 9759 type: APCBasic components: @@ -72476,8 +83329,6 @@ entities: - pos: -1.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9762 type: CableApcExtension components: @@ -72532,16 +83383,12 @@ entities: - pos: -5.5,-15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9771 type: CableApcExtension components: - pos: -6.5,-15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9772 type: CableApcExtension components: @@ -72776,8 +83623,6 @@ entities: - pos: 3.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9811 type: CableApcExtension components: @@ -72808,8 +83653,6 @@ entities: - pos: -6.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9816 type: CableApcExtension components: @@ -72836,24 +83679,18 @@ entities: - pos: -6.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9820 type: CableApcExtension components: - pos: -6.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9821 type: CableApcExtension components: - pos: -6.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9822 type: CableApcExtension components: @@ -72926,8 +83763,6 @@ entities: - pos: -11.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9834 type: CableApcExtension components: @@ -73072,8 +83907,6 @@ entities: - pos: -12.5,-25.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9858 type: CableApcExtension components: @@ -73128,8 +83961,6 @@ entities: - pos: -25.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9867 type: CableApcExtension components: @@ -73208,8 +84039,6 @@ entities: - pos: -21.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9880 type: CableApcExtension components: @@ -73270,8 +84099,6 @@ entities: - pos: -17.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9890 type: CableApcExtension components: @@ -73561,8 +84388,6 @@ entities: - pos: -21.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9938 type: CableApcExtension components: @@ -73599,56 +84424,42 @@ entities: - pos: -23.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9944 type: CableApcExtension components: - pos: -22.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9945 type: CableApcExtension components: - pos: -21.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9946 type: CableApcExtension components: - pos: -20.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9947 type: CableApcExtension components: - pos: -19.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9948 type: CableApcExtension components: - pos: -18.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9949 type: CableApcExtension components: - pos: -17.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9950 type: CableApcExtension components: @@ -73859,96 +84670,72 @@ entities: - pos: -24.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9985 type: CableApcExtension components: - pos: -25.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9986 type: CableApcExtension components: - pos: -26.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9987 type: CableApcExtension components: - pos: -27.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9988 type: CableApcExtension components: - pos: -28.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9989 type: CableApcExtension components: - pos: -29.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9990 type: CableApcExtension components: - pos: -29.5,-34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9991 type: CableApcExtension components: - pos: -29.5,-33.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9992 type: CableApcExtension components: - pos: -29.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9993 type: CableApcExtension components: - pos: -29.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9994 type: CableApcExtension components: - pos: -29.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9995 type: CableApcExtension components: - pos: -29.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 9996 type: CableApcExtension components: @@ -73985,16 +84772,12 @@ entities: - pos: -30.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10002 type: CableApcExtension components: - pos: -31.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10003 type: CableApcExtension components: @@ -74013,24 +84796,18 @@ entities: - pos: -35.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10006 type: CableApcExtension components: - pos: -36.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10007 type: CableApcExtension components: - pos: -37.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10008 type: CableApcExtension components: @@ -74109,112 +84886,84 @@ entities: - pos: -33.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10021 type: CableApcExtension components: - pos: -33.5,-25.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10022 type: CableApcExtension components: - pos: -33.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10023 type: CableApcExtension components: - pos: -33.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10024 type: CableApcExtension components: - pos: -33.5,-28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10025 type: CableApcExtension components: - pos: -34.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10026 type: CableApcExtension components: - pos: -35.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10027 type: CableApcExtension components: - pos: -36.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10028 type: CableApcExtension components: - pos: -37.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10029 type: CableApcExtension components: - pos: -38.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10030 type: CableApcExtension components: - pos: -39.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10031 type: CableApcExtension components: - pos: -40.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10032 type: CableApcExtension components: - pos: -41.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10033 type: CableApcExtension components: - pos: -41.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10034 type: CableApcExtension components: @@ -74294,8 +85043,6 @@ entities: - pos: -44.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10047 type: CableApcExtension components: @@ -74332,248 +85079,186 @@ entities: - pos: -43.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10053 type: CableApcExtension components: - pos: -43.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10054 type: CableApcExtension components: - pos: -43.5,-25.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10055 type: CableApcExtension components: - pos: -43.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10056 type: CableApcExtension components: - pos: -43.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10057 type: CableApcExtension components: - pos: -44.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10058 type: CableApcExtension components: - pos: -45.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10059 type: CableApcExtension components: - pos: -46.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10060 type: CableApcExtension components: - pos: -47.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10061 type: CableApcExtension components: - pos: -48.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10062 type: CableApcExtension components: - pos: -49.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10063 type: CableApcExtension components: - pos: -50.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10064 type: CableApcExtension components: - pos: -51.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10065 type: CableApcExtension components: - pos: -51.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10066 type: CableApcExtension components: - pos: -51.5,-25.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10067 type: CableApcExtension components: - pos: -51.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10068 type: CableApcExtension components: - pos: -51.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10069 type: CableApcExtension components: - pos: -49.5,-28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10070 type: CableApcExtension components: - pos: -49.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10071 type: CableApcExtension components: - pos: -49.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10072 type: CableApcExtension components: - pos: -49.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10073 type: CableApcExtension components: - pos: -49.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10074 type: CableApcExtension components: - pos: -49.5,-33.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10075 type: CableApcExtension components: - pos: -49.5,-34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10076 type: CableApcExtension components: - pos: -49.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10077 type: CableApcExtension components: - pos: -49.5,-36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10078 type: CableApcExtension components: - pos: -49.5,-37.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10079 type: CableApcExtension components: - pos: -49.5,-38.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10080 type: CableApcExtension components: - pos: -49.5,-39.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10081 type: CableApcExtension components: - pos: -49.5,-40.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10082 type: CableApcExtension components: - pos: -49.5,-41.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10083 type: CableApcExtension components: @@ -74862,112 +85547,84 @@ entities: - pos: -33.5,-37.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10131 type: CableApcExtension components: - pos: -34.5,-37.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10132 type: CableApcExtension components: - pos: -35.5,-37.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10133 type: CableApcExtension components: - pos: -36.5,-37.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10134 type: CableApcExtension components: - pos: -36.5,-36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10135 type: CableApcExtension components: - pos: -36.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10136 type: CableApcExtension components: - pos: -36.5,-34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10137 type: CableApcExtension components: - pos: -36.5,-33.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10138 type: CableApcExtension components: - pos: -36.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10139 type: CableApcExtension components: - pos: -36.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10140 type: CableApcExtension components: - pos: -36.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10141 type: CableApcExtension components: - pos: -36.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10142 type: CableApcExtension components: - pos: -33.5,-36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10143 type: CableApcExtension components: - pos: -33.5,-35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10144 type: CableApcExtension components: @@ -74986,128 +85643,96 @@ entities: - pos: -35.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10147 type: CableApcExtension components: - pos: -34.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10148 type: CableApcExtension components: - pos: -32.5,-37.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10149 type: CableApcExtension components: - pos: -31.5,-37.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10150 type: CableApcExtension components: - pos: -30.5,-37.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10151 type: CableApcExtension components: - pos: -29.5,-37.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10152 type: CableApcExtension components: - pos: -28.5,-37.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10153 type: CableApcExtension components: - pos: -28.5,-38.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10154 type: CableApcExtension components: - pos: -28.5,-39.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10155 type: CableApcExtension components: - pos: -28.5,-40.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10156 type: CableApcExtension components: - pos: -28.5,-41.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10157 type: CableApcExtension components: - pos: -27.5,-41.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10158 type: CableApcExtension components: - pos: -26.5,-41.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10159 type: CableApcExtension components: - pos: -25.5,-41.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10160 type: CableApcExtension components: - pos: -24.5,-41.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10161 type: CableApcExtension components: - pos: -23.5,-41.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10162 type: CableApcExtension components: @@ -75270,24 +85895,18 @@ entities: - pos: -55.5,-34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10189 type: CableApcExtension components: - pos: -56.5,-34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10190 type: CableApcExtension components: - pos: -57.5,-34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10191 type: CableApcExtension components: @@ -75331,92 +85950,89 @@ entities: parent: 6 type: Transform - uid: 10198 - type: CableTerminal + type: CableApcExtension components: - - pos: -57.5,-46.5 + - pos: -51.5,-43.5 parent: 6 type: Transform - uid: 10199 - type: CableHV + type: CableApcExtension components: - - pos: -57.5,-46.5 + - pos: -52.5,-43.5 parent: 6 type: Transform - uid: 10200 - type: CableHV + type: CableApcExtension components: - - pos: -57.5,-45.5 + - pos: -53.5,-43.5 parent: 6 type: Transform - uid: 10201 - type: CableHV + type: CableApcExtension components: - - pos: -57.5,-43.5 + - pos: -54.5,-43.5 parent: 6 type: Transform - uid: 10202 - type: CableHV + type: CableApcExtension components: - - pos: -57.5,-44.5 + - pos: -55.5,-43.5 parent: 6 type: Transform - uid: 10203 - type: CableHV + type: CableApcExtension components: - pos: -56.5,-43.5 parent: 6 type: Transform - uid: 10204 - type: ClothingHandsGlovesPowerglove + type: CableApcExtension components: - - pos: -56.53125,-41.442997 + - pos: -57.5,-43.5 parent: 6 type: Transform - uid: 10205 - type: TableReinforced + type: CableApcExtension components: - - pos: -56.5,-41.5 + - pos: -57.5,-45.5 parent: 6 type: Transform - uid: 10206 - type: APCBasic + type: CableApcExtension components: - - pos: -56.5,-40.5 + - pos: -56.5,-45.5 parent: 6 type: Transform - uid: 10207 - type: CableHV + type: CableApcExtension components: - - pos: -55.5,-43.5 + - pos: -55.5,-45.5 parent: 6 type: Transform - uid: 10208 - type: CableHV + type: CableApcExtension components: - - pos: -54.5,-43.5 + - pos: -54.5,-45.5 parent: 6 type: Transform - uid: 10209 - type: SubstationBasic + type: CableApcExtension components: - - pos: -56.5,-47.5 + - pos: -53.5,-45.5 parent: 6 type: Transform - uid: 10210 - type: HighSecCommandLocked + type: CableApcExtension components: - - pos: -51.5,-45.5 + - pos: -52.5,-45.5 parent: 6 type: Transform - uid: 10211 - type: GasPipeStraight + type: CableApcExtension components: - - rot: -1.5707963267948966 rad - pos: -53.5,-45.5 + - pos: -51.5,-45.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 10212 type: CableApcExtension components: @@ -75442,264 +86058,198 @@ entities: - pos: -36.5,-51.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10216 type: CableApcExtension components: - pos: -37.5,-51.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10217 type: CableApcExtension components: - pos: -37.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10218 type: CableApcExtension components: - pos: -37.5,-54.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10219 type: CableApcExtension components: - pos: -39.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10220 type: CableApcExtension components: - pos: -39.5,-54.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10221 type: CableApcExtension components: - pos: -39.5,-55.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10222 type: CableApcExtension components: - pos: -39.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10223 type: CableApcExtension components: - pos: -39.5,-57.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10224 type: CableApcExtension components: - pos: -39.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10225 type: CableApcExtension components: - pos: -39.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10226 type: CableApcExtension components: - pos: -38.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10227 type: CableApcExtension components: - pos: -37.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10228 type: CableApcExtension components: - pos: -36.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10229 type: CableApcExtension components: - pos: -35.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10230 type: CableApcExtension components: - pos: -34.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10231 type: CableApcExtension components: - pos: -33.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10232 type: CableApcExtension components: - pos: -32.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10233 type: CableApcExtension components: - pos: -31.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10234 type: CableApcExtension components: - pos: -30.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10235 type: CableApcExtension components: - pos: -29.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10236 type: CableApcExtension components: - pos: -28.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10237 type: CableApcExtension components: - pos: -27.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10238 type: CableApcExtension components: - pos: -26.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10239 type: CableApcExtension components: - pos: -25.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10240 type: CableApcExtension components: - pos: -24.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10241 type: CableApcExtension components: - pos: -23.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10242 type: CableApcExtension components: - pos: -23.5,-60.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10243 type: CableApcExtension components: - pos: -23.5,-61.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10244 type: CableApcExtension components: - pos: -23.5,-62.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10245 type: CableApcExtension components: - pos: -23.5,-63.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10246 type: CableApcExtension components: - pos: -23.5,-64.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10247 type: CableApcExtension components: - pos: -23.5,-65.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10248 type: PoweredLightPostSmall components: @@ -75714,32 +86264,24 @@ entities: - pos: -22.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10250 type: CableApcExtension components: - pos: -21.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10251 type: CableApcExtension components: - pos: -20.5,-59.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10252 type: CableApcExtension components: - pos: -31.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10253 type: CableApcExtension components: @@ -75860,8 +86402,6 @@ entities: - pos: -28.5,-51.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10273 type: CableApcExtension components: @@ -76120,8 +86660,6 @@ entities: - pos: -16.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10316 type: CableApcExtension components: @@ -76344,16 +86882,12 @@ entities: - pos: -29.5,14.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10353 type: CableMV components: - pos: -30.5,14.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10354 type: CableMV components: @@ -76402,16 +86936,12 @@ entities: - pos: -31.5,7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10362 type: CableMV components: - pos: -31.5,6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10363 type: CableMV components: @@ -76526,8 +87056,6 @@ entities: - pos: -29.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10382 type: CableMV components: @@ -76540,8 +87068,6 @@ entities: - pos: -33.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10384 type: CableMV components: @@ -76554,8 +87080,6 @@ entities: - pos: -10.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10386 type: CableMV components: @@ -76568,144 +87092,108 @@ entities: - pos: -10.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10388 type: CableMV components: - pos: -11.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10389 type: CableMV components: - pos: -12.5,1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10390 type: CableMV components: - pos: -12.5,0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10391 type: CableMV components: - pos: -12.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10392 type: CableMV components: - pos: -12.5,-1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10393 type: CableMV components: - pos: -12.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10394 type: CableMV components: - pos: -12.5,-3.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10395 type: CableMV components: - pos: -12.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10396 type: CableMV components: - pos: -12.5,-5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10397 type: CableMV components: - pos: -12.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10398 type: CableMV components: - pos: -11.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10399 type: CableMV components: - pos: -10.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10400 type: CableMV components: - pos: -9.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10401 type: CableMV components: - pos: -8.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10402 type: CableMV components: - pos: -7.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10403 type: CableMV components: - pos: -6.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10404 type: CableMV components: - pos: -5.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10405 type: CableMV components: @@ -76730,8 +87218,6 @@ entities: - pos: -3.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10409 type: CableMV components: @@ -76816,24 +87302,18 @@ entities: - pos: -6.5,5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10423 type: CableMV components: - pos: -6.5,-7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10424 type: CableMV components: - pos: -6.5,-8.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10425 type: CableMV components: @@ -76876,16 +87356,12 @@ entities: - pos: -6.5,-15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10432 type: CableMV components: - pos: -5.5,-15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10433 type: CableMV components: @@ -77006,16 +87482,12 @@ entities: - pos: -6.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10453 type: CableMV components: - pos: -1.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10454 type: CableMV components: @@ -77028,8 +87500,6 @@ entities: - pos: 21.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10456 type: CableMV components: @@ -77042,32 +87512,24 @@ entities: - pos: 21.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10458 type: CableMV components: - pos: 22.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10459 type: CableMV components: - pos: 23.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10460 type: CableMV components: - pos: 23.5,-1.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10461 type: CableMV components: @@ -77080,24 +87542,18 @@ entities: - pos: 24.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10463 type: CableMV components: - pos: 25.5,-0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10464 type: CableMV components: - pos: 25.5,0.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10465 components: - type: MetaData @@ -77107,7 +87563,7 @@ entities: - chunks: 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAABbAAAAWwAAAFsAAABbAAAAWwAAAFsAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAWwAAAFsAAABbAAAAWwAAAFsAAABbAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAFsAAABbAAAAWwAAAFsAAABbAAAAWwAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAABbAAAAWwAAAFsAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAWwAAAFsAAABbAAAAWwAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAABXAAAAVwAAAFcAAABXAAAAVwAAAFcAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAVwAAAFcAAABXAAAAVwAAAFcAAABXAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAFcAAABXAAAAVwAAAFcAAABXAAAAVwAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAABXAAAAVwAAAFcAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAVwAAAFcAAABXAAAAVwAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -77125,74 +87581,224 @@ entities: path: /Audio/Effects/alert.ogg type: Gravity - chunkCollection: - version: 2 - nodes: - - node: + 0,-1: + 0: color: '#FFFFFFFF' id: Remains - decals: - 0: 8.497086,-4.8336945 + coordinates: 8.497086,-4.8336945 type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 52428 - 0,-4: - 0: 61440 - 0,-3: - 0: 65535 - 0,-1: - 0: 65535 - -1,-4: - 0: 49152 - -1,-3: - 0: 52428 - -1,-2: - 0: 52428 - 0,-2: - 0: 65535 - 1,-4: - 0: 61440 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-4: - 0: 61440 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 4096 - 3,-3: - 0: 4369 - 3,-2: - 0: 4369 - 3,-1: - 0: 4369 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 + - tiles: + -1,-1: 0 + 0,-13: 0 + 0,-12: 0 + 0,-11: 0 + 0,-10: 0 + 0,-9: 0 + 1,-3: 0 + 1,-2: 0 + 1,-1: 0 + -2,-13: 0 + -2,-12: 0 + -2,-11: 0 + -2,-10: 0 + -2,-9: 0 + -2,-8: 0 + -2,-7: 0 + -2,-6: 0 + -2,-5: 0 + -2,-4: 0 + -2,-3: 0 + -2,-2: 0 + -2,-1: 0 + -1,-13: 0 + -1,-12: 0 + -1,-11: 0 + -1,-10: 0 + -1,-9: 0 + -1,-8: 0 + -1,-7: 0 + -1,-6: 0 + -1,-5: 0 + -1,-4: 0 + -1,-3: 0 + -1,-2: 0 + 0,-8: 0 + 0,-7: 0 + 0,-6: 0 + 0,-5: 0 + 0,-4: 0 + 0,-3: 0 + 0,-2: 0 + 0,-1: 0 + 1,-13: 0 + 1,-12: 0 + 1,-11: 0 + 1,-10: 0 + 1,-9: 0 + 1,-8: 0 + 1,-7: 0 + 1,-6: 0 + 1,-5: 0 + 1,-4: 0 + 2,-13: 0 + 2,-12: 0 + 2,-11: 0 + 2,-10: 0 + 2,-9: 0 + 2,-8: 0 + 2,-7: 0 + 2,-6: 0 + 2,-5: 0 + 2,-4: 0 + 2,-3: 0 + 2,-2: 0 + 2,-1: 0 + 3,-13: 0 + 3,-12: 0 + 3,-11: 0 + 3,-10: 0 + 3,-9: 0 + 3,-8: 0 + 3,-7: 0 + 3,-6: 0 + 3,-5: 0 + 3,-4: 0 + 3,-3: 0 + 3,-2: 0 + 3,-1: 0 + 4,-13: 0 + 4,-12: 0 + 4,-11: 0 + 4,-10: 0 + 4,-9: 0 + 4,-8: 0 + 4,-7: 0 + 4,-6: 0 + 4,-5: 0 + 4,-4: 0 + 4,-3: 0 + 4,-2: 0 + 4,-1: 0 + 5,-13: 0 + 5,-12: 0 + 5,-11: 0 + 5,-10: 0 + 5,-9: 0 + 5,-8: 0 + 5,-7: 0 + 5,-6: 0 + 5,-5: 0 + 5,-4: 0 + 5,-3: 0 + 5,-2: 0 + 5,-1: 0 + 6,-13: 0 + 6,-12: 0 + 6,-11: 0 + 6,-10: 0 + 6,-9: 0 + 6,-8: 0 + 6,-7: 0 + 6,-6: 0 + 6,-5: 0 + 6,-4: 0 + 6,-3: 0 + 6,-2: 0 + 6,-1: 0 + 7,-13: 0 + 7,-12: 0 + 7,-11: 0 + 7,-10: 0 + 7,-9: 0 + 7,-8: 0 + 7,-7: 0 + 7,-6: 0 + 7,-5: 0 + 7,-4: 0 + 7,-3: 0 + 7,-2: 0 + 7,-1: 0 + 8,-13: 0 + 8,-12: 0 + 8,-11: 0 + 8,-10: 0 + 8,-9: 0 + 8,-8: 0 + 8,-7: 0 + 8,-6: 0 + 8,-5: 0 + 8,-4: 0 + 8,-3: 0 + 8,-2: 0 + 8,-1: 0 + 9,-13: 0 + 9,-12: 0 + 9,-11: 0 + 9,-10: 0 + 9,-9: 0 + 9,-8: 0 + 9,-7: 0 + 9,-6: 0 + 9,-5: 0 + 9,-4: 0 + 9,-3: 0 + 9,-2: 0 + 9,-1: 0 + 10,-13: 0 + 10,-12: 0 + 10,-11: 0 + 10,-10: 0 + 10,-9: 0 + 10,-8: 0 + 10,-7: 0 + 10,-6: 0 + 10,-5: 0 + 10,-4: 0 + 10,-3: 0 + 10,-2: 0 + 10,-1: 0 + 11,-13: 0 + 11,-12: 0 + 11,-11: 0 + 11,-10: 0 + 11,-9: 0 + 11,-8: 0 + 11,-7: 0 + 11,-6: 0 + 11,-5: 0 + 11,-4: 0 + 11,-3: 0 + 11,-2: 0 + 11,-1: 0 + 12,-13: 0 + 12,-12: 0 + 12,-11: 0 + 12,-10: 0 + 12,-9: 0 + 12,-8: 0 + 12,-7: 0 + 12,-6: 0 + 12,-5: 0 + 12,-4: 0 + 12,-3: 0 + 12,-2: 0 + 12,-1: 0 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 type: GridAtmosphere - type: RadiationGridResistance - type: GasTileOverlay @@ -77208,32 +87814,24 @@ entities: - pos: 20.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10468 type: CableMV components: - pos: 19.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10469 type: CableMV components: - pos: 19.5,-3.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10470 type: CableMV components: - pos: 19.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10471 type: CableMV components: @@ -77306,8 +87904,6 @@ entities: - pos: 14.5,2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10483 type: CableMV components: @@ -77410,80 +88006,60 @@ entities: - pos: 16.5,17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10500 type: CableMV components: - pos: 24.5,-2.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10501 type: CableMV components: - pos: 24.5,-3.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10502 type: CableMV components: - pos: 24.5,-4.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10503 type: CableMV components: - pos: 24.5,-5.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10504 type: CableMV components: - pos: 24.5,-6.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10505 type: CableMV components: - pos: 24.5,-7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10506 type: CableMV components: - pos: 23.5,-7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10507 type: CableMV components: - pos: 22.5,-7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10508 type: CableMV components: - pos: 21.5,-7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10509 type: CableMV components: @@ -77544,16 +88120,12 @@ entities: - pos: 19.5,-15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10519 type: CableMV components: - pos: 19.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10520 type: CableApcExtension components: @@ -77572,24 +88144,18 @@ entities: - pos: 19.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10523 type: CableMV components: - pos: 19.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10524 type: CableMV components: - pos: 19.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10525 type: CableMV components: @@ -77638,24 +88204,18 @@ entities: - pos: 11.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10533 type: CableMV components: - pos: 8.5,-42.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10534 type: CableMV components: - pos: 9.5,-42.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10535 type: CableMV components: @@ -77668,16 +88228,12 @@ entities: - pos: 9.5,-44.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10537 type: CableMV components: - pos: 8.5,-44.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10538 type: CableMV components: @@ -77756,24 +88312,18 @@ entities: - pos: 3.5,-36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10551 type: CableMV components: - pos: 9.5,-45.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10552 type: CableMV components: - pos: 10.5,-45.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10553 type: CableMV components: @@ -77816,16 +88366,12 @@ entities: - pos: 17.5,-45.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10560 type: CableMV components: - pos: 18.5,-45.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10561 type: CableMV components: @@ -77904,24 +88450,18 @@ entities: - pos: 17.5,-33.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10574 type: CableMV components: - pos: 9.5,-46.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10575 type: CableMV components: - pos: 9.5,-47.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10576 type: CableMV components: @@ -77940,8 +88480,6 @@ entities: - pos: 7.5,-46.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10579 type: CableMV components: @@ -77954,8 +88492,6 @@ entities: - pos: -16.5,-58.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10581 type: CableMV components: @@ -77968,56 +88504,42 @@ entities: - pos: -16.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10583 type: CableMV components: - pos: -17.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10584 type: CableMV components: - pos: -18.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10585 type: CableMV components: - pos: -19.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10586 type: CableMV components: - pos: -19.5,-55.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10587 type: CableMV components: - pos: -19.5,-54.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10588 type: CableMV components: - pos: -19.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10589 type: CableMV components: @@ -78138,8 +88660,6 @@ entities: - pos: -5.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10609 type: CableMV components: @@ -78194,24 +88714,18 @@ entities: - pos: -6.5,-65.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10618 type: CableMV components: - pos: -6.5,-66.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10619 type: CableMV components: - pos: -6.5,-67.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10620 type: CableMV components: @@ -78248,88 +88762,66 @@ entities: - pos: -3.5,-70.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10626 type: CableApcExtension components: - pos: -19.5,-52.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10627 type: CableApcExtension components: - pos: -19.5,-51.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10628 type: CableApcExtension components: - pos: -19.5,-50.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10629 type: CableApcExtension components: - pos: -19.5,-49.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10630 type: CableApcExtension components: - pos: -19.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10631 type: CableApcExtension components: - pos: -20.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10632 type: CableApcExtension components: - pos: -21.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10633 type: CableApcExtension components: - pos: -22.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10634 type: CableApcExtension components: - pos: -23.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10635 type: CableApcExtension components: - pos: -24.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10636 type: CableApcExtension components: @@ -78348,8 +88840,6 @@ entities: - pos: -37.5,-56.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10639 type: CableMV components: @@ -78362,104 +88852,78 @@ entities: - pos: -37.5,-54.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10641 type: CableMV components: - pos: -37.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10642 type: CableMV components: - pos: -38.5,-53.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10643 type: CableMV components: - pos: -38.5,-52.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10644 type: CableMV components: - pos: -38.5,-51.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10645 type: CableMV components: - pos: -37.5,-51.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10646 type: CableMV components: - pos: -36.5,-51.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10647 type: CableMV components: - pos: -38.5,-50.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10648 type: CableMV components: - pos: -38.5,-49.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10649 type: CableMV components: - pos: -38.5,-48.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10650 type: CableMV components: - pos: -38.5,-47.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10651 type: CableMV components: - pos: -39.5,-47.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10652 type: CableMV components: - pos: -40.5,-47.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10653 type: CableMV components: @@ -78574,8 +89038,6 @@ entities: - pos: -44.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10672 type: CableMV components: @@ -78606,136 +89068,102 @@ entities: - pos: -43.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10677 type: CableMV components: - pos: -44.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10678 type: CableMV components: - pos: -45.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10679 type: CableMV components: - pos: -46.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10680 type: CableMV components: - pos: -47.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10681 type: CableMV components: - pos: -48.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10682 type: CableMV components: - pos: -49.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10683 type: CableMV components: - pos: -50.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10684 type: CableMV components: - pos: -51.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10685 type: CableMV components: - pos: -51.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10686 type: CableMV components: - pos: -51.5,-25.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10687 type: CableMV components: - pos: -51.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10688 type: CableMV components: - pos: -51.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10689 type: CableMV components: - pos: -51.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10690 type: CableMV components: - pos: -51.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10691 type: CableMV components: - pos: -52.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10692 type: CableMV components: - pos: -53.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10693 type: CableMV components: @@ -78784,24 +89212,18 @@ entities: - pos: -55.5,-15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10701 type: CableMV components: - pos: -32.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10702 type: CableMV components: - pos: -31.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10703 type: CableMV components: @@ -78814,32 +89236,24 @@ entities: - pos: -31.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10705 type: CableMV components: - pos: -30.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10706 type: CableMV components: - pos: -30.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10707 type: CableMV components: - pos: -29.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10708 type: CableMV components: @@ -78924,8 +89338,6 @@ entities: - pos: -25.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10722 type: CableMV components: @@ -78980,16 +89392,12 @@ entities: - pos: -35.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10731 type: CableApcExtension components: - pos: -35.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10732 type: CableApcExtension components: @@ -79008,8 +89416,6 @@ entities: - pos: -21.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10735 type: CableMV components: @@ -79117,8 +89523,6 @@ entities: pos: -44.5,-4.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 10752 type: DrinkTeapot components: @@ -79272,6 +89676,51 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver +- uid: 10770 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- uid: 10771 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-1.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- uid: 10772 + type: Poweredlight + components: + - rot: 1.5707963267948966 rad + pos: 35.5,4.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- uid: 10773 + type: Poweredlight + components: + - rot: -1.5707963267948966 rad + pos: 38.5,4.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver +- uid: 10774 + type: Poweredlight + components: + - rot: 3.141592653589793 rad + pos: 38.5,9.5 + parent: 6 + type: Transform + - powerLoad: 0 + type: ApcPowerReceiver - uid: 10775 type: Poweredlight components: @@ -79407,64 +89856,48 @@ entities: - pos: 20.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10791 type: CableApcExtension components: - pos: 21.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10792 type: CableApcExtension components: - pos: 22.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10793 type: CableApcExtension components: - pos: 23.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10794 type: CableApcExtension components: - pos: 24.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10795 type: CableApcExtension components: - pos: 25.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10796 type: CableApcExtension components: - pos: 26.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10797 type: CableApcExtension components: - pos: 26.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10798 type: PoweredLightPostSmall components: @@ -79867,8 +90300,6 @@ entities: - pos: -21.5,7.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 10849 type: CableHV components: @@ -79971,96 +90402,24 @@ entities: - pos: -20.5,8.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10866 type: ClosetWallFireFilledRandom components: - pos: -21.5,8.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10867 type: ClosetWallFireFilledRandom components: - pos: -24.5,-40.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10868 type: ClosetWallEmergencyFilledRandom components: - pos: -25.5,-40.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10869 type: ClosetWallFireFilledRandom components: @@ -80068,24 +90427,6 @@ entities: pos: -23.5,-49.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10870 type: ClosetWallEmergencyFilledRandom components: @@ -80093,24 +90434,6 @@ entities: pos: -22.5,-49.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10871 type: ClosetWallFireFilledRandom components: @@ -80118,24 +90441,6 @@ entities: pos: -2.5,-49.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10872 type: ClosetWallEmergencyFilledRandom components: @@ -80143,168 +90448,42 @@ entities: pos: -1.5,-49.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10873 type: ClosetWallFireFilledRandom components: - pos: 25.5,10.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10874 type: ClosetWallEmergencyFilledRandom components: - pos: 22.5,-6.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10875 type: ClosetWallFireFilledRandom components: - pos: 23.5,-6.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10876 type: ClosetWallEmergencyFilledRandom components: - pos: 24.5,10.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10877 type: ClosetEmergencyFilledRandom components: - pos: 13.5,12.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10878 type: ClosetFireFilled components: - pos: 16.5,12.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10879 type: FireAxeCabinetFilled components: @@ -80323,48 +90502,12 @@ entities: - pos: 18.5,12.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10882 type: ClosetToolFilled components: - pos: 19.5,12.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10883 type: Table components: @@ -80394,32 +90537,14 @@ entities: components: - pos: 23.5,10.5 parent: 6 - type: Transform -- uid: 10888 - type: ClosetWallEmergencyFilledRandom - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-3.5 - parent: 6 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage + type: Transform +- uid: 10888 + type: ClosetWallEmergencyFilledRandom + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-3.5 + parent: 6 + type: Transform - uid: 10889 type: ClosetWallFireFilledRandom components: @@ -80427,24 +90552,6 @@ entities: pos: 20.5,-4.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10890 type: WeldingFuelTankFull components: @@ -80463,48 +90570,12 @@ entities: - pos: 23.5,3.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10893 type: ClosetMaintenanceFilledRandom components: - pos: 11.5,12.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10894 type: Table components: @@ -80566,192 +90637,48 @@ entities: - pos: 21.5,-6.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10904 type: ClosetEmergencyFilledRandom components: - pos: 20.5,-15.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10905 type: ClosetFireFilled components: - pos: 20.5,-16.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10906 type: ClosetEmergencyFilledRandom components: - pos: 9.5,-28.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10907 type: ClosetFireFilled components: - pos: 10.5,-28.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10908 type: ClosetMaintenanceFilledRandom components: - pos: 11.5,-28.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10909 type: ClosetMaintenanceFilledRandom components: - pos: 20.5,-17.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10910 type: ClosetToolFilled components: - pos: 20.5,-18.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10911 type: WaterTankFull components: @@ -80815,24 +90742,6 @@ entities: - pos: 17.5,-32.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10921 type: AirCanister components: @@ -80925,72 +90834,18 @@ entities: pos: -0.5,-49.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10936 type: ClosetEmergencyFilledRandom components: - pos: -2.5,-59.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10937 type: ClosetFireFilled components: - pos: -1.5,-59.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10938 type: ChairFolding components: @@ -81023,48 +90878,12 @@ entities: - pos: -21.5,-58.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10943 type: ClosetEmergencyFilledRandom components: - pos: -20.5,-58.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10944 type: ClosetWallMaintenanceFilledRandom components: @@ -81072,72 +90891,18 @@ entities: pos: -21.5,-49.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10945 type: ClosetMaintenanceFilledRandom components: - pos: -28.5,-58.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10946 type: ClosetToolFilled components: - pos: -29.5,-58.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10947 type: AirCanister components: @@ -81162,120 +90927,30 @@ entities: - pos: -37.5,-48.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10951 type: ClosetFireFilled components: - pos: -37.5,-49.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10952 type: ClosetMaintenanceFilledRandom components: - pos: -37.5,-50.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10953 type: ClosetMaintenanceFilledRandom components: - pos: -37.5,-58.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10954 type: ClosetL3Filled components: - pos: -38.5,-58.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10955 type: Catwalk components: @@ -81408,24 +91083,6 @@ entities: - pos: -23.5,-41.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10977 type: WeldingFuelTankFull components: @@ -81468,96 +91125,24 @@ entities: - pos: -17.5,-34.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10984 type: ClosetEmergencyFilledRandom components: - pos: -18.5,-34.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10985 type: ClosetToolFilled components: - pos: -19.5,-34.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10986 type: ClosetMaintenanceFilledRandom components: - pos: -28.5,-29.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10987 type: ChairFolding components: @@ -81578,168 +91163,42 @@ entities: - pos: -32.5,-25.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10990 type: ClosetFireFilled components: - pos: -32.5,-26.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10991 type: ClosetL3VirologyFilled components: - pos: -32.5,-24.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10992 type: ClosetMaintenanceFilledRandom components: - pos: -32.5,-27.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10993 type: ClosetFireFilled components: - pos: -50.5,-40.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10994 type: ClosetEmergencyFilledRandom components: - pos: -50.5,-39.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10995 type: ClosetMaintenanceFilledRandom components: - pos: -51.5,-41.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 10996 type: ChairFolding components: @@ -81766,48 +91225,12 @@ entities: - pos: -51.5,-28.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11000 type: ClosetToolFilled components: - pos: -52.5,-28.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11001 type: WeldingFuelTankFull components: @@ -81857,72 +91280,18 @@ entities: - pos: -42.5,-15.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11009 type: ClosetEmergencyFilledRandom components: - pos: -42.5,-16.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11010 type: ClosetMaintenanceFilledRandom components: - pos: -42.5,-17.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11011 type: ChairFolding components: @@ -81957,24 +91326,6 @@ entities: - pos: -43.5,-19.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11016 type: WallSolid components: @@ -81988,72 +91339,18 @@ entities: - pos: -53.5,-22.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11018 type: ClosetEmergencyFilledRandom components: - pos: -54.5,-22.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11019 type: ClosetMaintenanceFilledRandom components: - pos: -55.5,-22.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11020 type: ChairFolding components: @@ -82073,72 +91370,18 @@ entities: - pos: -64.5,-17.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11023 type: ClosetFireFilled components: - pos: -65.5,-17.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11024 type: ClosetMaintenanceFilledRandom components: - pos: -66.5,-17.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11025 type: AirCanister components: @@ -82169,96 +91412,24 @@ entities: - pos: -40.5,-4.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11030 type: ClosetRadiationSuitFilled components: - pos: -40.5,3.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11031 type: ClosetFireFilled components: - pos: -40.5,-5.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11032 type: ClosetEmergencyFilledRandom components: - pos: -40.5,-6.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11033 type: Rack components: @@ -82302,24 +91473,6 @@ entities: - pos: -40.5,-2.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11040 type: ClosetWallFireFilledRandom components: @@ -82327,24 +91480,6 @@ entities: pos: -4.5,-16.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11041 type: ClosetWallEmergencyFilledRandom components: @@ -82352,24 +91487,6 @@ entities: pos: -4.5,-17.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11042 type: ClosetWallMaintenanceFilledRandom components: @@ -82377,72 +91494,18 @@ entities: pos: -4.5,-18.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11043 type: ClosetFireFilled components: - pos: -8.5,-7.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11044 type: ClosetEmergencyFilledRandom components: - pos: -9.5,-7.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11045 type: Rack components: @@ -82461,24 +91524,6 @@ entities: - pos: -10.5,-7.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11048 type: WeldingFuelTankFull components: @@ -82504,24 +91549,6 @@ entities: pos: -11.5,0.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11052 type: ClosetWallEmergencyFilledRandom components: @@ -82529,24 +91556,6 @@ entities: pos: -11.5,-0.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11053 type: ChairFolding components: @@ -83220,48 +92229,12 @@ entities: - pos: -52.5,-30.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11165 type: ClosetFireFilled components: - pos: -51.5,-30.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11166 type: ComputerBroken components: @@ -83334,6 +92307,15 @@ entities: - pos: 1.5,-9.5 parent: 10465 type: Transform +- uid: 11178 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 42.5,0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 11179 type: GasPipeStraight components: @@ -83343,8 +92325,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11180 type: GasPipeStraight components: @@ -83354,8 +92334,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11181 type: GasPipeTJunction components: @@ -83364,8 +92342,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11182 type: GasPipeStraight components: @@ -83375,8 +92351,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11183 type: GasPipeStraight components: @@ -83386,8 +92360,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11184 type: GasPipeStraight components: @@ -83397,8 +92369,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11185 type: GasVentPump components: @@ -83408,8 +92378,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11186 type: GasPipeTJunction components: @@ -83419,8 +92387,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11187 type: GasVentPump components: @@ -83430,8 +92396,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11188 type: GasPipeStraight components: @@ -83441,8 +92405,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11189 type: GasPipeStraight components: @@ -83452,10 +92414,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11190 type: GasPipeStraight components: @@ -83465,8 +92423,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11191 type: GasPipeStraight components: @@ -83476,8 +92432,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11192 type: GasPipeStraight components: @@ -83487,8 +92441,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11193 type: GasPipeStraight components: @@ -83498,8 +92450,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11194 type: GasPipeStraight components: @@ -83509,8 +92459,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11195 type: GasPipeStraight components: @@ -83520,8 +92468,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11196 type: GasPipeTJunction components: @@ -83530,8 +92476,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11197 type: GasPipeTJunction components: @@ -83541,8 +92485,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11198 type: GasPipeStraight components: @@ -83552,8 +92494,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11199 type: GasVentPump components: @@ -83562,8 +92502,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11200 type: GasVentScrubber components: @@ -83573,8 +92511,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11201 type: GasPipeStraight components: @@ -83584,8 +92520,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11202 type: GasPipeStraight components: @@ -83595,8 +92529,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11203 type: GasPipeStraight components: @@ -83606,8 +92538,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11204 type: GasPipeStraight components: @@ -83617,8 +92547,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11205 type: GasPipeStraight components: @@ -83628,8 +92556,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11206 type: GasPipeStraight components: @@ -83639,8 +92565,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11207 type: GasPipeStraight components: @@ -83650,8 +92574,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11208 type: GasPipeStraight components: @@ -83661,10 +92583,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11209 type: GasPipeStraight components: @@ -83674,8 +92592,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11210 type: GasPipeTJunction components: @@ -83685,8 +92601,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11211 type: GasPipeTJunction components: @@ -83696,8 +92610,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11212 type: GasPipeStraight components: @@ -83707,8 +92619,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11213 type: GasPipeStraight components: @@ -83718,8 +92628,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11214 type: GasPipeTJunction components: @@ -83729,8 +92637,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11215 type: GasPipeStraight components: @@ -83740,8 +92646,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11216 type: GasPipeStraight components: @@ -83751,8 +92655,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11217 type: GasPipeTJunction components: @@ -83762,8 +92664,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11218 type: GasPipeStraight components: @@ -83773,8 +92673,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11219 type: GasVentPump components: @@ -83784,8 +92682,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11220 type: GasPipeStraight components: @@ -83794,8 +92690,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11221 type: GasPipeStraight components: @@ -83804,8 +92698,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11222 type: GasPipeStraight components: @@ -83814,8 +92706,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11223 type: GasPipeStraight components: @@ -83824,8 +92714,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11224 type: GasPipeStraight components: @@ -83834,8 +92722,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11225 type: GasPipeTJunction components: @@ -83845,8 +92731,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11226 type: GasPipeStraight components: @@ -83855,8 +92739,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11227 type: GasVentPump components: @@ -83865,8 +92747,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11228 type: GasVentScrubber components: @@ -83875,8 +92755,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11229 type: GasPipeStraight components: @@ -83885,8 +92763,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11230 type: GasPipeStraight components: @@ -83895,8 +92771,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11231 type: GasPipeStraight components: @@ -83906,8 +92780,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11232 type: GasPipeStraight components: @@ -83917,8 +92789,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11233 type: GasPipeStraight components: @@ -83928,8 +92798,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11234 type: GasPipeStraight components: @@ -83939,8 +92807,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11235 type: GasPipeStraight components: @@ -83950,8 +92816,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11236 type: GasPipeStraight components: @@ -83961,8 +92825,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11237 type: GasPipeStraight components: @@ -83972,8 +92834,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11238 type: GasPipeStraight components: @@ -83983,8 +92843,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11239 type: GasPipeTJunction components: @@ -83994,8 +92852,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11240 type: GasVentPump components: @@ -84005,8 +92861,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11241 type: GasVentPump components: @@ -84015,8 +92869,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11242 type: GasPipeStraight components: @@ -84025,8 +92877,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11243 type: GasVentScrubber components: @@ -84036,8 +92886,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11244 type: GasPipeStraight components: @@ -84047,8 +92895,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11245 type: GasVentScrubber components: @@ -84058,8 +92904,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11246 type: GasPipeTJunction components: @@ -84068,8 +92912,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11247 type: GasPipeStraight components: @@ -84079,8 +92921,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11248 type: GasPipeStraight components: @@ -84090,8 +92930,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11249 type: GasPipeStraight components: @@ -84101,8 +92939,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11250 type: GasPipeStraight components: @@ -84112,8 +92948,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11251 type: GasPipeStraight components: @@ -84123,8 +92957,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11252 type: GasPipeStraight components: @@ -84134,8 +92966,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11253 type: GasPipeStraight components: @@ -84144,8 +92974,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11254 type: GasPipeStraight components: @@ -84154,8 +92982,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11255 type: GasPipeTJunction components: @@ -84165,8 +92991,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11256 type: GasPipeStraight components: @@ -84176,8 +93000,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11257 type: GasPipeStraight components: @@ -84187,8 +93009,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11258 type: GasVentScrubber components: @@ -84197,8 +93017,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11259 type: GasPipeTJunction components: @@ -84208,8 +93026,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11260 type: GasVentScrubber components: @@ -84219,8 +93035,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11261 type: GasPipeStraight components: @@ -84230,8 +93044,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11262 type: GasPipeStraight components: @@ -84241,8 +93053,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11263 type: GasPipeStraight components: @@ -84252,8 +93062,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11264 type: GasPipeStraight components: @@ -84263,8 +93071,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11265 type: GasPipeStraight components: @@ -84274,8 +93080,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11266 type: GasVentScrubber components: @@ -84285,8 +93089,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11267 type: GasPipeTJunction components: @@ -84296,8 +93098,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11268 type: GasPipeStraight components: @@ -84307,8 +93107,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11269 type: GasPipeStraight components: @@ -84318,8 +93116,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11270 type: GasPipeTJunction components: @@ -84329,8 +93125,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11271 type: GasPipeStraight components: @@ -84340,8 +93134,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11272 type: GasPipeStraight components: @@ -84351,8 +93143,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11273 type: GasPipeStraight components: @@ -84362,8 +93152,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11274 type: GasPipeStraight components: @@ -84373,10 +93161,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11275 type: GasPipeStraight components: @@ -84386,8 +93170,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11276 type: GasPipeStraight components: @@ -84397,10 +93179,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11277 type: GasVentPump components: @@ -84410,8 +93188,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11278 type: GasPipeBend components: @@ -84421,8 +93197,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11279 type: GasVentPump components: @@ -84431,8 +93205,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11280 type: GasPipeStraight components: @@ -84441,8 +93213,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11281 type: GasPipeStraight components: @@ -84451,8 +93221,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11282 type: GasPipeBend components: @@ -84462,8 +93230,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11283 type: GasPipeStraight components: @@ -84473,8 +93239,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11284 type: GasPipeStraight components: @@ -84484,8 +93248,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11285 type: GasPipeStraight components: @@ -84495,8 +93257,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11286 type: GasPipeStraight components: @@ -84506,8 +93266,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11287 type: GasPipeStraight components: @@ -84517,8 +93275,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11288 type: GasPipeStraight components: @@ -84528,8 +93284,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11289 type: GasPipeTJunction components: @@ -84539,8 +93293,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11290 type: GasPipeStraight components: @@ -84550,8 +93302,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11291 type: GasVentPump components: @@ -84560,8 +93310,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11292 type: GasPipeStraight components: @@ -84570,8 +93318,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11293 type: GasPipeStraight components: @@ -84580,8 +93326,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11294 type: GasVentScrubber components: @@ -84590,8 +93334,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11295 type: GasPipeStraight components: @@ -84600,8 +93342,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11296 type: GasPipeStraight components: @@ -84610,8 +93350,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11297 type: GasPipeStraight components: @@ -84620,8 +93358,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11298 type: GasPipeStraight components: @@ -84630,8 +93366,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11299 type: GasPipeStraight components: @@ -84640,8 +93374,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11300 type: GasPipeStraight components: @@ -84650,8 +93382,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11301 type: GasPipeStraight components: @@ -84660,8 +93390,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11302 type: GasPipeFourway components: @@ -84670,8 +93398,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11303 type: GasPipeFourway components: @@ -84680,8 +93406,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11304 type: GasPipeStraight components: @@ -84691,8 +93415,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11305 type: GasPipeStraight components: @@ -84702,8 +93424,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11306 type: GasPipeStraight components: @@ -84713,8 +93433,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11307 type: GasPipeStraight components: @@ -84724,8 +93442,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11308 type: GasPipeStraight components: @@ -84735,8 +93451,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11309 type: GasPipeStraight components: @@ -84746,8 +93460,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11310 type: GasPipeStraight components: @@ -84757,8 +93469,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11311 type: GasPipeStraight components: @@ -84768,8 +93478,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11312 type: GasPipeStraight components: @@ -84779,8 +93487,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11313 type: GasPipeStraight components: @@ -84790,8 +93496,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11314 type: GasPipeStraight components: @@ -84801,8 +93505,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11315 type: GasPipeStraight components: @@ -84812,8 +93514,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11316 type: GasPipeStraight components: @@ -84823,8 +93523,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11317 type: GasPipeStraight components: @@ -84834,8 +93532,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11318 type: GasPipeStraight components: @@ -84845,8 +93541,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11319 type: GasPipeStraight components: @@ -84856,8 +93550,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11320 type: GasPipeTJunction components: @@ -84866,8 +93558,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11321 type: GasPipeStraight components: @@ -84877,8 +93567,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11322 type: GasPipeTJunction components: @@ -84888,8 +93576,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11323 type: GasPipeStraight components: @@ -84899,8 +93585,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11324 type: GasPipeStraight components: @@ -84910,8 +93594,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11325 type: GasPipeTJunction components: @@ -84920,8 +93602,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11326 type: GasPipeStraight components: @@ -84931,8 +93611,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11327 type: GasPipeStraight components: @@ -84942,8 +93620,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11328 type: GasPipeStraight components: @@ -84953,8 +93629,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11329 type: GasPipeStraight components: @@ -84964,8 +93638,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11330 type: GasPipeStraight components: @@ -84975,8 +93647,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11331 type: GasPipeStraight components: @@ -84986,8 +93656,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11332 type: GasPipeStraight components: @@ -84997,8 +93665,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11333 type: GasPipeTJunction components: @@ -85008,8 +93674,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11334 type: GasPipeStraight components: @@ -85019,8 +93683,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11335 type: GasPipeStraight components: @@ -85030,8 +93692,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11336 type: GasPipeStraight components: @@ -85041,8 +93701,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11337 type: GasPipeStraight components: @@ -85052,8 +93710,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11338 type: GasPipeStraight components: @@ -85063,8 +93719,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11339 type: GasPipeStraight components: @@ -85074,8 +93728,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11340 type: GasPipeStraight components: @@ -85085,8 +93737,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11341 type: GasPipeStraight components: @@ -85096,8 +93746,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11342 type: GasPipeStraight components: @@ -85107,8 +93755,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11343 type: GasPipeStraight components: @@ -85118,8 +93764,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11344 type: GasPipeStraight components: @@ -85129,8 +93773,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11345 type: GasPipeTJunction components: @@ -85140,8 +93782,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11346 type: GasPipeStraight components: @@ -85151,8 +93791,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11347 type: GasPipeStraight components: @@ -85162,8 +93800,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11348 type: GasPipeStraight components: @@ -85173,8 +93809,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11349 type: GasPipeStraight components: @@ -85184,8 +93818,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11350 type: GasPipeStraight components: @@ -85195,8 +93827,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11351 type: GasPipeStraight components: @@ -85206,8 +93836,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11352 type: GasPipeStraight components: @@ -85217,8 +93845,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11353 type: GasPipeStraight components: @@ -85228,8 +93854,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11354 type: GasPipeStraight components: @@ -85239,8 +93863,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11355 type: GasVentPump components: @@ -85250,8 +93872,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11356 type: GasVentScrubber components: @@ -85261,8 +93881,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11357 type: GasPipeStraight components: @@ -85271,8 +93889,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11358 type: GasPipeBend components: @@ -85282,8 +93898,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11359 type: GasPipeStraight components: @@ -85293,8 +93907,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11360 type: GasPipeStraight components: @@ -85304,8 +93916,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11361 type: GasPipeStraight components: @@ -85315,8 +93925,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11362 type: GasPipeStraight components: @@ -85326,8 +93934,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11363 type: GasPipeStraight components: @@ -85337,8 +93943,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11364 type: GasPipeStraight components: @@ -85348,8 +93952,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11365 type: GasPipeStraight components: @@ -85359,8 +93961,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11366 type: GasPipeStraight components: @@ -85370,8 +93970,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11367 type: GasPipeStraight components: @@ -85381,8 +93979,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11368 type: GasPipeStraight components: @@ -85392,8 +93988,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11369 type: GasPipeTJunction components: @@ -85402,8 +93996,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11370 type: GasPipeStraight components: @@ -85413,8 +94005,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11371 type: GasPipeStraight components: @@ -85424,8 +94014,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11372 type: GasPipeStraight components: @@ -85435,8 +94023,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11373 type: GasPipeStraight components: @@ -85446,8 +94032,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11374 type: GasPipeStraight components: @@ -85457,8 +94041,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11375 type: GasPipeStraight components: @@ -85468,8 +94050,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11376 type: GasPipeStraight components: @@ -85479,8 +94059,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11377 type: GasPipeStraight components: @@ -85490,8 +94068,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11378 type: GasPipeStraight components: @@ -85501,8 +94077,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11379 type: GasPipeStraight components: @@ -85512,8 +94086,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11380 type: GasPipeStraight components: @@ -85523,8 +94095,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11381 type: GasPipeStraight components: @@ -85534,8 +94104,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11382 type: GasVentScrubber components: @@ -85545,8 +94113,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11383 type: GasPipeStraight components: @@ -85556,8 +94122,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11384 type: GasPipeStraight components: @@ -85567,8 +94131,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11385 type: GasPipeStraight components: @@ -85578,8 +94140,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11386 type: GasPipeStraight components: @@ -85589,8 +94149,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11387 type: GasPipeStraight components: @@ -85600,8 +94158,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11388 type: GasPipeStraight components: @@ -85611,8 +94167,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11389 type: GasPipeStraight components: @@ -85622,8 +94176,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11390 type: GasPipeStraight components: @@ -85633,8 +94185,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11391 type: GasPipeStraight components: @@ -85644,8 +94194,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11392 type: GasPipeTJunction components: @@ -85654,8 +94202,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11393 type: GasPipeStraight components: @@ -85665,8 +94211,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11394 type: GasPipeStraight components: @@ -85676,8 +94220,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11395 type: GasPipeStraight components: @@ -85687,8 +94229,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11396 type: GasPipeTJunction components: @@ -85697,8 +94237,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11397 type: GasPipeStraight components: @@ -85708,8 +94246,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11398 type: GasPipeStraight components: @@ -85719,8 +94255,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11399 type: GasPipeTJunction components: @@ -85729,8 +94263,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11400 type: GasPipeStraight components: @@ -85740,8 +94272,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11401 type: GasPipeStraight components: @@ -85751,8 +94281,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11402 type: GasPipeStraight components: @@ -85762,8 +94290,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11403 type: GasPipeStraight components: @@ -85773,8 +94299,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11404 type: GasPipeStraight components: @@ -85784,8 +94308,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11405 type: GasPipeStraight components: @@ -85795,8 +94317,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11406 type: GasVentPump components: @@ -85805,8 +94325,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11407 type: GasPipeTJunction components: @@ -85815,8 +94333,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11408 type: GasPipeStraight components: @@ -85825,8 +94341,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11409 type: GasPipeStraight components: @@ -85835,8 +94349,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11410 type: GasPipeStraight components: @@ -85845,8 +94357,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11411 type: GasPipeFourway components: @@ -85855,8 +94365,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11412 type: GasPipeStraight components: @@ -85865,8 +94373,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11413 type: GasPipeStraight components: @@ -85876,8 +94382,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11414 type: GasPipeStraight components: @@ -85887,8 +94391,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11415 type: GasPipeStraight components: @@ -85898,8 +94400,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11416 type: GasVentPump components: @@ -85909,8 +94409,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11417 type: GasPipeStraight components: @@ -85920,8 +94418,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11418 type: GasPipeStraight components: @@ -85931,8 +94427,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11419 type: GasPipeStraight components: @@ -85942,8 +94436,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11420 type: GasPipeStraight components: @@ -85953,8 +94445,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11421 type: GasPipeFourway components: @@ -85963,8 +94453,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11422 type: GasPipeStraight components: @@ -85974,8 +94462,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11423 type: GasPipeStraight components: @@ -85985,8 +94471,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11424 type: GasPipeBend components: @@ -85996,8 +94480,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11425 type: GasPipeBend components: @@ -86007,8 +94489,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11426 type: GasPipeStraight components: @@ -86018,8 +94498,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11427 type: GasPipeStraight components: @@ -86029,8 +94507,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11428 type: GasPipeStraight components: @@ -86039,8 +94515,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11429 type: GasPipeStraight components: @@ -86049,8 +94523,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11430 type: GasPipeStraight components: @@ -86059,8 +94531,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11431 type: GasPipeStraight components: @@ -86069,8 +94539,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11432 type: GasPipeStraight components: @@ -86079,8 +94547,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11433 type: GasPipeStraight components: @@ -86089,8 +94555,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11434 type: GasPipeStraight components: @@ -86099,8 +94563,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11435 type: GasPipeStraight components: @@ -86109,8 +94571,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11436 type: GasPipeStraight components: @@ -86119,8 +94579,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11437 type: GasPipeStraight components: @@ -86129,8 +94587,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11438 type: GasPipeStraight components: @@ -86139,8 +94595,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11439 type: GasPipeStraight components: @@ -86149,8 +94603,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11440 type: GasPipeStraight components: @@ -86159,8 +94611,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11441 type: GasPipeStraight components: @@ -86169,8 +94619,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11442 type: GasPipeTJunction components: @@ -86180,8 +94628,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11443 type: GasPipeStraight components: @@ -86190,8 +94636,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11444 type: GasPipeTJunction components: @@ -86201,8 +94645,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11445 type: GasPipeStraight components: @@ -86211,8 +94653,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11446 type: GasPipeStraight components: @@ -86221,8 +94661,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11447 type: GasPipeStraight components: @@ -86231,8 +94669,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11448 type: GasPipeStraight components: @@ -86241,8 +94677,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11449 type: GasPipeTJunction components: @@ -86252,8 +94686,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11450 type: GasPipeStraight components: @@ -86262,8 +94694,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11451 type: GasPipeStraight components: @@ -86272,8 +94702,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11452 type: GasPipeStraight components: @@ -86282,8 +94710,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11453 type: GasPipeStraight components: @@ -86292,8 +94718,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11454 type: GasPipeStraight components: @@ -86302,8 +94726,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11455 type: GasPipeStraight components: @@ -86313,8 +94735,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11456 type: GasPipeTJunction components: @@ -86324,8 +94744,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11457 type: GasPipeStraight components: @@ -86334,8 +94752,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11458 type: GasPipeStraight components: @@ -86344,8 +94760,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11459 type: GasPipeStraight components: @@ -86354,8 +94768,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11460 type: GasPipeStraight components: @@ -86364,8 +94776,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11461 type: GasPipeStraight components: @@ -86374,8 +94784,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11462 type: GasPipeStraight components: @@ -86384,8 +94792,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11463 type: GasPipeStraight components: @@ -86394,8 +94800,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11464 type: GasPipeStraight components: @@ -86404,8 +94808,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11465 type: GasPipeStraight components: @@ -86414,8 +94816,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11466 type: GasPipeStraight components: @@ -86424,8 +94824,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11467 type: GasPipeStraight components: @@ -86434,8 +94832,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11468 type: GasPipeStraight components: @@ -86444,8 +94840,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11469 type: GasPipeTJunction components: @@ -86455,8 +94849,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11470 type: GasPipeTJunction components: @@ -86466,8 +94858,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11471 type: GasPipeStraight components: @@ -86476,8 +94866,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11472 type: GasPipeStraight components: @@ -86486,8 +94874,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11473 type: GasPipeTJunction components: @@ -86497,8 +94883,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11474 type: GasPipeStraight components: @@ -86507,8 +94891,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11475 type: GasPipeStraight components: @@ -86517,8 +94899,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11476 type: GasPipeStraight components: @@ -86527,8 +94907,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11477 type: GasPipeStraight components: @@ -86537,8 +94915,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11478 type: GasPipeStraight components: @@ -86548,8 +94924,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11479 type: GasPipeStraight components: @@ -86558,8 +94932,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11480 type: GasPipeStraight components: @@ -86568,8 +94940,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11481 type: GasPipeStraight components: @@ -86578,8 +94948,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11482 type: GasPipeTJunction components: @@ -86589,8 +94957,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11483 type: GasPipeStraight components: @@ -86599,8 +94965,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11484 type: GasPipeStraight components: @@ -86609,8 +94973,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11485 type: GasPipeBend components: @@ -86619,8 +94981,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11486 type: GasPipeBend components: @@ -86630,8 +94990,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11487 type: GasPipeStraight components: @@ -86641,8 +94999,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11488 type: GasPipeStraight components: @@ -86652,8 +95008,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11489 type: GasPipeStraight components: @@ -86663,10 +95017,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11490 type: GasPipeStraight components: @@ -86676,8 +95026,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11491 type: GasPipeStraight components: @@ -86687,8 +95035,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11492 type: GasPipeBend components: @@ -86698,8 +95044,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11493 type: GasPipeBend components: @@ -86709,8 +95053,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11494 type: GasPipeStraight components: @@ -86720,8 +95062,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11495 type: GasPipeStraight components: @@ -86731,8 +95071,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11496 type: GasPipeStraight components: @@ -86742,8 +95080,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11497 type: GasPipeStraight components: @@ -86753,8 +95089,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11498 type: GasPipeStraight components: @@ -86764,8 +95098,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11499 type: GasPipeStraight components: @@ -86775,8 +95107,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11500 type: GasPipeStraight components: @@ -86786,8 +95116,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11501 type: GasPipeStraight components: @@ -86797,8 +95125,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11502 type: GasPipeStraight components: @@ -86808,8 +95134,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11503 type: GasPipeTJunction components: @@ -86819,8 +95143,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11504 type: GasPipeTJunction components: @@ -86829,8 +95151,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11505 type: GasPipeTJunction components: @@ -86840,8 +95160,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11506 type: GasPipeTJunction components: @@ -86851,8 +95169,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11507 type: GasPipeStraight components: @@ -86862,8 +95178,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11508 type: GasVentScrubber components: @@ -86873,8 +95187,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11509 type: GasVentPump components: @@ -86883,8 +95195,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11510 type: GasPipeStraight components: @@ -86893,8 +95203,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11511 type: GasPipeStraight components: @@ -86903,8 +95211,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11512 type: GasVentPump components: @@ -86913,8 +95219,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11513 type: GasVentScrubber components: @@ -86923,8 +95227,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11514 type: GasPipeStraight components: @@ -86933,8 +95235,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11515 type: GasPipeStraight components: @@ -86943,8 +95243,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11516 type: GasPipeStraight components: @@ -86953,10 +95251,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11517 type: GasPipeTJunction components: @@ -86965,8 +95259,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11518 type: GasPipeStraight components: @@ -86976,8 +95268,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11519 type: GasPipeStraight components: @@ -86987,8 +95277,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11520 type: GasPipeStraight components: @@ -86998,10 +95286,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11521 type: GasPipeStraight components: @@ -87011,8 +95295,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11522 type: GasPipeStraight components: @@ -87022,8 +95304,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11523 type: GasPipeTJunction components: @@ -87033,8 +95313,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11524 type: GasPipeStraight components: @@ -87043,8 +95321,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11525 type: GasPipeStraight components: @@ -87053,10 +95329,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11526 type: GasPipeStraight components: @@ -87065,8 +95337,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11527 type: GasPressurePump components: @@ -87074,16 +95344,12 @@ entities: pos: -30.5,-17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 11528 type: GasPressurePump components: - pos: -28.5,-17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 11529 type: GasPipeBend components: @@ -87091,16 +95357,12 @@ entities: pos: -28.5,-18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 11530 type: GasVentScrubber components: - pos: -29.5,-17.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 11531 type: GasPipeTJunction components: @@ -87108,8 +95370,6 @@ entities: pos: -29.5,-18.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 11532 type: GasPipeStraight components: @@ -87118,8 +95378,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11533 type: GasPipeFourway components: @@ -87128,8 +95386,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11534 type: GasPipeStraight components: @@ -87139,8 +95395,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11535 type: GasPipeStraight components: @@ -87150,8 +95404,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11536 type: GasPipeStraight components: @@ -87161,8 +95413,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11537 type: GasPipeTJunction components: @@ -87171,8 +95421,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11538 type: GasPipeStraight components: @@ -87182,8 +95430,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11539 type: GasPipeStraight components: @@ -87192,8 +95438,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11540 type: GasPipeStraight components: @@ -87202,8 +95446,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11541 type: GasPipeStraight components: @@ -87212,8 +95454,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11542 type: GasPipeStraight components: @@ -87222,8 +95462,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11543 type: GasPipeStraight components: @@ -87232,8 +95470,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11544 type: GasPipeStraight components: @@ -87242,8 +95478,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11545 type: GasPipeStraight components: @@ -87252,8 +95486,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11546 type: GasPipeStraight components: @@ -87262,10 +95494,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11547 type: GasPipeStraight components: @@ -87274,8 +95502,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11548 type: GasPipeBend components: @@ -87285,10 +95511,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11549 type: GasVentScrubber components: @@ -87298,8 +95520,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11550 type: GasPipeStraight components: @@ -87309,8 +95529,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11551 type: GasPipeStraight components: @@ -87320,8 +95538,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11552 type: GasPipeStraight components: @@ -87331,8 +95547,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11553 type: GasPipeStraight components: @@ -87342,8 +95556,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11554 type: GasPipeStraight components: @@ -87353,8 +95565,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11555 type: GasPipeStraight components: @@ -87364,8 +95574,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11556 type: GasPipeStraight components: @@ -87375,8 +95583,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11557 type: GasPipeBend components: @@ -87386,8 +95592,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11558 type: GasVentPump components: @@ -87397,8 +95601,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11559 type: GasPipeStraight components: @@ -87408,8 +95610,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11560 type: GasPipeStraight components: @@ -87419,8 +95619,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11561 type: GasPipeStraight components: @@ -87430,8 +95628,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11562 type: GasPipeStraight components: @@ -87441,8 +95637,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11563 type: GasPipeStraight components: @@ -87452,8 +95646,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11564 type: GasPipeStraight components: @@ -87463,8 +95655,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11565 type: GasPipeTJunction components: @@ -87474,8 +95664,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11566 type: GasPipeTJunction components: @@ -87485,8 +95673,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11567 type: GasPipeStraight components: @@ -87496,8 +95682,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11568 type: GasPipeTJunction components: @@ -87506,8 +95690,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11569 type: GasPipeStraight components: @@ -87517,8 +95699,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11570 type: GasPipeStraight components: @@ -87528,8 +95708,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11571 type: GasPipeBend components: @@ -87539,8 +95717,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11572 type: GasPipeStraight components: @@ -87550,8 +95726,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11573 type: GasVentScrubber components: @@ -87560,8 +95734,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11574 type: GasPipeTJunction components: @@ -87571,8 +95743,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11575 type: GasPipeStraight components: @@ -87582,8 +95752,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11576 type: GasPipeStraight components: @@ -87593,10 +95761,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11577 type: GasVentPump components: @@ -87605,8 +95769,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11578 type: GasPipeStraight components: @@ -87615,8 +95777,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11579 type: GasPipeStraight components: @@ -87625,10 +95785,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11580 type: GasPipeStraight components: @@ -87637,8 +95793,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11581 type: GasPipeStraight components: @@ -87647,8 +95801,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11582 type: GasPipeStraight components: @@ -87657,8 +95809,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11583 type: GasPipeStraight components: @@ -87667,8 +95817,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11584 type: GasPipeStraight components: @@ -87677,8 +95825,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11585 type: GasVentScrubber components: @@ -87687,8 +95833,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11586 type: GasVentPump components: @@ -87697,8 +95841,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11587 type: GasPipeStraight components: @@ -87708,8 +95850,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11588 type: GasPipeStraight components: @@ -87719,8 +95859,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11589 type: FirelockGlass components: @@ -87748,8 +95886,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11593 type: GasVentScrubber components: @@ -87759,8 +95895,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11594 type: GasPipeStraight components: @@ -87770,8 +95904,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11595 type: GasPipeStraight components: @@ -87781,8 +95913,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11596 type: GasPipeStraight components: @@ -87792,8 +95922,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11597 type: GasPipeStraight components: @@ -87803,8 +95931,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11598 type: GasPipeStraight components: @@ -87814,8 +95940,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11599 type: GasPipeStraight components: @@ -87825,8 +95949,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11600 type: GasPipeStraight components: @@ -87836,8 +95958,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11601 type: GasPipeStraight components: @@ -87847,8 +95967,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11602 type: GasPipeStraight components: @@ -87858,8 +95976,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11603 type: GasPipeStraight components: @@ -87869,8 +95985,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11604 type: GasPipeStraight components: @@ -87880,8 +95994,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11605 type: GasPipeStraight components: @@ -87891,8 +96003,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11606 type: GasPipeTJunction components: @@ -87901,8 +96011,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11607 type: GasPipeTJunction components: @@ -87912,8 +96020,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11608 type: GasPipeStraight components: @@ -87923,8 +96029,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11609 type: GasPipeStraight components: @@ -87934,8 +96038,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11610 type: GasPipeStraight components: @@ -87945,8 +96047,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11611 type: GasPipeStraight components: @@ -87956,8 +96056,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11612 type: GasPipeStraight components: @@ -87967,8 +96065,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11613 type: GasPipeStraight components: @@ -87978,8 +96074,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11614 type: GasPipeFourway components: @@ -87988,8 +96082,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11615 type: GasPipeStraight components: @@ -87998,8 +96090,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11616 type: GasPipeStraight components: @@ -88008,8 +96098,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11617 type: GasPipeStraight components: @@ -88018,8 +96106,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11618 type: GasPipeStraight components: @@ -88028,8 +96114,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11619 type: GasPipeStraight components: @@ -88038,8 +96122,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11620 type: GasPipeStraight components: @@ -88048,8 +96130,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11621 type: GasPipeStraight components: @@ -88058,8 +96138,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11622 type: GasPipeStraight components: @@ -88068,8 +96146,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11623 type: GasPipeStraight components: @@ -88078,8 +96154,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11624 type: GasPipeStraight components: @@ -88088,8 +96162,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11625 type: GasPipeStraight components: @@ -88098,8 +96170,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11626 type: GasPipeStraight components: @@ -88108,8 +96178,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11627 type: GasPipeTJunction components: @@ -88119,8 +96187,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11628 type: GasPipeStraight components: @@ -88129,8 +96195,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11629 type: GasPipeStraight components: @@ -88139,8 +96203,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11630 type: GasPipeStraight components: @@ -88149,8 +96211,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11631 type: GasPipeStraight components: @@ -88159,8 +96219,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11632 type: GasPipeStraight components: @@ -88169,8 +96227,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11633 type: GasPipeStraight components: @@ -88179,8 +96235,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11634 type: GasPipeStraight components: @@ -88189,8 +96243,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11635 type: GasPipeStraight components: @@ -88199,8 +96251,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11636 type: GasPipeTJunction components: @@ -88210,8 +96260,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11637 type: GasPipeStraight components: @@ -88220,8 +96268,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11638 type: GasPipeStraight components: @@ -88230,8 +96276,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11639 type: GasPipeStraight components: @@ -88240,8 +96284,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11640 type: GasPipeStraight components: @@ -88250,8 +96292,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11641 type: GasPipeStraight components: @@ -88260,8 +96300,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11642 type: GasPipeStraight components: @@ -88270,8 +96308,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11643 type: GasPipeStraight components: @@ -88280,8 +96316,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11644 type: GasPipeFourway components: @@ -88290,8 +96324,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11645 type: GasPipeStraight components: @@ -88301,8 +96333,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11646 type: GasPipeStraight components: @@ -88312,8 +96342,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11647 type: GasPipeStraight components: @@ -88323,8 +96351,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11648 type: GasPipeStraight components: @@ -88334,8 +96360,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11649 type: GasPipeStraight components: @@ -88345,8 +96369,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11650 type: GasPipeStraight components: @@ -88356,8 +96378,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11651 type: GasPipeTJunction components: @@ -88367,8 +96387,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11652 type: GasPipeStraight components: @@ -88378,8 +96396,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11653 type: GasPipeStraight components: @@ -88389,8 +96405,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11654 type: GasPipeTJunction components: @@ -88400,8 +96414,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11655 type: GasPipeStraight components: @@ -88411,8 +96423,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11656 type: GasPipeStraight components: @@ -88422,8 +96432,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11657 type: GasPipeStraight components: @@ -88433,8 +96441,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11658 type: GasPipeStraight components: @@ -88444,8 +96450,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11659 type: GasPipeStraight components: @@ -88455,8 +96459,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11660 type: GasPipeStraight components: @@ -88466,8 +96468,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11661 type: GasPipeStraight components: @@ -88477,8 +96477,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11662 type: GasPipeStraight components: @@ -88488,8 +96486,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11663 type: GasPipeStraight components: @@ -88499,8 +96495,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11664 type: GasPipeStraight components: @@ -88510,8 +96504,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11665 type: GasPipeStraight components: @@ -88521,8 +96513,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11666 type: GasPipeStraight components: @@ -88532,8 +96522,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11667 type: GasPipeStraight components: @@ -88543,8 +96531,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11668 type: GasPipeStraight components: @@ -88554,8 +96540,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11669 type: GasPipeStraight components: @@ -88565,8 +96549,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11670 type: GasPipeTJunction components: @@ -88575,8 +96557,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11671 type: GasVentPump components: @@ -88586,8 +96566,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11672 type: GasPipeStraight components: @@ -88596,8 +96574,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11673 type: GasPipeStraight components: @@ -88606,10 +96582,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11674 type: GasPipeTJunction components: @@ -88618,8 +96590,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11675 type: GasPipeBend components: @@ -88629,8 +96599,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11676 type: GasVentScrubber components: @@ -88639,8 +96607,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11677 type: GasPipeStraight components: @@ -88650,8 +96616,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11678 type: GasPipeStraight components: @@ -88661,10 +96625,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11679 type: GasPipeStraight components: @@ -88674,8 +96634,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11680 type: GasPipeStraight components: @@ -88685,8 +96643,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11681 type: GasVentPump components: @@ -88696,8 +96652,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11682 type: GasVentScrubber components: @@ -88706,8 +96660,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11683 type: GasPipeBend components: @@ -88717,8 +96669,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11684 type: GasPipeStraight components: @@ -88728,8 +96678,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11685 type: GasPipeStraight components: @@ -88739,8 +96687,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11686 type: GasVentPump components: @@ -88749,8 +96695,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11687 type: GasVentScrubber components: @@ -88760,8 +96704,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11688 type: GasVentPump components: @@ -88771,8 +96713,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11689 type: GasVentScrubber components: @@ -88782,8 +96722,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11690 type: GasPipeStraight components: @@ -88793,8 +96731,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11691 type: GasPipeStraight components: @@ -88804,8 +96740,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11692 type: GasPipeTJunction components: @@ -88814,8 +96748,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11693 type: GasPipeTJunction components: @@ -88825,8 +96757,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11694 type: GasPipeTJunction components: @@ -88836,8 +96766,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11695 type: GasPipeTJunction components: @@ -88847,8 +96775,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11696 type: GasVentScrubber components: @@ -88858,8 +96784,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11697 type: GasVentPump components: @@ -88868,8 +96792,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11698 type: GasPipeStraight components: @@ -88878,8 +96800,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11699 type: GasPipeStraight components: @@ -88888,8 +96808,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11700 type: GasPipeStraight components: @@ -88898,8 +96816,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11701 type: GasPipeBend components: @@ -88909,8 +96825,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11702 type: GasPipeStraight components: @@ -88920,8 +96834,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11703 type: GasPipeTJunction components: @@ -88931,8 +96843,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11704 type: GasVentPump components: @@ -88941,8 +96851,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11705 type: GasPipeStraight components: @@ -88952,8 +96860,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11706 type: GasPipeStraight components: @@ -88963,8 +96869,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11707 type: GasPipeStraight components: @@ -88974,8 +96878,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11708 type: GasPipeStraight components: @@ -88985,8 +96887,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11709 type: GasPipeStraight components: @@ -88996,8 +96896,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11710 type: GasPipeTJunction components: @@ -89006,8 +96904,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11711 type: GasPipeStraight components: @@ -89017,8 +96913,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11712 type: GasPipeStraight components: @@ -89028,8 +96922,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11713 type: GasPipeStraight components: @@ -89039,8 +96931,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11714 type: GasPipeStraight components: @@ -89050,8 +96940,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11715 type: GasPipeStraight components: @@ -89061,8 +96949,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11716 type: GasPipeStraight components: @@ -89072,8 +96958,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11717 type: GasPipeStraight components: @@ -89083,8 +96967,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11718 type: GasPipeStraight components: @@ -89094,8 +96976,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11719 type: GasPipeTJunction components: @@ -89104,8 +96984,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11720 type: GasPipeStraight components: @@ -89115,8 +96993,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11721 type: GasPipeStraight components: @@ -89126,8 +97002,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11722 type: GasPipeStraight components: @@ -89137,8 +97011,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11723 type: GasPipeTJunction components: @@ -89148,8 +97020,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11724 type: GasPipeTJunction components: @@ -89159,8 +97029,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11725 type: GasPipeStraight components: @@ -89170,8 +97038,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11726 type: GasPipeStraight components: @@ -89181,8 +97047,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11727 type: GasPipeStraight components: @@ -89192,8 +97056,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11728 type: GasPipeStraight components: @@ -89203,8 +97065,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11729 type: GasPipeStraight components: @@ -89214,8 +97074,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11730 type: GasPipeStraight components: @@ -89225,8 +97083,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11731 type: GasPipeStraight components: @@ -89236,8 +97092,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11732 type: GasPipeTJunction components: @@ -89247,8 +97101,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11733 type: GasPipeStraight components: @@ -89258,8 +97110,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11734 type: GasPipeStraight components: @@ -89269,8 +97119,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11735 type: GasPipeStraight components: @@ -89280,8 +97128,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11736 type: GasPipeTJunction components: @@ -89290,8 +97136,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11737 type: GasPipeStraight components: @@ -89301,8 +97145,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11738 type: GasPipeStraight components: @@ -89312,8 +97154,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11739 type: GasPipeStraight components: @@ -89323,8 +97163,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11740 type: GasPipeStraight components: @@ -89334,8 +97172,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11741 type: GasPipeStraight components: @@ -89345,8 +97181,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11742 type: GasPipeStraight components: @@ -89356,8 +97190,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11743 type: GasPipeStraight components: @@ -89367,8 +97199,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11744 type: GasPipeBend components: @@ -89378,8 +97208,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11745 type: GasPipeTJunction components: @@ -89389,8 +97217,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11746 type: GasPipeStraight components: @@ -89400,8 +97226,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11747 type: GasPipeStraight components: @@ -89411,8 +97235,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11748 type: GasVentPump components: @@ -89422,8 +97244,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11749 type: GasPipeStraight components: @@ -89433,8 +97253,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11750 type: GasPipeStraight components: @@ -89444,8 +97262,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11751 type: GasPipeStraight components: @@ -89455,8 +97271,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11752 type: GasPipeBend components: @@ -89466,8 +97280,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11753 type: GasPipeStraight components: @@ -89477,8 +97289,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11754 type: GasPipeStraight components: @@ -89488,8 +97298,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11755 type: GasPipeStraight components: @@ -89499,8 +97307,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11756 type: GasPipeStraight components: @@ -89510,8 +97316,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11757 type: GasPipeTJunction components: @@ -89521,8 +97325,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11758 type: GasPipeStraight components: @@ -89532,8 +97334,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11759 type: GasPipeBend components: @@ -89542,8 +97342,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11760 type: GasPipeBend components: @@ -89553,8 +97351,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11761 type: GasPipeStraight components: @@ -89564,8 +97360,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11762 type: GasPipeTJunction components: @@ -89575,8 +97369,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11763 type: GasPipeStraight components: @@ -89586,8 +97378,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11764 type: GasPipeStraight components: @@ -89597,8 +97387,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11765 type: GasPipeBend components: @@ -89608,8 +97396,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11766 type: GasVentScrubber components: @@ -89619,8 +97405,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11767 type: GasPipeStraight components: @@ -89630,8 +97414,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11768 type: GasPipeTJunction components: @@ -89641,8 +97423,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11769 type: GasPipeTJunction components: @@ -89652,8 +97432,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11770 type: GasVentScrubber components: @@ -89663,8 +97441,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11771 type: GasPipeStraight components: @@ -89674,8 +97450,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11772 type: GasPipeStraight components: @@ -89685,10 +97459,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11773 type: GasPipeBend components: @@ -89697,8 +97467,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11774 type: GasVentScrubber components: @@ -89708,8 +97476,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11775 type: GasPipeStraight components: @@ -89719,8 +97485,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11776 type: GasPipeStraight components: @@ -89730,8 +97494,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11777 type: GasPipeStraight components: @@ -89741,8 +97503,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11778 type: GasPipeBend components: @@ -89751,8 +97511,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11779 type: GasPipeBend components: @@ -89762,8 +97520,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11780 type: GasPipeStraight components: @@ -89773,8 +97529,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11781 type: GasPipeStraight components: @@ -89784,8 +97538,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11782 type: GasPipeFourway components: @@ -89794,8 +97546,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11783 type: GasVentPump components: @@ -89805,8 +97555,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11784 type: GasPipeStraight components: @@ -89816,8 +97564,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11785 type: GasPipeStraight components: @@ -89827,8 +97573,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11786 type: GasVentPump components: @@ -89838,8 +97582,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11787 type: GasPipeTJunction components: @@ -89849,8 +97591,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11788 type: GasPipeStraight components: @@ -89860,8 +97600,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11789 type: GasPipeStraight components: @@ -89871,8 +97609,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11790 type: GasPipeStraight components: @@ -89882,10 +97618,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11791 type: GasPipeStraight components: @@ -89895,8 +97627,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11792 type: GasVentScrubber components: @@ -89906,8 +97636,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11793 type: GasPipeStraight components: @@ -89917,8 +97645,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11794 type: GasPipeStraight components: @@ -89928,8 +97654,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11795 type: GasPipeStraight components: @@ -89939,10 +97663,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11796 type: GasPipeBend components: @@ -89952,8 +97672,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11797 type: GasPipeBend components: @@ -89963,8 +97681,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11798 type: GasPipeStraight components: @@ -89974,8 +97690,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11799 type: GasPipeStraight components: @@ -89985,8 +97699,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11800 type: GasPipeStraight components: @@ -89996,8 +97708,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11801 type: GasPipeStraight components: @@ -90007,8 +97717,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11802 type: GasPipeStraight components: @@ -90018,8 +97726,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11803 type: GasPipeStraight components: @@ -90029,8 +97735,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11804 type: GasPipeStraight components: @@ -90040,8 +97744,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11805 type: GasPipeStraight components: @@ -90051,8 +97753,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11806 type: GasPipeStraight components: @@ -90062,8 +97762,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11807 type: GasPipeStraight components: @@ -90073,8 +97771,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11808 type: GasPipeTJunction components: @@ -90084,8 +97780,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11809 type: GasPipeStraight components: @@ -90095,8 +97789,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11810 type: GasPipeStraight components: @@ -90106,8 +97798,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11811 type: GasPipeStraight components: @@ -90117,8 +97807,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11812 type: GasVentPump components: @@ -90127,8 +97815,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11813 type: GasVentPump components: @@ -90138,8 +97824,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11814 type: GasPipeStraight components: @@ -90148,8 +97832,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11815 type: GasPipeStraight components: @@ -90158,8 +97840,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11816 type: GasPipeTJunction components: @@ -90169,8 +97849,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11817 type: GasPipeBend components: @@ -90180,8 +97858,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11818 type: GasPipeStraight components: @@ -90191,8 +97867,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11819 type: GasPipeBend components: @@ -90202,8 +97876,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11820 type: GasPipeStraight components: @@ -90213,8 +97885,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11821 type: GasPipeTJunction components: @@ -90224,8 +97894,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11822 type: GasPipeTJunction components: @@ -90235,8 +97903,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11823 type: GasPipeStraight components: @@ -90246,8 +97912,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11824 type: GasPipeStraight components: @@ -90257,8 +97921,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11825 type: GasVentScrubber components: @@ -90268,8 +97930,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11826 type: GasPipeStraight components: @@ -90279,8 +97939,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11827 type: GasVentScrubber components: @@ -90290,8 +97948,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11828 type: GasPipeStraight components: @@ -90300,8 +97956,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11829 type: GasPipeStraight components: @@ -90310,8 +97964,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11830 type: GasPipeStraight components: @@ -90320,8 +97972,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11831 type: GasPipeStraight components: @@ -90330,8 +97980,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11832 type: GasPipeStraight components: @@ -90340,8 +97988,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11833 type: GasPipeStraight components: @@ -90350,8 +97996,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11834 type: GasPipeStraight components: @@ -90360,8 +98004,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11835 type: GasPipeStraight components: @@ -90370,8 +98012,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11836 type: GasPipeTJunction components: @@ -90381,8 +98021,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11837 type: GasPipeStraight components: @@ -90391,8 +98029,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11838 type: GasVentScrubber components: @@ -90401,8 +98037,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11839 type: GasVentScrubber components: @@ -90412,8 +98046,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11840 type: GasPipeStraight components: @@ -90423,8 +98055,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11841 type: GasPipeStraight components: @@ -90434,10 +98064,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11842 type: GasPipeStraight components: @@ -90447,8 +98073,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11843 type: GasPipeStraight components: @@ -90458,8 +98082,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11844 type: GasPipeStraight components: @@ -90469,8 +98091,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11845 type: GasPipeTJunction components: @@ -90480,8 +98100,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11846 type: GasPipeStraight components: @@ -90491,10 +98109,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 11847 type: GasPipeStraight components: @@ -90504,8 +98118,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11848 type: GasPipeStraight components: @@ -90515,8 +98127,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11849 type: GasPipeStraight components: @@ -90526,8 +98136,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11850 type: GasPipeStraight components: @@ -90537,8 +98145,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11851 type: GasPipeStraight components: @@ -90548,8 +98154,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11852 type: GasVentScrubber components: @@ -90559,8 +98163,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11853 type: GasVentPump components: @@ -90570,8 +98172,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11854 type: GasPipeStraight components: @@ -90581,8 +98181,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11855 type: GasPipeStraight components: @@ -90592,8 +98190,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11856 type: GasPipeStraight components: @@ -90603,8 +98199,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11857 type: GasPipeBend components: @@ -90614,8 +98208,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11858 type: GasPipeBend components: @@ -90625,8 +98217,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11859 type: GasVentPump components: @@ -90636,8 +98226,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11860 type: GasPipeStraight components: @@ -90647,8 +98235,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11861 type: GasPipeStraight components: @@ -90658,8 +98244,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11862 type: GasPipeBend components: @@ -90669,8 +98253,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11863 type: GasVentScrubber components: @@ -90680,8 +98262,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11864 type: GasPipeStraight components: @@ -90691,8 +98271,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11865 type: GasPipeTJunction components: @@ -90702,8 +98280,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11866 type: GasPipeStraight components: @@ -90713,8 +98289,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11867 type: GasPipeStraight components: @@ -90724,8 +98298,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11868 type: GasPipeStraight components: @@ -90735,8 +98307,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11869 type: GasPipeStraight components: @@ -90746,8 +98316,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11870 type: GasPipeStraight components: @@ -90757,8 +98325,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11871 type: GasPipeStraight components: @@ -90768,8 +98334,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11872 type: GasPipeStraight components: @@ -90779,8 +98343,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11873 type: GasPipeStraight components: @@ -90790,8 +98352,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11874 type: GasVentScrubber components: @@ -90801,8 +98361,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11875 type: GasVentPump components: @@ -90812,8 +98370,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11876 type: GasPipeTJunction components: @@ -90823,8 +98379,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11877 type: GasPipeStraight components: @@ -90834,8 +98388,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11878 type: GasPipeStraight components: @@ -90845,8 +98397,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11879 type: GasPipeStraight components: @@ -90856,8 +98406,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11880 type: GasPipeStraight components: @@ -90867,8 +98415,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11881 type: GasPipeTJunction components: @@ -90878,8 +98424,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11882 type: GasPipeStraight components: @@ -90889,8 +98433,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11883 type: GasPipeStraight components: @@ -90900,8 +98442,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11884 type: GasPipeStraight components: @@ -90911,8 +98451,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11885 type: GasPipeStraight components: @@ -90922,8 +98460,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11886 type: GasPipeStraight components: @@ -90933,8 +98469,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11887 type: GasPipeTJunction components: @@ -90943,8 +98477,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11888 type: GasPipeStraight components: @@ -90954,8 +98486,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11889 type: GasPipeStraight components: @@ -90965,8 +98495,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11890 type: GasPipeStraight components: @@ -90976,8 +98504,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11891 type: GasPipeTJunction components: @@ -90986,8 +98512,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11892 type: GasPipeStraight components: @@ -90997,8 +98521,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11893 type: GasPipeStraight components: @@ -91008,8 +98530,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11894 type: GasPipeStraight components: @@ -91019,8 +98539,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11895 type: GasPipeStraight components: @@ -91030,8 +98548,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11896 type: GasPipeStraight components: @@ -91041,8 +98557,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11897 type: GasPipeStraight components: @@ -91052,8 +98566,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11898 type: GasPipeStraight components: @@ -91063,8 +98575,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11899 type: GasPipeStraight components: @@ -91074,8 +98584,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11900 type: GasPipeStraight components: @@ -91085,8 +98593,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11901 type: GasPipeStraight components: @@ -91096,8 +98602,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11902 type: GasPipeStraight components: @@ -91107,8 +98611,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11903 type: GasPipeStraight components: @@ -91118,8 +98620,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11904 type: GasPipeStraight components: @@ -91129,8 +98629,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11905 type: GasPipeStraight components: @@ -91140,8 +98638,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11906 type: GasPipeStraight components: @@ -91151,8 +98647,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11907 type: GasPipeStraight components: @@ -91162,8 +98656,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11908 type: GasPipeTJunction components: @@ -91173,8 +98665,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11909 type: GasPipeTJunction components: @@ -91183,8 +98673,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11910 type: GasPipeStraight components: @@ -91194,8 +98682,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11911 type: GasPipeTJunction components: @@ -91205,8 +98691,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11912 type: GasPipeStraight components: @@ -91216,8 +98700,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11913 type: GasPipeStraight components: @@ -91227,8 +98709,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11914 type: GasPipeStraight components: @@ -91238,8 +98718,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11915 type: GasPipeStraight components: @@ -91249,8 +98727,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11916 type: GasPipeStraight components: @@ -91260,8 +98736,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11917 type: GasPipeStraight components: @@ -91271,8 +98745,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11918 type: GasPipeStraight components: @@ -91282,8 +98754,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11919 type: GasPipeStraight components: @@ -91293,8 +98763,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11920 type: GasPipeStraight components: @@ -91304,8 +98772,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11921 type: GasPipeStraight components: @@ -91315,8 +98781,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11922 type: GasPipeStraight components: @@ -91326,8 +98790,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11923 type: GasPipeStraight components: @@ -91337,8 +98799,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11924 type: GasPipeStraight components: @@ -91348,8 +98808,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11925 type: GasPipeStraight components: @@ -91359,8 +98817,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11926 type: GasPipeStraight components: @@ -91370,8 +98826,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11927 type: GasPipeStraight components: @@ -91381,8 +98835,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11928 type: GasPipeTJunction components: @@ -91392,8 +98844,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11929 type: GasPipeStraight components: @@ -91403,8 +98853,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11930 type: GasPipeStraight components: @@ -91414,8 +98862,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11931 type: GasPipeStraight components: @@ -91425,8 +98871,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11932 type: GasPipeStraight components: @@ -91436,8 +98880,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11933 type: GasPipeStraight components: @@ -91447,8 +98889,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11934 type: GasPipeTJunction components: @@ -91457,8 +98897,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11935 type: GasPipeStraight components: @@ -91468,8 +98906,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11936 type: GasPipeStraight components: @@ -91479,8 +98915,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11937 type: GasPipeStraight components: @@ -91490,8 +98924,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11938 type: GasPipeStraight components: @@ -91501,8 +98933,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11939 type: GasPipeStraight components: @@ -91512,8 +98942,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11940 type: GasPipeTJunction components: @@ -91523,8 +98951,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11941 type: GasPipeStraight components: @@ -91534,8 +98960,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11942 type: GasPipeStraight components: @@ -91545,8 +98969,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11943 type: GasPipeStraight components: @@ -91556,8 +98978,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11944 type: GasPipeStraight components: @@ -91567,8 +98987,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11945 type: GasPipeStraight components: @@ -91578,8 +98996,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11946 type: GasPipeStraight components: @@ -91589,8 +99005,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11947 type: GasPipeTJunction components: @@ -91599,8 +99013,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11948 type: GasPipeStraight components: @@ -91610,8 +99022,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11949 type: GasPipeStraight components: @@ -91621,8 +99031,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11950 type: GasPipeTJunction components: @@ -91631,8 +99039,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11951 type: GasPipeStraight components: @@ -91642,8 +99048,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11952 type: GasPipeStraight components: @@ -91653,8 +99057,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11953 type: GasPipeTJunction components: @@ -91664,8 +99066,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11954 type: GasVentScrubber components: @@ -91675,8 +99075,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11955 type: GasVentPump components: @@ -91686,8 +99084,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11956 type: GasVentPump components: @@ -91697,8 +99093,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11957 type: GasVentScrubber components: @@ -91708,8 +99102,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11958 type: GasPipeStraight components: @@ -91719,8 +99111,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11959 type: GasPipeStraight components: @@ -91730,8 +99120,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11960 type: GasPipeStraight components: @@ -91741,8 +99129,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11961 type: GasPipeStraight components: @@ -91752,8 +99138,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11962 type: GasPipeStraight components: @@ -91763,8 +99147,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11963 type: GasPipeTJunction components: @@ -91773,8 +99155,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11964 type: GasPipeStraight components: @@ -91784,8 +99164,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11965 type: GasPipeStraight components: @@ -91795,8 +99173,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11966 type: GasPipeStraight components: @@ -91806,8 +99182,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11967 type: GasPipeStraight components: @@ -91817,8 +99191,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11968 type: GasPipeStraight components: @@ -91828,8 +99200,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11969 type: GasPipeStraight components: @@ -91839,8 +99209,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11970 type: GasPipeStraight components: @@ -91850,8 +99218,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11971 type: GasPipeTJunction components: @@ -91861,8 +99227,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11972 type: GasPipeStraight components: @@ -91872,8 +99236,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11973 type: GasPipeStraight components: @@ -91883,8 +99245,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11974 type: GasPipeStraight components: @@ -91894,8 +99254,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11975 type: GasPipeTJunction components: @@ -91904,8 +99262,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11976 type: GasPipeStraight components: @@ -91915,8 +99271,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11977 type: GasPipeBend components: @@ -91926,8 +99280,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11978 type: GasPipeStraight components: @@ -91936,8 +99288,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11979 type: GasPipeStraight components: @@ -91946,8 +99296,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11980 type: GasPipeBend components: @@ -91957,8 +99305,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11981 type: GasVentPump components: @@ -91968,8 +99314,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11982 type: GasPipeTJunction components: @@ -91978,8 +99322,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11983 type: GasPipeStraight components: @@ -91988,8 +99330,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11984 type: GasPipeStraight components: @@ -91998,8 +99338,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11985 type: GasPipeStraight components: @@ -92008,8 +99346,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11986 type: GasPipeStraight components: @@ -92018,8 +99354,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11987 type: GasPipeBend components: @@ -92029,8 +99363,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11988 type: GasPipeBend components: @@ -92039,8 +99371,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11989 type: GasPipeBend components: @@ -92050,8 +99380,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11990 type: GasVentScrubber components: @@ -92061,68 +99389,68 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11991 - type: GasPipeStraight + type: GasPipeTJunction components: - - rot: 1.5707963267948966 rad - pos: -54.5,-43.5 + - rot: 3.141592653589793 rad + pos: -53.5,-45.5 parent: 6 type: Transform - - bodyType: Static - type: Physics + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 11992 - type: GasPipeStraight + type: GasPipeBend components: - rot: 1.5707963267948966 rad - pos: -54.5,-45.5 + pos: -54.5,-43.5 parent: 6 type: Transform - - bodyType: Static - type: Physics + - color: '#990000FF' + type: AtmosPipeColor - uid: 11993 type: GasPipeStraight components: - - rot: -1.5707963267948966 rad - pos: -55.5,-43.5 + - rot: 1.5707963267948966 rad + pos: -54.5,-45.5 parent: 6 type: Transform - - bodyType: Static - type: Physics + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 11994 - type: GasPipeBend + type: GasPipeTJunction components: - rot: 3.141592653589793 rad - pos: -56.5,-43.5 + pos: -55.5,-45.5 parent: 6 type: Transform - - bodyType: Static - type: Physics + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 11995 - type: GasPipeStraight + type: GasPipeBend components: - - rot: -1.5707963267948966 rad - pos: -55.5,-45.5 + - pos: -55.5,-43.5 parent: 6 type: Transform - - bodyType: Static - type: Physics + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 11996 - type: AsteroidRock + type: GasPipeStraight components: - - pos: -60.5,-25.5 + - rot: -1.5707963267948966 rad + pos: -56.5,-43.5 parent: 6 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 11997 - type: GasPipeBend + type: GasPipeStraight components: - - rot: 1.5707963267948966 rad + - rot: -1.5707963267948966 rad pos: -56.5,-45.5 parent: 6 type: Transform - - bodyType: Static - type: Physics + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 11998 type: GasPipeStraight components: @@ -92132,44 +99460,50 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 11999 - type: AsteroidRock + type: GasPipeStraight components: - - pos: -59.5,-26.5 + - rot: 3.141592653589793 rad + pos: -55.5,-44.5 parent: 6 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 12000 - type: Grille + type: GasVentPump components: - - pos: -58.5,-43.5 + - rot: 1.5707963267948966 rad + pos: -57.5,-45.5 parent: 6 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 12001 - type: GasVentScrubber + type: GasVentPump components: - - pos: -56.5,-42.5 + - rot: 1.5707963267948966 rad + pos: -57.5,-43.5 parent: 6 type: Transform - - bodyType: Static - type: Physics + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 12002 type: GasVentPump components: - - rot: 3.141592653589793 rad - pos: -56.5,-46.5 + - pos: -53.5,-44.5 parent: 6 type: Transform - - bodyType: Static - type: Physics + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 12003 - type: SignTelecomms + type: GasVentScrubber components: - rot: 3.141592653589793 rad - pos: -51.5,-44.5 + pos: -54.5,-44.5 parent: 6 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 12004 type: GasVentPump components: @@ -92178,8 +99512,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12005 type: GasVentScrubber components: @@ -92189,8 +99521,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12006 type: GasPipeStraight components: @@ -92200,8 +99530,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12007 type: GasPipeStraight components: @@ -92210,8 +99538,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12008 type: GasVentScrubber components: @@ -92220,8 +99546,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12009 type: GasPipeTJunction components: @@ -92231,8 +99555,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12010 type: GasPipeTJunction components: @@ -92242,8 +99564,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12011 type: GasPipeTJunction components: @@ -92253,8 +99573,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12012 type: GasPipeTJunction components: @@ -92264,8 +99582,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12013 type: GasPipeTJunction components: @@ -92275,8 +99591,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12014 type: GasPipeBend components: @@ -92286,8 +99600,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12015 type: GasPipeStraight components: @@ -92296,8 +99608,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12016 type: GasPipeStraight components: @@ -92306,8 +99616,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12017 type: GasPipeStraight components: @@ -92316,8 +99624,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12018 type: GasPipeStraight components: @@ -92326,8 +99632,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12019 type: GasPipeTJunction components: @@ -92337,8 +99641,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12020 type: GasPipeStraight components: @@ -92347,8 +99649,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12021 type: GasPipeStraight components: @@ -92357,8 +99657,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12022 type: GasPipeStraight components: @@ -92367,8 +99665,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12023 type: GasPipeStraight components: @@ -92378,8 +99674,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12024 type: GasPipeStraight components: @@ -92389,8 +99683,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12025 type: GasPipeStraight components: @@ -92400,8 +99692,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12026 type: GasVentScrubber components: @@ -92411,8 +99701,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12027 type: GasVentScrubber components: @@ -92422,8 +99710,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12028 type: GasVentScrubber components: @@ -92433,8 +99719,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12029 type: GasVentScrubber components: @@ -92444,8 +99728,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12030 type: GasVentScrubber components: @@ -92455,8 +99737,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12031 type: GasVentScrubber components: @@ -92466,8 +99746,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12032 type: GasPipeStraight components: @@ -92477,8 +99755,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12033 type: GasPipeStraight components: @@ -92488,8 +99764,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12034 type: GasPipeStraight components: @@ -92499,8 +99773,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12035 type: GasPipeStraight components: @@ -92510,8 +99782,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12036 type: GasPipeStraight components: @@ -92521,8 +99791,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12037 type: GasPipeStraight components: @@ -92532,8 +99800,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12038 type: GasPipeStraight components: @@ -92543,8 +99809,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12039 type: GasPipeStraight components: @@ -92554,8 +99818,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12040 type: GasPipeStraight components: @@ -92565,8 +99827,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12041 type: GasPipeStraight components: @@ -92576,8 +99836,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12042 type: GasPipeStraight components: @@ -92587,8 +99845,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12043 type: GasPipeTJunction components: @@ -92598,8 +99854,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12044 type: GasVentPump components: @@ -92609,8 +99863,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12045 type: GasPipeStraight components: @@ -92619,8 +99871,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12046 type: GasPipeStraight components: @@ -92629,8 +99879,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12047 type: GasPipeStraight components: @@ -92639,8 +99887,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12048 type: GasPipeStraight components: @@ -92649,8 +99895,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12049 type: GasPipeStraight components: @@ -92659,8 +99903,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12050 type: GasPipeStraight components: @@ -92669,8 +99911,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12051 type: GasPipeStraight components: @@ -92679,8 +99919,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12052 type: GasPipeBend components: @@ -92689,8 +99927,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12053 type: GasVentPump components: @@ -92700,8 +99936,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12054 type: GasVentScrubber components: @@ -92711,8 +99945,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12055 type: GasPipeStraight components: @@ -92722,8 +99954,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12056 type: GasPipeStraight components: @@ -92733,8 +99963,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12057 type: GasPipeStraight components: @@ -92744,10 +99972,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12058 type: GasVentPump components: @@ -92756,8 +99980,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12059 type: GasVentScrubber components: @@ -92766,8 +99988,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12060 type: GasPipeStraight components: @@ -92776,10 +99996,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12061 type: GasVentPump components: @@ -92788,8 +100004,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12062 type: GasVentScrubber components: @@ -92799,8 +100013,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12063 type: GasPipeStraight components: @@ -92810,8 +100022,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12064 type: GasPipeStraight components: @@ -92821,8 +100031,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12065 type: GasPipeStraight components: @@ -92832,8 +100040,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12066 type: GasPipeTJunction components: @@ -92843,8 +100049,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12067 type: GasPipeTJunction components: @@ -92854,8 +100058,14 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics +- uid: 12068 + type: GasPipeTJunction + components: + - pos: 36.5,-10.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 12069 type: GasPipeTJunction components: @@ -92865,8 +100075,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12070 type: GasVentScrubber components: @@ -92876,8 +100084,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12071 type: GasVentPump components: @@ -92886,8 +100092,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12072 type: GasPipeStraight components: @@ -92897,8 +100101,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12073 type: GasPipeStraight components: @@ -92908,8 +100110,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12074 type: GasPipeStraight components: @@ -92919,8 +100119,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12075 type: GasPipeStraight components: @@ -92930,8 +100128,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12076 type: GasPipeStraight components: @@ -92941,8 +100137,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12077 type: GasPipeStraight components: @@ -92952,8 +100146,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12078 type: GasPipeStraight components: @@ -92963,8 +100155,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12079 type: GasPipeStraight components: @@ -92974,8 +100164,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12080 type: GasPipeStraight components: @@ -92985,8 +100173,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12081 type: GasPipeStraight components: @@ -92996,8 +100182,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12082 type: GasPipeStraight components: @@ -93007,8 +100191,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12083 type: GasPipeStraight components: @@ -93018,8 +100200,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12084 type: GasPipeBend components: @@ -93029,8 +100209,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12085 type: GasPipeStraight components: @@ -93040,8 +100218,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12086 type: GasPipeStraight components: @@ -93051,8 +100227,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12087 type: GasPipeStraight components: @@ -93062,8 +100236,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12088 type: GasPipeStraight components: @@ -93073,8 +100245,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12089 type: GasPipeStraight components: @@ -93084,8 +100254,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12090 type: GasPipeTJunction components: @@ -93095,8 +100263,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics +- uid: 12091 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12092 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12093 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12094 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-0.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 12095 type: GasPipeStraight components: @@ -93106,8 +100308,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12096 type: GasPipeStraight components: @@ -93117,8 +100317,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12097 type: GasPipeStraight components: @@ -93128,8 +100326,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12098 type: GasPipeStraight components: @@ -93139,8 +100335,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12099 type: GasPipeStraight components: @@ -93150,8 +100344,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12100 type: GasPipeStraight components: @@ -93161,8 +100353,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12101 type: GasPipeStraight components: @@ -93172,8 +100362,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12102 type: GasPipeStraight components: @@ -93183,8 +100371,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12103 type: GasPipeStraight components: @@ -93194,8 +100380,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12104 type: GasPipeStraight components: @@ -93205,8 +100389,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12105 type: GasPipeStraight components: @@ -93216,8 +100398,15 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics +- uid: 12106 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 12107 type: GasPipeTJunction components: @@ -93225,142 +100414,373 @@ entities: pos: 31.5,-2.5 parent: 6 type: Transform - - color: '#0055CCFF' + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12108 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 30.5,-9.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12109 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12110 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 30.5,-7.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12111 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 30.5,-6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12112 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 30.5,-5.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12113 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 30.5,-4.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12114 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 30.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12115 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 30.5,-2.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12116 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 43.5,-1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12117 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 43.5,-0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12118 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 43.5,0.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12119 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 43.5,1.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12120 + type: GasPipeTJunction + components: + - rot: 1.5707963267948966 rad + pos: 43.5,2.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12121 + type: GasPipeStraight + components: + - pos: 43.5,3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12122 + type: GasPipeStraight + components: + - pos: 43.5,4.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12123 + type: GasPipeStraight + components: + - pos: 43.5,5.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12124 + type: GasPipeBend + components: + - pos: 43.5,6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12125 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 42.5,6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12126 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 41.5,6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12127 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 40.5,6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12128 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 39.5,6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12129 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 38.5,6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12130 + type: GasVentPump + components: + - rot: 1.5707963267948966 rad + pos: 37.5,6.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12131 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 36.5,6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12132 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12133 + type: GasVentScrubber + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12134 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: 42.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12135 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 42.5,-1.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12136 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 42.5,-2.5 + parent: 6 + type: Transform + - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12108 +- uid: 12137 type: GasPipeStraight components: - rot: 3.141592653589793 rad - pos: 30.5,-9.5 + pos: 42.5,-4.5 parent: 6 type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12109 - type: GasPipeStraight +- uid: 12138 + type: GasPipeTJunction components: - - rot: 3.141592653589793 rad - pos: 30.5,-8.5 + - rot: 1.5707963267948966 rad + pos: 42.5,-5.5 parent: 6 type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12110 +- uid: 12139 type: GasPipeStraight components: - rot: 3.141592653589793 rad - pos: 30.5,-7.5 + pos: 42.5,-6.5 parent: 6 type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12111 +- uid: 12140 type: GasPipeStraight components: - rot: 3.141592653589793 rad - pos: 30.5,-6.5 + pos: 42.5,-7.5 parent: 6 type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12112 +- uid: 12141 type: GasPipeStraight components: - rot: 3.141592653589793 rad - pos: 30.5,-5.5 + pos: 42.5,-8.5 parent: 6 type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12113 +- uid: 12142 type: GasPipeStraight components: - rot: 3.141592653589793 rad - pos: 30.5,-4.5 + pos: 42.5,-9.5 parent: 6 type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12114 - type: GasPipeStraight +- uid: 12143 + type: GasPipeBend components: - - rot: 3.141592653589793 rad - pos: 30.5,-3.5 + - rot: -1.5707963267948966 rad + pos: 42.5,-10.5 parent: 6 type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12115 +- uid: 12144 type: GasPipeStraight components: - - rot: 3.141592653589793 rad - pos: 30.5,-2.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-10.5 parent: 6 type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12116 +- uid: 12145 type: GasPipeStraight components: - - rot: 3.141592653589793 rad - pos: 43.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 40.5,-10.5 parent: 6 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12117 +- uid: 12146 type: GasPipeStraight components: - - rot: 3.141592653589793 rad - pos: 43.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 39.5,-10.5 parent: 6 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12118 +- uid: 12147 type: GasPipeStraight components: - - rot: 3.141592653589793 rad - pos: 43.5,0.5 + - rot: -1.5707963267948966 rad + pos: 38.5,-10.5 parent: 6 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12119 +- uid: 12148 type: GasPipeStraight components: - - rot: 3.141592653589793 rad - pos: 43.5,1.5 + - rot: -1.5707963267948966 rad + pos: 37.5,-10.5 parent: 6 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12149 type: GasPipeStraight components: @@ -93370,8 +100790,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12150 type: GasPipeStraight components: @@ -93381,8 +100799,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12151 type: GasPipeStraight components: @@ -93392,8 +100808,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12152 type: GasPipeStraight components: @@ -93403,8 +100817,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12153 type: GasPipeStraight components: @@ -93414,8 +100826,60 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics +- uid: 12154 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 42.5,1.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12155 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: 42.5,2.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12156 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: 42.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12157 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 43.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12158 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 44.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12159 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 45.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 12160 type: GasPipeStraight components: @@ -93425,8 +100889,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12161 type: GasPipeStraight components: @@ -93436,8 +100898,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12162 type: GasPipeStraight components: @@ -93447,10 +100907,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12163 type: GasPipeStraight components: @@ -93460,8 +100916,42 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics +- uid: 12164 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-5.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12165 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12166 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-5.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12167 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-5.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 12168 type: GasVentPump components: @@ -93471,8 +100961,15 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics +- uid: 12169 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: 46.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 12170 type: GasVentPump components: @@ -93482,8 +100979,85 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics +- uid: 12171 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 35.5,6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12172 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 34.5,6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12173 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 33.5,6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12174 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 32.5,6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12175 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: 31.5,6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12176 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: 30.5,6.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12177 + type: GasPipeStraight + components: + - pos: 30.5,5.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12178 + type: GasPipeStraight + components: + - pos: 30.5,4.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12179 + type: GasPipeTJunction + components: + - rot: -1.5707963267948966 rad + pos: 30.5,3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 12180 type: GasPipeBend components: @@ -93492,8 +101066,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12181 type: GasPipeStraight components: @@ -93502,8 +101074,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12182 type: GasPipeStraight components: @@ -93512,8 +101082,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12183 type: GasPipeStraight components: @@ -93522,8 +101090,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12184 type: GasPipeStraight components: @@ -93532,8 +101098,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12185 type: GasPipeStraight components: @@ -93542,8 +101106,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12186 type: GasPipeStraight components: @@ -93552,8 +101114,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12187 type: GasPipeStraight components: @@ -93562,8 +101122,78 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics +- uid: 12188 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12189 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12190 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12191 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 6 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- uid: 12192 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12193 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12194 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- uid: 12195 + type: GasPipeStraight + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-3.5 + parent: 6 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 12196 type: GasPipeStraight components: @@ -93573,8 +101203,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12197 type: GasPipeStraight components: @@ -93584,10 +101212,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12198 type: GasPipeStraight components: @@ -93597,8 +101221,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12199 type: GasVentPump components: @@ -93608,8 +101230,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12200 type: GasVentScrubber components: @@ -93619,8 +101239,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12201 type: GasPipeStraight components: @@ -93630,8 +101248,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12202 type: GasPipeStraight components: @@ -93641,10 +101257,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12203 type: GasPipeStraight components: @@ -93653,8 +101265,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12204 type: GasPipeStraight components: @@ -93663,8 +101273,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12205 type: GasPipeStraight components: @@ -93673,8 +101281,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12206 type: GasPipeTJunction components: @@ -93684,8 +101290,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12207 type: GasPipeStraight components: @@ -93694,8 +101298,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12208 type: GasVentPump components: @@ -93705,8 +101307,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12209 type: GasVentScrubber components: @@ -93716,8 +101316,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12210 type: GasPipeStraight components: @@ -93726,8 +101324,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12211 type: GasPipeStraight components: @@ -93736,8 +101332,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12212 type: GasPipeStraight components: @@ -93746,8 +101340,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12213 type: GasPipeStraight components: @@ -93756,8 +101348,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12214 type: GasPipeStraight components: @@ -93766,8 +101356,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12215 type: GasPipeStraight components: @@ -93776,8 +101364,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12216 type: GasPipeStraight components: @@ -93786,8 +101372,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12217 type: GasPipeStraight components: @@ -93796,8 +101380,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12218 type: GasVentScrubber components: @@ -93807,8 +101389,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12219 type: GasVentPump components: @@ -93818,8 +101398,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12220 type: GasPipeStraight components: @@ -93828,8 +101406,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12221 type: GasPipeStraight components: @@ -93838,8 +101414,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12222 type: GasPipeStraight components: @@ -93848,8 +101422,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12223 type: GasPipeStraight components: @@ -93858,8 +101430,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12224 type: GasPipeStraight components: @@ -93868,8 +101438,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12225 type: GasPipeStraight components: @@ -93878,8 +101446,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12226 type: GasPipeStraight components: @@ -93888,8 +101454,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12227 type: GasPipeStraight components: @@ -93898,10 +101462,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12228 type: GasVentScrubber components: @@ -93911,8 +101471,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12229 type: GasVentPump components: @@ -93922,8 +101480,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12230 type: GasPipeStraight components: @@ -93933,8 +101489,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12231 type: GasPipeStraight components: @@ -93944,10 +101498,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12232 type: GasPipeStraight components: @@ -93957,8 +101507,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12233 type: GasPipeStraight components: @@ -93968,10 +101516,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12234 type: GasVentScrubber components: @@ -93981,8 +101525,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12235 type: GasVentScrubber components: @@ -93992,8 +101534,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12236 type: GasPipeStraight components: @@ -94002,8 +101542,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12237 type: GasPipeStraight components: @@ -94012,8 +101550,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12238 type: GasPipeStraight components: @@ -94022,8 +101558,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12239 type: GasPipeTJunction components: @@ -94033,8 +101567,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12240 type: GasPipeTJunction components: @@ -94044,8 +101576,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12241 type: GasPipeStraight components: @@ -94054,8 +101584,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12242 type: GasPipeStraight components: @@ -94064,8 +101592,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12243 type: GasPipeStraight components: @@ -94074,8 +101600,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12244 type: GasPipeBend components: @@ -94085,8 +101609,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12245 type: GasPipeBend components: @@ -94096,8 +101618,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12246 type: GasPipeStraight components: @@ -94106,8 +101626,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12247 type: GasPipeStraight components: @@ -94117,8 +101635,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12248 type: GasPipeStraight components: @@ -94127,8 +101643,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12249 type: GasPipeTJunction components: @@ -94138,8 +101652,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12250 type: GasPipeStraight components: @@ -94148,8 +101660,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12251 type: GasPipeTJunction components: @@ -94159,8 +101669,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12252 type: GasPipeStraight components: @@ -94169,8 +101677,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12253 type: GasPipeStraight components: @@ -94179,8 +101685,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12254 type: GasPipeStraight components: @@ -94189,8 +101693,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12255 type: GasPipeStraight components: @@ -94199,8 +101701,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12256 type: GasPipeStraight components: @@ -94209,8 +101709,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12257 type: GasPipeStraight components: @@ -94219,8 +101717,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12258 type: GasPipeStraight components: @@ -94229,8 +101725,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12259 type: GasPipeFourway components: @@ -94239,8 +101733,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12260 type: GasPipeTJunction components: @@ -94250,8 +101742,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12261 type: GasPipeStraight components: @@ -94260,8 +101750,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12262 type: GasPipeStraight components: @@ -94270,8 +101758,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12263 type: GasPipeStraight components: @@ -94280,8 +101766,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12264 type: GasPipeStraight components: @@ -94290,8 +101774,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12265 type: GasPipeStraight components: @@ -94300,8 +101782,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12266 type: GasPipeTJunction components: @@ -94311,8 +101791,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12267 type: GasPipeStraight components: @@ -94321,8 +101799,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12268 type: GasPipeStraight components: @@ -94331,8 +101807,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12269 type: GasPipeBend components: @@ -94342,8 +101816,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12270 type: GasPipeStraight components: @@ -94353,8 +101825,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12271 type: GasPipeTJunction components: @@ -94363,8 +101833,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12272 type: GasPipeStraight components: @@ -94374,8 +101842,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12273 type: GasPipeStraight components: @@ -94385,8 +101851,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12274 type: GasPipeStraight components: @@ -94396,8 +101860,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12275 type: GasPipeStraight components: @@ -94407,8 +101869,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12276 type: GasPipeStraight components: @@ -94418,8 +101878,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12277 type: GasPipeStraight components: @@ -94429,8 +101887,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12278 type: GasPipeStraight components: @@ -94440,8 +101896,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12279 type: GasPipeStraight components: @@ -94451,8 +101905,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12280 type: GasPipeStraight components: @@ -94462,8 +101914,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12281 type: GasPipeStraight components: @@ -94473,8 +101923,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12282 type: GasPipeStraight components: @@ -94484,8 +101932,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12283 type: GasPipeStraight components: @@ -94495,8 +101941,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12284 type: GasPipeStraight components: @@ -94506,8 +101950,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12285 type: GasPipeTJunction components: @@ -94516,8 +101958,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12286 type: GasPipeStraight components: @@ -94527,8 +101967,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12287 type: GasPipeStraight components: @@ -94538,8 +101976,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12288 type: GasPipeTJunction components: @@ -94549,8 +101985,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12289 type: GasPipeStraight components: @@ -94560,8 +101994,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12290 type: GasPipeStraight components: @@ -94571,8 +102003,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12291 type: GasPipeStraight components: @@ -94582,8 +102012,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12292 type: GasPipeStraight components: @@ -94593,8 +102021,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12293 type: GasPipeTJunction components: @@ -94604,8 +102030,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12294 type: GasPipeStraight components: @@ -94615,8 +102039,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12295 type: GasPipeStraight components: @@ -94626,8 +102048,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12296 type: GasPipeStraight components: @@ -94637,8 +102057,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12297 type: GasPipeStraight components: @@ -94648,8 +102066,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12298 type: GasPipeStraight components: @@ -94659,8 +102075,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12299 type: GasPipeStraight components: @@ -94670,8 +102084,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12300 type: GasPipeStraight components: @@ -94681,8 +102093,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12301 type: GasPipeStraight components: @@ -94692,8 +102102,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12302 type: GasPipeStraight components: @@ -94703,8 +102111,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12303 type: GasPipeStraight components: @@ -94714,8 +102120,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12304 type: GasPipeStraight components: @@ -94725,8 +102129,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12305 type: GasVentPump components: @@ -94736,8 +102138,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12306 type: GasPipeTJunction components: @@ -94747,8 +102147,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12307 type: GasPipeStraight components: @@ -94758,8 +102156,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12308 type: GasPipeStraight components: @@ -94769,8 +102165,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12309 type: GasPipeStraight components: @@ -94780,8 +102174,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12310 type: GasPipeStraight components: @@ -94791,8 +102183,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12311 type: GasPipeStraight components: @@ -94802,8 +102192,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12312 type: GasPipeStraight components: @@ -94813,8 +102201,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12313 type: GasPipeStraight components: @@ -94824,8 +102210,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12314 type: GasPipeStraight components: @@ -94835,8 +102219,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12315 type: GasPipeStraight components: @@ -94846,8 +102228,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12316 type: GasPipeStraight components: @@ -94857,8 +102237,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12317 type: GasPipeTJunction components: @@ -94868,8 +102246,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12318 type: GasPipeStraight components: @@ -94879,8 +102255,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12319 type: GasPipeTJunction components: @@ -94890,8 +102264,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12320 type: GasPipeStraight components: @@ -94900,8 +102272,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12321 type: GasPipeStraight components: @@ -94910,8 +102280,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12322 type: GasPipeStraight components: @@ -94920,8 +102288,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12323 type: GasPipeStraight components: @@ -94930,8 +102296,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12324 type: GasPipeStraight components: @@ -94940,8 +102304,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12325 type: GasPipeStraight components: @@ -94950,8 +102312,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12326 type: GasPipeStraight components: @@ -94960,8 +102320,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12327 type: GasPipeStraight components: @@ -94970,8 +102328,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12328 type: GasPipeStraight components: @@ -94980,8 +102336,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12329 type: GasPipeStraight components: @@ -94990,8 +102344,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12330 type: GasVentPump components: @@ -95001,8 +102353,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12331 type: GasVentScrubber components: @@ -95012,8 +102362,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12332 type: GasPipeStraight components: @@ -95023,8 +102371,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12333 type: GasPipeStraight components: @@ -95034,10 +102380,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12334 type: GasPipeStraight components: @@ -95047,8 +102389,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12335 type: GasPipeBend components: @@ -95057,8 +102397,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12336 type: GasVentScrubber components: @@ -95068,8 +102406,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12337 type: GasPipeStraight components: @@ -95079,8 +102415,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12338 type: GasPipeStraight components: @@ -95090,8 +102424,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12339 type: GasPipeStraight components: @@ -95101,8 +102433,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12340 type: GasPipeStraight components: @@ -95112,8 +102442,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12341 type: GasPipeBend components: @@ -95123,8 +102451,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12342 type: GasPipeStraight components: @@ -95134,8 +102460,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12343 type: GasPipeStraight components: @@ -95145,8 +102469,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12344 type: GasPipeStraight components: @@ -95156,8 +102478,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12345 type: GasVentScrubber components: @@ -95167,8 +102487,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12346 type: GasVentPump components: @@ -95178,8 +102496,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12347 type: GasPipeStraight components: @@ -95189,8 +102505,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12348 type: GasPipeStraight components: @@ -95200,8 +102514,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12349 type: GasPipeStraight components: @@ -95211,8 +102523,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12350 type: GasPipeStraight components: @@ -95222,8 +102532,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12351 type: GasPipeStraight components: @@ -95233,8 +102541,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12352 type: GasPipeStraight components: @@ -95244,10 +102550,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12353 type: GasPipeStraight components: @@ -95257,8 +102559,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12354 type: GasPipeStraight components: @@ -95268,8 +102568,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12355 type: GasPipeStraight components: @@ -95279,8 +102577,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12356 type: GasPipeTJunction components: @@ -95290,8 +102586,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12357 type: GasVentScrubber components: @@ -95301,8 +102595,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12358 type: GasVentPump components: @@ -95312,8 +102604,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12359 type: GasPipeBend components: @@ -95323,8 +102613,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12360 type: GasPipeStraight components: @@ -95334,8 +102622,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12361 type: GasPipeStraight components: @@ -95345,8 +102631,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12362 type: GasPipeStraight components: @@ -95356,8 +102640,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12363 type: GasVentScrubber components: @@ -95366,8 +102648,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12364 type: GasVentPump components: @@ -95377,8 +102657,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12365 type: GasPipeStraight components: @@ -95388,8 +102666,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12366 type: GasPipeStraight components: @@ -95399,8 +102675,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12367 type: GasPipeStraight components: @@ -95410,8 +102684,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12368 type: GasVentPump components: @@ -95421,8 +102693,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12369 type: GasVentScrubber components: @@ -95432,8 +102702,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12370 type: GasPipeStraight components: @@ -95443,8 +102711,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12371 type: GasPipeStraight components: @@ -95454,8 +102720,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12372 type: GasPipeStraight components: @@ -95465,8 +102729,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12373 type: GasPipeStraight components: @@ -95476,8 +102738,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12374 type: GasPipeStraight components: @@ -95487,8 +102747,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12375 type: GasPipeStraight components: @@ -95498,8 +102756,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12376 type: GasPipeStraight components: @@ -95509,8 +102765,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12377 type: GasPipeStraight components: @@ -95520,8 +102774,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12378 type: GasPipeStraight components: @@ -95531,8 +102783,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12379 type: GasPipeStraight components: @@ -95542,8 +102792,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12380 type: GasVentScrubber components: @@ -95553,8 +102801,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12381 type: GasVentPump components: @@ -95564,8 +102810,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12382 type: GasPipeTJunction components: @@ -95575,8 +102819,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12383 type: GasVentScrubber components: @@ -95586,8 +102828,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12384 type: GasPipeStraight components: @@ -95597,8 +102837,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12385 type: GasPipeStraight components: @@ -95608,8 +102846,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12386 type: GasPipeFourway components: @@ -95618,8 +102854,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12387 type: GasPipeStraight components: @@ -95629,8 +102863,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12388 type: GasPipeStraight components: @@ -95640,8 +102872,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12389 type: GasPipeStraight components: @@ -95651,8 +102881,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12390 type: GasPipeTJunction components: @@ -95661,8 +102889,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12391 type: GasPipeStraight components: @@ -95672,8 +102898,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12392 type: GasPipeStraight components: @@ -95683,8 +102907,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12393 type: GasPipeTJunction components: @@ -95694,8 +102916,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12394 type: GasPipeStraight components: @@ -95705,8 +102925,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12395 type: GasPipeStraight components: @@ -95716,8 +102934,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12396 type: GasPipeStraight components: @@ -95727,8 +102943,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12397 type: GasPipeTJunction components: @@ -95737,8 +102951,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12398 type: GasPipeStraight components: @@ -95748,8 +102960,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12399 type: GasPipeBend components: @@ -95759,8 +102969,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12400 type: GasPipeStraight components: @@ -95770,8 +102978,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12401 type: GasPipeStraight components: @@ -95781,8 +102987,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12402 type: GasPipeBend components: @@ -95792,8 +102996,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12403 type: GasPipeStraight components: @@ -95803,8 +103005,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12404 type: GasPipeStraight components: @@ -95814,8 +103014,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12405 type: GasPipeStraight components: @@ -95825,8 +103023,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12406 type: GasPipeBend components: @@ -95836,8 +103032,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12407 type: GasVentScrubber components: @@ -95846,8 +103040,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12408 type: GasVentPump components: @@ -95857,8 +103049,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12409 type: GasPipeStraight components: @@ -95868,8 +103058,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12410 type: GasPipeStraight components: @@ -95879,8 +103067,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12411 type: GasPipeStraight components: @@ -95890,8 +103076,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12412 type: GasPipeStraight components: @@ -95901,8 +103085,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12413 type: GasVentPump components: @@ -95912,8 +103094,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12414 type: GasVentScrubber components: @@ -95923,8 +103103,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12415 type: FirelockGlass components: @@ -95958,8 +103136,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12420 type: GasVentScrubber components: @@ -95969,8 +103145,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12421 type: GasPipeTJunction components: @@ -95980,8 +103154,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12422 type: GasPipeStraight components: @@ -95990,8 +103162,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12423 type: GasPipeStraight components: @@ -96000,8 +103170,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12424 type: GasPipeStraight components: @@ -96010,8 +103178,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12425 type: GasPipeStraight components: @@ -96020,8 +103186,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12426 type: GasPipeStraight components: @@ -96030,10 +103194,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12427 type: GasPipeStraight components: @@ -96042,8 +103202,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12428 type: GasPipeStraight components: @@ -96052,10 +103210,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12429 type: GasVentScrubber components: @@ -96064,8 +103218,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12430 type: GasVentPump components: @@ -96074,8 +103226,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12431 type: GasVentPump components: @@ -96084,8 +103234,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12432 type: GasVentScrubber components: @@ -96095,8 +103243,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12433 type: GasPipeStraight components: @@ -96106,8 +103252,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12434 type: GasPipeStraight components: @@ -96117,8 +103261,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12435 type: GasPipeTJunction components: @@ -96128,8 +103270,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12436 type: GasPipeStraight components: @@ -96139,8 +103279,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12437 type: GasPipeBend components: @@ -96150,8 +103288,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12438 type: GasPipeBend components: @@ -96160,8 +103296,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12439 type: GasPipeTJunction components: @@ -96171,8 +103305,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12440 type: GasVentPump components: @@ -96182,8 +103314,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12441 type: GasPipeStraight components: @@ -96192,8 +103322,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12442 type: GasPipeStraight components: @@ -96202,10 +103330,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12443 type: GasPipeFourway components: @@ -96214,8 +103338,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12444 type: GasPipeStraight components: @@ -96224,8 +103346,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12445 type: GasPipeStraight components: @@ -96234,8 +103354,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12446 type: GasPipeStraight components: @@ -96244,8 +103362,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12447 type: GasPipeStraight components: @@ -96254,8 +103370,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12448 type: GasPipeTJunction components: @@ -96265,8 +103379,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12449 type: GasPipeStraight components: @@ -96275,10 +103387,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12450 type: GasPipeStraight components: @@ -96287,8 +103395,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12451 type: GasPipeStraight components: @@ -96297,8 +103403,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12452 type: GasPipeFourway components: @@ -96307,8 +103411,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12453 type: GasVentPump components: @@ -96318,8 +103420,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12454 type: GasVentScrubber components: @@ -96329,8 +103429,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12455 type: GasPipeStraight components: @@ -96340,8 +103438,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12456 type: GasPipeStraight components: @@ -96351,8 +103447,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12457 type: GasPipeBend components: @@ -96362,8 +103456,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12458 type: GasVentScrubber components: @@ -96372,8 +103464,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12459 type: GasPipeBend components: @@ -96383,8 +103473,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12460 type: GasVentPump components: @@ -96393,8 +103481,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12461 type: GasPipeStraight components: @@ -96404,8 +103490,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12462 type: GasPipeStraight components: @@ -96415,8 +103499,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12463 type: GasPipeStraight components: @@ -96426,8 +103508,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12464 type: GasPipeStraight components: @@ -96437,8 +103517,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12465 type: GasVentScrubber components: @@ -96448,8 +103526,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12466 type: GasPipeTJunction components: @@ -96459,8 +103535,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12467 type: GasVentPump components: @@ -96469,8 +103543,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12468 type: GasPipeStraight components: @@ -96479,8 +103551,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12469 type: GasPipeStraight components: @@ -96489,8 +103559,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12470 type: GasPipeBend components: @@ -96500,8 +103568,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12471 type: GasPipeStraight components: @@ -96511,8 +103577,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12472 type: GasPipeStraight components: @@ -96522,8 +103586,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12473 type: GasPipeStraight components: @@ -96533,8 +103595,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12474 type: GasPipeStraight components: @@ -96544,8 +103604,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12475 type: GasPipeTJunction components: @@ -96555,8 +103613,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12476 type: GasPipeStraight components: @@ -96566,8 +103622,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12477 type: GasPipeTJunction components: @@ -96576,8 +103630,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12478 type: GasVentScrubber components: @@ -96587,8 +103639,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12479 type: GasPipeBend components: @@ -96597,8 +103647,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12480 type: GasVentPump components: @@ -96608,8 +103656,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12481 type: GasPipeStraight components: @@ -96619,8 +103665,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12482 type: GasPipeStraight components: @@ -96630,8 +103674,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12483 type: GasPipeStraight components: @@ -96641,8 +103683,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12484 type: GasPipeStraight components: @@ -96652,8 +103692,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12485 type: GasPipeStraight components: @@ -96663,8 +103701,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12486 type: GasPipeStraight components: @@ -96674,8 +103710,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12487 type: GasPipeStraight components: @@ -96685,8 +103719,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12488 type: GasPipeTJunction components: @@ -96696,8 +103728,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12489 type: GasVentPump components: @@ -96707,8 +103737,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12490 type: GasPipeTJunction components: @@ -96718,8 +103746,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12491 type: GasVentScrubber components: @@ -96729,8 +103755,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12492 type: GasPipeStraight components: @@ -96739,8 +103763,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12493 type: GasPipeStraight components: @@ -96749,8 +103771,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12494 type: GasPipeStraight components: @@ -96759,8 +103779,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12495 type: GasPipeStraight components: @@ -96769,8 +103787,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12496 type: GasPipeStraight components: @@ -96779,8 +103795,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12497 type: GasPipeStraight components: @@ -96789,8 +103803,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12498 type: GasPipeStraight components: @@ -96799,8 +103811,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12499 type: GasPipeStraight components: @@ -96809,8 +103819,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12500 type: GasPipeStraight components: @@ -96819,10 +103827,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12501 type: GasPipeStraight components: @@ -96831,10 +103835,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12502 type: GasPipeStraight components: @@ -96843,10 +103843,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12503 type: GasPipeStraight components: @@ -96855,8 +103851,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12504 type: GasPipeTJunction components: @@ -96866,8 +103860,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12505 type: GasPipeTJunction components: @@ -96877,8 +103869,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12506 type: GasVentPump components: @@ -96888,8 +103878,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12507 type: GasVentScrubber components: @@ -96899,8 +103887,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12508 type: GasPipeStraight components: @@ -96909,8 +103895,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12509 type: GasPipeStraight components: @@ -96919,8 +103903,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12510 type: GasPipeStraight components: @@ -96929,10 +103911,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12511 type: GasPipeStraight components: @@ -96941,10 +103919,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12512 type: GasPipeStraight components: @@ -96953,10 +103927,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12513 type: GasPipeStraight components: @@ -96965,8 +103935,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12514 type: GasPipeStraight components: @@ -96975,8 +103943,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12515 type: GasPipeStraight components: @@ -96985,8 +103951,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12516 type: GasPipeStraight components: @@ -96995,8 +103959,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12517 type: GasPipeStraight components: @@ -97005,8 +103967,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12518 type: GasPipeStraight components: @@ -97015,8 +103975,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12519 type: GasPipeStraight components: @@ -97025,8 +103983,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12520 type: GasPipeTJunction components: @@ -97036,8 +103992,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12521 type: GasPipeStraight components: @@ -97047,8 +104001,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12522 type: GasPipeStraight components: @@ -97058,8 +104010,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12523 type: GasVentPump components: @@ -97069,8 +104019,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12524 type: GasPipeStraight components: @@ -97079,8 +104027,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12525 type: GasPipeStraight components: @@ -97089,8 +104035,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12526 type: GasPipeStraight components: @@ -97099,8 +104043,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12527 type: GasVentScrubber components: @@ -97110,8 +104052,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12528 type: GasVentPump components: @@ -97121,8 +104061,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12529 type: GasPipeStraight components: @@ -97132,8 +104070,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12530 type: GasPipeStraight components: @@ -97143,10 +104079,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12531 type: GasPipeStraight components: @@ -97156,8 +104088,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12532 type: GasPipeBend components: @@ -97167,8 +104097,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12533 type: GasPipeStraight components: @@ -97178,8 +104106,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12534 type: GasPipeStraight components: @@ -97189,8 +104115,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12535 type: GasVentScrubber components: @@ -97199,8 +104123,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12536 type: GasPipeStraight components: @@ -97209,8 +104131,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12537 type: GasPipeStraight components: @@ -97219,8 +104139,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12538 type: GasPipeStraight components: @@ -97229,8 +104147,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12539 type: GasPipeStraight components: @@ -97239,8 +104155,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12540 type: GasPipeStraight components: @@ -97249,8 +104163,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12541 type: GasPipeStraight components: @@ -97259,8 +104171,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12542 type: GasPipeStraight components: @@ -97269,8 +104179,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12543 type: GasPipeStraight components: @@ -97279,8 +104187,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12544 type: GasVentPump components: @@ -97290,8 +104196,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12545 type: GasVentScrubber components: @@ -97301,8 +104205,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12546 type: GasVentScrubber components: @@ -97312,8 +104214,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12547 type: GasVentPump components: @@ -97322,8 +104222,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12548 type: GasVentPump components: @@ -97332,8 +104230,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12549 type: GasVentScrubber components: @@ -97343,8 +104239,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12550 type: GasVentPump components: @@ -97353,8 +104247,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12551 type: GasVentScrubber components: @@ -97364,8 +104256,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12552 type: GasPipeStraight components: @@ -97374,10 +104264,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 12553 type: GasPipeStraight components: @@ -97386,8 +104272,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12554 type: GasPipeStraight components: @@ -97396,8 +104280,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12555 type: GasPipeStraight components: @@ -97406,8 +104288,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12556 type: GasPipeStraight components: @@ -97416,8 +104296,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12557 type: GasPipeStraight components: @@ -97426,8 +104304,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12558 type: GasPipeStraight components: @@ -97436,8 +104312,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12559 type: GasPipeStraight components: @@ -97446,8 +104320,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12560 type: GasVentPump components: @@ -97457,8 +104329,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12561 type: GasVentScrubber components: @@ -97468,8 +104338,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 12562 type: DisposalUnit components: @@ -100605,7 +107473,7 @@ entities: pos: -11.5,4.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116670.13 + - SecondsUntilStateChange: -114120.945 state: Opening type: Door - inputs: @@ -100622,7 +107490,7 @@ entities: pos: -11.5,3.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116670.13 + - SecondsUntilStateChange: -114120.945 state: Opening type: Door - inputs: @@ -100639,7 +107507,7 @@ entities: pos: 2.5,4.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116670.13 + - SecondsUntilStateChange: -114120.945 state: Opening type: Door - inputs: @@ -100656,7 +107524,7 @@ entities: pos: 2.5,3.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116670.13 + - SecondsUntilStateChange: -114120.945 state: Opening type: Door - inputs: @@ -100672,7 +107540,7 @@ entities: - pos: -8.5,11.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116670.13 + - SecondsUntilStateChange: -114120.945 state: Opening type: Door - inputs: @@ -100688,7 +107556,7 @@ entities: - pos: -6.5,11.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116670.13 + - SecondsUntilStateChange: -114120.945 state: Opening type: Door - inputs: @@ -100704,7 +107572,7 @@ entities: - pos: -7.5,11.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116670.13 + - SecondsUntilStateChange: -114120.945 state: Opening type: Door - inputs: @@ -100720,7 +107588,7 @@ entities: - pos: -5.5,11.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116670.13 + - SecondsUntilStateChange: -114120.945 state: Opening type: Door - inputs: @@ -100736,7 +107604,7 @@ entities: - pos: -3.5,11.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116670.13 + - SecondsUntilStateChange: -114120.945 state: Opening type: Door - inputs: @@ -100752,7 +107620,7 @@ entities: - pos: -2.5,11.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116670.13 + - SecondsUntilStateChange: -114120.945 state: Opening type: Door - inputs: @@ -100768,7 +107636,7 @@ entities: - pos: -1.5,11.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116670.13 + - SecondsUntilStateChange: -114120.945 state: Opening type: Door - inputs: @@ -100784,7 +107652,7 @@ entities: - pos: -0.5,11.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116670.13 + - SecondsUntilStateChange: -114120.945 state: Opening type: Door - inputs: @@ -100800,7 +107668,7 @@ entities: - pos: -3.5,-8.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116665.63 + - SecondsUntilStateChange: -114116.445 state: Opening type: Door - inputs: @@ -100816,7 +107684,7 @@ entities: - pos: -2.5,-8.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116665.63 + - SecondsUntilStateChange: -114116.445 state: Opening type: Door - inputs: @@ -100832,7 +107700,7 @@ entities: - pos: -1.5,-8.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116665.63 + - SecondsUntilStateChange: -114116.445 state: Opening type: Door - inputs: @@ -100848,7 +107716,7 @@ entities: - pos: -0.5,-8.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116665.63 + - SecondsUntilStateChange: -114116.445 state: Opening type: Door - inputs: @@ -100939,7 +107807,7 @@ entities: - pos: 13.5,9.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116484.32 + - SecondsUntilStateChange: -113935.13 state: Opening type: Door - inputs: @@ -100955,7 +107823,7 @@ entities: - pos: 13.5,8.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116484.32 + - SecondsUntilStateChange: -113935.13 state: Opening type: Door - inputs: @@ -100971,7 +107839,7 @@ entities: - pos: 13.5,7.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116484.32 + - SecondsUntilStateChange: -113935.13 state: Opening type: Door - inputs: @@ -101043,7 +107911,7 @@ entities: - pos: 8.5,-34.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116306.5 + - SecondsUntilStateChange: -113757.31 state: Opening type: Door - inputs: @@ -101059,7 +107927,7 @@ entities: - pos: 9.5,-34.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116306.5 + - SecondsUntilStateChange: -113757.31 state: Opening type: Door - inputs: @@ -101075,7 +107943,7 @@ entities: - pos: 11.5,-33.5 parent: 6 type: Transform - - SecondsUntilStateChange: -116306.5 + - SecondsUntilStateChange: -113757.31 state: Opening type: Door - inputs: @@ -101399,8 +108267,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 13068 type: GasPipeStraight components: @@ -101410,8 +108276,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 13069 type: GasPipeStraight components: @@ -101421,8 +108285,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 13070 type: GasPipeStraight components: @@ -101432,8 +108294,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 13071 type: GasVentScrubber components: @@ -101443,8 +108303,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 13072 type: AirAlarm components: @@ -101488,8 +108346,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 13075 type: AirAlarm components: @@ -101678,7 +108534,8 @@ entities: - 12031 - 12026 - 12044 - - invalid + - 12003 + - 12002 - 12560 - 12561 - 12544 @@ -101997,10 +108854,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 13107 type: GasPipeStraight components: @@ -102010,10 +108863,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 13108 type: GasPipeBend components: @@ -102023,10 +108872,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 13109 type: GasPipeStraight components: @@ -102036,10 +108881,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound - uid: 13110 type: GasVentScrubber components: @@ -102049,8 +108890,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - bodyType: Static - type: Physics - uid: 13111 type: AirAlarm components: @@ -102386,10 +109225,10 @@ entities: - 12209 - 12199 - 12200 - - invalid - - invalid - - invalid - - invalid + - 12130 + - 12131 + - 12133 + - 12132 type: DeviceList - uid: 13130 type: FireAlarm @@ -102403,9 +109242,21 @@ entities: - 7654 - 7655 - 7656 - - invalid + - 3369 - 7657 type: DeviceList +- uid: 13131 + type: FireAlarm + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 6 + type: Transform + - devices: + - 7659 + - 7658 + - 7653 + type: DeviceList - uid: 13132 type: AirAlarm components: @@ -102418,7 +109269,7 @@ entities: - 7654 - 7655 - 7656 - - invalid + - 3369 - 7657 - 12071 - 12070 @@ -102431,7 +109282,7 @@ entities: parent: 6 type: Transform - devices: - - invalid + - 3369 - 7657 type: DeviceList - uid: 13134 @@ -102442,18 +109293,18 @@ entities: parent: 6 type: Transform - devices: - - invalid + - 3369 - 7657 - - invalid + - 12169 - 12170 - - invalid + - 12167 - 12168 - - invalid - - invalid - - invalid - - invalid - - invalid - - invalid + - 12093 + - 12094 + - 12132 + - 12133 + - 12131 + - 12130 type: DeviceList - uid: 13135 type: PosterContrabandAtmosiaDeclarationIndependence @@ -102612,6 +109463,12 @@ entities: - pos: 25.5,-9.5 parent: 6 type: Transform +- uid: 13161 + type: PosterMapMoose + components: + - pos: 41.5,-9.5 + parent: 6 + type: Transform - uid: 13162 type: PosterMapMoose components: @@ -103276,6 +110133,13 @@ entities: pos: 32.534897,-9.800926 parent: 6 type: Transform +- uid: 13262 + type: SignDirectionalJanitor + components: + - rot: -1.5707963267948966 rad + pos: 32.5,5.5 + parent: 6 + type: Transform - uid: 13263 type: SignEVA components: @@ -103283,10 +110147,9 @@ entities: parent: 6 type: Transform - uid: 13264 - type: WindoorCommandLocked + type: SignAi components: - - rot: 3.141592653589793 rad - pos: -54.5,-43.5 + - pos: -51.5,-44.5 parent: 6 type: Transform - uid: 13265 @@ -103488,15 +110351,15 @@ entities: parent: 6 type: Transform - uid: 13298 - type: Railing + type: SignDoors components: - - pos: -52.5,-44.5 + - pos: -56.5,-42.5 parent: 6 type: Transform - uid: 13299 - type: AsteroidRock + type: SignDoors components: - - pos: -61.5,-44.5 + - pos: -56.5,-46.5 parent: 6 type: Transform - uid: 13300 @@ -105079,6 +111942,15 @@ entities: pos: 14.5,20.5 parent: 6 type: Transform +- uid: 13531 + type: WarpPoint + components: + - rot: 3.141592653589793 rad + pos: 36.5,-1.5 + parent: 6 + type: Transform + - location: Arrivals + type: WarpPoint - uid: 13532 type: WarpPoint components: @@ -105796,10 +112668,10 @@ entities: tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAF4AAAAEAAAAXgAAAAQAAABeAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAFoAAAAEAAAAWgAAAAQAAABaAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,0: ind: 0,0 - tiles: XgAAAEEAAABeAAAAXgAAAF4AAABBAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABBAAAAPwAAAEEAAAA/AAAAQQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAQQAAAD8AAABBAAAAPwAAAEEAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAQAAAA/AAAAQQAAAD8AAABBAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAQQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: WgAAAD0AAABaAAAAWgAAAFoAAAA9AAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAAA9AAAAOwAAAD0AAAA7AAAAPQAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAPQAAADsAAAA9AAAAOwAAAD0AAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAQAAAA7AAAAPQAAADsAAAA9AAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAPQAAAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,0: ind: -1,0 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== @@ -105819,54 +112691,159 @@ entities: - gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg type: Gravity - - chunkCollection: - version: 2 - nodes: [] + - chunkCollection: {} type: DecalGrid - - version: 2 - data: - tiles: - -1,-1: - 0: 59392 - 0,-1: - 0: 65280 - 1,-1: - 0: 28928 - 1,0: - 0: 30583 - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 16383 - 1,1: - 0: 30583 - 1,2: - 0: 375 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 3311 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 + - tiles: + -1,-2: 0 + -1,-1: 0 + 0,-2: 0 + 1,-2: 0 + 2,-2: 0 + 3,-2: 0 + 4,-2: 0 + 5,2: 0 + 5,3: 0 + -3,-1: 0 + -2,-1: 0 + 0,-1: 0 + 1,-1: 0 + 2,-1: 0 + 3,-1: 0 + 4,-1: 0 + 5,-1: 0 + 6,-1: 0 + 0,0: 0 + 0,1: 0 + 0,2: 0 + 0,3: 0 + 0,4: 0 + 0,5: 0 + 0,6: 0 + 0,7: 0 + 0,8: 0 + 0,9: 0 + 0,10: 0 + 0,11: 0 + 1,0: 0 + 1,1: 0 + 1,2: 0 + 1,3: 0 + 1,4: 0 + 1,5: 0 + 1,6: 0 + 1,7: 0 + 1,8: 0 + 1,9: 0 + 1,10: 0 + 1,11: 0 + 2,0: 0 + 2,1: 0 + 2,2: 0 + 2,3: 0 + 2,4: 0 + 2,5: 0 + 2,6: 0 + 2,7: 0 + 2,8: 0 + 2,9: 0 + 2,10: 0 + 3,0: 0 + 3,1: 0 + 3,2: 0 + 3,3: 0 + 3,4: 0 + 3,5: 0 + 3,6: 0 + 3,7: 0 + 3,8: 0 + 3,9: 0 + 3,10: 0 + 4,0: 0 + 4,1: 0 + 4,2: 0 + 4,3: 0 + 4,4: 0 + 4,5: 0 + 4,6: 0 + 4,7: 0 + 4,8: 0 + 4,9: 0 + 4,10: 0 + 5,0: 0 + 5,1: 0 + 5,4: 0 + 5,5: 0 + 5,6: 0 + 5,7: 0 + 5,8: 0 + 5,9: 0 + 6,0: 0 + 6,1: 0 + 6,2: 0 + 6,3: 0 + 6,4: 0 + 6,5: 0 + 6,6: 0 + 6,7: 0 + 6,8: 0 + 6,9: 0 + -4,0: 0 + -4,1: 0 + -4,2: 0 + -4,3: 0 + -4,4: 0 + -4,5: 0 + -4,6: 0 + -4,7: 0 + -4,8: 0 + -3,0: 0 + -3,1: 0 + -3,2: 0 + -3,3: 0 + -3,4: 0 + -3,5: 0 + -3,6: 0 + -3,7: 0 + -3,8: 0 + -3,9: 0 + -2,0: 0 + -2,1: 0 + -2,2: 0 + -2,3: 0 + -2,4: 0 + -2,5: 0 + -2,6: 0 + -2,7: 0 + -2,8: 0 + -2,9: 0 + -2,10: 0 + -1,0: 0 + -1,1: 0 + -1,2: 0 + -1,3: 0 + -1,4: 0 + -1,5: 0 + -1,6: 0 + -1,7: 0 + -1,8: 0 + -1,9: 0 + -1,10: 0 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 type: GridAtmosphere - type: RadiationGridResistance - type: GasTileOverlay @@ -105905,8 +112882,6 @@ entities: pos: 1.5,-0.5 parent: 13645 type: Transform - - bodyType: Static - type: Physics - uid: 13651 type: Thruster components: @@ -105914,8 +112889,6 @@ entities: pos: 5.5,-0.5 parent: 13645 type: Transform - - bodyType: Static - type: Physics - uid: 13652 type: WallShuttle components: @@ -105947,8 +112920,6 @@ entities: - pos: 3.5,-0.5 parent: 13645 type: Transform - - bodyType: Static - type: Physics - uid: 13657 type: WallShuttle components: @@ -105989,8 +112960,6 @@ entities: pos: 4.5,3.5 parent: 13645 type: Transform - - bodyType: Static - type: Physics - uid: 13663 type: Chair components: @@ -105998,8 +112967,6 @@ entities: pos: 4.5,2.5 parent: 13645 type: Transform - - bodyType: Static - type: Physics - uid: 13664 type: ShuttleWindow components: @@ -106082,8 +113049,6 @@ entities: pos: 2.5,2.5 parent: 13645 type: Transform - - bodyType: Static - type: Physics - uid: 13676 type: ShardGlassReinforced components: @@ -106118,8 +113083,6 @@ entities: - pos: 1.5,0.5 parent: 13645 type: Transform - - bodyType: Static - type: Physics - uid: 13681 type: AsteroidRock components: @@ -106549,16 +113512,12 @@ entities: - pos: 3.5,0.5 parent: 13645 type: Transform - - enabled: True - type: AmbientSound - uid: 13752 type: CableApcExtension components: - pos: 3.5,0.5 parent: 13645 type: Transform - - enabled: True - type: AmbientSound - uid: 13753 type: CableApcExtension components: @@ -106619,24 +113578,6 @@ entities: - pos: 25.5,4.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 13762 type: DisposalTrunk components: @@ -106885,24 +113826,18 @@ entities: - pos: -84.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13797 type: CableHV components: - pos: -84.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13798 type: CableHV components: - pos: -84.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13799 type: Poweredlight components: @@ -106971,8 +113906,6 @@ entities: - pos: -84.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13807 type: Poweredlight components: @@ -107014,20 +113947,12 @@ entities: - pos: -27.5,-2.5 parent: 6 type: Transform -- uid: 13812 - type: AirlockCommandGlassLocked - components: - - pos: -65.5,-12.5 - parent: 6 - type: Transform - uid: 13813 type: ComfyChair components: - pos: -69.5,-10.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 13814 type: ComfyChair components: @@ -107035,8 +113960,6 @@ entities: pos: -70.5,-11.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 13815 type: ComfyChair components: @@ -107044,8 +113967,6 @@ entities: pos: -70.5,-12.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 13816 type: ComfyChair components: @@ -107053,8 +113974,6 @@ entities: pos: -69.5,-13.5 parent: 6 type: Transform - - bodyType: Static - type: Physics - uid: 13817 type: TablePlasmaGlass components: @@ -107115,24 +114034,6 @@ entities: - pos: -68.5,-13.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 13826 type: WallWeaponCapacitorRecharger components: @@ -107153,32 +114054,24 @@ entities: - pos: -84.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13829 type: CableHV components: - pos: -84.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13830 type: CableHV components: - pos: -84.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13831 type: CableHV components: - pos: -84.5,-15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13832 type: Poweredlight components: @@ -107236,280 +114129,210 @@ entities: - pos: -86.5,-15.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13839 type: CableHV components: - pos: -86.5,-16.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13840 type: CableHV components: - pos: -86.5,-17.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13841 type: CableHV components: - pos: -86.5,-18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13842 type: CableHV components: - pos: -86.5,-19.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13843 type: CableHV components: - pos: -86.5,-20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13844 type: CableHV components: - pos: -86.5,-21.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13845 type: CableHV components: - pos: -86.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13846 type: CableHV components: - pos: -84.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13847 type: CableHV components: - pos: -84.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13848 type: CableHV components: - pos: -84.5,-28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13849 type: CableHV components: - pos: -84.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13850 type: CableHV components: - pos: -84.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13851 type: CableHV components: - pos: -84.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13852 type: CableHV components: - pos: -84.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13853 type: CableHV components: - pos: -86.5,-32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13854 type: CableHV components: - pos: -86.5,-31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13855 type: CableHV components: - pos: -86.5,-30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13856 type: CableHV components: - pos: -86.5,-29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13857 type: CableHV components: - pos: -86.5,-28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13858 type: CableHV components: - pos: -86.5,-27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13859 type: CableHV components: - pos: -86.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13860 type: CableHV components: - pos: -85.5,-26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13861 type: CableHV components: - pos: -85.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13862 type: CableHV components: - pos: -80.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13863 type: CableHV components: - pos: -79.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13864 type: CableHV components: - pos: -61.5,-22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13865 type: CableHV components: - pos: -61.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13866 type: CableHV components: - pos: -62.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13867 type: CableHV components: - pos: -87.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13868 type: CableHV components: - pos: -86.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13869 type: CableHV components: - pos: -85.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13870 type: CableHV components: - pos: -85.5,-23.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13871 type: CableHV components: - pos: -85.5,-25.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13872 type: CableHV components: - pos: -84.5,-24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13873 type: Grille components: @@ -108072,480 +114895,360 @@ entities: - pos: -6.5,30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13954 type: CableHV components: - pos: -7.5,30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13955 type: CableHV components: - pos: -8.5,30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13956 type: CableHV components: - pos: -9.5,30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13957 type: CableHV components: - pos: -10.5,30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13958 type: CableHV components: - pos: -11.5,30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13959 type: CableHV components: - pos: -6.5,32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13960 type: CableHV components: - pos: -7.5,32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13961 type: CableHV components: - pos: -8.5,32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13962 type: CableHV components: - pos: -9.5,32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13963 type: CableHV components: - pos: -10.5,32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13964 type: CableHV components: - pos: -11.5,32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13965 type: CableHV components: - pos: -11.5,31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13966 type: CableHV components: - pos: -19.5,30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13967 type: CableHV components: - pos: -18.5,30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13968 type: CableHV components: - pos: -17.5,30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13969 type: CableHV components: - pos: -16.5,30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13970 type: CableHV components: - pos: -15.5,30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13971 type: CableHV components: - pos: -19.5,32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13972 type: CableHV components: - pos: -18.5,32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13973 type: CableHV components: - pos: -17.5,32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13974 type: CableHV components: - pos: -16.5,32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13975 type: CableHV components: - pos: -15.5,32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13976 type: CableHV components: - pos: -15.5,31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13977 type: CableHV components: - pos: -19.5,36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13978 type: CableHV components: - pos: -18.5,36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13979 type: CableHV components: - pos: -17.5,36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13980 type: CableHV components: - pos: -16.5,36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13981 type: CableHV components: - pos: -15.5,36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13982 type: CableHV components: - pos: -19.5,34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13983 type: CableHV components: - pos: -18.5,34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13984 type: CableHV components: - pos: -17.5,34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13985 type: CableHV components: - pos: -16.5,34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13986 type: CableHV components: - pos: -15.5,34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13987 type: CableHV components: - pos: -15.5,35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13988 type: CableHV components: - pos: -11.5,36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13989 type: CableHV components: - pos: -10.5,36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13990 type: CableHV components: - pos: -9.5,36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13991 type: CableHV components: - pos: -8.5,36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13992 type: CableHV components: - pos: -7.5,36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13993 type: CableHV components: - pos: -6.5,36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13994 type: CableHV components: - pos: -6.5,34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13995 type: CableHV components: - pos: -7.5,34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13996 type: CableHV components: - pos: -8.5,34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13997 type: CableHV components: - pos: -9.5,34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13998 type: CableHV components: - pos: -10.5,34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 13999 type: CableHV components: - pos: -11.5,34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14000 type: CableHV components: - pos: -11.5,35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14001 type: CableHV components: - pos: -14.5,35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14002 type: CableHV components: - pos: -13.5,35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14003 type: CableHV components: - pos: -13.5,36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14004 type: CableHV components: - pos: -13.5,37.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14005 type: CableHV components: - pos: -13.5,38.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14006 type: CableHV components: - pos: -12.5,35.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14007 type: CableHV components: - pos: -13.5,34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14008 type: CableHV components: - pos: -13.5,33.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14009 type: CableHV components: - pos: -13.5,32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14010 type: CableHV components: - pos: -13.5,31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14011 type: CableHV components: - pos: -12.5,31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14012 type: CableHV components: - pos: -14.5,31.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14013 type: Catwalk components: @@ -108643,48 +115346,36 @@ entities: - pos: -13.5,30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14027 type: CableHV components: - pos: -13.5,29.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14028 type: CableHV components: - pos: -13.5,28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14029 type: CableHV components: - pos: -13.5,27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14030 type: CableHV components: - pos: -12.5,27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14031 type: CableHV components: - pos: -14.5,27.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14032 type: TableReinforced components: @@ -108821,12 +115512,6 @@ entities: - pos: -30.352308,-25.786364 parent: 6 type: Transform -- uid: 14054 - type: AsteroidRock - components: - - pos: -60.5,-43.5 - parent: 6 - type: Transform - uid: 14055 type: PaperCaptainsThoughts components: @@ -108968,8 +115653,7 @@ entities: - uid: 14077 type: DeployableBarrier components: - - anchored: False - pos: 13.5,-4.5 + - pos: 13.5,-4.5 parent: 6 type: Transform - uid: 14078 @@ -109141,6 +115825,20 @@ entities: - pos: 13.5,21.5 parent: 6 type: Transform +- uid: 14104 + type: Intercom + components: + - rot: -1.5707963267948966 rad + pos: 39.5,1.5 + parent: 6 + type: Transform +- uid: 14105 + type: Intercom + components: + - rot: 1.5707963267948966 rad + pos: 34.5,1.5 + parent: 6 + type: Transform - uid: 14106 type: Intercom components: @@ -109854,510 +116552,120 @@ entities: - pos: -5.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14216 type: CableHV components: - pos: -4.5,20.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14217 type: CableHV components: - pos: -5.5,18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14218 type: CableHV components: - pos: -4.5,18.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14219 type: CableHV components: - pos: -5.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14220 type: CableHV components: - pos: -4.5,22.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14221 type: CableHV components: - pos: -5.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14222 type: CableHV components: - pos: -4.5,24.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14223 type: CableHV components: - pos: -5.5,26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14224 type: CableHV components: - pos: -4.5,26.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14225 type: CableHV components: - pos: -5.5,28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14226 type: CableHV components: - pos: -4.5,28.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14227 type: CableHV components: - pos: -5.5,30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14228 type: CableHV components: - pos: -4.5,30.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14229 type: CableHV components: - pos: -5.5,32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14230 type: CableHV components: - pos: -4.5,32.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14231 type: CableHV components: - pos: -5.5,34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14232 type: CableHV components: - pos: -4.5,34.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14233 type: CableHV components: - pos: -5.5,36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound - uid: 14234 type: CableHV components: - pos: -4.5,36.5 parent: 6 type: Transform - - enabled: True - type: AmbientSound -- uid: 14235 - type: ReinforcedWindow - components: - - pos: -58.5,-43.5 - parent: 6 - type: Transform -- uid: 14236 - type: ReinforcedWindow - components: - - pos: -58.5,-45.5 - parent: 6 - type: Transform -- uid: 14237 - type: AsteroidRock - components: - - pos: -60.5,-42.5 - parent: 6 - type: Transform -- uid: 14238 - type: TelecomServer - components: - - pos: -55.5,-46.5 - parent: 6 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14239 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14239 - type: EncryptionKeyCargo - components: - - flags: InContainer - type: MetaData - - parent: 14238 - type: Transform - - canCollide: False - type: Physics -- uid: 14240 - type: TelecomServer - components: - - pos: -55.5,-47.5 - parent: 6 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14241 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14241 - type: EncryptionKeyService - components: - - flags: InContainer - type: MetaData - - parent: 14240 - type: Transform - - canCollide: False - type: Physics -- uid: 14242 - type: TelecomServer - components: - - pos: -53.5,-47.5 - parent: 6 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14243 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14243 - type: EncryptionKeyScience - components: - - flags: InContainer - type: MetaData - - parent: 14242 - type: Transform - - canCollide: False - type: Physics -- uid: 14244 - type: TelecomServer - components: - - pos: -53.5,-46.5 - parent: 6 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14245 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14245 - type: EncryptionKeyMedical - components: - - flags: InContainer - type: MetaData - - parent: 14244 - type: Transform - - canCollide: False - type: Physics -- uid: 14246 - type: TelecomServer - components: - - pos: -53.5,-42.5 - parent: 6 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14247 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14247 - type: EncryptionKeyCommon - components: - - flags: InContainer - type: MetaData - - parent: 14246 - type: Transform - - canCollide: False - type: Physics -- uid: 14248 - type: TelecomServer - components: - - pos: -53.5,-41.5 - parent: 6 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14249 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14249 - type: EncryptionKeySecurity - components: - - flags: InContainer - type: MetaData - - parent: 14248 - type: Transform - - canCollide: False - type: Physics -- uid: 14250 - type: TelecomServer - components: - - pos: -55.5,-42.5 - parent: 6 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14251 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14251 - type: EncryptionKeyEngineering - components: - - flags: InContainer - type: MetaData - - parent: 14250 - type: Transform - - canCollide: False - type: Physics -- uid: 14252 - type: TelecomServer - components: - - pos: -55.5,-41.5 - parent: 6 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14253 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 14253 - type: EncryptionKeyCommand - components: - - flags: InContainer - type: MetaData - - parent: 14252 - type: Transform - - canCollide: False - type: Physics -- uid: 14254 - type: CableApcExtension - components: - - pos: -56.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14255 - type: CableApcExtension - components: - - pos: -56.5,-41.5 - parent: 6 - type: Transform -- uid: 14256 - type: CableApcExtension - components: - - pos: -56.5,-42.5 - parent: 6 - type: Transform -- uid: 14257 - type: CableApcExtension - components: - - pos: -56.5,-43.5 - parent: 6 - type: Transform -- uid: 14258 - type: CableApcExtension - components: - - pos: -56.5,-44.5 - parent: 6 - type: Transform -- uid: 14259 - type: CableApcExtension - components: - - pos: -56.5,-45.5 - parent: 6 - type: Transform -- uid: 14260 - type: CableApcExtension - components: - - pos: -56.5,-46.5 - parent: 6 - type: Transform -- uid: 14261 - type: CableApcExtension - components: - - pos: -56.5,-47.5 - parent: 6 - type: Transform -- uid: 14262 - type: CableApcExtension - components: - - pos: -55.5,-47.5 - parent: 6 - type: Transform -- uid: 14263 - type: CableApcExtension - components: - - pos: -54.5,-47.5 - parent: 6 - type: Transform -- uid: 14264 - type: CableApcExtension - components: - - pos: -53.5,-47.5 - parent: 6 - type: Transform -- uid: 14265 - type: CableApcExtension - components: - - pos: -55.5,-41.5 - parent: 6 - type: Transform -- uid: 14266 - type: CableApcExtension - components: - - pos: -54.5,-41.5 - parent: 6 - type: Transform -- uid: 14267 - type: CableApcExtension - components: - - pos: -53.5,-41.5 - parent: 6 - type: Transform -- uid: 14268 - type: CableApcExtension - components: - - pos: -57.5,-44.5 - parent: 6 - type: Transform - uid: 14269 type: CarpetSBlue components: @@ -110467,54 +116775,12 @@ entities: - pos: 1.0719459,-75.33638 parent: 6 type: Transform -- uid: 14286 - type: CableApcExtension - components: - - pos: -55.5,-44.5 - parent: 6 - type: Transform -- uid: 14287 - type: CableApcExtension - components: - - pos: -54.5,-44.5 - parent: 6 - type: Transform -- uid: 14288 - type: CableApcExtension - components: - - pos: -53.5,-44.5 - parent: 6 - type: Transform -- uid: 14289 - type: CableApcExtension - components: - - pos: -52.5,-44.5 - parent: 6 - type: Transform - uid: 14290 type: CrateSurgery components: - pos: -32.5,-17.5 parent: 6 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 14291 type: OperatingTable components: @@ -110577,156 +116843,4 @@ entities: - pos: 44.508797,11.452726 parent: 6 type: Transform -- uid: 14301 - type: CableMV - components: - - pos: -56.5,-47.5 - parent: 6 - type: Transform -- uid: 14302 - type: CableMV - components: - - pos: -56.5,-46.5 - parent: 6 - type: Transform -- uid: 14303 - type: CableMV - components: - - pos: -56.5,-45.5 - parent: 6 - type: Transform -- uid: 14304 - type: CableMV - components: - - pos: -56.5,-44.5 - parent: 6 - type: Transform -- uid: 14305 - type: CableMV - components: - - pos: -56.5,-43.5 - parent: 6 - type: Transform -- uid: 14306 - type: CableMV - components: - - pos: -56.5,-42.5 - parent: 6 - type: Transform -- uid: 14307 - type: CableMV - components: - - pos: -56.5,-41.5 - parent: 6 - type: Transform -- uid: 14308 - type: CableMV - components: - - pos: -56.5,-40.5 - parent: 6 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14309 - type: RadioHandheld - components: - - pos: 16.755468,1.4682413 - parent: 6 - type: Transform -- uid: 14310 - type: RadioHandheld - components: - - pos: 11.689532,8.751254 - parent: 6 - type: Transform -- uid: 14311 - type: RadioHandheld - components: - - pos: 14.567074,0.98600256 - parent: 6 - type: Transform -- uid: 14312 - type: RadioHandheld - components: - - pos: 17.71683,-6.2649827 - parent: 6 - type: Transform -- uid: 14313 - type: RadioHandheld - components: - - pos: -21.305681,-5.3845315 - parent: 6 - type: Transform -- uid: 14314 - type: RadioHandheld - components: - - pos: -32.35327,0.71963346 - parent: 6 - type: Transform -- uid: 14315 - type: RadioHandheld - components: - - pos: -28.69588,-5.2698426 - parent: 6 - type: Transform -- uid: 14316 - type: RadioHandheld - components: - - pos: -36.295105,22.529224 - parent: 6 - type: Transform -- uid: 14317 - type: PowerCellRecharger - components: - - pos: -17.5,-21.5 - parent: 6 - type: Transform -- uid: 14318 - type: ClothingNeckStethoscope - components: - - pos: -18.741777,-21.359842 - parent: 6 - type: Transform -- uid: 14319 - type: PowerCellRecharger - components: - - pos: -13.5,-16.5 - parent: 6 - type: Transform -- uid: 14320 - type: PowerCellRecharger - components: - - pos: 10.5,-36.5 - parent: 6 - type: Transform -- uid: 14321 - type: CrayonBox - components: - - pos: -52.454147,-16.514137 - parent: 6 - type: Transform -- uid: 14322 - type: ToolboxArtistic - components: - - pos: -51.957188,-16.428991 - parent: 6 - type: Transform -- uid: 14323 - type: PowerCellRecharger - components: - - pos: 8.5,-5.5 - parent: 6 - type: Transform -- uid: 14324 - type: TableGlass - components: - - pos: 10.5,-20.5 - parent: 6 - type: Transform -- uid: 14325 - type: PowerCellRecharger - components: - - pos: 10.5,-20.5 - parent: 6 - type: Transform ... diff --git a/Resources/Maps/nukieplanet.yml b/Resources/Maps/nukieplanet.yml deleted file mode 100644 index 309095fb40..0000000000 --- a/Resources/Maps/nukieplanet.yml +++ /dev/null @@ -1,21367 +0,0 @@ -meta: - format: 3 - name: DemoStation - author: Space-Wizards - postmapinit: false -tilemap: - 0: Space - 1: FloorArcadeBlue - 2: FloorArcadeBlue2 - 3: FloorArcadeRed - 4: FloorAsteroidCoarseSand0 - 5: FloorAsteroidCoarseSandDug - 6: FloorAsteroidIronsand1 - 7: FloorAsteroidIronsand2 - 8: FloorAsteroidIronsand3 - 9: FloorAsteroidIronsand4 - 10: FloorAsteroidSand - 11: FloorAsteroidTile - 12: FloorBar - 13: FloorBasalt - 14: FloorBasaslt - 15: FloorBlue - 16: FloorBlueCircuit - 17: FloorBoxing - 18: FloorCarpetClown - 19: FloorCarpetOffice - 20: FloorCave - 21: FloorCaveDrought - 22: FloorClown - 23: FloorDark - 24: FloorDarkDiagonal - 25: FloorDarkDiagonalMini - 26: FloorDarkHerringbone - 27: FloorDarkMini - 28: FloorDarkMono - 29: FloorDarkOffset - 30: FloorDarkPavement - 31: FloorDarkPavementVertical - 32: FloorDarkPlastic - 33: FloorDesert - 34: FloorDirt - 35: FloorEighties - 36: FloorElevatorShaft - 37: FloorFlesh - 38: FloorFreezer - 39: FloorGlass - 40: FloorGold - 41: FloorGrass - 42: FloorGrassDark - 43: FloorGrassJungle - 44: FloorGrassLight - 45: FloorGreenCircuit - 46: FloorGym - 47: FloorHydro - 48: FloorKitchen - 49: FloorLaundry - 50: FloorLino - 51: FloorLowDesert - 52: FloorMetalDiamond - 53: FloorMime - 54: FloorMono - 55: FloorPlanetGrass - 56: FloorPlastic - 57: FloorRGlass - 58: FloorReinforced - 59: FloorRockVault - 60: FloorShowroom - 61: FloorShuttleBlue - 62: FloorShuttleOrange - 63: FloorShuttlePurple - 64: FloorShuttleRed - 65: FloorShuttleWhite - 66: FloorSilver - 67: FloorSnow - 68: FloorSteel - 69: FloorSteelDiagonal - 70: FloorSteelDiagonalMini - 71: FloorSteelDirty - 72: FloorSteelHerringbone - 73: FloorSteelMini - 74: FloorSteelMono - 75: FloorSteelOffset - 76: FloorSteelPavement - 77: FloorSteelPavementVertical - 78: FloorTechMaint - 79: FloorTechMaint2 - 80: FloorTechMaint3 - 81: FloorWhite - 82: FloorWhiteDiagonal - 83: FloorWhiteDiagonalMini - 84: FloorWhiteHerringbone - 85: FloorWhiteMini - 86: FloorWhiteMono - 87: FloorWhiteOffset - 88: FloorWhitePavement - 89: FloorWhitePavementVertical - 90: FloorWhitePlastic - 91: FloorWood - 92: FloorWoodTile - 93: Lattice - 94: Plating -entities: -- uid: 0 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,0.5 - parent: 104 - type: Transform -- uid: 1 - type: StoolBar - components: - - pos: -0.5,-5.5 - parent: 104 - type: Transform -- uid: 2 - type: StoolBar - components: - - pos: 3.5,-5.5 - parent: 104 - type: Transform -- uid: 3 - type: StoolBar - components: - - pos: 0.5,-5.5 - parent: 104 - type: Transform -- uid: 4 - type: StoolBar - components: - - pos: 1.5,-5.5 - parent: 104 - type: Transform -- uid: 5 - type: StoolBar - components: - - pos: 2.5,-5.5 - parent: 104 - type: Transform -- uid: 6 - type: StoolBar - components: - - pos: 4.5,-5.5 - parent: 104 - type: Transform -- uid: 7 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 104 - type: Transform -- uid: 8 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 2.5,-3.5 - parent: 104 - type: Transform -- uid: 9 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 104 - type: Transform -- uid: 10 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 104 - type: Transform -- uid: 11 - type: Stool - components: - - pos: 3.5,-0.5 - parent: 104 - type: Transform -- uid: 12 - type: Stool - components: - - pos: 2.5,-0.5 - parent: 104 - type: Transform -- uid: 13 - type: CableApcExtension - components: - - pos: -10.5,-5.5 - parent: 104 - type: Transform -- uid: 14 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 104 - type: Transform -- uid: 15 - type: DrinkAbsintheBottleFull - components: - - pos: 3.9415665,-8.34479 - parent: 104 - type: Transform -- uid: 16 - type: Stool - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 104 - type: Transform -- uid: 17 - type: ToySkeleton - components: - - pos: 3.5882664,-8.344303 - parent: 104 - type: Transform -- uid: 18 - type: BaseComputer - components: - - rot: 3.141592653589793 rad - pos: 0.5,-8.5 - parent: 104 - type: Transform -- uid: 19 - type: MountainRock - components: - - pos: 16.5,1.5 - parent: 104 - type: Transform -- uid: 20 - type: MountainRock - components: - - pos: -3.5,-10.5 - parent: 104 - type: Transform -- uid: 21 - type: TableWood - components: - - pos: 3.5,-1.5 - parent: 104 - type: Transform -- uid: 22 - type: TableWood - components: - - pos: 3.5,-2.5 - parent: 104 - type: Transform -- uid: 23 - type: TableWood - components: - - pos: 2.5,-2.5 - parent: 104 - type: Transform -- uid: 24 - type: TableWood - components: - - pos: 2.5,-1.5 - parent: 104 - type: Transform -- uid: 25 - type: DrinkWhiskeyBottleFull - components: - - pos: -0.5303154,-6.2851996 - parent: 104 - type: Transform -- uid: 26 - type: ToyNuke - components: - - pos: 4.4214306,-6.3946886 - parent: 104 - type: Transform -- uid: 27 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 104 - type: Transform -- uid: 28 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 2.5,-8.5 - parent: 104 - type: Transform -- uid: 29 - type: BaseComputer - components: - - rot: 3.141592653589793 rad - pos: 1.5,-8.5 - parent: 104 - type: Transform -- uid: 30 - type: TableWood - components: - - pos: 3.5,-8.5 - parent: 104 - type: Transform -- uid: 31 - type: TableWood - components: - - pos: 4.5,-8.5 - parent: 104 - type: Transform -- uid: 32 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 104 - type: Transform -- uid: 33 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 104 - type: Transform -- uid: 34 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 104 - type: Transform -- uid: 35 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 104 - type: Transform -- uid: 36 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 104 - type: Transform -- uid: 37 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 104 - type: Transform -- uid: 38 - type: WallPlastitanium - components: - - pos: 12.5,-4.5 - parent: 104 - type: Transform -- uid: 39 - type: WallPlastitanium - components: - - pos: 12.5,-3.5 - parent: 104 - type: Transform -- uid: 40 - type: WallPlastitanium - components: - - pos: 9.5,-5.5 - parent: 104 - type: Transform -- uid: 41 - type: WallPlastitanium - components: - - pos: 10.5,-5.5 - parent: 104 - type: Transform -- uid: 42 - type: WallPlastitanium - components: - - pos: 11.5,-5.5 - parent: 104 - type: Transform -- uid: 43 - type: WallPlastitanium - components: - - pos: 12.5,-5.5 - parent: 104 - type: Transform -- uid: 44 - type: WallPlastitanium - components: - - pos: 12.5,-5.5 - parent: 104 - type: Transform -- uid: 45 - type: WallPlastitanium - components: - - pos: 16.5,-5.5 - parent: 104 - type: Transform -- uid: 46 - type: WallPlastitanium - components: - - pos: 20.5,-2.5 - parent: 104 - type: Transform -- uid: 47 - type: WallPlastitanium - components: - - pos: 22.5,-2.5 - parent: 104 - type: Transform -- uid: 48 - type: WallShuttle - components: - - pos: 23.5,-8.5 - parent: 104 - type: Transform -- uid: 49 - type: AirlockSecurityGlass - components: - - pos: 16.5,-7.5 - parent: 104 - type: Transform -- uid: 50 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 104 - type: Transform -- uid: 51 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-12.5 - parent: 104 - type: Transform -- uid: 52 - type: ReinforcedWindow - components: - - pos: 16.5,-6.5 - parent: 104 - type: Transform -- uid: 53 - type: WallPlastitanium - components: - - pos: 17.5,-2.5 - parent: 104 - type: Transform -- uid: 54 - type: WallPlastitanium - components: - - pos: 18.5,-2.5 - parent: 104 - type: Transform -- uid: 55 - type: AirlockSecurityGlass - components: - - pos: 23.5,-7.5 - parent: 104 - type: Transform -- uid: 56 - type: WallShuttle - components: - - pos: 19.5,-10.5 - parent: 104 - type: Transform -- uid: 57 - type: WallPlastitanium - components: - - pos: 13.5,-5.5 - parent: 104 - type: Transform -- uid: 58 - type: WallShuttleDiagonal - components: - - rot: 3.141592653589793 rad - pos: 18.5,-5.5 - parent: 104 - type: Transform -- uid: 59 - type: WallPlastitanium - components: - - pos: 8.5,-5.5 - parent: 104 - type: Transform -- uid: 60 - type: WallPlastitanium - components: - - pos: 8.5,-4.5 - parent: 104 - type: Transform -- uid: 61 - type: WallPlastitanium - components: - - pos: 8.5,-3.5 - parent: 104 - type: Transform -- uid: 62 - type: WallPlastitanium - components: - - pos: 12.5,-9.5 - parent: 104 - type: Transform -- uid: 63 - type: WallPlastitanium - components: - - pos: 11.5,-9.5 - parent: 104 - type: Transform -- uid: 64 - type: WallPlastitanium - components: - - pos: 10.5,-9.5 - parent: 104 - type: Transform -- uid: 65 - type: AirlockSecurityGlass - components: - - pos: 9.5,-9.5 - parent: 104 - type: Transform -- uid: 66 - type: WallPlastitanium - components: - - pos: 8.5,-1.5 - parent: 104 - type: Transform -- uid: 67 - type: WallPlastitanium - components: - - pos: 8.5,-2.5 - parent: 104 - type: Transform -- uid: 68 - type: WallPlastitanium - components: - - pos: 9.5,-2.5 - parent: 104 - type: Transform -- uid: 69 - type: WallPlastitanium - components: - - pos: 11.5,-2.5 - parent: 104 - type: Transform -- uid: 70 - type: WallPlastitanium - components: - - pos: 14.5,1.5 - parent: 104 - type: Transform -- uid: 71 - type: WallPlastitanium - components: - - pos: 13.5,1.5 - parent: 104 - type: Transform -- uid: 72 - type: WallPlastitanium - components: - - pos: 12.5,1.5 - parent: 104 - type: Transform -- uid: 73 - type: ReinforcedWindow - components: - - pos: 11.5,1.5 - parent: 104 - type: Transform -- uid: 74 - type: WallPlastitanium - components: - - pos: 10.5,1.5 - parent: 104 - type: Transform -- uid: 75 - type: WallPlastitanium - components: - - pos: 9.5,1.5 - parent: 104 - type: Transform -- uid: 76 - type: WallPlastitanium - components: - - pos: 8.5,0.5 - parent: 104 - type: Transform -- uid: 77 - type: WallPlastitanium - components: - - pos: 8.5,1.5 - parent: 104 - type: Transform -- uid: 78 - type: WallPlastitanium - components: - - pos: 7.5,1.5 - parent: 104 - type: Transform -- uid: 79 - type: WallPlastitanium - components: - - pos: 8.5,-11.5 - parent: 104 - type: Transform -- uid: 80 - type: WallPlastitanium - components: - - pos: 8.5,-9.5 - parent: 104 - type: Transform -- uid: 81 - type: FaxMachineSyndie - components: - - pos: 7.5,-4.5 - parent: 104 - type: Transform -- uid: 82 - type: WallPlastitanium - components: - - pos: 1.5,-9.5 - parent: 104 - type: Transform -- uid: 83 - type: WallPlastitanium - components: - - pos: 0.5,-9.5 - parent: 104 - type: Transform -- uid: 84 - type: WallPlastitanium - components: - - pos: -0.5,-9.5 - parent: 104 - type: Transform -- uid: 85 - type: SurveillanceCameraGeneral - components: - - pos: 1.5,-8.5 - parent: 104 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bar - type: SurveillanceCamera -- uid: 86 - type: WallPlastitanium - components: - - pos: 2.5,-9.5 - parent: 104 - type: Transform -- uid: 87 - type: WallPlastitanium - components: - - pos: 3.5,-9.5 - parent: 104 - type: Transform -- uid: 88 - type: WallPlastitanium - components: - - pos: 4.5,-9.5 - parent: 104 - type: Transform -- uid: 89 - type: ReinforcedWindow - components: - - pos: 7.5,-9.5 - parent: 104 - type: Transform -- uid: 90 - type: WallPlastitanium - components: - - pos: -1.5,-8.5 - parent: 104 - type: Transform -- uid: 91 - type: WallPlastitanium - components: - - pos: -1.5,-7.5 - parent: 104 - type: Transform -- uid: 92 - type: WallPlastitanium - components: - - pos: -1.5,-6.5 - parent: 104 - type: Transform -- uid: 93 - type: WallPlastitanium - components: - - pos: -1.5,-5.5 - parent: 104 - type: Transform -- uid: 94 - type: WallPlastitanium - components: - - pos: -1.5,-1.5 - parent: 104 - type: Transform -- uid: 95 - type: Grille - components: - - pos: 0.5,1.5 - parent: 104 - type: Transform -- uid: 96 - type: AirlockVirologyGlass - components: - - pos: 6.5,-9.5 - parent: 104 - type: Transform -- uid: 97 - type: WallPlastitanium - components: - - pos: 6.5,1.5 - parent: 104 - type: Transform -- uid: 98 - type: WallPlastitanium - components: - - pos: 5.5,1.5 - parent: 104 - type: Transform -- uid: 99 - type: ReinforcedWindow - components: - - pos: 0.5,1.5 - parent: 104 - type: Transform -- uid: 100 - type: CableApcExtension - components: - - pos: 13.5,0.5 - parent: 104 - type: Transform -- uid: 101 - type: WallPlastitanium - components: - - pos: -0.5,0.5 - parent: 104 - type: Transform -- uid: 102 - type: WallPlastitanium - components: - - pos: -0.5,1.5 - parent: 104 - type: Transform -- uid: 103 - type: ReinforcedWindow - components: - - pos: 4.5,1.5 - parent: 104 - type: Transform -- uid: 104 - components: - - name: Syndicate Outpost - type: MetaData - - parent: 1295 - type: Transform - - whitelist: - tags: - - Syndicate - type: FTLDestination - - chunks: - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAADsAAAA7AAAAOwAAAEMAAAlDAAACXgAAABcAAAJRAAAAUQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAA7AAAAOwAAADsAAABDAAALQwAAC14AAAAXAAACUQAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAOwAAADsAAAA7AAAAQwAADEMAAAReAAAAFwAAA1EAAAJRAAADAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAADsAAAA7AAAAOwAAAEMAAAdDAAALXgAAABcAAAEXAAAAFwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAA7AAAAOwAAADsAAABDAAAKQwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAOwAAADsAAAA7AAAAQwAACUMAAAhDAAAMQwAABEMAAAVDAAALAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAADsAAAA7AAAAOwAAAEMAAAhDAAADQwAADEMAAAhDAAAIDAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAA7AAAAOwAAADsAAABDAAAGQwAABEMAAAhDAAAADAAAAFsAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAOwAAADsAAAA7AAAAQwAAAEMAAAxDAAADQwAACAwAAABbAAABAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAADsAAAA7AAAAOwAAAEMAAAZDAAALQwAACUMAAAoMAAAAWwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAA7AAAAOwAAADsAAAAXAAADQwAACUMAAAtDAAAGDAAAAwwAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAOwAAADsAAAA7AAAAXgAAAF4AAABeAAAAXgAAAF4AAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAADsAAAA7AAAAOwAAAD4AAAA+AAAAPgAAAD4AAAA+AAAADAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAA7AAAAOwAAADsAAABeAAAAXgAAAF4AAABeAAAAXgAAAAwAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAOwAAADsAAAA7AAAAXgAAAF4AAABeAAAAXgAAAF4AAAAMAAABAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAADsAAAA7AAAAOwAAAEMAAAZDAAAFQwAAB0MAAAZeAAAADAAAAg== - 0,-1: - ind: 0,-1 - tiles: UQAAAVEAAANeAAAAUQAAAlEAAABRAAABUQAAAFEAAAIXAAAAFwAAAxcAAAMXAAADFwAAABcAAAIXAAACFwAAA0QAAABRAAAAUQAAAVEAAAJRAAADUQAAAFEAAAJRAAAAFwAAA0AAAAAXAAACQAAAABcAAAJAAAAAFwAAARcAAAJRAAAAUQAAAl4AAABRAAAAUQAAAVEAAANRAAADUQAAARcAAAFAAAAAFwAAAkAAAAAXAAACQAAAABcAAAAXAAAAFwAAAxcAAAIXAAABRAAAAUQAAABEAAADUQAAAVEAAAEXAAABFwAAAxcAAAIXAAABFwAAARcAAAEXAAAAFwAAAl4AAABeAAAAUQAAAEQAAAJEAAADRAAAAlEAAABRAAAADAAAAxcAAAAXAAACFwAAABcAAAAXAAACFwAAAhcAAANDAAABQwAADFEAAAJEAAABRAAAAEQAAANRAAABUQAAAEMAAAsXAAABFwAAAD4AAAA+AAAAPgAAAD4AAAA+AAAADAAAAAwAAAEMAAABDAAAAAwAAAFeAAAADAAAA14AAAAMAAABDAAAAQwAAAIMAAAADAAAAxcAAAAXAAACFwAAA0AAAABAAAAAWwAAAFsAAANbAAABDAAAAQwAAAEMAAADDAAAAQwAAAEMAAACXgAAABcAAAMXAAAAFwAAABcAAABbAAABWwAAAVsAAAFbAAABWwAAAAwAAAMMAAABDAAAAQwAAAIMAAACDAAAARcAAAIXAAADFwAAARcAAAMXAAADWwAAAFsAAAJbAAABWwAAAVsAAAAMAAABDAAAAAwAAAIMAAAADAAAAQwAAABeAAAAFwAAABcAAAAXAAABFwAAAQwAAAIMAAAADAAAAAwAAAAMAAACDAAAAwwAAAAMAAAADAAAAQwAAAEMAAADDAAAAQwAAAEXAAABFwAAAxcAAAIMAAACDAAAAgwAAAAMAAACDAAAAAwAAAIMAAABDAAAAAwAAAMmAAAAJgAAACYAAAAMAAABFwAAABcAAAAXAAAADAAAAwwAAAAMAAABDAAAAgwAAAIMAAACDAAAAUAAAAAMAAABJgAAACYAAAAmAAAADAAAARcAAAAXAAAAFwAAAgwAAAMMAAABDAAAAAwAAAMMAAADDAAAAQwAAAFAAAAADAAAADwAAAAmAAAADAAAAQwAAAIXAAAAFwAAAxcAAAMMAAACDAAAAAwAAAEMAAADDAAAAwwAAAAMAAABQAAAAAwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAADAAAAAwAAAIMAAABDAAAAAwAAAMMAAADDAAAAQwAAAEMAAAAPAAAADwAAAAmAAAAPAAAADwAAABDAAACQwAACQ== - 0,0: - ind: 0,0 - tiles: FwAAABcAAAAXAAAADAAAAQwAAAMMAAADDAAAAwwAAAEMAAABPAAAADwAAAA8AAAAPAAAADwAAABDAAAMQwAADF4AAABeAAAAXgAAABcAAAFeAAAADAAAAAwAAAEMAAACDAAAAAwAAAMMAAACDAAAAAwAAAJDAAAMQwAAC0MAAANDAAALQwAABzsAAAA7AAAAOwAAAEMAAApDAAAKQwAACEMAAAJDAAAKQwAAC0MAAApDAAAFQwAAAEMAAAdDAAACQwAAC0MAAAY7AAAAOwAAADsAAABDAAALQwAADEMAAAFDAAAFQwAABkMAAAlDAAAAQwAABUMAAAM7AAAAQwAACEMAAAhDAAAAOwAAADsAAABDAAABQwAABUMAAARDAAAJQwAABEMAAAtDAAAJQwAACEMAAANDAAAKQwAABkMAAAxDAAAJQwAAAEMAAAw7AAAAQwAABUMAAAdDAAAJQwAAA0MAAAJDAAAGQwAACkMAAAhDAAAIQwAAAUMAAARDAAAIQwAACEMAAARDAAAAQwAAC0MAAAFDAAALQwAADEMAAARDAAACQwAACUMAAAVDAAALQwAAB0MAAAVDAAAJQwAAB0MAAAZDAAAAQwAACkMAAARDAAAFQwAACUMAAAJDAAAKQwAACEMAAAdDAAACQwAABEMAAAVDAAABQwAAC0MAAAFDAAAGQwAAB0MAAAVDAAAHQwAACkMAAAtDAAAIQwAACEMAAAVDAAAKQwAAAEMAAAtDAAADQwAAAEMAAAxDAAALQwAADEMAAAFDAAADQwAAA0MAAAxDAAAEQwAAAkMAAAtDAAAHQwAAAUMAAAtDAAABQwAABUMAAAVDAAAAQwAABUMAAARDAAAIQwAACEMAAARDAAAMOwAAADsAAAA7AAAAQwAACEMAAAZDAAALQwAABkMAAApDAAACQwAAA0MAAAtDAAAMQwAAAkMAAAdDAAAFQwAACDsAAAA7AAAAOwAAAEMAAAhDAAADQwAABEMAAAFDAAAKQwAABkMAAAxDAAAEQwAACUMAAAFDAAAAQwAACEMAAAU7AAAAOwAAADsAAABDAAAHQwAAAkMAAAJDAAALQwAABEMAAAtDAAAKQwAAB0MAAAVDAAAJQwAACkMAAABDAAAEOwAAADsAAAA7AAAAQwAAB0MAAARDAAABQwAAAEMAAAxDAAACQwAAAEMAAAVDAAAAQwAABkMAAAhDAAAIQwAABjsAAAA7AAAAOwAAAEMAAAZDAAAAQwAACUMAAAZDAAABQwAAAkMAAANDAAACQwAAA0MAAAxDAAAMQwAACkMAAABDAAADQwAAB0MAAAZDAAAHQwAAAUMAAAhDAAAIQwAABUMAAAdDAAADQwAABA== - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAADsAAAA7AAAAOwAAAEMAAApDAAAJQwAAAEMAAANeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAA7AAAAOwAAADsAAABDAAAHQwAACEMAAAlDAAALQwAADF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAOwAAADsAAABDAAAKQwAAAUMAAAdDAAALQwAACEMAAAhDAAABXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAADsAAAA7AAAAQwAAA0MAAAJDAAABQwAAA0MAAAZDAAAGQwAAA10AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAA7AAAAQwAAAkMAAAZDAAAAQwAAAUMAAAlDAAACQwAABkMAAAJDAAAIFwAAAxcAAAEXAAABQwAAARcAAAEXAAADQwAACEMAAAtDAAAGQwAAA0MAAAtDAAALQwAAAkMAAABDAAAEQwAAChcAAAEXAAABFwAAABcAAAMXAAADFwAAA0MAAAZDAAAIQwAAAkMAAARDAAAKQwAAC0MAAAZDAAAHQwAAA0MAAAcXAAABFwAAABcAAANDAAAAFwAAAxcAAAFDAAALQwAAB0MAAAhDAAAHQwAAA0MAAAdDAAAAQwAAAEMAAAA7AAAAFwAAAxcAAAMXAAAAOwAAADsAAAA7AAAAQwAAAEMAAAxDAAAMQwAAAEMAAAFDAAAKQwAAA0MAAAdDAAABOwAAADsAAAA7AAAAFwAAADsAAAA7AAAAOwAAADsAAABDAAALQwAAC0MAAAtDAAABQwAACkMAAABDAAAIQwAAAzsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAQwAACkMAAABDAAAGQwAAB0MAAANDAAAEQwAACkMAAApDAAAGQwAAC0MAAApDAAAEQwAACUMAAAVDAAAAOwAAAEMAAAdDAAALQwAAB0MAAAFDAAAGQwAAC0MAAAdDAAAMQwAAAEMAAAZDAAAGQwAAAkMAAABDAAAAQwAABzsAAABDAAAFQwAACEMAAAtDAAAEQwAACkMAAAhDAAABQwAAA0MAAAhDAAAAQwAACEMAAAtDAAAMQwAAAkMAAAE7AAAAQwAABUMAAAhDAAAFQwAAAEMAAANDAAAGQwAABkMAAAVDAAAHQwAADEMAAAFDAAAHQwAACEMAAAxDAAAIOwAAAEMAAABDAAAEQwAACEMAAAxDAAAHQwAABkMAAANDAAABQwAACEMAAAxDAAAHQwAABkMAAABDAAABQwAABEMAAABDAAAGQwAAAUMAAAtDAAADQwAAAEMAAAlDAAALQwAACw== - 1,-1: - ind: 1,-1 - tiles: FwAAABcAAAIXAAACFwAAABcAAAI6AAAAOgAAADoAAAAXAAACFwAAARcAAAIXAAAAXgAAAEMAAAxDAAAEQwAAABcAAAAXAAADFwAAAhcAAAMXAAACOgAAADoAAAA6AAAAFwAAAxcAAAIXAAAAFwAAAF4AAABDAAAKQwAAAUMAAAUXAAACFwAAABcAAAMXAAACFwAAARcAAAMXAAADFwAAARcAAAAXAAAAFwAAABcAAANeAAAAQwAABkMAAAVDAAAGFwAAARcAAAAXAAAAFwAAARcAAAIXAAACFwAAAxcAAAAXAAAAFwAAAl4AAABeAAAAXgAAAEMAAAZDAAAEQwAACxcAAAIXAAACFwAAAhcAAAAXAAACFwAAARcAAAIXAAADFwAAARcAAANDAAAFQwAADEMAAAJDAAAIQwAAAwAAAAAXAAADFwAAAhcAAAIXAAACFwAAARcAAAEXAAAAFwAAAhcAAAIXAAADQwAACEMAAAo7AAAAQwAAAkMAAAMAAAAAFwAAABcAAABAAAAAQAAAAEAAAABAAAAAQAAAABcAAAMXAAAAFwAAAEMAAAxDAAAJQwAADEMAAAhDAAAGAAAAAF4AAAAXAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAXAAABFwAAARcAAABDAAABOwAAAEMAAAFDAAAKQwAAAQAAAAAXAAACFwAAA0AAAABAAAAAQAAAAEAAAABAAAAAFwAAABcAAAIXAAABQwAAAzsAAAA7AAAAQwAAC0MAAAFDAAALXgAAABcAAABAAAAAQAAAAEAAAABAAAAAQAAAABcAAAMXAAADFwAAA0MAAAA7AAAAQwAAAUMAAAtDAAAAQwAAChcAAAMXAAABQAAAAEAAAABAAAAAQAAAAEAAAAAXAAACFwAAAhcAAAFDAAADQwAACEMAAAlDAAAFQwAAAkMAAAsXAAADFwAAABcAAAAXAAABFwAAAhcAAAAXAAACFwAAAhcAAAAXAAABQwAAAzsAAABDAAACQwAACUMAAAlDAAAHFwAAABcAAAEXAAAAFwAAARcAAAIXAAADFwAAAxcAAAEXAAABFwAAA0MAAAZDAAAJQwAAAEMAAAxDAAAEQwAABRcAAAAXAAACFwAAAxcAAAAXAAADFwAAAxcAAAAXAAADFwAAABcAAABDAAABOwAAADsAAABDAAAFQwAAC0MAAAJDAAAMQwAABkMAAANDAAAJQwAACkMAAAhDAAADQwAABUMAAAxDAAAKQwAABEMAAAhDAAAAQwAAB0MAAAhDAAAAOwAAAEMAAAQ7AAAAQwAABTsAAAA7AAAAOwAAAEMAAAZDAAAHQwAACzsAAAA7AAAAQwAADEMAAAlDAAAGQwAABw== - 0,-2: - ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAFQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAABkMAAAdDAAAIQwAAA0MAAAFDAAAHQwAAA0MAAAlDAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAtDAAAHQwAABUMAAAdDAAAAQwAADEMAAARDAAAAQwAAAUMAAApDAAAHQwAABEMAAAdDAAADQwAAAEMAAABDAAAHQwAABkMAAARDAAAHQwAABUMAAAM7AAAAQwAABkMAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAQwAAAkMAAARDAAABQwAAB0MAAAdDAAADQwAAAUMAAAVDAAAGXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAEMAAAZDAAABQwAAAkMAAAJDAAAHQwAAAkMAAABDAAAEQwAADF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAAF4AAABDAAAAQwAAA0MAAANDAAALQwAAAUMAAAlDAAAGQwAAAEMAAAZeAAAAOgAAADoAAAA6AAAAOgAAADoAAABeAAAAQwAAAEMAAAlDAAAJQwAAAEMAAAxDAAAIQwAAAUMAAAFDAAAFXgAAADoAAAA6AAAAOgAAADoAAAA6AAAAXgAAAEMAAAdDAAAFQwAABlEAAABRAAABUQAAA1EAAANRAAAAOwAAAF4AAABEAAABRAAAAkQAAAFEAAAARAAAAl4AAABeAAAAQwAABkMAAABRAAABUQAAAFEAAAJRAAABUQAAAl4AAABOAAAARAAAAEQAAAJEAAABRAAAA0QAAANeAAAAFwAAABcAAAJDAAADUQAAA1EAAANRAAADUQAAAlEAAANOAAAATgAAAEQAAABEAAADRAAAAUQAAAJEAAABXgAAAA== - -1,-2: - ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAHQwAABEMAAApDAAAIQwAAC0MAAAtDAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAACkMAAAFDAAAFQwAABkMAAAJDAAAGQwAAAkMAAABDAAAMQwAACgAAAAAAAAAAAAAAAAAAAABDAAAHQwAACUMAAAFDAAAHQwAAAUMAAAxDAAAKQwAACEMAAAdDAAAGQwAAAEMAAAhdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAOwAAADsAAAA7AAAAFwAAAEMAAAhDAAACQwAAA0MAAAhDAAALXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAADsAAAA7AAAAOwAAAEMAAAxDAAADQwAACkMAAAZDAAAJQwAABl0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAA7AAAAOwAAADsAAABDAAAEQwAAC0MAAARDAAAIQwAACkMAAARdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAOwAAADsAAAA7AAAAQwAADEMAAAdDAAAKQwAACUMAAAdDAAADAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAADsAAAA7AAAAOwAAAEMAAAVDAAABQwAACEMAAAhDAAABQwAACwAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAA7AAAAOwAAADsAAABDAAAEQwAABUMAAAxDAAALQwAABkMAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAOwAAADsAAAA7AAAAQwAAB0MAAAZeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAADsAAAA7AAAAOwAAAEMAAAZDAAAKXgAAABcAAAEXAAACFwAAAw== - -1,1: - ind: -1,1 - tiles: QwAAAUMAAAZDAAAEQwAAAUMAAANDAAAAQwAABkMAAABDAAAKQwAABUMAAAxDAAAJQwAACUMAAAZDAAAJQwAACkMAAAlDAAAFQwAAAEMAAAtDAAAAQwAACEMAAAtDAAALQwAAAEMAAAFDAAAGQwAACkMAAAVDAAAHQwAACkMAAAFDAAAEQwAACEMAAANDAAAKQwAAC0MAAAhDAAADOwAAADsAAABDAAAIQwAAAEMAAAVDAAAIQwAABEMAAAdDAAACEgAAABIAAAASAAAAEgAAAEMAAAVDAAAKQwAACTsAAAA7AAAAQwAABEMAAARDAAAAQwAAAEMAAAZDAAABQwAACxIAAAASAAAAEgAAABIAAABDAAALQwAABEMAAAM7AAAAOwAAAEMAAAFDAAAJQwAAA0MAAAA7AAAAOwAAADsAAAASAAAAEgAAABIAAAASAAAAQwAABEMAAAtDAAAHQwAACEMAAAlDAAABOwAAAEMAAAZDAAACQwAAAUMAAAxDAAAIEgAAABIAAAASAAAAEgAAAEMAAAVDAAAMQwAAAEMAAAlDAAAHQwAAA0MAAAtDAAACQwAAAEMAAAJDAAABQwAAARIAAAASAAAAEgAAABIAAABDAAAIQwAAA0MAAAFDAAAGQwAACEMAAAZDAAAKQwAACkMAAAlDAAABAAAAAAAAAAASAAAAEgAAABIAAAASAAAAQwAADEMAAAJDAAAEQwAAC0MAAAlDAAAJQwAACkMAAARDAAAMQwAACgAAAAAAAAAAQwAACkMAAAJDAAAGQwAACEMAAARDAAAKQwAAB0MAAAtDAAABQwAAC0MAAARDAAAMQwAAAEMAAAsAAAAAAAAAAEMAAAZDAAABQwAAC0MAAAZDAAAHQwAADEMAAARDAAAFQwAAAUMAAARDAAAMQwAAC0MAAAFDAAAAAAAAAAAAAABDAAACQwAABUMAAAtDAAAFQwAAA0MAAARDAAALQwAACkMAAAlDAAAFQwAADEMAAAhDAAAGQwAABwAAAAAAAAAAQwAAA0MAAAJDAAAGQwAADEMAAAZDAAACQwAACUMAAAlDAAALQwAABkMAAApDAAAGQwAACkMAAAkAAAAAAAAAAEMAAANDAAAIQwAAAkMAAAJDAAALQwAADEMAAAFDAAAIQwAAC0MAAARDAAAGQwAAAkMAAABDAAAFAAAAAAAAAABDAAAEQwAAAEMAAAlDAAAJQwAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,1: - ind: 0,1 - tiles: QwAAB0MAAAdDAAALQwAAA0MAAAtDAAAKQwAAC0MAAAZDAAAGQwAABEMAAANDAAADQwAAAEMAAABDAAALQwAAC0MAAAVDAAAHQwAAAUMAAApDAAAJQwAACkMAAAlDAAAMQwAAB0MAAApDAAALQwAAAkMAAAhDAAAJQwAAAkMAAAxDAAABQwAAAUMAAAZDAAACQwAACUMAAABDAAAJQwAAAkMAAAtDAAAKQwAACUMAAAhDAAAIQwAACkMAAAxDAAAHQwAAAUMAAAtDAAAEQwAAA0MAAAJDAAACQwAABkMAAAdDAAAEQwAAA0MAAApDAAABQwAAAUMAAAtDAAAJQwAAADsAAABDAAAGQwAAAkMAAAZDAAAGQwAACUMAAAVDAAAEOwAAAEMAAAE7AAAAOwAAADsAAAA7AAAAQwAACEMAAAleAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABDAAALQwAAC0MAAAhDAAAKQwAAB0MAAAZDAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAABEMAAAFDAAAJQwAAAEMAAANDAAALQwAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAKQwAACEMAAAFDAAAHQwAAAUMAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAABEMAAABDAAALQwAAAUMAAApDAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAJDAAALQwAAAEMAAAZDAAAHQwAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAGQwAADEMAAAxDAAAGQwAAAEMAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAkMAAAlDAAAJQwAAC0MAAAhDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAlDAAACQwAAAEMAAANDAAABQwAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAADQwAABEMAAAxDAAAJQwAAB0MAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAABkMAAAZDAAAGQwAAAUMAAABDAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAARDAAAAQwAAAEMAAABDAAAMQwAABA== - 1,1: - ind: 1,1 - tiles: QwAABkMAAAZDAAAKQwAABUMAAAxDAAAAQwAAAkMAAAxDAAAFQwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAhDAAAAQwAADEMAAAZDAAALQwAACEMAAApDAAAJQwAAB0MAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAADQwAACkMAAAQ7AAAAQwAACEMAAABDAAAFQwAAAEMAAAlDAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAABEMAAAhDAAADOwAAAEMAAABDAAADQwAABEMAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAs7AAAAOwAAADsAAABDAAAIQwAAA0MAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAABQwAAA0MAAAdDAAAGQwAAAkMAAABDAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAB0MAAANDAAALQwAACkMAAAlDAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAApDAAAFQwAACEMAAAhDAAAGQwAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAFQwAAA0MAAABDAAABQwAAB0MAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAA0MAAAlDAAAAQwAAAkMAAAZDAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAhDAAAIQwAABUMAAAtDAAAEQwAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAKQwAABkMAAAFDAAACQwAAAEMAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAB0MAAAdDAAAJQwAAAkMAAAxDAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAlDAAAIQwAAC0MAAApDAAAMQwAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAJQwAAA0MAAAtDAAAEQwAAAkMAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAABkMAAApDAAAMQwAACUMAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,0: - ind: 1,0 - tiles: QwAADDsAAAA7AAAAQwAABkMAAARDAAAHQwAACUMAAARDAAAIOwAAADsAAABDAAAIQwAACEMAAARDAAAFQwAADEMAAAFDAAAMQwAACEMAAAJDAAACQwAAC0MAAARDAAAFQwAAAUMAAAhDAAAGQwAACUMAAAdDAAAIQwAAA0MAAAFDAAAGQwAAAUMAAAFDAAAHQwAAAUMAAAVDAAAJQwAABEMAAAJDAAAMQwAAC0MAAAVDAAAMQwAABEMAAABDAAABQwAABEMAAAxDAAACQwAABEMAAAtDAAADQwAACEMAAAhDAAAIQwAAB0MAAAdDAAAJQwAAA0MAAAJDAAAHQwAAAEMAAANDAAAHQwAABEMAAAhDAAAEQwAABjsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAEMAAABDAAAHQwAACUMAAAtDAAAFQwAADEMAAAdDAAAGQwAADEMAAAdDAAABQwAAA0MAAARDAAAAQwAAAkMAAAFDAAAJQwAACkMAAAlDAAAHQwAAAUMAAAtDAAABQwAACUMAAANDAAADQwAAA0MAAAFDAAADQwAAA0MAAAlDAAAJQwAABEMAAAlDAAAAQwAAA0MAAANDAAAMQwAAA0MAAAFDAAAEQwAACEMAAANDAAACQwAACUMAAAZDAAAKAAAAAAAAAABDAAALQwAABkMAAAhDAAAGQwAABUMAAARDAAAMQwAACUMAAAFDAAALQwAABkMAAAxDAAAJQwAAAQAAAAAAAAAAQwAAB0MAAApDAAAKQwAAAkMAAAdDAAABQwAAAkMAAAZDAAALQwAAAUMAAAxDAAALQwAAC0MAAAMAAAAAAAAAAEMAAARDAAABQwAAAEMAAAtDAAAKQwAABkMAAApDAAAEQwAABkMAAAdDAAALAAAAAAAAAAAAAAAAAAAAAAAAAABDAAABQwAACUMAAAtDAAAKQwAAB0MAAAZDAAADQwAAAkMAAAVDAAALQwAABAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAB0MAAAVDAAAEQwAAB0MAAAhDAAAAQwAACEMAAABDAAAGQwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAApDAAAAQwAAAEMAAAlDAAAGQwAAAkMAAARDAAADQwAABkMAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAADQwAACEMAAAxDAAAHQwAACUMAAABDAAAGQwAACUMAAAlDAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAB0MAAAFDAAADOwAAAEMAAAhDAAAIQwAAA0MAAAJDAAAGQwAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-2: - ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAANDAAAAQwAACUMAAANDAAAHQwAADEMAAAtDAAAJQwAABEMAAARDAAAKQwAABkMAAAFDAAAFQwAABAAAAABDAAAAQwAAB0MAAAhDAAAEQwAAAjsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAABDAAAGQwAAAkMAAAdDAAADQwAAC0MAAAtDAAAMQwAABkMAAAdDAAACQwAABUMAAARDAAAAQwAADEMAAAFDAAAKQwAACUMAAAlDAAAFQwAAC0MAAABDAAALQwAAB0MAAARDAAAJQwAAAkMAAANDAAAEQwAAAEMAAAJDAAACQwAAA0MAAAFDAAAJQwAACUMAAAleAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAQwAACkMAAAxDAAAHXgAAAE4AAAAXAAABFwAAAhcAAANeAAAAXgAAAF4AAAAXAAACFwAAABcAAAFOAAAAXgAAAEMAAAVDAAAGQwAABV4AAABOAAAAFwAAARcAAAIXAAAAFwAAARcAAAEXAAACFwAAAxcAAAAXAAADTgAAAF4AAABDAAALQwAAB0MAAApeAAAATgAAABcAAAIXAAAAFwAAAV4AAABeAAAAXgAAABcAAAMXAAACFwAAA04AAABeAAAAQwAADEMAAAtDAAAEQwAAABcAAAMXAAABFwAAARcAAAE6AAAAOgAAADoAAAAXAAACFwAAAxcAAAIXAAADXgAAAEMAAARDAAAMQwAABw== - -2,0: - ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAANDAAAJQwAADEMAAAxDAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAABQwAACUMAAAtDAAAIQwAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAJQwAAC0MAAARDAAAFQwAAA0MAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAUMAAAxDAAACQwAABjsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAlDAAAMQwAACUMAAAU7AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAAQwAABTsAAAA7AAAAOwAAADsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAABUMAAAJDAAALQwAAAEMAAAhDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAABEMAAAJDAAAAQwAACkMAAAFDAAACQwAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAABUMAAAdDAAAGQwAAA0MAAAlDAAAEQwAABkMAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAFDAAAKQwAACkMAAApDAAAEQwAACUMAAANDAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAEQwAACUMAAAJDAAAEQwAAAEMAAAdDAAAIQwAADA== - -2,1: - ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAFQwAAB0MAAAlDAAAIQwAACUMAAABDAAAAQwAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAACEMAAABDAAAIQwAABEMAAABDAAADQwAAB0MAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAHQwAACUMAAAdDAAABQwAAB0MAAARDAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAUMAAANDAAAJOwAAAEMAAAUSAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAABUMAAAxDAAAJQwAABjsAAABDAAAFEgAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAACUMAAAZDAAAIQwAADEMAAAhDAAAHQwAABRIAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAhDAAAIQwAACUMAAAZDAAAAQwAACkMAAAMSAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAHQwAABUMAAAhDAAABQwAAAUMAAAhDAAAHEgAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAABkMAAAJDAAAKQwAAC0MAAAZDAAAEQwAADBIAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAVDAAAEQwAABkMAAAVDAAACQwAAAkMAAAtDAAALQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAGQwAAA0MAAApDAAALQwAABkMAAAxDAAAHQwAABkMAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAACEMAAAhDAAADQwAADEMAAAlDAAAGQwAABEMAAAxDAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAxDAAACQwAABEMAAAxDAAAFQwAACUMAAAJDAAADQwAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAtDAAADQwAABEMAAAhDAAALQwAABUMAAAlDAAAIQwAACEMAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAFQwAAC0MAAAxDAAAKQwAACEMAAARDAAAEQwAABUMAAAJDAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAACkMAAApDAAAGQwAABUMAAAFDAAAKQwAAAEMAAAVDAAAHAAAAAA== - -2,-2: - ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,0: - ind: 2,0 - tiles: OwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-1: - ind: 2,-1 - tiles: OwAAAEMAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAABDAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAQwAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAEMAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-2: - ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAhDAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAMQwAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAABEMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAFDAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABDAAAAQwAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAEMAAAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,2: - ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAEMAAAZDAAAJQwAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,-2: - ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,2: - ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEMAAAFDAAAIQwAACEMAAAlDAAACQwAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,2: - ind: 1,2 - tiles: QwAAAEMAAAdDAAAIQwAAAEMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - 0,-1: - 0: - color: '#FFFFFFFF' - id: WarnCorner - coordinates: 17,-10 - 1: - color: '#FFFFFFFF' - id: WarnCorner - coordinates: 18,-11 - 2: - color: '#FFFFFFFF' - id: WarnCorner - coordinates: 19,-11 - 3: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - coordinates: 19,-11 - 4: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - coordinates: 19,-12 - 5: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - coordinates: 20,-12 - 6: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - coordinates: 21,-12 - 7: - color: '#FFFFFFFF' - id: WarnCornerFlipped - coordinates: 23,-10 - 8: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: WarningLine - coordinates: 24,-9 - 9: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: WarningLine - coordinates: 24,-8 - 10: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: WarningLine - coordinates: 24,-7 - 11: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - coordinates: 23,-6 - 12: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - coordinates: 22,-5 - 13: - color: '#FFFFFFFF' - id: WarnCornerFlipped - coordinates: 16,-6 - 14: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: WarnCorner - coordinates: 17,-6 - 15: - color: '#FFFFFFFF' - id: WarningLine - coordinates: 19,-4 - 16: - color: '#FFFFFFFF' - id: WarningLine - coordinates: 20,-4 - 17: - color: '#FFFFFFFF' - id: WarningLine - coordinates: 21,-4 - 18: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: WarningLineCornerFlipped - coordinates: 24,-10 - 19: - color: '#FFFFFFFF' - id: WarnCornerFlipped - coordinates: 22,-11 - 20: - color: '#FFFFFFFF' - id: WarningLineCornerFlipped - coordinates: 22,-4 - 21: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCorner - coordinates: 18,-5 - 94: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - coordinates: 15,-9 - 95: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - coordinates: 15,-7 - 96: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: 12,-9 - 97: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - coordinates: 12,-7 - 128: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - coordinates: 5,-9 - 129: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - coordinates: 5,-8 - 130: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - coordinates: 5,-7 - 131: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 4,-6 - 132: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 3,-6 - 133: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 2,-6 - 134: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 1,-6 - 135: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: 0,-6 - 137: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - coordinates: 5,-6 - 139: - color: '#DE3A3A96' - id: BrickTileSteelEndS - coordinates: 10,-15 - 140: - color: '#DE3A3A96' - id: BrickTileSteelEndS - coordinates: 12,-15 - 141: - color: '#DE3A3A96' - id: BrickTileSteelCornerSw - coordinates: 14,-15 - 142: - color: '#DE3A3A96' - id: BrickTileSteelLineE - coordinates: 12,-14 - 143: - color: '#DE3A3A96' - id: BrickTileSteelLineE - coordinates: 10,-14 - 144: - color: '#DE3A3A96' - id: BrickTileSteelLineW - coordinates: 14,-14 - 145: - color: '#DE3A3A96' - id: BrickTileSteelLineW - coordinates: 12,-14 - 146: - color: '#DE3A3A96' - id: BrickTileSteelLineW - coordinates: 10,-14 - 147: - color: '#DE3A3A96' - id: BrickTileSteelInnerSw - coordinates: 10,-13 - 148: - color: '#DE3A3A96' - id: BrickTileSteelInnerSw - coordinates: 12,-13 - 149: - color: '#DE3A3A96' - id: BrickTileSteelInnerSw - coordinates: 14,-13 - 150: - color: '#DE3A3A96' - id: BrickTileSteelLineS - coordinates: 13,-13 - 151: - color: '#DE3A3A96' - id: BrickTileSteelLineS - coordinates: 11,-13 - 152: - color: '#DE3A3A96' - id: BrickTileSteelCornerSw - coordinates: 9,-13 - 153: - color: '#DE3A3A96' - id: BrickTileSteelInnerSe - coordinates: 10,-13 - 154: - color: '#DE3A3A96' - id: BrickTileSteelInnerSe - coordinates: 12,-13 - 155: - color: '#DE3A3A96' - id: BrickTileSteelCornerSe - coordinates: 15,-15 - 156: - color: '#DE3A3A96' - id: BrickTileSteelLineE - coordinates: 15,-13 - 157: - color: '#DE3A3A96' - id: BrickTileSteelCornerNe - coordinates: 15,-12 - 158: - color: '#DE3A3A96' - id: BrickTileSteelLineN - coordinates: 14,-12 - 159: - color: '#DE3A3A96' - id: BrickTileSteelLineN - coordinates: 13,-12 - 160: - color: '#DE3A3A96' - id: BrickTileSteelLineN - coordinates: 12,-12 - 161: - color: '#DE3A3A96' - id: BrickTileSteelLineN - coordinates: 11,-12 - 162: - color: '#DE3A3A96' - id: BrickTileSteelInnerNe - coordinates: 10,-12 - 163: - color: '#DE3A3A96' - id: BrickTileSteelCornerNe - coordinates: 10,-11 - 164: - color: '#DE3A3A96' - id: BrickTileSteelCornerNw - coordinates: 9,-11 - 165: - color: '#DE3A3A96' - id: BrickTileSteelLineW - coordinates: 9,-12 - 166: - color: '#DE3A3A96' - id: WarnLineGreyscaleE - coordinates: 15,-14 - 167: - color: '#FFFFFFFF' - id: WarnEndW - coordinates: 0,-9 - 168: - color: '#FFFFFFFF' - id: WarnEndE - coordinates: 1,-9 - 169: - color: '#FFFFFFFF' - id: WarnEndS - coordinates: 7,-4 - 170: - color: '#FFFFFFFF' - id: WarnEndN - coordinates: 7,-2 - 171: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: 7,-3 - 172: - color: '#FFFFFFFF' - id: WarnLineE - coordinates: 7,-3 - 173: - color: '#9FED5896' - id: BrickTileWhiteCornerNe - coordinates: 7,-11 - 174: - color: '#9FED5896' - id: BrickTileWhiteCornerNw - coordinates: 6,-11 - 175: - color: '#9FED5896' - id: BrickTileWhiteLineW - coordinates: 6,-13 - 176: - color: '#9FED5896' - id: BrickTileWhiteInnerNw - coordinates: 6,-14 - 177: - color: '#9FED5896' - id: BrickTileWhiteLineN - coordinates: 5,-14 - 178: - color: '#9FED5896' - id: BrickTileWhiteLineN - coordinates: 4,-14 - 179: - color: '#9FED5896' - id: BrickTileWhiteLineE - coordinates: 7,-12 - 180: - color: '#9FED5896' - id: BrickTileWhiteLineE - coordinates: 7,-13 - 181: - color: '#9FED5896' - id: BrickTileWhiteLineE - coordinates: 7,-14 - 182: - color: '#9FED5896' - id: BrickTileWhiteLineE - coordinates: 7,-15 - 183: - color: '#9FED5896' - id: BrickTileWhiteLineE - coordinates: 7,-16 - 184: - color: '#9FED5896' - id: BrickTileWhiteLineE - coordinates: 7,-17 - 185: - color: '#9FED5896' - id: BrickTileWhiteCornerSe - coordinates: 7,-18 - 186: - color: '#9FED5896' - id: BrickTileWhiteLineS - coordinates: 6,-18 - 187: - color: '#9FED5896' - id: BrickTileWhiteLineS - coordinates: 5,-18 - 188: - color: '#9FED5896' - id: BrickTileWhiteCornerSw - coordinates: 3,-18 - 189: - color: '#9FED5896' - id: BrickTileWhiteLineS - coordinates: 4,-18 - 190: - color: '#9FED5896' - id: BrickTileWhiteLineW - coordinates: 3,-17 - 191: - color: '#9FED5896' - id: BrickTileWhiteLineW - coordinates: 3,-16 - 192: - color: '#9FED5896' - id: BrickTileWhiteCornerNw - coordinates: 3,-14 - 193: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - coordinates: 3,-15 - 194: - color: '#FFFFFFFF' - id: WarnLineGreyscaleW - coordinates: 6,-12 - 195: - color: '#9FED5896' - id: FullTileOverlayGreyscale - coordinates: 5,-17 - 196: - color: '#9FED5896' - id: FullTileOverlayGreyscale - coordinates: 5,-16 - 197: - color: '#9FED5896' - id: FullTileOverlayGreyscale - coordinates: 5,-15 - 198: - color: '#9FED5896' - id: FullTileOverlayGreyscale - coordinates: 6,-16 - 199: - color: '#9FED5896' - id: FullTileOverlayGreyscale - coordinates: 4,-16 - 200: - color: '#DE3A3A96' - id: BrickTileSteelCornerNe - coordinates: 5,-11 - 201: - color: '#DE3A3A96' - id: BrickTileSteelCornerNw - coordinates: 3,-11 - 202: - color: '#DE3A3A96' - id: BrickTileSteelCornerSe - coordinates: 5,-13 - 203: - color: '#DE3A3A96' - id: BrickTileSteelCornerSw - coordinates: 3,-13 - 204: - color: '#DE3A3A96' - id: BrickTileSteelLineS - coordinates: 4,-13 - 205: - color: '#DE3A3A96' - id: BrickTileSteelLineE - coordinates: 5,-12 - 206: - color: '#DE3A3A96' - id: BrickTileSteelLineN - coordinates: 4,-11 - 207: - color: '#DE3A3A96' - id: BrickTileSteelLineW - coordinates: 3,-12 - 208: - color: '#FFFFFFFF' - id: BotLeft - coordinates: 5,-11 - 209: - color: '#FFFFFFFF' - id: BotLeft - coordinates: 4,-11 - 220: - color: '#FFFFFFFF' - id: Box - coordinates: 12,-22 - 221: - color: '#D381C996' - id: CheckerNWSE - coordinates: 10,-19 - 222: - color: '#D381C996' - id: CheckerNWSE - coordinates: 11,-19 - 223: - color: '#D381C996' - id: CheckerNWSE - coordinates: 12,-19 - 224: - color: '#D381C996' - id: CheckerNWSE - coordinates: 13,-19 - 225: - color: '#D381C996' - id: CheckerNWSE - coordinates: 14,-19 - 226: - color: '#D381C996' - id: CheckerNWSE - coordinates: 14,-18 - 227: - color: '#D381C996' - id: CheckerNWSE - coordinates: 14,-17 - 228: - color: '#D381C996' - id: CheckerNWSE - coordinates: 13,-17 - 229: - color: '#D381C996' - id: CheckerNWSE - coordinates: 13,-18 - 230: - color: '#D381C996' - id: CheckerNWSE - coordinates: 12,-18 - 231: - color: '#D381C996' - id: CheckerNWSE - coordinates: 12,-17 - 232: - color: '#D381C996' - id: CheckerNWSE - coordinates: 11,-17 - 233: - color: '#D381C996' - id: CheckerNWSE - coordinates: 11,-18 - 234: - color: '#D381C996' - id: CheckerNWSE - coordinates: 10,-18 - 235: - color: '#D381C996' - id: CheckerNWSE - coordinates: 10,-17 - 236: - color: '#FFFFFFFF' - id: WarnLineN - coordinates: 14,-19 - 237: - color: '#FFFFFFFF' - id: WarnLineN - coordinates: 13,-19 - 238: - color: '#FFFFFFFF' - id: WarnLineN - coordinates: 12,-19 - 239: - color: '#FFFFFFFF' - id: WarnLineN - coordinates: 11,-19 - 240: - color: '#FFFFFFFF' - id: WarnCornerSW - coordinates: 10,-19 - 241: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: 10,-18 - 242: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: 10,-17 - 243: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - coordinates: 1,-16 - 244: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - coordinates: 0,-16 - 246: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - coordinates: 1,-14 - 247: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - coordinates: 0,-14 - 254: - color: '#52B4E996' - id: BrickTileSteelBox - coordinates: 1,-17 - 255: - color: '#52B4E996' - id: BrickTileSteelBox - coordinates: 1,-13 - 257: - color: '#DE3A3A96' - id: BrickTileSteelLineN - coordinates: 0,-17 - 259: - color: '#DE3A3A96' - id: BrickTileSteelLineS - coordinates: 0,-13 - 265: - color: '#FFFFFFFF' - id: Delivery - coordinates: 7,-18 - 266: - color: '#FFFFFFFF' - id: Delivery - coordinates: 6,-18 - 267: - color: '#DE3A3A96' - id: BrickTileSteelLineW - coordinates: 18,-18 - 268: - color: '#DE3A3A96' - id: BrickTileSteelLineW - coordinates: 17,-16 - 269: - color: '#DE3A3A96' - id: BrickTileSteelLineW - coordinates: 17,-15 - 270: - color: '#DE3A3A96' - id: BrickTileSteelCornerSw - coordinates: 17,-17 - 271: - color: '#DE3A3A96' - id: BrickTileSteelLineE - coordinates: 26,-19 - 272: - color: '#DE3A3A96' - id: BrickTileSteelLineE - coordinates: 26,-18 - 273: - color: '#DE3A3A96' - id: BrickTileSteelCornerSe - coordinates: 27,-17 - 274: - color: '#DE3A3A96' - id: BrickTileSteelInnerSe - coordinates: 26,-17 - 275: - color: '#DE3A3A96' - id: BrickTileSteelInnerSw - coordinates: 18,-17 - 276: - color: '#DE3A3A96' - id: BrickTileSteelLineW - coordinates: 18,-19 - 277: - color: '#DE3A3A96' - id: BrickTileSteelCornerSw - coordinates: 18,-20 - 278: - color: '#DE3A3A96' - id: BrickTileSteelCornerSe - coordinates: 26,-20 - 279: - color: '#DE3A3A96' - id: BrickTileSteelLineE - coordinates: 20,-17 - 280: - color: '#DE3A3A96' - id: BrickTileSteelLineE - coordinates: 20,-16 - 281: - color: '#DE3A3A96' - id: BrickTileSteelLineE - coordinates: 20,-15 - 282: - color: '#DE3A3A96' - id: BrickTileSteelLineW - coordinates: 24,-19 - 283: - color: '#DE3A3A96' - id: BrickTileSteelLineW - coordinates: 24,-17 - 284: - color: '#DE3A3A96' - id: BrickTileSteelLineW - coordinates: 24,-16 - 285: - color: '#DE3A3A96' - id: BrickTileSteelLineW - coordinates: 24,-15 - 286: - color: '#DE3A3A96' - id: BrickTileSteelLineS - coordinates: 25,-20 - 287: - color: '#DE3A3A96' - id: BrickTileSteelLineS - coordinates: 19,-20 - 288: - color: '#DE3A3A96' - id: BrickTileSteelLineN - coordinates: 26,-14 - 289: - color: '#DE3A3A96' - id: BrickTileSteelLineN - coordinates: 25,-14 - 290: - color: '#DE3A3A96' - id: BrickTileSteelLineN - coordinates: 23,-14 - 291: - color: '#DE3A3A96' - id: BrickTileSteelLineN - coordinates: 22,-14 - 292: - color: '#DE3A3A96' - id: BrickTileSteelLineN - coordinates: 21,-14 - 293: - color: '#DE3A3A96' - id: BrickTileSteelLineN - coordinates: 20,-14 - 294: - color: '#DE3A3A96' - id: BrickTileSteelLineN - coordinates: 18,-14 - 295: - color: '#DE3A3A96' - id: BrickTileSteelLineN - coordinates: 19,-14 - 296: - color: '#DE3A3A96' - id: WarnCornerGreyscaleNW - coordinates: 17,-14 - 297: - color: '#DE3A3A96' - id: DeliveryGreyscale - coordinates: 16,-14 - 298: - color: '#DE3A3A96' - id: BrickTileSteelLineN - coordinates: 24,-14 - 299: - color: '#DE3A3A96' - id: BrickTileSteelInnerSw - coordinates: 24,-14 - 300: - color: '#DE3A3A96' - id: BrickTileSteelLineS - coordinates: 23,-14 - 301: - color: '#DE3A3A96' - id: BrickTileSteelLineS - coordinates: 22,-14 - 302: - color: '#DE3A3A96' - id: BrickTileSteelLineS - coordinates: 21,-14 - 303: - color: '#DE3A3A96' - id: BrickTileSteelInnerSe - coordinates: 20,-14 - 304: - color: '#DE3A3A96' - id: BrickTileSteelLineE - coordinates: 20,-19 - 305: - color: '#FFFFFFFF' - id: WarnCornerSW - coordinates: 24,-20 - 306: - color: '#FFFFFFFF' - id: WarnCornerSE - coordinates: 20,-20 - 307: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: 24,-18 - 308: - color: '#FFFFFFFF' - id: WarnLineE - coordinates: 20,-18 - 309: - color: '#FFFFFFFF' - id: Bot - coordinates: 21,-16 - 310: - color: '#FFFFFFFF' - id: Bot - coordinates: 22,-15 - 311: - color: '#FFFFFFFF' - id: Bot - coordinates: 23,-16 - 312: - color: '#FFFFFFFF' - id: BotRight - coordinates: 23,-17 - 313: - color: '#FFFFFFFF' - id: BotRight - coordinates: 21,-15 - 314: - color: '#FFFFFFFF' - id: BotLeft - coordinates: 23,-15 - 315: - color: '#FFFFFFFF' - id: BotLeft - coordinates: 21,-17 - 316: - color: '#FFFFFFFF' - id: Bot - coordinates: 22,-17 - 317: - color: '#FFFFFFFF' - id: Bot - coordinates: 17,-19 - 318: - color: '#FFFFFFFF' - id: Bot - coordinates: 27,-19 - 319: - color: '#FFFFFFFF' - id: BotLeft - coordinates: 27,-18 - 320: - color: '#FFFFFFFF' - id: BotLeft - coordinates: 17,-20 - 321: - color: '#FFFFFFFF' - id: BotRight - coordinates: 27,-20 - 322: - color: '#FFFFFFFF' - id: BotRight - coordinates: 17,-18 - 323: - color: '#FFFFFFFF' - id: Arrows - coordinates: 18,-19 - 324: - color: '#FFFFFFFF' - id: Arrows - coordinates: 26,-19 - 325: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: Arrows - coordinates: 27,-15 - 326: - color: '#DE3A3A96' - id: BrickTileSteelLineE - coordinates: 27,-16 - 327: - color: '#DE3A3A96' - id: BrickTileSteelLineE - coordinates: 27,-15 - 328: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - coordinates: 13,-7 - 329: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 14,-9 - 330: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - coordinates: 13,-9 - 335: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - coordinates: 13,-2 - 336: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - coordinates: 12,-2 - 337: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - coordinates: 9,-2 - 338: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - coordinates: 10,-2 - 339: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - coordinates: 10,-1 - 340: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - coordinates: 12,-1 - 341: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - coordinates: 11,-2 - 343: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: 2,-1 - 344: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: 1,-1 - 345: - color: '#FFFFFFFF' - id: BrickTileDarkLineN - coordinates: 0,-1 - -1,-1: - 22: - color: '#FFFFFFFF' - id: grasssnowa2 - coordinates: -3.6290493,-9.771207 - 23: - color: '#FFFFFFFF' - id: grasssnowb3 - coordinates: -3.3477993,-19.991972 - 24: - color: '#FFFFFFFF' - id: grasssnowc1 - coordinates: -3.9999733,-6.081314 - 50: - color: '#FFFFFFFF' - id: grasssnowb3 - coordinates: -3.1864414,-0.9828911 - 103: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-1 - 104: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-2 - 105: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-3 - 106: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-4 - 107: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-5 - 108: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-6 - 109: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-7 - 110: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-8 - 111: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-9 - 112: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-10 - 113: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-11 - 114: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-12 - 115: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-13 - 116: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-14 - 117: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-15 - 118: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-16 - 119: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-17 - 120: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-18 - 121: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-19 - 122: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-20 - 123: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-21 - 124: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-22 - 125: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-23 - 126: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,-24 - 136: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - coordinates: -1,-6 - 138: - color: '#FFFFFFFF' - id: WarnBox - coordinates: -5,-3 - 245: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - coordinates: -1,-16 - 248: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - coordinates: -1,-14 - 249: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - coordinates: -2,-15 - 250: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - coordinates: -2,-16 - 251: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale - coordinates: -2,-14 - 252: - color: '#52B4E996' - id: BrickTileSteelBox - coordinates: -3,-15 - 253: - color: '#52B4E996' - id: BrickTileSteelBox - coordinates: -2,-17 - 256: - color: '#52B4E996' - id: BrickTileSteelBox - coordinates: -2,-13 - 258: - color: '#DE3A3A96' - id: BrickTileSteelLineN - coordinates: -1,-17 - 260: - color: '#DE3A3A96' - id: BrickTileSteelLineS - coordinates: -1,-13 - 261: - color: '#DE3A3A96' - id: BrickTileSteelLineE - coordinates: -3,-16 - 262: - color: '#DE3A3A96' - id: BrickTileSteelLineE - coordinates: -3,-14 - 263: - color: '#DE3A3A96' - id: BrickTileSteelInnerSe - coordinates: -3,-13 - 264: - color: '#DE3A3A96' - id: BrickTileSteelInnerNe - coordinates: -3,-17 - 0,0: - 25: - color: '#FFFFFFFF' - id: grasssnowa2 - coordinates: 15.159365,5.392831 - 26: - color: '#FFFFFFFF' - id: grasssnowc1 - coordinates: 15.819311,9.398571 - 27: - color: '#FFFFFFFF' - id: grasssnowc2 - coordinates: 14.194311,14.208315 - 28: - color: '#FFFFFFFF' - id: grasssnowc3 - coordinates: 15.694311,15.172535 - 29: - color: '#FFFFFFFF' - id: grasssnowc2 - coordinates: 12.819311,16.642818 - 30: - color: '#FFFFFFFF' - id: grasssnowa1 - coordinates: 9.251883,16.971285 - 31: - color: '#FFFFFFFF' - id: grasssnowb3 - coordinates: 9.061624,11.550716 - 32: - color: '#FFFFFFFF' - id: grasssnowc1 - coordinates: 12.170999,10.565315 - 33: - color: '#FFFFFFFF' - id: grasssnowc2 - coordinates: 8.01938,8.972565 - 34: - color: '#FFFFFFFF' - id: grasssnowc3 - coordinates: 10.48813,7.3443623 - 35: - color: '#FFFFFFFF' - id: grasssnowb3 - coordinates: 9.066255,4.2786684 - 36: - color: '#FFFFFFFF' - id: grasssnowb2 - coordinates: 6.1287537,4.4684677 - 37: - color: '#FFFFFFFF' - id: grasssnowc3 - coordinates: 9.0946245,2.0440664 - 38: - color: '#FFFFFFFF' - id: grasssnowb2 - coordinates: 13.017959,2.0284252 - 39: - color: '#FFFFFFFF' - id: grasssnowc1 - coordinates: 10.861709,2.2630453 - 40: - color: '#FFFFFFFF' - id: grasssnowc1 - coordinates: 8.471084,13.624069 - 41: - color: '#FFFFFFFF' - id: grasssnowa1 - coordinates: 4.707512,15.727119 - 42: - color: '#FFFFFFFF' - id: grasssnowa2 - coordinates: 2.707512,15.930454 - 51: - color: '#FFFFFFFF' - id: grasssnowb1 - coordinates: 0.79449654,2.152192 - 53: - color: '#FFFFFFFF' - id: grasssnowa2 - coordinates: 1.6412125,14.139866 - 54: - color: '#FFFFFFFF' - id: grasssnowa3 - coordinates: 0.43808746,13.654987 - 55: - color: '#FFFFFFFF' - id: grasssnowb1 - coordinates: 0.18808746,9.666458 - 56: - color: '#FFFFFFFF' - id: grasssnowc1 - coordinates: 4.1724625,13.733192 - 57: - color: '#FFFFFFFF' - id: grasssnowa3 - coordinates: 3.1880875,12.434965 - 58: - color: '#FFFFFFFF' - id: grasssnowa3 - coordinates: 2.1568375,9.893942 - 59: - color: '#FFFFFFFF' - id: grasssnowc3 - coordinates: 0.45371246,11.270374 - 60: - color: '#FFFFFFFF' - id: grasssnowc3 - coordinates: 9.166802,10.222887 - 61: - color: '#FFFFFFFF' - id: grasssnowb2 - coordinates: 8.19574,16.289047 - 62: - color: '#FFFFFFFF' - id: grasssnowa2 - coordinates: 14.449558,12.269236 - 63: - color: '#FFFFFFFF' - id: grasssnowa3 - coordinates: 16.060982,2.673603 - 64: - color: '#FFFFFFFF' - id: grasssnowb2 - coordinates: 3.43816,14.798347 - 65: - color: '#FFFFFFFF' - id: grasssnowb3 - coordinates: 0.5527668,14.892197 - 67: - color: '#FFFFFFFF' - id: bushsnowa1 - coordinates: 12.033197,7.701807 - 69: - color: '#FFFFFFFF' - id: bushsnowa1 - coordinates: 14.310135,6.6772776 - 70: - color: '#FFFFFFFF' - id: bushsnowa2 - coordinates: 13.896899,12.679136 - 71: - color: '#FFFFFFFF' - id: bushsnowb2 - coordinates: 12.943774,14.853275 - 72: - color: '#FFFFFFFF' - id: bushsnowb3 - coordinates: 0.2452774,15.588417 - 75: - color: '#FFFFFFFF' - id: Rock06 - coordinates: 9.232971,15.9332485 - 76: - color: '#FFFFFFFF' - id: grasssnowc1 - coordinates: 2.5912228,19.753052 - 77: - color: '#FFFFFFFF' - id: grasssnowc3 - coordinates: 6.122473,18.001226 - 78: - color: '#FFFFFFFF' - id: grasssnowb2 - coordinates: 2.4505978,18.17328 - 79: - color: '#FFFFFFFF' - id: grasssnowb1 - coordinates: 4.997473,19.080475 - 80: - color: '#FFFFFFFF' - id: grasssnowc3 - coordinates: 18.166714,4.631343 - 81: - color: '#FFFFFFFF' - id: grasssnowc2 - coordinates: 19.322964,7.2277966 - 82: - color: '#FFFFFFFF' - id: grasssnowc1 - coordinates: 17.947964,3.1297789 - 83: - color: '#FFFFFFFF' - id: grasssnowb3 - coordinates: 17.104214,9.229881 - 84: - color: '#FFFFFFFF' - id: grasssnowa1 - coordinates: 16.072964,17.452217 - 93: - color: '#FFFFFFFF' - id: grasssnowb2 - coordinates: 4.1790752,7.8279076 - 331: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - coordinates: 9,0 - 332: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - coordinates: 10,0 - 333: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - coordinates: 13,0 - 334: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - coordinates: 12,0 - 342: - color: '#9FED5896' - id: HalfTileOverlayGreyscale180 - coordinates: 11,0 - -1,0: - 43: - color: '#FFFFFFFF' - id: grasssnowc3 - coordinates: -2.8895664,16.211998 - 44: - color: '#FFFFFFFF' - id: grasssnowa3 - coordinates: -1.3739414,16.399694 - 45: - color: '#FFFFFFFF' - id: grasssnowc1 - coordinates: -2.1864414,7.911888 - 46: - color: '#FFFFFFFF' - id: grasssnowc3 - coordinates: -4.0458164,7.6303444 - 47: - color: '#FFFFFFFF' - id: grasssnowa1 - coordinates: -2.8426914,5.7681084 - 48: - color: '#FFFFFFFF' - id: grasssnowc1 - coordinates: -0.6551914,1.8769035 - 49: - color: '#FFFFFFFF' - id: grasssnowc1 - coordinates: -3.7333164,0.34661865 - 52: - color: '#FFFFFFFF' - id: grasssnowb3 - coordinates: -0.88188744,15.563225 - 66: - color: '#FFFFFFFF' - id: grasssnowc3 - coordinates: -1.9470882,14.409473 - 68: - color: '#FFFFFFFF' - id: bushsnowa2 - coordinates: -1.884201,10.692345 - 73: - color: '#FFFFFFFF' - id: bushsnowa2 - coordinates: -2.6609726,10.251652 - 74: - color: '#FFFFFFFF' - id: bushsnowb3 - coordinates: -0.9488945,8.937782 - 85: - color: '#FFFFFFFF' - id: grasssnowa1 - coordinates: -4.644718,19.141476 - 86: - color: '#FFFFFFFF' - id: grasssnowa2 - coordinates: -6.332218,17.702477 - 87: - color: '#FFFFFFFF' - id: grasssnowa2 - coordinates: -7.488468,14.82448 - 88: - color: '#FFFFFFFF' - id: grasssnowc1 - coordinates: -7.175968,10.382353 - 89: - color: '#FFFFFFFF' - id: grasssnowc2 - coordinates: -5.675968,10.1320915 - 90: - color: '#FFFFFFFF' - id: grasssnowa3 - coordinates: -6.207218,16.0445 - 91: - color: '#FFFFFFFF' - id: grasssnowa2 - coordinates: -5.738468,8.348984 - 92: - color: '#FFFFFFFF' - id: grasssnowb2 - coordinates: -5.832218,13.979851 - 98: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,4 - 99: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,3 - 100: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,2 - 101: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,1 - 102: - color: '#FFFFFFFF' - id: WarnLineS - coordinates: -9,0 - 127: - color: '#FFFFFFFF' - id: WarnEndS - coordinates: -6,21 - 210: - color: '#A4610647' - id: CheckerNWSE - coordinates: -13,6 - 211: - color: '#A4610647' - id: CheckerNWSE - coordinates: -14,6 - 212: - color: '#A4610647' - id: CheckerNWSE - coordinates: -15,6 - 213: - color: '#A4610647' - id: CheckerNWSE - coordinates: -15,7 - 214: - color: '#A4610647' - id: CheckerNWSE - coordinates: -14,7 - 215: - color: '#A4610647' - id: CheckerNWSE - coordinates: -13,7 - 216: - color: '#A4610647' - id: CheckerNWSE - coordinates: -14,8 - 217: - color: '#A4610647' - id: CheckerNWSE - coordinates: -15,8 - 218: - color: '#FFFFFFFF' - id: Delivery - coordinates: -16,8 - 219: - color: '#FFFFFFFF' - id: Delivery - coordinates: -16,9 - type: DecalGrid - - tiles: - -1,-5: 0 - -1,-4: 0 - -1,-3: 0 - -1,-2: 0 - -1,-1: 0 - 0,-4: 0 - 0,-3: 0 - 0,-2: 0 - 0,-1: 0 - -5,-16: 0 - -5,-15: 0 - -5,-14: 0 - -5,-13: 0 - -5,-12: 0 - -5,-11: 0 - -5,-10: 0 - -5,-9: 0 - -5,-8: 0 - -5,-7: 0 - -5,-6: 0 - -5,-5: 0 - -5,-4: 0 - -5,-3: 0 - -5,-2: 0 - -5,-1: 0 - -4,-16: 0 - -4,-15: 0 - -4,-14: 0 - -4,-13: 0 - -4,-12: 0 - -4,-11: 0 - -4,-10: 0 - -4,-9: 0 - -4,-8: 0 - -4,-7: 0 - -4,-6: 0 - -4,-5: 0 - -4,-4: 0 - -4,-3: 0 - -4,-2: 0 - -4,-1: 0 - -3,-16: 0 - -3,-15: 0 - -3,-14: 0 - -3,-13: 0 - -3,-12: 0 - -3,-11: 0 - -3,-10: 0 - -3,-9: 0 - -3,-8: 0 - -3,-7: 0 - -3,-6: 0 - -3,-5: 0 - -3,-4: 0 - -3,-3: 1 - -3,-2: 0 - -3,-1: 0 - -2,-16: 0 - -2,-15: 0 - -2,-14: 0 - -2,-13: 0 - -2,-12: 0 - -2,-11: 0 - -2,-10: 0 - -2,-9: 0 - -2,-8: 0 - -2,-7: 0 - -2,-6: 0 - -2,-5: 0 - -2,-4: 0 - -2,-3: 0 - -2,-2: 0 - -2,-1: 0 - -1,-16: 0 - -1,-15: 0 - -1,-14: 0 - -1,-13: 0 - -1,-12: 0 - -1,-11: 0 - -1,-10: 0 - -1,-9: 0 - -1,-8: 0 - -1,-7: 0 - -1,-6: 0 - 0,-16: 0 - 0,-15: 0 - 0,-14: 0 - 0,-13: 0 - 0,-12: 0 - 0,-11: 0 - 0,-10: 0 - 0,-9: 0 - 0,-8: 0 - 0,-7: 0 - 0,-6: 0 - 0,-5: 0 - 1,-16: 0 - 1,-15: 0 - 1,-14: 0 - 1,-13: 0 - 1,-12: 0 - 1,-11: 0 - 1,-10: 0 - 1,-9: 0 - 1,-8: 0 - 1,-7: 0 - 1,-6: 0 - 1,-5: 0 - 1,-4: 0 - 1,-3: 0 - 1,-2: 0 - 1,-1: 0 - 2,-16: 0 - 2,-15: 0 - 2,-14: 0 - 2,-13: 0 - 2,-12: 0 - 2,-11: 0 - 2,-10: 0 - 2,-9: 0 - 2,-8: 0 - 2,-7: 0 - 2,-6: 0 - 2,-5: 0 - 2,-4: 0 - 2,-3: 0 - 2,-2: 0 - 2,-1: 0 - 3,-16: 0 - 3,-15: 0 - 3,-14: 0 - 3,-13: 0 - 3,-12: 0 - 3,-11: 0 - 3,-10: 0 - 3,-9: 0 - 3,-8: 0 - 3,-7: 0 - 3,-6: 0 - 3,-5: 0 - 3,-4: 0 - 3,-3: 0 - 3,-2: 0 - 3,-1: 0 - 4,-16: 0 - 4,-15: 0 - 4,-14: 0 - 4,-13: 0 - 4,-12: 0 - 4,-11: 0 - 4,-10: 0 - 4,-9: 0 - 4,-8: 0 - 4,-7: 0 - 4,-6: 0 - 4,-5: 0 - 4,-4: 0 - 4,-3: 0 - 4,-2: 0 - 4,-1: 0 - 5,-16: 0 - 5,-15: 0 - 5,-14: 0 - 5,-13: 1 - 5,-12: 0 - 5,-11: 0 - 5,-10: 0 - 5,-9: 0 - 5,-8: 0 - 5,-7: 0 - 5,-6: 0 - 5,-5: 0 - 5,-4: 0 - 5,-3: 0 - 5,-2: 0 - 5,-1: 0 - 6,-16: 0 - 6,-15: 0 - 6,-14: 0 - 6,-13: 0 - 6,-12: 0 - 6,-11: 0 - 6,-10: 0 - 6,-9: 0 - 6,-8: 0 - 6,-7: 0 - 6,-6: 0 - 6,-5: 0 - 6,-4: 0 - 6,-3: 0 - 6,-2: 0 - 6,-1: 0 - 7,-16: 0 - 7,-15: 0 - 7,-14: 0 - 7,-13: 0 - 7,-12: 0 - 7,-11: 0 - 7,-10: 0 - 7,-9: 0 - 7,-8: 0 - 7,-7: 0 - 7,-6: 0 - 7,-5: 0 - 7,-4: 0 - 7,-3: 0 - 7,-2: 0 - 7,-1: 0 - 8,-16: 0 - 8,-15: 0 - 8,-14: 0 - 8,-13: 0 - 8,-12: 0 - 8,-11: 0 - 8,-10: 0 - 8,-9: 0 - 8,-8: 0 - 8,-7: 0 - 8,-6: 0 - 8,-5: 0 - 8,-4: 0 - 8,-3: 0 - 8,-2: 0 - 8,-1: 0 - 9,-16: 0 - 9,-15: 1 - 9,-14: 1 - 9,-13: 0 - 9,-12: 0 - 9,-11: 0 - 9,-10: 0 - 9,-9: 0 - 9,-8: 0 - 9,-7: 0 - 9,-6: 0 - 9,-5: 0 - 9,-4: 1 - 9,-3: 0 - 9,-2: 0 - 9,-1: 0 - 10,-16: 0 - 10,-15: 0 - 10,-14: 0 - 10,-13: 0 - 10,-12: 0 - 10,-11: 0 - 10,-10: 0 - 10,-9: 0 - 10,-8: 0 - 10,-7: 0 - 10,-6: 0 - 10,-5: 0 - 10,-4: 0 - 10,-3: 0 - 10,-2: 0 - 10,-1: 0 - 11,-16: 0 - 11,-15: 1 - 11,-14: 1 - 11,-13: 0 - 11,-12: 0 - 11,-11: 0 - 11,-10: 0 - 11,-9: 0 - 11,-8: 0 - 11,-7: 0 - 11,-6: 0 - 11,-5: 1 - 11,-4: 0 - 11,-3: 0 - 11,-2: 0 - 11,-1: 0 - 12,-16: 0 - 12,-15: 0 - 12,-14: 0 - 12,-13: 0 - 12,-12: 0 - 12,-11: 0 - 12,-10: 0 - 12,-9: 0 - 12,-8: 0 - 12,-7: 0 - 12,-6: 0 - 12,-5: 0 - 12,-4: 0 - 12,-3: 0 - 12,-2: 0 - 12,-1: 0 - 13,-16: 0 - 13,-15: 1 - 13,-14: 1 - 13,-13: 0 - 13,-12: 0 - 13,-11: 0 - 13,-10: 0 - 13,-9: 0 - 13,-8: 0 - 13,-7: 0 - 13,-6: 0 - 13,-5: 1 - 13,-4: 0 - 13,-3: 0 - 13,-2: 0 - 13,-1: 0 - 14,-16: 0 - 14,-15: 0 - 14,-14: 0 - 14,-13: 0 - 14,-12: 0 - 14,-11: 0 - 14,-10: 0 - 14,-9: 0 - 14,-8: 0 - 14,-7: 0 - 14,-6: 0 - 14,-5: 0 - 14,-4: 0 - 14,-3: 0 - 14,-2: 0 - 14,-1: 0 - 15,-16: 0 - 15,-15: 0 - 15,-14: 0 - 15,-13: 0 - 15,-12: 0 - 15,-11: 0 - 15,-10: 0 - 15,-9: 0 - 15,-8: 0 - 15,-7: 0 - 15,-6: 0 - 15,-5: 0 - 15,-4: 0 - 15,-3: 0 - 15,-2: 0 - 15,-1: 0 - 0,0: 0 - 0,1: 0 - 0,2: 0 - 0,3: 0 - 0,4: 0 - 0,5: 0 - 0,6: 0 - 0,7: 0 - 0,8: 0 - 0,9: 0 - 0,10: 0 - 0,11: 0 - 0,12: 0 - 0,13: 0 - 0,14: 0 - 0,15: 0 - 1,0: 0 - 1,1: 0 - 1,2: 0 - 1,3: 0 - 1,4: 0 - 1,5: 0 - 1,6: 0 - 1,7: 0 - 1,8: 0 - 1,9: 0 - 1,10: 0 - 1,11: 0 - 1,12: 0 - 1,13: 0 - 1,14: 0 - 1,15: 0 - 2,0: 0 - 2,1: 0 - 2,2: 0 - 2,3: 0 - 2,4: 0 - 2,5: 0 - 2,6: 0 - 2,7: 0 - 2,8: 0 - 2,9: 0 - 2,10: 0 - 2,11: 0 - 2,12: 0 - 2,13: 0 - 2,14: 0 - 2,15: 0 - 3,0: 0 - 3,1: 0 - 3,2: 0 - 3,3: 0 - 3,4: 0 - 3,5: 0 - 3,6: 0 - 3,7: 0 - 3,8: 0 - 3,9: 0 - 3,10: 0 - 3,11: 0 - 3,12: 0 - 3,13: 0 - 3,14: 0 - 3,15: 0 - 4,0: 0 - 4,1: 0 - 4,2: 0 - 4,3: 0 - 4,4: 0 - 4,5: 0 - 4,6: 0 - 4,7: 0 - 4,8: 0 - 4,9: 0 - 4,10: 0 - 4,11: 0 - 4,12: 0 - 4,13: 0 - 4,14: 0 - 4,15: 0 - 5,0: 0 - 5,1: 0 - 5,2: 0 - 5,3: 0 - 5,4: 0 - 5,5: 0 - 5,6: 0 - 5,7: 0 - 5,8: 0 - 5,9: 0 - 5,10: 0 - 5,11: 0 - 5,12: 0 - 5,13: 0 - 5,14: 0 - 5,15: 0 - 6,0: 0 - 6,1: 0 - 6,2: 0 - 6,3: 0 - 6,4: 0 - 6,5: 0 - 6,6: 0 - 6,7: 0 - 6,8: 0 - 6,9: 0 - 6,10: 0 - 6,11: 0 - 6,12: 0 - 6,13: 0 - 6,14: 0 - 6,15: 0 - 7,0: 0 - 7,1: 0 - 7,2: 0 - 7,3: 0 - 7,4: 0 - 7,5: 0 - 7,6: 0 - 7,7: 0 - 7,8: 0 - 7,9: 0 - 7,10: 0 - 7,11: 0 - 7,12: 0 - 7,13: 0 - 7,14: 0 - 7,15: 0 - 8,0: 0 - 8,1: 0 - 8,2: 0 - 8,3: 0 - 8,4: 0 - 8,5: 0 - 8,6: 0 - 8,7: 0 - 8,8: 0 - 8,9: 0 - 8,10: 0 - 8,11: 0 - 8,12: 0 - 8,13: 0 - 8,14: 0 - 8,15: 0 - 9,0: 0 - 9,1: 0 - 9,2: 0 - 9,3: 0 - 9,4: 0 - 9,5: 0 - 9,6: 0 - 9,7: 0 - 9,8: 0 - 9,9: 0 - 9,10: 0 - 9,11: 0 - 9,12: 0 - 9,13: 0 - 9,14: 0 - 9,15: 0 - 10,0: 0 - 10,1: 0 - 10,2: 0 - 10,3: 0 - 10,4: 0 - 10,5: 0 - 10,6: 0 - 10,7: 0 - 10,8: 0 - 10,9: 0 - 10,10: 0 - 10,11: 0 - 10,12: 0 - 10,13: 0 - 10,14: 0 - 10,15: 0 - 11,0: 0 - 11,1: 0 - 11,2: 0 - 11,3: 0 - 11,4: 0 - 11,5: 0 - 11,6: 0 - 11,7: 0 - 11,8: 0 - 11,9: 0 - 11,10: 0 - 11,11: 0 - 11,12: 0 - 11,13: 0 - 11,14: 0 - 11,15: 0 - 12,0: 0 - 12,1: 0 - 12,2: 0 - 12,3: 0 - 12,4: 0 - 12,5: 0 - 12,6: 0 - 12,7: 0 - 12,8: 0 - 12,9: 0 - 12,10: 0 - 12,11: 0 - 12,12: 0 - 12,13: 0 - 12,14: 0 - 12,15: 0 - 13,0: 0 - 13,1: 0 - 13,2: 0 - 13,3: 0 - 13,4: 0 - 13,5: 0 - 13,6: 0 - 13,7: 0 - 13,8: 0 - 13,9: 0 - 13,10: 0 - 13,11: 0 - 13,12: 0 - 13,13: 0 - 13,14: 0 - 13,15: 0 - 14,0: 0 - 14,1: 0 - 14,2: 0 - 14,3: 0 - 14,4: 0 - 14,5: 0 - 14,6: 0 - 14,7: 0 - 14,8: 0 - 14,9: 0 - 14,10: 0 - 14,11: 0 - 14,12: 0 - 14,13: 0 - 14,14: 0 - 14,15: 0 - 15,0: 0 - 15,1: 0 - 15,2: 0 - 15,3: 0 - 15,4: 0 - 15,5: 0 - 15,6: 0 - 15,7: 0 - 15,8: 0 - 15,9: 0 - 15,10: 0 - 15,11: 0 - 15,12: 0 - 15,13: 0 - 15,14: 0 - 15,15: 0 - -5,0: 0 - -5,1: 0 - -5,2: 0 - -5,3: 0 - -5,4: 0 - -5,5: 0 - -5,6: 0 - -5,7: 0 - -5,8: 0 - -5,9: 0 - -5,10: 0 - -5,11: 0 - -5,12: 0 - -5,13: 0 - -5,14: 0 - -5,15: 0 - -4,0: 0 - -4,1: 0 - -4,2: 0 - -4,3: 0 - -4,4: 0 - -4,5: 0 - -4,6: 0 - -4,7: 0 - -4,8: 0 - -4,9: 0 - -4,10: 0 - -4,11: 0 - -4,12: 0 - -4,13: 0 - -4,14: 0 - -4,15: 0 - -3,0: 0 - -3,1: 0 - -3,2: 0 - -3,3: 0 - -3,4: 0 - -3,5: 0 - -3,6: 0 - -3,7: 0 - -3,8: 0 - -3,9: 0 - -3,10: 0 - -3,11: 0 - -3,12: 0 - -3,13: 0 - -3,14: 0 - -3,15: 0 - -2,0: 0 - -2,1: 0 - -2,2: 0 - -2,3: 0 - -2,4: 0 - -2,5: 0 - -2,6: 0 - -2,7: 0 - -2,8: 0 - -2,9: 0 - -2,10: 0 - -2,11: 0 - -2,12: 0 - -2,13: 0 - -2,14: 0 - -2,15: 0 - -1,0: 0 - -1,1: 0 - -1,2: 0 - -1,3: 0 - -1,4: 0 - -1,5: 0 - -1,6: 0 - -1,7: 0 - -1,8: 0 - -1,9: 0 - -1,10: 0 - -1,11: 0 - -1,12: 0 - -1,13: 0 - -1,14: 0 - -1,15: 0 - 16,-16: 0 - 16,-15: 0 - 16,-14: 0 - 16,-13: 0 - 16,-12: 0 - 16,-11: 0 - 16,-10: 0 - 16,-9: 0 - 16,-8: 0 - 16,-7: 0 - 16,-6: 0 - 16,-5: 0 - 16,-4: 0 - 16,-3: 0 - 16,-2: 0 - 16,-1: 0 - 17,-16: 0 - 17,-15: 0 - 17,-14: 0 - 17,-13: 0 - 17,-12: 0 - 17,-11: 0 - 17,-10: 0 - 17,-9: 0 - 17,-8: 0 - 17,-7: 0 - 17,-6: 0 - 17,-5: 0 - 17,-4: 0 - 17,-3: 0 - 17,-2: 0 - 17,-1: 0 - 18,-16: 0 - 18,-15: 0 - 18,-14: 0 - 18,-13: 0 - 18,-12: 0 - 18,-11: 0 - 18,-10: 0 - 18,-9: 0 - 18,-8: 0 - 18,-7: 0 - 18,-6: 0 - 18,-5: 0 - 18,-4: 0 - 18,-3: 0 - 18,-2: 0 - 18,-1: 0 - 19,-16: 0 - 19,-15: 0 - 19,-14: 0 - 19,-13: 0 - 19,-12: 0 - 19,-11: 0 - 19,-10: 0 - 19,-9: 0 - 19,-8: 0 - 19,-7: 0 - 19,-6: 0 - 19,-5: 0 - 19,-4: 0 - 19,-3: 0 - 19,-2: 0 - 19,-1: 0 - 20,-16: 0 - 20,-15: 1 - 20,-14: 0 - 20,-13: 0 - 20,-12: 0 - 20,-11: 0 - 20,-10: 0 - 20,-9: 0 - 20,-8: 0 - 20,-7: 0 - 20,-6: 0 - 20,-5: 0 - 20,-4: 0 - 20,-3: 0 - 20,-2: 0 - 20,-1: 0 - 21,-16: 0 - 21,-15: 0 - 21,-14: 0 - 21,-13: 0 - 21,-12: 0 - 21,-11: 0 - 21,-10: 0 - 21,-9: 0 - 21,-8: 0 - 21,-7: 0 - 21,-6: 0 - 21,-5: 0 - 21,-4: 0 - 21,-3: 0 - 21,-2: 0 - 21,-1: 0 - 22,-16: 0 - 22,-15: 0 - 22,-14: 0 - 22,-13: 0 - 22,-12: 0 - 22,-11: 0 - 22,-10: 0 - 22,-9: 0 - 22,-8: 0 - 22,-7: 0 - 22,-6: 0 - 22,-5: 0 - 22,-4: 0 - 22,-3: 0 - 22,-2: 0 - 22,-1: 0 - 23,-16: 0 - 23,-15: 0 - 23,-14: 0 - 23,-13: 0 - 23,-12: 0 - 23,-11: 0 - 23,-10: 0 - 23,-9: 0 - 23,-8: 0 - 23,-7: 0 - 23,-6: 0 - 23,-5: 0 - 23,-4: 0 - 23,-3: 0 - 23,-2: 0 - 23,-1: 0 - 24,-16: 0 - 24,-15: 1 - 24,-14: 0 - 24,-13: 0 - 24,-12: 0 - 24,-11: 0 - 24,-10: 0 - 24,-9: 0 - 24,-8: 0 - 24,-7: 0 - 24,-6: 0 - 24,-5: 0 - 24,-4: 0 - 24,-3: 0 - 24,-2: 0 - 24,-1: 0 - 25,-16: 0 - 25,-15: 0 - 25,-14: 0 - 25,-13: 0 - 25,-12: 0 - 25,-11: 0 - 25,-10: 0 - 25,-9: 0 - 25,-8: 0 - 25,-7: 0 - 25,-6: 0 - 25,-5: 0 - 25,-4: 0 - 25,-3: 0 - 25,-2: 0 - 25,-1: 0 - 26,-16: 0 - 26,-15: 0 - 26,-14: 0 - 26,-13: 0 - 26,-12: 0 - 26,-11: 0 - 26,-10: 0 - 26,-9: 0 - 26,-8: 0 - 26,-7: 0 - 26,-6: 0 - 26,-5: 0 - 26,-4: 0 - 26,-3: 0 - 26,-2: 0 - 26,-1: 0 - 27,-16: 0 - 27,-15: 0 - 27,-14: 0 - 27,-13: 0 - 27,-12: 0 - 27,-11: 0 - 27,-10: 0 - 27,-9: 0 - 27,-8: 0 - 27,-7: 0 - 27,-6: 0 - 27,-5: 0 - 27,-4: 0 - 27,-3: 0 - 27,-2: 0 - 27,-1: 0 - 28,-16: 0 - 28,-15: 0 - 28,-14: 0 - 28,-13: 0 - 28,-12: 0 - 28,-11: 0 - 28,-10: 0 - 28,-9: 0 - 28,-8: 0 - 28,-7: 0 - 28,-6: 0 - 28,-5: 0 - 28,-4: 0 - 28,-3: 0 - 28,-2: 0 - 28,-1: 0 - 29,-16: 0 - 29,-15: 0 - 29,-14: 0 - 29,-13: 0 - 29,-12: 0 - 29,-11: 0 - 29,-10: 0 - 29,-9: 0 - 29,-8: 0 - 29,-7: 0 - 29,-6: 0 - 29,-5: 0 - 29,-4: 0 - 29,-3: 0 - 29,-2: 0 - 29,-1: 0 - 30,-16: 0 - 30,-15: 0 - 30,-14: 0 - 30,-13: 0 - 30,-12: 0 - 30,-11: 0 - 30,-10: 0 - 30,-9: 0 - 30,-8: 0 - 30,-7: 0 - 30,-6: 0 - 30,-5: 0 - 30,-4: 0 - 30,-3: 0 - 30,-2: 0 - 30,-1: 0 - 0,-22: 0 - 0,-21: 0 - 0,-20: 0 - 0,-19: 0 - 0,-18: 0 - 0,-17: 0 - 1,-22: 0 - 1,-21: 0 - 1,-20: 0 - 1,-19: 0 - 1,-18: 0 - 1,-17: 0 - 2,-22: 0 - 2,-21: 0 - 2,-20: 0 - 2,-19: 0 - 2,-18: 0 - 2,-17: 0 - 3,-22: 0 - 3,-21: 0 - 3,-20: 0 - 3,-19: 0 - 3,-18: 0 - 3,-17: 0 - 4,-22: 0 - 4,-21: 0 - 4,-20: 0 - 4,-19: 0 - 4,-18: 0 - 4,-17: 0 - 5,-22: 0 - 5,-21: 0 - 5,-20: 0 - 5,-19: 0 - 5,-18: 0 - 5,-17: 0 - 6,-22: 0 - 6,-21: 0 - 6,-20: 0 - 6,-19: 0 - 6,-18: 1 - 6,-17: 0 - 7,-22: 0 - 7,-21: 0 - 7,-20: 0 - 7,-19: 0 - 7,-18: 1 - 7,-17: 0 - 8,-22: 0 - 8,-21: 0 - 8,-20: 0 - 8,-19: 0 - 8,-18: 0 - 8,-17: 0 - 9,-22: 0 - 9,-21: 0 - 9,-20: 0 - 9,-19: 0 - 9,-18: 0 - 9,-17: 0 - 10,-22: 0 - 10,-21: 0 - 10,-20: 0 - 10,-19: 0 - 10,-18: 0 - 10,-17: 0 - 11,-22: 0 - 11,-21: 0 - 11,-20: 0 - 11,-19: 0 - 11,-18: 0 - 11,-17: 0 - 12,-22: 0 - 12,-21: 0 - 12,-20: 0 - 12,-19: 0 - 12,-18: 0 - 12,-17: 0 - 13,-22: 0 - 13,-21: 0 - 13,-20: 0 - 13,-19: 0 - 13,-18: 0 - 13,-17: 0 - 14,-22: 0 - 14,-21: 0 - 14,-20: 0 - 14,-19: 0 - 14,-18: 0 - 14,-17: 0 - 15,-22: 0 - 15,-21: 0 - 15,-20: 0 - 15,-19: 0 - 15,-18: 0 - 15,-17: 0 - -5,-22: 0 - -5,-21: 0 - -5,-20: 0 - -5,-19: 0 - -5,-18: 0 - -5,-17: 0 - -4,-22: 0 - -4,-21: 0 - -4,-20: 0 - -4,-19: 0 - -4,-18: 0 - -4,-17: 0 - -3,-22: 0 - -3,-21: 0 - -3,-20: 0 - -3,-19: 0 - -3,-18: 0 - -3,-17: 0 - -2,-22: 0 - -2,-21: 0 - -2,-20: 0 - -2,-19: 0 - -2,-18: 0 - -2,-17: 0 - -1,-22: 0 - -1,-21: 0 - -1,-20: 0 - -1,-19: 0 - -1,-18: 0 - -1,-17: 0 - -5,16: 0 - -5,17: 0 - -5,18: 0 - -4,16: 0 - -4,17: 0 - -4,18: 0 - -3,16: 0 - -3,17: 0 - -3,18: 0 - -2,16: 0 - -2,17: 0 - -2,18: 0 - -1,16: 0 - -1,17: 0 - -1,18: 0 - 0,16: 0 - 0,17: 0 - 0,18: 0 - 1,16: 0 - 1,17: 0 - 1,18: 0 - 2,16: 0 - 2,17: 0 - 2,18: 0 - 3,16: 0 - 3,17: 0 - 3,18: 0 - 4,16: 0 - 4,17: 0 - 4,18: 0 - 5,16: 0 - 5,17: 0 - 5,18: 0 - 6,16: 0 - 6,17: 0 - 6,18: 0 - 7,16: 0 - 7,17: 0 - 7,18: 0 - 8,16: 0 - 8,17: 0 - 8,18: 0 - 9,16: 0 - 9,17: 0 - 9,18: 0 - 10,16: 0 - 10,17: 0 - 10,18: 0 - 11,16: 0 - 11,17: 0 - 11,18: 0 - 12,16: 0 - 12,17: 0 - 12,18: 0 - 13,16: 0 - 13,17: 0 - 13,18: 0 - 14,16: 0 - 14,17: 0 - 14,18: 0 - 15,16: 0 - 15,17: 0 - 15,18: 0 - 16,16: 0 - 16,17: 0 - 16,18: 0 - 17,16: 0 - 17,17: 0 - 17,18: 0 - 16,0: 0 - 16,1: 0 - 16,2: 0 - 16,3: 0 - 16,4: 0 - 16,5: 0 - 16,6: 0 - 16,7: 0 - 16,8: 0 - 16,9: 0 - 16,10: 0 - 16,11: 0 - 16,12: 0 - 16,13: 0 - 16,14: 0 - 16,15: 0 - 17,0: 0 - 17,1: 0 - 17,2: 0 - 17,3: 0 - 17,4: 0 - 17,5: 0 - 17,6: 0 - 17,7: 0 - 17,8: 0 - 17,9: 0 - 17,10: 0 - 17,11: 0 - 17,12: 0 - 17,13: 0 - 17,14: 0 - 17,15: 0 - 18,0: 0 - 18,1: 0 - 18,2: 0 - 19,0: 0 - 19,1: 0 - 19,2: 0 - 20,0: 0 - 20,1: 0 - 20,2: 0 - 21,0: 0 - 21,1: 0 - 21,2: 0 - 22,0: 0 - 22,1: 0 - 22,2: 0 - 23,0: 0 - 23,1: 0 - 23,2: 0 - 24,0: 0 - 24,1: 0 - 24,2: 0 - 25,0: 0 - 25,1: 0 - 25,2: 0 - 26,0: 0 - 26,1: 0 - 26,2: 0 - 27,0: 0 - 27,1: 0 - 27,2: 0 - 28,0: 0 - 28,1: 0 - 28,2: 0 - 29,0: 0 - 29,1: 0 - 29,2: 0 - 30,0: 0 - 30,1: 0 - 30,2: 0 - 16,-22: 0 - 16,-21: 0 - 16,-20: 0 - 16,-19: 0 - 16,-18: 0 - 16,-17: 0 - 17,-22: 0 - 17,-21: 0 - 17,-20: 0 - 17,-19: 0 - 17,-18: 0 - 17,-17: 0 - 18,-22: 0 - 18,-21: 0 - 18,-20: 0 - 18,-19: 0 - 18,-18: 0 - 18,-17: 0 - 19,-22: 0 - 19,-21: 0 - 19,-20: 0 - 19,-19: 0 - 19,-18: 0 - 19,-17: 0 - 20,-22: 0 - 20,-21: 0 - 20,-20: 0 - 20,-19: 0 - 20,-18: 0 - 20,-17: 0 - 21,-22: 0 - 21,-21: 0 - 21,-20: 0 - 21,-19: 0 - 21,-18: 0 - 21,-17: 0 - 22,-22: 0 - 22,-21: 0 - 22,-20: 0 - 22,-19: 0 - 22,-18: 0 - 22,-17: 0 - 23,-22: 0 - 23,-21: 0 - 23,-20: 0 - 23,-19: 0 - 23,-18: 0 - 23,-17: 0 - 24,-22: 0 - 24,-21: 0 - 24,-20: 0 - 24,-19: 0 - 24,-18: 0 - 24,-17: 0 - 25,-22: 0 - 25,-21: 0 - 25,-20: 0 - 25,-19: 0 - 25,-18: 0 - 25,-17: 0 - 26,-22: 0 - 26,-21: 0 - 26,-20: 0 - 26,-19: 0 - 26,-18: 0 - 26,-17: 0 - 27,-22: 0 - 27,-21: 0 - 27,-20: 0 - 27,-19: 0 - 27,-18: 0 - 27,-17: 0 - 28,-22: 0 - 28,-21: 0 - 28,-20: 0 - 28,-19: 0 - 28,-18: 0 - 28,-17: 0 - 29,-22: 0 - 29,-21: 0 - 29,-20: 0 - 29,-19: 0 - 29,-18: 0 - 29,-17: 0 - 30,-22: 0 - 30,-21: 0 - 30,-20: 0 - 30,-19: 0 - 30,-18: 0 - 30,-17: 0 - -6,-16: 0 - -6,-15: 0 - -6,-14: 0 - -6,-13: 0 - -6,-12: 0 - -6,-11: 0 - -6,-10: 0 - -6,-9: 0 - -6,-8: 0 - -6,-7: 0 - -6,-1: 0 - -6,0: 0 - -6,1: 0 - -6,2: 0 - -6,3: 0 - -6,4: 0 - -6,5: 0 - -6,6: 0 - -6,7: 0 - -6,8: 0 - -6,9: 0 - -6,10: 0 - -6,11: 0 - -6,12: 0 - -6,13: 0 - -6,14: 0 - -6,15: 0 - 31,-16: 0 - 31,-15: 0 - 31,-14: 0 - 31,-13: 0 - 31,-12: 0 - 31,-11: 0 - 31,-10: 0 - 31,-9: 0 - 31,-8: 0 - 31,-7: 0 - 31,-6: 0 - 31,-5: 0 - 31,-4: 0 - 31,-3: 0 - 31,-2: 0 - 31,-1: 0 - 0,-23: 0 - 1,-23: 0 - 2,-23: 0 - 3,-23: 0 - 4,-23: 0 - 5,-23: 0 - 6,-23: 0 - 7,-23: 0 - 8,-23: 0 - 9,-23: 0 - 10,-23: 0 - 11,-23: 0 - 12,-23: 0 - 13,-23: 0 - 14,-23: 0 - 15,-23: 0 - -6,-23: 0 - -6,-22: 0 - -6,-21: 0 - -6,-20: 0 - -6,-19: 0 - -6,-18: 0 - -6,-17: 0 - -5,-23: 0 - -4,-23: 0 - -3,-23: 0 - -2,-23: 0 - -1,-23: 0 - -6,16: 0 - -6,17: 0 - -6,18: 0 - -6,19: 0 - -5,19: 0 - -4,19: 0 - -3,19: 0 - -2,19: 0 - -1,19: 0 - 0,19: 0 - 1,19: 0 - 2,19: 0 - 3,19: 0 - 4,19: 0 - 5,19: 0 - 6,19: 0 - 7,19: 0 - 8,19: 0 - 9,19: 0 - 10,19: 0 - 11,19: 0 - 12,19: 0 - 13,19: 0 - 14,19: 0 - 15,19: 0 - 16,19: 0 - 17,19: 0 - 18,16: 0 - 18,17: 0 - 18,18: 0 - 18,19: 0 - 18,3: 0 - 18,4: 0 - 18,5: 0 - 18,6: 0 - 18,7: 0 - 18,8: 0 - 18,9: 0 - 18,10: 0 - 18,11: 0 - 18,12: 0 - 18,13: 0 - 18,14: 0 - 18,15: 0 - 19,3: 0 - 20,3: 0 - 21,3: 0 - 22,3: 0 - 23,3: 0 - 24,3: 0 - 25,3: 0 - 26,3: 0 - 27,3: 0 - 28,3: 0 - 29,3: 0 - 30,3: 0 - 31,0: 0 - 31,1: 0 - 31,2: 0 - 31,3: 0 - 16,-23: 0 - 17,-23: 0 - 18,-23: 0 - 19,-23: 0 - 20,-23: 0 - 21,-23: 0 - 22,-23: 0 - 23,-23: 0 - 24,-23: 0 - 25,-23: 0 - 26,-23: 0 - 27,-23: 0 - 28,-23: 0 - 29,-23: 0 - 30,-23: 0 - 31,-23: 0 - 31,-22: 0 - 31,-21: 0 - 31,-20: 0 - 31,-19: 0 - 31,-18: 0 - 31,-17: 0 - -6,-6: 0 - -6,-5: 0 - -6,-4: 0 - -6,-3: 0 - -6,-2: 0 - -16,-16: 0 - -16,-15: 0 - -16,-14: 0 - -16,-13: 0 - -16,-12: 0 - -16,-11: 0 - -16,-10: 0 - -15,-16: 0 - -15,-15: 0 - -15,-14: 0 - -15,-13: 0 - -15,-12: 0 - -15,-11: 0 - -15,-10: 0 - -14,-16: 0 - -14,-15: 0 - -14,-14: 0 - -14,-13: 0 - -14,-12: 0 - -14,-11: 0 - -14,-10: 0 - -13,-16: 0 - -13,-15: 0 - -13,-14: 0 - -13,-13: 0 - -13,-12: 0 - -13,-11: 0 - -13,-10: 0 - -12,-16: 0 - -12,-15: 0 - -12,-14: 0 - -12,-13: 0 - -12,-12: 0 - -12,-11: 0 - -12,-10: 0 - -11,-16: 0 - -11,-15: 0 - -11,-14: 0 - -11,-13: 0 - -11,-12: 0 - -11,-11: 0 - -11,-10: 0 - -11,-9: 0 - -11,-8: 0 - -11,-7: 0 - -11,-6: 0 - -11,-5: 0 - -11,-4: 0 - -11,-3: 0 - -11,-2: 0 - -11,-1: 0 - -10,-16: 0 - -10,-15: 0 - -10,-14: 0 - -10,-13: 0 - -10,-12: 0 - -10,-11: 0 - -10,-10: 0 - -10,-9: 0 - -10,-8: 0 - -10,-7: 0 - -10,-6: 0 - -10,-5: 0 - -10,-4: 0 - -10,-3: 0 - -10,-2: 0 - -10,-1: 0 - -9,-16: 0 - -9,-15: 0 - -9,-14: 0 - -9,-13: 0 - -9,-12: 0 - -9,-11: 0 - -9,-10: 0 - -9,-9: 0 - -9,-8: 0 - -9,-7: 0 - -9,-6: 0 - -9,-5: 0 - -9,-4: 0 - -9,-3: 0 - -9,-2: 0 - -9,-1: 0 - -8,-16: 0 - -8,-15: 0 - -8,-14: 0 - -8,-13: 0 - -8,-12: 0 - -8,-11: 0 - -8,-10: 0 - -8,-9: 0 - -8,-8: 0 - -8,-7: 0 - -8,-6: 0 - -8,-5: 0 - -8,-4: 0 - -8,-3: 0 - -8,-2: 0 - -8,-1: 0 - -7,-16: 0 - -7,-15: 0 - -7,-14: 0 - -7,-13: 0 - -7,-12: 0 - -7,-11: 0 - -7,-10: 0 - -7,-9: 0 - -7,-8: 0 - -7,-7: 0 - -7,-6: 0 - -7,-5: 0 - -7,-4: 0 - -7,-3: 0 - -7,-2: 0 - -7,-1: 0 - -16,1: 0 - -16,2: 0 - -16,3: 0 - -16,4: 0 - -16,5: 0 - -16,6: 0 - -16,7: 0 - -16,8: 0 - -16,9: 0 - -16,10: 0 - -16,11: 0 - -16,12: 0 - -16,13: 0 - -16,14: 0 - -16,15: 0 - -15,1: 0 - -15,2: 0 - -15,3: 0 - -15,4: 0 - -15,5: 0 - -15,6: 0 - -15,7: 0 - -15,8: 0 - -15,9: 0 - -15,10: 0 - -15,11: 0 - -15,12: 0 - -15,13: 0 - -15,14: 0 - -15,15: 0 - -14,1: 0 - -14,2: 0 - -14,3: 0 - -14,4: 0 - -14,5: 0 - -14,6: 0 - -14,7: 0 - -14,8: 0 - -14,9: 0 - -14,10: 0 - -14,11: 0 - -14,12: 0 - -14,13: 0 - -14,14: 0 - -14,15: 0 - -13,1: 0 - -13,2: 0 - -13,3: 0 - -13,4: 0 - -13,5: 0 - -13,6: 0 - -13,7: 0 - -13,8: 0 - -13,9: 0 - -13,10: 0 - -13,11: 0 - -13,12: 0 - -13,13: 0 - -13,14: 0 - -13,15: 0 - -12,1: 0 - -12,2: 0 - -12,3: 0 - -12,4: 0 - -12,5: 0 - -12,6: 0 - -12,7: 0 - -12,8: 0 - -12,9: 0 - -12,10: 0 - -12,11: 0 - -12,12: 0 - -12,13: 0 - -12,14: 0 - -12,15: 0 - -11,0: 0 - -11,1: 0 - -11,2: 0 - -11,3: 0 - -11,4: 0 - -11,5: 0 - -11,6: 0 - -11,7: 0 - -11,8: 0 - -11,9: 0 - -11,10: 0 - -11,11: 0 - -11,12: 0 - -11,13: 0 - -11,14: 0 - -11,15: 0 - -10,0: 0 - -10,1: 0 - -10,2: 0 - -10,3: 0 - -10,4: 0 - -10,5: 0 - -10,6: 0 - -10,7: 0 - -10,8: 0 - -10,9: 0 - -10,10: 0 - -10,11: 0 - -10,12: 0 - -10,13: 0 - -10,14: 0 - -10,15: 0 - -9,0: 0 - -9,1: 0 - -9,2: 0 - -9,3: 0 - -9,4: 0 - -9,5: 0 - -9,6: 0 - -9,7: 0 - -9,8: 0 - -9,9: 0 - -9,10: 0 - -9,11: 0 - -9,12: 0 - -9,13: 0 - -9,14: 0 - -9,15: 0 - -8,0: 0 - -8,1: 0 - -8,2: 0 - -8,3: 0 - -8,4: 0 - -8,5: 0 - -8,6: 0 - -8,7: 0 - -8,8: 0 - -8,9: 0 - -8,10: 0 - -8,11: 0 - -8,12: 0 - -8,13: 0 - -8,14: 0 - -8,15: 0 - -7,0: 0 - -7,1: 0 - -7,2: 0 - -7,3: 0 - -7,4: 0 - -7,5: 0 - -7,6: 0 - -7,7: 0 - -7,8: 0 - -7,9: 0 - -7,10: 0 - -7,11: 0 - -7,12: 0 - -7,13: 0 - -7,14: 0 - -7,15: 0 - 0,-25: 0 - 0,-24: 0 - 1,-25: 0 - 1,-24: 0 - 2,-24: 0 - 5,-25: 0 - 5,-24: 0 - 6,-25: 0 - 6,-24: 0 - 7,-25: 0 - 7,-24: 0 - 8,-25: 0 - 8,-24: 0 - 9,-24: 0 - 10,-24: 0 - 11,-24: 0 - 12,-24: 0 - 15,-25: 0 - 15,-24: 0 - -16,-25: 0 - -16,-24: 0 - -16,-23: 0 - -16,-22: 0 - -16,-21: 0 - -16,-20: 0 - -16,-19: 0 - -16,-18: 0 - -16,-17: 0 - -15,-25: 0 - -15,-24: 0 - -15,-23: 0 - -15,-22: 0 - -15,-21: 0 - -15,-20: 0 - -15,-19: 0 - -15,-18: 0 - -15,-17: 0 - -14,-25: 0 - -14,-24: 0 - -14,-23: 0 - -14,-22: 0 - -14,-21: 0 - -14,-20: 0 - -14,-19: 0 - -14,-18: 0 - -14,-17: 0 - -13,-25: 0 - -13,-24: 0 - -13,-23: 0 - -13,-22: 0 - -13,-21: 0 - -13,-20: 0 - -13,-19: 0 - -13,-18: 0 - -13,-17: 0 - -12,-25: 0 - -12,-24: 0 - -12,-23: 0 - -12,-22: 0 - -12,-21: 0 - -12,-20: 0 - -12,-19: 0 - -12,-18: 0 - -12,-17: 0 - -11,-25: 0 - -11,-24: 0 - -11,-23: 0 - -11,-22: 0 - -11,-21: 0 - -11,-20: 0 - -11,-19: 0 - -11,-18: 0 - -11,-17: 0 - -10,-25: 0 - -10,-24: 0 - -10,-23: 0 - -10,-22: 0 - -10,-21: 0 - -10,-20: 0 - -10,-19: 0 - -10,-18: 0 - -10,-17: 0 - -9,-25: 0 - -9,-24: 0 - -9,-23: 0 - -9,-22: 0 - -9,-21: 0 - -9,-20: 0 - -9,-19: 0 - -9,-18: 0 - -9,-17: 0 - -8,-24: 0 - -8,-23: 0 - -8,-22: 0 - -8,-21: 0 - -8,-20: 0 - -8,-19: 0 - -8,-18: 0 - -8,-17: 0 - -7,-24: 0 - -7,-23: 0 - -7,-22: 0 - -7,-21: 0 - -7,-20: 0 - -7,-19: 0 - -7,-18: 0 - -7,-17: 0 - -6,-24: 0 - -5,-24: 0 - -4,-24: 0 - -3,-25: 0 - -3,-24: 0 - -2,-25: 0 - -2,-24: 0 - -1,-25: 0 - -1,-24: 0 - -16,16: 0 - -16,17: 0 - -16,18: 0 - -16,19: 0 - -16,20: 0 - -16,21: 0 - -16,22: 0 - -16,23: 0 - -15,16: 0 - -15,17: 0 - -15,18: 0 - -15,19: 0 - -15,20: 0 - -15,21: 0 - -15,22: 0 - -15,23: 0 - -14,16: 0 - -14,17: 0 - -14,18: 0 - -14,19: 0 - -14,20: 0 - -14,21: 0 - -14,22: 0 - -14,23: 0 - -13,16: 0 - -13,17: 0 - -13,18: 0 - -13,19: 0 - -13,20: 0 - -13,21: 0 - -13,22: 0 - -13,23: 0 - -12,16: 0 - -12,17: 0 - -12,18: 0 - -12,19: 0 - -12,20: 0 - -12,21: 0 - -12,22: 0 - -12,23: 0 - -11,16: 0 - -11,17: 0 - -11,18: 0 - -11,19: 0 - -11,20: 0 - -11,21: 0 - -11,22: 0 - -11,23: 0 - -10,16: 0 - -10,17: 0 - -10,18: 0 - -10,19: 0 - -10,20: 0 - -10,21: 0 - -10,22: 0 - -10,23: 0 - -9,16: 0 - -9,17: 0 - -9,18: 0 - -9,19: 0 - -9,20: 0 - -9,21: 0 - -9,22: 0 - -9,23: 0 - -8,16: 0 - -8,17: 0 - -8,18: 0 - -8,19: 0 - -8,20: 0 - -8,21: 0 - -8,22: 0 - -8,23: 0 - -8,24: 0 - -7,16: 0 - -7,17: 0 - -7,18: 0 - -7,19: 0 - -7,20: 0 - -7,21: 0 - -7,22: 0 - -7,23: 0 - -7,24: 0 - -6,20: 0 - -6,21: 0 - -6,22: 0 - -6,23: 0 - -6,24: 0 - -5,20: 0 - -5,21: 0 - -5,22: 0 - -5,23: 0 - -5,24: 0 - -4,20: 0 - -4,21: 0 - -4,22: 0 - -4,23: 0 - -4,24: 0 - -3,20: 0 - -3,21: 0 - -3,22: 0 - -3,23: 0 - -3,24: 0 - -2,20: 0 - -2,21: 0 - -2,22: 0 - -2,23: 0 - -1,20: 0 - -1,21: 0 - -1,22: 0 - -1,23: 0 - 0,20: 0 - 0,21: 0 - 0,22: 0 - 0,23: 0 - 1,20: 0 - 1,21: 0 - 1,22: 0 - 2,20: 0 - 2,21: 0 - 2,22: 0 - 3,20: 0 - 3,21: 0 - 3,22: 0 - 4,20: 0 - 4,21: 0 - 4,22: 0 - 5,20: 0 - 5,21: 0 - 5,22: 0 - 6,20: 0 - 6,21: 0 - 6,22: 0 - 7,20: 0 - 7,21: 0 - 7,22: 0 - 8,20: 0 - 8,21: 0 - 8,22: 0 - 8,23: 0 - 9,20: 0 - 9,21: 0 - 9,22: 0 - 9,23: 0 - 10,20: 0 - 10,21: 0 - 10,22: 0 - 10,23: 0 - 11,20: 0 - 11,21: 0 - 11,22: 0 - 11,23: 0 - 12,20: 0 - 12,21: 0 - 12,22: 0 - 12,23: 0 - 13,20: 0 - 13,21: 0 - 13,22: 0 - 13,23: 0 - 14,20: 0 - 14,21: 0 - 14,22: 0 - 14,23: 0 - 15,20: 0 - 15,21: 0 - 15,22: 0 - 15,23: 0 - 16,20: 0 - 16,21: 0 - 16,22: 0 - 16,23: 0 - 17,20: 0 - 17,21: 0 - 17,22: 0 - 17,23: 0 - 18,20: 0 - 18,21: 0 - 18,22: 0 - 18,23: 0 - 19,16: 0 - 19,17: 0 - 19,18: 0 - 19,19: 0 - 19,20: 0 - 19,21: 0 - 19,22: 0 - 19,23: 0 - 20,16: 0 - 20,17: 0 - 20,18: 0 - 20,19: 0 - 20,20: 0 - 20,21: 0 - 20,22: 0 - 20,23: 0 - 21,16: 0 - 21,17: 0 - 21,18: 0 - 21,19: 0 - 21,20: 0 - 21,21: 0 - 21,22: 0 - 21,23: 0 - 22,16: 0 - 22,17: 0 - 22,18: 0 - 22,19: 0 - 22,20: 0 - 22,21: 0 - 22,22: 0 - 22,23: 0 - 23,16: 0 - 23,17: 0 - 23,18: 0 - 23,19: 0 - 23,20: 0 - 23,21: 0 - 24,16: 0 - 24,17: 0 - 24,18: 0 - 24,19: 0 - 25,16: 0 - 25,17: 0 - 25,18: 0 - 19,4: 0 - 19,5: 0 - 19,6: 0 - 19,7: 0 - 19,8: 0 - 19,9: 0 - 19,10: 0 - 19,11: 0 - 19,12: 0 - 19,13: 0 - 19,14: 0 - 19,15: 0 - 20,4: 0 - 20,5: 0 - 20,6: 0 - 20,7: 0 - 20,8: 0 - 20,9: 0 - 20,10: 0 - 20,11: 0 - 20,12: 0 - 20,13: 0 - 20,14: 0 - 20,15: 0 - 21,4: 0 - 21,5: 0 - 21,6: 0 - 21,7: 0 - 21,8: 0 - 21,9: 0 - 21,10: 0 - 21,11: 0 - 21,12: 0 - 21,13: 0 - 21,14: 0 - 21,15: 0 - 22,4: 0 - 22,5: 0 - 22,6: 0 - 22,7: 0 - 22,8: 0 - 22,9: 0 - 22,10: 0 - 22,11: 0 - 22,12: 0 - 22,13: 0 - 22,14: 0 - 22,15: 0 - 23,4: 0 - 23,5: 0 - 23,6: 0 - 23,7: 0 - 23,8: 0 - 23,9: 0 - 23,10: 0 - 23,11: 0 - 23,12: 0 - 23,13: 0 - 23,14: 0 - 23,15: 0 - 24,4: 0 - 24,5: 0 - 24,6: 0 - 24,7: 0 - 24,8: 0 - 24,9: 0 - 24,10: 0 - 24,11: 0 - 24,12: 0 - 24,13: 0 - 24,14: 0 - 24,15: 0 - 25,4: 0 - 25,5: 0 - 25,6: 0 - 25,7: 0 - 25,8: 0 - 25,9: 0 - 25,10: 0 - 25,11: 0 - 25,12: 0 - 25,13: 0 - 25,14: 0 - 25,15: 0 - 26,4: 0 - 26,5: 0 - 26,6: 0 - 26,7: 0 - 26,8: 0 - 26,9: 0 - 26,10: 0 - 26,11: 0 - 27,4: 0 - 27,5: 0 - 27,6: 0 - 27,7: 0 - 27,8: 0 - 27,9: 0 - 28,4: 0 - 28,5: 0 - 28,6: 0 - 28,7: 0 - 28,8: 0 - 28,9: 0 - 29,4: 0 - 29,5: 0 - 29,6: 0 - 29,7: 0 - 29,8: 0 - 29,9: 0 - 30,4: 0 - 30,5: 0 - 30,6: 0 - 31,4: 0 - 31,5: 0 - 31,6: 0 - 16,-25: 0 - 16,-24: 0 - 17,-25: 0 - 17,-24: 0 - 18,-25: 0 - 18,-24: 0 - 19,-25: 0 - 19,-24: 0 - 20,-25: 0 - 20,-24: 0 - 21,-25: 0 - 21,-24: 0 - 22,-25: 0 - 22,-24: 0 - 23,-25: 0 - 23,-24: 0 - 24,-25: 0 - 24,-24: 0 - 25,-25: 0 - 25,-24: 0 - 26,-25: 0 - 26,-24: 0 - 27,-25: 0 - 27,-24: 0 - 28,-25: 0 - 28,-24: 0 - 29,-25: 0 - 29,-24: 0 - 30,-25: 0 - 30,-24: 0 - 31,-24: 0 - -30,-16: 0 - -29,-16: 0 - -28,-16: 0 - -27,-16: 0 - -26,-16: 0 - -25,-16: 0 - -24,-16: 0 - -23,-16: 0 - -23,-15: 0 - -22,-16: 0 - -22,-15: 0 - -21,-16: 0 - -21,-15: 0 - -20,-16: 0 - -20,-15: 0 - -20,-14: 0 - -20,-13: 0 - -20,-12: 0 - -20,-11: 0 - -20,-10: 0 - -19,-16: 0 - -19,-15: 0 - -19,-14: 0 - -19,-13: 0 - -19,-12: 0 - -19,-11: 0 - -19,-10: 0 - -18,-16: 0 - -18,-15: 0 - -18,-14: 0 - -18,-13: 0 - -18,-12: 0 - -18,-11: 0 - -18,-10: 0 - -17,-16: 0 - -17,-15: 0 - -17,-14: 0 - -17,-13: 0 - -17,-12: 0 - -17,-11: 0 - -17,-10: 0 - -24,13: 0 - -24,14: 0 - -24,15: 0 - -23,12: 0 - -23,13: 0 - -23,14: 0 - -23,15: 0 - -22,8: 0 - -22,9: 0 - -22,10: 0 - -22,11: 0 - -22,12: 0 - -22,13: 0 - -22,14: 0 - -22,15: 0 - -21,8: 0 - -21,9: 0 - -21,10: 0 - -21,11: 0 - -21,12: 0 - -21,13: 0 - -21,14: 0 - -21,15: 0 - -20,1: 0 - -20,2: 0 - -20,3: 0 - -20,4: 0 - -20,5: 0 - -20,6: 0 - -20,7: 0 - -20,8: 0 - -20,9: 0 - -20,10: 0 - -20,11: 0 - -20,12: 0 - -20,13: 0 - -20,14: 0 - -20,15: 0 - -19,1: 0 - -19,2: 0 - -19,3: 0 - -19,4: 0 - -19,5: 0 - -19,6: 0 - -19,7: 0 - -19,8: 0 - -19,9: 0 - -19,10: 0 - -19,11: 0 - -19,12: 0 - -19,13: 0 - -19,14: 0 - -19,15: 0 - -18,1: 0 - -18,2: 0 - -18,3: 0 - -18,4: 0 - -18,5: 0 - -18,6: 0 - -18,7: 0 - -18,8: 0 - -18,9: 0 - -18,10: 0 - -18,11: 0 - -18,12: 0 - -18,13: 0 - -18,14: 0 - -18,15: 0 - -17,1: 0 - -17,2: 0 - -17,3: 0 - -17,4: 0 - -17,5: 0 - -17,6: 0 - -17,7: 0 - -17,8: 0 - -17,9: 0 - -17,10: 0 - -17,11: 0 - -17,12: 0 - -17,13: 0 - -17,14: 0 - -17,15: 0 - -26,29: 0 - -26,30: 0 - -26,31: 0 - -25,21: 0 - -25,22: 0 - -25,23: 0 - -25,24: 0 - -25,25: 0 - -25,26: 0 - -25,27: 0 - -25,28: 0 - -25,29: 0 - -25,30: 0 - -25,31: 0 - -24,16: 0 - -24,17: 0 - -24,20: 0 - -24,21: 0 - -24,22: 0 - -24,23: 0 - -24,24: 0 - -24,25: 0 - -24,26: 0 - -24,27: 0 - -24,28: 0 - -24,29: 0 - -24,30: 0 - -24,31: 0 - -23,16: 0 - -23,17: 0 - -23,18: 0 - -23,19: 0 - -23,20: 0 - -23,21: 0 - -23,22: 0 - -23,23: 0 - -23,24: 0 - -23,25: 0 - -23,26: 0 - -23,27: 0 - -23,28: 0 - -23,29: 0 - -23,30: 0 - -23,31: 0 - -22,16: 0 - -22,17: 0 - -22,18: 0 - -22,19: 0 - -22,20: 0 - -22,21: 0 - -22,22: 0 - -22,23: 0 - -22,24: 0 - -22,25: 0 - -22,26: 0 - -22,27: 0 - -22,28: 0 - -22,29: 0 - -22,30: 0 - -21,16: 0 - -21,17: 0 - -21,18: 0 - -21,19: 0 - -21,20: 0 - -21,21: 0 - -21,22: 0 - -21,23: 0 - -20,16: 0 - -20,17: 0 - -20,18: 0 - -20,19: 0 - -20,20: 0 - -20,21: 0 - -20,22: 0 - -20,23: 0 - -19,16: 0 - -19,17: 0 - -19,18: 0 - -19,19: 0 - -19,20: 0 - -19,21: 0 - -19,22: 0 - -19,23: 0 - -18,16: 0 - -18,17: 0 - -18,18: 0 - -18,19: 0 - -18,20: 0 - -18,21: 0 - -18,22: 0 - -18,23: 0 - -17,16: 0 - -17,17: 0 - -17,18: 0 - -17,19: 0 - -17,20: 0 - -17,21: 0 - -17,22: 0 - -17,23: 0 - -32,-22: 0 - -32,-21: 0 - -32,-20: 0 - -32,-19: 0 - -32,-18: 0 - -32,-17: 0 - -31,-22: 0 - -31,-21: 0 - -31,-20: 0 - -31,-19: 0 - -31,-18: 0 - -30,-22: 0 - -30,-21: 0 - -30,-20: 0 - -30,-19: 0 - -30,-18: 0 - -30,-17: 0 - -29,-20: 0 - -29,-19: 0 - -29,-18: 0 - -29,-17: 0 - -28,-20: 0 - -28,-19: 0 - -28,-18: 0 - -28,-17: 0 - -27,-21: 0 - -27,-20: 0 - -27,-19: 0 - -27,-18: 0 - -27,-17: 0 - -26,-22: 0 - -26,-21: 0 - -26,-20: 0 - -26,-19: 0 - -26,-18: 0 - -26,-17: 0 - -25,-22: 0 - -25,-21: 0 - -25,-20: 0 - -25,-19: 0 - -25,-18: 0 - -25,-17: 0 - -24,-22: 0 - -24,-21: 0 - -24,-20: 0 - -24,-19: 0 - -24,-18: 0 - -24,-17: 0 - -23,-22: 0 - -23,-21: 0 - -23,-20: 0 - -23,-19: 0 - -23,-18: 0 - -23,-17: 0 - -22,-25: 0 - -22,-24: 0 - -22,-23: 0 - -22,-22: 0 - -22,-21: 0 - -22,-20: 0 - -22,-19: 0 - -22,-18: 0 - -22,-17: 0 - -21,-25: 0 - -21,-24: 0 - -21,-23: 0 - -21,-22: 0 - -21,-21: 0 - -21,-20: 0 - -21,-19: 0 - -21,-18: 0 - -21,-17: 0 - -20,-25: 0 - -20,-24: 0 - -20,-23: 0 - -20,-22: 0 - -20,-21: 0 - -20,-20: 0 - -20,-19: 0 - -20,-18: 0 - -20,-17: 0 - -19,-25: 0 - -19,-24: 0 - -19,-23: 0 - -19,-22: 0 - -19,-21: 0 - -19,-20: 0 - -19,-19: 0 - -19,-18: 0 - -19,-17: 0 - -18,-25: 0 - -18,-24: 0 - -18,-23: 0 - -18,-22: 0 - -18,-21: 0 - -18,-20: 0 - -18,-19: 0 - -18,-18: 0 - -18,-17: 0 - -17,-25: 0 - -17,-24: 0 - -17,-23: 0 - -17,-22: 0 - -17,-21: 0 - -17,-20: 0 - -17,-19: 0 - -17,-18: 0 - -17,-17: 0 - 32,0: 0 - 32,1: 0 - 32,-16: 0 - 32,-15: 0 - 32,-14: 0 - 32,-13: 0 - 32,-4: 0 - 32,-3: 0 - 32,-2: 0 - 32,-1: 0 - 33,-16: 0 - 33,-15: 0 - 33,-14: 0 - 33,-13: 0 - 32,-23: 0 - 32,-22: 0 - 32,-21: 0 - 32,-20: 0 - 32,-19: 0 - 32,-18: 0 - 32,-17: 0 - 33,-22: 0 - 33,-21: 0 - 33,-20: 0 - 33,-19: 0 - 33,-18: 0 - 33,-17: 0 - -26,32: 0 - -25,32: 0 - -24,32: 0 - -23,32: 0 - -48,-22: 0 - -48,-21: 0 - -48,-20: 0 - -48,-19: 0 - -48,-18: 0 - -48,-17: 0 - -47,-22: 0 - -47,-21: 0 - -47,-20: 0 - -47,-19: 0 - -47,-18: 0 - -47,-17: 0 - -46,-22: 0 - -46,-21: 0 - -46,-20: 0 - -46,-19: 0 - -46,-18: 0 - -46,-17: 0 - -45,-22: 0 - -45,-21: 0 - -45,-20: 0 - -45,-19: 0 - -45,-18: 0 - -45,-17: 0 - -44,-22: 0 - -44,-21: 0 - -44,-20: 0 - -44,-19: 0 - -44,-18: 0 - -44,-17: 0 - -43,-22: 0 - -43,-21: 0 - -43,-20: 0 - -43,-19: 0 - -43,-18: 0 - -43,-17: 0 - -42,-22: 0 - -42,-21: 0 - -42,-20: 0 - -42,-19: 0 - -42,-18: 0 - -42,-17: 0 - -41,-22: 0 - -41,-21: 0 - -41,-20: 0 - -41,-19: 0 - -41,-18: 0 - -41,-17: 0 - -40,-22: 0 - -40,-21: 0 - -40,-20: 0 - -40,-19: 0 - -40,-18: 0 - -40,-17: 0 - -39,-22: 0 - -39,-21: 0 - -39,-20: 0 - -39,-19: 0 - -39,-18: 0 - -39,-17: 0 - -38,-22: 0 - -38,-21: 0 - -38,-20: 0 - -38,-19: 0 - -38,-18: 0 - -38,-17: 0 - -37,-22: 0 - -37,-21: 0 - -37,-20: 0 - -37,-19: 0 - -37,-18: 0 - -37,-17: 0 - -36,-22: 0 - -36,-21: 0 - -36,-20: 0 - -36,-19: 0 - -36,-18: 0 - -36,-17: 0 - -35,-22: 0 - -35,-21: 0 - -35,-20: 0 - -35,-19: 0 - -35,-18: 0 - -35,-17: 0 - -34,-22: 0 - -34,-21: 0 - -34,-20: 0 - -34,-19: 0 - -34,-18: 0 - -34,-17: 0 - -33,-22: 0 - -33,-21: 0 - -33,-20: 0 - -33,-19: 0 - -33,-18: 0 - -33,-17: 0 - -59,-14: 0 - -59,-13: 0 - -59,-12: 0 - -59,-11: 0 - -59,-10: 0 - -59,-9: 0 - -59,-8: 0 - -59,-7: 0 - -59,-6: 0 - -59,-5: 0 - -59,-4: 0 - -59,-3: 0 - -59,-2: 0 - -59,-1: 0 - -58,-16: 0 - -58,-14: 0 - -58,-13: 0 - -58,-12: 0 - -58,-11: 0 - -58,-10: 0 - -58,-9: 0 - -58,-8: 0 - -58,-7: 0 - -58,-6: 0 - -58,-5: 0 - -58,-4: 0 - -58,-3: 0 - -58,-2: 0 - -58,-1: 0 - -57,-16: 0 - -57,-15: 0 - -57,-14: 0 - -57,-13: 0 - -57,-12: 0 - -57,-11: 0 - -57,-10: 0 - -57,-9: 0 - -57,-8: 0 - -57,-7: 0 - -57,-6: 0 - -57,-5: 0 - -57,-4: 0 - -57,-3: 0 - -57,-2: 0 - -57,-1: 0 - -56,-16: 0 - -56,-15: 0 - -56,-14: 0 - -56,-13: 0 - -56,-12: 0 - -56,-11: 0 - -56,-10: 0 - -56,-9: 0 - -56,-8: 0 - -56,-7: 0 - -56,-6: 0 - -56,-5: 0 - -56,-4: 0 - -56,-3: 0 - -56,-2: 0 - -56,-1: 0 - -55,-16: 0 - -55,-15: 0 - -55,-14: 0 - -55,-13: 0 - -55,-12: 0 - -55,-11: 0 - -55,-10: 0 - -55,-9: 0 - -55,-8: 0 - -55,-7: 0 - -55,-6: 0 - -55,-5: 0 - -55,-4: 0 - -55,-3: 0 - -55,-2: 0 - -55,-1: 0 - -54,-16: 0 - -54,-15: 0 - -54,-14: 0 - -54,-13: 0 - -54,-12: 0 - -54,-9: 0 - -54,-8: 0 - -54,-7: 0 - -54,-6: 0 - -54,-5: 0 - -54,-4: 0 - -54,-3: 0 - -53,-16: 0 - -53,-15: 0 - -53,-14: 0 - -53,-13: 0 - -52,-16: 0 - -52,-15: 0 - -52,-14: 0 - -52,-13: 0 - -51,-16: 0 - -51,-15: 0 - -50,-16: 0 - -50,-15: 0 - -49,-16: 0 - -49,-15: 0 - -48,-16: 0 - -48,-15: 0 - -47,-16: 0 - -47,-15: 0 - -46,-16: 0 - -46,-15: 0 - -45,-16: 0 - -45,-15: 0 - -44,-16: 0 - -44,-15: 0 - -43,-16: 0 - -43,-15: 0 - -42,-16: 0 - -42,-15: 0 - -41,-16: 0 - -41,-15: 0 - -40,-16: 0 - -40,-15: 0 - -39,-16: 0 - -39,-15: 0 - -38,-16: 0 - -38,-15: 0 - -37,-16: 0 - -37,-15: 0 - -36,-16: 0 - -36,-15: 0 - -35,-16: 0 - -35,-15: 0 - -34,-16: 0 - -34,-15: 0 - -58,-18: 0 - -58,-17: 0 - -57,-18: 0 - -57,-17: 0 - -56,-19: 0 - -56,-18: 0 - -56,-17: 0 - -55,-22: 0 - -55,-21: 0 - -55,-20: 0 - -55,-19: 0 - -55,-18: 0 - -55,-17: 0 - -54,-22: 0 - -54,-21: 0 - -54,-20: 0 - -54,-19: 0 - -54,-18: 0 - -54,-17: 0 - -53,-22: 0 - -53,-21: 0 - -53,-20: 0 - -53,-19: 0 - -53,-18: 0 - -53,-17: 0 - -52,-22: 0 - -52,-21: 0 - -52,-20: 0 - -52,-19: 0 - -52,-18: 0 - -52,-17: 0 - -51,-22: 0 - -51,-21: 0 - -51,-20: 0 - -51,-19: 0 - -51,-18: 0 - -51,-17: 0 - -50,-22: 0 - -50,-21: 0 - -50,-20: 0 - -50,-19: 0 - -50,-18: 0 - -50,-17: 0 - -49,-22: 0 - -49,-21: 0 - -49,-20: 0 - -49,-19: 0 - -49,-18: 0 - -49,-17: 0 - -59,0: 0 - -59,1: 0 - -59,2: 0 - -59,3: 0 - -59,4: 0 - -59,5: 0 - -59,6: 0 - -59,7: 0 - -59,8: 0 - -59,9: 0 - -59,10: 0 - -59,11: 0 - -59,12: 0 - -59,13: 0 - -59,14: 0 - -59,15: 0 - -58,0: 0 - -58,1: 0 - -58,2: 0 - -58,3: 0 - -58,4: 0 - -58,5: 0 - -58,6: 0 - -58,7: 0 - -58,8: 0 - -58,9: 0 - -58,10: 0 - -58,11: 0 - -58,12: 0 - -58,13: 0 - -58,14: 0 - -58,15: 0 - -57,0: 0 - -57,1: 0 - -57,2: 0 - -57,3: 0 - -57,4: 0 - -57,5: 0 - -57,6: 0 - -57,7: 0 - -57,8: 0 - -57,9: 0 - -57,10: 0 - -57,11: 0 - -57,12: 0 - -57,13: 0 - -57,14: 0 - -57,15: 0 - -56,0: 0 - -56,1: 0 - -56,2: 0 - -56,3: 0 - -56,4: 0 - -56,5: 0 - -56,6: 0 - -56,7: 0 - -56,8: 0 - -56,9: 0 - -56,10: 0 - -56,11: 0 - -56,12: 0 - -56,13: 0 - -56,14: 0 - -56,15: 0 - -55,0: 0 - -55,1: 0 - -55,2: 0 - -55,3: 0 - -55,4: 0 - -55,6: 0 - -55,7: 0 - -55,8: 0 - -55,9: 0 - -55,10: 0 - -55,11: 0 - -55,12: 0 - -55,13: 0 - -55,14: 0 - -55,15: 0 - -54,1: 0 - -54,15: 0 - -59,16: 0 - -59,17: 0 - -59,18: 0 - -59,19: 0 - -58,16: 0 - -58,17: 0 - -58,18: 0 - -58,19: 0 - -58,20: 0 - -58,21: 0 - -57,16: 0 - -57,17: 0 - -57,18: 0 - -57,19: 0 - -57,20: 0 - -57,21: 0 - -57,22: 0 - -57,23: 0 - -57,24: 0 - -57,25: 0 - -57,26: 0 - -57,27: 0 - -56,16: 0 - -56,17: 0 - -56,18: 0 - -56,19: 0 - -56,20: 0 - -56,21: 0 - -56,22: 0 - -56,23: 0 - -56,24: 0 - -56,25: 0 - -56,26: 0 - -56,27: 0 - -55,16: 0 - -55,17: 0 - -55,18: 0 - -55,19: 0 - -55,20: 0 - -55,21: 0 - -55,22: 0 - -55,23: 0 - -55,24: 0 - -55,25: 0 - -55,26: 0 - -55,27: 0 - -54,16: 0 - -54,17: 0 - -54,18: 0 - -54,19: 0 - -54,20: 0 - -54,21: 0 - -54,22: 0 - -54,23: 0 - -54,24: 0 - -54,25: 0 - -54,26: 0 - -53,16: 0 - -53,17: 0 - -53,18: 0 - -53,19: 0 - -53,20: 0 - -53,21: 0 - -53,22: 0 - -53,23: 0 - -53,24: 0 - -53,25: 0 - -53,26: 0 - 0,-28: 0 - 0,-27: 0 - 0,-26: 0 - 1,-28: 0 - 1,-27: 0 - 1,-26: 0 - 2,-28: 0 - 2,-27: 0 - 2,-26: 0 - 2,-25: 0 - 3,-28: 0 - 3,-27: 0 - 3,-26: 0 - 3,-25: 0 - 3,-24: 0 - 4,-28: 0 - 4,-25: 0 - 4,-24: 0 - 13,-24: 0 - 14,-24: 0 - -16,-28: 0 - -16,-27: 0 - -16,-26: 0 - -15,-28: 0 - -15,-27: 0 - -15,-26: 0 - -14,-28: 0 - -14,-27: 0 - -14,-26: 0 - -13,-28: 0 - -13,-27: 0 - -13,-26: 0 - -12,-28: 0 - -12,-27: 0 - -12,-26: 0 - -11,-28: 0 - -11,-27: 0 - -11,-26: 0 - -10,-28: 0 - -10,-27: 0 - -10,-26: 0 - -9,-28: 0 - -9,-27: 0 - -9,-26: 0 - -8,-28: 0 - -8,-27: 0 - -8,-26: 0 - -8,-25: 0 - -7,-28: 0 - -7,-27: 0 - -7,-26: 0 - -7,-25: 0 - -6,-28: 0 - -6,-27: 0 - -6,-26: 0 - -6,-25: 0 - -5,-28: 0 - -5,-27: 0 - -5,-26: 0 - -5,-25: 0 - -4,-28: 0 - -4,-27: 0 - -4,-26: 0 - -4,-25: 0 - -3,-28: 0 - -3,-27: 0 - -3,-26: 0 - -2,-28: 0 - -2,-27: 0 - -2,-26: 0 - -1,-28: 0 - -1,-27: 0 - -1,-26: 0 - -16,24: 0 - -16,25: 0 - -16,26: 0 - -16,27: 0 - -16,28: 0 - -16,29: 0 - -16,30: 0 - -15,24: 0 - -15,25: 0 - -15,26: 0 - -15,27: 0 - -15,28: 0 - -15,29: 0 - -15,30: 0 - -14,24: 0 - -14,25: 0 - -14,26: 0 - -14,27: 0 - -14,28: 0 - -14,29: 0 - -14,30: 0 - -13,24: 0 - -13,25: 0 - -13,26: 0 - -13,27: 0 - -13,28: 0 - -13,29: 0 - -13,30: 0 - -12,24: 0 - -12,25: 0 - -12,26: 0 - -12,27: 0 - -12,28: 0 - -12,29: 0 - -12,30: 0 - -11,24: 0 - -11,25: 0 - -11,26: 0 - -11,27: 0 - -11,28: 0 - -11,29: 0 - -10,24: 0 - -10,25: 0 - -10,26: 0 - -10,27: 0 - -10,28: 0 - -10,29: 0 - -9,24: 0 - -9,25: 0 - -9,26: 0 - -9,27: 0 - -9,28: 0 - -9,29: 0 - -8,25: 0 - -8,26: 0 - -8,27: 0 - -8,28: 0 - -8,29: 0 - -7,25: 0 - -7,26: 0 - -7,27: 0 - -7,28: 0 - -7,29: 0 - -6,25: 0 - -6,26: 0 - -6,27: 0 - -6,28: 0 - -6,29: 0 - -5,25: 0 - -5,26: 0 - -5,27: 0 - -5,28: 0 - -5,29: 0 - -4,25: 0 - -4,26: 0 - -4,27: 0 - -4,28: 0 - -4,29: 0 - -3,25: 0 - -3,26: 0 - -3,27: 0 - -3,28: 0 - -3,29: 0 - 10,24: 0 - 10,25: 0 - 10,26: 0 - 10,27: 0 - 10,28: 0 - 10,29: 0 - 10,30: 0 - 10,31: 0 - 11,24: 0 - 11,25: 0 - 11,26: 0 - 11,27: 0 - 11,28: 0 - 11,29: 0 - 11,30: 0 - 11,31: 0 - 12,24: 0 - 12,25: 0 - 12,26: 0 - 12,27: 0 - 12,28: 0 - 12,29: 0 - 12,30: 0 - 12,31: 0 - 13,24: 0 - 13,25: 0 - 13,26: 0 - 13,27: 0 - 13,28: 0 - 13,29: 0 - 13,30: 0 - 13,31: 0 - 14,24: 0 - 14,25: 0 - 14,26: 0 - 14,27: 0 - 14,28: 0 - 14,29: 0 - 14,30: 0 - 14,31: 0 - 15,24: 0 - 15,25: 0 - 15,26: 0 - 15,27: 0 - 15,28: 0 - 15,29: 0 - 15,30: 0 - 15,31: 0 - 16,24: 0 - 16,25: 0 - 16,26: 0 - 16,27: 0 - 16,28: 0 - 16,29: 0 - 16,30: 0 - 16,31: 0 - 17,24: 0 - 17,25: 0 - 17,26: 0 - 17,27: 0 - 17,28: 0 - 17,29: 0 - 17,30: 0 - 17,31: 0 - 18,24: 0 - 18,25: 0 - 18,26: 0 - 18,27: 0 - 18,28: 0 - 18,29: 0 - 18,30: 0 - 18,31: 0 - 19,24: 0 - 19,25: 0 - 19,26: 0 - 19,27: 0 - 19,28: 0 - 19,29: 0 - 19,30: 0 - 19,31: 0 - 20,24: 0 - 20,25: 0 - 20,26: 0 - 20,27: 0 - 20,28: 0 - 20,29: 0 - 20,30: 0 - 20,31: 0 - 21,24: 0 - 21,25: 0 - 21,26: 0 - 21,27: 0 - 21,28: 0 - 21,29: 0 - 21,30: 0 - -25,-13: 0 - -25,-12: 0 - -25,-11: 0 - -25,-10: 0 - -24,-13: 0 - -24,-12: 0 - -24,-11: 0 - -24,-10: 0 - -23,-13: 0 - -23,-12: 0 - -23,-11: 0 - -23,-10: 0 - -22,-13: 0 - -22,-12: 0 - -22,-11: 0 - -22,-10: 0 - -21,-13: 0 - -21,-12: 0 - -21,-11: 0 - -21,-10: 0 - -25,1: 0 - -25,2: 0 - -25,3: 0 - -25,4: 0 - -24,1: 0 - -24,2: 0 - -24,3: 0 - -24,4: 0 - -23,1: 0 - -23,2: 0 - -23,3: 0 - -23,4: 0 - -22,1: 0 - -22,2: 0 - -22,3: 0 - -22,4: 0 - -21,1: 0 - -21,2: 0 - -21,3: 0 - -21,4: 0 - -22,31: 0 - -21,24: 0 - -21,25: 0 - -21,26: 0 - -21,27: 0 - -21,28: 0 - -21,29: 0 - -21,30: 0 - -21,31: 0 - -20,24: 0 - -20,25: 0 - -20,26: 0 - -20,27: 0 - -20,28: 0 - -20,29: 0 - -20,30: 0 - -20,31: 0 - -19,24: 0 - -19,25: 0 - -19,26: 0 - -19,27: 0 - -19,28: 0 - -19,29: 0 - -19,30: 0 - -19,31: 0 - -18,24: 0 - -18,25: 0 - -18,26: 0 - -18,27: 0 - -18,28: 0 - -18,29: 0 - -18,30: 0 - -18,31: 0 - -17,24: 0 - -17,25: 0 - -17,26: 0 - -17,27: 0 - -17,28: 0 - -17,29: 0 - -17,30: 0 - -32,-26: 0 - -32,-25: 0 - -32,-24: 0 - -32,-23: 0 - -31,-25: 0 - -31,-24: 0 - -31,-23: 0 - -30,-25: 0 - -30,-24: 0 - -30,-23: 0 - -29,-26: 0 - -29,-25: 0 - -29,-24: 0 - -29,-23: 0 - -29,-22: 0 - -29,-21: 0 - -28,-28: 0 - -28,-27: 0 - -28,-26: 0 - -28,-25: 0 - -28,-24: 0 - -28,-23: 0 - -28,-22: 0 - -28,-21: 0 - -27,-28: 0 - -27,-27: 0 - -27,-26: 0 - -27,-25: 0 - -27,-24: 0 - -27,-23: 0 - -27,-22: 0 - -26,-28: 0 - -26,-27: 0 - -26,-26: 0 - -26,-25: 0 - -26,-24: 0 - -26,-23: 0 - -25,-28: 0 - -25,-26: 0 - -25,-25: 0 - -25,-24: 0 - -25,-23: 0 - -24,-25: 0 - -24,-24: 0 - -24,-23: 0 - -23,-25: 0 - -23,-24: 0 - -23,-23: 0 - -22,-27: 0 - -22,-26: 0 - -21,-27: 0 - -21,-26: 0 - -20,-27: 0 - -20,-26: 0 - -19,-27: 0 - -19,-26: 0 - -18,-27: 0 - -18,-26: 0 - -17,-28: 0 - -17,-27: 0 - -17,-26: 0 - -48,-28: 0 - -48,-26: 0 - -48,-25: 0 - -48,-24: 0 - -48,-23: 0 - -47,-28: 0 - -47,-27: 0 - -47,-26: 0 - -47,-25: 0 - -47,-24: 0 - -47,-23: 0 - -46,-28: 0 - -46,-27: 0 - -46,-26: 0 - -46,-25: 0 - -46,-24: 0 - -46,-23: 0 - -45,-28: 0 - -45,-27: 0 - -45,-26: 0 - -45,-25: 0 - -45,-24: 0 - -45,-23: 0 - -44,-28: 0 - -44,-27: 0 - -44,-26: 0 - -44,-25: 0 - -44,-24: 0 - -44,-23: 0 - -43,-28: 0 - -43,-27: 0 - -43,-26: 0 - -43,-23: 0 - -42,-28: 0 - -42,-27: 0 - -42,-24: 0 - -42,-23: 0 - -41,-24: 0 - -41,-23: 0 - -40,-24: 0 - -40,-23: 0 - -39,-28: 0 - -39,-25: 0 - -39,-24: 0 - -39,-23: 0 - -38,-28: 0 - -38,-27: 0 - -38,-26: 0 - -38,-25: 0 - -38,-24: 0 - -38,-23: 0 - -37,-28: 0 - -37,-27: 0 - -37,-26: 0 - -37,-25: 0 - -37,-24: 0 - -37,-23: 0 - -36,-28: 0 - -36,-27: 0 - -36,-26: 0 - -36,-25: 0 - -36,-24: 0 - -36,-23: 0 - -35,-28: 0 - -35,-27: 0 - -35,-26: 0 - -35,-25: 0 - -35,-24: 0 - -35,-23: 0 - -34,-28: 0 - -34,-27: 0 - -34,-26: 0 - -34,-25: 0 - -34,-24: 0 - -34,-23: 0 - -33,-28: 0 - -33,-27: 0 - -33,-26: 0 - -33,-25: 0 - -33,-24: 0 - -33,-23: 0 - -64,-16: 0 - -64,-15: 0 - -64,-14: 0 - -64,-13: 0 - -64,-12: 0 - -64,-11: 0 - -64,-10: 0 - -64,-9: 0 - -64,-8: 0 - -64,-7: 0 - -64,-6: 0 - -64,-5: 0 - -64,-4: 0 - -64,-3: 0 - -64,-2: 0 - -64,-1: 0 - -63,-16: 0 - -63,-15: 0 - -63,-14: 0 - -63,-13: 0 - -63,-12: 0 - -63,-11: 0 - -63,-10: 0 - -63,-9: 0 - -63,-8: 0 - -63,-7: 0 - -63,-6: 0 - -63,-5: 0 - -63,-4: 0 - -63,-3: 0 - -63,-2: 0 - -63,-1: 0 - -62,-16: 0 - -62,-15: 0 - -62,-14: 0 - -62,-13: 0 - -62,-12: 0 - -62,-11: 0 - -62,-10: 0 - -62,-9: 0 - -62,-8: 0 - -62,-7: 0 - -62,-6: 0 - -62,-5: 0 - -62,-4: 0 - -62,-3: 0 - -62,-2: 0 - -62,-1: 0 - -61,-16: 0 - -61,-15: 0 - -61,-14: 0 - -61,-13: 0 - -61,-12: 0 - -61,-11: 0 - -61,-10: 0 - -61,-9: 0 - -61,-8: 0 - -61,-7: 0 - -61,-6: 0 - -61,-5: 0 - -61,-4: 0 - -61,-3: 0 - -61,-2: 0 - -61,-1: 0 - -60,-16: 0 - -60,-15: 0 - -60,-14: 0 - -60,-13: 0 - -60,-12: 0 - -60,-11: 0 - -60,-10: 0 - -60,-9: 0 - -60,-8: 0 - -60,-7: 0 - -60,-6: 0 - -60,-5: 0 - -60,-4: 0 - -60,-3: 0 - -60,-2: 0 - -60,-1: 0 - -59,-16: 0 - -59,-15: 0 - -58,-15: 0 - -64,-28: 0 - -64,-27: 0 - -64,-26: 0 - -64,-25: 0 - -64,-24: 0 - -64,-23: 0 - -64,-22: 0 - -64,-21: 0 - -64,-20: 0 - -64,-19: 0 - -64,-18: 0 - -64,-17: 0 - -63,-28: 0 - -63,-27: 0 - -63,-26: 0 - -63,-25: 0 - -63,-24: 0 - -63,-23: 0 - -63,-22: 0 - -63,-21: 0 - -63,-20: 0 - -63,-19: 0 - -63,-18: 0 - -63,-17: 0 - -62,-24: 0 - -62,-23: 0 - -62,-22: 0 - -62,-21: 0 - -62,-20: 0 - -62,-19: 0 - -62,-18: 0 - -62,-17: 0 - -61,-24: 0 - -61,-23: 0 - -61,-22: 0 - -61,-21: 0 - -61,-20: 0 - -61,-19: 0 - -61,-18: 0 - -61,-17: 0 - -60,-24: 0 - -60,-23: 0 - -60,-22: 0 - -60,-21: 0 - -60,-20: 0 - -60,-19: 0 - -60,-18: 0 - -60,-17: 0 - -59,-24: 0 - -59,-23: 0 - -59,-22: 0 - -59,-21: 0 - -59,-20: 0 - -59,-19: 0 - -59,-18: 0 - -59,-17: 0 - -58,-26: 0 - -58,-25: 0 - -58,-24: 0 - -58,-23: 0 - -58,-22: 0 - -58,-21: 0 - -58,-20: 0 - -58,-19: 0 - -57,-28: 0 - -57,-27: 0 - -57,-26: 0 - -57,-25: 0 - -57,-24: 0 - -57,-23: 0 - -57,-22: 0 - -57,-21: 0 - -57,-20: 0 - -57,-19: 0 - -56,-28: 0 - -56,-27: 0 - -56,-26: 0 - -56,-25: 0 - -56,-24: 0 - -56,-23: 0 - -56,-22: 0 - -56,-21: 0 - -56,-20: 0 - -55,-28: 0 - -55,-27: 0 - -55,-26: 0 - -55,-25: 0 - -55,-24: 0 - -55,-23: 0 - -54,-28: 0 - -54,-27: 0 - -54,-26: 0 - -54,-25: 0 - -54,-24: 0 - -54,-23: 0 - -53,-28: 0 - -53,-27: 0 - -53,-26: 0 - -53,-25: 0 - -53,-24: 0 - -53,-23: 0 - -52,-28: 0 - -52,-27: 0 - -52,-26: 0 - -52,-25: 0 - -52,-24: 0 - -52,-23: 0 - -51,-28: 0 - -51,-26: 0 - -51,-25: 0 - -51,-24: 0 - -51,-23: 0 - -50,-26: 0 - -50,-25: 0 - -50,-24: 0 - -50,-23: 0 - -49,-25: 0 - -49,-24: 0 - -49,-23: 0 - -64,0: 0 - -64,1: 0 - -64,2: 0 - -64,3: 0 - -64,4: 0 - -64,5: 0 - -64,6: 0 - -64,7: 0 - -64,8: 0 - -64,9: 0 - -64,10: 0 - -64,11: 0 - -64,12: 0 - -64,13: 0 - -64,14: 0 - -64,15: 0 - -63,0: 0 - -63,1: 0 - -63,2: 0 - -63,3: 0 - -63,4: 0 - -63,5: 0 - -63,6: 0 - -63,7: 0 - -63,8: 0 - -63,9: 0 - -63,10: 0 - -63,11: 0 - -63,12: 0 - -63,13: 0 - -63,14: 0 - -63,15: 0 - -62,0: 0 - -62,1: 0 - -62,2: 0 - -62,3: 0 - -62,4: 0 - -62,5: 0 - -62,6: 0 - -62,7: 0 - -62,8: 0 - -62,9: 0 - -62,10: 0 - -62,11: 0 - -62,12: 0 - -62,13: 0 - -62,14: 0 - -62,15: 0 - -61,0: 0 - -61,1: 0 - -61,2: 0 - -61,3: 0 - -61,4: 0 - -61,5: 0 - -61,6: 0 - -61,7: 0 - -61,8: 0 - -61,9: 0 - -61,10: 0 - -61,11: 0 - -61,12: 0 - -61,13: 0 - -61,14: 0 - -61,15: 0 - -60,2: 0 - -60,3: 0 - -60,4: 0 - -60,5: 0 - -60,6: 0 - -60,7: 0 - -60,8: 0 - -60,9: 0 - -60,10: 0 - -60,11: 0 - -60,12: 0 - -60,13: 0 - -60,14: 0 - -60,15: 0 - -64,16: 0 - -64,17: 0 - -64,18: 0 - -64,19: 0 - -64,20: 0 - -64,21: 0 - -64,22: 0 - -64,23: 0 - -64,24: 0 - -64,25: 0 - -63,16: 0 - -63,17: 0 - -63,18: 0 - -63,19: 0 - -63,20: 0 - -63,21: 0 - -63,22: 0 - -63,23: 0 - -63,24: 0 - -63,25: 0 - -62,16: 0 - -62,17: 0 - -62,18: 0 - -62,19: 0 - -62,20: 0 - -62,21: 0 - -62,22: 0 - -62,23: 0 - -62,24: 0 - -62,25: 0 - -61,16: 0 - -61,17: 0 - -61,18: 0 - -61,19: 0 - -61,20: 0 - -61,21: 0 - -61,22: 0 - -61,23: 0 - -61,24: 0 - -61,25: 0 - -60,16: 0 - -60,17: 0 - -60,18: 0 - -60,19: 0 - -60,20: 0 - -60,21: 0 - -60,22: 0 - -60,23: 0 - -60,24: 0 - -60,25: 0 - -59,20: 0 - -59,21: 0 - -59,22: 0 - -59,23: 0 - -59,24: 0 - -59,25: 0 - -58,22: 0 - -58,23: 0 - -58,24: 0 - -72,0: 0 - -72,1: 0 - -72,2: 0 - -72,3: 0 - -72,15: 0 - -71,0: 0 - -71,1: 0 - -71,2: 0 - -71,3: 0 - -71,15: 0 - -70,0: 0 - -70,1: 0 - -70,2: 0 - -70,3: 0 - -70,4: 0 - -70,15: 0 - -69,0: 0 - -69,1: 0 - -69,2: 0 - -69,3: 0 - -69,4: 0 - -69,5: 0 - -69,6: 0 - -69,7: 0 - -69,15: 0 - -68,0: 0 - -68,1: 0 - -68,2: 0 - -68,3: 0 - -68,4: 0 - -68,5: 0 - -68,6: 0 - -68,7: 0 - -68,8: 0 - -68,10: 0 - -68,11: 0 - -68,12: 0 - -68,13: 0 - -68,14: 0 - -68,15: 0 - -67,0: 0 - -67,1: 0 - -67,2: 0 - -67,3: 0 - -67,4: 0 - -67,5: 0 - -67,6: 0 - -67,7: 0 - -67,8: 0 - -67,9: 0 - -67,10: 0 - -67,11: 0 - -67,12: 0 - -67,13: 0 - -67,14: 0 - -67,15: 0 - -66,0: 0 - -66,1: 0 - -66,2: 0 - -66,3: 0 - -66,4: 0 - -66,5: 0 - -66,6: 0 - -66,7: 0 - -66,8: 0 - -66,9: 0 - -66,10: 0 - -66,11: 0 - -66,12: 0 - -66,13: 0 - -66,14: 0 - -66,15: 0 - -65,0: 0 - -65,1: 0 - -65,2: 0 - -65,3: 0 - -65,4: 0 - -65,5: 0 - -65,6: 0 - -65,7: 0 - -65,8: 0 - -65,9: 0 - -65,10: 0 - -65,11: 0 - -65,12: 0 - -65,13: 0 - -65,14: 0 - -65,15: 0 - -72,16: 0 - -72,17: 0 - -72,21: 0 - -72,22: 0 - -72,23: 0 - -72,24: 0 - -71,16: 0 - -71,17: 0 - -71,18: 0 - -71,21: 0 - -71,22: 0 - -71,23: 0 - -71,24: 0 - -71,25: 0 - -71,26: 0 - -70,16: 0 - -70,17: 0 - -70,18: 0 - -70,19: 0 - -70,20: 0 - -70,21: 0 - -70,22: 0 - -70,23: 0 - -70,24: 0 - -70,25: 0 - -70,26: 0 - -69,16: 0 - -69,17: 0 - -69,18: 0 - -69,19: 0 - -69,20: 0 - -69,21: 0 - -69,22: 0 - -69,23: 0 - -69,24: 0 - -69,25: 0 - -69,26: 0 - -68,16: 0 - -68,17: 0 - -68,18: 0 - -68,19: 0 - -68,20: 0 - -68,21: 0 - -68,22: 0 - -68,23: 0 - -68,24: 0 - -68,25: 0 - -68,26: 0 - -67,16: 0 - -67,17: 0 - -67,18: 0 - -67,19: 0 - -67,20: 0 - -67,21: 0 - -67,22: 0 - -67,23: 0 - -67,24: 0 - -67,25: 0 - -67,26: 0 - -66,16: 0 - -66,17: 0 - -66,18: 0 - -66,19: 0 - -66,20: 0 - -66,21: 0 - -66,22: 0 - -66,23: 0 - -66,24: 0 - -66,25: 0 - -66,26: 0 - -65,16: 0 - -65,17: 0 - -65,18: 0 - -65,19: 0 - -65,20: 0 - -65,21: 0 - -65,22: 0 - -65,23: 0 - -65,24: 0 - -65,25: 0 - -65,26: 0 - -72,-16: 0 - -72,-15: 0 - -72,-14: 0 - -72,-13: 0 - -72,-12: 0 - -72,-11: 0 - -72,-2: 0 - -72,-1: 0 - -71,-16: 0 - -71,-15: 0 - -71,-14: 0 - -71,-13: 0 - -71,-12: 0 - -71,-11: 0 - -71,-2: 0 - -71,-1: 0 - -70,-16: 0 - -70,-15: 0 - -70,-14: 0 - -70,-13: 0 - -70,-12: 0 - -70,-11: 0 - -70,-10: 0 - -70,-9: 0 - -70,-8: 0 - -70,-7: 0 - -70,-6: 0 - -70,-5: 0 - -70,-4: 0 - -70,-3: 0 - -70,-2: 0 - -70,-1: 0 - -69,-16: 0 - -69,-15: 0 - -69,-14: 0 - -69,-13: 0 - -69,-12: 0 - -69,-11: 0 - -69,-10: 0 - -69,-9: 0 - -69,-8: 0 - -69,-7: 0 - -69,-6: 0 - -69,-5: 0 - -69,-4: 0 - -69,-3: 0 - -69,-2: 0 - -69,-1: 0 - -68,-16: 0 - -68,-15: 0 - -68,-14: 0 - -68,-13: 0 - -68,-12: 0 - -68,-11: 0 - -68,-10: 0 - -68,-9: 0 - -68,-8: 0 - -68,-7: 0 - -68,-6: 0 - -68,-5: 0 - -68,-4: 0 - -68,-3: 0 - -68,-2: 0 - -68,-1: 0 - -67,-16: 0 - -67,-15: 0 - -67,-14: 0 - -67,-13: 0 - -67,-12: 0 - -67,-11: 0 - -67,-10: 0 - -67,-9: 0 - -67,-8: 0 - -67,-7: 0 - -67,-6: 0 - -67,-5: 0 - -67,-4: 0 - -67,-3: 0 - -67,-2: 0 - -67,-1: 0 - -66,-16: 0 - -66,-15: 0 - -66,-14: 0 - -66,-13: 0 - -66,-12: 0 - -66,-11: 0 - -66,-10: 0 - -66,-9: 0 - -66,-8: 0 - -66,-7: 0 - -66,-6: 0 - -66,-5: 0 - -66,-4: 0 - -66,-3: 0 - -66,-2: 0 - -66,-1: 0 - -65,-16: 0 - -65,-15: 0 - -65,-14: 0 - -65,-13: 0 - -65,-12: 0 - -65,-11: 0 - -65,-10: 0 - -65,-9: 0 - -65,-8: 0 - -65,-7: 0 - -65,-6: 0 - -65,-5: 0 - -65,-4: 0 - -65,-3: 0 - -65,-2: 0 - -65,-1: 0 - -72,-22: 0 - -72,-21: 0 - -72,-20: 0 - -72,-19: 0 - -72,-18: 0 - -72,-17: 0 - -71,-22: 0 - -71,-21: 0 - -71,-20: 0 - -71,-19: 0 - -71,-18: 0 - -71,-17: 0 - -70,-26: 0 - -70,-25: 0 - -70,-24: 0 - -70,-23: 0 - -70,-22: 0 - -70,-21: 0 - -70,-20: 0 - -70,-19: 0 - -70,-18: 0 - -70,-17: 0 - -69,-26: 0 - -69,-25: 0 - -69,-24: 0 - -69,-23: 0 - -69,-22: 0 - -69,-21: 0 - -69,-20: 0 - -69,-19: 0 - -69,-18: 0 - -69,-17: 0 - -68,-26: 0 - -68,-25: 0 - -68,-24: 0 - -68,-23: 0 - -68,-22: 0 - -68,-21: 0 - -68,-20: 0 - -68,-19: 0 - -68,-18: 0 - -68,-17: 0 - -67,-26: 0 - -67,-25: 0 - -67,-24: 0 - -67,-23: 0 - -67,-22: 0 - -67,-21: 0 - -67,-20: 0 - -67,-19: 0 - -67,-18: 0 - -67,-17: 0 - -66,-28: 0 - -66,-27: 0 - -66,-26: 0 - -66,-25: 0 - -66,-24: 0 - -66,-23: 0 - -66,-22: 0 - -66,-21: 0 - -66,-20: 0 - -66,-19: 0 - -66,-18: 0 - -66,-17: 0 - -65,-28: 0 - -65,-27: 0 - -65,-26: 0 - -65,-25: 0 - -65,-24: 0 - -65,-23: 0 - -65,-22: 0 - -65,-21: 0 - -65,-20: 0 - -65,-19: 0 - -65,-18: 0 - -65,-17: 0 - 10,32: 0 - 11,32: 0 - 12,32: 0 - 13,32: 0 - 14,32: 0 - 15,32: 0 - 16,32: 0 - 17,32: 0 - 18,32: 0 - 19,32: 0 - 20,32: 0 - -32,1: 0 - -32,2: 0 - -32,3: 0 - -32,4: 0 - -31,1: 0 - -31,2: 0 - -31,3: 0 - -31,4: 0 - -30,1: 0 - -30,2: 0 - -30,3: 0 - -30,4: 0 - -29,1: 0 - -29,2: 0 - -29,3: 0 - -29,4: 0 - -28,1: 0 - -28,2: 0 - -28,3: 0 - -28,4: 0 - -27,1: 0 - -27,2: 0 - -27,3: 0 - -27,4: 0 - -26,1: 0 - -26,2: 0 - -26,3: 0 - -26,4: 0 - -35,1: 0 - -35,2: 0 - -35,3: 0 - -35,4: 0 - -34,1: 0 - -34,2: 0 - -34,3: 0 - -34,4: 0 - -33,1: 0 - -33,2: 0 - -33,3: 0 - -33,4: 0 - 4,-26: 2 - 5,-26: 2 - 6,-26: 2 - 7,-26: 2 - 8,-26: 2 - 9,-25: 2 - 10,-25: 2 - 11,-25: 2 - 12,-25: 2 - 13,-25: 2 - 14,-25: 2 - -22,7: 2 - -21,5: 2 - -21,6: 2 - -21,7: 2 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.213781 - - 79.80423 - - 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 - type: GridAtmosphere - - type: RadiationGridResistance - - type: OccluderTree - - type: Shuttle - - nextUpdate: 4156.5052092 - type: GridPathfinding - - nextShake: 0 - shakeTimes: 10 - type: GravityShake - - type: GasTileOverlay -- uid: 105 - type: WallPlastitanium - components: - - pos: -1.5,0.5 - parent: 104 - type: Transform -- uid: 106 - type: WallPlastitanium - components: - - pos: 14.5,0.5 - parent: 104 - type: Transform -- uid: 107 - type: Table - components: - - pos: 7.5,-4.5 - parent: 104 - type: Transform -- uid: 108 - type: filingCabinetDrawerRandom - components: - - pos: 7.5,-5.5 - parent: 104 - type: Transform -- uid: 109 - type: AirlockSecurityGlass - components: - - pos: 11.5,-7.5 - parent: 104 - type: Transform -- uid: 110 - type: WallPlastitanium - components: - - pos: 12.5,-2.5 - parent: 104 - type: Transform -- uid: 111 - type: BaseComputer - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 104 - type: Transform -- uid: 112 - type: AirlockSecurityGlass - components: - - pos: 8.5,-0.5 - parent: 104 - type: Transform -- uid: 113 - type: WallPlastitanium - components: - - pos: 8.5,-10.5 - parent: 104 - type: Transform -- uid: 114 - type: WallPlastitanium - components: - - pos: 16.5,-1.5 - parent: 104 - type: Transform -- uid: 115 - type: Grille - components: - - pos: -1.5,-0.5 - parent: 104 - type: Transform -- uid: 116 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,0.5 - parent: 104 - type: Transform -- uid: 117 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 7.5,0.5 - parent: 104 - type: Transform -- uid: 118 - type: Grille - components: - - pos: 2.5,1.5 - parent: 104 - type: Transform -- uid: 119 - type: WallPlastitanium - components: - - pos: 24.5,-2.5 - parent: 104 - type: Transform -- uid: 120 - type: WallShuttleDiagonal - components: - - pos: 22.5,-9.5 - parent: 104 - type: Transform -- uid: 121 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 104 - type: Transform -- uid: 122 - type: AirlockSecurityGlass - components: - - pos: 17.5,-7.5 - parent: 104 - type: Transform -- uid: 123 - type: WallPlastitanium - components: - - pos: 21.5,-2.5 - parent: 104 - type: Transform -- uid: 124 - type: WallPlastitanium - components: - - pos: 19.5,-2.5 - parent: 104 - type: Transform -- uid: 125 - type: WallPlastitanium - components: - - pos: 16.5,-3.5 - parent: 104 - type: Transform -- uid: 126 - type: WallPlastitanium - components: - - pos: 16.5,-4.5 - parent: 104 - type: Transform -- uid: 127 - type: ReinforcedWindow - components: - - pos: 11.5,-8.5 - parent: 104 - type: Transform -- uid: 128 - type: ReinforcedWindow - components: - - pos: 11.5,-6.5 - parent: 104 - type: Transform -- uid: 129 - type: ReinforcedWindow - components: - - pos: 16.5,-8.5 - parent: 104 - type: Transform -- uid: 130 - type: WallShuttle - components: - - pos: 23.5,-6.5 - parent: 104 - type: Transform -- uid: 131 - type: AirlockSecurityGlass - components: - - pos: 20.5,-10.5 - parent: 104 - type: Transform -- uid: 132 - type: WallPlastitanium - components: - - pos: 23.5,-2.5 - parent: 104 - type: Transform -- uid: 133 - type: WallPlastitanium - components: - - pos: 1.5,1.5 - parent: 104 - type: Transform -- uid: 134 - type: DrinkGinBottleFull - components: - - pos: 3.2228165,-8.4229965 - parent: 104 - type: Transform -- uid: 135 - type: AlwaysPoweredLightLED - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-1.5 - parent: 104 - type: Transform -- uid: 136 - type: AirlockSecurityGlass - components: - - pos: 10.5,-2.5 - parent: 104 - type: Transform -- uid: 137 - type: WallPlastitanium - components: - - pos: 8.5,-12.5 - parent: 104 - type: Transform -- uid: 138 - type: MedkitBruteFilled - components: - - pos: 7.5183387,-10.576839 - parent: 104 - type: Transform -- uid: 139 - type: ExtinguisherCabinetFilled - components: - - pos: 28.5,-14.5 - parent: 104 - type: Transform -- uid: 140 - type: Bookshelf - components: - - pos: -0.5,-0.5 - parent: 104 - type: Transform -- uid: 141 - type: ExtinguisherCabinetFilled - components: - - pos: 14.5,-0.5 - parent: 104 - type: Transform -- uid: 142 - type: Mirror - components: - - pos: 9.5,1.5 - parent: 104 - type: Transform -- uid: 143 - type: CableApcExtension - components: - - pos: 12.5,0.5 - parent: 104 - type: Transform -- uid: 144 - type: SinkWide - components: - - pos: 9.5,0.5 - parent: 104 - type: Transform -- uid: 145 - type: SinkWide - components: - - pos: 10.5,0.5 - parent: 104 - type: Transform -- uid: 146 - type: Mirror - components: - - pos: 10.5,1.5 - parent: 104 - type: Transform -- uid: 147 - type: Grille - components: - - pos: 11.5,1.5 - parent: 104 - type: Transform -- uid: 148 - type: SoapSyndie - components: - - pos: 9.5,-4.5 - parent: 104 - type: Transform -- uid: 149 - type: MopBucket - components: - - pos: 11.5,-3.5 - parent: 104 - type: Transform -- uid: 150 - type: MopItem - components: - - pos: 11.5,-3.5 - parent: 104 - type: Transform -- uid: 151 - type: ClosetJanitorFilled - components: - - pos: 11.5,-4.5 - parent: 104 - type: Transform -- uid: 152 - type: ClosetL3JanitorFilled - components: - - pos: 9.5,-3.5 - parent: 104 - type: Transform -- uid: 153 - type: TableReinforcedGlass - components: - - pos: 9.5,-4.5 - parent: 104 - type: Transform -- uid: 154 - type: TableReinforcedGlass - components: - - pos: 10.5,-4.5 - parent: 104 - type: Transform -- uid: 155 - type: BoxMousetrap - components: - - pos: 10.5,-4.5 - parent: 104 - type: Transform -- uid: 156 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,-1.5 - parent: 104 - type: Transform -- uid: 157 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,-1.5 - parent: 104 - type: Transform -- uid: 158 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,-1.5 - parent: 104 - type: Transform -- uid: 159 - type: FoodBoxPizzaFilled - components: - - pos: 3.5,-1.5 - parent: 104 - type: Transform - - containers: - entity_storage: !type:Container - ents: [] - storagebase: !type:Container - ents: [] - type: ContainerContainer - - isPlaceable: False - type: PlaceableSurface -- uid: 160 - type: PlushieLizard - components: - - pos: 2.5,-2.5 - parent: 104 - type: Transform -- uid: 161 - type: DrinkBeer - components: - - pos: 3.5883045,-2.2700634 - parent: 104 - type: Transform -- uid: 162 - type: CheckerBoard - components: - - pos: 3.4476795,-2.4108348 - parent: 104 - type: Transform -- uid: 163 - type: PlushieNuke - components: - - pos: 1.8113766,-6.337348 - parent: 104 - type: Transform -- uid: 164 - type: SpawnPointNukies - components: - - pos: 1.5,-1.5 - parent: 104 - type: Transform -- uid: 165 - type: WallShuttle - components: - - pos: 21.5,-4.5 - parent: 104 - type: Transform -- uid: 166 - type: SpawnPointNukies - components: - - pos: 4.5,-1.5 - parent: 104 - type: Transform -- uid: 167 - type: SpawnPointNukies - components: - - pos: 3.5,-5.5 - parent: 104 - type: Transform -- uid: 168 - type: WallPlastitanium - components: - - pos: 14.5,-9.5 - parent: 104 - type: Transform -- uid: 169 - type: SpawnPointNukies - components: - - pos: 2.5,-3.5 - parent: 104 - type: Transform -- uid: 170 - type: SpawnPointNukies - components: - - pos: 3.5,-0.5 - parent: 104 - type: Transform -- uid: 171 - type: WallPlastitanium - components: - - pos: 13.5,-9.5 - parent: 104 - type: Transform -- uid: 172 - type: SpawnPointNukies - components: - - pos: 3.5,-7.5 - parent: 104 - type: Transform -- uid: 173 - type: SpawnPointNukies - components: - - pos: 0.5,-5.5 - parent: 104 - type: Transform -- uid: 174 - type: WallPlastitanium - components: - - pos: 15.5,-9.5 - parent: 104 - type: Transform -- uid: 175 - type: WallPlastitanium - components: - - pos: 16.5,-9.5 - parent: 104 - type: Transform -- uid: 176 - type: WallPlastitanium - components: - - pos: 15.5,-5.5 - parent: 104 - type: Transform -- uid: 177 - type: WallPlastitanium - components: - - pos: 8.5,-13.5 - parent: 104 - type: Transform -- uid: 178 - type: LockerSyndicatePersonalFilled - components: - - pos: 9.5,-13.5 - parent: 104 - type: Transform -- uid: 179 - type: WallPlastitanium - components: - - pos: 8.5,-14.5 - parent: 104 - type: Transform -- uid: 180 - type: WallPlastitanium - components: - - pos: 8.5,-15.5 - parent: 104 - type: Transform -- uid: 181 - type: WallPlastitanium - components: - - pos: 9.5,-15.5 - parent: 104 - type: Transform -- uid: 182 - type: WallPlastitanium - components: - - pos: 10.5,-15.5 - parent: 104 - type: Transform -- uid: 183 - type: WallPlastitanium - components: - - pos: 11.5,-15.5 - parent: 104 - type: Transform -- uid: 184 - type: WallPlastitanium - components: - - pos: 12.5,-15.5 - parent: 104 - type: Transform -- uid: 185 - type: WallPlastitanium - components: - - pos: 13.5,-15.5 - parent: 104 - type: Transform -- uid: 186 - type: WallPlastitanium - components: - - pos: 14.5,-15.5 - parent: 104 - type: Transform -- uid: 187 - type: WallPlastitanium - components: - - pos: 15.5,-15.5 - parent: 104 - type: Transform -- uid: 188 - type: WallPlastitanium - components: - - pos: 16.5,-15.5 - parent: 104 - type: Transform -- uid: 189 - type: WallPlastitanium - components: - - pos: 16.5,-14.5 - parent: 104 - type: Transform -- uid: 190 - type: AirlockSecurityGlass - components: - - pos: 16.5,-13.5 - parent: 104 - type: Transform -- uid: 191 - type: WallPlastitanium - components: - - pos: 16.5,-12.5 - parent: 104 - type: Transform -- uid: 192 - type: WallPlastitanium - components: - - pos: 16.5,-11.5 - parent: 104 - type: Transform -- uid: 193 - type: WallPlastitanium - components: - - pos: 16.5,-10.5 - parent: 104 - type: Transform -- uid: 194 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-13.5 - parent: 104 - type: Transform -- uid: 195 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-14.5 - parent: 104 - type: Transform -- uid: 196 - type: LockerSyndicatePersonalFilled - components: - - pos: 11.5,-14.5 - parent: 104 - type: Transform -- uid: 197 - type: LockerSyndicatePersonalFilled - components: - - pos: 11.5,-13.5 - parent: 104 - type: Transform -- uid: 198 - type: LockerSyndicatePersonalFilled - components: - - pos: 9.5,-14.5 - parent: 104 - type: Transform -- uid: 199 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-17.5 - parent: 104 - type: Transform -- uid: 200 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-14.5 - parent: 104 - type: Transform -- uid: 201 - type: TableReinforced - components: - - pos: 13.5,-10.5 - parent: 104 - type: Transform -- uid: 202 - type: TableReinforced - components: - - pos: 12.5,-10.5 - parent: 104 - type: Transform -- uid: 203 - type: TableReinforced - components: - - pos: 14.5,-10.5 - parent: 104 - type: Transform -- uid: 204 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: 15.5,-10.5 - parent: 104 - type: Transform -- uid: 205 - type: ToolboxSyndicateFilled - components: - - pos: 12.366143,-10.392332 - parent: 104 - type: Transform -- uid: 206 - type: ToolboxElectricalFilled - components: - - pos: 13.241143,-10.4236145 - parent: 104 - type: Transform -- uid: 207 - type: WelderIndustrial - components: - - pos: 14.5,-10.5 - parent: 104 - type: Transform -- uid: 208 - type: TableReinforced - components: - - pos: 11.5,-10.5 - parent: 104 - type: Transform -- uid: 209 - type: CableHVStack - components: - - pos: 11.334893,-10.282843 - parent: 104 - type: Transform -- uid: 210 - type: CableMVStack - components: - - pos: 11.381768,-10.407973 - parent: 104 - type: Transform -- uid: 211 - type: CableApcStack - components: - - pos: 11.428643,-10.548745 - parent: 104 - type: Transform -- uid: 212 - type: ClothingBeltUtilityFilled - components: - - pos: 13.897393,-10.470539 - parent: 104 - type: Transform -- uid: 213 - type: Railing - components: - - pos: -28.5,1.5 - parent: 104 - type: Transform -- uid: 214 - type: LightPostSmall - components: - - pos: -19.5,1.5 - parent: 104 - type: Transform -- uid: 215 - type: WallPlastitanium - components: - - pos: 16.5,-0.5 - parent: 104 - type: Transform -- uid: 216 - type: MountainRock - components: - - pos: -4.5,-9.5 - parent: 104 - type: Transform -- uid: 217 - type: LightPostSmall - components: - - pos: -27.5,1.5 - parent: 104 - type: Transform -- uid: 218 - type: Railing - components: - - pos: -24.5,1.5 - parent: 104 - type: Transform -- uid: 219 - type: FloraTreeConifer02 - components: - - pos: 5.5,4.5 - parent: 104 - type: Transform -- uid: 220 - type: CableApcExtension - components: - - pos: 11.5,0.5 - parent: 104 - type: Transform -- uid: 221 - type: LightPostSmall - components: - - pos: 15.5,16.5 - parent: 104 - type: Transform -- uid: 222 - type: LightPostSmall - components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 104 - type: Transform -- uid: 223 - type: ClothingOuterWinterCoat - components: - - pos: 4.5,2.5 - parent: 104 - type: Transform -- uid: 224 - type: ClothingOuterWinterCoat - components: - - pos: 4.5,2.5 - parent: 104 - type: Transform -- uid: 225 - type: soda_dispenser - components: - - rot: 3.141592653589793 rad - pos: 4.5,-8.5 - parent: 104 - type: Transform -- uid: 226 - type: TableReinforced - components: - - pos: 5.5,10.5 - parent: 104 - type: Transform -- uid: 227 - type: PosterBroken - components: - - pos: -0.5,10.5 - parent: 104 - type: Transform -- uid: 228 - type: WeaponShotgunSawn - components: - - pos: 5.347948,13.528896 - parent: 104 - type: Transform - - unspawnedCount: 2 - type: BallisticAmmoProvider -- uid: 229 - type: TableReinforced - components: - - pos: 5.5,11.5 - parent: 104 - type: Transform -- uid: 230 - type: BoozeDispenser - components: - - rot: 3.141592653589793 rad - pos: 2.5,-8.5 - parent: 104 - type: Transform -- uid: 231 - type: ClothingOuterWinterCoat - components: - - pos: 4.5,2.5 - parent: 104 - type: Transform -- uid: 232 - type: ClothingOuterWinterCoat - components: - - pos: 4.5,2.5 - parent: 104 - type: Transform -- uid: 233 - type: ClothingOuterWinterCoat - components: - - pos: 4.5,2.5 - parent: 104 - type: Transform -- uid: 234 - type: TableReinforced - components: - - pos: 4.5,2.5 - parent: 104 - type: Transform -- uid: 235 - type: CableApcExtension - components: - - pos: 1.5,-13.5 - parent: 104 - type: Transform -- uid: 236 - type: WallIce - components: - - pos: -0.5,12.5 - parent: 104 - type: Transform -- uid: 237 - type: PosterLegitNanotrasenLogo - components: - - pos: -0.5,14.5 - parent: 104 - type: Transform -- uid: 238 - type: MountainRock - components: - - pos: -4.5,-13.5 - parent: 104 - type: Transform -- uid: 239 - type: TableReinforced - components: - - pos: 5.5,13.5 - parent: 104 - type: Transform -- uid: 240 - type: CableMV - components: - - pos: 17.5,-13.5 - parent: 104 - type: Transform -- uid: 241 - type: TableReinforced - components: - - pos: 5.5,14.5 - parent: 104 - type: Transform -- uid: 242 - type: WallPlastitanium - components: - - pos: -4.5,-5.5 - parent: 104 - type: Transform -- uid: 243 - type: MountainRock - components: - - pos: -4.5,-6.5 - parent: 104 - type: Transform -- uid: 244 - type: MountainRock - components: - - pos: -4.5,-8.5 - parent: 104 - type: Transform -- uid: 245 - type: CableApcExtension - components: - - pos: 12.5,-18.5 - parent: 104 - type: Transform -- uid: 246 - type: MountainRock - components: - - pos: -3.5,-8.5 - parent: 104 - type: Transform -- uid: 247 - type: MountainRock - components: - - pos: -4.5,-12.5 - parent: 104 - type: Transform -- uid: 248 - type: MountainRock - components: - - pos: -4.5,-7.5 - parent: 104 - type: Transform -- uid: 249 - type: MountainRock - components: - - pos: -8.5,9.5 - parent: 104 - type: Transform -- uid: 250 - type: MountainRock - components: - - pos: 0.5,-10.5 - parent: 104 - type: Transform -- uid: 251 - type: MountainRock - components: - - pos: 15.5,1.5 - parent: 104 - type: Transform -- uid: 252 - type: WallPlastitanium - components: - - pos: -3.5,-15.5 - parent: 104 - type: Transform -- uid: 253 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,0.5 - parent: 104 - type: Transform -- uid: 254 - type: Railing - components: - - pos: -18.5,1.5 - parent: 104 - type: Transform -- uid: 255 - type: MountainRock - components: - - pos: -3.5,-7.5 - parent: 104 - type: Transform -- uid: 256 - type: Catwalk - components: - - pos: -29.5,2.5 - parent: 104 - type: Transform -- uid: 257 - type: MountainRock - components: - - pos: 15.5,0.5 - parent: 104 - type: Transform -- uid: 258 - type: AlwaysPoweredWallLight - components: - - pos: -3.5,-2.5 - parent: 104 - type: Transform -- uid: 259 - type: MountainRock - components: - - pos: -4.5,-10.5 - parent: 104 - type: Transform -- uid: 260 - type: FloraTreeConifer02 - components: - - pos: 7.7267694,7.536619 - parent: 104 - type: Transform -- uid: 261 - type: FloraTreeConifer01 - components: - - pos: 7.7892694,4.987089 - parent: 104 - type: Transform -- uid: 262 - type: FloraTreeSnow01 - components: - - pos: 9.630766,6.7434845 - parent: 104 - type: Transform -- uid: 263 - type: MountainRock - components: - - pos: -4.5,-11.5 - parent: 104 - type: Transform -- uid: 264 - type: Catwalk - components: - - pos: -28.5,1.5 - parent: 104 - type: Transform -- uid: 265 - type: FloraTreeSnow04 - components: - - pos: 0.24603653,5.7335367 - parent: 104 - type: Transform -- uid: 266 - type: ClothingOuterWinterCoat - components: - - pos: 4.5,2.5 - parent: 104 - type: Transform -- uid: 267 - type: FloraTreeConifer02 - components: - - pos: 12.789269,3.6888618 - parent: 104 - type: Transform -- uid: 268 - type: FloraTreeConifer02 - components: - - pos: -0.17814255,7.5043383 - parent: 104 - type: Transform -- uid: 269 - type: FloraTreeSnow05 - components: - - pos: 0.30623245,3.9068413 - parent: 104 - type: Transform -- uid: 270 - type: FloraTreeSnow02 - components: - - pos: -2.3114033,5.0917635 - parent: 104 - type: Transform -- uid: 271 - type: FloraTreeConifer03 - components: - - pos: -1.1000175,4.26659 - parent: 104 - type: Transform -- uid: 272 - type: AirlockSecurity - components: - - pos: 14.5,-1.5 - parent: 104 - type: Transform -- uid: 273 - type: FloraTreeConifer02 - components: - - pos: -2.591959,2.9214401 - parent: 104 - type: Transform -- uid: 274 - type: FloraTreeSnow03 - components: - - pos: -3.3325882,6.8936405 - parent: 104 - type: Transform -- uid: 275 - type: FloraTreeConifer01 - components: - - pos: -3.80645,4.798395 - parent: 104 - type: Transform -- uid: 276 - type: FloraTreeSnow04 - components: - - pos: 5.8604717,5.2799397 - parent: 104 - type: Transform -- uid: 277 - type: MountainRock - components: - - pos: -10.5,22.5 - parent: 104 - type: Transform -- uid: 278 - type: Catwalk - components: - - pos: -21.5,-23.5 - parent: 104 - type: Transform -- uid: 279 - type: CableApcExtension - components: - - pos: 11.5,-0.5 - parent: 104 - type: Transform -- uid: 280 - type: FloraTreeConifer02 - components: - - pos: 1.5111885,4.4898434 - parent: 104 - type: Transform -- uid: 281 - type: FloraTreeConifer01 - components: - - pos: -1.0279694,6.890992 - parent: 104 - type: Transform -- uid: 282 - type: NukeDiskFake - components: - - pos: 12.149857,15.427643 - parent: 104 - type: Transform -- uid: 283 - type: PlushieNuke - components: - - pos: 12.912951,15.575253 - parent: 104 - type: Transform -- uid: 284 - type: ToyNuke - components: - - pos: 12.453509,14.985125 - parent: 104 - type: Transform -- uid: 285 - type: TableReinforced - components: - - pos: 5.5,12.5 - parent: 104 - type: Transform -- uid: 286 - type: SheetSteel - components: - - pos: 13.50732,-16.456295 - parent: 104 - type: Transform -- uid: 287 - type: Catwalk - components: - - pos: -20.5,-20.5 - parent: 104 - type: Transform -- uid: 288 - type: WallPlastitanium - components: - - pos: 14.5,-0.5 - parent: 104 - type: Transform -- uid: 289 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 15.5,-4.5 - parent: 104 - type: Transform -- uid: 290 - type: WallPlastitanium - components: - - pos: 15.5,-0.5 - parent: 104 - type: Transform -- uid: 291 - type: LightPostSmall - components: - - pos: 18.5,5.5 - parent: 104 - type: Transform -- uid: 292 - type: MountainRock - components: - - pos: -9.5,21.5 - parent: 104 - type: Transform -- uid: 293 - type: ToiletEmpty - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-1.5 - parent: 104 - type: Transform -- uid: 294 - type: MountainRock - components: - - pos: -10.5,21.5 - parent: 104 - type: Transform -- uid: 295 - type: MountainRock - components: - - pos: -11.5,22.5 - parent: 104 - type: Transform -- uid: 296 - type: MountainRock - components: - - pos: -20.5,9.5 - parent: 104 - type: Transform -- uid: 297 - type: CableApcExtension - components: - - pos: 3.5,-14.5 - parent: 104 - type: Transform -- uid: 298 - type: WallPlastitanium - components: - - pos: 13.5,-2.5 - parent: 104 - type: Transform -- uid: 299 - type: WallPlastitanium - components: - - pos: 14.5,-2.5 - parent: 104 - type: Transform -- uid: 300 - type: WallPlastitanium - components: - - pos: 15.5,-2.5 - parent: 104 - type: Transform -- uid: 301 - type: WallPlastitanium - components: - - pos: 16.5,-2.5 - parent: 104 - type: Transform -- uid: 302 - type: WallShuttle - components: - - pos: 17.5,-6.5 - parent: 104 - type: Transform -- uid: 303 - type: Grille - components: - - pos: 16.5,-6.5 - parent: 104 - type: Transform -- uid: 304 - type: Grille - components: - - pos: 16.5,-8.5 - parent: 104 - type: Transform -- uid: 305 - type: WallShuttle - components: - - pos: 19.5,-4.5 - parent: 104 - type: Transform -- uid: 306 - type: WallShuttleDiagonal - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 104 - type: Transform -- uid: 307 - type: WallShuttle - components: - - pos: 17.5,-8.5 - parent: 104 - type: Transform -- uid: 308 - type: WallShuttleDiagonal - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-9.5 - parent: 104 - type: Transform -- uid: 309 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-11.5 - parent: 104 - type: Transform -- uid: 310 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-12.5 - parent: 104 - type: Transform -- uid: 311 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-12.5 - parent: 104 - type: Transform -- uid: 312 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-12.5 - parent: 104 - type: Transform -- uid: 313 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-12.5 - parent: 104 - type: Transform -- uid: 314 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-12.5 - parent: 104 - type: Transform -- uid: 315 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-12.5 - parent: 104 - type: Transform -- uid: 316 - type: WallShuttle - components: - - pos: 21.5,-10.5 - parent: 104 - type: Transform -- uid: 317 - type: AirlockSecurityGlass - components: - - pos: 20.5,-4.5 - parent: 104 - type: Transform -- uid: 318 - type: WallShuttleDiagonal - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-9.5 - parent: 104 - type: Transform -- uid: 319 - type: WallShuttleDiagonal - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-10.5 - parent: 104 - type: Transform -- uid: 320 - type: WallShuttleDiagonal - components: - - pos: 17.5,-5.5 - parent: 104 - type: Transform -- uid: 321 - type: WallShuttleDiagonal - components: - - pos: 18.5,-4.5 - parent: 104 - type: Transform -- uid: 322 - type: WallShuttleDiagonal - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 104 - type: Transform -- uid: 323 - type: WallShuttleDiagonal - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 104 - type: Transform -- uid: 324 - type: WallShuttleDiagonal - components: - - rot: 3.141592653589793 rad - pos: 23.5,-9.5 - parent: 104 - type: Transform -- uid: 325 - type: WallShuttleDiagonal - components: - - rot: 3.141592653589793 rad - pos: 22.5,-10.5 - parent: 104 - type: Transform -- uid: 326 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: 20.5,-6.5 - parent: 104 - type: Transform -- uid: 327 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-7.5 - parent: 104 - type: Transform -- uid: 328 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-7.5 - parent: 104 - type: Transform -- uid: 329 - type: ChairPilotSeat - components: - - pos: 20.5,-8.5 - parent: 104 - type: Transform -- uid: 330 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-6.5 - parent: 104 - type: Transform -- uid: 331 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-5.5 - parent: 104 - type: Transform -- uid: 332 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-5.5 - parent: 104 - type: Transform -- uid: 333 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-6.5 - parent: 104 - type: Transform -- uid: 334 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 104 - type: Transform -- uid: 335 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-9.5 - parent: 104 - type: Transform -- uid: 336 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 - parent: 104 - type: Transform -- uid: 337 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-8.5 - parent: 104 - type: Transform -- uid: 338 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-7.5 - parent: 104 - type: Transform -- uid: 339 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-10.5 - parent: 104 - type: Transform -- uid: 340 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-9.5 - parent: 104 - type: Transform -- uid: 341 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-8.5 - parent: 104 - type: Transform -- uid: 342 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-7.5 - parent: 104 - type: Transform -- uid: 343 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 104 - type: Transform -- uid: 344 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-5.5 - parent: 104 - type: Transform -- uid: 345 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-4.5 - parent: 104 - type: Transform -- uid: 346 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-3.5 - parent: 104 - type: Transform -- uid: 347 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-2.5 - parent: 104 - type: Transform -- uid: 348 - type: AirlockSecurityGlass - components: - - pos: 14.5,-5.5 - parent: 104 - type: Transform -- uid: 349 - type: OxygenCanister - components: - - pos: 13.5,-3.5 - parent: 104 - type: Transform -- uid: 350 - type: CrateInternals - components: - - pos: 13.429766,-4.4159107 - parent: 104 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 351 - type: TableReinforced - components: - - pos: 15.5,-3.5 - parent: 104 - type: Transform -- uid: 352 - type: MedkitOxygenFilled - components: - - pos: 15.475336,-3.3565803 - parent: 104 - type: Transform -- uid: 353 - type: ClothingMaskBreath - components: - - pos: 15.537836,-3.450428 - parent: 104 - type: Transform -- uid: 354 - type: PottedPlantBioluminscent - components: - - pos: 12.5,-6.5 - parent: 104 - type: Transform -- uid: 355 - type: PottedPlantBioluminscent - components: - - pos: 12.5,-8.5 - parent: 104 - type: Transform -- uid: 356 - type: WallIce - components: - - pos: -6.5,21.5 - parent: 104 - type: Transform -- uid: 357 - type: WallIce - components: - - pos: -3.5,21.5 - parent: 104 - type: Transform -- uid: 358 - type: MountainRock - components: - - pos: -22.5,21.5 - parent: 104 - type: Transform -- uid: 359 - type: MountainRock - components: - - pos: -22.5,15.5 - parent: 104 - type: Transform -- uid: 360 - type: MountainRock - components: - - pos: -22.5,16.5 - parent: 104 - type: Transform -- uid: 361 - type: MountainRock - components: - - pos: -21.5,17.5 - parent: 104 - type: Transform -- uid: 362 - type: MountainRock - components: - - pos: -21.5,16.5 - parent: 104 - type: Transform -- uid: 363 - type: MountainRock - components: - - pos: -21.5,15.5 - parent: 104 - type: Transform -- uid: 364 - type: MountainRock - components: - - pos: -21.5,14.5 - parent: 104 - type: Transform -- uid: 365 - type: MountainRock - components: - - pos: -22.5,14.5 - parent: 104 - type: Transform -- uid: 366 - type: MountainRock - components: - - pos: -21.5,13.5 - parent: 104 - type: Transform -- uid: 367 - type: MountainRock - components: - - pos: -21.5,20.5 - parent: 104 - type: Transform -- uid: 368 - type: MountainRock - components: - - pos: -21.5,21.5 - parent: 104 - type: Transform -- uid: 369 - type: MountainRock - components: - - pos: -20.5,21.5 - parent: 104 - type: Transform -- uid: 370 - type: MountainRock - components: - - pos: -19.5,21.5 - parent: 104 - type: Transform -- uid: 371 - type: MountainRock - components: - - pos: -20.5,22.5 - parent: 104 - type: Transform -- uid: 372 - type: MountainRock - components: - - pos: -18.5,21.5 - parent: 104 - type: Transform -- uid: 373 - type: MountainRock - components: - - pos: -20.5,8.5 - parent: 104 - type: Transform -- uid: 374 - type: MountainRock - components: - - pos: -22.5,22.5 - parent: 104 - type: Transform -- uid: 375 - type: MountainRock - components: - - pos: -21.5,22.5 - parent: 104 - type: Transform -- uid: 376 - type: MountainRock - components: - - pos: -23.5,22.5 - parent: 104 - type: Transform -- uid: 377 - type: MountainRock - components: - - pos: -20.5,15.5 - parent: 104 - type: Transform -- uid: 378 - type: WallPlastitanium - components: - - pos: -3.5,-16.5 - parent: 104 - type: Transform -- uid: 379 - type: WallPlastitanium - components: - - pos: -3.5,-13.5 - parent: 104 - type: Transform -- uid: 380 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-11.5 - parent: 104 - type: Transform -- uid: 381 - type: Catwalk - components: - - pos: -20.5,-21.5 - parent: 104 - type: Transform -- uid: 382 - type: Catwalk - components: - - pos: -20.5,-23.5 - parent: 104 - type: Transform -- uid: 383 - type: Catwalk - components: - - pos: -20.5,-22.5 - parent: 104 - type: Transform -- uid: 384 - type: Catwalk - components: - - pos: -19.5,-20.5 - parent: 104 - type: Transform -- uid: 385 - type: Catwalk - components: - - pos: -30.5,4.5 - parent: 104 - type: Transform -- uid: 386 - type: Catwalk - components: - - pos: -28.5,-20.5 - parent: 104 - type: Transform -- uid: 387 - type: Catwalk - components: - - pos: -34.5,1.5 - parent: 104 - type: Transform -- uid: 388 - type: Catwalk - components: - - pos: -29.5,3.5 - parent: 104 - type: Transform -- uid: 389 - type: Catwalk - components: - - pos: -14.5,-22.5 - parent: 104 - type: Transform -- uid: 390 - type: CableApcExtension - components: - - pos: -10.5,-7.5 - parent: 104 - type: Transform -- uid: 391 - type: Catwalk - components: - - pos: -33.5,3.5 - parent: 104 - type: Transform -- uid: 392 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -34.5,-21.5 - parent: 104 - type: Transform -- uid: 393 - type: Catwalk - components: - - pos: -19.5,-22.5 - parent: 104 - type: Transform -- uid: 394 - type: Catwalk - components: - - pos: -32.5,4.5 - parent: 104 - type: Transform -- uid: 395 - type: Catwalk - components: - - pos: -24.5,-21.5 - parent: 104 - type: Transform -- uid: 396 - type: Catwalk - components: - - pos: -10.5,-16.5 - parent: 104 - type: Transform -- uid: 397 - type: CableApcExtension - components: - - pos: -10.5,0.5 - parent: 104 - type: Transform -- uid: 398 - type: Catwalk - components: - - pos: -9.5,-15.5 - parent: 104 - type: Transform -- uid: 399 - type: Catwalk - components: - - pos: -10.5,-15.5 - parent: 104 - type: Transform -- uid: 400 - type: Catwalk - components: - - pos: -9.5,-14.5 - parent: 104 - type: Transform -- uid: 401 - type: MountainRock - components: - - pos: -20.5,20.5 - parent: 104 - type: Transform -- uid: 402 - type: MountainRock - components: - - pos: -20.5,19.5 - parent: 104 - type: Transform -- uid: 403 - type: MountainRock - components: - - pos: -20.5,18.5 - parent: 104 - type: Transform -- uid: 404 - type: MountainRock - components: - - pos: -20.5,17.5 - parent: 104 - type: Transform -- uid: 405 - type: MountainRock - components: - - pos: -20.5,16.5 - parent: 104 - type: Transform -- uid: 406 - type: MountainRock - components: - - pos: -20.5,14.5 - parent: 104 - type: Transform -- uid: 407 - type: MountainRock - components: - - pos: -24.5,23.5 - parent: 104 - type: Transform -- uid: 408 - type: MountainRock - components: - - pos: -24.5,22.5 - parent: 104 - type: Transform -- uid: 409 - type: MountainRock - components: - - pos: -20.5,10.5 - parent: 104 - type: Transform -- uid: 410 - type: MountainRock - components: - - pos: -9.5,22.5 - parent: 104 - type: Transform -- uid: 411 - type: CableApcExtension - components: - - pos: -10.5,-8.5 - parent: 104 - type: Transform -- uid: 412 - type: AirlockGlassShuttle - components: - - pos: -21.5,1.5 - parent: 104 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 413 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -24.5,3.5 - parent: 104 - type: Transform -- uid: 414 - type: Railing - components: - - pos: -16.5,1.5 - parent: 104 - type: Transform -- uid: 415 - type: MountainRock - components: - - pos: -18.5,23.5 - parent: 104 - type: Transform -- uid: 416 - type: WallIce - components: - - pos: -4.5,21.5 - parent: 104 - type: Transform -- uid: 417 - type: MountainRock - components: - - pos: -16.5,6.5 - parent: 104 - type: Transform -- uid: 418 - type: WallPlastitanium - components: - - rot: -1.5707963267948966 rad - pos: -12.5,8.5 - parent: 104 - type: Transform -- uid: 419 - type: MountainRock - components: - - pos: -7.5,21.5 - parent: 104 - type: Transform -- uid: 420 - type: MountainRock - components: - - pos: -8.5,21.5 - parent: 104 - type: Transform -- uid: 421 - type: MountainRock - components: - - pos: -10.5,23.5 - parent: 104 - type: Transform -- uid: 422 - type: MountainRock - components: - - pos: -11.5,23.5 - parent: 104 - type: Transform -- uid: 423 - type: MountainRock - components: - - pos: -19.5,22.5 - parent: 104 - type: Transform -- uid: 424 - type: WallPlastitanium - components: - - pos: -10.5,8.5 - parent: 104 - type: Transform -- uid: 425 - type: MountainRock - components: - - pos: -18.5,22.5 - parent: 104 - type: Transform -- uid: 426 - type: MountainRock - components: - - pos: -7.5,12.5 - parent: 104 - type: Transform -- uid: 427 - type: WallPlastitanium - components: - - pos: -1.5,-9.5 - parent: 104 - type: Transform -- uid: 428 - type: AirlockGlassShuttle - components: - - pos: -17.5,1.5 - parent: 104 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 429 - type: CableApcExtension - components: - - pos: -10.5,-0.5 - parent: 104 - type: Transform -- uid: 430 - type: CableApcExtension - components: - - pos: -10.5,1.5 - parent: 104 - type: Transform -- uid: 431 - type: Catwalk - components: - - pos: -9.5,-13.5 - parent: 104 - type: Transform -- uid: 432 - type: CableApcExtension - components: - - pos: -27.5,1.5 - parent: 104 - type: Transform -- uid: 433 - type: AirlockGlassShuttle - components: - - pos: -13.5,1.5 - parent: 104 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 434 - type: CableApcExtension - components: - - pos: -31.5,1.5 - parent: 104 - type: Transform -- uid: 435 - type: CableApcExtension - components: - - pos: -10.5,-4.5 - parent: 104 - type: Transform -- uid: 436 - type: CableApcExtension - components: - - pos: -10.5,-6.5 - parent: 104 - type: Transform -- uid: 437 - type: CableApcExtension - components: - - pos: -10.5,-9.5 - parent: 104 - type: Transform -- uid: 438 - type: CableApcExtension - components: - - pos: -25.5,1.5 - parent: 104 - type: Transform -- uid: 439 - type: CableApcExtension - components: - - pos: -10.5,-3.5 - parent: 104 - type: Transform -- uid: 440 - type: Catwalk - components: - - pos: -16.5,-21.5 - parent: 104 - type: Transform -- uid: 441 - type: WallPlastitanium - components: - - pos: -2.5,-1.5 - parent: 104 - type: Transform -- uid: 442 - type: CableApcExtension - components: - - pos: -33.5,1.5 - parent: 104 - type: Transform -- uid: 443 - type: WallPlastitanium - components: - - pos: -3.5,-1.5 - parent: 104 - type: Transform -- uid: 444 - type: CableApcExtension - components: - - pos: -10.5,1.5 - parent: 104 - type: Transform -- uid: 445 - type: Railing - components: - - pos: -19.5,1.5 - parent: 104 - type: Transform -- uid: 446 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-6.5 - parent: 104 - type: Transform -- uid: 447 - type: MedkitAdvancedFilled - components: - - pos: 7.5183387,-10.279964 - parent: 104 - type: Transform -- uid: 448 - type: MedkitRadiationFilled - components: - - pos: 7.5495887,-11.733089 - parent: 104 - type: Transform -- uid: 449 - type: CableApcExtension - components: - - pos: -11.5,1.5 - parent: 104 - type: Transform -- uid: 450 - type: CableApcExtension - components: - - pos: -12.5,1.5 - parent: 104 - type: Transform -- uid: 451 - type: CableApcExtension - components: - - pos: -13.5,1.5 - parent: 104 - type: Transform -- uid: 452 - type: CableApcExtension - components: - - pos: -14.5,1.5 - parent: 104 - type: Transform -- uid: 453 - type: CableApcExtension - components: - - pos: -32.5,1.5 - parent: 104 - type: Transform -- uid: 454 - type: CableApcExtension - components: - - pos: -15.5,1.5 - parent: 104 - type: Transform -- uid: 455 - type: MountainRock - components: - - pos: 1.5,-19.5 - parent: 104 - type: Transform -- uid: 456 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 104 - type: Transform -- uid: 457 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-3.5 - parent: 104 - type: Transform -- uid: 458 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-4.5 - parent: 104 - type: Transform -- uid: 459 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -8.5,5.5 - parent: 104 - type: Transform -- uid: 460 - type: SheetPlastic - components: - - pos: 12.60107,-16.44067 - parent: 104 - type: Transform -- uid: 461 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-5.5 - parent: 104 - type: Transform -- uid: 462 - type: WallPlastitanium - components: - - pos: -5.5,-5.5 - parent: 104 - type: Transform -- uid: 463 - type: WallPlastitanium - components: - - pos: -4.5,-1.5 - parent: 104 - type: Transform -- uid: 464 - type: CableApcExtension - components: - - pos: -16.5,1.5 - parent: 104 - type: Transform -- uid: 465 - type: CableApcExtension - components: - - pos: -17.5,1.5 - parent: 104 - type: Transform -- uid: 466 - type: CableApcExtension - components: - - pos: -18.5,1.5 - parent: 104 - type: Transform -- uid: 467 - type: CableApcExtension - components: - - pos: -19.5,1.5 - parent: 104 - type: Transform -- uid: 468 - type: Catwalk - components: - - pos: -9.5,-21.5 - parent: 104 - type: Transform -- uid: 469 - type: MountainRock - components: - - pos: -8.5,10.5 - parent: 104 - type: Transform -- uid: 470 - type: Catwalk - components: - - pos: -9.5,-20.5 - parent: 104 - type: Transform -- uid: 471 - type: MountainRock - components: - - pos: -9.5,10.5 - parent: 104 - type: Transform -- uid: 472 - type: Rack - components: - - pos: 11.5,-16.5 - parent: 104 - type: Transform -- uid: 473 - type: MountainRock - components: - - pos: -8.5,11.5 - parent: 104 - type: Transform -- uid: 474 - type: WallPlastitanium - components: - - pos: -5.5,-1.5 - parent: 104 - type: Transform -- uid: 475 - type: MountainRock - components: - - pos: -9.5,11.5 - parent: 104 - type: Transform -- uid: 476 - type: Railing - components: - - pos: -20.5,1.5 - parent: 104 - type: Transform -- uid: 477 - type: MountainRock - components: - - pos: 16.5,0.5 - parent: 104 - type: Transform -- uid: 478 - type: MountainRock - components: - - pos: -6.5,12.5 - parent: 104 - type: Transform -- uid: 479 - type: MountainRock - components: - - pos: -2.5,-18.5 - parent: 104 - type: Transform -- uid: 480 - type: MountainRock - components: - - pos: -2.5,-19.5 - parent: 104 - type: Transform -- uid: 481 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -8.5,6.5 - parent: 104 - type: Transform -- uid: 482 - type: WallPlastitanium - components: - - pos: -9.5,8.5 - parent: 104 - type: Transform -- uid: 483 - type: MountainRock - components: - - pos: -2.5,-10.5 - parent: 104 - type: Transform -- uid: 484 - type: SmallLight - components: - - pos: -12.5,7.5 - parent: 104 - type: Transform -- uid: 485 - type: MountainRock - components: - - pos: -2.5,-6.5 - parent: 104 - type: Transform -- uid: 486 - type: WallPlastitanium - components: - - pos: -16.5,8.5 - parent: 104 - type: Transform -- uid: 487 - type: Railing - components: - - pos: -11.5,1.5 - parent: 104 - type: Transform -- uid: 488 - type: MountainRock - components: - - pos: -2.5,-7.5 - parent: 104 - type: Transform -- uid: 489 - type: MountainRock - components: - - pos: -2.5,-8.5 - parent: 104 - type: Transform -- uid: 490 - type: Railing - components: - - pos: -22.5,1.5 - parent: 104 - type: Transform -- uid: 491 - type: Railing - components: - - pos: -31.5,1.5 - parent: 104 - type: Transform -- uid: 492 - type: MountainRock - components: - - pos: -3.5,-20.5 - parent: 104 - type: Transform -- uid: 493 - type: WallPlastitanium - components: - - pos: -3.5,-12.5 - parent: 104 - type: Transform -- uid: 494 - type: Railing - components: - - pos: -12.5,1.5 - parent: 104 - type: Transform -- uid: 495 - type: WallPlastitanium - components: - - pos: -2.5,-5.5 - parent: 104 - type: Transform -- uid: 496 - type: Railing - components: - - pos: -23.5,1.5 - parent: 104 - type: Transform -- uid: 497 - type: WallPlastitanium - components: - - pos: -2.5,-17.5 - parent: 104 - type: Transform -- uid: 498 - type: ReinforcedWindow - components: - - pos: -1.5,-17.5 - parent: 104 - type: Transform -- uid: 499 - type: Catwalk - components: - - pos: -9.5,-19.5 - parent: 104 - type: Transform -- uid: 500 - type: Catwalk - components: - - pos: -9.5,-18.5 - parent: 104 - type: Transform -- uid: 501 - type: CableApcExtension - components: - - pos: -34.5,1.5 - parent: 104 - type: Transform -- uid: 502 - type: MountainRock - components: - - pos: -3.5,-18.5 - parent: 104 - type: Transform -- uid: 503 - type: CableApcExtension - components: - - pos: -20.5,1.5 - parent: 104 - type: Transform -- uid: 504 - type: MountainRock - components: - - pos: -2.5,-9.5 - parent: 104 - type: Transform -- uid: 505 - type: MountainRock - components: - - pos: -3.5,-19.5 - parent: 104 - type: Transform -- uid: 506 - type: MountainRock - components: - - pos: 17.5,-1.5 - parent: 104 - type: Transform -- uid: 507 - type: KitchenReagentGrinder - components: - - pos: 3.5,-11.5 - parent: 104 - type: Transform -- uid: 508 - type: CableApcExtension - components: - - pos: -21.5,1.5 - parent: 104 - type: Transform -- uid: 509 - type: MountainRock - components: - - pos: -4.5,-19.5 - parent: 104 - type: Transform -- uid: 510 - type: CableApcExtension - components: - - pos: -22.5,1.5 - parent: 104 - type: Transform -- uid: 511 - type: MountainRock - components: - - pos: -4.5,-18.5 - parent: 104 - type: Transform -- uid: 512 - type: MountainRock - components: - - pos: -9.5,12.5 - parent: 104 - type: Transform -- uid: 513 - type: MountainRock - components: - - pos: -3.5,-9.5 - parent: 104 - type: Transform -- uid: 514 - type: CableApcExtension - components: - - pos: -23.5,1.5 - parent: 104 - type: Transform -- uid: 515 - type: CableApcExtension - components: - - pos: -24.5,1.5 - parent: 104 - type: Transform -- uid: 516 - type: Catwalk - components: - - pos: -9.5,-17.5 - parent: 104 - type: Transform -- uid: 517 - type: Catwalk - components: - - pos: -9.5,-16.5 - parent: 104 - type: Transform -- uid: 518 - type: Catwalk - components: - - pos: -10.5,-14.5 - parent: 104 - type: Transform -- uid: 519 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -31.5,-21.5 - parent: 104 - type: Transform -- uid: 520 - type: Catwalk - components: - - pos: -26.5,1.5 - parent: 104 - type: Transform -- uid: 521 - type: MountainRock - components: - - pos: -4.5,-14.5 - parent: 104 - type: Transform -- uid: 522 - type: MountainRock - components: - - pos: -1.5,19.5 - parent: 104 - type: Transform -- uid: 523 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -8.5,7.5 - parent: 104 - type: Transform -- uid: 524 - type: MountainRock - components: - - pos: -0.5,19.5 - parent: 104 - type: Transform -- uid: 525 - type: MountainRock - components: - - pos: 9.5,20.5 - parent: 104 - type: Transform -- uid: 526 - type: Grille - components: - - pos: 0.5,21.5 - parent: 104 - type: Transform -- uid: 527 - type: Grille - components: - - pos: 6.5,21.5 - parent: 104 - type: Transform -- uid: 528 - type: Grille - components: - - pos: 1.5,21.5 - parent: 104 - type: Transform -- uid: 529 - type: MountainRock - components: - - pos: 10.5,19.5 - parent: 104 - type: Transform -- uid: 530 - type: ReinforcedWindow - components: - - pos: 8.5,20.5 - parent: 104 - type: Transform -- uid: 531 - type: MountainRock - components: - - pos: 11.5,19.5 - parent: 104 - type: Transform -- uid: 532 - type: MountainRock - components: - - pos: 12.5,19.5 - parent: 104 - type: Transform -- uid: 533 - type: MountainRock - components: - - pos: 16.5,19.5 - parent: 104 - type: Transform -- uid: 534 - type: MountainRock - components: - - pos: 17.5,19.5 - parent: 104 - type: Transform -- uid: 535 - type: MountainRock - components: - - pos: 18.5,19.5 - parent: 104 - type: Transform -- uid: 536 - type: MountainRock - components: - - pos: 18.5,11.5 - parent: 104 - type: Transform -- uid: 537 - type: MountainRock - components: - - pos: 18.5,12.5 - parent: 104 - type: Transform -- uid: 538 - type: MountainRock - components: - - pos: 18.5,15.5 - parent: 104 - type: Transform -- uid: 539 - type: MountainRock - components: - - pos: 18.5,18.5 - parent: 104 - type: Transform -- uid: 540 - type: MountainRock - components: - - pos: 22.5,3.5 - parent: 104 - type: Transform -- uid: 541 - type: MountainRock - components: - - pos: 23.5,3.5 - parent: 104 - type: Transform -- uid: 542 - type: MountainRock - components: - - pos: 24.5,3.5 - parent: 104 - type: Transform -- uid: 543 - type: MountainRock - components: - - pos: 25.5,3.5 - parent: 104 - type: Transform -- uid: 544 - type: MountainRock - components: - - pos: 26.5,3.5 - parent: 104 - type: Transform -- uid: 545 - type: MountainRock - components: - - pos: 27.5,3.5 - parent: 104 - type: Transform -- uid: 546 - type: MountainRock - components: - - pos: 28.5,3.5 - parent: 104 - type: Transform -- uid: 547 - type: MountainRock - components: - - pos: 29.5,3.5 - parent: 104 - type: Transform -- uid: 548 - type: MountainRock - components: - - pos: 30.5,3.5 - parent: 104 - type: Transform -- uid: 549 - type: MountainRock - components: - - pos: 22.5,-22.5 - parent: 104 - type: Transform -- uid: 550 - type: MountainRock - components: - - pos: 31.5,-20.5 - parent: 104 - type: Transform -- uid: 551 - type: MountainRock - components: - - pos: 31.5,-19.5 - parent: 104 - type: Transform -- uid: 552 - type: MountainRock - components: - - pos: 31.5,-18.5 - parent: 104 - type: Transform -- uid: 553 - type: MountainRock - components: - - pos: 31.5,-17.5 - parent: 104 - type: Transform -- uid: 554 - type: MountainRock - components: - - pos: 31.5,-16.5 - parent: 104 - type: Transform -- uid: 555 - type: MountainRock - components: - - pos: 31.5,-15.5 - parent: 104 - type: Transform -- uid: 556 - type: MountainRock - components: - - pos: 31.5,-14.5 - parent: 104 - type: Transform -- uid: 557 - type: MountainRock - components: - - pos: 31.5,-13.5 - parent: 104 - type: Transform -- uid: 558 - type: MountainRock - components: - - pos: 31.5,-12.5 - parent: 104 - type: Transform -- uid: 559 - type: MountainRock - components: - - pos: 31.5,-7.5 - parent: 104 - type: Transform -- uid: 560 - type: MountainRock - components: - - pos: 31.5,-6.5 - parent: 104 - type: Transform -- uid: 561 - type: MountainRock - components: - - pos: 31.5,-5.5 - parent: 104 - type: Transform -- uid: 562 - type: MountainRock - components: - - pos: 31.5,-4.5 - parent: 104 - type: Transform -- uid: 563 - type: MountainRock - components: - - pos: 31.5,-3.5 - parent: 104 - type: Transform -- uid: 564 - type: MountainRock - components: - - pos: 31.5,-2.5 - parent: 104 - type: Transform -- uid: 565 - type: MountainRock - components: - - pos: 31.5,-1.5 - parent: 104 - type: Transform -- uid: 566 - type: MountainRock - components: - - pos: 31.5,-0.5 - parent: 104 - type: Transform -- uid: 567 - type: MountainRock - components: - - pos: 31.5,0.5 - parent: 104 - type: Transform -- uid: 568 - type: MountainRock - components: - - pos: 31.5,1.5 - parent: 104 - type: Transform -- uid: 569 - type: MountainRock - components: - - pos: 17.5,-22.5 - parent: 104 - type: Transform -- uid: 570 - type: MountainRock - components: - - pos: 18.5,-22.5 - parent: 104 - type: Transform -- uid: 571 - type: MountainRock - components: - - pos: 19.5,-22.5 - parent: 104 - type: Transform -- uid: 572 - type: MountainRock - components: - - pos: 20.5,-22.5 - parent: 104 - type: Transform -- uid: 573 - type: MountainRock - components: - - pos: 21.5,-22.5 - parent: 104 - type: Transform -- uid: 574 - type: MountainRock - components: - - pos: -5.5,-22.5 - parent: 104 - type: Transform -- uid: 575 - type: MountainRock - components: - - pos: 23.5,-22.5 - parent: 104 - type: Transform -- uid: 576 - type: MountainRock - components: - - pos: 24.5,-22.5 - parent: 104 - type: Transform -- uid: 577 - type: MountainRock - components: - - pos: 25.5,-22.5 - parent: 104 - type: Transform -- uid: 578 - type: MountainRock - components: - - pos: 26.5,-22.5 - parent: 104 - type: Transform -- uid: 579 - type: MountainRock - components: - - pos: 27.5,-22.5 - parent: 104 - type: Transform -- uid: 580 - type: MountainRock - components: - - pos: 28.5,-22.5 - parent: 104 - type: Transform -- uid: 581 - type: MountainRock - components: - - pos: -4.5,-20.5 - parent: 104 - type: Transform -- uid: 582 - type: MountainRock - components: - - pos: -4.5,-15.5 - parent: 104 - type: Transform -- uid: 583 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -28.5,-20.5 - parent: 104 - type: Transform -- uid: 584 - type: Catwalk - components: - - pos: -10.5,-13.5 - parent: 104 - type: Transform -- uid: 585 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-22.5 - parent: 104 - type: Transform -- uid: 586 - type: MountainRock - components: - - pos: 4.5,-22.5 - parent: 104 - type: Transform -- uid: 587 - type: MountainRock - components: - - pos: 5.5,-22.5 - parent: 104 - type: Transform -- uid: 588 - type: MountainRock - components: - - pos: 6.5,-22.5 - parent: 104 - type: Transform -- uid: 589 - type: MountainRock - components: - - pos: 7.5,-22.5 - parent: 104 - type: Transform -- uid: 590 - type: MountainRock - components: - - pos: 8.5,-22.5 - parent: 104 - type: Transform -- uid: 591 - type: WallPlastitanium - components: - - pos: 15.5,-23.5 - parent: 104 - type: Transform -- uid: 592 - type: WallPlastitanium - components: - - pos: 9.5,-20.5 - parent: 104 - type: Transform -- uid: 593 - type: WallPlastitanium - components: - - pos: 9.5,-22.5 - parent: 104 - type: Transform -- uid: 594 - type: WallPlastitanium - components: - - pos: 9.5,-18.5 - parent: 104 - type: Transform -- uid: 595 - type: MountainRock - components: - - pos: -5.5,-21.5 - parent: 104 - type: Transform -- uid: 596 - type: MountainRock - components: - - pos: -5.5,-20.5 - parent: 104 - type: Transform -- uid: 597 - type: MountainRock - components: - - pos: -5.5,-19.5 - parent: 104 - type: Transform -- uid: 598 - type: MountainRock - components: - - pos: -5.5,-18.5 - parent: 104 - type: Transform -- uid: 599 - type: MountainRock - components: - - pos: -5.5,-17.5 - parent: 104 - type: Transform -- uid: 600 - type: MountainRock - components: - - pos: -5.5,-16.5 - parent: 104 - type: Transform -- uid: 601 - type: MountainRock - components: - - pos: -5.5,-15.5 - parent: 104 - type: Transform -- uid: 602 - type: MountainRock - components: - - pos: -5.5,-14.5 - parent: 104 - type: Transform -- uid: 603 - type: MountainRock - components: - - pos: -5.5,-13.5 - parent: 104 - type: Transform -- uid: 604 - type: MountainRock - components: - - pos: -5.5,-12.5 - parent: 104 - type: Transform -- uid: 605 - type: MountainRock - components: - - pos: -5.5,-11.5 - parent: 104 - type: Transform -- uid: 606 - type: MountainRock - components: - - pos: -5.5,-10.5 - parent: 104 - type: Transform -- uid: 607 - type: MountainRock - components: - - pos: -5.5,-9.5 - parent: 104 - type: Transform -- uid: 608 - type: MountainRock - components: - - pos: -5.5,-8.5 - parent: 104 - type: Transform -- uid: 609 - type: MountainRock - components: - - pos: -5.5,-7.5 - parent: 104 - type: Transform -- uid: 610 - type: MountainRock - components: - - pos: -14.5,16.5 - parent: 104 - type: Transform -- uid: 611 - type: WallPlastitanium - components: - - pos: -5.5,-6.5 - parent: 104 - type: Transform -- uid: 612 - type: Paper - components: - - pos: -14.166584,9.634687 - parent: 104 - type: Transform -- uid: 613 - type: WallPlastitanium - components: - - pos: -13.5,19.5 - parent: 104 - type: Transform -- uid: 614 - type: MountainRock - components: - - pos: -16.5,15.5 - parent: 104 - type: Transform -- uid: 615 - type: MountainRock - components: - - pos: -10.5,9.5 - parent: 104 - type: Transform -- uid: 616 - type: Catwalk - components: - - pos: -31.5,3.5 - parent: 104 - type: Transform -- uid: 617 - type: Catwalk - components: - - pos: -14.5,-23.5 - parent: 104 - type: Transform -- uid: 618 - type: MountainRock - components: - - pos: -8.5,12.5 - parent: 104 - type: Transform -- uid: 619 - type: CableApcExtension - components: - - pos: -10.5,-12.5 - parent: 104 - type: Transform -- uid: 620 - type: SurveillanceCameraRouterGeneral - components: - - pos: -15.5,9.5 - parent: 104 - type: Transform -- uid: 621 - type: MountainRock - components: - - pos: -9.5,9.5 - parent: 104 - type: Transform -- uid: 622 - type: MountainRock - components: - - pos: -10.5,10.5 - parent: 104 - type: Transform -- uid: 623 - type: WallPlastitanium - components: - - pos: -17.5,19.5 - parent: 104 - type: Transform -- uid: 624 - type: CableApcExtension - components: - - pos: -10.5,-10.5 - parent: 104 - type: Transform -- uid: 625 - type: CableApcExtension - components: - - pos: -10.5,-11.5 - parent: 104 - type: Transform -- uid: 626 - type: Catwalk - components: - - pos: -16.5,-22.5 - parent: 104 - type: Transform -- uid: 627 - type: CableApcExtension - components: - - pos: -10.5,-15.5 - parent: 104 - type: Transform -- uid: 628 - type: CableApcExtension - components: - - pos: -10.5,-16.5 - parent: 104 - type: Transform -- uid: 629 - type: LightPostSmall - components: - - rot: 1.5707963267948966 rad - pos: -0.5,8.5 - parent: 104 - type: Transform -- uid: 630 - type: CableApcExtension - components: - - pos: -10.5,-17.5 - parent: 104 - type: Transform -- uid: 631 - type: Catwalk - components: - - pos: -9.5,-23.5 - parent: 104 - type: Transform -- uid: 632 - type: MountainRock - components: - - pos: -10.5,12.5 - parent: 104 - type: Transform -- uid: 633 - type: Catwalk - components: - - pos: -9.5,-22.5 - parent: 104 - type: Transform -- uid: 634 - type: Catwalk - components: - - pos: -16.5,-23.5 - parent: 104 - type: Transform -- uid: 635 - type: CableApcExtension - components: - - pos: -10.5,-20.5 - parent: 104 - type: Transform -- uid: 636 - type: CableApcExtension - components: - - pos: -11.5,-20.5 - parent: 104 - type: Transform -- uid: 637 - type: MountainRock - components: - - pos: -10.5,11.5 - parent: 104 - type: Transform -- uid: 638 - type: CableApcExtension - components: - - pos: -12.5,-20.5 - parent: 104 - type: Transform -- uid: 639 - type: CableApcExtension - components: - - pos: -13.5,-20.5 - parent: 104 - type: Transform -- uid: 640 - type: MountainRock - components: - - pos: -16.5,5.5 - parent: 104 - type: Transform -- uid: 641 - type: Catwalk - components: - - pos: -11.5,-22.5 - parent: 104 - type: Transform -- uid: 642 - type: Catwalk - components: - - pos: -11.5,-23.5 - parent: 104 - type: Transform -- uid: 643 - type: Catwalk - components: - - pos: -10.5,-23.5 - parent: 104 - type: Transform -- uid: 644 - type: CableApcExtension - components: - - pos: -30.5,-20.5 - parent: 104 - type: Transform -- uid: 645 - type: CableApcExtension - components: - - pos: -31.5,-20.5 - parent: 104 - type: Transform -- uid: 646 - type: CableApcExtension - components: - - pos: -32.5,-20.5 - parent: 104 - type: Transform -- uid: 647 - type: Catwalk - components: - - pos: -13.5,-23.5 - parent: 104 - type: Transform -- uid: 648 - type: MountainRock - components: - - pos: -11.5,13.5 - parent: 104 - type: Transform -- uid: 649 - type: ReinforcedWindow - components: - - pos: -12.5,5.5 - parent: 104 - type: Transform -- uid: 650 - type: AirlockCargoGlass - components: - - pos: -11.5,6.5 - parent: 104 - type: Transform -- uid: 651 - type: WallPlastitanium - components: - - pos: -17.5,23.5 - parent: 104 - type: Transform -- uid: 652 - type: Catwalk - components: - - pos: -15.5,-20.5 - parent: 104 - type: Transform -- uid: 653 - type: CableApcExtension - components: - - pos: -15.5,-20.5 - parent: 104 - type: Transform -- uid: 654 - type: CableApcExtension - components: - - pos: -16.5,-20.5 - parent: 104 - type: Transform -- uid: 655 - type: CableApcExtension - components: - - pos: -17.5,-20.5 - parent: 104 - type: Transform -- uid: 656 - type: CableApcExtension - components: - - pos: -18.5,-20.5 - parent: 104 - type: Transform -- uid: 657 - type: CableApcExtension - components: - - pos: -19.5,-20.5 - parent: 104 - type: Transform -- uid: 658 - type: CableApcExtension - components: - - pos: -20.5,-20.5 - parent: 104 - type: Transform -- uid: 659 - type: CableApcExtension - components: - - pos: -21.5,-20.5 - parent: 104 - type: Transform -- uid: 660 - type: CableApcExtension - components: - - pos: -22.5,-20.5 - parent: 104 - type: Transform -- uid: 661 - type: CableApcExtension - components: - - pos: -23.5,-20.5 - parent: 104 - type: Transform -- uid: 662 - type: CableApcExtension - components: - - pos: -24.5,-20.5 - parent: 104 - type: Transform -- uid: 663 - type: Catwalk - components: - - pos: -12.5,-23.5 - parent: 104 - type: Transform -- uid: 664 - type: Catwalk - components: - - pos: -11.5,-20.5 - parent: 104 - type: Transform -- uid: 665 - type: CableApcExtension - components: - - pos: -25.5,-20.5 - parent: 104 - type: Transform -- uid: 666 - type: CableApcExtension - components: - - pos: -26.5,-20.5 - parent: 104 - type: Transform -- uid: 667 - type: CableApcExtension - components: - - pos: -27.5,-20.5 - parent: 104 - type: Transform -- uid: 668 - type: CableApcExtension - components: - - pos: -28.5,-20.5 - parent: 104 - type: Transform -- uid: 669 - type: CableApcExtension - components: - - pos: -29.5,-20.5 - parent: 104 - type: Transform -- uid: 670 - type: MountainRock - components: - - pos: -18.5,10.5 - parent: 104 - type: Transform -- uid: 671 - type: WallPlastitanium - components: - - pos: -12.5,24.5 - parent: 104 - type: Transform -- uid: 672 - type: MountainRock - components: - - pos: -16.5,16.5 - parent: 104 - type: Transform -- uid: 673 - type: MountainRock - components: - - pos: -11.5,12.5 - parent: 104 - type: Transform -- uid: 674 - type: MountainRock - components: - - pos: -19.5,15.5 - parent: 104 - type: Transform -- uid: 675 - type: WallPlastitanium - components: - - rot: -1.5707963267948966 rad - pos: -12.5,9.5 - parent: 104 - type: Transform -- uid: 676 - type: MountainRock - components: - - pos: -19.5,16.5 - parent: 104 - type: Transform -- uid: 677 - type: MountainRock - components: - - pos: -18.5,11.5 - parent: 104 - type: Transform -- uid: 678 - type: MountainRock - components: - - pos: -14.5,11.5 - parent: 104 - type: Transform -- uid: 679 - type: MountainRock - components: - - pos: -14.5,17.5 - parent: 104 - type: Transform -- uid: 680 - type: MountainRock - components: - - pos: -14.5,18.5 - parent: 104 - type: Transform -- uid: 681 - type: MountainRock - components: - - pos: -15.5,14.5 - parent: 104 - type: Transform -- uid: 682 - type: MountainRock - components: - - pos: -24.5,25.5 - parent: 104 - type: Transform -- uid: 683 - type: WallPlastitanium - components: - - pos: -15.5,10.5 - parent: 104 - type: Transform -- uid: 684 - type: MountainRock - components: - - pos: -17.5,13.5 - parent: 104 - type: Transform -- uid: 685 - type: MountainRock - components: - - pos: -15.5,16.5 - parent: 104 - type: Transform -- uid: 686 - type: MountainRock - components: - - pos: -12.5,12.5 - parent: 104 - type: Transform -- uid: 687 - type: MountainRock - components: - - pos: -12.5,11.5 - parent: 104 - type: Transform -- uid: 688 - type: MountainRock - components: - - pos: -11.5,14.5 - parent: 104 - type: Transform -- uid: 689 - type: MountainRock - components: - - pos: -15.5,15.5 - parent: 104 - type: Transform -- uid: 690 - type: MountainRock - components: - - pos: -14.5,14.5 - parent: 104 - type: Transform -- uid: 691 - type: MountainRock - components: - - pos: -19.5,14.5 - parent: 104 - type: Transform -- uid: 692 - type: MountainRock - components: - - pos: -13.5,16.5 - parent: 104 - type: Transform -- uid: 693 - type: MountainRock - components: - - pos: -17.5,15.5 - parent: 104 - type: Transform -- uid: 694 - type: MountainRock - components: - - pos: -11.5,9.5 - parent: 104 - type: Transform -- uid: 695 - type: MountainRock - components: - - pos: -20.5,23.5 - parent: 104 - type: Transform -- uid: 696 - type: CyberPen - components: - - pos: -14.478909,9.585995 - parent: 104 - type: Transform -- uid: 697 - type: TableReinforced - components: - - pos: -13.5,5.5 - parent: 104 - type: Transform -- uid: 698 - type: WallPlastitanium - components: - - pos: -14.5,10.5 - parent: 104 - type: Transform -- uid: 699 - type: MountainRock - components: - - pos: -18.5,8.5 - parent: 104 - type: Transform -- uid: 700 - type: MountainRock - components: - - pos: -18.5,9.5 - parent: 104 - type: Transform -- uid: 701 - type: MountainRock - components: - - pos: -13.5,12.5 - parent: 104 - type: Transform -- uid: 702 - type: MountainRock - components: - - pos: -13.5,17.5 - parent: 104 - type: Transform -- uid: 703 - type: MountainRock - components: - - pos: -13.5,18.5 - parent: 104 - type: Transform -- uid: 704 - type: MountainRock - components: - - pos: -15.5,18.5 - parent: 104 - type: Transform -- uid: 705 - type: MountainRock - components: - - pos: -17.5,14.5 - parent: 104 - type: Transform -- uid: 706 - type: MountainRock - components: - - pos: -11.5,11.5 - parent: 104 - type: Transform -- uid: 707 - type: CableApcExtension - components: - - pos: -33.5,-20.5 - parent: 104 - type: Transform -- uid: 708 - type: MountainRock - components: - - pos: -17.5,11.5 - parent: 104 - type: Transform -- uid: 709 - type: MountainRock - components: - - pos: -17.5,16.5 - parent: 104 - type: Transform -- uid: 710 - type: WallPlastitanium - components: - - pos: -13.5,10.5 - parent: 104 - type: Transform -- uid: 711 - type: MountainRock - components: - - pos: -17.5,10.5 - parent: 104 - type: Transform -- uid: 712 - type: MountainRock - components: - - pos: -15.5,17.5 - parent: 104 - type: Transform -- uid: 713 - type: CableApcExtension - components: - - pos: -34.5,-20.5 - parent: 104 - type: Transform -- uid: 714 - type: MountainRock - components: - - pos: -11.5,17.5 - parent: 104 - type: Transform -- uid: 715 - type: Catwalk - components: - - pos: -10.5,-22.5 - parent: 104 - type: Transform -- uid: 716 - type: MountainRock - components: - - pos: -13.5,13.5 - parent: 104 - type: Transform -- uid: 717 - type: MountainRock - components: - - pos: -13.5,14.5 - parent: 104 - type: Transform -- uid: 718 - type: MountainRock - components: - - pos: -18.5,14.5 - parent: 104 - type: Transform -- uid: 719 - type: MountainRock - components: - - pos: -18.5,15.5 - parent: 104 - type: Transform -- uid: 720 - type: MountainRock - components: - - pos: -18.5,16.5 - parent: 104 - type: Transform -- uid: 721 - type: MountainRock - components: - - pos: -17.5,8.5 - parent: 104 - type: Transform -- uid: 722 - type: MountainRock - components: - - pos: -16.5,13.5 - parent: 104 - type: Transform -- uid: 723 - type: MountainRock - components: - - pos: -16.5,14.5 - parent: 104 - type: Transform -- uid: 724 - type: MountainRock - components: - - pos: -12.5,17.5 - parent: 104 - type: Transform -- uid: 725 - type: MountainRock - components: - - pos: -12.5,18.5 - parent: 104 - type: Transform -- uid: 726 - type: MountainRock - components: - - pos: -14.5,12.5 - parent: 104 - type: Transform -- uid: 727 - type: WallIce - components: - - pos: -6.5,19.5 - parent: 104 - type: Transform -- uid: 728 - type: MountainRock - components: - - pos: -14.5,13.5 - parent: 104 - type: Transform -- uid: 729 - type: MountainRock - components: - - pos: -18.5,17.5 - parent: 104 - type: Transform -- uid: 730 - type: WallPlastitanium - components: - - pos: -12.5,10.5 - parent: 104 - type: Transform -- uid: 731 - type: WallPlastitanium - components: - - pos: -12.5,22.5 - parent: 104 - type: Transform -- uid: 732 - type: WallPlastitanium - components: - - pos: -15.5,19.5 - parent: 104 - type: Transform -- uid: 733 - type: MountainRock - components: - - pos: -18.5,18.5 - parent: 104 - type: Transform -- uid: 734 - type: MountainRock - components: - - pos: -18.5,19.5 - parent: 104 - type: Transform -- uid: 735 - type: MountainRock - components: - - pos: -12.5,13.5 - parent: 104 - type: Transform -- uid: 736 - type: Catwalk - components: - - pos: -10.5,-21.5 - parent: 104 - type: Transform -- uid: 737 - type: Catwalk - components: - - pos: -10.5,-20.5 - parent: 104 - type: Transform -- uid: 738 - type: Catwalk - components: - - pos: -14.5,-20.5 - parent: 104 - type: Transform -- uid: 739 - type: WallPlastitanium - components: - - pos: -17.5,21.5 - parent: 104 - type: Transform -- uid: 740 - type: MountainRock - components: - - pos: -12.5,15.5 - parent: 104 - type: Transform -- uid: 741 - type: MountainRock - components: - - pos: -19.5,17.5 - parent: 104 - type: Transform -- uid: 742 - type: Catwalk - components: - - pos: -10.5,-19.5 - parent: 104 - type: Transform -- uid: 743 - type: WallPlastitanium - components: - - pos: -16.5,9.5 - parent: 104 - type: Transform -- uid: 744 - type: WallPlastitanium - components: - - pos: -16.5,7.5 - parent: 104 - type: Transform -- uid: 745 - type: MountainRock - components: - - pos: -19.5,18.5 - parent: 104 - type: Transform -- uid: 746 - type: MountainRock - components: - - pos: -19.5,19.5 - parent: 104 - type: Transform -- uid: 747 - type: MountainRock - components: - - pos: -16.5,17.5 - parent: 104 - type: Transform -- uid: 748 - type: Catwalk - components: - - pos: -10.5,-18.5 - parent: 104 - type: Transform -- uid: 749 - type: Catwalk - components: - - pos: -10.5,-17.5 - parent: 104 - type: Transform -- uid: 750 - type: WallPlastitanium - components: - - pos: -3.5,-14.5 - parent: 104 - type: Transform -- uid: 751 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-16.5 - parent: 104 - type: Transform -- uid: 752 - type: MountainRock - components: - - pos: -16.5,18.5 - parent: 104 - type: Transform -- uid: 753 - type: MountainRock - components: - - pos: -15.5,11.5 - parent: 104 - type: Transform -- uid: 754 - type: PosterContrabandLustyExomorph - components: - - pos: -3.5,-13.5 - parent: 104 - type: Transform -- uid: 755 - type: MountainRock - components: - - pos: -15.5,12.5 - parent: 104 - type: Transform -- uid: 756 - type: MountainRock - components: - - pos: -12.5,14.5 - parent: 104 - type: Transform -- uid: 757 - type: MountainRock - components: - - pos: -16.5,12.5 - parent: 104 - type: Transform -- uid: 758 - type: MountainRock - components: - - pos: -13.5,15.5 - parent: 104 - type: Transform -- uid: 759 - type: MountainRock - components: - - pos: -19.5,9.5 - parent: 104 - type: Transform -- uid: 760 - type: Catwalk - components: - - pos: -14.5,-21.5 - parent: 104 - type: Transform -- uid: 761 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -26.5,-21.5 - parent: 104 - type: Transform -- uid: 762 - type: MountainRock - components: - - pos: -17.5,9.5 - parent: 104 - type: Transform -- uid: 763 - type: MountainRock - components: - - pos: -17.5,17.5 - parent: 104 - type: Transform -- uid: 764 - type: MountainRock - components: - - pos: -17.5,18.5 - parent: 104 - type: Transform -- uid: 765 - type: MountainRock - components: - - pos: -16.5,11.5 - parent: 104 - type: Transform -- uid: 766 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-12.5 - parent: 104 - type: Transform -- uid: 767 - type: WallPlastitanium - components: - - pos: -16.5,10.5 - parent: 104 - type: Transform -- uid: 768 - type: MountainRock - components: - - pos: -19.5,8.5 - parent: 104 - type: Transform -- uid: 769 - type: Catwalk - components: - - pos: -33.5,4.5 - parent: 104 - type: Transform -- uid: 770 - type: MedkitFilled - components: - - pos: 0.48478004,-16.399067 - parent: 104 - type: Transform -- uid: 771 - type: MountainRock - components: - - pos: -6.5,13.5 - parent: 104 - type: Transform -- uid: 772 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -33.5,-21.5 - parent: 104 - type: Transform -- uid: 773 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-11.5 - parent: 104 - type: Transform -- uid: 774 - type: MountainRock - components: - - pos: -10.5,18.5 - parent: 104 - type: Transform -- uid: 775 - type: MountainRock - components: - - pos: -10.5,17.5 - parent: 104 - type: Transform -- uid: 776 - type: MountainRock - components: - - pos: -10.5,16.5 - parent: 104 - type: Transform -- uid: 777 - type: MountainRock - components: - - pos: -10.5,15.5 - parent: 104 - type: Transform -- uid: 778 - type: MountainRock - components: - - pos: -10.5,14.5 - parent: 104 - type: Transform -- uid: 779 - type: MountainRock - components: - - pos: -10.5,13.5 - parent: 104 - type: Transform -- uid: 780 - type: MountainRock - components: - - pos: -9.5,19.5 - parent: 104 - type: Transform -- uid: 781 - type: MountainRock - components: - - pos: -9.5,18.5 - parent: 104 - type: Transform -- uid: 782 - type: MountainRock - components: - - pos: -9.5,17.5 - parent: 104 - type: Transform -- uid: 783 - type: MountainRock - components: - - pos: -9.5,16.5 - parent: 104 - type: Transform -- uid: 784 - type: MountainRock - components: - - pos: -9.5,15.5 - parent: 104 - type: Transform -- uid: 785 - type: MountainRock - components: - - pos: -9.5,14.5 - parent: 104 - type: Transform -- uid: 786 - type: MountainRock - components: - - pos: -9.5,13.5 - parent: 104 - type: Transform -- uid: 787 - type: MountainRock - components: - - pos: -8.5,19.5 - parent: 104 - type: Transform -- uid: 788 - type: MountainRock - components: - - pos: -8.5,18.5 - parent: 104 - type: Transform -- uid: 789 - type: MountainRock - components: - - pos: -8.5,17.5 - parent: 104 - type: Transform -- uid: 790 - type: MountainRock - components: - - pos: -8.5,15.5 - parent: 104 - type: Transform -- uid: 791 - type: MountainRock - components: - - pos: -8.5,14.5 - parent: 104 - type: Transform -- uid: 792 - type: MountainRock - components: - - pos: -8.5,13.5 - parent: 104 - type: Transform -- uid: 793 - type: MountainRock - components: - - pos: -7.5,19.5 - parent: 104 - type: Transform -- uid: 794 - type: MountainRock - components: - - pos: -7.5,18.5 - parent: 104 - type: Transform -- uid: 795 - type: MountainRock - components: - - pos: -7.5,15.5 - parent: 104 - type: Transform -- uid: 796 - type: MountainRock - components: - - pos: -7.5,14.5 - parent: 104 - type: Transform -- uid: 797 - type: MountainRock - components: - - pos: -7.5,13.5 - parent: 104 - type: Transform -- uid: 798 - type: MountainRock - components: - - pos: -15.5,13.5 - parent: 104 - type: Transform -- uid: 799 - type: Catwalk - components: - - pos: -26.5,3.5 - parent: 104 - type: Transform -- uid: 800 - type: Catwalk - components: - - pos: -34.5,4.5 - parent: 104 - type: Transform -- uid: 801 - type: MountainRock - components: - - pos: -12.5,16.5 - parent: 104 - type: Transform -- uid: 802 - type: MountainRock - components: - - pos: -14.5,15.5 - parent: 104 - type: Transform -- uid: 803 - type: MountainRock - components: - - pos: -19.5,23.5 - parent: 104 - type: Transform -- uid: 804 - type: MountainRock - components: - - pos: -24.5,24.5 - parent: 104 - type: Transform -- uid: 805 - type: MountainRock - components: - - pos: -19.5,10.5 - parent: 104 - type: Transform -- uid: 806 - type: MountainRock - components: - - pos: -17.5,12.5 - parent: 104 - type: Transform -- uid: 807 - type: MountainRock - components: - - pos: -11.5,16.5 - parent: 104 - type: Transform -- uid: 808 - type: MountainRock - components: - - pos: -11.5,15.5 - parent: 104 - type: Transform -- uid: 809 - type: MountainRock - components: - - pos: -13.5,11.5 - parent: 104 - type: Transform -- uid: 810 - type: MountainRock - components: - - pos: -19.5,20.5 - parent: 104 - type: Transform -- uid: 811 - type: PortableScrubber - components: - - pos: 10.5,-10.5 - parent: 104 - type: Transform -- uid: 812 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -32.5,-21.5 - parent: 104 - type: Transform -- uid: 813 - type: Catwalk - components: - - pos: -29.5,4.5 - parent: 104 - type: Transform -- uid: 814 - type: CableApcExtension - components: - - pos: -6.5,-3.5 - parent: 104 - type: Transform -- uid: 815 - type: Catwalk - components: - - pos: -17.5,-23.5 - parent: 104 - type: Transform -- uid: 816 - type: AirlockGlassShuttle - components: - - rot: 3.141592653589793 rad - pos: -17.5,-20.5 - parent: 104 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 817 - type: Catwalk - components: - - pos: -24.5,-22.5 - parent: 104 - type: Transform -- uid: 818 - type: Catwalk - components: - - pos: -24.5,-23.5 - parent: 104 - type: Transform -- uid: 819 - type: VendingMachineWallMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,-16.5 - parent: 104 - type: Transform -- uid: 820 - type: Catwalk - components: - - pos: -21.5,-21.5 - parent: 104 - type: Transform -- uid: 821 - type: Catwalk - components: - - pos: -21.5,-22.5 - parent: 104 - type: Transform -- uid: 822 - type: Catwalk - components: - - pos: -27.5,3.5 - parent: 104 - type: Transform -- uid: 823 - type: Catwalk - components: - - pos: -26.5,4.5 - parent: 104 - type: Transform -- uid: 824 - type: Catwalk - components: - - pos: -25.5,4.5 - parent: 104 - type: Transform -- uid: 825 - type: Catwalk - components: - - pos: -25.5,2.5 - parent: 104 - type: Transform -- uid: 826 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -33.5,-23.5 - parent: 104 - type: Transform -- uid: 827 - type: Catwalk - components: - - pos: -27.5,4.5 - parent: 104 - type: Transform -- uid: 828 - type: Catwalk - components: - - pos: -27.5,2.5 - parent: 104 - type: Transform -- uid: 829 - type: Catwalk - components: - - pos: -26.5,2.5 - parent: 104 - type: Transform -- uid: 830 - type: Catwalk - components: - - pos: -25.5,3.5 - parent: 104 - type: Transform -- uid: 831 - type: Catwalk - components: - - pos: -26.5,-20.5 - parent: 104 - type: Transform -- uid: 832 - type: CableApcExtension - components: - - pos: -7.5,-3.5 - parent: 104 - type: Transform -- uid: 833 - type: Catwalk - components: - - pos: -18.5,-21.5 - parent: 104 - type: Transform -- uid: 834 - type: Catwalk - components: - - pos: -27.5,-20.5 - parent: 104 - type: Transform -- uid: 835 - type: AirlockGlassShuttle - components: - - rot: 3.141592653589793 rad - pos: -25.5,-20.5 - parent: 104 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 836 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -29.5,-21.5 - parent: 104 - type: Transform -- uid: 837 - type: Catwalk - components: - - pos: -32.5,-20.5 - parent: 104 - type: Transform -- uid: 838 - type: TableReinforcedGlass - components: - - pos: 5.5,-17.5 - parent: 104 - type: Transform -- uid: 839 - type: Catwalk - components: - - pos: -32.5,3.5 - parent: 104 - type: Transform -- uid: 840 - type: Catwalk - components: - - pos: -27.5,1.5 - parent: 104 - type: Transform -- uid: 841 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -33.5,-22.5 - parent: 104 - type: Transform -- uid: 842 - type: Catwalk - components: - - pos: -17.5,-22.5 - parent: 104 - type: Transform -- uid: 843 - type: Catwalk - components: - - pos: -18.5,-23.5 - parent: 104 - type: Transform -- uid: 844 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -32.5,-22.5 - parent: 104 - type: Transform -- uid: 845 - type: CableApcExtension - components: - - pos: -10.5,-1.5 - parent: 104 - type: Transform -- uid: 846 - type: Catwalk - components: - - pos: -18.5,-20.5 - parent: 104 - type: Transform -- uid: 847 - type: Catwalk - components: - - pos: -19.5,-21.5 - parent: 104 - type: Transform -- uid: 848 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -34.5,-20.5 - parent: 104 - type: Transform -- uid: 849 - type: Catwalk - components: - - pos: -18.5,-22.5 - parent: 104 - type: Transform -- uid: 850 - type: Catwalk - components: - - pos: -17.5,-21.5 - parent: 104 - type: Transform -- uid: 851 - type: Catwalk - components: - - pos: -16.5,-20.5 - parent: 104 - type: Transform -- uid: 852 - type: Catwalk - components: - - pos: -32.5,1.5 - parent: 104 - type: Transform -- uid: 853 - type: Catwalk - components: - - pos: -30.5,-20.5 - parent: 104 - type: Transform -- uid: 854 - type: AirlockGlassShuttle - components: - - pos: -33.5,1.5 - parent: 104 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 855 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -30.5,-21.5 - parent: 104 - type: Transform -- uid: 856 - type: Catwalk - components: - - pos: -31.5,2.5 - parent: 104 - type: Transform -- uid: 857 - type: Catwalk - components: - - pos: -24.5,-20.5 - parent: 104 - type: Transform -- uid: 858 - type: Catwalk - components: - - pos: -30.5,3.5 - parent: 104 - type: Transform -- uid: 859 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -28.5,-21.5 - parent: 104 - type: Transform -- uid: 860 - type: AirlockGlassShuttle - components: - - pos: -29.5,1.5 - parent: 104 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 861 - type: Catwalk - components: - - pos: -30.5,1.5 - parent: 104 - type: Transform -- uid: 862 - type: AirlockGlassShuttle - components: - - rot: 3.141592653589793 rad - pos: -29.5,-20.5 - parent: 104 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 863 - type: AirlockGlassShuttle - components: - - pos: -25.5,1.5 - parent: 104 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 864 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -27.5,-21.5 - parent: 104 - type: Transform -- uid: 865 - type: Catwalk - components: - - pos: -28.5,2.5 - parent: 104 - type: Transform -- uid: 866 - type: CableApcExtension - components: - - pos: -10.5,-2.5 - parent: 104 - type: Transform -- uid: 867 - type: CableApcExtension - components: - - pos: -5.5,-3.5 - parent: 104 - type: Transform -- uid: 868 - type: CableApcExtension - components: - - pos: -10.5,-3.5 - parent: 104 - type: Transform -- uid: 869 - type: Catwalk - components: - - pos: -32.5,2.5 - parent: 104 - type: Transform -- uid: 870 - type: CableApcExtension - components: - - pos: -9.5,-3.5 - parent: 104 - type: Transform -- uid: 871 - type: Catwalk - components: - - pos: -31.5,4.5 - parent: 104 - type: Transform -- uid: 872 - type: Catwalk - components: - - pos: -30.5,2.5 - parent: 104 - type: Transform -- uid: 873 - type: Catwalk - components: - - pos: -16.5,1.5 - parent: 104 - type: Transform -- uid: 874 - type: Catwalk - components: - - pos: -15.5,4.5 - parent: 104 - type: Transform -- uid: 875 - type: Catwalk - components: - - pos: -15.5,3.5 - parent: 104 - type: Transform -- uid: 876 - type: Catwalk - components: - - pos: -15.5,2.5 - parent: 104 - type: Transform -- uid: 877 - type: CableApcExtension - components: - - pos: -8.5,-3.5 - parent: 104 - type: Transform -- uid: 878 - type: Catwalk - components: - - pos: -23.5,-21.5 - parent: 104 - type: Transform -- uid: 879 - type: Catwalk - components: - - pos: -23.5,-22.5 - parent: 104 - type: Transform -- uid: 880 - type: Catwalk - components: - - pos: -23.5,-23.5 - parent: 104 - type: Transform -- uid: 881 - type: Catwalk - components: - - pos: -22.5,-20.5 - parent: 104 - type: Transform -- uid: 882 - type: Catwalk - components: - - pos: -22.5,-21.5 - parent: 104 - type: Transform -- uid: 883 - type: Catwalk - components: - - pos: -31.5,1.5 - parent: 104 - type: Transform -- uid: 884 - type: CableApcExtension - components: - - pos: -4.5,-3.5 - parent: 104 - type: Transform -- uid: 885 - type: Catwalk - components: - - pos: -23.5,-20.5 - parent: 104 - type: Transform -- uid: 886 - type: Catwalk - components: - - pos: -31.5,-20.5 - parent: 104 - type: Transform -- uid: 887 - type: Catwalk - components: - - pos: -28.5,4.5 - parent: 104 - type: Transform -- uid: 888 - type: Catwalk - components: - - pos: -28.5,3.5 - parent: 104 - type: Transform -- uid: 889 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -34.5,-23.5 - parent: 104 - type: Transform -- uid: 890 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -32.5,-23.5 - parent: 104 - type: Transform -- uid: 891 - type: Catwalk - components: - - pos: -33.5,2.5 - parent: 104 - type: Transform -- uid: 892 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -31.5,-22.5 - parent: 104 - type: Transform -- uid: 893 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -31.5,-23.5 - parent: 104 - type: Transform -- uid: 894 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -30.5,-22.5 - parent: 104 - type: Transform -- uid: 895 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -30.5,-23.5 - parent: 104 - type: Transform -- uid: 896 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -29.5,-22.5 - parent: 104 - type: Transform -- uid: 897 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -29.5,-23.5 - parent: 104 - type: Transform -- uid: 898 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -28.5,-22.5 - parent: 104 - type: Transform -- uid: 899 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -28.5,-23.5 - parent: 104 - type: Transform -- uid: 900 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -27.5,-22.5 - parent: 104 - type: Transform -- uid: 901 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -26.5,-22.5 - parent: 104 - type: Transform -- uid: 902 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -26.5,-23.5 - parent: 104 - type: Transform -- uid: 903 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -25.5,-22.5 - parent: 104 - type: Transform -- uid: 904 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -25.5,-23.5 - parent: 104 - type: Transform -- uid: 905 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -35.5,-22.5 - parent: 104 - type: Transform -- uid: 906 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -35.5,-23.5 - parent: 104 - type: Transform -- uid: 907 - type: Catwalk - components: - - pos: -19.5,-23.5 - parent: 104 - type: Transform -- uid: 908 - type: AirlockGlassShuttle - components: - - rot: 3.141592653589793 rad - pos: -33.5,-20.5 - parent: 104 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 909 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -25.5,-21.5 - parent: 104 - type: Transform -- uid: 910 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -35.5,-20.5 - parent: 104 - type: Transform -- uid: 911 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -35.5,-21.5 - parent: 104 - type: Transform -- uid: 912 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -34.5,-22.5 - parent: 104 - type: Transform -- uid: 913 - type: Catwalk - components: - - pos: -23.5,4.5 - parent: 104 - type: Transform -- uid: 914 - type: AirlockGlassShuttle - components: - - rot: 3.141592653589793 rad - pos: -21.5,-20.5 - parent: 104 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 915 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -23.5,3.5 - parent: 104 - type: Transform -- uid: 916 - type: Catwalk - components: - - pos: -12.5,4.5 - parent: 104 - type: Transform -- uid: 917 - type: Catwalk - components: - - pos: -12.5,3.5 - parent: 104 - type: Transform -- uid: 918 - type: Catwalk - components: - - pos: -12.5,2.5 - parent: 104 - type: Transform -- uid: 919 - type: Catwalk - components: - - pos: -22.5,-22.5 - parent: 104 - type: Transform -- uid: 920 - type: CableApcExtension - components: - - pos: -10.5,-13.5 - parent: 104 - type: Transform -- uid: 921 - type: Catwalk - components: - - pos: -15.5,-22.5 - parent: 104 - type: Transform -- uid: 922 - type: Catwalk - components: - - pos: -14.5,1.5 - parent: 104 - type: Transform -- uid: 923 - type: Catwalk - components: - - pos: -13.5,4.5 - parent: 104 - type: Transform -- uid: 924 - type: Catwalk - components: - - pos: -13.5,3.5 - parent: 104 - type: Transform -- uid: 925 - type: Catwalk - components: - - pos: -13.5,2.5 - parent: 104 - type: Transform -- uid: 926 - type: CableApcExtension - components: - - pos: -30.5,1.5 - parent: 104 - type: Transform -- uid: 927 - type: CableApcExtension - components: - - pos: -26.5,1.5 - parent: 104 - type: Transform -- uid: 928 - type: Catwalk - components: - - pos: -15.5,-23.5 - parent: 104 - type: Transform -- uid: 929 - type: Catwalk - components: - - pos: -15.5,1.5 - parent: 104 - type: Transform -- uid: 930 - type: Catwalk - components: - - pos: -14.5,4.5 - parent: 104 - type: Transform -- uid: 931 - type: CableApcExtension - components: - - pos: 12.5,-19.5 - parent: 104 - type: Transform -- uid: 932 - type: Catwalk - components: - - pos: -14.5,2.5 - parent: 104 - type: Transform -- uid: 933 - type: CableApcExtension - components: - - pos: -10.5,-19.5 - parent: 104 - type: Transform -- uid: 934 - type: CableApcExtension - components: - - pos: -10.5,-14.5 - parent: 104 - type: Transform -- uid: 935 - type: AirlockGlassShuttle - components: - - rot: 3.141592653589793 rad - pos: -13.5,-20.5 - parent: 104 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - hard: False - id: docking - type: Fixtures -- uid: 936 - type: Catwalk - components: - - pos: -16.5,4.5 - parent: 104 - type: Transform -- uid: 937 - type: Catwalk - components: - - pos: -16.5,3.5 - parent: 104 - type: Transform -- uid: 938 - type: Catwalk - components: - - pos: -16.5,2.5 - parent: 104 - type: Transform -- uid: 939 - type: Catwalk - components: - - pos: -12.5,-20.5 - parent: 104 - type: Transform -- uid: 940 - type: Catwalk - components: - - pos: -15.5,-21.5 - parent: 104 - type: Transform -- uid: 941 - type: CableApcExtension - components: - - pos: -14.5,-20.5 - parent: 104 - type: Transform -- uid: 942 - type: Catwalk - components: - - pos: -18.5,1.5 - parent: 104 - type: Transform -- uid: 943 - type: Catwalk - components: - - pos: -17.5,4.5 - parent: 104 - type: Transform -- uid: 944 - type: Catwalk - components: - - pos: -17.5,3.5 - parent: 104 - type: Transform -- uid: 945 - type: Catwalk - components: - - pos: -17.5,2.5 - parent: 104 - type: Transform -- uid: 946 - type: Catwalk - components: - - pos: -12.5,-22.5 - parent: 104 - type: Transform -- uid: 947 - type: Catwalk - components: - - pos: -22.5,-23.5 - parent: 104 - type: Transform -- uid: 948 - type: Catwalk - components: - - pos: -13.5,-21.5 - parent: 104 - type: Transform -- uid: 949 - type: Catwalk - components: - - pos: -19.5,1.5 - parent: 104 - type: Transform -- uid: 950 - type: Catwalk - components: - - pos: -18.5,4.5 - parent: 104 - type: Transform -- uid: 951 - type: Catwalk - components: - - pos: -18.5,3.5 - parent: 104 - type: Transform -- uid: 952 - type: Catwalk - components: - - pos: -18.5,2.5 - parent: 104 - type: Transform -- uid: 953 - type: Catwalk - components: - - pos: -12.5,-21.5 - parent: 104 - type: Transform -- uid: 954 - type: Catwalk - components: - - pos: -13.5,-22.5 - parent: 104 - type: Transform -- uid: 955 - type: PosterLegitCleanliness - components: - - pos: 0.5,-11.5 - parent: 104 - type: Transform -- uid: 956 - type: Catwalk - components: - - pos: -11.5,1.5 - parent: 104 - type: Transform -- uid: 957 - type: SignMedical - components: - - pos: 2.5,-12.5 - parent: 104 - type: Transform -- uid: 958 - type: Catwalk - components: - - pos: -19.5,3.5 - parent: 104 - type: Transform -- uid: 959 - type: Catwalk - components: - - pos: -19.5,2.5 - parent: 104 - type: Transform -- uid: 960 - type: CableApcExtension - components: - - pos: 12.5,-17.5 - parent: 104 - type: Transform -- uid: 961 - type: CableApcExtension - components: - - pos: 11.5,-16.5 - parent: 104 - type: Transform -- uid: 962 - type: CableApcExtension - components: - - pos: 6.5,-14.5 - parent: 104 - type: Transform -- uid: 963 - type: Catwalk - components: - - pos: -12.5,1.5 - parent: 104 - type: Transform -- uid: 964 - type: Catwalk - components: - - pos: -11.5,4.5 - parent: 104 - type: Transform -- uid: 965 - type: Catwalk - components: - - pos: -11.5,3.5 - parent: 104 - type: Transform -- uid: 966 - type: Catwalk - components: - - pos: -11.5,2.5 - parent: 104 - type: Transform -- uid: 967 - type: CableApcExtension - components: - - pos: 9.5,-16.5 - parent: 104 - type: Transform -- uid: 968 - type: CableApcExtension - components: - - pos: 7.5,-16.5 - parent: 104 - type: Transform -- uid: 969 - type: CableApcExtension - components: - - pos: -10.5,-18.5 - parent: 104 - type: Transform -- uid: 970 - type: CableApcExtension - components: - - pos: -29.5,1.5 - parent: 104 - type: Transform -- uid: 971 - type: CableApcExtension - components: - - pos: -28.5,1.5 - parent: 104 - type: Transform -- uid: 972 - type: Catwalk - components: - - pos: -11.5,-21.5 - parent: 104 - type: Transform -- uid: 973 - type: CableApcExtension - components: - - pos: 5.5,-17.5 - parent: 104 - type: Transform -- uid: 974 - type: AlwaysPoweredLightLED - components: - - rot: 3.141592653589793 rad - pos: 5.5,-17.5 - parent: 104 - type: Transform -- uid: 975 - type: TableReinforcedGlass - components: - - pos: 4.5,-17.5 - parent: 104 - type: Transform -- uid: 976 - type: TableReinforcedGlass - components: - - pos: 3.5,-17.5 - parent: 104 - type: Transform -- uid: 977 - type: WallmountTelevision - components: - - pos: 6.5,1.5 - parent: 104 - type: Transform -- uid: 978 - type: SurveillanceCameraWirelessRouterEntertainment - components: - - pos: -15.5,8.5 - parent: 104 - type: Transform -- uid: 979 - type: CableApcExtension - components: - - pos: 1.5,-16.5 - parent: 104 - type: Transform -- uid: 980 - type: TableGlass - components: - - pos: -2.5,-16.5 - parent: 104 - type: Transform -- uid: 981 - type: CableApcExtension - components: - - pos: 5.5,-14.5 - parent: 104 - type: Transform -- uid: 982 - type: CableApcExtension - components: - - pos: 12.5,-16.5 - parent: 104 - type: Transform -- uid: 983 - type: CableApcExtension - components: - - pos: 5.5,-16.5 - parent: 104 - type: Transform -- uid: 984 - type: Catwalk - components: - - pos: -9.5,-9.5 - parent: 104 - type: Transform -- uid: 985 - type: Catwalk - components: - - pos: -9.5,-10.5 - parent: 104 - type: Transform -- uid: 986 - type: Catwalk - components: - - pos: -9.5,-11.5 - parent: 104 - type: Transform -- uid: 987 - type: Catwalk - components: - - pos: -9.5,-12.5 - parent: 104 - type: Transform -- uid: 988 - type: Catwalk - components: - - pos: -10.5,4.5 - parent: 104 - type: Transform -- uid: 989 - type: Catwalk - components: - - pos: -10.5,3.5 - parent: 104 - type: Transform -- uid: 990 - type: Catwalk - components: - - pos: -10.5,2.5 - parent: 104 - type: Transform -- uid: 991 - type: Catwalk - components: - - pos: -10.5,1.5 - parent: 104 - type: Transform -- uid: 992 - type: Catwalk - components: - - pos: -10.5,0.5 - parent: 104 - type: Transform -- uid: 993 - type: Catwalk - components: - - pos: -10.5,-0.5 - parent: 104 - type: Transform -- uid: 994 - type: Catwalk - components: - - pos: -10.5,-1.5 - parent: 104 - type: Transform -- uid: 995 - type: Catwalk - components: - - pos: -10.5,-2.5 - parent: 104 - type: Transform -- uid: 996 - type: Catwalk - components: - - pos: -10.5,-3.5 - parent: 104 - type: Transform -- uid: 997 - type: Catwalk - components: - - pos: -10.5,-4.5 - parent: 104 - type: Transform -- uid: 998 - type: Catwalk - components: - - pos: -10.5,-5.5 - parent: 104 - type: Transform -- uid: 999 - type: Catwalk - components: - - pos: -10.5,-6.5 - parent: 104 - type: Transform -- uid: 1000 - type: Catwalk - components: - - pos: -10.5,-7.5 - parent: 104 - type: Transform -- uid: 1001 - type: Catwalk - components: - - pos: -10.5,-8.5 - parent: 104 - type: Transform -- uid: 1002 - type: Catwalk - components: - - pos: -10.5,-9.5 - parent: 104 - type: Transform -- uid: 1003 - type: Catwalk - components: - - pos: -10.5,-10.5 - parent: 104 - type: Transform -- uid: 1004 - type: Catwalk - components: - - pos: -10.5,-11.5 - parent: 104 - type: Transform -- uid: 1005 - type: Catwalk - components: - - pos: -10.5,-12.5 - parent: 104 - type: Transform -- uid: 1006 - type: Catwalk - components: - - pos: -9.5,4.5 - parent: 104 - type: Transform -- uid: 1007 - type: Catwalk - components: - - pos: -9.5,3.5 - parent: 104 - type: Transform -- uid: 1008 - type: Catwalk - components: - - pos: -9.5,2.5 - parent: 104 - type: Transform -- uid: 1009 - type: Catwalk - components: - - pos: -9.5,1.5 - parent: 104 - type: Transform -- uid: 1010 - type: Catwalk - components: - - pos: -9.5,0.5 - parent: 104 - type: Transform -- uid: 1011 - type: Catwalk - components: - - pos: -9.5,-0.5 - parent: 104 - type: Transform -- uid: 1012 - type: Catwalk - components: - - pos: -9.5,-1.5 - parent: 104 - type: Transform -- uid: 1013 - type: Catwalk - components: - - pos: -9.5,-2.5 - parent: 104 - type: Transform -- uid: 1014 - type: Catwalk - components: - - pos: -9.5,-3.5 - parent: 104 - type: Transform -- uid: 1015 - type: Catwalk - components: - - pos: -9.5,-4.5 - parent: 104 - type: Transform -- uid: 1016 - type: Catwalk - components: - - pos: -9.5,-5.5 - parent: 104 - type: Transform -- uid: 1017 - type: Catwalk - components: - - pos: -9.5,-6.5 - parent: 104 - type: Transform -- uid: 1018 - type: Catwalk - components: - - pos: -9.5,-7.5 - parent: 104 - type: Transform -- uid: 1019 - type: Catwalk - components: - - pos: -9.5,-8.5 - parent: 104 - type: Transform -- uid: 1020 - type: MountainRock - components: - - pos: -18.5,20.5 - parent: 104 - type: Transform -- uid: 1021 - type: MountainRock - components: - - pos: -10.5,20.5 - parent: 104 - type: Transform -- uid: 1022 - type: BoxFolderBlack - components: - - pos: -13.494709,9.54891 - parent: 104 - type: Transform -- uid: 1023 - type: SurveillanceWirelessCameraAnchoredEntertainment - components: - - rot: -1.5707963267948966 rad - pos: -13.5,21.5 - parent: 104 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: Weeh - type: SurveillanceCamera -- uid: 1024 - type: SmallLight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 104 - type: Transform -- uid: 1025 - type: WallPlastitanium - components: - - pos: 3.5,-18.5 - parent: 104 - type: Transform -- uid: 1026 - type: WallPlastitanium - components: - - pos: 4.5,-18.5 - parent: 104 - type: Transform -- uid: 1027 - type: MountainRock - components: - - pos: -9.5,20.5 - parent: 104 - type: Transform -- uid: 1028 - type: MountainRock - components: - - pos: -8.5,20.5 - parent: 104 - type: Transform -- uid: 1029 - type: MountainRock - components: - - pos: -7.5,20.5 - parent: 104 - type: Transform -- uid: 1030 - type: MountainRock - components: - - pos: -2.5,20.5 - parent: 104 - type: Transform -- uid: 1031 - type: MountainRock - components: - - pos: -1.5,20.5 - parent: 104 - type: Transform -- uid: 1032 - type: MountainRock - components: - - pos: -0.5,20.5 - parent: 104 - type: Transform -- uid: 1033 - type: MountainRock - components: - - pos: 9.5,22.5 - parent: 104 - type: Transform -- uid: 1034 - type: Grille - components: - - pos: 5.5,21.5 - parent: 104 - type: Transform -- uid: 1035 - type: FloraTreeConifer03 - components: - - pos: 0.74747276,19.424063 - parent: 104 - type: Transform -- uid: 1036 - type: MountainRock - components: - - pos: 10.5,20.5 - parent: 104 - type: Transform -- uid: 1037 - type: ReinforcedWindow - components: - - pos: 1.5,21.5 - parent: 104 - type: Transform -- uid: 1038 - type: ReinforcedWindow - components: - - pos: 6.5,21.5 - parent: 104 - type: Transform -- uid: 1039 - type: ReinforcedWindow - components: - - pos: 8.5,21.5 - parent: 104 - type: Transform -- uid: 1040 - type: ReinforcedWindow - components: - - pos: 7.5,21.5 - parent: 104 - type: Transform -- uid: 1041 - type: MountainRock - components: - - pos: 11.5,20.5 - parent: 104 - type: Transform -- uid: 1042 - type: MountainRock - components: - - pos: 12.5,20.5 - parent: 104 - type: Transform -- uid: 1043 - type: MountainRock - components: - - pos: 13.5,20.5 - parent: 104 - type: Transform -- uid: 1044 - type: MountainRock - components: - - pos: 16.5,20.5 - parent: 104 - type: Transform -- uid: 1045 - type: MountainRock - components: - - pos: 17.5,20.5 - parent: 104 - type: Transform -- uid: 1046 - type: MountainRock - components: - - pos: 18.5,20.5 - parent: 104 - type: Transform -- uid: 1047 - type: MountainRock - components: - - pos: 19.5,20.5 - parent: 104 - type: Transform -- uid: 1048 - type: MountainRock - components: - - pos: 19.5,19.5 - parent: 104 - type: Transform -- uid: 1049 - type: MountainRock - components: - - pos: 19.5,18.5 - parent: 104 - type: Transform -- uid: 1050 - type: MountainRock - components: - - pos: 19.5,16.5 - parent: 104 - type: Transform -- uid: 1051 - type: MountainRock - components: - - pos: 19.5,15.5 - parent: 104 - type: Transform -- uid: 1052 - type: MountainRock - components: - - pos: 19.5,14.5 - parent: 104 - type: Transform -- uid: 1053 - type: MountainRock - components: - - pos: 19.5,12.5 - parent: 104 - type: Transform -- uid: 1054 - type: MountainRock - components: - - pos: 19.5,11.5 - parent: 104 - type: Transform -- uid: 1055 - type: MountainRock - components: - - pos: 19.5,10.5 - parent: 104 - type: Transform -- uid: 1056 - type: MountainRock - components: - - pos: -11.5,20.5 - parent: 104 - type: Transform -- uid: 1057 - type: MountainRock - components: - - pos: 15.5,3.5 - parent: 104 - type: Transform -- uid: 1058 - type: MountainRock - components: - - pos: 22.5,4.5 - parent: 104 - type: Transform -- uid: 1059 - type: MountainRock - components: - - pos: 23.5,4.5 - parent: 104 - type: Transform -- uid: 1060 - type: MountainRock - components: - - pos: 24.5,4.5 - parent: 104 - type: Transform -- uid: 1061 - type: MountainRock - components: - - pos: 25.5,4.5 - parent: 104 - type: Transform -- uid: 1062 - type: MountainRock - components: - - pos: 26.5,4.5 - parent: 104 - type: Transform -- uid: 1063 - type: MountainRock - components: - - pos: 27.5,4.5 - parent: 104 - type: Transform -- uid: 1064 - type: MountainRock - components: - - pos: 28.5,4.5 - parent: 104 - type: Transform -- uid: 1065 - type: MountainRock - components: - - pos: 29.5,4.5 - parent: 104 - type: Transform -- uid: 1066 - type: MountainRock - components: - - pos: 30.5,4.5 - parent: 104 - type: Transform -- uid: 1067 - type: MountainRock - components: - - pos: 32.5,0.5 - parent: 104 - type: Transform -- uid: 1068 - type: MountainRock - components: - - pos: 32.5,-0.5 - parent: 104 - type: Transform -- uid: 1069 - type: MountainRock - components: - - pos: 32.5,-3.5 - parent: 104 - type: Transform -- uid: 1070 - type: MountainRock - components: - - pos: 32.5,-12.5 - parent: 104 - type: Transform -- uid: 1071 - type: MountainRock - components: - - pos: 32.5,-13.5 - parent: 104 - type: Transform -- uid: 1072 - type: MountainRock - components: - - pos: 32.5,-14.5 - parent: 104 - type: Transform -- uid: 1073 - type: MountainRock - components: - - pos: 32.5,-15.5 - parent: 104 - type: Transform -- uid: 1074 - type: MountainRock - components: - - pos: 32.5,-16.5 - parent: 104 - type: Transform -- uid: 1075 - type: MountainRock - components: - - pos: 32.5,-17.5 - parent: 104 - type: Transform -- uid: 1076 - type: MountainRock - components: - - pos: 32.5,-18.5 - parent: 104 - type: Transform -- uid: 1077 - type: MountainRock - components: - - pos: 32.5,-19.5 - parent: 104 - type: Transform -- uid: 1078 - type: MountainRock - components: - - pos: 32.5,-20.5 - parent: 104 - type: Transform -- uid: 1079 - type: MountainRock - components: - - pos: 32.5,-21.5 - parent: 104 - type: Transform -- uid: 1080 - type: Railing - components: - - pos: -34.5,-23.5 - parent: 104 - type: Transform -- uid: 1081 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -30.5,-20.5 - parent: 104 - type: Transform -- uid: 1082 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -26.5,-20.5 - parent: 104 - type: Transform -- uid: 1083 - type: MountainRock - components: - - pos: -4.5,-16.5 - parent: 104 - type: Transform -- uid: 1084 - type: MountainRock - components: - - pos: -4.5,-21.5 - parent: 104 - type: Transform -- uid: 1085 - type: MountainRock - components: - - pos: 28.5,-23.5 - parent: 104 - type: Transform -- uid: 1086 - type: Catwalk - components: - - pos: -14.5,3.5 - parent: 104 - type: Transform -- uid: 1087 - type: Catwalk - components: - - pos: -19.5,4.5 - parent: 104 - type: Transform -- uid: 1088 - type: AirlockExternalGlass - components: - - pos: -1.5,-3.5 - parent: 104 - type: Transform -- uid: 1089 - type: AirlockExternalGlass - components: - - pos: -5.5,-3.5 - parent: 104 - type: Transform -- uid: 1090 - type: Table - components: - - pos: 7.5,-11.5 - parent: 104 - type: Transform -- uid: 1091 - type: WallPlastitanium - components: - - pos: -5.5,-2.5 - parent: 104 - type: Transform -- uid: 1092 - type: MountainRock - components: - - pos: 27.5,-23.5 - parent: 104 - type: Transform -- uid: 1093 - type: MountainRock - components: - - pos: 26.5,-23.5 - parent: 104 - type: Transform -- uid: 1094 - type: MountainRock - components: - - pos: 25.5,-23.5 - parent: 104 - type: Transform -- uid: 1095 - type: MountainRock - components: - - pos: 24.5,-23.5 - parent: 104 - type: Transform -- uid: 1096 - type: MountainRock - components: - - pos: 23.5,-23.5 - parent: 104 - type: Transform -- uid: 1097 - type: MountainRock - components: - - pos: 22.5,-23.5 - parent: 104 - type: Transform -- uid: 1098 - type: MountainRock - components: - - pos: 21.5,-23.5 - parent: 104 - type: Transform -- uid: 1099 - type: MountainRock - components: - - pos: 20.5,-23.5 - parent: 104 - type: Transform -- uid: 1100 - type: MountainRock - components: - - pos: 19.5,-23.5 - parent: 104 - type: Transform -- uid: 1101 - type: MountainRock - components: - - pos: 18.5,-23.5 - parent: 104 - type: Transform -- uid: 1102 - type: ReinforcedWindow - components: - - pos: 8.5,-17.5 - parent: 104 - type: Transform -- uid: 1103 - type: ReinforcedWindow - components: - - pos: 2.5,21.5 - parent: 104 - type: Transform -- uid: 1104 - type: WallPlastitanium - components: - - pos: 9.5,-19.5 - parent: 104 - type: Transform -- uid: 1105 - type: MountainRock - components: - - pos: 8.5,-23.5 - parent: 104 - type: Transform -- uid: 1106 - type: MountainRock - components: - - pos: 7.5,-23.5 - parent: 104 - type: Transform -- uid: 1107 - type: MountainRock - components: - - pos: 6.5,-23.5 - parent: 104 - type: Transform -- uid: 1108 - type: MountainRock - components: - - pos: 5.5,-23.5 - parent: 104 - type: Transform -- uid: 1109 - type: MountainRock - components: - - pos: -23.5,23.5 - parent: 104 - type: Transform -- uid: 1110 - type: WallPlastitanium - components: - - pos: -5.5,-4.5 - parent: 104 - type: Transform -- uid: 1111 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 104 - type: Transform -- uid: 1112 - type: Grille - components: - - pos: -1.5,-17.5 - parent: 104 - type: Transform -- uid: 1113 - type: PosterContrabandVoteWeh - components: - - pos: -3.5,-15.5 - parent: 104 - type: Transform -- uid: 1114 - type: ClosetRadiationSuitFilled - components: - - pos: 6.5,-17.5 - parent: 104 - type: Transform -- uid: 1115 - type: CableApcExtension - components: - - pos: 4.5,-14.5 - parent: 104 - type: Transform -- uid: 1116 - type: CableApcExtension - components: - - pos: 1.5,-12.5 - parent: 104 - type: Transform -- uid: 1117 - type: CableApcExtension - components: - - pos: 6.5,-16.5 - parent: 104 - type: Transform -- uid: 1118 - type: ReinforcedWindow - components: - - pos: 0.5,-17.5 - parent: 104 - type: Transform -- uid: 1119 - type: AirlockMedicalGlass - components: - - pos: 2.5,-14.5 - parent: 104 - type: Transform -- uid: 1120 - type: Grille - components: - - pos: 2.5,-15.5 - parent: 104 - type: Transform -- uid: 1121 - type: Grille - components: - - pos: 2.5,-13.5 - parent: 104 - type: Transform -- uid: 1122 - type: CableApcExtension - components: - - pos: 1.5,-14.5 - parent: 104 - type: Transform -- uid: 1123 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 104 - type: Transform -- uid: 1124 - type: ChairOfficeLight - components: - - pos: -0.5,-12.5 - parent: 104 - type: Transform -- uid: 1125 - type: TableGlass - components: - - pos: -2.5,-12.5 - parent: 104 - type: Transform -- uid: 1126 - type: WallPlastitanium - components: - - pos: -17.5,22.5 - parent: 104 - type: Transform -- uid: 1127 - type: ComputerSurveillanceWirelessCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: -14.5,6.5 - parent: 104 - type: Transform -- uid: 1128 - type: WallPlastitanium - components: - - rot: -1.5707963267948966 rad - pos: -11.5,8.5 - parent: 104 - type: Transform -- uid: 1129 - type: TableReinforced - components: - - pos: -14.5,9.5 - parent: 104 - type: Transform -- uid: 1130 - type: StasisBed - components: - - pos: -2.5,-14.5 - parent: 104 - type: Transform -- uid: 1131 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-19.5 - parent: 104 - type: Transform -- uid: 1132 - type: WallIce - components: - - pos: -4.5,22.5 - parent: 104 - type: Transform -- uid: 1133 - type: WallIce - components: - - pos: -5.5,22.5 - parent: 104 - type: Transform -- uid: 1134 - type: WallIce - components: - - pos: -6.5,22.5 - parent: 104 - type: Transform -- uid: 1135 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-16.5 - parent: 104 - type: Transform -- uid: 1136 - type: WallPlastitanium - components: - - pos: -11.5,5.5 - parent: 104 - type: Transform -- uid: 1137 - type: WallPlastitanium - components: - - pos: -15.5,7.5 - parent: 104 - type: Transform -- uid: 1138 - type: WallPlastitanium - components: - - pos: -15.5,6.5 - parent: 104 - type: Transform -- uid: 1139 - type: WallPlastitanium - components: - - pos: -15.5,5.5 - parent: 104 - type: Transform -- uid: 1140 - type: filingCabinetDrawer - components: - - pos: -12.5,7.5 - parent: 104 - type: Transform -- uid: 1141 - type: SmallLight - components: - - pos: -13.5,9.5 - parent: 104 - type: Transform -- uid: 1142 - type: ReinforcedWindow - components: - - pos: -14.5,5.5 - parent: 104 - type: Transform -- uid: 1143 - type: PottedPlant24 - components: - - pos: -14.5,7.5 - parent: 104 - type: Transform -- uid: 1144 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-16.5 - parent: 104 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dock - type: SurveillanceCamera -- uid: 1145 - type: WindoorSecure - components: - - pos: -13.5,5.5 - parent: 104 - type: Transform -- uid: 1146 - type: Grille - components: - - pos: -12.5,5.5 - parent: 104 - type: Transform -- uid: 1147 - type: WallPlastitanium - components: - - pos: -11.5,7.5 - parent: 104 - type: Transform -- uid: 1148 - type: Grille - components: - - pos: -14.5,5.5 - parent: 104 - type: Transform -- uid: 1149 - type: TableReinforced - components: - - pos: -13.5,9.5 - parent: 104 - type: Transform -- uid: 1150 - type: ClothingNeckScarfStripedRed - components: - - pos: -2.530845,-16.461567 - parent: 104 - type: Transform -- uid: 1151 - type: SyringeInaprovaline - components: - - pos: -2.530845,-12.414692 - parent: 104 - type: Transform -- uid: 1152 - type: CableApcExtension - components: - - pos: 12.5,-20.5 - parent: 104 - type: Transform -- uid: 1153 - type: ClosetL3Filled - components: - - pos: 7.5,-17.5 - parent: 104 - type: Transform -- uid: 1154 - type: CableApcExtension - components: - - pos: 3.5,-13.5 - parent: 104 - type: Transform -- uid: 1155 - type: MountainRock - components: - - pos: -23.5,24.5 - parent: 104 - type: Transform -- uid: 1156 - type: MountainRock - components: - - pos: -23.5,25.5 - parent: 104 - type: Transform -- uid: 1157 - type: MountainRock - components: - - pos: -22.5,32.5 - parent: 104 - type: Transform -- uid: 1158 - type: MountainRock - components: - - pos: -23.5,30.5 - parent: 104 - type: Transform -- uid: 1159 - type: Railing - components: - - pos: -22.5,-23.5 - parent: 104 - type: Transform -- uid: 1160 - type: MountainRock - components: - - pos: -23.5,31.5 - parent: 104 - type: Transform -- uid: 1161 - type: MountainRock - components: - - pos: -22.5,23.5 - parent: 104 - type: Transform -- uid: 1162 - type: MountainRock - components: - - pos: -22.5,24.5 - parent: 104 - type: Transform -- uid: 1163 - type: MountainRock - components: - - pos: -22.5,25.5 - parent: 104 - type: Transform -- uid: 1164 - type: MountainRock - components: - - pos: -21.5,26.5 - parent: 104 - type: Transform -- uid: 1165 - type: MountainRock - components: - - pos: -22.5,30.5 - parent: 104 - type: Transform -- uid: 1166 - type: MountainRock - components: - - pos: -21.5,30.5 - parent: 104 - type: Transform -- uid: 1167 - type: MountainRock - components: - - pos: -24.5,31.5 - parent: 104 - type: Transform -- uid: 1168 - type: MountainRock - components: - - pos: -23.5,20.5 - parent: 104 - type: Transform -- uid: 1169 - type: MountainRock - components: - - pos: -24.5,21.5 - parent: 104 - type: Transform -- uid: 1170 - type: MountainRock - components: - - pos: -22.5,31.5 - parent: 104 - type: Transform -- uid: 1171 - type: MountainRock - components: - - pos: -25.5,30.5 - parent: 104 - type: Transform -- uid: 1172 - type: MountainRock - components: - - pos: -25.5,31.5 - parent: 104 - type: Transform -- uid: 1173 - type: MountainRock - components: - - pos: -25.5,32.5 - parent: 104 - type: Transform -- uid: 1174 - type: MountainRock - components: - - pos: -23.5,21.5 - parent: 104 - type: Transform -- uid: 1175 - type: MountainRock - components: - - pos: -23.5,29.5 - parent: 104 - type: Transform -- uid: 1176 - type: MountainRock - components: - - pos: -22.5,20.5 - parent: 104 - type: Transform -- uid: 1177 - type: MountainRock - components: - - pos: -23.5,15.5 - parent: 104 - type: Transform -- uid: 1178 - type: MountainRock - components: - - pos: -23.5,13.5 - parent: 104 - type: Transform -- uid: 1179 - type: MountainRock - components: - - pos: -22.5,13.5 - parent: 104 - type: Transform -- uid: 1180 - type: MountainRock - components: - - pos: -11.5,10.5 - parent: 104 - type: Transform -- uid: 1181 - type: WallPlastitanium - components: - - pos: 2.5,-16.5 - parent: 104 - type: Transform -- uid: 1182 - type: CableApcExtension - components: - - pos: 5.5,-15.5 - parent: 104 - type: Transform -- uid: 1183 - type: CableApcExtension - components: - - pos: 7.5,-14.5 - parent: 104 - type: Transform -- uid: 1184 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-11.5 - parent: 104 - type: Transform -- uid: 1185 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -10.5,7.5 - parent: 104 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Surveillance Shack - type: SurveillanceCamera -- uid: 1186 - type: ReinforcedWindow - components: - - pos: 2.5,-15.5 - parent: 104 - type: Transform -- uid: 1187 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -11.5,-20.5 - parent: 104 - type: Transform -- uid: 1188 - type: WallPlastitanium - components: - - pos: 2.5,-18.5 - parent: 104 - type: Transform -- uid: 1189 - type: Railing - components: - - pos: -14.5,1.5 - parent: 104 - type: Transform -- uid: 1190 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 - parent: 104 - type: Transform -- uid: 1191 - type: CableApcExtension - components: - - pos: 3.5,-12.5 - parent: 104 - type: Transform -- uid: 1192 - type: TableReinforcedGlass - components: - - pos: 3.5,-16.5 - parent: 104 - type: Transform -- uid: 1193 - type: Table - components: - - pos: 7.5,-12.5 - parent: 104 - type: Transform -- uid: 1194 - type: CableApcExtension - components: - - pos: 2.5,-14.5 - parent: 104 - type: Transform -- uid: 1195 - type: CableApcExtension - components: - - pos: 8.5,-16.5 - parent: 104 - type: Transform -- uid: 1196 - type: ReinforcedWindow - components: - - pos: -0.5,-17.5 - parent: 104 - type: Transform -- uid: 1197 - type: WallPlastitanium - components: - - pos: 7.5,-18.5 - parent: 104 - type: Transform -- uid: 1198 - type: ReinforcedWindow - components: - - pos: 2.5,-13.5 - parent: 104 - type: Transform -- uid: 1199 - type: WallPlastitanium - components: - - pos: 5.5,-18.5 - parent: 104 - type: Transform -- uid: 1200 - type: CableApcExtension - components: - - pos: 1.5,-15.5 - parent: 104 - type: Transform -- uid: 1201 - type: WallPlastitanium - components: - - pos: 6.5,-18.5 - parent: 104 - type: Transform -- uid: 1202 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -24.5,4.5 - parent: 104 - type: Transform -- uid: 1203 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -27.5,-23.5 - parent: 104 - type: Transform -- uid: 1204 - type: CableApcExtension - components: - - pos: 10.5,-16.5 - parent: 104 - type: Transform -- uid: 1205 - type: WallPlastitanium - components: - - pos: 2.5,-17.5 - parent: 104 - type: Transform -- uid: 1206 - type: WallPlastitanium - components: - - pos: 8.5,-18.5 - parent: 104 - type: Transform -- uid: 1207 - type: WallPlastitanium - components: - - pos: -17.5,24.5 - parent: 104 - type: Transform -- uid: 1208 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,7.5 - parent: 104 - type: Transform -- uid: 1209 - type: WallPlastitanium - components: - - pos: -17.5,20.5 - parent: 104 - type: Transform -- uid: 1210 - type: WallPlastitanium - components: - - pos: -14.5,19.5 - parent: 104 - type: Transform -- uid: 1211 - type: WallPlastitanium - components: - - pos: -12.5,23.5 - parent: 104 - type: Transform -- uid: 1212 - type: WallPlastitanium - components: - - pos: -16.5,19.5 - parent: 104 - type: Transform -- uid: 1213 - type: WallPlastitanium - components: - - pos: -12.5,19.5 - parent: 104 - type: Transform -- uid: 1214 - type: WallPlastitanium - components: - - pos: -16.5,24.5 - parent: 104 - type: Transform -- uid: 1215 - type: WallPlastitanium - components: - - pos: -12.5,20.5 - parent: 104 - type: Transform -- uid: 1216 - type: WallPlastitanium - components: - - pos: -15.5,24.5 - parent: 104 - type: Transform -- uid: 1217 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 7.5,9.5 - parent: 104 - type: Transform -- uid: 1218 - type: WallPlastitanium - components: - - pos: -14.5,24.5 - parent: 104 - type: Transform -- uid: 1219 - type: WallPlastitanium - components: - - pos: -12.5,21.5 - parent: 104 - type: Transform -- uid: 1220 - type: WallPlastitanium - components: - - pos: -13.5,24.5 - parent: 104 - type: Transform -- uid: 1221 - type: WallIce - components: - - pos: -6.5,20.5 - parent: 104 - type: Transform -- uid: 1222 - type: Catwalk - components: - - pos: -34.5,2.5 - parent: 104 - type: Transform -- uid: 1223 - type: Catwalk - components: - - pos: -34.5,3.5 - parent: 104 - type: Transform -- uid: 1224 - type: MountainRock - components: - - pos: -23.5,14.5 - parent: 104 - type: Transform -- uid: 1225 - type: TimerTrigger - components: - - pos: 3.7048721,-16.445147 - parent: 104 - type: Transform -- uid: 1226 - type: LightPostSmall - components: - - pos: -4.5,-0.5 - parent: 104 - type: Transform -- uid: 1227 - type: PosterContrabandVoteWeh - components: - - pos: -17.5,24.5 - parent: 104 - type: Transform -- uid: 1228 - type: PosterContrabandVoteWeh - components: - - pos: -16.5,24.5 - parent: 104 - type: Transform -- uid: 1229 - type: PosterContrabandVoteWeh - components: - - pos: -15.5,24.5 - parent: 104 - type: Transform -- uid: 1230 - type: PosterContrabandVoteWeh - components: - - pos: -14.5,24.5 - parent: 104 - type: Transform -- uid: 1231 - type: PosterContrabandVoteWeh - components: - - pos: -13.5,24.5 - parent: 104 - type: Transform -- uid: 1232 - type: CableApcExtension - components: - - pos: -10.5,6.5 - parent: 104 - type: Transform -- uid: 1233 - type: CableApcExtension - components: - - pos: -10.5,5.5 - parent: 104 - type: Transform -- uid: 1234 - type: CableApcExtension - components: - - pos: -10.5,4.5 - parent: 104 - type: Transform -- uid: 1235 - type: CableApcExtension - components: - - pos: -10.5,3.5 - parent: 104 - type: Transform -- uid: 1236 - type: CableApcExtension - components: - - pos: -10.5,2.5 - parent: 104 - type: Transform -- uid: 1237 - type: CableApcExtension - components: - - pos: -11.5,6.5 - parent: 104 - type: Transform -- uid: 1238 - type: CableApcExtension - components: - - pos: -12.5,6.5 - parent: 104 - type: Transform -- uid: 1239 - type: CableApcExtension - components: - - pos: -13.5,6.5 - parent: 104 - type: Transform -- uid: 1240 - type: CableApcExtension - components: - - pos: -14.5,6.5 - parent: 104 - type: Transform -- uid: 1241 - type: Grille - components: - - pos: 5.5,-9.5 - parent: 104 - type: Transform -- uid: 1242 - type: PosterContrabandSyndicateRecruitment - components: - - pos: -15.5,7.5 - parent: 104 - type: Transform -- uid: 1243 - type: Grille - components: - - pos: 7.5,-9.5 - parent: 104 - type: Transform -- uid: 1244 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,7.5 - parent: 104 - type: Transform -- uid: 1245 - type: PosterContrabandRobustSoftdrinks - components: - - pos: -9.5,8.5 - parent: 104 - type: Transform -- uid: 1246 - type: PosterLegitEnlist - components: - - pos: -3.5,-1.5 - parent: 104 - type: Transform -- uid: 1247 - type: WindowReinforcedDirectional - components: - - pos: 4.5,-12.5 - parent: 104 - type: Transform -- uid: 1248 - type: PosterContrabandVoteWeh - components: - - pos: -12.5,24.5 - parent: 104 - type: Transform -- uid: 1249 - type: Railing - components: - - pos: -15.5,1.5 - parent: 104 - type: Transform -- uid: 1250 - type: MountainRock - components: - - pos: 1.5,-10.5 - parent: 104 - type: Transform -- uid: 1251 - type: PosterContrabandVoteWeh - components: - - pos: -12.5,23.5 - parent: 104 - type: Transform -- uid: 1252 - type: PosterContrabandVoteWeh - components: - - pos: -12.5,22.5 - parent: 104 - type: Transform -- uid: 1253 - type: PosterContrabandVoteWeh - components: - - pos: -12.5,21.5 - parent: 104 - type: Transform -- uid: 1254 - type: PosterContrabandVoteWeh - components: - - pos: -12.5,20.5 - parent: 104 - type: Transform -- uid: 1255 - type: PosterContrabandVoteWeh - components: - - pos: -12.5,19.5 - parent: 104 - type: Transform -- uid: 1256 - type: PosterContrabandVoteWeh - components: - - pos: -13.5,19.5 - parent: 104 - type: Transform -- uid: 1257 - type: ChemistryHotplate - components: - - pos: 3.5,-10.5 - parent: 104 - type: Transform -- uid: 1258 - type: PosterContrabandVoteWeh - components: - - pos: -14.5,19.5 - parent: 104 - type: Transform -- uid: 1259 - type: PosterContrabandVoteWeh - components: - - pos: -15.5,19.5 - parent: 104 - type: Transform -- uid: 1260 - type: PosterContrabandVoteWeh - components: - - pos: -16.5,19.5 - parent: 104 - type: Transform -- uid: 1261 - type: PosterContrabandVoteWeh - components: - - pos: -17.5,19.5 - parent: 104 - type: Transform -- uid: 1262 - type: PosterContrabandVoteWeh - components: - - pos: -17.5,20.5 - parent: 104 - type: Transform -- uid: 1263 - type: PosterContrabandVoteWeh - components: - - pos: -17.5,21.5 - parent: 104 - type: Transform -- uid: 1264 - type: PosterContrabandVoteWeh - components: - - pos: -17.5,22.5 - parent: 104 - type: Transform -- uid: 1265 - type: PosterContrabandVoteWeh - components: - - pos: -17.5,23.5 - parent: 104 - type: Transform -- uid: 1266 - type: PlushieLizard - components: - - pos: -15.435635,22.055351 - parent: 104 - type: Transform - - fixtures: - - shape: !type:PolygonShape - vertices: - - 0.90000004,-0.90000004 - - 0.90000004,0.90000004 - - -0.90000004,0.90000004 - - -0.90000004,-0.90000004 - mask: - - Impassable - - HighImpassable - restitution: 0.3 - friction: 0.2 - type: Fixtures -- uid: 1267 - type: AlwaysPoweredLightExterior - components: - - pos: -15.5,23.5 - parent: 104 - type: Transform -- uid: 1268 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-12.5 - parent: 104 - type: Transform -- uid: 1269 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 0.5,-12.5 - parent: 104 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Medbay - type: SurveillanceCamera -- uid: 1270 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 104 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Chem and Bombs - type: SurveillanceCamera -- uid: 1271 - type: LockerSyndicatePersonalFilled - components: - - pos: 13.5,-13.5 - parent: 104 - type: Transform -- uid: 1272 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 104 - type: Transform -- uid: 1273 - type: Fireplace - components: - - pos: 1.5,0.5 - parent: 104 - type: Transform -- uid: 1274 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -3.5,-2.5 - parent: 104 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance - type: SurveillanceCamera -- uid: 1275 - type: CableApcExtension - components: - - pos: -6.5,-2.5 - parent: 104 - type: Transform -- uid: 1276 - type: LightPostSmall - components: - - pos: -34.5,4.5 - parent: 104 - type: Transform -- uid: 1277 - type: LightPostSmall - components: - - pos: -34.5,1.5 - parent: 104 - type: Transform -- uid: 1278 - type: LightPostSmall - components: - - pos: -35.5,-20.5 - parent: 104 - type: Transform -- uid: 1279 - type: LightPostSmall - components: - - pos: -35.5,-23.5 - parent: 104 - type: Transform -- uid: 1280 - type: LightPostSmall - components: - - pos: -27.5,-20.5 - parent: 104 - type: Transform -- uid: 1281 - type: CableApcExtension - components: - - pos: -6.5,-1.5 - parent: 104 - type: Transform -- uid: 1282 - type: CableApcExtension - components: - - pos: -6.5,-0.5 - parent: 104 - type: Transform -- uid: 1283 - type: CableApcExtension - components: - - pos: -6.5,0.5 - parent: 104 - type: Transform -- uid: 1284 - type: LightPostSmall - components: - - pos: -19.5,-20.5 - parent: 104 - type: Transform -- uid: 1285 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-23.5 - parent: 104 - type: Transform -- uid: 1286 - type: AlwaysPoweredLightLED - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 104 - type: Transform -- uid: 1287 - type: AlwaysPoweredLightLED - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-11.5 - parent: 104 - type: Transform -- uid: 1288 - type: AlwaysPoweredLightLED - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-20.5 - parent: 104 - type: Transform -- uid: 1289 - type: Railing - components: - - pos: -26.5,1.5 - parent: 104 - type: Transform -- uid: 1290 - type: Railing - components: - - pos: -27.5,1.5 - parent: 104 - type: Transform -- uid: 1291 - type: TargetClown - components: - - pos: 0.5,12.5 - parent: 104 - type: Transform -- uid: 1292 - type: CableApcExtension - components: - - pos: 3.5,1.5 - parent: 104 - type: Transform -- uid: 1293 - type: TargetHuman - components: - - pos: 0.5,14.5 - parent: 104 - type: Transform -- uid: 1294 - type: TargetStrange - components: - - pos: 0.5,10.5 - parent: 104 - type: Transform -- uid: 1295 - components: - - type: MetaData - - type: Transform - - index: 4 - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - parallax: Sky - type: Parallax - - space: False - mixture: - volume: 2500 - temperature: 248.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: MapAtmosphere -- uid: 1296 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 104 - type: Transform -- uid: 1297 - type: ChairOfficeLight - components: - - pos: 4.5,-16.5 - parent: 104 - type: Transform -- uid: 1298 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-17.5 - parent: 104 - type: Transform -- uid: 1299 - type: CrateChemistrySupplies - components: - - pos: 5.5,-12.5 - parent: 104 - type: Transform -- uid: 1300 - type: Table - components: - - pos: 7.5,-10.5 - parent: 104 - type: Transform -- uid: 1301 - type: Railing - components: - - pos: -28.5,-23.5 - parent: 104 - type: Transform -- uid: 1302 - type: Railing - components: - - pos: -21.5,-23.5 - parent: 104 - type: Transform -- uid: 1303 - type: Railing - components: - - pos: -26.5,-23.5 - parent: 104 - type: Transform -- uid: 1304 - type: ChairOfficeDark - components: - - pos: 11.5,-17.5 - parent: 104 - type: Transform -- uid: 1305 - type: Railing - components: - - pos: -24.5,-23.5 - parent: 104 - type: Transform -- uid: 1306 - type: Railing - components: - - pos: -20.5,-23.5 - parent: 104 - type: Transform -- uid: 1307 - type: Railing - components: - - pos: -19.5,-23.5 - parent: 104 - type: Transform -- uid: 1308 - type: Railing - components: - - pos: -18.5,-23.5 - parent: 104 - type: Transform -- uid: 1309 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -26.5,4.5 - parent: 104 - type: Transform -- uid: 1310 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -24.5,4.5 - parent: 104 - type: Transform -- uid: 1311 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -23.5,4.5 - parent: 104 - type: Transform -- uid: 1312 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -22.5,4.5 - parent: 104 - type: Transform -- uid: 1313 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -25.5,4.5 - parent: 104 - type: Transform -- uid: 1314 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -30.5,4.5 - parent: 104 - type: Transform -- uid: 1315 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -32.5,4.5 - parent: 104 - type: Transform -- uid: 1316 - type: Railing - components: - - pos: -32.5,-23.5 - parent: 104 - type: Transform -- uid: 1317 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -29.5,4.5 - parent: 104 - type: Transform -- uid: 1318 - type: SignToxins2 - components: - - pos: 8.5,-15.5 - parent: 104 - type: Transform -- uid: 1319 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -31.5,4.5 - parent: 104 - type: Transform -- uid: 1320 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-4.5 - parent: 104 - type: Transform -- uid: 1321 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 14.5,-3.5 - parent: 104 - type: Transform -- uid: 1322 - type: RemoteSignaller - components: - - pos: 5.611122,-17.316748 - parent: 104 - type: Transform -- uid: 1323 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -34.5,3.5 - parent: 104 - type: Transform -- uid: 1324 - type: CableApcStack - components: - - pos: 4.439247,-17.36072 - parent: 104 - type: Transform -- uid: 1325 - type: Screwdriver - components: - - rot: 1.5707963267948966 rad - pos: 4.954872,-17.44188 - parent: 104 - type: Transform -- uid: 1326 - type: ModularGrenade - components: - - pos: 4.001747,-17.289776 - parent: 104 - type: Transform -- uid: 1327 - type: BalloonSyn - components: - - pos: 0.03361702,-6.368435 - parent: 104 - type: Transform -- uid: 1328 - type: ModularGrenade - components: - - pos: 4.204872,-17.508755 - parent: 104 - type: Transform -- uid: 1329 - type: TimerTrigger - components: - - pos: 3.3003616,-16.470352 - parent: 104 - type: Transform -- uid: 1330 - type: SignalTrigger - components: - - pos: 3.6284866,-16.955233 - parent: 104 - type: Transform -- uid: 1331 - type: SignalTrigger - components: - - pos: 3.3003616,-17.06472 - parent: 104 - type: Transform -- uid: 1332 - type: RemoteSignaller - components: - - pos: 5.267372,-17.316748 - parent: 104 - type: Transform -- uid: 1333 - type: Beaker - components: - - pos: 4.7242413,-12.192329 - parent: 104 - type: Transform -- uid: 1334 - type: Beaker - components: - - pos: 3.7053413,-12.135814 - parent: 104 - type: Transform -- uid: 1335 - type: LargeBeaker - components: - - pos: 3.8615913,-12.386074 - parent: 104 - type: Transform -- uid: 1336 - type: ClothingNeckStethoscope - components: - - pos: 7.5027137,-12.301802 - parent: 104 - type: Transform -- uid: 1337 - type: CableApcExtension - components: - - pos: -6.5,-4.5 - parent: 104 - type: Transform -- uid: 1338 - type: CableApcExtension - components: - - pos: -6.5,-5.5 - parent: 104 - type: Transform -- uid: 1339 - type: CableApcExtension - components: - - pos: -6.5,-6.5 - parent: 104 - type: Transform -- uid: 1340 - type: CableApcExtension - components: - - pos: -6.5,-7.5 - parent: 104 - type: Transform -- uid: 1341 - type: CableApcExtension - components: - - pos: -6.5,-8.5 - parent: 104 - type: Transform -- uid: 1342 - type: CableApcExtension - components: - - pos: -6.5,-9.5 - parent: 104 - type: Transform -- uid: 1343 - type: CableApcExtension - components: - - pos: -6.5,-10.5 - parent: 104 - type: Transform -- uid: 1344 - type: CableApcExtension - components: - - pos: -6.5,-11.5 - parent: 104 - type: Transform -- uid: 1345 - type: CableApcExtension - components: - - pos: -6.5,-12.5 - parent: 104 - type: Transform -- uid: 1346 - type: CableApcExtension - components: - - pos: -6.5,-13.5 - parent: 104 - type: Transform -- uid: 1347 - type: CableApcExtension - components: - - pos: -6.5,-14.5 - parent: 104 - type: Transform -- uid: 1348 - type: CableApcExtension - components: - - pos: -6.5,-15.5 - parent: 104 - type: Transform -- uid: 1349 - type: CableApcExtension - components: - - pos: -6.5,-16.5 - parent: 104 - type: Transform -- uid: 1350 - type: SheetSteel - components: - - pos: 3.460312,-15.657375 - parent: 104 - type: Transform -- uid: 1351 - type: TableReinforcedGlass - components: - - pos: 3.5,-15.5 - parent: 104 - type: Transform -- uid: 1352 - type: Railing - components: - - pos: -23.5,-23.5 - parent: 104 - type: Transform -- uid: 1353 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -33.5,4.5 - parent: 104 - type: Transform -- uid: 1354 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -28.5,4.5 - parent: 104 - type: Transform -- uid: 1355 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -27.5,4.5 - parent: 104 - type: Transform -- uid: 1356 - type: AlwaysPoweredWallLight - components: - - pos: 1.5,-12.5 - parent: 104 - type: Transform -- uid: 1357 - type: Railing - components: - - pos: -27.5,-23.5 - parent: 104 - type: Transform -- uid: 1358 - type: SinkWide - components: - - pos: -4.5,-2.5 - parent: 104 - type: Transform -- uid: 1359 - type: ClosetEmergencyFilledRandom - components: - - pos: -2.5,-2.5 - parent: 104 - type: Transform -- uid: 1360 - type: Rack - components: - - pos: -2.5,-4.5 - parent: 104 - type: Transform -- uid: 1361 - type: FloorDrain - components: - - pos: -4.5,-2.5 - parent: 104 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 1362 - type: Catwalk - components: - - pos: -4.5,-2.5 - parent: 104 - type: Transform -- uid: 1363 - type: Catwalk - components: - - pos: -2.5,-2.5 - parent: 104 - type: Transform -- uid: 1364 - type: Catwalk - components: - - pos: -3.5,-2.5 - parent: 104 - type: Transform -- uid: 1365 - type: Catwalk - components: - - pos: -4.5,-4.5 - parent: 104 - type: Transform -- uid: 1366 - type: Catwalk - components: - - pos: -3.5,-4.5 - parent: 104 - type: Transform -- uid: 1367 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -3.5,-4.5 - parent: 104 - type: Transform -- uid: 1368 - type: ToolboxEmergencyFilled - components: - - pos: -2.4700382,-4.362167 - parent: 104 - type: Transform -- uid: 1369 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-13.5 - parent: 104 - type: Transform -- uid: 1370 - type: WindowReinforcedDirectional - components: - - pos: 3.5,-12.5 - parent: 104 - type: Transform -- uid: 1371 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-13.5 - parent: 104 - type: Transform -- uid: 1372 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-14.5 - parent: 104 - type: Transform -- uid: 1373 - type: Railing - components: - - pos: -31.5,-23.5 - parent: 104 - type: Transform -- uid: 1374 - type: Railing - components: - - pos: -29.5,-23.5 - parent: 104 - type: Transform -- uid: 1375 - type: LockerSyndicatePersonalFilled - components: - - pos: 13.5,-14.5 - parent: 104 - type: Transform -- uid: 1376 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -4.5,-4.5 - parent: 104 - type: Transform -- uid: 1377 - type: Catwalk - components: - - pos: -2.5,-4.5 - parent: 104 - type: Transform -- uid: 1378 - type: Railing - components: - - pos: -25.5,-23.5 - parent: 104 - type: Transform -- uid: 1379 - type: Railing - components: - - pos: -30.5,-23.5 - parent: 104 - type: Transform -- uid: 1380 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,-8.5 - parent: 104 - type: Transform -- uid: 1381 - type: WallPlastitanium - components: - - pos: 16.5,-16.5 - parent: 104 - type: Transform -- uid: 1382 - type: ReinforcedWindow - components: - - pos: -1.5,-0.5 - parent: 104 - type: Transform -- uid: 1383 - type: AlwaysPoweredWallLight - components: - - rot: 3.141592653589793 rad - pos: 11.5,-1.5 - parent: 104 - type: Transform -- uid: 1384 - type: PosterContrabandEnergySwords - components: - - pos: 14.5,-9.5 - parent: 104 - type: Transform -- uid: 1385 - type: ReinforcedWindow - components: - - pos: 2.5,1.5 - parent: 104 - type: Transform -- uid: 1386 - type: PosterContrabandSyndicatePistol - components: - - pos: 12.5,-9.5 - parent: 104 - type: Transform -- uid: 1387 - type: PosterContrabandRedRum - components: - - pos: 2.5,-9.5 - parent: 104 - type: Transform -- uid: 1388 - type: MedkitToxinFilled - components: - - pos: 7.5339637,-11.436214 - parent: 104 - type: Transform -- uid: 1389 - type: Grille - components: - - pos: 4.5,1.5 - parent: 104 - type: Transform -- uid: 1390 - type: MountainRock - components: - - pos: -0.5,-10.5 - parent: 104 - type: Transform -- uid: 1391 - type: MountainRock - components: - - pos: -23.5,28.5 - parent: 104 - type: Transform -- uid: 1392 - type: MountainRock - components: - - pos: -24.5,30.5 - parent: 104 - type: Transform -- uid: 1393 - type: MountainRock - components: - - pos: -23.5,32.5 - parent: 104 - type: Transform -- uid: 1394 - type: MountainRock - components: - - pos: -22.5,26.5 - parent: 104 - type: Transform -- uid: 1395 - type: MountainRock - components: - - pos: -23.5,26.5 - parent: 104 - type: Transform -- uid: 1396 - type: MountainRock - components: - - pos: -24.5,32.5 - parent: 104 - type: Transform -- uid: 1397 - type: MountainRock - components: - - pos: -23.5,27.5 - parent: 104 - type: Transform -- uid: 1398 - type: MountainRock - components: - - pos: -22.5,28.5 - parent: 104 - type: Transform -- uid: 1399 - type: MountainRock - components: - - pos: -21.5,29.5 - parent: 104 - type: Transform -- uid: 1400 - type: MountainRock - components: - - pos: -22.5,29.5 - parent: 104 - type: Transform -- uid: 1401 - type: MountainRock - components: - - pos: -22.5,27.5 - parent: 104 - type: Transform -- uid: 1402 - type: MountainRock - components: - - pos: -21.5,27.5 - parent: 104 - type: Transform -- uid: 1403 - type: MountainRock - components: - - pos: -21.5,28.5 - parent: 104 - type: Transform -- uid: 1404 - type: MountainRock - components: - - pos: -21.5,25.5 - parent: 104 - type: Transform -- uid: 1405 - type: MountainRock - components: - - pos: -21.5,24.5 - parent: 104 - type: Transform -- uid: 1406 - type: MountainRock - components: - - pos: -21.5,23.5 - parent: 104 - type: Transform -- uid: 1407 - type: MountainRock - components: - - pos: 6.5,-24.5 - parent: 104 - type: Transform -- uid: 1408 - type: MountainRock - components: - - pos: 7.5,-24.5 - parent: 104 - type: Transform -- uid: 1409 - type: WallPlastitanium - components: - - pos: 9.5,-21.5 - parent: 104 - type: Transform -- uid: 1410 - type: Grille - components: - - pos: 8.5,-17.5 - parent: 104 - type: Transform -- uid: 1411 - type: WallPlastitanium - components: - - pos: 9.5,-23.5 - parent: 104 - type: Transform -- uid: 1412 - type: WallPlastitanium - components: - - pos: 15.5,-16.5 - parent: 104 - type: Transform -- uid: 1413 - type: LightPostSmall - components: - - pos: 0.5,-22.5 - parent: 104 - type: Transform -- uid: 1414 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-1.5 - parent: 104 - type: Transform -- uid: 1415 - type: MountainRock - components: - - pos: 3.5,-21.5 - parent: 104 - type: Transform -- uid: 1416 - type: MountainRock - components: - - pos: 4.5,-21.5 - parent: 104 - type: Transform -- uid: 1417 - type: MountainRock - components: - - pos: 20.5,-24.5 - parent: 104 - type: Transform -- uid: 1418 - type: MountainRock - components: - - pos: 21.5,-24.5 - parent: 104 - type: Transform -- uid: 1419 - type: MountainRock - components: - - pos: 22.5,-24.5 - parent: 104 - type: Transform -- uid: 1420 - type: MountainRock - components: - - pos: 23.5,-24.5 - parent: 104 - type: Transform -- uid: 1421 - type: MountainRock - components: - - pos: 24.5,-24.5 - parent: 104 - type: Transform -- uid: 1422 - type: MountainRock - components: - - pos: 25.5,-24.5 - parent: 104 - type: Transform -- uid: 1423 - type: MountainRock - components: - - pos: 26.5,-24.5 - parent: 104 - type: Transform -- uid: 1424 - type: MountainRock - components: - - pos: 27.5,-24.5 - parent: 104 - type: Transform -- uid: 1425 - type: MountainRock - components: - - pos: -4.5,-22.5 - parent: 104 - type: Transform -- uid: 1426 - type: WallPlastitanium - components: - - pos: -3.5,-5.5 - parent: 104 - type: Transform -- uid: 1427 - type: MountainRock - components: - - pos: -4.5,-17.5 - parent: 104 - type: Transform -- uid: 1428 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -18.5,-20.5 - parent: 104 - type: Transform -- uid: 1429 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -20.5,-20.5 - parent: 104 - type: Transform -- uid: 1430 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -27.5,-20.5 - parent: 104 - type: Transform -- uid: 1431 - type: APCHyperCapacity - components: - - pos: 20.5,-12.5 - parent: 104 - type: Transform -- uid: 1432 - type: Railing - components: - - pos: -33.5,-23.5 - parent: 104 - type: Transform -- uid: 1433 - type: MountainRock - components: - - pos: 5.5,-24.5 - parent: 104 - type: Transform -- uid: 1434 - type: MountainRock - components: - - pos: 33.5,-21.5 - parent: 104 - type: Transform -- uid: 1435 - type: MountainRock - components: - - pos: 33.5,-20.5 - parent: 104 - type: Transform -- uid: 1436 - type: MountainRock - components: - - pos: 33.5,-19.5 - parent: 104 - type: Transform -- uid: 1437 - type: MountainRock - components: - - pos: 33.5,-18.5 - parent: 104 - type: Transform -- uid: 1438 - type: CableMV - components: - - pos: 20.5,-12.5 - parent: 104 - type: Transform -- uid: 1439 - type: CableApcExtension - components: - - pos: 20.5,-12.5 - parent: 104 - type: Transform -- uid: 1440 - type: MountainRock - components: - - pos: 33.5,-17.5 - parent: 104 - type: Transform -- uid: 1441 - type: MountainRock - components: - - pos: 33.5,-16.5 - parent: 104 - type: Transform -- uid: 1442 - type: MountainRock - components: - - pos: 33.5,-15.5 - parent: 104 - type: Transform -- uid: 1443 - type: MountainRock - components: - - pos: 33.5,-14.5 - parent: 104 - type: Transform -- uid: 1444 - type: MountainRock - components: - - pos: 33.5,-13.5 - parent: 104 - type: Transform -- uid: 1445 - type: APCHyperCapacity - components: - - pos: 13.5,-9.5 - parent: 104 - type: Transform -- uid: 1446 - type: MountainRock - components: - - pos: 33.5,-12.5 - parent: 104 - type: Transform -- uid: 1447 - type: MountainRock - components: - - pos: 30.5,5.5 - parent: 104 - type: Transform -- uid: 1448 - type: MountainRock - components: - - pos: 29.5,5.5 - parent: 104 - type: Transform -- uid: 1449 - type: CableApcExtension - components: - - pos: 16.5,-13.5 - parent: 104 - type: Transform -- uid: 1450 - type: CableApcExtension - components: - - pos: 15.5,-13.5 - parent: 104 - type: Transform -- uid: 1451 - type: CableApcExtension - components: - - pos: 15.5,-12.5 - parent: 104 - type: Transform -- uid: 1452 - type: CableApcExtension - components: - - pos: 15.5,-11.5 - parent: 104 - type: Transform -- uid: 1453 - type: CableApcExtension - components: - - pos: 15.5,-10.5 - parent: 104 - type: Transform -- uid: 1454 - type: CableApcExtension - components: - - pos: 14.5,-10.5 - parent: 104 - type: Transform -- uid: 1455 - type: CableApcExtension - components: - - pos: 13.5,-10.5 - parent: 104 - type: Transform -- uid: 1456 - type: CableApcExtension - components: - - pos: 12.5,-10.5 - parent: 104 - type: Transform -- uid: 1457 - type: CableApcExtension - components: - - pos: 11.5,-10.5 - parent: 104 - type: Transform -- uid: 1458 - type: CableApcExtension - components: - - pos: 15.5,-14.5 - parent: 104 - type: Transform -- uid: 1459 - type: CableApcExtension - components: - - pos: 14.5,-14.5 - parent: 104 - type: Transform -- uid: 1460 - type: CableApcExtension - components: - - pos: 13.5,-14.5 - parent: 104 - type: Transform -- uid: 1461 - type: CableApcExtension - components: - - pos: 12.5,-14.5 - parent: 104 - type: Transform -- uid: 1462 - type: CableMV - components: - - pos: 16.5,-13.5 - parent: 104 - type: Transform -- uid: 1463 - type: CableMV - components: - - pos: 15.5,-13.5 - parent: 104 - type: Transform -- uid: 1464 - type: CableMV - components: - - pos: 15.5,-12.5 - parent: 104 - type: Transform -- uid: 1465 - type: CableMV - components: - - pos: 15.5,-11.5 - parent: 104 - type: Transform -- uid: 1466 - type: CableMV - components: - - pos: 15.5,-10.5 - parent: 104 - type: Transform -- uid: 1467 - type: CableMV - components: - - pos: 14.5,-10.5 - parent: 104 - type: Transform -- uid: 1468 - type: CableMV - components: - - pos: 13.5,-10.5 - parent: 104 - type: Transform -- uid: 1469 - type: CableMV - components: - - pos: 13.5,-9.5 - parent: 104 - type: Transform -- uid: 1470 - type: AlwaysPoweredWallLight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-14.5 - parent: 104 - type: Transform -- uid: 1471 - type: AlwaysPoweredWallLight - components: - - pos: 12.5,-10.5 - parent: 104 - type: Transform -- uid: 1472 - type: MountainRock - components: - - pos: 28.5,5.5 - parent: 104 - type: Transform -- uid: 1473 - type: MountainRock - components: - - pos: 27.5,5.5 - parent: 104 - type: Transform -- uid: 1474 - type: CableApcExtension - components: - - pos: 7.5,-5.5 - parent: 104 - type: Transform -- uid: 1475 - type: CableApcExtension - components: - - pos: 6.5,-1.5 - parent: 104 - type: Transform -- uid: 1476 - type: CableApcExtension - components: - - pos: 3.5,0.5 - parent: 104 - type: Transform -- uid: 1477 - type: APCHyperCapacity - components: - - pos: 8.5,-5.5 - parent: 104 - type: Transform -- uid: 1478 - type: CableMV - components: - - pos: 12.5,-10.5 - parent: 104 - type: Transform -- uid: 1479 - type: CableMV - components: - - pos: 11.5,-10.5 - parent: 104 - type: Transform -- uid: 1480 - type: CableMV - components: - - pos: 10.5,-10.5 - parent: 104 - type: Transform -- uid: 1481 - type: CableMV - components: - - pos: 9.5,-10.5 - parent: 104 - type: Transform -- uid: 1482 - type: CableMV - components: - - pos: 9.5,-9.5 - parent: 104 - type: Transform -- uid: 1483 - type: CableMV - components: - - pos: 9.5,-8.5 - parent: 104 - type: Transform -- uid: 1484 - type: CableMV - components: - - pos: 9.5,-7.5 - parent: 104 - type: Transform -- uid: 1485 - type: CableMV - components: - - pos: 9.5,-6.5 - parent: 104 - type: Transform -- uid: 1486 - type: CableMV - components: - - pos: 8.5,-6.5 - parent: 104 - type: Transform -- uid: 1487 - type: CableMV - components: - - pos: 8.5,-5.5 - parent: 104 - type: Transform -- uid: 1488 - type: CableApcExtension - components: - - pos: 6.5,-5.5 - parent: 104 - type: Transform -- uid: 1489 - type: CableApcExtension - components: - - pos: 8.5,-5.5 - parent: 104 - type: Transform -- uid: 1490 - type: CableApcExtension - components: - - pos: 6.5,-4.5 - parent: 104 - type: Transform -- uid: 1491 - type: CableApcExtension - components: - - pos: 6.5,-3.5 - parent: 104 - type: Transform -- uid: 1492 - type: CableApcExtension - components: - - pos: 6.5,-2.5 - parent: 104 - type: Transform -- uid: 1493 - type: CableApcExtension - components: - - pos: 6.5,-0.5 - parent: 104 - type: Transform -- uid: 1494 - type: CableApcExtension - components: - - pos: 5.5,-0.5 - parent: 104 - type: Transform -- uid: 1495 - type: CableApcExtension - components: - - pos: 4.5,-0.5 - parent: 104 - type: Transform -- uid: 1496 - type: CableApcExtension - components: - - pos: 4.5,0.5 - parent: 104 - type: Transform -- uid: 1497 - type: CableApcExtension - components: - - pos: 2.5,0.5 - parent: 104 - type: Transform -- uid: 1498 - type: CableApcExtension - components: - - pos: 2.5,-0.5 - parent: 104 - type: Transform -- uid: 1499 - type: CableApcExtension - components: - - pos: 1.5,-0.5 - parent: 104 - type: Transform -- uid: 1500 - type: CableApcExtension - components: - - pos: 0.5,-0.5 - parent: 104 - type: Transform -- uid: 1501 - type: CableApcExtension - components: - - pos: 0.5,-1.5 - parent: 104 - type: Transform -- uid: 1502 - type: CableApcExtension - components: - - pos: -0.5,-1.5 - parent: 104 - type: Transform -- uid: 1503 - type: CableApcExtension - components: - - pos: -0.5,-1.5 - parent: 104 - type: Transform -- uid: 1504 - type: CableApcExtension - components: - - pos: -0.5,-2.5 - parent: 104 - type: Transform -- uid: 1505 - type: CableApcExtension - components: - - pos: -0.5,-3.5 - parent: 104 - type: Transform -- uid: 1506 - type: CableApcExtension - components: - - pos: -0.5,-4.5 - parent: 104 - type: Transform -- uid: 1507 - type: CableApcExtension - components: - - pos: -0.5,-5.5 - parent: 104 - type: Transform -- uid: 1508 - type: CableApcExtension - components: - - pos: -0.5,-6.5 - parent: 104 - type: Transform -- uid: 1509 - type: CableApcExtension - components: - - pos: -0.5,-7.5 - parent: 104 - type: Transform -- uid: 1510 - type: CableApcExtension - components: - - pos: 0.5,-7.5 - parent: 104 - type: Transform -- uid: 1511 - type: CableApcExtension - components: - - pos: 1.5,-7.5 - parent: 104 - type: Transform -- uid: 1512 - type: CableApcExtension - components: - - pos: 2.5,-7.5 - parent: 104 - type: Transform -- uid: 1513 - type: CableApcExtension - components: - - pos: 4.5,-7.5 - parent: 104 - type: Transform -- uid: 1514 - type: CableApcExtension - components: - - pos: 3.5,-7.5 - parent: 104 - type: Transform -- uid: 1515 - type: CableApcExtension - components: - - pos: 5.5,-7.5 - parent: 104 - type: Transform -- uid: 1516 - type: CableApcExtension - components: - - pos: 5.5,-8.5 - parent: 104 - type: Transform -- uid: 1517 - type: CableApcExtension - components: - - pos: 6.5,-8.5 - parent: 104 - type: Transform -- uid: 1518 - type: CableApcExtension - components: - - pos: 7.5,-8.5 - parent: 104 - type: Transform -- uid: 1519 - type: CableApcExtension - components: - - pos: 8.5,-8.5 - parent: 104 - type: Transform -- uid: 1520 - type: CableApcExtension - components: - - pos: 9.5,-8.5 - parent: 104 - type: Transform -- uid: 1521 - type: CableApcExtension - components: - - pos: 10.5,-8.5 - parent: 104 - type: Transform -- uid: 1522 - type: CableApcExtension - components: - - pos: 10.5,-7.5 - parent: 104 - type: Transform -- uid: 1523 - type: CableApcExtension - components: - - pos: 11.5,-7.5 - parent: 104 - type: Transform -- uid: 1524 - type: CableApcExtension - components: - - pos: 12.5,-7.5 - parent: 104 - type: Transform -- uid: 1525 - type: CableApcExtension - components: - - pos: 13.5,-7.5 - parent: 104 - type: Transform -- uid: 1526 - type: CableApcExtension - components: - - pos: 14.5,-7.5 - parent: 104 - type: Transform -- uid: 1527 - type: CableApcExtension - components: - - pos: 14.5,-7.5 - parent: 104 - type: Transform -- uid: 1528 - type: CableApcExtension - components: - - pos: 15.5,-7.5 - parent: 104 - type: Transform -- uid: 1529 - type: CableApcExtension - components: - - pos: 14.5,-6.5 - parent: 104 - type: Transform -- uid: 1530 - type: CableApcExtension - components: - - pos: 14.5,-5.5 - parent: 104 - type: Transform -- uid: 1531 - type: CableApcExtension - components: - - pos: 14.5,-4.5 - parent: 104 - type: Transform -- uid: 1532 - type: AlwaysPoweredWallLight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-8.5 - parent: 104 - type: Transform -- uid: 1533 - type: MountainRock - components: - - pos: 26.5,5.5 - parent: 104 - type: Transform -- uid: 1534 - type: AlwaysPoweredWallLight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 104 - type: Transform -- uid: 1535 - type: MountainRock - components: - - pos: 25.5,5.5 - parent: 104 - type: Transform -- uid: 1536 - type: AlwaysPoweredWallLight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 104 - type: Transform -- uid: 1537 - type: AlwaysPoweredWallLight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-8.5 - parent: 104 - type: Transform -- uid: 1538 - type: CableApcExtension - components: - - pos: 7.5,-0.5 - parent: 104 - type: Transform -- uid: 1539 - type: CableApcExtension - components: - - pos: 8.5,-0.5 - parent: 104 - type: Transform -- uid: 1540 - type: CableApcExtension - components: - - pos: 9.5,-0.5 - parent: 104 - type: Transform -- uid: 1541 - type: CableApcExtension - components: - - pos: 8.5,-0.5 - parent: 104 - type: Transform -- uid: 1542 - type: MountainRock - components: - - pos: 24.5,5.5 - parent: 104 - type: Transform -- uid: 1543 - type: CableApcExtension - components: - - pos: 10.5,-0.5 - parent: 104 - type: Transform -- uid: 1544 - type: AlwaysPoweredWallLight - components: - - pos: 15.5,-6.5 - parent: 104 - type: Transform -- uid: 1545 - type: AlwaysPoweredWallLight - components: - - pos: 14.5,-3.5 - parent: 104 - type: Transform -- uid: 1546 - type: AlwaysPoweredWallLight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-4.5 - parent: 104 - type: Transform -- uid: 1547 - type: AirlockSecurityGlass - components: - - pos: 3.5,1.5 - parent: 104 - type: Transform -- uid: 1548 - type: ClothingOuterWinterCoat - components: - - pos: 4.5,2.5 - parent: 104 - type: Transform -- uid: 1549 - type: WallIce - components: - - pos: -0.5,10.5 - parent: 104 - type: Transform -- uid: 1550 - type: MountainRock - components: - - pos: 23.5,5.5 - parent: 104 - type: Transform -- uid: 1551 - type: PosterLegitIan - components: - - pos: -0.5,12.5 - parent: 104 - type: Transform -- uid: 1552 - type: MountainRock - components: - - pos: 22.5,5.5 - parent: 104 - type: Transform -- uid: 1553 - type: MountainRock - components: - - pos: 21.5,5.5 - parent: 104 - type: Transform -- uid: 1554 - type: MountainRock - components: - - pos: 20.5,5.5 - parent: 104 - type: Transform -- uid: 1555 - type: Multitool - components: - - pos: 11.895346,-10.413807 - parent: 104 - type: Transform -- uid: 1556 - type: PosterContrabandC20r - components: - - pos: 10.5,-9.5 - parent: 104 - type: Transform -- uid: 1557 - type: MountainRock - components: - - pos: 19.5,19.5 - parent: 104 - type: Transform -- uid: 1558 - type: PosterLegitIonRifle - components: - - pos: 16.5,-14.5 - parent: 104 - type: Transform -- uid: 1559 - type: MountainRock - components: - - pos: 19.5,20.5 - parent: 104 - type: Transform -- uid: 1560 - type: MountainRock - components: - - pos: 19.5,21.5 - parent: 104 - type: Transform -- uid: 1561 - type: PosterContrabandSyndicateRecruitment - components: - - pos: 16.5,-11.5 - parent: 104 - type: Transform -- uid: 1562 - type: MountainRock - components: - - pos: -11.5,19.5 - parent: 104 - type: Transform -- uid: 1563 - type: PosterContrabandPower - components: - - pos: 19.5,-12.5 - parent: 104 - type: Transform -- uid: 1564 - type: MountainRock - components: - - pos: -11.5,18.5 - parent: 104 - type: Transform -- uid: 1565 - type: PosterContrabandVoteWeh - components: - - pos: 12.5,-3.5 - parent: 104 - type: Transform -- uid: 1566 - type: MountainRock - components: - - pos: 20.5,9.5 - parent: 104 - type: Transform -- uid: 1567 - type: MountainRock - components: - - pos: 20.5,10.5 - parent: 104 - type: Transform -- uid: 1568 - type: MountainRock - components: - - pos: 20.5,11.5 - parent: 104 - type: Transform -- uid: 1569 - type: MountainRock - components: - - pos: 20.5,12.5 - parent: 104 - type: Transform -- uid: 1570 - type: AlwaysPoweredWallLight - components: - - pos: 19.5,-5.5 - parent: 104 - type: Transform -- uid: 1571 - type: AlwaysPoweredWallLight - components: - - pos: 21.5,-5.5 - parent: 104 - type: Transform -- uid: 1572 - type: AlwaysPoweredWallLight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-9.5 - parent: 104 - type: Transform -- uid: 1573 - type: AlwaysPoweredWallLight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-9.5 - parent: 104 - type: Transform -- uid: 1574 - type: APCHyperCapacity - components: - - pos: 21.5,-4.5 - parent: 104 - type: Transform -- uid: 1575 - type: CableApcExtension - components: - - pos: 21.5,-5.5 - parent: 104 - type: Transform -- uid: 1576 - type: CableApcExtension - components: - - pos: 20.5,-5.5 - parent: 104 - type: Transform -- uid: 1577 - type: CableApcExtension - components: - - pos: 19.5,-5.5 - parent: 104 - type: Transform -- uid: 1578 - type: CableApcExtension - components: - - pos: 19.5,-6.5 - parent: 104 - type: Transform -- uid: 1579 - type: CableApcExtension - components: - - pos: 19.5,-7.5 - parent: 104 - type: Transform -- uid: 1580 - type: CableApcExtension - components: - - pos: 19.5,-9.5 - parent: 104 - type: Transform -- uid: 1581 - type: CableApcExtension - components: - - pos: 19.5,-9.5 - parent: 104 - type: Transform -- uid: 1582 - type: CableApcExtension - components: - - pos: 19.5,-8.5 - parent: 104 - type: Transform -- uid: 1583 - type: CableApcExtension - components: - - pos: 20.5,-9.5 - parent: 104 - type: Transform -- uid: 1584 - type: CableApcExtension - components: - - pos: 21.5,-9.5 - parent: 104 - type: Transform -- uid: 1585 - type: CableApcExtension - components: - - pos: 21.5,-4.5 - parent: 104 - type: Transform -- uid: 1586 - type: CableApcExtension - components: - - pos: 18.5,-7.5 - parent: 104 - type: Transform -- uid: 1587 - type: CableApcExtension - components: - - pos: 17.5,-7.5 - parent: 104 - type: Transform -- uid: 1588 - type: CableApcExtension - components: - - pos: 21.5,-8.5 - parent: 104 - type: Transform -- uid: 1589 - type: CableApcExtension - components: - - pos: 21.5,-7.5 - parent: 104 - type: Transform -- uid: 1590 - type: CableApcExtension - components: - - pos: 21.5,-6.5 - parent: 104 - type: Transform -- uid: 1591 - type: CableApcExtension - components: - - pos: 10.5,-1.5 - parent: 104 - type: Transform -- uid: 1592 - type: CableApcExtension - components: - - pos: 10.5,-3.5 - parent: 104 - type: Transform -- uid: 1593 - type: CableApcExtension - components: - - pos: 10.5,-2.5 - parent: 104 - type: Transform -- uid: 1594 - type: MountainRock - components: - - pos: 20.5,13.5 - parent: 104 - type: Transform -- uid: 1595 - type: CableApcExtension - components: - - pos: -1.5,-3.5 - parent: 104 - type: Transform -- uid: 1596 - type: CableApcExtension - components: - - pos: -2.5,-3.5 - parent: 104 - type: Transform -- uid: 1597 - type: CableApcExtension - components: - - pos: -3.5,-3.5 - parent: 104 - type: Transform -- uid: 1598 - type: MountainRock - components: - - pos: 20.5,14.5 - parent: 104 - type: Transform -- uid: 1599 - type: MountainRock - components: - - pos: 20.5,15.5 - parent: 104 - type: Transform -- uid: 1600 - type: MountainRock - components: - - pos: 20.5,16.5 - parent: 104 - type: Transform -- uid: 1601 - type: MountainRock - components: - - pos: 20.5,17.5 - parent: 104 - type: Transform -- uid: 1602 - type: MountainRock - components: - - pos: 20.5,18.5 - parent: 104 - type: Transform -- uid: 1603 - type: MountainRock - components: - - pos: 20.5,19.5 - parent: 104 - type: Transform -- uid: 1604 - type: MountainRock - components: - - pos: 20.5,20.5 - parent: 104 - type: Transform -- uid: 1605 - type: MountainRock - components: - - pos: 20.5,21.5 - parent: 104 - type: Transform -- uid: 1606 - type: MountainRock - components: - - pos: -10.5,19.5 - parent: 104 - type: Transform -- uid: 1607 - type: MountainRock - components: - - pos: 19.5,11.5 - parent: 104 - type: Transform -- uid: 1608 - type: MountainRock - components: - - pos: 19.5,12.5 - parent: 104 - type: Transform -- uid: 1609 - type: MountainRock - components: - - pos: 19.5,15.5 - parent: 104 - type: Transform -- uid: 1610 - type: MountainRock - components: - - pos: 18.5,21.5 - parent: 104 - type: Transform -- uid: 1611 - type: MountainRock - components: - - pos: 17.5,21.5 - parent: 104 - type: Transform -- uid: 1612 - type: MountainRock - components: - - pos: 16.5,21.5 - parent: 104 - type: Transform -- uid: 1613 - type: MountainRock - components: - - pos: 15.5,21.5 - parent: 104 - type: Transform -- uid: 1614 - type: MountainRock - components: - - pos: 14.5,21.5 - parent: 104 - type: Transform -- uid: 1615 - type: MountainRock - components: - - pos: 13.5,21.5 - parent: 104 - type: Transform -- uid: 1616 - type: MountainRock - components: - - pos: 12.5,21.5 - parent: 104 - type: Transform -- uid: 1617 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,0.5 - parent: 104 - type: Transform -- uid: 1618 - type: FloraTreeConifer02 - components: - - pos: 11.32859,10.093473 - parent: 104 - type: Transform -- uid: 1619 - type: FloraTreeConifer01 - components: - - pos: 16.10984,7.3249645 - parent: 104 - type: Transform -- uid: 1620 - type: FloraTreeConifer02 - components: - - pos: 15.85984,13.16621 - parent: 104 - type: Transform -- uid: 1621 - type: FloraTreeConifer02 - components: - - pos: 14.582346,17.286049 - parent: 104 - type: Transform -- uid: 1622 - type: FloraTreeConifer01 - components: - - pos: 7.42463,16.597832 - parent: 104 - type: Transform -- uid: 1623 - type: MountainRock - components: - - pos: 11.5,21.5 - parent: 104 - type: Transform -- uid: 1624 - type: FloraTreeSnow04 - components: - - pos: -3.1344147,13.722986 - parent: 104 - type: Transform -- uid: 1625 - type: MountainRock - components: - - pos: 10.5,21.5 - parent: 104 - type: Transform -- uid: 1626 - type: FloraTreeConifer01 - components: - - pos: 11.605486,16.944057 - parent: 104 - type: Transform -- uid: 1627 - type: FloraTreeSnow05 - components: - - pos: 13.331816,13.977352 - parent: 104 - type: Transform -- uid: 1628 - type: FloraTreeSnow05 - components: - - pos: 15.066191,11.052429 - parent: 104 - type: Transform -- uid: 1629 - type: FloraTreeSnow03 - components: - - pos: 9.924105,15.382175 - parent: 104 - type: Transform -- uid: 1630 - type: FloraTreeSnow02 - components: - - pos: 4.558771,16.696045 - parent: 104 - type: Transform -- uid: 1631 - type: FloraTreeSnow05 - components: - - pos: 2.1525211,16.977589 - parent: 104 - type: Transform -- uid: 1632 - type: MountainRock - components: - - pos: 9.5,21.5 - parent: 104 - type: Transform -- uid: 1633 - type: BoxShotgunPractice - components: - - pos: 5.4972115,14.562988 - parent: 104 - type: Transform - - unspawnedCount: 12 - type: BallisticAmmoProvider -- uid: 1634 - type: BoxMagazinePistolSubMachineGunPractice - components: - - pos: 5.388983,13.953581 - parent: 104 - type: Transform -- uid: 1635 - type: BoxMagazinePistolCaselessRiflePractice - components: - - pos: 5.4970627,10.597828 - parent: 104 - type: Transform -- uid: 1636 - type: MountainRock - components: - - pos: -0.5,21.5 - parent: 104 - type: Transform -- uid: 1637 - type: MountainRock - components: - - pos: -1.5,21.5 - parent: 104 - type: Transform -- uid: 1638 - type: MountainRock - components: - - pos: -2.5,21.5 - parent: 104 - type: Transform -- uid: 1639 - type: MountainRock - components: - - pos: -0.5,22.5 - parent: 104 - type: Transform -- uid: 1640 - type: MountainRock - components: - - pos: -1.5,22.5 - parent: 104 - type: Transform -- uid: 1641 - type: MountainRock - components: - - pos: -2.5,22.5 - parent: 104 - type: Transform -- uid: 1642 - type: MountainRock - components: - - pos: -3.5,22.5 - parent: 104 - type: Transform -- uid: 1643 - type: MountainRock - components: - - pos: -7.5,22.5 - parent: 104 - type: Transform -- uid: 1644 - type: MountainRock - components: - - pos: -8.5,22.5 - parent: 104 - type: Transform -- uid: 1645 - type: MountainRock - components: - - pos: -8.5,23.5 - parent: 104 - type: Transform -- uid: 1646 - type: MountainRock - components: - - pos: -9.5,23.5 - parent: 104 - type: Transform -- uid: 1647 - type: MountainRock - components: - - pos: -10.5,23.5 - parent: 104 - type: Transform -- uid: 1648 - type: MagazinePistolSubMachineGunPractice - components: - - pos: 5.7430096,13.989216 - parent: 104 - type: Transform - - unspawnedCount: 35 - type: BallisticAmmoProvider -- uid: 1649 - type: MountainRock - components: - - pos: 28.5,7.5 - parent: 104 - type: Transform -- uid: 1650 - type: MountainRock - components: - - pos: 28.5,8.5 - parent: 104 - type: Transform -- uid: 1651 - type: MountainRock - components: - - pos: 22.5,13.5 - parent: 104 - type: Transform -- uid: 1652 - type: SpaceVillainArcadeFilled - components: - - pos: 10.5,-6.5 - parent: 104 - type: Transform -- uid: 1653 - type: SpaceVillainArcadeFilled - components: - - pos: 9.5,-6.5 - parent: 104 - type: Transform -- uid: 1654 - type: PottedPlantRandomPlastic - components: - - pos: 8.5,-6.5 - parent: 104 - type: Transform -- uid: 1655 - type: PottedPlantRandomPlastic - components: - - pos: 5.5,-8.5 - parent: 104 - type: Transform -- uid: 1656 - type: PottedPlantRandom - components: - - pos: 9.5,-1.5 - parent: 104 - type: Transform -- uid: 1657 - type: MountainRock - components: - - pos: 23.5,13.5 - parent: 104 - type: Transform -- uid: 1658 - type: MountainRock - components: - - pos: 17.5,22.5 - parent: 104 - type: Transform -- uid: 1659 - type: MountainRock - components: - - pos: 24.5,16.5 - parent: 104 - type: Transform -- uid: 1660 - type: MountainRock - components: - - pos: 24.5,15.5 - parent: 104 - type: Transform -- uid: 1661 - type: MountainRock - components: - - pos: 24.5,14.5 - parent: 104 - type: Transform -- uid: 1662 - type: MountainRock - components: - - pos: 23.5,17.5 - parent: 104 - type: Transform -- uid: 1663 - type: MountainRock - components: - - pos: 28.5,6.5 - parent: 104 - type: Transform -- uid: 1664 - type: MountainRock - components: - - pos: 23.5,14.5 - parent: 104 - type: Transform -- uid: 1665 - type: MountainRock - components: - - pos: 22.5,14.5 - parent: 104 - type: Transform -- uid: 1666 - type: MountainRock - components: - - pos: 23.5,12.5 - parent: 104 - type: Transform -- uid: 1667 - type: MountainRock - components: - - pos: 21.5,8.5 - parent: 104 - type: Transform -- uid: 1668 - type: LightPostSmall - components: - - pos: 5.5,17.5 - parent: 104 - type: Transform -- uid: 1669 - type: LightPostSmall - components: - - pos: 10.5,11.5 - parent: 104 - type: Transform -- uid: 1670 - type: WallIce - components: - - pos: -0.5,14.5 - parent: 104 - type: Transform -- uid: 1671 - type: LightPostSmall - components: - - pos: -3.5,17.5 - parent: 104 - type: Transform -- uid: 1672 - type: FloraTreeSnow05 - components: - - pos: -3.5,16.5 - parent: 104 - type: Transform -- uid: 1673 - type: FloraTreeConifer03 - components: - - pos: -3.5,15.5 - parent: 104 - type: Transform -- uid: 1674 - type: MountainRock - components: - - pos: 25.5,6.5 - parent: 104 - type: Transform -- uid: 1675 - type: LightPostSmall - components: - - pos: 10.5,2.5 - parent: 104 - type: Transform -- uid: 1676 - type: MountainRock - components: - - pos: 24.5,9.5 - parent: 104 - type: Transform -- uid: 1677 - type: MountainRock - components: - - pos: 24.5,10.5 - parent: 104 - type: Transform -- uid: 1678 - type: MountainRock - components: - - pos: 24.5,17.5 - parent: 104 - type: Transform -- uid: 1679 - type: MountainRock - components: - - pos: 23.5,16.5 - parent: 104 - type: Transform -- uid: 1680 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,0.5 - parent: 104 - type: Transform -- uid: 1681 - type: PosterContrabandClown - components: - - pos: 12.5,1.5 - parent: 104 - type: Transform -- uid: 1682 - type: MountainRock - components: - - pos: 23.5,15.5 - parent: 104 - type: Transform -- uid: 1683 - type: MountainRock - components: - - pos: 24.5,11.5 - parent: 104 - type: Transform -- uid: 1684 - type: MountainRock - components: - - pos: 24.5,6.5 - parent: 104 - type: Transform -- uid: 1685 - type: MountainRock - components: - - pos: 23.5,11.5 - parent: 104 - type: Transform -- uid: 1686 - type: MountainRock - components: - - pos: 21.5,9.5 - parent: 104 - type: Transform -- uid: 1687 - type: MountainRock - components: - - pos: 27.5,7.5 - parent: 104 - type: Transform -- uid: 1688 - type: MountainRock - components: - - pos: 27.5,8.5 - parent: 104 - type: Transform -- uid: 1689 - type: MountainRock - components: - - pos: 26.5,6.5 - parent: 104 - type: Transform -- uid: 1690 - type: MountainRock - components: - - pos: 26.5,7.5 - parent: 104 - type: Transform -- uid: 1691 - type: MountainRock - components: - - pos: 26.5,8.5 - parent: 104 - type: Transform -- uid: 1692 - type: MountainRock - components: - - pos: 22.5,15.5 - parent: 104 - type: Transform -- uid: 1693 - type: MountainRock - components: - - pos: 24.5,12.5 - parent: 104 - type: Transform -- uid: 1694 - type: CombatKnife - components: - - pos: 5.483225,11.368477 - parent: 104 - type: Transform -- uid: 1695 - type: MountainRock - components: - - pos: 23.5,10.5 - parent: 104 - type: Transform -- uid: 1696 - type: MountainRock - components: - - pos: 22.5,10.5 - parent: 104 - type: Transform -- uid: 1697 - type: MountainRock - components: - - pos: 25.5,7.5 - parent: 104 - type: Transform -- uid: 1698 - type: MountainRock - components: - - pos: 12.5,22.5 - parent: 104 - type: Transform -- uid: 1699 - type: MountainRock - components: - - pos: 25.5,8.5 - parent: 104 - type: Transform -- uid: 1700 - type: MountainRock - components: - - pos: 25.5,9.5 - parent: 104 - type: Transform -- uid: 1701 - type: MountainRock - components: - - pos: 25.5,10.5 - parent: 104 - type: Transform -- uid: 1702 - type: MountainRock - components: - - pos: 13.5,22.5 - parent: 104 - type: Transform -- uid: 1703 - type: MountainRock - components: - - pos: 24.5,7.5 - parent: 104 - type: Transform -- uid: 1704 - type: WeaponSubMachineGunC20r - components: - - pos: 5.497257,12.817707 - parent: 104 - type: Transform -- uid: 1705 - type: WeaponPistolCobra - components: - - pos: 5.4793262,12.166912 - parent: 104 - type: Transform -- uid: 1706 - type: FloraRockSolid03 - components: - - pos: 13.550529,12.489372 - parent: 104 - type: Transform -- uid: 1707 - type: FloraRockSolid01 - components: - - pos: 5.5565968,16.377468 - parent: 104 - type: Transform -- uid: 1708 - type: FloraRockSolid02 - components: - - pos: -3.1481876,-0.15203857 - parent: 104 - type: Transform -- uid: 1709 - type: MountainRock - components: - - pos: 24.5,13.5 - parent: 104 - type: Transform -- uid: 1710 - type: MountainRock - components: - - pos: 22.5,8.5 - parent: 104 - type: Transform -- uid: 1711 - type: FloraRockSolid02 - components: - - pos: -1.3676796,16.13784 - parent: 104 - type: Transform -- uid: 1712 - type: MountainRock - components: - - pos: 22.5,9.5 - parent: 104 - type: Transform -- uid: 1713 - type: MountainRock - components: - - pos: 11.5,22.5 - parent: 104 - type: Transform -- uid: 1714 - type: MountainRock - components: - - pos: 25.5,11.5 - parent: 104 - type: Transform -- uid: 1715 - type: MountainRock - components: - - pos: 22.5,16.5 - parent: 104 - type: Transform -- uid: 1716 - type: MountainRock - components: - - pos: 22.5,17.5 - parent: 104 - type: Transform -- uid: 1717 - type: MountainRock - components: - - pos: 19.5,22.5 - parent: 104 - type: Transform -- uid: 1718 - type: MountainRock - components: - - pos: 22.5,7.5 - parent: 104 - type: Transform -- uid: 1719 - type: MountainRock - components: - - pos: 21.5,13.5 - parent: 104 - type: Transform -- uid: 1720 - type: MountainRock - components: - - pos: 23.5,9.5 - parent: 104 - type: Transform -- uid: 1721 - type: MountainRock - components: - - pos: 21.5,11.5 - parent: 104 - type: Transform -- uid: 1722 - type: MountainRock - components: - - pos: 22.5,11.5 - parent: 104 - type: Transform -- uid: 1723 - type: MountainRock - components: - - pos: 10.5,22.5 - parent: 104 - type: Transform -- uid: 1724 - type: MountainRock - components: - - pos: 22.5,18.5 - parent: 104 - type: Transform -- uid: 1725 - type: MountainRock - components: - - pos: 16.5,22.5 - parent: 104 - type: Transform -- uid: 1726 - type: MountainRock - components: - - pos: 15.5,22.5 - parent: 104 - type: Transform -- uid: 1727 - type: MountainRock - components: - - pos: 14.5,22.5 - parent: 104 - type: Transform -- uid: 1728 - type: MountainRock - components: - - pos: 24.5,8.5 - parent: 104 - type: Transform -- uid: 1729 - type: MountainRock - components: - - pos: 23.5,13.5 - parent: 104 - type: Transform -- uid: 1730 - type: MountainRock - components: - - pos: 23.5,8.5 - parent: 104 - type: Transform -- uid: 1731 - type: MountainRock - components: - - pos: -11.5,21.5 - parent: 104 - type: Transform -- uid: 1732 - type: MountainRock - components: - - pos: 22.5,12.5 - parent: 104 - type: Transform -- uid: 1733 - type: MountainRock - components: - - pos: 27.5,6.5 - parent: 104 - type: Transform -- uid: 1734 - type: MountainRock - components: - - pos: 22.5,19.5 - parent: 104 - type: Transform -- uid: 1735 - type: MountainRock - components: - - pos: 18.5,22.5 - parent: 104 - type: Transform -- uid: 1736 - type: MountainRock - components: - - pos: 21.5,21.5 - parent: 104 - type: Transform -- uid: 1737 - type: MountainRock - components: - - pos: 23.5,6.5 - parent: 104 - type: Transform -- uid: 1738 - type: MountainRock - components: - - pos: 22.5,6.5 - parent: 104 - type: Transform -- uid: 1739 - type: MountainRock - components: - - pos: 23.5,7.5 - parent: 104 - type: Transform -- uid: 1740 - type: MountainRock - components: - - pos: -11.5,20.5 - parent: 104 - type: Transform -- uid: 1741 - type: MountainRock - components: - - pos: 21.5,10.5 - parent: 104 - type: Transform -- uid: 1742 - type: MountainRock - components: - - pos: 21.5,20.5 - parent: 104 - type: Transform -- uid: 1743 - type: MountainRock - components: - - pos: 20.5,22.5 - parent: 104 - type: Transform -- uid: 1744 - type: MountainRock - components: - - pos: 21.5,19.5 - parent: 104 - type: Transform -- uid: 1745 - type: MountainRock - components: - - pos: 21.5,18.5 - parent: 104 - type: Transform -- uid: 1746 - type: MountainRock - components: - - pos: 21.5,17.5 - parent: 104 - type: Transform -- uid: 1747 - type: MountainRock - components: - - pos: 21.5,16.5 - parent: 104 - type: Transform -- uid: 1748 - type: MountainRock - components: - - pos: 21.5,15.5 - parent: 104 - type: Transform -- uid: 1749 - type: MountainRock - components: - - pos: 21.5,14.5 - parent: 104 - type: Transform -- uid: 1750 - type: MountainRock - components: - - pos: 21.5,12.5 - parent: 104 - type: Transform -- uid: 1751 - type: MountainRock - components: - - pos: 9.5,19.5 - parent: 104 - type: Transform -- uid: 1752 - type: MountainRock - components: - - pos: -2.5,23.5 - parent: 104 - type: Transform -- uid: 1753 - type: MountainRock - components: - - pos: -3.5,23.5 - parent: 104 - type: Transform -- uid: 1754 - type: MountainRock - components: - - pos: -4.5,23.5 - parent: 104 - type: Transform -- uid: 1755 - type: MountainRock - components: - - pos: -5.5,23.5 - parent: 104 - type: Transform -- uid: 1756 - type: MountainRock - components: - - pos: -6.5,23.5 - parent: 104 - type: Transform -- uid: 1757 - type: MountainRock - components: - - pos: -7.5,23.5 - parent: 104 - type: Transform -- uid: 1758 - type: AlwaysPoweredWallLight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,5.5 - parent: 104 - type: Transform -- uid: 1759 - type: AlwaysPoweredWallLight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,12.5 - parent: 104 - type: Transform -- uid: 1760 - type: AlwaysPoweredWallLight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-22.5 - parent: 104 - type: Transform -- uid: 1761 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: -8.5,8.5 - parent: 104 - type: Transform -- uid: 1762 - type: MountainRock - components: - - pos: 1.5,-18.5 - parent: 104 - type: Transform -- uid: 1763 - type: AlwaysPoweredWallLight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-22.5 - parent: 104 - type: Transform -- uid: 1764 - type: ChairOfficeDark - components: - - pos: -13.5,6.5 - parent: 104 - type: Transform -- uid: 1765 - type: FirelockGlass - components: - - pos: -13.5,5.5 - parent: 104 - type: Transform -- uid: 1766 - type: SmallLight - components: - - pos: 11.5,-16.5 - parent: 104 - type: Transform -- uid: 1767 - type: MountainRock - components: - - pos: -19.5,7.5 - parent: 104 - type: Transform -- uid: 1768 - type: MountainRock - components: - - pos: -19.5,6.5 - parent: 104 - type: Transform -- uid: 1769 - type: MountainRock - components: - - pos: -19.5,5.5 - parent: 104 - type: Transform -- uid: 1770 - type: MountainRock - components: - - pos: -18.5,7.5 - parent: 104 - type: Transform -- uid: 1771 - type: MountainRock - components: - - pos: -18.5,6.5 - parent: 104 - type: Transform -- uid: 1772 - type: MountainRock - components: - - pos: -18.5,5.5 - parent: 104 - type: Transform -- uid: 1773 - type: MountainRock - components: - - pos: -17.5,7.5 - parent: 104 - type: Transform -- uid: 1774 - type: MountainRock - components: - - pos: -17.5,6.5 - parent: 104 - type: Transform -- uid: 1775 - type: MountainRock - components: - - pos: -17.5,5.5 - parent: 104 - type: Transform -- uid: 1776 - type: MountainRock - components: - - pos: -21.5,19.5 - parent: 104 - type: Transform -- uid: 1777 - type: MountainRock - components: - - pos: -22.5,19.5 - parent: 104 - type: Transform -- uid: 1778 - type: MountainRock - components: - - pos: -21.5,18.5 - parent: 104 - type: Transform -- uid: 1779 - type: MountainRock - components: - - pos: -22.5,18.5 - parent: 104 - type: Transform -- uid: 1780 - type: MountainRock - components: - - pos: -22.5,17.5 - parent: 104 - type: Transform -- uid: 1781 - type: MountainRock - components: - - pos: -23.5,17.5 - parent: 104 - type: Transform -- uid: 1782 - type: MountainRock - components: - - pos: -23.5,16.5 - parent: 104 - type: Transform -- uid: 1783 - type: WallPlastitanium - components: - - pos: -3.5,-11.5 - parent: 104 - type: Transform -- uid: 1784 - type: WallPlastitanium - components: - - pos: -3.5,-17.5 - parent: 104 - type: Transform -- uid: 1785 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -22.5,-20.5 - parent: 104 - type: Transform -- uid: 1786 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -34.5,-20.5 - parent: 104 - type: Transform -- uid: 1787 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -23.5,-20.5 - parent: 104 - type: Transform -- uid: 1788 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -24.5,-20.5 - parent: 104 - type: Transform -- uid: 1789 - type: RailingCorner - components: - - rot: 3.141592653589793 rad - pos: -35.5,-20.5 - parent: 104 - type: Transform -- uid: 1790 - type: RailingCorner - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-23.5 - parent: 104 - type: Transform -- uid: 1791 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -31.5,-20.5 - parent: 104 - type: Transform -- uid: 1792 - type: MountainRock - components: - - pos: 4.5,-19.5 - parent: 104 - type: Transform -- uid: 1793 - type: MountainRock - components: - - pos: 4.5,-20.5 - parent: 104 - type: Transform -- uid: 1794 - type: MountainRock - components: - - pos: 2.5,-19.5 - parent: 104 - type: Transform -- uid: 1795 - type: MountainRock - components: - - pos: 2.5,-20.5 - parent: 104 - type: Transform -- uid: 1796 - type: MountainRock - components: - - pos: -1.5,-10.5 - parent: 104 - type: Transform -- uid: 1797 - type: MountainRock - components: - - pos: 3.5,-19.5 - parent: 104 - type: Transform -- uid: 1798 - type: MountainRock - components: - - pos: 3.5,-20.5 - parent: 104 - type: Transform -- uid: 1799 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -32.5,-20.5 - parent: 104 - type: Transform -- uid: 1800 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-21.5 - parent: 104 - type: Transform -- uid: 1801 - type: MountainRock - components: - - pos: 7.5,-19.5 - parent: 104 - type: Transform -- uid: 1802 - type: MountainRock - components: - - pos: 7.5,-20.5 - parent: 104 - type: Transform -- uid: 1803 - type: MountainRock - components: - - pos: 7.5,-21.5 - parent: 104 - type: Transform -- uid: 1804 - type: MountainRock - components: - - pos: 5.5,-19.5 - parent: 104 - type: Transform -- uid: 1805 - type: MountainRock - components: - - pos: 5.5,-20.5 - parent: 104 - type: Transform -- uid: 1806 - type: MountainRock - components: - - pos: 5.5,-21.5 - parent: 104 - type: Transform -- uid: 1807 - type: MountainRock - components: - - pos: 6.5,-19.5 - parent: 104 - type: Transform -- uid: 1808 - type: MountainRock - components: - - pos: 6.5,-20.5 - parent: 104 - type: Transform -- uid: 1809 - type: MountainRock - components: - - pos: 6.5,-21.5 - parent: 104 - type: Transform -- uid: 1810 - type: AirlockScienceGlass - components: - - pos: 8.5,-16.5 - parent: 104 - type: Transform -- uid: 1811 - type: WallPlastitanium - components: - - pos: 15.5,-19.5 - parent: 104 - type: Transform -- uid: 1812 - type: ExtinguisherCabinetFilled - components: - - pos: -1.5,-2.5 - parent: 104 - type: Transform -- uid: 1813 - type: Table - components: - - pos: 12.5,-16.5 - parent: 104 - type: Transform -- uid: 1814 - type: Table - components: - - pos: 13.5,-16.5 - parent: 104 - type: Transform -- uid: 1815 - type: Table - components: - - pos: 14.5,-16.5 - parent: 104 - type: Transform -- uid: 1816 - type: ExtinguisherCabinetFilled - components: - - pos: 8.5,-10.5 - parent: 104 - type: Transform -- uid: 1817 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 13.5,-18.5 - parent: 104 - type: Transform -- uid: 1818 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 12.5,-18.5 - parent: 104 - type: Transform -- uid: 1819 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 11.5,-18.5 - parent: 104 - type: Transform -- uid: 1820 - type: ReinforcedWindow - components: - - pos: 5.5,21.5 - parent: 104 - type: Transform -- uid: 1821 - type: ReinforcedWindow - components: - - pos: 0.5,21.5 - parent: 104 - type: Transform -- uid: 1822 - type: ExtinguisherCabinetFilled - components: - - pos: 15.5,-17.5 - parent: 104 - type: Transform -- uid: 1823 - type: Grille - components: - - pos: 8.5,20.5 - parent: 104 - type: Transform -- uid: 1824 - type: Grille - components: - - pos: 4.5,21.5 - parent: 104 - type: Transform -- uid: 1825 - type: SprayBottle - components: - - pos: 14.641994,-17.021217 - parent: 104 - type: Transform -- uid: 1826 - type: MonkeyCubeBox - components: - - pos: 14.485744,-16.427467 - parent: 104 - type: Transform -- uid: 1827 - type: WindoorSecure - components: - - pos: 10.5,-18.5 - parent: 104 - type: Transform -- uid: 1828 - type: ReinforcedWindow - components: - - pos: 4.5,21.5 - parent: 104 - type: Transform -- uid: 1829 - type: ReinforcedWindow - components: - - pos: 0.5,20.5 - parent: 104 - type: Transform -- uid: 1830 - type: FloraTreeConifer03 - components: - - pos: 8.497473,19.862019 - parent: 104 - type: Transform -- uid: 1831 - type: Grille - components: - - pos: 8.5,21.5 - parent: 104 - type: Transform -- uid: 1832 - type: Grille - components: - - pos: 3.5,21.5 - parent: 104 - type: Transform -- uid: 1833 - type: WallPlastitanium - components: - - pos: 15.5,-17.5 - parent: 104 - type: Transform -- uid: 1834 - type: WallPlastitanium - components: - - pos: 15.5,-18.5 - parent: 104 - type: Transform -- uid: 1835 - type: MountainRock - components: - - pos: 8.5,-19.5 - parent: 104 - type: Transform -- uid: 1836 - type: MountainRock - components: - - pos: 8.5,-20.5 - parent: 104 - type: Transform -- uid: 1837 - type: MountainRock - components: - - pos: 8.5,-21.5 - parent: 104 - type: Transform -- uid: 1838 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 104 - type: Transform -- uid: 1839 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-17.5 - parent: 104 - type: Transform -- uid: 1840 - type: Grille - components: - - pos: 11.5,-23.5 - parent: 104 - type: Transform -- uid: 1841 - type: Grille - components: - - pos: 10.5,-23.5 - parent: 104 - type: Transform -- uid: 1842 - type: ReinforcedPlasmaWindow - components: - - pos: 12.5,-23.5 - parent: 104 - type: Transform -- uid: 1843 - type: WallPlastitanium - components: - - pos: 15.5,-22.5 - parent: 104 - type: Transform -- uid: 1844 - type: MedkitCombatFilled - components: - - pos: 3.1661625,-6.4598556 - parent: 104 - type: Transform -- uid: 1845 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-16.5 - parent: 104 - type: Transform -- uid: 1846 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-14.5 - parent: 104 - type: Transform -- uid: 1847 - type: Grille - components: - - pos: 12.5,-23.5 - parent: 104 - type: Transform -- uid: 1848 - type: ReinforcedPlasmaWindow - components: - - pos: 14.5,-23.5 - parent: 104 - type: Transform -- uid: 1849 - type: ReinforcedPlasmaWindow - components: - - pos: 11.5,-23.5 - parent: 104 - type: Transform -- uid: 1850 - type: WallPlastitanium - components: - - pos: 15.5,-21.5 - parent: 104 - type: Transform -- uid: 1851 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-13.5 - parent: 104 - type: Transform -- uid: 1852 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-15.5 - parent: 104 - type: Transform -- uid: 1853 - type: ReinforcedPlasmaWindow - components: - - pos: 13.5,-23.5 - parent: 104 - type: Transform -- uid: 1854 - type: Grille - components: - - pos: 13.5,-23.5 - parent: 104 - type: Transform -- uid: 1855 - type: ReinforcedPlasmaWindow - components: - - pos: 10.5,-23.5 - parent: 104 - type: Transform -- uid: 1856 - type: WallPlastitanium - components: - - pos: 15.5,-20.5 - parent: 104 - type: Transform -- uid: 1857 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-7.5 - parent: 104 - type: Transform -- uid: 1858 - type: PlasmaReinforcedWindowDirectional - components: - - pos: 14.5,-18.5 - parent: 104 - type: Transform -- uid: 1859 - type: Table - components: - - pos: 14.5,-17.5 - parent: 104 - type: Transform -- uid: 1860 - type: Grille - components: - - pos: 14.5,-23.5 - parent: 104 - type: Transform -- uid: 1861 - type: WallPlastitanium - components: - - pos: 26.5,-12.5 - parent: 104 - type: Transform -- uid: 1862 - type: WallPlastitanium - components: - - pos: 27.5,-12.5 - parent: 104 - type: Transform -- uid: 1863 - type: WallPlastitanium - components: - - pos: 28.5,-12.5 - parent: 104 - type: Transform -- uid: 1864 - type: WallPlastitanium - components: - - pos: 28.5,-14.5 - parent: 104 - type: Transform -- uid: 1865 - type: MountainRock - components: - - pos: 16.5,-21.5 - parent: 104 - type: Transform -- uid: 1866 - type: WallPlastitanium - components: - - pos: 28.5,-13.5 - parent: 104 - type: Transform -- uid: 1867 - type: AlwaysPoweredWallLight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-16.5 - parent: 104 - type: Transform -- uid: 1868 - type: MedicalBed - components: - - pos: 1.5,-16.5 - parent: 104 - type: Transform -- uid: 1869 - type: RailingCornerSmall - components: - - pos: -8.5,-24.5 - parent: 104 - type: Transform -- uid: 1870 - type: MountainRock - components: - - pos: 17.5,-21.5 - parent: 104 - type: Transform -- uid: 1871 - type: WallPlastitanium - components: - - pos: 28.5,-19.5 - parent: 104 - type: Transform -- uid: 1872 - type: BedsheetMedical - components: - - pos: 1.5,-12.5 - parent: 104 - type: Transform -- uid: 1873 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-24.5 - parent: 104 - type: Transform -- uid: 1874 - type: MedicalBed - components: - - pos: -1.5,-12.5 - parent: 104 - type: Transform -- uid: 1875 - type: MountainRock - components: - - pos: 18.5,-21.5 - parent: 104 - type: Transform -- uid: 1876 - type: WallPlastitanium - components: - - pos: 28.5,-15.5 - parent: 104 - type: Transform -- uid: 1877 - type: BedsheetMedical - components: - - pos: -1.5,-16.5 - parent: 104 - type: Transform -- uid: 1878 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-21.5 - parent: 104 - type: Transform -- uid: 1879 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-22.5 - parent: 104 - type: Transform -- uid: 1880 - type: MountainRock - components: - - pos: 19.5,-21.5 - parent: 104 - type: Transform -- uid: 1881 - type: WallPlastitanium - components: - - pos: 28.5,-16.5 - parent: 104 - type: Transform -- uid: 1882 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -19.5,4.5 - parent: 104 - type: Transform -- uid: 1883 - type: RailingCornerSmall - components: - - pos: -18.5,4.5 - parent: 104 - type: Transform -- uid: 1884 - type: MountainRock - components: - - pos: 20.5,-21.5 - parent: 104 - type: Transform -- uid: 1885 - type: WallPlastitanium - components: - - pos: 28.5,-17.5 - parent: 104 - type: Transform -- uid: 1886 - type: LightPostSmall - components: - - pos: -10.5,1.5 - parent: 104 - type: Transform -- uid: 1887 - type: LightPostSmall - components: - - pos: -10.5,-20.5 - parent: 104 - type: Transform -- uid: 1888 - type: MountainRock - components: - - pos: 21.5,-21.5 - parent: 104 - type: Transform -- uid: 1889 - type: WallPlastitanium - components: - - pos: 28.5,-18.5 - parent: 104 - type: Transform -- uid: 1890 - type: MedicalBed - components: - - pos: 1.5,-12.5 - parent: 104 - type: Transform -- uid: 1891 - type: MedicalBed - components: - - pos: -1.5,-16.5 - parent: 104 - type: Transform -- uid: 1892 - type: MountainRock - components: - - pos: 22.5,-21.5 - parent: 104 - type: Transform -- uid: 1893 - type: WallPlastitanium - components: - - pos: 28.5,-20.5 - parent: 104 - type: Transform -- uid: 1894 - type: MedkitBurnFilled - components: - - pos: 7.5339637,-10.889339 - parent: 104 - type: Transform -- uid: 1895 - type: MedkitOxygenFilled - components: - - pos: 7.5339637,-11.186214 - parent: 104 - type: Transform -- uid: 1896 - type: MountainRock - components: - - pos: 23.5,-21.5 - parent: 104 - type: Transform -- uid: 1897 - type: WallPlastitanium - components: - - pos: 27.5,-20.5 - parent: 104 - type: Transform -- uid: 1898 - type: BedsheetMedical - components: - - pos: 1.5,-16.5 - parent: 104 - type: Transform -- uid: 1899 - type: BedsheetMedical - components: - - pos: -1.5,-12.5 - parent: 104 - type: Transform -- uid: 1900 - type: MountainRock - components: - - pos: 24.5,-21.5 - parent: 104 - type: Transform -- uid: 1901 - type: WallPlastitanium - components: - - pos: 26.5,-20.5 - parent: 104 - type: Transform -- uid: 1902 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -20.5,4.5 - parent: 104 - type: Transform -- uid: 1903 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -21.5,4.5 - parent: 104 - type: Transform -- uid: 1904 - type: MountainRock - components: - - pos: 25.5,-21.5 - parent: 104 - type: Transform -- uid: 1905 - type: WallPlastitanium - components: - - pos: 18.5,-20.5 - parent: 104 - type: Transform -- uid: 1906 - type: WallPlastitanium - components: - - pos: 17.5,-20.5 - parent: 104 - type: Transform -- uid: 1907 - type: WallPlastitanium - components: - - pos: 16.5,-20.5 - parent: 104 - type: Transform -- uid: 1908 - type: WallPlastitanium - components: - - pos: 16.5,-19.5 - parent: 104 - type: Transform -- uid: 1909 - type: MountainRock - components: - - pos: 28.5,-11.5 - parent: 104 - type: Transform -- uid: 1910 - type: MountainRock - components: - - pos: 28.5,-10.5 - parent: 104 - type: Transform -- uid: 1911 - type: MountainRock - components: - - pos: 28.5,-9.5 - parent: 104 - type: Transform -- uid: 1912 - type: MountainRock - components: - - pos: 28.5,-8.5 - parent: 104 - type: Transform -- uid: 1913 - type: MountainRock - components: - - pos: 26.5,-21.5 - parent: 104 - type: Transform -- uid: 1914 - type: WallPlastitanium - components: - - pos: 25.5,-20.5 - parent: 104 - type: Transform -- uid: 1915 - type: WallPlastitanium - components: - - pos: 16.5,-17.5 - parent: 104 - type: Transform -- uid: 1916 - type: Railing - components: - - pos: -15.5,-23.5 - parent: 104 - type: Transform -- uid: 1917 - type: Railing - components: - - pos: -14.5,-23.5 - parent: 104 - type: Transform -- uid: 1918 - type: Railing - components: - - pos: -13.5,-23.5 - parent: 104 - type: Transform -- uid: 1919 - type: Railing - components: - - pos: -12.5,-23.5 - parent: 104 - type: Transform -- uid: 1920 - type: Railing - components: - - pos: -11.5,-23.5 - parent: 104 - type: Transform -- uid: 1921 - type: Railing - components: - - pos: -17.5,-23.5 - parent: 104 - type: Transform -- uid: 1922 - type: Railing - components: - - pos: -16.5,-23.5 - parent: 104 - type: Transform -- uid: 1923 - type: MountainRock - components: - - pos: 26.5,-11.5 - parent: 104 - type: Transform -- uid: 1924 - type: MountainRock - components: - - pos: 26.5,-10.5 - parent: 104 - type: Transform -- uid: 1925 - type: MountainRock - components: - - pos: 26.5,-9.5 - parent: 104 - type: Transform -- uid: 1926 - type: MountainRock - components: - - pos: 26.5,-8.5 - parent: 104 - type: Transform -- uid: 1927 - type: MountainRock - components: - - pos: 26.5,-7.5 - parent: 104 - type: Transform -- uid: 1928 - type: MountainRock - components: - - pos: 26.5,-6.5 - parent: 104 - type: Transform -- uid: 1929 - type: ReinforcedWindow - components: - - pos: 3.5,21.5 - parent: 104 - type: Transform -- uid: 1930 - type: MountainRock - components: - - pos: 26.5,-5.5 - parent: 104 - type: Transform -- uid: 1931 - type: Grille - components: - - pos: 0.5,20.5 - parent: 104 - type: Transform -- uid: 1932 - type: Grille - components: - - pos: 7.5,21.5 - parent: 104 - type: Transform -- uid: 1933 - type: Grille - components: - - pos: 2.5,21.5 - parent: 104 - type: Transform -- uid: 1934 - type: MountainRock - components: - - pos: 26.5,-4.5 - parent: 104 - type: Transform -- uid: 1935 - type: MountainRock - components: - - pos: 26.5,-3.5 - parent: 104 - type: Transform -- uid: 1936 - type: MountainRock - components: - - pos: 26.5,-2.5 - parent: 104 - type: Transform -- uid: 1937 - type: MountainRock - components: - - pos: 26.5,-1.5 - parent: 104 - type: Transform -- uid: 1938 - type: MountainRock - components: - - pos: 26.5,-0.5 - parent: 104 - type: Transform -- uid: 1939 - type: MountainRock - components: - - pos: 26.5,0.5 - parent: 104 - type: Transform -- uid: 1940 - type: MountainRock - components: - - pos: 26.5,1.5 - parent: 104 - type: Transform -- uid: 1941 - type: MountainRock - components: - - pos: 26.5,2.5 - parent: 104 - type: Transform -- uid: 1942 - type: MountainRock - components: - - pos: 27.5,-21.5 - parent: 104 - type: Transform -- uid: 1943 - type: WallPlastitanium - components: - - pos: 24.5,-20.5 - parent: 104 - type: Transform -- uid: 1944 - type: WallPlastitanium - components: - - pos: 16.5,-18.5 - parent: 104 - type: Transform -- uid: 1945 - type: Railing - components: - - pos: -10.5,-23.5 - parent: 104 - type: Transform -- uid: 1946 - type: Railing - components: - - pos: -9.5,-23.5 - parent: 104 - type: Transform -- uid: 1947 - type: RailingCornerSmall - components: - - pos: -10.5,-20.5 - parent: 104 - type: Transform -- uid: 1948 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: -10.5,1.5 - parent: 104 - type: Transform -- uid: 1949 - type: RailingCorner - components: - - rot: -1.5707963267948966 rad - pos: -34.5,1.5 - parent: 104 - type: Transform -- uid: 1950 - type: RailingCorner - components: - - rot: 3.141592653589793 rad - pos: -34.5,4.5 - parent: 104 - type: Transform -- uid: 1951 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -34.5,2.5 - parent: 104 - type: Transform -- uid: 1952 - type: MountainRock - components: - - pos: 27.5,-11.5 - parent: 104 - type: Transform -- uid: 1953 - type: MountainRock - components: - - pos: 27.5,-10.5 - parent: 104 - type: Transform -- uid: 1954 - type: MountainRock - components: - - pos: 27.5,-9.5 - parent: 104 - type: Transform -- uid: 1955 - type: MountainRock - components: - - pos: 27.5,-8.5 - parent: 104 - type: Transform -- uid: 1956 - type: MountainRock - components: - - pos: 27.5,-7.5 - parent: 104 - type: Transform -- uid: 1957 - type: MountainRock - components: - - pos: 27.5,-6.5 - parent: 104 - type: Transform -- uid: 1958 - type: MountainRock - components: - - pos: 27.5,-5.5 - parent: 104 - type: Transform -- uid: 1959 - type: MountainRock - components: - - pos: 27.5,-4.5 - parent: 104 - type: Transform -- uid: 1960 - type: MountainRock - components: - - pos: 27.5,-3.5 - parent: 104 - type: Transform -- uid: 1961 - type: MountainRock - components: - - pos: 27.5,-2.5 - parent: 104 - type: Transform -- uid: 1962 - type: MountainRock - components: - - pos: 27.5,-1.5 - parent: 104 - type: Transform -- uid: 1963 - type: MountainRock - components: - - pos: 27.5,-0.5 - parent: 104 - type: Transform -- uid: 1964 - type: MountainRock - components: - - pos: 27.5,0.5 - parent: 104 - type: Transform -- uid: 1965 - type: MountainRock - components: - - pos: 27.5,1.5 - parent: 104 - type: Transform -- uid: 1966 - type: MountainRock - components: - - pos: 27.5,2.5 - parent: 104 - type: Transform -- uid: 1967 - type: MountainRock - components: - - pos: 28.5,-21.5 - parent: 104 - type: Transform -- uid: 1968 - type: WallPlastitanium - components: - - pos: 23.5,-20.5 - parent: 104 - type: Transform -- uid: 1969 - type: WallPlastitanium - components: - - pos: 22.5,-20.5 - parent: 104 - type: Transform -- uid: 1970 - type: WallPlastitanium - components: - - pos: 21.5,-20.5 - parent: 104 - type: Transform -- uid: 1971 - type: WallPlastitanium - components: - - pos: 20.5,-20.5 - parent: 104 - type: Transform -- uid: 1972 - type: WallPlastitanium - components: - - pos: 19.5,-20.5 - parent: 104 - type: Transform -- uid: 1973 - type: MountainRock - components: - - pos: 30.5,-1.5 - parent: 104 - type: Transform -- uid: 1974 - type: MountainRock - components: - - pos: 30.5,-0.5 - parent: 104 - type: Transform -- uid: 1975 - type: MountainRock - components: - - pos: 30.5,0.5 - parent: 104 - type: Transform -- uid: 1976 - type: MountainRock - components: - - pos: 30.5,1.5 - parent: 104 - type: Transform -- uid: 1977 - type: MountainRock - components: - - pos: 30.5,2.5 - parent: 104 - type: Transform -- uid: 1978 - type: MountainRock - components: - - pos: 28.5,-7.5 - parent: 104 - type: Transform -- uid: 1979 - type: MountainRock - components: - - pos: 28.5,-6.5 - parent: 104 - type: Transform -- uid: 1980 - type: MountainRock - components: - - pos: 28.5,-5.5 - parent: 104 - type: Transform -- uid: 1981 - type: MountainRock - components: - - pos: 28.5,-4.5 - parent: 104 - type: Transform -- uid: 1982 - type: MountainRock - components: - - pos: 28.5,-3.5 - parent: 104 - type: Transform -- uid: 1983 - type: MountainRock - components: - - pos: 28.5,-2.5 - parent: 104 - type: Transform -- uid: 1984 - type: MountainRock - components: - - pos: 28.5,-1.5 - parent: 104 - type: Transform -- uid: 1985 - type: MountainRock - components: - - pos: 28.5,-0.5 - parent: 104 - type: Transform -- uid: 1986 - type: MountainRock - components: - - pos: 28.5,0.5 - parent: 104 - type: Transform -- uid: 1987 - type: MountainRock - components: - - pos: 28.5,1.5 - parent: 104 - type: Transform -- uid: 1988 - type: MountainRock - components: - - pos: 28.5,2.5 - parent: 104 - type: Transform -- uid: 1989 - type: MountainRock - components: - - pos: 29.5,-20.5 - parent: 104 - type: Transform -- uid: 1990 - type: MountainRock - components: - - pos: 29.5,-19.5 - parent: 104 - type: Transform -- uid: 1991 - type: MountainRock - components: - - pos: 29.5,-18.5 - parent: 104 - type: Transform -- uid: 1992 - type: MountainRock - components: - - pos: 29.5,-17.5 - parent: 104 - type: Transform -- uid: 1993 - type: MountainRock - components: - - pos: 29.5,-16.5 - parent: 104 - type: Transform -- uid: 1994 - type: MountainRock - components: - - pos: 29.5,-15.5 - parent: 104 - type: Transform -- uid: 1995 - type: MountainRock - components: - - pos: 29.5,-14.5 - parent: 104 - type: Transform -- uid: 1996 - type: MountainRock - components: - - pos: 29.5,-13.5 - parent: 104 - type: Transform -- uid: 1997 - type: MountainRock - components: - - pos: 29.5,-12.5 - parent: 104 - type: Transform -- uid: 1998 - type: MountainRock - components: - - pos: 29.5,-11.5 - parent: 104 - type: Transform -- uid: 1999 - type: MountainRock - components: - - pos: 29.5,-10.5 - parent: 104 - type: Transform -- uid: 2000 - type: MountainRock - components: - - pos: 29.5,-9.5 - parent: 104 - type: Transform -- uid: 2001 - type: MountainRock - components: - - pos: 29.5,-8.5 - parent: 104 - type: Transform -- uid: 2002 - type: MountainRock - components: - - pos: 29.5,-7.5 - parent: 104 - type: Transform -- uid: 2003 - type: MountainRock - components: - - pos: 29.5,-6.5 - parent: 104 - type: Transform -- uid: 2004 - type: MountainRock - components: - - pos: 29.5,-5.5 - parent: 104 - type: Transform -- uid: 2005 - type: MountainRock - components: - - pos: 29.5,-4.5 - parent: 104 - type: Transform -- uid: 2006 - type: MountainRock - components: - - pos: 29.5,-3.5 - parent: 104 - type: Transform -- uid: 2007 - type: MountainRock - components: - - pos: 29.5,-2.5 - parent: 104 - type: Transform -- uid: 2008 - type: MountainRock - components: - - pos: 29.5,-1.5 - parent: 104 - type: Transform -- uid: 2009 - type: MountainRock - components: - - pos: 29.5,-0.5 - parent: 104 - type: Transform -- uid: 2010 - type: MountainRock - components: - - pos: 29.5,0.5 - parent: 104 - type: Transform -- uid: 2011 - type: MountainRock - components: - - pos: 29.5,1.5 - parent: 104 - type: Transform -- uid: 2012 - type: MountainRock - components: - - pos: 29.5,2.5 - parent: 104 - type: Transform -- uid: 2013 - type: MountainRock - components: - - pos: 30.5,-19.5 - parent: 104 - type: Transform -- uid: 2014 - type: MountainRock - components: - - pos: 30.5,-18.5 - parent: 104 - type: Transform -- uid: 2015 - type: MountainRock - components: - - pos: 30.5,-17.5 - parent: 104 - type: Transform -- uid: 2016 - type: TableReinforcedGlass - components: - - pos: 4.5,-12.5 - parent: 104 - type: Transform -- uid: 2017 - type: WallPlastitanium - components: - - pos: 2.5,-10.5 - parent: 104 - type: Transform -- uid: 2018 - type: WallPlastitanium - components: - - pos: 2.5,-11.5 - parent: 104 - type: Transform -- uid: 2019 - type: WallPlastitanium - components: - - pos: 2.5,-12.5 - parent: 104 - type: Transform -- uid: 2020 - type: MountainRock - components: - - pos: 30.5,-16.5 - parent: 104 - type: Transform -- uid: 2021 - type: chem_dispenser - components: - - pos: 4.5,-10.5 - parent: 104 - type: Transform -- uid: 2022 - type: TableReinforcedGlass - components: - - pos: 3.5,-10.5 - parent: 104 - type: Transform -- uid: 2023 - type: MountainRock - components: - - pos: 30.5,-15.5 - parent: 104 - type: Transform -- uid: 2024 - type: MountainRock - components: - - pos: 30.5,-14.5 - parent: 104 - type: Transform -- uid: 2025 - type: MountainRock - components: - - pos: 30.5,-13.5 - parent: 104 - type: Transform -- uid: 2026 - type: MountainRock - components: - - pos: 30.5,-12.5 - parent: 104 - type: Transform -- uid: 2027 - type: TableReinforcedGlass - components: - - pos: 3.5,-11.5 - parent: 104 - type: Transform -- uid: 2028 - type: TableReinforcedGlass - components: - - pos: 3.5,-12.5 - parent: 104 - type: Transform -- uid: 2029 - type: MountainRock - components: - - pos: 30.5,-9.5 - parent: 104 - type: Transform -- uid: 2030 - type: MountainRock - components: - - pos: 30.5,-8.5 - parent: 104 - type: Transform -- uid: 2031 - type: chem_master - components: - - pos: 5.5,-10.5 - parent: 104 - type: Transform -- uid: 2032 - type: MountainRock - components: - - pos: 30.5,-7.5 - parent: 104 - type: Transform -- uid: 2033 - type: MountainRock - components: - - pos: 30.5,-6.5 - parent: 104 - type: Transform -- uid: 2034 - type: MountainRock - components: - - pos: 30.5,-5.5 - parent: 104 - type: Transform -- uid: 2035 - type: MountainRock - components: - - pos: 30.5,-4.5 - parent: 104 - type: Transform -- uid: 2036 - type: MountainRock - components: - - pos: 30.5,-3.5 - parent: 104 - type: Transform -- uid: 2037 - type: MountainRock - components: - - pos: 30.5,-2.5 - parent: 104 - type: Transform -- uid: 2038 - type: MountainRock - components: - - pos: 20.5,-0.5 - parent: 104 - type: Transform -- uid: 2039 - type: MountainRock - components: - - pos: 20.5,-1.5 - parent: 104 - type: Transform -- uid: 2040 - type: MountainRock - components: - - pos: 15.5,2.5 - parent: 104 - type: Transform -- uid: 2041 - type: MountainRock - components: - - pos: 16.5,2.5 - parent: 104 - type: Transform -- uid: 2042 - type: MountainRock - components: - - pos: 19.5,0.5 - parent: 104 - type: Transform -- uid: 2043 - type: MountainRock - components: - - pos: 19.5,-0.5 - parent: 104 - type: Transform -- uid: 2044 - type: MountainRock - components: - - pos: 19.5,-1.5 - parent: 104 - type: Transform -- uid: 2045 - type: MountainRock - components: - - pos: 25.5,2.5 - parent: 104 - type: Transform -- uid: 2046 - type: MountainRock - components: - - pos: 25.5,1.5 - parent: 104 - type: Transform -- uid: 2047 - type: MountainRock - components: - - pos: 25.5,0.5 - parent: 104 - type: Transform -- uid: 2048 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -23.5,2.5 - parent: 104 - type: Transform -- uid: 2049 - type: MountainRock - components: - - pos: 25.5,-0.5 - parent: 104 - type: Transform -- uid: 2050 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -24.5,2.5 - parent: 104 - type: Transform -- uid: 2051 - type: MountainRock - components: - - pos: 25.5,-1.5 - parent: 104 - type: Transform -- uid: 2052 - type: MountainRock - components: - - pos: 24.5,2.5 - parent: 104 - type: Transform -- uid: 2053 - type: MountainRock - components: - - pos: 24.5,1.5 - parent: 104 - type: Transform -- uid: 2054 - type: MountainRock - components: - - pos: 24.5,0.5 - parent: 104 - type: Transform -- uid: 2055 - type: MountainRock - components: - - pos: 24.5,-0.5 - parent: 104 - type: Transform -- uid: 2056 - type: MountainRock - components: - - pos: 24.5,-1.5 - parent: 104 - type: Transform -- uid: 2057 - type: MountainRock - components: - - pos: 23.5,2.5 - parent: 104 - type: Transform -- uid: 2058 - type: MountainRock - components: - - pos: 23.5,1.5 - parent: 104 - type: Transform -- uid: 2059 - type: MountainRock - components: - - pos: 23.5,0.5 - parent: 104 - type: Transform -- uid: 2060 - type: MountainRock - components: - - pos: 23.5,-0.5 - parent: 104 - type: Transform -- uid: 2061 - type: MountainRock - components: - - pos: 23.5,-1.5 - parent: 104 - type: Transform -- uid: 2062 - type: MountainRock - components: - - pos: 22.5,2.5 - parent: 104 - type: Transform -- uid: 2063 - type: MountainRock - components: - - pos: 22.5,1.5 - parent: 104 - type: Transform -- uid: 2064 - type: MountainRock - components: - - pos: 22.5,0.5 - parent: 104 - type: Transform -- uid: 2065 - type: MountainRock - components: - - pos: 22.5,-0.5 - parent: 104 - type: Transform -- uid: 2066 - type: MountainRock - components: - - pos: 22.5,-1.5 - parent: 104 - type: Transform -- uid: 2067 - type: MountainRock - components: - - pos: 14.5,2.5 - parent: 104 - type: Transform -- uid: 2068 - type: MountainRock - components: - - pos: 15.5,1.5 - parent: 104 - type: Transform -- uid: 2069 - type: MountainRock - components: - - pos: 21.5,0.5 - parent: 104 - type: Transform -- uid: 2070 - type: MountainRock - components: - - pos: 21.5,-0.5 - parent: 104 - type: Transform -- uid: 2071 - type: MountainRock - components: - - pos: 21.5,-1.5 - parent: 104 - type: Transform -- uid: 2072 - type: MountainRock - components: - - pos: 14.5,3.5 - parent: 104 - type: Transform -- uid: 2073 - type: MountainRock - components: - - pos: 17.5,-0.5 - parent: 104 - type: Transform -- uid: 2074 - type: MountainRock - components: - - pos: 17.5,0.5 - parent: 104 - type: Transform -- uid: 2075 - type: MountainRock - components: - - pos: 17.5,1.5 - parent: 104 - type: Transform -- uid: 2076 - type: MountainRock - components: - - pos: 18.5,-1.5 - parent: 104 - type: Transform -- uid: 2077 - type: MountainRock - components: - - pos: 18.5,-0.5 - parent: 104 - type: Transform -- uid: 2078 - type: MountainRock - components: - - pos: 18.5,0.5 - parent: 104 - type: Transform -- uid: 2079 - type: MountainRock - components: - - pos: 18.5,1.5 - parent: 104 - type: Transform -- uid: 2080 - type: MountainRock - components: - - pos: -12.5,28.5 - parent: 104 - type: Transform -- uid: 2081 - type: ReinforcedWindow - components: - - pos: 5.5,-9.5 - parent: 104 - type: Transform -- uid: 2082 - type: WindowReinforcedDirectional - components: - - pos: 7.5,15.5 - parent: 104 - type: Transform -- uid: 2083 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 104 - type: Transform -- uid: 2084 - type: MountainRock - components: - - pos: -12.5,27.5 - parent: 104 - type: Transform -- uid: 2085 - type: MountainRock - components: - - pos: -12.5,26.5 - parent: 104 - type: Transform -- uid: 2086 - type: MountainRock - components: - - pos: -12.5,25.5 - parent: 104 - type: Transform -- uid: 2087 - type: MountainRock - components: - - pos: -16.5,25.5 - parent: 104 - type: Transform -- uid: 2088 - type: MountainRock - components: - - pos: -3.5,-6.5 - parent: 104 - type: Transform -- uid: 2089 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 104 - type: Transform -- uid: 2090 - type: TableGlass - components: - - pos: 0.5,-16.5 - parent: 104 - type: Transform -- uid: 2091 - type: MountainRock - components: - - pos: -15.5,25.5 - parent: 104 - type: Transform -- uid: 2092 - type: TableGlass - components: - - pos: 0.5,-12.5 - parent: 104 - type: Transform -- uid: 2093 - type: MountainRock - components: - - pos: -14.5,26.5 - parent: 104 - type: Transform -- uid: 2094 - type: MountainRock - components: - - pos: -14.5,25.5 - parent: 104 - type: Transform -- uid: 2095 - type: BoxBeaker - components: - - pos: 4.348109,-12.412251 - parent: 104 - type: Transform -- uid: 2096 - type: MountainRock - components: - - pos: -13.5,27.5 - parent: 104 - type: Transform -- uid: 2097 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-8.5 - parent: 104 - type: Transform -- uid: 2098 - type: MountainRock - components: - - pos: -13.5,26.5 - parent: 104 - type: Transform -- uid: 2099 - type: MountainRock - components: - - pos: -13.5,25.5 - parent: 104 - type: Transform -- uid: 2100 - type: MountainRock - components: - - pos: -20.5,30.5 - parent: 104 - type: Transform -- uid: 2101 - type: MountainRock - components: - - pos: -20.5,29.5 - parent: 104 - type: Transform -- uid: 2102 - type: MountainRock - components: - - pos: -20.5,28.5 - parent: 104 - type: Transform -- uid: 2103 - type: MountainRock - components: - - pos: -20.5,27.5 - parent: 104 - type: Transform -- uid: 2104 - type: MountainRock - components: - - pos: -20.5,26.5 - parent: 104 - type: Transform -- uid: 2105 - type: MountainRock - components: - - pos: -20.5,25.5 - parent: 104 - type: Transform -- uid: 2106 - type: MountainRock - components: - - pos: -20.5,24.5 - parent: 104 - type: Transform -- uid: 2107 - type: MountainRock - components: - - pos: -19.5,30.5 - parent: 104 - type: Transform -- uid: 2108 - type: MountainRock - components: - - pos: -19.5,29.5 - parent: 104 - type: Transform -- uid: 2109 - type: MountainRock - components: - - pos: -19.5,28.5 - parent: 104 - type: Transform -- uid: 2110 - type: MountainRock - components: - - pos: -19.5,27.5 - parent: 104 - type: Transform -- uid: 2111 - type: MountainRock - components: - - pos: -19.5,26.5 - parent: 104 - type: Transform -- uid: 2112 - type: MountainRock - components: - - pos: -19.5,25.5 - parent: 104 - type: Transform -- uid: 2113 - type: MountainRock - components: - - pos: -19.5,24.5 - parent: 104 - type: Transform -- uid: 2114 - type: SheetPlasma1 - components: - - pos: 3.505671,-10.842375 - parent: 104 - type: Transform -- uid: 2115 - type: MountainRock - components: - - pos: -18.5,30.5 - parent: 104 - type: Transform -- uid: 2116 - type: MountainRock - components: - - pos: -18.5,29.5 - parent: 104 - type: Transform -- uid: 2117 - type: MountainRock - components: - - pos: -18.5,28.5 - parent: 104 - type: Transform -- uid: 2118 - type: MountainRock - components: - - pos: -18.5,27.5 - parent: 104 - type: Transform -- uid: 2119 - type: MountainRock - components: - - pos: -18.5,26.5 - parent: 104 - type: Transform -- uid: 2120 - type: MountainRock - components: - - pos: -18.5,25.5 - parent: 104 - type: Transform -- uid: 2121 - type: MountainRock - components: - - pos: -18.5,24.5 - parent: 104 - type: Transform -- uid: 2122 - type: MountainRock - components: - - pos: -17.5,28.5 - parent: 104 - type: Transform -- uid: 2123 - type: MountainRock - components: - - pos: -17.5,27.5 - parent: 104 - type: Transform -- uid: 2124 - type: MountainRock - components: - - pos: -17.5,25.5 - parent: 104 - type: Transform -- uid: 2125 - type: MountainRock - components: - - pos: -11.5,28.5 - parent: 104 - type: Transform -- uid: 2126 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-10.5 - parent: 104 - type: Transform -- uid: 2127 - type: MountainRock - components: - - pos: -11.5,27.5 - parent: 104 - type: Transform -- uid: 2128 - type: MountainRock - components: - - pos: -11.5,26.5 - parent: 104 - type: Transform -- uid: 2129 - type: MountainRock - components: - - pos: -11.5,25.5 - parent: 104 - type: Transform -- uid: 2130 - type: MountainRock - components: - - pos: -11.5,24.5 - parent: 104 - type: Transform -- uid: 2131 - type: MountainRock - components: - - pos: -21.5,31.5 - parent: 104 - type: Transform -- uid: 2132 - type: MountainRock - components: - - pos: -20.5,31.5 - parent: 104 - type: Transform -- uid: 2133 - type: MountainRock - components: - - pos: -19.5,31.5 - parent: 104 - type: Transform -- uid: 2134 - type: MountainRock - components: - - pos: -10.5,28.5 - parent: 104 - type: Transform -- uid: 2135 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-11.5 - parent: 104 - type: Transform -- uid: 2136 - type: MountainRock - components: - - pos: -10.5,27.5 - parent: 104 - type: Transform -- uid: 2137 - type: MountainRock - components: - - pos: -10.5,26.5 - parent: 104 - type: Transform -- uid: 2138 - type: MountainRock - components: - - pos: -10.5,25.5 - parent: 104 - type: Transform -- uid: 2139 - type: MountainRock - components: - - pos: -10.5,24.5 - parent: 104 - type: Transform -- uid: 2140 - type: MountainRock - components: - - pos: -9.5,29.5 - parent: 104 - type: Transform -- uid: 2141 - type: MountainRock - components: - - pos: -9.5,28.5 - parent: 104 - type: Transform -- uid: 2142 - type: MountainRock - components: - - pos: -9.5,27.5 - parent: 104 - type: Transform -- uid: 2143 - type: MountainRock - components: - - pos: -9.5,26.5 - parent: 104 - type: Transform -- uid: 2144 - type: MountainRock - components: - - pos: -9.5,25.5 - parent: 104 - type: Transform -- uid: 2145 - type: MountainRock - components: - - pos: -9.5,24.5 - parent: 104 - type: Transform -- uid: 2146 - type: MountainRock - components: - - pos: -8.5,29.5 - parent: 104 - type: Transform -- uid: 2147 - type: MountainRock - components: - - pos: -8.5,28.5 - parent: 104 - type: Transform -- uid: 2148 - type: MountainRock - components: - - pos: -8.5,27.5 - parent: 104 - type: Transform -- uid: 2149 - type: MountainRock - components: - - pos: -8.5,26.5 - parent: 104 - type: Transform -- uid: 2150 - type: MountainRock - components: - - pos: -8.5,25.5 - parent: 104 - type: Transform -- uid: 2151 - type: MountainRock - components: - - pos: -8.5,24.5 - parent: 104 - type: Transform -- uid: 2152 - type: MountainRock - components: - - pos: -7.5,29.5 - parent: 104 - type: Transform -- uid: 2153 - type: MountainRock - components: - - pos: -7.5,28.5 - parent: 104 - type: Transform -- uid: 2154 - type: MountainRock - components: - - pos: -7.5,27.5 - parent: 104 - type: Transform -- uid: 2155 - type: MountainRock - components: - - pos: -7.5,26.5 - parent: 104 - type: Transform -- uid: 2156 - type: MountainRock - components: - - pos: -7.5,25.5 - parent: 104 - type: Transform -- uid: 2157 - type: MountainRock - components: - - pos: -7.5,24.5 - parent: 104 - type: Transform -- uid: 2158 - type: MountainRock - components: - - pos: -6.5,29.5 - parent: 104 - type: Transform -- uid: 2159 - type: MountainRock - components: - - pos: -6.5,28.5 - parent: 104 - type: Transform -- uid: 2160 - type: MountainRock - components: - - pos: -6.5,27.5 - parent: 104 - type: Transform -- uid: 2161 - type: MountainRock - components: - - pos: -6.5,26.5 - parent: 104 - type: Transform -- uid: 2162 - type: MountainRock - components: - - pos: -6.5,25.5 - parent: 104 - type: Transform -- uid: 2163 - type: MountainRock - components: - - pos: -6.5,24.5 - parent: 104 - type: Transform -- uid: 2164 - type: MountainRock - components: - - pos: -5.5,29.5 - parent: 104 - type: Transform -- uid: 2165 - type: MountainRock - components: - - pos: -5.5,28.5 - parent: 104 - type: Transform -- uid: 2166 - type: MountainRock - components: - - pos: -5.5,27.5 - parent: 104 - type: Transform -- uid: 2167 - type: MountainRock - components: - - pos: -5.5,26.5 - parent: 104 - type: Transform -- uid: 2168 - type: MountainRock - components: - - pos: -5.5,25.5 - parent: 104 - type: Transform -- uid: 2169 - type: MountainRock - components: - - pos: -5.5,24.5 - parent: 104 - type: Transform -- uid: 2170 - type: MountainRock - components: - - pos: -4.5,29.5 - parent: 104 - type: Transform -- uid: 2171 - type: MountainRock - components: - - pos: -4.5,28.5 - parent: 104 - type: Transform -- uid: 2172 - type: MountainRock - components: - - pos: -4.5,27.5 - parent: 104 - type: Transform -- uid: 2173 - type: MountainRock - components: - - pos: -4.5,26.5 - parent: 104 - type: Transform -- uid: 2174 - type: MountainRock - components: - - pos: -4.5,25.5 - parent: 104 - type: Transform -- uid: 2175 - type: MountainRock - components: - - pos: -4.5,24.5 - parent: 104 - type: Transform -- uid: 2176 - type: MountainRock - components: - - pos: -3.5,28.5 - parent: 104 - type: Transform -- uid: 2177 - type: MountainRock - components: - - pos: -3.5,27.5 - parent: 104 - type: Transform -- uid: 2178 - type: MountainRock - components: - - pos: -3.5,26.5 - parent: 104 - type: Transform -- uid: 2179 - type: MountainRock - components: - - pos: -3.5,25.5 - parent: 104 - type: Transform -- uid: 2180 - type: MountainRock - components: - - pos: -3.5,24.5 - parent: 104 - type: Transform -- uid: 2181 - type: MountainRock - components: - - pos: -2.5,26.5 - parent: 104 - type: Transform -- uid: 2182 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 104 - type: Transform -- uid: 2183 - type: MountainRock - components: - - pos: -2.5,25.5 - parent: 104 - type: Transform -- uid: 2184 - type: MountainRock - components: - - pos: -2.5,24.5 - parent: 104 - type: Transform -- uid: 2185 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -19.5,-20.5 - parent: 104 - type: Transform -- uid: 2186 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -16.5,-20.5 - parent: 104 - type: Transform -- uid: 2187 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -12.5,-20.5 - parent: 104 - type: Transform -- uid: 2188 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -14.5,-20.5 - parent: 104 - type: Transform -- uid: 2189 - type: Grille - components: - - pos: -0.5,-17.5 - parent: 104 - type: Transform -- uid: 2190 - type: Railing - components: - - pos: -32.5,1.5 - parent: 104 - type: Transform -- uid: 2191 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -15.5,-20.5 - parent: 104 - type: Transform -- uid: 2192 - type: MountainRock - components: - - pos: -5.5,-23.5 - parent: 104 - type: Transform -- uid: 2193 - type: Railing - components: - - pos: -30.5,1.5 - parent: 104 - type: Transform -- uid: 2194 - type: MountainRock - components: - - pos: 15.5,29.5 - parent: 104 - type: Transform -- uid: 2195 - type: MountainRock - components: - - pos: 10.5,24.5 - parent: 104 - type: Transform -- uid: 2196 - type: MountainRock - components: - - pos: 15.5,31.5 - parent: 104 - type: Transform -- uid: 2197 - type: MountainRock - components: - - pos: 16.5,26.5 - parent: 104 - type: Transform -- uid: 2198 - type: MountainRock - components: - - pos: 15.5,30.5 - parent: 104 - type: Transform -- uid: 2199 - type: MountainRock - components: - - pos: 15.5,32.5 - parent: 104 - type: Transform -- uid: 2200 - type: MountainRock - components: - - pos: 16.5,23.5 - parent: 104 - type: Transform -- uid: 2201 - type: MountainRock - components: - - pos: 16.5,24.5 - parent: 104 - type: Transform -- uid: 2202 - type: MountainRock - components: - - pos: 16.5,25.5 - parent: 104 - type: Transform -- uid: 2203 - type: MountainRock - components: - - pos: 10.5,23.5 - parent: 104 - type: Transform -- uid: 2204 - type: MountainRock - components: - - pos: 10.5,25.5 - parent: 104 - type: Transform -- uid: 2205 - type: MountainRock - components: - - pos: 10.5,26.5 - parent: 104 - type: Transform -- uid: 2206 - type: MountainRock - components: - - pos: 10.5,27.5 - parent: 104 - type: Transform -- uid: 2207 - type: MountainRock - components: - - pos: 10.5,28.5 - parent: 104 - type: Transform -- uid: 2208 - type: MountainRock - components: - - pos: 11.5,23.5 - parent: 104 - type: Transform -- uid: 2209 - type: MountainRock - components: - - pos: 11.5,24.5 - parent: 104 - type: Transform -- uid: 2210 - type: MountainRock - components: - - pos: 11.5,25.5 - parent: 104 - type: Transform -- uid: 2211 - type: MountainRock - components: - - pos: 11.5,26.5 - parent: 104 - type: Transform -- uid: 2212 - type: MountainRock - components: - - pos: 11.5,27.5 - parent: 104 - type: Transform -- uid: 2213 - type: MountainRock - components: - - pos: 11.5,28.5 - parent: 104 - type: Transform -- uid: 2214 - type: MountainRock - components: - - pos: 11.5,29.5 - parent: 104 - type: Transform -- uid: 2215 - type: MountainRock - components: - - pos: 12.5,23.5 - parent: 104 - type: Transform -- uid: 2216 - type: MountainRock - components: - - pos: 12.5,24.5 - parent: 104 - type: Transform -- uid: 2217 - type: MountainRock - components: - - pos: 12.5,25.5 - parent: 104 - type: Transform -- uid: 2218 - type: MountainRock - components: - - pos: 12.5,26.5 - parent: 104 - type: Transform -- uid: 2219 - type: MountainRock - components: - - pos: 12.5,27.5 - parent: 104 - type: Transform -- uid: 2220 - type: MountainRock - components: - - pos: 12.5,28.5 - parent: 104 - type: Transform -- uid: 2221 - type: MountainRock - components: - - pos: 12.5,29.5 - parent: 104 - type: Transform -- uid: 2222 - type: MountainRock - components: - - pos: 12.5,30.5 - parent: 104 - type: Transform -- uid: 2223 - type: MountainRock - components: - - pos: 12.5,31.5 - parent: 104 - type: Transform -- uid: 2224 - type: MountainRock - components: - - pos: 13.5,23.5 - parent: 104 - type: Transform -- uid: 2225 - type: MountainRock - components: - - pos: 13.5,24.5 - parent: 104 - type: Transform -- uid: 2226 - type: MountainRock - components: - - pos: 13.5,25.5 - parent: 104 - type: Transform -- uid: 2227 - type: MountainRock - components: - - pos: 13.5,26.5 - parent: 104 - type: Transform -- uid: 2228 - type: MountainRock - components: - - pos: 13.5,27.5 - parent: 104 - type: Transform -- uid: 2229 - type: MountainRock - components: - - pos: 13.5,28.5 - parent: 104 - type: Transform -- uid: 2230 - type: MountainRock - components: - - pos: 13.5,29.5 - parent: 104 - type: Transform -- uid: 2231 - type: MountainRock - components: - - pos: 13.5,30.5 - parent: 104 - type: Transform -- uid: 2232 - type: MountainRock - components: - - pos: 13.5,31.5 - parent: 104 - type: Transform -- uid: 2233 - type: MountainRock - components: - - pos: 14.5,23.5 - parent: 104 - type: Transform -- uid: 2234 - type: MountainRock - components: - - pos: 14.5,24.5 - parent: 104 - type: Transform -- uid: 2235 - type: MountainRock - components: - - pos: 14.5,25.5 - parent: 104 - type: Transform -- uid: 2236 - type: MountainRock - components: - - pos: 14.5,26.5 - parent: 104 - type: Transform -- uid: 2237 - type: MountainRock - components: - - pos: 14.5,27.5 - parent: 104 - type: Transform -- uid: 2238 - type: MountainRock - components: - - pos: 14.5,28.5 - parent: 104 - type: Transform -- uid: 2239 - type: MountainRock - components: - - pos: 14.5,29.5 - parent: 104 - type: Transform -- uid: 2240 - type: MountainRock - components: - - pos: 14.5,30.5 - parent: 104 - type: Transform -- uid: 2241 - type: MountainRock - components: - - pos: 14.5,31.5 - parent: 104 - type: Transform -- uid: 2242 - type: MountainRock - components: - - pos: 14.5,32.5 - parent: 104 - type: Transform -- uid: 2243 - type: MountainRock - components: - - pos: 15.5,23.5 - parent: 104 - type: Transform -- uid: 2244 - type: MountainRock - components: - - pos: 15.5,24.5 - parent: 104 - type: Transform -- uid: 2245 - type: MountainRock - components: - - pos: 15.5,25.5 - parent: 104 - type: Transform -- uid: 2246 - type: MountainRock - components: - - pos: 15.5,26.5 - parent: 104 - type: Transform -- uid: 2247 - type: MountainRock - components: - - pos: 15.5,27.5 - parent: 104 - type: Transform -- uid: 2248 - type: MountainRock - components: - - pos: 15.5,28.5 - parent: 104 - type: Transform -- uid: 2249 - type: MountainRock - components: - - pos: 19.5,25.5 - parent: 104 - type: Transform -- uid: 2250 - type: MountainRock - components: - - pos: 19.5,26.5 - parent: 104 - type: Transform -- uid: 2251 - type: MountainRock - components: - - pos: 19.5,27.5 - parent: 104 - type: Transform -- uid: 2252 - type: MountainRock - components: - - pos: 19.5,28.5 - parent: 104 - type: Transform -- uid: 2253 - type: MountainRock - components: - - pos: 19.5,29.5 - parent: 104 - type: Transform -- uid: 2254 - type: MountainRock - components: - - pos: 19.5,30.5 - parent: 104 - type: Transform -- uid: 2255 - type: MountainRock - components: - - pos: 19.5,31.5 - parent: 104 - type: Transform -- uid: 2256 - type: MountainRock - components: - - pos: 20.5,26.5 - parent: 104 - type: Transform -- uid: 2257 - type: AlwaysPoweredWallLight - components: - - rot: 3.141592653589793 rad - pos: 5.5,10.5 - parent: 104 - type: Transform -- uid: 2258 - type: WindowReinforcedDirectional - components: - - pos: 5.5,-12.5 - parent: 104 - type: Transform -- uid: 2259 - type: MountainRock - components: - - pos: 20.5,27.5 - parent: 104 - type: Transform -- uid: 2260 - type: MountainRock - components: - - pos: 20.5,28.5 - parent: 104 - type: Transform -- uid: 2261 - type: MountainRock - components: - - pos: 20.5,29.5 - parent: 104 - type: Transform -- uid: 2262 - type: MountainRock - components: - - pos: 16.5,27.5 - parent: 104 - type: Transform -- uid: 2263 - type: MountainRock - components: - - pos: 16.5,28.5 - parent: 104 - type: Transform -- uid: 2264 - type: MountainRock - components: - - pos: 16.5,29.5 - parent: 104 - type: Transform -- uid: 2265 - type: MountainRock - components: - - pos: 16.5,30.5 - parent: 104 - type: Transform -- uid: 2266 - type: MountainRock - components: - - pos: 16.5,31.5 - parent: 104 - type: Transform -- uid: 2267 - type: MountainRock - components: - - pos: 16.5,32.5 - parent: 104 - type: Transform -- uid: 2268 - type: MountainRock - components: - - pos: 17.5,23.5 - parent: 104 - type: Transform -- uid: 2269 - type: MountainRock - components: - - pos: 17.5,24.5 - parent: 104 - type: Transform -- uid: 2270 - type: MountainRock - components: - - pos: 17.5,25.5 - parent: 104 - type: Transform -- uid: 2271 - type: MountainRock - components: - - pos: 17.5,26.5 - parent: 104 - type: Transform -- uid: 2272 - type: MountainRock - components: - - pos: 17.5,27.5 - parent: 104 - type: Transform -- uid: 2273 - type: MountainRock - components: - - pos: 17.5,28.5 - parent: 104 - type: Transform -- uid: 2274 - type: MountainRock - components: - - pos: 17.5,29.5 - parent: 104 - type: Transform -- uid: 2275 - type: MountainRock - components: - - pos: 17.5,30.5 - parent: 104 - type: Transform -- uid: 2276 - type: MountainRock - components: - - pos: 17.5,31.5 - parent: 104 - type: Transform -- uid: 2277 - type: MountainRock - components: - - pos: 17.5,32.5 - parent: 104 - type: Transform -- uid: 2278 - type: MountainRock - components: - - pos: 18.5,23.5 - parent: 104 - type: Transform -- uid: 2279 - type: MountainRock - components: - - pos: 18.5,24.5 - parent: 104 - type: Transform -- uid: 2280 - type: MountainRock - components: - - pos: 18.5,25.5 - parent: 104 - type: Transform -- uid: 2281 - type: MountainRock - components: - - pos: 18.5,26.5 - parent: 104 - type: Transform -- uid: 2282 - type: MountainRock - components: - - pos: 18.5,27.5 - parent: 104 - type: Transform -- uid: 2283 - type: MountainRock - components: - - pos: 18.5,28.5 - parent: 104 - type: Transform -- uid: 2284 - type: MountainRock - components: - - pos: 18.5,29.5 - parent: 104 - type: Transform -- uid: 2285 - type: MountainRock - components: - - pos: 18.5,30.5 - parent: 104 - type: Transform -- uid: 2286 - type: MountainRock - components: - - pos: 18.5,31.5 - parent: 104 - type: Transform -- uid: 2287 - type: MountainRock - components: - - pos: 18.5,32.5 - parent: 104 - type: Transform -- uid: 2288 - type: MountainRock - components: - - pos: 19.5,23.5 - parent: 104 - type: Transform -- uid: 2289 - type: MountainRock - components: - - pos: 19.5,24.5 - parent: 104 - type: Transform -- uid: 2290 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 5.5,9.5 - parent: 104 - type: Transform -- uid: 2291 - type: AlwaysPoweredWallLight - components: - - pos: 5.5,14.5 - parent: 104 - type: Transform -- uid: 2292 - type: BaseComputer - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 104 - type: Transform -- uid: 2293 - type: WindowReinforcedDirectional - components: - - pos: 5.5,15.5 - parent: 104 - type: Transform -- uid: 2294 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-10.5 - parent: 104 - type: Transform -- uid: 2295 - type: BaseComputer - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 104 - type: Transform -- uid: 2296 - type: Grille - components: - - pos: 0.5,-17.5 - parent: 104 - type: Transform -- uid: 2297 - type: SignDirectionalBar - components: - - pos: -1.5,-4.5 - parent: 104 - type: Transform -- uid: 2298 - type: PosterContrabandNuclearDeviceInformational - components: - - pos: -1.5,-5.5 - parent: 104 - type: Transform -- uid: 2299 - type: WallPlastitanium - components: - - pos: -1.5,-2.5 - parent: 104 - type: Transform -- uid: 2300 - type: WallPlastitanium - components: - - pos: -1.5,-4.5 - parent: 104 - type: Transform -- uid: 2301 - type: CableApcExtension - components: - - pos: 12.5,-21.5 - parent: 104 - type: Transform -- uid: 2302 - type: CableApcExtension - components: - - pos: 11.5,-21.5 - parent: 104 - type: Transform -- uid: 2303 - type: CableApcExtension - components: - - pos: 13.5,-21.5 - parent: 104 - type: Transform -- uid: 2304 - type: CableApcExtension - components: - - pos: 0.5,-14.5 - parent: 104 - type: Transform -- uid: 2305 - type: CableApcExtension - components: - - pos: -0.5,-14.5 - parent: 104 - type: Transform -- uid: 2306 - type: CableApcExtension - components: - - pos: -1.5,-14.5 - parent: 104 - type: Transform -- uid: 2307 - type: CableApcExtension - components: - - pos: -2.5,-14.5 - parent: 104 - type: Transform -- uid: 2308 - type: TargetHuman - components: - - pos: 12.5,-21.5 - parent: 104 - type: Transform -- uid: 2309 - type: GrenadeFlashBang - components: - - pos: 11.399388,-16.363453 - parent: 104 - type: Transform -- uid: 2310 - type: GrenadeFlashBang - components: - - pos: 11.571263,-16.363453 - parent: 104 - type: Transform -- uid: 2311 - type: SinkWide - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-7.5 - parent: 104 - type: Transform -- uid: 2312 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-13.5 - parent: 104 - type: Transform -- uid: 2313 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-14.5 - parent: 104 - type: Transform -- uid: 2314 - type: PlushieVox - components: - - pos: 1.5,-16.5 - parent: 104 - type: Transform -- uid: 2315 - type: PlushieLizard - components: - - pos: -1.5,-16.5 - parent: 104 - type: Transform -- uid: 2316 - type: PlushieRouny - components: - - pos: -1.5,-12.5 - parent: 104 - type: Transform -- uid: 2317 - type: PlushieBee - components: - - pos: 1.5,-12.5 - parent: 104 - type: Transform -- uid: 2318 - type: Grille - components: - - pos: 11.5,-8.5 - parent: 104 - type: Transform -- uid: 2319 - type: Grille - components: - - pos: 11.5,-6.5 - parent: 104 - type: Transform -- uid: 2320 - type: Stool - components: - - pos: 11.5,0.5 - parent: 104 - type: Transform -- uid: 2321 - type: SmallLight - components: - - pos: 15.5,-1.5 - parent: 104 - type: Transform -- uid: 2322 - type: CableMV - components: - - pos: 18.5,-13.5 - parent: 104 - type: Transform -- uid: 2323 - type: CableMV - components: - - pos: 19.5,-13.5 - parent: 104 - type: Transform -- uid: 2324 - type: CableMV - components: - - pos: 20.5,-13.5 - parent: 104 - type: Transform -- uid: 2325 - type: CableMV - components: - - pos: 20.5,-12.5 - parent: 104 - type: Transform -- uid: 2326 - type: GeneratorPlasma - components: - - pos: 27.5,-19.5 - parent: 104 - type: Transform -- uid: 2327 - type: GravityGenerator - components: - - pos: 22.5,-15.5 - parent: 104 - type: Transform - - charge: 100 - type: GravityGenerator - - radius: 175.75 - type: PointLight -- uid: 2328 - type: GeneratorPlasma - components: - - pos: 17.5,-17.5 - parent: 104 - type: Transform -- uid: 2329 - type: GeneratorPlasma - components: - - pos: 17.5,-19.5 - parent: 104 - type: Transform -- uid: 2330 - type: GeneratorPlasma - components: - - pos: 27.5,-17.5 - parent: 104 - type: Transform -- uid: 2331 - type: SMESBasic - components: - - pos: 21.5,-18.5 - parent: 104 - type: Transform -- uid: 2332 - type: SMESBasic - components: - - pos: 22.5,-18.5 - parent: 104 - type: Transform -- uid: 2333 - type: SMESBasic - components: - - pos: 23.5,-18.5 - parent: 104 - type: Transform -- uid: 2334 - type: CableHV - components: - - pos: 17.5,-19.5 - parent: 104 - type: Transform -- uid: 2335 - type: CableHV - components: - - pos: 17.5,-18.5 - parent: 104 - type: Transform -- uid: 2336 - type: CableHV - components: - - pos: 17.5,-17.5 - parent: 104 - type: Transform -- uid: 2337 - type: CableHV - components: - - pos: 18.5,-19.5 - parent: 104 - type: Transform -- uid: 2338 - type: CableHV - components: - - pos: 19.5,-19.5 - parent: 104 - type: Transform -- uid: 2339 - type: CableHV - components: - - pos: 20.5,-19.5 - parent: 104 - type: Transform -- uid: 2340 - type: CableHV - components: - - pos: 21.5,-19.5 - parent: 104 - type: Transform -- uid: 2341 - type: CableHV - components: - - pos: 22.5,-19.5 - parent: 104 - type: Transform -- uid: 2342 - type: CableHV - components: - - pos: 23.5,-19.5 - parent: 104 - type: Transform -- uid: 2343 - type: CableHV - components: - - pos: 24.5,-19.5 - parent: 104 - type: Transform -- uid: 2344 - type: CableHV - components: - - pos: 25.5,-19.5 - parent: 104 - type: Transform -- uid: 2345 - type: CableHV - components: - - pos: 26.5,-19.5 - parent: 104 - type: Transform -- uid: 2346 - type: CableHV - components: - - pos: 27.5,-19.5 - parent: 104 - type: Transform -- uid: 2347 - type: CableHV - components: - - pos: 27.5,-18.5 - parent: 104 - type: Transform -- uid: 2348 - type: CableHV - components: - - pos: 27.5,-17.5 - parent: 104 - type: Transform -- uid: 2349 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 21.5,-19.5 - parent: 104 - type: Transform -- uid: 2350 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 22.5,-19.5 - parent: 104 - type: Transform -- uid: 2351 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 23.5,-19.5 - parent: 104 - type: Transform -- uid: 2352 - type: CableHV - components: - - pos: 21.5,-18.5 - parent: 104 - type: Transform -- uid: 2353 - type: CableHV - components: - - pos: 22.5,-18.5 - parent: 104 - type: Transform -- uid: 2354 - type: CableHV - components: - - pos: 23.5,-18.5 - parent: 104 - type: Transform -- uid: 2355 - type: CableHV - components: - - pos: 22.5,-17.5 - parent: 104 - type: Transform -- uid: 2356 - type: CableHV - components: - - pos: 23.5,-17.5 - parent: 104 - type: Transform -- uid: 2357 - type: CableHV - components: - - pos: 24.5,-17.5 - parent: 104 - type: Transform -- uid: 2358 - type: CableHV - components: - - pos: 24.5,-16.5 - parent: 104 - type: Transform -- uid: 2359 - type: CableHV - components: - - pos: 24.5,-15.5 - parent: 104 - type: Transform -- uid: 2360 - type: CableHV - components: - - pos: 24.5,-14.5 - parent: 104 - type: Transform -- uid: 2361 - type: CableHV - components: - - pos: 21.5,-17.5 - parent: 104 - type: Transform -- uid: 2362 - type: CableHV - components: - - pos: 25.5,-14.5 - parent: 104 - type: Transform -- uid: 2363 - type: CableHV - components: - - pos: 26.5,-14.5 - parent: 104 - type: Transform -- uid: 2364 - type: CableHV - components: - - pos: 27.5,-14.5 - parent: 104 - type: Transform -- uid: 2365 - type: CableHV - components: - - pos: 27.5,-13.5 - parent: 104 - type: Transform -- uid: 2366 - type: SubstationBasic - components: - - pos: 27.5,-13.5 - parent: 104 - type: Transform -- uid: 2367 - type: CableMV - components: - - pos: 27.5,-13.5 - parent: 104 - type: Transform -- uid: 2368 - type: CableMV - components: - - pos: 26.5,-13.5 - parent: 104 - type: Transform -- uid: 2369 - type: CableMV - components: - - pos: 25.5,-13.5 - parent: 104 - type: Transform -- uid: 2370 - type: CableMV - components: - - pos: 24.5,-13.5 - parent: 104 - type: Transform -- uid: 2371 - type: CableMV - components: - - pos: 23.5,-13.5 - parent: 104 - type: Transform -- uid: 2372 - type: CableMV - components: - - pos: 22.5,-13.5 - parent: 104 - type: Transform -- uid: 2373 - type: CableMV - components: - - pos: 21.5,-13.5 - parent: 104 - type: Transform -- uid: 2374 - type: CableApcExtension - components: - - pos: 20.5,-12.5 - parent: 104 - type: Transform -- uid: 2375 - type: CableApcExtension - components: - - pos: 20.5,-13.5 - parent: 104 - type: Transform -- uid: 2376 - type: CableApcExtension - components: - - pos: 20.5,-14.5 - parent: 104 - type: Transform -- uid: 2377 - type: CableApcExtension - components: - - pos: 20.5,-15.5 - parent: 104 - type: Transform -- uid: 2378 - type: CableApcExtension - components: - - pos: 20.5,-16.5 - parent: 104 - type: Transform -- uid: 2379 - type: CableApcExtension - components: - - pos: 20.5,-17.5 - parent: 104 - type: Transform -- uid: 2380 - type: ChemicalPayload - components: - - pos: 3.3003616,-17.381208 - parent: 104 - type: Transform -- uid: 2381 - type: CableApcExtension - components: - - pos: 20.5,-18.5 - parent: 104 - type: Transform -- uid: 2382 - type: CableApcExtension - components: - - pos: 20.5,-19.5 - parent: 104 - type: Transform -- uid: 2383 - type: CableApcExtension - components: - - pos: 19.5,-17.5 - parent: 104 - type: Transform -- uid: 2384 - type: CableApcExtension - components: - - pos: 18.5,-17.5 - parent: 104 - type: Transform -- uid: 2385 - type: CableApcExtension - components: - - pos: 21.5,-17.5 - parent: 104 - type: Transform -- uid: 2386 - type: CableApcExtension - components: - - pos: 22.5,-17.5 - parent: 104 - type: Transform -- uid: 2387 - type: CableApcExtension - components: - - pos: 23.5,-17.5 - parent: 104 - type: Transform -- uid: 2388 - type: CableApcExtension - components: - - pos: 24.5,-17.5 - parent: 104 - type: Transform -- uid: 2389 - type: CableApcExtension - components: - - pos: 25.5,-17.5 - parent: 104 - type: Transform -- uid: 2390 - type: CableApcExtension - components: - - pos: 26.5,-17.5 - parent: 104 - type: Transform -- uid: 2391 - type: CableApcExtension - components: - - pos: 25.5,-18.5 - parent: 104 - type: Transform -- uid: 2392 - type: CableApcExtension - components: - - pos: 25.5,-19.5 - parent: 104 - type: Transform -- uid: 2393 - type: CableApcExtension - components: - - pos: 25.5,-16.5 - parent: 104 - type: Transform -- uid: 2394 - type: CableApcExtension - components: - - pos: 25.5,-15.5 - parent: 104 - type: Transform -- uid: 2395 - type: CableApcExtension - components: - - pos: 25.5,-14.5 - parent: 104 - type: Transform -- uid: 2396 - type: CableApcExtension - components: - - pos: 25.5,-13.5 - parent: 104 - type: Transform -- uid: 2397 - type: AlwaysPoweredWallLight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-11.5 - parent: 104 - type: Transform -- uid: 2398 - type: AlwaysPoweredWallLight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-3.5 - parent: 104 - type: Transform -- uid: 2399 - type: AlwaysPoweredWallLight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 104 - type: Transform -- uid: 2400 - type: AlwaysPoweredWallLight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-11.5 - parent: 104 - type: Transform -- uid: 2401 - type: AlwaysPoweredWallLight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-15.5 - parent: 104 - type: Transform -- uid: 2402 - type: AlwaysPoweredWallLight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-15.5 - parent: 104 - type: Transform -- uid: 2403 - type: AlwaysPoweredWallLight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-19.5 - parent: 104 - type: Transform -- uid: 2404 - type: AlwaysPoweredWallLight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-19.5 - parent: 104 - type: Transform -- uid: 2405 - type: Catwalk - components: - - pos: 23.5,-19.5 - parent: 104 - type: Transform -- uid: 2406 - type: Catwalk - components: - - pos: 22.5,-19.5 - parent: 104 - type: Transform -- uid: 2407 - type: Catwalk - components: - - pos: 21.5,-19.5 - parent: 104 - type: Transform -- uid: 2408 - type: Catwalk - components: - - pos: 21.5,-17.5 - parent: 104 - type: Transform -- uid: 2409 - type: Catwalk - components: - - pos: 22.5,-17.5 - parent: 104 - type: Transform -- uid: 2410 - type: Catwalk - components: - - pos: 23.5,-17.5 - parent: 104 - type: Transform -- uid: 2411 - type: TablePlasmaGlass - components: - - pos: 20.5,-16.5 - parent: 104 - type: Transform -- uid: 2412 - type: TablePlasmaGlass - components: - - pos: 20.5,-15.5 - parent: 104 - type: Transform -- uid: 2413 - type: TablePlasmaGlass - components: - - pos: 24.5,-16.5 - parent: 104 - type: Transform -- uid: 2414 - type: TablePlasmaGlass - components: - - pos: 24.5,-15.5 - parent: 104 - type: Transform -- uid: 2415 - type: GeneratorRTG - components: - - pos: 17.5,-18.5 - parent: 104 - type: Transform -- uid: 2416 - type: GeneratorRTG - components: - - pos: 27.5,-18.5 - parent: 104 - type: Transform -- uid: 2417 - type: ClosetToolFilled - components: - - pos: 20.5,-14.5 - parent: 104 - type: Transform -- uid: 2418 - type: ClosetToolFilled - components: - - pos: 24.5,-14.5 - parent: 104 - type: Transform -- uid: 2419 - type: SheetSteel - components: - - pos: 20.5,-15.5 - parent: 104 - type: Transform -- uid: 2420 - type: SheetSteel - components: - - pos: 20.5,-15.5 - parent: 104 - type: Transform -- uid: 2421 - type: SheetGlass - components: - - pos: 20.5,-16.5 - parent: 104 - type: Transform -- uid: 2422 - type: SheetGlass - components: - - pos: 20.5,-16.5 - parent: 104 - type: Transform -- uid: 2423 - type: SheetPlasteel - components: - - pos: 24.5,-15.5 - parent: 104 - type: Transform -- uid: 2424 - type: SheetPlasteel - components: - - pos: 24.5,-15.5 - parent: 104 - type: Transform -- uid: 2425 - type: PartRodMetal - components: - - pos: 24.5,-16.5 - parent: 104 - type: Transform -- uid: 2426 - type: PartRodMetal - components: - - pos: 24.5,-16.5 - parent: 104 - type: Transform -- uid: 2427 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-15.5 - parent: 104 - type: Transform -- uid: 2428 - type: ChairOfficeDark - components: - - pos: 25.5,-15.5 - parent: 104 - type: Transform -- uid: 2429 - type: ChairWood - components: - - pos: -0.5,-1.5 - parent: 104 - type: Transform -- uid: 2430 - type: PianoInstrument - components: - - pos: -0.5,-2.5 - parent: 104 - type: Transform -- uid: 2431 - type: TablePlasmaGlass - components: - - pos: 17.5,-16.5 - parent: 104 - type: Transform -- uid: 2432 - type: TablePlasmaGlass - components: - - pos: 17.5,-15.5 - parent: 104 - type: Transform -- uid: 2433 - type: TablePlasmaGlass - components: - - pos: 27.5,-16.5 - parent: 104 - type: Transform -- uid: 2434 - type: TablePlasmaGlass - components: - - pos: 27.5,-15.5 - parent: 104 - type: Transform -- uid: 2435 - type: OperatingTable - components: - - pos: -0.5,-14.5 - parent: 104 - type: Transform -- uid: 2436 - type: computerBodyScanner - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-14.5 - parent: 104 - type: Transform -- uid: 2437 - type: ClothingBackpackDuffelSyndicateFilledMedical - components: - - pos: 0.5,-12.5 - parent: 104 - type: Transform -- uid: 2438 - type: FloorDrain - components: - - pos: 10.5,-3.5 - parent: 104 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 2439 - type: CableApcExtension - components: - - pos: 13.5,-9.5 - parent: 104 - type: Transform -- uid: 2440 - type: CableApcExtension - components: - - pos: 5.5,-6.5 - parent: 104 - type: Transform -- uid: 2441 - type: CableApcExtension - components: - - pos: 5.5,-5.5 - parent: 104 - type: Transform -- uid: 2505 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -22.5,3.5 - parent: 104 - type: Transform -- uid: 2507 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -20.5,4.5 - parent: 104 - type: Transform -- uid: 2508 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -21.5,2.5 - parent: 104 - type: Transform -- uid: 2514 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -20.5,3.5 - parent: 104 - type: Transform -- uid: 2515 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -21.5,4.5 - parent: 104 - type: Transform -- uid: 2520 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -22.5,1.5 - parent: 104 - type: Transform -- uid: 2521 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -20.5,2.5 - parent: 104 - type: Transform -- uid: 2527 - type: Catwalk - components: - - pos: -20.5,1.5 - parent: 104 - type: Transform -- uid: 2553 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -22.5,4.5 - parent: 104 - type: Transform -- uid: 2554 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -22.5,2.5 - parent: 104 - type: Transform -- uid: 2557 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -21.5,3.5 - parent: 104 - type: Transform -- uid: 2569 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -23.5,1.5 - parent: 104 - type: Transform -- uid: 3084 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -24.5,1.5 - parent: 104 - type: Transform -- uid: 3110 - type: ChemicalPayload - components: - - pos: 3.6284866,-17.287361 - parent: 104 - type: Transform -- uid: 3112 - type: CryostasisBeaker - components: - - pos: 3.4240913,-12.323509 - parent: 104 - type: Transform -- uid: 3327 - type: FoodDonutJellySlugcat - components: - - pos: -5.7255287,20.539352 - parent: 104 - type: Transform -- uid: 3366 - type: Spear - components: - - pos: -5.3505287,20.508072 - parent: 104 - type: Transform -- uid: 3367 - type: PlushieLizard - components: - - pos: -4.605839,20.481245 - parent: 104 - type: Transform -- uid: 3375 - type: AlwaysPoweredWallLight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 104 - type: Transform -- uid: 3377 - type: AlwaysPoweredWallLight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 104 - type: Transform -- uid: 3378 - type: CableApcExtension - components: - - pos: 7.5,-9.5 - parent: 104 - type: Transform -- uid: 3379 - type: CableApcExtension - components: - - pos: 7.5,-10.5 - parent: 104 - type: Transform -- uid: 3380 - type: CableApcExtension - components: - - pos: 6.5,-10.5 - parent: 104 - type: Transform -- uid: 3381 - type: CableApcExtension - components: - - pos: 5.5,-10.5 - parent: 104 - type: Transform -- uid: 3382 - type: CableApcExtension - components: - - pos: 4.5,-10.5 - parent: 104 - type: Transform -- uid: 3383 - type: CableApcExtension - components: - - pos: 3.5,-10.5 - parent: 104 - type: Transform -- uid: 3384 - type: CableApcExtension - components: - - pos: 3.5,-11.5 - parent: 104 - type: Transform -... diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml deleted file mode 100644 index cae2638fea..0000000000 --- a/Resources/Maps/omega.yml +++ /dev/null @@ -1,97015 +0,0 @@ -meta: - format: 3 - name: DemoStation - author: Space-Wizards - postmapinit: false -tilemap: - 0: Space - 4: FloorAsteroidCoarseSand0 - 5: FloorAsteroidCoarseSandDug - 10: FloorAsteroidSand - 11: FloorAsteroidTile - 12: FloorBar - 15: FloorBlueCircuit - 22: FloorDark - 29: FloorDarkPavement - 34: FloorEighties - 37: FloorFreezer - 40: FloorGrass - 44: FloorGreenCircuit - 46: FloorHydro - 48: FloorLaundry - 49: FloorLino - 53: FloorMono - 58: FloorReinforced - 60: FloorShowroom - 68: FloorSteel - 78: FloorTechMaint - 81: FloorWhite - 91: FloorWood - 93: Lattice - 94: Plating -entities: -- uid: 0 - components: - - type: MetaData - - pos: 2.2710133,-2.4148211 - parent: 473 - type: Transform - - chunks: - -1,0: - ind: -1,0 - tiles: MQAAADEAAABeAAAAXgAAAF4AAAAWAAACWwAAA1sAAAEWAAADXgAAAAwAAAJEAAAARAAAAkQAAANEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAlsAAABbAAACFgAAAF4AAAAMAAACRAAAAUQAAANEAAADRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAV4AAABeAAAADAAAAEQAAAFEAAACRAAAAkQAAABEAAADTgAAAE4AAABOAAAAXgAAAF4AAAAWAAACWwAAA1sAAAJbAAADFgAAAwwAAANEAAADRAAAAUQAAANEAAAARAAAA04AAABOAAAATgAAAF4AAABeAAAAFgAAA1sAAABbAAACWwAAARYAAAMMAAADRAAAAkQAAANEAAABRAAAA0QAAAFOAAAATgAAAE4AAABeAAAAXgAAABYAAABbAAABWwAAAVsAAAMWAAADDAAAAEQAAABEAAACRAAAAkQAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAWwAAA1sAAAJbAAADFgAAAgwAAAFEAAACRAAAAkQAAAFEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAVsAAABbAAACWwAAABYAAAEMAAADRAAAAkQAAAFEAAACRAAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAABYAAAFbAAAAWwAAAVsAAAAWAAADDAAAAEQAAAFEAAAARAAAA0QAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABWwAAAFsAAANbAAAAFgAAAwwAAAAMAAAARAAAAUQAAAJEAAADDAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACDAAAAkQAAANEAAADRAAAAgwAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAAwAAAEMAAABDAAAAAwAAAEMAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAADAAAAwwAAAAMAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADRAAAAUQAAABEAAACXgAAADUAAAA1AAAANQAAADUAAAA1AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAACXgAAAA== - 0,0: - ind: 0,0 - tiles: DAAAAV4AAAAWAAACFgAAARYAAAIWAAABFgAAARYAAAFeAAAAXgAAAF4AAABEAAAARAAAAV4AAABeAAAAXgAAAAwAAAJeAAAAXgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAADXgAAAF4AAAAMAAAADAAAAgwAAAIMAAABXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAEQAAABEAAACRAAAAV4AAABeAAAADAAAAgwAAAAMAAABDAAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAA0QAAAJeAAAAXgAAAAwAAAIWAAACFgAAABYAAAFeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAABXgAAAF4AAAAMAAAAFgAAARYAAAMWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADXgAAAF4AAABeAAAADAAAABYAAAEWAAAAFgAAARYAAAMWAAAAFgAAABYAAAJeAAAAXgAAAF4AAABEAAABRAAAAV4AAAAlAAAAJQAAAAwAAAEWAAADFgAAABYAAAFbAAADWwAAAlsAAABbAAADXgAAAF4AAABeAAAARAAAA0QAAAAlAAAAJQAAACUAAAAMAAAAFgAAARYAAAMWAAADXgAAAFsAAABbAAADWwAAA14AAABeAAAAXgAAAEQAAANEAAABXgAAACUAAAAlAAAADAAAAxYAAAMWAAADFgAAAV4AAABbAAAAWwAAAVsAAAFeAAAAXgAAAF4AAABEAAADRAAAAV4AAABeAAAAXgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAABeAAAAXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABEAAABRAAAA14AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABeAAAARAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAANEAAAARAAAAkQAAAEWAAABXgAAAEQAAANEAAACRAAAAUQAAANEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADRAAAAkQAAAFEAAABFgAAA14AAABEAAACRAAAAUQAAANEAAADRAAAAw== - -1,1: - ind: -1,1 - tiles: XgAAADUAAAA1AAAANQAAADUAAAA1AAAAXgAAAF0AAABdAAAAXgAAAEQAAANEAAAARAAAA0QAAAFEAAADRAAAAV4AAAA1AAAANQAAADUAAAA1AAAANQAAAF4AAABdAAAAXQAAAF4AAABEAAADRAAAA0QAAAFEAAABRAAAAUQAAAFeAAAAXgAAABYAAABeAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAAARAAAAkQAAABEAAACRAAAAUQAAANEAAADRAAAAEQAAAFEAAACRAAAAUQAAAJEAAAARAAAAkQAAAFEAAADRAAAAEQAAABEAAADRAAAAUQAAABEAAACRAAAAEQAAAFEAAAARAAAAkQAAAJEAAAARAAAAUQAAAFEAAABRAAAAkQAAAJEAAABRAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAFeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAFgAAAlsAAABbAAAAWwAAAFsAAABbAAABXgAAABYAAAMWAAACXgAAABYAAAAsAAAALAAAABYAAAMsAAAALAAAABYAAABbAAACWwAAAVsAAAFbAAACWwAAAVsAAAAWAAAAFgAAAl4AAAAWAAAALAAAABYAAAIWAAADFgAAAiwAAAAWAAAAWwAAA1sAAANbAAACWwAAAlsAAAJeAAAAFgAAAxYAAAJeAAAAFgAAASwAAAAsAAAALAAAACwAAAAsAAAAFgAAAV4AAABbAAABWwAAA1sAAABbAAADXgAAABYAAAMWAAABXgAAABYAAAMsAAAALAAAACwAAAAsAAAALAAAAF4AAABeAAAAXgAAAF4AAABbAAABXgAAAF4AAAAWAAADFgAAAV4AAAAWAAABFgAAARYAAAEsAAAAFgAAARYAAAElAAAAXgAAAFsAAABbAAACWwAAAVsAAAFeAAAAFgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAJQAAACUAAAAxAAAAMQAAADEAAAAxAAAAXgAAABYAAAAWAAABFgAAABYAAAMxAAAAMQAAADEAAAAxAAAAMQAAADwAAABeAAAAMQAAADEAAAAxAAAAMQAAAF4AAAAWAAABFgAAARYAAAIWAAAAMQAAADEAAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAEWAAACFgAAAjEAAAAxAAAAMQAAADEAAAAxAAAABAAAAAQAAAAEAAACXQAAAF0AAABdAAAAXgAAABYAAAMWAAACXgAAABYAAAMWAAABFgAAABYAAAMWAAACFgAAAQ== - 0,1: - ind: 0,1 - tiles: RAAAA14AAABdAAAAXQAAAF4AAAAWAAADRAAAAUQAAAJEAAADFgAAA14AAABEAAACRAAAAl4AAABeAAAARAAAA0QAAAJeAAAAXQAAAF0AAABeAAAAFgAAAEQAAABEAAADRAAAAxYAAAFeAAAARAAAA0QAAABeAAAARAAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAEQAAANeAAAAXgAAAEQAAAJEAAADXgAAAEQAAAFEAAAARAAAAkQAAAFEAAACRAAAAkQAAAFEAAACRAAAAUQAAANEAAABRAAAAUQAAAJEAAAARAAAAl4AAABEAAABRAAAAkQAAANEAAAARAAAAkQAAAJEAAABRAAAAkQAAAJEAAABRAAAAEQAAABEAAAARAAAAEQAAAJEAAABRAAAAUQAAABeAAAAXgAAABYAAAMWAAAAXgAAAEQAAAIoAAAAKAAAACgAAABEAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAAFgAAAl4AAAAWAAACFgAAA14AAABEAAABRAAAA0QAAABEAAACRAAAABYAAAFeAAAAXgAAAF4AAABeAAAARAAAABYAAANeAAAAFgAAARYAAAFeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAAWAAACXgAAABYAAAEWAAABXgAAAFsAAANbAAAAWwAAAlsAAABbAAABFgAAAF4AAABeAAAAXgAAAEQAAAFEAAADFgAAAV4AAAAWAAABFgAAARYAAANbAAACWwAAAlsAAAFbAAADWwAAABYAAABeAAAAXgAAAF4AAABEAAABRAAAARYAAAFeAAAAFgAAABYAAABeAAAAFgAAABYAAAEWAAACFgAAAxYAAAAWAAACXgAAAF4AAABeAAAARAAAAkQAAAJeAAAAXgAAABYAAAIWAAABXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABFgAAAxYAAAIWAAAAFgAAAF4AAAAWAAADWwAAAlsAAAFbAAACPAAAADwAAABeAAAAXgAAAF4AAABeAAAARAAAABYAAAMWAAABFgAAABYAAAFeAAAAFgAAAVsAAAFbAAACWwAAAl4AAAA8AAAAXgAAAF4AAABOAAAAXgAAAEQAAAEWAAADFgAAAxYAAAIWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAPAAAAF4AAABeAAAATgAAAF4AAABEAAACFgAAAl4AAAAWAAADFgAAAl4AAAAWAAAAFgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAg== - 0,-1: - ind: 0,-1 - tiles: RAAAAkQAAAFeAAAARAAAAUQAAAFEAAADRAAAAhYAAAFeAAAAFgAAARYAAANeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAAXgAAAEQAAABEAAACRAAAAEQAAAMWAAAAXgAAABYAAAMWAAACXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAABEAAADRAAAAUQAAANEAAAARAAAA0QAAABEAAADRAAAAUQAAAFEAAAARAAAAxYAAABeAAAAXQAAAEQAAANEAAABRAAAAkQAAAJEAAACRAAAAkQAAANEAAACRAAAA0QAAANEAAAARAAAAkQAAAMWAAABXgAAAF0AAABeAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAEQAAAFeAAAAXQAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAADXgAAAF4AAAAMAAACXgAAAF4AAABeAAAAXgAAACUAAAAlAAAAJQAAAF4AAABeAAAAXgAAAEQAAABEAAACRAAAAl4AAABeAAAADAAAAl4AAAAlAAAAJQAAACUAAAAlAAAAJQAAACUAAAAWAAAAXgAAAF4AAABEAAADRAAAA0QAAANeAAAAXgAAAAwAAANeAAAAJQAAACUAAAAlAAAARAAAAUQAAANEAAADXgAAAF4AAABeAAAARAAAAEQAAABeAAAAXgAAAE4AAAAMAAABXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADRAAAAl4AAABeAAAADAAAAV4AAAAWAAACFgAAABYAAAMWAAAAFgAAAxYAAAFeAAAAXgAAAF4AAABEAAACRAAAAkQAAABEAAABRAAAAQwAAAFeAAAAHQAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAADRAAAAUQAAAEMAAAAXgAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAHQAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAAl4AAABeAAAADAAAA14AAAAdAAAAHQAAAB0AAAAdAAAAHQAAAB0AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAAJeAAAAXgAAAA== - -1,-1: - ind: -1,-1 - tiles: UQAAAVEAAABeAAAAUQAAAlEAAAFRAAADUQAAAFEAAAJeAAAARAAAAEQAAAIxAAAAMQAAADEAAAAxAAAAMQAAAF4AAABeAAAAXgAAAFEAAABRAAADUQAAAVEAAAFRAAACXgAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAkQAAAFEAAAARAAAA0QAAANEAAAARAAAA0QAAAJEAAACRAAAA0QAAAJEAAACRAAAAUQAAAFEAAACRAAAA0QAAANEAAADRAAAAEQAAABEAAACRAAAA0QAAAJEAAAARAAAAUQAAAFEAAADRAAAAEQAAABEAAABRAAAAEQAAABEAAAARAAAAUQAAAFEAAABRAAAAkQAAABeAAAAXgAAAF4AAABeAAAAXgAAAC4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAUQAAANEAAAAFgAAARYAAAEWAAACFgAAAhYAAAAuAAAAFgAAACgAAAAoAAAAKAAAAF4AAABeAAAADAAAAAwAAAMMAAAAXgAAAC4AAAAuAAAALgAAAC4AAAAuAAAALgAAAC4AAAAoAAAAKAAAAF4AAABeAAAADAAAAwwAAAIMAAACDAAAAwwAAAAWAAAAFgAAARYAAAMWAAABFgAAAC4AAAAuAAAALgAAAC4AAABEAAABDAAAAQwAAAFEAAADRAAAA0QAAAMMAAADLgAAAC4AAAAuAAAALgAAAC4AAAAuAAAALgAAAC4AAAAuAAAARAAAAAwAAAFEAAACRAAAAUQAAABEAAAARAAAARYAAAIWAAACFgAAARYAAAEWAAADFgAAARYAAAAWAAABFgAAAEQAAAEMAAACRAAAAkQAAANEAAACRAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAADAAAAEQAAANEAAACRAAAAUQAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAwAAAFEAAADRAAAA0QAAABEAAAARAAAAzEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAMAAACRAAAA0QAAAJEAAAARAAAA0QAAAAxAAAAMQAAAF4AAABeAAAAXgAAABYAAAMWAAABFgAAARYAAANeAAAADAAAAUQAAAJEAAAARAAAAUQAAABEAAAAMQAAADEAAABeAAAAXgAAAF4AAAAWAAAAWwAAAlsAAAEWAAAAFgAAAAwAAAFEAAAARAAAA0QAAABEAAACRAAAAw== - -2,1: - ind: -2,1 - tiles: RAAAAUQAAABEAAABRAAAAEQAAABEAAACRAAAAl4AAABEAAACRAAAA1sAAAFbAAACWwAAAlsAAANbAAAAWwAAAkQAAAFEAAAARAAAAEQAAAJeAAAARAAAAEQAAANeAAAARAAAA0QAAANeAAAAWwAAA1sAAANbAAACWwAAAFsAAANEAAACRAAAAkQAAAFEAAABXgAAAF4AAABeAAAAXgAAAEQAAANEAAABXgAAAF4AAABeAAAAXgAAAFsAAAJeAAAARAAAAEQAAAJEAAABRAAAAkQAAAJEAAABRAAAAF4AAABEAAABRAAAAkQAAAFEAAADRAAAAkQAAABEAAAARAAAAkQAAANEAAAARAAAAkQAAAJeAAAARAAAAUQAAABeAAAARAAAAUQAAAFEAAACRAAAAUQAAAFEAAABRAAAAEQAAAFeAAAAFgAAAhYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAMWAAACFgAAAV4AAAAWAAAAFgAAAF4AAAAWAAAAMQAAADEAAAAxAAAAMQAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAl4AAABeAAAAFgAAAhYAAAAWAAAAFgAAADEAAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAAAWAAABFgAAAhYAAAAWAAABFgAAARYAAAAWAAABXgAAABYAAAIxAAAAMQAAADEAAAAxAAAAXgAAAF4AAAAWAAACXgAAAEQAAAJeAAAAXgAAAF4AAABEAAADXgAAAF4AAAAWAAABWwAAAlsAAANbAAACWwAAA14AAABeAAAAXgAAAEQAAABEAAADRAAAA14AAABEAAADRAAAAkQAAAFeAAAAXgAAAFsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAANeAAAARAAAAEQAAABEAAAAXgAAABYAAAJbAAACWwAAAzwAAAA8AAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABEAAADXgAAAF4AAAAWAAAAWwAAAVsAAABeAAAAPAAAAF4AAABeAAAAXgAAAEQAAANEAAACRAAAA0QAAANEAAADRAAAARYAAAJeAAAAXgAAAF4AAABeAAAAXgAAADwAAABeAAAATgAAAF4AAABEAAABRAAAA0QAAAJEAAACRAAAAkQAAAEWAAAAXgAAAAQAAAIAAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAAARAAAAUQAAABEAAAAFgAAAV4AAAAEAAAAAAAAAAQAAAIEAAAABAAAAAQAAAEEAAACBAAAAg== - -2,0: - ind: -2,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAl4AAABEAAACRAAAAkQAAAJEAAADXgAAAFsAAANeAAAAXgAAAEQAAAFEAAAARAAAAkQAAAJeAAAARAAAAEQAAABEAAADRAAAAEQAAAJEAAABRAAAA0QAAAFEAAACMAAAAF4AAABEAAACRAAAAkQAAANEAAABXgAAAEQAAAJEAAAARAAAA0QAAANEAAADRAAAAkQAAABEAAABRAAAAjAAAAAwAAAARAAAAEQAAANEAAABRAAAA14AAABEAAADRAAAAl4AAAAWAAABFgAAABYAAAMiAAAAXgAAADEAAABeAAAAXgAAAEQAAABEAAABRAAAAkQAAANeAAAARAAAAkQAAAJeAAAAFgAAAxYAAAAWAAADIgAAAF4AAAAxAAAAMQAAAF4AAABEAAAARAAAA0QAAANEAAACXgAAAEQAAAFEAAABXgAAACIAAAAiAAAAIgAAACIAAABeAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADRAAAAEQAAAJEAAACRAAAA0QAAANeAAAARAAAAEQAAAJEAAADRAAAA0QAAANeAAAAXgAAAF4AAABeAAAAFgAAAEQAAANEAAAARAAAAkQAAAFEAAABXgAAAEQAAAJEAAABRAAAAEQAAAFEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAANEAAABRAAAAkQAAABEAAADRAAAAkQAAAJEAAABRAAAAUQAAABeAAAARAAAA0QAAAJeAAAARAAAAUQAAANEAAACRAAAAkQAAABEAAABRAAAA0QAAABEAAACRAAAA0QAAAJEAAAARAAAAEQAAANEAAAAXgAAAEQAAABEAAADXgAAAEQAAANEAAAARAAAA0QAAANEAAAAFgAAAUQAAAJEAAAARAAAAV4AAABeAAAAXgAAAF4AAABEAAABRAAAAF4AAABEAAABRAAAAEQAAABEAAADRAAAABYAAABEAAACRAAAAkQAAANEAAACRAAAAEQAAABEAAADRAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABRAAAA0QAAANEAAABRAAAAkQAAANEAAACRAAAAEQAAAJEAAACXgAAAFsAAANbAAAAWwAAAVsAAANbAAAARAAAAkQAAANEAAACRAAAAV4AAABeAAAAXgAAAF4AAABEAAADRAAAAl4AAABbAAAAWwAAAlsAAABbAAABWwAAAw== - -2,-1: - ind: -2,-1 - tiles: FgAAAxYAAAIWAAADFgAAABYAAAIWAAACWwAAAlsAAANbAAABWwAAAl4AAAAWAAACFgAAAhYAAABeAAAAUQAAAxYAAAEWAAACFgAAARYAAAMWAAADFgAAAFsAAABbAAABWwAAAFsAAAFeAAAAFgAAAxYAAAIWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAF4AAABeAAAAXgAAAF4AAAAWAAADXgAAAF4AAAAWAAABTgAAAE4AAABOAAAAXgAAABYAAAFEAAABRAAAA0QAAAFEAAACRAAAAUQAAAFEAAABRAAAAUQAAAFEAAADRAAAA14AAABeAAAAXgAAAF4AAAAWAAABRAAAAUQAAANEAAAARAAAAEQAAANEAAADRAAAA0QAAAJEAAADRAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAAXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAC4AAABeAAAARAAAAEQAAAJEAAABRAAAAV4AAABEAAABRAAAAV4AAAAWAAAAFgAAARYAAAMWAAABXgAAABYAAAAuAAAAFgAAAUQAAABEAAADRAAAAUQAAABeAAAARAAAAkQAAAFeAAAAFgAAA0QAAAFEAAACFgAAAl4AAAAWAAADLgAAAC4AAABEAAACRAAAAUQAAABEAAAAXgAAAEQAAAJEAAACXgAAABYAAAFEAAAARAAAAhYAAABeAAAAFgAAAS4AAAAWAAACRAAAAkQAAAFEAAAARAAAA14AAABEAAADRAAAA14AAAAWAAACFgAAARYAAAEWAAACXgAAABYAAAEuAAAALgAAAEQAAAFEAAABRAAAAEQAAABeAAAARAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAARYAAANeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANEAAABXgAAAEQAAAJEAAADRAAAA0QAAAFeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAAEQAAAFEAAABRAAAAkQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAkQAAAFEAAACRAAAAkQAAAJEAAAAXgAAAEQAAANEAAADRAAAA0QAAAFeAAAAWwAAAFsAAABeAAAARAAAA0QAAAFEAAADXgAAAEQAAABEAAABRAAAAV4AAABEAAADRAAAAEQAAANEAAAAXgAAAFsAAAJbAAACXgAAAA== - -1,2: - ind: -1,2 - tiles: BAAAAAQAAAIEAAABAAAAAF0AAAAAAAAAXgAAABYAAAMWAAADFgAAAxYAAAEWAAAAFgAAAhYAAAMWAAABFgAAAwQAAABeAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAWAAADFgAAARYAAAAWAAABFgAAAxYAAAMWAAACFgAAABYAAAEEAAABAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAFgAAARYAAAIWAAAAFgAAAxYAAAMWAAABFgAAAhYAAAMWAAADAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAACFgAAARYAAAEWAAABFgAAAwAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,2: - ind: 0,2 - tiles: FgAAARYAAAMWAAACFgAAAhYAAAAWAAACFgAAAV4AAAAAAAAAAAAAAAQAAAJeAAAAXgAAAF4AAABeAAAARAAAAxYAAAEWAAACFgAAAhYAAAJeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAARYAAAIWAAADXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAsAAAALAAAABAAAAl4AAABEAAADFgAAAl4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAACwAAAAQAAABeAAAARAAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAQAAAEEAAABXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAEAAACBAAAAQQAAAIEAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAQAAAAEAAABBAAAAl0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAAQAAAAEAAAABAAAAgQAAAEEAAABXQAAAAAAAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAABAAAAAQAAAIEAAAABAAAAgQAAAIEAAACBAAAAl0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAgQAAAFdAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAAxYAAAJeAAAAXgAAAF4AAABeAAAAAAAAAAQAAAFeAAAAXgAAAF4AAAAWAAADFgAAAxYAAAJeAAAAFgAAARYAAAEWAAABXgAAAF4AAABeAAAAXgAAAAAAAAAEAAABXgAAAF4AAABeAAAAFgAAARYAAAMWAAADFgAAARYAAAIWAAADFgAAAxYAAAMWAAAAFgAAAhYAAAAEAAABBAAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAAF4AAAAWAAAAFgAAARYAAAFeAAAAXgAAAF4AAABeAAAABAAAAgQAAABeAAAAXgAAAF4AAAAWAAACFgAAAxYAAAFeAAAAXgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAA== - 1,2: - ind: 1,2 - tiles: RAAAAEQAAAFeAAAABAAAAQQAAAIEAAABBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANeAAAAXgAAAF4AAABeAAAABAAAAQQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAV4AAAAlAAAAXgAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAAMlAAAAJQAAAF4AAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAACUAAABeAAAABAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAF4AAABeAAAAXgAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAQAAAIEAAAABAAAAgQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAQAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAACwAAAAQAAAEEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAQAAAIEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,1: - ind: 1,1 - tiles: XgAAAF4AAABeAAAARAAAAl4AAABeAAAAFgAAAhYAAAMWAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAEQAAANEAAACRAAAAUQAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAAUQAAAFEAAACRAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAAJEAAACRAAAAEQAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAABRAAAAkQAAANEAAABXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAAkQAAANEAAACRAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAkQAAANEAAABXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAAkQAAAJEAAAARAAAAl4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAABRAAAAEQAAAJeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAJEAAAARAAAAkQAAANEAAACXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAAEQAAAJEAAAARAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAUQAAANeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAFEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAABRAAAA14AAAAEAAACBQAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAANeAAAABAAAAgQAAAIEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,0: - ind: 1,0 - tiles: XgAAAF4AAABeAAAAFgAAAF4AAABeAAAATgAAAF4AAABEAAADRAAAA14AAABEAAAARAAAAEQAAABEAAACRAAAA14AAAAWAAACFgAAABYAAAAWAAACXgAAAE4AAABeAAAARAAAAUQAAAJeAAAAXgAAAF4AAABeAAAARAAAAV4AAABeAAAAFgAAAhYAAAEWAAAAFgAAA14AAABeAAAAXgAAAEQAAABeAAAAXgAAAEQAAAJEAAAARAAAAEQAAAFEAAADXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAF4AAABEAAABRAAAAUQAAABEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAAARAAAAEQAAABeAAAARAAAAkQAAANEAAABRAAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAJQAAAF4AAABeAAAATgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAACUAAABeAAAAXgAAAE4AAABeAAAAOgAAADoAAAA6AAAAXgAAAAAAAABdAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAlAAAAXgAAAF4AAABOAAAAXgAAADoAAAA6AAAAOgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAsAAAALAAAACgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAADXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAEQAAAJEAAABRAAAAkQAAABEAAACXgAAAEQAAABEAAAARAAAA14AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABEAAABRAAAAEQAAABEAAAARAAAA0QAAANEAAADRAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAARAAAAUQAAAFEAAADRAAAAEQAAAFeAAAARAAAAkQAAABEAAADXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAA== - 0,3: - ind: 0,3 - tiles: BAAAAAQAAAAEAAACBAAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAIWAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAACBAAAAAQAAAIEAAACXgAAAF4AAAAWAAAALAAAACwAAAAWAAABLAAAACwAAAAWAAAAXgAAAF4AAAAEAAACBAAAAQQAAAAEAAABBAAAAV4AAABeAAAALAAAABYAAAIsAAAAFgAAASwAAAAWAAACLAAAAF4AAABeAAAAAAAAAAQAAAAEAAAABAAAAgQAAAJeAAAAXgAAACwAAAAWAAABXgAAAF4AAABeAAAAFgAAAiwAAABeAAAAXgAAAAAAAAAEAAACBAAAAAQAAAIEAAABXgAAAF4AAAAsAAAAFgAAAl4AAAAsAAAAXgAAABYAAAIsAAAAXgAAAF4AAAAAAAAAAAAAAAQAAAAKAAAABAAAAl4AAABeAAAALAAAABYAAAIWAAAALAAAABYAAAEWAAABLAAAAF4AAABeAAAAAAAAAAAAAAAEAAABBAAAAQQAAAJeAAAAXgAAACwAAAAWAAADXgAAAF4AAABeAAAAFgAAAiwAAABeAAAAXgAAAAAAAAAAAAAABAAAAgQAAAEEAAAAXgAAAF4AAAAWAAACLAAAACwAAAAsAAAALAAAACwAAAAWAAADXgAAAF4AAAAAAAAAAAAAAAQAAAEEAAAABAAAAgQAAABeAAAAXgAAAF4AAAAWAAADFgAAAhYAAABeAAAAXgAAAF4AAAAEAAABAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAQAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAAQAAAIEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIFAAAABAAAAAQAAAAEAAABBAAAAAQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAABAAAAQQAAAEEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,3: - ind: 1,3 - tiles: XgAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAgQAAAEEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAEEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -2,2: - ind: -2,2 - tiles: RAAAA0QAAABEAAADRAAAA0QAAANEAAACFgAAA14AAAAEAAABAAAAAAQAAAIEAAAABAAAAgQAAAEEAAACBAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAQAAAAAEAAACBAAAAQQAAAIEAAACBAAAAgQAAAIEAAAABAAAAAQAAAIEAAABBQAAAAQAAAEEAAACBAAAAQQAAAIAAAAABAAAAAQAAAEEAAAABAAAAQQAAAEEAAACBAAAAAQAAAIEAAAABAAAAAQAAAIEAAABBAAAAAQAAAIAAAAAAAAAAAQAAAIEAAACBAAAAAQAAAIEAAACBAAAAQQAAAEEAAACBAAAAQQAAAEEAAAABAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAACBAAAAgAAAAAEAAAABAAAAAQAAAEEAAAABAAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAABAAAAF4AAABdAAAAAAAAAAQAAAIEAAACBAAAAAQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAAABAAAAQQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,0: - ind: 2,0 - tiles: XgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-1: - ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-1: - ind: 1,-1 - tiles: XgAAAF4AAABbAAACWwAAAVsAAAFeAAAAXQAAAAQAAAEEAAABBAAAAgQAAAAEAAAABAAAAAQAAAIAAAAAAAAAAF4AAABeAAAAWwAAA1sAAABbAAADXgAAAF0AAAAAAAAAAAAAAAQAAAEEAAACBAAAAgQAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAxAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAADEAAAAxAAAAMQAAAF4AAABdAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAXQAAAF4AAAAxAAAAMQAAADEAAABeAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABEAAACRAAAA0QAAAJEAAACRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAADRAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAkQAAAFEAAADRAAAAUQAAAJEAAABRAAAA0QAAAFEAAABXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAABYAAANEAAACRAAAA14AAABeAAAAXgAAAEQAAAFEAAADXgAAAF4AAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAAAWAAABRAAAAEQAAABeAAAARAAAA0QAAAFEAAAARAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAEQAAABEAAAAXgAAAEQAAABEAAACRAAAA0QAAANEAAAARAAAAEQAAABEAAABRAAAAUQAAAFEAAAARAAAA0QAAAJEAAADRAAAAUQAAANEAAACRAAAAEQAAAFEAAADRAAAA0QAAAJEAAACRAAAAEQAAANEAAAARAAAAEQAAANEAAAARAAAAkQAAANEAAACRAAAA0QAAANEAAAARAAAA0QAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADRAAAAkQAAAJEAAAARAAAAkQAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA14AAABEAAACRAAAAEQAAAJEAAACRAAAAA== - 0,-2: - ind: 0,-2 - tiles: RAAAA0QAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAAFEAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAABRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAANeAAAARAAAACwAAABEAAACRAAAAF4AAAAWAAABFgAAAV4AAAAWAAAAFgAAABYAAANRAAACUQAAAUQAAABEAAAARAAAA0QAAAIsAAAALAAAACwAAABeAAAAFgAAARYAAAJeAAAAFgAAAhYAAAEWAAACUQAAA1EAAABEAAAARAAAA0QAAAFEAAACDwAAAA8AAAAPAAAAXgAAABYAAAMWAAAAXgAAAEQAAABEAAAARAAAAUQAAANEAAADRAAAAUQAAAFEAAABRAAAAA8AAABEAAABRAAAAF4AAAAWAAACFgAAA0QAAAFEAAADRAAAAkQAAAJEAAADRAAAAEQAAABEAAACXgAAAEQAAABEAAAARAAAAkQAAABEAAABFgAAABYAAABeAAAARAAAAEQAAAFEAAABRAAAAkQAAAFEAAABRAAAA14AAAAWAAADFgAAARYAAAMWAAADXgAAABYAAAEWAAADXgAAABYAAAAWAAABFgAAAxYAAAEWAAACRAAAA0QAAAJeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAAEQAAAEWAAABFgAAARYAAAAWAAAAFgAAABYAAAMWAAADFgAAAxYAAAMWAAAAFgAAARYAAANEAAABRAAAAkQAAAFEAAAAFgAAABYAAAEWAAACFgAAAxYAAAEWAAAAFgAAARYAAAMWAAAAFgAAABYAAAEWAAAARAAAAkQAAAJeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAFgAAAxYAAANeAAAAXgAAABYAAABeAAAAXgAAAEQAAAFEAAACXgAAAEQAAANEAAADRAAAAUQAAAIWAAABXgAAABYAAAIWAAABXgAAAA8AAAAWAAAADwAAAF4AAABEAAABRAAAAF4AAAAWAAABFgAAARYAAAJEAAADFgAAA14AAAAWAAADFgAAA14AAAAPAAAAFgAAAQ8AAABeAAAARAAAA0QAAABeAAAAFgAAAxYAAAIWAAAARAAAAhYAAABeAAAAFgAAAxYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAA== - -1,-2: - ind: -1,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAACRAAAAUQAAAFEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABXgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAA14AAABEAAAARAAAA0QAAANeAAAAUQAAAlEAAABeAAAARAAAAUQAAANEAAACRAAAA0QAAANeAAAARAAAAEQAAAJeAAAARAAAAEQAAABEAAADXgAAAFEAAABRAAADXgAAAFEAAAJRAAACUQAAA1EAAAJRAAAAXgAAAEQAAAJEAAABXgAAAEQAAABEAAADRAAAAF4AAABeAAAAUQAAAF4AAABRAAAAUQAAA1EAAAJRAAAAUQAAAF4AAABEAAAARAAAAV4AAABEAAABRAAAAkQAAAFeAAAAUQAAA1EAAAFRAAADUQAAAVEAAAJRAAADUQAAA1EAAAFeAAAARAAAAEQAAANEAAABRAAAAUQAAAJEAAACXgAAAFEAAANRAAAAUQAAAVEAAANRAAADUQAAAFEAAAJRAAADXgAAAEQAAAFEAAAAXgAAAEQAAAJEAAACRAAAAl4AAABRAAADUQAAAV4AAABRAAACUQAAAV4AAABeAAAAXgAAAF4AAABEAAADRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAUQAAAlEAAANeAAAAUQAAAFEAAAJRAAAAUQAAAFEAAABRAAACRAAAA0QAAAFEAAADRAAAAEQAAABEAAADRAAAAFEAAAFRAAACXgAAAFEAAABRAAAAUQAAAFEAAAFRAAADUQAAAkQAAABEAAADRAAAAkQAAAFEAAAARAAAAUQAAANRAAADXgAAAF4AAABRAAADUQAAAVEAAAJRAAACUQAAAF4AAABEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAUQAAA1EAAANeAAAAXgAAAF4AAABeAAAAUQAAAl4AAABeAAAARAAAAUQAAAExAAAAMQAAADEAAAAxAAAAMQAAAFEAAAJRAAABXgAAAFEAAAFRAAABUQAAAFEAAANRAAADXgAAAEQAAABEAAADMQAAADEAAAAxAAAAMQAAADEAAABRAAAAUQAAAF4AAABRAAADUQAAAFEAAABRAAACUQAAAl4AAABEAAACRAAAAzEAAAAxAAAAMQAAADEAAAAxAAAAUQAAAFEAAAFeAAAAUQAAAVEAAABRAAAAUQAAA1EAAANeAAAARAAAAEQAAAIxAAAAMQAAADEAAAAxAAAAMQAAAA== - -1,-3: - ind: -1,-3 - tiles: AAAAAF0AAAAoAAAARAAAAkQAAABEAAADRAAAASgAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAKAAAAEQAAANEAAADRAAAAUQAAAIoAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAACgAAABEAAABRAAAA0QAAAFEAAADKAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAABEAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAACRAAAAV4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAUQAAAJeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEQAAANEAAADXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAABRAAAAl4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAAEQAAANeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEQAAAJEAAACXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAl4AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABFgAAARYAAAJeAAAARAAAAUQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAIWAAACXgAAAEQAAAFEAAAARAAAAUQAAABEAAABRAAAAUQAAAFEAAADRAAAA0QAAAFEAAADRAAAAjEAAAAxAAAAFgAAAhYAAABEAAACRAAAAUQAAANEAAAARAAAAUQAAANEAAADRAAAAkQAAAJEAAACRAAAAEQAAAAWAAAAFgAAAxYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAABEAAAARAAAAEQAAAJEAAABRAAAAg== - 0,-3: - ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAABBAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABXgAAAF4AAABRAAACUQAAAlEAAAJeAAAABAAAAgQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAABXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAABYAAANeAAAAAAAAAAAAAAAAAAAAXgAAABYAAAMsAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAADXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAF4AAABRAAADXgAAABYAAAEWAAADXgAAAF4AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAABYAAAEWAAADXgAAAF0AAABdAAAAXQAAAF4AAAAWAAACFgAAAV4AAABeAAAAXgAAAF4AAABEAAACXgAAAF4AAABeAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJEAAADXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAABRAAAAl4AAAAWAAAAXgAAAF4AAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAl4AAABeAAAAFgAAACwAAABeAAAARAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAABEAAADXgAAABYAAAAWAAACXgAAAEQAAAJEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -1,-4: - ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAAEQAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEQAAAJEAAACXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAACRAAAA14AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAAkQAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAANEAAACXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAAARAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAoAAAARAAAAEQAAANEAAACRAAAAygAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-2: - ind: 1,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAADoAAAA6AAAAOgAAADoAAAA6AAAARAAAA0QAAAFEAAADXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAA6AAAAOgAAADoAAAA6AAAAOgAAAEQAAANEAAACRAAAA14AAABeAAAAFgAAAF4AAABeAAAAXgAAAF0AAABeAAAAOgAAADoAAAA6AAAAOgAAADoAAABEAAABRAAAAEQAAANeAAAAFgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAABXgAAAEQAAAAWAAABXgAAAEQAAAJEAAABXgAAAEQAAAJRAAAAUQAAAFEAAABEAAAARAAAAEQAAAJEAAAARAAAA14AAABEAAAAFgAAAl4AAABEAAABRAAAAl4AAABEAAAAUQAAAFEAAABRAAAARAAAAEQAAABEAAABRAAAAkQAAABEAAAARAAAABYAAAMWAAAARAAAAEQAAANEAAAARAAAAUQAAAJEAAABRAAAAkQAAANEAAACRAAAAUQAAAJEAAACXgAAABYAAAAWAAADXgAAAEQAAABEAAADXgAAAEQAAAJEAAABRAAAAEQAAABEAAABRAAAAUQAAAJEAAADRAAAAl4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAhYAAAAWAAABFgAAABYAAAMWAAADFgAAAhYAAAJeAAAAXgAAABYAAAIWAAADFgAAABYAAAFEAAACRAAAA0QAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEWAAAAFgAAABYAAAAWAAADRAAAAEQAAAFEAAADWwAAAVsAAAFbAAADWwAAAFsAAABbAAADXgAAAAQAAAEEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAWwAAA1sAAAJbAAABWwAAA14AAAAEAAACBAAAAV4AAABeAAAAWwAAAFsAAANbAAABXgAAAAQAAAFeAAAAWwAAAlsAAABbAAABWwAAA1sAAAFeAAAABAAAAgQAAABeAAAAWwAAAlsAAABbAAABWwAAAV4AAAAEAAACXgAAAF4AAABbAAADWwAAAFsAAAJeAAAAXgAAAAQAAAAAAAAAXgAAAF4AAABbAAACWwAAAFsAAAFeAAAABAAAAAQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAAUAAAAEAAAAAAAAAA== - 2,-2: - ind: 2,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAIAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAAQAAAIEAAACBAAAAgQAAAEEAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAARAAAA14AAABeAAAAXgAAAAQAAAIEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAFgAAAF4AAAAEAAABBAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABeAAAABAAAAAQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAAXgAAAAQAAAAEAAACBAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAF4AAAAEAAABBAAAAgQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAABYAAABeAAAABAAAAgQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAWAAAAXgAAAAQAAAAEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAQQAAAIEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAIEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 2,-3: - ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAEEAAACBAAAAl4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAABAAAAgQAAAEEAAABBAAAAQQAAAEEAAACAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAQAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAABeAAAAXgAAAE4AAABeAAAABAAAAAQAAAEAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAABAAAAgAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAF4AAABeAAAAFgAAAxYAAAMWAAACFgAAAF4AAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAARYAAAFeAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAMWAAABXgAAAAQAAAIAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAXgAAAA== - 1,-3: - ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAABBAAAAgQAAAIEAAACBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAABBAAAAAQAAAIEAAAABAAAAQQAAAEEAAABBAAAAgQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAQQAAAEEAAAABAAAAAQAAAIEAAAABAAAAQQAAAIEAAAABAAAAgQAAAIEAAABBAAAAQQAAAAEAAABBAAAAgQAAAEEAAACBAAAAgUAAAAEAAACBAAAAgQAAAEEAAABBAAAAQQAAAAEAAABBAAAAQQAAAIEAAAABAAAAgQAAAIEAAAABAAAAQQAAAEEAAABBAAAAAQAAAAEAAABCgAAAAoAAAAKAAAACgAAAAoAAAAEAAAABAAAAQQAAAIEAAACBAAAAQQAAAEEAAACBAAAAgQAAAIEAAAABAAAAgQAAAALAAAACwAAAAsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAEEAAACCgAAAAsAAAALAAAAXgAAAF4AAABeAAAAFgAAARYAAAIWAAABFgAAAxYAAAMWAAADFgAAAl4AAAAEAAABBAAAAgQAAAEKAAAABAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABFgAAABYAAAFeAAAAFgAAAxYAAAAWAAADXgAAAEQAAABEAAADRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAA== - -3,-1: - ind: -3,-1 - tiles: BAAAAV4AAABeAAAAXgAAAF4AAABEAAACRAAAA14AAABEAAABRAAAAF4AAABeAAAATgAAAE4AAABeAAAAFgAAA14AAABeAAAARAAAAEQAAABeAAAARAAAA0QAAANeAAAARAAAA0QAAAFeAAAAXgAAAE4AAABOAAAAXgAAABYAAANEAAABXgAAAEQAAABEAAAAXgAAAEQAAANEAAADXgAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAACRAAAA0QAAAJEAAAARAAAA14AAABEAAACRAAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAEQAAAJeAAAARAAAA0QAAAJeAAAARAAAAEQAAABeAAAARAAAAEQAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACXgAAAEQAAABEAAABRAAAAEQAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADRAAAAl4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABEAAABRAAAAl4AAABEAAADRAAAA14AAABEAAAARAAAAEQAAAFEAAACRAAAA0QAAANEAAABRAAAAkQAAAJEAAABRAAAAkQAAABEAAADRAAAA0QAAABeAAAARAAAAkQAAABEAAAARAAAAUQAAAFEAAABRAAAA0QAAAFEAAAAXgAAAEQAAANEAAABXgAAAEQAAAFEAAADXgAAAEQAAANEAAAARAAAAkQAAAFEAAADRAAAA0QAAABEAAACRAAAAl4AAABeAAAAXgAAAF4AAABEAAAARAAAAF4AAABeAAAARAAAAEQAAAJEAAAARAAAAEQAAAFEAAABRAAAAUQAAAJeAAAAXgAAAF4AAABEAAADRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABEAAABRAAAA0QAAAJEAAABXgAAAEQAAABEAAAARAAAAV4AAABeAAAAXgAAAEQAAABEAAABRAAAAl4AAABeAAAARAAAAUQAAABEAAAARAAAAV4AAABEAAADRAAAAUQAAABeAAAAXgAAAF4AAABEAAACRAAAA0QAAANeAAAAXgAAAEQAAABEAAACRAAAAUQAAABeAAAARAAAA0QAAAJEAAABXgAAAF4AAABeAAAARAAAAUQAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAQ== - -3,-2: - ind: -3,-2 - tiles: AAAAAAAAAAAEAAACBAAAAgQAAAFeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAEAAACBAAAAQQAAAAKAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAAABAAAAgQAAAIEAAAACwAAAF4AAABeAAAAXgAAAF4AAABbAAAAWwAAAl4AAABbAAADWwAAA1sAAAJbAAADXgAAAAQAAAEEAAABCgAAAAoAAAAKAAAAXgAAAF4AAABeAAAAWwAAAlsAAAJbAAACXgAAAFsAAAFbAAACWwAAAAQAAAAEAAACBAAAAgoAAAAKAAAACwAAAF4AAABeAAAAXgAAAF4AAABbAAACWwAAAFsAAANbAAACXgAAAF4AAAAEAAABBAAAAAQAAAALAAAACwAAAAsAAABeAAAAXgAAAF4AAABbAAACWwAAA1sAAANeAAAAXgAAAF4AAABeAAAABAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAE4AAABeAAAAXgAAABYAAAIWAAADFgAAAl4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAFgAAABYAAABeAAAAXgAAAF4AAAAxAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAACXgAAAF4AAABeAAAAMQAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAFgAAAV4AAABeAAAATgAAAF4AAABeAAAARAAAA0QAAAFEAAAARAAAAEQAAAFeAAAAXgAAAE4AAABOAAAAXgAAABYAAAIEAAABXgAAAE4AAABeAAAAXgAAAEQAAAJEAAACXgAAAEQAAAJEAAABXgAAAF4AAABOAAAATgAAAF4AAAAWAAABBAAAAV4AAABOAAAAXgAAAF4AAABEAAADRAAAAl4AAABEAAACRAAAA14AAABeAAAATgAAAE4AAABeAAAAFgAAAA== - -2,-2: - ind: -2,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAAA8AAAAXgAAAE4AAABeAAAAXgAAABYAAANeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAACFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAPAAAADwAAAA8AAAAXgAAAFEAAAJRAAAAXgAAAF4AAABeAAAAFgAAABYAAANeAAAAFgAAARYAAAAWAAACXgAAADwAAAA8AAAAPAAAAF4AAABRAAACUQAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAANRAAACUQAAAV4AAABeAAAAPAAAAF4AAABeAAAAXgAAAFEAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAADUQAAAFEAAAJeAAAAUQAAAFEAAANRAAACUQAAAlEAAANRAAACUQAAAV4AAABeAAAAXgAAAF4AAABeAAAAUQAAAl4AAABeAAAAXgAAAFEAAAFRAAACUQAAAFEAAABRAAABUQAAAFEAAAExAAAAMQAAAF4AAABeAAAAXgAAAFEAAABRAAACUQAAAlEAAAFRAAAAXgAAAF4AAABRAAAAXgAAAF4AAABRAAACMQAAADEAAABeAAAAXgAAAF4AAABRAAABUQAAA1EAAABRAAABUQAAAV4AAABRAAAAUQAAA1EAAAFeAAAAUQAAAjEAAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAVEAAAFRAAACXgAAAFEAAAAxAAAAXgAAAF4AAABbAAAAWwAAAlsAAABbAAACWwAAAlsAAANbAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAIWAAADWwAAAlsAAAJbAAAAWwAAAlsAAAJbAAACWwAAAl4AAAAWAAADFgAAAxYAAAFeAAAAUQAAABYAAAAWAAAAFgAAAlsAAABbAAACWwAAAlsAAAFbAAADWwAAAVsAAAFeAAAAFgAAARYAAAAWAAAAXgAAAFEAAAMWAAAAFgAAABYAAABbAAACWwAAAFsAAAFbAAADWwAAA1sAAANbAAACXgAAABYAAAIWAAAAFgAAAhYAAABRAAADFgAAAxYAAAMWAAAAFgAAARYAAAMWAAAAWwAAAVsAAAJbAAAAWwAAAl4AAAAWAAABFgAAABYAAAJeAAAAUQAAAw== - -2,-3: - ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAMMAAADDAAAAF4AAAAMAAAADAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAMAAAADAAAAQwAAAEMAAACDAAAAgwAAAJeAAAAMQAAADEAAAAxAAAAFgAAABYAAAMWAAABXgAAAAAAAAAAAAAADAAAAAwAAAAMAAACXgAAAF4AAABeAAAAXgAAADEAAAAxAAAAMQAAAF4AAAAWAAAAFgAAAV4AAAAAAAAAAAAAAFsAAAFbAAADWwAAAl4AAAAWAAACFgAAAl4AAAAxAAAAMQAAADEAAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAABbAAACWwAAAlsAAAFeAAAAMQAAADEAAAAxAAAAMQAAADEAAAAxAAAAFgAAAhYAAAEWAAAAFgAAAxYAAAEWAAABWwAAAFsAAAFbAAADXgAAAFsAAAJbAAADXgAAAFsAAANbAAACWwAAABYAAABeAAAAMQAAADEAAAAWAAACFgAAAl4AAABbAAADXgAAAF4AAABeAAAAPAAAAF4AAABbAAACXgAAAF4AAAAWAAACXgAAADEAAAAxAAAAMQAAADEAAABeAAAAXgAAAF4AAABeAAAAXgAAADwAAABeAAAAXgAAAF4AAAAWAAADFgAAA14AAAAxAAAAMQAAABYAAAEWAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA8AAAAXgAAAE4AAABeAAAAFgAAARYAAABeAAAAFgAAARYAAAEWAAABFgAAAg== - -3,2: - ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEEAAACBAAAAgQAAABeAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAgQAAAEEAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAgQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAQAAAAEAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -3,1: - ind: -3,1 - tiles: AAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAQAAAAEAAACBAAAAF4AAAAWAAACPAAAADwAAAA8AAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAEAAAABAAAAgQAAABeAAAAFgAAAjwAAAA8AAAAPAAAADwAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAABAAAAgQAAAAEAAACXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAV4AAAA6AAAAOgAAADoAAAA6AAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAABeAAAAOgAAADoAAAA6AAAAOgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAAEAAAAXgAAADoAAAA6AAAAOgAAADoAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAABBAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAABAAAAQQAAAIEAAACBAAAAQQAAAAEAAACBAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAEEAAAABAAAAgQAAAAEAAABBAAAAQQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABBAAAAgQAAAAEAAABBAAAAQQAAAIEAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAQQAAAAEAAABBAAAAQQAAAAEAAAABAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAEEAAACBAAAAAQAAAIEAAAABAAAAQQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAACBAAAAAQAAAEEAAABBAAAAAQAAAFeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAgQAAAAEAAABBAAAAQQAAAAEAAABXgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAAQAAAIEAAABBAAAAl4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgQAAAAEAAAABAAAAAQAAAFeAAAATgAAAA== - -3,0: - ind: -3,0 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAARAAAAl4AAABEAAAARAAAAkQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAEQAAAJEAAAARAAAAkQAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABEAAABXgAAAEQAAAFEAAADRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAARAAAAl4AAABEAAACRAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAEQAAABeAAAARAAAA0QAAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAhYAAAAWAAAAFgAAAhYAAAAWAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAAAFgAAAxYAAAMWAAACFgAAAhYAAAMWAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAxYAAAIWAAADFgAAAhYAAAMWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA8AAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAABAAAAAQAAAEEAAACXgAAABYAAAM8AAAAPAAAADwAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAQAAAEEAAABBAAAAF4AAAAWAAACPAAAADwAAAA8AAAAXgAAAA== - -3,-3: - ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABAAAAAAQAAAAEAAAABAAAAgQAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAAAlAAAAJQAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAACUAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFEAAABRAAADUQAAAUQAAAJEAAABXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAl4AAABRAAABUQAAA1EAAAJEAAADRAAAA14AAABRAAADUQAAAl4AAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAABeAAAAUQAAAlEAAAFRAAABRAAAA0QAAAJRAAADUQAAAlEAAAFRAAABAAAAAAAAAAAAAAAABAAAAAQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -4,0: - ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAAA6AAAAOgAAADoAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAOgAAADoAAAA6AAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAAA6AAAAOgAAADoAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAOgAAADoAAAA6AAAAXgAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAA== - -4,-1: - ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAAABAAAAgQAAAAEAAABBAAAAAQAAAIEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAF4AAAAWAAAAFgAAAxYAAAFeAAAARAAAAkQAAAFEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAJeAAAAFgAAABYAAAIWAAABFgAAAUQAAAFEAAADRAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAABXgAAABYAAAMWAAACFgAAAV4AAABEAAACRAAAA0QAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAl4AAAAWAAABFgAAARYAAANeAAAAXgAAAEQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAAQAAAFeAAAAFgAAABYAAAAWAAADXgAAAEQAAABEAAACRAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAABXgAAABYAAAMWAAABFgAAAV4AAABEAAAARAAAAkQAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAl4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAJeAAAABAAAAAQAAAIFAAAAXgAAABYAAAMWAAACFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAQQAAAEEAAACXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAl4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAA== - -4,-2: - ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAQAAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAABXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAV4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABdAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAEEAAACBAAAAF4AAABeAAAAXgAAAAAAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAEAAAABAAAAQQAAAIEAAACBAAAAAQAAAFeAAAAXgAAAF4AAAAAAAAAXgAAAF0AAABeAAAAAAAAAAAAAAAEAAACBAAAAgQAAAAEAAAABAAAAQQAAAEEAAACXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEEAAABBAAAAAQAAAIEAAABBAAAAQQAAAEEAAACXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAQAAAIEAAACBAAAAAQAAAIEAAAABAAAAQQAAAAEAAABBAAAAA== - -5,-2: - ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF0AAABeAAAAAAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABdAAAAXgAAAAAAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - 3,-3: - ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF0AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,-2: - ind: 3,-2 - tiles: AAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,1: - ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 1089: -11,-6 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 16: -21,-9 - 17: -21,-8 - 18: -21,-7 - 19: -23,-7 - 28: -21,-4 - 30: -23,-4 - 56: 5,22 - 57: 6,22 - 58: 7,22 - 59: 8,22 - 184: 20,14 - 190: 18,21 - 289: 13,55 - 290: 13,49 - 291: 7,49 - 292: 7,55 - 293: 11,43 - 294: 9,43 - 353: 28,-10 - 354: 30,-10 - 464: 11,-28 - 465: 12,-28 - 467: 12,-26 - 468: 14,-26 - 469: 5,-24 - 470: 19,-27 - 724: -30,22 - 725: -31,22 - 773: -17,11 - 774: -17,9 - 792: -37,-9 - 793: -36,-9 - 825: -35,5 - 826: -34,5 - 827: -33,5 - 828: -32,5 - 837: -35,1 - 851: -31,-6 - 852: -31,-10 - 1011: -54,-11 - 1012: -55,-10 - 1013: -54,-9 - 1014: -53,-10 - 1050: 14,23 - 1051: 14,25 - 1052: 14,26 - 1053: 14,27 - 1054: 18,23 - 1055: 18,24 - 1087: -10,-6 - 1088: -10,-10 - 1161: 31,-29 - 1162: 32,-29 - 1163: 34,-29 - 1164: 35,-29 - - node: - color: '#FFFFFFFF' - id: BotLeftGreyscale - decals: - 1017: -53,-9 - 1018: -55,-11 - - node: - color: '#FFFFFFFF' - id: BotRightGreyscale - decals: - 1015: -55,-9 - 1016: -53,-11 - - node: - color: '#D381C996' - id: BrickTileSteelLineN - decals: - 1156: 31,-29 - 1157: 32,-29 - 1158: 33,-29 - 1159: 34,-29 - 1160: 35,-29 - - node: - color: '#D381C996' - id: BrickTileSteelLineS - decals: - 1151: 31,-25 - 1152: 32,-25 - 1153: 33,-25 - 1154: 34,-25 - 1155: 35,-25 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Bushb3 - decals: - 998: 14.0002365,-41.964172 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Bushc3 - decals: - 1005: 4.0288744,-43.00805 - - node: - color: '#FFFFFFFF' - id: Bushf2 - decals: - 51: 6.409272,21.00127 - - node: - color: '#FFFFFFFF' - id: Bushg2 - decals: - 27: -8.467243,-8.991291 - - node: - color: '#FFFFFFFF' - id: Bushg3 - decals: - 26: -8.904743,-10.131916 - - node: - color: '#FFFFFFFF' - id: Bushg4 - decals: - 25: -7.107868,-9.913166 - 371: -9.013572,-49.089592 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 24: -7.920368,-9.100666 - 370: -8.919771,-45.902092 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 369: -8.986252,-47.542717 - 376: -13.982322,-47.902092 - - node: - color: '#FFFFFFFF' - id: Bushi4 - decals: - 23: -8.592243,-9.991291 - 52: 7.440522,20.93877 - - node: - color: '#FFFFFFFF' - id: Bushk1 - decals: - 50: 7.940522,21.016895 - - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 53: 7.034272,20.954395 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 1092: -35,-4 - 1093: -35,-3 - - node: - color: '#DE3A3A96' - id: CheckerNESW - decals: - 1090: -35,-1 - 1091: -35,-2 - - node: - color: '#EFB34196' - id: CheckerNWSE - decals: - 866: -49,-10 - 867: -50,-10 - 868: -51,-10 - 869: -51,-9 - 870: -50,-9 - 871: -49,-9 - 872: -49,-8 - 873: -50,-8 - 874: -51,-8 - - node: - color: '#52B4E996' - id: CheckerNWSE - decals: - 491: -25,-27 - 492: -26,-27 - 493: -27,-27 - 494: -27,-26 - 495: -26,-26 - 496: -25,-26 - 508: -19,-23 - 509: -20,-23 - 510: -21,-23 - 511: -21,-22 - 512: -20,-22 - 513: -19,-22 - - node: - color: '#D381C996' - id: CheckerNWSE - decals: - 400: 16,-22 - 401: 16,-21 - 402: 17,-21 - 403: 17,-22 - 404: 18,-22 - 405: 18,-21 - 1136: 31,-28 - 1137: 31,-27 - 1138: 31,-26 - 1139: 32,-26 - 1140: 32,-27 - 1141: 32,-28 - 1142: 33,-28 - 1143: 33,-27 - 1144: 33,-26 - 1145: 34,-26 - 1146: 34,-27 - 1147: 34,-28 - 1148: 35,-28 - 1149: 35,-27 - 1150: 35,-26 - - node: - color: '#D4D4D496' - id: CheckerNWSE - decals: - 1094: -35,-4 - 1095: -35,-3 - 1096: -35,-2 - 1097: -35,-1 - - node: - color: '#DE3A3A96' - id: CheckerNWSE - decals: - 691: -34,12 - 692: -35,12 - 693: -34,11 - 694: -34,10 - 695: -35,10 - 696: -35,11 - 697: -36,10 - 698: -36,11 - 699: -36,12 - 700: -37,10 - 701: -37,11 - 702: -37,12 - 703: -38,11 - 704: -38,10 - 705: -39,10 - 706: -39,11 - 707: -39,12 - 708: -38,12 - 709: -40,12 - 710: -40,11 - 711: -40,10 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 29: -22,-4 - 60: 9,22 - 185: 20,15 - 191: 18,20 - 297: 5,47 - 298: 6,47 - 299: 7,47 - 355: 29,-10 - 356: 31,-10 - 466: 12,-29 - 718: -27,13 - 719: -27,14 - 768: -20,7 - 769: -19,7 - 770: -18,12 - 771: -17,12 - 772: -17,10 - 786: -35,-34 - 787: -34,-34 - 829: -35,4 - 830: -34,4 - 831: -33,4 - 832: -32,4 - 838: -34,-6 - 853: -40,-4 - 854: -40,-3 - 855: -40,-2 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 949: 7,-33 - 950: 8,-32 - 957: 5,-39 - 958: 5,-38 - 959: 12,-41 - 976: 24,12 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 1061: 20,27 - 1062: 19,26 - 1063: 17,26 - 1064: 16,24 - 1065: 16,30 - 1066: 17,32 - 1067: 16,35 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 952: 8,-34 - 953: 8,-36 - 954: 13,-39 - 955: 14,-38 - 956: 4,-38 - 960: -34,-6 - 961: -34,-8 - 962: -33,-7 - 963: -41,-9 - 964: -41,-8 - 965: -39,-9 - 966: -34,-4 - 967: -31,-3 - 968: -25,-5 - 969: -26,-4 - 970: -23,-12 - 971: 13,-4 - 972: 19,15 - 973: 18,14 - 974: 24,14 - 977: 24,13 - 978: 22,14 - 979: 23,15 - 980: 17,14 - 981: 16,21 - 982: 15,21 - 983: 16,19 - 984: 16,23 - 985: 17,24 - 986: -21,9 - 987: -23,8 - 988: -25,7 - 989: -23,13 - 990: 0,-19 - 991: -6,-28 - 992: -6,-33 - 993: -11,-38 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - decals: - 951: 8,-33 - 975: 24,15 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 47: 6.065522,21.048145 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 48: 7.049897,20.985645 - 368: -8.939377,-46.636467 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 49: 7.518647,21.016895 - 367: -8.955002,-48.308342 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 375: -13.997947,-48.917717 - - node: - color: '#EFB34196' - id: FullTileOverlayGreyscale - decals: - 875: -50,-11 - 876: -52,-13 - 877: -47,-13 - 897: -41,-10 - 898: -44,-13 - 914: -47,-10 - 915: -47,-9 - 916: -47,-8 - 917: -47,-7 - - node: - color: '#D381C996' - id: FullTileOverlayGreyscale - decals: - 406: 15,-22 - 407: 15,-21 - 408: 19,-22 - 409: 19,-21 - 442: 30,-26 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 125: -9,34 - 126: -6,35 - 127: 0,35 - 128: 3,34 - 152: -7,29 - 153: 1,29 - - node: - color: '#A4610696' - id: FullTileOverlayGreyscale - decals: - 315: 26,-8 - 316: 30,-7 - 1048: 16,33 - 1049: 15,28 - - node: - color: '#FFDB9895' - id: FullTileOverlayGreyscale - decals: - 590: -11,-18 - 591: -11,-17 - 592: -12,-17 - 593: -11,-16 - 594: -10,-17 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 497: -27,-25 - 514: -20,-24 - 535: -12,-24 - 536: -13,-24 - 537: -11,-23 - 538: -11,-22 - 539: -11,-21 - 540: -12,-22 - 541: -10,-22 - 548: -8,-23 - 549: -8,-22 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 340: 30,1 - 489: -5,-26 - 490: -3,-31 - 689: -33,17 - 690: -35,13 - 750: -27,28 - 751: -31,28 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassa4 - decals: - 994: 14.0471115,-39.042297 - 997: 13.9846115,-43.011047 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassa5 - decals: - 996: 3.9064865,-36.901672 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassb1 - decals: - 995: 3.9377365,-39.073547 - 999: 13.4377365,-40.948547 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassb2 - decals: - 1000: 14.1408615,-40.964172 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassb3 - decals: - 1001: 13.1408615,-43.026672 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassc2 - decals: - 1004: 13.63825,-42.897484 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassc3 - decals: - 1003: 13.88825,-41.03811 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassc4 - decals: - 1002: 14.089525,-39.057083 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 20: -8.810993,-9.335041 - - node: - color: '#FFFFFFFF' - id: Grassd2 - decals: - 46: 7.909272,21.016895 - 366: -8.91927,-49.011467 - 372: -13.966697,-45.902092 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 21: -7.826618,-9.960041 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 44: 6.049897,21.0706 - 45: 6.784272,21.079395 - 364: -8.936016,-46.30113 - 374: -13.997947,-48.558342 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 22: -7.045368,-10.022541 - 365: -9.029766,-47.11363 - 373: -13.997947,-47.558342 - - node: - color: '#BAFF79B4' - id: HalfTileOverlayGreyscale - decals: - 777: -40,-34 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale - decals: - 764: -19,11 - 765: -20,11 - 819: -30,5 - 821: -32,3 - 822: -33,3 - 823: -34,3 - 824: -35,3 - 845: -31,-7 - 846: -32,-7 - 847: -33,-7 - 899: -39,-11 - 900: -40,-11 - 901: -41,-11 - 902: -42,-11 - 903: -43,-11 - 919: -45,-6 - 920: -44,-6 - 921: -43,-6 - 922: -42,-6 - 923: -39,-6 - 924: -40,-6 - 925: -41,-6 - 926: -43,-2 - 927: -44,-2 - 928: -45,-2 - 929: -46,-2 - 1028: -48,-12 - 1029: -49,-12 - 1030: -50,-12 - 1031: -51,-12 - 1068: 24,1 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 434: 6,-15 - 435: 5,-15 - 436: 4,-15 - 437: 3,-15 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 179: 17,15 - 197: 16,21 - 198: 15,21 - 208: 19,19 - 209: 18,19 - 214: 19,21 - 310: 30,-8 - 311: 29,-8 - 312: 28,-8 - 1041: 16,35 - 1042: 16,32 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - decals: - 500: -26,-23 - 501: -25,-23 - 502: -24,-23 - 515: -23,-25 - 516: -22,-25 - 517: -21,-25 - 518: -20,-25 - 519: -19,-25 - 520: -18,-25 - 529: -14,-25 - 530: -13,-25 - 531: -12,-25 - 532: -11,-25 - 533: -10,-25 - 534: -9,-25 - 568: -16,-16 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale - decals: - 6: -22,-10 - 7: -23,-10 - 230: 10,46 - 241: 6,46 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 337: 28,4 - 338: 29,4 - 339: 30,4 - 477: -3,-25 - 681: -35,17 - 738: -27,32 - 739: -28,32 - 740: -29,32 - 741: -30,32 - 742: -31,32 - 743: -32,32 - - node: - color: '#FFDB9895' - id: HalfTileOverlayGreyscale - decals: - 578: -10,-15 - 579: -11,-15 - 580: -12,-15 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - decals: - 105: -3,20 - 106: -2,20 - 107: -4,20 - 119: -2,33 - 120: -1,33 - 133: -4,35 - 134: -3,35 - 135: -2,35 - 136: 1,34 - 137: -7,34 - 1010: 25,1 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale180 - decals: - 4: -23,-7 - 5: -22,-7 - 231: 10,44 - 237: 6,44 - 244: 10,48 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 146: 3,32 - 147: 2,32 - 148: 1,32 - 149: -7,32 - 150: -8,32 - 151: -9,32 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 332: 30,2 - 333: 29,2 - 334: 28,2 - 480: -3,-30 - 682: -35,14 - 744: -32,29 - 745: -31,29 - 746: -30,29 - 747: -29,29 - 748: -28,29 - 749: -27,29 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 438: 6,-19 - 439: 5,-19 - 440: 4,-19 - 441: 3,-19 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 - decals: - 505: -24,-24 - 506: -25,-24 - 507: -26,-24 - 550: -9,-28 - 551: -10,-28 - 552: -11,-28 - 553: -12,-28 - 554: -13,-28 - - node: - color: '#FFDB9895' - id: HalfTileOverlayGreyscale180 - decals: - 587: -10,-19 - 588: -11,-19 - 589: -12,-19 - - node: - color: '#BAFF79B4' - id: HalfTileOverlayGreyscale180 - decals: - 782: -40,-36 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 760: -19,8 - 761: -20,8 - 803: -35,1 - 804: -34,1 - 805: -33,1 - 806: -32,1 - 807: -31,1 - 808: -30,1 - 809: -29,1 - 848: -31,-9 - 849: -32,-9 - 850: -33,-9 - 890: -44,-9 - 891: -43,-9 - 892: -42,-9 - 893: -41,-9 - 894: -40,-9 - 895: -39,-9 - 904: -39,-19 - 905: -40,-19 - 906: -41,-19 - 907: -42,-19 - 908: -43,-19 - 1022: -53,-14 - 1023: -55,-14 - 1024: -51,-14 - 1025: -50,-14 - 1026: -49,-14 - 1027: -48,-14 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 202: 15,17 - 203: 16,17 - 204: 17,17 - 205: 18,17 - 206: 19,17 - 219: 17,13 - 307: 28,-10 - 308: 29,-10 - 309: 30,-10 - 1040: 16,29 - 1043: 16,34 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 199: 14,20 - 200: 14,19 - 201: 14,18 - 215: 14,25 - 216: 14,26 - 217: 14,27 - 218: 14,23 - 314: 27,-9 - 1044: 15,30 - 1045: 15,31 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 815: -31,5 - 816: -31,4 - 844: -34,-8 - 880: -46,-14 - 881: -46,-13 - 882: -46,-12 - 883: -46,-11 - 909: -46,-10 - 910: -46,-9 - 911: -46,-8 - 912: -46,-7 - 913: -46,-6 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale270 - decals: - 9: -21,-9 - 10: -21,-8 - 226: 13,45 - 229: 9,45 - 243: 5,45 - 249: 8,51 - 250: 8,52 - 251: 8,53 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 110: -5,32 - 111: -5,33 - 115: -3,32 - 116: -3,33 - 122: -1,32 - 142: -6,28 - 143: -6,29 - 144: -6,30 - 145: -6,31 - - node: - color: '#FFDB9895' - id: HalfTileOverlayGreyscale270 - decals: - 581: -13,-18 - 582: -13,-17 - 583: -13,-16 - - node: - color: '#BAFF79B4' - id: HalfTileOverlayGreyscale270 - decals: - 775: -41,-35 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 336: 27,3 - 481: -4,-29 - 482: -4,-28 - 483: -4,-27 - 484: -4,-26 - 645: -30,13 - 646: -30,15 - 647: -30,17 - 648: -30,19 - 655: -28,16 - 656: -28,19 - 673: -32,11 - 675: -32,18 - 676: -32,19 - 677: -32,20 - 685: -36,15 - 686: -36,16 - 712: -32,22 - 714: -32,24 - 730: -32,26 - 731: -32,27 - 732: -28,26 - 733: -28,27 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 383: 8,-25 - 412: 20,-22 - 413: 20,-21 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 542: -13,-23 - 543: -13,-22 - 544: -13,-21 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 545: -9,-23 - 546: -9,-22 - 547: -9,-21 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 388: 9,-26 - 410: 22,-21 - 443: 29,-26 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 762: -18,9 - 763: -18,10 - 811: -29,2 - 812: -29,3 - 813: -29,4 - 814: -29,5 - 843: -30,-8 - 884: -45,-14 - 885: -45,-13 - 886: -45,-12 - 887: -45,-11 - 888: -45,-10 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 207: 20,18 - 211: 17,20 - 212: 20,20 - 313: 31,-9 - 1046: 17,30 - 1047: 17,31 - 1056: 20,26 - 1057: 20,25 - 1058: 20,27 - - node: - color: '#FFDB9895' - id: HalfTileOverlayGreyscale90 - decals: - 584: -9,-18 - 585: -9,-17 - 586: -9,-16 - - node: - color: '#BAFF79B4' - id: HalfTileOverlayGreyscale90 - decals: - 781: -39,-35 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 335: 31,3 - 485: -2,-29 - 486: -2,-28 - 487: -2,-27 - 488: -2,-26 - 687: -34,15 - 688: -34,16 - 713: -29,22 - 715: -26,22 - 716: -26,23 - 717: -26,24 - 734: -26,26 - 735: -26,27 - 736: -30,26 - 737: -30,27 - - node: - color: '#D4D4D428' - id: HalfTileOverlayGreyscale90 - decals: - 14: -24,-9 - 15: -24,-8 - 227: 15,45 - 228: 11,45 - 239: 7,45 - 252: 12,51 - 253: 12,52 - 254: 12,53 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 138: 0,28 - 139: 0,29 - 140: 0,30 - 141: 0,31 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 186: 22,15 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 54: 9,21 - 833: -35,3 - 834: -34,3 - 835: -33,3 - 836: -32,3 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 55: 5,21 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 83: -9,22 - 84: -9,23 - 85: -9,24 - 86: -9,25 - 87: -9,26 - 88: -9,27 - 89: -9,28 - 90: -9,29 - 91: -9,30 - 92: -10,20 - 93: -11,20 - 94: -12,20 - 95: -13,20 - 96: -14,20 - 97: -15,20 - 98: -16,20 - 108: -1,20 - 114: -4,32 - 117: -3,31 - 118: -5,31 - 123: -1,31 - 124: 0,33 - 154: 2,22 - 155: 2,23 - 156: 2,24 - 157: 2,25 - 158: 2,26 - 159: 2,27 - 160: 2,28 - 161: 2,29 - 162: 2,30 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 631: -24,10 - 632: -24,11 - 633: -24,12 - 634: -24,13 - 635: -24,14 - 636: -24,15 - 637: -24,16 - 638: -24,17 - 639: -24,18 - 640: -24,19 - 641: -24,20 - 642: -23,20 - 643: -22,20 - 644: -21,20 - 654: -30,11 - 657: -27,20 - 658: -27,17 - 674: -32,17 - 754: -26,10 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 176: 14,15 - 177: 15,15 - 178: 16,15 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 382: 8,-24 - 417: 14,-28 - 943: 8,-34 - 944: 8,-35 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 766: -21,10 - 818: -29,5 - 820: -31,3 - 932: -46,-4 - 933: -46,-3 - - node: - color: '#BAFF79B4' - id: QuarterTileOverlayGreyscale - decals: - 776: -41,-34 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale - decals: - 8: -21,-10 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 521: -17,-25 - 522: -17,-24 - 523: -17,-23 - 524: -17,-22 - 561: -16,-28 - 562: -19,-28 - 563: -17,-20 - 564: -17,-19 - 565: -17,-18 - 566: -17,-17 - 567: -17,-16 - 597: -7,-16 - 598: -7,-17 - 599: -7,-18 - 600: -7,-19 - 601: -7,-20 - 620: -17,-12 - 621: -15,-12 - 622: -13,-12 - 623: -11,-12 - 624: -9,-12 - 625: -7,-12 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 615: -8,-12 - 616: -10,-12 - 617: -14,-12 - 618: -16,-12 - 619: -18,-12 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 182: 12,14 - 183: 12,13 - 223: 18,13 - 224: 19,13 - 225: 20,13 - 1060: 20,28 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 112: -5,33 - 113: -4,32 - - node: - color: '#BAFF79B4' - id: QuarterTileOverlayGreyscale180 - decals: - 780: -39,-36 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 649: -31,18 - 650: -31,20 - 651: -31,16 - 652: -31,14 - 653: -31,12 - 663: -26,16 - 664: -26,19 - 665: -29,18 - 666: -29,15 - 667: -29,13 - 752: -27,11 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale180 - decals: - 12: -24,-7 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 389: 9,-29 - 390: 9,-28 - 391: 9,-27 - 394: 9,-22 - 395: 10,-22 - 396: 11,-22 - 397: 12,-22 - 398: 13,-22 - 399: 14,-22 - 414: 15,-29 - 423: 1,-14 - 424: 2,-13 - 425: 3,-13 - 426: 4,-13 - 427: 5,-13 - 428: 7,-13 - 429: 1,-23 - 430: 1,-24 - 431: 1,-25 - 445: 29,-25 - 626: 1,-13 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 557: -15,-29 - 558: -18,-29 - 614: -21,-13 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 889: -45,-9 - 938: -33,-4 - 939: -32,-4 - 940: -31,-4 - 941: -30,-4 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 121: -1,33 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale270 - decals: - 11: -21,-7 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 377: 4,-22 - 378: 5,-22 - 379: 6,-22 - 380: 7,-22 - 381: 8,-22 - 384: 8,-29 - 385: 8,-28 - 386: 8,-27 - 387: 8,-26 - 416: 14,-29 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 - decals: - 555: -16,-29 - 556: -19,-29 - 595: -7,-13 - 596: -7,-14 - 602: -7,-24 - 603: -7,-25 - 604: -7,-26 - 605: -7,-27 - 606: -7,-28 - 607: -7,-29 - 608: -8,-13 - 609: -9,-13 - 610: -10,-13 - 611: -11,-13 - 612: -13,-13 - 613: -19,-13 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 767: -21,9 - 896: -38,-9 - - node: - color: '#BAFF79B4' - id: QuarterTileOverlayGreyscale270 - decals: - 779: -41,-36 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 220: 16,13 - 221: 15,13 - 222: 14,13 - 317: 30,-6 - 318: 29,-6 - 319: 28,-6 - 320: 27,-6 - 321: 24,-8 - 322: 24,-6 - 323: 24,-4 - 324: 22,-4 - 325: 20,-4 - 326: 18,-4 - 327: 16,-4 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 351: 24,-2 - 352: 24,0 - 661: -27,16 - 662: -27,19 - 672: -32,10 - 678: -32,15 - 753: -26,11 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 172: 12,20 - 173: 12,18 - 174: 12,17 - 175: 12,15 - 180: 18,15 - 181: 19,15 - 210: 17,19 - 1059: 20,24 - - node: - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale90 - decals: - 13: -24,-10 - - node: - color: '#BAFF79B4' - id: QuarterTileOverlayGreyscale90 - decals: - 778: -39,-34 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 - decals: - 341: 27,0 - 342: 28,0 - 343: 29,0 - 344: 30,0 - 345: 23,-3 - 346: 21,-3 - 347: 19,-3 - 348: 17,-3 - 349: 15,-3 - 350: 25,-1 - 659: -26,20 - 660: -26,17 - 668: -29,12 - 669: -29,14 - 670: -29,17 - 671: -29,20 - 755: -27,10 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 392: 9,-25 - 393: 9,-24 - 411: 22,-22 - 415: 15,-28 - 418: 1,-20 - 419: 1,-19 - 420: 1,-18 - 421: 1,-17 - 422: 1,-16 - 432: 1,-30 - 433: 1,-29 - 444: 29,-27 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 74: 3,22 - 75: 3,23 - 76: 3,24 - 77: 3,25 - 78: 3,26 - 79: 3,27 - 80: 3,28 - 81: 3,29 - 82: 3,30 - 99: 5,20 - 100: 6,20 - 101: 7,20 - 102: 8,20 - 103: 9,20 - 104: 10,20 - 109: -5,20 - 163: -8,22 - 164: -8,23 - 165: -8,24 - 166: -8,25 - 167: -8,26 - 168: -8,27 - 169: -8,28 - 170: -8,29 - 171: -8,30 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 810: -29,1 - 817: -31,5 - 918: -46,-6 - 930: -43,-3 - 931: -43,-4 - 934: -33,-1 - 935: -32,-1 - 936: -31,-1 - 937: -30,-1 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 525: -15,-22 - 526: -15,-23 - 527: -15,-24 - 528: -15,-25 - 559: -15,-28 - 560: -18,-28 - 569: -15,-16 - 570: -15,-17 - 571: -15,-18 - 572: -15,-19 - 573: -15,-20 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign1 - decals: - 1098: -6,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign2 - decals: - 1099: -5,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign3 - decals: - 1100: -4,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign4 - decals: - 1101: -3,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign5 - decals: - 1102: -2,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign6 - decals: - 1103: -1,-13 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign7 - decals: - 1104: 0,-13 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 942: 8,-33 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale - decals: - 232: 9,46 - 242: 5,46 - 256: 8,54 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale - decals: - 131: -8,34 - 132: -5,35 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 0: -23,-8 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 756: -21,11 - 840: -34,-7 - - node: - color: '#FFDB9895' - id: ThreeQuarterTileOverlayGreyscale - decals: - 575: -13,-15 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 499: -27,-23 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 329: 27,4 - 475: -4,-25 - 680: -36,17 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 196: 14,21 - 303: 27,-8 - 1033: 15,32 - 1039: 15,35 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 759: -18,8 - 842: -30,-9 - 879: -45,-15 - - node: - color: '#FFDB9895' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 576: -9,-19 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 504: -23,-24 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 331: 31,2 - 479: -2,-30 - 683: -34,14 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 193: 20,17 - 305: 31,-10 - 1032: 17,29 - 1038: 17,34 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1: -22,-9 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 234: 11,44 - 238: 7,44 - 246: 11,48 - 247: 12,50 - - node: - color: '#FFDB9895' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 574: -13,-19 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 3: -23,-9 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 498: -27,-24 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 758: -21,8 - 839: -34,-9 - 878: -46,-15 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 328: 27,2 - 478: -4,-30 - 684: -36,14 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 235: 9,44 - 236: 5,44 - 245: 9,48 - 248: 8,50 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 192: 14,17 - 306: 27,-10 - 1035: 15,29 - 1036: 15,34 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 233: 11,46 - 240: 7,46 - 255: 12,54 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2: -22,-8 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 129: 2,34 - 130: -1,35 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 503: -23,-23 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 330: 31,4 - 476: -2,-25 - 679: -34,17 - - node: - color: '#FFDB9895' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 577: -9,-15 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 757: -18,11 - 841: -30,-7 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 194: 20,19 - 195: 17,21 - 213: 20,21 - 304: 31,-8 - 1034: 17,32 - 1037: 17,35 - - node: - color: '#FFFFFFFF' - id: WarnCorner - decals: - 264: 9,44 - 269: 5,44 - 788: -35,-35 - 794: -37,-10 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCorner - decals: - 861: -39,-4 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnCorner - decals: - 265: 11,46 - 268: 7,46 - 791: -34,-34 - 797: -36,-8 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCorner - decals: - 447: 19,-24 - 858: -41,-2 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 860: -39,-2 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 266: 9,46 - 267: 5,46 - 790: -35,-34 - 796: -37,-8 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 448: 19,-26 - 857: -41,-4 - - node: - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 33: -21,-4 - 263: 11,44 - 270: 7,44 - 789: -34,-35 - 795: -36,-10 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 1083: 21,5 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 1080: 25,1 - 1082: 23,5 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 1086: 23,3 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 1085: 25,3 - - node: - color: '#FFFFFFFF' - id: WarnEnd - decals: - 42: 7,15 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnEnd - decals: - 43: 7,16 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 1072: 23,7 - 1073: 23,8 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 1076: 21,7 - 1077: 22,7 - 1078: 23,7 - 1084: 24,3 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 1074: 21,7 - 1075: 21,8 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 1069: 21,8 - 1070: 22,8 - 1071: 23,8 - 1079: 24,1 - 1081: 22,5 - - node: - color: '#FFFFFFFF' - id: WarningLine - decals: - 31: -23,-4 - 32: -22,-4 - 187: 24,16 - 188: 23,16 - 189: 22,16 - 257: 15,46 - 258: 14,46 - 259: 13,46 - 285: 13,50 - 286: 7,50 - 301: 9,56 - 302: 11,56 - 452: 27,-27 - 453: 28,-27 - 454: 29,-27 - 471: 23,-23 - 472: 24,-23 - 473: 25,-23 - 474: 26,-23 - 627: -34,19 - 628: -35,19 - 629: -36,19 - 630: -37,19 - 726: -30,22 - 727: -31,22 - 862: -43,-4 - 863: -44,-4 - 864: -45,-4 - 865: -46,-4 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 34: 5,14 - 35: 5,15 - 36: 5,16 - 37: 5,17 - 65: -4,26 - 70: -6,22 - 71: -6,23 - 72: -6,24 - 73: -6,25 - 271: 12,49 - 272: 12,50 - 273: 12,51 - 274: 12,52 - 275: 12,53 - 276: 12,54 - 277: 12,55 - 296: 9,53 - 456: 1,-28 - 457: 1,-27 - 458: 1,-26 - 462: 3,-22 - 463: 3,-21 - 859: -39,-3 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 38: 9,14 - 39: 9,15 - 40: 9,16 - 41: 9,17 - 64: -2,26 - 66: 0,22 - 67: 0,23 - 68: 0,24 - 69: 0,25 - 278: 8,49 - 279: 8,50 - 280: 8,51 - 281: 8,52 - 282: 8,53 - 283: 8,54 - 284: 8,55 - 295: 11,53 - 357: 31,-6 - 358: 31,-5 - 359: 31,-4 - 360: 31,-3 - 361: 31,-2 - 362: 31,-1 - 363: 31,0 - 446: 19,-25 - 449: 27,-30 - 459: 3,-28 - 460: 3,-27 - 461: 3,-26 - 783: -38,-36 - 784: -38,-35 - 785: -38,-34 - 798: -37,1 - 799: -37,2 - 800: -37,3 - 801: -37,4 - 802: -37,5 - 856: -41,-3 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 61: -2,23 - 62: -3,23 - 63: -4,23 - 260: 15,44 - 261: 14,44 - 262: 13,44 - 300: 10,50 - 720: -34,21 - 721: -35,21 - 722: -36,21 - 723: -37,21 - 1019: -53,-12 - 1020: -54,-12 - 1021: -55,-12 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 287: 13,54 - 288: 7,54 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WarningLine - decals: - 1006: 26,-37 - 1007: 25,-37 - 1008: 24,-37 - - node: - color: '#FFFFFFFF' - id: WarningLineCorner - decals: - 455: 26,-27 - 728: -32,22 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLineCorner - decals: - 451: 27,-29 - - node: - color: '#FFFFFFFF' - id: WarningLineCornerFlipped - decals: - 729: -29,22 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLineCornerFlipped - decals: - 450: 27,-31 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - decals: - 1123: -27,-17 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 1129: -11,-2 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 1128: -8,-2 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSe - decals: - 1120: -30,-17 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 1109: -16,22 - 1110: -16,23 - 1111: -16,24 - 1117: -30,-20 - 1118: -30,-19 - 1119: -30,-18 - 1124: -27,-16 - 1125: -27,-15 - 1133: -11,-1 - 1134: -11,0 - 1135: -11,1 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 1126: -10,-2 - 1127: -9,-2 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 1105: -23,25 - 1106: -22,25 - 1107: -21,25 - 1108: -20,25 - 1112: 5,26 - 1113: 6,26 - 1114: 7,26 - 1115: 8,26 - 1116: 9,26 - 1121: -29,-17 - 1122: -28,-17 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 1130: -8,-1 - 1131: -8,0 - 1132: -8,1 - - node: - cleanable: True - color: '#9FED5812' - id: splatter - decals: - 947: 13.296297,-42.144028 - 948: 3.8275461,-36.737778 - - node: - cleanable: True - color: '#761C0C44' - id: splatter - decals: - 945: 13.502298,-42.657906 - 946: 4.171296,-34.3466 - - node: - cleanable: True - color: '#79150050' - id: splatter - decals: - 1009: 27.509422,-40.416092 - type: DecalGrid - - version: 2 - data: - tiles: - -2,-1: - 0: 65535 - -1,-3: - 0: 65535 - -1,-1: - 0: 65535 - -1,-2: - 0: 65535 - -2,1: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - 0,-3: - 0: 65503 - 1: 32 - 0,-2: - 0: 62271 - 2: 2240 - 3: 1024 - 0,-1: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 61441 - 2: 4094 - 1,-1: - 4: 2 - 0: 65533 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65407 - 1: 128 - 0,0: - 0: 65535 - 1,3: - 0: 65535 - 1,0: - 0: 65532 - 1: 3 - 1,1: - 0: 65535 - 1,2: - 0: 65503 - 1: 32 - 0,4: - 1: 17 - 0: 65518 - -1,4: - 0: 65535 - -2,0: - 0: 65535 - -4,0: - 1: 1 - 0: 65534 - -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,2: - 0: 65535 - -2,3: - 0: 65535 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 2,2: - 0: 65535 - 2,3: - 0: 65533 - 1: 2 - 3,0: - 0: 65535 - 3,1: - 0: 65533 - 1: 2 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - -4,4: - 0: 65535 - -4,5: - 0: 65535 - -3,4: - 0: 65535 - -3,5: - 0: 65535 - -2,4: - 0: 65535 - -2,5: - 0: 65535 - -1,5: - 0: 65535 - 0,5: - 0: 65535 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 0,-4: - 0: 65535 - 1,-4: - 0: 65535 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 63455 - 1: 2080 - 3,-1: - 0: 65407 - 1: 128 - -4,-4: - 0: 65151 - 1: 384 - -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: 65535 - -1,-4: - 0: 65535 - -6,4: - 0: 65535 - -6,5: - 0: 65535 - -5,4: - 0: 65535 - -5,5: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,2: - 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: 65407 - 1: 128 - -5,3: - 0: 32767 - 1: 32768 - -7,-4: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-4: - 0: 65535 - -6,-3: - 0: 60415 - 1: 5120 - -6,-2: - 0: 65535 - -6,-1: - 0: 64511 - 1: 1024 - -5,-4: - 0: 63486 - 1: 2048 - 5: 1 - -5,-3: - 0: 65535 - -5,-2: - 0: 64511 - 1: 1024 - -5,-1: - 0: 65535 - -4,6: - 0: 65535 - -4,7: - 0: 65535 - -3,6: - 0: 65535 - -3,7: - 0: 65533 - 1: 2 - -2,6: - 0: 63487 - 1: 2048 - -2,7: - 0: 65535 - -1,6: - 0: 65535 - -1,7: - 0: 65535 - 0,6: - 0: 65535 - 0,7: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 57341 - 1: 8194 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 65535 - -5,6: - 0: 65535 - -5,7: - 0: 65471 - 1: 64 - -3,8: - 0: 56701 - 1: 128 - -2,8: - 0: 65535 - -2,9: - 0: 3999 - -1,8: - 0: 65535 - -1,9: - 0: 3983 - 0,8: - 0: 65535 - 0,9: - 0: 22471 - 1,8: - 0: 22015 - -7,4: - 0: 65439 - 1: 96 - -7,5: - 0: 63993 - 1: 1542 - -7,3: - 0: 65535 - -4,9: - 0: 240 - -4,8: - 0: 503 - -3,9: - 0: 241 - 0,10: - 0: 57309 - 0,11: - 0: 63470 - 1: 2048 - 1,9: - 0: 17652 - 1,10: - 0: 62543 - 1,11: - 0: 65535 - 2,8: - 0: 52476 - 2,9: - 0: 17660 - 2,10: - 0: 65519 - 2,11: - 0: 65535 - 3,8: - 0: 63487 - 1: 2048 - 3,9: - 0: 3839 - 3,10: - 0: 65535 - 3,11: - 0: 65535 - 4,8: - 0: 65535 - 4,9: - 0: 8191 - 4,10: - 0: 13297 - 4,11: - 0: 65407 - 5,8: - 0: 30719 - 5,9: - 0: 32631 - 5,10: - 0: 10103 - 5,11: - 0: 15 - 6,8: - 0: 30511 - 6,9: - 0: 32631 - 6,10: - 0: 10103 - 6,11: - 0: 15 - 7,8: - 0: 30511 - 7,9: - 0: 32631 - 7,10: - 0: 10103 - 7,11: - 0: 15 - 4,4: - 0: 65535 - 4,5: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 65535 - 5,4: - 0: 30715 - 6: 4 - 5,5: - 0: 65399 - 5,6: - 0: 65535 - 5,7: - 0: 30719 - 6,4: - 1: 1 - 0: 254 - 7,4: - 0: 1 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,2: - 0: 61439 - 1: 4096 - 5,3: - 0: 65535 - 6,2: - 0: 62805 - 6,3: - 0: 65407 - 1: 128 - 7,3: - 0: 4369 - 8,8: - 0: 4369 - 8,9: - 0: 4369 - 8,10: - 0: 4369 - 8,11: - 0: 1 - 0,12: - 0: 61311 - 1: 128 - 0,13: - 0: 52430 - 0,14: - 0: 2188 - 1,12: - 0: 65535 - 1,13: - 0: 65535 - 1,14: - 0: 65535 - 1,15: - 0: 12 - 2,12: - 0: 65535 - 2,13: - 0: 65535 - 2,14: - 0: 65535 - 2,15: - 0: 255 - 3,12: - 0: 65535 - 3,13: - 0: 65535 - 3,14: - 0: 14335 - 3,15: - 0: 1 - 4,12: - 0: 65535 - 4,13: - 0: 30591 - 4,14: - 0: 19 - 5,12: - 0: 4401 - -5,9: - 0: 1783 - -8,4: - 0: 65279 - 1: 256 - -8,5: - 0: 63231 - 1: 2304 - -8,6: - 0: 60415 - 1: 5120 - -8,7: - 0: 65535 - -7,6: - 0: 60415 - 1: 5120 - -7,7: - 0: 65535 - -6,6: - 0: 65535 - -6,7: - 0: 56827 - 1: 4 - -8,1: - 0: 65343 - 1: 192 - -8,2: - 0: 65535 - -8,3: - 0: 65535 - -8,-4: - 0: 61439 - 1: 4096 - -8,-3: - 0: 64255 - 1: 1280 - 4,0: - 0: 63487 - 1: 2048 - 4,1: - 0: 65535 - 5,0: - 0: 65455 - 1: 80 - 5,1: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 24575 - 7,0: - 0: 65535 - 7,1: - 0: 32767 - -8,8: - 0: 65535 - -8,9: - 0: 52991 - -7,8: - 0: 65535 - -7,9: - 0: 29687 - -6,8: - 0: 52701 - -6,9: - 0: 248 - -5,8: - 0: 65535 - 8,0: - 0: 30583 - 8,1: - 0: 13107 - 8,-4: - 0: 4096 - 8,-3: - 0: 29491 - 8,-2: - 0: 30583 - 8,-1: - 0: 29491 - 4,-4: - 0: 65535 - 4,-3: - 0: 64251 - 1: 4 - 4,-2: - 0: 64511 - 4,-1: - 0: 65535 - 5,-4: - 0: 30591 - 5,-3: - 0: 65143 - 5,-2: - 0: 65535 - 5,-1: - 0: 65503 - 1: 32 - 6,-4: - 0: 61679 - 6,-3: - 0: 65519 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 49171 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - 0,-8: - 0: 65531 - 1: 4 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-8: - 0: 65535 - 2,-7: - 0: 65501 - 1: 34 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - 3,-6: - 1: 5 - 0: 65530 - 3,-5: - 0: 65535 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 65535 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -3,-6: - 0: 65535 - -3,-5: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-8: - 0: 64511 - 1: 1024 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 - -4,-10: - 0: 65484 - -4,-9: - 0: 65535 - -4,-12: - 0: 61166 - -4,-11: - 0: 52462 - -3,-12: - 0: 65535 - -3,-11: - 0: 65535 - -3,-10: - 0: 65535 - -3,-9: - 0: 65535 - -2,-12: - 0: 65535 - -2,-11: - 0: 61055 - 1: 128 - -2,-10: - 0: 63244 - -2,-9: - 0: 65535 - -1,-12: - 0: 65535 - -1,-11: - 0: 65407 - 1: 128 - -1,-10: - 0: 61455 - -1,-9: - 0: 65535 - 0,-12: - 0: 13107 - 0,-11: - 0: 48059 - 0,-10: - 0: 65485 - 0,-9: - 0: 65535 - 1,-10: - 0: 65535 - 1,-9: - 0: 65535 - 2,-10: - 0: 65535 - 2,-9: - 0: 65535 - 3,-10: - 0: 65535 - 3,-9: - 0: 65535 - -4,-13: - 0: 61166 - -4,-15: - 0: 51342 - 7: 1088 - -4,-14: - 0: 52428 - -3,-14: - 0: 65501 - 1: 34 - -3,-13: - 0: 65535 - -3,-15: - 0: 50252 - 7: 15283 - -2,-13: - 0: 65535 - -2,-14: - 0: 59528 - 7: 1536 - -1,-15: - 0: 28672 - -1,-14: - 0: 65535 - -1,-13: - 0: 65535 - 0,-14: - 0: 12288 - 7: 768 - 0,-13: - 0: 13107 - 4,-8: - 0: 65535 - 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-8: - 0: 13119 - 7: 52416 - 5,-7: - 0: 65503 - 1: 32 - 5,-6: - 0: 65535 - 5,-5: - 0: 65535 - 6,-8: - 0: 56543 - 7: 8992 - 6,-7: - 0: 65535 - 6,-6: - 0: 65407 - 1: 128 - 6,-5: - 0: 65535 - 7,-8: - 0: 65535 - 7,-7: - 0: 65535 - 7,-6: - 0: 65519 - 1: 16 - 7,-5: - 0: 30703 - 1: 16 - 8,-8: - 0: 16383 - 8: 49152 - 8,-7: - 0: 65535 - 8,-6: - 0: 65535 - 8,-5: - 0: 7 - 9,-8: - 0: 65535 - 9,-7: - 0: 65535 - 9,-6: - 0: 4991 - 10,-8: - 0: 4340 - 10,-7: - 0: 273 - 8,-10: - 0: 65535 - 8,-9: - 0: 32767 - 1: 32768 - 4,-10: - 0: 65535 - 4,-9: - 0: 65535 - 5,-10: - 0: 65535 - 5,-9: - 0: 65535 - 6,-10: - 0: 49151 - 1: 16384 - 6,-9: - 0: 65535 - 7,-10: - 0: 49151 - 1: 16384 - 7,-9: - 0: 65535 - -9,-4: - 0: 65503 - 1: 32 - -9,-7: - 0: 65535 - -9,-6: - 0: 65535 - -9,-5: - 0: 65535 - -8,-7: - 0: 65535 - -8,-6: - 0: 65535 - -8,-5: - 0: 65535 - -8,-8: - 0: 65535 - -7,-8: - 0: 65535 - -7,-7: - 0: 65533 - 1: 2 - -7,-6: - 0: 65535 - -7,-5: - 0: 65535 - -6,-8: - 0: 65535 - -6,-7: - 0: 65533 - 1: 2 - -6,-6: - 0: 65535 - -6,-5: - 0: 30583 - 9: 34952 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 - -5,-6: - 0: 65503 - 1: 32 - -5,-5: - 0: 61167 - 10: 16 - 5: 4352 - -8,-10: - 0: 65535 - -8,-9: - 0: 65534 - 1: 1 - -7,-10: - 0: 65535 - -7,-9: - 0: 65535 - -7,-11: - 0: 63248 - -6,-11: - 0: 61440 - -6,-10: - 0: 65535 - -6,-9: - 0: 65023 - 5: 512 - -5,-11: - 0: 12288 - -5,-10: - 0: 65331 - -5,-9: - 0: 65535 - -10,8: - 0: 2286 - -9,8: - 0: 65535 - -9,9: - 0: 142 - -10,4: - 0: 65535 - -10,5: - 0: 65535 - -9,4: - 0: 65535 - -9,5: - 0: 65519 - 1: 16 - -9,7: - 0: 65535 - -9,6: - 0: 65519 - 1: 16 - -11,1: - 0: 65535 - -11,2: - 0: 65535 - -11,3: - 0: 49151 - -10,1: - 0: 65535 - -10,2: - 1: 3 - 0: 65532 - -10,3: - 0: 63487 - 1: 2048 - -9,1: - 0: 65535 - -9,2: - 0: 64503 - 1: 1032 - -9,3: - 1: 5 - 0: 65530 - -8,0: - 0: 32767 - 1: 32768 - -8,-2: - 0: 65535 - -8,-1: - 0: 65535 - 1,-12: - 0: 65152 - 1,-11: - 0: 65527 - 1: 8 - 2,-12: - 0: 65520 - 2,-11: - 0: 65535 - 3,-12: - 0: 65296 - 3,-11: - 0: 65535 - 11,-8: - 0: 244 - 8,-11: - 0: 65523 - 9,-11: - 0: 13296 - 9,-10: - 0: 63091 - 1: 256 - 9,-9: - 0: 63351 - 10,-11: - 0: 58608 - 10,-10: - 0: 65262 - 10,-9: - 0: 61166 - 11,-11: - 0: 58608 - 11,-10: - 0: 65262 - 11,-9: - 0: 61166 - 4,-12: - 0: 65280 - 4,-11: - 0: 65535 - 5,-12: - 0: 65280 - 5,-11: - 0: 65535 - 6,-12: - 0: 61440 - 6,-11: - 0: 65535 - 7,-11: - 0: 65535 - -12,-4: - 0: 65279 - 1: 256 - -12,-3: - 0: 65535 - -12,-2: - 0: 65501 - 1: 34 - -12,-1: - 0: 65535 - -11,-4: - 0: 65535 - -11,-3: - 0: 65535 - -11,-2: - 0: 65535 - -11,-1: - 0: 65399 - 1: 136 - -10,-4: - 0: 57343 - 1: 8192 - -10,-3: - 0: 65501 - 1: 34 - -10,-2: - 0: 65535 - -10,-1: - 0: 64991 - 1: 544 - -9,-3: - 0: 62463 - 1: 3072 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -12,-8: - 0: 65516 - -12,-7: - 0: 65535 - -12,-6: - 0: 65535 - -12,-5: - 1: 16449 - 0: 49086 - -11,-8: - 0: 65531 - 1: 4 - -11,-7: - 0: 49151 - 1: 16384 - -11,-6: - 0: 65535 - -11,-5: - 0: 65535 - -10,-8: - 0: 65535 - -10,-7: - 0: 65535 - -10,-6: - 0: 65535 - -10,-5: - 0: 65535 - -9,-8: - 0: 65535 - -8,-12: - 0: 30512 - -8,-11: - 0: 65535 - -12,4: - 0: 3618 - 7: 204 - -11,4: - 7: 17 - 0: 35754 - -11,5: - 0: 52424 - -11,6: - 0: 52428 - -11,7: - 0: 2184 - -10,6: - 0: 65535 - -10,7: - 0: 65535 - -12,0: - 0: 65535 - -12,1: - 0: 65535 - -12,2: - 0: 65535 - -12,3: - 0: 61439 - -11,0: - 0: 65535 - -10,0: - 0: 65535 - -9,0: - 0: 65535 - -12,-9: - 0: 32768 - -11,-9: - 0: 65516 - -11,-10: - 0: 51200 - -10,-10: - 0: 65531 - -10,-9: - 0: 65279 - 1: 256 - -9,-11: - 0: 65228 - -9,-10: - 0: 65535 - -9,-9: - 0: 65503 - 1: 32 - -9,-12: - 0: 32768 - -14,0: - 0: 16191 - 11: 192 - 12: 49152 - -14,1: - 1: 1 - 0: 16190 - 7: 49344 - -14,2: - 0: 16191 - 13: 192 - 7: 49152 - -14,3: - 0: 49407 - -13,0: - 0: 61423 - 11: 16 - 12: 4096 - -13,1: - 0: 61423 - 7: 4112 - -13,2: - 0: 61423 - 13: 16 - 7: 4096 - -13,3: - 0: 31999 - -15,-4: - 0: 61132 - -15,-3: - 0: 61166 - -15,-2: - 0: 2254 - -14,-4: - 0: 65535 - -14,-3: - 0: 65535 - -14,-2: - 0: 65535 - -14,-1: - 0: 61448 - -13,-4: - 0: 65535 - -13,-3: - 0: 65535 - -13,-2: - 0: 65503 - 1: 32 - -13,-1: - 0: 64751 - -16,-8: - 0: 61440 - -16,-7: - 0: 56792 - -16,-6: - 0: 56829 - -16,-5: - 0: 63709 - -15,-8: - 0: 61440 - -15,-7: - 0: 39320 - -15,-6: - 0: 6649 - -15,-5: - 0: 39057 - -14,-8: - 0: 61440 - -14,-7: - 0: 65256 - -14,-6: - 1: 1 - 0: 61438 - -14,-5: - 0: 65535 - -13,-8: - 0: 61440 - -13,-7: - 0: 57336 - 1: 8192 - -13,-6: - 0: 65535 - -13,-5: - 0: 65535 - -18,-8: - 0: 61440 - -18,-7: - 0: 56793 - -18,-6: - 0: 56829 - -18,-5: - 0: 63965 - -17,-8: - 0: 61440 - -17,-7: - 0: 56792 - -17,-6: - 0: 56829 - -17,-5: - 0: 63709 - 12,-11: - 0: 58608 - 12,-10: - 0: 65262 - 12,-9: - 0: 61166 - 13,-11: - 0: 8752 - 13,-10: - 0: 12834 - 13,-9: - 0: 8738 - 12,-8: - 0: 244 - 13,-8: - 0: 50 - -15,0: - 0: 17484 - -15,1: - 0: 17484 - -15,2: - 0: 17484 - -15,3: - 0: 12 - -15,-1: - 0: 16384 - -14,4: - 0: 192 - -13,4: - 0: 116 - -2,-15: - 0: 1 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 18.439045 - - 69.36594 - - 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: 235 - moles: - - 18.439045 - - 69.36594 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 13.6288595 - - 51.270477 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 20.04244 - - 75.39776 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 15.57848 - - 58.60476 - - 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 - - volume: 2500 - temperature: 293.15 - moles: - - 21.213781 - - 79.80423 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 20.045357 - - 75.40873 - - 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 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - type: GridAtmosphere - - id: Omega - type: BecomesStation - - type: OccluderTree - - type: Shuttle - - nextUpdate: 2220.8615544 - type: GridPathfinding - - type: RadiationGridResistance - - nextShake: 0 - shakeTimes: 10 - type: GravityShake - - type: GasTileOverlay -- uid: 1 - type: WallSolid - components: - - pos: 0.5,-9.5 - parent: 0 - type: Transform -- uid: 2 - type: WallSolid - components: - - pos: 0.5,-10.5 - parent: 0 - type: Transform -- uid: 3 - type: WallSolid - components: - - pos: 1.5,-4.5 - parent: 0 - type: Transform -- uid: 4 - type: WallSolid - components: - - pos: 1.5,-3.5 - parent: 0 - type: Transform -- uid: 5 - type: WallSolid - components: - - pos: 1.5,0.5 - parent: 0 - type: Transform -- uid: 6 - type: WallSolid - components: - - pos: 1.5,1.5 - parent: 0 - type: Transform -- uid: 7 - type: WallSolid - components: - - pos: 4.5,1.5 - parent: 0 - type: Transform -- uid: 8 - type: WallSolid - components: - - pos: 4.5,3.5 - parent: 0 - type: Transform -- uid: 9 - type: WallSolid - components: - - pos: 4.5,9.5 - parent: 0 - type: Transform -- uid: 10 - type: WallSolid - components: - - pos: 4.5,8.5 - parent: 0 - type: Transform -- uid: 11 - type: WallSolid - components: - - pos: 4.5,4.5 - parent: 0 - type: Transform -- uid: 12 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 4.5,6.5 - parent: 0 - type: Transform -- uid: 13 - type: WallSolid - components: - - pos: 4.5,5.5 - parent: 0 - type: Transform -- uid: 14 - type: WallSolid - components: - - pos: 5.5,5.5 - parent: 0 - type: Transform -- uid: 15 - type: WallSolid - components: - - pos: 6.5,5.5 - parent: 0 - type: Transform -- uid: 16 - type: WallSolid - components: - - pos: 7.5,5.5 - parent: 0 - type: Transform -- uid: 17 - type: WallSolid - components: - - pos: 8.5,5.5 - parent: 0 - type: Transform -- uid: 18 - type: WallSolid - components: - - pos: 8.5,6.5 - parent: 0 - type: Transform -- uid: 19 - type: WallSolid - components: - - pos: 8.5,8.5 - parent: 0 - type: Transform -- uid: 20 - type: WallSolid - components: - - pos: 8.5,9.5 - parent: 0 - type: Transform -- uid: 21 - type: WallSolid - components: - - pos: 8.5,10.5 - parent: 0 - type: Transform -- uid: 22 - type: WallSolid - components: - - pos: 7.5,10.5 - parent: 0 - type: Transform -- uid: 23 - type: WallSolid - components: - - pos: 6.5,10.5 - parent: 0 - type: Transform -- uid: 24 - type: WallSolid - components: - - pos: 5.5,10.5 - parent: 0 - type: Transform -- uid: 25 - type: WallSolid - components: - - pos: 4.5,10.5 - parent: 0 - type: Transform -- uid: 26 - type: WallSolid - components: - - pos: 3.5,10.5 - parent: 0 - type: Transform -- uid: 27 - type: WallSolid - components: - - pos: 2.5,10.5 - parent: 0 - type: Transform -- uid: 28 - type: WallSolid - components: - - pos: -6.5,10.5 - parent: 0 - type: Transform -- uid: 29 - type: WallSolid - components: - - pos: -6.5,11.5 - parent: 0 - type: Transform -- uid: 30 - type: WallSolid - components: - - pos: -6.5,12.5 - parent: 0 - type: Transform -- uid: 31 - type: WallSolid - components: - - pos: -5.5,12.5 - parent: 0 - type: Transform -- uid: 32 - type: WallReinforced - components: - - pos: -6.5,15.5 - parent: 0 - type: Transform -- uid: 33 - type: WallSolid - components: - - pos: -5.5,15.5 - parent: 0 - type: Transform -- uid: 34 - type: WallSolid - components: - - pos: -5.5,14.5 - parent: 0 - type: Transform -- uid: 35 - type: WallReinforced - components: - - pos: 1.5,15.5 - parent: 0 - type: Transform -- uid: 36 - type: WallSolid - components: - - pos: 0.5,15.5 - parent: 0 - type: Transform -- uid: 37 - type: WallSolid - components: - - pos: 0.5,13.5 - parent: 0 - type: Transform -- uid: 38 - type: WallSolid - components: - - pos: 0.5,12.5 - parent: 0 - type: Transform -- uid: 39 - type: WallSolid - components: - - pos: 1.5,12.5 - parent: 0 - type: Transform -- uid: 40 - type: WallSolid - components: - - pos: 1.5,11.5 - parent: 0 - type: Transform -- uid: 41 - type: WallSolid - components: - - pos: 1.5,10.5 - parent: 0 - type: Transform -- uid: 42 - type: WallSolid - components: - - pos: 1.5,-9.5 - parent: 0 - type: Transform -- uid: 43 - type: WallSolid - components: - - pos: 2.5,-9.5 - parent: 0 - type: Transform -- uid: 44 - type: WallSolid - components: - - pos: 2.5,-10.5 - parent: 0 - type: Transform -- uid: 45 - type: WallSolid - components: - - pos: 1.5,-7.5 - parent: 0 - type: Transform -- uid: 46 - type: WallSolid - components: - - pos: 1.5,-6.5 - parent: 0 - type: Transform -- uid: 47 - type: WallSolid - components: - - pos: 1.5,-5.5 - parent: 0 - type: Transform -- uid: 48 - type: WallSolid - components: - - pos: -5.5,-10.5 - parent: 0 - type: Transform -- uid: 49 - type: WallSolid - components: - - pos: -5.5,-9.5 - parent: 0 - type: Transform -- uid: 50 - type: WallSolid - components: - - pos: -5.5,-8.5 - parent: 0 - type: Transform -- uid: 51 - type: WallSolid - components: - - pos: -6.5,-8.5 - parent: 0 - type: Transform -- uid: 52 - type: WallSolid - components: - - pos: -6.5,-4.5 - parent: 0 - type: Transform -- uid: 53 - type: WallSolid - components: - - pos: -6.5,-2.5 - parent: 0 - type: Transform -- uid: 54 - type: WallSolid - components: - - pos: -6.5,-1.5 - parent: 0 - type: Transform -- uid: 55 - type: WallSolid - components: - - pos: -6.5,0.5 - parent: 0 - type: Transform -- uid: 56 - type: WallSolid - components: - - pos: -6.5,1.5 - parent: 0 - type: Transform -- uid: 57 - type: WallSolid - components: - - pos: -6.5,2.5 - parent: 0 - type: Transform -- uid: 58 - type: WallSolid - components: - - pos: -7.5,2.5 - parent: 0 - type: Transform -- uid: 59 - type: WallSolid - components: - - pos: -7.5,10.5 - parent: 0 - type: Transform -- uid: 60 - type: WallSolid - components: - - pos: -9.5,10.5 - parent: 0 - type: Transform -- uid: 61 - type: WallSolid - components: - - pos: -10.5,10.5 - parent: 0 - type: Transform -- uid: 62 - type: WallSolid - components: - - pos: -11.5,10.5 - parent: 0 - type: Transform -- uid: 63 - type: WallSolid - components: - - pos: -11.5,9.5 - parent: 0 - type: Transform -- uid: 64 - type: WallSolid - components: - - pos: -11.5,8.5 - parent: 0 - type: Transform -- uid: 65 - type: WallSolid - components: - - pos: -11.5,7.5 - parent: 0 - type: Transform -- uid: 66 - type: WallSolid - components: - - pos: -11.5,6.5 - parent: 0 - type: Transform -- uid: 67 - type: WallSolid - components: - - pos: -11.5,5.5 - parent: 0 - type: Transform -- uid: 68 - type: WallSolid - components: - - pos: -11.5,4.5 - parent: 0 - type: Transform -- uid: 69 - type: WallSolid - components: - - pos: -11.5,3.5 - parent: 0 - type: Transform -- uid: 70 - type: WallSolid - components: - - pos: -11.5,2.5 - parent: 0 - type: Transform -- uid: 71 - type: WallSolid - components: - - pos: -11.5,1.5 - parent: 0 - type: Transform -- uid: 72 - type: WallSolid - components: - - pos: -11.5,0.5 - parent: 0 - type: Transform -- uid: 73 - type: WallSolid - components: - - pos: -11.5,-0.5 - parent: 0 - type: Transform -- uid: 74 - type: WallSolid - components: - - pos: -11.5,-1.5 - parent: 0 - type: Transform -- uid: 75 - type: WallSolid - components: - - pos: -11.5,-2.5 - parent: 0 - type: Transform -- uid: 76 - type: WallSolid - components: - - pos: -7.5,-2.5 - parent: 0 - type: Transform -- uid: 77 - type: WallSolid - components: - - pos: -8.5,-2.5 - parent: 0 - type: Transform -- uid: 78 - type: WallSolid - components: - - pos: -9.5,-2.5 - parent: 0 - type: Transform -- uid: 79 - type: WallSolid - components: - - pos: -10.5,-2.5 - parent: 0 - type: Transform -- uid: 80 - type: WallSolid - components: - - pos: -9.5,2.5 - parent: 0 - type: Transform -- uid: 81 - type: WallSolid - components: - - pos: -10.5,2.5 - parent: 0 - type: Transform -- uid: 82 - type: WallSolid - components: - - pos: 8.5,-0.5 - parent: 0 - type: Transform -- uid: 83 - type: WallSolid - components: - - pos: 8.5,0.5 - parent: 0 - type: Transform -- uid: 84 - type: WallSolid - components: - - pos: 8.5,1.5 - parent: 0 - type: Transform -- uid: 85 - type: WallSolid - components: - - pos: 7.5,1.5 - parent: 0 - type: Transform -- uid: 86 - type: WallSolid - components: - - pos: 6.5,1.5 - parent: 0 - type: Transform -- uid: 87 - type: WallSolid - components: - - pos: 5.5,1.5 - parent: 0 - type: Transform -- uid: 88 - type: WallSolid - components: - - pos: 8.5,-2.5 - parent: 0 - type: Transform -- uid: 89 - type: WallSolid - components: - - pos: 8.5,-3.5 - parent: 0 - type: Transform -- uid: 90 - type: WallSolid - components: - - pos: 8.5,-4.5 - parent: 0 - type: Transform -- uid: 91 - type: WallSolid - components: - - pos: 7.5,-4.5 - parent: 0 - type: Transform -- uid: 92 - type: WallSolid - components: - - pos: 6.5,-4.5 - parent: 0 - type: Transform -- uid: 93 - type: WallSolid - components: - - pos: 5.5,-4.5 - parent: 0 - type: Transform -- uid: 94 - type: WallSolid - components: - - pos: 3.5,-4.5 - parent: 0 - type: Transform -- uid: 95 - type: WallSolid - components: - - pos: 2.5,-4.5 - parent: 0 - type: Transform -- uid: 96 - type: WallSolid - components: - - pos: 2.5,-7.5 - parent: 0 - type: Transform -- uid: 97 - type: WallSolid - components: - - pos: 3.5,-7.5 - parent: 0 - type: Transform -- uid: 98 - type: WallSolid - components: - - pos: 4.5,-7.5 - parent: 0 - type: Transform -- uid: 99 - type: WallSolid - components: - - pos: 4.5,-8.5 - parent: 0 - type: Transform -- uid: 100 - type: WallSolid - components: - - pos: 5.5,-8.5 - parent: 0 - type: Transform -- uid: 101 - type: WallSolid - components: - - pos: 7.5,-8.5 - parent: 0 - type: Transform -- uid: 102 - type: WallSolid - components: - - pos: 8.5,-8.5 - parent: 0 - type: Transform -- uid: 103 - type: WallSolid - components: - - pos: 6.5,-8.5 - parent: 0 - type: Transform -- uid: 104 - type: WallSolid - components: - - pos: 8.5,-7.5 - parent: 0 - type: Transform -- uid: 105 - type: WallSolid - components: - - pos: 8.5,-5.5 - parent: 0 - type: Transform -- uid: 106 - type: ReinforcedWindow - components: - - pos: -7.5,15.5 - parent: 0 - type: Transform -- uid: 107 - type: ReinforcedWindow - components: - - pos: -8.5,15.5 - parent: 0 - type: Transform -- uid: 108 - type: ReinforcedWindow - components: - - pos: -9.5,16.5 - parent: 0 - type: Transform -- uid: 109 - type: ReinforcedWindow - components: - - pos: -9.5,17.5 - parent: 0 - type: Transform -- uid: 110 - type: ReinforcedWindow - components: - - pos: -8.5,18.5 - parent: 0 - type: Transform -- uid: 111 - type: ReinforcedWindow - components: - - pos: -7.5,18.5 - parent: 0 - type: Transform -- uid: 112 - type: ReinforcedWindow - components: - - pos: -6.5,17.5 - parent: 0 - type: Transform -- uid: 113 - type: ReinforcedWindow - components: - - pos: -6.5,16.5 - parent: 0 - type: Transform -- uid: 114 - type: ReinforcedWindow - components: - - pos: 3.5,15.5 - parent: 0 - type: Transform -- uid: 115 - type: ReinforcedWindow - components: - - pos: 2.5,15.5 - parent: 0 - type: Transform -- uid: 116 - type: ReinforcedWindow - components: - - pos: 1.5,16.5 - parent: 0 - type: Transform -- uid: 117 - type: ReinforcedWindow - components: - - pos: 1.5,17.5 - parent: 0 - type: Transform -- uid: 118 - type: ReinforcedWindow - components: - - pos: 2.5,18.5 - parent: 0 - type: Transform -- uid: 119 - type: ReinforcedWindow - components: - - pos: 3.5,18.5 - parent: 0 - type: Transform -- uid: 120 - type: ReinforcedWindow - components: - - pos: 4.5,17.5 - parent: 0 - type: Transform -- uid: 121 - type: ReinforcedWindow - components: - - pos: 4.5,16.5 - parent: 0 - type: Transform -- uid: 122 - type: WallReinforced - components: - - pos: -9.5,18.5 - parent: 0 - type: Transform -- uid: 123 - type: WallReinforced - components: - - pos: -6.5,18.5 - parent: 0 - type: Transform -- uid: 124 - type: WallReinforced - components: - - pos: -9.5,15.5 - parent: 0 - type: Transform -- uid: 125 - type: WallReinforced - components: - - pos: 1.5,18.5 - parent: 0 - type: Transform -- uid: 126 - type: WallReinforced - components: - - pos: 4.5,18.5 - parent: 0 - type: Transform -- uid: 127 - type: WallReinforced - components: - - pos: 4.5,15.5 - parent: 0 - type: Transform -- uid: 128 - type: ReinforcedWindow - components: - - pos: -4.5,15.5 - parent: 0 - type: Transform -- uid: 129 - type: ReinforcedWindow - components: - - pos: -4.5,12.5 - parent: 0 - type: Transform -- uid: 130 - type: ReinforcedWindow - components: - - pos: -0.5,12.5 - parent: 0 - type: Transform -- uid: 131 - type: ReinforcedWindow - components: - - pos: -0.5,15.5 - parent: 0 - type: Transform -- uid: 132 - type: ReinforcedWindow - components: - - pos: -0.5,-9.5 - parent: 0 - type: Transform -- uid: 133 - type: ReinforcedWindow - components: - - pos: -4.5,-9.5 - parent: 0 - type: Transform -- uid: 134 - type: ReinforcedWindow - components: - - pos: 2.5,1.5 - parent: 0 - type: Transform -- uid: 135 - type: ReinforcedWindow - components: - - pos: 5.5,18.5 - parent: 0 - type: Transform -- uid: 136 - type: ReinforcedWindow - components: - - pos: 7.5,18.5 - parent: 0 - type: Transform -- uid: 137 - type: ReinforcedWindow - components: - - pos: 9.5,18.5 - parent: 0 - type: Transform -- uid: 138 - type: WallReinforced - components: - - pos: 10.5,18.5 - parent: 0 - type: Transform -- uid: 139 - type: WallSolid - components: - - pos: 3.5,-10.5 - parent: 0 - type: Transform -- uid: 140 - type: WallSolid - components: - - pos: 4.5,-10.5 - parent: 0 - type: Transform -- uid: 141 - type: WallSolid - components: - - pos: 5.5,-10.5 - parent: 0 - type: Transform -- uid: 142 - type: WallSolid - components: - - pos: 6.5,-10.5 - parent: 0 - type: Transform -- uid: 143 - type: WallSolid - components: - - pos: 7.5,-10.5 - parent: 0 - type: Transform -- uid: 144 - type: TableReinforced - components: - - pos: -14.5,17.5 - parent: 0 - type: Transform -- uid: 145 - type: WallSolid - components: - - pos: 9.5,-10.5 - parent: 0 - type: Transform -- uid: 146 - type: WallSolid - components: - - pos: 10.5,-10.5 - parent: 0 - type: Transform -- uid: 147 - type: WallSolid - components: - - pos: 10.5,-9.5 - parent: 0 - type: Transform -- uid: 148 - type: WallSolid - components: - - pos: 10.5,-8.5 - parent: 0 - type: Transform -- uid: 149 - type: WallSolid - components: - - pos: 10.5,-7.5 - parent: 0 - type: Transform -- uid: 150 - type: WallSolid - components: - - pos: 10.5,-6.5 - parent: 0 - type: Transform -- uid: 151 - type: WallSolid - components: - - pos: 10.5,-5.5 - parent: 0 - type: Transform -- uid: 152 - type: WallSolid - components: - - pos: 10.5,-4.5 - parent: 0 - type: Transform -- uid: 153 - type: WallSolid - components: - - pos: 10.5,-3.5 - parent: 0 - type: Transform -- uid: 154 - type: WallSolid - components: - - pos: 10.5,-2.5 - parent: 0 - type: Transform -- uid: 155 - type: WallSolid - components: - - pos: 10.5,-1.5 - parent: 0 - type: Transform -- uid: 156 - type: WallSolid - components: - - pos: 10.5,-0.5 - parent: 0 - type: Transform -- uid: 157 - type: WallSolid - components: - - pos: 10.5,0.5 - parent: 0 - type: Transform -- uid: 158 - type: WallSolid - components: - - pos: 10.5,1.5 - parent: 0 - type: Transform -- uid: 159 - type: WallSolid - components: - - pos: 10.5,2.5 - parent: 0 - type: Transform -- uid: 160 - type: WallReinforced - components: - - pos: -10.5,18.5 - parent: 0 - type: Transform -- uid: 161 - type: WallSolid - components: - - pos: 10.5,4.5 - parent: 0 - type: Transform -- uid: 162 - type: WallSolid - components: - - pos: 10.5,5.5 - parent: 0 - type: Transform -- uid: 163 - type: WallSolid - components: - - pos: 10.5,6.5 - parent: 0 - type: Transform -- uid: 164 - type: WallSolid - components: - - pos: 10.5,7.5 - parent: 0 - type: Transform -- uid: 165 - type: WallSolid - components: - - pos: 10.5,8.5 - parent: 0 - type: Transform -- uid: 166 - type: WallSolid - components: - - pos: 10.5,9.5 - parent: 0 - type: Transform -- uid: 167 - type: WallSolid - components: - - pos: 10.5,10.5 - parent: 0 - type: Transform -- uid: 168 - type: WallSolid - components: - - pos: 10.5,11.5 - parent: 0 - type: Transform -- uid: 169 - type: WallSolid - components: - - pos: 10.5,12.5 - parent: 0 - type: Transform -- uid: 170 - type: WallReinforced - components: - - pos: 10.5,17.5 - parent: 0 - type: Transform -- uid: 171 - type: WallReinforced - components: - - pos: 10.5,16.5 - parent: 0 - type: Transform -- uid: 172 - type: WallReinforced - components: - - pos: 10.5,15.5 - parent: 0 - type: Transform -- uid: 173 - type: WallReinforced - components: - - pos: 10.5,14.5 - parent: 0 - type: Transform -- uid: 174 - type: WallReinforced - components: - - pos: 10.5,13.5 - parent: 0 - type: Transform -- uid: 175 - type: TableReinforced - components: - - pos: -14.5,16.5 - parent: 0 - type: Transform -- uid: 176 - type: WallReinforced - components: - - pos: -15.5,18.5 - parent: 0 - type: Transform -- uid: 177 - type: WallSolid - components: - - pos: -21.5,13.5 - parent: 0 - type: Transform -- uid: 178 - type: ReinforcedWindow - components: - - pos: -18.5,18.5 - parent: 0 - type: Transform -- uid: 179 - type: ReinforcedWindow - components: - - pos: -19.5,18.5 - parent: 0 - type: Transform -- uid: 180 - type: WallSolid - components: - - pos: -21.5,15.5 - parent: 0 - type: Transform -- uid: 181 - type: WallSolid - components: - - pos: -21.5,18.5 - parent: 0 - type: Transform -- uid: 182 - type: WallSolid - components: - - pos: -21.5,17.5 - parent: 0 - type: Transform -- uid: 183 - type: WallSolid - components: - - pos: -20.5,18.5 - parent: 0 - type: Transform -- uid: 184 - type: ReinforcedWindow - components: - - pos: -21.5,14.5 - parent: 0 - type: Transform -- uid: 185 - type: WallSolid - components: - - pos: -16.5,18.5 - parent: 0 - type: Transform -- uid: 186 - type: WallSolid - components: - - pos: -21.5,12.5 - parent: 0 - type: Transform -- uid: 187 - type: Window - components: - - pos: -21.5,8.5 - parent: 0 - type: Transform -- uid: 188 - type: Window - components: - - pos: -21.5,11.5 - parent: 0 - type: Transform -- uid: 189 - type: WallSolid - components: - - pos: -21.5,7.5 - parent: 0 - type: Transform -- uid: 190 - type: WallSolid - components: - - pos: -21.5,6.5 - parent: 0 - type: Transform -- uid: 191 - type: WallSolid - components: - - pos: -22.5,6.5 - parent: 0 - type: Transform -- uid: 192 - type: WallSolid - components: - - pos: -23.5,6.5 - parent: 0 - type: Transform -- uid: 193 - type: WallSolid - components: - - pos: -24.5,6.5 - parent: 0 - type: Transform -- uid: 194 - type: WallSolid - components: - - pos: -24.5,5.5 - parent: 0 - type: Transform -- uid: 195 - type: WallSolid - components: - - pos: -24.5,-1.5 - parent: 0 - type: Transform -- uid: 196 - type: WallSolid - components: - - pos: -24.5,-2.5 - parent: 0 - type: Transform -- uid: 197 - type: WallSolid - components: - - pos: -23.5,-2.5 - parent: 0 - type: Transform -- uid: 198 - type: WallSolid - components: - - pos: -23.5,-3.5 - parent: 0 - type: Transform -- uid: 199 - type: WallSolid - components: - - pos: -23.5,-5.5 - parent: 0 - type: Transform -- uid: 200 - type: WallSolid - components: - - pos: -24.5,-6.5 - parent: 0 - type: Transform -- uid: 201 - type: WallSolid - components: - - pos: -24.5,-5.5 - parent: 0 - type: Transform -- uid: 202 - type: WallSolid - components: - - pos: -24.5,-7.5 - parent: 0 - type: Transform -- uid: 203 - type: WallSolid - components: - - pos: -24.5,-8.5 - parent: 0 - type: Transform -- uid: 204 - type: WallSolid - components: - - pos: -24.5,-9.5 - parent: 0 - type: Transform -- uid: 205 - type: WallSolid - components: - - pos: -24.5,-10.5 - parent: 0 - type: Transform -- uid: 206 - type: WallSolid - components: - - pos: -23.5,-10.5 - parent: 0 - type: Transform -- uid: 207 - type: WallSolid - components: - - pos: -21.5,-10.5 - parent: 0 - type: Transform -- uid: 208 - type: WallSolid - components: - - pos: -20.5,-10.5 - parent: 0 - type: Transform -- uid: 209 - type: WallSolid - components: - - pos: -19.5,-10.5 - parent: 0 - type: Transform -- uid: 210 - type: WallSolid - components: - - pos: -18.5,-10.5 - parent: 0 - type: Transform -- uid: 211 - type: WallSolid - components: - - pos: -7.5,-10.5 - parent: 0 - type: Transform -- uid: 212 - type: WallSolid - components: - - pos: -11.5,-10.5 - parent: 0 - type: Transform -- uid: 213 - type: WallSolid - components: - - pos: -13.5,-10.5 - parent: 0 - type: Transform -- uid: 214 - type: WallSolid - components: - - pos: -15.5,-10.5 - parent: 0 - type: Transform -- uid: 215 - type: ReinforcedWindow - components: - - pos: -6.5,-10.5 - parent: 0 - type: Transform -- uid: 216 - type: ReinforcedWindow - components: - - pos: -8.5,-10.5 - parent: 0 - type: Transform -- uid: 217 - type: ReinforcedWindow - components: - - pos: -9.5,-10.5 - parent: 0 - type: Transform -- uid: 218 - type: ReinforcedWindow - components: - - pos: -12.5,-10.5 - parent: 0 - type: Transform -- uid: 219 - type: ReinforcedWindow - components: - - pos: -14.5,-10.5 - parent: 0 - type: Transform -- uid: 220 - type: ReinforcedWindow - components: - - pos: -16.5,-10.5 - parent: 0 - type: Transform -- uid: 221 - type: Window - components: - - pos: -24.5,-0.5 - parent: 0 - type: Transform -- uid: 222 - type: Window - components: - - pos: -24.5,0.5 - parent: 0 - type: Transform -- uid: 223 - type: Window - components: - - pos: -24.5,3.5 - parent: 0 - type: Transform -- uid: 224 - type: Window - components: - - pos: -24.5,4.5 - parent: 0 - type: Transform -- uid: 225 - type: WallSolid - components: - - pos: -19.5,-9.5 - parent: 0 - type: Transform -- uid: 226 - type: WallSolid - components: - - pos: -19.5,-8.5 - parent: 0 - type: Transform -- uid: 227 - type: WallSolid - components: - - pos: -19.5,-7.5 - parent: 0 - type: Transform -- uid: 228 - type: WallSolid - components: - - pos: -19.5,-6.5 - parent: 0 - type: Transform -- uid: 229 - type: WallSolid - components: - - pos: -19.5,-5.5 - parent: 0 - type: Transform -- uid: 230 - type: WallSolid - components: - - pos: -20.5,-5.5 - parent: 0 - type: Transform -- uid: 231 - type: WallSolid - components: - - pos: -22.5,-5.5 - parent: 0 - type: Transform -- uid: 232 - type: WallSolid - components: - - pos: -7.5,-4.5 - parent: 0 - type: Transform -- uid: 233 - type: WallSolid - components: - - pos: -8.5,-4.5 - parent: 0 - type: Transform -- uid: 234 - type: WallSolid - components: - - pos: -9.5,-4.5 - parent: 0 - type: Transform -- uid: 235 - type: WallSolid - components: - - pos: -11.5,-4.5 - parent: 0 - type: Transform -- uid: 236 - type: WallSolid - components: - - pos: -12.5,-4.5 - parent: 0 - type: Transform -- uid: 237 - type: WallSolid - components: - - pos: -13.5,-4.5 - parent: 0 - type: Transform -- uid: 238 - type: WallSolid - components: - - pos: -14.5,-4.5 - parent: 0 - type: Transform -- uid: 239 - type: WallSolid - components: - - pos: -15.5,-4.5 - parent: 0 - type: Transform -- uid: 240 - type: WallSolid - components: - - pos: -16.5,-4.5 - parent: 0 - type: Transform -- uid: 241 - type: WallSolid - components: - - pos: -17.5,-4.5 - parent: 0 - type: Transform -- uid: 242 - type: WallSolid - components: - - pos: -18.5,-4.5 - parent: 0 - type: Transform -- uid: 243 - type: WallSolid - components: - - pos: -19.5,-4.5 - parent: 0 - type: Transform -- uid: 244 - type: WallSolid - components: - - pos: -22.5,-2.5 - parent: 0 - type: Transform -- uid: 245 - type: WallSolid - components: - - pos: -21.5,-2.5 - parent: 0 - type: Transform -- uid: 246 - type: WallSolid - components: - - pos: -20.5,-2.5 - parent: 0 - type: Transform -- uid: 247 - type: WallSolid - components: - - pos: -19.5,-2.5 - parent: 0 - type: Transform -- uid: 248 - type: WallSolid - components: - - pos: -18.5,-2.5 - parent: 0 - type: Transform -- uid: 249 - type: WallSolid - components: - - pos: -17.5,-2.5 - parent: 0 - type: Transform -- uid: 250 - type: WallSolid - components: - - pos: -16.5,-2.5 - parent: 0 - type: Transform -- uid: 251 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 252 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 253 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 254 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 255 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 256 - type: PoweredSmallLight - components: - - pos: -18.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 257 - type: TableCarpet - components: - - pos: -18.5,5.5 - parent: 0 - type: Transform -- uid: 258 - type: CableApcExtension - components: - - pos: -13.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 259 - type: TableWood - components: - - pos: -17.5,-1.5 - parent: 0 - type: Transform -- uid: 260 - type: BedsheetSpawner - components: - - pos: -17.5,-0.5 - parent: 0 - type: Transform -- uid: 261 - type: Bed - components: - - pos: -17.5,-0.5 - parent: 0 - type: Transform -- uid: 262 - type: WallSolid - components: - - pos: -13.5,6.5 - parent: 0 - type: Transform -- uid: 263 - type: WallSolid - components: - - pos: -14.5,6.5 - parent: 0 - type: Transform -- uid: 264 - type: WallSolid - components: - - pos: -15.5,6.5 - parent: 0 - type: Transform -- uid: 265 - type: WallSolid - components: - - pos: -16.5,6.5 - parent: 0 - type: Transform -- uid: 266 - type: WallSolid - components: - - pos: -17.5,6.5 - parent: 0 - type: Transform -- uid: 267 - type: WallSolid - components: - - pos: -18.5,6.5 - parent: 0 - type: Transform -- uid: 268 - type: WallSolid - components: - - pos: -19.5,6.5 - parent: 0 - type: Transform -- uid: 269 - type: WallSolid - components: - - pos: -20.5,6.5 - parent: 0 - type: Transform -- uid: 270 - type: WallSolid - components: - - pos: -19.5,3.5 - parent: 0 - type: Transform -- uid: 271 - type: WallSolid - components: - - pos: -19.5,4.5 - parent: 0 - type: Transform -- uid: 272 - type: WallSolid - components: - - pos: -19.5,5.5 - parent: 0 - type: Transform -- uid: 273 - type: WallSolid - components: - - pos: -17.5,3.5 - parent: 0 - type: Transform -- uid: 274 - type: WallSolid - components: - - pos: -16.5,3.5 - parent: 0 - type: Transform -- uid: 275 - type: WallSolid - components: - - pos: -16.5,4.5 - parent: 0 - type: Transform -- uid: 276 - type: WallSolid - components: - - pos: -16.5,5.5 - parent: 0 - type: Transform -- uid: 277 - type: CarpetPurple - components: - - pos: -18.5,-0.5 - parent: 0 - type: Transform -- uid: 278 - type: MaintenanceFluffSpawner - components: - - pos: -18.5,-1.5 - parent: 0 - type: Transform -- uid: 279 - type: WallSolid - components: - - pos: -16.5,-1.5 - parent: 0 - type: Transform -- uid: 280 - type: WallSolid - components: - - pos: -16.5,-0.5 - parent: 0 - type: Transform -- uid: 281 - type: WallSolid - components: - - pos: -16.5,0.5 - parent: 0 - type: Transform -- uid: 282 - type: WallSolid - components: - - pos: -17.5,0.5 - parent: 0 - type: Transform -- uid: 283 - type: WallSolid - components: - - pos: -19.5,-1.5 - parent: 0 - type: Transform -- uid: 284 - type: WallSolid - components: - - pos: -19.5,-0.5 - parent: 0 - type: Transform -- uid: 285 - type: WallSolid - components: - - pos: -19.5,0.5 - parent: 0 - type: Transform -- uid: 286 - type: WallSolid - components: - - pos: -15.5,7.5 - parent: 0 - type: Transform -- uid: 287 - type: WallSolid - components: - - pos: -15.5,8.5 - parent: 0 - type: Transform -- uid: 288 - type: WallSolid - components: - - pos: -15.5,9.5 - parent: 0 - type: Transform -- uid: 289 - type: WallSolid - components: - - pos: -15.5,11.5 - parent: 0 - type: Transform -- uid: 290 - type: WallSolid - components: - - pos: -15.5,12.5 - parent: 0 - type: Transform -- uid: 291 - type: WallSolid - components: - - pos: -15.5,13.5 - parent: 0 - type: Transform -- uid: 292 - type: WallSolid - components: - - pos: -16.5,13.5 - parent: 0 - type: Transform -- uid: 293 - type: WallSolid - components: - - pos: -17.5,13.5 - parent: 0 - type: Transform -- uid: 294 - type: WallSolid - components: - - pos: -18.5,13.5 - parent: 0 - type: Transform -- uid: 295 - type: WallSolid - components: - - pos: -19.5,13.5 - parent: 0 - type: Transform -- uid: 296 - type: WallSolid - components: - - pos: -20.5,13.5 - parent: 0 - type: Transform -- uid: 297 - type: WallReinforced - components: - - pos: -15.5,17.5 - parent: 0 - type: Transform -- uid: 298 - type: WallReinforced - components: - - pos: -15.5,16.5 - parent: 0 - type: Transform -- uid: 299 - type: WallReinforced - components: - - pos: -15.5,15.5 - parent: 0 - type: Transform -- uid: 300 - type: WallReinforced - components: - - pos: -15.5,14.5 - parent: 0 - type: Transform -- uid: 301 - type: WallReinforced - components: - - pos: -9.5,14.5 - parent: 0 - type: Transform -- uid: 302 - type: WallReinforced - components: - - pos: -10.5,14.5 - parent: 0 - type: Transform -- uid: 303 - type: WallReinforced - components: - - pos: -11.5,14.5 - parent: 0 - type: Transform -- uid: 304 - type: WallReinforced - components: - - pos: -12.5,14.5 - parent: 0 - type: Transform -- uid: 305 - type: WallReinforced - components: - - pos: -13.5,14.5 - parent: 0 - type: Transform -- uid: 306 - type: WallReinforced - components: - - pos: -14.5,14.5 - parent: 0 - type: Transform -- uid: 307 - type: AirlockHydroGlassLocked - components: - - pos: -10.5,-10.5 - parent: 0 - type: Transform -- uid: 308 - type: AirlockHydroGlassLocked - components: - - pos: -17.5,-10.5 - parent: 0 - type: Transform -- uid: 309 - type: AirlockMaintHydroLocked - components: - - pos: -10.5,-4.5 - parent: 0 - type: Transform -- uid: 310 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-6.5 - parent: 0 - type: Transform -- uid: 311 - type: TableReinforced - components: - - pos: -6.5,-6.5 - parent: 0 - type: Transform -- uid: 312 - type: TableReinforced - components: - - pos: -6.5,-5.5 - parent: 0 - type: Transform -- uid: 313 - type: TableReinforced - components: - - pos: 1.5,-2.5 - parent: 0 - type: Transform -- uid: 314 - type: TableReinforced - components: - - pos: 1.5,-1.5 - parent: 0 - type: Transform -- uid: 315 - type: TableReinforced - components: - - pos: 1.5,-0.5 - parent: 0 - type: Transform -- uid: 316 - type: TableReinforced - components: - - pos: 3.5,4.5 - parent: 0 - type: Transform -- uid: 317 - type: TableReinforced - components: - - pos: 2.5,4.5 - parent: 0 - type: Transform -- uid: 318 - type: WallSolid - components: - - pos: 1.5,4.5 - parent: 0 - type: Transform -- uid: 319 - type: WindoorBarLocked - components: - - rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 0 - type: Transform -- uid: 320 - type: TableReinforced - components: - - pos: 1.5,6.5 - parent: 0 - type: Transform -- uid: 321 - type: TableReinforced - components: - - pos: 1.5,7.5 - parent: 0 - type: Transform -- uid: 322 - type: TableReinforced - components: - - pos: 1.5,8.5 - parent: 0 - type: Transform -- uid: 323 - type: TableReinforced - components: - - pos: 1.5,9.5 - parent: 0 - type: Transform -- uid: 324 - type: AirlockMaintBarLocked - components: - - pos: 8.5,7.5 - parent: 0 - type: Transform -- uid: 325 - type: AirlockBarLocked - components: - - pos: 4.5,7.5 - parent: 0 - type: Transform -- uid: 326 - type: BarSign - components: - - desc: Drink till you puke and/or break the laws of reality! - name: The Loose Goose - type: MetaData - - pos: 2.5,10.5 - parent: 0 - type: Transform - - current: Goose - type: BarSign -- uid: 327 - type: AirlockGlass - components: - - pos: -1.5,-9.5 - parent: 0 - type: Transform -- uid: 328 - type: AirlockGlass - components: - - pos: -2.5,-9.5 - parent: 0 - type: Transform -- uid: 329 - type: AirlockGlass - components: - - pos: -3.5,-9.5 - parent: 0 - type: Transform -- uid: 330 - type: AirlockGlass - components: - - pos: -1.5,12.5 - parent: 0 - type: Transform -- uid: 331 - type: AirlockGlass - components: - - pos: -2.5,12.5 - parent: 0 - type: Transform -- uid: 332 - type: AirlockGlass - components: - - pos: -3.5,12.5 - parent: 0 - type: Transform -- uid: 333 - type: AirlockGlass - components: - - pos: -3.5,15.5 - parent: 0 - type: Transform -- uid: 334 - type: AirlockGlass - components: - - pos: -2.5,15.5 - parent: 0 - type: Transform -- uid: 335 - type: AirlockGlass - components: - - pos: -1.5,15.5 - parent: 0 - type: Transform -- uid: 336 - type: AirlockMaintLocked - components: - - pos: 1.5,-8.5 - parent: 0 - type: Transform -- uid: 337 - type: AirlockMaintLocked - components: - - pos: -6.5,-3.5 - parent: 0 - type: Transform -- uid: 338 - type: AirlockMaintLocked - components: - - pos: 4.5,2.5 - parent: 0 - type: Transform -- uid: 339 - type: AirlockMaintLocked - components: - - pos: -5.5,13.5 - parent: 0 - type: Transform -- uid: 340 - type: AirlockMaintLocked - components: - - pos: 0.5,14.5 - parent: 0 - type: Transform -- uid: 341 - type: AirlockMaintLocked - components: - - pos: -15.5,10.5 - parent: 0 - type: Transform -- uid: 342 - type: AirlockMaintLocked - components: - - pos: -23.5,-4.5 - parent: 0 - type: Transform -- uid: 343 - type: AirlockMaintLocked - components: - - pos: 8.5,-10.5 - parent: 0 - type: Transform -- uid: 344 - type: AirlockMaintLocked - components: - - pos: 10.5,3.5 - parent: 0 - type: Transform -- uid: 345 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 0.5,9.5 - parent: 0 - type: Transform -- uid: 346 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 0.5,8.5 - parent: 0 - type: Transform -- uid: 347 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 0.5,7.5 - parent: 0 - type: Transform -- uid: 348 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 0.5,6.5 - parent: 0 - type: Transform -- uid: 349 - type: FirelockGlass - components: - - pos: 2.5,4.5 - parent: 0 - type: Transform -- uid: 350 - type: FirelockGlass - components: - - pos: 1.5,9.5 - parent: 0 - type: Transform -- uid: 351 - type: FirelockGlass - components: - - pos: 3.5,4.5 - parent: 0 - type: Transform -- uid: 352 - type: FirelockGlass - components: - - pos: 1.5,8.5 - parent: 0 - type: Transform -- uid: 353 - type: FirelockGlass - components: - - pos: 1.5,7.5 - parent: 0 - type: Transform -- uid: 354 - type: FirelockGlass - components: - - pos: 1.5,6.5 - parent: 0 - type: Transform -- uid: 355 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 1.5,9.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 712 - type: SignalReceiver -- uid: 356 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 1.5,8.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 712 - type: SignalReceiver -- uid: 357 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 1.5,7.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 712 - type: SignalReceiver -- uid: 358 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 712 - type: SignalReceiver -- uid: 359 - type: ShuttersNormalOpen - components: - - pos: 2.5,4.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 712 - type: SignalReceiver -- uid: 360 - type: ShuttersNormalOpen - components: - - pos: 3.5,4.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 712 - type: SignalReceiver -- uid: 361 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 1.5,5.5 - parent: 0 - type: Transform -- uid: 362 - type: TableWood - components: - - pos: 3.5,8.5 - parent: 0 - type: Transform -- uid: 363 - type: TableWood - components: - - pos: 3.5,9.5 - parent: 0 - type: Transform -- uid: 364 - type: soda_dispenser - components: - - rot: -1.5707963267948966 rad - pos: 3.5,8.5 - parent: 0 - type: Transform -- uid: 365 - type: BoozeDispenser - components: - - rot: -1.5707963267948966 rad - pos: 3.5,9.5 - parent: 0 - type: Transform -- uid: 366 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 3.5,3.5 - parent: 0 - type: Transform -- uid: 367 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 0 - type: Transform -- uid: 368 - type: GasPipeStraight - components: - - pos: -3.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 369 - type: GasPipeStraight - components: - - pos: -3.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 370 - type: GasPipeStraight - components: - - pos: -3.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 371 - type: GasPipeStraight - components: - - pos: -3.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 372 - type: GasPipeStraight - components: - - pos: -3.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 373 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 374 - type: GasPipeStraight - components: - - pos: -3.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 375 - type: GasPipeStraight - components: - - pos: -3.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 376 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 377 - type: GasPipeStraight - components: - - pos: -3.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 378 - type: GasPipeStraight - components: - - pos: -3.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 379 - type: GasPipeStraight - components: - - pos: -3.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 380 - type: GasPipeStraight - components: - - pos: -3.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 381 - type: GasPipeStraight - components: - - pos: -3.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 382 - type: GasPipeStraight - components: - - pos: -3.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 383 - type: GasPipeStraight - components: - - pos: -3.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 384 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 385 - type: GasPipeStraight - components: - - pos: -3.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 386 - type: GasPipeStraight - components: - - pos: -3.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 387 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 388 - type: GasPipeStraight - components: - - pos: -3.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 389 - type: GasPipeStraight - components: - - pos: -3.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 390 - type: GasPipeStraight - components: - - pos: -3.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 391 - type: GasPipeStraight - components: - - pos: -3.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 392 - type: GasPipeStraight - components: - - pos: -3.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 393 - type: GasPipeStraight - components: - - pos: -3.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 394 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 395 - type: GasPipeStraight - components: - - pos: -3.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 396 - type: GasPipeStraight - components: - - pos: -3.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 397 - type: GasPipeStraight - components: - - pos: -3.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 398 - type: GasPipeStraight - components: - - pos: -1.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 399 - type: GasPipeStraight - components: - - pos: -1.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 400 - type: GasPipeStraight - components: - - pos: -1.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 401 - type: GasPipeStraight - components: - - pos: -1.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 402 - type: GasPipeFourway - components: - - pos: -3.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 403 - type: GasPipeStraight - components: - - pos: -1.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 404 - type: GasPipeStraight - components: - - pos: -1.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 405 - type: GasPipeStraight - components: - - pos: -1.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 406 - type: GasPipeStraight - components: - - pos: -1.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 407 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 408 - type: GasPipeStraight - components: - - pos: -1.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 409 - type: GasPipeStraight - components: - - pos: -1.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 410 - type: GasPipeStraight - components: - - pos: -1.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 411 - type: GasPipeStraight - components: - - pos: -1.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 412 - type: GasPipeStraight - components: - - pos: -1.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 413 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 414 - type: GasPipeStraight - components: - - pos: -1.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 415 - type: GasPipeStraight - components: - - pos: -1.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 416 - type: GasPipeStraight - components: - - pos: -1.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 417 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 418 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 419 - type: GasPipeStraight - components: - - pos: -1.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 420 - type: GasPipeStraight - components: - - pos: -1.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 421 - type: GasPipeStraight - components: - - pos: -1.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 422 - type: GasPipeStraight - components: - - pos: -1.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 423 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -1.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 424 - type: GasPipeStraight - components: - - pos: -1.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 425 - type: GasPipeStraight - components: - - pos: -1.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 426 - type: GasPipeStraight - components: - - pos: -1.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 427 - type: GasPipeStraight - components: - - pos: -1.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 428 - type: GasPipeFourway - components: - - pos: -3.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 429 - type: WallSolid - components: - - pos: 13.5,9.5 - parent: 0 - type: Transform -- uid: 430 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 431 - type: GasPipeFourway - components: - - pos: -3.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 432 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 433 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 434 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 435 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 436 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 437 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 438 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 439 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 440 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 441 - type: GasPipeTJunction - components: - - pos: -5.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 442 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 443 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 444 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 445 - type: GasPipeFourway - components: - - pos: -5.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 446 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 447 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 448 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 449 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 450 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 451 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 452 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 453 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 454 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -16.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 455 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 456 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 457 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 458 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 459 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 460 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 461 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 462 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 463 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 464 - type: GasPipeTJunction - components: - - pos: 0.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 465 - type: GasPipeStraight - components: - - pos: -25.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 466 - type: GasPipeStraight - components: - - pos: -25.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 467 - type: GasPipeStraight - components: - - pos: -25.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 468 - type: GasPipeStraight - components: - - pos: -25.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 469 - type: GasPipeStraight - components: - - pos: -25.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 470 - type: GasPipeStraight - components: - - pos: -25.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 471 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -22.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 472 - type: GasPipeStraight - components: - - pos: -25.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 473 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree -- uid: 474 - type: GasPipeStraight - components: - - pos: -25.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 475 - type: GasPipeStraight - components: - - pos: -25.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 476 - type: GasPipeStraight - components: - - pos: -25.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 477 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -25.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 478 - type: GasPipeStraight - components: - - pos: -25.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 479 - type: GasPipeStraight - components: - - pos: -25.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 480 - type: GasPipeStraight - components: - - pos: -25.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 481 - type: GasPipeStraight - components: - - pos: -25.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 482 - type: GasPipeStraight - components: - - pos: -25.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 483 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -24.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 484 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 485 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 486 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -23.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 487 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 488 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 489 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 490 - type: GasPipeTJunction - components: - - pos: -25.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 491 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 492 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 493 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 494 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 495 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 496 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -22.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 497 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 498 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 499 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 500 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 501 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 502 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 503 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 504 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 505 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 506 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -21.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 507 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 508 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 509 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 510 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 2.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 511 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 512 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 513 - type: GasPipeTJunction - components: - - pos: -0.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 514 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 515 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 516 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 517 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 518 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 519 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -7.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 520 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 521 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 522 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 523 - type: GasPipeTJunction - components: - - pos: 8.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 524 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 525 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 526 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 527 - type: GasPipeTJunction - components: - - pos: -13.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 528 - type: GasPipeStraight - components: - - pos: 11.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 529 - type: GasPipeStraight - components: - - pos: 11.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 530 - type: GasPipeStraight - components: - - pos: 11.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 531 - type: GasPipeStraight - components: - - pos: 11.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 532 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 12.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 533 - type: GasPipeStraight - components: - - pos: 11.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 534 - type: GasPipeStraight - components: - - pos: 11.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 535 - type: GasPipeStraight - components: - - pos: 11.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 536 - type: GasPipeStraight - components: - - pos: 11.5,10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 537 - type: GasPipeStraight - components: - - pos: 11.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 538 - type: GasPipeStraight - components: - - pos: 11.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 539 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 12.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 540 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 11.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 541 - type: GasPipeStraight - components: - - pos: 11.5,5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 542 - type: GasPipeStraight - components: - - pos: 11.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 543 - type: GasPipeStraight - components: - - pos: 11.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 544 - type: GasPipeStraight - components: - - pos: 11.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 545 - type: GasPipeStraight - components: - - pos: 11.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 546 - type: GasPipeStraight - components: - - pos: 11.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 547 - type: GasPipeStraight - components: - - pos: 11.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 548 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 12.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 549 - type: GasPipeStraight - components: - - pos: 11.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 550 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 551 - type: GasPipeStraight - components: - - pos: 11.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 552 - type: GasPipeStraight - components: - - pos: 11.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 553 - type: GasPipeStraight - components: - - pos: 11.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 554 - type: GasPipeStraight - components: - - pos: 11.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 555 - type: GasPipeStraight - components: - - pos: 11.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 556 - type: GasPipeStraight - components: - - pos: 11.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 557 - type: GasPipeStraight - components: - - pos: 11.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 558 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 559 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 560 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -25.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 561 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -22.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 562 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 563 - type: GasPipeBend - components: - - pos: 11.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 564 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 565 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -22.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 566 - type: GasPipeFourway - components: - - pos: -1.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 567 - type: GasPipeStraight - components: - - pos: -3.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 568 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 569 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 570 - type: GasPipeTJunction - components: - - pos: -4.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 571 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 572 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 573 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 574 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 575 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 576 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 577 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 578 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 579 - type: GasPipeTJunction - components: - - pos: 6.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 580 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 581 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 582 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 583 - type: GasPipeFourway - components: - - pos: -1.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 584 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 585 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 586 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 587 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 11.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 588 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 589 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 590 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 591 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 592 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 593 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 594 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 10.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 595 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 596 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 597 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 598 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 599 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 600 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 11.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 601 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 602 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 603 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 604 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 605 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 12.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 606 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 607 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 608 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 609 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 610 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 611 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 612 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 613 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 614 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 615 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 616 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 617 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 618 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 619 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 620 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 621 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 622 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 623 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 624 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 625 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 8.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 626 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 627 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 628 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 629 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 630 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 631 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 632 - type: GasPipeTJunction - components: - - pos: -6.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 633 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 634 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 635 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 636 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 637 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 638 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 639 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 640 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 641 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 642 - type: GasPipeTJunction - components: - - pos: -14.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 643 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -17.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 644 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 645 - type: GasPipeTJunction - components: - - pos: 1.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 646 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 647 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 648 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 649 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 650 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 651 - type: GasPipeTJunction - components: - - pos: -19.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 652 - type: GasPipeStraight - components: - - pos: -26.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 653 - type: GasPipeStraight - components: - - pos: -26.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 654 - type: GasPipeStraight - components: - - pos: -26.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 655 - type: GasPipeStraight - components: - - pos: -26.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 656 - type: GasPipeStraight - components: - - pos: -26.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 657 - type: GasPipeStraight - components: - - pos: -26.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 658 - type: GasPipeStraight - components: - - pos: -26.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 659 - type: GasPipeStraight - components: - - pos: -26.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 660 - type: GasPipeStraight - components: - - pos: -26.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 661 - type: GasPipeStraight - components: - - pos: -26.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 662 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 663 - type: GasPipeStraight - components: - - pos: -26.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 664 - type: GasPipeFourway - components: - - pos: -25.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 665 - type: GasPipeStraight - components: - - pos: -26.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 666 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -26.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 667 - type: GasPipeStraight - components: - - pos: -26.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 668 - type: GasPipeStraight - components: - - pos: -26.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 669 - type: GasPipeStraight - components: - - pos: -26.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 670 - type: GasPipeStraight - components: - - pos: -26.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 671 - type: GasPipeStraight - components: - - pos: -26.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 672 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 673 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 674 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 675 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -22.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 676 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 677 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 678 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 679 - type: GasPipeTJunction - components: - - pos: -24.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 680 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 681 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -23.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 682 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -23.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 683 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 684 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 685 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 686 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 687 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 688 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 689 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 690 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 691 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 692 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 693 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 694 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -23.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 695 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 696 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 697 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 698 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 699 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 700 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 701 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 702 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 703 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 704 - type: GasPipeTJunction - components: - - pos: -11.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 705 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -26.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 706 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -23.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 707 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -26.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 708 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 709 - type: GasPipeBend - components: - - pos: 12.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 710 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -2.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 711 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -2.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 712 - type: SignalButton - components: - - pos: 4.5,5.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 360 - - port: Toggle - uid: 359 - - port: Toggle - uid: 358 - - port: Toggle - uid: 357 - - port: Toggle - uid: 356 - - port: Toggle - uid: 355 - type: SignalTransmitter -- uid: 713 - type: AirlockTheatreLocked - components: - - pos: -6.5,-0.5 - parent: 0 - type: Transform -- uid: 714 - type: AirlockMaintTheatreLocked - components: - - pos: -8.5,10.5 - parent: 0 - type: Transform -- uid: 715 - type: AirlockKitchenGlassLocked - components: - - pos: 3.5,1.5 - parent: 0 - type: Transform -- uid: 716 - type: AirlockFreezerKitchenHydroLocked - components: - - pos: 4.5,-4.5 - parent: 0 - type: Transform -- uid: 717 - type: AirlockMaintKitchenLocked - components: - - pos: 8.5,-1.5 - parent: 0 - type: Transform -- uid: 718 - type: AirlockMaintKitchenLocked - components: - - pos: 8.5,-6.5 - parent: 0 - type: Transform -- uid: 719 - type: AirlockMaintJanitorLocked - components: - - pos: -21.5,-5.5 - parent: 0 - type: Transform -- uid: 720 - type: AirlockJanitorLocked - components: - - pos: -22.5,-10.5 - parent: 0 - type: Transform -- uid: 721 - type: WallReinforced - components: - - pos: 4.5,14.5 - parent: 0 - type: Transform -- uid: 722 - type: WallReinforced - components: - - pos: 4.5,13.5 - parent: 0 - type: Transform -- uid: 723 - type: AirlockHeadOfPersonnelGlassLocked - components: - - pos: 6.5,18.5 - parent: 0 - type: Transform -- uid: 724 - type: WallReinforced - components: - - pos: 9.5,13.5 - parent: 0 - type: Transform -- uid: 725 - type: WallReinforced - components: - - pos: 5.5,13.5 - parent: 0 - type: Transform -- uid: 726 - type: WallReinforced - components: - - pos: 8.5,13.5 - parent: 0 - type: Transform -- uid: 727 - type: WallReinforced - components: - - pos: 7.5,13.5 - parent: 0 - type: Transform -- uid: 728 - type: WallReinforced - components: - - pos: 6.5,13.5 - parent: 0 - type: Transform -- uid: 729 - type: BlastDoor - components: - - pos: 8.5,18.5 - parent: 0 - type: Transform -- uid: 730 - type: TableReinforced - components: - - pos: 5.5,17.5 - parent: 0 - type: Transform -- uid: 731 - type: TableReinforced - components: - - pos: 5.5,14.5 - parent: 0 - type: Transform -- uid: 732 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,14.5 - parent: 0 - type: Transform -- uid: 733 - type: OxygenCanister - components: - - pos: 9.5,17.5 - parent: 0 - type: Transform -- uid: 734 - type: TableReinforced - components: - - pos: 7.5,16.5 - parent: 0 - type: Transform -- uid: 735 - type: Rack - components: - - pos: 5.5,15.5 - parent: 0 - type: Transform -- uid: 736 - type: Rack - components: - - pos: 5.5,16.5 - parent: 0 - type: Transform -- uid: 737 - type: Rack - components: - - pos: 9.5,15.5 - parent: 0 - type: Transform -- uid: 738 - type: Rack - components: - - pos: 9.5,16.5 - parent: 0 - type: Transform -- uid: 739 - type: VendingMachineTankDispenserEngineering - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 7.5,15.5 - parent: 0 - type: Transform -- uid: 740 - type: ClothingOuterHardsuitEVA - components: - - pos: 5.5,15.5 - parent: 0 - type: Transform -- uid: 741 - type: ClothingOuterHardsuitEVA - components: - - pos: 5.5,16.5 - parent: 0 - type: Transform -- uid: 742 - type: ClothingOuterHardsuitEVA - components: - - pos: 9.5,15.5 - parent: 0 - type: Transform -- uid: 743 - type: ClothingOuterHardsuitEVA - components: - - pos: 9.5,16.5 - parent: 0 - type: Transform -- uid: 744 - type: ClothingHeadHelmetEVA - components: - - pos: 5.5,15.5 - parent: 0 - type: Transform -- uid: 745 - type: ClothingHeadHelmetEVA - components: - - pos: 5.5,16.5 - parent: 0 - type: Transform -- uid: 746 - type: ClothingHeadHelmetEVA - components: - - pos: 9.5,15.5 - parent: 0 - type: Transform -- uid: 747 - type: ClothingHeadHelmetEVA - components: - - pos: 9.5,16.5 - parent: 0 - type: Transform -- uid: 748 - type: Grille - components: - - pos: 9.5,18.5 - parent: 0 - type: Transform -- uid: 749 - type: Grille - components: - - pos: 7.5,18.5 - parent: 0 - type: Transform -- uid: 750 - type: Grille - components: - - pos: 5.5,18.5 - parent: 0 - type: Transform -- uid: 751 - type: Grille - components: - - pos: 3.5,18.5 - parent: 0 - type: Transform -- uid: 752 - type: Grille - components: - - pos: 2.5,18.5 - parent: 0 - type: Transform -- uid: 753 - type: Grille - components: - - pos: 4.5,17.5 - parent: 0 - type: Transform -- uid: 754 - type: Grille - components: - - pos: 4.5,16.5 - parent: 0 - type: Transform -- uid: 755 - type: Grille - components: - - pos: 3.5,15.5 - parent: 0 - type: Transform -- uid: 756 - type: Grille - components: - - pos: 2.5,15.5 - parent: 0 - type: Transform -- uid: 757 - type: Grille - components: - - pos: 1.5,16.5 - parent: 0 - type: Transform -- uid: 758 - type: Grille - components: - - pos: 1.5,17.5 - parent: 0 - type: Transform -- uid: 759 - type: Grille - components: - - pos: -0.5,12.5 - parent: 0 - type: Transform -- uid: 760 - type: Grille - components: - - pos: -4.5,12.5 - parent: 0 - type: Transform -- uid: 761 - type: Grille - components: - - pos: -4.5,15.5 - parent: 0 - type: Transform -- uid: 762 - type: Grille - components: - - pos: -0.5,15.5 - parent: 0 - type: Transform -- uid: 763 - type: Grille - components: - - pos: -7.5,15.5 - parent: 0 - type: Transform -- uid: 764 - type: Grille - components: - - pos: -8.5,15.5 - parent: 0 - type: Transform -- uid: 765 - type: Grille - components: - - pos: -9.5,16.5 - parent: 0 - type: Transform -- uid: 766 - type: Grille - components: - - pos: -9.5,17.5 - parent: 0 - type: Transform -- uid: 767 - type: Grille - components: - - pos: -8.5,18.5 - parent: 0 - type: Transform -- uid: 768 - type: Grille - components: - - pos: -7.5,18.5 - parent: 0 - type: Transform -- uid: 769 - type: Grille - components: - - pos: -6.5,17.5 - parent: 0 - type: Transform -- uid: 770 - type: Grille - components: - - pos: -6.5,16.5 - parent: 0 - type: Transform -- uid: 771 - type: BlastDoor - components: - - pos: -11.5,18.5 - parent: 0 - type: Transform -- uid: 772 - type: WallReinforced - components: - - pos: -12.5,18.5 - parent: 0 - type: Transform -- uid: 773 - type: WallReinforced - components: - - pos: -14.5,18.5 - parent: 0 - type: Transform -- uid: 774 - type: Grille - components: - - pos: -4.5,-9.5 - parent: 0 - type: Transform -- uid: 775 - type: Grille - components: - - pos: -0.5,-9.5 - parent: 0 - type: Transform -- uid: 776 - type: Grille - components: - - pos: -6.5,-10.5 - parent: 0 - type: Transform -- uid: 777 - type: Grille - components: - - pos: -8.5,-10.5 - parent: 0 - type: Transform -- uid: 778 - type: Grille - components: - - pos: -9.5,-10.5 - parent: 0 - type: Transform -- uid: 779 - type: Grille - components: - - pos: -12.5,-10.5 - parent: 0 - type: Transform -- uid: 780 - type: Grille - components: - - pos: -14.5,-10.5 - parent: 0 - type: Transform -- uid: 781 - type: Grille - components: - - pos: -16.5,-10.5 - parent: 0 - type: Transform -- uid: 782 - type: FirelockGlass - components: - - pos: 1.5,-2.5 - parent: 0 - type: Transform -- uid: 783 - type: FirelockGlass - components: - - pos: 1.5,-1.5 - parent: 0 - type: Transform -- uid: 784 - type: FirelockGlass - components: - - pos: 1.5,-0.5 - parent: 0 - type: Transform -- uid: 785 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1646 - type: SignalReceiver -- uid: 786 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1646 - type: SignalReceiver -- uid: 787 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1646 - type: SignalReceiver -- uid: 788 - type: Grille - components: - - pos: 2.5,1.5 - parent: 0 - type: Transform -- uid: 789 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 790 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 791 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 792 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 793 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 794 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 795 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 796 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 797 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 798 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 799 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 800 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 801 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 802 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 803 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 804 - type: GasPipeStraight - components: - - pos: -17.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 805 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -10.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 806 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -10.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 807 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 808 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 809 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 810 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 811 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 812 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 813 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 814 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 815 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 816 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -2.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 817 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 818 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 819 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 820 - type: GasPipeTJunction - components: - - pos: -2.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 821 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 822 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 823 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 824 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 825 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 826 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 827 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 828 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 829 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 830 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 831 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 832 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 833 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 834 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 835 - type: GasVentPump - components: - - pos: 5.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 836 - type: GasPipeStraight - components: - - pos: 4.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 837 - type: GasPipeStraight - components: - - pos: 4.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 838 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 4.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 839 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 840 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 841 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 842 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 843 - type: GasPipeTJunction - components: - - pos: 3.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 844 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 845 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 846 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 2.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 847 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 6.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 848 - type: GasVentPump - components: - - pos: -17.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 849 - type: GasVentPump - components: - - pos: -10.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 850 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -16.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 851 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 852 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 853 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 854 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 855 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 856 - type: GasPipeBend - components: - - pos: -16.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 857 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 858 - type: GasVentScrubber - components: - - pos: -10.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 859 - type: GasThermoMachineFreezer - components: - - pos: 7.5,-5.5 - parent: 0 - type: Transform -- uid: 860 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 861 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 862 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 6.5,-7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 863 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 7.5,-7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 864 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -2.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 865 - type: BookAtmosAirAlarms - components: - - pos: -22.624014,-17.30092 - parent: 0 - type: Transform -- uid: 866 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 867 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 868 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 869 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 870 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 871 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 872 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 873 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 874 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 875 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 876 - type: GasPipeBend - components: - - pos: -8.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 877 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -9.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 878 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 879 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 880 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 881 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 882 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 883 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 884 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 885 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -9.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 886 - type: AirlockTheatreLocked - components: - - pos: -8.5,2.5 - parent: 0 - type: Transform -- uid: 887 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 0 - type: Transform -- uid: 888 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 0 - type: Transform -- uid: 889 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 0 - type: Transform -- uid: 890 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 0 - type: Transform -- uid: 891 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 0 - type: Transform -- uid: 892 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -7.5,6.5 - parent: 0 - type: Transform -- uid: 893 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -7.5,7.5 - parent: 0 - type: Transform -- uid: 894 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -7.5,8.5 - parent: 0 - type: Transform -- uid: 895 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -7.5,9.5 - parent: 0 - type: Transform -- uid: 896 - type: WindoorTheatreLocked - components: - - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 0 - type: Transform -- uid: 897 - type: SubstationBasic - components: - - pos: -14.5,7.5 - parent: 0 - type: Transform -- uid: 898 - type: WallSolid - components: - - pos: -13.5,7.5 - parent: 0 - type: Transform -- uid: 899 - type: WallSolid - components: - - pos: -13.5,8.5 - parent: 0 - type: Transform -- uid: 900 - type: WallSolid - components: - - pos: -13.5,9.5 - parent: 0 - type: Transform -- uid: 901 - type: AirlockEngineeringLocked - components: - - pos: -14.5,9.5 - parent: 0 - type: Transform -- uid: 902 - type: APCBasic - components: - - pos: 6.5,5.5 - parent: 0 - type: Transform -- uid: 903 - type: APCBasic - components: - - pos: -8.5,-2.5 - parent: 0 - type: Transform -- uid: 904 - type: APCBasic - components: - - pos: -12.5,14.5 - parent: 0 - type: Transform -- uid: 905 - type: AirlockGlass - components: - - pos: -21.5,16.5 - parent: 0 - type: Transform -- uid: 906 - type: AirlockBrigGlassLocked - components: - - pos: -17.5,18.5 - parent: 0 - type: Transform -- uid: 907 - type: Grille - components: - - pos: -18.5,18.5 - parent: 0 - type: Transform -- uid: 908 - type: Grille - components: - - pos: -19.5,18.5 - parent: 0 - type: Transform -- uid: 909 - type: Grille - components: - - pos: -21.5,14.5 - parent: 0 - type: Transform -- uid: 910 - type: Grille - components: - - pos: -21.5,11.5 - parent: 0 - type: Transform -- uid: 911 - type: Grille - components: - - pos: -21.5,8.5 - parent: 0 - type: Transform -- uid: 912 - type: Grille - components: - - pos: -24.5,3.5 - parent: 0 - type: Transform -- uid: 913 - type: Grille - components: - - pos: -24.5,4.5 - parent: 0 - type: Transform -- uid: 914 - type: Grille - components: - - pos: -24.5,-0.5 - parent: 0 - type: Transform -- uid: 915 - type: Grille - components: - - pos: -24.5,0.5 - parent: 0 - type: Transform -- uid: 916 - type: SubstationBasic - components: - - pos: 2.5,11.5 - parent: 0 - type: Transform -- uid: 917 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -6.5,9.5 - parent: 0 - type: Transform -- uid: 918 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 0.5,10.5 - parent: 0 - type: Transform -- uid: 919 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,11.5 - parent: 0 - type: Transform -- uid: 920 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,-7.5 - parent: 0 - type: Transform -- uid: 921 - type: DisposalUnit - components: - - pos: 0.5,-5.5 - parent: 0 - type: Transform -- uid: 922 - type: DisposalUnit - components: - - pos: -5.5,11.5 - parent: 0 - type: Transform -- uid: 923 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,-6.5 - parent: 0 - type: Transform - - sprite: Structures/Machines/VendingMachines/cigs.rsi - type: Sprite -- uid: 924 - type: PottedPlantRandom - components: - - pos: 0.5,-4.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 925 - type: PottedPlantRandom - components: - - pos: -4.5,-8.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 926 - type: PottedPlantRandom - components: - - pos: -0.5,-10.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 927 - type: PottedPlantRandom - components: - - pos: -4.5,-10.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 928 - type: PottedPlantRandom - components: - - pos: -0.5,11.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 929 - type: PottedPlantRandom - components: - - pos: -4.5,11.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 930 - type: FirelockGlass - components: - - pos: -6.5,-7.5 - parent: 0 - type: Transform -- uid: 931 - type: FirelockGlass - components: - - pos: -6.5,-6.5 - parent: 0 - type: Transform -- uid: 932 - type: FirelockGlass - components: - - pos: -6.5,-5.5 - parent: 0 - type: Transform -- uid: 933 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,-7.5 - parent: 0 - type: Transform -- uid: 934 - type: WindoorKitchenHydroponicsLocked - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 0 - type: Transform -- uid: 935 - type: WindoorKitchenHydroponicsLocked - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 0 - type: Transform -- uid: 936 - type: TableWood - components: - - pos: -6.5,8.5 - parent: 0 - type: Transform -- uid: 937 - type: PottedPlantRandom - components: - - pos: 0.5,1.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 938 - type: PottedPlantRandom - components: - - pos: -5.5,-2.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 939 - type: TableWood - components: - - pos: -6.5,4.5 - parent: 0 - type: Transform -- uid: 940 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -6.5,5.5 - parent: 0 - type: Transform -- uid: 941 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -6.5,6.5 - parent: 0 - type: Transform -- uid: 942 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -6.5,7.5 - parent: 0 - type: Transform -- uid: 943 - type: CableHV - components: - - pos: -14.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 944 - type: CableHV - components: - - pos: -14.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 945 - type: CableHV - components: - - pos: -14.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 946 - type: CableHV - components: - - pos: -14.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 947 - type: CableHV - components: - - pos: -14.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 948 - type: CableHV - components: - - pos: -14.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 949 - type: CableHV - components: - - pos: -14.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 950 - type: CableHV - components: - - pos: -13.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 951 - type: CableHV - components: - - pos: -12.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 952 - type: CableHV - components: - - pos: -11.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 953 - type: CableHV - components: - - pos: -10.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 954 - type: CableHV - components: - - pos: -9.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 955 - type: CableHV - components: - - pos: -8.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 956 - type: CableHV - components: - - pos: -7.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 957 - type: CableHV - components: - - pos: -6.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 958 - type: CableHV - components: - - pos: -5.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 959 - type: CableHV - components: - - pos: -4.5,13.5 - parent: 0 - type: Transform -- uid: 960 - type: CableHV - components: - - pos: -3.5,13.5 - parent: 0 - type: Transform -- uid: 961 - type: CableHV - components: - - pos: -2.5,13.5 - parent: 0 - type: Transform -- uid: 962 - type: CableHV - components: - - pos: -1.5,13.5 - parent: 0 - type: Transform -- uid: 963 - type: FirelockGlass - components: - - pos: 5.5,21.5 - parent: 0 - type: Transform -- uid: 964 - type: CableHV - components: - - pos: -0.5,14.5 - parent: 0 - type: Transform -- uid: 965 - type: CableHV - components: - - pos: 0.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 966 - type: CableHV - components: - - pos: 1.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 967 - type: CableHV - components: - - pos: 2.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 968 - type: CableHV - components: - - pos: 2.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 969 - type: CableHV - components: - - pos: 2.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 970 - type: CableHV - components: - - pos: 2.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 971 - type: CableMV - components: - - pos: -14.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 972 - type: CableMV - components: - - pos: -14.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 973 - type: CableMV - components: - - pos: -14.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 974 - type: CableMV - components: - - pos: -14.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 975 - type: CableMV - components: - - pos: -14.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 976 - type: CableMV - components: - - pos: -14.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 977 - type: CableMV - components: - - pos: -14.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 978 - type: CableMV - components: - - pos: -13.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 979 - type: CableMV - components: - - pos: -12.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 980 - type: CableMV - components: - - pos: -12.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 981 - type: CableMV - components: - - pos: -8.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 982 - type: CableMV - components: - - pos: -8.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 983 - type: CableMV - components: - - pos: -9.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 984 - type: CableMV - components: - - pos: -10.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 985 - type: CableMV - components: - - pos: -12.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 986 - type: CableMV - components: - - pos: -11.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 987 - type: CableMV - components: - - pos: -12.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 988 - type: CableMV - components: - - pos: -12.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 989 - type: CableMV - components: - - pos: -12.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 990 - type: CableMV - components: - - pos: -12.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 991 - type: CableMV - components: - - pos: -12.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 992 - type: CableMV - components: - - pos: -12.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 993 - type: CableMV - components: - - pos: -12.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 994 - type: CableMV - components: - - pos: -12.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 995 - type: CableMV - components: - - pos: -12.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 996 - type: CableMV - components: - - pos: -12.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 997 - type: CableMV - components: - - pos: -12.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 998 - type: CableMV - components: - - pos: -12.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 999 - type: CableMV - components: - - pos: -12.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1000 - type: CableMV - components: - - pos: -12.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1001 - type: CableMV - components: - - pos: -12.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1002 - type: CableMV - components: - - pos: -12.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1003 - type: CableMV - components: - - pos: 6.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1004 - type: CableMV - components: - - pos: 6.5,4.5 - parent: 0 - type: Transform -- uid: 1005 - type: CableMV - components: - - pos: 7.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1006 - type: CableMV - components: - - pos: 8.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1007 - type: CableMV - components: - - pos: 9.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1008 - type: CableMV - components: - - pos: 9.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1009 - type: CableMV - components: - - pos: 9.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1010 - type: CableMV - components: - - pos: 9.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1011 - type: CableMV - components: - - pos: 9.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1012 - type: CableMV - components: - - pos: 9.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1013 - type: CableMV - components: - - pos: 9.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1014 - type: CableMV - components: - - pos: 9.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1015 - type: CableMV - components: - - pos: 8.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1016 - type: CableMV - components: - - pos: 7.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1017 - type: CableMV - components: - - pos: 6.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1018 - type: CableMV - components: - - pos: 5.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1019 - type: CableMV - components: - - pos: 4.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1020 - type: CableMV - components: - - pos: 3.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1021 - type: CableMV - components: - - pos: 2.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1022 - type: APCBasic - components: - - pos: 7.5,-8.5 - parent: 0 - type: Transform -- uid: 1023 - type: CableMV - components: - - pos: 7.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1024 - type: CableMV - components: - - pos: 7.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1025 - type: CableMV - components: - - pos: 8.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1026 - type: CableMV - components: - - pos: 9.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1027 - type: CableMV - components: - - pos: 9.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1028 - type: CableMV - components: - - pos: 9.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1029 - type: CableMV - components: - - pos: 9.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1030 - type: CableMV - components: - - pos: 9.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1031 - type: CableMV - components: - - pos: 9.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1032 - type: CableMV - components: - - pos: 9.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1033 - type: CableMV - components: - - pos: 9.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1034 - type: CableMV - components: - - pos: 9.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1035 - type: CableMV - components: - - pos: 9.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1036 - type: CableMV - components: - - pos: 9.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1037 - type: CableMV - components: - - pos: 9.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1038 - type: CableMV - components: - - pos: 9.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1039 - type: CableMV - components: - - pos: 9.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1040 - type: TableWood - components: - - pos: -2.5,9.5 - parent: 0 - type: Transform -- uid: 1041 - type: TableWood - components: - - pos: -2.5,8.5 - parent: 0 - type: Transform -- uid: 1042 - type: TableWood - components: - - pos: -2.5,7.5 - parent: 0 - type: Transform -- uid: 1043 - type: TableWood - components: - - pos: -2.5,6.5 - parent: 0 - type: Transform -- uid: 1044 - type: TableWood - components: - - pos: -2.5,3.5 - parent: 0 - type: Transform -- uid: 1045 - type: TableWood - components: - - pos: -2.5,2.5 - parent: 0 - type: Transform -- uid: 1046 - type: TableWood - components: - - pos: -2.5,1.5 - parent: 0 - type: Transform -- uid: 1047 - type: TableWood - components: - - pos: -2.5,-1.5 - parent: 0 - type: Transform -- uid: 1048 - type: TableWood - components: - - pos: -2.5,-2.5 - parent: 0 - type: Transform -- uid: 1049 - type: TableWood - components: - - pos: -2.5,-3.5 - parent: 0 - type: Transform -- uid: 1050 - type: TableWood - components: - - pos: -2.5,-4.5 - parent: 0 - type: Transform -- uid: 1051 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -23.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1052 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 0 - type: Transform -- uid: 1053 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 0 - type: Transform -- uid: 1054 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 0 - type: Transform -- uid: 1055 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 0 - type: Transform -- uid: 1056 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 0 - type: Transform -- uid: 1057 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 0 - type: Transform -- uid: 1058 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -3.5,6.5 - parent: 0 - type: Transform -- uid: 1059 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -3.5,7.5 - parent: 0 - type: Transform -- uid: 1060 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -3.5,8.5 - parent: 0 - type: Transform -- uid: 1061 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -1.5,9.5 - parent: 0 - type: Transform -- uid: 1062 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -1.5,8.5 - parent: 0 - type: Transform -- uid: 1063 - type: hydroponicsTray - components: - - pos: -16.5,-9.5 - parent: 0 - type: Transform -- uid: 1064 - type: hydroponicsTray - components: - - pos: -15.5,-9.5 - parent: 0 - type: Transform -- uid: 1065 - type: hydroponicsTray - components: - - pos: -14.5,-9.5 - parent: 0 - type: Transform -- uid: 1066 - type: hydroponicsTray - components: - - pos: -13.5,-9.5 - parent: 0 - type: Transform -- uid: 1067 - type: hydroponicsTray - components: - - pos: -12.5,-9.5 - parent: 0 - type: Transform -- uid: 1068 - type: hydroponicsTray - components: - - pos: -11.5,-9.5 - parent: 0 - type: Transform -- uid: 1069 - type: hydroponicsTray - components: - - pos: -11.5,-5.5 - parent: 0 - type: Transform -- uid: 1070 - type: hydroponicsTray - components: - - pos: -12.5,-5.5 - parent: 0 - type: Transform -- uid: 1071 - type: hydroponicsTray - components: - - pos: -13.5,-5.5 - parent: 0 - type: Transform -- uid: 1072 - type: hydroponicsTray - components: - - pos: -14.5,-5.5 - parent: 0 - type: Transform -- uid: 1073 - type: hydroponicsTray - components: - - pos: -15.5,-5.5 - parent: 0 - type: Transform -- uid: 1074 - type: hydroponicsTray - components: - - pos: -16.5,-5.5 - parent: 0 - type: Transform -- uid: 1075 - type: SignHydro2 - components: - - pos: -6.5,-4.5 - parent: 0 - type: Transform -- uid: 1076 - type: SignHydro1 - components: - - pos: -7.5,-10.5 - parent: 0 - type: Transform -- uid: 1077 - type: WaterTankFull - components: - - pos: -22.5,-3.5 - parent: 0 - type: Transform -- uid: 1078 - type: SinkWide - components: - - pos: -21.5,-3.5 - parent: 0 - type: Transform -- uid: 1079 - type: AirlockGlass - components: - - pos: -24.5,1.5 - parent: 0 - type: Transform -- uid: 1080 - type: AirlockGlass - components: - - pos: -24.5,2.5 - parent: 0 - type: Transform -- uid: 1081 - type: AirlockGlass - components: - - pos: -21.5,9.5 - parent: 0 - type: Transform -- uid: 1082 - type: AirlockGlass - components: - - pos: -21.5,10.5 - parent: 0 - type: Transform -- uid: 1083 - type: DisposalUnit - components: - - pos: -9.5,-9.5 - parent: 0 - type: Transform -- uid: 1084 - type: DisposalUnit - components: - - desc: Sends stuff to kitchen. - name: kitchen mail tube - type: MetaData - - pos: -9.5,-5.5 - parent: 0 - type: Transform -- uid: 1085 - type: TableGlass - components: - - pos: -16.5,-7.5 - parent: 0 - type: Transform -- uid: 1086 - type: SeedExtractor - components: - - pos: -15.5,-7.5 - parent: 0 - type: Transform -- uid: 1087 - type: TableGlass - components: - - pos: -14.5,-7.5 - parent: 0 - type: Transform -- uid: 1088 - type: TableGlass - components: - - pos: -13.5,-7.5 - parent: 0 - type: Transform -- uid: 1089 - type: TableGlass - components: - - pos: -12.5,-7.5 - parent: 0 - type: Transform -- uid: 1090 - type: TableGlass - components: - - pos: -11.5,-7.5 - parent: 0 - type: Transform -- uid: 1091 - type: VendingMachineSeeds - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-5.5 - parent: 0 - type: Transform -- uid: 1092 - type: VendingMachineNutri - components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,-5.5 - parent: 0 - type: Transform -- uid: 1093 - type: WaterTankHighCapacity - components: - - pos: -18.5,-6.5 - parent: 0 - type: Transform -- uid: 1094 - type: VendingMachineHydrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,-7.5 - parent: 0 - type: Transform -- uid: 1095 - type: Table - components: - - pos: -18.5,-5.5 - parent: 0 - type: Transform -- uid: 1096 - type: Table - components: - - pos: -18.5,-9.5 - parent: 0 - type: Transform -- uid: 1097 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -7.5,-8.5 - parent: 0 - type: Transform -- uid: 1098 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 0 - type: Transform -- uid: 1099 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -8.5,-8.5 - parent: 0 - type: Transform -- uid: 1100 - type: WindoorKitchenHydroponicsLocked - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-8.5 - parent: 0 - type: Transform -- uid: 1101 - type: Table - components: - - pos: -7.5,-7.5 - parent: 0 - type: Transform -- uid: 1102 - type: Table - components: - - pos: -8.5,-7.5 - parent: 0 - type: Transform -- uid: 1103 - type: LockerBotanistFilled - components: - - pos: -17.5,-5.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1104 - type: DisposalTrunk - components: - - pos: -9.5,-5.5 - parent: 0 - type: Transform -- uid: 1105 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -9.5,-6.5 - parent: 0 - type: Transform -- uid: 1106 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-6.5 - parent: 0 - type: Transform -- uid: 1107 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-6.5 - parent: 0 - type: Transform -- uid: 1108 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 0 - type: Transform -- uid: 1109 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-6.5 - parent: 0 - type: Transform -- uid: 1110 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-6.5 - parent: 0 - type: Transform -- uid: 1111 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-6.5 - parent: 0 - type: Transform -- uid: 1112 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 0 - type: Transform -- uid: 1113 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 0 - type: Transform -- uid: 1114 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 0 - type: Transform -- uid: 1115 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 0 - type: Transform -- uid: 1116 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 0 - type: Transform -- uid: 1117 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 0 - type: Transform -- uid: 1118 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 0 - type: Transform -- uid: 1119 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 0 - type: Transform -- uid: 1120 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-3.5 - parent: 0 - type: Transform -- uid: 1121 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 0 - type: Transform -- uid: 1122 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 4.5,-5.5 - parent: 0 - type: Transform -- uid: 1123 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 0 - type: Transform -- uid: 1124 - type: VendingMachineChefvend - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,-3.5 - parent: 0 - type: Transform -- uid: 1125 - type: CableApcExtension - components: - - pos: -8.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1126 - type: CableApcExtension - components: - - pos: -8.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1127 - type: CableApcExtension - components: - - pos: -9.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1128 - type: CableApcExtension - components: - - pos: -10.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1129 - type: CableApcExtension - components: - - pos: -10.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1130 - type: CableApcExtension - components: - - pos: -10.5,-5.5 - parent: 0 - type: Transform -- uid: 1131 - type: CableApcExtension - components: - - pos: -10.5,-6.5 - parent: 0 - type: Transform -- uid: 1132 - type: CableApcExtension - components: - - pos: -10.5,-7.5 - parent: 0 - type: Transform -- uid: 1133 - type: CableApcExtension - components: - - pos: -10.5,-8.5 - parent: 0 - type: Transform -- uid: 1134 - type: CableApcExtension - components: - - pos: -10.5,-9.5 - parent: 0 - type: Transform -- uid: 1135 - type: CableApcExtension - components: - - pos: -11.5,-6.5 - parent: 0 - type: Transform -- uid: 1136 - type: CableApcExtension - components: - - pos: -12.5,-6.5 - parent: 0 - type: Transform -- uid: 1137 - type: CableApcExtension - components: - - pos: -13.5,-6.5 - parent: 0 - type: Transform -- uid: 1138 - type: CableApcExtension - components: - - pos: -14.5,-6.5 - parent: 0 - type: Transform -- uid: 1139 - type: CableApcExtension - components: - - pos: -15.5,-6.5 - parent: 0 - type: Transform -- uid: 1140 - type: CableApcExtension - components: - - pos: -16.5,-6.5 - parent: 0 - type: Transform -- uid: 1141 - type: CableApcExtension - components: - - pos: -17.5,-6.5 - parent: 0 - type: Transform -- uid: 1142 - type: CableApcExtension - components: - - pos: -17.5,-7.5 - parent: 0 - type: Transform -- uid: 1143 - type: CableApcExtension - components: - - pos: -17.5,-8.5 - parent: 0 - type: Transform -- uid: 1144 - type: CableApcExtension - components: - - pos: -17.5,-9.5 - parent: 0 - type: Transform -- uid: 1145 - type: CableApcExtension - components: - - pos: -11.5,-8.5 - parent: 0 - type: Transform -- uid: 1146 - type: CableApcExtension - components: - - pos: -12.5,-8.5 - parent: 0 - type: Transform -- uid: 1147 - type: CableApcExtension - components: - - pos: -13.5,-8.5 - parent: 0 - type: Transform -- uid: 1148 - type: CableApcExtension - components: - - pos: -14.5,-8.5 - parent: 0 - type: Transform -- uid: 1149 - type: CableApcExtension - components: - - pos: -15.5,-8.5 - parent: 0 - type: Transform -- uid: 1150 - type: CableApcExtension - components: - - pos: -16.5,-8.5 - parent: 0 - type: Transform -- uid: 1151 - type: CableApcExtension - components: - - pos: -9.5,-6.5 - parent: 0 - type: Transform -- uid: 1152 - type: CableApcExtension - components: - - pos: -8.5,-6.5 - parent: 0 - type: Transform -- uid: 1153 - type: CableApcExtension - components: - - pos: -7.5,-6.5 - parent: 0 - type: Transform -- uid: 1154 - type: CableApcExtension - components: - - pos: -8.5,-1.5 - parent: 0 - type: Transform -- uid: 1155 - type: CableApcExtension - components: - - pos: -8.5,-0.5 - parent: 0 - type: Transform -- uid: 1156 - type: CableApcExtension - components: - - pos: -8.5,0.5 - parent: 0 - type: Transform -- uid: 1157 - type: CableApcExtension - components: - - pos: -8.5,1.5 - parent: 0 - type: Transform -- uid: 1158 - type: CableApcExtension - components: - - pos: -8.5,2.5 - parent: 0 - type: Transform -- uid: 1159 - type: CableApcExtension - components: - - pos: -8.5,3.5 - parent: 0 - type: Transform -- uid: 1160 - type: CableApcExtension - components: - - pos: -8.5,4.5 - parent: 0 - type: Transform -- uid: 1161 - type: CableApcExtension - components: - - pos: -8.5,5.5 - parent: 0 - type: Transform -- uid: 1162 - type: CableApcExtension - components: - - pos: -8.5,6.5 - parent: 0 - type: Transform -- uid: 1163 - type: CableApcExtension - components: - - pos: -8.5,7.5 - parent: 0 - type: Transform -- uid: 1164 - type: CableApcExtension - components: - - pos: -8.5,8.5 - parent: 0 - type: Transform -- uid: 1165 - type: CableApcExtension - components: - - pos: -7.5,-0.5 - parent: 0 - type: Transform -- uid: 1166 - type: CableApcExtension - components: - - pos: -9.5,-0.5 - parent: 0 - type: Transform -- uid: 1167 - type: CableApcExtension - components: - - pos: -9.5,4.5 - parent: 0 - type: Transform -- uid: 1168 - type: CableApcExtension - components: - - pos: -9.5,8.5 - parent: 0 - type: Transform -- uid: 1169 - type: CableApcExtension - components: - - pos: -11.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1170 - type: CableApcExtension - components: - - pos: -12.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1171 - type: CableApcExtension - components: - - pos: -12.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1172 - type: CableApcExtension - components: - - pos: -12.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1173 - type: CableApcExtension - components: - - pos: -12.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1174 - type: CableApcExtension - components: - - pos: -12.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1175 - type: CableApcExtension - components: - - pos: -12.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1176 - type: CableApcExtension - components: - - pos: -12.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1177 - type: CableApcExtension - components: - - pos: -13.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1178 - type: CableApcExtension - components: - - pos: -14.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1179 - type: CableApcExtension - components: - - pos: -15.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1180 - type: CableApcExtension - components: - - pos: -16.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1181 - type: CableApcExtension - components: - - pos: -17.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1182 - type: CableApcExtension - components: - - pos: -18.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1183 - type: CableApcExtension - components: - - pos: -19.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1184 - type: CableApcExtension - components: - - pos: -20.5,-3.5 - parent: 0 - type: Transform -- uid: 1185 - type: CableApcExtension - components: - - pos: -20.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1186 - type: CableApcExtension - components: - - pos: -21.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1187 - type: CableApcExtension - components: - - pos: -21.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1188 - type: CableApcExtension - components: - - pos: -21.5,-6.5 - parent: 0 - type: Transform -- uid: 1189 - type: CableApcExtension - components: - - pos: -21.5,-7.5 - parent: 0 - type: Transform -- uid: 1190 - type: CableApcExtension - components: - - pos: -21.5,-8.5 - parent: 0 - type: Transform -- uid: 1191 - type: CableApcExtension - components: - - pos: -22.5,-7.5 - parent: 0 - type: Transform -- uid: 1192 - type: CableApcExtension - components: - - pos: -7.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1193 - type: CableApcExtension - components: - - pos: -6.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1194 - type: CableApcExtension - components: - - pos: -5.5,-3.5 - parent: 0 - type: Transform -- uid: 1195 - type: CableApcExtension - components: - - pos: -4.5,-3.5 - parent: 0 - type: Transform -- uid: 1196 - type: CableApcExtension - components: - - pos: -4.5,-4.5 - parent: 0 - type: Transform -- uid: 1197 - type: CableApcExtension - components: - - pos: -4.5,-5.5 - parent: 0 - type: Transform -- uid: 1198 - type: CableApcExtension - components: - - pos: -4.5,-6.5 - parent: 0 - type: Transform -- uid: 1199 - type: CableApcExtension - components: - - pos: -4.5,-7.5 - parent: 0 - type: Transform -- uid: 1200 - type: CableApcExtension - components: - - pos: -3.5,-7.5 - parent: 0 - type: Transform -- uid: 1201 - type: CableApcExtension - components: - - pos: -2.5,-7.5 - parent: 0 - type: Transform -- uid: 1202 - type: CableApcExtension - components: - - pos: -2.5,-8.5 - parent: 0 - type: Transform -- uid: 1203 - type: CableApcExtension - components: - - pos: -4.5,-2.5 - parent: 0 - type: Transform -- uid: 1204 - type: CableApcExtension - components: - - pos: -4.5,-1.5 - parent: 0 - type: Transform -- uid: 1205 - type: CableApcExtension - components: - - pos: -4.5,-0.5 - parent: 0 - type: Transform -- uid: 1206 - type: CableApcExtension - components: - - pos: -4.5,0.5 - parent: 0 - type: Transform -- uid: 1207 - type: CableApcExtension - components: - - pos: -4.5,1.5 - parent: 0 - type: Transform -- uid: 1208 - type: CableApcExtension - components: - - pos: -4.5,2.5 - parent: 0 - type: Transform -- uid: 1209 - type: CableApcExtension - components: - - pos: -4.5,3.5 - parent: 0 - type: Transform -- uid: 1210 - type: CableApcExtension - components: - - pos: -4.5,4.5 - parent: 0 - type: Transform -- uid: 1211 - type: CableApcExtension - components: - - pos: -4.5,5.5 - parent: 0 - type: Transform -- uid: 1212 - type: CableApcExtension - components: - - pos: -4.5,6.5 - parent: 0 - type: Transform -- uid: 1213 - type: CableApcExtension - components: - - pos: -4.5,7.5 - parent: 0 - type: Transform -- uid: 1214 - type: CableApcExtension - components: - - pos: -4.5,8.5 - parent: 0 - type: Transform -- uid: 1215 - type: CableApcExtension - components: - - pos: -4.5,9.5 - parent: 0 - type: Transform -- uid: 1216 - type: CableApcExtension - components: - - pos: -12.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1217 - type: CableApcExtension - components: - - pos: -12.5,15.5 - parent: 0 - type: Transform -- uid: 1218 - type: CableApcExtension - components: - - pos: -12.5,16.5 - parent: 0 - type: Transform -- uid: 1219 - type: CableApcExtension - components: - - pos: -12.5,17.5 - parent: 0 - type: Transform -- uid: 1220 - type: CableApcExtension - components: - - pos: -12.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1221 - type: CableApcExtension - components: - - pos: -12.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1222 - type: CableApcExtension - components: - - pos: -12.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1223 - type: CableApcExtension - components: - - pos: -12.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1224 - type: CableApcExtension - components: - - pos: -12.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1225 - type: CableApcExtension - components: - - pos: -13.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1226 - type: CableApcExtension - components: - - pos: -14.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1227 - type: CableApcExtension - components: - - pos: -15.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1228 - type: CableApcExtension - components: - - pos: -17.5,10.5 - parent: 0 - type: Transform -- uid: 1229 - type: CableApcExtension - components: - - pos: -18.5,10.5 - parent: 0 - type: Transform -- uid: 1230 - type: CableApcExtension - components: - - pos: -16.5,10.5 - parent: 0 - type: Transform -- uid: 1231 - type: CableApcExtension - components: - - pos: -19.5,10.5 - parent: 0 - type: Transform -- uid: 1232 - type: CableApcExtension - components: - - pos: -20.5,10.5 - parent: 0 - type: Transform -- uid: 1233 - type: CableApcExtension - components: - - pos: -18.5,9.5 - parent: 0 - type: Transform -- uid: 1234 - type: CableApcExtension - components: - - pos: -18.5,8.5 - parent: 0 - type: Transform -- uid: 1235 - type: CableApcExtension - components: - - pos: -18.5,7.5 - parent: 0 - type: Transform -- uid: 1236 - type: CableApcExtension - components: - - pos: -12.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1237 - type: CableApcExtension - components: - - pos: -12.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1238 - type: CableApcExtension - components: - - pos: -12.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1239 - type: CableApcExtension - components: - - pos: -12.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1240 - type: CableApcExtension - components: - - pos: -12.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1241 - type: CableApcExtension - components: - - pos: -14.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1242 - type: CableApcExtension - components: - - pos: -15.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1243 - type: CableApcExtension - components: - - pos: -16.5,2.5 - parent: 0 - type: Transform -- uid: 1244 - type: CableApcExtension - components: - - pos: -17.5,2.5 - parent: 0 - type: Transform -- uid: 1245 - type: CableApcExtension - components: - - pos: -18.5,2.5 - parent: 0 - type: Transform -- uid: 1246 - type: CableApcExtension - components: - - pos: -19.5,2.5 - parent: 0 - type: Transform -- uid: 1247 - type: CableApcExtension - components: - - pos: -20.5,2.5 - parent: 0 - type: Transform -- uid: 1248 - type: CableApcExtension - components: - - pos: -21.5,2.5 - parent: 0 - type: Transform -- uid: 1249 - type: CableApcExtension - components: - - pos: -22.5,2.5 - parent: 0 - type: Transform -- uid: 1250 - type: CableApcExtension - components: - - pos: -18.5,3.5 - parent: 0 - type: Transform -- uid: 1251 - type: CableApcExtension - components: - - pos: -18.5,4.5 - parent: 0 - type: Transform -- uid: 1252 - type: AirlockMaintLocked - components: - - pos: -16.5,2.5 - parent: 0 - type: Transform -- uid: 1253 - type: WallSolid - components: - - pos: -16.5,1.5 - parent: 0 - type: Transform -- uid: 1254 - type: Dresser - components: - - pos: -17.5,5.5 - parent: 0 - type: Transform -- uid: 1255 - type: BedsheetSpawner - components: - - pos: -17.5,4.5 - parent: 0 - type: Transform -- uid: 1256 - type: Bed - components: - - pos: -17.5,4.5 - parent: 0 - type: Transform -- uid: 1257 - type: CableApcExtension - components: - - pos: -18.5,1.5 - parent: 0 - type: Transform -- uid: 1258 - type: CableApcExtension - components: - - pos: -18.5,0.5 - parent: 0 - type: Transform -- uid: 1259 - type: CableApcExtension - components: - - pos: -18.5,-0.5 - parent: 0 - type: Transform -- uid: 1260 - type: CableApcExtension - components: - - pos: -21.5,10.5 - parent: 0 - type: Transform -- uid: 1261 - type: CableApcExtension - components: - - pos: -22.5,10.5 - parent: 0 - type: Transform -- uid: 1262 - type: CableApcExtension - components: - - pos: -22.5,11.5 - parent: 0 - type: Transform -- uid: 1263 - type: CableApcExtension - components: - - pos: -22.5,12.5 - parent: 0 - type: Transform -- uid: 1264 - type: CableApcExtension - components: - - pos: -22.5,13.5 - parent: 0 - type: Transform -- uid: 1265 - type: CableApcExtension - components: - - pos: -22.5,14.5 - parent: 0 - type: Transform -- uid: 1266 - type: CableApcExtension - components: - - pos: -22.5,15.5 - parent: 0 - type: Transform -- uid: 1267 - type: CableApcExtension - components: - - pos: -22.5,16.5 - parent: 0 - type: Transform -- uid: 1268 - type: CableApcExtension - components: - - pos: -21.5,16.5 - parent: 0 - type: Transform -- uid: 1269 - type: CableApcExtension - components: - - pos: -20.5,16.5 - parent: 0 - type: Transform -- uid: 1270 - type: CableApcExtension - components: - - pos: -18.5,16.5 - parent: 0 - type: Transform -- uid: 1271 - type: CableApcExtension - components: - - pos: -19.5,16.5 - parent: 0 - type: Transform -- uid: 1272 - type: CableApcExtension - components: - - pos: -17.5,16.5 - parent: 0 - type: Transform -- uid: 1273 - type: CableApcExtension - components: - - pos: -17.5,15.5 - parent: 0 - type: Transform -- uid: 1274 - type: CableApcExtension - components: - - pos: -17.5,14.5 - parent: 0 - type: Transform -- uid: 1275 - type: CableApcExtension - components: - - pos: -11.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1276 - type: CableApcExtension - components: - - pos: -10.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1277 - type: CableApcExtension - components: - - pos: -9.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1278 - type: CableApcExtension - components: - - pos: -8.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1279 - type: CableApcExtension - components: - - pos: -7.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1280 - type: CableApcExtension - components: - - pos: -6.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1281 - type: CableApcExtension - components: - - pos: -5.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1282 - type: CableApcExtension - components: - - pos: -4.5,13.5 - parent: 0 - type: Transform -- uid: 1283 - type: CableApcExtension - components: - - pos: -3.5,13.5 - parent: 0 - type: Transform -- uid: 1284 - type: CableApcExtension - components: - - pos: -2.5,13.5 - parent: 0 - type: Transform -- uid: 1285 - type: CableApcExtension - components: - - pos: -1.5,13.5 - parent: 0 - type: Transform -- uid: 1286 - type: CableApcExtension - components: - - pos: -2.5,14.5 - parent: 0 - type: Transform -- uid: 1287 - type: CableApcExtension - components: - - pos: 7.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1288 - type: CableApcExtension - components: - - pos: 7.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1289 - type: CableApcExtension - components: - - pos: 6.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1290 - type: CableApcExtension - components: - - pos: 5.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1291 - type: CableApcExtension - components: - - pos: 4.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1292 - type: CableApcExtension - components: - - pos: 3.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1293 - type: CableApcExtension - components: - - pos: 3.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1294 - type: CableApcExtension - components: - - pos: 2.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1295 - type: CableApcExtension - components: - - pos: 7.5,-7.5 - parent: 0 - type: Transform -- uid: 1296 - type: CableApcExtension - components: - - pos: 7.5,-6.5 - parent: 0 - type: Transform -- uid: 1297 - type: CableApcExtension - components: - - pos: 6.5,-6.5 - parent: 0 - type: Transform -- uid: 1298 - type: CableApcExtension - components: - - pos: 5.5,-6.5 - parent: 0 - type: Transform -- uid: 1299 - type: CableApcExtension - components: - - pos: 4.5,-6.5 - parent: 0 - type: Transform -- uid: 1300 - type: CableApcExtension - components: - - pos: 4.5,-5.5 - parent: 0 - type: Transform -- uid: 1301 - type: CableApcExtension - components: - - pos: 4.5,-4.5 - parent: 0 - type: Transform -- uid: 1302 - type: CableApcExtension - components: - - pos: 4.5,-3.5 - parent: 0 - type: Transform -- uid: 1303 - type: CableApcExtension - components: - - pos: 4.5,-2.5 - parent: 0 - type: Transform -- uid: 1304 - type: CableApcExtension - components: - - pos: 4.5,-1.5 - parent: 0 - type: Transform -- uid: 1305 - type: CableApcExtension - components: - - pos: 4.5,-0.5 - parent: 0 - type: Transform -- uid: 1306 - type: CableApcExtension - components: - - pos: 4.5,0.5 - parent: 0 - type: Transform -- uid: 1307 - type: CableApcExtension - components: - - pos: 5.5,-1.5 - parent: 0 - type: Transform -- uid: 1308 - type: CableApcExtension - components: - - pos: 6.5,-1.5 - parent: 0 - type: Transform -- uid: 1309 - type: CableApcExtension - components: - - pos: 7.5,-1.5 - parent: 0 - type: Transform -- uid: 1310 - type: CableApcExtension - components: - - pos: 8.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1311 - type: CableApcExtension - components: - - pos: 9.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1312 - type: CableApcExtension - components: - - pos: 1.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1313 - type: CableApcExtension - components: - - pos: 0.5,-8.5 - parent: 0 - type: Transform -- uid: 1314 - type: CableApcExtension - components: - - pos: 0.5,-7.5 - parent: 0 - type: Transform -- uid: 1315 - type: CableApcExtension - components: - - pos: 0.5,-6.5 - parent: 0 - type: Transform -- uid: 1316 - type: CableApcExtension - components: - - pos: 0.5,-5.5 - parent: 0 - type: Transform -- uid: 1317 - type: CableApcExtension - components: - - pos: 0.5,-4.5 - parent: 0 - type: Transform -- uid: 1318 - type: CableApcExtension - components: - - pos: 0.5,-3.5 - parent: 0 - type: Transform -- uid: 1319 - type: CableApcExtension - components: - - pos: 0.5,-2.5 - parent: 0 - type: Transform -- uid: 1320 - type: CableApcExtension - components: - - pos: 0.5,-1.5 - parent: 0 - type: Transform -- uid: 1321 - type: CableApcExtension - components: - - pos: 0.5,-0.5 - parent: 0 - type: Transform -- uid: 1322 - type: CableApcExtension - components: - - pos: 0.5,0.5 - parent: 0 - type: Transform -- uid: 1323 - type: CableApcExtension - components: - - pos: 8.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1324 - type: CableApcExtension - components: - - pos: 9.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1325 - type: CableApcExtension - components: - - pos: 9.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1326 - type: CableApcExtension - components: - - pos: 9.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1327 - type: CableApcExtension - components: - - pos: 9.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1328 - type: CableApcExtension - components: - - pos: 9.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1329 - type: CableApcExtension - components: - - pos: 9.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1330 - type: CableApcExtension - components: - - pos: 9.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1331 - type: CableApcExtension - components: - - pos: 9.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1332 - type: CableApcExtension - components: - - pos: 8.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1333 - type: CableApcExtension - components: - - pos: 8.5,-11.5 - parent: 0 - type: Transform -- uid: 1334 - type: CableApcExtension - components: - - pos: 7.5,-11.5 - parent: 0 - type: Transform -- uid: 1335 - type: CableApcExtension - components: - - pos: 6.5,-11.5 - parent: 0 - type: Transform -- uid: 1336 - type: CableApcExtension - components: - - pos: 5.5,-11.5 - parent: 0 - type: Transform -- uid: 1337 - type: CableApcExtension - components: - - pos: 4.5,-11.5 - parent: 0 - type: Transform -- uid: 1338 - type: CableApcExtension - components: - - pos: 3.5,-11.5 - parent: 0 - type: Transform -- uid: 1339 - type: CableApcExtension - components: - - pos: 2.5,-11.5 - parent: 0 - type: Transform -- uid: 1340 - type: CableApcExtension - components: - - pos: 1.5,-11.5 - parent: 0 - type: Transform -- uid: 1341 - type: CableApcExtension - components: - - pos: 0.5,-11.5 - parent: 0 - type: Transform -- uid: 1342 - type: CableApcExtension - components: - - pos: -0.5,-11.5 - parent: 0 - type: Transform -- uid: 1343 - type: CableApcExtension - components: - - pos: -1.5,-11.5 - parent: 0 - type: Transform -- uid: 1344 - type: CableApcExtension - components: - - pos: -2.5,-11.5 - parent: 0 - type: Transform -- uid: 1345 - type: CableApcExtension - components: - - pos: -3.5,-11.5 - parent: 0 - type: Transform -- uid: 1346 - type: CableApcExtension - components: - - pos: 9.5,-11.5 - parent: 0 - type: Transform -- uid: 1347 - type: CableApcExtension - components: - - pos: 10.5,-11.5 - parent: 0 - type: Transform -- uid: 1348 - type: CableApcExtension - components: - - pos: 11.5,-11.5 - parent: 0 - type: Transform -- uid: 1349 - type: CableApcExtension - components: - - pos: 11.5,-10.5 - parent: 0 - type: Transform -- uid: 1350 - type: CableApcExtension - components: - - pos: 11.5,-9.5 - parent: 0 - type: Transform -- uid: 1351 - type: CableApcExtension - components: - - pos: 11.5,-8.5 - parent: 0 - type: Transform -- uid: 1352 - type: CableApcExtension - components: - - pos: 11.5,-7.5 - parent: 0 - type: Transform -- uid: 1353 - type: CableApcExtension - components: - - pos: 11.5,-6.5 - parent: 0 - type: Transform -- uid: 1354 - type: CableApcExtension - components: - - pos: 11.5,-5.5 - parent: 0 - type: Transform -- uid: 1355 - type: CableApcExtension - components: - - pos: 11.5,-4.5 - parent: 0 - type: Transform -- uid: 1356 - type: CableApcExtension - components: - - pos: 11.5,-3.5 - parent: 0 - type: Transform -- uid: 1357 - type: CableApcExtension - components: - - pos: 11.5,-2.5 - parent: 0 - type: Transform -- uid: 1358 - type: CableApcExtension - components: - - pos: 11.5,-1.5 - parent: 0 - type: Transform -- uid: 1359 - type: CableApcExtension - components: - - pos: 11.5,-0.5 - parent: 0 - type: Transform -- uid: 1360 - type: CableApcExtension - components: - - pos: 6.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1361 - type: CableApcExtension - components: - - pos: 7.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1362 - type: CableApcExtension - components: - - pos: 8.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1363 - type: CableApcExtension - components: - - pos: 11.5,3.5 - parent: 0 - type: Transform -- uid: 1364 - type: CableApcExtension - components: - - pos: 10.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1365 - type: CableApcExtension - components: - - pos: 9.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1366 - type: CableApcExtension - components: - - pos: 9.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1367 - type: CableApcExtension - components: - - pos: 6.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1368 - type: CableApcExtension - components: - - pos: 6.5,4.5 - parent: 0 - type: Transform -- uid: 1369 - type: CableApcExtension - components: - - pos: 9.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1370 - type: CableApcExtension - components: - - pos: 11.5,4.5 - parent: 0 - type: Transform -- uid: 1371 - type: CableApcExtension - components: - - pos: 11.5,5.5 - parent: 0 - type: Transform -- uid: 1372 - type: CableApcExtension - components: - - pos: 11.5,6.5 - parent: 0 - type: Transform -- uid: 1373 - type: CableApcExtension - components: - - pos: 11.5,7.5 - parent: 0 - type: Transform -- uid: 1374 - type: CableApcExtension - components: - - pos: 11.5,8.5 - parent: 0 - type: Transform -- uid: 1375 - type: CableApcExtension - components: - - pos: 11.5,9.5 - parent: 0 - type: Transform -- uid: 1376 - type: CableApcExtension - components: - - pos: 11.5,10.5 - parent: 0 - type: Transform -- uid: 1377 - type: CableApcExtension - components: - - pos: 11.5,11.5 - parent: 0 - type: Transform -- uid: 1378 - type: CableApcExtension - components: - - pos: 11.5,12.5 - parent: 0 - type: Transform -- uid: 1379 - type: CableApcExtension - components: - - pos: 11.5,13.5 - parent: 0 - type: Transform -- uid: 1380 - type: CableApcExtension - components: - - pos: 11.5,14.5 - parent: 0 - type: Transform -- uid: 1381 - type: CableApcExtension - components: - - pos: 11.5,15.5 - parent: 0 - type: Transform -- uid: 1382 - type: CableApcExtension - components: - - pos: 11.5,16.5 - parent: 0 - type: Transform -- uid: 1383 - type: CableApcExtension - components: - - pos: 9.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1384 - type: CableApcExtension - components: - - pos: 9.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1385 - type: CableApcExtension - components: - - pos: 9.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1386 - type: CableApcExtension - components: - - pos: 9.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1387 - type: CableApcExtension - components: - - pos: 9.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1388 - type: CableApcExtension - components: - - pos: 9.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1389 - type: CableApcExtension - components: - - pos: 9.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1390 - type: CableApcExtension - components: - - pos: 9.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1391 - type: CableApcExtension - components: - - pos: 8.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1392 - type: CableApcExtension - components: - - pos: 7.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1393 - type: CableApcExtension - components: - - pos: 6.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1394 - type: CableApcExtension - components: - - pos: 5.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1395 - type: CableApcExtension - components: - - pos: 4.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1396 - type: CableApcExtension - components: - - pos: 3.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1397 - type: CableApcExtension - components: - - pos: 3.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1398 - type: CableApcExtension - components: - - pos: 3.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1399 - type: CableApcExtension - components: - - pos: 3.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1400 - type: CableApcExtension - components: - - pos: 2.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1401 - type: CableApcExtension - components: - - pos: 1.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1402 - type: CableApcExtension - components: - - pos: 11.5,17.5 - parent: 0 - type: Transform -- uid: 1403 - type: CableApcExtension - components: - - pos: 11.5,18.5 - parent: 0 - type: Transform -- uid: 1404 - type: CableApcExtension - components: - - pos: 11.5,19.5 - parent: 0 - type: Transform -- uid: 1405 - type: CableApcExtension - components: - - pos: 10.5,19.5 - parent: 0 - type: Transform -- uid: 1406 - type: CableApcExtension - components: - - pos: 9.5,19.5 - parent: 0 - type: Transform -- uid: 1407 - type: CableApcExtension - components: - - pos: 8.5,19.5 - parent: 0 - type: Transform -- uid: 1408 - type: CableApcExtension - components: - - pos: 7.5,19.5 - parent: 0 - type: Transform -- uid: 1409 - type: CableApcExtension - components: - - pos: 6.5,19.5 - parent: 0 - type: Transform -- uid: 1410 - type: CableApcExtension - components: - - pos: 6.5,18.5 - parent: 0 - type: Transform -- uid: 1411 - type: CableApcExtension - components: - - pos: 6.5,17.5 - parent: 0 - type: Transform -- uid: 1412 - type: CableApcExtension - components: - - pos: 6.5,16.5 - parent: 0 - type: Transform -- uid: 1413 - type: CableApcExtension - components: - - pos: 6.5,15.5 - parent: 0 - type: Transform -- uid: 1414 - type: CableApcExtension - components: - - pos: 6.5,14.5 - parent: 0 - type: Transform -- uid: 1415 - type: CableApcExtension - components: - - pos: 7.5,14.5 - parent: 0 - type: Transform -- uid: 1416 - type: CableApcExtension - components: - - pos: 8.5,14.5 - parent: 0 - type: Transform -- uid: 1417 - type: CableApcExtension - components: - - pos: 7.5,17.5 - parent: 0 - type: Transform -- uid: 1418 - type: CableApcExtension - components: - - pos: 8.5,17.5 - parent: 0 - type: Transform -- uid: 1419 - type: CableApcExtension - components: - - pos: 6.5,6.5 - parent: 0 - type: Transform -- uid: 1420 - type: CableApcExtension - components: - - pos: 6.5,7.5 - parent: 0 - type: Transform -- uid: 1421 - type: CableApcExtension - components: - - pos: 6.5,8.5 - parent: 0 - type: Transform -- uid: 1422 - type: CableApcExtension - components: - - pos: 6.5,9.5 - parent: 0 - type: Transform -- uid: 1423 - type: CableApcExtension - components: - - pos: 5.5,7.5 - parent: 0 - type: Transform -- uid: 1424 - type: CableApcExtension - components: - - pos: 4.5,7.5 - parent: 0 - type: Transform -- uid: 1425 - type: CableApcExtension - components: - - pos: 3.5,7.5 - parent: 0 - type: Transform -- uid: 1426 - type: CableApcExtension - components: - - pos: 2.5,7.5 - parent: 0 - type: Transform -- uid: 1427 - type: CableApcExtension - components: - - pos: 2.5,8.5 - parent: 0 - type: Transform -- uid: 1428 - type: CableApcExtension - components: - - pos: 2.5,9.5 - parent: 0 - type: Transform -- uid: 1429 - type: CableApcExtension - components: - - pos: 2.5,6.5 - parent: 0 - type: Transform -- uid: 1430 - type: CableApcExtension - components: - - pos: 2.5,5.5 - parent: 0 - type: Transform -- uid: 1431 - type: CableApcExtension - components: - - pos: 6.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1432 - type: CableApcExtension - components: - - pos: 5.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1433 - type: CableApcExtension - components: - - pos: 4.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1434 - type: CableApcExtension - components: - - pos: 3.5,2.5 - parent: 0 - type: Transform -- uid: 1435 - type: CableApcExtension - components: - - pos: 2.5,2.5 - parent: 0 - type: Transform -- uid: 1436 - type: CableApcExtension - components: - - pos: 1.5,2.5 - parent: 0 - type: Transform -- uid: 1437 - type: CableApcExtension - components: - - pos: 0.5,2.5 - parent: 0 - type: Transform -- uid: 1438 - type: CableApcExtension - components: - - pos: 0.5,3.5 - parent: 0 - type: Transform -- uid: 1439 - type: CableApcExtension - components: - - pos: 0.5,4.5 - parent: 0 - type: Transform -- uid: 1440 - type: CableApcExtension - components: - - pos: 0.5,5.5 - parent: 0 - type: Transform -- uid: 1441 - type: CableApcExtension - components: - - pos: 0.5,6.5 - parent: 0 - type: Transform -- uid: 1442 - type: CableApcExtension - components: - - pos: 0.5,7.5 - parent: 0 - type: Transform -- uid: 1443 - type: CableApcExtension - components: - - pos: 0.5,8.5 - parent: 0 - type: Transform -- uid: 1444 - type: CableApcExtension - components: - - pos: 0.5,9.5 - parent: 0 - type: Transform -- uid: 1445 - type: CableApcExtension - components: - - pos: -0.5,9.5 - parent: 0 - type: Transform -- uid: 1446 - type: CableApcExtension - components: - - pos: -0.5,10.5 - parent: 0 - type: Transform -- uid: 1447 - type: CableApcExtension - components: - - pos: -0.5,4.5 - parent: 0 - type: Transform -- uid: 1448 - type: CableApcExtension - components: - - pos: -0.5,-1.5 - parent: 0 - type: Transform -- uid: 1449 - type: CableApcExtension - components: - - pos: -3.5,1.5 - parent: 0 - type: Transform -- uid: 1450 - type: CableApcExtension - components: - - pos: -3.5,7.5 - parent: 0 - type: Transform -- uid: 1451 - type: CableApcExtension - components: - - pos: -5.5,9.5 - parent: 0 - type: Transform -- uid: 1452 - type: CableApcExtension - components: - - pos: -5.5,10.5 - parent: 0 - type: Transform -- uid: 1453 - type: Table - components: - - pos: -18.5,-8.5 - parent: 0 - type: Transform -- uid: 1454 - type: KitchenReagentGrinder - components: - - pos: -18.5,-8.5 - parent: 0 - type: Transform -- uid: 1455 - type: HydroponicsToolMiniHoe - components: - - pos: -11.520877,-7.441095 - parent: 0 - type: Transform -- uid: 1456 - type: HydroponicsToolSpade - components: - - pos: -11.489627,-7.378595 - parent: 0 - type: Transform -- uid: 1457 - type: HydroponicsToolClippers - components: - - pos: -12.442752,-7.42547 - parent: 0 - type: Transform -- uid: 1458 - type: HydroponicsToolScythe - components: - - pos: -12.458377,-7.42547 - parent: 0 - type: Transform -- uid: 1459 - type: HydroponicsToolHatchet - components: - - pos: -12.505252,-7.378595 - parent: 0 - type: Transform -- uid: 1460 - type: ClothingHeadHatTrucker - components: - - pos: -18.506594,-5.4646573 - parent: 0 - type: Transform -- uid: 1461 - type: ClothingHandsGlovesLeather - components: - - pos: -18.506594,-9.370907 - parent: 0 - type: Transform -- uid: 1462 - type: SignDoors - components: - - pos: 0.5,-9.5 - parent: 0 - type: Transform -- uid: 1463 - type: PosterLegitNanotrasenLogo - components: - - pos: -5.5,-8.5 - parent: 0 - type: Transform -- uid: 1464 - type: SignDirectionalSec - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-10.5 - parent: 0 - type: Transform -- uid: 1465 - type: SignDirectionalSupply - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 0 - type: Transform -- uid: 1466 - type: SignDirectionalMed - components: - - pos: -5.504419,-10.705832 - parent: 0 - type: Transform -- uid: 1467 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: -5.4997582,-10.299582 - parent: 0 - type: Transform -- uid: 1468 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: 0.49738908,-10.299582 - parent: 0 - type: Transform -- uid: 1469 - type: SignDirectionalSci - components: - - pos: 0.49738908,-10.690207 - parent: 0 - type: Transform -- uid: 1470 - type: RandomPosterLegit - components: - - pos: -17.5,-4.5 - parent: 0 - type: Transform -- uid: 1471 - type: RandomPosterLegit - components: - - pos: -15.5,-4.5 - parent: 0 - type: Transform -- uid: 1472 - type: SpawnPointBotanist - components: - - pos: -16.5,-6.5 - parent: 0 - type: Transform -- uid: 1473 - type: SpawnPointBotanist - components: - - pos: -13.5,-6.5 - parent: 0 - type: Transform -- uid: 1474 - type: PlantBGoneSpray - components: - - pos: -7.4868813,-7.4614778 - parent: 0 - type: Transform -- uid: 1475 - type: PestSpray - components: - - pos: -8.549381,-7.3677278 - parent: 0 - type: Transform -- uid: 1476 - type: WeedSpray - components: - - pos: -8.252506,-7.3833528 - parent: 0 - type: Transform -- uid: 1477 - type: Bucket - components: - - pos: -16.468277,-7.2739778 - parent: 0 - type: Transform -- uid: 1478 - type: MopBucket - components: - - pos: -20.532074,-3.4493594 - parent: 0 - type: Transform -- uid: 1479 - type: ClosetL3JanitorFilled - components: - - pos: -21.5,-9.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1480 - type: VendingMachineJaniDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,-9.5 - parent: 0 - type: Transform -- uid: 1481 - type: SpawnVehicleJanicart - components: - - pos: -22.5,-6.5 - parent: 0 - type: Transform -- uid: 1482 - type: VehicleKeyJanicart - components: - - pos: -22.528929,-6.6977267 - parent: 0 - type: Transform -- uid: 1483 - type: DisposalUnit - components: - - pos: -20.5,-6.5 - parent: 0 - type: Transform -- uid: 1484 - type: WaterTankFull - components: - - pos: -23.5,-9.5 - parent: 0 - type: Transform -- uid: 1485 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-8.5 - parent: 0 - type: Transform -- uid: 1486 - type: ClosetJanitorFilled - components: - - pos: -23.5,-8.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1487 - type: TableReinforced - components: - - pos: -23.5,-7.5 - parent: 0 - type: Transform -- uid: 1488 - type: TableReinforced - components: - - pos: -23.5,-6.5 - parent: 0 - type: Transform -- uid: 1489 - type: JanitorialTrolley - components: - - pos: -20.5,-7.5 - parent: 0 - type: Transform -- uid: 1490 - type: LightReplacer - components: - - pos: -23.51768,-6.333922 - parent: 0 - type: Transform -- uid: 1491 - type: SprayBottleSpaceCleaner - components: - - pos: -23.528929,-7.7805715 - parent: 0 - type: Transform -- uid: 1492 - type: SprayBottleSpaceCleaner - components: - - pos: -23.435179,-7.6711965 - parent: 0 - type: Transform -- uid: 1493 - type: TrashBag - components: - - pos: -23.716429,-6.4211965 - parent: 0 - type: Transform -- uid: 1494 - type: TrashBag - components: - - pos: -23.466429,-6.4368215 - parent: 0 - type: Transform -- uid: 1495 - type: ClothingHandsGlovesColorOrange - components: - - pos: -23.466429,-7.3899465 - parent: 0 - type: Transform -- uid: 1496 - type: BoxLightMixed - components: - - pos: -23.513304,-6.9524465 - parent: 0 - type: Transform -- uid: 1497 - type: Bucket - components: - - pos: -23.720804,-7.615172 - parent: 0 - type: Transform -- uid: 1498 - type: MopItem - components: - - pos: -20.685179,-8.436821 - parent: 0 - type: Transform -- uid: 1499 - type: Bucket - components: - - pos: -20.513304,-8.561821 - parent: 0 - type: Transform -- uid: 1500 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1501 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1502 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1503 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1504 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -26.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1505 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1506 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1507 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1508 - type: GasPipeBend - components: - - pos: -21.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1509 - type: GasPipeStraight - components: - - pos: -21.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1510 - type: GasPipeStraight - components: - - pos: -21.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1511 - type: GasVentPump - components: - - pos: -22.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1512 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -21.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1513 - type: ExtinguisherCabinetFilled - components: - - pos: -6.5,-2.5 - parent: 0 - type: Transform -- uid: 1514 - type: ClosetFireFilled - components: - - pos: 1.5,-10.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1515 - type: Poweredlight - components: - - pos: -16.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1516 - type: Poweredlight - components: - - pos: -11.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1517 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1518 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1519 - type: MopItem - components: - - pos: -20.529812,-3.4716563 - parent: 0 - type: Transform -- uid: 1520 - type: Lamp - components: - - pos: -17.392416,-1.3091464 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 1521 - type: WheatSeeds - components: - - pos: -13.5,-7.5 - parent: 0 - type: Transform -- uid: 1522 - type: ChanterelleSeeds - components: - - pos: -13.5,-7.5 - parent: 0 - type: Transform -- uid: 1523 - type: CableApcExtension - components: - - pos: -22.5,3.5 - parent: 0 - type: Transform -- uid: 1524 - type: CableApcExtension - components: - - pos: -22.5,4.5 - parent: 0 - type: Transform -- uid: 1525 - type: CableApcExtension - components: - - pos: -22.5,5.5 - parent: 0 - type: Transform -- uid: 1526 - type: CableApcExtension - components: - - pos: -22.5,1.5 - parent: 0 - type: Transform -- uid: 1527 - type: CableApcExtension - components: - - pos: -22.5,0.5 - parent: 0 - type: Transform -- uid: 1528 - type: CableApcExtension - components: - - pos: -22.5,-0.5 - parent: 0 - type: Transform -- uid: 1529 - type: CableApcExtension - components: - - pos: -22.5,-1.5 - parent: 0 - type: Transform -- uid: 1530 - type: CableApcExtension - components: - - pos: -23.5,1.5 - parent: 0 - type: Transform -- uid: 1531 - type: Airlock - components: - - pos: -18.5,0.5 - parent: 0 - type: Transform -- uid: 1532 - type: MaintenanceFluffSpawner - components: - - pos: -18.5,5.5 - parent: 0 - type: Transform -- uid: 1533 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-1.5 - parent: 0 - type: Transform -- uid: 1534 - type: Airlock - components: - - pos: -18.5,3.5 - parent: 0 - type: Transform -- uid: 1535 - type: SpawnPointJanitor - components: - - pos: -21.5,-8.5 - parent: 0 - type: Transform -- uid: 1536 - type: KitchenSpike - components: - - pos: 6.5,-5.5 - parent: 0 - type: Transform -- uid: 1537 - type: SinkWide - components: - - pos: 5.5,-5.5 - parent: 0 - type: Transform -- uid: 1538 - type: LockerFreezer - components: - - pos: 2.5,-5.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 234.99966 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1539 - type: VendingMachineChefDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,-5.5 - parent: 0 - type: Transform -- uid: 1540 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1541 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1542 - type: WeldingFuelTankFull - components: - - pos: 5.5,4.5 - parent: 0 - type: Transform -- uid: 1543 - type: WaterTankFull - components: - - pos: 7.5,4.5 - parent: 0 - type: Transform -- uid: 1544 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 8.5,4.5 - parent: 0 - type: Transform -- uid: 1545 - type: Rack - components: - - pos: 6.5,4.5 - parent: 0 - type: Transform -- uid: 1546 - type: ClothingOuterSuitFire - components: - - pos: 6.5,4.5 - parent: 0 - type: Transform -- uid: 1547 - type: ClothingMaskGas - components: - - pos: 6.5,4.5 - parent: 0 - type: Transform -- uid: 1548 - type: ClothingHeadHatHardhatRed - components: - - pos: 6.5,4.5 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 1549 - type: PoweredSmallLight - components: - - pos: 6.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1550 - type: Catwalk - components: - - pos: 2.5,12.5 - parent: 0 - type: Transform -- uid: 1551 - type: Catwalk - components: - - pos: 2.5,13.5 - parent: 0 - type: Transform -- uid: 1552 - type: VendingMachineDinnerware - components: - - flags: SessionSpecific - name: Dinnerware - type: MetaData - - pos: 2.5,-3.5 - parent: 0 - type: Transform -- uid: 1553 - type: Catwalk - components: - - pos: 1.5,14.5 - parent: 0 - type: Transform -- uid: 1554 - type: Table - components: - - pos: 7.5,0.5 - parent: 0 - type: Transform -- uid: 1555 - type: Table - components: - - pos: 6.5,0.5 - parent: 0 - type: Transform -- uid: 1556 - type: DisposalUnit - components: - - pos: 2.5,0.5 - parent: 0 - type: Transform -- uid: 1557 - type: TableReinforced - components: - - pos: 3.5,-1.5 - parent: 0 - type: Transform -- uid: 1558 - type: TableReinforced - components: - - pos: 4.5,-1.5 - parent: 0 - type: Transform -- uid: 1559 - type: TableReinforced - components: - - pos: 5.5,-1.5 - parent: 0 - type: Transform -- uid: 1560 - type: TableReinforced - components: - - pos: 6.5,-1.5 - parent: 0 - type: Transform -- uid: 1561 - type: KitchenMicrowave - components: - - pos: 5.5,-1.5 - parent: 0 - type: Transform -- uid: 1562 - type: KitchenReagentGrinder - components: - - pos: 3.5,-1.5 - parent: 0 - type: Transform -- uid: 1563 - type: LockerFreezer - components: - - pos: 5.5,0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1564 - type: DonkpocketBoxSpawner - components: - - pos: 6.5,0.5 - parent: 0 - type: Transform -- uid: 1565 - type: VendingMachineHappyHonk - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,-3.5 - parent: 0 - type: Transform -- uid: 1566 - type: Table - components: - - pos: 7.5,-3.5 - parent: 0 - type: Transform -- uid: 1567 - type: SpawnPointChef - components: - - pos: 4.5,-2.5 - parent: 0 - type: Transform -- uid: 1568 - type: ClosetChefFilled - components: - - pos: 4.5,0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1569 - type: AtmosFixFreezerMarker - components: - - pos: 5.5,-7.5 - parent: 0 - type: Transform -- uid: 1570 - type: FoodMeat - components: - - pos: 6.5,-6.5 - parent: 0 - type: Transform -- uid: 1571 - type: FoodMeat - components: - - pos: 7.5,-7.5 - parent: 0 - type: Transform -- uid: 1572 - type: FoodMeat - components: - - pos: 5.5,-6.5 - parent: 0 - type: Transform -- uid: 1573 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 0 - type: Transform -- uid: 1574 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 0 - type: Transform -- uid: 1575 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 3.5,0.5 - parent: 0 - type: Transform -- uid: 1576 - type: DisposalBend - components: - - pos: 3.5,2.5 - parent: 0 - type: Transform -- uid: 1577 - type: DisposalPipe - components: - - pos: 3.5,1.5 - parent: 0 - type: Transform -- uid: 1578 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 0 - type: Transform -- uid: 1579 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 0 - type: Transform -- uid: 1580 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 0 - type: Transform -- uid: 1581 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 0 - type: Transform -- uid: 1582 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 0 - type: Transform -- uid: 1583 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 0 - type: Transform -- uid: 1584 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 0 - type: Transform -- uid: 1585 - type: DisposalJunctionFlipped - components: - - pos: -2.5,-5.5 - parent: 0 - type: Transform -- uid: 1586 - type: DisposalJunctionFlipped - components: - - pos: -2.5,2.5 - parent: 0 - type: Transform -- uid: 1587 - type: DisposalPipe - components: - - pos: -2.5,-4.5 - parent: 0 - type: Transform -- uid: 1588 - type: DisposalPipe - components: - - pos: -2.5,-3.5 - parent: 0 - type: Transform -- uid: 1589 - type: DisposalPipe - components: - - pos: -2.5,-2.5 - parent: 0 - type: Transform -- uid: 1590 - type: DisposalPipe - components: - - pos: -2.5,-1.5 - parent: 0 - type: Transform -- uid: 1591 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-1.5 - parent: 0 - type: Transform -- uid: 1592 - type: DisposalPipe - components: - - pos: -2.5,0.5 - parent: 0 - type: Transform -- uid: 1593 - type: DisposalPipe - components: - - pos: -2.5,1.5 - parent: 0 - type: Transform -- uid: 1594 - type: DisposalPipe - components: - - pos: -2.5,3.5 - parent: 0 - type: Transform -- uid: 1595 - type: DisposalPipe - components: - - pos: -2.5,4.5 - parent: 0 - type: Transform -- uid: 1596 - type: DisposalPipe - components: - - pos: -2.5,5.5 - parent: 0 - type: Transform -- uid: 1597 - type: DisposalPipe - components: - - pos: -2.5,6.5 - parent: 0 - type: Transform -- uid: 1598 - type: DisposalPipe - components: - - pos: -2.5,7.5 - parent: 0 - type: Transform -- uid: 1599 - type: DisposalPipe - components: - - pos: -2.5,8.5 - parent: 0 - type: Transform -- uid: 1600 - type: DisposalPipe - components: - - pos: -2.5,9.5 - parent: 0 - type: Transform -- uid: 1601 - type: DisposalPipe - components: - - pos: -2.5,10.5 - parent: 0 - type: Transform -- uid: 1602 - type: DisposalBend - components: - - pos: -2.5,11.5 - parent: 0 - type: Transform -- uid: 1603 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,11.5 - parent: 0 - type: Transform -- uid: 1604 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,11.5 - parent: 0 - type: Transform -- uid: 1605 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -5.5,11.5 - parent: 0 - type: Transform -- uid: 1606 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 0 - type: Transform -- uid: 1607 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 0 - type: Transform -- uid: 1608 - type: DisposalPipe - components: - - pos: -10.5,-10.5 - parent: 0 - type: Transform -- uid: 1609 - type: DisposalPipe - components: - - pos: -2.5,-6.5 - parent: 0 - type: Transform -- uid: 1610 - type: DisposalPipe - components: - - pos: -2.5,-7.5 - parent: 0 - type: Transform -- uid: 1611 - type: DisposalPipe - components: - - pos: -2.5,-8.5 - parent: 0 - type: Transform -- uid: 1612 - type: DisposalPipe - components: - - pos: -2.5,-9.5 - parent: 0 - type: Transform -- uid: 1613 - type: DisposalPipe - components: - - pos: -2.5,-10.5 - parent: 0 - type: Transform -- uid: 1614 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 - parent: 0 - type: Transform -- uid: 1615 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-11.5 - parent: 0 - type: Transform -- uid: 1616 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-11.5 - parent: 0 - type: Transform -- uid: 1617 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-11.5 - parent: 0 - type: Transform -- uid: 1618 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-11.5 - parent: 0 - type: Transform -- uid: 1619 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-11.5 - parent: 0 - type: Transform -- uid: 1620 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 - parent: 0 - type: Transform -- uid: 1621 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 0 - type: Transform -- uid: 1622 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 0 - type: Transform -- uid: 1623 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-11.5 - parent: 0 - type: Transform -- uid: 1624 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-11.5 - parent: 0 - type: Transform -- uid: 1625 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-11.5 - parent: 0 - type: Transform -- uid: 1626 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -1.5,7.5 - parent: 0 - type: Transform -- uid: 1627 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-11.5 - parent: 0 - type: Transform -- uid: 1628 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-11.5 - parent: 0 - type: Transform -- uid: 1629 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-11.5 - parent: 0 - type: Transform -- uid: 1630 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 0 - type: Transform -- uid: 1631 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-11.5 - parent: 0 - type: Transform -- uid: 1632 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-11.5 - parent: 0 - type: Transform -- uid: 1633 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-11.5 - parent: 0 - type: Transform -- uid: 1634 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-11.5 - parent: 0 - type: Transform -- uid: 1635 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-6.5 - parent: 0 - type: Transform -- uid: 1636 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-6.5 - parent: 0 - type: Transform -- uid: 1637 - type: DisposalPipe - components: - - pos: -22.5,-10.5 - parent: 0 - type: Transform -- uid: 1638 - type: DisposalPipe - components: - - pos: -22.5,-9.5 - parent: 0 - type: Transform -- uid: 1639 - type: DisposalPipe - components: - - pos: -22.5,-8.5 - parent: 0 - type: Transform -- uid: 1640 - type: DisposalPipe - components: - - pos: -22.5,-7.5 - parent: 0 - type: Transform -- uid: 1641 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-6.5 - parent: 0 - type: Transform -- uid: 1642 - type: KitchenKnife - components: - - pos: 6.5,-1.5 - parent: 0 - type: Transform -- uid: 1643 - type: FoodCondimentBottleEnzyme - components: - - pos: 7.2863007,0.7877493 - parent: 0 - type: Transform -- uid: 1644 - type: FoodCondimentBottleEnzyme - components: - - pos: 7.4581757,0.6939993 - parent: 0 - type: Transform -- uid: 1645 - type: ReagentContainerFlour - components: - - pos: 7.6925507,0.6939993 - parent: 0 - type: Transform -- uid: 1646 - type: SignalButton - components: - - pos: 3.5,-4.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 785 - - port: Toggle - uid: 787 - - port: Toggle - uid: 786 - type: SignalTransmitter -- uid: 1647 - type: VendingBarDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,6.5 - parent: 0 - type: Transform -- uid: 1648 - type: LockerBoozeFilled - components: - - pos: 5.5,9.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1649 - type: Bed - components: - - pos: 7.5,9.5 - parent: 0 - type: Transform -- uid: 1650 - type: BedsheetSpawner - components: - - pos: 7.5,9.5 - parent: 0 - type: Transform -- uid: 1651 - type: Table - components: - - pos: 7.5,8.5 - parent: 0 - type: Transform -- uid: 1652 - type: Rack - components: - - pos: 5.5,8.5 - parent: 0 - type: Transform -- uid: 1653 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 0 - type: Transform -- uid: 1654 - type: DrinkShaker - components: - - pos: 5.357094,8.658001 - parent: 0 - type: Transform -- uid: 1655 - type: ClothingEyesGlassesSunglasses - components: - - pos: 5.544427,8.548626 - parent: 0 - type: Transform -- uid: 1656 - type: BoxBeanbag - components: - - pos: 7.497552,8.611126 - parent: 0 - type: Transform -- uid: 1657 - type: CarpetOrange - components: - - pos: 6.5,8.5 - parent: 0 - type: Transform -- uid: 1658 - type: Firelock - components: - - pos: 4.5,6.5 - parent: 0 - type: Transform -- uid: 1659 - type: PaintingMonkey - components: - - pos: 4.5,9.5 - parent: 0 - type: Transform -- uid: 1660 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: 3.5,5.5 - parent: 0 - type: Transform -- uid: 1661 - type: CarpetOrange - components: - - pos: 6.5,9.5 - parent: 0 - type: Transform -- uid: 1662 - type: CarpetOrange - components: - - pos: 7.5,9.5 - parent: 0 - type: Transform -- uid: 1663 - type: CarpetOrange - components: - - pos: 7.5,8.5 - parent: 0 - type: Transform -- uid: 1664 - type: PoweredSmallLight - components: - - pos: 6.5,9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1665 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1666 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1667 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1668 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1669 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1670 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1671 - type: Poweredlight - components: - - pos: 2.5,9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1672 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1673 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1674 - type: PaintingNightHawks - components: - - pos: 1.5,4.5 - parent: 0 - type: Transform -- uid: 1675 - type: Rack - components: - - pos: 3.5,14.5 - parent: 0 - type: Transform -- uid: 1676 - type: ClosetEmergencyFilledRandom - components: - - pos: 3.5,13.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1677 - type: PartRodMetal - components: - - pos: 3.5454316,14.514967 - parent: 0 - type: Transform -- uid: 1678 - type: BoxLightMixed - components: - - pos: 3.4673066,14.577467 - parent: 0 - type: Transform -- uid: 1679 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 0 - type: Transform -- uid: 1680 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1681 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1682 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1683 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -21.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1684 - type: GasPipeBend - components: - - pos: -21.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1685 - type: GasVentPump - components: - - pos: -21.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1686 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -21.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1687 - type: PowerCellRecharger - components: - - pos: 7.5,16.5 - parent: 0 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 1688 - type: ClothingShoesBootsMag - components: - - pos: 5.3844786,14.708496 - parent: 0 - type: Transform -- uid: 1689 - type: ClothingShoesBootsMag - components: - - pos: 5.5251036,14.520996 - parent: 0 - type: Transform -- uid: 1690 - type: SheetGlass - components: - - pos: 5.600872,17.54953 - parent: 0 - type: Transform -- uid: 1691 - type: SheetSteel - components: - - pos: 5.397747,17.54953 - parent: 0 - type: Transform -- uid: 1692 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,1.5 - parent: 0 - type: Transform -- uid: 1693 - type: Dresser - components: - - pos: -7.5,0.5 - parent: 0 - type: Transform -- uid: 1694 - type: TableWood - components: - - pos: -10.5,1.5 - parent: 0 - type: Transform -- uid: 1695 - type: TableWood - components: - - pos: -10.5,0.5 - parent: 0 - type: Transform -- uid: 1696 - type: TableWood - components: - - pos: -10.5,-0.5 - parent: 0 - type: Transform -- uid: 1697 - type: TableWood - components: - - pos: -10.5,-1.5 - parent: 0 - type: Transform -- uid: 1698 - type: TableWood - components: - - pos: -9.5,-1.5 - parent: 0 - type: Transform -- uid: 1699 - type: DisposalUnit - components: - - pos: -7.5,-1.5 - parent: 0 - type: Transform -- uid: 1700 - type: DisposalJunction - components: - - pos: -2.5,-0.5 - parent: 0 - type: Transform -- uid: 1701 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 0 - type: Transform -- uid: 1702 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 0 - type: Transform -- uid: 1703 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 0 - type: Transform -- uid: 1704 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 0 - type: Transform -- uid: 1705 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 0 - type: Transform -- uid: 1706 - type: LampBanana - components: - - pos: -10.503301,1.611648 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 1707 - type: TrashBananaPeel - components: - - pos: -9.550176,1.455398 - parent: 0 - type: Transform -- uid: 1708 - type: FoodBanana - components: - - pos: -10.643926,0.9448434 - parent: 0 - type: Transform -- uid: 1709 - type: FoodBanana - components: - - pos: -10.425176,0.9292184 - parent: 0 - type: Transform -- uid: 1710 - type: FoodBanana - components: - - pos: -10.253301,0.8979684 - parent: 0 - type: Transform -- uid: 1711 - type: FoodPieBananaCream - components: - - pos: -10.659551,0.5229684 - parent: 0 - type: Transform -- uid: 1712 - type: FoodPieBananaCream - components: - - pos: -10.409551,0.5073434 - parent: 0 - type: Transform -- uid: 1713 - type: SpawnPointClown - components: - - pos: -9.5,1.5 - parent: 0 - type: Transform -- uid: 1714 - type: PosterContrabandClown - components: - - pos: -6.5,0.5 - parent: 0 - type: Transform -- uid: 1715 - type: SpawnPointMime - components: - - pos: -9.5,0.5 - parent: 0 - type: Transform -- uid: 1716 - type: FoodBreadBaguette - components: - - pos: -10.518926,-0.4614067 - parent: 0 - type: Transform -- uid: 1717 - type: DrinkBottleOfNothingFull - components: - - pos: -10.737676,0.038593292 - parent: 0 - type: Transform -- uid: 1718 - type: CrayonBox - components: - - pos: -10.378301,0.0073432922 - parent: 0 - type: Transform -- uid: 1719 - type: TubaInstrument - components: - - pos: -8.5,-1.5 - parent: 0 - type: Transform -- uid: 1720 - type: ElectricGuitarInstrument - components: - - pos: -10.472051,-1.3051567 - parent: 0 - type: Transform -- uid: 1721 - type: FoodBurgerMime - components: - - pos: -10.581426,-0.9614067 - parent: 0 - type: Transform -- uid: 1722 - type: SpawnPointMusician - components: - - pos: -9.5,-0.5 - parent: 0 - type: Transform -- uid: 1723 - type: DawInstrumentMachineCircuitboard - components: - - pos: -9.581426,-1.3989067 - parent: 0 - type: Transform -- uid: 1724 - type: PoweredSmallLight - components: - - pos: -9.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1725 - type: BikeHorn - components: - - pos: -10.612676,1.3979684 - parent: 0 - type: Transform -- uid: 1726 - type: BikeHornInstrument - components: - - pos: -10.503301,0.7729684 - parent: 0 - type: Transform -- uid: 1727 - type: ClothingOuterApronChef - components: - - pos: 7.5457907,-3.3420944 - parent: 0 - type: Transform -- uid: 1728 - type: ClothingHeadHatChef - components: - - pos: 7.4989157,-3.2483444 - parent: 0 - type: Transform -- uid: 1729 - type: ClothingShoesChef - components: - - pos: 2.448894,-6.5943885 - parent: 0 - type: Transform -- uid: 1730 - type: PottedPlantRandom - components: - - pos: -7.5,9.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1731 - type: PottedPlantRandom - components: - - pos: -7.5,8.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1732 - type: TableWood - components: - - pos: -10.5,3.5 - parent: 0 - type: Transform -- uid: 1733 - type: TableWood - components: - - pos: -10.5,4.5 - parent: 0 - type: Transform -- uid: 1734 - type: TableWood - components: - - pos: -10.5,5.5 - parent: 0 - type: Transform -- uid: 1735 - type: TableWood - components: - - pos: -10.5,6.5 - parent: 0 - type: Transform -- uid: 1736 - type: TableWood - components: - - pos: -10.5,7.5 - parent: 0 - type: Transform -- uid: 1737 - type: TableWood - components: - - pos: -10.5,8.5 - parent: 0 - type: Transform -- uid: 1738 - type: TableWood - components: - - pos: -10.5,9.5 - parent: 0 - type: Transform -- uid: 1739 - type: Carpet - components: - - pos: -9.5,8.5 - parent: 0 - type: Transform -- uid: 1740 - type: Carpet - components: - - pos: -9.5,7.5 - parent: 0 - type: Transform -- uid: 1741 - type: Carpet - components: - - pos: -9.5,6.5 - parent: 0 - type: Transform -- uid: 1742 - type: Carpet - components: - - pos: -9.5,5.5 - parent: 0 - type: Transform -- uid: 1743 - type: Carpet - components: - - pos: -9.5,4.5 - parent: 0 - type: Transform -- uid: 1744 - type: Carpet - components: - - pos: -8.5,8.5 - parent: 0 - type: Transform -- uid: 1745 - type: Carpet - components: - - pos: -8.5,7.5 - parent: 0 - type: Transform -- uid: 1746 - type: Carpet - components: - - pos: -8.5,6.5 - parent: 0 - type: Transform -- uid: 1747 - type: Carpet - components: - - pos: -8.5,5.5 - parent: 0 - type: Transform -- uid: 1748 - type: Carpet - components: - - pos: -8.5,4.5 - parent: 0 - type: Transform -- uid: 1749 - type: PianoInstrument - components: - - rot: 3.141592653589793 rad - pos: -9.5,9.5 - parent: 0 - type: Transform -- uid: 1750 - type: ComfyChair - components: - - pos: -8.5,7.5 - parent: 0 - type: Transform -- uid: 1751 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -8.5,5.5 - parent: 0 - type: Transform -- uid: 1752 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -9.5,8.5 - parent: 0 - type: Transform -- uid: 1753 - type: ClothingHeadHatWitch1 - components: - - pos: -10.496132,3.670351 - parent: 0 - type: Transform -- uid: 1754 - type: RandomSoap - components: - - pos: -10.5,6.5 - parent: 0 - type: Transform -- uid: 1755 - type: AcousticGuitarInstrument - components: - - pos: -10.386757,8.623476 - parent: 0 - type: Transform -- uid: 1756 - type: ViolinInstrument - components: - - pos: -10.433632,4.545351 - parent: 0 - type: Transform -- uid: 1757 - type: ClothingHeadHatFedoraGrey - components: - - pos: -6.558632,8.592226 - parent: 0 - type: Transform -- uid: 1758 - type: CigarCase - components: - - pos: -6.558632,4.639101 - parent: 0 - type: Transform -- uid: 1759 - type: Lighter - components: - - pos: -6.168007,4.498476 - parent: 0 - type: Transform -- uid: 1760 - type: Lighter - components: - - pos: 1.2657695,9.574495 - parent: 0 - type: Transform -- uid: 1761 - type: Matchbox - components: - - pos: 1.5470195,6.5276203 - parent: 0 - type: Transform -- uid: 1762 - type: LampGold - components: - - pos: -10.47069,9.477556 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 1763 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1764 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1765 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1766 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1767 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5035148,7.4145155 - parent: 0 - type: Transform -- uid: 1768 - type: DrinkLemonLimeCan - components: - - pos: -2.4722648,6.6801405 - parent: 0 - type: Transform -- uid: 1769 - type: Fork - components: - - pos: -2.5347648,9.4457655 - parent: 0 - type: Transform -- uid: 1770 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 11.5,19.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 1771 - type: DrinkMugDog - components: - - pos: -2.4722648,3.4643836 - parent: 0 - type: Transform -- uid: 1772 - type: FoodCondimentPacketSalt - components: - - pos: -2.3003898,9.296319 - parent: 0 - type: Transform - - solution: food - type: RefillableSolution -- uid: 1773 - type: FoodCondimentPacketPepper - components: - - pos: -2.6753898,2.5728736 - parent: 0 - type: Transform - - solution: food - type: RefillableSolution -- uid: 1774 - type: Spoon - components: - - pos: -2.3316398,2.6041236 - parent: 0 - type: Transform -- uid: 1775 - type: FoodSnackCheesie - components: - - pos: -2.4566398,1.6822487 - parent: 0 - type: Transform -- uid: 1776 - type: FoodSnackChips - components: - - pos: -2.4620848,-1.5182357 - parent: 0 - type: Transform -- uid: 1777 - type: DrinkCoffee - components: - - pos: -2.4777098,-4.2682357 - parent: 0 - type: Transform -- uid: 1778 - type: Fork - components: - - pos: -2.6495848,-3.5494857 - parent: 0 - type: Transform -- uid: 1779 - type: FoodCondimentPacketPepper - components: - - pos: -2.3370848,-3.5807357 - parent: 0 - type: Transform - - solution: food - type: RefillableSolution -- uid: 1780 - type: DrinkColaBottleFull - components: - - pos: -2.3527098,-2.4557357 - parent: 0 - type: Transform -- uid: 1781 - type: PosterContrabandSpaceCola - components: - - pos: 1.5,-4.5 - parent: 0 - type: Transform -- uid: 1782 - type: PosterContrabandEAT - components: - - pos: 5.5,1.5 - parent: 0 - type: Transform -- uid: 1783 - type: SpawnPointBartender - components: - - pos: 6.5,7.5 - parent: 0 - type: Transform -- uid: 1784 - type: ReinforcedWindow - components: - - pos: 18.5,31.5 - parent: 0 - type: Transform -- uid: 1785 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1786 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1787 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 20.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1788 - type: RandomPosterAny - components: - - pos: -10.5,2.5 - parent: 0 - type: Transform -- uid: 1789 - type: RandomPosterLegit - components: - - pos: -9.5,-2.5 - parent: 0 - type: Transform -- uid: 1790 - type: RandomPosterLegit - components: - - pos: 8.5,0.5 - parent: 0 - type: Transform -- uid: 1791 - type: RandomPosterLegit - components: - - pos: 4.5,-8.5 - parent: 0 - type: Transform -- uid: 1792 - type: RandomPosterLegit - components: - - pos: -16.5,5.5 - parent: 0 - type: Transform -- uid: 1793 - type: PosterLegitNanotrasenLogo - components: - - pos: -5.5,15.5 - parent: 0 - type: Transform -- uid: 1794 - type: PosterLegitNanotrasenLogo - components: - - pos: 0.5,15.5 - parent: 0 - type: Transform -- uid: 1795 - type: ClosetEmergencyFilledRandom - components: - - pos: 0.5,17.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1796 - type: ClosetFireFilled - components: - - pos: 0.5,16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 1797 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -5.5,16.5 - parent: 0 - type: Transform -- uid: 1798 - type: DisposalUnit - components: - - pos: -5.5,17.5 - parent: 0 - type: Transform -- uid: 1799 - type: PottedPlantRandom - components: - - pos: -5.5,18.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1800 - type: PottedPlantRandom - components: - - pos: 0.5,18.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 1801 - type: Table - components: - - pos: -4.5,14.5 - parent: 0 - type: Transform -- uid: 1802 - type: HandLabeler - components: - - pos: -4.4966984,14.507313 - parent: 0 - type: Transform -- uid: 1803 - type: PoweredSmallLight - components: - - pos: 4.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1804 - type: PoweredSmallLight - components: - - pos: 5.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1805 - type: PoweredSmallLight - components: - - pos: -9.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1806 - type: PoweredSmallLight - components: - - pos: -20.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1807 - type: PoweredSmallLight - components: - - pos: -9.5,13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1808 - type: GasPipeStraight - components: - - pos: 6.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1809 - type: GasPipeStraight - components: - - pos: 6.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1810 - type: GasPipeStraight - components: - - pos: 8.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1811 - type: GasPipeStraight - components: - - pos: 8.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1812 - type: GasPipeStraight - components: - - pos: 8.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1813 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 6.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1814 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 8.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1815 - type: GasPipeStraight - components: - - pos: -0.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1816 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -4.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1817 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -0.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1818 - type: RandomPosterLegit - components: - - pos: -6.5,11.5 - parent: 0 - type: Transform -- uid: 1819 - type: WallReinforced - components: - - pos: -3.5,21.5 - parent: 0 - type: Transform -- uid: 1820 - type: WallReinforced - components: - - pos: -4.5,21.5 - parent: 0 - type: Transform -- uid: 1821 - type: WallReinforced - components: - - pos: -5.5,21.5 - parent: 0 - type: Transform -- uid: 1822 - type: WallReinforced - components: - - pos: -6.5,21.5 - parent: 0 - type: Transform -- uid: 1823 - type: WallReinforced - components: - - pos: -6.5,22.5 - parent: 0 - type: Transform -- uid: 1824 - type: WallReinforced - components: - - pos: -6.5,23.5 - parent: 0 - type: Transform -- uid: 1825 - type: WallReinforced - components: - - pos: -6.5,24.5 - parent: 0 - type: Transform -- uid: 1826 - type: WallReinforced - components: - - pos: -6.5,25.5 - parent: 0 - type: Transform -- uid: 1827 - type: WallReinforced - components: - - pos: -6.5,26.5 - parent: 0 - type: Transform -- uid: 1828 - type: WallReinforced - components: - - pos: -6.5,27.5 - parent: 0 - type: Transform -- uid: 1829 - type: WallReinforced - components: - - pos: -1.5,21.5 - parent: 0 - type: Transform -- uid: 1830 - type: WallReinforced - components: - - pos: -0.5,21.5 - parent: 0 - type: Transform -- uid: 1831 - type: WallReinforced - components: - - pos: 0.5,21.5 - parent: 0 - type: Transform -- uid: 1832 - type: WallReinforced - components: - - pos: 1.5,21.5 - parent: 0 - type: Transform -- uid: 1833 - type: WallReinforced - components: - - pos: 1.5,22.5 - parent: 0 - type: Transform -- uid: 1834 - type: WallReinforced - components: - - pos: 1.5,23.5 - parent: 0 - type: Transform -- uid: 1835 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1836 - type: WallReinforced - components: - - pos: 1.5,25.5 - parent: 0 - type: Transform -- uid: 1837 - type: WallReinforced - components: - - pos: 1.5,26.5 - parent: 0 - type: Transform -- uid: 1838 - type: WallReinforced - components: - - pos: 1.5,27.5 - parent: 0 - type: Transform -- uid: 1839 - type: WallReinforced - components: - - pos: 0.5,27.5 - parent: 0 - type: Transform -- uid: 1840 - type: WallReinforced - components: - - pos: -1.5,27.5 - parent: 0 - type: Transform -- uid: 1841 - type: WallReinforced - components: - - pos: -3.5,27.5 - parent: 0 - type: Transform -- uid: 1842 - type: WallReinforced - components: - - pos: -5.5,27.5 - parent: 0 - type: Transform -- uid: 1843 - type: ReinforcedWindow - components: - - pos: -4.5,27.5 - parent: 0 - type: Transform -- uid: 1844 - type: ReinforcedWindow - components: - - pos: -2.5,27.5 - parent: 0 - type: Transform -- uid: 1845 - type: ReinforcedWindow - components: - - pos: -0.5,27.5 - parent: 0 - type: Transform -- uid: 1846 - type: HighSecCommandLocked - components: - - pos: -2.5,21.5 - parent: 0 - type: Transform -- uid: 1847 - type: GasPipeStraight - components: - - pos: -1.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1848 - type: GasPipeStraight - components: - - pos: -1.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1849 - type: GasPipeStraight - components: - - pos: -1.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1850 - type: GasPipeStraight - components: - - pos: -3.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1851 - type: GasPipeStraight - components: - - pos: -3.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1852 - type: GasVentPump - components: - - pos: -3.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1853 - type: GasVentScrubber - components: - - pos: -1.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1854 - type: NuclearBomb - components: - - pos: -2.5,26.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 1855 - type: AirlockCommandGlassLocked - components: - - pos: 1.5,29.5 - parent: 0 - type: Transform -- uid: 1856 - type: ReinforcedWindow - components: - - pos: 1.5,30.5 - parent: 0 - type: Transform -- uid: 1857 - type: WallReinforced - components: - - pos: -6.5,31.5 - parent: 0 - type: Transform -- uid: 1858 - type: CableMV - components: - - pos: 0.5,28.5 - parent: 0 - type: Transform -- uid: 1859 - type: WallReinforced - components: - - pos: 1.5,31.5 - parent: 0 - type: Transform -- uid: 1860 - type: CableMV - components: - - pos: -6.5,30.5 - parent: 0 - type: Transform -- uid: 1861 - type: WallReinforced - components: - - pos: -9.5,31.5 - parent: 0 - type: Transform -- uid: 1862 - type: WallReinforced - components: - - pos: 4.5,31.5 - parent: 0 - type: Transform -- uid: 1863 - type: WallReinforced - components: - - pos: 4.5,33.5 - parent: 0 - type: Transform -- uid: 1864 - type: WallReinforced - components: - - pos: -9.5,33.5 - parent: 0 - type: Transform -- uid: 1865 - type: WallReinforced - components: - - pos: -7.5,35.5 - parent: 0 - type: Transform -- uid: 1866 - type: WallReinforced - components: - - pos: 2.5,35.5 - parent: 0 - type: Transform -- uid: 1867 - type: WallReinforced - components: - - pos: -4.5,36.5 - parent: 0 - type: Transform -- uid: 1868 - type: WallReinforced - components: - - pos: -0.5,36.5 - parent: 0 - type: Transform -- uid: 1869 - type: ReinforcedWindow - components: - - pos: -9.5,32.5 - parent: 0 - type: Transform -- uid: 1870 - type: ReinforcedWindow - components: - - pos: -9.5,34.5 - parent: 0 - type: Transform -- uid: 1871 - type: ReinforcedWindow - components: - - pos: -9.5,35.5 - parent: 0 - type: Transform -- uid: 1872 - type: ReinforcedWindow - components: - - pos: -8.5,35.5 - parent: 0 - type: Transform -- uid: 1873 - type: ReinforcedWindow - components: - - pos: -6.5,35.5 - parent: 0 - type: Transform -- uid: 1874 - type: ReinforcedWindow - components: - - pos: -6.5,36.5 - parent: 0 - type: Transform -- uid: 1875 - type: ReinforcedWindow - components: - - pos: -5.5,36.5 - parent: 0 - type: Transform -- uid: 1876 - type: ReinforcedWindow - components: - - pos: 1.5,35.5 - parent: 0 - type: Transform -- uid: 1877 - type: ReinforcedWindow - components: - - pos: 1.5,36.5 - parent: 0 - type: Transform -- uid: 1878 - type: ReinforcedWindow - components: - - pos: 0.5,36.5 - parent: 0 - type: Transform -- uid: 1879 - type: ReinforcedWindow - components: - - pos: 4.5,34.5 - parent: 0 - type: Transform -- uid: 1880 - type: ReinforcedWindow - components: - - pos: 4.5,35.5 - parent: 0 - type: Transform -- uid: 1881 - type: ReinforcedWindow - components: - - pos: 3.5,35.5 - parent: 0 - type: Transform -- uid: 1882 - type: ReinforcedWindow - components: - - pos: -1.5,36.5 - parent: 0 - type: Transform -- uid: 1883 - type: ReinforcedWindow - components: - - pos: -2.5,36.5 - parent: 0 - type: Transform -- uid: 1884 - type: ReinforcedWindow - components: - - pos: -3.5,36.5 - parent: 0 - type: Transform -- uid: 1885 - type: WallReinforced - components: - - pos: 5.5,33.5 - parent: 0 - type: Transform -- uid: 1886 - type: WallReinforced - components: - - pos: 7.5,33.5 - parent: 0 - type: Transform -- uid: 1887 - type: WallReinforced - components: - - pos: 7.5,32.5 - parent: 0 - type: Transform -- uid: 1888 - type: WallReinforced - components: - - pos: 7.5,31.5 - parent: 0 - type: Transform -- uid: 1889 - type: WallReinforced - components: - - pos: 7.5,30.5 - parent: 0 - type: Transform -- uid: 1890 - type: WallReinforced - components: - - pos: 6.5,30.5 - parent: 0 - type: Transform -- uid: 1891 - type: WallReinforced - components: - - pos: 5.5,30.5 - parent: 0 - type: Transform -- uid: 1892 - type: WallReinforced - components: - - pos: 4.5,30.5 - parent: 0 - type: Transform -- uid: 1893 - type: WallReinforced - components: - - pos: 4.5,21.5 - parent: 0 - type: Transform -- uid: 1894 - type: WallReinforced - components: - - pos: 4.5,22.5 - parent: 0 - type: Transform -- uid: 1895 - type: WallReinforced - components: - - pos: 4.5,23.5 - parent: 0 - type: Transform -- uid: 1896 - type: WallReinforced - components: - - pos: 11.5,21.5 - parent: 0 - type: Transform -- uid: 1897 - type: ReinforcedWindow - components: - - pos: 4.5,26.5 - parent: 0 - type: Transform -- uid: 1898 - type: ReinforcedWindow - components: - - pos: 4.5,24.5 - parent: 0 - type: Transform -- uid: 1899 - type: WallReinforced - components: - - pos: 4.5,27.5 - parent: 0 - type: Transform -- uid: 1900 - type: WallReinforced - components: - - pos: 4.5,28.5 - parent: 0 - type: Transform -- uid: 1901 - type: WallReinforced - components: - - pos: 4.5,29.5 - parent: 0 - type: Transform -- uid: 1902 - type: ReinforcedWindow - components: - - pos: 6.5,33.5 - parent: 0 - type: Transform -- uid: 1903 - type: WallReinforced - components: - - pos: 11.5,22.5 - parent: 0 - type: Transform -- uid: 1904 - type: WallReinforced - components: - - pos: 11.5,23.5 - parent: 0 - type: Transform -- uid: 1905 - type: WallReinforced - components: - - pos: 11.5,24.5 - parent: 0 - type: Transform -- uid: 1906 - type: WallReinforced - components: - - pos: 11.5,25.5 - parent: 0 - type: Transform -- uid: 1907 - type: WallReinforced - components: - - pos: 11.5,26.5 - parent: 0 - type: Transform -- uid: 1908 - type: WallReinforced - components: - - pos: 11.5,27.5 - parent: 0 - type: Transform -- uid: 1909 - type: WallReinforced - components: - - pos: 11.5,28.5 - parent: 0 - type: Transform -- uid: 1910 - type: WallReinforced - components: - - pos: 11.5,29.5 - parent: 0 - type: Transform -- uid: 1911 - type: WallReinforced - components: - - pos: 11.5,30.5 - parent: 0 - type: Transform -- uid: 1912 - type: WallReinforced - components: - - pos: 11.5,31.5 - parent: 0 - type: Transform -- uid: 1913 - type: WallReinforced - components: - - pos: 10.5,31.5 - parent: 0 - type: Transform -- uid: 1914 - type: WallReinforced - components: - - pos: 9.5,31.5 - parent: 0 - type: Transform -- uid: 1915 - type: WallReinforced - components: - - pos: 9.5,30.5 - parent: 0 - type: Transform -- uid: 1916 - type: WallReinforced - components: - - pos: 8.5,30.5 - parent: 0 - type: Transform -- uid: 1917 - type: WallSolid - components: - - pos: 9.5,29.5 - parent: 0 - type: Transform -- uid: 1918 - type: WallSolid - components: - - pos: 9.5,27.5 - parent: 0 - type: Transform -- uid: 1919 - type: WallSolid - components: - - pos: 10.5,27.5 - parent: 0 - type: Transform -- uid: 1920 - type: WallReinforced - components: - - pos: 5.5,23.5 - parent: 0 - type: Transform -- uid: 1921 - type: WallReinforced - components: - - pos: 10.5,23.5 - parent: 0 - type: Transform -- uid: 1922 - type: WallReinforced - components: - - pos: 7.5,23.5 - parent: 0 - type: Transform -- uid: 1923 - type: WallReinforced - components: - - pos: 10.5,21.5 - parent: 0 - type: Transform -- uid: 1924 - type: ReinforcedWindow - components: - - pos: 6.5,23.5 - parent: 0 - type: Transform -- uid: 1925 - type: ReinforcedWindow - components: - - pos: 8.5,23.5 - parent: 0 - type: Transform -- uid: 1926 - type: WindoorHeadOfPersonnelLocked - components: - - rot: 3.141592653589793 rad - pos: 9.5,23.5 - parent: 0 - type: Transform -- uid: 1927 - type: FirelockGlass - components: - - pos: 9.5,23.5 - parent: 0 - type: Transform -- uid: 1928 - type: FirelockGlass - components: - - pos: -8.5,27.5 - parent: 0 - type: Transform -- uid: 1929 - type: ShuttersNormalOpen - components: - - pos: -13.5,26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2241 - type: SignalReceiver -- uid: 1930 - type: ShuttersNormalOpen - components: - - pos: 5.5,27.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1965 - type: SignalReceiver -- uid: 1931 - type: ShuttersNormalOpen - components: - - pos: -10.5,26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2241 - type: SignalReceiver -- uid: 1932 - type: FirelockGlass - components: - - pos: -3.5,-9.5 - parent: 0 - type: Transform -- uid: 1933 - type: FirelockGlass - components: - - pos: -2.5,-9.5 - parent: 0 - type: Transform -- uid: 1934 - type: FirelockGlass - components: - - pos: -1.5,-9.5 - parent: 0 - type: Transform -- uid: 1935 - type: FirelockGlass - components: - - pos: -1.5,12.5 - parent: 0 - type: Transform -- uid: 1936 - type: FirelockGlass - components: - - pos: -2.5,12.5 - parent: 0 - type: Transform -- uid: 1937 - type: FirelockGlass - components: - - pos: -3.5,12.5 - parent: 0 - type: Transform -- uid: 1938 - type: FirelockGlass - components: - - pos: -3.5,15.5 - parent: 0 - type: Transform -- uid: 1939 - type: FirelockGlass - components: - - pos: -2.5,15.5 - parent: 0 - type: Transform -- uid: 1940 - type: FirelockGlass - components: - - pos: -1.5,15.5 - parent: 0 - type: Transform -- uid: 1941 - type: FirelockGlass - components: - - pos: 9.5,5.5 - parent: 0 - type: Transform -- uid: 1942 - type: FirelockGlass - components: - - pos: -12.5,9.5 - parent: 0 - type: Transform -- uid: 1943 - type: FirelockGlass - components: - - pos: -16.5,-3.5 - parent: 0 - type: Transform -- uid: 1944 - type: ReinforcedWindow - components: - - pos: -9.5,22.5 - parent: 0 - type: Transform -- uid: 1945 - type: ReinforcedWindow - components: - - pos: -9.5,24.5 - parent: 0 - type: Transform -- uid: 1946 - type: WallReinforced - components: - - pos: -9.5,25.5 - parent: 0 - type: Transform -- uid: 1947 - type: WallReinforced - components: - - pos: -9.5,26.5 - parent: 0 - type: Transform -- uid: 1948 - type: WallReinforced - components: - - pos: -9.5,21.5 - parent: 0 - type: Transform -- uid: 1949 - type: WallReinforced - components: - - pos: -10.5,21.5 - parent: 0 - type: Transform -- uid: 1950 - type: WallReinforced - components: - - pos: -11.5,21.5 - parent: 0 - type: Transform -- uid: 1951 - type: WallReinforced - components: - - pos: -12.5,21.5 - parent: 0 - type: Transform -- uid: 1952 - type: Bookshelf - components: - - pos: -13.5,25.5 - parent: 0 - type: Transform -- uid: 1953 - type: PhoneInstrument - components: - - pos: -12.499591,23.511097 - parent: 0 - type: Transform -- uid: 1954 - type: WallReinforced - components: - - pos: -15.5,21.5 - parent: 0 - type: Transform -- uid: 1955 - type: WallReinforced - components: - - pos: -16.5,21.5 - parent: 0 - type: Transform -- uid: 1956 - type: WallReinforced - components: - - pos: -9.5,30.5 - parent: 0 - type: Transform -- uid: 1957 - type: WallReinforced - components: - - pos: -10.5,30.5 - parent: 0 - type: Transform -- uid: 1958 - type: WallReinforced - components: - - pos: -13.5,30.5 - parent: 0 - type: Transform -- uid: 1959 - type: WallReinforced - components: - - pos: -14.5,30.5 - parent: 0 - type: Transform -- uid: 1960 - type: WallReinforced - components: - - pos: -15.5,30.5 - parent: 0 - type: Transform -- uid: 1961 - type: WallReinforced - components: - - pos: -16.5,30.5 - parent: 0 - type: Transform -- uid: 1962 - type: ReinforcedWindow - components: - - pos: -12.5,30.5 - parent: 0 - type: Transform -- uid: 1963 - type: ReinforcedWindow - components: - - pos: -11.5,30.5 - parent: 0 - type: Transform -- uid: 1964 - type: Grille - components: - - pos: -10.5,26.5 - parent: 0 - type: Transform -- uid: 1965 - type: SignalButton - components: - - pos: 9.5,29.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2235 - - port: Toggle - uid: 2236 - - port: Toggle - uid: 1930 - type: SignalTransmitter -- uid: 1966 - type: Grille - components: - - pos: 7.5,27.5 - parent: 0 - type: Transform -- uid: 1967 - type: WallReinforced - components: - - pos: -9.5,27.5 - parent: 0 - type: Transform -- uid: 1968 - type: WallReinforced - components: - - pos: -9.5,28.5 - parent: 0 - type: Transform -- uid: 1969 - type: WallReinforced - components: - - pos: -9.5,29.5 - parent: 0 - type: Transform -- uid: 1970 - type: WallReinforced - components: - - pos: -16.5,29.5 - parent: 0 - type: Transform -- uid: 1971 - type: WallReinforced - components: - - pos: -16.5,28.5 - parent: 0 - type: Transform -- uid: 1972 - type: WallReinforced - components: - - pos: -16.5,27.5 - parent: 0 - type: Transform -- uid: 1973 - type: WallReinforced - components: - - pos: -16.5,26.5 - parent: 0 - type: Transform -- uid: 1974 - type: WallReinforced - components: - - pos: -16.5,25.5 - parent: 0 - type: Transform -- uid: 1975 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1976 - type: WallReinforced - components: - - pos: -16.5,23.5 - parent: 0 - type: Transform -- uid: 1977 - type: WallReinforced - components: - - pos: -16.5,22.5 - parent: 0 - type: Transform -- uid: 1978 - type: WallSolid - components: - - pos: -15.5,26.5 - parent: 0 - type: Transform -- uid: 1979 - type: WallSolid - components: - - pos: -14.5,26.5 - parent: 0 - type: Transform -- uid: 1980 - type: WallSolid - components: - - pos: -14.5,25.5 - parent: 0 - type: Transform -- uid: 1981 - type: WallSolid - components: - - pos: -14.5,27.5 - parent: 0 - type: Transform -- uid: 1982 - type: WallSolid - components: - - pos: -14.5,29.5 - parent: 0 - type: Transform -- uid: 1983 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1984 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1985 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 3.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1986 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -8.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1987 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1988 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1989 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1990 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1991 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1992 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -7.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1993 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1994 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1995 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1996 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1997 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1998 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1999 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2000 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 3.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2001 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2002 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2003 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2004 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2005 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2006 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2007 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2008 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -8.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2009 - type: GasPipeBend - components: - - pos: 3.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2010 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2011 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2012 - type: GasPipeTJunction - components: - - pos: -5.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2013 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2014 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2015 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2016 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2017 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2018 - type: GasPipeTJunction - components: - - pos: 0.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2019 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2020 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2021 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2022 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -5.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2023 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2024 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2025 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2026 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2027 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2028 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 0.5,33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2029 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2030 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2031 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2032 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2033 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2034 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2035 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 2.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2036 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2037 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -7.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2038 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2039 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2040 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2041 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2042 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2043 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2044 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2045 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2046 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 2.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2047 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2048 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 3.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2049 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2050 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2051 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2052 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2053 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2054 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -7.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2055 - type: GasPipeBend - components: - - pos: 2.5,32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2056 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 8.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2057 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2058 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2059 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2060 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2061 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2062 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2063 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2064 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2065 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 6.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2066 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2067 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2068 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2069 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2070 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2071 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 8.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2072 - type: GasVentPump - components: - - pos: 8.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2073 - type: GasVentScrubber - components: - - pos: 6.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2074 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 7.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2075 - type: WallReinforced - components: - - pos: 1.5,24.5 - parent: 0 - type: Transform -- uid: 2076 - type: SubstationBasic - components: - - pos: 6.5,31.5 - parent: 0 - type: Transform -- uid: 2077 - type: APCBasic - components: - - pos: 0.5,21.5 - parent: 0 - type: Transform -- uid: 2078 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -6.5,31.5 - parent: 0 - type: Transform -- uid: 2079 - type: APCBasic - components: - - pos: 9.5,27.5 - parent: 0 - type: Transform -- uid: 2080 - type: CableHV - components: - - pos: 6.5,31.5 - parent: 0 - type: Transform -- uid: 2081 - type: CableHV - components: - - pos: 6.5,32.5 - parent: 0 - type: Transform -- uid: 2082 - type: CableHV - components: - - pos: 5.5,32.5 - parent: 0 - type: Transform -- uid: 2083 - type: CableHV - components: - - pos: 4.5,32.5 - parent: 0 - type: Transform -- uid: 2084 - type: CableHV - components: - - pos: 3.5,32.5 - parent: 0 - type: Transform -- uid: 2085 - type: CableHV - components: - - pos: 3.5,31.5 - parent: 0 - type: Transform -- uid: 2086 - type: CableHV - components: - - pos: 3.5,30.5 - parent: 0 - type: Transform -- uid: 2087 - type: CableHV - components: - - pos: 3.5,29.5 - parent: 0 - type: Transform -- uid: 2088 - type: CableHV - components: - - pos: 3.5,28.5 - parent: 0 - type: Transform -- uid: 2089 - type: CableHV - components: - - pos: 3.5,27.5 - parent: 0 - type: Transform -- uid: 2090 - type: CableHV - components: - - pos: 3.5,26.5 - parent: 0 - type: Transform -- uid: 2091 - type: CableHV - components: - - pos: 3.5,25.5 - parent: 0 - type: Transform -- uid: 2092 - type: CableHV - components: - - pos: 3.5,24.5 - parent: 0 - type: Transform -- uid: 2093 - type: CableHV - components: - - pos: 3.5,23.5 - parent: 0 - type: Transform -- uid: 2094 - type: CableHV - components: - - pos: 3.5,22.5 - parent: 0 - type: Transform -- uid: 2095 - type: CableHV - components: - - pos: 3.5,21.5 - parent: 0 - type: Transform -- uid: 2096 - type: CableHV - components: - - pos: 3.5,20.5 - parent: 0 - type: Transform -- uid: 2097 - type: CableHV - components: - - pos: 3.5,19.5 - parent: 0 - type: Transform -- uid: 2098 - type: CableHV - components: - - pos: 2.5,19.5 - parent: 0 - type: Transform -- uid: 2099 - type: CableHV - components: - - pos: 1.5,19.5 - parent: 0 - type: Transform -- uid: 2100 - type: CableHV - components: - - pos: 0.5,19.5 - parent: 0 - type: Transform -- uid: 2101 - type: CableHV - components: - - pos: -0.5,19.5 - parent: 0 - type: Transform -- uid: 2102 - type: CableHV - components: - - pos: -1.5,19.5 - parent: 0 - type: Transform -- uid: 2103 - type: CableHV - components: - - pos: -1.5,18.5 - parent: 0 - type: Transform -- uid: 2104 - type: CableHV - components: - - pos: -1.5,17.5 - parent: 0 - type: Transform -- uid: 2105 - type: CableHV - components: - - pos: -1.5,16.5 - parent: 0 - type: Transform -- uid: 2106 - type: CableHV - components: - - pos: -1.5,15.5 - parent: 0 - type: Transform -- uid: 2107 - type: CableHV - components: - - pos: -1.5,14.5 - parent: 0 - type: Transform -- uid: 2108 - type: CableHV - components: - - pos: 3.5,33.5 - parent: 0 - type: Transform -- uid: 2109 - type: CableHV - components: - - pos: 3.5,34.5 - parent: 0 - type: Transform -- uid: 2110 - type: CableHV - components: - - pos: 3.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2111 - type: CableHV - components: - - pos: 4.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2112 - type: CableHV - components: - - pos: 4.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2113 - type: CableHV - components: - - pos: 2.5,34.5 - parent: 0 - type: Transform -- uid: 2114 - type: CableHV - components: - - pos: 1.5,34.5 - parent: 0 - type: Transform -- uid: 2115 - type: CableHV - components: - - pos: 1.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2116 - type: CableHV - components: - - pos: 1.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2117 - type: CableHV - components: - - pos: 0.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2118 - type: CableHV - components: - - pos: 0.5,35.5 - parent: 0 - type: Transform -- uid: 2119 - type: CableHV - components: - - pos: -0.5,35.5 - parent: 0 - type: Transform -- uid: 2120 - type: CableHV - components: - - pos: -1.5,35.5 - parent: 0 - type: Transform -- uid: 2121 - type: CableHV - components: - - pos: -2.5,35.5 - parent: 0 - type: Transform -- uid: 2122 - type: CableHV - components: - - pos: -3.5,35.5 - parent: 0 - type: Transform -- uid: 2123 - type: CableHV - components: - - pos: -4.5,35.5 - parent: 0 - type: Transform -- uid: 2124 - type: CableHV - components: - - pos: -5.5,35.5 - parent: 0 - type: Transform -- uid: 2125 - type: CableHV - components: - - pos: -3.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2126 - type: CableHV - components: - - pos: -2.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2127 - type: CableHV - components: - - pos: -1.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2128 - type: CableHV - components: - - pos: -5.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2129 - type: CableHV - components: - - pos: -6.5,36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2130 - type: CableHV - components: - - pos: -6.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2131 - type: CableHV - components: - - pos: 6.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2132 - type: CableHV - components: - - pos: -6.5,34.5 - parent: 0 - type: Transform -- uid: 2133 - type: CableHV - components: - - pos: -7.5,34.5 - parent: 0 - type: Transform -- uid: 2134 - type: CableHV - components: - - pos: -8.5,34.5 - parent: 0 - type: Transform -- uid: 2135 - type: CableHV - components: - - pos: -9.5,34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2136 - type: CableHV - components: - - pos: -9.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2137 - type: CableHV - components: - - pos: -8.5,35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2138 - type: CableHV - components: - - pos: -8.5,33.5 - parent: 0 - type: Transform -- uid: 2139 - type: CableHV - components: - - pos: -8.5,32.5 - parent: 0 - type: Transform -- uid: 2140 - type: CableHV - components: - - pos: -9.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2141 - type: CableMV - components: - - pos: 6.5,31.5 - parent: 0 - type: Transform -- uid: 2142 - type: CableMV - components: - - pos: 6.5,32.5 - parent: 0 - type: Transform -- uid: 2143 - type: CableMV - components: - - pos: 5.5,32.5 - parent: 0 - type: Transform -- uid: 2144 - type: CableMV - components: - - pos: 4.5,32.5 - parent: 0 - type: Transform -- uid: 2145 - type: CableMV - components: - - pos: 3.5,32.5 - parent: 0 - type: Transform -- uid: 2146 - type: CableMV - components: - - pos: 2.5,32.5 - parent: 0 - type: Transform -- uid: 2147 - type: CableMV - components: - - pos: 1.5,32.5 - parent: 0 - type: Transform -- uid: 2148 - type: CableMV - components: - - pos: 0.5,32.5 - parent: 0 - type: Transform -- uid: 2149 - type: CableMV - components: - - pos: -0.5,32.5 - parent: 0 - type: Transform -- uid: 2150 - type: CableMV - components: - - pos: -1.5,32.5 - parent: 0 - type: Transform -- uid: 2151 - type: CableMV - components: - - pos: -2.5,32.5 - parent: 0 - type: Transform -- uid: 2152 - type: CableMV - components: - - pos: -3.5,32.5 - parent: 0 - type: Transform -- uid: 2153 - type: CableMV - components: - - pos: -4.5,32.5 - parent: 0 - type: Transform -- uid: 2154 - type: CableMV - components: - - pos: -5.5,32.5 - parent: 0 - type: Transform -- uid: 2155 - type: CableMV - components: - - pos: -6.5,32.5 - parent: 0 - type: Transform -- uid: 2156 - type: CableMV - components: - - pos: -6.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2157 - type: CableMV - components: - - pos: 2.5,31.5 - parent: 0 - type: Transform -- uid: 2158 - type: CableMV - components: - - pos: 2.5,30.5 - parent: 0 - type: Transform -- uid: 2159 - type: CableMV - components: - - pos: 2.5,29.5 - parent: 0 - type: Transform -- uid: 2160 - type: CableMV - components: - - pos: 2.5,28.5 - parent: 0 - type: Transform -- uid: 2161 - type: CableMV - components: - - pos: 2.5,27.5 - parent: 0 - type: Transform -- uid: 2162 - type: CableMV - components: - - pos: 2.5,26.5 - parent: 0 - type: Transform -- uid: 2163 - type: CableMV - components: - - pos: 2.5,25.5 - parent: 0 - type: Transform -- uid: 2164 - type: CableMV - components: - - pos: 2.5,24.5 - parent: 0 - type: Transform -- uid: 2165 - type: CableMV - components: - - pos: 2.5,23.5 - parent: 0 - type: Transform -- uid: 2166 - type: CableMV - components: - - pos: 2.5,22.5 - parent: 0 - type: Transform -- uid: 2167 - type: CableMV - components: - - pos: 2.5,21.5 - parent: 0 - type: Transform -- uid: 2168 - type: CableMV - components: - - pos: 2.5,20.5 - parent: 0 - type: Transform -- uid: 2169 - type: CableMV - components: - - pos: 1.5,20.5 - parent: 0 - type: Transform -- uid: 2170 - type: CableMV - components: - - pos: 0.5,20.5 - parent: 0 - type: Transform -- uid: 2171 - type: CableMV - components: - - pos: 0.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2172 - type: CableMV - components: - - pos: 3.5,25.5 - parent: 0 - type: Transform -- uid: 2173 - type: CableMV - components: - - pos: 4.5,25.5 - parent: 0 - type: Transform -- uid: 2174 - type: CableMV - components: - - pos: 5.5,25.5 - parent: 0 - type: Transform -- uid: 2175 - type: CableMV - components: - - pos: 6.5,25.5 - parent: 0 - type: Transform -- uid: 2176 - type: CableMV - components: - - pos: 7.5,25.5 - parent: 0 - type: Transform -- uid: 2177 - type: CableMV - components: - - pos: 8.5,25.5 - parent: 0 - type: Transform -- uid: 2178 - type: CableMV - components: - - pos: 9.5,25.5 - parent: 0 - type: Transform -- uid: 2179 - type: CableMV - components: - - pos: 9.5,26.5 - parent: 0 - type: Transform -- uid: 2180 - type: CableMV - components: - - pos: 9.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2181 - type: CableMV - components: - - pos: 8.5,24.5 - parent: 0 - type: Transform -- uid: 2182 - type: CableMV - components: - - pos: 8.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2183 - type: CableMV - components: - - pos: 6.5,24.5 - parent: 0 - type: Transform -- uid: 2184 - type: CableMV - components: - - pos: 6.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2185 - type: CableMV - components: - - pos: -2.5,31.5 - parent: 0 - type: Transform -- uid: 2186 - type: CableMV - components: - - pos: 4.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2187 - type: CableMV - components: - - pos: 4.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2188 - type: CableMV - components: - - pos: -2.5,30.5 - parent: 0 - type: Transform -- uid: 2189 - type: CableMV - components: - - pos: -2.5,29.5 - parent: 0 - type: Transform -- uid: 2190 - type: CableMV - components: - - pos: -2.5,28.5 - parent: 0 - type: Transform -- uid: 2191 - type: CableMV - components: - - pos: -2.5,28.5 - parent: 0 - type: Transform -- uid: 2192 - type: CableMV - components: - - pos: -2.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2193 - type: CableMV - components: - - pos: -3.5,28.5 - parent: 0 - type: Transform -- uid: 2194 - type: CableMV - components: - - pos: -4.5,28.5 - parent: 0 - type: Transform -- uid: 2195 - type: CableMV - components: - - pos: -4.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2196 - type: CableMV - components: - - pos: -1.5,28.5 - parent: 0 - type: Transform -- uid: 2197 - type: CableMV - components: - - pos: -0.5,28.5 - parent: 0 - type: Transform -- uid: 2198 - type: CableMV - components: - - pos: -0.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2199 - type: Grille - components: - - pos: -6.5,30.5 - parent: 0 - type: Transform -- uid: 2200 - type: CableMV - components: - - pos: 0.5,29.5 - parent: 0 - type: Transform -- uid: 2201 - type: ReinforcedWindow - components: - - pos: -6.5,28.5 - parent: 0 - type: Transform -- uid: 2202 - type: Grille - components: - - pos: -6.5,28.5 - parent: 0 - type: Transform -- uid: 2203 - type: CableMV - components: - - pos: -5.5,29.5 - parent: 0 - type: Transform -- uid: 2204 - type: ReinforcedWindow - components: - - pos: -6.5,30.5 - parent: 0 - type: Transform -- uid: 2205 - type: Grille - components: - - pos: -4.5,27.5 - parent: 0 - type: Transform -- uid: 2206 - type: Grille - components: - - pos: -2.5,27.5 - parent: 0 - type: Transform -- uid: 2207 - type: Grille - components: - - pos: -0.5,27.5 - parent: 0 - type: Transform -- uid: 2208 - type: CableMV - components: - - pos: -5.5,30.5 - parent: 0 - type: Transform -- uid: 2209 - type: ReinforcedWindow - components: - - pos: 1.5,28.5 - parent: 0 - type: Transform -- uid: 2210 - type: Grille - components: - - pos: -9.5,32.5 - parent: 0 - type: Transform -- uid: 2211 - type: Grille - components: - - pos: -9.5,34.5 - parent: 0 - type: Transform -- uid: 2212 - type: Grille - components: - - pos: -9.5,35.5 - parent: 0 - type: Transform -- uid: 2213 - type: Grille - components: - - pos: -8.5,35.5 - parent: 0 - type: Transform -- uid: 2214 - type: Grille - components: - - pos: -6.5,35.5 - parent: 0 - type: Transform -- uid: 2215 - type: Grille - components: - - pos: -6.5,36.5 - parent: 0 - type: Transform -- uid: 2216 - type: Grille - components: - - pos: -5.5,36.5 - parent: 0 - type: Transform -- uid: 2217 - type: Grille - components: - - pos: -3.5,36.5 - parent: 0 - type: Transform -- uid: 2218 - type: Grille - components: - - pos: -2.5,36.5 - parent: 0 - type: Transform -- uid: 2219 - type: Grille - components: - - pos: -1.5,36.5 - parent: 0 - type: Transform -- uid: 2220 - type: Grille - components: - - pos: 0.5,36.5 - parent: 0 - type: Transform -- uid: 2221 - type: Grille - components: - - pos: 1.5,36.5 - parent: 0 - type: Transform -- uid: 2222 - type: Grille - components: - - pos: 1.5,35.5 - parent: 0 - type: Transform -- uid: 2223 - type: Grille - components: - - pos: 3.5,35.5 - parent: 0 - type: Transform -- uid: 2224 - type: Grille - components: - - pos: 4.5,35.5 - parent: 0 - type: Transform -- uid: 2225 - type: Grille - components: - - pos: 4.5,34.5 - parent: 0 - type: Transform -- uid: 2226 - type: Grille - components: - - pos: 6.5,33.5 - parent: 0 - type: Transform -- uid: 2227 - type: Grille - components: - - pos: 6.5,23.5 - parent: 0 - type: Transform -- uid: 2228 - type: Grille - components: - - pos: 8.5,23.5 - parent: 0 - type: Transform -- uid: 2229 - type: TableReinforced - components: - - pos: 9.5,23.5 - parent: 0 - type: Transform -- uid: 2230 - type: Windoor - components: - - pos: 9.5,23.5 - parent: 0 - type: Transform -- uid: 2231 - type: FirelockGlass - components: - - pos: -7.5,27.5 - parent: 0 - type: Transform -- uid: 2232 - type: Grille - components: - - pos: 4.5,24.5 - parent: 0 - type: Transform -- uid: 2233 - type: Grille - components: - - pos: 4.5,26.5 - parent: 0 - type: Transform -- uid: 2234 - type: ShuttersNormalOpen - components: - - pos: -12.5,26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2241 - type: SignalReceiver -- uid: 2235 - type: ShuttersNormalOpen - components: - - pos: 8.5,27.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1965 - type: SignalReceiver -- uid: 2236 - type: ShuttersNormalOpen - components: - - pos: 7.5,27.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 1965 - type: SignalReceiver -- uid: 2237 - type: Grille - components: - - pos: -9.5,22.5 - parent: 0 - type: Transform -- uid: 2238 - type: Grille - components: - - pos: -9.5,24.5 - parent: 0 - type: Transform -- uid: 2239 - type: Grille - components: - - pos: 8.5,27.5 - parent: 0 - type: Transform -- uid: 2240 - type: Grille - components: - - pos: 5.5,27.5 - parent: 0 - type: Transform -- uid: 2241 - type: SignalButton - components: - - pos: -14.5,27.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 1929 - - port: Toggle - uid: 2234 - - port: Toggle - uid: 1931 - type: SignalTransmitter -- uid: 2242 - type: Grille - components: - - pos: -12.5,30.5 - parent: 0 - type: Transform -- uid: 2243 - type: Grille - components: - - pos: -11.5,30.5 - parent: 0 - type: Transform -- uid: 2244 - type: CableApcExtension - components: - - pos: -6.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2245 - type: CableApcExtension - components: - - pos: -5.5,31.5 - parent: 0 - type: Transform -- uid: 2246 - type: CableApcExtension - components: - - pos: -4.5,31.5 - parent: 0 - type: Transform -- uid: 2247 - type: CableApcExtension - components: - - pos: -3.5,31.5 - parent: 0 - type: Transform -- uid: 2248 - type: CableApcExtension - components: - - pos: -2.5,31.5 - parent: 0 - type: Transform -- uid: 2249 - type: CableApcExtension - components: - - pos: -2.5,30.5 - parent: 0 - type: Transform -- uid: 2250 - type: CableApcExtension - components: - - pos: -2.5,29.5 - parent: 0 - type: Transform -- uid: 2251 - type: CableApcExtension - components: - - pos: -2.5,28.5 - parent: 0 - type: Transform -- uid: 2252 - type: CableApcExtension - components: - - pos: -3.5,28.5 - parent: 0 - type: Transform -- uid: 2253 - type: CableApcExtension - components: - - pos: -4.5,28.5 - parent: 0 - type: Transform -- uid: 2254 - type: CableApcExtension - components: - - pos: -5.5,28.5 - parent: 0 - type: Transform -- uid: 2255 - type: CableApcExtension - components: - - pos: -1.5,28.5 - parent: 0 - type: Transform -- uid: 2256 - type: CableApcExtension - components: - - pos: -0.5,28.5 - parent: 0 - type: Transform -- uid: 2257 - type: CableApcExtension - components: - - pos: 0.5,28.5 - parent: 0 - type: Transform -- uid: 2258 - type: CableApcExtension - components: - - pos: 1.5,28.5 - parent: 0 - type: Transform -- uid: 2259 - type: CableApcExtension - components: - - pos: -7.5,31.5 - parent: 0 - type: Transform -- uid: 2260 - type: CableApcExtension - components: - - pos: -8.5,31.5 - parent: 0 - type: Transform -- uid: 2261 - type: CableApcExtension - components: - - pos: -7.5,30.5 - parent: 0 - type: Transform -- uid: 2262 - type: CableApcExtension - components: - - pos: -7.5,29.5 - parent: 0 - type: Transform -- uid: 2263 - type: CableApcExtension - components: - - pos: -7.5,28.5 - parent: 0 - type: Transform -- uid: 2264 - type: CableApcExtension - components: - - pos: -7.5,27.5 - parent: 0 - type: Transform -- uid: 2265 - type: CableApcExtension - components: - - pos: -7.5,26.5 - parent: 0 - type: Transform -- uid: 2266 - type: CableApcExtension - components: - - pos: -7.5,25.5 - parent: 0 - type: Transform -- uid: 2267 - type: CableApcExtension - components: - - pos: -7.5,24.5 - parent: 0 - type: Transform -- uid: 2268 - type: CableApcExtension - components: - - pos: -7.5,23.5 - parent: 0 - type: Transform -- uid: 2269 - type: CableApcExtension - components: - - pos: -7.5,22.5 - parent: 0 - type: Transform -- uid: 2270 - type: CableApcExtension - components: - - pos: -7.5,32.5 - parent: 0 - type: Transform -- uid: 2271 - type: CableApcExtension - components: - - pos: -7.5,33.5 - parent: 0 - type: Transform -- uid: 2272 - type: CableApcExtension - components: - - pos: -7.5,34.5 - parent: 0 - type: Transform -- uid: 2273 - type: CableApcExtension - components: - - pos: -2.5,32.5 - parent: 0 - type: Transform -- uid: 2274 - type: CableApcExtension - components: - - pos: -2.5,33.5 - parent: 0 - type: Transform -- uid: 2275 - type: CableApcExtension - components: - - pos: -2.5,34.5 - parent: 0 - type: Transform -- uid: 2276 - type: CableApcExtension - components: - - pos: -3.5,34.5 - parent: 0 - type: Transform -- uid: 2277 - type: CableApcExtension - components: - - pos: -5.5,34.5 - parent: 0 - type: Transform -- uid: 2278 - type: CableApcExtension - components: - - pos: -4.5,34.5 - parent: 0 - type: Transform -- uid: 2279 - type: CableApcExtension - components: - - pos: -1.5,34.5 - parent: 0 - type: Transform -- uid: 2280 - type: CableApcExtension - components: - - pos: -0.5,34.5 - parent: 0 - type: Transform -- uid: 2281 - type: CableApcExtension - components: - - pos: 0.5,34.5 - parent: 0 - type: Transform -- uid: 2282 - type: CableApcExtension - components: - - pos: 1.5,34.5 - parent: 0 - type: Transform -- uid: 2283 - type: CableApcExtension - components: - - pos: 2.5,34.5 - parent: 0 - type: Transform -- uid: 2284 - type: CableApcExtension - components: - - pos: -1.5,32.5 - parent: 0 - type: Transform -- uid: 2285 - type: CableApcExtension - components: - - pos: -0.5,32.5 - parent: 0 - type: Transform -- uid: 2286 - type: CableApcExtension - components: - - pos: 0.5,32.5 - parent: 0 - type: Transform -- uid: 2287 - type: CableApcExtension - components: - - pos: 1.5,32.5 - parent: 0 - type: Transform -- uid: 2288 - type: CableApcExtension - components: - - pos: 2.5,32.5 - parent: 0 - type: Transform -- uid: 2289 - type: CableApcExtension - components: - - pos: 3.5,32.5 - parent: 0 - type: Transform -- uid: 2290 - type: CableApcExtension - components: - - pos: 4.5,32.5 - parent: 0 - type: Transform -- uid: 2291 - type: CableApcExtension - components: - - pos: 5.5,32.5 - parent: 0 - type: Transform -- uid: 2292 - type: CableApcExtension - components: - - pos: 6.5,32.5 - parent: 0 - type: Transform -- uid: 2293 - type: CableApcExtension - components: - - pos: 2.5,31.5 - parent: 0 - type: Transform -- uid: 2294 - type: CableApcExtension - components: - - pos: 2.5,30.5 - parent: 0 - type: Transform -- uid: 2295 - type: CableApcExtension - components: - - pos: 2.5,29.5 - parent: 0 - type: Transform -- uid: 2296 - type: CableApcExtension - components: - - pos: 9.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2297 - type: CableApcExtension - components: - - pos: 9.5,26.5 - parent: 0 - type: Transform -- uid: 2298 - type: CableApcExtension - components: - - pos: 9.5,25.5 - parent: 0 - type: Transform -- uid: 2299 - type: CableApcExtension - components: - - pos: 9.5,24.5 - parent: 0 - type: Transform -- uid: 2300 - type: CableApcExtension - components: - - pos: 9.5,23.5 - parent: 0 - type: Transform -- uid: 2301 - type: CableApcExtension - components: - - pos: 9.5,22.5 - parent: 0 - type: Transform -- uid: 2302 - type: CableApcExtension - components: - - pos: 9.5,21.5 - parent: 0 - type: Transform -- uid: 2303 - type: CableApcExtension - components: - - pos: 8.5,22.5 - parent: 0 - type: Transform -- uid: 2304 - type: CableApcExtension - components: - - pos: 6.5,22.5 - parent: 0 - type: Transform -- uid: 2305 - type: CableApcExtension - components: - - pos: 5.5,22.5 - parent: 0 - type: Transform -- uid: 2306 - type: CableApcExtension - components: - - pos: 7.5,22.5 - parent: 0 - type: Transform -- uid: 2307 - type: CableApcExtension - components: - - pos: 10.5,22.5 - parent: 0 - type: Transform -- uid: 2308 - type: CableApcExtension - components: - - pos: 8.5,25.5 - parent: 0 - type: Transform -- uid: 2309 - type: CableApcExtension - components: - - pos: 7.5,25.5 - parent: 0 - type: Transform -- uid: 2310 - type: CableApcExtension - components: - - pos: 6.5,25.5 - parent: 0 - type: Transform -- uid: 2311 - type: CableApcExtension - components: - - pos: 6.5,26.5 - parent: 0 - type: Transform -- uid: 2312 - type: CableApcExtension - components: - - pos: 6.5,27.5 - parent: 0 - type: Transform -- uid: 2313 - type: CableApcExtension - components: - - pos: 6.5,28.5 - parent: 0 - type: Transform -- uid: 2314 - type: CableApcExtension - components: - - pos: 6.5,29.5 - parent: 0 - type: Transform -- uid: 2315 - type: CableApcExtension - components: - - pos: 7.5,28.5 - parent: 0 - type: Transform -- uid: 2316 - type: CableApcExtension - components: - - pos: 8.5,28.5 - parent: 0 - type: Transform -- uid: 2317 - type: CableApcExtension - components: - - pos: 9.5,28.5 - parent: 0 - type: Transform -- uid: 2318 - type: CableApcExtension - components: - - pos: 10.5,28.5 - parent: 0 - type: Transform -- uid: 2319 - type: CableApcExtension - components: - - pos: 10.5,29.5 - parent: 0 - type: Transform -- uid: 2320 - type: CableApcExtension - components: - - pos: 10.5,30.5 - parent: 0 - type: Transform -- uid: 2321 - type: CableApcExtension - components: - - pos: 5.5,25.5 - parent: 0 - type: Transform -- uid: 2322 - type: CableApcExtension - components: - - pos: 4.5,25.5 - parent: 0 - type: Transform -- uid: 2323 - type: CableApcExtension - components: - - pos: 3.5,25.5 - parent: 0 - type: Transform -- uid: 2324 - type: CableApcExtension - components: - - pos: 3.5,24.5 - parent: 0 - type: Transform -- uid: 2325 - type: CableApcExtension - components: - - pos: 3.5,23.5 - parent: 0 - type: Transform -- uid: 2326 - type: CableApcExtension - components: - - pos: 3.5,22.5 - parent: 0 - type: Transform -- uid: 2327 - type: CableApcExtension - components: - - pos: 3.5,21.5 - parent: 0 - type: Transform -- uid: 2328 - type: CableApcExtension - components: - - pos: 0.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2329 - type: CableApcExtension - components: - - pos: 0.5,20.5 - parent: 0 - type: Transform -- uid: 2330 - type: CableApcExtension - components: - - pos: 0.5,19.5 - parent: 0 - type: Transform -- uid: 2331 - type: CableApcExtension - components: - - pos: -0.5,19.5 - parent: 0 - type: Transform -- uid: 2332 - type: CableApcExtension - components: - - pos: -1.5,19.5 - parent: 0 - type: Transform -- uid: 2333 - type: CableApcExtension - components: - - pos: -2.5,19.5 - parent: 0 - type: Transform -- uid: 2334 - type: CableApcExtension - components: - - pos: -3.5,19.5 - parent: 0 - type: Transform -- uid: 2335 - type: CableApcExtension - components: - - pos: -4.5,19.5 - parent: 0 - type: Transform -- uid: 2336 - type: CableApcExtension - components: - - pos: -5.5,19.5 - parent: 0 - type: Transform -- uid: 2337 - type: CableApcExtension - components: - - pos: -6.5,19.5 - parent: 0 - type: Transform -- uid: 2338 - type: CableApcExtension - components: - - pos: -7.5,19.5 - parent: 0 - type: Transform -- uid: 2339 - type: CableApcExtension - components: - - pos: -8.5,19.5 - parent: 0 - type: Transform -- uid: 2340 - type: CableApcExtension - components: - - pos: -9.5,19.5 - parent: 0 - type: Transform -- uid: 2341 - type: CableApcExtension - components: - - pos: -10.5,19.5 - parent: 0 - type: Transform -- uid: 2342 - type: CableApcExtension - components: - - pos: -11.5,19.5 - parent: 0 - type: Transform -- uid: 2343 - type: CableApcExtension - components: - - pos: -12.5,19.5 - parent: 0 - type: Transform -- uid: 2344 - type: CableApcExtension - components: - - pos: -13.5,19.5 - parent: 0 - type: Transform -- uid: 2345 - type: CableApcExtension - components: - - pos: -14.5,19.5 - parent: 0 - type: Transform -- uid: 2346 - type: CableApcExtension - components: - - pos: -15.5,19.5 - parent: 0 - type: Transform -- uid: 2347 - type: CableApcExtension - components: - - pos: -16.5,19.5 - parent: 0 - type: Transform -- uid: 2348 - type: CableApcExtension - components: - - pos: 1.5,19.5 - parent: 0 - type: Transform -- uid: 2349 - type: CableApcExtension - components: - - pos: 2.5,19.5 - parent: 0 - type: Transform -- uid: 2350 - type: CableApcExtension - components: - - pos: 3.5,19.5 - parent: 0 - type: Transform -- uid: 2351 - type: CableApcExtension - components: - - pos: 4.5,19.5 - parent: 0 - type: Transform -- uid: 2352 - type: CableApcExtension - components: - - pos: 0.5,22.5 - parent: 0 - type: Transform -- uid: 2353 - type: CableApcExtension - components: - - pos: 0.5,23.5 - parent: 0 - type: Transform -- uid: 2354 - type: CableApcExtension - components: - - pos: 0.5,24.5 - parent: 0 - type: Transform -- uid: 2355 - type: CableApcExtension - components: - - pos: 0.5,25.5 - parent: 0 - type: Transform -- uid: 2356 - type: CableApcExtension - components: - - pos: -0.5,25.5 - parent: 0 - type: Transform -- uid: 2357 - type: CableApcExtension - components: - - pos: -1.5,25.5 - parent: 0 - type: Transform -- uid: 2358 - type: CableApcExtension - components: - - pos: -2.5,25.5 - parent: 0 - type: Transform -- uid: 2359 - type: CableApcExtension - components: - - pos: -3.5,25.5 - parent: 0 - type: Transform -- uid: 2360 - type: CableApcExtension - components: - - pos: -4.5,25.5 - parent: 0 - type: Transform -- uid: 2361 - type: CableApcExtension - components: - - pos: -0.5,23.5 - parent: 0 - type: Transform -- uid: 2362 - type: CableApcExtension - components: - - pos: -1.5,23.5 - parent: 0 - type: Transform -- uid: 2363 - type: CableApcExtension - components: - - pos: -2.5,23.5 - parent: 0 - type: Transform -- uid: 2364 - type: CableApcExtension - components: - - pos: -3.5,23.5 - parent: 0 - type: Transform -- uid: 2365 - type: CableApcExtension - components: - - pos: -4.5,23.5 - parent: 0 - type: Transform -- uid: 2366 - type: APCBasic - components: - - pos: -14.5,25.5 - parent: 0 - type: Transform -- uid: 2367 - type: CableApcExtension - components: - - pos: -14.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2368 - type: CableApcExtension - components: - - pos: -14.5,24.5 - parent: 0 - type: Transform -- uid: 2369 - type: CableApcExtension - components: - - pos: -14.5,23.5 - parent: 0 - type: Transform -- uid: 2370 - type: CableApcExtension - components: - - pos: -14.5,22.5 - parent: 0 - type: Transform -- uid: 2371 - type: CableApcExtension - components: - - pos: -15.5,24.5 - parent: 0 - type: Transform -- uid: 2372 - type: CableApcExtension - components: - - pos: -13.5,24.5 - parent: 0 - type: Transform -- uid: 2373 - type: CableApcExtension - components: - - pos: -12.5,24.5 - parent: 0 - type: Transform -- uid: 2374 - type: CableApcExtension - components: - - pos: -11.5,24.5 - parent: 0 - type: Transform -- uid: 2375 - type: CableApcExtension - components: - - pos: -11.5,25.5 - parent: 0 - type: Transform -- uid: 2376 - type: CableApcExtension - components: - - pos: -11.5,26.5 - parent: 0 - type: Transform -- uid: 2377 - type: CableApcExtension - components: - - pos: -11.5,27.5 - parent: 0 - type: Transform -- uid: 2378 - type: CableApcExtension - components: - - pos: -11.5,28.5 - parent: 0 - type: Transform -- uid: 2379 - type: CableApcExtension - components: - - pos: -12.5,28.5 - parent: 0 - type: Transform -- uid: 2380 - type: CableApcExtension - components: - - pos: -13.5,28.5 - parent: 0 - type: Transform -- uid: 2381 - type: CableApcExtension - components: - - pos: -14.5,28.5 - parent: 0 - type: Transform -- uid: 2382 - type: CableApcExtension - components: - - pos: -15.5,28.5 - parent: 0 - type: Transform -- uid: 2383 - type: CableApcExtension - components: - - pos: -11.5,23.5 - parent: 0 - type: Transform -- uid: 2384 - type: CableApcExtension - components: - - pos: -11.5,22.5 - parent: 0 - type: Transform -- uid: 2385 - type: CableMV - components: - - pos: -7.5,32.5 - parent: 0 - type: Transform -- uid: 2386 - type: CableMV - components: - - pos: -8.5,32.5 - parent: 0 - type: Transform -- uid: 2387 - type: CableMV - components: - - pos: -8.5,31.5 - parent: 0 - type: Transform -- uid: 2388 - type: CableMV - components: - - pos: -8.5,30.5 - parent: 0 - type: Transform -- uid: 2389 - type: CableMV - components: - - pos: -8.5,29.5 - parent: 0 - type: Transform -- uid: 2390 - type: CableMV - components: - - pos: -8.5,28.5 - parent: 0 - type: Transform -- uid: 2391 - type: CableMV - components: - - pos: -8.5,27.5 - parent: 0 - type: Transform -- uid: 2392 - type: CableMV - components: - - pos: -8.5,26.5 - parent: 0 - type: Transform -- uid: 2393 - type: CableMV - components: - - pos: -8.5,25.5 - parent: 0 - type: Transform -- uid: 2394 - type: CableMV - components: - - pos: -8.5,24.5 - parent: 0 - type: Transform -- uid: 2395 - type: CableApcExtension - components: - - pos: -10.5,23.5 - parent: 0 - type: Transform -- uid: 2396 - type: CableMV - components: - - pos: -9.5,23.5 - parent: 0 - type: Transform -- uid: 2397 - type: CableMV - components: - - pos: -10.5,23.5 - parent: 0 - type: Transform -- uid: 2398 - type: CableMV - components: - - pos: -11.5,23.5 - parent: 0 - type: Transform -- uid: 2399 - type: CableMV - components: - - pos: -12.5,23.5 - parent: 0 - type: Transform -- uid: 2400 - type: CableMV - components: - - pos: -13.5,23.5 - parent: 0 - type: Transform -- uid: 2401 - type: CableMV - components: - - pos: -14.5,23.5 - parent: 0 - type: Transform -- uid: 2402 - type: CableMV - components: - - pos: -14.5,24.5 - parent: 0 - type: Transform -- uid: 2403 - type: CableMV - components: - - pos: -14.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2404 - type: CableMV - components: - - pos: -11.5,24.5 - parent: 0 - type: Transform -- uid: 2405 - type: CableMV - components: - - pos: -11.5,25.5 - parent: 0 - type: Transform -- uid: 2406 - type: CableMV - components: - - pos: -11.5,26.5 - parent: 0 - type: Transform -- uid: 2407 - type: CableMV - components: - - pos: -11.5,27.5 - parent: 0 - type: Transform -- uid: 2408 - type: CableMV - components: - - pos: -11.5,28.5 - parent: 0 - type: Transform -- uid: 2409 - type: CableMV - components: - - pos: -11.5,29.5 - parent: 0 - type: Transform -- uid: 2410 - type: CableMV - components: - - pos: -11.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2411 - type: CableMV - components: - - pos: -12.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2412 - type: CableMV - components: - - pos: -12.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2413 - type: CableMV - components: - - pos: -13.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2414 - type: CableMV - components: - - pos: -10.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2415 - type: CableMV - components: - - pos: -9.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2416 - type: CableMV - components: - - pos: -9.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2417 - type: AirlockCaptainGlassLocked - components: - - pos: -9.5,23.5 - parent: 0 - type: Transform -- uid: 2418 - type: AirlockMaintCaptainLocked - components: - - pos: -16.5,24.5 - parent: 0 - type: Transform -- uid: 2419 - type: AirlockCaptainLocked - components: - - pos: -11.5,26.5 - parent: 0 - type: Transform -- uid: 2420 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2421 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2422 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2423 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2424 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -13.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2425 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2426 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2427 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2428 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -13.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2429 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -14.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2430 - type: GasVentPump - components: - - pos: -13.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2431 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2432 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2433 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2434 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2435 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -12.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2436 - type: GasPipeStraight - components: - - pos: -12.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2437 - type: GasPipeStraight - components: - - pos: -12.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2438 - type: GasPipeStraight - components: - - pos: -12.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2439 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -12.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2440 - type: GasVentScrubber - components: - - pos: -12.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2441 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -8.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2442 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2443 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 2.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2444 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -7.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2445 - type: GasVentPump - components: - - pos: -5.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2446 - type: GasVentPump - components: - - pos: 0.5,34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2447 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -5.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2448 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 0.5,31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2449 - type: AirlockCommandGlassLocked - components: - - pos: -8.5,21.5 - parent: 0 - type: Transform -- uid: 2450 - type: AirlockCommandGlassLocked - components: - - pos: -7.5,21.5 - parent: 0 - type: Transform -- uid: 2451 - type: AirlockCommandGlassLocked - components: - - pos: 2.5,21.5 - parent: 0 - type: Transform -- uid: 2452 - type: AirlockCommandGlassLocked - components: - - pos: 3.5,21.5 - parent: 0 - type: Transform -- uid: 2453 - type: CableMV - components: - - pos: -6.5,28.5 - parent: 0 - type: Transform -- uid: 2454 - type: AirlockCommandGlassLocked - components: - - pos: 2.5,31.5 - parent: 0 - type: Transform -- uid: 2455 - type: AirlockCommandGlassLocked - components: - - pos: 3.5,31.5 - parent: 0 - type: Transform -- uid: 2456 - type: AirlockCommandGlassLocked - components: - - name: AI Sat - type: MetaData - - pos: 4.5,32.5 - parent: 0 - type: Transform -- uid: 2457 - type: CableMV - components: - - pos: -5.5,28.5 - parent: 0 - type: Transform -- uid: 2458 - type: AirlockCommandGlassLocked - components: - - pos: -7.5,31.5 - parent: 0 - type: Transform -- uid: 2459 - type: AirlockCommandGlassLocked - components: - - pos: -8.5,31.5 - parent: 0 - type: Transform -- uid: 2460 - type: AirlockHeadOfPersonnelGlassLocked - components: - - pos: 4.5,25.5 - parent: 0 - type: Transform -- uid: 2461 - type: AirlockHeadOfPersonnelLocked - components: - - pos: 6.5,27.5 - parent: 0 - type: Transform -- uid: 2462 - type: AirlockHeadOfPersonnelLocked - components: - - pos: 9.5,28.5 - parent: 0 - type: Transform -- uid: 2463 - type: AirlockCaptainLocked - components: - - pos: -14.5,28.5 - parent: 0 - type: Transform -- uid: 2464 - type: Grille - components: - - pos: -12.5,26.5 - parent: 0 - type: Transform -- uid: 2465 - type: Grille - components: - - pos: -13.5,26.5 - parent: 0 - type: Transform -- uid: 2466 - type: ReinforcedWindow - components: - - pos: -10.5,26.5 - parent: 0 - type: Transform -- uid: 2467 - type: ReinforcedWindow - components: - - pos: -12.5,26.5 - parent: 0 - type: Transform -- uid: 2468 - type: ReinforcedWindow - components: - - pos: -13.5,26.5 - parent: 0 - type: Transform -- uid: 2469 - type: ReinforcedWindow - components: - - pos: 5.5,27.5 - parent: 0 - type: Transform -- uid: 2470 - type: ReinforcedWindow - components: - - pos: 7.5,27.5 - parent: 0 - type: Transform -- uid: 2471 - type: ReinforcedWindow - components: - - pos: 8.5,27.5 - parent: 0 - type: Transform -- uid: 2472 - type: FirelockGlass - components: - - pos: 3.5,27.5 - parent: 0 - type: Transform -- uid: 2473 - type: FirelockGlass - components: - - pos: 2.5,27.5 - parent: 0 - type: Transform -- uid: 2474 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -7.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2475 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 2.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2476 - type: FirelockGlass - components: - - pos: 9.5,21.5 - parent: 0 - type: Transform -- uid: 2477 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 0 - type: Transform -- uid: 2478 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 8.5,21.5 - parent: 0 - type: Transform -- uid: 2479 - type: WindowReinforcedDirectional - components: - - pos: 8.5,21.5 - parent: 0 - type: Transform -- uid: 2480 - type: WindowReinforcedDirectional - components: - - pos: 7.5,21.5 - parent: 0 - type: Transform -- uid: 2481 - type: WindowReinforcedDirectional - components: - - pos: 6.5,21.5 - parent: 0 - type: Transform -- uid: 2482 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 6.5,21.5 - parent: 0 - type: Transform -- uid: 2483 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 7.5,21.5 - parent: 0 - type: Transform -- uid: 2484 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 8.5,21.5 - parent: 0 - type: Transform -- uid: 2485 - type: Table - components: - - pos: 10.5,22.5 - parent: 0 - type: Transform -- uid: 2486 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -15.5,28.5 - parent: 0 - type: Transform -- uid: 2487 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: 10.5,28.5 - parent: 0 - type: Transform -- uid: 2488 - type: ToiletEmpty - components: - - rot: 1.5707963267948966 rad - pos: 10.5,29.5 - parent: 0 - type: Transform -- uid: 2489 - type: ToiletEmpty - components: - - rot: 1.5707963267948966 rad - pos: -15.5,27.5 - parent: 0 - type: Transform -- uid: 2490 - type: FloorDrain - components: - - rot: -1.5707963267948966 rad - pos: -15.5,29.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 2491 - type: FloorDrain - components: - - rot: -1.5707963267948966 rad - pos: 10.5,30.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 2492 - type: CrateNPCCow - components: - - pos: 5.5,-3.5 - parent: 0 - type: Transform - - air: - volume: 800 - immutable: False - temperature: 293.1499 - moles: - - 6.413581 - - 24.127283 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2493 - type: FaxMachineBase - components: - - pos: 20.5,21.5 - parent: 0 - type: Transform - - name: Cargo - type: FaxMachine -- uid: 2494 - type: SoapDeluxe - components: - - pos: 10.47866,30.543114 - parent: 0 - type: Transform -- uid: 2495 - type: SoapNT - components: - - pos: -15.503267,29.527489 - parent: 0 - type: Transform -- uid: 2496 - type: ToyRubberDuck - components: - - pos: -15.456392,28.433739 - parent: 0 - type: Transform -- uid: 2497 - type: LockerHeadOfPersonnelFilled - components: - - pos: 5.5,28.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 2498 - type: TableWood - components: - - pos: 5.5,29.5 - parent: 0 - type: Transform -- uid: 2499 - type: Bed - components: - - pos: 6.5,29.5 - parent: 0 - type: Transform -- uid: 2500 - type: BedsheetHOP - components: - - pos: 6.5,29.5 - parent: 0 - type: Transform -- uid: 2501 - type: Dresser - components: - - pos: 7.5,29.5 - parent: 0 - type: Transform -- uid: 2502 - type: Lamp - components: - - pos: 5.563336,29.64892 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 2503 - type: ToyIan - components: - - pos: 5.719586,29.52392 - parent: 0 - type: Transform -- uid: 2504 - type: ComputerId - components: - - rot: -1.5707963267948966 rad - pos: 10.5,24.5 - parent: 0 - type: Transform -- uid: 2505 - type: ComputerCrewMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 10.5,25.5 - parent: 0 - type: Transform -- uid: 2506 - type: TableWood - components: - - pos: 8.5,24.5 - parent: 0 - type: Transform -- uid: 2507 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 7.5,24.5 - parent: 0 - type: Transform -- uid: 2508 - type: ChairOfficeDark - components: - - pos: 9.5,24.5 - parent: 0 - type: Transform -- uid: 2509 - type: TableWood - components: - - pos: 9.5,26.5 - parent: 0 - type: Transform -- uid: 2510 - type: VendingMachineCart - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,26.5 - parent: 0 - type: Transform -- uid: 2511 - type: DogBed - components: - - pos: 5.5,26.5 - parent: 0 - type: Transform -- uid: 2512 - type: SpawnMobCorgi - components: - - pos: 5.5,26.5 - parent: 0 - type: Transform -- uid: 2513 - type: UniformPrinter - components: - - pos: 5.5,24.5 - parent: 0 - type: Transform - - materialWhiteList: - - Cloth - - Durathread - type: MaterialStorage -- uid: 2514 - type: filingCabinetDrawer - components: - - pos: 7.5,26.5 - parent: 0 - type: Transform -- uid: 2515 - type: WeaponCapacitorRecharger - components: - - pos: 9.5,26.5 - parent: 0 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 2516 - type: TableWood - components: - - pos: 8.5,26.5 - parent: 0 - type: Transform -- uid: 2517 - type: BoxFolderRed - components: - - pos: 8.33344,26.616299 - parent: 0 - type: Transform -- uid: 2518 - type: BoxFolderBlue - components: - - pos: 8.45844,26.553799 - parent: 0 - type: Transform -- uid: 2519 - type: BoxFolderBlack - components: - - pos: 8.55219,26.460049 - parent: 0 - type: Transform -- uid: 2520 - type: Paper - components: - - pos: 8.567815,26.553799 - parent: 0 - type: Transform -- uid: 2521 - type: Paper - components: - - pos: 8.567815,26.553799 - parent: 0 - type: Transform -- uid: 2522 - type: Paper - components: - - pos: 8.567815,26.553799 - parent: 0 - type: Transform -- uid: 2523 - type: Paper - components: - - pos: 8.567815,26.553799 - parent: 0 - type: Transform -- uid: 2524 - type: Paper - components: - - pos: 8.567815,26.553799 - parent: 0 - type: Transform -- uid: 2525 - type: Paper - components: - - pos: 8.567815,26.553799 - parent: 0 - type: Transform -- uid: 2526 - type: Paper - components: - - pos: 8.567815,26.553799 - parent: 0 - type: Transform -- uid: 2527 - type: Paper - components: - - pos: 8.567815,26.553799 - parent: 0 - type: Transform -- uid: 2528 - type: Paper - components: - - pos: 8.567815,26.553799 - parent: 0 - type: Transform -- uid: 2529 - type: Paper - components: - - pos: 8.567815,26.553799 - parent: 0 - type: Transform -- uid: 2530 - type: Paper - components: - - pos: 8.567815,26.553799 - parent: 0 - type: Transform -- uid: 2531 - type: Paper - components: - - pos: 8.567815,26.553799 - parent: 0 - type: Transform -- uid: 2532 - type: Paper - components: - - pos: 8.567815,26.553799 - parent: 0 - type: Transform -- uid: 2533 - type: Paper - components: - - pos: 8.567815,26.553799 - parent: 0 - type: Transform -- uid: 2534 - type: HandLabeler - components: - - pos: 9.005315,26.569424 - parent: 0 - type: Transform -- uid: 2535 - type: Lamp - components: - - pos: 8.61469,24.725674 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 2536 - type: DrinkFlaskOld - components: - - pos: 5.505315,29.475674 - parent: 0 - type: Transform -- uid: 2537 - type: TableWood - components: - - pos: 8.5,29.5 - parent: 0 - type: Transform -- uid: 2538 - type: MaterialCloth - components: - - pos: 8.4956045,29.699007 - parent: 0 - type: Transform -- uid: 2539 - type: MaterialDurathread - components: - - pos: 8.48969,29.428799 - parent: 0 - type: Transform -- uid: 2540 - type: SpawnPointHeadOfPersonnel - components: - - pos: 7.5,28.5 - parent: 0 - type: Transform -- uid: 2541 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2542 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,29.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2543 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -15.5,27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2544 - type: Poweredlight - components: - - pos: 7.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2545 - type: Poweredlight - components: - - pos: 9.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2546 - type: CarpetSBlue - components: - - pos: 6.5,28.5 - parent: 0 - type: Transform -- uid: 2547 - type: CarpetSBlue - components: - - pos: 6.5,29.5 - parent: 0 - type: Transform -- uid: 2548 - type: CarpetSBlue - components: - - pos: 7.5,29.5 - parent: 0 - type: Transform -- uid: 2549 - type: CarpetSBlue - components: - - pos: 7.5,28.5 - parent: 0 - type: Transform -- uid: 2550 - type: CarpetSBlue - components: - - pos: 9.5,24.5 - parent: 0 - type: Transform -- uid: 2551 - type: CarpetSBlue - components: - - pos: 8.5,24.5 - parent: 0 - type: Transform -- uid: 2552 - type: CarpetSBlue - components: - - pos: 7.5,24.5 - parent: 0 - type: Transform -- uid: 2553 - type: CarpetSBlue - components: - - pos: 7.5,25.5 - parent: 0 - type: Transform -- uid: 2554 - type: CarpetSBlue - components: - - pos: 8.5,25.5 - parent: 0 - type: Transform -- uid: 2555 - type: CarpetSBlue - components: - - pos: 9.5,25.5 - parent: 0 - type: Transform -- uid: 2556 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2557 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2558 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2559 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2560 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2561 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2562 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2563 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2564 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2565 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2566 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2567 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2568 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2569 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2570 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2571 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2572 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2573 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2574 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2575 - type: Paper - components: - - pos: 10.478969,22.565956 - parent: 0 - type: Transform -- uid: 2576 - type: Pen - components: - - pos: 10.697719,22.769081 - parent: 0 - type: Transform -- uid: 2577 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 5.5,31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2578 - type: LockerElectricalSuppliesFilled - components: - - pos: 5.5,31.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 2579 - type: TableWood - components: - - pos: -13.5,27.5 - parent: 0 - type: Transform -- uid: 2580 - type: Bed - components: - - pos: -11.5,29.5 - parent: 0 - type: Transform -- uid: 2581 - type: Fireplace - components: - - pos: -13.5,29.5 - parent: 0 - type: Transform -- uid: 2582 - type: BedsheetCaptain - components: - - pos: -11.5,29.5 - parent: 0 - type: Transform -- uid: 2583 - type: TableWood - components: - - pos: -10.5,29.5 - parent: 0 - type: Transform -- uid: 2584 - type: Dresser - components: - - pos: -10.5,27.5 - parent: 0 - type: Transform -- uid: 2585 - type: Lamp - components: - - pos: -10.435654,29.715694 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 2586 - type: TableWood - components: - - pos: -12.5,27.5 - parent: 0 - type: Transform -- uid: 2587 - type: ComfyChair - components: - - pos: -12.5,28.5 - parent: 0 - type: Transform -- uid: 2588 - type: CaptainIDCard - components: - - pos: -12.545029,27.590694 - parent: 0 - type: Transform -- uid: 2589 - type: LampGold - components: - - pos: -13.466904,27.76257 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 2590 - type: DrinkFlask - components: - - pos: -13.404404,27.48132 - parent: 0 - type: Transform -- uid: 2591 - type: CarpetBlue - components: - - pos: -12.5,28.5 - parent: 0 - type: Transform -- uid: 2592 - type: CarpetBlue - components: - - pos: -12.5,29.5 - parent: 0 - type: Transform -- uid: 2593 - type: CarpetBlue - components: - - pos: -11.5,29.5 - parent: 0 - type: Transform -- uid: 2594 - type: CarpetBlue - components: - - pos: -11.5,28.5 - parent: 0 - type: Transform -- uid: 2595 - type: LockerCaptainFilled - components: - - pos: -10.5,28.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 2596 - type: TableWood - components: - - pos: -12.5,22.5 - parent: 0 - type: Transform -- uid: 2597 - type: TableWood - components: - - pos: -12.5,23.5 - parent: 0 - type: Transform -- uid: 2598 - type: PottedPlantRandom - components: - - pos: -12.5,25.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2599 - type: TableWood - components: - - pos: -10.5,25.5 - parent: 0 - type: Transform -- uid: 2600 - type: PottedPlantRandom - components: - - pos: -10.5,22.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2601 - type: ComputerComms - components: - - rot: 3.141592653589793 rad - pos: -13.5,22.5 - parent: 0 - type: Transform -- uid: 2602 - type: ComputerId - components: - - rot: 3.141592653589793 rad - pos: -14.5,22.5 - parent: 0 - type: Transform -- uid: 2603 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -13.5,23.5 - parent: 0 - type: Transform -- uid: 2604 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -11.5,22.5 - parent: 0 - type: Transform -- uid: 2605 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -11.5,23.5 - parent: 0 - type: Transform -- uid: 2606 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: -15.5,25.5 - parent: 0 - type: Transform -- uid: 2607 - type: LampGold - components: - - pos: -12.504755,22.744572 - parent: 0 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 2608 - type: WeaponCapacitorRecharger - components: - - pos: -10.5,25.5 - parent: 0 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 2609 - type: WallReinforced - components: - - pos: -13.5,21.5 - parent: 0 - type: Transform -- uid: 2610 - type: DogBed - components: - - name: fox bed - type: MetaData - - pos: -15.5,22.5 - parent: 0 - type: Transform -- uid: 2611 - type: CarpetBlue - components: - - pos: -13.5,22.5 - parent: 0 - type: Transform -- uid: 2612 - type: WallReinforced - components: - - pos: -14.5,21.5 - parent: 0 - type: Transform -- uid: 2613 - type: CarpetBlue - components: - - pos: -13.5,23.5 - parent: 0 - type: Transform -- uid: 2614 - type: CarpetBlue - components: - - pos: -13.5,24.5 - parent: 0 - type: Transform -- uid: 2615 - type: CarpetBlue - components: - - pos: -12.5,22.5 - parent: 0 - type: Transform -- uid: 2616 - type: CarpetBlue - components: - - pos: -12.5,23.5 - parent: 0 - type: Transform -- uid: 2617 - type: CarpetBlue - components: - - pos: -12.5,24.5 - parent: 0 - type: Transform -- uid: 2618 - type: CarpetBlue - components: - - pos: -11.5,22.5 - parent: 0 - type: Transform -- uid: 2619 - type: CarpetBlue - components: - - pos: -11.5,23.5 - parent: 0 - type: Transform -- uid: 2620 - type: CarpetBlue - components: - - pos: -11.5,24.5 - parent: 0 - type: Transform -- uid: 2621 - type: SpawnMobFoxRenault - components: - - pos: -15.5,22.5 - parent: 0 - type: Transform -- uid: 2622 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2623 - type: Poweredlight - components: - - pos: -14.5,24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2624 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2625 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2626 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2627 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2628 - type: Poweredlight - components: - - pos: -7.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2629 - type: Poweredlight - components: - - pos: 2.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2630 - type: Poweredlight - components: - - pos: -0.5,35.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2631 - type: Poweredlight - components: - - pos: -4.5,35.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2632 - type: CableMV - components: - - pos: 1.5,28.5 - parent: 0 - type: Transform -- uid: 2633 - type: CableMV - components: - - pos: 0.5,30.5 - parent: 0 - type: Transform -- uid: 2634 - type: TableWood - components: - - pos: -2.5,28.5 - parent: 0 - type: Transform -- uid: 2635 - type: CarpetPurple - components: - - pos: -3.5,28.5 - parent: 0 - type: Transform -- uid: 2636 - type: CarpetPurple - components: - - pos: -3.5,29.5 - parent: 0 - type: Transform -- uid: 2637 - type: CarpetPurple - components: - - pos: -2.5,29.5 - parent: 0 - type: Transform -- uid: 2638 - type: CarpetPurple - components: - - pos: -2.5,28.5 - parent: 0 - type: Transform -- uid: 2639 - type: CarpetPurple - components: - - pos: -1.5,28.5 - parent: 0 - type: Transform -- uid: 2640 - type: CarpetPurple - components: - - pos: -1.5,29.5 - parent: 0 - type: Transform -- uid: 2641 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -1.5,28.5 - parent: 0 - type: Transform -- uid: 2642 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -3.5,28.5 - parent: 0 - type: Transform -- uid: 2643 - type: AirlockCommandGlassLocked - components: - - pos: -6.5,29.5 - parent: 0 - type: Transform -- uid: 2644 - type: CableMV - components: - - pos: 1.5,30.5 - parent: 0 - type: Transform -- uid: 2645 - type: TableWood - components: - - pos: -2.5,29.5 - parent: 0 - type: Transform -- uid: 2646 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -1.5,29.5 - parent: 0 - type: Transform -- uid: 2647 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -3.5,29.5 - parent: 0 - type: Transform -- uid: 2648 - type: ComfyChair - components: - - pos: -2.5,30.5 - parent: 0 - type: Transform -- uid: 2649 - type: ComputerComms - components: - - pos: -2.5,35.5 - parent: 0 - type: Transform -- uid: 2650 - type: TableReinforced - components: - - pos: -3.5,34.5 - parent: 0 - type: Transform -- uid: 2651 - type: TableReinforced - components: - - pos: -3.5,35.5 - parent: 0 - type: Transform -- uid: 2652 - type: CableApcExtension - components: - - pos: -11.5,-57.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2653 - type: TableReinforced - components: - - pos: -1.5,35.5 - parent: 0 - type: Transform -- uid: 2654 - type: ComputerPowerMonitoring - components: - - pos: 3.5,34.5 - parent: 0 - type: Transform -- uid: 2655 - type: ComputerSolarControl - components: - - pos: 2.5,34.5 - parent: 0 - type: Transform -- uid: 2656 - type: ComputerCrewMonitoring - components: - - pos: -4.5,35.5 - parent: 0 - type: Transform -- uid: 2657 - type: ComputerMedicalRecords - components: - - pos: -5.5,35.5 - parent: 0 - type: Transform -- uid: 2658 - type: ComputerId - components: - - pos: -0.5,35.5 - parent: 0 - type: Transform -- uid: 2659 - type: ComputerCriminalRecords - components: - - pos: 0.5,35.5 - parent: 0 - type: Transform -- uid: 2660 - type: TableReinforced - components: - - pos: 1.5,34.5 - parent: 0 - type: Transform -- uid: 2661 - type: TableReinforced - components: - - pos: -6.5,34.5 - parent: 0 - type: Transform -- uid: 2662 - type: ComputerSurveillanceCameraMonitor - components: - - pos: -7.5,34.5 - parent: 0 - type: Transform -- uid: 2663 - type: TableReinforced - components: - - pos: -8.5,34.5 - parent: 0 - type: Transform -- uid: 2664 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -2.5,34.5 - parent: 0 - type: Transform -- uid: 2665 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -0.5,34.5 - parent: 0 - type: Transform -- uid: 2666 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -4.5,34.5 - parent: 0 - type: Transform -- uid: 2667 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 2.5,33.5 - parent: 0 - type: Transform -- uid: 2668 - type: PowerCellRecharger - components: - - pos: 1.5,34.5 - parent: 0 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 2669 - type: Grille - components: - - pos: 1.5,30.5 - parent: 0 - type: Transform -- uid: 2670 - type: Grille - components: - - pos: 1.5,28.5 - parent: 0 - type: Transform -- uid: 2671 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -5.5,28.5 - parent: 0 - type: Transform -- uid: 2672 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 0.5,28.5 - parent: 0 - type: Transform -- uid: 2673 - type: WaterCooler - components: - - pos: 0.5,31.5 - parent: 0 - type: Transform -- uid: 2674 - type: CigarGold - components: - - pos: -2.4733105,29.66387 - parent: 0 - type: Transform -- uid: 2675 - type: CigarGold - components: - - pos: -2.4108105,29.491995 - parent: 0 - type: Transform -- uid: 2676 - type: ToolboxMechanicalFilled - components: - - pos: -3.4889355,35.56198 - parent: 0 - type: Transform -- uid: 2677 - type: ClosetEmergencyFilledRandom - components: - - pos: -8.5,33.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 2678 - type: MedkitFilled - components: - - pos: -8.488935,34.56198 - parent: 0 - type: Transform -- uid: 2679 - type: Flash - components: - - pos: -1.4420605,35.49948 - parent: 0 - type: Transform -- uid: 2680 - type: Multitool - components: - - pos: -3.5045605,34.68698 - parent: 0 - type: Transform -- uid: 2681 - type: PottedPlantRandom - components: - - pos: -6.5,33.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2682 - type: PottedPlantRandom - components: - - pos: 1.5,33.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2683 - type: PottedPlantRandom - components: - - pos: -5.5,30.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2684 - type: PottedPlantRandom - components: - - pos: 0.5,30.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 2685 - type: BoxFolderBlue - components: - - pos: 1.5282507,34.656113 - parent: 0 - type: Transform -- uid: 2686 - type: ChairOfficeDark - components: - - pos: -7.5,33.5 - parent: 0 - type: Transform -- uid: 2687 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2688 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2689 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2690 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2691 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2692 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2693 - type: FirelockGlass - components: - - pos: -9.5,19.5 - parent: 0 - type: Transform -- uid: 2694 - type: Poweredlight - components: - - pos: 11.5,20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2695 - type: FirelockGlass - components: - - pos: -9.5,20.5 - parent: 0 - type: Transform -- uid: 2696 - type: Poweredlight - components: - - pos: -16.5,20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2697 - type: SpawnPointCaptain - components: - - pos: -11.5,28.5 - parent: 0 - type: Transform -- uid: 2698 - type: TableReinforced - components: - - pos: 0.5,26.5 - parent: 0 - type: Transform -- uid: 2699 - type: Rack - components: - - pos: 0.5,23.5 - parent: 0 - type: Transform -- uid: 2700 - type: Rack - components: - - pos: 0.5,24.5 - parent: 0 - type: Transform -- uid: 2701 - type: Rack - components: - - pos: 0.5,25.5 - parent: 0 - type: Transform -- uid: 2702 - type: TableReinforced - components: - - pos: 0.5,22.5 - parent: 0 - type: Transform -- uid: 2703 - type: TableReinforced - components: - - pos: -5.5,22.5 - parent: 0 - type: Transform -- uid: 2704 - type: TableReinforced - components: - - pos: -5.5,23.5 - parent: 0 - type: Transform -- uid: 2705 - type: TableReinforced - components: - - pos: -5.5,24.5 - parent: 0 - type: Transform -- uid: 2706 - type: TableReinforced - components: - - pos: -5.5,25.5 - parent: 0 - type: Transform -- uid: 2707 - type: TableReinforced - components: - - pos: -5.5,26.5 - parent: 0 - type: Transform -- uid: 2708 - type: ComputerAlert - components: - - pos: -2.5,24.5 - parent: 0 - type: Transform -- uid: 2709 - type: LockerFreezer - components: - - pos: -4.5,26.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: - - 2710 - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12503 - - 12504 - type: ContainerContainer -- uid: 2710 - type: Omnitool - components: - - flags: InContainer - type: MetaData - - parent: 2709 - type: Transform - - canCollide: False - type: Physics -- uid: 2711 - type: ToolboxGoldFilled - components: - - pos: -5.514771,25.816704 - parent: 0 - type: Transform -- uid: 2712 - type: IngotGold - components: - - pos: -5.483521,25.426079 - parent: 0 - type: Transform -- uid: 2713 - type: DrinkGoldenCup - components: - - pos: -5.608521,24.832329 - parent: 0 - type: Transform -- uid: 2714 - type: DrinkGoldschlagerBottleFull - components: - - pos: -5.405396,24.535454 - parent: 0 - type: Transform -- uid: 2715 - type: ClothingBeltChampion - components: - - pos: -5.571512,24.066704 - parent: 0 - type: Transform -- uid: 2716 - type: ClothingHeadHatHairflower - components: - - pos: -5.180887,24.379204 - parent: 0 - type: Transform -- uid: 2717 - type: ClothingNeckBling - components: - - pos: -5.415262,24.019829 - parent: 0 - type: Transform -- uid: 2718 - type: IngotSilver - components: - - pos: -5.446512,23.457329 - parent: 0 - type: Transform -- uid: 2719 - type: CigarGoldCase - components: - - pos: -5.477762,22.691704 - parent: 0 - type: Transform -- uid: 2720 - type: Table - components: - - pos: -1.5,24.5 - parent: 0 - type: Transform -- uid: 2721 - type: Table - components: - - pos: -3.5,24.5 - parent: 0 - type: Transform -- uid: 2722 - type: PinpointerNuclear - components: - - pos: -1.524637,24.582329 - parent: 0 - type: Transform -- uid: 2723 - type: Lamp - components: - - pos: -3.352762,24.644829 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 2724 - type: BoxFolderBlack - components: - - name: secret documents - type: MetaData - - pos: -5.462137,26.363579 - parent: 0 - type: Transform -- uid: 2725 - type: RadarConsoleCircuitboard - components: - - pos: 0.5,25.5 - parent: 0 - type: Transform -- uid: 2726 - type: SMESMachineCircuitboard - components: - - pos: 0.5,24.5 - parent: 0 - type: Transform -- uid: 2727 - type: SMESMachineCircuitboard - components: - - pos: 0.3738351,24.660454 - parent: 0 - type: Transform -- uid: 2728 - type: SubstationMachineCircuitboard - components: - - pos: 0.5457101,23.457329 - parent: 0 - type: Transform -- uid: 2729 - type: SubstationMachineCircuitboard - components: - - pos: 0.4050851,23.613579 - parent: 0 - type: Transform -- uid: 2730 - type: ShuttleConsoleCircuitboard - components: - - pos: 0.3894601,25.613579 - parent: 0 - type: Transform -- uid: 2731 - type: MaterialDiamond1 - components: - - pos: 0.5144601,26.613579 - parent: 0 - type: Transform -- uid: 2732 - type: SurveillanceCameraRouterCommand - components: - - pos: -0.5,26.5 - parent: 0 - type: Transform -- uid: 2733 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2734 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2735 - type: FoodTartGapple - components: - - pos: 0.5300851,22.660454 - parent: 0 - type: Transform -- uid: 2736 - type: Matchbox - components: - - pos: -2.4627259,28.584373 - parent: 0 - type: Transform -- uid: 2737 - type: AirlockExternalLocked - components: - - pos: 12.5,31.5 - parent: 0 - type: Transform -- uid: 2738 - type: WallSolid - components: - - pos: 13.5,21.5 - parent: 0 - type: Transform -- uid: 2739 - type: WallSolid - components: - - pos: 13.5,22.5 - parent: 0 - type: Transform -- uid: 2740 - type: WallSolid - components: - - pos: 13.5,23.5 - parent: 0 - type: Transform -- uid: 2741 - type: AirlockMaintCargoLocked - components: - - pos: 13.5,24.5 - parent: 0 - type: Transform -- uid: 2742 - type: WallSolid - components: - - pos: 13.5,25.5 - parent: 0 - type: Transform -- uid: 2743 - type: WallSolid - components: - - pos: 13.5,26.5 - parent: 0 - type: Transform -- uid: 2744 - type: WallSolid - components: - - pos: 13.5,27.5 - parent: 0 - type: Transform -- uid: 2745 - type: WallSolid - components: - - pos: 13.5,28.5 - parent: 0 - type: Transform -- uid: 2746 - type: WallReinforced - components: - - pos: 17.5,36.5 - parent: 0 - type: Transform -- uid: 2747 - type: WallReinforced - components: - - pos: 14.5,28.5 - parent: 0 - type: Transform -- uid: 2748 - type: WallReinforced - components: - - pos: 14.5,29.5 - parent: 0 - type: Transform -- uid: 2749 - type: WallReinforced - components: - - pos: 14.5,30.5 - parent: 0 - type: Transform -- uid: 2750 - type: WallReinforced - components: - - pos: 14.5,31.5 - parent: 0 - type: Transform -- uid: 2751 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 19.5,34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2752 - type: ComputerCargoOrders - components: - - rot: 1.5707963267948966 rad - pos: 14.5,17.5 - parent: 0 - type: Transform -- uid: 2753 - type: WallReinforced - components: - - pos: 13.5,33.5 - parent: 0 - type: Transform -- uid: 2754 - type: ComputerShuttleCargo - components: - - pos: 17.5,27.5 - parent: 0 - type: Transform -- uid: 2755 - type: WallReinforced - components: - - pos: 21.5,23.5 - parent: 0 - type: Transform -- uid: 2756 - type: WallReinforced - components: - - pos: 15.5,36.5 - parent: 0 - type: Transform -- uid: 2757 - type: WallReinforced - components: - - pos: 11.5,32.5 - parent: 0 - type: Transform -- uid: 2758 - type: WallReinforced - components: - - pos: 11.5,33.5 - parent: 0 - type: Transform -- uid: 2759 - type: filingCabinet - components: - - pos: 17.5,32.5 - parent: 0 - type: Transform -- uid: 2760 - type: ComputerCargoShuttle - components: - - rot: -1.5707963267948966 rad - pos: 16.5,17.5 - parent: 0 - type: Transform -- uid: 2761 - type: ReinforcedWindow - components: - - pos: 21.5,26.5 - parent: 0 - type: Transform -- uid: 2762 - type: ReinforcedWindow - components: - - pos: 23.5,26.5 - parent: 0 - type: Transform -- uid: 2763 - type: ReinforcedWindow - components: - - pos: 22.5,29.5 - parent: 0 - type: Transform -- uid: 2764 - type: ReinforcedWindow - components: - - pos: 19.5,29.5 - parent: 0 - type: Transform -- uid: 2765 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 22.5,28.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 3188 - Forward: - - port: Left - uid: 3188 - Off: - - port: Middle - uid: 3188 - type: SignalReceiver -- uid: 2766 - type: WallReinforced - components: - - pos: 14.5,32.5 - parent: 0 - type: Transform -- uid: 2767 - type: WallReinforced - components: - - pos: 14.5,35.5 - parent: 0 - type: Transform -- uid: 2768 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 22.5,24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2769 - type: WallReinforced - components: - - pos: 18.5,32.5 - parent: 0 - type: Transform -- uid: 2770 - type: Grille - components: - - pos: 18.5,31.5 - parent: 0 - type: Transform -- uid: 2771 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 23.5,28.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 3188 - Forward: - - port: Left - uid: 3188 - Off: - - port: Middle - uid: 3188 - type: SignalReceiver -- uid: 2772 - type: ReinforcedWindow - components: - - pos: 22.5,26.5 - parent: 0 - type: Transform -- uid: 2773 - type: ReinforcedWindow - components: - - pos: 22.5,23.5 - parent: 0 - type: Transform -- uid: 2774 - type: WallReinforced - components: - - pos: 21.5,29.5 - parent: 0 - type: Transform -- uid: 2775 - type: ReinforcedWindow - components: - - pos: 20.5,29.5 - parent: 0 - type: Transform -- uid: 2776 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2777 - type: PoweredSmallLight - components: - - pos: 22.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2778 - type: WallReinforced - components: - - pos: 20.5,34.5 - parent: 0 - type: Transform -- uid: 2779 - type: PlasticFlapsAirtightClear - components: - - pos: 21.5,28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2780 - type: PlasticFlapsAirtightClear - components: - - pos: 23.5,24.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2781 - type: AtmosDeviceFanTiny - components: - - pos: 23.5,25.5 - parent: 0 - type: Transform -- uid: 2782 - type: FirelockGlass - components: - - pos: 4.5,19.5 - parent: 0 - type: Transform -- uid: 2783 - type: FirelockGlass - components: - - pos: 4.5,20.5 - parent: 0 - type: Transform -- uid: 2784 - type: Poweredlight - components: - - pos: 1.5,20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2785 - type: Poweredlight - components: - - pos: -6.5,20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2786 - type: FirelockGlass - components: - - pos: 11.5,16.5 - parent: 0 - type: Transform -- uid: 2787 - type: FirelockGlass - components: - - pos: 12.5,16.5 - parent: 0 - type: Transform -- uid: 2788 - type: WallSolid - components: - - pos: 13.5,16.5 - parent: 0 - type: Transform -- uid: 2789 - type: WallSolid - components: - - pos: 13.5,18.5 - parent: 0 - type: Transform -- uid: 2790 - type: WallSolid - components: - - pos: 21.5,16.5 - parent: 0 - type: Transform -- uid: 2791 - type: WallSolid - components: - - pos: 17.5,16.5 - parent: 0 - type: Transform -- uid: 2792 - type: WallSolid - components: - - pos: 21.5,12.5 - parent: 0 - type: Transform -- uid: 2793 - type: WallSolid - components: - - pos: 20.5,12.5 - parent: 0 - type: Transform -- uid: 2794 - type: WallSolid - components: - - pos: 19.5,12.5 - parent: 0 - type: Transform -- uid: 2795 - type: WallSolid - components: - - pos: 18.5,12.5 - parent: 0 - type: Transform -- uid: 2796 - type: WallSolid - components: - - pos: 17.5,12.5 - parent: 0 - type: Transform -- uid: 2797 - type: WallSolid - components: - - pos: 16.5,12.5 - parent: 0 - type: Transform -- uid: 2798 - type: WallSolid - components: - - pos: 15.5,12.5 - parent: 0 - type: Transform -- uid: 2799 - type: WallSolid - components: - - pos: 14.5,12.5 - parent: 0 - type: Transform -- uid: 2800 - type: WallSolid - components: - - pos: 13.5,12.5 - parent: 0 - type: Transform -- uid: 2801 - type: ReinforcedWindow - components: - - pos: 13.5,17.5 - parent: 0 - type: Transform -- uid: 2802 - type: ReinforcedWindow - components: - - pos: 13.5,19.5 - parent: 0 - type: Transform -- uid: 2803 - type: ReinforcedWindow - components: - - pos: 14.5,16.5 - parent: 0 - type: Transform -- uid: 2804 - type: ReinforcedWindow - components: - - pos: 16.5,16.5 - parent: 0 - type: Transform -- uid: 2805 - type: ReinforcedWindow - components: - - pos: 18.5,16.5 - parent: 0 - type: Transform -- uid: 2806 - type: ReinforcedWindow - components: - - pos: 20.5,16.5 - parent: 0 - type: Transform -- uid: 2807 - type: ReinforcedWindow - components: - - pos: 21.5,21.5 - parent: 0 - type: Transform -- uid: 2808 - type: ReinforcedWindow - components: - - pos: 21.5,19.5 - parent: 0 - type: Transform -- uid: 2809 - type: ReinforcedWindow - components: - - pos: 19.5,22.5 - parent: 0 - type: Transform -- uid: 2810 - type: ReinforcedWindow - components: - - pos: 13.5,13.5 - parent: 0 - type: Transform -- uid: 2811 - type: ReinforcedWindow - components: - - pos: 14.5,22.5 - parent: 0 - type: Transform -- uid: 2812 - type: ReinforcedWindow - components: - - pos: 16.5,28.5 - parent: 0 - type: Transform -- uid: 2813 - type: SignDoors - components: - - pos: 18.5,28.5 - parent: 0 - type: Transform -- uid: 2814 - type: AirlockExternalLocked - components: - - pos: 12.5,33.5 - parent: 0 - type: Transform -- uid: 2815 - type: CableApcExtension - components: - - pos: 16.5,35.5 - parent: 0 - type: Transform -- uid: 2816 - type: CableApcExtension - components: - - pos: 16.5,34.5 - parent: 0 - type: Transform -- uid: 2817 - type: AirlockQuartermasterLocked - components: - - pos: 15.5,28.5 - parent: 0 - type: Transform -- uid: 2818 - type: Grille - components: - - pos: 16.5,36.5 - parent: 0 - type: Transform -- uid: 2819 - type: ReinforcedWindow - components: - - pos: 18.5,30.5 - parent: 0 - type: Transform -- uid: 2820 - type: WallReinforced - components: - - pos: 20.5,33.5 - parent: 0 - type: Transform -- uid: 2821 - type: SubstationBasic - components: - - pos: 13.5,32.5 - parent: 0 - type: Transform -- uid: 2822 - type: WallReinforced - components: - - pos: 20.5,22.5 - parent: 0 - type: Transform -- uid: 2823 - type: CableApcExtension - components: - - pos: 19.5,35.5 - parent: 0 - type: Transform -- uid: 2824 - type: WallReinforced - components: - - pos: 18.5,28.5 - parent: 0 - type: Transform -- uid: 2825 - type: WallReinforced - components: - - pos: 18.5,29.5 - parent: 0 - type: Transform -- uid: 2826 - type: CableApcExtension - components: - - pos: 16.5,33.5 - parent: 0 - type: Transform -- uid: 2827 - type: CableApcExtension - components: - - pos: 21.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2828 - type: WallReinforced - components: - - pos: 17.5,28.5 - parent: 0 - type: Transform -- uid: 2829 - type: WallReinforced - components: - - pos: 21.5,20.5 - parent: 0 - type: Transform -- uid: 2830 - type: WallReinforced - components: - - pos: 21.5,18.5 - parent: 0 - type: Transform -- uid: 2831 - type: WallReinforced - components: - - pos: 21.5,17.5 - parent: 0 - type: Transform -- uid: 2832 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: 11.5,32.5 - parent: 0 - type: Transform -- uid: 2833 - type: CableApcExtension - components: - - pos: 11.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2834 - type: CableMV - components: - - pos: 11.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2835 - type: ShuttersNormalOpen - components: - - pos: 16.5,28.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2844 - type: SignalReceiver -- uid: 2836 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: 18.5,30.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2844 - type: SignalReceiver -- uid: 2837 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: 18.5,31.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2844 - type: SignalReceiver -- uid: 2838 - type: CableMV - components: - - pos: 13.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2839 - type: CableHV - components: - - pos: 13.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2840 - type: AsteroidRock - components: - - pos: 13.5,34.5 - parent: 0 - type: Transform -- uid: 2841 - type: WallReinforced - components: - - pos: 20.5,35.5 - parent: 0 - type: Transform -- uid: 2842 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 22.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2843 - type: PlasticFlapsAirtightClear - components: - - pos: 21.5,24.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2844 - type: SignalButton - components: - - pos: 17.5,33.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2835 - - port: Toggle - uid: 2870 - - port: Toggle - uid: 2837 - - port: Toggle - uid: 2836 - type: SignalTransmitter -- uid: 2845 - type: AtmosDeviceFanTiny - components: - - pos: 23.5,27.5 - parent: 0 - type: Transform -- uid: 2846 - type: CableApcExtension - components: - - pos: 18.5,35.5 - parent: 0 - type: Transform -- uid: 2847 - type: CableApcExtension - components: - - pos: 16.5,30.5 - parent: 0 - type: Transform -- uid: 2848 - type: CableApcExtension - components: - - pos: 22.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2849 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 20.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2850 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 20.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2851 - type: WallSolid - components: - - pos: 17.5,22.5 - parent: 0 - type: Transform -- uid: 2852 - type: FirelockGlass - components: - - pos: 13.5,14.5 - parent: 0 - type: Transform -- uid: 2853 - type: FirelockGlass - components: - - pos: 13.5,15.5 - parent: 0 - type: Transform -- uid: 2854 - type: TableReinforced - components: - - pos: 15.5,16.5 - parent: 0 - type: Transform -- uid: 2855 - type: WindoorSecureCargoLocked - components: - - rot: 3.141592653589793 rad - pos: 15.5,16.5 - parent: 0 - type: Transform -- uid: 2856 - type: PlasticFlapsAirtightClear - components: - - pos: 13.5,20.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2857 - type: PlasticFlapsAirtightClear - components: - - pos: 18.5,22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2858 - type: AirlockCargoGlassLocked - components: - - pos: 19.5,16.5 - parent: 0 - type: Transform -- uid: 2859 - type: AirlockCargoGlassLocked - components: - - pos: 16.5,22.5 - parent: 0 - type: Transform -- uid: 2860 - type: AirlockCargoGlassLocked - components: - - pos: 15.5,22.5 - parent: 0 - type: Transform -- uid: 2861 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 20.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2862 - type: Grille - components: - - pos: 16.5,28.5 - parent: 0 - type: Transform -- uid: 2863 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 19.5,28.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 3188 - Forward: - - port: Left - uid: 3188 - Off: - - port: Middle - uid: 3188 - type: SignalReceiver -- uid: 2864 - type: BlastDoor - components: - - pos: 23.5,24.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2938 - type: SignalReceiver -- uid: 2865 - type: CableApcExtension - components: - - pos: 16.5,32.5 - parent: 0 - type: Transform -- uid: 2866 - type: BlastDoor - components: - - pos: 23.5,28.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2938 - type: SignalReceiver -- uid: 2867 - type: CableApcExtension - components: - - pos: 20.5,27.5 - parent: 0 - type: Transform -- uid: 2868 - type: CableApcExtension - components: - - pos: 20.5,25.5 - parent: 0 - type: Transform -- uid: 2869 - type: CableApcExtension - components: - - pos: 16.5,31.5 - parent: 0 - type: Transform -- uid: 2870 - type: ShuttersNormalOpen - components: - - pos: 16.5,36.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 2844 - type: SignalReceiver -- uid: 2871 - type: Grille - components: - - pos: 19.5,22.5 - parent: 0 - type: Transform -- uid: 2872 - type: Grille - components: - - pos: 21.5,21.5 - parent: 0 - type: Transform -- uid: 2873 - type: Grille - components: - - pos: 21.5,19.5 - parent: 0 - type: Transform -- uid: 2874 - type: Grille - components: - - pos: 14.5,22.5 - parent: 0 - type: Transform -- uid: 2875 - type: Grille - components: - - pos: 13.5,17.5 - parent: 0 - type: Transform -- uid: 2876 - type: Grille - components: - - pos: 13.5,19.5 - parent: 0 - type: Transform -- uid: 2877 - type: Grille - components: - - pos: 13.5,13.5 - parent: 0 - type: Transform -- uid: 2878 - type: Grille - components: - - pos: 14.5,16.5 - parent: 0 - type: Transform -- uid: 2879 - type: Grille - components: - - pos: 16.5,16.5 - parent: 0 - type: Transform -- uid: 2880 - type: Grille - components: - - pos: 18.5,16.5 - parent: 0 - type: Transform -- uid: 2881 - type: Grille - components: - - pos: 20.5,16.5 - parent: 0 - type: Transform -- uid: 2882 - type: AirlockMaintLocked - components: - - pos: 12.5,21.5 - parent: 0 - type: Transform -- uid: 2883 - type: SignCargo - components: - - pos: 13.5,16.5 - parent: 0 - type: Transform -- uid: 2884 - type: ReinforcedWindow - components: - - pos: 23.5,17.5 - parent: 0 - type: Transform -- uid: 2885 - type: ReinforcedWindow - components: - - pos: 21.5,13.5 - parent: 0 - type: Transform -- uid: 2886 - type: ReinforcedWindow - components: - - pos: 25.5,15.5 - parent: 0 - type: Transform -- uid: 2887 - type: ReinforcedWindow - components: - - pos: 25.5,13.5 - parent: 0 - type: Transform -- uid: 2888 - type: ReinforcedWindow - components: - - pos: 26.5,16.5 - parent: 0 - type: Transform -- uid: 2889 - type: ReinforcedWindow - components: - - pos: 27.5,16.5 - parent: 0 - type: Transform -- uid: 2890 - type: ReinforcedWindow - components: - - pos: 28.5,16.5 - parent: 0 - type: Transform -- uid: 2891 - type: ReinforcedWindow - components: - - pos: 28.5,15.5 - parent: 0 - type: Transform -- uid: 2892 - type: ReinforcedWindow - components: - - pos: 28.5,13.5 - parent: 0 - type: Transform -- uid: 2893 - type: ReinforcedWindow - components: - - pos: 28.5,12.5 - parent: 0 - type: Transform -- uid: 2894 - type: ReinforcedWindow - components: - - pos: 27.5,12.5 - parent: 0 - type: Transform -- uid: 2895 - type: ReinforcedWindow - components: - - pos: 26.5,12.5 - parent: 0 - type: Transform -- uid: 2896 - type: WallReinforced - components: - - pos: 25.5,12.5 - parent: 0 - type: Transform -- uid: 2897 - type: WallReinforced - components: - - pos: 25.5,11.5 - parent: 0 - type: Transform -- uid: 2898 - type: WallReinforced - components: - - pos: 24.5,11.5 - parent: 0 - type: Transform -- uid: 2899 - type: WallReinforced - components: - - pos: 23.5,11.5 - parent: 0 - type: Transform -- uid: 2900 - type: WallReinforced - components: - - pos: 22.5,11.5 - parent: 0 - type: Transform -- uid: 2901 - type: WallReinforced - components: - - pos: 21.5,11.5 - parent: 0 - type: Transform -- uid: 2902 - type: OreProcessor - components: - - pos: 21.5,15.5 - parent: 0 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Plasma - - Uranium - - Gold - - Silver - type: MaterialStorage -- uid: 2903 - type: WallReinforced - components: - - pos: 25.5,16.5 - parent: 0 - type: Transform -- uid: 2904 - type: WallReinforced - components: - - pos: 25.5,17.5 - parent: 0 - type: Transform -- uid: 2905 - type: WallReinforced - components: - - pos: 24.5,17.5 - parent: 0 - type: Transform -- uid: 2906 - type: WallReinforced - components: - - pos: 22.5,17.5 - parent: 0 - type: Transform -- uid: 2907 - type: Grille - components: - - pos: 25.5,13.5 - parent: 0 - type: Transform -- uid: 2908 - type: Grille - components: - - pos: 25.5,15.5 - parent: 0 - type: Transform -- uid: 2909 - type: Grille - components: - - pos: 21.5,13.5 - parent: 0 - type: Transform -- uid: 2910 - type: Grille - components: - - pos: 23.5,17.5 - parent: 0 - type: Transform -- uid: 2911 - type: Grille - components: - - pos: 26.5,16.5 - parent: 0 - type: Transform -- uid: 2912 - type: Grille - components: - - pos: 27.5,16.5 - parent: 0 - type: Transform -- uid: 2913 - type: Grille - components: - - pos: 28.5,16.5 - parent: 0 - type: Transform -- uid: 2914 - type: Grille - components: - - pos: 28.5,15.5 - parent: 0 - type: Transform -- uid: 2915 - type: Grille - components: - - pos: 28.5,13.5 - parent: 0 - type: Transform -- uid: 2916 - type: Grille - components: - - pos: 28.5,12.5 - parent: 0 - type: Transform -- uid: 2917 - type: Grille - components: - - pos: 27.5,12.5 - parent: 0 - type: Transform -- uid: 2918 - type: Grille - components: - - pos: 26.5,12.5 - parent: 0 - type: Transform -- uid: 2919 - type: AirlockExternalGlassCargoLocked - components: - - pos: 25.5,14.5 - parent: 0 - type: Transform -- uid: 2920 - type: AirlockExternalGlassCargoLocked - components: - - pos: 28.5,14.5 - parent: 0 - type: Transform -- uid: 2921 - type: AirlockSalvageLocked - components: - - pos: 21.5,14.5 - parent: 0 - type: Transform -- uid: 2922 - type: FirelockGlass - components: - - pos: 21.5,15.5 - parent: 0 - type: Transform -- uid: 2923 - type: SalvageMagnet - components: - - rot: 1.5707963267948966 rad - pos: 24.5,12.5 - parent: 0 - type: Transform -- uid: 2924 - type: SignDirectionalSec - components: - - rot: -1.5707963267948966 rad - pos: -6.5,18.5 - parent: 0 - type: Transform -- uid: 2925 - type: SignDirectionalSupply - components: - - rot: 1.5707963267948966 rad - pos: 1.5,18.5 - parent: 0 - type: Transform -- uid: 2926 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: -6.493349,18.685036 - parent: 0 - type: Transform -- uid: 2927 - type: SignDirectionalMed - components: - - pos: -6.493349,18.29441 - parent: 0 - type: Transform -- uid: 2928 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: 1.4962993,18.70066 - parent: 0 - type: Transform -- uid: 2929 - type: SignDirectionalSci - components: - - pos: 1.4962993,18.278786 - parent: 0 - type: Transform -- uid: 2930 - type: SignBridge - components: - - pos: 1.5,21.5 - parent: 0 - type: Transform -- uid: 2931 - type: SignSecureSmall - components: - - pos: -6.5,21.5 - parent: 0 - type: Transform -- uid: 2932 - type: SignDoors - components: - - pos: 4.5,21.5 - parent: 0 - type: Transform -- uid: 2933 - type: PosterLegitNanotrasenLogo - components: - - pos: -9.5,21.5 - parent: 0 - type: Transform -- uid: 2934 - type: PosterLegitNanotrasenLogo - components: - - pos: -9.5,33.5 - parent: 0 - type: Transform -- uid: 2935 - type: PosterLegitNanotrasenLogo - components: - - pos: 4.5,33.5 - parent: 0 - type: Transform -- uid: 2936 - type: PosterLegitNanotrasenLogo - components: - - pos: -15.5,26.5 - parent: 0 - type: Transform -- uid: 2937 - type: SignSecureMed - components: - - pos: 4.5,27.5 - parent: 0 - type: Transform -- uid: 2938 - type: SignalButton - components: - - pos: 21.5,26.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 2864 - - port: Toggle - uid: 2866 - type: SignalTransmitter -- uid: 2939 - type: SignSpace - components: - - pos: 22.5,26.5 - parent: 0 - type: Transform -- uid: 2940 - type: PlasticFlapsAirtightClear - components: - - pos: 23.5,28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 2941 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,27.5 - parent: 0 - type: Transform -- uid: 2942 - type: WallReinforced - components: - - pos: 23.5,29.5 - parent: 0 - type: Transform -- uid: 2943 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2944 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2945 - type: GasPipeFourway - components: - - pos: 19.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2946 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2947 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2948 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2949 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2950 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2951 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2952 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2953 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2954 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2955 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2956 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2957 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2958 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2959 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2960 - type: GasPipeFourway - components: - - pos: 15.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2961 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2962 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2963 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 22.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2964 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2965 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 24.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2966 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 23.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2967 - type: GasPipeBend - components: - - pos: 24.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2968 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2969 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 26.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2970 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2971 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2972 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 19.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2973 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2974 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 19.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2975 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2976 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2977 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2978 - type: GasPipeFourway - components: - - pos: 15.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2979 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2980 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 15.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2981 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2982 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2983 - type: GasVentPump - components: - - pos: 15.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2984 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2985 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2986 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2987 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2988 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2989 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2990 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2991 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2992 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2993 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2994 - type: GasPipeTJunction - components: - - pos: 19.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2995 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 16.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2996 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2997 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2998 - type: GasPipeStraight - components: - - pos: 16.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2999 - type: GasPipeStraight - components: - - pos: 16.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3000 - type: GasPipeStraight - components: - - pos: 16.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3001 - type: GasVentScrubber - components: - - pos: 16.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3002 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3003 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3004 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3005 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3006 - type: WallReinforced - components: - - pos: 21.5,22.5 - parent: 0 - type: Transform -- uid: 3007 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,28.5 - parent: 0 - type: Transform -- uid: 3008 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3009 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3010 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3011 - type: GasPipeTJunction - components: - - pos: 19.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3012 - type: AsteroidRock - components: - - pos: 14.5,37.5 - parent: 0 - type: Transform -- uid: 3013 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 23.5,24.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 3034 - Forward: - - port: Left - uid: 3034 - Off: - - port: Middle - uid: 3034 - type: SignalReceiver -- uid: 3014 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 22.5,24.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 3034 - Forward: - - port: Left - uid: 3034 - Off: - - port: Middle - uid: 3034 - type: SignalReceiver -- uid: 3015 - type: AirlockQuartermasterGlassLocked - components: - - pos: 16.5,33.5 - parent: 0 - type: Transform -- uid: 3016 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 20.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3017 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 15.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3018 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 14.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3019 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 14.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3020 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 19.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3021 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3022 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 20.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3023 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 14.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3024 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 14.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3025 - type: GasPipeStraight - components: - - pos: 15.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3026 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 15.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3027 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 19.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3028 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 20.5,24.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 3034 - Forward: - - port: Left - uid: 3034 - Off: - - port: Middle - uid: 3034 - type: SignalReceiver -- uid: 3029 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 19.5,24.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 3034 - Forward: - - port: Left - uid: 3034 - Off: - - port: Middle - uid: 3034 - type: SignalReceiver -- uid: 3030 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,24.5 - parent: 0 - type: Transform -- uid: 3031 - type: Grille - components: - - pos: 18.5,30.5 - parent: 0 - type: Transform -- uid: 3032 - type: Grille - components: - - pos: 19.5,29.5 - parent: 0 - type: Transform -- uid: 3033 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 21.5,24.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 3034 - Forward: - - port: Left - uid: 3034 - Off: - - port: Middle - uid: 3034 - type: SignalReceiver -- uid: 3034 - type: TwoWayLever - components: - - pos: 19.5,23.5 - parent: 0 - type: Transform - - outputs: - Left: - - port: Forward - uid: 3013 - - port: Forward - uid: 3014 - - port: Forward - uid: 3033 - - port: Forward - uid: 3028 - - port: Forward - uid: 3029 - Right: - - port: Reverse - uid: 3013 - - port: Reverse - uid: 3014 - - port: Reverse - uid: 3033 - - port: Reverse - uid: 3028 - - port: Reverse - uid: 3029 - Middle: - - port: Off - uid: 3013 - - port: Off - uid: 3014 - - port: Off - uid: 3033 - - port: Off - uid: 3028 - - port: Off - uid: 3029 - type: SignalTransmitter -- uid: 3035 - type: Grille - components: - - pos: 22.5,23.5 - parent: 0 - type: Transform -- uid: 3036 - type: Grille - components: - - pos: 22.5,26.5 - parent: 0 - type: Transform -- uid: 3037 - type: Grille - components: - - pos: 20.5,29.5 - parent: 0 - type: Transform -- uid: 3038 - type: CableApcExtension - components: - - pos: 22.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3039 - type: CableApcExtension - components: - - pos: 21.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3040 - type: AirlockExternalGlassCargoLocked - components: - - pos: 21.5,27.5 - parent: 0 - type: Transform -- uid: 3041 - type: AirlockExternalGlassCargoLocked - components: - - pos: 21.5,25.5 - parent: 0 - type: Transform -- uid: 3042 - type: WallReinforced - components: - - pos: 23.5,23.5 - parent: 0 - type: Transform -- uid: 3043 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 20.5,28.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 3188 - Forward: - - port: Left - uid: 3188 - Off: - - port: Middle - uid: 3188 - type: SignalReceiver -- uid: 3044 - type: AsteroidRock - components: - - pos: 20.5,38.5 - parent: 0 - type: Transform -- uid: 3045 - type: AsteroidRock - components: - - pos: 19.5,38.5 - parent: 0 - type: Transform -- uid: 3046 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 21.5,28.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 3188 - Forward: - - port: Left - uid: 3188 - Off: - - port: Middle - uid: 3188 - type: SignalReceiver -- uid: 3047 - type: CableHV - components: - - pos: 12.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3048 - type: CableHV - components: - - pos: 12.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3049 - type: CableHV - components: - - pos: 12.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3050 - type: CableHV - components: - - pos: 12.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3051 - type: CableHV - components: - - pos: 12.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3052 - type: CableHV - components: - - pos: 12.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3053 - type: CableHV - components: - - pos: 12.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3054 - type: CableHV - components: - - pos: 12.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3055 - type: CableHV - components: - - pos: 12.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3056 - type: CableHV - components: - - pos: 12.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3057 - type: CableHV - components: - - pos: 12.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3058 - type: CableHV - components: - - pos: 12.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3059 - type: CableHV - components: - - pos: 12.5,20.5 - parent: 0 - type: Transform -- uid: 3060 - type: CableHV - components: - - pos: 12.5,19.5 - parent: 0 - type: Transform -- uid: 3061 - type: CableHV - components: - - pos: 4.5,19.5 - parent: 0 - type: Transform -- uid: 3062 - type: CableHV - components: - - pos: 5.5,19.5 - parent: 0 - type: Transform -- uid: 3063 - type: CableHV - components: - - pos: 6.5,19.5 - parent: 0 - type: Transform -- uid: 3064 - type: CableHV - components: - - pos: 7.5,19.5 - parent: 0 - type: Transform -- uid: 3065 - type: CableHV - components: - - pos: 8.5,19.5 - parent: 0 - type: Transform -- uid: 3066 - type: CableHV - components: - - pos: 9.5,19.5 - parent: 0 - type: Transform -- uid: 3067 - type: CableHV - components: - - pos: 10.5,19.5 - parent: 0 - type: Transform -- uid: 3068 - type: CableHV - components: - - pos: 11.5,19.5 - parent: 0 - type: Transform -- uid: 3069 - type: CableHV - components: - - pos: 3.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3070 - type: CableHV - components: - - pos: 4.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3071 - type: CableHV - components: - - pos: 5.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3072 - type: CableHV - components: - - pos: 6.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3073 - type: CableHV - components: - - pos: 7.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3074 - type: CableHV - components: - - pos: 8.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3075 - type: CableHV - components: - - pos: 9.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3076 - type: CableHV - components: - - pos: 9.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3077 - type: CableHV - components: - - pos: 9.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3078 - type: CableHV - components: - - pos: 9.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3079 - type: CableHV - components: - - pos: 9.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3080 - type: CableHV - components: - - pos: 9.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3081 - type: CableHV - components: - - pos: 9.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3082 - type: CableHV - components: - - pos: 9.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3083 - type: CableHV - components: - - pos: 9.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3084 - type: CableHV - components: - - pos: 10.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3085 - type: CableHV - components: - - pos: 11.5,3.5 - parent: 0 - type: Transform -- uid: 3086 - type: CableHV - components: - - pos: 11.5,4.5 - parent: 0 - type: Transform -- uid: 3087 - type: CableHV - components: - - pos: 11.5,5.5 - parent: 0 - type: Transform -- uid: 3088 - type: CableHV - components: - - pos: 11.5,6.5 - parent: 0 - type: Transform -- uid: 3089 - type: CableHV - components: - - pos: 11.5,7.5 - parent: 0 - type: Transform -- uid: 3090 - type: CableHV - components: - - pos: 11.5,8.5 - parent: 0 - type: Transform -- uid: 3091 - type: CableHV - components: - - pos: 11.5,9.5 - parent: 0 - type: Transform -- uid: 3092 - type: CableHV - components: - - pos: 11.5,10.5 - parent: 0 - type: Transform -- uid: 3093 - type: CableHV - components: - - pos: 11.5,11.5 - parent: 0 - type: Transform -- uid: 3094 - type: CableHV - components: - - pos: 11.5,12.5 - parent: 0 - type: Transform -- uid: 3095 - type: CableHV - components: - - pos: 11.5,13.5 - parent: 0 - type: Transform -- uid: 3096 - type: CableHV - components: - - pos: 11.5,14.5 - parent: 0 - type: Transform -- uid: 3097 - type: CableHV - components: - - pos: 11.5,15.5 - parent: 0 - type: Transform -- uid: 3098 - type: CableHV - components: - - pos: 11.5,16.5 - parent: 0 - type: Transform -- uid: 3099 - type: CableHV - components: - - pos: 11.5,17.5 - parent: 0 - type: Transform -- uid: 3100 - type: CableHV - components: - - pos: 11.5,18.5 - parent: 0 - type: Transform -- uid: 3101 - type: Catwalk - components: - - pos: 3.5,11.5 - parent: 0 - type: Transform -- uid: 3102 - type: Catwalk - components: - - pos: 4.5,11.5 - parent: 0 - type: Transform -- uid: 3103 - type: Catwalk - components: - - pos: 5.5,11.5 - parent: 0 - type: Transform -- uid: 3104 - type: Catwalk - components: - - pos: 6.5,11.5 - parent: 0 - type: Transform -- uid: 3105 - type: Catwalk - components: - - pos: 7.5,11.5 - parent: 0 - type: Transform -- uid: 3106 - type: Catwalk - components: - - pos: 8.5,11.5 - parent: 0 - type: Transform -- uid: 3107 - type: Catwalk - components: - - pos: 9.5,10.5 - parent: 0 - type: Transform -- uid: 3108 - type: Catwalk - components: - - pos: 9.5,9.5 - parent: 0 - type: Transform -- uid: 3109 - type: Catwalk - components: - - pos: 9.5,8.5 - parent: 0 - type: Transform -- uid: 3110 - type: Catwalk - components: - - pos: 9.5,7.5 - parent: 0 - type: Transform -- uid: 3111 - type: Catwalk - components: - - pos: 9.5,6.5 - parent: 0 - type: Transform -- uid: 3112 - type: Catwalk - components: - - pos: 9.5,4.5 - parent: 0 - type: Transform -- uid: 3113 - type: APCBasic - components: - - pos: 17.5,22.5 - parent: 0 - type: Transform -- uid: 3114 - type: Grille - components: - - pos: 21.5,26.5 - parent: 0 - type: Transform -- uid: 3115 - type: Grille - components: - - pos: 23.5,26.5 - parent: 0 - type: Transform -- uid: 3116 - type: Grille - components: - - pos: 22.5,29.5 - parent: 0 - type: Transform -- uid: 3117 - type: ReinforcedWindow - components: - - pos: 16.5,36.5 - parent: 0 - type: Transform -- uid: 3118 - type: WallReinforced - components: - - pos: 14.5,34.5 - parent: 0 - type: Transform -- uid: 3119 - type: AirlockFreezer - components: - - pos: 18.5,35.5 - parent: 0 - type: Transform -- uid: 3120 - type: CableMV - components: - - pos: 12.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3121 - type: CableMV - components: - - pos: 12.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3122 - type: CableMV - components: - - pos: 12.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3123 - type: CableMV - components: - - pos: 12.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3124 - type: CableMV - components: - - pos: 12.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3125 - type: CableMV - components: - - pos: 12.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3126 - type: CableMV - components: - - pos: 12.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3127 - type: CableMV - components: - - pos: 12.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3128 - type: CableMV - components: - - pos: 12.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3129 - type: CableMV - components: - - pos: 13.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3130 - type: CableMV - components: - - pos: 14.5,24.5 - parent: 0 - type: Transform -- uid: 3131 - type: CableMV - components: - - pos: 15.5,24.5 - parent: 0 - type: Transform -- uid: 3132 - type: CableMV - components: - - pos: 16.5,24.5 - parent: 0 - type: Transform -- uid: 3133 - type: CableMV - components: - - pos: 17.5,24.5 - parent: 0 - type: Transform -- uid: 3134 - type: CableMV - components: - - pos: 17.5,23.5 - parent: 0 - type: Transform -- uid: 3135 - type: CableMV - components: - - pos: 17.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3136 - type: CableApcExtension - components: - - pos: 17.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3137 - type: CableApcExtension - components: - - pos: 17.5,23.5 - parent: 0 - type: Transform -- uid: 3138 - type: CableApcExtension - components: - - pos: 17.5,24.5 - parent: 0 - type: Transform -- uid: 3139 - type: CableApcExtension - components: - - pos: 17.5,25.5 - parent: 0 - type: Transform -- uid: 3140 - type: CableApcExtension - components: - - pos: 17.5,26.5 - parent: 0 - type: Transform -- uid: 3141 - type: CableApcExtension - components: - - pos: 18.5,26.5 - parent: 0 - type: Transform -- uid: 3142 - type: CableApcExtension - components: - - pos: 19.5,26.5 - parent: 0 - type: Transform -- uid: 3143 - type: CableApcExtension - components: - - pos: 20.5,26.5 - parent: 0 - type: Transform -- uid: 3144 - type: DisposalTrunk - components: - - pos: 15.5,31.5 - parent: 0 - type: Transform -- uid: 3145 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,26.5 - parent: 0 - type: Transform -- uid: 3146 - type: CableApcExtension - components: - - pos: 18.5,24.5 - parent: 0 - type: Transform -- uid: 3147 - type: CableApcExtension - components: - - pos: 19.5,24.5 - parent: 0 - type: Transform -- uid: 3148 - type: CableApcExtension - components: - - pos: 20.5,24.5 - parent: 0 - type: Transform -- uid: 3149 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,35.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3150 - type: WallReinforced - components: - - pos: 14.5,33.5 - parent: 0 - type: Transform -- uid: 3151 - type: CableApcExtension - components: - - pos: 16.5,26.5 - parent: 0 - type: Transform -- uid: 3152 - type: CableApcExtension - components: - - pos: 15.5,26.5 - parent: 0 - type: Transform -- uid: 3153 - type: CableApcExtension - components: - - pos: 15.5,27.5 - parent: 0 - type: Transform -- uid: 3154 - type: CableApcExtension - components: - - pos: 15.5,28.5 - parent: 0 - type: Transform -- uid: 3155 - type: CableApcExtension - components: - - pos: 15.5,29.5 - parent: 0 - type: Transform -- uid: 3156 - type: CableApcExtension - components: - - pos: 16.5,29.5 - parent: 0 - type: Transform -- uid: 3157 - type: CableApcExtension - components: - - pos: 17.5,21.5 - parent: 0 - type: Transform -- uid: 3158 - type: CableApcExtension - components: - - pos: 17.5,20.5 - parent: 0 - type: Transform -- uid: 3159 - type: CableApcExtension - components: - - pos: 17.5,19.5 - parent: 0 - type: Transform -- uid: 3160 - type: CableApcExtension - components: - - pos: 17.5,18.5 - parent: 0 - type: Transform -- uid: 3161 - type: CableApcExtension - components: - - pos: 17.5,17.5 - parent: 0 - type: Transform -- uid: 3162 - type: CableApcExtension - components: - - pos: 16.5,20.5 - parent: 0 - type: Transform -- uid: 3163 - type: CableApcExtension - components: - - pos: 15.5,20.5 - parent: 0 - type: Transform -- uid: 3164 - type: CableApcExtension - components: - - pos: 18.5,20.5 - parent: 0 - type: Transform -- uid: 3165 - type: CableApcExtension - components: - - pos: 19.5,20.5 - parent: 0 - type: Transform -- uid: 3166 - type: CableApcExtension - components: - - pos: 16.5,18.5 - parent: 0 - type: Transform -- uid: 3167 - type: CableApcExtension - components: - - pos: 15.5,18.5 - parent: 0 - type: Transform -- uid: 3168 - type: CableApcExtension - components: - - pos: 19.5,18.5 - parent: 0 - type: Transform -- uid: 3169 - type: CableApcExtension - components: - - pos: 18.5,18.5 - parent: 0 - type: Transform -- uid: 3170 - type: CableApcExtension - components: - - pos: 19.5,17.5 - parent: 0 - type: Transform -- uid: 3171 - type: CableApcExtension - components: - - pos: 19.5,16.5 - parent: 0 - type: Transform -- uid: 3172 - type: CableApcExtension - components: - - pos: 19.5,15.5 - parent: 0 - type: Transform -- uid: 3173 - type: CableApcExtension - components: - - pos: 19.5,14.5 - parent: 0 - type: Transform -- uid: 3174 - type: CableApcExtension - components: - - pos: 20.5,14.5 - parent: 0 - type: Transform -- uid: 3175 - type: CableApcExtension - components: - - pos: 21.5,14.5 - parent: 0 - type: Transform -- uid: 3176 - type: CableApcExtension - components: - - pos: 22.5,14.5 - parent: 0 - type: Transform -- uid: 3177 - type: CableApcExtension - components: - - pos: 23.5,14.5 - parent: 0 - type: Transform -- uid: 3178 - type: CableApcExtension - components: - - pos: 24.5,14.5 - parent: 0 - type: Transform -- uid: 3179 - type: CableApcExtension - components: - - pos: 25.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3180 - type: CableApcExtension - components: - - pos: 26.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3181 - type: CableApcExtension - components: - - pos: 27.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3182 - type: CableApcExtension - components: - - pos: 18.5,14.5 - parent: 0 - type: Transform -- uid: 3183 - type: CableApcExtension - components: - - pos: 17.5,14.5 - parent: 0 - type: Transform -- uid: 3184 - type: CableApcExtension - components: - - pos: 16.5,14.5 - parent: 0 - type: Transform -- uid: 3185 - type: CableApcExtension - components: - - pos: 15.5,14.5 - parent: 0 - type: Transform -- uid: 3186 - type: CableApcExtension - components: - - pos: 14.5,14.5 - parent: 0 - type: Transform -- uid: 3187 - type: DisposalUnit - components: - - pos: 15.5,31.5 - parent: 0 - type: Transform -- uid: 3188 - type: TwoWayLever - components: - - pos: 18.5,27.5 - parent: 0 - type: Transform - - nextSignalLeft: True - type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 2863 - - port: Forward - uid: 3043 - - port: Forward - uid: 3046 - - port: Forward - uid: 2765 - - port: Forward - uid: 2771 - Right: - - port: Reverse - uid: 2863 - - port: Reverse - uid: 3043 - - port: Reverse - uid: 3046 - - port: Reverse - uid: 2765 - - port: Reverse - uid: 2771 - Middle: - - port: Off - uid: 2863 - - port: Off - uid: 3043 - - port: Off - uid: 3046 - - port: Off - uid: 2765 - - port: Off - uid: 2771 - type: SignalTransmitter -- uid: 3189 - type: WallReinforced - components: - - pos: 14.5,36.5 - parent: 0 - type: Transform -- uid: 3190 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 23.5,27.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3191 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 23.5,25.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3192 - type: CableApcExtension - components: - - pos: 17.5,35.5 - parent: 0 - type: Transform -- uid: 3193 - type: WallReinforced - components: - - pos: 19.5,33.5 - parent: 0 - type: Transform -- uid: 3194 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,25.5 - parent: 0 - type: Transform -- uid: 3195 - type: CableApcExtension - components: - - pos: 12.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3196 - type: CableApcExtension - components: - - pos: 12.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3197 - type: CableApcExtension - components: - - pos: 12.5,30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3198 - type: CableApcExtension - components: - - pos: 12.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3199 - type: CableApcExtension - components: - - pos: 12.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3200 - type: CableApcExtension - components: - - pos: 12.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3201 - type: CableApcExtension - components: - - pos: 12.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3202 - type: CableApcExtension - components: - - pos: 12.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3203 - type: CableApcExtension - components: - - pos: 12.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3204 - type: CableApcExtension - components: - - pos: 12.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3205 - type: CableApcExtension - components: - - pos: 12.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3206 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 22.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3207 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,23.5 - parent: 0 - type: Transform -- uid: 3208 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,20.5 - parent: 0 - type: Transform -- uid: 3209 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,21.5 - parent: 0 - type: Transform -- uid: 3210 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,22.5 - parent: 0 - type: Transform -- uid: 3211 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,19.5 - parent: 0 - type: Transform -- uid: 3212 - type: WallReinforced - components: - - pos: 20.5,9.5 - parent: 0 - type: Transform -- uid: 3213 - type: AtmosFixFreezerMarker - components: - - pos: 6.5,-6.5 - parent: 0 - type: Transform -- uid: 3214 - type: AtmosFixFreezerMarker - components: - - pos: 5.5,-6.5 - parent: 0 - type: Transform -- uid: 3215 - type: AtmosFixFreezerMarker - components: - - pos: 4.5,-6.5 - parent: 0 - type: Transform -- uid: 3216 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 17.5,17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3217 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 17.5,13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3218 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 23.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3219 - type: Poweredlight - components: - - pos: 17.5,21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3220 - type: Poweredlight - components: - - pos: 17.5,27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3221 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 17.5,23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3222 - type: AtmosFixFreezerMarker - components: - - pos: 3.5,-6.5 - parent: 0 - type: Transform -- uid: 3223 - type: DisposalPipe - components: - - pos: -33.5,-6.5 - parent: 0 - type: Transform -- uid: 3224 - type: PoweredSmallLight - components: - - pos: 27.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3225 - type: ComputerRadar - components: - - pos: 27.5,15.5 - parent: 0 - type: Transform -- uid: 3226 - type: OxygenCanister - components: - - pos: 26.5,15.5 - parent: 0 - type: Transform -- uid: 3227 - type: DisposalPipe - components: - - pos: -33.5,-4.5 - parent: 0 - type: Transform -- uid: 3228 - type: HospitalCurtainsOpen - components: - - pos: 10.5,30.5 - parent: 0 - type: Transform -- uid: 3229 - type: HospitalCurtainsOpen - components: - - pos: -15.5,29.5 - parent: 0 - type: Transform -- uid: 3230 - type: VendingMachineCargoDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,19.5 - parent: 0 - type: Transform -- uid: 3231 - type: Autolathe - components: - - pos: 20.5,18.5 - parent: 0 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage -- uid: 3232 - type: TableReinforced - components: - - pos: 19.5,21.5 - parent: 0 - type: Transform -- uid: 3233 - type: TableReinforced - components: - - pos: 20.5,21.5 - parent: 0 - type: Transform -- uid: 3234 - type: Table - components: - - pos: 20.5,17.5 - parent: 0 - type: Transform -- uid: 3235 - type: Table - components: - - pos: 14.5,18.5 - parent: 0 - type: Transform -- uid: 3236 - type: filingCabinetTall - components: - - pos: 14.5,21.5 - parent: 0 - type: Transform -- uid: 3237 - type: ChairOfficeDark - components: - - pos: 15.5,17.5 - parent: 0 - type: Transform -- uid: 3238 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 19.5,20.5 - parent: 0 - type: Transform -- uid: 3239 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 15.5,13.5 - parent: 0 - type: Transform -- uid: 3240 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 16.5,13.5 - parent: 0 - type: Transform -- uid: 3241 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 18.5,13.5 - parent: 0 - type: Transform -- uid: 3242 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 19.5,13.5 - parent: 0 - type: Transform -- uid: 3243 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 20.5,13.5 - parent: 0 - type: Transform -- uid: 3244 - type: Table - components: - - pos: 17.5,13.5 - parent: 0 - type: Transform -- uid: 3245 - type: WaterCooler - components: - - pos: 14.5,13.5 - parent: 0 - type: Transform -- uid: 3246 - type: Paper - components: - - pos: 17.509274,13.545517 - parent: 0 - type: Transform -- uid: 3247 - type: Paper - components: - - pos: 17.509274,13.545517 - parent: 0 - type: Transform -- uid: 3248 - type: Paper - components: - - pos: 17.509274,13.545517 - parent: 0 - type: Transform -- uid: 3249 - type: Paper - components: - - pos: 17.509274,13.545517 - parent: 0 - type: Transform -- uid: 3250 - type: Paper - components: - - pos: 17.509274,13.545517 - parent: 0 - type: Transform -- uid: 3251 - type: Paper - components: - - pos: 17.509274,13.545517 - parent: 0 - type: Transform -- uid: 3252 - type: Paper - components: - - pos: 17.509274,13.545517 - parent: 0 - type: Transform -- uid: 3253 - type: Paper - components: - - pos: 17.509274,13.545517 - parent: 0 - type: Transform -- uid: 3254 - type: Paper - components: - - pos: 17.509274,13.545517 - parent: 0 - type: Transform -- uid: 3255 - type: Paper - components: - - pos: 17.509274,13.545517 - parent: 0 - type: Transform -- uid: 3256 - type: Pen - components: - - pos: 17.728024,13.748642 - parent: 0 - type: Transform -- uid: 3257 - type: FirelockGlass - components: - - pos: 15.5,16.5 - parent: 0 - type: Transform -- uid: 3258 - type: PottedPlantRandom - components: - - pos: 17.5,17.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 3259 - type: SpawnPointAtmos - components: - - pos: -31.5,2.5 - parent: 0 - type: Transform -- uid: 3260 - type: AtmosDeviceFanTiny - components: - - pos: 34.5,-7.5 - parent: 0 - type: Transform -- uid: 3261 - type: WeldingFuelTankFull - components: - - pos: 26.5,13.5 - parent: 0 - type: Transform -- uid: 3262 - type: CrateSalvageEquipment - components: - - pos: 27.5,13.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 3263 - type: AtmosDeviceFanTiny - components: - - pos: 34.5,0.5 - parent: 0 - type: Transform -- uid: 3264 - type: LockerSalvageSpecialistFilled - components: - - pos: 22.5,16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 1.4724461 - - 5.539202 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 3265 - type: LockerSalvageSpecialistFilled - components: - - pos: 24.5,16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 3266 - type: Table - components: - - pos: 22.5,12.5 - parent: 0 - type: Transform -- uid: 3267 - type: Rack - components: - - pos: 22.5,13.5 - parent: 0 - type: Transform -- uid: 3268 - type: Table - components: - - pos: 23.5,12.5 - parent: 0 - type: Transform -- uid: 3269 - type: ChairOfficeDark - components: - - pos: 23.5,13.5 - parent: 0 - type: Transform -- uid: 3270 - type: ExtinguisherCabinetFilled - components: - - pos: 24.5,17.5 - parent: 0 - type: Transform -- uid: 3271 - type: ToolboxEmergencyFilled - components: - - pos: 22.451836,13.667355 - parent: 0 - type: Transform -- uid: 3272 - type: ToolboxEmergencyFilled - components: - - pos: 22.62371,13.52673 - parent: 0 - type: Transform -- uid: 3273 - type: Pickaxe - components: - - pos: 22.483086,13.573605 - parent: 0 - type: Transform -- uid: 3274 - type: Pickaxe - components: - - pos: 22.576836,13.43298 - parent: 0 - type: Transform -- uid: 3275 - type: Shovel - components: - - pos: 22.483086,13.479855 - parent: 0 - type: Transform -- uid: 3276 - type: BoxFolderYellow - components: - - pos: 14.429598,18.642262 - parent: 0 - type: Transform -- uid: 3277 - type: Pen - components: - - pos: 22.826836,12.68298 - parent: 0 - type: Transform -- uid: 3278 - type: DrinkMugMetal - components: - - pos: 22.59246,12.58923 - parent: 0 - type: Transform -- uid: 3279 - type: RandomPosterAny - components: - - pos: 13.5,27.5 - parent: 0 - type: Transform -- uid: 3280 - type: PoweredSmallLight - components: - - pos: 22.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3281 - type: SpawnMobRaccoonMorticia - components: - - pos: 17.5,19.5 - parent: 0 - type: Transform -- uid: 3282 - type: SpawnPointCargoTechnician - components: - - pos: 15.5,18.5 - parent: 0 - type: Transform -- uid: 3283 - type: SpawnPointCargoTechnician - components: - - pos: 19.5,19.5 - parent: 0 - type: Transform -- uid: 3284 - type: SpawnPointSalvageSpecialist - components: - - pos: 23.5,15.5 - parent: 0 - type: Transform -- uid: 3285 - type: SpawnPointSalvageSpecialist - components: - - pos: 23.5,13.5 - parent: 0 - type: Transform -- uid: 3286 - type: GeneratorUraniumMachineCircuitboard - components: - - pos: 21.40885,7.6410265 - parent: 0 - type: Transform -- uid: 3287 - type: HighSecCommandLocked - components: - - pos: 22.5,6.5 - parent: 0 - type: Transform -- uid: 3288 - type: WallReinforced - components: - - pos: 21.5,6.5 - parent: 0 - type: Transform -- uid: 3289 - type: Rack - components: - - pos: 23.5,7.5 - parent: 0 - type: Transform -- uid: 3290 - type: DisposalUnit - components: - - pos: 17.5,21.5 - parent: 0 - type: Transform -- uid: 3291 - type: DisposalTrunk - components: - - pos: 17.5,21.5 - parent: 0 - type: Transform -- uid: 3292 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 17.5,19.5 - parent: 0 - type: Transform -- uid: 3293 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 17.5,20.5 - parent: 0 - type: Transform -- uid: 3294 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,19.5 - parent: 0 - type: Transform -- uid: 3295 - type: AsteroidRock - components: - - pos: 21.5,36.5 - parent: 0 - type: Transform -- uid: 3296 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,19.5 - parent: 0 - type: Transform -- uid: 3297 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,19.5 - parent: 0 - type: Transform -- uid: 3298 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,19.5 - parent: 0 - type: Transform -- uid: 3299 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-11.5 - parent: 0 - type: Transform -- uid: 3300 - type: DisposalPipe - components: - - pos: 11.5,18.5 - parent: 0 - type: Transform -- uid: 3301 - type: DisposalPipe - components: - - pos: 11.5,17.5 - parent: 0 - type: Transform -- uid: 3302 - type: DisposalPipe - components: - - pos: 11.5,16.5 - parent: 0 - type: Transform -- uid: 3303 - type: DisposalPipe - components: - - pos: 11.5,15.5 - parent: 0 - type: Transform -- uid: 3304 - type: DisposalPipe - components: - - pos: 11.5,14.5 - parent: 0 - type: Transform -- uid: 3305 - type: DisposalPipe - components: - - pos: 11.5,13.5 - parent: 0 - type: Transform -- uid: 3306 - type: DisposalPipe - components: - - pos: 11.5,12.5 - parent: 0 - type: Transform -- uid: 3307 - type: DisposalPipe - components: - - pos: 11.5,11.5 - parent: 0 - type: Transform -- uid: 3308 - type: DisposalPipe - components: - - pos: 11.5,10.5 - parent: 0 - type: Transform -- uid: 3309 - type: DisposalPipe - components: - - pos: 11.5,9.5 - parent: 0 - type: Transform -- uid: 3310 - type: DisposalPipe - components: - - pos: 11.5,8.5 - parent: 0 - type: Transform -- uid: 3311 - type: DisposalPipe - components: - - pos: 11.5,7.5 - parent: 0 - type: Transform -- uid: 3312 - type: DisposalPipe - components: - - pos: 11.5,6.5 - parent: 0 - type: Transform -- uid: 3313 - type: DisposalPipe - components: - - pos: 11.5,5.5 - parent: 0 - type: Transform -- uid: 3314 - type: DisposalPipe - components: - - pos: 11.5,4.5 - parent: 0 - type: Transform -- uid: 3315 - type: DisposalPipe - components: - - pos: 11.5,3.5 - parent: 0 - type: Transform -- uid: 3316 - type: DisposalPipe - components: - - pos: 11.5,2.5 - parent: 0 - type: Transform -- uid: 3317 - type: DisposalPipe - components: - - pos: 11.5,1.5 - parent: 0 - type: Transform -- uid: 3318 - type: DisposalPipe - components: - - pos: 11.5,0.5 - parent: 0 - type: Transform -- uid: 3319 - type: DisposalPipe - components: - - pos: 11.5,-0.5 - parent: 0 - type: Transform -- uid: 3320 - type: DisposalYJunction - components: - - pos: 11.5,19.5 - parent: 0 - type: Transform -- uid: 3321 - type: DisposalPipe - components: - - pos: 11.5,-2.5 - parent: 0 - type: Transform -- uid: 3322 - type: DisposalPipe - components: - - pos: 11.5,-3.5 - parent: 0 - type: Transform -- uid: 3323 - type: DisposalPipe - components: - - pos: 11.5,-4.5 - parent: 0 - type: Transform -- uid: 3324 - type: DisposalPipe - components: - - pos: 11.5,-5.5 - parent: 0 - type: Transform -- uid: 3325 - type: DisposalPipe - components: - - pos: 11.5,-6.5 - parent: 0 - type: Transform -- uid: 3326 - type: DisposalPipe - components: - - pos: 11.5,-7.5 - parent: 0 - type: Transform -- uid: 3327 - type: DisposalPipe - components: - - pos: 11.5,-8.5 - parent: 0 - type: Transform -- uid: 3328 - type: DisposalPipe - components: - - pos: 11.5,-9.5 - parent: 0 - type: Transform -- uid: 3329 - type: DisposalPipe - components: - - pos: 11.5,-10.5 - parent: 0 - type: Transform -- uid: 3330 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-11.5 - parent: 0 - type: Transform -- uid: 3331 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-11.5 - parent: 0 - type: Transform -- uid: 3332 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 0 - type: Transform -- uid: 3333 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 0 - type: Transform -- uid: 3334 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 0 - type: Transform -- uid: 3335 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 0 - type: Transform -- uid: 3336 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 0 - type: Transform -- uid: 3337 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 0 - type: Transform -- uid: 3338 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 0 - type: Transform -- uid: 3339 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 0 - type: Transform -- uid: 3340 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 0 - type: Transform -- uid: 3341 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 0 - type: Transform -- uid: 3342 - type: DisposalYJunction - components: - - pos: 0.5,-11.5 - parent: 0 - type: Transform -- uid: 3343 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 0 - type: Transform -- uid: 3344 - type: SignMinerDock - components: - - pos: 21.5,16.5 - parent: 0 - type: Transform -- uid: 3345 - type: SignDirectionalSupply - components: - - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 0 - type: Transform -- uid: 3346 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: 13.507049,12.716366 - parent: 0 - type: Transform -- uid: 3347 - type: SignDirectionalSci - components: - - pos: 13.507049,12.2966175 - parent: 0 - type: Transform -- uid: 3348 - type: WallSolid - components: - - pos: 13.5,11.5 - parent: 0 - type: Transform -- uid: 3349 - type: AirlockExternalLocked - components: - - pos: 21.5,10.5 - parent: 0 - type: Transform -- uid: 3350 - type: AirlockExternalLocked - components: - - pos: 19.5,10.5 - parent: 0 - type: Transform -- uid: 3351 - type: WallSolid - components: - - pos: 19.5,11.5 - parent: 0 - type: Transform -- uid: 3352 - type: WallReinforced - components: - - pos: 21.5,9.5 - parent: 0 - type: Transform -- uid: 3353 - type: AsteroidRock - components: - - pos: 21.5,34.5 - parent: 0 - type: Transform -- uid: 3354 - type: WallSolid - components: - - pos: 19.5,9.5 - parent: 0 - type: Transform -- uid: 3355 - type: WallReinforced - components: - - pos: 22.5,9.5 - parent: 0 - type: Transform -- uid: 3356 - type: WallReinforced - components: - - pos: 23.5,9.5 - parent: 0 - type: Transform -- uid: 3357 - type: WallReinforced - components: - - pos: 24.5,9.5 - parent: 0 - type: Transform -- uid: 3358 - type: WaterTankFull - components: - - pos: 13.5,30.5 - parent: 0 - type: Transform -- uid: 3359 - type: Rack - components: - - pos: 13.5,29.5 - parent: 0 - type: Transform -- uid: 3360 - type: MaintenanceFluffSpawner - components: - - pos: 13.5,29.5 - parent: 0 - type: Transform -- uid: 3361 - type: FirelockGlass - components: - - pos: 12.5,25.5 - parent: 0 - type: Transform -- uid: 3362 - type: Catwalk - components: - - pos: 12.5,22.5 - parent: 0 - type: Transform -- uid: 3363 - type: Catwalk - components: - - pos: 12.5,23.5 - parent: 0 - type: Transform -- uid: 3364 - type: Catwalk - components: - - pos: 12.5,26.5 - parent: 0 - type: Transform -- uid: 3365 - type: Catwalk - components: - - pos: 12.5,27.5 - parent: 0 - type: Transform -- uid: 3366 - type: Catwalk - components: - - pos: 12.5,28.5 - parent: 0 - type: Transform -- uid: 3367 - type: Catwalk - components: - - pos: 12.5,29.5 - parent: 0 - type: Transform -- uid: 3368 - type: Catwalk - components: - - pos: 12.5,30.5 - parent: 0 - type: Transform -- uid: 3369 - type: HandLabeler - components: - - pos: 20.465384,17.498707 - parent: 0 - type: Transform -- uid: 3370 - type: Multitool - components: - - pos: 14.511745,18.570736 - parent: 0 - type: Transform -- uid: 3371 - type: ClothingBeltUtilityFilled - components: - - pos: 19.574245,21.55511 - parent: 0 - type: Transform -- uid: 3372 - type: AsteroidRock - components: - - pos: 23.5,33.5 - parent: 0 - type: Transform -- uid: 3373 - type: AsteroidRock - components: - - pos: 22.5,31.5 - parent: 0 - type: Transform -- uid: 3374 - type: AsteroidRock - components: - - pos: 22.5,37.5 - parent: 0 - type: Transform -- uid: 3375 - type: AsteroidRock - components: - - pos: 22.5,35.5 - parent: 0 - type: Transform -- uid: 3376 - type: AsteroidRock - components: - - pos: 22.5,33.5 - parent: 0 - type: Transform -- uid: 3377 - type: BedsheetQM - components: - - pos: 17.5,34.5 - parent: 0 - type: Transform -- uid: 3378 - type: SMESMachineCircuitboard - components: - - pos: 25.556402,3.5160265 - parent: 0 - type: Transform -- uid: 3379 - type: MicrowaveMachineCircuitboard - components: - - pos: 25.540777,4.5472765 - parent: 0 - type: Transform -- uid: 3380 - type: SubstationMachineCircuitboard - components: - - pos: 21.406494,4.6097765 - parent: 0 - type: Transform -- uid: 3381 - type: CircuitImprinterMachineCircuitboard - components: - - pos: 21.549475,8.4847765 - parent: 0 - type: Transform -- uid: 3382 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3383 - type: FloorDrain - components: - - pos: -21.5,-8.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 3384 - type: AtmosFixFreezerMarker - components: - - pos: 6.5,-7.5 - parent: 0 - type: Transform -- uid: 3385 - type: AtmosFixFreezerMarker - components: - - pos: 7.5,-5.5 - parent: 0 - type: Transform -- uid: 3386 - type: DisposalPipe - components: - - pos: -38.5,-7.5 - parent: 0 - type: Transform -- uid: 3387 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -38.5,-8.5 - parent: 0 - type: Transform -- uid: 3388 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 - parent: 0 - type: Transform -- uid: 3389 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-8.5 - parent: 0 - type: Transform -- uid: 3390 - type: ProtolatheMachineCircuitboard - components: - - pos: 21.455725,8.6410265 - parent: 0 - type: Transform -- uid: 3391 - type: WallReinforced - components: - - pos: 23.5,6.5 - parent: 0 - type: Transform -- uid: 3392 - type: Rack - components: - - pos: 23.5,8.5 - parent: 0 - type: Transform -- uid: 3393 - type: Rack - components: - - pos: 21.5,8.5 - parent: 0 - type: Transform -- uid: 3394 - type: AsteroidRock - components: - - pos: 22.5,32.5 - parent: 0 - type: Transform -- uid: 3395 - type: AsteroidRock - components: - - pos: 23.5,32.5 - parent: 0 - type: Transform -- uid: 3396 - type: AsteroidRock - components: - - pos: 21.5,33.5 - parent: 0 - type: Transform -- uid: 3397 - type: AsteroidRock - components: - - pos: 21.5,35.5 - parent: 0 - type: Transform -- uid: 3398 - type: AsteroidRock - components: - - pos: 21.5,38.5 - parent: 0 - type: Transform -- uid: 3399 - type: AsteroidRock - components: - - pos: 22.5,36.5 - parent: 0 - type: Transform -- uid: 3400 - type: AsteroidRock - components: - - pos: 22.5,34.5 - parent: 0 - type: Transform -- uid: 3401 - type: Bed - components: - - pos: 17.5,34.5 - parent: 0 - type: Transform -- uid: 3402 - type: SMESMachineCircuitboard - components: - - pos: 25.447027,3.6097765 - parent: 0 - type: Transform -- uid: 3403 - type: SubstationMachineCircuitboard - components: - - pos: 21.54712,4.4847765 - parent: 0 - type: Transform -- uid: 3404 - type: ReagentGrinderMachineCircuitboard - components: - - pos: 23.455725,8.6254015 - parent: 0 - type: Transform -- uid: 3405 - type: CloningPodMachineCircuitboard - components: - - pos: 23.455725,7.6097765 - parent: 0 - type: Transform -- uid: 3406 - type: GasPipeTJunction - components: - - pos: -33.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3407 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3408 - type: DisposalTrunk - components: - - pos: -38.5,-6.5 - parent: 0 - type: Transform -- uid: 3409 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-8.5 - parent: 0 - type: Transform -- uid: 3410 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-8.5 - parent: 0 - type: Transform -- uid: 3411 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-8.5 - parent: 0 - type: Transform -- uid: 3412 - type: JetpackMini - components: - - pos: 17.49418,49.5522 - parent: 0 - type: Transform -- uid: 3413 - type: AtmosFixFreezerMarker - components: - - pos: 7.5,-7.5 - parent: 0 - type: Transform -- uid: 3414 - type: AtmosFixFreezerMarker - components: - - pos: 7.5,-6.5 - parent: 0 - type: Transform -- uid: 3415 - type: AtmosFixFreezerMarker - components: - - pos: 5.5,-5.5 - parent: 0 - type: Transform -- uid: 3416 - type: AtmosFixFreezerMarker - components: - - pos: 4.5,-5.5 - parent: 0 - type: Transform -- uid: 3417 - type: AtmosFixFreezerMarker - components: - - pos: 3.5,-5.5 - parent: 0 - type: Transform -- uid: 3418 - type: AtmosFixFreezerMarker - components: - - pos: 2.5,-5.5 - parent: 0 - type: Transform -- uid: 3419 - type: DisposalPipe - components: - - pos: -33.5,-5.5 - parent: 0 - type: Transform -- uid: 3420 - type: DisposalPipe - components: - - pos: -33.5,-3.5 - parent: 0 - type: Transform -- uid: 3421 - type: HospitalCurtainsOpen - components: - - pos: -19.5,29.5 - parent: 0 - type: Transform -- uid: 3422 - type: WallmountTelescreen - components: - - rot: -1.5707963267948966 rad - pos: -18.5,24.5 - parent: 0 - type: Transform -- uid: 3423 - type: AtmosDeviceFanTiny - components: - - pos: 34.5,-5.5 - parent: 0 - type: Transform -- uid: 3424 - type: AtmosDeviceFanTiny - components: - - pos: 34.5,2.5 - parent: 0 - type: Transform -- uid: 3425 - type: PosterLegitNanotrasenLogo - components: - - pos: 26.5,3.5 - parent: 0 - type: Transform -- uid: 3426 - type: AirAlarmElectronics - components: - - pos: 22.462652,3.671153 - parent: 0 - type: Transform -- uid: 3427 - type: AsteroidRock - components: - - pos: 19.5,32.5 - parent: 0 - type: Transform -- uid: 3428 - type: WallReinforced - components: - - pos: 20.5,37.5 - parent: 0 - type: Transform -- uid: 3429 - type: WallReinforced - components: - - pos: 19.5,37.5 - parent: 0 - type: Transform -- uid: 3430 - type: WallReinforced - components: - - pos: 18.5,36.5 - parent: 0 - type: Transform -- uid: 3431 - type: WallReinforced - components: - - pos: 20.5,36.5 - parent: 0 - type: Transform -- uid: 3432 - type: WallReinforced - components: - - pos: 18.5,37.5 - parent: 0 - type: Transform -- uid: 3433 - type: AsteroidRock - components: - - pos: 13.5,36.5 - parent: 0 - type: Transform -- uid: 3434 - type: VendingMachineSalvage - components: - - flags: SessionSpecific - name: Salvage Equipment - type: MetaData - - pos: 23.5,16.5 - parent: 0 - type: Transform -- uid: 3435 - type: WallSolid - components: - - pos: 17.5,33.5 - parent: 0 - type: Transform -- uid: 3436 - type: WallReinforced - components: - - pos: 18.5,33.5 - parent: 0 - type: Transform -- uid: 3437 - type: WallReinforced - components: - - pos: 13.5,31.5 - parent: 0 - type: Transform -- uid: 3438 - type: AtmosFixFreezerMarker - components: - - pos: 2.5,-6.5 - parent: 0 - type: Transform -- uid: 3439 - type: RandomSoap - components: - - pos: 19.5,36.5 - parent: 0 - type: Transform -- uid: 3440 - type: AsteroidRock - components: - - pos: 21.5,32.5 - parent: 0 - type: Transform -- uid: 3441 - type: LockerQuarterMasterFilled - components: - - pos: 15.5,34.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3442 - type: Rack - components: - - pos: 21.5,7.5 - parent: 0 - type: Transform -- uid: 3443 - type: AirAlarmElectronics - components: - - pos: 22.462652,3.671153 - parent: 0 - type: Transform -- uid: 3444 - type: AirlockAtmosphericsGlassLocked - components: - - pos: -33.5,0.5 - parent: 0 - type: Transform -- uid: 3445 - type: DisposalUnit - components: - - pos: -38.5,-6.5 - parent: 0 - type: Transform -- uid: 3446 - type: PortableScrubber - components: - - pos: -34.5,-0.5 - parent: 0 - type: Transform -- uid: 3447 - type: Table - components: - - pos: 22.5,3.5 - parent: 0 - type: Transform -- uid: 3448 - type: CrateEmptySpawner - components: - - pos: 14.5,23.5 - parent: 0 - type: Transform -- uid: 3449 - type: SpawnPointQuartermaster - components: - - pos: 16.5,34.5 - parent: 0 - type: Transform -- uid: 3450 - type: AsteroidRock - components: - - pos: 20.5,32.5 - parent: 0 - type: Transform -- uid: 3451 - type: HospitalCurtainsOpen - components: - - pos: 19.5,36.5 - parent: 0 - type: Transform -- uid: 3452 - type: ToiletEmpty - components: - - rot: -1.5707963267948966 rad - pos: 19.5,34.5 - parent: 0 - type: Transform -- uid: 3453 - type: WelderIndustrialAdvanced - components: - - pos: 35.616592,-30.437298 - parent: 0 - type: Transform -- uid: 3454 - type: ClothingHandsGlovesColorYellow - components: - - pos: 22.493902,3.499278 - parent: 0 - type: Transform -- uid: 3455 - type: AtmosDeviceFanTiny - components: - - pos: 8.5,-6.5 - parent: 0 - type: Transform -- uid: 3456 - type: AtmosDeviceFanTiny - components: - - pos: 4.5,-4.5 - parent: 0 - type: Transform -- uid: 3457 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,30.5 - parent: 0 - type: Transform -- uid: 3458 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,29.5 - parent: 0 - type: Transform -- uid: 3459 - type: AsteroidRock - components: - - pos: 15.5,37.5 - parent: 0 - type: Transform -- uid: 3460 - type: AsteroidRock - components: - - pos: 18.5,38.5 - parent: 0 - type: Transform -- uid: 3461 - type: AsteroidRock - components: - - pos: 13.5,35.5 - parent: 0 - type: Transform -- uid: 3462 - type: WallSolid - components: - - pos: 18.5,34.5 - parent: 0 - type: Transform -- uid: 3463 - type: WallSolid - components: - - pos: 15.5,33.5 - parent: 0 - type: Transform -- uid: 3464 - type: AtmosFixFreezerMarker - components: - - pos: 6.5,-5.5 - parent: 0 - type: Transform -- uid: 3465 - type: FloorDrain - components: - - pos: 5.5,-6.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 3466 - type: DisposalPipe - components: - - pos: -33.5,-7.5 - parent: 0 - type: Transform -- uid: 3467 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3468 - type: SpawnPointAtmos - components: - - pos: -30.5,3.5 - parent: 0 - type: Transform -- uid: 3469 - type: Crowbar - components: - - pos: 22.493902,3.436778 - parent: 0 - type: Transform -- uid: 3470 - type: GeneratorPlasmaMachineCircuitboard - components: - - pos: 21.580725,7.4535265 - parent: 0 - type: Transform -- uid: 3471 - type: Catwalk - components: - - pos: 3.5,41.5 - parent: 0 - type: Transform -- uid: 3472 - type: Catwalk - components: - - pos: 3.5,42.5 - parent: 0 - type: Transform -- uid: 3473 - type: Catwalk - components: - - pos: 3.5,43.5 - parent: 0 - type: Transform -- uid: 3474 - type: WallSolid - components: - - pos: 18.5,44.5 - parent: 0 - type: Transform -- uid: 3475 - type: WallSolid - components: - - pos: 16.5,41.5 - parent: 0 - type: Transform -- uid: 3476 - type: WallSolid - components: - - pos: 10.5,40.5 - parent: 0 - type: Transform -- uid: 3477 - type: Catwalk - components: - - pos: 6.5,42.5 - parent: 0 - type: Transform -- uid: 3478 - type: Catwalk - components: - - pos: 6.5,41.5 - parent: 0 - type: Transform -- uid: 3479 - type: Catwalk - components: - - pos: 6.5,40.5 - parent: 0 - type: Transform -- uid: 3480 - type: Catwalk - components: - - pos: 6.5,39.5 - parent: 0 - type: Transform -- uid: 3481 - type: Catwalk - components: - - pos: 6.5,38.5 - parent: 0 - type: Transform -- uid: 3482 - type: Catwalk - components: - - pos: 6.5,37.5 - parent: 0 - type: Transform -- uid: 3483 - type: Catwalk - components: - - pos: 6.5,36.5 - parent: 0 - type: Transform -- uid: 3484 - type: Catwalk - components: - - pos: 6.5,35.5 - parent: 0 - type: Transform -- uid: 3485 - type: Catwalk - components: - - pos: 6.5,34.5 - parent: 0 - type: Transform -- uid: 3486 - type: WallReinforced - components: - - pos: 16.5,43.5 - parent: 0 - type: Transform -- uid: 3487 - type: WallReinforced - components: - - pos: 16.5,44.5 - parent: 0 - type: Transform -- uid: 3488 - type: WallReinforced - components: - - pos: 16.5,45.5 - parent: 0 - type: Transform -- uid: 3489 - type: WallReinforced - components: - - pos: 16.5,46.5 - parent: 0 - type: Transform -- uid: 3490 - type: WallReinforced - components: - - pos: 16.5,47.5 - parent: 0 - type: Transform -- uid: 3491 - type: WallReinforced - components: - - pos: 16.5,48.5 - parent: 0 - type: Transform -- uid: 3492 - type: WallReinforced - components: - - pos: 15.5,43.5 - parent: 0 - type: Transform -- uid: 3493 - type: WallReinforced - components: - - pos: 14.5,43.5 - parent: 0 - type: Transform -- uid: 3494 - type: WallReinforced - components: - - pos: 13.5,43.5 - parent: 0 - type: Transform -- uid: 3495 - type: WallReinforced - components: - - pos: 12.5,43.5 - parent: 0 - type: Transform -- uid: 3496 - type: WallReinforced - components: - - pos: 12.5,42.5 - parent: 0 - type: Transform -- uid: 3497 - type: WallReinforced - components: - - pos: 11.5,42.5 - parent: 0 - type: Transform -- uid: 3498 - type: WallReinforced - components: - - pos: 10.5,42.5 - parent: 0 - type: Transform -- uid: 3499 - type: WallReinforced - components: - - pos: 9.5,42.5 - parent: 0 - type: Transform -- uid: 3500 - type: WallReinforced - components: - - pos: 8.5,42.5 - parent: 0 - type: Transform -- uid: 3501 - type: WallReinforced - components: - - pos: 8.5,43.5 - parent: 0 - type: Transform -- uid: 3502 - type: WallReinforced - components: - - pos: 7.5,43.5 - parent: 0 - type: Transform -- uid: 3503 - type: ReinforcedWindow - components: - - pos: 6.5,43.5 - parent: 0 - type: Transform -- uid: 3504 - type: WallReinforced - components: - - pos: 5.5,43.5 - parent: 0 - type: Transform -- uid: 3505 - type: WallReinforced - components: - - pos: 4.5,43.5 - parent: 0 - type: Transform -- uid: 3506 - type: WallReinforced - components: - - pos: 4.5,44.5 - parent: 0 - type: Transform -- uid: 3507 - type: WallReinforced - components: - - pos: 4.5,46.5 - parent: 0 - type: Transform -- uid: 3508 - type: WallReinforced - components: - - pos: 2.5,44.5 - parent: 0 - type: Transform -- uid: 3509 - type: WallReinforced - components: - - pos: 2.5,45.5 - parent: 0 - type: Transform -- uid: 3510 - type: WallReinforced - components: - - pos: 2.5,46.5 - parent: 0 - type: Transform -- uid: 3511 - type: WallReinforced - components: - - pos: 2.5,47.5 - parent: 0 - type: Transform -- uid: 3512 - type: WallReinforced - components: - - pos: 3.5,47.5 - parent: 0 - type: Transform -- uid: 3513 - type: WallReinforced - components: - - pos: 4.5,47.5 - parent: 0 - type: Transform -- uid: 3514 - type: WallReinforced - components: - - pos: 4.5,48.5 - parent: 0 - type: Transform -- uid: 3515 - type: WallReinforced - components: - - pos: 5.5,48.5 - parent: 0 - type: Transform -- uid: 3516 - type: WallReinforced - components: - - pos: 5.5,49.5 - parent: 0 - type: Transform -- uid: 3517 - type: WallReinforced - components: - - pos: 5.5,50.5 - parent: 0 - type: Transform -- uid: 3518 - type: WallReinforced - components: - - pos: 5.5,51.5 - parent: 0 - type: Transform -- uid: 3519 - type: WallReinforced - components: - - pos: 5.5,52.5 - parent: 0 - type: Transform -- uid: 3520 - type: WallReinforced - components: - - pos: 5.5,53.5 - parent: 0 - type: Transform -- uid: 3521 - type: WallReinforced - components: - - pos: 5.5,54.5 - parent: 0 - type: Transform -- uid: 3522 - type: WallReinforced - components: - - pos: 5.5,55.5 - parent: 0 - type: Transform -- uid: 3523 - type: WallReinforced - components: - - pos: 6.5,55.5 - parent: 0 - type: Transform -- uid: 3524 - type: WallReinforced - components: - - pos: 6.5,56.5 - parent: 0 - type: Transform -- uid: 3525 - type: WallReinforced - components: - - pos: 7.5,56.5 - parent: 0 - type: Transform -- uid: 3526 - type: WallReinforced - components: - - pos: 7.5,57.5 - parent: 0 - type: Transform -- uid: 3527 - type: WallReinforced - components: - - pos: 8.5,57.5 - parent: 0 - type: Transform -- uid: 3528 - type: WallReinforced - components: - - pos: 8.5,58.5 - parent: 0 - type: Transform -- uid: 3529 - type: WallReinforced - components: - - pos: 9.5,58.5 - parent: 0 - type: Transform -- uid: 3530 - type: WallReinforced - components: - - pos: 10.5,58.5 - parent: 0 - type: Transform -- uid: 3531 - type: WallReinforced - components: - - pos: 11.5,58.5 - parent: 0 - type: Transform -- uid: 3532 - type: WallReinforced - components: - - pos: 12.5,58.5 - parent: 0 - type: Transform -- uid: 3533 - type: WallReinforced - components: - - pos: 12.5,57.5 - parent: 0 - type: Transform -- uid: 3534 - type: WallReinforced - components: - - pos: 13.5,57.5 - parent: 0 - type: Transform -- uid: 3535 - type: WallReinforced - components: - - pos: 13.5,56.5 - parent: 0 - type: Transform -- uid: 3536 - type: WallReinforced - components: - - pos: 14.5,56.5 - parent: 0 - type: Transform -- uid: 3537 - type: WallReinforced - components: - - pos: 15.5,55.5 - parent: 0 - type: Transform -- uid: 3538 - type: WallReinforced - components: - - pos: 15.5,55.5 - parent: 0 - type: Transform -- uid: 3539 - type: WallReinforced - components: - - pos: 14.5,55.5 - parent: 0 - type: Transform -- uid: 3540 - type: WallReinforced - components: - - pos: 15.5,54.5 - parent: 0 - type: Transform -- uid: 3541 - type: WallReinforced - components: - - pos: 15.5,53.5 - parent: 0 - type: Transform -- uid: 3542 - type: WallReinforced - components: - - pos: 15.5,52.5 - parent: 0 - type: Transform -- uid: 3543 - type: WallReinforced - components: - - pos: 15.5,51.5 - parent: 0 - type: Transform -- uid: 3544 - type: WallReinforced - components: - - pos: 15.5,50.5 - parent: 0 - type: Transform -- uid: 3545 - type: WallReinforced - components: - - pos: 15.5,49.5 - parent: 0 - type: Transform -- uid: 3546 - type: WallReinforced - components: - - pos: 15.5,48.5 - parent: 0 - type: Transform -- uid: 3547 - type: WallReinforced - components: - - pos: 9.5,57.5 - parent: 0 - type: Transform -- uid: 3548 - type: WallReinforced - components: - - pos: 10.5,57.5 - parent: 0 - type: Transform -- uid: 3549 - type: WallReinforced - components: - - pos: 11.5,57.5 - parent: 0 - type: Transform -- uid: 3550 - type: WallReinforced - components: - - pos: 8.5,56.5 - parent: 0 - type: Transform -- uid: 3551 - type: WallReinforced - components: - - pos: 12.5,56.5 - parent: 0 - type: Transform -- uid: 3552 - type: WallReinforced - components: - - pos: 14.5,48.5 - parent: 0 - type: Transform -- uid: 3553 - type: WallReinforced - components: - - pos: 13.5,48.5 - parent: 0 - type: Transform -- uid: 3554 - type: WallReinforced - components: - - pos: 6.5,48.5 - parent: 0 - type: Transform -- uid: 3555 - type: WallReinforced - components: - - pos: 7.5,48.5 - parent: 0 - type: Transform -- uid: 3556 - type: WallReinforced - components: - - pos: 8.5,48.5 - parent: 0 - type: Transform -- uid: 3557 - type: WallReinforced - components: - - pos: 12.5,48.5 - parent: 0 - type: Transform -- uid: 3558 - type: WallReinforced - components: - - pos: 8.5,47.5 - parent: 0 - type: Transform -- uid: 3559 - type: WallReinforced - components: - - pos: 9.5,47.5 - parent: 0 - type: Transform -- uid: 3560 - type: WallReinforced - components: - - pos: 8.5,44.5 - parent: 0 - type: Transform -- uid: 3561 - type: WallReinforced - components: - - pos: 8.5,46.5 - parent: 0 - type: Transform -- uid: 3562 - type: WallReinforced - components: - - pos: 12.5,47.5 - parent: 0 - type: Transform -- uid: 3563 - type: WallReinforced - components: - - pos: 12.5,46.5 - parent: 0 - type: Transform -- uid: 3564 - type: WallReinforced - components: - - pos: 12.5,44.5 - parent: 0 - type: Transform -- uid: 3565 - type: WallReinforced - components: - - pos: 11.5,47.5 - parent: 0 - type: Transform -- uid: 3566 - type: WallReinforced - components: - - pos: 6.5,49.5 - parent: 0 - type: Transform -- uid: 3567 - type: WallReinforced - components: - - pos: 6.5,50.5 - parent: 0 - type: Transform -- uid: 3568 - type: WallReinforced - components: - - pos: 6.5,51.5 - parent: 0 - type: Transform -- uid: 3569 - type: WallReinforced - components: - - pos: 6.5,52.5 - parent: 0 - type: Transform -- uid: 3570 - type: WallReinforced - components: - - pos: 6.5,53.5 - parent: 0 - type: Transform -- uid: 3571 - type: WallReinforced - components: - - pos: 6.5,54.5 - parent: 0 - type: Transform -- uid: 3572 - type: WallReinforced - components: - - pos: 14.5,54.5 - parent: 0 - type: Transform -- uid: 3573 - type: WallReinforced - components: - - pos: 14.5,53.5 - parent: 0 - type: Transform -- uid: 3574 - type: WallReinforced - components: - - pos: 14.5,52.5 - parent: 0 - type: Transform -- uid: 3575 - type: WallReinforced - components: - - pos: 14.5,51.5 - parent: 0 - type: Transform -- uid: 3576 - type: WallReinforced - components: - - pos: 14.5,50.5 - parent: 0 - type: Transform -- uid: 3577 - type: WallReinforced - components: - - pos: 14.5,49.5 - parent: 0 - type: Transform -- uid: 3578 - type: SurveillanceCameraRouterSupply - components: - - pos: 15.5,32.5 - parent: 0 - type: Transform -- uid: 3579 - type: AsteroidRock - components: - - pos: 21.5,37.5 - parent: 0 - type: Transform -- uid: 3580 - type: SinkEmpty - components: - - rot: -1.5707963267948966 rad - pos: 19.5,35.5 - parent: 0 - type: Transform -- uid: 3581 - type: PhoneInstrument - components: - - pos: 17.347248,31.741358 - parent: 0 - type: Transform -- uid: 3582 - type: BoxFolderYellow - components: - - pos: 17.628498,31.444483 - parent: 0 - type: Transform -- uid: 3583 - type: AsteroidRock - components: - - pos: 17.5,42.5 - parent: 0 - type: Transform -- uid: 3584 - type: AsteroidRock - components: - - pos: 16.5,42.5 - parent: 0 - type: Transform -- uid: 3585 - type: AsteroidRock - components: - - pos: 15.5,42.5 - parent: 0 - type: Transform -- uid: 3586 - type: AsteroidRock - components: - - pos: 15.5,41.5 - parent: 0 - type: Transform -- uid: 3587 - type: AsteroidRock - components: - - pos: 14.5,42.5 - parent: 0 - type: Transform -- uid: 3588 - type: AsteroidRock - components: - - pos: 14.5,41.5 - parent: 0 - type: Transform -- uid: 3589 - type: AsteroidRock - components: - - pos: 13.5,42.5 - parent: 0 - type: Transform -- uid: 3590 - type: AsteroidRock - components: - - pos: 13.5,41.5 - parent: 0 - type: Transform -- uid: 3591 - type: AsteroidRock - components: - - pos: 9.5,41.5 - parent: 0 - type: Transform -- uid: 3592 - type: AsteroidRock - components: - - pos: 10.5,41.5 - parent: 0 - type: Transform -- uid: 3593 - type: AsteroidRock - components: - - pos: 11.5,41.5 - parent: 0 - type: Transform -- uid: 3594 - type: AsteroidRock - components: - - pos: 12.5,41.5 - parent: 0 - type: Transform -- uid: 3595 - type: AsteroidRock - components: - - pos: 11.5,40.5 - parent: 0 - type: Transform -- uid: 3596 - type: AsteroidRock - components: - - pos: 12.5,40.5 - parent: 0 - type: Transform -- uid: 3597 - type: AsteroidRock - components: - - pos: 13.5,40.5 - parent: 0 - type: Transform -- uid: 3598 - type: AsteroidRock - components: - - pos: 17.5,43.5 - parent: 0 - type: Transform -- uid: 3599 - type: AsteroidRock - components: - - pos: 17.5,44.5 - parent: 0 - type: Transform -- uid: 3600 - type: AsteroidRock - components: - - pos: 17.5,45.5 - parent: 0 - type: Transform -- uid: 3601 - type: AsteroidRock - components: - - pos: 17.5,47.5 - parent: 0 - type: Transform -- uid: 3602 - type: AsteroidRock - components: - - pos: 18.5,47.5 - parent: 0 - type: Transform -- uid: 3603 - type: AsteroidRock - components: - - pos: 20.5,48.5 - parent: 0 - type: Transform -- uid: 3604 - type: AsteroidRock - components: - - pos: 20.5,49.5 - parent: 0 - type: Transform -- uid: 3605 - type: AsteroidRock - components: - - pos: 21.5,49.5 - parent: 0 - type: Transform -- uid: 3606 - type: AsteroidRock - components: - - pos: 19.5,48.5 - parent: 0 - type: Transform -- uid: 3607 - type: AsteroidRock - components: - - pos: 18.5,48.5 - parent: 0 - type: Transform -- uid: 3608 - type: AsteroidRock - components: - - pos: 17.5,48.5 - parent: 0 - type: Transform -- uid: 3609 - type: AsteroidRock - components: - - pos: 16.5,49.5 - parent: 0 - type: Transform -- uid: 3610 - type: AsteroidRock - components: - - pos: 18.5,49.5 - parent: 0 - type: Transform -- uid: 3611 - type: DrinkLithiumFlask - components: - - pos: -18.350801,33.411205 - parent: 0 - type: Transform -- uid: 3612 - type: AsteroidRock - components: - - pos: 19.5,49.5 - parent: 0 - type: Transform -- uid: 3613 - type: AsteroidRock - components: - - pos: 19.5,50.5 - parent: 0 - type: Transform -- uid: 3614 - type: AsteroidRock - components: - - pos: 18.5,50.5 - parent: 0 - type: Transform -- uid: 3615 - type: AsteroidRock - components: - - pos: 18.5,51.5 - parent: 0 - type: Transform -- uid: 3616 - type: AsteroidRock - components: - - pos: 17.5,50.5 - parent: 0 - type: Transform -- uid: 3617 - type: AsteroidRock - components: - - pos: 17.5,51.5 - parent: 0 - type: Transform -- uid: 3618 - type: AsteroidRock - components: - - pos: 16.5,51.5 - parent: 0 - type: Transform -- uid: 3619 - type: AsteroidRock - components: - - pos: 16.5,51.5 - parent: 0 - type: Transform -- uid: 3620 - type: AsteroidRock - components: - - pos: 18.5,53.5 - parent: 0 - type: Transform -- uid: 3621 - type: AsteroidRock - components: - - pos: 17.5,52.5 - parent: 0 - type: Transform -- uid: 3622 - type: AsteroidRock - components: - - pos: 16.5,52.5 - parent: 0 - type: Transform -- uid: 3623 - type: AsteroidRock - components: - - pos: 16.5,50.5 - parent: 0 - type: Transform -- uid: 3624 - type: AsteroidRock - components: - - pos: 17.5,53.5 - parent: 0 - type: Transform -- uid: 3625 - type: AsteroidRock - components: - - pos: 16.5,53.5 - parent: 0 - type: Transform -- uid: 3626 - type: AsteroidRock - components: - - pos: 17.5,54.5 - parent: 0 - type: Transform -- uid: 3627 - type: AsteroidRock - components: - - pos: 16.5,54.5 - parent: 0 - type: Transform -- uid: 3628 - type: AsteroidRock - components: - - pos: 16.5,55.5 - parent: 0 - type: Transform -- uid: 3629 - type: AsteroidRock - components: - - pos: 16.5,56.5 - parent: 0 - type: Transform -- uid: 3630 - type: AsteroidRock - components: - - pos: 16.5,57.5 - parent: 0 - type: Transform -- uid: 3631 - type: AsteroidRock - components: - - pos: 15.5,57.5 - parent: 0 - type: Transform -- uid: 3632 - type: AsteroidRock - components: - - pos: 15.5,56.5 - parent: 0 - type: Transform -- uid: 3633 - type: AsteroidRock - components: - - pos: 14.5,57.5 - parent: 0 - type: Transform -- uid: 3634 - type: AsteroidRock - components: - - pos: 14.5,58.5 - parent: 0 - type: Transform -- uid: 3635 - type: AsteroidRock - components: - - pos: 13.5,58.5 - parent: 0 - type: Transform -- uid: 3636 - type: AsteroidRock - components: - - pos: 13.5,59.5 - parent: 0 - type: Transform -- uid: 3637 - type: AsteroidRock - components: - - pos: 12.5,59.5 - parent: 0 - type: Transform -- uid: 3638 - type: AsteroidRock - components: - - pos: 12.5,60.5 - parent: 0 - type: Transform -- uid: 3639 - type: AsteroidRock - components: - - pos: 11.5,59.5 - parent: 0 - type: Transform -- uid: 3640 - type: AsteroidRock - components: - - pos: 11.5,60.5 - parent: 0 - type: Transform -- uid: 3641 - type: AsteroidRock - components: - - pos: 10.5,59.5 - parent: 0 - type: Transform -- uid: 3642 - type: AsteroidRock - components: - - pos: 10.5,60.5 - parent: 0 - type: Transform -- uid: 3643 - type: AsteroidRock - components: - - pos: 9.5,59.5 - parent: 0 - type: Transform -- uid: 3644 - type: AsteroidRock - components: - - pos: 9.5,60.5 - parent: 0 - type: Transform -- uid: 3645 - type: AsteroidRock - components: - - pos: 8.5,59.5 - parent: 0 - type: Transform -- uid: 3646 - type: AsteroidRock - components: - - pos: 7.5,58.5 - parent: 0 - type: Transform -- uid: 3647 - type: AsteroidRock - components: - - pos: 7.5,59.5 - parent: 0 - type: Transform -- uid: 3648 - type: AsteroidRock - components: - - pos: 6.5,58.5 - parent: 0 - type: Transform -- uid: 3649 - type: AsteroidRock - components: - - pos: 5.5,58.5 - parent: 0 - type: Transform -- uid: 3650 - type: AsteroidRock - components: - - pos: 5.5,57.5 - parent: 0 - type: Transform -- uid: 3651 - type: AsteroidRock - components: - - pos: 4.5,57.5 - parent: 0 - type: Transform -- uid: 3652 - type: AsteroidRock - components: - - pos: 4.5,56.5 - parent: 0 - type: Transform -- uid: 3653 - type: AsteroidRock - components: - - pos: 3.5,56.5 - parent: 0 - type: Transform -- uid: 3654 - type: AsteroidRock - components: - - pos: 2.5,55.5 - parent: 0 - type: Transform -- uid: 3655 - type: AsteroidRock - components: - - pos: 2.5,54.5 - parent: 0 - type: Transform -- uid: 3656 - type: AsteroidRock - components: - - pos: 3.5,54.5 - parent: 0 - type: Transform -- uid: 3657 - type: AsteroidRock - components: - - pos: 3.5,53.5 - parent: 0 - type: Transform -- uid: 3658 - type: AsteroidRock - components: - - pos: 3.5,52.5 - parent: 0 - type: Transform -- uid: 3659 - type: AsteroidRock - components: - - pos: 2.5,52.5 - parent: 0 - type: Transform -- uid: 3660 - type: AsteroidRock - components: - - pos: 2.5,51.5 - parent: 0 - type: Transform -- uid: 3661 - type: AsteroidRock - components: - - pos: 2.5,50.5 - parent: 0 - type: Transform -- uid: 3662 - type: AsteroidRock - components: - - pos: 1.5,50.5 - parent: 0 - type: Transform -- uid: 3663 - type: AsteroidRock - components: - - pos: 1.5,49.5 - parent: 0 - type: Transform -- uid: 3664 - type: AsteroidRock - components: - - pos: 0.5,49.5 - parent: 0 - type: Transform -- uid: 3665 - type: AsteroidRock - components: - - pos: 0.5,48.5 - parent: 0 - type: Transform -- uid: 3666 - type: AsteroidRock - components: - - pos: 0.5,47.5 - parent: 0 - type: Transform -- uid: 3667 - type: AsteroidRock - components: - - pos: 1.5,47.5 - parent: 0 - type: Transform -- uid: 3668 - type: AsteroidRock - components: - - pos: 1.5,46.5 - parent: 0 - type: Transform -- uid: 3669 - type: AsteroidRock - components: - - pos: 1.5,48.5 - parent: 0 - type: Transform -- uid: 3670 - type: AsteroidRock - components: - - pos: 2.5,48.5 - parent: 0 - type: Transform -- uid: 3671 - type: AsteroidRock - components: - - pos: 3.5,48.5 - parent: 0 - type: Transform -- uid: 3672 - type: AsteroidRock - components: - - pos: 2.5,49.5 - parent: 0 - type: Transform -- uid: 3673 - type: AsteroidRock - components: - - pos: 3.5,51.5 - parent: 0 - type: Transform -- uid: 3674 - type: ClosetFireFilled - components: - - pos: 3.5,49.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3675 - type: FoodBurgerRobot - components: - - pos: 5.460861,44.505184 - parent: 0 - type: Transform -- uid: 3676 - type: AsteroidRock - components: - - pos: 4.5,49.5 - parent: 0 - type: Transform -- uid: 3677 - type: FireExtinguisher - components: - - pos: 3.3851929,50.52095 - parent: 0 - type: Transform -- uid: 3678 - type: WaterTankHighCapacity - components: - - pos: 4.5,51.5 - parent: 0 - type: Transform -- uid: 3679 - type: AsteroidRock - components: - - pos: 4.5,52.5 - parent: 0 - type: Transform -- uid: 3680 - type: AsteroidRock - components: - - pos: 4.5,53.5 - parent: 0 - type: Transform -- uid: 3681 - type: AsteroidRock - components: - - pos: 4.5,54.5 - parent: 0 - type: Transform -- uid: 3682 - type: AsteroidRock - components: - - pos: 4.5,55.5 - parent: 0 - type: Transform -- uid: 3683 - type: AsteroidRock - components: - - pos: 3.5,55.5 - parent: 0 - type: Transform -- uid: 3684 - type: AsteroidRock - components: - - pos: 5.5,56.5 - parent: 0 - type: Transform -- uid: 3685 - type: AsteroidRock - components: - - pos: 6.5,57.5 - parent: 0 - type: Transform -- uid: 3686 - type: AirlockExternalLocked - components: - - pos: 3.5,44.5 - parent: 0 - type: Transform -- uid: 3687 - type: AirlockExternalLocked - components: - - pos: 4.5,45.5 - parent: 0 - type: Transform -- uid: 3688 - type: HighSecCommandLocked - components: - - pos: 8.5,45.5 - parent: 0 - type: Transform -- uid: 3689 - type: HighSecCommandLocked - components: - - pos: 12.5,45.5 - parent: 0 - type: Transform -- uid: 3690 - type: HighSecCommandLocked - components: - - pos: 10.5,47.5 - parent: 0 - type: Transform -- uid: 3691 - type: WallReinforced - components: - - pos: 9.5,54.5 - parent: 0 - type: Transform -- uid: 3692 - type: WallReinforced - components: - - pos: 11.5,54.5 - parent: 0 - type: Transform -- uid: 3693 - type: WallReinforced - components: - - pos: 9.5,52.5 - parent: 0 - type: Transform -- uid: 3694 - type: WallReinforced - components: - - pos: 9.5,51.5 - parent: 0 - type: Transform -- uid: 3695 - type: WallReinforced - components: - - pos: 10.5,51.5 - parent: 0 - type: Transform -- uid: 3696 - type: WallReinforced - components: - - pos: 11.5,51.5 - parent: 0 - type: Transform -- uid: 3697 - type: WallReinforced - components: - - pos: 11.5,52.5 - parent: 0 - type: Transform -- uid: 3698 - type: ReinforcedWindow - components: - - pos: 10.5,54.5 - parent: 0 - type: Transform -- uid: 3699 - type: SMESBasic - components: - - pos: 10.5,56.5 - parent: 0 - type: Transform -- uid: 3700 - type: SMESBasic - components: - - pos: 14.5,47.5 - parent: 0 - type: Transform -- uid: 3701 - type: Grille - components: - - pos: 10.5,54.5 - parent: 0 - type: Transform -- uid: 3702 - type: WindoorCommandLocked - components: - - rot: -1.5707963267948966 rad - pos: 9.5,53.5 - parent: 0 - type: Transform -- uid: 3703 - type: WindoorCommandLocked - components: - - rot: 1.5707963267948966 rad - pos: 11.5,53.5 - parent: 0 - type: Transform -- uid: 3704 - type: ChairOfficeDark - components: - - pos: 17.5,30.5 - parent: 0 - type: Transform -- uid: 3705 - type: BoxFolderYellow - components: - - pos: 15.550373,35.549133 - parent: 0 - type: Transform -- uid: 3706 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3707 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3708 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3709 - type: PortableScrubber - components: - - pos: -34.5,-1.5 - parent: 0 - type: Transform -- uid: 3710 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3711 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3712 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3713 - type: CrateFilledSpawner - components: - - pos: 14.5,27.5 - parent: 0 - type: Transform -- uid: 3714 - type: CrateFilledSpawner - components: - - pos: 14.5,26.5 - parent: 0 - type: Transform -- uid: 3715 - type: CrateFilledSpawner - components: - - pos: 14.5,25.5 - parent: 0 - type: Transform -- uid: 3716 - type: Mirror - components: - - pos: 20.5,35.5 - parent: 0 - type: Transform -- uid: 3717 - type: WallReinforced - components: - - pos: 21.5,3.5 - parent: 0 - type: Transform -- uid: 3718 - type: WallReinforced - components: - - pos: 20.5,3.5 - parent: 0 - type: Transform -- uid: 3719 - type: WallReinforced - components: - - pos: 20.5,4.5 - parent: 0 - type: Transform -- uid: 3720 - type: WallReinforced - components: - - pos: 20.5,5.5 - parent: 0 - type: Transform -- uid: 3721 - type: WallReinforced - components: - - pos: 21.5,2.5 - parent: 0 - type: Transform -- uid: 3722 - type: WallReinforced - components: - - pos: 20.5,7.5 - parent: 0 - type: Transform -- uid: 3723 - type: WallReinforced - components: - - pos: 26.5,2.5 - parent: 0 - type: Transform -- uid: 3724 - type: WallReinforced - components: - - pos: 26.5,3.5 - parent: 0 - type: Transform -- uid: 3725 - type: WallReinforced - components: - - pos: 26.5,4.5 - parent: 0 - type: Transform -- uid: 3726 - type: AirlockEngineeringLocked - components: - - pos: 24.5,2.5 - parent: 0 - type: Transform -- uid: 3727 - type: WallReinforced - components: - - pos: 25.5,2.5 - parent: 0 - type: Transform -- uid: 3728 - type: WallReinforced - components: - - pos: 20.5,8.5 - parent: 0 - type: Transform -- uid: 3729 - type: WallReinforced - components: - - pos: 20.5,6.5 - parent: 0 - type: Transform -- uid: 3730 - type: WallReinforced - components: - - pos: 23.5,2.5 - parent: 0 - type: Transform -- uid: 3731 - type: WallReinforced - components: - - pos: 22.5,2.5 - parent: 0 - type: Transform -- uid: 3732 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3733 - type: PoweredSmallLight - components: - - pos: 24.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3734 - type: CloningPod - components: - - pos: -16.5,-15.5 - parent: 0 - type: Transform - - containers: - - machine_parts - - machine_board - type: Construction - - inputs: - CloningPodReceiver: - - port: CloningPodSender - uid: 3737 - type: SignalReceiver -- uid: 3735 - type: VendingMachineGeneDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,-18.5 - parent: 0 - type: Transform -- uid: 3736 - type: MedicalScanner - components: - - pos: -14.5,-15.5 - parent: 0 - type: Transform - - containers: - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - MedicalScanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - scanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - inputs: - MedicalScannerReceiver: - - port: MedicalScannerSender - uid: 3737 - type: SignalReceiver -- uid: 3737 - type: ComputerCloningConsole - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-17.5 - parent: 0 - type: Transform - - outputs: - MedicalScannerSender: - - port: MedicalScannerReceiver - uid: 3736 - CloningPodSender: - - port: CloningPodReceiver - uid: 3734 - type: SignalTransmitter -- uid: 3738 - type: WeaponDisabler - components: - - pos: -39.515656,11.630442 - parent: 0 - type: Transform -- uid: 3739 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3740 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3741 - type: GasPipeTJunction - components: - - pos: -33.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3742 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -32.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3743 - type: GasPipeStraight - components: - - pos: -32.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3744 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -33.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3745 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3746 - type: GasPipeBend - components: - - pos: -32.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3747 - type: DisposalYJunction - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-2.5 - parent: 0 - type: Transform -- uid: 3748 - type: Rack - components: - - pos: 21.5,5.5 - parent: 0 - type: Transform -- uid: 3749 - type: OreProcessorMachineCircuitboard - components: - - pos: 21.462652,5.5472765 - parent: 0 - type: Transform -- uid: 3750 - type: Rack - components: - - pos: 25.5,3.5 - parent: 0 - type: Transform -- uid: 3751 - type: Rack - components: - - pos: 25.5,4.5 - parent: 0 - type: Transform -- uid: 3752 - type: Rack - components: - - pos: 21.5,4.5 - parent: 0 - type: Transform -- uid: 3753 - type: WeaponDisabler - components: - - pos: -39.609406,11.771067 - parent: 0 - type: Transform -- uid: 3754 - type: WeaponDisabler - components: - - pos: -33.40336,20.459352 - parent: 0 - type: Transform -- uid: 3755 - type: Table - components: - - pos: 15.5,35.5 - parent: 0 - type: Transform -- uid: 3756 - type: Table - components: - - pos: 17.5,31.5 - parent: 0 - type: Transform -- uid: 3757 - type: ComputerCargoOrders - components: - - rot: 3.141592653589793 rad - pos: 16.5,29.5 - parent: 0 - type: Transform -- uid: 3758 - type: ComputerShuttleCargo - components: - - rot: 3.141592653589793 rad - pos: 17.5,29.5 - parent: 0 - type: Transform -- uid: 3759 - type: WeaponDisabler - components: - - pos: -33.40336,20.459352 - parent: 0 - type: Transform -- uid: 3760 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-50.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3761 - type: AirlockExternalGlass - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-43.5 - parent: 0 - type: Transform -- uid: 3762 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-43.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 3763 - type: AirlockExternalGlass - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-43.5 - parent: 0 - type: Transform -- uid: 3764 - type: AirlockExternalGlass - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-50.5 - parent: 0 - type: Transform -- uid: 3765 - type: AirlockExternalGlass - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-50.5 - parent: 0 - type: Transform -- uid: 3766 - type: AtmosDeviceFanTiny - components: - - pos: -13.5,-50.5 - parent: 0 - type: Transform -- uid: 3767 - type: AtmosDeviceFanTiny - components: - - pos: -8.5,-50.5 - parent: 0 - type: Transform -- uid: 3768 - type: AtmosDeviceFanTiny - components: - - pos: -8.5,-43.5 - parent: 0 - type: Transform -- uid: 3769 - type: AtmosDeviceFanTiny - components: - - pos: -13.5,-43.5 - parent: 0 - type: Transform -- uid: 3770 - type: PoweredSmallLight - components: - - pos: 16.5,-14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3771 - type: AirlockVirologyLocked - components: - - pos: -32.5,-33.5 - parent: 0 - type: Transform -- uid: 3772 - type: AirlockVirologyLocked - components: - - pos: -35.5,-33.5 - parent: 0 - type: Transform -- uid: 3773 - type: AirlockVirologyGlassLocked - components: - - pos: -36.5,-36.5 - parent: 0 - type: Transform -- uid: 3774 - type: SpaceVillainArcadeFilled - components: - - pos: -21.5,5.5 - parent: 0 - type: Transform -- uid: 3775 - type: WallmountTelescreen - components: - - rot: 3.141592653589793 rad - pos: 19.5,-16.5 - parent: 0 - type: Transform -- uid: 3776 - type: RandomFoodMeal - components: - - pos: -2.5,8.5 - parent: 0 - type: Transform -- uid: 3777 - type: AirlockExternalGlass - components: - - pos: 32.5,-5.5 - parent: 0 - type: Transform -- uid: 3778 - type: AirlockExternalGlass - components: - - pos: 32.5,-7.5 - parent: 0 - type: Transform -- uid: 3779 - type: AirlockExternalGlass - components: - - pos: 32.5,0.5 - parent: 0 - type: Transform -- uid: 3780 - type: AirlockExternalGlass - components: - - pos: 32.5,2.5 - parent: 0 - type: Transform -- uid: 3781 - type: GasVentPump - components: - - pos: -1.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3782 - type: GasVentScrubber - components: - - pos: 10.5,20.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3783 - type: GasPipeTJunction - components: - - pos: -3.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3784 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3785 - type: Pickaxe - components: - - pos: 17.50081,55.46929 - parent: 0 - type: Transform -- uid: 3786 - type: ClosetEmergencyFilledRandom - components: - - pos: 3.5,46.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 3787 - type: SubstationBasic - components: - - pos: 13.5,47.5 - parent: 0 - type: Transform -- uid: 3788 - type: GeneratorUranium - components: - - pos: 14.5,44.5 - parent: 0 - type: Transform -- uid: 3789 - type: CableHV - components: - - pos: 14.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3790 - type: CableHV - components: - - pos: 14.5,45.5 - parent: 0 - type: Transform -- uid: 3791 - type: CableHV - components: - - pos: 14.5,44.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3792 - type: CableHV - components: - - pos: 14.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3793 - type: CableHV - components: - - pos: 13.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3794 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 14.5,46.5 - parent: 0 - type: Transform -- uid: 3795 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: 15.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3796 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,46.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3797 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3798 - type: GasPipeTJunction - components: - - pos: 13.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3799 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3800 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3801 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3802 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3803 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 7.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3804 - type: GasPipeFourway - components: - - pos: 11.5,46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3805 - type: GasPipeStraight - components: - - pos: 11.5,47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3806 - type: GasPipeStraight - components: - - pos: 11.5,48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3807 - type: GasPipeStraight - components: - - pos: 11.5,49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3808 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 11.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3809 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 12.5,50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3810 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3811 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3812 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 11.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3813 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 7.5,44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3814 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 11.5,43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3815 - type: GasVentScrubber - components: - - pos: 12.5,51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3816 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 13.5,45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3817 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: 17.5,46.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 3818 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 14.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3819 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3820 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3821 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3822 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3823 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 9.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3824 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 9.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3825 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3826 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3827 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3828 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3829 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3830 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3831 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3832 - type: GasPipeTJunction - components: - - pos: 5.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3833 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3834 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 3.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3835 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 5.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3836 - type: GasPipeBend - components: - - pos: 9.5,50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3837 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 8.5,50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3838 - type: GasVentPump - components: - - pos: 8.5,51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3839 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 15.5,44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3840 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 14.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3841 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 15.5,45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3842 - type: AirCanister - components: - - pos: 15.5,44.5 - parent: 0 - type: Transform -- uid: 3843 - type: Table - components: - - pos: 13.5,44.5 - parent: 0 - type: Transform -- uid: 3844 - type: Table - components: - - pos: 15.5,47.5 - parent: 0 - type: Transform -- uid: 3845 - type: ToolboxMechanicalFilled - components: - - pos: 15.388588,47.767467 - parent: 0 - type: Transform -- uid: 3846 - type: ToolboxElectricalFilled - components: - - pos: 15.560463,47.548717 - parent: 0 - type: Transform -- uid: 3847 - type: SheetSteel - components: - - pos: 13.454958,44.549038 - parent: 0 - type: Transform -- uid: 3848 - type: SheetGlass - components: - - pos: 13.673708,44.533413 - parent: 0 - type: Transform -- uid: 3849 - type: SheetPlasma - components: - - pos: 13.533083,44.486538 - parent: 0 - type: Transform -- uid: 3850 - type: Table - components: - - pos: 10.5,43.5 - parent: 0 - type: Transform -- uid: 3851 - type: Table - components: - - pos: 9.5,56.5 - parent: 0 - type: Transform -- uid: 3852 - type: Table - components: - - pos: 11.5,56.5 - parent: 0 - type: Transform -- uid: 3853 - type: CableHV - components: - - pos: 13.5,45.5 - parent: 0 - type: Transform -- uid: 3854 - type: CableHV - components: - - pos: 12.5,45.5 - parent: 0 - type: Transform -- uid: 3855 - type: CableHV - components: - - pos: 11.5,45.5 - parent: 0 - type: Transform -- uid: 3856 - type: CableHV - components: - - pos: 10.5,45.5 - parent: 0 - type: Transform -- uid: 3857 - type: CableHV - components: - - pos: 10.5,46.5 - parent: 0 - type: Transform -- uid: 3858 - type: CableHV - components: - - pos: 10.5,47.5 - parent: 0 - type: Transform -- uid: 3859 - type: CableHV - components: - - pos: 10.5,48.5 - parent: 0 - type: Transform -- uid: 3860 - type: CableHV - components: - - pos: 10.5,49.5 - parent: 0 - type: Transform -- uid: 3861 - type: CableHV - components: - - pos: 10.5,50.5 - parent: 0 - type: Transform -- uid: 3862 - type: CableHV - components: - - pos: 11.5,50.5 - parent: 0 - type: Transform -- uid: 3863 - type: CableHV - components: - - pos: 12.5,50.5 - parent: 0 - type: Transform -- uid: 3864 - type: CableHV - components: - - pos: 12.5,51.5 - parent: 0 - type: Transform -- uid: 3865 - type: CableHV - components: - - pos: 12.5,52.5 - parent: 0 - type: Transform -- uid: 3866 - type: CableHV - components: - - pos: 12.5,53.5 - parent: 0 - type: Transform -- uid: 3867 - type: CableHV - components: - - pos: 12.5,54.5 - parent: 0 - type: Transform -- uid: 3868 - type: CableHV - components: - - pos: 12.5,55.5 - parent: 0 - type: Transform -- uid: 3869 - type: CableHV - components: - - pos: 9.5,50.5 - parent: 0 - type: Transform -- uid: 3870 - type: CableHV - components: - - pos: 8.5,50.5 - parent: 0 - type: Transform -- uid: 3871 - type: CableHV - components: - - pos: 8.5,51.5 - parent: 0 - type: Transform -- uid: 3872 - type: CableHV - components: - - pos: 8.5,52.5 - parent: 0 - type: Transform -- uid: 3873 - type: CableHV - components: - - pos: 8.5,53.5 - parent: 0 - type: Transform -- uid: 3874 - type: CableHV - components: - - pos: 8.5,54.5 - parent: 0 - type: Transform -- uid: 3875 - type: CableHV - components: - - pos: 8.5,55.5 - parent: 0 - type: Transform -- uid: 3876 - type: CableHV - components: - - pos: 9.5,55.5 - parent: 0 - type: Transform -- uid: 3877 - type: CableHV - components: - - pos: 11.5,55.5 - parent: 0 - type: Transform -- uid: 3878 - type: CableHV - components: - - pos: 10.5,55.5 - parent: 0 - type: Transform -- uid: 3879 - type: CableHV - components: - - pos: 10.5,56.5 - parent: 0 - type: Transform -- uid: 3880 - type: PowerCellRecharger - components: - - pos: 9.5,56.5 - parent: 0 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 3881 - type: Paper - components: - - pos: 11.504802,56.565136 - parent: 0 - type: Transform -- uid: 3882 - type: Pen - components: - - pos: 11.754802,56.73701 - parent: 0 - type: Transform -- uid: 3883 - type: APCBasic - components: - - pos: 11.5,51.5 - parent: 0 - type: Transform -- uid: 3884 - type: CableMV - components: - - pos: 13.5,47.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3885 - type: CableMV - components: - - pos: 13.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3886 - type: CableMV - components: - - pos: 13.5,45.5 - parent: 0 - type: Transform -- uid: 3887 - type: CableMV - components: - - pos: 12.5,45.5 - parent: 0 - type: Transform -- uid: 3888 - type: CableMV - components: - - pos: 11.5,45.5 - parent: 0 - type: Transform -- uid: 3889 - type: CableMV - components: - - pos: 10.5,45.5 - parent: 0 - type: Transform -- uid: 3890 - type: CableMV - components: - - pos: 10.5,46.5 - parent: 0 - type: Transform -- uid: 3891 - type: CableMV - components: - - pos: 10.5,47.5 - parent: 0 - type: Transform -- uid: 3892 - type: CableMV - components: - - pos: 10.5,48.5 - parent: 0 - type: Transform -- uid: 3893 - type: CableMV - components: - - pos: 10.5,49.5 - parent: 0 - type: Transform -- uid: 3894 - type: CableMV - components: - - pos: 10.5,50.5 - parent: 0 - type: Transform -- uid: 3895 - type: CableMV - components: - - pos: 11.5,50.5 - parent: 0 - type: Transform -- uid: 3896 - type: CableMV - components: - - pos: 11.5,51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3897 - type: CableApcExtension - components: - - pos: 11.5,51.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3898 - type: CableApcExtension - components: - - pos: 11.5,50.5 - parent: 0 - type: Transform -- uid: 3899 - type: CableApcExtension - components: - - pos: 10.5,50.5 - parent: 0 - type: Transform -- uid: 3900 - type: CableApcExtension - components: - - pos: 10.5,49.5 - parent: 0 - type: Transform -- uid: 3901 - type: CableApcExtension - components: - - pos: 10.5,48.5 - parent: 0 - type: Transform -- uid: 3902 - type: CableApcExtension - components: - - pos: 10.5,47.5 - parent: 0 - type: Transform -- uid: 3903 - type: CableApcExtension - components: - - pos: 10.5,46.5 - parent: 0 - type: Transform -- uid: 3904 - type: CableApcExtension - components: - - pos: 10.5,45.5 - parent: 0 - type: Transform -- uid: 3905 - type: CableApcExtension - components: - - pos: 10.5,44.5 - parent: 0 - type: Transform -- uid: 3906 - type: CableApcExtension - components: - - pos: 10.5,43.5 - parent: 0 - type: Transform -- uid: 3907 - type: CableApcExtension - components: - - pos: 11.5,45.5 - parent: 0 - type: Transform -- uid: 3908 - type: CableApcExtension - components: - - pos: 12.5,45.5 - parent: 0 - type: Transform -- uid: 3909 - type: CableApcExtension - components: - - pos: 13.5,45.5 - parent: 0 - type: Transform -- uid: 3910 - type: CableApcExtension - components: - - pos: 14.5,45.5 - parent: 0 - type: Transform -- uid: 3911 - type: CableApcExtension - components: - - pos: 15.5,45.5 - parent: 0 - type: Transform -- uid: 3912 - type: CableApcExtension - components: - - pos: 15.5,46.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3913 - type: CableApcExtension - components: - - pos: 9.5,45.5 - parent: 0 - type: Transform -- uid: 3914 - type: CableApcExtension - components: - - pos: 8.5,45.5 - parent: 0 - type: Transform -- uid: 3915 - type: CableApcExtension - components: - - pos: 7.5,45.5 - parent: 0 - type: Transform -- uid: 3916 - type: CableApcExtension - components: - - pos: 6.5,45.5 - parent: 0 - type: Transform -- uid: 3917 - type: CableApcExtension - components: - - pos: 5.5,45.5 - parent: 0 - type: Transform -- uid: 3918 - type: CableApcExtension - components: - - pos: 4.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3919 - type: CableApcExtension - components: - - pos: 3.5,45.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3920 - type: CableApcExtension - components: - - pos: 6.5,46.5 - parent: 0 - type: Transform -- uid: 3921 - type: CableApcExtension - components: - - pos: 6.5,47.5 - parent: 0 - type: Transform -- uid: 3922 - type: CableApcExtension - components: - - pos: 9.5,50.5 - parent: 0 - type: Transform -- uid: 3923 - type: CableApcExtension - components: - - pos: 8.5,50.5 - parent: 0 - type: Transform -- uid: 3924 - type: CableApcExtension - components: - - pos: 8.5,51.5 - parent: 0 - type: Transform -- uid: 3925 - type: CableApcExtension - components: - - pos: 8.5,52.5 - parent: 0 - type: Transform -- uid: 3926 - type: CableApcExtension - components: - - pos: 8.5,53.5 - parent: 0 - type: Transform -- uid: 3927 - type: CableApcExtension - components: - - pos: 8.5,54.5 - parent: 0 - type: Transform -- uid: 3928 - type: CableApcExtension - components: - - pos: 8.5,55.5 - parent: 0 - type: Transform -- uid: 3929 - type: CableApcExtension - components: - - pos: 12.5,50.5 - parent: 0 - type: Transform -- uid: 3930 - type: CableApcExtension - components: - - pos: 12.5,51.5 - parent: 0 - type: Transform -- uid: 3931 - type: CableApcExtension - components: - - pos: 12.5,52.5 - parent: 0 - type: Transform -- uid: 3932 - type: CableApcExtension - components: - - pos: 12.5,53.5 - parent: 0 - type: Transform -- uid: 3933 - type: CableApcExtension - components: - - pos: 12.5,54.5 - parent: 0 - type: Transform -- uid: 3934 - type: CableApcExtension - components: - - pos: 12.5,55.5 - parent: 0 - type: Transform -- uid: 3935 - type: CableApcExtension - components: - - pos: 11.5,53.5 - parent: 0 - type: Transform -- uid: 3936 - type: CableApcExtension - components: - - pos: 10.5,53.5 - parent: 0 - type: Transform -- uid: 3937 - type: CableApcExtension - components: - - pos: 9.5,53.5 - parent: 0 - type: Transform -- uid: 3938 - type: CableApcExtension - components: - - pos: 10.5,52.5 - parent: 0 - type: Transform -- uid: 3939 - type: CableApcExtension - components: - - pos: 11.5,55.5 - parent: 0 - type: Transform -- uid: 3940 - type: CableApcExtension - components: - - pos: 10.5,55.5 - parent: 0 - type: Transform -- uid: 3941 - type: CableApcExtension - components: - - pos: 9.5,55.5 - parent: 0 - type: Transform -- uid: 3942 - type: CableApcExtension - components: - - pos: 13.5,53.5 - parent: 0 - type: Transform -- uid: 3943 - type: CableApcExtension - components: - - pos: 7.5,53.5 - parent: 0 - type: Transform -- uid: 3944 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 9.5,43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3945 - type: ShuttersNormalOpen - components: - - pos: 10.5,47.5 - parent: 0 - type: Transform -- uid: 3946 - type: Table - components: - - pos: 9.5,48.5 - parent: 0 - type: Transform -- uid: 3947 - type: Table - components: - - pos: 11.5,48.5 - parent: 0 - type: Transform -- uid: 3948 - type: ShuttersNormalOpen - components: - - pos: 10.5,54.5 - parent: 0 - type: Transform -- uid: 3949 - type: SheetGlass - components: - - pos: 10.555219,43.506973 - parent: 0 - type: Transform -- uid: 3950 - type: SheetSteel - components: - - pos: 10.352094,43.506973 - parent: 0 - type: Transform -- uid: 3951 - type: ComputerFrame - components: - - pos: 7.5,47.5 - parent: 0 - type: Transform -- uid: 3952 - type: MachineFrame - components: - - pos: 6.5,47.5 - parent: 0 - type: Transform -- uid: 3953 - type: SignSecureMed - components: - - pos: 6.5,49.5 - parent: 0 - type: Transform -- uid: 3954 - type: SignSecureMed - components: - - pos: 14.5,49.5 - parent: 0 - type: Transform -- uid: 3955 - type: SignSecureMed - components: - - pos: 14.5,55.5 - parent: 0 - type: Transform -- uid: 3956 - type: SignSecureMed - components: - - pos: 6.5,55.5 - parent: 0 - type: Transform -- uid: 3957 - type: SignSecureMed - components: - - pos: 8.5,46.5 - parent: 0 - type: Transform -- uid: 3958 - type: SignSecureMed - components: - - pos: 12.5,46.5 - parent: 0 - type: Transform -- uid: 3959 - type: SignSpace - components: - - pos: 4.5,46.5 - parent: 0 - type: Transform -- uid: 3960 - type: SignSecureMed - components: - - pos: 2.5,44.5 - parent: 0 - type: Transform -- uid: 3961 - type: SignAi - components: - - pos: 11.5,47.5 - parent: 0 - type: Transform -- uid: 3962 - type: ToyAi - components: - - pos: 10.469682,53.04013 - parent: 0 - type: Transform -- uid: 3963 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 9.496426,48.542255 - parent: 0 - type: Transform -- uid: 3964 - type: Flash - components: - - pos: 11.496426,48.542255 - parent: 0 - type: Transform -- uid: 3965 - type: Poweredlight - components: - - pos: 10.5,56.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3966 - type: Poweredlight - components: - - pos: 10.5,50.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3967 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,54.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3968 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,50.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3969 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,50.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3970 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,54.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3971 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 10.5,43.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3972 - type: Poweredlight - components: - - pos: 14.5,47.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3973 - type: Poweredlight - components: - - pos: 6.5,47.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3974 - type: PoweredSmallLight - components: - - pos: 3.5,46.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3975 - type: FireExtinguisher - components: - - pos: 3.6195679,50.3647 - parent: 0 - type: Transform -- uid: 3976 - type: AsteroidRock - components: - - pos: -36.5,27.5 - parent: 0 - type: Transform -- uid: 3977 - type: IntercomService - components: - - pos: -22.5,-5.5 - parent: 0 - type: Transform -- uid: 3978 - type: SignElectricalMed - components: - - pos: 15.5,48.5 - parent: 0 - type: Transform -- uid: 3979 - type: SignElectricalMed - components: - - pos: 10.5,57.5 - parent: 0 - type: Transform -- uid: 3980 - type: WallSolid - components: - - pos: -17.5,37.5 - parent: 0 - type: Transform -- uid: 3981 - type: WallSolid - components: - - pos: -14.5,33.5 - parent: 0 - type: Transform -- uid: 3982 - type: DisposalJunctionFlipped - components: - - pos: 11.5,-1.5 - parent: 0 - type: Transform -- uid: 3983 - type: WallSolid - components: - - pos: 13.5,8.5 - parent: 0 - type: Transform -- uid: 3984 - type: WallSolid - components: - - pos: 13.5,6.5 - parent: 0 - type: Transform -- uid: 3985 - type: WallSolid - components: - - pos: 13.5,5.5 - parent: 0 - type: Transform -- uid: 3986 - type: WallSolid - components: - - pos: 14.5,9.5 - parent: 0 - type: Transform -- uid: 3987 - type: WallSolid - components: - - pos: 15.5,9.5 - parent: 0 - type: Transform -- uid: 3988 - type: WallSolid - components: - - pos: 16.5,9.5 - parent: 0 - type: Transform -- uid: 3989 - type: WallSolid - components: - - pos: 17.5,9.5 - parent: 0 - type: Transform -- uid: 3990 - type: WallReinforced - components: - - pos: 24.5,8.5 - parent: 0 - type: Transform -- uid: 3991 - type: WallReinforced - components: - - pos: 24.5,7.5 - parent: 0 - type: Transform -- uid: 3992 - type: WallReinforced - components: - - pos: 24.5,6.5 - parent: 0 - type: Transform -- uid: 3993 - type: WallReinforced - components: - - pos: 24.5,5.5 - parent: 0 - type: Transform -- uid: 3994 - type: WallReinforced - components: - - pos: 25.5,5.5 - parent: 0 - type: Transform -- uid: 3995 - type: WallReinforced - components: - - pos: 26.5,5.5 - parent: 0 - type: Transform -- uid: 3996 - type: WallReinforced - components: - - pos: 32.5,5.5 - parent: 0 - type: Transform -- uid: 3997 - type: WallReinforced - components: - - pos: 31.5,5.5 - parent: 0 - type: Transform -- uid: 3998 - type: WallReinforced - components: - - pos: 30.5,5.5 - parent: 0 - type: Transform -- uid: 3999 - type: WallReinforced - components: - - pos: 29.5,5.5 - parent: 0 - type: Transform -- uid: 4000 - type: WallReinforced - components: - - pos: 28.5,5.5 - parent: 0 - type: Transform -- uid: 4001 - type: WallReinforced - components: - - pos: 27.5,5.5 - parent: 0 - type: Transform -- uid: 4002 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4003 - type: GasPipeTJunction - components: - - pos: -3.5,-31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4004 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4005 - type: Grille - components: - - pos: -22.5,-26.5 - parent: 0 - type: Transform -- uid: 4006 - type: WallSolid - components: - - pos: 19.5,5.5 - parent: 0 - type: Transform -- uid: 4007 - type: ReinforcedWindow - components: - - pos: -23.5,-25.5 - parent: 0 - type: Transform -- uid: 4008 - type: AltarSpawner - components: - - pos: -18.5,-34.5 - parent: 0 - type: Transform -- uid: 4009 - type: TintedWindow - components: - - pos: -20.5,-26.5 - parent: 0 - type: Transform -- uid: 4010 - type: Grille - components: - - pos: -20.5,-26.5 - parent: 0 - type: Transform -- uid: 4011 - type: TintedWindow - components: - - pos: -22.5,-26.5 - parent: 0 - type: Transform -- uid: 4012 - type: HospitalCurtainsOpen - components: - - pos: -13.5,-24.5 - parent: 0 - type: Transform -- uid: 4013 - type: HospitalCurtainsOpen - components: - - pos: -13.5,-25.5 - parent: 0 - type: Transform -- uid: 4014 - type: SignalButton - components: - - pos: -13.5,-23.5 - parent: 0 - type: Transform -- uid: 4015 - type: WallSolid - components: - - pos: 19.5,3.5 - parent: 0 - type: Transform -- uid: 4016 - type: WallSolid - components: - - pos: 23.5,1.5 - parent: 0 - type: Transform -- uid: 4017 - type: WallSolid - components: - - pos: 21.5,1.5 - parent: 0 - type: Transform -- uid: 4018 - type: WallSolid - components: - - pos: 20.5,0.5 - parent: 0 - type: Transform -- uid: 4019 - type: WallSolid - components: - - pos: 18.5,0.5 - parent: 0 - type: Transform -- uid: 4020 - type: WallSolid - components: - - pos: 17.5,0.5 - parent: 0 - type: Transform -- uid: 4021 - type: WallSolid - components: - - pos: 16.5,0.5 - parent: 0 - type: Transform -- uid: 4022 - type: WallSolid - components: - - pos: 16.5,1.5 - parent: 0 - type: Transform -- uid: 4023 - type: WallSolid - components: - - pos: 16.5,2.5 - parent: 0 - type: Transform -- uid: 4024 - type: WallSolid - components: - - pos: 17.5,3.5 - parent: 0 - type: Transform -- uid: 4025 - type: WallSolid - components: - - pos: 14.5,4.5 - parent: 0 - type: Transform -- uid: 4026 - type: WallSolid - components: - - pos: 14.5,5.5 - parent: 0 - type: Transform -- uid: 4027 - type: WallSolid - components: - - pos: 15.5,5.5 - parent: 0 - type: Transform -- uid: 4028 - type: WallSolid - components: - - pos: 16.5,5.5 - parent: 0 - type: Transform -- uid: 4029 - type: WallSolid - components: - - pos: 17.5,5.5 - parent: 0 - type: Transform -- uid: 4030 - type: WallSolid - components: - - pos: 17.5,6.5 - parent: 0 - type: Transform -- uid: 4031 - type: WallSolid - components: - - pos: 17.5,7.5 - parent: 0 - type: Transform -- uid: 4032 - type: WallSolid - components: - - pos: 17.5,8.5 - parent: 0 - type: Transform -- uid: 4033 - type: WallSolid - components: - - pos: 14.5,2.5 - parent: 0 - type: Transform -- uid: 4034 - type: WallSolid - components: - - pos: 14.5,1.5 - parent: 0 - type: Transform -- uid: 4035 - type: WallSolid - components: - - pos: 14.5,0.5 - parent: 0 - type: Transform -- uid: 4036 - type: WallSolid - components: - - pos: 14.5,-0.5 - parent: 0 - type: Transform -- uid: 4037 - type: WallSolid - components: - - pos: 14.5,-1.5 - parent: 0 - type: Transform -- uid: 4038 - type: WallSolid - components: - - pos: 23.5,-0.5 - parent: 0 - type: Transform -- uid: 4039 - type: WallSolid - components: - - pos: 23.5,-1.5 - parent: 0 - type: Transform -- uid: 4040 - type: WallSolid - components: - - pos: 22.5,-1.5 - parent: 0 - type: Transform -- uid: 4041 - type: WallSolid - components: - - pos: 21.5,-1.5 - parent: 0 - type: Transform -- uid: 4042 - type: WallSolid - components: - - pos: 20.5,-1.5 - parent: 0 - type: Transform -- uid: 4043 - type: WallSolid - components: - - pos: 19.5,-1.5 - parent: 0 - type: Transform -- uid: 4044 - type: WallSolid - components: - - pos: 18.5,-1.5 - parent: 0 - type: Transform -- uid: 4045 - type: WallSolid - components: - - pos: 17.5,-1.5 - parent: 0 - type: Transform -- uid: 4046 - type: WallSolid - components: - - pos: 16.5,-1.5 - parent: 0 - type: Transform -- uid: 4047 - type: WallSolid - components: - - pos: 15.5,-1.5 - parent: 0 - type: Transform -- uid: 4048 - type: ReinforcedWindow - components: - - pos: 34.5,-8.5 - parent: 0 - type: Transform -- uid: 4049 - type: WallSolid - components: - - pos: 13.5,0.5 - parent: 0 - type: Transform -- uid: 4050 - type: ReinforcedWindow - components: - - pos: 33.5,-8.5 - parent: 0 - type: Transform -- uid: 4051 - type: ReinforcedWindow - components: - - pos: 32.5,-8.5 - parent: 0 - type: Transform -- uid: 4052 - type: ReinforcedWindow - components: - - pos: 31.5,-6.5 - parent: 0 - type: Transform -- uid: 4053 - type: ReinforcedWindow - components: - - pos: 32.5,-6.5 - parent: 0 - type: Transform -- uid: 4054 - type: ReinforcedWindow - components: - - pos: 33.5,-6.5 - parent: 0 - type: Transform -- uid: 4055 - type: ReinforcedWindow - components: - - pos: 34.5,-6.5 - parent: 0 - type: Transform -- uid: 4056 - type: ReinforcedWindow - components: - - pos: 34.5,-4.5 - parent: 0 - type: Transform -- uid: 4057 - type: ReinforcedWindow - components: - - pos: 33.5,-4.5 - parent: 0 - type: Transform -- uid: 4058 - type: ReinforcedWindow - components: - - pos: 32.5,-4.5 - parent: 0 - type: Transform -- uid: 4059 - type: ReinforcedWindow - components: - - pos: 32.5,-3.5 - parent: 0 - type: Transform -- uid: 4060 - type: ReinforcedWindow - components: - - pos: 32.5,-2.5 - parent: 0 - type: Transform -- uid: 4061 - type: ReinforcedWindow - components: - - pos: 32.5,-1.5 - parent: 0 - type: Transform -- uid: 4062 - type: ReinforcedWindow - components: - - pos: 32.5,-0.5 - parent: 0 - type: Transform -- uid: 4063 - type: ReinforcedWindow - components: - - pos: 33.5,-0.5 - parent: 0 - type: Transform -- uid: 4064 - type: ReinforcedWindow - components: - - pos: 34.5,-0.5 - parent: 0 - type: Transform -- uid: 4065 - type: ReinforcedWindow - components: - - pos: 34.5,1.5 - parent: 0 - type: Transform -- uid: 4066 - type: ReinforcedWindow - components: - - pos: 33.5,1.5 - parent: 0 - type: Transform -- uid: 4067 - type: ReinforcedWindow - components: - - pos: 32.5,1.5 - parent: 0 - type: Transform -- uid: 4068 - type: ReinforcedWindow - components: - - pos: 31.5,1.5 - parent: 0 - type: Transform -- uid: 4069 - type: ReinforcedWindow - components: - - pos: 32.5,3.5 - parent: 0 - type: Transform -- uid: 4070 - type: ReinforcedWindow - components: - - pos: 33.5,3.5 - parent: 0 - type: Transform -- uid: 4071 - type: ReinforcedWindow - components: - - pos: 34.5,3.5 - parent: 0 - type: Transform -- uid: 4072 - type: ReinforcedWindow - components: - - pos: 32.5,4.5 - parent: 0 - type: Transform -- uid: 4073 - type: ReinforcedWindow - components: - - pos: 29.5,1.5 - parent: 0 - type: Transform -- uid: 4074 - type: ReinforcedWindow - components: - - pos: 27.5,1.5 - parent: 0 - type: Transform -- uid: 4075 - type: ReinforcedWindow - components: - - pos: 26.5,-0.5 - parent: 0 - type: Transform -- uid: 4076 - type: ReinforcedWindow - components: - - pos: 26.5,-4.5 - parent: 0 - type: Transform -- uid: 4077 - type: ReinforcedWindow - components: - - pos: 27.5,-6.5 - parent: 0 - type: Transform -- uid: 4078 - type: ReinforcedWindow - components: - - pos: 27.5,-10.5 - parent: 0 - type: Transform -- uid: 4079 - type: ReinforcedWindow - components: - - pos: 32.5,-9.5 - parent: 0 - type: Transform -- uid: 4080 - type: ReinforcedWindow - components: - - pos: 18.5,-4.5 - parent: 0 - type: Transform -- uid: 4081 - type: WallReinforced - components: - - pos: 17.5,-4.5 - parent: 0 - type: Transform -- uid: 4082 - type: WallReinforced - components: - - pos: 19.5,-4.5 - parent: 0 - type: Transform -- uid: 4083 - type: WallReinforced - components: - - pos: 20.5,-4.5 - parent: 0 - type: Transform -- uid: 4084 - type: WallReinforced - components: - - pos: 20.5,-5.5 - parent: 0 - type: Transform -- uid: 4085 - type: WallReinforced - components: - - pos: 16.5,-5.5 - parent: 0 - type: Transform -- uid: 4086 - type: WallReinforced - components: - - pos: 16.5,-4.5 - parent: 0 - type: Transform -- uid: 4087 - type: WallReinforced - components: - - pos: 32.5,-10.5 - parent: 0 - type: Transform -- uid: 4088 - type: WallReinforced - components: - - pos: 31.5,-10.5 - parent: 0 - type: Transform -- uid: 4089 - type: WallReinforced - components: - - pos: 30.5,-10.5 - parent: 0 - type: Transform -- uid: 4090 - type: WallReinforced - components: - - pos: 29.5,-10.5 - parent: 0 - type: Transform -- uid: 4091 - type: WallReinforced - components: - - pos: 28.5,-10.5 - parent: 0 - type: Transform -- uid: 4092 - type: WallReinforced - components: - - pos: 26.5,-10.5 - parent: 0 - type: Transform -- uid: 4093 - type: WallReinforced - components: - - pos: 26.5,-9.5 - parent: 0 - type: Transform -- uid: 4094 - type: WallReinforced - components: - - pos: 26.5,-8.5 - parent: 0 - type: Transform -- uid: 4095 - type: WallReinforced - components: - - pos: 25.5,-8.5 - parent: 0 - type: Transform -- uid: 4096 - type: WallReinforced - components: - - pos: 24.5,-8.5 - parent: 0 - type: Transform -- uid: 4097 - type: WallReinforced - components: - - pos: 23.5,-8.5 - parent: 0 - type: Transform -- uid: 4098 - type: WallReinforced - components: - - pos: 22.5,-8.5 - parent: 0 - type: Transform -- uid: 4099 - type: ReinforcedWindow - components: - - pos: 14.5,-12.5 - parent: 0 - type: Transform -- uid: 4100 - type: ReinforcedWindow - components: - - pos: 14.5,-11.5 - parent: 0 - type: Transform -- uid: 4101 - type: WallReinforced - components: - - pos: 20.5,-8.5 - parent: 0 - type: Transform -- uid: 4102 - type: WallReinforced - components: - - pos: 21.5,-8.5 - parent: 0 - type: Transform -- uid: 4103 - type: WallReinforced - components: - - pos: 16.5,-8.5 - parent: 0 - type: Transform -- uid: 4104 - type: WallReinforced - components: - - pos: 15.5,-8.5 - parent: 0 - type: Transform -- uid: 4105 - type: WallReinforced - components: - - pos: 14.5,-8.5 - parent: 0 - type: Transform -- uid: 4106 - type: WallReinforced - components: - - pos: 14.5,-9.5 - parent: 0 - type: Transform -- uid: 4107 - type: WallReinforced - components: - - pos: 14.5,-10.5 - parent: 0 - type: Transform -- uid: 4108 - type: WallReinforced - components: - - pos: 20.5,-6.5 - parent: 0 - type: Transform -- uid: 4109 - type: WallReinforced - components: - - pos: 16.5,-6.5 - parent: 0 - type: Transform -- uid: 4110 - type: ReinforcedWindow - components: - - pos: 19.5,-8.5 - parent: 0 - type: Transform -- uid: 4111 - type: ReinforcedWindow - components: - - pos: 18.5,-8.5 - parent: 0 - type: Transform -- uid: 4112 - type: ReinforcedWindow - components: - - pos: 17.5,-8.5 - parent: 0 - type: Transform -- uid: 4113 - type: ReinforcedWindow - components: - - pos: 17.5,-6.5 - parent: 0 - type: Transform -- uid: 4114 - type: ReinforcedWindow - components: - - pos: 18.5,-6.5 - parent: 0 - type: Transform -- uid: 4115 - type: ReinforcedWindow - components: - - pos: 19.5,-6.5 - parent: 0 - type: Transform -- uid: 4116 - type: Airlock - components: - - pos: 13.5,7.5 - parent: 0 - type: Transform -- uid: 4117 - type: FirelockGlass - components: - - pos: 12.5,0.5 - parent: 0 - type: Transform -- uid: 4118 - type: WallSolid - components: - - pos: 26.5,-6.5 - parent: 0 - type: Transform -- uid: 4119 - type: WallSolid - components: - - pos: 26.5,-5.5 - parent: 0 - type: Transform -- uid: 4120 - type: WallSolid - components: - - pos: 26.5,0.5 - parent: 0 - type: Transform -- uid: 4121 - type: WallSolid - components: - - pos: 26.5,1.5 - parent: 0 - type: Transform -- uid: 4122 - type: FirelockGlass - components: - - pos: 11.5,0.5 - parent: 0 - type: Transform -- uid: 4123 - type: WallSolid - components: - - pos: 23.5,-4.5 - parent: 0 - type: Transform -- uid: 4124 - type: WallSolid - components: - - pos: 22.5,-4.5 - parent: 0 - type: Transform -- uid: 4125 - type: WallSolid - components: - - pos: 22.5,-5.5 - parent: 0 - type: Transform -- uid: 4126 - type: WallSolid - components: - - pos: 21.5,-5.5 - parent: 0 - type: Transform -- uid: 4127 - type: WallSolid - components: - - pos: 22.5,-6.5 - parent: 0 - type: Transform -- uid: 4128 - type: WallSolid - components: - - pos: 13.5,-5.5 - parent: 0 - type: Transform -- uid: 4129 - type: WallSolid - components: - - pos: 14.5,-5.5 - parent: 0 - type: Transform -- uid: 4130 - type: WallSolid - components: - - pos: 14.5,-4.5 - parent: 0 - type: Transform -- uid: 4131 - type: WallSolid - components: - - pos: 15.5,-4.5 - parent: 0 - type: Transform -- uid: 4132 - type: WallSolid - components: - - pos: 14.5,-6.5 - parent: 0 - type: Transform -- uid: 4133 - type: WallSolid - components: - - pos: 13.5,-10.5 - parent: 0 - type: Transform -- uid: 4134 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-5.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4135 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-7.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4136 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 34.5,0.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4137 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 1.5707963267948966 rad - pos: 34.5,2.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4138 - type: ReinforcedPlasmaWindow - components: - - pos: -35.5,18.5 - parent: 0 - type: Transform -- uid: 4139 - type: ReinforcedPlasmaWindow - components: - - pos: -33.5,18.5 - parent: 0 - type: Transform -- uid: 4140 - type: ReinforcedPlasmaWindow - components: - - pos: -32.5,19.5 - parent: 0 - type: Transform -- uid: 4141 - type: ReinforcedPlasmaWindow - components: - - pos: -32.5,20.5 - parent: 0 - type: Transform -- uid: 4142 - type: Girder - components: - - pos: 21.5,0.5 - parent: 0 - type: Transform -- uid: 4143 - type: Girder - components: - - pos: 16.5,3.5 - parent: 0 - type: Transform -- uid: 4144 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4145 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4146 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4147 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4148 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4149 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4150 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 17.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4151 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4152 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4153 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4154 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4155 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4156 - type: GasPipeFourway - components: - - pos: 24.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4157 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4158 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4159 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4160 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4161 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4162 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4163 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4164 - type: GasPipeTJunction - components: - - pos: 19.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4165 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4166 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4167 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4168 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4169 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4170 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4171 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 25.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4172 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4173 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4174 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4175 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4176 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4177 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4178 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4179 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4180 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4181 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4182 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4183 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4184 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 30.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4185 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4186 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4187 - type: GasPipeStraight - components: - - pos: 30.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4188 - type: GasPipeStraight - components: - - pos: 30.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4189 - type: GasPipeStraight - components: - - pos: 30.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4190 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4191 - type: GasPipeStraight - components: - - pos: 30.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4192 - type: GasPipeStraight - components: - - pos: 30.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4193 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4194 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4195 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4196 - type: GasVentPump - components: - - pos: 30.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4197 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 33.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4198 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 33.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4199 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4200 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4201 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4202 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4203 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4204 - type: GasPipeBend - components: - - pos: 28.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4205 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 28.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4206 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4207 - type: GasPipeStraight - components: - - pos: 24.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4208 - type: GasPipeStraight - components: - - pos: 24.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4209 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 24.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4210 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4211 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4212 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4213 - type: GasPipeBend - components: - - pos: 28.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4214 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 28.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4215 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4216 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4217 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4218 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4219 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4220 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4221 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4222 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4223 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4224 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4225 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4226 - type: GasVentScrubber - components: - - pos: 24.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4227 - type: GasPipeBend - components: - - pos: 25.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4228 - type: GasPipeStraight - components: - - pos: 25.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4229 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4230 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4231 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 22.5,4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4232 - type: IntercomService - components: - - rot: 3.141592653589793 rad - pos: 7.5,5.5 - parent: 0 - type: Transform -- uid: 4233 - type: AMEJar - components: - - pos: -42.336273,-2.370503 - parent: 0 - type: Transform -- uid: 4234 - type: SubstationBasic - components: - - pos: 17.5,2.5 - parent: 0 - type: Transform -- uid: 4235 - type: CableHV - components: - - pos: 12.5,3.5 - parent: 0 - type: Transform -- uid: 4236 - type: CableHV - components: - - pos: 13.5,3.5 - parent: 0 - type: Transform -- uid: 4237 - type: CableHV - components: - - pos: 14.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4238 - type: CableHV - components: - - pos: 15.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4239 - type: CableHV - components: - - pos: 15.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4240 - type: CableHV - components: - - pos: 17.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4241 - type: CableHV - components: - - pos: 16.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4242 - type: CableHV - components: - - pos: 18.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4243 - type: CableHV - components: - - pos: 18.5,3.5 - parent: 0 - type: Transform -- uid: 4244 - type: CableHV - components: - - pos: 18.5,2.5 - parent: 0 - type: Transform -- uid: 4245 - type: CableHV - components: - - pos: 17.5,2.5 - parent: 0 - type: Transform -- uid: 4246 - type: APCBasic - components: - - pos: 22.5,-1.5 - parent: 0 - type: Transform -- uid: 4247 - type: CableMV - components: - - pos: 17.5,2.5 - parent: 0 - type: Transform -- uid: 4248 - type: CableMV - components: - - pos: 18.5,2.5 - parent: 0 - type: Transform -- uid: 4249 - type: CableMV - components: - - pos: 19.5,2.5 - parent: 0 - type: Transform -- uid: 4250 - type: CableMV - components: - - pos: 19.5,1.5 - parent: 0 - type: Transform -- uid: 4251 - type: CableMV - components: - - pos: 19.5,0.5 - parent: 0 - type: Transform -- uid: 4252 - type: CableMV - components: - - pos: 19.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4253 - type: CableMV - components: - - pos: 20.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4254 - type: CableMV - components: - - pos: 21.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4255 - type: CableMV - components: - - pos: 22.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4256 - type: CableMV - components: - - pos: 22.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4257 - type: CableApcExtension - components: - - pos: 22.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4258 - type: CableApcExtension - components: - - pos: 22.5,-2.5 - parent: 0 - type: Transform -- uid: 4259 - type: CableApcExtension - components: - - pos: 21.5,-2.5 - parent: 0 - type: Transform -- uid: 4260 - type: CableApcExtension - components: - - pos: 20.5,-2.5 - parent: 0 - type: Transform -- uid: 4261 - type: CableApcExtension - components: - - pos: 19.5,-2.5 - parent: 0 - type: Transform -- uid: 4262 - type: CableApcExtension - components: - - pos: 18.5,-2.5 - parent: 0 - type: Transform -- uid: 4263 - type: CableApcExtension - components: - - pos: 17.5,-2.5 - parent: 0 - type: Transform -- uid: 4264 - type: CableApcExtension - components: - - pos: 16.5,-2.5 - parent: 0 - type: Transform -- uid: 4265 - type: CableApcExtension - components: - - pos: 15.5,-2.5 - parent: 0 - type: Transform -- uid: 4266 - type: CableApcExtension - components: - - pos: 14.5,-2.5 - parent: 0 - type: Transform -- uid: 4267 - type: CableApcExtension - components: - - pos: 12.5,7.5 - parent: 0 - type: Transform -- uid: 4268 - type: CableApcExtension - components: - - pos: 13.5,7.5 - parent: 0 - type: Transform -- uid: 4269 - type: CableApcExtension - components: - - pos: 14.5,7.5 - parent: 0 - type: Transform -- uid: 4270 - type: CableApcExtension - components: - - pos: 15.5,7.5 - parent: 0 - type: Transform -- uid: 4271 - type: CableApcExtension - components: - - pos: 16.5,7.5 - parent: 0 - type: Transform -- uid: 4272 - type: CableApcExtension - components: - - pos: 22.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4273 - type: CableApcExtension - components: - - pos: 21.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4274 - type: CableApcExtension - components: - - pos: 20.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4275 - type: CableApcExtension - components: - - pos: 19.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4276 - type: CableApcExtension - components: - - pos: 18.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4277 - type: CableApcExtension - components: - - pos: 17.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4278 - type: CableApcExtension - components: - - pos: 16.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4279 - type: CableApcExtension - components: - - pos: 15.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4280 - type: CableApcExtension - components: - - pos: 15.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4281 - type: CableApcExtension - components: - - pos: 15.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4282 - type: CableApcExtension - components: - - pos: 15.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4283 - type: CableApcExtension - components: - - pos: 15.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4284 - type: CableApcExtension - components: - - pos: 15.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4285 - type: CableApcExtension - components: - - pos: 16.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4286 - type: CableApcExtension - components: - - pos: 17.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4287 - type: CableApcExtension - components: - - pos: 18.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4288 - type: CableApcExtension - components: - - pos: 18.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4289 - type: CableApcExtension - components: - - pos: 18.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4290 - type: CableApcExtension - components: - - pos: 18.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4291 - type: CableApcExtension - components: - - pos: 18.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4292 - type: CableApcExtension - components: - - pos: 18.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4293 - type: CableApcExtension - components: - - pos: 18.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4294 - type: CableApcExtension - components: - - pos: 17.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4295 - type: CableApcExtension - components: - - pos: 16.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4296 - type: CableApcExtension - components: - - pos: 15.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4297 - type: CableApcExtension - components: - - pos: 14.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4298 - type: CableApcExtension - components: - - pos: 19.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4299 - type: CableApcExtension - components: - - pos: 20.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4300 - type: CableApcExtension - components: - - pos: 23.5,-2.5 - parent: 0 - type: Transform -- uid: 4301 - type: CableApcExtension - components: - - pos: 24.5,-2.5 - parent: 0 - type: Transform -- uid: 4302 - type: CableApcExtension - components: - - pos: 25.5,-2.5 - parent: 0 - type: Transform -- uid: 4303 - type: CableApcExtension - components: - - pos: 26.5,-2.5 - parent: 0 - type: Transform -- uid: 4304 - type: CableApcExtension - components: - - pos: 27.5,-2.5 - parent: 0 - type: Transform -- uid: 4305 - type: CableApcExtension - components: - - pos: 28.5,-2.5 - parent: 0 - type: Transform -- uid: 4306 - type: CableApcExtension - components: - - pos: 29.5,-2.5 - parent: 0 - type: Transform -- uid: 4307 - type: CableApcExtension - components: - - pos: 30.5,-2.5 - parent: 0 - type: Transform -- uid: 4308 - type: CableApcExtension - components: - - pos: 30.5,-1.5 - parent: 0 - type: Transform -- uid: 4309 - type: CableApcExtension - components: - - pos: 30.5,-0.5 - parent: 0 - type: Transform -- uid: 4310 - type: CableApcExtension - components: - - pos: 30.5,0.5 - parent: 0 - type: Transform -- uid: 4311 - type: CableApcExtension - components: - - pos: 30.5,1.5 - parent: 0 - type: Transform -- uid: 4312 - type: CableApcExtension - components: - - pos: 30.5,2.5 - parent: 0 - type: Transform -- uid: 4313 - type: CableApcExtension - components: - - pos: 30.5,3.5 - parent: 0 - type: Transform -- uid: 4314 - type: CableApcExtension - components: - - pos: 30.5,4.5 - parent: 0 - type: Transform -- uid: 4315 - type: CableApcExtension - components: - - pos: 31.5,2.5 - parent: 0 - type: Transform -- uid: 4316 - type: CableApcExtension - components: - - pos: 32.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4317 - type: CableApcExtension - components: - - pos: 33.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4318 - type: CableApcExtension - components: - - pos: 31.5,0.5 - parent: 0 - type: Transform -- uid: 4319 - type: CableApcExtension - components: - - pos: 32.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4320 - type: CableApcExtension - components: - - pos: 33.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4321 - type: CableApcExtension - components: - - pos: 30.5,-3.5 - parent: 0 - type: Transform -- uid: 4322 - type: CableApcExtension - components: - - pos: 30.5,-4.5 - parent: 0 - type: Transform -- uid: 4323 - type: CableApcExtension - components: - - pos: 30.5,-5.5 - parent: 0 - type: Transform -- uid: 4324 - type: CableApcExtension - components: - - pos: 30.5,-6.5 - parent: 0 - type: Transform -- uid: 4325 - type: CableApcExtension - components: - - pos: 30.5,-7.5 - parent: 0 - type: Transform -- uid: 4326 - type: CableApcExtension - components: - - pos: 30.5,-8.5 - parent: 0 - type: Transform -- uid: 4327 - type: CableApcExtension - components: - - pos: 30.5,-9.5 - parent: 0 - type: Transform -- uid: 4328 - type: CableApcExtension - components: - - pos: 31.5,-7.5 - parent: 0 - type: Transform -- uid: 4329 - type: CableApcExtension - components: - - pos: 32.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4330 - type: CableApcExtension - components: - - pos: 33.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4331 - type: CableApcExtension - components: - - pos: 31.5,-5.5 - parent: 0 - type: Transform -- uid: 4332 - type: CableApcExtension - components: - - pos: 32.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4333 - type: CableApcExtension - components: - - pos: 33.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4334 - type: CableApcExtension - components: - - pos: 29.5,-7.5 - parent: 0 - type: Transform -- uid: 4335 - type: CableApcExtension - components: - - pos: 28.5,-7.5 - parent: 0 - type: Transform -- uid: 4336 - type: CableApcExtension - components: - - pos: 27.5,-7.5 - parent: 0 - type: Transform -- uid: 4337 - type: CableApcExtension - components: - - pos: 26.5,-7.5 - parent: 0 - type: Transform -- uid: 4338 - type: CableApcExtension - components: - - pos: 25.5,-7.5 - parent: 0 - type: Transform -- uid: 4339 - type: CableApcExtension - components: - - pos: 24.5,-7.5 - parent: 0 - type: Transform -- uid: 4340 - type: CableApcExtension - components: - - pos: 24.5,-6.5 - parent: 0 - type: Transform -- uid: 4341 - type: CableApcExtension - components: - - pos: 24.5,-5.5 - parent: 0 - type: Transform -- uid: 4342 - type: CableApcExtension - components: - - pos: 24.5,-4.5 - parent: 0 - type: Transform -- uid: 4343 - type: CableApcExtension - components: - - pos: 24.5,-3.5 - parent: 0 - type: Transform -- uid: 4344 - type: CableApcExtension - components: - - pos: 24.5,-1.5 - parent: 0 - type: Transform -- uid: 4345 - type: CableApcExtension - components: - - pos: 24.5,-0.5 - parent: 0 - type: Transform -- uid: 4346 - type: CableApcExtension - components: - - pos: 24.5,0.5 - parent: 0 - type: Transform -- uid: 4347 - type: CableApcExtension - components: - - pos: 24.5,1.5 - parent: 0 - type: Transform -- uid: 4348 - type: CableApcExtension - components: - - pos: 24.5,2.5 - parent: 0 - type: Transform -- uid: 4349 - type: CableApcExtension - components: - - pos: 24.5,3.5 - parent: 0 - type: Transform -- uid: 4350 - type: CableApcExtension - components: - - pos: 24.5,4.5 - parent: 0 - type: Transform -- uid: 4351 - type: CableApcExtension - components: - - pos: 23.5,4.5 - parent: 0 - type: Transform -- uid: 4352 - type: CableApcExtension - components: - - pos: 22.5,4.5 - parent: 0 - type: Transform -- uid: 4353 - type: CableApcExtension - components: - - pos: 22.5,5.5 - parent: 0 - type: Transform -- uid: 4354 - type: CableApcExtension - components: - - pos: 22.5,6.5 - parent: 0 - type: Transform -- uid: 4355 - type: CableApcExtension - components: - - pos: 22.5,7.5 - parent: 0 - type: Transform -- uid: 4356 - type: CableApcExtension - components: - - pos: 22.5,8.5 - parent: 0 - type: Transform -- uid: 4357 - type: CableApcExtension - components: - - pos: 19.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4358 - type: CableApcExtension - components: - - pos: 23.5,-7.5 - parent: 0 - type: Transform -- uid: 4359 - type: CableApcExtension - components: - - pos: 22.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4360 - type: CableApcExtension - components: - - pos: 21.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4361 - type: CableApcExtension - components: - - pos: 20.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4362 - type: CableApcExtension - components: - - pos: 19.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4363 - type: CableApcExtension - components: - - pos: 18.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4364 - type: CableApcExtension - components: - - pos: 17.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4365 - type: CableApcExtension - components: - - pos: 16.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4366 - type: CableApcExtension - components: - - pos: 15.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4367 - type: CableApcExtension - components: - - pos: 15.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4368 - type: CableApcExtension - components: - - pos: 15.5,-5.5 - parent: 0 - type: Transform -- uid: 4369 - type: CableApcExtension - components: - - pos: 14.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4370 - type: AirlockEngineeringLocked - components: - - pos: 19.5,0.5 - parent: 0 - type: Transform -- uid: 4371 - type: AirlockEngineeringLocked - components: - - pos: 18.5,3.5 - parent: 0 - type: Transform -- uid: 4372 - type: AirlockMaintLocked - components: - - pos: 14.5,3.5 - parent: 0 - type: Transform -- uid: 4373 - type: TaikoInstrument - components: - - pos: -27.5,32.5 - parent: 0 - type: Transform -- uid: 4374 - type: AirlockMaintLocked - components: - - pos: 13.5,10.5 - parent: 0 - type: Transform -- uid: 4375 - type: AirlockMaintLocked - components: - - pos: 23.5,0.5 - parent: 0 - type: Transform -- uid: 4376 - type: AirlockMaintLocked - components: - - pos: 22.5,-7.5 - parent: 0 - type: Transform -- uid: 4377 - type: AirlockMaintLocked - components: - - pos: 14.5,-7.5 - parent: 0 - type: Transform -- uid: 4378 - type: AirlockGlass - components: - - pos: 14.5,-3.5 - parent: 0 - type: Transform -- uid: 4379 - type: AirlockGlass - components: - - pos: 14.5,-2.5 - parent: 0 - type: Transform -- uid: 4380 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 19.5,-3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4381 - type: GasVentScrubber - components: - - pos: 17.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4382 - type: AirlockGlass - components: - - pos: 26.5,-3.5 - parent: 0 - type: Transform -- uid: 4383 - type: AirlockGlass - components: - - pos: 26.5,-2.5 - parent: 0 - type: Transform -- uid: 4384 - type: AirlockGlass - components: - - pos: 26.5,-1.5 - parent: 0 - type: Transform -- uid: 4385 - type: Grille - components: - - pos: 19.5,-6.5 - parent: 0 - type: Transform -- uid: 4386 - type: Grille - components: - - pos: 18.5,-6.5 - parent: 0 - type: Transform -- uid: 4387 - type: Grille - components: - - pos: 17.5,-6.5 - parent: 0 - type: Transform -- uid: 4388 - type: Grille - components: - - pos: 18.5,-4.5 - parent: 0 - type: Transform -- uid: 4389 - type: Grille - components: - - pos: 17.5,-8.5 - parent: 0 - type: Transform -- uid: 4390 - type: Grille - components: - - pos: 18.5,-8.5 - parent: 0 - type: Transform -- uid: 4391 - type: Grille - components: - - pos: 19.5,-8.5 - parent: 0 - type: Transform -- uid: 4392 - type: Grille - components: - - pos: 27.5,-6.5 - parent: 0 - type: Transform -- uid: 4393 - type: Grille - components: - - pos: 26.5,-4.5 - parent: 0 - type: Transform -- uid: 4394 - type: Grille - components: - - pos: 27.5,-10.5 - parent: 0 - type: Transform -- uid: 4395 - type: Grille - components: - - pos: 26.5,-0.5 - parent: 0 - type: Transform -- uid: 4396 - type: Grille - components: - - pos: 27.5,1.5 - parent: 0 - type: Transform -- uid: 4397 - type: Grille - components: - - pos: 29.5,1.5 - parent: 0 - type: Transform -- uid: 4398 - type: Grille - components: - - pos: 32.5,4.5 - parent: 0 - type: Transform -- uid: 4399 - type: Grille - components: - - pos: 32.5,3.5 - parent: 0 - type: Transform -- uid: 4400 - type: Grille - components: - - pos: 33.5,3.5 - parent: 0 - type: Transform -- uid: 4401 - type: Grille - components: - - pos: 34.5,3.5 - parent: 0 - type: Transform -- uid: 4402 - type: Grille - components: - - pos: 34.5,1.5 - parent: 0 - type: Transform -- uid: 4403 - type: Grille - components: - - pos: 33.5,1.5 - parent: 0 - type: Transform -- uid: 4404 - type: Grille - components: - - pos: 32.5,1.5 - parent: 0 - type: Transform -- uid: 4405 - type: Grille - components: - - pos: 31.5,1.5 - parent: 0 - type: Transform -- uid: 4406 - type: Grille - components: - - pos: 34.5,-0.5 - parent: 0 - type: Transform -- uid: 4407 - type: Grille - components: - - pos: 33.5,-0.5 - parent: 0 - type: Transform -- uid: 4408 - type: Grille - components: - - pos: 32.5,-0.5 - parent: 0 - type: Transform -- uid: 4409 - type: Grille - components: - - pos: 32.5,-1.5 - parent: 0 - type: Transform -- uid: 4410 - type: Grille - components: - - pos: 32.5,-2.5 - parent: 0 - type: Transform -- uid: 4411 - type: Grille - components: - - pos: 32.5,-3.5 - parent: 0 - type: Transform -- uid: 4412 - type: Grille - components: - - pos: 32.5,-4.5 - parent: 0 - type: Transform -- uid: 4413 - type: Grille - components: - - pos: 33.5,-4.5 - parent: 0 - type: Transform -- uid: 4414 - type: Grille - components: - - pos: 34.5,-4.5 - parent: 0 - type: Transform -- uid: 4415 - type: Grille - components: - - pos: 34.5,-6.5 - parent: 0 - type: Transform -- uid: 4416 - type: Grille - components: - - pos: 33.5,-6.5 - parent: 0 - type: Transform -- uid: 4417 - type: Grille - components: - - pos: 32.5,-6.5 - parent: 0 - type: Transform -- uid: 4418 - type: Grille - components: - - pos: 31.5,-6.5 - parent: 0 - type: Transform -- uid: 4419 - type: Grille - components: - - pos: 32.5,-9.5 - parent: 0 - type: Transform -- uid: 4420 - type: Grille - components: - - pos: 32.5,-8.5 - parent: 0 - type: Transform -- uid: 4421 - type: Grille - components: - - pos: 33.5,-8.5 - parent: 0 - type: Transform -- uid: 4422 - type: Grille - components: - - pos: 34.5,-8.5 - parent: 0 - type: Transform -- uid: 4423 - type: FirelockGlass - components: - - pos: 12.5,-10.5 - parent: 0 - type: Transform -- uid: 4424 - type: FirelockGlass - components: - - pos: 23.5,-3.5 - parent: 0 - type: Transform -- uid: 4425 - type: FirelockGlass - components: - - pos: 23.5,-2.5 - parent: 0 - type: Transform -- uid: 4426 - type: FirelockGlass - components: - - pos: 11.5,-10.5 - parent: 0 - type: Transform -- uid: 4427 - type: AirlockCargoGlassLocked - components: - - pos: 26.5,-7.5 - parent: 0 - type: Transform -- uid: 4428 - type: AirlockCargoGlassLocked - components: - - pos: 30.5,-6.5 - parent: 0 - type: Transform -- uid: 4429 - type: AirlockSecurityGlassLocked - components: - - pos: 30.5,1.5 - parent: 0 - type: Transform -- uid: 4430 - type: TableReinforced - components: - - pos: 28.5,1.5 - parent: 0 - type: Transform -- uid: 4431 - type: TableReinforced - components: - - pos: 28.5,-6.5 - parent: 0 - type: Transform -- uid: 4432 - type: PlasticFlapsAirtightClear - components: - - pos: 29.5,-6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4433 - type: WindoorSecureCargoLocked - components: - - pos: 28.5,-6.5 - parent: 0 - type: Transform -- uid: 4434 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: 28.5,1.5 - parent: 0 - type: Transform -- uid: 4435 - type: FirelockGlass - components: - - pos: 28.5,1.5 - parent: 0 - type: Transform -- uid: 4436 - type: FirelockGlass - components: - - pos: 28.5,-6.5 - parent: 0 - type: Transform -- uid: 4437 - type: Grille - components: - - pos: 14.5,-12.5 - parent: 0 - type: Transform -- uid: 4438 - type: Grille - components: - - pos: 14.5,-11.5 - parent: 0 - type: Transform -- uid: 4439 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4440 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 11.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4441 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4442 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4443 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4444 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4445 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -51.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4446 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -51.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4447 - type: ToiletEmpty - components: - - rot: -1.5707963267948966 rad - pos: 16.5,8.5 - parent: 0 - type: Transform -- uid: 4448 - type: ToiletEmpty - components: - - rot: -1.5707963267948966 rad - pos: 16.5,7.5 - parent: 0 - type: Transform -- uid: 4449 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 16.5,6.5 - parent: 0 - type: Transform -- uid: 4450 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 16.5,7.5 - parent: 0 - type: Transform -- uid: 4451 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: 15.5,7.5 - parent: 0 - type: Transform -- uid: 4452 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: 15.5,8.5 - parent: 0 - type: Transform -- uid: 4453 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: 15.5,6.5 - parent: 0 - type: Transform -- uid: 4454 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: 14.5,8.5 - parent: 0 - type: Transform -- uid: 4455 - type: Table - components: - - pos: 14.5,6.5 - parent: 0 - type: Transform -- uid: 4456 - type: RandomInstruments - components: - - pos: 14.5,6.5 - parent: 0 - type: Transform -- uid: 4457 - type: RandomSoap - components: - - pos: 16.5,6.5 - parent: 0 - type: Transform -- uid: 4458 - type: FloorDrain - components: - - pos: 16.5,6.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 4459 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4460 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4461 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4462 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4463 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4464 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 15.5,8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4465 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 15.5,6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4466 - type: PoweredSmallLight - components: - - pos: 15.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4467 - type: PoweredSmallLight - components: - - pos: 20.5,11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4468 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4469 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4470 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4471 - type: Poweredlight - components: - - pos: 19.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4472 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4473 - type: Poweredlight - components: - - pos: 29.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4474 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4475 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4476 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4477 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4478 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -51.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4479 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -51.5,7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4480 - type: PoweredSmallLight - components: - - pos: 19.5,2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4481 - type: PoweredSmallLight - components: - - pos: 22.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4482 - type: PoweredSmallLight - components: - - pos: 16.5,11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4483 - type: ClosetFireFilled - components: - - pos: 22.5,1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 4484 - type: ClosetEmergencyFilledRandom - components: - - pos: 20.5,11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 4485 - type: Rack - components: - - pos: 19.5,6.5 - parent: 0 - type: Transform -- uid: 4486 - type: Rack - components: - - pos: 19.5,8.5 - parent: 0 - type: Transform -- uid: 4487 - type: Catwalk - components: - - pos: 17.5,4.5 - parent: 0 - type: Transform -- uid: 4488 - type: Catwalk - components: - - pos: 16.5,4.5 - parent: 0 - type: Transform -- uid: 4489 - type: CrateEngineeringCableBulk - components: - - pos: 19.5,2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 4490 - type: Table - components: - - pos: 20.5,2.5 - parent: 0 - type: Transform -- uid: 4491 - type: LockerElectricalSuppliesFilled - components: - - pos: 20.5,1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 4492 - type: trayScanner - components: - - pos: 20.567461,2.6407971 - parent: 0 - type: Transform -- uid: 4493 - type: Rack - components: - - pos: 17.5,1.5 - parent: 0 - type: Transform -- uid: 4494 - type: GeneratorPlasmaMachineCircuitboard - components: - - pos: 17.411211,1.6407971 - parent: 0 - type: Transform -- uid: 4495 - type: ProtolatheMachineCircuitboard - components: - - pos: 17.598711,1.4220471 - parent: 0 - type: Transform -- uid: 4496 - type: ClothingMaskGas - components: - - pos: 19.554443,6.484804 - parent: 0 - type: Transform -- uid: 4497 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -51.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4498 - type: Wrench - components: - - pos: 19.554443,8.592699 - parent: 0 - type: Transform -- uid: 4499 - type: ExtinguisherCabinetFilled - components: - - pos: 10.5,13.5 - parent: 0 - type: Transform -- uid: 4500 - type: DisposalUnit - components: - - pos: 13.5,-1.5 - parent: 0 - type: Transform -- uid: 4501 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 0 - type: Transform -- uid: 4502 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-1.5 - parent: 0 - type: Transform -- uid: 4503 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -5.5,17.5 - parent: 0 - type: Transform -- uid: 4504 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,18.5 - parent: 0 - type: Transform -- uid: 4505 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -5.5,19.5 - parent: 0 - type: Transform -- uid: 4506 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,19.5 - parent: 0 - type: Transform -- uid: 4507 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,19.5 - parent: 0 - type: Transform -- uid: 4508 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,19.5 - parent: 0 - type: Transform -- uid: 4509 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,19.5 - parent: 0 - type: Transform -- uid: 4510 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 0 - type: Transform -- uid: 4511 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,19.5 - parent: 0 - type: Transform -- uid: 4512 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,19.5 - parent: 0 - type: Transform -- uid: 4513 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,19.5 - parent: 0 - type: Transform -- uid: 4514 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,19.5 - parent: 0 - type: Transform -- uid: 4515 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,19.5 - parent: 0 - type: Transform -- uid: 4516 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,19.5 - parent: 0 - type: Transform -- uid: 4517 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,19.5 - parent: 0 - type: Transform -- uid: 4518 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,19.5 - parent: 0 - type: Transform -- uid: 4519 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,19.5 - parent: 0 - type: Transform -- uid: 4520 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,19.5 - parent: 0 - type: Transform -- uid: 4521 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,19.5 - parent: 0 - type: Transform -- uid: 4522 - type: ClosetEmergencyFilledRandom - components: - - pos: 13.5,4.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 4523 - type: ExtinguisherCabinetFilled - components: - - pos: 4.5,23.5 - parent: 0 - type: Transform -- uid: 4524 - type: ExtinguisherCabinetFilled - components: - - pos: 4.5,30.5 - parent: 0 - type: Transform -- uid: 4525 - type: FirelockGlass - components: - - pos: 18.5,5.5 - parent: 0 - type: Transform -- uid: 4526 - type: PosterLegitNanotrasenLogo - components: - - pos: 13.5,11.5 - parent: 0 - type: Transform -- uid: 4527 - type: PosterLegitIan - components: - - pos: 10.5,23.5 - parent: 0 - type: Transform -- uid: 4528 - type: PosterLegitLoveIan - components: - - pos: 8.5,30.5 - parent: 0 - type: Transform -- uid: 4529 - type: PosterLegitNanomichiAd - components: - - pos: 11.5,25.5 - parent: 0 - type: Transform -- uid: 4530 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,1.5 - parent: 0 - type: Transform -- uid: 4531 - type: PosterLegitNanotrasenLogo - components: - - pos: 1.5,27.5 - parent: 0 - type: Transform -- uid: 4532 - type: PosterLegitNanotrasenLogo - components: - - pos: -6.5,27.5 - parent: 0 - type: Transform -- uid: 4533 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 13.5,2.5 - parent: 0 - type: Transform -- uid: 4534 - type: Table - components: - - pos: 13.5,-0.5 - parent: 0 - type: Transform -- uid: 4535 - type: MedkitBurnFilled - components: - - pos: 13.526362,-0.44057345 - parent: 0 - type: Transform -- uid: 4536 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 21.5,-4.5 - parent: 0 - type: Transform -- uid: 4537 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 23.5,-5.5 - parent: 0 - type: Transform -- uid: 4538 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-6.5 - parent: 0 - type: Transform - - sprite: Structures/Machines/VendingMachines/cigs.rsi - type: Sprite -- uid: 4539 - type: Rack - components: - - pos: 21.5,-6.5 - parent: 0 - type: Transform -- uid: 4540 - type: ClosetEmergencyFilledRandom - components: - - pos: 15.5,-5.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 4541 - type: ToolboxEmergencyFilled - components: - - pos: 21.46411,-6.3464417 - parent: 0 - type: Transform -- uid: 4542 - type: ClothingMaskGas - components: - - pos: 21.65161,-6.5808167 - parent: 0 - type: Transform -- uid: 4543 - type: FirelockGlass - components: - - pos: 16.5,-7.5 - parent: 0 - type: Transform -- uid: 4544 - type: FirelockGlass - components: - - pos: 20.5,-7.5 - parent: 0 - type: Transform -- uid: 4545 - type: PoweredSmallLight - components: - - pos: 15.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4546 - type: PoweredSmallLight - components: - - pos: 21.5,-6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4547 - type: Table - components: - - pos: 27.5,-5.5 - parent: 0 - type: Transform -- uid: 4548 - type: Table - components: - - pos: 27.5,0.5 - parent: 0 - type: Transform -- uid: 4549 - type: BlockGameArcade - components: - - pos: 27.5,-0.5 - parent: 0 - type: Transform -- uid: 4550 - type: PottedPlantRandom - components: - - pos: 27.5,-4.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 4551 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-4.5 - parent: 0 - type: Transform -- uid: 4552 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-3.5 - parent: 0 - type: Transform -- uid: 4553 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 0 - type: Transform -- uid: 4554 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-1.5 - parent: 0 - type: Transform -- uid: 4555 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-0.5 - parent: 0 - type: Transform -- uid: 4556 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-4.5 - parent: 0 - type: Transform -- uid: 4557 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-3.5 - parent: 0 - type: Transform -- uid: 4558 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 0 - type: Transform -- uid: 4559 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-1.5 - parent: 0 - type: Transform -- uid: 4560 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-0.5 - parent: 0 - type: Transform -- uid: 4561 - type: DiceBag - components: - - pos: 27.529026,-5.5177865 - parent: 0 - type: Transform -- uid: 4562 - type: TableReinforced - components: - - pos: 27.5,3.5 - parent: 0 - type: Transform -- uid: 4563 - type: TableReinforced - components: - - pos: 27.5,4.5 - parent: 0 - type: Transform -- uid: 4564 - type: TableReinforced - components: - - pos: 28.5,4.5 - parent: 0 - type: Transform -- uid: 4565 - type: Chair - components: - - pos: 29.5,4.5 - parent: 0 - type: Transform -- uid: 4566 - type: Chair - components: - - pos: 30.5,4.5 - parent: 0 - type: Transform -- uid: 4567 - type: Chair - components: - - pos: 31.5,4.5 - parent: 0 - type: Transform -- uid: 4568 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 31.5,3.5 - parent: 0 - type: Transform -- uid: 4569 - type: ChairOfficeDark - components: - - pos: 28.5,2.5 - parent: 0 - type: Transform -- uid: 4570 - type: ComputerCriminalRecords - components: - - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 0 - type: Transform -- uid: 4571 - type: ComputerCrewMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 29.5,2.5 - parent: 0 - type: Transform -- uid: 4572 - type: WeaponCapacitorRecharger - components: - - pos: 27.5,3.5 - parent: 0 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 4573 - type: CrowbarRed - components: - - pos: 27.5,4.5 - parent: 0 - type: Transform -- uid: 4574 - type: Wrench - components: - - pos: 27.5,4.5 - parent: 0 - type: Transform -- uid: 4575 - type: BoxFolderRed - components: - - pos: 28.5,1.5 - parent: 0 - type: Transform -- uid: 4576 - type: BoxFolderYellow - components: - - pos: 28.5,-6.5 - parent: 0 - type: Transform -- uid: 4577 - type: PottedPlantRandom - components: - - pos: 27.5,-8.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 4578 - type: TableReinforced - components: - - pos: 27.5,-9.5 - parent: 0 - type: Transform -- uid: 4579 - type: SignDoors - components: - - pos: 32.5,-2.5 - parent: 0 - type: Transform -- uid: 4580 - type: SignSpace - components: - - pos: 32.5,1.5 - parent: 0 - type: Transform -- uid: 4581 - type: SignSpace - components: - - pos: 32.5,-6.5 - parent: 0 - type: Transform -- uid: 4582 - type: RadioHandheld - components: - - pos: 27.5,4.5 - parent: 0 - type: Transform -- uid: 4583 - type: PosterLegitNanotrasenLogo - components: - - pos: 23.5,-4.5 - parent: 0 - type: Transform -- uid: 4584 - type: ExtinguisherCabinetFilled - components: - - pos: 20.5,-4.5 - parent: 0 - type: Transform -- uid: 4585 - type: RandomPosterContraband - components: - - pos: 17.5,0.5 - parent: 0 - type: Transform -- uid: 4586 - type: PosterLegitCleanliness - components: - - pos: 14.5,5.5 - parent: 0 - type: Transform -- uid: 4587 - type: PosterLegitNoERP - components: - - pos: 17.5,6.5 - parent: 0 - type: Transform -- uid: 4588 - type: RandomPosterLegit - components: - - pos: 15.5,12.5 - parent: 0 - type: Transform -- uid: 4589 - type: RandomPosterLegit - components: - - pos: 22.5,-6.5 - parent: 0 - type: Transform -- uid: 4590 - type: RandomPosterLegit - components: - - pos: 15.5,-4.5 - parent: 0 - type: Transform -- uid: 4591 - type: Catwalk - components: - - pos: 19.5,-7.5 - parent: 0 - type: Transform -- uid: 4592 - type: Catwalk - components: - - pos: 18.5,-7.5 - parent: 0 - type: Transform -- uid: 4593 - type: Catwalk - components: - - pos: 17.5,-7.5 - parent: 0 - type: Transform -- uid: 4594 - type: SpawnMobMouse - components: - - pos: 19.5,-0.5 - parent: 0 - type: Transform -- uid: 4595 - type: SpawnMobMouse - components: - - pos: 2.5,12.5 - parent: 0 - type: Transform -- uid: 4596 - type: SpawnMobMouse - components: - - pos: -20.5,-4.5 - parent: 0 - type: Transform -- uid: 4597 - type: Table - components: - - pos: 13.5,-4.5 - parent: 0 - type: Transform -- uid: 4598 - type: Table - components: - - pos: 13.5,-9.5 - parent: 0 - type: Transform -- uid: 4599 - type: ClosetEmergencyFilledRandom - components: - - pos: 13.5,-6.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 4600 - type: PottedPlantRandom - components: - - pos: 13.5,-8.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 4601 - type: MaintenanceFluffSpawner - components: - - pos: 13.5,-9.5 - parent: 0 - type: Transform -- uid: 4602 - type: SignSpace - components: - - pos: 19.5,11.5 - parent: 0 - type: Transform -- uid: 4603 - type: OxygenCanister - components: - - pos: 14.5,11.5 - parent: 0 - type: Transform -- uid: 4604 - type: NitrogenCanister - components: - - pos: 15.5,11.5 - parent: 0 - type: Transform -- uid: 4605 - type: Rack - components: - - pos: 16.5,11.5 - parent: 0 - type: Transform -- uid: 4606 - type: CrateEmptySpawner - components: - - pos: 18.5,11.5 - parent: 0 - type: Transform -- uid: 4607 - type: MaintenanceFluffSpawner - components: - - pos: 16.5,11.5 - parent: 0 - type: Transform -- uid: 4608 - type: MaintenanceToolSpawner - components: - - pos: 17.5,11.5 - parent: 0 - type: Transform -- uid: 4609 - type: MaintenanceWeaponSpawner - components: - - pos: 19.5,7.5 - parent: 0 - type: Transform -- uid: 4610 - type: Grille - components: - - pos: 28.5,7.5 - parent: 0 - type: Transform -- uid: 4611 - type: Grille - components: - - pos: 29.5,7.5 - parent: 0 - type: Transform -- uid: 4612 - type: Grille - components: - - pos: 30.5,7.5 - parent: 0 - type: Transform -- uid: 4613 - type: Grille - components: - - pos: 32.5,7.5 - parent: 0 - type: Transform -- uid: 4614 - type: Grille - components: - - pos: 33.5,7.5 - parent: 0 - type: Transform -- uid: 4615 - type: Grille - components: - - pos: 26.5,9.5 - parent: 0 - type: Transform -- uid: 4616 - type: Grille - components: - - pos: 26.5,8.5 - parent: 0 - type: Transform -- uid: 4617 - type: Grille - components: - - pos: 22.5,-11.5 - parent: 0 - type: Transform -- uid: 4618 - type: Grille - components: - - pos: 22.5,-10.5 - parent: 0 - type: Transform -- uid: 4619 - type: Grille - components: - - pos: 24.5,-11.5 - parent: 0 - type: Transform -- uid: 4620 - type: Grille - components: - - pos: 24.5,-12.5 - parent: 0 - type: Transform -- uid: 4621 - type: Grille - components: - - pos: 25.5,-12.5 - parent: 0 - type: Transform -- uid: 4622 - type: Grille - components: - - pos: 26.5,-12.5 - parent: 0 - type: Transform -- uid: 4623 - type: Grille - components: - - pos: 27.5,-12.5 - parent: 0 - type: Transform -- uid: 4624 - type: Grille - components: - - pos: 30.5,-12.5 - parent: 0 - type: Transform -- uid: 4625 - type: Grille - components: - - pos: 31.5,-12.5 - parent: 0 - type: Transform -- uid: 4626 - type: Grille - components: - - pos: 32.5,-12.5 - parent: 0 - type: Transform -- uid: 4627 - type: ReinforcedWindow - components: - - pos: -3.5,-33.5 - parent: 0 - type: Transform -- uid: 4628 - type: ReinforcedWindow - components: - - pos: -2.5,-33.5 - parent: 0 - type: Transform -- uid: 4629 - type: ReinforcedWindow - components: - - pos: -1.5,-33.5 - parent: 0 - type: Transform -- uid: 4630 - type: ReinforcedWindow - components: - - pos: -1.5,-36.5 - parent: 0 - type: Transform -- uid: 4631 - type: ReinforcedWindow - components: - - pos: -2.5,-36.5 - parent: 0 - type: Transform -- uid: 4632 - type: ReinforcedWindow - components: - - pos: -3.5,-36.5 - parent: 0 - type: Transform -- uid: 4633 - type: ReinforcedWindow - components: - - pos: -0.5,-36.5 - parent: 0 - type: Transform -- uid: 4634 - type: ReinforcedWindow - components: - - pos: 0.5,-36.5 - parent: 0 - type: Transform -- uid: 4635 - type: ReinforcedWindow - components: - - pos: -4.5,-36.5 - parent: 0 - type: Transform -- uid: 4636 - type: ReinforcedWindow - components: - - pos: -5.5,-36.5 - parent: 0 - type: Transform -- uid: 4637 - type: ReinforcedWindow - components: - - pos: -8.5,-36.5 - parent: 0 - type: Transform -- uid: 4638 - type: WallReinforced - components: - - pos: -7.5,-36.5 - parent: 0 - type: Transform -- uid: 4639 - type: WallReinforced - components: - - pos: -6.5,-36.5 - parent: 0 - type: Transform -- uid: 4640 - type: WallReinforced - components: - - pos: 1.5,-36.5 - parent: 0 - type: Transform -- uid: 4641 - type: WallReinforced - components: - - pos: 2.5,-36.5 - parent: 0 - type: Transform -- uid: 4642 - type: WallReinforced - components: - - pos: 3.5,-36.5 - parent: 0 - type: Transform -- uid: 4643 - type: WallReinforced - components: - - pos: -9.5,-36.5 - parent: 0 - type: Transform -- uid: 4644 - type: FirelockGlass - components: - - pos: -5.5,-14.5 - parent: 0 - type: Transform -- uid: 4645 - type: FirelockGlass - components: - - pos: -6.5,-14.5 - parent: 0 - type: Transform -- uid: 4646 - type: FirelockGlass - components: - - pos: 0.5,-14.5 - parent: 0 - type: Transform -- uid: 4647 - type: FirelockGlass - components: - - pos: 1.5,-14.5 - parent: 0 - type: Transform -- uid: 4648 - type: GasPipeStraight - components: - - pos: -5.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4649 - type: WallSolid - components: - - pos: -4.5,-14.5 - parent: 0 - type: Transform -- uid: 4650 - type: WallSolid - components: - - pos: -0.5,-14.5 - parent: 0 - type: Transform -- uid: 4651 - type: WallSolid - components: - - pos: -0.5,-20.5 - parent: 0 - type: Transform -- uid: 4652 - type: WallSolid - components: - - pos: -1.5,-20.5 - parent: 0 - type: Transform -- uid: 4653 - type: WallSolid - components: - - pos: -2.5,-20.5 - parent: 0 - type: Transform -- uid: 4654 - type: WallSolid - components: - - pos: -3.5,-20.5 - parent: 0 - type: Transform -- uid: 4655 - type: WallSolid - components: - - pos: -4.5,-20.5 - parent: 0 - type: Transform -- uid: 4656 - type: Window - components: - - pos: -1.5,-14.5 - parent: 0 - type: Transform -- uid: 4657 - type: Window - components: - - pos: -2.5,-14.5 - parent: 0 - type: Transform -- uid: 4658 - type: Window - components: - - pos: -3.5,-14.5 - parent: 0 - type: Transform -- uid: 4659 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -1.5,1.5 - parent: 0 - type: Transform -- uid: 4660 - type: CableApcExtension - components: - - pos: -13.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4661 - type: ReinforcedWindow - components: - - pos: -9.5,-37.5 - parent: 0 - type: Transform -- uid: 4662 - type: ReinforcedWindow - components: - - pos: -9.5,-38.5 - parent: 0 - type: Transform -- uid: 4663 - type: ReinforcedWindow - components: - - pos: -9.5,-39.5 - parent: 0 - type: Transform -- uid: 4664 - type: ReinforcedWindow - components: - - pos: -9.5,-41.5 - parent: 0 - type: Transform -- uid: 4665 - type: ReinforcedWindow - components: - - pos: -9.5,-42.5 - parent: 0 - type: Transform -- uid: 4666 - type: ReinforcedWindow - components: - - pos: -9.5,-44.5 - parent: 0 - type: Transform -- uid: 4667 - type: ReinforcedWindow - components: - - pos: -9.5,-49.5 - parent: 0 - type: Transform -- uid: 4668 - type: ReinforcedWindow - components: - - pos: -9.5,-51.5 - parent: 0 - type: Transform -- uid: 4669 - type: ReinforcedWindow - components: - - pos: -8.5,-51.5 - parent: 0 - type: Transform -- uid: 4670 - type: ReinforcedWindow - components: - - pos: -7.5,-51.5 - parent: 0 - type: Transform -- uid: 4671 - type: ReinforcedWindow - components: - - pos: -8.5,-49.5 - parent: 0 - type: Transform -- uid: 4672 - type: ReinforcedWindow - components: - - pos: -7.5,-49.5 - parent: 0 - type: Transform -- uid: 4673 - type: IntercomService - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 0 - type: Transform -- uid: 4674 - type: IntercomService - components: - - pos: -12.5,-4.5 - parent: 0 - type: Transform -- uid: 4675 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-45.5 - parent: 0 - type: Transform -- uid: 4676 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-46.5 - parent: 0 - type: Transform -- uid: 4677 - type: ReinforcedWindow - components: - - pos: -7.5,-44.5 - parent: 0 - type: Transform -- uid: 4678 - type: ReinforcedWindow - components: - - pos: -8.5,-44.5 - parent: 0 - type: Transform -- uid: 4679 - type: ReinforcedWindow - components: - - pos: -8.5,-42.5 - parent: 0 - type: Transform -- uid: 4680 - type: ReinforcedWindow - components: - - pos: -7.5,-42.5 - parent: 0 - type: Transform -- uid: 4681 - type: WallReinforced - components: - - pos: -9.5,-40.5 - parent: 0 - type: Transform -- uid: 4682 - type: ReinforcedWindow - components: - - pos: -9.5,-52.5 - parent: 0 - type: Transform -- uid: 4683 - type: ReinforcedWindow - components: - - pos: -12.5,-52.5 - parent: 0 - type: Transform -- uid: 4684 - type: ReinforcedWindow - components: - - pos: -12.5,-51.5 - parent: 0 - type: Transform -- uid: 4685 - type: WallReinforced - components: - - pos: -9.5,-53.5 - parent: 0 - type: Transform -- uid: 4686 - type: WallReinforced - components: - - pos: -12.5,-53.5 - parent: 0 - type: Transform -- uid: 4687 - type: ReinforcedWindow - components: - - pos: -12.5,-54.5 - parent: 0 - type: Transform -- uid: 4688 - type: ReinforcedWindow - components: - - pos: -12.5,-55.5 - parent: 0 - type: Transform -- uid: 4689 - type: CableApcExtension - components: - - pos: -11.5,-56.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4690 - type: CableApcExtension - components: - - pos: -11.5,-55.5 - parent: 0 - type: Transform -- uid: 4691 - type: ReinforcedWindow - components: - - pos: -9.5,-55.5 - parent: 0 - type: Transform -- uid: 4692 - type: ReinforcedWindow - components: - - pos: -9.5,-54.5 - parent: 0 - type: Transform -- uid: 4693 - type: WallReinforced - components: - - pos: -12.5,-39.5 - parent: 0 - type: Transform -- uid: 4694 - type: WallReinforced - components: - - pos: -12.5,-37.5 - parent: 0 - type: Transform -- uid: 4695 - type: ReinforcedWindow - components: - - pos: -12.5,-38.5 - parent: 0 - type: Transform -- uid: 4696 - type: WallReinforced - components: - - pos: -12.5,-40.5 - parent: 0 - type: Transform -- uid: 4697 - type: ReinforcedWindow - components: - - pos: -12.5,-41.5 - parent: 0 - type: Transform -- uid: 4698 - type: ReinforcedWindow - components: - - pos: -12.5,-42.5 - parent: 0 - type: Transform -- uid: 4699 - type: ReinforcedWindow - components: - - pos: -12.5,-44.5 - parent: 0 - type: Transform -- uid: 4700 - type: ReinforcedWindow - components: - - pos: -12.5,-49.5 - parent: 0 - type: Transform -- uid: 4701 - type: ReinforcedWindow - components: - - pos: -13.5,-51.5 - parent: 0 - type: Transform -- uid: 4702 - type: ReinforcedWindow - components: - - pos: -14.5,-51.5 - parent: 0 - type: Transform -- uid: 4703 - type: ReinforcedWindow - components: - - pos: -13.5,-49.5 - parent: 0 - type: Transform -- uid: 4704 - type: ReinforcedWindow - components: - - pos: -14.5,-49.5 - parent: 0 - type: Transform -- uid: 4705 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-47.5 - parent: 0 - type: Transform -- uid: 4706 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-48.5 - parent: 0 - type: Transform -- uid: 4707 - type: SpawnPointLatejoin - components: - - pos: -11.5,-48.5 - parent: 0 - type: Transform -- uid: 4708 - type: SpawnPointLatejoin - components: - - pos: -11.5,-47.5 - parent: 0 - type: Transform -- uid: 4709 - type: ReinforcedWindow - components: - - pos: -14.5,-44.5 - parent: 0 - type: Transform -- uid: 4710 - type: ReinforcedWindow - components: - - pos: -13.5,-44.5 - parent: 0 - type: Transform -- uid: 4711 - type: ReinforcedWindow - components: - - pos: -13.5,-42.5 - parent: 0 - type: Transform -- uid: 4712 - type: ReinforcedWindow - components: - - pos: -14.5,-42.5 - parent: 0 - type: Transform -- uid: 4713 - type: SpawnPointLatejoin - components: - - pos: -11.5,-46.5 - parent: 0 - type: Transform -- uid: 4714 - type: AirlockGlass - components: - - pos: 0.5,-33.5 - parent: 0 - type: Transform -- uid: 4715 - type: SpawnPointLatejoin - components: - - pos: -11.5,-45.5 - parent: 0 - type: Transform -- uid: 4716 - type: SpawnPointLatejoin - components: - - pos: -10.5,-48.5 - parent: 0 - type: Transform -- uid: 4717 - type: IntercomMedical - components: - - pos: -15.5,-14.5 - parent: 0 - type: Transform -- uid: 4718 - type: SpawnPointLatejoin - components: - - pos: -10.5,-47.5 - parent: 0 - type: Transform -- uid: 4719 - type: IntercomMedical - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 0 - type: Transform -- uid: 4720 - type: SpawnPointLatejoin - components: - - pos: -10.5,-46.5 - parent: 0 - type: Transform -- uid: 4721 - type: SpawnPointLatejoin - components: - - pos: -10.5,-45.5 - parent: 0 - type: Transform -- uid: 4722 - type: Grille - components: - - pos: -12.5,-54.5 - parent: 0 - type: Transform -- uid: 4723 - type: Grille - components: - - pos: -12.5,-55.5 - parent: 0 - type: Transform -- uid: 4724 - type: CableApcExtension - components: - - pos: -11.5,-54.5 - parent: 0 - type: Transform -- uid: 4725 - type: ClosetEmergencyFilledRandom - components: - - pos: -10.5,-55.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4726 - type: Grille - components: - - pos: -9.5,-55.5 - parent: 0 - type: Transform -- uid: 4727 - type: Grille - components: - - pos: -9.5,-54.5 - parent: 0 - type: Transform -- uid: 4728 - type: Grille - components: - - pos: -9.5,-52.5 - parent: 0 - type: Transform -- uid: 4729 - type: Grille - components: - - pos: -9.5,-51.5 - parent: 0 - type: Transform -- uid: 4730 - type: Grille - components: - - pos: -8.5,-51.5 - parent: 0 - type: Transform -- uid: 4731 - type: Grille - components: - - pos: -7.5,-51.5 - parent: 0 - type: Transform -- uid: 4732 - type: Grille - components: - - pos: -9.5,-49.5 - parent: 0 - type: Transform -- uid: 4733 - type: Grille - components: - - pos: -9.5,-49.5 - parent: 0 - type: Transform -- uid: 4734 - type: Grille - components: - - pos: -8.5,-49.5 - parent: 0 - type: Transform -- uid: 4735 - type: Grille - components: - - pos: -7.5,-49.5 - parent: 0 - type: Transform -- uid: 4736 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-43.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4737 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-50.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 4738 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-48.5 - parent: 0 - type: Transform -- uid: 4739 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-47.5 - parent: 0 - type: Transform -- uid: 4740 - type: Grille - components: - - pos: -7.5,-44.5 - parent: 0 - type: Transform -- uid: 4741 - type: Grille - components: - - pos: -9.5,-44.5 - parent: 0 - type: Transform -- uid: 4742 - type: Grille - components: - - pos: -8.5,-44.5 - parent: 0 - type: Transform -- uid: 4743 - type: Grille - components: - - pos: -7.5,-42.5 - parent: 0 - type: Transform -- uid: 4744 - type: Grille - components: - - pos: -8.5,-42.5 - parent: 0 - type: Transform -- uid: 4745 - type: Grille - components: - - pos: -9.5,-42.5 - parent: 0 - type: Transform -- uid: 4746 - type: Grille - components: - - pos: -9.5,-41.5 - parent: 0 - type: Transform -- uid: 4747 - type: Grille - components: - - pos: -12.5,-41.5 - parent: 0 - type: Transform -- uid: 4748 - type: Grille - components: - - pos: -12.5,-42.5 - parent: 0 - type: Transform -- uid: 4749 - type: Grille - components: - - pos: -13.5,-42.5 - parent: 0 - type: Transform -- uid: 4750 - type: Grille - components: - - pos: -14.5,-42.5 - parent: 0 - type: Transform -- uid: 4751 - type: Grille - components: - - pos: -12.5,-44.5 - parent: 0 - type: Transform -- uid: 4752 - type: Grille - components: - - pos: -13.5,-44.5 - parent: 0 - type: Transform -- uid: 4753 - type: Grille - components: - - pos: -14.5,-44.5 - parent: 0 - type: Transform -- uid: 4754 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-46.5 - parent: 0 - type: Transform -- uid: 4755 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-45.5 - parent: 0 - type: Transform -- uid: 4756 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-18.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7430744 - - 6.5572805 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4757 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-17.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4758 - type: Grille - components: - - pos: -14.5,-49.5 - parent: 0 - type: Transform -- uid: 4759 - type: Grille - components: - - pos: -13.5,-49.5 - parent: 0 - type: Transform -- uid: 4760 - type: Grille - components: - - pos: -12.5,-49.5 - parent: 0 - type: Transform -- uid: 4761 - type: Grille - components: - - pos: -12.5,-52.5 - parent: 0 - type: Transform -- uid: 4762 - type: Grille - components: - - pos: -12.5,-51.5 - parent: 0 - type: Transform -- uid: 4763 - type: Grille - components: - - pos: -13.5,-51.5 - parent: 0 - type: Transform -- uid: 4764 - type: Grille - components: - - pos: -14.5,-51.5 - parent: 0 - type: Transform -- uid: 4765 - type: Grille - components: - - pos: -9.5,-39.5 - parent: 0 - type: Transform -- uid: 4766 - type: Grille - components: - - pos: -9.5,-38.5 - parent: 0 - type: Transform -- uid: 4767 - type: Grille - components: - - pos: -9.5,-37.5 - parent: 0 - type: Transform -- uid: 4768 - type: Grille - components: - - pos: -12.5,-38.5 - parent: 0 - type: Transform -- uid: 4769 - type: Grille - components: - - pos: -8.5,-36.5 - parent: 0 - type: Transform -- uid: 4770 - type: Grille - components: - - pos: -5.5,-36.5 - parent: 0 - type: Transform -- uid: 4771 - type: Grille - components: - - pos: -4.5,-36.5 - parent: 0 - type: Transform -- uid: 4772 - type: Grille - components: - - pos: -3.5,-36.5 - parent: 0 - type: Transform -- uid: 4773 - type: Grille - components: - - pos: -2.5,-36.5 - parent: 0 - type: Transform -- uid: 4774 - type: Grille - components: - - pos: -1.5,-36.5 - parent: 0 - type: Transform -- uid: 4775 - type: Grille - components: - - pos: -0.5,-36.5 - parent: 0 - type: Transform -- uid: 4776 - type: Grille - components: - - pos: 0.5,-36.5 - parent: 0 - type: Transform -- uid: 4777 - type: Grille - components: - - pos: -1.5,-33.5 - parent: 0 - type: Transform -- uid: 4778 - type: Grille - components: - - pos: -2.5,-33.5 - parent: 0 - type: Transform -- uid: 4779 - type: Grille - components: - - pos: -3.5,-33.5 - parent: 0 - type: Transform -- uid: 4780 - type: Grille - components: - - pos: -1.5,-14.5 - parent: 0 - type: Transform -- uid: 4781 - type: Grille - components: - - pos: -2.5,-14.5 - parent: 0 - type: Transform -- uid: 4782 - type: Grille - components: - - pos: -3.5,-14.5 - parent: 0 - type: Transform -- uid: 4783 - type: WallSolid - components: - - pos: 3.5,-35.5 - parent: 0 - type: Transform -- uid: 4784 - type: WallSolid - components: - - pos: 3.5,-34.5 - parent: 0 - type: Transform -- uid: 4785 - type: WallSolid - components: - - pos: 3.5,-33.5 - parent: 0 - type: Transform -- uid: 4786 - type: WallSolid - components: - - pos: 2.5,-33.5 - parent: 0 - type: Transform -- uid: 4787 - type: WallSolid - components: - - pos: -0.5,-33.5 - parent: 0 - type: Transform -- uid: 4788 - type: WallSolid - components: - - pos: -4.5,-33.5 - parent: 0 - type: Transform -- uid: 4789 - type: WallReinforced - components: - - pos: -9.5,-29.5 - parent: 0 - type: Transform -- uid: 4790 - type: WallReinforced - components: - - pos: -8.5,-29.5 - parent: 0 - type: Transform -- uid: 4791 - type: WallReinforced - components: - - pos: -9.5,-30.5 - parent: 0 - type: Transform -- uid: 4792 - type: WallReinforced - components: - - pos: -9.5,-31.5 - parent: 0 - type: Transform -- uid: 4793 - type: WallSolid - components: - - pos: -11.5,-33.5 - parent: 0 - type: Transform -- uid: 4794 - type: WallSolid - components: - - pos: -12.5,-33.5 - parent: 0 - type: Transform -- uid: 4795 - type: WallSolid - components: - - pos: -12.5,-36.5 - parent: 0 - type: Transform -- uid: 4796 - type: Grille - components: - - pos: -4.5,-28.5 - parent: 0 - type: Transform -- uid: 4797 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4798 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-15.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4799 - type: ComputerStationRecords - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 0 - type: Transform -- uid: 4800 - type: DeskBell - components: - - pos: 1.5,-2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4801 - type: DeskBell - components: - - pos: -6.5,-5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4802 - type: DeskBell - components: - - pos: 2.5,-15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4803 - type: DeskBell - components: - - pos: 15.5,16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4804 - type: DeskBell - components: - - pos: 10.5,22.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4805 - type: DeskBell - components: - - pos: -24.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4806 - type: DeskBell - components: - - pos: -9.5,-23.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4826 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -51.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 4827 - type: ClothingNeckCloakTrans - components: - - pos: 38.546867,-26.403046 - parent: 0 - type: Transform -- uid: 4828 - type: WallReinforced - components: - - pos: -33.5,23.5 - parent: 0 - type: Transform -- uid: 4829 - type: WallReinforced - components: - - pos: -34.5,23.5 - parent: 0 - type: Transform -- uid: 4830 - type: WallReinforced - components: - - pos: -35.5,23.5 - parent: 0 - type: Transform -- uid: 4831 - type: WallReinforced - components: - - pos: -36.5,23.5 - parent: 0 - type: Transform -- uid: 4832 - type: WallReinforced - components: - - pos: -37.5,23.5 - parent: 0 - type: Transform -- uid: 4833 - type: IntercomCommand - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-26.5 - parent: 0 - type: Transform -- uid: 4834 - type: IntercomCommand - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-19.5 - parent: 0 - type: Transform -- uid: 4847 - type: IntercomCommand - components: - - pos: 6.5,30.5 - parent: 0 - type: Transform -- uid: 4848 - type: IntercomCommand - components: - - pos: 17.5,36.5 - parent: 0 - type: Transform -- uid: 4849 - type: IntercomSupply - components: - - rot: -1.5707963267948966 rad - pos: 21.5,20.5 - parent: 0 - type: Transform -- uid: 4850 - type: IntercomAll - components: - - rot: 3.141592653589793 rad - pos: 1.5,31.5 - parent: 0 - type: Transform -- uid: 4851 - type: IntercomAll - components: - - rot: 1.5707963267948966 rad - pos: -16.5,23.5 - parent: 0 - type: Transform -- uid: 4852 - type: IntercomMedical - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-35.5 - parent: 0 - type: Transform -- uid: 4853 - type: IntercomCommand - components: - - pos: -19.5,26.5 - parent: 0 - type: Transform -- uid: 4854 - type: IntercomSecurity - components: - - rot: 3.141592653589793 rad - pos: -35.5,9.5 - parent: 0 - type: Transform -- uid: 4865 - type: Handcuffs - components: - - pos: 17.570036,-11.532839 - parent: 0 - type: Transform -- uid: 4878 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-48.5 - parent: 0 - type: Transform -- uid: 4879 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-47.5 - parent: 0 - type: Transform -- uid: 4880 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-46.5 - parent: 0 - type: Transform -- uid: 4881 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-45.5 - parent: 0 - type: Transform -- uid: 4882 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-48.5 - parent: 0 - type: Transform -- uid: 4883 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-47.5 - parent: 0 - type: Transform -- uid: 4884 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-46.5 - parent: 0 - type: Transform -- uid: 4885 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-45.5 - parent: 0 - type: Transform -- uid: 4886 - type: WallReinforced - components: - - pos: -38.5,23.5 - parent: 0 - type: Transform -- uid: 4887 - type: WallReinforced - components: - - pos: -38.5,22.5 - parent: 0 - type: Transform -- uid: 4898 - type: WallReinforced - components: - - pos: -38.5,21.5 - parent: 0 - type: Transform -- uid: 4935 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-40.5 - parent: 0 - type: Transform -- uid: 4936 - type: IntercomMedical - components: - - rot: 3.141592653589793 rad - pos: -10.5,-23.5 - parent: 0 - type: Transform -- uid: 5026 - type: BlockGameArcade - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-47.5 - parent: 0 - type: Transform -- uid: 5027 - type: WallReinforced - components: - - pos: -38.5,19.5 - parent: 0 - type: Transform -- uid: 5032 - type: AsteroidRock - components: - - pos: -36.5,32.5 - parent: 0 - type: Transform -- uid: 5041 - type: CableApcExtension - components: - - pos: -11.5,-58.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5042 - type: WallReinforced - components: - - pos: -12.5,-59.5 - parent: 0 - type: Transform -- uid: 5059 - type: SpawnPointObserver - components: - - pos: -2.5,2.5 - parent: 0 - type: Transform -- uid: 5060 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,-45.5 - parent: 0 - type: Transform -- uid: 5061 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,-46.5 - parent: 0 - type: Transform -- uid: 5062 - type: PottedPlantRandom - components: - - pos: -9.5,-48.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 5063 - type: PottedPlantRandom - components: - - pos: -12.5,-48.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 5064 - type: PottedPlantRandom - components: - - pos: -12.5,-45.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 5065 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-47.5 - parent: 0 - type: Transform -- uid: 5066 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-46.5 - parent: 0 - type: Transform -- uid: 5067 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-53.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5068 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5069 - type: Poweredlight - components: - - pos: -12.5,-45.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5070 - type: Poweredlight - components: - - pos: -9.5,-45.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5071 - type: FirelockGlass - components: - - pos: -11.5,-36.5 - parent: 0 - type: Transform -- uid: 5072 - type: FirelockGlass - components: - - pos: -10.5,-36.5 - parent: 0 - type: Transform -- uid: 5073 - type: SignDoors - components: - - pos: -9.5,-52.5 - parent: 0 - type: Transform -- uid: 5074 - type: SignDoors - components: - - pos: -12.5,-41.5 - parent: 0 - type: Transform -- uid: 5075 - type: SignSpace - components: - - pos: -9.5,-41.5 - parent: 0 - type: Transform -- uid: 5076 - type: SignSpace - components: - - pos: -12.5,-52.5 - parent: 0 - type: Transform -- uid: 5077 - type: GasPipeStraight - components: - - pos: -6.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5078 - type: GasPipeStraight - components: - - pos: -6.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5079 - type: GasPipeStraight - components: - - pos: -6.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5080 - type: GasPipeStraight - components: - - pos: -6.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5081 - type: GasPipeStraight - components: - - pos: -6.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5082 - type: GasPipeStraight - components: - - pos: -6.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5083 - type: GasPipeStraight - components: - - pos: -6.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5084 - type: GasPipeStraight - components: - - pos: -6.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5085 - type: GasPipeStraight - components: - - pos: -6.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5086 - type: GasPipeFourway - components: - - pos: 0.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5087 - type: GasPipeStraight - components: - - pos: -6.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5088 - type: GasPipeStraight - components: - - pos: -6.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5089 - type: GasPipeStraight - components: - - pos: -6.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5090 - type: GasPipeStraight - components: - - pos: -6.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5091 - type: GasPipeStraight - components: - - pos: -6.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5092 - type: GasPipeStraight - components: - - pos: -6.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5093 - type: GasPipeStraight - components: - - pos: -6.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5094 - type: GasPipeStraight - components: - - pos: -6.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5095 - type: GasPipeStraight - components: - - pos: -6.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5096 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5097 - type: GasPipeStraight - components: - - pos: -6.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5098 - type: GasPipeStraight - components: - - pos: -6.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5099 - type: GasPipeStraight - components: - - pos: 1.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5100 - type: GasPipeStraight - components: - - pos: 1.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5101 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5102 - type: GasPipeStraight - components: - - pos: 1.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5103 - type: GasPipeStraight - components: - - pos: 1.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5104 - type: GasPipeStraight - components: - - pos: 1.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5105 - type: GasPipeStraight - components: - - pos: 1.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5106 - type: GasPipeStraight - components: - - pos: 1.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5107 - type: GasPipeStraight - components: - - pos: 1.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5108 - type: GasPipeStraight - components: - - pos: 1.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5109 - type: GasPipeStraight - components: - - pos: 1.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5110 - type: GasPipeStraight - components: - - pos: 1.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5111 - type: GasPipeFourway - components: - - pos: -6.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5112 - type: GasPipeStraight - components: - - pos: 1.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5113 - type: GasPipeTJunction - components: - - pos: 9.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5114 - type: GasPipeStraight - components: - - pos: 1.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5115 - type: GasPipeStraight - components: - - pos: 1.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5116 - type: GasPipeStraight - components: - - pos: 1.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5117 - type: GasPipeStraight - components: - - pos: 1.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5118 - type: GasPipeStraight - components: - - pos: 1.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5119 - type: GasPipeStraight - components: - - pos: 1.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5120 - type: GasPipeStraight - components: - - pos: 1.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5121 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -6.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5122 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5123 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5124 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5125 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5126 - type: WallReinforced - components: - - pos: -38.5,20.5 - parent: 0 - type: Transform -- uid: 5127 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5128 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5129 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5130 - type: GasPipeStraight - components: - - pos: -5.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5131 - type: GasPipeStraight - components: - - pos: -5.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5132 - type: GasPipeStraight - components: - - pos: -5.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5133 - type: GasPipeStraight - components: - - pos: -5.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5134 - type: GasPipeStraight - components: - - pos: -5.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5135 - type: GasPipeStraight - components: - - pos: -5.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5136 - type: GasPipeStraight - components: - - pos: -5.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5137 - type: GasPipeStraight - components: - - pos: -5.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5138 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5139 - type: GasPipeStraight - components: - - pos: -5.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5140 - type: GasPipeStraight - components: - - pos: -5.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5141 - type: GasPipeStraight - components: - - pos: -5.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5142 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -2.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5143 - type: GasPipeStraight - components: - - pos: -5.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5144 - type: GasPipeStraight - components: - - pos: -5.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5145 - type: GasPipeStraight - components: - - pos: -5.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5146 - type: GasPipeStraight - components: - - pos: -5.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5147 - type: GasPipeStraight - components: - - pos: -5.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5148 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5149 - type: GasPipeStraight - components: - - pos: -5.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5150 - type: GasPipeStraight - components: - - pos: -5.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5151 - type: GasPipeStraight - components: - - pos: 0.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5152 - type: GasPipeStraight - components: - - pos: 0.5,-32.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5153 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5154 - type: GasPipeStraight - components: - - pos: 0.5,-30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5155 - type: GasPipeStraight - components: - - pos: 0.5,-29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5156 - type: GasPipeStraight - components: - - pos: 0.5,-28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5157 - type: GasPipeStraight - components: - - pos: 0.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5158 - type: GasPipeStraight - components: - - pos: 0.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5159 - type: GasPipeStraight - components: - - pos: 0.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5160 - type: GasPipeStraight - components: - - pos: 0.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5161 - type: GasPipeStraight - components: - - pos: 0.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5162 - type: GasPipeStraight - components: - - pos: 0.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5163 - type: GasPipeTJunction - components: - - pos: 10.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5164 - type: GasPipeStraight - components: - - pos: 0.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5165 - type: GasPipeStraight - components: - - pos: 0.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5166 - type: GasPipeStraight - components: - - pos: 0.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5167 - type: GasPipeStraight - components: - - pos: 0.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5168 - type: GasPipeStraight - components: - - pos: 0.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5169 - type: GasPipeStraight - components: - - pos: 0.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5170 - type: GasPipeStraight - components: - - pos: 0.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5171 - type: GasPipeStraight - components: - - pos: 0.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5172 - type: GasPipeStraight - components: - - pos: 0.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5173 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5174 - type: AirlockCommandLocked - components: - - pos: -24.5,23.5 - parent: 0 - type: Transform -- uid: 5175 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5176 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5177 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5178 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5179 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -5.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5180 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5181 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5182 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5183 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5184 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5185 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5186 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5187 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5188 - type: GasPipeTJunction - components: - - pos: -11.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5189 - type: GasPipeFourway - components: - - pos: -10.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5190 - type: GasPipeStraight - components: - - pos: -10.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5191 - type: GasPipeStraight - components: - - pos: -10.5,-37.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5192 - type: GasPipeStraight - components: - - pos: -10.5,-38.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5193 - type: GasPipeStraight - components: - - pos: -10.5,-39.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5194 - type: GasPipeStraight - components: - - pos: -10.5,-40.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5195 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5196 - type: GasPipeStraight - components: - - pos: -10.5,-42.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5197 - type: GasPipeStraight - components: - - pos: -10.5,-43.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5198 - type: GasPipeStraight - components: - - pos: -10.5,-44.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5199 - type: GasPipeStraight - components: - - pos: -10.5,-45.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5200 - type: GasPipeStraight - components: - - pos: -10.5,-46.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5201 - type: GasPipeStraight - components: - - pos: -10.5,-47.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5202 - type: GasPipeStraight - components: - - pos: -10.5,-48.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5203 - type: GasPipeStraight - components: - - pos: -10.5,-49.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5204 - type: GasPipeStraight - components: - - pos: -11.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5205 - type: GasPipeStraight - components: - - pos: -11.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5206 - type: GasPipeStraight - components: - - pos: -11.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5207 - type: GasPipeStraight - components: - - pos: -11.5,-38.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5208 - type: GasPipeStraight - components: - - pos: -11.5,-39.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5209 - type: GasPipeStraight - components: - - pos: -11.5,-40.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5210 - type: GasPipeStraight - components: - - pos: -11.5,-41.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5211 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5212 - type: GasPipeStraight - components: - - pos: -11.5,-43.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5213 - type: GasPipeStraight - components: - - pos: -11.5,-44.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5214 - type: GasPipeStraight - components: - - pos: -11.5,-45.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5215 - type: GasPipeStraight - components: - - pos: -11.5,-46.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5216 - type: GasPipeStraight - components: - - pos: -11.5,-47.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5217 - type: GasPipeStraight - components: - - pos: -11.5,-48.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5218 - type: GasPipeStraight - components: - - pos: -11.5,-49.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5219 - type: GasPipeStraight - components: - - pos: -11.5,-50.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5220 - type: GasPipeStraight - components: - - pos: -10.5,-50.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5221 - type: GasPipeStraight - components: - - pos: -10.5,-51.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5222 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -10.5,-52.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5223 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -11.5,-51.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5224 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-42.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5225 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-41.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5226 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 0 - type: Transform -- uid: 5227 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -1.5,3.5 - parent: 0 - type: Transform -- uid: 5228 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 0 - type: Transform -- uid: 5229 - type: CableApcExtension - components: - - pos: -12.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5230 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -3.5,2.5 - parent: 0 - type: Transform -- uid: 5231 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 0 - type: Transform -- uid: 5232 - type: CableApcExtension - components: - - pos: -11.5,-50.5 - parent: 0 - type: Transform -- uid: 5233 - type: CableApcExtension - components: - - pos: -10.5,-50.5 - parent: 0 - type: Transform -- uid: 5234 - type: CableApcExtension - components: - - pos: -9.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5235 - type: CableApcExtension - components: - - pos: -8.5,-50.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5236 - type: CableApcExtension - components: - - pos: -8.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5237 - type: CableApcExtension - components: - - pos: -9.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5238 - type: CableApcExtension - components: - - pos: -10.5,-43.5 - parent: 0 - type: Transform -- uid: 5239 - type: CableApcExtension - components: - - pos: -11.5,-43.5 - parent: 0 - type: Transform -- uid: 5240 - type: CableApcExtension - components: - - pos: -12.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5241 - type: CableApcExtension - components: - - pos: -13.5,-43.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5242 - type: CableApcExtension - components: - - pos: -11.5,-53.5 - parent: 0 - type: Transform -- uid: 5243 - type: CableApcExtension - components: - - pos: -11.5,-52.5 - parent: 0 - type: Transform -- uid: 5244 - type: CableApcExtension - components: - - pos: -11.5,-51.5 - parent: 0 - type: Transform -- uid: 5245 - type: CableApcExtension - components: - - pos: -11.5,-49.5 - parent: 0 - type: Transform -- uid: 5246 - type: CableApcExtension - components: - - pos: -11.5,-48.5 - parent: 0 - type: Transform -- uid: 5247 - type: CableApcExtension - components: - - pos: -11.5,-47.5 - parent: 0 - type: Transform -- uid: 5248 - type: CableApcExtension - components: - - pos: -11.5,-46.5 - parent: 0 - type: Transform -- uid: 5249 - type: CableApcExtension - components: - - pos: -11.5,-45.5 - parent: 0 - type: Transform -- uid: 5250 - type: CableApcExtension - components: - - pos: -11.5,-44.5 - parent: 0 - type: Transform -- uid: 5251 - type: CableApcExtension - components: - - pos: -11.5,-42.5 - parent: 0 - type: Transform -- uid: 5252 - type: CableApcExtension - components: - - pos: -11.5,-41.5 - parent: 0 - type: Transform -- uid: 5253 - type: CableApcExtension - components: - - pos: -11.5,-40.5 - parent: 0 - type: Transform -- uid: 5254 - type: CableApcExtension - components: - - pos: -11.5,-39.5 - parent: 0 - type: Transform -- uid: 5255 - type: CableApcExtension - components: - - pos: -11.5,-38.5 - parent: 0 - type: Transform -- uid: 5256 - type: CableApcExtension - components: - - pos: -11.5,-37.5 - parent: 0 - type: Transform -- uid: 5257 - type: CableApcExtension - components: - - pos: -11.5,-36.5 - parent: 0 - type: Transform -- uid: 5258 - type: CableApcExtension - components: - - pos: -11.5,-35.5 - parent: 0 - type: Transform -- uid: 5259 - type: CableApcExtension - components: - - pos: -11.5,-34.5 - parent: 0 - type: Transform -- uid: 5260 - type: CableApcExtension - components: - - pos: -10.5,-34.5 - parent: 0 - type: Transform -- uid: 5261 - type: CableApcExtension - components: - - pos: -9.5,-34.5 - parent: 0 - type: Transform -- uid: 5262 - type: CableApcExtension - components: - - pos: -8.5,-34.5 - parent: 0 - type: Transform -- uid: 5263 - type: CableApcExtension - components: - - pos: -7.5,-34.5 - parent: 0 - type: Transform -- uid: 5264 - type: CableApcExtension - components: - - pos: -6.5,-34.5 - parent: 0 - type: Transform -- uid: 5265 - type: CableApcExtension - components: - - pos: -5.5,-34.5 - parent: 0 - type: Transform -- uid: 5266 - type: CableApcExtension - components: - - pos: -4.5,-34.5 - parent: 0 - type: Transform -- uid: 5267 - type: CableApcExtension - components: - - pos: -3.5,-34.5 - parent: 0 - type: Transform -- uid: 5268 - type: CableApcExtension - components: - - pos: -2.5,-34.5 - parent: 0 - type: Transform -- uid: 5269 - type: CableApcExtension - components: - - pos: -1.5,-34.5 - parent: 0 - type: Transform -- uid: 5270 - type: CableApcExtension - components: - - pos: -0.5,-34.5 - parent: 0 - type: Transform -- uid: 5271 - type: CableApcExtension - components: - - pos: 0.5,-34.5 - parent: 0 - type: Transform -- uid: 5272 - type: CableApcExtension - components: - - pos: -8.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5273 - type: APCBasic - components: - - pos: -8.5,-33.5 - parent: 0 - type: Transform -- uid: 5274 - type: AirlockGlass - components: - - pos: -6.5,-33.5 - parent: 0 - type: Transform -- uid: 5275 - type: AirlockGlass - components: - - pos: -5.5,-33.5 - parent: 0 - type: Transform -- uid: 5276 - type: AirlockGlass - components: - - pos: 1.5,-33.5 - parent: 0 - type: Transform -- uid: 5277 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: -7.5,-33.5 - parent: 0 - type: Transform -- uid: 5278 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: 2.5,-33.5 - parent: 0 - type: Transform -- uid: 5279 - type: SignDirectionalEng - components: - - rot: 3.141592653589793 rad - pos: -7.504691,-33.300663 - parent: 0 - type: Transform -- uid: 5280 - type: SignDirectionalMed - components: - - rot: 3.141592653589793 rad - pos: -7.4988046,-33.706913 - parent: 0 - type: Transform -- uid: 5281 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 2.5034294,-33.300663 - parent: 0 - type: Transform -- uid: 5282 - type: SignDirectionalSci - components: - - rot: 3.141592653589793 rad - pos: 2.5034294,-33.706913 - parent: 0 - type: Transform -- uid: 5283 - type: Poweredlight - components: - - pos: -4.5,-34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5284 - type: Poweredlight - components: - - pos: -0.5,-34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5285 - type: WallReinforced - components: - - pos: -4.5,-24.5 - parent: 0 - type: Transform -- uid: 5286 - type: WallReinforced - components: - - pos: -4.5,-23.5 - parent: 0 - type: Transform -- uid: 5287 - type: WallReinforced - components: - - pos: -3.5,-23.5 - parent: 0 - type: Transform -- uid: 5288 - type: WallReinforced - components: - - pos: -1.5,-23.5 - parent: 0 - type: Transform -- uid: 5289 - type: WallReinforced - components: - - pos: -0.5,-23.5 - parent: 0 - type: Transform -- uid: 5290 - type: WallReinforced - components: - - pos: -0.5,-24.5 - parent: 0 - type: Transform -- uid: 5291 - type: WallReinforced - components: - - pos: -0.5,-25.5 - parent: 0 - type: Transform -- uid: 5292 - type: WallReinforced - components: - - pos: -0.5,-26.5 - parent: 0 - type: Transform -- uid: 5293 - type: WallReinforced - components: - - pos: -3.5,-30.5 - parent: 0 - type: Transform -- uid: 5294 - type: WallReinforced - components: - - pos: -4.5,-30.5 - parent: 0 - type: Transform -- uid: 5295 - type: WallReinforced - components: - - pos: -4.5,-29.5 - parent: 0 - type: Transform -- uid: 5296 - type: WallReinforced - components: - - pos: -1.5,-30.5 - parent: 0 - type: Transform -- uid: 5297 - type: WallReinforced - components: - - pos: -0.5,-30.5 - parent: 0 - type: Transform -- uid: 5298 - type: WallReinforced - components: - - pos: -0.5,-29.5 - parent: 0 - type: Transform -- uid: 5299 - type: WallReinforced - components: - - pos: -0.5,-28.5 - parent: 0 - type: Transform -- uid: 5300 - type: ReinforcedWindow - components: - - pos: -4.5,-28.5 - parent: 0 - type: Transform -- uid: 5301 - type: ReinforcedWindow - components: - - pos: -0.5,-27.5 - parent: 0 - type: Transform -- uid: 5302 - type: ReinforcedWindow - components: - - pos: -4.5,-26.5 - parent: 0 - type: Transform -- uid: 5303 - type: ReinforcedWindow - components: - - pos: -2.5,-23.5 - parent: 0 - type: Transform -- uid: 5304 - type: AirlockSecurityGlassLocked - components: - - pos: -2.5,-30.5 - parent: 0 - type: Transform -- uid: 5305 - type: AirlockSecurityGlassLocked - components: - - pos: -4.5,-25.5 - parent: 0 - type: Transform -- uid: 5306 - type: TableReinforced - components: - - pos: -4.5,-27.5 - parent: 0 - type: Transform -- uid: 5307 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-27.5 - parent: 0 - type: Transform -- uid: 5308 - type: FirelockGlass - components: - - pos: -4.5,-27.5 - parent: 0 - type: Transform -- uid: 5309 - type: Grille - components: - - pos: -4.5,-26.5 - parent: 0 - type: Transform -- uid: 5310 - type: Grille - components: - - pos: -2.5,-23.5 - parent: 0 - type: Transform -- uid: 5311 - type: Grille - components: - - pos: -0.5,-27.5 - parent: 0 - type: Transform -- uid: 5312 - type: WallReinforced - components: - - pos: 14.5,-13.5 - parent: 0 - type: Transform -- uid: 5313 - type: ReinforcedWindow - components: - - pos: 21.5,-14.5 - parent: 0 - type: Transform -- uid: 5314 - type: WallReinforced - components: - - pos: 21.5,-13.5 - parent: 0 - type: Transform -- uid: 5315 - type: ReinforcedWindow - components: - - pos: 18.5,-10.5 - parent: 0 - type: Transform -- uid: 5316 - type: WallReinforced - components: - - pos: 16.5,-13.5 - parent: 0 - type: Transform -- uid: 5317 - type: ReinforcedWindow - components: - - pos: 21.5,-15.5 - parent: 0 - type: Transform -- uid: 5318 - type: ReinforcedWindow - components: - - pos: 21.5,-16.5 - parent: 0 - type: Transform -- uid: 5319 - type: ReinforcedWindow - components: - - pos: 21.5,-17.5 - parent: 0 - type: Transform -- uid: 5320 - type: ReinforcedWindow - components: - - pos: 21.5,-18.5 - parent: 0 - type: Transform -- uid: 5321 - type: ReinforcedWindow - components: - - pos: 15.5,-13.5 - parent: 0 - type: Transform -- uid: 5322 - type: ReinforcedWindow - components: - - pos: 17.5,-10.5 - parent: 0 - type: Transform -- uid: 5323 - type: ReinforcedWindow - components: - - pos: 16.5,-12.5 - parent: 0 - type: Transform -- uid: 5324 - type: ReinforcedWindow - components: - - pos: 16.5,-11.5 - parent: 0 - type: Transform -- uid: 5325 - type: ReinforcedWindow - components: - - pos: 16.5,-10.5 - parent: 0 - type: Transform -- uid: 5326 - type: ReinforcedWindow - components: - - pos: 19.5,-10.5 - parent: 0 - type: Transform -- uid: 5327 - type: ReinforcedWindow - components: - - pos: 20.5,-10.5 - parent: 0 - type: Transform -- uid: 5328 - type: ReinforcedWindow - components: - - pos: 20.5,-11.5 - parent: 0 - type: Transform -- uid: 5329 - type: ReinforcedWindow - components: - - pos: 20.5,-12.5 - parent: 0 - type: Transform -- uid: 5330 - type: WallReinforced - components: - - pos: 20.5,-13.5 - parent: 0 - type: Transform -- uid: 5331 - type: WallReinforced - components: - - pos: 21.5,-19.5 - parent: 0 - type: Transform -- uid: 5332 - type: WallReinforced - components: - - pos: 22.5,-19.5 - parent: 0 - type: Transform -- uid: 5333 - type: WallSolid - components: - - pos: 17.5,-13.5 - parent: 0 - type: Transform -- uid: 5334 - type: WallSolid - components: - - pos: 17.5,-14.5 - parent: 0 - type: Transform -- uid: 5335 - type: WallSolid - components: - - pos: 18.5,-13.5 - parent: 0 - type: Transform -- uid: 5336 - type: WallReinforced - components: - - pos: 20.5,-19.5 - parent: 0 - type: Transform -- uid: 5337 - type: WallReinforced - components: - - pos: 19.5,-19.5 - parent: 0 - type: Transform -- uid: 5338 - type: WallSolid - components: - - pos: 18.5,-19.5 - parent: 0 - type: Transform -- uid: 5339 - type: WallSolid - components: - - pos: 17.5,-19.5 - parent: 0 - type: Transform -- uid: 5340 - type: WallSolid - components: - - pos: 17.5,-18.5 - parent: 0 - type: Transform -- uid: 5341 - type: WallSolid - components: - - pos: 17.5,-16.5 - parent: 0 - type: Transform -- uid: 5342 - type: WallSolid - components: - - pos: 17.5,-15.5 - parent: 0 - type: Transform -- uid: 5343 - type: Grille - components: - - pos: 15.5,-13.5 - parent: 0 - type: Transform -- uid: 5344 - type: Grille - components: - - pos: 16.5,-12.5 - parent: 0 - type: Transform -- uid: 5345 - type: Grille - components: - - pos: 16.5,-11.5 - parent: 0 - type: Transform -- uid: 5346 - type: Grille - components: - - pos: 16.5,-10.5 - parent: 0 - type: Transform -- uid: 5347 - type: Grille - components: - - pos: 17.5,-10.5 - parent: 0 - type: Transform -- uid: 5348 - type: Grille - components: - - pos: 18.5,-10.5 - parent: 0 - type: Transform -- uid: 5349 - type: Grille - components: - - pos: 19.5,-10.5 - parent: 0 - type: Transform -- uid: 5350 - type: Grille - components: - - pos: 20.5,-10.5 - parent: 0 - type: Transform -- uid: 5351 - type: Grille - components: - - pos: 20.5,-11.5 - parent: 0 - type: Transform -- uid: 5352 - type: Grille - components: - - pos: 20.5,-12.5 - parent: 0 - type: Transform -- uid: 5353 - type: Grille - components: - - pos: 21.5,-18.5 - parent: 0 - type: Transform -- uid: 5354 - type: Grille - components: - - pos: 21.5,-17.5 - parent: 0 - type: Transform -- uid: 5355 - type: Grille - components: - - pos: 21.5,-16.5 - parent: 0 - type: Transform -- uid: 5356 - type: Grille - components: - - pos: 21.5,-15.5 - parent: 0 - type: Transform -- uid: 5357 - type: Grille - components: - - pos: 21.5,-14.5 - parent: 0 - type: Transform -- uid: 5358 - type: AirlockSecurityLocked - components: - - pos: 17.5,-17.5 - parent: 0 - type: Transform -- uid: 5359 - type: AirlockSecurityLocked - components: - - pos: 19.5,-13.5 - parent: 0 - type: Transform -- uid: 5360 - type: PosterLegitCohibaRobustoAd - components: - - pos: 17.5,-14.5 - parent: 0 - type: Transform -- uid: 5361 - type: VendingMachineDetDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,-14.5 - parent: 0 - type: Transform -- uid: 5362 - type: LockerDetectiveFilled - components: - - pos: 18.5,-11.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 5363 - type: Dresser - components: - - pos: 19.5,-11.5 - parent: 0 - type: Transform -- uid: 5365 - type: TableWood - components: - - pos: 17.5,-11.5 - parent: 0 - type: Transform -- uid: 5366 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 0 - type: Transform -- uid: 5367 - type: TableWood - components: - - pos: 18.5,-15.5 - parent: 0 - type: Transform -- uid: 5368 - type: TableWood - components: - - pos: 18.5,-16.5 - parent: 0 - type: Transform -- uid: 5369 - type: TableWood - components: - - pos: 19.5,-16.5 - parent: 0 - type: Transform -- uid: 5370 - type: ComputerTelevision - components: - - pos: 18.5,-14.5 - parent: 0 - type: Transform -- uid: 5371 - type: ChairOfficeDark - components: - - pos: 19.5,-15.5 - parent: 0 - type: Transform -- uid: 5372 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: 18.5,-18.5 - parent: 0 - type: Transform -- uid: 5373 - type: TableWood - components: - - pos: 19.5,-18.5 - parent: 0 - type: Transform -- uid: 5374 - type: Bookshelf - components: - - pos: 20.5,-18.5 - parent: 0 - type: Transform -- uid: 5375 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 19.5,-17.5 - parent: 0 - type: Transform -- uid: 5376 - type: Lamp - components: - - pos: 18.64816,-16.251589 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 5377 - type: Carpet - components: - - pos: 19.5,-17.5 - parent: 0 - type: Transform -- uid: 5378 - type: Carpet - components: - - pos: 19.5,-16.5 - parent: 0 - type: Transform -- uid: 5379 - type: Carpet - components: - - pos: 20.5,-16.5 - parent: 0 - type: Transform -- uid: 5380 - type: Carpet - components: - - pos: 20.5,-17.5 - parent: 0 - type: Transform -- uid: 5381 - type: Carpet - components: - - pos: 19.5,-15.5 - parent: 0 - type: Transform -- uid: 5382 - type: Carpet - components: - - pos: 20.5,-15.5 - parent: 0 - type: Transform -- uid: 5383 - type: ClothingEyesGlassesSunglasses - components: - - pos: 19.570036,-18.407839 - parent: 0 - type: Transform -- uid: 5384 - type: BriefcaseBrownFilled - components: - - pos: 19.508135,-18.292694 - parent: 0 - type: Transform -- uid: 5385 - type: Cigar - components: - - pos: 18.601286,-15.579714 - parent: 0 - type: Transform -- uid: 5386 - type: Cigar - components: - - pos: 18.601286,-15.439089 - parent: 0 - type: Transform -- uid: 5387 - type: BookDetective - components: - - pos: 17.568647,-11.417019 - parent: 0 - type: Transform -- uid: 5388 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5389 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5390 - type: WallSolid - components: - - pos: 13.5,-13.5 - parent: 0 - type: Transform -- uid: 5391 - type: AirlockMaintLocked - components: - - pos: 18.5,-22.5 - parent: 0 - type: Transform -- uid: 5392 - type: AirlockMaintLocked - components: - - pos: 12.5,-13.5 - parent: 0 - type: Transform -- uid: 5393 - type: ReinforcedWindow - components: - - pos: 20.5,-25.5 - parent: 0 - type: Transform -- uid: 5394 - type: AirlockMaintLocked - components: - - pos: 16.5,-19.5 - parent: 0 - type: Transform -- uid: 5395 - type: WallReinforced - components: - - pos: 15.5,-22.5 - parent: 0 - type: Transform -- uid: 5396 - type: AirlockScienceLocked - components: - - pos: 15.5,-20.5 - parent: 0 - type: Transform -- uid: 5397 - type: WallReinforced - components: - - pos: 16.5,-22.5 - parent: 0 - type: Transform -- uid: 5398 - type: WallReinforced - components: - - pos: 15.5,-18.5 - parent: 0 - type: Transform -- uid: 5399 - type: AirlockMaintLocked - components: - - pos: 18.5,-27.5 - parent: 0 - type: Transform -- uid: 5400 - type: WallReinforced - components: - - pos: 15.5,-19.5 - parent: 0 - type: Transform -- uid: 5401 - type: WallReinforced - components: - - pos: 15.5,-17.5 - parent: 0 - type: Transform -- uid: 5402 - type: WallReinforced - components: - - pos: 15.5,-16.5 - parent: 0 - type: Transform -- uid: 5403 - type: WallReinforced - components: - - pos: 14.5,-16.5 - parent: 0 - type: Transform -- uid: 5404 - type: WallReinforced - components: - - pos: 11.5,-16.5 - parent: 0 - type: Transform -- uid: 5405 - type: WallReinforced - components: - - pos: 13.5,-16.5 - parent: 0 - type: Transform -- uid: 5406 - type: WallReinforced - components: - - pos: 12.5,-16.5 - parent: 0 - type: Transform -- uid: 5407 - type: WallReinforced - components: - - pos: 11.5,-13.5 - parent: 0 - type: Transform -- uid: 5408 - type: WallReinforced - components: - - pos: 11.5,-14.5 - parent: 0 - type: Transform -- uid: 5409 - type: WallReinforced - components: - - pos: 2.5,-13.5 - parent: 0 - type: Transform -- uid: 5410 - type: WallReinforced - components: - - pos: 6.5,-13.5 - parent: 0 - type: Transform -- uid: 5411 - type: WallReinforced - components: - - pos: 8.5,-13.5 - parent: 0 - type: Transform -- uid: 5412 - type: WallReinforced - components: - - pos: 2.5,-17.5 - parent: 0 - type: Transform -- uid: 5413 - type: WallReinforced - components: - - pos: 2.5,-19.5 - parent: 0 - type: Transform -- uid: 5414 - type: WallReinforced - components: - - pos: 2.5,-22.5 - parent: 0 - type: Transform -- uid: 5415 - type: ReinforcedWindow - components: - - pos: 2.5,-18.5 - parent: 0 - type: Transform -- uid: 5416 - type: ReinforcedWindow - components: - - pos: 2.5,-16.5 - parent: 0 - type: Transform -- uid: 5417 - type: ReinforcedWindow - components: - - pos: 2.5,-14.5 - parent: 0 - type: Transform -- uid: 5418 - type: ReinforcedWindow - components: - - pos: 3.5,-13.5 - parent: 0 - type: Transform -- uid: 5419 - type: ReinforcedWindow - components: - - pos: 5.5,-13.5 - parent: 0 - type: Transform -- uid: 5420 - type: ReinforcedWindow - components: - - pos: 7.5,-13.5 - parent: 0 - type: Transform -- uid: 5421 - type: ReinforcedWindow - components: - - pos: 3.5,-19.5 - parent: 0 - type: Transform -- uid: 5422 - type: ReinforcedWindow - components: - - pos: 5.5,-19.5 - parent: 0 - type: Transform -- uid: 5423 - type: Grille - components: - - pos: 8.5,-15.5 - parent: 0 - type: Transform -- uid: 5424 - type: Grille - components: - - pos: 8.5,-17.5 - parent: 0 - type: Transform -- uid: 5425 - type: WallSolid - components: - - pos: 6.5,-19.5 - parent: 0 - type: Transform -- uid: 5426 - type: WallSolid - components: - - pos: 7.5,-19.5 - parent: 0 - type: Transform -- uid: 5427 - type: WallSolid - components: - - pos: 8.5,-19.5 - parent: 0 - type: Transform -- uid: 5428 - type: ReinforcedWindow - components: - - pos: 8.5,-15.5 - parent: 0 - type: Transform -- uid: 5429 - type: ReinforcedWindow - components: - - pos: 8.5,-17.5 - parent: 0 - type: Transform -- uid: 5430 - type: WallSolid - components: - - pos: 8.5,-14.5 - parent: 0 - type: Transform -- uid: 5431 - type: TableReinforced - components: - - pos: 2.5,-23.5 - parent: 0 - type: Transform -- uid: 5432 - type: WallReinforced - components: - - pos: 2.5,-24.5 - parent: 0 - type: Transform -- uid: 5433 - type: WallReinforced - components: - - pos: 2.5,-28.5 - parent: 0 - type: Transform -- uid: 5434 - type: WallReinforced - components: - - pos: 2.5,-29.5 - parent: 0 - type: Transform -- uid: 5435 - type: WallReinforced - components: - - pos: 3.5,-29.5 - parent: 0 - type: Transform -- uid: 5436 - type: WallReinforced - components: - - pos: 7.5,-29.5 - parent: 0 - type: Transform -- uid: 5437 - type: WallReinforced - components: - - pos: 6.5,-29.5 - parent: 0 - type: Transform -- uid: 5438 - type: WallReinforced - components: - - pos: 5.5,-29.5 - parent: 0 - type: Transform -- uid: 5439 - type: WallReinforced - components: - - pos: 4.5,-29.5 - parent: 0 - type: Transform -- uid: 5440 - type: WallReinforced - components: - - pos: 11.5,-29.5 - parent: 0 - type: Transform -- uid: 5441 - type: WallReinforced - components: - - pos: 10.5,-29.5 - parent: 0 - type: Transform -- uid: 5442 - type: WallReinforced - components: - - pos: 13.5,-29.5 - parent: 0 - type: Transform -- uid: 5443 - type: WallReinforced - components: - - pos: 14.5,-29.5 - parent: 0 - type: Transform -- uid: 5444 - type: WallReinforced - components: - - pos: 15.5,-29.5 - parent: 0 - type: Transform -- uid: 5445 - type: WallReinforced - components: - - pos: 16.5,-29.5 - parent: 0 - type: Transform -- uid: 5446 - type: WallReinforced - components: - - pos: 17.5,-29.5 - parent: 0 - type: Transform -- uid: 5447 - type: WallReinforced - components: - - pos: 17.5,-28.5 - parent: 0 - type: Transform -- uid: 5448 - type: WallReinforced - components: - - pos: 17.5,-27.5 - parent: 0 - type: Transform -- uid: 5449 - type: WallReinforced - components: - - pos: 17.5,-26.5 - parent: 0 - type: Transform -- uid: 5450 - type: WallReinforced - components: - - pos: 17.5,-25.5 - parent: 0 - type: Transform -- uid: 5451 - type: WallReinforced - components: - - pos: 20.5,-26.5 - parent: 0 - type: Transform -- uid: 5452 - type: WallReinforced - components: - - pos: 17.5,-23.5 - parent: 0 - type: Transform -- uid: 5453 - type: WallReinforced - components: - - pos: 14.5,-22.5 - parent: 0 - type: Transform -- uid: 5454 - type: WallReinforced - components: - - pos: 13.5,-22.5 - parent: 0 - type: Transform -- uid: 5455 - type: WallReinforced - components: - - pos: 12.5,-22.5 - parent: 0 - type: Transform -- uid: 5456 - type: WallReinforced - components: - - pos: 17.5,-22.5 - parent: 0 - type: Transform -- uid: 5457 - type: WallSolid - components: - - pos: 7.5,-27.5 - parent: 0 - type: Transform -- uid: 5458 - type: ReinforcedWindow - components: - - pos: 10.5,-28.5 - parent: 0 - type: Transform -- uid: 5459 - type: ReinforcedWindow - components: - - pos: 10.5,-26.5 - parent: 0 - type: Transform -- uid: 5460 - type: ReinforcedWindow - components: - - pos: 10.5,-24.5 - parent: 0 - type: Transform -- uid: 5461 - type: ReinforcedWindow - components: - - pos: 7.5,-28.5 - parent: 0 - type: Transform -- uid: 5462 - type: ReinforcedWindow - components: - - pos: 7.5,-26.5 - parent: 0 - type: Transform -- uid: 5463 - type: ReinforcedWindow - components: - - pos: 7.5,-25.5 - parent: 0 - type: Transform -- uid: 5464 - type: ReinforcedWindow - components: - - pos: 10.5,-23.5 - parent: 0 - type: Transform -- uid: 5465 - type: WallSolid - components: - - pos: 7.5,-22.5 - parent: 0 - type: Transform -- uid: 5466 - type: WallSolid - components: - - pos: 10.5,-22.5 - parent: 0 - type: Transform -- uid: 5467 - type: WallSolid - components: - - pos: 3.5,-22.5 - parent: 0 - type: Transform -- uid: 5468 - type: WallSolid - components: - - pos: 10.5,-27.5 - parent: 0 - type: Transform -- uid: 5469 - type: WallReinforced - components: - - pos: 11.5,-17.5 - parent: 0 - type: Transform -- uid: 5470 - type: WallReinforced - components: - - pos: 11.5,-18.5 - parent: 0 - type: Transform -- uid: 5471 - type: WallReinforced - components: - - pos: 11.5,-19.5 - parent: 0 - type: Transform -- uid: 5472 - type: ReinforcedWindow - components: - - pos: 6.5,-22.5 - parent: 0 - type: Transform -- uid: 5473 - type: WallReinforced - components: - - pos: 11.5,-22.5 - parent: 0 - type: Transform -- uid: 5474 - type: ReinforcedWindow - components: - - pos: 7.5,-23.5 - parent: 0 - type: Transform -- uid: 5475 - type: ReinforcedWindow - components: - - pos: 4.5,-22.5 - parent: 0 - type: Transform -- uid: 5476 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5477 - type: ReinforcedWindow - components: - - pos: 14.5,-19.5 - parent: 0 - type: Transform -- uid: 5478 - type: ReinforcedWindow - components: - - pos: 20.5,-23.5 - parent: 0 - type: Transform -- uid: 5479 - type: WallReinforced - components: - - pos: 19.5,-27.5 - parent: 0 - type: Transform -- uid: 5480 - type: WallReinforced - components: - - pos: 20.5,-27.5 - parent: 0 - type: Transform -- uid: 5481 - type: ReinforcedWindow - components: - - pos: 19.5,-30.5 - parent: 0 - type: Transform -- uid: 5482 - type: ReinforcedWindow - components: - - pos: 19.5,-29.5 - parent: 0 - type: Transform -- uid: 5483 - type: ReinforcedWindow - components: - - pos: 19.5,-28.5 - parent: 0 - type: Transform -- uid: 5484 - type: AirlockScienceLocked - components: - - pos: 15.5,-21.5 - parent: 0 - type: Transform -- uid: 5485 - type: AirlockScienceLocked - components: - - pos: 19.5,-21.5 - parent: 0 - type: Transform -- uid: 5486 - type: AirlockScienceLocked - components: - - pos: 19.5,-20.5 - parent: 0 - type: Transform -- uid: 5487 - type: AirlockScienceLocked - components: - - pos: 20.5,-24.5 - parent: 0 - type: Transform -- uid: 5488 - type: AirlockScienceGlassLocked - components: - - pos: 17.5,-24.5 - parent: 0 - type: Transform -- uid: 5489 - type: AirlockScienceGlassLocked - components: - - pos: 2.5,-21.5 - parent: 0 - type: Transform -- uid: 5490 - type: AirlockScienceGlassLocked - components: - - pos: 2.5,-20.5 - parent: 0 - type: Transform -- uid: 5491 - type: ReinforcedWindow - components: - - pos: 9.5,-13.5 - parent: 0 - type: Transform -- uid: 5492 - type: AirlockScienceGlassLocked - components: - - pos: 10.5,-13.5 - parent: 0 - type: Transform -- uid: 5493 - type: AirlockScienceGlassLocked - components: - - pos: 4.5,-19.5 - parent: 0 - type: Transform -- uid: 5494 - type: AirlockScienceGlassLocked - components: - - pos: 5.5,-22.5 - parent: 0 - type: Transform -- uid: 5495 - type: AirlockScienceGlassLocked - components: - - pos: 7.5,-24.5 - parent: 0 - type: Transform -- uid: 5496 - type: AirlockScienceGlassLocked - components: - - pos: 10.5,-25.5 - parent: 0 - type: Transform -- uid: 5497 - type: AirlockMaintRnDLocked - components: - - pos: 11.5,-15.5 - parent: 0 - type: Transform -- uid: 5498 - type: AirlockMaintRnDLocked - components: - - pos: 12.5,-29.5 - parent: 0 - type: Transform -- uid: 5499 - type: AirlockMaintRnDLocked - components: - - pos: 8.5,-29.5 - parent: 0 - type: Transform -- uid: 5500 - type: WallReinforced - components: - - pos: 9.5,-29.5 - parent: 0 - type: Transform -- uid: 5501 - type: WallReinforced - components: - - pos: 19.5,-22.5 - parent: 0 - type: Transform -- uid: 5502 - type: WallReinforced - components: - - pos: 20.5,-22.5 - parent: 0 - type: Transform -- uid: 5503 - type: TableReinforced - components: - - pos: 2.5,-15.5 - parent: 0 - type: Transform -- uid: 5504 - type: TableReinforced - components: - - pos: 4.5,-13.5 - parent: 0 - type: Transform -- uid: 5505 - type: WallReinforced - components: - - pos: 23.5,-21.5 - parent: 0 - type: Transform -- uid: 5506 - type: WallReinforced - components: - - pos: 24.5,-21.5 - parent: 0 - type: Transform -- uid: 5507 - type: ShuttersNormalOpen - components: - - pos: 26.5,-21.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5576 - type: SignalReceiver -- uid: 5508 - type: ShuttersNormalOpen - components: - - pos: 27.5,-21.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5576 - type: SignalReceiver -- uid: 5509 - type: ShuttersNormalOpen - components: - - pos: 25.5,-21.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 5576 - type: SignalReceiver -- uid: 5510 - type: WallReinforced - components: - - pos: 28.5,-21.5 - parent: 0 - type: Transform -- uid: 5511 - type: WallReinforced - components: - - pos: 23.5,-19.5 - parent: 0 - type: Transform -- uid: 5512 - type: WallReinforced - components: - - pos: 21.5,-27.5 - parent: 0 - type: Transform -- uid: 5513 - type: VendingMachineSciDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 25.5,-26.5 - parent: 0 - type: Transform -- uid: 5514 - type: SignSpace - components: - - pos: 21.5,-27.5 - parent: 0 - type: Transform -- uid: 5515 - type: WallReinforced - components: - - pos: 24.5,-27.5 - parent: 0 - type: Transform -- uid: 5516 - type: WallReinforced - components: - - pos: 25.5,-27.5 - parent: 0 - type: Transform -- uid: 5517 - type: WallReinforced - components: - - pos: 26.5,-27.5 - parent: 0 - type: Transform -- uid: 5518 - type: WallReinforced - components: - - pos: 26.5,-28.5 - parent: 0 - type: Transform -- uid: 5519 - type: WallReinforced - components: - - pos: 24.5,-28.5 - parent: 0 - type: Transform -- uid: 5520 - type: WallReinforced - components: - - pos: 24.5,-30.5 - parent: 0 - type: Transform -- uid: 5521 - type: WallReinforced - components: - - pos: 26.5,-30.5 - parent: 0 - type: Transform -- uid: 5522 - type: WallReinforced - components: - - pos: 26.5,-31.5 - parent: 0 - type: Transform -- uid: 5523 - type: WallReinforced - components: - - pos: 25.5,-31.5 - parent: 0 - type: Transform -- uid: 5524 - type: WallReinforced - components: - - pos: 24.5,-31.5 - parent: 0 - type: Transform -- uid: 5525 - type: WallReinforced - components: - - pos: 23.5,-31.5 - parent: 0 - type: Transform -- uid: 5526 - type: WallReinforced - components: - - pos: 22.5,-31.5 - parent: 0 - type: Transform -- uid: 5527 - type: WallReinforced - components: - - pos: 21.5,-31.5 - parent: 0 - type: Transform -- uid: 5528 - type: WallReinforced - components: - - pos: 20.5,-31.5 - parent: 0 - type: Transform -- uid: 5529 - type: WallReinforced - components: - - pos: 19.5,-31.5 - parent: 0 - type: Transform -- uid: 5530 - type: WallReinforced - components: - - pos: 29.5,-21.5 - parent: 0 - type: Transform -- uid: 5531 - type: WallReinforced - components: - - pos: 29.5,-20.5 - parent: 0 - type: Transform -- uid: 5532 - type: WallReinforced - components: - - pos: 29.5,-19.5 - parent: 0 - type: Transform -- uid: 5533 - type: ReinforcedWindow - components: - - pos: 23.5,-18.5 - parent: 0 - type: Transform -- uid: 5534 - type: ReinforcedWindow - components: - - pos: 23.5,-17.5 - parent: 0 - type: Transform -- uid: 5535 - type: ReinforcedWindow - components: - - pos: 24.5,-17.5 - parent: 0 - type: Transform -- uid: 5536 - type: ReinforcedWindow - components: - - pos: 24.5,-16.5 - parent: 0 - type: Transform -- uid: 5537 - type: ReinforcedWindow - components: - - pos: 25.5,-16.5 - parent: 0 - type: Transform -- uid: 5538 - type: ReinforcedWindow - components: - - pos: 26.5,-16.5 - parent: 0 - type: Transform -- uid: 5539 - type: ReinforcedWindow - components: - - pos: 27.5,-16.5 - parent: 0 - type: Transform -- uid: 5540 - type: ReinforcedWindow - components: - - pos: 28.5,-16.5 - parent: 0 - type: Transform -- uid: 5541 - type: ReinforcedWindow - components: - - pos: 28.5,-17.5 - parent: 0 - type: Transform -- uid: 5542 - type: ReinforcedWindow - components: - - pos: 29.5,-17.5 - parent: 0 - type: Transform -- uid: 5543 - type: ReinforcedWindow - components: - - pos: 29.5,-18.5 - parent: 0 - type: Transform -- uid: 5544 - type: Grille - components: - - pos: 23.5,-18.5 - parent: 0 - type: Transform -- uid: 5545 - type: Grille - components: - - pos: 23.5,-17.5 - parent: 0 - type: Transform -- uid: 5546 - type: Grille - components: - - pos: 24.5,-17.5 - parent: 0 - type: Transform -- uid: 5547 - type: Grille - components: - - pos: 24.5,-16.5 - parent: 0 - type: Transform -- uid: 5548 - type: Grille - components: - - pos: 26.5,-16.5 - parent: 0 - type: Transform -- uid: 5549 - type: Grille - components: - - pos: 25.5,-16.5 - parent: 0 - type: Transform -- uid: 5550 - type: Grille - components: - - pos: 27.5,-16.5 - parent: 0 - type: Transform -- uid: 5551 - type: Grille - components: - - pos: 28.5,-16.5 - parent: 0 - type: Transform -- uid: 5552 - type: Grille - components: - - pos: 28.5,-17.5 - parent: 0 - type: Transform -- uid: 5553 - type: Grille - components: - - pos: 29.5,-17.5 - parent: 0 - type: Transform -- uid: 5554 - type: Grille - components: - - pos: 29.5,-18.5 - parent: 0 - type: Transform -- uid: 5555 - type: AirlockResearchDirectorGlassLocked - components: - - pos: 23.5,-20.5 - parent: 0 - type: Transform -- uid: 5556 - type: WallReinforced - components: - - pos: 27.5,-31.5 - parent: 0 - type: Transform -- uid: 5557 - type: WallReinforced - components: - - pos: 28.5,-31.5 - parent: 0 - type: Transform -- uid: 5558 - type: WallReinforced - components: - - pos: 29.5,-31.5 - parent: 0 - type: Transform -- uid: 5559 - type: WallReinforced - components: - - pos: 30.5,-31.5 - parent: 0 - type: Transform -- uid: 5560 - type: WallReinforced - components: - - pos: 30.5,-30.5 - parent: 0 - type: Transform -- uid: 5561 - type: WallReinforced - components: - - pos: 30.5,-29.5 - parent: 0 - type: Transform -- uid: 5562 - type: WallSolid - components: - - pos: 30.5,-23.5 - parent: 0 - type: Transform -- uid: 5563 - type: WallSolid - components: - - pos: 30.5,-27.5 - parent: 0 - type: Transform -- uid: 5564 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5565 - type: GasPipeFourway - components: - - pos: 9.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5566 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5567 - type: WallSolid - components: - - pos: 30.5,-28.5 - parent: 0 - type: Transform -- uid: 5568 - type: WallReinforced - components: - - pos: 30.5,-22.5 - parent: 0 - type: Transform -- uid: 5569 - type: WallReinforced - components: - - pos: 30.5,-21.5 - parent: 0 - type: Transform -- uid: 5570 - type: Grille - components: - - pos: 19.5,-30.5 - parent: 0 - type: Transform -- uid: 5571 - type: Grille - components: - - pos: 19.5,-29.5 - parent: 0 - type: Transform -- uid: 5572 - type: Grille - components: - - pos: 19.5,-28.5 - parent: 0 - type: Transform -- uid: 5573 - type: BlastDoor - components: - - pos: 21.5,-30.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6690 - type: SignalReceiver -- uid: 5574 - type: BlastDoor - components: - - pos: 21.5,-29.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6690 - type: SignalReceiver -- uid: 5575 - type: BlastDoor - components: - - pos: 21.5,-28.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6690 - type: SignalReceiver -- uid: 5576 - type: SignalButton - components: - - pos: 23.5,-19.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5509 - - port: Toggle - uid: 5507 - - port: Toggle - uid: 5508 - type: SignalTransmitter -- uid: 5577 - type: Grille - components: - - pos: 27.5,-21.5 - parent: 0 - type: Transform -- uid: 5578 - type: Grille - components: - - pos: 26.5,-21.5 - parent: 0 - type: Transform -- uid: 5579 - type: Grille - components: - - pos: 25.5,-21.5 - parent: 0 - type: Transform -- uid: 5580 - type: ReinforcedWindow - components: - - pos: 27.5,-21.5 - parent: 0 - type: Transform -- uid: 5581 - type: ReinforcedWindow - components: - - pos: 26.5,-21.5 - parent: 0 - type: Transform -- uid: 5582 - type: ReinforcedWindow - components: - - pos: 25.5,-21.5 - parent: 0 - type: Transform -- uid: 5583 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5584 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5585 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5586 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5587 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5588 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5589 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5590 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5591 - type: GasValve - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound - - bodyType: Static - type: Physics -- uid: 5592 - type: GasValve - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound - - bodyType: Static - type: Physics -- uid: 5593 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5594 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-30.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5595 - type: WallReinforced - components: - - pos: -38.5,18.5 - parent: 0 - type: Transform -- uid: 5596 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5597 - type: ReinforcedWindow - components: - - pos: 23.5,-27.5 - parent: 0 - type: Transform -- uid: 5598 - type: AirlockResearchDirectorGlassLocked - components: - - pos: 13.5,-19.5 - parent: 0 - type: Transform -- uid: 5599 - type: FirelockGlass - components: - - pos: 9.5,-22.5 - parent: 0 - type: Transform -- uid: 5600 - type: FirelockGlass - components: - - pos: 8.5,-22.5 - parent: 0 - type: Transform -- uid: 5601 - type: Grille - components: - - pos: 7.5,-26.5 - parent: 0 - type: Transform -- uid: 5602 - type: Grille - components: - - pos: 7.5,-25.5 - parent: 0 - type: Transform -- uid: 5603 - type: Grille - components: - - pos: 7.5,-28.5 - parent: 0 - type: Transform -- uid: 5604 - type: Grille - components: - - pos: 7.5,-23.5 - parent: 0 - type: Transform -- uid: 5605 - type: Grille - components: - - pos: 6.5,-22.5 - parent: 0 - type: Transform -- uid: 5606 - type: Grille - components: - - pos: 4.5,-22.5 - parent: 0 - type: Transform -- uid: 5607 - type: Grille - components: - - pos: 10.5,-28.5 - parent: 0 - type: Transform -- uid: 5608 - type: Grille - components: - - pos: 10.5,-26.5 - parent: 0 - type: Transform -- uid: 5609 - type: Grille - components: - - pos: 10.5,-24.5 - parent: 0 - type: Transform -- uid: 5610 - type: Grille - components: - - pos: 10.5,-23.5 - parent: 0 - type: Transform -- uid: 5611 - type: Grille - components: - - pos: 3.5,-19.5 - parent: 0 - type: Transform -- uid: 5612 - type: Grille - components: - - pos: 5.5,-19.5 - parent: 0 - type: Transform -- uid: 5613 - type: Grille - components: - - pos: 2.5,-18.5 - parent: 0 - type: Transform -- uid: 5614 - type: Grille - components: - - pos: 2.5,-16.5 - parent: 0 - type: Transform -- uid: 5615 - type: Grille - components: - - pos: 2.5,-14.5 - parent: 0 - type: Transform -- uid: 5616 - type: Grille - components: - - pos: 3.5,-13.5 - parent: 0 - type: Transform -- uid: 5617 - type: Grille - components: - - pos: 5.5,-13.5 - parent: 0 - type: Transform -- uid: 5618 - type: Grille - components: - - pos: 7.5,-13.5 - parent: 0 - type: Transform -- uid: 5619 - type: WallSolid - components: - - pos: 8.5,-16.5 - parent: 0 - type: Transform -- uid: 5620 - type: WallSolid - components: - - pos: 8.5,-18.5 - parent: 0 - type: Transform -- uid: 5621 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5622 - type: Grille - components: - - pos: 14.5,-19.5 - parent: 0 - type: Transform -- uid: 5623 - type: Grille - components: - - pos: 20.5,-25.5 - parent: 0 - type: Transform -- uid: 5624 - type: Grille - components: - - pos: 20.5,-23.5 - parent: 0 - type: Transform -- uid: 5625 - type: AsteroidRock - components: - - pos: 22.5,-18.5 - parent: 0 - type: Transform -- uid: 5626 - type: AsteroidRock - components: - - pos: 30.5,-20.5 - parent: 0 - type: Transform -- uid: 5627 - type: AsteroidRock - components: - - pos: 30.5,-19.5 - parent: 0 - type: Transform -- uid: 5628 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5629 - type: GasPipeTJunction - components: - - pos: 6.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5630 - type: GasPipeTJunction - components: - - pos: 5.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5631 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 4.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5632 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5633 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5634 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5635 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5636 - type: GasPipeStraight - components: - - pos: 9.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5637 - type: GasPipeStraight - components: - - pos: 9.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5638 - type: GasPipeStraight - components: - - pos: 9.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5639 - type: GasPipeStraight - components: - - pos: 9.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5640 - type: GasPipeStraight - components: - - pos: 9.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5641 - type: GasPipeStraight - components: - - pos: 9.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5642 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5643 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5644 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 12.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5645 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5646 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5647 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5648 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5649 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5650 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5651 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5652 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5653 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5654 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5655 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5656 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5657 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5658 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5659 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5660 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5661 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5662 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5663 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5664 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5665 - type: GasPipeTJunction - components: - - pos: 8.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5666 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5667 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5668 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5669 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5670 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5671 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5672 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5673 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5674 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5675 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5676 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 10.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5677 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5678 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5679 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5680 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 14.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5681 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5682 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5683 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5684 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5685 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5686 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5687 - type: GasPipeTJunction - components: - - pos: 22.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5688 - type: GasPipeStraight - components: - - pos: 4.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5689 - type: GasPipeStraight - components: - - pos: 4.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5690 - type: GasPipeStraight - components: - - pos: 5.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5691 - type: GasPipeStraight - components: - - pos: 5.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5692 - type: GasPipeStraight - components: - - pos: 5.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5693 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5694 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5695 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5696 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5697 - type: GasVentPump - components: - - pos: 4.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5698 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 5.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5699 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 6.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5700 - type: GasVentScrubber - components: - - pos: 3.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5701 - type: GasPipeStraight - components: - - pos: 3.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5702 - type: GasPipeStraight - components: - - pos: 8.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5703 - type: GasPipeStraight - components: - - pos: 8.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5704 - type: GasPipeStraight - components: - - pos: 8.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5705 - type: GasPipeStraight - components: - - pos: 8.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5706 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5707 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5708 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5709 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5710 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5711 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5712 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5713 - type: GasPipeStraight - components: - - pos: 9.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5714 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 9.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5715 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5716 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5717 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 8.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5718 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5719 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5720 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5721 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5722 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5723 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5724 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5725 - type: GasPipeBend - components: - - pos: 21.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5726 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5727 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5728 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5729 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5730 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5731 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5732 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5733 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5734 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5735 - type: GasVentScrubber - components: - - pos: 27.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5736 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 22.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5737 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 21.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5738 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 27.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5739 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5740 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5741 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5742 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5743 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5744 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5745 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5746 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5747 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5748 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5749 - type: GasPipeStraight - components: - - pos: 21.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5750 - type: GasPipeStraight - components: - - pos: 21.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5751 - type: GasPipeStraight - components: - - pos: 21.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5752 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5753 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5754 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5755 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5756 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5757 - type: GasPipeTJunction - components: - - pos: 27.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5758 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5759 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5760 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5761 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 - parent: 0 - type: Transform -- uid: 5762 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-24.5 - parent: 0 - type: Transform -- uid: 5763 - type: GasVentPump - components: - - pos: 27.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5764 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5765 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 27.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5766 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5767 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-26.5 - parent: 0 - type: Transform -- uid: 5768 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-24.5 - parent: 0 - type: Transform -- uid: 5769 - type: WallReinforced - components: - - pos: 31.5,-29.5 - parent: 0 - type: Transform -- uid: 5770 - type: WallReinforced - components: - - pos: 32.5,-29.5 - parent: 0 - type: Transform -- uid: 5771 - type: AirlockScienceGlassLocked - components: - - pos: 30.5,-25.5 - parent: 0 - type: Transform -- uid: 5772 - type: WallReinforced - components: - - pos: 34.5,-29.5 - parent: 0 - type: Transform -- uid: 5773 - type: WallReinforced - components: - - pos: 35.5,-29.5 - parent: 0 - type: Transform -- uid: 5774 - type: WallReinforced - components: - - pos: 36.5,-29.5 - parent: 0 - type: Transform -- uid: 5775 - type: WallReinforced - components: - - pos: 36.5,-28.5 - parent: 0 - type: Transform -- uid: 5776 - type: WallReinforced - components: - - pos: 36.5,-27.5 - parent: 0 - type: Transform -- uid: 5777 - type: WallReinforced - components: - - pos: 36.5,-26.5 - parent: 0 - type: Transform -- uid: 5778 - type: WallReinforced - components: - - pos: 36.5,-25.5 - parent: 0 - type: Transform -- uid: 5779 - type: WallReinforced - components: - - pos: 36.5,-24.5 - parent: 0 - type: Transform -- uid: 5780 - type: WallReinforced - components: - - pos: 36.5,-23.5 - parent: 0 - type: Transform -- uid: 5781 - type: WallReinforced - components: - - pos: 36.5,-22.5 - parent: 0 - type: Transform -- uid: 5782 - type: ReinforcedWindow - components: - - pos: 32.5,-22.5 - parent: 0 - type: Transform -- uid: 5783 - type: ReinforcedWindow - components: - - pos: 33.5,-22.5 - parent: 0 - type: Transform -- uid: 5784 - type: ReinforcedWindow - components: - - pos: 34.5,-22.5 - parent: 0 - type: Transform -- uid: 5785 - type: WallReinforced - components: - - pos: 31.5,-22.5 - parent: 0 - type: Transform -- uid: 5786 - type: WallReinforced - components: - - pos: 35.5,-22.5 - parent: 0 - type: Transform -- uid: 5787 - type: AirlockMaintRnDLocked - components: - - pos: 33.5,-29.5 - parent: 0 - type: Transform -- uid: 5788 - type: WindoorScienceLocked - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-23.5 - parent: 0 - type: Transform -- uid: 5789 - type: WindoorScienceLocked - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-15.5 - parent: 0 - type: Transform -- uid: 5790 - type: WindoorScienceLocked - components: - - pos: 4.5,-13.5 - parent: 0 - type: Transform -- uid: 5791 - type: FirelockGlass - components: - - pos: 2.5,-15.5 - parent: 0 - type: Transform -- uid: 5792 - type: FirelockGlass - components: - - pos: 4.5,-13.5 - parent: 0 - type: Transform -- uid: 5793 - type: FirelockGlass - components: - - pos: 2.5,-23.5 - parent: 0 - type: Transform -- uid: 5794 - type: BlastDoor - components: - - pos: 2.5,-27.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6218 - type: SignalReceiver -- uid: 5795 - type: BlastDoor - components: - - pos: 2.5,-26.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6218 - type: SignalReceiver -- uid: 5796 - type: BlastDoor - components: - - pos: 2.5,-25.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6218 - type: SignalReceiver -- uid: 5797 - type: AirlockScienceGlassLocked - components: - - pos: 26.5,-29.5 - parent: 0 - type: Transform -- uid: 5798 - type: AirlockScienceGlassLocked - components: - - pos: 24.5,-29.5 - parent: 0 - type: Transform -- uid: 5799 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5800 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5801 - type: GasPassiveGate - components: - - rot: 3.141592653589793 rad - pos: 12.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5802 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-18.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 5803 - type: GasThermoMachineFreezer - components: - - pos: 12.5,-17.5 - parent: 0 - type: Transform -- uid: 5804 - type: GasPipeBend - components: - - pos: 14.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5805 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5806 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-19.5 - parent: 0 - type: Transform -- uid: 5807 - type: ReinforcedWindow - components: - - pos: 12.5,-19.5 - parent: 0 - type: Transform -- uid: 5808 - type: AsteroidRock - components: - - pos: 31.5,-20.5 - parent: 0 - type: Transform -- uid: 5809 - type: AsteroidRock - components: - - pos: 31.5,-21.5 - parent: 0 - type: Transform -- uid: 5810 - type: AsteroidRock - components: - - pos: 35.5,-21.5 - parent: 0 - type: Transform -- uid: 5811 - type: AsteroidRock - components: - - pos: 36.5,-20.5 - parent: 0 - type: Transform -- uid: 5812 - type: AsteroidRock - components: - - pos: 36.5,-21.5 - parent: 0 - type: Transform -- uid: 5813 - type: AsteroidRock - components: - - pos: 37.5,-22.5 - parent: 0 - type: Transform -- uid: 5814 - type: AsteroidRock - components: - - pos: 37.5,-23.5 - parent: 0 - type: Transform -- uid: 5815 - type: AsteroidRock - components: - - pos: 38.5,-23.5 - parent: 0 - type: Transform -- uid: 5816 - type: AsteroidRock - components: - - pos: 38.5,-24.5 - parent: 0 - type: Transform -- uid: 5817 - type: AsteroidRock - components: - - pos: 39.5,-24.5 - parent: 0 - type: Transform -- uid: 5818 - type: AsteroidRock - components: - - pos: 37.5,-24.5 - parent: 0 - type: Transform -- uid: 5819 - type: AsteroidRock - components: - - pos: 37.5,-29.5 - parent: 0 - type: Transform -- uid: 5820 - type: AsteroidRock - components: - - pos: 37.5,-28.5 - parent: 0 - type: Transform -- uid: 5821 - type: AsteroidRock - components: - - pos: 37.5,-27.5 - parent: 0 - type: Transform -- uid: 5822 - type: AsteroidRock - components: - - pos: 37.5,-26.5 - parent: 0 - type: Transform -- uid: 5823 - type: AsteroidRock - components: - - pos: 37.5,-25.5 - parent: 0 - type: Transform -- uid: 5824 - type: AsteroidRock - components: - - pos: 38.5,-28.5 - parent: 0 - type: Transform -- uid: 5825 - type: AsteroidRock - components: - - pos: 38.5,-27.5 - parent: 0 - type: Transform -- uid: 5826 - type: WallReinforced - components: - - pos: -9.5,-59.5 - parent: 0 - type: Transform -- uid: 5827 - type: AsteroidRock - components: - - pos: 38.5,-25.5 - parent: 0 - type: Transform -- uid: 5828 - type: AsteroidRock - components: - - pos: 39.5,-25.5 - parent: 0 - type: Transform -- uid: 5829 - type: AsteroidRock - components: - - pos: 39.5,-26.5 - parent: 0 - type: Transform -- uid: 5830 - type: AsteroidRock - components: - - pos: 39.5,-27.5 - parent: 0 - type: Transform -- uid: 5831 - type: AsteroidRock - components: - - pos: 40.5,-27.5 - parent: 0 - type: Transform -- uid: 5832 - type: AsteroidRock - components: - - pos: 40.5,-26.5 - parent: 0 - type: Transform -- uid: 5833 - type: Grille - components: - - pos: 32.5,-22.5 - parent: 0 - type: Transform -- uid: 5834 - type: Grille - components: - - pos: 33.5,-22.5 - parent: 0 - type: Transform -- uid: 5835 - type: Grille - components: - - pos: 34.5,-22.5 - parent: 0 - type: Transform -- uid: 5836 - type: WallSolid - components: - - pos: 3.5,-32.5 - parent: 0 - type: Transform -- uid: 5837 - type: WallSolid - components: - - pos: 3.5,-31.5 - parent: 0 - type: Transform -- uid: 5838 - type: AirlockMaintLocked - components: - - pos: 3.5,-30.5 - parent: 0 - type: Transform -- uid: 5839 - type: AsteroidRock - components: - - pos: 22.5,-17.5 - parent: 0 - type: Transform -- uid: 5840 - type: DisposalPipe - components: - - pos: 0.5,-12.5 - parent: 0 - type: Transform -- uid: 5841 - type: DisposalPipe - components: - - pos: 0.5,-13.5 - parent: 0 - type: Transform -- uid: 5842 - type: DisposalPipe - components: - - pos: 0.5,-14.5 - parent: 0 - type: Transform -- uid: 5843 - type: DisposalPipe - components: - - pos: 0.5,-15.5 - parent: 0 - type: Transform -- uid: 5844 - type: DisposalPipe - components: - - pos: 0.5,-16.5 - parent: 0 - type: Transform -- uid: 5845 - type: DisposalPipe - components: - - pos: 0.5,-17.5 - parent: 0 - type: Transform -- uid: 5846 - type: DisposalPipe - components: - - pos: 0.5,-18.5 - parent: 0 - type: Transform -- uid: 5847 - type: DisposalPipe - components: - - pos: 0.5,-19.5 - parent: 0 - type: Transform -- uid: 5848 - type: DisposalJunctionFlipped - components: - - pos: 0.5,-20.5 - parent: 0 - type: Transform -- uid: 5849 - type: DisposalJunction - components: - - pos: 0.5,-21.5 - parent: 0 - type: Transform -- uid: 5850 - type: DisposalPipe - components: - - pos: 0.5,-22.5 - parent: 0 - type: Transform -- uid: 5851 - type: DisposalPipe - components: - - pos: 0.5,-23.5 - parent: 0 - type: Transform -- uid: 5852 - type: DisposalPipe - components: - - pos: 0.5,-24.5 - parent: 0 - type: Transform -- uid: 5853 - type: DisposalPipe - components: - - pos: 0.5,-25.5 - parent: 0 - type: Transform -- uid: 5854 - type: DisposalPipe - components: - - pos: 0.5,-26.5 - parent: 0 - type: Transform -- uid: 5855 - type: DisposalPipe - components: - - pos: 0.5,-27.5 - parent: 0 - type: Transform -- uid: 5856 - type: DisposalPipe - components: - - pos: 0.5,-28.5 - parent: 0 - type: Transform -- uid: 5857 - type: DisposalPipe - components: - - pos: 0.5,-29.5 - parent: 0 - type: Transform -- uid: 5858 - type: DisposalUnit - components: - - pos: 7.5,-14.5 - parent: 0 - type: Transform -- uid: 5859 - type: DisposalUnit - components: - - pos: 29.5,-22.5 - parent: 0 - type: Transform -- uid: 5860 - type: DisposalTrunk - components: - - pos: 29.5,-22.5 - parent: 0 - type: Transform -- uid: 5861 - type: DisposalPipe - components: - - pos: 29.5,-23.5 - parent: 0 - type: Transform -- uid: 5862 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-24.5 - parent: 0 - type: Transform -- uid: 5863 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-24.5 - parent: 0 - type: Transform -- uid: 5864 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-24.5 - parent: 0 - type: Transform -- uid: 5865 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-24.5 - parent: 0 - type: Transform -- uid: 5866 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-24.5 - parent: 0 - type: Transform -- uid: 5867 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-24.5 - parent: 0 - type: Transform -- uid: 5868 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 0 - type: Transform -- uid: 5869 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 0 - type: Transform -- uid: 5870 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-24.5 - parent: 0 - type: Transform -- uid: 5871 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-24.5 - parent: 0 - type: Transform -- uid: 5872 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-24.5 - parent: 0 - type: Transform -- uid: 5873 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-24.5 - parent: 0 - type: Transform -- uid: 5874 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-24.5 - parent: 0 - type: Transform -- uid: 5875 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-24.5 - parent: 0 - type: Transform -- uid: 5876 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-24.5 - parent: 0 - type: Transform -- uid: 5877 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-24.5 - parent: 0 - type: Transform -- uid: 5878 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-24.5 - parent: 0 - type: Transform -- uid: 5879 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-24.5 - parent: 0 - type: Transform -- uid: 5880 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-24.5 - parent: 0 - type: Transform -- uid: 5881 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-24.5 - parent: 0 - type: Transform -- uid: 5882 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 0 - type: Transform -- uid: 5883 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 8.5,-24.5 - parent: 0 - type: Transform -- uid: 5884 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 8.5,-23.5 - parent: 0 - type: Transform -- uid: 5885 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 8.5,-22.5 - parent: 0 - type: Transform -- uid: 5886 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 8.5,-21.5 - parent: 0 - type: Transform -- uid: 5887 - type: DisposalBend - components: - - pos: 8.5,-20.5 - parent: 0 - type: Transform -- uid: 5888 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-20.5 - parent: 0 - type: Transform -- uid: 5889 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 0 - type: Transform -- uid: 5890 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-20.5 - parent: 0 - type: Transform -- uid: 5891 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-20.5 - parent: 0 - type: Transform -- uid: 5892 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 0 - type: Transform -- uid: 5893 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-20.5 - parent: 0 - type: Transform -- uid: 5894 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 0 - type: Transform -- uid: 5895 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-14.5 - parent: 0 - type: Transform -- uid: 5896 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-14.5 - parent: 0 - type: Transform -- uid: 5897 - type: DisposalPipe - components: - - pos: 4.5,-19.5 - parent: 0 - type: Transform -- uid: 5898 - type: DisposalPipe - components: - - pos: 4.5,-18.5 - parent: 0 - type: Transform -- uid: 5899 - type: DisposalPipe - components: - - pos: 4.5,-17.5 - parent: 0 - type: Transform -- uid: 5900 - type: DisposalPipe - components: - - pos: 4.5,-16.5 - parent: 0 - type: Transform -- uid: 5901 - type: DisposalPipe - components: - - pos: 4.5,-15.5 - parent: 0 - type: Transform -- uid: 5902 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-14.5 - parent: 0 - type: Transform -- uid: 5903 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-14.5 - parent: 0 - type: Transform -- uid: 5904 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-30.5 - parent: 0 - type: Transform -- uid: 5905 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-31.5 - parent: 0 - type: Transform -- uid: 5906 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-30.5 - parent: 0 - type: Transform -- uid: 5907 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-31.5 - parent: 0 - type: Transform -- uid: 5908 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-32.5 - parent: 0 - type: Transform -- uid: 5909 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-32.5 - parent: 0 - type: Transform -- uid: 5910 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-32.5 - parent: 0 - type: Transform -- uid: 5911 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-32.5 - parent: 0 - type: Transform -- uid: 5912 - type: AirlockEngineeringLocked - components: - - pos: 15.5,-32.5 - parent: 0 - type: Transform -- uid: 5913 - type: SubstationBasic - components: - - pos: 16.5,-30.5 - parent: 0 - type: Transform -- uid: 5914 - type: CableHV - components: - - pos: 16.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5915 - type: CableHV - components: - - pos: 15.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5916 - type: CableHV - components: - - pos: 15.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5917 - type: CableHV - components: - - pos: 15.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5918 - type: CableHV - components: - - pos: 15.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5919 - type: CableHV - components: - - pos: 16.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5920 - type: CableHV - components: - - pos: 17.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5921 - type: CableHV - components: - - pos: 18.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5922 - type: CableHV - components: - - pos: 18.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5923 - type: CableHV - components: - - pos: 18.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5924 - type: CableHV - components: - - pos: 18.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5925 - type: CableHV - components: - - pos: 18.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5926 - type: CableHV - components: - - pos: 18.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5927 - type: CableHV - components: - - pos: 18.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5928 - type: CableHV - components: - - pos: 18.5,-26.5 - parent: 0 - type: Transform -- uid: 5929 - type: CableHV - components: - - pos: 18.5,-25.5 - parent: 0 - type: Transform -- uid: 5930 - type: CableHV - components: - - pos: 18.5,-24.5 - parent: 0 - type: Transform -- uid: 5931 - type: CableHV - components: - - pos: 18.5,-23.5 - parent: 0 - type: Transform -- uid: 5932 - type: CableHV - components: - - pos: 18.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5933 - type: CableHV - components: - - pos: 18.5,-21.5 - parent: 0 - type: Transform -- uid: 5934 - type: CableHV - components: - - pos: 18.5,-20.5 - parent: 0 - type: Transform -- uid: 5935 - type: CableHV - components: - - pos: 17.5,-20.5 - parent: 0 - type: Transform -- uid: 5936 - type: CableHV - components: - - pos: 16.5,-20.5 - parent: 0 - type: Transform -- uid: 5937 - type: CableHV - components: - - pos: 16.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5938 - type: CableHV - components: - - pos: 16.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5939 - type: CableHV - components: - - pos: 16.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5940 - type: CableHV - components: - - pos: 16.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5941 - type: CableHV - components: - - pos: 16.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5942 - type: CableHV - components: - - pos: 16.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5943 - type: CableHV - components: - - pos: 15.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5944 - type: CableHV - components: - - pos: 14.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5945 - type: CableHV - components: - - pos: 14.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5946 - type: CableHV - components: - - pos: 13.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5947 - type: CableHV - components: - - pos: 12.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5948 - type: CableHV - components: - - pos: 12.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5949 - type: CableHV - components: - - pos: 12.5,-12.5 - parent: 0 - type: Transform -- uid: 5950 - type: CableHV - components: - - pos: 12.5,-11.5 - parent: 0 - type: Transform -- uid: 5951 - type: CableHV - components: - - pos: 11.5,-11.5 - parent: 0 - type: Transform -- uid: 5952 - type: CableHV - components: - - pos: 10.5,-11.5 - parent: 0 - type: Transform -- uid: 5953 - type: CableHV - components: - - pos: 9.5,-11.5 - parent: 0 - type: Transform -- uid: 5954 - type: CableHV - components: - - pos: 8.5,-11.5 - parent: 0 - type: Transform -- uid: 5955 - type: CableHV - components: - - pos: 8.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5956 - type: CableHV - components: - - pos: 8.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5957 - type: CableHV - components: - - pos: 9.5,-9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5958 - type: CableHV - components: - - pos: 9.5,-8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5959 - type: CableHV - components: - - pos: 9.5,-7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5960 - type: CableHV - components: - - pos: 9.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5961 - type: CableHV - components: - - pos: 9.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5962 - type: CableHV - components: - - pos: 9.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5963 - type: CableHV - components: - - pos: 9.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5964 - type: CableHV - components: - - pos: 9.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5965 - type: CableHV - components: - - pos: 9.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5966 - type: CableHV - components: - - pos: 9.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5967 - type: CableHV - components: - - pos: 9.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5968 - type: CableHV - components: - - pos: 9.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5969 - type: CableHV - components: - - pos: 9.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5970 - type: APCBasic - components: - - pos: 6.5,-19.5 - parent: 0 - type: Transform -- uid: 5971 - type: APCBasic - components: - - pos: 28.5,-21.5 - parent: 0 - type: Transform -- uid: 5972 - type: CableMV - components: - - pos: 16.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5973 - type: CableMV - components: - - pos: 15.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5974 - type: CableMV - components: - - pos: 15.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5975 - type: CableMV - components: - - pos: 15.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5976 - type: CableMV - components: - - pos: 15.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5977 - type: CableMV - components: - - pos: 16.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5978 - type: CableMV - components: - - pos: 17.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5979 - type: CableMV - components: - - pos: 18.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5980 - type: CableMV - components: - - pos: 18.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5981 - type: CableMV - components: - - pos: 18.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5982 - type: CableMV - components: - - pos: 18.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5983 - type: CableMV - components: - - pos: 18.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5984 - type: CableMV - components: - - pos: 18.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5985 - type: CableMV - components: - - pos: 18.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5986 - type: CableMV - components: - - pos: 18.5,-26.5 - parent: 0 - type: Transform -- uid: 5987 - type: CableMV - components: - - pos: 18.5,-25.5 - parent: 0 - type: Transform -- uid: 5988 - type: CableMV - components: - - pos: 18.5,-24.5 - parent: 0 - type: Transform -- uid: 5989 - type: CableMV - components: - - pos: 18.5,-23.5 - parent: 0 - type: Transform -- uid: 5990 - type: CableMV - components: - - pos: 18.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5991 - type: CableMV - components: - - pos: 18.5,-21.5 - parent: 0 - type: Transform -- uid: 5992 - type: CableMV - components: - - pos: 18.5,-20.5 - parent: 0 - type: Transform -- uid: 5993 - type: CableMV - components: - - pos: 17.5,-20.5 - parent: 0 - type: Transform -- uid: 5994 - type: CableMV - components: - - pos: 16.5,-20.5 - parent: 0 - type: Transform -- uid: 5995 - type: CableMV - components: - - pos: 15.5,-20.5 - parent: 0 - type: Transform -- uid: 5996 - type: CableMV - components: - - pos: 14.5,-20.5 - parent: 0 - type: Transform -- uid: 5997 - type: CableMV - components: - - pos: 13.5,-20.5 - parent: 0 - type: Transform -- uid: 5998 - type: CableMV - components: - - pos: 12.5,-20.5 - parent: 0 - type: Transform -- uid: 5999 - type: CableMV - components: - - pos: 11.5,-20.5 - parent: 0 - type: Transform -- uid: 6000 - type: CableMV - components: - - pos: 10.5,-20.5 - parent: 0 - type: Transform -- uid: 6001 - type: CableMV - components: - - pos: 9.5,-20.5 - parent: 0 - type: Transform -- uid: 6002 - type: CableMV - components: - - pos: 8.5,-20.5 - parent: 0 - type: Transform -- uid: 6003 - type: CableMV - components: - - pos: 7.5,-20.5 - parent: 0 - type: Transform -- uid: 6004 - type: CableMV - components: - - pos: 6.5,-20.5 - parent: 0 - type: Transform -- uid: 6005 - type: CableMV - components: - - pos: 6.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6006 - type: CableMV - components: - - pos: 19.5,-20.5 - parent: 0 - type: Transform -- uid: 6007 - type: CableMV - components: - - pos: 20.5,-20.5 - parent: 0 - type: Transform -- uid: 6008 - type: CableMV - components: - - pos: 21.5,-20.5 - parent: 0 - type: Transform -- uid: 6009 - type: CableMV - components: - - pos: 22.5,-20.5 - parent: 0 - type: Transform -- uid: 6010 - type: CableMV - components: - - pos: 22.5,-21.5 - parent: 0 - type: Transform -- uid: 6011 - type: CableMV - components: - - pos: 22.5,-22.5 - parent: 0 - type: Transform -- uid: 6012 - type: CableMV - components: - - pos: 23.5,-22.5 - parent: 0 - type: Transform -- uid: 6013 - type: CableMV - components: - - pos: 24.5,-22.5 - parent: 0 - type: Transform -- uid: 6014 - type: CableMV - components: - - pos: 25.5,-22.5 - parent: 0 - type: Transform -- uid: 6015 - type: CableMV - components: - - pos: 26.5,-22.5 - parent: 0 - type: Transform -- uid: 6016 - type: CableMV - components: - - pos: 27.5,-22.5 - parent: 0 - type: Transform -- uid: 6017 - type: CableMV - components: - - pos: 28.5,-22.5 - parent: 0 - type: Transform -- uid: 6018 - type: CableMV - components: - - pos: 28.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6019 - type: SignElectricalMed - components: - - pos: 16.5,-32.5 - parent: 0 - type: Transform -- uid: 6020 - type: CableHV - components: - - pos: 16.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6021 - type: ComputerPowerMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-31.5 - parent: 0 - type: Transform -- uid: 6022 - type: CableApcExtension - components: - - pos: 6.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6023 - type: CableApcExtension - components: - - pos: 6.5,-18.5 - parent: 0 - type: Transform -- uid: 6024 - type: CableApcExtension - components: - - pos: 6.5,-17.5 - parent: 0 - type: Transform -- uid: 6025 - type: CableApcExtension - components: - - pos: 6.5,-16.5 - parent: 0 - type: Transform -- uid: 6026 - type: CableApcExtension - components: - - pos: 6.5,-15.5 - parent: 0 - type: Transform -- uid: 6027 - type: CableApcExtension - components: - - pos: 5.5,-15.5 - parent: 0 - type: Transform -- uid: 6028 - type: CableApcExtension - components: - - pos: 4.5,-15.5 - parent: 0 - type: Transform -- uid: 6029 - type: CableApcExtension - components: - - pos: 5.5,-18.5 - parent: 0 - type: Transform -- uid: 6030 - type: CableApcExtension - components: - - pos: 4.5,-18.5 - parent: 0 - type: Transform -- uid: 6031 - type: CableApcExtension - components: - - pos: 6.5,-20.5 - parent: 0 - type: Transform -- uid: 6032 - type: CableApcExtension - components: - - pos: 6.5,-21.5 - parent: 0 - type: Transform -- uid: 6033 - type: CableApcExtension - components: - - pos: 5.5,-21.5 - parent: 0 - type: Transform -- uid: 6034 - type: CableApcExtension - components: - - pos: 5.5,-22.5 - parent: 0 - type: Transform -- uid: 6035 - type: CableApcExtension - components: - - pos: 5.5,-23.5 - parent: 0 - type: Transform -- uid: 6036 - type: CableApcExtension - components: - - pos: 5.5,-24.5 - parent: 0 - type: Transform -- uid: 6037 - type: CableApcExtension - components: - - pos: 5.5,-25.5 - parent: 0 - type: Transform -- uid: 6038 - type: CableApcExtension - components: - - pos: 5.5,-26.5 - parent: 0 - type: Transform -- uid: 6039 - type: CableApcExtension - components: - - pos: 5.5,-27.5 - parent: 0 - type: Transform -- uid: 6040 - type: CableApcExtension - components: - - pos: 4.5,-27.5 - parent: 0 - type: Transform -- uid: 6041 - type: CableApcExtension - components: - - pos: 4.5,-24.5 - parent: 0 - type: Transform -- uid: 6042 - type: CableApcExtension - components: - - pos: 4.5,-21.5 - parent: 0 - type: Transform -- uid: 6043 - type: CableApcExtension - components: - - pos: 7.5,-21.5 - parent: 0 - type: Transform -- uid: 6044 - type: CableApcExtension - components: - - pos: 8.5,-21.5 - parent: 0 - type: Transform -- uid: 6045 - type: CableApcExtension - components: - - pos: 9.5,-21.5 - parent: 0 - type: Transform -- uid: 6046 - type: CableApcExtension - components: - - pos: 10.5,-21.5 - parent: 0 - type: Transform -- uid: 6047 - type: CableApcExtension - components: - - pos: 11.5,-21.5 - parent: 0 - type: Transform -- uid: 6048 - type: CableApcExtension - components: - - pos: 12.5,-21.5 - parent: 0 - type: Transform -- uid: 6049 - type: CableApcExtension - components: - - pos: 13.5,-21.5 - parent: 0 - type: Transform -- uid: 6050 - type: CableApcExtension - components: - - pos: 14.5,-21.5 - parent: 0 - type: Transform -- uid: 6051 - type: CableApcExtension - components: - - pos: 13.5,-20.5 - parent: 0 - type: Transform -- uid: 6052 - type: CableApcExtension - components: - - pos: 13.5,-19.5 - parent: 0 - type: Transform -- uid: 6053 - type: CableApcExtension - components: - - pos: 13.5,-18.5 - parent: 0 - type: Transform -- uid: 6054 - type: CableApcExtension - components: - - pos: 13.5,-17.5 - parent: 0 - type: Transform -- uid: 6055 - type: CableApcExtension - components: - - pos: 10.5,-20.5 - parent: 0 - type: Transform -- uid: 6056 - type: CableApcExtension - components: - - pos: 10.5,-19.5 - parent: 0 - type: Transform -- uid: 6057 - type: CableApcExtension - components: - - pos: 10.5,-18.5 - parent: 0 - type: Transform -- uid: 6058 - type: CableApcExtension - components: - - pos: 10.5,-17.5 - parent: 0 - type: Transform -- uid: 6059 - type: CableApcExtension - components: - - pos: 10.5,-16.5 - parent: 0 - type: Transform -- uid: 6060 - type: CableApcExtension - components: - - pos: 10.5,-15.5 - parent: 0 - type: Transform -- uid: 6061 - type: CableApcExtension - components: - - pos: 10.5,-14.5 - parent: 0 - type: Transform -- uid: 6062 - type: CableApcExtension - components: - - pos: 11.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6063 - type: CableApcExtension - components: - - pos: 12.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6064 - type: CableApcExtension - components: - - pos: 13.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6065 - type: CableApcExtension - components: - - pos: 14.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6066 - type: CableApcExtension - components: - - pos: 9.5,-22.5 - parent: 0 - type: Transform -- uid: 6067 - type: CableApcExtension - components: - - pos: 9.5,-23.5 - parent: 0 - type: Transform -- uid: 6068 - type: CableApcExtension - components: - - pos: 9.5,-24.5 - parent: 0 - type: Transform -- uid: 6069 - type: CableApcExtension - components: - - pos: 9.5,-25.5 - parent: 0 - type: Transform -- uid: 6070 - type: CableApcExtension - components: - - pos: 9.5,-26.5 - parent: 0 - type: Transform -- uid: 6071 - type: CableApcExtension - components: - - pos: 9.5,-27.5 - parent: 0 - type: Transform -- uid: 6072 - type: CableApcExtension - components: - - pos: 9.5,-28.5 - parent: 0 - type: Transform -- uid: 6073 - type: CableApcExtension - components: - - pos: 10.5,-25.5 - parent: 0 - type: Transform -- uid: 6074 - type: CableApcExtension - components: - - pos: 11.5,-25.5 - parent: 0 - type: Transform -- uid: 6075 - type: CableApcExtension - components: - - pos: 12.5,-25.5 - parent: 0 - type: Transform -- uid: 6076 - type: CableApcExtension - components: - - pos: 13.5,-25.5 - parent: 0 - type: Transform -- uid: 6077 - type: CableApcExtension - components: - - pos: 14.5,-25.5 - parent: 0 - type: Transform -- uid: 6078 - type: CableApcExtension - components: - - pos: 15.5,-25.5 - parent: 0 - type: Transform -- uid: 6079 - type: CableApcExtension - components: - - pos: 28.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6080 - type: CableApcExtension - components: - - pos: 28.5,-20.5 - parent: 0 - type: Transform -- uid: 6081 - type: CableApcExtension - components: - - pos: 28.5,-19.5 - parent: 0 - type: Transform -- uid: 6082 - type: CableApcExtension - components: - - pos: 26.5,-19.5 - parent: 0 - type: Transform -- uid: 6083 - type: CableApcExtension - components: - - pos: 27.5,-19.5 - parent: 0 - type: Transform -- uid: 6084 - type: CableApcExtension - components: - - pos: 26.5,-18.5 - parent: 0 - type: Transform -- uid: 6085 - type: CableApcExtension - components: - - pos: 25.5,-18.5 - parent: 0 - type: Transform -- uid: 6086 - type: CableApcExtension - components: - - pos: 28.5,-22.5 - parent: 0 - type: Transform -- uid: 6087 - type: CableApcExtension - components: - - pos: 27.5,-22.5 - parent: 0 - type: Transform -- uid: 6088 - type: CableApcExtension - components: - - pos: 26.5,-22.5 - parent: 0 - type: Transform -- uid: 6089 - type: CableApcExtension - components: - - pos: 25.5,-22.5 - parent: 0 - type: Transform -- uid: 6090 - type: CableApcExtension - components: - - pos: 24.5,-22.5 - parent: 0 - type: Transform -- uid: 6091 - type: CableApcExtension - components: - - pos: 23.5,-22.5 - parent: 0 - type: Transform -- uid: 6092 - type: CableApcExtension - components: - - pos: 22.5,-22.5 - parent: 0 - type: Transform -- uid: 6093 - type: CableApcExtension - components: - - pos: 21.5,-22.5 - parent: 0 - type: Transform -- uid: 6094 - type: CableApcExtension - components: - - pos: 21.5,-21.5 - parent: 0 - type: Transform -- uid: 6095 - type: CableApcExtension - components: - - pos: 20.5,-21.5 - parent: 0 - type: Transform -- uid: 6096 - type: CableApcExtension - components: - - pos: 19.5,-21.5 - parent: 0 - type: Transform -- uid: 6097 - type: CableApcExtension - components: - - pos: 18.5,-21.5 - parent: 0 - type: Transform -- uid: 6098 - type: CableApcExtension - components: - - pos: 17.5,-21.5 - parent: 0 - type: Transform -- uid: 6099 - type: CableApcExtension - components: - - pos: 16.5,-21.5 - parent: 0 - type: Transform -- uid: 6100 - type: CableApcExtension - components: - - pos: 16.5,-20.5 - parent: 0 - type: Transform -- uid: 6101 - type: CableApcExtension - components: - - pos: 16.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6102 - type: CableApcExtension - components: - - pos: 16.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6103 - type: CableApcExtension - components: - - pos: 16.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6104 - type: CableApcExtension - components: - - pos: 17.5,-17.5 - parent: 0 - type: Transform -- uid: 6105 - type: CableApcExtension - components: - - pos: 18.5,-17.5 - parent: 0 - type: Transform -- uid: 6106 - type: CableApcExtension - components: - - pos: 19.5,-17.5 - parent: 0 - type: Transform -- uid: 6107 - type: CableApcExtension - components: - - pos: 19.5,-16.5 - parent: 0 - type: Transform -- uid: 6108 - type: CableApcExtension - components: - - pos: 19.5,-15.5 - parent: 0 - type: Transform -- uid: 6109 - type: CableApcExtension - components: - - pos: 19.5,-14.5 - parent: 0 - type: Transform -- uid: 6110 - type: CableApcExtension - components: - - pos: 19.5,-13.5 - parent: 0 - type: Transform -- uid: 6111 - type: CableApcExtension - components: - - pos: 19.5,-12.5 - parent: 0 - type: Transform -- uid: 6112 - type: CableApcExtension - components: - - pos: 18.5,-12.5 - parent: 0 - type: Transform -- uid: 6113 - type: CableApcExtension - components: - - pos: 18.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6114 - type: CableApcExtension - components: - - pos: 18.5,-23.5 - parent: 0 - type: Transform -- uid: 6115 - type: CableApcExtension - components: - - pos: 18.5,-24.5 - parent: 0 - type: Transform -- uid: 6116 - type: CableApcExtension - components: - - pos: 18.5,-25.5 - parent: 0 - type: Transform -- uid: 6117 - type: CableApcExtension - components: - - pos: 18.5,-26.5 - parent: 0 - type: Transform -- uid: 6118 - type: CableApcExtension - components: - - pos: 18.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6119 - type: CableApcExtension - components: - - pos: 18.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6120 - type: CableApcExtension - components: - - pos: 18.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6121 - type: CableApcExtension - components: - - pos: 18.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6122 - type: CableApcExtension - components: - - pos: 18.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6123 - type: CableApcExtension - components: - - pos: 18.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6124 - type: CableApcExtension - components: - - pos: 18.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6125 - type: CableApcExtension - components: - - pos: 17.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6126 - type: CableApcExtension - components: - - pos: 16.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6127 - type: CableApcExtension - components: - - pos: 15.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6128 - type: CableApcExtension - components: - - pos: 15.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6129 - type: CableApcExtension - components: - - pos: 15.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6130 - type: CableApcExtension - components: - - pos: 15.5,-24.5 - parent: 0 - type: Transform -- uid: 6131 - type: CableApcExtension - components: - - pos: 12.5,-24.5 - parent: 0 - type: Transform -- uid: 6132 - type: CableApcExtension - components: - - pos: 15.5,-26.5 - parent: 0 - type: Transform -- uid: 6133 - type: CableApcExtension - components: - - pos: 15.5,-27.5 - parent: 0 - type: Transform -- uid: 6134 - type: CableApcExtension - components: - - pos: 12.5,-26.5 - parent: 0 - type: Transform -- uid: 6135 - type: CableApcExtension - components: - - pos: 12.5,-27.5 - parent: 0 - type: Transform -- uid: 6136 - type: CableApcExtension - components: - - pos: 28.5,-23.5 - parent: 0 - type: Transform -- uid: 6137 - type: CableApcExtension - components: - - pos: 28.5,-24.5 - parent: 0 - type: Transform -- uid: 6138 - type: CableApcExtension - components: - - pos: 28.5,-25.5 - parent: 0 - type: Transform -- uid: 6139 - type: CableApcExtension - components: - - pos: 28.5,-26.5 - parent: 0 - type: Transform -- uid: 6140 - type: CableApcExtension - components: - - pos: 28.5,-27.5 - parent: 0 - type: Transform -- uid: 6141 - type: CableApcExtension - components: - - pos: 28.5,-28.5 - parent: 0 - type: Transform -- uid: 6142 - type: CableApcExtension - components: - - pos: 28.5,-29.5 - parent: 0 - type: Transform -- uid: 6143 - type: CableApcExtension - components: - - pos: 27.5,-29.5 - parent: 0 - type: Transform -- uid: 6144 - type: CableApcExtension - components: - - pos: 26.5,-29.5 - parent: 0 - type: Transform -- uid: 6145 - type: CableApcExtension - components: - - pos: 25.5,-29.5 - parent: 0 - type: Transform -- uid: 6146 - type: CableApcExtension - components: - - pos: 24.5,-29.5 - parent: 0 - type: Transform -- uid: 6147 - type: CableApcExtension - components: - - pos: 23.5,-29.5 - parent: 0 - type: Transform -- uid: 6148 - type: CableApcExtension - components: - - pos: 22.5,-29.5 - parent: 0 - type: Transform -- uid: 6149 - type: CableApcExtension - components: - - pos: 29.5,-25.5 - parent: 0 - type: Transform -- uid: 6150 - type: CableApcExtension - components: - - pos: 30.5,-25.5 - parent: 0 - type: Transform -- uid: 6151 - type: CableApcExtension - components: - - pos: 31.5,-25.5 - parent: 0 - type: Transform -- uid: 6152 - type: CableApcExtension - components: - - pos: 32.5,-25.5 - parent: 0 - type: Transform -- uid: 6153 - type: CableApcExtension - components: - - pos: 33.5,-25.5 - parent: 0 - type: Transform -- uid: 6154 - type: CableApcExtension - components: - - pos: 34.5,-25.5 - parent: 0 - type: Transform -- uid: 6155 - type: CableApcExtension - components: - - pos: 33.5,-26.5 - parent: 0 - type: Transform -- uid: 6156 - type: CableApcExtension - components: - - pos: 33.5,-27.5 - parent: 0 - type: Transform -- uid: 6157 - type: CableApcExtension - components: - - pos: 33.5,-24.5 - parent: 0 - type: Transform -- uid: 6158 - type: CableApcExtension - components: - - pos: 27.5,-25.5 - parent: 0 - type: Transform -- uid: 6159 - type: CableApcExtension - components: - - pos: 26.5,-25.5 - parent: 0 - type: Transform -- uid: 6160 - type: CableApcExtension - components: - - pos: 25.5,-25.5 - parent: 0 - type: Transform -- uid: 6161 - type: CableApcExtension - components: - - pos: 24.5,-25.5 - parent: 0 - type: Transform -- uid: 6162 - type: CableApcExtension - components: - - pos: 23.5,-25.5 - parent: 0 - type: Transform -- uid: 6163 - type: CableApcExtension - components: - - pos: 22.5,-25.5 - parent: 0 - type: Transform -- uid: 6164 - type: CableApcExtension - components: - - pos: 16.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6165 - type: AtmosFixBlockerMarker - components: - - pos: 22.5,-30.5 - parent: 0 - type: Transform -- uid: 6166 - type: AtmosFixBlockerMarker - components: - - pos: 23.5,-30.5 - parent: 0 - type: Transform -- uid: 6167 - type: AtmosFixBlockerMarker - components: - - pos: 23.5,-29.5 - parent: 0 - type: Transform -- uid: 6168 - type: AtmosFixBlockerMarker - components: - - pos: 22.5,-29.5 - parent: 0 - type: Transform -- uid: 6169 - type: AtmosFixBlockerMarker - components: - - pos: 22.5,-28.5 - parent: 0 - type: Transform -- uid: 6170 - type: AtmosFixBlockerMarker - components: - - pos: 23.5,-28.5 - parent: 0 - type: Transform -- uid: 6171 - type: AtmosFixBlockerMarker - components: - - pos: 25.5,-30.5 - parent: 0 - type: Transform -- uid: 6172 - type: AtmosFixBlockerMarker - components: - - pos: 25.5,-29.5 - parent: 0 - type: Transform -- uid: 6173 - type: AtmosFixBlockerMarker - components: - - pos: 25.5,-28.5 - parent: 0 - type: Transform -- uid: 6174 - type: AtmosFixBlockerMarker - components: - - pos: 24.5,-29.5 - parent: 0 - type: Transform -- uid: 6175 - type: SignScience1 - components: - - pos: 8.5,-13.5 - parent: 0 - type: Transform -- uid: 6176 - type: SignScience - components: - - pos: 2.5,-19.5 - parent: 0 - type: Transform -- uid: 6177 - type: SignScience2 - components: - - pos: 20.5,-22.5 - parent: 0 - type: Transform -- uid: 6178 - type: SignRobo - components: - - pos: 10.5,-22.5 - parent: 0 - type: Transform -- uid: 6179 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-15.5 - parent: 0 - type: Transform -- uid: 6180 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-14.5 - parent: 0 - type: Transform -- uid: 6181 - type: Table - components: - - pos: 3.5,-14.5 - parent: 0 - type: Transform -- uid: 6182 - type: Protolathe - components: - - pos: 5.5,-16.5 - parent: 0 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold - type: MaterialStorage -- uid: 6183 - type: Autolathe - components: - - pos: 3.5,-16.5 - parent: 0 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage -- uid: 6184 - type: CircuitImprinter - components: - - pos: 5.5,-17.5 - parent: 0 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Gold - type: MaterialStorage -- uid: 6185 - type: ComputerResearchAndDevelopment - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-17.5 - parent: 0 - type: Transform -- uid: 6186 - type: TableReinforced - components: - - pos: 7.5,-18.5 - parent: 0 - type: Transform -- uid: 6187 - type: TableReinforced - components: - - pos: 7.5,-17.5 - parent: 0 - type: Transform -- uid: 6188 - type: TableReinforced - components: - - pos: 7.5,-16.5 - parent: 0 - type: Transform -- uid: 6189 - type: TableReinforced - components: - - pos: 7.5,-15.5 - parent: 0 - type: Transform -- uid: 6190 - type: Table - components: - - pos: 3.5,-18.5 - parent: 0 - type: Transform -- uid: 6191 - type: PottedPlantRandom - components: - - pos: 13.5,-12.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 6192 - type: Table - components: - - pos: 13.5,-11.5 - parent: 0 - type: Transform -- uid: 6193 - type: ClothingOuterCoatGentle - components: - - pos: 13.531586,-11.381834 - parent: 0 - type: Transform -- uid: 6194 - type: PowerCellRecharger - components: - - pos: 7.5,-18.5 - parent: 0 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 6195 - type: SignNosmoking - components: - - pos: 8.5,-19.5 - parent: 0 - type: Transform -- uid: 6196 - type: CableApcStack - components: - - pos: 7.451914,-16.53358 - parent: 0 - type: Transform -- uid: 6197 - type: Multitool - components: - - pos: 7.576914,-16.642956 - parent: 0 - type: Transform -- uid: 6198 - type: SheetSteel - components: - - pos: 3.4362888,-18.40858 - parent: 0 - type: Transform -- uid: 6199 - type: SheetGlass - components: - - pos: 3.6706638,-18.424206 - parent: 0 - type: Transform -- uid: 6200 - type: AdvancedMatterBinStockPart - components: - - pos: 7.405039,-15.314831 - parent: 0 - type: Transform -- uid: 6201 - type: AdvancedMatterBinStockPart - components: - - pos: 7.701914,-15.330456 - parent: 0 - type: Transform -- uid: 6202 - type: HighPowerMicroLaserStockPart - components: - - pos: 7.436289,-15.783581 - parent: 0 - type: Transform -- uid: 6203 - type: HighPowerMicroLaserStockPart - components: - - pos: 7.623789,-15.783581 - parent: 0 - type: Transform -- uid: 6204 - type: HighPowerMicroLaserStockPart - components: - - pos: 7.811289,-15.783581 - parent: 0 - type: Transform -- uid: 6205 - type: ClothingEyesGlasses - components: - - pos: 3.4675388,-14.361706 - parent: 0 - type: Transform -- uid: 6206 - type: SheetPlastic - components: - - pos: 3.551526,-18.367922 - parent: 0 - type: Transform -- uid: 6207 - type: SheetPlastic - components: - - pos: 3.562368,-18.383547 - parent: 0 - type: Transform -- uid: 6208 - type: SheetSteel - components: - - pos: 3.4206638,-18.40858 - parent: 0 - type: Transform -- uid: 6209 - type: SheetGlass - components: - - pos: 3.6706638,-18.455456 - parent: 0 - type: Transform -- uid: 6210 - type: SuperCapacitorStockPart - components: - - pos: 7.701914,-18.299206 - parent: 0 - type: Transform -- uid: 6211 - type: SuperCapacitorStockPart - components: - - pos: 7.451914,-18.299206 - parent: 0 - type: Transform -- uid: 6212 - type: PhasicScanningModuleStockPart - components: - - pos: 7.5679626,-16.149172 - parent: 0 - type: Transform -- uid: 6213 - type: Wrench - components: - - pos: 3.4989405,-14.41828 - parent: 0 - type: Transform -- uid: 6214 - type: WeldingFuelTankFull - components: - - pos: 6.5,-23.5 - parent: 0 - type: Transform -- uid: 6215 - type: ComputerResearchAndDevelopment - components: - - pos: 4.5,-25.5 - parent: 0 - type: Transform -- uid: 6216 - type: ChairOfficeLight - components: - - pos: 3.5,-23.5 - parent: 0 - type: Transform -- uid: 6217 - type: SignRobo - components: - - pos: 2.5,-24.5 - parent: 0 - type: Transform -- uid: 6218 - type: SignalButton - components: - - pos: 7.5,-27.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5794 - - port: Toggle - uid: 5795 - - port: Toggle - uid: 5796 - type: SignalTransmitter -- uid: 6219 - type: TableReinforced - components: - - pos: 13.5,-28.5 - parent: 0 - type: Transform -- uid: 6220 - type: TableReinforced - components: - - pos: 13.5,-27.5 - parent: 0 - type: Transform -- uid: 6221 - type: TableReinforced - components: - - pos: 16.5,-28.5 - parent: 0 - type: Transform -- uid: 6222 - type: TableReinforced - components: - - pos: 16.5,-27.5 - parent: 0 - type: Transform -- uid: 6223 - type: VendingMachineRoboDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.5,-26.5 - parent: 0 - type: Transform -- uid: 6224 - type: TableReinforced - components: - - pos: 16.5,-23.5 - parent: 0 - type: Transform -- uid: 6225 - type: TableReinforced - components: - - pos: 15.5,-23.5 - parent: 0 - type: Transform -- uid: 6226 - type: Rack - components: - - pos: 11.5,-23.5 - parent: 0 - type: Transform -- uid: 6227 - type: Rack - components: - - pos: 13.5,-23.5 - parent: 0 - type: Transform -- uid: 6228 - type: Table - components: - - pos: 11.5,-28.5 - parent: 0 - type: Transform -- uid: 6229 - type: PowerCellRecharger - components: - - pos: 11.5,-28.5 - parent: 0 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 6230 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-28.5 - parent: 0 - type: Transform -- uid: 6231 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-27.5 - parent: 0 - type: Transform -- uid: 6232 - type: ComputerResearchAndDevelopment - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-25.5 - parent: 0 - type: Transform -- uid: 6233 - type: CircuitImprinter - components: - - pos: 13.5,-26.5 - parent: 0 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Gold - type: MaterialStorage -- uid: 6234 - type: ToolboxMechanicalFilled - components: - - pos: 11.42382,-23.262737 - parent: 0 - type: Transform -- uid: 6235 - type: ToolboxElectricalFilled - components: - - pos: 11.595695,-23.434612 - parent: 0 - type: Transform -- uid: 6236 - type: SheetPlasteel - components: - - pos: 16.561968,-23.469662 - parent: 0 - type: Transform -- uid: 6237 - type: Wrench - components: - - pos: 15.546343,-23.407162 - parent: 0 - type: Transform -- uid: 6238 - type: ClothingHeadHatWelding - components: - - pos: 15.515093,-23.391537 - parent: 0 - type: Transform -- uid: 6239 - type: WelderMini - components: - - pos: 15.765093,-23.454037 - parent: 0 - type: Transform -- uid: 6240 - type: computerBodyScanner - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-28.5 - parent: 0 - type: Transform -- uid: 6241 - type: RollerBed - components: - - pos: 15.4628315,-28.371618 - parent: 0 - type: Transform -- uid: 6242 - type: Retractor - components: - - pos: 13.5722065,-27.387243 - parent: 0 - type: Transform -- uid: 6243 - type: SawElectric - components: - - pos: 16.478456,-28.465368 - parent: 0 - type: Transform -- uid: 6244 - type: Hemostat - components: - - pos: 13.5565815,-27.824743 - parent: 0 - type: Transform -- uid: 6245 - type: Scalpel - components: - - pos: 16.525331,-28.059118 - parent: 0 - type: Transform -- uid: 6246 - type: HandheldHealthAnalyzer - components: - - pos: 13.5409565,-28.418493 - parent: 0 - type: Transform -- uid: 6247 - type: Flash - components: - - pos: 16.572206,-27.496618 - parent: 0 - type: Transform -- uid: 6248 - type: Syringe - components: - - pos: 16.462831,-27.480993 - parent: 0 - type: Transform -- uid: 6249 - type: CableApcStack - components: - - pos: 13.4315815,-23.512243 - parent: 0 - type: Transform -- uid: 6250 - type: CrateScienceSecure - components: - - pos: 12.5,-23.5 - parent: 0 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 6251 - type: CrateScienceSecure - components: - - pos: 14.5,-23.5 - parent: 0 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 6252 - type: ResearchAndDevelopmentServer - components: - - pos: 14.5,-17.5 - parent: 0 - type: Transform -- uid: 6253 - type: BaseResearchAndDevelopmentPointSource - components: - - pos: 14.5,-18.5 - parent: 0 - type: Transform -- uid: 6254 - type: Table - components: - - pos: 5.5,-25.5 - parent: 0 - type: Transform -- uid: 6255 - type: Table - components: - - pos: 6.5,-25.5 - parent: 0 - type: Transform -- uid: 6256 - type: Table - components: - - pos: 6.5,-28.5 - parent: 0 - type: Transform -- uid: 6257 - type: Table - components: - - pos: 5.5,-28.5 - parent: 0 - type: Transform -- uid: 6258 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6259 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6260 - type: Poweredlight - components: - - pos: 13.5,-17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6261 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 6.5,-28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6262 - type: Poweredlight - components: - - pos: 3.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6263 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6264 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6265 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6266 - type: Poweredlight - components: - - pos: 11.5,-20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6267 - type: Poweredlight - components: - - pos: 6.5,-20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6268 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6269 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6270 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6271 - type: Poweredlight - components: - - pos: 28.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6272 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6273 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6274 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6275 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6276 - type: Poweredlight - components: - - pos: 35.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6277 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 31.5,-28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6278 - type: PoweredSmallLight - components: - - pos: 19.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6279 - type: PoweredSmallLight - components: - - pos: 17.5,-20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6280 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6281 - type: PoweredSmallLight - components: - - pos: 15.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6282 - type: TableWood - components: - - pos: 25.5,-17.5 - parent: 0 - type: Transform -- uid: 6283 - type: TableWood - components: - - pos: 25.5,-18.5 - parent: 0 - type: Transform -- uid: 6284 - type: TableWood - components: - - pos: 25.5,-19.5 - parent: 0 - type: Transform -- uid: 6285 - type: TableWood - components: - - pos: 26.5,-19.5 - parent: 0 - type: Transform -- uid: 6286 - type: LockerResearchDirectorFilled - components: - - pos: 28.5,-18.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6287 - type: ComputerResearchAndDevelopment - components: - - pos: 26.5,-17.5 - parent: 0 - type: Transform -- uid: 6288 - type: ChairOfficeDark - components: - - pos: 26.5,-18.5 - parent: 0 - type: Transform -- uid: 6289 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-19.5 - parent: 0 - type: Transform -- uid: 6290 - type: PottedPlantRD - components: - - pos: 24.5,-18.5 - parent: 0 - type: Transform -- uid: 6291 - type: Lamp - components: - - pos: 25.537617,-17.441427 - parent: 0 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 6292 - type: PosterContrabandLamarr - components: - - pos: 29.5,-20.5 - parent: 0 - type: Transform -- uid: 6293 - type: Bookshelf - components: - - pos: 27.5,-17.5 - parent: 0 - type: Transform -- uid: 6294 - type: CarpetPurple - components: - - pos: 25.5,-20.5 - parent: 0 - type: Transform -- uid: 6295 - type: CarpetPurple - components: - - pos: 25.5,-19.5 - parent: 0 - type: Transform -- uid: 6296 - type: CarpetPurple - components: - - pos: 25.5,-18.5 - parent: 0 - type: Transform -- uid: 6297 - type: CarpetPurple - components: - - pos: 26.5,-20.5 - parent: 0 - type: Transform -- uid: 6298 - type: CarpetPurple - components: - - pos: 26.5,-19.5 - parent: 0 - type: Transform -- uid: 6299 - type: CarpetPurple - components: - - pos: 26.5,-18.5 - parent: 0 - type: Transform -- uid: 6300 - type: CarpetPurple - components: - - pos: 27.5,-20.5 - parent: 0 - type: Transform -- uid: 6301 - type: CarpetPurple - components: - - pos: 27.5,-19.5 - parent: 0 - type: Transform -- uid: 6302 - type: CarpetPurple - components: - - pos: 27.5,-18.5 - parent: 0 - type: Transform -- uid: 6303 - type: TableReinforcedGlass - components: - - pos: 28.5,-20.5 - parent: 0 - type: Transform -- uid: 6304 - type: TableReinforcedGlass - components: - - pos: 28.5,-19.5 - parent: 0 - type: Transform -- uid: 6305 - type: SpawnPointResearchDirector - components: - - pos: 27.5,-18.5 - parent: 0 - type: Transform -- uid: 6306 - type: WeaponCapacitorRecharger - components: - - pos: 28.5,-19.5 - parent: 0 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 6307 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 26.432638,-19.383717 - parent: 0 - type: Transform -- uid: 6308 - type: DrinkHotCoffee - components: - - pos: 25.471973,-18.414967 - parent: 0 - type: Transform -- uid: 6309 - type: PowerDrill - components: - - pos: 28.456348,-20.243092 - parent: 0 - type: Transform -- uid: 6310 - type: ClosetL3ScienceFilled - components: - - pos: 21.5,-26.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6311 - type: ReinforcedWindow - components: - - pos: 22.5,-27.5 - parent: 0 - type: Transform -- uid: 6312 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: 26.5,-26.5 - parent: 0 - type: Transform -- uid: 6313 - type: ComputerAnalysisConsole - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-26.5 - parent: 0 - type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 6319 - type: SignalTransmitter -- uid: 6314 - type: Table - components: - - pos: 24.5,-26.5 - parent: 0 - type: Transform -- uid: 6315 - type: Grille - components: - - pos: 23.5,-27.5 - parent: 0 - type: Transform -- uid: 6316 - type: Grille - components: - - pos: 22.5,-27.5 - parent: 0 - type: Transform -- uid: 6317 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-26.5 - parent: 0 - type: Transform -- uid: 6318 - type: GasAnalyzer - components: - - pos: 24.527384,-25.4941 - parent: 0 - type: Transform -- uid: 6319 - type: MachineArtifactAnalyzer - components: - - pos: 22.5,-29.5 - parent: 0 - type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 6313 - type: SignalReceiver -- uid: 6320 - type: ChairOfficeDark - components: - - pos: 23.5,-26.5 - parent: 0 - type: Transform -- uid: 6321 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-25.5 - parent: 0 - type: Transform -- uid: 6322 - type: GasAnalyzer - components: - - pos: 24.418009,-25.447226 - parent: 0 - type: Transform -- uid: 6323 - type: Table - components: - - pos: 24.5,-25.5 - parent: 0 - type: Transform -- uid: 6324 - type: RandomArtifactSpawner - components: - - pos: 22.5,-30.5 - parent: 0 - type: Transform -- uid: 6325 - type: StorageCanister - components: - - pos: 23.5,-22.5 - parent: 0 - type: Transform -- uid: 6326 - type: StorageCanister - components: - - pos: 24.5,-22.5 - parent: 0 - type: Transform -- uid: 6327 - type: NitrogenCanister - components: - - pos: 25.5,-22.5 - parent: 0 - type: Transform -- uid: 6328 - type: OxygenCanister - components: - - pos: 26.5,-22.5 - parent: 0 - type: Transform -- uid: 6329 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 0 - type: Transform -- uid: 6330 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-22.5 - parent: 0 - type: Transform -- uid: 6331 - type: ClosetBombFilled - components: - - pos: 28.5,-22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6332 - type: AsteroidRock - components: - - pos: 37.5,-21.5 - parent: 0 - type: Transform -- uid: 6333 - type: PottedPlant1 - components: - - pos: 31.5,-23.5 - parent: 0 - type: Transform -- uid: 6334 - type: PottedPlant1 - components: - - pos: 35.5,-23.5 - parent: 0 - type: Transform -- uid: 6335 - type: TableReinforced - components: - - pos: 35.5,-24.5 - parent: 0 - type: Transform -- uid: 6336 - type: WaterCooler - components: - - pos: 19.5,-26.5 - parent: 0 - type: Transform -- uid: 6337 - type: ClothingEyesGlasses - components: - - pos: 25.449461,-19.268694 - parent: 0 - type: Transform -- uid: 6338 - type: MachineAPE - components: - - rot: 3.141592653589793 rad - pos: 34.5,-28.5 - parent: 0 - type: Transform -- uid: 6339 - type: DonkpocketBoxSpawner - components: - - pos: 9.5,-19.5 - parent: 0 - type: Transform -- uid: 6340 - type: SpawnMobBandito - components: - - pos: 11.5,-20.5 - parent: 0 - type: Transform -- uid: 6341 - type: MachineAnomalyGenerator - components: - - pos: 33.5,-24.5 - parent: 0 - type: Transform - - enabled: False - type: AmbientSound -- uid: 6342 - type: SignAnomaly2 - components: - - pos: 30.5,-27.5 - parent: 0 - type: Transform -- uid: 6343 - type: Table - components: - - pos: 9.5,-19.5 - parent: 0 - type: Transform -- uid: 6344 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-25.5 - parent: 0 - type: Transform -- uid: 6345 - type: TableReinforced - components: - - pos: 35.5,-26.5 - parent: 0 - type: Transform -- uid: 6346 - type: KitchenReagentGrinder - components: - - pos: 7.5,-17.5 - parent: 0 - type: Transform -- uid: 6347 - type: TableReinforced - components: - - pos: 35.5,-25.5 - parent: 0 - type: Transform -- uid: 6348 - type: HandLabeler - components: - - pos: 6.3559675,-25.44819 - parent: 0 - type: Transform -- uid: 6349 - type: ClothingHandsGlovesRobohands - components: - - pos: 5.5434675,-25.370066 - parent: 0 - type: Transform -- uid: 6350 - type: CrowbarRed - components: - - pos: 5.526539,-28.44819 - parent: 0 - type: Transform -- uid: 6351 - type: ComfyChair - components: - - pos: 9.5,-15.5 - parent: 0 - type: Transform -- uid: 6352 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 9.5,-17.5 - parent: 0 - type: Transform -- uid: 6353 - type: Table - components: - - pos: 9.5,-16.5 - parent: 0 - type: Transform -- uid: 6354 - type: Grille - components: - - pos: 9.5,-13.5 - parent: 0 - type: Transform -- uid: 6355 - type: PottedPlantBioluminscent - components: - - pos: 9.5,-14.5 - parent: 0 - type: Transform -- uid: 6356 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: 9.5,-28.5 - parent: 0 - type: Transform -- uid: 6357 - type: AnomalyScanner - components: - - pos: 31.47904,-24.269451 - parent: 0 - type: Transform -- uid: 6358 - type: ClosetRadiationSuitFilled - components: - - pos: 27.5,-22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6359 - type: MachineAPE - components: - - rot: 3.141592653589793 rad - pos: 35.5,-28.5 - parent: 0 - type: Transform -- uid: 6360 - type: MachineAnomalyVessel - components: - - pos: 31.5,-28.5 - parent: 0 - type: Transform -- uid: 6361 - type: SheetPlasma - components: - - pos: 35.463417,-24.535076 - parent: 0 - type: Transform -- uid: 6362 - type: AirlockExternalGlassAtmosphericsLocked - components: - - pos: -47.5,-3.5 - parent: 0 - type: Transform -- uid: 6363 - type: AirlockExternalGlassAtmosphericsLocked - components: - - pos: -50.5,-4.5 - parent: 0 - type: Transform -- uid: 6364 - type: FlashlightLantern - components: - - pos: -46.56787,-8.286076 - parent: 0 - type: Transform -- uid: 6365 - type: AnomalyScanner - components: - - pos: 31.63529,-24.472576 - parent: 0 - type: Transform -- uid: 6366 - type: PosterLegit50thAnniversaryVintageReprint - components: - - pos: 36.5,-24.5 - parent: 0 - type: Transform -- uid: 6367 - type: PosterLegitScience - components: - - pos: 30.5,-28.5 - parent: 0 - type: Transform -- uid: 6368 - type: Catwalk - components: - - pos: 16.5,-18.5 - parent: 0 - type: Transform -- uid: 6369 - type: Catwalk - components: - - pos: 16.5,-17.5 - parent: 0 - type: Transform -- uid: 6370 - type: Catwalk - components: - - pos: 16.5,-16.5 - parent: 0 - type: Transform -- uid: 6371 - type: Catwalk - components: - - pos: 16.5,-15.5 - parent: 0 - type: Transform -- uid: 6372 - type: Catwalk - components: - - pos: 15.5,-14.5 - parent: 0 - type: Transform -- uid: 6373 - type: Catwalk - components: - - pos: 14.5,-14.5 - parent: 0 - type: Transform -- uid: 6374 - type: Catwalk - components: - - pos: 13.5,-14.5 - parent: 0 - type: Transform -- uid: 6375 - type: Catwalk - components: - - pos: 18.5,-32.5 - parent: 0 - type: Transform -- uid: 6376 - type: Catwalk - components: - - pos: 18.5,-31.5 - parent: 0 - type: Transform -- uid: 6377 - type: Catwalk - components: - - pos: 18.5,-30.5 - parent: 0 - type: Transform -- uid: 6378 - type: Catwalk - components: - - pos: 18.5,-29.5 - parent: 0 - type: Transform -- uid: 6379 - type: Catwalk - components: - - pos: 18.5,-28.5 - parent: 0 - type: Transform -- uid: 6380 - type: Catwalk - components: - - pos: 17.5,-33.5 - parent: 0 - type: Transform -- uid: 6381 - type: Catwalk - components: - - pos: 16.5,-33.5 - parent: 0 - type: Transform -- uid: 6382 - type: TableReinforced - components: - - pos: 31.5,-24.5 - parent: 0 - type: Transform -- uid: 6385 - type: ClothingHeadHatBeaverHat - components: - - pos: 13.532155,-11.236504 - parent: 0 - type: Transform -- uid: 6386 - type: TableWood - components: - - pos: -4.5,-19.5 - parent: 0 - type: Transform -- uid: 6387 - type: TableWood - components: - - pos: -4.5,-15.5 - parent: 0 - type: Transform -- uid: 6388 - type: TableWood - components: - - pos: -0.5,-15.5 - parent: 0 - type: Transform -- uid: 6389 - type: TableWood - components: - - pos: -0.5,-19.5 - parent: 0 - type: Transform -- uid: 6390 - type: PottedPlantRandom - components: - - pos: -2.5,-19.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 6391 - type: PottedPlantRandom - components: - - pos: -2.5,-15.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 6392 - type: ComfyChair - components: - - pos: -3.5,-15.5 - parent: 0 - type: Transform -- uid: 6393 - type: ComfyChair - components: - - pos: -1.5,-15.5 - parent: 0 - type: Transform -- uid: 6394 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-16.5 - parent: 0 - type: Transform -- uid: 6395 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-16.5 - parent: 0 - type: Transform -- uid: 6396 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 0 - type: Transform -- uid: 6397 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-18.5 - parent: 0 - type: Transform -- uid: 6398 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -1.5,-19.5 - parent: 0 - type: Transform -- uid: 6399 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -3.5,-19.5 - parent: 0 - type: Transform -- uid: 6400 - type: Carpet - components: - - pos: -3.5,-18.5 - parent: 0 - type: Transform -- uid: 6401 - type: Carpet - components: - - pos: -3.5,-17.5 - parent: 0 - type: Transform -- uid: 6402 - type: Carpet - components: - - pos: -3.5,-16.5 - parent: 0 - type: Transform -- uid: 6403 - type: Carpet - components: - - pos: -2.5,-18.5 - parent: 0 - type: Transform -- uid: 6404 - type: Carpet - components: - - pos: -2.5,-17.5 - parent: 0 - type: Transform -- uid: 6405 - type: Carpet - components: - - pos: -2.5,-16.5 - parent: 0 - type: Transform -- uid: 6406 - type: Carpet - components: - - pos: -1.5,-18.5 - parent: 0 - type: Transform -- uid: 6407 - type: Carpet - components: - - pos: -1.5,-17.5 - parent: 0 - type: Transform -- uid: 6408 - type: Carpet - components: - - pos: -1.5,-16.5 - parent: 0 - type: Transform -- uid: 6409 - type: Lamp - components: - - pos: -4.3562155,-15.356113 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 6410 - type: FoodSnackChips - components: - - pos: -4.4655905,-19.449863 - parent: 0 - type: Transform -- uid: 6411 - type: BoxFolderGrey - components: - - pos: -0.43434072,-19.465488 - parent: 0 - type: Transform -- uid: 6412 - type: Pen - components: - - pos: -0.24684072,-19.262363 - parent: 0 - type: Transform -- uid: 6413 - type: CigarCase - components: - - pos: -0.43434072,-15.356113 - parent: 0 - type: Transform -- uid: 6414 - type: FirelockGlass - components: - - pos: 6.5,-12.5 - parent: 0 - type: Transform -- uid: 6415 - type: FirelockGlass - components: - - pos: 6.5,-11.5 - parent: 0 - type: Transform -- uid: 6416 - type: GasVentPump - components: - - pos: 8.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6417 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 11.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6418 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6419 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -3.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6420 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -1.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6421 - type: ClosetEmergencyFilledRandom - components: - - pos: 2.5,-31.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6422 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,-32.5 - parent: 0 - type: Transform - - sprite: Structures/Machines/VendingMachines/cigs.rsi - type: Sprite -- uid: 6423 - type: DisposalYJunction - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 0 - type: Transform -- uid: 6424 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-30.5 - parent: 0 - type: Transform -- uid: 6425 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-30.5 - parent: 0 - type: Transform -- uid: 6426 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-30.5 - parent: 0 - type: Transform -- uid: 6427 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-30.5 - parent: 0 - type: Transform -- uid: 6428 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-30.5 - parent: 0 - type: Transform -- uid: 6429 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-30.5 - parent: 0 - type: Transform -- uid: 6430 - type: DisposalUnit - components: - - pos: 2.5,-35.5 - parent: 0 - type: Transform -- uid: 6431 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-35.5 - parent: 0 - type: Transform -- uid: 6432 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 0.5,-35.5 - parent: 0 - type: Transform -- uid: 6433 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-35.5 - parent: 0 - type: Transform -- uid: 6434 - type: DisposalPipe - components: - - pos: 0.5,-34.5 - parent: 0 - type: Transform -- uid: 6435 - type: DisposalPipe - components: - - pos: 0.5,-33.5 - parent: 0 - type: Transform -- uid: 6436 - type: DisposalPipe - components: - - pos: 0.5,-32.5 - parent: 0 - type: Transform -- uid: 6437 - type: DisposalPipe - components: - - pos: 0.5,-31.5 - parent: 0 - type: Transform -- uid: 6438 - type: PottedPlantRandom - components: - - pos: 2.5,-34.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 6439 - type: VendingMachineSecDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-29.5 - parent: 0 - type: Transform -- uid: 6440 - type: LockerSecurityFilled - components: - - pos: -1.5,-29.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6441 - type: filingCabinet - components: - - pos: -3.5,-24.5 - parent: 0 - type: Transform -- uid: 6442 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6443 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6444 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6445 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6446 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6447 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6448 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6449 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6450 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6451 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6452 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6453 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6454 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6455 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -3.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6456 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6457 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6458 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-31.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6459 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6460 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6461 - type: GasVentPump - components: - - pos: -1.5,-31.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6462 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6463 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6464 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6465 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6466 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6467 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6468 - type: GasPipeStraight - components: - - pos: -2.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6469 - type: GasPipeStraight - components: - - pos: -2.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6470 - type: GasPipeStraight - components: - - pos: -2.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6471 - type: GasVentPump - components: - - pos: -2.5,-28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6472 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6473 - type: ComputerCriminalRecords - components: - - pos: -3.5,-26.5 - parent: 0 - type: Transform -- uid: 6474 - type: ComputerCrewMonitoring - components: - - rot: 3.141592653589793 rad - pos: -3.5,-28.5 - parent: 0 - type: Transform -- uid: 6475 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-27.5 - parent: 0 - type: Transform -- uid: 6476 - type: TableReinforced - components: - - pos: -2.5,-24.5 - parent: 0 - type: Transform -- uid: 6477 - type: TableReinforced - components: - - pos: -1.5,-24.5 - parent: 0 - type: Transform -- uid: 6478 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6479 - type: Handcuffs - components: - - pos: -2.4305947,-24.439144 - parent: 0 - type: Transform -- uid: 6480 - type: CrowbarRed - components: - - pos: -2.4305947,-24.470394 - parent: 0 - type: Transform -- uid: 6481 - type: RadioHandheld - components: - - pos: -1.5399697,-24.439144 - parent: 0 - type: Transform -- uid: 6482 - type: Table - components: - - pos: -1.5,-27.5 - parent: 0 - type: Transform -- uid: 6483 - type: WeaponCapacitorRecharger - components: - - pos: -1.5,-27.5 - parent: 0 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 6484 - type: ChairOfficeDark - components: - - pos: -1.5,-26.5 - parent: 0 - type: Transform -- uid: 6485 - type: ExtinguisherCabinetFilled - components: - - pos: -0.5,-26.5 - parent: 0 - type: Transform -- uid: 6486 - type: PosterLegitNanotrasenLogo - components: - - pos: -0.5,-23.5 - parent: 0 - type: Transform -- uid: 6487 - type: PosterLegitNanotrasenLogo - components: - - pos: -4.5,-30.5 - parent: 0 - type: Transform -- uid: 6488 - type: PosterLegitCohibaRobustoAd - components: - - pos: -2.5,-20.5 - parent: 0 - type: Transform -- uid: 6489 - type: RandomPosterLegit - components: - - pos: -3.5,-20.5 - parent: 0 - type: Transform -- uid: 6490 - type: RandomPosterLegit - components: - - pos: 5.5,-10.5 - parent: 0 - type: Transform -- uid: 6491 - type: RandomPosterLegit - components: - - pos: 10.5,-3.5 - parent: 0 - type: Transform -- uid: 6492 - type: RandomPosterContraband - components: - - pos: 15.5,9.5 - parent: 0 - type: Transform -- uid: 6493 - type: RandomPosterContraband - components: - - pos: 17.5,-30.5 - parent: 0 - type: Transform -- uid: 6494 - type: FirelockGlass - components: - - pos: -25.5,-10.5 - parent: 0 - type: Transform -- uid: 6495 - type: FirelockGlass - components: - - pos: -26.5,-10.5 - parent: 0 - type: Transform -- uid: 6496 - type: FirelockGlass - components: - - pos: -21.5,-11.5 - parent: 0 - type: Transform -- uid: 6497 - type: FirelockGlass - components: - - pos: -21.5,-12.5 - parent: 0 - type: Transform -- uid: 6498 - type: WallSolid - components: - - pos: -28.5,-12.5 - parent: 0 - type: Transform -- uid: 6499 - type: FirelockGlass - components: - - pos: -11.5,-11.5 - parent: 0 - type: Transform -- uid: 6500 - type: FirelockGlass - components: - - pos: -11.5,-12.5 - parent: 0 - type: Transform -- uid: 6501 - type: WallSolid - components: - - pos: -28.5,-13.5 - parent: 0 - type: Transform -- uid: 6502 - type: WallSolid - components: - - pos: -27.5,-13.5 - parent: 0 - type: Transform -- uid: 6503 - type: WallSolid - components: - - pos: -21.5,-13.5 - parent: 0 - type: Transform -- uid: 6504 - type: WallSolid - components: - - pos: -22.5,-13.5 - parent: 0 - type: Transform -- uid: 6505 - type: WallSolid - components: - - pos: -21.5,-14.5 - parent: 0 - type: Transform -- uid: 6506 - type: WallSolid - components: - - pos: -21.5,-15.5 - parent: 0 - type: Transform -- uid: 6507 - type: WallSolid - components: - - pos: -21.5,-16.5 - parent: 0 - type: Transform -- uid: 6508 - type: WallSolid - components: - - pos: -21.5,-17.5 - parent: 0 - type: Transform -- uid: 6509 - type: WallSolid - components: - - pos: -21.5,-18.5 - parent: 0 - type: Transform -- uid: 6510 - type: WallSolid - components: - - pos: -21.5,-19.5 - parent: 0 - type: Transform -- uid: 6511 - type: WallSolid - components: - - pos: -21.5,-20.5 - parent: 0 - type: Transform -- uid: 6512 - type: WallSolid - components: - - pos: -21.5,-21.5 - parent: 0 - type: Transform -- uid: 6513 - type: WallSolid - components: - - pos: -22.5,-21.5 - parent: 0 - type: Transform -- uid: 6514 - type: WallSolid - components: - - pos: -23.5,-21.5 - parent: 0 - type: Transform -- uid: 6515 - type: WallSolid - components: - - pos: -24.5,-21.5 - parent: 0 - type: Transform -- uid: 6516 - type: WallSolid - components: - - pos: -25.5,-21.5 - parent: 0 - type: Transform -- uid: 6517 - type: WallSolid - components: - - pos: -26.5,-21.5 - parent: 0 - type: Transform -- uid: 6518 - type: WallSolid - components: - - pos: -27.5,-21.5 - parent: 0 - type: Transform -- uid: 6519 - type: WallSolid - components: - - pos: -14.5,-14.5 - parent: 0 - type: Transform -- uid: 6520 - type: WallSolid - components: - - pos: -29.5,-21.5 - parent: 0 - type: Transform -- uid: 6521 - type: WallSolid - components: - - pos: -29.5,-20.5 - parent: 0 - type: Transform -- uid: 6522 - type: WallSolid - components: - - pos: -30.5,-20.5 - parent: 0 - type: Transform -- uid: 6523 - type: WallSolid - components: - - pos: -29.5,-22.5 - parent: 0 - type: Transform -- uid: 6524 - type: WallSolid - components: - - pos: -29.5,-23.5 - parent: 0 - type: Transform -- uid: 6525 - type: WallSolid - components: - - pos: -29.5,-24.5 - parent: 0 - type: Transform -- uid: 6526 - type: WallSolid - components: - - pos: -30.5,-24.5 - parent: 0 - type: Transform -- uid: 6527 - type: WallSolid - components: - - pos: -31.5,-24.5 - parent: 0 - type: Transform -- uid: 6528 - type: WallSolid - components: - - pos: -32.5,-24.5 - parent: 0 - type: Transform -- uid: 6529 - type: WallSolid - components: - - pos: -33.5,-24.5 - parent: 0 - type: Transform -- uid: 6530 - type: WallSolid - components: - - pos: -33.5,-23.5 - parent: 0 - type: Transform -- uid: 6531 - type: WallSolid - components: - - pos: -33.5,-22.5 - parent: 0 - type: Transform -- uid: 6532 - type: WallSolid - components: - - pos: -33.5,-21.5 - parent: 0 - type: Transform -- uid: 6533 - type: WallSolid - components: - - pos: -33.5,-20.5 - parent: 0 - type: Transform -- uid: 6534 - type: WallSolid - components: - - pos: -33.5,-19.5 - parent: 0 - type: Transform -- uid: 6535 - type: WallSolid - components: - - pos: -33.5,-18.5 - parent: 0 - type: Transform -- uid: 6536 - type: WallSolid - components: - - pos: -33.5,-17.5 - parent: 0 - type: Transform -- uid: 6537 - type: WallSolid - components: - - pos: -33.5,-16.5 - parent: 0 - type: Transform -- uid: 6538 - type: WallSolid - components: - - pos: -33.5,-15.5 - parent: 0 - type: Transform -- uid: 6539 - type: WallSolid - components: - - pos: -33.5,-14.5 - parent: 0 - type: Transform -- uid: 6540 - type: WallSolid - components: - - pos: -33.5,-13.5 - parent: 0 - type: Transform -- uid: 6541 - type: WallSolid - components: - - pos: -32.5,-13.5 - parent: 0 - type: Transform -- uid: 6542 - type: WallSolid - components: - - pos: -31.5,-13.5 - parent: 0 - type: Transform -- uid: 6543 - type: WallSolid - components: - - pos: -30.5,-13.5 - parent: 0 - type: Transform -- uid: 6544 - type: WallSolid - components: - - pos: -29.5,-13.5 - parent: 0 - type: Transform -- uid: 6545 - type: WallSolid - components: - - pos: -32.5,-20.5 - parent: 0 - type: Transform -- uid: 6546 - type: WallSolid - components: - - pos: -15.5,-14.5 - parent: 0 - type: Transform -- uid: 6547 - type: WallSolid - components: - - pos: -16.5,-14.5 - parent: 0 - type: Transform -- uid: 6548 - type: WallSolid - components: - - pos: -17.5,-14.5 - parent: 0 - type: Transform -- uid: 6549 - type: WallSolid - components: - - pos: -17.5,-13.5 - parent: 0 - type: Transform -- uid: 6550 - type: WallSolid - components: - - pos: -17.5,-15.5 - parent: 0 - type: Transform -- uid: 6551 - type: WallSolid - components: - - pos: -17.5,-16.5 - parent: 0 - type: Transform -- uid: 6552 - type: WallSolid - components: - - pos: -17.5,-18.5 - parent: 0 - type: Transform -- uid: 6553 - type: WallSolid - components: - - pos: -17.5,-19.5 - parent: 0 - type: Transform -- uid: 6554 - type: WallSolid - components: - - pos: -17.5,-20.5 - parent: 0 - type: Transform -- uid: 6555 - type: ClothingOuterCoatLab - components: - - pos: -19.477098,-19.451036 - parent: 0 - type: Transform -- uid: 6556 - type: ClothingMaskSterile - components: - - pos: -18.570848,-19.357286 - parent: 0 - type: Transform -- uid: 6557 - type: ClothingHandsGlovesLatex - components: - - pos: -18.586473,-19.497911 - parent: 0 - type: Transform -- uid: 6558 - type: ClothingEyesGlasses - components: - - pos: -19.461473,-19.513536 - parent: 0 - type: Transform -- uid: 6559 - type: WallReinforced - components: - - pos: -7.5,-13.5 - parent: 0 - type: Transform -- uid: 6560 - type: WallReinforced - components: - - pos: -13.5,-18.5 - parent: 0 - type: Transform -- uid: 6561 - type: WallReinforced - components: - - pos: -13.5,-16.5 - parent: 0 - type: Transform -- uid: 6562 - type: WallReinforced - components: - - pos: -13.5,-14.5 - parent: 0 - type: Transform -- uid: 6563 - type: WallReinforced - components: - - pos: -13.5,-13.5 - parent: 0 - type: Transform -- uid: 6564 - type: WallReinforced - components: - - pos: -13.5,-19.5 - parent: 0 - type: Transform -- uid: 6565 - type: WallReinforced - components: - - pos: -10.5,-19.5 - parent: 0 - type: Transform -- uid: 6566 - type: WallReinforced - components: - - pos: -7.5,-19.5 - parent: 0 - type: Transform -- uid: 6567 - type: WallReinforced - components: - - pos: -7.5,-17.5 - parent: 0 - type: Transform -- uid: 6568 - type: WallReinforced - components: - - pos: -7.5,-15.5 - parent: 0 - type: Transform -- uid: 6569 - type: WallReinforced - components: - - pos: -11.5,-13.5 - parent: 0 - type: Transform -- uid: 6570 - type: ShuttersNormalOpen - components: - - pos: -7.5,-16.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6587 - type: SignalReceiver -- uid: 6571 - type: ReinforcedWindow - components: - - pos: -13.5,-15.5 - parent: 0 - type: Transform -- uid: 6572 - type: ReinforcedWindow - components: - - pos: -13.5,-17.5 - parent: 0 - type: Transform -- uid: 6573 - type: ReinforcedWindow - components: - - pos: -8.5,-19.5 - parent: 0 - type: Transform -- uid: 6574 - type: ShuttersNormalOpen - components: - - pos: -12.5,-13.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6587 - type: SignalReceiver -- uid: 6575 - type: ShuttersNormalOpen - components: - - pos: -9.5,-13.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6587 - type: SignalReceiver -- uid: 6576 - type: ShuttersNormalOpen - components: - - pos: -10.5,-13.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6587 - type: SignalReceiver -- uid: 6577 - type: ShuttersNormalOpen - components: - - pos: -8.5,-13.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6587 - type: SignalReceiver -- uid: 6578 - type: ShuttersNormalOpen - components: - - pos: -7.5,-14.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6587 - type: SignalReceiver -- uid: 6579 - type: ReinforcedWindow - components: - - pos: -12.5,-19.5 - parent: 0 - type: Transform -- uid: 6580 - type: TableReinforced - components: - - pos: -9.5,-13.5 - parent: 0 - type: Transform -- uid: 6581 - type: TableReinforced - components: - - pos: -11.5,-19.5 - parent: 0 - type: Transform -- uid: 6582 - type: WindoorChemistryLocked - components: - - pos: -9.5,-13.5 - parent: 0 - type: Transform -- uid: 6583 - type: WindoorChemistryLocked - components: - - rot: 3.141592653589793 rad - pos: -11.5,-19.5 - parent: 0 - type: Transform -- uid: 6584 - type: FirelockGlass - components: - - pos: -9.5,-13.5 - parent: 0 - type: Transform -- uid: 6585 - type: FirelockGlass - components: - - pos: -11.5,-19.5 - parent: 0 - type: Transform -- uid: 6586 - type: ShuttersNormalOpen - components: - - pos: -7.5,-18.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 6587 - type: SignalReceiver -- uid: 6587 - type: SignalButton - components: - - pos: -13.5,-14.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 6574 - - port: Toggle - uid: 6576 - - port: Toggle - uid: 6575 - - port: Toggle - uid: 6577 - - port: Toggle - uid: 6578 - - port: Toggle - uid: 6570 - - port: Toggle - uid: 6586 - type: SignalTransmitter -- uid: 6588 - type: ReinforcedWindow - components: - - pos: -12.5,-13.5 - parent: 0 - type: Transform -- uid: 6589 - type: ReinforcedWindow - components: - - pos: -10.5,-13.5 - parent: 0 - type: Transform -- uid: 6590 - type: ReinforcedWindow - components: - - pos: -8.5,-13.5 - parent: 0 - type: Transform -- uid: 6591 - type: ReinforcedWindow - components: - - pos: -7.5,-14.5 - parent: 0 - type: Transform -- uid: 6592 - type: ReinforcedWindow - components: - - pos: -7.5,-16.5 - parent: 0 - type: Transform -- uid: 6593 - type: ReinforcedWindow - components: - - pos: -7.5,-18.5 - parent: 0 - type: Transform -- uid: 6594 - type: Grille - components: - - pos: -13.5,-17.5 - parent: 0 - type: Transform -- uid: 6595 - type: Grille - components: - - pos: -13.5,-15.5 - parent: 0 - type: Transform -- uid: 6596 - type: Grille - components: - - pos: -12.5,-13.5 - parent: 0 - type: Transform -- uid: 6597 - type: Grille - components: - - pos: -10.5,-13.5 - parent: 0 - type: Transform -- uid: 6598 - type: Grille - components: - - pos: -8.5,-13.5 - parent: 0 - type: Transform -- uid: 6599 - type: Grille - components: - - pos: -7.5,-14.5 - parent: 0 - type: Transform -- uid: 6600 - type: Grille - components: - - pos: -7.5,-16.5 - parent: 0 - type: Transform -- uid: 6601 - type: Grille - components: - - pos: -7.5,-18.5 - parent: 0 - type: Transform -- uid: 6602 - type: Grille - components: - - pos: -8.5,-19.5 - parent: 0 - type: Transform -- uid: 6603 - type: Grille - components: - - pos: -12.5,-19.5 - parent: 0 - type: Transform -- uid: 6604 - type: chem_dispenser - components: - - pos: -12.5,-18.5 - parent: 0 - type: Transform -- uid: 6605 - type: chem_dispenser - components: - - pos: -8.5,-14.5 - parent: 0 - type: Transform -- uid: 6606 - type: chem_master - components: - - pos: -8.5,-15.5 - parent: 0 - type: Transform -- uid: 6607 - type: chem_master - components: - - pos: -12.5,-17.5 - parent: 0 - type: Transform -- uid: 6608 - type: VendingMachineChemDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,-15.5 - parent: 0 - type: Transform -- uid: 6609 - type: LockerChemistryFilled - components: - - pos: -12.5,-14.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 6610 - type: TableGlass - components: - - pos: -12.5,-16.5 - parent: 0 - type: Transform -- uid: 6611 - type: TableGlass - components: - - pos: -10.5,-14.5 - parent: 0 - type: Transform -- uid: 6612 - type: TableGlass - components: - - pos: -10.5,-18.5 - parent: 0 - type: Transform -- uid: 6613 - type: TableGlass - components: - - pos: -8.5,-18.5 - parent: 0 - type: Transform -- uid: 6614 - type: TableGlass - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform -- uid: 6615 - type: DisposalUnit - components: - - pos: -8.5,-16.5 - parent: 0 - type: Transform -- uid: 6616 - type: KitchenReagentGrinder - components: - - pos: -12.5,-16.5 - parent: 0 - type: Transform -- uid: 6617 - type: AirlockChemistryLocked - components: - - pos: -9.5,-19.5 - parent: 0 - type: Transform -- uid: 6618 - type: SignChem - components: - - pos: -10.5,-19.5 - parent: 0 - type: Transform -- uid: 6619 - type: ChairOfficeLight - components: - - pos: -11.5,-18.5 - parent: 0 - type: Transform -- uid: 6620 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-14.5 - parent: 0 - type: Transform -- uid: 6621 - type: SheetPlasma1 - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform -- uid: 6622 - type: SheetPlasma1 - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform -- uid: 6623 - type: SheetPlasma1 - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform -- uid: 6624 - type: SheetPlasma1 - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform -- uid: 6625 - type: SheetPlasma1 - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform -- uid: 6626 - type: SheetPlasma1 - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform -- uid: 6627 - type: SheetPlasma1 - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform -- uid: 6628 - type: SheetPlasma1 - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform -- uid: 6629 - type: SheetPlasma1 - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform -- uid: 6630 - type: SheetPlasma1 - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform -- uid: 6631 - type: SheetPlasma1 - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform -- uid: 6632 - type: SheetPlasma1 - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform -- uid: 6633 - type: SheetPlasma1 - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform -- uid: 6634 - type: SheetPlasma1 - components: - - pos: -8.5,-17.5 - parent: 0 - type: Transform -- uid: 6635 - type: BoxBeaker - components: - - pos: -8.489843,-17.885523 - parent: 0 - type: Transform -- uid: 6636 - type: BoxPillCanister - components: - - pos: -8.489843,-18.166773 - parent: 0 - type: Transform -- uid: 6637 - type: BoxFolderWhite - components: - - pos: -11.521093,-19.541773 - parent: 0 - type: Transform -- uid: 6638 - type: Dropper - components: - - pos: -8.507751,-18.637379 - parent: 0 - type: Transform -- uid: 6639 - type: HandLabeler - components: - - pos: -8.452131,-17.332127 - parent: 0 - type: Transform -- uid: 6640 - type: ClothingMaskBreathMedical - components: - - pos: -10.617126,-14.356129 - parent: 0 - type: Transform -- uid: 6641 - type: ClothingMaskBreathMedical - components: - - pos: -10.429626,-14.481129 - parent: 0 - type: Transform -- uid: 6642 - type: SignChemistry1 - components: - - pos: -7.5,-13.5 - parent: 0 - type: Transform -- uid: 6643 - type: SignScience2 - components: - - pos: 2.5,-13.5 - parent: 0 - type: Transform -- uid: 6644 - type: SignRND - components: - - pos: 7.5,-19.5 - parent: 0 - type: Transform -- uid: 6645 - type: SignToxins2 - components: - - pos: 26.5,-27.5 - parent: 0 - type: Transform -- uid: 6646 - type: DogBed - components: - - pos: -11.5,-14.5 - parent: 0 - type: Transform -- uid: 6647 - type: SpawnMobWalter - components: - - pos: -11.5,-14.5 - parent: 0 - type: Transform -- uid: 6648 - type: SpawnPointChemist - components: - - pos: -11.5,-16.5 - parent: 0 - type: Transform -- uid: 6649 - type: SpawnPointChemist - components: - - pos: -9.5,-16.5 - parent: 0 - type: Transform -- uid: 6650 - type: TintedWindow - components: - - pos: -20.5,-13.5 - parent: 0 - type: Transform -- uid: 6651 - type: TintedWindow - components: - - pos: -18.5,-13.5 - parent: 0 - type: Transform -- uid: 6652 - type: Grille - components: - - pos: -20.5,-13.5 - parent: 0 - type: Transform -- uid: 6653 - type: Grille - components: - - pos: -18.5,-13.5 - parent: 0 - type: Transform -- uid: 6654 - type: AirlockMedicalLocked - components: - - pos: -17.5,-17.5 - parent: 0 - type: Transform -- uid: 6655 - type: AirlockMedicalLocked - components: - - pos: -19.5,-13.5 - parent: 0 - type: Transform -- uid: 6656 - type: WallSolid - components: - - pos: -19.5,-20.5 - parent: 0 - type: Transform -- uid: 6657 - type: Table - components: - - pos: -20.5,-14.5 - parent: 0 - type: Transform -- uid: 6658 - type: WallSolid - components: - - pos: -18.5,-20.5 - parent: 0 - type: Transform -- uid: 6663 - type: BoxBodyBag - components: - - pos: -20.5,-14.5 - parent: 0 - type: Transform -- uid: 6664 - type: SpawnMobPossumMorty - components: - - pos: -18.5,-16.5 - parent: 0 - type: Transform -- uid: 6665 - type: Table - components: - - pos: -18.5,-19.5 - parent: 0 - type: Transform -- uid: 6666 - type: BoxBodyBag - components: - - pos: -20.508348,-19.341661 - parent: 0 - type: Transform -- uid: 6667 - type: Table - components: - - pos: -19.5,-19.5 - parent: 0 - type: Transform -- uid: 6668 - type: SignCloning - components: - - pos: -17.5,-20.5 - parent: 0 - type: Transform -- uid: 6669 - type: Window - components: - - pos: -26.5,-13.5 - parent: 0 - type: Transform -- uid: 6670 - type: Window - components: - - pos: -23.5,-13.5 - parent: 0 - type: Transform -- uid: 6671 - type: Grille - components: - - pos: -26.5,-13.5 - parent: 0 - type: Transform -- uid: 6672 - type: Grille - components: - - pos: -23.5,-13.5 - parent: 0 - type: Transform -- uid: 6673 - type: AirlockGlass - components: - - pos: -25.5,-13.5 - parent: 0 - type: Transform -- uid: 6674 - type: AirlockGlass - components: - - pos: -24.5,-13.5 - parent: 0 - type: Transform -- uid: 6675 - type: AirlockServiceLocked - components: - - pos: -31.5,-20.5 - parent: 0 - type: Transform -- uid: 6676 - type: Table - components: - - pos: -20.5,-19.5 - parent: 0 - type: Transform -- uid: 6677 - type: WallSolid - components: - - pos: -20.5,-20.5 - parent: 0 - type: Transform -- uid: 6678 - type: WallSolid - components: - - pos: -13.5,-20.5 - parent: 0 - type: Transform -- uid: 6679 - type: SignMorgue - components: - - pos: -17.5,-16.5 - parent: 0 - type: Transform -- uid: 6680 - type: SignLibrary - components: - - pos: -22.5,-13.5 - parent: 0 - type: Transform -- uid: 6681 - type: ReinforcedWindow - components: - - pos: -16.5,-20.5 - parent: 0 - type: Transform -- uid: 6682 - type: ReinforcedWindow - components: - - pos: -14.5,-20.5 - parent: 0 - type: Transform -- uid: 6683 - type: Grille - components: - - pos: -16.5,-20.5 - parent: 0 - type: Transform -- uid: 6684 - type: Grille - components: - - pos: -14.5,-20.5 - parent: 0 - type: Transform -- uid: 6685 - type: SignHydro3 - components: - - pos: -18.5,-10.5 - parent: 0 - type: Transform -- uid: 6686 - type: AirlockMedicalGlassLocked - components: - - pos: -15.5,-20.5 - parent: 0 - type: Transform -- uid: 6687 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -3.5,-32.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 6688 - type: CableApcExtension - components: - - pos: -9.5,-26.5 - parent: 0 - type: Transform -- uid: 6689 - type: CableApcExtension - components: - - pos: -9.5,-25.5 - parent: 0 - type: Transform -- uid: 6690 - type: SignalButton - components: - - pos: 26.5,-28.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 5575 - - port: Toggle - uid: 5574 - - port: Toggle - uid: 5573 - type: SignalTransmitter -- uid: 6691 - type: TableGlass - components: - - pos: -14.5,-19.5 - parent: 0 - type: Transform -- uid: 6692 - type: CheapRollerBed - components: - - pos: -16.511543,-19.450161 - parent: 0 - type: Transform -- uid: 6693 - type: TintedWindow - components: - - pos: -12.5,-35.5 - parent: 0 - type: Transform -- uid: 6694 - type: Airlock - components: - - pos: -12.5,-34.5 - parent: 0 - type: Transform -- uid: 6695 - type: SignChapel - components: - - pos: -12.5,-36.5 - parent: 0 - type: Transform -- uid: 6696 - type: WallReinforced - components: - - pos: -13.5,-37.5 - parent: 0 - type: Transform -- uid: 6697 - type: WallReinforced - components: - - pos: -14.5,-37.5 - parent: 0 - type: Transform -- uid: 6698 - type: WallReinforced - components: - - pos: -18.5,-37.5 - parent: 0 - type: Transform -- uid: 6699 - type: WallReinforced - components: - - pos: -18.5,-38.5 - parent: 0 - type: Transform -- uid: 6700 - type: WallReinforced - components: - - pos: -18.5,-39.5 - parent: 0 - type: Transform -- uid: 6701 - type: WallReinforced - components: - - pos: -18.5,-40.5 - parent: 0 - type: Transform -- uid: 6702 - type: WallReinforced - components: - - pos: -21.5,-40.5 - parent: 0 - type: Transform -- uid: 6703 - type: ReinforcedWindow - components: - - pos: -19.5,-40.5 - parent: 0 - type: Transform -- uid: 6704 - type: WallReinforced - components: - - pos: -22.5,-40.5 - parent: 0 - type: Transform -- uid: 6705 - type: WallReinforced - components: - - pos: -23.5,-40.5 - parent: 0 - type: Transform -- uid: 6706 - type: WallReinforced - components: - - pos: -24.5,-40.5 - parent: 0 - type: Transform -- uid: 6707 - type: WallReinforced - components: - - pos: -25.5,-40.5 - parent: 0 - type: Transform -- uid: 6708 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-39.5 - parent: 0 - type: Transform -- uid: 6709 - type: WindowTintedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-38.5 - parent: 0 - type: Transform -- uid: 6710 - type: ReinforcedWindow - components: - - pos: -20.5,-40.5 - parent: 0 - type: Transform -- uid: 6711 - type: WallSolid - components: - - pos: -20.5,-37.5 - parent: 0 - type: Transform -- uid: 6712 - type: WallSolid - components: - - pos: -21.5,-37.5 - parent: 0 - type: Transform -- uid: 6713 - type: WallSolid - components: - - pos: -21.5,-38.5 - parent: 0 - type: Transform -- uid: 6714 - type: WallSolid - components: - - pos: -25.5,-39.5 - parent: 0 - type: Transform -- uid: 6715 - type: WallSolid - components: - - pos: -25.5,-38.5 - parent: 0 - type: Transform -- uid: 6716 - type: WallSolid - components: - - pos: -26.5,-38.5 - parent: 0 - type: Transform -- uid: 6717 - type: WallSolid - components: - - pos: -27.5,-38.5 - parent: 0 - type: Transform -- uid: 6718 - type: WallSolid - components: - - pos: -28.5,-38.5 - parent: 0 - type: Transform -- uid: 6719 - type: WallSolid - components: - - pos: -28.5,-37.5 - parent: 0 - type: Transform -- uid: 6720 - type: WallSolid - components: - - pos: -28.5,-36.5 - parent: 0 - type: Transform -- uid: 6721 - type: WallSolid - components: - - pos: -28.5,-35.5 - parent: 0 - type: Transform -- uid: 6722 - type: WallSolid - components: - - pos: -28.5,-34.5 - parent: 0 - type: Transform -- uid: 6723 - type: WallSolid - components: - - pos: -20.5,-35.5 - parent: 0 - type: Transform -- uid: 6724 - type: WallSolid - components: - - pos: -20.5,-34.5 - parent: 0 - type: Transform -- uid: 6725 - type: WallSolid - components: - - pos: -20.5,-33.5 - parent: 0 - type: Transform -- uid: 6726 - type: WallSolid - components: - - pos: -20.5,-32.5 - parent: 0 - type: Transform -- uid: 6727 - type: WallSolid - components: - - pos: -22.5,-34.5 - parent: 0 - type: Transform -- uid: 6728 - type: WallSolid - components: - - pos: -23.5,-34.5 - parent: 0 - type: Transform -- uid: 6729 - type: WallSolid - components: - - pos: -24.5,-33.5 - parent: 0 - type: Transform -- uid: 6730 - type: WallSolid - components: - - pos: -25.5,-34.5 - parent: 0 - type: Transform -- uid: 6731 - type: WallSolid - components: - - pos: -27.5,-34.5 - parent: 0 - type: Transform -- uid: 6732 - type: WallSolid - components: - - pos: -27.5,-33.5 - parent: 0 - type: Transform -- uid: 6733 - type: WallSolid - components: - - pos: -27.5,-32.5 - parent: 0 - type: Transform -- uid: 6734 - type: WallSolid - components: - - pos: -27.5,-31.5 - parent: 0 - type: Transform -- uid: 6735 - type: WallSolid - components: - - pos: -27.5,-30.5 - parent: 0 - type: Transform -- uid: 6736 - type: WallSolid - components: - - pos: -26.5,-30.5 - parent: 0 - type: Transform -- uid: 6737 - type: WallSolid - components: - - pos: -25.5,-30.5 - parent: 0 - type: Transform -- uid: 6738 - type: WallSolid - components: - - pos: -25.5,-31.5 - parent: 0 - type: Transform -- uid: 6739 - type: WallSolid - components: - - pos: -25.5,-32.5 - parent: 0 - type: Transform -- uid: 6740 - type: WallSolid - components: - - pos: -25.5,-33.5 - parent: 0 - type: Transform -- uid: 6741 - type: WallSolid - components: - - pos: -23.5,-33.5 - parent: 0 - type: Transform -- uid: 6742 - type: WallSolid - components: - - pos: -23.5,-32.5 - parent: 0 - type: Transform -- uid: 6743 - type: WallSolid - components: - - pos: -23.5,-31.5 - parent: 0 - type: Transform -- uid: 6744 - type: WallSolid - components: - - pos: -22.5,-31.5 - parent: 0 - type: Transform -- uid: 6745 - type: WallSolid - components: - - pos: -20.5,-31.5 - parent: 0 - type: Transform -- uid: 6746 - type: WallSolid - components: - - pos: -19.5,-31.5 - parent: 0 - type: Transform -- uid: 6747 - type: WallSolid - components: - - pos: -12.5,-32.5 - parent: 0 - type: Transform -- uid: 6748 - type: WallSolid - components: - - pos: -12.5,-31.5 - parent: 0 - type: Transform -- uid: 6749 - type: WallSolid - components: - - pos: -13.5,-31.5 - parent: 0 - type: Transform -- uid: 6750 - type: WallSolid - components: - - pos: -14.5,-31.5 - parent: 0 - type: Transform -- uid: 6751 - type: WallSolid - components: - - pos: -15.5,-31.5 - parent: 0 - type: Transform -- uid: 6752 - type: WallSolid - components: - - pos: -16.5,-31.5 - parent: 0 - type: Transform -- uid: 6753 - type: WallSolid - components: - - pos: -17.5,-31.5 - parent: 0 - type: Transform -- uid: 6754 - type: ReinforcedWindow - components: - - pos: -15.5,-37.5 - parent: 0 - type: Transform -- uid: 6755 - type: ReinforcedWindow - components: - - pos: -16.5,-37.5 - parent: 0 - type: Transform -- uid: 6756 - type: ReinforcedWindow - components: - - pos: -17.5,-37.5 - parent: 0 - type: Transform -- uid: 6757 - type: TintedWindow - components: - - pos: -25.5,-37.5 - parent: 0 - type: Transform -- uid: 6758 - type: TintedWindow - components: - - pos: -25.5,-35.5 - parent: 0 - type: Transform -- uid: 6759 - type: WallReinforced - components: - - pos: -7.5,-29.5 - parent: 0 - type: Transform -- uid: 6760 - type: WallReinforced - components: - - pos: -7.5,-30.5 - parent: 0 - type: Transform -- uid: 6761 - type: WallReinforced - components: - - pos: -7.5,-31.5 - parent: 0 - type: Transform -- uid: 6762 - type: WallReinforced - components: - - pos: -7.5,-32.5 - parent: 0 - type: Transform -- uid: 6763 - type: WallReinforced - components: - - pos: -7.5,-33.5 - parent: 0 - type: Transform -- uid: 6764 - type: WallSolid - components: - - pos: -10.5,-29.5 - parent: 0 - type: Transform -- uid: 6765 - type: AirlockMaintMedLocked - components: - - pos: -11.5,-29.5 - parent: 0 - type: Transform -- uid: 6766 - type: WallSolid - components: - - pos: -12.5,-29.5 - parent: 0 - type: Transform -- uid: 6767 - type: WallSolid - components: - - pos: -13.5,-29.5 - parent: 0 - type: Transform -- uid: 6768 - type: WallSolid - components: - - pos: -14.5,-29.5 - parent: 0 - type: Transform -- uid: 6769 - type: WallSolid - components: - - pos: -15.5,-29.5 - parent: 0 - type: Transform -- uid: 6770 - type: WallSolid - components: - - pos: -16.5,-29.5 - parent: 0 - type: Transform -- uid: 6771 - type: WallSolid - components: - - pos: -17.5,-29.5 - parent: 0 - type: Transform -- uid: 6772 - type: WallSolid - components: - - pos: -18.5,-29.5 - parent: 0 - type: Transform -- uid: 6773 - type: WallSolid - components: - - pos: -19.5,-29.5 - parent: 0 - type: Transform -- uid: 6774 - type: WallSolid - components: - - pos: -20.5,-29.5 - parent: 0 - type: Transform -- uid: 6775 - type: WallSolid - components: - - pos: -21.5,-29.5 - parent: 0 - type: Transform -- uid: 6776 - type: WallSolid - components: - - pos: -22.5,-29.5 - parent: 0 - type: Transform -- uid: 6777 - type: WallSolid - components: - - pos: -23.5,-29.5 - parent: 0 - type: Transform -- uid: 6778 - type: WallReinforced - components: - - pos: -26.5,-28.5 - parent: 0 - type: Transform -- uid: 6779 - type: WallReinforced - components: - - pos: -27.5,-28.5 - parent: 0 - type: Transform -- uid: 6780 - type: WallReinforced - components: - - pos: -25.5,-28.5 - parent: 0 - type: Transform -- uid: 6781 - type: WallReinforced - components: - - pos: -24.5,-28.5 - parent: 0 - type: Transform -- uid: 6782 - type: WallReinforced - components: - - pos: -23.5,-28.5 - parent: 0 - type: Transform -- uid: 6783 - type: WallReinforced - components: - - pos: -23.5,-24.5 - parent: 0 - type: Transform -- uid: 6784 - type: FireAxeCabinetFilled - components: - - pos: -40.5,6.5 - parent: 0 - type: Transform -- uid: 6785 - type: WallReinforced - components: - - pos: -23.5,-26.5 - parent: 0 - type: Transform -- uid: 6786 - type: WallReinforced - components: - - pos: -23.5,-27.5 - parent: 0 - type: Transform -- uid: 6787 - type: WallReinforced - components: - - pos: -27.5,-24.5 - parent: 0 - type: Transform -- uid: 6788 - type: AirlockMaintMedLocked - components: - - pos: -27.5,-23.5 - parent: 0 - type: Transform -- uid: 6789 - type: WallSolid - components: - - pos: -27.5,-22.5 - parent: 0 - type: Transform -- uid: 6790 - type: AirlockMaintChapelLocked - components: - - pos: -21.5,-31.5 - parent: 0 - type: Transform -- uid: 6791 - type: AirlockMaintChapelLocked - components: - - pos: -18.5,-31.5 - parent: 0 - type: Transform -- uid: 6792 - type: AirlockChapelLocked - components: - - pos: -20.5,-36.5 - parent: 0 - type: Transform -- uid: 6793 - type: AirlockChapelLocked - components: - - pos: -21.5,-34.5 - parent: 0 - type: Transform -- uid: 6794 - type: AirlockChapelLocked - components: - - pos: -25.5,-36.5 - parent: 0 - type: Transform -- uid: 6795 - type: WoodDoor - components: - - pos: -19.5,-37.5 - parent: 0 - type: Transform -- uid: 6796 - type: WoodDoor - components: - - pos: -21.5,-39.5 - parent: 0 - type: Transform -- uid: 6797 - type: ChairWood - components: - - pos: -20.5,-38.5 - parent: 0 - type: Transform -- uid: 6798 - type: ChairWood - components: - - pos: -19.5,-38.5 - parent: 0 - type: Transform -- uid: 6799 - type: Grille - components: - - pos: -15.5,-37.5 - parent: 0 - type: Transform -- uid: 6800 - type: Grille - components: - - pos: -16.5,-37.5 - parent: 0 - type: Transform -- uid: 6801 - type: Grille - components: - - pos: -17.5,-37.5 - parent: 0 - type: Transform -- uid: 6802 - type: Grille - components: - - pos: -19.5,-40.5 - parent: 0 - type: Transform -- uid: 6803 - type: Grille - components: - - pos: -20.5,-40.5 - parent: 0 - type: Transform -- uid: 6804 - type: Grille - components: - - pos: -25.5,-37.5 - parent: 0 - type: Transform -- uid: 6805 - type: Grille - components: - - pos: -25.5,-35.5 - parent: 0 - type: Transform -- uid: 6806 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6807 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6808 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6809 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6810 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6811 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6812 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6813 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6814 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -19.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6815 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6816 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6817 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6818 - type: GasPipeTJunction - components: - - pos: -22.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6819 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6820 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6821 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6822 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6823 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6824 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6825 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6826 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6827 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6828 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-34.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6829 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6830 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-35.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6831 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6832 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6833 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6834 - type: GasPipeTJunction - components: - - pos: -23.5,-35.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6835 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6836 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6837 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6838 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-36.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6839 - type: GasVentScrubber - components: - - pos: -18.5,-33.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6840 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -23.5,-36.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6841 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -22.5,-37.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6842 - type: GasVentPump - components: - - pos: -19.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6844 - type: APCBasic - components: - - pos: -17.5,-31.5 - parent: 0 - type: Transform -- uid: 6845 - type: CableApcExtension - components: - - pos: -17.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6846 - type: CableApcExtension - components: - - pos: -17.5,-32.5 - parent: 0 - type: Transform -- uid: 6847 - type: CableApcExtension - components: - - pos: -17.5,-33.5 - parent: 0 - type: Transform -- uid: 6848 - type: CableApcExtension - components: - - pos: -17.5,-34.5 - parent: 0 - type: Transform -- uid: 6849 - type: CableApcExtension - components: - - pos: -17.5,-35.5 - parent: 0 - type: Transform -- uid: 6850 - type: CableApcExtension - components: - - pos: -17.5,-36.5 - parent: 0 - type: Transform -- uid: 6851 - type: CableApcExtension - components: - - pos: -16.5,-34.5 - parent: 0 - type: Transform -- uid: 6852 - type: CableApcExtension - components: - - pos: -15.5,-34.5 - parent: 0 - type: Transform -- uid: 6853 - type: CableApcExtension - components: - - pos: -14.5,-34.5 - parent: 0 - type: Transform -- uid: 6854 - type: CableApcExtension - components: - - pos: -14.5,-33.5 - parent: 0 - type: Transform -- uid: 6855 - type: CableApcExtension - components: - - pos: -18.5,-34.5 - parent: 0 - type: Transform -- uid: 6856 - type: CableApcExtension - components: - - pos: -19.5,-34.5 - parent: 0 - type: Transform -- uid: 6857 - type: CableApcExtension - components: - - pos: -19.5,-35.5 - parent: 0 - type: Transform -- uid: 6858 - type: CableApcExtension - components: - - pos: -19.5,-36.5 - parent: 0 - type: Transform -- uid: 6859 - type: CableApcExtension - components: - - pos: -19.5,-37.5 - parent: 0 - type: Transform -- uid: 6860 - type: CableApcExtension - components: - - pos: -19.5,-39.5 - parent: 0 - type: Transform -- uid: 6861 - type: CableApcExtension - components: - - pos: -19.5,-38.5 - parent: 0 - type: Transform -- uid: 6862 - type: CableApcExtension - components: - - pos: -20.5,-36.5 - parent: 0 - type: Transform -- uid: 6863 - type: CableApcExtension - components: - - pos: -21.5,-36.5 - parent: 0 - type: Transform -- uid: 6864 - type: CableApcExtension - components: - - pos: -22.5,-36.5 - parent: 0 - type: Transform -- uid: 6865 - type: CableApcExtension - components: - - pos: -23.5,-36.5 - parent: 0 - type: Transform -- uid: 6866 - type: CableApcExtension - components: - - pos: -24.5,-36.5 - parent: 0 - type: Transform -- uid: 6867 - type: CableApcExtension - components: - - pos: -25.5,-36.5 - parent: 0 - type: Transform -- uid: 6868 - type: CableApcExtension - components: - - pos: -26.5,-36.5 - parent: 0 - type: Transform -- uid: 6869 - type: CableApcExtension - components: - - pos: -26.5,-35.5 - parent: 0 - type: Transform -- uid: 6870 - type: CableApcExtension - components: - - pos: -26.5,-34.5 - parent: 0 - type: Transform -- uid: 6871 - type: CableApcExtension - components: - - pos: -26.5,-33.5 - parent: 0 - type: Transform -- uid: 6872 - type: CableApcExtension - components: - - pos: -26.5,-32.5 - parent: 0 - type: Transform -- uid: 6873 - type: CableApcExtension - components: - - pos: -21.5,-35.5 - parent: 0 - type: Transform -- uid: 6874 - type: CableApcExtension - components: - - pos: -21.5,-34.5 - parent: 0 - type: Transform -- uid: 6875 - type: CableApcExtension - components: - - pos: -21.5,-33.5 - parent: 0 - type: Transform -- uid: 6876 - type: CableApcExtension - components: - - pos: -21.5,-32.5 - parent: 0 - type: Transform -- uid: 6877 - type: CableApcExtension - components: - - pos: -17.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6878 - type: CableApcExtension - components: - - pos: -16.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6879 - type: CableApcExtension - components: - - pos: -15.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6880 - type: CableApcExtension - components: - - pos: -14.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6881 - type: CableApcExtension - components: - - pos: -13.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6882 - type: CableApcExtension - components: - - pos: -12.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6883 - type: CableApcExtension - components: - - pos: -11.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6884 - type: CableApcExtension - components: - - pos: -10.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6885 - type: AirlockEngineeringLocked - components: - - pos: -9.5,-32.5 - parent: 0 - type: Transform -- uid: 6886 - type: CableApcExtension - components: - - pos: -10.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6887 - type: CableApcExtension - components: - - pos: -10.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6888 - type: CableApcExtension - components: - - pos: -18.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6889 - type: CableApcExtension - components: - - pos: -19.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6890 - type: CableApcExtension - components: - - pos: -20.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6891 - type: CableApcExtension - components: - - pos: -21.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6892 - type: CableApcExtension - components: - - pos: -22.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6893 - type: CableApcExtension - components: - - pos: -23.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6894 - type: CableApcExtension - components: - - pos: -24.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6895 - type: CableApcExtension - components: - - pos: -24.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6896 - type: CableApcExtension - components: - - pos: -25.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6897 - type: CableApcExtension - components: - - pos: -27.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6898 - type: CableApcExtension - components: - - pos: -26.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6899 - type: SubstationBasic - components: - - pos: -8.5,-30.5 - parent: 0 - type: Transform -- uid: 6900 - type: WallReinforced - components: - - pos: -9.5,-33.5 - parent: 0 - type: Transform -- uid: 6901 - type: WallReinforced - components: - - pos: -8.5,-33.5 - parent: 0 - type: Transform -- uid: 6902 - type: CableMV - components: - - pos: -8.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6903 - type: CableMV - components: - - pos: -8.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6904 - type: CableMV - components: - - pos: -8.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6905 - type: CableMV - components: - - pos: -8.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6906 - type: CableMV - components: - - pos: -9.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6907 - type: CableMV - components: - - pos: -10.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6908 - type: CableMV - components: - - pos: -11.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6909 - type: CableMV - components: - - pos: -11.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6910 - type: CableMV - components: - - pos: -11.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6911 - type: CableMV - components: - - pos: -12.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6912 - type: CableMV - components: - - pos: -13.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6913 - type: CableMV - components: - - pos: -14.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6914 - type: CableMV - components: - - pos: -15.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6915 - type: CableMV - components: - - pos: -16.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6916 - type: CableMV - components: - - pos: -17.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6917 - type: CableMV - components: - - pos: -17.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6918 - type: CableHV - components: - - pos: -8.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6919 - type: CableHV - components: - - pos: -8.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6920 - type: CableHV - components: - - pos: -8.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6921 - type: CableHV - components: - - pos: -10.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6922 - type: CableHV - components: - - pos: -9.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6923 - type: CableHV - components: - - pos: -10.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6924 - type: CableHV - components: - - pos: -10.5,-34.5 - parent: 0 - type: Transform -- uid: 6925 - type: CableHV - components: - - pos: -9.5,-34.5 - parent: 0 - type: Transform -- uid: 6926 - type: CableHV - components: - - pos: -8.5,-34.5 - parent: 0 - type: Transform -- uid: 6927 - type: CableHV - components: - - pos: -7.5,-34.5 - parent: 0 - type: Transform -- uid: 6928 - type: CableHV - components: - - pos: -6.5,-34.5 - parent: 0 - type: Transform -- uid: 6929 - type: CableHV - components: - - pos: -5.5,-34.5 - parent: 0 - type: Transform -- uid: 6930 - type: CableHV - components: - - pos: -4.5,-34.5 - parent: 0 - type: Transform -- uid: 6931 - type: CableHV - components: - - pos: -3.5,-34.5 - parent: 0 - type: Transform -- uid: 6932 - type: CableHV - components: - - pos: -2.5,-34.5 - parent: 0 - type: Transform -- uid: 6933 - type: CableHV - components: - - pos: -1.5,-34.5 - parent: 0 - type: Transform -- uid: 6934 - type: CableHV - components: - - pos: -0.5,-34.5 - parent: 0 - type: Transform -- uid: 6935 - type: CableHV - components: - - pos: 0.5,-34.5 - parent: 0 - type: Transform -- uid: 6936 - type: CableHV - components: - - pos: 1.5,-34.5 - parent: 0 - type: Transform -- uid: 6937 - type: CableHV - components: - - pos: 1.5,-33.5 - parent: 0 - type: Transform -- uid: 6938 - type: CableHV - components: - - pos: 1.5,-32.5 - parent: 0 - type: Transform -- uid: 6939 - type: CableHV - components: - - pos: 1.5,-31.5 - parent: 0 - type: Transform -- uid: 6940 - type: CableHV - components: - - pos: 1.5,-30.5 - parent: 0 - type: Transform -- uid: 6941 - type: CableHV - components: - - pos: 2.5,-30.5 - parent: 0 - type: Transform -- uid: 6942 - type: CableHV - components: - - pos: 3.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6943 - type: CableHV - components: - - pos: 4.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6944 - type: CableHV - components: - - pos: 5.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6945 - type: CableHV - components: - - pos: 6.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6946 - type: CableHV - components: - - pos: 7.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6947 - type: CableHV - components: - - pos: 8.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6948 - type: CableHV - components: - - pos: 9.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6949 - type: CableHV - components: - - pos: 10.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6950 - type: CableHV - components: - - pos: 11.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6951 - type: CableHV - components: - - pos: 12.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6952 - type: CableHV - components: - - pos: 12.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6953 - type: CableHV - components: - - pos: 12.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6954 - type: CableHV - components: - - pos: 12.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6955 - type: CableHV - components: - - pos: 13.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6956 - type: CableHV - components: - - pos: 14.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6957 - type: CableHV - components: - - pos: 1.5,-29.5 - parent: 0 - type: Transform -- uid: 6958 - type: CableHV - components: - - pos: 1.5,-28.5 - parent: 0 - type: Transform -- uid: 6959 - type: CableHV - components: - - pos: 1.5,-27.5 - parent: 0 - type: Transform -- uid: 6960 - type: CableHV - components: - - pos: 1.5,-26.5 - parent: 0 - type: Transform -- uid: 6961 - type: CableHV - components: - - pos: 1.5,-25.5 - parent: 0 - type: Transform -- uid: 6962 - type: CableHV - components: - - pos: 1.5,-24.5 - parent: 0 - type: Transform -- uid: 6963 - type: CableHV - components: - - pos: 1.5,-23.5 - parent: 0 - type: Transform -- uid: 6964 - type: CableHV - components: - - pos: 1.5,-22.5 - parent: 0 - type: Transform -- uid: 6965 - type: CableHV - components: - - pos: 1.5,-21.5 - parent: 0 - type: Transform -- uid: 6966 - type: CableHV - components: - - pos: 1.5,-20.5 - parent: 0 - type: Transform -- uid: 6967 - type: CableHV - components: - - pos: 1.5,-19.5 - parent: 0 - type: Transform -- uid: 6968 - type: CableHV - components: - - pos: 1.5,-18.5 - parent: 0 - type: Transform -- uid: 6969 - type: CableHV - components: - - pos: 1.5,-17.5 - parent: 0 - type: Transform -- uid: 6970 - type: CableHV - components: - - pos: 1.5,-16.5 - parent: 0 - type: Transform -- uid: 6971 - type: CableHV - components: - - pos: 1.5,-15.5 - parent: 0 - type: Transform -- uid: 6972 - type: CableHV - components: - - pos: 1.5,-14.5 - parent: 0 - type: Transform -- uid: 6973 - type: CableHV - components: - - pos: 1.5,-13.5 - parent: 0 - type: Transform -- uid: 6974 - type: CableHV - components: - - pos: 1.5,-12.5 - parent: 0 - type: Transform -- uid: 6975 - type: CableHV - components: - - pos: 1.5,-11.5 - parent: 0 - type: Transform -- uid: 6976 - type: CableHV - components: - - pos: 2.5,-11.5 - parent: 0 - type: Transform -- uid: 6977 - type: CableHV - components: - - pos: 3.5,-11.5 - parent: 0 - type: Transform -- uid: 6978 - type: CableHV - components: - - pos: 4.5,-11.5 - parent: 0 - type: Transform -- uid: 6979 - type: CableHV - components: - - pos: 5.5,-11.5 - parent: 0 - type: Transform -- uid: 6980 - type: CableHV - components: - - pos: 6.5,-11.5 - parent: 0 - type: Transform -- uid: 6981 - type: CableHV - components: - - pos: 7.5,-11.5 - parent: 0 - type: Transform -- uid: 6982 - type: AirlockMaintLocked - components: - - pos: -10.5,-33.5 - parent: 0 - type: Transform -- uid: 6983 - type: Grille - components: - - pos: -12.5,-35.5 - parent: 0 - type: Transform -- uid: 6984 - type: CarpetChapel - components: - - pos: -17.5,-33.5 - parent: 0 - type: Transform -- uid: 6985 - type: CarpetChapel - components: - - pos: -15.5,-33.5 - parent: 0 - type: Transform -- uid: 6986 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-32.5 - parent: 0 - type: Transform -- uid: 6987 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 0 - type: Transform -- uid: 6988 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-35.5 - parent: 0 - type: Transform -- uid: 6989 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 0 - type: Transform -- uid: 6990 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -16.5,-35.5 - parent: 0 - type: Transform -- uid: 6991 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -14.5,-35.5 - parent: 0 - type: Transform -- uid: 6992 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -14.5,-32.5 - parent: 0 - type: Transform -- uid: 6993 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -16.5,-32.5 - parent: 0 - type: Transform -- uid: 6994 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-33.5 - parent: 0 - type: Transform -- uid: 6995 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-33.5 - parent: 0 - type: Transform -- uid: 6996 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-36.5 - parent: 0 - type: Transform -- uid: 6997 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-36.5 - parent: 0 - type: Transform -- uid: 6998 - type: CarpetChapel - components: - - pos: -17.5,-36.5 - parent: 0 - type: Transform -- uid: 6999 - type: CarpetChapel - components: - - pos: -15.5,-36.5 - parent: 0 - type: Transform -- uid: 7000 - type: Bookshelf - components: - - pos: -13.5,-32.5 - parent: 0 - type: Transform -- uid: 7001 - type: Bookshelf - components: - - pos: -13.5,-36.5 - parent: 0 - type: Transform -- uid: 7002 - type: TableWood - components: - - pos: -18.5,-35.5 - parent: 0 - type: Transform -- uid: 7003 - type: PaintingAmogusTriptych - components: - - pos: -21.5,6.5 - parent: 0 - type: Transform -- uid: 7004 - type: TableWood - components: - - pos: -18.5,-33.5 - parent: 0 - type: Transform -- uid: 7005 - type: Bookshelf - components: - - pos: -24.5,-38.5 - parent: 0 - type: Transform -- uid: 7006 - type: Paper - components: - - pos: -31.49619,-23.373245 - parent: 0 - type: Transform -- uid: 7007 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-33.5 - parent: 0 - type: Transform -- uid: 7008 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-33.5 - parent: 0 - type: Transform -- uid: 7009 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-32.5 - parent: 0 - type: Transform -- uid: 7010 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 0 - type: Transform -- uid: 7011 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 0 - type: Transform -- uid: 7012 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-36.5 - parent: 0 - type: Transform -- uid: 7013 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-36.5 - parent: 0 - type: Transform -- uid: 7014 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-36.5 - parent: 0 - type: Transform -- uid: 7015 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-35.5 - parent: 0 - type: Transform -- uid: 7016 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 0 - type: Transform -- uid: 7017 - type: TableWood - components: - - pos: -13.5,-33.5 - parent: 0 - type: Transform -- uid: 7018 - type: TableWood - components: - - pos: -13.5,-35.5 - parent: 0 - type: Transform -- uid: 7019 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-34.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7020 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7021 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7022 - type: PoweredSmallLight - components: - - pos: -23.5,-35.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7023 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7024 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7025 - type: Airlock - components: - - pos: -26.5,-34.5 - parent: 0 - type: Transform -- uid: 7026 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-33.5 - parent: 0 - type: Transform -- uid: 7027 - type: ToiletDirtyWater - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-32.5 - parent: 0 - type: Transform -- uid: 7028 - type: Windoor - components: - - pos: -26.5,-31.5 - parent: 0 - type: Transform -- uid: 7029 - type: FloorDrain - components: - - pos: -26.5,-31.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 7030 - type: RandomSoap - components: - - pos: -26.5,-31.5 - parent: 0 - type: Transform -- uid: 7031 - type: Mirror - components: - - pos: -25.5,-33.5 - parent: 0 - type: Transform -- uid: 7032 - type: ExtinguisherCabinetFilled - components: - - pos: -23.5,-32.5 - parent: 0 - type: Transform -- uid: 7033 - type: Bed - components: - - pos: -27.5,-36.5 - parent: 0 - type: Transform -- uid: 7034 - type: BedsheetCult - components: - - pos: -27.5,-36.5 - parent: 0 - type: Transform -- uid: 7035 - type: Dresser - components: - - pos: -27.5,-37.5 - parent: 0 - type: Transform -- uid: 7036 - type: VendingMachineChapel - components: - - flags: SessionSpecific - type: MetaData - - pos: -27.5,-35.5 - parent: 0 - type: Transform - - sprite: Structures/Machines/VendingMachines/chapel.rsi - type: Sprite -- uid: 7037 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -23.5,-39.5 - parent: 0 - type: Transform -- uid: 7038 - type: ChairOfficeDark - components: - - pos: -23.5,-37.5 - parent: 0 - type: Transform -- uid: 7039 - type: TableWood - components: - - pos: -23.5,-38.5 - parent: 0 - type: Transform -- uid: 7040 - type: TableWood - components: - - pos: -24.5,-34.5 - parent: 0 - type: Transform -- uid: 7041 - type: DrinkWineBottleFull - components: - - pos: -13.459903,-33.042583 - parent: 0 - type: Transform -- uid: 7042 - type: FoodBreadMoldySlice - components: - - pos: -18.50604,-35.186176 - parent: 0 - type: Transform -- uid: 7043 - type: lantern - components: - - pos: -18.349216,-33.27696 - parent: 0 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 7044 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-34.5 - parent: 0 - type: Transform -- uid: 7045 - type: PoweredSmallLight - components: - - pos: -22.5,-32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7046 - type: PosterLegitCleanliness - components: - - pos: -23.5,-10.5 - parent: 0 - type: Transform -- uid: 7047 - type: TableCarpet - components: - - pos: -28.5,-14.5 - parent: 0 - type: Transform -- uid: 7048 - type: TableCarpet - components: - - pos: -27.5,-14.5 - parent: 0 - type: Transform -- uid: 7049 - type: TableCarpet - components: - - pos: -27.5,-15.5 - parent: 0 - type: Transform -- uid: 7050 - type: TableCarpet - components: - - pos: -28.5,-15.5 - parent: 0 - type: Transform -- uid: 7051 - type: TableWood - components: - - pos: -32.5,-15.5 - parent: 0 - type: Transform -- uid: 7052 - type: TableWood - components: - - pos: -32.5,-14.5 - parent: 0 - type: Transform -- uid: 7053 - type: Bookshelf - components: - - pos: -27.5,-20.5 - parent: 0 - type: Transform -- uid: 7054 - type: AirlockMaintLocked - components: - - pos: -28.5,-21.5 - parent: 0 - type: Transform -- uid: 7055 - type: TableWood - components: - - pos: -30.5,-19.5 - parent: 0 - type: Transform -- uid: 7056 - type: TableWood - components: - - pos: -30.5,-18.5 - parent: 0 - type: Transform -- uid: 7057 - type: TableWood - components: - - pos: -31.5,-18.5 - parent: 0 - type: Transform -- uid: 7058 - type: Bookshelf - components: - - pos: -26.5,-20.5 - parent: 0 - type: Transform -- uid: 7059 - type: Bookshelf - components: - - pos: -24.5,-18.5 - parent: 0 - type: Transform -- uid: 7060 - type: Bookshelf - components: - - pos: -24.5,-20.5 - parent: 0 - type: Transform -- uid: 7061 - type: Bookshelf - components: - - pos: -23.5,-20.5 - parent: 0 - type: Transform -- uid: 7062 - type: Bookshelf - components: - - pos: -22.5,-20.5 - parent: 0 - type: Transform -- uid: 7063 - type: Bookshelf - components: - - pos: -23.5,-18.5 - parent: 0 - type: Transform -- uid: 7064 - type: Bookshelf - components: - - pos: -27.5,-18.5 - parent: 0 - type: Transform -- uid: 7065 - type: Bookshelf - components: - - pos: -26.5,-18.5 - parent: 0 - type: Transform -- uid: 7066 - type: Bookshelf - components: - - pos: -22.5,-18.5 - parent: 0 - type: Transform -- uid: 7067 - type: Bookshelf - components: - - pos: -22.5,-14.5 - parent: 0 - type: Transform -- uid: 7068 - type: Bookshelf - components: - - pos: -23.5,-14.5 - parent: 0 - type: Transform -- uid: 7069 - type: Bookshelf - components: - - pos: -22.5,-16.5 - parent: 0 - type: Transform -- uid: 7070 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: -30.5,-14.5 - parent: 0 - type: Transform -- uid: 7071 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-15.5 - parent: 0 - type: Transform -- uid: 7072 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-14.5 - parent: 0 - type: Transform -- uid: 7073 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-15.5 - parent: 0 - type: Transform -- uid: 7074 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-14.5 - parent: 0 - type: Transform -- uid: 7075 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -31.5,-19.5 - parent: 0 - type: Transform -- uid: 7076 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-14.5 - parent: 0 - type: Transform -- uid: 7077 - type: Lamp - components: - - pos: -32.443592,-14.338358 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 7078 - type: GasPipeStraight - components: - - pos: -24.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7079 - type: GasPipeStraight - components: - - pos: -24.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7080 - type: GasPipeStraight - components: - - pos: -24.5,-14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7081 - type: GasPipeStraight - components: - - pos: -24.5,-15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7082 - type: GasPipeStraight - components: - - pos: -24.5,-16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7083 - type: GasPipeStraight - components: - - pos: -25.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7084 - type: GasPipeStraight - components: - - pos: -25.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7085 - type: GasPipeStraight - components: - - pos: -25.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7086 - type: GasPipeStraight - components: - - pos: -25.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7087 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -25.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7088 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -24.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7089 - type: ComfyChair - components: - - pos: -31.5,-22.5 - parent: 0 - type: Transform -- uid: 7090 - type: APCBasic - components: - - pos: -24.5,-10.5 - parent: 0 - type: Transform -- uid: 7091 - type: CableApcExtension - components: - - pos: -24.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7092 - type: CableApcExtension - components: - - pos: -24.5,-11.5 - parent: 0 - type: Transform -- uid: 7093 - type: CableApcExtension - components: - - pos: -24.5,-12.5 - parent: 0 - type: Transform -- uid: 7094 - type: CableApcExtension - components: - - pos: -24.5,-13.5 - parent: 0 - type: Transform -- uid: 7095 - type: CableApcExtension - components: - - pos: -24.5,-14.5 - parent: 0 - type: Transform -- uid: 7096 - type: CableApcExtension - components: - - pos: -24.5,-15.5 - parent: 0 - type: Transform -- uid: 7097 - type: CableApcExtension - components: - - pos: -24.5,-16.5 - parent: 0 - type: Transform -- uid: 7098 - type: CableApcExtension - components: - - pos: -25.5,-16.5 - parent: 0 - type: Transform -- uid: 7099 - type: CableApcExtension - components: - - pos: -26.5,-16.5 - parent: 0 - type: Transform -- uid: 7100 - type: CableApcExtension - components: - - pos: -27.5,-16.5 - parent: 0 - type: Transform -- uid: 7101 - type: CableApcExtension - components: - - pos: -28.5,-16.5 - parent: 0 - type: Transform -- uid: 7102 - type: CableApcExtension - components: - - pos: -29.5,-16.5 - parent: 0 - type: Transform -- uid: 7103 - type: CableApcExtension - components: - - pos: -30.5,-16.5 - parent: 0 - type: Transform -- uid: 7104 - type: CableApcExtension - components: - - pos: -31.5,-16.5 - parent: 0 - type: Transform -- uid: 7105 - type: CableApcExtension - components: - - pos: -32.5,-16.5 - parent: 0 - type: Transform -- uid: 7106 - type: CableApcExtension - components: - - pos: -32.5,-17.5 - parent: 0 - type: Transform -- uid: 7107 - type: CableApcExtension - components: - - pos: -32.5,-18.5 - parent: 0 - type: Transform -- uid: 7108 - type: CableApcExtension - components: - - pos: -32.5,-19.5 - parent: 0 - type: Transform -- uid: 7109 - type: CableApcExtension - components: - - pos: -31.5,-19.5 - parent: 0 - type: Transform -- uid: 7110 - type: CableApcExtension - components: - - pos: -31.5,-20.5 - parent: 0 - type: Transform -- uid: 7111 - type: CableApcExtension - components: - - pos: -31.5,-21.5 - parent: 0 - type: Transform -- uid: 7112 - type: CableApcExtension - components: - - pos: -31.5,-22.5 - parent: 0 - type: Transform -- uid: 7113 - type: CableApcExtension - components: - - pos: -28.5,-17.5 - parent: 0 - type: Transform -- uid: 7114 - type: CableApcExtension - components: - - pos: -28.5,-18.5 - parent: 0 - type: Transform -- uid: 7115 - type: CableApcExtension - components: - - pos: -28.5,-19.5 - parent: 0 - type: Transform -- uid: 7116 - type: CableApcExtension - components: - - pos: -28.5,-20.5 - parent: 0 - type: Transform -- uid: 7117 - type: CableApcExtension - components: - - pos: -25.5,-17.5 - parent: 0 - type: Transform -- uid: 7118 - type: CableApcExtension - components: - - pos: -25.5,-18.5 - parent: 0 - type: Transform -- uid: 7119 - type: CableApcExtension - components: - - pos: -25.5,-19.5 - parent: 0 - type: Transform -- uid: 7120 - type: CableApcExtension - components: - - pos: -25.5,-20.5 - parent: 0 - type: Transform -- uid: 7121 - type: CableApcExtension - components: - - pos: -24.5,-19.5 - parent: 0 - type: Transform -- uid: 7122 - type: CableApcExtension - components: - - pos: -23.5,-19.5 - parent: 0 - type: Transform -- uid: 7123 - type: CableApcExtension - components: - - pos: -23.5,-16.5 - parent: 0 - type: Transform -- uid: 7124 - type: CableApcExtension - components: - - pos: -31.5,-15.5 - parent: 0 - type: Transform -- uid: 7125 - type: TableWood - components: - - pos: -32.5,-23.5 - parent: 0 - type: Transform -- uid: 7126 - type: TableWood - components: - - pos: -31.5,-23.5 - parent: 0 - type: Transform -- uid: 7127 - type: TableWood - components: - - pos: -30.5,-23.5 - parent: 0 - type: Transform -- uid: 7128 - type: Bed - components: - - pos: -30.5,-21.5 - parent: 0 - type: Transform -- uid: 7129 - type: BedsheetSpawner - components: - - pos: -30.5,-21.5 - parent: 0 - type: Transform -- uid: 7130 - type: Bookshelf - components: - - pos: -32.5,-22.5 - parent: 0 - type: Transform -- uid: 7131 - type: Bookshelf - components: - - pos: -32.5,-21.5 - parent: 0 - type: Transform -- uid: 7132 - type: MaintenanceFluffSpawner - components: - - pos: -32.5,-23.5 - parent: 0 - type: Transform -- uid: 7133 - type: ClothingNeckScarfStripedGreen - components: - - pos: -30.568611,-23.475061 - parent: 0 - type: Transform -- uid: 7134 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: -32.5,-18.5 - parent: 0 - type: Transform -- uid: 7135 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-18.5 - parent: 0 - type: Transform -- uid: 7136 - type: Lamp - components: - - pos: -31.474861,-18.271936 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 7137 - type: DiceBag - components: - - pos: -27.959236,-14.350061 - parent: 0 - type: Transform -- uid: 7138 - type: Paper - components: - - pos: -28.318611,-14.584436 - parent: 0 - type: Transform -- uid: 7139 - type: Paper - components: - - pos: -28.537361,-15.271936 - parent: 0 - type: Transform -- uid: 7140 - type: Paper - components: - - pos: -27.677986,-15.271936 - parent: 0 - type: Transform -- uid: 7141 - type: Paper - components: - - pos: -27.427986,-14.693811 - parent: 0 - type: Transform -- uid: 7142 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -28.490486,-14.614019 - parent: 0 - type: Transform -- uid: 7143 - type: Pen - components: - - pos: -28.256111,-15.131311 - parent: 0 - type: Transform -- uid: 7144 - type: Pen - components: - - pos: -27.318611,-14.334436 - parent: 0 - type: Transform -- uid: 7145 - type: FigureSpawner - components: - - pos: -27.5,-15.5 - parent: 0 - type: Transform -- uid: 7146 - type: FigureSpawner - components: - - pos: -28.5,-15.5 - parent: 0 - type: Transform -- uid: 7147 - type: FigureSpawner - components: - - pos: -28.5,-14.5 - parent: 0 - type: Transform -- uid: 7148 - type: FigureSpawner - components: - - pos: -27.5,-14.5 - parent: 0 - type: Transform -- uid: 7149 - type: lantern - components: - - pos: -31.078482,-23.278105 - parent: 0 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 7150 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7151 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -29.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7152 - type: PoweredSmallLight - components: - - pos: -29.5,-14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7153 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7154 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7155 - type: SpawnMobSlothPaperwork - components: - - pos: -23.5,-19.5 - parent: 0 - type: Transform -- uid: 7156 - type: CarpetGreen - components: - - pos: -31.5,-17.5 - parent: 0 - type: Transform -- uid: 7157 - type: CarpetGreen - components: - - pos: -31.5,-16.5 - parent: 0 - type: Transform -- uid: 7158 - type: CarpetGreen - components: - - pos: -30.5,-17.5 - parent: 0 - type: Transform -- uid: 7159 - type: CarpetGreen - components: - - pos: -30.5,-16.5 - parent: 0 - type: Transform -- uid: 7160 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-19.5 - parent: 0 - type: Transform -- uid: 7161 - type: BookRandom - components: - - pos: -30.557493,-18.387486 - parent: 0 - type: Transform -- uid: 7162 - type: Carpet - components: - - pos: -25.5,-15.5 - parent: 0 - type: Transform -- uid: 7163 - type: Carpet - components: - - pos: -25.5,-16.5 - parent: 0 - type: Transform -- uid: 7164 - type: Carpet - components: - - pos: -24.5,-15.5 - parent: 0 - type: Transform -- uid: 7165 - type: Carpet - components: - - pos: -24.5,-16.5 - parent: 0 - type: Transform -- uid: 7166 - type: Carpet - components: - - pos: -23.5,-15.5 - parent: 0 - type: Transform -- uid: 7167 - type: Carpet - components: - - pos: -23.5,-16.5 - parent: 0 - type: Transform -- uid: 7168 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -22.5,-15.5 - parent: 0 - type: Transform -- uid: 7169 - type: SpawnMobMouse - components: - - pos: -28.5,-17.5 - parent: 0 - type: Transform -- uid: 7170 - type: ToyMouse - components: - - pos: -23.706095,-17.394772 - parent: 0 - type: Transform - - nextAttack: 57.9007159 - type: MeleeWeapon -- uid: 7171 - type: SignElectricalMed - components: - - pos: -9.5,-31.5 - parent: 0 - type: Transform -- uid: 7172 - type: Bookshelf - components: - - pos: -24.5,-39.5 - parent: 0 - type: Transform -- uid: 7173 - type: Paper - components: - - pos: -31.49619,-23.373245 - parent: 0 - type: Transform -- uid: 7174 - type: Paper - components: - - pos: -31.49619,-23.373245 - parent: 0 - type: Transform -- uid: 7175 - type: Paper - components: - - pos: -31.49619,-23.373245 - parent: 0 - type: Transform -- uid: 7176 - type: Paper - components: - - pos: -31.49619,-23.373245 - parent: 0 - type: Transform -- uid: 7177 - type: Paper - components: - - pos: -31.49619,-23.373245 - parent: 0 - type: Transform -- uid: 7178 - type: Paper - components: - - pos: -31.49619,-23.373245 - parent: 0 - type: Transform -- uid: 7179 - type: Paper - components: - - pos: -31.49619,-23.373245 - parent: 0 - type: Transform -- uid: 7180 - type: Paper - components: - - pos: -31.49619,-23.373245 - parent: 0 - type: Transform -- uid: 7181 - type: Paper - components: - - pos: -31.49619,-23.373245 - parent: 0 - type: Transform -- uid: 7182 - type: AirlockGlass - components: - - pos: -7.5,-21.5 - parent: 0 - type: Transform -- uid: 7183 - type: AirlockGlass - components: - - pos: -7.5,-22.5 - parent: 0 - type: Transform -- uid: 7184 - type: WallSolid - components: - - pos: -7.5,-23.5 - parent: 0 - type: Transform -- uid: 7185 - type: ReinforcedWindow - components: - - pos: -8.5,-23.5 - parent: 0 - type: Transform -- uid: 7186 - type: ReinforcedWindow - components: - - pos: -7.5,-24.5 - parent: 0 - type: Transform -- uid: 7187 - type: WallSolid - components: - - pos: -10.5,-23.5 - parent: 0 - type: Transform -- uid: 7188 - type: AirlockMedicalGlassLocked - components: - - pos: -12.5,-23.5 - parent: 0 - type: Transform -- uid: 7189 - type: AirlockMedicalGlassLocked - components: - - pos: -11.5,-23.5 - parent: 0 - type: Transform -- uid: 7190 - type: WallSolid - components: - - pos: -13.5,-23.5 - parent: 0 - type: Transform -- uid: 7191 - type: ReinforcedWindow - components: - - pos: -13.5,-21.5 - parent: 0 - type: Transform -- uid: 7192 - type: ReinforcedWindow - components: - - pos: -13.5,-22.5 - parent: 0 - type: Transform -- uid: 7193 - type: TableReinforced - components: - - pos: -9.5,-23.5 - parent: 0 - type: Transform -- uid: 7194 - type: TableReinforced - components: - - pos: -7.5,-25.5 - parent: 0 - type: Transform -- uid: 7195 - type: WallSolid - components: - - pos: -7.5,-28.5 - parent: 0 - type: Transform -- uid: 7196 - type: ReinforcedWindow - components: - - pos: -7.5,-27.5 - parent: 0 - type: Transform -- uid: 7197 - type: WallSolid - components: - - pos: -7.5,-26.5 - parent: 0 - type: Transform -- uid: 7198 - type: TableWood - components: - - pos: -10.5,-24.5 - parent: 0 - type: Transform -- uid: 7199 - type: TableWood - components: - - pos: -10.5,-25.5 - parent: 0 - type: Transform -- uid: 7200 - type: FirelockGlass - components: - - pos: -9.5,-23.5 - parent: 0 - type: Transform -- uid: 7201 - type: TableWood - components: - - pos: -10.5,-26.5 - parent: 0 - type: Transform -- uid: 7202 - type: TableWood - components: - - pos: -9.5,-26.5 - parent: 0 - type: Transform -- uid: 7203 - type: ComputerCrewMonitoring - components: - - pos: -8.5,-24.5 - parent: 0 - type: Transform -- uid: 7204 - type: WindoorMedicalLocked - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-25.5 - parent: 0 - type: Transform -- uid: 7205 - type: WindoorMedicalLocked - components: - - pos: -9.5,-23.5 - parent: 0 - type: Transform -- uid: 7206 - type: FirelockGlass - components: - - pos: -7.5,-25.5 - parent: 0 - type: Transform -- uid: 7207 - type: Window - components: - - pos: -7.5,-20.5 - parent: 0 - type: Transform -- uid: 7208 - type: Grille - components: - - pos: -7.5,-20.5 - parent: 0 - type: Transform -- uid: 7209 - type: Grille - components: - - pos: -7.5,-24.5 - parent: 0 - type: Transform -- uid: 7210 - type: Grille - components: - - pos: -8.5,-23.5 - parent: 0 - type: Transform -- uid: 7211 - type: Grille - components: - - pos: -13.5,-21.5 - parent: 0 - type: Transform -- uid: 7212 - type: Grille - components: - - pos: -13.5,-22.5 - parent: 0 - type: Transform -- uid: 7213 - type: PottedPlantRandom - components: - - pos: -12.5,-20.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 7214 - type: Chair - components: - - pos: -8.5,-20.5 - parent: 0 - type: Transform -- uid: 7215 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-28.5 - parent: 0 - type: Transform -- uid: 7216 - type: CheapRollerBed - components: - - pos: -9.503884,-28.454473 - parent: 0 - type: Transform -- uid: 7217 - type: CheapRollerBed - components: - - pos: -10.550759,-28.438848 - parent: 0 - type: Transform -- uid: 7218 - type: TintedWindow - components: - - pos: -13.5,-27.5 - parent: 0 - type: Transform -- uid: 7219 - type: TintedWindow - components: - - pos: -13.5,-28.5 - parent: 0 - type: Transform -- uid: 7220 - type: WallSolid - components: - - pos: -13.5,-26.5 - parent: 0 - type: Transform -- uid: 7221 - type: WallSolid - components: - - pos: -16.5,-28.5 - parent: 0 - type: Transform -- uid: 7222 - type: WallSolid - components: - - pos: -16.5,-27.5 - parent: 0 - type: Transform -- uid: 7223 - type: WallSolid - components: - - pos: -16.5,-26.5 - parent: 0 - type: Transform -- uid: 7224 - type: WallSolid - components: - - pos: -19.5,-28.5 - parent: 0 - type: Transform -- uid: 7225 - type: WallSolid - components: - - pos: -19.5,-27.5 - parent: 0 - type: Transform -- uid: 7226 - type: WallSolid - components: - - pos: -19.5,-26.5 - parent: 0 - type: Transform -- uid: 7227 - type: Window - components: - - pos: -18.5,-26.5 - parent: 0 - type: Transform -- uid: 7228 - type: Window - components: - - pos: -15.5,-26.5 - parent: 0 - type: Transform -- uid: 7229 - type: AirlockMedicalGlassLocked - components: - - pos: -17.5,-26.5 - parent: 0 - type: Transform -- uid: 7230 - type: AirlockMedicalGlassLocked - components: - - pos: -14.5,-26.5 - parent: 0 - type: Transform -- uid: 7231 - type: Grille - components: - - pos: -13.5,-28.5 - parent: 0 - type: Transform -- uid: 7232 - type: Grille - components: - - pos: -13.5,-27.5 - parent: 0 - type: Transform -- uid: 7233 - type: Grille - components: - - pos: -15.5,-26.5 - parent: 0 - type: Transform -- uid: 7234 - type: Grille - components: - - pos: -18.5,-26.5 - parent: 0 - type: Transform -- uid: 7235 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-28.5 - parent: 0 - type: Transform -- uid: 7236 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-24.5 - parent: 0 - type: Transform -- uid: 7237 - type: ChairOfficeLight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-25.5 - parent: 0 - type: Transform -- uid: 7238 - type: LampGold - components: - - pos: -10.430888,-24.383749 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 7239 - type: PlushieLizard - components: - - pos: -10.430888,-25.758749 - parent: 0 - type: Transform -- uid: 7240 - type: MedicalBed - components: - - pos: -14.5,-28.5 - parent: 0 - type: Transform -- uid: 7241 - type: MedicalBed - components: - - pos: -17.5,-28.5 - parent: 0 - type: Transform -- uid: 7242 - type: BedsheetMedical - components: - - pos: -17.5,-28.5 - parent: 0 - type: Transform -- uid: 7243 - type: BedsheetMedical - components: - - pos: -14.5,-28.5 - parent: 0 - type: Transform -- uid: 7244 - type: TableReinforcedGlass - components: - - pos: -18.5,-28.5 - parent: 0 - type: Transform -- uid: 7245 - type: TableReinforcedGlass - components: - - pos: -15.5,-28.5 - parent: 0 - type: Transform -- uid: 7246 - type: ClothingNeckStethoscope - components: - - pos: -15.565243,-28.423204 - parent: 0 - type: Transform -- uid: 7247 - type: MedkitCombatFilled - components: - - pos: -18.502743,-28.454454 - parent: 0 - type: Transform -- uid: 7248 - type: HospitalCurtainsOpen - components: - - pos: -21.5,-26.5 - parent: 0 - type: Transform -- uid: 7249 - type: OperatingTable - components: - - pos: -21.5,-28.5 - parent: 0 - type: Transform -- uid: 7250 - type: TableGlass - components: - - pos: -25.5,-25.5 - parent: 0 - type: Transform -- uid: 7251 - type: ReinforcedWindow - components: - - pos: -25.5,-24.5 - parent: 0 - type: Transform -- uid: 7252 - type: AirlockMedicalGlassLocked - components: - - pos: -21.5,-26.5 - parent: 0 - type: Transform -- uid: 7253 - type: AirlockChiefMedicalOfficerGlassLocked - components: - - pos: -26.5,-24.5 - parent: 0 - type: Transform -- uid: 7254 - type: WallReinforced - components: - - pos: -24.5,-24.5 - parent: 0 - type: Transform -- uid: 7255 - type: WallReinforced - components: - - pos: -27.5,-27.5 - parent: 0 - type: Transform -- uid: 7256 - type: WallReinforced - components: - - pos: -27.5,-26.5 - parent: 0 - type: Transform -- uid: 7257 - type: WallReinforced - components: - - pos: -27.5,-25.5 - parent: 0 - type: Transform -- uid: 7258 - type: computerBodyScanner - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-28.5 - parent: 0 - type: Transform -- uid: 7259 - type: FirelockGlass - components: - - pos: -13.5,-25.5 - parent: 0 - type: Transform -- uid: 7260 - type: TableReinforced - components: - - pos: -20.5,-28.5 - parent: 0 - type: Transform -- uid: 7261 - type: CrateMedicalSurgery - components: - - pos: -22.5,-27.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 7262 - type: SignSurgery - components: - - pos: -19.5,-26.5 - parent: 0 - type: Transform -- uid: 7263 - type: ClothingMaskSterile - components: - - pos: -20.570732,-28.408869 - parent: 0 - type: Transform -- uid: 7264 - type: ClothingHandsGlovesNitrile - components: - - pos: -20.555107,-28.596369 - parent: 0 - type: Transform -- uid: 7265 - type: ComputerMedicalRecords - components: - - rot: 3.141592653589793 rad - pos: -24.5,-27.5 - parent: 0 - type: Transform -- uid: 7266 - type: ComputerCrewMonitoring - components: - - pos: -24.5,-25.5 - parent: 0 - type: Transform -- uid: 7267 - type: LockerChiefMedicalOfficerFilled - components: - - pos: -26.5,-27.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 7268 - type: SurveillanceCameraRouterMedical - components: - - pos: -25.5,-27.5 - parent: 0 - type: Transform -- uid: 7269 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-26.5 - parent: 0 - type: Transform -- uid: 7270 - type: Grille - components: - - pos: -25.5,-24.5 - parent: 0 - type: Transform -- uid: 7271 - type: Window - components: - - pos: -17.5,-22.5 - parent: 0 - type: Transform -- uid: 7272 - type: Window - components: - - pos: -17.5,-21.5 - parent: 0 - type: Transform -- uid: 7273 - type: Window - components: - - pos: -21.5,-22.5 - parent: 0 - type: Transform -- uid: 7274 - type: Window - components: - - pos: -20.5,-23.5 - parent: 0 - type: Transform -- uid: 7275 - type: Window - components: - - pos: -18.5,-23.5 - parent: 0 - type: Transform -- uid: 7276 - type: WallSolid - components: - - pos: -21.5,-23.5 - parent: 0 - type: Transform -- uid: 7277 - type: WallSolid - components: - - pos: -17.5,-23.5 - parent: 0 - type: Transform -- uid: 7278 - type: Grille - components: - - pos: -17.5,-22.5 - parent: 0 - type: Transform -- uid: 7279 - type: Grille - components: - - pos: -17.5,-21.5 - parent: 0 - type: Transform -- uid: 7280 - type: Grille - components: - - pos: -18.5,-23.5 - parent: 0 - type: Transform -- uid: 7281 - type: Grille - components: - - pos: -20.5,-23.5 - parent: 0 - type: Transform -- uid: 7282 - type: Grille - components: - - pos: -21.5,-22.5 - parent: 0 - type: Transform -- uid: 7283 - type: FirelockGlass - components: - - pos: -13.5,-24.5 - parent: 0 - type: Transform -- uid: 7284 - type: AirAlarm - components: - - pos: -3.5,27.5 - parent: 0 - type: Transform - - devices: - - 12226 - - 1853 - - 1852 - type: DeviceList -- uid: 7285 - type: MedicalTechFab - components: - - pos: -20.5,-22.5 - parent: 0 - type: Transform - - materialWhiteList: - - Glass - - Steel - - Plastic - - Durathread - - Cloth - type: MaterialStorage -- uid: 7286 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,-21.5 - parent: 0 - type: Transform -- uid: 7287 - type: VendingMachineMediDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,-21.5 - parent: 0 - type: Transform -- uid: 7288 - type: LockerMedicalFilled - components: - - pos: -18.5,-22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 7289 - type: AirlockMedicalGlassLocked - components: - - pos: -19.5,-23.5 - parent: 0 - type: Transform -- uid: 7290 - type: PottedPlantRandom - components: - - pos: -26.5,-22.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 7291 - type: Chair - components: - - pos: -25.5,-22.5 - parent: 0 - type: Transform -- uid: 7292 - type: Chair - components: - - pos: -24.5,-22.5 - parent: 0 - type: Transform -- uid: 7293 - type: Chair - components: - - pos: -23.5,-22.5 - parent: 0 - type: Transform -- uid: 7294 - type: WaterCooler - components: - - pos: -22.5,-22.5 - parent: 0 - type: Transform -- uid: 7295 - type: TableGlass - components: - - pos: -19.5,-21.5 - parent: 0 - type: Transform -- uid: 7296 - type: MedkitFilled - components: - - pos: -19.63683,-21.53827 - parent: 0 - type: Transform -- uid: 7297 - type: MedkitBruteFilled - components: - - pos: -19.496204,-21.397646 - parent: 0 - type: Transform -- uid: 7298 - type: MedkitBurnFilled - components: - - pos: -19.308704,-21.25702 - parent: 0 - type: Transform -- uid: 7299 - type: SignMedical - components: - - pos: -7.5,-23.5 - parent: 0 - type: Transform -- uid: 7300 - type: FirelockGlass - components: - - pos: -14.5,-23.5 - parent: 0 - type: Transform -- uid: 7301 - type: FirelockGlass - components: - - pos: -15.5,-23.5 - parent: 0 - type: Transform -- uid: 7302 - type: FirelockGlass - components: - - pos: -16.5,-23.5 - parent: 0 - type: Transform -- uid: 7303 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7304 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7305 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7306 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7307 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7308 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -11.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7309 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7310 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7311 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -9.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7312 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7313 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7314 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7315 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7316 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7317 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7318 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7319 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7320 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7321 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7322 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7323 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7324 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7325 - type: GasPipeTJunction - components: - - pos: -17.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7326 - type: GasPipeTJunction - components: - - pos: -18.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7327 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7328 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7329 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7330 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7331 - type: GasPipeFourway - components: - - pos: -15.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7332 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7333 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7334 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7335 - type: GasPipeTJunction - components: - - pos: -14.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7336 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7337 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7338 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7339 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7340 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7341 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7342 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7343 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7344 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7345 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7346 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7347 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7348 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7349 - type: GasPipeStraight - components: - - pos: -19.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7350 - type: GasPipeStraight - components: - - pos: -19.5,-15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7351 - type: GasPipeStraight - components: - - pos: -19.5,-14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7352 - type: GasPipeStraight - components: - - pos: -19.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7353 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -16.5,-24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7354 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7355 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7356 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7357 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7358 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7359 - type: GasPipeStraight - components: - - pos: -17.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7360 - type: GasPipeStraight - components: - - pos: -18.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7361 - type: GasPipeStraight - components: - - pos: -18.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7362 - type: GasPipeStraight - components: - - pos: -15.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7363 - type: GasPipeStraight - components: - - pos: -14.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7364 - type: GasPipeStraight - components: - - pos: -14.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7365 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -15.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7366 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -17.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7367 - type: GasVentPump - components: - - pos: -15.5,-16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7368 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -19.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7369 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -18.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7370 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -14.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7371 - type: GasVentScrubber - components: - - pos: -16.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7372 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7373 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7374 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7375 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7376 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7377 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7378 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7379 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7380 - type: GasVentPump - components: - - pos: -9.5,-17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7381 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7382 - type: GasVentScrubber - components: - - pos: -11.5,-17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7383 - type: FloorDrain - components: - - pos: -10.5,-16.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 7384 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7385 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7386 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7387 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7388 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7389 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -11.5,-27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7390 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -12.5,-27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7391 - type: APCBasic - components: - - pos: -17.5,-23.5 - parent: 0 - type: Transform -- uid: 7392 - type: CableMV - components: - - pos: -11.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7393 - type: CableMV - components: - - pos: -11.5,-28.5 - parent: 0 - type: Transform -- uid: 7394 - type: CableMV - components: - - pos: -11.5,-27.5 - parent: 0 - type: Transform -- uid: 7395 - type: CableMV - components: - - pos: -11.5,-26.5 - parent: 0 - type: Transform -- uid: 7396 - type: CableMV - components: - - pos: -11.5,-25.5 - parent: 0 - type: Transform -- uid: 7397 - type: CableMV - components: - - pos: -12.5,-25.5 - parent: 0 - type: Transform -- uid: 7398 - type: CableMV - components: - - pos: -13.5,-25.5 - parent: 0 - type: Transform -- uid: 7399 - type: CableMV - components: - - pos: -14.5,-25.5 - parent: 0 - type: Transform -- uid: 7400 - type: CableMV - components: - - pos: -15.5,-25.5 - parent: 0 - type: Transform -- uid: 7401 - type: CableMV - components: - - pos: -16.5,-25.5 - parent: 0 - type: Transform -- uid: 7402 - type: CableMV - components: - - pos: -17.5,-25.5 - parent: 0 - type: Transform -- uid: 7403 - type: CableMV - components: - - pos: -17.5,-24.5 - parent: 0 - type: Transform -- uid: 7404 - type: CableMV - components: - - pos: -17.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7405 - type: CableApcExtension - components: - - pos: -17.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7406 - type: CableApcExtension - components: - - pos: -17.5,-24.5 - parent: 0 - type: Transform -- uid: 7407 - type: CableApcExtension - components: - - pos: -17.5,-25.5 - parent: 0 - type: Transform -- uid: 7408 - type: CableApcExtension - components: - - pos: -17.5,-26.5 - parent: 0 - type: Transform -- uid: 7409 - type: CableApcExtension - components: - - pos: -17.5,-27.5 - parent: 0 - type: Transform -- uid: 7410 - type: CableApcExtension - components: - - pos: -16.5,-24.5 - parent: 0 - type: Transform -- uid: 7411 - type: CableApcExtension - components: - - pos: -15.5,-24.5 - parent: 0 - type: Transform -- uid: 7412 - type: CableApcExtension - components: - - pos: -14.5,-24.5 - parent: 0 - type: Transform -- uid: 7413 - type: CableApcExtension - components: - - pos: -14.5,-25.5 - parent: 0 - type: Transform -- uid: 7414 - type: CableApcExtension - components: - - pos: -14.5,-26.5 - parent: 0 - type: Transform -- uid: 7415 - type: CableApcExtension - components: - - pos: -14.5,-27.5 - parent: 0 - type: Transform -- uid: 7416 - type: CableApcExtension - components: - - pos: -13.5,-24.5 - parent: 0 - type: Transform -- uid: 7417 - type: CableApcExtension - components: - - pos: -12.5,-24.5 - parent: 0 - type: Transform -- uid: 7418 - type: CableApcExtension - components: - - pos: -11.5,-24.5 - parent: 0 - type: Transform -- uid: 7419 - type: CableApcExtension - components: - - pos: -11.5,-23.5 - parent: 0 - type: Transform -- uid: 7420 - type: CableApcExtension - components: - - pos: -11.5,-22.5 - parent: 0 - type: Transform -- uid: 7421 - type: CableApcExtension - components: - - pos: -11.5,-21.5 - parent: 0 - type: Transform -- uid: 7422 - type: CableApcExtension - components: - - pos: -11.5,-20.5 - parent: 0 - type: Transform -- uid: 7423 - type: CableApcExtension - components: - - pos: -10.5,-21.5 - parent: 0 - type: Transform -- uid: 7424 - type: CableApcExtension - components: - - pos: -9.5,-21.5 - parent: 0 - type: Transform -- uid: 7425 - type: CableApcExtension - components: - - pos: -8.5,-21.5 - parent: 0 - type: Transform -- uid: 7426 - type: CableApcExtension - components: - - pos: -11.5,-25.5 - parent: 0 - type: Transform -- uid: 7427 - type: CableApcExtension - components: - - pos: -11.5,-26.5 - parent: 0 - type: Transform -- uid: 7428 - type: CableApcExtension - components: - - pos: -11.5,-27.5 - parent: 0 - type: Transform -- uid: 7429 - type: CableApcExtension - components: - - pos: -10.5,-27.5 - parent: 0 - type: Transform -- uid: 7430 - type: CableApcExtension - components: - - pos: -9.5,-27.5 - parent: 0 - type: Transform -- uid: 7431 - type: CableApcExtension - components: - - pos: -18.5,-24.5 - parent: 0 - type: Transform -- uid: 7432 - type: CableApcExtension - components: - - pos: -19.5,-24.5 - parent: 0 - type: Transform -- uid: 7433 - type: CableApcExtension - components: - - pos: -20.5,-24.5 - parent: 0 - type: Transform -- uid: 7434 - type: CableApcExtension - components: - - pos: -21.5,-24.5 - parent: 0 - type: Transform -- uid: 7435 - type: CableApcExtension - components: - - pos: -21.5,-25.5 - parent: 0 - type: Transform -- uid: 7436 - type: CableApcExtension - components: - - pos: -21.5,-26.5 - parent: 0 - type: Transform -- uid: 7437 - type: CableApcExtension - components: - - pos: -21.5,-27.5 - parent: 0 - type: Transform -- uid: 7438 - type: CableApcExtension - components: - - pos: -19.5,-23.5 - parent: 0 - type: Transform -- uid: 7439 - type: CableApcExtension - components: - - pos: -19.5,-22.5 - parent: 0 - type: Transform -- uid: 7440 - type: CableApcExtension - components: - - pos: -22.5,-24.5 - parent: 0 - type: Transform -- uid: 7441 - type: CableApcExtension - components: - - pos: -22.5,-23.5 - parent: 0 - type: Transform -- uid: 7442 - type: CableApcExtension - components: - - pos: -23.5,-23.5 - parent: 0 - type: Transform -- uid: 7443 - type: CableApcExtension - components: - - pos: -24.5,-23.5 - parent: 0 - type: Transform -- uid: 7444 - type: CableApcExtension - components: - - pos: -25.5,-23.5 - parent: 0 - type: Transform -- uid: 7445 - type: CableApcExtension - components: - - pos: -26.5,-23.5 - parent: 0 - type: Transform -- uid: 7446 - type: CableApcExtension - components: - - pos: -26.5,-24.5 - parent: 0 - type: Transform -- uid: 7447 - type: CableApcExtension - components: - - pos: -26.5,-25.5 - parent: 0 - type: Transform -- uid: 7448 - type: CableApcExtension - components: - - pos: -26.5,-26.5 - parent: 0 - type: Transform -- uid: 7449 - type: CableApcExtension - components: - - pos: -25.5,-26.5 - parent: 0 - type: Transform -- uid: 7450 - type: CableApcExtension - components: - - pos: -15.5,-23.5 - parent: 0 - type: Transform -- uid: 7451 - type: CableApcExtension - components: - - pos: -15.5,-22.5 - parent: 0 - type: Transform -- uid: 7452 - type: CableApcExtension - components: - - pos: -15.5,-21.5 - parent: 0 - type: Transform -- uid: 7453 - type: CableApcExtension - components: - - pos: -15.5,-20.5 - parent: 0 - type: Transform -- uid: 7454 - type: CableApcExtension - components: - - pos: -15.5,-19.5 - parent: 0 - type: Transform -- uid: 7455 - type: CableApcExtension - components: - - pos: -15.5,-18.5 - parent: 0 - type: Transform -- uid: 7456 - type: CableApcExtension - components: - - pos: -15.5,-17.5 - parent: 0 - type: Transform -- uid: 7457 - type: CableApcExtension - components: - - pos: -15.5,-16.5 - parent: 0 - type: Transform -- uid: 7458 - type: CableApcExtension - components: - - pos: -16.5,-17.5 - parent: 0 - type: Transform -- uid: 7459 - type: CableApcExtension - components: - - pos: -17.5,-17.5 - parent: 0 - type: Transform -- uid: 7460 - type: CableApcExtension - components: - - pos: -18.5,-17.5 - parent: 0 - type: Transform -- uid: 7461 - type: CableApcExtension - components: - - pos: -19.5,-17.5 - parent: 0 - type: Transform -- uid: 7462 - type: CableApcExtension - components: - - pos: -19.5,-18.5 - parent: 0 - type: Transform -- uid: 7463 - type: CableApcExtension - components: - - pos: -19.5,-16.5 - parent: 0 - type: Transform -- uid: 7464 - type: CableApcExtension - components: - - pos: -19.5,-15.5 - parent: 0 - type: Transform -- uid: 7465 - type: CableApcExtension - components: - - pos: -19.5,-14.5 - parent: 0 - type: Transform -- uid: 7466 - type: APCBasic - components: - - pos: -1.5,-20.5 - parent: 0 - type: Transform -- uid: 7467 - type: CableMV - components: - - pos: -8.5,-34.5 - parent: 0 - type: Transform -- uid: 7468 - type: CableMV - components: - - pos: -7.5,-34.5 - parent: 0 - type: Transform -- uid: 7469 - type: CableMV - components: - - pos: -6.5,-34.5 - parent: 0 - type: Transform -- uid: 7470 - type: CableMV - components: - - pos: -5.5,-34.5 - parent: 0 - type: Transform -- uid: 7471 - type: CableMV - components: - - pos: -5.5,-33.5 - parent: 0 - type: Transform -- uid: 7472 - type: CableMV - components: - - pos: -5.5,-32.5 - parent: 0 - type: Transform -- uid: 7473 - type: CableMV - components: - - pos: -5.5,-31.5 - parent: 0 - type: Transform -- uid: 7474 - type: CableMV - components: - - pos: -5.5,-30.5 - parent: 0 - type: Transform -- uid: 7475 - type: CableMV - components: - - pos: -5.5,-29.5 - parent: 0 - type: Transform -- uid: 7476 - type: CableMV - components: - - pos: -5.5,-28.5 - parent: 0 - type: Transform -- uid: 7477 - type: CableMV - components: - - pos: -5.5,-27.5 - parent: 0 - type: Transform -- uid: 7478 - type: CableMV - components: - - pos: -5.5,-26.5 - parent: 0 - type: Transform -- uid: 7479 - type: CableMV - components: - - pos: -5.5,-25.5 - parent: 0 - type: Transform -- uid: 7480 - type: CableMV - components: - - pos: -5.5,-24.5 - parent: 0 - type: Transform -- uid: 7481 - type: CableMV - components: - - pos: -5.5,-23.5 - parent: 0 - type: Transform -- uid: 7482 - type: CableMV - components: - - pos: -5.5,-22.5 - parent: 0 - type: Transform -- uid: 7483 - type: CableMV - components: - - pos: -5.5,-21.5 - parent: 0 - type: Transform -- uid: 7484 - type: CableMV - components: - - pos: -4.5,-21.5 - parent: 0 - type: Transform -- uid: 7485 - type: CableMV - components: - - pos: -3.5,-21.5 - parent: 0 - type: Transform -- uid: 7486 - type: CableMV - components: - - pos: -2.5,-21.5 - parent: 0 - type: Transform -- uid: 7487 - type: CableMV - components: - - pos: -1.5,-21.5 - parent: 0 - type: Transform -- uid: 7488 - type: CableMV - components: - - pos: -1.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7489 - type: CableApcExtension - components: - - pos: -1.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7490 - type: CableApcExtension - components: - - pos: -1.5,-21.5 - parent: 0 - type: Transform -- uid: 7491 - type: CableApcExtension - components: - - pos: -1.5,-22.5 - parent: 0 - type: Transform -- uid: 7492 - type: CableApcExtension - components: - - pos: -2.5,-22.5 - parent: 0 - type: Transform -- uid: 7493 - type: CableApcExtension - components: - - pos: -3.5,-22.5 - parent: 0 - type: Transform -- uid: 7494 - type: CableApcExtension - components: - - pos: -4.5,-22.5 - parent: 0 - type: Transform -- uid: 7495 - type: CableApcExtension - components: - - pos: -5.5,-22.5 - parent: 0 - type: Transform -- uid: 7496 - type: CableApcExtension - components: - - pos: -5.5,-21.5 - parent: 0 - type: Transform -- uid: 7497 - type: CableApcExtension - components: - - pos: -5.5,-20.5 - parent: 0 - type: Transform -- uid: 7498 - type: CableApcExtension - components: - - pos: -5.5,-19.5 - parent: 0 - type: Transform -- uid: 7499 - type: CableApcExtension - components: - - pos: -5.5,-18.5 - parent: 0 - type: Transform -- uid: 7500 - type: CableApcExtension - components: - - pos: -5.5,-17.5 - parent: 0 - type: Transform -- uid: 7501 - type: CableApcExtension - components: - - pos: -5.5,-16.5 - parent: 0 - type: Transform -- uid: 7502 - type: CableApcExtension - components: - - pos: -5.5,-15.5 - parent: 0 - type: Transform -- uid: 7503 - type: CableApcExtension - components: - - pos: -1.5,-22.5 - parent: 0 - type: Transform -- uid: 7504 - type: CableApcExtension - components: - - pos: 0.5,-22.5 - parent: 0 - type: Transform -- uid: 7505 - type: CableApcExtension - components: - - pos: 0.5,-22.5 - parent: 0 - type: Transform -- uid: 7506 - type: CableApcExtension - components: - - pos: -0.5,-22.5 - parent: 0 - type: Transform -- uid: 7507 - type: CableApcExtension - components: - - pos: 0.5,-21.5 - parent: 0 - type: Transform -- uid: 7508 - type: CableApcExtension - components: - - pos: 0.5,-20.5 - parent: 0 - type: Transform -- uid: 7509 - type: CableApcExtension - components: - - pos: 0.5,-19.5 - parent: 0 - type: Transform -- uid: 7510 - type: CableApcExtension - components: - - pos: 0.5,-18.5 - parent: 0 - type: Transform -- uid: 7511 - type: CableApcExtension - components: - - pos: 0.5,-17.5 - parent: 0 - type: Transform -- uid: 7512 - type: CableApcExtension - components: - - pos: 0.5,-16.5 - parent: 0 - type: Transform -- uid: 7513 - type: CableApcExtension - components: - - pos: 0.5,-15.5 - parent: 0 - type: Transform -- uid: 7514 - type: CableApcExtension - components: - - pos: -1.5,-19.5 - parent: 0 - type: Transform -- uid: 7515 - type: CableApcExtension - components: - - pos: -1.5,-18.5 - parent: 0 - type: Transform -- uid: 7516 - type: CableApcExtension - components: - - pos: -1.5,-17.5 - parent: 0 - type: Transform -- uid: 7517 - type: CableApcExtension - components: - - pos: -2.5,-17.5 - parent: 0 - type: Transform -- uid: 7518 - type: CableApcExtension - components: - - pos: -2.5,-16.5 - parent: 0 - type: Transform -- uid: 7519 - type: CableApcExtension - components: - - pos: -2.5,-15.5 - parent: 0 - type: Transform -- uid: 7520 - type: CableApcExtension - components: - - pos: -5.5,-14.5 - parent: 0 - type: Transform -- uid: 7521 - type: CableApcExtension - components: - - pos: -5.5,-13.5 - parent: 0 - type: Transform -- uid: 7522 - type: CableApcExtension - components: - - pos: -4.5,-13.5 - parent: 0 - type: Transform -- uid: 7523 - type: CableApcExtension - components: - - pos: 0.5,-13.5 - parent: 0 - type: Transform -- uid: 7524 - type: CableApcExtension - components: - - pos: 0.5,-14.5 - parent: 0 - type: Transform -- uid: 7525 - type: CableApcExtension - components: - - pos: -0.5,-13.5 - parent: 0 - type: Transform -- uid: 7526 - type: CableApcExtension - components: - - pos: 0.5,-23.5 - parent: 0 - type: Transform -- uid: 7527 - type: CableApcExtension - components: - - pos: 0.5,-24.5 - parent: 0 - type: Transform -- uid: 7528 - type: CableApcExtension - components: - - pos: 0.5,-25.5 - parent: 0 - type: Transform -- uid: 7529 - type: CableApcExtension - components: - - pos: 0.5,-26.5 - parent: 0 - type: Transform -- uid: 7530 - type: CableApcExtension - components: - - pos: 0.5,-27.5 - parent: 0 - type: Transform -- uid: 7531 - type: CableApcExtension - components: - - pos: 0.5,-28.5 - parent: 0 - type: Transform -- uid: 7532 - type: CableApcExtension - components: - - pos: 0.5,-29.5 - parent: 0 - type: Transform -- uid: 7533 - type: CableApcExtension - components: - - pos: 0.5,-30.5 - parent: 0 - type: Transform -- uid: 7534 - type: CableApcExtension - components: - - pos: 0.5,-31.5 - parent: 0 - type: Transform -- uid: 7535 - type: CableApcExtension - components: - - pos: -5.5,-23.5 - parent: 0 - type: Transform -- uid: 7536 - type: CableApcExtension - components: - - pos: -5.5,-24.5 - parent: 0 - type: Transform -- uid: 7537 - type: CableApcExtension - components: - - pos: -5.5,-25.5 - parent: 0 - type: Transform -- uid: 7538 - type: CableApcExtension - components: - - pos: -5.5,-26.5 - parent: 0 - type: Transform -- uid: 7539 - type: CableApcExtension - components: - - pos: -5.5,-27.5 - parent: 0 - type: Transform -- uid: 7540 - type: CableApcExtension - components: - - pos: -5.5,-28.5 - parent: 0 - type: Transform -- uid: 7541 - type: CableApcExtension - components: - - pos: -5.5,-29.5 - parent: 0 - type: Transform -- uid: 7542 - type: CableApcExtension - components: - - pos: -5.5,-30.5 - parent: 0 - type: Transform -- uid: 7543 - type: CableApcExtension - components: - - pos: -5.5,-31.5 - parent: 0 - type: Transform -- uid: 7544 - type: CableApcExtension - components: - - pos: -4.5,-31.5 - parent: 0 - type: Transform -- uid: 7545 - type: CableApcExtension - components: - - pos: -4.5,-25.5 - parent: 0 - type: Transform -- uid: 7546 - type: CableApcExtension - components: - - pos: -3.5,-25.5 - parent: 0 - type: Transform -- uid: 7547 - type: CableApcExtension - components: - - pos: -2.5,-25.5 - parent: 0 - type: Transform -- uid: 7548 - type: CableApcExtension - components: - - pos: -2.5,-26.5 - parent: 0 - type: Transform -- uid: 7549 - type: CableApcExtension - components: - - pos: -2.5,-27.5 - parent: 0 - type: Transform -- uid: 7550 - type: CableApcExtension - components: - - pos: -2.5,-28.5 - parent: 0 - type: Transform -- uid: 7551 - type: CableApcExtension - components: - - pos: -2.5,-29.5 - parent: 0 - type: Transform -- uid: 7552 - type: CableApcExtension - components: - - pos: -0.5,-31.5 - parent: 0 - type: Transform -- uid: 7553 - type: CableApcExtension - components: - - pos: -1.5,-31.5 - parent: 0 - type: Transform -- uid: 7554 - type: CableApcExtension - components: - - pos: -2.5,-31.5 - parent: 0 - type: Transform -- uid: 7555 - type: CableApcExtension - components: - - pos: -5.5,-12.5 - parent: 0 - type: Transform -- uid: 7556 - type: CableApcExtension - components: - - pos: -6.5,-12.5 - parent: 0 - type: Transform -- uid: 7557 - type: CableApcExtension - components: - - pos: -7.5,-12.5 - parent: 0 - type: Transform -- uid: 7558 - type: CableApcExtension - components: - - pos: -8.5,-12.5 - parent: 0 - type: Transform -- uid: 7559 - type: CableApcExtension - components: - - pos: -9.5,-12.5 - parent: 0 - type: Transform -- uid: 7560 - type: CableApcExtension - components: - - pos: -10.5,-12.5 - parent: 0 - type: Transform -- uid: 7561 - type: CableApcExtension - components: - - pos: -11.5,-12.5 - parent: 0 - type: Transform -- uid: 7562 - type: CableApcExtension - components: - - pos: -12.5,-12.5 - parent: 0 - type: Transform -- uid: 7563 - type: CableApcExtension - components: - - pos: -13.5,-12.5 - parent: 0 - type: Transform -- uid: 7564 - type: CableApcExtension - components: - - pos: -14.5,-12.5 - parent: 0 - type: Transform -- uid: 7565 - type: CableApcExtension - components: - - pos: -15.5,-12.5 - parent: 0 - type: Transform -- uid: 7566 - type: CableApcExtension - components: - - pos: -16.5,-12.5 - parent: 0 - type: Transform -- uid: 7567 - type: CableApcExtension - components: - - pos: -17.5,-12.5 - parent: 0 - type: Transform -- uid: 7568 - type: CableApcExtension - components: - - pos: -18.5,-12.5 - parent: 0 - type: Transform -- uid: 7569 - type: CableApcExtension - components: - - pos: -19.5,-12.5 - parent: 0 - type: Transform -- uid: 7570 - type: SignPlaque - components: - - pos: 24.5,-21.5 - parent: 0 - type: Transform -- uid: 7571 - type: DrinkDoctorsDelightGlass - components: - - pos: -25.37559,-25.25328 - parent: 0 - type: Transform -- uid: 7572 - type: SpawnPointChiefMedicalOfficer - components: - - pos: -26.5,-26.5 - parent: 0 - type: Transform -- uid: 7573 - type: SpawnPointMedicalDoctor - components: - - pos: -20.5,-24.5 - parent: 0 - type: Transform -- uid: 7574 - type: SpawnPointMedicalDoctor - components: - - pos: -18.5,-24.5 - parent: 0 - type: Transform -- uid: 7575 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7576 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7577 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7578 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7579 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7580 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7581 - type: Poweredlight - components: - - pos: -15.5,-15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7582 - type: Poweredlight - components: - - pos: -10.5,-20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7583 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7584 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7585 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -16.5,-25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7586 - type: Poweredlight - components: - - pos: -19.5,-21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7587 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -24.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7588 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7589 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-16.5 - parent: 0 - type: Transform -- uid: 7590 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-16.5 - parent: 0 - type: Transform -- uid: 7591 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -9.5,-21.5 - parent: 0 - type: Transform -- uid: 7592 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -9.5,-20.5 - parent: 0 - type: Transform -- uid: 7593 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -9.5,-19.5 - parent: 0 - type: Transform -- uid: 7594 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -9.5,-18.5 - parent: 0 - type: Transform -- uid: 7595 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -9.5,-17.5 - parent: 0 - type: Transform -- uid: 7596 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-21.5 - parent: 0 - type: Transform -- uid: 7597 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-21.5 - parent: 0 - type: Transform -- uid: 7598 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-21.5 - parent: 0 - type: Transform -- uid: 7599 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-21.5 - parent: 0 - type: Transform -- uid: 7600 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-21.5 - parent: 0 - type: Transform -- uid: 7601 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 0 - type: Transform -- uid: 7602 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 0 - type: Transform -- uid: 7603 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 0 - type: Transform -- uid: 7604 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-21.5 - parent: 0 - type: Transform -- uid: 7605 - type: CableApcExtension - components: - - pos: -9.5,-20.5 - parent: 0 - type: Transform -- uid: 7606 - type: CableApcExtension - components: - - pos: -9.5,-19.5 - parent: 0 - type: Transform -- uid: 7607 - type: CableApcExtension - components: - - pos: -9.5,-18.5 - parent: 0 - type: Transform -- uid: 7608 - type: CableApcExtension - components: - - pos: -9.5,-17.5 - parent: 0 - type: Transform -- uid: 7609 - type: CableApcExtension - components: - - pos: -9.5,-16.5 - parent: 0 - type: Transform -- uid: 7610 - type: CableApcExtension - components: - - pos: -9.5,-15.5 - parent: 0 - type: Transform -- uid: 7611 - type: CableApcExtension - components: - - pos: -10.5,-17.5 - parent: 0 - type: Transform -- uid: 7612 - type: CableApcExtension - components: - - pos: -11.5,-17.5 - parent: 0 - type: Transform -- uid: 7613 - type: CableApcExtension - components: - - pos: -10.5,-15.5 - parent: 0 - type: Transform -- uid: 7614 - type: CableApcExtension - components: - - pos: -11.5,-15.5 - parent: 0 - type: Transform -- uid: 7615 - type: ClosetFireFilled - components: - - pos: -16.5,-13.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 7616 - type: ClosetEmergencyFilledRandom - components: - - pos: -15.5,-13.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 7617 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -14.5,-13.5 - parent: 0 - type: Transform -- uid: 7618 - type: DisposalUnit - components: - - pos: -14.5,-13.5 - parent: 0 - type: Transform -- uid: 7619 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -14.5,-12.5 - parent: 0 - type: Transform -- uid: 7620 - type: Grille - components: - - pos: -7.5,-27.5 - parent: 0 - type: Transform -- uid: 7621 - type: Poweredlight - components: - - pos: -2.5,-21.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7622 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7623 - type: Poweredlight - components: - - pos: -5.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7624 - type: Poweredlight - components: - - pos: 0.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7625 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7626 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7627 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7628 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-23.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7629 - type: Poweredlight - components: - - pos: -13.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7630 - type: Poweredlight - components: - - pos: -19.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7631 - type: Poweredlight - components: - - pos: 4.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7632 - type: Poweredlight - components: - - pos: 10.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7633 - type: SpawnPointChaplain - components: - - pos: -26.5,-36.5 - parent: 0 - type: Transform -- uid: 7634 - type: SpawnPointLibrarian - components: - - pos: -31.5,-22.5 - parent: 0 - type: Transform -- uid: 7635 - type: WallReinforced - components: - - pos: -17.5,30.5 - parent: 0 - type: Transform -- uid: 7636 - type: WallReinforced - components: - - pos: -18.5,29.5 - parent: 0 - type: Transform -- uid: 7637 - type: WallReinforced - components: - - pos: -18.5,30.5 - parent: 0 - type: Transform -- uid: 7638 - type: WallReinforced - components: - - pos: -19.5,30.5 - parent: 0 - type: Transform -- uid: 7639 - type: WallReinforced - components: - - pos: -20.5,30.5 - parent: 0 - type: Transform -- uid: 7640 - type: WallReinforced - components: - - pos: -20.5,29.5 - parent: 0 - type: Transform -- uid: 7641 - type: WallReinforced - components: - - pos: -18.5,21.5 - parent: 0 - type: Transform -- uid: 7642 - type: WallReinforced - components: - - pos: -18.5,22.5 - parent: 0 - type: Transform -- uid: 7643 - type: WallReinforced - components: - - pos: -18.5,23.5 - parent: 0 - type: Transform -- uid: 7644 - type: WallReinforced - components: - - pos: -18.5,24.5 - parent: 0 - type: Transform -- uid: 7645 - type: WallReinforced - components: - - pos: -18.5,26.5 - parent: 0 - type: Transform -- uid: 7646 - type: WallReinforced - components: - - pos: -18.5,27.5 - parent: 0 - type: Transform -- uid: 7647 - type: WallReinforced - components: - - pos: -18.5,28.5 - parent: 0 - type: Transform -- uid: 7648 - type: WallReinforced - components: - - pos: -24.5,30.5 - parent: 0 - type: Transform -- uid: 7649 - type: WallReinforced - components: - - pos: -24.5,29.5 - parent: 0 - type: Transform -- uid: 7650 - type: WallReinforced - components: - - pos: -23.5,29.5 - parent: 0 - type: Transform -- uid: 7651 - type: WallReinforced - components: - - pos: -21.5,29.5 - parent: 0 - type: Transform -- uid: 7652 - type: WallReinforced - components: - - pos: -19.5,21.5 - parent: 0 - type: Transform -- uid: 7653 - type: WallReinforced - components: - - pos: -24.5,21.5 - parent: 0 - type: Transform -- uid: 7654 - type: WallReinforced - components: - - pos: -24.5,22.5 - parent: 0 - type: Transform -- uid: 7655 - type: KvassTankFull - components: - - pos: -17.5,33.5 - parent: 0 - type: Transform -- uid: 7656 - type: WallReinforced - components: - - pos: -24.5,24.5 - parent: 0 - type: Transform -- uid: 7657 - type: WallReinforced - components: - - pos: -24.5,25.5 - parent: 0 - type: Transform -- uid: 7658 - type: WallReinforced - components: - - pos: -24.5,26.5 - parent: 0 - type: Transform -- uid: 7659 - type: WallReinforced - components: - - pos: -24.5,27.5 - parent: 0 - type: Transform -- uid: 7660 - type: WallReinforced - components: - - pos: -24.5,28.5 - parent: 0 - type: Transform -- uid: 7661 - type: WallReinforced - components: - - pos: -24.5,32.5 - parent: 0 - type: Transform -- uid: 7662 - type: WallReinforced - components: - - pos: -24.5,33.5 - parent: 0 - type: Transform -- uid: 7663 - type: WallReinforced - components: - - pos: -25.5,33.5 - parent: 0 - type: Transform -- uid: 7664 - type: WallReinforced - components: - - pos: -26.5,33.5 - parent: 0 - type: Transform -- uid: 7665 - type: ReinforcedWindow - components: - - pos: -22.5,29.5 - parent: 0 - type: Transform -- uid: 7666 - type: ReinforcedWindow - components: - - pos: -24.5,31.5 - parent: 0 - type: Transform -- uid: 7667 - type: ReinforcedWindow - components: - - pos: -27.5,33.5 - parent: 0 - type: Transform -- uid: 7668 - type: ReinforcedWindow - components: - - pos: -28.5,33.5 - parent: 0 - type: Transform -- uid: 7669 - type: ReinforcedWindow - components: - - pos: -29.5,33.5 - parent: 0 - type: Transform -- uid: 7670 - type: WallReinforced - components: - - pos: -30.5,33.5 - parent: 0 - type: Transform -- uid: 7671 - type: WallReinforced - components: - - pos: -31.5,33.5 - parent: 0 - type: Transform -- uid: 7672 - type: WallReinforced - components: - - pos: -32.5,33.5 - parent: 0 - type: Transform -- uid: 7673 - type: WallReinforced - components: - - pos: -33.5,33.5 - parent: 0 - type: Transform -- uid: 7674 - type: WallReinforced - components: - - pos: -32.5,28.5 - parent: 0 - type: Transform -- uid: 7675 - type: WallReinforced - components: - - pos: -33.5,29.5 - parent: 0 - type: Transform -- uid: 7676 - type: WallReinforced - components: - - pos: -33.5,30.5 - parent: 0 - type: Transform -- uid: 7677 - type: WallReinforced - components: - - pos: -33.5,31.5 - parent: 0 - type: Transform -- uid: 7678 - type: WallReinforced - components: - - pos: -33.5,32.5 - parent: 0 - type: Transform -- uid: 7679 - type: WallReinforced - components: - - pos: -33.5,28.5 - parent: 0 - type: Transform -- uid: 7680 - type: WallReinforced - components: - - pos: -31.5,21.5 - parent: 0 - type: Transform -- uid: 7681 - type: WallReinforced - components: - - pos: -28.5,21.5 - parent: 0 - type: Transform -- uid: 7682 - type: WallReinforced - components: - - pos: -27.5,22.5 - parent: 0 - type: Transform -- uid: 7683 - type: WallReinforced - components: - - pos: -27.5,23.5 - parent: 0 - type: Transform -- uid: 7684 - type: WallReinforced - components: - - pos: -28.5,23.5 - parent: 0 - type: Transform -- uid: 7685 - type: WallReinforced - components: - - pos: -31.5,23.5 - parent: 0 - type: Transform -- uid: 7686 - type: WallReinforced - components: - - pos: -25.5,21.5 - parent: 0 - type: Transform -- uid: 7687 - type: WallReinforced - components: - - pos: -26.5,21.5 - parent: 0 - type: Transform -- uid: 7688 - type: WallReinforced - components: - - pos: -27.5,21.5 - parent: 0 - type: Transform -- uid: 7689 - type: WallReinforced - components: - - pos: -32.5,23.5 - parent: 0 - type: Transform -- uid: 7690 - type: WallReinforced - components: - - pos: -25.5,25.5 - parent: 0 - type: Transform -- uid: 7691 - type: WallReinforced - components: - - pos: -28.5,25.5 - parent: 0 - type: Transform -- uid: 7692 - type: WallReinforced - components: - - pos: -32.5,22.5 - parent: 0 - type: Transform -- uid: 7693 - type: WallReinforced - components: - - pos: -27.5,25.5 - parent: 0 - type: Transform -- uid: 7694 - type: WallReinforced - components: - - pos: -31.5,25.5 - parent: 0 - type: Transform -- uid: 7695 - type: WallReinforced - components: - - pos: -32.5,21.5 - parent: 0 - type: Transform -- uid: 7696 - type: WallReinforced - components: - - pos: -32.5,27.5 - parent: 0 - type: Transform -- uid: 7697 - type: WallReinforced - components: - - pos: -32.5,26.5 - parent: 0 - type: Transform -- uid: 7698 - type: WallReinforced - components: - - pos: -32.5,25.5 - parent: 0 - type: Transform -- uid: 7699 - type: WallReinforced - components: - - pos: -32.5,24.5 - parent: 0 - type: Transform -- uid: 7700 - type: WallReinforced - components: - - pos: -29.5,25.5 - parent: 0 - type: Transform -- uid: 7701 - type: WallReinforced - components: - - pos: -28.5,26.5 - parent: 0 - type: Transform -- uid: 7702 - type: WallReinforced - components: - - pos: -28.5,27.5 - parent: 0 - type: Transform -- uid: 7703 - type: WallReinforced - components: - - pos: -28.5,28.5 - parent: 0 - type: Transform -- uid: 7704 - type: WallReinforced - components: - - pos: -29.5,28.5 - parent: 0 - type: Transform -- uid: 7705 - type: WallReinforced - components: - - pos: -27.5,28.5 - parent: 0 - type: Transform -- uid: 7706 - type: WallReinforced - components: - - pos: -25.5,28.5 - parent: 0 - type: Transform -- uid: 7707 - type: WallReinforced - components: - - pos: -31.5,28.5 - parent: 0 - type: Transform -- uid: 7708 - type: ReinforcedWindow - components: - - pos: -24.5,20.5 - parent: 0 - type: Transform -- uid: 7709 - type: ReinforcedWindow - components: - - pos: -24.5,19.5 - parent: 0 - type: Transform -- uid: 7710 - type: ReinforcedWindow - components: - - pos: -24.5,17.5 - parent: 0 - type: Transform -- uid: 7711 - type: ReinforcedWindow - components: - - pos: -24.5,16.5 - parent: 0 - type: Transform -- uid: 7712 - type: WallReinforced - components: - - pos: -24.5,9.5 - parent: 0 - type: Transform -- uid: 7713 - type: WallReinforced - components: - - pos: -25.5,9.5 - parent: 0 - type: Transform -- uid: 7714 - type: WallReinforced - components: - - pos: -26.5,9.5 - parent: 0 - type: Transform -- uid: 7715 - type: WallReinforced - components: - - pos: -27.5,9.5 - parent: 0 - type: Transform -- uid: 7716 - type: ReinforcedWindow - components: - - pos: -27.5,20.5 - parent: 0 - type: Transform -- uid: 7717 - type: ReinforcedWindow - components: - - pos: -27.5,17.5 - parent: 0 - type: Transform -- uid: 7718 - type: WallReinforced - components: - - pos: -24.5,18.5 - parent: 0 - type: Transform -- uid: 7719 - type: WallReinforced - components: - - pos: -24.5,15.5 - parent: 0 - type: Transform -- uid: 7720 - type: WallReinforced - components: - - pos: -25.5,15.5 - parent: 0 - type: Transform -- uid: 7721 - type: WallReinforced - components: - - pos: -26.5,15.5 - parent: 0 - type: Transform -- uid: 7722 - type: WallReinforced - components: - - pos: -27.5,15.5 - parent: 0 - type: Transform -- uid: 7723 - type: WallReinforced - components: - - pos: -24.5,12.5 - parent: 0 - type: Transform -- uid: 7724 - type: WallReinforced - components: - - pos: -27.5,12.5 - parent: 0 - type: Transform -- uid: 7725 - type: ReinforcedWindow - components: - - pos: -24.5,10.5 - parent: 0 - type: Transform -- uid: 7726 - type: ReinforcedWindow - components: - - pos: -27.5,10.5 - parent: 0 - type: Transform -- uid: 7727 - type: WallSolid - components: - - pos: -25.5,18.5 - parent: 0 - type: Transform -- uid: 7728 - type: WallSolid - components: - - pos: -26.5,18.5 - parent: 0 - type: Transform -- uid: 7729 - type: WallSolid - components: - - pos: -27.5,18.5 - parent: 0 - type: Transform -- uid: 7730 - type: SignKiddiePlaque - components: - - pos: -14.5,-29.5 - parent: 0 - type: Transform -- uid: 7731 - type: PaintingPrayerHands - components: - - pos: -23.5,-26.5 - parent: 0 - type: Transform -- uid: 7732 - type: WallReinforced - components: - - pos: -32.5,18.5 - parent: 0 - type: Transform -- uid: 7733 - type: WallReinforced - components: - - pos: -33.5,22.5 - parent: 0 - type: Transform -- uid: 7734 - type: WallReinforced - components: - - pos: -34.5,22.5 - parent: 0 - type: Transform -- uid: 7735 - type: WallReinforced - components: - - pos: -35.5,22.5 - parent: 0 - type: Transform -- uid: 7736 - type: WallReinforced - components: - - pos: -36.5,22.5 - parent: 0 - type: Transform -- uid: 7737 - type: WallReinforced - components: - - pos: -37.5,18.5 - parent: 0 - type: Transform -- uid: 7738 - type: WallReinforced - components: - - pos: -37.5,19.5 - parent: 0 - type: Transform -- uid: 7739 - type: WallReinforced - components: - - pos: -37.5,20.5 - parent: 0 - type: Transform -- uid: 7740 - type: WallReinforced - components: - - pos: -36.5,18.5 - parent: 0 - type: Transform -- uid: 7741 - type: PaintingOlympia - components: - - pos: -28.5,-35.5 - parent: 0 - type: Transform -- uid: 7742 - type: PaintingSleepingGypsy - components: - - pos: -28.5,-13.5 - parent: 0 - type: Transform -- uid: 7743 - type: WallReinforced - components: - - pos: -32.5,16.5 - parent: 0 - type: Transform -- uid: 7744 - type: WallReinforced - components: - - pos: -32.5,13.5 - parent: 0 - type: Transform -- uid: 7745 - type: ReinforcedWindow - components: - - pos: -32.5,12.5 - parent: 0 - type: Transform -- uid: 7746 - type: ReinforcedWindow - components: - - pos: -33.5,13.5 - parent: 0 - type: Transform -- uid: 7747 - type: ReinforcedWindow - components: - - pos: -32.5,14.5 - parent: 0 - type: Transform -- uid: 7748 - type: ReinforcedWindow - components: - - pos: -32.5,10.5 - parent: 0 - type: Transform -- uid: 7749 - type: WallReinforced - components: - - pos: -28.5,9.5 - parent: 0 - type: Transform -- uid: 7750 - type: WallReinforced - components: - - pos: -29.5,9.5 - parent: 0 - type: Transform -- uid: 7751 - type: WallReinforced - components: - - pos: -30.5,9.5 - parent: 0 - type: Transform -- uid: 7752 - type: TableReinforced - components: - - pos: -24.5,11.5 - parent: 0 - type: Transform -- uid: 7753 - type: WallReinforced - components: - - pos: -32.5,9.5 - parent: 0 - type: Transform -- uid: 7754 - type: WallReinforced - components: - - pos: -33.5,9.5 - parent: 0 - type: Transform -- uid: 7755 - type: WallReinforced - components: - - pos: -34.5,9.5 - parent: 0 - type: Transform -- uid: 7756 - type: WallReinforced - components: - - pos: -37.5,21.5 - parent: 0 - type: Transform -- uid: 7757 - type: WallReinforced - components: - - pos: -37.5,22.5 - parent: 0 - type: Transform -- uid: 7758 - type: WallReinforced - components: - - pos: -37.5,17.5 - parent: 0 - type: Transform -- uid: 7759 - type: WallReinforced - components: - - pos: -37.5,16.5 - parent: 0 - type: Transform -- uid: 7760 - type: WallReinforced - components: - - pos: -37.5,15.5 - parent: 0 - type: Transform -- uid: 7761 - type: WallReinforced - components: - - pos: -37.5,14.5 - parent: 0 - type: Transform -- uid: 7762 - type: WallReinforced - components: - - pos: -37.5,13.5 - parent: 0 - type: Transform -- uid: 7763 - type: WallReinforced - components: - - pos: -36.5,13.5 - parent: 0 - type: Transform -- uid: 7764 - type: ReinforcedWindow - components: - - pos: -35.5,13.5 - parent: 0 - type: Transform -- uid: 7765 - type: WallReinforced - components: - - pos: -38.5,13.5 - parent: 0 - type: Transform -- uid: 7766 - type: WallReinforced - components: - - pos: -39.5,13.5 - parent: 0 - type: Transform -- uid: 7767 - type: WallReinforced - components: - - pos: -40.5,13.5 - parent: 0 - type: Transform -- uid: 7768 - type: WallReinforced - components: - - pos: -35.5,9.5 - parent: 0 - type: Transform -- uid: 7769 - type: WallReinforced - components: - - pos: -36.5,9.5 - parent: 0 - type: Transform -- uid: 7770 - type: WallReinforced - components: - - pos: -37.5,9.5 - parent: 0 - type: Transform -- uid: 7771 - type: WallReinforced - components: - - pos: -38.5,9.5 - parent: 0 - type: Transform -- uid: 7772 - type: WallReinforced - components: - - pos: -39.5,9.5 - parent: 0 - type: Transform -- uid: 7773 - type: WallReinforced - components: - - pos: -40.5,9.5 - parent: 0 - type: Transform -- uid: 7774 - type: WallReinforced - components: - - pos: -40.5,10.5 - parent: 0 - type: Transform -- uid: 7775 - type: WallReinforced - components: - - pos: -40.5,11.5 - parent: 0 - type: Transform -- uid: 7776 - type: WallReinforced - components: - - pos: -40.5,12.5 - parent: 0 - type: Transform -- uid: 7777 - type: TableReinforced - components: - - pos: -25.5,12.5 - parent: 0 - type: Transform -- uid: 7778 - type: TableReinforced - components: - - pos: -26.5,12.5 - parent: 0 - type: Transform -- uid: 7779 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -24.5,11.5 - parent: 0 - type: Transform -- uid: 7780 - type: WindoorSecurityLocked - components: - - pos: -25.5,12.5 - parent: 0 - type: Transform -- uid: 7781 - type: WindoorSecurityLocked - components: - - pos: -26.5,12.5 - parent: 0 - type: Transform -- uid: 7782 - type: FirelockGlass - components: - - pos: -26.5,12.5 - parent: 0 - type: Transform -- uid: 7783 - type: FirelockGlass - components: - - pos: -25.5,12.5 - parent: 0 - type: Transform -- uid: 7784 - type: FirelockGlass - components: - - pos: -24.5,11.5 - parent: 0 - type: Transform -- uid: 7785 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -27.5,16.5 - parent: 0 - type: Transform -- uid: 7786 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -27.5,19.5 - parent: 0 - type: Transform -- uid: 7787 - type: TableReinforced - components: - - pos: -32.5,15.5 - parent: 0 - type: Transform -- uid: 7788 - type: AirlockBrigGlassLocked - components: - - pos: -24.5,13.5 - parent: 0 - type: Transform -- uid: 7789 - type: AirlockBrigGlassLocked - components: - - pos: -24.5,14.5 - parent: 0 - type: Transform -- uid: 7790 - type: AirlockBrigGlassLocked - components: - - pos: -27.5,13.5 - parent: 0 - type: Transform -- uid: 7791 - type: AirlockBrigGlassLocked - components: - - pos: -27.5,14.5 - parent: 0 - type: Transform -- uid: 7792 - type: AirlockSecurityGlassLocked - components: - - pos: -27.5,11.5 - parent: 0 - type: Transform -- uid: 7793 - type: AirlockSecurityGlassLocked - components: - - pos: -32.5,11.5 - parent: 0 - type: Transform -- uid: 7794 - type: AirlockSecurityGlassLocked - components: - - pos: -29.5,21.5 - parent: 0 - type: Transform -- uid: 7795 - type: AirlockSecurityGlassLocked - components: - - pos: -30.5,21.5 - parent: 0 - type: Transform -- uid: 7796 - type: AirlockSecurityGlassLocked - components: - - pos: -30.5,23.5 - parent: 0 - type: Transform -- uid: 7797 - type: AirlockSecurityGlassLocked - components: - - pos: -29.5,23.5 - parent: 0 - type: Transform -- uid: 7798 - type: AirlockSecurityGlassLocked - components: - - pos: -26.5,25.5 - parent: 0 - type: Transform -- uid: 7799 - type: AirlockSecurityGlassLocked - components: - - pos: -30.5,25.5 - parent: 0 - type: Transform -- uid: 7800 - type: AirlockArmoryGlassLocked - components: - - pos: -34.5,18.5 - parent: 0 - type: Transform -- uid: 7801 - type: AirlockArmoryGlassLocked - components: - - pos: -32.5,17.5 - parent: 0 - type: Transform -- uid: 7802 - type: AirlockArmoryGlassLocked - components: - - pos: -34.5,13.5 - parent: 0 - type: Transform -- uid: 7803 - type: SignArmory - components: - - pos: -36.5,18.5 - parent: 0 - type: Transform -- uid: 7804 - type: WindoorArmoryLocked - components: - - rot: -1.5707963267948966 rad - pos: -32.5,15.5 - parent: 0 - type: Transform -- uid: 7805 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: -32.5,15.5 - parent: 0 - type: Transform -- uid: 7806 - type: AirlockMaintSecLocked - components: - - pos: -31.5,9.5 - parent: 0 - type: Transform -- uid: 7807 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7808 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7809 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7810 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7811 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7812 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7813 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7814 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7815 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7816 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7817 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7818 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -29.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7819 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -30.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7820 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7821 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -29.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7822 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7823 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -30.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7824 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -29.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7825 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -30.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7826 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -29.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7827 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -29.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7828 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -29.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7829 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -29.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7830 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -30.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7831 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -29.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7832 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -29.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7833 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -29.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7834 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7835 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -29.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7836 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -30.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7837 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7838 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7839 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -29.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7840 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7841 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7842 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7843 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7844 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7845 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,28.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7846 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,29.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7847 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -29.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7848 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7849 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7850 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -26.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7851 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7852 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7853 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7854 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,28.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7855 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7856 - type: GasVentPump - components: - - pos: -26.5,30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7857 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -26.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7858 - type: GasVentScrubber - components: - - pos: -30.5,30.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7859 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -28.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7860 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -31.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7861 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7862 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7863 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7864 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7865 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7866 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7867 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7868 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7869 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7870 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7871 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -26.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7872 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -26.5,20.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7873 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -26.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7874 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -26.5,19.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7875 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -30.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7876 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -29.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7877 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -29.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7878 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -30.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7879 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -30.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7880 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7881 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7882 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7883 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7884 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7885 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7886 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -26.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7887 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -26.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7888 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7889 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7890 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7891 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7892 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7893 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7894 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7895 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -35.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7896 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -34.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7897 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7898 - type: GasPipeStraight - components: - - pos: -35.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7899 - type: GasPipeStraight - components: - - pos: -34.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7900 - type: GasPipeStraight - components: - - pos: -35.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7901 - type: GasPipeStraight - components: - - pos: -35.5,13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7902 - type: GasPipeStraight - components: - - pos: -35.5,14.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7903 - type: GasPipeStraight - components: - - pos: -34.5,13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7904 - type: GasPipeStraight - components: - - pos: -34.5,14.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7905 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -36.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7906 - type: GasVentPump - components: - - pos: -35.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7907 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -36.5,11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7908 - type: GasVentScrubber - components: - - pos: -34.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7909 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -31.5,15.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7910 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -28.5,15.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7911 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -28.5,12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7912 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -28.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7913 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -31.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7914 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -31.5,12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7915 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -32.5,10.5 - parent: 0 - type: Transform -- uid: 7916 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -32.5,12.5 - parent: 0 - type: Transform -- uid: 7917 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,10.5 - parent: 0 - type: Transform -- uid: 7918 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -24.5,10.5 - parent: 0 - type: Transform -- uid: 7919 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -35.5,13.5 - parent: 0 - type: Transform -- uid: 7920 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -33.5,13.5 - parent: 0 - type: Transform -- uid: 7921 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -32.5,14.5 - parent: 0 - type: Transform -- uid: 7922 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,17.5 - parent: 0 - type: Transform -- uid: 7923 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -24.5,17.5 - parent: 0 - type: Transform -- uid: 7924 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -24.5,16.5 - parent: 0 - type: Transform -- uid: 7925 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -24.5,19.5 - parent: 0 - type: Transform -- uid: 7926 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -24.5,20.5 - parent: 0 - type: Transform -- uid: 7927 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,20.5 - parent: 0 - type: Transform -- uid: 7928 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -22.5,29.5 - parent: 0 - type: Transform -- uid: 7929 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -24.5,31.5 - parent: 0 - type: Transform -- uid: 7930 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -27.5,33.5 - parent: 0 - type: Transform -- uid: 7931 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -29.5,33.5 - parent: 0 - type: Transform -- uid: 7932 - type: AirlockMaintCommandLocked - components: - - pos: -17.5,21.5 - parent: 0 - type: Transform -- uid: 7933 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -28.5,33.5 - parent: 0 - type: Transform -- uid: 7934 - type: AirlockHeadOfSecurityLocked - components: - - pos: -18.5,25.5 - parent: 0 - type: Transform -- uid: 7935 - type: AirlockHeadOfSecurityGlassLocked - components: - - pos: -22.5,26.5 - parent: 0 - type: Transform -- uid: 7936 - type: AirlockHeadOfSecurityLocked - components: - - pos: -22.5,21.5 - parent: 0 - type: Transform -- uid: 7937 - type: WallReinforced - components: - - pos: -27.5,6.5 - parent: 0 - type: Transform -- uid: 7938 - type: WallReinforced - components: - - pos: -28.5,6.5 - parent: 0 - type: Transform -- uid: 7939 - type: WallReinforced - components: - - pos: -29.5,6.5 - parent: 0 - type: Transform -- uid: 7940 - type: WallReinforced - components: - - pos: -30.5,6.5 - parent: 0 - type: Transform -- uid: 7941 - type: WallReinforced - components: - - pos: -31.5,6.5 - parent: 0 - type: Transform -- uid: 7942 - type: WallReinforced - components: - - pos: -32.5,6.5 - parent: 0 - type: Transform -- uid: 7943 - type: WallReinforced - components: - - pos: -33.5,6.5 - parent: 0 - type: Transform -- uid: 7944 - type: WallReinforced - components: - - pos: -34.5,6.5 - parent: 0 - type: Transform -- uid: 7945 - type: WallReinforced - components: - - pos: -35.5,6.5 - parent: 0 - type: Transform -- uid: 7946 - type: WallReinforced - components: - - pos: -36.5,6.5 - parent: 0 - type: Transform -- uid: 7947 - type: WallReinforced - components: - - pos: -37.5,6.5 - parent: 0 - type: Transform -- uid: 7948 - type: WallReinforced - components: - - pos: -38.5,6.5 - parent: 0 - type: Transform -- uid: 7949 - type: AirlockMaintAtmoLocked - components: - - pos: -39.5,6.5 - parent: 0 - type: Transform -- uid: 7950 - type: WallReinforced - components: - - pos: -40.5,6.5 - parent: 0 - type: Transform -- uid: 7951 - type: WallReinforced - components: - - pos: -40.5,7.5 - parent: 0 - type: Transform -- uid: 7952 - type: WallReinforced - components: - - pos: -40.5,8.5 - parent: 0 - type: Transform -- uid: 7953 - type: WallSolid - components: - - pos: -28.5,7.5 - parent: 0 - type: Transform -- uid: 7954 - type: AirlockMaintLocked - components: - - pos: -28.5,8.5 - parent: 0 - type: Transform -- uid: 7955 - type: WallReinforced - components: - - pos: -35.5,8.5 - parent: 0 - type: Transform -- uid: 7956 - type: AirlockEngineeringLocked - components: - - pos: -35.5,7.5 - parent: 0 - type: Transform -- uid: 7957 - type: SubstationBasic - components: - - pos: -37.5,8.5 - parent: 0 - type: Transform -- uid: 7958 - type: CableHV - components: - - pos: -37.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7959 - type: CableHV - components: - - pos: -37.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7960 - type: CableHV - components: - - pos: -36.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7961 - type: CableHV - components: - - pos: -35.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7962 - type: CableHV - components: - - pos: -34.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7963 - type: CableHV - components: - - pos: -33.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7964 - type: CableHV - components: - - pos: -32.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7965 - type: CableHV - components: - - pos: -31.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7966 - type: CableHV - components: - - pos: -30.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7967 - type: CableHV - components: - - pos: -29.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7968 - type: CableHV - components: - - pos: -29.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7969 - type: CableHV - components: - - pos: -28.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7970 - type: CableHV - components: - - pos: -27.5,8.5 - parent: 0 - type: Transform -- uid: 7971 - type: CableHV - components: - - pos: -26.5,8.5 - parent: 0 - type: Transform -- uid: 7972 - type: CableHV - components: - - pos: -25.5,8.5 - parent: 0 - type: Transform -- uid: 7973 - type: CableHV - components: - - pos: -24.5,8.5 - parent: 0 - type: Transform -- uid: 7974 - type: CableHV - components: - - pos: -23.5,8.5 - parent: 0 - type: Transform -- uid: 7975 - type: CableHV - components: - - pos: -22.5,8.5 - parent: 0 - type: Transform -- uid: 7976 - type: CableHV - components: - - pos: -22.5,9.5 - parent: 0 - type: Transform -- uid: 7977 - type: CableHV - components: - - pos: -22.5,10.5 - parent: 0 - type: Transform -- uid: 7978 - type: CableHV - components: - - pos: -21.5,10.5 - parent: 0 - type: Transform -- uid: 7979 - type: CableHV - components: - - pos: -20.5,10.5 - parent: 0 - type: Transform -- uid: 7980 - type: CableHV - components: - - pos: -19.5,10.5 - parent: 0 - type: Transform -- uid: 7981 - type: CableHV - components: - - pos: -18.5,10.5 - parent: 0 - type: Transform -- uid: 7982 - type: CableHV - components: - - pos: -17.5,10.5 - parent: 0 - type: Transform -- uid: 7983 - type: CableHV - components: - - pos: -16.5,10.5 - parent: 0 - type: Transform -- uid: 7984 - type: CableHV - components: - - pos: -15.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7985 - type: APCBasic - components: - - pos: -36.5,13.5 - parent: 0 - type: Transform -- uid: 7986 - type: CableMV - components: - - pos: -36.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7987 - type: CableMV - components: - - pos: -36.5,12.5 - parent: 0 - type: Transform -- uid: 7988 - type: CableMV - components: - - pos: -36.5,11.5 - parent: 0 - type: Transform -- uid: 7989 - type: CableMV - components: - - pos: -35.5,11.5 - parent: 0 - type: Transform -- uid: 7990 - type: CableMV - components: - - pos: -34.5,11.5 - parent: 0 - type: Transform -- uid: 7991 - type: CableMV - components: - - pos: -33.5,11.5 - parent: 0 - type: Transform -- uid: 7992 - type: CableMV - components: - - pos: -32.5,11.5 - parent: 0 - type: Transform -- uid: 7993 - type: CableMV - components: - - pos: -31.5,11.5 - parent: 0 - type: Transform -- uid: 7994 - type: CableMV - components: - - pos: -31.5,10.5 - parent: 0 - type: Transform -- uid: 7995 - type: CableMV - components: - - pos: -31.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7996 - type: CableMV - components: - - pos: -31.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7997 - type: CableMV - components: - - pos: -31.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7998 - type: CableMV - components: - - pos: -32.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7999 - type: CableMV - components: - - pos: -33.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8000 - type: CableMV - components: - - pos: -34.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8001 - type: CableMV - components: - - pos: -35.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8002 - type: CableMV - components: - - pos: -36.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8003 - type: CableMV - components: - - pos: -37.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8004 - type: CableMV - components: - - pos: -37.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8005 - type: CableMV - components: - - pos: -30.5,11.5 - parent: 0 - type: Transform -- uid: 8006 - type: CableMV - components: - - pos: -29.5,11.5 - parent: 0 - type: Transform -- uid: 8007 - type: CableMV - components: - - pos: -29.5,12.5 - parent: 0 - type: Transform -- uid: 8008 - type: CableMV - components: - - pos: -29.5,13.5 - parent: 0 - type: Transform -- uid: 8009 - type: CableMV - components: - - pos: -29.5,14.5 - parent: 0 - type: Transform -- uid: 8010 - type: CableMV - components: - - pos: -29.5,15.5 - parent: 0 - type: Transform -- uid: 8011 - type: CableMV - components: - - pos: -29.5,16.5 - parent: 0 - type: Transform -- uid: 8012 - type: CableMV - components: - - pos: -29.5,17.5 - parent: 0 - type: Transform -- uid: 8013 - type: CableMV - components: - - pos: -29.5,18.5 - parent: 0 - type: Transform -- uid: 8014 - type: CableMV - components: - - pos: -29.5,19.5 - parent: 0 - type: Transform -- uid: 8015 - type: CableMV - components: - - pos: -28.5,19.5 - parent: 0 - type: Transform -- uid: 8016 - type: CableMV - components: - - pos: -27.5,19.5 - parent: 0 - type: Transform -- uid: 8017 - type: CableMV - components: - - pos: -26.5,19.5 - parent: 0 - type: Transform -- uid: 8018 - type: CableMV - components: - - pos: -25.5,19.5 - parent: 0 - type: Transform -- uid: 8019 - type: CableMV - components: - - pos: -24.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8020 - type: CableMV - components: - - pos: -24.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8021 - type: CableMV - components: - - pos: -28.5,16.5 - parent: 0 - type: Transform -- uid: 8022 - type: CableMV - components: - - pos: -27.5,16.5 - parent: 0 - type: Transform -- uid: 8023 - type: CableMV - components: - - pos: -26.5,16.5 - parent: 0 - type: Transform -- uid: 8024 - type: CableMV - components: - - pos: -25.5,16.5 - parent: 0 - type: Transform -- uid: 8025 - type: CableMV - components: - - pos: -24.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8026 - type: CableMV - components: - - pos: -24.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8027 - type: CableMV - components: - - pos: -27.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8028 - type: CableMV - components: - - pos: -27.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8029 - type: CableMV - components: - - pos: -29.5,10.5 - parent: 0 - type: Transform -- uid: 8030 - type: CableMV - components: - - pos: -28.5,10.5 - parent: 0 - type: Transform -- uid: 8031 - type: CableMV - components: - - pos: -27.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8032 - type: CableMV - components: - - pos: -26.5,10.5 - parent: 0 - type: Transform -- uid: 8033 - type: CableMV - components: - - pos: -25.5,10.5 - parent: 0 - type: Transform -- uid: 8034 - type: CableMV - components: - - pos: -24.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8035 - type: CableMV - components: - - pos: -32.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8036 - type: CableMV - components: - - pos: -32.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8037 - type: CableMV - components: - - pos: -30.5,14.5 - parent: 0 - type: Transform -- uid: 8038 - type: CableMV - components: - - pos: -31.5,14.5 - parent: 0 - type: Transform -- uid: 8039 - type: CableMV - components: - - pos: -32.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8040 - type: CableMV - components: - - pos: -33.5,14.5 - parent: 0 - type: Transform -- uid: 8041 - type: CableMV - components: - - pos: -33.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8042 - type: CableMV - components: - - pos: -34.5,14.5 - parent: 0 - type: Transform -- uid: 8043 - type: CableMV - components: - - pos: -35.5,14.5 - parent: 0 - type: Transform -- uid: 8044 - type: CableMV - components: - - pos: -35.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8045 - type: CableMV - components: - - pos: -35.5,15.5 - parent: 0 - type: Transform -- uid: 8046 - type: CableMV - components: - - pos: -35.5,16.5 - parent: 0 - type: Transform -- uid: 8047 - type: CableMV - components: - - pos: -35.5,17.5 - parent: 0 - type: Transform -- uid: 8048 - type: CableMV - components: - - pos: -35.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8049 - type: CableMV - components: - - pos: -33.5,15.5 - parent: 0 - type: Transform -- uid: 8050 - type: CableMV - components: - - pos: -33.5,16.5 - parent: 0 - type: Transform -- uid: 8051 - type: CableMV - components: - - pos: -33.5,17.5 - parent: 0 - type: Transform -- uid: 8052 - type: CableMV - components: - - pos: -33.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8053 - type: CableMV - components: - - pos: -33.5,19.5 - parent: 0 - type: Transform -- uid: 8054 - type: CableMV - components: - - pos: -33.5,20.5 - parent: 0 - type: Transform -- uid: 8055 - type: CableMV - components: - - pos: -32.5,19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8056 - type: CableMV - components: - - pos: -32.5,20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8057 - type: Grille - components: - - pos: -35.5,18.5 - parent: 0 - type: Transform -- uid: 8058 - type: Grille - components: - - pos: -33.5,18.5 - parent: 0 - type: Transform -- uid: 8059 - type: Grille - components: - - pos: -32.5,19.5 - parent: 0 - type: Transform -- uid: 8060 - type: Grille - components: - - pos: -32.5,20.5 - parent: 0 - type: Transform -- uid: 8061 - type: CableApcExtension - components: - - pos: -36.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8062 - type: CableApcExtension - components: - - pos: -36.5,12.5 - parent: 0 - type: Transform -- uid: 8063 - type: CableApcExtension - components: - - pos: -36.5,11.5 - parent: 0 - type: Transform -- uid: 8064 - type: CableApcExtension - components: - - pos: -37.5,11.5 - parent: 0 - type: Transform -- uid: 8065 - type: CableApcExtension - components: - - pos: -38.5,11.5 - parent: 0 - type: Transform -- uid: 8066 - type: CableApcExtension - components: - - pos: -35.5,11.5 - parent: 0 - type: Transform -- uid: 8067 - type: CableApcExtension - components: - - pos: -34.5,11.5 - parent: 0 - type: Transform -- uid: 8068 - type: CableApcExtension - components: - - pos: -33.5,11.5 - parent: 0 - type: Transform -- uid: 8069 - type: CableApcExtension - components: - - pos: -32.5,11.5 - parent: 0 - type: Transform -- uid: 8070 - type: CableApcExtension - components: - - pos: -31.5,11.5 - parent: 0 - type: Transform -- uid: 8071 - type: CableApcExtension - components: - - pos: -30.5,11.5 - parent: 0 - type: Transform -- uid: 8072 - type: CableApcExtension - components: - - pos: -29.5,11.5 - parent: 0 - type: Transform -- uid: 8073 - type: CableApcExtension - components: - - pos: -29.5,12.5 - parent: 0 - type: Transform -- uid: 8074 - type: CableApcExtension - components: - - pos: -29.5,13.5 - parent: 0 - type: Transform -- uid: 8075 - type: CableApcExtension - components: - - pos: -29.5,14.5 - parent: 0 - type: Transform -- uid: 8076 - type: CableApcExtension - components: - - pos: -29.5,15.5 - parent: 0 - type: Transform -- uid: 8077 - type: CableApcExtension - components: - - pos: -29.5,16.5 - parent: 0 - type: Transform -- uid: 8078 - type: CableApcExtension - components: - - pos: -29.5,17.5 - parent: 0 - type: Transform -- uid: 8079 - type: CableApcExtension - components: - - pos: -29.5,18.5 - parent: 0 - type: Transform -- uid: 8080 - type: CableApcExtension - components: - - pos: -29.5,19.5 - parent: 0 - type: Transform -- uid: 8081 - type: CableApcExtension - components: - - pos: -28.5,19.5 - parent: 0 - type: Transform -- uid: 8082 - type: CableApcExtension - components: - - pos: -27.5,19.5 - parent: 0 - type: Transform -- uid: 8083 - type: CableApcExtension - components: - - pos: -26.5,19.5 - parent: 0 - type: Transform -- uid: 8084 - type: CableApcExtension - components: - - pos: -28.5,16.5 - parent: 0 - type: Transform -- uid: 8085 - type: CableApcExtension - components: - - pos: -27.5,16.5 - parent: 0 - type: Transform -- uid: 8086 - type: CableApcExtension - components: - - pos: -26.5,16.5 - parent: 0 - type: Transform -- uid: 8087 - type: CableApcExtension - components: - - pos: -28.5,13.5 - parent: 0 - type: Transform -- uid: 8088 - type: CableApcExtension - components: - - pos: -27.5,13.5 - parent: 0 - type: Transform -- uid: 8089 - type: CableApcExtension - components: - - pos: -26.5,13.5 - parent: 0 - type: Transform -- uid: 8090 - type: CableApcExtension - components: - - pos: -25.5,13.5 - parent: 0 - type: Transform -- uid: 8091 - type: CableApcExtension - components: - - pos: -28.5,11.5 - parent: 0 - type: Transform -- uid: 8092 - type: CableApcExtension - components: - - pos: -27.5,11.5 - parent: 0 - type: Transform -- uid: 8093 - type: CableApcExtension - components: - - pos: -26.5,11.5 - parent: 0 - type: Transform -- uid: 8094 - type: CableApcExtension - components: - - pos: -25.5,11.5 - parent: 0 - type: Transform -- uid: 8095 - type: CableApcExtension - components: - - pos: -34.5,12.5 - parent: 0 - type: Transform -- uid: 8096 - type: CableApcExtension - components: - - pos: -34.5,13.5 - parent: 0 - type: Transform -- uid: 8097 - type: CableApcExtension - components: - - pos: -34.5,14.5 - parent: 0 - type: Transform -- uid: 8098 - type: CableApcExtension - components: - - pos: -34.5,15.5 - parent: 0 - type: Transform -- uid: 8099 - type: CableApcExtension - components: - - pos: -34.5,16.5 - parent: 0 - type: Transform -- uid: 8100 - type: CableApcExtension - components: - - pos: -34.5,17.5 - parent: 0 - type: Transform -- uid: 8101 - type: CableApcExtension - components: - - pos: -34.5,18.5 - parent: 0 - type: Transform -- uid: 8102 - type: CableApcExtension - components: - - pos: -34.5,19.5 - parent: 0 - type: Transform -- uid: 8103 - type: CableApcExtension - components: - - pos: -34.5,20.5 - parent: 0 - type: Transform -- uid: 8104 - type: CableApcExtension - components: - - pos: -35.5,20.5 - parent: 0 - type: Transform -- uid: 8105 - type: CableApcExtension - components: - - pos: -35.5,16.5 - parent: 0 - type: Transform -- uid: 8106 - type: CableApcExtension - components: - - pos: -30.5,19.5 - parent: 0 - type: Transform -- uid: 8107 - type: CableApcExtension - components: - - pos: -30.5,15.5 - parent: 0 - type: Transform -- uid: 8108 - type: CableApcExtension - components: - - pos: -29.5,20.5 - parent: 0 - type: Transform -- uid: 8109 - type: CableApcExtension - components: - - pos: -29.5,21.5 - parent: 0 - type: Transform -- uid: 8110 - type: CableApcExtension - components: - - pos: -29.5,22.5 - parent: 0 - type: Transform -- uid: 8111 - type: CableApcExtension - components: - - pos: -29.5,23.5 - parent: 0 - type: Transform -- uid: 8112 - type: CableApcExtension - components: - - pos: -29.5,24.5 - parent: 0 - type: Transform -- uid: 8113 - type: CableApcExtension - components: - - pos: -28.5,24.5 - parent: 0 - type: Transform -- uid: 8114 - type: CableApcExtension - components: - - pos: -27.5,24.5 - parent: 0 - type: Transform -- uid: 8115 - type: CableApcExtension - components: - - pos: -26.5,24.5 - parent: 0 - type: Transform -- uid: 8116 - type: CableApcExtension - components: - - pos: -26.5,23.5 - parent: 0 - type: Transform -- uid: 8117 - type: CableApcExtension - components: - - pos: -30.5,24.5 - parent: 0 - type: Transform -- uid: 8118 - type: CableApcExtension - components: - - pos: -30.5,25.5 - parent: 0 - type: Transform -- uid: 8119 - type: CableApcExtension - components: - - pos: -30.5,26.5 - parent: 0 - type: Transform -- uid: 8120 - type: CableApcExtension - components: - - pos: -30.5,27.5 - parent: 0 - type: Transform -- uid: 8121 - type: CableApcExtension - components: - - pos: -30.5,28.5 - parent: 0 - type: Transform -- uid: 8122 - type: CableApcExtension - components: - - pos: -30.5,29.5 - parent: 0 - type: Transform -- uid: 8123 - type: CableApcExtension - components: - - pos: -30.5,30.5 - parent: 0 - type: Transform -- uid: 8124 - type: CableApcExtension - components: - - pos: -30.5,31.5 - parent: 0 - type: Transform -- uid: 8125 - type: CableApcExtension - components: - - pos: -26.5,25.5 - parent: 0 - type: Transform -- uid: 8126 - type: CableApcExtension - components: - - pos: -26.5,26.5 - parent: 0 - type: Transform -- uid: 8127 - type: CableApcExtension - components: - - pos: -26.5,27.5 - parent: 0 - type: Transform -- uid: 8128 - type: CableApcExtension - components: - - pos: -26.5,28.5 - parent: 0 - type: Transform -- uid: 8129 - type: CableApcExtension - components: - - pos: -26.5,29.5 - parent: 0 - type: Transform -- uid: 8130 - type: CableApcExtension - components: - - pos: -26.5,30.5 - parent: 0 - type: Transform -- uid: 8131 - type: CableApcExtension - components: - - pos: -26.5,31.5 - parent: 0 - type: Transform -- uid: 8132 - type: CableApcExtension - components: - - pos: -25.5,31.5 - parent: 0 - type: Transform -- uid: 8133 - type: CableApcExtension - components: - - pos: -24.5,31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8134 - type: CableApcExtension - components: - - pos: -27.5,31.5 - parent: 0 - type: Transform -- uid: 8135 - type: CableApcExtension - components: - - pos: -27.5,32.5 - parent: 0 - type: Transform -- uid: 8136 - type: CableApcExtension - components: - - pos: -27.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8137 - type: CableApcExtension - components: - - pos: -28.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8138 - type: CableApcExtension - components: - - pos: -29.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8139 - type: CableApcExtension - components: - - pos: -31.5,31.5 - parent: 0 - type: Transform -- uid: 8140 - type: CableApcExtension - components: - - pos: -29.5,31.5 - parent: 0 - type: Transform -- uid: 8141 - type: Poweredlight - components: - - pos: -36.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8142 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8143 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,16.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8144 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8145 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -36.5,19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8146 - type: PoweredSmallLight - components: - - pos: -26.5,20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8147 - type: PoweredSmallLight - components: - - pos: -26.5,17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8148 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -26.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8149 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8150 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,27.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8151 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8152 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8153 - type: ShuttersNormalOpen - components: - - pos: -21.5,21.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8165 - type: SignalReceiver -- uid: 8154 - type: FirelockGlass - components: - - pos: -23.5,15.5 - parent: 0 - type: Transform -- uid: 8155 - type: FirelockGlass - components: - - pos: -22.5,15.5 - parent: 0 - type: Transform -- uid: 8156 - type: FirelockGlass - components: - - pos: -26.5,6.5 - parent: 0 - type: Transform -- uid: 8157 - type: FirelockGlass - components: - - pos: -25.5,6.5 - parent: 0 - type: Transform -- uid: 8158 - type: AirlockGlass - components: - - pos: -30.5,28.5 - parent: 0 - type: Transform -- uid: 8159 - type: AirlockGlass - components: - - pos: -26.5,28.5 - parent: 0 - type: Transform -- uid: 8160 - type: ShuttersNormalOpen - components: - - pos: -20.5,21.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8165 - type: SignalReceiver -- uid: 8161 - type: ShuttersNormalOpen - components: - - pos: -23.5,21.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 8165 - type: SignalReceiver -- uid: 8162 - type: WallSolid - components: - - pos: -19.5,26.5 - parent: 0 - type: Transform -- uid: 8163 - type: WallSolid - components: - - pos: -20.5,26.5 - parent: 0 - type: Transform -- uid: 8164 - type: WallSolid - components: - - pos: -20.5,28.5 - parent: 0 - type: Transform -- uid: 8165 - type: SignalButton - components: - - pos: -20.5,26.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 8160 - - port: Toggle - uid: 8153 - - port: Toggle - uid: 8161 - type: SignalTransmitter -- uid: 8166 - type: Grille - components: - - pos: -20.5,21.5 - parent: 0 - type: Transform -- uid: 8167 - type: Grille - components: - - pos: -21.5,21.5 - parent: 0 - type: Transform -- uid: 8168 - type: Grille - components: - - pos: -23.5,21.5 - parent: 0 - type: Transform -- uid: 8169 - type: ReinforcedWindow - components: - - pos: -21.5,21.5 - parent: 0 - type: Transform -- uid: 8170 - type: ReinforcedWindow - components: - - pos: -20.5,21.5 - parent: 0 - type: Transform -- uid: 8171 - type: ReinforcedWindow - components: - - pos: -23.5,21.5 - parent: 0 - type: Transform -- uid: 8172 - type: ReinforcedWindow - components: - - pos: -23.5,26.5 - parent: 0 - type: Transform -- uid: 8173 - type: ReinforcedWindow - components: - - pos: -21.5,26.5 - parent: 0 - type: Transform -- uid: 8174 - type: Grille - components: - - pos: -21.5,26.5 - parent: 0 - type: Transform -- uid: 8175 - type: Grille - components: - - pos: -23.5,26.5 - parent: 0 - type: Transform -- uid: 8176 - type: APCBasic - components: - - pos: -19.5,21.5 - parent: 0 - type: Transform -- uid: 8177 - type: CableMV - components: - - pos: -23.5,20.5 - parent: 0 - type: Transform -- uid: 8178 - type: CableMV - components: - - pos: -23.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8179 - type: CableMV - components: - - pos: -22.5,20.5 - parent: 0 - type: Transform -- uid: 8180 - type: CableMV - components: - - pos: -21.5,20.5 - parent: 0 - type: Transform -- uid: 8181 - type: CableMV - components: - - pos: -20.5,20.5 - parent: 0 - type: Transform -- uid: 8182 - type: CableMV - components: - - pos: -19.5,20.5 - parent: 0 - type: Transform -- uid: 8183 - type: CableMV - components: - - pos: -19.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8184 - type: CableMV - components: - - pos: -20.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8185 - type: CableMV - components: - - pos: -21.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8186 - type: CableMV - components: - - pos: -21.5,22.5 - parent: 0 - type: Transform -- uid: 8187 - type: CableMV - components: - - pos: -21.5,23.5 - parent: 0 - type: Transform -- uid: 8188 - type: CableMV - components: - - pos: -21.5,24.5 - parent: 0 - type: Transform -- uid: 8189 - type: CableMV - components: - - pos: -21.5,25.5 - parent: 0 - type: Transform -- uid: 8190 - type: CableMV - components: - - pos: -21.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8191 - type: CableMV - components: - - pos: -21.5,27.5 - parent: 0 - type: Transform -- uid: 8192 - type: CableMV - components: - - pos: -21.5,28.5 - parent: 0 - type: Transform -- uid: 8193 - type: CableMV - components: - - pos: -22.5,28.5 - parent: 0 - type: Transform -- uid: 8194 - type: CableMV - components: - - pos: -22.5,29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8195 - type: CableMV - components: - - pos: -22.5,26.5 - parent: 0 - type: Transform -- uid: 8196 - type: CableMV - components: - - pos: -23.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8197 - type: CableApcExtension - components: - - pos: -19.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8198 - type: CableApcExtension - components: - - pos: -19.5,20.5 - parent: 0 - type: Transform -- uid: 8199 - type: CableApcExtension - components: - - pos: -20.5,20.5 - parent: 0 - type: Transform -- uid: 8200 - type: CableApcExtension - components: - - pos: -21.5,20.5 - parent: 0 - type: Transform -- uid: 8201 - type: CableApcExtension - components: - - pos: -22.5,20.5 - parent: 0 - type: Transform -- uid: 8202 - type: CableApcExtension - components: - - pos: -23.5,20.5 - parent: 0 - type: Transform -- uid: 8203 - type: CableApcExtension - components: - - pos: -22.5,19.5 - parent: 0 - type: Transform -- uid: 8204 - type: CableApcExtension - components: - - pos: -18.5,20.5 - parent: 0 - type: Transform -- uid: 8205 - type: CableApcExtension - components: - - pos: -22.5,18.5 - parent: 0 - type: Transform -- uid: 8206 - type: CableApcExtension - components: - - pos: -19.5,22.5 - parent: 0 - type: Transform -- uid: 8207 - type: CableApcExtension - components: - - pos: -19.5,23.5 - parent: 0 - type: Transform -- uid: 8208 - type: CableApcExtension - components: - - pos: -19.5,24.5 - parent: 0 - type: Transform -- uid: 8209 - type: CableApcExtension - components: - - pos: -19.5,25.5 - parent: 0 - type: Transform -- uid: 8210 - type: CableApcExtension - components: - - pos: -20.5,24.5 - parent: 0 - type: Transform -- uid: 8211 - type: CableApcExtension - components: - - pos: -21.5,24.5 - parent: 0 - type: Transform -- uid: 8212 - type: CableApcExtension - components: - - pos: -22.5,24.5 - parent: 0 - type: Transform -- uid: 8213 - type: CableApcExtension - components: - - pos: -23.5,24.5 - parent: 0 - type: Transform -- uid: 8214 - type: CableApcExtension - components: - - pos: -22.5,25.5 - parent: 0 - type: Transform -- uid: 8215 - type: CableApcExtension - components: - - pos: -22.5,26.5 - parent: 0 - type: Transform -- uid: 8216 - type: CableApcExtension - components: - - pos: -22.5,27.5 - parent: 0 - type: Transform -- uid: 8217 - type: CableApcExtension - components: - - pos: -22.5,28.5 - parent: 0 - type: Transform -- uid: 8218 - type: CableApcExtension - components: - - pos: -22.5,23.5 - parent: 0 - type: Transform -- uid: 8219 - type: CableApcExtension - components: - - pos: -22.5,22.5 - parent: 0 - type: Transform -- uid: 8220 - type: CableApcExtension - components: - - pos: -21.5,27.5 - parent: 0 - type: Transform -- uid: 8221 - type: CableApcExtension - components: - - pos: -20.5,27.5 - parent: 0 - type: Transform -- uid: 8222 - type: CableApcExtension - components: - - pos: -19.5,27.5 - parent: 0 - type: Transform -- uid: 8223 - type: CableApcExtension - components: - - pos: -19.5,28.5 - parent: 0 - type: Transform -- uid: 8224 - type: CableApcExtension - components: - - pos: -19.5,29.5 - parent: 0 - type: Transform -- uid: 8225 - type: GasPipeStraight - components: - - pos: -22.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8226 - type: GasPipeStraight - components: - - pos: -22.5,21.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8227 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -22.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8228 - type: GasPipeStraight - components: - - pos: -22.5,23.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8229 - type: GasPipeStraight - components: - - pos: -22.5,24.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8230 - type: GasPipeStraight - components: - - pos: -22.5,25.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8231 - type: GasPipeStraight - components: - - pos: -22.5,26.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8232 - type: GasPipeStraight - components: - - pos: -23.5,21.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8233 - type: GasPipeStraight - components: - - pos: -23.5,22.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8234 - type: GasPipeStraight - components: - - pos: -23.5,23.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8235 - type: GasPipeStraight - components: - - pos: -23.5,24.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8236 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -23.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8237 - type: GasPipeStraight - components: - - pos: -23.5,26.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8238 - type: GasVentPump - components: - - pos: -23.5,27.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8239 - type: GasVentScrubber - components: - - pos: -22.5,27.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8240 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -22.5,25.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8241 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -23.5,22.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8242 - type: AirlockHeadOfSecurityLocked - components: - - pos: -20.5,27.5 - parent: 0 - type: Transform -- uid: 8243 - type: Sink - components: - - rot: -1.5707963267948966 rad - pos: -19.5,27.5 - parent: 0 - type: Transform -- uid: 8244 - type: ToiletEmpty - components: - - rot: 1.5707963267948966 rad - pos: -19.5,28.5 - parent: 0 - type: Transform -- uid: 8245 - type: FloorDrain - components: - - pos: -19.5,29.5 - parent: 0 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 8246 - type: TableWood - components: - - pos: -22.5,-17.5 - parent: 0 - type: Transform -- uid: 8247 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8248 - type: RandomSoap - components: - - pos: -19.5,29.5 - parent: 0 - type: Transform -- uid: 8249 - type: Bed - components: - - pos: -22.5,28.5 - parent: 0 - type: Transform -- uid: 8250 - type: BedsheetHOS - components: - - pos: -22.5,28.5 - parent: 0 - type: Transform -- uid: 8251 - type: Dresser - components: - - pos: -23.5,28.5 - parent: 0 - type: Transform -- uid: 8252 - type: LockerHeadOfSecurityFilled - components: - - pos: -21.5,28.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8253 - type: SpawnPointHeadOfSecurity - components: - - pos: -22.5,27.5 - parent: 0 - type: Transform -- uid: 8254 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -23.5,27.5 - parent: 0 - type: Transform -- uid: 8255 - type: TableWood - components: - - pos: -19.5,22.5 - parent: 0 - type: Transform -- uid: 8256 - type: TableWood - components: - - pos: -20.5,22.5 - parent: 0 - type: Transform -- uid: 8257 - type: TableWood - components: - - pos: -21.5,22.5 - parent: 0 - type: Transform -- uid: 8258 - type: TableWood - components: - - pos: -21.5,23.5 - parent: 0 - type: Transform -- uid: 8259 - type: TableWood - components: - - pos: -21.5,24.5 - parent: 0 - type: Transform -- uid: 8260 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -20.5,23.5 - parent: 0 - type: Transform -- uid: 8261 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -22.5,23.5 - parent: 0 - type: Transform -- uid: 8262 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -22.5,24.5 - parent: 0 - type: Transform -- uid: 8263 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: -19.5,23.5 - parent: 0 - type: Transform -- uid: 8264 - type: ComputerCrewMonitoring - components: - - rot: -1.5707963267948966 rad - pos: -19.5,24.5 - parent: 0 - type: Transform -- uid: 8265 - type: Lamp - components: - - pos: -21.463991,24.553658 - parent: 0 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: - sprite: Objects/Tools/flashlight.rsi - state: flashlight - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 8266 - type: WeaponCapacitorRecharger - components: - - pos: -20.5,22.5 - parent: 0 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 8267 - type: BoxFolderRed - components: - - pos: -21.5,23.5 - parent: 0 - type: Transform -- uid: 8268 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -23.5,25.5 - parent: 0 - type: Transform -- uid: 8269 - type: Poweredlight - components: - - pos: -20.5,25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8270 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8271 - type: TableWood - components: - - pos: -17.5,14.5 - parent: 0 - type: Transform -- uid: 8272 - type: filingCabinet - components: - - pos: -16.5,14.5 - parent: 0 - type: Transform -- uid: 8273 - type: TableWood - components: - - pos: -18.5,15.5 - parent: 0 - type: Transform -- uid: 8274 - type: TableWood - components: - - pos: -18.5,14.5 - parent: 0 - type: Transform -- uid: 8275 - type: VendingMachineLawDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -16.5,17.5 - parent: 0 - type: Transform -- uid: 8276 - type: Rack - components: - - pos: -16.5,16.5 - parent: 0 - type: Transform -- uid: 8277 - type: BriefcaseBrownFilled - components: - - pos: -16.540533,16.683895 - parent: 0 - type: Transform -- uid: 8278 - type: ChairOfficeDark - components: - - pos: -17.5,15.5 - parent: 0 - type: Transform -- uid: 8279 - type: CarpetGreen - components: - - pos: -18.5,14.5 - parent: 0 - type: Transform -- uid: 8280 - type: CarpetGreen - components: - - pos: -18.5,15.5 - parent: 0 - type: Transform -- uid: 8281 - type: CarpetGreen - components: - - pos: -17.5,15.5 - parent: 0 - type: Transform -- uid: 8282 - type: CarpetGreen - components: - - pos: -17.5,14.5 - parent: 0 - type: Transform -- uid: 8283 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -18.5,14.5 - parent: 0 - type: Transform -- uid: 8284 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -18.5,15.5 - parent: 0 - type: Transform -- uid: 8285 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -18.5,16.5 - parent: 0 - type: Transform -- uid: 8286 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -18.5,17.5 - parent: 0 - type: Transform -- uid: 8287 - type: WindowReinforcedDirectional - components: - - pos: -18.5,16.5 - parent: 0 - type: Transform -- uid: 8288 - type: PottedPlantRandom - components: - - pos: -20.5,17.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 8289 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -19.5,14.5 - parent: 0 - type: Transform -- uid: 8290 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -20.5,14.5 - parent: 0 - type: Transform -- uid: 8291 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -20.5,15.5 - parent: 0 - type: Transform -- uid: 8292 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -19.5,15.5 - parent: 0 - type: Transform -- uid: 8293 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -18.5,17.5 - parent: 0 - type: Transform -- uid: 8294 - type: TableWood - components: - - pos: -19.5,17.5 - parent: 0 - type: Transform -- uid: 8295 - type: BoxFolderRed - components: - - pos: -19.475779,17.57452 - parent: 0 - type: Transform -- uid: 8296 - type: LampGold - components: - - pos: -18.397654,15.527645 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 8297 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8298 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8299 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8300 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -19.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8301 - type: PosterLegitNanotrasenLogo - components: - - pos: -21.5,18.5 - parent: 0 - type: Transform -- uid: 8302 - type: Chair - components: - - pos: -19.5,19.5 - parent: 0 - type: Transform -- uid: 8303 - type: Chair - components: - - pos: -18.5,19.5 - parent: 0 - type: Transform -- uid: 8304 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8305 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,15.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8306 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -22.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8307 - type: GasVentScrubber - components: - - pos: -21.5,20.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8308 - type: SpawnPointLawyer - components: - - pos: -17.5,16.5 - parent: 0 - type: Transform -- uid: 8309 - type: SignDirectionalSec - components: - - rot: -1.5707963267948966 rad - pos: -24.5,15.5 - parent: 0 - type: Transform -- uid: 8310 - type: SignDirectionalBridge - components: - - rot: 3.141592653589793 rad - pos: -24.498999,15.711071 - parent: 0 - type: Transform -- uid: 8311 - type: SignDirectionalEng - components: - - pos: -24.498999,15.273571 - parent: 0 - type: Transform -- uid: 8312 - type: GasPipeStraight - components: - - pos: -13.5,19.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8313 - type: GasPipeStraight - components: - - pos: -13.5,18.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8314 - type: GasPipeStraight - components: - - pos: -13.5,17.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8315 - type: GasPipeStraight - components: - - pos: -11.5,18.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8316 - type: GasPipeStraight - components: - - pos: -11.5,17.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8317 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -11.5,16.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8318 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -13.5,16.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8319 - type: CableApcExtension - components: - - pos: -17.5,20.5 - parent: 0 - type: Transform -- uid: 8320 - type: CableApcExtension - components: - - pos: -17.5,21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8321 - type: CableApcExtension - components: - - pos: -17.5,22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8322 - type: CableApcExtension - components: - - pos: -17.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8323 - type: CableApcExtension - components: - - pos: -17.5,24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8324 - type: CableApcExtension - components: - - pos: -17.5,25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8325 - type: CableApcExtension - components: - - pos: -17.5,26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8326 - type: CableApcExtension - components: - - pos: -17.5,27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8327 - type: CableApcExtension - components: - - pos: -17.5,28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8328 - type: ClosetFireFilled - components: - - pos: -17.5,29.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8329 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,26.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8330 - type: ExtinguisherCabinetFilled - components: - - pos: -21.5,17.5 - parent: 0 - type: Transform -- uid: 8331 - type: ComputerCriminalRecords - components: - - pos: -33.5,16.5 - parent: 0 - type: Transform -- uid: 8332 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 3.141592653589793 rad - pos: -33.5,14.5 - parent: 0 - type: Transform -- uid: 8333 - type: TableReinforced - components: - - pos: -36.5,15.5 - parent: 0 - type: Transform -- uid: 8334 - type: TableReinforced - components: - - pos: -36.5,16.5 - parent: 0 - type: Transform -- uid: 8335 - type: TableReinforced - components: - - pos: -36.5,17.5 - parent: 0 - type: Transform -- uid: 8336 - type: SpawnPointWarden - components: - - pos: -34.5,15.5 - parent: 0 - type: Transform -- uid: 8337 - type: LockerWardenFilled - components: - - pos: -36.5,14.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8338 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -33.5,15.5 - parent: 0 - type: Transform -- uid: 8339 - type: DogBed - components: - - pos: -35.5,17.5 - parent: 0 - type: Transform -- uid: 8340 - type: SpawnMobMcGriff - components: - - pos: -35.5,17.5 - parent: 0 - type: Transform -- uid: 8341 - type: MonkeyCubeWrapped - components: - - pos: 6.243659,6.255819 - parent: 0 - type: Transform -- uid: 8342 - type: VendingMachineSec - components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,13.5 - parent: 0 - type: Transform -- uid: 8343 - type: TableReinforced - components: - - pos: -31.5,12.5 - parent: 0 - type: Transform -- uid: 8344 - type: TableReinforced - components: - - pos: -31.5,14.5 - parent: 0 - type: Transform -- uid: 8345 - type: WeaponCapacitorRecharger - components: - - pos: -31.5,12.5 - parent: 0 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 8346 - type: WeaponCapacitorRecharger - components: - - pos: -31.5,14.5 - parent: 0 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 8347 - type: TableReinforced - components: - - pos: -31.5,20.5 - parent: 0 - type: Transform -- uid: 8348 - type: SpawnVehicleSecway - components: - - pos: -31.5,19.5 - parent: 0 - type: Transform -- uid: 8349 - type: VehicleKeySecway - components: - - pos: -31.5,20.5 - parent: 0 - type: Transform -- uid: 8350 - type: Bed - components: - - pos: -25.5,20.5 - parent: 0 - type: Transform -- uid: 8351 - type: Bed - components: - - pos: -25.5,17.5 - parent: 0 - type: Transform -- uid: 8352 - type: BedsheetOrange - components: - - pos: -25.5,17.5 - parent: 0 - type: Transform -- uid: 8353 - type: BedsheetOrange - components: - - pos: -25.5,20.5 - parent: 0 - type: Transform -- uid: 8354 - type: WardrobePrisonFilled - components: - - pos: -26.5,20.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8355 - type: WardrobePrisonFilled - components: - - pos: -26.5,17.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8356 - type: SignPrison - components: - - pos: -28.5,21.5 - parent: 0 - type: Transform -- uid: 8357 - type: LockerEvidence - components: - - pos: -26.5,22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8358 - type: LockerEvidence - components: - - pos: -25.5,22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8359 - type: LockerEvidence - components: - - pos: -31.5,18.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8360 - type: Bed - components: - - pos: -25.5,27.5 - parent: 0 - type: Transform -- uid: 8361 - type: Bed - components: - - pos: -29.5,27.5 - parent: 0 - type: Transform -- uid: 8362 - type: BedsheetOrange - components: - - pos: -29.5,27.5 - parent: 0 - type: Transform -- uid: 8363 - type: BedsheetOrange - components: - - pos: -25.5,27.5 - parent: 0 - type: Transform -- uid: 8364 - type: Table - components: - - pos: -26.5,10.5 - parent: 0 - type: Transform -- uid: 8365 - type: ComputerCriminalRecords - components: - - rot: 3.141592653589793 rad - pos: -25.5,10.5 - parent: 0 - type: Transform -- uid: 8366 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -25.5,11.5 - parent: 0 - type: Transform -- uid: 8367 - type: FoodBoxDonut - components: - - pos: -26.5,10.5 - parent: 0 - type: Transform -- uid: 8368 - type: BoxFlashbang - components: - - pos: -36.5,17.5 - parent: 0 - type: Transform -- uid: 8369 - type: BoxHandcuff - components: - - pos: -36.509842,17.041077 - parent: 0 - type: Transform -- uid: 8370 - type: BoxZiptie - components: - - pos: -36.494217,16.619202 - parent: 0 - type: Transform -- uid: 8371 - type: SecurityTechFab - components: - - pos: -34.5,21.5 - parent: 0 - type: Transform - - materialWhiteList: - - Glass - - Plastic - - Steel - type: MaterialStorage -- uid: 8372 - type: SurveillanceCameraRouterSecurity - components: - - pos: -33.5,21.5 - parent: 0 - type: Transform -- uid: 8373 - type: LockerSyndicatePersonal - components: - - pos: -36.5,21.5 - parent: 0 - type: Transform - - locked: False - type: Lock - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.25,-0.48 - - 0.25,0.48 - - -0.25,0.48 - - -0.25,-0.48 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - type: Fixtures - - open: True - removedMasks: 20 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 8375 - - 8376 - type: ContainerContainer -- uid: 8374 - type: ClosetBombFilled - components: - - pos: -35.5,21.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8375 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 8373 - type: Transform - - canCollide: False - type: Physics -- uid: 8376 - type: ClothingOuterHardsuitSecurity - components: - - flags: InContainer - type: MetaData - - parent: 8373 - type: Transform - - canCollide: False - type: Physics -- uid: 8377 - type: Rack - components: - - pos: -35.5,19.5 - parent: 0 - type: Transform -- uid: 8378 - type: Rack - components: - - pos: -36.5,19.5 - parent: 0 - type: Transform -- uid: 8379 - type: Rack - components: - - pos: -33.5,19.5 - parent: 0 - type: Transform -- uid: 8380 - type: PaintingRedBlueYellow - components: - - pos: 1.5,-7.5 - parent: 0 - type: Transform -- uid: 8381 - type: SignPlaque - components: - - pos: -14.5,26.5 - parent: 0 - type: Transform -- uid: 8382 - type: StasisBed - components: - - pos: -14.5,-21.5 - parent: 0 - type: Transform -- uid: 8383 - type: WardrobePrisonFilled - components: - - pos: -29.5,26.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8384 - type: WardrobePrisonFilled - components: - - pos: -25.5,26.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8385 - type: hydroponicsSoil - components: - - pos: -32.5,29.5 - parent: 0 - type: Transform -- uid: 8386 - type: hydroponicsSoil - components: - - pos: -32.5,30.5 - parent: 0 - type: Transform -- uid: 8387 - type: hydroponicsSoil - components: - - pos: -32.5,31.5 - parent: 0 - type: Transform -- uid: 8388 - type: SeedExtractor - components: - - pos: -30.5,32.5 - parent: 0 - type: Transform -- uid: 8389 - type: SinkWide - components: - - pos: -31.5,32.5 - parent: 0 - type: Transform -- uid: 8390 - type: Bucket - components: - - pos: -30.607666,31.438156 - parent: 0 - type: Transform -- uid: 8391 - type: Bookshelf - components: - - pos: -25.5,32.5 - parent: 0 - type: Transform -- uid: 8392 - type: Bookshelf - components: - - pos: -25.5,29.5 - parent: 0 - type: Transform -- uid: 8393 - type: ComfyChair - components: - - pos: -25.5,31.5 - parent: 0 - type: Transform -- uid: 8394 - type: TableWood - components: - - pos: -25.5,30.5 - parent: 0 - type: Transform -- uid: 8395 - type: Paper - components: - - pos: -25.484861,30.57598 - parent: 0 - type: Transform -- uid: 8396 - type: Pen - components: - - pos: -25.234861,30.76348 - parent: 0 - type: Transform -- uid: 8397 - type: AppleSeeds - components: - - pos: -31.672361,31.435354 - parent: 0 - type: Transform -- uid: 8398 - type: AppleSeeds - components: - - pos: -31.531736,31.32598 - parent: 0 - type: Transform -- uid: 8399 - type: BlockGameArcade - components: - - pos: -26.5,32.5 - parent: 0 - type: Transform -- uid: 8400 - type: Table - components: - - pos: -28.5,30.5 - parent: 0 - type: Transform -- uid: 8401 - type: Table - components: - - pos: -29.5,30.5 - parent: 0 - type: Transform -- uid: 8402 - type: Stool - components: - - pos: -29.5,31.5 - parent: 0 - type: Transform -- uid: 8403 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -28.5,29.5 - parent: 0 - type: Transform -- uid: 8404 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -27.5,30.5 - parent: 0 - type: Transform -- uid: 8405 - type: CrayonBox - components: - - pos: -28.516111,30.589315 - parent: 0 - type: Transform -- uid: 8406 - type: PottedPlantRandom - components: - - pos: -28.5,32.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 8407 - type: HydroponicsToolMiniHoe - components: - - pos: -31.533045,30.44869 - parent: 0 - type: Transform -- uid: 8408 - type: HydroponicsToolSpade - components: - - pos: -31.45492,30.47994 - parent: 0 - type: Transform -- uid: 8409 - type: WaterTankFull - components: - - pos: -32.5,32.5 - parent: 0 - type: Transform -- uid: 8410 - type: Table - components: - - pos: -31.5,26.5 - parent: 0 - type: Transform -- uid: 8411 - type: Table - components: - - pos: -27.5,26.5 - parent: 0 - type: Transform -- uid: 8412 - type: Stool - components: - - pos: -31.5,27.5 - parent: 0 - type: Transform -- uid: 8413 - type: Stool - components: - - pos: -27.5,27.5 - parent: 0 - type: Transform -- uid: 8414 - type: PottedPlantRandom - components: - - pos: -31.5,24.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 8415 - type: MaterialWoodPlank - components: - - pos: -49.460716,-16.464205 - parent: 0 - type: Transform -- uid: 8416 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8417 - type: PosterLegitNanotrasenLogo - components: - - pos: -31.5,23.5 - parent: 0 - type: Transform -- uid: 8418 - type: LockerEvidence - components: - - pos: -28.5,22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8419 - type: LockerEvidence - components: - - pos: -31.5,22.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8420 - type: VendingMachineSec - components: - - flags: SessionSpecific - type: MetaData - - pos: -36.5,12.5 - parent: 0 - type: Transform -- uid: 8421 - type: LockerSecurityFilled - components: - - pos: -33.5,12.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8422 - type: LockerSecurityFilled - components: - - pos: -35.5,12.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8423 - type: ClosetL3SecurityFilled - components: - - pos: -33.5,10.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8424 - type: Rack - components: - - pos: -37.5,12.5 - parent: 0 - type: Transform -- uid: 8425 - type: Table - components: - - pos: -38.5,12.5 - parent: 0 - type: Transform -- uid: 8426 - type: Table - components: - - pos: -39.5,12.5 - parent: 0 - type: Transform -- uid: 8427 - type: Table - components: - - pos: -39.5,11.5 - parent: 0 - type: Transform -- uid: 8428 - type: KitchenMicrowave - components: - - pos: -39.5,12.5 - parent: 0 - type: Transform -- uid: 8429 - type: DonkpocketBoxSpawner - components: - - pos: -39.5,11.5 - parent: 0 - type: Transform -- uid: 8430 - type: BoxFlashbang - components: - - pos: -37.645676,12.776339 - parent: 0 - type: Transform -- uid: 8431 - type: BoxHandcuff - components: - - pos: -37.489426,12.635714 - parent: 0 - type: Transform -- uid: 8432 - type: BoxZiptie - components: - - pos: -37.301926,12.401339 - parent: 0 - type: Transform -- uid: 8433 - type: WaterCooler - components: - - pos: -39.5,10.5 - parent: 0 - type: Transform -- uid: 8434 - type: DrinkMugRed - components: - - pos: -38.3488,12.713839 - parent: 0 - type: Transform -- uid: 8435 - type: DrinkMugMetal - components: - - pos: -38.614426,12.463839 - parent: 0 - type: Transform -- uid: 8436 - type: DrinkShinyFlask - components: - - pos: -36.520676,15.807589 - parent: 0 - type: Transform -- uid: 8437 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -36.5,10.5 - parent: 0 - type: Transform -- uid: 8438 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -38.5,10.5 - parent: 0 - type: Transform -- uid: 8439 - type: Table - components: - - pos: -37.5,10.5 - parent: 0 - type: Transform -- uid: 8440 - type: SpawnPointSecurityCadet - components: - - pos: -34.5,11.5 - parent: 0 - type: Transform -- uid: 8441 - type: SpawnPointSecurityOfficer - components: - - pos: -35.5,11.5 - parent: 0 - type: Transform -- uid: 8442 - type: SpawnPointSecurityOfficer - components: - - pos: -36.5,11.5 - parent: 0 - type: Transform -- uid: 8443 - type: ClothingEyesHudSecurity - components: - - pos: -36.423813,15.378265 - parent: 0 - type: Transform -- uid: 8444 - type: TableReinforcedGlass - components: - - pos: -14.5,-22.5 - parent: 0 - type: Transform -- uid: 8445 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -28.5,17.5 - parent: 0 - type: Transform -- uid: 8446 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -28.5,18.5 - parent: 0 - type: Transform -- uid: 8447 - type: TableReinforced - components: - - pos: -28.5,10.5 - parent: 0 - type: Transform -- uid: 8448 - type: TableReinforced - components: - - pos: -29.5,10.5 - parent: 0 - type: Transform -- uid: 8449 - type: TableReinforced - components: - - pos: -30.5,10.5 - parent: 0 - type: Transform -- uid: 8450 - type: FlashlightSeclite - components: - - pos: -28.562307,10.614904 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 8451 - type: Flash - components: - - pos: -30.484182,10.599279 - parent: 0 - type: Transform -- uid: 8452 - type: Handcuffs - components: - - pos: -30.406057,10.489904 - parent: 0 - type: Transform -- uid: 8453 - type: RadioHandheld - components: - - pos: -29.452932,10.599279 - parent: 0 - type: Transform -- uid: 8454 - type: PoweredSmallLight - components: - - pos: -25.5,14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8455 - type: SpawnPointMedicalIntern - components: - - pos: -19.5,-24.5 - parent: 0 - type: Transform -- uid: 8456 - type: WallSolid - components: - - pos: -19.5,37.5 - parent: 0 - type: Transform -- uid: 8457 - type: WallSolid - components: - - pos: -26.5,37.5 - parent: 0 - type: Transform -- uid: 8458 - type: AsteroidRock - components: - - pos: -19.5,36.5 - parent: 0 - type: Transform -- uid: 8459 - type: AsteroidRock - components: - - pos: -19.5,35.5 - parent: 0 - type: Transform -- uid: 8460 - type: AsteroidRock - components: - - pos: -20.5,34.5 - parent: 0 - type: Transform -- uid: 8461 - type: AsteroidRock - components: - - pos: -20.5,33.5 - parent: 0 - type: Transform -- uid: 8462 - type: AsteroidRock - components: - - pos: -20.5,32.5 - parent: 0 - type: Transform -- uid: 8463 - type: AsteroidRock - components: - - pos: -21.5,30.5 - parent: 0 - type: Transform -- uid: 8464 - type: AsteroidRock - components: - - pos: -21.5,31.5 - parent: 0 - type: Transform -- uid: 8465 - type: AsteroidRock - components: - - pos: -20.5,31.5 - parent: 0 - type: Transform -- uid: 8466 - type: AsteroidRock - components: - - pos: -19.5,31.5 - parent: 0 - type: Transform -- uid: 8467 - type: AsteroidRock - components: - - pos: -18.5,31.5 - parent: 0 - type: Transform -- uid: 8468 - type: AsteroidRock - components: - - pos: -17.5,31.5 - parent: 0 - type: Transform -- uid: 8469 - type: AsteroidRock - components: - - pos: -16.5,31.5 - parent: 0 - type: Transform -- uid: 8470 - type: AsteroidRock - components: - - pos: -15.5,31.5 - parent: 0 - type: Transform -- uid: 8471 - type: AsteroidRock - components: - - pos: -14.5,31.5 - parent: 0 - type: Transform -- uid: 8472 - type: AsteroidRock - components: - - pos: -13.5,31.5 - parent: 0 - type: Transform -- uid: 8473 - type: AsteroidRock - components: - - pos: -13.5,32.5 - parent: 0 - type: Transform -- uid: 8474 - type: AsteroidRock - components: - - pos: -14.5,32.5 - parent: 0 - type: Transform -- uid: 8475 - type: AsteroidRock - components: - - pos: -15.5,32.5 - parent: 0 - type: Transform -- uid: 8476 - type: AsteroidRock - components: - - pos: -18.5,32.5 - parent: 0 - type: Transform -- uid: 8477 - type: ClosetLegalFilled - components: - - pos: -16.5,15.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8478 - type: ClothingOuterCoatPirate - components: - - pos: -17.511423,32.47987 - parent: 0 - type: Transform -- uid: 8479 - type: AsteroidRock - components: - - pos: -19.5,32.5 - parent: 0 - type: Transform -- uid: 8480 - type: AsteroidRock - components: - - pos: -19.5,33.5 - parent: 0 - type: Transform -- uid: 8481 - type: ClothingEyesEyepatch - components: - - pos: -16.839548,32.557995 - parent: 0 - type: Transform -- uid: 8482 - type: Barricade - components: - - pos: -50.5,-16.5 - parent: 0 - type: Transform -- uid: 8483 - type: AsteroidRock - components: - - pos: -16.5,33.5 - parent: 0 - type: Transform -- uid: 8484 - type: AsteroidRock - components: - - pos: -15.5,33.5 - parent: 0 - type: Transform -- uid: 8485 - type: AsteroidRock - components: - - pos: -15.5,34.5 - parent: 0 - type: Transform -- uid: 8486 - type: AsteroidRock - components: - - pos: -16.5,34.5 - parent: 0 - type: Transform -- uid: 8487 - type: AsteroidRock - components: - - pos: -17.5,34.5 - parent: 0 - type: Transform -- uid: 8488 - type: AsteroidRock - components: - - pos: -18.5,34.5 - parent: 0 - type: Transform -- uid: 8489 - type: AsteroidRock - components: - - pos: -19.5,34.5 - parent: 0 - type: Transform -- uid: 8490 - type: AsteroidRock - components: - - pos: -18.5,35.5 - parent: 0 - type: Transform -- uid: 8491 - type: AsteroidRock - components: - - pos: -17.5,35.5 - parent: 0 - type: Transform -- uid: 8492 - type: AsteroidRock - components: - - pos: -16.5,35.5 - parent: 0 - type: Transform -- uid: 8493 - type: AsteroidRock - components: - - pos: -17.5,36.5 - parent: 0 - type: Transform -- uid: 8494 - type: AsteroidRock - components: - - pos: -18.5,36.5 - parent: 0 - type: Transform -- uid: 8495 - type: AsteroidRock - components: - - pos: -18.5,37.5 - parent: 0 - type: Transform -- uid: 8496 - type: AsteroidRock - components: - - pos: -18.5,38.5 - parent: 0 - type: Transform -- uid: 8497 - type: AsteroidRock - components: - - pos: -17.5,38.5 - parent: 0 - type: Transform -- uid: 8498 - type: AsteroidRock - components: - - pos: -23.5,30.5 - parent: 0 - type: Transform -- uid: 8499 - type: AsteroidRock - components: - - pos: -23.5,33.5 - parent: 0 - type: Transform -- uid: 8500 - type: AsteroidRock - components: - - pos: -26.5,34.5 - parent: 0 - type: Transform -- uid: 8501 - type: AsteroidRock - components: - - pos: -25.5,34.5 - parent: 0 - type: Transform -- uid: 8502 - type: AsteroidRock - components: - - pos: -24.5,34.5 - parent: 0 - type: Transform -- uid: 8503 - type: AsteroidRock - components: - - pos: -23.5,34.5 - parent: 0 - type: Transform -- uid: 8504 - type: AsteroidRock - components: - - pos: -24.5,35.5 - parent: 0 - type: Transform -- uid: 8505 - type: AsteroidRock - components: - - pos: -25.5,35.5 - parent: 0 - type: Transform -- uid: 8506 - type: AsteroidRock - components: - - pos: -27.5,37.5 - parent: 0 - type: Transform -- uid: 8507 - type: AsteroidRock - components: - - pos: -28.5,37.5 - parent: 0 - type: Transform -- uid: 8508 - type: AsteroidRock - components: - - pos: -29.5,38.5 - parent: 0 - type: Transform -- uid: 8509 - type: AsteroidRock - components: - - pos: -28.5,38.5 - parent: 0 - type: Transform -- uid: 8510 - type: AsteroidRock - components: - - pos: -27.5,38.5 - parent: 0 - type: Transform -- uid: 8511 - type: AsteroidRock - components: - - pos: -26.5,38.5 - parent: 0 - type: Transform -- uid: 8512 - type: AsteroidRock - components: - - pos: -28.5,39.5 - parent: 0 - type: Transform -- uid: 8513 - type: AsteroidRock - components: - - pos: -27.5,39.5 - parent: 0 - type: Transform -- uid: 8514 - type: AsteroidRock - components: - - pos: -26.5,39.5 - parent: 0 - type: Transform -- uid: 8515 - type: AsteroidRock - components: - - pos: -25.5,39.5 - parent: 0 - type: Transform -- uid: 8516 - type: AsteroidRock - components: - - pos: -30.5,34.5 - parent: 0 - type: Transform -- uid: 8517 - type: AsteroidRock - components: - - pos: -31.5,34.5 - parent: 0 - type: Transform -- uid: 8518 - type: AsteroidRock - components: - - pos: -32.5,34.5 - parent: 0 - type: Transform -- uid: 8519 - type: AsteroidRock - components: - - pos: -33.5,34.5 - parent: 0 - type: Transform -- uid: 8520 - type: AsteroidRock - components: - - pos: -34.5,34.5 - parent: 0 - type: Transform -- uid: 8521 - type: AsteroidRock - components: - - pos: -33.5,35.5 - parent: 0 - type: Transform -- uid: 8522 - type: AsteroidRock - components: - - pos: -33.5,36.5 - parent: 0 - type: Transform -- uid: 8523 - type: AsteroidRock - components: - - pos: -32.5,36.5 - parent: 0 - type: Transform -- uid: 8524 - type: AsteroidRock - components: - - pos: -32.5,35.5 - parent: 0 - type: Transform -- uid: 8525 - type: AsteroidRock - components: - - pos: -31.5,35.5 - parent: 0 - type: Transform -- uid: 8526 - type: Grille - components: - - pos: -23.5,37.5 - parent: 0 - type: Transform -- uid: 8527 - type: Grille - components: - - pos: -22.5,37.5 - parent: 0 - type: Transform -- uid: 8528 - type: Grille - components: - - pos: -11.5,32.5 - parent: 0 - type: Transform -- uid: 8529 - type: Grille - components: - - pos: -11.5,33.5 - parent: 0 - type: Transform -- uid: 8530 - type: Grille - components: - - pos: -15.5,37.5 - parent: 0 - type: Transform -- uid: 8531 - type: Grille - components: - - pos: -14.5,37.5 - parent: 0 - type: Transform -- uid: 8532 - type: Grille - components: - - pos: -11.5,35.5 - parent: 0 - type: Transform -- uid: 8533 - type: Grille - components: - - pos: -11.5,36.5 - parent: 0 - type: Transform -- uid: 8534 - type: Grille - components: - - pos: -12.5,37.5 - parent: 0 - type: Transform -- uid: 8535 - type: Grille - components: - - pos: -11.5,37.5 - parent: 0 - type: Transform -- uid: 8536 - type: Grille - components: - - pos: -10.5,37.5 - parent: 0 - type: Transform -- uid: 8537 - type: Grille - components: - - pos: -9.5,37.5 - parent: 0 - type: Transform -- uid: 8538 - type: Grille - components: - - pos: -6.5,38.5 - parent: 0 - type: Transform -- uid: 8539 - type: Grille - components: - - pos: -5.5,38.5 - parent: 0 - type: Transform -- uid: 8540 - type: Grille - components: - - pos: -0.5,38.5 - parent: 0 - type: Transform -- uid: 8541 - type: Grille - components: - - pos: 0.5,38.5 - parent: 0 - type: Transform -- uid: 8542 - type: Grille - components: - - pos: 1.5,38.5 - parent: 0 - type: Transform -- uid: 8543 - type: Grille - components: - - pos: 2.5,38.5 - parent: 0 - type: Transform -- uid: 8544 - type: Grille - components: - - pos: 0.5,43.5 - parent: 0 - type: Transform -- uid: 8545 - type: Grille - components: - - pos: 0.5,42.5 - parent: 0 - type: Transform -- uid: 8546 - type: Grille - components: - - pos: 0.5,41.5 - parent: 0 - type: Transform -- uid: 8547 - type: Grille - components: - - pos: 10.5,37.5 - parent: 0 - type: Transform -- uid: 8548 - type: Grille - components: - - pos: 8.5,33.5 - parent: 0 - type: Transform -- uid: 8549 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -45.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8550 - type: GasMixerFlipped - components: - - pos: -45.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8551 - type: GasPipeStraight - components: - - pos: -45.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8552 - type: GasMixerFlipped - components: - - rot: -1.5707963267948966 rad - pos: -45.5,2.5 - parent: 0 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#03FDC3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8553 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8554 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8555 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8556 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8557 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -18.5,10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8558 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8559 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8560 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8561 - type: GasPipeBend - components: - - pos: -18.5,9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8562 - type: GasVentPump - components: - - pos: -18.5,11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8563 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -18.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8564 - type: TableReinforced - components: - - pos: -19.5,9.5 - parent: 0 - type: Transform -- uid: 8565 - type: TableReinforced - components: - - pos: -19.5,10.5 - parent: 0 - type: Transform -- uid: 8566 - type: TableReinforced - components: - - pos: -18.5,10.5 - parent: 0 - type: Transform -- uid: 8567 - type: TableReinforced - components: - - pos: -18.5,9.5 - parent: 0 - type: Transform -- uid: 8568 - type: TableReinforced - components: - - pos: -18.5,12.5 - parent: 0 - type: Transform -- uid: 8569 - type: TableReinforced - components: - - pos: -19.5,12.5 - parent: 0 - type: Transform -- uid: 8570 - type: TableReinforced - components: - - pos: -20.5,12.5 - parent: 0 - type: Transform -- uid: 8571 - type: TableReinforced - components: - - pos: -20.5,7.5 - parent: 0 - type: Transform -- uid: 8572 - type: TableReinforced - components: - - pos: -17.5,7.5 - parent: 0 - type: Transform -- uid: 8573 - type: TableReinforced - components: - - pos: -16.5,7.5 - parent: 0 - type: Transform -- uid: 8574 - type: TableReinforced - components: - - pos: -16.5,8.5 - parent: 0 - type: Transform -- uid: 8575 - type: WeldingFuelTankFull - components: - - pos: -17.5,12.5 - parent: 0 - type: Transform -- uid: 8576 - type: WaterTankFull - components: - - pos: -16.5,12.5 - parent: 0 - type: Transform -- uid: 8577 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,7.5 - parent: 0 - type: Transform -- uid: 8578 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,7.5 - parent: 0 - type: Transform -- uid: 8579 - type: PowerCellRecharger - components: - - pos: -20.5,7.5 - parent: 0 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 8580 - type: CrateEmergencyInternals - components: - - pos: -16.5,9.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 8581 - type: SheetSteel - components: - - pos: -17.5,7.5 - parent: 0 - type: Transform -- uid: 8582 - type: SheetGlass - components: - - pos: -17.233784,7.5055285 - parent: 0 - type: Transform -- uid: 8583 - type: PartRodMetal - components: - - pos: -16.530659,7.5992785 - parent: 0 - type: Transform -- uid: 8584 - type: ToolboxElectricalFilled - components: - - pos: -16.515034,8.474278 - parent: 0 - type: Transform -- uid: 8585 - type: CableApcStack - components: - - pos: -16.671284,7.8180285 - parent: 0 - type: Transform -- uid: 8586 - type: CableMVStack - components: - - pos: -16.577534,7.6930285 - parent: 0 - type: Transform -- uid: 8587 - type: CableHVStack - components: - - pos: -16.483784,7.5211535 - parent: 0 - type: Transform -- uid: 8588 - type: CrowbarRed - components: - - pos: -18.483784,12.505529 - parent: 0 - type: Transform -- uid: 8589 - type: Wrench - components: - - pos: -18.546284,12.599279 - parent: 0 - type: Transform -- uid: 8590 - type: HandheldGPSBasic - components: - - pos: -18.546284,12.521154 - parent: 0 - type: Transform -- uid: 8591 - type: HandheldGPSBasic - components: - - pos: -19.324593,-21.618977 - parent: 0 - type: Transform -- uid: 8592 - type: Welder - components: - - pos: -20.391129,12.56624 - parent: 0 - type: Transform -- uid: 8593 - type: Multitool - components: - - pos: -19.531754,12.581865 - parent: 0 - type: Transform -- uid: 8594 - type: HandLabeler - components: - - pos: -19.500504,10.456865 - parent: 0 - type: Transform -- uid: 8595 - type: ToolboxMechanicalFilled - components: - - pos: -19.484879,9.65999 - parent: 0 - type: Transform -- uid: 8596 - type: ToolboxEmergencyFilled - components: - - pos: -18.547379,10.53499 - parent: 0 - type: Transform -- uid: 8597 - type: FlashlightLantern - components: - - pos: -19.531754,10.050615 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 8598 - type: FlashlightLantern - components: - - pos: -18.563004,10.206865 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 8599 - type: BoxLightMixed - components: - - pos: -18.992748,10.00374 - parent: 0 - type: Transform -- uid: 8600 - type: ClothingHeadHatWelding - components: - - pos: -20.141129,12.59749 - parent: 0 - type: Transform -- uid: 8601 - type: ClothingHandsGlovesColorYellow - components: - - pos: -18.453629,9.613115 - parent: 0 - type: Transform -- uid: 8602 - type: ExtinguisherCabinetFilled - components: - - pos: -18.5,13.5 - parent: 0 - type: Transform -- uid: 8603 - type: Poweredlight - components: - - pos: -18.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8604 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -18.5,7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8605 - type: PosterContrabandHackingGuide - components: - - pos: -15.5,8.5 - parent: 0 - type: Transform -- uid: 8606 - type: PosterContrabandMissingGloves - components: - - pos: -15.5,12.5 - parent: 0 - type: Transform -- uid: 8607 - type: SignSmoking - components: - - pos: -15.5,11.5 - parent: 0 - type: Transform -- uid: 8608 - type: PosterContrabandTools - components: - - pos: -21.5,7.5 - parent: 0 - type: Transform -- uid: 8609 - type: SignToolStorage - components: - - pos: -21.5,12.5 - parent: 0 - type: Transform -- uid: 8610 - type: Catwalk - components: - - pos: 9.5,-8.5 - parent: 0 - type: Transform -- uid: 8611 - type: Catwalk - components: - - pos: 9.5,-7.5 - parent: 0 - type: Transform -- uid: 8612 - type: Catwalk - components: - - pos: 9.5,-6.5 - parent: 0 - type: Transform -- uid: 8613 - type: Catwalk - components: - - pos: 9.5,-5.5 - parent: 0 - type: Transform -- uid: 8614 - type: Catwalk - components: - - pos: 9.5,-4.5 - parent: 0 - type: Transform -- uid: 8615 - type: Catwalk - components: - - pos: 9.5,-3.5 - parent: 0 - type: Transform -- uid: 8616 - type: Catwalk - components: - - pos: 9.5,-2.5 - parent: 0 - type: Transform -- uid: 8617 - type: Catwalk - components: - - pos: 9.5,-0.5 - parent: 0 - type: Transform -- uid: 8618 - type: Catwalk - components: - - pos: 9.5,0.5 - parent: 0 - type: Transform -- uid: 8619 - type: Catwalk - components: - - pos: 9.5,1.5 - parent: 0 - type: Transform -- uid: 8620 - type: Catwalk - components: - - pos: 9.5,2.5 - parent: 0 - type: Transform -- uid: 8621 - type: WallReinforced - components: - - pos: -34.5,0.5 - parent: 0 - type: Transform -- uid: 8622 - type: PlasticFlapsAirtightClear - components: - - pos: -32.5,0.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8623 - type: WallReinforced - components: - - pos: -28.5,0.5 - parent: 0 - type: Transform -- uid: 8624 - type: WallReinforced - components: - - pos: -27.5,0.5 - parent: 0 - type: Transform -- uid: 8625 - type: WallReinforced - components: - - pos: -27.5,1.5 - parent: 0 - type: Transform -- uid: 8626 - type: WallReinforced - components: - - pos: -27.5,5.5 - parent: 0 - type: Transform -- uid: 8627 - type: ReinforcedWindow - components: - - pos: -31.5,0.5 - parent: 0 - type: Transform -- uid: 8628 - type: TableReinforced - components: - - pos: -30.5,0.5 - parent: 0 - type: Transform -- uid: 8629 - type: ReinforcedWindow - components: - - pos: -29.5,0.5 - parent: 0 - type: Transform -- uid: 8630 - type: ReinforcedWindow - components: - - pos: -27.5,2.5 - parent: 0 - type: Transform -- uid: 8631 - type: ReinforcedWindow - components: - - pos: -27.5,3.5 - parent: 0 - type: Transform -- uid: 8632 - type: ReinforcedWindow - components: - - pos: -27.5,4.5 - parent: 0 - type: Transform -- uid: 8633 - type: ReinforcedWindow - components: - - pos: -28.5,-3.5 - parent: 0 - type: Transform -- uid: 8634 - type: ReinforcedWindow - components: - - pos: -28.5,-0.5 - parent: 0 - type: Transform -- uid: 8635 - type: WallReinforced - components: - - pos: -35.5,0.5 - parent: 0 - type: Transform -- uid: 8636 - type: ReinforcedWindow - components: - - pos: -35.5,1.5 - parent: 0 - type: Transform -- uid: 8637 - type: ReinforcedWindow - components: - - pos: -35.5,3.5 - parent: 0 - type: Transform -- uid: 8638 - type: ReinforcedWindow - components: - - pos: -35.5,5.5 - parent: 0 - type: Transform -- uid: 8639 - type: WallReinforced - components: - - pos: -35.5,4.5 - parent: 0 - type: Transform -- uid: 8640 - type: SignAtmos - components: - - pos: -34.5,0.5 - parent: 0 - type: Transform -- uid: 8641 - type: WallReinforced - components: - - pos: -35.5,-0.5 - parent: 0 - type: Transform -- uid: 8642 - type: WallReinforced - components: - - pos: -35.5,-1.5 - parent: 0 - type: Transform -- uid: 8643 - type: WallReinforced - components: - - pos: -35.5,-2.5 - parent: 0 - type: Transform -- uid: 8644 - type: WallReinforced - components: - - pos: -35.5,-3.5 - parent: 0 - type: Transform -- uid: 8645 - type: WallReinforced - components: - - pos: -35.5,-4.5 - parent: 0 - type: Transform -- uid: 8646 - type: WallReinforced - components: - - pos: -35.5,-5.5 - parent: 0 - type: Transform -- uid: 8647 - type: WallReinforced - components: - - pos: -35.5,-6.5 - parent: 0 - type: Transform -- uid: 8648 - type: WallReinforced - components: - - pos: -34.5,-4.5 - parent: 0 - type: Transform -- uid: 8649 - type: WallReinforced - components: - - pos: -32.5,-4.5 - parent: 0 - type: Transform -- uid: 8650 - type: WallReinforced - components: - - pos: -28.5,-4.5 - parent: 0 - type: Transform -- uid: 8651 - type: WallReinforced - components: - - pos: -27.5,-4.5 - parent: 0 - type: Transform -- uid: 8652 - type: WallReinforced - components: - - pos: -27.5,-5.5 - parent: 0 - type: Transform -- uid: 8653 - type: WallReinforced - components: - - pos: -27.5,-9.5 - parent: 0 - type: Transform -- uid: 8654 - type: WallReinforced - components: - - pos: -27.5,-10.5 - parent: 0 - type: Transform -- uid: 8655 - type: WallReinforced - components: - - pos: -28.5,-10.5 - parent: 0 - type: Transform -- uid: 8656 - type: WallReinforced - components: - - pos: -29.5,-10.5 - parent: 0 - type: Transform -- uid: 8657 - type: WallReinforced - components: - - pos: -31.5,-10.5 - parent: 0 - type: Transform -- uid: 8658 - type: WallReinforced - components: - - pos: -32.5,-10.5 - parent: 0 - type: Transform -- uid: 8659 - type: WallReinforced - components: - - pos: -33.5,-10.5 - parent: 0 - type: Transform -- uid: 8660 - type: WallReinforced - components: - - pos: -34.5,-10.5 - parent: 0 - type: Transform -- uid: 8661 - type: WallReinforced - components: - - pos: -34.5,-9.5 - parent: 0 - type: Transform -- uid: 8662 - type: WallReinforced - components: - - pos: -34.5,-7.5 - parent: 0 - type: Transform -- uid: 8663 - type: WallReinforced - components: - - pos: -34.5,-6.5 - parent: 0 - type: Transform -- uid: 8664 - type: WallReinforced - components: - - pos: -35.5,-10.5 - parent: 0 - type: Transform -- uid: 8665 - type: WallReinforced - components: - - pos: -37.5,-10.5 - parent: 0 - type: Transform -- uid: 8666 - type: WallReinforced - components: - - pos: -37.5,-9.5 - parent: 0 - type: Transform -- uid: 8667 - type: WallReinforced - components: - - pos: -37.5,-7.5 - parent: 0 - type: Transform -- uid: 8668 - type: WallReinforced - components: - - pos: -37.5,-6.5 - parent: 0 - type: Transform -- uid: 8669 - type: WallReinforced - components: - - pos: -37.5,-5.5 - parent: 0 - type: Transform -- uid: 8670 - type: WallReinforced - components: - - pos: -37.5,-4.5 - parent: 0 - type: Transform -- uid: 8671 - type: WallReinforced - components: - - pos: -37.5,-3.5 - parent: 0 - type: Transform -- uid: 8672 - type: WallReinforced - components: - - pos: -37.5,-2.5 - parent: 0 - type: Transform -- uid: 8673 - type: WallReinforced - components: - - pos: -37.5,-1.5 - parent: 0 - type: Transform -- uid: 8674 - type: WallReinforced - components: - - pos: -37.5,-0.5 - parent: 0 - type: Transform -- uid: 8675 - type: WallReinforced - components: - - pos: -37.5,0.5 - parent: 0 - type: Transform -- uid: 8676 - type: ReinforcedWindow - components: - - pos: -27.5,-8.5 - parent: 0 - type: Transform -- uid: 8677 - type: ReinforcedWindow - components: - - pos: -27.5,-7.5 - parent: 0 - type: Transform -- uid: 8678 - type: ReinforcedWindow - components: - - pos: -27.5,-6.5 - parent: 0 - type: Transform -- uid: 8679 - type: ReinforcedWindow - components: - - pos: -29.5,-4.5 - parent: 0 - type: Transform -- uid: 8680 - type: ReinforcedWindow - components: - - pos: -31.5,-4.5 - parent: 0 - type: Transform -- uid: 8681 - type: AirlockMaintLocked - components: - - pos: -28.5,-11.5 - parent: 0 - type: Transform -- uid: 8682 - type: TableReinforced - components: - - pos: -30.5,-4.5 - parent: 0 - type: Transform -- uid: 8683 - type: AirlockMaintEngiLocked - components: - - pos: -30.5,-10.5 - parent: 0 - type: Transform -- uid: 8684 - type: AirlockMaintEngiLocked - components: - - pos: -36.5,-10.5 - parent: 0 - type: Transform -- uid: 8685 - type: AirlockMaintEngiLocked - components: - - pos: -36.5,-6.5 - parent: 0 - type: Transform -- uid: 8686 - type: AirlockMaintAtmoLocked - components: - - pos: -36.5,0.5 - parent: 0 - type: Transform -- uid: 8687 - type: SignEngineering - components: - - pos: -34.5,-4.5 - parent: 0 - type: Transform -- uid: 8688 - type: WindoorEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: -30.5,0.5 - parent: 0 - type: Transform -- uid: 8689 - type: WindoorEngineeringLocked - components: - - pos: -30.5,-4.5 - parent: 0 - type: Transform -- uid: 8690 - type: FirelockGlass - components: - - pos: -30.5,0.5 - parent: 0 - type: Transform -- uid: 8691 - type: FirelockGlass - components: - - pos: -30.5,-4.5 - parent: 0 - type: Transform -- uid: 8692 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: -27.5,-4.5 - parent: 0 - type: Transform -- uid: 8693 - type: SignDirectionalMed - components: - - pos: -27.507013,-4.7046685 - parent: 0 - type: Transform -- uid: 8694 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: -27.507013,-4.2984185 - parent: 0 - type: Transform -- uid: 8695 - type: DisposalUnit - components: - - pos: -28.5,20.5 - parent: 0 - type: Transform -- uid: 8696 - type: Grille - components: - - pos: -27.5,-8.5 - parent: 0 - type: Transform -- uid: 8697 - type: Grille - components: - - pos: -27.5,-7.5 - parent: 0 - type: Transform -- uid: 8698 - type: Grille - components: - - pos: -27.5,-6.5 - parent: 0 - type: Transform -- uid: 8699 - type: Grille - components: - - pos: -29.5,-4.5 - parent: 0 - type: Transform -- uid: 8700 - type: Grille - components: - - pos: -31.5,-4.5 - parent: 0 - type: Transform -- uid: 8701 - type: Grille - components: - - pos: -28.5,-3.5 - parent: 0 - type: Transform -- uid: 8702 - type: Grille - components: - - pos: -28.5,-0.5 - parent: 0 - type: Transform -- uid: 8703 - type: Grille - components: - - pos: -29.5,0.5 - parent: 0 - type: Transform -- uid: 8704 - type: Grille - components: - - pos: -31.5,0.5 - parent: 0 - type: Transform -- uid: 8705 - type: Grille - components: - - pos: -27.5,2.5 - parent: 0 - type: Transform -- uid: 8706 - type: Grille - components: - - pos: -27.5,3.5 - parent: 0 - type: Transform -- uid: 8707 - type: Grille - components: - - pos: -27.5,4.5 - parent: 0 - type: Transform -- uid: 8708 - type: Grille - components: - - pos: -35.5,1.5 - parent: 0 - type: Transform -- uid: 8709 - type: Grille - components: - - pos: -35.5,3.5 - parent: 0 - type: Transform -- uid: 8710 - type: Grille - components: - - pos: -35.5,5.5 - parent: 0 - type: Transform -- uid: 8711 - type: Windoor - components: - - rot: 3.141592653589793 rad - pos: -32.5,0.5 - parent: 0 - type: Transform -- uid: 8712 - type: WallReinforced - components: - - pos: -38.5,-0.5 - parent: 0 - type: Transform -- uid: 8713 - type: WallReinforced - components: - - pos: -40.5,-0.5 - parent: 0 - type: Transform -- uid: 8714 - type: WallReinforced - components: - - pos: -41.5,-0.5 - parent: 0 - type: Transform -- uid: 8715 - type: WallReinforced - components: - - pos: -41.5,-1.5 - parent: 0 - type: Transform -- uid: 8716 - type: WallReinforced - components: - - pos: -41.5,-2.5 - parent: 0 - type: Transform -- uid: 8717 - type: WallReinforced - components: - - pos: -41.5,-3.5 - parent: 0 - type: Transform -- uid: 8718 - type: WallReinforced - components: - - pos: -40.5,-4.5 - parent: 0 - type: Transform -- uid: 8719 - type: WallReinforced - components: - - pos: -41.5,-4.5 - parent: 0 - type: Transform -- uid: 8720 - type: WallReinforced - components: - - pos: -38.5,-4.5 - parent: 0 - type: Transform -- uid: 8721 - type: SignAtmosMinsky - components: - - pos: -35.5,4.5 - parent: 0 - type: Transform -- uid: 8722 - type: SMESBasic - components: - - pos: -44.5,-2.5 - parent: 0 - type: Transform -- uid: 8723 - type: SMESBasic - components: - - pos: -45.5,-2.5 - parent: 0 - type: Transform -- uid: 8724 - type: WallReinforced - components: - - pos: -46.5,-4.5 - parent: 0 - type: Transform -- uid: 8725 - type: CableHV - components: - - pos: -45.5,-2.5 - parent: 0 - type: Transform -- uid: 8726 - type: WallReinforced - components: - - pos: -46.5,-2.5 - parent: 0 - type: Transform -- uid: 8727 - type: WallReinforced - components: - - pos: -46.5,-1.5 - parent: 0 - type: Transform -- uid: 8728 - type: WallReinforced - components: - - pos: -46.5,-0.5 - parent: 0 - type: Transform -- uid: 8729 - type: WallReinforced - components: - - pos: -45.5,-0.5 - parent: 0 - type: Transform -- uid: 8730 - type: WallReinforced - components: - - pos: -44.5,-0.5 - parent: 0 - type: Transform -- uid: 8731 - type: WallReinforced - components: - - pos: -43.5,-0.5 - parent: 0 - type: Transform -- uid: 8732 - type: WallReinforced - components: - - pos: -42.5,-0.5 - parent: 0 - type: Transform -- uid: 8733 - type: WallReinforced - components: - - pos: -45.5,-4.5 - parent: 0 - type: Transform -- uid: 8734 - type: ReinforcedWindow - components: - - pos: -44.5,-4.5 - parent: 0 - type: Transform -- uid: 8735 - type: ReinforcedWindow - components: - - pos: -42.5,-4.5 - parent: 0 - type: Transform -- uid: 8736 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: -45.5,-3.5 - parent: 0 - type: Transform -- uid: 8737 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: -44.5,-3.5 - parent: 0 - type: Transform -- uid: 8738 - type: CableHV - components: - - pos: -45.5,-3.5 - parent: 0 - type: Transform -- uid: 8739 - type: CableHV - components: - - pos: -44.5,-3.5 - parent: 0 - type: Transform -- uid: 8740 - type: CableHV - components: - - pos: -44.5,-2.5 - parent: 0 - type: Transform -- uid: 8741 - type: CableHV - components: - - pos: -45.5,-1.5 - parent: 0 - type: Transform -- uid: 8742 - type: CableHV - components: - - pos: -44.5,-1.5 - parent: 0 - type: Transform -- uid: 8743 - type: CableHV - components: - - pos: -43.5,-1.5 - parent: 0 - type: Transform -- uid: 8744 - type: CableHV - components: - - pos: -42.5,-1.5 - parent: 0 - type: Transform -- uid: 8745 - type: CableHV - components: - - pos: -42.5,-2.5 - parent: 0 - type: Transform -- uid: 8746 - type: CableHV - components: - - pos: -42.5,-3.5 - parent: 0 - type: Transform -- uid: 8747 - type: CableHV - components: - - pos: -42.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8748 - type: CableHV - components: - - pos: -44.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8749 - type: CableHV - components: - - pos: -44.5,-5.5 - parent: 0 - type: Transform -- uid: 8750 - type: CableHV - components: - - pos: -42.5,-5.5 - parent: 0 - type: Transform -- uid: 8751 - type: WallReinforced - components: - - pos: -46.5,-3.5 - parent: 0 - type: Transform -- uid: 8752 - type: Grille - components: - - pos: -44.5,-4.5 - parent: 0 - type: Transform -- uid: 8753 - type: Grille - components: - - pos: -42.5,-4.5 - parent: 0 - type: Transform -- uid: 8754 - type: SignElectricalMed - components: - - pos: -45.5,-4.5 - parent: 0 - type: Transform -- uid: 8755 - type: CableHV - components: - - pos: -43.5,-2.5 - parent: 0 - type: Transform -- uid: 8756 - type: ComputerPowerMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-1.5 - parent: 0 - type: Transform -- uid: 8757 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8758 - type: ShuttersNormalOpen - components: - - pos: -13.5,-22.5 - parent: 0 - type: Transform -- uid: 8759 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8760 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8761 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8762 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8763 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8764 - type: GasPipeFourway - components: - - pos: -30.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8765 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8766 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8767 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8768 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8769 - type: GasPipeStraight - components: - - pos: -30.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8770 - type: ShuttersNormalOpen - components: - - rot: 3.141592653589793 rad - pos: -13.5,-21.5 - parent: 0 - type: Transform -- uid: 8771 - type: GasPipeStraight - components: - - pos: -30.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8772 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -30.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8773 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: -39.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8774 - type: GasPipeStraight - components: - - pos: -30.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8775 - type: GasPipeStraight - components: - - pos: -30.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8776 - type: GasPipeStraight - components: - - pos: -30.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8777 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -33.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8778 - type: MedkitBurnFilled - components: - - pos: -14.411808,-22.378784 - parent: 0 - type: Transform -- uid: 8779 - type: EmergencyRollerBed - components: - - pos: -16.536808,-21.285034 - parent: 0 - type: Transform -- uid: 8780 - type: GasPipeStraight - components: - - pos: -33.5,-4.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8781 - type: GasPipeStraight - components: - - pos: -33.5,-5.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8782 - type: GasPipeStraight - components: - - pos: -33.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8783 - type: Grille - components: - - pos: -23.5,-25.5 - parent: 0 - type: Transform -- uid: 8784 - type: ClothingShoesBootsWork - components: - - desc: These look like workboots but... they feel expensive. - name: Nimbs - type: MetaData - - pos: -34.496048,-16.64644 - parent: 0 - type: Transform -- uid: 8785 - type: GasPipeStraight - components: - - pos: -33.5,1.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8786 - type: GasPipeTJunction - components: - - pos: -36.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8787 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8788 - type: ClothingHeadsetMining - components: - - pos: -35.24849,-39.264732 - parent: 0 - type: Transform -- uid: 8789 - type: WallReinforced - components: - - pos: -25.5,-41.5 - parent: 0 - type: Transform -- uid: 8790 - type: WallReinforced - components: - - pos: -26.5,-41.5 - parent: 0 - type: Transform -- uid: 8791 - type: WallReinforced - components: - - pos: -28.5,-41.5 - parent: 0 - type: Transform -- uid: 8792 - type: ReinforcedWindow - components: - - pos: -27.5,-41.5 - parent: 0 - type: Transform -- uid: 8793 - type: WallReinforced - components: - - pos: -29.5,-41.5 - parent: 0 - type: Transform -- uid: 8794 - type: WallReinforced - components: - - pos: -30.5,-41.5 - parent: 0 - type: Transform -- uid: 8795 - type: WallReinforced - components: - - pos: -31.5,-41.5 - parent: 0 - type: Transform -- uid: 8796 - type: WallReinforced - components: - - pos: -32.5,-41.5 - parent: 0 - type: Transform -- uid: 8797 - type: WallReinforced - components: - - pos: -32.5,-40.5 - parent: 0 - type: Transform -- uid: 8798 - type: WallReinforced - components: - - pos: -32.5,-39.5 - parent: 0 - type: Transform -- uid: 8799 - type: WallReinforced - components: - - pos: -32.5,-38.5 - parent: 0 - type: Transform -- uid: 8800 - type: WallReinforced - components: - - pos: -33.5,-38.5 - parent: 0 - type: Transform -- uid: 8801 - type: WallReinforced - components: - - pos: -34.5,-38.5 - parent: 0 - type: Transform -- uid: 8802 - type: WallReinforced - components: - - pos: -35.5,-38.5 - parent: 0 - type: Transform -- uid: 8803 - type: ReinforcedWindow - components: - - pos: -36.5,-38.5 - parent: 0 - type: Transform -- uid: 8804 - type: ReinforcedWindow - components: - - pos: -37.5,-38.5 - parent: 0 - type: Transform -- uid: 8805 - type: ReinforcedWindow - components: - - pos: -41.5,-35.5 - parent: 0 - type: Transform -- uid: 8806 - type: ReinforcedWindow - components: - - pos: -41.5,-36.5 - parent: 0 - type: Transform -- uid: 8807 - type: ReinforcedWindow - components: - - pos: -40.5,-36.5 - parent: 0 - type: Transform -- uid: 8808 - type: ReinforcedWindow - components: - - pos: -39.5,-36.5 - parent: 0 - type: Transform -- uid: 8809 - type: WallReinforced - components: - - pos: -38.5,-38.5 - parent: 0 - type: Transform -- uid: 8810 - type: WallReinforced - components: - - pos: -38.5,-37.5 - parent: 0 - type: Transform -- uid: 8811 - type: WallReinforced - components: - - pos: -38.5,-36.5 - parent: 0 - type: Transform -- uid: 8812 - type: WallReinforced - components: - - pos: -41.5,-34.5 - parent: 0 - type: Transform -- uid: 8813 - type: WallReinforced - components: - - pos: -41.5,-33.5 - parent: 0 - type: Transform -- uid: 8814 - type: WallReinforced - components: - - pos: -41.5,-32.5 - parent: 0 - type: Transform -- uid: 8815 - type: WallReinforced - components: - - pos: -34.5,-35.5 - parent: 0 - type: Transform -- uid: 8816 - type: WallReinforced - components: - - pos: -35.5,-37.5 - parent: 0 - type: Transform -- uid: 8817 - type: WallReinforced - components: - - pos: -35.5,-36.5 - parent: 0 - type: Transform -- uid: 8818 - type: WallReinforced - components: - - pos: -35.5,-35.5 - parent: 0 - type: Transform -- uid: 8819 - type: WallReinforced - components: - - pos: -35.5,-34.5 - parent: 0 - type: Transform -- uid: 8820 - type: WallReinforced - components: - - pos: -33.5,-35.5 - parent: 0 - type: Transform -- uid: 8821 - type: WallReinforced - components: - - pos: -32.5,-35.5 - parent: 0 - type: Transform -- uid: 8822 - type: WallReinforced - components: - - pos: -32.5,-34.5 - parent: 0 - type: Transform -- uid: 8823 - type: WallReinforced - components: - - pos: -32.5,-32.5 - parent: 0 - type: Transform -- uid: 8824 - type: WallReinforced - components: - - pos: -33.5,-32.5 - parent: 0 - type: Transform -- uid: 8825 - type: WallReinforced - components: - - pos: -34.5,-32.5 - parent: 0 - type: Transform -- uid: 8826 - type: WallReinforced - components: - - pos: -35.5,-32.5 - parent: 0 - type: Transform -- uid: 8827 - type: WallReinforced - components: - - pos: -36.5,-32.5 - parent: 0 - type: Transform -- uid: 8828 - type: WallReinforced - components: - - pos: -37.5,-32.5 - parent: 0 - type: Transform -- uid: 8829 - type: WallReinforced - components: - - pos: -38.5,-32.5 - parent: 0 - type: Transform -- uid: 8830 - type: WallReinforced - components: - - pos: -39.5,-32.5 - parent: 0 - type: Transform -- uid: 8831 - type: WallReinforced - components: - - pos: -40.5,-32.5 - parent: 0 - type: Transform -- uid: 8832 - type: WallReinforced - components: - - pos: -37.5,-36.5 - parent: 0 - type: Transform -- uid: 8833 - type: WallSolid - components: - - pos: -32.5,-37.5 - parent: 0 - type: Transform -- uid: 8834 - type: WallSolid - components: - - pos: -31.5,-34.5 - parent: 0 - type: Transform -- uid: 8835 - type: WallSolid - components: - - pos: -29.5,-34.5 - parent: 0 - type: Transform -- uid: 8836 - type: WallSolid - components: - - pos: -29.5,-33.5 - parent: 0 - type: Transform -- uid: 8837 - type: WallSolid - components: - - pos: -29.5,-32.5 - parent: 0 - type: Transform -- uid: 8838 - type: WallSolid - components: - - pos: -28.5,-32.5 - parent: 0 - type: Transform -- uid: 8839 - type: WallSolid - components: - - pos: -28.5,-30.5 - parent: 0 - type: Transform -- uid: 8840 - type: WallSolid - components: - - pos: -28.5,-40.5 - parent: 0 - type: Transform -- uid: 8841 - type: Grille - components: - - pos: -27.5,-41.5 - parent: 0 - type: Transform -- uid: 8842 - type: Grille - components: - - pos: -37.5,-38.5 - parent: 0 - type: Transform -- uid: 8843 - type: Grille - components: - - pos: -36.5,-38.5 - parent: 0 - type: Transform -- uid: 8844 - type: Grille - components: - - pos: -39.5,-36.5 - parent: 0 - type: Transform -- uid: 8845 - type: Grille - components: - - pos: -40.5,-36.5 - parent: 0 - type: Transform -- uid: 8846 - type: Grille - components: - - pos: -41.5,-36.5 - parent: 0 - type: Transform -- uid: 8847 - type: Grille - components: - - pos: -41.5,-35.5 - parent: 0 - type: Transform -- uid: 8848 - type: AirlockMaintLocked - components: - - pos: -33.5,-31.5 - parent: 0 - type: Transform -- uid: 8849 - type: WallSolid - components: - - pos: -33.5,-30.5 - parent: 0 - type: Transform -- uid: 8850 - type: WallSolid - components: - - pos: -32.5,-30.5 - parent: 0 - type: Transform -- uid: 8851 - type: WallSolid - components: - - pos: -31.5,-29.5 - parent: 0 - type: Transform -- uid: 8852 - type: WallSolid - components: - - pos: -31.5,-28.5 - parent: 0 - type: Transform -- uid: 8853 - type: WallSolid - components: - - pos: -31.5,-27.5 - parent: 0 - type: Transform -- uid: 8854 - type: WallSolid - components: - - pos: -31.5,-26.5 - parent: 0 - type: Transform -- uid: 8855 - type: WallSolid - components: - - pos: -32.5,-26.5 - parent: 0 - type: Transform -- uid: 8856 - type: WallSolid - components: - - pos: -33.5,-26.5 - parent: 0 - type: Transform -- uid: 8857 - type: WallSolid - components: - - pos: -35.5,-26.5 - parent: 0 - type: Transform -- uid: 8858 - type: WallSolid - components: - - pos: -34.5,-30.5 - parent: 0 - type: Transform -- uid: 8859 - type: Window - components: - - pos: -28.5,-26.5 - parent: 0 - type: Transform -- uid: 8860 - type: Barricade - components: - - pos: -30.5,-26.5 - parent: 0 - type: Transform -- uid: 8861 - type: AirlockMaintLocked - components: - - pos: -29.5,-26.5 - parent: 0 - type: Transform -- uid: 8862 - type: AirlockAtmosphericsLocked - components: - - pos: -32.5,-36.5 - parent: 0 - type: Transform -- uid: 8863 - type: ClothingMaskBreathMedical - components: - - pos: 14.451679,-40.556843 - parent: 0 - type: Transform -- uid: 8864 - type: ClothingShoesLeather - components: - - pos: 35.476944,-33.759735 - parent: 0 - type: Transform -- uid: 8865 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-36.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8866 - type: AirlockMaintLocked - components: - - pos: -30.5,-34.5 - parent: 0 - type: Transform -- uid: 8867 - type: AirlockMaintLocked - components: - - pos: -28.5,-39.5 - parent: 0 - type: Transform -- uid: 8868 - type: SignBiohazardMed - components: - - pos: -35.5,-34.5 - parent: 0 - type: Transform -- uid: 8869 - type: ClosetL3VirologyFilled - components: - - pos: -34.5,-34.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 8870 - type: SignVirology - components: - - pos: -32.5,-32.5 - parent: 0 - type: Transform -- uid: 8871 - type: VendingMachineViroDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -37.5,-33.5 - parent: 0 - type: Transform -- uid: 8872 - type: Girder - components: - - pos: -31.5,-30.5 - parent: 0 - type: Transform -- uid: 8873 - type: WallReinforced - components: - - pos: -37.5,-11.5 - parent: 0 - type: Transform -- uid: 8874 - type: WallReinforced - components: - - pos: -37.5,-12.5 - parent: 0 - type: Transform -- uid: 8875 - type: WallReinforced - components: - - pos: -37.5,-13.5 - parent: 0 - type: Transform -- uid: 8876 - type: WallReinforced - components: - - pos: -37.5,-14.5 - parent: 0 - type: Transform -- uid: 8877 - type: WallReinforced - components: - - pos: -37.5,-15.5 - parent: 0 - type: Transform -- uid: 8878 - type: CableMV - components: - - pos: -24.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8879 - type: CableMV - components: - - pos: -24.5,-11.5 - parent: 0 - type: Transform -- uid: 8880 - type: CableMV - components: - - pos: -25.5,-11.5 - parent: 0 - type: Transform -- uid: 8881 - type: CableMV - components: - - pos: -26.5,-11.5 - parent: 0 - type: Transform -- uid: 8882 - type: CableMV - components: - - pos: -27.5,-11.5 - parent: 0 - type: Transform -- uid: 8883 - type: CableMV - components: - - pos: -28.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8884 - type: CableMV - components: - - pos: -29.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8885 - type: CableMV - components: - - pos: -30.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8886 - type: CableMV - components: - - pos: -31.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8887 - type: CableMV - components: - - pos: -32.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8888 - type: CableMV - components: - - pos: -33.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8889 - type: CableMV - components: - - pos: -34.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8890 - type: CableMV - components: - - pos: -35.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8891 - type: CableMV - components: - - pos: -36.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8892 - type: CableMV - components: - - pos: -36.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8893 - type: CableMV - components: - - pos: -36.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8894 - type: CableMV - components: - - pos: -36.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8895 - type: CableMV - components: - - pos: -36.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8896 - type: APCBasic - components: - - pos: -33.5,-24.5 - parent: 0 - type: Transform -- uid: 8897 - type: CableMV - components: - - pos: -33.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8898 - type: CableMV - components: - - pos: -34.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8899 - type: CableMV - components: - - pos: -34.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8900 - type: CableMV - components: - - pos: -34.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8901 - type: CableMV - components: - - pos: -34.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8902 - type: WallSolid - components: - - pos: -39.5,-28.5 - parent: 0 - type: Transform -- uid: 8903 - type: WallSolid - components: - - pos: -39.5,-26.5 - parent: 0 - type: Transform -- uid: 8904 - type: WallSolid - components: - - pos: -39.5,-27.5 - parent: 0 - type: Transform -- uid: 8905 - type: WallSolid - components: - - pos: -39.5,-25.5 - parent: 0 - type: Transform -- uid: 8906 - type: WallSolid - components: - - pos: -39.5,-24.5 - parent: 0 - type: Transform -- uid: 8907 - type: WallSolid - components: - - pos: -39.5,-23.5 - parent: 0 - type: Transform -- uid: 8908 - type: CableApcExtension - components: - - pos: -33.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8909 - type: CableApcExtension - components: - - pos: -33.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8910 - type: CableApcExtension - components: - - pos: -32.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8911 - type: CableApcExtension - components: - - pos: -31.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8912 - type: CableApcExtension - components: - - pos: -30.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8913 - type: CableApcExtension - components: - - pos: -29.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8914 - type: CableApcExtension - components: - - pos: -29.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8915 - type: CableApcExtension - components: - - pos: -29.5,-27.5 - parent: 0 - type: Transform -- uid: 8916 - type: CableApcExtension - components: - - pos: -29.5,-28.5 - parent: 0 - type: Transform -- uid: 8917 - type: CableApcExtension - components: - - pos: -29.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8918 - type: CableApcExtension - components: - - pos: -29.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8919 - type: CableApcExtension - components: - - pos: -29.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8920 - type: CableApcExtension - components: - - pos: -30.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8921 - type: CableApcExtension - components: - - pos: -30.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8922 - type: CableApcExtension - components: - - pos: -30.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8923 - type: CableApcExtension - components: - - pos: -30.5,-34.5 - parent: 0 - type: Transform -- uid: 8924 - type: CableApcExtension - components: - - pos: -30.5,-35.5 - parent: 0 - type: Transform -- uid: 8925 - type: CableApcExtension - components: - - pos: -30.5,-36.5 - parent: 0 - type: Transform -- uid: 8926 - type: CableApcExtension - components: - - pos: -30.5,-37.5 - parent: 0 - type: Transform -- uid: 8927 - type: CableApcExtension - components: - - pos: -30.5,-38.5 - parent: 0 - type: Transform -- uid: 8928 - type: CableApcExtension - components: - - pos: -30.5,-39.5 - parent: 0 - type: Transform -- uid: 8929 - type: CableApcExtension - components: - - pos: -30.5,-40.5 - parent: 0 - type: Transform -- uid: 8930 - type: CableApcExtension - components: - - pos: -29.5,-39.5 - parent: 0 - type: Transform -- uid: 8931 - type: CableApcExtension - components: - - pos: -28.5,-39.5 - parent: 0 - type: Transform -- uid: 8932 - type: CableApcExtension - components: - - pos: -27.5,-39.5 - parent: 0 - type: Transform -- uid: 8933 - type: CableApcExtension - components: - - pos: -31.5,-36.5 - parent: 0 - type: Transform -- uid: 8934 - type: CableApcExtension - components: - - pos: -32.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8935 - type: CableApcExtension - components: - - pos: -33.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8936 - type: CableApcExtension - components: - - pos: -31.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8937 - type: CableApcExtension - components: - - pos: -32.5,-33.5 - parent: 0 - type: Transform -- uid: 8938 - type: CableApcExtension - components: - - pos: -33.5,-33.5 - parent: 0 - type: Transform -- uid: 8939 - type: CableApcExtension - components: - - pos: -34.5,-33.5 - parent: 0 - type: Transform -- uid: 8940 - type: CableApcExtension - components: - - pos: -35.5,-33.5 - parent: 0 - type: Transform -- uid: 8941 - type: CableApcExtension - components: - - pos: -36.5,-33.5 - parent: 0 - type: Transform -- uid: 8942 - type: CableApcExtension - components: - - pos: -36.5,-34.5 - parent: 0 - type: Transform -- uid: 8943 - type: CableApcExtension - components: - - pos: -37.5,-34.5 - parent: 0 - type: Transform -- uid: 8944 - type: CableApcExtension - components: - - pos: -38.5,-34.5 - parent: 0 - type: Transform -- uid: 8945 - type: CableApcExtension - components: - - pos: -39.5,-34.5 - parent: 0 - type: Transform -- uid: 8946 - type: GasPipeStraight - components: - - pos: -10.5,-34.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8947 - type: CableApcExtension - components: - - pos: -36.5,-35.5 - parent: 0 - type: Transform -- uid: 8948 - type: CableApcExtension - components: - - pos: -36.5,-36.5 - parent: 0 - type: Transform -- uid: 8949 - type: CableApcExtension - components: - - pos: -36.5,-37.5 - parent: 0 - type: Transform -- uid: 8950 - type: GasPipeStraight - components: - - pos: -10.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8951 - type: GasPipeStraight - components: - - pos: -10.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8952 - type: GasPipeStraight - components: - - pos: -10.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8953 - type: GasPipeBend - components: - - pos: -10.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8954 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8955 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8956 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8957 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8958 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8959 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8960 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8961 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8962 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8963 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8964 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8965 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8966 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8967 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -24.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8968 - type: GasPipeBend - components: - - pos: -24.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8969 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8970 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8971 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8972 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8973 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8974 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8975 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-29.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8976 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,-30.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8977 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,-31.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8978 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,-32.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8979 - type: GasPassiveGate - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-33.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8980 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8981 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8982 - type: GasPipeTJunction - components: - - pos: -34.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8983 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8984 - type: GasPipeTJunction - components: - - pos: -36.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8985 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8986 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8987 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-33.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8988 - type: GasPipeStraight - components: - - pos: -36.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8989 - type: GasPipeStraight - components: - - pos: -36.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8990 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-36.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8991 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -39.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8992 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -36.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8993 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -34.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8994 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8995 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8996 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8997 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8998 - type: GasPipeTJunction - components: - - pos: -37.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 8999 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9000 - type: GasPipeStraight - components: - - pos: -37.5,-36.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9001 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9002 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9003 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,-36.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9004 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-35.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9005 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -40.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9006 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -37.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9007 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-34.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9008 - type: DisposalUnit - components: - - pos: -37.5,-35.5 - parent: 0 - type: Transform -- uid: 9009 - type: DisposalTrunk - components: - - pos: -37.5,-35.5 - parent: 0 - type: Transform -- uid: 9010 - type: DisposalPipe - components: - - pos: -37.5,-36.5 - parent: 0 - type: Transform -- uid: 9011 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-37.5 - parent: 0 - type: Transform -- uid: 9012 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-37.5 - parent: 0 - type: Transform -- uid: 9013 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-37.5 - parent: 0 - type: Transform -- uid: 9014 - type: SignDisposalSpace - components: - - pos: -37.5,-36.5 - parent: 0 - type: Transform -- uid: 9015 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9016 - type: PoweredSmallLight - components: - - pos: -33.5,-33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9017 - type: Poweredlight - components: - - pos: -38.5,-33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9018 - type: DiseaseDiagnoser - components: - - pos: -38.5,-35.5 - parent: 0 - type: Transform -- uid: 9019 - type: Vaccinator - components: - - pos: -38.5,-33.5 - parent: 0 - type: Transform -- uid: 9020 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: -40.5,-33.5 - parent: 0 - type: Transform -- uid: 9021 - type: LockerMedicineFilled - components: - - pos: -39.5,-33.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9022 - type: WallReinforced - components: - - pos: -53.5,2.5 - parent: 0 - type: Transform -- uid: 9023 - type: TableGlass - components: - - pos: -39.5,-35.5 - parent: 0 - type: Transform -- uid: 9024 - type: TableGlass - components: - - pos: -40.5,-35.5 - parent: 0 - type: Transform -- uid: 9025 - type: TableGlass - components: - - pos: -40.5,-34.5 - parent: 0 - type: Transform -- uid: 9026 - type: KitchenReagentGrinder - components: - - pos: -40.5,-34.5 - parent: 0 - type: Transform -- uid: 9027 - type: HandheldHealthAnalyzer - components: - - pos: -39.497536,-35.530823 - parent: 0 - type: Transform -- uid: 9028 - type: BoxSterileMask - components: - - pos: -40.66941,-35.374573 - parent: 0 - type: Transform -- uid: 9029 - type: BoxLatexGloves - components: - - pos: -40.466286,-35.483948 - parent: 0 - type: Transform -- uid: 9030 - type: Beaker - components: - - pos: -40.278786,-34.952698 - parent: 0 - type: Transform -- uid: 9031 - type: BoxSyringe - components: - - pos: -40.247536,-35.390198 - parent: 0 - type: Transform -- uid: 9032 - type: SyringeSpaceacillin - components: - - pos: -39.41941,-35.327698 - parent: 0 - type: Transform -- uid: 9033 - type: ClothingHandsGlovesNitrile - components: - - pos: -39.79441,-35.343323 - parent: 0 - type: Transform -- uid: 9034 - type: MedicalBed - components: - - pos: -37.5,-37.5 - parent: 0 - type: Transform -- uid: 9035 - type: ReinforcedPlasmaWindow - components: - - pos: -50.5,11.5 - parent: 0 - type: Transform -- uid: 9036 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9037 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -33.5,-37.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9038 - type: GasPipeBend - components: - - pos: -33.5,-36.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9039 - type: GasValve - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-36.5 - parent: 0 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 9040 - type: ClothingUniformJumpskirtJanimaid - components: - - pos: 10.492298,52.554813 - parent: 0 - type: Transform -- uid: 9041 - type: AirCanister - components: - - pos: -34.5,-37.5 - parent: 0 - type: Transform -- uid: 9042 - type: PoweredSmallLight - components: - - pos: -34.5,-36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9043 - type: SignFire - components: - - pos: -32.5,-37.5 - parent: 0 - type: Transform -- uid: 9044 - type: SignSmoking - components: - - pos: -33.5,-38.5 - parent: 0 - type: Transform -- uid: 9045 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: -26.5,-39.5 - parent: 0 - type: Transform -- uid: 9046 - type: Dresser - components: - - pos: -26.5,-40.5 - parent: 0 - type: Transform -- uid: 9047 - type: ComfyChair - components: - - pos: -27.5,-40.5 - parent: 0 - type: Transform -- uid: 9048 - type: PoweredSmallLight - components: - - pos: -27.5,-39.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9049 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -30.5,-40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9050 - type: CableApcExtension - components: - - pos: -50.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9051 - type: TableWood - components: - - pos: -31.5,-40.5 - parent: 0 - type: Transform -- uid: 9052 - type: TableWood - components: - - pos: -29.5,-35.5 - parent: 0 - type: Transform -- uid: 9053 - type: ClothingUniformJumpskirtOperative - components: - - pos: -28.506933,-33.546886 - parent: 0 - type: Transform -- uid: 9054 - type: MinimoogInstrument - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-39.5 - parent: 0 - type: Transform -- uid: 9055 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -29.5,-40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9056 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-40.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9057 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-39.5 - parent: 0 - type: Transform -- uid: 9058 - type: ComfyChair - components: - - pos: -31.5,-37.5 - parent: 0 - type: Transform -- uid: 9059 - type: ComfyChair - components: - - pos: -30.5,-37.5 - parent: 0 - type: Transform -- uid: 9060 - type: ClothingUniformJumpsuitOperative - components: - - pos: -28.538183,-33.56251 - parent: 0 - type: Transform -- uid: 9061 - type: ClothingBeltMilitaryWebbing - components: - - pos: -28.553808,-33.515636 - parent: 0 - type: Transform -- uid: 9062 - type: Carpet - components: - - pos: -30.5,-39.5 - parent: 0 - type: Transform -- uid: 9063 - type: Carpet - components: - - pos: -29.5,-39.5 - parent: 0 - type: Transform -- uid: 9064 - type: LampGold - components: - - pos: -31.475683,-40.265636 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 9065 - type: MaintenanceFluffSpawner - components: - - pos: -29.5,-35.5 - parent: 0 - type: Transform -- uid: 9066 - type: RandomPosterContraband - components: - - pos: -28.5,-40.5 - parent: 0 - type: Transform -- uid: 9067 - type: RandomPosterAny - components: - - pos: -32.5,-35.5 - parent: 0 - type: Transform -- uid: 9068 - type: ClosetMaintenanceFilledRandom - components: - - pos: -31.5,-35.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9069 - type: WaterTankFull - components: - - pos: -28.5,-31.5 - parent: 0 - type: Transform -- uid: 9070 - type: WeldingFuelTankFull - components: - - pos: -24.5,-32.5 - parent: 0 - type: Transform -- uid: 9071 - type: Windoor - components: - - pos: -24.5,-31.5 - parent: 0 - type: Transform -- uid: 9072 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-31.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9073 - type: PoweredSmallLight - components: - - pos: -15.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9074 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9075 - type: GasPipeStraight - components: - - pos: -45.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9076 - type: ShardGlass - components: - - pos: -30.439472,-27.54581 - parent: 0 - type: Transform -- uid: 9077 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -30.5,-28.5 - parent: 0 - type: Transform -- uid: 9078 - type: TableWood - components: - - pos: -30.5,-29.5 - parent: 0 - type: Transform -- uid: 9079 - type: BriefcaseBrownFilled - components: - - pos: -30.580097,-29.217686 - parent: 0 - type: Transform -- uid: 9080 - type: Wrench - components: - - pos: -30.517597,-29.561436 - parent: 0 - type: Transform -- uid: 9081 - type: MaintenanceWeaponSpawner - components: - - pos: -28.5,-27.5 - parent: 0 - type: Transform -- uid: 9082 - type: CarpetGreen - components: - - pos: -30.5,-36.5 - parent: 0 - type: Transform -- uid: 9083 - type: CarpetGreen - components: - - pos: -30.5,-37.5 - parent: 0 - type: Transform -- uid: 9084 - type: CarpetGreen - components: - - pos: -31.5,-37.5 - parent: 0 - type: Transform -- uid: 9085 - type: CarpetGreen - components: - - pos: -31.5,-36.5 - parent: 0 - type: Transform -- uid: 9086 - type: BrbSign - components: - - pos: 5.1968718,29.290854 - parent: 0 - type: Transform -- uid: 9087 - type: Grille - components: - - pos: -28.5,-26.5 - parent: 0 - type: Transform -- uid: 9088 - type: GrilleBroken - components: - - pos: -30.5,-26.5 - parent: 0 - type: Transform -- uid: 9091 - type: WallReinforced - components: - - pos: -55.5,12.5 - parent: 0 - type: Transform -- uid: 9092 - type: WallReinforced - components: - - pos: -55.5,11.5 - parent: 0 - type: Transform -- uid: 9093 - type: WallReinforced - components: - - pos: -55.5,10.5 - parent: 0 - type: Transform -- uid: 9094 - type: WallReinforced - components: - - pos: -55.5,9.5 - parent: 0 - type: Transform -- uid: 9095 - type: WallReinforced - components: - - pos: -55.5,8.5 - parent: 0 - type: Transform -- uid: 9096 - type: WallReinforced - components: - - pos: -55.5,7.5 - parent: 0 - type: Transform -- uid: 9097 - type: WallReinforced - components: - - pos: -55.5,6.5 - parent: 0 - type: Transform -- uid: 9098 - type: WallReinforced - components: - - pos: -55.5,5.5 - parent: 0 - type: Transform -- uid: 9099 - type: ClosetWallAtmospherics - components: - - pos: -55.5,5.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12381 - type: ContainerContainer -- uid: 9100 - type: WallReinforced - components: - - pos: -55.5,3.5 - parent: 0 - type: Transform -- uid: 9101 - type: WallReinforced - components: - - pos: -55.5,2.5 - parent: 0 - type: Transform -- uid: 9102 - type: WallReinforced - components: - - pos: -55.5,1.5 - parent: 0 - type: Transform -- uid: 9103 - type: WallReinforced - components: - - pos: -54.5,12.5 - parent: 0 - type: Transform -- uid: 9104 - type: WallReinforced - components: - - pos: -54.5,11.5 - parent: 0 - type: Transform -- uid: 9105 - type: WallReinforced - components: - - pos: -54.5,10.5 - parent: 0 - type: Transform -- uid: 9106 - type: WallReinforced - components: - - pos: -54.5,9.5 - parent: 0 - type: Transform -- uid: 9107 - type: WallReinforced - components: - - pos: -54.5,8.5 - parent: 0 - type: Transform -- uid: 9108 - type: WallReinforced - components: - - pos: -54.5,7.5 - parent: 0 - type: Transform -- uid: 9109 - type: WallReinforced - components: - - pos: -54.5,6.5 - parent: 0 - type: Transform -- uid: 9110 - type: WallReinforced - components: - - pos: -54.5,5.5 - parent: 0 - type: Transform -- uid: 9111 - type: WallReinforced - components: - - pos: -54.5,4.5 - parent: 0 - type: Transform -- uid: 9112 - type: WallReinforced - components: - - pos: -54.5,3.5 - parent: 0 - type: Transform -- uid: 9113 - type: WallReinforced - components: - - pos: -54.5,2.5 - parent: 0 - type: Transform -- uid: 9114 - type: WallReinforced - components: - - pos: -54.5,1.5 - parent: 0 - type: Transform -- uid: 9115 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -47.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9116 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9117 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -53.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9118 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,2.5 - parent: 0 - type: Transform - - color: '#03FDC3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9119 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9120 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -53.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9121 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -53.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9122 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9123 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9124 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,2.5 - parent: 0 - type: Transform - - color: '#03FDC3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9125 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -53.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9126 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9127 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9128 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -53.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9129 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,2.5 - parent: 0 - type: Transform - - color: '#03FDC3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9130 - type: GasPipeTJunction - components: - - pos: -38.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9131 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -39.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9132 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,2.5 - parent: 0 - type: Transform - - color: '#03FDC3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9133 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -53.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9134 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9135 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9136 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9137 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9138 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9139 - type: WallReinforced - components: - - pos: -50.5,0.5 - parent: 0 - type: Transform -- uid: 9140 - type: WallReinforced - components: - - pos: -51.5,0.5 - parent: 0 - type: Transform -- uid: 9141 - type: WallReinforced - components: - - pos: -52.5,0.5 - parent: 0 - type: Transform -- uid: 9142 - type: WallReinforced - components: - - pos: -53.5,0.5 - parent: 0 - type: Transform -- uid: 9143 - type: WallReinforced - components: - - pos: -54.5,0.5 - parent: 0 - type: Transform -- uid: 9144 - type: WallReinforced - components: - - pos: -55.5,0.5 - parent: 0 - type: Transform -- uid: 9145 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -38.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9146 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9147 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9148 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9149 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9150 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9151 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9152 - type: GasPipeTJunction - components: - - pos: -33.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9153 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9154 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9155 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -40.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9156 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -40.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9157 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9158 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -42.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9159 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9160 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9161 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9162 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9163 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -47.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9164 - type: GasValve - components: - - rot: 3.141592653589793 rad - pos: -47.5,-0.5 - parent: 0 - type: Transform - - open: False - type: GasValve - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9165 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9166 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -49.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9167 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9168 - type: GasPassiveVent - components: - - pos: -49.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9169 - type: GasFilterFlipped - components: - - pos: -47.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9170 - type: GasFilterFlipped - components: - - pos: -47.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9171 - type: GasFilterFlipped - components: - - pos: -47.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9172 - type: GasFilterFlipped - components: - - pos: -47.5,7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9173 - type: GasFilterFlipped - components: - - pos: -47.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9174 - type: GasFilterFlipped - components: - - pos: -47.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9175 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9176 - type: ReinforcedPlasmaWindow - components: - - pos: -50.5,1.5 - parent: 0 - type: Transform -- uid: 9177 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9178 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9179 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9180 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9181 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9182 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9183 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9184 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9185 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9186 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9187 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9188 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9189 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9190 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9191 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9192 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9193 - type: ClothingOuterCoatJensen - components: - - pos: -13.455734,5.5269423 - parent: 0 - type: Transform -- uid: 9194 - type: ClothingShoesBootsJack - components: - - pos: 15.452381,-15.575151 - parent: 0 - type: Transform -- uid: 9195 - type: ClothingHeadHatAnimalHeadslime - components: - - pos: -33.510674,-34.64361 - parent: 0 - type: Transform -- uid: 9196 - type: ClothingNeckHeadphones - components: - - pos: -22.35473,0.53885174 - parent: 0 - type: Transform -- uid: 9197 - type: ClothingNeckMantleHOS - components: - - pos: -19.447493,22.601294 - parent: 0 - type: Transform -- uid: 9198 - type: ClothingBackpackClown - components: - - pos: -10.304824,1.6229031 - parent: 0 - type: Transform -- uid: 9199 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -53.5,1.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9200 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -53.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9201 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -53.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9202 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -53.5,7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9203 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -53.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9204 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -53.5,11.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9205 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9206 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -47.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9207 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9208 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9209 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9210 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9211 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9212 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -47.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9213 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9214 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9215 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9216 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9217 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9218 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -47.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9219 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9220 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9221 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9222 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9223 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9224 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -47.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9225 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9226 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9227 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9228 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9229 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9230 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -47.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9231 - type: GasPipeStraight - components: - - pos: -47.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9232 - type: GasPipeStraight - components: - - pos: -47.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9233 - type: GasPipeStraight - components: - - pos: -47.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9234 - type: GasPipeStraight - components: - - pos: -47.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9235 - type: GasPipeStraight - components: - - pos: -47.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9236 - type: GasMixerFlipped - components: - - pos: -45.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9237 - type: GasMixerFlipped - components: - - pos: -45.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9238 - type: GasPipeStraight - components: - - pos: -45.5,7.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9239 - type: WallReinforced - components: - - pos: -51.5,6.5 - parent: 0 - type: Transform -- uid: 9240 - type: WallReinforced - components: - - pos: -50.5,4.5 - parent: 0 - type: Transform -- uid: 9241 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9242 - type: WallReinforced - components: - - pos: -50.5,2.5 - parent: 0 - type: Transform -- uid: 9243 - type: WallReinforced - components: - - pos: -51.5,2.5 - parent: 0 - type: Transform -- uid: 9244 - type: WallReinforced - components: - - pos: -52.5,6.5 - parent: 0 - type: Transform -- uid: 9245 - type: WallReinforced - components: - - pos: -52.5,2.5 - parent: 0 - type: Transform -- uid: 9246 - type: GasPipeStraight - components: - - pos: -45.5,9.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9247 - type: GasMixerFlipped - components: - - pos: -45.5,6.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9248 - type: WallReinforced - components: - - pos: -53.5,6.5 - parent: 0 - type: Transform -- uid: 9249 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,8.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9250 - type: GasPipeStraight - components: - - pos: -46.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9251 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -46.5,2.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9252 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,3.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9253 - type: GasPipeStraight - components: - - pos: -46.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9254 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -46.5,5.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9255 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9256 - type: WallReinforced - components: - - pos: -52.5,4.5 - parent: 0 - type: Transform -- uid: 9257 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9258 - type: WallReinforced - components: - - pos: -53.5,4.5 - parent: 0 - type: Transform -- uid: 9259 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,10.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9260 - type: WallReinforced - components: - - pos: -51.5,4.5 - parent: 0 - type: Transform -- uid: 9261 - type: GasMixerFlipped - components: - - pos: -45.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9262 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -47.5,12.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9263 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -47.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9264 - type: GasPassiveVent - components: - - pos: -47.5,14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9265 - type: WallReinforced - components: - - pos: -50.5,6.5 - parent: 0 - type: Transform -- uid: 9266 - type: WallReinforced - components: - - pos: -50.5,8.5 - parent: 0 - type: Transform -- uid: 9267 - type: WallReinforced - components: - - pos: -51.5,8.5 - parent: 0 - type: Transform -- uid: 9268 - type: WallReinforced - components: - - pos: -52.5,8.5 - parent: 0 - type: Transform -- uid: 9269 - type: WallReinforced - components: - - pos: -53.5,8.5 - parent: 0 - type: Transform -- uid: 9270 - type: WallReinforced - components: - - pos: -53.5,10.5 - parent: 0 - type: Transform -- uid: 9271 - type: WallReinforced - components: - - pos: -52.5,10.5 - parent: 0 - type: Transform -- uid: 9272 - type: WallReinforced - components: - - pos: -51.5,10.5 - parent: 0 - type: Transform -- uid: 9273 - type: WallReinforced - components: - - pos: -50.5,10.5 - parent: 0 - type: Transform -- uid: 9274 - type: WallReinforced - components: - - pos: -50.5,12.5 - parent: 0 - type: Transform -- uid: 9275 - type: WallReinforced - components: - - pos: -51.5,12.5 - parent: 0 - type: Transform -- uid: 9276 - type: WallReinforced - components: - - pos: -52.5,12.5 - parent: 0 - type: Transform -- uid: 9277 - type: WallReinforced - components: - - pos: -53.5,12.5 - parent: 0 - type: Transform -- uid: 9278 - type: WarningN2 - components: - - pos: -50.5,2.5 - parent: 0 - type: Transform -- uid: 9279 - type: WarningO2 - components: - - pos: -50.5,4.5 - parent: 0 - type: Transform -- uid: 9280 - type: WarningCO2 - components: - - pos: -50.5,6.5 - parent: 0 - type: Transform -- uid: 9281 - type: WarningWaste - components: - - pos: -50.5,8.5 - parent: 0 - type: Transform -- uid: 9282 - type: WarningPlasma - components: - - pos: -50.5,10.5 - parent: 0 - type: Transform -- uid: 9283 - type: WarningTritium - components: - - pos: -50.5,12.5 - parent: 0 - type: Transform -- uid: 9284 - type: WallReinforced - components: - - pos: -46.5,-5.5 - parent: 0 - type: Transform -- uid: 9285 - type: WallReinforced - components: - - pos: -48.5,-3.5 - parent: 0 - type: Transform -- uid: 9286 - type: WallReinforced - components: - - pos: -48.5,-2.5 - parent: 0 - type: Transform -- uid: 9287 - type: CableMV - components: - - pos: -38.5,7.5 - parent: 0 - type: Transform -- uid: 9288 - type: CableApcExtension - components: - - pos: -38.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9289 - type: CableMV - components: - - pos: -38.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9290 - type: APCBasic - components: - - pos: -38.5,6.5 - parent: 0 - type: Transform -- uid: 9291 - type: ReinforcedWindow - components: - - pos: -48.5,-1.5 - parent: 0 - type: Transform -- uid: 9292 - type: ReinforcedWindow - components: - - pos: -48.5,-0.5 - parent: 0 - type: Transform -- uid: 9293 - type: ReinforcedWindow - components: - - pos: -48.5,0.5 - parent: 0 - type: Transform -- uid: 9294 - type: ReinforcedWindow - components: - - pos: -48.5,1.5 - parent: 0 - type: Transform -- uid: 9295 - type: ReinforcedWindow - components: - - pos: -48.5,2.5 - parent: 0 - type: Transform -- uid: 9296 - type: ReinforcedWindow - components: - - pos: -48.5,3.5 - parent: 0 - type: Transform -- uid: 9297 - type: ReinforcedWindow - components: - - pos: -48.5,4.5 - parent: 0 - type: Transform -- uid: 9298 - type: ReinforcedWindow - components: - - pos: -48.5,5.5 - parent: 0 - type: Transform -- uid: 9299 - type: ReinforcedWindow - components: - - pos: -48.5,6.5 - parent: 0 - type: Transform -- uid: 9300 - type: ReinforcedWindow - components: - - pos: -48.5,7.5 - parent: 0 - type: Transform -- uid: 9301 - type: ReinforcedWindow - components: - - pos: -48.5,8.5 - parent: 0 - type: Transform -- uid: 9302 - type: ReinforcedWindow - components: - - pos: -48.5,9.5 - parent: 0 - type: Transform -- uid: 9303 - type: ReinforcedWindow - components: - - pos: -48.5,10.5 - parent: 0 - type: Transform -- uid: 9304 - type: ReinforcedWindow - components: - - pos: -48.5,11.5 - parent: 0 - type: Transform -- uid: 9305 - type: ReinforcedWindow - components: - - pos: -48.5,12.5 - parent: 0 - type: Transform -- uid: 9306 - type: ReinforcedWindow - components: - - pos: -48.5,13.5 - parent: 0 - type: Transform -- uid: 9307 - type: ReinforcedPlasmaWindow - components: - - pos: -50.5,9.5 - parent: 0 - type: Transform -- uid: 9308 - type: ReinforcedPlasmaWindow - components: - - pos: -50.5,7.5 - parent: 0 - type: Transform -- uid: 9309 - type: ReinforcedPlasmaWindow - components: - - pos: -50.5,5.5 - parent: 0 - type: Transform -- uid: 9310 - type: ReinforcedPlasmaWindow - components: - - pos: -50.5,3.5 - parent: 0 - type: Transform -- uid: 9311 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9312 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9313 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9314 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9315 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9316 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9317 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9318 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9319 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9320 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,12.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9321 - type: CableApcExtension - components: - - pos: -38.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9322 - type: CableApcExtension - components: - - pos: -38.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9323 - type: CableApcExtension - components: - - pos: -38.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9324 - type: CableApcExtension - components: - - pos: -38.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9325 - type: CableApcExtension - components: - - pos: -38.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9326 - type: CableApcExtension - components: - - pos: -38.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9327 - type: CableApcExtension - components: - - pos: -39.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9328 - type: CableApcExtension - components: - - pos: -40.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9329 - type: CableApcExtension - components: - - pos: -41.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9330 - type: CableApcExtension - components: - - pos: -42.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9331 - type: CableApcExtension - components: - - pos: -43.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9332 - type: CableApcExtension - components: - - pos: -44.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9333 - type: CableApcExtension - components: - - pos: -45.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9334 - type: CableApcExtension - components: - - pos: -46.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9335 - type: CableApcExtension - components: - - pos: -47.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9336 - type: CableApcExtension - components: - - pos: -48.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9337 - type: CableApcExtension - components: - - pos: -49.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9338 - type: CableApcExtension - components: - - pos: -51.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9339 - type: CableApcExtension - components: - - pos: -52.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9340 - type: CableApcExtension - components: - - pos: -53.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9341 - type: CableApcExtension - components: - - pos: -54.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9342 - type: CableApcExtension - components: - - pos: -54.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9343 - type: CableApcExtension - components: - - pos: -54.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9344 - type: CableApcExtension - components: - - pos: -54.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9345 - type: CableApcExtension - components: - - pos: -54.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9346 - type: CableApcExtension - components: - - pos: -54.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9347 - type: CableApcExtension - components: - - pos: -54.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9348 - type: CableApcExtension - components: - - pos: -54.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9349 - type: CableApcExtension - components: - - pos: -54.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9350 - type: CableApcExtension - components: - - pos: -54.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9351 - type: CableApcExtension - components: - - pos: -54.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9352 - type: CableApcExtension - components: - - pos: -54.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9353 - type: CableApcExtension - components: - - pos: -54.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9354 - type: CableApcExtension - components: - - pos: -53.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9355 - type: CableApcExtension - components: - - pos: -52.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9356 - type: CableApcExtension - components: - - pos: -51.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9357 - type: CableApcExtension - components: - - pos: -50.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9358 - type: CableApcExtension - components: - - pos: -49.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9359 - type: CableApcExtension - components: - - pos: -48.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9360 - type: CableApcExtension - components: - - pos: -48.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9361 - type: CableApcExtension - components: - - pos: -48.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9362 - type: CableApcExtension - components: - - pos: -48.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9363 - type: CableApcExtension - components: - - pos: -48.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9364 - type: CableApcExtension - components: - - pos: -48.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9365 - type: CableApcExtension - components: - - pos: -48.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9366 - type: CableApcExtension - components: - - pos: -48.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9367 - type: CableApcExtension - components: - - pos: -48.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9368 - type: CableApcExtension - components: - - pos: -48.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9369 - type: CableApcExtension - components: - - pos: -48.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9370 - type: CableApcExtension - components: - - pos: -48.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9371 - type: CableApcExtension - components: - - pos: -48.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9372 - type: CableApcExtension - components: - - pos: -48.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9373 - type: CableApcExtension - components: - - pos: -48.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9374 - type: CableApcExtension - components: - - pos: -48.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9375 - type: CableApcExtension - components: - - pos: -47.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9376 - type: CableApcExtension - components: - - pos: -46.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9377 - type: CableApcExtension - components: - - pos: -45.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9378 - type: CableApcExtension - components: - - pos: -44.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9379 - type: CableApcExtension - components: - - pos: -43.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9380 - type: CableApcExtension - components: - - pos: -42.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9381 - type: CableApcExtension - components: - - pos: -41.5,13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9382 - type: CableApcExtension - components: - - pos: -44.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9383 - type: CableApcExtension - components: - - pos: -44.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9384 - type: CableApcExtension - components: - - pos: -44.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9385 - type: CableApcExtension - components: - - pos: -44.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9386 - type: CableApcExtension - components: - - pos: -44.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9387 - type: CableApcExtension - components: - - pos: -44.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9388 - type: CableApcExtension - components: - - pos: -44.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9389 - type: CableApcExtension - components: - - pos: -44.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9390 - type: CableApcExtension - components: - - pos: -44.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9391 - type: CableApcExtension - components: - - pos: -44.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9392 - type: CableApcExtension - components: - - pos: -44.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9393 - type: CableApcExtension - components: - - pos: -37.5,2.5 - parent: 0 - type: Transform -- uid: 9394 - type: CableApcExtension - components: - - pos: -36.5,2.5 - parent: 0 - type: Transform -- uid: 9395 - type: CableApcExtension - components: - - pos: -35.5,2.5 - parent: 0 - type: Transform -- uid: 9396 - type: CableApcExtension - components: - - pos: -34.5,2.5 - parent: 0 - type: Transform -- uid: 9397 - type: CableApcExtension - components: - - pos: -33.5,2.5 - parent: 0 - type: Transform -- uid: 9398 - type: CableApcExtension - components: - - pos: -32.5,2.5 - parent: 0 - type: Transform -- uid: 9399 - type: CableApcExtension - components: - - pos: -31.5,2.5 - parent: 0 - type: Transform -- uid: 9400 - type: CableApcExtension - components: - - pos: -30.5,2.5 - parent: 0 - type: Transform -- uid: 9401 - type: CableApcExtension - components: - - pos: -29.5,2.5 - parent: 0 - type: Transform -- uid: 9402 - type: CableApcExtension - components: - - pos: -33.5,3.5 - parent: 0 - type: Transform -- uid: 9403 - type: CableApcExtension - components: - - pos: -33.5,4.5 - parent: 0 - type: Transform -- uid: 9404 - type: CableApcExtension - components: - - pos: -29.5,3.5 - parent: 0 - type: Transform -- uid: 9405 - type: CableApcExtension - components: - - pos: -29.5,4.5 - parent: 0 - type: Transform -- uid: 9406 - type: CableApcExtension - components: - - pos: -39.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9407 - type: CableApcExtension - components: - - pos: -40.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9408 - type: CableApcExtension - components: - - pos: -41.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9409 - type: CableApcExtension - components: - - pos: -42.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9410 - type: CableApcExtension - components: - - pos: -43.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9411 - type: CableApcExtension - components: - - pos: -42.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9413 - type: Grille - components: - - pos: -48.5,-1.5 - parent: 0 - type: Transform -- uid: 9414 - type: Grille - components: - - pos: -48.5,-0.5 - parent: 0 - type: Transform -- uid: 9415 - type: Grille - components: - - pos: -48.5,0.5 - parent: 0 - type: Transform -- uid: 9416 - type: Grille - components: - - pos: -48.5,1.5 - parent: 0 - type: Transform -- uid: 9417 - type: Grille - components: - - pos: -48.5,2.5 - parent: 0 - type: Transform -- uid: 9418 - type: Grille - components: - - pos: -48.5,3.5 - parent: 0 - type: Transform -- uid: 9419 - type: Grille - components: - - pos: -48.5,4.5 - parent: 0 - type: Transform -- uid: 9420 - type: Grille - components: - - pos: -48.5,5.5 - parent: 0 - type: Transform -- uid: 9421 - type: Grille - components: - - pos: -48.5,6.5 - parent: 0 - type: Transform -- uid: 9422 - type: Grille - components: - - pos: -48.5,7.5 - parent: 0 - type: Transform -- uid: 9423 - type: Grille - components: - - pos: -48.5,8.5 - parent: 0 - type: Transform -- uid: 9424 - type: Grille - components: - - pos: -48.5,9.5 - parent: 0 - type: Transform -- uid: 9425 - type: Grille - components: - - pos: -48.5,10.5 - parent: 0 - type: Transform -- uid: 9426 - type: Grille - components: - - pos: -48.5,11.5 - parent: 0 - type: Transform -- uid: 9427 - type: Grille - components: - - pos: -48.5,12.5 - parent: 0 - type: Transform -- uid: 9428 - type: Grille - components: - - pos: -48.5,13.5 - parent: 0 - type: Transform -- uid: 9429 - type: Catwalk - components: - - pos: -49.5,0.5 - parent: 0 - type: Transform -- uid: 9430 - type: Catwalk - components: - - pos: -49.5,1.5 - parent: 0 - type: Transform -- uid: 9431 - type: Catwalk - components: - - pos: -49.5,2.5 - parent: 0 - type: Transform -- uid: 9432 - type: Catwalk - components: - - pos: -49.5,3.5 - parent: 0 - type: Transform -- uid: 9433 - type: Catwalk - components: - - pos: -49.5,4.5 - parent: 0 - type: Transform -- uid: 9434 - type: Catwalk - components: - - pos: -49.5,5.5 - parent: 0 - type: Transform -- uid: 9435 - type: Catwalk - components: - - pos: -49.5,6.5 - parent: 0 - type: Transform -- uid: 9436 - type: Catwalk - components: - - pos: -49.5,7.5 - parent: 0 - type: Transform -- uid: 9437 - type: Catwalk - components: - - pos: -49.5,8.5 - parent: 0 - type: Transform -- uid: 9438 - type: Catwalk - components: - - pos: -49.5,9.5 - parent: 0 - type: Transform -- uid: 9439 - type: Catwalk - components: - - pos: -49.5,10.5 - parent: 0 - type: Transform -- uid: 9440 - type: Catwalk - components: - - pos: -49.5,11.5 - parent: 0 - type: Transform -- uid: 9441 - type: Catwalk - components: - - pos: -49.5,12.5 - parent: 0 - type: Transform -- uid: 9442 - type: Grille - components: - - pos: -50.5,11.5 - parent: 0 - type: Transform -- uid: 9443 - type: Grille - components: - - pos: -50.5,9.5 - parent: 0 - type: Transform -- uid: 9444 - type: Grille - components: - - pos: -50.5,7.5 - parent: 0 - type: Transform -- uid: 9445 - type: Grille - components: - - pos: -50.5,5.5 - parent: 0 - type: Transform -- uid: 9446 - type: Grille - components: - - pos: -50.5,3.5 - parent: 0 - type: Transform -- uid: 9447 - type: Grille - components: - - pos: -50.5,1.5 - parent: 0 - type: Transform -- uid: 9448 - type: NitrogenCanister - components: - - pos: -53.5,1.5 - parent: 0 - type: Transform -- uid: 9449 - type: GasMinerNitrogen - components: - - pos: -52.5,1.5 - parent: 0 - type: Transform -- uid: 9450 - type: OxygenCanister - components: - - pos: -53.5,3.5 - parent: 0 - type: Transform -- uid: 9451 - type: GasMinerOxygen - components: - - pos: -52.5,3.5 - parent: 0 - type: Transform -- uid: 9452 - type: GasMinerCarbonDioxide - components: - - pos: -52.5,5.5 - parent: 0 - type: Transform -- uid: 9453 - type: CarbonDioxideCanister - components: - - pos: -53.5,5.5 - parent: 0 - type: Transform -- uid: 9454 - type: GasMinerWaterVapor - components: - - pos: -52.5,7.5 - parent: 0 - type: Transform -- uid: 9455 - type: WaterVaporCanister - components: - - pos: -53.5,7.5 - parent: 0 - type: Transform -- uid: 9456 - type: GasMinerPlasma - components: - - pos: -52.5,9.5 - parent: 0 - type: Transform -- uid: 9457 - type: PlasmaCanister - components: - - pos: -53.5,9.5 - parent: 0 - type: Transform -- uid: 9458 - type: CableApcExtension - components: - - pos: -50.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9459 - type: CableApcExtension - components: - - pos: -50.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9460 - type: CableApcExtension - components: - - pos: -50.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9461 - type: CableApcExtension - components: - - pos: -50.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9462 - type: CableApcExtension - components: - - pos: -50.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9463 - type: CableApcExtension - components: - - pos: -50.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9464 - type: CableApcExtension - components: - - pos: -50.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9465 - type: CableApcExtension - components: - - pos: -50.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9466 - type: CableApcExtension - components: - - pos: -50.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9467 - type: CableApcExtension - components: - - pos: -50.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9468 - type: CableApcExtension - components: - - pos: -50.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9469 - type: WallReinforced - components: - - pos: -46.5,18.5 - parent: 0 - type: Transform -- uid: 9470 - type: WallReinforced - components: - - pos: -45.5,18.5 - parent: 0 - type: Transform -- uid: 9471 - type: WallReinforced - components: - - pos: -43.5,18.5 - parent: 0 - type: Transform -- uid: 9472 - type: WallReinforced - components: - - pos: -42.5,18.5 - parent: 0 - type: Transform -- uid: 9473 - type: WallReinforced - components: - - pos: -42.5,15.5 - parent: 0 - type: Transform -- uid: 9474 - type: WallReinforced - components: - - pos: -46.5,15.5 - parent: 0 - type: Transform -- uid: 9475 - type: ReinforcedPlasmaWindow - components: - - pos: -43.5,15.5 - parent: 0 - type: Transform -- uid: 9476 - type: ReinforcedPlasmaWindow - components: - - pos: -44.5,15.5 - parent: 0 - type: Transform -- uid: 9477 - type: ReinforcedPlasmaWindow - components: - - pos: -45.5,15.5 - parent: 0 - type: Transform -- uid: 9478 - type: ReinforcedPlasmaWindow - components: - - pos: -46.5,16.5 - parent: 0 - type: Transform -- uid: 9479 - type: ReinforcedPlasmaWindow - components: - - pos: -46.5,17.5 - parent: 0 - type: Transform -- uid: 9480 - type: ReinforcedPlasmaWindow - components: - - pos: -42.5,16.5 - parent: 0 - type: Transform -- uid: 9481 - type: ReinforcedPlasmaWindow - components: - - pos: -42.5,17.5 - parent: 0 - type: Transform -- uid: 9482 - type: Grille - components: - - pos: -46.5,16.5 - parent: 0 - type: Transform -- uid: 9483 - type: Grille - components: - - pos: -46.5,17.5 - parent: 0 - type: Transform -- uid: 9484 - type: Grille - components: - - pos: -45.5,15.5 - parent: 0 - type: Transform -- uid: 9485 - type: Grille - components: - - pos: -44.5,15.5 - parent: 0 - type: Transform -- uid: 9486 - type: Grille - components: - - pos: -43.5,15.5 - parent: 0 - type: Transform -- uid: 9487 - type: Grille - components: - - pos: -42.5,16.5 - parent: 0 - type: Transform -- uid: 9488 - type: Grille - components: - - pos: -42.5,17.5 - parent: 0 - type: Transform -- uid: 9489 - type: GasPipeStraight - components: - - pos: -45.5,14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9490 - type: GasPipeStraight - components: - - pos: -45.5,15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9491 - type: GasPipeStraight - components: - - pos: -43.5,14.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9492 - type: GasPipeStraight - components: - - pos: -43.5,15.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9493 - type: GasPipeStraight - components: - - pos: -43.5,13.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9494 - type: GasPassiveVent - components: - - pos: -45.5,16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9495 - type: GasPassiveVent - components: - - pos: -43.5,16.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 9496 - type: BlastDoor - components: - - pos: -44.5,18.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 9504 - type: SignalReceiver -- uid: 9497 - type: SignalButton - components: - - pos: -45.5,18.5 - parent: 0 - type: Transform -- uid: 9498 - type: ReinforcedWindow - components: - - pos: -47.5,13.5 - parent: 0 - type: Transform -- uid: 9499 - type: ReinforcedWindow - components: - - pos: -46.5,13.5 - parent: 0 - type: Transform -- uid: 9500 - type: ReinforcedWindow - components: - - pos: -45.5,13.5 - parent: 0 - type: Transform -- uid: 9501 - type: ReinforcedWindow - components: - - pos: -44.5,13.5 - parent: 0 - type: Transform -- uid: 9502 - type: ReinforcedWindow - components: - - pos: -43.5,13.5 - parent: 0 - type: Transform -- uid: 9503 - type: ReinforcedWindow - components: - - pos: -42.5,13.5 - parent: 0 - type: Transform -- uid: 9504 - type: SignalButton - components: - - pos: -41.5,13.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 9496 - type: SignalTransmitter -- uid: 9505 - type: Grille - components: - - pos: -47.5,13.5 - parent: 0 - type: Transform -- uid: 9506 - type: Grille - components: - - pos: -46.5,13.5 - parent: 0 - type: Transform -- uid: 9507 - type: Grille - components: - - pos: -45.5,13.5 - parent: 0 - type: Transform -- uid: 9508 - type: Grille - components: - - pos: -44.5,13.5 - parent: 0 - type: Transform -- uid: 9509 - type: Grille - components: - - pos: -43.5,13.5 - parent: 0 - type: Transform -- uid: 9510 - type: Grille - components: - - pos: -42.5,13.5 - parent: 0 - type: Transform -- uid: 9511 - type: WallReinforced - components: - - pos: -41.5,13.5 - parent: 0 - type: Transform -- uid: 9512 - type: CableApcExtension - components: - - pos: -36.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9513 - type: GasPressurePump - components: - - pos: -43.5,12.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9514 - type: GasPipeStraight - components: - - pos: -43.5,11.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9515 - type: GasPipeStraight - components: - - pos: -43.5,10.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9516 - type: GasPipeStraight - components: - - pos: -43.5,9.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9517 - type: WallReinforced - components: - - pos: -47.5,-5.5 - parent: 0 - type: Transform -- uid: 9518 - type: WallReinforced - components: - - pos: -48.5,-5.5 - parent: 0 - type: Transform -- uid: 9519 - type: WallReinforced - components: - - pos: -49.5,-5.5 - parent: 0 - type: Transform -- uid: 9520 - type: WallReinforced - components: - - pos: -49.5,-3.5 - parent: 0 - type: Transform -- uid: 9521 - type: WallReinforced - components: - - pos: -50.5,-5.5 - parent: 0 - type: Transform -- uid: 9522 - type: WallReinforced - components: - - pos: -50.5,-3.5 - parent: 0 - type: Transform -- uid: 9525 - type: CableApcExtension - components: - - pos: -47.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9526 - type: CableApcExtension - components: - - pos: -47.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9527 - type: CableApcExtension - components: - - pos: -47.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9528 - type: CableApcExtension - components: - - pos: -47.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9529 - type: CableApcExtension - components: - - pos: -48.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9530 - type: CableApcExtension - components: - - pos: -49.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9531 - type: PoweredSmallLight - components: - - pos: -48.5,-4.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9532 - type: Catwalk - components: - - pos: -49.5,-4.5 - parent: 0 - type: Transform -- uid: 9533 - type: Catwalk - components: - - pos: -48.5,-4.5 - parent: 0 - type: Transform -- uid: 9534 - type: Catwalk - components: - - pos: -47.5,-4.5 - parent: 0 - type: Transform -- uid: 9535 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -43.5,8.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9536 - type: GasPipeTJunction - components: - - pos: -42.5,8.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9537 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -42.5,7.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9538 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -42.5,6.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9539 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -42.5,3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9540 - type: CableApcExtension - components: - - pos: -36.5,1.5 - parent: 0 - type: Transform -- uid: 9541 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,2.5 - parent: 0 - type: Transform - - color: '#03FDC3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9542 - type: CableApcExtension - components: - - pos: -36.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9543 - type: GasPressurePump - components: - - pos: -42.5,4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9544 - type: GasValve - components: - - rot: 3.141592653589793 rad - pos: -42.5,5.5 - parent: 0 - type: Transform - - open: False - type: GasValve - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9545 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -42.5,1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9546 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -42.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9547 - type: CableApcExtension - components: - - pos: -36.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9548 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -41.5,6.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9549 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -41.5,7.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9550 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -41.5,8.5 - parent: 0 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9551 - type: GasThermoMachineFreezer - components: - - pos: -41.5,12.5 - parent: 0 - type: Transform -- uid: 9552 - type: GasThermoMachineHeater - components: - - pos: -41.5,11.5 - parent: 0 - type: Transform -- uid: 9553 - type: StorageCanister - components: - - pos: -41.5,6.5 - parent: 0 - type: Transform -- uid: 9554 - type: StorageCanister - components: - - pos: -41.5,7.5 - parent: 0 - type: Transform -- uid: 9555 - type: StorageCanister - components: - - pos: -41.5,8.5 - parent: 0 - type: Transform -- uid: 9556 - type: Catwalk - components: - - pos: -45.5,14.5 - parent: 0 - type: Transform -- uid: 9557 - type: Catwalk - components: - - pos: -44.5,14.5 - parent: 0 - type: Transform -- uid: 9558 - type: Catwalk - components: - - pos: -43.5,14.5 - parent: 0 - type: Transform -- uid: 9559 - type: CableApcExtension - components: - - pos: -39.5,-0.5 - parent: 0 - type: Transform -- uid: 9560 - type: CableApcExtension - components: - - pos: -39.5,-1.5 - parent: 0 - type: Transform -- uid: 9561 - type: CableApcExtension - components: - - pos: -39.5,-2.5 - parent: 0 - type: Transform -- uid: 9562 - type: CableApcExtension - components: - - pos: -39.5,-3.5 - parent: 0 - type: Transform -- uid: 9563 - type: AirlockAtmosphericsLocked - components: - - pos: -39.5,-0.5 - parent: 0 - type: Transform -- uid: 9564 - type: AirlockEngineeringLocked - components: - - pos: -39.5,-4.5 - parent: 0 - type: Transform -- uid: 9565 - type: AirlockEngineeringGlassLocked - components: - - pos: -43.5,-4.5 - parent: 0 - type: Transform -- uid: 9566 - type: AirlockAtmosphericsLocked - components: - - pos: -35.5,2.5 - parent: 0 - type: Transform -- uid: 9567 - type: ClothingHeadFishCap - components: - - pos: 13.508905,-4.30057 - parent: 0 - type: Transform -- uid: 9568 - type: TableReinforced - components: - - pos: -30.5,4.5 - parent: 0 - type: Transform -- uid: 9569 - type: TableReinforced - components: - - pos: -30.5,5.5 - parent: 0 - type: Transform -- uid: 9570 - type: LockerAtmosphericsFilled - components: - - pos: -29.5,5.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9571 - type: LockerAtmosphericsFilled - components: - - pos: -28.5,5.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9572 - type: VendingMachineAtmosDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -28.5,2.5 - parent: 0 - type: Transform -- uid: 9573 - type: TableReinforced - components: - - pos: -28.5,1.5 - parent: 0 - type: Transform -- uid: 9574 - type: ComputerAlert - components: - - rot: -1.5707963267948966 rad - pos: -29.5,1.5 - parent: 0 - type: Transform -- uid: 9575 - type: ChairOfficeDark - components: - - pos: -30.5,1.5 - parent: 0 - type: Transform -- uid: 9576 - type: Lamp - components: - - pos: -28.432161,1.6425915 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 9577 - type: VendingMachineTankDispenserEngineering - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: -31.5,1.5 - parent: 0 - type: Transform -- uid: 9578 - type: DisposalUnit - components: - - pos: -34.5,1.5 - parent: 0 - type: Transform -- uid: 9579 - type: WallReinforced - components: - - pos: -42.5,-32.5 - parent: 0 - type: Transform -- uid: 9580 - type: WallReinforced - components: - - pos: -42.5,-31.5 - parent: 0 - type: Transform -- uid: 9581 - type: WallReinforced - components: - - pos: -42.5,-30.5 - parent: 0 - type: Transform -- uid: 9582 - type: WallReinforced - components: - - pos: -42.5,-29.5 - parent: 0 - type: Transform -- uid: 9583 - type: WallReinforced - components: - - pos: -41.5,-29.5 - parent: 0 - type: Transform -- uid: 9584 - type: WallReinforced - components: - - pos: -41.5,-26.5 - parent: 0 - type: Transform -- uid: 9585 - type: WallReinforced - components: - - pos: -41.5,-25.5 - parent: 0 - type: Transform -- uid: 9586 - type: WallReinforced - components: - - pos: -42.5,-25.5 - parent: 0 - type: Transform -- uid: 9587 - type: WallReinforced - components: - - pos: -44.5,-25.5 - parent: 0 - type: Transform -- uid: 9588 - type: ReinforcedWindow - components: - - pos: -43.5,-25.5 - parent: 0 - type: Transform -- uid: 9589 - type: WallReinforced - components: - - pos: -45.5,-25.5 - parent: 0 - type: Transform -- uid: 9590 - type: WallReinforced - components: - - pos: -46.5,-25.5 - parent: 0 - type: Transform -- uid: 9591 - type: WallReinforced - components: - - pos: -46.5,-24.5 - parent: 0 - type: Transform -- uid: 9592 - type: WallReinforced - components: - - pos: -48.5,-24.5 - parent: 0 - type: Transform -- uid: 9593 - type: ReinforcedWindow - components: - - pos: -47.5,-24.5 - parent: 0 - type: Transform -- uid: 9594 - type: WallReinforced - components: - - pos: -49.5,-24.5 - parent: 0 - type: Transform -- uid: 9595 - type: WallReinforced - components: - - pos: -49.5,-25.5 - parent: 0 - type: Transform -- uid: 9596 - type: WallReinforced - components: - - pos: -49.5,-26.5 - parent: 0 - type: Transform -- uid: 9597 - type: WallReinforced - components: - - pos: -50.5,-26.5 - parent: 0 - type: Transform -- uid: 9598 - type: WallReinforced - components: - - pos: -51.5,-26.5 - parent: 0 - type: Transform -- uid: 9599 - type: ReinforcedWindow - components: - - pos: -52.5,-26.5 - parent: 0 - type: Transform -- uid: 9600 - type: ReinforcedWindow - components: - - pos: -53.5,-26.5 - parent: 0 - type: Transform -- uid: 9601 - type: ReinforcedWindow - components: - - pos: -54.5,-26.5 - parent: 0 - type: Transform -- uid: 9602 - type: ReinforcedWindow - components: - - pos: -54.5,-25.5 - parent: 0 - type: Transform -- uid: 9603 - type: ReinforcedWindow - components: - - pos: -56.5,-23.5 - parent: 0 - type: Transform -- uid: 9604 - type: WallReinforced - components: - - pos: -54.5,-24.5 - parent: 0 - type: Transform -- uid: 9605 - type: WallReinforced - components: - - pos: -55.5,-24.5 - parent: 0 - type: Transform -- uid: 9606 - type: WallReinforced - components: - - pos: -56.5,-24.5 - parent: 0 - type: Transform -- uid: 9607 - type: WallReinforced - components: - - pos: -56.5,-21.5 - parent: 0 - type: Transform -- uid: 9608 - type: ReinforcedWindow - components: - - pos: -41.5,-28.5 - parent: 0 - type: Transform -- uid: 9609 - type: Grille - components: - - pos: -41.5,-28.5 - parent: 0 - type: Transform -- uid: 9610 - type: hydroponicsSoil - components: - - pos: -42.5,-28.5 - parent: 0 - type: Transform -- uid: 9611 - type: hydroponicsSoil - components: - - pos: -44.5,-28.5 - parent: 0 - type: Transform -- uid: 9612 - type: hydroponicsSoil - components: - - pos: -43.5,-29.5 - parent: 0 - type: Transform -- uid: 9613 - type: Girder - components: - - pos: -43.5,-30.5 - parent: 0 - type: Transform -- uid: 9614 - type: AirlockExternalGlass - components: - - pos: -41.5,-27.5 - parent: 0 - type: Transform -- uid: 9615 - type: Girder - components: - - pos: -44.5,-27.5 - parent: 0 - type: Transform -- uid: 9616 - type: SeedExtractor - components: - - pos: -42.5,-26.5 - parent: 0 - type: Transform -- uid: 9617 - type: Bucket - components: - - pos: -43.435364,-28.50291 - parent: 0 - type: Transform -- uid: 9618 - type: CornSeeds - components: - - pos: -42.51349,-28.44041 - parent: 0 - type: Transform -- uid: 9619 - type: HydroponicsToolSpade - components: - - pos: -44.466614,-28.47166 - parent: 0 - type: Transform -- uid: 9620 - type: FlyAmanitaSeeds - components: - - pos: -43.497864,-29.674786 - parent: 0 - type: Transform -- uid: 9621 - type: AsteroidRock - components: - - pos: -42.5,-34.5 - parent: 0 - type: Transform -- uid: 9622 - type: AsteroidRock - components: - - pos: -42.5,-33.5 - parent: 0 - type: Transform -- uid: 9623 - type: AsteroidRock - components: - - pos: -43.5,-33.5 - parent: 0 - type: Transform -- uid: 9624 - type: AsteroidRock - components: - - pos: -43.5,-32.5 - parent: 0 - type: Transform -- uid: 9625 - type: AsteroidRock - components: - - pos: -43.5,-31.5 - parent: 0 - type: Transform -- uid: 9626 - type: AsteroidRock - components: - - pos: -44.5,-31.5 - parent: 0 - type: Transform -- uid: 9627 - type: AsteroidRock - components: - - pos: -44.5,-30.5 - parent: 0 - type: Transform -- uid: 9628 - type: AsteroidRock - components: - - pos: -44.5,-29.5 - parent: 0 - type: Transform -- uid: 9629 - type: AsteroidRock - components: - - pos: -45.5,-29.5 - parent: 0 - type: Transform -- uid: 9630 - type: AsteroidRock - components: - - pos: -46.5,-29.5 - parent: 0 - type: Transform -- uid: 9631 - type: AsteroidRock - components: - - pos: -46.5,-30.5 - parent: 0 - type: Transform -- uid: 9632 - type: AsteroidRock - components: - - pos: -47.5,-29.5 - parent: 0 - type: Transform -- uid: 9633 - type: AsteroidRock - components: - - pos: -46.5,-28.5 - parent: 0 - type: Transform -- uid: 9634 - type: AsteroidRock - components: - - pos: -45.5,-28.5 - parent: 0 - type: Transform -- uid: 9635 - type: AsteroidRock - components: - - pos: -45.5,-27.5 - parent: 0 - type: Transform -- uid: 9636 - type: AsteroidRock - components: - - pos: -45.5,-26.5 - parent: 0 - type: Transform -- uid: 9637 - type: AsteroidRock - components: - - pos: -46.5,-26.5 - parent: 0 - type: Transform -- uid: 9638 - type: AsteroidRock - components: - - pos: -39.5,-38.5 - parent: 0 - type: Transform -- uid: 9639 - type: AsteroidRock - components: - - pos: -39.5,-39.5 - parent: 0 - type: Transform -- uid: 9640 - type: AsteroidRock - components: - - pos: -38.5,-39.5 - parent: 0 - type: Transform -- uid: 9641 - type: AsteroidRock - components: - - pos: -34.5,-39.5 - parent: 0 - type: Transform -- uid: 9642 - type: AsteroidRock - components: - - pos: -33.5,-39.5 - parent: 0 - type: Transform -- uid: 9643 - type: AsteroidRock - components: - - pos: -33.5,-40.5 - parent: 0 - type: Transform -- uid: 9644 - type: WallReinforced - components: - - pos: -12.5,-56.5 - parent: 0 - type: Transform -- uid: 9645 - type: WallReinforced - components: - - pos: -9.5,-56.5 - parent: 0 - type: Transform -- uid: 9646 - type: ReinforcedWindow - components: - - pos: -12.5,-58.5 - parent: 0 - type: Transform -- uid: 9647 - type: ReinforcedWindow - components: - - pos: -12.5,-57.5 - parent: 0 - type: Transform -- uid: 9648 - type: ReinforcedWindow - components: - - pos: -9.5,-57.5 - parent: 0 - type: Transform -- uid: 9649 - type: Grille - components: - - pos: -12.5,-58.5 - parent: 0 - type: Transform -- uid: 9650 - type: Grille - components: - - pos: -12.5,-57.5 - parent: 0 - type: Transform -- uid: 9651 - type: AirlockExternalGlass - components: - - pos: -11.5,-56.5 - parent: 0 - type: Transform -- uid: 9652 - type: ReinforcedWindow - components: - - pos: -10.5,-56.5 - parent: 0 - type: Transform -- uid: 9653 - type: Grille - components: - - pos: -9.5,-58.5 - parent: 0 - type: Transform -- uid: 9654 - type: Grille - components: - - pos: -9.5,-57.5 - parent: 0 - type: Transform -- uid: 9655 - type: ReinforcedWindow - components: - - pos: -9.5,-58.5 - parent: 0 - type: Transform -- uid: 9656 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -10.5,-59.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 9657 - type: ClothingEyesEyepatch - components: - - pos: 25.533524,-9.424093 - parent: 0 - type: Transform -- uid: 9658 - type: MagazineRifle - components: - - pos: -36.649223,19.629454 - parent: 0 - type: Transform -- uid: 9659 - type: PoweredSmallLight - components: - - pos: -31.5,-25.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9660 - type: AirlockGlass - components: - - pos: -28.5,-2.5 - parent: 0 - type: Transform -- uid: 9661 - type: AirlockGlass - components: - - pos: -28.5,-1.5 - parent: 0 - type: Transform -- uid: 9662 - type: AirlockEngineeringGlassLocked - components: - - pos: -33.5,-4.5 - parent: 0 - type: Transform -- uid: 9663 - type: AirlockEngineeringLocked - components: - - pos: -34.5,-8.5 - parent: 0 - type: Transform -- uid: 9664 - type: AirlockEngineeringLocked - components: - - pos: -37.5,-8.5 - parent: 0 - type: Transform -- uid: 9665 - type: StorageCanister - components: - - pos: -34.5,4.5 - parent: 0 - type: Transform -- uid: 9666 - type: StorageCanister - components: - - pos: -34.5,5.5 - parent: 0 - type: Transform -- uid: 9667 - type: NitrogenCanister - components: - - pos: -33.5,4.5 - parent: 0 - type: Transform -- uid: 9668 - type: NitrogenCanister - components: - - pos: -33.5,5.5 - parent: 0 - type: Transform -- uid: 9669 - type: OxygenCanister - components: - - pos: -32.5,4.5 - parent: 0 - type: Transform -- uid: 9670 - type: OxygenCanister - components: - - pos: -32.5,5.5 - parent: 0 - type: Transform -- uid: 9671 - type: AirCanister - components: - - pos: -31.5,4.5 - parent: 0 - type: Transform -- uid: 9672 - type: AirCanister - components: - - pos: -31.5,5.5 - parent: 0 - type: Transform -- uid: 9673 - type: SheetSteel - components: - - pos: -30.650465,5.5347195 - parent: 0 - type: Transform -- uid: 9674 - type: SheetSteel - components: - - pos: -30.650465,5.5347195 - parent: 0 - type: Transform -- uid: 9675 - type: PartRodMetal - components: - - pos: -30.275465,5.5801115 - parent: 0 - type: Transform -- uid: 9676 - type: PartRodMetal - components: - - pos: -30.275465,5.5801115 - parent: 0 - type: Transform -- uid: 9677 - type: InflatableWallStack - components: - - pos: -30.681715,4.7676115 - parent: 0 - type: Transform -- uid: 9678 - type: InflatableWallStack - components: - - pos: -30.681715,4.7676115 - parent: 0 - type: Transform -- uid: 9679 - type: InflatableDoorStack - components: - - pos: -30.41609,4.5644865 - parent: 0 - type: Transform -- uid: 9680 - type: InflatableDoorStack - components: - - pos: -30.41609,4.5644865 - parent: 0 - type: Transform -- uid: 9681 - type: LockerWeldingSuppliesFilled - components: - - pos: -28.5,3.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9682 - type: WeldingFuelTankFull - components: - - pos: -36.5,5.5 - parent: 0 - type: Transform -- uid: 9683 - type: PottedPlantRandom - components: - - pos: -36.5,4.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 9684 - type: PottedPlantRandom - components: - - pos: -29.5,-0.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 9685 - type: PottedPlantRandom - components: - - pos: -29.5,-3.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 9686 - type: ClosetRadiationSuitFilled - components: - - pos: -40.5,-3.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9687 - type: ClosetRadiationSuitFilled - components: - - pos: -40.5,-2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9688 - type: ClosetFireFilled - components: - - pos: -38.5,-2.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9689 - type: SignFire - components: - - pos: -40.5,-0.5 - parent: 0 - type: Transform -- uid: 9690 - type: ClosetFireFilled - components: - - pos: -38.5,-1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9691 - type: SignFire - components: - - pos: -38.5,-4.5 - parent: 0 - type: Transform -- uid: 9692 - type: SignRadiationMed - components: - - pos: -40.5,-4.5 - parent: 0 - type: Transform -- uid: 9693 - type: SignSecureMed - components: - - pos: -38.5,-0.5 - parent: 0 - type: Transform -- uid: 9694 - type: CableApcExtension - components: - - pos: -36.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9695 - type: CableApcExtension - components: - - pos: -36.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9696 - type: CableApcExtension - components: - - pos: -36.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9697 - type: CableApcExtension - components: - - pos: -36.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9698 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -38.5,-3.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9699 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9700 - type: Catwalk - components: - - pos: -36.5,-5.5 - parent: 0 - type: Transform -- uid: 9701 - type: Catwalk - components: - - pos: -36.5,-4.5 - parent: 0 - type: Transform -- uid: 9702 - type: Catwalk - components: - - pos: -36.5,-3.5 - parent: 0 - type: Transform -- uid: 9703 - type: Catwalk - components: - - pos: -36.5,-2.5 - parent: 0 - type: Transform -- uid: 9704 - type: Catwalk - components: - - pos: -36.5,-1.5 - parent: 0 - type: Transform -- uid: 9705 - type: Catwalk - components: - - pos: -36.5,-0.5 - parent: 0 - type: Transform -- uid: 9706 - type: Poweredlight - components: - - pos: -46.5,14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9707 - type: Poweredlight - components: - - pos: -42.5,14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9708 - type: CableApcExtension - components: - - pos: -42.5,14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9709 - type: CableApcExtension - components: - - pos: -42.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9710 - type: CableApcExtension - components: - - pos: -42.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9711 - type: CableApcExtension - components: - - pos: -42.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9712 - type: CableApcExtension - components: - - pos: -43.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9713 - type: CableApcExtension - components: - - pos: -44.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9714 - type: CableApcExtension - components: - - pos: -45.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9715 - type: CableApcExtension - components: - - pos: -46.5,15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9716 - type: CableApcExtension - components: - - pos: -46.5,16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9717 - type: CableApcExtension - components: - - pos: -46.5,17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9718 - type: CableApcExtension - components: - - pos: -46.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9719 - type: LockerEngineerFilled - components: - - pos: -33.5,-9.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9720 - type: LockerEngineerFilled - components: - - pos: -32.5,-9.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9721 - type: LockerEngineerFilled - components: - - pos: -31.5,-9.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9722 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,-5.5 - parent: 0 - type: Transform -- uid: 9723 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: -32.5,-5.5 - parent: 0 - type: Transform -- uid: 9724 - type: TableReinforced - components: - - pos: -34.5,-5.5 - parent: 0 - type: Transform -- uid: 9725 - type: SheetSteel - components: - - pos: -34.591507,-5.478845 - parent: 0 - type: Transform -- uid: 9726 - type: SheetGlass - components: - - pos: -34.372757,-5.49447 - parent: 0 - type: Transform -- uid: 9727 - type: SheetGlass - components: - - pos: -34.372757,-5.49447 - parent: 0 - type: Transform -- uid: 9728 - type: SheetSteel - components: - - pos: -34.607132,-5.478845 - parent: 0 - type: Transform -- uid: 9729 - type: TableReinforced - components: - - pos: -31.5,-7.5 - parent: 0 - type: Transform -- uid: 9730 - type: TableReinforced - components: - - pos: -30.5,-7.5 - parent: 0 - type: Transform -- uid: 9731 - type: TableReinforced - components: - - pos: -32.5,-7.5 - parent: 0 - type: Transform -- uid: 9732 - type: CableHV - components: - - pos: -42.5,-6.5 - parent: 0 - type: Transform -- uid: 9733 - type: CableHV - components: - - pos: -42.5,-7.5 - parent: 0 - type: Transform -- uid: 9734 - type: CableHV - components: - - pos: -42.5,-8.5 - parent: 0 - type: Transform -- uid: 9735 - type: CableHV - components: - - pos: -41.5,-8.5 - parent: 0 - type: Transform -- uid: 9736 - type: CableHV - components: - - pos: -40.5,-8.5 - parent: 0 - type: Transform -- uid: 9737 - type: CableHV - components: - - pos: -39.5,-8.5 - parent: 0 - type: Transform -- uid: 9738 - type: CableHV - components: - - pos: -38.5,-8.5 - parent: 0 - type: Transform -- uid: 9739 - type: CableHV - components: - - pos: -37.5,-8.5 - parent: 0 - type: Transform -- uid: 9740 - type: CableHV - components: - - pos: -36.5,-8.5 - parent: 0 - type: Transform -- uid: 9741 - type: CableHV - components: - - pos: -35.5,-8.5 - parent: 0 - type: Transform -- uid: 9742 - type: CableHV - components: - - pos: -34.5,-8.5 - parent: 0 - type: Transform -- uid: 9743 - type: CableHV - components: - - pos: -33.5,-8.5 - parent: 0 - type: Transform -- uid: 9744 - type: CableHV - components: - - pos: -32.5,-8.5 - parent: 0 - type: Transform -- uid: 9745 - type: CableHV - components: - - pos: -31.5,-8.5 - parent: 0 - type: Transform -- uid: 9746 - type: CableHV - components: - - pos: -30.5,-8.5 - parent: 0 - type: Transform -- uid: 9747 - type: CableHV - components: - - pos: -29.5,-8.5 - parent: 0 - type: Transform -- uid: 9748 - type: CableHV - components: - - pos: -29.5,-7.5 - parent: 0 - type: Transform -- uid: 9749 - type: CableHV - components: - - pos: -29.5,-6.5 - parent: 0 - type: Transform -- uid: 9750 - type: CableHV - components: - - pos: -29.5,-5.5 - parent: 0 - type: Transform -- uid: 9751 - type: CableHV - components: - - pos: -38.5,7.5 - parent: 0 - type: Transform -- uid: 9752 - type: CableHV - components: - - pos: -39.5,7.5 - parent: 0 - type: Transform -- uid: 9753 - type: CableHV - components: - - pos: -39.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9754 - type: CableHV - components: - - pos: -38.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9755 - type: CableHV - components: - - pos: -39.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9756 - type: CableHV - components: - - pos: -37.5,5.5 - parent: 0 - type: Transform -- uid: 9757 - type: CableHV - components: - - pos: -36.5,5.5 - parent: 0 - type: Transform -- uid: 9758 - type: CableHV - components: - - pos: -36.5,4.5 - parent: 0 - type: Transform -- uid: 9759 - type: CableHV - components: - - pos: -36.5,3.5 - parent: 0 - type: Transform -- uid: 9760 - type: CableHV - components: - - pos: -36.5,2.5 - parent: 0 - type: Transform -- uid: 9761 - type: CableHV - components: - - pos: -36.5,1.5 - parent: 0 - type: Transform -- uid: 9762 - type: CableHV - components: - - pos: -36.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9763 - type: CableHV - components: - - pos: -36.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9764 - type: CableHV - components: - - pos: -36.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9765 - type: CableHV - components: - - pos: -36.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9766 - type: CableHV - components: - - pos: -36.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9767 - type: CableHV - components: - - pos: -36.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9768 - type: CableHV - components: - - pos: -36.5,-5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9769 - type: CableHV - components: - - pos: -36.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9770 - type: CableHV - components: - - pos: -36.5,-7.5 - parent: 0 - type: Transform -- uid: 9771 - type: CableHV - components: - - pos: -33.5,-7.5 - parent: 0 - type: Transform -- uid: 9772 - type: CableHV - components: - - pos: -33.5,-6.5 - parent: 0 - type: Transform -- uid: 9773 - type: CableHV - components: - - pos: -33.5,-5.5 - parent: 0 - type: Transform -- uid: 9774 - type: CableHV - components: - - pos: -33.5,-4.5 - parent: 0 - type: Transform -- uid: 9775 - type: CableHV - components: - - pos: -33.5,-3.5 - parent: 0 - type: Transform -- uid: 9776 - type: CableHV - components: - - pos: -33.5,-2.5 - parent: 0 - type: Transform -- uid: 9777 - type: CableHV - components: - - pos: -32.5,-2.5 - parent: 0 - type: Transform -- uid: 9778 - type: CableHV - components: - - pos: -31.5,-2.5 - parent: 0 - type: Transform -- uid: 9779 - type: CableHV - components: - - pos: -30.5,-2.5 - parent: 0 - type: Transform -- uid: 9780 - type: CableHV - components: - - pos: -29.5,-2.5 - parent: 0 - type: Transform -- uid: 9781 - type: CableHV - components: - - pos: -28.5,-2.5 - parent: 0 - type: Transform -- uid: 9782 - type: CableHV - components: - - pos: -27.5,-2.5 - parent: 0 - type: Transform -- uid: 9783 - type: CableHV - components: - - pos: -26.5,-2.5 - parent: 0 - type: Transform -- uid: 9784 - type: CableHV - components: - - pos: -25.5,-2.5 - parent: 0 - type: Transform -- uid: 9785 - type: CableHV - components: - - pos: -25.5,-3.5 - parent: 0 - type: Transform -- uid: 9786 - type: CableHV - components: - - pos: -25.5,-4.5 - parent: 0 - type: Transform -- uid: 9787 - type: CableHV - components: - - pos: -24.5,-4.5 - parent: 0 - type: Transform -- uid: 9788 - type: CableHV - components: - - pos: -23.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9789 - type: CableHV - components: - - pos: -22.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9790 - type: CableHV - components: - - pos: -21.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9791 - type: CableHV - components: - - pos: -20.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9792 - type: CableHV - components: - - pos: -20.5,-3.5 - parent: 0 - type: Transform -- uid: 9793 - type: CableHV - components: - - pos: -19.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9794 - type: CableHV - components: - - pos: -18.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9795 - type: CableHV - components: - - pos: -17.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9796 - type: CableHV - components: - - pos: -16.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9797 - type: CableHV - components: - - pos: -15.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9798 - type: CableHV - components: - - pos: -14.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9799 - type: CableHV - components: - - pos: -13.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9800 - type: CableHV - components: - - pos: -12.5,-3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9801 - type: CableHV - components: - - pos: -12.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9802 - type: CableHV - components: - - pos: -12.5,-1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9803 - type: CableHV - components: - - pos: -12.5,-0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9804 - type: CableHV - components: - - pos: -12.5,0.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9805 - type: CableHV - components: - - pos: -12.5,1.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9806 - type: CableHV - components: - - pos: -12.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9807 - type: CableHV - components: - - pos: -12.5,3.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9808 - type: CableHV - components: - - pos: -12.5,4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9809 - type: CableHV - components: - - pos: -12.5,5.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9810 - type: CableHV - components: - - pos: -12.5,6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9811 - type: CableHV - components: - - pos: -12.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9812 - type: CableHV - components: - - pos: -12.5,8.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9813 - type: CableHV - components: - - pos: -12.5,9.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9814 - type: CableHV - components: - - pos: -12.5,10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9815 - type: CableHV - components: - - pos: -12.5,11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9816 - type: CableHV - components: - - pos: -12.5,12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9817 - type: Sink - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-1.5 - parent: 0 - type: Transform -- uid: 9818 - type: WaterTankFull - components: - - pos: -38.5,-3.5 - parent: 0 - type: Transform -- uid: 9819 - type: Poweredlight - components: - - pos: -40.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9820 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9821 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -41.5,0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9822 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -28.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9823 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -34.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9824 - type: WallReinforced - components: - - pos: -37.5,-16.5 - parent: 0 - type: Transform -- uid: 9825 - type: WallReinforced - components: - - pos: -37.5,-17.5 - parent: 0 - type: Transform -- uid: 9826 - type: WallReinforced - components: - - pos: -37.5,-18.5 - parent: 0 - type: Transform -- uid: 9827 - type: WallReinforced - components: - - pos: -37.5,-19.5 - parent: 0 - type: Transform -- uid: 9828 - type: WallReinforced - components: - - pos: -38.5,-19.5 - parent: 0 - type: Transform -- uid: 9829 - type: WallReinforced - components: - - pos: -43.5,-15.5 - parent: 0 - type: Transform -- uid: 9830 - type: AirlockMaintEngiLocked - components: - - pos: -44.5,-15.5 - parent: 0 - type: Transform -- uid: 9831 - type: WallReinforced - components: - - pos: -45.5,-15.5 - parent: 0 - type: Transform -- uid: 9832 - type: Grille - components: - - pos: -47.5,-7.5 - parent: 0 - type: Transform -- uid: 9833 - type: SpawnPointChiefEngineer - components: - - pos: -50.5,-8.5 - parent: 0 - type: Transform -- uid: 9834 - type: PottedPlantRandom - components: - - pos: -48.5,-9.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 9835 - type: Grille - components: - - pos: -47.5,-8.5 - parent: 0 - type: Transform -- uid: 9836 - type: WallReinforced - components: - - pos: -46.5,-10.5 - parent: 0 - type: Transform -- uid: 9837 - type: WallReinforced - components: - - pos: -51.5,-5.5 - parent: 0 - type: Transform -- uid: 9838 - type: ReinforcedWindow - components: - - pos: -53.5,-7.5 - parent: 0 - type: Transform -- uid: 9839 - type: ReinforcedWindow - components: - - pos: -52.5,-7.5 - parent: 0 - type: Transform -- uid: 9840 - type: WallReinforced - components: - - pos: -46.5,-14.5 - parent: 0 - type: Transform -- uid: 9841 - type: WallReinforced - components: - - pos: -46.5,-15.5 - parent: 0 - type: Transform -- uid: 9842 - type: WallReinforced - components: - - pos: -55.5,-5.5 - parent: 0 - type: Transform -- uid: 9843 - type: ReinforcedWindow - components: - - pos: -54.5,-7.5 - parent: 0 - type: Transform -- uid: 9844 - type: WallReinforced - components: - - pos: -55.5,-6.5 - parent: 0 - type: Transform -- uid: 9845 - type: WallReinforced - components: - - pos: -55.5,-7.5 - parent: 0 - type: Transform -- uid: 9846 - type: WallReinforced - components: - - pos: -55.5,-14.5 - parent: 0 - type: Transform -- uid: 9847 - type: WallReinforced - components: - - pos: -55.5,-13.5 - parent: 0 - type: Transform -- uid: 9848 - type: WallReinforced - components: - - pos: -55.5,-12.5 - parent: 0 - type: Transform -- uid: 9849 - type: WallReinforced - components: - - pos: -55.5,-11.5 - parent: 0 - type: Transform -- uid: 9850 - type: WallReinforced - components: - - pos: -55.5,-10.5 - parent: 0 - type: Transform -- uid: 9851 - type: WallReinforced - components: - - pos: -55.5,-9.5 - parent: 0 - type: Transform -- uid: 9852 - type: WallReinforced - components: - - pos: -55.5,-8.5 - parent: 0 - type: Transform -- uid: 9853 - type: WallReinforced - components: - - pos: -54.5,-14.5 - parent: 0 - type: Transform -- uid: 9854 - type: WallReinforced - components: - - pos: -53.5,-14.5 - parent: 0 - type: Transform -- uid: 9855 - type: WallReinforced - components: - - pos: -52.5,-14.5 - parent: 0 - type: Transform -- uid: 9856 - type: WallReinforced - components: - - pos: -51.5,-14.5 - parent: 0 - type: Transform -- uid: 9857 - type: WallReinforced - components: - - pos: -50.5,-14.5 - parent: 0 - type: Transform -- uid: 9858 - type: WallReinforced - components: - - pos: -49.5,-14.5 - parent: 0 - type: Transform -- uid: 9859 - type: WallReinforced - components: - - pos: -48.5,-14.5 - parent: 0 - type: Transform -- uid: 9860 - type: WallReinforced - components: - - pos: -47.5,-14.5 - parent: 0 - type: Transform -- uid: 9861 - type: Grille - components: - - pos: -46.5,-11.5 - parent: 0 - type: Transform -- uid: 9862 - type: Grille - components: - - pos: -46.5,-13.5 - parent: 0 - type: Transform -- uid: 9863 - type: ReinforcedPlasmaWindow - components: - - pos: -46.5,-13.5 - parent: 0 - type: Transform -- uid: 9864 - type: WallReinforced - components: - - pos: -51.5,-10.5 - parent: 0 - type: Transform -- uid: 9865 - type: WallReinforced - components: - - pos: -51.5,-9.5 - parent: 0 - type: Transform -- uid: 9866 - type: WallReinforced - components: - - pos: -51.5,-8.5 - parent: 0 - type: Transform -- uid: 9867 - type: WallReinforced - components: - - pos: -51.5,-7.5 - parent: 0 - type: Transform -- uid: 9868 - type: WallReinforced - components: - - pos: -51.5,-6.5 - parent: 0 - type: Transform -- uid: 9869 - type: ReinforcedWindow - components: - - pos: -52.5,-5.5 - parent: 0 - type: Transform -- uid: 9870 - type: ReinforcedWindow - components: - - pos: -54.5,-5.5 - parent: 0 - type: Transform -- uid: 9871 - type: Grille - components: - - pos: -51.5,-11.5 - parent: 0 - type: Transform -- uid: 9872 - type: ReinforcedWindow - components: - - pos: -53.5,-5.5 - parent: 0 - type: Transform -- uid: 9873 - type: WallReinforced - components: - - pos: -47.5,-9.5 - parent: 0 - type: Transform -- uid: 9874 - type: ReinforcedWindow - components: - - pos: -48.5,-10.5 - parent: 0 - type: Transform -- uid: 9875 - type: ReinforcedPlasmaWindow - components: - - pos: -46.5,-11.5 - parent: 0 - type: Transform -- uid: 9876 - type: WallReinforced - components: - - pos: -50.5,-10.5 - parent: 0 - type: Transform -- uid: 9877 - type: Grille - components: - - pos: -51.5,-13.5 - parent: 0 - type: Transform -- uid: 9878 - type: ChairOfficeDark - components: - - pos: -49.5,-7.5 - parent: 0 - type: Transform -- uid: 9879 - type: LockerChiefEngineerFilled - components: - - pos: -50.5,-6.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 9880 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-13.5 - parent: 0 - type: Transform -- uid: 9881 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-13.5 - parent: 0 - type: Transform -- uid: 9882 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-11.5 - parent: 0 - type: Transform -- uid: 9883 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-11.5 - parent: 0 - type: Transform -- uid: 9884 - type: WindowReinforcedDirectional - components: - - pos: -51.5,-11.5 - parent: 0 - type: Transform -- uid: 9885 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -51.5,-13.5 - parent: 0 - type: Transform -- uid: 9886 - type: HighSecCommandLocked - components: - - pos: -51.5,-12.5 - parent: 0 - type: Transform -- uid: 9887 - type: AirlockChiefEngineerGlassLocked - components: - - pos: -49.5,-10.5 - parent: 0 - type: Transform -- uid: 9888 - type: AirlockEngineeringLocked - components: - - pos: -46.5,-12.5 - parent: 0 - type: Transform -- uid: 9889 - type: GravityGenerator - components: - - pos: -53.5,-9.5 - parent: 0 - type: Transform -- uid: 9890 - type: WallReinforced - components: - - pos: -43.5,-9.5 - parent: 0 - type: Transform -- uid: 9891 - type: WallReinforced - components: - - pos: -43.5,-10.5 - parent: 0 - type: Transform -- uid: 9892 - type: AirlockEngineeringGlassLocked - components: - - pos: -43.5,-12.5 - parent: 0 - type: Transform -- uid: 9893 - type: ReinforcedWindow - components: - - pos: -43.5,-13.5 - parent: 0 - type: Transform -- uid: 9894 - type: AirlockEngineeringGlassLocked - components: - - pos: -40.5,-9.5 - parent: 0 - type: Transform -- uid: 9895 - type: WallReinforced - components: - - pos: -43.5,-14.5 - parent: 0 - type: Transform -- uid: 9896 - type: WallReinforced - components: - - pos: -38.5,-9.5 - parent: 0 - type: Transform -- uid: 9897 - type: ReinforcedWindow - components: - - pos: -43.5,-11.5 - parent: 0 - type: Transform -- uid: 9898 - type: ReinforcedWindow - components: - - pos: -39.5,-9.5 - parent: 0 - type: Transform -- uid: 9899 - type: ReinforcedWindow - components: - - pos: -41.5,-9.5 - parent: 0 - type: Transform -- uid: 9900 - type: WallReinforced - components: - - pos: -42.5,-9.5 - parent: 0 - type: Transform -- uid: 9901 - type: WallReinforced - components: - - pos: -39.5,-19.5 - parent: 0 - type: Transform -- uid: 9902 - type: WallReinforced - components: - - pos: -40.5,-19.5 - parent: 0 - type: Transform -- uid: 9903 - type: WallReinforced - components: - - pos: -41.5,-19.5 - parent: 0 - type: Transform -- uid: 9904 - type: WallReinforced - components: - - pos: -42.5,-19.5 - parent: 0 - type: Transform -- uid: 9905 - type: WallReinforced - components: - - pos: -43.5,-19.5 - parent: 0 - type: Transform -- uid: 9906 - type: WallReinforced - components: - - pos: -43.5,-18.5 - parent: 0 - type: Transform -- uid: 9907 - type: WallReinforced - components: - - pos: -43.5,-17.5 - parent: 0 - type: Transform -- uid: 9908 - type: WallReinforced - components: - - pos: -43.5,-16.5 - parent: 0 - type: Transform -- uid: 9909 - type: Grille - components: - - pos: -43.5,-13.5 - parent: 0 - type: Transform -- uid: 9910 - type: Grille - components: - - pos: -43.5,-11.5 - parent: 0 - type: Transform -- uid: 9911 - type: Grille - components: - - pos: -41.5,-9.5 - parent: 0 - type: Transform -- uid: 9912 - type: Grille - components: - - pos: -39.5,-9.5 - parent: 0 - type: Transform -- uid: 9913 - type: CableHV - components: - - pos: -44.5,-6.5 - parent: 0 - type: Transform -- uid: 9914 - type: CableHV - components: - - pos: -44.5,-7.5 - parent: 0 - type: Transform -- uid: 9915 - type: CableHV - components: - - pos: -44.5,-8.5 - parent: 0 - type: Transform -- uid: 9916 - type: CableHV - components: - - pos: -44.5,-9.5 - parent: 0 - type: Transform -- uid: 9917 - type: CableHV - components: - - pos: -44.5,-10.5 - parent: 0 - type: Transform -- uid: 9918 - type: CableHV - components: - - pos: -44.5,-11.5 - parent: 0 - type: Transform -- uid: 9919 - type: CableHV - components: - - pos: -44.5,-12.5 - parent: 0 - type: Transform -- uid: 9920 - type: CableHV - components: - - pos: -43.5,-12.5 - parent: 0 - type: Transform -- uid: 9921 - type: CableHV - components: - - pos: -42.5,-12.5 - parent: 0 - type: Transform -- uid: 9922 - type: CableHV - components: - - pos: -41.5,-12.5 - parent: 0 - type: Transform -- uid: 9923 - type: CableHV - components: - - pos: -40.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9924 - type: CableHV - components: - - pos: -40.5,-10.5 - parent: 0 - type: Transform -- uid: 9925 - type: CableHV - components: - - pos: -40.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9926 - type: CableHV - components: - - pos: -40.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9927 - type: CableHV - components: - - pos: -40.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9928 - type: CableHV - components: - - pos: -40.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9929 - type: CableHV - components: - - pos: -40.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9930 - type: CableHV - components: - - pos: -40.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9931 - type: CableHV - components: - - pos: -40.5,-18.5 - parent: 0 - type: Transform -- uid: 9932 - type: Catwalk - components: - - pos: -40.5,-17.5 - parent: 0 - type: Transform -- uid: 9933 - type: Catwalk - components: - - pos: -40.5,-16.5 - parent: 0 - type: Transform -- uid: 9934 - type: Catwalk - components: - - pos: -40.5,-15.5 - parent: 0 - type: Transform -- uid: 9935 - type: Catwalk - components: - - pos: -40.5,-14.5 - parent: 0 - type: Transform -- uid: 9936 - type: Catwalk - components: - - pos: -40.5,-13.5 - parent: 0 - type: Transform -- uid: 9937 - type: Catwalk - components: - - pos: -40.5,-12.5 - parent: 0 - type: Transform -- uid: 9938 - type: Catwalk - components: - - pos: -40.5,-11.5 - parent: 0 - type: Transform -- uid: 9939 - type: WallReinforced - components: - - pos: -55.5,-21.5 - parent: 0 - type: Transform -- uid: 9940 - type: WallReinforced - components: - - pos: -54.5,-21.5 - parent: 0 - type: Transform -- uid: 9941 - type: WallReinforced - components: - - pos: -53.5,-21.5 - parent: 0 - type: Transform -- uid: 9942 - type: WallReinforced - components: - - pos: -52.5,-21.5 - parent: 0 - type: Transform -- uid: 9943 - type: WallReinforced - components: - - pos: -51.5,-21.5 - parent: 0 - type: Transform -- uid: 9944 - type: WallReinforced - components: - - pos: -50.5,-21.5 - parent: 0 - type: Transform -- uid: 9945 - type: WallReinforced - components: - - pos: -49.5,-21.5 - parent: 0 - type: Transform -- uid: 9946 - type: WallReinforced - components: - - pos: -48.5,-21.5 - parent: 0 - type: Transform -- uid: 9947 - type: WallReinforced - components: - - pos: -47.5,-21.5 - parent: 0 - type: Transform -- uid: 9948 - type: WallReinforced - components: - - pos: -46.5,-21.5 - parent: 0 - type: Transform -- uid: 9949 - type: WallReinforced - components: - - pos: -46.5,-16.5 - parent: 0 - type: Transform -- uid: 9950 - type: WallReinforced - components: - - pos: -46.5,-17.5 - parent: 0 - type: Transform -- uid: 9951 - type: WallReinforced - components: - - pos: -46.5,-18.5 - parent: 0 - type: Transform -- uid: 9952 - type: WallReinforced - components: - - pos: -47.5,-18.5 - parent: 0 - type: Transform -- uid: 9953 - type: WallReinforced - components: - - pos: -48.5,-18.5 - parent: 0 - type: Transform -- uid: 9954 - type: WallReinforced - components: - - pos: -49.5,-18.5 - parent: 0 - type: Transform -- uid: 9955 - type: WallReinforced - components: - - pos: -49.5,-19.5 - parent: 0 - type: Transform -- uid: 9956 - type: WallReinforced - components: - - pos: -49.5,-20.5 - parent: 0 - type: Transform -- uid: 9957 - type: WallReinforced - components: - - pos: -46.5,-19.5 - parent: 0 - type: Transform -- uid: 9958 - type: AirlockEngineeringLocked - components: - - pos: -46.5,-20.5 - parent: 0 - type: Transform -- uid: 9959 - type: SubstationBasic - components: - - pos: -48.5,-19.5 - parent: 0 - type: Transform -- uid: 9960 - type: CableHV - components: - - pos: -48.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9961 - type: CableHV - components: - - pos: -48.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9962 - type: CableHV - components: - - pos: -47.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9963 - type: CableHV - components: - - pos: -46.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9964 - type: CableHV - components: - - pos: -45.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9965 - type: CableHV - components: - - pos: -44.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9966 - type: CableHV - components: - - pos: -43.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9967 - type: CableHV - components: - - pos: -42.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9968 - type: WallSolid - components: - - pos: -39.5,-29.5 - parent: 0 - type: Transform -- uid: 9969 - type: WallSolid - components: - - pos: -39.5,-30.5 - parent: 0 - type: Transform -- uid: 9970 - type: WallSolid - components: - - pos: -38.5,-30.5 - parent: 0 - type: Transform -- uid: 9971 - type: WallSolid - components: - - pos: -37.5,-30.5 - parent: 0 - type: Transform -- uid: 9972 - type: WallSolid - components: - - pos: -36.5,-30.5 - parent: 0 - type: Transform -- uid: 9973 - type: WallSolid - components: - - pos: -35.5,-30.5 - parent: 0 - type: Transform -- uid: 9974 - type: CableHV - components: - - pos: -36.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9975 - type: CableHV - components: - - pos: -36.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9976 - type: CableHV - components: - - pos: -36.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9977 - type: CableHV - components: - - pos: -36.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9978 - type: CableHV - components: - - pos: -36.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9979 - type: CableHV - components: - - pos: -36.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9980 - type: CableHV - components: - - pos: -36.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9981 - type: CableHV - components: - - pos: -36.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9982 - type: CableHV - components: - - pos: -36.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9983 - type: CableHV - components: - - pos: -36.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9984 - type: CableHV - components: - - pos: -36.5,-9.5 - parent: 0 - type: Transform -- uid: 9985 - type: WallSolid - components: - - pos: -39.5,-22.5 - parent: 0 - type: Transform -- uid: 9986 - type: WallSolid - components: - - pos: -39.5,-21.5 - parent: 0 - type: Transform -- uid: 9987 - type: WallSolid - components: - - pos: -35.5,-25.5 - parent: 0 - type: Transform -- uid: 9988 - type: WallSolid - components: - - pos: -35.5,-24.5 - parent: 0 - type: Transform -- uid: 9989 - type: WallSolid - components: - - pos: -35.5,-23.5 - parent: 0 - type: Transform -- uid: 9990 - type: WallSolid - components: - - pos: -35.5,-22.5 - parent: 0 - type: Transform -- uid: 9991 - type: Girder - components: - - pos: -35.5,-21.5 - parent: 0 - type: Transform -- uid: 9992 - type: WallSolid - components: - - pos: -36.5,-21.5 - parent: 0 - type: Transform -- uid: 9993 - type: WallSolid - components: - - pos: -37.5,-21.5 - parent: 0 - type: Transform -- uid: 9994 - type: WallSolid - components: - - pos: -38.5,-21.5 - parent: 0 - type: Transform -- uid: 9995 - type: CableHV - components: - - pos: -41.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9996 - type: CableHV - components: - - pos: -40.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9997 - type: CableHV - components: - - pos: -39.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9998 - type: CableHV - components: - - pos: -38.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9999 - type: CableHV - components: - - pos: -37.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10000 - type: CableHV - components: - - pos: -36.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10001 - type: CableMV - components: - - pos: -34.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10002 - type: CableMV - components: - - pos: -35.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10003 - type: CableMV - components: - - pos: -36.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10004 - type: CableMV - components: - - pos: -37.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10005 - type: CableMV - components: - - pos: -38.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10006 - type: CableMV - components: - - pos: -39.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10007 - type: CableMV - components: - - pos: -40.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10008 - type: CableMV - components: - - pos: -41.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10009 - type: CableMV - components: - - pos: -42.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10010 - type: CableMV - components: - - pos: -43.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10011 - type: CableMV - components: - - pos: -44.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10012 - type: CableMV - components: - - pos: -45.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10013 - type: CableMV - components: - - pos: -46.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10014 - type: CableMV - components: - - pos: -47.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10015 - type: CableMV - components: - - pos: -48.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10016 - type: CableMV - components: - - pos: -48.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10017 - type: CableMV - components: - - pos: -36.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10018 - type: CableMV - components: - - pos: -36.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10019 - type: CableMV - components: - - pos: -36.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10020 - type: CableMV - components: - - pos: -36.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10021 - type: APCBasic - components: - - pos: -41.5,-4.5 - parent: 0 - type: Transform -- uid: 10022 - type: CableMV - components: - - pos: -44.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10023 - type: CableMV - components: - - pos: -44.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10024 - type: CableMV - components: - - pos: -44.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10025 - type: CableMV - components: - - pos: -44.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10026 - type: CableMV - components: - - pos: -44.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10027 - type: CableMV - components: - - pos: -44.5,-14.5 - parent: 0 - type: Transform -- uid: 10028 - type: CableMV - components: - - pos: -44.5,-13.5 - parent: 0 - type: Transform -- uid: 10029 - type: CableMV - components: - - pos: -44.5,-12.5 - parent: 0 - type: Transform -- uid: 10030 - type: CableMV - components: - - pos: -44.5,-11.5 - parent: 0 - type: Transform -- uid: 10031 - type: CableMV - components: - - pos: -44.5,-10.5 - parent: 0 - type: Transform -- uid: 10032 - type: CableMV - components: - - pos: -44.5,-9.5 - parent: 0 - type: Transform -- uid: 10033 - type: CableMV - components: - - pos: -44.5,-8.5 - parent: 0 - type: Transform -- uid: 10034 - type: CableMV - components: - - pos: -44.5,-7.5 - parent: 0 - type: Transform -- uid: 10035 - type: CableMV - components: - - pos: -44.5,-6.5 - parent: 0 - type: Transform -- uid: 10036 - type: CableMV - components: - - pos: -43.5,-6.5 - parent: 0 - type: Transform -- uid: 10037 - type: CableMV - components: - - pos: -42.5,-6.5 - parent: 0 - type: Transform -- uid: 10038 - type: CableMV - components: - - pos: -41.5,-6.5 - parent: 0 - type: Transform -- uid: 10039 - type: CableMV - components: - - pos: -41.5,-5.5 - parent: 0 - type: Transform -- uid: 10040 - type: CableMV - components: - - pos: -41.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10041 - type: CableApcExtension - components: - - pos: -41.5,-4.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10042 - type: CableApcExtension - components: - - pos: -41.5,-5.5 - parent: 0 - type: Transform -- uid: 10043 - type: CableApcExtension - components: - - pos: -41.5,-6.5 - parent: 0 - type: Transform -- uid: 10044 - type: CableApcExtension - components: - - pos: -41.5,-7.5 - parent: 0 - type: Transform -- uid: 10045 - type: CableApcExtension - components: - - pos: -41.5,-8.5 - parent: 0 - type: Transform -- uid: 10046 - type: CableApcExtension - components: - - pos: -42.5,-8.5 - parent: 0 - type: Transform -- uid: 10047 - type: CableApcExtension - components: - - pos: -43.5,-8.5 - parent: 0 - type: Transform -- uid: 10048 - type: CableApcExtension - components: - - pos: -44.5,-8.5 - parent: 0 - type: Transform -- uid: 10049 - type: CableApcExtension - components: - - pos: -44.5,-9.5 - parent: 0 - type: Transform -- uid: 10050 - type: CableApcExtension - components: - - pos: -44.5,-10.5 - parent: 0 - type: Transform -- uid: 10051 - type: CableApcExtension - components: - - pos: -44.5,-11.5 - parent: 0 - type: Transform -- uid: 10052 - type: CableApcExtension - components: - - pos: -44.5,-12.5 - parent: 0 - type: Transform -- uid: 10053 - type: CableApcExtension - components: - - pos: -44.5,-13.5 - parent: 0 - type: Transform -- uid: 10054 - type: CableApcExtension - components: - - pos: -44.5,-14.5 - parent: 0 - type: Transform -- uid: 10055 - type: CableApcExtension - components: - - pos: -44.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10056 - type: CableApcExtension - components: - - pos: -44.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10057 - type: CableApcExtension - components: - - pos: -44.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10058 - type: CableApcExtension - components: - - pos: -44.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10059 - type: CableApcExtension - components: - - pos: -45.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10060 - type: CableApcExtension - components: - - pos: -45.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10061 - type: CableApcExtension - components: - - pos: -43.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10062 - type: CableApcExtension - components: - - pos: -46.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10063 - type: CableApcExtension - components: - - pos: -47.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10064 - type: CableApcExtension - components: - - pos: -45.5,-12.5 - parent: 0 - type: Transform -- uid: 10065 - type: CableApcExtension - components: - - pos: -46.5,-12.5 - parent: 0 - type: Transform -- uid: 10066 - type: CableApcExtension - components: - - pos: -47.5,-12.5 - parent: 0 - type: Transform -- uid: 10067 - type: CableApcExtension - components: - - pos: -48.5,-12.5 - parent: 0 - type: Transform -- uid: 10068 - type: CableApcExtension - components: - - pos: -49.5,-12.5 - parent: 0 - type: Transform -- uid: 10069 - type: APCBasic - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-12.5 - parent: 0 - type: Transform -- uid: 10070 - type: CableApcExtension - components: - - pos: -51.5,-12.5 - parent: 0 - type: Transform -- uid: 10071 - type: CableApcExtension - components: - - pos: -52.5,-12.5 - parent: 0 - type: Transform -- uid: 10072 - type: CableApcExtension - components: - - pos: -53.5,-12.5 - parent: 0 - type: Transform -- uid: 10073 - type: CableApcExtension - components: - - pos: -53.5,-11.5 - parent: 0 - type: Transform -- uid: 10074 - type: CableApcExtension - components: - - pos: -53.5,-10.5 - parent: 0 - type: Transform -- uid: 10075 - type: CableApcExtension - components: - - pos: -53.5,-9.5 - parent: 0 - type: Transform -- uid: 10076 - type: CableApcExtension - components: - - pos: -53.5,-8.5 - parent: 0 - type: Transform -- uid: 10077 - type: CableApcExtension - components: - - pos: -49.5,-11.5 - parent: 0 - type: Transform -- uid: 10078 - type: CableApcExtension - components: - - pos: -49.5,-10.5 - parent: 0 - type: Transform -- uid: 10079 - type: CableApcExtension - components: - - pos: -49.5,-9.5 - parent: 0 - type: Transform -- uid: 10080 - type: CableApcExtension - components: - - pos: -49.5,-8.5 - parent: 0 - type: Transform -- uid: 10081 - type: CableApcExtension - components: - - pos: -49.5,-7.5 - parent: 0 - type: Transform -- uid: 10082 - type: CableApcExtension - components: - - pos: -40.5,-8.5 - parent: 0 - type: Transform -- uid: 10083 - type: CableApcExtension - components: - - pos: -40.5,-9.5 - parent: 0 - type: Transform -- uid: 10084 - type: CableApcExtension - components: - - pos: -40.5,-10.5 - parent: 0 - type: Transform -- uid: 10085 - type: CableApcExtension - components: - - pos: -40.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10086 - type: CableApcExtension - components: - - pos: -40.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10087 - type: CableApcExtension - components: - - pos: -40.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10088 - type: CableApcExtension - components: - - pos: -40.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10089 - type: CableApcExtension - components: - - pos: -40.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10090 - type: CableApcExtension - components: - - pos: -40.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10091 - type: CableApcExtension - components: - - pos: -40.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10092 - type: CableApcExtension - components: - - pos: -39.5,-8.5 - parent: 0 - type: Transform -- uid: 10093 - type: CableApcExtension - components: - - pos: -38.5,-8.5 - parent: 0 - type: Transform -- uid: 10094 - type: CableApcExtension - components: - - pos: -37.5,-8.5 - parent: 0 - type: Transform -- uid: 10095 - type: CableApcExtension - components: - - pos: -36.5,-8.5 - parent: 0 - type: Transform -- uid: 10096 - type: CableApcExtension - components: - - pos: -35.5,-8.5 - parent: 0 - type: Transform -- uid: 10097 - type: CableApcExtension - components: - - pos: -34.5,-8.5 - parent: 0 - type: Transform -- uid: 10098 - type: CableApcExtension - components: - - pos: -33.5,-8.5 - parent: 0 - type: Transform -- uid: 10099 - type: CableApcExtension - components: - - pos: -32.5,-8.5 - parent: 0 - type: Transform -- uid: 10100 - type: CableApcExtension - components: - - pos: -31.5,-8.5 - parent: 0 - type: Transform -- uid: 10101 - type: CableApcExtension - components: - - pos: -30.5,-8.5 - parent: 0 - type: Transform -- uid: 10102 - type: CableApcExtension - components: - - pos: -29.5,-8.5 - parent: 0 - type: Transform -- uid: 10103 - type: CableApcExtension - components: - - pos: -33.5,-7.5 - parent: 0 - type: Transform -- uid: 10104 - type: CableApcExtension - components: - - pos: -33.5,-6.5 - parent: 0 - type: Transform -- uid: 10105 - type: CableApcExtension - components: - - pos: -33.5,-5.5 - parent: 0 - type: Transform -- uid: 10106 - type: CableApcExtension - components: - - pos: -33.5,-4.5 - parent: 0 - type: Transform -- uid: 10107 - type: CableApcExtension - components: - - pos: -33.5,-3.5 - parent: 0 - type: Transform -- uid: 10108 - type: CableApcExtension - components: - - pos: -33.5,-2.5 - parent: 0 - type: Transform -- uid: 10109 - type: CableApcExtension - components: - - pos: -33.5,-1.5 - parent: 0 - type: Transform -- uid: 10110 - type: CableApcExtension - components: - - pos: -32.5,-6.5 - parent: 0 - type: Transform -- uid: 10111 - type: CableApcExtension - components: - - pos: -31.5,-6.5 - parent: 0 - type: Transform -- uid: 10112 - type: CableApcExtension - components: - - pos: -30.5,-6.5 - parent: 0 - type: Transform -- uid: 10113 - type: CableApcExtension - components: - - pos: -29.5,-6.5 - parent: 0 - type: Transform -- uid: 10114 - type: CableApcExtension - components: - - pos: -32.5,-2.5 - parent: 0 - type: Transform -- uid: 10115 - type: CableApcExtension - components: - - pos: -31.5,-2.5 - parent: 0 - type: Transform -- uid: 10116 - type: CableApcExtension - components: - - pos: -30.5,-2.5 - parent: 0 - type: Transform -- uid: 10117 - type: CableApcExtension - components: - - pos: -29.5,-2.5 - parent: 0 - type: Transform -- uid: 10118 - type: CableApcExtension - components: - - pos: -28.5,-2.5 - parent: 0 - type: Transform -- uid: 10119 - type: CableApcExtension - components: - - pos: -27.5,-2.5 - parent: 0 - type: Transform -- uid: 10120 - type: CableApcExtension - components: - - pos: -26.5,-2.5 - parent: 0 - type: Transform -- uid: 10121 - type: CableApcExtension - components: - - pos: -25.5,-2.5 - parent: 0 - type: Transform -- uid: 10122 - type: CableApcExtension - components: - - pos: -26.5,-1.5 - parent: 0 - type: Transform -- uid: 10123 - type: CableApcExtension - components: - - pos: -26.5,-0.5 - parent: 0 - type: Transform -- uid: 10124 - type: CableApcExtension - components: - - pos: -26.5,0.5 - parent: 0 - type: Transform -- uid: 10125 - type: CableApcExtension - components: - - pos: -26.5,1.5 - parent: 0 - type: Transform -- uid: 10126 - type: CableApcExtension - components: - - pos: -26.5,2.5 - parent: 0 - type: Transform -- uid: 10127 - type: CableApcExtension - components: - - pos: -26.5,3.5 - parent: 0 - type: Transform -- uid: 10128 - type: CableApcExtension - components: - - pos: -26.5,4.5 - parent: 0 - type: Transform -- uid: 10129 - type: CableApcExtension - components: - - pos: -26.5,-3.5 - parent: 0 - type: Transform -- uid: 10130 - type: CableApcExtension - components: - - pos: -26.5,-4.5 - parent: 0 - type: Transform -- uid: 10131 - type: CableApcExtension - components: - - pos: -26.5,-5.5 - parent: 0 - type: Transform -- uid: 10132 - type: CableApcExtension - components: - - pos: -26.5,-6.5 - parent: 0 - type: Transform -- uid: 10133 - type: CableApcExtension - components: - - pos: -26.5,-7.5 - parent: 0 - type: Transform -- uid: 10134 - type: CableApcExtension - components: - - pos: -26.5,-8.5 - parent: 0 - type: Transform -- uid: 10135 - type: CableApcExtension - components: - - pos: -26.5,-9.5 - parent: 0 - type: Transform -- uid: 10136 - type: CableApcExtension - components: - - pos: -36.5,-9.5 - parent: 0 - type: Transform -- uid: 10137 - type: CableApcExtension - components: - - pos: -36.5,-10.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10138 - type: CableApcExtension - components: - - pos: -36.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10139 - type: CableApcExtension - components: - - pos: -36.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10140 - type: CableApcExtension - components: - - pos: -36.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10141 - type: CableApcExtension - components: - - pos: -36.5,-14.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10142 - type: CableApcExtension - components: - - pos: -36.5,-15.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10143 - type: CableApcExtension - components: - - pos: -36.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10144 - type: CableApcExtension - components: - - pos: -36.5,-17.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10145 - type: CableApcExtension - components: - - pos: -36.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10146 - type: CableApcExtension - components: - - pos: -35.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10147 - type: CableApcExtension - components: - - pos: -34.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10148 - type: CableApcExtension - components: - - pos: -33.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10149 - type: CableApcExtension - components: - - pos: -32.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10150 - type: CableApcExtension - components: - - pos: -31.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10151 - type: CableApcExtension - components: - - pos: -30.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10152 - type: CableApcExtension - components: - - pos: -29.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10153 - type: WallSolid - components: - - pos: -54.5,-23.5 - parent: 0 - type: Transform -- uid: 10154 - type: ReinforcedWindow - components: - - pos: -53.5,-23.5 - parent: 0 - type: Transform -- uid: 10155 - type: WallSolid - components: - - pos: -49.5,-23.5 - parent: 0 - type: Transform -- uid: 10156 - type: WallSolid - components: - - pos: -50.5,-23.5 - parent: 0 - type: Transform -- uid: 10157 - type: AirlockMaintLocked - components: - - pos: -49.5,-22.5 - parent: 0 - type: Transform -- uid: 10158 - type: ReinforcedWindow - components: - - pos: -52.5,-23.5 - parent: 0 - type: Transform -- uid: 10159 - type: CableHV - components: - - pos: -56.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10160 - type: CableHV - components: - - pos: -55.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10161 - type: CableHV - components: - - pos: -54.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10162 - type: CableHV - components: - - pos: -53.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10163 - type: CableHV - components: - - pos: -53.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10164 - type: CableHV - components: - - pos: -53.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10165 - type: AirlockEngineeringLocked - components: - - pos: -51.5,-23.5 - parent: 0 - type: Transform -- uid: 10166 - type: SMESBasic - components: - - pos: -53.5,-25.5 - parent: 0 - type: Transform -- uid: 10167 - type: CableTerminal - components: - - pos: -53.5,-24.5 - parent: 0 - type: Transform -- uid: 10168 - type: CableHV - components: - - pos: -53.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10169 - type: CableHV - components: - - pos: -52.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10170 - type: CableHV - components: - - pos: -51.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10171 - type: CableHV - components: - - pos: -51.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10172 - type: CableHV - components: - - pos: -51.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10173 - type: CableHV - components: - - pos: -51.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10174 - type: CableHV - components: - - pos: -50.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10175 - type: CableHV - components: - - pos: -49.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10176 - type: CableHV - components: - - pos: -48.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10177 - type: CableHV - components: - - pos: -47.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10178 - type: CableHV - components: - - pos: -46.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10179 - type: CableHV - components: - - pos: -45.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10180 - type: CableHV - components: - - pos: -45.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10181 - type: CableHV - components: - - pos: -50.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10182 - type: SubstationBasic - components: - - pos: -50.5,-25.5 - parent: 0 - type: Transform -- uid: 10183 - type: APCBasic - components: - - pos: -51.5,-21.5 - parent: 0 - type: Transform -- uid: 10184 - type: CableMV - components: - - pos: -50.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10185 - type: CableMV - components: - - pos: -50.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10186 - type: CableMV - components: - - pos: -51.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10187 - type: CableMV - components: - - pos: -51.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10188 - type: CableMV - components: - - pos: -51.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10189 - type: CableMV - components: - - pos: -51.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10190 - type: CableApcExtension - components: - - pos: -51.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10191 - type: CableApcExtension - components: - - pos: -51.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10192 - type: CableApcExtension - components: - - pos: -52.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10193 - type: CableApcExtension - components: - - pos: -53.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10194 - type: CableApcExtension - components: - - pos: -54.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10195 - type: CableApcExtension - components: - - pos: -55.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10196 - type: CableApcExtension - components: - - pos: -51.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10197 - type: CableApcExtension - components: - - pos: -51.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10198 - type: CableApcExtension - components: - - pos: -51.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10199 - type: CableApcExtension - components: - - pos: -50.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10200 - type: CableApcExtension - components: - - pos: -49.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10201 - type: CableApcExtension - components: - - pos: -48.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10202 - type: CableApcExtension - components: - - pos: -47.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10203 - type: CableApcExtension - components: - - pos: -46.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10204 - type: CableApcExtension - components: - - pos: -45.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10205 - type: CableApcExtension - components: - - pos: -34.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10206 - type: CableApcExtension - components: - - pos: -35.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10207 - type: CableApcExtension - components: - - pos: -36.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10208 - type: CableApcExtension - components: - - pos: -37.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10209 - type: CableApcExtension - components: - - pos: -38.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10210 - type: CableApcExtension - components: - - pos: -39.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10211 - type: CableApcExtension - components: - - pos: -40.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10212 - type: CableApcExtension - components: - - pos: -40.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10213 - type: CableApcExtension - components: - - pos: -40.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10214 - type: CableApcExtension - components: - - pos: -40.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10215 - type: CableApcExtension - components: - - pos: -40.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10216 - type: CableApcExtension - components: - - pos: -40.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10217 - type: CableApcExtension - components: - - pos: -40.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10218 - type: CableApcExtension - components: - - pos: -40.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10219 - type: CableApcExtension - components: - - pos: -40.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10220 - type: CableApcExtension - components: - - pos: -40.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10221 - type: CableApcExtension - components: - - pos: -40.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10222 - type: CableApcExtension - components: - - pos: -41.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10223 - type: CableApcExtension - components: - - pos: -42.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10224 - type: WallSolid - components: - - pos: -42.5,-22.5 - parent: 0 - type: Transform -- uid: 10225 - type: CableHV - components: - - pos: -57.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10226 - type: CableHV - components: - - pos: -59.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10227 - type: CableHV - components: - - pos: -59.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10228 - type: CableHV - components: - - pos: -59.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10229 - type: CableHV - components: - - pos: -59.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10230 - type: CableHV - components: - - pos: -59.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10231 - type: CableHV - components: - - pos: -59.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10232 - type: CableHV - components: - - pos: -59.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10233 - type: CableHV - components: - - pos: -59.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10234 - type: CableHV - components: - - pos: -61.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10235 - type: CableHV - components: - - pos: -61.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10236 - type: CableHV - components: - - pos: -61.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10237 - type: CableHV - components: - - pos: -61.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10238 - type: CableHV - components: - - pos: -61.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10239 - type: CableHV - components: - - pos: -61.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10240 - type: CableHV - components: - - pos: -61.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10241 - type: CableHV - components: - - pos: -61.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10242 - type: CableHV - components: - - pos: -63.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10243 - type: CableHV - components: - - pos: -63.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10244 - type: CableHV - components: - - pos: -63.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10245 - type: CableHV - components: - - pos: -63.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10246 - type: CableHV - components: - - pos: -65.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10247 - type: CableHV - components: - - pos: -65.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10248 - type: CableHV - components: - - pos: -65.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10249 - type: CableHV - components: - - pos: -65.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10250 - type: CableHV - components: - - pos: -69.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10251 - type: CableHV - components: - - pos: -69.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10252 - type: CableHV - components: - - pos: -69.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10253 - type: CableHV - components: - - pos: -69.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10254 - type: CableHV - components: - - pos: -67.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10255 - type: CableHV - components: - - pos: -67.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10256 - type: CableHV - components: - - pos: -67.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10257 - type: CableHV - components: - - pos: -67.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10258 - type: CableHV - components: - - pos: -69.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10259 - type: CableHV - components: - - pos: -69.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10260 - type: CableHV - components: - - pos: -69.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10261 - type: CableHV - components: - - pos: -69.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10262 - type: CableHV - components: - - pos: -67.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10263 - type: CableHV - components: - - pos: -67.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10264 - type: CableHV - components: - - pos: -67.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10265 - type: CableHV - components: - - pos: -67.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10266 - type: CableHV - components: - - pos: -65.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10267 - type: CableHV - components: - - pos: -65.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10268 - type: CableHV - components: - - pos: -65.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10269 - type: CableHV - components: - - pos: -65.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10270 - type: CableHV - components: - - pos: -63.5,-18.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10271 - type: CableHV - components: - - pos: -63.5,-19.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10272 - type: CableHV - components: - - pos: -63.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10273 - type: CableHV - components: - - pos: -63.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10274 - type: SolarTracker - components: - - pos: -71.5,-22.5 - parent: 0 - type: Transform -- uid: 10275 - type: CableHV - components: - - pos: -71.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10276 - type: CableHV - components: - - pos: -70.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10277 - type: Catwalk - components: - - pos: -70.5,-22.5 - parent: 0 - type: Transform -- uid: 10278 - type: Catwalk - components: - - pos: -69.5,-22.5 - parent: 0 - type: Transform -- uid: 10279 - type: Catwalk - components: - - pos: -68.5,-22.5 - parent: 0 - type: Transform -- uid: 10280 - type: Catwalk - components: - - pos: -67.5,-22.5 - parent: 0 - type: Transform -- uid: 10281 - type: Catwalk - components: - - pos: -66.5,-22.5 - parent: 0 - type: Transform -- uid: 10282 - type: Catwalk - components: - - pos: -65.5,-22.5 - parent: 0 - type: Transform -- uid: 10283 - type: Catwalk - components: - - pos: -64.5,-22.5 - parent: 0 - type: Transform -- uid: 10284 - type: Catwalk - components: - - pos: -63.5,-22.5 - parent: 0 - type: Transform -- uid: 10285 - type: Catwalk - components: - - pos: -62.5,-22.5 - parent: 0 - type: Transform -- uid: 10286 - type: Catwalk - components: - - pos: -61.5,-22.5 - parent: 0 - type: Transform -- uid: 10287 - type: Catwalk - components: - - pos: -60.5,-22.5 - parent: 0 - type: Transform -- uid: 10288 - type: Catwalk - components: - - pos: -59.5,-22.5 - parent: 0 - type: Transform -- uid: 10289 - type: Catwalk - components: - - pos: -58.5,-22.5 - parent: 0 - type: Transform -- uid: 10290 - type: Catwalk - components: - - pos: -57.5,-22.5 - parent: 0 - type: Transform -- uid: 10291 - type: Catwalk - components: - - pos: -60.5,-21.5 - parent: 0 - type: Transform -- uid: 10292 - type: Catwalk - components: - - pos: -60.5,-20.5 - parent: 0 - type: Transform -- uid: 10293 - type: Catwalk - components: - - pos: -60.5,-19.5 - parent: 0 - type: Transform -- uid: 10294 - type: Catwalk - components: - - pos: -60.5,-18.5 - parent: 0 - type: Transform -- uid: 10295 - type: Catwalk - components: - - pos: -64.5,-18.5 - parent: 0 - type: Transform -- uid: 10296 - type: Catwalk - components: - - pos: -64.5,-19.5 - parent: 0 - type: Transform -- uid: 10297 - type: Catwalk - components: - - pos: -64.5,-20.5 - parent: 0 - type: Transform -- uid: 10298 - type: Catwalk - components: - - pos: -64.5,-21.5 - parent: 0 - type: Transform -- uid: 10299 - type: Catwalk - components: - - pos: -68.5,-21.5 - parent: 0 - type: Transform -- uid: 10300 - type: Catwalk - components: - - pos: -68.5,-20.5 - parent: 0 - type: Transform -- uid: 10301 - type: Catwalk - components: - - pos: -68.5,-19.5 - parent: 0 - type: Transform -- uid: 10302 - type: Catwalk - components: - - pos: -68.5,-18.5 - parent: 0 - type: Transform -- uid: 10303 - type: Catwalk - components: - - pos: -68.5,-23.5 - parent: 0 - type: Transform -- uid: 10304 - type: Catwalk - components: - - pos: -68.5,-24.5 - parent: 0 - type: Transform -- uid: 10305 - type: Catwalk - components: - - pos: -68.5,-25.5 - parent: 0 - type: Transform -- uid: 10306 - type: Catwalk - components: - - pos: -68.5,-26.5 - parent: 0 - type: Transform -- uid: 10307 - type: Catwalk - components: - - pos: -64.5,-26.5 - parent: 0 - type: Transform -- uid: 10308 - type: Catwalk - components: - - pos: -64.5,-25.5 - parent: 0 - type: Transform -- uid: 10309 - type: Catwalk - components: - - pos: -64.5,-24.5 - parent: 0 - type: Transform -- uid: 10310 - type: Catwalk - components: - - pos: -64.5,-23.5 - parent: 0 - type: Transform -- uid: 10311 - type: Catwalk - components: - - pos: -60.5,-26.5 - parent: 0 - type: Transform -- uid: 10312 - type: Catwalk - components: - - pos: -60.5,-25.5 - parent: 0 - type: Transform -- uid: 10313 - type: Catwalk - components: - - pos: -60.5,-24.5 - parent: 0 - type: Transform -- uid: 10314 - type: Catwalk - components: - - pos: -60.5,-23.5 - parent: 0 - type: Transform -- uid: 10315 - type: Grille - components: - - pos: -56.5,-23.5 - parent: 0 - type: Transform -- uid: 10316 - type: Grille - components: - - pos: -53.5,-23.5 - parent: 0 - type: Transform -- uid: 10317 - type: Grille - components: - - pos: -52.5,-23.5 - parent: 0 - type: Transform -- uid: 10318 - type: Grille - components: - - pos: -52.5,-26.5 - parent: 0 - type: Transform -- uid: 10319 - type: Grille - components: - - pos: -53.5,-26.5 - parent: 0 - type: Transform -- uid: 10320 - type: Grille - components: - - pos: -54.5,-26.5 - parent: 0 - type: Transform -- uid: 10321 - type: Grille - components: - - pos: -54.5,-25.5 - parent: 0 - type: Transform -- uid: 10322 - type: ComputerSolarControl - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-25.5 - parent: 0 - type: Transform -- uid: 10323 - type: SolarPanel - components: - - pos: -69.5,-21.5 - parent: 0 - type: Transform -- uid: 10324 - type: SolarPanel - components: - - pos: -69.5,-20.5 - parent: 0 - type: Transform -- uid: 10325 - type: SolarPanel - components: - - pos: -69.5,-19.5 - parent: 0 - type: Transform -- uid: 10326 - type: SolarPanel - components: - - pos: -69.5,-18.5 - parent: 0 - type: Transform -- uid: 10327 - type: SolarPanel - components: - - pos: -67.5,-21.5 - parent: 0 - type: Transform -- uid: 10328 - type: SolarPanel - components: - - pos: -67.5,-20.5 - parent: 0 - type: Transform -- uid: 10329 - type: SolarPanel - components: - - pos: -67.5,-19.5 - parent: 0 - type: Transform -- uid: 10330 - type: SolarPanel - components: - - pos: -67.5,-18.5 - parent: 0 - type: Transform -- uid: 10331 - type: SolarPanel - components: - - pos: -69.5,-26.5 - parent: 0 - type: Transform -- uid: 10332 - type: SolarPanel - components: - - pos: -69.5,-25.5 - parent: 0 - type: Transform -- uid: 10333 - type: SolarPanel - components: - - pos: -69.5,-24.5 - parent: 0 - type: Transform -- uid: 10334 - type: SolarPanel - components: - - pos: -69.5,-23.5 - parent: 0 - type: Transform -- uid: 10335 - type: SolarPanel - components: - - pos: -67.5,-26.5 - parent: 0 - type: Transform -- uid: 10336 - type: SolarPanel - components: - - pos: -67.5,-25.5 - parent: 0 - type: Transform -- uid: 10337 - type: SolarPanel - components: - - pos: -67.5,-24.5 - parent: 0 - type: Transform -- uid: 10338 - type: SolarPanel - components: - - pos: -67.5,-23.5 - parent: 0 - type: Transform -- uid: 10339 - type: SolarPanel - components: - - pos: -65.5,-26.5 - parent: 0 - type: Transform -- uid: 10340 - type: SolarPanel - components: - - pos: -65.5,-25.5 - parent: 0 - type: Transform -- uid: 10341 - type: SolarPanel - components: - - pos: -65.5,-24.5 - parent: 0 - type: Transform -- uid: 10342 - type: SolarPanel - components: - - pos: -65.5,-23.5 - parent: 0 - type: Transform -- uid: 10343 - type: SolarPanel - components: - - pos: -63.5,-26.5 - parent: 0 - type: Transform -- uid: 10344 - type: SolarPanel - components: - - pos: -63.5,-25.5 - parent: 0 - type: Transform -- uid: 10345 - type: SolarPanel - components: - - pos: -63.5,-24.5 - parent: 0 - type: Transform -- uid: 10346 - type: SolarPanel - components: - - pos: -63.5,-23.5 - parent: 0 - type: Transform -- uid: 10347 - type: SolarPanel - components: - - pos: -61.5,-26.5 - parent: 0 - type: Transform -- uid: 10348 - type: SolarPanel - components: - - pos: -61.5,-25.5 - parent: 0 - type: Transform -- uid: 10349 - type: SolarPanel - components: - - pos: -61.5,-24.5 - parent: 0 - type: Transform -- uid: 10350 - type: SolarPanel - components: - - pos: -61.5,-23.5 - parent: 0 - type: Transform -- uid: 10351 - type: SolarPanel - components: - - pos: -59.5,-26.5 - parent: 0 - type: Transform -- uid: 10352 - type: SolarPanel - components: - - pos: -59.5,-25.5 - parent: 0 - type: Transform -- uid: 10353 - type: SolarPanel - components: - - pos: -59.5,-24.5 - parent: 0 - type: Transform -- uid: 10354 - type: SolarPanel - components: - - pos: -59.5,-23.5 - parent: 0 - type: Transform -- uid: 10355 - type: SolarPanel - components: - - pos: -59.5,-21.5 - parent: 0 - type: Transform -- uid: 10356 - type: SolarPanel - components: - - pos: -59.5,-20.5 - parent: 0 - type: Transform -- uid: 10357 - type: SolarPanel - components: - - pos: -59.5,-19.5 - parent: 0 - type: Transform -- uid: 10358 - type: SolarPanel - components: - - pos: -59.5,-18.5 - parent: 0 - type: Transform -- uid: 10359 - type: SolarPanel - components: - - pos: -61.5,-21.5 - parent: 0 - type: Transform -- uid: 10360 - type: SolarPanel - components: - - pos: -61.5,-20.5 - parent: 0 - type: Transform -- uid: 10361 - type: SolarPanel - components: - - pos: -61.5,-19.5 - parent: 0 - type: Transform -- uid: 10362 - type: SolarPanel - components: - - pos: -61.5,-18.5 - parent: 0 - type: Transform -- uid: 10363 - type: SolarPanel - components: - - pos: -63.5,-21.5 - parent: 0 - type: Transform -- uid: 10364 - type: SolarPanel - components: - - pos: -63.5,-20.5 - parent: 0 - type: Transform -- uid: 10365 - type: SolarPanel - components: - - pos: -63.5,-19.5 - parent: 0 - type: Transform -- uid: 10366 - type: SolarPanel - components: - - pos: -63.5,-18.5 - parent: 0 - type: Transform -- uid: 10367 - type: SolarPanel - components: - - pos: -65.5,-21.5 - parent: 0 - type: Transform -- uid: 10368 - type: SolarPanel - components: - - pos: -65.5,-20.5 - parent: 0 - type: Transform -- uid: 10369 - type: SolarPanel - components: - - pos: -65.5,-19.5 - parent: 0 - type: Transform -- uid: 10370 - type: SolarPanel - components: - - pos: -65.5,-18.5 - parent: 0 - type: Transform -- uid: 10371 - type: Grille - components: - - pos: -71.5,-24.5 - parent: 0 - type: Transform -- uid: 10372 - type: Grille - components: - - pos: -71.5,-25.5 - parent: 0 - type: Transform -- uid: 10373 - type: Grille - components: - - pos: -71.5,-26.5 - parent: 0 - type: Transform -- uid: 10374 - type: Grille - components: - - pos: -69.5,-28.5 - parent: 0 - type: Transform -- uid: 10375 - type: Grille - components: - - pos: -70.5,-28.5 - parent: 0 - type: Transform -- uid: 10376 - type: Grille - components: - - pos: -71.5,-28.5 - parent: 0 - type: Transform -- uid: 10377 - type: Grille - components: - - pos: -71.5,-20.5 - parent: 0 - type: Transform -- uid: 10378 - type: Grille - components: - - pos: -71.5,-19.5 - parent: 0 - type: Transform -- uid: 10379 - type: Grille - components: - - pos: -71.5,-18.5 - parent: 0 - type: Transform -- uid: 10380 - type: Grille - components: - - pos: -71.5,-16.5 - parent: 0 - type: Transform -- uid: 10381 - type: Grille - components: - - pos: -70.5,-16.5 - parent: 0 - type: Transform -- uid: 10382 - type: Grille - components: - - pos: -69.5,-16.5 - parent: 0 - type: Transform -- uid: 10383 - type: Grille - components: - - pos: -67.5,-16.5 - parent: 0 - type: Transform -- uid: 10384 - type: Grille - components: - - pos: -66.5,-16.5 - parent: 0 - type: Transform -- uid: 10385 - type: Grille - components: - - pos: -65.5,-16.5 - parent: 0 - type: Transform -- uid: 10386 - type: Grille - components: - - pos: -63.5,-16.5 - parent: 0 - type: Transform -- uid: 10387 - type: Grille - components: - - pos: -62.5,-16.5 - parent: 0 - type: Transform -- uid: 10388 - type: Grille - components: - - pos: -61.5,-16.5 - parent: 0 - type: Transform -- uid: 10389 - type: Grille - components: - - pos: -67.5,-28.5 - parent: 0 - type: Transform -- uid: 10390 - type: Grille - components: - - pos: -66.5,-28.5 - parent: 0 - type: Transform -- uid: 10391 - type: Grille - components: - - pos: -65.5,-28.5 - parent: 0 - type: Transform -- uid: 10392 - type: Grille - components: - - pos: -62.5,-28.5 - parent: 0 - type: Transform -- uid: 10393 - type: Grille - components: - - pos: -61.5,-28.5 - parent: 0 - type: Transform -- uid: 10394 - type: Grille - components: - - pos: -63.5,-28.5 - parent: 0 - type: Transform -- uid: 10395 - type: Grille - components: - - pos: -59.5,-28.5 - parent: 0 - type: Transform -- uid: 10396 - type: Grille - components: - - pos: -58.5,-28.5 - parent: 0 - type: Transform -- uid: 10397 - type: Grille - components: - - pos: -57.5,-28.5 - parent: 0 - type: Transform -- uid: 10398 - type: Grille - components: - - pos: -55.5,-28.5 - parent: 0 - type: Transform -- uid: 10399 - type: Grille - components: - - pos: -54.5,-28.5 - parent: 0 - type: Transform -- uid: 10400 - type: Grille - components: - - pos: -53.5,-28.5 - parent: 0 - type: Transform -- uid: 10401 - type: Grille - components: - - pos: -51.5,-28.5 - parent: 0 - type: Transform -- uid: 10402 - type: Grille - components: - - pos: -50.5,-28.5 - parent: 0 - type: Transform -- uid: 10403 - type: Grille - components: - - pos: -49.5,-28.5 - parent: 0 - type: Transform -- uid: 10404 - type: WallSolid - components: - - pos: -47.5,-28.5 - parent: 0 - type: Transform -- uid: 10405 - type: AirlockExternalLocked - components: - - pos: -54.5,-22.5 - parent: 0 - type: Transform -- uid: 10406 - type: AirlockExternalGlassLocked - components: - - pos: -56.5,-22.5 - parent: 0 - type: Transform -- uid: 10407 - type: ClosetEmergencyFilledRandom - components: - - pos: -55.5,-23.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 10408 - type: PoweredSmallLight - components: - - pos: -55.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10409 - type: PoweredSmallLight - components: - - pos: -52.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10410 - type: PoweredSmallLight - components: - - pos: -47.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10411 - type: Grille - components: - - pos: -52.5,-7.5 - parent: 0 - type: Transform -- uid: 10412 - type: Grille - components: - - pos: -53.5,-7.5 - parent: 0 - type: Transform -- uid: 10413 - type: Grille - components: - - pos: -54.5,-7.5 - parent: 0 - type: Transform -- uid: 10414 - type: Grille - components: - - pos: -54.5,-5.5 - parent: 0 - type: Transform -- uid: 10415 - type: Grille - components: - - pos: -53.5,-5.5 - parent: 0 - type: Transform -- uid: 10416 - type: Grille - components: - - pos: -52.5,-5.5 - parent: 0 - type: Transform -- uid: 10417 - type: AsteroidRock - components: - - pos: -53.5,-20.5 - parent: 0 - type: Transform -- uid: 10418 - type: AsteroidRock - components: - - pos: -52.5,-20.5 - parent: 0 - type: Transform -- uid: 10419 - type: AsteroidRock - components: - - pos: -51.5,-20.5 - parent: 0 - type: Transform -- uid: 10420 - type: AsteroidRock - components: - - pos: -50.5,-20.5 - parent: 0 - type: Transform -- uid: 10421 - type: AsteroidRock - components: - - pos: -53.5,-19.5 - parent: 0 - type: Transform -- uid: 10422 - type: AsteroidRock - components: - - pos: -54.5,-19.5 - parent: 0 - type: Transform -- uid: 10423 - type: AsteroidRock - components: - - pos: -55.5,-19.5 - parent: 0 - type: Transform -- uid: 10424 - type: AsteroidRock - components: - - pos: -54.5,-18.5 - parent: 0 - type: Transform -- uid: 10425 - type: AsteroidRock - components: - - pos: -55.5,-18.5 - parent: 0 - type: Transform -- uid: 10426 - type: AsteroidRock - components: - - pos: -56.5,-18.5 - parent: 0 - type: Transform -- uid: 10427 - type: AsteroidRock - components: - - pos: -56.5,-17.5 - parent: 0 - type: Transform -- uid: 10428 - type: AsteroidRock - components: - - pos: -56.5,-16.5 - parent: 0 - type: Transform -- uid: 10429 - type: AsteroidRock - components: - - pos: -56.5,-15.5 - parent: 0 - type: Transform -- uid: 10430 - type: AsteroidRock - components: - - pos: -55.5,-15.5 - parent: 0 - type: Transform -- uid: 10431 - type: AsteroidRock - components: - - pos: -54.5,-15.5 - parent: 0 - type: Transform -- uid: 10432 - type: AsteroidRock - components: - - pos: -53.5,-15.5 - parent: 0 - type: Transform -- uid: 10433 - type: AsteroidRock - components: - - pos: -52.5,-15.5 - parent: 0 - type: Transform -- uid: 10434 - type: AsteroidRock - components: - - pos: -51.5,-15.5 - parent: 0 - type: Transform -- uid: 10435 - type: AsteroidRock - components: - - pos: -50.5,-15.5 - parent: 0 - type: Transform -- uid: 10436 - type: AsteroidRock - components: - - pos: -49.5,-15.5 - parent: 0 - type: Transform -- uid: 10437 - type: AsteroidRock - components: - - pos: -48.5,-15.5 - parent: 0 - type: Transform -- uid: 10438 - type: AsteroidRock - components: - - pos: -47.5,-15.5 - parent: 0 - type: Transform -- uid: 10439 - type: AsteroidRock - components: - - pos: -47.5,-16.5 - parent: 0 - type: Transform -- uid: 10440 - type: Grille - components: - - pos: -13.5,-59.5 - parent: 0 - type: Transform -- uid: 10441 - type: Grille - components: - - pos: -14.5,-59.5 - parent: 0 - type: Transform -- uid: 10442 - type: WeaponRifleLecter - components: - - pos: -36.461723,19.457579 - parent: 0 - type: Transform -- uid: 10443 - type: AsteroidRock - components: - - pos: -51.5,-16.5 - parent: 0 - type: Transform -- uid: 10444 - type: AsteroidRock - components: - - pos: -52.5,-16.5 - parent: 0 - type: Transform -- uid: 10445 - type: RandomArtifactSpawner - components: - - pos: -52.5,-17.5 - parent: 0 - type: Transform -- uid: 10446 - type: BookEscalationSecurity - components: - - pos: -30.424656,-19.480621 - parent: 0 - type: Transform -- uid: 10447 - type: AsteroidRock - components: - - pos: -55.5,-16.5 - parent: 0 - type: Transform -- uid: 10448 - type: AsteroidRock - components: - - pos: -55.5,-17.5 - parent: 0 - type: Transform -- uid: 10449 - type: AsteroidRock - components: - - pos: -54.5,-17.5 - parent: 0 - type: Transform -- uid: 10450 - type: BookAtmosDistro - components: - - pos: -22.389639,-17.51967 - parent: 0 - type: Transform -- uid: 10451 - type: SalvageMaterialCrateSpawner - components: - - pos: -52.5,-19.5 - parent: 0 - type: Transform -- uid: 10452 - type: AsteroidRock - components: - - pos: -51.5,-17.5 - parent: 0 - type: Transform -- uid: 10453 - type: AsteroidRock - components: - - pos: -50.5,-17.5 - parent: 0 - type: Transform -- uid: 10454 - type: AsteroidRock - components: - - pos: -49.5,-17.5 - parent: 0 - type: Transform -- uid: 10455 - type: AsteroidRock - components: - - pos: -48.5,-17.5 - parent: 0 - type: Transform -- uid: 10456 - type: AsteroidRock - components: - - pos: -47.5,-17.5 - parent: 0 - type: Transform -- uid: 10457 - type: AsteroidRock - components: - - pos: -50.5,-18.5 - parent: 0 - type: Transform -- uid: 10458 - type: AsteroidRock - components: - - pos: -51.5,-18.5 - parent: 0 - type: Transform -- uid: 10459 - type: BannerRevolution - components: - - pos: -57.5,-12.5 - parent: 0 - type: Transform -- uid: 10460 - type: AsteroidRock - components: - - pos: -35.5,29.5 - parent: 0 - type: Transform -- uid: 10461 - type: AsteroidRock - components: - - pos: -50.5,-19.5 - parent: 0 - type: Transform -- uid: 10462 - type: AsteroidRock - components: - - pos: -51.5,-19.5 - parent: 0 - type: Transform -- uid: 10463 - type: AsteroidRock - components: - - pos: -36.5,28.5 - parent: 0 - type: Transform -- uid: 10464 - type: AsteroidRock - components: - - pos: -56.5,-14.5 - parent: 0 - type: Transform -- uid: 10465 - type: AsteroidRock - components: - - pos: -56.5,-13.5 - parent: 0 - type: Transform -- uid: 10466 - type: AsteroidRock - components: - - pos: -56.5,-12.5 - parent: 0 - type: Transform -- uid: 10467 - type: AsteroidRock - components: - - pos: -56.5,-11.5 - parent: 0 - type: Transform -- uid: 10468 - type: AsteroidRock - components: - - pos: -56.5,-10.5 - parent: 0 - type: Transform -- uid: 10469 - type: AsteroidRock - components: - - pos: -56.5,-9.5 - parent: 0 - type: Transform -- uid: 10470 - type: AsteroidRock - components: - - pos: -56.5,-8.5 - parent: 0 - type: Transform -- uid: 10471 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 10472 - type: AsteroidRock - components: - - pos: -57.5,-10.5 - parent: 0 - type: Transform -- uid: 10473 - type: AsteroidRock - components: - - pos: -57.5,-11.5 - parent: 0 - type: Transform -- uid: 10474 - type: AsteroidRock - components: - - pos: -35.5,28.5 - parent: 0 - type: Transform -- uid: 10475 - type: AsteroidRock - components: - - pos: -57.5,-13.5 - parent: 0 - type: Transform -- uid: 10476 - type: AsteroidRock - components: - - pos: -57.5,-14.5 - parent: 0 - type: Transform -- uid: 10477 - type: AsteroidRock - components: - - pos: -57.5,-15.5 - parent: 0 - type: Transform -- uid: 10478 - type: AsteroidRock - components: - - pos: -58.5,-13.5 - parent: 0 - type: Transform -- uid: 10479 - type: AsteroidRock - components: - - pos: -58.5,-12.5 - parent: 0 - type: Transform -- uid: 10480 - type: AsteroidRock - components: - - pos: -58.5,-11.5 - parent: 0 - type: Transform -- uid: 10481 - type: AsteroidRock - components: - - pos: -58.5,-10.5 - parent: 0 - type: Transform -- uid: 10482 - type: AsteroidRock - components: - - pos: -58.5,-9.5 - parent: 0 - type: Transform -- uid: 10483 - type: AsteroidRock - components: - - pos: -56.5,-7.5 - parent: 0 - type: Transform -- uid: 10484 - type: AsteroidRock - components: - - pos: -57.5,-8.5 - parent: 0 - type: Transform -- uid: 10485 - type: AsteroidRock - components: - - pos: -58.5,-8.5 - parent: 0 - type: Transform -- uid: 10486 - type: AsteroidRock - components: - - pos: -49.5,-2.5 - parent: 0 - type: Transform -- uid: 10487 - type: AirlockMaintLocked - components: - - pos: -34.5,-26.5 - parent: 0 - type: Transform -- uid: 10488 - type: Table - components: - - pos: -37.5,-25.5 - parent: 0 - type: Transform -- uid: 10489 - type: Table - components: - - pos: -36.5,-25.5 - parent: 0 - type: Transform -- uid: 10490 - type: Table - components: - - pos: -36.5,-22.5 - parent: 0 - type: Transform -- uid: 10491 - type: Table - components: - - pos: -37.5,-22.5 - parent: 0 - type: Transform -- uid: 10492 - type: soda_dispenser - components: - - pos: -37.5,-22.5 - parent: 0 - type: Transform -- uid: 10493 - type: BoozeDispenser - components: - - pos: -36.5,-22.5 - parent: 0 - type: Transform -- uid: 10494 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,-22.5 - parent: 0 - type: Transform -- uid: 10495 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -36.5,-26.5 - parent: 0 - type: Transform -- uid: 10496 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -37.5,-26.5 - parent: 0 - type: Transform -- uid: 10497 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-29.5 - parent: 0 - type: Transform -- uid: 10498 - type: UprightPianoInstrument - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-29.5 - parent: 0 - type: Transform -- uid: 10499 - type: TableCarpet - components: - - pos: -32.5,-28.5 - parent: 0 - type: Transform -- uid: 10500 - type: TableCarpet - components: - - pos: -33.5,-28.5 - parent: 0 - type: Transform -- uid: 10501 - type: TableCarpet - components: - - pos: -37.5,-28.5 - parent: 0 - type: Transform -- uid: 10502 - type: ChairWood - components: - - pos: -33.5,-27.5 - parent: 0 - type: Transform -- uid: 10503 - type: ChairWood - components: - - pos: -32.5,-27.5 - parent: 0 - type: Transform -- uid: 10504 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -32.5,-29.5 - parent: 0 - type: Transform -- uid: 10505 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -33.5,-29.5 - parent: 0 - type: Transform -- uid: 10506 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-28.5 - parent: 0 - type: Transform -- uid: 10507 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-28.5 - parent: 0 - type: Transform -- uid: 10508 - type: CableApcExtension - components: - - pos: -34.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10509 - type: CableApcExtension - components: - - pos: -34.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10510 - type: CableApcExtension - components: - - pos: -34.5,-27.5 - parent: 0 - type: Transform -- uid: 10511 - type: CableApcExtension - components: - - pos: -34.5,-28.5 - parent: 0 - type: Transform -- uid: 10512 - type: CableApcExtension - components: - - pos: -35.5,-28.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10513 - type: CableApcExtension - components: - - pos: -36.5,-28.5 - parent: 0 - type: Transform -- uid: 10514 - type: CableApcExtension - components: - - pos: -37.5,-28.5 - parent: 0 - type: Transform -- uid: 10515 - type: CableApcExtension - components: - - pos: -37.5,-27.5 - parent: 0 - type: Transform -- uid: 10516 - type: CableApcExtension - components: - - pos: -37.5,-26.5 - parent: 0 - type: Transform -- uid: 10517 - type: CableApcExtension - components: - - pos: -37.5,-25.5 - parent: 0 - type: Transform -- uid: 10518 - type: CableApcExtension - components: - - pos: -37.5,-24.5 - parent: 0 - type: Transform -- uid: 10519 - type: CableApcExtension - components: - - pos: -37.5,-23.5 - parent: 0 - type: Transform -- uid: 10520 - type: PoweredSmallLight - components: - - pos: -37.5,-22.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10521 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-28.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10522 - type: BarSign - components: - - desc: All right, buddy. I think you've had EI NATH. Time to get a cab. - name: The Ale' Nath - type: MetaData - - pos: -32.5,-26.5 - parent: 0 - type: Transform - - current: TheAleNath - type: BarSign -- uid: 10523 - type: Windoor - components: - - pos: -38.5,-25.5 - parent: 0 - type: Transform -- uid: 10524 - type: Barricade - components: - - pos: -38.5,-26.5 - parent: 0 - type: Transform -- uid: 10525 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10526 - type: Rack - components: - - pos: -41.5,-30.5 - parent: 0 - type: Transform -- uid: 10527 - type: ClosetMaintenanceFilledRandom - components: - - pos: -41.5,-31.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 10528 - type: BoxLightMixed - components: - - pos: -41.52028,-30.431274 - parent: 0 - type: Transform -- uid: 10529 - type: CableHV - components: - - pos: -10.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10530 - type: CableHV - components: - - pos: -10.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10531 - type: CableHV - components: - - pos: -11.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10532 - type: CableHV - components: - - pos: -12.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10533 - type: CableHV - components: - - pos: -13.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10534 - type: CableHV - components: - - pos: -14.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10535 - type: CableHV - components: - - pos: -15.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10536 - type: CableHV - components: - - pos: -16.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10537 - type: CableHV - components: - - pos: -17.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10538 - type: CableHV - components: - - pos: -18.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10539 - type: CableHV - components: - - pos: -19.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10540 - type: CableHV - components: - - pos: -20.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10541 - type: CableHV - components: - - pos: -21.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10542 - type: CableHV - components: - - pos: -22.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10543 - type: CableHV - components: - - pos: -23.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10544 - type: CableHV - components: - - pos: -24.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10545 - type: CableHV - components: - - pos: -24.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10546 - type: CableHV - components: - - pos: -25.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10547 - type: CableHV - components: - - pos: -26.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10548 - type: CableHV - components: - - pos: -27.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10549 - type: CableHV - components: - - pos: -28.5,-29.5 - parent: 0 - type: Transform -- uid: 10550 - type: CableHV - components: - - pos: -29.5,-29.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10551 - type: CableHV - components: - - pos: -29.5,-28.5 - parent: 0 - type: Transform -- uid: 10552 - type: CableHV - components: - - pos: -29.5,-27.5 - parent: 0 - type: Transform -- uid: 10553 - type: CableHV - components: - - pos: -29.5,-26.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10554 - type: CableHV - components: - - pos: -29.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10555 - type: CableHV - components: - - pos: -30.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10556 - type: CableHV - components: - - pos: -31.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10557 - type: CableHV - components: - - pos: -32.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10558 - type: CableHV - components: - - pos: -33.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10559 - type: CableHV - components: - - pos: -34.5,-25.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10560 - type: CableHV - components: - - pos: -34.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10561 - type: CableHV - components: - - pos: -34.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10562 - type: CableHV - components: - - pos: -34.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10563 - type: CableHV - components: - - pos: -34.5,-21.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10564 - type: CableHV - components: - - pos: -34.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10565 - type: CableHV - components: - - pos: -35.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10566 - type: Catwalk - components: - - pos: -30.5,-25.5 - parent: 0 - type: Transform -- uid: 10567 - type: Catwalk - components: - - pos: -31.5,-25.5 - parent: 0 - type: Transform -- uid: 10568 - type: Catwalk - components: - - pos: -32.5,-25.5 - parent: 0 - type: Transform -- uid: 10569 - type: Catwalk - components: - - pos: -33.5,-25.5 - parent: 0 - type: Transform -- uid: 10570 - type: Catwalk - components: - - pos: -10.5,-32.5 - parent: 0 - type: Transform -- uid: 10571 - type: Catwalk - components: - - pos: -10.5,-31.5 - parent: 0 - type: Transform -- uid: 10572 - type: Catwalk - components: - - pos: -11.5,-30.5 - parent: 0 - type: Transform -- uid: 10573 - type: Catwalk - components: - - pos: -12.5,-30.5 - parent: 0 - type: Transform -- uid: 10574 - type: Catwalk - components: - - pos: -13.5,-30.5 - parent: 0 - type: Transform -- uid: 10575 - type: Catwalk - components: - - pos: -14.5,-30.5 - parent: 0 - type: Transform -- uid: 10576 - type: Catwalk - components: - - pos: -15.5,-30.5 - parent: 0 - type: Transform -- uid: 10577 - type: Catwalk - components: - - pos: -16.5,-30.5 - parent: 0 - type: Transform -- uid: 10578 - type: Catwalk - components: - - pos: -17.5,-30.5 - parent: 0 - type: Transform -- uid: 10579 - type: Catwalk - components: - - pos: -18.5,-30.5 - parent: 0 - type: Transform -- uid: 10580 - type: Catwalk - components: - - pos: -19.5,-30.5 - parent: 0 - type: Transform -- uid: 10581 - type: FirelockGlass - components: - - pos: -20.5,-30.5 - parent: 0 - type: Transform -- uid: 10582 - type: Catwalk - components: - - pos: -21.5,-30.5 - parent: 0 - type: Transform -- uid: 10583 - type: Catwalk - components: - - pos: -22.5,-30.5 - parent: 0 - type: Transform -- uid: 10584 - type: Catwalk - components: - - pos: -23.5,-30.5 - parent: 0 - type: Transform -- uid: 10585 - type: Catwalk - components: - - pos: -25.5,-29.5 - parent: 0 - type: Transform -- uid: 10586 - type: Catwalk - components: - - pos: -26.5,-29.5 - parent: 0 - type: Transform -- uid: 10587 - type: Catwalk - components: - - pos: -34.5,-24.5 - parent: 0 - type: Transform -- uid: 10588 - type: Catwalk - components: - - pos: -34.5,-23.5 - parent: 0 - type: Transform -- uid: 10589 - type: Catwalk - components: - - pos: -34.5,-22.5 - parent: 0 - type: Transform -- uid: 10590 - type: Catwalk - components: - - pos: -34.5,-21.5 - parent: 0 - type: Transform -- uid: 10591 - type: FirelockGlass - components: - - pos: -39.5,-31.5 - parent: 0 - type: Transform -- uid: 10592 - type: FirelockGlass - components: - - pos: -37.5,-20.5 - parent: 0 - type: Transform -- uid: 10593 - type: Catwalk - components: - - pos: -38.5,-20.5 - parent: 0 - type: Transform -- uid: 10594 - type: Catwalk - components: - - pos: -39.5,-20.5 - parent: 0 - type: Transform -- uid: 10595 - type: Catwalk - components: - - pos: -40.5,-20.5 - parent: 0 - type: Transform -- uid: 10596 - type: Catwalk - components: - - pos: -41.5,-20.5 - parent: 0 - type: Transform -- uid: 10597 - type: Catwalk - components: - - pos: -42.5,-20.5 - parent: 0 - type: Transform -- uid: 10598 - type: Catwalk - components: - - pos: -43.5,-20.5 - parent: 0 - type: Transform -- uid: 10599 - type: CableApcExtension - components: - - pos: -44.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10600 - type: LockerElectricalSuppliesFilled - components: - - pos: -47.5,-19.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 10601 - type: SignElectricalMed - components: - - pos: -46.5,-19.5 - parent: 0 - type: Transform -- uid: 10602 - type: ClosetEmergencyFilledRandom - components: - - pos: -45.5,-16.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 10603 - type: Rack - components: - - pos: -45.5,-17.5 - parent: 0 - type: Transform -- uid: 10604 - type: MaintenanceFluffSpawner - components: - - pos: -45.5,-17.5 - parent: 0 - type: Transform -- uid: 10605 - type: MaintenanceFluffSpawner - components: - - pos: -32.5,-28.5 - parent: 0 - type: Transform -- uid: 10606 - type: ClothingUniformJumpsuitDetective - components: - - pos: -36.543808,-24.229988 - parent: 0 - type: Transform -- uid: 10607 - type: ClothingUniformJumpskirtDetective - components: - - pos: -36.403183,-24.261238 - parent: 0 - type: Transform -- uid: 10608 - type: ClothingHeadHatFedoraBrown - components: - - pos: -36.481308,-25.464363 - parent: 0 - type: Transform -- uid: 10609 - type: Grille - components: - - pos: -47.5,-24.5 - parent: 0 - type: Transform -- uid: 10610 - type: Pickaxe - components: - - pos: -48.49922,-23.375322 - parent: 0 - type: Transform -- uid: 10611 - type: Pickaxe - components: - - pos: -48.358597,-23.531572 - parent: 0 - type: Transform -- uid: 10612 - type: Rack - components: - - pos: -48.5,-23.5 - parent: 0 - type: Transform -- uid: 10613 - type: WallSolid - components: - - pos: -42.5,-24.5 - parent: 0 - type: Transform -- uid: 10614 - type: WallSolid - components: - - pos: -42.5,-23.5 - parent: 0 - type: Transform -- uid: 10615 - type: CableApcExtension - components: - - pos: -40.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10616 - type: FirelockGlass - components: - - pos: -40.5,-22.5 - parent: 0 - type: Transform -- uid: 10617 - type: FirelockGlass - components: - - pos: -41.5,-22.5 - parent: 0 - type: Transform -- uid: 10618 - type: Catwalk - components: - - pos: -36.5,-19.5 - parent: 0 - type: Transform -- uid: 10619 - type: Catwalk - components: - - pos: -36.5,-18.5 - parent: 0 - type: Transform -- uid: 10620 - type: Catwalk - components: - - pos: -36.5,-17.5 - parent: 0 - type: Transform -- uid: 10621 - type: Catwalk - components: - - pos: -36.5,-16.5 - parent: 0 - type: Transform -- uid: 10622 - type: Catwalk - components: - - pos: -36.5,-15.5 - parent: 0 - type: Transform -- uid: 10623 - type: Catwalk - components: - - pos: -36.5,-14.5 - parent: 0 - type: Transform -- uid: 10624 - type: Catwalk - components: - - pos: -36.5,-13.5 - parent: 0 - type: Transform -- uid: 10625 - type: Catwalk - components: - - pos: -36.5,-12.5 - parent: 0 - type: Transform -- uid: 10626 - type: Catwalk - components: - - pos: -36.5,-11.5 - parent: 0 - type: Transform -- uid: 10627 - type: Catwalk - components: - - pos: -48.5,-22.5 - parent: 0 - type: Transform -- uid: 10628 - type: Catwalk - components: - - pos: -47.5,-22.5 - parent: 0 - type: Transform -- uid: 10629 - type: Catwalk - components: - - pos: -46.5,-22.5 - parent: 0 - type: Transform -- uid: 10630 - type: Catwalk - components: - - pos: -45.5,-21.5 - parent: 0 - type: Transform -- uid: 10631 - type: Catwalk - components: - - pos: -44.5,-20.5 - parent: 0 - type: Transform -- uid: 10632 - type: Grille - components: - - pos: -47.5,-6.5 - parent: 0 - type: Transform -- uid: 10633 - type: TableReinforced - components: - - pos: -49.5,-8.5 - parent: 0 - type: Transform -- uid: 10634 - type: TableReinforced - components: - - pos: -48.5,-8.5 - parent: 0 - type: Transform -- uid: 10635 - type: WallReinforced - components: - - pos: -47.5,-10.5 - parent: 0 - type: Transform -- uid: 10636 - type: Grille - components: - - pos: -48.5,-10.5 - parent: 0 - type: Transform -- uid: 10637 - type: SMESBasic - components: - - pos: -47.5,-11.5 - parent: 0 - type: Transform -- uid: 10638 - type: CableHV - components: - - pos: -45.5,-12.5 - parent: 0 - type: Transform -- uid: 10639 - type: CableHV - components: - - pos: -46.5,-12.5 - parent: 0 - type: Transform -- uid: 10640 - type: CableHV - components: - - pos: -47.5,-12.5 - parent: 0 - type: Transform -- uid: 10641 - type: CableHV - components: - - pos: -47.5,-11.5 - parent: 0 - type: Transform -- uid: 10642 - type: CableHV - components: - - pos: -48.5,-11.5 - parent: 0 - type: Transform -- uid: 10643 - type: CableHV - components: - - pos: -49.5,-11.5 - parent: 0 - type: Transform -- uid: 10644 - type: CableHV - components: - - pos: -50.5,-11.5 - parent: 0 - type: Transform -- uid: 10645 - type: CableHV - components: - - pos: -51.5,-11.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10646 - type: CableHV - components: - - pos: -52.5,-11.5 - parent: 0 - type: Transform -- uid: 10647 - type: CableHV - components: - - pos: -53.5,-11.5 - parent: 0 - type: Transform -- uid: 10648 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: -47.5,-12.5 - parent: 0 - type: Transform -- uid: 10649 - type: SubstationBasic - components: - - pos: -53.5,-13.5 - parent: 0 - type: Transform -- uid: 10650 - type: CableHV - components: - - pos: -53.5,-12.5 - parent: 0 - type: Transform -- uid: 10651 - type: CableHV - components: - - pos: -53.5,-13.5 - parent: 0 - type: Transform -- uid: 10652 - type: CableMV - components: - - pos: -53.5,-13.5 - parent: 0 - type: Transform -- uid: 10653 - type: CableMV - components: - - pos: -53.5,-12.5 - parent: 0 - type: Transform -- uid: 10654 - type: CableMV - components: - - pos: -54.5,-12.5 - parent: 0 - type: Transform -- uid: 10655 - type: CableMV - components: - - pos: -55.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10656 - type: CableApcExtension - components: - - pos: -54.5,-12.5 - parent: 0 - type: Transform -- uid: 10657 - type: CableApcExtension - components: - - pos: -55.5,-12.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10658 - type: SurveillanceCameraRouterService - components: - - pos: -52.5,-13.5 - parent: 0 - type: Transform -- uid: 10659 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-13.5 - parent: 0 - type: Transform -- uid: 10660 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10661 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10662 - type: CableHV - components: - - pos: -51.5,-12.5 - parent: 0 - type: Transform -- uid: 10663 - type: CableHV - components: - - pos: -51.5,-13.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10664 - type: ClosetRadiationSuitFilled - components: - - pos: -47.5,-13.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 10665 - type: CableApcExtension - components: - - pos: -48.5,-7.5 - parent: 0 - type: Transform -- uid: 10666 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -49.5,-9.5 - parent: 0 - type: Transform -- uid: 10667 - type: filingCabinetDrawer - components: - - pos: -49.5,-6.5 - parent: 0 - type: Transform -- uid: 10668 - type: SurveillanceCameraRouterEngineering - components: - - pos: -48.5,-6.5 - parent: 0 - type: Transform -- uid: 10669 - type: CableHV - components: - - pos: -45.5,-6.5 - parent: 0 - type: Transform -- uid: 10670 - type: CableHV - components: - - pos: -46.5,-6.5 - parent: 0 - type: Transform -- uid: 10671 - type: CableHV - components: - - pos: -47.5,-6.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10672 - type: CableHV - components: - - pos: -48.5,-6.5 - parent: 0 - type: Transform -- uid: 10673 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-8.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10676 - type: SignalReceiver -- uid: 10674 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-7.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10676 - type: SignalReceiver -- uid: 10675 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-6.5 - parent: 0 - type: Transform - - inputs: - Open: [] - Close: [] - Toggle: - - port: Pressed - uid: 10676 - type: SignalReceiver -- uid: 10676 - type: SignalButton - components: - - pos: -51.5,-7.5 - parent: 0 - type: Transform - - outputs: - Pressed: - - port: Toggle - uid: 10675 - - port: Toggle - uid: 10674 - - port: Toggle - uid: 10673 - type: SignalTransmitter -- uid: 10677 - type: ReinforcedWindow - components: - - pos: -47.5,-8.5 - parent: 0 - type: Transform -- uid: 10678 - type: ReinforcedWindow - components: - - pos: -47.5,-7.5 - parent: 0 - type: Transform -- uid: 10679 - type: ReinforcedWindow - components: - - pos: -47.5,-6.5 - parent: 0 - type: Transform -- uid: 10680 - type: Poweredlight - components: - - pos: -49.5,-6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10681 - type: Poweredlight - components: - - pos: -47.5,-11.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10682 - type: Poweredlight - components: - - pos: -38.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10683 - type: Poweredlight - components: - - pos: -42.5,-10.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10684 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -42.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10685 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -38.5,-18.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10686 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10687 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10688 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10689 - type: Poweredlight - components: - - pos: -34.5,-0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10690 - type: Poweredlight - components: - - pos: -24.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10691 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,13.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10692 - type: Poweredlight - components: - - pos: -43.5,-1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10693 - type: Poweredlight - components: - - pos: -41.5,-5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10694 - type: Poweredlight - components: - - pos: -46.5,-6.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10695 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -45.5,-14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10696 - type: PoweredSmallLight - components: - - pos: -35.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10697 - type: ComputerPowerMonitoring - components: - - pos: -29.5,-5.5 - parent: 0 - type: Transform -- uid: 10698 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -30.5,-5.5 - parent: 0 - type: Transform -- uid: 10699 - type: Protolathe - components: - - pos: -28.5,-6.5 - parent: 0 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold - type: MaterialStorage -- uid: 10700 - type: Autolathe - components: - - pos: -28.5,-7.5 - parent: 0 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage -- uid: 10701 - type: WeldingFuelTankFull - components: - - pos: -28.5,-8.5 - parent: 0 - type: Transform -- uid: 10702 - type: WaterTankFull - components: - - pos: -28.5,-9.5 - parent: 0 - type: Transform -- uid: 10703 - type: TableReinforced - components: - - pos: -28.5,-5.5 - parent: 0 - type: Transform -- uid: 10704 - type: Lamp - components: - - pos: -28.442137,-5.370996 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 10705 - type: CrateEngineeringCableBulk - components: - - pos: -29.5,-9.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 10706 - type: ClothingHandsGlovesColorYellow - components: - - pos: -32.450558,-7.5008273 - parent: 0 - type: Transform -- uid: 10707 - type: Multitool - components: - - pos: -32.481808,-7.2820773 - parent: 0 - type: Transform -- uid: 10708 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: -35.5,-9.5 - parent: 0 - type: Transform -- uid: 10709 - type: Table - components: - - pos: -35.5,-7.5 - parent: 0 - type: Transform -- uid: 10710 - type: ExtinguisherCabinetFilled - components: - - pos: -37.5,-5.5 - parent: 0 - type: Transform -- uid: 10711 - type: ExtinguisherCabinetFilled - components: - - pos: -40.5,7.5 - parent: 0 - type: Transform -- uid: 10712 - type: BoxLightMixed - components: - - pos: -31.22427,-7.3718886 - parent: 0 - type: Transform -- uid: 10713 - type: PowerCellRecharger - components: - - pos: -30.5,-7.5 - parent: 0 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 10714 - type: ClothingBeltUtilityFilled - components: - - pos: -31.802395,-7.4187636 - parent: 0 - type: Transform -- uid: 10715 - type: WelderIndustrial - components: - - pos: -35.5,-7.5 - parent: 0 - type: Transform -- uid: 10716 - type: DoorElectronics - components: - - pos: -35.5,-7.5 - parent: 0 - type: Transform -- uid: 10717 - type: DoorElectronics - components: - - pos: -35.344994,-7.7000136 - parent: 0 - type: Transform -- uid: 10718 - type: FirelockElectronics - components: - - pos: -30.464754,-7.2781386 - parent: 0 - type: Transform -- uid: 10719 - type: AirAlarmElectronics - components: - - pos: -30.29477,5.0635805 - parent: 0 - type: Transform -- uid: 10720 - type: AirAlarmElectronics - components: - - pos: -30.216644,4.9385805 - parent: 0 - type: Transform -- uid: 10721 - type: Rack - components: - - pos: -36.5,8.5 - parent: 0 - type: Transform -- uid: 10722 - type: LockerElectricalSuppliesFilled - components: - - pos: -38.5,8.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 10723 - type: CrateEngineeringCableBulk - components: - - pos: -39.5,8.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 10724 - type: WelderIndustrialAdvanced - components: - - pos: -36.35727,8.431009 - parent: 0 - type: Transform -- uid: 10725 - type: ClothingHeadHatWeldingMaskFlameBlue - components: - - pos: -36.26352,8.306009 - parent: 0 - type: Transform -- uid: 10726 - type: ClothingHeadHatWeldingMaskFlame - components: - - pos: -24.496122,-31.384293 - parent: 0 - type: Transform -- uid: 10727 - type: ClothingHeadHatWeldingMaskPainted - components: - - pos: 15.568787,-6.463143 - parent: 0 - type: Transform -- uid: 10728 - type: GeneratorPlasma - components: - - pos: -50.5,-11.5 - parent: 0 - type: Transform -- uid: 10729 - type: Table - components: - - pos: -41.5,-7.5 - parent: 0 - type: Transform -- uid: 10730 - type: Table - components: - - pos: -42.5,-7.5 - parent: 0 - type: Transform -- uid: 10731 - type: Table - components: - - pos: -43.5,-7.5 - parent: 0 - type: Transform -- uid: 10732 - type: Chair - components: - - pos: -43.5,-6.5 - parent: 0 - type: Transform -- uid: 10733 - type: Chair - components: - - pos: -42.5,-6.5 - parent: 0 - type: Transform -- uid: 10734 - type: Chair - components: - - pos: -41.5,-6.5 - parent: 0 - type: Transform -- uid: 10735 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -43.5,-8.5 - parent: 0 - type: Transform -- uid: 10736 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -42.5,-8.5 - parent: 0 - type: Transform -- uid: 10737 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -41.5,-8.5 - parent: 0 - type: Transform -- uid: 10738 - type: LockerWeldingSuppliesFilled - components: - - pos: -46.5,-6.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 10739 - type: LockerElectricalSuppliesFilled - components: - - pos: -46.5,-7.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 10740 - type: OxygenCanister - components: - - pos: -46.5,-9.5 - parent: 0 - type: Transform -- uid: 10741 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -45.5,-5.5 - parent: 0 - type: Transform -- uid: 10742 - type: SignElectricalMed - components: - - pos: -38.5,-9.5 - parent: 0 - type: Transform -- uid: 10743 - type: SignGravity - components: - - pos: -51.5,-10.5 - parent: 0 - type: Transform -- uid: 10744 - type: SignRadiationMed - components: - - pos: -51.5,-14.5 - parent: 0 - type: Transform -- uid: 10745 - type: SignSecureMed - components: - - pos: -42.5,-9.5 - parent: 0 - type: Transform -- uid: 10746 - type: SignSecureSmallRed - components: - - pos: -37.5,6.5 - parent: 0 - type: Transform -- uid: 10747 - type: SignShield - components: - - pos: -24.5,12.5 - parent: 0 - type: Transform -- uid: 10748 - type: SignFlammableMed - components: - - pos: -32.5,6.5 - parent: 0 - type: Transform -- uid: 10749 - type: ExplosivesSignMed - components: - - pos: -33.5,6.5 - parent: 0 - type: Transform -- uid: 10750 - type: FireAlarm - components: - - pos: -29.5,6.5 - parent: 0 - type: Transform - - devices: - - 12184 - - 8690 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - type: DeviceList -- uid: 10751 - type: SignSmoking - components: - - pos: -40.5,11.5 - parent: 0 - type: Transform -- uid: 10752 - type: FirelockGlass - components: - - pos: -37.5,1.5 - parent: 0 - type: Transform -- uid: 10753 - type: FirelockGlass - components: - - pos: -37.5,2.5 - parent: 0 - type: Transform -- uid: 10754 - type: FirelockGlass - components: - - pos: -37.5,3.5 - parent: 0 - type: Transform -- uid: 10755 - type: FirelockGlass - components: - - pos: -37.5,4.5 - parent: 0 - type: Transform -- uid: 10756 - type: FirelockGlass - components: - - pos: -37.5,5.5 - parent: 0 - type: Transform -- uid: 10757 - type: GasVentPump - components: - - pos: -38.5,3.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10758 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -38.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10759 - type: WaterCooler - components: - - pos: -38.5,-5.5 - parent: 0 - type: Transform -- uid: 10760 - type: DrinkMugMetal - components: - - pos: -42.56598,-7.518787 - parent: 0 - type: Transform -- uid: 10761 - type: DrinkMugBlack - components: - - pos: -42.456604,-7.331287 - parent: 0 - type: Transform -- uid: 10762 - type: DrinkMugOne - components: - - pos: -42.25348,-7.487537 - parent: 0 - type: Transform -- uid: 10763 - type: DrinkMugHeart - components: - - pos: -41.78473,-7.362537 - parent: 0 - type: Transform -- uid: 10764 - type: ClothingHeadsetEngineering - components: - - pos: -43.456604,-7.425037 - parent: 0 - type: Transform -- uid: 10765 - type: FoodPizzaSassysageSlice - components: - - pos: -43.00348,-7.268787 - parent: 0 - type: Transform -- uid: 10766 - type: Rack - components: - - pos: -46.5,-8.5 - parent: 0 - type: Transform -- uid: 10767 - type: RCD - components: - - pos: -48.51471,-8.421415 - parent: 0 - type: Transform -- uid: 10768 - type: RCDAmmo - components: - - pos: -48.249084,-8.265165 - parent: 0 - type: Transform -- uid: 10769 - type: ClothingEyesHudDiagnostic - components: - - pos: -46.38971,-8.46829 - parent: 0 - type: Transform -- uid: 10770 - type: SheetPlasteel - components: - - pos: -34.51854,-5.508734 - parent: 0 - type: Transform -- uid: 10771 - type: SheetPlasteel - components: - - pos: -34.51854,-5.508734 - parent: 0 - type: Transform -- uid: 10772 - type: ClothingShoesBootsMag - components: - - pos: -45.5448,-14.786133 - parent: 0 - type: Transform -- uid: 10773 - type: ClothingShoesBootsMag - components: - - pos: -30.264002,-9.749746 - parent: 0 - type: Transform -- uid: 10774 - type: PosterContrabandHighEffectEngineering - components: - - pos: -35.5,-6.5 - parent: 0 - type: Transform -- uid: 10775 - type: SignEngine - components: - - pos: -43.5,-10.5 - parent: 0 - type: Transform -- uid: 10776 - type: CrateEngineeringAMEJar - components: - - pos: -38.5,-10.5 - parent: 0 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 10777 - type: CrateEngineeringAMEShielding - components: - - pos: -38.5,-11.5 - parent: 0 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 10778 - type: AMEController - components: - - pos: -42.5,-10.5 - parent: 0 - type: Transform -- uid: 10779 - type: CrateEngineeringAMEShielding - components: - - pos: -38.5,-12.5 - parent: 0 - type: Transform - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 10780 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -34.5,1.5 - parent: 0 - type: Transform -- uid: 10781 - type: DisposalBend - components: - - pos: -33.5,1.5 - parent: 0 - type: Transform -- uid: 10782 - type: DisposalPipe - components: - - pos: -33.5,0.5 - parent: 0 - type: Transform -- uid: 10783 - type: DisposalPipe - components: - - pos: -33.5,-0.5 - parent: 0 - type: Transform -- uid: 10784 - type: DisposalPipe - components: - - pos: -33.5,-1.5 - parent: 0 - type: Transform -- uid: 10785 - type: RandomDrinkGlass - components: - - pos: 1.5,8.5 - parent: 0 - type: Transform -- uid: 10786 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-2.5 - parent: 0 - type: Transform -- uid: 10787 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 0 - type: Transform -- uid: 10788 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-2.5 - parent: 0 - type: Transform -- uid: 10789 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-2.5 - parent: 0 - type: Transform -- uid: 10790 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-2.5 - parent: 0 - type: Transform -- uid: 10791 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 - parent: 0 - type: Transform -- uid: 10792 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-11.5 - parent: 0 - type: Transform -- uid: 10793 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-11.5 - parent: 0 - type: Transform -- uid: 10794 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-2.5 - parent: 0 - type: Transform -- uid: 10795 - type: DisposalJunction - components: - - pos: -25.5,-2.5 - parent: 0 - type: Transform -- uid: 10796 - type: DisposalPipe - components: - - pos: -25.5,-10.5 - parent: 0 - type: Transform -- uid: 10797 - type: DisposalPipe - components: - - pos: -25.5,-9.5 - parent: 0 - type: Transform -- uid: 10798 - type: DisposalPipe - components: - - pos: -25.5,-8.5 - parent: 0 - type: Transform -- uid: 10799 - type: DisposalPipe - components: - - pos: -25.5,-7.5 - parent: 0 - type: Transform -- uid: 10800 - type: DisposalPipe - components: - - pos: -25.5,-6.5 - parent: 0 - type: Transform -- uid: 10801 - type: DisposalPipe - components: - - pos: -25.5,-5.5 - parent: 0 - type: Transform -- uid: 10802 - type: DisposalPipe - components: - - pos: -25.5,-4.5 - parent: 0 - type: Transform -- uid: 10803 - type: DisposalPipe - components: - - pos: -25.5,-3.5 - parent: 0 - type: Transform -- uid: 10804 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -25.5,-11.5 - parent: 0 - type: Transform -- uid: 10805 - type: DisposalTrunk - components: - - pos: -28.5,20.5 - parent: 0 - type: Transform -- uid: 10806 - type: DisposalPipe - components: - - pos: -28.5,19.5 - parent: 0 - type: Transform -- uid: 10807 - type: DisposalPipe - components: - - pos: -28.5,18.5 - parent: 0 - type: Transform -- uid: 10808 - type: DisposalPipe - components: - - pos: -28.5,17.5 - parent: 0 - type: Transform -- uid: 10809 - type: DisposalPipe - components: - - pos: -28.5,16.5 - parent: 0 - type: Transform -- uid: 10810 - type: DisposalPipe - components: - - pos: -28.5,15.5 - parent: 0 - type: Transform -- uid: 10811 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -28.5,14.5 - parent: 0 - type: Transform -- uid: 10812 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,14.5 - parent: 0 - type: Transform -- uid: 10813 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,14.5 - parent: 0 - type: Transform -- uid: 10814 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,14.5 - parent: 0 - type: Transform -- uid: 10815 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,14.5 - parent: 0 - type: Transform -- uid: 10816 - type: DisposalBend - components: - - pos: -23.5,14.5 - parent: 0 - type: Transform -- uid: 10817 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -23.5,7.5 - parent: 0 - type: Transform -- uid: 10818 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -25.5,7.5 - parent: 0 - type: Transform -- uid: 10819 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,7.5 - parent: 0 - type: Transform -- uid: 10820 - type: DisposalPipe - components: - - pos: -23.5,8.5 - parent: 0 - type: Transform -- uid: 10821 - type: DisposalPipe - components: - - pos: -23.5,9.5 - parent: 0 - type: Transform -- uid: 10822 - type: DisposalPipe - components: - - pos: -23.5,10.5 - parent: 0 - type: Transform -- uid: 10823 - type: DisposalPipe - components: - - pos: -23.5,11.5 - parent: 0 - type: Transform -- uid: 10824 - type: DisposalPipe - components: - - pos: -23.5,12.5 - parent: 0 - type: Transform -- uid: 10825 - type: DisposalPipe - components: - - pos: -23.5,13.5 - parent: 0 - type: Transform -- uid: 10826 - type: DisposalPipe - components: - - pos: -25.5,6.5 - parent: 0 - type: Transform -- uid: 10827 - type: DisposalPipe - components: - - pos: -25.5,5.5 - parent: 0 - type: Transform -- uid: 10828 - type: DisposalPipe - components: - - pos: -25.5,4.5 - parent: 0 - type: Transform -- uid: 10829 - type: DisposalPipe - components: - - pos: -25.5,3.5 - parent: 0 - type: Transform -- uid: 10830 - type: DisposalPipe - components: - - pos: -25.5,2.5 - parent: 0 - type: Transform -- uid: 10831 - type: DisposalJunctionFlipped - components: - - pos: -25.5,1.5 - parent: 0 - type: Transform -- uid: 10832 - type: DisposalPipe - components: - - pos: -25.5,0.5 - parent: 0 - type: Transform -- uid: 10833 - type: DisposalPipe - components: - - pos: -25.5,-0.5 - parent: 0 - type: Transform -- uid: 10834 - type: DisposalPipe - components: - - pos: -25.5,-1.5 - parent: 0 - type: Transform -- uid: 10835 - type: DisposalUnit - components: - - pos: -20.5,-1.5 - parent: 0 - type: Transform -- uid: 10836 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -20.5,-1.5 - parent: 0 - type: Transform -- uid: 10837 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,1.5 - parent: 0 - type: Transform -- uid: 10838 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,1.5 - parent: 0 - type: Transform -- uid: 10839 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,1.5 - parent: 0 - type: Transform -- uid: 10840 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,1.5 - parent: 0 - type: Transform -- uid: 10841 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,-0.5 - parent: 0 - type: Transform -- uid: 10842 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,0.5 - parent: 0 - type: Transform -- uid: 10843 - type: DisposalBend - components: - - pos: -20.5,1.5 - parent: 0 - type: Transform -- uid: 10844 - type: SpawnPointStationEngineer - components: - - pos: -32.5,-8.5 - parent: 0 - type: Transform -- uid: 10845 - type: SpawnPointStationEngineer - components: - - pos: -31.5,-8.5 - parent: 0 - type: Transform -- uid: 10846 - type: SpawnPointStationEngineer - components: - - pos: -30.5,-8.5 - parent: 0 - type: Transform -- uid: 10847 - type: TableReinforced - components: - - pos: -27.5,-3.5 - parent: 0 - type: Transform -- uid: 10848 - type: TableReinforced - components: - - pos: -27.5,-0.5 - parent: 0 - type: Transform -- uid: 10849 - type: PowerCellRecharger - components: - - pos: -27.5,-3.5 - parent: 0 - type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures -- uid: 10850 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: -23.5,-1.5 - parent: 0 - type: Transform -- uid: 10851 - type: RandomArcade - components: - - pos: -23.5,5.5 - parent: 0 - type: Transform -- uid: 10852 - type: WardrobeMixedFilled - components: - - pos: -21.5,-1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10853 - type: BlockGameArcade - components: - - pos: -22.5,5.5 - parent: 0 - type: Transform -- uid: 10854 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -20.5,4.5 - parent: 0 - type: Transform -- uid: 10855 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -20.5,3.5 - parent: 0 - type: Transform -- uid: 10856 - type: Table - components: - - pos: -20.5,5.5 - parent: 0 - type: Transform -- uid: 10857 - type: Table - components: - - pos: -22.5,3.5 - parent: 0 - type: Transform -- uid: 10858 - type: Table - components: - - pos: -22.5,0.5 - parent: 0 - type: Transform -- uid: 10859 - type: Table - components: - - pos: -21.5,0.5 - parent: 0 - type: Transform -- uid: 10860 - type: PottedPlantRandom - components: - - pos: -22.5,-1.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 10861 - type: SignNosmoking - components: - - pos: -19.5,3.5 - parent: 0 - type: Transform -- uid: 10862 - type: RandomPosterAny - components: - - pos: -19.5,5.5 - parent: 0 - type: Transform -- uid: 10863 - type: RandomPosterAny - components: - - pos: -16.5,-1.5 - parent: 0 - type: Transform -- uid: 10864 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -22.475502,3.5391276 - parent: 0 - type: Transform -- uid: 10865 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 6.426591,-28.501112 - parent: 0 - type: Transform -- uid: 10866 - type: ParchisBoard - components: - - pos: -21.575394,0.5961678 - parent: 0 - type: Transform -- uid: 10867 - type: Stool - components: - - pos: -22.5,1.5 - parent: 0 - type: Transform -- uid: 10868 - type: Stool - components: - - pos: -21.5,1.5 - parent: 0 - type: Transform -- uid: 10869 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -21.5,-0.5 - parent: 0 - type: Transform -- uid: 10870 - type: Catwalk - components: - - pos: -30.5,7.5 - parent: 0 - type: Transform -- uid: 10871 - type: Catwalk - components: - - pos: -31.5,7.5 - parent: 0 - type: Transform -- uid: 10872 - type: Catwalk - components: - - pos: -32.5,7.5 - parent: 0 - type: Transform -- uid: 10873 - type: VendingMachineCigs - components: - - flags: SessionSpecific - name: cigarette machine - type: MetaData - - pos: -27.5,7.5 - parent: 0 - type: Transform -- uid: 10874 - type: Catwalk - components: - - pos: -33.5,7.5 - parent: 0 - type: Transform -- uid: 10875 - type: Catwalk - components: - - pos: -34.5,7.5 - parent: 0 - type: Transform -- uid: 10876 - type: ClosetEmergencyFilledRandom - components: - - pos: -32.5,8.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 10877 - type: Rack - components: - - pos: -33.5,8.5 - parent: 0 - type: Transform -- uid: 10878 - type: OxygenCanister - components: - - pos: -34.5,8.5 - parent: 0 - type: Transform -- uid: 10879 - type: MaintenanceFluffSpawner - components: - - pos: -33.5,8.5 - parent: 0 - type: Transform -- uid: 10880 - type: PoweredSmallLight - components: - - pos: -30.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10881 - type: PoweredSmallLight - components: - - pos: -38.5,8.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10882 - type: CableApcExtension - components: - - pos: -38.5,7.5 - parent: 0 - type: Transform -- uid: 10883 - type: CableApcExtension - components: - - pos: -37.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10884 - type: CableApcExtension - components: - - pos: -36.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10885 - type: CableApcExtension - components: - - pos: -35.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10886 - type: CableApcExtension - components: - - pos: -34.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10887 - type: CableApcExtension - components: - - pos: -33.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10888 - type: CableApcExtension - components: - - pos: -32.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10889 - type: CableApcExtension - components: - - pos: -31.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10890 - type: CableApcExtension - components: - - pos: -30.5,7.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10891 - type: CableApcExtension - components: - - pos: -26.5,5.5 - parent: 0 - type: Transform -- uid: 10892 - type: CableApcExtension - components: - - pos: -26.5,6.5 - parent: 0 - type: Transform -- uid: 10893 - type: CableApcExtension - components: - - pos: -26.5,7.5 - parent: 0 - type: Transform -- uid: 10894 - type: CableApcExtension - components: - - pos: -26.5,8.5 - parent: 0 - type: Transform -- uid: 10895 - type: CableApcExtension - components: - - pos: -25.5,8.5 - parent: 0 - type: Transform -- uid: 10896 - type: CableApcExtension - components: - - pos: -22.5,9.5 - parent: 0 - type: Transform -- uid: 10897 - type: CableApcExtension - components: - - pos: -22.5,8.5 - parent: 0 - type: Transform -- uid: 10898 - type: Rack - components: - - pos: -29.5,-12.5 - parent: 0 - type: Transform -- uid: 10899 - type: Rack - components: - - pos: -30.5,-12.5 - parent: 0 - type: Transform -- uid: 10900 - type: ClosetMaintenanceFilledRandom - components: - - pos: -31.5,-12.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 10901 - type: FirelockGlass - components: - - pos: -33.5,-12.5 - parent: 0 - type: Transform -- uid: 10902 - type: FirelockGlass - components: - - pos: -33.5,-11.5 - parent: 0 - type: Transform -- uid: 10903 - type: SpawnPointTechnicalAssistant - components: - - pos: -29.5,-7.5 - parent: 0 - type: Transform -- uid: 10904 - type: MaintenanceToolSpawner - components: - - pos: -29.5,-12.5 - parent: 0 - type: Transform -- uid: 10905 - type: ClothingOuterCoatBomber - components: - - pos: -30.486824,-12.450464 - parent: 0 - type: Transform -- uid: 10906 - type: WallSolid - components: - - pos: -34.5,-13.5 - parent: 0 - type: Transform -- uid: 10907 - type: Table - components: - - pos: -44.5,-24.5 - parent: 0 - type: Transform -- uid: 10908 - type: Table - components: - - pos: -44.5,-23.5 - parent: 0 - type: Transform -- uid: 10909 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-24.5 - parent: 0 - type: Transform -- uid: 10910 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-23.5 - parent: 0 - type: Transform -- uid: 10911 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-24.5 - parent: 0 - type: Transform -- uid: 10912 - type: PosterContrabandVoteWeh - components: - - pos: -42.5,-22.5 - parent: 0 - type: Transform -- uid: 10913 - type: ClothingOuterApron - components: - - pos: -44.361626,-26.517847 - parent: 0 - type: Transform -- uid: 10914 - type: ClothingHeadHatFez - components: - - pos: -44.596,-23.407698 - parent: 0 - type: Transform -- uid: 10915 - type: ClothingHeadHatFez - components: - - pos: -44.4085,-23.673323 - parent: 0 - type: Transform -- uid: 10916 - type: PlushieLizard - components: - - pos: -44.486626,-24.313948 - parent: 0 - type: Transform -- uid: 10917 - type: OxygenCanister - components: - - pos: -47.5,-23.5 - parent: 0 - type: Transform -- uid: 10918 - type: PoweredSmallLight - components: - - pos: -40.5,-20.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10919 - type: PoweredSmallLight - components: - - pos: -34.5,-14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10920 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-9.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10921 - type: WardrobeFormal - components: - - pos: -41.5,-24.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: - - 10924 - - 10923 - - 10922 - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 10922 - type: ClothingNeckTieRed - components: - - flags: InContainer - type: MetaData - - parent: 10921 - type: Transform - - canCollide: False - type: Physics -- uid: 10923 - type: ClothingUniformJumpsuitSecBlue - components: - - flags: InContainer - type: MetaData - - parent: 10921 - type: Transform - - canCollide: False - type: Physics -- uid: 10924 - type: ClothingHeadHatTophat - components: - - flags: InContainer - type: MetaData - - parent: 10921 - type: Transform - - canCollide: False - type: Physics -- uid: 10925 - type: CrateEngineeringCableHV - components: - - pos: -50.5,-24.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - - containers: - - EntityStorageComponent - - entity_storage - type: Construction -- uid: 10926 - type: AsteroidRock - components: - - pos: -38.5,14.5 - parent: 0 - type: Transform -- uid: 10927 - type: AsteroidRock - components: - - pos: -38.5,15.5 - parent: 0 - type: Transform -- uid: 10928 - type: AsteroidRock - components: - - pos: -38.5,16.5 - parent: 0 - type: Transform -- uid: 10929 - type: AsteroidRock - components: - - pos: -38.5,17.5 - parent: 0 - type: Transform -- uid: 10930 - type: RandomDrinkGlass - components: - - pos: 1.5,7.5 - parent: 0 - type: Transform -- uid: 10931 - type: RandomDrinkBottle - components: - - pos: 3.5,4.5 - parent: 0 - type: Transform -- uid: 10932 - type: ToySpawner - components: - - pos: -10.5,11.5 - parent: 0 - type: Transform -- uid: 10933 - type: RandomFoodMeal - components: - - pos: 1.5,-0.5 - parent: 0 - type: Transform -- uid: 10934 - type: RandomSpawner - components: - - pos: -1.5,17.5 - parent: 0 - type: Transform -- uid: 10935 - type: RandomSpawner - components: - - pos: -14.5,20.5 - parent: 0 - type: Transform -- uid: 10936 - type: RandomSpawner - components: - - pos: -23.5,18.5 - parent: 0 - type: Transform -- uid: 10937 - type: RandomSpawner - components: - - pos: -26.5,3.5 - parent: 0 - type: Transform -- uid: 10938 - type: RandomSpawner - components: - - pos: -20.5,2.5 - parent: 0 - type: Transform -- uid: 10939 - type: RandomSpawner - components: - - pos: -33.5,-1.5 - parent: 0 - type: Transform -- uid: 10940 - type: RandomSpawner - components: - - pos: -25.5,-8.5 - parent: 0 - type: Transform -- uid: 10941 - type: AsteroidRock - components: - - pos: -33.5,24.5 - parent: 0 - type: Transform -- uid: 10942 - type: AsteroidRock - components: - - pos: -33.5,25.5 - parent: 0 - type: Transform -- uid: 10943 - type: AsteroidRock - components: - - pos: -33.5,26.5 - parent: 0 - type: Transform -- uid: 10944 - type: AsteroidRock - components: - - pos: -33.5,27.5 - parent: 0 - type: Transform -- uid: 10945 - type: AsteroidRock - components: - - pos: -34.5,24.5 - parent: 0 - type: Transform -- uid: 10946 - type: GeneratorRTG - components: - - pos: -40.5,22.5 - parent: 0 - type: Transform -- uid: 10947 - type: AsteroidRock - components: - - pos: -34.5,26.5 - parent: 0 - type: Transform -- uid: 10948 - type: AsteroidRock - components: - - pos: -34.5,27.5 - parent: 0 - type: Transform -- uid: 10949 - type: AsteroidRock - components: - - pos: -34.5,28.5 - parent: 0 - type: Transform -- uid: 10950 - type: AsteroidRock - components: - - pos: -34.5,29.5 - parent: 0 - type: Transform -- uid: 10951 - type: AsteroidRock - components: - - pos: -34.5,30.5 - parent: 0 - type: Transform -- uid: 10952 - type: AsteroidRock - components: - - pos: -34.5,31.5 - parent: 0 - type: Transform -- uid: 10953 - type: AsteroidRock - components: - - pos: -34.5,32.5 - parent: 0 - type: Transform -- uid: 10954 - type: AsteroidRock - components: - - pos: -34.5,33.5 - parent: 0 - type: Transform -- uid: 10955 - type: AsteroidRock - components: - - pos: -35.5,32.5 - parent: 0 - type: Transform -- uid: 10956 - type: AsteroidRock - components: - - pos: -35.5,31.5 - parent: 0 - type: Transform -- uid: 10957 - type: AsteroidRock - components: - - pos: -35.5,30.5 - parent: 0 - type: Transform -- uid: 10958 - type: ClothingOuterArmorRiot - components: - - pos: -33.39286,20.650888 - parent: 0 - type: Transform -- uid: 10959 - type: ShuttleConsoleCircuitboard - components: - - pos: -34.25,25.263674 - parent: 0 - type: Transform -- uid: 10960 - type: WallmountGeneratorAPUElectronics - components: - - pos: -37.468086,26.400969 - parent: 0 - type: Transform -- uid: 10961 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 10962 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 10963 - type: AsteroidRock - components: - - pos: -35.5,24.5 - parent: 0 - type: Transform -- uid: 10964 - type: WallReinforced - components: - - pos: 3.5,-37.5 - parent: 0 - type: Transform -- uid: 10965 - type: AsteroidRock - components: - - pos: -39.5,15.5 - parent: 0 - type: Transform -- uid: 10966 - type: AsteroidRock - components: - - pos: -39.5,16.5 - parent: 0 - type: Transform -- uid: 10967 - type: AsteroidRock - components: - - pos: -39.5,17.5 - parent: 0 - type: Transform -- uid: 10968 - type: ClothingUniformJumpsuitPsychologist - components: - - pos: -36.533836,29.489151 - parent: 0 - type: Transform -- uid: 10969 - type: AsteroidRock - components: - - pos: -39.5,19.5 - parent: 0 - type: Transform -- uid: 10970 - type: AsteroidRock - components: - - pos: -39.5,20.5 - parent: 0 - type: Transform -- uid: 10971 - type: AsteroidRock - components: - - pos: -39.5,21.5 - parent: 0 - type: Transform -- uid: 10972 - type: AsteroidRock - components: - - pos: -39.5,22.5 - parent: 0 - type: Transform -- uid: 10973 - type: AsteroidRock - components: - - pos: -39.5,23.5 - parent: 0 - type: Transform -- uid: 10974 - type: AsteroidRock - components: - - pos: -39.5,24.5 - parent: 0 - type: Transform -- uid: 10975 - type: AsteroidRock - components: - - pos: -38.5,24.5 - parent: 0 - type: Transform -- uid: 10976 - type: ClothingOuterArmorRiot - components: - - pos: -33.627235,20.729013 - parent: 0 - type: Transform -- uid: 10977 - type: AsteroidRock - components: - - pos: -36.5,24.5 - parent: 0 - type: Transform -- uid: 10978 - type: WallmountSubstationElectronics - components: - - pos: -37.343086,26.182219 - parent: 0 - type: Transform -- uid: 10979 - type: Rack - components: - - pos: -37.5,26.5 - parent: 0 - type: Transform -- uid: 10980 - type: CultAltarSpawner - components: - - pos: -36.5,30.5 - parent: 0 - type: Transform -- uid: 10981 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 10982 - type: AsteroidRock - components: - - pos: -40.5,23.5 - parent: 0 - type: Transform -- uid: 10983 - type: AsteroidRock - components: - - pos: -39.5,18.5 - parent: 0 - type: Transform -- uid: 10984 - type: AsteroidRock - components: - - pos: -36.5,31.5 - parent: 0 - type: Transform -- uid: 10985 - type: RandomSpawner - components: - - pos: -16.5,-12.5 - parent: 0 - type: Transform -- uid: 10986 - type: AsteroidRock - components: - - pos: -35.5,33.5 - parent: 0 - type: Transform -- uid: 10987 - type: AsteroidRock - components: - - pos: -36.5,33.5 - parent: 0 - type: Transform -- uid: 10988 - type: AsteroidRock - components: - - pos: -37.5,33.5 - parent: 0 - type: Transform -- uid: 10989 - type: WallReinforced - components: - - pos: 3.5,-41.5 - parent: 0 - type: Transform -- uid: 10990 - type: AsteroidRock - components: - - pos: -37.5,32.5 - parent: 0 - type: Transform -- uid: 10991 - type: AsteroidRock - components: - - pos: -37.5,31.5 - parent: 0 - type: Transform -- uid: 10992 - type: AsteroidRock - components: - - pos: -37.5,30.5 - parent: 0 - type: Transform -- uid: 10993 - type: AsteroidRock - components: - - pos: -37.5,29.5 - parent: 0 - type: Transform -- uid: 10994 - type: AsteroidRock - components: - - pos: -37.5,28.5 - parent: 0 - type: Transform -- uid: 10995 - type: AsteroidRock - components: - - pos: -37.5,27.5 - parent: 0 - type: Transform -- uid: 10996 - type: ClothingOuterHardsuitEVAPrisoner - components: - - pos: -31.569149,26.70803 - parent: 0 - type: Transform -- uid: 10997 - type: FoodCakeSuppermatterSlice - components: - - pos: 8.455962,31.413256 - parent: 0 - type: Transform -- uid: 10998 - type: KitchenKnife - components: - - pos: -36.20571,29.520401 - parent: 0 - type: Transform -- uid: 10999 - type: AsteroidRock - components: - - pos: -38.5,26.5 - parent: 0 - type: Transform -- uid: 11000 - type: AsteroidRock - components: - - pos: -38.5,27.5 - parent: 0 - type: Transform -- uid: 11001 - type: AsteroidRock - components: - - pos: -38.5,28.5 - parent: 0 - type: Transform -- uid: 11002 - type: AsteroidRock - components: - - pos: -38.5,29.5 - parent: 0 - type: Transform -- uid: 11003 - type: AsteroidRock - components: - - pos: -38.5,30.5 - parent: 0 - type: Transform -- uid: 11004 - type: AsteroidRock - components: - - pos: -38.5,31.5 - parent: 0 - type: Transform -- uid: 11005 - type: AsteroidRock - components: - - pos: -38.5,32.5 - parent: 0 - type: Transform -- uid: 11006 - type: WallReinforced - components: - - pos: 3.5,-40.5 - parent: 0 - type: Transform -- uid: 11007 - type: WallReinforced - components: - - pos: 3.5,-39.5 - parent: 0 - type: Transform -- uid: 11008 - type: WallReinforced - components: - - pos: 3.5,-38.5 - parent: 0 - type: Transform -- uid: 11009 - type: AsteroidRock - components: - - pos: -40.5,17.5 - parent: 0 - type: Transform -- uid: 11010 - type: AsteroidRock - components: - - pos: -40.5,18.5 - parent: 0 - type: Transform -- uid: 11011 - type: AsteroidRock - components: - - pos: -40.5,19.5 - parent: 0 - type: Transform -- uid: 11012 - type: AsteroidRock - components: - - pos: -40.5,20.5 - parent: 0 - type: Transform -- uid: 11013 - type: AsteroidRock - components: - - pos: -40.5,21.5 - parent: 0 - type: Transform -- uid: 11014 - type: AsteroidRock - components: - - pos: -37.5,24.5 - parent: 0 - type: Transform -- uid: 11015 - type: ClothingMaskGasExplorer - components: - - pos: 35.488716,-30.534061 - parent: 0 - type: Transform -- uid: 11016 - type: AsteroidRock - components: - - pos: -40.5,24.5 - parent: 0 - type: Transform -- uid: 11017 - type: AsteroidRock - components: - - pos: -40.5,25.5 - parent: 0 - type: Transform -- uid: 11018 - type: AsteroidRock - components: - - pos: -40.5,26.5 - parent: 0 - type: Transform -- uid: 11019 - type: AsteroidRock - components: - - pos: -41.5,21.5 - parent: 0 - type: Transform -- uid: 11020 - type: AsteroidRock - components: - - pos: -41.5,22.5 - parent: 0 - type: Transform -- uid: 11021 - type: AsteroidRock - components: - - pos: -41.5,23.5 - parent: 0 - type: Transform -- uid: 11022 - type: AsteroidRock - components: - - pos: -41.5,24.5 - parent: 0 - type: Transform -- uid: 11023 - type: AsteroidRock - components: - - pos: -41.5,25.5 - parent: 0 - type: Transform -- uid: 11024 - type: AsteroidRock - components: - - pos: -41.5,26.5 - parent: 0 - type: Transform -- uid: 11025 - type: AsteroidRock - components: - - pos: -39.5,25.5 - parent: 0 - type: Transform -- uid: 11026 - type: AsteroidRock - components: - - pos: -39.5,26.5 - parent: 0 - type: Transform -- uid: 11027 - type: AsteroidRock - components: - - pos: -39.5,27.5 - parent: 0 - type: Transform -- uid: 11028 - type: AsteroidRock - components: - - pos: -39.5,28.5 - parent: 0 - type: Transform -- uid: 11029 - type: AsteroidRock - components: - - pos: -39.5,29.5 - parent: 0 - type: Transform -- uid: 11030 - type: WallReinforced - components: - - pos: 3.5,-42.5 - parent: 0 - type: Transform -- uid: 11031 - type: WallReinforced - components: - - pos: 3.5,-43.5 - parent: 0 - type: Transform -- uid: 11032 - type: WallReinforced - components: - - pos: 4.5,-43.5 - parent: 0 - type: Transform -- uid: 11033 - type: WallReinforced - components: - - pos: 5.5,-43.5 - parent: 0 - type: Transform -- uid: 11034 - type: WallReinforced - components: - - pos: 6.5,-43.5 - parent: 0 - type: Transform -- uid: 11035 - type: WallReinforced - components: - - pos: 6.5,-44.5 - parent: 0 - type: Transform -- uid: 11036 - type: WallReinforced - components: - - pos: 6.5,-45.5 - parent: 0 - type: Transform -- uid: 11037 - type: WallReinforced - components: - - pos: 7.5,-45.5 - parent: 0 - type: Transform -- uid: 11038 - type: WallReinforced - components: - - pos: 8.5,-45.5 - parent: 0 - type: Transform -- uid: 11039 - type: WallReinforced - components: - - pos: 9.5,-45.5 - parent: 0 - type: Transform -- uid: 11040 - type: WallReinforced - components: - - pos: 10.5,-45.5 - parent: 0 - type: Transform -- uid: 11041 - type: WallReinforced - components: - - pos: 11.5,-45.5 - parent: 0 - type: Transform -- uid: 11042 - type: WallReinforced - components: - - pos: 12.5,-43.5 - parent: 0 - type: Transform -- uid: 11043 - type: WallReinforced - components: - - pos: 11.5,-44.5 - parent: 0 - type: Transform -- uid: 11044 - type: WallReinforced - components: - - pos: 11.5,-43.5 - parent: 0 - type: Transform -- uid: 11045 - type: WallReinforced - components: - - pos: 13.5,-43.5 - parent: 0 - type: Transform -- uid: 11046 - type: WallReinforced - components: - - pos: 14.5,-43.5 - parent: 0 - type: Transform -- uid: 11047 - type: ReinforcedWindow - components: - - pos: 6.5,-32.5 - parent: 0 - type: Transform -- uid: 11048 - type: ReinforcedWindow - components: - - pos: 6.5,-34.5 - parent: 0 - type: Transform -- uid: 11049 - type: WallSolid - components: - - pos: 4.5,-39.5 - parent: 0 - type: Transform -- uid: 11050 - type: WallSolid - components: - - pos: 5.5,-39.5 - parent: 0 - type: Transform -- uid: 11051 - type: WallSolid - components: - - pos: 6.5,-39.5 - parent: 0 - type: Transform -- uid: 11052 - type: WallSolid - components: - - pos: 7.5,-39.5 - parent: 0 - type: Transform -- uid: 11053 - type: WallSolid - components: - - pos: 7.5,-35.5 - parent: 0 - type: Transform -- uid: 11054 - type: WallSolid - components: - - pos: 6.5,-35.5 - parent: 0 - type: Transform -- uid: 11055 - type: WallSolid - components: - - pos: 5.5,-35.5 - parent: 0 - type: Transform -- uid: 11056 - type: WallSolid - components: - - pos: 4.5,-35.5 - parent: 0 - type: Transform -- uid: 11057 - type: WallSolid - components: - - pos: 7.5,-31.5 - parent: 0 - type: Transform -- uid: 11058 - type: WallSolid - components: - - pos: 6.5,-31.5 - parent: 0 - type: Transform -- uid: 11059 - type: WallSolid - components: - - pos: 5.5,-31.5 - parent: 0 - type: Transform -- uid: 11060 - type: WallSolid - components: - - pos: 4.5,-31.5 - parent: 0 - type: Transform -- uid: 11061 - type: WallSolid - components: - - pos: 10.5,-35.5 - parent: 0 - type: Transform -- uid: 11062 - type: WallSolid - components: - - pos: 11.5,-35.5 - parent: 0 - type: Transform -- uid: 11063 - type: WallSolid - components: - - pos: 12.5,-35.5 - parent: 0 - type: Transform -- uid: 11064 - type: WallSolid - components: - - pos: 13.5,-35.5 - parent: 0 - type: Transform -- uid: 11065 - type: Girder - components: - - pos: 14.5,-35.5 - parent: 0 - type: Transform -- uid: 11066 - type: WallSolid - components: - - pos: 10.5,-39.5 - parent: 0 - type: Transform -- uid: 11067 - type: WallSolid - components: - - pos: 11.5,-39.5 - parent: 0 - type: Transform -- uid: 11068 - type: WallSolid - components: - - pos: 12.5,-39.5 - parent: 0 - type: Transform -- uid: 11069 - type: WallSolid - components: - - pos: 13.5,-39.5 - parent: 0 - type: Transform -- uid: 11070 - type: WallSolid - components: - - pos: 14.5,-39.5 - parent: 0 - type: Transform -- uid: 11071 - type: ReinforcedWindow - components: - - pos: 6.5,-36.5 - parent: 0 - type: Transform -- uid: 11072 - type: ReinforcedWindow - components: - - pos: 6.5,-38.5 - parent: 0 - type: Transform -- uid: 11073 - type: GrilleBroken - components: - - pos: 11.5,-36.5 - parent: 0 - type: Transform -- uid: 11074 - type: ReinforcedWindow - components: - - pos: 11.5,-38.5 - parent: 0 - type: Transform -- uid: 11075 - type: ReinforcedWindow - components: - - pos: 11.5,-40.5 - parent: 0 - type: Transform -- uid: 11076 - type: ReinforcedWindow - components: - - pos: 11.5,-42.5 - parent: 0 - type: Transform -- uid: 11077 - type: ReinforcedWindow - components: - - pos: 6.5,-42.5 - parent: 0 - type: Transform -- uid: 11078 - type: ReinforcedWindow - components: - - pos: 6.5,-40.5 - parent: 0 - type: Transform -- uid: 11079 - type: DisposalUnit - components: - - pos: 7.5,-38.5 - parent: 0 - type: Transform -- uid: 11080 - type: DisposalUnit - components: - - pos: 10.5,-42.5 - parent: 0 - type: Transform -- uid: 11081 - type: GrilleBroken - components: - - pos: 11.5,-38.5 - parent: 0 - type: Transform -- uid: 11082 - type: DisposalUnit - components: - - pos: 7.5,-42.5 - parent: 0 - type: Transform -- uid: 11083 - type: DisposalUnit - components: - - pos: 7.5,-34.5 - parent: 0 - type: Transform -- uid: 11084 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-42.5 - parent: 0 - type: Transform -- uid: 11085 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-38.5 - parent: 0 - type: Transform -- uid: 11086 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-34.5 - parent: 0 - type: Transform -- uid: 11087 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-38.5 - parent: 0 - type: Transform -- uid: 11088 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-42.5 - parent: 0 - type: Transform -- uid: 11089 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-42.5 - parent: 0 - type: Transform -- uid: 11090 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-38.5 - parent: 0 - type: Transform -- uid: 11091 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-34.5 - parent: 0 - type: Transform -- uid: 11092 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-38.5 - parent: 0 - type: Transform -- uid: 11093 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-42.5 - parent: 0 - type: Transform -- uid: 11094 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-42.5 - parent: 0 - type: Transform -- uid: 11095 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-42.5 - parent: 0 - type: Transform -- uid: 11096 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-38.5 - parent: 0 - type: Transform -- uid: 11097 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-34.5 - parent: 0 - type: Transform -- uid: 11098 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-38.5 - parent: 0 - type: Transform -- uid: 11099 - type: ClothingHeadHatAnimalHeadslime - components: - - pos: 7.610162,-44.413692 - parent: 0 - type: Transform -- uid: 11100 - type: VendingMachineSmartFridge - components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,-43.5 - parent: 0 - type: Transform -- uid: 11101 - type: WindoorSecure - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-41.5 - parent: 0 - type: Transform -- uid: 11102 - type: WindoorSecure - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-41.5 - parent: 0 - type: Transform -- uid: 11103 - type: WindoorSecure - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-37.5 - parent: 0 - type: Transform -- uid: 11104 - type: ReinforcedWindow - components: - - pos: 11.5,-34.5 - parent: 0 - type: Transform -- uid: 11105 - type: ShardGlassReinforced - components: - - pos: 11.590929,-33.611034 - parent: 0 - type: Transform -- uid: 11106 - type: Girder - components: - - pos: 11.5,-31.5 - parent: 0 - type: Transform -- uid: 11107 - type: Girder - components: - - pos: 10.5,-31.5 - parent: 0 - type: Transform -- uid: 11108 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 11.5,-32.5 - parent: 0 - type: Transform -- uid: 11109 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-31.5 - parent: 0 - type: Transform -- uid: 11110 - type: WallReinforced - components: - - pos: 15.5,-43.5 - parent: 0 - type: Transform -- uid: 11111 - type: WallReinforced - components: - - pos: 15.5,-42.5 - parent: 0 - type: Transform -- uid: 11112 - type: WallReinforced - components: - - pos: 15.5,-41.5 - parent: 0 - type: Transform -- uid: 11113 - type: WallReinforced - components: - - pos: 15.5,-40.5 - parent: 0 - type: Transform -- uid: 11114 - type: WallReinforced - components: - - pos: 15.5,-39.5 - parent: 0 - type: Transform -- uid: 11115 - type: WallReinforced - components: - - pos: 15.5,-38.5 - parent: 0 - type: Transform -- uid: 11116 - type: WallReinforced - components: - - pos: 15.5,-37.5 - parent: 0 - type: Transform -- uid: 11117 - type: WallReinforced - components: - - pos: 15.5,-36.5 - parent: 0 - type: Transform -- uid: 11118 - type: WallReinforced - components: - - pos: 15.5,-35.5 - parent: 0 - type: Transform -- uid: 11119 - type: WallReinforced - components: - - pos: 34.5,-30.5 - parent: 0 - type: Transform -- uid: 11120 - type: WallReinforced - components: - - pos: 34.5,-31.5 - parent: 0 - type: Transform -- uid: 11121 - type: WallSolid - components: - - pos: 35.5,-35.5 - parent: 0 - type: Transform -- uid: 11122 - type: WallSolid - components: - - pos: 36.5,-35.5 - parent: 0 - type: Transform -- uid: 11123 - type: WallSolid - components: - - pos: 37.5,-35.5 - parent: 0 - type: Transform -- uid: 11124 - type: WallSolid - components: - - pos: 34.5,-35.5 - parent: 0 - type: Transform -- uid: 11125 - type: WallReinforced - components: - - pos: 22.5,-39.5 - parent: 0 - type: Transform -- uid: 11126 - type: ReinforcedWindow - components: - - pos: 18.5,-39.5 - parent: 0 - type: Transform -- uid: 11127 - type: ReinforcedWindow - components: - - pos: 17.5,-39.5 - parent: 0 - type: Transform -- uid: 11128 - type: WallReinforced - components: - - pos: 19.5,-39.5 - parent: 0 - type: Transform -- uid: 11129 - type: ReinforcedWindow - components: - - pos: 21.5,-39.5 - parent: 0 - type: Transform -- uid: 11130 - type: ReinforcedWindow - components: - - pos: 20.5,-39.5 - parent: 0 - type: Transform -- uid: 11131 - type: WallReinforced - components: - - pos: 16.5,-39.5 - parent: 0 - type: Transform -- uid: 11132 - type: WallReinforced - components: - - pos: 24.5,-37.5 - parent: 0 - type: Transform -- uid: 11133 - type: WallReinforced - components: - - pos: 23.5,-37.5 - parent: 0 - type: Transform -- uid: 11134 - type: WallReinforced - components: - - pos: 23.5,-38.5 - parent: 0 - type: Transform -- uid: 11135 - type: WallReinforced - components: - - pos: 27.5,-35.5 - parent: 0 - type: Transform -- uid: 11136 - type: WallReinforced - components: - - pos: 36.5,-38.5 - parent: 0 - type: Transform -- uid: 11137 - type: WallReinforced - components: - - pos: 37.5,-38.5 - parent: 0 - type: Transform -- uid: 11138 - type: WallReinforced - components: - - pos: 37.5,-37.5 - parent: 0 - type: Transform -- uid: 11139 - type: AirlockExternalGlassLocked - components: - - pos: 38.5,-36.5 - parent: 0 - type: Transform -- uid: 11140 - type: WallReinforced - components: - - pos: 38.5,-37.5 - parent: 0 - type: Transform -- uid: 11141 - type: AirlockExternalGlassLocked - components: - - pos: 35.5,-36.5 - parent: 0 - type: Transform -- uid: 11142 - type: WallReinforced - components: - - pos: 23.5,-39.5 - parent: 0 - type: Transform -- uid: 11143 - type: SignXenolab - components: - - pos: 7.5,-31.5 - parent: 0 - type: Transform -- uid: 11144 - type: TableReinforced - components: - - pos: 8.5,-44.5 - parent: 0 - type: Transform -- uid: 11145 - type: TableReinforced - components: - - pos: 7.5,-44.5 - parent: 0 - type: Transform -- uid: 11146 - type: TableReinforced - components: - - pos: 10.5,-44.5 - parent: 0 - type: Transform -- uid: 11147 - type: ComputerFrame - components: - - rot: 3.141592653589793 rad - pos: 9.5,-44.5 - parent: 0 - type: Transform -- uid: 11148 - type: ChairOfficeLight - components: - - pos: 9.5,-43.5 - parent: 0 - type: Transform -- uid: 11149 - type: ClosetL3ScienceFilled - components: - - pos: 7.5,-43.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 11150 - type: APCBasic - components: - - pos: 10.5,-35.5 - parent: 0 - type: Transform -- uid: 11151 - type: CableMV - components: - - pos: 14.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11152 - type: CableMV - components: - - pos: 13.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11153 - type: CableMV - components: - - pos: 12.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11154 - type: CableMV - components: - - pos: 12.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11155 - type: CableMV - components: - - pos: 12.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11156 - type: CableMV - components: - - pos: 12.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11157 - type: CableMV - components: - - pos: 11.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11158 - type: CableMV - components: - - pos: 10.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11159 - type: CableMV - components: - - pos: 9.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11160 - type: CableMV - components: - - pos: 8.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11161 - type: CableMV - components: - - pos: 8.5,-31.5 - parent: 0 - type: Transform -- uid: 11162 - type: CableMV - components: - - pos: 8.5,-32.5 - parent: 0 - type: Transform -- uid: 11163 - type: CableMV - components: - - pos: 8.5,-33.5 - parent: 0 - type: Transform -- uid: 11164 - type: CableMV - components: - - pos: 8.5,-34.5 - parent: 0 - type: Transform -- uid: 11165 - type: CableMV - components: - - pos: 8.5,-35.5 - parent: 0 - type: Transform -- uid: 11166 - type: CableMV - components: - - pos: 9.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11167 - type: CableMV - components: - - pos: 10.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11168 - type: CableApcExtension - components: - - pos: 9.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11169 - type: CableApcExtension - components: - - pos: 9.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11170 - type: CableApcExtension - components: - - pos: 9.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11171 - type: CableApcExtension - components: - - pos: 9.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11172 - type: CableApcExtension - components: - - pos: 9.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11173 - type: CableApcExtension - components: - - pos: 9.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11174 - type: CableApcExtension - components: - - pos: 9.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11175 - type: CableApcExtension - components: - - pos: 9.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11176 - type: CableApcExtension - components: - - pos: 9.5,-42.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11177 - type: CableApcExtension - components: - - pos: 10.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11178 - type: CableApcExtension - components: - - pos: 11.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11179 - type: CableApcExtension - components: - - pos: 12.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11180 - type: CableApcExtension - components: - - pos: 13.5,-41.5 - parent: 0 - type: Transform -- uid: 11181 - type: CableApcExtension - components: - - pos: 8.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11182 - type: CableApcExtension - components: - - pos: 7.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11183 - type: CableApcExtension - components: - - pos: 6.5,-41.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11184 - type: CableApcExtension - components: - - pos: 5.5,-41.5 - parent: 0 - type: Transform -- uid: 11185 - type: CableApcExtension - components: - - pos: 10.5,-37.5 - parent: 0 - type: Transform -- uid: 11186 - type: CableApcExtension - components: - - pos: 11.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11187 - type: CableApcExtension - components: - - pos: 12.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11188 - type: CableApcExtension - components: - - pos: 13.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11189 - type: CableApcExtension - components: - - pos: 8.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11190 - type: CableApcExtension - components: - - pos: 7.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11191 - type: CableApcExtension - components: - - pos: 6.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11192 - type: CableApcExtension - components: - - pos: 5.5,-37.5 - parent: 0 - type: Transform -- uid: 11193 - type: CableApcExtension - components: - - pos: 9.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11194 - type: CableApcExtension - components: - - pos: 9.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11195 - type: CableApcExtension - components: - - pos: 9.5,-32.5 - parent: 0 - type: Transform -- uid: 11196 - type: CableApcExtension - components: - - pos: 9.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11197 - type: CableApcExtension - components: - - pos: 8.5,-33.5 - parent: 0 - type: Transform -- uid: 11198 - type: CableApcExtension - components: - - pos: 7.5,-33.5 - parent: 0 - type: Transform -- uid: 11199 - type: CableApcExtension - components: - - pos: 6.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11200 - type: CableApcExtension - components: - - pos: 5.5,-33.5 - parent: 0 - type: Transform -- uid: 11201 - type: CableApcExtension - components: - - pos: 10.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11202 - type: CableApcExtension - components: - - pos: 9.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11203 - type: CableApcExtension - components: - - pos: 8.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11204 - type: CableApcExtension - components: - - pos: 7.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11205 - type: CableApcExtension - components: - - pos: 6.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11206 - type: CableApcExtension - components: - - pos: 5.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11207 - type: CableApcExtension - components: - - pos: 4.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11208 - type: CableApcExtension - components: - - pos: 9.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11209 - type: CableApcExtension - components: - - pos: 10.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11210 - type: CableApcExtension - components: - - pos: 11.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11211 - type: CableApcExtension - components: - - pos: 12.5,-30.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11212 - type: CableApcExtension - components: - - pos: 12.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11213 - type: CableApcExtension - components: - - pos: 12.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11214 - type: CableApcExtension - components: - - pos: 12.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11215 - type: CableApcExtension - components: - - pos: 14.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11216 - type: Grille - components: - - pos: 6.5,-34.5 - parent: 0 - type: Transform -- uid: 11217 - type: Grille - components: - - pos: 6.5,-38.5 - parent: 0 - type: Transform -- uid: 11218 - type: Grille - components: - - pos: 6.5,-40.5 - parent: 0 - type: Transform -- uid: 11219 - type: Grille - components: - - pos: 6.5,-42.5 - parent: 0 - type: Transform -- uid: 11220 - type: Grille - components: - - pos: 11.5,-42.5 - parent: 0 - type: Transform -- uid: 11221 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-36.5 - parent: 0 - type: Transform -- uid: 11222 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 6.5,-32.5 - parent: 0 - type: Transform -- uid: 11223 - type: GrilleBroken - components: - - pos: 11.5,-40.5 - parent: 0 - type: Transform -- uid: 11224 - type: DisposalBend - components: - - pos: 9.5,-30.5 - parent: 0 - type: Transform -- uid: 11225 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-30.5 - parent: 0 - type: Transform -- uid: 11226 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-30.5 - parent: 0 - type: Transform -- uid: 11227 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-31.5 - parent: 0 - type: Transform -- uid: 11228 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-32.5 - parent: 0 - type: Transform -- uid: 11229 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-33.5 - parent: 0 - type: Transform -- uid: 11230 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-34.5 - parent: 0 - type: Transform -- uid: 11231 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-35.5 - parent: 0 - type: Transform -- uid: 11232 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-36.5 - parent: 0 - type: Transform -- uid: 11233 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 9.5,-37.5 - parent: 0 - type: Transform -- uid: 11234 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 9.5,-38.5 - parent: 0 - type: Transform -- uid: 11235 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-38.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11245 - Forward: - - port: Left - uid: 11245 - Off: - - port: Middle - uid: 11245 - type: SignalReceiver -- uid: 11236 - type: RandomSpawner - components: - - pos: 12.5,-36.5 - parent: 0 - type: Transform -- uid: 11237 - type: RandomSpawner - components: - - pos: 6.5,-37.5 - parent: 0 - type: Transform -- uid: 11238 - type: RandomSpawner - components: - - pos: 4.5,-32.5 - parent: 0 - type: Transform -- uid: 11239 - type: RandomSpawner - components: - - pos: 10.5,-40.5 - parent: 0 - type: Transform -- uid: 11240 - type: TrashBananaPeel - components: - - pos: 8.641412,-38.54009 - parent: 0 - type: Transform -- uid: 11241 - type: FoodPlateTrash - components: - - pos: 9.469537,-39.368214 - parent: 0 - type: Transform -- uid: 11242 - type: FoodBowlBigTrash - components: - - pos: 10.485162,-37.493214 - parent: 0 - type: Transform -- uid: 11243 - type: FoodBowlBigTrash - components: - - pos: 10.469537,-36.29009 - parent: 0 - type: Transform -- uid: 11244 - type: Recycler - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-38.5 - parent: 0 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 11245 - Forward: - - port: Left - uid: 11245 - Off: - - port: Middle - uid: 11245 - type: SignalReceiver -- uid: 11245 - type: TwoWayLever - components: - - pos: 8.5,-37.5 - parent: 0 - type: Transform - - outputs: - Left: - - port: Forward - uid: 11235 - - port: Forward - uid: 11244 - Right: - - port: Reverse - uid: 11235 - - port: Reverse - uid: 11244 - Middle: - - port: Off - uid: 11235 - - port: Off - uid: 11244 - type: SignalTransmitter -- uid: 11246 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11247 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11248 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-37.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11249 - type: PoweredlightEmpty - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-41.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11250 - type: PoweredlightEmpty - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11251 - type: SignDisposalSpace - components: - - pos: 3.5,-31.5 - parent: 0 - type: Transform -- uid: 11252 - type: Catwalk - components: - - pos: 9.5,-36.5 - parent: 0 - type: Transform -- uid: 11253 - type: Catwalk - components: - - pos: 9.5,-35.5 - parent: 0 - type: Transform -- uid: 11254 - type: Catwalk - components: - - pos: 9.5,-34.5 - parent: 0 - type: Transform -- uid: 11255 - type: Catwalk - components: - - pos: 9.5,-33.5 - parent: 0 - type: Transform -- uid: 11256 - type: PoweredSmallLight - components: - - pos: 10.5,-30.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11257 - type: Catwalk - components: - - pos: 14.5,-33.5 - parent: 0 - type: Transform -- uid: 11258 - type: Catwalk - components: - - pos: 13.5,-33.5 - parent: 0 - type: Transform -- uid: 11259 - type: FirelockGlass - components: - - pos: 5.5,-30.5 - parent: 0 - type: Transform -- uid: 11260 - type: SignBio - components: - - pos: 10.5,-39.5 - parent: 0 - type: Transform -- uid: 11261 - type: SignBio - components: - - pos: 7.5,-39.5 - parent: 0 - type: Transform -- uid: 11262 - type: OrganHumanBrain - components: - - pos: -53.301483,-16.086002 - parent: 0 - type: Transform -- uid: 11263 - type: WallReinforced - components: - - pos: 26.5,-37.5 - parent: 0 - type: Transform -- uid: 11264 - type: WallReinforced - components: - - pos: 27.5,-37.5 - parent: 0 - type: Transform -- uid: 11265 - type: WallReinforced - components: - - pos: 27.5,-36.5 - parent: 0 - type: Transform -- uid: 11266 - type: WallSolid - components: - - pos: 23.5,-36.5 - parent: 0 - type: Transform -- uid: 11267 - type: WallSolid - components: - - pos: 23.5,-35.5 - parent: 0 - type: Transform -- uid: 11268 - type: WallSolid - components: - - pos: 22.5,-35.5 - parent: 0 - type: Transform -- uid: 11269 - type: WallSolid - components: - - pos: 21.5,-35.5 - parent: 0 - type: Transform -- uid: 11270 - type: WallSolid - components: - - pos: 20.5,-35.5 - parent: 0 - type: Transform -- uid: 11271 - type: WallSolid - components: - - pos: 18.5,-35.5 - parent: 0 - type: Transform -- uid: 11272 - type: WallSolid - components: - - pos: 17.5,-35.5 - parent: 0 - type: Transform -- uid: 11273 - type: WallSolid - components: - - pos: 16.5,-35.5 - parent: 0 - type: Transform -- uid: 11274 - type: CableApcExtension - components: - - pos: 19.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11275 - type: CableApcExtension - components: - - pos: 19.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11276 - type: CableApcExtension - components: - - pos: 19.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11277 - type: CableApcExtension - components: - - pos: 19.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11278 - type: CableApcExtension - components: - - pos: 19.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11279 - type: CableApcExtension - components: - - pos: 19.5,-38.5 - parent: 0 - type: Transform -- uid: 11280 - type: CableApcExtension - components: - - pos: 20.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11281 - type: CableApcExtension - components: - - pos: 21.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11282 - type: CableApcExtension - components: - - pos: 18.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11283 - type: CableApcExtension - components: - - pos: 17.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11284 - type: SeedExtractor - components: - - pos: 21.5,-36.5 - parent: 0 - type: Transform -- uid: 11285 - type: hydroponicsSoil - components: - - pos: 16.5,-36.5 - parent: 0 - type: Transform -- uid: 11286 - type: hydroponicsSoil - components: - - pos: 16.5,-38.5 - parent: 0 - type: Transform -- uid: 11287 - type: hydroponicsSoil - components: - - pos: 18.5,-38.5 - parent: 0 - type: Transform -- uid: 11288 - type: hydroponicsSoil - components: - - pos: 20.5,-38.5 - parent: 0 - type: Transform -- uid: 11289 - type: hydroponicsSoil - components: - - pos: 22.5,-38.5 - parent: 0 - type: Transform -- uid: 11290 - type: PottedPlantRandom - components: - - pos: 17.5,-38.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 11291 - type: PottedPlantRandom - components: - - pos: 20.5,-36.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 11292 - type: PottedPlantRandom - components: - - pos: 21.5,-38.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 11293 - type: PottedPlantRandom - components: - - pos: 17.5,-36.5 - parent: 0 - type: Transform - - containers: - stash: !type:ContainerSlot {} - type: ContainerContainer -- uid: 11294 - type: WheatBushel - components: - - pos: 18.50683,-38.558407 - parent: 0 - type: Transform -- uid: 11295 - type: LeavesCannabis - components: - - pos: 22.50683,-38.57403 - parent: 0 - type: Transform -- uid: 11296 - type: ChanterelleSeeds - components: - - pos: 16.50683,-36.589657 - parent: 0 - type: Transform -- uid: 11297 - type: TomatoSeeds - components: - - pos: 16.522455,-38.60528 - parent: 0 - type: Transform -- uid: 11298 - type: HydroponicsToolSpade - components: - - pos: 20.50683,-38.495907 - parent: 0 - type: Transform -- uid: 11299 - type: HydroponicsToolMiniHoe - components: - - pos: 16.50683,-37.620907 - parent: 0 - type: Transform -- uid: 11300 - type: AirlockMaintLocked - components: - - pos: 19.5,-35.5 - parent: 0 - type: Transform -- uid: 11301 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 19.5,-38.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11302 - type: WallSolid - components: - - pos: 27.5,-34.5 - parent: 0 - type: Transform -- uid: 11303 - type: WallSolid - components: - - pos: 26.5,-34.5 - parent: 0 - type: Transform -- uid: 11304 - type: WallSolid - components: - - pos: 23.5,-34.5 - parent: 0 - type: Transform -- uid: 11305 - type: WallSolid - components: - - pos: 24.5,-34.5 - parent: 0 - type: Transform -- uid: 11306 - type: Rack - components: - - pos: 26.5,-35.5 - parent: 0 - type: Transform -- uid: 11307 - type: Rack - components: - - pos: 24.5,-35.5 - parent: 0 - type: Transform -- uid: 11308 - type: Rack - components: - - pos: 24.5,-36.5 - parent: 0 - type: Transform -- uid: 11309 - type: ClosetMaintenanceFilledRandom - components: - - pos: 26.5,-36.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 11310 - type: CableApcExtension - components: - - pos: 33.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11311 - type: CableApcExtension - components: - - pos: 33.5,-28.5 - parent: 0 - type: Transform -- uid: 11312 - type: CableApcExtension - components: - - pos: 33.5,-29.5 - parent: 0 - type: Transform -- uid: 11313 - type: CableApcExtension - components: - - pos: 33.5,-31.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11314 - type: CableApcExtension - components: - - pos: 33.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11315 - type: CableApcExtension - components: - - pos: 33.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11316 - type: CableApcExtension - components: - - pos: 32.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11317 - type: CableApcExtension - components: - - pos: 31.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11318 - type: CableApcExtension - components: - - pos: 30.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11319 - type: CableApcExtension - components: - - pos: 29.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11320 - type: CableApcExtension - components: - - pos: 28.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11321 - type: CableApcExtension - components: - - pos: 27.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11322 - type: CableApcExtension - components: - - pos: 26.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11323 - type: CableApcExtension - components: - - pos: 25.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11324 - type: CableApcExtension - components: - - pos: 25.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11325 - type: CableApcExtension - components: - - pos: 24.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11326 - type: AirlockMaintLocked - components: - - pos: 25.5,-34.5 - parent: 0 - type: Transform -- uid: 11327 - type: SheetGlass - components: - - pos: 24.525463,-36.5151 - parent: 0 - type: Transform -- uid: 11328 - type: SheetSteel - components: - - pos: 24.400463,-36.530724 - parent: 0 - type: Transform -- uid: 11329 - type: BoxLightMixed - components: - - pos: 24.509838,-35.436974 - parent: 0 - type: Transform -- uid: 11330 - type: CrowbarRed - components: - - pos: 26.509838,-35.582523 - parent: 0 - type: Transform -- uid: 11331 - type: Wrench - components: - - pos: 26.494213,-35.426273 - parent: 0 - type: Transform -- uid: 11332 - type: ClothingUnderSocksCoder - components: - - pos: 14.5012665,-31.61288 - parent: 0 - type: Transform -- uid: 11333 - type: ClothingUnderSocksBee - components: - - pos: 22.487274,-37.39112 - parent: 0 - type: Transform -- uid: 11334 - type: PlushieBee - components: - - pos: 22.549774,-36.48487 - parent: 0 - type: Transform -- uid: 11335 - type: ClothingNeckScarfStripedRed - components: - - pos: -1.9656177,-24.517466 - parent: 0 - type: Transform -- uid: 11336 - type: ClothingNeckScarfStripedBlue - components: - - pos: -10.519465,-25.25184 - parent: 0 - type: Transform -- uid: 11337 - type: ClothingNeckScarfStripedGreen - components: - - pos: -20.480177,5.5451813 - parent: 0 - type: Transform -- uid: 11338 - type: ClothingNeckScarfStripedBlue - components: - - pos: -33.593323,-36.57982 - parent: 0 - type: Transform -- uid: 11339 - type: ClothingHeadHatCone - components: - - pos: 8.449844,17.514982 - parent: 0 - type: Transform -- uid: 11340 - type: WallReinforced - components: - - pos: 38.5,-35.5 - parent: 0 - type: Transform -- uid: 11341 - type: WallReinforced - components: - - pos: 38.5,-34.5 - parent: 0 - type: Transform -- uid: 11342 - type: WallReinforced - components: - - pos: 38.5,-33.5 - parent: 0 - type: Transform -- uid: 11343 - type: ReinforcedWindow - components: - - pos: 38.5,-32.5 - parent: 0 - type: Transform -- uid: 11344 - type: WallReinforced - components: - - pos: 36.5,-31.5 - parent: 0 - type: Transform -- uid: 11345 - type: WallReinforced - components: - - pos: 35.5,-31.5 - parent: 0 - type: Transform -- uid: 11346 - type: ReinforcedWindow - components: - - pos: 38.5,-31.5 - parent: 0 - type: Transform -- uid: 11347 - type: ReinforcedWindow - components: - - pos: 37.5,-31.5 - parent: 0 - type: Transform -- uid: 11348 - type: WallSolid - components: - - pos: 34.5,-33.5 - parent: 0 - type: Transform -- uid: 11349 - type: WallSolid - components: - - pos: 34.5,-32.5 - parent: 0 - type: Transform -- uid: 11350 - type: AirlockMaintLocked - components: - - pos: 34.5,-34.5 - parent: 0 - type: Transform -- uid: 11351 - type: WardrobeBlackFilled - components: - - pos: 35.5,-32.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 11352 - type: Bookshelf - components: - - pos: 36.5,-32.5 - parent: 0 - type: Transform -- uid: 11353 - type: ComfyChair - components: - - pos: 37.5,-32.5 - parent: 0 - type: Transform -- uid: 11354 - type: Grille - components: - - pos: 37.5,-31.5 - parent: 0 - type: Transform -- uid: 11355 - type: Grille - components: - - pos: 38.5,-31.5 - parent: 0 - type: Transform -- uid: 11356 - type: Grille - components: - - pos: 38.5,-32.5 - parent: 0 - type: Transform -- uid: 11357 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11358 - type: Bed - components: - - pos: 37.5,-34.5 - parent: 0 - type: Transform -- uid: 11359 - type: BedsheetSpawner - components: - - pos: 37.5,-34.5 - parent: 0 - type: Transform -- uid: 11360 - type: CarpetBlack - components: - - pos: 36.5,-34.5 - parent: 0 - type: Transform -- uid: 11361 - type: CarpetBlack - components: - - pos: 36.5,-33.5 - parent: 0 - type: Transform -- uid: 11362 - type: CarpetBlack - components: - - pos: 37.5,-33.5 - parent: 0 - type: Transform -- uid: 11363 - type: CarpetBlack - components: - - pos: 37.5,-34.5 - parent: 0 - type: Transform -- uid: 11364 - type: FirelockGlass - components: - - pos: 23.5,-33.5 - parent: 0 - type: Transform -- uid: 11365 - type: FirelockGlass - components: - - pos: 23.5,-32.5 - parent: 0 - type: Transform -- uid: 11366 - type: WallSolid - components: - - pos: 35.5,-38.5 - parent: 0 - type: Transform -- uid: 11367 - type: WallSolid - components: - - pos: 35.5,-37.5 - parent: 0 - type: Transform -- uid: 11368 - type: WallSolid - components: - - pos: 33.5,-35.5 - parent: 0 - type: Transform -- uid: 11369 - type: WallSolid - components: - - pos: 32.5,-35.5 - parent: 0 - type: Transform -- uid: 11370 - type: WallSolid - components: - - pos: 29.5,-36.5 - parent: 0 - type: Transform -- uid: 11371 - type: WallReinforced - components: - - pos: 35.5,-39.5 - parent: 0 - type: Transform -- uid: 11372 - type: WallReinforced - components: - - pos: 35.5,-40.5 - parent: 0 - type: Transform -- uid: 11373 - type: WallReinforced - components: - - pos: 34.5,-40.5 - parent: 0 - type: Transform -- uid: 11374 - type: WallReinforced - components: - - pos: 33.5,-40.5 - parent: 0 - type: Transform -- uid: 11375 - type: WallReinforced - components: - - pos: 32.5,-40.5 - parent: 0 - type: Transform -- uid: 11376 - type: WallReinforced - components: - - pos: 31.5,-40.5 - parent: 0 - type: Transform -- uid: 11377 - type: WallReinforced - components: - - pos: 30.5,-40.5 - parent: 0 - type: Transform -- uid: 11378 - type: WallReinforced - components: - - pos: 29.5,-40.5 - parent: 0 - type: Transform -- uid: 11379 - type: WallReinforced - components: - - pos: 29.5,-39.5 - parent: 0 - type: Transform -- uid: 11380 - type: WallReinforced - components: - - pos: 29.5,-38.5 - parent: 0 - type: Transform -- uid: 11381 - type: WallReinforced - components: - - pos: 29.5,-37.5 - parent: 0 - type: Transform -- uid: 11382 - type: WallReinforced - components: - - pos: 28.5,-37.5 - parent: 0 - type: Transform -- uid: 11383 - type: WallSolid - components: - - pos: 29.5,-35.5 - parent: 0 - type: Transform -- uid: 11384 - type: WallSolid - components: - - pos: 30.5,-35.5 - parent: 0 - type: Transform -- uid: 11385 - type: WallSolid - components: - - pos: 34.5,-37.5 - parent: 0 - type: Transform -- uid: 11386 - type: AirlockEngineeringLocked - components: - - pos: 33.5,-37.5 - parent: 0 - type: Transform -- uid: 11387 - type: ReinforcedWindow - components: - - pos: 31.5,-37.5 - parent: 0 - type: Transform -- uid: 11388 - type: ReinforcedWindow - components: - - pos: 32.5,-37.5 - parent: 0 - type: Transform -- uid: 11389 - type: WallSolid - components: - - pos: 30.5,-37.5 - parent: 0 - type: Transform -- uid: 11390 - type: Grille - components: - - pos: 32.5,-37.5 - parent: 0 - type: Transform -- uid: 11391 - type: Grille - components: - - pos: 31.5,-37.5 - parent: 0 - type: Transform -- uid: 11392 - type: SMESBasic - components: - - pos: 33.5,-39.5 - parent: 0 - type: Transform -- uid: 11393 - type: CableTerminal - components: - - pos: 33.5,-38.5 - parent: 0 - type: Transform -- uid: 11394 - type: CableHV - components: - - pos: 33.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11395 - type: CableHV - components: - - pos: 32.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11396 - type: CableHV - components: - - pos: 31.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11397 - type: CableHV - components: - - pos: 33.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11398 - type: CableHV - components: - - pos: 33.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11399 - type: CableHV - components: - - pos: 33.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11400 - type: CableHV - components: - - pos: 34.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11401 - type: CableHV - components: - - pos: 35.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11402 - type: CableHV - components: - - pos: 36.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11403 - type: CableHV - components: - - pos: 37.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11404 - type: CableHV - components: - - pos: 38.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11405 - type: CableHV - components: - - pos: 31.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11406 - type: CableHV - components: - - pos: 31.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11407 - type: CableHV - components: - - pos: 31.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11408 - type: CableHV - components: - - pos: 31.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11409 - type: CableHV - components: - - pos: 31.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11410 - type: CableHV - components: - - pos: 31.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11411 - type: CableHV - components: - - pos: 30.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11412 - type: CableHV - components: - - pos: 29.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11413 - type: CableHV - components: - - pos: 28.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11414 - type: CableHV - components: - - pos: 27.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11415 - type: CableHV - components: - - pos: 26.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11416 - type: CableHV - components: - - pos: 25.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11417 - type: CableHV - components: - - pos: 24.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11418 - type: CableHV - components: - - pos: 23.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11419 - type: CableHV - components: - - pos: 22.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11420 - type: CableHV - components: - - pos: 21.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11421 - type: CableHV - components: - - pos: 20.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11422 - type: CableHV - components: - - pos: 19.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11423 - type: Catwalk - components: - - pos: 19.5,-33.5 - parent: 0 - type: Transform -- uid: 11424 - type: Catwalk - components: - - pos: 21.5,-33.5 - parent: 0 - type: Transform -- uid: 11425 - type: Catwalk - components: - - pos: 22.5,-33.5 - parent: 0 - type: Transform -- uid: 11426 - type: Catwalk - components: - - pos: 20.5,-33.5 - parent: 0 - type: Transform -- uid: 11427 - type: Catwalk - components: - - pos: 24.5,-33.5 - parent: 0 - type: Transform -- uid: 11428 - type: Catwalk - components: - - pos: 25.5,-33.5 - parent: 0 - type: Transform -- uid: 11429 - type: Catwalk - components: - - pos: 26.5,-33.5 - parent: 0 - type: Transform -- uid: 11430 - type: Catwalk - components: - - pos: 27.5,-33.5 - parent: 0 - type: Transform -- uid: 11431 - type: Catwalk - components: - - pos: 28.5,-33.5 - parent: 0 - type: Transform -- uid: 11432 - type: Catwalk - components: - - pos: 29.5,-33.5 - parent: 0 - type: Transform -- uid: 11433 - type: Catwalk - components: - - pos: 30.5,-33.5 - parent: 0 - type: Transform -- uid: 11434 - type: AirlockMaintLocked - components: - - pos: 31.5,-35.5 - parent: 0 - type: Transform -- uid: 11435 - type: SubstationBasic - components: - - pos: 30.5,-39.5 - parent: 0 - type: Transform -- uid: 11436 - type: APCBasic - components: - - pos: 30.5,-37.5 - parent: 0 - type: Transform -- uid: 11437 - type: CableHV - components: - - pos: 30.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11438 - type: CableMV - components: - - pos: 30.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11439 - type: CableMV - components: - - pos: 30.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11440 - type: CableMV - components: - - pos: 30.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11441 - type: CableApcExtension - components: - - pos: 30.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11442 - type: CableApcExtension - components: - - pos: 30.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11443 - type: CableApcExtension - components: - - pos: 32.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11444 - type: CableApcExtension - components: - - pos: 31.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11445 - type: CableApcExtension - components: - - pos: 33.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11446 - type: CableApcExtension - components: - - pos: 34.5,-38.5 - parent: 0 - type: Transform -- uid: 11447 - type: CableApcExtension - components: - - pos: 33.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11448 - type: CableApcExtension - components: - - pos: 34.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11449 - type: CableApcExtension - components: - - pos: 35.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11450 - type: CableApcExtension - components: - - pos: 36.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11451 - type: CableApcExtension - components: - - pos: 37.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11452 - type: CableApcExtension - components: - - pos: 32.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11453 - type: CableApcExtension - components: - - pos: 31.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11454 - type: CableApcExtension - components: - - pos: 31.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11455 - type: CableApcExtension - components: - - pos: 31.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11456 - type: CableApcExtension - components: - - pos: 33.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11457 - type: CableApcExtension - components: - - pos: 34.5,-34.5 - parent: 0 - type: Transform -- uid: 11458 - type: CableApcExtension - components: - - pos: 35.5,-34.5 - parent: 0 - type: Transform -- uid: 11459 - type: CableApcExtension - components: - - pos: 36.5,-34.5 - parent: 0 - type: Transform -- uid: 11460 - type: CableApcExtension - components: - - pos: 36.5,-33.5 - parent: 0 - type: Transform -- uid: 11461 - type: ClosetEmergencyFilledRandom - components: - - pos: 36.5,-37.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 11462 - type: PoweredSmallLight - components: - - pos: 32.5,-36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11463 - type: WeldingFuelTankFull - components: - - pos: 28.5,-36.5 - parent: 0 - type: Transform -- uid: 11464 - type: ComfyChair - components: - - pos: 32.5,-30.5 - parent: 0 - type: Transform -- uid: 11465 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-31.5 - parent: 0 - type: Transform -- uid: 11466 - type: Table - components: - - pos: 31.5,-30.5 - parent: 0 - type: Transform -- uid: 11467 - type: MaintenanceFluffSpawner - components: - - pos: 31.5,-30.5 - parent: 0 - type: Transform -- uid: 11468 - type: ClothingOuterHoodieBlack - components: - - pos: 37.580452,-32.58558 - parent: 0 - type: Transform -- uid: 11469 - type: ClothingHeadHatWeldingMaskFlame - components: - - pos: 28.533575,-35.71058 - parent: 0 - type: Transform -- uid: 11470 - type: WelderMini - components: - - pos: 28.545038,-35.383316 - parent: 0 - type: Transform -- uid: 11471 - type: Rack - components: - - pos: 28.5,-35.5 - parent: 0 - type: Transform -- uid: 11473 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-32.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11474 - type: PoweredSmallLight - components: - - pos: 36.5,-36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11475 - type: PoweredSmallLight - components: - - pos: 16.5,-33.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11476 - type: PoweredSmallLight - components: - - pos: 18.5,-36.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11477 - type: CableHV - components: - - pos: 53.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11478 - type: CableHV - components: - - pos: 52.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11479 - type: CableHV - components: - - pos: 39.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11480 - type: CableHV - components: - - pos: 40.5,-36.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11481 - type: CableHV - components: - - pos: 41.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11482 - type: CableHV - components: - - pos: 41.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11483 - type: CableHV - components: - - pos: 41.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11484 - type: CableHV - components: - - pos: 41.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11485 - type: CableHV - components: - - pos: 43.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11486 - type: CableHV - components: - - pos: 43.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11487 - type: CableHV - components: - - pos: 43.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11488 - type: CableHV - components: - - pos: 43.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11489 - type: CableHV - components: - - pos: 45.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11490 - type: CableHV - components: - - pos: 45.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11491 - type: CableHV - components: - - pos: 45.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11492 - type: CableHV - components: - - pos: 45.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11493 - type: CableHV - components: - - pos: 47.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11494 - type: CableHV - components: - - pos: 47.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11495 - type: CableHV - components: - - pos: 47.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11496 - type: CableHV - components: - - pos: 47.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11497 - type: CableHV - components: - - pos: 49.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11498 - type: CableHV - components: - - pos: 49.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11499 - type: CableHV - components: - - pos: 49.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11500 - type: CableHV - components: - - pos: 49.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11501 - type: CableHV - components: - - pos: 51.5,-35.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11502 - type: CableHV - components: - - pos: 51.5,-34.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11503 - type: CableHV - components: - - pos: 51.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11504 - type: CableHV - components: - - pos: 51.5,-32.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11505 - type: CableHV - components: - - pos: 51.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11506 - type: CableHV - components: - - pos: 51.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11507 - type: CableHV - components: - - pos: 51.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11508 - type: CableHV - components: - - pos: 51.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11509 - type: CableHV - components: - - pos: 49.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11510 - type: CableHV - components: - - pos: 49.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11511 - type: CableHV - components: - - pos: 49.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11512 - type: CableHV - components: - - pos: 49.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11513 - type: CableHV - components: - - pos: 47.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11514 - type: CableHV - components: - - pos: 47.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11515 - type: CableHV - components: - - pos: 47.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11516 - type: CableHV - components: - - pos: 47.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11517 - type: CableHV - components: - - pos: 45.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11518 - type: CableHV - components: - - pos: 45.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11519 - type: CableHV - components: - - pos: 45.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11520 - type: CableHV - components: - - pos: 45.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11521 - type: CableHV - components: - - pos: 43.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11522 - type: CableHV - components: - - pos: 43.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11523 - type: CableHV - components: - - pos: 43.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11524 - type: CableHV - components: - - pos: 43.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11525 - type: CableHV - components: - - pos: 41.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11526 - type: CableHV - components: - - pos: 41.5,-39.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11527 - type: CableHV - components: - - pos: 41.5,-38.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11528 - type: CableHV - components: - - pos: 41.5,-37.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11529 - type: SolarTracker - components: - - pos: 53.5,-36.5 - parent: 0 - type: Transform -- uid: 11530 - type: SolarPanel - components: - - pos: 41.5,-35.5 - parent: 0 - type: Transform -- uid: 11531 - type: SolarPanel - components: - - pos: 41.5,-34.5 - parent: 0 - type: Transform -- uid: 11532 - type: SolarPanel - components: - - pos: 41.5,-33.5 - parent: 0 - type: Transform -- uid: 11533 - type: SolarPanel - components: - - pos: 41.5,-32.5 - parent: 0 - type: Transform -- uid: 11534 - type: SolarPanel - components: - - pos: 43.5,-35.5 - parent: 0 - type: Transform -- uid: 11535 - type: SolarPanel - components: - - pos: 43.5,-34.5 - parent: 0 - type: Transform -- uid: 11536 - type: SolarPanel - components: - - pos: 43.5,-33.5 - parent: 0 - type: Transform -- uid: 11537 - type: SolarPanel - components: - - pos: 43.5,-32.5 - parent: 0 - type: Transform -- uid: 11538 - type: SolarPanel - components: - - pos: 45.5,-35.5 - parent: 0 - type: Transform -- uid: 11539 - type: SolarPanel - components: - - pos: 45.5,-34.5 - parent: 0 - type: Transform -- uid: 11540 - type: SolarPanel - components: - - pos: 45.5,-33.5 - parent: 0 - type: Transform -- uid: 11541 - type: SolarPanel - components: - - pos: 45.5,-32.5 - parent: 0 - type: Transform -- uid: 11542 - type: SolarPanel - components: - - pos: 47.5,-35.5 - parent: 0 - type: Transform -- uid: 11543 - type: SolarPanel - components: - - pos: 47.5,-34.5 - parent: 0 - type: Transform -- uid: 11544 - type: SolarPanel - components: - - pos: 47.5,-33.5 - parent: 0 - type: Transform -- uid: 11545 - type: SolarPanel - components: - - pos: 47.5,-32.5 - parent: 0 - type: Transform -- uid: 11546 - type: SolarPanel - components: - - pos: 49.5,-35.5 - parent: 0 - type: Transform -- uid: 11547 - type: SolarPanel - components: - - pos: 49.5,-34.5 - parent: 0 - type: Transform -- uid: 11548 - type: SolarPanel - components: - - pos: 49.5,-33.5 - parent: 0 - type: Transform -- uid: 11549 - type: SolarPanel - components: - - pos: 49.5,-32.5 - parent: 0 - type: Transform -- uid: 11550 - type: SolarPanel - components: - - pos: 51.5,-35.5 - parent: 0 - type: Transform -- uid: 11551 - type: SolarPanel - components: - - pos: 51.5,-34.5 - parent: 0 - type: Transform -- uid: 11552 - type: SolarPanel - components: - - pos: 51.5,-33.5 - parent: 0 - type: Transform -- uid: 11553 - type: SolarPanel - components: - - pos: 51.5,-32.5 - parent: 0 - type: Transform -- uid: 11554 - type: SolarPanel - components: - - pos: 51.5,-40.5 - parent: 0 - type: Transform -- uid: 11555 - type: SolarPanel - components: - - pos: 51.5,-39.5 - parent: 0 - type: Transform -- uid: 11556 - type: SolarPanel - components: - - pos: 51.5,-38.5 - parent: 0 - type: Transform -- uid: 11557 - type: SolarPanel - components: - - pos: 51.5,-37.5 - parent: 0 - type: Transform -- uid: 11558 - type: SolarPanel - components: - - pos: 49.5,-40.5 - parent: 0 - type: Transform -- uid: 11559 - type: SolarPanel - components: - - pos: 49.5,-39.5 - parent: 0 - type: Transform -- uid: 11560 - type: SolarPanel - components: - - pos: 49.5,-38.5 - parent: 0 - type: Transform -- uid: 11561 - type: SolarPanel - components: - - pos: 49.5,-37.5 - parent: 0 - type: Transform -- uid: 11562 - type: SolarPanel - components: - - pos: 47.5,-40.5 - parent: 0 - type: Transform -- uid: 11563 - type: SolarPanel - components: - - pos: 47.5,-39.5 - parent: 0 - type: Transform -- uid: 11564 - type: SolarPanel - components: - - pos: 47.5,-38.5 - parent: 0 - type: Transform -- uid: 11565 - type: SolarPanel - components: - - pos: 47.5,-37.5 - parent: 0 - type: Transform -- uid: 11566 - type: SolarPanel - components: - - pos: 45.5,-40.5 - parent: 0 - type: Transform -- uid: 11567 - type: SolarPanel - components: - - pos: 45.5,-39.5 - parent: 0 - type: Transform -- uid: 11568 - type: SolarPanel - components: - - pos: 45.5,-38.5 - parent: 0 - type: Transform -- uid: 11569 - type: SolarPanel - components: - - pos: 45.5,-37.5 - parent: 0 - type: Transform -- uid: 11570 - type: SolarPanel - components: - - pos: 43.5,-40.5 - parent: 0 - type: Transform -- uid: 11571 - type: SolarPanel - components: - - pos: 43.5,-39.5 - parent: 0 - type: Transform -- uid: 11572 - type: SolarPanel - components: - - pos: 43.5,-38.5 - parent: 0 - type: Transform -- uid: 11573 - type: SolarPanel - components: - - pos: 43.5,-37.5 - parent: 0 - type: Transform -- uid: 11574 - type: SolarPanel - components: - - pos: 41.5,-40.5 - parent: 0 - type: Transform -- uid: 11575 - type: SolarPanel - components: - - pos: 41.5,-39.5 - parent: 0 - type: Transform -- uid: 11576 - type: SolarPanel - components: - - pos: 41.5,-38.5 - parent: 0 - type: Transform -- uid: 11577 - type: SolarPanel - components: - - pos: 41.5,-37.5 - parent: 0 - type: Transform -- uid: 11578 - type: Catwalk - components: - - pos: 39.5,-36.5 - parent: 0 - type: Transform -- uid: 11579 - type: Catwalk - components: - - pos: 40.5,-36.5 - parent: 0 - type: Transform -- uid: 11580 - type: Catwalk - components: - - pos: 41.5,-36.5 - parent: 0 - type: Transform -- uid: 11581 - type: Catwalk - components: - - pos: 42.5,-36.5 - parent: 0 - type: Transform -- uid: 11582 - type: Catwalk - components: - - pos: 43.5,-36.5 - parent: 0 - type: Transform -- uid: 11583 - type: Catwalk - components: - - pos: 44.5,-36.5 - parent: 0 - type: Transform -- uid: 11584 - type: Catwalk - components: - - pos: 45.5,-36.5 - parent: 0 - type: Transform -- uid: 11585 - type: Catwalk - components: - - pos: 46.5,-36.5 - parent: 0 - type: Transform -- uid: 11586 - type: Catwalk - components: - - pos: 47.5,-36.5 - parent: 0 - type: Transform -- uid: 11587 - type: Catwalk - components: - - pos: 48.5,-36.5 - parent: 0 - type: Transform -- uid: 11588 - type: Catwalk - components: - - pos: 49.5,-36.5 - parent: 0 - type: Transform -- uid: 11589 - type: Catwalk - components: - - pos: 50.5,-36.5 - parent: 0 - type: Transform -- uid: 11590 - type: Catwalk - components: - - pos: 51.5,-36.5 - parent: 0 - type: Transform -- uid: 11591 - type: Catwalk - components: - - pos: 52.5,-36.5 - parent: 0 - type: Transform -- uid: 11592 - type: Catwalk - components: - - pos: 50.5,-35.5 - parent: 0 - type: Transform -- uid: 11593 - type: Catwalk - components: - - pos: 50.5,-34.5 - parent: 0 - type: Transform -- uid: 11594 - type: Catwalk - components: - - pos: 50.5,-33.5 - parent: 0 - type: Transform -- uid: 11595 - type: Catwalk - components: - - pos: 50.5,-32.5 - parent: 0 - type: Transform -- uid: 11596 - type: Catwalk - components: - - pos: 46.5,-35.5 - parent: 0 - type: Transform -- uid: 11597 - type: Catwalk - components: - - pos: 46.5,-34.5 - parent: 0 - type: Transform -- uid: 11598 - type: Catwalk - components: - - pos: 46.5,-33.5 - parent: 0 - type: Transform -- uid: 11599 - type: Catwalk - components: - - pos: 46.5,-32.5 - parent: 0 - type: Transform -- uid: 11600 - type: Catwalk - components: - - pos: 42.5,-35.5 - parent: 0 - type: Transform -- uid: 11601 - type: Catwalk - components: - - pos: 42.5,-34.5 - parent: 0 - type: Transform -- uid: 11602 - type: Catwalk - components: - - pos: 42.5,-33.5 - parent: 0 - type: Transform -- uid: 11603 - type: Catwalk - components: - - pos: 42.5,-32.5 - parent: 0 - type: Transform -- uid: 11604 - type: Catwalk - components: - - pos: 42.5,-40.5 - parent: 0 - type: Transform -- uid: 11605 - type: Catwalk - components: - - pos: 42.5,-39.5 - parent: 0 - type: Transform -- uid: 11606 - type: Catwalk - components: - - pos: 42.5,-38.5 - parent: 0 - type: Transform -- uid: 11607 - type: Catwalk - components: - - pos: 42.5,-37.5 - parent: 0 - type: Transform -- uid: 11608 - type: Catwalk - components: - - pos: 46.5,-40.5 - parent: 0 - type: Transform -- uid: 11609 - type: Catwalk - components: - - pos: 46.5,-39.5 - parent: 0 - type: Transform -- uid: 11610 - type: Catwalk - components: - - pos: 46.5,-38.5 - parent: 0 - type: Transform -- uid: 11611 - type: Catwalk - components: - - pos: 46.5,-37.5 - parent: 0 - type: Transform -- uid: 11612 - type: Catwalk - components: - - pos: 50.5,-40.5 - parent: 0 - type: Transform -- uid: 11613 - type: Catwalk - components: - - pos: 50.5,-39.5 - parent: 0 - type: Transform -- uid: 11614 - type: Catwalk - components: - - pos: 50.5,-38.5 - parent: 0 - type: Transform -- uid: 11615 - type: Catwalk - components: - - pos: 50.5,-37.5 - parent: 0 - type: Transform -- uid: 11616 - type: AsteroidRock - components: - - pos: 36.5,-30.5 - parent: 0 - type: Transform -- uid: 11617 - type: Pickaxe - components: - - pos: 37.304466,-40.56443 - parent: 0 - type: Transform -- uid: 11618 - type: ClosetMaintenanceFilledRandom - components: - - pos: 30.5,-36.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 11619 - type: Catwalk - components: - - pos: 37.5,-36.5 - parent: 0 - type: Transform -- uid: 11620 - type: Catwalk - components: - - pos: 36.5,-36.5 - parent: 0 - type: Transform -- uid: 11621 - type: AsteroidRock - components: - - pos: 36.5,-39.5 - parent: 0 - type: Transform -- uid: 11622 - type: AsteroidRock - components: - - pos: 34.5,-41.5 - parent: 0 - type: Transform -- uid: 11623 - type: AsteroidRock - components: - - pos: 33.5,-41.5 - parent: 0 - type: Transform -- uid: 11624 - type: AsteroidRock - components: - - pos: 32.5,-41.5 - parent: 0 - type: Transform -- uid: 11625 - type: AsteroidRock - components: - - pos: 31.5,-41.5 - parent: 0 - type: Transform -- uid: 11626 - type: AsteroidRock - components: - - pos: 24.5,-39.5 - parent: 0 - type: Transform -- uid: 11627 - type: AsteroidRock - components: - - pos: 25.5,-39.5 - parent: 0 - type: Transform -- uid: 11628 - type: AsteroidRock - components: - - pos: 22.5,-40.5 - parent: 0 - type: Transform -- uid: 11629 - type: AsteroidRock - components: - - pos: 23.5,-40.5 - parent: 0 - type: Transform -- uid: 11630 - type: AsteroidRock - components: - - pos: 23.5,-41.5 - parent: 0 - type: Transform -- uid: 11631 - type: AsteroidRock - components: - - pos: 23.5,-42.5 - parent: 0 - type: Transform -- uid: 11632 - type: AsteroidRock - components: - - pos: 16.5,-40.5 - parent: 0 - type: Transform -- uid: 11633 - type: AsteroidRock - components: - - pos: 16.5,-41.5 - parent: 0 - type: Transform -- uid: 11634 - type: AsteroidRock - components: - - pos: 19.5,-40.5 - parent: 0 - type: Transform -- uid: 11635 - type: AsteroidRock - components: - - pos: 16.5,-42.5 - parent: 0 - type: Transform -- uid: 11636 - type: AsteroidRock - components: - - pos: 17.5,-42.5 - parent: 0 - type: Transform -- uid: 11637 - type: AsteroidRock - components: - - pos: 16.5,-43.5 - parent: 0 - type: Transform -- uid: 11638 - type: AsteroidRock - components: - - pos: 17.5,-43.5 - parent: 0 - type: Transform -- uid: 11639 - type: AsteroidRock - components: - - pos: 18.5,-43.5 - parent: 0 - type: Transform -- uid: 11640 - type: AsteroidRock - components: - - pos: 18.5,-44.5 - parent: 0 - type: Transform -- uid: 11641 - type: AsteroidRock - components: - - pos: 17.5,-44.5 - parent: 0 - type: Transform -- uid: 11642 - type: NuclearBombKeg - components: - - pos: 16.5,-44.5 - parent: 0 - type: Transform -- uid: 11643 - type: AsteroidRock - components: - - pos: 15.5,-44.5 - parent: 0 - type: Transform -- uid: 11644 - type: AsteroidRock - components: - - pos: 14.5,-44.5 - parent: 0 - type: Transform -- uid: 11645 - type: AsteroidRock - components: - - pos: 13.5,-44.5 - parent: 0 - type: Transform -- uid: 11646 - type: AsteroidRock - components: - - pos: 12.5,-44.5 - parent: 0 - type: Transform -- uid: 11647 - type: AsteroidRock - components: - - pos: 12.5,-45.5 - parent: 0 - type: Transform -- uid: 11648 - type: AsteroidRock - components: - - pos: 13.5,-45.5 - parent: 0 - type: Transform -- uid: 11649 - type: AsteroidRock - components: - - pos: 14.5,-45.5 - parent: 0 - type: Transform -- uid: 11650 - type: AsteroidRock - components: - - pos: 15.5,-45.5 - parent: 0 - type: Transform -- uid: 11651 - type: AsteroidRock - components: - - pos: 16.5,-45.5 - parent: 0 - type: Transform -- uid: 11652 - type: AsteroidRock - components: - - pos: 17.5,-45.5 - parent: 0 - type: Transform -- uid: 11653 - type: AsteroidRock - components: - - pos: 12.5,-46.5 - parent: 0 - type: Transform -- uid: 11654 - type: AsteroidRock - components: - - pos: 11.5,-46.5 - parent: 0 - type: Transform -- uid: 11655 - type: AsteroidRock - components: - - pos: 10.5,-46.5 - parent: 0 - type: Transform -- uid: 11656 - type: AsteroidRock - components: - - pos: 9.5,-46.5 - parent: 0 - type: Transform -- uid: 11657 - type: AsteroidRock - components: - - pos: 8.5,-46.5 - parent: 0 - type: Transform -- uid: 11658 - type: AsteroidRock - components: - - pos: 7.5,-46.5 - parent: 0 - type: Transform -- uid: 11659 - type: AsteroidRock - components: - - pos: 5.5,-44.5 - parent: 0 - type: Transform -- uid: 11660 - type: AsteroidRock - components: - - pos: 23.5,-43.5 - parent: 0 - type: Transform -- uid: 11661 - type: MachineFrameDestroyed - components: - - pos: 4.5,-40.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 11662 - type: Table - components: - - pos: 25.5,-40.5 - parent: 0 - type: Transform -- uid: 11663 - type: AsteroidRock - components: - - pos: 26.5,-38.5 - parent: 0 - type: Transform -- uid: 11664 - type: AsteroidRock - components: - - pos: 24.5,-41.5 - parent: 0 - type: Transform -- uid: 11665 - type: AsteroidRock - components: - - pos: 24.5,-42.5 - parent: 0 - type: Transform -- uid: 11666 - type: AsteroidRock - components: - - pos: 24.5,-43.5 - parent: 0 - type: Transform -- uid: 11667 - type: AsteroidRock - components: - - pos: 24.5,-44.5 - parent: 0 - type: Transform -- uid: 11668 - type: AsteroidRock - components: - - pos: 25.5,-44.5 - parent: 0 - type: Transform -- uid: 11669 - type: AsteroidRock - components: - - pos: 25.5,-43.5 - parent: 0 - type: Transform -- uid: 11670 - type: AsteroidRock - components: - - pos: 25.5,-42.5 - parent: 0 - type: Transform -- uid: 11671 - type: ClothingOuterSuitEmergency - components: - - pos: 28.696922,-41.322342 - parent: 0 - type: Transform -- uid: 11672 - type: ClothingHeadHelmetSyndicate - components: - - pos: 28.730742,-41.454163 - parent: 0 - type: Transform -- uid: 11673 - type: FlashlightLantern - components: - - pos: 25.480742,-40.49962 - parent: 0 - type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 11674 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,24.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11675 - type: ClothingHeadHatPirate - components: - - pos: -17.677834,32.905758 - parent: 0 - type: Transform -- uid: 11676 - type: AirlockMaintLocked - components: - - pos: 25.5,-37.5 - parent: 0 - type: Transform -- uid: 11677 - type: ClothingMaskGasCentcom - components: - - pos: 25.527617,-40.28087 - parent: 0 - type: Transform -- uid: 11678 - type: Pickaxe - components: - - pos: 28.462547,-39.447342 - parent: 0 - type: Transform -- uid: 11679 - type: AsteroidRock - components: - - pos: 25.5,-38.5 - parent: 0 - type: Transform -- uid: 11680 - type: AsteroidRock - components: - - pos: 26.5,-43.5 - parent: 0 - type: Transform -- uid: 11681 - type: AsteroidRock - components: - - pos: 26.5,-44.5 - parent: 0 - type: Transform -- uid: 11682 - type: AsteroidRock - components: - - pos: 27.5,-44.5 - parent: 0 - type: Transform -- uid: 11683 - type: AsteroidRock - components: - - pos: 27.5,-43.5 - parent: 0 - type: Transform -- uid: 11684 - type: AsteroidRock - components: - - pos: 24.5,-38.5 - parent: 0 - type: Transform -- uid: 11685 - type: Girder - components: - - pos: 27.5,-38.5 - parent: 0 - type: Transform -- uid: 11686 - type: AsteroidRock - components: - - pos: 28.5,-38.5 - parent: 0 - type: Transform -- uid: 11687 - type: Girder - components: - - pos: 26.5,-42.5 - parent: 0 - type: Transform -- uid: 11689 - type: AsteroidRock - components: - - pos: 28.5,-43.5 - parent: 0 - type: Transform -- uid: 11690 - type: AsteroidRock - components: - - pos: 28.5,-42.5 - parent: 0 - type: Transform -- uid: 11691 - type: AsteroidRock - components: - - pos: 24.5,-40.5 - parent: 0 - type: Transform -- uid: 11692 - type: Girder - components: - - pos: 30.5,-41.5 - parent: 0 - type: Transform -- uid: 11693 - type: SalvageMaterialCrateSpawner - components: - - pos: 26.5,-39.5 - parent: 0 - type: Transform -- uid: 11694 - type: SignSpace - components: - - pos: 26.5,-37.5 - parent: 0 - type: Transform -- uid: 11695 - type: AsteroidRock - components: - - pos: 29.5,-42.5 - parent: 0 - type: Transform -- uid: 11696 - type: AsteroidRock - components: - - pos: 30.5,-42.5 - parent: 0 - type: Transform -- uid: 11697 - type: AsteroidRock - components: - - pos: 29.5,-43.5 - parent: 0 - type: Transform -- uid: 11698 - type: AsteroidRock - components: - - pos: 30.5,-43.5 - parent: 0 - type: Transform -- uid: 11699 - type: AsteroidRock - components: - - pos: 31.5,-42.5 - parent: 0 - type: Transform -- uid: 11700 - type: AsteroidRock - components: - - pos: 32.5,-42.5 - parent: 0 - type: Transform -- uid: 11701 - type: AsteroidRock - components: - - pos: 33.5,-42.5 - parent: 0 - type: Transform -- uid: 11702 - type: AsteroidRock - components: - - pos: 36.5,-40.5 - parent: 0 - type: Transform -- uid: 11703 - type: AsteroidRock - components: - - pos: 37.5,-39.5 - parent: 0 - type: Transform -- uid: 11704 - type: AsteroidRock - components: - - pos: 38.5,-38.5 - parent: 0 - type: Transform -- uid: 11705 - type: AsteroidRock - components: - - pos: 35.5,-41.5 - parent: 0 - type: Transform -- uid: 11706 - type: WallSolid - components: - - pos: 37.5,-42.5 - parent: 0 - type: Transform -- uid: 11707 - type: GrilleBroken - components: - - pos: 53.5,-34.5 - parent: 0 - type: Transform -- uid: 11708 - type: Grille - components: - - pos: 53.5,-33.5 - parent: 0 - type: Transform -- uid: 11709 - type: Grille - components: - - pos: 53.5,-32.5 - parent: 0 - type: Transform -- uid: 11710 - type: Grille - components: - - pos: 53.5,-40.5 - parent: 0 - type: Transform -- uid: 11711 - type: Grille - components: - - pos: 53.5,-39.5 - parent: 0 - type: Transform -- uid: 11712 - type: Grille - components: - - pos: 53.5,-38.5 - parent: 0 - type: Transform -- uid: 11713 - type: Grille - components: - - pos: 52.5,-42.5 - parent: 0 - type: Transform -- uid: 11714 - type: Grille - components: - - pos: 51.5,-42.5 - parent: 0 - type: Transform -- uid: 11715 - type: Grille - components: - - pos: 50.5,-42.5 - parent: 0 - type: Transform -- uid: 11716 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-30.5 - parent: 0 - type: Transform -- uid: 11717 - type: GrilleBroken - components: - - pos: 45.5,-30.5 - parent: 0 - type: Transform -- uid: 11718 - type: Grille - components: - - pos: 46.5,-42.5 - parent: 0 - type: Transform -- uid: 11719 - type: Grille - components: - - pos: 44.5,-42.5 - parent: 0 - type: Transform -- uid: 11720 - type: Grille - components: - - pos: 43.5,-42.5 - parent: 0 - type: Transform -- uid: 11721 - type: Grille - components: - - pos: 42.5,-42.5 - parent: 0 - type: Transform -- uid: 11722 - type: GrilleBroken - components: - - pos: 42.5,-30.5 - parent: 0 - type: Transform -- uid: 11723 - type: Grille - components: - - pos: 39.5,-42.5 - parent: 0 - type: Transform -- uid: 11724 - type: Grille - components: - - pos: 38.5,-42.5 - parent: 0 - type: Transform -- uid: 11725 - type: Grille - components: - - pos: 52.5,-30.5 - parent: 0 - type: Transform -- uid: 11726 - type: Grille - components: - - pos: 51.5,-30.5 - parent: 0 - type: Transform -- uid: 11727 - type: Grille - components: - - pos: 50.5,-30.5 - parent: 0 - type: Transform -- uid: 11728 - type: Grille - components: - - pos: 48.5,-30.5 - parent: 0 - type: Transform -- uid: 11729 - type: Grille - components: - - pos: 47.5,-30.5 - parent: 0 - type: Transform -- uid: 11730 - type: Grille - components: - - pos: 46.5,-30.5 - parent: 0 - type: Transform -- uid: 11731 - type: Grille - components: - - pos: 44.5,-30.5 - parent: 0 - type: Transform -- uid: 11732 - type: Grille - components: - - pos: 43.5,-30.5 - parent: 0 - type: Transform -- uid: 11733 - type: GrilleBroken - components: - - pos: 47.5,-42.5 - parent: 0 - type: Transform -- uid: 11734 - type: Grille - components: - - pos: 40.5,-30.5 - parent: 0 - type: Transform -- uid: 11735 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-42.5 - parent: 0 - type: Transform -- uid: 11736 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-42.5 - parent: 0 - type: Transform -- uid: 11737 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-42.5 - parent: 0 - type: Transform -- uid: 11738 - type: GrilleBroken - components: - - pos: 40.5,-42.5 - parent: 0 - type: Transform -- uid: 11739 - type: RandomSpawner - components: - - pos: -6.5,-13.5 - parent: 0 - type: Transform -- uid: 11740 - type: Grille - components: - - pos: 18.5,-39.5 - parent: 0 - type: Transform -- uid: 11741 - type: Grille - components: - - pos: 17.5,-39.5 - parent: 0 - type: Transform -- uid: 11742 - type: Grille - components: - - pos: 21.5,-39.5 - parent: 0 - type: Transform -- uid: 11743 - type: Grille - components: - - pos: 20.5,-39.5 - parent: 0 - type: Transform -- uid: 11744 - type: Floodlight - components: - - pos: 19.532274,-41.53536 - parent: 0 - type: Transform - - canCollide: False - type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- uid: 11746 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11747 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11748 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11749 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11750 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11751 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11752 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11753 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11754 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11755 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11756 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11757 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11758 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11759 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11760 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11761 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11762 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11763 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11764 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11765 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11766 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11767 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11768 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11769 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11770 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11771 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11772 - type: FloorTileItemGold - components: - - pos: -57.41745,-9.4886875 - parent: 0 - type: Transform -- uid: 11773 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-15.5 - parent: 0 - type: Transform -- uid: 11774 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-17.5 - parent: 0 - type: Transform -- uid: 11775 - type: ClosetRadiationSuitFilled - components: - - pos: -34.5,-14.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 11776 - type: Rack - components: - - pos: -34.5,-18.5 - parent: 0 - type: Transform -- uid: 11777 - type: ToolboxEmergencyFilled - components: - - pos: -34.527054,-18.337584 - parent: 0 - type: Transform -- uid: 11778 - type: ClothingHeadHatUshanka - components: - - pos: 30.766603,-32.390636 - parent: 0 - type: Transform -- uid: 11779 - type: ClothingHeadHatUshanka - components: - - pos: 30.360353,-32.65626 - parent: 0 - type: Transform -- uid: 11780 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: 29.5,-32.5 - parent: 0 - type: Transform -- uid: 11781 - type: DrinkVodkaBottleFull - components: - - pos: 28.500978,-32.265636 - parent: 0 - type: Transform -- uid: 11782 - type: DrinkVodkaBottleFull - components: - - pos: 28.688478,-32.453136 - parent: 0 - type: Transform -- uid: 11783 - type: DrinkBottleVodka - components: - - rot: 1.5707963267948966 rad - pos: 27.922853,-32.796886 - parent: 0 - type: Transform -- uid: 11784 - type: ComfyChair - components: - - pos: 26.5,-32.5 - parent: 0 - type: Transform -- uid: 11785 - type: VendingMachineNutri - components: - - flags: SessionSpecific - type: MetaData - - pos: 25.5,-32.5 - parent: 0 - type: Transform -- uid: 11786 - type: NitrogenCanister - components: - - pos: 21.5,-32.5 - parent: 0 - type: Transform -- uid: 11787 - type: OxygenCanister - components: - - pos: 20.5,-32.5 - parent: 0 - type: Transform -- uid: 11788 - type: Rack - components: - - pos: 22.5,-32.5 - parent: 0 - type: Transform -- uid: 11789 - type: ClothingMaskBreath - components: - - pos: 22.374546,-32.47262 - parent: 0 - type: Transform -- uid: 11790 - type: ClothingMaskGas - components: - - pos: 22.624546,-32.62887 - parent: 0 - type: Transform -- uid: 11791 - type: YellowOxygenTankFilled - components: - - pos: 19.452671,-32.41012 - parent: 0 - type: Transform -- uid: 11792 - type: OxygenTankFilled - components: - - pos: 19.577671,-32.613243 - parent: 0 - type: Transform -- uid: 11793 - type: FirelockGlass - components: - - pos: 26.5,-29.5 - parent: 0 - type: Transform -- uid: 11794 - type: WallSolid - components: - - pos: -15.5,1.5 - parent: 0 - type: Transform -- uid: 11795 - type: WallSolid - components: - - pos: -14.5,1.5 - parent: 0 - type: Transform -- uid: 11796 - type: WallSolid - components: - - pos: -13.5,1.5 - parent: 0 - type: Transform -- uid: 11797 - type: WallSolid - components: - - pos: -13.5,0.5 - parent: 0 - type: Transform -- uid: 11798 - type: WallSolid - components: - - pos: -13.5,-0.5 - parent: 0 - type: Transform -- uid: 11799 - type: WallSolid - components: - - pos: -13.5,-1.5 - parent: 0 - type: Transform -- uid: 11800 - type: WallSolid - components: - - pos: -13.5,-2.5 - parent: 0 - type: Transform -- uid: 11801 - type: WallSolid - components: - - pos: -14.5,-2.5 - parent: 0 - type: Transform -- uid: 11802 - type: AirlockMaintLocked - components: - - pos: -15.5,-2.5 - parent: 0 - type: Transform -- uid: 11803 - type: TableWood - components: - - pos: -14.5,-0.5 - parent: 0 - type: Transform -- uid: 11804 - type: ComfyChair - components: - - pos: -14.5,0.5 - parent: 0 - type: Transform -- uid: 11805 - type: ClothingOuterCoatInspector - components: - - pos: -14.486766,-0.42116833 - parent: 0 - type: Transform -- uid: 11806 - type: DrinkDetFlask - components: - - pos: -14.221141,-0.49929333 - parent: 0 - type: Transform -- uid: 11807 - type: DrinkDetFlask - components: - - pos: 18.44514,-15.833292 - parent: 0 - type: Transform -- uid: 11808 - type: ClothingNeckTieRed - components: - - pos: -14.6855755,-0.43132806 - parent: 0 - type: Transform -- uid: 11809 - type: ClothingHeadHatFedoraBrown - components: - - pos: -14.4824505,-0.22820306 - parent: 0 - type: Transform -- uid: 11810 - type: ClothingShoeSlippersDuck - components: - - pos: -14.4668255,-1.6813283 - parent: 0 - type: Transform -- uid: 11811 - type: ClosetBase - components: - - pos: -15.5,0.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: - - 11812 - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 11812 - type: SheetPlasma - components: - - flags: InContainer - type: MetaData - - parent: 11811 - type: Transform - - canCollide: False - type: Physics -- uid: 11813 - type: PoweredSmallLight - components: - - pos: -14.5,0.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11814 - type: Catwalk - components: - - pos: -17.5,-3.5 - parent: 0 - type: Transform -- uid: 11815 - type: Catwalk - components: - - pos: -18.5,-3.5 - parent: 0 - type: Transform -- uid: 11816 - type: Catwalk - components: - - pos: -19.5,-3.5 - parent: 0 - type: Transform -- uid: 11817 - type: Catwalk - components: - - pos: -15.5,-3.5 - parent: 0 - type: Transform -- uid: 11818 - type: Catwalk - components: - - pos: -14.5,-3.5 - parent: 0 - type: Transform -- uid: 11819 - type: Catwalk - components: - - pos: -13.5,-3.5 - parent: 0 - type: Transform -- uid: 11820 - type: Catwalk - components: - - pos: -12.5,-2.5 - parent: 0 - type: Transform -- uid: 11821 - type: Catwalk - components: - - pos: -12.5,-1.5 - parent: 0 - type: Transform -- uid: 11822 - type: Catwalk - components: - - pos: -12.5,-0.5 - parent: 0 - type: Transform -- uid: 11823 - type: Catwalk - components: - - pos: -12.5,0.5 - parent: 0 - type: Transform -- uid: 11824 - type: Catwalk - components: - - pos: -12.5,1.5 - parent: 0 - type: Transform -- uid: 11825 - type: Catwalk - components: - - pos: -12.5,2.5 - parent: 0 - type: Transform -- uid: 11826 - type: Catwalk - components: - - pos: -12.5,3.5 - parent: 0 - type: Transform -- uid: 11827 - type: Catwalk - components: - - pos: -12.5,4.5 - parent: 0 - type: Transform -- uid: 11828 - type: Catwalk - components: - - pos: -12.5,5.5 - parent: 0 - type: Transform -- uid: 11829 - type: Catwalk - components: - - pos: -12.5,6.5 - parent: 0 - type: Transform -- uid: 11830 - type: Catwalk - components: - - pos: -12.5,7.5 - parent: 0 - type: Transform -- uid: 11831 - type: Catwalk - components: - - pos: -12.5,8.5 - parent: 0 - type: Transform -- uid: 11832 - type: Catwalk - components: - - pos: -6.5,13.5 - parent: 0 - type: Transform -- uid: 11833 - type: Catwalk - components: - - pos: -7.5,13.5 - parent: 0 - type: Transform -- uid: 11834 - type: Catwalk - components: - - pos: -8.5,13.5 - parent: 0 - type: Transform -- uid: 11835 - type: Catwalk - components: - - pos: -9.5,13.5 - parent: 0 - type: Transform -- uid: 11836 - type: Catwalk - components: - - pos: -10.5,13.5 - parent: 0 - type: Transform -- uid: 11837 - type: Catwalk - components: - - pos: -11.5,13.5 - parent: 0 - type: Transform -- uid: 11838 - type: Rack - components: - - pos: -6.5,14.5 - parent: 0 - type: Transform -- uid: 11839 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: -6.4474344,14.517626 - parent: 0 - type: Transform -- uid: 11840 - type: filingCabinet - components: - - pos: -7.5,14.5 - parent: 0 - type: Transform -- uid: 11841 - type: Chair - components: - - pos: -8.5,14.5 - parent: 0 - type: Transform -- uid: 11842 - type: Table - components: - - pos: -7.5,12.5 - parent: 0 - type: Transform -- uid: 11843 - type: CigCartonRed - components: - - pos: -7.4943094,12.705126 - parent: 0 - type: Transform -- uid: 11844 - type: Lighter - components: - - pos: -7.3849344,12.439501 - parent: 0 - type: Transform -- uid: 11845 - type: DrinkWhiskeyBottleFull - components: - - pos: -7.6193094,12.673876 - parent: 0 - type: Transform -- uid: 11846 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -7.5,11.5 - parent: 0 - type: Transform -- uid: 11847 - type: Girder - components: - - pos: -13.5,11.5 - parent: 0 - type: Transform -- uid: 11848 - type: WallSolid - components: - - pos: -13.5,12.5 - parent: 0 - type: Transform -- uid: 11849 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -13.5,10.5 - parent: 0 - type: Transform -- uid: 11850 - type: ClothingShoesFlippers - components: - - pos: 4.561617,-41.479225 - parent: 0 - type: Transform -- uid: 11851 - type: ClothingEyesGlasses - components: - - pos: 10.561617,-44.322975 - parent: 0 - type: Transform -- uid: 11852 - type: ClothingEyesGlasses - components: - - pos: -14.472548,-19.383537 - parent: 0 - type: Transform -- uid: 11853 - type: ClothingHandsGlovesColorGray - components: - - pos: 12.884244,-36.874004 - parent: 0 - type: Transform -- uid: 11854 - type: ClothingNeckHeadphones - components: - - pos: -0.5106895,-15.532991 - parent: 0 - type: Transform -- uid: 11855 - type: ClothingUniformOveralls - components: - - pos: 17.403048,-37.515766 - parent: 0 - type: Transform -- uid: 11856 - type: ClothingHeadHatPaper - components: - - pos: -27.456482,29.23433 - parent: 0 - type: Transform -- uid: 11857 - type: HarmonicaInstrument - components: - - pos: -29.373522,30.531204 - parent: 0 - type: Transform -- uid: 11858 - type: ClothingHeadHatPumpkin - components: - - pos: -18.486109,-5.5083795 - parent: 0 - type: Transform -- uid: 11859 - type: GrilleBroken - components: - - pos: 15.5,-15.5 - parent: 0 - type: Transform -- uid: 11860 - type: PosterContrabandAtmosiaDeclarationIndependence - components: - - pos: -36.5,6.5 - parent: 0 - type: Transform -- uid: 11861 - type: PlaqueAtmos - components: - - pos: -30.5,6.5 - parent: 0 - type: Transform -- uid: 11862 - type: TableReinforced - components: - - pos: -14.5,4.5 - parent: 0 - type: Transform -- uid: 11863 - type: RevolverCapGun - components: - - pos: -14.491153,4.5839243 - parent: 0 - type: Transform -- uid: 11864 - type: WindowReinforcedDirectional - components: - - pos: -14.5,5.5 - parent: 0 - type: Transform -- uid: 11865 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -13.5,4.5 - parent: 0 - type: Transform -- uid: 11866 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -14.5,3.5 - parent: 0 - type: Transform -- uid: 11867 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -15.5,4.5 - parent: 0 - type: Transform -- uid: 11868 - type: PoweredSmallLight - components: - - pos: -14.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11869 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -9.5,11.5 - parent: 0 - type: Transform -- uid: 11870 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -10.5,11.5 - parent: 0 - type: Transform -- uid: 11871 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: -11.5,11.5 - parent: 0 - type: Transform -- uid: 11872 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -10.5,14.5 - parent: 0 - type: Transform -- uid: 11873 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 17.5,-1.5 - parent: 0 - type: Transform -- uid: 11874 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 34.5,-32.5 - parent: 0 - type: Transform -- uid: 11875 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 24.5,-31.5 - parent: 0 - type: Transform -- uid: 11876 - type: RandomPosterAny - components: - - rot: 3.141592653589793 rad - pos: 13.5,-31.5 - parent: 0 - type: Transform -- uid: 11877 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-34.5 - parent: 0 - type: Transform -- uid: 11878 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-34.5 - parent: 0 - type: Transform -- uid: 11879 - type: Table - components: - - pos: -2.5,-34.5 - parent: 0 - type: Transform -- uid: 11880 - type: ChessBoard - components: - - pos: -2.493187,-34.40246 - parent: 0 - type: Transform -- uid: 11881 - type: ClothingHeadHelmetTemplar - components: - - pos: -1.477562,-34.543083 - parent: 0 - type: Transform -- uid: 11882 - type: ClosetMaintenanceFilledRandom - components: - - pos: 9.5,12.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 11883 - type: Rack - components: - - pos: 7.5,12.5 - parent: 0 - type: Transform -- uid: 11884 - type: MaintenanceFluffSpawner - components: - - pos: 7.5,12.5 - parent: 0 - type: Transform -- uid: 11885 - type: Chair - components: - - pos: 6.5,12.5 - parent: 0 - type: Transform -- uid: 11886 - type: Chair - components: - - pos: 5.5,12.5 - parent: 0 - type: Transform -- uid: 11887 - type: AtmosFixNitrogenMarker - components: - - pos: -51.5,1.5 - parent: 0 - type: Transform -- uid: 11888 - type: AtmosFixNitrogenMarker - components: - - pos: -52.5,1.5 - parent: 0 - type: Transform -- uid: 11889 - type: AtmosFixNitrogenMarker - components: - - pos: -53.5,1.5 - parent: 0 - type: Transform -- uid: 11890 - type: AtmosFixOxygenMarker - components: - - pos: -51.5,3.5 - parent: 0 - type: Transform -- uid: 11891 - type: AtmosFixOxygenMarker - components: - - pos: -52.5,3.5 - parent: 0 - type: Transform -- uid: 11892 - type: AtmosFixOxygenMarker - components: - - pos: -53.5,3.5 - parent: 0 - type: Transform -- uid: 11893 - type: AtmosFixBlockerMarker - components: - - pos: -51.5,5.5 - parent: 0 - type: Transform -- uid: 11894 - type: AtmosFixBlockerMarker - components: - - pos: -52.5,5.5 - parent: 0 - type: Transform -- uid: 11895 - type: AtmosFixBlockerMarker - components: - - pos: -53.5,5.5 - parent: 0 - type: Transform -- uid: 11896 - type: AtmosFixBlockerMarker - components: - - pos: -53.5,7.5 - parent: 0 - type: Transform -- uid: 11897 - type: AtmosFixBlockerMarker - components: - - pos: -52.5,7.5 - parent: 0 - type: Transform -- uid: 11898 - type: AtmosFixBlockerMarker - components: - - pos: -51.5,7.5 - parent: 0 - type: Transform -- uid: 11899 - type: AtmosFixBlockerMarker - components: - - pos: -51.5,11.5 - parent: 0 - type: Transform -- uid: 11900 - type: AtmosFixBlockerMarker - components: - - pos: -52.5,11.5 - parent: 0 - type: Transform -- uid: 11901 - type: AtmosFixBlockerMarker - components: - - pos: -53.5,11.5 - parent: 0 - type: Transform -- uid: 11902 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,16.5 - parent: 0 - type: Transform -- uid: 11903 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,17.5 - parent: 0 - type: Transform -- uid: 11904 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,17.5 - parent: 0 - type: Transform -- uid: 11905 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,16.5 - parent: 0 - type: Transform -- uid: 11906 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,16.5 - parent: 0 - type: Transform -- uid: 11907 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,17.5 - parent: 0 - type: Transform -- uid: 11908 - type: AtmosFixPlasmaMarker - components: - - pos: -51.5,9.5 - parent: 0 - type: Transform -- uid: 11909 - type: AtmosFixPlasmaMarker - components: - - pos: -52.5,9.5 - parent: 0 - type: Transform -- uid: 11910 - type: AtmosFixPlasmaMarker - components: - - pos: -53.5,9.5 - parent: 0 - type: Transform -- uid: 11911 - type: RandomSpawner - components: - - pos: -0.5,-22.5 - parent: 0 - type: Transform -- uid: 11912 - type: RandomSpawner - components: - - pos: -6.5,-34.5 - parent: 0 - type: Transform -- uid: 11913 - type: RandomSpawner - components: - - pos: -11.5,-40.5 - parent: 0 - type: Transform -- uid: 11914 - type: RandomSpawner - components: - - pos: -12.5,-28.5 - parent: 0 - type: Transform -- uid: 11915 - type: RandomSpawner - components: - - pos: 6.5,-18.5 - parent: 0 - type: Transform -- uid: 11916 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11917 - type: Poweredlight - components: - - pos: -22.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11918 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-1.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11919 - type: CableApcExtension - components: - - pos: 13.5,-33.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11920 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-35.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11921 - type: Poweredlight - components: - - pos: -11.5,-14.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11922 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-19.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11923 - type: Poweredlight - components: - - pos: -30.5,5.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11924 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11925 - type: DisposalUnit - components: - - pos: 6.5,32.5 - parent: 0 - type: Transform -- uid: 11926 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-7.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11927 - type: WaterTankFull - components: - - pos: -42.5,-21.5 - parent: 0 - type: Transform -- uid: 11928 - type: AirlockCommandLocked - components: - - pos: -13.5,18.5 - parent: 0 - type: Transform -- uid: 11929 - type: TableReinforced - components: - - pos: -14.5,15.5 - parent: 0 - type: Transform -- uid: 11930 - type: TableReinforced - components: - - pos: -10.5,15.5 - parent: 0 - type: Transform -- uid: 11931 - type: TableReinforced - components: - - pos: -10.5,16.5 - parent: 0 - type: Transform -- uid: 11932 - type: TableReinforced - components: - - pos: -10.5,17.5 - parent: 0 - type: Transform -- uid: 11933 - type: SpawnMobDrone - components: - - pos: -13.5,16.5 - parent: 0 - type: Transform -- uid: 11934 - type: SpawnMobDrone - components: - - pos: -12.5,16.5 - parent: 0 - type: Transform -- uid: 11935 - type: SpawnMobDrone - components: - - pos: -11.5,16.5 - parent: 0 - type: Transform -- uid: 11936 - type: PosterContrabandFreeDrone - components: - - pos: -11.5,14.5 - parent: 0 - type: Transform -- uid: 11937 - type: SignDrones - components: - - pos: -12.5,18.5 - parent: 0 - type: Transform -- uid: 11938 - type: MopBucket - components: - - pos: -11.467581,17.581944 - parent: 0 - type: Transform -- uid: 11939 - type: MopItem - components: - - pos: -10.498831,17.519444 - parent: 0 - type: Transform -- uid: 11940 - type: MopItem - components: - - pos: -10.498831,17.300694 - parent: 0 - type: Transform -- uid: 11941 - type: TrashBag - components: - - pos: -10.701956,16.566319 - parent: 0 - type: Transform -- uid: 11942 - type: TrashBag - components: - - pos: -10.498831,16.566319 - parent: 0 - type: Transform -- uid: 11943 - type: TrashBag - components: - - pos: -10.280081,16.566319 - parent: 0 - type: Transform -- uid: 11944 - type: SheetSteel - components: - - pos: -14.514456,17.535069 - parent: 0 - type: Transform -- uid: 11945 - type: SheetSteel - components: - - pos: -14.436331,17.503819 - parent: 0 - type: Transform -- uid: 11946 - type: SheetGlass - components: - - pos: -14.576956,17.019444 - parent: 0 - type: Transform -- uid: 11947 - type: SheetGlass - components: - - pos: -14.436331,17.019444 - parent: 0 - type: Transform -- uid: 11948 - type: SheetPlasteel - components: - - pos: -14.576956,16.535069 - parent: 0 - type: Transform -- uid: 11949 - type: SheetPlasteel - components: - - pos: -14.420706,16.535069 - parent: 0 - type: Transform -- uid: 11950 - type: PartRodMetal - components: - - pos: -14.576956,16.050694 - parent: 0 - type: Transform -- uid: 11951 - type: PartRodMetal - components: - - pos: -14.389456,16.019444 - parent: 0 - type: Transform -- uid: 11952 - type: CableApcStack - components: - - pos: -10.655096,15.8788185 - parent: 0 - type: Transform -- uid: 11953 - type: CableApcStack - components: - - pos: -10.655096,15.8788185 - parent: 0 - type: Transform -- uid: 11954 - type: CableMVStack - components: - - pos: -10.530096,15.7538185 - parent: 0 - type: Transform -- uid: 11955 - type: CableMVStack - components: - - pos: -10.530096,15.7538185 - parent: 0 - type: Transform -- uid: 11956 - type: CableHVStack - components: - - pos: -10.405096,15.5663185 - parent: 0 - type: Transform -- uid: 11957 - type: CableHVStack - components: - - pos: -10.405096,15.5663185 - parent: 0 - type: Transform -- uid: 11958 - type: Bucket - components: - - pos: -10.295721,17.222569 - parent: 0 - type: Transform -- uid: 11959 - type: trayScanner - components: - - pos: -10.545721,17.660069 - parent: 0 - type: Transform -- uid: 11960 - type: FoodBurgerRobot - components: - - pos: -14.514471,15.4569435 - parent: 0 - type: Transform -- uid: 11961 - type: Poweredlight - components: - - pos: -12.5,17.5 - parent: 0 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11962 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11963 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -33.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11964 - type: GasPipeStraight - components: - - pos: -36.5,0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11965 - type: GasPipeStraight - components: - - pos: -36.5,-0.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11966 - type: GasPipeStraight - components: - - pos: -36.5,-1.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11967 - type: GasPipeStraight - components: - - pos: -36.5,-2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11968 - type: GasPipeStraight - components: - - pos: -36.5,-3.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11969 - type: GasPipeStraight - components: - - pos: -36.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11970 - type: GasPipeStraight - components: - - pos: -36.5,-5.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11971 - type: GasPipeStraight - components: - - pos: -36.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11972 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11973 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11974 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11975 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11976 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11977 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11978 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11979 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11980 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11981 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11982 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11983 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11984 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11985 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11986 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11987 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-8.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11988 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -40.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11989 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11990 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11991 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11992 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-7.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11993 - type: GasPipeStraight - components: - - pos: -45.5,-8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11994 - type: GasPipeStraight - components: - - pos: -45.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11995 - type: GasPipeStraight - components: - - pos: -45.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11996 - type: GasPipeStraight - components: - - pos: -44.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11997 - type: GasPipeStraight - components: - - pos: -44.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11998 - type: GasPipeStraight - components: - - pos: -44.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11999 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -44.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12000 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -45.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12001 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12002 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12003 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12004 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12005 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12006 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12007 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12008 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12009 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12010 - type: GasPipeFourway - components: - - pos: -49.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12011 - type: GasPipeFourway - components: - - pos: -48.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12012 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12013 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12014 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12015 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12016 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12017 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12018 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12019 - type: GasPipeStraight - components: - - pos: -49.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12020 - type: GasPipeStraight - components: - - pos: -49.5,-10.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12021 - type: GasPipeStraight - components: - - pos: -48.5,-10.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12022 - type: GasPipeStraight - components: - - pos: -48.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12023 - type: GasVentScrubber - components: - - pos: -48.5,-9.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12024 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12025 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -48.5,-13.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12026 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12027 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12028 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -49.5,-13.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12029 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-12.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12030 - type: GasVentPump - components: - - pos: -49.5,-9.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12031 - type: GasPipeStraight - components: - - pos: -44.5,-7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12032 - type: GasVentPump - components: - - pos: -44.5,-6.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12033 - type: GasVentScrubber - components: - - pos: -40.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12034 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -30.5,-6.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12035 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -32.5,2.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12036 - type: GasVentScrubber - components: - - pos: -30.5,2.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12037 - type: GasVentPump - components: - - pos: -16.5,-11.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12038 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -14.5,-12.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12039 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -23.5,7.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12040 - type: GasVentScrubber - components: - - pos: -24.5,8.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12041 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -25.5,0.5 - parent: 0 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12042 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-4.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12043 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -25.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12044 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-11.5 - parent: 0 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12045 - type: SurveillanceCameraRouterScience - components: - - pos: 12.5,-18.5 - parent: 0 - type: Transform -- uid: 12046 - type: SurveillanceCameraRouterGeneral - components: - - pos: -50.5,-13.5 - parent: 0 - type: Transform -- uid: 12047 - type: RandomSpawner - components: - - pos: 21.5,-24.5 - parent: 0 - type: Transform -- uid: 12048 - type: CableApcExtension - components: - - pos: -27.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12049 - type: CableApcExtension - components: - - pos: -28.5,-22.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12050 - type: CableApcExtension - components: - - pos: -28.5,-24.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12051 - type: CableApcExtension - components: - - pos: -28.5,-23.5 - parent: 0 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12052 - type: WeaponShotgunKammerer - components: - - pos: -35.535385,19.569157 - parent: 0 - type: Transform - - unspawnedCount: 4 - type: BallisticAmmoProvider -- uid: 12053 - type: WeaponShotgunKammerer - components: - - pos: -35.410385,19.412907 - parent: 0 - type: Transform - - unspawnedCount: 4 - type: BallisticAmmoProvider -- uid: 12054 - type: TableReinforced - components: - - pos: -33.5,20.5 - parent: 0 - type: Transform -- uid: 12055 - type: BoxShotgunIncendiary - components: - - pos: -35.55101,19.647282 - parent: 0 - type: Transform -- uid: 12056 - type: WeaponPistolMk58 - components: - - pos: -33.51976,19.584782 - parent: 0 - type: Transform -- uid: 12057 - type: WeaponPistolMk58 - components: - - pos: -33.441635,19.491032 - parent: 0 - type: Transform -- uid: 12058 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -36.5,20.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - type: SurveillanceCamera -- uid: 12059 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -28.5,15.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security - type: SurveillanceCamera -- uid: 12060 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -23.5,12.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Security Hallway - type: SurveillanceCamera -- uid: 12061 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: -36.5,15.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's Office - type: SurveillanceCamera -- uid: 12062 - type: SurveillanceCameraSecurity - components: - - pos: -35.5,10.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Sec Break Room - type: SurveillanceCamera -- uid: 12063 - type: SurveillanceCameraSecurity - components: - - pos: -28.5,29.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Perma Brig - type: SurveillanceCamera -- uid: 12064 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-12.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Grav Gen - type: SurveillanceCamera -- uid: 12065 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-8.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Chief Engineer Room - type: SurveillanceCamera -- uid: 12066 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-14.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - type: SurveillanceCamera -- uid: 12067 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Lobby - type: SurveillanceCamera -- uid: 12068 - type: SurveillanceCameraEngineering - components: - - pos: -42.5,0.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics - type: SurveillanceCamera -- uid: 12069 - type: SpawnMobCat - components: - - pos: -24.5,-26.5 - parent: 0 - type: Transform -- uid: 12070 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-26.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: CMO's Office - type: SurveillanceCamera -- uid: 12071 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: -17.5,-24.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medbay - type: SurveillanceCamera -- uid: 12072 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-16.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Chemistry - type: SurveillanceCamera -- uid: 12073 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-16.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Cloning - type: SurveillanceCamera -- uid: 12074 - type: SurveillanceCameraMedical - components: - - pos: -10.5,-22.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medbay Lobby - type: SurveillanceCamera -- uid: 12075 - type: SurveillanceCameraScience - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-27.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Toxins - type: SurveillanceCamera -- uid: 12076 - type: SurveillanceCameraScience - components: - - pos: 13.5,-21.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Server Room - type: SurveillanceCamera -- uid: 12077 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 6.5,-14.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Research and Development - type: SurveillanceCamera -- uid: 12078 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 13.5,-23.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics - type: SurveillanceCamera -- uid: 12079 - type: SurveillanceCameraScience - components: - - pos: 28.5,-20.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Research Director's Room - type: SurveillanceCamera -- uid: 12080 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Checkpoint - type: SurveillanceCamera -- uid: 12081 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: -10.5,29.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Bedroom - type: SurveillanceCamera -- uid: 12082 - type: SurveillanceCameraCommand - components: - - pos: -12.5,22.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Office - type: SurveillanceCamera -- uid: 12083 - type: WeaponPistolMk58 - components: - - pos: -33.379135,19.381657 - parent: 0 - type: Transform -- uid: 12084 - type: SurveillanceCameraCommand - components: - - pos: 1.5,32.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge - type: SurveillanceCamera -- uid: 12085 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 7.5,29.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP's Room - type: SurveillanceCamera -- uid: 12086 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 10.5,26.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP's Office - type: SurveillanceCamera -- uid: 12087 - type: SurveillanceCameraCommand - components: - - pos: -1.5,22.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - type: SurveillanceCamera -- uid: 12088 - type: SurveillanceCameraSupply - components: - - rot: 3.141592653589793 rad - pos: 18.5,27.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Bay - type: SurveillanceCamera -- uid: 12089 - type: SurveillanceCameraSupply - components: - - rot: 1.5707963267948966 rad - pos: 20.5,18.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Cargo Lobby - type: SurveillanceCamera -- uid: 12090 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 8.5,55.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core 2 - type: SurveillanceCamera -- uid: 12091 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 11.5,50.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core 1 - type: SurveillanceCamera -- uid: 12092 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 11.5,46.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Entrance - type: SurveillanceCamera -- uid: 12093 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,2.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 12094 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,33.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 12095 - type: EmergencyLight - components: - - pos: 10.5,50.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 12096 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,23.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 12097 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-16.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 12098 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-27.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 12099 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-20.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 12100 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-40.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 12102 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-2.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 12103 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,18.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 12104 - type: EmergencyLight - components: - - pos: -30.5,32.5 - parent: 0 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 12105 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: -37.5,-33.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Virology - type: SurveillanceCamera -- uid: 12106 - type: WeaponRifleLecter - components: - - pos: -36.461723,19.316954 - parent: 0 - type: Transform -- uid: 12107 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -11.5,-59.5 - parent: 0 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 12108 - type: Grille - components: - - pos: -10.5,-56.5 - parent: 0 - type: Transform -- uid: 12109 - type: MagazinePistol - components: - - pos: -33.475456,19.662907 - parent: 0 - type: Transform - - unspawnedCount: 10 - type: BallisticAmmoProvider -- uid: 12110 - type: MagazinePistol - components: - - pos: -33.600456,19.662907 - parent: 0 - type: Transform - - unspawnedCount: 10 - type: BallisticAmmoProvider -- uid: 12111 - type: MagazinePistol - components: - - pos: -33.33483,19.662907 - parent: 0 - type: Transform - - unspawnedCount: 10 - type: BallisticAmmoProvider -- uid: 12112 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-1.5 - parent: 0 - type: Transform -- uid: 12113 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - name: tank dispenser - type: MetaData - - pos: -42.5,-3.5 - parent: 0 - type: Transform -- uid: 12114 - type: Table - components: - - pos: -42.5,-2.5 - parent: 0 - type: Transform -- uid: 12115 - type: Table - components: - - pos: -42.5,-1.5 - parent: 0 - type: Transform -- uid: 12116 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: -42.432724,-2.3473935 - parent: 0 - type: Transform -- uid: 12117 - type: ClothingOuterVestHazard - components: - - pos: -42.4796,-1.4880185 - parent: 0 - type: Transform -- uid: 12118 - type: ClothingOuterVestHazard - components: - - pos: -42.370224,-1.6130185 - parent: 0 - type: Transform -- uid: 12119 - type: ClothingHeadHatHardhatOrange - components: - - pos: -42.44835,-1.0036435 - parent: 0 - type: Transform -- uid: 12120 - type: ClothingHeadHatHardhatYellow - components: - - pos: -41.401306,-7.235723 - parent: 0 - type: Transform -- uid: 12121 - type: Grille - components: - - pos: -53.5,17.5 - parent: 0 - type: Transform -- uid: 12122 - type: Grille - components: - - pos: -52.5,17.5 - parent: 0 - type: Transform -- uid: 12123 - type: Grille - components: - - pos: -51.5,17.5 - parent: 0 - type: Transform -- uid: 12124 - type: Grille - components: - - pos: -50.5,17.5 - parent: 0 - type: Transform -- uid: 12125 - type: Grille - components: - - pos: -49.5,17.5 - parent: 0 - type: Transform -- uid: 12126 - type: Grille - components: - - pos: -49.5,15.5 - parent: 0 - type: Transform -- uid: 12127 - type: Grille - components: - - pos: -50.5,15.5 - parent: 0 - type: Transform -- uid: 12128 - type: Grille - components: - - pos: -51.5,15.5 - parent: 0 - type: Transform -- uid: 12129 - type: Grille - components: - - pos: -52.5,15.5 - parent: 0 - type: Transform -- uid: 12130 - type: Grille - components: - - pos: -53.5,15.5 - parent: 0 - type: Transform -- uid: 12131 - type: Grille - components: - - pos: -57.5,12.5 - parent: 0 - type: Transform -- uid: 12132 - type: Grille - components: - - pos: -57.5,11.5 - parent: 0 - type: Transform -- uid: 12133 - type: Grille - components: - - pos: -57.5,10.5 - parent: 0 - type: Transform -- uid: 12134 - type: Grille - components: - - pos: -57.5,9.5 - parent: 0 - type: Transform -- uid: 12135 - type: Grille - components: - - pos: -57.5,8.5 - parent: 0 - type: Transform -- uid: 12136 - type: Grille - components: - - pos: -57.5,7.5 - parent: 0 - type: Transform -- uid: 12137 - type: Grille - components: - - pos: -57.5,6.5 - parent: 0 - type: Transform -- uid: 12138 - type: Grille - components: - - pos: -57.5,5.5 - parent: 0 - type: Transform -- uid: 12139 - type: Grille - components: - - pos: -57.5,4.5 - parent: 0 - type: Transform -- uid: 12140 - type: Grille - components: - - pos: -57.5,3.5 - parent: 0 - type: Transform -- uid: 12141 - type: Grille - components: - - pos: -57.5,2.5 - parent: 0 - type: Transform -- uid: 12142 - type: Grille - components: - - pos: -57.5,1.5 - parent: 0 - type: Transform -- uid: 12143 - type: Grille - components: - - pos: -57.5,0.5 - parent: 0 - type: Transform -- uid: 12144 - type: AsteroidRock - components: - - pos: -48.5,-25.5 - parent: 0 - type: Transform -- uid: 12145 - type: WarpPoint - components: - - pos: -16.5,-34.5 - parent: 0 - type: Transform - - location: chapel - type: WarpPoint -- uid: 12146 - type: AsteroidRockMining - components: - - pos: -52.5,-3.5 - parent: 0 - type: Transform -- uid: 12147 - type: RandomSpawner - components: - - pos: 31.5,-33.5 - parent: 0 - type: Transform -- uid: 12148 - type: Stool - components: - - rot: 3.141592653589793 rad - pos: -22.5,4.5 - parent: 0 - type: Transform -- uid: 12149 - type: RandomSpawner - components: - - pos: 15.5,-34.5 - parent: 0 - type: Transform -- uid: 12150 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - name: Hot drinks machine - type: MetaData - - pos: -27.5,-12.5 - parent: 0 - type: Transform -- uid: 12151 - type: PosterContrabandNuclearDeviceInformational - components: - - pos: -1.5,27.5 - parent: 0 - type: Transform -- uid: 12152 - type: RandomSpawner - components: - - pos: 7.5,-37.5 - parent: 0 - type: Transform -- uid: 12153 - type: RandomSpawner - components: - - pos: 8.5,-36.5 - parent: 0 - type: Transform -- uid: 12154 - type: RandomSpawner - components: - - pos: 12.5,-38.5 - parent: 0 - type: Transform -- uid: 12155 - type: RandomSpawner - components: - - pos: 9.5,-33.5 - parent: 0 - type: Transform -- uid: 12156 - type: RandomSpawner - components: - - pos: 12.5,-31.5 - parent: 0 - type: Transform -- uid: 12157 - type: RandomSpawner - components: - - pos: 27.5,-1.5 - parent: 0 - type: Transform -- uid: 12158 - type: RandomSpawner - components: - - pos: 16.5,-3.5 - parent: 0 - type: Transform -- uid: 12159 - type: RandomSpawner - components: - - pos: 12.5,4.5 - parent: 0 - type: Transform -- uid: 12160 - type: RandomSpawner - components: - - pos: 19.5,14.5 - parent: 0 - type: Transform -- uid: 12161 - type: RandomSpawner - components: - - pos: -30.5,17.5 - parent: 0 - type: Transform -- uid: 12162 - type: Bed - components: - - pos: -25.5,-20.5 - parent: 0 - type: Transform -- uid: 12163 - type: BedsheetSpawner - components: - - pos: -25.5,-20.5 - parent: 0 - type: Transform -- uid: 12164 - type: RandomPainting - components: - - pos: -29.5,-20.5 - parent: 0 - type: Transform -- uid: 12165 - type: RandomPainting - components: - - pos: -33.5,-14.5 - parent: 0 - type: Transform -- uid: 12166 - type: RandomPainting - components: - - pos: -33.5,-16.5 - parent: 0 - type: Transform -- uid: 12167 - type: RandomPainting - components: - - pos: -33.5,-18.5 - parent: 0 - type: Transform -- uid: 12168 - type: SpawnPointDetective - components: - - pos: 20.5,-16.5 - parent: 0 - type: Transform -- uid: 12169 - type: WardrobeYellowFilled - components: - - pos: -45.5,-18.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12170 - type: AirSensor - components: - - pos: -42.5,-13.5 - parent: 0 - type: Transform -- uid: 12171 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-15.5 - parent: 0 - type: Transform - - devices: - - 12170 - - 12027 - - 12026 - type: DeviceList -- uid: 12172 - type: AirSensor - components: - - pos: -48.5,-11.5 - parent: 0 - type: Transform -- uid: 12173 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -49.5,-14.5 - parent: 0 - type: Transform - - devices: - - 12028 - - 12025 - - 12172 - type: DeviceList -- uid: 12174 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-11.5 - parent: 0 - type: Transform - - devices: - - 12175 - - 12029 - - 12024 - type: DeviceList -- uid: 12175 - type: AirSensor - components: - - pos: -54.5,-13.5 - parent: 0 - type: Transform -- uid: 12176 - type: AirAlarm - components: - - pos: -46.5,-5.5 - parent: 0 - type: Transform - - devices: - - 12177 - - 12032 - - 12033 - type: DeviceList -- uid: 12177 - type: AirSensor - components: - - pos: -45.5,-7.5 - parent: 0 - type: Transform -- uid: 12178 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -41.5,-0.5 - parent: 0 - type: Transform - - devices: - - 10758 - - 10757 - - 12179 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - type: DeviceList -- uid: 12179 - type: AirSensor - components: - - pos: -40.5,3.5 - parent: 0 - type: Transform -- uid: 12180 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -37.5,0.5 - parent: 0 - type: Transform - - devices: - - 12179 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - type: DeviceList -- uid: 12181 - type: AirSensor - components: - - pos: -44.5,16.5 - parent: 0 - type: Transform -- uid: 12182 - type: AirAlarm - components: - - pos: -42.5,13.5 - parent: 0 - type: Transform - - devices: - - 12181 - type: DeviceList -- uid: 12183 - type: AirAlarm - components: - - pos: -28.5,6.5 - parent: 0 - type: Transform - - devices: - - 12184 - - 12035 - - 12036 - - 8690 - - 10752 - - 10753 - - 10754 - - 10755 - - 10756 - type: DeviceList -- uid: 12184 - type: AirSensor - components: - - pos: -34.5,2.5 - parent: 0 - type: Transform -- uid: 12185 - type: AirSensor - components: - - pos: -31.5,-0.5 - parent: 0 - type: Transform -- uid: 12186 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-2.5 - parent: 0 - type: Transform - - devices: - - 8691 - - 8690 - - 12189 - - 12188 - - 12185 - - 3708 - - 8787 - type: DeviceList -- uid: 12187 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-1.5 - parent: 0 - type: Transform - - devices: - - 8691 - - 8690 - - 12189 - - 12188 - - 12185 - type: DeviceList -- uid: 12188 - type: FirelockGlass - components: - - pos: -28.5,-2.5 - parent: 0 - type: Transform -- uid: 12189 - type: FirelockGlass - components: - - pos: -28.5,-1.5 - parent: 0 - type: Transform -- uid: 12190 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-6.5 - parent: 0 - type: Transform - - devices: - - 12192 - - 8691 - - 12034 - - 11962 - type: DeviceList -- uid: 12191 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-7.5 - parent: 0 - type: Transform - - devices: - - 12192 - - 8691 - type: DeviceList -- uid: 12192 - type: AirSensor - components: - - pos: -29.5,-8.5 - parent: 0 - type: Transform -- uid: 12193 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -27.5,0.5 - parent: 0 - type: Transform - - devices: - - 6494 - - 6495 - - 12195 - - 8156 - - 8157 - - 12041 - - 12042 - - 12188 - - 12189 - - 12197 - - 12196 - type: DeviceList -- uid: 12194 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -27.5,1.5 - parent: 0 - type: Transform - - devices: - - 6494 - - 6495 - - 12195 - - 8156 - - 8157 - - 12188 - - 12189 - - 12197 - - 12196 - type: DeviceList -- uid: 12195 - type: AirSensor - components: - - pos: -25.5,-1.5 - parent: 0 - type: Transform -- uid: 12196 - type: FirelockGlass - components: - - pos: -24.5,1.5 - parent: 0 - type: Transform -- uid: 12197 - type: FirelockGlass - components: - - pos: -24.5,2.5 - parent: 0 - type: Transform -- uid: 12198 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -19.5,0.5 - parent: 0 - type: Transform - - devices: - - 12200 - - 12196 - - 12197 - - 1685 - - 1686 - type: DeviceList -- uid: 12199 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 0 - type: Transform - - devices: - - 12200 - - 12196 - - 12197 - type: DeviceList -- uid: 12200 - type: AirSensor - components: - - pos: -23.5,3.5 - parent: 0 - type: Transform -- uid: 12201 - type: AirSensor - components: - - pos: -22.5,12.5 - parent: 0 - type: Transform -- uid: 12202 - type: AirAlarm - components: - - pos: -24.5,9.5 - parent: 0 - type: Transform - - devices: - - 12201 - - 8156 - - 8157 - - 7784 - - 8154 - - 8155 - - 12205 - - 12204 - - 12039 - - 12040 - type: DeviceList -- uid: 12203 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -21.5,13.5 - parent: 0 - type: Transform - - devices: - - 12201 - - 8156 - - 8157 - - 7784 - - 8154 - - 8155 - - 12205 - - 12204 - type: DeviceList -- uid: 12204 - type: FirelockGlass - components: - - pos: -21.5,9.5 - parent: 0 - type: Transform -- uid: 12205 - type: FirelockGlass - components: - - pos: -21.5,10.5 - parent: 0 - type: Transform -- uid: 12206 - type: AirAlarm - components: - - pos: -20.5,13.5 - parent: 0 - type: Transform - - devices: - - 12208 - - 12204 - - 12205 - - 8562 - - 8563 - type: DeviceList -- uid: 12207 - type: FireAlarm - components: - - pos: -19.5,13.5 - parent: 0 - type: Transform - - devices: - - 12208 - - 12204 - - 12205 - type: DeviceList -- uid: 12208 - type: AirSensor - components: - - pos: -20.5,8.5 - parent: 0 - type: Transform -- uid: 12209 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -32.5,13.5 - parent: 0 - type: Transform - - devices: - - 12211 - - 12212 - - 7782 - - 7783 - - 7911 - - 7910 - - 7909 - - 7914 - - 7913 - - 7912 - - 7874 - - 7872 - - 7871 - - 7873 - - 7887 - - 7886 - type: DeviceList -- uid: 12210 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -32.5,16.5 - parent: 0 - type: Transform - - devices: - - 12211 - - 12212 - - 7782 - - 7783 - type: DeviceList -- uid: 12211 - type: AirSensor - components: - - pos: -31.5,16.5 - parent: 0 - type: Transform -- uid: 12212 - type: FirelockGlass - components: - - pos: -32.5,15.5 - parent: 0 - type: Transform -- uid: 12213 - type: AirAlarm - components: - - pos: -37.5,13.5 - parent: 0 - type: Transform - - devices: - - 7905 - - 7907 - - 12214 - type: DeviceList -- uid: 12214 - type: AirSensor - components: - - pos: -38.5,11.5 - parent: 0 - type: Transform -- uid: 12215 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -37.5,15.5 - parent: 0 - type: Transform - - devices: - - 12216 - - 12212 - - 7906 - - 7908 - type: DeviceList -- uid: 12216 - type: AirSensor - components: - - pos: -35.5,16.5 - parent: 0 - type: Transform -- uid: 12217 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -37.5,16.5 - parent: 0 - type: Transform - - devices: - - 12216 - - 12212 - type: DeviceList -- uid: 12218 - type: AirSensor - components: - - pos: -31.5,29.5 - parent: 0 - type: Transform -- uid: 12219 - type: AirAlarm - components: - - pos: -31.5,33.5 - parent: 0 - type: Transform - - devices: - - 12218 - - 7858 - - 7856 - type: DeviceList -- uid: 12220 - type: AirAlarm - components: - - pos: -18.5,21.5 - parent: 0 - type: Transform - - devices: - - 8155 - - 8154 - - 2693 - - 2695 - - 12222 - - 8307 - - 8306 - type: DeviceList -- uid: 12221 - type: FireAlarm - components: - - pos: -16.5,21.5 - parent: 0 - type: Transform - - devices: - - 8155 - - 8154 - - 2693 - - 2695 - - 12222 - type: DeviceList -- uid: 12222 - type: AirSensor - components: - - pos: -15.5,19.5 - parent: 0 - type: Transform -- uid: 12223 - type: AirAlarm - components: - - pos: -5.5,21.5 - parent: 0 - type: Transform - - devices: - - 2693 - - 2695 - - 2782 - - 2783 - - 12225 - - 1817 - - 1816 - type: DeviceList -- uid: 12224 - type: FireAlarm - components: - - pos: -0.5,21.5 - parent: 0 - type: Transform - - devices: - - 2693 - - 2695 - - 2782 - - 2783 - - 12225 - type: DeviceList -- uid: 12225 - type: AirSensor - components: - - pos: -4.5,16.5 - parent: 0 - type: Transform -- uid: 12226 - type: AirSensor - components: - - pos: -2.5,23.5 - parent: 0 - type: Transform -- uid: 12227 - type: SignKiddiePlaque - components: - - pos: -6.5,25.5 - parent: 0 - type: Transform -- uid: 12228 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -9.5,26.5 - parent: 0 - type: Transform - - devices: - - 12230 - - 2231 - - 1928 - - 2474 - - 2441 - type: DeviceList -- uid: 12229 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -9.5,25.5 - parent: 0 - type: Transform - - devices: - - 12230 - - 2231 - - 1928 - type: DeviceList -- uid: 12230 - type: AirSensor - components: - - pos: -7.5,24.5 - parent: 0 - type: Transform -- uid: 12231 - type: AirSensor - components: - - pos: 2.5,24.5 - parent: 0 - type: Transform -- uid: 12232 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 1.5,26.5 - parent: 0 - type: Transform - - devices: - - 12231 - - 2473 - - 2472 - - 2442 - - 2475 - type: DeviceList -- uid: 12233 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 1.5,25.5 - parent: 0 - type: Transform - - devices: - - 12231 - - 2473 - - 2472 - type: DeviceList -- uid: 12234 - type: AirAlarm - components: - - pos: 2.5,35.5 - parent: 0 - type: Transform - - devices: - - 12237 - - 2473 - - 2472 - - 2231 - - 1928 - - 2443 - - 2444 - - 2447 - - 2448 - - 2446 - - 2445 - type: DeviceList -- uid: 12235 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 4.5,29.5 - parent: 0 - type: Transform - - devices: - - 12237 - - 2473 - - 2472 - - 2231 - - 1928 - type: DeviceList -- uid: 12236 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -9.5,29.5 - parent: 0 - type: Transform - - devices: - - 12237 - - 2473 - - 2472 - - 2231 - - 1928 - type: DeviceList -- uid: 12237 - type: AirSensor - components: - - pos: -5.5,32.5 - parent: 0 - type: Transform -- uid: 12238 - type: FireAlarm - components: - - pos: 7.5,23.5 - parent: 0 - type: Transform - - devices: - - 1927 - - 2476 - - 963 - - 12239 - type: DeviceList -- uid: 12239 - type: AirSensor - components: - - pos: 5.5,22.5 - parent: 0 - type: Transform -- uid: 12240 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 11.5,24.5 - parent: 0 - type: Transform - - devices: - - 12242 - - 1927 - - 2074 - - 2071 - - 2072 - - 2073 - type: DeviceList -- uid: 12241 - type: FireAlarm - components: - - pos: 10.5,27.5 - parent: 0 - type: Transform - - devices: - - 12242 - - 1927 - type: DeviceList -- uid: 12242 - type: AirSensor - components: - - pos: 5.5,26.5 - parent: 0 - type: Transform -- uid: 12243 - type: AirSensor - components: - - pos: 12.5,20.5 - parent: 0 - type: Transform -- uid: 12244 - type: FireAlarm - components: - - pos: 10.5,21.5 - parent: 0 - type: Transform - - devices: - - 12243 - - 2787 - - 2786 - - 2476 - - 963 - - 2783 - - 2782 - type: DeviceList -- uid: 12245 - type: AirAlarm - components: - - pos: 11.5,21.5 - parent: 0 - type: Transform - - devices: - - 12243 - - 2787 - - 2786 - - 2476 - - 963 - - 2783 - - 2782 - - 1770 - - 3782 - type: DeviceList -- uid: 12246 - type: FireAlarm - components: - - pos: 17.5,16.5 - parent: 0 - type: Transform - - devices: - - 2922 - - 2852 - - 2853 - - 12247 - - 3257 - type: DeviceList -- uid: 12247 - type: AirSensor - components: - - pos: 17.5,15.5 - parent: 0 - type: Transform -- uid: 12248 - type: WindoorSecureSalvageLocked - components: - - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 0 - type: Transform -- uid: 12249 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 13.5,9.5 - parent: 0 - type: Transform - - devices: - - 4122 - - 4117 - - 12251 - - 2852 - - 2853 - - 2787 - - 2786 - - 4439 - - 4440 - type: DeviceList -- uid: 12250 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 13.5,5.5 - parent: 0 - type: Transform - - devices: - - 4122 - - 4117 - - 12251 - - 2852 - - 2853 - - 2787 - - 2786 - type: DeviceList -- uid: 12251 - type: AirSensor - components: - - pos: 11.5,12.5 - parent: 0 - type: Transform -- uid: 12252 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 13.5,21.5 - parent: 0 - type: Transform - - devices: - - 3257 - - 12254 - - 3021 - - 3024 - type: DeviceList -- uid: 12253 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 13.5,18.5 - parent: 0 - type: Transform - - devices: - - 3257 - - 12254 - type: DeviceList -- uid: 12254 - type: AirSensor - components: - - pos: 18.5,17.5 - parent: 0 - type: Transform -- uid: 12255 - type: WindoorCargoLocked - components: - - rot: -1.5707963267948966 rad - pos: 14.5,20.5 - parent: 0 - type: Transform -- uid: 12256 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 21.5,23.5 - parent: 0 - type: Transform - - devices: - - 3016 - - 3020 - - 3017 - - 3019 - - 12257 - type: DeviceList -- uid: 12257 - type: AirSensor - components: - - pos: 20.5,23.5 - parent: 0 - type: Transform -- uid: 12258 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 14.5,31.5 - parent: 0 - type: Transform - - devices: - - 12259 - - 3001 - - 2983 - type: DeviceList -- uid: 12259 - type: AirSensor - components: - - pos: 17.5,30.5 - parent: 0 - type: Transform -- uid: 12260 - type: AirAlarm - components: - - pos: 9.5,47.5 - parent: 0 - type: Transform - - devices: - - 3814 - - 12261 - - 3944 - type: DeviceList -- uid: 12261 - type: AirSensor - components: - - pos: 10.5,45.5 - parent: 0 - type: Transform -- uid: 12262 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 16.5,45.5 - parent: 0 - type: Transform - - devices: - - 3816 - - 12263 - - 3841 - type: DeviceList -- uid: 12263 - type: AirSensor - components: - - pos: 14.5,45.5 - parent: 0 - type: Transform -- uid: 12264 - type: AirSensor - components: - - pos: 6.5,45.5 - parent: 0 - type: Transform -- uid: 12265 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 4.5,44.5 - parent: 0 - type: Transform - - devices: - - 3813 - - 12264 - - 3835 - type: DeviceList -- uid: 12266 - type: AirAlarm - components: - - pos: 9.5,51.5 - parent: 0 - type: Transform - - devices: - - 3815 - - 3838 - - 12267 - type: DeviceList -- uid: 12267 - type: AirSensor - components: - - pos: 10.5,49.5 - parent: 0 - type: Transform -- uid: 12268 - type: WeaponTurretSyndicateBroken - components: - - pos: 7.5,49.5 - parent: 0 - type: Transform -- uid: 12269 - type: WeaponTurretSyndicateBroken - components: - - pos: 13.5,49.5 - parent: 0 - type: Transform -- uid: 12270 - type: WeaponTurretSyndicateBroken - components: - - pos: 13.5,55.5 - parent: 0 - type: Transform -- uid: 12271 - type: WeaponTurretSyndicateBroken - components: - - pos: 7.5,55.5 - parent: 0 - type: Transform -- uid: 12272 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-8.5 - parent: 0 - type: Transform - - devices: - - 4426 - - 4423 - - 12274 - - 4122 - - 4117 - - 4442 - - 4441 - type: DeviceList -- uid: 12273 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 0 - type: Transform - - devices: - - 4426 - - 4423 - - 12274 - - 4122 - - 4117 - type: DeviceList -- uid: 12274 - type: AirSensor - components: - - pos: 11.5,-4.5 - parent: 0 - type: Transform -- uid: 12275 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: 16.5,-4.5 - parent: 0 - type: Transform - - devices: - - 12277 - - 4424 - - 4425 - - 4380 - - 4381 - type: DeviceList -- uid: 12276 - type: FireAlarm - components: - - pos: 20.5,-1.5 - parent: 0 - type: Transform - - devices: - - 12277 - - 4424 - - 4425 - type: DeviceList -- uid: 12277 - type: AirSensor - components: - - pos: 21.5,-2.5 - parent: 0 - type: Transform -- uid: 12278 - type: AirAlarm - components: - - pos: 25.5,2.5 - parent: 0 - type: Transform - - devices: - - 12279 - - 4425 - - 4424 - - 4444 - - 4443 - type: DeviceList -- uid: 12279 - type: AirSensor - components: - - pos: 25.5,0.5 - parent: 0 - type: Transform -- uid: 12280 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 0 - type: Transform - - devices: - - 12279 - - 4425 - - 4424 - type: DeviceList -- uid: 12281 - type: AirSensor - components: - - pos: 23.5,5.5 - parent: 0 - type: Transform -- uid: 12282 - type: AirAlarm - components: - - pos: 23.5,6.5 - parent: 0 - type: Transform - - devices: - - 4226 - - 12281 - - 4231 - type: DeviceList -- uid: 12283 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 26.5,0.5 - parent: 0 - type: Transform - - devices: - - 4205 - - 12284 - - 4203 - type: DeviceList -- uid: 12284 - type: AirSensor - components: - - pos: 30.5,-2.5 - parent: 0 - type: Transform -- uid: 12285 - type: AirAlarm - components: - - pos: 10.5,-10.5 - parent: 0 - type: Transform - - devices: - - 12287 - - 4423 - - 4426 - - 6415 - - 6414 - - 6417 - - 6416 - type: DeviceList -- uid: 12286 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 11.5,-13.5 - parent: 0 - type: Transform - - devices: - - 12287 - - 4423 - - 4426 - - 6415 - - 6414 - type: DeviceList -- uid: 12287 - type: AirSensor - components: - - pos: 13.5,-11.5 - parent: 0 - type: Transform -- uid: 12288 - type: AirSensor - components: - - pos: -2.5,-11.5 - parent: 0 - type: Transform -- uid: 12289 - type: AirAlarm - components: - - pos: 2.5,-10.5 - parent: 0 - type: Transform - - devices: - - 1934 - - 1933 - - 1932 - - 4645 - - 4644 - - 6500 - - 6499 - - 4646 - - 4647 - - 5792 - - 6414 - - 6415 - - 12288 - - 6420 - - 6419 - type: DeviceList -- uid: 12290 - type: FireAlarm - components: - - pos: 3.5,-10.5 - parent: 0 - type: Transform - - devices: - - 1934 - - 1933 - - 1932 - - 4645 - - 4644 - - 6500 - - 6499 - - 4646 - - 4647 - - 5792 - - 6414 - - 6415 - - 12288 - type: DeviceList -- uid: 12291 - type: FireAlarm - components: - - pos: -27.5,-10.5 - parent: 0 - type: Transform - - devices: - - 6497 - - 6496 - - 12292 - - 6494 - - 6495 - type: DeviceList -- uid: 12292 - type: AirSensor - components: - - pos: -23.5,-11.5 - parent: 0 - type: Transform -- uid: 12293 - type: AirAlarm - components: - - pos: -19.5,-10.5 - parent: 0 - type: Transform - - devices: - - 6497 - - 6496 - - 6500 - - 6499 - - 12295 - - 12038 - - 12037 - type: DeviceList -- uid: 12294 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -13.5,-13.5 - parent: 0 - type: Transform - - devices: - - 6497 - - 6496 - - 6500 - - 6499 - - 12295 - type: DeviceList -- uid: 12295 - type: AirSensor - components: - - pos: -18.5,-12.5 - parent: 0 - type: Transform -- uid: 12296 - type: AirAlarm - components: - - pos: -23.5,-5.5 - parent: 0 - type: Transform - - devices: - - 1511 - - 12297 - - 1512 - type: DeviceList -- uid: 12297 - type: AirSensor - components: - - pos: -22.5,-7.5 - parent: 0 - type: Transform -- uid: 12298 - type: AirSensor - components: - - pos: -9.5,-7.5 - parent: 0 - type: Transform -- uid: 12299 - type: AirAlarm - components: - - pos: -11.5,-4.5 - parent: 0 - type: Transform - - devices: - - 12298 - - 849 - - 858 - - 857 - - 848 - type: DeviceList -- uid: 12300 - type: AirSensor - components: - - pos: -2.5,-5.5 - parent: 0 - type: Transform -- uid: 12301 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-1.5 - parent: 0 - type: Transform - - devices: - - 1934 - - 1933 - - 1932 - - 931 - - 932 - - 12300 - - 782 - - 783 - - 784 - - 349 - - 351 - - 361 - - 354 - - 353 - - 352 - - 350 - - 1935 - - 1936 - - 1937 - type: DeviceList -- uid: 12302 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -6.5,2.5 - parent: 0 - type: Transform - - devices: - - 1934 - - 1933 - - 1932 - - 931 - - 932 - - 12300 - - 782 - - 783 - - 784 - - 349 - - 351 - - 361 - - 354 - - 353 - - 352 - - 350 - - 1935 - - 1936 - - 1937 - - 818 - - 815 - - invalid - - 817 - - 816 - - 864 - type: DeviceList -- uid: 12303 - type: AirSensor - components: - - pos: -7.5,6.5 - parent: 0 - type: Transform -- uid: 12304 - type: AirAlarm - components: - - pos: -7.5,10.5 - parent: 0 - type: Transform - - devices: - - 877 - - 885 - - 12303 - type: DeviceList -- uid: 12305 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 4.5,8.5 - parent: 0 - type: Transform - - devices: - - 349 - - 351 - - 361 - - 354 - - 353 - - 352 - - 350 - - 12306 - type: DeviceList -- uid: 12306 - type: AirSensor - components: - - pos: 2.5,5.5 - parent: 0 - type: Transform -- uid: 12307 - type: AirAlarm - components: - - pos: 6.5,10.5 - parent: 0 - type: Transform - - devices: - - 847 - - 846 - - 12306 - type: DeviceList -- uid: 12308 - type: AirAlarm - components: - - pos: 4.5,1.5 - parent: 0 - type: Transform - - devices: - - 12309 - - 782 - - 783 - - 784 - - 835 - - 814 - type: DeviceList -- uid: 12309 - type: AirSensor - components: - - pos: 5.5,-3.5 - parent: 0 - type: Transform -- uid: 12310 - type: FireAlarm - components: - - pos: 6.5,1.5 - parent: 0 - type: Transform - - devices: - - 12309 - - 782 - - 783 - - 784 - type: DeviceList -- uid: 12311 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -5.5,14.5 - parent: 0 - type: Transform - - devices: - - 1937 - - 1936 - - 1935 - - 12313 - - 1940 - - 1939 - - 1938 - - 710 - - 711 - type: DeviceList -- uid: 12312 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 0.5,13.5 - parent: 0 - type: Transform - - devices: - - 1937 - - 1936 - - 1935 - - 12313 - - 1940 - - 1939 - - 1938 - type: DeviceList -- uid: 12313 - type: AirSensor - components: - - pos: -0.5,13.5 - parent: 0 - type: Transform -- uid: 12314 - type: FireAlarm - components: - - pos: -0.5,-20.5 - parent: 0 - type: Transform - - devices: - - 5308 - - 7206 - - 4644 - - 4645 - - 4646 - - 4647 - - 5791 - - 5793 - - 12315 - type: DeviceList -- uid: 12315 - type: AirSensor - components: - - pos: -2.5,-21.5 - parent: 0 - type: Transform -- uid: 12316 - type: AirAlarm - components: - - pos: -4.5,-20.5 - parent: 0 - type: Transform - - devices: - - 5308 - - 7206 - - 4644 - - 4645 - - 4646 - - 4647 - - 5791 - - 5793 - - 12315 - - 6687 - - 6461 - type: DeviceList -- uid: 12317 - type: FireAlarm - components: - - pos: -9.5,-33.5 - parent: 0 - type: Transform - - devices: - - 12318 - - 5071 - - 5072 - type: DeviceList -- uid: 12318 - type: AirSensor - components: - - pos: -2.5,-35.5 - parent: 0 - type: Transform -- uid: 12319 - type: AirAlarm - components: - - pos: -0.5,-33.5 - parent: 0 - type: Transform - - devices: - - 12318 - - 5071 - - 5072 - - 6455 - - 3781 - type: DeviceList -- uid: 12320 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-40.5 - parent: 0 - type: Transform - - devices: - - 12321 - - 5072 - - 5071 - type: DeviceList -- uid: 12321 - type: AirSensor - components: - - pos: -10.5,-40.5 - parent: 0 - type: Transform -- uid: 12322 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-39.5 - parent: 0 - type: Transform - - devices: - - 12321 - - 5072 - - 5071 - - 5223 - - 5222 - - 5224 - - 5225 - type: DeviceList -- uid: 12323 - type: ComputerTechnologyDiskTerminal - components: - - pos: 5.5,-14.5 - parent: 0 - type: Transform -- uid: 12324 - type: IntercomCommand - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-8.5 - parent: 0 - type: Transform -- uid: 12325 - type: AirAlarm - components: - - pos: -16.5,-31.5 - parent: 0 - type: Transform - - devices: - - 6842 - - 6839 - - 12326 - type: DeviceList -- uid: 12326 - type: AirSensor - components: - - pos: -19.5,-32.5 - parent: 0 - type: Transform -- uid: 12327 - type: AirAlarm - components: - - pos: -23.5,-34.5 - parent: 0 - type: Transform - - devices: - - 6841 - - 6840 - - 12328 - type: DeviceList -- uid: 12328 - type: AirSensor - components: - - pos: -21.5,-35.5 - parent: 0 - type: Transform -- uid: 12329 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-26.5 - parent: 0 - type: Transform - - devices: - - 12331 - - 7259 - - 7283 - - 7200 - - 7206 - type: DeviceList -- uid: 12330 - type: AirAlarm - components: - - rot: 3.141592653589793 rad - pos: -9.5,-29.5 - parent: 0 - type: Transform - - devices: - - 12331 - - 7259 - - 7283 - - 7200 - - 7206 - - 7389 - - 7390 - type: DeviceList -- uid: 12331 - type: AirSensor - components: - - pos: -12.5,-28.5 - parent: 0 - type: Transform -- uid: 12332 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-20.5 - parent: 0 - type: Transform - - devices: - - 7200 - - 6585 - - 12333 - type: DeviceList -- uid: 12333 - type: AirSensor - components: - - pos: -12.5,-20.5 - parent: 0 - type: Transform -- uid: 12334 - type: AirAlarm - components: - - pos: -21.5,-23.5 - parent: 0 - type: Transform - - devices: - - 7259 - - 7283 - - 7300 - - 7301 - - 7302 - - 12336 - - 7337 - - 7329 - - 7366 - - 7369 - - 7365 - - 7370 - type: DeviceList -- uid: 12335 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -16.5,-26.5 - parent: 0 - type: Transform - - devices: - - 7259 - - 7283 - - 7300 - - 7301 - - 7302 - - 12336 - type: DeviceList -- uid: 12336 - type: AirSensor - components: - - pos: -16.5,-25.5 - parent: 0 - type: Transform -- uid: 12337 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-19.5 - parent: 0 - type: Transform - - devices: - - 7302 - - 7301 - - 7300 - - 12339 - type: DeviceList -- uid: 12338 - type: BiomassReclaimer - components: - - pos: -18.5,-14.5 - parent: 0 - type: Transform -- uid: 12339 - type: AirSensor - components: - - pos: -16.5,-19.5 - parent: 0 - type: Transform -- uid: 12340 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-19.5 - parent: 0 - type: Transform - - devices: - - 7302 - - 7301 - - 7300 - - 12339 - - 7385 - - 7384 - - 7371 - - 7367 - type: DeviceList -- uid: 12341 - type: AirAlarm - components: - - pos: -11.5,-13.5 - parent: 0 - type: Transform - - devices: - - 6585 - - 6584 - - 12343 - - 7380 - - 7382 - type: DeviceList -- uid: 12342 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-16.5 - parent: 0 - type: Transform - - devices: - - 6585 - - 6584 - - 12343 - type: DeviceList -- uid: 12343 - type: AirSensor - components: - - pos: -9.5,-15.5 - parent: 0 - type: Transform -- uid: 12344 - type: AirAlarm - components: - - pos: -29.5,-13.5 - parent: 0 - type: Transform - - devices: - - 7088 - - 7087 - - 12345 - type: DeviceList -- uid: 12345 - type: AirSensor - components: - - pos: -26.5,-17.5 - parent: 0 - type: Transform -- uid: 12346 - type: AirAlarm - components: - - pos: 6.5,-13.5 - parent: 0 - type: Transform - - devices: - - 5700 - - 5697 - - 12347 - type: DeviceList -- uid: 12347 - type: AirSensor - components: - - pos: 4.5,-16.5 - parent: 0 - type: Transform -- uid: 12348 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-17.5 - parent: 0 - type: Transform - - devices: - - 12347 - - 5791 - - 5792 - type: DeviceList -- uid: 12349 - type: AirSensor - components: - - pos: 4.5,-23.5 - parent: 0 - type: Transform -- uid: 12350 - type: AirAlarm - components: - - pos: 3.5,-22.5 - parent: 0 - type: Transform - - devices: - - 5699 - - 5698 - - 12349 - type: DeviceList -- uid: 12351 - type: AirSensor - components: - - pos: 14.5,-25.5 - parent: 0 - type: Transform -- uid: 12352 - type: AirAlarm - components: - - pos: 15.5,-22.5 - parent: 0 - type: Transform - - devices: - - 5715 - - 5716 - - 12351 - type: DeviceList -- uid: 12353 - type: AirAlarm - components: - - pos: 11.5,-19.5 - parent: 0 - type: Transform - - devices: - - 5600 - - 5599 - - 12355 - - 5718 - - 5719 - type: DeviceList -- uid: 12354 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 0 - type: Transform - - devices: - - 5600 - - 5599 - - 12355 - type: DeviceList -- uid: 12355 - type: AirSensor - components: - - pos: 9.5,-20.5 - parent: 0 - type: Transform -- uid: 12356 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-30.5 - parent: 0 - type: Transform - - devices: - - 12357 - type: DeviceList -- uid: 12357 - type: AirSensor - components: - - pos: 22.5,-29.5 - parent: 0 - type: Transform -- uid: 12358 - type: AirAlarm - components: - - pos: 29.5,-21.5 - parent: 0 - type: Transform - - devices: - - 5765 - - 5763 - - 12359 - type: DeviceList -- uid: 12359 - type: AirSensor - components: - - pos: 24.5,-23.5 - parent: 0 - type: Transform -- uid: 12360 - type: AirSensor - components: - - pos: 32.5,-26.5 - parent: 0 - type: Transform -- uid: 12361 - type: AirAlarm - components: - - pos: 31.5,-22.5 - parent: 0 - type: Transform - - devices: - - 5766 - - 5764 - - 12360 - type: DeviceList -- uid: 12362 - type: AirAlarm - components: - - pos: -36.5,-32.5 - parent: 0 - type: Transform - - devices: - - 12363 - - 9007 - - 8991 - type: DeviceList -- uid: 12363 - type: AirSensor - components: - - pos: -37.5,-34.5 - parent: 0 - type: Transform -- uid: 12364 - type: ClothingShoesBootsJack - components: - - pos: 2.5661945,-37.272846 - parent: 0 - type: Transform -- uid: 12365 - type: ClothingNeckScarfStripedRed - components: - - pos: -68.52162,-28.692625 - parent: 0 - type: Transform -- uid: 12366 - type: RockGuitarInstrument - components: - - pos: -10.362962,-1.5182831 - parent: 0 - type: Transform -- uid: 12367 - type: TomDrumsInstrument - components: - - pos: -9.5,3.5 - parent: 0 - type: Transform -- uid: 12368 - type: SignDirectionalJanitor - components: - - rot: 3.141592653589793 rad - pos: -21.5,-10.5 - parent: 0 - type: Transform -- uid: 12369 - type: SignDirectionalHop - components: - - rot: 3.141592653589793 rad - pos: 13.5,-10.5 - parent: 0 - type: Transform -- uid: 12370 - type: SignDirectionalHop - components: - - rot: 3.141592653589793 rad - pos: 10.5,18.5 - parent: 0 - type: Transform -- uid: 12371 - type: FoodMeatCrab - components: - - desc: name's fokkin JOE RIPPA YA DOG - name: joe rippa - type: MetaData - - pos: 4.56281,-34.161045 - parent: 0 - type: Transform -- uid: 12372 - type: DrinkIcedTeaCan - components: - - pos: 4.93781,-34.192295 - parent: 0 - type: Transform -- uid: 12373 - type: Cigarette - components: - - pos: 4.34406,-34.161045 - parent: 0 - type: Transform -- uid: 12374 - type: ClosetWallEmergencyFilledRandom - components: - - pos: 22.5,17.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 1.3546504 - - 5.096066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12375 - type: ClosetWallEmergencyFilledRandom - components: - - pos: 21.5,-1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12376 - type: ClosetWallFireFilledRandom - components: - - pos: 15.5,-1.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12377 - type: ClosetWallOrange - components: - - pos: -25.5,21.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12378 - type: ClosetWallOrange - components: - - pos: -25.5,18.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12379 - type: ClosetWallOrange - components: - - pos: -31.5,28.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12380 - type: ClosetWallOrange - components: - - pos: -27.5,28.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12381 - type: MicrophoneInstrument - components: - - flags: InContainer - type: MetaData - - parent: 9099 - type: Transform - - canCollide: False - type: Physics -- uid: 12382 - type: SpawnPointAssistant - components: - - pos: -19.5,8.5 - parent: 0 - type: Transform -- uid: 12383 - type: SpawnPointAssistant - components: - - pos: -18.5,11.5 - parent: 0 - type: Transform -- uid: 12384 - type: SpawnPointAssistant - components: - - pos: -17.5,9.5 - parent: 0 - type: Transform -- uid: 12385 - type: SpawnPointAssistant - components: - - pos: -20.5,10.5 - parent: 0 - type: Transform -- uid: 12386 - type: SpawnPointServiceWorker - components: - - pos: 4.5,-0.5 - parent: 0 - type: Transform -- uid: 12387 - type: ExosuitFabricator - components: - - pos: 4.5,-28.5 - parent: 0 - type: Transform -- uid: 12388 - type: FaxMachineCaptain - components: - - pos: -6.5,34.5 - parent: 0 - type: Transform - - name: Bridge - type: FaxMachine -- uid: 12389 - type: IntercomEngineering - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-9.5 - parent: 0 - type: Transform -- uid: 12390 - type: IntercomEngineering - components: - - rot: 3.141592653589793 rad - pos: -43.5,-0.5 - parent: 0 - type: Transform -- uid: 12391 - type: Intercom - components: - - pos: -17.5,3.5 - parent: 0 - type: Transform -- uid: 12392 - type: Intercom - components: - - pos: 5.5,23.5 - parent: 0 - type: Transform -- uid: 12393 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 0 - type: Transform -- uid: 12394 - type: IntercomScience - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 0 - type: Transform -- uid: 12395 - type: IntercomScience - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-23.5 - parent: 0 - type: Transform -- uid: 12396 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 0 - type: Transform -- uid: 12397 - type: Intercom - components: - - pos: -4.5,21.5 - parent: 0 - type: Transform -- uid: 12398 - type: AirCanister - components: - - pos: -34.5,-3.5 - parent: 0 - type: Transform -- uid: 12399 - type: AirCanister - components: - - pos: -34.5,-2.5 - parent: 0 - type: Transform -- uid: 12400 - type: IntercomCommand - components: - - pos: 11.5,54.5 - parent: 0 - type: Transform -- uid: 12401 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,33.5 - parent: 0 - type: Transform -- uid: 12402 - type: DisposalUnit - components: - - pos: 6.5,44.5 - parent: 0 - type: Transform -- uid: 12403 - type: DisposalTrunk - components: - - pos: 6.5,44.5 - parent: 0 - type: Transform -- uid: 12404 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 6.5,32.5 - parent: 0 - type: Transform -- uid: 12405 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,34.5 - parent: 0 - type: Transform -- uid: 12406 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,35.5 - parent: 0 - type: Transform -- uid: 12407 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,36.5 - parent: 0 - type: Transform -- uid: 12408 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,37.5 - parent: 0 - type: Transform -- uid: 12409 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,38.5 - parent: 0 - type: Transform -- uid: 12410 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,39.5 - parent: 0 - type: Transform -- uid: 12411 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,40.5 - parent: 0 - type: Transform -- uid: 12412 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,41.5 - parent: 0 - type: Transform -- uid: 12413 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,42.5 - parent: 0 - type: Transform -- uid: 12414 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 6.5,43.5 - parent: 0 - type: Transform -- uid: 12415 - type: MagazineRifle - components: - - pos: -36.461723,19.629454 - parent: 0 - type: Transform -- uid: 12416 - type: Grille - components: - - pos: -8.5,-59.5 - parent: 0 - type: Transform -- uid: 12417 - type: Grille - components: - - pos: -7.5,-59.5 - parent: 0 - type: Transform -- uid: 12418 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -2.5,4.5 - parent: 0 - type: Transform - - bodyType: Static - type: Physics -- uid: 12419 - type: BooksBag - components: - - pos: -31.928976,-23.436365 - parent: 0 - type: Transform -- uid: 12420 - type: TableWood - components: - - pos: -25.5,-18.5 - parent: 0 - type: Transform -- uid: 12421 - type: BookEscalation - components: - - pos: -30.59653,-19.308746 - parent: 0 - type: Transform -- uid: 12422 - type: TargetHuman - components: - - pos: -54.5,-16.5 - parent: 0 - type: Transform -- uid: 12423 - type: TorsoHuman - components: - - pos: -53.589386,-16.742252 - parent: 0 - type: Transform -- uid: 12424 - type: ClothingOuterHardsuitSpatio - components: - - pos: -52.87503,-18.445377 - parent: 0 - type: Transform -- uid: 12425 - type: MaintenanceWeaponSpawner - components: - - pos: -53.5,-18.5 - parent: 0 - type: Transform -- uid: 12426 - type: SpawnMobAlexander - components: - - pos: 6.5,-0.5 - parent: 0 - type: Transform -- uid: 12427 - type: CrateNPCHamlet - components: - - pos: -1.5,34.5 - parent: 0 - type: Transform -- uid: 12428 - type: FaxMachineBase - components: - - pos: -32.5,-15.5 - parent: 0 - type: Transform - - name: Library - type: FaxMachine -- uid: 12429 - type: ClothingNeckCloakMiner - components: - - pos: -48.41308,-16.456617 - parent: 0 - type: Transform -- uid: 12430 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12431 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12432 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12433 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12434 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12435 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12436 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12437 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12438 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12439 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12440 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12441 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12442 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12443 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12444 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12445 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12446 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12447 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12448 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12449 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12450 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12451 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12452 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.501883 - parent: 0 - type: Transform -- uid: 12453 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.517508 - parent: 0 - type: Transform -- uid: 12454 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.517508 - parent: 0 - type: Transform -- uid: 12455 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.517508 - parent: 0 - type: Transform -- uid: 12456 - type: FloorTileItemShuttleWhite - components: - - pos: -35.581154,26.517508 - parent: 0 - type: Transform -- uid: 12457 - type: ResearchDisk - components: - - pos: -35.5391,27.461937 - parent: 0 - type: Transform -- uid: 12458 - type: IngotGold1 - components: - - pos: -38.5391,25.681717 - parent: 0 - type: Transform -- uid: 12459 - type: IngotGold1 - components: - - pos: -38.5391,25.681717 - parent: 0 - type: Transform -- uid: 12460 - type: IngotGold1 - components: - - pos: -38.38285,25.619217 - parent: 0 - type: Transform -- uid: 12461 - type: IngotGold1 - components: - - pos: -38.2891,25.541092 - parent: 0 - type: Transform -- uid: 12462 - type: StorageCanister - components: - - pos: -36.5,26.5 - parent: 0 - type: Transform -- uid: 12463 - type: CrateScience - components: - - pos: -35.5,25.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12464 - type: MaintenanceToolSpawner - components: - - pos: -37.5,25.5 - parent: 0 - type: Transform -- uid: 12465 - type: ClothingShoesLeather - components: - - pos: -36.627586,29.207901 - parent: 0 - type: Transform -- uid: 12466 - type: DrinkLithiumFlask - components: - - pos: -18.56759,33.562008 - parent: 0 - type: Transform -- uid: 12467 - type: BookAtmosVentsMore - components: - - pos: -25.608389,-18.347795 - parent: 0 - type: Transform -- uid: 12468 - type: BookAtmosWaste - components: - - pos: -25.436514,-18.48842 - parent: 0 - type: Transform -- uid: 12469 - type: MagazineRifle - components: - - pos: -36.28985,19.629454 - parent: 0 - type: Transform -- uid: 12470 - type: WeaponLaserCarbine - components: - - pos: -33.4461,20.270079 - parent: 0 - type: Transform -- uid: 12471 - type: WeaponLaserCarbine - components: - - pos: -33.4461,20.218811 - parent: 0 - type: Transform -- uid: 12472 - type: RandomArtifactSpawner - components: - - pos: 5.5,-40.5 - parent: 0 - type: Transform -- uid: 12473 - type: ChemistryHotplate - components: - - pos: -10.5,-18.5 - parent: 0 - type: Transform -- uid: 12474 - type: ClosetFireFilled - components: - - pos: -10.5,-54.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12475 - type: ClothingHeadHatHairflower - components: - - pos: -24.401733,-34.40146 - parent: 0 - type: Transform -- uid: 12476 - type: WarpPoint - components: - - pos: -10.5,-21.5 - parent: 0 - type: Transform - - location: medbay - type: WarpPoint -- uid: 12477 - type: WarpPoint - components: - - pos: -28.5,-16.5 - parent: 0 - type: Transform - - location: library - type: WarpPoint -- uid: 12478 - type: WarpPoint - components: - - pos: -32.5,-2.5 - parent: 0 - type: Transform - - location: engi - type: WarpPoint -- uid: 12479 - type: WarpPoint - components: - - pos: -20.5,1.5 - parent: 0 - type: Transform - - location: dorms - type: WarpPoint -- uid: 12480 - type: WarpPoint - components: - - pos: -29.5,15.5 - parent: 0 - type: Transform - - location: security - type: WarpPoint -- uid: 12481 - type: WarpPoint - components: - - pos: -2.5,31.5 - parent: 0 - type: Transform - - location: bridge - type: WarpPoint -- uid: 12482 - type: WarpPoint - components: - - pos: 10.5,49.5 - parent: 0 - type: Transform - - location: ai core - type: WarpPoint -- uid: 12483 - type: WarpPoint - components: - - pos: 16.5,20.5 - parent: 0 - type: Transform - - location: cargo - type: WarpPoint -- uid: 12484 - type: WarpPoint - components: - - pos: 28.5,-2.5 - parent: 0 - type: Transform - - location: evac - type: WarpPoint -- uid: 12485 - type: WarpPoint - components: - - pos: 8.5,-21.5 - parent: 0 - type: Transform - - location: sci - type: WarpPoint -- uid: 12486 - type: WarpPoint - components: - - pos: -2.5,0.5 - parent: 0 - type: Transform - - location: service - type: WarpPoint -- uid: 12487 - type: FlashlightLantern - components: - - pos: -46.520996,-8.426701 - parent: 0 - type: Transform -- uid: 12488 - type: FlashlightLantern - components: - - pos: -32.540565,-7.207951 - parent: 0 - type: Transform -- uid: 12489 - type: FlashlightLantern - components: - - pos: -32.540565,-7.411076 - parent: 0 - type: Transform -- uid: 12490 - type: FlashlightLantern - components: - - pos: -19.610077,12.664663 - parent: 0 - type: Transform -- uid: 12491 - type: FlashlightLantern - components: - - pos: -19.516327,12.555288 - parent: 0 - type: Transform -- uid: 12492 - type: BananaPhoneInstrument - components: - - pos: -10.731333,1.1743605 - parent: 0 - type: Transform -- uid: 12493 - type: Table - components: - - pos: 9.5,-18.5 - parent: 0 - type: Transform -- uid: 12494 - type: KitchenMicrowave - components: - - pos: 9.5,-18.5 - parent: 0 - type: Transform -- uid: 12495 - type: LockerScienceFilled - components: - - pos: 9.5,-27.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12496 - type: LockerScienceFilled - components: - - pos: 9.5,-26.5 - parent: 0 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12497 - type: ClothingEyesGlasses - components: - - pos: 9.501655,-16.456053 - parent: 0 - type: Transform -- uid: 12498 - type: ClothingBeltUtilityFilled - components: - - pos: 5.5994864,-28.47739 - parent: 0 - type: Transform -- uid: 12499 - type: SpawnPointScientist - components: - - pos: 7.5,-20.5 - parent: 0 - type: Transform -- uid: 12500 - type: SpawnPointScientist - components: - - pos: 8.5,-20.5 - parent: 0 - type: Transform -- uid: 12501 - type: SpawnPointScientist - components: - - pos: 9.5,-20.5 - parent: 0 - type: Transform -- uid: 12502 - type: SpawnPointScientist - components: - - pos: 10.5,-20.5 - parent: 0 - type: Transform -- uid: 12503 - type: WeaponRevolverDeckard - components: - - flags: InContainer - type: MetaData - - parent: 2709 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 12504 - type: JetpackBlueFilled - components: - - flags: InContainer - type: MetaData - - parent: 2709 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- uid: 12505 - type: CrewMonitoringServer - components: - - pos: 5.5,47.5 - parent: 0 - type: Transform -- uid: 12506 - type: VendingMachineSecDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,10.5 - parent: 0 - type: Transform -- uid: 12507 - type: ClothingNeckLGBTPin - components: - - pos: -44.679893,-28.220144 - parent: 0 - type: Transform -- uid: 12508 - type: ClothingNeckAromanticPin - components: - - pos: -57.72657,-9.185339 - parent: 0 - type: Transform -- uid: 12509 - type: ClothingNeckAsexualPin - components: - - pos: -16.43367,32.25639 - parent: 0 - type: Transform -- uid: 12510 - type: ClothingNeckBisexualPin - components: - - pos: 4.3485775,50.647896 - parent: 0 - type: Transform -- uid: 12511 - type: ClothingNeckIntersexPin - components: - - pos: 19.693497,8.613337 - parent: 0 - type: Transform -- uid: 12512 - type: ClothingNeckLesbianPin - components: - - pos: 25.197195,-40.40506 - parent: 0 - type: Transform -- uid: 12513 - type: ClothingNeckNonBinaryPin - components: - - pos: 8.410957,-44.59256 - parent: 0 - type: Transform -- uid: 12514 - type: ClothingNeckPansexualPin - components: - - pos: -8.7696905,-31.305153 - parent: 0 - type: Transform -- uid: 12515 - type: ClothingNeckTransPin - components: - - pos: -14.357392,4.331708 - parent: 0 - type: Transform -- uid: 12516 - type: VendingMachineEngiDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,-7.5 - parent: 0 - type: Transform -- uid: 12517 - type: WarpPoint - components: - - pos: 33.5,-25.5 - parent: 0 - type: Transform - - location: anomaly Lab - type: WarpPoint -- uid: 12518 - type: BoxMouthSwab - components: - - pos: -40.434937,-35.118546 - parent: 0 - type: Transform -- uid: 12519 - type: SpawnPointResearchAssistant - components: - - pos: 6.5,-20.5 - parent: 0 - type: Transform -- uid: 12520 - type: PortableFlasher - components: - - pos: -36.5,20.5 - parent: 0 - type: Transform -- uid: 12521 - type: SurveillanceCameraSecurity - components: - - pos: -17.5,14.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Lawyer office - type: SurveillanceCamera -- uid: 12522 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: -23.5,24.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoS office - type: SurveillanceCamera -- uid: 12523 - type: SurveillanceCameraCommand - components: - - pos: -12.5,15.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Drone bay - type: SurveillanceCamera -- uid: 12524 - type: SurveillanceCameraCommand - components: - - pos: 7.5,14.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EvA Storage - type: SurveillanceCamera -- uid: 12525 - type: SurveillanceCameraSupply - components: - - rot: 3.141592653589793 rad - pos: 17.5,35.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: QM Room - type: SurveillanceCamera -- uid: 12526 - type: SurveillanceCameraSupply - components: - - rot: -1.5707963267948966 rad - pos: 22.5,12.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Salvagers - type: SurveillanceCamera -- uid: 12527 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-15.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective office - type: SurveillanceCamera -- uid: 12528 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-1.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of engineering - type: SurveillanceCamera -- uid: 12529 - type: SurveillanceCameraGeneral - components: - - pos: -17.5,-12.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Hydro and medbay - type: SurveillanceCamera -- uid: 12530 - type: SurveillanceCameraGeneral - components: - - pos: 11.5,-12.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Science and detective - type: SurveillanceCamera -- uid: 12531 - type: SurveillanceCameraGeneral - components: - - pos: -0.5,-13.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of service - type: SurveillanceCamera -- uid: 12532 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-23.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of medbay - type: SurveillanceCamera -- uid: 12533 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-22.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of science - type: SurveillanceCamera -- uid: 12534 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -3.5,-31.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance 3 - type: SurveillanceCamera -- uid: 12535 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-39.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance 2 - type: SurveillanceCamera -- uid: 12536 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-53.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance 1 - type: SurveillanceCamera -- uid: 12537 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 11.5,14.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of cargo - type: SurveillanceCamera -- uid: 12538 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 11.5,1.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Service and evac - type: SurveillanceCamera -- uid: 12539 - type: SurveillanceCameraGeneral - components: - - pos: 20.5,-3.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of evac - type: SurveillanceCamera -- uid: 12540 - type: SurveillanceCameraGeneral - components: - - pos: 30.5,-9.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evacuation 1 - type: SurveillanceCamera -- uid: 12541 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 30.5,4.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Evacuation 2 - type: SurveillanceCamera -- uid: 12542 - type: SurveillanceCameraGeneral - components: - - pos: 1.5,19.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Entrance of bridge - type: SurveillanceCamera -- uid: 12543 - type: SurveillanceCameraGeneral - components: - - pos: -16.5,19.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Security and drones - type: SurveillanceCamera -- uid: 12544 - type: SurveillanceCameraGeneral - components: - - pos: -19.5,1.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Dormitory - type: SurveillanceCamera -- uid: 12545 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-16.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Morgue - type: SurveillanceCamera -- uid: 12546 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: -13.5,-5.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Botany - type: SurveillanceCamera -- uid: 12547 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: -27.5,-14.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Library - type: SurveillanceCamera -- uid: 12548 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: 7.5,-5.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Freezer - type: SurveillanceCamera -- uid: 12549 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - type: SurveillanceCamera -- uid: 12550 - type: SurveillanceCameraService - components: - - pos: 6.5,6.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Bartenders room - type: SurveillanceCamera -- uid: 12551 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Service 2 - type: SurveillanceCamera -- uid: 12552 - type: SurveillanceCameraService - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Service 1 - type: SurveillanceCamera -- uid: 12553 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: -9.5,1.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Clowns room - type: SurveillanceCamera -- uid: 12554 - type: SurveillanceCameraService - components: - - rot: -1.5707963267948966 rad - pos: -10.5,6.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Theater - type: SurveillanceCamera -- uid: 12555 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: -20.5,-6.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Janitors room - type: SurveillanceCamera -- uid: 12556 - type: SurveillanceCameraService - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-33.5 - parent: 0 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Chapel 1 - type: SurveillanceCamera -- uid: 12557 - type: TelecomServerFilled - components: - - pos: -1.5,26.5 - parent: 0 - type: Transform -... diff --git a/Resources/Maps/origin.yml b/Resources/Maps/origin.yml deleted file mode 100644 index 13ab655d66..0000000000 --- a/Resources/Maps/origin.yml +++ /dev/null @@ -1,240542 +0,0 @@ -meta: - format: 3 - name: DemoStation - author: Space-Wizards - postmapinit: false -tilemap: - 0: Space - 1: FloorArcadeBlue - 3: FloorArcadeRed - 4: FloorAsteroidCoarseSand0 - 5: FloorAsteroidCoarseSandDug - 10: FloorAsteroidSand - 11: FloorAsteroidTile - 15: FloorBlueCircuit - 16: FloorBoxing - 17: FloorCarpetClown - 21: FloorClown - 22: FloorDark - 23: FloorDarkDiagonal - 25: FloorDarkHerringbone - 26: FloorDarkMini - 27: FloorDarkMono - 29: FloorDarkPavement - 30: FloorDarkPavementVertical - 33: FloorDirt - 34: FloorEighties - 37: FloorFreezer - 38: FloorGlass - 40: FloorGrass - 44: FloorGreenCircuit - 46: FloorHydro - 47: FloorKitchen - 48: FloorLaundry - 49: FloorLino - 51: FloorMetalDiamond - 52: FloorMime - 53: FloorMono - 57: FloorRGlass - 58: FloorReinforced - 59: FloorRockVault - 60: FloorShowroom - 64: FloorShuttleRed - 65: FloorShuttleWhite - 68: FloorSteel - 69: FloorSteelDiagonal - 71: FloorSteelDirty - 72: FloorSteelHerringbone - 73: FloorSteelMini - 74: FloorSteelMono - 76: FloorSteelPavement - 77: FloorSteelPavementVertical - 78: FloorTechMaint - 79: FloorTechMaint2 - 80: FloorTechMaint3 - 81: FloorWhite - 84: FloorWhiteHerringbone - 85: FloorWhiteMini - 86: FloorWhiteMono - 91: FloorWood - 92: FloorWoodTile - 93: Lattice - 94: Plating -entities: -- uid: 0 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree -- uid: 1 - components: - - type: MetaData - - pos: -0.32464826,-0.3100227 - parent: 0 - type: Transform - - chunks: - -1,-1: - ind: -1,-1 - tiles: RwAAAF4AAABHAAAAXgAAAF4AAABeAAAARwAAAEcAAABHAAAAXgAAAE0AAANNAAADTQAAAl4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAWAAACXgAAAE8AAABPAAAARwAAAF4AAABNAAADTQAAA00AAAFeAAAARwAAAEcAAABeAAAAXgAAAE4AAABeAAAAFgAAAl4AAABeAAAAXgAAAF4AAABHAAAATQAAA00AAAJNAAACXgAAAF4AAABHAAAATgAAAF4AAABOAAAARwAAAFAAAAJHAAAATgAAAE4AAABOAAAAFgAAAU0AAAFNAAABTQAAAk4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABQAAACXgAAAF4AAABeAAAATgAAAF4AAABNAAACTQAAAU0AAANOAAAAXgAAAF4AAABOAAAAUAAAAFAAAAFQAAACUAAAAF4AAABHAAAARwAAAE4AAABeAAAATQAAAk0AAABNAAACXgAAAF4AAABHAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE0AAAFNAAADTQAAABYAAAJeAAAARwAAAE4AAABOAAAAXgAAAE8AAABPAAAARwAAAE8AAABOAAAATgAAAF4AAABNAAADTQAAAU0AAAJeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAATQAAAk0AAABNAAAAXgAAABUAAAAVAAAARAAAAEcAAABEAAABCwAAAF4AAAAiAAAAIgAAACIAAAAiAAAAXgAAAE0AAAJNAAACTQAAA14AAAAVAAAAFQAAADkAAABEAAAARAAAAAsAAABeAAAAIgAAACIAAAAiAAAAIgAAAF4AAABNAAACTQAAA00AAANeAAAAFQAAABUAAABEAAADRAAAAUQAAAELAAAAXgAAACIAAAAiAAAAIgAAACIAAABeAAAATQAAAU0AAAJNAAABXgAAABUAAAAVAAAAXgAAAEQAAAJEAAADRAAAAV4AAAAiAAAAIgAAAF4AAABeAAAAXgAAAE0AAANNAAAATQAAAl4AAAAVAAAAFQAAAF4AAABEAAAARAAAAUQAAAFeAAAAXgAAABYAAAFeAAAAUAAAAl4AAAAWAAACFgAAABYAAABeAAAAXgAAAF4AAABeAAAARAAAADkAAABEAAACRAAAAUQAAANEAAABRAAAAkQAAAFEAAAARAAAAEQAAAFHAAAARAAAAkQAAABEAAADXgAAAEQAAANEAAADRAAAAEQAAAFEAAABRAAAAUQAAAFEAAACRAAAAEQAAABEAAADRAAAAkQAAABEAAABRAAAAw== - 0,-1: - ind: 0,-1 - tiles: XgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABEAAAARAAAAEQAAABEAAABeAAAAUAAAAV4AAABbAAADWwAAA1sAAABbAAABWwAAAlsAAABeAAAAUAAAAF4AAAARAAAAEQAAABEAAAARAAAAXgAAAE4AAAAWAAACWwAAAFsAAAFbAAABWwAAAFsAAANbAAADNQAAAF4AAABeAAAAEQAAABEAAAARAAAAEQAAAF4AAABOAAAAXgAAAFsAAANbAAAAWwAAAlsAAANbAAABWwAAA14AAABeAAAAXgAAABEAAAARAAAAEQAAABEAAABeAAAATgAAAF4AAABbAAACWwAAAFsAAAJbAAADWwAAAV4AAABeAAAATgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAWwAAAlsAAAFbAAAAWwAAAFsAAAJeAAAATgAAAE4AAAAVAAAAFQAAABUAAAAVAAAAFQAAAF4AAABbAAACWwAAA1sAAABbAAACWwAAAlsAAAJbAAACXgAAAF4AAABeAAAAFQAAABUAAAAVAAAAFQAAABUAAABeAAAAWwAAAFsAAANbAAABWwAAAVsAAAFbAAABWwAAAF4AAABeAAAAXgAAABUAAAAVAAAAFQAAABUAAAAVAAAAXgAAAFsAAANbAAACWwAAA1sAAAJbAAADWwAAAVsAAABeAAAAXgAAAF4AAAAVAAAAFQAAABUAAAAVAAAAFQAAAF4AAABbAAADWwAAAFsAAANbAAACWwAAAVsAAAFbAAADXgAAAF4AAABeAAAAFQAAABUAAAAVAAAAFQAAABUAAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAJbAAABWwAAAV4AAABeAAAAXgAAABYAAAAWAAACXgAAAF4AAAAWAAACXgAAADMAAABOAAAAMwAAAF4AAAAWAAABFgAAAF4AAABeAAAAFgAAA14AAABEAAABRAAAAEQAAANEAAAARAAAA0QAAAFEAAADRwAAAEQAAAJEAAADRAAAAEQAAABEAAACRAAAA0QAAAJEAAAARAAAAkQAAAJEAAABRAAAAiYAAABEAAACRAAAAEQAAAJEAAAARAAAAyYAAABEAAADRAAAA0QAAANEAAAARAAAAQ== - -1,0: - ind: -1,0 - tiles: XgAAAEQAAANEAAAARAAAAl4AAAAWAAAAFgAAAxYAAAAWAAADFgAAARYAAAAWAAADFgAAAhYAAAFeAAAAFgAAAV4AAAALAAAARAAAAEQAAABeAAAAFgAAAhYAAAIWAAADFgAAABYAAAEWAAAAFgAAAhYAAAIWAAADXgAAABYAAAFeAAAARAAAAkQAAAJEAAABRAAAA0QAAAJEAAACRAAAA0QAAABEAAACRAAAA0QAAAFEAAAARAAAAEQAAANEAAACXgAAAEQAAAE5AAAARwAAAEQAAAFEAAABRAAAAkQAAABEAAABRAAAA0QAAANEAAACRAAAA0QAAABEAAAARAAAA14AAAALAAAARAAAAEQAAAJeAAAAFgAAAV4AAABEAAABRAAAAUQAAAJeAAAAKAAAACgAAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAJHAAAAXgAAAEQAAANEAAADCwAAAEQAAABEAAABRAAAAEQAAAJEAAACRAAAAV4AAAAvAAAARAAAAEQAAAFEAAAARAAAASgAAABEAAAARAAAA0QAAABEAAAARAAAA0QAAAJEAAAARAAAAUQAAANeAAAALwAAADkAAABEAAABRAAAA0QAAAIoAAAALgAAAEQAAAIuAAAARAAAAy4AAABEAAACLgAAAEQAAABEAAACLgAAAC8AAABEAAACRAAAAEQAAABEAAABXgAAAC4AAABEAAAALgAAAEQAAAEuAAAARAAAAC4AAABEAAADRAAAAV4AAAAvAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAuAAAARAAAAC4AAABEAAADLgAAAF4AAABeAAAAFgAAAl4AAABeAAAALwAAAE4AAABOAAAAUAAAAk4AAABeAAAALgAAAEQAAAAuAAAARAAAAy4AAABeAAAARAAAA0QAAAJEAAACXgAAAF4AAABQAAADXgAAAE8AAABeAAAAXgAAAEQAAABEAAACLgAAAEQAAAIuAAAAXgAAAEQAAAJHAAAARAAAAl4AAAAlAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAANeAAAAJQAAAE8AAABeAAAAUAAAAl4AAABOAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAACUAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAAAlAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 0,0: - ind: 0,0 - tiles: FgAAABYAAAEWAAAAFgAAARYAAAAoAAAAKAAAACgAAAA8AAAAPAAAACgAAAAoAAAAKAAAABYAAAMWAAAAXgAAABYAAAEWAAABFgAAARYAAAEWAAACKAAAACgAAAAoAAAAPAAAADwAAAAoAAAAKAAAACgAAAAWAAAAFgAAAl4AAABEAAACRAAAAEQAAABEAAACJgAAAEcAAABEAAABRAAAA0QAAANEAAACJgAAAEQAAAFHAAAARAAAAUQAAAFEAAADRAAAAUQAAAJEAAABRAAAAkcAAABEAAABRAAAA0QAAABEAAACRAAAAUQAAAJEAAADRAAAAEQAAANEAAADRAAAAi8AAAAvAAAALwAAAF4AAABeAAAAFgAAAl4AAABeAAAAXgAAAF4AAAAWAAADFgAAAF4AAABeAAAAXgAAAF4AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAAXgAAAFsAAABbAAABWwAAAFsAAAJbAAAAWwAAAlsAAAJeAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAF4AAABbAAADWwAAAFsAAABbAAABWwAAAlsAAAFbAAADFgAAAi8AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAAWwAAAFsAAAJbAAACWwAAAlsAAABbAAACWwAAAhYAAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAFsAAANbAAADWwAAAFsAAAJbAAACWwAAAlsAAAJeAAAALwAAAC8AAAAvAAAALwAAAC8AAAAvAAAALwAAAC8AAABbAAABWwAAA1sAAANbAAAAWwAAAVsAAANbAAABXAAAARYAAAJeAAAAXgAAAF4AAAAvAAAALwAAAC8AAABeAAAAWwAAAVsAAAFbAAACWwAAAlsAAANbAAABWwAAA1wAAAAlAAAAJQAAACUAAABeAAAAFgAAAhYAAANeAAAAXgAAAF4AAABeAAAAWwAAAVsAAAFbAAACWwAAA1sAAAJcAAACJQAAACUAAAAlAAAAXgAAABYAAAAWAAADFgAAABYAAAAWAAADXgAAAFsAAABbAAACWwAAAVsAAAFbAAAAXAAAACUAAAAlAAAAJQAAAF4AAAAWAAABFgAAAxYAAAIWAAABFgAAAV4AAABbAAADWwAAA1sAAANbAAACWwAAAVwAAAIlAAAAJQAAACUAAABeAAAAFgAAARYAAAAWAAACFgAAABYAAANeAAAAWwAAAVsAAAFbAAADWwAAAVsAAABcAAABXgAAAF4AAABeAAAAXgAAABYAAAEWAAADFgAAARYAAAMWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -2,-1: - ind: -2,-1 - tiles: RAAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAACRAAAA14AAABEAAACSgAAAkQAAAJeAAAATwAAAEQAAAFeAAAARAAAAwsAAABEAAABFgAAAUQAAAJEAAACRAAAAEQAAAFeAAAARAAAAEoAAAJEAAAATgAAAF4AAABEAAABXgAAAEQAAANEAAAARAAAAF4AAABEAAACRAAAAUQAAABEAAABXgAAAEQAAABKAAACRAAAAl4AAABOAAAARAAAAV4AAAALAAAARAAAAEQAAAFEAAAARAAAA0QAAAFEAAADRAAAAxYAAABEAAACSgAAAUQAAAJeAAAAXgAAAEQAAAJeAAAARAAAAkQAAABEAAADXgAAAEQAAANEAAADRAAAAkQAAAEWAAADRAAAAEoAAANEAAACXgAAAF4AAABEAAACFgAAAkQAAAJEAAAARAAAA14AAABEAAACRAAAAEQAAAJEAAAAXgAAAEQAAABKAAADRAAAA14AAABOAAAARAAAAl4AAABEAAADRAAAA0QAAANeAAAARAAAA0cAAABEAAADRAAAAF4AAABEAAABSgAAA0QAAANeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAADRAAAA0QAAABeAAAARAAAA0oAAAJEAAAAXgAAAE8AAABRAAAAUQAAAVEAAANBAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAABFgAAAF4AAABeAAAAXgAAAFEAAAJeAAAAXgAAAF4AAABEAAAARAAAAAsAAABEAAAARAAAAkQAAAFEAAACRAAAA0QAAAJHAAAARAAAAVEAAABRAAAAUQAAAUEAAABeAAAARAAAA0cAAABEAAAAOQAAAEQAAAJEAAACRAAAATkAAABEAAADRAAAAkcAAABeAAAAUQAAAl4AAABeAAAAXgAAAEQAAANEAAADRAAAAkQAAAFEAAACRAAAAEQAAAJEAAACRAAAAkQAAAJEAAADUQAAA1EAAANRAAACUQAAA14AAABEAAADRAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAFEAAANRAAACUQAAAFEAAAJeAAAARAAAA0QAAANEAAAAXgAAAAAAAAAAAAAAXgAAAE4AAABeAAAAAAAAAAAAAABeAAAAXgAAABYAAABeAAAAXgAAAEQAAAI5AAAARAAAA14AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAARAAAAEQAAAFEAAAARAAAARYAAABEAAADRAAAAUQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -2,0: - ind: -2,0 - tiles: RAAAAEQAAABEAAADRAAAAhYAAAJEAAACRAAAAUQAAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAAEQAAAEWAAACRAAAA0QAAAJEAAADXgAAAEQAAAILAAAAFgAAABYAAAEWAAACRAAAAkQAAANeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAADRAAAAl4AAABEAAACRAAAABYAAAAWAAADFgAAAgsAAABEAAAAKAAAACgAAAAoAAAAKAAAAF4AAABEAAADOQAAAEQAAAFeAAAACwAAAEQAAAIWAAACFgAAAxYAAAJEAAADRAAAASgAAAAoAAAAKAAAACgAAABeAAAARAAAAEQAAABEAAAAXgAAAEQAAAFEAAAARAAAAEQAAABEAAADRAAAAAsAAAAoAAAAKAAAACgAAABeAAAAXgAAAEQAAAFHAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAKAAAACgAAAAoAAAAXgAAAEcAAABEAAAARAAAAUQAAAJEAAAARAAAAUQAAABEAAAARAAAA0QAAAILAAAARAAAAF4AAAAWAAADXgAAAF4AAABeAAAARAAAAkQAAABEAAABOQAAAEQAAAJEAAAARAAAAjkAAABEAAAARAAAAEQAAAMbAAACGgAAAxYAAAAWAAABXgAAAEQAAAFEAAABRAAAA0QAAAELAAAARAAAAUQAAABEAAADRAAAAQsAAAALAAAAGgAAAxoAAAIaAAADGgAAAV4AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABHAAAARAAAAUQAAANeAAAAXgAAABsAAAAaAAADGgAAABoAAABeAAAAMQAAADEAAAAxAAAAMQAAADEAAABeAAAARwAAAEcAAABEAAADTgAAAE4AAABeAAAAFgAAAV4AAABeAAAAXgAAADEAAAAxAAAAMQAAADEAAAAxAAAAXgAAAEQAAAFEAAAARAAAA14AAABeAAAAGQAAAhkAAAMZAAABXgAAADEAAAAxAAAAMQAAADEAAAAxAAAAMQAAAF4AAABEAAABRwAAAEcAAABeAAAATgAAABkAAAAZAAACGQAAAF4AAAAxAAAAMQAAADEAAAAxAAAAMQAAADEAAABeAAAARAAAA0QAAANHAAAAXgAAAF4AAAAZAAAAGQAAABkAAANeAAAAMQAAADEAAAAxAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAAV4AAABeAAAAGQAAAhkAAAEZAAADXgAAADEAAAAxAAAAMQAAAF4AAABOAAAATgAAABYAAAFEAAAASgAAA0QAAAJeAAAATgAAAA== - 1,-1: - ind: 1,-1 - tiles: XgAAAF4AAABeAAAARAAAAxYAAANEAAAAXgAAAF4AAAAWAAADFgAAARYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAZAAAAGQAAABkAAAEZAAADGQAAABkAAAFeAAAARwAAAEoAAAJEAAADXgAAAEcAAABHAAAAXgAAAF4AAABeAAAAGQAAAjEAAAAxAAAAMQAAADEAAAAxAAAAXgAAAEQAAAFKAAABRAAAAF4AAABeAAAARwAAAF4AAABEAAABXgAAABkAAAIxAAAAMQAAADEAAAAxAAAAMQAAAF4AAABEAAADSgAAA0QAAAFHAAAAXgAAAEcAAABeAAAARAAAA14AAAAZAAACMQAAADEAAAAxAAAAMQAAADEAAABeAAAARAAAAEoAAAJEAAACRwAAAF4AAABHAAAAXgAAAEQAAABeAAAAGQAAAxkAAAEZAAAAGQAAAhkAAAAZAAADXgAAAEQAAAFKAAAARwAAAEcAAABeAAAARwAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACSgAAAkcAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE8AAABOAAAATgAAAE4AAABeAAAARAAAAEoAAANEAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABKAAACRAAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAABFgAAAkQAAAFEAAADRAAAAUQAAAJEAAACSgAAAkQAAANEAAADRAAAAUQAAAFEAAADFgAAA0QAAAJEAAAARAAAARYAAANKAAABSgAAAEoAAAFKAAABSgAAAEoAAAFKAAADSgAAA0oAAABKAAADSgAAABYAAAFEAAAARAAAA0QAAAEWAAAARAAAAEQAAAFEAAACRAAAAkQAAANEAAADRAAAA0QAAAJHAAAARAAAAUQAAAIWAAAARAAAAkQAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAEQAAAJEAAADRAAAA14AAABJAAABSQAAA0kAAABJAAACSQAAA0kAAAFJAAACSQAAAkQAAAFeAAAATgAAAF4AAABHAAAARAAAAUQAAAJeAAAASQAAAhAAAAAQAAADEAAAAhAAAAEQAAABEAAAAEkAAANEAAACXgAAAF4AAABeAAAARwAAAEQAAABEAAADXgAAAEkAAAIQAAADEAAAARAAAAIQAAAAEAAAABAAAABJAAABRAAAA0QAAABEAAACXgAAAA== - 1,0: - ind: 1,0 - tiles: RAAAAkQAAANEAAABXgAAAEkAAAMQAAACEAAAAxAAAAAQAAABEAAAARAAAAFJAAAARAAAA0QAAAFHAAAAXgAAAEQAAAJEAAADRAAAAF4AAABJAAACEAAAAhAAAAAQAAACEAAAARAAAAIQAAACSQAAAUQAAAJEAAAARAAAAxYAAABEAAAARAAAAkQAAABeAAAASQAAAhAAAAEQAAABEAAAARAAAAIQAAABEAAAA0kAAAJEAAABRwAAAEQAAANeAAAARAAAAUQAAABEAAACXgAAAEkAAAMQAAADEAAAAxAAAAAQAAACEAAAARAAAANJAAADRAAAAkQAAANEAAACXgAAAEQAAABEAAACRAAAAV4AAABJAAACSQAAAUkAAAJJAAABSQAAAEkAAABJAAADSQAAAEQAAAJEAAACRAAAAF4AAABEAAACRAAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAFeAAAARAAAA0QAAAJEAAABFgAAAkQAAAFEAAABRAAAAkQAAAJEAAABRAAAA0QAAAFEAAADRAAAAUQAAAFEAAAAFgAAAEcAAABEAAACRAAAAxYAAAFEAAAARAAAAUQAAAJEAAACRAAAA0QAAAFEAAABRAAAAUQAAANEAAAARwAAABYAAAFHAAAARwAAAEQAAAEWAAACRAAAA0QAAABEAAACCwAAAEcAAABEAAABRAAAAkQAAAJHAAAARAAAA0cAAAAWAAACWwAAA1sAAANbAAACXgAAAF4AAAAWAAABXgAAAF4AAAAWAAABGgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFbAAACWwAAAhYAAAFbAAABWwAAAlsAAAJeAAAAFgAAAhoAAAMWAAADXgAAAEQAAANEAAABXgAAAEQAAAJbAAADWwAAAFsAAAIWAAABWwAAAlsAAABbAAABXgAAABYAAAMaAAACFgAAAl4AAABHAAAARAAAAF4AAABHAAAAWwAAAVsAAAFbAAADXgAAAFsAAANbAAADWwAAAV4AAAAWAAAAGgAAAhYAAAJeAAAARAAAAEQAAABeAAAARAAAAVsAAANbAAABWwAAAF4AAABbAAABWwAAAVsAAABeAAAAFgAAABoAAAAWAAABXgAAAEQAAAFEAAAAXgAAAEQAAANbAAAAWwAAAVsAAAJbAAACWwAAAlsAAANbAAACXgAAABYAAAAWAAACFgAAA14AAAAdAAABHQAAAx0AAAAdAAAAXgAAAFsAAABbAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAAxYAAANeAAAAHQAAAx0AAAMdAAACHQAAAw== - -1,1: - ind: -1,1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAAAXAAACFwAAA14AAAAVAAAAOwAAADsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFwAAAhcAAAAVAAAAXgAAAEQAAAALAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAEcAAABQAAAAXgAAABcAAAMXAAAARAAAA1AAAAMLAAAARAAAAF4AAABQAAACXgAAAF4AAABeAAAAXgAAAEcAAABHAAAARwAAAF4AAAAXAAAAFwAAAEcAAAAVAAAARAAAAgsAAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFwAAAhcAAABEAAABXgAAABUAAABeAAAATgAAAF4AAABPAAAAFgAAAE4AAABHAAAAUAAAAkcAAABHAAAAXgAAABcAAAIXAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABHAAAARwAAAFAAAANHAAAARwAAAF4AAABeAAAAXgAAABoAAAIWAAACXgAAAF4AAABeAAAATgAAAE4AAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAAAaAAACFgAAA14AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUAAAAEcAAABHAAAAGgAAAxYAAAJeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAABoAAAEWAAADTwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAaAAABFgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAFgAAAV4AAABeAAAAXgAAAE8AAABOAAAARwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAEQAAAFEAAADXgAAAE4AAABeAAAAXgAAAEcAAABHAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAAAAAAAAAAAAAF4AAABHAAAARwAAAEcAAABHAAAARAAAAEQAAANeAAAAWwAAA1sAAAFbAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAARwAAAEQAAAJEAAACRAAAAg== - 0,1: - ind: 0,1 - tiles: FwAAAhcAAAEXAAABFgAAARYAAAIWAAABFgAAARYAAAIWAAACFgAAAR0AAAAdAAABHQAAAB0AAAEWAAAAHQAAARcAAAEXAAACFwAAABYAAAMWAAAAFgAAARYAAAEWAAAAFgAAAhYAAAAdAAABHQAAAx0AAAAdAAACFgAAAx0AAAEXAAADFwAAAxcAAAJeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAAFwAAAxcAAAMXAAADXgAAAFwAAAJcAAADXAAAAVwAAANcAAABFgAAAkcAAABEAAACRAAAAF4AAAAZAAABGQAAARcAAAIXAAABFwAAAF4AAABcAAABXAAAAVwAAAFcAAABXAAAAF4AAAAWAAADRAAAAEQAAAJeAAAAGQAAARkAAAIXAAACFwAAABcAAAJeAAAAXAAAAlwAAANcAAABXAAAAVwAAAFeAAAAFgAAAEQAAAFEAAACXgAAABkAAAMZAAADXgAAAF4AAABeAAAAXgAAAFwAAAFcAAAAXAAAAlwAAAJcAAADXgAAABYAAANEAAACRAAAARYAAAEZAAACGQAAAU4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAGQAAARkAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAE4AAABOAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABHAAAAXgAAAAAAAAAAAAAAXgAAAF4AAAABAAAAXgAAAAEAAABeAAAAAQAAAF4AAAAAAAAAAAAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAAABAAAAXgAAAF4AAABOAAAAAQAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAA== - 1,1: - ind: 1,1 - tiles: HQAAAh0AAAIdAAABFgAAAxYAAAIWAAABFgAAABYAAAMWAAABFgAAAxYAAAJeAAAAHQAAAh0AAAMdAAAAHQAAAR0AAAEdAAABHQAAAhYAAAIWAAAAFgAAARYAAAAWAAABFgAAARYAAAEWAAADFgAAAB4AAAIeAAADHgAAAxYAAAEWAAABXgAAAF4AAABeAAAAFgAAAhYAAAIWAAACFgAAAxYAAAIWAAADFgAAABYAAAAeAAABHgAAAR4AAAEWAAADGQAAARkAAAIZAAACXgAAAF4AAABeAAAAFgAAAF4AAABEAAACRAAAAUQAAAFeAAAAHgAAAx4AAAMeAAAAFgAAABkAAAMZAAABGQAAAl4AAAAWAAABFgAAADEAAAAxAAAAMQAAADEAAAAxAAAAXgAAAB4AAAAeAAACHgAAA14AAAAZAAABGQAAABkAAAFeAAAAFgAAAhYAAAExAAAAMQAAADEAAAAxAAAAMQAAABYAAAEeAAADHgAAAR4AAABeAAAAGQAAAxkAAAIZAAAAXgAAABYAAAMWAAACMQAAADEAAAAxAAAAMQAAADEAAABeAAAAHgAAAh4AAAMeAAABXgAAABkAAAMZAAADGQAAA14AAAAWAAACFgAAAxYAAAMWAAADFgAAARYAAAEWAAACXgAAABYAAAEWAAABFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABeAAAAOgAAADoAAAA6AAAAXgAAAF4AAABHAAAAWwAAAV4AAABeAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAABYAAAFeAAAAFgAAAl4AAABeAAAARAAAAFsAAAFeAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAFgAAABYAAAAWAAABFgAAABYAAAIWAAACRwAAAEcAAABbAAADXgAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAABYAAAIWAAAAFgAAAhYAAAEWAAAAFgAAAF4AAABeAAAAWwAAA14AAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAAAWAAABFgAAAxYAAAAWAAABFgAAARYAAAJEAAADXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAFgAAAxYAAAMWAAABFgAAABYAAAAWAAABTwAAAEcAAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAABYAAAAWAAADFgAAABYAAAIWAAAAFgAAAQ== - -2,-2: - ind: -2,-2 - tiles: RAAAAF4AAABeAAAATgAAAE4AAABeAAAARQAAA0UAAABFAAAARQAAAV4AAABEAAACSgAAAkQAAANeAAAAXgAAABYAAANeAAAAFgAAAhYAAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUoAAABHAAAAXgAAAF4AAABEAAACXgAAABYAAAEWAAABFgAAAV4AAABHAAAAXgAAAE4AAABOAAAAXgAAAEQAAAFKAAACRwAAABYAAAFeAAAARAAAAV4AAAAWAAABFgAAAhYAAANeAAAARwAAAF4AAABOAAAATgAAAF4AAABEAAABSgAAAUcAAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkoAAAJEAAABRAAAAEQAAAJEAAABFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAA0cAAABKAAADSgAAA0oAAANKAAADRAAAA14AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAASgAAA0QAAAJEAAABRAAAA0QAAANeAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAAARAAAA0QAAABeAAAAFgAAAhYAAAEWAAADXgAAAF4AAABEAAACXgAAABYAAAMWAAADXgAAAEQAAANHAAAARwAAAEcAAABEAAADXgAAAEQAAABKAAABRAAAAhYAAAAWAAACRAAAAF4AAABOAAAATgAAABYAAABEAAAARwAAAEcAAABHAAAARAAAA14AAABEAAACSgAAAkQAAAAWAAABFgAAAUQAAAEWAAABXgAAAE4AAABeAAAACwAAAEcAAABHAAAARwAAAEQAAAMWAAADRwAAAEoAAAFEAAAAXgAAABYAAABEAAACXgAAAF4AAABOAAAAXgAAAEQAAAJEAAABRAAAAEQAAAJEAAABXgAAAEcAAABKAAAARAAAAV4AAAAWAAADFgAAA14AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAANEAAABXgAAAF4AAABHAAAASgAAAEQAAAJeAAAAUAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAkoAAANEAAABXgAAAEcAAABEAAACRAAAA0QAAANEAAABRAAAABYAAAFEAAACRAAAA0QAAANeAAAARAAAAkQAAABKAAAARAAAA14AAABeAAAARAAAAkQAAANHAAAARAAAAkcAAAAWAAAARwAAAEcAAABEAAACXgAAAF4AAABEAAABSgAAAEQAAANeAAAAXgAAAA== - -1,-2: - ind: -1,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJKAAAARwAAAEcAAABeAAAAAAAAAF4AAABeAAAARwAAAE4AAABOAAAAXgAAAF4AAABeAAAATgAAAF4AAABEAAABSgAAA0QAAANeAAAAXgAAAAAAAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAAAWAAAARAAAAEoAAAFEAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFKAAACRAAAA14AAABeAAAAXgAAAEQAAAJEAAABFgAAAEQAAAJEAAACRAAAA0cAAABHAAAARAAAA0QAAAJJAAABSQAAAUkAAANEAAABRAAAARYAAAJKAAABSgAAAhYAAAFKAAADSgAAA0oAAAFKAAACSgAAAEoAAAFKAAADSQAAADkAAABJAAACSgAAAUoAAAEWAAAARAAAAEQAAAAWAAADRAAAA0QAAAJEAAAARAAAAUQAAAJEAAAARAAAAUkAAAJJAAACSQAAAUQAAABEAAADFgAAA14AAABeAAAAXgAAAF4AAAAWAAADXgAAABYAAAMWAAABXgAAAF4AAABEAAAASgAAAkQAAAJeAAAAXgAAAF4AAAAWAAACXgAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAABeAAAARAAAA0oAAAJEAAABXgAAAAAAAAAAAAAAGgAAAF4AAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAXgAAABYAAAEWAAAAFgAAAl4AAAAAAAAAAAAAABoAAANeAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAAF4AAABNAAACTQAAAU0AAANeAAAAXgAAAF4AAAAaAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAV4AAABeAAAATQAAAk0AAAFNAAAAFgAAAl4AAABeAAAARwAAAEcAAAAwAAAAMAAAADAAAAAwAAAAXgAAAE8AAABPAAAAXgAAAE0AAABNAAACTQAAA14AAABeAAAAXgAAAEcAAABeAAAAMAAAADAAAAAwAAAAMAAAAF4AAABeAAAATgAAAF4AAABNAAACTQAAAU0AAANeAAAAXgAAAF4AAABOAAAAXgAAADAAAAAwAAAAMAAAADAAAABeAAAATgAAAE4AAABeAAAATQAAAE0AAABNAAACXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE0AAAJNAAABTQAAA14AAABeAAAAUAAAAw== - 0,-2: - ind: 0,-2 - tiles: AAAAAF4AAAABAAAAAQAAAAEAAAABAAAAAQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAEkAAAFEAAACRAAAAgAAAABeAAAAAQAAAAEAAAABAAAAAQAAAAEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAAAAAAAXgAAAAEAAAABAAAAAQAAAAEAAAABAAAAXgAAAFAAAAJeAAAAXgAAAE4AAABOAAAATgAAAEQAAABEAAACXgAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAAFEAAABRAAAA0QAAANEAAABRAAAAEQAAABEAAABRAAAAEQAAAIWAAACRAAAAEQAAAJHAAAARAAAAEQAAAFKAAABSgAAA0oAAAI5AAAASgAAAkoAAAM5AAAASgAAAEoAAAFKAAAAFgAAA0QAAAFEAAADRwAAAEcAAABEAAADRAAAAUQAAAJEAAACRAAAAkQAAANEAAADRAAAAUQAAABEAAACRAAAABYAAAFEAAAARwAAAEcAAABEAAABRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAMAAAAAAAAAAAAAAABeAAAAXgAAAE4AAABeAAAAFgAAARYAAAIWAAAAFgAAABYAAAIWAAACXgAAAEQAAAJEAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABeAAAAXgAAABYAAAAWAAAAFgAAABYAAAEWAAAAFgAAA14AAABEAAACRAAAAwAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAF4AAAAWAAADLAAAACwAAAAsAAAALAAAABYAAAMWAAAARAAAAEQAAAMAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAFgAAARYAAAAWAAABFgAAAxYAAAAWAAADXgAAAEQAAAFEAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAABYAAAIWAAADFgAAARYAAAMWAAACFgAAA14AAAAWAAABFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABQAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABEAAADRAAAAQ== - 1,-2: - ind: 1,-2 - tiles: RAAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAABYAAAJeAAAAXgAAAEcAAABeAAAATgAAAEcAAABeAAAASAAAA0gAAAFIAAAASAAAAl4AAABPAAAAXgAAAFwAAABcAAAAXAAAAlwAAANEAAADXgAAAEcAAABOAAAAXgAAAEgAAANIAAAASAAAAEgAAAFeAAAATgAAAF4AAABcAAADXAAAAVwAAAFcAAACRAAAA14AAABOAAAATgAAAF4AAABIAAAASAAAAEgAAAFIAAAAXgAAAE8AAABeAAAAXAAAAlwAAAJcAAABXAAAAEQAAAJeAAAARwAAAEcAAABeAAAASAAAAkgAAANIAAAASAAAAF4AAABPAAAAXgAAAFwAAANcAAABXAAAAlwAAAJEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAV4AAABeAAAAXgAAAF4AAAAWAAADXgAAAF4AAABeAAAARAAAAhYAAAA7AAAAFgAAA0QAAABEAAAARAAAAkQAAANEAAAARAAAAUQAAAJEAAAARAAAAEQAAAJEAAAAFgAAAUQAAAMWAAACOwAAABYAAABEAAAARAAAAEQAAABEAAABRAAAA0QAAAJEAAADRAAAAkQAAANEAAACRAAAABYAAAFHAAAAXgAAAF4AAABeAAAARAAAAEQAAABEAAABRAAAAkQAAABEAAAARAAAA0QAAANEAAABRAAAAEQAAAJeAAAARAAAAV4AAABEAAACRAAAA0QAAANEAAAARAAAAkQAAAFEAAABRAAAAEQAAANEAAADRAAAAEQAAAFEAAABRAAAAUQAAAFeAAAARAAAAkQAAABEAAAARAAAAkQAAAFEAAAARAAAAEQAAAJEAAACRAAAAkQAAAFEAAABRAAAAUQAAABEAAADXgAAAEQAAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAFgAAAF4AAABeAAAAXgAAAF4AAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACgAAABeAAAAXgAAAEQAAAJEAAADRAAAAUQAAAJEAAABSgAAAUoAAAFKAAACSgAAAUoAAAFKAAAASgAAAUoAAANKAAABRAAAA0QAAABEAAACRAAAAEQAAAFEAAADRAAAAUoAAAJKAAABSgAAAUoAAABKAAAASgAAA0oAAABKAAAASgAAAEQAAAFEAAABRAAAAUQAAAJEAAACRAAAAEQAAAJKAAACSgAAA0oAAAFKAAADSgAAA0oAAABKAAADSgAAAUoAAANEAAACRAAAAw== - 2,0: - ind: 2,0 - tiles: RAAAAkoAAANEAAACFgAAAUQAAANEAAABRAAAA0QAAAJEAAABRAAAAUcAAABHAAAARwAAAEQAAAJEAAABRAAAAUQAAANKAAADSgAAAhYAAANKAAACSgAAAkoAAAJKAAABSgAAAkoAAABKAAADSgAAAUoAAAJKAAAASgAAAEoAAANEAAADSgAAAEQAAAEWAAAARwAAAEQAAANEAAAARAAAAUQAAAJEAAABRAAAAUQAAANEAAAARAAAAUQAAANEAAAARwAAAEoAAANEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABKAAACRAAAA14AAABEAAADRAAAAkQAAAFEAAABHgAAAR4AAAEeAAACXgAAAF4AAABHAAAARwAAAEcAAABEAAACSgAAA0cAAABeAAAARAAAAUcAAABEAAADRAAAAR4AAAMeAAADHgAAA14AAABHAAAARwAAAEcAAABHAAAARAAAAUoAAANEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAeAAABHgAAAB4AAABeAAAARwAAAAsAAABEAAADRAAAAkoAAAJKAAAARAAAAV4AAABEAAAARAAAAEQAAABEAAACHgAAAh4AAAAeAAABXgAAAEcAAABEAAABRAAAA0QAAANEAAAARAAAAEQAAANeAAAARAAAA0cAAABEAAADRAAAAx4AAAIeAAACHgAAAl4AAABHAAAARAAAAgsAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAeAAADHgAAAR4AAANeAAAARwAAAEQAAANEAAABRAAAAkQAAABeAAAARAAAA0QAAAJeAAAARAAAAkQAAABeAAAAHgAAAh4AAAMeAAAAXgAAAEcAAABEAAACRAAAA0QAAAJEAAABXgAAAEcAAABEAAAAXgAAAEQAAABEAAAAFgAAAR4AAAMeAAADHgAAAF4AAABHAAAARwAAAFAAAANHAAAARAAAAl4AAABEAAABRAAAA14AAABEAAABRAAAAl4AAAAeAAACHgAAAB4AAAFeAAAARwAAAEcAAABHAAAARwAAAEQAAAJeAAAARAAAAEQAAAFeAAAAXgAAAF4AAABeAAAAHgAAAR4AAAAeAAADXgAAAF4AAABeAAAAXgAAAEcAAAAdAAABHQAAAR0AAAAdAAAAHQAAAh0AAAEdAAAAHQAAAB0AAAMdAAACHQAAAhYAAAEWAAACFgAAARYAAAALAAAAHQAAAR0AAAMdAAACHQAAAB0AAAIdAAABHQAAAx0AAAMdAAADHQAAAR0AAAIWAAAAFgAAAhYAAAIWAAACCwAAAA== - 2,1: - ind: 2,1 - tiles: HQAAAh0AAAAdAAAAHQAAAh0AAAIdAAABHQAAAB0AAAAdAAACHQAAAx0AAABeAAAAXgAAAF4AAABeAAAARwAAABYAAABeAAAAMQAAADEAAAAxAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAARwAAAEcAAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABbAAADWwAAAVsAAAFbAAACWwAAA14AAABHAAAARwAAAEcAAABHAAAAFgAAAF4AAABEAAABRAAAA0QAAABeAAAAWwAAAVsAAABbAAABWwAAAlsAAAIWAAACRwAAAEcAAABHAAAARwAAAF4AAABeAAAARAAAAkQAAANEAAADFgAAA1sAAAJbAAACWwAAAlsAAABbAAADFgAAAUcAAABHAAAACwAAAAsAAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAWwAAAlsAAAJbAAADWwAAAl4AAABHAAAARwAAAAsAAABQAAABTgAAAE4AAABPAAAATgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAEQAAANEAAABTgAAAE4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABHAAAATgAAAE4AAAAWAAADXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAA14AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAARwAAAF4AAABPAAAAXgAAABYAAAFeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAATwAAAF4AAABHAAAARAAAAV4AAAAWAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAF4AAABHAAAAXgAAAEQAAAFeAAAAFgAAAF4AAABeAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABHAAAARwAAAE8AAABeAAAAXgAAAA== - 2,-1: - ind: 2,-1 - tiles: FgAAAV4AAABeAAAARwAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABHAAAARAAAA14AAABHAAAAXgAAAE4AAABOAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAWwAAAkcAAABEAAAARAAAA0QAAANeAAAARAAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAV4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAEcAAABeAAAARAAAA0QAAABEAAAAXgAAAFsAAANeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAARwAAAEoAAABKAAABRAAAAF4AAABbAAADWwAAA1sAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADSgAAAkQAAABeAAAAWwAAAFsAAABbAAABWwAAARYAAAFbAAABWwAAAFsAAABbAAADXgAAAF4AAABeAAAARAAAAUoAAAJEAAADFgAAAlsAAABbAAABWwAAAFsAAAFeAAAAWwAAAlsAAAJbAAAAWwAAA14AAABOAAAATgAAAEQAAANKAAABRwAAAF4AAABbAAACWwAAA1sAAANbAAACXgAAAFsAAAFbAAAAWwAAA1sAAAFeAAAATgAAAE4AAABHAAAASgAAAUcAAABeAAAAWwAAA1sAAANbAAACWwAAARYAAAFbAAAAWwAAA1sAAANbAAACXgAAAE4AAABOAAAARwAAAEoAAANEAAACXgAAAF4AAABeAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABXgAAAA== - -2,1: - ind: -2,1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACSgAAA0QAAABeAAAATgAAAEQAAAJEAAACRAAAAUQAAANEAAAAXgAAAEQAAABEAAAARAAAAUQAAABeAAAARAAAAkoAAAFEAAAAXgAAAF4AAABEAAABRAAAAEQAAANEAAAARwAAABYAAANHAAAARAAAA0QAAABEAAAAXgAAAEQAAAFKAAADRAAAAF4AAABeAAAARAAAA0QAAANEAAAARAAAA0cAAAAWAAADRwAAAEQAAABEAAACRAAAAl4AAABEAAAASgAAA0QAAABQAAADRwAAAEQAAAFEAAACXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADRAAAAEQAAAEWAAACRAAAA0oAAABEAAACXgAAAEQAAAJEAAAARAAAAl4AAABEAAAARAAAA14AAABEAAACRAAAAkQAAAFEAAACFgAAA0QAAABKAAABRAAAAl4AAABEAAABRAAAAEQAAAAWAAAARAAAAkQAAAFEAAACRAAAAkQAAAJEAAAARAAAA14AAABEAAADSgAAAUQAAABeAAAAXgAAAEQAAAJEAAADXgAAAEQAAAJEAAADXgAAAEQAAANEAAABRAAAA0QAAABeAAAARAAAAUoAAANEAAABXgAAABYAAANEAAACRAAAAF4AAABKAAACRAAAAV4AAABEAAADRAAAAUQAAAFEAAAAXgAAAEQAAANKAAABRAAAA14AAAAWAAABRAAAAkQAAAILAAAARAAAAQsAAABEAAADCwAAAEQAAAFEAAADRAAAAF4AAABEAAADSgAAA0QAAAEWAAADFgAAAUQAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUoAAANEAAABXgAAABYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFKAAABRAAAAV4AAAAWAAACRAAAA0QAAAAWAAABXgAAAE8AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAASgAAAkQAAANeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABbAAABWwAAAlsAAABeAAAARAAAAEoAAABEAAABFgAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAFAAAAFeAAAAWwAAAFsAAAFbAAAAFgAAA0QAAAFKAAACRAAAABYAAANEAAABXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAFsAAAFbAAADWwAAAl4AAABEAAACSgAAA0QAAANeAAAARAAAAQ== - 3,1: - ind: 3,1 - tiles: RwAAAEcAAABHAAAARAAAAC8AAAAvAAAALwAAAEQAAAJHAAAACwAAAEcAAABHAAAARAAAAkQAAABEAAADXgAAAF4AAABHAAAARwAAAEQAAAIvAAAALwAAAC8AAABEAAAARwAAAEcAAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABHAAAARwAAAEcAAABEAAABRAAAAUQAAAJEAAADRAAAAEcAAABHAAAARwAAAFAAAANEAAADRAAAAUQAAAJeAAAARwAAAEcAAABHAAAACwAAAEQAAABEAAADRAAAAkQAAAJHAAAARwAAAEcAAABHAAAARAAAA0QAAAJEAAADXgAAAAsAAAALAAAARwAAAEcAAABHAAAARwAAAEcAAABHAAAARwAAAEcAAABHAAAARwAAAF4AAABeAAAAXgAAAF4AAABHAAAACwAAAFAAAANHAAAACwAAAFAAAABHAAAACwAAAFAAAANHAAAARwAAAFAAAAJRAAAAUQAAA1EAAANRAAACXgAAAEQAAAJEAAABXgAAAEQAAAFEAAADXgAAAEQAAABEAAABXgAAAEQAAANEAAACXgAAAFEAAAJRAAAAUQAAAV4AAABEAAADRAAAAl4AAABEAAAARAAAAF4AAABEAAACRAAAA14AAABEAAAARAAAA14AAABRAAABXgAAAFEAAANeAAAARAAAAEQAAAJeAAAARAAAAkQAAAJeAAAARAAAAEQAAABeAAAARAAAA0QAAABeAAAAQQAAAF4AAABBAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAEcAAABHAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAEcAAABHAAAAXgAAAF4AAABeAAAATgAAAEcAAABOAAAARAAAAl4AAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAAF4AAABeAAAARAAAA0QAAABHAAAARAAAAV4AAABEAAADRAAAA08AAABeAAAAXgAAAF4AAABEAAABRAAAAUQAAAJeAAAAXgAAAEQAAAFHAAAAFgAAAxYAAABeAAAARAAAAEQAAAFPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABRwAAAF4AAABQAAACXgAAAF4AAABeAAAAMQAAADEAAABHAAAARwAAAFsAAAFeAAAAAAAAAAAAAABeAAAAFgAAAA== - 3,0: - ind: 3,0 - tiles: RAAAAkQAAANEAAACRAAAA0oAAAJEAAADRAAAAF4AAABeAAAAUAAAA14AAABeAAAAXgAAAF4AAABeAAAATgAAAEoAAAFKAAAASgAAAEoAAAJKAAABRAAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFAAAAFEAAADRAAAA0QAAAJEAAACRAAAAUcAAABHAAAAXgAAAF4AAABeAAAAXgAAAE4AAABPAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAEcAAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAEcAAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAARwAAAEcAAABHAAAARwAAAEcAAAAWAAACTgAAAE4AAABHAAAARwAAAEcAAABHAAAARwAAAEcAAABHAAAARAAAAEQAAAELAAAARAAAAkQAAANHAAAAXgAAAE4AAABOAAAARAAAAUQAAAFHAAAARAAAAEQAAANHAAAARwAAAEQAAABEAAAARAAAAUQAAAJEAAACRwAAAF4AAABOAAAATgAAAAsAAABEAAACRAAAA0QAAANEAAACRAAAAwsAAAALAAAARAAAAkQAAAJEAAACRAAAAEcAAABeAAAATgAAAE4AAABEAAABRAAAA0QAAANEAAADRAAAAEQAAABEAAAARAAAA0QAAAFEAAADRAAAA0QAAAFHAAAAXgAAAF4AAABeAAAACwAAAEQAAANHAAAARwAAAEcAAABHAAAARwAAAEcAAABHAAAARwAAAEcAAABHAAAARwAAAF4AAABRAAABQQAAAEQAAABEAAABRwAAAF4AAABeAAAAFgAAAF4AAABeAAAARwAAAEcAAABHAAAACwAAAAsAAABeAAAAUQAAA14AAABeAAAARwAAAEcAAABeAAAARAAAAkQAAAFEAAABXgAAAEcAAABHAAAAXgAAAEcAAABHAAAAXgAAAFEAAAJBAAAARwAAAEcAAABQAAAAXgAAAEQAAANEAAACRAAAAF4AAABQAAADRwAAAEcAAABHAAAAXgAAAF4AAABRAAAAXgAAAEcAAABHAAAARwAAAF4AAABEAAAARAAAAEQAAAJeAAAAUAAAAFAAAABQAAACRwAAAFEAAANRAAACUQAAAkEAAABHAAAARwAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAAALAAAARwAAAEcAAABeAAAAXgAAAF4AAABeAAAARwAAADkAAABHAAAARAAAAEQAAAILAAAARAAAAkQAAAMLAAAAOQAAAAsAAABQAAADRAAAAUQAAANEAAADXgAAAA== - 3,-1: - ind: 3,-1 - tiles: XgAAAAAAAAAAAAAAXgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAEQAAANEAAABRAAAA0QAAAFEAAAARAAAAF4AAABeAAAAFgAAAV4AAABeAAAATgAAAE4AAABHAAAARwAAAEcAAABEAAACRAAAA0QAAAJEAAAARAAAAUQAAAJEAAABRAAAAUcAAABHAAAAXgAAAF4AAABeAAAARAAAAUcAAABEAAAARAAAAkQAAAJEAAADRwAAAEQAAANEAAACRAAAAkQAAABHAAAARAAAAU4AAABeAAAAKAAAAEQAAAFEAAABRAAAAUQAAAFEAAACRAAAAEQAAAJEAAADRAAAAkQAAABEAAACRAAAAkcAAABeAAAAXgAAACgAAABEAAABRAAAAkQAAAFEAAACRAAAAkQAAAJEAAADRAAAA0QAAANEAAADRAAAAUQAAANEAAAAXgAAAEQAAABEAAAARAAAAUQAAAAoAAAAKAAAAF4AAABeAAAAXgAAAF4AAABeAAAAKAAAACgAAABEAAAARAAAAhYAAAJHAAAARAAAAUQAAAJEAAABKAAAACgAAABeAAAAXgAAAF4AAABeAAAAXgAAACgAAAAoAAAARAAAAkQAAANeAAAARwAAAEcAAABEAAAARAAAASgAAAAoAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAoAAAAKAAAAEQAAAJEAAAAXgAAAEcAAAAoAAAARAAAAEQAAAFEAAACRwAAAEQAAABEAAACRAAAAkQAAAFEAAABRAAAAEQAAAJEAAAARwAAAF4AAABeAAAAKAAAAEQAAANEAAACRAAAAUQAAAJEAAAARAAAA0QAAABEAAADRAAAAUQAAABEAAADRwAAAEcAAABeAAAAXgAAAF4AAABHAAAARwAAAEcAAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAFgAAARYAAAEWAAAAXgAAAE8AAABOAAAATwAAAF4AAABbAAADWwAAAlsAAANbAAAAWwAAAU4AAABeAAAAXgAAAEQAAANKAAACRAAAA14AAABeAAAATwAAAF4AAABeAAAAWwAAAlsAAAJbAAACWwAAAVsAAAJOAAAAXgAAAEQAAAJEAAACSgAAAUQAAAFEAAACXgAAAE4AAABeAAAAXgAAAFsAAABbAAADWwAAAVsAAANbAAADXgAAAF4AAABEAAABRAAAAUoAAANEAAADRAAAAhYAAABeAAAAXgAAAF4AAABbAAAAWwAAAFsAAANbAAAAWwAAAA== - 2,-2: - ind: 2,-2 - tiles: XgAAAF4AAABHAAAARwAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFwAAABeAAAARAAAAEQAAAFEAAABFgAAA04AAABOAAAAXgAAAAAAAAAAAAAAXgAAADwAAAA8AAAAPAAAADwAAABcAAABXgAAAEQAAANEAAADRAAAA14AAABOAAAATgAAAF4AAAAAAAAAAAAAAF4AAAA8AAAALAAAACwAAAAsAAAAXAAAAl4AAABEAAADRAAAA0QAAAFeAAAARwAAAEcAAABeAAAAXgAAAF4AAABeAAAAPAAAACwAAAAsAAAALAAAAFwAAAFeAAAARAAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAADoAAAA6AAAAFgAAATwAAAA8AAAAPAAAADwAAABeAAAAFgAAAUcAAABEAAABRAAAA0QAAAJEAAABRAAAAEQAAAE6AAAAOgAAAF4AAAA8AAAAPAAAAF4AAABeAAAAOwAAABYAAAJHAAAARAAAAEQAAANEAAADRAAAA0QAAANEAAABOgAAADoAAABeAAAAXgAAAF4AAAAWAAACPAAAADsAAAAWAAADRAAAAEQAAAFEAAAAXgAAAF4AAABeAAAAXgAAADoAAAA6AAAAFgAAAzwAAAA8AAAAPAAAADwAAABeAAAAXgAAAEQAAABEAAABRwAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAAA8AAAALAAAACwAAAAsAAAARAAAA14AAABEAAADRAAAAEcAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAPAAAACwAAAAsAAAALAAAAEQAAAFeAAAARAAAAEQAAAJEAAADXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAADwAAAA8AAAAPAAAADwAAABEAAACXgAAAEQAAABEAAAARAAAAV4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAFgAAABYAAAJeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAEQAAAFEAAACRAAAAUQAAABEAAAARAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABEAAACRAAAAEQAAAJEAAABRAAAA0QAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAAARAAAAUQAAAJeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAEcAAABEAAACXgAAAA== - -2,-3: - ind: -2,-3 - tiles: FgAAAE8AAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAIsAAAAFgAAAxYAAABeAAAAVAAAAhYAAAIWAAACFgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAAAWAAADLAAAABYAAAMWAAACXgAAAFQAAAJOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABeAAAAFgAAASwAAAAWAAACFgAAAF4AAABUAAADRwAAAEcAAABHAAAARwAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAATwAAAE4AAABeAAAARwAAAEQAAAFEAAAARAAAAxYAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABPAAAAFgAAAEQAAAJKAAACSgAAA0oAAAMWAAAARAAAA14AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABEAAACSgAAAEcAAABHAAAAFgAAAEQAAAIWAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEoAAANEAAABXgAAAF4AAABEAAAAXgAAAEQAAABEAAADXgAAAF4AAABeAAAAXgAAAEcAAABHAAAAXgAAABYAAAEWAAABFgAAAV4AAABbAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAARwAAAF4AAABHAAAASgAAAkcAAABeAAAAWwAAAUQAAANHAAAAXgAAAEcAAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAEoAAABEAAABXgAAAFsAAAMWAAADXgAAAF4AAABHAAAARwAAAF4AAABFAAADRQAAAUUAAAFFAAADXgAAAEcAAABKAAACRAAAAl4AAABeAAAARAAAAUQAAABeAAAAXgAAAF4AAABeAAAARQAAAEUAAANFAAACRQAAA14AAABEAAACSgAAA0QAAAJeAAAAXgAAAEQAAABEAAADFgAAA0QAAAFEAAABFgAAAkUAAABFAAADRQAAAUUAAAFEAAABRAAAAUoAAANEAAACXgAAAF4AAABHAAAARAAAABYAAANEAAAARAAAAxYAAABFAAABRQAAAEUAAANFAAADXgAAAEQAAAJKAAACRAAAAV4AAABeAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAARQAAAkUAAAJFAAAARQAAARYAAANEAAADSgAAAUQAAAFeAAAAXgAAAA== - -1,-3: - ind: -1,-3 - tiles: VAAAAVQAAANUAAABVAAAAlQAAABeAAAAUQAAAVEAAABRAAAAUQAAAFEAAABRAAADUQAAA1EAAAJRAAABUQAAAFQAAAFUAAAAVAAAA1QAAAFUAAABRAAAAVEAAAJRAAACUQAAAFEAAANRAAADUQAAAVEAAANRAAAAUQAAAFEAAAFUAAABVAAAA1QAAANUAAADVAAAA14AAABRAAAAUQAAAVEAAABRAAAAUQAAAlEAAABRAAADUQAAAlEAAAJRAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAABXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAA0cAAABEAAACRwAAAEQAAAFEAAACRAAAAkcAAABHAAAARwAAAEUAAAFFAAACRQAAAUUAAANFAAACRwAAAEcAAABKAAABSgAAAzkAAABKAAAASgAAA0oAAAE5AAAASgAAA0oAAABFAAABRQAAAUUAAAJFAAABRQAAA0oAAABKAAABRwAAAEcAAABEAAACRAAAAEQAAAFEAAADRAAAAkQAAANEAAABRQAAAUUAAANFAAAARQAAA0UAAAFEAAADRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACXgAAAEUAAANFAAACRQAAA0UAAAJFAAAAXgAAAF4AAABbAAAAWwAAAF4AAABbAAADWwAAAlsAAANbAAABWwAAAF4AAABeAAAAFgAAAxYAAAIWAAAAXgAAAF4AAAAAAAAAWwAAAlsAAAAWAAAAWwAAAVsAAAJbAAABWwAAAFsAAANbAAAAXgAAAEQAAAJKAAAARAAAAF4AAAAAAAAAAAAAAFsAAAFbAAABXgAAAFsAAAJbAAADWwAAA1sAAAFbAAABWwAAAV4AAABEAAABSgAAAEQAAAFeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABbAAAAWwAAAVsAAANbAAACWwAAAVsAAABeAAAARAAAAUoAAAFEAAABXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAWwAAAVsAAAFbAAABWwAAAVsAAAJeAAAAXgAAAEQAAAFKAAAARwAAAEcAAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAWAAABXgAAAF4AAABeAAAAXgAAAEcAAABEAAADSgAAAEcAAABHAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAARwAAAFAAAAFHAAAARwAAAF4AAABHAAAARAAAAUoAAAFHAAAARwAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAARwAAAEcAAABeAAAARwAAAEQAAANKAAABRwAAAEcAAABeAAAAAAAAAA== - 0,-3: - ind: 0,-3 - tiles: UQAAA14AAABRAAABUQAAA1EAAABRAAAAUQAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAFEAAAJRAAADUQAAAFUAAAJRAAADUQAAA1EAAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAFgAAAV4AAABRAAABXgAAAFEAAAJRAAAAUQAAAlEAAAFRAAABXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAAUQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAkcAAABEAAAARAAAAkcAAABEAAADRAAAAkQAAAAWAAAARAAAAUQAAAJEAAADRAAAAkQAAABEAAABRAAAAUQAAAE5AAAASgAAAEoAAABKAAABOQAAAEoAAAJKAAADFgAAAUQAAABEAAABRAAAAkQAAAFEAAAARAAAAkQAAABEAAAARAAAAEQAAABEAAABRAAAAUQAAANEAAABRAAAAxYAAAJEAAACRAAAAEQAAAFEAAADRAAAAUQAAAJEAAAARAAAAV4AAABHAAAARwAAAEcAAABHAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAE8AAABeAAAAXgAAAAAAAAAAAAAAXgAAAEQAAANEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAF4AAAAWAAADFgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAAAAAAAAAAABeAAAARAAAAEQAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABQAAACXgAAAF4AAABPAAAAXgAAAAAAAABeAAAAXgAAAEQAAAJEAAAAAAAAAF4AAAABAAAAAQAAAAEAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAEkAAABEAAADRAAAAQAAAABeAAAAAQAAAAEAAAABAAAAAQAAAAEAAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABJAAADRAAAATkAAAAAAAAAXgAAAAEAAAABAAAAAQAAAAEAAAABAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAASQAAAkQAAAJEAAACAAAAAF4AAAABAAAAAQAAAAEAAAABAAAAAQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAEkAAANEAAADRAAAAQ== - 1,-3: - ind: 1,-3 - tiles: XgAAAEcAAABeAAAAFgAAABYAAAMWAAACFgAAA14AAABEAAABRAAAAEQAAAFeAAAAXAAAAFwAAABbAAACWwAAAV4AAABHAAAAXgAAABoAAAIaAAADGgAAARoAAABeAAAARwAAAEQAAABEAAACXgAAABYAAAJbAAADWwAAARYAAAFeAAAAXgAAAF4AAAAWAAABFgAAAxYAAAIWAAADXgAAAEcAAABHAAAARAAAAF4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAFgAAABYAAAIWAAADFgAAAl4AAAAWAAACFgAAAxYAAANeAAAAXgAAAF4AAABeAAAAFgAAAkQAAAFEAAACRAAAAEQAAABEAAADRAAAA0QAAANEAAABRAAAA0QAAAFEAAACRAAAAUQAAAFEAAADRAAAAEQAAAFEAAACRAAAA0QAAAFEAAACRAAAA0QAAAJEAAADRAAAAUQAAAFEAAACRAAAAEQAAAJEAAADRAAAAUQAAAFEAAABRAAAAkQAAABEAAABRAAAAEQAAABEAAACRAAAAUQAAAJEAAABRAAAA0QAAANEAAAARAAAA0QAAAJEAAADRAAAAEQAAABEAAADRAAAAEQAAAFEAAADRAAAAEQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABeAAAAXgAAACgAAABEAAAARAAAA0QAAAFEAAADRAAAA14AAABEAAADRAAAAUQAAAFEAAACRAAAAEQAAAJEAAAARAAAAl4AAAAoAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAFgAAAl4AAABeAAAAXgAAAEQAAABeAAAAAAAAAAAAAABeAAAAWwAAAlsAAAFbAAADXgAAAFwAAABcAAACXAAAA1wAAABcAAACXgAAAAAAAABEAAACXgAAAAAAAAAAAAAAXgAAAFsAAABbAAACWwAAAxYAAAFcAAACXAAAAFwAAABcAAABXAAAA14AAAAAAAAARAAAAl4AAAAAAAAAAAAAAF4AAABbAAABWwAAAVsAAANeAAAAXAAAAlwAAAFcAAABXAAAAVwAAANeAAAAAAAAAEQAAAJeAAAAAAAAAAAAAABeAAAAWwAAAlsAAAFbAAABXgAAAFwAAABcAAAAXAAAA1wAAAFcAAABXgAAAAAAAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABWwAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0cAAABOAAAATwAAAF4AAABOAAAATgAAAE4AAABeAAAAXgAAAE4AAABeAAAATgAAAF4AAABeAAAATgAAAA== - 2,-3: - ind: 2,-3 - tiles: WwAAAVwAAAJcAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAAJEAAABRAAAAEQAAANEAAACXgAAAFsAAAAWAAACWwAAAl4AAABeAAAAXgAAAE4AAABOAAAAXgAAAEQAAANEAAABRAAAAUQAAANEAAACRAAAARYAAANOAAAATgAAAE4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABEAAABRAAAAkQAAAFEAAAARAAAA0QAAAIWAAACXgAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAkQAAAFEAAADRAAAAEQAAAJEAAABFgAAAUwAAABMAAACTAAAAEwAAABMAAACTAAAABYAAAFEAAABRAAAAUQAAAFEAAADRAAAAkQAAANEAAADRAAAARYAAABMAAADTAAAAEwAAABMAAAATAAAAEwAAAEWAAAARAAAAUQAAAFEAAADRAAAAUQAAABEAAABRAAAAEQAAAAWAAABTAAAA0wAAAFMAAAATAAAAUwAAAFMAAAAFgAAAygAAABEAAABRAAAA0QAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAAxYAAAMWAAADFgAAA14AAAAoAAAARAAAAUQAAABEAAADRAAAAV4AAABEAAABRAAAAkQAAAJEAAADRAAAAEQAAABEAAAARAAAAUQAAANeAAAAXgAAAF4AAAAWAAADFgAAAhYAAAJeAAAARAAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAE4AAABEAAABXgAAAAAAAABeAAAARAAAA0QAAABEAAACXgAAAEQAAAFOAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAARAAAABYAAAAAAAAAXgAAAEQAAAFEAAACRAAAAV4AAABEAAAATgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAEQAAAFeAAAAAAAAAF4AAABEAAAARAAAA0QAAAFeAAAARAAAAUQAAABEAAADRAAAAUQAAANEAAABRAAAAUQAAABEAAACXgAAAAAAAABeAAAARAAAA0QAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRAAAA08AAABOAAAATgAAAE4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABOAAAATgAAAEcAAABHAAAARAAAA0QAAAFeAAAAXgAAAF4AAABeAAAAUAAAAVAAAAJeAAAAXgAAAF4AAABeAAAAXgAAAA== - 2,2: - ind: 2,2 - tiles: XgAAAF4AAABeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE8AAABEAAACXgAAAF4AAAAWAAABRwAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABHAAAARwAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAABeAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEcAAABeAAAARwAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABHAAAARwAAAEcAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAEcAAABHAAAARwAAAEcAAABQAAADXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEcAAABEAAABRwAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABHAAAATgAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABbAAADRwAAAFsAAABbAAABXgAAAF4AAABeAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAlsAAABeAAAARAAAAl4AAABbAAAAXgAAAFsAAAFEAAADWwAAAF4AAABbAAACXgAAAEQAAAJEAAADXgAAAFsAAANeAAAARAAAAVsAAANEAAABXgAAAF4AAABbAAABWwAAAl4AAABbAAAARAAAA0QAAANEAAAARAAAAV4AAABEAAACXgAAAFsAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABeAAAAXgAAAFsAAANEAAACXgAAAEQAAAJEAAADRAAAAkQAAAJeAAAARAAAAEcAAABEAAAAXgAAAF4AAABbAAABRwAAAEQAAAJEAAAAXgAAAEQAAANEAAABXgAAAA== - 1,2: - ind: 1,2 - tiles: TwAAAEcAAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAJeAAAAXgAAAE8AAABHAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAARwAAAF4AAABdAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAACRAAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAAARwAAAE8AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAATwAAAEQAAAJHAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAEQAAANEAAABRwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABHAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAFgAAAl4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAANeAAAAAAAAAAQAAAIEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAADXgAAAAAAAAAEAAABBAAAAAQAAAAEAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFgAAAV4AAABeAAAABAAAAgQAAAAEAAAABAAAAQQAAAJeAAAAFgAAABYAAAEWAAAAFgAAAxYAAANeAAAARAAAAEQAAAFEAAAAXgAAAAQAAAAEAAAABAAAAAQAAAAEAAACXgAAAE8AAABPAAAATwAAAE8AAABPAAAAFgAAAEQAAANEAAADRwAAABYAAAMEAAACBAAAAgQAAAAEAAACBAAAAl4AAAAWAAADFgAAAxYAAAAWAAABFgAAAV4AAABEAAAARwAAAEQAAAJeAAAABAAAAAQAAAAEAAAABAAAAgQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAEQAAANEAAAAXgAAAA== - 0,-4: - ind: 0,-4 - tiles: UQAAAV4AAABRAAABUQAAA1EAAAFeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAFeAAAAXgAAABYAAAFeAAAAUQAAA1EAAAFRAAACXgAAAE4AAABeAAAAXgAAAF4AAAAlAAAAJQAAACUAAAAlAAAAJQAAACUAAAAlAAAAXgAAAFEAAANRAAACUQAAAV4AAABeAAAAXgAAAF4AAABeAAAAUQAAAFEAAAJRAAAAUQAAAVEAAANRAAACUQAAA0QAAAJRAAACUQAAAlEAAABeAAAATgAAAF4AAABeAAAAXgAAAFEAAAAlAAAAJQAAAFEAAAAlAAAAJQAAACUAAABeAAAAUQAAAlEAAAFRAAADXgAAAE4AAABeAAAAXgAAAF4AAABEAAACXgAAAF4AAAAWAAACXgAAAF4AAABeAAAAXgAAAFEAAANRAAABUQAAAl4AAABeAAAAXgAAAE8AAABPAAAAUQAAA14AAAAWAAADFgAAARYAAAFRAAABUQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABPAAAATwAAAFEAAABeAAAAFgAAABYAAAIWAAADUQAAAFEAAABeAAAAFgAAAk4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAXgAAAF4AAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABOAAAAUAAAA14AAABeAAAAUQAAA1EAAABRAAACUQAAAlEAAABRAAADUQAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFEAAAFRAAACUQAAAFEAAAJRAAABUQAAA1EAAABEAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAUQAAA1EAAANRAAABUQAAAlEAAAFRAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAEQAAAFeAAAAUQAAAlEAAANRAAADUQAAAVEAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJRAAACXgAAAFEAAABRAAAAUQAAAFEAAABRAAADRAAAAhYAAANeAAAARwAAAEQAAAFHAAAAXgAAAF4AAABEAAAAUQAAAFEAAABRAAABVQAAAFEAAABRAAADUQAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 1,-4: - ind: 1,-4 - tiles: XgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABHAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADRwAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAABEAAABRAAAAUQAAANEAAABRAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAABRAAAAkQAAANEAAAARAAAA0QAAAJeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAAUQAAAJEAAACRAAAAUQAAAFHAAAAXgAAAF0AAABeAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAAEQAAANeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAANEAAACXgAAAFwAAANcAAAAXAAAA1wAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAF4AAABcAAADXAAAAFwAAABcAAACXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABEAAACRAAAAUQAAABeAAAAXAAAAlwAAANcAAADXAAAAE4AAABeAAAAXgAAAF4AAAAWAAACXgAAAF4AAAAWAAAARAAAA0QAAAJHAAAAXgAAAFwAAAJcAAADXAAAAlwAAANeAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAEcAAABEAAAARAAAA14AAABbAAAAWwAAAFsAAAJbAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA0QAAAJeAAAAWwAAAlsAAAFbAAADWwAAA14AAABOAAAATgAAAF4AAABeAAAAFgAAA0cAAABeAAAARAAAAEQAAANEAAADXgAAAFsAAAFbAAAAWwAAAFsAAAFeAAAATgAAAE4AAABeAAAAXgAAAF4AAABHAAAAXgAAAEQAAAFEAAACRAAAA14AAABbAAADWwAAAlsAAAJbAAAAXgAAADMAAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABEAAABRAAAAUQAAAJeAAAAXAAAA1wAAABbAAADWwAAAQ== - 2,-4: - ind: 2,-4 - tiles: XgAAAF4AAAAAAAAAAAAAAAAAAABeAAAARAAAAUQAAANEAAADXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAEcAAABeAAAAAAAAAF0AAABdAAAAXgAAAEQAAAFEAAABRAAAAl4AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAABFgAAA0QAAAFEAAADRAAAAUQAAANEAAADRwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAADRwAAABYAAAJEAAACRAAAAUQAAAJEAAAARAAAAEcAAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRwAAAEQAAAMWAAAARAAAAEQAAAJEAAABRAAAA0cAAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABXgAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAABRAAAAVwAAAJcAAABXAAAAV4AAABeAAAAXgAAAEQAAAJEAAAARAAAAAsAAABeAAAATgAAABYAAANEAAADRAAAA0QAAAJcAAADXAAAA1wAAAFeAAAATgAAAF4AAABEAAACRAAAA0QAAAFEAAABXgAAAEcAAABeAAAAXgAAABYAAANeAAAAXAAAA1wAAANcAAABXgAAAF4AAABeAAAACwAAAEQAAAFEAAABRAAAAl4AAABEAAACXgAAAE8AAABOAAAAFgAAAVwAAABcAAACXAAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAA0QAAANeAAAARAAAAF4AAABOAAAATgAAABYAAAFbAAADWwAAAlsAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAFAAAAMWAAABWwAAAFsAAAJbAAADXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAE4AAABOAAAAFgAAAVsAAABbAAAAWwAAAl4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABbAAAAWwAAAVsAAAJeAAAAXgAAAF4AAABeAAAARwAAAEcAAABeAAAARAAAAUQAAAFEAAABRAAAAUQAAAFeAAAAWwAAAVwAAAFcAAACXgAAAE4AAABOAAAAXgAAAEcAAABeAAAAXgAAAEQAAANEAAADRAAAAUQAAAJEAAADXgAAAA== - -1,-4: - ind: -1,-4 - tiles: JQAAACUAAAAlAAAAJQAAABYAAAJeAAAAJQAAACUAAAAlAAAAJQAAACUAAABeAAAAUQAAA1EAAABRAAACUQAAA14AAABeAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAAXgAAAEQAAAJEAAACXgAAAF4AAAAlAAAAJQAAACUAAAAlAAAAJQAAACUAAAAlAAAAJQAAACUAAAAlAAAAJQAAACUAAAAlAAAAJQAAACUAAAAlAAAAUQAAAlEAAAFRAAACUQAAA1EAAAJRAAAAUQAAAlEAAAFRAAACUQAAAlEAAAFRAAACUQAAAVEAAABRAAADUQAAAFEAAABRAAACJQAAACUAAABRAAABJQAAACUAAABRAAAAJQAAACUAAABRAAACJQAAACUAAABRAAACJQAAACUAAABEAAACRAAAAV4AAABeAAAARAAAAl4AAABeAAAARAAAAUQAAANeAAAARAAAAl4AAABeAAAARAAAAl4AAABeAAAAUQAAAVEAAAJeAAAAUQAAA1EAAAJeAAAAUQAAAFEAAAFeAAAAUQAAAlEAAABeAAAAUQAAA1EAAAFeAAAAUQAAA1EAAAFRAAABXgAAAFEAAABRAAAAXgAAAFEAAAFRAAADXgAAAFEAAANRAAADXgAAAFEAAANRAAABXgAAAFEAAANEAAAARAAAAl4AAABeAAAAUQAAAV4AAABeAAAAUQAAAF4AAABeAAAAUQAAAV4AAAAWAAAAUQAAAV4AAAAWAAACUQAAA1EAAANRAAABUQAAAlEAAABRAAACUQAAAlEAAABRAAAAUQAAA1EAAAJRAAAAUQAAAlEAAAFRAAAAUQAAAFEAAAFRAAAAUQAAA1EAAANRAAADUQAAAlEAAABBAAAAUQAAAVEAAAJRAAADUQAAA1EAAANRAAACUQAAAkEAAABRAAABUQAAA1EAAAJRAAAAUQAAAlEAAAFRAAAAUQAAAFEAAAFRAAADUQAAAFEAAAJRAAABUQAAAVEAAAFRAAACXgAAAF4AAABEAAAAXgAAAF4AAABeAAAARAAAAEQAAANEAAABXgAAAF4AAABEAAACXgAAAF4AAABEAAAARAAAAFQAAABUAAADVAAAAVQAAAFUAAAAXgAAAEQAAAJEAAABRAAAAV4AAABRAAACUQAAA1EAAAFeAAAARAAAAUQAAABUAAABVAAAA1QAAANUAAADVAAAAV4AAABRAAAAUQAAAVEAAABRAAAAUQAAAlEAAAFRAAADUQAAA1EAAANRAAACVAAAAlQAAAFUAAABVAAAAFQAAANeAAAAUQAAAFEAAABRAAABUQAAAFEAAABRAAADUQAAA1EAAABRAAACUQAAAQ== - -2,-4: - ind: -2,-4 - tiles: FgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABRAAAAUQAAA1EAAAFeAAAAFgAAA0cAAABeAAAAXgAAAEcAAABeAAAAXgAAAFEAAABRAAAAUQAAAlEAAANeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAARwAAAF4AAABHAAAARwAAAFEAAAFRAAADUQAAA1EAAABRAAAAXgAAACUAAAAlAAAAJQAAACUAAAAlAAAAXgAAAF4AAABeAAAATwAAAF4AAABRAAAAXgAAAF4AAABeAAAAUQAAAkQAAAMlAAAAUQAAAVEAAAFRAAAAUQAAAF0AAABeAAAATgAAAE8AAABeAAAAUQAAAlEAAABWAAADUQAAAVEAAANeAAAAJQAAACUAAAAlAAAAJQAAACUAAABeAAAAXgAAAE4AAABPAAAATgAAAFEAAAFeAAAAUQAAAF4AAABRAAACXgAAAF4AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATwAAAF4AAABRAAACUQAAAFEAAABRAAACUQAAAF4AAABcAAACXAAAAlwAAABcAAACXgAAAE4AAABeAAAAXgAAABYAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXAAAAFwAAABcAAAAXAAAA0QAAANOAAAATgAAAF4AAABHAAAAXgAAAEcAAABHAAAARwAAAF4AAABOAAAAXgAAAFwAAAFcAAABXAAAAlwAAAFeAAAATgAAAE4AAABeAAAARwAAAEcAAABHAAAARwAAAEcAAABeAAAATgAAAF4AAABcAAACXAAAAVwAAAFcAAABXgAAAF4AAABeAAAAXgAAAEcAAABHAAAARwAAAFAAAAFHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAXgAAAF4AAABHAAAARwAAAEcAAABHAAAARwAAAF4AAABeAAAAUAAAAl4AAABeAAAAXgAAAF4AAAAWAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAE4AAABOAAAAMwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAARwAAAE4AAABOAAAAXgAAAFQAAAFeAAAAFgAAA14AAABeAAAARwAAAEcAAABeAAAARwAAAEcAAABeAAAAFgAAAV4AAABeAAAAFgAAAV4AAABUAAABFgAAAxYAAAIWAAADXgAAAEcAAABeAAAAXgAAAF4AAABHAAAAXgAAABYAAAIsAAAAXgAAABYAAANeAAAAVAAAAA== - -1,-5: - ind: -1,-5 - tiles: RAAAAkQAAABeAAAARwAAAF4AAABeAAAAXgAAAE4AAABPAAAATgAAAE4AAABeAAAAXgAAAE4AAABOAAAATgAAAEcAAABEAAACXgAAAF4AAABOAAAARwAAAEcAAABOAAAATwAAAEcAAABeAAAARwAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAEcAAABHAAAATgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAARAAAA0QAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABEAAADXgAAAE8AAABPAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAATwAAAEcAAABeAAAAXgAAAF4AAABPAAAATgAAAF4AAABPAAAATwAAAF4AAAAWAAACFgAAARYAAAJeAAAAXgAAAF4AAABHAAAAUAAAAF4AAABeAAAATwAAAE4AAABeAAAAXgAAAF4AAABeAAAATwAAAE8AAAAWAAAAXgAAAE4AAABeAAAARwAAAFAAAANeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABQAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABPAAAAUAAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAABYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAABXgAAAE4AAABOAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUAAAA04AAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAABYAAAFeAAAAJQAAACUAAAAlAAAAJQAAACUAAABeAAAAXgAAAEQAAANeAAAAXgAAAF4AAABeAAAAUQAAAVEAAAFRAAACUQAAAyUAAAAWAAADFgAAASUAAAAWAAAAXgAAACUAAAAlAAAAJQAAACUAAAAlAAAAXgAAAFEAAAFJAAACSQAAAEkAAAMlAAAAFgAAAhYAAAElAAAAFgAAAl4AAAAlAAAAJQAAACUAAAAlAAAAJQAAAF4AAABRAAADSQAAAkkAAAFJAAACJQAAABYAAAEWAAACJQAAABYAAABeAAAAJQAAACUAAAAlAAAAJQAAACUAAABeAAAAUQAAAEkAAAFJAAACSQAAAw== - -2,-5: - ind: -2,-5 - tiles: XgAAACUAAAAlAAAAJQAAAFEAAAJRAAADUQAAAlEAAABRAAAAUQAAAV4AAABRAAACUQAAAVEAAAFRAAACRAAAA14AAAAlAAAAJQAAACUAAABRAAACUQAAAlEAAABRAAABUQAAAFEAAAFeAAAAUQAAAlEAAAFRAAABUQAAA0QAAABeAAAAJQAAACUAAAAlAAAAUQAAAVEAAAJRAAADUQAAAVEAAABRAAADXgAAAFEAAAJRAAACUQAAAVEAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAAlEAAAFRAAACUQAAAl4AAABRAAADUQAAAVEAAAFRAAAARAAAAVEAAABRAAAAUQAAAFEAAAFRAAADXgAAAFEAAABRAAABUQAAAVEAAABeAAAAUQAAAlEAAAJRAAACUQAAAEQAAANRAAACUQAAAVEAAAJRAAADUQAAAV4AAABeAAAARAAAAV4AAABeAAAAXgAAAF4AAABeAAAARAAAAl4AAABeAAAAUQAAAFEAAAFRAAAAUQAAAlEAAAJEAAACUQAAAFEAAANRAAADUQAAAlEAAAJRAAAAUQAAA1EAAANRAAACXgAAAF4AAABeAAAARAAAAl4AAABeAAAAXgAAAFEAAAFRAAACUQAAAlEAAABRAAADUQAAA1EAAANRAAADUQAAAV4AAABUAAADVAAAAVQAAAFUAAACVAAAAF4AAABRAAAAUQAAAVEAAANRAAABUQAAAFEAAAFRAAACUQAAA1EAAAFeAAAAVAAAAlQAAAJUAAACVAAAAlQAAAFeAAAAUQAAAlEAAAFRAAABUQAAAVEAAABRAAABUQAAAVEAAANRAAAAXgAAAFQAAAJUAAADVAAAA1QAAAFUAAACXgAAAFEAAANRAAABUQAAAVEAAAJRAAADUQAAAVEAAANRAAACUQAAAEQAAABeAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAXgAAAFAAAAJeAAAAXgAAAEcAAABQAAADTgAAAE4AAABOAAAAXgAAAF4AAABRAAABUQAAAlEAAABeAAAAJQAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAE4AAABOAAAATgAAAF4AAABeAAAAUQAAAlEAAAFRAAAAXgAAABYAAAFeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADXgAAAF4AAAAWAAACRwAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAEcAAABeAAAAXgAAAF4AAABRAAACUQAAAlEAAAJeAAAAFgAAAw== - 0,-5: - ind: 0,-5 - tiles: XgAAAAAAAAAAAAAATgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAFwAAAJcAAAAXAAAAl4AAAAAAAAAAAAAAE4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAABOAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEcAAABeAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABHAAAAXgAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF4AAABPAAAATgAAAE8AAABPAAAATwAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFAAAAFPAAAATwAAAF4AAABeAAAAFgAAAV4AAABHAAAAXgAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAAXgAAAF4AAABeAAAARwAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUQAAA14AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAFEAAANeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAXgAAAEcAAABRAAABXgAAAFEAAANRAAACUQAAA14AAABOAAAAXgAAAFAAAANeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFHAAAAUQAAA14AAABRAAAAQQAAAFEAAAFeAAAATgAAAEcAAABHAAAAUAAAAk4AAABQAAAAUAAAAF4AAABeAAAARwAAAA== - -1,-6: - ind: -1,-6 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAEQAAAJEAAADRAAAAkQAAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAFgAAAV4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAA08AAAAWAAACXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAJPAAAAFgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABTwAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAA08AAAAWAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAXQAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXQAAAAAAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAATgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAAXgAAAF4AAABOAAAAXgAAAAAAAABdAAAAAAAAAE4AAABeAAAAXgAAAF4AAABOAAAARwAAAF4AAABHAAAAXgAAAE4AAABOAAAAXgAAAF4AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAATgAAAF4AAABOAAAATgAAAE4AAABHAAAAXgAAAEcAAABeAAAATgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABOAAAARwAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABeAAAAXgAAAEcAAABPAAAATwAAAE4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE8AAABPAAAATwAAAE8AAABPAAAAXgAAAF4AAABeAAAAXgAAAA== - -2,-6: - ind: -2,-6 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAABEAAADRAAAAUQAAABEAAAARAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAACRAAAAUQAAAJEAAABRAAAAUQAAAJEAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAAARwAAAEQAAAFEAAABRAAAAEQAAAJHAAAARAAAA14AAABdAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAAEQAAAFEAAABRAAAAUQAAAJEAAADRAAAAkQAAABeAAAAXQAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFUAAABVAAADVQAAAFUAAAJVAAABVQAAAVUAAABVAAABXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABVAAACVQAAAFUAAANVAAACVQAAAVUAAAJVAAABVQAAAV4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAVQAAAVUAAABVAAADVQAAAVUAAAJVAAADVQAAAlUAAAJeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFUAAAJVAAACVQAAAlUAAABVAAAAVQAAAVUAAABVAAABXgAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABVAAADVQAAA14AAABEAAAAXgAAAF4AAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAVQAAAFUAAAJeAAAAFgAAA14AAABdAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAADXgAAABYAAAFeAAAAXQAAAF0AAABeAAAAXgAAACUAAAAlAAAAJQAAAFEAAANRAAACUQAAAlEAAANRAAADUQAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAA== - 0,-6: - ind: 0,-6 - tiles: AAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXAAAAVwAAAFcAAADAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAWwAAA1sAAABbAAACWwAAAQAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXAAAAlsAAAFJAAABSQAAA0kAAAMAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAAFwAAABbAAACSQAAASgAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABcAAADWwAAAUkAAAEoAAAAKAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXAAAAVsAAAFJAAABKAAAACgAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXgAAAFwAAAJbAAACSQAAA0kAAABJAAADXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAWwAAAFsAAAJbAAAAWwAAAQ== - -3,-5: - ind: -3,-5 - tiles: RAAAA0cAAAALAAAARAAAAUQAAANEAAADRAAAAUQAAANEAAACXgAAAEQAAAJEAAAAXgAAAAAAAAAAAAAAAAAAAAsAAABEAAABRAAAA0QAAAJbAAACWwAAAVsAAAFbAAADRAAAAUQAAANHAAAARAAAAl4AAAAAAAAAAAAAAAAAAAALAAAARAAAA0cAAABbAAADWwAAA0QAAANbAAACWwAAAFsAAAFHAAAARAAAAUQAAAFeAAAAXQAAAF0AAABdAAAARAAAAV4AAABHAAAAWwAAAkcAAABQAAACRwAAAEcAAABbAAABRwAAAEQAAAJEAAADXgAAAAAAAAAAAAAAAAAAAEcAAAALAAAARAAAAVsAAANbAAAARAAAAlsAAAJHAAAAWwAAAEQAAAFeAAAARAAAAF4AAAAAAAAAAAAAAF4AAAALAAAARwAAAEQAAANeAAAAWwAAAlsAAAJbAAACWwAAAF4AAAALAAAARAAAAEQAAANeAAAAAAAAAAAAAABeAAAAXgAAAEQAAAFEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAACwAAAAsAAABEAAABXgAAAF4AAABeAAAAFgAAAF4AAABEAAADCwAAAFAAAABQAAACCwAAAEQAAANEAAAARAAAAwsAAABEAAAARAAAA14AAAAWAAADFgAAAxYAAABeAAAAXgAAAF4AAABeAAAAXgAAAAsAAABEAAABRAAAAF4AAABHAAAAXgAAAF4AAABeAAAAFgAAAV4AAABeAAAATwAAAF4AAABeAAAARAAAAkQAAAMLAAAARwAAAEcAAABHAAAAXgAAAF4AAABeAAAARwAAABYAAAIWAAAAFgAAAE8AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABEAAADXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAALAAAARAAAAl4AAABOAAAATgAAAE4AAABeAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAQsAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAEcAAABHAAAARwAAAF4AAABeAAAARwAAAE8AAABPAAAAXgAAADMAAABeAAAAXgAAAA== - 1,-6: - ind: 1,-6 - tiles: XQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAAAWAAACXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAFgAAA14AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAABYAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEcAAABKAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAADSgAAAEQAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAAkoAAANEAAACXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAEQAAAFKAAADSgAAA14AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADSgAAAkQAAANcAAABXAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAEoAAAJHAAAAWwAAAFsAAAFbAAADXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAUQAAANKAAADRAAAAkkAAABJAAABWwAAAVsAAABeAAAAAAAAAAAAAABeAAAASAAAAEgAAAFJAAACRAAAAEcAAABEAAAASgAAAkQAAAEoAAAASQAAAFsAAABbAAABXgAAAF4AAABeAAAAXgAAAEgAAABIAAADSQAAAUQAAAJEAAABRAAAA0oAAANEAAABKAAAAEkAAAFbAAABWwAAARYAAABEAAAARAAAARYAAAJIAAACSAAAAUkAAAJKAAADSgAAAkoAAANKAAAARAAAACgAAABJAAAAWwAAAFsAAAJeAAAAXgAAAF4AAABeAAAASAAAAEgAAAFJAAABRAAAAkcAAABEAAADSgAAA0oAAABJAAADSQAAA1sAAABbAAAAXgAAAAAAAAAAAAAAXgAAAEgAAABIAAACSQAAAUQAAANEAAAARwAAAEoAAAFEAAACWwAAAlsAAAFbAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABEAAACRAAAA0QAAANKAAACRAAAAw== - 0,-7: - ind: 0,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-5: - ind: 1,-5 - tiles: XAAAAVwAAAJeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAAJKAAACRAAAAl4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADSgAAA0cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAkoAAANEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAMWAAABFgAAAV0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAASgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAADRAAAAEcAAABEAAADRAAAAUoAAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAEcAAABEAAAARAAAAkQAAAFHAAAARwAAAEQAAANKAAAARAAAAFAAAANPAAAATwAAAF4AAABeAAAAXgAAAEQAAABEAAADRAAAAkQAAANEAAADRAAAA0QAAAFEAAABSgAAAUoAAAJeAAAAXgAAAF4AAABeAAAAXQAAAF4AAABHAAAARAAAAUQAAANHAAAARwAAAEQAAABEAAABRAAAAUQAAAFEAAABAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAEcAAABEAAAARAAAAkQAAAJEAAABRAAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAARAAAAEQAAABHAAAARAAAAV4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABHAAAARAAAAV4AAABeAAAAXQAAAAAAAAAAAAAATgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAEcAAABOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAA== - 2,-5: - ind: 2,-5 - tiles: XgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARwAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEQAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAACXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAFgAAAl4AAABdAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAXgAAAEcAAABeAAAAXgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAFEAAAAXgAAAF4AAABEAAABFgAAAUQAAAJEAAACRAAAAUQAAABEAAABRAAAAkQAAAFEAAABRAAAAEQAAAFEAAABRwAAAEcAAAAWAAADRAAAABYAAANEAAACOQAAAEQAAABEAAACRAAAAEQAAABEAAADRAAAAUQAAABEAAACRAAAAzkAAABHAAAAFgAAAkoAAAIWAAADRAAAAUcAAABEAAACRAAAAkQAAAFEAAADRAAAAkQAAAJEAAABRAAAAkQAAANEAAAARAAAABYAAABHAAAAXgAAAF4AAABHAAAARwAAAEcAAABEAAAARAAAA0QAAAFEAAABRAAAAUQAAAJEAAABRAAAAl4AAABeAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAEWAAADFgAAA14AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABEAAABRAAAAEQAAAFeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAAEcAAABEAAABXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAM5AAAARAAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAADRAAAA0QAAANeAAAAXgAAAF4AAABeAAAATgAAAFAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAADkAAABEAAACTgAAAE8AAABPAAAATgAAAFAAAAFOAAAAXgAAAA== - 3,-2: - ind: 3,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABPAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAAARAAAATwAAABeAAAAAAAAAAAAAABeAAAATwAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA6AAAAOgAAADoAAAA8AAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAATgAAAF4AAABPAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAPAAAAF4AAAAAAAAAAAAAAF4AAABeAAAATwAAAF4AAABeAAAATgAAAE8AAABeAAAAXgAAADoAAAA6AAAAOgAAADwAAABeAAAAAAAAAAAAAABeAAAATgAAAE4AAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAE4AAABOAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAUAAAAk4AAABeAAAAPAAAAF4AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABQAAADXgAAADwAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAATgAAAF4AAAA8AAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAF4AAABeAAAAPAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAAXgAAADwAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAABYAAAFeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAA== - 0,2: - ind: 0,2 - tiles: RwAAAE4AAABeAAAAXgAAAE4AAAABAAAAAQAAAEcAAAABAAAAAQAAAE4AAABeAAAAXgAAAF4AAABeAAAARwAAAEcAAABeAAAAXgAAAF4AAABeAAAATgAAAAMAAAABAAAAAQAAAAEAAAABAAAAXgAAAF4AAABeAAAAXgAAAEcAAABHAAAAXgAAAAAAAAAAAAAAXgAAAF4AAAABAAAAXgAAAAEAAAABAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABHAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAA0cAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE8AAABEAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABHAAAARAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAQQAAAIEAAABAAAAAAAAAABdAAAAXgAAAF4AAAAAAAAAAAAAAAQAAAEEAAACBAAAAAQAAAIEAAAABAAAAgQAAAIEAAABBAAAAAQAAAEEAAACBAAAAQQAAAJeAAAAXgAAAF4AAAAEAAACBAAAAgQAAAEEAAABBAAAAQQAAAIEAAABBAAAAAQAAAAEAAACBAAAAgQAAAAEAAABRAAAAEQAAAFeAAAABAAAAAQAAAEEAAABBAAAAgQAAAAEAAAABAAAAgQAAAIEAAACBAAAAAQAAAAEAAACBAAAAEQAAAFEAAACXgAAAAQAAAIEAAAABAAAAgQAAAIEAAABBAAAAQQAAAIEAAACBAAAAQQAAAEEAAAABAAAAgQAAABEAAADRAAAA14AAAAEAAAABAAAAAQAAAEEAAABBAAAAgQAAAIEAAABBAAAAgQAAAEEAAAABAAAAAQAAAIEAAABRAAAAEQAAAFeAAAABAAAAQQAAAIEAAABBAAAAgQAAAEEAAACBAAAAAQAAAAEAAABBAAAAQQAAAAEAAACBAAAAQ== - 1,3: - ind: 1,3 - tiles: BAAAAQQAAAEEAAAABAAAAQQAAAIEAAAABAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAQAAAAEAAAABAAAAQQAAAEEAAABBAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAEAAABBAAAAAQAAAIEAAACBAAAAQQAAAIEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAABAAAAQQAAAIEAAAABAAAAgQAAAAEAAABBAAAAgQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAQAAAEEAAABBAAAAAQAAAAEAAAABAAAAQQAAAIEAAABBAAAAQAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAEAAAABAAAAAQAAAEEAAACBAAAAAQAAAIEAAAABAAAAQQAAAIEAAACAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAABAAAAQQAAAIEAAABBAAAAgQAAAAEAAABBAAAAgQAAAIEAAABBAAAAl0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAUAAAAEAAAABAAAAgQAAAIEAAABBAAAAQQAAAAEAAAABAAAAgQAAAEAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAEAAABBAAAAAQAAAAEAAAABAAAAAQAAAEEAAABBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAABAAAAgQAAAIEAAACBAAAAAQAAAIEAAACBAAAAQQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAQAAAIEAAACBAAAAgQAAAIEAAAABAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAEAAABBAAAAgQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,3: - ind: 0,3 - tiles: RAAAAkQAAAFeAAAABAAAAAQAAAFPAAAATwAAAAQAAAIEAAACBAAAAgQAAAIEAAACBAAAAAQAAAAEAAACBAAAAUQAAAJEAAAAXgAAAAQAAAEEAAACTwAAAE8AAAAEAAAABAAAAQQAAAIEAAABBAAAAQQAAAAEAAACBAAAAgQAAABEAAABRAAAAV4AAAAEAAABBAAAAQQAAAIEAAACBAAAAAQAAAEEAAABBAAAAQQAAAEEAAACBAAAAAQAAAAEAAABRAAAAUQAAAFeAAAABAAAAAQAAAAEAAAABAAAAQQAAAEEAAABBAAAAAQAAAAEAAACBAAAAgQAAAIEAAABBAAAAUQAAANEAAAAXgAAAAQAAAIEAAAABAAAAAQAAAAEAAACBAAAASgAAAAoAAAAKAAAACEAAAEEAAABBAAAAQQAAAIWAAABFgAAA14AAAAEAAACBAAAAgQAAAIoAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAIQAAAwQAAAIEAAABRAAAAUQAAAJeAAAABAAAAAQAAAIEAAABKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAKAAAACEAAAEhAAABBAAAAUQAAAFEAAADXgAAAAQAAAEEAAACBAAAAAQAAAIoAAAAKAAAACgAAAAoAAAAKAAAACEAAAMEAAAABAAAAAQAAAJEAAAARAAAAF4AAABeAAAAAAAAAAQAAAIEAAABBAAAAQQAAAIEAAABBAAAAiEAAAEEAAAABAAAAQQAAAAEAAACRAAAAEQAAAFHAAAAXgAAAAAAAABdAAAAAAAAAAQAAAIEAAACBAAAAgQAAAEEAAACBAAAAQQAAAEEAAAABAAAAUQAAAFEAAAARwAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAQAAAEEAAABBAAAAgQAAAEEAAABBAAAAgQAAAJEAAADRAAAAV4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAACXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,2: - ind: -1,2 - tiles: RAAAAkQAAANeAAAAWwAAA1sAAABbAAADXgAAAEcAAABeAAAARwAAAF4AAABOAAAARwAAAEQAAABPAAAARAAAAkQAAAFEAAABXgAAAFsAAANbAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAEcAAABEAAADRAAAAkQAAAJEAAABRAAAAxYAAABbAAAAWwAAAF4AAABPAAAATwAAAF4AAAAAAAAAAAAAAF4AAABHAAAARwAAAEcAAABHAAAARAAAAUQAAAFeAAAAWwAAA1sAAANeAAAATwAAAE8AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABEAAADRAAAABYAAABEAAACRAAAAUQAAAJEAAACRAAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAARAAAAUQAAAEWAAACRAAAAUQAAABEAAACRAAAAkQAAAFeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAEQAAAFEAAAAFgAAAEQAAAFEAAABRAAAAkQAAAFEAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAAIWAAABFQAAABUAAAAVAAAAFQAAABUAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAACXgAAABUAAAAVAAAAFQAAABUAAAAVAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA14AAABeAAAAXgAAABUAAAAVAAAAXgAAAF4AAABeAAAAXgAAAE8AAABPAAAATwAAAE8AAABPAAAARAAAA0QAAAMWAAACRAAAAEQAAANEAAABRAAAAUQAAABEAAACRAAAAUQAAAFEAAABRAAAAEQAAABEAAACRAAAAkQAAAFEAAABFgAAAkQAAABEAAADRAAAA0QAAAFEAAAARAAAAUQAAABEAAACRAAAA0QAAABEAAABRAAAA0QAAANEAAACRAAAARYAAABEAAAARAAAAEQAAANEAAADRAAAAkQAAAFEAAACRAAAAUQAAANEAAACRAAAAEQAAABEAAACRAAAA0QAAANeAAAAUAAAA08AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAABXgAAAF4AAABeAAAARAAAAw== - 4,1: - ind: 4,1 - tiles: TgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATwAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAARAAAAl4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAEQAAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAA== - 4,0: - ind: 4,0 - tiles: XgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABHAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE8AAABEAAABXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABPAAAARAAAA0QAAAFeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABHAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABHAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABPAAAAXgAAAEcAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAE4AAABHAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABEAAABXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAEcAAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,-1: - ind: 4,-1 - tiles: AAAAAAAAAABeAAAAFgAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAABYAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAAxYAAAIWAAACFgAAABYAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAJEAAADFgAAAxYAAAMWAAAAFgAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAA14AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAAAoAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAACKAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAAACgAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAANEAAABFgAAARYAAAMWAAACFgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAACXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAFsAAAEWAAABFgAAABYAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFsAAANbAAABXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABbAAABWwAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAlsAAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,-3: - ind: 4,-3 - tiles: RAAAAkQAAABeAAAARwAAAEcAAABJAAADSQAAA0kAAANJAAAASQAAAUcAAABEAAABRAAAAUQAAAFeAAAAXQAAAEQAAAFEAAABFgAAAhYAAAEWAAABFgAAAhYAAAMWAAAAFgAAARYAAAEWAAADFgAAAEQAAANHAAAAXgAAAF0AAABEAAACRAAAABYAAAEWAAACFgAAAxYAAAEWAAACFgAAARYAAAMWAAABFgAAAhYAAANHAAAARwAAAF4AAABdAAAARAAAAEQAAAFeAAAARAAAAUQAAAFEAAACRwAAAEQAAAJEAAABRAAAAxYAAAEWAAAARwAAAEcAAABeAAAAXQAAAEQAAANEAAAAXgAAAEQAAABEAAADRAAAAUQAAABEAAACRAAAAkQAAAAWAAABFgAAAUcAAABHAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAFeAAAAXgAAAF4AAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAABYAAAAWAAACXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAAAWAAADFgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAAA6AAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAxYAAAJeAAAAAAAAAAAAAABdAAAAAAAAAF4AAAA6AAAAOgAAADoAAABeAAAARAAAAkQAAANEAAACRAAAARYAAAMWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAAFgAAA0QAAAFEAAAARAAAAkQAAAMWAAAAFgAAAhYAAAAWAAADFgAAABYAAAFEAAAAXgAAAF4AAAA6AAAAOgAAAF4AAABEAAAARAAAARYAAAMWAAABFgAAABYAAAEWAAABFgAAARYAAAAWAAADRAAAAUQAAAFeAAAAXgAAAF4AAABeAAAARAAAA0cAAAAWAAABFgAAAxYAAAEWAAABXgAAAF4AAABeAAAAXgAAAEQAAANEAAACFgAAAEQAAAFEAAABFgAAA0QAAAFHAAAAFgAAABYAAAEWAAACFgAAAxYAAAAWAAABFgAAAhYAAAJEAAADRAAAABYAAAFEAAABRwAAABYAAABEAAADRAAAAUQAAANEAAABFgAAABYAAAEWAAADFgAAABYAAAAWAAAARAAAA0QAAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAABEAAABRAAAAkQAAAFEAAACXgAAAF4AAABeAAAAXgAAAA== - 4,-2: - ind: 4,-2 - tiles: RAAAA14AAABeAAAAAAAAAAAAAABeAAAAXgAAAEQAAAJEAAACRAAAAUQAAABeAAAAXgAAAAAAAAAAAAAAXQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAOgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABeAAAAOgAAADoAAAA6AAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAADoAAAA6AAAAOgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAOgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,-3: - ind: 3,-3 - tiles: RAAAAEQAAAJEAAABRAAAAl4AAAAlAAAAJQAAACUAAAAlAAAAJQAAAF4AAABEAAAARAAAA0QAAAAXAAACRAAAAUQAAAJEAAAARAAAA0QAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAAXAAABFwAAAxcAAANEAAABRAAAAUQAAABEAAABRAAAAUQAAAEWAAACTAAAAEwAAAFMAAAAFgAAAUQAAAJEAAADRAAAAxcAAAFEAAADRAAAAUQAAABEAAADRAAAAEQAAABEAAABFgAAAEwAAANMAAABTAAAABYAAABEAAACRAAAAUQAAANEAAACRAAAAUQAAAJEAAADRAAAAEQAAABEAAABRAAAAl4AAABeAAAAXgAAABYAAAJeAAAARAAAAkQAAABEAAAARAAAAUQAAABEAAACRAAAAUQAAABEAAABRAAAAEQAAAFeAAAAFgAAARYAAAIWAAACXgAAAE8AAABeAAAARAAAA0QAAANEAAABRAAAAUQAAAFEAAADRAAAAEQAAANEAAAAFgAAAhYAAAEWAAADFgAAAV4AAABeAAAAXgAAABYAAAAWAAACXgAAAEQAAAJEAAABRAAAAEQAAAFEAAABRAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFAAAAFEAAADRAAAAF4AAABEAAABRAAAAUQAAABEAAABRAAAA0QAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABQAAADRAAAA0QAAAJeAAAARAAAAkQAAANEAAABRAAAA0QAAABEAAACXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAUAAAAkQAAAJEAAABXgAAAEQAAAJEAAACRAAAAUQAAAJEAAADXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAFAAAANQAAACUAAAA14AAABeAAAAXgAAAF4AAABEAAABRAAAAkQAAABEAAAARAAAAF4AAABeAAAATgAAAF4AAABQAAABTgAAAFAAAAJeAAAAOgAAADoAAAA6AAAARAAAAEQAAAFEAAACRAAAAF4AAABEAAADXgAAAE4AAABeAAAAUAAAA1AAAAJQAAABXgAAADoAAAA6AAAAOgAAAEQAAABEAAAARAAAAUQAAANPAAAATwAAAF4AAABOAAAAXgAAAF4AAABPAAAAXgAAAF4AAAA6AAAAOgAAADoAAABEAAABRAAAA0QAAANEAAABXgAAAF4AAABQAAADUAAAAk8AAABeAAAAXgAAAF4AAABeAAAAOgAAADoAAAA6AAAARAAAA0QAAABEAAACRAAAAQ== - 3,-4: - ind: 3,-4 - tiles: AAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAE8AAABQAAACXgAAAE8AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAFgAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE8AAABOAAAATwAAAF4AAABOAAAATgAAAE4AAABOAAAAFgAAAEcAAABHAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABEAAACRwAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABEAAADRAAAAUQAAANEAAABFgAAAUQAAAFEAAACRAAAAkQAAAFeAAAAXgAAAAAAAABdAAAAXQAAAF0AAABdAAAARAAAAEQAAAJEAAABRAAAAxYAAAFHAAAARwAAAEcAAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAEQAAANEAAABRAAAAkQAAANeAAAAXgAAABYAAAEWAAABXgAAAAAAAAAAAAAAAAAAAF4AAAAWAAABFgAAAhYAAANEAAACRAAAA0QAAABEAAABRAAAAl4AAABOAAAATwAAAF4AAAAAAAAAAAAAAF4AAABeAAAAPAAAAE8AAAA8AAAARAAAA0QAAANEAAACRAAAAUQAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAWAAAAPAAAADwAAABPAAAAPAAAAEQAAAFEAAAARAAAA0QAAAJEAAAARAAAAl4AAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAADwAAABEAAACRAAAAEQAAANEAAADRAAAAUQAAAFeAAAAAAAAAAAAAAAAAAAAFgAAATwAAABPAAAAPAAAAE8AAAA8AAAARAAAAkQAAANEAAACRAAAAEQAAAJEAAADXgAAAF0AAAAAAAAAAAAAABYAAABPAAAAPAAAAE8AAAA8AAAATwAAAEQAAABEAAABRAAAAUQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAA14AAABEAAAARAAAAUQAAANEAAADXgAAAF4AAAAPAAAADwAAAA8AAAAPAAAAXgAAAEQAAABEAAADRAAAA0QAAAJEAAAAXgAAABYAAAMWAAAAXgAAAF4AAAAlAAAAJQAAACUAAAAlAAAAJQAAABYAAAJEAAAARAAAAUQAAABEAAABRAAAAA== - 4,-4: - ind: 4,-4 - tiles: TwAAAF4AAABeAAAARwAAAE4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAIEAAAABAAAAQQAAAEEAAABBAAAAl4AAABeAAAAXgAAAE8AAABPAAAAXgAAAF4AAABOAAAAXgAAAAQAAAEEAAABBAAAAgQAAAIEAAABBAAAAAQAAAJeAAAAXgAAAFAAAABeAAAATgAAAE4AAABOAAAAXgAAAF4AAAAEAAABBAAAAQQAAAEEAAAABAAAAgQAAAIEAAABXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAAQAAAAEAAAABAAAAQQAAAIEAAABBAAAAF0AAAAAAAAAAAAAAF4AAABOAAAATgAAAF4AAABeAAAAXgAAAAQAAAAEAAACBAAAAQQAAAAEAAACBAAAAQQAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAgQAAAIEAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAF4AAABPAAAAUAAAAFAAAABeAAAAXgAAAAQAAAAEAAAABAAAAl4AAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAEAAABBAAAAgQAAAFeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABOAAAATgAAAE4AAABeAAAAUAAAA14AAABeAAAABAAAAgQAAAEEAAAAPAAAABYAAAMAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAAQAAAEEAAAABAAAADwAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAEAAACBAAAAQQAAABPAAAAPAAAABYAAANdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATwAAAF4AAABeAAAABAAAAAQAAAIEAAABPAAAAE8AAAAWAAADXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE8AAABeAAAAXgAAAAQAAAEEAAABBAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAABAAAAV0AAABEAAABRAAAAF4AAABHAAAARAAAAkkAAANJAAACSQAAA0kAAABJAAACRwAAAEQAAANHAAAAXgAAAAQAAABdAAAARAAAAUQAAAAWAAADRAAAAkcAAABJAAABSQAAA0kAAANJAAACSQAAAUcAAABEAAADRAAAAV4AAABeAAAAXQAAAA== - -3,-1: - ind: -3,-1 - tiles: FgAAAF4AAAAWAAAARAAAAV4AAABEAAAARAAAAUQAAAFEAAABXgAAAEQAAANEAAACRAAAAUQAAABeAAAARwAAABYAAAJeAAAAFgAAAUQAAAJeAAAAXgAAABYAAAJeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAEcAAAAWAAADXgAAABYAAABEAAABXgAAAE0AAABNAAABXgAAAEcAAABHAAAARAAAAUcAAABEAAADRAAAAF4AAABHAAAAFgAAAV4AAAAWAAAARAAAA14AAABNAAABTQAAA14AAABHAAAARwAAAEQAAAFEAAADRAAAAkQAAANeAAAARAAAAxYAAAFeAAAAFgAAA0cAAAAWAAABTQAAAU0AAAAWAAABRwAAAEcAAABJAAACSQAAAEQAAANEAAADFgAAAEQAAAEWAAABXgAAABYAAAJEAAADFgAAAE0AAAJNAAAAFgAAAUQAAAJEAAAASQAAA0kAAAJHAAAARAAAARYAAANEAAADFgAAAF4AAAAWAAACRAAAAV4AAABNAAABTQAAAl4AAABEAAACRAAAAkkAAANJAAABRAAAAUQAAANeAAAARAAAARYAAAMWAAAAFgAAAkQAAAFeAAAARAAAA0QAAAFeAAAARAAAAkQAAAJJAAACSQAAAEQAAAFEAAADXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE0AAAJNAAADXgAAAEQAAAJEAAABSQAAAkkAAAFEAAACRAAAAl4AAABBAAAATAAAAkwAAANMAAAATAAAAxYAAABNAAADTQAAAxYAAAJEAAACRAAAA0kAAAJJAAADRAAAAEQAAANeAAAAXgAAAEwAAAJMAAACTAAAAkwAAAMWAAABTQAAAE0AAAMWAAACRAAAA0QAAABEAAACRAAAAUQAAAFEAAACXgAAAEEAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAARwAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFAAAAFPAAAAXgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAAFEAAACFgAAAEQAAAFEAAADRAAAAUQAAANEAAADRAAAAkQAAANEAAACRAAAAEQAAAFEAAACRAAAAQ== - -3,-2: - ind: -3,-2 - tiles: XgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA04AAABOAAAAXgAAAEcAAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABOAAAAXgAAABYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAUAAAA1AAAAJOAAAAXgAAAEcAAABHAAAAXgAAAF4AAABEAAACXgAAAF4AAABPAAAATwAAAF4AAABeAAAAXgAAAE8AAABeAAAATwAAAF4AAABHAAAARwAAAE4AAABeAAAARAAAAkcAAABeAAAAXgAAAE8AAABOAAAAXgAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAABYAAAFEAAAARAAAAkQAAANeAAAATgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAF4AAABeAAAARwAAAF4AAAAWAAABXgAAAF4AAABeAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAE4AAABeAAAAXgAAAEQAAANEAAADRwAAAEQAAAJHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAADMAAAALAAAATgAAAE8AAABOAAAATwAAABYAAABPAAAATwAAAF4AAABeAAAARwAAAF4AAABeAAAATgAAAF4AAAAzAAAARAAAAE4AAABPAAAATgAAAE8AAABeAAAATwAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAABOAAAARAAAAU4AAABEAAACXgAAAE8AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABEAAADRAAAA0QAAANEAAACRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAADRAAAAl4AAABEAAABRAAAAEQAAABEAAAAXgAAAEQAAAIWAAAAFgAAARYAAANEAAACXgAAAEQAAAFEAAABRAAAAUQAAANeAAAARAAAA0QAAAFEAAABRAAAAhYAAABEAAADFgAAAl4AAAAWAAACRAAAAF4AAABEAAABRAAAAEQAAABEAAADXgAAAEQAAANEAAABRAAAAkQAAAEWAAADRAAAAQ== - 2,-6: - ind: 2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAA14AAABEAAABFgAAABYAAAMWAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAhYAAAEWAAACSgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEcAAAAoAAAAKAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAKAAAACgAAABEAAAAKAAAACgAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAACgAAAAoAAAARAAAAigAAAAoAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAoAAAAKAAAAEQAAAEoAAAAKAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAKAAAACgAAABEAAACXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARwAAABYAAAEWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAACFgAAAkoAAAFeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARAAAAQ== - 3,-6: - ind: 3,-6 - tiles: FgAAA14AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAADXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAUcAAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAAFHAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAABRAAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAA0QAAANeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAAFEAAABXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAADRwAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAA0QAAANeAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAAFEAAACXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAARAAAA14AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAkQAAAJeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABEAAABXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAARwAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASgAAAEQAAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,-5: - ind: 3,-5 - tiles: SgAAAkQAAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAANEAAADXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAADRAAAA14AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAhYAAAFeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEoAAABEAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABKAAAARwAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAASgAAAUQAAABHAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAEoAAABHAAAARAAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAABEAAABRAAAAEQAAAFeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAFAAAAJOAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAUAAAAU8AAABOAAAAXgAAAF4AAABPAAAATwAAAE8AAABHAAAATwAAAE8AAABPAAAAXgAAAE4AAABPAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAFAAAAFeAAAAXgAAAFAAAAFPAAAAUAAAAV4AAABeAAAAXgAAAE8AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABHAAAARwAAAEcAAABPAAAATwAAAE8AAABeAAAATwAAAE8AAABeAAAAXgAAAF4AAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - 4,-5: - ind: 4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAV0AAAAEAAABBAAAAgQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEEAAAABAAAAQQAAAAEAAABBAAAAAQAAAIEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAEAAABBAAAAQQAAAAEAAACBAAAAAQAAAIEAAAABAAAAQQAAAIEAAABAAAAAAAAAAAAAAAABAAAAQQAAAEEAAACBAAAAgQAAAEEAAACBAAAAQQAAAIEAAAABAAAAQQAAAIEAAABBAAAAgQAAAIAAAAAAAAAAF4AAAAEAAACBAAAAF4AAAAWAAAAXgAAAAQAAAIEAAAABAAAAgQAAAEEAAACBAAAAAQAAAAEAAABBAAAAgAAAABeAAAAXgAAAAQAAAJeAAAAFgAAAV4AAAAEAAAABAAAAAQAAAAEAAACBAAAAQQAAAAEAAAABAAAAQQAAAAEAAAATwAAAF4AAABeAAAAXgAAABYAAANeAAAAXgAAAF4AAAAEAAACBAAAAQQAAAIEAAAABAAAAAQAAAAEAAACBAAAAF4AAABeAAAATwAAAF4AAABHAAAARwAAAEcAAABeAAAABAAAAQQAAAEEAAACBAAAAgQAAAIEAAACBAAAAAQAAABeAAAAXgAAAFAAAABQAAABTgAAAFAAAAJHAAAAXgAAAAQAAAIEAAAABAAAAgQAAAEEAAACBAAAAAQAAAEEAAAATgAAAF4AAABHAAAAXgAAAE4AAABPAAAAUAAAAF4AAAAEAAACBAAAAAQAAAIEAAACBAAAAAQAAAEEAAAABAAAAQ== - -3,-3: - ind: -3,-3 - tiles: XgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAFHAAAAXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAAXgAAAF4AAABHAAAACwAAAEQAAANEAAACRAAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA14AAABeAAAARwAAAEQAAAFEAAACRAAAAUQAAAFeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAARAAAAEcAAABeAAAAXgAAAEQAAANEAAAARAAAAUcAAABEAAACXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAEQAAANHAAAAXgAAAF4AAABEAAABRAAAA0QAAAJEAAADRAAAAV4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABHAAAARAAAAl4AAABeAAAARAAAAEQAAANEAAADRAAAA14AAABeAAAAXgAAABYAAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAACRAAAAEQAAAJEAAACRAAAAEQAAAIWAAADRAAAAV4AAAAWAAABFgAAA14AAABeAAAAXgAAAF4AAAAWAAABFgAAAxYAAAAWAAAAXgAAAEQAAANEAAADFgAAAUQAAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAJeAAAATgAAAE4AAABOAAAATgAAAF4AAABOAAAATgAAAF4AAABEAAABXgAAAAAAAAAAAAAAXQAAAF4AAABEAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAATgAAAF4AAABeAAAARwAAAF4AAAAAAAAAXgAAAF4AAABeAAAAFgAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAEQAAAJeAAAAAAAAAF4AAABEAAABRAAAAAsAAABeAAAARAAAAAsAAABEAAADRAAAAUQAAANEAAABXgAAAF4AAAAWAAABXgAAAF0AAABeAAAACwAAAEQAAAILAAAAXgAAAEQAAAJEAAADRAAAAAsAAABEAAADRAAAAF4AAABEAAAARAAAA14AAAAAAAAAFgAAAUQAAAJHAAAARAAAAl4AAABEAAACRAAAAEcAAABEAAACRAAAAkQAAAEWAAAARwAAAEQAAAFeAAAAAAAAAF4AAABHAAAARAAAAUcAAABeAAAARAAAAEQAAAJEAAADRAAAAUQAAAJEAAADFgAAAUQAAABEAAAAXgAAAAAAAABeAAAAXgAAAF4AAABHAAAAXgAAAEQAAAFEAAAARAAAAUQAAAJEAAADRAAAA14AAABEAAADRAAAAQ== - -3,-4: - ind: -3,-4 - tiles: XgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE8AAABPAAAAXgAAADMAAAAzAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAARAAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAAQsAAABeAAAAXgAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAADRwAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAAARAAAAEcAAABeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAA14AAABHAAAARAAAAEQAAAFEAAADXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAwsAAABeAAAARAAAAkQAAAFEAAAARAAAA14AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAACXgAAAF4AAABEAAADRAAAAUQAAAJeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAACwAAAEQAAANEAAACXgAAAF4AAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJEAAABRAAAAF4AAABeAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRwAAAEQAAAFeAAAAXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAACXgAAAA== - -4,-3: - ind: -4,-3 - tiles: AAAAAAAAAABdAAAAAAAAAAAAAABeAAAAUAAAA04AAABPAAAATwAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAE4AAABOAAAAXgAAAF4AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF4AAABOAAAARwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAATgAAAEcAAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXgAAAE4AAABHAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABOAAAATgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAARwAAAE4AAABeAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABHAAAAXgAAAF4AAABeAAAAXQAAAF4AAABEAAADRAAAA0QAAAIAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABEAAAARAAAAkQAAAJEAAABXgAAAF0AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAUAAAA0QAAANEAAACRAAAAl4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAEQAAAFHAAAARAAAAEQAAANeAAAAAAAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF4AAABEAAAARAAAAkQAAAJEAAADXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAUQAAAFEAAACRAAAAl4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAFgAAA14AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE4AAABOAAAATgAAAEcAAABPAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABOAAAATgAAAE4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -4,-4: - ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAAXgAAAE4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABEAAAARAAAA0QAAABeAAAAXgAAAF4AAABQAAACXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAATwAAAE8AAABPAAAAXgAAAEQAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAE8AAABPAAAATwAAAEQAAANeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABPAAAATwAAAE8AAABeAAAARAAAAhYAAAIWAAADFgAAA10AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABOAAAAXgAAAF0AAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABOAAAATgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAFgAAARYAAAMWAAADTgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAEcAAABOAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABOAAAATgAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAE4AAABOAAAATwAAAE8AAABeAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABOAAAARwAAAE8AAABPAAAAXgAAAAAAAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAABeAAAATgAAAE4AAABPAAAATwAAAF4AAAAAAAAAXgAAAF4AAABeAAAAXgAAAA== - -3,0: - ind: -3,0 - tiles: RAAAA0QAAAFEAAAAFgAAA0QAAAFEAAACRAAAAEQAAAFEAAADRAAAAUQAAAJEAAADRAAAAEQAAANEAAABRAAAAEQAAAJEAAADRAAAAhYAAABEAAADRAAAA0QAAABEAAAARAAAA0QAAANEAAADRAAAA0QAAANEAAADRAAAAkQAAAEWAAABFgAAAxYAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAACFgAAA14AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAAJEAAADRAAAAE8AAABeAAAAKAAAACgAAAAoAAAATQAAAk0AAAMoAAAAKAAAACgAAABeAAAAKAAAAEQAAABEAAADRAAAAEQAAABOAAAAXgAAACgAAAAoAAAAKAAAAE0AAABNAAAAKAAAACgAAAAoAAAAXgAAACgAAABEAAADRAAAA0QAAAJEAAADTgAAAF4AAAAoAAAAKAAAACgAAABNAAABTQAAASgAAAAoAAAAKAAAAF4AAAAoAAAARAAAAEQAAABEAAABRAAAA08AAABeAAAAKAAAACgAAAAoAAAATQAAAE0AAAAoAAAAKAAAACgAAABeAAAAKAAAAEQAAABEAAACRAAAAUQAAANeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAADXgAAAF4AAABeAAAAXgAAAF4AAABEAAADRAAAAEQAAAJEAAACXgAAAFsAAAJeAAAAGwAAAxsAAAEbAAABGwAAAxsAAAIbAAABXgAAABYAAAIWAAACXgAAABYAAAIWAAADXgAAAF4AAABbAAABXgAAABsAAAMbAAABGwAAAxsAAAAbAAACGwAAAF4AAAAaAAABGgAAA0QAAAFEAAACRAAAAF4AAABbAAAAWwAAAF4AAAAbAAABGwAAAxsAAAEbAAACGwAAAhsAAABeAAAAGgAAARsAAAFEAAACRwAAAEQAAAIWAAAAWwAAA1sAAABeAAAAGwAAARsAAAIbAAAAGwAAAhsAAAEbAAAAXgAAABoAAANeAAAARAAAA0QAAAFEAAACXgAAAF4AAABeAAAAXgAAABsAAAMbAAABGwAAAhsAAAAbAAABGwAAAl4AAABeAAAAXgAAAEQAAAJeAAAAFgAAAV4AAABeAAAASgAAAF4AAAAbAAAAGwAAARsAAAEbAAAAGwAAARsAAAEWAAADFgAAAl4AAABEAAACRAAAAkcAAABEAAABTwAAAEoAAAJeAAAAGwAAARsAAAAbAAADGwAAARsAAAEbAAACFgAAAxYAAAEWAAABRAAAAUcAAABHAAAARAAAAF4AAABKAAACXgAAABsAAAIbAAACGwAAAhsAAAEbAAACGwAAABYAAAMWAAAAXgAAAA== - -3,1: - ind: -3,1 - tiles: RwAAAEQAAANEAAABRAAAAF4AAABKAAADXgAAAF4AAAAaAAAAGgAAAxoAAAIaAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAARAAAAkoAAAFeAAAAXgAAAF4AAABEAAAARAAAAl4AAABEAAACRAAAA0QAAABEAAADRAAAAUoAAABKAAACSgAAAUoAAAJKAAACSgAAAkoAAAJKAAADSgAAAUoAAABeAAAARAAAA0QAAAFEAAAARAAAAEQAAAFKAAABGwAAAxsAAAIWAAADGwAAABsAAAIWAAACGwAAAxsAAANKAAADXgAAAEQAAAJEAAABRAAAA0UAAABFAAABSgAAAhsAAAEbAAACFgAAABsAAAEbAAADFgAAARsAAAIbAAABSgAAAV4AAABEAAABRAAAAEQAAAJFAAACRQAAA0oAAAAWAAACFgAAAxYAAAIWAAACFgAAAxYAAAAWAAABFgAAAkoAAAEWAAACRwAAAEQAAAFEAAAARQAAAUUAAANKAAACGwAAARsAAAAWAAADGwAAABsAAAIWAAABGwAAABsAAAFKAAAAFgAAA0cAAABEAAAARAAAAkQAAANEAAAASgAAAhsAAAAbAAABFgAAABsAAAEbAAABFgAAARsAAAIbAAAASgAAAV4AAABEAAACRAAAAEQAAAFEAAADRAAAA0oAAAFKAAACSgAAAUoAAANKAAADSgAAAEoAAAFKAAACSgAAA0oAAAFeAAAARAAAAUQAAANEAAABRAAAAEQAAANEAAAARAAAAkQAAABEAAABRAAAAEQAAAJEAAACRAAAA0QAAANEAAACRAAAA0QAAAJEAAAARAAAAkcAAABHAAAARwAAAEcAAABeAAAAXgAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAALAAAARAAAAkQAAANeAAAAFgAAAxYAAANeAAAAXgAAAEcAAABHAAAARwAAAF4AAABEAAABRAAAAkQAAANeAAAAXgAAAF4AAAAWAAAARAAAAkcAAABHAAAARAAAAkQAAANEAAAARAAAAkQAAAJeAAAARAAAA0QAAAJEAAAAXgAAAEQAAAFEAAACRAAAAUQAAAFEAAAARAAAAUQAAANEAAADRAAAAkQAAAFEAAADFgAAAEQAAABEAAABRAAAAl4AAABeAAAAXgAAAF4AAABEAAABRAAAAEoAAANKAAACSgAAAUoAAAJKAAADRAAAAl4AAABEAAABRAAAAkQAAAFeAAAAXgAAAF4AAABeAAAARQAAAkUAAANKAAAAGwAAAxsAAAAbAAAASgAAA0QAAAJeAAAARAAAAEQAAANEAAABXgAAAF4AAABeAAAAXgAAAA== - -4,-1: - ind: -4,-1 - tiles: AAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABEAAAARAAAAkQAAABEAAACXgAAAF4AAABeAAAARwAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAARAAAAEQAAAFEAAAARAAAAF4AAABQAAAAUAAAA0QAAAFdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAEQAAAJEAAAARAAAAUQAAABeAAAAUAAAAVAAAABEAAACAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABEAAABRAAAAkQAAAJEAAABXgAAAFAAAAFQAAADRAAAAgAAAABdAAAAAAAAAAAAAABdAAAAAAAAAF4AAABeAAAARAAAAEQAAAFEAAACRAAAAF4AAABeAAAAXgAAAEQAAAIAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAEcAAABEAAAARAAAA0QAAANEAAABRAAAAF4AAABHAAAAXQAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABEAAABRAAAAEcAAABEAAACRAAAAEQAAAJeAAAARAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAAAFgAAAkQAAAFEAAABXgAAAEQAAAEAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAEQAAABEAAACRAAAA0QAAABEAAABRAAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXgAAAF4AAABEAAABRAAAAUQAAAFEAAADRAAAA0QAAAAWAAACTAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAAFEAAAARAAAAEQAAAJEAAABFgAAA0wAAANeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAEcAAABOAAAATgAAAE4AAABOAAAAXgAAABYAAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAWAAABXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAWAAAAFgAAARYAAANOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== - -4,-2: - ind: -4,-2 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABOAAAATgAAAFAAAANHAAAAXgAAABYAAABEAAAARAAAAEQAAABEAAACRAAAAkQAAANeAAAARAAAAEcAAABEAAACRAAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAEQAAABHAAAAXgAAAE4AAABeAAAAXgAAAE4AAABeAAAAXgAAAE4AAABOAAAACwAAAF4AAABeAAAAXgAAAEQAAABEAAAARAAAA14AAABHAAAAXgAAAEcAAABeAAAAXgAAAF4AAABOAAAATgAAAAsAAABeAAAAXgAAAF4AAABEAAADRAAAA0QAAANeAAAAXgAAAEcAAABeAAAAXgAAAE8AAABPAAAAXgAAAF4AAABEAAADXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAEQAAAJEAAACRwAAAEQAAABEAAAARAAAAUQAAAJEAAACRAAAAkQAAAJeAAAARAAAA0cAAABEAAAARwAAABYAAANHAAAARAAAAUQAAANEAAACRAAAA0QAAAJEAAACRAAAAUQAAABHAAAAXgAAAEQAAABEAAACXgAAAF4AAAAWAAABRAAAAEQAAAJEAAAARAAAAUQAAAJEAAACRAAAA0QAAAFHAAAARAAAAQsAAABHAAAARAAAAl4AAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAJeAAAARAAAAEQAAABeAAAARAAAAkQAAABeAAAATwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAE4AAABOAAAAXgAAABYAAAAWAAAAXgAAABYAAAJeAAAAXgAAAE8AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABOAAAATgAAAF4AAAALAAAACwAAAEcAAABEAAABRAAAAEQAAAJEAAABAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAARAAAAkcAAABEAAADRAAAAUQAAAJeAAAARAAAAgAAAABdAAAAAAAAAAAAAABdAAAAFgAAAxYAAAAWAAABRAAAAkcAAABEAAACRAAAAUQAAAFHAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAEQAAAFEAAABRAAAA0QAAANEAAACRAAAA14AAABEAAADAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABEAAACRAAAA0cAAABEAAAARAAAAEQAAABeAAAARAAAAw== - -5,-1: - ind: -5,-1 - tiles: XQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAATgAAAE4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF4AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAF0AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -5,-2: - ind: -5,-2 - tiles: XQAAAF0AAAAAAAAAAAAAAF4AAABPAAAARAAAAE8AAABEAAABTwAAAF4AAAAWAAACTgAAAE4AAABOAAAAFgAAA10AAAAAAAAAAAAAAAAAAABeAAAATwAAAEQAAAFPAAAARAAAAE8AAABeAAAAFgAAAU4AAAAWAAABTgAAABYAAAFdAAAAAAAAAAAAAAAAAAAAXgAAAE8AAABEAAADTwAAAEQAAAFPAAAAXgAAABYAAAFeAAAAXgAAAF4AAAAWAAAAXQAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAAkQAAABEAAABRAAAAV4AAABHAAAAFgAAAhYAAAMWAAADRwAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAABYAAAIWAAADFgAAAEcAAABdAAAAXQAAAF0AAABeAAAAXgAAAEQAAANEAAACRAAAAUQAAAFEAAACXgAAAEcAAAAWAAAAXgAAABYAAANHAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABEAAACRAAAA0QAAAJEAAAARAAAA14AAABHAAAAXgAAAF4AAABeAAAARwAAAF0AAAAAAAAAAAAAAF4AAABeAAAARAAAA0QAAABEAAACRAAAA0QAAAEWAAAARwAAABYAAAAWAAADFgAAAEcAAABdAAAAAAAAAAAAAABeAAAAXgAAAEQAAABEAAABRAAAAUQAAABEAAAAFgAAAUcAAAAWAAAAFgAAARYAAAJHAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAABeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAABeAAAAXgAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXgAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAA== - -5,-3: - ind: -5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAE8AAABPAAAATwAAAE8AAABPAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABPAAAATwAAAE8AAABPAAAATwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAATwAAAE8AAABPAAAATwAAAE8AAAAWAAADFgAAAhYAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXgAAAE8AAABPAAAATwAAAE8AAABPAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAF4AAABPAAAATwAAAE8AAABPAAAATwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAAAWAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAFgAAAl4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXgAAABYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAABYAAANeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAAAWAAACXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAF0AAABdAAAAXgAAAF4AAABeAAAAFgAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABEAAACRAAAAUQAAANEAAADRAAAAV4AAAAWAAADFgAAAhYAAAAWAAAAXgAAAA== - -4,-5: - ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAABYAAAIWAAAAFgAAAUQAAABEAAABRAAAAQsAAABEAAACRAAAAF4AAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABHAAAACwAAAEQAAABEAAABRwAAAEQAAAFeAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUAAAAl4AAABEAAAARwAAAEQAAAJEAAADXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEcAAAALAAAARAAAAkQAAAMLAAAACwAAAE8AAABPAAAARAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABHAAAARAAAAkQAAABeAAAARAAAA0cAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJHAAAARAAAAUQAAAFHAAAAXgAAAEcAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAXgAAAF4AAABeAAAARAAAAEQAAAJQAAADRwAAAF4AAABHAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAARwAAAEQAAABHAAAARwAAAF4AAABeAAAARwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAFgAAAxYAAAEWAAADRAAAAkQAAABEAAABRwAAAF4AAABeAAAARwAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAsAAAALAAAARAAAAUQAAANeAAAARwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAARwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAARwAAAEcAAABHAAAAXgAAAF4AAABeAAAARwAAAEcAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABHAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAARwAAAEcAAABeAAAAXgAAAF4AAABEAAAARAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABEAAAARAAAAF4AAABOAAAAXgAAAE4AAABOAAAAXgAAAA== - -4,-6: - ind: -4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAWAAAAFgAAA14AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABAAAAAFgAAAhYAAAJAAAAAQAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAQAAAABYAAAEWAAAAFgAAABYAAAMWAAACXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAEAAAAAWAAABFgAAAUAAAABAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFgAAAxYAAAFeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABHAAAACwAAAF4AAAALAAAAXgAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAADXgAAAAsAAABEAAACRwAAAF4AAABeAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAANeAAAARAAAAUQAAAFEAAABXgAAAF4AAAAAAAAAXgAAAA== - -3,-6: - ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAXgAAAF4AAABEAAABRAAAAF4AAABEAAABRAAAAkQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAFAAAANeAAAAUAAAAl4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAE4AAABOAAAAXgAAAF4AAABOAAAAXgAAAE4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABOAAAARwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAE4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAEcAAABQAAAATgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABQAAABRwAAAE4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAE4AAABOAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARwAAAE4AAABEAAADXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA14AAABeAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAARwAAAEQAAAFeAAAAXgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAABeAAAARwAAAEQAAAELAAAARAAAAgsAAAALAAAACwAAAAsAAABHAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAARwAAAEcAAABeAAAACwAAAEQAAABHAAAARAAAAkQAAAELAAAARAAAA0cAAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABHAAAARwAAAAsAAABEAAACRAAAAV4AAABHAAAARAAAA0QAAAFEAAADXgAAAF4AAAAAAAAAAAAAAAAAAABHAAAARwAAAF4AAAALAAAARAAAAUQAAAFEAAAAUAAAAwsAAABEAAACRAAAAUcAAABeAAAAXQAAAF0AAABdAAAARAAAAgsAAABeAAAARAAAAwsAAAALAAAACwAAAAsAAAALAAAARwAAAEQAAAJEAAABXgAAAAAAAAAAAAAAAAAAAA== - -4,1: - ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAIWAAADFgAAAhYAAAMWAAADRAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAABFgAAABYAAAIWAAADFgAAAEUAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABFAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAABFgAAABYAAAMWAAADRQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAAhYAAAIWAAACFgAAAUQAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAABYAAAAWAAACXgAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAABYAAAMWAAAAFgAAABYAAABEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAWAAACFgAAAhYAAAAWAAACRQAAAQ== - -4,0: - ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAEcAAABOAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAATgAAAF4AAABEAAABRAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAEcAAABeAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAEQAAANEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABbAAACWwAAA14AAABEAAABRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAWwAAAVsAAANeAAAARAAAAUQAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFsAAABbAAADXgAAAEQAAANEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAUQAAABEAAABRAAAAkQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFEAAACRAAAAEQAAAJEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAFgAAA14AAABEAAACRAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAWwAAA1sAAAFeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFsAAANbAAABXgAAAEQAAAFEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABbAAABWwAAAF4AAABEAAACRwAAAA== - -2,2: - ind: -2,2 - tiles: XgAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAFAAAANOAAAAXgAAAF4AAABbAAABWwAAAVsAAAJbAAAAXgAAAEQAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAAAWAAAAWwAAAlsAAAFbAAACWwAAARYAAABEAAACXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABPAAAAXgAAAFsAAANbAAAAWwAAAlsAAAFeAAAARAAAAVAAAAFQAAABXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAE4AAABeAAAATwAAAE8AAABeAAAARwAAAF4AAAARAAAAEQAAABEAAAARAAAAXgAAAFAAAAFEAAAAWwAAAV4AAABHAAAAXgAAAEcAAABEAAACXgAAAF4AAAAWAAACEQAAABEAAAARAAAAEQAAAF4AAABPAAAARAAAAF4AAABeAAAARwAAAF4AAABQAAABXgAAAF4AAABeAAAAXgAAABEAAAARAAAAEQAAAF4AAABeAAAAXgAAAEQAAAJeAAAAXgAAAF4AAABQAAABUAAAAkcAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAA0QAAANEAAAAAAAAAF4AAABQAAAAUAAAAUQAAAFeAAAATgAAAF4AAAAWAAABWwAAAlsAAAFbAAAAWwAAAUQAAAFEAAACRAAAAgAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAAFbAAABWwAAAFsAAABEAAABRAAAA0QAAAAAAAAAAAAAAF4AAAA0AAAANAAAADQAAABeAAAAXgAAAF4AAABbAAABWwAAA1sAAANbAAACRAAAA0QAAABEAAADAAAAAAAAAABeAAAANAAAADQAAAA0AAAAXgAAAF4AAABeAAAAWwAAAVsAAANbAAACXgAAAEQAAAJEAAABRAAAAgAAAAAAAAAAXgAAADQAAAA0AAAANAAAABYAAANeAAAAXgAAAFsAAAFbAAACWwAAARYAAABEAAACRAAAAUQAAAEAAAAAAAAAAF4AAAA0AAAANAAAADQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAAJEAAADAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADWwAAAlsAAAFbAAADXgAAAEQAAANEAAAARAAAAA== - -2,3: - ind: -2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEcAAABeAAAAWwAAA1sAAANbAAADXgAAABYAAAMWAAADFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABEAAAARAAAAkQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABEAAABRAAAA0QAAANEAAACRAAAA0QAAAFEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAUAAAAV4AAABeAAAARAAAAkQAAAJEAAABRAAAA0QAAAJEAAABRAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAFAAAAJeAAAAXgAAAEQAAAJEAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABHAAAAXgAAAF4AAABEAAADRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARwAAAF4AAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXgAAAFAAAAJeAAAAXgAAAEQAAAJEAAACXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAARAAAA0QAAAFEAAABRAAAA14AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAA0QAAAJeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAACXgAAAFAAAANeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAkQAAANeAAAATgAAAFAAAAFQAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAFEAAAAXgAAAE8AAABeAAAAXgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAAARAAAAl4AAABeAAAATgAAAF4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAA0QAAANeAAAATgAAAE8AAABeAAAATgAAAA== - -1,3: - ind: -1,3 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAKAAAACgAAAAoAAAAKAAAACgAAAAKAAAAKAAAACgAAABeAAAARAAAAF4AAABOAAAAUAAAAE4AAABeAAAAKAAAACgAAAAoAAAAKAAAACgAAAAoAAAACgAAACgAAAAoAAAAXgAAAEQAAAIWAAAARAAAAUQAAANEAAABXgAAACgAAAAoAAAAKAAAACgAAAAoAAAACgAAAAoAAAAoAAAAKAAAAF4AAABEAAAAFgAAAkQAAANEAAABRAAAA14AAAAoAAAAKAAAACgAAAAoAAAAKAAAAAoAAAAoAAAAKAAAACgAAABeAAAARAAAAV4AAABeAAAARAAAAUQAAAAWAAACCgAAAAoAAAAKAAAACgAAAAoAAAAKAAAAKAAAACgAAAAoAAAAXgAAAEQAAAIAAAAAXgAAAEQAAAJEAAACXgAAACgAAAAoAAAAKAAAACgAAAAKAAAAKAAAACgAAAAoAAAAKAAAAF4AAAAWAAABAAAAAF4AAABEAAAARAAAA14AAAAoAAAAKAAAACgAAAAoAAAACgAAACgAAAAoAAAAKAAAACgAAABeAAAARAAAAAAAAABeAAAARAAAA0QAAAFeAAAAKAAAACgAAAAoAAAAKAAAAAoAAAAoAAAAKAAAACgAAAAoAAAAXgAAAEQAAAIAAAAAXgAAAEQAAANEAAADXgAAACgAAAAoAAAAKAAAACgAAAAKAAAAKAAAACgAAAAoAAAAKAAAAF4AAABEAAACAAAAAF4AAABEAAADRAAAAl4AAABeAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAQAAAABeAAAARAAAAUQAAAIWAAADRAAAAUQAAAFEAAADRAAAAUQAAABEAAABRAAAA0QAAAFEAAAARAAAAkQAAAFeAAAAXgAAAEQAAABEAAAAFgAAA0QAAAJEAAABRAAAAUQAAAFEAAABRAAAAEQAAABEAAACRAAAAEQAAABEAAABTgAAAF4AAABEAAAARAAAAl4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAAAXgAAAE4AAABeAAAARAAAAkQAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAABRAAAABYAAABPAAAAXgAAAEQAAAJEAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAkQAAAEWAAABTwAAAF4AAABEAAADRAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAXgAAABYAAABEAAABFgAAAw== - -3,2: - ind: -3,2 - tiles: RQAAAUUAAANKAAAAGwAAABsAAAMbAAACSgAAAkQAAABeAAAARAAAAkQAAABEAAACXgAAAF4AAABeAAAAXgAAAEUAAAJFAAAASgAAAhsAAAAbAAAAGwAAAUoAAANEAAADXgAAAEQAAAFEAAADRAAAA14AAABdAAAAAAAAAAAAAABEAAADRAAAAUoAAAJKAAAASgAAAkoAAAFKAAAARAAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAARAAAAEQAAANEAAADRAAAAEQAAAFEAAADRAAAAkQAAABeAAAAXgAAAEcAAABbAAADXgAAAF4AAABeAAAAXgAAAEQAAAFEAAACRAAAA14AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABHAAAAWwAAAV4AAABeAAAAUAAAAFAAAANeAAAAXgAAAF4AAABeAAAATwAAAE8AAABPAAAATwAAAF4AAABeAAAAXgAAAEcAAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAWwAAAV4AAABOAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAABHAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXgAAABYAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,2: - ind: -4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAARQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAFgAAAxYAAAAWAAACFgAAAkUAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAABYAAAMWAAACFgAAARYAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAFgAAAxYAAANeAAAARAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAEQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAA== - -3,3: - ind: -3,3 - tiles: AAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAABAAAAQQAAAIEAAAABAAAAQQAAAAEAAAABAAAAQQAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAQAAAAEAAACBAAAAAQAAAIEAAABBAAAAQQAAAIFAAAABAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAEAAABBAAAAQQAAAIEAAACBAAAAQQAAAAEAAABBAAAAgQAAAEEAAAABAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAABAAAAQQAAAIEAAAABQAAAAQAAAIEAAAABAAAAgQAAAIEAAAABAAAAAQAAAEAAAAAAAAAAAAAAABdAAAAAAAAAAQAAAIEAAABBAAAAgQAAAAEAAAABAAAAQQAAAIEAAAABAAAAAQAAAEEAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAEAAACBAAAAQQAAAIEAAAABAAAAQQAAAIEAAACBAAAAQQAAAEEAAAABAAAAgQAAAAAAAAAAAAAAF0AAAAAAAAABAAAAgQAAAIEAAABBAAAAAQAAAEEAAAABAAAAQUAAAAEAAACBAAAAAQAAAIEAAACAAAAAAAAAABdAAAAAAAAAAQAAAAEAAAABAAAAQQAAAEEAAABBAAAAAQAAAAEAAABBAAAAQQAAAAEAAABBAAAAAQAAAAAAAAAXQAAAAAAAAAEAAAABAAAAQQAAAAEAAAABAAAAQQAAAIEAAABBAAAAAQAAAEEAAABBAAAAAQAAAIEAAABAAAAAF0AAAAAAAAABAAAAgQAAAEEAAABBAAAAgQAAAAEAAACBAAAAAUAAAAEAAACBAAAAgQAAAAEAAABBAAAAAAAAABdAAAAAAAAAA== - -4,3: - ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAEEAAACBQAAAAQAAAIAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAAABAAAAAQAAAIEAAACAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAQQAAAIEAAABBAAAAgAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAABBAAAAAQAAAAEAAABBAAAAQQAAAEAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQQAAAIEAAACBAAAAQQAAAAEAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAACBAAAAAQAAAEEAAABBAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAEEAAAABAAAAgQAAAEEAAABBAAAAgQAAAIAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAABBAAAAAQAAAEEAAABBAAAAAQAAAEEAAACAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAABAAAAQQAAAEEAAABBAAAAgQAAAIEAAABBAAAAQQAAAEEAAABBAAAAA== - -3,4: - ind: -3,4 - tiles: BAAAAgQAAAAEAAAABAAAAQQAAAAEAAABBAAAAQQAAAEEAAAABAAAAQQAAAIEAAAABAAAAQAAAABdAAAAAAAAAAQAAAIEAAAABAAAAQQAAAEEAAAABAAAAgQAAAAEAAAABAAAAgQAAAEEAAAABAAAAAQAAAIAAAAAXQAAAAAAAAAEAAABBAAAAQQAAAEEAAACBAAAAAQAAAEEAAAABAAAAQQAAAIEAAACBAAAAAQAAAEEAAAAAAAAAF0AAAAAAAAABAAAAgQAAAIEAAACBAAAAQQAAAIEAAACBAAAAAQAAAIEAAAABAAAAQQAAAEEAAAABAAAAAAAAABdAAAAAAAAAAQAAAEEAAAABAAAAgQAAAIEAAABBAAAAAQAAAEEAAABBAAAAQQAAAAEAAAABAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAABAAAAAQAAAAEAAACBAAAAgQAAAEEAAABBAAAAQQAAAAEAAABBAAAAQAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAABAAAAQQAAAIEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -4,4: - ind: -4,4 - tiles: AAAAAAAAAABdAAAAAAAAAAAAAAAEAAABBAAAAgQAAAAEAAAABAAAAAQAAAAEAAAABAAAAgQAAAEEAAABBAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAABAAAAAQAAAIEAAABBAAAAQQAAAIEAAABBAAAAAQAAAAEAAAABAAAAgQAAAEAAAAAAAAAAF0AAAAAAAAABAAAAgQAAAIEAAACBAAAAgQAAAEEAAABBAAAAQQAAAEEAAACBAAAAgQAAAEEAAAAAAAAAAAAAABdAAAAAAAAAAQAAAAEAAAABAAAAgQAAAAEAAACBAAAAgQAAAAEAAACBAAAAAQAAAAEAAAABAAAAgAAAAAAAAAAXQAAAAAAAAAEAAAABAAAAgQAAAAEAAAABAAAAAQAAAIEAAAABAAAAAQAAAAEAAABBAAAAQQAAAAAAAAAAAAAAF0AAAAAAAAABAAAAAQAAAEEAAAABAAAAgQAAAAEAAABBAAAAQQAAAAEAAACBAAAAgQAAAAEAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAEAAACBAAAAQQAAAAEAAAABAAAAAQAAAAEAAACBAAAAgQAAAAEAAACAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAQQAAAEEAAACBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 1,-7: - ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,2: - ind: 3,2 - tiles: RwAAAFAAAAFHAAAAXgAAAF4AAABeAAAAWwAAADEAAAAxAAAARwAAAF4AAABeAAAAAAAAAAAAAABeAAAAFgAAAFAAAAJHAAAAUAAAA14AAABeAAAAXgAAAFsAAANbAAABRwAAAFsAAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAEcAAABeAAAARwAAAF4AAAAAAAAAAAAAAAAAAABdAAAATwAAAE8AAABeAAAATgAAAE4AAABOAAAATgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAXQAAAEcAAABHAAAAXgAAAE8AAABPAAAATwAAAE4AAABeAAAATwAAAF4AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABHAAAARwAAAF4AAABPAAAATwAAAE8AAABOAAAAUAAAAk8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAARwAAAEQAAANeAAAAXgAAAF4AAABeAAAARwAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAE4AAABeAAAAXgAAAF4AAABHAAAAXgAAAFAAAAJeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAARwAAAEcAAABHAAAARwAAAF4AAABPAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABeAAAARAAAA0QAAAJOAAAAXgAAAEQAAAJHAAAARwAAAEcAAABOAAAAXgAAAAQAAAFeAAAAXgAAAAQAAAAAAAAAXgAAAEQAAANOAAAATgAAAEcAAABHAAAARwAAAF4AAABEAAABTgAAAF4AAAAEAAAAXgAAAF4AAAAEAAABXgAAAF4AAABeAAAATwAAAF4AAABPAAAAXgAAAE8AAABeAAAATwAAAF4AAABeAAAABAAAAAQAAAEEAAABBAAAAUQAAANEAAAATwAAAFAAAANPAAAAUAAAA08AAABQAAACTwAAAFAAAABPAAAAUAAAA1AAAAMEAAAABAAAAQQAAAFEAAABXgAAAF4AAABEAAABXgAAAF4AAABeAAAARAAAAV4AAABPAAAAXgAAAF4AAABHAAAABAAAAV4AAAAEAAACRAAAAUQAAAJPAAAAUAAAAU8AAABQAAADTwAAAFAAAANPAAAAUAAAA08AAABQAAADUAAAAgQAAAIEAAABBAAAAA== - 2,3: - ind: 2,3 - tiles: XgAAAF4AAABeAAAARAAAAEQAAANEAAADXgAAAEcAAABbAAABRAAAAkQAAAFEAAADXgAAAEQAAABEAAAARAAAAgAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAFsAAANeAAAAXgAAAF4AAABEAAADRAAAA0QAAAAAAAAAAAAAAAAAAABeAAAARAAAAFsAAAFbAAAARAAAAF4AAABbAAAAXgAAAAAAAABeAAAAXgAAAF4AAABEAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABEAAAARAAAAVsAAABbAAABWwAAAV4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 3,3: - ind: 3,3 - tiles: RAAAAF4AAABeAAAATwAAAF4AAABPAAAAXgAAAE8AAABeAAAATwAAAF4AAABeAAAAXgAAAAQAAAIEAAAABAAAAEQAAAJeAAAATgAAAE4AAABOAAAATgAAAEcAAABHAAAAXgAAAEQAAANOAAAAXgAAAF4AAABeAAAABAAAAgQAAABEAAACXgAAAF4AAABOAAAARwAAAE4AAABHAAAARAAAAU4AAABOAAAARAAAA14AAABeAAAAXgAAAF4AAAAEAAACXgAAAF4AAABOAAAAUAAAAkcAAABQAAADXgAAAEQAAABEAAACRAAAAE4AAABeAAAABAAAAgQAAAEEAAABBAAAAAAAAABeAAAAXgAAAFAAAABHAAAARwAAAF4AAABeAAAARAAAAUQAAANOAAAAXgAAAAQAAAIEAAAABAAAAQQAAAIAAAAAXgAAAF4AAABeAAAARAAAAEQAAAFHAAAARAAAA04AAABeAAAAXgAAAF4AAAAEAAAABAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAABAAAAAQAAAAEAAABBAAAAl0AAAAAAAAAXgAAAF4AAABEAAABXgAAABYAAAFeAAAARAAAA14AAABeAAAAAAAAAAAAAAAEAAACBAAAAQQAAAFdAAAAAAAAAF4AAABOAAAATgAAAEcAAAAWAAADXgAAAEcAAABEAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAFAAAAFEAAABFgAAAkcAAABeAAAAXgAAAF4AAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXgAAAEcAAABEAAADRAAAA04AAABQAAAARAAAA0cAAABeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXQAAAF4AAABeAAAARAAAA08AAABPAAAATwAAAE4AAABeAAAAXgAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABPAAAATwAAAE8AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAA== - -2,4: - ind: -2,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAEQAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAABEAAABXgAAAEQAAAJEAAADRAAAAkQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAACRAAAABYAAANJAAABSQAAAUkAAAFJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAARAAAAUQAAAFeAAAATwAAAE8AAABJAAADTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAEQAAAJEAAABXgAAAF4AAABeAAAAFgAAAV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABEAAABRAAAAl4AAAAAAAAAXgAAABYAAANeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAFgAAAhYAAANeAAAAAAAAAF4AAAAWAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAMWAAACXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAAAWAAADFgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATwAAAE8AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAABYAAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAWAAACFgAAA14AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - -1,4: - ind: -1,4 - tiles: XgAAAF4AAABEAAACRAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAAAWAAACXgAAAEQAAANeAAAARAAAAUQAAAFeAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAGgAAAhoAAAMWAAACRAAAARYAAANJAAAAFgAAAEQAAANEAAACXgAAAAAAAAAAAAAAXgAAAF4AAAAWAAABFgAAACwAAAAsAAAALAAAACwAAAAsAAAATwAAAF4AAABEAAADRAAAAl4AAAAAAAAAAAAAAF4AAAAWAAAAFgAAARYAAAEsAAAAGQAAAhkAAAIZAAAAGQAAA14AAABeAAAARAAAAEQAAAFeAAAAAAAAAAAAAABeAAAAFgAAAkQAAAIWAAAALAAAABkAAAIPAAAADwAAAA8AAAAAAAAAXgAAAEQAAABEAAADXgAAAAAAAAAAAAAAXgAAABYAAAJEAAADFgAAASwAAAAZAAABDwAAABYAAAMPAAAAAAAAAF4AAAAWAAADFgAAA14AAAAAAAAAAAAAAF4AAAAWAAADRAAAARYAAAAsAAAAGQAAAQ8AAAAPAAAADwAAAAAAAABeAAAAFgAAAhYAAABeAAAAAAAAAAAAAABeAAAAFgAAAUQAAAJEAAAALAAAABkAAAEZAAACGQAAAhkAAAEAAAAAXgAAABYAAAIWAAABXgAAAAAAAAAAAAAAXgAAAF4AAAAWAAAARAAAACwAAAAsAAAALAAAACwAAAAsAAAAAAAAAF4AAABPAAAATwAAAF4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAEQAAAFEAAAARAAAAhYAAANeAAAAFgAAAAAAAABeAAAAFgAAAhYAAANeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAXgAAABYAAAIWAAAAXgAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,3: - ind: 4,3 - tiles: BAAAAQQAAAAEAAACBAAAAgQAAAIEAAACBAAAAQAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEEAAACBAAAAQQAAAAEAAAABAAAAAQAAAIAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAIEAAAABAAAAQQAAAAEAAABAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIEAAABBAAAAQQAAAIEAAACBAAAAgAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAABBAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAAQAAAIEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 4,2: - ind: 4,2 - tiles: XgAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF4AAABEAAACRAAAAEQAAAJEAAADRAAAA14AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAARAAAAkQAAANEAAABRAAAAEQAAABeAAAAXgAAAF4AAABdAAAAAAAAAF0AAABdAAAAXQAAABYAAAMWAAAAFgAAA0QAAAFEAAADRAAAA0QAAANEAAABFgAAABYAAAEWAAABXQAAAF0AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAABRAAAAEQAAABEAAACRAAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAARAAAA0QAAABEAAAARAAAAUQAAAJeAAAAXQAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAQAAAEEAAABBAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAEAAAABAAAAAQAAAIEAAABBAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAABAAAAgQAAAEEAAAABAAAAQQAAAIEAAABBAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAQAAAAEAAACBAAAAQQAAAEEAAACBAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAEAAABBAAAAgQAAAAEAAACBAAAAAQAAAIEAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAABAAAAgQAAAEEAAACBAAAAgQAAAEEAAACBAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 0,4: - ind: 0,4 - tiles: XgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAMaAAACXgAAAF4AAABeAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAALAAAABYAAAAWAAACXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAASwAAAAWAAABFgAAARYAAANeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAIsAAAAFgAAAEQAAAAWAAADXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAACLAAAABYAAAJEAAADFgAAA14AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAiwAAAAWAAADRAAAAxYAAAFeAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAEsAAAARAAAA0QAAAEWAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAALAAAAEQAAAAWAAACXgAAAF4AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAABEAAACXgAAAF4AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,2: - ind: 5,2 - tiles: AAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,1: - ind: 5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAA== - -1,-7: - ind: -1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABEAAADFgAAAkQAAAFEAAADRAAAAl4AAABeAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAWAAADFgAAARYAAAJEAAABRAAAAUQAAABEAAADXgAAAF0AAABdAAAAXQAAAEcAAABHAAAAXgAAAEQAAANEAAACRAAAAUQAAANEAAAARAAAAEcAAABEAAABRAAAAl4AAAAAAAAAAAAAAF0AAABHAAAARwAAAEcAAABEAAAARAAAAEQAAABEAAADRwAAAEcAAABEAAADRAAAA0QAAAFeAAAAAAAAAAAAAABdAAAATgAAAE4AAABeAAAARAAAAkQAAANEAAABRAAAAUQAAANEAAAARAAAAkQAAABEAAACXgAAAF0AAABdAAAAXQAAAA== - -2,-7: - ind: -2,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAAJEAAADRAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAARAAAAUQAAABEAAACRAAAA0QAAAJEAAADRAAAAl4AAABeAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAARwAAAEQAAAJHAAAARwAAAEcAAABHAAAARwAAAEQAAANHAAAARwAAAEcAAAAWAAADRwAAAEcAAABHAAAARwAAAF4AAABEAAAARwAAAEcAAABHAAAARwAAAEcAAABEAAADXgAAAEcAAABHAAAAXgAAAEcAAABHAAAAXgAAAEcAAABHAAAARAAAAUcAAABHAAAARwAAAFAAAABHAAAARAAAAUcAAABOAAAAXgAAAA== - -3,-7: - ind: -3,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAABYAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAAAWAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAFgAAA14AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAE4AAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAATgAAAE4AAABOAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABEAAAARAAAAFAAAAJOAAAAXgAAAE4AAABOAAAATgAAAE4AAABOAAAATgAAAA== - -5,-4: - ind: -5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAF0AAABdAAAAXQAAAA== - 5,-4: - ind: 5,-4 - tiles: BAAAAQQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABBAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - 5,-5: - ind: 5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - type: MapGrid - - type: Broadphase - - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: [] - type: Fixtures - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 3279: 67,-46 - 3280: 67,-47 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 30: 10,22 - 31: 10,21 - 32: 10,20 - 193: 68,-46 - 194: 68,-47 - 360: -59,-74 - 361: -59,-72 - 362: -59,-80 - 363: -59,-82 - 366: -38,23 - 367: -39,23 - 368: -41,23 - 369: -42,23 - 370: -44,23 - 371: -45,23 - 372: -45,22 - 373: -44,22 - 374: -41,22 - 375: -42,22 - 376: -39,22 - 377: -45,20 - 378: -44,20 - 379: -42,20 - 380: -41,20 - 381: -38,20 - 382: -38,19 - 383: -41,19 - 384: -42,19 - 385: -45,19 - 386: -44,19 - 387: -39,20 - 388: -39,19 - 389: -38,22 - 390: 52,-16 - 391: -51,22 - 392: -51,20 - 393: -53,22 - 394: -53,20 - 397: -45,33 - 398: -44,33 - 399: -43,33 - 400: -44,32 - 401: -43,32 - 402: -45,32 - 403: -45,31 - 404: -44,31 - 405: -43,31 - 406: -51,33 - 407: -51,31 - 408: -52,29 - 409: -51,29 - 410: -52,35 - 411: -51,35 - 417: -57,-2 - 447: 28,-40 - 448: 22,-40 - 453: -60,-55 - 454: 59,29 - 455: 60,29 - 456: 68,-4 - 457: 68,-6 - 458: 68,-12 - 459: 68,-14 - 502: 76,36 - 503: 68,36 - 504: 63,31 - 505: 29,42 - 606: -13,74 - 607: -14,74 - 608: -22,74 - 609: -23,74 - 614: -38,42 - 654: -36,-101 - 655: 67,-16 - 656: -70,-40 - 657: -73,-35 - 658: -66,-44 - 3167: 73,-37 - 3168: 73,-36 - 3169: 72,-36 - 3170: 73,-35 - 3237: -52,-59 - 3258: 68,-69 - 3273: 69,-46 - 3274: 69,-47 - 3275: 70,-46 - 3276: 70,-47 - 3498: -47,-41 - 3503: -12,-14 - 3719: 33,-83 - 3720: 33,-90 - 3721: 30,-95 - 3722: 48,-95 - 3723: 45,-90 - 3724: 45,-83 - 3832: -58,-19 - 3833: -18,69 - - node: - color: '#60A5D9D6' - id: BotGreyscale - decals: - 3614: -25,-60 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 232: -19,3 - 233: -21,1 - 3165: 72,-37 - - node: - color: '#FFFFFFFF' - id: BotRight - decals: - 230: -21,3 - 231: -19,1 - 3166: 72,-35 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 225: -20,3 - 226: -20,2 - 227: -21,2 - 228: -19,2 - 229: -20,1 - - node: - color: '#D4D4D4D6' - id: BrickTileSteelCornerNe - decals: - 3524: 30,4 - - node: - color: '#D4D4D4D6' - id: BrickTileSteelCornerNw - decals: - 3523: 28,4 - - node: - color: '#D4D4D4D6' - id: BrickTileSteelCornerSe - decals: - 3522: 30,-1 - - node: - color: '#D4D4D4D6' - id: BrickTileSteelEndS - decals: - 3519: 28,-3 - - node: - color: '#D4D4D4D6' - id: BrickTileSteelInnerNe - decals: - 3556: 20,-3 - - node: - color: '#D4D4D4D6' - id: BrickTileSteelInnerNw - decals: - 3558: 27,-3 - - node: - color: '#D4D4D4D6' - id: BrickTileSteelInnerSe - decals: - 3530: 28,-1 - 3557: 20,4 - - node: - color: '#D4D4D4D6' - id: BrickTileSteelInnerSw - decals: - 3555: 27,4 - - node: - color: '#D4D4D4D6' - id: BrickTileSteelLineE - decals: - 3520: 28,-2 - 3525: 30,3 - 3526: 30,2 - 3527: 30,1 - 3528: 30,0 - 3543: 20,3 - 3544: 20,2 - 3545: 20,1 - 3546: 20,0 - 3547: 20,-1 - 3548: 20,-2 - - node: - color: '#D4D4D4D6' - id: BrickTileSteelLineN - decals: - 3529: 29,4 - 3549: 21,-3 - 3550: 22,-3 - 3551: 23,-3 - 3552: 24,-3 - 3553: 25,-3 - 3554: 26,-3 - - node: - color: '#D4D4D4D6' - id: BrickTileSteelLineS - decals: - 3521: 29,-1 - 3537: 26,4 - 3538: 25,4 - 3539: 24,4 - 3540: 23,4 - 3541: 22,4 - 3542: 21,4 - - node: - color: '#D4D4D4D6' - id: BrickTileSteelLineW - decals: - 3513: 28,-2 - 3514: 28,3 - 3515: 28,2 - 3516: 28,1 - 3517: 28,0 - 3518: 28,-1 - 3531: 27,3 - 3532: 27,2 - 3533: 27,1 - 3534: 27,0 - 3535: 27,-1 - 3536: 27,-2 - - node: - color: '#D381C996' - id: BrickTileWhiteBox - decals: - 3834: 8,-23 - - node: - color: '#52B4E996' - id: BrickTileWhiteBox - decals: - 3835: 9,-23 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteBox - decals: - 3836: 10,-23 - - node: - color: '#EFB34196' - id: BrickTileWhiteBox - decals: - 3841: 11,-21 - - node: - color: '#9D9D97FF' - id: BrickTileWhiteBox - decals: - 3645: -19,-46 - - node: - color: '#9FED5896' - id: BrickTileWhiteBox - decals: - 3837: 11,-23 - - node: - color: '#D4D4D496' - id: BrickTileWhiteBox - decals: - 3840: 10,-21 - - node: - color: '#A4610696' - id: BrickTileWhiteBox - decals: - 3838: 8,-21 - - node: - color: '#FEAC3DFF' - id: BrickTileWhiteBox - decals: - 3648: -22,-48 - - node: - color: '#3AB3DAFF' - id: BrickTileWhiteBox - decals: - 3647: -19,-47 - - node: - color: '#C74EBDFF' - id: BrickTileWhiteBox - decals: - 3641: -22,-46 - - node: - color: '#B02E26FF' - id: BrickTileWhiteBox - decals: - 3643: -22,-49 - - node: - color: '#3C44AAFF' - id: BrickTileWhiteBox - decals: - 3644: -19,-49 - - node: - color: '#80C71FFF' - id: BrickTileWhiteBox - decals: - 3646: -19,-48 - - node: - color: '#334E6DC8' - id: BrickTileWhiteBox - decals: - 3839: 9,-21 - - node: - color: '#835432FF' - id: BrickTileWhiteBox - decals: - 3642: -22,-47 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNe - decals: - 3842: 12,-20 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNw - decals: - 3845: 7,-20 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSe - decals: - 3843: 12,-24 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSw - decals: - 3844: 7,-24 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineE - decals: - 3850: 12,-21 - 3851: 12,-22 - 3852: 12,-23 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 3846: 8,-20 - 3847: 9,-20 - 3848: 10,-20 - 3849: 11,-20 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineS - decals: - 3856: 8,-24 - 3857: 9,-24 - 3858: 10,-24 - 3859: 11,-24 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineW - decals: - 3853: 7,-21 - 3854: 7,-22 - 3855: 7,-23 - - node: - color: '#FFFFFFFF' - id: Busha1 - decals: - 553: -8.396269,51.324306 - 554: -8.978583,51.511806 - 3051: 5.324413,-0.030564666 - 3057: 6.590038,0.46943533 - 3058: 10.590037,0.50068533 - 3059: 11.636912,0.26631033 - - node: - color: '#FFFFFFFF' - id: Busha2 - decals: - 555: -9.822333,51.261806 - 556: -10.681708,51.293056 - 557: -11.416083,51.40243 - - node: - color: '#FFFFFFFF' - id: Bushc1 - decals: - 604: -6.4137044,52.65711 - 605: -7.6637044,52.519527 - - node: - color: '#FFFFFFFF' - id: Bushd2 - decals: - 164: 53,-10 - 559: -6.1305466,49.392605 - 560: -5.6149216,48.955105 - 561: -5.5992966,48.06448 - 562: -5.6305466,48.47073 - - node: - color: '#FFFFFFFF' - id: Bushd4 - decals: - 558: -6.5836716,49.455547 - - node: - color: '#FFFFFFFF' - id: Bushe1 - decals: - 416: -4.6178575,3.9941478 - - node: - color: '#FFFFFFFF' - id: Bushe4 - decals: - 3157: 65.93705,-9.8447485 - 3163: -11.957823,6.4384537 - 3164: -4.0984473,3.9853287 - - node: - color: '#FFFFFFFF' - id: Bushf1 - decals: - 3709: 13.976057,-83.06645 - 3710: 14.054182,-84.08208 - 3711: 13.866682,-85.00395 - 3712: 16.304182,-85.19145 - 3713: 16.413557,-83.76958 - 3714: 16.085432,-82.48833 - 3715: 16.444807,-83.11333 - 3716: 15.538557,-85.22248 - 3717: 14.710432,-85.15998 - - node: - color: '#FFFFFFFF' - id: Bushf2 - decals: - 3154: 66.0308,-8.000998 - 3155: 65.93705,-8.6728735 - 3156: 66.2183,-9.5634985 - - node: - color: '#FFFFFFFF' - id: Bushh2 - decals: - 165: 50,-12 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 545: -4.994979,50.827797 - 546: -5.541854,51.452797 - 547: -5.448104,50.905922 - 548: -6.7868943,51.465733 - - node: - color: '#FFFFFFFF' - id: Bushi2 - decals: - 3056: 5.902538,0.18818533 - 3725: 33.10084,-87.77701 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 549: -6.7243943,50.903233 - 550: -6.7400193,50.309483 - 551: -7.2868943,51.575108 - - node: - color: '#FFFFFFFF' - id: Bushj1 - decals: - 552: -7.8962693,51.361984 - - node: - color: '#FFFFFFFF' - id: Bushk2 - decals: - 506: -4.1263514,50.81898 - - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 167: 50,-7 - - node: - color: '#FFFFFFFF' - id: Caution - decals: - 3222: 16.006746,36.692352 - - node: - color: '#EFB34196' - id: CheckerNESW - decals: - 442: 23,-40 - 443: 26,-40 - 444: 27,-40 - 445: 25,-40 - 446: 24,-40 - - node: - color: '#D381C9FF' - id: CheckerNESW - decals: - 171: 40,-37 - 172: 41,-37 - 173: 40,-38 - 174: 41,-38 - 175: 40,-39 - 176: 41,-39 - 177: 42,-37 - 178: 42,-38 - 179: 42,-39 - 180: 43,-37 - 181: 44,-38 - 182: 43,-37 - 183: 44,-39 - 184: 45,-39 - 185: 45,-38 - 186: 43,-38 - 187: 43,-39 - - node: - color: '#D381C9C7' - id: CheckerNESW - decals: - 188: 44,-37 - 189: 45,-37 - 190: 39,-37 - 191: 39,-38 - 192: 39,-39 - - node: - color: '#334E6DC8' - id: CheckerNESW - decals: - 27: 32,-26 - 451: 32,-25 - - node: - color: '#DE3A3A53' - id: CheckerNWSE - decals: - 3249: 29,32 - - node: - color: '#334E6DC8' - id: CheckerNWSE - decals: - 26: 18,-26 - 452: 18,-25 - - node: - color: '#DE3A3A96' - id: CheckerNWSE - decals: - 24: -21,-83 - 25: -21,-82 - - node: - color: '#DE3A3A5A' - id: CheckerNWSE - decals: - 145: 26,31 - 146: 27,31 - 147: 28,31 - 148: 29,31 - 149: 30,31 - 150: 31,31 - 151: 32,31 - 152: 30,30 - 153: 29,30 - 154: 28,30 - 155: 30,29 - 156: 29,29 - 157: 28,29 - 158: 28,28 - 159: 29,28 - 160: 30,28 - 161: 30,27 - 162: 29,27 - 163: 28,27 - - node: - cleanable: True - color: '#DE3A3A96' - id: Diablo - decals: - 431: -43,-72 - - node: - color: '#DE3A3A2E' - id: DiagonalCheckerBOverlay - decals: - 3445: -2,21 - 3446: -2,20 - 3447: -1,21 - 3448: -1,20 - 3449: 0,21 - 3450: 0,20 - 3451: 1,21 - 3452: 1,20 - 3453: 2,21 - 3454: 2,20 - 3455: 2,19 - 3456: 1,19 - 3457: 0,19 - 3458: -1,19 - 3459: -2,19 - 3460: -2,18 - 3461: -2,17 - 3462: -2,16 - 3463: -1,16 - 3464: 0,16 - 3465: 1,16 - 3466: 2,16 - 3467: 2,17 - 3468: 2,18 - 3469: 1,18 - 3470: 1,17 - 3471: 0,18 - 3472: 0,17 - 3473: -1,18 - 3474: -1,17 - - node: - color: '#FFFFFFFF' - id: Dirt - decals: - 41: 5,-27 - 45: 20,-14 - 49: 26,-6 - 198: 53,-10 - 199: 53,-10 - 200: 53,-10 - 201: 54,-9 - 202: 54,-10 - 203: 54,-10 - - node: - cleanable: True - color: '#D4D4D496' - id: Dirt - decals: - 73: -5,-30 - 74: -5,-30 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 112: 52,16 - 129: 53,22 - 130: 60,18 - 131: 62,12 - 132: 62,10 - 224: 68,-45 - 345: -39,-80 - 346: -48,-80 - - node: - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 40: 14,-27 - 53: 5,14 - 196: 57,-13 - 204: 61,-12 - 235: -25,-10 - 236: -21,-18 - 237: -26,-23 - 238: -25,-23 - - node: - cleanable: True - color: '#D4D4D496' - id: DirtHeavy - decals: - 71: -8,-27 - 72: -9,-27 - 75: -5,-12 - 76: -5,-11 - 77: -5,-11 - 78: 8,-1 - 79: 26,7 - 80: 25,12 - 85: 20,22 - 86: 15,20 - 87: 11,21 - 88: 11,20 - 89: 11,20 - 90: 11,22 - 91: 1,18 - 92: 0,17 - 93: 21,23 - 94: 20,20 - 95: 21,23 - 96: 21,22 - 97: 22,22 - 98: 33,15 - 244: -8,-47 - 246: -5,-54 - 247: 1,-54 - 248: -8,-67 - 249: -8,-67 - 250: -6,-65 - 251: -6,-65 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 55: 7,16 - 57: 6,7 - 61: 1,-1 - 62: 2,-1 - 63: 9,1 - 64: -4,2 - 65: -6,1 - 66: -8,2 - 68: -8,-1 - 69: -9,2 - 109: 56,15 - 110: 54,15 - 111: 53,15 - 113: 47,11 - 114: 48,9 - 115: 47,9 - 116: 48,8 - 133: 61,13 - 134: 60,15 - 135: 61,23 - 136: 63,21 - 137: 52,21 - 138: 47,14 - 139: 46,8 - 140: 46,4 - 141: 49,4 - 144: 41,12 - 209: 49,-39 - 214: 40,-39 - 215: 40,-39 - 216: 39,-37 - 218: 61,-56 - 219: 68,-48 - 220: 68,-48 - 221: 68,-48 - 222: 71,-47 - 223: 68,-46 - 315: -38,-82 - 316: -37,-83 - 317: -38,-83 - 353: -55,-75 - 354: -56,-76 - 421: -46,7 - 638: 64,-9 - 639: 63,-11 - 640: 63,-11 - 641: -9,5 - 646: -16,39 - 650: 0,46 - 651: 0,56 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 44: 17,-12 - 47: 27,-13 - 48: 27,-13 - 50: 17,0 - 51: 17,0 - 52: 6,15 - 197: 53,-12 - 234: -25,-12 - 241: -27,-24 - 242: -27,-22 - - node: - cleanable: True - color: '#D4D4D4D6' - id: DirtLight - decals: - 3559: 29,3 - 3560: 29,3 - - node: - cleanable: True - color: '#D4D4D496' - id: DirtLight - decals: - 81: 23,22 - 82: 24,21 - 243: 10,-43 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 56: 5,16 - 59: 1,2 - 67: -6,-1 - 99: 57,9 - 100: 56,9 - 101: 57,10 - 102: 57,10 - 106: 60,9 - 107: 60,8 - 108: 57,15 - 117: 45,6 - 118: 54,8 - 119: 54,8 - 120: 53,8 - 125: 47,20 - 126: 50,23 - 127: 47,23 - 128: 47,23 - 143: 29,16 - 205: 61,-9 - 206: 56,-46 - 210: 44,-38 - 211: 45,-38 - 212: 45,-38 - 217: 64,-54 - 318: -38,-83 - 319: -39,-83 - 320: -41,-81 - 321: -41,-83 - 322: -41,-83 - 341: -42,-68 - 342: -43,-77 - 343: -42,-77 - 351: -54,-80 - 352: -53,-81 - 418: -55,-8 - 419: -37,0 - 423: -14,1 - 424: -20,9 - 642: 3,5 - 643: 4,5 - 644: 4,5 - 647: -18,46 - 648: -16,46 - 652: -18,50 - 653: -18,50 - - node: - color: '#FFFFFFFF' - id: DirtMedium - decals: - 39: 13,-27 - 42: 15,-24 - 43: 21,-11 - 46: 27,-11 - 54: 6,14 - 195: 58,-12 - 239: -26,-24 - 240: -25,-22 - - node: - cleanable: True - color: '#D4D4D4D6' - id: DirtMedium - decals: - 3561: 30,-1 - 3562: 27,-2 - - node: - cleanable: True - color: '#D4D4D496' - id: DirtMedium - decals: - 70: -5,-27 - 83: 21,21 - 84: 20,21 - 245: -8,-47 - 252: -7,-65 - 253: -7,-65 - 254: -6,-67 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - decals: - 58: 1,5 - 60: 0,0 - 103: 56,10 - 104: 59,10 - 105: 60,10 - 121: 53,6 - 122: 49,20 - 123: 49,21 - 124: 46,21 - 142: 29,20 - 207: 51,-45 - 208: 49,-47 - 213: 42,-39 - 323: -41,-83 - 324: -41,-83 - 325: -41,-83 - 326: -40,-82 - 327: -47,-74 - 328: -46,-75 - 329: -46,-76 - 330: -43,-71 - 331: -42,-72 - 332: -42,-72 - 333: -42,-72 - 334: -42,-72 - 335: -42,-72 - 336: -42,-72 - 337: -42,-72 - 338: -42,-72 - 339: -41,-73 - 340: -43,-73 - 344: -41,-77 - 347: -48,-78 - 348: -47,-78 - 349: -55,-79 - 350: -56,-80 - 355: -56,-72 - 356: -55,-73 - 357: -57,-77 - 358: -57,-78 - 359: -51,-77 - 420: -39,0 - 422: -14,-3 - 645: -16,31 - 649: -8,45 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 19: 23,-20 - 3060: 5.027538,0.48506033 - 3061: 5.996288,0.81318533 - 3062: 6.683788,0.23506033 - - node: - color: '#FFFFFFFF' - id: Flowersbr2 - decals: - 18: 22,-20 - 515: -7.9438224,54.971848 - 516: -7.7875724,53.628098 - 517: -7.7250724,54.393723 - 518: -5.9438224,54.393723 - 519: -6.4438224,53.815598 - 520: -6.0844474,53.346848 - 521: -9.631323,52.971848 - 522: -10.225073,51.006943 - 523: -9.959448,51.163193 - 524: -11.115698,50.303818 - 525: -7.3188224,49.847054 - 526: -6.0531974,48.972054 - 527: -7.7406974,47.972054 - 528: -4.0050426,49.72508 - 529: -4.3175426,48.72508 - 530: -3.1144176,47.88133 - 531: -5.0675426,53.662476 - 532: -4.1456676,53.1781 - 3158: 66.015175,-7.813498 - 3159: 66.046425,-8.6728735 - 3160: 66.140175,-10.1103735 - 3593: 31.822735,-40.888805 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 3063: 5.761913,0.21943533 - 3064: 11.324412,0.73506033 - 3065: 10.449412,0.29756033 - 3066: 11.465037,0.25068533 - 3568: -40.519615,3.8355665 - 3569: -41.269615,3.0543165 - 3570: -40.25399,5.8355665 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 21: 26,-20 - 22: 29,-20 - 3579: -35.06649,3.0386915 - 3580: -36.59774,5.4761915 - 3581: -32.2259,5.128909 - 3582: -32.647774,3.019534 - 3583: -31.054026,2.972659 - - node: - color: '#FFFFFFFF' - id: Flowerspv2 - decals: - 3685: 14.548721,-83.70324 - 3686: 14.283096,-84.48449 - 3687: 15.423721,-84.906364 - 3688: 15.876846,-83.750114 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 20: 21,-20 - 23: 28,-20 - 168: 53.97966,-9.7814665 - 169: 53.38591,-8.9064665 - 170: 53.995285,-8.468966 - 3689: 14.220596,-83.85949 - 3690: 14.220596,-85.01574 - 3691: 15.892471,-84.45324 - 3692: 15.642471,-83.32824 - 3731: 45.435932,-87.78455 - 3732: 45.123432,-85.4408 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 538: -3.198104,50.273075 - 539: -5.010604,52.366825 - 540: -8.291855,53.364235 - 541: -6.135604,55.832985 - 542: -10.65123,52.966118 - 543: -7.307479,50.772125 - 544: -9.46373,48.678375 - - node: - color: '#D4D4D496' - id: FullTileOverlayGreyscale - decals: - 627: 48,48 - 628: 47,48 - 629: 46,48 - 630: 45,48 - 631: 48,50 - 632: 47,50 - 633: 48,46 - 634: 47,46 - 635: 46,46 - 636: 46,44 - 637: 45,44 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 615: 48,49 - 616: 47,49 - 617: 46,49 - 618: 45,49 - 619: 49,47 - 620: 48,47 - 621: 46,47 - 622: 45,47 - 623: 49,45 - 624: 48,45 - 625: 46,45 - 626: 45,45 - - node: - color: '#FFFFFFFF' - id: Grassa1 - decals: - 3563: -40.269615,3.5386915 - 3564: -41.50399,4.0230665 - 3584: -30.3509,4.378909 - 3585: -29.50715,3.753909 - 3586: -30.429026,5.613284 - 3587: -31.5384,5.925784 - 3588: -32.3509,5.816409 - 3589: -29.6634,5.738284 - 3590: -32.710274,3.2350059 - 3591: 30.932108,-40.326305 - 3592: 31.697735,-40.576305 - - node: - color: '#FFFFFFFF' - id: Grassa2 - decals: - 3726: 32.48763,-86.22205 - 3727: 32.909504,-86.76893 - 3728: 44.967182,-87.42518 - 3729: 45.748432,-86.90955 - 3730: 44.967182,-86.36268 - - node: - color: '#FFFFFFFF' - id: Grassa3 - decals: - 460: 12,54 - 461: 11.417037,54.859276 - 462: 8.745162,55.046776 - 463: 11.057662,53.3749 - 464: 10.995162,55.78115 - 465: 9.995162,55.1249 - 466: 12.135787,53.1874 - 467: 11.073287,52.3749 - 468: 9.463912,52.359276 - 469: 8.979537,54.046776 - 470: 6.2227497,52.7499 - 471: 7.0196247,54.3124 - 472: 7.2539997,55.3749 - 473: 8.675875,53.1874 - - node: - color: '#FFFFFFFF' - id: Grassa4 - decals: - 3571: -36.175865,3.0074415 - 3572: -35.144615,3.8199415 - 3573: -35.394615,4.5855665 - 3574: -34.94149,4.6636915 - 3575: -36.59774,5.5230665 - - node: - color: '#FFFFFFFF' - id: Grassb2 - decals: - 3162: -11.879698,6.0478287 - - node: - color: '#FFFFFFFF' - id: Grassc1 - decals: - 474: 11.441196,54.4999 - 475: 12.534946,54.03115 - 476: 12.050571,54.796776 - 477: 12.363071,54.359276 - 478: 12.394321,52.890526 - 479: 11.706821,52.28115 - 480: 11.316196,52.078026 - 481: 10.800571,53.296776 - 482: 11.441196,53.921776 - 483: 10.675571,55.84365 - 484: 10.012899,54.390526 - 485: 9.716024,53.265526 - 486: 10.559774,52.359276 - 487: 8.669149,54.109276 - 488: 7.621642,52.84365 - 489: 6.5747676,52.90615 - 490: 5.9810176,54.171776 - 491: 7.4810176,55.671776 - 492: 9.465392,55.265526 - 3565: -41.832115,3.1480665 - 3566: -42.082115,4.5074415 - 3567: -40.425865,5.7261915 - 3576: -36.44149,5.3668165 - 3577: -36.644615,3.3824415 - 3578: -35.37899,3.1168165 - - node: - color: '#FFFFFFFF' - id: Grassc4 - decals: - 414: -5.001564,4.018616 - 3161: -12.004698,6.9072037 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 415: -4.6178575,4.009773 - 567: -6.076791,52.85032 - 568: -5.483041,52.022194 - 569: -5.623666,52.615944 - 570: -7.529916,54.67404 - 571: -7.592416,53.908417 - 572: -7.717416,56.181545 - 573: -7.623666,55.88467 - 574: -6.420541,56.25967 - 575: -6.311166,55.72842 - 576: -6.233041,55.10342 - 577: -6.311166,54.47842 - 578: -6.342416,54.94717 - 579: -5.983041,49.3346 - 580: -6.498666,49.8971 - 581: -5.764291,49.2096 - 582: -5.639291,48.05335 - 583: -9.6108055,52.803352 - 584: -9.0014305,52.881477 - 585: -10.1733055,52.725227 - 586: -10.9858055,52.709602 - 587: -11.0483055,52.818977 - 588: -10.1733055,52.772102 - 589: -4.410207,50.704334 - 590: -4.160207,49.860584 - 591: -4.253957,48.891834 - 592: -4.253957,49.298084 - 593: -4.160207,48.016834 - 594: -3.5221872,52.73997 - 595: -4.147187,52.02122 - 596: -5.303437,55.786846 - 597: -4.225312,56.23997 - 598: -2.9753122,53.286846 - 599: -3.0690622,51.286846 - 600: -8.428438,54.974346 - 601: -8.928438,56.05247 - 602: -10.678438,55.30247 - 603: -10.850313,53.86497 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 493: 12.153599,54.59365 - 494: 11.419224,55.40615 - 495: 12.508601,53.68905 - 496: 12.571101,52.892174 - 497: 11.789851,52.392174 - 498: 12.117976,52.5328 - 499: 12.852351,53.9703 - - node: - color: '#EFB34150' - id: HalfTileOverlayGreyscale - decals: - 3149: -16,-5 - - node: - color: '#EFB34160' - id: HalfTileOverlayGreyscale - decals: - 3124: -24,-5 - 3125: -23,-5 - 3126: -21,-5 - 3127: -20,-5 - 3128: -18,-5 - 3129: -17,-5 - - node: - color: '#FFFFFF79' - id: HalfTileOverlayGreyscale - decals: - 666: 6,-62 - 667: 5,-62 - 668: 4,-62 - 669: 3,-62 - 670: 2,-62 - 671: 1,-62 - 672: 0,-62 - 673: -1,-62 - 674: -2,-62 - 675: -3,-62 - 676: -4,-62 - 677: -5,-62 - 678: -6,-62 - 679: -7,-62 - 680: -8,-62 - 681: -9,-62 - 682: -10,-62 - 683: -12,-62 - 684: -11,-62 - 685: -13,-62 - 686: -14,-62 - 687: -15,-62 - 688: -16,-62 - 689: -17,-62 - 690: -18,-62 - 691: -19,-62 - 692: -20,-62 - - node: - color: '#6C896FAB' - id: HalfTileOverlayGreyscale - decals: - 33: -8,11 - 34: -10,11 - 35: -11,11 - - node: - color: '#EFB3415A' - id: HalfTileOverlayGreyscale - decals: - 288: -19,-5 - 289: -22,-5 - - node: - color: '#D4D4D496' - id: HalfTileOverlayGreyscale - decals: - 4: -7,-64 - 5: -8,-64 - 6: -9,-64 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 1025: 62,-49 - - node: - color: '#FFFFFF79' - id: HalfTileOverlayGreyscale180 - decals: - 696: -20,-60 - 697: -19,-60 - 698: -18,-60 - - node: - color: '#D4D4D47C' - id: HalfTileOverlayGreyscale180 - decals: - 3478: 5,-60 - 3479: 6,-60 - - node: - color: '#EFB34160' - id: HalfTileOverlayGreyscale180 - decals: - 3114: -22,6 - 3115: -23,6 - 3116: -20,6 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 1024: 62,-45 - - node: - color: '#EFB34163' - id: HalfTileOverlayGreyscale180 - decals: - 3071: -19,6 - 3072: -18,6 - 3073: -17,6 - - node: - color: '#D4D4D496' - id: HalfTileOverlayGreyscale180 - decals: - 9: -7,-67 - 12: -8,-67 - 13: -8,-67 - 14: -9,-67 - - node: - color: '#EFB3415A' - id: HalfTileOverlayGreyscale180 - decals: - 287: -16,6 - 2408: -21,6 - 2409: -24,6 - - node: - color: '#6C896FAB' - id: HalfTileOverlayGreyscale180 - decals: - 36: -10,7 - 37: -8,7 - 38: -6,7 - - node: - color: '#EFB34160' - id: HalfTileOverlayGreyscale270 - decals: - 3122: -15,-4 - - node: - color: '#EFB3415A' - id: HalfTileOverlayGreyscale270 - decals: - 274: -15,-1 - 275: -15,-2 - 276: -15,-3 - 277: -15,0 - 278: -15,1 - 279: -15,2 - 280: -15,3 - 281: -15,4 - - node: - color: '#EFB34153' - id: HalfTileOverlayGreyscale270 - decals: - 3143: -15,5 - - node: - color: '#D4D4D496' - id: HalfTileOverlayGreyscale270 - decals: - 10: -10,-66 - 11: -10,-65 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 1031: 64,-47 - - node: - color: '#221F2E28' - id: HalfTileOverlayGreyscale270 - decals: - 15: 0,2 - - node: - color: '#D4D4D496' - id: HalfTileOverlayGreyscale90 - decals: - 7: -6,-65 - 8: -6,-66 - - node: - color: '#EFB3415A' - id: HalfTileOverlayGreyscale90 - decals: - 282: -25,3 - 283: -25,2 - 284: -25,1 - 285: -25,-3 - 286: -25,-4 - 2407: -25,-2 - - node: - color: '#EFB34160' - id: HalfTileOverlayGreyscale90 - decals: - 3118: -25,5 - 3119: -25,4 - 3120: -25,0 - 3121: -25,-1 - - node: - color: '#FFFFFF79' - id: HalfTileOverlayGreyscale90 - decals: - 694: -21,-61 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 28: 40,-26 - 29: 40,-27 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 1030: 60,-47 - - node: - color: '#FFFFFFFF' - id: HatchSmall - decals: - 3278: 51,-56 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 610: -13,70 - 611: -14,70 - 612: -22,70 - 613: -23,70 - - node: - color: '#EFB34196' - id: MiniTileCheckerAOverlay - decals: - 3377: -38,-9 - 3378: -37,-9 - 3379: -37,-10 - 3380: -38,-10 - 3381: -38,-11 - 3382: -37,-11 - 3383: -38,-12 - 3384: -37,-12 - 3385: -38,-8 - 3386: -37,-8 - 3387: -38,-7 - 3388: -37,-7 - - node: - color: '#D4D4D4C7' - id: MiniTileSteelBox - decals: - 3130: -20,-6 - 3131: -16,-6 - 3132: -20,7 - - node: - color: '#D4D4D4D3' - id: MiniTileSteelBox - decals: - 2370: -24,7 - 2371: -26,3 - 2372: -26,-2 - 2373: -24,-6 - 2374: -14,-2 - 2375: -14,3 - 2376: -16,7 - 2381: 6,-27 - 2382: 3,-27 - 2383: 4,-43 - 2384: 0,-43 - 2385: -10,-43 - 2386: -14,-43 - 2387: -5,-27 - - node: - color: '#D4D4D4CD' - id: MiniTileSteelCornerNe - decals: - 3336: 18,7 - - node: - color: '#D4D4D4D3' - id: MiniTileSteelCornerNe - decals: - 1110: 36,-17 - 1111: 37,-18 - 1167: 39,-42 - 1171: 36,-40 - 1188: 20,-40 - 1207: 34,-59 - 1217: 26,-46 - 1260: 41,-59 - 1299: 4,-41 - 1301: 6,-42 - 1328: -19,-41 - 1334: -18,-42 - 1342: -15,-26 - 1378: -4,-24 - 1397: -3,-32 - 1415: -2,-26 - 1449: -19,-9 - 1504: -13,8 - 1505: -19,13 - 1510: -19,31 - 1548: -29,1 - 1581: -46,1 - 1587: -45,8 - 1641: -15,47 - 1652: -17,51 - 1671: -22,67 - 1698: -4,-4 - 1758: 1,52 - 1788: 1,59 - 1820: -13,67 - 1887: 30,8 - 1922: 34,8 - 1966: 30,-5 - 2011: 54,2 - 2070: 65,-6 - 2077: 53,-5 - 2109: 16,-21 - 2167: 9,-26 - 2168: 36,-21 - 2217: -3,-41 - 2222: -4,-26 - 2295: 14,1 - 2296: 4,1 - 2297: -3,1 - - node: - color: '#DE3A3A96' - id: MiniTileSteelCornerNe - decals: - 2862: 18,23 - - node: - color: '#D4D4D4AE' - id: MiniTileSteelCornerNw - decals: - 3339: 33,-40 - - node: - color: '#88EFB1D9' - id: MiniTileSteelCornerNw - decals: - 3151: -28,-78 - - node: - color: '#D4D4D4B4' - id: MiniTileSteelCornerNw - decals: - 3475: -7,-41 - - node: - color: '#DE3A3A96' - id: MiniTileSteelCornerNw - decals: - 2863: 14,23 - - node: - color: '#D4D4D4D3' - id: MiniTileSteelCornerNw - decals: - 1109: 14,-17 - 1187: 14,-40 - 1190: 8,-42 - 1210: 24,-56 - 1211: 24,-46 - 1263: 36,-59 - 1300: 1,-41 - 1315: -16,-42 - 1329: -21,-41 - 1343: -21,-26 - 1379: -6,-24 - 1418: -13,-26 - 1448: -21,-9 - 1493: -27,8 - 1503: -17,8 - 1506: -21,13 - 1509: -21,31 - 1546: -44,1 - 1580: -48,1 - 1590: -50,8 - 1642: -19,47 - 1670: -23,67 - 1697: -6,-4 - 1759: -1,52 - 1777: -13,46 - 1800: -11,59 - 1818: -15,51 - 1819: -14,67 - 1878: 16,-6 - 1889: 20,8 - 1923: 32,8 - 1968: 20,-5 - 1993: 36,2 - 2075: 51,-5 - 2076: 49,-8 - 2107: 11,-26 - 2108: 14,-21 - 2166: 0,-26 - 2169: 34,-21 - 2221: -6,-26 - 2294: 13,1 - 2298: -1,1 - 2299: -11,1 - - node: - color: '#D4D4D4CD' - id: MiniTileSteelCornerNw - decals: - 3337: 16,7 - - node: - color: '#D4D4D4D3' - id: MiniTileSteelCornerSe - decals: - 1108: 37,-19 - 1165: 39,-44 - 1212: 34,-61 - 1213: 32,-63 - 1214: 31,-64 - 1258: 41,-61 - 1259: 40,-69 - 1302: 6,-44 - 1325: -18,-44 - 1340: -15,-28 - 1341: -19,-39 - 1398: -3,-36 - 1404: -4,-39 - 1414: -2,-28 - 1435: -19,-24 - 1450: -13,-7 - 1451: -23,-7 - 1544: -19,15 - 1547: -29,-1 - 1583: -46,-1 - 1588: -45,3 - 1640: -15,29 - 1650: -17,49 - 1699: -4,-22 - 1750: 1,44 - 1782: 1,54 - 1816: -13,50 - 1854: 18,-7 - 1888: 30,6 - 1905: 34,-7 - 1946: 26,-15 - 1967: 30,-7 - 2015: 54,-2 - 2016: 53,-3 - 2069: 65,-14 - 2071: 59,-15 - 2113: 16,-38 - 2165: 9,-28 - 2176: 36,-38 - 2219: -3,-44 - 2220: -4,-28 - 2290: 4,0 - 2291: -3,0 - 2292: 14,0 - - node: - color: '#DE3A3A96' - id: MiniTileSteelCornerSe - decals: - 2854: 18,19 - - node: - color: '#88EFB1D9' - id: MiniTileSteelCornerSw - decals: - 3152: -28,-81 - - node: - color: '#D4D4D4C3' - id: MiniTileSteelCornerSw - decals: - 3505: -27,-7 - - node: - color: '#DE3A3A96' - id: MiniTileSteelCornerSw - decals: - 2855: 14,19 - - node: - color: '#D4D4D4D3' - id: MiniTileSteelCornerSw - decals: - 1131: 14,-19 - 1189: 8,-44 - 1208: 25,-61 - 1209: 24,-57 - 1215: 30,-64 - 1216: 29,-63 - 1218: 24,-54 - 1261: 38,-69 - 1262: 36,-61 - 1316: -16,-44 - 1326: -21,-44 - 1344: -21,-39 - 1405: -6,-39 - 1417: -13,-28 - 1436: -21,-24 - 1481: -21,-7 - 1543: -21,15 - 1545: -44,-1 - 1585: -48,-1 - 1589: -50,3 - 1639: -17,29 - 1643: -19,40 - 1649: -19,49 - 1694: -23,50 - 1700: -6,-22 - 1778: -13,44 - 1783: -1,54 - 1801: -11,58 - 1817: -15,50 - 1879: 16,-7 - 1880: 16,-4 - 1890: 20,6 - 1906: 32,-7 - 1945: 24,-15 - 1969: 20,-7 - 2017: 50,-2 - 2018: 51,-3 - 2021: 36,0 - 2072: 54,-15 - 2073: 49,-10 - 2074: 51,-14 - 2110: 11,-28 - 2111: 14,-38 - 2164: 0,-28 - 2177: 34,-38 - 2218: -7,-44 - 2223: -6,-28 - 2293: 13,0 - 2300: -11,0 - 2301: -1,0 - - node: - color: '#D4D4D4FF' - id: MiniTileSteelInnerNe - decals: - 3418: -39,-13 - - node: - color: '#D4D4D4D3' - id: MiniTileSteelInnerNe - decals: - 1132: 36,-18 - 1204: 20,-42 - 1254: 26,-59 - 1304: 4,-42 - 1307: 36,-42 - 1333: -19,-42 - 1403: -4,-32 - 1695: -22,51 - 2100: 53,-6 - 2101: 52,-11 - 2207: 36,-26 - - node: - color: '#D4D4D4D6' - id: MiniTileSteelInnerNe - decals: - 3145: -25.018312,-5.498596 - 3146: -25.283937,-5.498596 - 3147: -25.502687,-5.498596 - - node: - color: '#D4D4D4C7' - id: MiniTileSteelInnerNe - decals: - 3136: -19,7 - - node: - color: '#D4D4D4FF' - id: MiniTileSteelInnerNw - decals: - 3416: -36,-13 - - node: - color: '#D4D4D4AE' - id: MiniTileSteelInnerNw - decals: - 3344: 33,-42 - - node: - color: '#D4D4D4C7' - id: MiniTileSteelInnerNw - decals: - 3137: -17,7 - - node: - color: '#D4D4D4C0' - id: MiniTileSteelInnerNw - decals: - 3108: -14.760899,-5.480981 - 3109: -15.010899,-5.480981 - 3110: -14.526524,-5.480981 - - node: - color: '#D4D4D4D3' - id: MiniTileSteelInnerNw - decals: - 1255: 25,-56 - 1305: 1,-42 - 1306: 14,-42 - 1507: -21,8 - 1780: -1,46 - 1852: -14,51 - 1883: 17,-6 - 2098: 62,-11 - 2099: 51,-8 - 2137: 14,-26 - - node: - color: '#D4D4D4C0' - id: MiniTileSteelInnerSe - decals: - 3111: -25.008694,6.5088334 - 3112: -25.274319,6.5088334 - 3113: -25.508694,6.5088334 - - node: - color: '#D4D4D4C7' - id: MiniTileSteelInnerSe - decals: - 3135: -23,-6 - - node: - color: '#D4D4D4FF' - id: MiniTileSteelInnerSe - decals: - 3417: -39,-6 - - node: - color: '#D4D4D4D3' - id: MiniTileSteelInnerSe - decals: - 1250: 32,-61 - 1253: 31,-63 - 1287: 40,-61 - 1372: -19,-28 - 1402: -4,-36 - 1978: 26,-7 - 2024: 53,-2 - 2096: 52,-7 - 2097: 59,-14 - 2206: 36,-27 - - node: - color: '#D4D4D4FF' - id: MiniTileSteelInnerSw - decals: - 3415: -36,-6 - - node: - color: '#D4D4D4C7' - id: MiniTileSteelInnerSw - decals: - 3134: -21,-6 - 3139: -14.7582035,6.5086117 - 3140: -14.5238285,6.5086117 - 3141: -15.0082035,6.5086117 - - node: - color: '#D4D4D4D3' - id: MiniTileSteelInnerSw - decals: - 1251: 29,-61 - 1252: 30,-63 - 1256: 25,-57 - 1257: 25,-54 - 1286: 38,-61 - 1645: -17,40 - 1696: -19,50 - 1814: -1,58 - 1882: 17,-4 - 1977: 24,-7 - 2022: 50,0 - 2023: 51,-2 - 2094: 54,-14 - 2095: 62,-7 - 2102: 51,-10 - 2140: 14,-28 - - node: - color: '#D4D4D4FF' - id: MiniTileSteelLineE - decals: - 3401: -39,-7 - 3402: -39,-8 - 3403: -39,-9 - 3404: -39,-10 - 3405: -39,-11 - 3406: -39,-12 - - node: - color: '#D4D4D496' - id: MiniTileSteelLineE - decals: - 3236: -19,-23 - - node: - color: '#DE3A3A96' - id: MiniTileSteelLineE - decals: - 2864: 18,22 - 2865: 18,21 - 2866: 18,20 - - node: - color: '#D4D4D4D3' - id: MiniTileSteelLineE - decals: - 1166: 39,-43 - 1170: 36,-41 - 1176: 20,-41 - 1224: 26,-47 - 1225: 26,-48 - 1226: 26,-49 - 1227: 26,-50 - 1228: 26,-51 - 1229: 26,-52 - 1230: 26,-53 - 1231: 26,-54 - 1232: 26,-55 - 1233: 26,-56 - 1234: 26,-57 - 1235: 26,-58 - 1236: 34,-60 - 1249: 32,-62 - 1270: 41,-60 - 1271: 40,-63 - 1272: 40,-62 - 1273: 40,-64 - 1274: 40,-65 - 1275: 40,-66 - 1276: 40,-67 - 1277: 40,-68 - 1291: 6,-43 - 1327: -18,-43 - 1349: -19,-29 - 1350: -19,-30 - 1351: -19,-31 - 1352: -19,-32 - 1353: -19,-33 - 1354: -19,-34 - 1355: -19,-35 - 1356: -19,-36 - 1357: -19,-37 - 1358: -19,-38 - 1371: -15,-27 - 1380: -4,-25 - 1381: -2,-27 - 1382: -4,-29 - 1383: -4,-30 - 1384: -4,-31 - 1385: -4,-37 - 1386: -4,-38 - 1399: -3,-35 - 1400: -3,-34 - 1401: -3,-33 - 1422: -19,-10 - 1423: -19,-11 - 1424: -19,-12 - 1425: -19,-13 - 1426: -19,-14 - 1427: -19,-15 - 1428: -19,-17 - 1429: -19,-16 - 1430: -19,-18 - 1431: -19,-19 - 1432: -19,-20 - 1433: -19,-21 - 1434: -19,-22 - 1465: -13,7 - 1466: -13,6 - 1467: -13,4 - 1468: -13,5 - 1469: -13,3 - 1470: -13,2 - 1471: -13,1 - 1472: -13,0 - 1473: -13,-1 - 1474: -13,-2 - 1475: -13,-3 - 1476: -13,-4 - 1477: -13,-5 - 1478: -13,-6 - 1498: -19,12 - 1499: -19,11 - 1500: -19,10 - 1501: -19,9 - 1502: -19,8 - 1512: -19,30 - 1513: -19,29 - 1514: -19,28 - 1515: -19,27 - 1516: -19,26 - 1517: -19,25 - 1518: -19,24 - 1519: -19,23 - 1520: -19,22 - 1521: -19,21 - 1522: -19,20 - 1523: -19,19 - 1524: -19,18 - 1525: -19,17 - 1526: -19,16 - 1549: -29,0 - 1586: -46,0 - 1599: -45,7 - 1600: -45,6 - 1601: -45,5 - 1602: -45,4 - 1622: -15,46 - 1623: -15,45 - 1624: -15,44 - 1625: -15,43 - 1626: -15,42 - 1627: -15,41 - 1628: -15,40 - 1629: -15,39 - 1630: -15,38 - 1631: -15,37 - 1632: -15,36 - 1633: -15,35 - 1634: -15,34 - 1635: -15,33 - 1636: -15,32 - 1637: -15,31 - 1638: -15,30 - 1653: -17,50 - 1672: -22,66 - 1673: -22,65 - 1674: -22,64 - 1675: -22,63 - 1676: -22,62 - 1677: -22,61 - 1678: -22,60 - 1679: -22,58 - 1680: -22,59 - 1681: -22,57 - 1682: -22,56 - 1683: -22,55 - 1684: -22,54 - 1685: -22,53 - 1686: -22,52 - 1702: -4,-21 - 1703: -4,-20 - 1704: -4,-19 - 1705: -4,-18 - 1706: -4,-17 - 1707: -4,-16 - 1708: -4,-15 - 1709: -4,-14 - 1710: -4,-13 - 1711: -4,-12 - 1712: -4,-11 - 1713: -4,-10 - 1714: -4,-9 - 1715: -4,-8 - 1716: -4,-7 - 1717: -4,-6 - 1718: -4,-5 - 1751: 1,45 - 1752: 1,46 - 1753: 1,47 - 1754: 1,48 - 1755: 1,49 - 1756: 1,50 - 1757: 1,51 - 1784: 1,55 - 1785: 1,56 - 1786: 1,57 - 1787: 1,58 - 1821: -13,66 - 1822: -13,65 - 1823: -13,64 - 1824: -13,63 - 1825: -13,62 - 1826: -13,61 - 1827: -13,60 - 1828: -13,59 - 1829: -13,58 - 1830: -13,57 - 1831: -13,55 - 1832: -13,56 - 1833: -13,54 - 1834: -13,53 - 1835: -13,52 - 1836: -13,51 - 1855: 18,-6 - 1856: 18,-5 - 1857: 18,-3 - 1858: 18,-4 - 1859: 18,-1 - 1860: 18,-2 - 1861: 18,0 - 1862: 18,1 - 1863: 18,2 - 1864: 18,4 - 1865: 18,5 - 1866: 18,3 - 1867: 18,6 - 1891: 30,7 - 1908: 34,-6 - 1909: 34,-5 - 1910: 34,-4 - 1911: 34,-3 - 1912: 34,-2 - 1913: 34,-1 - 1914: 34,0 - 1915: 34,1 - 1916: 34,2 - 1917: 34,3 - 1918: 34,4 - 1919: 34,5 - 1920: 34,6 - 1921: 34,7 - 1948: 26,-14 - 1949: 26,-13 - 1950: 26,-12 - 1951: 26,-11 - 1952: 26,-10 - 1953: 26,-9 - 1954: 26,-8 - 1955: 30,-6 - 2012: 54,1 - 2013: 54,0 - 2014: 54,-1 - 2059: 52,-8 - 2060: 52,-9 - 2061: 52,-10 - 2062: 65,-8 - 2063: 65,-9 - 2064: 65,-10 - 2065: 65,-11 - 2066: 65,-12 - 2067: 65,-13 - 2068: 65,-7 - 2114: 16,-37 - 2115: 16,-36 - 2116: 16,-35 - 2117: 16,-34 - 2118: 16,-32 - 2119: 16,-33 - 2120: 16,-31 - 2121: 16,-30 - 2122: 16,-29 - 2123: 16,-28 - 2124: 16,-27 - 2125: 16,-24 - 2126: 16,-23 - 2127: 16,-22 - 2162: 9,-27 - 2178: 36,-37 - 2179: 36,-35 - 2180: 36,-36 - 2181: 36,-34 - 2182: 36,-33 - 2183: 36,-32 - 2184: 36,-31 - 2185: 36,-29 - 2186: 36,-28 - 2187: 36,-30 - 2188: 36,-25 - 2189: 36,-24 - 2190: 36,-23 - 2191: 36,-22 - 2208: -3,-42 - 2209: -3,-43 - 2225: -4,-27 - - node: - color: '#D4D4D4C0' - id: MiniTileSteelLineE - decals: - 3097: -25.510418,5.5102654 - 3098: -25.510418,4.5102654 - 3099: -25.510418,3.5239472 - 3100: -25.510418,2.5239472 - 3101: -25.510418,1.5420241 - 3102: -25.510418,0.5198039 - 3103: -25.510418,-0.4823848 - 3104: -25.510418,-1.4980098 - 3105: -25.510418,-2.4674516 - 3106: -25.510418,-3.5051284 - 3107: -25.510418,-4.481826 - - node: - color: '#D4D4D4D3' - id: MiniTileSteelLineN - decals: - 1112: 35,-17 - 1113: 34,-17 - 1114: 33,-17 - 1115: 31,-17 - 1116: 30,-17 - 1117: 29,-17 - 1118: 28,-17 - 1119: 27,-17 - 1120: 26,-17 - 1121: 24,-17 - 1122: 23,-17 - 1123: 21,-17 - 1124: 22,-17 - 1125: 19,-17 - 1126: 18,-17 - 1127: 17,-17 - 1128: 16,-17 - 1129: 15,-17 - 1139: 25,-17 - 1140: 27,-42 - 1141: 26,-42 - 1142: 25,-42 - 1143: 24,-42 - 1144: 23,-42 - 1145: 22,-42 - 1146: 21,-42 - 1147: 28,-42 - 1148: 29,-42 - 1168: 38,-42 - 1169: 37,-42 - 1172: 35,-40 - 1173: 34,-40 - 1177: 19,-40 - 1178: 18,-40 - 1179: 17,-40 - 1180: 16,-40 - 1181: 15,-40 - 1182: 9,-42 - 1183: 10,-42 - 1184: 11,-42 - 1185: 13,-42 - 1186: 12,-42 - 1205: 28,-59 - 1206: 27,-59 - 1219: 25,-46 - 1264: 40,-59 - 1265: 39,-59 - 1266: 38,-59 - 1267: 37,-59 - 1288: -2,-42 - 1289: -1,-42 - 1290: 0,-42 - 1297: 2,-41 - 1298: 3,-41 - 1303: 5,-42 - 1308: -8,-42 - 1309: -10,-42 - 1310: -11,-42 - 1311: -12,-42 - 1312: -13,-42 - 1313: -14,-42 - 1314: -15,-42 - 1332: -20,-41 - 1335: -18,-26 - 1336: -19,-26 - 1337: -20,-26 - 1338: -16,-26 - 1339: -17,-26 - 1373: -5,-24 - 1374: -3,-26 - 1375: -7,-26 - 1376: -8,-26 - 1377: -11,-26 - 1421: -20,-9 - 1458: -14,8 - 1459: -15,8 - 1460: -20,13 - 1461: -22,8 - 1462: -23,8 - 1463: -25,8 - 1464: -26,8 - 1511: -20,31 - 1564: -43,1 - 1565: -42,1 - 1566: -41,1 - 1567: -39,1 - 1568: -40,1 - 1569: -38,1 - 1570: -37,1 - 1571: -36,1 - 1572: -34,1 - 1573: -33,1 - 1574: -35,1 - 1575: -32,1 - 1576: -30,1 - 1577: -31,1 - 1582: -47,1 - 1591: -46,8 - 1592: -47,8 - 1593: -48,8 - 1594: -49,8 - 1646: -16,47 - 1647: -17,47 - 1648: -18,47 - 1687: -18,51 - 1688: -19,51 - 1689: -20,51 - 1690: -21,51 - 1719: -5,-4 - 1760: 0,52 - 1766: -2,46 - 1767: -3,46 - 1768: -4,46 - 1769: -5,46 - 1770: -6,46 - 1771: -7,46 - 1772: -8,46 - 1773: -9,46 - 1774: -10,46 - 1775: -11,46 - 1776: -12,46 - 1789: 0,59 - 1790: -1,59 - 1791: -2,59 - 1792: -3,59 - 1793: -4,59 - 1794: -5,59 - 1795: -6,59 - 1796: -7,59 - 1797: -8,59 - 1798: -9,59 - 1799: -10,59 - 1884: 27,8 - 1885: 28,8 - 1886: 29,8 - 1902: 21,8 - 1903: 22,8 - 1904: 23,8 - 1924: 33,8 - 1957: 29,-5 - 1958: 28,-5 - 1959: 27,-5 - 1960: 26,-5 - 1961: 25,-5 - 1962: 24,-5 - 1963: 23,-5 - 1964: 22,-5 - 1965: 21,-5 - 1994: 53,2 - 1995: 52,2 - 1996: 50,2 - 1997: 51,2 - 1998: 49,2 - 1999: 48,2 - 2000: 47,2 - 2001: 46,2 - 2002: 45,2 - 2003: 44,2 - 2004: 43,2 - 2005: 41,2 - 2006: 42,2 - 2007: 40,2 - 2008: 39,2 - 2009: 38,2 - 2010: 37,2 - 2025: 64,-6 - 2026: 63,-6 - 2027: 62,-6 - 2028: 60,-6 - 2029: 59,-6 - 2030: 61,-6 - 2031: 58,-6 - 2032: 57,-6 - 2033: 56,-6 - 2034: 55,-6 - 2035: 54,-6 - 2036: 52,-5 - 2037: 50,-8 - 2083: 61,-11 - 2084: 60,-11 - 2085: 59,-11 - 2086: 58,-11 - 2087: 57,-11 - 2088: 56,-11 - 2089: 55,-11 - 2090: 54,-11 - 2091: 53,-11 - 2104: 15,-21 - 2105: 13,-26 - 2106: 12,-26 - 2154: 8,-26 - 2155: 7,-26 - 2156: 6,-26 - 2157: 5,-26 - 2158: 4,-26 - 2159: 3,-26 - 2160: 2,-26 - 2161: 1,-26 - 2170: 35,-21 - 2171: 37,-26 - 2172: 38,-26 - 2210: -5,-41 - 2211: -4,-41 - 2224: -5,-26 - 2302: 3,1 - 2303: 1,1 - 2304: 0,1 - 2305: 2,1 - 2306: -4,1 - 2307: -5,1 - 2308: -7,1 - 2309: -6,1 - 2310: -8,1 - 2311: -9,1 - 2312: -10,1 - 2379: -16,8 - 2380: -24,8 - - node: - color: '#D4D4D4C7' - id: MiniTileSteelLineN - decals: - 3133: -18,7 - - node: - color: '#D4D4D4AE' - id: MiniTileSteelLineN - decals: - 3341: 32,-42 - 3342: 31,-42 - 3343: 30,-42 - - node: - color: '#D4D4D4C0' - id: MiniTileSteelLineN - decals: - 3084: -18.018867,-5.48975 - 3085: -17.019917,-5.49304 - 3086: -19.00948,-5.49304 - 3087: -20.010675,-5.49304 - 3088: -21.010675,-5.49304 - 3089: -22.0263,-5.49304 - 3090: -23.028214,-5.497755 - 3091: -24.012589,-5.497755 - - node: - color: '#D4D4D4B4' - id: MiniTileSteelLineN - decals: - 3476: -6,-41 - - node: - color: '#D4D4D4CA' - id: MiniTileSteelLineN - decals: - 3144: -16.015686,-5.492559 - - node: - color: '#DE3A3A96' - id: MiniTileSteelLineN - decals: - 2856: 17,23 - 2857: 16,23 - 2858: 15,23 - - node: - color: '#D4D4D4CD' - id: MiniTileSteelLineN - decals: - 3338: 17,7 - - node: - color: '#D4D4D4FF' - id: MiniTileSteelLineN - decals: - 3413: -38,-13 - 3414: -37,-13 - - node: - color: '#D4D4D4D3' - id: MiniTileSteelLineS - decals: - 1085: 26,-19 - 1086: 24,-19 - 1087: 25,-19 - 1088: 23,-19 - 1089: 21,-19 - 1090: 22,-19 - 1091: 20,-19 - 1092: 19,-19 - 1093: 18,-19 - 1094: 17,-19 - 1095: 16,-19 - 1096: 15,-19 - 1097: 27,-19 - 1098: 28,-19 - 1099: 28,-19 - 1100: 29,-19 - 1101: 30,-19 - 1102: 31,-19 - 1103: 32,-19 - 1104: 33,-19 - 1105: 34,-19 - 1106: 35,-19 - 1107: 36,-19 - 1149: 25,-44 - 1150: 23,-44 - 1151: 24,-44 - 1152: 26,-44 - 1153: 27,-44 - 1154: 28,-44 - 1155: 29,-44 - 1156: 30,-44 - 1157: 31,-44 - 1158: 32,-44 - 1159: 33,-44 - 1160: 35,-44 - 1161: 34,-44 - 1162: 36,-44 - 1163: 38,-44 - 1164: 37,-44 - 1191: 9,-44 - 1192: 10,-44 - 1193: 11,-44 - 1194: 12,-44 - 1195: 13,-44 - 1196: 14,-44 - 1197: 15,-44 - 1198: 16,-44 - 1199: 18,-44 - 1200: 17,-44 - 1201: 19,-44 - 1202: 21,-44 - 1203: 22,-44 - 1220: 33,-61 - 1221: 28,-61 - 1222: 27,-61 - 1223: 26,-61 - 1268: 39,-69 - 1269: 37,-61 - 1292: 5,-44 - 1293: 4,-44 - 1294: 3,-44 - 1295: 2,-44 - 1296: 1,-44 - 1318: -15,-44 - 1319: -14,-44 - 1320: -13,-44 - 1321: -12,-44 - 1322: -11,-44 - 1323: -19,-44 - 1324: -20,-44 - 1345: -20,-39 - 1346: -16,-28 - 1347: -17,-28 - 1348: -18,-28 - 1406: -5,-39 - 1407: -7,-28 - 1408: -8,-28 - 1409: -10,-28 - 1410: -9,-28 - 1411: -11,-28 - 1412: -12,-28 - 1413: -3,-28 - 1420: -20,-24 - 1452: -22,-6 - 1453: -18,-7 - 1454: -17,-7 - 1455: -16,-7 - 1456: -15,-7 - 1457: -14,-7 - 1479: -19,-7 - 1480: -20,-7 - 1508: -24,-7 - 1542: -20,15 - 1550: -30,-1 - 1551: -31,-1 - 1552: -32,-1 - 1553: -33,-1 - 1554: -34,-1 - 1555: -35,-1 - 1556: -36,-1 - 1557: -38,-1 - 1558: -37,-1 - 1559: -39,-1 - 1560: -40,-1 - 1561: -41,-1 - 1562: -42,-1 - 1563: -43,-1 - 1579: -47,-1 - 1595: -46,3 - 1596: -47,3 - 1597: -48,3 - 1598: -49,3 - 1607: -16,29 - 1644: -18,40 - 1651: -18,49 - 1691: -20,50 - 1692: -21,50 - 1693: -22,50 - 1701: -5,-22 - 1737: -12,44 - 1738: -11,44 - 1739: -10,44 - 1740: -9,44 - 1741: -8,44 - 1742: -7,44 - 1743: -6,44 - 1744: -5,44 - 1745: -4,44 - 1746: -3,44 - 1747: -2,44 - 1748: -1,44 - 1749: 0,44 - 1781: 0,54 - 1802: -10,58 - 1803: -8,58 - 1804: -7,58 - 1805: -6,58 - 1806: -9,58 - 1807: -5,58 - 1808: -4,58 - 1809: -3,58 - 1810: -2,58 - 1815: -14,50 - 1853: 17,-7 - 1893: 21,6 - 1894: 24,6 - 1895: 23,6 - 1896: 22,6 - 1897: 25,6 - 1898: 26,6 - 1899: 27,6 - 1900: 28,6 - 1901: 29,6 - 1907: 33,-7 - 1939: 29,-7 - 1940: 27,-7 - 1941: 28,-7 - 1942: 23,-7 - 1943: 22,-7 - 1944: 21,-7 - 1947: 25,-15 - 1979: 52,-3 - 1980: 49,0 - 1981: 48,0 - 1982: 47,0 - 1983: 46,0 - 1984: 44,0 - 1985: 45,0 - 1986: 43,0 - 1987: 42,0 - 1988: 41,0 - 1989: 40,0 - 1990: 39,0 - 1991: 38,0 - 1992: 37,0 - 2038: 50,-10 - 2039: 52,-14 - 2040: 53,-14 - 2041: 55,-15 - 2042: 56,-15 - 2043: 57,-15 - 2044: 58,-15 - 2045: 60,-14 - 2046: 61,-14 - 2047: 62,-14 - 2048: 63,-14 - 2049: 64,-14 - 2050: 57,-7 - 2051: 58,-7 - 2052: 59,-7 - 2053: 60,-7 - 2054: 61,-7 - 2055: 56,-7 - 2056: 55,-7 - 2057: 54,-7 - 2058: 53,-7 - 2112: 15,-38 - 2128: 12,-28 - 2129: 13,-28 - 2146: 8,-28 - 2147: 7,-28 - 2148: 6,-28 - 2149: 5,-28 - 2150: 4,-28 - 2151: 3,-28 - 2152: 2,-28 - 2153: 1,-28 - 2173: 38,-27 - 2174: 37,-27 - 2175: 35,-38 - 2212: -4,-44 - 2213: -5,-44 - 2214: -6,-44 - 2227: -5,-28 - 2279: 3,0 - 2280: 2,0 - 2281: 1,0 - 2282: 0,0 - 2283: -4,0 - 2284: -5,0 - 2285: -6,0 - 2286: -7,0 - 2287: -8,0 - 2288: -9,0 - 2289: -10,0 - - node: - color: '#DE3A3A96' - id: MiniTileSteelLineS - decals: - 2859: 17,19 - 2860: 16,19 - 2861: 15,19 - - node: - color: '#D4D4D4C0' - id: MiniTileSteelLineS - decals: - 3092: -20.013802,6.514251 - 3093: -21.019838,6.510408 - 3094: -22.019838,6.510408 - 3095: -23.019838,6.510408 - 3096: -24.019838,6.510408 - 3499: -25,-7 - - node: - color: '#D4D4D4C3' - id: MiniTileSteelLineS - decals: - 3067: -18.011988,6.5150476 - 3068: -19.02412,6.5150476 - 3069: -16.008495,6.503191 - 3070: -17.022287,6.5092306 - 3508: -26,-7 - - node: - color: '#D4D4D4FF' - id: MiniTileSteelLineS - decals: - 3419: -38,-6 - 3420: -37,-6 - - node: - color: '#D4D4D4C3' - id: MiniTileSteelLineW - decals: - 3000: -17,38 - 3001: -17,37 - 3506: -27,-5 - 3507: -27,-6 - - node: - color: '#D4D4D4D3' - id: MiniTileSteelLineW - decals: - 1130: 14,-18 - 1174: 8,-43 - 1175: 14,-41 - 1237: 25,-60 - 1238: 25,-59 - 1239: 25,-58 - 1240: 25,-55 - 1241: 24,-53 - 1242: 24,-52 - 1243: 24,-50 - 1244: 24,-49 - 1245: 24,-51 - 1246: 24,-48 - 1247: 24,-47 - 1248: 29,-62 - 1278: 38,-68 - 1279: 38,-67 - 1280: 38,-66 - 1281: 38,-65 - 1282: 38,-64 - 1283: 38,-63 - 1284: 38,-62 - 1285: 36,-60 - 1317: -16,-43 - 1330: -21,-42 - 1331: -21,-43 - 1359: -21,-38 - 1360: -21,-37 - 1361: -21,-35 - 1362: -21,-34 - 1363: -21,-36 - 1364: -21,-33 - 1365: -21,-31 - 1366: -21,-30 - 1367: -21,-32 - 1368: -21,-28 - 1369: -21,-27 - 1370: -21,-29 - 1387: -6,-38 - 1388: -6,-37 - 1389: -6,-36 - 1390: -6,-35 - 1391: -6,-34 - 1392: -6,-33 - 1393: -6,-32 - 1394: -6,-31 - 1395: -6,-30 - 1396: -6,-29 - 1416: -6,-25 - 1419: -13,-27 - 1437: -21,-23 - 1438: -21,-22 - 1439: -21,-21 - 1440: -21,-20 - 1441: -21,-10 - 1442: -21,-11 - 1443: -21,-12 - 1444: -21,-13 - 1445: -21,-14 - 1446: -21,-15 - 1447: -21,-16 - 1482: -27,-4 - 1483: -28,-3 - 1484: -27,-3 - 1485: -27,-2 - 1486: -27,0 - 1487: -27,1 - 1488: -27,2 - 1489: -27,4 - 1490: -27,5 - 1491: -27,6 - 1492: -27,7 - 1494: -21,9 - 1495: -21,11 - 1496: -21,12 - 1497: -21,10 - 1527: -21,16 - 1528: -21,17 - 1529: -21,18 - 1530: -21,19 - 1531: -21,20 - 1532: -21,21 - 1533: -21,22 - 1534: -21,23 - 1535: -21,24 - 1536: -21,25 - 1537: -21,26 - 1538: -21,27 - 1539: -21,28 - 1540: -21,29 - 1541: -21,30 - 1578: -44,0 - 1584: -48,0 - 1603: -50,7 - 1604: -50,6 - 1605: -50,5 - 1606: -50,4 - 1608: -17,30 - 1609: -17,31 - 1610: -17,33 - 1611: -17,32 - 1612: -17,35 - 1613: -17,34 - 1614: -17,36 - 1615: -17,39 - 1616: -19,41 - 1617: -19,42 - 1618: -19,43 - 1619: -19,44 - 1620: -19,45 - 1621: -19,46 - 1654: -23,51 - 1655: -23,52 - 1656: -23,53 - 1657: -23,55 - 1658: -23,54 - 1659: -23,56 - 1660: -23,57 - 1661: -23,58 - 1662: -23,59 - 1663: -23,60 - 1664: -23,61 - 1665: -23,62 - 1666: -23,63 - 1667: -23,64 - 1668: -23,65 - 1669: -23,66 - 1720: -6,-5 - 1721: -6,-6 - 1722: -6,-7 - 1723: -6,-8 - 1724: -6,-9 - 1725: -6,-10 - 1726: -6,-11 - 1727: -6,-12 - 1728: -6,-13 - 1729: -6,-14 - 1730: -6,-15 - 1731: -6,-16 - 1732: -6,-17 - 1733: -6,-18 - 1734: -6,-19 - 1735: -6,-20 - 1736: -6,-21 - 1761: -1,51 - 1762: -1,50 - 1763: -1,48 - 1764: -1,49 - 1765: -1,47 - 1779: -13,45 - 1811: -1,57 - 1812: -1,56 - 1813: -1,55 - 1837: -14,52 - 1838: -14,54 - 1839: -14,53 - 1840: -14,55 - 1841: -14,57 - 1842: -14,56 - 1843: -14,58 - 1844: -14,59 - 1845: -14,60 - 1846: -14,62 - 1847: -14,61 - 1848: -14,63 - 1849: -14,64 - 1850: -14,65 - 1851: -14,66 - 1868: 16,6 - 1869: 16,5 - 1870: 16,4 - 1871: 16,3 - 1872: 16,2 - 1873: 16,1 - 1874: 16,0 - 1875: 16,-1 - 1876: 16,-2 - 1877: 16,-3 - 1881: 17,-5 - 1892: 20,7 - 1925: 32,7 - 1926: 32,6 - 1927: 32,4 - 1928: 32,5 - 1929: 32,3 - 1930: 32,2 - 1931: 32,1 - 1932: 32,0 - 1933: 32,-1 - 1934: 32,-2 - 1935: 32,-3 - 1936: 32,-4 - 1937: 32,-5 - 1938: 32,-6 - 1956: 20,-6 - 1970: 24,-14 - 1971: 24,-13 - 1972: 24,-11 - 1973: 24,-10 - 1974: 24,-9 - 1975: 24,-8 - 1976: 24,-12 - 2019: 50,-1 - 2020: 36,1 - 2078: 51,-13 - 2079: 51,-12 - 2080: 51,-11 - 2081: 51,-7 - 2082: 51,-6 - 2092: 62,-9 - 2093: 62,-10 - 2103: 62,-8 - 2130: 14,-29 - 2131: 14,-30 - 2132: 14,-31 - 2133: 14,-37 - 2134: 14,-24 - 2135: 14,-22 - 2136: 14,-23 - 2138: 14,-25 - 2139: 11,-27 - 2141: 14,-32 - 2142: 14,-34 - 2143: 14,-33 - 2144: 14,-35 - 2145: 14,-36 - 2163: 0,-27 - 2192: 34,-22 - 2193: 34,-23 - 2194: 34,-23 - 2195: 34,-24 - 2196: 34,-27 - 2197: 34,-28 - 2198: 34,-29 - 2199: 34,-30 - 2200: 34,-32 - 2201: 34,-33 - 2202: 34,-34 - 2203: 34,-35 - 2204: 34,-36 - 2205: 34,-37 - 2215: -7,-42 - 2216: -7,-43 - 2226: -6,-27 - 2377: -27,3 - 2378: -27,-1 - - node: - color: '#DE3A3A96' - id: MiniTileSteelLineW - decals: - 2867: 14,22 - 2868: 14,21 - 2869: 14,20 - - node: - color: '#D4D4D4C0' - id: MiniTileSteelLineW - decals: - 3074: -14.526791,4.511916 - 3075: -14.526791,3.535493 - 3076: -14.526791,2.535493 - 3077: -14.526791,1.5321715 - 3078: -14.526791,0.5164875 - 3079: -14.526791,-0.47854245 - 3080: -14.526791,-1.4661165 - 3081: -14.526791,-2.4650025 - 3082: -14.526791,-3.4650025 - 3083: -14.526791,-4.4806275 - - node: - color: '#D4D4D4AE' - id: MiniTileSteelLineW - decals: - 3340: 33,-41 - - node: - color: '#D4D4D4FF' - id: MiniTileSteelLineW - decals: - 3407: -36,-7 - 3408: -36,-8 - 3409: -36,-9 - 3410: -36,-10 - 3411: -36,-11 - 3412: -36,-12 - - node: - color: '#D4D4D4C7' - id: MiniTileSteelLineW - decals: - 3138: -14.529805,5.530867 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteBox - decals: - 717: -1,-48 - 718: -13,-48 - - node: - color: '#478C5DDC' - id: MiniTileWhiteCornerNe - decals: - 887: -18,-70 - 915: -23,-76 - 933: -20,-85 - 936: -23,-83 - - node: - color: '#A4610696' - id: MiniTileWhiteCornerNe - decals: - 2441: -31,26 - 2442: -23,25 - 2444: -28,19 - 2464: -47,22 - 2477: -47,33 - - node: - color: '#92CCA4BD' - id: MiniTileWhiteCornerNe - decals: - 3674: 17,-82 - - node: - color: '#52B4E9CD' - id: MiniTileWhiteCornerNe - decals: - 722: 0,-46 - 782: 6,-53 - 823: 6,-46 - 847: -12,-46 - 856: 0,-64 - 857: -1,-65 - - node: - color: '#787878B7' - id: MiniTileWhiteCornerNe - decals: - 3746: 31,-78 - 3787: 50,-72 - 3799: 49,-78 - - node: - color: '#D381C9C0' - id: MiniTileWhiteCornerNe - decals: - 3239: 65,-44 - 3246: 63,-43 - - node: - color: '#EFB34196' - id: MiniTileWhiteCornerNe - decals: - 2498: -23,-9 - 2502: -28,-17 - 2532: -42,-10 - 2571: -45,-6 - 2574: -32,-21 - 2599: -51,-6 - 2603: -51,-17 - 2604: -53,-13 - 2640: -54,-23 - 2667: -71,-24 - 3364: -28,-10 - 3389: -35,-6 - 3422: -42,-6 - 3510: -32,-10 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteCornerNe - decals: - 712: 4,-64 - - node: - color: '#73C2A496' - id: MiniTileWhiteCornerNe - decals: - 2689: -23,-32 - 2697: -32,-32 - 2698: -31,-33 - 2718: -36,-33 - 2727: -32,-38 - 2769: -34,-44 - - node: - color: '#D4D4D428' - id: MiniTileWhiteCornerNe - decals: - 2543: -46,-9 - - node: - color: '#60A5D9D6' - id: MiniTileWhiteCornerNe - decals: - 3600: -23,-58 - - node: - color: '#707070B7' - id: MiniTileWhiteCornerNe - decals: - 3693: 31,-72 - 3694: 28,-71 - 3695: 27,-70 - - node: - color: '#D381C996' - id: MiniTileWhiteCornerNe - decals: - 968: 46,-42 - 992: 53,-40 - 993: 51,-38 - 1005: 57,-45 - 1037: 51,-50 - 1038: 52,-51 - 1039: 53,-52 - 1067: 46,-46 - 3172: 74,-32 - 3176: 73,-38 - 3292: 73,-44 - 3301: 68,-48 - 3307: 77,-44 - 3616: 64,-32 - 3617: 65,-33 - - node: - color: '#52B4E963' - id: MiniTileWhiteCornerNe - decals: - 3319: 73,-48 - - node: - color: '#DE3A3A96' - id: MiniTileWhiteCornerNe - decals: - 2801: 26,13 - 2805: 26,18 - 2824: 18,17 - 2828: 13,17 - 2838: 8,17 - 2872: 42,16 - 2873: 30,22 - 3199: -16,-21 - 3265: 22,-46 - 3428: -15,27 - - node: - color: '#334E6DC8' - id: MiniTileWhiteCornerNe - decals: - 3032: 32,-21 - 3033: 19,-21 - - node: - color: '#D4D4D40F' - id: MiniTileWhiteCornerNe - decals: - 3253: 55,-35 - - node: - color: '#D4D4D4D3' - id: MiniTileWhiteCornerNe - decals: - 2270: 14,3 - 2313: 14,-1 - 2335: 3,-1 - 2336: 9,-1 - 2359: -3,-1 - 2360: -3,3 - - node: - color: '#EFB34196' - id: MiniTileWhiteCornerNw - decals: - 2501: -26,-9 - 2533: -43,-10 - 2572: -49,-6 - 2593: -33,-21 - 2594: -56,-7 - 2595: -55,-6 - 2641: -55,-23 - 2644: -63,-24 - 2666: -75,-24 - 3363: -30,-10 - 3390: -40,-6 - 3423: -43,-6 - 3509: -33,-10 - - node: - color: '#D381C9C0' - id: MiniTileWhiteCornerNw - decals: - 3238: 59,-44 - 3245: 61,-43 - - node: - color: '#D381C996' - id: MiniTileWhiteCornerNw - decals: - 967: 41,-42 - 997: 48,-38 - 1008: 55,-45 - 1035: 48,-50 - 1036: 45,-57 - 1069: 41,-46 - 3171: 71,-32 - 3177: 70,-33 - 3291: 67,-44 - 3300: 67,-48 - 3305: 74,-48 - 3306: 76,-44 - 3615: 60,-32 - - node: - color: '#787878B7' - id: MiniTileWhiteCornerNw - decals: - 3747: 29,-78 - 3781: 27,-81 - 3788: 47,-72 - 3798: 47,-78 - - node: - color: '#92CCA4BD' - id: MiniTileWhiteCornerNw - decals: - 3676: 13,-82 - - node: - color: '#D4D4D4D3' - id: MiniTileWhiteCornerNw - decals: - 2273: -11,3 - 2274: -1,3 - 2320: -1,-1 - 2321: -11,-1 - 2333: 11,-1 - 2334: 5,-1 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteCornerNw - decals: - 709: 2,-64 - - node: - color: '#D4D4D40F' - id: MiniTileWhiteCornerNw - decals: - 3251: 53,-35 - - node: - color: '#52B4E963' - id: MiniTileWhiteCornerNw - decals: - 3323: 69,-48 - - node: - color: '#52B4E9CD' - id: MiniTileWhiteCornerNw - decals: - 723: -10,-46 - 750: -16,-53 - 822: 2,-46 - 846: -17,-46 - 861: -4,-64 - 862: -3,-65 - - node: - color: '#334E6DC8' - id: MiniTileWhiteCornerNw - decals: - 3030: 18,-21 - 3031: 31,-21 - - node: - color: '#73C2A496' - id: MiniTileWhiteCornerNw - decals: - 2690: -26,-32 - 2699: -33,-32 - 2700: -34,-33 - 2719: -41,-33 - 2728: -33,-38 - - node: - color: '#60A5D9D6' - id: MiniTileWhiteCornerNw - decals: - 3599: -27,-58 - - node: - color: '#DE3A3A96' - id: MiniTileWhiteCornerNw - decals: - 2800: 24,13 - 2807: 20,18 - 2827: 15,17 - 2834: 10,17 - 2839: 4,17 - 2871: 28,22 - 3197: -17,-21 - 3264: 19,-46 - 3427: -17,27 - 3441: 28,16 - - node: - color: '#D4D4D428' - id: MiniTileWhiteCornerNw - decals: - 2563: -48,-9 - - node: - color: '#478C5DDC' - id: MiniTileWhiteCornerNw - decals: - 897: -26,-70 - 916: -26,-76 - 934: -27,-85 - 935: -24,-83 - - node: - color: '#A4610696' - id: MiniTileWhiteCornerNw - decals: - 2440: -35,26 - 2443: -26,25 - 2463: -49,22 - 2476: -49,33 - - node: - color: '#707070B7' - id: MiniTileWhiteCornerNw - decals: - 3697: 22,-72 - 3698: 23,-71 - 3699: 24,-70 - - node: - color: '#D4D4D40F' - id: MiniTileWhiteCornerSe - decals: - 3252: 55,-37 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteCornerSe - decals: - 711: 4,-66 - - node: - color: '#DE3A3A96' - id: MiniTileWhiteCornerSe - decals: - 2802: 26,9 - 2806: 26,16 - 2825: 18,16 - 2829: 13,16 - 2844: 8,12 - 2870: 42,4 - 3200: -16,-24 - 3266: 22,-48 - 3430: -15,23 - 3442: 42,14 - - node: - color: '#D381C996' - id: MiniTileWhiteCornerSe - decals: - 963: 46,-44 - 994: 53,-46 - 995: 51,-48 - 1006: 57,-46 - 1015: 65,-50 - 1032: 51,-59 - 1033: 52,-56 - 1034: 53,-54 - 1065: 46,-50 - 3174: 73,-34 - 3175: 73,-39 - 3290: 73,-45 - 3299: 68,-50 - 3308: 77,-48 - 3309: 76,-50 - 3618: 65,-36 - 3619: 64,-37 - - node: - color: '#92CCA4BD' - id: MiniTileWhiteCornerSe - decals: - 3673: 17,-86 - - node: - color: '#A4610696' - id: MiniTileWhiteCornerSe - decals: - 2445: -28,17 - 2465: -47,20 - 2474: -47,31 - - node: - color: '#D4D4D428' - id: MiniTileWhiteCornerSe - decals: - 2544: -46,-18 - - node: - color: '#334E6DC8' - id: MiniTileWhiteCornerSe - decals: - 3036: 32,-23 - 3037: 30,-26 - - node: - color: '#52B4E963' - id: MiniTileWhiteCornerSe - decals: - 3325: 73,-50 - - node: - color: '#73C2A496' - id: MiniTileWhiteCornerSe - decals: - 2683: -23,-37 - 2703: -31,-36 - 2713: -36,-37 - 2729: -32,-42 - 2770: -34,-57 - 2771: -35,-58 - - node: - color: '#D4D4D4D3' - id: MiniTileWhiteCornerSe - decals: - 2271: 14,-2 - 2276: -3,-2 - 2322: -3,2 - 2323: 14,2 - 2325: 3,2 - 2328: 9,2 - - node: - color: '#787878B7' - id: MiniTileWhiteCornerSe - decals: - 3770: 31,-93 - 3784: 49,-76 - 3785: 50,-74 - 3800: 49,-93 - - node: - color: '#787878AB' - id: MiniTileWhiteCornerSe - decals: - 3736: 31,-76 - - node: - color: '#60A5D9D6' - id: MiniTileWhiteCornerSe - decals: - 3603: -23,-63 - - node: - color: '#478C5DDC' - id: MiniTileWhiteCornerSe - decals: - 888: -18,-74 - 914: -23,-81 - 949: -20,-88 - - node: - color: '#52B4E9CD' - id: MiniTileWhiteCornerSe - decals: - 719: 0,-50 - 740: -8,-50 - 749: 6,-55 - 821: 6,-51 - 836: -12,-51 - 859: -1,-67 - 860: 0,-68 - - node: - color: '#EFB34196' - id: MiniTileWhiteCornerSe - decals: - 2496: -28,-15 - 2522: -35,-14 - 2535: -42,-14 - 2570: -45,-7 - 2575: -32,-30 - 2600: -51,-7 - 2631: -51,-21 - 2642: -54,-26 - 2665: -71,-27 - 3359: -32,-19 - 3360: -24,-18 - 3361: -23,-16 - 3367: -28,-18 - 3421: -42,-8 - - node: - color: '#52B4E9CD' - id: MiniTileWhiteCornerSw - decals: - 721: -2,-50 - 739: -10,-50 - 751: -16,-55 - 820: 2,-51 - 837: -17,-51 - 858: -3,-67 - 875: -4,-68 - - node: - color: '#787878B7' - id: MiniTileWhiteCornerSw - decals: - 3771: 29,-93 - 3780: 27,-87 - 3786: 47,-76 - 3801: 47,-93 - - node: - color: '#92CCA4BD' - id: MiniTileWhiteCornerSw - decals: - 3675: 13,-86 - - node: - color: '#52B4E963' - id: MiniTileWhiteCornerSw - decals: - 3324: 69,-50 - - node: - color: '#D4D4D40F' - id: MiniTileWhiteCornerSw - decals: - 3250: 53,-37 - - node: - color: '#D381C996' - id: MiniTileWhiteCornerSw - decals: - 964: 41,-44 - 996: 48,-48 - 1007: 55,-46 - 1014: 59,-50 - 1066: 42,-50 - 1068: 41,-48 - 3281: 67,-45 - 3282: 67,-50 - 3283: 74,-50 - 3623: 60,-37 - - node: - color: '#D381C9AB' - id: MiniTileWhiteCornerSw - decals: - 3260: 70,-39 - - node: - color: '#707070B7' - id: MiniTileWhiteCornerSw - decals: - 3696: 22,-74 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteCornerSw - decals: - 710: 2,-66 - - node: - color: '#334E6DC8' - id: MiniTileWhiteCornerSw - decals: - 3034: 20,-26 - 3035: 18,-23 - - node: - color: '#EFB34196' - id: MiniTileWhiteCornerSw - decals: - 2497: -30,-15 - 2503: -33,-19 - 2523: -40,-14 - 2534: -43,-14 - 2573: -49,-7 - 2592: -33,-30 - 2601: -56,-19 - 2602: -55,-21 - 2643: -63,-26 - 2668: -75,-27 - 3362: -26,-18 - 3424: -43,-8 - - node: - color: '#73C2A496' - id: MiniTileWhiteCornerSw - decals: - 2684: -26,-37 - 2704: -34,-36 - 2714: -41,-37 - 2730: -33,-42 - - node: - color: '#DE3A3A96' - id: MiniTileWhiteCornerSw - decals: - 2803: 24,9 - 2804: 20,16 - 2826: 15,16 - 2835: 10,16 - 2842: 4,12 - 2895: 40,4 - 2924: 28,14 - 3198: -17,-24 - 3263: 19,-48 - 3429: -17,23 - - node: - color: '#787878AB' - id: MiniTileWhiteCornerSw - decals: - 3737: 24,-75 - 3738: 29,-76 - - node: - color: '#60A5D9D6' - id: MiniTileWhiteCornerSw - decals: - 3604: -26,-63 - 3612: -27,-62 - - node: - color: '#478C5DDC' - id: MiniTileWhiteCornerSw - decals: - 896: -26,-74 - 932: -27,-88 - - node: - color: '#D4D4D428' - id: MiniTileWhiteCornerSw - decals: - 2545: -48,-18 - - node: - color: '#A4610696' - id: MiniTileWhiteCornerSw - decals: - 2438: -26,17 - 2439: -35,17 - 2466: -49,20 - 2475: -49,31 - - node: - color: '#D4D4D4D3' - id: MiniTileWhiteCornerSw - decals: - 2272: -11,-2 - 2275: -1,-2 - 2324: -1,2 - 2326: 5,2 - 2327: 11,2 - 2361: -11,2 - - node: - color: '#D381C996' - id: MiniTileWhiteEndE - decals: - 3173: 75,-33 - - node: - color: '#52B4E9CD' - id: MiniTileWhiteEndS - decals: - 760: -6,-56 - 761: -9,-56 - 762: -12,-56 - 763: -3,-56 - 793: 0,-56 - - node: - color: '#D381C9AB' - id: MiniTileWhiteInnerNe - decals: - 3262: 71,-38 - - node: - color: '#334E6DC8' - id: MiniTileWhiteInnerNe - decals: - 3040: 19,-22 - - node: - color: '#73C2A496' - id: MiniTileWhiteInnerNe - decals: - 2708: -32,-33 - 2773: -35,-44 - - node: - color: '#EFB34196' - id: MiniTileWhiteInnerNe - decals: - 2517: -32,-17 - 2636: -54,-13 - 2637: -53,-17 - - node: - color: '#D381C9C0' - id: MiniTileWhiteInnerNe - decals: - 3247: 63,-44 - - node: - color: '#787878AB' - id: MiniTileWhiteInnerNe - decals: - 3733: 28,-72 - - node: - color: '#707070B7' - id: MiniTileWhiteInnerNe - decals: - 3706: 27,-71 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteInnerNe - decals: - 809: -2,-55 - 810: -10,-55 - - node: - color: '#478C5DDC' - id: MiniTileWhiteInnerNe - decals: - 944: -23,-85 - - node: - color: '#A4610696' - id: MiniTileWhiteInnerNe - decals: - 2462: -31,19 - - node: - color: '#D4D4D4D3' - id: MiniTileWhiteInnerNe - decals: - 2366: 9,-2 - 2367: 3,-2 - - node: - color: '#D381C996' - id: MiniTileWhiteInnerNe - decals: - 999: 51,-40 - 1051: 52,-52 - 1061: 51,-51 - 3193: 74,-33 - 3637: 64,-33 - - node: - color: '#787878B7' - id: MiniTileWhiteInnerNw - decals: - 3782: 29,-81 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteInnerNw - decals: - 808: 0,-55 - 811: -9,-55 - 812: -8,-55 - - node: - color: '#478C5DDC' - id: MiniTileWhiteInnerNw - decals: - 925: -26,-78 - 943: -24,-85 - - node: - color: '#D4D4D4D3' - id: MiniTileWhiteInnerNw - decals: - 2368: 11,-2 - 2369: 5,-2 - - node: - color: '#707070B7' - id: MiniTileWhiteInnerNw - decals: - 3707: 23,-72 - 3708: 24,-71 - - node: - color: '#334E6DC8' - id: MiniTileWhiteInnerNw - decals: - 3041: 31,-22 - - node: - color: '#EFB34196' - id: MiniTileWhiteInnerNw - decals: - 2639: -55,-7 - 2663: -55,-24 - - node: - color: '#D381C996' - id: MiniTileWhiteInnerNw - decals: - 1058: 48,-57 - 3194: 71,-33 - 3317: 76,-48 - - node: - color: '#D381C9C0' - id: MiniTileWhiteInnerNw - decals: - 3248: 61,-44 - - node: - color: '#73C2A496' - id: MiniTileWhiteInnerNw - decals: - 2707: -33,-33 - 2775: -36,-54 - 2776: -36,-42 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteInnerSe - decals: - 804: -2,-53 - 815: -10,-53 - - node: - color: '#73C2A496' - id: MiniTileWhiteInnerSe - decals: - 2772: -35,-57 - - node: - color: '#52B4E9CD' - id: MiniTileWhiteInnerSe - decals: - 748: -8,-48 - 799: 0,-55 - 800: -3,-55 - 801: -6,-55 - 802: -9,-55 - 803: -12,-55 - - node: - color: '#EFB34196' - id: MiniTileWhiteInnerSe - decals: - 2635: -54,-7 - 3371: -32,-18 - 3376: -24,-16 - - node: - color: '#334E6DC8' - id: MiniTileWhiteInnerSe - decals: - 3038: 30,-23 - - node: - color: '#787878B7' - id: MiniTileWhiteInnerSe - decals: - 3797: 49,-74 - - node: - color: '#D4D4D4D3' - id: MiniTileWhiteInnerSe - decals: - 2364: 3,3 - 2365: 9,3 - - node: - color: '#D381C996' - id: MiniTileWhiteInnerSe - decals: - 1000: 51,-46 - 1050: 52,-54 - 1060: 51,-56 - 3191: 73,-33 - 3192: 71,-34 - 3318: 76,-48 - 3636: 64,-36 - - node: - color: '#73C2A496' - id: MiniTileWhiteInnerSw - decals: - 2774: -36,-47 - - node: - color: '#787878AB' - id: MiniTileWhiteInnerSw - decals: - 3745: 29,-75 - - node: - color: '#D381C996' - id: MiniTileWhiteInnerSw - decals: - 1079: 42,-48 - - node: - color: '#EFB34196' - id: MiniTileWhiteInnerSw - decals: - 2638: -55,-19 - - node: - color: '#787878B7' - id: MiniTileWhiteInnerSw - decals: - 3783: 29,-87 - - node: - color: '#D4D4D4D3' - id: MiniTileWhiteInnerSw - decals: - 2362: 11,3 - 2363: 5,3 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteInnerSw - decals: - 807: 0,-53 - 814: -8,-53 - - node: - color: '#60A5D9D6' - id: MiniTileWhiteInnerSw - decals: - 3613: -26,-62 - - node: - color: '#334E6DC8' - id: MiniTileWhiteInnerSw - decals: - 3039: 20,-23 - - node: - color: '#52B4E9CD' - id: MiniTileWhiteInnerSw - decals: - 794: 0,-55 - 795: -3,-55 - 796: -6,-55 - 797: -9,-55 - 798: -12,-55 - 3153: -2,-48 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineE - decals: - 707: -2,-54 - 715: 4,-65 - 3150: -10,-54 - - node: - color: '#92CCA4BD' - id: MiniTileWhiteLineE - decals: - 3677: 17,-83 - 3678: 17,-84 - 3679: 17,-85 - - node: - color: '#52B4E9CD' - id: MiniTileWhiteLineE - decals: - 733: 0,-47 - 734: 0,-48 - 735: 0,-49 - 741: -8,-49 - 783: 6,-54 - 827: 6,-47 - 828: 6,-48 - 829: 6,-49 - 830: 6,-50 - 848: -12,-47 - 849: -12,-48 - 850: -12,-49 - 851: -12,-50 - 863: 0,-65 - 864: 0,-66 - 865: 0,-67 - 866: -1,-66 - - node: - color: '#52B4E963' - id: MiniTileWhiteLineE - decals: - 3330: 73,-49 - - node: - color: '#707070B7' - id: MiniTileWhiteLineE - decals: - 3700: 31,-73 - - node: - color: '#D381C996' - id: MiniTileWhiteLineE - decals: - 966: 46,-43 - 976: 53,-45 - 977: 53,-44 - 978: 53,-43 - 979: 53,-42 - 980: 53,-41 - 981: 51,-39 - 982: 51,-47 - 1016: 65,-46 - 1017: 65,-47 - 1018: 65,-48 - 1019: 65,-49 - 1040: 51,-58 - 1041: 51,-57 - 1048: 53,-53 - 1049: 52,-55 - 1074: 46,-47 - 1075: 46,-48 - 1076: 46,-49 - 3182: 71,-37 - 3183: 71,-36 - 3184: 71,-35 - 3302: 68,-49 - 3310: 76,-49 - 3311: 77,-47 - 3312: 77,-46 - 3313: 77,-45 - 3624: 65,-34 - 3625: 65,-35 - - node: - color: '#73C2A496' - id: MiniTileWhiteLineE - decals: - 2685: -23,-36 - 2686: -23,-35 - 2687: -23,-34 - 2688: -23,-33 - 2705: -31,-34 - 2706: -31,-35 - 2715: -36,-36 - 2716: -36,-35 - 2717: -36,-34 - 2731: -32,-39 - 2732: -32,-40 - 2733: -32,-41 - 2742: -35,-41 - 2744: -35,-42 - 2745: -35,-43 - 2746: -34,-45 - 2747: -34,-46 - 2748: -34,-47 - 2749: -34,-48 - 2750: -34,-49 - 2751: -34,-50 - 2752: -34,-51 - 2753: -34,-52 - 2754: -34,-53 - 2755: -34,-54 - 2756: -34,-55 - 2757: -34,-56 - - node: - color: '#334E6DC8' - id: MiniTileWhiteLineE - decals: - 3027: 32,-22 - 3028: 30,-25 - 3029: 30,-24 - 3044: 16,-26 - 3045: 16,-25 - - node: - color: '#D381C9C0' - id: MiniTileWhiteLineE - decals: - 3240: 65,-45 - - node: - color: '#478C5DDC' - id: MiniTileWhiteLineE - decals: - 884: -18,-71 - 885: -18,-72 - 886: -18,-73 - 919: -23,-77 - 920: -23,-78 - 921: -23,-79 - 922: -23,-80 - 940: -23,-84 - 947: -20,-86 - 948: -20,-87 - - node: - color: '#D4D4D428' - id: MiniTileWhiteLineE - decals: - 2547: -46,-17 - 2548: -46,-16 - 2549: -46,-14 - 2550: -46,-15 - 2551: -46,-13 - 2552: -46,-10 - 2553: -46,-11 - 2554: -46,-12 - - node: - color: '#60A5D9D6' - id: MiniTileWhiteLineE - decals: - 3605: -23,-62 - 3606: -23,-61 - 3607: -23,-60 - 3608: -23,-59 - - node: - color: '#D4D4D40F' - id: MiniTileWhiteLineE - decals: - 3255: 55,-36 - - node: - color: '#EFB34196' - id: MiniTileWhiteLineE - decals: - 2479: -23,-14 - 2480: -23,-13 - 2481: -23,-12 - 2482: -23,-11 - 2483: -23,-10 - 2492: -28,-12 - 2493: -28,-13 - 2494: -28,-14 - 2504: -32,-16 - 2505: -32,-14 - 2506: -32,-13 - 2507: -32,-15 - 2524: -35,-13 - 2525: -35,-12 - 2526: -35,-11 - 2527: -35,-10 - 2536: -42,-11 - 2537: -42,-12 - 2538: -42,-13 - 2576: -32,-29 - 2577: -32,-28 - 2578: -32,-27 - 2579: -32,-26 - 2580: -32,-25 - 2581: -32,-23 - 2582: -32,-24 - 2583: -32,-22 - 2605: -51,-20 - 2606: -51,-19 - 2607: -51,-18 - 2608: -53,-16 - 2609: -53,-15 - 2610: -53,-14 - 2611: -54,-12 - 2612: -54,-11 - 2613: -54,-10 - 2614: -54,-9 - 2615: -54,-8 - 2661: -54,-24 - 2662: -54,-25 - 2675: -71,-25 - 2676: -71,-26 - 3354: -32,-11 - 3355: -32,-12 - 3356: -28,-11 - 3357: -23,-15 - 3358: -24,-17 - 3398: -35,-7 - 3399: -35,-8 - 3400: -35,-9 - 3425: -42,-7 - - node: - color: '#787878AB' - id: MiniTileWhiteLineE - decals: - 3734: 31,-74 - 3735: 31,-75 - - node: - color: '#DE3A3AD3' - id: MiniTileWhiteLineE - decals: - 880: -19,-76 - 881: -19,-77 - 882: -19,-79 - 883: -19,-80 - - node: - color: '#787878B7' - id: MiniTileWhiteLineE - decals: - 3751: 31,-79 - 3752: 31,-80 - 3753: 31,-81 - 3754: 31,-82 - 3755: 31,-83 - 3756: 31,-84 - 3757: 31,-85 - 3758: 31,-86 - 3759: 31,-87 - 3760: 31,-88 - 3761: 31,-89 - 3762: 31,-90 - 3763: 31,-91 - 3764: 31,-92 - 3793: 50,-73 - 3794: 49,-75 - 3802: 49,-92 - 3803: 49,-91 - 3804: 49,-90 - 3805: 49,-89 - 3806: 49,-88 - 3807: 49,-87 - 3808: 49,-86 - 3809: 49,-85 - 3810: 49,-84 - 3811: 49,-83 - 3812: 49,-82 - 3813: 49,-81 - 3814: 49,-80 - 3815: 49,-79 - - node: - color: '#DE3A3A96' - id: MiniTileWhiteLineE - decals: - 2794: 26,12 - 2795: 26,11 - 2796: 26,10 - 2813: 26,17 - 2845: 8,13 - 2846: 8,14 - 2847: 8,15 - 2848: 8,16 - 2884: 42,15 - 2885: 42,13 - 2886: 42,11 - 2887: 42,12 - 2888: 42,10 - 2889: 42,9 - 2890: 42,8 - 2891: 42,7 - 2892: 42,6 - 2893: 42,5 - 2916: 30,20 - 2917: 30,21 - 2925: 30,19 - 2926: 30,18 - 2927: 30,17 - 3201: -16,-22 - 3202: -16,-23 - 3272: 22,-47 - 3436: -15,26 - 3437: -15,25 - 3438: -15,24 - - node: - color: '#A4610696' - id: MiniTileWhiteLineE - decals: - 2418: -23,18 - 2419: -23,19 - 2420: -23,20 - 2421: -23,21 - 2422: -23,22 - 2423: -23,23 - 2424: -23,24 - 2425: -31,24 - 2426: -31,23 - 2427: -31,25 - 2428: -31,22 - 2429: -31,21 - 2430: -31,20 - 2446: -28,18 - 2468: -47,21 - 2472: -47,32 - - node: - color: '#D4D4D40F' - id: MiniTileWhiteLineN - decals: - 3254: 54,-35 - - node: - color: '#D381C9C0' - id: MiniTileWhiteLineN - decals: - 3242: 60,-44 - 3243: 64,-44 - 3244: 62,-43 - - node: - color: '#D381C996' - id: MiniTileWhiteLineN - decals: - 969: 45,-42 - 970: 44,-42 - 971: 43,-42 - 972: 42,-42 - 998: 52,-40 - 1001: 50,-38 - 1002: 49,-38 - 1004: 56,-45 - 1044: 46,-57 - 1045: 47,-57 - 1046: 49,-50 - 1047: 50,-50 - 1070: 45,-46 - 1071: 44,-46 - 1072: 42,-46 - 1073: 43,-46 - 3188: 72,-38 - 3189: 72,-32 - 3190: 73,-32 - 3293: 68,-44 - 3294: 69,-44 - 3295: 70,-44 - 3296: 71,-44 - 3297: 72,-44 - 3298: 75,-48 - 3630: 61,-32 - 3631: 62,-32 - 3632: 63,-32 - - node: - color: '#D4D4D4D3' - id: MiniTileWhiteLineN - decals: - 2249: -10,3 - 2250: -9,3 - 2251: -8,3 - 2252: -6,3 - 2253: -7,3 - 2254: -5,3 - 2255: -4,3 - 2256: 0,3 - 2257: 1,3 - 2258: 2,3 - 2259: 3,3 - 2260: 4,3 - 2261: 5,3 - 2262: 6,3 - 2263: 7,3 - 2264: 8,3 - 2265: 9,3 - 2266: 10,3 - 2267: 11,3 - 2268: 12,3 - 2269: 13,3 - 2277: 13,-1 - 2278: 12,-1 - 2314: 8,-1 - 2315: 7,-1 - 2316: 6,-1 - 2317: 2,-1 - 2318: 0,-1 - 2319: 1,-1 - 2331: 10,-2 - 2332: 4,-2 - 2352: -4,-1 - 2353: -5,-1 - 2354: -7,-1 - 2355: -6,-1 - 2356: -8,-1 - 2357: -9,-1 - 2358: -10,-1 - - node: - color: '#D4D4D428' - id: MiniTileWhiteLineN - decals: - 2542: -47,-9 - - node: - color: '#52B4E996' - id: MiniTileWhiteLineN - decals: - 3050: -9,-42 - - node: - color: '#73C2A496' - id: MiniTileWhiteLineN - decals: - 2679: -25,-32 - 2680: -24,-32 - 2720: -38,-33 - 2721: -39,-33 - 2722: -40,-33 - 2723: -37,-33 - 2737: -42,-42 - 2738: -41,-42 - 2739: -40,-42 - 2740: -39,-42 - 2741: -38,-42 - 2760: -37,-54 - 2777: -37,-42 - - node: - color: '#EFB34196' - id: MiniTileWhiteLineN - decals: - 2499: -24,-9 - 2500: -25,-9 - 2514: -29,-17 - 2515: -30,-17 - 2516: -31,-17 - 2564: -46,-6 - 2565: -47,-6 - 2566: -48,-6 - 2596: -54,-6 - 2597: -53,-6 - 2598: -52,-6 - 2632: -52,-17 - 2645: -56,-24 - 2646: -57,-24 - 2647: -58,-24 - 2648: -59,-24 - 2649: -60,-24 - 2650: -61,-24 - 2651: -62,-24 - 2669: -72,-24 - 2670: -73,-24 - 2671: -74,-24 - 3365: -29,-10 - 3391: -39,-6 - 3392: -38,-6 - 3393: -37,-6 - 3394: -36,-6 - - node: - color: '#478C5DDC' - id: MiniTileWhiteLineN - decals: - 898: -25,-70 - 899: -24,-70 - 900: -23,-70 - 901: -22,-70 - 902: -21,-70 - 903: -20,-70 - 904: -19,-70 - 917: -25,-76 - 918: -24,-76 - 923: -27,-78 - 941: -21,-85 - 942: -22,-85 - 945: -25,-85 - 946: -26,-85 - - node: - color: '#9FED5896' - id: MiniTileWhiteLineN - decals: - 956: -9,-26 - 957: -10,-26 - 958: -12,-26 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineN - decals: - 705: -9,-55 - 713: 3,-64 - 805: -1,-55 - - node: - color: '#60A5D9D6' - id: MiniTileWhiteLineN - decals: - 3594: -13,-53 - 3595: -12,-53 - 3596: -26,-58 - 3597: -25,-58 - 3598: -24,-58 - - node: - color: '#52B4E9CD' - id: MiniTileWhiteLineN - decals: - 724: -2,-46 - 725: -1,-46 - 726: -3,-46 - 727: -4,-46 - 728: -5,-46 - 729: -6,-46 - 730: -7,-46 - 731: -8,-46 - 732: -9,-46 - 764: -15,-53 - 765: -14,-53 - 766: -11,-53 - 767: -9,-53 - 768: -8,-53 - 769: -7,-53 - 770: -6,-53 - 771: -5,-53 - 772: -4,-53 - 773: -3,-53 - 774: -2,-53 - 775: -1,-53 - 776: 0,-53 - 777: 1,-53 - 778: 2,-53 - 779: 3,-53 - 780: 4,-53 - 781: 5,-53 - 816: -10,-53 - 824: 5,-46 - 825: 4,-46 - 826: 3,-46 - 842: -13,-46 - 843: -14,-46 - 844: -16,-46 - 845: -15,-46 - 876: -2,-65 - 877: -1,-64 - 878: -2,-64 - 879: -3,-64 - - node: - color: '#707070B7' - id: MiniTileWhiteLineN - decals: - 3701: 25,-70 - 3702: 26,-70 - 3704: 29,-72 - 3705: 30,-72 - - node: - color: '#DE3A3A96' - id: MiniTileWhiteLineN - decals: - 2789: 26,8 - 2790: 25,8 - 2791: 24,8 - 2793: 25,13 - 2808: 21,18 - 2809: 22,18 - 2810: 23,18 - 2811: 24,18 - 2812: 25,18 - 2822: 17,17 - 2823: 16,17 - 2830: 12,17 - 2831: 11,17 - 2836: 7,17 - 2837: 5,17 - 2874: 29,22 - 2875: 33,16 - 2876: 34,16 - 2877: 35,16 - 2878: 36,16 - 2879: 37,16 - 2880: 38,16 - 2881: 39,16 - 2882: 40,16 - 2883: 41,16 - 2928: 32,16 - 2929: 31,16 - 3047: 20,-17 - 3269: 21,-46 - 3270: 20,-46 - 3431: -16,27 - 3439: 30,16 - 3440: 29,16 - - node: - color: '#A4610696' - id: MiniTileWhiteLineN - decals: - 2431: -29,19 - 2432: -30,19 - 2433: -33,26 - 2434: -32,26 - 2435: -34,26 - 2436: -25,25 - 2437: -24,25 - 2467: -48,22 - 2478: -48,33 - - node: - color: '#787878B7' - id: MiniTileWhiteLineN - decals: - 3748: 30,-78 - 3774: 28,-81 - 3795: 48,-72 - 3796: 49,-72 - 3831: 48,-78 - - node: - color: '#52B4E963' - id: MiniTileWhiteLineN - decals: - 3320: 72,-48 - 3321: 71,-48 - 3322: 70,-48 - - node: - color: '#334E6DC8' - id: MiniTileWhiteLineN - decals: - 1080: 32,-59 - 1081: 33,-59 - 1082: 31,-59 - 1083: 30,-59 - 1084: 29,-59 - 2853: 6,17 - 3013: 30,-22 - 3014: 29,-22 - 3015: 28,-22 - 3016: 27,-22 - 3017: 26,-22 - 3018: 25,-22 - 3019: 24,-22 - 3020: 23,-22 - 3021: 22,-22 - 3022: 21,-22 - 3023: 20,-22 - 3048: 32,-17 - - node: - color: '#52B4E963' - id: MiniTileWhiteLineS - decals: - 3326: 70,-50 - 3327: 71,-50 - 3328: 72,-50 - - node: - color: '#D381C9AB' - id: MiniTileWhiteLineS - decals: - 3259: 71,-39 - - node: - color: '#60A5D9D6' - id: MiniTileWhiteLineS - decals: - 3601: -25,-63 - 3602: -24,-63 - - node: - color: '#787878B7' - id: MiniTileWhiteLineS - decals: - 3772: 30,-93 - 3773: 28,-87 - 3789: 48,-76 - 3830: 48,-93 - - node: - color: '#52B4E9AE' - id: MiniTileWhiteLineS - decals: - 950: 0,-44 - 951: -1,-44 - 952: -2,-44 - 953: -8,-44 - 954: -9,-44 - 955: -10,-44 - - node: - color: '#73C2A496' - id: MiniTileWhiteLineS - decals: - 2681: -25,-37 - 2682: -24,-37 - 2701: -33,-36 - 2702: -32,-36 - 2709: -37,-37 - 2710: -38,-37 - 2711: -39,-37 - 2712: -40,-37 - 2758: -36,-58 - 2759: -37,-58 - 2767: -37,-47 - 2768: -38,-47 - - node: - color: '#D4D4D4D3' - id: MiniTileWhiteLineS - decals: - 2228: 6,-2 - 2229: 7,-2 - 2230: 8,-2 - 2231: 9,-2 - 2232: 10,-2 - 2233: 11,-2 - 2234: 12,-2 - 2235: 13,-2 - 2236: 5,-2 - 2237: 4,-2 - 2238: 3,-2 - 2239: 2,-2 - 2240: 1,-2 - 2241: 0,-2 - 2242: -4,-2 - 2243: -5,-2 - 2244: -6,-2 - 2245: -7,-2 - 2246: -8,-2 - 2247: -9,-2 - 2248: -10,-2 - 2329: 10,3 - 2330: 4,3 - 2337: 12,2 - 2338: 13,2 - 2339: 8,2 - 2340: 7,2 - 2341: 6,2 - 2342: 2,2 - 2343: 1,2 - 2344: 0,2 - 2345: -4,2 - 2346: -5,2 - 2347: -6,2 - 2348: -7,2 - 2349: -8,2 - 2350: -9,2 - 2351: -10,2 - - node: - color: '#334E6DC8' - id: MiniTileWhiteLineS - decals: - 3002: 29,-26 - 3003: 28,-26 - 3004: 27,-26 - 3005: 26,-26 - 3006: 25,-26 - 3007: 24,-26 - 3008: 23,-26 - 3009: 22,-26 - 3010: 21,-26 - 3011: 31,-23 - 3012: 19,-23 - 3049: 20,-44 - - node: - color: '#DE3A3A96' - id: MiniTileWhiteLineS - decals: - 2792: 25,9 - 2814: 25,16 - 2815: 24,16 - 2816: 23,16 - 2817: 21,16 - 2818: 22,16 - 2820: 17,16 - 2821: 16,16 - 2832: 12,16 - 2833: 11,16 - 2840: 6,12 - 2841: 7,12 - 2843: 5,12 - 2894: 41,4 - 2905: 39,14 - 2906: 38,14 - 2907: 37,14 - 2908: 36,14 - 2909: 34,14 - 2910: 35,14 - 2911: 33,14 - 2912: 32,14 - 2913: 31,14 - 2914: 29,14 - 2915: 30,14 - 3267: 21,-48 - 3268: 20,-48 - 3432: -16,23 - 3443: 41,14 - 3444: 40,14 - - node: - color: '#787878AB' - id: MiniTileWhiteLineS - decals: - 3739: 28,-75 - 3740: 26,-75 - 3741: 27,-75 - 3742: 25,-75 - 3743: 23,-74 - 3744: 30,-76 - - node: - color: '#EFB34196' - id: MiniTileWhiteLineS - decals: - 2495: -29,-15 - 2518: -37,-14 - 2519: -38,-14 - 2520: -39,-14 - 2521: -36,-14 - 2567: -46,-7 - 2568: -48,-7 - 2569: -47,-7 - 2628: -54,-21 - 2629: -53,-21 - 2630: -52,-21 - 2633: -52,-7 - 2634: -53,-7 - 2652: -62,-26 - 2653: -61,-26 - 2654: -61,-26 - 2655: -60,-26 - 2656: -59,-26 - 2657: -58,-26 - 2658: -57,-26 - 2659: -56,-26 - 2660: -55,-26 - 2672: -72,-27 - 2673: -73,-27 - 2674: -74,-27 - 3368: -29,-18 - 3369: -30,-18 - 3370: -31,-18 - 3372: -25,-18 - - node: - color: '#D381C996' - id: MiniTileWhiteLineS - decals: - 959: 45,-44 - 960: 44,-44 - 961: 43,-44 - 962: 42,-44 - 973: 50,-48 - 974: 49,-48 - 975: 52,-46 - 1003: 56,-46 - 1009: 62,-50 - 1010: 63,-50 - 1011: 64,-50 - 1012: 61,-50 - 1013: 60,-50 - 1052: 50,-59 - 1053: 49,-59 - 1054: 48,-59 - 1055: 47,-59 - 1062: 45,-50 - 1063: 44,-50 - 1064: 43,-50 - 3185: 72,-34 - 3186: 72,-39 - 3187: 74,-33 - 3284: 75,-50 - 3285: 68,-45 - 3286: 69,-45 - 3287: 70,-45 - 3288: 71,-45 - 3289: 72,-45 - 3620: 63,-37 - 3621: 62,-37 - 3622: 61,-37 - - node: - color: '#D4D4D428' - id: MiniTileWhiteLineS - decals: - 2546: -47,-18 - - node: - color: '#52B4E9CD' - id: MiniTileWhiteLineS - decals: - 720: -1,-50 - 742: -7,-48 - 743: -6,-48 - 744: -5,-48 - 745: -4,-48 - 746: -3,-48 - 753: -15,-55 - 754: -14,-55 - 755: -13,-55 - 756: -11,-55 - 757: -10,-55 - 758: -8,-55 - 759: -7,-55 - 784: 5,-55 - 785: 4,-55 - 786: 3,-55 - 787: 2,-55 - 788: 1,-55 - 789: -1,-55 - 790: -2,-55 - 791: -4,-55 - 792: -5,-55 - 817: 4,-51 - 818: 5,-51 - 819: 3,-51 - 835: -9,-50 - 838: -13,-51 - 839: -14,-51 - 840: -16,-51 - 841: -15,-51 - 871: -2,-67 - 872: -2,-68 - 873: -1,-68 - 874: -3,-68 - - node: - color: '#A4610696' - id: MiniTileWhiteLineS - decals: - 2410: -25,17 - 2411: -24,17 - 2412: -29,17 - 2413: -30,17 - 2414: -31,17 - 2415: -34,17 - 2416: -33,17 - 2417: -32,17 - 2470: -48,20 - 2471: -48,31 - - node: - color: '#92CCA4BD' - id: MiniTileWhiteLineS - decals: - 3682: 14,-86 - 3683: 15,-86 - 3684: 16,-86 - - node: - color: '#478C5DDC' - id: MiniTileWhiteLineS - decals: - 889: -20,-74 - 890: -21,-74 - 891: -19,-74 - 892: -22,-74 - 893: -23,-74 - 894: -24,-74 - 895: -25,-74 - 910: -27,-81 - 911: -26,-81 - 912: -25,-81 - 913: -24,-81 - 926: -21,-88 - 927: -22,-88 - 928: -23,-88 - 929: -24,-88 - 930: -25,-88 - 931: -26,-88 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineS - decals: - 714: 3,-66 - 806: -1,-53 - 813: -9,-53 - - node: - color: '#D4D4D40F' - id: MiniTileWhiteLineS - decals: - 3257: 54,-37 - - node: - color: '#92CCA4BD' - id: MiniTileWhiteLineW - decals: - 3680: 13,-84 - 3681: 13,-85 - - node: - color: '#787878B7' - id: MiniTileWhiteLineW - decals: - 3749: 29,-79 - 3750: 29,-80 - 3765: 29,-92 - 3766: 29,-91 - 3767: 29,-90 - 3768: 29,-89 - 3769: 29,-88 - 3775: 27,-82 - 3776: 27,-83 - 3777: 27,-84 - 3778: 27,-85 - 3779: 27,-86 - 3790: 47,-75 - 3791: 47,-74 - 3792: 47,-73 - 3816: 47,-79 - 3817: 47,-80 - 3818: 47,-82 - 3819: 47,-81 - 3820: 47,-83 - 3821: 47,-84 - 3822: 47,-85 - 3823: 47,-86 - 3824: 47,-88 - 3825: 47,-87 - 3826: 47,-89 - 3827: 47,-90 - 3828: 47,-91 - 3829: 47,-92 - - node: - color: '#EFB34196' - id: MiniTileWhiteLineW - decals: - 2484: -26,-14 - 2485: -26,-13 - 2486: -26,-11 - 2487: -26,-12 - 2488: -26,-10 - 2489: -30,-12 - 2490: -30,-13 - 2491: -30,-14 - 2508: -33,-13 - 2509: -33,-14 - 2510: -33,-15 - 2511: -33,-17 - 2512: -33,-16 - 2513: -33,-18 - 2528: -40,-10 - 2529: -40,-11 - 2530: -40,-12 - 2531: -40,-13 - 2539: -43,-11 - 2540: -43,-12 - 2541: -43,-13 - 2584: -33,-23 - 2585: -33,-24 - 2586: -33,-22 - 2587: -33,-25 - 2588: -33,-26 - 2589: -33,-27 - 2590: -33,-28 - 2591: -33,-29 - 2616: -56,-8 - 2617: -56,-9 - 2618: -56,-10 - 2619: -56,-11 - 2620: -56,-12 - 2621: -56,-14 - 2622: -56,-13 - 2623: -56,-15 - 2624: -56,-16 - 2625: -56,-17 - 2626: -56,-18 - 2627: -55,-20 - 2664: -63,-25 - 2677: -75,-25 - 2678: -75,-26 - 3352: -33,-12 - 3353: -33,-11 - 3366: -30,-11 - 3373: -26,-17 - 3374: -26,-16 - 3375: -26,-15 - 3395: -40,-7 - 3396: -40,-8 - 3397: -40,-9 - 3426: -43,-7 - - node: - color: '#60A5D9D6' - id: MiniTileWhiteLineW - decals: - 3609: -27,-59 - 3610: -27,-60 - 3611: -27,-61 - - node: - color: '#95BCA4FF' - id: MiniTileWhiteLineW - decals: - 3718: 13,-83 - - node: - color: '#D4D4D428' - id: MiniTileWhiteLineW - decals: - 2555: -48,-10 - 2556: -48,-11 - 2557: -48,-12 - 2558: -48,-13 - 2559: -48,-14 - 2560: -48,-15 - 2561: -48,-16 - 2562: -48,-17 - - node: - color: '#707070B7' - id: MiniTileWhiteLineW - decals: - 3703: 22,-73 - - node: - color: '#73C2A496' - id: MiniTileWhiteLineW - decals: - 2691: -26,-33 - 2692: -26,-34 - 2693: -26,-35 - 2694: -26,-36 - 2695: -34,-34 - 2696: -34,-35 - 2724: -41,-34 - 2725: -41,-35 - 2726: -41,-36 - 2734: -33,-39 - 2735: -33,-40 - 2736: -33,-41 - 2743: -36,-41 - 2761: -36,-53 - 2762: -36,-51 - 2763: -36,-50 - 2764: -36,-52 - 2765: -36,-49 - 2766: -36,-48 - - node: - color: '#D381C996' - id: MiniTileWhiteLineW - decals: - 965: 41,-43 - 983: 48,-47 - 984: 48,-46 - 985: 48,-45 - 986: 48,-44 - 987: 48,-43 - 988: 48,-42 - 989: 48,-41 - 990: 48,-40 - 991: 48,-39 - 1020: 59,-46 - 1021: 59,-47 - 1022: 59,-48 - 1023: 59,-49 - 1042: 48,-51 - 1043: 45,-58 - 1059: 48,-56 - 1077: 41,-47 - 1078: 42,-49 - 3178: 70,-34 - 3179: 70,-35 - 3180: 70,-36 - 3181: 70,-37 - 3303: 67,-49 - 3304: 74,-49 - 3314: 76,-47 - 3315: 76,-46 - 3316: 76,-45 - 3626: 60,-33 - 3627: 60,-34 - 3628: 60,-35 - 3629: 60,-36 - - node: - color: '#DE3A3A96' - id: MiniTileWhiteLineW - decals: - 2797: 24,12 - 2798: 24,11 - 2799: 24,10 - 2819: 20,17 - 2849: 4,16 - 2850: 4,15 - 2851: 4,13 - 2852: 4,14 - 2896: 40,5 - 2897: 40,6 - 2898: 40,7 - 2899: 40,8 - 2900: 40,9 - 2901: 40,10 - 2902: 40,11 - 2903: 40,12 - 2904: 40,13 - 2918: 28,21 - 2919: 28,20 - 2920: 28,19 - 2921: 28,18 - 2922: 28,17 - 2923: 28,15 - 3203: -17,-22 - 3204: -17,-23 - 3271: 19,-47 - 3433: -17,24 - 3434: -17,25 - 3435: -17,26 - - node: - color: '#52B4E963' - id: MiniTileWhiteLineW - decals: - 3329: 69,-49 - - node: - color: '#A4610696' - id: MiniTileWhiteLineW - decals: - 2447: -26,18 - 2448: -26,19 - 2449: -26,20 - 2450: -26,21 - 2451: -26,22 - 2452: -26,23 - 2453: -26,24 - 2454: -35,18 - 2455: -35,19 - 2456: -35,21 - 2457: -35,22 - 2458: -35,20 - 2459: -35,23 - 2460: -35,24 - 2461: -35,25 - 2469: -49,21 - 2473: -49,32 - - node: - color: '#D4D4D40F' - id: MiniTileWhiteLineW - decals: - 3256: 53,-36 - - node: - color: '#478C5DDC' - id: MiniTileWhiteLineW - decals: - 905: -26,-71 - 906: -26,-72 - 907: -26,-73 - 908: -28,-79 - 909: -28,-80 - 924: -26,-77 - 937: -27,-86 - 938: -27,-87 - 939: -24,-84 - - node: - color: '#334E6DC8' - id: MiniTileWhiteLineW - decals: - 3024: 20,-25 - 3025: 20,-24 - 3026: 18,-22 - 3042: 34,-25 - 3043: 34,-26 - 3046: 34,-31 - - node: - color: '#52B4E9CD' - id: MiniTileWhiteLineW - decals: - 736: -10,-47 - 737: -10,-48 - 738: -10,-49 - 747: -2,-49 - 752: -16,-54 - 831: 2,-47 - 832: 2,-48 - 833: 2,-49 - 834: 2,-50 - 852: -17,-47 - 853: -17,-48 - 854: -17,-49 - 855: -17,-50 - 867: -4,-65 - 868: -4,-66 - 869: -4,-67 - 870: -3,-66 - - node: - color: '#D381C9C0' - id: MiniTileWhiteLineW - decals: - 3241: 59,-45 - - node: - color: '#D381C9AB' - id: MiniTileWhiteLineW - decals: - 3261: 70,-38 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineW - decals: - 706: -8,-54 - 708: 0,-54 - 716: 2,-65 - - node: - color: '#FFFFFFFF' - id: OriginStationSign1 - decals: - 435: 22,-18 - - node: - color: '#FFFFFFFF' - id: OriginStationSign10 - decals: - 1135: 26,-17 - - node: - color: '#FFFFFFFF' - id: OriginStationSign11 - decals: - 1137: 24,-19 - - node: - color: '#FFFFFFFF' - id: OriginStationSign12 - decals: - 1136: 25,-19 - - node: - color: '#FFFFFFFF' - id: OriginStationSign13 - decals: - 1138: 26,-19 - - node: - color: '#FFFFFFFF' - id: OriginStationSign2 - decals: - 436: 23,-18 - - node: - color: '#FFFFFFFF' - id: OriginStationSign3 - decals: - 437: 24,-18 - - node: - color: '#FFFFFFFF' - id: OriginStationSign4 - decals: - 438: 25,-18 - - node: - color: '#FFFFFFFF' - id: OriginStationSign5 - decals: - 439: 26,-18 - - node: - color: '#FFFFFFFF' - id: OriginStationSign6 - decals: - 440: 27,-18 - - node: - color: '#FFFFFFFF' - id: OriginStationSign7 - decals: - 441: 28,-18 - - node: - color: '#FFFFFFFF' - id: OriginStationSign8 - decals: - 1134: 24,-17 - - node: - color: '#FFFFFFFF' - id: OriginStationSign9 - decals: - 1133: 25,-17 - - node: - color: '#EFB34160' - id: QuarterTileOverlayGreyscale - decals: - 3123: -15,-5 - - node: - color: '#EFB34160' - id: QuarterTileOverlayGreyscale180 - decals: - 3117: -25,6 - - node: - color: '#FFFFFF79' - id: QuarterTileOverlayGreyscale180 - decals: - 695: -21,-60 - - node: - color: '#EFB34153' - id: QuarterTileOverlayGreyscale270 - decals: - 3142: -15,6 - - node: - color: '#FFFFFF79' - id: QuarterTileOverlayGreyscale90 - decals: - 693: -21,-62 - - node: - color: '#EFB34150' - id: QuarterTileOverlayGreyscale90 - decals: - 3148: -25,-5 - - node: - color: '#FFFFFFFF' - id: Rock02 - decals: - 533: -10.301918,53.89685 - 534: -9.380043,53.8031 - 535: -3.5987926,53.818726 - - node: - color: '#FFFFFFFF' - id: Rock03 - decals: - 507: -10.764814,50.076122 - 508: -10.296064,50.404247 - 509: -7.1241894,49.888622 - 536: -4.3331676,54.14685 - 537: -8.959863,49.049328 - 3052: 6.230663,0.73506033 - 3053: 11.183787,0.86006033 - 3054: 10.168162,0.37568533 - - node: - color: '#FFFFFFFF' - id: Rock04 - decals: - 510: -7.4210644,49.888622 - 511: -3.3754807,48.982372 - 512: -4.0786057,48.216747 - 513: -7.6469474,55.2557 - 514: -6.2719474,53.567944 - 3348: -36,6 - 3349: -32,5 - 3350: -31,3 - - node: - color: '#FFFFFFFF' - id: Rock05 - decals: - 3055: 11.168162,0.25068533 - - node: - color: '#FFFFFFFF' - id: Rock06 - decals: - 3345: -42,3 - 3347: -35,4 - 3351: -33,3 - - node: - color: '#FFFFFFFF' - id: Rock07 - decals: - 3346: -40,5 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign1 - decals: - 263: 36,-73 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign2 - decals: - 264: 37,-73 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign3 - decals: - 265: 38,-73 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign4 - decals: - 266: 39,-73 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign5 - decals: - 267: 40,-73 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign6 - decals: - 268: 41,-73 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign7 - decals: - 269: 42,-73 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 433: -9,-45 - 434: -1,-45 - 449: 28,-41 - 450: 22,-41 - 3230: 77.48695,-34.5492 - 3231: 77.50258,-37.51795 - 3511: -9,-52 - 3512: -1,-52 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1027: 63,-48 - - node: - color: '#D4D4D496' - id: ThreeQuarterTileOverlayGreyscale - decals: - 3: -10,-64 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1028: 61,-46 - - node: - color: '#D4D4D496' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2: -6,-67 - - node: - color: '#FFFFFF79' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 660: -7,-60 - 661: 2,-60 - 662: -1,-60 - 663: -10,-60 - 664: -13,-60 - 665: -17,-60 - 704: -4,-60 - - node: - color: '#D4D4D47C' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 3477: 4,-60 - - node: - color: '#FFFFFF79' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 659: -5,-60 - 699: -14,-60 - 700: -11,-60 - 701: -8,-60 - 702: -2,-60 - 703: 1,-60 - - node: - color: '#D4D4D496' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1: -10,-67 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 1029: 63,-46 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1026: 61,-48 - - node: - color: '#D4D4D496' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 0: -6,-64 - - node: - cleanable: True - color: '#DE3A3A96' - id: Tunnel - decals: - 430: -37,-81 - - node: - color: '#FFFFFFFF' - id: VentSmall - decals: - 3277: 62,-44 - - node: - color: '#A46106FF' - id: WarnBox - decals: - 3501: -13,-13 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 395: -52,22 - 396: -52,20 - 412: -52,33 - 413: -52,31 - 3502: -11,-13 - 3504: -41,18 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 3195: -40,-59 - 3225: 54,-62 - 3228: 78,-34 - 3229: 78,-37 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 3196: -38,-59 - 3224: 56,-61 - 3226: 77,-34 - 3227: 77,-37 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 3232: 78,-38 - 3233: 78,-35 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 3234: 77,-35 - 3235: 77,-38 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 3218: 17,36 - 3219: 15,37 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNW - decals: - 3220: 15,36 - 3221: 17,37 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSE - decals: - 364: -41,-42 - 3216: 15,39 - 3217: 17,38 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 365: 47,-58 - 2787: -38,-42 - 3214: 17,39 - 3215: 15,38 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 293: -41,-44 - 294: -41,-45 - 295: -41,-47 - 296: -41,-46 - 309: -39,-53 - 310: -39,-54 - 311: -39,-55 - 314: -41,-43 - 2405: 38,-26 - 2406: 38,-27 - 3208: 15,38 - 3212: 17,37 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleE - decals: - 16: -19,-78 - 17: -19,-78 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 255: 53,-59 - 256: 54,-59 - 257: 55,-59 - 258: 56,-59 - 262: 46,-58 - 305: -40,-55 - 306: -39,-55 - 312: -39,-42 - 313: -40,-42 - 1057: 45,-58 - 3207: 14,38 - 3210: 16,39 - 3211: 18,38 - 3633: 63,-31 - 3634: 62,-31 - 3635: 61,-31 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 260: 56,-62 - 270: 48,-55 - 271: 48,-54 - 272: 48,-52 - 273: 48,-53 - 290: -37,-55 - 291: -37,-56 - 292: -37,-57 - 297: -42,-43 - 298: -42,-45 - 299: -42,-44 - 300: -42,-46 - 301: -42,-47 - 302: -40,-53 - 303: -40,-54 - 304: -40,-55 - 1056: 47,-59 - 2780: -38,-43 - 2781: -38,-44 - 2782: -38,-45 - 2783: -38,-46 - 2784: -38,-47 - 2785: -37,-54 - 2786: -37,-58 - 2788: -42,-42 - 3205: 15,37 - 3209: 17,38 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 259: 57,-61 - 261: 53,-62 - 307: -40,-53 - 308: -39,-53 - 2778: -36,-41 - 2779: -35,-41 - 3206: 14,36 - 3213: 18,36 - 3223: 16,37 - 3638: -51,-41 - 3639: -50,-41 - 3640: -49,-41 - - node: - color: '#D4D4D4E3' - id: WoodTrimThinCornerNe - decals: - 2933: 14,14 - 2959: 18,14 - 2970: 13,-11 - 2971: 12,-4 - - node: - color: '#B7AFC7FF' - id: WoodTrimThinCornerNe - decals: - 3649: 19,-82 - 3650: 18,-81 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - decals: - 2396: 34,-54 - 3481: 2,21 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - decals: - 2397: 28,-54 - 3482: -2,21 - - node: - color: '#B7AFC7FF' - id: WoodTrimThinCornerNw - decals: - 3654: 12,-81 - - node: - color: '#D4D4D4E3' - id: WoodTrimThinCornerNw - decals: - 2931: 8,10 - 2932: 10,14 - 2960: 16,14 - 2972: 10,-4 - 2985: 6,-5 - - node: - color: '#D4D4D4E3' - id: WoodTrimThinCornerSe - decals: - 2930: 14,5 - 2968: 13,-13 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSe - decals: - 2393: 34,-57 - 3480: 2,16 - - node: - color: '#B7AFC7FF' - id: WoodTrimThinCornerSe - decals: - 3651: 19,-86 - 3652: 18,-87 - - node: - color: '#D4D4D4E9' - id: WoodTrimThinCornerSe - decals: - 3331: 18,9 - - node: - color: '#D4D4D4E3' - id: WoodTrimThinCornerSw - decals: - 2934: 8,5 - 2969: 8,-13 - 2973: 6,-8 - - node: - color: '#B7AFC7FF' - id: WoodTrimThinCornerSw - decals: - 3653: 12,-87 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - decals: - 2392: 28,-57 - 3483: -2,16 - - node: - color: '#D4D4D4E9' - id: WoodTrimThinCornerSw - decals: - 3332: 16,9 - - node: - color: '#D4D4D4E3' - id: WoodTrimThinInnerNe - decals: - 2996: 12,-11 - - node: - color: '#D4D4D4E3' - id: WoodTrimThinInnerNw - decals: - 2957: 10,10 - 2997: 10,-5 - - node: - color: '#D4D4D4E3' - id: WoodTrimThinInnerSw - decals: - 2958: 10,13 - 2998: 8,-8 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 2394: 34,-56 - 2395: 34,-55 - 3491: 2,20 - 3492: 2,19 - 3493: 2,18 - 3494: 2,17 - - node: - color: '#D4D4D4E3' - id: WoodTrimThinLineE - decals: - 2939: 14,6 - 2940: 14,7 - 2941: 14,10 - 2942: 14,11 - 2943: 14,12 - 2944: 14,13 - 2961: 18,11 - 2962: 18,12 - 2963: 18,13 - 2989: 12,-5 - 2990: 12,-6 - 2991: 12,-7 - 2992: 12,-8 - 2993: 12,-9 - 2994: 12,-10 - 2995: 13,-12 - - node: - color: '#B7AFC7FF' - id: WoodTrimThinLineE - decals: - 3660: 19,-83 - 3661: 19,-84 - 3662: 19,-85 - - node: - color: '#D4D4D4E9' - id: WoodTrimThinLineE - decals: - 3334: 14,8 - 3335: 14,9 - - node: - color: '#D4D4D4E3' - id: WoodTrimThinLineN - decals: - 2935: 9,10 - 2936: 11,14 - 2937: 12,14 - 2938: 13,14 - 2967: 17,14 - 2986: 7,-5 - 2987: 8,-5 - 2988: 9,-5 - 2999: 11,-4 - - node: - color: '#B7AFC7FF' - id: WoodTrimThinLineN - decals: - 3655: 13,-81 - 3656: 14,-81 - 3657: 15,-81 - 3658: 16,-81 - 3659: 17,-81 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 2398: 33,-54 - 2399: 32,-54 - 2400: 31,-54 - 2401: 30,-54 - 2402: 29,-54 - 3484: -1,21 - 3485: 0,21 - 3486: 1,21 - - node: - color: '#B7AFC7FF' - id: WoodTrimThinLineS - decals: - 3668: 13,-87 - 3669: 14,-87 - 3670: 15,-87 - 3671: 16,-87 - 3672: 17,-87 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 2388: 32,-57 - 2389: 33,-57 - 2390: 30,-57 - 2391: 29,-57 - 3495: -1,16 - 3496: 0,16 - 3497: 1,16 - - node: - color: '#D4D4D4E3' - id: WoodTrimThinLineS - decals: - 2952: 13,5 - 2953: 12,5 - 2954: 11,5 - 2955: 10,5 - 2956: 9,5 - 2974: 7,-8 - 2975: 9,-13 - 2976: 10,-13 - 2977: 11,-13 - 2978: 12,-13 - - node: - color: '#D4D4D4E3' - id: WoodTrimThinLineW - decals: - 2945: 10,13 - 2946: 10,12 - 2947: 10,11 - 2948: 8,9 - 2949: 8,8 - 2950: 8,7 - 2951: 8,6 - 2964: 16,13 - 2965: 16,12 - 2966: 16,11 - 2979: 8,-12 - 2980: 8,-11 - 2981: 8,-10 - 2982: 8,-9 - 2983: 6,-6 - 2984: 6,-7 - - node: - color: '#B7AFC7FF' - id: WoodTrimThinLineW - decals: - 3663: 12,-82 - 3664: 12,-83 - 3665: 12,-84 - 3666: 12,-86 - 3667: 12,-85 - - node: - color: '#D4D4D4E9' - id: WoodTrimThinLineW - decals: - 3333: 16,10 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 2403: 28,-55 - 2404: 28,-56 - 3487: -2,20 - 3488: -2,19 - 3489: -2,18 - 3490: -2,17 - - node: - color: '#FFFFFFFF' - id: bushsnowa2 - decals: - 166: 50,-6 - - node: - color: '#FFFFFFFF' - id: grasssnowb2 - decals: - 566: -6.3993635,53.002754 - - node: - color: '#FFFFFFFF' - id: grasssnowc1 - decals: - 500: 9.76384,53.565598 - 501: 6.3516917,53.659348 - - node: - color: '#FFFFFFFF' - id: grasssnowc2 - decals: - 563: -7.712725,52.914776 - 564: -8.29085,52.758526 - - node: - color: '#FFFFFFFF' - id: grasssnowc3 - decals: - 565: -8.806476,52.64177 - - node: - cleanable: True - color: '#DE3A3A96' - id: revolution - decals: - 429: -44,-83 - - node: - color: '#EFB341F5' - id: shop - decals: - 3500: -49,12 - - node: - cleanable: True - color: '#A4610696' - id: skull - decals: - 432: -48,-77 - - node: - cleanable: True - color: '#7F7288DF' - id: splatter - decals: - 427: 17,1 - - node: - cleanable: True - color: '#7F728818' - id: splatter - decals: - 425: 12,12 - 426: 14,6 - - node: - cleanable: True - color: '#9FED5896' - id: stickman - decals: - 428: -47,-79 - type: DecalGrid - - version: 2 - data: - tiles: - -4,-3: - 0: 65535 - -4,-2: - 0: 65535 - -4,-1: - 0: 65535 - -3,-3: - 0: 65535 - -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - -1,-1: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 0,-1: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -4,2: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -3,2: - 0: 65535 - -2,0: - 0: 65535 - -2,1: - 0: 65535 - -2,2: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 32767 - 1: 32768 - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 36863 - 1: 28672 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 2,2: - 0: 65535 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 65535 - -8,-3: - 0: 65535 - -8,-2: - 0: 65535 - -8,-1: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-3: - 0: 65535 - -6,-2: - 0: 65535 - -6,-1: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -8,0: - 0: 65535 - -8,1: - 0: 65535 - -8,2: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -6,2: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-3: - 0: 65535 - 5,-2: - 0: 65535 - 5,-1: - 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: 65535 - -4,-4: - 0: 65535 - -3,-4: - 0: 65535 - -2,-4: - 0: 65535 - -1,-4: - 0: 65535 - 0,-4: - 0: 65535 - 1,-4: - 0: 65535 - 2,-4: - 0: 65535 - 3,-4: - 0: 65535 - -4,3: - 0: 65535 - -3,3: - 0: 65535 - -2,3: - 0: 65535 - -1,3: - 0: 63351 - 1: 2184 - 0,3: - 1: 1911 - 0: 63624 - 1,3: - 0: 65535 - 2,3: - 0: 65535 - 3,3: - 0: 65535 - -8,-4: - 0: 65535 - -7,-4: - 0: 65535 - -6,-4: - 0: 65535 - -5,-4: - 0: 65535 - -8,3: - 0: 65535 - -7,3: - 0: 65535 - -6,3: - 0: 65535 - -5,3: - 0: 65535 - 4,-4: - 0: 65535 - 5,-4: - 0: 65535 - 6,-4: - 0: 65535 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - 7,-4: - 0: 65535 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - 4,3: - 0: 65535 - 5,3: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - -4,4: - 0: 65535 - -3,4: - 0: 65535 - -2,4: - 0: 65535 - -1,4: - 0: 65535 - 0,4: - 0: 65535 - 1,4: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 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: 65535 - -8,-5: - 0: 65535 - -7,-5: - 0: 65535 - -6,-5: - 0: 65535 - -5,-5: - 0: 65535 - -4,-5: - 0: 65535 - -3,-5: - 0: 65535 - -2,-5: - 0: 65535 - -1,-5: - 0: 65535 - 0,-5: - 0: 65535 - 1,-5: - 0: 65535 - 2,-5: - 0: 65535 - 3,-5: - 0: 65535 - 4,-5: - 0: 65535 - 5,-5: - 0: 65535 - 6,-5: - 0: 65535 - 7,-5: - 0: 65535 - 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: 65535 - 8,4: - 0: 65535 - 8,5: - 0: 65535 - 9,4: - 0: 65535 - 9,5: - 0: 65535 - 10,4: - 0: 65535 - 10,5: - 0: 65535 - 8,-3: - 0: 65535 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 - 9,-3: - 0: 65535 - 9,-2: - 0: 65535 - 9,-1: - 0: 65535 - 10,-3: - 0: 65535 - 10,-2: - 0: 65535 - 10,-1: - 0: 65535 - -8,4: - 0: 65535 - -7,4: - 0: 65535 - -6,4: - 0: 65535 - -5,4: - 0: 65535 - -1,5: - 0: 65535 - 0,5: - 0: 65535 - 1,5: - 0: 65535 - -6,-8: - 0: 65535 - -6,-7: - 0: 65535 - -6,-6: - 0: 65535 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 - -5,-6: - 0: 65535 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -4,-6: - 0: 65535 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -3,-6: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -2,-6: - 0: 65535 - -1,-8: - 0: 65535 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - 0,-8: - 0: 65535 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 1,-6: - 0: 65535 - 2,-8: - 0: 65535 - 2,-7: - 0: 65535 - 2,-6: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - 3,-6: - 0: 65535 - 4,-8: - 0: 65535 - 4,-7: - 0: 65535 - 4,-6: - 0: 65535 - 5,-8: - 0: 65535 - 5,-7: - 0: 65535 - 5,-6: - 0: 65535 - 6,-8: - 0: 65535 - 6,-7: - 0: 65535 - 6,-6: - 0: 65535 - 7,-8: - 0: 65535 - 7,-7: - 0: 65535 - 7,-6: - 0: 65535 - 11,0: - 0: 65535 - 11,1: - 0: 65535 - 11,2: - 0: 65535 - 11,3: - 0: 65535 - 11,4: - 0: 65535 - 11,5: - 0: 65535 - 8,-4: - 0: 65535 - 9,-4: - 0: 65535 - 10,-4: - 0: 65535 - 11,-4: - 0: 65535 - 11,-3: - 0: 65535 - 11,-2: - 0: 65535 - 11,-1: - 0: 65535 - 12,4: - 0: 65535 - 12,5: - 0: 65535 - 12,0: - 0: 65535 - 12,1: - 0: 65535 - 12,2: - 0: 65535 - 12,3: - 0: 65535 - 12,-3: - 0: 65535 - 12,-2: - 0: 65535 - 12,-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: 63903 - 10,-7: - 0: 65535 - 10,-6: - 0: 39327 - 10,-5: - 0: 65535 - 11,-5: - 0: 65331 - -6,-11: - 0: 65535 - -6,-10: - 0: 65535 - -6,-9: - 0: 65535 - -5,-11: - 0: 65535 - -5,-10: - 0: 65535 - -5,-9: - 0: 65535 - -4,-11: - 0: 65535 - -4,-10: - 0: 65535 - -4,-9: - 0: 65535 - -3,-11: - 0: 65535 - -3,-10: - 0: 65535 - -3,-9: - 0: 65535 - -2,-11: - 0: 65535 - -2,-10: - 0: 65535 - -2,-9: - 0: 65535 - -1,-11: - 0: 65535 - -1,-10: - 0: 65535 - -1,-9: - 0: 65535 - 0,-11: - 0: 65535 - 0,-10: - 0: 65535 - 0,-9: - 0: 65535 - 1,-11: - 0: 65535 - 1,-10: - 0: 65535 - 1,-9: - 0: 65535 - 2,-11: - 0: 65535 - 2,-10: - 0: 65535 - 2,-9: - 0: 65535 - 3,-11: - 0: 65535 - 3,-10: - 0: 65535 - 3,-9: - 0: 65535 - 4,-11: - 0: 65535 - 4,-10: - 0: 65535 - 4,-9: - 0: 65535 - 5,-11: - 0: 65535 - 5,-10: - 0: 65535 - 5,-9: - 0: 65535 - 6,-11: - 0: 65535 - 6,-10: - 0: 65535 - 6,-9: - 0: 65535 - 7,-11: - 0: 65535 - 7,-10: - 0: 65535 - 7,-9: - 0: 65535 - 8,-11: - 0: 65535 - 8,-10: - 0: 65535 - 8,-9: - 0: 65535 - 9,-11: - 0: 65535 - 9,-10: - 0: 65535 - 9,-9: - 0: 65535 - 10,-11: - 0: 65535 - 10,-10: - 0: 65535 - 10,-9: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 32767 - 5,6: - 0: 65535 - 5,7: - 0: 20479 - 6,6: - 0: 65535 - 6,7: - 0: 65535 - 7,6: - 0: 65535 - 7,7: - 0: 65535 - 8,6: - 0: 30591 - 8,7: - 0: 30591 - 0,6: - 0: 35583 - 0,7: - 0: 62392 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 64767 - 8,8: - 0: 6015 - 6,8: - 0: 53247 - 7,8: - 0: 65535 - -6,-12: - 0: 65535 - -5,-12: - 0: 65535 - -4,-12: - 0: 65535 - -3,-12: - 0: 65535 - -2,-12: - 0: 65535 - -1,-12: - 0: 65535 - 0,-12: - 0: 65535 - 1,-12: - 0: 65535 - 2,-12: - 0: 65535 - 3,-12: - 0: 65535 - 4,-12: - 0: 65535 - 5,-12: - 0: 65535 - 6,-12: - 0: 65535 - 7,-12: - 0: 65535 - 8,-12: - 0: 65535 - 9,-12: - 0: 65535 - 10,-12: - 0: 65535 - 0,-16: - 0: 65535 - 0,-15: - 0: 65535 - 0,-14: - 0: 65535 - 0,-13: - 0: 65535 - 1,-16: - 0: 65535 - 1,-15: - 0: 65535 - 1,-14: - 0: 65535 - 1,-13: - 0: 65535 - 2,-16: - 0: 65535 - 2,-15: - 0: 65535 - 2,-14: - 0: 65535 - 2,-13: - 0: 65535 - 3,-16: - 0: 65535 - 3,-15: - 0: 65535 - 3,-14: - 0: 65535 - 3,-13: - 0: 65535 - 4,-13: - 0: 65535 - 5,-13: - 0: 65535 - 6,-13: - 0: 65535 - 7,-13: - 0: 65535 - 8,-13: - 0: 65535 - 9,-13: - 0: 65535 - 10,-13: - 0: 65535 - -4,-16: - 0: 65535 - -4,-15: - 0: 65535 - -4,-14: - 0: 65535 - -4,-13: - 0: 65535 - -3,-16: - 0: 65535 - -3,-15: - 0: 65535 - -3,-14: - 0: 65535 - -3,-13: - 0: 65535 - -2,-16: - 0: 65535 - -2,-15: - 0: 65535 - -2,-14: - 0: 65535 - -2,-13: - 0: 65535 - -1,-16: - 0: 65535 - -1,-15: - 0: 65535 - -1,-14: - 0: 65535 - -1,-13: - 0: 65535 - -7,-16: - 0: 65535 - -7,-15: - 0: 65535 - -7,-14: - 0: 65535 - -7,-13: - 0: 65535 - -6,-16: - 0: 65535 - -6,-15: - 0: 65535 - -6,-14: - 0: 65535 - -6,-13: - 0: 65535 - -5,-16: - 0: 65535 - -5,-15: - 0: 65535 - -5,-14: - 0: 65535 - -5,-13: - 0: 65535 - -4,-18: - 0: 65535 - -4,-17: - 0: 65535 - -3,-18: - 0: 65535 - -3,-17: - 0: 65535 - -2,-18: - 0: 65535 - -2,-17: - 0: 65535 - -1,-18: - 0: 65535 - -1,-17: - 0: 65535 - -5,-18: - 0: 65535 - -5,-17: - 0: 65535 - 0,-18: - 0: 65535 - 0,-17: - 0: 65535 - 1,-17: - 0: 65535 - 2,-17: - 0: 65535 - 3,-17: - 0: 65535 - -4,-20: - 0: 65535 - -4,-19: - 0: 65535 - -3,-20: - 0: 65535 - -3,-19: - 0: 65535 - -2,-20: - 0: 65535 - -2,-19: - 0: 65535 - -1,-19: - 0: 65535 - -8,-20: - 0: 65535 - -8,-19: - 0: 65535 - -8,-18: - 0: 65535 - -8,-17: - 0: 65535 - -7,-20: - 0: 65535 - -7,-19: - 0: 65535 - -7,-18: - 0: 65535 - -7,-17: - 0: 65535 - -6,-20: - 0: 65535 - -6,-19: - 0: 65535 - -6,-18: - 0: 65535 - -6,-17: - 0: 65535 - -5,-20: - 0: 65535 - -5,-19: - 0: 65535 - 0,-19: - 0: 65467 - 1,-18: - 0: 65535 - 2,-18: - 0: 65535 - -4,-21: - 0: 65535 - -3,-21: - 0: 65535 - -8,-21: - 0: 65535 - -8,-23: - 0: 34816 - -7,-23: - 0: 65535 - -7,-22: - 0: 65535 - -7,-21: - 0: 65535 - -7,-24: - 0: 49391 - -6,-23: - 0: 65535 - -6,-22: - 0: 65535 - -6,-21: - 0: 65535 - -6,-24: - 0: 60159 - -5,-23: - 0: 65331 - -5,-22: - 0: 48059 - -5,-21: - 0: 65535 - -9,-21: - 0: 40857 - -9,-20: - 0: 40857 - -9,-19: - 0: 65497 - -1,-20: - 0: 65535 - 0,-20: - 0: 64409 - 1,-19: - 0: 62588 - -1,-21: - 0: 65535 - -1,-22: - 0: 65365 - -1,-23: - 0: 23808 - 0,-24: - 0: 62588 - 0,-23: - 0: 3908 - 0,-21: - 0: 40704 - 1,-24: - 0: 63631 - 1,-23: - 0: 24320 - 1,-22: - 0: 21877 - 1,-21: - 0: 18261 - 2,-24: - 0: 63631 - 3,-24: - 0: 63631 - 4,-24: - 0: 61455 - 1,-25: - 0: 240 - 2,-26: - 0: 36744 - 2,-25: - 0: 35064 - 2,-27: - 0: 63631 - 3,-27: - 0: 61455 - 3,-26: - 0: 3840 - 3,-25: - 0: 240 - 4,-16: - 0: 3 - 4,-15: - 0: 65521 - 4,-14: - 0: 65535 - 5,-15: - 0: 63624 - 5,-14: - 0: 65535 - 6,-15: - 0: 65535 - 6,-14: - 0: 65535 - 3,-18: - 0: 65343 - 4,-18: - 0: 28943 - 4,-17: - 0: 30583 - -4,5: - 0: 65535 - -4,6: - 0: 65535 - -3,5: - 0: 65535 - -3,6: - 0: 65535 - -3,7: - 0: 65535 - -2,5: - 0: 65535 - -2,6: - 0: 4607 - -2,7: - 0: 63889 - -1,6: - 0: 30719 - -1,7: - 0: 65527 - -6,5: - 0: 65535 - -6,6: - 0: 65535 - -5,5: - 0: 65535 - -5,6: - 0: 65535 - 11,-8: - 0: 65535 - 11,-7: - 0: 65535 - 11,-6: - 0: 65535 - 11,-12: - 0: 65535 - 11,-11: - 0: 65535 - 8,9: - 0: 4593 - 4,8: - 0: 65399 - 4,9: - 0: 65535 - 4,10: - 0: 65407 - 4,11: - 0: 65535 - 5,9: - 0: 240 - 5,11: - 0: 65535 - 6,9: - 0: 4604 - 7,9: - 0: 8959 - 5,-16: - 0: 34816 - 6,-16: - 0: 65280 - 7,-16: - 0: 65535 - 7,-15: - 0: 65535 - 8,-16: - 0: 65459 - 8,-15: - 0: 65535 - 9,-16: - 0: 65534 - 9,-15: - 0: 65535 - 7,-17: - 0: 57344 - 8,-17: - 0: 4096 - 12,-8: - 0: 13119 - 12,-7: - 0: 32627 - 12,-6: - 0: 13107 - 0,8: - 0: 13311 - 1,8: - 0: 61439 - 2,8: - 0: 65535 - 2,11: - 0: 65535 - 3,8: - 0: 61183 - 3,11: - 0: 65535 - 3,9: - 0: 61166 - 3,10: - 0: 65486 - 4,12: - 0: 65535 - 4,13: - 0: 65535 - 4,14: - 0: 65535 - 4,15: - 0: 3857 - 5,12: - 0: 65535 - 5,13: - 0: 65535 - 6,12: - 0: 65535 - 1,12: - 0: 65535 - 2,12: - 0: 65535 - 2,13: - 0: 65535 - 3,12: - 0: 65535 - 3,13: - 0: 65535 - 3,14: - 0: 65535 - -3,8: - 0: 65535 - -2,8: - 0: 39423 - -1,8: - 0: 65535 - 9,6: - 0: 4383 - 10,6: - 0: 61167 - 11,6: - 0: 65535 - 12,6: - 0: 65535 - 13,4: - 0: 65535 - 13,5: - 0: 65535 - 13,6: - 0: 65535 - 14,4: - 0: 65535 - 14,5: - 0: 65535 - 14,6: - 0: 65535 - 15,4: - 0: 65535 - 15,5: - 0: 65535 - 15,6: - 0: 65535 - 13,0: - 0: 65535 - 13,1: - 0: 65535 - 13,2: - 0: 65535 - 13,3: - 0: 65535 - 14,0: - 0: 65535 - 14,1: - 0: 65535 - 14,2: - 0: 65535 - 14,3: - 0: 65535 - 15,0: - 0: 65535 - 15,1: - 0: 65535 - 15,2: - 0: 65535 - 15,3: - 0: 65535 - 12,-4: - 0: 65529 - 13,-4: - 0: 65535 - 13,-3: - 0: 65535 - 13,-2: - 0: 65535 - 13,-1: - 0: 65535 - 14,-4: - 0: 65535 - 14,-3: - 0: 65535 - 14,-2: - 0: 65535 - 14,-1: - 0: 65535 - 15,-4: - 0: 65535 - 15,-3: - 0: 65535 - 15,-2: - 0: 65535 - 16,4: - 0: 30583 - 16,5: - 0: 30583 - 16,6: - 0: 30583 - 16,0: - 0: 30583 - 16,1: - 0: 65527 - 16,2: - 0: 65535 - 16,3: - 0: 30719 - 16,-4: - 0: 65532 - 16,-3: - 0: 65535 - 16,-2: - 0: 65535 - 9,7: - 0: 28945 - 15,-1: - 0: 65535 - 11,-10: - 0: 65535 - 11,-9: - 0: 65535 - 9,8: - 0: 4369 - 6,11: - 0: 65535 - 7,-14: - 0: 65535 - 8,-14: - 0: 65535 - 9,-14: - 0: 65535 - 11,-13: - 0: 65535 - 11,-14: - 0: 65535 - 12,-5: - 0: 36864 - 13,-7: - 0: 4095 - 13,-5: - 0: 16128 - 13,-8: - 0: 65535 - 14,-8: - 0: 65535 - 14,-5: - 0: 9006 - 14,-7: - 0: 36863 - 14,-6: - 0: 34952 - 15,-8: - 0: 65535 - 15,-7: - 0: 61439 - 15,-6: - 0: 61423 - 15,-5: - 0: 65263 - 1,11: - 0: 65535 - 5,14: - 0: 63487 - 6,14: - 0: 63673 - 6,13: - 0: 49151 - 6,15: - 0: 3976 - 1,13: - 0: 65535 - 1,14: - 0: 58030 - 1,15: - 0: 36386 - 2,14: - 0: 65279 - 3,15: - 0: 3840 - 16,-1: - 0: 30719 - 16,-12: - 0: 65535 - 16,-11: - 0: 62975 - 16,-10: - 0: 65518 - 16,-9: - 0: 65535 - 17,-12: - 0: 65535 - 17,-11: - 0: 64767 - 17,-9: - 0: 65535 - 17,-10: - 0: 65535 - 18,-12: - 0: 65535 - 18,-11: - 0: 65279 - 19,-12: - 0: 65535 - 19,-11: - 0: 39423 - 16,-8: - 0: 62455 - 12,-12: - 0: 65535 - 12,-11: - 0: 65535 - 12,-10: - 0: 65535 - 13,-12: - 0: 65521 - 1: 14 - 13,-11: - 0: 65535 - 13,-10: - 0: 65535 - 13,-9: - 0: 65535 - 14,-12: - 0: 65532 - 1: 3 - 14,-11: - 0: 65535 - 14,-9: - 0: 65535 - 14,-10: - 0: 65535 - 15,-12: - 0: 65535 - 15,-11: - 0: 65535 - 15,-10: - 0: 65535 - 15,-9: - 0: 65535 - 12,-14: - 0: 65535 - 12,-13: - 0: 65535 - 13,-14: - 0: 30719 - 13,-13: - 0: 5119 - 1: 60416 - 14,-14: - 0: 53145 - 14,-13: - 0: 52476 - 1: 13056 - 15,-15: - 0: 61937 - 15,-14: - 0: 65535 - 15,-13: - 0: 65535 - 16,-15: - 0: 4509 - 16,-14: - 0: 63283 - 16,-13: - 0: 65535 - 17,-13: - 0: 65529 - 18,-13: - 0: 65535 - 19,-13: - 0: 65535 - 10,-15: - 0: 65535 - 10,-16: - 0: 65535 - 11,-16: - 0: 65535 - 11,-15: - 0: 65535 - 12,-16: - 2: 65280 - 0: 242 - 12,-15: - 0: 65535 - 13,-16: - 0: 65534 - 13,-15: - 0: 65535 - 10,-14: - 0: 65535 - 9,-18: - 0: 65535 - 9,-17: - 0: 61167 - 10,-18: - 0: 65535 - 10,-17: - 0: 65463 - -8,-7: - 0: 65535 - -8,-6: - 0: 65535 - -7,-7: - 0: 65535 - -7,-6: - 0: 65535 - -10,-4: - 0: 65535 - -10,-3: - 0: 65535 - -10,-2: - 0: 65535 - -9,-4: - 0: 65535 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -10,-5: - 0: 65535 - -9,-5: - 0: 65535 - -9,-7: - 0: 65535 - -9,-6: - 0: 65535 - 14,-16: - 0: 32767 - 14,-15: - 0: 5111 - 7,-21: - 0: 65535 - 7,-20: - 0: 65535 - 8,-20: - 0: 65535 - 8,-19: - 0: 65535 - 8,-18: - 0: 36863 - 9,-20: - 0: 65535 - 9,-19: - 0: 65535 - 10,-20: - 0: 65535 - 10,-19: - 0: 65535 - 11,-20: - 0: 65535 - 11,-19: - 0: 65535 - 11,-18: - 0: 2047 - 8,-21: - 0: 65535 - 9,-21: - 0: 65535 - 10,-21: - 0: 65535 - 11,-21: - 0: 65535 - 12,-21: - 0: 30583 - 12,-20: - 0: 32631 - -8,-8: - 0: 65535 - -7,-8: - 0: 65535 - -8,-10: - 0: 65535 - -8,-9: - 0: 65535 - -8,-12: - 0: 65535 - -7,-12: - 0: 65535 - -7,-9: - 0: 65535 - -7,-11: - 0: 65535 - -7,-10: - 0: 65535 - -8,-16: - 0: 65535 - -8,-15: - 0: 65535 - -8,-14: - 0: 65535 - -8,-13: - 0: 65535 - 2,-19: - 0: 65263 - 3,-19: - 0: 65535 - 4,-19: - 0: 65535 - 5,-19: - 0: 65535 - 5,-18: - 0: 52975 - 6,-19: - 0: 65535 - 6,-18: - 0: 65535 - 7,-19: - 0: 65535 - 7,-18: - 0: 13311 - 15,-16: - 0: 8191 - 16,-16: - 0: 65535 - 17,-16: - 0: 65535 - 18,-16: - 0: 65535 - 18,-15: - 0: 65535 - 18,-14: - 0: 65535 - 19,-14: - 0: 65535 - -11,-4: - 0: 65535 - -11,-3: - 0: 65535 - -11,-2: - 0: 65535 - -12,-8: - 0: 65535 - -12,-7: - 0: 65535 - -12,-6: - 0: 65535 - -12,-5: - 0: 65535 - -11,-8: - 0: 65535 - -11,-7: - 0: 65535 - -11,-6: - 0: 65535 - -11,-5: - 0: 65535 - -10,-8: - 0: 65535 - -10,-7: - 0: 65535 - -10,-6: - 0: 65535 - -9,-8: - 0: 65535 - 14,-18: - 0: 65260 - 14,-17: - 0: 65535 - 14,-19: - 0: 35056 - 15,-19: - 0: 64240 - 15,-18: - 0: 65535 - 15,-17: - 0: 65535 - 16,-18: - 0: 65535 - 16,-17: - 0: 65535 - -9,-10: - 0: 65535 - -9,-9: - 0: 65535 - -8,5: - 0: 65535 - -8,6: - 0: 65535 - -7,5: - 0: 65535 - -7,6: - 0: 65535 - -8,-11: - 0: 65535 - -12,-4: - 0: 65535 - -12,-3: - 0: 65535 - -12,-2: - 0: 65535 - -10,-1: - 0: 65535 - -9,-1: - 0: 65535 - -12,-12: - 0: 65535 - -12,-11: - 0: 65535 - -11,-12: - 0: 65535 - -11,-11: - 0: 65535 - -11,-10: - 0: 57343 - 2: 8192 - -11,-9: - 0: 56524 - 2: 9011 - -10,-12: - 0: 65535 - -10,-11: - 0: 65535 - -10,-10: - 0: 65535 - -10,-9: - 0: 65535 - -9,-12: - 0: 65535 - -9,-11: - 0: 65535 - -12,-15: - 0: 65520 - -12,-14: - 0: 65535 - -12,-13: - 0: 65535 - -11,-15: - 0: 65529 - -11,-14: - 0: 65535 - -11,-13: - 0: 65535 - -10,-15: - 0: 65535 - -10,-14: - 0: 65535 - -10,-13: - 0: 65535 - -9,-15: - 0: 65532 - -9,-14: - 0: 65535 - -9,-13: - 0: 65535 - -13,-12: - 0: 7967 - 3: 224 - 2: 57344 - -13,-11: - 0: 65311 - 2: 224 - -13,-15: - 0: 65523 - -13,-14: - 0: 7967 - 4: 224 - 5: 57344 - -13,-13: - 0: 7967 - 2: 57568 - -10,0: - 0: 65535 - -9,0: - 0: 65535 - -9,3: - 0: 65535 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -9,6: - 0: 65535 - -15,-4: - 0: 57309 - -15,-3: - 0: 65533 - -15,-2: - 0: 64733 - -14,-4: - 0: 65535 - -14,-3: - 0: 65535 - -14,-2: - 0: 65535 - -13,-4: - 0: 65535 - -13,-3: - 0: 65535 - -13,-2: - 0: 65535 - -15,-6: - 0: 65279 - -15,-5: - 0: 65535 - -14,-6: - 0: 65535 - -14,-5: - 0: 65535 - -13,-6: - 0: 65535 - -13,-5: - 0: 65535 - -4,7: - 0: 65535 - -8,7: - 0: 65535 - -6,7: - 0: 65535 - -5,7: - 0: 65535 - -12,-20: - 0: 65535 - -12,-19: - 0: 65535 - -12,-18: - 0: 65535 - -12,-17: - 0: 65535 - -11,-20: - 0: 65535 - -11,-19: - 0: 65535 - -11,-18: - 0: 65535 - -11,-17: - 0: 65535 - -10,-20: - 0: 65535 - -10,-19: - 0: 65535 - -10,-18: - 0: 65535 - -10,-17: - 0: 65535 - -9,-18: - 0: 65535 - -9,-17: - 0: 65535 - -4,8: - 0: 65535 - -4,9: - 0: 65535 - -4,10: - 0: 65535 - -4,11: - 0: 65535 - -12,-1: - 0: 65535 - -11,-1: - 0: 65535 - -12,-10: - 0: 56735 - -12,-9: - 0: 54551 - 2: 2248 - -12,-16: - 0: 511 - -11,-16: - 0: 4607 - -10,-16: - 0: 8447 - -9,-16: - 0: 36095 - -16,-9: - 0: 4103 - -15,-12: - 0: 61422 - -15,-11: - 0: 61166 - -15,-10: - 0: 61182 - -15,-9: - 0: 61166 - -14,-12: - 0: 4471 - -14,-11: - 0: 63761 - -14,-10: - 0: 30591 - -14,-9: - 0: 65399 - -13,-9: - 0: 65535 - -15,-16: - 0: 65533 - -15,-15: - 0: 61439 - -15,-14: - 0: 61439 - -15,-13: - 0: 61166 - -14,-16: - 0: 65535 - -14,-15: - 0: 16383 - -14,-14: - 0: 4369 - -14,-13: - 0: 30583 - -13,-16: - 0: 8191 - -12,3: - 0: 65535 - -12,0: - 0: 65535 - -11,0: - 0: 65535 - -11,1: - 0: 65535 - -11,2: - 0: 65535 - -11,3: - 0: 65535 - -10,1: - 0: 65535 - -10,2: - 0: 65535 - -10,3: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 65535 - -12,4: - 0: 65535 - -12,5: - 0: 65535 - -12,6: - 0: 65535 - -12,7: - 0: 65535 - -11,4: - 0: 65535 - -11,5: - 0: 65535 - -11,6: - 0: 65535 - -11,7: - 0: 65535 - -10,4: - 0: 65535 - -10,5: - 0: 65535 - -10,6: - 0: 65535 - -10,7: - 0: 65535 - -9,7: - 0: 65535 - -16,-4: - 0: 12066 - -16,-3: - 0: 12066 - -16,-2: - 0: 63474 - -16,-1: - 0: 3855 - -15,-1: - 0: 53199 - -16,-8: - 0: 65535 - -16,-7: - 0: 65535 - -16,-6: - 0: 63487 - -16,-5: - 0: 12066 - -15,-8: - 0: 65535 - -15,-7: - 0: 65535 - -14,-8: - 0: 65535 - -14,-7: - 0: 65535 - -13,-8: - 0: 65535 - -13,-7: - 0: 65535 - -20,-4: - 0: 64921 - -20,-3: - 0: 39325 - -20,-2: - 0: 40857 - -20,-1: - 0: 3865 - -19,-4: - 0: 32631 - -19,-3: - 0: 32631 - -19,-2: - 0: 61909 - -19,-1: - 0: 3855 - -18,-4: - 0: 12066 - -18,-3: - 0: 12066 - -18,-2: - 0: 65522 - -18,-1: - 0: 3871 - -17,-4: - 0: 12066 - -17,-3: - 0: 12066 - -17,-2: - 0: 65522 - -17,-1: - 0: 3983 - -20,-7: - 0: 57329 - -20,-6: - 0: 39321 - -20,-5: - 0: 39327 - -19,-7: - 0: 65535 - -19,-6: - 0: 53759 - -19,-5: - 0: 32629 - -18,-7: - 0: 65535 - -18,-6: - 0: 65535 - -18,-5: - 0: 12066 - -18,-8: - 0: 65535 - -17,-8: - 0: 65535 - -17,-7: - 0: 65535 - -17,-6: - 0: 65535 - -17,-5: - 0: 12066 - -18,-9: - 0: 65439 - -17,-9: - 0: 65423 - -15,-20: - 0: 52479 - -15,-19: - 0: 65532 - -15,-18: - 0: 57343 - -15,-17: - 0: 39325 - -14,-20: - 0: 65535 - -14,-19: - 0: 65535 - -14,-18: - 0: 65535 - -14,-17: - 0: 65535 - -13,-20: - 0: 65467 - -13,-19: - 0: 65535 - -13,-18: - 0: 65535 - -13,-17: - 0: 65535 - -15,-21: - 0: 65532 - -15,-23: - 0: 60608 - -15,-22: - 0: 52462 - -14,-23: - 0: 65392 - -14,-22: - 0: 32767 - -14,-21: - 0: 65535 - -13,-23: - 0: 12544 - -13,-22: - 0: 35127 - -13,-21: - 0: 47496 - -12,-22: - 0: 65532 - -12,-21: - 0: 65535 - -11,-22: - 0: 65535 - -11,-21: - 0: 65535 - -10,-22: - 0: 65523 - -10,-21: - 0: 65535 - -9,-22: - 0: 4352 - -13,4: - 0: 65487 - -13,5: - 0: 65535 - -13,6: - 0: 52431 - -13,7: - 0: 65535 - -13,3: - 0: 65535 - -8,8: - 0: 63631 - -7,9: - 0: 65535 - -7,10: - 0: 65535 - -7,11: - 0: 65535 - -6,8: - 0: 65535 - -6,9: - 0: 65535 - -6,10: - 0: 65535 - -6,11: - 0: 65535 - -5,8: - 0: 65535 - -5,9: - 0: 65535 - -5,10: - 0: 65535 - -5,11: - 0: 65535 - -7,12: - 0: 61132 - -6,12: - 0: 65535 - -5,12: - 0: 65535 - -4,12: - 0: 65535 - -9,8: - 0: 61759 - -14,4: - 0: 52236 - -14,5: - 0: 52428 - -14,6: - 0: 12 - -14,7: - 0: 52428 - -12,8: - 0: 65535 - -12,9: - 0: 65535 - -11,8: - 0: 65535 - -11,9: - 0: 65535 - -10,8: - 0: 65535 - -10,9: - 0: 65535 - -14,8: - 0: 52428 - -14,9: - 0: 204 - -13,8: - 0: 65535 - -13,9: - 0: 39391 - 16,-7: - 0: 12003 - 16,-6: - 0: 44834 - 16,-5: - 0: 64234 - 17,-8: - 0: 64766 - -12,1: - 0: 65535 - -12,2: - 0: 65535 - -14,-1: - 0: 65535 - -13,-1: - 0: 65535 - -15,1: - 0: 52428 - -15,0: - 0: 32768 - -15,2: - 0: 8 - -14,0: - 0: 65535 - -14,1: - 0: 65535 - -14,2: - 0: 52479 - -14,3: - 0: 52428 - -13,0: - 0: 65535 - -13,1: - 0: 65535 - -13,2: - 0: 65535 - -12,10: - 0: 17663 - -12,11: - 0: 17604 - -11,10: - 0: 127 - -11,11: - 0: 35056 - -10,11: - 0: 244 - -10,10: - 0: 61167 - -9,9: - 0: 65535 - -14,10: - 0: 128 - -13,10: - 0: 17657 - -13,11: - 0: 17476 - -12,12: - 0: 8948 - -12,13: - 0: 65523 - -12,14: - 0: 65535 - -12,15: - 0: 65535 - -11,13: - 0: 65532 - -11,14: - 0: 65535 - -11,15: - 0: 65535 - -11,12: - 0: 34952 - -10,13: - 0: 12784 - -10,14: - 0: 63351 - -10,15: - 0: 65535 - -9,13: - 0: 50288 - -9,15: - 0: 21844 - -9,14: - 0: 17476 - -16,13: - 0: 17600 - -16,14: - 0: 17476 - -16,15: - 0: 17476 - -15,13: - 0: 240 - -15,15: - 0: 51328 - -14,13: - 0: 33008 - -14,15: - 0: 65534 - -14,14: - 0: 61128 - -13,13: - 0: 64752 - -13,14: - 0: 65535 - -13,15: - 0: 65535 - -13,12: - 0: 196 - -12,16: - 0: 65535 - -12,17: - 0: 2287 - -12,18: - 0: 15 - -11,16: - 0: 65535 - -11,17: - 0: 4095 - -11,18: - 0: 15 - -10,16: - 0: 65535 - -10,17: - 0: 383 - -10,18: - 0: 15 - -9,16: - 0: 21845 - -9,18: - 0: 15 - -9,17: - 0: 17476 - -16,16: - 0: 17476 - -16,17: - 0: 17476 - -16,18: - 0: 12 - -15,16: - 0: 65518 - -15,17: - 0: 36607 - -15,18: - 0: 15 - -14,16: - 0: 65535 - -14,17: - 0: 65535 - -14,18: - 0: 15 - -13,16: - 0: 65535 - -13,17: - 0: 2047 - -13,18: - 0: 15 - -7,8: - 0: 65535 - 5,-24: - 0: 56789 - 0,-27: - 0: 50252 - 0,-26: - 0: 20292 - 0,-25: - 0: 17604 - 1,-27: - 0: 61455 - 1,-26: - 0: 3840 - 0,9: - 0: 4081 - 5,15: - 0: 3840 - 2,15: - 0: 3840 - -3,9: - 0: 65535 - -3,10: - 0: 65535 - -3,11: - 0: 65535 - -2,9: - 0: 32753 - -1,9: - 0: 4081 - -8,13: - 0: 61440 - -7,13: - 0: 65262 - -6,13: - 0: 65535 - -5,13: - 0: 65535 - -4,13: - 0: 61167 - -3,12: - 0: 65535 - -3,13: - 0: 65535 - 4,-27: - 0: 61455 - 4,-26: - 0: 3840 - 4,-25: - 0: 240 - 5,-27: - 0: 4369 - 5,-26: - 0: 4369 - 5,-25: - 0: 53521 - 5,8: - 0: 19524 - 9,9: - 0: 241 - 1,9: - 0: 51060 - 2,9: - 0: 4096 - 2,10: - 0: 65521 - -16,-12: - 0: 19524 - -16,-11: - 0: 17479 - -16,-10: - 0: 29892 - -16,-15: - 0: 20288 - -16,-14: - 0: 19660 - -16,-13: - 0: 29764 - -20,-8: - 0: 4371 - -20,-9: - 0: 11912 - -19,-9: - 0: 65487 - 10,7: - 0: 61164 - 11,7: - 0: 65535 - -7,7: - 0: 65535 - 12,7: - 0: 65535 - 13,7: - 0: 65535 - 14,7: - 0: 65535 - 15,7: - 0: 53247 - 10,8: - 0: 36590 - 11,8: - 0: 65535 - 11,9: - 0: 65535 - 11,10: - 0: 65535 - 11,11: - 0: 65535 - 17,-4: - 0: 13105 - 17,-3: - 0: 51 - 17,-2: - 0: 13104 - 17,-1: - 0: 8755 - 12,8: - 0: 65535 - 12,9: - 0: 65535 - 12,10: - 0: 65535 - 12,11: - 0: 65535 - 13,8: - 0: 65535 - 13,9: - 0: 65535 - 13,10: - 0: 65535 - 13,11: - 0: 65535 - 14,8: - 0: 65535 - 14,9: - 0: 65535 - 14,10: - 0: 65535 - 14,11: - 0: 65535 - 15,8: - 0: 47244 - 15,9: - 0: 48127 - 15,10: - 0: 65331 - 15,11: - 0: 65535 - 11,12: - 0: 53247 - 12,12: - 0: 65535 - 12,13: - 0: 55534 - 12,14: - 0: 64989 - 12,15: - 0: 61721 - 13,12: - 0: 65535 - 13,13: - 0: 65535 - 13,14: - 0: 65535 - 13,15: - 0: 61951 - 14,12: - 0: 65535 - 14,13: - 0: 29695 - 14,14: - 0: 63351 - 14,15: - 0: 61715 - 15,12: - 0: 65535 - 8,10: - 0: 64512 - 8,11: - 0: 65535 - 9,10: - 0: 65280 - 9,11: - 0: 65535 - 10,10: - 0: 65280 - 10,11: - 0: 65535 - -2,10: - 0: 65297 - 17,1: - 0: 13090 - 17,2: - 0: 13107 - 17,3: - 0: 8739 - -8,9: - 0: 65535 - -6,14: - 0: 65535 - -6,15: - 0: 65535 - -5,14: - 0: 65535 - -5,15: - 0: 65535 - -4,14: - 0: 65262 - -4,15: - 0: 65535 - -3,14: - 0: 65535 - -3,15: - 0: 65535 - 8,12: - 0: 65535 - 9,12: - 0: 65535 - 10,12: - 0: 30719 - -6,16: - 0: 65535 - -6,17: - 0: 65535 - -6,18: - 0: 65535 - -5,16: - 0: 65535 - -5,17: - 0: 61167 - -5,18: - 0: 238 - -4,16: - 0: 65535 - -4,17: - 0: 61167 - -4,18: - 0: 61166 - -3,16: - 0: 39185 - -3,17: - 0: 39321 - -3,18: - 0: 61721 - 15,13: - 0: 61439 - 16,12: - 0: 65535 - 16,13: - 0: 14335 - 17,12: - 0: 30583 - 17,13: - 0: 1 - 16,10: - 0: 65416 - 16,11: - 0: 65535 - 17,10: - 0: 4336 - 17,11: - 0: 32631 - 5,10: - 0: 63232 - 6,10: - 0: 61440 - 7,10: - 0: 63346 - 7,11: - 0: 65535 - 0,10: - 0: 65280 - 0,11: - 0: 65535 - 1,10: - 0: 65408 - -2,11: - 0: 65535 - -1,10: - 0: 65280 - -1,11: - 0: 65535 - 10,9: - 0: 3324 - 7,12: - 0: 61439 - 7,13: - 0: 61422 - 0,12: - 0: 65535 - 0,13: - 0: 65535 - 0,14: - 0: 65535 - 0,15: - 0: 20759 - 16,7: - 0: 62451 - -8,10: - 0: 52975 - -2,12: - 0: 65535 - -2,13: - 0: 65535 - -2,14: - 0: 65535 - -2,15: - 0: 16399 - -1,12: - 0: 65535 - -1,13: - 0: 65535 - -1,14: - 0: 65535 - -1,15: - 0: 65535 - -9,10: - 0: 15 - 8,13: - 0: 65535 - 9,13: - 0: 65535 - 10,13: - 0: 61815 - 17,7: - 0: 13042 - 18,7: - 0: 35064 - 18,6: - 0: 34816 - 19,6: - 0: 20224 - 19,7: - 0: 17476 - -2,16: - 0: 382 - 1: 65152 - -2,17: - 1: 65535 - -2,18: - 0: 65073 - 1: 206 - -1,16: - 0: 15 - 1: 65520 - -1,17: - 1: 65535 - -1,18: - 1: 191 - 0: 65344 - 16,8: - 0: 50245 - 16,9: - 0: 63631 - 17,8: - 0: 65254 - 17,9: - 0: 61183 - 18,8: - 0: 65528 - 18,9: - 0: 65535 - 18,10: - 0: 36761 - 18,11: - 0: 20360 - 19,8: - 0: 30532 - 19,9: - 0: 18303 - 19,11: - 0: 3908 - 19,10: - 0: 17476 - 0,16: - 0: 207 - 1: 65328 - 0,17: - 1: 65535 - 0,18: - 1: 127 - 0: 65408 - 1,16: - 0: 43928 - 1: 4096 - 1,17: - 1: 4369 - 0: 43690 - 1,18: - 0: 63643 - 20,9: - 0: 8751 - 20,11: - 0: 3874 - 20,8: - 0: 8738 - 20,10: - 0: 8738 - 21,8: - 0: 39321 - 21,9: - 0: 39327 - 21,10: - 0: 39321 - 21,11: - 0: 3993 - 22,9: - 0: 17487 - 22,11: - 0: 3908 - 22,8: - 0: 17476 - 22,10: - 0: 17476 - 23,11: - 0: 802 - 23,8: - 0: 8738 - 23,9: - 0: 8739 - 23,10: - 0: 8738 - 20,6: - 0: 12032 - 20,7: - 0: 8738 - 21,6: - 0: 40704 - 21,7: - 0: 39321 - 22,6: - 0: 20224 - 22,7: - 0: 17476 - 23,6: - 0: 8960 - 23,7: - 0: 8738 - -8,11: - 0: 52428 - -7,14: - 0: 206 - -4,-24: - 0: 15 - -4,-23: - 0: 65280 - -4,-22: - 0: 65535 - -3,-24: - 0: 35071 - -3,-23: - 0: 65416 - -3,-22: - 0: 65535 - -2,-24: - 0: 14335 - -2,-23: - 0: 65331 - -2,-22: - 0: 65535 - -2,-21: - 0: 65535 - -1,-24: - 0: 34953 - -8,-24: - 0: 15 - -5,-24: - 0: 63 - 7,15: - 0: 802 - 7,14: - 0: 8738 - 17,-5: - 0: 4096 - -12,-24: - 0: 34952 - -12,-23: - 0: 34952 - -11,-24: - 0: 65535 - -11,-23: - 0: 65535 - -10,-24: - 0: 65535 - -10,-23: - 0: 4369 - -9,-24: - 0: 13119 - -4,-27: - 0: 3840 - -4,-25: - 0: 65535 - -3,-27: - 0: 12032 - -3,-26: - 0: 65058 - -3,-25: - 0: 65535 - -2,-27: - 0: 3840 - -2,-26: - 0: 65280 - -2,-25: - 0: 65535 - -1,-27: - 0: 36608 - -1,-26: - 0: 39048 - -1,-25: - 0: 63903 - -8,-27: - 0: 3840 - -8,-25: - 0: 65535 - -7,-27: - 0: 12032 - -7,-25: - 0: 65535 - -7,-26: - 0: 59938 - -6,-27: - 0: 3840 - -6,-26: - 0: 65280 - -6,-25: - 0: 65535 - -5,-27: - 0: 12032 - -5,-26: - 0: 12834 - -5,-25: - 0: 65535 - -12,-25: - 0: 34944 - -11,-25: - 0: 65520 - -10,-25: - 0: 65535 - -10,-27: - 0: 60928 - -10,-26: - 0: 52430 - -9,-27: - 0: 7936 - -9,-26: - 0: 13073 - -9,-25: - 0: 65535 - -19,-8: - 0: 65535 - -20,-10: - 0: 32768 - -19,-10: - 0: 61986 - -19,-12: - 0: 60066 - -19,-11: - 0: 43754 - -18,-12: - 0: 65530 - -18,-11: - 0: 65535 - -18,-10: - 0: 62702 - -17,-12: - 0: 62256 - -17,-11: - 0: 13311 - -17,-10: - 0: 61440 - -19,-13: - 0: 57344 - -18,-13: - 0: 61440 - -17,-13: - 0: 61986 - 18,-10: - 0: 65535 - 18,-9: - 0: 65535 - 19,-10: - 0: 65529 - 19,-9: - 0: 65535 - 18,-8: - 0: 63487 - 19,-8: - 0: 63625 - 17,-15: - 0: 65535 - 17,-14: - 0: 35071 - 19,-16: - 0: 65535 - 19,-15: - 0: 65535 - 16,-19: - 0: 51440 - 17,-19: - 0: 65296 - 17,-17: - 0: 65535 - 17,-18: - 0: 65535 - 18,-19: - 0: 61696 - 18,-18: - 0: 65535 - 18,-17: - 0: 65535 - 19,-19: - 0: 63688 - 19,-18: - 0: 65467 - 19,-17: - 0: 65535 - 20,-17: - 0: 65375 - 21,-17: - 0: 29775 - 20,-16: - 0: 65535 - 20,-15: - 0: 63487 - 21,-16: - 0: 21845 - 21,-15: - 0: 29767 - 20,-19: - 0: 65535 - 20,-18: - 0: 20479 - 20,-20: - 0: 65024 - 21,-19: - 0: 65535 - 21,-18: - 0: 4095 - 22,-19: - 0: 65535 - 22,-18: - 0: 8191 - 22,-17: - 0: 15 - 21,-20: - 0: 65024 - 17,-7: - 0: 4092 - 18,-7: - 0: 4087 - 19,-7: - 0: 4088 - 22,-20: - 0: 65280 - 23,-20: - 0: 29440 - 23,-19: - 0: 65535 - 23,-18: - 0: 895 - 24,-19: - 0: 30579 - 24,-18: - 0: 3 - 11,-17: - 0: 65520 - 12,-9: - 0: 65535 - 12,-17: - 0: 65535 - 12,-18: - 0: 58111 - 13,-18: - 0: 61440 - 13,-17: - 0: 65535 - 12,-19: - 0: 65527 - 13,-19: - 0: 241 - 20,-14: - 0: 4371 - 20,-13: - 0: 1 - 2,-23: - 0: 3840 - 3,-23: - 0: 65297 - -17,-15: - 0: 11776 - -17,-14: - 0: 8738 - 1,-20: - 0: 17476 - 17,4: - 0: 8738 - 17,5: - 0: 8738 - 17,6: - 0: 8738 - 17,0: - 0: 8738 - 11,13: - 0: 61440 - 15,14: - 0: 4592 - 15,15: - 0: 4369 - 16,14: - 0: 240 - 17,14: - 0: 240 - 18,14: - 0: 116 - 18,12: - 0: 17476 - 18,13: - 0: 17476 - -8,18: - 0: 15 - -7,18: - 0: 15 - -13,-10: - 0: 65535 - 2,-20: - 0: 8 - 3,-20: - 0: 255 - 2,-22: - 0: 52424 - 2,-21: - 0: 52428 - 3,-22: - 0: 65535 - 3,-21: - 0: 65535 - 4,-23: - 0: 32512 - 4,-22: - 0: 65535 - 4,-21: - 0: 65535 - 5,-23: - 0: 36812 - 5,-22: - 0: 63896 - 5,-21: - 0: 39423 - 6,-24: - 0: 65532 - 6,-23: - 0: 65535 - 6,-22: - 0: 65535 - 6,-21: - 0: 65535 - 7,-24: - 0: 65535 - 7,-23: - 0: 65535 - 7,-22: - 0: 65535 - 4,-20: - 0: 127 - 5,-20: - 0: 34952 - 6,-20: - 0: 65535 - 6,-17: - 0: 15 - 8,-24: - 0: 65531 - 8,-23: - 0: 65535 - 8,-22: - 0: 30591 - 9,-24: - 0: 65535 - 9,-23: - 0: 65535 - 9,-22: - 0: 15 - 10,-24: - 0: 65535 - 10,-23: - 0: 65535 - 10,-22: - 0: 15 - 11,-24: - 0: 65529 - 11,-23: - 0: 65535 - 11,-22: - 0: 65535 - 12,-24: - 0: 30527 - 12,-23: - 0: 30583 - 12,-22: - 0: 30711 - 6,-25: - 0: 61440 - 7,-25: - 0: 64784 - 8,-25: - 0: 63232 - 9,-25: - 0: 61440 - 10,-25: - 0: 61440 - 11,-25: - 0: 61440 - 12,-25: - 0: 29760 - 13,-24: - 0: 4369 - 13,-23: - 0: 4369 - 13,-22: - 0: 4369 - 13,-21: - 0: 4369 - 13,-20: - 0: 4369 - 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 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 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 - chunkSize: 4 - type: GridAtmosphere - - id: Origin - type: BecomesStation - - type: OccluderTree - - type: Shuttle - - nextUpdate: 6223.0410787 - type: GridPathfinding - - type: RadiationGridResistance - - nextShake: 0 - shakeTimes: 10 - type: GravityShake - - type: GasTileOverlay -- uid: 2 - type: Grille - components: - - pos: 32.5,-9.5 - parent: 1 - type: Transform -- uid: 3 - type: CableApcExtension - components: - - pos: 18.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4 - type: CableApcExtension - components: - - pos: -5.5,1.5 - parent: 1 - type: Transform -- uid: 5 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-28.5 - parent: 1 - type: Transform -- uid: 6 - type: PosterContrabandBountyHunters - components: - - pos: 14.5,-56.5 - parent: 1 - type: Transform -- uid: 7 - type: RandomPosterContraband - components: - - pos: 7.5,-68.5 - parent: 1 - type: Transform -- uid: 8 - type: CableApcExtension - components: - - pos: -7.5,-26.5 - parent: 1 - type: Transform -- uid: 9 - type: AirlockHeadOfPersonnelLocked - components: - - name: hop office - type: MetaData - - pos: 22.5,-38.5 - parent: 1 - type: Transform -- uid: 10 - type: CableHV - components: - - pos: 15.5,-28.5 - parent: 1 - type: Transform -- uid: 11 - type: CableApcExtension - components: - - pos: 33.5,-17.5 - parent: 1 - type: Transform -- uid: 12 - type: CableApcExtension - components: - - pos: 15.5,-32.5 - parent: 1 - type: Transform -- uid: 13 - type: APCHighCapacity - components: - - pos: 24.5,24.5 - parent: 1 - type: Transform -- uid: 14 - type: CableApcExtension - components: - - pos: -10.5,-26.5 - parent: 1 - type: Transform -- uid: 15 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16 - type: MaintenanceFluffSpawner - components: - - pos: 15.5,-66.5 - parent: 1 - type: Transform -- uid: 17 - type: CableApcExtension - components: - - pos: 14.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18 - type: CableApcExtension - components: - - pos: 27.5,-60.5 - parent: 1 - type: Transform -- uid: 19 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-64.5 - parent: 1 - type: Transform -- uid: 20 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 28.5,-63.5 - parent: 1 - type: Transform -- uid: 21 - type: Rack - components: - - pos: 29.5,-13.5 - parent: 1 - type: Transform -- uid: 22 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,-10.5 - parent: 1 - type: Transform -- uid: 23 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24 - type: SurveillanceCameraCommand - components: - - pos: -34.5,-18.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: chief engineer - type: SurveillanceCamera -- uid: 25 - type: WallSolid - components: - - pos: 37.5,-56.5 - parent: 1 - type: Transform -- uid: 26 - type: ClosetEmergencyFilledRandom - components: - - pos: 28.5,4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 27 - type: WallSolid - components: - - pos: 17.5,-31.5 - parent: 1 - type: Transform -- uid: 28 - type: AirlockMaintGlassLocked - components: - - pos: 56.5,35.5 - parent: 1 - type: Transform -- uid: 29 - type: WallSolid - components: - - pos: -4.5,15.5 - parent: 1 - type: Transform -- uid: 30 - type: WallSolid - components: - - pos: -11.5,-3.5 - parent: 1 - type: Transform -- uid: 31 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 23.5,-57.5 - parent: 1 - type: Transform -- uid: 32 - type: ReinforcedPlasmaWindow - components: - - rot: 3.141592653589793 rad - pos: 28.5,-20.5 - parent: 1 - type: Transform -- uid: 33 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 35.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 34 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-72.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 35 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -11.5,7.5 - parent: 1 - type: Transform -- uid: 36 - type: WallReinforced - components: - - pos: 11.5,-30.5 - parent: 1 - type: Transform -- uid: 37 - type: WetFloorSign - components: - - pos: -7.8693366,-23.228895 - parent: 1 - type: Transform -- uid: 38 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-75.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 39 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 40 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 41 - type: Firelock - components: - - pos: 10.5,-64.5 - parent: 1 - type: Transform -- uid: 42 - type: CableHV - components: - - pos: 7.5,-26.5 - parent: 1 - type: Transform -- uid: 43 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.503365,-39.44397 - parent: 1 - type: Transform -- uid: 44 - type: CableHV - components: - - pos: 27.5,-42.5 - parent: 1 - type: Transform -- uid: 45 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 48.5,-30.5 - parent: 1 - type: Transform -- uid: 46 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 37.5,3.5 - parent: 1 - type: Transform -- uid: 47 - type: GasPipeStraight - components: - - pos: 28.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 48 - type: WetFloorSign - components: - - pos: 16.379074,-41.325726 - parent: 1 - type: Transform -- uid: 49 - type: CableApcExtension - components: - - pos: 7.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 50 - type: CableApcExtension - components: - - pos: 7.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 51 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 15.5,8.5 - parent: 1 - type: Transform -- uid: 52 - type: Grille - components: - - pos: 19.5,-0.5 - parent: 1 - type: Transform -- uid: 53 - type: Grille - components: - - pos: -24.5,-91.5 - parent: 1 - type: Transform -- uid: 54 - type: Grille - components: - - pos: -18.5,-88.5 - parent: 1 - type: Transform -- uid: 55 - type: Grille - components: - - pos: -18.5,-58.5 - parent: 1 - type: Transform -- uid: 56 - type: WallSolid - components: - - pos: 40.5,-0.5 - parent: 1 - type: Transform -- uid: 57 - type: TableReinforced - components: - - pos: 2.5,4.5 - parent: 1 - type: Transform -- uid: 58 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-9.5 - parent: 1 - type: Transform -- uid: 59 - type: StoolBar - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 60 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,9.5 - parent: 1 - type: Transform -- uid: 61 - type: WallSolid - components: - - pos: -17.5,-34.5 - parent: 1 - type: Transform -- uid: 62 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-41.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: atmospherics - type: SurveillanceCamera -- uid: 63 - type: Grille - components: - - pos: 31.5,-15.5 - parent: 1 - type: Transform -- uid: 64 - type: CableApcExtension - components: - - pos: 15.5,-18.5 - parent: 1 - type: Transform -- uid: 65 - type: CableApcExtension - components: - - pos: -47.5,38.5 - parent: 1 - type: Transform -- uid: 66 - type: Grille - components: - - pos: -9.5,-55.5 - parent: 1 - type: Transform -- uid: 67 - type: Grille - components: - - pos: -12.5,-55.5 - parent: 1 - type: Transform -- uid: 68 - type: CableHV - components: - - pos: 8.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 69 - type: WindowReinforcedDirectional - components: - - pos: 16.5,-53.5 - parent: 1 - type: Transform -- uid: 70 - type: SpawnPointMedicalDoctor - components: - - pos: -14.5,-46.5 - parent: 1 - type: Transform -- uid: 71 - type: CableMV - components: - - pos: -6.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 72 - type: SignRedSeven - components: - - pos: 43.5,12.5 - parent: 1 - type: Transform -- uid: 73 - type: GasPipeStraight - components: - - pos: -18.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 74 - type: PlushieSharkBlue - components: - - pos: -69.39385,-44.387226 - parent: 1 - type: Transform -- uid: 75 - type: Window - components: - - pos: 27.5,-55.5 - parent: 1 - type: Transform -- uid: 76 - type: ReinforcedWindow - components: - - pos: 69.5,-42.5 - parent: 1 - type: Transform -- uid: 77 - type: WallReinforced - components: - - pos: 72.5,-42.5 - parent: 1 - type: Transform -- uid: 78 - type: Table - components: - - pos: 0.5,-5.5 - parent: 1 - type: Transform -- uid: 79 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 2.5,7.5 - parent: 1 - type: Transform -- uid: 80 - type: WallReinforced - components: - - pos: 71.5,-42.5 - parent: 1 - type: Transform -- uid: 81 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -11.5,8.5 - parent: 1 - type: Transform -- uid: 82 - type: ReinforcedWindow - components: - - pos: 68.5,-42.5 - parent: 1 - type: Transform -- uid: 83 - type: SubstationBasic - components: - - pos: -34.5,-3.5 - parent: 1 - type: Transform -- uid: 84 - type: CableApcExtension - components: - - pos: 0.5,-41.5 - parent: 1 - type: Transform -- uid: 85 - type: CableApcExtension - components: - - pos: -1.5,-41.5 - parent: 1 - type: Transform -- uid: 86 - type: CableApcExtension - components: - - pos: 15.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 87 - type: Grille - components: - - pos: -4.5,-56.5 - parent: 1 - type: Transform -- uid: 88 - type: ReinforcedPlasmaWindow - components: - - pos: -23.5,2.5 - parent: 1 - type: Transform -- uid: 89 - type: CableHV - components: - - pos: -1.5,-66.5 - parent: 1 - type: Transform -- uid: 90 - type: WindowReinforcedDirectional - components: - - pos: -11.5,6.5 - parent: 1 - type: Transform -- uid: 91 - type: Chair - components: - - pos: 14.5,-72.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 92 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,9.5 - parent: 1 - type: Transform -- uid: 93 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-79.5 - parent: 1 - type: Transform -- uid: 94 - type: CableApcExtension - components: - - pos: 22.5,2.5 - parent: 1 - type: Transform -- uid: 95 - type: ReinforcedWindow - components: - - pos: 78.5,-45.5 - parent: 1 - type: Transform -- uid: 96 - type: CableApcExtension - components: - - pos: -4.5,-41.5 - parent: 1 - type: Transform -- uid: 97 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 98 - type: Grille - components: - - pos: 22.5,-20.5 - parent: 1 - type: Transform -- uid: 99 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,58.5 - parent: 1 - type: Transform -- uid: 100 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 26.5,-61.5 - parent: 1 - type: Transform -- uid: 101 - type: BedsheetClown - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform -- uid: 102 - type: CableApcExtension - components: - - pos: 32.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 103 - type: Grille - components: - - pos: 21.5,5.5 - parent: 1 - type: Transform -- uid: 104 - type: Grille - components: - - pos: 23.5,5.5 - parent: 1 - type: Transform -- uid: 105 - type: CableApcExtension - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform -- uid: 106 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -0.5,-71.5 - parent: 1 - type: Transform -- uid: 107 - type: GasPipeStraight - components: - - pos: 46.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 108 - type: CableApcExtension - components: - - pos: -6.5,-75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 109 - type: GasVentScrubber - components: - - pos: 25.5,-51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 110 - type: WindowReinforcedDirectional - components: - - pos: 15.5,-53.5 - parent: 1 - type: Transform -- uid: 111 - type: CableApcExtension - components: - - pos: 32.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 112 - type: CableHV - components: - - pos: 15.5,-33.5 - parent: 1 - type: Transform -- uid: 113 - type: Grille - components: - - pos: 25.5,5.5 - parent: 1 - type: Transform -- uid: 114 - type: WetFloorSign - components: - - pos: -7.8537116,-23.36952 - parent: 1 - type: Transform -- uid: 115 - type: CableHV - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform -- uid: 116 - type: BarSign - components: - - desc: Recently relicensed after a long closure. - name: The Emergency Rum Party - type: MetaData - - pos: 8.5,4.5 - parent: 1 - type: Transform - - current: EmergencyRumParty - type: BarSign -- uid: 117 - type: CableApcExtension - components: - - pos: 15.5,-47.5 - parent: 1 - type: Transform -- uid: 118 - type: CableApcExtension - components: - - pos: 6.5,-65.5 - parent: 1 - type: Transform -- uid: 119 - type: CableApcExtension - components: - - pos: -4.5,-37.5 - parent: 1 - type: Transform -- uid: 120 - type: CableApcExtension - components: - - pos: 8.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 121 - type: FirelockGlass - components: - - pos: -69.5,-23.5 - parent: 1 - type: Transform -- uid: 122 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: -41.5,-74.5 - parent: 1 - type: Transform -- uid: 123 - type: FirelockGlass - components: - - pos: -19.5,-39.5 - parent: 1 - type: Transform -- uid: 124 - type: CableApcExtension - components: - - pos: -12.5,-45.5 - parent: 1 - type: Transform -- uid: 125 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-77.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 126 - type: CableMV - components: - - pos: 18.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 127 - type: PottedPlant26 - components: - - pos: 6.5,-52.5 - parent: 1 - type: Transform -- uid: 128 - type: Grille - components: - - pos: 3.5,-39.5 - parent: 1 - type: Transform -- uid: 129 - type: ReinforcedWindow - components: - - pos: 3.5,-39.5 - parent: 1 - type: Transform -- uid: 130 - type: TrashBananaPeel - components: - - pos: 1.7019457,-5.2798405 - parent: 1 - type: Transform -- uid: 131 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,57.5 - parent: 1 - type: Transform -- uid: 132 - type: ReinforcedWindow - components: - - pos: 70.5,-42.5 - parent: 1 - type: Transform -- uid: 133 - type: CableApcExtension - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform -- uid: 134 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 14.5,-47.5 - parent: 1 - type: Transform -- uid: 135 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 73.5,-27.5 - parent: 1 - type: Transform -- uid: 136 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,-9.5 - parent: 1 - type: Transform -- uid: 137 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 33.5,-61.5 - parent: 1 - type: Transform -- uid: 138 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 28.5,-62.5 - parent: 1 - type: Transform -- uid: 139 - type: CableApcExtension - components: - - pos: 14.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 140 - type: CableApcExtension - components: - - pos: 15.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 141 - type: CableMV - components: - - pos: 10.5,-55.5 - parent: 1 - type: Transform -- uid: 142 - type: Catwalk - components: - - pos: 8.5,-52.5 - parent: 1 - type: Transform -- uid: 143 - type: Window - components: - - pos: 27.5,-54.5 - parent: 1 - type: Transform -- uid: 144 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 145 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-57.5 - parent: 1 - type: Transform -- uid: 146 - type: CableHV - components: - - pos: -11.5,-26.5 - parent: 1 - type: Transform -- uid: 147 - type: CableHV - components: - - pos: 2.5,-42.5 - parent: 1 - type: Transform -- uid: 148 - type: Table - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform -- uid: 149 - type: SurveillanceCameraScience - components: - - rot: 1.5707963267948966 rad - pos: 76.5,-48.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: robotics - type: SurveillanceCamera -- uid: 150 - type: Table - components: - - pos: 33.5,-12.5 - parent: 1 - type: Transform -- uid: 151 - type: CableApcExtension - components: - - pos: 27.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 152 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 31.5,-64.5 - parent: 1 - type: Transform -- uid: 153 - type: CableApcExtension - components: - - pos: 31.5,-16.5 - parent: 1 - type: Transform -- uid: 154 - type: CableHV - components: - - pos: 6.5,-42.5 - parent: 1 - type: Transform -- uid: 155 - type: CableApcExtension - components: - - pos: 16.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 156 - type: CableApcExtension - components: - - pos: 20.5,-52.5 - parent: 1 - type: Transform -- uid: 157 - type: CableApcExtension - components: - - pos: 21.5,-17.5 - parent: 1 - type: Transform -- uid: 158 - type: CableApcExtension - components: - - pos: 15.5,-17.5 - parent: 1 - type: Transform -- uid: 159 - type: CableApcExtension - components: - - pos: 16.5,-17.5 - parent: 1 - type: Transform -- uid: 160 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.503365,-39.44397 - parent: 1 - type: Transform -- uid: 161 - type: Catwalk - components: - - pos: 65.5,-25.5 - parent: 1 - type: Transform -- uid: 162 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: -2.5,-71.5 - parent: 1 - type: Transform -- uid: 163 - type: ClothingHeadHelmetEVA - components: - - pos: 33.740833,-13.298456 - parent: 1 - type: Transform -- uid: 164 - type: FirelockGlass - components: - - pos: -19.5,-68.5 - parent: 1 - type: Transform -- uid: 165 - type: CableHV - components: - - pos: 0.5,-42.5 - parent: 1 - type: Transform -- uid: 166 - type: CableHV - components: - - pos: 4.5,-42.5 - parent: 1 - type: Transform -- uid: 167 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-38.5 - parent: 1 - type: Transform -- uid: 168 - type: Railing - components: - - pos: 24.5,-1.5 - parent: 1 - type: Transform -- uid: 169 - type: WallSolid - components: - - pos: 37.5,-53.5 - parent: 1 - type: Transform -- uid: 170 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 171 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-79.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 172 - type: ClosetEmergencyFilledRandom - components: - - pos: -52.5,-80.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 173 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-78.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 174 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-77.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 175 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 20.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 176 - type: CableApcExtension - components: - - pos: -8.5,3.5 - parent: 1 - type: Transform -- uid: 177 - type: CableHV - components: - - pos: 8.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 178 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -11.5,7.5 - parent: 1 - type: Transform -- uid: 179 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -11.5,6.5 - parent: 1 - type: Transform -- uid: 180 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -11.5,6.5 - parent: 1 - type: Transform -- uid: 181 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -11.5,7.5 - parent: 1 - type: Transform -- uid: 182 - type: CableApcExtension - components: - - pos: -5.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 183 - type: Barricade - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-64.5 - parent: 1 - type: Transform -- uid: 184 - type: Grille - components: - - pos: -7.5,-56.5 - parent: 1 - type: Transform -- uid: 185 - type: DisposalPipe - components: - - pos: 12.5,6.5 - parent: 1 - type: Transform -- uid: 186 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 79.5,-26.5 - parent: 1 - type: Transform -- uid: 187 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 188 - type: Grille - components: - - pos: 1.5,-47.5 - parent: 1 - type: Transform -- uid: 189 - type: Barricade - components: - - rot: 3.141592653589793 rad - pos: 9.5,-52.5 - parent: 1 - type: Transform -- uid: 190 - type: CarpetSBlue - components: - - pos: 28.5,-37.5 - parent: 1 - type: Transform -- uid: 191 - type: Grille - components: - - pos: 29.5,26.5 - parent: 1 - type: Transform -- uid: 192 - type: Brutepack - components: - - rot: -1.5707963267948966 rad - pos: 4.5876236,-9.851763 - parent: 1 - type: Transform -- uid: 193 - type: Grille - components: - - pos: -13.5,-56.5 - parent: 1 - type: Transform -- uid: 194 - type: BedsheetMime - components: - - pos: 1.5,-12.5 - parent: 1 - type: Transform -- uid: 195 - type: CableApcExtension - components: - - pos: 30.5,-62.5 - parent: 1 - type: Transform -- uid: 196 - type: CableApcExtension - components: - - pos: 15.5,-33.5 - parent: 1 - type: Transform -- uid: 197 - type: SurveillanceCameraCommand - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-55.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: chief medical officer - type: SurveillanceCamera -- uid: 198 - type: CableApcExtension - components: - - pos: 18.5,-17.5 - parent: 1 - type: Transform -- uid: 199 - type: CableHV - components: - - pos: -5.5,-39.5 - parent: 1 - type: Transform -- uid: 200 - type: CableApcExtension - components: - - pos: 20.5,-53.5 - parent: 1 - type: Transform -- uid: 201 - type: CableHV - components: - - pos: 8.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 202 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 22.5,-55.5 - parent: 1 - type: Transform -- uid: 203 - type: Grille - components: - - pos: -7.5,-57.5 - parent: 1 - type: Transform -- uid: 204 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 4.5,21.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'head of security ' - type: SurveillanceCamera -- uid: 205 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 206 - type: CableHV - components: - - pos: -1.5,-42.5 - parent: 1 - type: Transform -- uid: 207 - type: CableHV - components: - - pos: -1.5,-26.5 - parent: 1 - type: Transform -- uid: 208 - type: CableHV - components: - - pos: 15.5,-26.5 - parent: 1 - type: Transform -- uid: 209 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 33.5,-63.5 - parent: 1 - type: Transform -- uid: 210 - type: GasPipeStraight - components: - - pos: 46.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 211 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 37.5,6.5 - parent: 1 - type: Transform -- uid: 212 - type: WallReinforced - components: - - pos: 66.5,-42.5 - parent: 1 - type: Transform -- uid: 213 - type: GasPipeTJunction - components: - - pos: 28.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 214 - type: RandomSpawner - components: - - pos: 34.5,15.5 - parent: 1 - type: Transform -- uid: 215 - type: Catwalk - components: - - pos: 31.5,-14.5 - parent: 1 - type: Transform -- uid: 216 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-74.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 217 - type: ClosetEmergencyFilledRandom - components: - - pos: 30.5,-21.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 218 - type: WallReinforced - components: - - pos: 6.5,-71.5 - parent: 1 - type: Transform -- uid: 219 - type: TableWood - components: - - pos: 22.5,10.5 - parent: 1 - type: Transform -- uid: 220 - type: PortableScrubber - components: - - pos: -9.5,-68.5 - parent: 1 - type: Transform -- uid: 221 - type: RandomSpawner - components: - - pos: 16.5,-65.5 - parent: 1 - type: Transform -- uid: 222 - type: FirelockGlass - components: - - pos: 10.5,-26.5 - parent: 1 - type: Transform -- uid: 223 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 1 - type: Transform -- uid: 224 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,-61.5 - parent: 1 - type: Transform -- uid: 225 - type: Grille - components: - - pos: 7.5,-59.5 - parent: 1 - type: Transform -- uid: 226 - type: Grille - components: - - pos: -18.5,-68.5 - parent: 1 - type: Transform -- uid: 227 - type: CableMV - components: - - pos: 37.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 228 - type: GasVentPump - components: - - pos: -1.5,-59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 229 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 230 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-23.5 - parent: 1 - type: Transform -- uid: 231 - type: CableApcExtension - components: - - pos: 19.5,-52.5 - parent: 1 - type: Transform -- uid: 232 - type: CableHV - components: - - pos: -1.5,-64.5 - parent: 1 - type: Transform -- uid: 233 - type: WallReinforced - components: - - pos: 67.5,-42.5 - parent: 1 - type: Transform -- uid: 234 - type: SodiumLightTube - components: - - pos: -42.50719,-90.42425 - parent: 1 - type: Transform -- uid: 235 - type: CableMV - components: - - pos: 3.5,-49.5 - parent: 1 - type: Transform -- uid: 236 - type: SpawnPointHeadOfPersonnel - components: - - pos: 27.5,-35.5 - parent: 1 - type: Transform -- uid: 237 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-73.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 238 - type: Grille - components: - - pos: -20.5,-68.5 - parent: 1 - type: Transform -- uid: 239 - type: CableApcExtension - components: - - pos: 21.5,-8.5 - parent: 1 - type: Transform -- uid: 240 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 1 - type: Transform -- uid: 241 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 242 - type: GasPipeTJunction - components: - - pos: -8.5,-53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 243 - type: CableApcExtension - components: - - pos: 25.5,-57.5 - parent: 1 - type: Transform -- uid: 244 - type: CableApcExtension - components: - - pos: 15.5,-34.5 - parent: 1 - type: Transform -- uid: 245 - type: GasPipeStraight - components: - - pos: 34.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 246 - type: CableHV - components: - - pos: -12.5,-75.5 - parent: 1 - type: Transform -- uid: 247 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 15.5,-51.5 - parent: 1 - type: Transform -- uid: 248 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 249 - type: Brutepack - components: - - rot: -1.5707963267948966 rad - pos: 4.7438736,-9.898638 - parent: 1 - type: Transform -- uid: 250 - type: Chair - components: - - pos: -23.5,-38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 251 - type: AirlockGlass - components: - - name: lawyer office - type: MetaData - - rot: 3.141592653589793 rad - pos: 35.5,-3.5 - parent: 1 - type: Transform -- uid: 252 - type: HydroponicsToolHatchet - components: - - pos: 9.725508,-56.44578 - parent: 1 - type: Transform -- uid: 253 - type: WindowReinforcedDirectional - components: - - pos: -28.5,-78.5 - parent: 1 - type: Transform -- uid: 254 - type: CrayonBox - components: - - pos: 4.384584,-10.869311 - parent: 1 - type: Transform -- uid: 255 - type: Soap - components: - - pos: 4.478334,-9.306811 - parent: 1 - type: Transform -- uid: 256 - type: Bed - components: - - pos: 1.5,-12.5 - parent: 1 - type: Transform -- uid: 257 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-11.5 - parent: 1 - type: Transform -- uid: 258 - type: Catwalk - components: - - pos: -11.5,-15.5 - parent: 1 - type: Transform -- uid: 259 - type: ToolboxMechanicalFilled - components: - - pos: -15.996035,12.5348 - parent: 1 - type: Transform -- uid: 260 - type: ClothingHeadHatJesterAlt - components: - - pos: -15.170754,12.526345 - parent: 1 - type: Transform -- uid: 261 - type: MaintenanceToolSpawner - components: - - pos: -13.5,12.5 - parent: 1 - type: Transform -- uid: 262 - type: ClosetEmergencyFilledRandom - components: - - pos: -12.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 263 - type: ClosetFireFilled - components: - - pos: -13.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 264 - type: Rack - components: - - pos: 13.5,-72.5 - parent: 1 - type: Transform -- uid: 265 - type: CableHV - components: - - pos: 32.5,-42.5 - parent: 1 - type: Transform -- uid: 266 - type: Grille - components: - - pos: -3.5,-44.5 - parent: 1 - type: Transform -- uid: 267 - type: CableHV - components: - - pos: 14.5,-46.5 - parent: 1 - type: Transform -- uid: 268 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -20.5,65.5 - parent: 1 - type: Transform -- uid: 269 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -20.5,67.5 - parent: 1 - type: Transform -- uid: 270 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: -20.5,66.5 - parent: 1 - type: Transform -- uid: 271 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -14.5,67.5 - parent: 1 - type: Transform -- uid: 272 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 273 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 18.5,11.5 - parent: 1 - type: Transform -- uid: 274 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 18.5,13.5 - parent: 1 - type: Transform -- uid: 275 - type: AirlockGlass - components: - - pos: 31.5,7.5 - parent: 1 - type: Transform -- uid: 276 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,12.5 - parent: 1 - type: Transform -- uid: 277 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 1 - type: Transform -- uid: 278 - type: ClothingShoesBootsMag - components: - - pos: 33.707775,-12.558357 - parent: 1 - type: Transform -- uid: 279 - type: AirlockMaintLocked - components: - - pos: 9.5,-40.5 - parent: 1 - type: Transform -- uid: 280 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-83.5 - parent: 1 - type: Transform -- uid: 281 - type: WallSolid - components: - - pos: -11.5,-72.5 - parent: 1 - type: Transform -- uid: 282 - type: CableApcExtension - components: - - pos: -0.5,-54.5 - parent: 1 - type: Transform -- uid: 283 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 284 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 285 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 286 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 287 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -14.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 288 - type: SpawnPointChiefMedicalOfficer - components: - - pos: -18.5,-55.5 - parent: 1 - type: Transform -- uid: 289 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 290 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 291 - type: GasPipeTJunction - components: - - pos: -12.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 292 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 293 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 294 - type: GasPipeStraight - components: - - pos: -7.5,-48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 295 - type: GasPipeStraight - components: - - pos: -7.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 296 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 297 - type: GasPipeBend - components: - - pos: -7.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 298 - type: GasPipeStraight - components: - - pos: -0.5,-45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 299 - type: GasPipeStraight - components: - - pos: -0.5,-44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 300 - type: GasPipeStraight - components: - - pos: -0.5,-43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 301 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 302 - type: GasPipeStraight - components: - - pos: -8.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 303 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 304 - type: GasPipeStraight - components: - - pos: -12.5,-61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 305 - type: GasPipeBend - components: - - pos: -6.5,-63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 306 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 307 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 308 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 309 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-20.5 - parent: 1 - type: Transform -- uid: 310 - type: DisposalPipe - components: - - pos: 36.5,-25.5 - parent: 1 - type: Transform -- uid: 311 - type: DisposalPipe - components: - - pos: 36.5,-22.5 - parent: 1 - type: Transform -- uid: 312 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-21.5 - parent: 1 - type: Transform -- uid: 313 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 1 - type: Transform -- uid: 314 - type: GasVentPump - components: - - pos: 25.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 315 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 316 - type: GasVentScrubber - components: - - pos: 22.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 317 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 318 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 319 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 320 - type: BoxSyringe - components: - - pos: 8.848293,-62.473377 - parent: 1 - type: Transform -- uid: 321 - type: WallSolid - components: - - pos: 11.5,-61.5 - parent: 1 - type: Transform -- uid: 322 - type: Table - components: - - pos: 8.5,-58.5 - parent: 1 - type: Transform -- uid: 323 - type: WallSolid - components: - - pos: 11.5,-63.5 - parent: 1 - type: Transform -- uid: 324 - type: WallSolid - components: - - pos: 9.5,-63.5 - parent: 1 - type: Transform -- uid: 325 - type: WallSolid - components: - - pos: 7.5,-63.5 - parent: 1 - type: Transform -- uid: 326 - type: DisposalPipe - components: - - pos: 16.5,-42.5 - parent: 1 - type: Transform -- uid: 327 - type: DisposalPipe - components: - - pos: 16.5,-41.5 - parent: 1 - type: Transform -- uid: 328 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-43.5 - parent: 1 - type: Transform -- uid: 329 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-43.5 - parent: 1 - type: Transform -- uid: 330 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-43.5 - parent: 1 - type: Transform -- uid: 331 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-43.5 - parent: 1 - type: Transform -- uid: 332 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-43.5 - parent: 1 - type: Transform -- uid: 333 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-43.5 - parent: 1 - type: Transform -- uid: 334 - type: chem_dispenser - components: - - pos: 4.5,-45.5 - parent: 1 - type: Transform -- uid: 335 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-43.5 - parent: 1 - type: Transform -- uid: 336 - type: ComfyChair - components: - - pos: -19.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 337 - type: TableWood - components: - - pos: -19.5,-56.5 - parent: 1 - type: Transform -- uid: 338 - type: FloorDrain - components: - - pos: 3.5,-48.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 339 - type: WindoorChemistryLocked - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-48.5 - parent: 1 - type: Transform -- uid: 340 - type: AirlockMaintMedLocked - components: - - name: surgery - type: MetaData - - rot: -1.5707963267948966 rad - pos: -1.5,-68.5 - parent: 1 - type: Transform -- uid: 341 - type: AirlockMaintMedLocked - components: - - name: storeroom - type: MetaData - - rot: -1.5707963267948966 rad - pos: -8.5,-67.5 - parent: 1 - type: Transform -- uid: 342 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-70.5 - parent: 1 - type: Transform -- uid: 343 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-69.5 - parent: 1 - type: Transform -- uid: 344 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-70.5 - parent: 1 - type: Transform -- uid: 345 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-68.5 - parent: 1 - type: Transform -- uid: 346 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-68.5 - parent: 1 - type: Transform -- uid: 347 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-68.5 - parent: 1 - type: Transform -- uid: 348 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-67.5 - parent: 1 - type: Transform -- uid: 349 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-67.5 - parent: 1 - type: Transform -- uid: 350 - type: WallSolid - components: - - pos: 1.5,-64.5 - parent: 1 - type: Transform -- uid: 351 - type: WallSolid - components: - - pos: 1.5,-63.5 - parent: 1 - type: Transform -- uid: 352 - type: Window - components: - - pos: -13.5,-57.5 - parent: 1 - type: Transform -- uid: 353 - type: AirlockMedicalGlassLocked - components: - - name: cloning - type: MetaData - - rot: 3.141592653589793 rad - pos: -5.5,-62.5 - parent: 1 - type: Transform -- uid: 354 - type: WallSolid - components: - - pos: -17.5,-63.5 - parent: 1 - type: Transform -- uid: 355 - type: WallReinforced - components: - - pos: 30.5,-26.5 - parent: 1 - type: Transform -- uid: 356 - type: WallReinforced - components: - - pos: 19.5,-26.5 - parent: 1 - type: Transform -- uid: 357 - type: WallReinforced - components: - - pos: 18.5,-67.5 - parent: 1 - type: Transform -- uid: 358 - type: CableMV - components: - - pos: 6.5,-46.5 - parent: 1 - type: Transform -- uid: 359 - type: AirlockMaintChemLocked - components: - - name: chemistry - type: MetaData - - rot: -1.5707963267948966 rad - pos: 7.5,-49.5 - parent: 1 - type: Transform -- uid: 360 - type: WallSolid - components: - - pos: 7.5,-50.5 - parent: 1 - type: Transform -- uid: 361 - type: WallSolid - components: - - pos: 7.5,-51.5 - parent: 1 - type: Transform -- uid: 362 - type: WallSolid - components: - - pos: 6.5,-51.5 - parent: 1 - type: Transform -- uid: 363 - type: WallSolid - components: - - pos: 4.5,-51.5 - parent: 1 - type: Transform -- uid: 364 - type: IntercomMedical - components: - - pos: -13.5,-58.5 - parent: 1 - type: Transform -- uid: 365 - type: Window - components: - - pos: -9.5,-58.5 - parent: 1 - type: Transform -- uid: 366 - type: Window - components: - - pos: -4.5,-56.5 - parent: 1 - type: Transform -- uid: 367 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-83.5 - parent: 1 - type: Transform -- uid: 368 - type: CableApcExtension - components: - - pos: 0.5,10.5 - parent: 1 - type: Transform -- uid: 369 - type: CableApcExtension - components: - - pos: 5.5,14.5 - parent: 1 - type: Transform -- uid: 370 - type: CableApcExtension - components: - - pos: -1.5,14.5 - parent: 1 - type: Transform -- uid: 371 - type: CableMV - components: - - pos: 32.5,0.5 - parent: 1 - type: Transform -- uid: 372 - type: CableMV - components: - - pos: 32.5,1.5 - parent: 1 - type: Transform -- uid: 373 - type: ClothingHandsGlovesBoxingBlue - components: - - pos: 21.737816,3.36442 - parent: 1 - type: Transform -- uid: 374 - type: GasPipeStraight - components: - - pos: 46.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 375 - type: GasPipeStraight - components: - - pos: 46.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 376 - type: GasPipeStraight - components: - - pos: 46.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 377 - type: GasPipeStraight - components: - - pos: 46.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 378 - type: CableApcExtension - components: - - pos: 24.5,2.5 - parent: 1 - type: Transform -- uid: 379 - type: CableApcExtension - components: - - pos: 32.5,0.5 - parent: 1 - type: Transform -- uid: 380 - type: CableApcExtension - components: - - pos: 33.5,2.5 - parent: 1 - type: Transform -- uid: 381 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 8.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 382 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 7.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 383 - type: GasPipeStraight - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 384 - type: GasPipeStraight - components: - - pos: 8.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 385 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 8.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 386 - type: Firelock - components: - - pos: 39.5,-26.5 - parent: 1 - type: Transform -- uid: 387 - type: Firelock - components: - - pos: 39.5,-25.5 - parent: 1 - type: Transform -- uid: 388 - type: PaintingNightHawks - components: - - pos: -9.5,-34.5 - parent: 1 - type: Transform -- uid: 389 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 390 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 391 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 392 - type: CableHV - components: - - pos: 21.5,-42.5 - parent: 1 - type: Transform -- uid: 393 - type: CableHV - components: - - pos: 38.5,-30.5 - parent: 1 - type: Transform -- uid: 394 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 26.5,24.5 - parent: 1 - type: Transform -- uid: 395 - type: CableApcExtension - components: - - pos: 3.5,-10.5 - parent: 1 - type: Transform -- uid: 396 - type: GasPipeBend - components: - - pos: 36.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 397 - type: CableApcExtension - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform -- uid: 398 - type: CableApcExtension - components: - - pos: 1.5,-7.5 - parent: 1 - type: Transform -- uid: 399 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 400 - type: CableApcExtension - components: - - pos: 10.5,-6.5 - parent: 1 - type: Transform -- uid: 401 - type: CableApcExtension - components: - - pos: -3.5,11.5 - parent: 1 - type: Transform -- uid: 402 - type: CableApcExtension - components: - - pos: -4.5,6.5 - parent: 1 - type: Transform -- uid: 403 - type: CableApcExtension - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform -- uid: 404 - type: MaterialCloth1 - components: - - pos: 27.373407,-34.25779 - parent: 1 - type: Transform -- uid: 405 - type: CableApcExtension - components: - - pos: -4.5,-47.5 - parent: 1 - type: Transform -- uid: 406 - type: CableApcExtension - components: - - pos: 1.5,-48.5 - parent: 1 - type: Transform -- uid: 407 - type: CableApcExtension - components: - - pos: -1.5,-48.5 - parent: 1 - type: Transform -- uid: 408 - type: CableApcExtension - components: - - pos: -1.5,-50.5 - parent: 1 - type: Transform -- uid: 409 - type: CableMV - components: - - pos: -2.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 410 - type: CableMV - components: - - pos: -2.5,-52.5 - parent: 1 - type: Transform -- uid: 411 - type: CableMV - components: - - pos: -2.5,-53.5 - parent: 1 - type: Transform -- uid: 412 - type: CableApcExtension - components: - - pos: 4.5,-54.5 - parent: 1 - type: Transform -- uid: 413 - type: CableApcExtension - components: - - pos: 0.5,-54.5 - parent: 1 - type: Transform -- uid: 414 - type: CableApcExtension - components: - - pos: -15.5,-61.5 - parent: 1 - type: Transform -- uid: 415 - type: CableApcExtension - components: - - pos: -6.5,-62.5 - parent: 1 - type: Transform -- uid: 416 - type: TableReinforced - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform -- uid: 417 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-75.5 - parent: 1 - type: Transform -- uid: 418 - type: WallReinforced - components: - - pos: -16.5,-80.5 - parent: 1 - type: Transform -- uid: 419 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-88.5 - parent: 1 - type: Transform -- uid: 420 - type: WallSolid - components: - - pos: -12.5,-72.5 - parent: 1 - type: Transform -- uid: 421 - type: WallSolid - components: - - pos: -14.5,-70.5 - parent: 1 - type: Transform -- uid: 422 - type: WallSolid - components: - - pos: 5.5,-4.5 - parent: 1 - type: Transform -- uid: 423 - type: WallReinforced - components: - - pos: -13.5,-80.5 - parent: 1 - type: Transform -- uid: 424 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-29.5 - parent: 1 - type: Transform -- uid: 425 - type: DisposalPipe - components: - - pos: 21.5,-33.5 - parent: 1 - type: Transform -- uid: 426 - type: DisposalPipe - components: - - pos: 21.5,-35.5 - parent: 1 - type: Transform -- uid: 427 - type: GasVentScrubber - components: - - pos: 11.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 428 - type: WallSolid - components: - - pos: -3.5,-74.5 - parent: 1 - type: Transform -- uid: 429 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 430 - type: Grille - components: - - pos: 0.5,-24.5 - parent: 1 - type: Transform -- uid: 431 - type: Catwalk - components: - - pos: -7.5,-75.5 - parent: 1 - type: Transform -- uid: 432 - type: CableApcExtension - components: - - pos: -8.5,6.5 - parent: 1 - type: Transform -- uid: 433 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 434 - type: ToyNuke - components: - - pos: 48.50609,-28.933285 - parent: 1 - type: Transform -- uid: 435 - type: CableMV - components: - - pos: 40.5,-26.5 - parent: 1 - type: Transform -- uid: 436 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 7.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 437 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 438 - type: CableMV - components: - - pos: 31.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 439 - type: GasPipeStraight - components: - - pos: 30.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 440 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 31.5,-19.5 - parent: 1 - type: Transform -- uid: 441 - type: CableApcExtension - components: - - pos: -0.5,14.5 - parent: 1 - type: Transform -- uid: 442 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 443 - type: ClothingHeadHatTophat - components: - - pos: 22.506405,10.969767 - parent: 1 - type: Transform -- uid: 444 - type: WallReinforced - components: - - pos: 38.5,17.5 - parent: 1 - type: Transform -- uid: 445 - type: ReinforcedWindow - components: - - pos: 32.5,-9.5 - parent: 1 - type: Transform -- uid: 446 - type: SpawnPointChef - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform -- uid: 447 - type: Catwalk - components: - - pos: 32.5,-11.5 - parent: 1 - type: Transform -- uid: 448 - type: ClothingHeadHatBeaverHat - components: - - pos: 22.537655,11.563517 - parent: 1 - type: Transform -- uid: 449 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 450 - type: CableApcExtension - components: - - pos: -5.5,-42.5 - parent: 1 - type: Transform -- uid: 451 - type: Grille - components: - - pos: 12.5,-34.5 - parent: 1 - type: Transform -- uid: 452 - type: CableHV - components: - - pos: -12.5,-71.5 - parent: 1 - type: Transform -- uid: 453 - type: SubstationBasic - components: - - pos: -12.5,-69.5 - parent: 1 - type: Transform -- uid: 454 - type: CableMV - components: - - pos: -6.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 455 - type: CableMV - components: - - pos: -6.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 456 - type: PaperBin10 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-21.5 - parent: 1 - type: Transform -- uid: 457 - type: NitrogenCanister - components: - - pos: -8.5,-72.5 - parent: 1 - type: Transform -- uid: 458 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.503365,-39.428345 - parent: 1 - type: Transform -- uid: 459 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 460 - type: WallSolid - components: - - pos: 9.5,-68.5 - parent: 1 - type: Transform -- uid: 461 - type: Chair - components: - - pos: 4.5,-52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 462 - type: PoweredSmallLight - components: - - pos: 20.5,-52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 463 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 464 - type: PoweredSmallLight - components: - - pos: 16.5,-52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 465 - type: WindoorSecure - components: - - pos: 17.5,-53.5 - parent: 1 - type: Transform -- uid: 466 - type: ClothingHeadHatCone - components: - - pos: 20.465803,-52.422585 - parent: 1 - type: Transform -- uid: 467 - type: ClothingHeadHatHardhatOrange - components: - - pos: 15.782594,-64.08794 - parent: 1 - type: Transform -- uid: 468 - type: Cigarette - components: - - pos: 15.438844,-64.32231 - parent: 1 - type: Transform -- uid: 469 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-27.5 - parent: 1 - type: Transform -- uid: 470 - type: CableApcExtension - components: - - pos: 36.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 471 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 25.5,8.5 - parent: 1 - type: Transform -- uid: 472 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-17.5 - parent: 1 - type: Transform -- uid: 473 - type: DisposalBend - components: - - pos: 21.5,-29.5 - parent: 1 - type: Transform -- uid: 474 - type: DisposalPipe - components: - - pos: 21.5,-30.5 - parent: 1 - type: Transform -- uid: 475 - type: DisposalPipe - components: - - pos: 21.5,-31.5 - parent: 1 - type: Transform -- uid: 476 - type: DisposalPipe - components: - - pos: 21.5,-34.5 - parent: 1 - type: Transform -- uid: 477 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-36.5 - parent: 1 - type: Transform -- uid: 478 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-37.5 - parent: 1 - type: Transform -- uid: 479 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 21.5,-36.5 - parent: 1 - type: Transform -- uid: 480 - type: VendingMachineCart - components: - - flags: SessionSpecific - type: MetaData - - pos: 28.5,-34.5 - parent: 1 - type: Transform -- uid: 481 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-17.5 - parent: 1 - type: Transform -- uid: 482 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 1 - type: Transform -- uid: 483 - type: WallReinforced - components: - - pos: 30.5,9.5 - parent: 1 - type: Transform -- uid: 484 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 485 - type: GasPipeBend - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 486 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 487 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 488 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 489 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 490 - type: GasPipeStraight - components: - - pos: 3.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 491 - type: GasPipeStraight - components: - - pos: 3.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 492 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 493 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 22.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 494 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 495 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 496 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 497 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 498 - type: GasPipeBend - components: - - pos: 29.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 499 - type: GasPipeStraight - components: - - pos: 29.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 500 - type: GasPipeStraight - components: - - pos: 29.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 501 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 29.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 502 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 503 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -1.5,9.5 - parent: 1 - type: Transform -- uid: 504 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-21.5 - parent: 1 - type: Transform -- uid: 505 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-44.5 - parent: 1 - type: Transform -- uid: 506 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-44.5 - parent: 1 - type: Transform -- uid: 507 - type: Brutepack - components: - - pos: -9.633343,-56.47309 - parent: 1 - type: Transform -- uid: 508 - type: Scalpel - components: - - pos: 0.4585637,-63.810703 - parent: 1 - type: Transform -- uid: 509 - type: Hemostat - components: - - pos: 0.5210637,-64.93571 - parent: 1 - type: Transform -- uid: 510 - type: WallSolid - components: - - pos: 1.5,-67.5 - parent: 1 - type: Transform -- uid: 511 - type: TableCounterMetal - components: - - pos: 0.5,-67.5 - parent: 1 - type: Transform -- uid: 512 - type: WallSolid - components: - - pos: 5.5,-63.5 - parent: 1 - type: Transform -- uid: 513 - type: CableApcExtension - components: - - pos: 29.5,32.5 - parent: 1 - type: Transform -- uid: 514 - type: AirlockChiefMedicalOfficerLocked - components: - - name: cmo office - type: MetaData - - rot: -1.5707963267948966 rad - pos: -19.5,-58.5 - parent: 1 - type: Transform -- uid: 515 - type: ComputerMedicalRecords - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-55.5 - parent: 1 - type: Transform -- uid: 516 - type: CableHV - components: - - pos: 4.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 517 - type: CableHV - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 518 - type: CableHV - components: - - pos: 2.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 519 - type: CableHV - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 520 - type: CableHV - components: - - pos: 1.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 521 - type: CableHV - components: - - pos: 0.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 522 - type: WallSolid - components: - - pos: 13.5,-59.5 - parent: 1 - type: Transform -- uid: 523 - type: CableMV - components: - - pos: 27.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 524 - type: ReinforcedWindow - components: - - pos: 3.5,-28.5 - parent: 1 - type: Transform -- uid: 525 - type: GasPipeStraight - components: - - pos: 24.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 526 - type: ClosetEmergencyFilledRandom - components: - - pos: -18.5,-51.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 527 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: 9.5,5.5 - parent: 1 - type: Transform -- uid: 528 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-23.5 - parent: 1 - type: Transform -- uid: 529 - type: MagazinePistolHighVelocity - components: - - pos: 32.305683,32.48245 - parent: 1 - type: Transform -- uid: 530 - type: SurveillanceCameraGeneral - components: - - pos: -6.5,-27.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: janitorial closet - type: SurveillanceCamera -- uid: 531 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 532 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -12.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 533 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 534 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -0.5,-65.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 535 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 2.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 536 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 537 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 538 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 539 - type: GasPipeBend - components: - - pos: -4.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 540 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 541 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 542 - type: GasPipeTJunction - components: - - pos: -5.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 543 - type: GasPipeTJunction - components: - - pos: -8.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 544 - type: GasPipeStraight - components: - - pos: -8.5,-62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 545 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 546 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 547 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 548 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 549 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 550 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 551 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 552 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 553 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 554 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 555 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 556 - type: GasPipeStraight - components: - - pos: -3.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 557 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 558 - type: CarpetOrange - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 1 - type: Transform -- uid: 559 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-10.5 - parent: 1 - type: Transform -- uid: 560 - type: d10Dice - components: - - pos: 9.458234,-7.2284737 - parent: 1 - type: Transform -- uid: 561 - type: FigureSpawner - components: - - pos: 9.5,-6.5 - parent: 1 - type: Transform -- uid: 562 - type: d8Dice - components: - - pos: 10.036359,-7.0722237 - parent: 1 - type: Transform -- uid: 563 - type: SpawnPointLibrarian - components: - - pos: 11.5,-9.5 - parent: 1 - type: Transform -- uid: 564 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-12.5 - parent: 1 - type: Transform -- uid: 565 - type: BookDetective - components: - - pos: 8.262031,-12.4473095 - parent: 1 - type: Transform -- uid: 566 - type: CableApcExtension - components: - - pos: 62.5,-6.5 - parent: 1 - type: Transform -- uid: 567 - type: CableMV - components: - - pos: 4.5,-49.5 - parent: 1 - type: Transform -- uid: 568 - type: CableMV - components: - - pos: 3.5,-52.5 - parent: 1 - type: Transform -- uid: 569 - type: CableMV - components: - - pos: -0.5,-53.5 - parent: 1 - type: Transform -- uid: 570 - type: CableApcExtension - components: - - pos: -1.5,-51.5 - parent: 1 - type: Transform -- uid: 571 - type: CableApcExtension - components: - - pos: 6.5,-48.5 - parent: 1 - type: Transform -- uid: 572 - type: CableApcExtension - components: - - pos: -1.5,-45.5 - parent: 1 - type: Transform -- uid: 573 - type: CableApcExtension - components: - - pos: -3.5,-52.5 - parent: 1 - type: Transform -- uid: 574 - type: CableApcExtension - components: - - pos: -4.5,-54.5 - parent: 1 - type: Transform -- uid: 575 - type: CableApcExtension - components: - - pos: -7.5,-54.5 - parent: 1 - type: Transform -- uid: 576 - type: CableApcExtension - components: - - pos: -9.5,-54.5 - parent: 1 - type: Transform -- uid: 577 - type: CableApcExtension - components: - - pos: 1.5,-54.5 - parent: 1 - type: Transform -- uid: 578 - type: CableApcExtension - components: - - pos: 2.5,-60.5 - parent: 1 - type: Transform -- uid: 579 - type: CableApcExtension - components: - - pos: -13.5,-62.5 - parent: 1 - type: Transform -- uid: 580 - type: CableApcExtension - components: - - pos: -14.5,-66.5 - parent: 1 - type: Transform -- uid: 581 - type: CableApcExtension - components: - - pos: -15.5,-65.5 - parent: 1 - type: Transform -- uid: 582 - type: CableApcExtension - components: - - pos: -15.5,-54.5 - parent: 1 - type: Transform -- uid: 583 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-46.5 - parent: 1 - type: Transform -- uid: 584 - type: WallSolid - components: - - pos: -21.5,-64.5 - parent: 1 - type: Transform -- uid: 585 - type: WallSolid - components: - - pos: -21.5,-66.5 - parent: 1 - type: Transform -- uid: 586 - type: WallSolid - components: - - pos: -21.5,-67.5 - parent: 1 - type: Transform -- uid: 587 - type: APCHighCapacity - components: - - pos: -21.5,-68.5 - parent: 1 - type: Transform -- uid: 588 - type: WallSolid - components: - - pos: -21.5,-68.5 - parent: 1 - type: Transform -- uid: 589 - type: WallSolid - components: - - pos: -22.5,-68.5 - parent: 1 - type: Transform -- uid: 590 - type: WallSolid - components: - - pos: -25.5,-68.5 - parent: 1 - type: Transform -- uid: 591 - type: WallSolid - components: - - pos: -26.5,-69.5 - parent: 1 - type: Transform -- uid: 592 - type: AirlockVirologyGlassLocked - components: - - name: zombie containment - type: MetaData - - pos: -20.5,-80.5 - parent: 1 - type: Transform -- uid: 593 - type: WallSolid - components: - - pos: -23.5,-74.5 - parent: 1 - type: Transform -- uid: 594 - type: WallSolid - components: - - pos: -22.5,-74.5 - parent: 1 - type: Transform -- uid: 595 - type: WallSolid - components: - - pos: -16.5,-71.5 - parent: 1 - type: Transform -- uid: 596 - type: WallSolid - components: - - pos: -21.5,-75.5 - parent: 1 - type: Transform -- uid: 597 - type: WallSolid - components: - - pos: -10.5,-74.5 - parent: 1 - type: Transform -- uid: 598 - type: WallSolid - components: - - pos: -8.5,-73.5 - parent: 1 - type: Transform -- uid: 599 - type: CableApcExtension - components: - - pos: 2.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 600 - type: WallSolid - components: - - pos: 3.5,-69.5 - parent: 1 - type: Transform -- uid: 601 - type: WallSolid - components: - - pos: 7.5,-68.5 - parent: 1 - type: Transform -- uid: 602 - type: WallSolid - components: - - pos: 7.5,-66.5 - parent: 1 - type: Transform -- uid: 603 - type: WallSolid - components: - - pos: 9.5,-66.5 - parent: 1 - type: Transform -- uid: 604 - type: WallSolid - components: - - pos: -19.5,-74.5 - parent: 1 - type: Transform -- uid: 605 - type: WallReinforced - components: - - pos: -14.5,-80.5 - parent: 1 - type: Transform -- uid: 606 - type: WallReinforced - components: - - pos: -16.5,-74.5 - parent: 1 - type: Transform -- uid: 607 - type: WallReinforced - components: - - pos: -13.5,-75.5 - parent: 1 - type: Transform -- uid: 608 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-77.5 - parent: 1 - type: Transform -- uid: 609 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 14.5,-15.5 - parent: 1 - type: Transform -- uid: 610 - type: WindowReinforcedDirectional - components: - - pos: -17.5,-76.5 - parent: 1 - type: Transform -- uid: 611 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-80.5 - parent: 1 - type: Transform -- uid: 612 - type: WallReinforced - components: - - pos: -27.5,-84.5 - parent: 1 - type: Transform -- uid: 613 - type: WallReinforced - components: - - pos: -27.5,-85.5 - parent: 1 - type: Transform -- uid: 614 - type: WindowReinforcedDirectional - components: - - pos: -30.5,-78.5 - parent: 1 - type: Transform -- uid: 615 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-83.5 - parent: 1 - type: Transform -- uid: 616 - type: WallReinforced - components: - - pos: -27.5,-90.5 - parent: 1 - type: Transform -- uid: 617 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-80.5 - parent: 1 - type: Transform -- uid: 618 - type: AirlockVirologyGlassLocked - components: - - name: zombie containment - type: MetaData - - pos: -18.5,-74.5 - parent: 1 - type: Transform -- uid: 619 - type: AirlockVirologyGlassLocked - components: - - name: virology testing - type: MetaData - - rot: -1.5707963267948966 rad - pos: -23.5,-81.5 - parent: 1 - type: Transform -- uid: 620 - type: WallSolid - components: - - pos: 9.5,-13.5 - parent: 1 - type: Transform -- uid: 621 - type: ClosetFireFilled - components: - - pos: -11.5,-45.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 622 - type: Table - components: - - pos: -25.5,-78.5 - parent: 1 - type: Transform -- uid: 623 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-44.5 - parent: 1 - type: Transform -- uid: 624 - type: PosterLegitSecWatch - components: - - pos: 10.5,15.5 - parent: 1 - type: Transform -- uid: 625 - type: TableWood - components: - - pos: 59.5,-1.5 - parent: 1 - type: Transform -- uid: 626 - type: LampGold - components: - - pos: -22.537891,-69.31316 - parent: 1 - type: Transform -- uid: 627 - type: Beaker - components: - - pos: -25.200409,-78.7421 - parent: 1 - type: Transform -- uid: 628 - type: AirlockVirologyLocked - components: - - name: morgue - type: MetaData - - pos: -14.5,-68.5 - parent: 1 - type: Transform -- uid: 629 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-43.5 - parent: 1 - type: Transform -- uid: 630 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-43.5 - parent: 1 - type: Transform -- uid: 631 - type: DisposalPipe - components: - - pos: -13.5,-45.5 - parent: 1 - type: Transform -- uid: 632 - type: DisposalPipe - components: - - pos: -17.5,-55.5 - parent: 1 - type: Transform -- uid: 633 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-57.5 - parent: 1 - type: Transform -- uid: 634 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-60.5 - parent: 1 - type: Transform -- uid: 635 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-60.5 - parent: 1 - type: Transform -- uid: 636 - type: DisposalPipe - components: - - pos: -19.5,-61.5 - parent: 1 - type: Transform -- uid: 637 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 638 - type: GasPipeStraight - components: - - pos: -20.5,-83.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 639 - type: GasPipeStraight - components: - - pos: -20.5,-74.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 640 - type: GasPipeStraight - components: - - pos: -25.5,-75.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 641 - type: GasPipeStraight - components: - - pos: -25.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 642 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 643 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-90.5 - parent: 1 - type: Transform -- uid: 644 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-53.5 - parent: 1 - type: Transform -- uid: 645 - type: CableMV - components: - - pos: -14.5,-69.5 - parent: 1 - type: Transform -- uid: 646 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -24.5,-80.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 647 - type: Table - components: - - pos: -19.5,-85.5 - parent: 1 - type: Transform -- uid: 648 - type: ClothingOuterHardsuitSecurity - components: - - pos: 26.430464,29.55731 - parent: 1 - type: Transform -- uid: 649 - type: ClothingOuterHardsuitSecurity - components: - - pos: 26.399214,27.541685 - parent: 1 - type: Transform -- uid: 650 - type: ClothingOuterHardsuitSecurity - components: - - pos: 32.430466,27.55731 - parent: 1 - type: Transform -- uid: 651 - type: ClothingOuterHardsuitSecurity - components: - - pos: 32.47734,29.52606 - parent: 1 - type: Transform -- uid: 652 - type: AirSensor - components: - - pos: -20.5,-64.5 - parent: 1 - type: Transform -- uid: 653 - type: SpawnMobMouse - components: - - pos: 2.5,-69.5 - parent: 1 - type: Transform -- uid: 654 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 43.5,49.5 - parent: 1 - type: Transform -- uid: 655 - type: Lamp - components: - - rot: -1.5707963267948966 rad - pos: -3.8543606,-48.096176 - parent: 1 - type: Transform -- uid: 656 - type: Catwalk - components: - - pos: -1.5,-83.5 - parent: 1 - type: Transform -- uid: 657 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-23.5 - parent: 1 - type: Transform -- uid: 658 - type: CableApcExtension - components: - - pos: 16.5,-29.5 - parent: 1 - type: Transform -- uid: 659 - type: chem_master - components: - - pos: 2.5,-45.5 - parent: 1 - type: Transform -- uid: 660 - type: CableApcExtension - components: - - pos: 1.5,-10.5 - parent: 1 - type: Transform -- uid: 661 - type: CableApcExtension - components: - - pos: 3.5,-11.5 - parent: 1 - type: Transform -- uid: 662 - type: GasPipeStraight - components: - - pos: 35.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 663 - type: CableHV - components: - - pos: 39.5,-28.5 - parent: 1 - type: Transform -- uid: 664 - type: ComputerBroken - components: - - rot: -1.5707963267948966 rad - pos: 52.5,37.5 - parent: 1 - type: Transform -- uid: 665 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,24.5 - parent: 1 - type: Transform -- uid: 666 - type: CableApcExtension - components: - - pos: 11.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 667 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 668 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 20.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 669 - type: Rack - components: - - pos: 10.5,-16.5 - parent: 1 - type: Transform -- uid: 670 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 671 - type: FirelockGlass - components: - - pos: 24.5,-15.5 - parent: 1 - type: Transform -- uid: 672 - type: ReinforcedWindow - components: - - pos: 19.5,-15.5 - parent: 1 - type: Transform -- uid: 673 - type: CableHV - components: - - pos: 25.5,-42.5 - parent: 1 - type: Transform -- uid: 674 - type: CableHV - components: - - pos: 24.5,-42.5 - parent: 1 - type: Transform -- uid: 675 - type: CableHV - components: - - pos: 23.5,-42.5 - parent: 1 - type: Transform -- uid: 676 - type: CableHV - components: - - pos: 22.5,-42.5 - parent: 1 - type: Transform -- uid: 677 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 27.5,19.5 - parent: 1 - type: Transform -- uid: 678 - type: TrashBananaPeel - components: - - pos: 2.4993362,-10.809314 - parent: 1 - type: Transform -- uid: 679 - type: CableHV - components: - - pos: 25.5,-10.5 - parent: 1 - type: Transform -- uid: 680 - type: CableHV - components: - - pos: 24.5,-5.5 - parent: 1 - type: Transform -- uid: 681 - type: CableApcExtension - components: - - pos: 2.5,-26.5 - parent: 1 - type: Transform -- uid: 682 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 683 - type: CableHV - components: - - pos: 12.5,-42.5 - parent: 1 - type: Transform -- uid: 684 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 15.5,13.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -57047.77 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 3189 - Close: - - port: Off - uid: 3189 - Toggle: [] - type: SignalReceiver -- uid: 685 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 33.5,32.5 - parent: 1 - type: Transform -- uid: 686 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-0.5 - parent: 1 - type: Transform -- uid: 687 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 31.5,3.5 - parent: 1 - type: Transform -- uid: 688 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 16.5,15.5 - parent: 1 - type: Transform -- uid: 689 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: 15.5,3.5 - parent: 1 - type: Transform -- uid: 690 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -3.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 691 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 22.5,5.5 - parent: 1 - type: Transform -- uid: 692 - type: DisposalBend - components: - - pos: 13.5,2.5 - parent: 1 - type: Transform -- uid: 693 - type: Grille - components: - - pos: -1.5,49.5 - parent: 1 - type: Transform -- uid: 694 - type: PottedPlant14 - components: - - pos: 36.5,-16.5 - parent: 1 - type: Transform -- uid: 695 - type: WallSolid - components: - - pos: 7.5,6.5 - parent: 1 - type: Transform -- uid: 696 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,2.5 - parent: 1 - type: Transform -- uid: 697 - type: BoxPillCanister - components: - - pos: 2.3484178,-49.701572 - parent: 1 - type: Transform -- uid: 698 - type: AtmosDeviceFanTiny - components: - - pos: 0.5,10.5 - parent: 1 - type: Transform -- uid: 699 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 27.5,-4.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 700 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 62.5,14.5 - parent: 1 - type: Transform -- uid: 701 - type: WindowReinforcedDirectional - components: - - pos: -4.5,4.5 - parent: 1 - type: Transform -- uid: 702 - type: WallReinforced - components: - - pos: 42.5,51.5 - parent: 1 - type: Transform -- uid: 703 - type: CableApcExtension - components: - - pos: -10.5,-21.5 - parent: 1 - type: Transform -- uid: 704 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -1.5,8.5 - parent: 1 - type: Transform -- uid: 705 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-29.5 - parent: 1 - type: Transform -- uid: 706 - type: FirelockGlass - components: - - pos: 11.5,4.5 - parent: 1 - type: Transform -- uid: 707 - type: FirelockGlass - components: - - pos: 11.5,-2.5 - parent: 1 - type: Transform -- uid: 708 - type: WallReinforced - components: - - pos: -15.5,-2.5 - parent: 1 - type: Transform -- uid: 709 - type: WallReinforced - components: - - pos: -18.5,-86.5 - parent: 1 - type: Transform -- uid: 710 - type: ReinforcedWindow - components: - - pos: -18.5,-89.5 - parent: 1 - type: Transform -- uid: 711 - type: AirlockVirologyLocked - components: - - pos: -19.5,-65.5 - parent: 1 - type: Transform -- uid: 712 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -23.5,-86.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 713 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-80.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 714 - type: WindoorMedicalLocked - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-79.5 - parent: 1 - type: Transform -- uid: 715 - type: WallSolid - components: - - pos: 6.5,-68.5 - parent: 1 - type: Transform -- uid: 716 - type: CableApcExtension - components: - - pos: -8.5,-45.5 - parent: 1 - type: Transform -- uid: 717 - type: CableApcExtension - components: - - pos: 3.5,-62.5 - parent: 1 - type: Transform -- uid: 718 - type: ClosetL3VirologyFilled - components: - - pos: -18.5,-63.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 719 - type: CableApcExtension - components: - - pos: -5.5,-60.5 - parent: 1 - type: Transform -- uid: 720 - type: Table - components: - - pos: 1.5,-5.5 - parent: 1 - type: Transform -- uid: 721 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 722 - type: CableHV - components: - - pos: -14.5,34.5 - parent: 1 - type: Transform -- uid: 723 - type: DisposalTrunk - components: - - pos: 52.5,3.5 - parent: 1 - type: Transform -- uid: 724 - type: WallSolid - components: - - pos: 15.5,4.5 - parent: 1 - type: Transform -- uid: 725 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 61.5,17.5 - parent: 1 - type: Transform -- uid: 726 - type: ComputerResearchAndDevelopment - components: - - rot: 3.141592653589793 rad - pos: 61.5,-55.5 - parent: 1 - type: Transform -- uid: 727 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 728 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 27.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 729 - type: CableHV - components: - - pos: 8.5,-16.5 - parent: 1 - type: Transform -- uid: 730 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 2.5,6.5 - parent: 1 - type: Transform -- uid: 731 - type: WallSolid - components: - - pos: -8.5,-34.5 - parent: 1 - type: Transform -- uid: 732 - type: CableHV - components: - - pos: 4.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 733 - type: DrinkDetFlask - components: - - pos: 20.044777,-12.206265 - parent: 1 - type: Transform -- uid: 734 - type: AirlockEngineeringLocked - components: - - pos: -19.5,-1.5 - parent: 1 - type: Transform -- uid: 735 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 6.5,-46.5 - parent: 1 - type: Transform -- uid: 736 - type: Window - components: - - pos: -21.5,-13.5 - parent: 1 - type: Transform -- uid: 737 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-4.5 - parent: 1 - type: Transform -- uid: 738 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-13.5 - parent: 1 - type: Transform -- uid: 739 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-26.5 - parent: 1 - type: Transform -- uid: 740 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,36.5 - parent: 1 - type: Transform -- uid: 741 - type: WallSolid - components: - - pos: 5.5,-6.5 - parent: 1 - type: Transform -- uid: 742 - type: Soap - components: - - pos: -13.533843,-21.411894 - parent: 1 - type: Transform -- uid: 743 - type: WeaponCapacitorRecharger - components: - - pos: 28.5,-21.5 - parent: 1 - type: Transform -- uid: 744 - type: Bed - components: - - pos: 23.5,-35.5 - parent: 1 - type: Transform -- uid: 745 - type: Lamp - components: - - rot: 1.5707963267948966 rad - pos: 24.558033,-21.226107 - parent: 1 - type: Transform -- uid: 746 - type: CableApcExtension - components: - - pos: -1.5,-46.5 - parent: 1 - type: Transform -- uid: 747 - type: CarpetOrange - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-5.5 - parent: 1 - type: Transform -- uid: 748 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.503365,-39.428345 - parent: 1 - type: Transform -- uid: 749 - type: GasPipeStraight - components: - - pos: -3.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 750 - type: GasPipeStraight - components: - - pos: -3.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 751 - type: GasPipeStraight - components: - - pos: -3.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 752 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 753 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 754 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 755 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 756 - type: GasPipeStraight - components: - - pos: 3.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 757 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 758 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 759 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 760 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 761 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 762 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 763 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 764 - type: GasVentPump - components: - - pos: 2.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 765 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 7.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 766 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 767 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 768 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 769 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 770 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 771 - type: GasPipeStraight - components: - - pos: 15.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 772 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 31.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 773 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 774 - type: CableApcExtension - components: - - pos: -2.5,-45.5 - parent: 1 - type: Transform -- uid: 775 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 776 - type: CableApcExtension - components: - - pos: 12.5,2.5 - parent: 1 - type: Transform -- uid: 777 - type: CableApcExtension - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform -- uid: 778 - type: CableApcExtension - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform -- uid: 779 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 780 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 781 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 782 - type: LampBanana - components: - - pos: 4.618959,-10.256847 - parent: 1 - type: Transform -- uid: 783 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 1 - type: Transform -- uid: 784 - type: WallReinforced - components: - - pos: -22.5,-48.5 - parent: 1 - type: Transform -- uid: 785 - type: CheapRollerBed - components: - - pos: -9.460541,-47.24853 - parent: 1 - type: Transform -- uid: 786 - type: Catwalk - components: - - pos: -12.5,-15.5 - parent: 1 - type: Transform -- uid: 787 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-1.5 - parent: 1 - type: Transform -- uid: 788 - type: CableApcExtension - components: - - pos: -12.5,-22.5 - parent: 1 - type: Transform -- uid: 789 - type: FirelockGlass - components: - - pos: 38.5,-69.5 - parent: 1 - type: Transform -- uid: 790 - type: SignElectricalMed - components: - - pos: -12.5,-70.5 - parent: 1 - type: Transform -- uid: 791 - type: CableHV - components: - - pos: -4.5,-18.5 - parent: 1 - type: Transform -- uid: 792 - type: CableApcExtension - components: - - pos: 22.5,-36.5 - parent: 1 - type: Transform -- uid: 793 - type: CableApcExtension - components: - - pos: -13.5,-22.5 - parent: 1 - type: Transform -- uid: 794 - type: CableApcExtension - components: - - pos: 30.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 795 - type: CableApcExtension - components: - - pos: 22.5,-29.5 - parent: 1 - type: Transform -- uid: 796 - type: CableApcExtension - components: - - pos: 20.5,-23.5 - parent: 1 - type: Transform -- uid: 797 - type: CableApcExtension - components: - - pos: 29.5,-28.5 - parent: 1 - type: Transform -- uid: 798 - type: CableApcExtension - components: - - pos: 25.5,-23.5 - parent: 1 - type: Transform -- uid: 799 - type: CableMV - components: - - pos: 24.5,-28.5 - parent: 1 - type: Transform -- uid: 800 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 31.5,-33.5 - parent: 1 - type: Transform -- uid: 801 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 22.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 802 - type: Chair - components: - - pos: -5.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 803 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 804 - type: GasPipeStraight - components: - - pos: 20.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 805 - type: GasPipeStraight - components: - - pos: 20.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 806 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 807 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 808 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 809 - type: DisposalUnit - components: - - pos: 25.5,-34.5 - parent: 1 - type: Transform -- uid: 810 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 811 - type: SignMedical - components: - - pos: -2.5,-44.5 - parent: 1 - type: Transform -- uid: 812 - type: SignGravity - components: - - pos: -18.5,-3.5 - parent: 1 - type: Transform -- uid: 813 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 8.5,14.5 - parent: 1 - type: Transform -- uid: 814 - type: SignLibrary - components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform -- uid: 815 - type: FloorDrain - components: - - pos: -1.5,-66.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 816 - type: ReinforcedWindow - components: - - pos: 7.5,-59.5 - parent: 1 - type: Transform -- uid: 817 - type: WallSolid - components: - - pos: 7.5,-62.5 - parent: 1 - type: Transform -- uid: 818 - type: WallSolid - components: - - pos: 13.5,-54.5 - parent: 1 - type: Transform -- uid: 819 - type: TableReinforced - components: - - pos: 26.5,32.5 - parent: 1 - type: Transform -- uid: 820 - type: WallSolid - components: - - pos: -17.5,-64.5 - parent: 1 - type: Transform -- uid: 821 - type: WallSolid - components: - - pos: 7.5,-55.5 - parent: 1 - type: Transform -- uid: 822 - type: TableWood - components: - - pos: -4.5,-48.5 - parent: 1 - type: Transform -- uid: 823 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 15.5,-38.5 - parent: 1 - type: Transform -- uid: 824 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 2.5,21.5 - parent: 1 - type: Transform -- uid: 825 - type: WallSolid - components: - - pos: -10.5,-2.5 - parent: 1 - type: Transform -- uid: 826 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 827 - type: CableApcExtension - components: - - pos: 9.5,-6.5 - parent: 1 - type: Transform -- uid: 828 - type: CableApcExtension - components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform -- uid: 829 - type: CableApcExtension - components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform -- uid: 830 - type: CableApcExtension - components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform -- uid: 831 - type: CableApcExtension - components: - - pos: 7.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 832 - type: CableApcExtension - components: - - pos: 7.5,-7.5 - parent: 1 - type: Transform -- uid: 833 - type: GasPipeStraight - components: - - pos: 19.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 834 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 36.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 835 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 22.5,15.5 - parent: 1 - type: Transform -- uid: 836 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,15.5 - parent: 1 - type: Transform -- uid: 837 - type: WallReinforced - components: - - pos: 3.5,15.5 - parent: 1 - type: Transform -- uid: 838 - type: VendingMachineChemDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 4.5,-50.5 - parent: 1 - type: Transform -- uid: 839 - type: WallReinforced - components: - - pos: 29.5,-33.5 - parent: 1 - type: Transform -- uid: 840 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 841 - type: BoxSyringe - components: - - pos: 2.3484178,-50.248447 - parent: 1 - type: Transform -- uid: 842 - type: DisposalPipe - components: - - pos: 6.5,-46.5 - parent: 1 - type: Transform -- uid: 843 - type: BoxPillCanister - components: - - pos: 2.5984178,-49.873447 - parent: 1 - type: Transform -- uid: 844 - type: BoxBeaker - components: - - pos: 2.6140428,-49.310947 - parent: 1 - type: Transform -- uid: 845 - type: Table - components: - - pos: 29.5,-39.5 - parent: 1 - type: Transform -- uid: 846 - type: GasVentPump - components: - - pos: 20.5,-40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 847 - type: BoxBeaker - components: - - pos: 2.3640428,-49.201572 - parent: 1 - type: Transform -- uid: 848 - type: Table - components: - - pos: 0.5,-4.5 - parent: 1 - type: Transform -- uid: 849 - type: DisposalBend - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform -- uid: 850 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 1 - type: Transform -- uid: 851 - type: TableReinforced - components: - - pos: -6.5,4.5 - parent: 1 - type: Transform -- uid: 852 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 - parent: 1 - type: Transform -- uid: 853 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-13.5 - parent: 1 - type: Transform -- uid: 854 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-4.5 - parent: 1 - type: Transform -- uid: 855 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 14.5,10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 856 - type: Catwalk - components: - - pos: -5.5,-69.5 - parent: 1 - type: Transform -- uid: 857 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,-2.5 - parent: 1 - type: Transform -- uid: 858 - type: CableMV - components: - - pos: 45.5,-64.5 - parent: 1 - type: Transform -- uid: 859 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-29.5 - parent: 1 - type: Transform -- uid: 860 - type: DisposalPipe - components: - - pos: 19.5,-41.5 - parent: 1 - type: Transform -- uid: 861 - type: WallSolid - components: - - pos: 37.5,-39.5 - parent: 1 - type: Transform -- uid: 862 - type: CableApcExtension - components: - - pos: 22.5,-40.5 - parent: 1 - type: Transform -- uid: 863 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 864 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 17.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 865 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 866 - type: SinkWide - components: - - pos: 1.5,9.5 - parent: 1 - type: Transform -- uid: 867 - type: Table - components: - - pos: 2.5,-5.5 - parent: 1 - type: Transform -- uid: 868 - type: GasPipeStraight - components: - - pos: 0.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 869 - type: WallSolid - components: - - pos: -6.5,-5.5 - parent: 1 - type: Transform -- uid: 870 - type: SpawnMobMcGriff - components: - - pos: 8.5,19.5 - parent: 1 - type: Transform -- uid: 871 - type: SpawnPointBotanist - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform -- uid: 872 - type: CableMV - components: - - pos: 5.5,-45.5 - parent: 1 - type: Transform -- uid: 873 - type: CableMV - components: - - pos: 5.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 874 - type: CableMV - components: - - pos: 4.5,-43.5 - parent: 1 - type: Transform -- uid: 875 - type: CableMV - components: - - pos: 3.5,-43.5 - parent: 1 - type: Transform -- uid: 876 - type: CableMV - components: - - pos: 3.5,-42.5 - parent: 1 - type: Transform -- uid: 877 - type: CableMV - components: - - pos: 2.5,-42.5 - parent: 1 - type: Transform -- uid: 878 - type: CableMV - components: - - pos: 1.5,-42.5 - parent: 1 - type: Transform -- uid: 879 - type: CableMV - components: - - pos: 0.5,-42.5 - parent: 1 - type: Transform -- uid: 880 - type: CableMV - components: - - pos: 0.5,-41.5 - parent: 1 - type: Transform -- uid: 881 - type: CableMV - components: - - pos: 0.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 882 - type: APCHighCapacity - components: - - pos: 0.5,-40.5 - parent: 1 - type: Transform -- uid: 883 - type: CableApcExtension - components: - - pos: 4.5,-41.5 - parent: 1 - type: Transform -- uid: 884 - type: Cautery - components: - - rot: -1.5707963267948966 rad - pos: 0.5414771,-66.9678 - parent: 1 - type: Transform -- uid: 885 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 6.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 886 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 6.5,-16.5 - parent: 1 - type: Transform -- uid: 887 - type: DisposalPipe - components: - - pos: -9.5,1.5 - parent: 1 - type: Transform -- uid: 888 - type: AirlockHydroponicsLocked - components: - - pos: -3.5,9.5 - parent: 1 - type: Transform -- uid: 889 - type: DisposalTrunk - components: - - pos: -9.5,5.5 - parent: 1 - type: Transform -- uid: 890 - type: Grille - components: - - pos: 7.5,18.5 - parent: 1 - type: Transform -- uid: 891 - type: Catwalk - components: - - pos: 2.5,-90.5 - parent: 1 - type: Transform -- uid: 892 - type: Catwalk - components: - - pos: -1.5,-88.5 - parent: 1 - type: Transform -- uid: 893 - type: Catwalk - components: - - pos: -0.5,-89.5 - parent: 1 - type: Transform -- uid: 894 - type: Catwalk - components: - - pos: 0.5,-89.5 - parent: 1 - type: Transform -- uid: 895 - type: Catwalk - components: - - pos: 3.5,-92.5 - parent: 1 - type: Transform -- uid: 896 - type: CableHV - components: - - pos: 5.5,-92.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 897 - type: CableHV - components: - - pos: 4.5,-92.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 898 - type: CableHV - components: - - pos: 2.5,-92.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 899 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 8.5,-52.5 - parent: 1 - type: Transform -- uid: 900 - type: WallReinforced - components: - - pos: 7.5,-71.5 - parent: 1 - type: Transform -- uid: 901 - type: CableApcExtension - components: - - pos: -6.5,-74.5 - parent: 1 - type: Transform -- uid: 902 - type: CableApcExtension - components: - - pos: -8.5,-75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 903 - type: CableApcExtension - components: - - pos: -10.5,-75.5 - parent: 1 - type: Transform -- uid: 904 - type: CarpetSBlue - components: - - pos: 21.5,-22.5 - parent: 1 - type: Transform -- uid: 905 - type: CarpetSBlue - components: - - pos: 21.5,-23.5 - parent: 1 - type: Transform -- uid: 906 - type: DisposalPipe - components: - - pos: -9.5,4.5 - parent: 1 - type: Transform -- uid: 907 - type: DisposalPipe - components: - - pos: -9.5,3.5 - parent: 1 - type: Transform -- uid: 908 - type: DisposalPipe - components: - - pos: -9.5,2.5 - parent: 1 - type: Transform -- uid: 909 - type: CarpetSBlue - components: - - pos: 23.5,-23.5 - parent: 1 - type: Transform -- uid: 910 - type: CarpetSBlue - components: - - pos: 24.5,-25.5 - parent: 1 - type: Transform -- uid: 911 - type: CarpetSBlue - components: - - pos: 26.5,-24.5 - parent: 1 - type: Transform -- uid: 912 - type: CarpetSBlue - components: - - pos: 26.5,-25.5 - parent: 1 - type: Transform -- uid: 913 - type: Firelock - components: - - pos: 18.5,-24.5 - parent: 1 - type: Transform -- uid: 914 - type: CarpetSBlue - components: - - pos: 29.5,-23.5 - parent: 1 - type: Transform -- uid: 915 - type: AirlockCommandGlassLocked - components: - - pos: 19.5,-25.5 - parent: 1 - type: Transform -- uid: 916 - type: CarpetSBlue - components: - - pos: 28.5,-22.5 - parent: 1 - type: Transform -- uid: 917 - type: CarpetSBlue - components: - - pos: 29.5,-23.5 - parent: 1 - type: Transform -- uid: 918 - type: Window - components: - - pos: -9.5,-40.5 - parent: 1 - type: Transform -- uid: 919 - type: ClosetMaintenanceFilledRandom - components: - - pos: 11.5,-51.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 920 - type: WallSolid - components: - - pos: 43.5,-57.5 - parent: 1 - type: Transform -- uid: 921 - type: WallReinforced - components: - - pos: -1.5,-30.5 - parent: 1 - type: Transform -- uid: 922 - type: CarpetSBlue - components: - - pos: 25.5,-25.5 - parent: 1 - type: Transform -- uid: 923 - type: ExtinguisherCabinetFilled - components: - - pos: -20.5,64.5 - parent: 1 - type: Transform -- uid: 924 - type: Poweredlight - components: - - pos: 4.5,-59.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 925 - type: ExtinguisherCabinetFilled - components: - - pos: -1.5,47.5 - parent: 1 - type: Transform -- uid: 926 - type: CableHV - components: - - pos: 12.5,-49.5 - parent: 1 - type: Transform -- uid: 927 - type: CableHV - components: - - pos: 10.5,-49.5 - parent: 1 - type: Transform -- uid: 928 - type: CableHV - components: - - pos: 9.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 929 - type: CableHV - components: - - pos: 8.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 930 - type: CableHV - components: - - pos: 8.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 931 - type: CableHV - components: - - pos: 10.5,-55.5 - parent: 1 - type: Transform -- uid: 932 - type: CableHV - components: - - pos: 11.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 933 - type: CableHV - components: - - pos: 12.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 934 - type: CableHV - components: - - pos: 14.5,-57.5 - parent: 1 - type: Transform -- uid: 935 - type: APCHighCapacity - components: - - pos: 19.5,-51.5 - parent: 1 - type: Transform -- uid: 936 - type: CableHV - components: - - pos: 14.5,-58.5 - parent: 1 - type: Transform -- uid: 937 - type: CableMV - components: - - pos: 15.5,-58.5 - parent: 1 - type: Transform -- uid: 938 - type: CableMV - components: - - pos: 15.5,-57.5 - parent: 1 - type: Transform -- uid: 939 - type: CableMV - components: - - pos: 14.5,-57.5 - parent: 1 - type: Transform -- uid: 940 - type: CableMV - components: - - pos: 12.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 941 - type: CableMV - components: - - pos: 12.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 942 - type: CableMV - components: - - pos: 11.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 943 - type: CableMV - components: - - pos: 12.5,-55.5 - parent: 1 - type: Transform -- uid: 944 - type: CableMV - components: - - pos: 8.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 945 - type: CableMV - components: - - pos: 8.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 946 - type: CableMV - components: - - pos: 8.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 947 - type: CableMV - components: - - pos: 8.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 948 - type: CableMV - components: - - pos: 8.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 949 - type: CableMV - components: - - pos: 8.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 950 - type: CableMV - components: - - pos: 16.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 951 - type: Catwalk - components: - - pos: 8.5,-53.5 - parent: 1 - type: Transform -- uid: 952 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 953 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 954 - type: CableApcExtension - components: - - pos: 20.5,-46.5 - parent: 1 - type: Transform -- uid: 955 - type: CableApcExtension - components: - - pos: 18.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 956 - type: CableApcExtension - components: - - pos: 21.5,-46.5 - parent: 1 - type: Transform -- uid: 957 - type: CableApcExtension - components: - - pos: 21.5,-50.5 - parent: 1 - type: Transform -- uid: 958 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-46.5 - parent: 1 - type: Transform -- uid: 959 - type: CableApcExtension - components: - - pos: 21.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 960 - type: CableApcExtension - components: - - pos: 23.5,-53.5 - parent: 1 - type: Transform -- uid: 961 - type: CableApcExtension - components: - - pos: 25.5,-52.5 - parent: 1 - type: Transform -- uid: 962 - type: CableApcExtension - components: - - pos: -4.5,-16.5 - parent: 1 - type: Transform -- uid: 963 - type: CableHV - components: - - pos: 39.5,-29.5 - parent: 1 - type: Transform -- uid: 964 - type: CableHV - components: - - pos: 36.5,-30.5 - parent: 1 - type: Transform -- uid: 965 - type: WallReinforced - components: - - pos: -23.5,5.5 - parent: 1 - type: Transform -- uid: 966 - type: CableMV - components: - - pos: 43.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 967 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,13.5 - parent: 1 - type: Transform -- uid: 968 - type: WallReinforced - components: - - pos: 44.5,-25.5 - parent: 1 - type: Transform -- uid: 969 - type: WallReinforced - components: - - pos: 49.5,-25.5 - parent: 1 - type: Transform -- uid: 970 - type: WallReinforced - components: - - pos: 49.5,-23.5 - parent: 1 - type: Transform -- uid: 971 - type: WallReinforced - components: - - pos: 39.5,-24.5 - parent: 1 - type: Transform -- uid: 972 - type: CableMV - components: - - pos: 0.5,14.5 - parent: 1 - type: Transform -- uid: 973 - type: CableApcExtension - components: - - pos: 6.5,8.5 - parent: 1 - type: Transform -- uid: 974 - type: WallSolid - components: - - pos: 37.5,-27.5 - parent: 1 - type: Transform -- uid: 975 - type: CableApcExtension - components: - - pos: 46.5,-22.5 - parent: 1 - type: Transform -- uid: 976 - type: CableApcExtension - components: - - pos: 0.5,14.5 - parent: 1 - type: Transform -- uid: 977 - type: CableApcExtension - components: - - pos: 9.5,-26.5 - parent: 1 - type: Transform -- uid: 978 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 46.5,-27.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: vault b - type: SurveillanceCamera -- uid: 979 - type: MaintenanceFluffSpawner - components: - - pos: 12.5,-53.5 - parent: 1 - type: Transform -- uid: 980 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 981 - type: WallSolid - components: - - pos: 13.5,-50.5 - parent: 1 - type: Transform -- uid: 982 - type: AirlockSecurityLocked - components: - - name: sec dorm - type: MetaData - - rot: 3.141592653589793 rad - pos: 3.5,17.5 - parent: 1 - type: Transform -- uid: 983 - type: WallSolid - components: - - pos: -17.5,-28.5 - parent: 1 - type: Transform -- uid: 984 - type: GasPipeStraight - components: - - pos: -3.5,-40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 985 - type: AirlockExternalGlass - components: - - pos: -1.5,-80.5 - parent: 1 - type: Transform -- uid: 986 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-78.5 - parent: 1 - type: Transform -- uid: 987 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-83.5 - parent: 1 - type: Transform -- uid: 988 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -9.5,-76.5 - parent: 1 - type: Transform -- uid: 989 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-76.5 - parent: 1 - type: Transform -- uid: 990 - type: CarpetSBlue - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-35.5 - parent: 1 - type: Transform -- uid: 991 - type: CableApcExtension - components: - - pos: 18.5,-29.5 - parent: 1 - type: Transform -- uid: 992 - type: WallReinforced - components: - - pos: 28.5,-33.5 - parent: 1 - type: Transform -- uid: 993 - type: Brutepack - components: - - pos: -10.641302,-3.848185 - parent: 1 - type: Transform -- uid: 994 - type: CableApcExtension - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform -- uid: 995 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 35.5,4.5 - parent: 1 - type: Transform -- uid: 996 - type: Firelock - components: - - pos: -5.5,15.5 - parent: 1 - type: Transform -- uid: 997 - type: WallSolid - components: - - pos: -9.5,-7.5 - parent: 1 - type: Transform -- uid: 998 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 4.5,-7.5 - parent: 1 - type: Transform -- uid: 999 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-1.5 - parent: 1 - type: Transform -- uid: 1000 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-1.5 - parent: 1 - type: Transform -- uid: 1001 - type: CableApcExtension - components: - - pos: -4.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1002 - type: CableApcExtension - components: - - pos: -5.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1003 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1004 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1005 - type: DisposalPipe - components: - - pos: 24.5,-9.5 - parent: 1 - type: Transform -- uid: 1006 - type: GasVentPump - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1007 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 28.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1008 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 35.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1009 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 26.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1010 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 1 - type: Transform -- uid: 1011 - type: DisposalPipe - components: - - pos: 24.5,-7.5 - parent: 1 - type: Transform -- uid: 1012 - type: GasPipeTJunction - components: - - pos: 7.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1013 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1014 - type: DisposalBend - components: - - pos: 34.5,8.5 - parent: 1 - type: Transform -- uid: 1015 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1016 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1017 - type: GasPipeStraight - components: - - pos: 0.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1018 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 0.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1019 - type: Bucket - components: - - pos: 2.51293,11.566316 - parent: 1 - type: Transform -- uid: 1020 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1021 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1022 - type: GasPipeStraight - components: - - pos: -6.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1023 - type: GasPipeStraight - components: - - pos: -6.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1024 - type: GasPipeStraight - components: - - pos: -6.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1025 - type: GasPipeStraight - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1026 - type: GasPipeStraight - components: - - pos: 3.5,-29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1027 - type: ReinforcedWindow - components: - - pos: -20.5,-91.5 - parent: 1 - type: Transform -- uid: 1028 - type: GasPipeStraight - components: - - pos: 15.5,-40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1029 - type: ReinforcedPlasmaWindow - components: - - pos: 29.5,26.5 - parent: 1 - type: Transform -- uid: 1030 - type: WallReinforced - components: - - pos: 27.5,26.5 - parent: 1 - type: Transform -- uid: 1031 - type: WallReinforced - components: - - pos: 31.5,26.5 - parent: 1 - type: Transform -- uid: 1032 - type: WallReinforced - components: - - pos: 31.5,25.5 - parent: 1 - type: Transform -- uid: 1033 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,33.5 - parent: 1 - type: Transform -- uid: 1034 - type: WallSolid - components: - - pos: -6.5,-16.5 - parent: 1 - type: Transform -- uid: 1035 - type: WallSolid - components: - - pos: -2.5,-10.5 - parent: 1 - type: Transform -- uid: 1036 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1 - type: Transform -- uid: 1037 - type: TableReinforced - components: - - pos: -28.5,-9.5 - parent: 1 - type: Transform -- uid: 1038 - type: AirlockEngineeringLocked - components: - - pos: -26.5,-14.5 - parent: 1 - type: Transform -- uid: 1039 - type: WallSolid - components: - - pos: 13.5,-48.5 - parent: 1 - type: Transform -- uid: 1040 - type: ReinforcedWindow - components: - - pos: -1.5,-35.5 - parent: 1 - type: Transform -- uid: 1041 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 1 - type: Transform -- uid: 1042 - type: TableReinforced - components: - - pos: 1.5,-48.5 - parent: 1 - type: Transform -- uid: 1043 - type: WallSolid - components: - - pos: -2.5,-18.5 - parent: 1 - type: Transform -- uid: 1044 - type: WallSolid - components: - - pos: -2.5,-17.5 - parent: 1 - type: Transform -- uid: 1045 - type: WallSolid - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform -- uid: 1046 - type: WallSolid - components: - - pos: -2.5,-14.5 - parent: 1 - type: Transform -- uid: 1047 - type: WallSolid - components: - - pos: -2.5,-13.5 - parent: 1 - type: Transform -- uid: 1048 - type: WallSolid - components: - - pos: -2.5,-19.5 - parent: 1 - type: Transform -- uid: 1049 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-20.5 - parent: 1 - type: Transform -- uid: 1050 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-22.5 - parent: 1 - type: Transform -- uid: 1051 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-19.5 - parent: 1 - type: Transform -- uid: 1052 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 1 - type: Transform -- uid: 1053 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 - parent: 1 - type: Transform -- uid: 1054 - type: SMESBasic - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform -- uid: 1055 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 1 - type: Transform -- uid: 1056 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-18.5 - parent: 1 - type: Transform -- uid: 1057 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: 26.5,0.5 - parent: 1 - type: Transform -- uid: 1058 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 1 - type: Transform -- uid: 1059 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-10.5 - parent: 1 - type: Transform -- uid: 1060 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -10.5,-49.5 - parent: 1 - type: Transform -- uid: 1061 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -11.5,-44.5 - parent: 1 - type: Transform -- uid: 1062 - type: Window - components: - - pos: -14.5,-44.5 - parent: 1 - type: Transform -- uid: 1063 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -10.5,-50.5 - parent: 1 - type: Transform -- uid: 1064 - type: GasPipeStraight - components: - - pos: 15.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1065 - type: AirAlarm - components: - - pos: -0.5,-40.5 - parent: 1 - type: Transform - - devices: - - 2288 - - 3908 - - 5187 - - 2447 - - 6076 - - 6100 - - 7190 - - 7189 - - 7191 - - 6767 - - 3245 - - 3246 - - 3243 - - 3241 - - 3242 - - 8122 - - 1776 - - 1775 - - 1774 - type: DeviceList -- uid: 1066 - type: GasPipeStraight - components: - - pos: 15.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1067 - type: CableApcExtension - components: - - pos: 3.5,-46.5 - parent: 1 - type: Transform -- uid: 1068 - type: GasPipeStraight - components: - - pos: -23.5,-77.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1069 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 6.5,12.5 - parent: 1 - type: Transform -- uid: 1070 - type: AirlockGlass - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform -- uid: 1071 - type: FirelockGlass - components: - - pos: 15.5,7.5 - parent: 1 - type: Transform -- uid: 1072 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,15.5 - parent: 1 - type: Transform -- uid: 1073 - type: WallReinforced - components: - - pos: 19.5,15.5 - parent: 1 - type: Transform -- uid: 1074 - type: TableWood - components: - - pos: 15.5,13.5 - parent: 1 - type: Transform -- uid: 1075 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 15.5,9.5 - parent: 1 - type: Transform -- uid: 1076 - type: SinkWide - components: - - rot: 3.141592653589793 rad - pos: 17.5,9.5 - parent: 1 - type: Transform -- uid: 1077 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 19.5,10.5 - parent: 1 - type: Transform -- uid: 1078 - type: GasPipeStraight - components: - - pos: 17.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1079 - type: WallSolid - components: - - pos: 16.5,-13.5 - parent: 1 - type: Transform -- uid: 1080 - type: WallSolid - components: - - pos: 7.5,-12.5 - parent: 1 - type: Transform -- uid: 1081 - type: AirlockMaint - components: - - rot: 3.141592653589793 rad - pos: 7.5,-11.5 - parent: 1 - type: Transform -- uid: 1082 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1083 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-31.5 - parent: 1 - type: Transform -- uid: 1084 - type: SpawnVehicleSecway - components: - - pos: 10.5,22.5 - parent: 1 - type: Transform -- uid: 1085 - type: WallReinforced - components: - - pos: 3.5,18.5 - parent: 1 - type: Transform -- uid: 1086 - type: WallReinforced - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform -- uid: 1087 - type: FirelockGlass - components: - - pos: 16.5,18.5 - parent: 1 - type: Transform -- uid: 1088 - type: FirelockGlass - components: - - pos: 27.5,18.5 - parent: 1 - type: Transform -- uid: 1089 - type: WallReinforced - components: - - pos: -15.5,-0.5 - parent: 1 - type: Transform -- uid: 1090 - type: GasPipeTJunction - components: - - pos: -24.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1091 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1092 - type: GasPipeStraight - components: - - pos: 2.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1093 - type: GasPipeStraight - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1094 - type: FirelockGlass - components: - - pos: 31.5,-4.5 - parent: 1 - type: Transform -- uid: 1095 - type: FirelockGlass - components: - - pos: 4.5,-2.5 - parent: 1 - type: Transform -- uid: 1096 - type: AirlockGlass - components: - - name: bar - type: MetaData - - pos: 10.5,4.5 - parent: 1 - type: Transform -- uid: 1097 - type: WallReinforced - components: - - pos: 13.5,15.5 - parent: 1 - type: Transform -- uid: 1098 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 25.5,19.5 - parent: 1 - type: Transform -- uid: 1099 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1100 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1101 - type: GasVentScrubber - components: - - pos: -8.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1102 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 5.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1103 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1104 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,-2.5 - parent: 1 - type: Transform -- uid: 1105 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - type: Transform -- uid: 1106 - type: Firelock - components: - - pos: -3.5,16.5 - parent: 1 - type: Transform -- uid: 1107 - type: AirlockBrigGlassLocked - components: - - name: brig - type: MetaData - - rot: 1.5707963267948966 rad - pos: 27.5,17.5 - parent: 1 - type: Transform -- uid: 1108 - type: FirelockGlass - components: - - pos: 7.5,7.5 - parent: 1 - type: Transform -- uid: 1109 - type: FirelockGlass - components: - - pos: -6.5,4.5 - parent: 1 - type: Transform -- uid: 1110 - type: AirlockMaintHydroLocked - components: - - name: hydrophonics - type: MetaData - - pos: -3.5,13.5 - parent: 1 - type: Transform -- uid: 1111 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-1.5 - parent: 1 - type: Transform -- uid: 1112 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,0.5 - parent: 1 - type: Transform -- uid: 1113 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -7.5,0.5 - parent: 1 - type: Transform -- uid: 1114 - type: KitchenReagentGrinder - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform -- uid: 1115 - type: TableCounterMetal - components: - - pos: -3.5,5.5 - parent: 1 - type: Transform -- uid: 1116 - type: hydroponicsTray - components: - - pos: -6.5,10.5 - parent: 1 - type: Transform -- uid: 1117 - type: hydroponicsTray - components: - - pos: -10.5,10.5 - parent: 1 - type: Transform -- uid: 1118 - type: hydroponicsTray - components: - - pos: -4.5,7.5 - parent: 1 - type: Transform -- uid: 1119 - type: hydroponicsTray - components: - - pos: -8.5,9.5 - parent: 1 - type: Transform -- uid: 1120 - type: hydroponicsTray - components: - - pos: -6.5,7.5 - parent: 1 - type: Transform -- uid: 1121 - type: hydroponicsTray - components: - - pos: -6.5,9.5 - parent: 1 - type: Transform -- uid: 1122 - type: SignHydro3 - components: - - pos: -5.5,4.5 - parent: 1 - type: Transform -- uid: 1123 - type: hydroponicsTray - components: - - pos: -8.5,8.5 - parent: 1 - type: Transform -- uid: 1124 - type: WallReinforced - components: - - pos: -23.5,-1.5 - parent: 1 - type: Transform -- uid: 1125 - type: WallReinforced - components: - - pos: -23.5,-3.5 - parent: 1 - type: Transform -- uid: 1126 - type: WallSolid - components: - - pos: -7.5,14.5 - parent: 1 - type: Transform -- uid: 1127 - type: WallReinforced - components: - - pos: -20.5,-3.5 - parent: 1 - type: Transform -- uid: 1128 - type: WallReinforced - components: - - pos: -20.5,-2.5 - parent: 1 - type: Transform -- uid: 1129 - type: WallReinforced - components: - - pos: -18.5,-1.5 - parent: 1 - type: Transform -- uid: 1130 - type: WallSolid - components: - - pos: -8.5,12.5 - parent: 1 - type: Transform -- uid: 1131 - type: GasPipeBend - components: - - pos: -12.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1132 - type: ReinforcedPlasmaWindow - components: - - pos: -15.5,2.5 - parent: 1 - type: Transform -- uid: 1133 - type: WallSolid - components: - - pos: -32.5,-69.5 - parent: 1 - type: Transform -- uid: 1134 - type: FirelockGlass - components: - - pos: 18.5,-32.5 - parent: 1 - type: Transform -- uid: 1135 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: 25.5,19.5 - parent: 1 - type: Transform -- uid: 1136 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 61.5,49.5 - parent: 1 - type: Transform -- uid: 1137 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 61.5,50.5 - parent: 1 - type: Transform -- uid: 1138 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 62.5,46.5 - parent: 1 - type: Transform -- uid: 1139 - type: CableApcExtension - components: - - pos: 26.5,2.5 - parent: 1 - type: Transform -- uid: 1140 - type: Catwalk - components: - - pos: 4.5,-92.5 - parent: 1 - type: Transform -- uid: 1141 - type: Grille - components: - - pos: 2.5,-62.5 - parent: 1 - type: Transform -- uid: 1142 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-20.5 - parent: 1 - type: Transform -- uid: 1143 - type: FirelockGlass - components: - - pos: -5.5,-55.5 - parent: 1 - type: Transform -- uid: 1144 - type: CableApcExtension - components: - - pos: -33.5,-70.5 - parent: 1 - type: Transform -- uid: 1145 - type: CableApcExtension - components: - - pos: -34.5,-70.5 - parent: 1 - type: Transform -- uid: 1146 - type: WallSolid - components: - - pos: -32.5,-72.5 - parent: 1 - type: Transform -- uid: 1147 - type: Grille - components: - - pos: 3.5,-78.5 - parent: 1 - type: Transform -- uid: 1148 - type: ProximitySensor - components: - - pos: 59.550594,-52.45363 - parent: 1 - type: Transform -- uid: 1149 - type: FirelockGlass - components: - - pos: 32.5,-32.5 - parent: 1 - type: Transform -- uid: 1150 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 44.5,49.5 - parent: 1 - type: Transform -- uid: 1151 - type: WallSolid - components: - - pos: 18.5,-44.5 - parent: 1 - type: Transform -- uid: 1152 - type: WallSolid - components: - - pos: 42.5,-52.5 - parent: 1 - type: Transform -- uid: 1153 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 43.5,42.5 - parent: 1 - type: Transform -- uid: 1154 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 38.5,42.5 - parent: 1 - type: Transform -- uid: 1155 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 34.5,42.5 - parent: 1 - type: Transform -- uid: 1156 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,43.5 - parent: 1 - type: Transform -- uid: 1157 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -9.5,57.5 - parent: 1 - type: Transform -- uid: 1158 - type: WallReinforced - components: - - pos: 35.5,50.5 - parent: 1 - type: Transform -- uid: 1159 - type: WallReinforced - components: - - pos: 35.5,52.5 - parent: 1 - type: Transform -- uid: 1160 - type: WallReinforced - components: - - pos: 36.5,52.5 - parent: 1 - type: Transform -- uid: 1161 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 39.5,52.5 - parent: 1 - type: Transform -- uid: 1162 - type: Firelock - components: - - pos: 56.5,-2.5 - parent: 1 - type: Transform -- uid: 1163 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 26.5,-21.5 - parent: 1 - type: Transform -- uid: 1164 - type: CableApcExtension - components: - - pos: 38.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1165 - type: CableMV - components: - - pos: 38.5,14.5 - parent: 1 - type: Transform -- uid: 1166 - type: SignRedFour - components: - - pos: 40.5,17.5 - parent: 1 - type: Transform -- uid: 1167 - type: SignRedOne - components: - - pos: 45.5,22.5 - parent: 1 - type: Transform -- uid: 1168 - type: SignRedTwo - components: - - pos: 48.5,22.5 - parent: 1 - type: Transform -- uid: 1169 - type: SignRedFour - components: - - pos: 54.5,22.5 - parent: 1 - type: Transform -- uid: 1170 - type: SignRedSeven - components: - - pos: 60.5,17.5 - parent: 1 - type: Transform -- uid: 1171 - type: SignRedNine - components: - - pos: 51.62568,41.505035 - parent: 1 - type: Transform -- uid: 1172 - type: SignRedZero - components: - - pos: 30.467585,-15.491432 - parent: 1 - type: Transform -- uid: 1173 - type: AsteroidRock - components: - - pos: 11.5,45.5 - parent: 1 - type: Transform -- uid: 1174 - type: AsteroidRock - components: - - pos: 13.5,44.5 - parent: 1 - type: Transform -- uid: 1175 - type: WallReinforced - components: - - pos: 34.5,48.5 - parent: 1 - type: Transform -- uid: 1176 - type: TableReinforced - components: - - pos: 37.5,49.5 - parent: 1 - type: Transform -- uid: 1177 - type: WallSolid - components: - - pos: 38.5,-27.5 - parent: 1 - type: Transform -- uid: 1178 - type: GasPipeStraight - components: - - pos: -18.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1179 - type: GasPipeStraight - components: - - pos: -20.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1180 - type: CrayonMime - components: - - pos: -28.463287,46.56972 - parent: 1 - type: Transform -- uid: 1181 - type: DisposalPipe - components: - - pos: -23.5,-74.5 - parent: 1 - type: Transform -- uid: 1182 - type: WallReinforced - components: - - pos: -15.5,-1.5 - parent: 1 - type: Transform -- uid: 1183 - type: CableMV - components: - - pos: -5.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1184 - type: CableApcExtension - components: - - pos: -12.5,-26.5 - parent: 1 - type: Transform -- uid: 1185 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,11.5 - parent: 1 - type: Transform -- uid: 1186 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: 18.5,15.5 - parent: 1 - type: Transform -- uid: 1187 - type: CableApcExtension - components: - - pos: 31.5,-32.5 - parent: 1 - type: Transform -- uid: 1188 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 33.5,-19.5 - parent: 1 - type: Transform -- uid: 1189 - type: CableHV - components: - - pos: 10.5,-92.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1190 - type: Grille - components: - - pos: -6.5,-55.5 - parent: 1 - type: Transform -- uid: 1191 - type: CableApcExtension - components: - - pos: 24.5,4.5 - parent: 1 - type: Transform -- uid: 1192 - type: Grille - components: - - pos: -12.5,-58.5 - parent: 1 - type: Transform -- uid: 1193 - type: WallSolid - components: - - pos: 37.5,-28.5 - parent: 1 - type: Transform -- uid: 1194 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-63.5 - parent: 1 - type: Transform -- uid: 1195 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 39.5,3.5 - parent: 1 - type: Transform -- uid: 1196 - type: CarpetBlue - components: - - pos: -18.5,-56.5 - parent: 1 - type: Transform -- uid: 1197 - type: CableHV - components: - - pos: -11.5,-75.5 - parent: 1 - type: Transform -- uid: 1198 - type: WallReinforced - components: - - pos: 1.5,-72.5 - parent: 1 - type: Transform -- uid: 1199 - type: WallSolid - components: - - pos: 0.5,-72.5 - parent: 1 - type: Transform -- uid: 1200 - type: DisposalPipe - components: - - pos: 12.5,11.5 - parent: 1 - type: Transform -- uid: 1201 - type: CarpetBlue - components: - - pos: -18.5,-55.5 - parent: 1 - type: Transform -- uid: 1202 - type: RandomSoap - components: - - pos: -6.5,-68.5 - parent: 1 - type: Transform -- uid: 1203 - type: GasPipeStraight - components: - - pos: 34.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1204 - type: Table - components: - - pos: 10.5,-56.5 - parent: 1 - type: Transform -- uid: 1205 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 23.5,-34.5 - parent: 1 - type: Transform -- uid: 1206 - type: CableHV - components: - - pos: 6.5,-92.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1207 - type: BalloonCorgi - components: - - pos: -1.4855543,-3.7954655 - parent: 1 - type: Transform -- uid: 1208 - type: SpawnPointMusician - components: - - pos: -9.5,-5.5 - parent: 1 - type: Transform -- uid: 1209 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1210 - type: Pen - components: - - rot: 3.141592653589793 rad - pos: 27.572367,-37.387577 - parent: 1 - type: Transform -- uid: 1211 - type: GasVentScrubber - components: - - pos: 31.5,-41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1212 - type: GasPipeStraight - components: - - pos: 31.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1213 - type: CableApcExtension - components: - - pos: 19.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1214 - type: GasPipeStraight - components: - - pos: 24.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1215 - type: WallSolid - components: - - pos: -9.5,-17.5 - parent: 1 - type: Transform -- uid: 1216 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: 15.5,-13.5 - parent: 1 - type: Transform -- uid: 1217 - type: AirlockGlass - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-15.5 - parent: 1 - type: Transform -- uid: 1218 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 16.5,-51.5 - parent: 1 - type: Transform -- uid: 1219 - type: GasPipeStraight - components: - - pos: 36.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1220 - type: CableApcExtension - components: - - pos: -3.5,-74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1221 - type: CableHV - components: - - pos: -7.5,-75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1222 - type: CableApcExtension - components: - - pos: 8.5,-42.5 - parent: 1 - type: Transform -- uid: 1223 - type: CableApcExtension - components: - - pos: 8.5,-65.5 - parent: 1 - type: Transform -- uid: 1224 - type: Railing - components: - - pos: 25.5,-1.5 - parent: 1 - type: Transform -- uid: 1225 - type: PosterLegitSafetyEyeProtection - components: - - pos: -33.5,-31.5 - parent: 1 - type: Transform -- uid: 1226 - type: PosterLegitWalk - components: - - pos: -7.5,-28.5 - parent: 1 - type: Transform -- uid: 1227 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-46.5 - parent: 1 - type: Transform -- uid: 1228 - type: PosterLegitFoamForceAd - components: - - pos: 1.5,-39.5 - parent: 1 - type: Transform -- uid: 1229 - type: Chair - components: - - pos: -2.5,-32.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1230 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -15.5,5.5 - parent: 1 - type: Transform -- uid: 1231 - type: AirlockChiefEngineerLocked - components: - - name: vault substation - type: MetaData - - rot: 3.141592653589793 rad - pos: 37.5,-30.5 - parent: 1 - type: Transform -- uid: 1232 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1233 - type: FlashlightLantern - components: - - pos: -57.60324,-35.44005 - parent: 1 - type: Transform -- uid: 1234 - type: FlashlightLantern - components: - - pos: 2.4386559,-17.536861 - parent: 1 - type: Transform -- uid: 1235 - type: Catwalk - components: - - pos: -46.5,-50.5 - parent: 1 - type: Transform -- uid: 1236 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -17.5,26.5 - parent: 1 - type: Transform -- uid: 1237 - type: Grille - components: - - pos: -1.5,-35.5 - parent: 1 - type: Transform -- uid: 1238 - type: Window - components: - - pos: -1.5,-56.5 - parent: 1 - type: Transform -- uid: 1239 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 17.5,-21.5 - parent: 1 - type: Transform -- uid: 1240 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 17.5,-22.5 - parent: 1 - type: Transform -- uid: 1241 - type: CableHV - components: - - pos: -5.5,-75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1242 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 48.5,-21.5 - parent: 1 - type: Transform -- uid: 1243 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 22.5,-35.5 - parent: 1 - type: Transform -- uid: 1244 - type: MaterialCloth1 - components: - - pos: 27.404657,-34.28904 - parent: 1 - type: Transform -- uid: 1245 - type: RandomPosterLegit - components: - - pos: -40.5,-7.5 - parent: 1 - type: Transform -- uid: 1246 - type: CableHV - components: - - pos: 25.5,-49.5 - parent: 1 - type: Transform -- uid: 1247 - type: WindoorSecure - components: - - pos: -13.5,-9.5 - parent: 1 - type: Transform -- uid: 1248 - type: GasPipeStraight - components: - - pos: 47.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1249 - type: ToolboxMechanicalFilled - components: - - pos: 32.521046,-21.537613 - parent: 1 - type: Transform - - nextAttack: 110.0995636 - type: MeleeWeapon -- uid: 1250 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,-19.5 - parent: 1 - type: Transform -- uid: 1251 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1252 - type: Window - components: - - pos: 39.5,-0.5 - parent: 1 - type: Transform -- uid: 1253 - type: WallReinforced - components: - - pos: 28.5,-13.5 - parent: 1 - type: Transform -- uid: 1254 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 20.5,-20.5 - parent: 1 - type: Transform -- uid: 1255 - type: ReinforcedPlasmaWindow - components: - - rot: 3.141592653589793 rad - pos: 23.5,-20.5 - parent: 1 - type: Transform -- uid: 1256 - type: WallSolid - components: - - pos: -9.5,-18.5 - parent: 1 - type: Transform -- uid: 1257 - type: ToyIan - components: - - pos: 48.44359,-22.433285 - parent: 1 - type: Transform -- uid: 1258 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 1 - type: Transform - - color: '#FFE4CEFF' - type: PointLight - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1259 - type: ToolboxGoldFilled - components: - - pos: 32.512478,-22.558695 - parent: 1 - type: Transform - - nextAttack: 95.666288 - type: MeleeWeapon -- uid: 1260 - type: CableHV - components: - - pos: 0.5,-89.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1261 - type: CableHV - components: - - pos: -0.5,-89.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1262 - type: CableHV - components: - - pos: -1.5,-89.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1263 - type: CableHV - components: - - pos: -1.5,-88.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1264 - type: CableHV - components: - - pos: -1.5,-87.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1265 - type: CableHV - components: - - pos: 14.5,-98.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1266 - type: CableHV - components: - - pos: 12.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1267 - type: PosterLegitCohibaRobustoAd - components: - - pos: 13.5,-30.5 - parent: 1 - type: Transform -- uid: 1268 - type: TableCounterWood - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-5.5 - parent: 1 - type: Transform -- uid: 1269 - type: RandomPosterContraband - components: - - pos: -30.5,-45.5 - parent: 1 - type: Transform -- uid: 1270 - type: RandomPosterContraband - components: - - pos: -24.5,-50.5 - parent: 1 - type: Transform -- uid: 1271 - type: RandomPosterContraband - components: - - pos: -26.5,-50.5 - parent: 1 - type: Transform -- uid: 1272 - type: PosterContrabandTheGriffin - components: - - pos: -43.5,-73.5 - parent: 1 - type: Transform -- uid: 1273 - type: PosterLegitEnlist - components: - - pos: -17.5,-31.5 - parent: 1 - type: Transform -- uid: 1274 - type: CableMV - components: - - pos: -6.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1275 - type: GasPipeStraight - components: - - pos: 21.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1276 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1277 - type: PoweredSmallLight - components: - - pos: 1.5,-40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1278 - type: TableWood - components: - - pos: -20.5,-54.5 - parent: 1 - type: Transform -- uid: 1279 - type: CarpetBlue - components: - - pos: -20.5,-55.5 - parent: 1 - type: Transform -- uid: 1280 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 17.5,-23.5 - parent: 1 - type: Transform -- uid: 1281 - type: CarpetBlue - components: - - pos: -20.5,-54.5 - parent: 1 - type: Transform -- uid: 1282 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 21.5,1.5 - parent: 1 - type: Transform -- uid: 1283 - type: GasPipeStraight - components: - - pos: 8.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1284 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-84.5 - parent: 1 - type: Transform -- uid: 1285 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-76.5 - parent: 1 - type: Transform -- uid: 1286 - type: SpawnMobMouse - components: - - pos: -0.5,33.5 - parent: 1 - type: Transform -- uid: 1287 - type: RandomPosterContraband - components: - - pos: -5.5,-94.5 - parent: 1 - type: Transform -- uid: 1288 - type: ComputerAlert - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-44.5 - parent: 1 - type: Transform -- uid: 1289 - type: ClothingHeadHatRedwizard - components: - - pos: -68.50815,-34.45745 - parent: 1 - type: Transform -- uid: 1290 - type: FirelockGlass - components: - - pos: 35.5,-38.5 - parent: 1 - type: Transform -- uid: 1291 - type: ShuttersNormalOpen - components: - - pos: -32.5,32.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86606.164 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 22032 - Close: - - port: Off - uid: 22032 - Toggle: [] - type: SignalReceiver -- uid: 1292 - type: Grille - components: - - pos: -28.5,-47.5 - parent: 1 - type: Transform -- uid: 1293 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1294 - type: Girder - components: - - pos: -36.5,-68.5 - parent: 1 - type: Transform -- uid: 1295 - type: CableApcExtension - components: - - pos: -8.5,-66.5 - parent: 1 - type: Transform -- uid: 1296 - type: AirCanister - components: - - pos: -34.5,-57.5 - parent: 1 - type: Transform -- uid: 1297 - type: AirCanister - components: - - pos: -29.5,-48.5 - parent: 1 - type: Transform -- uid: 1298 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1299 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-43.5 - parent: 1 - type: Transform -- uid: 1300 - type: ClothingOuterWizardRed - components: - - pos: -59.983215,-45.447025 - parent: 1 - type: Transform -- uid: 1301 - type: ClosetMaintenance - components: - - pos: -22.5,-38.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1302 - type: CableMV - components: - - pos: 38.5,-28.5 - parent: 1 - type: Transform -- uid: 1303 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 1 - type: Transform -- uid: 1304 - type: CableApcExtension - components: - - pos: 26.5,-1.5 - parent: 1 - type: Transform -- uid: 1305 - type: CableMV - components: - - pos: 35.5,-29.5 - parent: 1 - type: Transform -- uid: 1306 - type: CableHV - components: - - pos: -4.5,-22.5 - parent: 1 - type: Transform -- uid: 1307 - type: CableMV - components: - - pos: 37.5,-30.5 - parent: 1 - type: Transform -- uid: 1308 - type: CableApcExtension - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform -- uid: 1309 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 19.5,19.5 - parent: 1 - type: Transform -- uid: 1310 - type: Table - components: - - pos: -28.5,21.5 - parent: 1 - type: Transform -- uid: 1311 - type: AirlockCommandGlassLocked - components: - - pos: 19.5,-24.5 - parent: 1 - type: Transform -- uid: 1312 - type: Brutepack - components: - - pos: -10.266302,-3.785685 - parent: 1 - type: Transform -- uid: 1313 - type: ComputerSurveillanceCameraMonitor - components: - - pos: 26.5,-24.5 - parent: 1 - type: Transform -- uid: 1314 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-43.5 - parent: 1 - type: Transform -- uid: 1315 - type: SpawnPointCaptain - components: - - pos: 26.5,-22.5 - parent: 1 - type: Transform -- uid: 1316 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 0.5,-71.5 - parent: 1 - type: Transform -- uid: 1317 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -9.5,0.5 - parent: 1 - type: Transform -- uid: 1318 - type: Grille - components: - - pos: 24.5,-60.5 - parent: 1 - type: Transform -- uid: 1319 - type: SignDirectionalBridge - components: - - pos: -19.478844,48.09307 - parent: 1 - type: Transform -- uid: 1320 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,0.5 - parent: 1 - type: Transform -- uid: 1321 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 24.5,-19.5 - parent: 1 - type: Transform -- uid: 1322 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1323 - type: SignDirectionalSolar - components: - - pos: -0.5,-76.5 - parent: 1 - type: Transform -- uid: 1324 - type: CableApcExtension - components: - - pos: -7.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1325 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 22.5,30.5 - parent: 1 - type: Transform -- uid: 1326 - type: ComputerMedicalRecords - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-50.5 - parent: 1 - type: Transform -- uid: 1327 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 5.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1328 - type: CarpetSBlue - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-36.5 - parent: 1 - type: Transform -- uid: 1329 - type: GasPipeBend - components: - - pos: 34.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1330 - type: BalloonCorgi - components: - - pos: -1.7824293,-3.8267155 - parent: 1 - type: Transform -- uid: 1331 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 28.5,-61.5 - parent: 1 - type: Transform -- uid: 1332 - type: CableMV - components: - - pos: -11.5,-70.5 - parent: 1 - type: Transform -- uid: 1333 - type: TrumpetInstrument - components: - - pos: -10.547552,-5.035685 - parent: 1 - type: Transform -- uid: 1334 - type: CarpetSBlue - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-35.5 - parent: 1 - type: Transform -- uid: 1335 - type: Grille - components: - - pos: 23.5,-40.5 - parent: 1 - type: Transform -- uid: 1336 - type: Grille - components: - - pos: 24.5,-40.5 - parent: 1 - type: Transform -- uid: 1337 - type: Grille - components: - - pos: 25.5,-40.5 - parent: 1 - type: Transform -- uid: 1338 - type: Grille - components: - - pos: 26.5,-40.5 - parent: 1 - type: Transform -- uid: 1339 - type: WallSolid - components: - - pos: 42.5,-56.5 - parent: 1 - type: Transform -- uid: 1340 - type: WallSolid - components: - - pos: -17.5,-38.5 - parent: 1 - type: Transform -- uid: 1341 - type: WallReinforced - components: - - pos: -23.5,1.5 - parent: 1 - type: Transform -- uid: 1342 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-27.5 - parent: 1 - type: Transform -- uid: 1343 - type: CableApcExtension - components: - - pos: -12.5,-75.5 - parent: 1 - type: Transform -- uid: 1344 - type: CableApcExtension - components: - - pos: -8.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1345 - type: FirelockGlass - components: - - pos: -0.5,-69.5 - parent: 1 - type: Transform -- uid: 1346 - type: WallReinforced - components: - - pos: 8.5,-71.5 - parent: 1 - type: Transform -- uid: 1347 - type: SolarPanel - components: - - pos: 10.5,-101.5 - parent: 1 - type: Transform -- uid: 1348 - type: AirlockGlass - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-19.5 - parent: 1 - type: Transform -- uid: 1349 - type: ReinforcedWindow - components: - - pos: -17.5,-1.5 - parent: 1 - type: Transform -- uid: 1350 - type: ReinforcedWindow - components: - - pos: 4.5,-72.5 - parent: 1 - type: Transform -- uid: 1351 - type: CableHV - components: - - pos: 10.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1352 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-11.5 - parent: 1 - type: Transform -- uid: 1353 - type: Grille - components: - - pos: 21.5,-3.5 - parent: 1 - type: Transform -- uid: 1354 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 21.5,0.5 - parent: 1 - type: Transform -- uid: 1355 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1356 - type: AirlockMaint - components: - - name: waste disposal - type: MetaData - - rot: -1.5707963267948966 rad - pos: 14.5,-51.5 - parent: 1 - type: Transform -- uid: 1357 - type: CableHV - components: - - pos: 15.5,-37.5 - parent: 1 - type: Transform -- uid: 1358 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 20.5,19.5 - parent: 1 - type: Transform -- uid: 1359 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1360 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 1 - type: Transform -- uid: 1361 - type: WallReinforced - components: - - pos: 1.5,-73.5 - parent: 1 - type: Transform -- uid: 1362 - type: Firelock - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-25.5 - parent: 1 - type: Transform -- uid: 1363 - type: Catwalk - components: - - pos: 2.5,-91.5 - parent: 1 - type: Transform -- uid: 1364 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-77.5 - parent: 1 - type: Transform -- uid: 1365 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-34.5 - parent: 1 - type: Transform -- uid: 1366 - type: CableHV - components: - - pos: -15.5,-71.5 - parent: 1 - type: Transform -- uid: 1367 - type: GasPipeStraight - components: - - pos: -20.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1368 - type: GasPipeStraight - components: - - pos: 8.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1369 - type: WallReinforced - components: - - pos: 1.5,-75.5 - parent: 1 - type: Transform -- uid: 1370 - type: Grille - components: - - pos: 23.5,-3.5 - parent: 1 - type: Transform -- uid: 1371 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 25.5,3.5 - parent: 1 - type: Transform -- uid: 1372 - type: Grille - components: - - pos: -6.5,-58.5 - parent: 1 - type: Transform -- uid: 1373 - type: TableWood - components: - - pos: -28.5,46.5 - parent: 1 - type: Transform -- uid: 1374 - type: CarpetBlue - components: - - pos: -19.5,-54.5 - parent: 1 - type: Transform -- uid: 1375 - type: GasPipeStraight - components: - - pos: -18.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1376 - type: CableHV - components: - - pos: 35.5,-40.5 - parent: 1 - type: Transform -- uid: 1377 - type: StoolBar - components: - - name: stool - type: MetaData - - rot: 3.141592653589793 rad - pos: -6.5,3.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1378 - type: CableMV - components: - - pos: 21.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1379 - type: CableApcExtension - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform -- uid: 1380 - type: WallSolid - components: - - pos: 7.5,-28.5 - parent: 1 - type: Transform -- uid: 1381 - type: WallReinforced - components: - - pos: -18.5,-2.5 - parent: 1 - type: Transform -- uid: 1382 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,-11.5 - parent: 1 - type: Transform -- uid: 1383 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: 29.5,13.5 - parent: 1 - type: Transform -- uid: 1384 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,10.5 - parent: 1 - type: Transform -- uid: 1385 - type: Poweredlight - components: - - pos: 30.5,-47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1386 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,0.5 - parent: 1 - type: Transform -- uid: 1387 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 21.5,7.5 - parent: 1 - type: Transform -- uid: 1388 - type: WallSolid - components: - - pos: -11.5,9.5 - parent: 1 - type: Transform -- uid: 1389 - type: hydroponicsTray - components: - - pos: -4.5,8.5 - parent: 1 - type: Transform -- uid: 1390 - type: hydroponicsTray - components: - - pos: -8.5,10.5 - parent: 1 - type: Transform -- uid: 1391 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 11.5,1.5 - parent: 1 - type: Transform -- uid: 1392 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1393 - type: AirlockKitchenLocked - components: - - name: kitchen - type: MetaData - - rot: 3.141592653589793 rad - pos: 5.5,4.5 - parent: 1 - type: Transform -- uid: 1394 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 1 - type: Transform -- uid: 1395 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-81.5 - parent: 1 - type: Transform -- uid: 1396 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-81.5 - parent: 1 - type: Transform -- uid: 1397 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-81.5 - parent: 1 - type: Transform -- uid: 1398 - type: WallSolid - components: - - pos: -30.5,-76.5 - parent: 1 - type: Transform -- uid: 1399 - type: WallReinforced - components: - - pos: -13.5,-78.5 - parent: 1 - type: Transform -- uid: 1400 - type: CableApcExtension - components: - - pos: -14.5,-61.5 - parent: 1 - type: Transform -- uid: 1401 - type: CableApcExtension - components: - - pos: -14.5,-55.5 - parent: 1 - type: Transform -- uid: 1402 - type: CableMV - components: - - pos: 5.5,-48.5 - parent: 1 - type: Transform -- uid: 1403 - type: CableMV - components: - - pos: 7.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1404 - type: CableHV - components: - - pos: 13.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1405 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1406 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 11.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1407 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1408 - type: GasPipeStraight - components: - - pos: 15.5,-30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1409 - type: AirlockEngineeringLocked - components: - - name: substation - type: MetaData - - rot: 1.5707963267948966 rad - pos: 17.5,-29.5 - parent: 1 - type: Transform -- uid: 1410 - type: GasPipeStraight - components: - - pos: -3.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1411 - type: GasPipeStraight - components: - - pos: -3.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1412 - type: GasPipeStraight - components: - - pos: -3.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1413 - type: GasPipeStraight - components: - - pos: -3.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1414 - type: GasPipeStraight - components: - - pos: -3.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1415 - type: GasPipeStraight - components: - - pos: -5.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1416 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1417 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1418 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1419 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1420 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1421 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1422 - type: CableHV - components: - - pos: -4.5,-25.5 - parent: 1 - type: Transform -- uid: 1423 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -11.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1424 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1425 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1426 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1427 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1428 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1429 - type: GasVentPump - components: - - pos: -17.5,-57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1430 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1431 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,-59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1432 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -17.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1433 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1434 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1435 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1436 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1437 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1438 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1439 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -9.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1440 - type: GasPipeStraight - components: - - pos: -9.5,-59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1441 - type: GasPipeStraight - components: - - pos: -9.5,-58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1442 - type: GasPipeStraight - components: - - pos: -9.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1443 - type: GasPipeStraight - components: - - pos: -9.5,-56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1444 - type: GasPipeStraight - components: - - pos: -9.5,-55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1445 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1446 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1447 - type: GasPipeStraight - components: - - pos: -7.5,-52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1448 - type: GasPipeStraight - components: - - pos: -7.5,-51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1449 - type: GasPipeStraight - components: - - pos: -7.5,-50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1450 - type: GasPipeStraight - components: - - pos: -7.5,-49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1451 - type: GasPipeStraight - components: - - pos: -0.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1452 - type: GasPipeTJunction - components: - - pos: -0.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1453 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1454 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1455 - type: GasPipeStraight - components: - - pos: -8.5,-44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1456 - type: GasPipeStraight - components: - - pos: -8.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1457 - type: GasPipeTJunction - components: - - pos: -8.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1458 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1459 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1460 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1461 - type: GasPipeStraight - components: - - pos: -6.5,-64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1462 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -7.5,-63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1463 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1464 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1465 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1466 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1467 - type: CableApcExtension - components: - - pos: 12.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1468 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-20.5 - parent: 1 - type: Transform -- uid: 1469 - type: DisposalPipe - components: - - pos: 36.5,-24.5 - parent: 1 - type: Transform -- uid: 1470 - type: ReinforcedWindow - components: - - pos: -45.5,-50.5 - parent: 1 - type: Transform -- uid: 1471 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-21.5 - parent: 1 - type: Transform -- uid: 1472 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-21.5 - parent: 1 - type: Transform -- uid: 1473 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-21.5 - parent: 1 - type: Transform -- uid: 1474 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-21.5 - parent: 1 - type: Transform -- uid: 1475 - type: DisposalPipe - components: - - pos: 34.5,-4.5 - parent: 1 - type: Transform -- uid: 1476 - type: DisposalPipe - components: - - pos: 34.5,-2.5 - parent: 1 - type: Transform -- uid: 1477 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 34.5,5.5 - parent: 1 - type: Transform -- uid: 1478 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 39.5,6.5 - parent: 1 - type: Transform -- uid: 1479 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-6.5 - parent: 1 - type: Transform -- uid: 1480 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-6.5 - parent: 1 - type: Transform -- uid: 1481 - type: WallSolid - components: - - pos: 11.5,-65.5 - parent: 1 - type: Transform -- uid: 1482 - type: WallSolid - components: - - pos: 13.5,-63.5 - parent: 1 - type: Transform -- uid: 1483 - type: WallSolid - components: - - pos: 15.5,-56.5 - parent: 1 - type: Transform -- uid: 1484 - type: WallSolid - components: - - pos: 8.5,-63.5 - parent: 1 - type: Transform -- uid: 1485 - type: WallSolid - components: - - pos: 11.5,-62.5 - parent: 1 - type: Transform -- uid: 1486 - type: WallSolid - components: - - pos: 8.5,-57.5 - parent: 1 - type: Transform -- uid: 1487 - type: WallSolid - components: - - pos: 11.5,-60.5 - parent: 1 - type: Transform -- uid: 1488 - type: WallSolid - components: - - pos: 11.5,-59.5 - parent: 1 - type: Transform -- uid: 1489 - type: WallSolid - components: - - pos: 11.5,-58.5 - parent: 1 - type: Transform -- uid: 1490 - type: WallSolid - components: - - pos: 11.5,-57.5 - parent: 1 - type: Transform -- uid: 1491 - type: WallSolid - components: - - pos: 10.5,-57.5 - parent: 1 - type: Transform -- uid: 1492 - type: WallSolid - components: - - pos: 9.5,-57.5 - parent: 1 - type: Transform -- uid: 1493 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-43.5 - parent: 1 - type: Transform -- uid: 1494 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-43.5 - parent: 1 - type: Transform -- uid: 1495 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-43.5 - parent: 1 - type: Transform -- uid: 1496 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-43.5 - parent: 1 - type: Transform -- uid: 1497 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-43.5 - parent: 1 - type: Transform -- uid: 1498 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-43.5 - parent: 1 - type: Transform -- uid: 1499 - type: chem_dispenser - components: - - pos: 4.5,-47.5 - parent: 1 - type: Transform -- uid: 1500 - type: TableCounterWood - components: - - pos: 18.5,15.5 - parent: 1 - type: Transform -- uid: 1501 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-43.5 - parent: 1 - type: Transform -- uid: 1502 - type: LockerChiefMedicalOfficerFilled - components: - - pos: -18.5,-54.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1503 - type: TableWood - components: - - pos: -20.5,-56.5 - parent: 1 - type: Transform -- uid: 1504 - type: TableWood - components: - - pos: -18.5,-56.5 - parent: 1 - type: Transform -- uid: 1505 - type: WallReinforced - components: - - pos: -21.5,-57.5 - parent: 1 - type: Transform -- uid: 1506 - type: WallReinforced - components: - - pos: -21.5,-55.5 - parent: 1 - type: Transform -- uid: 1507 - type: WallReinforced - components: - - pos: 29.5,33.5 - parent: 1 - type: Transform -- uid: 1508 - type: TableReinforced - components: - - pos: 27.5,32.5 - parent: 1 - type: Transform -- uid: 1509 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1510 - type: LockerMedicalFilled - components: - - pos: -4.5,-59.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1511 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-47.5 - parent: 1 - type: Transform -- uid: 1512 - type: Table - components: - - pos: 2.5,-49.5 - parent: 1 - type: Transform -- uid: 1513 - type: DisposalPipe - components: - - pos: 6.5,-45.5 - parent: 1 - type: Transform -- uid: 1514 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-69.5 - parent: 1 - type: Transform -- uid: 1515 - type: DisposalPipe - components: - - pos: 6.5,-44.5 - parent: 1 - type: Transform -- uid: 1516 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-77.5 - parent: 1 - type: Transform -- uid: 1517 - type: MopItem - components: - - rot: -1.5707963267948966 rad - pos: -9.459526,-68.63137 - parent: 1 - type: Transform -- uid: 1518 - type: MopBucket - components: - - pos: -9.522026,-69.41262 - parent: 1 - type: Transform -- uid: 1519 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-69.5 - parent: 1 - type: Transform -- uid: 1520 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-70.5 - parent: 1 - type: Transform -- uid: 1521 - type: AirlockMaintLocked - components: - - pos: -8.5,-70.5 - parent: 1 - type: Transform -- uid: 1522 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-68.5 - parent: 1 - type: Transform -- uid: 1523 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-68.5 - parent: 1 - type: Transform -- uid: 1524 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-68.5 - parent: 1 - type: Transform -- uid: 1525 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-67.5 - parent: 1 - type: Transform -- uid: 1526 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-67.5 - parent: 1 - type: Transform -- uid: 1527 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-67.5 - parent: 1 - type: Transform -- uid: 1528 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-67.5 - parent: 1 - type: Transform -- uid: 1529 - type: Brutepack - components: - - pos: -0.6646667,-56.50434 - parent: 1 - type: Transform -- uid: 1530 - type: WallSolid - components: - - pos: 1.5,-62.5 - parent: 1 - type: Transform -- uid: 1531 - type: WallSolid - components: - - pos: 1.5,-65.5 - parent: 1 - type: Transform -- uid: 1532 - type: WallSolid - components: - - pos: -1.5,-62.5 - parent: 1 - type: Transform -- uid: 1533 - type: WallSolid - components: - - pos: -17.5,-65.5 - parent: 1 - type: Transform -- uid: 1534 - type: WallSolid - components: - - pos: -7.5,-62.5 - parent: 1 - type: Transform -- uid: 1535 - type: SignBridge - components: - - pos: 17.5,-26.5 - parent: 1 - type: Transform -- uid: 1536 - type: Window - components: - - pos: -12.5,-58.5 - parent: 1 - type: Transform -- uid: 1537 - type: WallSolid - components: - - pos: 12.5,-50.5 - parent: 1 - type: Transform -- uid: 1538 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-55.5 - parent: 1 - type: Transform -- uid: 1539 - type: Window - components: - - pos: -6.5,-55.5 - parent: 1 - type: Transform -- uid: 1540 - type: Window - components: - - pos: -0.5,-62.5 - parent: 1 - type: Transform -- uid: 1541 - type: Window - components: - - pos: 1.5,-56.5 - parent: 1 - type: Transform -- uid: 1542 - type: Window - components: - - pos: -0.5,-58.5 - parent: 1 - type: Transform -- uid: 1543 - type: Window - components: - - pos: -3.5,-58.5 - parent: 1 - type: Transform -- uid: 1544 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-17.5 - parent: 1 - type: Transform -- uid: 1545 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-19.5 - parent: 1 - type: Transform -- uid: 1546 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: -0.5,-27.5 - parent: 1 - type: Transform -- uid: 1547 - type: GasPipeStraight - components: - - pos: 34.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1548 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 27.5,-22.5 - parent: 1 - type: Transform -- uid: 1549 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-24.5 - parent: 1 - type: Transform -- uid: 1550 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-24.5 - parent: 1 - type: Transform -- uid: 1551 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-24.5 - parent: 1 - type: Transform -- uid: 1552 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 3.5,-18.5 - parent: 1 - type: Transform -- uid: 1553 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-37.5 - parent: 1 - type: Transform -- uid: 1554 - type: DisposalPipe - components: - - pos: 21.5,-32.5 - parent: 1 - type: Transform -- uid: 1555 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-18.5 - parent: 1 - type: Transform -- uid: 1556 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-18.5 - parent: 1 - type: Transform -- uid: 1557 - type: DisposalJunctionFlipped - components: - - pos: 24.5,-17.5 - parent: 1 - type: Transform -- uid: 1558 - type: DisposalPipe - components: - - pos: 24.5,-13.5 - parent: 1 - type: Transform -- uid: 1559 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,17.5 - parent: 1 - type: Transform -- uid: 1560 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: 21.5,17.5 - parent: 1 - type: Transform -- uid: 1561 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,17.5 - parent: 1 - type: Transform -- uid: 1562 - type: DisposalYJunction - components: - - pos: 25.5,17.5 - parent: 1 - type: Transform -- uid: 1563 - type: DisposalPipe - components: - - pos: 25.5,15.5 - parent: 1 - type: Transform -- uid: 1564 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-6.5 - parent: 1 - type: Transform -- uid: 1565 - type: GasPipeBend - components: - - pos: 35.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1566 - type: Grille - components: - - pos: 25.5,24.5 - parent: 1 - type: Transform -- uid: 1567 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 35.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1568 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 32.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1569 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1570 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1571 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 28.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1572 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 1 - type: Transform -- uid: 1573 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1574 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1575 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 17.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1576 - type: GasPipeStraight - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1577 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1578 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1579 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1580 - type: GasPipeTJunction - components: - - pos: 41.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1581 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1582 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1583 - type: CableApcExtension - components: - - pos: 24.5,-1.5 - parent: 1 - type: Transform -- uid: 1584 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 31.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1585 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1586 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1587 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1588 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1589 - type: GasPipeStraight - components: - - pos: 40.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1590 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 33.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1591 - type: GasPipeFourway - components: - - pos: 38.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1592 - type: GasVentScrubber - components: - - pos: 31.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1593 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 29.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1594 - type: GasPipeBend - components: - - pos: 29.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1595 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1596 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 23.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1597 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1598 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1599 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1600 - type: GasPipeStraight - components: - - pos: 38.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1601 - type: GasPipeStraight - components: - - pos: 38.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1602 - type: GasPipeStraight - components: - - pos: 25.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1603 - type: GasPipeStraight - components: - - pos: 25.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1604 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 25.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1605 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1606 - type: GasPipeStraight - components: - - pos: 21.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1607 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 7.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1608 - type: WallReinforced - components: - - pos: 33.5,-28.5 - parent: 1 - type: Transform -- uid: 1609 - type: ReinforcedWindow - components: - - pos: 20.5,-35.5 - parent: 1 - type: Transform -- uid: 1610 - type: ReinforcedWindow - components: - - pos: 20.5,-36.5 - parent: 1 - type: Transform -- uid: 1611 - type: WallReinforced - components: - - pos: 20.5,-34.5 - parent: 1 - type: Transform -- uid: 1612 - type: WallReinforced - components: - - pos: 20.5,-33.5 - parent: 1 - type: Transform -- uid: 1613 - type: CableMV - components: - - pos: 29.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1614 - type: CableApcExtension - components: - - pos: 46.5,-27.5 - parent: 1 - type: Transform -- uid: 1615 - type: WallReinforced - components: - - pos: 33.5,-29.5 - parent: 1 - type: Transform -- uid: 1616 - type: CableApcExtension - components: - - pos: 22.5,-39.5 - parent: 1 - type: Transform -- uid: 1617 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,8.5 - parent: 1 - type: Transform -- uid: 1618 - type: CableApcExtension - components: - - pos: 25.5,-39.5 - parent: 1 - type: Transform -- uid: 1619 - type: Bookshelf - components: - - pos: 11.5,-12.5 - parent: 1 - type: Transform -- uid: 1620 - type: Bookshelf - components: - - pos: 11.5,-10.5 - parent: 1 - type: Transform -- uid: 1621 - type: Bookshelf - components: - - pos: 12.5,-10.5 - parent: 1 - type: Transform -- uid: 1622 - type: Bookshelf - components: - - pos: 13.5,-10.5 - parent: 1 - type: Transform -- uid: 1623 - type: Bookshelf - components: - - pos: 13.5,-12.5 - parent: 1 - type: Transform -- uid: 1624 - type: Bookshelf - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform -- uid: 1625 - type: CapacitorStockPart - components: - - pos: 38.490074,-35.297806 - parent: 1 - type: Transform -- uid: 1626 - type: WallReinforced - components: - - pos: 40.5,-30.5 - parent: 1 - type: Transform -- uid: 1627 - type: Bookshelf - components: - - pos: 6.5,-4.5 - parent: 1 - type: Transform -- uid: 1628 - type: WallReinforced - components: - - pos: 3.5,22.5 - parent: 1 - type: Transform -- uid: 1629 - type: WallReinforced - components: - - pos: 40.5,-31.5 - parent: 1 - type: Transform -- uid: 1630 - type: WallReinforced - components: - - pos: 40.5,-29.5 - parent: 1 - type: Transform -- uid: 1631 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-44.5 - parent: 1 - type: Transform -- uid: 1632 - type: ComputerCargoOrders - components: - - pos: 29.5,-21.5 - parent: 1 - type: Transform -- uid: 1633 - type: ComputerAlert - components: - - pos: 27.5,-21.5 - parent: 1 - type: Transform -- uid: 1634 - type: WallReinforced - components: - - pos: 32.5,-26.5 - parent: 1 - type: Transform -- uid: 1635 - type: AirlockVirologyGlassLocked - components: - - rot: 3.141592653589793 rad - pos: -29.5,-72.5 - parent: 1 - type: Transform -- uid: 1636 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-22.5 - parent: 1 - type: Transform -- uid: 1637 - type: WallSolid - components: - - pos: -23.5,-7.5 - parent: 1 - type: Transform -- uid: 1638 - type: WallSolid - components: - - pos: -21.5,-7.5 - parent: 1 - type: Transform -- uid: 1639 - type: WallSolid - components: - - pos: -26.5,-7.5 - parent: 1 - type: Transform -- uid: 1640 - type: WallSolid - components: - - pos: -16.5,-7.5 - parent: 1 - type: Transform -- uid: 1641 - type: WallSolid - components: - - pos: -14.5,-7.5 - parent: 1 - type: Transform -- uid: 1642 - type: WallSolid - components: - - pos: -12.5,-7.5 - parent: 1 - type: Transform -- uid: 1643 - type: WallSolid - components: - - pos: -11.5,-5.5 - parent: 1 - type: Transform -- uid: 1644 - type: WallSolid - components: - - pos: -11.5,-7.5 - parent: 1 - type: Transform -- uid: 1645 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 1 - type: Transform -- uid: 1646 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -17.5,9.5 - parent: 1 - type: Transform -- uid: 1647 - type: WindowReinforcedDirectional - components: - - pos: 49.5,22.5 - parent: 1 - type: Transform -- uid: 1648 - type: AirAlarm - components: - - pos: -2.5,-13.5 - parent: 1 - type: Transform - - devices: - - 5261 - - 1355 - - 8758 - - invalid - - 3066 - - 5953 - - 3065 - - 7185 - - 5560 - - 5381 - type: DeviceList -- uid: 1649 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 42.5,17.5 - parent: 1 - type: Transform -- uid: 1650 - type: WallReinforced - components: - - pos: 43.5,16.5 - parent: 1 - type: Transform -- uid: 1651 - type: WallReinforced - components: - - pos: 43.5,9.5 - parent: 1 - type: Transform -- uid: 1652 - type: ReinforcedWindow - components: - - pos: 43.5,11.5 - parent: 1 - type: Transform -- uid: 1653 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 73.5,-38.5 - parent: 1 - type: Transform -- uid: 1654 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 43.5,3.5 - parent: 1 - type: Transform -- uid: 1655 - type: AirlockMaintLocked - components: - - rot: 3.141592653589793 rad - pos: 27.5,-8.5 - parent: 1 - type: Transform -- uid: 1656 - type: WallReinforced - components: - - pos: 28.5,-10.5 - parent: 1 - type: Transform -- uid: 1657 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 13.5,-23.5 - parent: 1 - type: Transform -- uid: 1658 - type: HighSecCommandLocked - components: - - pos: 13.5,-21.5 - parent: 1 - type: Transform -- uid: 1659 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 13.5,-20.5 - parent: 1 - type: Transform -- uid: 1660 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,-14.5 - parent: 1 - type: Transform -- uid: 1661 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 13.5,-19.5 - parent: 1 - type: Transform -- uid: 1662 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 13.5,-17.5 - parent: 1 - type: Transform -- uid: 1663 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 13.5,-16.5 - parent: 1 - type: Transform -- uid: 1664 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 13.5,-15.5 - parent: 1 - type: Transform -- uid: 1665 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,-13.5 - parent: 1 - type: Transform -- uid: 1666 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 17.5,-15.5 - parent: 1 - type: Transform -- uid: 1667 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 16.5,-15.5 - parent: 1 - type: Transform -- uid: 1668 - type: Firelock - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-25.5 - parent: 1 - type: Transform -- uid: 1669 - type: Firelock - components: - - pos: 32.5,-24.5 - parent: 1 - type: Transform -- uid: 1670 - type: WallReinforced - components: - - pos: 25.5,-26.5 - parent: 1 - type: Transform -- uid: 1671 - type: WallReinforced - components: - - pos: 21.5,-26.5 - parent: 1 - type: Transform -- uid: 1672 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.534615,-39.428345 - parent: 1 - type: Transform -- uid: 1673 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.51899,-39.44397 - parent: 1 - type: Transform -- uid: 1674 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-33.5 - parent: 1 - type: Transform -- uid: 1675 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1676 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 38.5,6.5 - parent: 1 - type: Transform -- uid: 1677 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 39.5,6.5 - parent: 1 - type: Transform -- uid: 1678 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 38.5,3.5 - parent: 1 - type: Transform -- uid: 1679 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 39.5,7.5 - parent: 1 - type: Transform -- uid: 1680 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 22.5,-7.5 - parent: 1 - type: Transform -- uid: 1681 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,-9.5 - parent: 1 - type: Transform -- uid: 1682 - type: WallReinforced - components: - - pos: 29.5,-9.5 - parent: 1 - type: Transform -- uid: 1683 - type: VendingBarDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 21.5,14.5 - parent: 1 - type: Transform -- uid: 1684 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 39.5,13.5 - parent: 1 - type: Transform -- uid: 1685 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 39.5,10.5 - parent: 1 - type: Transform -- uid: 1686 - type: AirlockSecurityGlass - components: - - pos: 39.5,11.5 - parent: 1 - type: Transform -- uid: 1687 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 19.5,22.5 - parent: 1 - type: Transform -- uid: 1688 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: 24.5,19.5 - parent: 1 - type: Transform -- uid: 1689 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -15.5,-3.5 - parent: 1 - type: Transform -- uid: 1690 - type: ReinforcedWindow - components: - - pos: -16.5,-1.5 - parent: 1 - type: Transform -- uid: 1691 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -16.5,5.5 - parent: 1 - type: Transform -- uid: 1692 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,10.5 - parent: 1 - type: Transform -- uid: 1693 - type: WallReinforced - components: - - pos: 38.5,-24.5 - parent: 1 - type: Transform -- uid: 1694 - type: CableMV - components: - - pos: 0.5,11.5 - parent: 1 - type: Transform -- uid: 1695 - type: WallSolid - components: - - pos: 37.5,-31.5 - parent: 1 - type: Transform -- uid: 1696 - type: CableApcExtension - components: - - pos: -8.5,13.5 - parent: 1 - type: Transform -- uid: 1697 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-22.5 - parent: 1 - type: Transform -- uid: 1698 - type: SignDirectionalMed - components: - - pos: -19.479143,47.404522 - parent: 1 - type: Transform -- uid: 1699 - type: BrbSign - components: - - pos: 27.671656,-37.713814 - parent: 1 - type: Transform -- uid: 1700 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.534615,-39.428345 - parent: 1 - type: Transform -- uid: 1701 - type: BoxCartridgeCap - components: - - pos: 2.4494405,-9.311171 - parent: 1 - type: Transform -- uid: 1702 - type: CableApcExtension - components: - - pos: -16.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1703 - type: CableHV - components: - - pos: -5.5,-30.5 - parent: 1 - type: Transform -- uid: 1704 - type: CableHV - components: - - pos: 6.5,-26.5 - parent: 1 - type: Transform -- uid: 1705 - type: CableHV - components: - - pos: 5.5,-26.5 - parent: 1 - type: Transform -- uid: 1706 - type: CableHV - components: - - pos: 3.5,-26.5 - parent: 1 - type: Transform -- uid: 1707 - type: CableHV - components: - - pos: 2.5,-26.5 - parent: 1 - type: Transform -- uid: 1708 - type: CableHV - components: - - pos: 1.5,-26.5 - parent: 1 - type: Transform -- uid: 1709 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 12.5,2.5 - parent: 1 - type: Transform -- uid: 1710 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,2.5 - parent: 1 - type: Transform -- uid: 1711 - type: CableApcExtension - components: - - pos: -4.5,-40.5 - parent: 1 - type: Transform -- uid: 1712 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-44.5 - parent: 1 - type: Transform -- uid: 1713 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1714 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 4.5,6.5 - parent: 1 - type: Transform -- uid: 1715 - type: WallSolid - components: - - pos: 28.5,-3.5 - parent: 1 - type: Transform -- uid: 1716 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1717 - type: CableApcExtension - components: - - pos: 30.5,-72.5 - parent: 1 - type: Transform -- uid: 1718 - type: DisposalPipe - components: - - pos: 6.5,4.5 - parent: 1 - type: Transform -- uid: 1719 - type: WallSolid - components: - - pos: -7.5,-34.5 - parent: 1 - type: Transform -- uid: 1720 - type: WallSolid - components: - - pos: -20.5,-74.5 - parent: 1 - type: Transform -- uid: 1721 - type: WindoorMedicalLocked - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-78.5 - parent: 1 - type: Transform -- uid: 1722 - type: CableApcExtension - components: - - pos: -9.5,-61.5 - parent: 1 - type: Transform -- uid: 1723 - type: CableApcExtension - components: - - pos: -13.5,-64.5 - parent: 1 - type: Transform -- uid: 1724 - type: CableApcExtension - components: - - pos: -16.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1725 - type: CableApcExtension - components: - - pos: -17.5,-54.5 - parent: 1 - type: Transform -- uid: 1726 - type: CableApcExtension - components: - - pos: -17.5,-55.5 - parent: 1 - type: Transform -- uid: 1727 - type: CableApcExtension - components: - - pos: -18.5,-55.5 - parent: 1 - type: Transform -- uid: 1728 - type: CableApcExtension - components: - - pos: -6.5,-64.5 - parent: 1 - type: Transform -- uid: 1729 - type: CableApcExtension - components: - - pos: -6.5,-65.5 - parent: 1 - type: Transform -- uid: 1730 - type: CableApcExtension - components: - - pos: -1.5,-54.5 - parent: 1 - type: Transform -- uid: 1731 - type: CableApcExtension - components: - - pos: -4.5,-48.5 - parent: 1 - type: Transform -- uid: 1732 - type: CableApcExtension - components: - - pos: 25.5,-14.5 - parent: 1 - type: Transform -- uid: 1733 - type: CableApcExtension - components: - - pos: 25.5,-7.5 - parent: 1 - type: Transform -- uid: 1734 - type: CableApcExtension - components: - - pos: 24.5,-6.5 - parent: 1 - type: Transform -- uid: 1735 - type: CableApcExtension - components: - - pos: 18.5,-12.5 - parent: 1 - type: Transform -- uid: 1736 - type: CableHV - components: - - pos: -17.5,-26.5 - parent: 1 - type: Transform -- uid: 1737 - type: CableHV - components: - - pos: 12.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1738 - type: Grille - components: - - pos: -10.5,-57.5 - parent: 1 - type: Transform -- uid: 1739 - type: GasPipeBend - components: - - pos: 14.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1740 - type: GasPipeStraight - components: - - pos: -5.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1741 - type: GasPipeStraight - components: - - pos: -5.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1742 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 16.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1743 - type: CarpetPink - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 1 - type: Transform -- uid: 1744 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1745 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-10.5 - parent: 1 - type: Transform -- uid: 1746 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1747 - type: Grille - components: - - pos: 1.5,-24.5 - parent: 1 - type: Transform -- uid: 1748 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-11.5 - parent: 1 - type: Transform -- uid: 1749 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-55.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 2598 - Forward: - - port: Left - uid: 2598 - Off: - - port: Middle - uid: 2598 - type: SignalReceiver -- uid: 1750 - type: CableHV - components: - - pos: 15.5,-41.5 - parent: 1 - type: Transform -- uid: 1751 - type: CableApcExtension - components: - - pos: 35.5,-40.5 - parent: 1 - type: Transform -- uid: 1752 - type: CableApcExtension - components: - - pos: 17.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1753 - type: ChairWood - components: - - pos: 9.5,-5.5 - parent: 1 - type: Transform -- uid: 1754 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 1 - type: Transform -- uid: 1755 - type: CableHV - components: - - pos: 13.5,-42.5 - parent: 1 - type: Transform -- uid: 1756 - type: CableHV - components: - - pos: 10.5,-42.5 - parent: 1 - type: Transform -- uid: 1757 - type: CableHV - components: - - pos: 7.5,-42.5 - parent: 1 - type: Transform -- uid: 1758 - type: Grille - components: - - pos: 29.5,9.5 - parent: 1 - type: Transform -- uid: 1759 - type: CableHV - components: - - pos: 8.5,-42.5 - parent: 1 - type: Transform -- uid: 1760 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 22.5,32.5 - parent: 1 - type: Transform -- uid: 1761 - type: CableApcExtension - components: - - pos: 9.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1762 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-27.5 - parent: 1 - type: Transform -- uid: 1763 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-27.5 - parent: 1 - type: Transform -- uid: 1764 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-27.5 - parent: 1 - type: Transform -- uid: 1765 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-27.5 - parent: 1 - type: Transform -- uid: 1766 - type: Grille - components: - - pos: 15.5,18.5 - parent: 1 - type: Transform -- uid: 1767 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-27.5 - parent: 1 - type: Transform -- uid: 1768 - type: DisposalYJunction - components: - - rot: 3.141592653589793 rad - pos: -3.5,-27.5 - parent: 1 - type: Transform -- uid: 1769 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-27.5 - parent: 1 - type: Transform -- uid: 1770 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-33.5 - parent: 1 - type: Transform -- uid: 1771 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-33.5 - parent: 1 - type: Transform -- uid: 1772 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1773 - type: AirlockGlass - components: - - pos: -16.5,-42.5 - parent: 1 - type: Transform -- uid: 1774 - type: FirelockGlass - components: - - pos: -16.5,-43.5 - parent: 1 - type: Transform -- uid: 1775 - type: FirelockGlass - components: - - pos: -16.5,-42.5 - parent: 1 - type: Transform -- uid: 1776 - type: FirelockGlass - components: - - pos: -16.5,-41.5 - parent: 1 - type: Transform -- uid: 1777 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-51.5 - parent: 1 - type: Transform -- uid: 1778 - type: CableMV - components: - - pos: 28.5,18.5 - parent: 1 - type: Transform -- uid: 1779 - type: CableApcExtension - components: - - pos: 15.5,-28.5 - parent: 1 - type: Transform -- uid: 1780 - type: CableApcExtension - components: - - pos: 14.5,-28.5 - parent: 1 - type: Transform -- uid: 1781 - type: CableApcExtension - components: - - pos: 14.5,-27.5 - parent: 1 - type: Transform -- uid: 1782 - type: Catwalk - components: - - pos: -1.5,-89.5 - parent: 1 - type: Transform -- uid: 1783 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.503365,-39.44397 - parent: 1 - type: Transform -- uid: 1784 - type: CableApcExtension - components: - - pos: 13.5,-26.5 - parent: 1 - type: Transform -- uid: 1785 - type: CableApcExtension - components: - - pos: -5.5,-73.5 - parent: 1 - type: Transform -- uid: 1786 - type: CableApcExtension - components: - - pos: 8.5,-26.5 - parent: 1 - type: Transform -- uid: 1787 - type: CableApcExtension - components: - - pos: -2.5,-74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1788 - type: CableApcExtension - components: - - pos: 11.5,-26.5 - parent: 1 - type: Transform -- uid: 1789 - type: CableApcExtension - components: - - pos: 3.5,-26.5 - parent: 1 - type: Transform -- uid: 1790 - type: AirlockGlass - components: - - name: youtool - type: MetaData - - rot: -1.5707963267948966 rad - pos: -21.5,-21.5 - parent: 1 - type: Transform -- uid: 1791 - type: CableApcExtension - components: - - pos: -7.5,1.5 - parent: 1 - type: Transform -- uid: 1792 - type: CableApcExtension - components: - - pos: -8.5,1.5 - parent: 1 - type: Transform -- uid: 1793 - type: APCBasic - components: - - pos: 21.5,15.5 - parent: 1 - type: Transform -- uid: 1794 - type: CableHV - components: - - pos: 25.5,-6.5 - parent: 1 - type: Transform -- uid: 1795 - type: CableHV - components: - - pos: 25.5,-12.5 - parent: 1 - type: Transform -- uid: 1796 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 1797 - type: CableHV - components: - - pos: 25.5,-13.5 - parent: 1 - type: Transform -- uid: 1798 - type: CableApcExtension - components: - - pos: -1.5,-75.5 - parent: 1 - type: Transform -- uid: 1799 - type: CableHV - components: - - pos: 25.5,-14.5 - parent: 1 - type: Transform -- uid: 1800 - type: GasPipeTJunction - components: - - pos: 44.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1801 - type: CableApcExtension - components: - - pos: -3.5,8.5 - parent: 1 - type: Transform -- uid: 1802 - type: CableHV - components: - - pos: 2.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1803 - type: CableApcExtension - components: - - pos: -3.5,10.5 - parent: 1 - type: Transform -- uid: 1804 - type: CableApcExtension - components: - - pos: 28.5,2.5 - parent: 1 - type: Transform -- uid: 1805 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1806 - type: CableApcExtension - components: - - pos: 32.5,1.5 - parent: 1 - type: Transform -- uid: 1807 - type: CableApcExtension - components: - - pos: 32.5,2.5 - parent: 1 - type: Transform -- uid: 1808 - type: CableHV - components: - - pos: -12.5,-73.5 - parent: 1 - type: Transform -- uid: 1809 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1810 - type: WallReinforced - components: - - pos: -15.5,-2.5 - parent: 1 - type: Transform -- uid: 1811 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1812 - type: SpawnPointMedicalDoctor - components: - - pos: -12.5,-46.5 - parent: 1 - type: Transform -- uid: 1813 - type: ToyRubberDuck - components: - - pos: 48.59984,-28.457928 - parent: 1 - type: Transform -- uid: 1814 - type: WindowReinforcedDirectional - components: - - pos: 25.5,-23.5 - parent: 1 - type: Transform -- uid: 1815 - type: CableApcExtension - components: - - pos: 1.5,-9.5 - parent: 1 - type: Transform -- uid: 1816 - type: PoweredSmallLight - components: - - pos: 32.5,-24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1817 - type: CableApcExtension - components: - - pos: 2.5,8.5 - parent: 1 - type: Transform -- uid: 1818 - type: WallSolid - components: - - pos: 41.5,-52.5 - parent: 1 - type: Transform -- uid: 1819 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 22.5,-34.5 - parent: 1 - type: Transform -- uid: 1820 - type: WallSolid - components: - - pos: 13.5,-52.5 - parent: 1 - type: Transform -- uid: 1821 - type: Grille - components: - - pos: -13.5,-11.5 - parent: 1 - type: Transform -- uid: 1822 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 33.5,-63.5 - parent: 1 - type: Transform -- uid: 1823 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -3.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1824 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 47.5,-30.5 - parent: 1 - type: Transform -- uid: 1825 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1826 - type: ToyRubberDuck - components: - - pos: 48.396713,-28.473553 - parent: 1 - type: Transform -- uid: 1827 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1828 - type: ClothingNeckGoldmedal - components: - - pos: 48.490463,-23.06585 - parent: 1 - type: Transform -- uid: 1829 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1830 - type: IngotGold - components: - - pos: 48.54513,-24.041304 - parent: 1 - type: Transform -- uid: 1831 - type: CableApcExtension - components: - - pos: 61.5,-11.5 - parent: 1 - type: Transform -- uid: 1832 - type: ToyAi - components: - - pos: 48.41234,-27.902035 - parent: 1 - type: Transform -- uid: 1833 - type: GasPipeStraight - components: - - pos: 15.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1834 - type: Poweredlight - components: - - pos: 40.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1835 - type: GasPipeStraight - components: - - pos: -3.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1836 - type: Firelock - components: - - pos: 40.5,-14.5 - parent: 1 - type: Transform -- uid: 1837 - type: GasPipeStraight - components: - - pos: -3.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1838 - type: PinpointerNuclear - components: - - pos: 47.542713,-21.502851 - parent: 1 - type: Transform -- uid: 1839 - type: GasPipeStraight - components: - - pos: -3.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1840 - type: GasPipeStraight - components: - - pos: -3.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1841 - type: WallReinforced - components: - - pos: 41.5,52.5 - parent: 1 - type: Transform -- uid: 1842 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1843 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 12.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1844 - type: AirlockCommandGlassLocked - components: - - pos: 33.5,-24.5 - parent: 1 - type: Transform -- uid: 1845 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1846 - type: CableHV - components: - - pos: 35.5,-34.5 - parent: 1 - type: Transform -- uid: 1847 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1848 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-37.5 - parent: 1 - type: Transform -- uid: 1849 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1850 - type: PillTricordrazine - components: - - pos: -8.519056,-32.256336 - parent: 1 - type: Transform -- uid: 1851 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1852 - type: CableHV - components: - - pos: 25.5,-44.5 - parent: 1 - type: Transform -- uid: 1853 - type: GasPipeTJunction - components: - - pos: -7.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1854 - type: CableHV - components: - - pos: 25.5,-43.5 - parent: 1 - type: Transform -- uid: 1855 - type: CableApcExtension - components: - - pos: 21.5,-10.5 - parent: 1 - type: Transform -- uid: 1856 - type: CableHV - components: - - pos: 33.5,-42.5 - parent: 1 - type: Transform -- uid: 1857 - type: CableApcExtension - components: - - pos: 20.5,-13.5 - parent: 1 - type: Transform -- uid: 1858 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 22.5,-55.5 - parent: 1 - type: Transform -- uid: 1859 - type: CableApcExtension - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform -- uid: 1860 - type: CableHV - components: - - pos: -67.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1861 - type: CableHV - components: - - pos: -2.5,-61.5 - parent: 1 - type: Transform -- uid: 1862 - type: SubstationBasic - components: - - pos: 15.5,-58.5 - parent: 1 - type: Transform -- uid: 1863 - type: CableHV - components: - - pos: -2.5,-59.5 - parent: 1 - type: Transform -- uid: 1864 - type: Rack - components: - - pos: 31.5,-11.5 - parent: 1 - type: Transform -- uid: 1865 - type: StoolBar - components: - - name: stool - type: MetaData - - pos: 0.5,-1.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1866 - type: WallSolid - components: - - pos: 17.5,-28.5 - parent: 1 - type: Transform -- uid: 1867 - type: CableHV - components: - - pos: -6.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1868 - type: CableApcExtension - components: - - pos: 20.5,-5.5 - parent: 1 - type: Transform -- uid: 1869 - type: SignRedFive - components: - - pos: 57.5,22.5 - parent: 1 - type: Transform -- uid: 1870 - type: CableApcExtension - components: - - pos: 22.5,-6.5 - parent: 1 - type: Transform -- uid: 1871 - type: GasPipeStraight - components: - - pos: -20.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1872 - type: CableApcExtension - components: - - pos: 23.5,-6.5 - parent: 1 - type: Transform -- uid: 1873 - type: CableApcExtension - components: - - pos: 25.5,-6.5 - parent: 1 - type: Transform -- uid: 1874 - type: Grille - components: - - pos: -9.5,-62.5 - parent: 1 - type: Transform -- uid: 1875 - type: CableApcExtension - components: - - pos: 25.5,-13.5 - parent: 1 - type: Transform -- uid: 1876 - type: CableApcExtension - components: - - pos: 25.5,-12.5 - parent: 1 - type: Transform -- uid: 1877 - type: CableApcExtension - components: - - pos: 25.5,-8.5 - parent: 1 - type: Transform -- uid: 1878 - type: CableApcExtension - components: - - pos: 24.5,-11.5 - parent: 1 - type: Transform -- uid: 1879 - type: CableApcExtension - components: - - pos: 5.5,-60.5 - parent: 1 - type: Transform -- uid: 1880 - type: CableApcExtension - components: - - pos: 5.5,-54.5 - parent: 1 - type: Transform -- uid: 1881 - type: CableApcExtension - components: - - pos: 2.5,-54.5 - parent: 1 - type: Transform -- uid: 1882 - type: CableApcExtension - components: - - pos: -14.5,-60.5 - parent: 1 - type: Transform -- uid: 1883 - type: CableMV - components: - - pos: -11.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1884 - type: SMESBasic - components: - - pos: -2.5,-78.5 - parent: 1 - type: Transform -- uid: 1885 - type: Grille - components: - - pos: 4.5,-85.5 - parent: 1 - type: Transform -- uid: 1886 - type: WallSolid - components: - - pos: -12.5,-70.5 - parent: 1 - type: Transform -- uid: 1887 - type: CableApcExtension - components: - - pos: -8.5,-65.5 - parent: 1 - type: Transform -- uid: 1888 - type: CableApcExtension - components: - - pos: -7.5,-65.5 - parent: 1 - type: Transform -- uid: 1889 - type: CableApcExtension - components: - - pos: -6.5,-60.5 - parent: 1 - type: Transform -- uid: 1890 - type: CableApcExtension - components: - - pos: -3.5,-60.5 - parent: 1 - type: Transform -- uid: 1891 - type: CableApcExtension - components: - - pos: -2.5,-60.5 - parent: 1 - type: Transform -- uid: 1892 - type: CableApcExtension - components: - - pos: -0.5,-60.5 - parent: 1 - type: Transform -- uid: 1893 - type: CableApcExtension - components: - - pos: 3.5,-63.5 - parent: 1 - type: Transform -- uid: 1894 - type: CableApcExtension - components: - - pos: 3.5,-61.5 - parent: 1 - type: Transform -- uid: 1895 - type: Catwalk - components: - - pos: 4.5,-89.5 - parent: 1 - type: Transform -- uid: 1896 - type: WallSolid - components: - - pos: -26.5,-70.5 - parent: 1 - type: Transform -- uid: 1897 - type: Catwalk - components: - - pos: -6.5,-75.5 - parent: 1 - type: Transform -- uid: 1898 - type: Catwalk - components: - - pos: -8.5,-75.5 - parent: 1 - type: Transform -- uid: 1899 - type: CableApcExtension - components: - - pos: 10.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1900 - type: CableApcExtension - components: - - pos: 10.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1901 - type: CableApcExtension - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1902 - type: CableHV - components: - - pos: -8.5,-19.5 - parent: 1 - type: Transform -- uid: 1903 - type: CableApcExtension - components: - - pos: 13.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1904 - type: CableApcExtension - components: - - pos: 14.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1905 - type: CableApcExtension - components: - - pos: 15.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1906 - type: CableApcExtension - components: - - pos: 15.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1907 - type: CableApcExtension - components: - - pos: 15.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1908 - type: CableApcExtension - components: - - pos: 14.5,-2.5 - parent: 1 - type: Transform -- uid: 1909 - type: WallSolid - components: - - pos: -24.5,-68.5 - parent: 1 - type: Transform -- uid: 1910 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-47.5 - parent: 1 - type: Transform -- uid: 1911 - type: CableApcExtension - components: - - pos: -19.5,-56.5 - parent: 1 - type: Transform -- uid: 1912 - type: CableApcExtension - components: - - pos: -19.5,-55.5 - parent: 1 - type: Transform -- uid: 1913 - type: DisposalPipe - components: - - pos: -19.5,-63.5 - parent: 1 - type: Transform -- uid: 1914 - type: CableApcExtension - components: - - pos: 14.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1915 - type: CableApcExtension - components: - - pos: 14.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1916 - type: DisposalUnit - components: - - pos: -6.5,-33.5 - parent: 1 - type: Transform -- uid: 1917 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-27.5 - parent: 1 - type: Transform -- uid: 1918 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-27.5 - parent: 1 - type: Transform -- uid: 1919 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-27.5 - parent: 1 - type: Transform -- uid: 1920 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-27.5 - parent: 1 - type: Transform -- uid: 1921 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-27.5 - parent: 1 - type: Transform -- uid: 1922 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 1 - type: Transform -- uid: 1923 - type: MedkitBruteFilled - components: - - pos: 19.413246,-20.453436 - parent: 1 - type: Transform -- uid: 1924 - type: TableReinforced - components: - - pos: -23.5,-87.5 - parent: 1 - type: Transform -- uid: 1925 - type: DisposalPipe - components: - - pos: -23.5,-77.5 - parent: 1 - type: Transform -- uid: 1926 - type: CableApcExtension - components: - - pos: 20.5,-45.5 - parent: 1 - type: Transform -- uid: 1927 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-27.5 - parent: 1 - type: Transform -- uid: 1928 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-27.5 - parent: 1 - type: Transform -- uid: 1929 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-27.5 - parent: 1 - type: Transform -- uid: 1930 - type: hydroponicsTray - components: - - pos: -6.5,11.5 - parent: 1 - type: Transform -- uid: 1931 - type: AirlockEngineeringLocked - components: - - pos: 9.5,-44.5 - parent: 1 - type: Transform -- uid: 1932 - type: CableHV - components: - - pos: -15.5,-72.5 - parent: 1 - type: Transform -- uid: 1933 - type: CableHV - components: - - pos: 11.5,-92.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1934 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 26.5,28.5 - parent: 1 - type: Transform -- uid: 1935 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 27.5,24.5 - parent: 1 - type: Transform -- uid: 1936 - type: CableHV - components: - - pos: 18.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1937 - type: CableHV - components: - - pos: 12.5,-98.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1938 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-12.5 - parent: 1 - type: Transform -- uid: 1939 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 1 - type: Transform -- uid: 1940 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 1 - type: Transform -- uid: 1941 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 1 - type: Transform -- uid: 1942 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-32.5 - parent: 1 - type: Transform -- uid: 1943 - type: Grille - components: - - pos: 18.5,-38.5 - parent: 1 - type: Transform -- uid: 1944 - type: Grille - components: - - pos: 17.5,-36.5 - parent: 1 - type: Transform -- uid: 1945 - type: Grille - components: - - pos: 17.5,-34.5 - parent: 1 - type: Transform -- uid: 1946 - type: Grille - components: - - pos: -27.5,-89.5 - parent: 1 - type: Transform -- uid: 1947 - type: Grille - components: - - pos: -1.5,-33.5 - parent: 1 - type: Transform -- uid: 1948 - type: WallSolid - components: - - pos: -8.5,14.5 - parent: 1 - type: Transform -- uid: 1949 - type: DisposalYJunction - components: - - rot: 3.141592653589793 rad - pos: 16.5,-43.5 - parent: 1 - type: Transform -- uid: 1950 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1951 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: 12.5,11.5 - parent: 1 - type: Transform -- uid: 1952 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-61.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 1953 - type: CableHV - components: - - pos: -1.5,-77.5 - parent: 1 - type: Transform -- uid: 1954 - type: PoweredLightPostSmall - components: - - pos: -0.5,-85.5 - parent: 1 - type: Transform -- uid: 1955 - type: PoweredLightPostSmall - components: - - pos: -2.5,-85.5 - parent: 1 - type: Transform -- uid: 1956 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-65.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1957 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-66.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1958 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 1959 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-34.5 - parent: 1 - type: Transform -- uid: 1960 - type: RandomDrinkBottle - components: - - pos: 15.5,13.5 - parent: 1 - type: Transform -- uid: 1961 - type: DrinkShaker - components: - - pos: 18.551043,13.384511 - parent: 1 - type: Transform -- uid: 1962 - type: TableWood - components: - - pos: 2.5,-9.5 - parent: 1 - type: Transform -- uid: 1963 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-28.5 - parent: 1 - type: Transform -- uid: 1964 - type: CableApcExtension - components: - - pos: -41.5,25.5 - parent: 1 - type: Transform -- uid: 1965 - type: CableHV - components: - - pos: -1.5,-80.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1966 - type: CableHV - components: - - pos: -1.5,-68.5 - parent: 1 - type: Transform -- uid: 1967 - type: ReinforcedWindow - components: - - pos: 17.5,18.5 - parent: 1 - type: Transform -- uid: 1968 - type: AirlockHeadOfSecurityLocked - components: - - name: hos office - type: MetaData - - pos: 9.5,19.5 - parent: 1 - type: Transform -- uid: 1969 - type: GasPipeBend - components: - - pos: 11.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1970 - type: WallSolid - components: - - pos: -6.5,-14.5 - parent: 1 - type: Transform -- uid: 1971 - type: LockerHeadOfPersonnelFilled - components: - - pos: 21.5,-34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 1972 - type: WallSolid - components: - - pos: -6.5,-28.5 - parent: 1 - type: Transform -- uid: 1973 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 30.5,29.5 - parent: 1 - type: Transform -- uid: 1974 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 9.5,23.5 - parent: 1 - type: Transform -- uid: 1975 - type: Grille - components: - - pos: 4.5,-84.5 - parent: 1 - type: Transform -- uid: 1976 - type: WallReinforced - components: - - pos: -0.5,15.5 - parent: 1 - type: Transform -- uid: 1977 - type: CableApcExtension - components: - - pos: 32.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1978 - type: Catwalk - components: - - pos: 30.5,-14.5 - parent: 1 - type: Transform -- uid: 1979 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 33.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1980 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1981 - type: DisposalPipe - components: - - pos: 18.5,-2.5 - parent: 1 - type: Transform -- uid: 1982 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1983 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-7.5 - parent: 1 - type: Transform -- uid: 1984 - type: CableApcExtension - components: - - pos: 14.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1985 - type: WallSolid - components: - - pos: -22.5,-19.5 - parent: 1 - type: Transform -- uid: 1986 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1987 - type: WallSolid - components: - - pos: -21.5,-19.5 - parent: 1 - type: Transform -- uid: 1988 - type: WallSolid - components: - - pos: 37.5,-57.5 - parent: 1 - type: Transform -- uid: 1989 - type: Catwalk - components: - - pos: 8.5,-46.5 - parent: 1 - type: Transform -- uid: 1990 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1991 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 1992 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,17.5 - parent: 1 - type: Transform -- uid: 1993 - type: FirelockGlass - components: - - pos: 26.5,-15.5 - parent: 1 - type: Transform -- uid: 1994 - type: CableApcExtension - components: - - pos: -0.5,-6.5 - parent: 1 - type: Transform -- uid: 1995 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 1 - type: Transform -- uid: 1996 - type: CableApcExtension - components: - - pos: 12.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 1997 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 5.5,23.5 - parent: 1 - type: Transform -- uid: 1998 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 4.5,23.5 - parent: 1 - type: Transform -- uid: 1999 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 3.5,23.5 - parent: 1 - type: Transform -- uid: 2000 - type: AirlockBrigGlassLocked - components: - - name: interrogation - type: MetaData - - pos: 16.5,18.5 - parent: 1 - type: Transform -- uid: 2001 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2002 - type: GasPipeStraight - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2003 - type: GasPipeStraight - components: - - pos: -8.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2004 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2005 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-34.5 - parent: 1 - type: Transform -- uid: 2006 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-32.5 - parent: 1 - type: Transform -- uid: 2007 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-30.5 - parent: 1 - type: Transform -- uid: 2008 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-28.5 - parent: 1 - type: Transform -- uid: 2009 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,8.5 - parent: 1 - type: Transform -- uid: 2010 - type: DisposalUnit - components: - - pos: 6.5,5.5 - parent: 1 - type: Transform -- uid: 2011 - type: WallSolid - components: - - pos: -1.5,5.5 - parent: 1 - type: Transform -- uid: 2012 - type: Grille - components: - - pos: -14.5,-77.5 - parent: 1 - type: Transform -- uid: 2013 - type: Grille - components: - - pos: -21.5,-91.5 - parent: 1 - type: Transform -- uid: 2014 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,-34.5 - parent: 1 - type: Transform -- uid: 2015 - type: Grille - components: - - pos: 4.5,-88.5 - parent: 1 - type: Transform -- uid: 2016 - type: ReinforcedWindow - components: - - pos: -1.5,-32.5 - parent: 1 - type: Transform -- uid: 2017 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 - parent: 1 - type: Transform -- uid: 2018 - type: Grille - components: - - pos: -25.5,-91.5 - parent: 1 - type: Transform -- uid: 2019 - type: Grille - components: - - pos: 4.5,-81.5 - parent: 1 - type: Transform -- uid: 2020 - type: CableMV - components: - - pos: -7.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2021 - type: CableMV - components: - - pos: -3.5,-68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2022 - type: APCSuperCapacity - components: - - pos: -3.5,-68.5 - parent: 1 - type: Transform -- uid: 2023 - type: CableApcExtension - components: - - pos: -3.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2024 - type: CableApcExtension - components: - - pos: -4.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2025 - type: CableApcExtension - components: - - pos: -5.5,-70.5 - parent: 1 - type: Transform -- uid: 2026 - type: CableApcExtension - components: - - pos: -1.5,-77.5 - parent: 1 - type: Transform -- uid: 2027 - type: CableApcExtension - components: - - pos: -0.5,-69.5 - parent: 1 - type: Transform -- uid: 2028 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 1 - type: Transform -- uid: 2029 - type: Catwalk - components: - - pos: -5.5,-75.5 - parent: 1 - type: Transform -- uid: 2030 - type: WallSolid - components: - - pos: 5.5,-5.5 - parent: 1 - type: Transform -- uid: 2031 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-20.5 - parent: 1 - type: Transform -- uid: 2032 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 1 - type: Transform -- uid: 2033 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2034 - type: SubstationBasic - components: - - pos: 8.5,-45.5 - parent: 1 - type: Transform -- uid: 2035 - type: CableHV - components: - - pos: 12.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2036 - type: StoolBar - components: - - name: stool - type: MetaData - - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2037 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 1 - type: Transform -- uid: 2038 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 1.5,1.5 - parent: 1 - type: Transform -- uid: 2039 - type: CableApcExtension - components: - - pos: 10.5,2.5 - parent: 1 - type: Transform -- uid: 2040 - type: CableApcExtension - components: - - pos: -5.5,-47.5 - parent: 1 - type: Transform -- uid: 2041 - type: Catwalk - components: - - pos: -4.5,-75.5 - parent: 1 - type: Transform -- uid: 2042 - type: APCSuperCapacity - components: - - pos: -2.5,-51.5 - parent: 1 - type: Transform -- uid: 2043 - type: CableMV - components: - - pos: -1.5,-53.5 - parent: 1 - type: Transform -- uid: 2044 - type: CableApcExtension - components: - - pos: -14.5,-54.5 - parent: 1 - type: Transform -- uid: 2045 - type: CableApcExtension - components: - - pos: -13.5,-59.5 - parent: 1 - type: Transform -- uid: 2046 - type: CableApcExtension - components: - - pos: -10.5,-61.5 - parent: 1 - type: Transform -- uid: 2047 - type: FoodMeat - components: - - pos: -16.53665,-77.55797 - parent: 1 - type: Transform -- uid: 2048 - type: GasPipeStraight - components: - - pos: -23.5,-82.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2049 - type: WindoorMedicalLocked - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-76.5 - parent: 1 - type: Transform -- uid: 2050 - type: Catwalk - components: - - pos: -3.5,-75.5 - parent: 1 - type: Transform -- uid: 2051 - type: Catwalk - components: - - pos: -14.5,-73.5 - parent: 1 - type: Transform -- uid: 2052 - type: CableApcExtension - components: - - pos: -4.5,-11.5 - parent: 1 - type: Transform -- uid: 2053 - type: ClosetFireFilled - components: - - pos: -11.5,-73.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2054 - type: WallSolid - components: - - pos: -3.5,-72.5 - parent: 1 - type: Transform -- uid: 2055 - type: WallSolid - components: - - pos: -0.5,-72.5 - parent: 1 - type: Transform -- uid: 2056 - type: CableApcExtension - components: - - pos: 62.5,-9.5 - parent: 1 - type: Transform -- uid: 2057 - type: CableApcExtension - components: - - pos: 62.5,-7.5 - parent: 1 - type: Transform -- uid: 2058 - type: Catwalk - components: - - pos: 9.5,-47.5 - parent: 1 - type: Transform -- uid: 2059 - type: Grille - components: - - pos: -18.5,-89.5 - parent: 1 - type: Transform -- uid: 2060 - type: WallSolid - components: - - pos: -13.5,-28.5 - parent: 1 - type: Transform -- uid: 2061 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 18.5,-26.5 - parent: 1 - type: Transform -- uid: 2062 - type: DisposalPipe - components: - - pos: 18.5,-3.5 - parent: 1 - type: Transform -- uid: 2063 - type: CableHV - components: - - pos: -12.5,-69.5 - parent: 1 - type: Transform -- uid: 2064 - type: Grille - components: - - pos: 4.5,-87.5 - parent: 1 - type: Transform -- uid: 2065 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2066 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-27.5 - parent: 1 - type: Transform -- uid: 2067 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-27.5 - parent: 1 - type: Transform -- uid: 2068 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-33.5 - parent: 1 - type: Transform -- uid: 2069 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-3.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 2070 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-31.5 - parent: 1 - type: Transform -- uid: 2071 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-17.5 - parent: 1 - type: Transform -- uid: 2072 - type: WallSolid - components: - - pos: -11.5,-6.5 - parent: 1 - type: Transform -- uid: 2073 - type: CableApcExtension - components: - - pos: 8.5,-8.5 - parent: 1 - type: Transform -- uid: 2074 - type: CableApcExtension - components: - - pos: 8.5,-10.5 - parent: 1 - type: Transform -- uid: 2075 - type: ReinforcedWindow - components: - - pos: 23.5,-12.5 - parent: 1 - type: Transform -- uid: 2076 - type: WallReinforced - components: - - pos: 42.5,50.5 - parent: 1 - type: Transform -- uid: 2077 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,35.5 - parent: 1 - type: Transform -- uid: 2078 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2079 - type: WallReinforced - components: - - pos: 27.5,-15.5 - parent: 1 - type: Transform -- uid: 2080 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 31.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2081 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 37.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2082 - type: AirlockArmoryGlassLocked - components: - - name: secway garage - type: MetaData - - rot: 3.141592653589793 rad - pos: 11.5,18.5 - parent: 1 - type: Transform -- uid: 2083 - type: WallReinforced - components: - - pos: 2.5,22.5 - parent: 1 - type: Transform -- uid: 2084 - type: WallReinforced - components: - - pos: 1.5,22.5 - parent: 1 - type: Transform -- uid: 2085 - type: CableMV - components: - - pos: -19.5,25.5 - parent: 1 - type: Transform -- uid: 2086 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 37.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2087 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 17.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2088 - type: GasPipeTJunction - components: - - pos: 28.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2089 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 28.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2090 - type: GasPipeFourway - components: - - pos: 31.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2091 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 38.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2092 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 38.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2093 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 38.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2094 - type: GasPipeTJunction - components: - - pos: 34.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2095 - type: GasVentScrubber - components: - - pos: 38.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2096 - type: FirelockGlass - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform -- uid: 2097 - type: FirelockGlass - components: - - pos: -1.5,3.5 - parent: 1 - type: Transform -- uid: 2098 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 1 - type: Transform -- uid: 2099 - type: CableApcExtension - components: - - pos: 24.5,1.5 - parent: 1 - type: Transform -- uid: 2100 - type: WallSolid - components: - - pos: 7.5,-13.5 - parent: 1 - type: Transform -- uid: 2101 - type: AirlockMaintSecLocked - components: - - name: warden office - type: MetaData - - rot: 3.141592653589793 rad - pos: 21.5,24.5 - parent: 1 - type: Transform -- uid: 2102 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 19.5,21.5 - parent: 1 - type: Transform -- uid: 2103 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2104 - type: WallReinforced - components: - - pos: -2.5,-30.5 - parent: 1 - type: Transform -- uid: 2105 - type: WallReinforced - components: - - pos: 1.5,-39.5 - parent: 1 - type: Transform -- uid: 2106 - type: SinkWide - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 1 - type: Transform -- uid: 2107 - type: FirelockGlass - components: - - pos: 19.5,-6.5 - parent: 1 - type: Transform -- uid: 2108 - type: WallReinforced - components: - - pos: 5.5,-40.5 - parent: 1 - type: Transform -- uid: 2109 - type: WallSolid - components: - - pos: 11.5,-48.5 - parent: 1 - type: Transform -- uid: 2110 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -2.5,9.5 - parent: 1 - type: Transform -- uid: 2111 - type: WallSolid - components: - - pos: 10.5,-48.5 - parent: 1 - type: Transform -- uid: 2112 - type: AirlockMedicalGlassLocked - components: - - pos: -15.5,-55.5 - parent: 1 - type: Transform -- uid: 2113 - type: WallSolid - components: - - pos: 7.5,-56.5 - parent: 1 - type: Transform -- uid: 2114 - type: WallSolid - components: - - pos: 7.5,-57.5 - parent: 1 - type: Transform -- uid: 2115 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 1 - type: Transform -- uid: 2116 - type: Window - components: - - pos: 3.5,-2.5 - parent: 1 - type: Transform -- uid: 2117 - type: Grille - components: - - pos: 19.5,0.5 - parent: 1 - type: Transform -- uid: 2118 - type: FirelockGlass - components: - - pos: 1.5,-2.5 - parent: 1 - type: Transform -- uid: 2119 - type: WardrobeBotanistFilled - components: - - pos: -4.5,12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2120 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -9.5,14.5 - parent: 1 - type: Transform -- uid: 2121 - type: WallSolid - components: - - pos: -6.5,-3.5 - parent: 1 - type: Transform -- uid: 2122 - type: WallSolid - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform -- uid: 2123 - type: WallSolid - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform -- uid: 2124 - type: WallSolid - components: - - pos: -6.5,-2.5 - parent: 1 - type: Transform -- uid: 2125 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 2.5,-51.5 - parent: 1 - type: Transform -- uid: 2126 - type: SpaceMedipen - components: - - rot: -1.5707963267948966 rad - pos: 4.2126236,-11.336138 - parent: 1 - type: Transform -- uid: 2127 - type: SpawnPointClown - components: - - pos: 2.5,-10.5 - parent: 1 - type: Transform -- uid: 2128 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 1 - type: Transform -- uid: 2129 - type: WallSolid - components: - - pos: 13.5,-2.5 - parent: 1 - type: Transform -- uid: 2130 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 3.5,12.5 - parent: 1 - type: Transform -- uid: 2131 - type: WallSolid - components: - - pos: 12.5,-47.5 - parent: 1 - type: Transform -- uid: 2132 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 32.5,28.5 - parent: 1 - type: Transform -- uid: 2133 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 60.5,14.5 - parent: 1 - type: Transform -- uid: 2134 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 14.5,13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2135 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-13.5 - parent: 1 - type: Transform -- uid: 2136 - type: CableMV - components: - - pos: 1.5,9.5 - parent: 1 - type: Transform -- uid: 2137 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 1 - type: Transform -- uid: 2138 - type: Table - components: - - pos: 3.5,-45.5 - parent: 1 - type: Transform -- uid: 2139 - type: WallSolid - components: - - pos: -2.5,-7.5 - parent: 1 - type: Transform -- uid: 2140 - type: WallSolid - components: - - pos: 5.5,-2.5 - parent: 1 - type: Transform -- uid: 2141 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 62.5,17.5 - parent: 1 - type: Transform -- uid: 2142 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 63.5,18.5 - parent: 1 - type: Transform -- uid: 2143 - type: ReinforcedWindow - components: - - pos: -1.5,-34.5 - parent: 1 - type: Transform -- uid: 2144 - type: WindoorArmoryLocked - components: - - rot: 1.5707963267948966 rad - pos: 30.5,28.5 - parent: 1 - type: Transform -- uid: 2145 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 1 - type: Transform -- uid: 2146 - type: WallSolid - components: - - pos: 15.5,-3.5 - parent: 1 - type: Transform -- uid: 2147 - type: CableApcExtension - components: - - pos: 1.5,9.5 - parent: 1 - type: Transform -- uid: 2148 - type: AirSensor - components: - - pos: 22.5,-27.5 - parent: 1 - type: Transform -- uid: 2149 - type: AtmosFixFreezerMarker - components: - - pos: 0.5,13.5 - parent: 1 - type: Transform -- uid: 2150 - type: WallSolid - components: - - pos: 12.5,-2.5 - parent: 1 - type: Transform -- uid: 2151 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2152 - type: WallSolid - components: - - pos: -11.5,1.5 - parent: 1 - type: Transform -- uid: 2153 - type: CableApcExtension - components: - - pos: 2.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2154 - type: FoodBoxDonkpocketPizza - components: - - pos: -30.632925,-69.35548 - parent: 1 - type: Transform -- uid: 2155 - type: GasPipeStraight - components: - - pos: -5.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2156 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2157 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 14.5,12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2158 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2159 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2160 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 1 - type: Transform -- uid: 2161 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 27.5,28.5 - parent: 1 - type: Transform -- uid: 2162 - type: ClothingNeckMantleHOS - components: - - pos: 5.905226,20.807451 - parent: 1 - type: Transform -- uid: 2163 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.503365,-39.44397 - parent: 1 - type: Transform -- uid: 2164 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2165 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2166 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2167 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 30.5,11.5 - parent: 1 - type: Transform -- uid: 2168 - type: Grille - components: - - pos: 19.5,-38.5 - parent: 1 - type: Transform -- uid: 2169 - type: CableApcExtension - components: - - pos: 22.5,-32.5 - parent: 1 - type: Transform -- uid: 2170 - type: AirlockEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 1 - type: Transform -- uid: 2171 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 32.5,9.5 - parent: 1 - type: Transform -- uid: 2172 - type: Firelock - components: - - rot: 1.5707963267948966 rad - pos: 26.5,14.5 - parent: 1 - type: Transform -- uid: 2173 - type: WallReinforced - components: - - pos: 7.5,-24.5 - parent: 1 - type: Transform -- uid: 2174 - type: WallReinforced - components: - - pos: 9.5,-24.5 - parent: 1 - type: Transform -- uid: 2175 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 3.5,-24.5 - parent: 1 - type: Transform -- uid: 2176 - type: Grille - components: - - pos: 2.5,-24.5 - parent: 1 - type: Transform -- uid: 2177 - type: WallReinforced - components: - - pos: 1.5,-29.5 - parent: 1 - type: Transform -- uid: 2178 - type: WallSolid - components: - - pos: 2.5,-28.5 - parent: 1 - type: Transform -- uid: 2179 - type: Grille - components: - - pos: 23.5,-12.5 - parent: 1 - type: Transform -- uid: 2180 - type: Grille - components: - - pos: 21.5,-15.5 - parent: 1 - type: Transform -- uid: 2181 - type: Grille - components: - - pos: 19.5,1.5 - parent: 1 - type: Transform -- uid: 2182 - type: Grille - components: - - pos: 28.5,-20.5 - parent: 1 - type: Transform -- uid: 2183 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2184 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2185 - type: CableApcExtension - components: - - pos: -15.5,-21.5 - parent: 1 - type: Transform -- uid: 2186 - type: WindoorBarLocked - components: - - pos: 18.5,15.5 - parent: 1 - type: Transform -- uid: 2187 - type: TableWood - components: - - pos: 15.5,10.5 - parent: 1 - type: Transform -- uid: 2188 - type: WallReinforced - components: - - pos: 27.5,-14.5 - parent: 1 - type: Transform -- uid: 2189 - type: AirlockGlass - components: - - pos: 26.5,15.5 - parent: 1 - type: Transform -- uid: 2190 - type: AirlockGlass - components: - - pos: 24.5,15.5 - parent: 1 - type: Transform -- uid: 2191 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 28.5,13.5 - parent: 1 - type: Transform -- uid: 2192 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 1 - type: Transform -- uid: 2193 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2194 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2195 - type: Catwalk - components: - - pos: 30.5,-10.5 - parent: 1 - type: Transform -- uid: 2196 - type: CableHV - components: - - pos: 8.5,-92.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2197 - type: CableMV - components: - - pos: -11.5,-69.5 - parent: 1 - type: Transform -- uid: 2198 - type: Catwalk - components: - - pos: -13.5,-73.5 - parent: 1 - type: Transform -- uid: 2199 - type: CableApcExtension - components: - - pos: -2.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2200 - type: CableMV - components: - - pos: -8.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2201 - type: CableMV - components: - - pos: -10.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2202 - type: CableApcExtension - components: - - pos: -9.5,10.5 - parent: 1 - type: Transform -- uid: 2203 - type: TableReinforced - components: - - pos: -7.5,4.5 - parent: 1 - type: Transform -- uid: 2204 - type: CableHV - components: - - pos: 23.5,-17.5 - parent: 1 - type: Transform -- uid: 2205 - type: WallSolid - components: - - pos: 11.5,-15.5 - parent: 1 - type: Transform -- uid: 2206 - type: WallSolid - components: - - pos: 42.5,-57.5 - parent: 1 - type: Transform -- uid: 2207 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -8.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2208 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-61.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2209 - type: HolofanProjector - components: - - pos: -42.447636,35.63477 - parent: 1 - type: Transform -- uid: 2210 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-44.5 - parent: 1 - type: Transform -- uid: 2211 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-53.5 - parent: 1 - type: Transform -- uid: 2212 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-27.5 - parent: 1 - type: Transform -- uid: 2213 - type: CableHV - components: - - pos: -14.5,-71.5 - parent: 1 - type: Transform -- uid: 2214 - type: TableWood - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform -- uid: 2215 - type: CableHV - components: - - pos: -15.5,-73.5 - parent: 1 - type: Transform -- uid: 2216 - type: CableHV - components: - - pos: 9.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2217 - type: CableApcExtension - components: - - pos: 18.5,-13.5 - parent: 1 - type: Transform -- uid: 2218 - type: CableApcExtension - components: - - pos: 21.5,-11.5 - parent: 1 - type: Transform -- uid: 2219 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-57.5 - parent: 1 - type: Transform -- uid: 2220 - type: CableMV - components: - - pos: 21.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2221 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2222 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2223 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 2.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2224 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2225 - type: GasPipeStraight - components: - - pos: -3.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2226 - type: FirelockGlass - components: - - pos: 8.5,-68.5 - parent: 1 - type: Transform -- uid: 2227 - type: CableApcExtension - components: - - pos: -4.5,-28.5 - parent: 1 - type: Transform -- uid: 2228 - type: CableMV - components: - - pos: 29.5,18.5 - parent: 1 - type: Transform -- uid: 2229 - type: CableMV - components: - - pos: 29.5,19.5 - parent: 1 - type: Transform -- uid: 2230 - type: CableMV - components: - - pos: 21.5,17.5 - parent: 1 - type: Transform -- uid: 2231 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-62.5 - parent: 1 - type: Transform -- uid: 2232 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -12.5,-51.5 - parent: 1 - type: Transform -- uid: 2233 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2234 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 23.5,-33.5 - parent: 1 - type: Transform -- uid: 2235 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 21.5,-33.5 - parent: 1 - type: Transform -- uid: 2236 - type: CableApcExtension - components: - - pos: 27.5,2.5 - parent: 1 - type: Transform -- uid: 2237 - type: CableMV - components: - - pos: 32.5,2.5 - parent: 1 - type: Transform -- uid: 2238 - type: CableMV - components: - - pos: 32.5,-0.5 - parent: 1 - type: Transform -- uid: 2239 - type: CableMV - components: - - pos: 32.5,-1.5 - parent: 1 - type: Transform -- uid: 2240 - type: CableApcExtension - components: - - pos: 6.5,15.5 - parent: 1 - type: Transform -- uid: 2241 - type: CableApcExtension - components: - - pos: 5.5,15.5 - parent: 1 - type: Transform -- uid: 2242 - type: CableApcExtension - components: - - pos: 0.5,12.5 - parent: 1 - type: Transform -- uid: 2243 - type: WallSolid - components: - - pos: 40.5,-27.5 - parent: 1 - type: Transform -- uid: 2244 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2245 - type: CableApcExtension - components: - - pos: 5.5,12.5 - parent: 1 - type: Transform -- uid: 2246 - type: CableApcExtension - components: - - pos: 5.5,13.5 - parent: 1 - type: Transform -- uid: 2247 - type: GasPipeStraight - components: - - pos: 47.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2248 - type: WallReinforced - components: - - pos: 13.5,-24.5 - parent: 1 - type: Transform -- uid: 2249 - type: WallSolid - components: - - pos: 13.5,-28.5 - parent: 1 - type: Transform -- uid: 2250 - type: WallReinforced - components: - - pos: 37.5,-24.5 - parent: 1 - type: Transform -- uid: 2251 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,12.5 - parent: 1 - type: Transform -- uid: 2252 - type: WallReinforced - components: - - pos: 3.5,19.5 - parent: 1 - type: Transform -- uid: 2253 - type: WallReinforced - components: - - pos: 3.5,21.5 - parent: 1 - type: Transform -- uid: 2254 - type: WallReinforced - components: - - pos: 13.5,19.5 - parent: 1 - type: Transform -- uid: 2255 - type: WallReinforced - components: - - pos: 13.5,20.5 - parent: 1 - type: Transform -- uid: 2256 - type: WallReinforced - components: - - pos: 13.5,21.5 - parent: 1 - type: Transform -- uid: 2257 - type: Bookshelf - components: - - pos: 7.5,-4.5 - parent: 1 - type: Transform -- uid: 2258 - type: Bookshelf - components: - - pos: 7.5,-6.5 - parent: 1 - type: Transform -- uid: 2259 - type: Bookshelf - components: - - pos: 12.5,-12.5 - parent: 1 - type: Transform -- uid: 2260 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2261 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 12.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2262 - type: GasVentPump - components: - - pos: 10.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2263 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2264 - type: Window - components: - - pos: 24.5,-40.5 - parent: 1 - type: Transform -- uid: 2265 - type: DogBed - components: - - pos: 21.5,-35.5 - parent: 1 - type: Transform -- uid: 2266 - type: ComputerId - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-37.5 - parent: 1 - type: Transform -- uid: 2267 - type: WallReinforced - components: - - pos: 20.5,-38.5 - parent: 1 - type: Transform -- uid: 2268 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 23.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2269 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2270 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2271 - type: CableApcExtension - components: - - pos: 21.5,-1.5 - parent: 1 - type: Transform -- uid: 2272 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2273 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2274 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2275 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2276 - type: DisposalTrunk - components: - - pos: 21.5,20.5 - parent: 1 - type: Transform -- uid: 2277 - type: DisposalPipe - components: - - pos: 24.5,-15.5 - parent: 1 - type: Transform -- uid: 2278 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-18.5 - parent: 1 - type: Transform -- uid: 2279 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-18.5 - parent: 1 - type: Transform -- uid: 2280 - type: WallReinforced - components: - - pos: 6.5,-24.5 - parent: 1 - type: Transform -- uid: 2281 - type: CableApcExtension - components: - - pos: 32.5,18.5 - parent: 1 - type: Transform -- uid: 2282 - type: WallSolid - components: - - pos: 18.5,-31.5 - parent: 1 - type: Transform -- uid: 2283 - type: ReinforcedWindow - components: - - pos: 31.5,-38.5 - parent: 1 - type: Transform -- uid: 2284 - type: ReinforcedWindow - components: - - pos: 18.5,-38.5 - parent: 1 - type: Transform -- uid: 2285 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2286 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2287 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -5.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2288 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -4.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2289 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2290 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2291 - type: GasPipeTJunction - components: - - pos: 3.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2292 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2293 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2294 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2295 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2296 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2297 - type: CableApcExtension - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform -- uid: 2298 - type: CableApcExtension - components: - - pos: 13.5,2.5 - parent: 1 - type: Transform -- uid: 2299 - type: CableApcExtension - components: - - pos: 13.5,0.5 - parent: 1 - type: Transform -- uid: 2300 - type: CableApcExtension - components: - - pos: 12.5,-0.5 - parent: 1 - type: Transform -- uid: 2301 - type: CableHV - components: - - pos: 10.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2302 - type: CableHV - components: - - pos: 15.5,-43.5 - parent: 1 - type: Transform -- uid: 2303 - type: CableMV - components: - - pos: 8.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2304 - type: CableMV - components: - - pos: 5.5,-46.5 - parent: 1 - type: Transform -- uid: 2305 - type: CableMV - components: - - pos: 3.5,-50.5 - parent: 1 - type: Transform -- uid: 2306 - type: CableApcExtension - components: - - pos: -13.5,-54.5 - parent: 1 - type: Transform -- uid: 2307 - type: APCHighCapacity - components: - - pos: -10.5,-58.5 - parent: 1 - type: Transform -- uid: 2308 - type: CableApcExtension - components: - - pos: -14.5,-59.5 - parent: 1 - type: Transform -- uid: 2309 - type: CableApcExtension - components: - - pos: -2.5,-54.5 - parent: 1 - type: Transform -- uid: 2310 - type: FireAxeCabinetFilled - components: - - pos: -41.5,-52.5 - parent: 1 - type: Transform -- uid: 2311 - type: WallReinforced - components: - - pos: -13.5,-77.5 - parent: 1 - type: Transform -- uid: 2312 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-78.5 - parent: 1 - type: Transform -- uid: 2313 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-83.5 - parent: 1 - type: Transform -- uid: 2314 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-82.5 - parent: 1 - type: Transform -- uid: 2315 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-81.5 - parent: 1 - type: Transform -- uid: 2316 - type: WallSolid - components: - - pos: -21.5,-81.5 - parent: 1 - type: Transform -- uid: 2317 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2318 - type: AirlockGlass - components: - - pos: -1.5,7.5 - parent: 1 - type: Transform -- uid: 2319 - type: ShuttersNormalOpen - components: - - pos: -8.5,4.5 - parent: 1 - type: Transform - - inputs: - Open: - - port: On - uid: 29231 - Close: - - port: Off - uid: 29231 - Toggle: [] - type: SignalReceiver -- uid: 2320 - type: WallReinforced - components: - - pos: 1.5,-32.5 - parent: 1 - type: Transform -- uid: 2321 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-2.5 - parent: 1 - type: Transform -- uid: 2322 - type: AirAlarm - components: - - pos: 15.5,8.5 - parent: 1 - type: Transform - - devices: - - 8056 - - invalid - - 8761 - - 1742 - - 2523 - - 4681 - - 2680 - - 5077 - - 1071 - - 706 - - 3015 - - 4384 - - 5561 - - 1108 - - 3168 - - 1186 - - 3697 - type: DeviceList -- uid: 2323 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 22.5,25.5 - parent: 1 - type: Transform -- uid: 2324 - type: hydroponicsTray - components: - - pos: -6.5,8.5 - parent: 1 - type: Transform -- uid: 2325 - type: hydroponicsTray - components: - - pos: -10.5,8.5 - parent: 1 - type: Transform -- uid: 2326 - type: WallSolid - components: - - pos: -4.5,13.5 - parent: 1 - type: Transform -- uid: 2327 - type: DisposalPipe - components: - - pos: 12.5,7.5 - parent: 1 - type: Transform -- uid: 2328 - type: DisposalBend - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform -- uid: 2329 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 1 - type: Transform -- uid: 2330 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,11.5 - parent: 1 - type: Transform -- uid: 2331 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 30.5,13.5 - parent: 1 - type: Transform -- uid: 2332 - type: FirelockGlass - components: - - pos: 35.5,-19.5 - parent: 1 - type: Transform -- uid: 2333 - type: FirelockGlass - components: - - pos: 36.5,-19.5 - parent: 1 - type: Transform -- uid: 2334 - type: AirlockGlass - components: - - pos: 31.5,8.5 - parent: 1 - type: Transform -- uid: 2335 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 18.5,12.5 - parent: 1 - type: Transform -- uid: 2336 - type: CableMV - components: - - pos: 13.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2337 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-39.5 - parent: 1 - type: Transform -- uid: 2338 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 17.5,3.5 - parent: 1 - type: Transform -- uid: 2339 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,0.5 - parent: 1 - type: Transform -- uid: 2340 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1 - type: Transform -- uid: 2341 - type: DisposalPipe - components: - - pos: 10.5,-2.5 - parent: 1 - type: Transform -- uid: 2342 - type: TableReinforced - components: - - pos: 0.5,4.5 - parent: 1 - type: Transform -- uid: 2343 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,0.5 - parent: 1 - type: Transform -- uid: 2344 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,0.5 - parent: 1 - type: Transform -- uid: 2345 - type: CableMV - components: - - pos: 5.5,-49.5 - parent: 1 - type: Transform -- uid: 2346 - type: CableHV - components: - - pos: -2.5,-63.5 - parent: 1 - type: Transform -- uid: 2347 - type: AirSensor - components: - - pos: 0.5,-4.5 - parent: 1 - type: Transform -- uid: 2348 - type: CableApcExtension - components: - - pos: 27.5,1.5 - parent: 1 - type: Transform -- uid: 2349 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 1 - type: Transform -- uid: 2350 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,10.5 - parent: 1 - type: Transform -- uid: 2351 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,-12.5 - parent: 1 - type: Transform -- uid: 2352 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 22.5,9.5 - parent: 1 - type: Transform -- uid: 2353 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 10.5,18.5 - parent: 1 - type: Transform -- uid: 2354 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-7.5 - parent: 1 - type: Transform -- uid: 2355 - type: DisposalYJunction - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-9.5 - parent: 1 - type: Transform -- uid: 2356 - type: GasPipeStraight - components: - - pos: 10.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2357 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 60.5,17.5 - parent: 1 - type: Transform -- uid: 2358 - type: WallSolid - components: - - pos: -6.5,-6.5 - parent: 1 - type: Transform -- uid: 2359 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-18.5 - parent: 1 - type: Transform -- uid: 2360 - type: WallSolid - components: - - pos: 15.5,-6.5 - parent: 1 - type: Transform -- uid: 2361 - type: WallSolid - components: - - pos: 15.5,-2.5 - parent: 1 - type: Transform -- uid: 2362 - type: CableApcExtension - components: - - pos: -2.5,-41.5 - parent: 1 - type: Transform -- uid: 2363 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-53.5 - parent: 1 - type: Transform -- uid: 2364 - type: WallSolid - components: - - pos: 27.5,-56.5 - parent: 1 - type: Transform -- uid: 2365 - type: Window - components: - - pos: 30.5,-57.5 - parent: 1 - type: Transform -- uid: 2366 - type: Window - components: - - pos: 29.5,-57.5 - parent: 1 - type: Transform -- uid: 2367 - type: WallSolid - components: - - pos: 27.5,-50.5 - parent: 1 - type: Transform -- uid: 2368 - type: Window - components: - - pos: 33.5,-57.5 - parent: 1 - type: Transform -- uid: 2369 - type: WallSolid - components: - - pos: 23.5,-50.5 - parent: 1 - type: Transform -- uid: 2370 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 23.5,-55.5 - parent: 1 - type: Transform -- uid: 2371 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 23.5,-56.5 - parent: 1 - type: Transform -- uid: 2372 - type: WallSolid - components: - - pos: 23.5,-54.5 - parent: 1 - type: Transform -- uid: 2373 - type: ConveyorBelt - components: - - pos: 18.5,-56.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 2598 - Forward: - - port: Left - uid: 2598 - Off: - - port: Middle - uid: 2598 - type: SignalReceiver -- uid: 2374 - type: WallSolid - components: - - pos: 23.5,-52.5 - parent: 1 - type: Transform -- uid: 2375 - type: WallSolid - components: - - pos: 23.5,-51.5 - parent: 1 - type: Transform -- uid: 2376 - type: WallSolid - components: - - pos: 23.5,-49.5 - parent: 1 - type: Transform -- uid: 2377 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 18.5,-51.5 - parent: 1 - type: Transform -- uid: 2378 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-55.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 2598 - Forward: - - port: Left - uid: 2598 - Off: - - port: Middle - uid: 2598 - type: SignalReceiver -- uid: 2379 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-55.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 2598 - Forward: - - port: Left - uid: 2598 - Off: - - port: Middle - uid: 2598 - type: SignalReceiver -- uid: 2380 - type: ConveyorBelt - components: - - pos: 18.5,-55.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 2598 - Forward: - - port: Left - uid: 2598 - Off: - - port: Middle - uid: 2598 - type: SignalReceiver -- uid: 2381 - type: WallReinforced - components: - - pos: 18.5,-64.5 - parent: 1 - type: Transform -- uid: 2382 - type: WallReinforced - components: - - pos: 15.5,-62.5 - parent: 1 - type: Transform -- uid: 2383 - type: WallReinforced - components: - - pos: 15.5,-61.5 - parent: 1 - type: Transform -- uid: 2384 - type: WallReinforced - components: - - pos: 17.5,-56.5 - parent: 1 - type: Transform -- uid: 2385 - type: WallReinforced - components: - - pos: 15.5,-60.5 - parent: 1 - type: Transform -- uid: 2386 - type: WallReinforced - components: - - pos: 15.5,-59.5 - parent: 1 - type: Transform -- uid: 2387 - type: WallReinforced - components: - - pos: 16.5,-59.5 - parent: 1 - type: Transform -- uid: 2388 - type: WallReinforced - components: - - pos: 16.5,-58.5 - parent: 1 - type: Transform -- uid: 2389 - type: WallReinforced - components: - - pos: 16.5,-57.5 - parent: 1 - type: Transform -- uid: 2390 - type: WallReinforced - components: - - pos: 16.5,-56.5 - parent: 1 - type: Transform -- uid: 2391 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 20.5,-55.5 - parent: 1 - type: Transform -- uid: 2392 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 21.5,-55.5 - parent: 1 - type: Transform -- uid: 2393 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 22.5,-51.5 - parent: 1 - type: Transform -- uid: 2394 - type: Firelock - components: - - pos: 23.5,-53.5 - parent: 1 - type: Transform -- uid: 2395 - type: KitchenMicrowave - components: - - pos: -31.5,-69.5 - parent: 1 - type: Transform -- uid: 2396 - type: Grille - components: - - pos: 18.5,-66.5 - parent: 1 - type: Transform -- uid: 2397 - type: Grille - components: - - pos: 18.5,-65.5 - parent: 1 - type: Transform -- uid: 2398 - type: WallReinforced - components: - - pos: 17.5,-67.5 - parent: 1 - type: Transform -- uid: 2399 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 21.5,-55.5 - parent: 1 - type: Transform -- uid: 2400 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 18.5,-50.5 - parent: 1 - type: Transform -- uid: 2401 - type: ClosetFireFilled - components: - - pos: 22.5,-52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2402 - type: Rack - components: - - pos: 22.5,-54.5 - parent: 1 - type: Transform -- uid: 2403 - type: ClosetEmergencyFilledRandom - components: - - pos: 21.5,-52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2404 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 18.5,-52.5 - parent: 1 - type: Transform -- uid: 2405 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 14.5,-53.5 - parent: 1 - type: Transform -- uid: 2406 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 14.5,-52.5 - parent: 1 - type: Transform -- uid: 2407 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 21.5,-53.5 - parent: 1 - type: Transform -- uid: 2408 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 15.5,-53.5 - parent: 1 - type: Transform -- uid: 2409 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 15.5,-52.5 - parent: 1 - type: Transform -- uid: 2410 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 16.5,-52.5 - parent: 1 - type: Transform -- uid: 2411 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 17.5,-52.5 - parent: 1 - type: Transform -- uid: 2412 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 17.5,-53.5 - parent: 1 - type: Transform -- uid: 2413 - type: AirlockMaint - components: - - rot: 3.141592653589793 rad - pos: 23.5,-53.5 - parent: 1 - type: Transform -- uid: 2414 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-42.5 - parent: 1 - type: Transform -- uid: 2415 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-74.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2416 - type: PoweredSmallLight - components: - - pos: 0.5,-73.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2417 - type: Chair - components: - - pos: -14.5,-52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2418 - type: Chair - components: - - pos: 2.5,-52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2419 - type: Chair - components: - - pos: -12.5,-52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2420 - type: Chair - components: - - pos: -11.5,-52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2421 - type: Girder - components: - - pos: 20.5,-54.5 - parent: 1 - type: Transform -- uid: 2422 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 22.5,24.5 - parent: 1 - type: Transform -- uid: 2423 - type: Chair - components: - - pos: 5.5,-52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2424 - type: DrinkBeer - components: - - pos: 16.20447,-64.18169 - parent: 1 - type: Transform -- uid: 2425 - type: DrinkBeer - components: - - pos: 16.48572,-64.21294 - parent: 1 - type: Transform -- uid: 2426 - type: CableApcExtension - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform -- uid: 2427 - type: Chair - components: - - pos: 16.5,-67.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2428 - type: CableHV - components: - - pos: 12.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2429 - type: CableHV - components: - - pos: 9.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2430 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-77.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2431 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 13.5,-58.5 - parent: 1 - type: Transform -- uid: 2432 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 27.5,-61.5 - parent: 1 - type: Transform -- uid: 2433 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 28.5,-62.5 - parent: 1 - type: Transform -- uid: 2434 - type: CableApcExtension - components: - - pos: 29.5,-47.5 - parent: 1 - type: Transform -- uid: 2435 - type: ClosetEmergencyFilledRandom - components: - - pos: 24.5,-56.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2436 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-64.5 - parent: 1 - type: Transform -- uid: 2437 - type: Rack - components: - - pos: 33.5,-11.5 - parent: 1 - type: Transform -- uid: 2438 - type: Rack - components: - - pos: 33.5,-13.5 - parent: 1 - type: Transform -- uid: 2439 - type: AirlockCommandGlassLocked - components: - - name: EVA - type: MetaData - - pos: 32.5,-15.5 - parent: 1 - type: Transform -- uid: 2440 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 33.5,-15.5 - parent: 1 - type: Transform -- uid: 2441 - type: Rack - components: - - pos: 31.5,-13.5 - parent: 1 - type: Transform -- uid: 2442 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,-14.5 - parent: 1 - type: Transform -- uid: 2443 - type: ClothingOuterHardsuitEVA - components: - - pos: 33.397083,-11.360956 - parent: 1 - type: Transform -- uid: 2444 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: 33.522083,-10.501581 - parent: 1 - type: Transform -- uid: 2445 - type: EmergencyLight - components: - - pos: 30.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 2446 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 37.5,-35.5 - parent: 1 - type: Transform -- uid: 2447 - type: FirelockGlass - components: - - pos: 7.5,-41.5 - parent: 1 - type: Transform -- uid: 2448 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-44.5 - parent: 1 - type: Transform -- uid: 2449 - type: FirelockGlass - components: - - pos: 24.5,-44.5 - parent: 1 - type: Transform -- uid: 2450 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 15.5,11.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -57047.77 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 3189 - Close: - - port: Off - uid: 3189 - Toggle: [] - type: SignalReceiver -- uid: 2451 - type: CableHV - components: - - pos: 15.5,-40.5 - parent: 1 - type: Transform -- uid: 2452 - type: CableHV - components: - - pos: -4.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2453 - type: CableHV - components: - - pos: -1.5,-65.5 - parent: 1 - type: Transform -- uid: 2454 - type: CableHV - components: - - pos: 14.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2455 - type: CableHV - components: - - pos: 14.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2456 - type: CableMV - components: - - pos: 9.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2457 - type: CableMV - components: - - pos: 9.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2458 - type: CableApcExtension - components: - - pos: 15.5,-40.5 - parent: 1 - type: Transform -- uid: 2459 - type: CableApcExtension - components: - - pos: 11.5,-42.5 - parent: 1 - type: Transform -- uid: 2460 - type: CableApcExtension - components: - - pos: 9.5,-41.5 - parent: 1 - type: Transform -- uid: 2461 - type: CableApcExtension - components: - - pos: 13.5,-42.5 - parent: 1 - type: Transform -- uid: 2462 - type: DrinkShaker - components: - - pos: 18.316668,13.478261 - parent: 1 - type: Transform -- uid: 2463 - type: RandomDrinkGlass - components: - - pos: 15.5,11.5 - parent: 1 - type: Transform -- uid: 2464 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -28.5,-75.5 - parent: 1 - type: Transform -- uid: 2465 - type: SpawnPointServiceWorker - components: - - pos: -21.5,44.5 - parent: 1 - type: Transform -- uid: 2466 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-7.5 - parent: 1 - type: Transform -- uid: 2467 - type: ChairWood - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform -- uid: 2468 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 10.5,-8.5 - parent: 1 - type: Transform -- uid: 2469 - type: CableApcExtension - components: - - pos: 17.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2470 - type: CableApcExtension - components: - - pos: 34.5,-41.5 - parent: 1 - type: Transform -- uid: 2471 - type: CableApcExtension - components: - - pos: 36.5,-40.5 - parent: 1 - type: Transform -- uid: 2472 - type: CableApcExtension - components: - - pos: 34.5,-40.5 - parent: 1 - type: Transform -- uid: 2473 - type: CableHV - components: - - pos: -0.5,-42.5 - parent: 1 - type: Transform -- uid: 2474 - type: CableHV - components: - - pos: 1.5,-42.5 - parent: 1 - type: Transform -- uid: 2475 - type: CableHV - components: - - pos: 3.5,-42.5 - parent: 1 - type: Transform -- uid: 2476 - type: CableHV - components: - - pos: 5.5,-42.5 - parent: 1 - type: Transform -- uid: 2477 - type: CableApcExtension - components: - - pos: 12.5,-6.5 - parent: 1 - type: Transform -- uid: 2478 - type: CableApcExtension - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform -- uid: 2479 - type: CableApcExtension - components: - - pos: 1.5,-4.5 - parent: 1 - type: Transform -- uid: 2480 - type: CableApcExtension - components: - - pos: 4.5,5.5 - parent: 1 - type: Transform -- uid: 2481 - type: DisposalPipe - components: - - pos: -4.5,-42.5 - parent: 1 - type: Transform -- uid: 2482 - type: DisposalPipe - components: - - pos: -4.5,-40.5 - parent: 1 - type: Transform -- uid: 2483 - type: DisposalPipe - components: - - pos: -4.5,-38.5 - parent: 1 - type: Transform -- uid: 2484 - type: DisposalPipe - components: - - pos: -4.5,-36.5 - parent: 1 - type: Transform -- uid: 2485 - type: DisposalPipe - components: - - pos: -4.5,-34.5 - parent: 1 - type: Transform -- uid: 2486 - type: DisposalPipe - components: - - pos: -4.5,-32.5 - parent: 1 - type: Transform -- uid: 2487 - type: DisposalPipe - components: - - pos: -4.5,-30.5 - parent: 1 - type: Transform -- uid: 2488 - type: CableHV - components: - - pos: 31.5,-5.5 - parent: 1 - type: Transform -- uid: 2489 - type: WindowReinforcedDirectional - components: - - pos: -11.5,-9.5 - parent: 1 - type: Transform -- uid: 2490 - type: CableApcExtension - components: - - pos: 7.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2491 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: 5.5,11.5 - parent: 1 - type: Transform -- uid: 2492 - type: CableApcExtension - components: - - pos: 1.5,7.5 - parent: 1 - type: Transform -- uid: 2493 - type: CableApcExtension - components: - - pos: 1.5,8.5 - parent: 1 - type: Transform -- uid: 2494 - type: CableApcExtension - components: - - pos: 3.5,8.5 - parent: 1 - type: Transform -- uid: 2495 - type: UniformPrinter - components: - - pos: 26.5,-34.5 - parent: 1 - type: Transform -- uid: 2496 - type: MaterialCloth1 - components: - - pos: 27.389032,-34.429665 - parent: 1 - type: Transform -- uid: 2497 - type: CableApcExtension - components: - - pos: -3.5,7.5 - parent: 1 - type: Transform -- uid: 2498 - type: CableApcExtension - components: - - pos: -1.5,7.5 - parent: 1 - type: Transform -- uid: 2499 - type: CableApcExtension - components: - - pos: -2.5,7.5 - parent: 1 - type: Transform -- uid: 2500 - type: CableApcExtension - components: - - pos: -0.5,6.5 - parent: 1 - type: Transform -- uid: 2501 - type: CableApcExtension - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform -- uid: 2502 - type: CableApcExtension - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform -- uid: 2503 - type: CableApcExtension - components: - - pos: 0.5,11.5 - parent: 1 - type: Transform -- uid: 2504 - type: CableApcExtension - components: - - pos: 0.5,13.5 - parent: 1 - type: Transform -- uid: 2505 - type: CableApcExtension - components: - - pos: 0.5,9.5 - parent: 1 - type: Transform -- uid: 2506 - type: CableApcExtension - components: - - pos: -8.5,7.5 - parent: 1 - type: Transform -- uid: 2507 - type: CableApcExtension - components: - - pos: -7.5,7.5 - parent: 1 - type: Transform -- uid: 2508 - type: CableApcExtension - components: - - pos: -6.5,7.5 - parent: 1 - type: Transform -- uid: 2509 - type: CableApcExtension - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform -- uid: 2510 - type: Catwalk - components: - - pos: -46.5,-43.5 - parent: 1 - type: Transform -- uid: 2511 - type: CableApcExtension - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform -- uid: 2512 - type: CableApcExtension - components: - - pos: 10.5,-11.5 - parent: 1 - type: Transform -- uid: 2513 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 34.5,9.5 - parent: 1 - type: Transform -- uid: 2514 - type: CableApcExtension - components: - - pos: 7.5,-6.5 - parent: 1 - type: Transform -- uid: 2515 - type: CableApcExtension - components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform -- uid: 2516 - type: CableApcExtension - components: - - pos: 2.5,-11.5 - parent: 1 - type: Transform -- uid: 2517 - type: CableApcExtension - components: - - pos: 10.5,-10.5 - parent: 1 - type: Transform -- uid: 2518 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-29.5 - parent: 1 - type: Transform -- uid: 2519 - type: CarpetSBlue - components: - - pos: 27.5,-37.5 - parent: 1 - type: Transform -- uid: 2520 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 26.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2521 - type: CableApcExtension - components: - - pos: 42.5,-26.5 - parent: 1 - type: Transform -- uid: 2522 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2523 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 16.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2524 - type: GasPipeFourway - components: - - pos: 21.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2525 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2526 - type: GasPipeStraight - components: - - pos: 34.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2527 - type: Grille - components: - - pos: 42.5,-23.5 - parent: 1 - type: Transform -- uid: 2528 - type: CableMV - components: - - pos: -3.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2529 - type: CableMV - components: - - pos: -2.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2530 - type: CableMV - components: - - pos: -1.5,14.5 - parent: 1 - type: Transform -- uid: 2531 - type: CableMV - components: - - pos: -0.5,14.5 - parent: 1 - type: Transform -- uid: 2532 - type: WallReinforced - components: - - pos: 40.5,-23.5 - parent: 1 - type: Transform -- uid: 2533 - type: WallReinforced - components: - - pos: 40.5,-24.5 - parent: 1 - type: Transform -- uid: 2534 - type: WallReinforced - components: - - pos: 49.5,-24.5 - parent: 1 - type: Transform -- uid: 2535 - type: WallReinforced - components: - - pos: 43.5,-26.5 - parent: 1 - type: Transform -- uid: 2536 - type: Grille - components: - - pos: 41.5,-23.5 - parent: 1 - type: Transform -- uid: 2537 - type: NuclearBomb - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2538 - type: NuclearBombKeg - components: - - pos: 46.5,-29.5 - parent: 1 - type: Transform -- uid: 2539 - type: CableApcExtension - components: - - pos: -8.5,-50.5 - parent: 1 - type: Transform -- uid: 2540 - type: CableApcExtension - components: - - pos: 5.5,8.5 - parent: 1 - type: Transform -- uid: 2541 - type: CableApcExtension - components: - - pos: -8.5,-51.5 - parent: 1 - type: Transform -- uid: 2542 - type: CableApcExtension - components: - - pos: -8.5,-52.5 - parent: 1 - type: Transform -- uid: 2543 - type: CableApcExtension - components: - - pos: -7.5,-52.5 - parent: 1 - type: Transform -- uid: 2544 - type: CableApcExtension - components: - - pos: -7.5,-53.5 - parent: 1 - type: Transform -- uid: 2545 - type: CableApcExtension - components: - - pos: 6.5,7.5 - parent: 1 - type: Transform -- uid: 2546 - type: CableMV - components: - - pos: -5.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2547 - type: CableMV - components: - - pos: -6.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2548 - type: ClothingHeadHatFez - components: - - pos: 20.326727,12.833071 - parent: 1 - type: Transform -- uid: 2549 - type: CableApcExtension - components: - - pos: 31.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2550 - type: CableApcExtension - components: - - pos: 32.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2551 - type: Catwalk - components: - - pos: 32.5,-10.5 - parent: 1 - type: Transform -- uid: 2552 - type: PoweredSmallLight - components: - - pos: 33.5,-10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2553 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 28.5,-14.5 - parent: 1 - type: Transform -- uid: 2554 - type: Catwalk - components: - - pos: 32.5,-13.5 - parent: 1 - type: Transform -- uid: 2555 - type: SpawnPointChef - components: - - pos: 5.5,7.5 - parent: 1 - type: Transform -- uid: 2556 - type: RandomSpawner - components: - - pos: -5.5,-26.5 - parent: 1 - type: Transform -- uid: 2557 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2558 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-39.5 - parent: 1 - type: Transform -- uid: 2559 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2560 - type: CableHV - components: - - pos: 25.5,-5.5 - parent: 1 - type: Transform -- uid: 2561 - type: CableApcExtension - components: - - pos: -4.5,-20.5 - parent: 1 - type: Transform -- uid: 2562 - type: CableApcExtension - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform -- uid: 2563 - type: CrateNPCCow - components: - - pos: -0.5,9.5 - parent: 1 - type: Transform - - air: - volume: 800 - immutable: False - temperature: 293.1499 - moles: - - 31.934978 - - 120.136345 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2564 - type: Dresser - components: - - pos: 22.5,14.5 - parent: 1 - type: Transform -- uid: 2565 - type: LockerBoozeFilled - components: - - pos: 22.5,12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2566 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,-32.5 - parent: 1 - type: Transform -- uid: 2567 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-43.5 - parent: 1 - type: Transform -- uid: 2568 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-43.5 - parent: 1 - type: Transform -- uid: 2569 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-27.5 - parent: 1 - type: Transform -- uid: 2570 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-27.5 - parent: 1 - type: Transform -- uid: 2571 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-27.5 - parent: 1 - type: Transform -- uid: 2572 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-27.5 - parent: 1 - type: Transform -- uid: 2573 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-27.5 - parent: 1 - type: Transform -- uid: 2574 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-27.5 - parent: 1 - type: Transform -- uid: 2575 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-27.5 - parent: 1 - type: Transform -- uid: 2576 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-27.5 - parent: 1 - type: Transform -- uid: 2577 - type: DrinkShaker - components: - - pos: 18.582293,13.603261 - parent: 1 - type: Transform -- uid: 2578 - type: CableApcExtension - components: - - pos: 5.5,7.5 - parent: 1 - type: Transform -- uid: 2579 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-27.5 - parent: 1 - type: Transform -- uid: 2580 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-27.5 - parent: 1 - type: Transform -- uid: 2581 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 10.5,7.5 - parent: 1 - type: Transform -- uid: 2582 - type: CableApcExtension - components: - - pos: 26.5,-39.5 - parent: 1 - type: Transform -- uid: 2583 - type: Poweredlight - components: - - pos: 21.5,-41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2584 - type: CableApcExtension - components: - - pos: 32.5,-41.5 - parent: 1 - type: Transform -- uid: 2585 - type: CableApcExtension - components: - - pos: 33.5,-40.5 - parent: 1 - type: Transform -- uid: 2586 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 9.5,-8.5 - parent: 1 - type: Transform -- uid: 2587 - type: CableApcExtension - components: - - pos: 34.5,-42.5 - parent: 1 - type: Transform -- uid: 2588 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-6.5 - parent: 1 - type: Transform -- uid: 2589 - type: GasPipeStraight - components: - - pos: 10.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2590 - type: CableApcExtension - components: - - pos: 0.5,-4.5 - parent: 1 - type: Transform -- uid: 2591 - type: CableApcExtension - components: - - pos: 23.5,-42.5 - parent: 1 - type: Transform -- uid: 2592 - type: CableApcExtension - components: - - pos: 21.5,-42.5 - parent: 1 - type: Transform -- uid: 2593 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: 33.522083,-12.454706 - parent: 1 - type: Transform -- uid: 2594 - type: Table - components: - - pos: 29.5,-12.5 - parent: 1 - type: Transform -- uid: 2595 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 31.5,-64.5 - parent: 1 - type: Transform -- uid: 2596 - type: DisposalPipe - components: - - pos: 17.5,-48.5 - parent: 1 - type: Transform -- uid: 2597 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-54.5 - parent: 1 - type: Transform -- uid: 2598 - type: TwoWayLever - components: - - pos: 16.5,-53.5 - parent: 1 - type: Transform - - nextSignalLeft: True - type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 7220 - - port: Forward - uid: 6535 - - port: Forward - uid: 6991 - - port: Forward - uid: 5392 - - port: Forward - uid: 2379 - - port: Forward - uid: 1749 - - port: Forward - uid: 2378 - - port: Forward - uid: 2380 - - port: Forward - uid: 7219 - - port: Forward - uid: 2373 - - port: Forward - uid: 6058 - Right: - - port: Reverse - uid: 7220 - - port: Reverse - uid: 6535 - - port: Reverse - uid: 6991 - - port: Reverse - uid: 5392 - - port: Reverse - uid: 2379 - - port: Reverse - uid: 1749 - - port: Reverse - uid: 2378 - - port: Reverse - uid: 2380 - - port: Reverse - uid: 7219 - - port: Reverse - uid: 2373 - - port: Reverse - uid: 6058 - Middle: - - port: Off - uid: 7220 - - port: Off - uid: 6535 - - port: Off - uid: 6991 - - port: Off - uid: 5392 - - port: Off - uid: 2379 - - port: Off - uid: 1749 - - port: Off - uid: 2378 - - port: Off - uid: 2380 - - port: Off - uid: 7219 - - port: Off - uid: 2373 - - port: Off - uid: 6058 - type: SignalTransmitter -- uid: 2599 - type: WallReinforced - components: - - pos: 17.5,-63.5 - parent: 1 - type: Transform -- uid: 2600 - type: AirlockMaint - components: - - pos: -6.5,-29.5 - parent: 1 - type: Transform -- uid: 2601 - type: WallSolid - components: - - pos: -17.5,-31.5 - parent: 1 - type: Transform -- uid: 2602 - type: AirlockCommandGlassLocked - components: - - pos: 31.5,-24.5 - parent: 1 - type: Transform -- uid: 2603 - type: ReinforcedWindow - components: - - pos: 43.5,8.5 - parent: 1 - type: Transform -- uid: 2604 - type: CableHV - components: - - pos: -4.5,-24.5 - parent: 1 - type: Transform -- uid: 2605 - type: GasPipeStraight - components: - - pos: -5.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2606 - type: ReinforcedWindow - components: - - pos: 23.5,-11.5 - parent: 1 - type: Transform -- uid: 2607 - type: CableApcExtension - components: - - pos: 8.5,-9.5 - parent: 1 - type: Transform -- uid: 2608 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 23.5,24.5 - parent: 1 - type: Transform -- uid: 2609 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 34.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2610 - type: WallReinforced - components: - - pos: -2.5,18.5 - parent: 1 - type: Transform -- uid: 2611 - type: Poweredlight - components: - - pos: 29.5,-45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2612 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-58.5 - parent: 1 - type: Transform -- uid: 2613 - type: EmergencyLight - components: - - pos: -12.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 2614 - type: GasPipeStraight - components: - - pos: -9.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2615 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2616 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 30.5,10.5 - parent: 1 - type: Transform -- uid: 2617 - type: Firelock - components: - - rot: 1.5707963267948966 rad - pos: 25.5,14.5 - parent: 1 - type: Transform -- uid: 2618 - type: AirlockGlass - components: - - pos: 25.5,15.5 - parent: 1 - type: Transform -- uid: 2619 - type: SpawnPointJanitor - components: - - pos: -11.5,-18.5 - parent: 1 - type: Transform -- uid: 2620 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-3.5 - parent: 1 - type: Transform -- uid: 2621 - type: GasPipeStraight - components: - - pos: 0.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2622 - type: CableApcExtension - components: - - pos: -20.5,-87.5 - parent: 1 - type: Transform -- uid: 2623 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 1 - type: Transform -- uid: 2624 - type: WallSolid - components: - - pos: 19.5,-2.5 - parent: 1 - type: Transform -- uid: 2625 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: 15.5,7.5 - parent: 1 - type: Transform -- uid: 2626 - type: WallSolid - components: - - pos: 24.5,5.5 - parent: 1 - type: Transform -- uid: 2627 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: 15.5,6.5 - parent: 1 - type: Transform -- uid: 2628 - type: CableApcExtension - components: - - pos: 23.5,-1.5 - parent: 1 - type: Transform -- uid: 2629 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 28.5,1.5 - parent: 1 - type: Transform -- uid: 2630 - type: SubstationBasic - components: - - pos: 30.5,-2.5 - parent: 1 - type: Transform -- uid: 2631 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 19.5,0.5 - parent: 1 - type: Transform -- uid: 2632 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-3.5 - parent: 1 - type: Transform -- uid: 2633 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-3.5 - parent: 1 - type: Transform -- uid: 2634 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 1 - type: Transform -- uid: 2635 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: 15.5,2.5 - parent: 1 - type: Transform -- uid: 2636 - type: DisposalYJunction - components: - - pos: -4.5,0.5 - parent: 1 - type: Transform -- uid: 2637 - type: Table - components: - - pos: 1.5,-4.5 - parent: 1 - type: Transform -- uid: 2638 - type: DisposalUnit - components: - - pos: 4.5,-7.5 - parent: 1 - type: Transform -- uid: 2639 - type: DisposalPipe - components: - - pos: 4.5,-6.5 - parent: 1 - type: Transform -- uid: 2640 - type: soda_dispenser - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 1 - type: Transform -- uid: 2641 - type: WindoorTheatreLocked - components: - - rot: 3.141592653589793 rad - pos: 9.5,-0.5 - parent: 1 - type: Transform -- uid: 2642 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 10.5,0.5 - parent: 1 - type: Transform -- uid: 2643 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 7.5,1.5 - parent: 1 - type: Transform -- uid: 2644 - type: WallSolid - components: - - pos: 16.5,-7.5 - parent: 1 - type: Transform -- uid: 2645 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: -0.5,0.5 - parent: 1 - type: Transform -- uid: 2646 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 0.5,2.5 - parent: 1 - type: Transform -- uid: 2647 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 1 - type: Transform -- uid: 2648 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 1 - type: Transform -- uid: 2649 - type: FirelockGlass - components: - - pos: 31.5,7.5 - parent: 1 - type: Transform -- uid: 2650 - type: CableHV - components: - - pos: -5.5,-40.5 - parent: 1 - type: Transform -- uid: 2651 - type: CableHV - components: - - pos: -5.5,-38.5 - parent: 1 - type: Transform -- uid: 2652 - type: CableHV - components: - - pos: -5.5,-26.5 - parent: 1 - type: Transform -- uid: 2653 - type: WallSolid - components: - - pos: -9.5,-16.5 - parent: 1 - type: Transform -- uid: 2654 - type: CableApcExtension - components: - - pos: -2.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2655 - type: CableApcExtension - components: - - pos: -3.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2656 - type: WallSolid - components: - - pos: 2.5,10.5 - parent: 1 - type: Transform -- uid: 2657 - type: CableMV - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2658 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 8.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2659 - type: CableMV - components: - - pos: 0.5,10.5 - parent: 1 - type: Transform -- uid: 2660 - type: ReinforcedWindow - components: - - pos: 35.5,18.5 - parent: 1 - type: Transform -- uid: 2661 - type: WallReinforced - components: - - pos: 39.5,17.5 - parent: 1 - type: Transform -- uid: 2662 - type: WallReinforced - components: - - pos: 37.5,17.5 - parent: 1 - type: Transform -- uid: 2663 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,18.5 - parent: 1 - type: Transform -- uid: 2664 - type: IntercomSecurity - components: - - rot: 1.5707963267948966 rad - pos: 3.5,14.5 - parent: 1 - type: Transform -- uid: 2665 - type: CableApcExtension - components: - - pos: 32.5,17.5 - parent: 1 - type: Transform -- uid: 2666 - type: LockerEvidence - components: - - pos: 37.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 2667 - type: WallSolid - components: - - pos: 14.5,-44.5 - parent: 1 - type: Transform -- uid: 2668 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 63.5,15.5 - parent: 1 - type: Transform -- uid: 2669 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 18.5,2.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2670 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 33.5,-7.5 - parent: 1 - type: Transform -- uid: 2671 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 35.5,-7.5 - parent: 1 - type: Transform -- uid: 2672 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 31.5,-7.5 - parent: 1 - type: Transform -- uid: 2673 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 20.5,-7.5 - parent: 1 - type: Transform -- uid: 2674 - type: AirlockGlass - components: - - pos: 35.5,1.5 - parent: 1 - type: Transform -- uid: 2675 - type: CableApcExtension - components: - - pos: 27.5,0.5 - parent: 1 - type: Transform -- uid: 2676 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 8.5,13.5 - parent: 1 - type: Transform -- uid: 2677 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,13.5 - parent: 1 - type: Transform -- uid: 2678 - type: DisposalPipe - components: - - pos: 12.5,12.5 - parent: 1 - type: Transform -- uid: 2679 - type: Window - components: - - pos: 35.5,-5.5 - parent: 1 - type: Transform -- uid: 2680 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 10.5,13.5 - parent: 1 - type: Transform -- uid: 2681 - type: AirlockBrigGlassLocked - components: - - pos: 19.5,17.5 - parent: 1 - type: Transform -- uid: 2682 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 24.5,19.5 - parent: 1 - type: Transform -- uid: 2683 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,17.5 - parent: 1 - type: Transform -- uid: 2684 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 27.5,16.5 - parent: 1 - type: Transform -- uid: 2685 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 39.5,5.5 - parent: 1 - type: Transform -- uid: 2686 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 34.5,13.5 - parent: 1 - type: Transform -- uid: 2687 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,3.5 - parent: 1 - type: Transform -- uid: 2688 - type: GasPipeStraight - components: - - pos: 34.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2689 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 38.5,9.5 - parent: 1 - type: Transform -- uid: 2690 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,6.5 - parent: 1 - type: Transform -- uid: 2691 - type: AirlockMaintCommandLocked - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-32.5 - parent: 1 - type: Transform -- uid: 2692 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-33.5 - parent: 1 - type: Transform -- uid: 2693 - type: WallReinforced - components: - - pos: 25.5,-28.5 - parent: 1 - type: Transform -- uid: 2694 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.51899,-39.44397 - parent: 1 - type: Transform -- uid: 2695 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.534615,-39.428345 - parent: 1 - type: Transform -- uid: 2696 - type: WallReinforced - components: - - pos: 20.5,-26.5 - parent: 1 - type: Transform -- uid: 2697 - type: WallReinforced - components: - - pos: 17.5,-26.5 - parent: 1 - type: Transform -- uid: 2698 - type: WallReinforced - components: - - pos: 18.5,-26.5 - parent: 1 - type: Transform -- uid: 2699 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 22.5,-15.5 - parent: 1 - type: Transform -- uid: 2700 - type: TelecomServer - components: - - pos: 8.5,-22.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 2701 - - 2702 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 2701 - type: EncryptionKeyScience - components: - - flags: InContainer - type: MetaData - - parent: 2700 - type: Transform - - canCollide: False - type: Physics -- uid: 2702 - type: EncryptionKeyRobo - components: - - flags: InContainer - type: MetaData - - parent: 2700 - type: Transform - - canCollide: False - type: Physics -- uid: 2703 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 31.5,-15.5 - parent: 1 - type: Transform -- uid: 2704 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,-15.5 - parent: 1 - type: Transform -- uid: 2705 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 37.5,-16.5 - parent: 1 - type: Transform -- uid: 2706 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 37.5,-15.5 - parent: 1 - type: Transform -- uid: 2707 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 36.5,-15.5 - parent: 1 - type: Transform -- uid: 2708 - type: AirlockMaintLocked - components: - - pos: 35.5,-15.5 - parent: 1 - type: Transform -- uid: 2709 - type: DisposalJunctionFlipped - components: - - pos: 36.5,-18.5 - parent: 1 - type: Transform -- uid: 2710 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-17.5 - parent: 1 - type: Transform -- uid: 2711 - type: DisposalPipe - components: - - pos: 36.5,-19.5 - parent: 1 - type: Transform -- uid: 2712 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 37.5,-20.5 - parent: 1 - type: Transform -- uid: 2713 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 37.5,-20.5 - parent: 1 - type: Transform -- uid: 2714 - type: ReinforcedWindow - components: - - pos: 37.5,-21.5 - parent: 1 - type: Transform -- uid: 2715 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 37.5,-23.5 - parent: 1 - type: Transform -- uid: 2716 - type: ReinforcedWindow - components: - - pos: 37.5,-22.5 - parent: 1 - type: Transform -- uid: 2717 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 40.5,3.5 - parent: 1 - type: Transform -- uid: 2718 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 43.5,4.5 - parent: 1 - type: Transform -- uid: 2719 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 43.5,5.5 - parent: 1 - type: Transform -- uid: 2720 - type: ReinforcedWindow - components: - - pos: 43.5,10.5 - parent: 1 - type: Transform -- uid: 2721 - type: ReinforcedWindow - components: - - pos: 43.5,7.5 - parent: 1 - type: Transform -- uid: 2722 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 43.5,12.5 - parent: 1 - type: Transform -- uid: 2723 - type: WallReinforced - components: - - pos: 44.5,16.5 - parent: 1 - type: Transform -- uid: 2724 - type: WallSolid - components: - - pos: 59.5,0.5 - parent: 1 - type: Transform -- uid: 2725 - type: WallReinforced - components: - - pos: 43.5,13.5 - parent: 1 - type: Transform -- uid: 2726 - type: WallReinforced - components: - - pos: 45.5,16.5 - parent: 1 - type: Transform -- uid: 2727 - type: WallReinforced - components: - - pos: 46.5,16.5 - parent: 1 - type: Transform -- uid: 2728 - type: WallReinforced - components: - - pos: 46.5,13.5 - parent: 1 - type: Transform -- uid: 2729 - type: WallReinforced - components: - - pos: 45.5,13.5 - parent: 1 - type: Transform -- uid: 2730 - type: AirAlarm - components: - - pos: 48.5,17.5 - parent: 1 - type: Transform - - devices: - - 13734 - - 9525 - - 9542 - - 9558 - - 9557 - - 9533 - - 9534 - - 9532 - - 9536 - - 9537 - - 9531 - - 9538 - - 9530 - - 9539 - - 9529 - - 9540 - - 9528 - - 9541 - - 9527 - type: DeviceList -- uid: 2731 - type: AirlockBrigGlassLocked - components: - - name: open prison - type: MetaData - - rot: -1.5707963267948966 rad - pos: 46.5,14.5 - parent: 1 - type: Transform -- uid: 2732 - type: WindowReinforcedDirectional - components: - - pos: 58.5,22.5 - parent: 1 - type: Transform -- uid: 2733 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: 43.5,14.5 - parent: 1 - type: Transform -- uid: 2734 - type: WindowReinforcedDirectional - components: - - pos: 52.5,22.5 - parent: 1 - type: Transform -- uid: 2735 - type: WindowReinforcedDirectional - components: - - pos: 55.5,22.5 - parent: 1 - type: Transform -- uid: 2736 - type: TableWood - components: - - pos: 15.5,12.5 - parent: 1 - type: Transform -- uid: 2737 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 17.5,7.5 - parent: 1 - type: Transform -- uid: 2738 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -12.5,9.5 - parent: 1 - type: Transform -- uid: 2739 - type: WallSolid - components: - - pos: -27.5,10.5 - parent: 1 - type: Transform -- uid: 2740 - type: Grille - components: - - pos: -21.5,11.5 - parent: 1 - type: Transform -- uid: 2741 - type: Window - components: - - pos: -21.5,11.5 - parent: 1 - type: Transform -- uid: 2742 - type: Window - components: - - pos: -21.5,12.5 - parent: 1 - type: Transform -- uid: 2743 - type: WallSolid - components: - - pos: -21.5,9.5 - parent: 1 - type: Transform -- uid: 2744 - type: WallSolid - components: - - pos: -14.5,-32.5 - parent: 1 - type: Transform -- uid: 2745 - type: WallSolid - components: - - pos: -21.5,14.5 - parent: 1 - type: Transform -- uid: 2746 - type: PosterLegitNanotrasenLogo - components: - - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 1 - type: Transform -- uid: 2747 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -16.5,9.5 - parent: 1 - type: Transform -- uid: 2748 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -14.5,9.5 - parent: 1 - type: Transform -- uid: 2749 - type: WallSolid - components: - - pos: -10.5,-7.5 - parent: 1 - type: Transform -- uid: 2750 - type: WallSolid - components: - - pos: -11.5,-4.5 - parent: 1 - type: Transform -- uid: 2751 - type: AirlockMaintLocked - components: - - pos: -13.5,-7.5 - parent: 1 - type: Transform -- uid: 2752 - type: WallSolid - components: - - pos: -15.5,-7.5 - parent: 1 - type: Transform -- uid: 2753 - type: WallSolid - components: - - pos: -17.5,-7.5 - parent: 1 - type: Transform -- uid: 2754 - type: WallSolid - components: - - pos: -21.5,-8.5 - parent: 1 - type: Transform -- uid: 2755 - type: WallSolid - components: - - pos: -22.5,-7.5 - parent: 1 - type: Transform -- uid: 2756 - type: WallSolid - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform -- uid: 2757 - type: WallSolid - components: - - pos: -17.5,-8.5 - parent: 1 - type: Transform -- uid: 2758 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-18.5 - parent: 1 - type: Transform -- uid: 2759 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,-15.5 - parent: 1 - type: Transform -- uid: 2760 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,-10.5 - parent: 1 - type: Transform -- uid: 2761 - type: SpawnPointDetective - components: - - pos: 19.5,-11.5 - parent: 1 - type: Transform -- uid: 2762 - type: TableWood - components: - - pos: 20.5,-12.5 - parent: 1 - type: Transform -- uid: 2763 - type: TableWood - components: - - pos: 19.5,-12.5 - parent: 1 - type: Transform -- uid: 2764 - type: Paper - components: - - pos: 20.483978,-12.296361 - parent: 1 - type: Transform -- uid: 2765 - type: Paper - components: - - pos: 20.661783,-12.471693 - parent: 1 - type: Transform -- uid: 2766 - type: ComfyChair - components: - - pos: 20.5,-11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2767 - type: Firelock - components: - - pos: 30.5,23.5 - parent: 1 - type: Transform -- uid: 2768 - type: Lamp - components: - - pos: 21.425192,-12.111239 - parent: 1 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: Objects/Tools/flashlight.rsi/flashlight.png - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 2769 - type: ComputerPowerMonitoring - components: - - pos: 21.5,-21.5 - parent: 1 - type: Transform -- uid: 2770 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-20.5 - parent: 1 - type: Transform -- uid: 2771 - type: ComputerComms - components: - - pos: 25.5,-21.5 - parent: 1 - type: Transform -- uid: 2772 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: 25.5,-22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2773 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-20.5 - parent: 1 - type: Transform -- uid: 2774 - type: ComputerCrewMonitoring - components: - - pos: 23.5,-21.5 - parent: 1 - type: Transform -- uid: 2775 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-21.5 - parent: 1 - type: Transform -- uid: 2776 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-22.5 - parent: 1 - type: Transform -- uid: 2777 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-20.5 - parent: 1 - type: Transform -- uid: 2778 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-20.5 - parent: 1 - type: Transform -- uid: 2779 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-21.5 - parent: 1 - type: Transform -- uid: 2780 - type: FloraTree01 - components: - - pos: -40.510788,5.4778786 - parent: 1 - type: Transform -- uid: 2781 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-36.5 - parent: 1 - type: Transform -- uid: 2782 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-36.5 - parent: 1 - type: Transform -- uid: 2783 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 21.5,-35.5 - parent: 1 - type: Transform -- uid: 2784 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2785 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2786 - type: AirlockMaintCommandLocked - components: - - name: conference room - type: MetaData - - rot: 3.141592653589793 rad - pos: 22.5,-31.5 - parent: 1 - type: Transform -- uid: 2787 - type: CableApcExtension - components: - - pos: 28.5,-39.5 - parent: 1 - type: Transform -- uid: 2788 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,8.5 - parent: 1 - type: Transform -- uid: 2789 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,8.5 - parent: 1 - type: Transform -- uid: 2790 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 25.5,-38.5 - parent: 1 - type: Transform -- uid: 2791 - type: BoxPDA - components: - - pos: 29.424988,-34.49831 - parent: 1 - type: Transform -- uid: 2792 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 21.5,-39.5 - parent: 1 - type: Transform -- uid: 2793 - type: CableHV - components: - - pos: 18.5,-29.5 - parent: 1 - type: Transform -- uid: 2794 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2795 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2796 - type: CableApcExtension - components: - - pos: 26.5,-32.5 - parent: 1 - type: Transform -- uid: 2797 - type: WallReinforced - components: - - pos: 20.5,-37.5 - parent: 1 - type: Transform -- uid: 2798 - type: TableReinforced - components: - - pos: 27.5,-37.5 - parent: 1 - type: Transform -- uid: 2799 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 2800 - type: CableApcExtension - components: - - pos: 25.5,-42.5 - parent: 1 - type: Transform -- uid: 2801 - type: CableApcExtension - components: - - pos: 27.5,-42.5 - parent: 1 - type: Transform -- uid: 2802 - type: CableApcExtension - components: - - pos: 35.5,-38.5 - parent: 1 - type: Transform -- uid: 2803 - type: CableApcExtension - components: - - pos: 35.5,-39.5 - parent: 1 - type: Transform -- uid: 2804 - type: ChairOfficeLight - components: - - pos: 28.5,-37.5 - parent: 1 - type: Transform -- uid: 2805 - type: HandLabeler - components: - - pos: 25.911264,-37.50932 - parent: 1 - type: Transform -- uid: 2806 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,8.5 - parent: 1 - type: Transform -- uid: 2807 - type: WallReinforced - components: - - pos: 30.5,-34.5 - parent: 1 - type: Transform -- uid: 2808 - type: WallReinforced - components: - - pos: 30.5,-35.5 - parent: 1 - type: Transform -- uid: 2809 - type: WallReinforced - components: - - pos: 30.5,-36.5 - parent: 1 - type: Transform -- uid: 2810 - type: WallReinforced - components: - - pos: 30.5,-37.5 - parent: 1 - type: Transform -- uid: 2811 - type: RubberStampApproved - components: - - pos: 25.390406,-37.463814 - parent: 1 - type: Transform -- uid: 2812 - type: DrinkWaterCup - components: - - pos: -9.380106,-35.52635 - parent: 1 - type: Transform -- uid: 2813 - type: FirelockGlass - components: - - pos: 22.5,-40.5 - parent: 1 - type: Transform -- uid: 2814 - type: Grille - components: - - pos: 27.5,-38.5 - parent: 1 - type: Transform -- uid: 2815 - type: ClothingNeckMantleHOP - components: - - pos: 26.64564,-37.47807 - parent: 1 - type: Transform -- uid: 2816 - type: CableApcExtension - components: - - pos: 23.5,-32.5 - parent: 1 - type: Transform -- uid: 2817 - type: PosterLegitIan - components: - - pos: 21.5,-40.5 - parent: 1 - type: Transform -- uid: 2818 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-32.5 - parent: 1 - type: Transform -- uid: 2819 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-32.5 - parent: 1 - type: Transform -- uid: 2820 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-32.5 - parent: 1 - type: Transform -- uid: 2821 - type: CarpetSBlue - components: - - pos: 22.5,-36.5 - parent: 1 - type: Transform -- uid: 2822 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-32.5 - parent: 1 - type: Transform -- uid: 2823 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,8.5 - parent: 1 - type: Transform -- uid: 2824 - type: WallReinforced - components: - - pos: 24.5,-34.5 - parent: 1 - type: Transform -- uid: 2825 - type: CableApcExtension - components: - - pos: 20.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 2826 - type: Window - components: - - pos: 27.5,-40.5 - parent: 1 - type: Transform -- uid: 2827 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 26.5,-38.5 - parent: 1 - type: Transform -- uid: 2828 - type: GasPipeStraight - components: - - pos: 28.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2829 - type: ComputerCrewMonitoring - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-36.5 - parent: 1 - type: Transform -- uid: 2830 - type: Window - components: - - pos: 23.5,-40.5 - parent: 1 - type: Transform -- uid: 2831 - type: SpawnMobCorgi - components: - - pos: 21.5,-35.5 - parent: 1 - type: Transform -- uid: 2832 - type: PosterLegitPDAAd - components: - - pos: 29.5,-40.5 - parent: 1 - type: Transform -- uid: 2833 - type: WallReinforced - components: - - pos: 30.5,-33.5 - parent: 1 - type: Transform -- uid: 2834 - type: WallReinforced - components: - - pos: 24.5,-33.5 - parent: 1 - type: Transform -- uid: 2835 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 28.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2836 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2837 - type: TableReinforced - components: - - pos: 7.5,7.5 - parent: 1 - type: Transform -- uid: 2838 - type: Table - components: - - pos: 29.5,-34.5 - parent: 1 - type: Transform -- uid: 2839 - type: WallReinforced - components: - - pos: 24.5,-35.5 - parent: 1 - type: Transform -- uid: 2840 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2841 - type: ClothingHandsGlovesBoxingRed - components: - - pos: 26.321266,-1.3645767 - parent: 1 - type: Transform -- uid: 2842 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 2843 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2844 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 16.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2845 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2846 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2847 - type: GasPipeStraight - components: - - pos: 21.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2848 - type: GasPipeStraight - components: - - pos: 21.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2849 - type: GasPipeStraight - components: - - pos: 21.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2850 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2851 - type: GasPipeStraight - components: - - pos: 25.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2852 - type: GasPipeStraight - components: - - pos: 25.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2853 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2854 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2855 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 21.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2856 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 25.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2857 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 26.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2858 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2859 - type: GasPipeStraight - components: - - pos: 38.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2860 - type: GasPipeStraight - components: - - pos: 31.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2861 - type: GasPipeStraight - components: - - pos: 31.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2862 - type: GasPipeFourway - components: - - pos: 31.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2863 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2864 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 28.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2865 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 29.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2866 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 24.5,-10.5 - parent: 1 - type: Transform -- uid: 2867 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-10.5 - parent: 1 - type: Transform -- uid: 2868 - type: DisposalTrunk - components: - - pos: 22.5,-10.5 - parent: 1 - type: Transform -- uid: 2869 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-11.5 - parent: 1 - type: Transform -- uid: 2870 - type: DisposalUnit - components: - - pos: 22.5,-10.5 - parent: 1 - type: Transform -- uid: 2871 - type: DisposalUnit - components: - - pos: 27.5,-10.5 - parent: 1 - type: Transform -- uid: 2872 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,7.5 - parent: 1 - type: Transform -- uid: 2873 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,7.5 - parent: 1 - type: Transform -- uid: 2874 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 22.5,7.5 - parent: 1 - type: Transform -- uid: 2875 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 22.5,8.5 - parent: 1 - type: Transform -- uid: 2876 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 23.5,8.5 - parent: 1 - type: Transform -- uid: 2877 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,8.5 - parent: 1 - type: Transform -- uid: 2878 - type: DisposalPipe - components: - - pos: 25.5,9.5 - parent: 1 - type: Transform -- uid: 2879 - type: DisposalPipe - components: - - pos: 25.5,10.5 - parent: 1 - type: Transform -- uid: 2880 - type: DisposalPipe - components: - - pos: 25.5,11.5 - parent: 1 - type: Transform -- uid: 2881 - type: DisposalPipe - components: - - pos: 25.5,12.5 - parent: 1 - type: Transform -- uid: 2882 - type: DisposalPipe - components: - - pos: 25.5,13.5 - parent: 1 - type: Transform -- uid: 2883 - type: DisposalPipe - components: - - pos: 25.5,14.5 - parent: 1 - type: Transform -- uid: 2884 - type: DisposalPipe - components: - - pos: 25.5,16.5 - parent: 1 - type: Transform -- uid: 2885 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 26.5,17.5 - parent: 1 - type: Transform -- uid: 2886 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 24.5,17.5 - parent: 1 - type: Transform -- uid: 2887 - type: DisposalPipe - components: - - pos: 21.5,18.5 - parent: 1 - type: Transform -- uid: 2888 - type: DisposalPipe - components: - - pos: 21.5,19.5 - parent: 1 - type: Transform -- uid: 2889 - type: DisposalUnit - components: - - pos: 21.5,20.5 - parent: 1 - type: Transform -- uid: 2890 - type: DisposalPipe - components: - - pos: 24.5,-12.5 - parent: 1 - type: Transform -- uid: 2891 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-18.5 - parent: 1 - type: Transform -- uid: 2892 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-18.5 - parent: 1 - type: Transform -- uid: 2893 - type: DisposalPipe - components: - - pos: 16.5,-20.5 - parent: 1 - type: Transform -- uid: 2894 - type: DisposalPipe - components: - - pos: 16.5,-21.5 - parent: 1 - type: Transform -- uid: 2895 - type: DisposalPipe - components: - - pos: 16.5,-22.5 - parent: 1 - type: Transform -- uid: 2896 - type: DisposalPipe - components: - - pos: 16.5,-23.5 - parent: 1 - type: Transform -- uid: 2897 - type: DisposalPipe - components: - - pos: 16.5,-24.5 - parent: 1 - type: Transform -- uid: 2898 - type: DisposalJunctionFlipped - components: - - pos: 16.5,-25.5 - parent: 1 - type: Transform -- uid: 2899 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-25.5 - parent: 1 - type: Transform -- uid: 2900 - type: DisposalRouterFlipped - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-25.5 - parent: 1 - type: Transform -- uid: 2901 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-25.5 - parent: 1 - type: Transform -- uid: 2902 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-25.5 - parent: 1 - type: Transform -- uid: 2903 - type: DisposalPipe - components: - - pos: 20.5,-24.5 - parent: 1 - type: Transform -- uid: 2904 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-17.5 - parent: 1 - type: Transform -- uid: 2905 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-17.5 - parent: 1 - type: Transform -- uid: 2906 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-17.5 - parent: 1 - type: Transform -- uid: 2907 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-17.5 - parent: 1 - type: Transform -- uid: 2908 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-17.5 - parent: 1 - type: Transform -- uid: 2909 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-17.5 - parent: 1 - type: Transform -- uid: 2910 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 16.5,-26.5 - parent: 1 - type: Transform -- uid: 2911 - type: DisposalYJunction - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-27.5 - parent: 1 - type: Transform -- uid: 2912 - type: WallReinforced - components: - - pos: 21.5,-31.5 - parent: 1 - type: Transform -- uid: 2913 - type: CableMV - components: - - pos: 19.5,-27.5 - parent: 1 - type: Transform -- uid: 2914 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-29.5 - parent: 1 - type: Transform -- uid: 2915 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-29.5 - parent: 1 - type: Transform -- uid: 2916 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-29.5 - parent: 1 - type: Transform -- uid: 2917 - type: MaterialDurathread - components: - - pos: 27.717157,-34.585915 - parent: 1 - type: Transform -- uid: 2918 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 21.5,-37.5 - parent: 1 - type: Transform -- uid: 2919 - type: DisposalPipe - components: - - pos: 25.5,-35.5 - parent: 1 - type: Transform -- uid: 2920 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-17.5 - parent: 1 - type: Transform -- uid: 2921 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 36.5,-20.5 - parent: 1 - type: Transform -- uid: 2922 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 36.5,-21.5 - parent: 1 - type: Transform -- uid: 2923 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-18.5 - parent: 1 - type: Transform -- uid: 2924 - type: DisposalBend - components: - - pos: 36.5,-17.5 - parent: 1 - type: Transform -- uid: 2925 - type: DisposalUnit - components: - - pos: 37.5,-18.5 - parent: 1 - type: Transform -- uid: 2926 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 33.5,8.5 - parent: 1 - type: Transform -- uid: 2927 - type: WallReinforced - components: - - pos: 28.5,9.5 - parent: 1 - type: Transform -- uid: 2928 - type: WallReinforced - components: - - pos: 31.5,9.5 - parent: 1 - type: Transform -- uid: 2929 - type: WallReinforced - components: - - pos: 35.5,9.5 - parent: 1 - type: Transform -- uid: 2930 - type: WallReinforced - components: - - pos: 35.5,8.5 - parent: 1 - type: Transform -- uid: 2931 - type: WallReinforced - components: - - pos: 35.5,6.5 - parent: 1 - type: Transform -- uid: 2932 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2933 - type: WallSolid - components: - - pos: 19.5,-3.5 - parent: 1 - type: Transform -- uid: 2934 - type: FirelockGlass - components: - - pos: 31.5,-5.5 - parent: 1 - type: Transform -- uid: 2935 - type: GasPipeStraight - components: - - pos: 20.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2936 - type: GasPipeStraight - components: - - pos: 20.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2937 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 20.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2938 - type: GasPipeStraight - components: - - pos: 20.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2939 - type: GasPipeStraight - components: - - pos: 20.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2940 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 20.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2941 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2942 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 18.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2943 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2944 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2945 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 18.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2946 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 18.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2947 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2948 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2949 - type: GasPipeFourway - components: - - pos: 21.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2950 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2951 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2952 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 17.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2953 - type: GasPipeFourway - components: - - pos: 17.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2954 - type: GasPipeTJunction - components: - - pos: 4.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2955 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2956 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2957 - type: CableMV - components: - - pos: 21.5,16.5 - parent: 1 - type: Transform -- uid: 2958 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2959 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2960 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2961 - type: GasPipeStraight - components: - - pos: -8.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2962 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2963 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2964 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2965 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 2966 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2967 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2968 - type: GasPipeBend - components: - - pos: 1.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2969 - type: GasPipeStraight - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2970 - type: GasPipeStraight - components: - - pos: 1.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2971 - type: GasPipeStraight - components: - - pos: 1.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2972 - type: GasPipeStraight - components: - - pos: 1.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2973 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2974 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2975 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2976 - type: GasPipeStraight - components: - - pos: 1.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2977 - type: GasPipeStraight - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2978 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 1.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2979 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 10.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2980 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 9.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2981 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 9.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2982 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 8.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2983 - type: GasPipeStraight - components: - - pos: 9.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2984 - type: GasPipeStraight - components: - - pos: 9.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2985 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 9.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2986 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2987 - type: GasPipeBend - components: - - pos: 11.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2988 - type: GasPipeStraight - components: - - pos: 11.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2989 - type: GasPipeStraight - components: - - pos: 11.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2990 - type: GasPipeStraight - components: - - pos: 11.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2991 - type: GasPipeStraight - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2992 - type: GasPipeStraight - components: - - pos: 11.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2993 - type: GasPipeStraight - components: - - pos: 11.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2994 - type: GasPipeStraight - components: - - pos: 11.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2995 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2996 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-9.5 - parent: 1 - type: Transform -- uid: 2997 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2998 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 2999 - type: WallSolid - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform -- uid: 3000 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 19.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3001 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 19.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3002 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 19.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3003 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3004 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3005 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 30.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3006 - type: GasVentPump - components: - - pos: 22.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3007 - type: GasPipeStraight - components: - - pos: 23.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3008 - type: GasPipeStraight - components: - - pos: 23.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3009 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 23.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3010 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3011 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 25.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3012 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3013 - type: WallReinforced - components: - - pos: 23.5,19.5 - parent: 1 - type: Transform -- uid: 3014 - type: PianoInstrument - components: - - rot: -1.5707963267948966 rad - pos: 8.5,0.5 - parent: 1 - type: Transform -- uid: 3015 - type: FirelockGlass - components: - - pos: 10.5,4.5 - parent: 1 - type: Transform -- uid: 3016 - type: WallSolid - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform -- uid: 3017 - type: WallSolid - components: - - pos: -6.5,-7.5 - parent: 1 - type: Transform -- uid: 3018 - type: AirlockTheatreLocked - components: - - name: recording studio - type: MetaData - - pos: -9.5,-2.5 - parent: 1 - type: Transform -- uid: 3019 - type: WallSolid - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform -- uid: 3020 - type: Window - components: - - pos: -21.5,-10.5 - parent: 1 - type: Transform -- uid: 3021 - type: WallSolid - components: - - pos: -17.5,-9.5 - parent: 1 - type: Transform -- uid: 3022 - type: FirelockGlass - components: - - pos: -21.5,-11.5 - parent: 1 - type: Transform -- uid: 3023 - type: WallSolid - components: - - pos: -17.5,-10.5 - parent: 1 - type: Transform -- uid: 3024 - type: PottedPlant1 - components: - - pos: -2.5,-40.5 - parent: 1 - type: Transform -- uid: 3025 - type: CableApcExtension - components: - - pos: -7.5,-7.5 - parent: 1 - type: Transform -- uid: 3026 - type: AirlockTheatreLocked - components: - - name: recording studio - type: MetaData - - rot: 1.5707963267948966 rad - pos: -7.5,-7.5 - parent: 1 - type: Transform -- uid: 3027 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -3.5,52.5 - parent: 1 - type: Transform -- uid: 3028 - type: Window - components: - - pos: -21.5,-14.5 - parent: 1 - type: Transform -- uid: 3029 - type: WallReinforced - components: - - pos: 17.5,-38.5 - parent: 1 - type: Transform -- uid: 3030 - type: WallReinforced - components: - - pos: 33.5,-38.5 - parent: 1 - type: Transform -- uid: 3031 - type: CableApcExtension - components: - - pos: 16.5,-32.5 - parent: 1 - type: Transform -- uid: 3032 - type: ReinforcedWindow - components: - - pos: 17.5,-34.5 - parent: 1 - type: Transform -- uid: 3033 - type: ReinforcedWindow - components: - - pos: 17.5,-35.5 - parent: 1 - type: Transform -- uid: 3034 - type: ReinforcedWindow - components: - - pos: 17.5,-36.5 - parent: 1 - type: Transform -- uid: 3035 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 17.5,-37.5 - parent: 1 - type: Transform -- uid: 3036 - type: ReinforcedWindow - components: - - pos: 19.5,-38.5 - parent: 1 - type: Transform -- uid: 3037 - type: ReinforcedWindow - components: - - pos: 32.5,-38.5 - parent: 1 - type: Transform -- uid: 3038 - type: ReinforcedWindow - components: - - pos: 33.5,-34.5 - parent: 1 - type: Transform -- uid: 3039 - type: ReinforcedWindow - components: - - pos: 33.5,-36.5 - parent: 1 - type: Transform -- uid: 3040 - type: FirelockGlass - components: - - pos: 36.5,-38.5 - parent: 1 - type: Transform -- uid: 3041 - type: ReinforcedWindow - components: - - pos: 33.5,-35.5 - parent: 1 - type: Transform -- uid: 3042 - type: WallReinforced - components: - - pos: 31.5,22.5 - parent: 1 - type: Transform -- uid: 3043 - type: WallReinforced - components: - - pos: 31.5,23.5 - parent: 1 - type: Transform -- uid: 3044 - type: WallReinforced - components: - - pos: 31.5,24.5 - parent: 1 - type: Transform -- uid: 3045 - type: ReinforcedPlasmaWindow - components: - - pos: 29.5,24.5 - parent: 1 - type: Transform -- uid: 3046 - type: WallReinforced - components: - - pos: 33.5,26.5 - parent: 1 - type: Transform -- uid: 3047 - type: WallReinforced - components: - - pos: 33.5,28.5 - parent: 1 - type: Transform -- uid: 3048 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 25.5,27.5 - parent: 1 - type: Transform -- uid: 3049 - type: WallReinforced - components: - - pos: 33.5,30.5 - parent: 1 - type: Transform -- uid: 3050 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-11.5 - parent: 1 - type: Transform -- uid: 3051 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 1 - type: Transform -- uid: 3052 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-10.5 - parent: 1 - type: Transform -- uid: 3053 - type: Grille - components: - - pos: -10.5,-11.5 - parent: 1 - type: Transform -- uid: 3054 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-25.5 - parent: 1 - type: Transform -- uid: 3055 - type: Grille - components: - - pos: -12.5,-16.5 - parent: 1 - type: Transform -- uid: 3056 - type: WallSolid - components: - - pos: -6.5,-17.5 - parent: 1 - type: Transform -- uid: 3057 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-20.5 - parent: 1 - type: Transform -- uid: 3058 - type: WallSolid - components: - - pos: 35.5,-6.5 - parent: 1 - type: Transform -- uid: 3059 - type: Window - components: - - pos: 35.5,-1.5 - parent: 1 - type: Transform -- uid: 3060 - type: Window - components: - - pos: 35.5,-2.5 - parent: 1 - type: Transform -- uid: 3061 - type: WallSolid - components: - - pos: 45.5,-0.5 - parent: 1 - type: Transform -- uid: 3062 - type: ReinforcedWindow - components: - - pos: 48.5,-0.5 - parent: 1 - type: Transform -- uid: 3063 - type: WallSolid - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform -- uid: 3064 - type: WallSolid - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform -- uid: 3065 - type: FirelockGlass - components: - - pos: -3.5,-2.5 - parent: 1 - type: Transform -- uid: 3066 - type: FirelockGlass - components: - - pos: -5.5,-2.5 - parent: 1 - type: Transform -- uid: 3067 - type: DisposalPipe - components: - - pos: -7.5,-1.5 - parent: 1 - type: Transform -- uid: 3068 - type: WallSolid - components: - - pos: -6.5,-4.5 - parent: 1 - type: Transform -- uid: 3069 - type: WallSolid - components: - - pos: -2.5,-2.5 - parent: 1 - type: Transform -- uid: 3070 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 1 - type: Transform -- uid: 3071 - type: LargeBeaker - components: - - pos: 3.2216597,-45.50144 - parent: 1 - type: Transform -- uid: 3072 - type: CableApcExtension - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3073 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-23.5 - parent: 1 - type: Transform -- uid: 3074 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-24.5 - parent: 1 - type: Transform -- uid: 3075 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-24.5 - parent: 1 - type: Transform -- uid: 3076 - type: WallReinforced - components: - - pos: -2.5,-29.5 - parent: 1 - type: Transform -- uid: 3077 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 1.5,-44.5 - parent: 1 - type: Transform -- uid: 3078 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -10.5,-45.5 - parent: 1 - type: Transform -- uid: 3079 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3080 - type: StoolBar - components: - - pos: 5.5,12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3081 - type: WallReinforced - components: - - pos: -2.5,-44.5 - parent: 1 - type: Transform -- uid: 3082 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-44.5 - parent: 1 - type: Transform -- uid: 3083 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3084 - type: Window - components: - - pos: -21.5,-9.5 - parent: 1 - type: Transform -- uid: 3085 - type: FirelockGlass - components: - - pos: -21.5,-12.5 - parent: 1 - type: Transform -- uid: 3086 - type: WallSolid - components: - - pos: -26.5,-8.5 - parent: 1 - type: Transform -- uid: 3087 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3088 - type: WindoorEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-12.5 - parent: 1 - type: Transform -- uid: 3089 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-10.5 - parent: 1 - type: Transform -- uid: 3090 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-9.5 - parent: 1 - type: Transform -- uid: 3091 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 1 - type: Transform -- uid: 3092 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-44.5 - parent: 1 - type: Transform -- uid: 3093 - type: WallSolid - components: - - pos: -8.5,-28.5 - parent: 1 - type: Transform -- uid: 3094 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-48.5 - parent: 1 - type: Transform -- uid: 3095 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: 16.5,23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3096 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 18.5,8.5 - parent: 1 - type: Transform -- uid: 3097 - type: Paper - components: - - pos: 24.486351,19.53259 - parent: 1 - type: Transform -- uid: 3098 - type: WallReinforced - components: - - pos: 19.5,24.5 - parent: 1 - type: Transform -- uid: 3099 - type: WallReinforced - components: - - pos: 19.5,18.5 - parent: 1 - type: Transform -- uid: 3100 - type: WallSolid - components: - - pos: 16.5,-44.5 - parent: 1 - type: Transform -- uid: 3101 - type: WindoorArmoryLocked - components: - - rot: 1.5707963267948966 rad - pos: 30.5,30.5 - parent: 1 - type: Transform -- uid: 3102 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 28.5,29.5 - parent: 1 - type: Transform -- uid: 3103 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 26.5,30.5 - parent: 1 - type: Transform -- uid: 3104 - type: WallSolid - components: - - pos: 16.5,-46.5 - parent: 1 - type: Transform -- uid: 3105 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-44.5 - parent: 1 - type: Transform -- uid: 3106 - type: WallReinforced - components: - - pos: 12.5,-35.5 - parent: 1 - type: Transform -- uid: 3107 - type: WallReinforced - components: - - pos: 12.5,-30.5 - parent: 1 - type: Transform -- uid: 3108 - type: Grille - components: - - pos: 12.5,-33.5 - parent: 1 - type: Transform -- uid: 3109 - type: WallSolid - components: - - pos: 12.5,-28.5 - parent: 1 - type: Transform -- uid: 3110 - type: WallReinforced - components: - - pos: 0.5,-28.5 - parent: 1 - type: Transform -- uid: 3111 - type: WallReinforced - components: - - pos: -2.5,-28.5 - parent: 1 - type: Transform -- uid: 3112 - type: WallReinforced - components: - - pos: -0.5,-28.5 - parent: 1 - type: Transform -- uid: 3113 - type: WallReinforced - components: - - pos: -1.5,-28.5 - parent: 1 - type: Transform -- uid: 3114 - type: WallSolid - components: - - pos: 11.5,-28.5 - parent: 1 - type: Transform -- uid: 3115 - type: WallReinforced - components: - - pos: 1.5,-28.5 - parent: 1 - type: Transform -- uid: 3116 - type: WallReinforced - components: - - pos: 1.5,-34.5 - parent: 1 - type: Transform -- uid: 3117 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 1 - type: Transform -- uid: 3118 - type: WallSolid - components: - - pos: -1.5,-10.5 - parent: 1 - type: Transform -- uid: 3119 - type: Grille - components: - - pos: 12.5,-32.5 - parent: 1 - type: Transform -- uid: 3120 - type: ReinforcedWindow - components: - - pos: 12.5,-33.5 - parent: 1 - type: Transform -- uid: 3121 - type: ReinforcedWindow - components: - - pos: 12.5,-32.5 - parent: 1 - type: Transform -- uid: 3122 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-36.5 - parent: 1 - type: Transform -- uid: 3123 - type: WallSolid - components: - - pos: 6.5,-28.5 - parent: 1 - type: Transform -- uid: 3124 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-38.5 - parent: 1 - type: Transform -- uid: 3125 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-21.5 - parent: 1 - type: Transform -- uid: 3126 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 1 - type: Transform -- uid: 3127 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 12.5,-16.5 - parent: 1 - type: Transform -- uid: 3128 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-18.5 - parent: 1 - type: Transform -- uid: 3129 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3130 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-18.5 - parent: 1 - type: Transform -- uid: 3131 - type: FirelockGlass - components: - - pos: -0.5,-25.5 - parent: 1 - type: Transform -- uid: 3132 - type: ComfyChair - components: - - pos: 6.5,21.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3133 - type: WallSolid - components: - - pos: 12.5,-46.5 - parent: 1 - type: Transform -- uid: 3134 - type: GasPipeStraight - components: - - pos: 7.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3135 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 8.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3136 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 20.5,17.5 - parent: 1 - type: Transform -- uid: 3137 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 19.5,17.5 - parent: 1 - type: Transform -- uid: 3138 - type: GasPipeStraight - components: - - pos: 17.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3139 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 15.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3140 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3141 - type: WallReinforced - components: - - pos: -2.5,19.5 - parent: 1 - type: Transform -- uid: 3142 - type: WallReinforced - components: - - pos: -2.5,17.5 - parent: 1 - type: Transform -- uid: 3143 - type: AirlockMaintSecLocked - components: - - name: security - type: MetaData - - rot: 1.5707963267948966 rad - pos: -2.5,16.5 - parent: 1 - type: Transform -- uid: 3144 - type: LockerHeadOfSecurityFilled - components: - - pos: 4.5,22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3145 - type: HighSecArmoryLocked - components: - - pos: 28.5,26.5 - parent: 1 - type: Transform -- uid: 3146 - type: HighSecArmoryLocked - components: - - pos: 30.5,26.5 - parent: 1 - type: Transform -- uid: 3147 - type: Flash - components: - - pos: 2.3260884,20.921833 - parent: 1 - type: Transform -- uid: 3148 - type: Intercom - components: - - pos: -38.5,-70.5 - parent: 1 - type: Transform -- uid: 3149 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 2.5,20.5 - parent: 1 - type: Transform -- uid: 3150 - type: BoxHandcuff - components: - - pos: 2.4978194,19.97727 - parent: 1 - type: Transform -- uid: 3151 - type: CableApcExtension - components: - - pos: -15.5,25.5 - parent: 1 - type: Transform -- uid: 3152 - type: ClothingShoesBootsJack - components: - - pos: -1.4635531,17.609518 - parent: 1 - type: Transform -- uid: 3153 - type: Poweredlight - components: - - pos: 33.5,-45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3154 - type: LockerSecurityFilled - components: - - pos: -0.5,17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3155 - type: WeaponDisabler - components: - - pos: 1.6229637,21.593708 - parent: 1 - type: Transform -- uid: 3156 - type: LockerSecurityFilled - components: - - pos: -0.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3157 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 1.5,21.5 - parent: 1 - type: Transform -- uid: 3158 - type: CableMV - components: - - pos: -19.5,24.5 - parent: 1 - type: Transform -- uid: 3159 - type: IntercomSecurity - components: - - rot: -1.5707963267948966 rad - pos: -13.5,24.5 - parent: 1 - type: Transform -- uid: 3160 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -0.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3161 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-21.5 - parent: 1 - type: Transform -- uid: 3162 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 26.5,-20.5 - parent: 1 - type: Transform -- uid: 3163 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,-20.5 - parent: 1 - type: Transform -- uid: 3164 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 23.5,-22.5 - parent: 1 - type: Transform -- uid: 3165 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-22.5 - parent: 1 - type: Transform -- uid: 3166 - type: CarpetSBlue - components: - - pos: 29.5,-22.5 - parent: 1 - type: Transform -- uid: 3167 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.503365,-39.44397 - parent: 1 - type: Transform -- uid: 3168 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: 17.5,15.5 - parent: 1 - type: Transform -- uid: 3169 - type: WallSolid - components: - - pos: 12.5,-45.5 - parent: 1 - type: Transform -- uid: 3170 - type: WallSolid - components: - - pos: -9.5,-28.5 - parent: 1 - type: Transform -- uid: 3171 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-25.5 - parent: 1 - type: Transform -- uid: 3172 - type: TableWood - components: - - pos: 5.5,20.5 - parent: 1 - type: Transform -- uid: 3173 - type: GasPipeStraight - components: - - pos: 34.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3174 - type: GasPipeFourway - components: - - pos: 34.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3175 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3176 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 1 - type: Transform -- uid: 3177 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-9.5 - parent: 1 - type: Transform -- uid: 3178 - type: Grille - components: - - pos: 3.5,-36.5 - parent: 1 - type: Transform -- uid: 3179 - type: WallReinforced - components: - - pos: -1.5,-40.5 - parent: 1 - type: Transform -- uid: 3180 - type: Grille - components: - - pos: 2.5,-39.5 - parent: 1 - type: Transform -- uid: 3181 - type: WallReinforced - components: - - pos: 0.5,-40.5 - parent: 1 - type: Transform -- uid: 3182 - type: WallReinforced - components: - - pos: -0.5,-40.5 - parent: 1 - type: Transform -- uid: 3183 - type: ReinforcedWindow - components: - - pos: 2.5,-39.5 - parent: 1 - type: Transform -- uid: 3184 - type: FirelockGlass - components: - - pos: 15.5,-19.5 - parent: 1 - type: Transform -- uid: 3185 - type: WallSolid - components: - - pos: 9.5,-48.5 - parent: 1 - type: Transform -- uid: 3186 - type: AirlockGlass - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-19.5 - parent: 1 - type: Transform -- uid: 3187 - type: AirlockGlass - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-19.5 - parent: 1 - type: Transform -- uid: 3188 - type: AirlockGlass - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-19.5 - parent: 1 - type: Transform -- uid: 3189 - type: SignalSwitch - components: - - pos: 16.5,15.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 684 - - port: Open - uid: 2450 - - port: Open - uid: 3191 - - port: Open - uid: 6699 - - port: Open - uid: 5385 - - port: Open - uid: 5076 - - port: Open - uid: 9923 - Off: - - port: Close - uid: 684 - - port: Close - uid: 2450 - - port: Close - uid: 3191 - - port: Close - uid: 6699 - - port: Close - uid: 5385 - - port: Close - uid: 5076 - - port: Close - uid: 9923 - type: SignalTransmitter - - type: ItemCooldown -- uid: 3190 - type: WindoorSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-56.5 - parent: 1 - type: Transform -- uid: 3191 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 15.5,10.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -57047.77 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 3189 - Close: - - port: Off - uid: 3189 - Toggle: [] - type: SignalReceiver -- uid: 3192 - type: WallSolid - components: - - pos: 2.5,-44.5 - parent: 1 - type: Transform -- uid: 3193 - type: WallSolid - components: - - pos: 8.5,-48.5 - parent: 1 - type: Transform -- uid: 3194 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 10.5,-27.5 - parent: 1 - type: Transform -- uid: 3195 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 10.5,-26.5 - parent: 1 - type: Transform -- uid: 3196 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-18.5 - parent: 1 - type: Transform -- uid: 3197 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-16.5 - parent: 1 - type: Transform -- uid: 3198 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-19.5 - parent: 1 - type: Transform -- uid: 3199 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 33.5,31.5 - parent: 1 - type: Transform -- uid: 3200 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 33.5,33.5 - parent: 1 - type: Transform -- uid: 3201 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 25.5,31.5 - parent: 1 - type: Transform -- uid: 3202 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 25.5,32.5 - parent: 1 - type: Transform -- uid: 3203 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 25.5,33.5 - parent: 1 - type: Transform -- uid: 3204 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 26.5,33.5 - parent: 1 - type: Transform -- uid: 3205 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 28.5,33.5 - parent: 1 - type: Transform -- uid: 3206 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 22.5,29.5 - parent: 1 - type: Transform -- uid: 3207 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 22.5,31.5 - parent: 1 - type: Transform -- uid: 3208 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 22.5,33.5 - parent: 1 - type: Transform -- uid: 3209 - type: HighSecArmoryLocked - components: - - pos: 30.5,24.5 - parent: 1 - type: Transform -- uid: 3210 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 32.5,33.5 - parent: 1 - type: Transform -- uid: 3211 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 22.5,37.5 - parent: 1 - type: Transform -- uid: 3212 - type: HighSecArmoryLocked - components: - - pos: 28.5,24.5 - parent: 1 - type: Transform -- uid: 3213 - type: DeployableBarrier - components: - - anchored: False - pos: 29.5,25.5 - parent: 1 - type: Transform -- uid: 3214 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-24.5 - parent: 1 - type: Transform -- uid: 3215 - type: TableWood - components: - - pos: 6.5,20.5 - parent: 1 - type: Transform -- uid: 3216 - type: WallReinforced - components: - - pos: 13.5,-39.5 - parent: 1 - type: Transform -- uid: 3217 - type: WallSolid - components: - - pos: -10.5,-34.5 - parent: 1 - type: Transform -- uid: 3218 - type: SignAtmosMinsky - components: - - pos: -30.5,-29.5 - parent: 1 - type: Transform -- uid: 3219 - type: WallSolid - components: - - pos: 35.5,-44.5 - parent: 1 - type: Transform -- uid: 3220 - type: WallSolid - components: - - pos: 41.5,-49.5 - parent: 1 - type: Transform -- uid: 3221 - type: AirlockMaintLocked - components: - - pos: 36.5,-44.5 - parent: 1 - type: Transform -- uid: 3222 - type: WallSolid - components: - - pos: 39.5,-47.5 - parent: 1 - type: Transform -- uid: 3223 - type: WallSolid - components: - - pos: 39.5,-44.5 - parent: 1 - type: Transform -- uid: 3224 - type: WallSolid - components: - - pos: 41.5,-48.5 - parent: 1 - type: Transform -- uid: 3225 - type: WindoorChemistryLocked - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-46.5 - parent: 1 - type: Transform -- uid: 3226 - type: WallSolid - components: - - pos: -3.5,-51.5 - parent: 1 - type: Transform -- uid: 3227 - type: TableWood - components: - - pos: -2.5,-48.5 - parent: 1 - type: Transform -- uid: 3228 - type: TableWood - components: - - pos: -2.5,-49.5 - parent: 1 - type: Transform -- uid: 3229 - type: WallSolid - components: - - pos: -5.5,-51.5 - parent: 1 - type: Transform -- uid: 3230 - type: AirlockGlass - components: - - pos: 0.5,-50.5 - parent: 1 - type: Transform -- uid: 3231 - type: WallSolid - components: - - pos: -6.5,-51.5 - parent: 1 - type: Transform -- uid: 3232 - type: TableWood - components: - - pos: -5.5,-48.5 - parent: 1 - type: Transform -- uid: 3233 - type: TableWood - components: - - pos: -6.5,-48.5 - parent: 1 - type: Transform -- uid: 3234 - type: WallSolid - components: - - pos: -2.5,-50.5 - parent: 1 - type: Transform -- uid: 3235 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 1.5,-45.5 - parent: 1 - type: Transform -- uid: 3236 - type: FirelockGlass - components: - - pos: -9.5,-51.5 - parent: 1 - type: Transform -- uid: 3237 - type: FirelockGlass - components: - - pos: -8.5,-51.5 - parent: 1 - type: Transform -- uid: 3238 - type: AirlockGlass - components: - - pos: -0.5,-50.5 - parent: 1 - type: Transform -- uid: 3239 - type: AirlockMedicalLocked - components: - - pos: -4.5,-51.5 - parent: 1 - type: Transform -- uid: 3240 - type: WallSolid - components: - - pos: 7.5,-54.5 - parent: 1 - type: Transform -- uid: 3241 - type: Firelock - components: - - pos: -9.5,-44.5 - parent: 1 - type: Transform -- uid: 3242 - type: Firelock - components: - - pos: -8.5,-44.5 - parent: 1 - type: Transform -- uid: 3243 - type: Firelock - components: - - pos: -7.5,-44.5 - parent: 1 - type: Transform -- uid: 3244 - type: Window - components: - - pos: -5.5,-44.5 - parent: 1 - type: Transform -- uid: 3245 - type: Firelock - components: - - pos: -0.5,-44.5 - parent: 1 - type: Transform -- uid: 3246 - type: Firelock - components: - - pos: 0.5,-44.5 - parent: 1 - type: Transform -- uid: 3247 - type: TableReinforced - components: - - pos: 1.5,-46.5 - parent: 1 - type: Transform -- uid: 3248 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,13.5 - parent: 1 - type: Transform -- uid: 3249 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-40.5 - parent: 1 - type: Transform -- uid: 3250 - type: Window - components: - - pos: -11.5,-40.5 - parent: 1 - type: Transform -- uid: 3251 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-40.5 - parent: 1 - type: Transform -- uid: 3252 - type: Window - components: - - pos: -10.5,-40.5 - parent: 1 - type: Transform -- uid: 3253 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-58.5 - parent: 1 - type: Transform -- uid: 3254 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-58.5 - parent: 1 - type: Transform -- uid: 3255 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-58.5 - parent: 1 - type: Transform -- uid: 3256 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-55.5 - parent: 1 - type: Transform -- uid: 3257 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-55.5 - parent: 1 - type: Transform -- uid: 3258 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-58.5 - parent: 1 - type: Transform -- uid: 3259 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-58.5 - parent: 1 - type: Transform -- uid: 3260 - type: RailingCorner - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-7.5 - parent: 1 - type: Transform -- uid: 3261 - type: HospitalCurtainsOpen - components: - - pos: -2.5,-55.5 - parent: 1 - type: Transform -- uid: 3262 - type: HospitalCurtainsOpen - components: - - pos: -5.5,-55.5 - parent: 1 - type: Transform -- uid: 3263 - type: HospitalCurtainsOpen - components: - - pos: -11.5,-55.5 - parent: 1 - type: Transform -- uid: 3264 - type: Grille - components: - - pos: 5.5,-58.5 - parent: 1 - type: Transform -- uid: 3265 - type: Window - components: - - pos: 0.5,-62.5 - parent: 1 - type: Transform -- uid: 3266 - type: Window - components: - - pos: 1.5,-57.5 - parent: 1 - type: Transform -- uid: 3267 - type: Window - components: - - pos: -0.5,-55.5 - parent: 1 - type: Transform -- uid: 3268 - type: Window - components: - - pos: 2.5,-55.5 - parent: 1 - type: Transform -- uid: 3269 - type: Window - components: - - pos: 2.5,-62.5 - parent: 1 - type: Transform -- uid: 3270 - type: Window - components: - - pos: -9.5,-62.5 - parent: 1 - type: Transform -- uid: 3271 - type: Window - components: - - pos: -3.5,-55.5 - parent: 1 - type: Transform -- uid: 3272 - type: Window - components: - - pos: -9.5,-55.5 - parent: 1 - type: Transform -- uid: 3273 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-55.5 - parent: 1 - type: Transform -- uid: 3274 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-55.5 - parent: 1 - type: Transform -- uid: 3275 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-58.5 - parent: 1 - type: Transform -- uid: 3276 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-55.5 - parent: 1 - type: Transform -- uid: 3277 - type: GasPipeFourway - components: - - pos: -24.5,-60.5 - parent: 1 - type: Transform - - color: '#97C3FCCC' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3278 - type: AirlockMedicalGlassLocked - components: - - rot: 3.141592653589793 rad - pos: -8.5,-58.5 - parent: 1 - type: Transform -- uid: 3279 - type: Window - components: - - pos: 2.5,-58.5 - parent: 1 - type: Transform -- uid: 3280 - type: Window - components: - - pos: 4.5,-62.5 - parent: 1 - type: Transform -- uid: 3281 - type: PlasticFlapsOpaque - components: - - pos: -11.5,27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3282 - type: Window - components: - - pos: -8.5,-62.5 - parent: 1 - type: Transform -- uid: 3283 - type: MedicalBed - components: - - pos: -9.5,-57.5 - parent: 1 - type: Transform -- uid: 3284 - type: MedicalBed - components: - - pos: -12.5,-57.5 - parent: 1 - type: Transform -- uid: 3285 - type: MedicalBed - components: - - pos: -3.5,-57.5 - parent: 1 - type: Transform -- uid: 3286 - type: MedicalBed - components: - - pos: -0.5,-57.5 - parent: 1 - type: Transform -- uid: 3287 - type: ComputerStationRecords - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-57.5 - parent: 1 - type: Transform -- uid: 3288 - type: BedsheetMedical - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-57.5 - parent: 1 - type: Transform -- uid: 3289 - type: BedsheetMedical - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-57.5 - parent: 1 - type: Transform -- uid: 3290 - type: BedsheetMedical - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-57.5 - parent: 1 - type: Transform -- uid: 3291 - type: BedsheetMedical - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-57.5 - parent: 1 - type: Transform -- uid: 3292 - type: BedsheetMedical - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-57.5 - parent: 1 - type: Transform -- uid: 3293 - type: AirlockBrigGlassLocked - components: - - pos: 3.5,-58.5 - parent: 1 - type: Transform -- uid: 3294 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-56.5 - parent: 1 - type: Transform -- uid: 3295 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-56.5 - parent: 1 - type: Transform -- uid: 3296 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-56.5 - parent: 1 - type: Transform -- uid: 3297 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-56.5 - parent: 1 - type: Transform -- uid: 3298 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-56.5 - parent: 1 - type: Transform -- uid: 3299 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-56.5 - parent: 1 - type: Transform -- uid: 3300 - type: FirelockGlass - components: - - pos: -19.5,-58.5 - parent: 1 - type: Transform -- uid: 3301 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -11.5,-51.5 - parent: 1 - type: Transform -- uid: 3302 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-76.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 3303 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -14.5,-51.5 - parent: 1 - type: Transform -- uid: 3304 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -15.5,-51.5 - parent: 1 - type: Transform -- uid: 3305 - type: WallSolid - components: - - pos: 9.5,-51.5 - parent: 1 - type: Transform -- uid: 3306 - type: WallSolid - components: - - pos: 5.5,-51.5 - parent: 1 - type: Transform -- uid: 3307 - type: WallSolid - components: - - pos: 7.5,-52.5 - parent: 1 - type: Transform -- uid: 3308 - type: AirlockMaintLocked - components: - - name: medbay - type: MetaData - - rot: 1.5707963267948966 rad - pos: 7.5,-53.5 - parent: 1 - type: Transform -- uid: 3309 - type: WallSolid - components: - - pos: 9.5,-53.5 - parent: 1 - type: Transform -- uid: 3310 - type: WallSolid - components: - - pos: 10.5,-50.5 - parent: 1 - type: Transform -- uid: 3311 - type: WallSolid - components: - - pos: 11.5,-50.5 - parent: 1 - type: Transform -- uid: 3312 - type: WallSolid - components: - - pos: -17.5,-66.5 - parent: 1 - type: Transform -- uid: 3313 - type: CloningPod - components: - - pos: -7.5,-63.5 - parent: 1 - type: Transform - - containers: - - machine_parts - - machine_board - type: Construction - - inputs: - CloningPodReceiver: - - port: MedicalScannerSender - uid: 3314 - type: SignalReceiver -- uid: 3314 - type: ComputerCloningConsole - components: - - pos: -8.5,-63.5 - parent: 1 - type: Transform - - outputs: - MedicalScannerSender: - - port: MedicalScannerReceiver - uid: 3383 - - port: CloningPodReceiver - uid: 3313 - CloningPodSender: [] - type: SignalTransmitter -- uid: 3315 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,-52.5 - parent: 1 - type: Transform -- uid: 3316 - type: FirelockGlass - components: - - pos: -6.5,-62.5 - parent: 1 - type: Transform -- uid: 3317 - type: AirlockMedicalLocked - components: - - name: morgue - type: MetaData - - pos: -13.5,-62.5 - parent: 1 - type: Transform -- uid: 3318 - type: FirelockGlass - components: - - pos: -2.5,-62.5 - parent: 1 - type: Transform -- uid: 3319 - type: BiomassReclaimer - components: - - pos: -5.5,-66.5 - parent: 1 - type: Transform -- uid: 3320 - type: WallSolid - components: - - pos: -17.5,-62.5 - parent: 1 - type: Transform -- uid: 3321 - type: WallSolid - components: - - pos: -16.5,-62.5 - parent: 1 - type: Transform -- uid: 3322 - type: WallSolid - components: - - pos: -15.5,-62.5 - parent: 1 - type: Transform -- uid: 3323 - type: WallSolid - components: - - pos: -14.5,-62.5 - parent: 1 - type: Transform -- uid: 3324 - type: WallSolid - components: - - pos: -12.5,-62.5 - parent: 1 - type: Transform -- uid: 3325 - type: WallSolid - components: - - pos: -11.5,-62.5 - parent: 1 - type: Transform -- uid: 3326 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-65.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 8.10692 - - 30.497463 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3327 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-64.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 8.10692 - - 30.497463 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3328 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-64.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 7.458366 - - 28.057667 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3329 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-65.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 7.458366 - - 28.057667 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3330 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-66.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 8.10692 - - 30.497463 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3331 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-64.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 8.10692 - - 30.497463 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3332 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-65.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 8.10692 - - 30.497463 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3333 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-66.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 8.10692 - - 30.497463 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3334 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-53.5 - parent: 1 - type: Transform -- uid: 3335 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-53.5 - parent: 1 - type: Transform -- uid: 3336 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-53.5 - parent: 1 - type: Transform -- uid: 3337 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-53.5 - parent: 1 - type: Transform -- uid: 3338 - type: WallSolid - components: - - pos: 1.5,-66.5 - parent: 1 - type: Transform -- uid: 3339 - type: Brutepack - components: - - pos: -3.5865417,-56.488716 - parent: 1 - type: Transform -- uid: 3340 - type: Brutepack - components: - - pos: -6.5713716,-56.519966 - parent: 1 - type: Transform -- uid: 3341 - type: Brutepack - components: - - pos: -12.617692,-56.44184 - parent: 1 - type: Transform -- uid: 3342 - type: WeaponCapacitorRecharger - components: - - pos: 2.5,-56.5 - parent: 1 - type: Transform -- uid: 3343 - type: SignSurgery - components: - - pos: -1.5,-62.5 - parent: 1 - type: Transform -- uid: 3344 - type: SignCloning - components: - - pos: -7.5,-62.5 - parent: 1 - type: Transform -- uid: 3345 - type: OperatingTable - components: - - pos: -1.5,-65.5 - parent: 1 - type: Transform -- uid: 3346 - type: TableCounterMetal - components: - - pos: 0.5,-64.5 - parent: 1 - type: Transform -- uid: 3347 - type: TableCounterMetal - components: - - pos: 0.5,-65.5 - parent: 1 - type: Transform -- uid: 3348 - type: TableCounterMetal - components: - - pos: 0.5,-66.5 - parent: 1 - type: Transform -- uid: 3349 - type: Saw - components: - - pos: 0.4741887,-64.29508 - parent: 1 - type: Transform -- uid: 3350 - type: Retractor - components: - - pos: 0.5210637,-65.43571 - parent: 1 - type: Transform -- uid: 3351 - type: WallSolid - components: - - pos: 1.5,-68.5 - parent: 1 - type: Transform -- uid: 3352 - type: WallSolid - components: - - pos: 0.5,-68.5 - parent: 1 - type: Transform -- uid: 3353 - type: WallSolid - components: - - pos: -0.5,-68.5 - parent: 1 - type: Transform -- uid: 3354 - type: WallSolid - components: - - pos: -2.5,-68.5 - parent: 1 - type: Transform -- uid: 3355 - type: WallSolid - components: - - pos: -3.5,-68.5 - parent: 1 - type: Transform -- uid: 3356 - type: WallSolid - components: - - pos: -4.5,-68.5 - parent: 1 - type: Transform -- uid: 3357 - type: WallSolid - components: - - pos: -4.5,-67.5 - parent: 1 - type: Transform -- uid: 3358 - type: SawElectric - components: - - pos: 0.5054387,-66.18094 - parent: 1 - type: Transform -- uid: 3359 - type: TableCounterMetal - components: - - pos: -3.5,-64.5 - parent: 1 - type: Transform -- uid: 3360 - type: TableCounterMetal - components: - - pos: -3.5,-65.5 - parent: 1 - type: Transform -- uid: 3361 - type: TableCounterMetal - components: - - pos: -3.5,-66.5 - parent: 1 - type: Transform -- uid: 3362 - type: Window - components: - - pos: -10.5,-56.5 - parent: 1 - type: Transform -- uid: 3363 - type: Window - components: - - pos: -10.5,-57.5 - parent: 1 - type: Transform -- uid: 3364 - type: HospitalCurtainsOpen - components: - - pos: 3.5,-62.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -540469.9 - state: Closing - type: Door -- uid: 3365 - type: WallSolid - components: - - pos: 5.5,-62.5 - parent: 1 - type: Transform -- uid: 3366 - type: WallSolid - components: - - pos: 5.5,-64.5 - parent: 1 - type: Transform -- uid: 3367 - type: WallSolid - components: - - pos: 5.5,-65.5 - parent: 1 - type: Transform -- uid: 3368 - type: WallSolid - components: - - pos: 5.5,-66.5 - parent: 1 - type: Transform -- uid: 3369 - type: WallSolid - components: - - pos: 4.5,-66.5 - parent: 1 - type: Transform -- uid: 3370 - type: WallSolid - components: - - pos: 3.5,-66.5 - parent: 1 - type: Transform -- uid: 3371 - type: StasisBed - components: - - pos: 4.5,-64.5 - parent: 1 - type: Transform -- uid: 3372 - type: WallSolid - components: - - pos: 2.5,-66.5 - parent: 1 - type: Transform -- uid: 3373 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-68.5 - parent: 1 - type: Transform -- uid: 3374 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-68.5 - parent: 1 - type: Transform -- uid: 3375 - type: LockerChemistryFilled - components: - - pos: 6.5,-50.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3376 - type: SignChem - components: - - pos: 2.5,-44.5 - parent: 1 - type: Transform -- uid: 3377 - type: DisposalPipe - components: - - pos: 5.5,-48.5 - parent: 1 - type: Transform -- uid: 3378 - type: LargeBeaker - components: - - pos: 3.6444578,-45.294815 - parent: 1 - type: Transform -- uid: 3379 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 5.5,-50.5 - parent: 1 - type: Transform -- uid: 3380 - type: AirAlarm - components: - - pos: 20.5,-51.5 - parent: 1 - type: Transform - - devices: - - 21559 - - 21066 - - 21064 - type: DeviceList -- uid: 3381 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3382 - type: LockerMedicalFilled - components: - - pos: -7.5,-59.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3383 - type: MedicalScanner - components: - - pos: -9.5,-63.5 - parent: 1 - type: Transform - - inputs: - MedicalScannerReceiver: - - port: MedicalScannerSender - uid: 3314 - type: SignalReceiver -- uid: 3384 - type: computerBodyScanner - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-65.5 - parent: 1 - type: Transform -- uid: 3385 - type: TableReinforced - components: - - pos: 28.5,32.5 - parent: 1 - type: Transform -- uid: 3386 - type: TableReinforced - components: - - pos: 30.5,32.5 - parent: 1 - type: Transform -- uid: 3387 - type: TableReinforced - components: - - pos: 31.5,32.5 - parent: 1 - type: Transform -- uid: 3388 - type: WeaponLaserCarbine - components: - - pos: 31.720297,27.479605 - parent: 1 - type: Transform -- uid: 3389 - type: WeaponLaserCarbine - components: - - pos: 27.258293,29.421711 - parent: 1 - type: Transform -- uid: 3390 - type: WeaponLaserCarbine - components: - - pos: 27.273918,27.479605 - parent: 1 - type: Transform -- uid: 3391 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 64.5,-36.5 - parent: 1 - type: Transform -- uid: 3392 - type: CableApcExtension - components: - - pos: 55.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3393 - type: WallSolid - components: - - pos: 56.5,-32.5 - parent: 1 - type: Transform -- uid: 3394 - type: WeaponLaserCarbine - components: - - pos: 31.735922,29.417105 - parent: 1 - type: Transform -- uid: 3395 - type: ReinforcedWindow - components: - - pos: -18.5,-58.5 - parent: 1 - type: Transform -- uid: 3396 - type: ReinforcedWindow - components: - - pos: -20.5,-58.5 - parent: 1 - type: Transform -- uid: 3397 - type: WallReinforced - components: - - pos: -21.5,-58.5 - parent: 1 - type: Transform -- uid: 3398 - type: WallReinforced - components: - - pos: -21.5,-54.5 - parent: 1 - type: Transform -- uid: 3399 - type: PaperBin5 - components: - - pos: -19.490406,-56.387535 - parent: 1 - type: Transform -- uid: 3400 - type: LampGold - components: - - pos: -18.78946,-56.159798 - parent: 1 - type: Transform - - toggleAction: - popupToggleSuffix: null - checkCanInteract: True - icon: Objects/Tools/flashlight.rsi/flashlight.png - iconOn: Objects/Tools/flashlight.rsi/flashlight-on.png - iconColor: '#FFFFFFFF' - name: action-name-toggle-light - description: action-description-toggle-light - keywords: [] - enabled: True - useDelay: null - charges: null - clientExclusive: False - popup: null - priority: 0 - autoPopulate: True - autoRemove: True - temporary: False - itemIconStyle: BigItem - speech: null - sound: null - audioParams: null - userPopup: null - event: !type:ToggleActionEvent {} - type: HandheldLight -- uid: 3401 - type: CableHV - components: - - pos: -0.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3402 - type: CableHV - components: - - pos: -1.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3403 - type: CableHV - components: - - pos: -1.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3404 - type: CableMV - components: - - pos: 8.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3405 - type: CableHV - components: - - pos: 30.5,-3.5 - parent: 1 - type: Transform -- uid: 3406 - type: CableMV - components: - - pos: 31.5,-4.5 - parent: 1 - type: Transform -- uid: 3407 - type: CableMV - components: - - pos: 30.5,-4.5 - parent: 1 - type: Transform -- uid: 3408 - type: CableMV - components: - - pos: 30.5,-3.5 - parent: 1 - type: Transform -- uid: 3409 - type: CableMV - components: - - pos: 30.5,-2.5 - parent: 1 - type: Transform -- uid: 3410 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 28.5,3.5 - parent: 1 - type: Transform -- uid: 3411 - type: CableApcExtension - components: - - pos: 32.5,-4.5 - parent: 1 - type: Transform -- uid: 3412 - type: FirelockGlass - components: - - pos: 31.5,8.5 - parent: 1 - type: Transform -- uid: 3413 - type: CableHV - components: - - pos: 30.5,7.5 - parent: 1 - type: Transform -- uid: 3414 - type: Chair - components: - - pos: 27.5,6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3415 - type: Chair - components: - - pos: 26.5,6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3416 - type: AirlockGlass - components: - - pos: 31.5,1.5 - parent: 1 - type: Transform -- uid: 3417 - type: MedkitBruteFilled - components: - - pos: 29.964247,4.5500474 - parent: 1 - type: Transform -- uid: 3418 - type: FirelockGlass - components: - - pos: 31.5,1.5 - parent: 1 - type: Transform -- uid: 3419 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: 30.5,4.5 - parent: 1 - type: Transform -- uid: 3420 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 29.5,1.5 - parent: 1 - type: Transform -- uid: 3421 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 29.5,2.5 - parent: 1 - type: Transform -- uid: 3422 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-0.5 - parent: 1 - type: Transform -- uid: 3423 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 1 - type: Transform -- uid: 3424 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 28.5,0.5 - parent: 1 - type: Transform -- uid: 3425 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 29.5,0.5 - parent: 1 - type: Transform -- uid: 3426 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-1.5 - parent: 1 - type: Transform -- uid: 3427 - type: WallSolid - components: - - pos: 11.5,-54.5 - parent: 1 - type: Transform -- uid: 3428 - type: WallSolid - components: - - pos: 10.5,-54.5 - parent: 1 - type: Transform -- uid: 3429 - type: AirlockMaintMedLocked - components: - - name: medbay - type: MetaData - - pos: 6.5,-62.5 - parent: 1 - type: Transform -- uid: 3430 - type: Window - components: - - pos: -21.5,-61.5 - parent: 1 - type: Transform -- uid: 3431 - type: AirlockMedicalGlassLocked - components: - - name: cryogenics - type: MetaData - - pos: -21.5,-60.5 - parent: 1 - type: Transform -- uid: 3432 - type: Window - components: - - pos: -21.5,-59.5 - parent: 1 - type: Transform -- uid: 3433 - type: WallSolid - components: - - pos: -21.5,-62.5 - parent: 1 - type: Transform -- uid: 3434 - type: WallSolid - components: - - pos: -20.5,-62.5 - parent: 1 - type: Transform -- uid: 3435 - type: WallSolid - components: - - pos: -18.5,-62.5 - parent: 1 - type: Transform -- uid: 3436 - type: Firelock - components: - - pos: -13.5,-62.5 - parent: 1 - type: Transform -- uid: 3437 - type: DisposalPipe - components: - - pos: 16.5,-35.5 - parent: 1 - type: Transform -- uid: 3438 - type: DisposalPipe - components: - - pos: 16.5,-36.5 - parent: 1 - type: Transform -- uid: 3439 - type: DisposalPipe - components: - - pos: 16.5,-37.5 - parent: 1 - type: Transform -- uid: 3440 - type: DisposalPipe - components: - - pos: 16.5,-38.5 - parent: 1 - type: Transform -- uid: 3441 - type: DisposalPipe - components: - - pos: 16.5,-39.5 - parent: 1 - type: Transform -- uid: 3442 - type: DisposalPipe - components: - - pos: 16.5,-40.5 - parent: 1 - type: Transform -- uid: 3443 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 1.5,-59.5 - parent: 1 - type: Transform -- uid: 3444 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,-58.5 - parent: 1 - type: Transform -- uid: 3445 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,-57.5 - parent: 1 - type: Transform -- uid: 3446 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,-56.5 - parent: 1 - type: Transform -- uid: 3447 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,-55.5 - parent: 1 - type: Transform -- uid: 3448 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 1.5,-54.5 - parent: 1 - type: Transform -- uid: 3449 - type: DisposalBend - components: - - pos: 1.5,-53.5 - parent: 1 - type: Transform -- uid: 3450 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-53.5 - parent: 1 - type: Transform -- uid: 3451 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-45.5 - parent: 1 - type: Transform -- uid: 3452 - type: DisposalYJunction - components: - - rot: 3.141592653589793 rad - pos: -0.5,-53.5 - parent: 1 - type: Transform -- uid: 3453 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-52.5 - parent: 1 - type: Transform -- uid: 3454 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-51.5 - parent: 1 - type: Transform -- uid: 3455 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-50.5 - parent: 1 - type: Transform -- uid: 3456 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-48.5 - parent: 1 - type: Transform -- uid: 3457 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-47.5 - parent: 1 - type: Transform -- uid: 3458 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: -0.5,-45.5 - parent: 1 - type: Transform -- uid: 3459 - type: DisposalPipe - components: - - pos: -0.5,-44.5 - parent: 1 - type: Transform -- uid: 3460 - type: DisposalUnit - components: - - pos: 1.5,-59.5 - parent: 1 - type: Transform -- uid: 3461 - type: DisposalUnit - components: - - pos: -2.5,-45.5 - parent: 1 - type: Transform -- uid: 3462 - type: CableHV - components: - - pos: -24.5,-14.5 - parent: 1 - type: Transform -- uid: 3463 - type: KitchenReagentGrinder - components: - - pos: 3.5,-47.5 - parent: 1 - type: Transform -- uid: 3464 - type: Table - components: - - pos: 10.5,-58.5 - parent: 1 - type: Transform -- uid: 3465 - type: Table - components: - - pos: 10.5,-59.5 - parent: 1 - type: Transform -- uid: 3466 - type: Table - components: - - pos: 10.5,-61.5 - parent: 1 - type: Transform -- uid: 3467 - type: Table - components: - - pos: 10.5,-62.5 - parent: 1 - type: Transform -- uid: 3468 - type: Table - components: - - pos: 9.5,-62.5 - parent: 1 - type: Transform -- uid: 3469 - type: Table - components: - - pos: 8.5,-62.5 - parent: 1 - type: Transform -- uid: 3470 - type: MedkitToxinFilled - components: - - pos: 10.350285,-59.237457 - parent: 1 - type: Transform -- uid: 3471 - type: MedkitToxinFilled - components: - - pos: 10.649347,-59.372696 - parent: 1 - type: Transform -- uid: 3472 - type: PowerCellRecharger - components: - - pos: -26.5,-20.5 - parent: 1 - type: Transform -- uid: 3473 - type: MedkitRadiationFilled - components: - - pos: 10.352472,-60.278946 - parent: 1 - type: Transform -- uid: 3474 - type: MedkitRadiationFilled - components: - - pos: 10.649347,-60.466446 - parent: 1 - type: Transform -- uid: 3475 - type: ClosetToolFilled - components: - - pos: -26.5,-21.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3476 - type: MedkitOxygenFilled - components: - - pos: 10.352472,-61.403946 - parent: 1 - type: Transform -- uid: 3477 - type: MedkitOxygenFilled - components: - - pos: 10.649347,-61.57582 - parent: 1 - type: Transform -- uid: 3478 - type: IntercomSecurity - components: - - pos: -16.5,-19.5 - parent: 1 - type: Transform -- uid: 3479 - type: MedkitBurnFilled - components: - - pos: 9.368097,-58.216446 - parent: 1 - type: Transform -- uid: 3480 - type: MedkitBurnFilled - components: - - pos: 9.633722,-58.372696 - parent: 1 - type: Transform -- uid: 3481 - type: MedkitBruteFilled - components: - - pos: 9.446222,-62.560196 - parent: 1 - type: Transform -- uid: 3482 - type: BoxSterileMask - components: - - pos: 8.352472,-58.29457 - parent: 1 - type: Transform -- uid: 3483 - type: BoxLatexGloves - components: - - pos: 8.430597,-62.372696 - parent: 1 - type: Transform -- uid: 3484 - type: BoxMouthSwab - components: - - pos: 10.414972,-62.341446 - parent: 1 - type: Transform -- uid: 3485 - type: BoxMouthSwab - components: - - pos: 8.805597,-58.41957 - parent: 1 - type: Transform -- uid: 3486 - type: HandheldHealthAnalyzer - components: - - pos: 10.274347,-58.341446 - parent: 1 - type: Transform -- uid: 3487 - type: HandheldHealthAnalyzer - components: - - pos: 10.539972,-58.60707 - parent: 1 - type: Transform -- uid: 3488 - type: WallSolid - components: - - pos: 12.5,-54.5 - parent: 1 - type: Transform -- uid: 3489 - type: WallSolid - components: - - pos: 14.5,-56.5 - parent: 1 - type: Transform -- uid: 3490 - type: WallSolid - components: - - pos: 14.5,-54.5 - parent: 1 - type: Transform -- uid: 3491 - type: WallSolid - components: - - pos: 13.5,-60.5 - parent: 1 - type: Transform -- uid: 3492 - type: WallSolid - components: - - pos: 13.5,-61.5 - parent: 1 - type: Transform -- uid: 3493 - type: WallSolid - components: - - pos: 13.5,-62.5 - parent: 1 - type: Transform -- uid: 3494 - type: WallSolid - components: - - pos: 13.5,-64.5 - parent: 1 - type: Transform -- uid: 3495 - type: WallSolid - components: - - pos: 12.5,-65.5 - parent: 1 - type: Transform -- uid: 3496 - type: WallSolid - components: - - pos: 10.5,-65.5 - parent: 1 - type: Transform -- uid: 3497 - type: WallSolid - components: - - pos: 10.5,-66.5 - parent: 1 - type: Transform -- uid: 3498 - type: GasPipeTJunction - components: - - pos: 21.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3499 - type: GasPipeStraight - components: - - pos: 21.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3500 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3501 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3502 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3503 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3504 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3505 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3506 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3507 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3508 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3509 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3510 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3511 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 25.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3512 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-6.5 - parent: 1 - type: Transform -- uid: 3513 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-6.5 - parent: 1 - type: Transform -- uid: 3514 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-6.5 - parent: 1 - type: Transform -- uid: 3515 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-6.5 - parent: 1 - type: Transform -- uid: 3516 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-6.5 - parent: 1 - type: Transform -- uid: 3517 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-6.5 - parent: 1 - type: Transform -- uid: 3518 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-6.5 - parent: 1 - type: Transform -- uid: 3519 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 34.5,7.5 - parent: 1 - type: Transform -- uid: 3520 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 34.5,6.5 - parent: 1 - type: Transform -- uid: 3521 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 35.5,6.5 - parent: 1 - type: Transform -- uid: 3522 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 36.5,6.5 - parent: 1 - type: Transform -- uid: 3523 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 37.5,6.5 - parent: 1 - type: Transform -- uid: 3524 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 38.5,6.5 - parent: 1 - type: Transform -- uid: 3525 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 40.5,6.5 - parent: 1 - type: Transform -- uid: 3526 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 34.5,3.5 - parent: 1 - type: Transform -- uid: 3527 - type: DisposalJunctionFlipped - components: - - pos: 34.5,1.5 - parent: 1 - type: Transform -- uid: 3528 - type: DisposalPipe - components: - - pos: 34.5,-0.5 - parent: 1 - type: Transform -- uid: 3529 - type: DisposalPipe - components: - - pos: 34.5,-1.5 - parent: 1 - type: Transform -- uid: 3530 - type: DisposalPipe - components: - - pos: 36.5,-27.5 - parent: 1 - type: Transform -- uid: 3531 - type: DisposalPipe - components: - - pos: 36.5,-28.5 - parent: 1 - type: Transform -- uid: 3532 - type: DisposalBend - components: - - pos: 18.5,-49.5 - parent: 1 - type: Transform -- uid: 3533 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-44.5 - parent: 1 - type: Transform -- uid: 3534 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-45.5 - parent: 1 - type: Transform -- uid: 3535 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 15.5,-45.5 - parent: 1 - type: Transform -- uid: 3536 - type: DisposalPipe - components: - - pos: 17.5,-46.5 - parent: 1 - type: Transform -- uid: 3537 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-43.5 - parent: 1 - type: Transform -- uid: 3538 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-43.5 - parent: 1 - type: Transform -- uid: 3539 - type: DisposalPipe - components: - - pos: 19.5,-42.5 - parent: 1 - type: Transform -- uid: 3540 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 37.5,-17.5 - parent: 1 - type: Transform -- uid: 3541 - type: JanitorialTrolley - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-22.5 - parent: 1 - type: Transform -- uid: 3542 - type: CableMV - components: - - pos: -9.5,-21.5 - parent: 1 - type: Transform -- uid: 3543 - type: WallSolid - components: - - pos: -8.5,-20.5 - parent: 1 - type: Transform -- uid: 3544 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-20.5 - parent: 1 - type: Transform -- uid: 3545 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-20.5 - parent: 1 - type: Transform -- uid: 3546 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-20.5 - parent: 1 - type: Transform -- uid: 3547 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-21.5 - parent: 1 - type: Transform -- uid: 3548 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 1 - type: Transform -- uid: 3549 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 1 - type: Transform -- uid: 3550 - type: Table - components: - - pos: -13.5,-21.5 - parent: 1 - type: Transform -- uid: 3551 - type: Table - components: - - pos: -13.5,-23.5 - parent: 1 - type: Transform -- uid: 3552 - type: MopBucket - components: - - pos: -7.488649,-21.482498 - parent: 1 - type: Transform -- uid: 3553 - type: MopBucket - components: - - pos: -7.441774,-23.373123 - parent: 1 - type: Transform -- uid: 3554 - type: SignSmoking - components: - - pos: 1.5,-49.5 - parent: 1 - type: Transform -- uid: 3555 - type: SignInterrogation - components: - - pos: 18.5,18.5 - parent: 1 - type: Transform -- uid: 3556 - type: FireAlarm - components: - - pos: -6.5,-44.5 - parent: 1 - type: Transform - - devices: - - 3907 - - 20039 - - 20040 - - 3246 - - 3245 - - 6767 - - 3243 - - 3242 - - 3241 - - 3236 - - 3237 - - 6086 - - 13503 - - 13502 - - 13504 - - invalid - - 21603 - type: DeviceList -- uid: 3557 - type: SpawnPointChemist - components: - - pos: 3.5,-48.5 - parent: 1 - type: Transform -- uid: 3558 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3559 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3560 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3561 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3562 - type: TableWood - components: - - pos: 7.5,20.5 - parent: 1 - type: Transform -- uid: 3563 - type: GasPipeStraight - components: - - pos: 26.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3564 - type: GasPipeStraight - components: - - pos: 26.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3565 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3566 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3567 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3568 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3569 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3570 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3571 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3572 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3573 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3574 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3575 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3576 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3577 - type: GasPipeTJunction - components: - - pos: 20.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3578 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3579 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3580 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 20.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3581 - type: WallReinforced - components: - - pos: 33.5,-26.5 - parent: 1 - type: Transform -- uid: 3582 - type: TableReinforced - components: - - pos: 18.5,-22.5 - parent: 1 - type: Transform -- uid: 3583 - type: WallReinforced - components: - - pos: 26.5,-33.5 - parent: 1 - type: Transform -- uid: 3584 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-32.5 - parent: 1 - type: Transform -- uid: 3585 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 24.5,-52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3586 - type: WallReinforced - components: - - pos: 27.5,-28.5 - parent: 1 - type: Transform -- uid: 3587 - type: CableApcExtension - components: - - pos: 26.5,-25.5 - parent: 1 - type: Transform -- uid: 3588 - type: CableApcExtension - components: - - pos: 25.5,-25.5 - parent: 1 - type: Transform -- uid: 3589 - type: CableApcExtension - components: - - pos: 24.5,-22.5 - parent: 1 - type: Transform -- uid: 3590 - type: CableApcExtension - components: - - pos: 23.5,-22.5 - parent: 1 - type: Transform -- uid: 3591 - type: CableApcExtension - components: - - pos: 21.5,-24.5 - parent: 1 - type: Transform -- uid: 3592 - type: CableApcExtension - components: - - pos: 21.5,-23.5 - parent: 1 - type: Transform -- uid: 3593 - type: CableApcExtension - components: - - pos: 21.5,-22.5 - parent: 1 - type: Transform -- uid: 3594 - type: CableApcExtension - components: - - pos: 26.5,-23.5 - parent: 1 - type: Transform -- uid: 3595 - type: CableApcExtension - components: - - pos: 27.5,-23.5 - parent: 1 - type: Transform -- uid: 3596 - type: CableApcExtension - components: - - pos: 28.5,-29.5 - parent: 1 - type: Transform -- uid: 3597 - type: CableApcExtension - components: - - pos: 27.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3598 - type: CableApcExtension - components: - - pos: 27.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3599 - type: CarpetSBlue - components: - - pos: 21.5,-36.5 - parent: 1 - type: Transform -- uid: 3600 - type: CableApcExtension - components: - - pos: 27.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3601 - type: CableApcExtension - components: - - pos: 27.5,-34.5 - parent: 1 - type: Transform -- uid: 3602 - type: CableApcExtension - components: - - pos: 28.5,-35.5 - parent: 1 - type: Transform -- uid: 3603 - type: CableApcExtension - components: - - pos: 28.5,-36.5 - parent: 1 - type: Transform -- uid: 3604 - type: CableApcExtension - components: - - pos: 27.5,-36.5 - parent: 1 - type: Transform -- uid: 3605 - type: CableApcExtension - components: - - pos: 26.5,-30.5 - parent: 1 - type: Transform -- uid: 3606 - type: CableApcExtension - components: - - pos: 25.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3607 - type: CableApcExtension - components: - - pos: 24.5,-30.5 - parent: 1 - type: Transform -- uid: 3608 - type: CableApcExtension - components: - - pos: 23.5,-30.5 - parent: 1 - type: Transform -- uid: 3609 - type: CableApcExtension - components: - - pos: 22.5,-30.5 - parent: 1 - type: Transform -- uid: 3610 - type: CableApcExtension - components: - - pos: 22.5,-28.5 - parent: 1 - type: Transform -- uid: 3611 - type: DisposalPipe - components: - - pos: 18.5,-27.5 - parent: 1 - type: Transform -- uid: 3612 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3613 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3614 - type: CableApcExtension - components: - - pos: 6.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3615 - type: CableApcExtension - components: - - pos: 5.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3616 - type: CableApcExtension - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform -- uid: 3617 - type: CableApcExtension - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform -- uid: 3618 - type: CableApcExtension - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform -- uid: 3619 - type: CableApcExtension - components: - - pos: 12.5,-9.5 - parent: 1 - type: Transform -- uid: 3620 - type: GasPipeStraight - components: - - pos: 24.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3621 - type: GasPipeStraight - components: - - pos: 24.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3622 - type: DisposalPipe - components: - - pos: -23.5,-80.5 - parent: 1 - type: Transform -- uid: 3623 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 23.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3624 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3625 - type: WindoorSecure - components: - - pos: 28.5,-38.5 - parent: 1 - type: Transform -- uid: 3626 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3627 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3628 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3629 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3630 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3631 - type: GasVentScrubber - components: - - pos: 23.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3632 - type: WallSolid - components: - - pos: 38.5,-52.5 - parent: 1 - type: Transform -- uid: 3633 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-36.5 - parent: 1 - type: Transform -- uid: 3634 - type: GasPipeStraight - components: - - pos: 28.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3635 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 22.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3636 - type: GasPipeFourway - components: - - pos: 26.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3637 - type: GasPipeStraight - components: - - pos: 22.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3638 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-27.5 - parent: 1 - type: Transform -- uid: 3639 - type: WallSolid - components: - - pos: 37.5,-52.5 - parent: 1 - type: Transform -- uid: 3640 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 1 - type: Transform -- uid: 3641 - type: GasPipeStraight - components: - - pos: 22.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3642 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 1 - type: Transform -- uid: 3643 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3644 - type: GasPipeStraight - components: - - pos: 22.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3645 - type: Table - components: - - pos: -12.5,-19.5 - parent: 1 - type: Transform -- uid: 3646 - type: WallmountTelevision - components: - - pos: 17.5,8.5 - parent: 1 - type: Transform -- uid: 3647 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-2.5 - parent: 1 - type: Transform -- uid: 3648 - type: WallSolid - components: - - pos: -7.5,-16.5 - parent: 1 - type: Transform -- uid: 3649 - type: AirlockJanitorLocked - components: - - pos: -11.5,-16.5 - parent: 1 - type: Transform -- uid: 3650 - type: CableHV - components: - - pos: -6.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3651 - type: CableHV - components: - - pos: -5.5,-19.5 - parent: 1 - type: Transform -- uid: 3652 - type: CableHV - components: - - pos: -4.5,-19.5 - parent: 1 - type: Transform -- uid: 3653 - type: CableHV - components: - - pos: -4.5,-21.5 - parent: 1 - type: Transform -- uid: 3654 - type: CableHV - components: - - pos: -7.5,-19.5 - parent: 1 - type: Transform -- uid: 3655 - type: SubstationBasic - components: - - pos: -8.5,-19.5 - parent: 1 - type: Transform -- uid: 3656 - type: CableMV - components: - - pos: -8.5,-19.5 - parent: 1 - type: Transform -- uid: 3657 - type: CableMV - components: - - pos: -8.5,-20.5 - parent: 1 - type: Transform -- uid: 3658 - type: CableMV - components: - - pos: -8.5,-21.5 - parent: 1 - type: Transform -- uid: 3659 - type: CableMV - components: - - pos: -10.5,-21.5 - parent: 1 - type: Transform -- uid: 3660 - type: CableMV - components: - - pos: -10.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3661 - type: APCBasic - components: - - pos: -10.5,-20.5 - parent: 1 - type: Transform -- uid: 3662 - type: CableApcExtension - components: - - pos: -10.5,-22.5 - parent: 1 - type: Transform -- uid: 3663 - type: CableApcExtension - components: - - pos: -15.5,-22.5 - parent: 1 - type: Transform -- uid: 3664 - type: AirlockEngineeringLocked - components: - - pos: -6.5,-19.5 - parent: 1 - type: Transform -- uid: 3665 - type: WallSolid - components: - - pos: -6.5,-12.5 - parent: 1 - type: Transform -- uid: 3666 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -4.5,-12.5 - parent: 1 - type: Transform -- uid: 3667 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-13.5 - parent: 1 - type: Transform -- uid: 3668 - type: Bed - components: - - pos: 36.5,7.5 - parent: 1 - type: Transform -- uid: 3669 - type: Bed - components: - - pos: 36.5,4.5 - parent: 1 - type: Transform -- uid: 3670 - type: BedsheetGrey - components: - - pos: 29.5,10.5 - parent: 1 - type: Transform -- uid: 3671 - type: BedsheetGrey - components: - - pos: 32.5,10.5 - parent: 1 - type: Transform -- uid: 3672 - type: BedsheetGrey - components: - - pos: 35.5,10.5 - parent: 1 - type: Transform -- uid: 3673 - type: BedsheetGrey - components: - - pos: 36.5,7.5 - parent: 1 - type: Transform -- uid: 3674 - type: BedsheetGrey - components: - - pos: 36.5,4.5 - parent: 1 - type: Transform -- uid: 3675 - type: Window - components: - - pos: -12.5,-44.5 - parent: 1 - type: Transform -- uid: 3676 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-44.5 - parent: 1 - type: Transform -- uid: 3677 - type: WallReinforced - components: - - pos: -22.5,-49.5 - parent: 1 - type: Transform -- uid: 3678 - type: Catwalk - components: - - pos: -17.5,-52.5 - parent: 1 - type: Transform -- uid: 3679 - type: Firelock - components: - - pos: -21.5,-52.5 - parent: 1 - type: Transform -- uid: 3680 - type: CableApcExtension - components: - - pos: -24.5,-16.5 - parent: 1 - type: Transform -- uid: 3681 - type: LockerMedicalFilled - components: - - pos: -15.5,-49.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3682 - type: VendingMachineMediDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,-45.5 - parent: 1 - type: Transform -- uid: 3683 - type: LockerMedicalFilled - components: - - pos: -15.5,-47.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3684 - type: LockerMedicalFilled - components: - - pos: -15.5,-45.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3685 - type: CableApcExtension - components: - - pos: -24.5,-15.5 - parent: 1 - type: Transform -- uid: 3686 - type: MedicalBed - components: - - pos: -17.5,-54.5 - parent: 1 - type: Transform -- uid: 3687 - type: BedsheetCMO - components: - - pos: -17.5,-54.5 - parent: 1 - type: Transform -- uid: 3688 - type: AirlockExternalGlass - components: - - pos: -57.5,-71.5 - parent: 1 - type: Transform -- uid: 3689 - type: SpawnPointBotanist - components: - - pos: -7.5,7.5 - parent: 1 - type: Transform -- uid: 3690 - type: BedsheetHOS - components: - - rot: -1.5707963267948966 rad - pos: 8.5,22.5 - parent: 1 - type: Transform -- uid: 3691 - type: Bed - components: - - pos: 8.5,22.5 - parent: 1 - type: Transform -- uid: 3692 - type: SpawnPointBotanist - components: - - pos: -9.5,7.5 - parent: 1 - type: Transform -- uid: 3693 - type: Paper - components: - - pos: 6.351438,20.675463 - parent: 1 - type: Transform -- uid: 3694 - type: DrinkWhiskeySodaGlass - components: - - pos: 7.0699005,20.752857 - parent: 1 - type: Transform -- uid: 3695 - type: Lamp - components: - - rot: -1.5707963267948966 rad - pos: 7.6524577,20.90233 - parent: 1 - type: Transform -- uid: 3696 - type: PosterLegitHereForYourSafety - components: - - pos: 28.5,9.5 - parent: 1 - type: Transform -- uid: 3697 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: 19.5,14.5 - parent: 1 - type: Transform -- uid: 3698 - type: SignShock - components: - - pos: 17.5,-30.5 - parent: 1 - type: Transform -- uid: 3699 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 1 - type: Transform -- uid: 3700 - type: PosterLegitReportCrimes - components: - - pos: 18.5,-15.5 - parent: 1 - type: Transform -- uid: 3701 - type: PosterContrabandRedRum - components: - - pos: 13.5,4.5 - parent: 1 - type: Transform -- uid: 3702 - type: CableApcExtension - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform -- uid: 3703 - type: PosterLegitDoNotQuestion - components: - - pos: 23.5,19.5 - parent: 1 - type: Transform -- uid: 3704 - type: PosterContrabandFunPolice - components: - - pos: 4.5,18.5 - parent: 1 - type: Transform -- uid: 3705 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.503365,-39.428345 - parent: 1 - type: Transform -- uid: 3706 - type: AirAlarm - components: - - pos: -2.5,4.5 - parent: 1 - type: Transform - - devices: - - 8759 - - 1101 - - 97 - - 21458 - - 21459 - - 21456 - - 21457 - - 8497 - - 3066 - - 5953 - - 3065 - - 5963 - - 4387 - - 4529 - - 2097 - - 1109 - - 4386 - - 2096 - - 21558 - type: DeviceList -- uid: 3707 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-32.5 - parent: 1 - type: Transform -- uid: 3708 - type: FoodCondimentBottleEnzyme - components: - - pos: 3.5430002,6.7808695 - parent: 1 - type: Transform -- uid: 3709 - type: LargeBeaker - components: - - pos: 4.621125,7.7027445 - parent: 1 - type: Transform -- uid: 3710 - type: DrinkMilkCarton - components: - - pos: 4.089875,7.6089945 - parent: 1 - type: Transform -- uid: 3711 - type: DrinkMilkCarton - components: - - pos: 4.246125,7.3902445 - parent: 1 - type: Transform -- uid: 3712 - type: ReagentContainerSugar - components: - - pos: 4.6055,7.306335 - parent: 1 - type: Transform -- uid: 3713 - type: TableReinforced - components: - - pos: 1.5,4.5 - parent: 1 - type: Transform -- uid: 3714 - type: FoodPieBananaCream - components: - - pos: 1.4813356,4.5242853 - parent: 1 - type: Transform -- uid: 3715 - type: FoodPieBananaCream - components: - - pos: 2.4842715,-4.47469 - parent: 1 - type: Transform -- uid: 3716 - type: FloorDrain - components: - - pos: 3.5,8.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 3717 - type: Table - components: - - pos: 6.5,-45.5 - parent: 1 - type: Transform -- uid: 3718 - type: Table - components: - - pos: 3.5,-47.5 - parent: 1 - type: Transform -- uid: 3719 - type: ToolboxEmergencyFilled - components: - - pos: 32.521046,-22.058308 - parent: 1 - type: Transform - - nextAttack: 103.249591 - type: MeleeWeapon -- uid: 3720 - type: ToolboxElectricalFilled - components: - - pos: 32.521046,-20.990738 - parent: 1 - type: Transform - - nextAttack: 112.5662204 - type: MeleeWeapon -- uid: 3721 - type: filingCabinet - components: - - pos: 17.5,-14.5 - parent: 1 - type: Transform -- uid: 3722 - type: BoxFolderRed - components: - - pos: 20.994316,-12.4294405 - parent: 1 - type: Transform -- uid: 3723 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-33.5 - parent: 1 - type: Transform -- uid: 3724 - type: TableWood - components: - - pos: -6.5,-49.5 - parent: 1 - type: Transform -- uid: 3725 - type: MopItem - components: - - pos: -13.596031,-22.66943 - parent: 1 - type: Transform -- uid: 3726 - type: SprayBottleSpaceCleaner - components: - - pos: -13.517906,-22.26318 - parent: 1 - type: Transform -- uid: 3727 - type: DisposalUnit - components: - - pos: -10.5,-23.5 - parent: 1 - type: Transform -- uid: 3728 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: -12.583234,-18.98207 - parent: 1 - type: Transform -- uid: 3729 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3730 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3731 - type: GasPipeStraight - components: - - pos: -11.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3732 - type: GasPipeStraight - components: - - pos: -8.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3733 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3734 - type: GasPipeStraight - components: - - pos: 2.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3735 - type: LauncherCreamPie - components: - - pos: 4.462709,-9.678722 - parent: 1 - type: Transform -- uid: 3736 - type: CarpetPink - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-10.5 - parent: 1 - type: Transform -- uid: 3737 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -36716.934 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 29230 - Close: - - port: Off - uid: 29230 - Toggle: [] - type: SignalReceiver -- uid: 3738 - type: TrashBananaPeel - components: - - pos: 1.2956955,-5.4829655 - parent: 1 - type: Transform -- uid: 3739 - type: CrowbarRed - components: - - pos: 4.478334,-12.322436 - parent: 1 - type: Transform -- uid: 3740 - type: Paper - components: - - pos: 4.462709,-11.197436 - parent: 1 - type: Transform -- uid: 3741 - type: Paper - components: - - pos: 4.462709,-11.197436 - parent: 1 - type: Transform -- uid: 3742 - type: Paper - components: - - pos: 4.462709,-11.197436 - parent: 1 - type: Transform -- uid: 3743 - type: Bed - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform -- uid: 3744 - type: CarpetPink - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 1 - type: Transform -- uid: 3745 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 33.5,-23.5 - parent: 1 - type: Transform -- uid: 3746 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: 10.5,7.5 - parent: 1 - type: Transform -- uid: 3747 - type: CrateHydroponicsSeeds - components: - - pos: 12.5,-52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3748 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-10.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27282 - - port: Left - uid: 27282 - Forward: [] - Off: - - port: Middle - uid: 27282 - type: SignalReceiver -- uid: 3749 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-33.5 - parent: 1 - type: Transform -- uid: 3750 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: 4.5,11.5 - parent: 1 - type: Transform -- uid: 3751 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3752 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3753 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3754 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3755 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -10.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3756 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -10.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3757 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3758 - type: GasPipeTJunction - components: - - pos: -10.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3759 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3760 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3761 - type: GasPipeStraight - components: - - pos: -9.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3762 - type: GasPipeStraight - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3763 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -9.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3764 - type: GasPipeStraight - components: - - pos: -10.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3765 - type: GasPipeStraight - components: - - pos: -10.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3766 - type: GasPipeStraight - components: - - pos: -10.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3767 - type: GasPipeStraight - components: - - pos: -10.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3768 - type: GasPipeStraight - components: - - pos: -10.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3769 - type: GasPipeStraight - components: - - pos: -10.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3770 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -10.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3771 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3772 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3773 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -2.5,-65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3774 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -6.5,-65.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3775 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -12.5,-65.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3776 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -8.5,-65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3777 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -15.5,-65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3778 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -5.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3779 - type: GasVentPump - components: - - pos: -2.5,-52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3780 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -8.5,-54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3781 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 3.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3782 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 5.5,-45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3783 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -0.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3784 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -8.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3785 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3786 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3787 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3788 - type: GasPipeTJunction - components: - - pos: -2.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3789 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3790 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3791 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3792 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3793 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -4.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3794 - type: GasPipeStraight - components: - - pos: -8.5,-63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3795 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -9.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3796 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3797 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3798 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3799 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3800 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3801 - type: GasPipeTJunction - components: - - pos: -15.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3802 - type: GasPipeStraight - components: - - pos: -15.5,-62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3803 - type: GasPipeStraight - components: - - pos: -15.5,-63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3804 - type: GasPipeStraight - components: - - pos: -15.5,-64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3805 - type: GasPipeTJunction - components: - - pos: -0.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3806 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3807 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3808 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3809 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,-64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3810 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3811 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3812 - type: GasPipeTJunction - components: - - pos: -12.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3813 - type: GasPipeStraight - components: - - pos: -12.5,-62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3814 - type: GasPipeStraight - components: - - pos: -12.5,-63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3815 - type: GasPipeStraight - components: - - pos: -12.5,-64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3816 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3817 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3818 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 3.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3819 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3820 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3821 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3822 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3823 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 3824 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3825 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3826 - type: GasPipeTJunction - components: - - pos: 5.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3827 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3828 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3829 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3830 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3831 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3832 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3833 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3834 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3835 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3836 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3837 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -12.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3838 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3839 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3840 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3841 - type: Catwalk - components: - - pos: -8.5,-13.5 - parent: 1 - type: Transform -- uid: 3842 - type: GasPipeBend - components: - - pos: 11.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3843 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3844 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3845 - type: GasPipeTJunction - components: - - pos: 5.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3846 - type: GasPipeFourway - components: - - pos: -5.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3847 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3848 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3849 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3850 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3851 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -11.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3852 - type: GasPipeStraight - components: - - pos: -3.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3853 - type: GasPipeStraight - components: - - pos: -3.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3854 - type: GasPipeStraight - components: - - pos: -3.5,-36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3855 - type: GasPipeStraight - components: - - pos: -3.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3856 - type: GasPipeStraight - components: - - pos: -3.5,-38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3857 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3858 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3859 - type: GasPipeTJunction - components: - - pos: 24.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3860 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3861 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3862 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3863 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3864 - type: GasPipeTJunction - components: - - pos: 20.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3865 - type: FireAlarm - components: - - pos: 30.5,-40.5 - parent: 1 - type: Transform - - devices: - - 11527 - - 11526 - - 11525 - - 6370 - - 1290 - - 3040 - - 21555 - - 6992 - - 2449 - - invalid - - 2447 - - 6076 - - 6100 - - 6484 - - 10701 - - 5239 - - 5489 - - 6424 - - 2813 - - 6302 - - 8548 - - 7499 - - 28069 - type: DeviceList -- uid: 3866 - type: CarpetOrange - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-6.5 - parent: 1 - type: Transform -- uid: 3867 - type: CarpetOrange - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-7.5 - parent: 1 - type: Transform -- uid: 3868 - type: CarpetOrange - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 1 - type: Transform -- uid: 3869 - type: CarpetOrange - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-8.5 - parent: 1 - type: Transform -- uid: 3870 - type: CarpetOrange - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-8.5 - parent: 1 - type: Transform -- uid: 3871 - type: CarpetOrange - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-8.5 - parent: 1 - type: Transform -- uid: 3872 - type: CarpetOrange - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-7.5 - parent: 1 - type: Transform -- uid: 3873 - type: CarpetOrange - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-5.5 - parent: 1 - type: Transform -- uid: 3874 - type: CarpetOrange - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 1 - type: Transform -- uid: 3875 - type: CarpetOrange - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-6.5 - parent: 1 - type: Transform -- uid: 3876 - type: CarpetOrange - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 1 - type: Transform -- uid: 3877 - type: CarpetOrange - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-7.5 - parent: 1 - type: Transform -- uid: 3878 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-10.5 - parent: 1 - type: Transform -- uid: 3879 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-10.5 - parent: 1 - type: Transform -- uid: 3880 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-12.5 - parent: 1 - type: Transform -- uid: 3881 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-12.5 - parent: 1 - type: Transform -- uid: 3882 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-11.5 - parent: 1 - type: Transform -- uid: 3883 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-11.5 - parent: 1 - type: Transform -- uid: 3884 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-11.5 - parent: 1 - type: Transform -- uid: 3885 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-11.5 - parent: 1 - type: Transform -- uid: 3886 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-10.5 - parent: 1 - type: Transform -- uid: 3887 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-10.5 - parent: 1 - type: Transform -- uid: 3888 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-12.5 - parent: 1 - type: Transform -- uid: 3889 - type: CableApcExtension - components: - - pos: 23.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3890 - type: CableApcExtension - components: - - pos: 25.5,-11.5 - parent: 1 - type: Transform -- uid: 3891 - type: CableApcExtension - components: - - pos: 25.5,-10.5 - parent: 1 - type: Transform -- uid: 3892 - type: CableApcExtension - components: - - pos: 25.5,-9.5 - parent: 1 - type: Transform -- uid: 3893 - type: CableApcExtension - components: - - pos: 21.5,-6.5 - parent: 1 - type: Transform -- uid: 3894 - type: CableApcExtension - components: - - pos: 20.5,-6.5 - parent: 1 - type: Transform -- uid: 3895 - type: CableApcExtension - components: - - pos: 26.5,-6.5 - parent: 1 - type: Transform -- uid: 3896 - type: CableApcExtension - components: - - pos: 27.5,-6.5 - parent: 1 - type: Transform -- uid: 3897 - type: CableApcExtension - components: - - pos: 28.5,-6.5 - parent: 1 - type: Transform -- uid: 3898 - type: CableHV - components: - - pos: 2.5,-91.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3899 - type: CableApcExtension - components: - - pos: 29.5,-6.5 - parent: 1 - type: Transform -- uid: 3900 - type: CableApcExtension - components: - - pos: 30.5,-6.5 - parent: 1 - type: Transform -- uid: 3901 - type: CableApcExtension - components: - - pos: 30.5,-5.5 - parent: 1 - type: Transform -- uid: 3902 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3903 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 3904 - type: AirSensor - components: - - pos: -12.5,-49.5 - parent: 1 - type: Transform -- uid: 3905 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 3906 - type: WallReinforced - components: - - pos: 27.5,-29.5 - parent: 1 - type: Transform -- uid: 3907 - type: AirSensor - components: - - pos: -5.5,-47.5 - parent: 1 - type: Transform -- uid: 3908 - type: AirSensor - components: - - pos: 2.5,-42.5 - parent: 1 - type: Transform -- uid: 3909 - type: CarpetPink - components: - - pos: 21.5,-29.5 - parent: 1 - type: Transform -- uid: 3910 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,-40.5 - parent: 1 - type: Transform -- uid: 3911 - type: CableApcExtension - components: - - pos: 29.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3912 - type: PottedPlant3 - components: - - pos: 14.5,-16.5 - parent: 1 - type: Transform -- uid: 3913 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 3.141592653589793 rad - pos: 18.5,-12.5 - parent: 1 - type: Transform -- uid: 3914 - type: TableWood - components: - - pos: 21.5,-12.5 - parent: 1 - type: Transform -- uid: 3915 - type: WallSolid - components: - - pos: 17.5,-30.5 - parent: 1 - type: Transform -- uid: 3916 - type: SignVirology - components: - - pos: -18.5,-62.5 - parent: 1 - type: Transform -- uid: 3917 - type: SignMorgue - components: - - pos: -15.5,-68.5 - parent: 1 - type: Transform -- uid: 3918 - type: TableWood - components: - - pos: 22.5,-14.5 - parent: 1 - type: Transform -- uid: 3919 - type: BoxForensicPad - components: - - pos: 22.673187,-14.497248 - parent: 1 - type: Transform -- uid: 3920 - type: ForensicScanner - components: - - rot: -1.5707963267948966 rad - pos: 22.266937,-14.419123 - parent: 1 - type: Transform -- uid: 3921 - type: RandomFoodSingle - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform -- uid: 3922 - type: WallReinforced - components: - - pos: 9.5,12.5 - parent: 1 - type: Transform -- uid: 3923 - type: WallReinforced - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform -- uid: 3924 - type: Table - components: - - pos: 8.5,13.5 - parent: 1 - type: Transform -- uid: 3925 - type: Table - components: - - pos: 7.5,12.5 - parent: 1 - type: Transform -- uid: 3926 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 7.5,13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3927 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 7.5,14.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3928 - type: DiceBag - components: - - pos: 10.645734,-7.4315987 - parent: 1 - type: Transform -- uid: 3929 - type: FigureSpawner - components: - - pos: 10.5,-6.5 - parent: 1 - type: Transform -- uid: 3930 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 1 - type: Transform -- uid: 3931 - type: BookGnominomicon - components: - - pos: 8.605781,-12.4316845 - parent: 1 - type: Transform -- uid: 3932 - type: CableApcExtension - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3933 - type: CableApcExtension - components: - - pos: 8.5,-2.5 - parent: 1 - type: Transform -- uid: 3934 - type: CableApcExtension - components: - - pos: 8.5,-1.5 - parent: 1 - type: Transform -- uid: 3935 - type: CableApcExtension - components: - - pos: 7.5,-1.5 - parent: 1 - type: Transform -- uid: 3936 - type: CableApcExtension - components: - - pos: 6.5,-1.5 - parent: 1 - type: Transform -- uid: 3937 - type: CableApcExtension - components: - - pos: 5.5,-1.5 - parent: 1 - type: Transform -- uid: 3938 - type: CableApcExtension - components: - - pos: 4.5,-1.5 - parent: 1 - type: Transform -- uid: 3939 - type: CableApcExtension - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform -- uid: 3940 - type: CableApcExtension - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform -- uid: 3941 - type: CableApcExtension - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform -- uid: 3942 - type: CableApcExtension - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform -- uid: 3943 - type: CableApcExtension - components: - - pos: -0.5,2.5 - parent: 1 - type: Transform -- uid: 3944 - type: CableApcExtension - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform -- uid: 3945 - type: CableApcExtension - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform -- uid: 3946 - type: CableApcExtension - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform -- uid: 3947 - type: DisposalTrunk - components: - - pos: 6.5,5.5 - parent: 1 - type: Transform -- uid: 3948 - type: CableApcExtension - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform -- uid: 3949 - type: CableApcExtension - components: - - pos: 5.5,2.5 - parent: 1 - type: Transform -- uid: 3950 - type: CableApcExtension - components: - - pos: 6.5,2.5 - parent: 1 - type: Transform -- uid: 3951 - type: CableApcExtension - components: - - pos: 7.5,2.5 - parent: 1 - type: Transform -- uid: 3952 - type: CableApcExtension - components: - - pos: 11.5,-0.5 - parent: 1 - type: Transform -- uid: 3953 - type: StoolBar - components: - - name: stool - type: MetaData - - pos: 1.5,-1.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3954 - type: StoolBar - components: - - name: stool - type: MetaData - - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3955 - type: StoolBar - components: - - name: stool - type: MetaData - - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 3956 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 1 - type: Transform -- uid: 3957 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 2.5,1.5 - parent: 1 - type: Transform -- uid: 3958 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 1.5,0.5 - parent: 1 - type: Transform -- uid: 3959 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 3.5,0.5 - parent: 1 - type: Transform -- uid: 3960 - type: PaintingTheKiss - components: - - pos: 27.5,-33.5 - parent: 1 - type: Transform -- uid: 3961 - type: WallReinforced - components: - - pos: 25.5,-33.5 - parent: 1 - type: Transform -- uid: 3962 - type: CableHV - components: - - pos: 11.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3963 - type: CableHV - components: - - pos: 9.5,-45.5 - parent: 1 - type: Transform -- uid: 3964 - type: CableHV - components: - - pos: 8.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3965 - type: CableHV - components: - - pos: 13.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3966 - type: CableHV - components: - - pos: 11.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3967 - type: CableHV - components: - - pos: 8.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3968 - type: SubstationBasic - components: - - pos: 8.5,-47.5 - parent: 1 - type: Transform -- uid: 3969 - type: CableMV - components: - - pos: 3.5,-51.5 - parent: 1 - type: Transform -- uid: 3970 - type: CableMV - components: - - pos: 3.5,-53.5 - parent: 1 - type: Transform -- uid: 3971 - type: CableMV - components: - - pos: 1.5,-53.5 - parent: 1 - type: Transform -- uid: 3972 - type: CableMV - components: - - pos: 0.5,-53.5 - parent: 1 - type: Transform -- uid: 3973 - type: CableApcExtension - components: - - pos: -2.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3974 - type: RevolverCapGun - components: - - pos: 48.521713,-29.492037 - parent: 1 - type: Transform -- uid: 3975 - type: ClosetEmergencyFilledRandom - components: - - pos: -5.5,-68.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 3976 - type: CableApcExtension - components: - - pos: -1.5,-49.5 - parent: 1 - type: Transform -- uid: 3977 - type: CableApcExtension - components: - - pos: -0.5,-48.5 - parent: 1 - type: Transform -- uid: 3978 - type: CableApcExtension - components: - - pos: 2.5,-48.5 - parent: 1 - type: Transform -- uid: 3979 - type: CableApcExtension - components: - - pos: 4.5,-48.5 - parent: 1 - type: Transform -- uid: 3980 - type: CableHV - components: - - pos: 7.5,-92.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3981 - type: CableApcExtension - components: - - pos: -1.5,-47.5 - parent: 1 - type: Transform -- uid: 3982 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 48.5,-28.5 - parent: 1 - type: Transform -- uid: 3983 - type: CableApcExtension - components: - - pos: -6.5,-47.5 - parent: 1 - type: Transform -- uid: 3984 - type: CableApcExtension - components: - - pos: -3.5,-54.5 - parent: 1 - type: Transform -- uid: 3985 - type: CableApcExtension - components: - - pos: -5.5,-54.5 - parent: 1 - type: Transform -- uid: 3986 - type: CableApcExtension - components: - - pos: -6.5,-54.5 - parent: 1 - type: Transform -- uid: 3987 - type: CableApcExtension - components: - - pos: -8.5,-54.5 - parent: 1 - type: Transform -- uid: 3988 - type: AirlockMaintLocked - components: - - pos: 15.5,-15.5 - parent: 1 - type: Transform -- uid: 3989 - type: CableApcExtension - components: - - pos: -10.5,-54.5 - parent: 1 - type: Transform -- uid: 3990 - type: CableApcExtension - components: - - pos: -11.5,-54.5 - parent: 1 - type: Transform -- uid: 3991 - type: CableApcExtension - components: - - pos: 3.5,-54.5 - parent: 1 - type: Transform -- uid: 3992 - type: CableApcExtension - components: - - pos: 5.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3993 - type: CableApcExtension - components: - - pos: 5.5,-57.5 - parent: 1 - type: Transform -- uid: 3994 - type: CableApcExtension - components: - - pos: 5.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 3995 - type: CableApcExtension - components: - - pos: 5.5,-59.5 - parent: 1 - type: Transform -- uid: 3996 - type: CableApcExtension - components: - - pos: 6.5,-60.5 - parent: 1 - type: Transform -- uid: 3997 - type: CableApcExtension - components: - - pos: 7.5,-60.5 - parent: 1 - type: Transform -- uid: 3998 - type: CableApcExtension - components: - - pos: 4.5,-60.5 - parent: 1 - type: Transform -- uid: 3999 - type: CableApcExtension - components: - - pos: 1.5,-60.5 - parent: 1 - type: Transform -- uid: 4000 - type: CableApcExtension - components: - - pos: 0.5,-60.5 - parent: 1 - type: Transform -- uid: 4001 - type: CableApcExtension - components: - - pos: -1.5,-61.5 - parent: 1 - type: Transform -- uid: 4002 - type: CableApcExtension - components: - - pos: -1.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4003 - type: CableApcExtension - components: - - pos: -1.5,-64.5 - parent: 1 - type: Transform -- uid: 4004 - type: CableApcExtension - components: - - pos: -7.5,-61.5 - parent: 1 - type: Transform -- uid: 4005 - type: CableApcExtension - components: - - pos: -6.5,-61.5 - parent: 1 - type: Transform -- uid: 4006 - type: WallReinforced - components: - - pos: 24.5,-31.5 - parent: 1 - type: Transform -- uid: 4007 - type: CableApcExtension - components: - - pos: -11.5,-75.5 - parent: 1 - type: Transform -- uid: 4008 - type: CableApcExtension - components: - - pos: -11.5,-61.5 - parent: 1 - type: Transform -- uid: 4009 - type: CableApcExtension - components: - - pos: -12.5,-61.5 - parent: 1 - type: Transform -- uid: 4010 - type: CableApcExtension - components: - - pos: -13.5,-61.5 - parent: 1 - type: Transform -- uid: 4011 - type: CableApcExtension - components: - - pos: -13.5,-63.5 - parent: 1 - type: Transform -- uid: 4012 - type: CableApcExtension - components: - - pos: -13.5,-65.5 - parent: 1 - type: Transform -- uid: 4013 - type: CableApcExtension - components: - - pos: -13.5,-66.5 - parent: 1 - type: Transform -- uid: 4014 - type: CableApcExtension - components: - - pos: -15.5,-64.5 - parent: 1 - type: Transform -- uid: 4015 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-45.5 - parent: 1 - type: Transform -- uid: 4016 - type: WallSolid - components: - - pos: -21.5,-63.5 - parent: 1 - type: Transform -- uid: 4017 - type: WallSolid - components: - - pos: -21.5,-65.5 - parent: 1 - type: Transform -- uid: 4018 - type: WallSolid - components: - - pos: -26.5,-68.5 - parent: 1 - type: Transform -- uid: 4019 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-70.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4020 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 4021 - type: WallSolid - components: - - pos: -26.5,-74.5 - parent: 1 - type: Transform -- uid: 4022 - type: WallSolid - components: - - pos: -25.5,-74.5 - parent: 1 - type: Transform -- uid: 4023 - type: WallSolid - components: - - pos: -15.5,-70.5 - parent: 1 - type: Transform -- uid: 4024 - type: WallSolid - components: - - pos: -16.5,-70.5 - parent: 1 - type: Transform -- uid: 4025 - type: ReinforcedWindow - components: - - pos: 27.5,22.5 - parent: 1 - type: Transform -- uid: 4026 - type: AirlockMaintMedLocked - components: - - rot: 3.141592653589793 rad - pos: -16.5,-72.5 - parent: 1 - type: Transform -- uid: 4027 - type: WallSolid - components: - - pos: -16.5,-73.5 - parent: 1 - type: Transform -- uid: 4028 - type: FlashlightLantern - components: - - pos: 11.541302,-66.381775 - parent: 1 - type: Transform -- uid: 4029 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4030 - type: WallSolid - components: - - pos: -21.5,-76.5 - parent: 1 - type: Transform -- uid: 4031 - type: ShuttersNormalOpen - components: - - pos: -0.5,-2.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -36716.934 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 29230 - Close: - - port: Off - uid: 29230 - Toggle: [] - type: SignalReceiver -- uid: 4032 - type: CableHV - components: - - pos: -3.5,-75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4033 - type: WallSolid - components: - - pos: -6.5,-72.5 - parent: 1 - type: Transform -- uid: 4034 - type: WallSolid - components: - - pos: 36.5,-49.5 - parent: 1 - type: Transform -- uid: 4035 - type: FirelockGlass - components: - - pos: -46.5,27.5 - parent: 1 - type: Transform -- uid: 4036 - type: WallSolid - components: - - pos: -7.5,-72.5 - parent: 1 - type: Transform -- uid: 4037 - type: CableHV - components: - - pos: 20.5,-42.5 - parent: 1 - type: Transform -- uid: 4038 - type: WallSolid - components: - - pos: -10.5,-72.5 - parent: 1 - type: Transform -- uid: 4039 - type: WallSolid - components: - - pos: -10.5,-73.5 - parent: 1 - type: Transform -- uid: 4040 - type: WallSolid - components: - - pos: -9.5,-73.5 - parent: 1 - type: Transform -- uid: 4041 - type: WallSolid - components: - - pos: -7.5,-73.5 - parent: 1 - type: Transform -- uid: 4042 - type: WallSolid - components: - - pos: 3.5,-70.5 - parent: 1 - type: Transform -- uid: 4043 - type: WallSolid - components: - - pos: 3.5,-68.5 - parent: 1 - type: Transform -- uid: 4044 - type: WallSolid - components: - - pos: 4.5,-68.5 - parent: 1 - type: Transform -- uid: 4045 - type: WallSolid - components: - - pos: 5.5,-68.5 - parent: 1 - type: Transform -- uid: 4046 - type: WallSolid - components: - - pos: 7.5,-67.5 - parent: 1 - type: Transform -- uid: 4047 - type: WallSolid - components: - - pos: 8.5,-66.5 - parent: 1 - type: Transform -- uid: 4048 - type: WallReinforced - components: - - pos: -17.5,-80.5 - parent: 1 - type: Transform -- uid: 4049 - type: WallReinforced - components: - - pos: -15.5,-80.5 - parent: 1 - type: Transform -- uid: 4050 - type: WallSolid - components: - - pos: -21.5,-74.5 - parent: 1 - type: Transform -- uid: 4051 - type: WallReinforced - components: - - pos: -14.5,-74.5 - parent: 1 - type: Transform -- uid: 4052 - type: WallSolid - components: - - pos: -13.5,-69.5 - parent: 1 - type: Transform -- uid: 4053 - type: Railing - components: - - pos: 22.5,-1.5 - parent: 1 - type: Transform -- uid: 4054 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 31.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4055 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -17.5,-78.5 - parent: 1 - type: Transform -- uid: 4056 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-76.5 - parent: 1 - type: Transform -- uid: 4057 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-79.5 - parent: 1 - type: Transform -- uid: 4058 - type: TableCounterMetal - components: - - pos: -16.5,-77.5 - parent: 1 - type: Transform -- uid: 4059 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-78.5 - parent: 1 - type: Transform -- uid: 4060 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-81.5 - parent: 1 - type: Transform -- uid: 4061 - type: GasPipeStraight - components: - - pos: 35.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4062 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-81.5 - parent: 1 - type: Transform -- uid: 4063 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-82.5 - parent: 1 - type: Transform -- uid: 4064 - type: WallSolid - components: - - pos: -21.5,-82.5 - parent: 1 - type: Transform -- uid: 4065 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-81.5 - parent: 1 - type: Transform -- uid: 4066 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-81.5 - parent: 1 - type: Transform -- uid: 4067 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-81.5 - parent: 1 - type: Transform -- uid: 4068 - type: WallReinforced - components: - - pos: -27.5,-86.5 - parent: 1 - type: Transform -- uid: 4069 - type: WallSolid - components: - - pos: -21.5,-83.5 - parent: 1 - type: Transform -- uid: 4070 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-83.5 - parent: 1 - type: Transform -- uid: 4071 - type: WallReinforced - components: - - pos: -22.5,-91.5 - parent: 1 - type: Transform -- uid: 4072 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-78.5 - parent: 1 - type: Transform -- uid: 4073 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -26.5,-88.5 - parent: 1 - type: Transform -- uid: 4074 - type: AirlockVirologyGlass - components: - - name: virology testing - type: MetaData - - rot: -1.5707963267948966 rad - pos: -20.5,-83.5 - parent: 1 - type: Transform -- uid: 4075 - type: AirlockVirologyGlassLocked - components: - - name: virology testing - type: MetaData - - rot: -1.5707963267948966 rad - pos: -22.5,-81.5 - parent: 1 - type: Transform -- uid: 4076 - type: Vaccinator - components: - - pos: -22.5,-77.5 - parent: 1 - type: Transform -- uid: 4077 - type: Vaccinator - components: - - pos: -20.5,-76.5 - parent: 1 - type: Transform -- uid: 4078 - type: DiseaseDiagnoser - components: - - pos: -22.5,-75.5 - parent: 1 - type: Transform -- uid: 4079 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 35.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4080 - type: ReinforcedPlasmaWindow - components: - - rot: 3.141592653589793 rad - pos: 25.5,-20.5 - parent: 1 - type: Transform -- uid: 4081 - type: WallSolid - components: - - pos: 10.5,-13.5 - parent: 1 - type: Transform -- uid: 4082 - type: Table - components: - - pos: -22.5,-78.5 - parent: 1 - type: Transform -- uid: 4083 - type: SignBiohazardMed - components: - - pos: -23.5,-74.5 - parent: 1 - type: Transform -- uid: 4084 - type: BoxSyringe - components: - - pos: -22.337778,-78.539825 - parent: 1 - type: Transform -- uid: 4085 - type: Table - components: - - pos: -20.5,-78.5 - parent: 1 - type: Transform -- uid: 4086 - type: RollerBed - components: - - pos: -29.534147,-77.30682 - parent: 1 - type: Transform -- uid: 4087 - type: TableReinforcedGlass - components: - - pos: -30.5,-77.5 - parent: 1 - type: Transform -- uid: 4088 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-66.5 - parent: 1 - type: Transform -- uid: 4089 - type: BoxFolderWhite - components: - - rot: -1.5707963267948966 rad - pos: -22.629791,-70.464714 - parent: 1 - type: Transform -- uid: 4090 - type: ChairOfficeLight - components: - - pos: -23.5,-70.5 - parent: 1 - type: Transform -- uid: 4091 - type: PlushieNuke - components: - - pos: -14.485033,-78.68338 - parent: 1 - type: Transform -- uid: 4092 - type: LargeBeaker - components: - - pos: -25.403534,-78.32023 - parent: 1 - type: Transform -- uid: 4093 - type: LargeBeaker - components: - - pos: -25.716034,-78.71085 - parent: 1 - type: Transform -- uid: 4094 - type: Syringe - components: - - pos: -25.497284,-79.35806 - parent: 1 - type: Transform -- uid: 4095 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-43.5 - parent: 1 - type: Transform -- uid: 4096 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-43.5 - parent: 1 - type: Transform -- uid: 4097 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-43.5 - parent: 1 - type: Transform -- uid: 4098 - type: DisposalYJunction - components: - - rot: 3.141592653589793 rad - pos: -4.5,-43.5 - parent: 1 - type: Transform -- uid: 4099 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-43.5 - parent: 1 - type: Transform -- uid: 4100 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-43.5 - parent: 1 - type: Transform -- uid: 4101 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-43.5 - parent: 1 - type: Transform -- uid: 4102 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-43.5 - parent: 1 - type: Transform -- uid: 4103 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-43.5 - parent: 1 - type: Transform -- uid: 4104 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-43.5 - parent: 1 - type: Transform -- uid: 4105 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-43.5 - parent: 1 - type: Transform -- uid: 4106 - type: DisposalPipe - components: - - pos: -13.5,-44.5 - parent: 1 - type: Transform -- uid: 4107 - type: DisposalPipe - components: - - pos: -13.5,-46.5 - parent: 1 - type: Transform -- uid: 4108 - type: DisposalPipe - components: - - pos: -13.5,-47.5 - parent: 1 - type: Transform -- uid: 4109 - type: DisposalPipe - components: - - pos: -13.5,-48.5 - parent: 1 - type: Transform -- uid: 4110 - type: DisposalPipe - components: - - pos: -13.5,-49.5 - parent: 1 - type: Transform -- uid: 4111 - type: DisposalPipe - components: - - pos: -13.5,-50.5 - parent: 1 - type: Transform -- uid: 4112 - type: DisposalPipe - components: - - pos: -13.5,-51.5 - parent: 1 - type: Transform -- uid: 4113 - type: DisposalPipe - components: - - pos: -13.5,-52.5 - parent: 1 - type: Transform -- uid: 4114 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-53.5 - parent: 1 - type: Transform -- uid: 4115 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-53.5 - parent: 1 - type: Transform -- uid: 4116 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-54.5 - parent: 1 - type: Transform -- uid: 4117 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-54.5 - parent: 1 - type: Transform -- uid: 4118 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-54.5 - parent: 1 - type: Transform -- uid: 4119 - type: DisposalPipe - components: - - pos: -17.5,-56.5 - parent: 1 - type: Transform -- uid: 4120 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: -17.5,-57.5 - parent: 1 - type: Transform -- uid: 4121 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-58.5 - parent: 1 - type: Transform -- uid: 4122 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,-59.5 - parent: 1 - type: Transform -- uid: 4123 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-57.5 - parent: 1 - type: Transform -- uid: 4124 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-57.5 - parent: 1 - type: Transform -- uid: 4125 - type: DisposalUnit - components: - - pos: -20.5,-57.5 - parent: 1 - type: Transform -- uid: 4126 - type: DisposalPipe - components: - - pos: -19.5,-69.5 - parent: 1 - type: Transform -- uid: 4127 - type: DisposalPipe - components: - - pos: -19.5,-70.5 - parent: 1 - type: Transform -- uid: 4128 - type: DisposalPipe - components: - - pos: -19.5,-71.5 - parent: 1 - type: Transform -- uid: 4129 - type: DisposalPipe - components: - - pos: -19.5,-72.5 - parent: 1 - type: Transform -- uid: 4130 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-73.5 - parent: 1 - type: Transform -- uid: 4131 - type: DisposalUnit - components: - - pos: -17.5,-73.5 - parent: 1 - type: Transform -- uid: 4132 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-73.5 - parent: 1 - type: Transform -- uid: 4133 - type: CableApcExtension - components: - - pos: -21.5,-68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4134 - type: CableApcExtension - components: - - pos: -21.5,-69.5 - parent: 1 - type: Transform -- uid: 4135 - type: CableApcExtension - components: - - pos: -21.5,-70.5 - parent: 1 - type: Transform -- uid: 4136 - type: CableApcExtension - components: - - pos: -20.5,-70.5 - parent: 1 - type: Transform -- uid: 4137 - type: CableApcExtension - components: - - pos: -19.5,-70.5 - parent: 1 - type: Transform -- uid: 4138 - type: CableApcExtension - components: - - pos: -19.5,-69.5 - parent: 1 - type: Transform -- uid: 4139 - type: CableApcExtension - components: - - pos: -19.5,-68.5 - parent: 1 - type: Transform -- uid: 4140 - type: CableApcExtension - components: - - pos: -19.5,-72.5 - parent: 1 - type: Transform -- uid: 4141 - type: CableApcExtension - components: - - pos: -19.5,-73.5 - parent: 1 - type: Transform -- uid: 4142 - type: CableApcExtension - components: - - pos: -18.5,-74.5 - parent: 1 - type: Transform -- uid: 4143 - type: CableApcExtension - components: - - pos: -18.5,-76.5 - parent: 1 - type: Transform -- uid: 4144 - type: CableApcExtension - components: - - pos: -18.5,-77.5 - parent: 1 - type: Transform -- uid: 4145 - type: CableApcExtension - components: - - pos: -17.5,-77.5 - parent: 1 - type: Transform -- uid: 4146 - type: CableApcExtension - components: - - pos: -19.5,-77.5 - parent: 1 - type: Transform -- uid: 4147 - type: WallReinforced - components: - - pos: 57.5,-50.5 - parent: 1 - type: Transform -- uid: 4148 - type: ReinforcedWindow - components: - - pos: -27.5,-89.5 - parent: 1 - type: Transform -- uid: 4149 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -20.5,-85.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4150 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4151 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4152 - type: GasPipeFourway - components: - - pos: -33.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4153 - type: ClothingHeadHelmetCosmonaut - components: - - pos: -31.517996,-64.46434 - parent: 1 - type: Transform -- uid: 4154 - type: CableApcExtension - components: - - pos: -20.5,-85.5 - parent: 1 - type: Transform -- uid: 4155 - type: MedkitFilled - components: - - pos: 18.506996,-21.230959 - parent: 1 - type: Transform -- uid: 4156 - type: SpawnMobWalter - components: - - pos: -0.5,-53.5 - parent: 1 - type: Transform -- uid: 4157 - type: RailingCorner - components: - - pos: -39.5,-84.5 - parent: 1 - type: Transform -- uid: 4158 - type: ReinforcedWindow - components: - - pos: -48.5,-81.5 - parent: 1 - type: Transform -- uid: 4159 - type: ReinforcedWindow - components: - - pos: -48.5,-82.5 - parent: 1 - type: Transform -- uid: 4160 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-73.5 - parent: 1 - type: Transform -- uid: 4161 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-73.5 - parent: 1 - type: Transform -- uid: 4162 - type: DisposalPipe - components: - - pos: -23.5,-82.5 - parent: 1 - type: Transform -- uid: 4163 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-53.5 - parent: 1 - type: Transform -- uid: 4164 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-53.5 - parent: 1 - type: Transform -- uid: 4165 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-53.5 - parent: 1 - type: Transform -- uid: 4166 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4167 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4168 - type: ReinforcedWindow - components: - - pos: 21.5,-15.5 - parent: 1 - type: Transform -- uid: 4169 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-80.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4170 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-74.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4171 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-77.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4172 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4173 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4174 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4175 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4176 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-80.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4177 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -23.5,-88.5 - parent: 1 - type: Transform -- uid: 4178 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -21.5,-88.5 - parent: 1 - type: Transform -- uid: 4179 - type: WindoorMedicalLocked - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-77.5 - parent: 1 - type: Transform -- uid: 4180 - type: ClosetEmergencyFilledRandom - components: - - pos: 38.5,-32.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4181 - type: CableApcExtension - components: - - pos: -25.5,-87.5 - parent: 1 - type: Transform -- uid: 4182 - type: CableApcExtension - components: - - pos: -25.5,-88.5 - parent: 1 - type: Transform -- uid: 4183 - type: BoxShotgunSlug - components: - - pos: 27.073633,32.655933 - parent: 1 - type: Transform -- uid: 4184 - type: WeaponShotgunKammerer - components: - - pos: 26.643364,32.60906 - parent: 1 - type: Transform -- uid: 4185 - type: WeaponSubMachineGunWt550 - components: - - pos: 6.384364,22.636343 - parent: 1 - type: Transform -- uid: 4186 - type: MagazineMagnumSubMachineGunHighVelocity - components: - - pos: 29.960567,32.527683 - parent: 1 - type: Transform -- uid: 4187 - type: TableReinforced - components: - - pos: 31.5,29.5 - parent: 1 - type: Transform -- uid: 4188 - type: TableReinforced - components: - - pos: 32.5,29.5 - parent: 1 - type: Transform -- uid: 4189 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4190 - type: GasPipeStraight - components: - - pos: -24.5,-87.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4191 - type: CableMV - components: - - pos: -20.5,-69.5 - parent: 1 - type: Transform -- uid: 4192 - type: CableMV - components: - - pos: -21.5,-68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4193 - type: CableHV - components: - - pos: -65.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4194 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4195 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4196 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4197 - type: WallReinforced - components: - - pos: -51.5,-52.5 - parent: 1 - type: Transform -- uid: 4198 - type: Chair - components: - - pos: -4.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4199 - type: Chair - components: - - pos: -3.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4200 - type: DrinkIceCreamGlass - components: - - pos: 0.5,-2.5 - parent: 1 - type: Transform -- uid: 4201 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-58.5 - parent: 1 - type: Transform -- uid: 4202 - type: WallSolid - components: - - pos: -10.5,-63.5 - parent: 1 - type: Transform -- uid: 4203 - type: WallSolid - components: - - pos: -10.5,-65.5 - parent: 1 - type: Transform -- uid: 4204 - type: SignMorgue - components: - - pos: -12.5,-62.5 - parent: 1 - type: Transform -- uid: 4205 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-66.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 7.458366 - - 28.057667 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4206 - type: GasPipeStraight - components: - - pos: -3.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4207 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-65.5 - parent: 1 - type: Transform -- uid: 4208 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-66.5 - parent: 1 - type: Transform -- uid: 4209 - type: WallSolid - components: - - pos: 40.5,-52.5 - parent: 1 - type: Transform -- uid: 4210 - type: Window - components: - - pos: -12.5,-55.5 - parent: 1 - type: Transform -- uid: 4211 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-64.5 - parent: 1 - type: Transform -- uid: 4212 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-63.5 - parent: 1 - type: Transform -- uid: 4213 - type: Window - components: - - pos: -6.5,-36.5 - parent: 1 - type: Transform -- uid: 4214 - type: WallSolid - components: - - pos: -6.5,-35.5 - parent: 1 - type: Transform -- uid: 4215 - type: CableHV - components: - - pos: -24.5,-13.5 - parent: 1 - type: Transform -- uid: 4216 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 36.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4217 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 34.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4218 - type: GasPipeStraight - components: - - pos: 35.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4219 - type: GasPipeBend - components: - - pos: 36.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4220 - type: DisposalUnit - components: - - pos: 12.5,-3.5 - parent: 1 - type: Transform -- uid: 4221 - type: GasVentScrubber - components: - - pos: 17.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4222 - type: GasPipeStraight - components: - - pos: 17.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4223 - type: GasPipeStraight - components: - - pos: 17.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4224 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4225 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4226 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 21.5,-20.5 - parent: 1 - type: Transform -- uid: 4227 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 31.5,-6.5 - parent: 1 - type: Transform -- uid: 4228 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4229 - type: WallReinforced - components: - - pos: 29.5,-26.5 - parent: 1 - type: Transform -- uid: 4230 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4231 - type: GasVentScrubber - components: - - pos: 33.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4232 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 33.5,-21.5 - parent: 1 - type: Transform -- uid: 4233 - type: WindowReinforcedDirectional - components: - - pos: 26.5,-23.5 - parent: 1 - type: Transform -- uid: 4234 - type: AirlockCommandGlassLocked - components: - - pos: 17.5,-24.5 - parent: 1 - type: Transform -- uid: 4235 - type: Dresser - components: - - pos: 32.5,-27.5 - parent: 1 - type: Transform -- uid: 4236 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 33.5,-27.5 - parent: 1 - type: Transform -- uid: 4237 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 13.5,-18.5 - parent: 1 - type: Transform -- uid: 4238 - type: AirlockGlass - components: - - name: lawyer office - type: MetaData - - rot: 3.141592653589793 rad - pos: 38.5,-0.5 - parent: 1 - type: Transform -- uid: 4239 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 41.5,17.5 - parent: 1 - type: Transform -- uid: 4240 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 43.5,17.5 - parent: 1 - type: Transform -- uid: 4241 - type: CableApcExtension - components: - - pos: 22.5,-1.5 - parent: 1 - type: Transform -- uid: 4242 - type: WallSolid - components: - - pos: -13.5,-32.5 - parent: 1 - type: Transform -- uid: 4243 - type: WallSolid - components: - - pos: -25.5,-7.5 - parent: 1 - type: Transform -- uid: 4244 - type: Window - components: - - pos: -25.5,9.5 - parent: 1 - type: Transform -- uid: 4245 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,-9.5 - parent: 1 - type: Transform -- uid: 4246 - type: WallSolid - components: - - pos: 12.5,-13.5 - parent: 1 - type: Transform -- uid: 4247 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4248 - type: WindoorBarLocked - components: - - pos: 17.5,15.5 - parent: 1 - type: Transform -- uid: 4249 - type: DisposalPipe - components: - - pos: 18.5,-4.5 - parent: 1 - type: Transform -- uid: 4250 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -24.5,-88.5 - parent: 1 - type: Transform -- uid: 4251 - type: CableApcExtension - components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform -- uid: 4252 - type: ReinforcedWindow - components: - - pos: -22.5,-3.5 - parent: 1 - type: Transform -- uid: 4253 - type: ReinforcedWindow - components: - - pos: -16.5,-3.5 - parent: 1 - type: Transform -- uid: 4254 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4255 - type: LockerEvidence - components: - - pos: 37.5,12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4256 - type: FirelockGlass - components: - - pos: 35.5,2.5 - parent: 1 - type: Transform -- uid: 4257 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 27.5,12.5 - parent: 1 - type: Transform -- uid: 4258 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 27.5,13.5 - parent: 1 - type: Transform -- uid: 4259 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 27.5,11.5 - parent: 1 - type: Transform -- uid: 4260 - type: Firelock - components: - - rot: 1.5707963267948966 rad - pos: 24.5,14.5 - parent: 1 - type: Transform -- uid: 4261 - type: DisposalTrunk - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform -- uid: 4262 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,13.5 - parent: 1 - type: Transform -- uid: 4263 - type: WallReinforced - components: - - pos: 14.5,15.5 - parent: 1 - type: Transform -- uid: 4264 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-25.5 - parent: 1 - type: Transform -- uid: 4265 - type: ShuttersNormal - components: - - pos: -9.5,-24.5 - parent: 1 - type: Transform -- uid: 4266 - type: WallReinforced - components: - - pos: 9.5,15.5 - parent: 1 - type: Transform -- uid: 4267 - type: CableHV - components: - - pos: 2.5,-89.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4268 - type: CableHV - components: - - pos: -1.5,-84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4269 - type: CableHV - components: - - pos: -1.5,-85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4270 - type: CableHV - components: - - pos: 17.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4271 - type: CableHV - components: - - pos: 4.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4272 - type: Grille - components: - - pos: 4.5,-86.5 - parent: 1 - type: Transform -- uid: 4273 - type: ReinforcedWindow - components: - - pos: 9.5,13.5 - parent: 1 - type: Transform -- uid: 4274 - type: Grille - components: - - pos: 4.5,-83.5 - parent: 1 - type: Transform -- uid: 4275 - type: CableMV - components: - - pos: -9.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4276 - type: CableMV - components: - - pos: -3.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4277 - type: CableApcExtension - components: - - pos: -7.5,-75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4278 - type: DisposalPipe - components: - - pos: 30.5,-77.5 - parent: 1 - type: Transform -- uid: 4279 - type: AirlockEngineeringLocked - components: - - name: substation - type: MetaData - - pos: -11.5,-70.5 - parent: 1 - type: Transform -- uid: 4280 - type: WallReinforced - components: - - pos: 3.5,-72.5 - parent: 1 - type: Transform -- uid: 4281 - type: WallReinforced - components: - - pos: 9.5,-71.5 - parent: 1 - type: Transform -- uid: 4282 - type: WallSolid - components: - - pos: 10.5,-68.5 - parent: 1 - type: Transform -- uid: 4283 - type: ReinforcedWindow - components: - - pos: 5.5,-72.5 - parent: 1 - type: Transform -- uid: 4284 - type: SolarPanelBroken - components: - - pos: -4.5,-73.5 - parent: 1 - type: Transform -- uid: 4285 - type: FirelockGlass - components: - - pos: -23.5,-81.5 - parent: 1 - type: Transform -- uid: 4286 - type: ComputerTelevision - components: - - pos: -6.5,-48.5 - parent: 1 - type: Transform -- uid: 4287 - type: BoxFolderWhite - components: - - pos: -5.7449856,-48.471176 - parent: 1 - type: Transform -- uid: 4288 - type: Brutepack - components: - - pos: -6.3699856,-49.096176 - parent: 1 - type: Transform -- uid: 4289 - type: SpawnPointMedicalIntern - components: - - pos: -15.5,-38.5 - parent: 1 - type: Transform -- uid: 4290 - type: CarpetBlue - components: - - pos: -17.5,-56.5 - parent: 1 - type: Transform -- uid: 4291 - type: AirlockMaintHOPLocked - components: - - name: hop office - type: MetaData - - rot: 3.141592653589793 rad - pos: 22.5,-33.5 - parent: 1 - type: Transform -- uid: 4292 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,-39.5 - parent: 1 - type: Transform -- uid: 4293 - type: CableApcExtension - components: - - pos: 17.5,-32.5 - parent: 1 - type: Transform -- uid: 4294 - type: GasPipeStraight - components: - - pos: 23.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4295 - type: CableApcExtension - components: - - pos: -8.5,8.5 - parent: 1 - type: Transform -- uid: 4296 - type: CableApcExtension - components: - - pos: -8.5,10.5 - parent: 1 - type: Transform -- uid: 4297 - type: CableApcExtension - components: - - pos: -8.5,5.5 - parent: 1 - type: Transform -- uid: 4298 - type: CableApcExtension - components: - - pos: -3.5,9.5 - parent: 1 - type: Transform -- uid: 4299 - type: CableApcExtension - components: - - pos: 5.5,9.5 - parent: 1 - type: Transform -- uid: 4300 - type: CableApcExtension - components: - - pos: 9.5,-10.5 - parent: 1 - type: Transform -- uid: 4301 - type: CableApcExtension - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform -- uid: 4302 - type: CableApcExtension - components: - - pos: 1.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4303 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4304 - type: WallReinforced - components: - - pos: 28.5,-9.5 - parent: 1 - type: Transform -- uid: 4305 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -14.5,57.5 - parent: 1 - type: Transform -- uid: 4306 - type: IntercomSupply - components: - - rot: -1.5707963267948966 rad - pos: -29.5,24.5 - parent: 1 - type: Transform -- uid: 4307 - type: WallReinforced - components: - - pos: 31.5,20.5 - parent: 1 - type: Transform -- uid: 4308 - type: CableApcExtension - components: - - pos: 32.5,16.5 - parent: 1 - type: Transform -- uid: 4309 - type: WallReinforced - components: - - pos: 27.5,20.5 - parent: 1 - type: Transform -- uid: 4310 - type: AirlockBrigGlassLocked - components: - - pos: 19.5,16.5 - parent: 1 - type: Transform -- uid: 4311 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-47.5 - parent: 1 - type: Transform -- uid: 4312 - type: GasPipeStraight - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4313 - type: CableApcExtension - components: - - pos: 0.5,8.5 - parent: 1 - type: Transform -- uid: 4314 - type: CableHV - components: - - pos: 25.5,-11.5 - parent: 1 - type: Transform -- uid: 4315 - type: CableHV - components: - - pos: 25.5,-9.5 - parent: 1 - type: Transform -- uid: 4316 - type: CableHV - components: - - pos: 25.5,-8.5 - parent: 1 - type: Transform -- uid: 4317 - type: CableHV - components: - - pos: 25.5,-7.5 - parent: 1 - type: Transform -- uid: 4318 - type: Catwalk - components: - - pos: -6.5,-70.5 - parent: 1 - type: Transform -- uid: 4319 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4320 - type: CableApcExtension - components: - - pos: 0.5,-26.5 - parent: 1 - type: Transform -- uid: 4321 - type: CableApcExtension - components: - - pos: -0.5,-26.5 - parent: 1 - type: Transform -- uid: 4322 - type: CableApcExtension - components: - - pos: -8.5,2.5 - parent: 1 - type: Transform -- uid: 4323 - type: CableApcExtension - components: - - pos: 1.5,-26.5 - parent: 1 - type: Transform -- uid: 4324 - type: CableApcExtension - components: - - pos: 6.5,-26.5 - parent: 1 - type: Transform -- uid: 4325 - type: CableApcExtension - components: - - pos: 7.5,-26.5 - parent: 1 - type: Transform -- uid: 4326 - type: CableApcExtension - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform -- uid: 4327 - type: CableApcExtension - components: - - pos: 14.5,-26.5 - parent: 1 - type: Transform -- uid: 4328 - type: GasPipeStraight - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4329 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4330 - type: AtmosFixFreezerMarker - components: - - pos: 1.5,13.5 - parent: 1 - type: Transform -- uid: 4331 - type: AtmosFixFreezerMarker - components: - - pos: 1.5,14.5 - parent: 1 - type: Transform -- uid: 4332 - type: CableHV - components: - - pos: 9.5,-42.5 - parent: 1 - type: Transform -- uid: 4333 - type: CableHV - components: - - pos: 14.5,-42.5 - parent: 1 - type: Transform -- uid: 4334 - type: CableHV - components: - - pos: 11.5,-42.5 - parent: 1 - type: Transform -- uid: 4335 - type: DisposalPipe - components: - - pos: -4.5,-29.5 - parent: 1 - type: Transform -- uid: 4336 - type: Catwalk - components: - - pos: 11.5,-17.5 - parent: 1 - type: Transform -- uid: 4337 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 12.5,8.5 - parent: 1 - type: Transform -- uid: 4338 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: 12.5,7.5 - parent: 1 - type: Transform -- uid: 4339 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4340 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -3.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4341 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.503365,-39.44397 - parent: 1 - type: Transform -- uid: 4342 - type: Table - components: - - pos: 2.5,-4.5 - parent: 1 - type: Transform -- uid: 4343 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-11.5 - parent: 1 - type: Transform -- uid: 4344 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 16.5,-14.5 - parent: 1 - type: Transform -- uid: 4345 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 16.5,-29.5 - parent: 1 - type: Transform -- uid: 4346 - type: GasPipeStraight - components: - - pos: -3.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4347 - type: CableHV - components: - - pos: 4.5,-26.5 - parent: 1 - type: Transform -- uid: 4348 - type: CableApcExtension - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4349 - type: SignBridge - components: - - pos: 33.5,-26.5 - parent: 1 - type: Transform -- uid: 4350 - type: GasPipeStraight - components: - - pos: 7.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4351 - type: AirlockGlass - components: - - pos: -1.5,-50.5 - parent: 1 - type: Transform -- uid: 4352 - type: Window - components: - - pos: -3.5,-44.5 - parent: 1 - type: Transform -- uid: 4353 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-55.5 - parent: 1 - type: Transform -- uid: 4354 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-58.5 - parent: 1 - type: Transform -- uid: 4355 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -3.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4356 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4357 - type: WallSolid - components: - - pos: -5.5,9.5 - parent: 1 - type: Transform -- uid: 4358 - type: AirlockMaintHydroLocked - components: - - name: hydrophonics - type: MetaData - - rot: 1.5707963267948966 rad - pos: -9.5,12.5 - parent: 1 - type: Transform -- uid: 4359 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4360 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 30.5,12.5 - parent: 1 - type: Transform -- uid: 4361 - type: DisposalUnit - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform -- uid: 4362 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4363 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4364 - type: GasPipeBend - components: - - pos: 1.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4365 - type: GasPipeStraight - components: - - pos: 0.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4366 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4367 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4368 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 18.5,7.5 - parent: 1 - type: Transform -- uid: 4369 - type: SeedExtractor - components: - - pos: -10.5,11.5 - parent: 1 - type: Transform -- uid: 4370 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 31.5,13.5 - parent: 1 - type: Transform -- uid: 4371 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 10.5,-2.5 - parent: 1 - type: Transform -- uid: 4372 - type: AirlockGlass - components: - - name: bar - type: MetaData - - pos: 11.5,4.5 - parent: 1 - type: Transform -- uid: 4373 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 7.5,-2.5 - parent: 1 - type: Transform -- uid: 4374 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 1.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4375 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4376 - type: FirelockGlass - components: - - pos: 27.5,17.5 - parent: 1 - type: Transform -- uid: 4377 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 26.5,19.5 - parent: 1 - type: Transform -- uid: 4378 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4379 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 2.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4380 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 11.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4381 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 9.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4382 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: 32.5,13.5 - parent: 1 - type: Transform -- uid: 4383 - type: FirelockGlass - components: - - pos: 14.5,-19.5 - parent: 1 - type: Transform -- uid: 4384 - type: FirelockGlass - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform -- uid: 4385 - type: AirlockArmoryGlassLocked - components: - - name: warden office - type: MetaData - - rot: 1.5707963267948966 rad - pos: 27.5,21.5 - parent: 1 - type: Transform -- uid: 4386 - type: FirelockGlass - components: - - pos: -7.5,4.5 - parent: 1 - type: Transform -- uid: 4387 - type: FirelockGlass - components: - - pos: -1.5,-1.5 - parent: 1 - type: Transform -- uid: 4388 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 1 - type: Transform -- uid: 4389 - type: WallSolid - components: - - pos: 9.5,-28.5 - parent: 1 - type: Transform -- uid: 4390 - type: hydroponicsTray - components: - - pos: -8.5,7.5 - parent: 1 - type: Transform -- uid: 4391 - type: TableCounterMetal - components: - - pos: -4.5,5.5 - parent: 1 - type: Transform -- uid: 4392 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 6.5,-3.5 - parent: 1 - type: Transform -- uid: 4393 - type: RailingCorner - components: - - rot: -1.5707963267948966 rad - pos: 5.5,0.5 - parent: 1 - type: Transform -- uid: 4394 - type: Railing - components: - - pos: 10.5,0.5 - parent: 1 - type: Transform -- uid: 4395 - type: WallReinforced - components: - - pos: 0.5,15.5 - parent: 1 - type: Transform -- uid: 4396 - type: DisposalUnit - components: - - pos: -9.5,5.5 - parent: 1 - type: Transform -- uid: 4397 - type: WallSolid - components: - - pos: -6.5,12.5 - parent: 1 - type: Transform -- uid: 4398 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: -2.5,5.5 - parent: 1 - type: Transform -- uid: 4399 - type: hydroponicsTray - components: - - pos: -10.5,7.5 - parent: 1 - type: Transform -- uid: 4400 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -1.5,13.5 - parent: 1 - type: Transform -- uid: 4401 - type: WallSolid - components: - - pos: -5.5,11.5 - parent: 1 - type: Transform -- uid: 4402 - type: WallSolid - components: - - pos: 17.5,-7.5 - parent: 1 - type: Transform -- uid: 4403 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 17.5,6.5 - parent: 1 - type: Transform -- uid: 4404 - type: WallSolid - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform -- uid: 4405 - type: WallSolid - components: - - pos: -5.5,12.5 - parent: 1 - type: Transform -- uid: 4406 - type: WallSolid - components: - - pos: -11.5,5.5 - parent: 1 - type: Transform -- uid: 4407 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 9.5,11.5 - parent: 1 - type: Transform -- uid: 4408 - type: DisposalPipe - components: - - pos: 12.5,10.5 - parent: 1 - type: Transform -- uid: 4409 - type: DisposalTrunk - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform -- uid: 4410 - type: DisposalBend - components: - - pos: 18.5,1.5 - parent: 1 - type: Transform -- uid: 4411 - type: DisposalPipe - components: - - pos: 18.5,-0.5 - parent: 1 - type: Transform -- uid: 4412 - type: DisposalJunctionFlipped - components: - - pos: 12.5,5.5 - parent: 1 - type: Transform -- uid: 4413 - type: DisposalPipe - components: - - pos: 12.5,9.5 - parent: 1 - type: Transform -- uid: 4414 - type: DisposalPipe - components: - - pos: 12.5,3.5 - parent: 1 - type: Transform -- uid: 4415 - type: DisposalJunctionFlipped - components: - - pos: 13.5,0.5 - parent: 1 - type: Transform -- uid: 4416 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 17.5,4.5 - parent: 1 - type: Transform -- uid: 4417 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 17.5,2.5 - parent: 1 - type: Transform -- uid: 4418 - type: CableApcExtension - components: - - pos: 17.5,-48.5 - parent: 1 - type: Transform -- uid: 4419 - type: GasPipeTJunction - components: - - pos: 10.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4420 - type: FlashlightLantern - components: - - pos: 10.459883,-56.492657 - parent: 1 - type: Transform -- uid: 4421 - type: DisposalPipe - components: - - pos: 18.5,-1.5 - parent: 1 - type: Transform -- uid: 4422 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 15.5,0.5 - parent: 1 - type: Transform -- uid: 4423 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 6.5,11.5 - parent: 1 - type: Transform -- uid: 4424 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 10.5,-3.5 - parent: 1 - type: Transform -- uid: 4425 - type: DisposalPipe - components: - - pos: 10.5,-1.5 - parent: 1 - type: Transform -- uid: 4426 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 1 - type: Transform -- uid: 4427 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 0.5,-0.5 - parent: 1 - type: Transform -- uid: 4428 - type: DisposalPipe - components: - - pos: 6.5,-1.5 - parent: 1 - type: Transform -- uid: 4429 - type: AirAlarm - components: - - pos: -0.5,10.5 - parent: 1 - type: Transform - - devices: - - 8763 - - 1102 - - 5961 - - 7194 - - 5499 - - 7195 - - 5954 - - 4384 - - 5561 - - 1108 - - 5828 - - 7187 - - 7188 - type: DeviceList -- uid: 4430 - type: SolarPanel - components: - - pos: 16.5,-95.5 - parent: 1 - type: Transform -- uid: 4431 - type: BalloonCorgi - components: - - pos: -1.6261793,-3.5142155 - parent: 1 - type: Transform -- uid: 4432 - type: WallSolid - components: - - pos: 13.5,-51.5 - parent: 1 - type: Transform -- uid: 4433 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -74.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4434 - type: DisposalPipe - components: - - pos: 13.5,1.5 - parent: 1 - type: Transform -- uid: 4435 - type: WallSolid - components: - - pos: 24.5,-3.5 - parent: 1 - type: Transform -- uid: 4436 - type: FoodCakeClown - components: - - pos: 1.5450791,-4.436863 - parent: 1 - type: Transform -- uid: 4437 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 9.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4438 - type: WindowDirectional - components: - - pos: 8.5,2.5 - parent: 1 - type: Transform -- uid: 4439 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 10.5,1.5 - parent: 1 - type: Transform -- uid: 4440 - type: WallSolid - components: - - pos: 15.5,-7.5 - parent: 1 - type: Transform -- uid: 4441 - type: GasVentPump - components: - - pos: 20.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4442 - type: CableApcExtension - components: - - pos: 27.5,4.5 - parent: 1 - type: Transform -- uid: 4443 - type: CableApcExtension - components: - - pos: 27.5,-0.5 - parent: 1 - type: Transform -- uid: 4444 - type: CableApcExtension - components: - - pos: 25.5,4.5 - parent: 1 - type: Transform -- uid: 4445 - type: CableApcExtension - components: - - pos: 21.5,2.5 - parent: 1 - type: Transform -- uid: 4446 - type: CableApcExtension - components: - - pos: 23.5,2.5 - parent: 1 - type: Transform -- uid: 4447 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-0.5 - parent: 1 - type: Transform -- uid: 4448 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4449 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-0.5 - parent: 1 - type: Transform -- uid: 4450 - type: AirlockEngineeringLocked - components: - - pos: 30.5,-3.5 - parent: 1 - type: Transform -- uid: 4451 - type: WallSolid - components: - - pos: 20.5,5.5 - parent: 1 - type: Transform -- uid: 4452 - type: CableApcExtension - components: - - pos: 26.5,4.5 - parent: 1 - type: Transform -- uid: 4453 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 1 - type: Transform -- uid: 4454 - type: WallSolid - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform -- uid: 4455 - type: WallSolid - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform -- uid: 4456 - type: WallSolid - components: - - pos: 15.5,5.5 - parent: 1 - type: Transform -- uid: 4457 - type: WallSolid - components: - - pos: 30.5,-1.5 - parent: 1 - type: Transform -- uid: 4458 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 25.5,5.5 - parent: 1 - type: Transform -- uid: 4459 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,11.5 - parent: 1 - type: Transform -- uid: 4460 - type: hydroponicsTray - components: - - pos: -10.5,9.5 - parent: 1 - type: Transform -- uid: 4461 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 1 - type: Transform -- uid: 4462 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 1 - type: Transform -- uid: 4463 - type: WallSolid - components: - - pos: 19.5,4.5 - parent: 1 - type: Transform -- uid: 4464 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 23.5,-4.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4465 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-8.5 - parent: 1 - type: Transform -- uid: 4466 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 3.5,14.5 - parent: 1 - type: Transform -- uid: 4467 - type: Grille - components: - - pos: 18.5,33.5 - parent: 1 - type: Transform -- uid: 4468 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 3.5,7.5 - parent: 1 - type: Transform -- uid: 4469 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 1 - type: Transform -- uid: 4470 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 3.5,6.5 - parent: 1 - type: Transform -- uid: 4471 - type: WallSolid - components: - - pos: -1.5,4.5 - parent: 1 - type: Transform -- uid: 4472 - type: Poweredlight - components: - - pos: -23.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4473 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 1 - type: Transform -- uid: 4474 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 1 - type: Transform -- uid: 4475 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,2.5 - parent: 1 - type: Transform -- uid: 4476 - type: WeaponShotgunKammerer - components: - - pos: 26.777893,32.47498 - parent: 1 - type: Transform -- uid: 4477 - type: WallSolid - components: - - pos: 14.5,4.5 - parent: 1 - type: Transform -- uid: 4478 - type: CableApcExtension - components: - - pos: -4.5,-13.5 - parent: 1 - type: Transform -- uid: 4479 - type: GasPipeStraight - components: - - pos: 10.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4480 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-13.5 - parent: 1 - type: Transform -- uid: 4481 - type: GasPipeStraight - components: - - pos: 10.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4482 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-11.5 - parent: 1 - type: Transform -- uid: 4483 - type: CableApcExtension - components: - - pos: -20.5,-86.5 - parent: 1 - type: Transform -- uid: 4484 - type: TableCounterMetal - components: - - pos: 4.5,11.5 - parent: 1 - type: Transform -- uid: 4485 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 26.5,-4.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4486 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 5.5,2.5 - parent: 1 - type: Transform -- uid: 4487 - type: WallSolid - components: - - pos: -5.5,4.5 - parent: 1 - type: Transform -- uid: 4488 - type: WallReinforced - components: - - pos: -1.5,15.5 - parent: 1 - type: Transform -- uid: 4489 - type: WallReinforced - components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform -- uid: 4490 - type: WallSolid - components: - - pos: 13.5,4.5 - parent: 1 - type: Transform -- uid: 4491 - type: GasPipeStraight - components: - - pos: 10.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4492 - type: WallSolid - components: - - pos: 5.5,-7.5 - parent: 1 - type: Transform -- uid: 4493 - type: CableApcExtension - components: - - pos: 20.5,-42.5 - parent: 1 - type: Transform -- uid: 4494 - type: BedsheetHOP - components: - - rot: 3.141592653589793 rad - pos: 23.5,-35.5 - parent: 1 - type: Transform -- uid: 4495 - type: WallSolid - components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform -- uid: 4496 - type: FirelockGlass - components: - - pos: 34.5,-19.5 - parent: 1 - type: Transform -- uid: 4497 - type: Soap - components: - - pos: -13.440093,-21.677519 - parent: 1 - type: Transform -- uid: 4498 - type: WetFloorSign - components: - - pos: -7.7912116,-23.603895 - parent: 1 - type: Transform -- uid: 4499 - type: CableApcExtension - components: - - pos: -18.5,-60.5 - parent: 1 - type: Transform -- uid: 4500 - type: CableApcExtension - components: - - pos: 8.5,-56.5 - parent: 1 - type: Transform -- uid: 4501 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-89.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4502 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-53.5 - parent: 1 - type: Transform -- uid: 4503 - type: DisposalUnit - components: - - pos: -21.5,-84.5 - parent: 1 - type: Transform -- uid: 4504 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-84.5 - parent: 1 - type: Transform -- uid: 4505 - type: DisposalPipe - components: - - pos: -23.5,-83.5 - parent: 1 - type: Transform -- uid: 4506 - type: DisposalPipe - components: - - pos: -23.5,-78.5 - parent: 1 - type: Transform -- uid: 4507 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-86.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4508 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-33.5 - parent: 1 - type: Transform -- uid: 4509 - type: MedkitBurnFilled - components: - - pos: 18.55885,-21.682238 - parent: 1 - type: Transform -- uid: 4510 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-90.5 - parent: 1 - type: Transform -- uid: 4511 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-88.5 - parent: 1 - type: Transform -- uid: 4512 - type: WallSolid - components: - - pos: -13.5,-72.5 - parent: 1 - type: Transform -- uid: 4513 - type: WindoorMedicalLocked - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-75.5 - parent: 1 - type: Transform -- uid: 4514 - type: CableApcExtension - components: - - pos: -4.5,-60.5 - parent: 1 - type: Transform -- uid: 4515 - type: CableApcExtension - components: - - pos: -1.5,-65.5 - parent: 1 - type: Transform -- uid: 4516 - type: CableApcExtension - components: - - pos: -1.5,-60.5 - parent: 1 - type: Transform -- uid: 4517 - type: CableApcExtension - components: - - pos: 3.5,-60.5 - parent: 1 - type: Transform -- uid: 4518 - type: CableApcExtension - components: - - pos: -3.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4519 - type: CableApcExtension - components: - - pos: 3.5,-48.5 - parent: 1 - type: Transform -- uid: 4520 - type: CableApcExtension - components: - - pos: 5.5,-48.5 - parent: 1 - type: Transform -- uid: 4521 - type: WallSolid - components: - - pos: 19.5,5.5 - parent: 1 - type: Transform -- uid: 4522 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,14.5 - parent: 1 - type: Transform -- uid: 4523 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 15.5,15.5 - parent: 1 - type: Transform -- uid: 4524 - type: CableApcExtension - components: - - pos: 6.5,-47.5 - parent: 1 - type: Transform -- uid: 4525 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 1 - type: Transform -- uid: 4526 - type: Chair - components: - - pos: 22.5,6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4527 - type: VendingMachineDetDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,-10.5 - parent: 1 - type: Transform -- uid: 4528 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 7.5,2.5 - parent: 1 - type: Transform -- uid: 4529 - type: FirelockGlass - components: - - pos: -1.5,2.5 - parent: 1 - type: Transform -- uid: 4530 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -21.5,-90.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4531 - type: WindoorMedicalLocked - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-79.5 - parent: 1 - type: Transform -- uid: 4532 - type: ReinforcedWindow - components: - - pos: -24.5,-91.5 - parent: 1 - type: Transform -- uid: 4533 - type: CableApcExtension - components: - - pos: -4.5,-50.5 - parent: 1 - type: Transform -- uid: 4534 - type: CableApcExtension - components: - - pos: -4.5,-49.5 - parent: 1 - type: Transform -- uid: 4535 - type: CableMV - components: - - pos: 2.5,-53.5 - parent: 1 - type: Transform -- uid: 4536 - type: CableMV - components: - - pos: 18.5,-11.5 - parent: 1 - type: Transform -- uid: 4537 - type: CableMV - components: - - pos: 17.5,-11.5 - parent: 1 - type: Transform -- uid: 4538 - type: AirlockGlass - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-15.5 - parent: 1 - type: Transform -- uid: 4539 - type: CableApcExtension - components: - - pos: -6.5,-45.5 - parent: 1 - type: Transform -- uid: 4540 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: -4.5,-49.5 - parent: 1 - type: Transform -- uid: 4541 - type: AirlockHeadOfPersonnelLocked - components: - - pos: 24.5,-36.5 - parent: 1 - type: Transform -- uid: 4542 - type: Catwalk - components: - - pos: -19.5,-52.5 - parent: 1 - type: Transform -- uid: 4543 - type: CableApcExtension - components: - - pos: 22.5,-24.5 - parent: 1 - type: Transform -- uid: 4544 - type: SpawnPointChemist - components: - - pos: 3.5,-46.5 - parent: 1 - type: Transform -- uid: 4545 - type: Chair - components: - - pos: 25.5,6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 4546 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: 29.5,4.5 - parent: 1 - type: Transform -- uid: 4547 - type: CableHV - components: - - pos: -3.5,-20.5 - parent: 1 - type: Transform -- uid: 4548 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-25.5 - parent: 1 - type: Transform -- uid: 4549 - type: CableMV - components: - - pos: 44.5,-64.5 - parent: 1 - type: Transform -- uid: 4550 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 1 - type: Transform -- uid: 4551 - type: AirlockTheatreLocked - components: - - pos: 4.5,-2.5 - parent: 1 - type: Transform -- uid: 4552 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 63.5,17.5 - parent: 1 - type: Transform -- uid: 4553 - type: KitchenMicrowave - components: - - pos: 2.5,7.5 - parent: 1 - type: Transform -- uid: 4554 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 28.5,27.5 - parent: 1 - type: Transform -- uid: 4555 - type: CarpetGreen - components: - - pos: 20.5,13.5 - parent: 1 - type: Transform -- uid: 4556 - type: WallSolid - components: - - pos: -12.5,-28.5 - parent: 1 - type: Transform -- uid: 4557 - type: KitchenReagentGrinder - components: - - pos: 3.5,7.5 - parent: 1 - type: Transform -- uid: 4558 - type: WallSolid - components: - - pos: 15.5,-4.5 - parent: 1 - type: Transform -- uid: 4559 - type: WallSolid - components: - - pos: 15.5,0.5 - parent: 1 - type: Transform -- uid: 4560 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -1.5,12.5 - parent: 1 - type: Transform -- uid: 4561 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-4.5 - parent: 1 - type: Transform -- uid: 4562 - type: WallSolid - components: - - pos: 37.5,-38.5 - parent: 1 - type: Transform -- uid: 4563 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-76.5 - parent: 1 - type: Transform -- uid: 4564 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-76.5 - parent: 1 - type: Transform -- uid: 4565 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-79.5 - parent: 1 - type: Transform -- uid: 4566 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-82.5 - parent: 1 - type: Transform -- uid: 4567 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-76.5 - parent: 1 - type: Transform -- uid: 4568 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-84.5 - parent: 1 - type: Transform -- uid: 4569 - type: AirlockExternalGlassLocked - components: - - pos: -1.5,-84.5 - parent: 1 - type: Transform -- uid: 4570 - type: SolarPanel - components: - - pos: 18.5,-95.5 - parent: 1 - type: Transform -- uid: 4571 - type: CableHV - components: - - pos: 10.5,-98.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4572 - type: SolarPanel - components: - - pos: 6.5,-104.5 - parent: 1 - type: Transform -- uid: 4573 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 9.5,-92.5 - parent: 1 - type: Transform -- uid: 4574 - type: CableHV - components: - - pos: 7.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4575 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 10.5,-92.5 - parent: 1 - type: Transform -- uid: 4576 - type: CableApcExtension - components: - - pos: -6.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4577 - type: CableApcExtension - components: - - pos: -9.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4578 - type: BoxFolderWhite - components: - - pos: -5.5262356,-48.408676 - parent: 1 - type: Transform -- uid: 4579 - type: CarpetBlue - components: - - pos: -20.5,-56.5 - parent: 1 - type: Transform -- uid: 4580 - type: CarpetBlue - components: - - pos: -17.5,-54.5 - parent: 1 - type: Transform -- uid: 4581 - type: CarpetBlue - components: - - pos: -17.5,-55.5 - parent: 1 - type: Transform -- uid: 4582 - type: Catwalk - components: - - pos: -1.5,-82.5 - parent: 1 - type: Transform -- uid: 4583 - type: Grille - components: - - pos: -1.5,-31.5 - parent: 1 - type: Transform -- uid: 4584 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-60.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4585 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-52.5 - parent: 1 - type: Transform -- uid: 4586 - type: WallReinforced - components: - - pos: 16.5,-63.5 - parent: 1 - type: Transform -- uid: 4587 - type: CableMV - components: - - pos: 46.5,-65.5 - parent: 1 - type: Transform -- uid: 4588 - type: WallReinforced - components: - - pos: 17.5,-68.5 - parent: 1 - type: Transform -- uid: 4589 - type: Grille - components: - - pos: 15.5,-68.5 - parent: 1 - type: Transform -- uid: 4590 - type: DisposalPipe - components: - - pos: 24.5,-16.5 - parent: 1 - type: Transform -- uid: 4591 - type: CableHV - components: - - pos: 15.5,-42.5 - parent: 1 - type: Transform -- uid: 4592 - type: CableHV - components: - - pos: 15.5,-44.5 - parent: 1 - type: Transform -- uid: 4593 - type: CableHV - components: - - pos: 15.5,-36.5 - parent: 1 - type: Transform -- uid: 4594 - type: CableHV - components: - - pos: 15.5,-34.5 - parent: 1 - type: Transform -- uid: 4595 - type: CableHV - components: - - pos: 15.5,-32.5 - parent: 1 - type: Transform -- uid: 4596 - type: CableHV - components: - - pos: -3.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4597 - type: CableHV - components: - - pos: -5.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4598 - type: CableHV - components: - - pos: 14.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4599 - type: CableHV - components: - - pos: -6.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4600 - type: CableHV - components: - - pos: -6.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4601 - type: CableHV - components: - - pos: -8.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4602 - type: CableHV - components: - - pos: -10.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4603 - type: WallSolidRust - components: - - rot: 3.141592653589793 rad - pos: 13.5,-56.5 - parent: 1 - type: Transform -- uid: 4604 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 14.5,-45.5 - parent: 1 - type: Transform -- uid: 4605 - type: CableHV - components: - - pos: 8.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4606 - type: CableHV - components: - - pos: 14.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4607 - type: CableHV - components: - - pos: 13.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4608 - type: CableHV - components: - - pos: 11.5,-49.5 - parent: 1 - type: Transform -- uid: 4609 - type: CableHV - components: - - pos: -11.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4610 - type: CableApcExtension - components: - - pos: 16.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4611 - type: CableApcExtension - components: - - pos: 14.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4612 - type: GasPipeStraight - components: - - pos: -19.5,-58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4613 - type: CableApcExtension - components: - - pos: 25.5,-50.5 - parent: 1 - type: Transform -- uid: 4614 - type: CableApcExtension - components: - - pos: 25.5,-54.5 - parent: 1 - type: Transform -- uid: 4615 - type: CableApcExtension - components: - - pos: 25.5,-55.5 - parent: 1 - type: Transform -- uid: 4616 - type: CableApcExtension - components: - - pos: 25.5,-56.5 - parent: 1 - type: Transform -- uid: 4617 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4618 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4619 - type: GasPipeStraight - components: - - pos: 31.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4620 - type: CableApcExtension - components: - - pos: -4.5,-14.5 - parent: 1 - type: Transform -- uid: 4621 - type: CableApcExtension - components: - - pos: -4.5,-18.5 - parent: 1 - type: Transform -- uid: 4622 - type: WallSolid - components: - - pos: 8.5,4.5 - parent: 1 - type: Transform -- uid: 4623 - type: GasPipeStraight - components: - - pos: 31.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4624 - type: GasVentScrubber - components: - - pos: 33.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4625 - type: CableHV - components: - - pos: 25.5,-17.5 - parent: 1 - type: Transform -- uid: 4626 - type: WallReinforced - components: - - pos: -23.5,0.5 - parent: 1 - type: Transform -- uid: 4627 - type: DrinkGoldschlagerBottleFull - components: - - pos: 47.41234,-30.196692 - parent: 1 - type: Transform -- uid: 4628 - type: WallReinforced - components: - - pos: 25.5,-29.5 - parent: 1 - type: Transform -- uid: 4629 - type: WallReinforced - components: - - pos: -23.5,-2.5 - parent: 1 - type: Transform -- uid: 4630 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 34.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4631 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 33.5,-20.5 - parent: 1 - type: Transform -- uid: 4632 - type: PortableFlasher - components: - - pos: 32.5,31.5 - parent: 1 - type: Transform -- uid: 4633 - type: PoweredSmallLight - components: - - pos: 18.5,-24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4634 - type: CableApcExtension - components: - - pos: 59.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4635 - type: CableHV - components: - - pos: 38.5,-28.5 - parent: 1 - type: Transform -- uid: 4636 - type: CableHV - components: - - pos: 37.5,-30.5 - parent: 1 - type: Transform -- uid: 4637 - type: CableHV - components: - - pos: 35.5,-30.5 - parent: 1 - type: Transform -- uid: 4638 - type: CableHV - components: - - pos: 35.5,-29.5 - parent: 1 - type: Transform -- uid: 4639 - type: ReinforcedPlasmaWindow - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform -- uid: 4640 - type: WallReinforced - components: - - pos: -23.5,3.5 - parent: 1 - type: Transform -- uid: 4641 - type: WallReinforced - components: - - pos: -23.5,4.5 - parent: 1 - type: Transform -- uid: 4642 - type: WallReinforced - components: - - pos: -21.5,5.5 - parent: 1 - type: Transform -- uid: 4643 - type: CableMV - components: - - pos: 38.5,-30.5 - parent: 1 - type: Transform -- uid: 4644 - type: CableMV - components: - - pos: 36.5,-30.5 - parent: 1 - type: Transform -- uid: 4645 - type: WallSolid - components: - - pos: 37.5,-32.5 - parent: 1 - type: Transform -- uid: 4646 - type: WallSolid - components: - - pos: 39.5,-27.5 - parent: 1 - type: Transform -- uid: 4647 - type: CableApcExtension - components: - - pos: 46.5,-25.5 - parent: 1 - type: Transform -- uid: 4648 - type: CableApcExtension - components: - - pos: 46.5,-24.5 - parent: 1 - type: Transform -- uid: 4649 - type: CableApcExtension - components: - - pos: 46.5,-29.5 - parent: 1 - type: Transform -- uid: 4650 - type: CableApcExtension - components: - - pos: 46.5,-28.5 - parent: 1 - type: Transform -- uid: 4651 - type: MaintenanceWeaponSpawner - components: - - rot: 3.141592653589793 rad - pos: 55.5,60.5 - parent: 1 - type: Transform -- uid: 4652 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 10.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4653 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4654 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4655 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4656 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4657 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4658 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4659 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4660 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4661 - type: CableApcExtension - components: - - pos: 45.5,-27.5 - parent: 1 - type: Transform -- uid: 4662 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4663 - type: CableApcExtension - components: - - pos: 43.5,-27.5 - parent: 1 - type: Transform -- uid: 4664 - type: CableApcExtension - components: - - pos: 44.5,-27.5 - parent: 1 - type: Transform -- uid: 4665 - type: CableApcExtension - components: - - pos: 43.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4666 - type: CableMV - components: - - pos: 28.5,-28.5 - parent: 1 - type: Transform -- uid: 4667 - type: CableMV - components: - - pos: 35.5,-27.5 - parent: 1 - type: Transform -- uid: 4668 - type: CableMV - components: - - pos: 35.5,-26.5 - parent: 1 - type: Transform -- uid: 4669 - type: CableMV - components: - - pos: 36.5,-26.5 - parent: 1 - type: Transform -- uid: 4670 - type: CableMV - components: - - pos: 37.5,-26.5 - parent: 1 - type: Transform -- uid: 4671 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4672 - type: CableMV - components: - - pos: 38.5,-26.5 - parent: 1 - type: Transform -- uid: 4673 - type: CableMV - components: - - pos: 39.5,-26.5 - parent: 1 - type: Transform -- uid: 4674 - type: CableMV - components: - - pos: 41.5,-26.5 - parent: 1 - type: Transform -- uid: 4675 - type: CableMV - components: - - pos: 42.5,-26.5 - parent: 1 - type: Transform -- uid: 4676 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4677 - type: GasPipeStraight - components: - - pos: 8.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4678 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4679 - type: DisposalUnit - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform -- uid: 4680 - type: DisposalBend - components: - - pos: 12.5,13.5 - parent: 1 - type: Transform -- uid: 4681 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 10.5,14.5 - parent: 1 - type: Transform -- uid: 4682 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 39.5,4.5 - parent: 1 - type: Transform -- uid: 4683 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 39.5,8.5 - parent: 1 - type: Transform -- uid: 4684 - type: Grille - components: - - pos: 42.5,-28.5 - parent: 1 - type: Transform -- uid: 4685 - type: Grille - components: - - pos: 41.5,-28.5 - parent: 1 - type: Transform -- uid: 4686 - type: GasPipeStraight - components: - - pos: -3.5,-30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4687 - type: GasPipeStraight - components: - - pos: -3.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4688 - type: GasPipeStraight - components: - - pos: -3.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4689 - type: ReinforcedWindow - components: - - pos: 42.5,-28.5 - parent: 1 - type: Transform -- uid: 4690 - type: WallReinforced - components: - - pos: 49.5,-26.5 - parent: 1 - type: Transform -- uid: 4691 - type: WallReinforced - components: - - pos: 47.5,-20.5 - parent: 1 - type: Transform -- uid: 4692 - type: WallReinforced - components: - - pos: 44.5,-20.5 - parent: 1 - type: Transform -- uid: 4693 - type: WallReinforced - components: - - pos: 43.5,-22.5 - parent: 1 - type: Transform -- uid: 4694 - type: WallReinforced - components: - - pos: 43.5,-25.5 - parent: 1 - type: Transform -- uid: 4695 - type: CarpetGreen - components: - - pos: 14.5,9.5 - parent: 1 - type: Transform -- uid: 4696 - type: WallReinforced - components: - - pos: 43.5,-23.5 - parent: 1 - type: Transform -- uid: 4697 - type: WallReinforced - components: - - pos: 43.5,-28.5 - parent: 1 - type: Transform -- uid: 4698 - type: CableMV - components: - - pos: 0.5,12.5 - parent: 1 - type: Transform -- uid: 4699 - type: CableMV - components: - - pos: 0.5,13.5 - parent: 1 - type: Transform -- uid: 4700 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-32.5 - parent: 1 - type: Transform -- uid: 4701 - type: Catwalk - components: - - pos: 32.5,-12.5 - parent: 1 - type: Transform -- uid: 4702 - type: Catwalk - components: - - pos: 32.5,-14.5 - parent: 1 - type: Transform -- uid: 4703 - type: WallSolid - components: - - pos: 39.5,-31.5 - parent: 1 - type: Transform -- uid: 4704 - type: CableMV - components: - - pos: 38.5,-29.5 - parent: 1 - type: Transform -- uid: 4705 - type: CableApcExtension - components: - - pos: 5.5,10.5 - parent: 1 - type: Transform -- uid: 4706 - type: CableApcExtension - components: - - pos: 5.5,8.5 - parent: 1 - type: Transform -- uid: 4707 - type: CableApcExtension - components: - - pos: 10.5,-26.5 - parent: 1 - type: Transform -- uid: 4708 - type: AirlockGlass - components: - - pos: -16.5,-43.5 - parent: 1 - type: Transform -- uid: 4709 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-40.5 - parent: 1 - type: Transform -- uid: 4710 - type: AirlockGlass - components: - - pos: -16.5,-41.5 - parent: 1 - type: Transform -- uid: 4711 - type: CableApcExtension - components: - - pos: -18.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4712 - type: CableApcExtension - components: - - pos: -4.5,-21.5 - parent: 1 - type: Transform -- uid: 4713 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 46.5,-21.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: vault a - type: SurveillanceCamera -- uid: 4714 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-43.5 - parent: 1 - type: Transform -- uid: 4715 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4716 - type: ReinforcedWindow - components: - - pos: 16.5,-68.5 - parent: 1 - type: Transform -- uid: 4717 - type: WallSolid - components: - - pos: -17.5,-39.5 - parent: 1 - type: Transform -- uid: 4718 - type: Firelock - components: - - pos: 18.5,-51.5 - parent: 1 - type: Transform -- uid: 4719 - type: Catwalk - components: - - pos: -1.5,-85.5 - parent: 1 - type: Transform -- uid: 4720 - type: Catwalk - components: - - pos: -1.5,-87.5 - parent: 1 - type: Transform -- uid: 4721 - type: CableHV - components: - - pos: 9.5,-101.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4722 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 11.5,-105.5 - parent: 1 - type: Transform -- uid: 4723 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-77.5 - parent: 1 - type: Transform -- uid: 4724 - type: SignSpace - components: - - pos: -2.5,-76.5 - parent: 1 - type: Transform -- uid: 4725 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-81.5 - parent: 1 - type: Transform -- uid: 4726 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-80.5 - parent: 1 - type: Transform -- uid: 4727 - type: CableApcExtension - components: - - pos: 17.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4728 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-80.5 - parent: 1 - type: Transform -- uid: 4729 - type: WindowReinforcedDirectional - components: - - pos: -9.5,-81.5 - parent: 1 - type: Transform -- uid: 4730 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -7.5,-76.5 - parent: 1 - type: Transform -- uid: 4731 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-76.5 - parent: 1 - type: Transform -- uid: 4732 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-77.5 - parent: 1 - type: Transform -- uid: 4733 - type: SynthesizerInstrument - components: - - pos: -10.500677,-5.723185 - parent: 1 - type: Transform -- uid: 4734 - type: AccordionInstrument - components: - - pos: -10.438177,-4.48881 - parent: 1 - type: Transform -- uid: 4735 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-11.5 - parent: 1 - type: Transform -- uid: 4736 - type: WallSolid - components: - - pos: 7.5,4.5 - parent: 1 - type: Transform -- uid: 4737 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,2.5 - parent: 1 - type: Transform -- uid: 4738 - type: WallReinforced - components: - - pos: 1.5,15.5 - parent: 1 - type: Transform -- uid: 4739 - type: AirlockBrigGlassLocked - components: - - name: brig - type: MetaData - - pos: 42.5,3.5 - parent: 1 - type: Transform -- uid: 4740 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 1 - type: Transform -- uid: 4741 - type: DisposalPipe - components: - - pos: 4.5,-5.5 - parent: 1 - type: Transform -- uid: 4742 - type: CableApcExtension - components: - - pos: 24.5,-0.5 - parent: 1 - type: Transform -- uid: 4743 - type: DisposalPipe - components: - - pos: 4.5,-4.5 - parent: 1 - type: Transform -- uid: 4744 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-22.5 - parent: 1 - type: Transform -- uid: 4745 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4746 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-3.5 - parent: 1 - type: Transform -- uid: 4747 - type: BalloonCorgi - components: - - pos: -1.2668043,-3.5454655 - parent: 1 - type: Transform -- uid: 4748 - type: FirelockGlass - components: - - pos: -0.5,-2.5 - parent: 1 - type: Transform -- uid: 4749 - type: WallReinforced - components: - - pos: 40.5,-28.5 - parent: 1 - type: Transform -- uid: 4750 - type: CableApcExtension - components: - - pos: -6.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4751 - type: WallSolid - components: - - pos: 38.5,-31.5 - parent: 1 - type: Transform -- uid: 4752 - type: CableApcExtension - components: - - pos: -6.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4753 - type: Window - components: - - pos: 25.5,-40.5 - parent: 1 - type: Transform -- uid: 4754 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-6.5 - parent: 1 - type: Transform -- uid: 4755 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-6.5 - parent: 1 - type: Transform -- uid: 4756 - type: DisposalPipe - components: - - pos: 24.5,-8.5 - parent: 1 - type: Transform -- uid: 4757 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: 24.5,-11.5 - parent: 1 - type: Transform -- uid: 4758 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-10.5 - parent: 1 - type: Transform -- uid: 4759 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-10.5 - parent: 1 - type: Transform -- uid: 4760 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 22.5,-11.5 - parent: 1 - type: Transform -- uid: 4761 - type: DisposalPipe - components: - - pos: 16.5,-19.5 - parent: 1 - type: Transform -- uid: 4762 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4763 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4764 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 4.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4765 - type: GasPipeTJunction - components: - - pos: 15.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4766 - type: GasVentPump - components: - - pos: 5.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4767 - type: GasPipeTJunction - components: - - pos: 0.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4768 - type: AtmosFixFreezerMarker - components: - - pos: 2.5,13.5 - parent: 1 - type: Transform -- uid: 4769 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 0.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4770 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4771 - type: GasPipeBend - components: - - pos: -4.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4772 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4773 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -6.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4774 - type: GasPipeStraight - components: - - pos: -6.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4775 - type: GasPipeStraight - components: - - pos: -6.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4776 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -6.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4777 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -7.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4778 - type: GasVentScrubber - components: - - pos: 25.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4779 - type: AirlockArmoryGlassLocked - components: - - name: secway garage - type: MetaData - - rot: 3.141592653589793 rad - pos: 13.5,22.5 - parent: 1 - type: Transform -- uid: 4780 - type: GasPipeStraight - components: - - pos: 15.5,-41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4781 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4782 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4783 - type: ReinforcedWindow - components: - - pos: -27.5,-88.5 - parent: 1 - type: Transform -- uid: 4784 - type: FloorDrain - components: - - pos: -15.5,-78.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 4785 - type: GasVentPump - components: - - pos: -24.5,-79.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4786 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -18.5,-78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4787 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4788 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4789 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4790 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4791 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4792 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4793 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4794 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4795 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4796 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4797 - type: GasPipeStraight - components: - - pos: 15.5,-36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4798 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4799 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4800 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4801 - type: GasPipeStraight - components: - - pos: 15.5,-38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4802 - type: WallReinforced - components: - - pos: 26.5,26.5 - parent: 1 - type: Transform -- uid: 4803 - type: WallReinforced - components: - - pos: 25.5,26.5 - parent: 1 - type: Transform -- uid: 4804 - type: WallReinforced - components: - - pos: 25.5,28.5 - parent: 1 - type: Transform -- uid: 4805 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 33.5,29.5 - parent: 1 - type: Transform -- uid: 4806 - type: WallReinforced - components: - - pos: 25.5,30.5 - parent: 1 - type: Transform -- uid: 4807 - type: WallReinforced - components: - - pos: 32.5,26.5 - parent: 1 - type: Transform -- uid: 4808 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-25.5 - parent: 1 - type: Transform -- uid: 4809 - type: WallSolid - components: - - pos: -6.5,-18.5 - parent: 1 - type: Transform -- uid: 4810 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-25.5 - parent: 1 - type: Transform -- uid: 4811 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-25.5 - parent: 1 - type: Transform -- uid: 4812 - type: WallSolid - components: - - pos: -6.5,-15.5 - parent: 1 - type: Transform -- uid: 4813 - type: DisposalPipe - components: - - pos: -7.5,-0.5 - parent: 1 - type: Transform -- uid: 4814 - type: WallSolid - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform -- uid: 4815 - type: WallSolid - components: - - pos: -2.5,-6.5 - parent: 1 - type: Transform -- uid: 4816 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -10.5,-47.5 - parent: 1 - type: Transform -- uid: 4817 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-24.5 - parent: 1 - type: Transform -- uid: 4818 - type: WallSolid - components: - - pos: -4.5,9.5 - parent: 1 - type: Transform -- uid: 4819 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -16.5,-38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4820 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-44.5 - parent: 1 - type: Transform -- uid: 4821 - type: WallSolid - components: - - pos: -21.5,-15.5 - parent: 1 - type: Transform -- uid: 4822 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-12.5 - parent: 1 - type: Transform -- uid: 4823 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-11.5 - parent: 1 - type: Transform -- uid: 4824 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-18.5 - parent: 1 - type: Transform -- uid: 4825 - type: WallSolid - components: - - pos: -26.5,-15.5 - parent: 1 - type: Transform -- uid: 4826 - type: CableMV - components: - - pos: 8.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4827 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 31.5,30.5 - parent: 1 - type: Transform -- uid: 4828 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,-22.5 - parent: 1 - type: Transform -- uid: 4829 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 13.5,23.5 - parent: 1 - type: Transform -- uid: 4830 - type: ClothingBackpackDuffelSecurity - components: - - pos: 5.4199524,15.682768 - parent: 1 - type: Transform -- uid: 4831 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4832 - type: WallSolid - components: - - pos: 19.5,23.5 - parent: 1 - type: Transform -- uid: 4833 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 20.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4834 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 8.5,23.5 - parent: 1 - type: Transform -- uid: 4835 - type: ComputerStationRecords - components: - - pos: 18.5,-10.5 - parent: 1 - type: Transform -- uid: 4836 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 27.5,30.5 - parent: 1 - type: Transform -- uid: 4837 - type: WallReinforced - components: - - pos: -2.5,-39.5 - parent: 1 - type: Transform -- uid: 4838 - type: WindoorArmoryLocked - components: - - rot: -1.5707963267948966 rad - pos: 28.5,30.5 - parent: 1 - type: Transform -- uid: 4839 - type: WallSolid - components: - - pos: 27.5,-44.5 - parent: 1 - type: Transform -- uid: 4840 - type: AirlockMaint - components: - - pos: -17.5,-29.5 - parent: 1 - type: Transform -- uid: 4841 - type: WallSolid - components: - - pos: -6.5,-30.5 - parent: 1 - type: Transform -- uid: 4842 - type: WallSolid - components: - - pos: -6.5,-31.5 - parent: 1 - type: Transform -- uid: 4843 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-39.5 - parent: 1 - type: Transform -- uid: 4844 - type: Grille - components: - - pos: -1.5,-32.5 - parent: 1 - type: Transform -- uid: 4845 - type: CapacitorStockPart - components: - - pos: 38.302574,-35.672806 - parent: 1 - type: Transform -- uid: 4846 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -7.5,-2.5 - parent: 1 - type: Transform -- uid: 4847 - type: ReinforcedWindow - components: - - pos: -1.5,-31.5 - parent: 1 - type: Transform -- uid: 4848 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-44.5 - parent: 1 - type: Transform -- uid: 4849 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-44.5 - parent: 1 - type: Transform -- uid: 4850 - type: WallSolid - components: - - pos: 12.5,-48.5 - parent: 1 - type: Transform -- uid: 4851 - type: PottedPlant24 - components: - - pos: -6.5,-40.5 - parent: 1 - type: Transform -- uid: 4852 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 10.5,-25.5 - parent: 1 - type: Transform -- uid: 4853 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: -0.5,-25.5 - parent: 1 - type: Transform -- uid: 4854 - type: AirlockMaintLocked - components: - - pos: 13.5,-29.5 - parent: 1 - type: Transform -- uid: 4855 - type: ReinforcedWindow - components: - - pos: 1.5,-30.5 - parent: 1 - type: Transform -- uid: 4856 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-24.5 - parent: 1 - type: Transform -- uid: 4857 - type: WallReinforced - components: - - pos: 11.5,-24.5 - parent: 1 - type: Transform -- uid: 4858 - type: WallReinforced - components: - - pos: 10.5,-24.5 - parent: 1 - type: Transform -- uid: 4859 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-24.5 - parent: 1 - type: Transform -- uid: 4860 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-24.5 - parent: 1 - type: Transform -- uid: 4861 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-24.5 - parent: 1 - type: Transform -- uid: 4862 - type: CableMV - components: - - pos: 6.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4863 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-24.5 - parent: 1 - type: Transform -- uid: 4864 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 6.5,-20.5 - parent: 1 - type: Transform -- uid: 4865 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-23.5 - parent: 1 - type: Transform -- uid: 4866 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-18.5 - parent: 1 - type: Transform -- uid: 4867 - type: WallSolid - components: - - pos: 9.5,-15.5 - parent: 1 - type: Transform -- uid: 4868 - type: WallSolid - components: - - pos: 8.5,-15.5 - parent: 1 - type: Transform -- uid: 4869 - type: WallSolid - components: - - pos: 7.5,-15.5 - parent: 1 - type: Transform -- uid: 4870 - type: WallSolid - components: - - pos: 6.5,-15.5 - parent: 1 - type: Transform -- uid: 4871 - type: WallSolid - components: - - pos: 5.5,-15.5 - parent: 1 - type: Transform -- uid: 4872 - type: TelecomServer - components: - - pos: 10.5,-20.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 4873 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 4873 - type: EncryptionKeyCommon - components: - - flags: InContainer - type: MetaData - - parent: 4872 - type: Transform - - canCollide: False - type: Physics -- uid: 4874 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-25.5 - parent: 1 - type: Transform -- uid: 4875 - type: WallSolid - components: - - pos: -10.5,-28.5 - parent: 1 - type: Transform -- uid: 4876 - type: GasVentPump - components: - - pos: 17.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4877 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4878 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4879 - type: WallReinforced - components: - - pos: -2.5,21.5 - parent: 1 - type: Transform -- uid: 4880 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4881 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 16.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4882 - type: GasVentScrubber - components: - - pos: 16.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4883 - type: WallReinforced - components: - - pos: -0.5,22.5 - parent: 1 - type: Transform -- uid: 4884 - type: WallReinforced - components: - - pos: 0.5,22.5 - parent: 1 - type: Transform -- uid: 4885 - type: WallReinforced - components: - - pos: -1.5,22.5 - parent: 1 - type: Transform -- uid: 4886 - type: WallReinforced - components: - - pos: -2.5,22.5 - parent: 1 - type: Transform -- uid: 4887 - type: WallReinforced - components: - - pos: -2.5,20.5 - parent: 1 - type: Transform -- uid: 4888 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4889 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4890 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4891 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4892 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4893 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 26.5,2.5 - parent: 1 - type: Transform -- uid: 4894 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 24.5,3.5 - parent: 1 - type: Transform -- uid: 4895 - type: RailingCorner - components: - - pos: 26.5,-1.5 - parent: 1 - type: Transform -- uid: 4896 - type: RailingCorner - components: - - rot: 1.5707963267948966 rad - pos: 26.5,3.5 - parent: 1 - type: Transform -- uid: 4897 - type: RandomSpawner - components: - - pos: 25.5,7.5 - parent: 1 - type: Transform -- uid: 4898 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-10.5 - parent: 1 - type: Transform -- uid: 4899 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 1 - type: Transform -- uid: 4900 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-8.5 - parent: 1 - type: Transform -- uid: 4901 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 1 - type: Transform -- uid: 4902 - type: WallReinforced - components: - - pos: 6.5,-40.5 - parent: 1 - type: Transform -- uid: 4903 - type: WallReinforced - components: - - pos: 5.5,-39.5 - parent: 1 - type: Transform -- uid: 4904 - type: WallSolid - components: - - pos: 8.5,-40.5 - parent: 1 - type: Transform -- uid: 4905 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4906 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 15.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4907 - type: GasPipeStraight - components: - - pos: 15.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4908 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -10.5,-48.5 - parent: 1 - type: Transform -- uid: 4909 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 1.5,-49.5 - parent: 1 - type: Transform -- uid: 4910 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 1.5,-50.5 - parent: 1 - type: Transform -- uid: 4911 - type: WallSolid - components: - - pos: 3.5,-44.5 - parent: 1 - type: Transform -- uid: 4912 - type: WallSolid - components: - - pos: -2.5,-51.5 - parent: 1 - type: Transform -- uid: 4913 - type: TableWood - components: - - pos: -3.5,-48.5 - parent: 1 - type: Transform -- uid: 4914 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4915 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4916 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 33.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4917 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4918 - type: Window - components: - - pos: -4.5,-44.5 - parent: 1 - type: Transform -- uid: 4919 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-40.5 - parent: 1 - type: Transform -- uid: 4920 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-40.5 - parent: 1 - type: Transform -- uid: 4921 - type: Window - components: - - pos: -1.5,-57.5 - parent: 1 - type: Transform -- uid: 4922 - type: Window - components: - - pos: -4.5,-57.5 - parent: 1 - type: Transform -- uid: 4923 - type: Window - components: - - pos: -7.5,-57.5 - parent: 1 - type: Transform -- uid: 4924 - type: GasPipeStraight - components: - - pos: 15.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4925 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 21.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4926 - type: CableApcExtension - components: - - pos: 24.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4927 - type: GasPipeStraight - components: - - pos: 15.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4928 - type: GasPipeStraight - components: - - pos: 15.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4929 - type: GasPipeStraight - components: - - pos: 15.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4930 - type: AirlockMedicalGlassLocked - components: - - rot: 3.141592653589793 rad - pos: -2.5,-58.5 - parent: 1 - type: Transform -- uid: 4931 - type: MedicalBed - components: - - pos: -6.5,-57.5 - parent: 1 - type: Transform -- uid: 4932 - type: GasPipeStraight - components: - - pos: 15.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4933 - type: GasPipeStraight - components: - - pos: 15.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4934 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4935 - type: GasPipeStraight - components: - - pos: 15.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4936 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4937 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4938 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4939 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4940 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-9.5 - parent: 1 - type: Transform -- uid: 4941 - type: Table - components: - - pos: 2.5,-50.5 - parent: 1 - type: Transform -- uid: 4942 - type: VendingMachineMedical - components: - - flags: SessionSpecific - type: MetaData - - pos: -13.5,-45.5 - parent: 1 - type: Transform -- uid: 4943 - type: MedkitBruteFilled - components: - - pos: 29.573622,4.6594224 - parent: 1 - type: Transform -- uid: 4944 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 30.5,5.5 - parent: 1 - type: Transform -- uid: 4945 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-49.5 - parent: 1 - type: Transform -- uid: 4946 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -0.5,-46.5 - parent: 1 - type: Transform -- uid: 4947 - type: Table - components: - - pos: 10.5,-60.5 - parent: 1 - type: Transform -- uid: 4948 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4949 - type: GasPipeFourway - components: - - pos: -3.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4950 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-28.5 - parent: 1 - type: Transform -- uid: 4951 - type: SignSmoking - components: - - pos: -10.5,-49.5 - parent: 1 - type: Transform -- uid: 4952 - type: GasPipeStraight - components: - - pos: 26.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4953 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4954 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 4955 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4956 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4957 - type: CableApcExtension - components: - - pos: 27.5,-25.5 - parent: 1 - type: Transform -- uid: 4958 - type: CableApcExtension - components: - - pos: 25.5,-22.5 - parent: 1 - type: Transform -- uid: 4959 - type: CableApcExtension - components: - - pos: 28.5,-23.5 - parent: 1 - type: Transform -- uid: 4960 - type: CableApcExtension - components: - - pos: 29.5,-23.5 - parent: 1 - type: Transform -- uid: 4961 - type: CableApcExtension - components: - - pos: 30.5,-23.5 - parent: 1 - type: Transform -- uid: 4962 - type: CableApcExtension - components: - - pos: 28.5,-28.5 - parent: 1 - type: Transform -- uid: 4963 - type: CableMV - components: - - pos: 6.5,-11.5 - parent: 1 - type: Transform -- uid: 4964 - type: CableMV - components: - - pos: 7.5,-11.5 - parent: 1 - type: Transform -- uid: 4965 - type: CableMV - components: - - pos: 8.5,-11.5 - parent: 1 - type: Transform -- uid: 4966 - type: CableMV - components: - - pos: 8.5,-10.5 - parent: 1 - type: Transform -- uid: 4967 - type: CableMV - components: - - pos: 8.5,-9.5 - parent: 1 - type: Transform -- uid: 4968 - type: CableMV - components: - - pos: 8.5,-7.5 - parent: 1 - type: Transform -- uid: 4969 - type: CableMV - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform -- uid: 4970 - type: CableMV - components: - - pos: 8.5,-4.5 - parent: 1 - type: Transform -- uid: 4971 - type: CableMV - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4972 - type: CableApcExtension - components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4973 - type: GasPipeStraight - components: - - pos: 22.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4974 - type: GasPipeTJunction - components: - - pos: 22.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4975 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4976 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 4977 - type: DisposalTrunk - components: - - pos: 25.5,-34.5 - parent: 1 - type: Transform -- uid: 4978 - type: GasPipeStraight - components: - - pos: 28.5,-30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4979 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 23.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 4980 - type: CableApcExtension - components: - - pos: 25.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 4981 - type: CableApcExtension - components: - - pos: -16.5,-22.5 - parent: 1 - type: Transform -- uid: 4982 - type: AirlockMaintJanitorLocked - components: - - pos: -6.5,-13.5 - parent: 1 - type: Transform -- uid: 4983 - type: WardrobePrisonFilled - components: - - pos: 28.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4984 - type: WardrobePrisonFilled - components: - - pos: 36.5,5.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4985 - type: Bed - components: - - pos: 29.5,10.5 - parent: 1 - type: Transform -- uid: 4986 - type: WardrobePrisonFilled - components: - - pos: 31.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4987 - type: WardrobePrisonFilled - components: - - pos: 34.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4988 - type: WardrobePrisonFilled - components: - - pos: 36.5,8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 4989 - type: CheapRollerBed - components: - - pos: -9.476166,-48.27978 - parent: 1 - type: Transform -- uid: 4990 - type: Bed - components: - - pos: 32.5,10.5 - parent: 1 - type: Transform -- uid: 4991 - type: Bed - components: - - pos: 35.5,10.5 - parent: 1 - type: Transform -- uid: 4992 - type: Window - components: - - pos: -13.5,-44.5 - parent: 1 - type: Transform -- uid: 4993 - type: EmergencyLight - components: - - pos: 29.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 4994 - type: VendingMachineNutri - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,8.5 - parent: 1 - type: Transform -- uid: 4995 - type: ReagentContainerFlour - components: - - pos: 2.337051,6.9047713 - parent: 1 - type: Transform -- uid: 4996 - type: ReagentContainerFlour - components: - - pos: 2.696426,6.7797713 - parent: 1 - type: Transform -- uid: 4997 - type: ReagentContainerFlour - components: - - pos: 2.399551,6.5610213 - parent: 1 - type: Transform -- uid: 4998 - type: FoodCondimentBottleEnzyme - components: - - pos: 3.2617502,6.8589945 - parent: 1 - type: Transform -- uid: 4999 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5000 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-12.5 - parent: 1 - type: Transform -- uid: 5001 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5002 - type: GasPipeStraight - components: - - pos: -3.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5003 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5004 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5005 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 15.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5006 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5007 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5008 - type: GasPipeStraight - components: - - pos: -3.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5009 - type: WallSolid - components: - - pos: 3.5,-15.5 - parent: 1 - type: Transform -- uid: 5010 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 29.5,9.5 - parent: 1 - type: Transform -- uid: 5011 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-80.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5012 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5013 - type: CableMV - components: - - pos: -21.5,-69.5 - parent: 1 - type: Transform -- uid: 5014 - type: WallReinforced - components: - - pos: 8.5,18.5 - parent: 1 - type: Transform -- uid: 5015 - type: CableMV - components: - - pos: 10.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5016 - type: CarpetSBlue - components: - - pos: 26.5,-37.5 - parent: 1 - type: Transform -- uid: 5017 - type: WallSolid - components: - - pos: 14.5,-11.5 - parent: 1 - type: Transform -- uid: 5018 - type: AirlockTheatreLocked - components: - - name: theatre - type: MetaData - - rot: -1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 1 - type: Transform -- uid: 5019 - type: BoxMouthSwab - components: - - pos: -22.524687,-71.12971 - parent: 1 - type: Transform -- uid: 5020 - type: WallSolid - components: - - pos: 8.5,-13.5 - parent: 1 - type: Transform -- uid: 5021 - type: GasPipeBend - components: - - pos: -2.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5022 - type: GasPipeStraight - components: - - pos: -3.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5023 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 1.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5024 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 1 - type: Transform -- uid: 5025 - type: WallSolid - components: - - pos: 8.5,-28.5 - parent: 1 - type: Transform -- uid: 5026 - type: DisposalUnit - components: - - pos: 6.5,-2.5 - parent: 1 - type: Transform -- uid: 5027 - type: RailingCorner - components: - - rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 1 - type: Transform -- uid: 5028 - type: Railing - components: - - pos: 6.5,0.5 - parent: 1 - type: Transform -- uid: 5029 - type: RailingCorner - components: - - pos: 12.5,0.5 - parent: 1 - type: Transform -- uid: 5030 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 22.5,3.5 - parent: 1 - type: Transform -- uid: 5031 - type: RailingCorner - components: - - rot: 3.141592653589793 rad - pos: 21.5,3.5 - parent: 1 - type: Transform -- uid: 5032 - type: MachineFrameDestroyed - components: - - pos: 45.5,44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 5033 - type: LockerFreezer - components: - - pos: -38.5,37.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5034 - type: RandomPosterContraband - components: - - pos: -36.5,-92.5 - parent: 1 - type: Transform -- uid: 5035 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5036 - type: CableMV - components: - - pos: -19.5,-69.5 - parent: 1 - type: Transform -- uid: 5037 - type: FirelockGlass - components: - - pos: 31.5,-6.5 - parent: 1 - type: Transform -- uid: 5038 - type: TableReinforced - components: - - pos: 47.5,49.5 - parent: 1 - type: Transform -- uid: 5039 - type: ClothingBeltUtility - components: - - pos: 47.423275,49.588562 - parent: 1 - type: Transform -- uid: 5040 - type: TrashBananaPeel - components: - - pos: 46.551132,46.620934 - parent: 1 - type: Transform -- uid: 5041 - type: DisposalMachineFrame - components: - - pos: 46.5,44.5 - parent: 1 - type: Transform -- uid: 5042 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5043 - type: BikeHornInstrument - components: - - pos: 4.415834,-11.744311 - parent: 1 - type: Transform -- uid: 5044 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -8.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5045 - type: WallSolid - components: - - pos: 16.5,-12.5 - parent: 1 - type: Transform -- uid: 5046 - type: WallSolid - components: - - pos: 16.5,-11.5 - parent: 1 - type: Transform -- uid: 5047 - type: WallSolid - components: - - pos: 16.5,-10.5 - parent: 1 - type: Transform -- uid: 5048 - type: WallSolid - components: - - pos: 16.5,-9.5 - parent: 1 - type: Transform -- uid: 5049 - type: WallSolid - components: - - pos: 17.5,-9.5 - parent: 1 - type: Transform -- uid: 5050 - type: WallSolid - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform -- uid: 5051 - type: WallSolid - components: - - pos: 1.5,-15.5 - parent: 1 - type: Transform -- uid: 5052 - type: WallSolid - components: - - pos: 11.5,-13.5 - parent: 1 - type: Transform -- uid: 5053 - type: WallSolid - components: - - pos: 2.5,-15.5 - parent: 1 - type: Transform -- uid: 5054 - type: WallSolid - components: - - pos: 14.5,-10.5 - parent: 1 - type: Transform -- uid: 5055 - type: WallSolid - components: - - pos: 14.5,-9.5 - parent: 1 - type: Transform -- uid: 5056 - type: TableCarpet - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 1 - type: Transform -- uid: 5057 - type: TableCarpet - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-6.5 - parent: 1 - type: Transform -- uid: 5058 - type: CableMV - components: - - pos: 9.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5059 - type: CableMV - components: - - pos: 15.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5060 - type: WallSolid - components: - - pos: 19.5,-9.5 - parent: 1 - type: Transform -- uid: 5061 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 27.5,23.5 - parent: 1 - type: Transform -- uid: 5062 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 19.5,9.5 - parent: 1 - type: Transform -- uid: 5063 - type: DisposalPipe - components: - - pos: 18.5,-5.5 - parent: 1 - type: Transform -- uid: 5064 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 19.5,11.5 - parent: 1 - type: Transform -- uid: 5065 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 18.5,8.5 - parent: 1 - type: Transform -- uid: 5066 - type: FirelockGlass - components: - - pos: 31.5,6.5 - parent: 1 - type: Transform -- uid: 5067 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 7.5,18.5 - parent: 1 - type: Transform -- uid: 5068 - type: AirlockMaint - components: - - pos: 18.5,-7.5 - parent: 1 - type: Transform -- uid: 5069 - type: WallReinforced - components: - - pos: -15.5,4.5 - parent: 1 - type: Transform -- uid: 5070 - type: WallReinforced - components: - - pos: -15.5,3.5 - parent: 1 - type: Transform -- uid: 5071 - type: AirlockGlass - components: - - rot: 1.5707963267948966 rad - pos: 19.5,6.5 - parent: 1 - type: Transform -- uid: 5072 - type: TableWood - components: - - pos: 15.5,11.5 - parent: 1 - type: Transform -- uid: 5073 - type: GasPipeTJunction - components: - - pos: 0.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5074 - type: CableHV - components: - - pos: -11.5,58.5 - parent: 1 - type: Transform -- uid: 5075 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 19.5,13.5 - parent: 1 - type: Transform -- uid: 5076 - type: ShuttersNormalOpen - components: - - pos: 18.5,15.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -57047.77 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 3189 - Close: - - port: Off - uid: 3189 - Toggle: [] - type: SignalReceiver -- uid: 5077 - type: FirelockGlass - components: - - pos: 15.5,6.5 - parent: 1 - type: Transform -- uid: 5078 - type: CableHV - components: - - pos: -12.5,58.5 - parent: 1 - type: Transform -- uid: 5079 - type: PoweredlightExterior - components: - - pos: -1.5,72.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5080 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -8.5,21.5 - parent: 1 - type: Transform -- uid: 5081 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5082 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,62.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5083 - type: PoweredlightExterior - components: - - rot: 1.5707963267948966 rad - pos: -7.5,68.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5084 - type: PoweredlightExterior - components: - - rot: -1.5707963267948966 rad - pos: 4.5,68.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5085 - type: PoweredlightSodium - components: - - rot: 3.141592653589793 rad - pos: 72.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5086 - type: CableHV - components: - - pos: -15.5,44.5 - parent: 1 - type: Transform -- uid: 5087 - type: CableHV - components: - - pos: -16.5,44.5 - parent: 1 - type: Transform -- uid: 5088 - type: CableHV - components: - - pos: -17.5,44.5 - parent: 1 - type: Transform -- uid: 5089 - type: AirlockGlass - components: - - pos: 19.5,-4.5 - parent: 1 - type: Transform -- uid: 5090 - type: AirlockGlass - components: - - pos: 19.5,-6.5 - parent: 1 - type: Transform -- uid: 5091 - type: CableHV - components: - - pos: -17.5,45.5 - parent: 1 - type: Transform -- uid: 5092 - type: CableHV - components: - - pos: -17.5,46.5 - parent: 1 - type: Transform -- uid: 5093 - type: CableHV - components: - - pos: -17.5,47.5 - parent: 1 - type: Transform -- uid: 5094 - type: CableHV - components: - - pos: -17.5,48.5 - parent: 1 - type: Transform -- uid: 5095 - type: CableHV - components: - - pos: -17.5,49.5 - parent: 1 - type: Transform -- uid: 5096 - type: CableHV - components: - - pos: -17.5,50.5 - parent: 1 - type: Transform -- uid: 5097 - type: CableHV - components: - - pos: -16.5,50.5 - parent: 1 - type: Transform -- uid: 5098 - type: CableHV - components: - - pos: -13.5,50.5 - parent: 1 - type: Transform -- uid: 5099 - type: CableHV - components: - - pos: -15.5,50.5 - parent: 1 - type: Transform -- uid: 5100 - type: CableHV - components: - - pos: -14.5,50.5 - parent: 1 - type: Transform -- uid: 5101 - type: AirlockBarLocked - components: - - name: bartender quarters - type: MetaData - - rot: -1.5707963267948966 rad - pos: 19.5,14.5 - parent: 1 - type: Transform -- uid: 5102 - type: CableHV - components: - - pos: -13.5,58.5 - parent: 1 - type: Transform -- uid: 5103 - type: SignBar - components: - - pos: 15.5,5.5 - parent: 1 - type: Transform -- uid: 5104 - type: GasPipeStraight - components: - - pos: -23.5,-76.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5105 - type: CableHV - components: - - pos: -13.5,57.5 - parent: 1 - type: Transform -- uid: 5106 - type: CableHV - components: - - pos: -13.5,51.5 - parent: 1 - type: Transform -- uid: 5107 - type: GasPipeStraight - components: - - pos: -23.5,-75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5108 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5109 - type: FirelockGlass - components: - - pos: 19.5,7.5 - parent: 1 - type: Transform -- uid: 5110 - type: TableWood - components: - - pos: -1.5,17.5 - parent: 1 - type: Transform -- uid: 5111 - type: WallReinforced - components: - - pos: 9.5,18.5 - parent: 1 - type: Transform -- uid: 5112 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-30.5 - parent: 1 - type: Transform -- uid: 5113 - type: CableHV - components: - - pos: -13.5,52.5 - parent: 1 - type: Transform -- uid: 5114 - type: CableHV - components: - - pos: -13.5,53.5 - parent: 1 - type: Transform -- uid: 5115 - type: CableHV - components: - - pos: -13.5,54.5 - parent: 1 - type: Transform -- uid: 5116 - type: CableHV - components: - - pos: -13.5,55.5 - parent: 1 - type: Transform -- uid: 5117 - type: CableHV - components: - - pos: -13.5,56.5 - parent: 1 - type: Transform -- uid: 5118 - type: WallSolid - components: - - pos: -42.5,-29.5 - parent: 1 - type: Transform -- uid: 5119 - type: WallSolid - components: - - pos: -42.5,-30.5 - parent: 1 - type: Transform -- uid: 5120 - type: WallSolid - components: - - pos: -37.5,-30.5 - parent: 1 - type: Transform -- uid: 5121 - type: WallSolid - components: - - pos: -37.5,-29.5 - parent: 1 - type: Transform -- uid: 5122 - type: WallSolid - components: - - pos: 13.5,-13.5 - parent: 1 - type: Transform -- uid: 5123 - type: WallSolid - components: - - pos: 14.5,-13.5 - parent: 1 - type: Transform -- uid: 5124 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 47.5,37.5 - parent: 1 - type: Transform -- uid: 5125 - type: FloraRockSolid01 - components: - - pos: -35.842815,62.48777 - parent: 1 - type: Transform -- uid: 5126 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 5.5,18.5 - parent: 1 - type: Transform -- uid: 5127 - type: WallReinforced - components: - - pos: -18.5,-85.5 - parent: 1 - type: Transform -- uid: 5128 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 19.5,12.5 - parent: 1 - type: Transform -- uid: 5129 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 18.5,-6.5 - parent: 1 - type: Transform -- uid: 5130 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-6.5 - parent: 1 - type: Transform -- uid: 5131 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 20.5,9.5 - parent: 1 - type: Transform -- uid: 5132 - type: WallSolid - components: - - pos: 18.5,-9.5 - parent: 1 - type: Transform -- uid: 5133 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-8.5 - parent: 1 - type: Transform -- uid: 5134 - type: TableCarpet - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-7.5 - parent: 1 - type: Transform -- uid: 5135 - type: CableMV - components: - - pos: 12.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5136 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-39.5 - parent: 1 - type: Transform -- uid: 5137 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5138 - type: TableCarpet - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 1 - type: Transform -- uid: 5139 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 8.5,14.5 - parent: 1 - type: Transform -- uid: 5140 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5141 - type: GasPipeBend - components: - - pos: 8.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5142 - type: FirelockGlass - components: - - pos: 11.5,18.5 - parent: 1 - type: Transform -- uid: 5143 - type: Table - components: - - pos: 56.5,-41.5 - parent: 1 - type: Transform -- uid: 5144 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5145 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5146 - type: GasPipeStraight - components: - - pos: -9.5,-54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5147 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5148 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5149 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5150 - type: Stunbaton - components: - - pos: 8.313212,12.723815 - parent: 1 - type: Transform -- uid: 5151 - type: PowerCellRecharger - components: - - pos: 8.5,14.5 - parent: 1 - type: Transform -- uid: 5152 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5153 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5154 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5155 - type: GasPipeStraight - components: - - pos: -5.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5156 - type: GasPipeStraight - components: - - pos: 2.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5157 - type: GasPipeStraight - components: - - pos: -5.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5158 - type: GasPipeStraight - components: - - pos: -5.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5159 - type: Catwalk - components: - - pos: -12.5,-14.5 - parent: 1 - type: Transform -- uid: 5160 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5161 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5162 - type: GasPipeStraight - components: - - pos: -5.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5163 - type: GasPipeStraight - components: - - pos: -5.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5164 - type: GasPipeStraight - components: - - pos: -5.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5165 - type: GasPipeStraight - components: - - pos: -5.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5166 - type: GasPipeStraight - components: - - pos: -5.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5167 - type: GasPipeStraight - components: - - pos: -5.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5168 - type: ReinforcedPlasmaWindow - components: - - rot: 3.141592653589793 rad - pos: 22.5,-20.5 - parent: 1 - type: Transform -- uid: 5169 - type: GasPipeStraight - components: - - pos: -5.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5170 - type: GasPipeStraight - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5171 - type: GasPipeStraight - components: - - pos: -5.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5172 - type: GasPipeStraight - components: - - pos: -5.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5173 - type: GasPipeStraight - components: - - pos: -5.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5174 - type: Table - components: - - pos: -25.5,-79.5 - parent: 1 - type: Transform -- uid: 5175 - type: CableApcExtension - components: - - pos: -13.5,-53.5 - parent: 1 - type: Transform -- uid: 5176 - type: Table - components: - - pos: -26.5,-20.5 - parent: 1 - type: Transform -- uid: 5177 - type: TableReinforcedGlass - components: - - pos: -30.5,-79.5 - parent: 1 - type: Transform -- uid: 5178 - type: FirelockGlass - components: - - pos: 10.5,-2.5 - parent: 1 - type: Transform -- uid: 5179 - type: CableApcExtension - components: - - pos: 24.5,3.5 - parent: 1 - type: Transform -- uid: 5180 - type: WallSolid - components: - - pos: -5.5,10.5 - parent: 1 - type: Transform -- uid: 5181 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5182 - type: AirlockEngineeringLocked - components: - - name: gravity generator - type: MetaData - - pos: -19.5,-3.5 - parent: 1 - type: Transform -- uid: 5183 - type: ReinforcedWindow - components: - - pos: -21.5,-3.5 - parent: 1 - type: Transform -- uid: 5184 - type: CableMV - components: - - pos: -16.5,-69.5 - parent: 1 - type: Transform -- uid: 5185 - type: DisposalRouterFlipped - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-53.5 - parent: 1 - type: Transform -- uid: 5186 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5187 - type: GasVentPump - components: - - pos: -4.5,-40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5188 - type: CableHV - components: - - pos: 15.5,-39.5 - parent: 1 - type: Transform -- uid: 5189 - type: CableApcExtension - components: - - pos: 7.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5190 - type: DrinkGlass - components: - - pos: 0.54256004,-5.358738 - parent: 1 - type: Transform -- uid: 5191 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -0.5,-2.5 - parent: 1 - type: Transform -- uid: 5192 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -1.5,11.5 - parent: 1 - type: Transform -- uid: 5193 - type: WallSolid - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform -- uid: 5194 - type: CableApcExtension - components: - - pos: -13.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5195 - type: CableApcExtension - components: - - pos: -7.5,-6.5 - parent: 1 - type: Transform -- uid: 5196 - type: CableApcExtension - components: - - pos: -29.5,1.5 - parent: 1 - type: Transform -- uid: 5197 - type: WallSolid - components: - - pos: -1.5,6.5 - parent: 1 - type: Transform -- uid: 5198 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 19.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5199 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -1.5,10.5 - parent: 1 - type: Transform -- uid: 5200 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 3.5,11.5 - parent: 1 - type: Transform -- uid: 5201 - type: AtmosFixFreezerMarker - components: - - pos: 0.5,14.5 - parent: 1 - type: Transform -- uid: 5202 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -4.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5203 - type: WallSolid - components: - - pos: 5.5,-3.5 - parent: 1 - type: Transform -- uid: 5204 - type: WallReinforced - components: - - pos: -2.5,15.5 - parent: 1 - type: Transform -- uid: 5205 - type: WallSolid - components: - - pos: 7.5,5.5 - parent: 1 - type: Transform -- uid: 5206 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-88.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5207 - type: AirlockVirologyGlass - components: - - pos: -17.5,-77.5 - parent: 1 - type: Transform -- uid: 5208 - type: Window - components: - - pos: -6.5,-38.5 - parent: 1 - type: Transform -- uid: 5209 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 37.5,42.5 - parent: 1 - type: Transform -- uid: 5210 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 62.5,50.5 - parent: 1 - type: Transform -- uid: 5211 - type: CarpetGreen - components: - - pos: 9.5,-11.5 - parent: 1 - type: Transform -- uid: 5212 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 62.5,43.5 - parent: 1 - type: Transform -- uid: 5213 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 62.5,42.5 - parent: 1 - type: Transform -- uid: 5214 - type: CableApcExtension - components: - - pos: 18.5,-40.5 - parent: 1 - type: Transform -- uid: 5215 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 60.5,48.5 - parent: 1 - type: Transform -- uid: 5216 - type: AirlockMaintMedLocked - components: - - name: virology - type: MetaData - - rot: -1.5707963267948966 rad - pos: -32.5,-71.5 - parent: 1 - type: Transform -- uid: 5217 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 18.5,27.5 - parent: 1 - type: Transform -- uid: 5218 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 31.5,-4.5 - parent: 1 - type: Transform -- uid: 5219 - type: CableApcExtension - components: - - pos: -39.5,-68.5 - parent: 1 - type: Transform -- uid: 5220 - type: CableApcExtension - components: - - pos: -36.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5221 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -8.5,57.5 - parent: 1 - type: Transform -- uid: 5222 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,43.5 - parent: 1 - type: Transform -- uid: 5223 - type: CableApcExtension - components: - - pos: 41.5,-26.5 - parent: 1 - type: Transform -- uid: 5224 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 28.5,-7.5 - parent: 1 - type: Transform -- uid: 5225 - type: CableHV - components: - - pos: -6.5,-75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5226 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5227 - type: PosterContrabandCC64KAd - components: - - pos: 20.5,-3.5 - parent: 1 - type: Transform -- uid: 5228 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 60.5,50.5 - parent: 1 - type: Transform -- uid: 5229 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 18.5,-19.5 - parent: 1 - type: Transform -- uid: 5230 - type: CableApcExtension - components: - - pos: -35.5,-70.5 - parent: 1 - type: Transform -- uid: 5231 - type: CableApcExtension - components: - - pos: -37.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5232 - type: CableHV - components: - - pos: 18.5,-42.5 - parent: 1 - type: Transform -- uid: 5233 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 42.5,49.5 - parent: 1 - type: Transform -- uid: 5234 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 34.5,43.5 - parent: 1 - type: Transform -- uid: 5235 - type: CableHV - components: - - pos: -24.5,-15.5 - parent: 1 - type: Transform -- uid: 5236 - type: Fireplace - components: - - pos: 31.5,-27.5 - parent: 1 - type: Transform -- uid: 5237 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 60.5,49.5 - parent: 1 - type: Transform -- uid: 5238 - type: AirlockGlass - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-19.5 - parent: 1 - type: Transform -- uid: 5239 - type: FirelockGlass - components: - - pos: 16.5,-38.5 - parent: 1 - type: Transform -- uid: 5240 - type: CableApcExtension - components: - - pos: -9.5,-22.5 - parent: 1 - type: Transform -- uid: 5241 - type: Grille - components: - - pos: 0.5,-62.5 - parent: 1 - type: Transform -- uid: 5242 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 1 - type: Transform -- uid: 5243 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5244 - type: CableMV - components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform -- uid: 5245 - type: CableApcExtension - components: - - pos: 12.5,-8.5 - parent: 1 - type: Transform -- uid: 5246 - type: CableHV - components: - - pos: 17.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5247 - type: CableApcExtension - components: - - pos: 8.5,-5.5 - parent: 1 - type: Transform -- uid: 5248 - type: CableMV - components: - - pos: 8.5,-8.5 - parent: 1 - type: Transform -- uid: 5249 - type: CableApcExtension - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform -- uid: 5250 - type: CableApcExtension - components: - - pos: -8.5,-22.5 - parent: 1 - type: Transform -- uid: 5251 - type: CableApcExtension - components: - - pos: -11.5,-22.5 - parent: 1 - type: Transform -- uid: 5252 - type: AirlockEngineeringLocked - components: - - name: solar - type: MetaData - - pos: -1.5,-76.5 - parent: 1 - type: Transform -- uid: 5253 - type: SolarPanel - components: - - pos: 10.5,-95.5 - parent: 1 - type: Transform -- uid: 5254 - type: WallSolid - components: - - pos: -3.5,-70.5 - parent: 1 - type: Transform -- uid: 5255 - type: CableApcExtension - components: - - pos: -15.5,-66.5 - parent: 1 - type: Transform -- uid: 5256 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 10.5,1.5 - parent: 1 - type: Transform -- uid: 5257 - type: SheetPlasma1 - components: - - pos: 6.518474,-46.02483 - parent: 1 - type: Transform - - count: 2 - type: Stack -- uid: 5258 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5259 - type: WallReinforced - components: - - pos: -23.5,-0.5 - parent: 1 - type: Transform -- uid: 5260 - type: CableHV - components: - - pos: 35.5,-38.5 - parent: 1 - type: Transform -- uid: 5261 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5262 - type: AirlockGlass - components: - - pos: -20.5,-24.5 - parent: 1 - type: Transform -- uid: 5263 - type: WallSolid - components: - - pos: -17.5,-37.5 - parent: 1 - type: Transform -- uid: 5264 - type: AirlockMaintKitchenLocked - components: - - pos: -1.5,14.5 - parent: 1 - type: Transform -- uid: 5265 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5266 - type: WallSolid - components: - - pos: -26.5,34.5 - parent: 1 - type: Transform -- uid: 5267 - type: WallSolid - components: - - pos: -28.5,37.5 - parent: 1 - type: Transform -- uid: 5268 - type: TableReinforced - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform -- uid: 5269 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 63.5,16.5 - parent: 1 - type: Transform -- uid: 5270 - type: CableApcExtension - components: - - pos: -4.5,-12.5 - parent: 1 - type: Transform -- uid: 5271 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5272 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 1 - type: Transform -- uid: 5273 - type: CableApcExtension - components: - - pos: 2.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5274 - type: PosterLegitHighClassMartini - components: - - pos: 8.5,11.5 - parent: 1 - type: Transform -- uid: 5275 - type: Catwalk - components: - - pos: -16.5,-34.5 - parent: 1 - type: Transform -- uid: 5276 - type: AirlockTheatreLocked - components: - - name: mime room - type: MetaData - - pos: -25.5,45.5 - parent: 1 - type: Transform -- uid: 5277 - type: WallSolid - components: - - pos: -2.5,-8.5 - parent: 1 - type: Transform -- uid: 5278 - type: WallSolid - components: - - pos: 3.5,4.5 - parent: 1 - type: Transform -- uid: 5279 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5280 - type: Bed - components: - - pos: -26.5,43.5 - parent: 1 - type: Transform -- uid: 5281 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 22.5,-9.5 - parent: 1 - type: Transform -- uid: 5282 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: -28.478912,45.366596 - parent: 1 - type: Transform -- uid: 5283 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5284 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5285 - type: Poweredlight - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5286 - type: KitchenMicrowave - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform -- uid: 5287 - type: CableMV - components: - - pos: -4.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5288 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5289 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5290 - type: CableApcExtension - components: - - pos: 22.5,-32.5 - parent: 1 - type: Transform -- uid: 5291 - type: WallSolid - components: - - pos: -9.5,4.5 - parent: 1 - type: Transform -- uid: 5292 - type: CableApcExtension - components: - - pos: -47.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5293 - type: WallSolid - components: - - pos: -9.5,-34.5 - parent: 1 - type: Transform -- uid: 5294 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-40.5 - parent: 1 - type: Transform -- uid: 5295 - type: WallReinforced - components: - - pos: -20.5,5.5 - parent: 1 - type: Transform -- uid: 5296 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: -8.5,-4.5 - parent: 1 - type: Transform -- uid: 5297 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-40.5 - parent: 1 - type: Transform -- uid: 5298 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 41.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5299 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 26.5,-19.5 - parent: 1 - type: Transform -- uid: 5300 - type: Dresser - components: - - pos: -26.5,46.5 - parent: 1 - type: Transform -- uid: 5301 - type: CarpetSBlue - components: - - pos: 27.5,-22.5 - parent: 1 - type: Transform -- uid: 5302 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5303 - type: GasPipeStraight - components: - - pos: 24.5,-30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5304 - type: WallSolid - components: - - pos: -7.5,-28.5 - parent: 1 - type: Transform -- uid: 5305 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5306 - type: PosterLegitSecWatch - components: - - pos: 18.5,-9.5 - parent: 1 - type: Transform -- uid: 5307 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5308 - type: CableHV - components: - - pos: 26.5,-42.5 - parent: 1 - type: Transform -- uid: 5309 - type: PosterLegitFruitBowl - components: - - pos: -4.5,9.5 - parent: 1 - type: Transform -- uid: 5310 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: -28.478912,45.366596 - parent: 1 - type: Transform -- uid: 5311 - type: FirelockGlass - components: - - pos: 26.5,-31.5 - parent: 1 - type: Transform -- uid: 5312 - type: CableHV - components: - - pos: -13.5,-26.5 - parent: 1 - type: Transform -- uid: 5313 - type: CableHV - components: - - pos: -10.5,-26.5 - parent: 1 - type: Transform -- uid: 5314 - type: RandomPosterContraband - components: - - pos: -48.5,-73.5 - parent: 1 - type: Transform -- uid: 5315 - type: CableApcExtension - components: - - pos: -10.5,-19.5 - parent: 1 - type: Transform -- uid: 5316 - type: CableApcExtension - components: - - pos: 29.5,-42.5 - parent: 1 - type: Transform -- uid: 5317 - type: AirlockGlass - components: - - pos: 35.5,0.5 - parent: 1 - type: Transform -- uid: 5318 - type: ClothingHeadHelmetEVA - components: - - pos: 33.772083,-11.282831 - parent: 1 - type: Transform -- uid: 5319 - type: DisposalUnit - components: - - pos: 20.5,-23.5 - parent: 1 - type: Transform -- uid: 5320 - type: GasVentPump - components: - - pos: -29.5,-70.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5321 - type: CableApcExtension - components: - - pos: 67.5,-13.5 - parent: 1 - type: Transform -- uid: 5322 - type: SignRedSix - components: - - pos: 60.5,20.5 - parent: 1 - type: Transform -- uid: 5323 - type: CableHV - components: - - pos: -5.5,-34.5 - parent: 1 - type: Transform -- uid: 5324 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 13.5,18.5 - parent: 1 - type: Transform -- uid: 5325 - type: CableHV - components: - - pos: -5.5,-41.5 - parent: 1 - type: Transform -- uid: 5326 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 1 - type: Transform -- uid: 5327 - type: CableApcExtension - components: - - pos: 25.5,-46.5 - parent: 1 - type: Transform -- uid: 5328 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 22.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5329 - type: WallSolid - components: - - pos: 15.5,1.5 - parent: 1 - type: Transform -- uid: 5330 - type: CableApcExtension - components: - - pos: -5.5,-72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5331 - type: CableApcExtension - components: - - pos: -7.5,10.5 - parent: 1 - type: Transform -- uid: 5332 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,14.5 - parent: 1 - type: Transform -- uid: 5333 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-80.5 - parent: 1 - type: Transform -- uid: 5334 - type: ReinforcedWindow - components: - - pos: 37.5,-36.5 - parent: 1 - type: Transform -- uid: 5335 - type: CableApcExtension - components: - - pos: 15.5,-42.5 - parent: 1 - type: Transform -- uid: 5336 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-78.5 - parent: 1 - type: Transform -- uid: 5337 - type: CableApcExtension - components: - - pos: 2.5,-68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5338 - type: RailingCorner - components: - - rot: 1.5707963267948966 rad - pos: 12.5,1.5 - parent: 1 - type: Transform -- uid: 5339 - type: CableApcExtension - components: - - pos: 7.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5340 - type: CableApcExtension - components: - - pos: -2.5,-26.5 - parent: 1 - type: Transform -- uid: 5341 - type: CableApcExtension - components: - - pos: 12.5,-7.5 - parent: 1 - type: Transform -- uid: 5342 - type: CableApcExtension - components: - - pos: 15.5,-39.5 - parent: 1 - type: Transform -- uid: 5343 - type: TableWood - components: - - pos: -19.5,-54.5 - parent: 1 - type: Transform -- uid: 5344 - type: SolarPanel - components: - - pos: 12.5,-101.5 - parent: 1 - type: Transform -- uid: 5345 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5346 - type: Welder - components: - - pos: -23.377909,-24.435646 - parent: 1 - type: Transform -- uid: 5347 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -12.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5348 - type: AirlockMaintLocked - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-33.5 - parent: 1 - type: Transform -- uid: 5349 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-24.5 - parent: 1 - type: Transform -- uid: 5350 - type: CableHV - components: - - pos: 13.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5351 - type: CableApcExtension - components: - - pos: 29.5,-60.5 - parent: 1 - type: Transform -- uid: 5352 - type: ComputerStationRecords - components: - - pos: 24.5,-24.5 - parent: 1 - type: Transform -- uid: 5353 - type: TableReinforced - components: - - pos: 39.5,49.5 - parent: 1 - type: Transform -- uid: 5354 - type: CableHV - components: - - pos: 12.5,-55.5 - parent: 1 - type: Transform -- uid: 5355 - type: CableHV - components: - - pos: 8.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5356 - type: Catwalk - components: - - pos: 4.5,-67.5 - parent: 1 - type: Transform -- uid: 5357 - type: CableApcExtension - components: - - pos: 30.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5358 - type: CableApcExtension - components: - - pos: 3.5,-67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5359 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -17.5,5.5 - parent: 1 - type: Transform -- uid: 5360 - type: CableMV - components: - - pos: 10.5,-49.5 - parent: 1 - type: Transform -- uid: 5361 - type: CableApcExtension - components: - - pos: 15.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5362 - type: CableApcExtension - components: - - pos: 17.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5363 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 46.5,-30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5364 - type: CableApcExtension - components: - - pos: -3.5,-26.5 - parent: 1 - type: Transform -- uid: 5365 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: 17.5,15.5 - parent: 1 - type: Transform -- uid: 5366 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 23.5,34.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: space armory - type: SurveillanceCamera -- uid: 5367 - type: Table - components: - - pos: 33.5,-10.5 - parent: 1 - type: Transform -- uid: 5368 - type: CableMV - components: - - pos: 19.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5369 - type: CableMV - components: - - pos: 17.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5370 - type: CableMV - components: - - pos: 15.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5371 - type: CableMV - components: - - pos: 14.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5372 - type: CableApcExtension - components: - - pos: 1.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5373 - type: FoodTartMime - components: - - pos: -28.494537,45.97597 - parent: 1 - type: Transform -- uid: 5374 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 19.5,-19.5 - parent: 1 - type: Transform -- uid: 5375 - type: CableApcExtension - components: - - pos: -8.5,-26.5 - parent: 1 - type: Transform -- uid: 5376 - type: Grille - components: - - pos: 7.5,-61.5 - parent: 1 - type: Transform -- uid: 5377 - type: Intercom - components: - - pos: 37.5,-69.5 - parent: 1 - type: Transform -- uid: 5378 - type: Firelock - components: - - pos: -47.5,-27.5 - parent: 1 - type: Transform -- uid: 5379 - type: PoweredlightSodium - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-65.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5380 - type: Firelock - components: - - pos: -11.5,-24.5 - parent: 1 - type: Transform -- uid: 5381 - type: FirelockGlass - components: - - pos: -3.5,-22.5 - parent: 1 - type: Transform -- uid: 5382 - type: FirelockGlass - components: - - pos: -0.5,-26.5 - parent: 1 - type: Transform -- uid: 5383 - type: CableMV - components: - - pos: 14.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5384 - type: CableMV - components: - - pos: 14.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5385 - type: ShuttersNormalOpen - components: - - pos: 17.5,15.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -57047.77 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 3189 - Close: - - port: Off - uid: 3189 - Toggle: [] - type: SignalReceiver -- uid: 5386 - type: CableMV - components: - - pos: 13.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5387 - type: CableMV - components: - - pos: 11.5,-49.5 - parent: 1 - type: Transform -- uid: 5388 - type: CableHV - components: - - pos: -11.5,-42.5 - parent: 1 - type: Transform -- uid: 5389 - type: CableApcExtension - components: - - pos: -4.5,1.5 - parent: 1 - type: Transform -- uid: 5390 - type: CableHV - components: - - pos: -8.5,-26.5 - parent: 1 - type: Transform -- uid: 5391 - type: ClosetFireFilled - components: - - pos: 24.5,-55.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5392 - type: ConveyorBelt - components: - - pos: 15.5,-54.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 2598 - Forward: - - port: Left - uid: 2598 - Off: - - port: Middle - uid: 2598 - type: SignalReceiver -- uid: 5393 - type: PosterLegitWorkForAFuture - components: - - pos: 23.5,-38.5 - parent: 1 - type: Transform -- uid: 5394 - type: TableReinforced - components: - - pos: 38.5,49.5 - parent: 1 - type: Transform -- uid: 5395 - type: WallSolid - components: - - pos: -17.5,-16.5 - parent: 1 - type: Transform -- uid: 5396 - type: WallReinforced - components: - - pos: 40.5,52.5 - parent: 1 - type: Transform -- uid: 5397 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 1 - type: Transform -- uid: 5398 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 31.5,-5.5 - parent: 1 - type: Transform -- uid: 5399 - type: AirSensor - components: - - pos: 0.5,11.5 - parent: 1 - type: Transform -- uid: 5400 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5401 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: 26.5,19.5 - parent: 1 - type: Transform -- uid: 5402 - type: WallReinforced - components: - - pos: 1.5,-74.5 - parent: 1 - type: Transform -- uid: 5403 - type: CableHV - components: - - pos: -13.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5404 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-0.5 - parent: 1 - type: Transform -- uid: 5405 - type: LockerSecurity - components: - - pos: 19.5,-47.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5406 - type: Catwalk - components: - - pos: 1.5,-89.5 - parent: 1 - type: Transform -- uid: 5407 - type: CarpetBlue - components: - - pos: -19.5,-55.5 - parent: 1 - type: Transform -- uid: 5408 - type: CableApcExtension - components: - - pos: 8.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5409 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5410 - type: CableHV - components: - - pos: 25.5,-47.5 - parent: 1 - type: Transform -- uid: 5411 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5412 - type: CableApcExtension - components: - - pos: 30.5,-61.5 - parent: 1 - type: Transform -- uid: 5413 - type: CableApcExtension - components: - - pos: -16.5,-21.5 - parent: 1 - type: Transform -- uid: 5414 - type: CableApcExtension - components: - - pos: -4.5,-24.5 - parent: 1 - type: Transform -- uid: 5415 - type: CableApcExtension - components: - - pos: -4.5,-23.5 - parent: 1 - type: Transform -- uid: 5416 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-5.5 - parent: 1 - type: Transform -- uid: 5417 - type: CableApcExtension - components: - - pos: -4.5,-30.5 - parent: 1 - type: Transform -- uid: 5418 - type: CableApcExtension - components: - - pos: -4.5,-29.5 - parent: 1 - type: Transform -- uid: 5419 - type: CableApcExtension - components: - - pos: -4.5,-31.5 - parent: 1 - type: Transform -- uid: 5420 - type: CableApcExtension - components: - - pos: -9.5,-26.5 - parent: 1 - type: Transform -- uid: 5421 - type: CableApcExtension - components: - - pos: -11.5,-26.5 - parent: 1 - type: Transform -- uid: 5422 - type: CableApcExtension - components: - - pos: -15.5,-20.5 - parent: 1 - type: Transform -- uid: 5423 - type: CableApcExtension - components: - - pos: -15.5,-19.5 - parent: 1 - type: Transform -- uid: 5424 - type: Window - components: - - pos: -10.5,-16.5 - parent: 1 - type: Transform -- uid: 5425 - type: CableApcExtension - components: - - pos: -15.5,-16.5 - parent: 1 - type: Transform -- uid: 5426 - type: CableHV - components: - - pos: -5.5,-31.5 - parent: 1 - type: Transform -- uid: 5427 - type: CableHV - components: - - pos: -5.5,-33.5 - parent: 1 - type: Transform -- uid: 5428 - type: CableHV - components: - - pos: -14.5,-26.5 - parent: 1 - type: Transform -- uid: 5429 - type: CableHV - components: - - pos: -15.5,-26.5 - parent: 1 - type: Transform -- uid: 5430 - type: CableHV - components: - - pos: -3.5,-26.5 - parent: 1 - type: Transform -- uid: 5431 - type: CableHV - components: - - pos: -2.5,-26.5 - parent: 1 - type: Transform -- uid: 5432 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 39.5,9.5 - parent: 1 - type: Transform -- uid: 5433 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 32.5,30.5 - parent: 1 - type: Transform -- uid: 5434 - type: Bed - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform -- uid: 5435 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 1 - type: Transform -- uid: 5436 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 31.5,28.5 - parent: 1 - type: Transform -- uid: 5437 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 23.5,-38.5 - parent: 1 - type: Transform -- uid: 5438 - type: CableApcExtension - components: - - pos: 46.5,-23.5 - parent: 1 - type: Transform -- uid: 5439 - type: CableApcExtension - components: - - pos: 1.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5440 - type: CableHV - components: - - pos: -0.5,-26.5 - parent: 1 - type: Transform -- uid: 5441 - type: CableHV - components: - - pos: 9.5,-26.5 - parent: 1 - type: Transform -- uid: 5442 - type: Chair - components: - - pos: 21.5,6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 5443 - type: RandomPosterContraband - components: - - pos: -41.5,-65.5 - parent: 1 - type: Transform -- uid: 5444 - type: CableApcExtension - components: - - pos: 30.5,-60.5 - parent: 1 - type: Transform -- uid: 5445 - type: CableHV - components: - - pos: 13.5,-26.5 - parent: 1 - type: Transform -- uid: 5446 - type: CableHV - components: - - pos: 15.5,-29.5 - parent: 1 - type: Transform -- uid: 5447 - type: CableHV - components: - - pos: -4.5,-42.5 - parent: 1 - type: Transform -- uid: 5448 - type: CableHV - components: - - pos: -7.5,-42.5 - parent: 1 - type: Transform -- uid: 5449 - type: CableHV - components: - - pos: -8.5,-42.5 - parent: 1 - type: Transform -- uid: 5450 - type: CableHV - components: - - pos: -10.5,-42.5 - parent: 1 - type: Transform -- uid: 5451 - type: CableHV - components: - - pos: -12.5,-42.5 - parent: 1 - type: Transform -- uid: 5452 - type: CableHV - components: - - pos: -13.5,-42.5 - parent: 1 - type: Transform -- uid: 5453 - type: CableMV - components: - - pos: 8.5,-49.5 - parent: 1 - type: Transform -- uid: 5454 - type: Rack - components: - - pos: 29.5,-11.5 - parent: 1 - type: Transform -- uid: 5455 - type: FirelockGlass - components: - - pos: -20.5,-39.5 - parent: 1 - type: Transform -- uid: 5456 - type: FirelockGlass - components: - - pos: 10.5,-27.5 - parent: 1 - type: Transform -- uid: 5457 - type: AirlockGlass - components: - - pos: -3.5,-22.5 - parent: 1 - type: Transform -- uid: 5458 - type: CableHV - components: - - pos: -15.5,-42.5 - parent: 1 - type: Transform -- uid: 5459 - type: CableHV - components: - - pos: -12.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5460 - type: CableHV - components: - - pos: -8.5,-75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5461 - type: Grille - components: - - pos: 26.5,-3.5 - parent: 1 - type: Transform -- uid: 5462 - type: CableApcExtension - components: - - pos: 9.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5463 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 25.5,-19.5 - parent: 1 - type: Transform -- uid: 5464 - type: PosterContrabandSpaceCube - components: - - pos: -14.5,-32.5 - parent: 1 - type: Transform -- uid: 5465 - type: CableApcExtension - components: - - pos: 38.5,-25.5 - parent: 1 - type: Transform -- uid: 5466 - type: CableApcExtension - components: - - pos: 41.5,-25.5 - parent: 1 - type: Transform -- uid: 5467 - type: CarpetBlue - components: - - pos: -19.5,-56.5 - parent: 1 - type: Transform -- uid: 5468 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5469 - type: SpawnMobMouse - components: - - pos: -28.5,-41.5 - parent: 1 - type: Transform -- uid: 5470 - type: FirelockGlass - components: - - pos: -15.5,-58.5 - parent: 1 - type: Transform -- uid: 5471 - type: CableHV - components: - - pos: -18.5,-42.5 - parent: 1 - type: Transform -- uid: 5472 - type: Catwalk - components: - - pos: 8.5,-55.5 - parent: 1 - type: Transform -- uid: 5473 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5474 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5475 - type: CableApcExtension - components: - - pos: 14.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5476 - type: CableApcExtension - components: - - pos: 24.5,-53.5 - parent: 1 - type: Transform -- uid: 5477 - type: CableApcExtension - components: - - pos: 25.5,-51.5 - parent: 1 - type: Transform -- uid: 5478 - type: PillSpaceDrugs - components: - - pos: -8.5,-32.5 - parent: 1 - type: Transform -- uid: 5479 - type: Window - components: - - pos: 42.5,-0.5 - parent: 1 - type: Transform -- uid: 5480 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 11.5,-92.5 - parent: 1 - type: Transform -- uid: 5481 - type: CableApcExtension - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform -- uid: 5482 - type: Table - components: - - pos: 40.5,-6.5 - parent: 1 - type: Transform -- uid: 5483 - type: WallSolid - components: - - pos: -17.5,-32.5 - parent: 1 - type: Transform -- uid: 5484 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5485 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -16.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5486 - type: WallSolid - components: - - pos: -25.5,42.5 - parent: 1 - type: Transform -- uid: 5487 - type: ReinforcedWindow - components: - - pos: -29.5,45.5 - parent: 1 - type: Transform -- uid: 5488 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: -28.478912,45.366596 - parent: 1 - type: Transform -- uid: 5489 - type: Firelock - components: - - pos: 31.5,-44.5 - parent: 1 - type: Transform -- uid: 5490 - type: TableWood - components: - - pos: -28.5,44.5 - parent: 1 - type: Transform -- uid: 5491 - type: Grille - components: - - pos: -13.5,37.5 - parent: 1 - type: Transform -- uid: 5492 - type: WallReinforced - components: - - pos: -29.5,44.5 - parent: 1 - type: Transform -- uid: 5493 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5494 - type: WallSolid - components: - - pos: -28.5,36.5 - parent: 1 - type: Transform -- uid: 5495 - type: ComputerTelevision - components: - - pos: -28.5,43.5 - parent: 1 - type: Transform -- uid: 5496 - type: CableApcExtension - components: - - pos: -9.5,-75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5497 - type: CableApcExtension - components: - - pos: 24.5,-39.5 - parent: 1 - type: Transform -- uid: 5498 - type: FlashlightLantern - components: - - pos: 6.4653053,-69.51486 - parent: 1 - type: Transform -- uid: 5499 - type: FirelockGlass - components: - - pos: 1.5,4.5 - parent: 1 - type: Transform -- uid: 5500 - type: WallSolid - components: - - pos: -4.5,-70.5 - parent: 1 - type: Transform -- uid: 5501 - type: SignRedSix - components: - - pos: 51.40693,41.505035 - parent: 1 - type: Transform -- uid: 5502 - type: GasPipeStraight - components: - - pos: -20.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5503 - type: Grille - components: - - pos: -15.5,-77.5 - parent: 1 - type: Transform -- uid: 5504 - type: WallReinforced - components: - - pos: 40.5,17.5 - parent: 1 - type: Transform -- uid: 5505 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -3.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5506 - type: GasPipeTJunction - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5507 - type: CableHV - components: - - pos: 15.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5508 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -4.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5509 - type: WallSolid - components: - - pos: -4.5,-71.5 - parent: 1 - type: Transform -- uid: 5510 - type: WallSolid - components: - - pos: 39.5,-52.5 - parent: 1 - type: Transform -- uid: 5511 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 48.5,-22.5 - parent: 1 - type: Transform -- uid: 5512 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-25.5 - parent: 1 - type: Transform -- uid: 5513 - type: APCHighCapacity - components: - - pos: 8.5,-3.5 - parent: 1 - type: Transform -- uid: 5514 - type: GasPipeStraight - components: - - pos: 26.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5515 - type: GasPipeStraight - components: - - pos: 26.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5516 - type: WallSolid - components: - - pos: -0.5,4.5 - parent: 1 - type: Transform -- uid: 5517 - type: CableHV - components: - - pos: 25.5,-50.5 - parent: 1 - type: Transform -- uid: 5518 - type: WallSolid - components: - - pos: -4.5,-72.5 - parent: 1 - type: Transform -- uid: 5519 - type: Firelock - components: - - pos: 3.5,-8.5 - parent: 1 - type: Transform -- uid: 5520 - type: WallReinforced - components: - - pos: -15.5,-74.5 - parent: 1 - type: Transform -- uid: 5521 - type: Grille - components: - - pos: 3.5,-79.5 - parent: 1 - type: Transform -- uid: 5522 - type: AirlockGlass - components: - - pos: -19.5,-24.5 - parent: 1 - type: Transform -- uid: 5523 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5524 - type: GasPipeStraight - components: - - pos: 2.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5525 - type: ClothingNeckScarfStripedZebra - components: - - pos: -28.25746,44.644928 - parent: 1 - type: Transform -- uid: 5526 - type: GasPipeStraight - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5527 - type: GasPipeStraight - components: - - pos: -3.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5528 - type: CableHV - components: - - pos: 9.5,-92.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5529 - type: CableApcExtension - components: - - pos: 25.5,-1.5 - parent: 1 - type: Transform -- uid: 5530 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -0.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5531 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 48.5,-24.5 - parent: 1 - type: Transform -- uid: 5532 - type: Firelock - components: - - pos: 26.5,-26.5 - parent: 1 - type: Transform -- uid: 5533 - type: Grille - components: - - pos: 19.5,2.5 - parent: 1 - type: Transform -- uid: 5534 - type: CarpetSBlue - components: - - pos: 26.5,-22.5 - parent: 1 - type: Transform -- uid: 5535 - type: CableApcExtension - components: - - pos: 3.5,-5.5 - parent: 1 - type: Transform -- uid: 5536 - type: CableHV - components: - - pos: 13.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5537 - type: AirlockMaintSecLocked - components: - - name: detective agency - type: MetaData - - pos: 20.5,-9.5 - parent: 1 - type: Transform -- uid: 5538 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5539 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,-15.5 - parent: 1 - type: Transform -- uid: 5540 - type: GasPipeStraight - components: - - pos: -3.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5541 - type: WaterTankHighCapacity - components: - - pos: -5.5,8.5 - parent: 1 - type: Transform -- uid: 5542 - type: ReinforcedWindow - components: - - pos: 9.5,14.5 - parent: 1 - type: Transform -- uid: 5543 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 27.5,10.5 - parent: 1 - type: Transform -- uid: 5544 - type: WallReinforced - components: - - pos: -15.5,1.5 - parent: 1 - type: Transform -- uid: 5545 - type: WallReinforced - components: - - pos: -15.5,0.5 - parent: 1 - type: Transform -- uid: 5546 - type: Firelock - components: - - pos: 14.5,17.5 - parent: 1 - type: Transform -- uid: 5547 - type: Catwalk - components: - - pos: 3.5,-67.5 - parent: 1 - type: Transform -- uid: 5548 - type: CarpetBlue - components: - - pos: -18.5,-54.5 - parent: 1 - type: Transform -- uid: 5549 - type: CableApcExtension - components: - - pos: 2.5,-67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5550 - type: CarpetSBlue - components: - - pos: 24.5,-24.5 - parent: 1 - type: Transform -- uid: 5551 - type: GasPipeStraight - components: - - pos: 47.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5552 - type: FlashlightSeclite - components: - - pos: 17.395416,21.653858 - parent: 1 - type: Transform -- uid: 5553 - type: SubstationBasic - components: - - pos: 19.5,-27.5 - parent: 1 - type: Transform -- uid: 5554 - type: WallReinforced - components: - - pos: 38.5,52.5 - parent: 1 - type: Transform -- uid: 5555 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5556 - type: CableApcExtension - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform -- uid: 5557 - type: Catwalk - components: - - pos: 5.5,-67.5 - parent: 1 - type: Transform -- uid: 5558 - type: GasPipeTJunction - components: - - pos: -20.5,-88.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5559 - type: WallSolid - components: - - pos: 16.5,-49.5 - parent: 1 - type: Transform -- uid: 5560 - type: FirelockGlass - components: - - pos: -4.5,-22.5 - parent: 1 - type: Transform -- uid: 5561 - type: FirelockGlass - components: - - pos: 7.5,8.5 - parent: 1 - type: Transform -- uid: 5562 - type: CableApcExtension - components: - - pos: -5.5,-26.5 - parent: 1 - type: Transform -- uid: 5563 - type: CableApcExtension - components: - - pos: 25.5,-58.5 - parent: 1 - type: Transform -- uid: 5564 - type: CableApcExtension - components: - - pos: 25.5,-59.5 - parent: 1 - type: Transform -- uid: 5565 - type: Table - components: - - pos: 5.5,15.5 - parent: 1 - type: Transform -- uid: 5566 - type: TableReinforced - components: - - pos: 36.5,49.5 - parent: 1 - type: Transform -- uid: 5567 - type: CableApcExtension - components: - - pos: 26.5,-60.5 - parent: 1 - type: Transform -- uid: 5568 - type: CableApcExtension - components: - - pos: 28.5,-42.5 - parent: 1 - type: Transform -- uid: 5569 - type: CableApcExtension - components: - - pos: 8.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5570 - type: AirlockHeadOfSecurityGlassLocked - components: - - name: hos office - type: MetaData - - rot: -1.5707963267948966 rad - pos: 6.5,18.5 - parent: 1 - type: Transform -- uid: 5571 - type: CableApcExtension - components: - - pos: 19.5,-47.5 - parent: 1 - type: Transform -- uid: 5572 - type: AirlockGlass - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-19.5 - parent: 1 - type: Transform -- uid: 5573 - type: WallSolid - components: - - pos: 16.5,-50.5 - parent: 1 - type: Transform -- uid: 5574 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,-13.5 - parent: 1 - type: Transform -- uid: 5575 - type: CableHV - components: - - pos: 34.5,-42.5 - parent: 1 - type: Transform -- uid: 5576 - type: CableHV - components: - - pos: 35.5,-42.5 - parent: 1 - type: Transform -- uid: 5577 - type: CableHV - components: - - pos: 25.5,-45.5 - parent: 1 - type: Transform -- uid: 5578 - type: PillSpaceDrugs - components: - - pos: -8.5,-32.5 - parent: 1 - type: Transform -- uid: 5579 - type: CableHV - components: - - pos: 35.5,-32.5 - parent: 1 - type: Transform -- uid: 5580 - type: CableHV - components: - - pos: 35.5,-36.5 - parent: 1 - type: Transform -- uid: 5581 - type: ComputerComms - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-30.5 - parent: 1 - type: Transform -- uid: 5582 - type: PillTricordrazine - components: - - pos: -8.503431,-32.256336 - parent: 1 - type: Transform -- uid: 5583 - type: FoodSoupClown - components: - - pos: 48.47484,-21.900894 - parent: 1 - type: Transform -- uid: 5584 - type: WallReinforced - components: - - pos: 43.5,-20.5 - parent: 1 - type: Transform -- uid: 5585 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5586 - type: IngotGold - components: - - pos: 48.16234,-27.566782 - parent: 1 - type: Transform -- uid: 5587 - type: CableHV - components: - - pos: 70.5,-46.5 - parent: 1 - type: Transform -- uid: 5588 - type: ToyRubberDuck - components: - - pos: 48.50609,-28.286053 - parent: 1 - type: Transform -- uid: 5589 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 48.5,-29.5 - parent: 1 - type: Transform -- uid: 5590 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 47.5,-27.5 - parent: 1 - type: Transform -- uid: 5591 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5592 - type: WallSolid - components: - - pos: 14.5,-55.5 - parent: 1 - type: Transform -- uid: 5593 - type: WallSolid - components: - - pos: -17.5,-17.5 - parent: 1 - type: Transform -- uid: 5594 - type: CarpetSBlue - components: - - pos: 24.5,-23.5 - parent: 1 - type: Transform -- uid: 5595 - type: Firelock - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-41.5 - parent: 1 - type: Transform -- uid: 5596 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5597 - type: CableHV - components: - - pos: -12.5,-74.5 - parent: 1 - type: Transform -- uid: 5598 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5599 - type: WallSolid - components: - - pos: 9.5,-50.5 - parent: 1 - type: Transform -- uid: 5600 - type: CableHV - components: - - pos: -0.5,-72.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5601 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 8.5,-51.5 - parent: 1 - type: Transform -- uid: 5602 - type: CableApcExtension - components: - - pos: 25.5,2.5 - parent: 1 - type: Transform -- uid: 5603 - type: CableApcExtension - components: - - pos: -1.5,-74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5604 - type: CableApcExtension - components: - - pos: 30.5,1.5 - parent: 1 - type: Transform -- uid: 5605 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5606 - type: CableApcExtension - components: - - pos: -1.5,-76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5607 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: 35.5,13.5 - parent: 1 - type: Transform -- uid: 5608 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 32.5,-7.5 - parent: 1 - type: Transform -- uid: 5609 - type: FirelockGlass - components: - - pos: 35.5,1.5 - parent: 1 - type: Transform -- uid: 5610 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-20.5 - parent: 1 - type: Transform -- uid: 5611 - type: WallSolid - components: - - pos: -21.5,-24.5 - parent: 1 - type: Transform -- uid: 5612 - type: Window - components: - - pos: -21.5,-20.5 - parent: 1 - type: Transform -- uid: 5613 - type: CableApcExtension - components: - - pos: -5.5,-74.5 - parent: 1 - type: Transform -- uid: 5614 - type: WallSolid - components: - - pos: 41.5,-57.5 - parent: 1 - type: Transform -- uid: 5615 - type: Pen - components: - - rot: -1.5707963267948966 rad - pos: -4.7918606,-48.471176 - parent: 1 - type: Transform -- uid: 5616 - type: AirlockAtmosphericsGlassLocked - components: - - name: atmos - type: MetaData - - pos: -21.5,-32.5 - parent: 1 - type: Transform -- uid: 5617 - type: CableApcExtension - components: - - pos: -5.5,-71.5 - parent: 1 - type: Transform -- uid: 5618 - type: CableApcExtension - components: - - pos: 31.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5619 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,13.5 - parent: 1 - type: Transform -- uid: 5620 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5621 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5622 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 37.5,13.5 - parent: 1 - type: Transform -- uid: 5623 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-63.5 - parent: 1 - type: Transform -- uid: 5624 - type: CableApcExtension - components: - - pos: 19.5,-42.5 - parent: 1 - type: Transform -- uid: 5625 - type: CableHV - components: - - pos: 11.5,-105.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5626 - type: LockerEvidence - components: - - pos: 37.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5627 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5628 - type: CableHV - components: - - pos: -1.5,-86.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5629 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5630 - type: Grille - components: - - pos: 34.5,9.5 - parent: 1 - type: Transform -- uid: 5631 - type: Grille - components: - - pos: 35.5,4.5 - parent: 1 - type: Transform -- uid: 5632 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 23.5,-19.5 - parent: 1 - type: Transform -- uid: 5633 - type: Grille - components: - - pos: 1.5,-56.5 - parent: 1 - type: Transform -- uid: 5634 - type: Grille - components: - - pos: 1.5,-57.5 - parent: 1 - type: Transform -- uid: 5635 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-27.5 - parent: 1 - type: Transform -- uid: 5636 - type: CableHV - components: - - pos: -16.5,-26.5 - parent: 1 - type: Transform -- uid: 5637 - type: CableHV - components: - - pos: 11.5,-26.5 - parent: 1 - type: Transform -- uid: 5638 - type: AirlockGlass - components: - - pos: -5.5,-22.5 - parent: 1 - type: Transform -- uid: 5639 - type: FirelockGlass - components: - - pos: 10.5,-25.5 - parent: 1 - type: Transform -- uid: 5640 - type: CableApcExtension - components: - - pos: 4.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5641 - type: CableHV - components: - - pos: -17.5,-42.5 - parent: 1 - type: Transform -- uid: 5642 - type: CableHV - components: - - pos: -9.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5643 - type: Grille - components: - - pos: -10.5,-56.5 - parent: 1 - type: Transform -- uid: 5644 - type: Grille - components: - - pos: -13.5,-57.5 - parent: 1 - type: Transform -- uid: 5645 - type: Grille - components: - - pos: -4.5,-44.5 - parent: 1 - type: Transform -- uid: 5646 - type: Grille - components: - - pos: -5.5,-44.5 - parent: 1 - type: Transform -- uid: 5647 - type: Grille - components: - - pos: 5.5,-44.5 - parent: 1 - type: Transform -- uid: 5648 - type: Grille - components: - - pos: 4.5,-44.5 - parent: 1 - type: Transform -- uid: 5649 - type: WallReinforced - components: - - pos: 0.5,-39.5 - parent: 1 - type: Transform -- uid: 5650 - type: WallReinforced - components: - - pos: 4.5,-39.5 - parent: 1 - type: Transform -- uid: 5651 - type: CableApcExtension - components: - - pos: -17.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5652 - type: ExtinguisherCabinetFilled - components: - - pos: -20.5,53.5 - parent: 1 - type: Transform -- uid: 5653 - type: CableApcExtension - components: - - pos: 10.5,-42.5 - parent: 1 - type: Transform -- uid: 5654 - type: ExtinguisherCabinetFilled - components: - - pos: -13.5,32.5 - parent: 1 - type: Transform -- uid: 5655 - type: Poweredlight - components: - - pos: -21.5,-84.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5656 - type: CableApcExtension - components: - - pos: -14.5,-47.5 - parent: 1 - type: Transform -- uid: 5657 - type: CableApcExtension - components: - - pos: -12.5,-49.5 - parent: 1 - type: Transform -- uid: 5658 - type: CableApcExtension - components: - - pos: -13.5,-49.5 - parent: 1 - type: Transform -- uid: 5659 - type: CableApcExtension - components: - - pos: -13.5,-48.5 - parent: 1 - type: Transform -- uid: 5660 - type: CableApcExtension - components: - - pos: -13.5,-47.5 - parent: 1 - type: Transform -- uid: 5661 - type: CableApcExtension - components: - - pos: -12.5,-47.5 - parent: 1 - type: Transform -- uid: 5662 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-24.5 - parent: 1 - type: Transform -- uid: 5663 - type: BoxSyringe - components: - - pos: 2.6296678,-50.451572 - parent: 1 - type: Transform -- uid: 5664 - type: CableHV - components: - - pos: 6.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5665 - type: WallSolid - components: - - pos: 36.5,-0.5 - parent: 1 - type: Transform -- uid: 5666 - type: WallReinforced - components: - - pos: 2.5,15.5 - parent: 1 - type: Transform -- uid: 5667 - type: WallSolid - components: - - pos: -6.5,15.5 - parent: 1 - type: Transform -- uid: 5668 - type: WallSolidRust - components: - - rot: -1.5707963267948966 rad - pos: -10.5,14.5 - parent: 1 - type: Transform -- uid: 5669 - type: AirlockBrigGlassLocked - components: - - name: brig - type: MetaData - - pos: 41.5,3.5 - parent: 1 - type: Transform -- uid: 5670 - type: WardrobeBotanistFilled - components: - - pos: -4.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5671 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5672 - type: WallSolid - components: - - pos: 9.5,-54.5 - parent: 1 - type: Transform -- uid: 5673 - type: GasPipeStraight - components: - - pos: 26.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5674 - type: GasPipeStraight - components: - - pos: 26.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5675 - type: WallSolid - components: - - pos: -17.5,-15.5 - parent: 1 - type: Transform -- uid: 5676 - type: CableMV - components: - - pos: 19.5,-28.5 - parent: 1 - type: Transform -- uid: 5677 - type: DisposalPipe - components: - - pos: 18.5,-28.5 - parent: 1 - type: Transform -- uid: 5678 - type: CableHV - components: - - pos: 19.5,-28.5 - parent: 1 - type: Transform -- uid: 5679 - type: AirlockMaintCommandLocked - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-32.5 - parent: 1 - type: Transform -- uid: 5680 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5681 - type: CableApcExtension - components: - - pos: -10.5,-18.5 - parent: 1 - type: Transform -- uid: 5682 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-31.5 - parent: 1 - type: Transform -- uid: 5683 - type: CableHV - components: - - pos: -4.5,-19.5 - parent: 1 - type: Transform -- uid: 5684 - type: DrinkBottleOfNothingFull - components: - - pos: -28.300186,46.612503 - parent: 1 - type: Transform -- uid: 5685 - type: WallSolid - components: - - pos: 37.5,-40.5 - parent: 1 - type: Transform -- uid: 5686 - type: WallSolid - components: - - pos: 38.5,-40.5 - parent: 1 - type: Transform -- uid: 5687 - type: WallSolid - components: - - pos: 40.5,-40.5 - parent: 1 - type: Transform -- uid: 5688 - type: Table - components: - - pos: -62.5,-28.5 - parent: 1 - type: Transform -- uid: 5689 - type: ComputerFrame - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-36.5 - parent: 1 - type: Transform -- uid: 5690 - type: AirlockSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-44.5 - parent: 1 - type: Transform -- uid: 5691 - type: WallSolid - components: - - pos: 27.5,-46.5 - parent: 1 - type: Transform -- uid: 5692 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-49.5 - parent: 1 - type: Transform -- uid: 5693 - type: WallSolid - components: - - pos: 39.5,-40.5 - parent: 1 - type: Transform -- uid: 5694 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5695 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5696 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5697 - type: CarpetOrange - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-5.5 - parent: 1 - type: Transform -- uid: 5698 - type: CableMV - components: - - pos: 16.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5699 - type: CableMV - components: - - pos: 17.5,-14.5 - parent: 1 - type: Transform -- uid: 5700 - type: CableMV - components: - - pos: 17.5,-13.5 - parent: 1 - type: Transform -- uid: 5701 - type: CableMV - components: - - pos: 17.5,-12.5 - parent: 1 - type: Transform -- uid: 5702 - type: CableMV - components: - - pos: 19.5,-11.5 - parent: 1 - type: Transform -- uid: 5703 - type: CableMV - components: - - pos: 21.5,-11.5 - parent: 1 - type: Transform -- uid: 5704 - type: CableApcExtension - components: - - pos: 21.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5705 - type: CableApcExtension - components: - - pos: 20.5,-11.5 - parent: 1 - type: Transform -- uid: 5706 - type: CableApcExtension - components: - - pos: 20.5,-12.5 - parent: 1 - type: Transform -- uid: 5707 - type: CableHV - components: - - pos: -5.5,-32.5 - parent: 1 - type: Transform -- uid: 5708 - type: CableApcExtension - components: - - pos: 22.5,-41.5 - parent: 1 - type: Transform -- uid: 5709 - type: CableApcExtension - components: - - pos: 19.5,-13.5 - parent: 1 - type: Transform -- uid: 5710 - type: CableApcExtension - components: - - pos: 22.5,-11.5 - parent: 1 - type: Transform -- uid: 5711 - type: CableApcExtension - components: - - pos: 62.5,-8.5 - parent: 1 - type: Transform -- uid: 5712 - type: CableMV - components: - - pos: 5.5,-47.5 - parent: 1 - type: Transform -- uid: 5713 - type: CableApcExtension - components: - - pos: -3.5,-53.5 - parent: 1 - type: Transform -- uid: 5714 - type: CableApcExtension - components: - - pos: -14.5,-58.5 - parent: 1 - type: Transform -- uid: 5715 - type: CableApcExtension - components: - - pos: 8.5,-60.5 - parent: 1 - type: Transform -- uid: 5716 - type: CableApcExtension - components: - - pos: -8.5,-61.5 - parent: 1 - type: Transform -- uid: 5717 - type: IntercomMedical - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-70.5 - parent: 1 - type: Transform -- uid: 5718 - type: ReinforcedWindow - components: - - pos: -25.5,-91.5 - parent: 1 - type: Transform -- uid: 5719 - type: ReinforcedWindow - components: - - pos: -21.5,-91.5 - parent: 1 - type: Transform -- uid: 5720 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-89.5 - parent: 1 - type: Transform -- uid: 5721 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-89.5 - parent: 1 - type: Transform -- uid: 5722 - type: ClothingNeckMantleCMO - components: - - pos: -20.144634,-56.34305 - parent: 1 - type: Transform -- uid: 5723 - type: CableApcExtension - components: - - pos: -20.5,-88.5 - parent: 1 - type: Transform -- uid: 5724 - type: MagazinePistolSubMachineGunTopMounted - components: - - pos: 6.551134,22.646631 - parent: 1 - type: Transform -- uid: 5725 - type: SignRedThree - components: - - pos: 51.5,22.5 - parent: 1 - type: Transform -- uid: 5726 - type: SignRedSix - components: - - pos: 42.5,17.5 - parent: 1 - type: Transform -- uid: 5727 - type: DisposalPipe - components: - - pos: -23.5,-79.5 - parent: 1 - type: Transform -- uid: 5728 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -23.5,-84.5 - parent: 1 - type: Transform -- uid: 5729 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-84.5 - parent: 1 - type: Transform -- uid: 5730 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-75.5 - parent: 1 - type: Transform -- uid: 5731 - type: WallSolid - components: - - pos: -11.5,4.5 - parent: 1 - type: Transform -- uid: 5732 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-75.5 - parent: 1 - type: Transform -- uid: 5733 - type: DisposalUnit - components: - - pos: -25.5,-75.5 - parent: 1 - type: Transform -- uid: 5734 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-53.5 - parent: 1 - type: Transform -- uid: 5735 - type: ClothingBackpackDuffelMedical - components: - - pos: -2.4848266,-48.830677 - parent: 1 - type: Transform -- uid: 5736 - type: CableApcExtension - components: - - pos: 28.5,-60.5 - parent: 1 - type: Transform -- uid: 5737 - type: FoamBlade - components: - - pos: -14.780027,-76.18346 - parent: 1 - type: Transform -- uid: 5738 - type: CableApcExtension - components: - - pos: -8.5,-24.5 - parent: 1 - type: Transform -- uid: 5739 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-68.5 - parent: 1 - type: Transform -- uid: 5740 - type: CableApcExtension - components: - - pos: -4.5,-25.5 - parent: 1 - type: Transform -- uid: 5741 - type: VendingMachineSeeds - components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,5.5 - parent: 1 - type: Transform -- uid: 5742 - type: WallSolid - components: - - pos: -2.5,13.5 - parent: 1 - type: Transform -- uid: 5743 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-28.5 - parent: 1 - type: Transform -- uid: 5744 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5745 - type: WallReinforced - components: - - pos: 7.5,11.5 - parent: 1 - type: Transform -- uid: 5746 - type: Grille - components: - - pos: 18.5,32.5 - parent: 1 - type: Transform -- uid: 5747 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,12.5 - parent: 1 - type: Transform -- uid: 5748 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 21.5,5.5 - parent: 1 - type: Transform -- uid: 5749 - type: CableApcExtension - components: - - pos: 8.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5750 - type: CableApcExtension - components: - - pos: 8.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5751 - type: AirlockEngineeringLocked - components: - - name: substation - type: MetaData - - rot: 3.141592653589793 rad - pos: 13.5,-57.5 - parent: 1 - type: Transform -- uid: 5752 - type: CableApcExtension - components: - - pos: -17.5,-61.5 - parent: 1 - type: Transform -- uid: 5753 - type: CableApcExtension - components: - - pos: -18.5,-61.5 - parent: 1 - type: Transform -- uid: 5754 - type: CableHV - components: - - pos: 25.5,-48.5 - parent: 1 - type: Transform -- uid: 5755 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 1 - type: Transform -- uid: 5756 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,13.5 - parent: 1 - type: Transform -- uid: 5757 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 26.5,5.5 - parent: 1 - type: Transform -- uid: 5758 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 23.5,5.5 - parent: 1 - type: Transform -- uid: 5759 - type: WallReinforced - components: - - pos: 10.5,15.5 - parent: 1 - type: Transform -- uid: 5760 - type: CableApcExtension - components: - - pos: 20.5,0.5 - parent: 1 - type: Transform -- uid: 5761 - type: WallSolid - components: - - pos: 28.5,5.5 - parent: 1 - type: Transform -- uid: 5762 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-3.5 - parent: 1 - type: Transform -- uid: 5763 - type: SignRedZero - components: - - pos: 30.23321,-15.491432 - parent: 1 - type: Transform -- uid: 5764 - type: AsteroidRock - components: - - pos: 12.5,45.5 - parent: 1 - type: Transform -- uid: 5765 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-9.5 - parent: 1 - type: Transform -- uid: 5766 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 3.5,10.5 - parent: 1 - type: Transform -- uid: 5767 - type: Window - components: - - pos: -12.5,43.5 - parent: 1 - type: Transform -- uid: 5768 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 31.5,4.5 - parent: 1 - type: Transform -- uid: 5769 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-1.5 - parent: 1 - type: Transform -- uid: 5770 - type: AirlockSecurityGlassLocked - components: - - name: detective agency - type: MetaData - - pos: 20.5,-15.5 - parent: 1 - type: Transform -- uid: 5771 - type: CarpetPink - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 1 - type: Transform -- uid: 5772 - type: WallSolid - components: - - pos: -29.5,-76.5 - parent: 1 - type: Transform -- uid: 5773 - type: SpawnPointJanitor - components: - - pos: -10.5,-22.5 - parent: 1 - type: Transform -- uid: 5774 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5775 - type: GasPipeStraight - components: - - pos: -11.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5776 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -8.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5777 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 44.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5778 - type: Railing - components: - - pos: 23.5,-1.5 - parent: 1 - type: Transform -- uid: 5779 - type: EmergencyLight - components: - - pos: 54.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 5780 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 10.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5781 - type: DisposalPipe - components: - - pos: 6.5,3.5 - parent: 1 - type: Transform -- uid: 5782 - type: WallSolid - components: - - pos: -11.5,11.5 - parent: 1 - type: Transform -- uid: 5783 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 35.5,7.5 - parent: 1 - type: Transform -- uid: 5784 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 34.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5785 - type: DrinkGoldenCup - components: - - pos: 48.422813,-25.09548 - parent: 1 - type: Transform -- uid: 5786 - type: GasPipeStraight - components: - - pos: 2.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5787 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5788 - type: WallSolid - components: - - pos: -2.5,4.5 - parent: 1 - type: Transform -- uid: 5789 - type: WallSolid - components: - - pos: -1.5,-2.5 - parent: 1 - type: Transform -- uid: 5790 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 1 - type: Transform -- uid: 5791 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 61.5,14.5 - parent: 1 - type: Transform -- uid: 5792 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,42.5 - parent: 1 - type: Transform -- uid: 5793 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 1 - type: Transform - - devices: - - 2347 - - 1091 - - 2840 - - 5519 - - invalid - - 2118 - - 7186 - - 1095 - - 4748 - type: DeviceList -- uid: 5794 - type: DisposalUnit - components: - - pos: 18.5,9.5 - parent: 1 - type: Transform -- uid: 5795 - type: DisposalPipe - components: - - pos: 18.5,0.5 - parent: 1 - type: Transform -- uid: 5796 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 17.5,0.5 - parent: 1 - type: Transform -- uid: 5797 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 18.5,10.5 - parent: 1 - type: Transform -- uid: 5798 - type: AtmosFixFreezerMarker - components: - - pos: -0.5,14.5 - parent: 1 - type: Transform -- uid: 5799 - type: Table - components: - - pos: -43.5,35.5 - parent: 1 - type: Transform -- uid: 5800 - type: Grille - components: - - pos: -0.5,-62.5 - parent: 1 - type: Transform -- uid: 5801 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: 31.506456,-10.454706 - parent: 1 - type: Transform -- uid: 5802 - type: AirlockMaint - components: - - name: waste disposal - type: MetaData - - rot: -1.5707963267948966 rad - pos: 18.5,-51.5 - parent: 1 - type: Transform -- uid: 5803 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5804 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 19.5,20.5 - parent: 1 - type: Transform -- uid: 5805 - type: GasPipeStraight - components: - - pos: 23.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5806 - type: Grille - components: - - pos: -8.5,-62.5 - parent: 1 - type: Transform -- uid: 5807 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1 - type: Transform -- uid: 5808 - type: SpawnMobMouse - components: - - pos: -29.5,-47.5 - parent: 1 - type: Transform -- uid: 5809 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-81.5 - parent: 1 - type: Transform -- uid: 5810 - type: Firelock - components: - - pos: 14.5,-51.5 - parent: 1 - type: Transform -- uid: 5811 - type: Window - components: - - pos: 37.5,-0.5 - parent: 1 - type: Transform -- uid: 5812 - type: FirelockGlass - components: - - pos: -2.5,-55.5 - parent: 1 - type: Transform -- uid: 5813 - type: Grille - components: - - pos: 3.5,-77.5 - parent: 1 - type: Transform -- uid: 5814 - type: CableHV - components: - - pos: -9.5,-26.5 - parent: 1 - type: Transform -- uid: 5815 - type: CableHV - components: - - pos: 25.5,-46.5 - parent: 1 - type: Transform -- uid: 5816 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 37.5,9.5 - parent: 1 - type: Transform -- uid: 5817 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.503365,-39.44397 - parent: 1 - type: Transform -- uid: 5818 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -19.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5819 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 3.5,-1.5 - parent: 1 - type: Transform -- uid: 5820 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5821 - type: WallSolid - components: - - pos: -7.5,12.5 - parent: 1 - type: Transform -- uid: 5822 - type: CableHV - components: - - pos: -5.5,-42.5 - parent: 1 - type: Transform -- uid: 5823 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-79.5 - parent: 1 - type: Transform -- uid: 5824 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-24.5 - parent: 1 - type: Transform -- uid: 5825 - type: CableApcExtension - components: - - pos: -12.5,-74.5 - parent: 1 - type: Transform -- uid: 5826 - type: CableHV - components: - - pos: 19.5,-29.5 - parent: 1 - type: Transform -- uid: 5827 - type: CableApcExtension - components: - - pos: 40.5,-25.5 - parent: 1 - type: Transform -- uid: 5828 - type: FirelockGlass - components: - - pos: 5.5,4.5 - parent: 1 - type: Transform -- uid: 5829 - type: TableCounterMetal - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform -- uid: 5830 - type: WallSolid - components: - - pos: 6.5,4.5 - parent: 1 - type: Transform -- uid: 5831 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-43.5 - parent: 1 - type: Transform -- uid: 5832 - type: ReinforcedPlasmaWindow - components: - - rot: 3.141592653589793 rad - pos: 27.5,-20.5 - parent: 1 - type: Transform -- uid: 5833 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -23.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5834 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,-21.5 - parent: 1 - type: Transform -- uid: 5835 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-83.5 - parent: 1 - type: Transform -- uid: 5836 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,38.5 - parent: 1 - type: Transform -- uid: 5837 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 28.5,-19.5 - parent: 1 - type: Transform -- uid: 5838 - type: CableApcExtension - components: - - pos: 31.5,-62.5 - parent: 1 - type: Transform -- uid: 5839 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-0.5 - parent: 1 - type: Transform -- uid: 5840 - type: GasVentPump - components: - - pos: 47.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5841 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-83.5 - parent: 1 - type: Transform -- uid: 5842 - type: GasPipeStraight - components: - - pos: -3.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5843 - type: GasPipeStraight - components: - - pos: -5.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5844 - type: GasPipeStraight - components: - - pos: -5.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5845 - type: Table - components: - - pos: -22.5,-76.5 - parent: 1 - type: Transform -- uid: 5846 - type: BoxSterileMask - components: - - pos: -22.622793,-78.244446 - parent: 1 - type: Transform -- uid: 5847 - type: GasAnalyzer - components: - - pos: -22.469156,-58.33799 - parent: 1 - type: Transform -- uid: 5848 - type: CableHV - components: - - pos: 15.5,-38.5 - parent: 1 - type: Transform -- uid: 5849 - type: CableMV - components: - - pos: 19.5,-52.5 - parent: 1 - type: Transform -- uid: 5850 - type: Catwalk - components: - - pos: 8.5,-54.5 - parent: 1 - type: Transform -- uid: 5851 - type: CableApcExtension - components: - - pos: 22.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5852 - type: CableApcExtension - components: - - pos: 25.5,-47.5 - parent: 1 - type: Transform -- uid: 5853 - type: CableApcExtension - components: - - pos: 5.5,-70.5 - parent: 1 - type: Transform -- uid: 5854 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 47.5,-21.5 - parent: 1 - type: Transform -- uid: 5855 - type: WallReinforced - components: - - pos: -22.5,5.5 - parent: 1 - type: Transform -- uid: 5856 - type: PosterContrabandRevolt - components: - - pos: -40.5,-73.5 - parent: 1 - type: Transform -- uid: 5857 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 27.5,14.5 - parent: 1 - type: Transform -- uid: 5858 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5859 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5860 - type: WallReinforced - components: - - pos: -29.5,43.5 - parent: 1 - type: Transform -- uid: 5861 - type: CableApcExtension - components: - - pos: 4.5,8.5 - parent: 1 - type: Transform -- uid: 5862 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5863 - type: CableApcExtension - components: - - pos: -31.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5864 - type: RockGuitarInstrument - components: - - pos: -10.563177,-6.285685 - parent: 1 - type: Transform -- uid: 5865 - type: PoweredSmallLight - components: - - pos: 33.5,-89.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5866 - type: CableMV - components: - - pos: 32.5,-4.5 - parent: 1 - type: Transform -- uid: 5867 - type: CableApcExtension - components: - - pos: 15.5,-41.5 - parent: 1 - type: Transform -- uid: 5868 - type: GasVentScrubber - components: - - pos: -20.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5869 - type: CableApcExtension - components: - - pos: 20.5,1.5 - parent: 1 - type: Transform -- uid: 5870 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 5871 - type: ClosetL3VirologyFilled - components: - - pos: -22.5,-79.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5872 - type: Table - components: - - pos: -20.5,-77.5 - parent: 1 - type: Transform -- uid: 5873 - type: WallSolid - components: - - pos: -17.5,-35.5 - parent: 1 - type: Transform -- uid: 5874 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 33.5,-22.5 - parent: 1 - type: Transform -- uid: 5875 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-28.5 - parent: 1 - type: Transform -- uid: 5876 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 33.5,-62.5 - parent: 1 - type: Transform -- uid: 5877 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5878 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5879 - type: BoxSyringe - components: - - pos: -20.634653,-77.352325 - parent: 1 - type: Transform -- uid: 5880 - type: BoxSterileMask - components: - - pos: -20.619028,-78.321075 - parent: 1 - type: Transform -- uid: 5881 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5882 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 1 - type: Transform -- uid: 5883 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 20.5,24.5 - parent: 1 - type: Transform -- uid: 5884 - type: Table - components: - - pos: -6.5,-73.5 - parent: 1 - type: Transform -- uid: 5885 - type: CableApcExtension - components: - - pos: -8.5,-23.5 - parent: 1 - type: Transform -- uid: 5886 - type: CableApcExtension - components: - - pos: 25.5,-60.5 - parent: 1 - type: Transform -- uid: 5887 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 8.5,-49.5 - parent: 1 - type: Transform -- uid: 5888 - type: CableApcExtension - components: - - pos: -1.5,-69.5 - parent: 1 - type: Transform -- uid: 5889 - type: GasPipeBend - components: - - pos: 36.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 5890 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 1 - type: Transform -- uid: 5891 - type: FirelockGlass - components: - - pos: 16.5,-19.5 - parent: 1 - type: Transform -- uid: 5892 - type: GasPipeTJunction - components: - - pos: -5.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5893 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 10.5,23.5 - parent: 1 - type: Transform -- uid: 5894 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 14.5,-38.5 - parent: 1 - type: Transform -- uid: 5895 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-44.5 - parent: 1 - type: Transform -- uid: 5896 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-12.5 - parent: 1 - type: Transform -- uid: 5897 - type: RollerBed - components: - - pos: -29.534147,-79.2912 - parent: 1 - type: Transform -- uid: 5898 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 27.5,15.5 - parent: 1 - type: Transform -- uid: 5899 - type: WallReinforced - components: - - pos: -15.5,3.5 - parent: 1 - type: Transform -- uid: 5900 - type: WallSolid - components: - - pos: -10.5,-62.5 - parent: 1 - type: Transform -- uid: 5901 - type: WallSolid - components: - - pos: -10.5,-64.5 - parent: 1 - type: Transform -- uid: 5902 - type: SprayBottleSpaceCleaner - components: - - pos: -13.721031,-22.20068 - parent: 1 - type: Transform -- uid: 5903 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-76.5 - parent: 1 - type: Transform -- uid: 5904 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-77.5 - parent: 1 - type: Transform -- uid: 5905 - type: BoxMouthSwab - components: - - pos: -22.357168,-76.22882 - parent: 1 - type: Transform -- uid: 5906 - type: WallSolid - components: - - pos: -2.5,-70.5 - parent: 1 - type: Transform -- uid: 5907 - type: WallSolid - components: - - pos: -1.5,-70.5 - parent: 1 - type: Transform -- uid: 5908 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 0.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5909 - type: GasPipeStraight - components: - - pos: 0.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5910 - type: GasPipeStraight - components: - - pos: 0.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5911 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5912 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5913 - type: CableHV - components: - - pos: -5.5,-36.5 - parent: 1 - type: Transform -- uid: 5914 - type: CableHV - components: - - pos: 25.5,-51.5 - parent: 1 - type: Transform -- uid: 5915 - type: CableApcExtension - components: - - pos: 19.5,-30.5 - parent: 1 - type: Transform -- uid: 5916 - type: GasPipeBend - components: - - pos: 2.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5917 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5918 - type: FirelockGlass - components: - - pos: 19.5,6.5 - parent: 1 - type: Transform -- uid: 5919 - type: CableHV - components: - - pos: 15.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5920 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 27.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5921 - type: GasPipeStraight - components: - - pos: 2.5,12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 5922 - type: APCHighCapacity - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform -- uid: 5923 - type: CableHV - components: - - pos: 15.5,-31.5 - parent: 1 - type: Transform -- uid: 5924 - type: CableApcExtension - components: - - pos: -1.5,-26.5 - parent: 1 - type: Transform -- uid: 5925 - type: SignShock - components: - - pos: 11.5,-15.5 - parent: 1 - type: Transform -- uid: 5926 - type: Firelock - components: - - pos: 54.5,38.5 - parent: 1 - type: Transform -- uid: 5927 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5928 - type: GasPipeStraight - components: - - pos: 34.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5929 - type: CrewMonitoringComputerCircuitboard - components: - - pos: 53.35249,35.65033 - parent: 1 - type: Transform -- uid: 5930 - type: CableApcExtension - components: - - pos: -41.5,28.5 - parent: 1 - type: Transform -- uid: 5931 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 30.5,-64.5 - parent: 1 - type: Transform -- uid: 5932 - type: CableHV - components: - - pos: 6.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5933 - type: CableApcExtension - components: - - pos: -37.5,-68.5 - parent: 1 - type: Transform -- uid: 5934 - type: Grille - components: - - pos: 9.5,14.5 - parent: 1 - type: Transform -- uid: 5935 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 29.5,-7.5 - parent: 1 - type: Transform -- uid: 5936 - type: GasVentScrubber - components: - - pos: 21.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5937 - type: CableHV - components: - - pos: 15.5,-35.5 - parent: 1 - type: Transform -- uid: 5938 - type: WallSolid - components: - - pos: 13.5,-53.5 - parent: 1 - type: Transform -- uid: 5939 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -10.5,57.5 - parent: 1 - type: Transform -- uid: 5940 - type: GasPipeStraight - components: - - pos: 2.5,13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 5941 - type: ShuttersNormalOpen - components: - - pos: -6.5,4.5 - parent: 1 - type: Transform - - inputs: - Open: - - port: On - uid: 29231 - Close: - - port: Off - uid: 29231 - Toggle: [] - type: SignalReceiver -- uid: 5942 - type: GasPipeBend - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5943 - type: GasPipeStraight - components: - - pos: 2.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5944 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5945 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5946 - type: WallSolid - components: - - pos: -5.5,-72.5 - parent: 1 - type: Transform -- uid: 5947 - type: WallSolid - components: - - pos: 0.5,-70.5 - parent: 1 - type: Transform -- uid: 5948 - type: WallSolid - components: - - pos: 1.5,-70.5 - parent: 1 - type: Transform -- uid: 5949 - type: WallSolid - components: - - pos: 13.5,-46.5 - parent: 1 - type: Transform -- uid: 5950 - type: WallReinforced - components: - - pos: -18.5,-80.5 - parent: 1 - type: Transform -- uid: 5951 - type: WindowReinforcedDirectional - components: - - pos: -29.5,-78.5 - parent: 1 - type: Transform -- uid: 5952 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5953 - type: FirelockGlass - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform -- uid: 5954 - type: FirelockGlass - components: - - pos: -1.5,7.5 - parent: 1 - type: Transform -- uid: 5955 - type: VendingMachineDinnerware - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,5.5 - parent: 1 - type: Transform -- uid: 5956 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5957 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5958 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-23.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: north youtool - type: SurveillanceCamera -- uid: 5959 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-68.5 - parent: 1 - type: Transform -- uid: 5960 - type: CableApcExtension - components: - - pos: 1.5,6.5 - parent: 1 - type: Transform -- uid: 5961 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 0.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5962 - type: AirlockMaint - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 1 - type: Transform -- uid: 5963 - type: FirelockGlass - components: - - pos: -1.5,-0.5 - parent: 1 - type: Transform -- uid: 5964 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -1.5,-50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5965 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5966 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 21.5,2.5 - parent: 1 - type: Transform -- uid: 5967 - type: CableApcExtension - components: - - pos: 0.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5968 - type: ExtinguisherCabinetFilled - components: - - pos: -1.5,8.5 - parent: 1 - type: Transform -- uid: 5969 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-79.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5970 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5971 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5972 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5973 - type: CableApcExtension - components: - - pos: -10.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 5974 - type: Table - components: - - pos: 9.5,-56.5 - parent: 1 - type: Transform -- uid: 5975 - type: AirlockGlass - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-15.5 - parent: 1 - type: Transform -- uid: 5976 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5977 - type: WallSolid - components: - - pos: 42.5,-54.5 - parent: 1 - type: Transform -- uid: 5978 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 6.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5979 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 5.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5980 - type: GasPipeStraight - components: - - pos: -8.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5981 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -8.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5982 - type: GasVentPump - components: - - pos: -7.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5983 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 5984 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 14.5,18.5 - parent: 1 - type: Transform -- uid: 5985 - type: ReinforcedWindow - components: - - pos: 15.5,18.5 - parent: 1 - type: Transform -- uid: 5986 - type: WallSolid - components: - - pos: -1.5,-11.5 - parent: 1 - type: Transform -- uid: 5987 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-25.5 - parent: 1 - type: Transform -- uid: 5988 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 22.5,28.5 - parent: 1 - type: Transform -- uid: 5989 - type: WallReinforced - components: - - pos: 27.5,25.5 - parent: 1 - type: Transform -- uid: 5990 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 30.5,27.5 - parent: 1 - type: Transform -- uid: 5991 - type: WallSolid - components: - - pos: 13.5,-44.5 - parent: 1 - type: Transform -- uid: 5992 - type: WallSolid - components: - - pos: 17.5,-44.5 - parent: 1 - type: Transform -- uid: 5993 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 12.5,23.5 - parent: 1 - type: Transform -- uid: 5994 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 11.5,23.5 - parent: 1 - type: Transform -- uid: 5995 - type: RandomPosterContraband - components: - - pos: -39.5,-88.5 - parent: 1 - type: Transform -- uid: 5996 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -24.5,53.5 - parent: 1 - type: Transform -- uid: 5997 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -24.5,50.5 - parent: 1 - type: Transform -- uid: 5998 - type: ClosetFireFilled - components: - - pos: -25.5,51.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 5999 - type: WallSolid - components: - - pos: -7.5,15.5 - parent: 1 - type: Transform -- uid: 6000 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: -2.5,6.5 - parent: 1 - type: Transform -- uid: 6001 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -3.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6002 - type: CableApcExtension - components: - - pos: 4.5,-46.5 - parent: 1 - type: Transform -- uid: 6003 - type: RailingCorner - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-1.5 - parent: 1 - type: Transform -- uid: 6004 - type: CableApcExtension - components: - - pos: -8.5,-46.5 - parent: 1 - type: Transform -- uid: 6005 - type: AirlockVirologyGlassLocked - components: - - name: virology treatment - type: MetaData - - pos: -24.5,-74.5 - parent: 1 - type: Transform -- uid: 6006 - type: Railing - components: - - pos: 11.5,0.5 - parent: 1 - type: Transform -- uid: 6007 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 1 - type: Transform -- uid: 6008 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 7.5,1.5 - parent: 1 - type: Transform -- uid: 6009 - type: WallSolid - components: - - pos: -28.5,-76.5 - parent: 1 - type: Transform -- uid: 6010 - type: WallSolid - components: - - pos: -21.5,-80.5 - parent: 1 - type: Transform -- uid: 6011 - type: Railing - components: - - pos: 7.5,0.5 - parent: 1 - type: Transform -- uid: 6012 - type: ReinforcedWindow - components: - - pos: 5.5,-28.5 - parent: 1 - type: Transform -- uid: 6013 - type: LockerBotanistFilled - components: - - pos: -4.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6014 - type: GasPipeStraight - components: - - pos: -3.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6015 - type: RevolverCapGun - components: - - pos: 3.523116,-35.41609 - parent: 1 - type: Transform -- uid: 6016 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -2.5,-53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6017 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6018 - type: FirelockGlass - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform -- uid: 6019 - type: CableMV - components: - - pos: 14.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6020 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -24.5,51.5 - parent: 1 - type: Transform -- uid: 6021 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -24.5,52.5 - parent: 1 - type: Transform -- uid: 6022 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 11.5,8.5 - parent: 1 - type: Transform -- uid: 6023 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -24.5,49.5 - parent: 1 - type: Transform -- uid: 6024 - type: ThermomachineFreezerMachineCircuitBoard - components: - - pos: -36.51641,35.415855 - parent: 1 - type: Transform -- uid: 6025 - type: LockerFreezer - components: - - pos: -38.5,36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6026 - type: CigPackBlue - components: - - pos: 47.844124,50.55344 - parent: 1 - type: Transform -- uid: 6027 - type: RandomPosterContraband - components: - - pos: -20.5,-94.5 - parent: 1 - type: Transform -- uid: 6028 - type: DrinkMugOne - components: - - pos: 47.469124,50.58469 - parent: 1 - type: Transform -- uid: 6029 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6030 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-6.5 - parent: 1 - type: Transform -- uid: 6031 - type: WallSolid - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform -- uid: 6032 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 11.5,-2.5 - parent: 1 - type: Transform -- uid: 6033 - type: WallSolid - components: - - pos: -11.5,10.5 - parent: 1 - type: Transform -- uid: 6034 - type: WallSolid - components: - - pos: -0.5,-70.5 - parent: 1 - type: Transform -- uid: 6035 - type: WallReinforced - components: - - pos: -13.5,-74.5 - parent: 1 - type: Transform -- uid: 6036 - type: WallReinforced - components: - - pos: -13.5,-79.5 - parent: 1 - type: Transform -- uid: 6037 - type: WallSolid - components: - - pos: -27.5,-76.5 - parent: 1 - type: Transform -- uid: 6038 - type: WallSolid - components: - - pos: -20.5,-65.5 - parent: 1 - type: Transform -- uid: 6039 - type: Table - components: - - pos: -23.5,-71.5 - parent: 1 - type: Transform -- uid: 6040 - type: SignDisposalSpace - components: - - pos: 23.5,-52.5 - parent: 1 - type: Transform -- uid: 6041 - type: ClosetEmergencyFilledRandom - components: - - pos: -25.5,52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6042 - type: WallSolid - components: - - pos: -14.5,-72.5 - parent: 1 - type: Transform -- uid: 6043 - type: WallSolid - components: - - pos: -17.5,-74.5 - parent: 1 - type: Transform -- uid: 6044 - type: WallSolid - components: - - pos: -21.5,-79.5 - parent: 1 - type: Transform -- uid: 6045 - type: WallSolid - components: - - pos: -21.5,-78.5 - parent: 1 - type: Transform -- uid: 6046 - type: WallSolid - components: - - pos: -21.5,-77.5 - parent: 1 - type: Transform -- uid: 6047 - type: WallReinforced - components: - - pos: -19.5,-80.5 - parent: 1 - type: Transform -- uid: 6048 - type: WallSolid - components: - - pos: -26.5,-76.5 - parent: 1 - type: Transform -- uid: 6049 - type: WallSolid - components: - - pos: -26.5,-75.5 - parent: 1 - type: Transform -- uid: 6050 - type: SheetPaper1 - components: - - pos: -4.555317,-48.4215 - parent: 1 - type: Transform -- uid: 6051 - type: WallReinforced - components: - - pos: -13.5,-76.5 - parent: 1 - type: Transform -- uid: 6052 - type: WallReinforced - components: - - pos: 9.5,20.5 - parent: 1 - type: Transform -- uid: 6053 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -10.5,-51.5 - parent: 1 - type: Transform -- uid: 6054 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-68.5 - parent: 1 - type: Transform -- uid: 6055 - type: ReinforcedWindow - components: - - pos: 18.5,-65.5 - parent: 1 - type: Transform -- uid: 6056 - type: WallReinforced - components: - - pos: -18.5,-50.5 - parent: 1 - type: Transform -- uid: 6057 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-41.5 - parent: 1 - type: Transform -- uid: 6058 - type: ConveyorBelt - components: - - pos: 18.5,-57.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 2598 - Forward: - - port: Left - uid: 2598 - Off: - - port: Middle - uid: 2598 - type: SignalReceiver -- uid: 6059 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -16.5,-51.5 - parent: 1 - type: Transform -- uid: 6060 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-53.5 - parent: 1 - type: Transform -- uid: 6061 - type: MedkitCombatFilled - components: - - pos: -20.500343,-54.36298 - parent: 1 - type: Transform -- uid: 6062 - type: CableApcExtension - components: - - pos: 17.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6063 - type: CableApcExtension - components: - - pos: 18.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6064 - type: WindoorSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 1 - type: Transform -- uid: 6065 - type: CableApcExtension - components: - - pos: -6.5,-26.5 - parent: 1 - type: Transform -- uid: 6066 - type: Wrench - components: - - pos: 19.497053,-52.46946 - parent: 1 - type: Transform -- uid: 6067 - type: FirelockGlass - components: - - pos: -27.5,1.5 - parent: 1 - type: Transform -- uid: 6068 - type: AirlockSecurityGlassLocked - components: - - rot: 3.141592653589793 rad - pos: 9.5,17.5 - parent: 1 - type: Transform -- uid: 6069 - type: CableApcExtension - components: - - pos: 24.5,-42.5 - parent: 1 - type: Transform -- uid: 6070 - type: CableApcExtension - components: - - pos: 14.5,-42.5 - parent: 1 - type: Transform -- uid: 6071 - type: CableApcExtension - components: - - pos: 17.5,-47.5 - parent: 1 - type: Transform -- uid: 6072 - type: CableApcExtension - components: - - pos: 17.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6073 - type: CableApcExtension - components: - - pos: 15.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6074 - type: CableHV - components: - - pos: -16.5,-42.5 - parent: 1 - type: Transform -- uid: 6075 - type: CableApcExtension - components: - - pos: 4.5,-70.5 - parent: 1 - type: Transform -- uid: 6076 - type: FirelockGlass - components: - - pos: 7.5,-42.5 - parent: 1 - type: Transform -- uid: 6077 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 33.5,-37.5 - parent: 1 - type: Transform -- uid: 6078 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-31.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6079 - type: Grille - components: - - pos: 27.5,-40.5 - parent: 1 - type: Transform -- uid: 6080 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: 31.537706,-12.470331 - parent: 1 - type: Transform -- uid: 6081 - type: ClothingOuterHardsuitEVA - components: - - pos: 31.631456,-13.407831 - parent: 1 - type: Transform -- uid: 6082 - type: Table - components: - - pos: 31.5,-10.5 - parent: 1 - type: Transform -- uid: 6083 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,-11.5 - parent: 1 - type: Transform -- uid: 6084 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,-12.5 - parent: 1 - type: Transform -- uid: 6085 - type: WallReinforced - components: - - pos: -16.5,-54.5 - parent: 1 - type: Transform -- uid: 6086 - type: FirelockGlass - components: - - pos: -7.5,-51.5 - parent: 1 - type: Transform -- uid: 6087 - type: BoxBodyBag - components: - - pos: -11.506837,-67.45136 - parent: 1 - type: Transform -- uid: 6088 - type: StasisBed - components: - - pos: 4.5,-63.5 - parent: 1 - type: Transform -- uid: 6089 - type: DisposalPipe - components: - - pos: -5.5,-54.5 - parent: 1 - type: Transform -- uid: 6090 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,-9.5 - parent: 1 - type: Transform -- uid: 6091 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 33.5,-9.5 - parent: 1 - type: Transform -- uid: 6092 - type: CableApcExtension - components: - - pos: 28.5,-47.5 - parent: 1 - type: Transform -- uid: 6093 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 2.5,-71.5 - parent: 1 - type: Transform -- uid: 6094 - type: GrilleBroken - components: - - pos: -2.5,-71.5 - parent: 1 - type: Transform -- uid: 6095 - type: PosterBroken - components: - - pos: 0.5,-70.5 - parent: 1 - type: Transform -- uid: 6096 - type: CableHV - components: - - pos: 15.5,-30.5 - parent: 1 - type: Transform -- uid: 6097 - type: CableApcExtension - components: - - pos: 25.5,-49.5 - parent: 1 - type: Transform -- uid: 6098 - type: WallSolid - components: - - pos: 16.5,-48.5 - parent: 1 - type: Transform -- uid: 6099 - type: CableApcExtension - components: - - pos: -1.5,-71.5 - parent: 1 - type: Transform -- uid: 6100 - type: FirelockGlass - components: - - pos: 7.5,-43.5 - parent: 1 - type: Transform -- uid: 6101 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-55.5 - parent: 1 - type: Transform -- uid: 6102 - type: Firelock - components: - - pos: 29.5,23.5 - parent: 1 - type: Transform -- uid: 6103 - type: CableHV - components: - - pos: 8.5,-49.5 - parent: 1 - type: Transform -- uid: 6104 - type: CableApcExtension - components: - - pos: -6.5,1.5 - parent: 1 - type: Transform -- uid: 6105 - type: CableHV - components: - - pos: -1.5,-63.5 - parent: 1 - type: Transform -- uid: 6106 - type: CableApcExtension - components: - - pos: 15.5,-49.5 - parent: 1 - type: Transform -- uid: 6107 - type: WallReinforced - components: - - pos: 19.5,-56.5 - parent: 1 - type: Transform -- uid: 6108 - type: CableHV - components: - - pos: -12.5,-26.5 - parent: 1 - type: Transform -- uid: 6109 - type: CableHV - components: - - pos: 0.5,-26.5 - parent: 1 - type: Transform -- uid: 6110 - type: CableHV - components: - - pos: 14.5,-26.5 - parent: 1 - type: Transform -- uid: 6111 - type: CableHV - components: - - pos: 15.5,-27.5 - parent: 1 - type: Transform -- uid: 6112 - type: CableHV - components: - - pos: -6.5,-42.5 - parent: 1 - type: Transform -- uid: 6113 - type: CableHV - components: - - pos: -3.5,-42.5 - parent: 1 - type: Transform -- uid: 6114 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 28.5,-63.5 - parent: 1 - type: Transform -- uid: 6115 - type: CableApcExtension - components: - - pos: -2.5,11.5 - parent: 1 - type: Transform -- uid: 6116 - type: CableApcExtension - components: - - pos: 2.5,-4.5 - parent: 1 - type: Transform -- uid: 6117 - type: CableApcExtension - components: - - pos: 4.5,6.5 - parent: 1 - type: Transform -- uid: 6118 - type: CableApcExtension - components: - - pos: 46.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6119 - type: Table - components: - - pos: -11.5,-67.5 - parent: 1 - type: Transform -- uid: 6120 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-43.5 - parent: 1 - type: Transform -- uid: 6121 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 26.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6122 - type: DisposalPipe - components: - - pos: -4.5,-35.5 - parent: 1 - type: Transform -- uid: 6123 - type: TableCounterMetal - components: - - pos: 0.5,-63.5 - parent: 1 - type: Transform -- uid: 6124 - type: Firelock - components: - - pos: -19.5,-62.5 - parent: 1 - type: Transform -- uid: 6125 - type: WallSolid - components: - - pos: -17.5,-67.5 - parent: 1 - type: Transform -- uid: 6126 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: -4.5,-33.5 - parent: 1 - type: Transform -- uid: 6127 - type: DisposalPipe - components: - - pos: -4.5,-31.5 - parent: 1 - type: Transform -- uid: 6128 - type: DisposalPipe - components: - - pos: -4.5,-28.5 - parent: 1 - type: Transform -- uid: 6129 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-27.5 - parent: 1 - type: Transform -- uid: 6130 - type: CableApcStack - components: - - pos: 12.539829,-51.544067 - parent: 1 - type: Transform -- uid: 6131 - type: CableApcExtension - components: - - pos: 15.5,-35.5 - parent: 1 - type: Transform -- uid: 6132 - type: CableApcExtension - components: - - pos: 15.5,-36.5 - parent: 1 - type: Transform -- uid: 6133 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6134 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6135 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6136 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6137 - type: AirSensor - components: - - pos: -3.5,-53.5 - parent: 1 - type: Transform -- uid: 6138 - type: CableHV - components: - - pos: -2.5,-20.5 - parent: 1 - type: Transform -- uid: 6139 - type: CableHV - components: - - pos: -1.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6140 - type: CableHV - components: - - pos: -1.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6141 - type: WallReinforced - components: - - pos: -21.5,-56.5 - parent: 1 - type: Transform -- uid: 6142 - type: AirSensor - components: - - pos: 0.5,-60.5 - parent: 1 - type: Transform -- uid: 6143 - type: CableApcExtension - components: - - pos: 20.5,-14.5 - parent: 1 - type: Transform -- uid: 6144 - type: CableApcExtension - components: - - pos: 20.5,-15.5 - parent: 1 - type: Transform -- uid: 6145 - type: CableApcExtension - components: - - pos: 20.5,-16.5 - parent: 1 - type: Transform -- uid: 6146 - type: CableApcExtension - components: - - pos: 20.5,-17.5 - parent: 1 - type: Transform -- uid: 6147 - type: CableApcExtension - components: - - pos: 19.5,-17.5 - parent: 1 - type: Transform -- uid: 6148 - type: CableApcExtension - components: - - pos: 17.5,-17.5 - parent: 1 - type: Transform -- uid: 6149 - type: CableApcExtension - components: - - pos: 23.5,-17.5 - parent: 1 - type: Transform -- uid: 6150 - type: TableReinforced - components: - - pos: 32.5,32.5 - parent: 1 - type: Transform -- uid: 6151 - type: CableHV - components: - - pos: 30.5,-2.5 - parent: 1 - type: Transform -- uid: 6152 - type: CableHV - components: - - pos: 30.5,-4.5 - parent: 1 - type: Transform -- uid: 6153 - type: SignToxins2 - components: - - name: toxin lab sign - type: MetaData - - pos: 51.5,-48.5 - parent: 1 - type: Transform -- uid: 6154 - type: CableMV - components: - - pos: 6.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6155 - type: CableApcExtension - components: - - pos: 25.5,-18.5 - parent: 1 - type: Transform -- uid: 6156 - type: CableApcExtension - components: - - pos: 27.5,-17.5 - parent: 1 - type: Transform -- uid: 6157 - type: CableApcExtension - components: - - pos: 27.5,-18.5 - parent: 1 - type: Transform -- uid: 6158 - type: CableApcExtension - components: - - pos: 23.5,-18.5 - parent: 1 - type: Transform -- uid: 6159 - type: CableApcExtension - components: - - pos: 28.5,-17.5 - parent: 1 - type: Transform -- uid: 6160 - type: CableApcExtension - components: - - pos: 29.5,-17.5 - parent: 1 - type: Transform -- uid: 6161 - type: CableApcExtension - components: - - pos: 30.5,-17.5 - parent: 1 - type: Transform -- uid: 6162 - type: CableApcExtension - components: - - pos: 30.5,-16.5 - parent: 1 - type: Transform -- uid: 6163 - type: CableApcExtension - components: - - pos: 32.5,-16.5 - parent: 1 - type: Transform -- uid: 6164 - type: CableApcExtension - components: - - pos: 32.5,-15.5 - parent: 1 - type: Transform -- uid: 6165 - type: CableApcExtension - components: - - pos: 32.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6166 - type: CableApcExtension - components: - - pos: 32.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6167 - type: CableApcExtension - components: - - pos: 32.5,-17.5 - parent: 1 - type: Transform -- uid: 6168 - type: CableApcExtension - components: - - pos: 34.5,-18.5 - parent: 1 - type: Transform -- uid: 6169 - type: CableApcExtension - components: - - pos: 20.5,-8.5 - parent: 1 - type: Transform -- uid: 6170 - type: ClosetMaintenanceFilledRandom - components: - - pos: 6.5,-9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6171 - type: CableMV - components: - - pos: 6.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6172 - type: CableApcExtension - components: - - pos: 19.5,-8.5 - parent: 1 - type: Transform -- uid: 6173 - type: CableApcExtension - components: - - pos: 17.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6174 - type: CableApcExtension - components: - - pos: 15.5,-8.5 - parent: 1 - type: Transform -- uid: 6175 - type: CableApcExtension - components: - - pos: 14.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6176 - type: WallSolid - components: - - pos: 10.5,-15.5 - parent: 1 - type: Transform -- uid: 6177 - type: ReinforcedPlasmaWindow - components: - - rot: 3.141592653589793 rad - pos: 6.5,-20.5 - parent: 1 - type: Transform -- uid: 6178 - type: CableApcExtension - components: - - pos: 9.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6179 - type: CableApcExtension - components: - - pos: 26.5,-14.5 - parent: 1 - type: Transform -- uid: 6180 - type: CableApcExtension - components: - - pos: 29.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6181 - type: CableApcExtension - components: - - pos: 27.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6182 - type: CableApcExtension - components: - - pos: 30.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6183 - type: CableApcExtension - components: - - pos: 31.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6184 - type: Catwalk - components: - - pos: 30.5,-11.5 - parent: 1 - type: Transform -- uid: 6185 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 31.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6186 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6187 - type: DisposalPipe - components: - - pos: -19.5,-65.5 - parent: 1 - type: Transform -- uid: 6188 - type: Table - components: - - pos: -24.5,-71.5 - parent: 1 - type: Transform -- uid: 6189 - type: CableMV - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6190 - type: CableMV - components: - - pos: 8.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6191 - type: WallReinforced - components: - - pos: 33.5,48.5 - parent: 1 - type: Transform -- uid: 6192 - type: CableMV - components: - - pos: 8.5,-16.5 - parent: 1 - type: Transform -- uid: 6193 - type: FloorDrain - components: - - pos: -1.5,-64.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 6194 - type: FloorDrain - components: - - pos: -7.5,-65.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 6195 - type: FloorDrain - components: - - pos: -9.5,-22.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 6196 - type: MopItem - components: - - pos: -13.473024,-22.732498 - parent: 1 - type: Transform -- uid: 6197 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6198 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6199 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6200 - type: Table - components: - - pos: -22.5,-71.5 - parent: 1 - type: Transform -- uid: 6201 - type: Table - components: - - pos: -22.5,-70.5 - parent: 1 - type: Transform -- uid: 6202 - type: SignArmory - components: - - pos: 29.5,24.5 - parent: 1 - type: Transform -- uid: 6203 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6204 - type: AirlockVirologyGlassLocked - components: - - pos: -19.5,-68.5 - parent: 1 - type: Transform -- uid: 6205 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -20.5,-68.5 - parent: 1 - type: Transform -- uid: 6206 - type: WallSolid - components: - - pos: 12.5,4.5 - parent: 1 - type: Transform -- uid: 6207 - type: VehicleKeyJanicart - components: - - pos: -13.519899,-23.451248 - parent: 1 - type: Transform -- uid: 6208 - type: Table - components: - - pos: -13.5,-22.5 - parent: 1 - type: Transform -- uid: 6209 - type: CableApcExtension - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform -- uid: 6210 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -2.5,-34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6211 - type: PosterContrabandTools - components: - - pos: -54.5,-69.5 - parent: 1 - type: Transform -- uid: 6212 - type: TableWood - components: - - pos: -10.5,-5.5 - parent: 1 - type: Transform -- uid: 6213 - type: SpawnVehicleJanicart - components: - - pos: -12.5,-23.5 - parent: 1 - type: Transform -- uid: 6214 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,-7.5 - parent: 1 - type: Transform -- uid: 6215 - type: TableReinforced - components: - - pos: 26.5,-37.5 - parent: 1 - type: Transform -- uid: 6216 - type: CableApcExtension - components: - - pos: -15.5,-17.5 - parent: 1 - type: Transform -- uid: 6217 - type: AirlockJanitorLocked - components: - - pos: -11.5,-20.5 - parent: 1 - type: Transform -- uid: 6218 - type: DisposalBend - components: - - pos: 17.5,-45.5 - parent: 1 - type: Transform -- uid: 6219 - type: DisposalPipe - components: - - pos: 36.5,-26.5 - parent: 1 - type: Transform -- uid: 6220 - type: DisposalPipe - components: - - pos: 36.5,-23.5 - parent: 1 - type: Transform -- uid: 6221 - type: ReinforcedWindow - components: - - pos: -45.5,-49.5 - parent: 1 - type: Transform -- uid: 6222 - type: WallReinforced - components: - - pos: 31.5,-26.5 - parent: 1 - type: Transform -- uid: 6223 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-21.5 - parent: 1 - type: Transform -- uid: 6224 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-21.5 - parent: 1 - type: Transform -- uid: 6225 - type: CableHV - components: - - pos: -4.5,-75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6226 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-57.5 - parent: 1 - type: Transform -- uid: 6227 - type: FirelockGlass - components: - - pos: 3.5,-51.5 - parent: 1 - type: Transform -- uid: 6228 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 28.5,-21.5 - parent: 1 - type: Transform -- uid: 6229 - type: WallSolid - components: - - pos: -32.5,-70.5 - parent: 1 - type: Transform -- uid: 6230 - type: Grille - components: - - pos: 68.5,-56.5 - parent: 1 - type: Transform -- uid: 6231 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 30.5,-7.5 - parent: 1 - type: Transform -- uid: 6232 - type: FirelockGlass - components: - - pos: -8.5,-55.5 - parent: 1 - type: Transform -- uid: 6233 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 21.5,-34.5 - parent: 1 - type: Transform -- uid: 6234 - type: DisposalPipe - components: - - pos: 34.5,-5.5 - parent: 1 - type: Transform -- uid: 6235 - type: WallSolid - components: - - pos: -27.5,-72.5 - parent: 1 - type: Transform -- uid: 6236 - type: DisposalPipe - components: - - pos: 34.5,0.5 - parent: 1 - type: Transform -- uid: 6237 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 34.5,2.5 - parent: 1 - type: Transform -- uid: 6238 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 34.5,4.5 - parent: 1 - type: Transform -- uid: 6239 - type: GasPipeStraight - components: - - pos: 21.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6240 - type: GasPipeStraight - components: - - pos: 21.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6241 - type: DisposalPipe - components: - - pos: 34.5,-3.5 - parent: 1 - type: Transform -- uid: 6242 - type: GasPipeStraight - components: - - pos: 21.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6243 - type: GasPipeStraight - components: - - pos: 21.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6244 - type: GasPipeStraight - components: - - pos: 21.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6245 - type: GasPipeStraight - components: - - pos: 21.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6246 - type: GasPipeStraight - components: - - pos: 21.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6247 - type: WallSolid - components: - - pos: 13.5,-65.5 - parent: 1 - type: Transform -- uid: 6248 - type: WallSolid - components: - - pos: 10.5,-63.5 - parent: 1 - type: Transform -- uid: 6249 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-43.5 - parent: 1 - type: Transform -- uid: 6250 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-43.5 - parent: 1 - type: Transform -- uid: 6251 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-43.5 - parent: 1 - type: Transform -- uid: 6252 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.503365,-39.44397 - parent: 1 - type: Transform -- uid: 6253 - type: AirlockMedicalGlassLocked - components: - - name: medical storage - type: MetaData - - pos: 7.5,-60.5 - parent: 1 - type: Transform -- uid: 6254 - type: ReinforcedWindow - components: - - pos: 7.5,-61.5 - parent: 1 - type: Transform -- uid: 6255 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 21.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6256 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6257 - type: LockerDetectiveFilled - components: - - pos: 17.5,-10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6258 - type: ToolboxMechanicalFilled - components: - - pos: -22.52499,-67.50294 - parent: 1 - type: Transform -- uid: 6259 - type: GasPipeStraight - components: - - pos: 22.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6260 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 23.5,-8.5 - parent: 1 - type: Transform -- uid: 6261 - type: WallSolid - components: - - pos: -6.5,-50.5 - parent: 1 - type: Transform -- uid: 6262 - type: CableApcExtension - components: - - pos: -12.5,-73.5 - parent: 1 - type: Transform -- uid: 6263 - type: PosterContrabandRise - components: - - pos: 63.5,10.5 - parent: 1 - type: Transform -- uid: 6264 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-32.5 - parent: 1 - type: Transform -- uid: 6265 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -18.5,-68.5 - parent: 1 - type: Transform -- uid: 6266 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6267 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6268 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6269 - type: GasPipeStraight - components: - - pos: 20.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6270 - type: GasVentPump - components: - - pos: 30.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6271 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6272 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-32.5 - parent: 1 - type: Transform -- uid: 6273 - type: Cigar - components: - - pos: 13.506795,-34.413578 - parent: 1 - type: Transform -- uid: 6274 - type: CableApcExtension - components: - - pos: -4.5,-19.5 - parent: 1 - type: Transform -- uid: 6275 - type: GasPipeStraight - components: - - pos: 31.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6276 - type: GasPipeStraight - components: - - pos: 33.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6277 - type: WallSolid - components: - - pos: -13.5,-70.5 - parent: 1 - type: Transform -- uid: 6278 - type: Table - components: - - pos: -22.5,-69.5 - parent: 1 - type: Transform -- uid: 6279 - type: CableApcExtension - components: - - pos: -1.5,-63.5 - parent: 1 - type: Transform -- uid: 6280 - type: CableApcExtension - components: - - pos: -7.5,-47.5 - parent: 1 - type: Transform -- uid: 6281 - type: Cigar - components: - - pos: 13.55367,-32.429203 - parent: 1 - type: Transform -- uid: 6282 - type: Cigar - components: - - pos: 13.49117,-32.382328 - parent: 1 - type: Transform -- uid: 6283 - type: CableMV - components: - - pos: 21.5,-28.5 - parent: 1 - type: Transform -- uid: 6284 - type: CableApcExtension - components: - - pos: 25.5,-24.5 - parent: 1 - type: Transform -- uid: 6285 - type: CableApcExtension - components: - - pos: 23.5,-23.5 - parent: 1 - type: Transform -- uid: 6286 - type: CableApcExtension - components: - - pos: 20.5,-22.5 - parent: 1 - type: Transform -- uid: 6287 - type: CableApcExtension - components: - - pos: 30.5,-24.5 - parent: 1 - type: Transform -- uid: 6288 - type: CableApcExtension - components: - - pos: -8.5,-47.5 - parent: 1 - type: Transform -- uid: 6289 - type: CableApcExtension - components: - - pos: 27.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6290 - type: CableApcExtension - components: - - pos: 22.5,-35.5 - parent: 1 - type: Transform -- uid: 6291 - type: CableHV - components: - - pos: 24.5,-17.5 - parent: 1 - type: Transform -- uid: 6292 - type: CableApcExtension - components: - - pos: 22.5,-33.5 - parent: 1 - type: Transform -- uid: 6293 - type: CableApcExtension - components: - - pos: 22.5,-34.5 - parent: 1 - type: Transform -- uid: 6294 - type: CableApcExtension - components: - - pos: 22.5,-31.5 - parent: 1 - type: Transform -- uid: 6295 - type: CableHV - components: - - pos: 25.5,-16.5 - parent: 1 - type: Transform -- uid: 6296 - type: CableHV - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform -- uid: 6297 - type: CableHV - components: - - pos: 17.5,-5.5 - parent: 1 - type: Transform -- uid: 6298 - type: CableApcExtension - components: - - pos: -7.5,-45.5 - parent: 1 - type: Transform -- uid: 6299 - type: CableApcExtension - components: - - pos: -5.5,-45.5 - parent: 1 - type: Transform -- uid: 6300 - type: CableHV - components: - - pos: 32.5,-17.5 - parent: 1 - type: Transform -- uid: 6301 - type: CableHV - components: - - pos: 35.5,-21.5 - parent: 1 - type: Transform -- uid: 6302 - type: FirelockGlass - components: - - pos: 28.5,-40.5 - parent: 1 - type: Transform -- uid: 6303 - type: CableApcExtension - components: - - pos: -4.5,-45.5 - parent: 1 - type: Transform -- uid: 6304 - type: CableApcExtension - components: - - pos: -3.5,-45.5 - parent: 1 - type: Transform -- uid: 6305 - type: CableApcExtension - components: - - pos: 5.5,-46.5 - parent: 1 - type: Transform -- uid: 6306 - type: OperatingTable - components: - - pos: -7.5,-97.5 - parent: 1 - type: Transform -- uid: 6307 - type: ScalpelShiv - components: - - rot: -1.5707963267948966 rad - pos: -7.55561,-100.43354 - parent: 1 - type: Transform -- uid: 6308 - type: Drill - components: - - rot: -1.5707963267948966 rad - pos: -7.0942874,-100.40229 - parent: 1 - type: Transform -- uid: 6309 - type: ClothingBackpackDuffelSurgeryFilled - components: - - pos: -6.4692874,-100.35278 - parent: 1 - type: Transform -- uid: 6310 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-43.5 - parent: 1 - type: Transform -- uid: 6311 - type: CableApcExtension - components: - - pos: 6.5,-46.5 - parent: 1 - type: Transform -- uid: 6312 - type: GasPipeStraight - components: - - pos: -5.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6313 - type: GasPipeStraight - components: - - pos: -5.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6314 - type: Poweredlight - components: - - pos: 12.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6315 - type: CableHV - components: - - pos: -13.5,-71.5 - parent: 1 - type: Transform -- uid: 6316 - type: WallReinforced - components: - - pos: 11.5,15.5 - parent: 1 - type: Transform -- uid: 6317 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 12.5,18.5 - parent: 1 - type: Transform -- uid: 6318 - type: WallSolid - components: - - pos: 14.5,-12.5 - parent: 1 - type: Transform -- uid: 6319 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 19.5,3.5 - parent: 1 - type: Transform -- uid: 6320 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 19.5,2.5 - parent: 1 - type: Transform -- uid: 6321 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 28.5,2.5 - parent: 1 - type: Transform -- uid: 6322 - type: WallSolid - components: - - pos: 29.5,5.5 - parent: 1 - type: Transform -- uid: 6323 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 31.5,5.5 - parent: 1 - type: Transform -- uid: 6324 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 17.5,-19.5 - parent: 1 - type: Transform -- uid: 6325 - type: CableApcExtension - components: - - pos: -12.5,-54.5 - parent: 1 - type: Transform -- uid: 6326 - type: CableMV - components: - - pos: 21.5,-10.5 - parent: 1 - type: Transform -- uid: 6327 - type: CarpetOrange - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 1 - type: Transform -- uid: 6328 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.503365,-39.44397 - parent: 1 - type: Transform -- uid: 6329 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6330 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6331 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-48.5 - parent: 1 - type: Transform -- uid: 6332 - type: WallSolid - components: - - pos: 27.5,-45.5 - parent: 1 - type: Transform -- uid: 6333 - type: CableApcExtension - components: - - pos: 19.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6334 - type: Poweredlight - components: - - pos: 29.5,-41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6335 - type: GasPipeStraight - components: - - pos: 26.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6336 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6337 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 20.5,15.5 - parent: 1 - type: Transform -- uid: 6338 - type: WallSolid - components: - - pos: -17.5,-13.5 - parent: 1 - type: Transform -- uid: 6339 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-19.5 - parent: 1 - type: Transform -- uid: 6340 - type: WallReinforced - components: - - pos: -2.5,-38.5 - parent: 1 - type: Transform -- uid: 6341 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 63.5,14.5 - parent: 1 - type: Transform -- uid: 6342 - type: ShuttersNormal - components: - - pos: -8.5,-24.5 - parent: 1 - type: Transform -- uid: 6343 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 10.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6344 - type: CableApcExtension - components: - - pos: -2.5,-42.5 - parent: 1 - type: Transform -- uid: 6345 - type: CableApcExtension - components: - - pos: -4.5,-42.5 - parent: 1 - type: Transform -- uid: 6346 - type: CableApcExtension - components: - - pos: -6.5,-42.5 - parent: 1 - type: Transform -- uid: 6347 - type: CableApcExtension - components: - - pos: -7.5,-42.5 - parent: 1 - type: Transform -- uid: 6348 - type: CableApcExtension - components: - - pos: -8.5,-42.5 - parent: 1 - type: Transform -- uid: 6349 - type: CableApcExtension - components: - - pos: -9.5,-42.5 - parent: 1 - type: Transform -- uid: 6350 - type: CableApcExtension - components: - - pos: -10.5,-42.5 - parent: 1 - type: Transform -- uid: 6351 - type: CableApcExtension - components: - - pos: -11.5,-42.5 - parent: 1 - type: Transform -- uid: 6352 - type: CableApcExtension - components: - - pos: -12.5,-42.5 - parent: 1 - type: Transform -- uid: 6353 - type: CableApcExtension - components: - - pos: 1.5,-41.5 - parent: 1 - type: Transform -- uid: 6354 - type: CableApcExtension - components: - - pos: 2.5,-41.5 - parent: 1 - type: Transform -- uid: 6355 - type: CableApcExtension - components: - - pos: 3.5,-41.5 - parent: 1 - type: Transform -- uid: 6356 - type: CableApcExtension - components: - - pos: 5.5,-41.5 - parent: 1 - type: Transform -- uid: 6357 - type: CableApcExtension - components: - - pos: 5.5,-42.5 - parent: 1 - type: Transform -- uid: 6358 - type: CableApcExtension - components: - - pos: -4.5,-38.5 - parent: 1 - type: Transform -- uid: 6359 - type: CableApcExtension - components: - - pos: -4.5,-36.5 - parent: 1 - type: Transform -- uid: 6360 - type: CableApcExtension - components: - - pos: -4.5,-35.5 - parent: 1 - type: Transform -- uid: 6361 - type: CableApcExtension - components: - - pos: -4.5,-34.5 - parent: 1 - type: Transform -- uid: 6362 - type: CableApcExtension - components: - - pos: -12.5,-43.5 - parent: 1 - type: Transform -- uid: 6363 - type: CableApcExtension - components: - - pos: -12.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6364 - type: CableApcExtension - components: - - pos: -12.5,-46.5 - parent: 1 - type: Transform -- uid: 6365 - type: Grille - components: - - pos: -1.5,-57.5 - parent: 1 - type: Transform -- uid: 6366 - type: Grille - components: - - pos: -1.5,-56.5 - parent: 1 - type: Transform -- uid: 6367 - type: Grille - components: - - pos: 2.5,-58.5 - parent: 1 - type: Transform -- uid: 6368 - type: Grille - components: - - pos: -3.5,-58.5 - parent: 1 - type: Transform -- uid: 6369 - type: Grille - components: - - pos: 4.5,-62.5 - parent: 1 - type: Transform -- uid: 6370 - type: FirelockGlass - components: - - pos: 34.5,-38.5 - parent: 1 - type: Transform -- uid: 6371 - type: DisposalUnit - components: - - pos: 14.5,5.5 - parent: 1 - type: Transform -- uid: 6372 - type: FirelockGlass - components: - - pos: 38.5,-0.5 - parent: 1 - type: Transform -- uid: 6373 - type: GasVentScrubber - components: - - pos: 12.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6374 - type: CableHV - components: - - pos: 9.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6375 - type: RandomPosterContraband - components: - - pos: -29.5,-53.5 - parent: 1 - type: Transform -- uid: 6376 - type: AirlockGlass - components: - - pos: 35.5,2.5 - parent: 1 - type: Transform -- uid: 6377 - type: Grille - components: - - pos: -0.5,-58.5 - parent: 1 - type: Transform -- uid: 6378 - type: CableApcExtension - components: - - pos: -5.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6379 - type: CableApcExtension - components: - - pos: 26.5,-42.5 - parent: 1 - type: Transform -- uid: 6380 - type: Grille - components: - - pos: 31.5,-38.5 - parent: 1 - type: Transform -- uid: 6381 - type: Grille - components: - - pos: 33.5,-36.5 - parent: 1 - type: Transform -- uid: 6382 - type: Grille - components: - - pos: 33.5,-34.5 - parent: 1 - type: Transform -- uid: 6383 - type: WallReinforced - components: - - pos: 12.5,-36.5 - parent: 1 - type: Transform -- uid: 6384 - type: ReinforcedWindow - components: - - pos: 1.5,-31.5 - parent: 1 - type: Transform -- uid: 6385 - type: Grille - components: - - pos: 26.5,5.5 - parent: 1 - type: Transform -- uid: 6386 - type: Grille - components: - - pos: 9.5,13.5 - parent: 1 - type: Transform -- uid: 6387 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 27.5,33.5 - parent: 1 - type: Transform -- uid: 6388 - type: Grille - components: - - pos: 17.5,18.5 - parent: 1 - type: Transform -- uid: 6389 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6390 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6391 - type: CableApcExtension - components: - - pos: 3.5,-7.5 - parent: 1 - type: Transform -- uid: 6392 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6393 - type: CableHV - components: - - pos: 13.5,-98.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6394 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -7.5,-76.5 - parent: 1 - type: Transform -- uid: 6395 - type: CableHV - components: - - pos: -2.5,-77.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6396 - type: CableHV - components: - - pos: -2.5,-78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6397 - type: CableHV - components: - - pos: -1.5,-82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6398 - type: Grille - components: - - pos: 24.5,-59.5 - parent: 1 - type: Transform -- uid: 6399 - type: PillKelotane - components: - - pos: -9.034681,-32.24071 - parent: 1 - type: Transform -- uid: 6400 - type: SubstationBasic - components: - - pos: 38.5,-28.5 - parent: 1 - type: Transform -- uid: 6401 - type: FlashlightLantern - components: - - pos: 40.449615,-6.466271 - parent: 1 - type: Transform -- uid: 6402 - type: WallSolid - components: - - pos: 37.5,-54.5 - parent: 1 - type: Transform -- uid: 6403 - type: WallReinforced - components: - - pos: 35.5,51.5 - parent: 1 - type: Transform -- uid: 6404 - type: CableApcExtension - components: - - pos: 30.5,2.5 - parent: 1 - type: Transform -- uid: 6405 - type: Grille - components: - - pos: 5.5,-72.5 - parent: 1 - type: Transform -- uid: 6406 - type: WallSolid - components: - - pos: 17.5,-27.5 - parent: 1 - type: Transform -- uid: 6407 - type: Firelock - components: - - pos: -29.5,-1.5 - parent: 1 - type: Transform -- uid: 6408 - type: CableApcExtension - components: - - pos: 18.5,-41.5 - parent: 1 - type: Transform -- uid: 6409 - type: CableHV - components: - - pos: -9.5,-75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6410 - type: Firelock - components: - - pos: 23.5,-26.5 - parent: 1 - type: Transform -- uid: 6411 - type: WallReinforced - components: - - pos: 33.5,-30.5 - parent: 1 - type: Transform -- uid: 6412 - type: AirlockTheatreLocked - components: - - name: theatre - type: MetaData - - pos: 2.5,-13.5 - parent: 1 - type: Transform -- uid: 6413 - type: CableHV - components: - - pos: 28.5,-42.5 - parent: 1 - type: Transform -- uid: 6414 - type: AsteroidRock - components: - - pos: 10.5,45.5 - parent: 1 - type: Transform -- uid: 6415 - type: AsteroidRock - components: - - pos: 13.5,43.5 - parent: 1 - type: Transform -- uid: 6416 - type: SignRedOne - components: - - pos: 30.70196,-15.491432 - parent: 1 - type: Transform -- uid: 6417 - type: AsteroidRock - components: - - pos: 12.5,43.5 - parent: 1 - type: Transform -- uid: 6418 - type: AsteroidRock - components: - - pos: 11.5,43.5 - parent: 1 - type: Transform -- uid: 6419 - type: AsteroidRock - components: - - pos: 12.5,44.5 - parent: 1 - type: Transform -- uid: 6420 - type: AsteroidRock - components: - - pos: 10.5,42.5 - parent: 1 - type: Transform -- uid: 6421 - type: SignRedOne - components: - - pos: 37.5,17.5 - parent: 1 - type: Transform -- uid: 6422 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 23.5,3.5 - parent: 1 - type: Transform -- uid: 6423 - type: SignEVA - components: - - pos: 34.5,-15.5 - parent: 1 - type: Transform -- uid: 6424 - type: AirSensor - components: - - pos: 25.5,-42.5 - parent: 1 - type: Transform -- uid: 6425 - type: AirSensor - components: - - pos: -11.5,-57.5 - parent: 1 - type: Transform -- uid: 6426 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6427 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6428 - type: WallReinforced - components: - - pos: 28.5,-12.5 - parent: 1 - type: Transform -- uid: 6429 - type: WallSolid - components: - - pos: -25.5,43.5 - parent: 1 - type: Transform -- uid: 6430 - type: WallSolid - components: - - pos: -25.5,44.5 - parent: 1 - type: Transform -- uid: 6431 - type: WallSolid - components: - - pos: -25.5,46.5 - parent: 1 - type: Transform -- uid: 6432 - type: Grille - components: - - pos: -29.5,45.5 - parent: 1 - type: Transform -- uid: 6433 - type: WallSolid - components: - - pos: -27.5,36.5 - parent: 1 - type: Transform -- uid: 6434 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6435 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6436 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6437 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6438 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6439 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6440 - type: CableMV - components: - - pos: 12.5,-49.5 - parent: 1 - type: Transform -- uid: 6441 - type: TableWood - components: - - pos: -28.5,45.5 - parent: 1 - type: Transform -- uid: 6442 - type: Firelock - components: - - pos: -19.5,-3.5 - parent: 1 - type: Transform -- uid: 6443 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: -28.478912,45.366596 - parent: 1 - type: Transform -- uid: 6444 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: -28.478912,45.366596 - parent: 1 - type: Transform -- uid: 6445 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: -28.478912,45.366596 - parent: 1 - type: Transform -- uid: 6446 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: -28.478912,45.366596 - parent: 1 - type: Transform -- uid: 6447 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: -28.478912,45.366596 - parent: 1 - type: Transform -- uid: 6448 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: -28.478912,45.366596 - parent: 1 - type: Transform -- uid: 6449 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: -28.478912,45.366596 - parent: 1 - type: Transform -- uid: 6450 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: -28.478912,45.366596 - parent: 1 - type: Transform -- uid: 6451 - type: CableHV - components: - - pos: -4.5,-23.5 - parent: 1 - type: Transform -- uid: 6452 - type: Grille - components: - - pos: 24.5,-58.5 - parent: 1 - type: Transform -- uid: 6453 - type: Table - components: - - pos: -30.5,-69.5 - parent: 1 - type: Transform -- uid: 6454 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -31.5,-69.5 - parent: 1 - type: Transform -- uid: 6455 - type: CableMV - components: - - pos: 13.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6456 - type: CableApcExtension - components: - - pos: 8.5,-68.5 - parent: 1 - type: Transform -- uid: 6457 - type: CableHV - components: - - pos: -5.5,-28.5 - parent: 1 - type: Transform -- uid: 6458 - type: CableApcExtension - components: - - pos: 26.5,-47.5 - parent: 1 - type: Transform -- uid: 6459 - type: SpawnPointMedicalDoctor - components: - - pos: -12.5,-48.5 - parent: 1 - type: Transform -- uid: 6460 - type: CableHV - components: - - pos: -5.5,-35.5 - parent: 1 - type: Transform -- uid: 6461 - type: Poweredlight - components: - - pos: 4.5,-56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6462 - type: SolarPanel - components: - - pos: 8.5,-104.5 - parent: 1 - type: Transform -- uid: 6463 - type: CableHV - components: - - pos: 10.5,-26.5 - parent: 1 - type: Transform -- uid: 6464 - type: CableHV - components: - - pos: 8.5,-26.5 - parent: 1 - type: Transform -- uid: 6465 - type: GasPipeStraight - components: - - pos: 36.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6466 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 17.5,-20.5 - parent: 1 - type: Transform -- uid: 6467 - type: CableApcExtension - components: - - pos: -4.5,-27.5 - parent: 1 - type: Transform -- uid: 6468 - type: GasPipeStraight - components: - - pos: 36.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6469 - type: CableHV - components: - - pos: -7.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6470 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 27.5,-19.5 - parent: 1 - type: Transform -- uid: 6471 - type: Firelock - components: - - pos: -10.5,-75.5 - parent: 1 - type: Transform -- uid: 6472 - type: FirelockGlass - components: - - pos: 25.5,-15.5 - parent: 1 - type: Transform -- uid: 6473 - type: WallReinforced - components: - - pos: 37.5,52.5 - parent: 1 - type: Transform -- uid: 6474 - type: PosterContrabandRise - components: - - pos: -28.5,-50.5 - parent: 1 - type: Transform -- uid: 6475 - type: CableMV - components: - - pos: 14.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6476 - type: Firelock - components: - - pos: 34.5,22.5 - parent: 1 - type: Transform -- uid: 6477 - type: CableApcExtension - components: - - pos: 29.5,2.5 - parent: 1 - type: Transform -- uid: 6478 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -13.5,37.5 - parent: 1 - type: Transform -- uid: 6479 - type: CableApcExtension - components: - - pos: 25.5,-48.5 - parent: 1 - type: Transform -- uid: 6480 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 27.5,-7.5 - parent: 1 - type: Transform -- uid: 6481 - type: GasPipeStraight - components: - - pos: 23.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6482 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,-51.5 - parent: 1 - type: Transform -- uid: 6483 - type: WallSolid - components: - - pos: -6.5,-39.5 - parent: 1 - type: Transform -- uid: 6484 - type: FirelockGlass - components: - - pos: 14.5,-38.5 - parent: 1 - type: Transform -- uid: 6485 - type: RandomPosterLegit - components: - - pos: -24.5,14.5 - parent: 1 - type: Transform -- uid: 6486 - type: CableMV - components: - - pos: 32.5,-2.5 - parent: 1 - type: Transform -- uid: 6487 - type: WallReinforced - components: - - pos: 29.5,-15.5 - parent: 1 - type: Transform -- uid: 6488 - type: CableHV - components: - - pos: 19.5,-28.5 - parent: 1 - type: Transform -- uid: 6489 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-24.5 - parent: 1 - type: Transform -- uid: 6490 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6491 - type: CableHV - components: - - pos: -7.5,-26.5 - parent: 1 - type: Transform -- uid: 6492 - type: CableHV - components: - - pos: -6.5,-26.5 - parent: 1 - type: Transform -- uid: 6493 - type: CableHV - components: - - pos: -9.5,-42.5 - parent: 1 - type: Transform -- uid: 6494 - type: CableApcExtension - components: - - pos: -4.5,7.5 - parent: 1 - type: Transform -- uid: 6495 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 32.5,-19.5 - parent: 1 - type: Transform -- uid: 6496 - type: FirelockGlass - components: - - pos: -11.5,-55.5 - parent: 1 - type: Transform -- uid: 6497 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-44.5 - parent: 1 - type: Transform -- uid: 6498 - type: FirelockGlass - components: - - pos: 20.5,-15.5 - parent: 1 - type: Transform -- uid: 6499 - type: SignBar - components: - - rot: 1.5707963267948966 rad - pos: 12.5,4.5 - parent: 1 - type: Transform -- uid: 6500 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-44.5 - parent: 1 - type: Transform -- uid: 6501 - type: GasPipeStraight - components: - - pos: -18.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6502 - type: FirelockGlass - components: - - pos: 0.5,-55.5 - parent: 1 - type: Transform -- uid: 6503 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 14.5,-48.5 - parent: 1 - type: Transform -- uid: 6504 - type: GasPipeStraight - components: - - pos: 36.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6505 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -18.5,-3.5 - parent: 1 - type: Transform -- uid: 6506 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 11.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6507 - type: Table - components: - - pos: -8.5,-15.5 - parent: 1 - type: Transform -- uid: 6508 - type: WallSolid - components: - - pos: -17.5,-24.5 - parent: 1 - type: Transform -- uid: 6509 - type: PosterLegitLoveIan - components: - - pos: 21.5,-33.5 - parent: 1 - type: Transform -- uid: 6510 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 19.5,-55.5 - parent: 1 - type: Transform -- uid: 6511 - type: WallSolid - components: - - pos: 42.5,-55.5 - parent: 1 - type: Transform -- uid: 6512 - type: Grille - components: - - pos: -6.5,-36.5 - parent: 1 - type: Transform -- uid: 6513 - type: DisposalUnit - components: - - pos: -10.5,-12.5 - parent: 1 - type: Transform - - type: Timer -- uid: 6514 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.534615,-39.428345 - parent: 1 - type: Transform -- uid: 6515 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 39.5,12.5 - parent: 1 - type: Transform -- uid: 6516 - type: GasPipeStraight - components: - - pos: 47.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6517 - type: CableApcExtension - components: - - pos: 27.5,-39.5 - parent: 1 - type: Transform -- uid: 6518 - type: PosterContrabandRevolt - components: - - pos: -7.5,-73.5 - parent: 1 - type: Transform -- uid: 6519 - type: CableHV - components: - - pos: 8.5,-98.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6520 - type: WallSolid - components: - - pos: -26.5,32.5 - parent: 1 - type: Transform -- uid: 6521 - type: FirelockGlass - components: - - pos: 11.5,-29.5 - parent: 1 - type: Transform -- uid: 6522 - type: WallSolid - components: - - pos: 37.5,-55.5 - parent: 1 - type: Transform -- uid: 6523 - type: CableHV - components: - - pos: 2.5,-90.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6524 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 35.5,42.5 - parent: 1 - type: Transform -- uid: 6525 - type: Grille - components: - - pos: 19.5,-1.5 - parent: 1 - type: Transform -- uid: 6526 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -18.5,5.5 - parent: 1 - type: Transform -- uid: 6527 - type: CarpetSBlue - components: - - pos: 24.5,-22.5 - parent: 1 - type: Transform -- uid: 6528 - type: RandomSpawner - components: - - pos: -6.5,-74.5 - parent: 1 - type: Transform -- uid: 6529 - type: CableMV - components: - - pos: 6.5,-12.5 - parent: 1 - type: Transform -- uid: 6530 - type: CableApcExtension - components: - - pos: 28.5,-32.5 - parent: 1 - type: Transform -- uid: 6531 - type: CableApcExtension - components: - - pos: 30.5,-30.5 - parent: 1 - type: Transform -- uid: 6532 - type: CableApcExtension - components: - - pos: 30.5,-29.5 - parent: 1 - type: Transform -- uid: 6533 - type: CableApcExtension - components: - - pos: 30.5,-28.5 - parent: 1 - type: Transform -- uid: 6534 - type: ReinforcedWindow - components: - - pos: 15.5,-68.5 - parent: 1 - type: Transform -- uid: 6535 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-54.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 2598 - Forward: - - port: Left - uid: 2598 - Off: - - port: Middle - uid: 2598 - type: SignalReceiver -- uid: 6536 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 20.5,-51.5 - parent: 1 - type: Transform -- uid: 6537 - type: FlashlightLantern - components: - - pos: 19.460886,-28.487753 - parent: 1 - type: Transform -- uid: 6538 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 10.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6539 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 14.5,5.5 - parent: 1 - type: Transform -- uid: 6540 - type: GasPipeTJunction - components: - - pos: -22.5,-89.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6541 - type: GasPipeBend - components: - - pos: 24.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6542 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6543 - type: GasPassiveVent - components: - - pos: -50.5,-52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6544 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6545 - type: CableApcExtension - components: - - pos: 62.5,-10.5 - parent: 1 - type: Transform -- uid: 6546 - type: CableApcExtension - components: - - pos: 9.5,2.5 - parent: 1 - type: Transform -- uid: 6547 - type: CableApcExtension - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform -- uid: 6548 - type: CableApcExtension - components: - - pos: 27.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6549 - type: CableApcExtension - components: - - pos: 62.5,-12.5 - parent: 1 - type: Transform -- uid: 6550 - type: CableHV - components: - - pos: 15.5,-31.5 - parent: 1 - type: Transform -- uid: 6551 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6552 - type: WindoorBarLocked - components: - - rot: 1.5707963267948966 rad - pos: 15.5,14.5 - parent: 1 - type: Transform -- uid: 6553 - type: CableHV - components: - - pos: 14.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6554 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6555 - type: GasPipeStraight - components: - - pos: -10.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6556 - type: PosterContrabandMissingGloves - components: - - pos: 20.5,19.5 - parent: 1 - type: Transform -- uid: 6557 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-6.5 - parent: 1 - type: Transform -- uid: 6558 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6559 - type: GasPipeStraight - components: - - pos: 26.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6560 - type: CableApcExtension - components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform -- uid: 6561 - type: Window - components: - - pos: -6.5,-58.5 - parent: 1 - type: Transform -- uid: 6562 - type: HospitalCurtainsOpen - components: - - pos: 0.5,-55.5 - parent: 1 - type: Transform -- uid: 6563 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6564 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 1.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6565 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6566 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6567 - type: WallReinforced - components: - - pos: 35.5,5.5 - parent: 1 - type: Transform -- uid: 6568 - type: WallReinforced - components: - - pos: 35.5,3.5 - parent: 1 - type: Transform -- uid: 6569 - type: WallReinforced - components: - - pos: 33.5,9.5 - parent: 1 - type: Transform -- uid: 6570 - type: WallReinforced - components: - - pos: 27.5,9.5 - parent: 1 - type: Transform -- uid: 6571 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-18.5 - parent: 1 - type: Transform -- uid: 6572 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-18.5 - parent: 1 - type: Transform -- uid: 6573 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-18.5 - parent: 1 - type: Transform -- uid: 6574 - type: DisposalPipe - components: - - pos: 24.5,-14.5 - parent: 1 - type: Transform -- uid: 6575 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6576 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,3.5 - parent: 1 - type: Transform - - color: '#FFE4CEFF' - type: PointLight - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6577 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6578 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6579 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-40.5 - parent: 1 - type: Transform -- uid: 6580 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,-38.5 - parent: 1 - type: Transform -- uid: 6581 - type: WallReinforced - components: - - pos: 30.5,-38.5 - parent: 1 - type: Transform -- uid: 6582 - type: GasPipeTJunction - components: - - pos: 26.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6583 - type: ClothingHeadHelmetEVA - components: - - pos: 31.272081,-11.298456 - parent: 1 - type: Transform -- uid: 6584 - type: ClothingHeadHelmetEVA - components: - - pos: 31.334581,-13.329706 - parent: 1 - type: Transform -- uid: 6585 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 30.5,-64.5 - parent: 1 - type: Transform -- uid: 6586 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 33.5,-62.5 - parent: 1 - type: Transform -- uid: 6587 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 25.5,-61.5 - parent: 1 - type: Transform -- uid: 6588 - type: Grille - components: - - pos: -1.5,-34.5 - parent: 1 - type: Transform -- uid: 6589 - type: Table - components: - - pos: 15.5,-64.5 - parent: 1 - type: Transform -- uid: 6590 - type: CableApcExtension - components: - - pos: -4.5,-22.5 - parent: 1 - type: Transform -- uid: 6591 - type: CableApcExtension - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform -- uid: 6592 - type: CableApcExtension - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform -- uid: 6593 - type: CableApcExtension - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform -- uid: 6594 - type: CableApcExtension - components: - - pos: -4.5,-1.5 - parent: 1 - type: Transform -- uid: 6595 - type: Table - components: - - pos: 16.5,-64.5 - parent: 1 - type: Transform -- uid: 6596 - type: CableApcExtension - components: - - pos: -8.5,-0.5 - parent: 1 - type: Transform -- uid: 6597 - type: CableApcExtension - components: - - pos: -8.5,0.5 - parent: 1 - type: Transform -- uid: 6598 - type: CableMV - components: - - pos: -4.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6599 - type: CableApcExtension - components: - - pos: -3.5,-42.5 - parent: 1 - type: Transform -- uid: 6600 - type: CableApcExtension - components: - - pos: -0.5,-41.5 - parent: 1 - type: Transform -- uid: 6601 - type: CableMV - components: - - pos: 5.5,-43.5 - parent: 1 - type: Transform -- uid: 6602 - type: WindowReinforcedDirectional - components: - - pos: -3.5,4.5 - parent: 1 - type: Transform -- uid: 6603 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6604 - type: CableApcExtension - components: - - pos: -4.5,-32.5 - parent: 1 - type: Transform -- uid: 6605 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 9.5,2.5 - parent: 1 - type: Transform -- uid: 6606 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 4.5,7.5 - parent: 1 - type: Transform -- uid: 6607 - type: TableReinforced - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform -- uid: 6608 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 7.5,23.5 - parent: 1 - type: Transform -- uid: 6609 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 6.5,23.5 - parent: 1 - type: Transform -- uid: 6610 - type: WallReinforced - components: - - pos: 9.5,22.5 - parent: 1 - type: Transform -- uid: 6611 - type: WallReinforced - components: - - pos: 9.5,21.5 - parent: 1 - type: Transform -- uid: 6612 - type: PoweredSmallLight - components: - - pos: 23.5,-39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6613 - type: Window - components: - - pos: -6.5,-37.5 - parent: 1 - type: Transform -- uid: 6614 - type: WallSolid - components: - - pos: 15.5,-5.5 - parent: 1 - type: Transform -- uid: 6615 - type: FirelockGlass - components: - - pos: 35.5,-3.5 - parent: 1 - type: Transform -- uid: 6616 - type: Chair - components: - - pos: 15.5,-67.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6617 - type: OxygenCanister - components: - - pos: -9.5,-72.5 - parent: 1 - type: Transform -- uid: 6618 - type: CableApcExtension - components: - - pos: -6.5,-63.5 - parent: 1 - type: Transform -- uid: 6619 - type: ClothingBeltMedicalFilled - components: - - pos: -11.470623,-49.143177 - parent: 1 - type: Transform -- uid: 6620 - type: CableHV - components: - - pos: -5.5,-37.5 - parent: 1 - type: Transform -- uid: 6621 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 48.5,-23.5 - parent: 1 - type: Transform -- uid: 6622 - type: hydroponicsTray - components: - - pos: -8.5,11.5 - parent: 1 - type: Transform -- uid: 6623 - type: CableApcExtension - components: - - pos: 22.5,-42.5 - parent: 1 - type: Transform -- uid: 6624 - type: CableHV - components: - - pos: -14.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6625 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 8.5,-50.5 - parent: 1 - type: Transform -- uid: 6626 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 26.5,1.5 - parent: 1 - type: Transform -- uid: 6627 - type: CableApcExtension - components: - - pos: -1.5,-78.5 - parent: 1 - type: Transform -- uid: 6628 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 27.5,-9.5 - parent: 1 - type: Transform -- uid: 6629 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 21.5,-7.5 - parent: 1 - type: Transform -- uid: 6630 - type: GasPipeStraight - components: - - pos: -20.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6631 - type: GravityGenerator - components: - - pos: -19.5,2.5 - parent: 1 - type: Transform -- uid: 6632 - type: IntercomSupply - components: - - pos: -48.5,17.5 - parent: 1 - type: Transform -- uid: 6633 - type: PosterLegitSafetyInternals - components: - - pos: -39.5,-31.5 - parent: 1 - type: Transform -- uid: 6634 - type: GasVentPump - components: - - pos: -18.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6635 - type: APCBasic - components: - - rot: 3.141592653589793 rad - pos: 38.5,13.5 - parent: 1 - type: Transform -- uid: 6636 - type: CableMV - components: - - pos: 38.5,16.5 - parent: 1 - type: Transform -- uid: 6637 - type: SignRedFive - components: - - pos: 41.5,17.5 - parent: 1 - type: Transform -- uid: 6638 - type: SignRedTwo - components: - - rot: 3.141592653589793 rad - pos: 38.5,17.5 - parent: 1 - type: Transform -- uid: 6639 - type: CableMV - components: - - pos: 38.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6640 - type: Brutepack - components: - - pos: -6.6512356,-49.408676 - parent: 1 - type: Transform -- uid: 6641 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-32.5 - parent: 1 - type: Transform -- uid: 6642 - type: CableApcExtension - components: - - pos: -4.5,-74.5 - parent: 1 - type: Transform -- uid: 6643 - type: AirSensor - components: - - pos: 28.5,-28.5 - parent: 1 - type: Transform -- uid: 6644 - type: GasPipeStraight - components: - - pos: 22.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6645 - type: WallReinforced - components: - - pos: 3.5,20.5 - parent: 1 - type: Transform -- uid: 6646 - type: WallReinforced - components: - - pos: 8.5,-24.5 - parent: 1 - type: Transform -- uid: 6647 - type: Window - components: - - pos: -7.5,-56.5 - parent: 1 - type: Transform -- uid: 6648 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-44.5 - parent: 1 - type: Transform -- uid: 6649 - type: CableMV - components: - - pos: 7.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6650 - type: CableApcExtension - components: - - pos: 13.5,1.5 - parent: 1 - type: Transform -- uid: 6651 - type: CableApcExtension - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform -- uid: 6652 - type: CableApcExtension - components: - - pos: 11.5,2.5 - parent: 1 - type: Transform -- uid: 6653 - type: AirlockGlass - components: - - pos: 31.5,6.5 - parent: 1 - type: Transform -- uid: 6654 - type: BoozeDispenser - components: - - rot: -1.5707963267948966 rad - pos: 18.5,12.5 - parent: 1 - type: Transform -- uid: 6655 - type: soda_dispenser - components: - - rot: -1.5707963267948966 rad - pos: 18.5,11.5 - parent: 1 - type: Transform -- uid: 6656 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 18.5,11.5 - parent: 1 - type: Transform -- uid: 6657 - type: CableApcExtension - components: - - pos: 5.5,6.5 - parent: 1 - type: Transform -- uid: 6658 - type: CableMV - components: - - pos: 27.5,18.5 - parent: 1 - type: Transform -- uid: 6659 - type: SpawnPointMedicalDoctor - components: - - pos: -14.5,-48.5 - parent: 1 - type: Transform -- uid: 6660 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 23.5,-35.5 - parent: 1 - type: Transform -- uid: 6661 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -15.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6662 - type: LockerEvidence - components: - - pos: 4.5,-57.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6663 - type: BedsheetMime - components: - - pos: -26.5,43.5 - parent: 1 - type: Transform -- uid: 6664 - type: Window - components: - - pos: 41.5,-0.5 - parent: 1 - type: Transform -- uid: 6665 - type: FirelockGlass - components: - - pos: -22.5,-81.5 - parent: 1 - type: Transform -- uid: 6666 - type: Barricade - components: - - pos: -3.5,-75.5 - parent: 1 - type: Transform -- uid: 6667 - type: CableApcExtension - components: - - pos: 20.5,-0.5 - parent: 1 - type: Transform -- uid: 6668 - type: GasPipeStraight - components: - - pos: -20.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6669 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-82.5 - parent: 1 - type: Transform -- uid: 6670 - type: Grille - components: - - pos: -27.5,-88.5 - parent: 1 - type: Transform -- uid: 6671 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-76.5 - parent: 1 - type: Transform -- uid: 6672 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 22.5,-4.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6673 - type: Grille - components: - - pos: -20.5,-91.5 - parent: 1 - type: Transform -- uid: 6674 - type: Grille - components: - - pos: 17.5,-35.5 - parent: 1 - type: Transform -- uid: 6675 - type: CableApcExtension - components: - - pos: 35.5,-37.5 - parent: 1 - type: Transform -- uid: 6676 - type: Grille - components: - - pos: 33.5,-35.5 - parent: 1 - type: Transform -- uid: 6677 - type: AirlockMaintCommandLocked - components: - - name: substation - type: MetaData - - rot: 1.5707963267948966 rad - pos: 19.5,-31.5 - parent: 1 - type: Transform -- uid: 6678 - type: WallReinforced - components: - - pos: 12.5,-31.5 - parent: 1 - type: Transform -- uid: 6679 - type: WallReinforced - components: - - pos: 1.5,-33.5 - parent: 1 - type: Transform -- uid: 6680 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6681 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: 24.5,1.5 - parent: 1 - type: Transform -- uid: 6682 - type: Grille - components: - - pos: 22.5,5.5 - parent: 1 - type: Transform -- uid: 6683 - type: Grille - components: - - pos: 27.5,5.5 - parent: 1 - type: Transform -- uid: 6684 - type: Grille - components: - - pos: 35.5,7.5 - parent: 1 - type: Transform -- uid: 6685 - type: Grille - components: - - pos: 32.5,9.5 - parent: 1 - type: Transform -- uid: 6686 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6687 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 22.5,34.5 - parent: 1 - type: Transform -- uid: 6688 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 1 - type: Transform -- uid: 6689 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 22.5,-19.5 - parent: 1 - type: Transform -- uid: 6690 - type: CableApcExtension - components: - - pos: 9.5,-42.5 - parent: 1 - type: Transform -- uid: 6691 - type: GasPipeStraight - components: - - pos: 36.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6692 - type: Grille - components: - - pos: -3.5,-55.5 - parent: 1 - type: Transform -- uid: 6693 - type: Grille - components: - - pos: -0.5,-55.5 - parent: 1 - type: Transform -- uid: 6694 - type: Grille - components: - - pos: 2.5,-55.5 - parent: 1 - type: Transform -- uid: 6695 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 35.5,4.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -56135.043 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28070 - Close: - - port: Off - uid: 28070 - Toggle: [] - type: SignalReceiver -- uid: 6696 - type: Grille - components: - - pos: -20.5,-58.5 - parent: 1 - type: Transform -- uid: 6697 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 38.5,13.5 - parent: 1 - type: Transform -- uid: 6698 - type: LockerEvidence - components: - - pos: 34.5,-45.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6699 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 15.5,12.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -57047.77 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 3189 - Close: - - port: Off - uid: 3189 - Toggle: [] - type: SignalReceiver -- uid: 6700 - type: RandomDrinkGlass - components: - - pos: 15.5,11.5 - parent: 1 - type: Transform -- uid: 6701 - type: CableMV - components: - - pos: 32.5,-3.5 - parent: 1 - type: Transform -- uid: 6702 - type: Grille - components: - - pos: -9.5,-58.5 - parent: 1 - type: Transform -- uid: 6703 - type: TrashBananaPeel - components: - - pos: -16.502157,-32.75781 - parent: 1 - type: Transform -- uid: 6704 - type: CableApcExtension - components: - - pos: -33.5,-55.5 - parent: 1 - type: Transform -- uid: 6705 - type: CableHV - components: - - pos: 35.5,-28.5 - parent: 1 - type: Transform -- uid: 6706 - type: RandomPosterContraband - components: - - pos: -11.5,-99.5 - parent: 1 - type: Transform -- uid: 6707 - type: AirlockExternalGlassLocked - components: - - pos: -60.5,-54.5 - parent: 1 - type: Transform -- uid: 6708 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6709 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6710 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 34.5,-7.5 - parent: 1 - type: Transform -- uid: 6711 - type: WallSolid - components: - - pos: 42.5,-53.5 - parent: 1 - type: Transform -- uid: 6712 - type: CableHV - components: - - pos: -14.5,-42.5 - parent: 1 - type: Transform -- uid: 6713 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6714 - type: CableApcExtension - components: - - pos: -38.5,-68.5 - parent: 1 - type: Transform -- uid: 6715 - type: PosterContrabandRise - components: - - pos: -40.5,-69.5 - parent: 1 - type: Transform -- uid: 6716 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6717 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -10.5,-44.5 - parent: 1 - type: Transform -- uid: 6718 - type: GasPipeStraight - components: - - pos: -23.5,-81.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6719 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-80.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6720 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6721 - type: GasPipeStraight - components: - - pos: -23.5,-79.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6722 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-80.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6723 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-80.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6724 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6725 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6726 - type: GasPipeTJunction - components: - - pos: 10.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6727 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6728 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6729 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6730 - type: GasPipeTJunction - components: - - pos: 9.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6731 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6732 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 14.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6733 - type: GasPipeStraight - components: - - pos: 15.5,-39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6734 - type: FloorDrain - components: - - pos: -15.5,-75.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 6735 - type: WallReinforced - components: - - pos: -18.5,-87.5 - parent: 1 - type: Transform -- uid: 6736 - type: ReinforcedWindow - components: - - pos: -18.5,-88.5 - parent: 1 - type: Transform -- uid: 6737 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-79.5 - parent: 1 - type: Transform -- uid: 6738 - type: Catwalk - components: - - pos: -1.5,-81.5 - parent: 1 - type: Transform -- uid: 6739 - type: CarpetSBlue - components: - - pos: 25.5,-24.5 - parent: 1 - type: Transform -- uid: 6740 - type: CableHV - components: - - pos: 1.5,-89.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6741 - type: CableHV - components: - - pos: 3.5,-92.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6742 - type: CableHV - components: - - pos: 5.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6743 - type: Catwalk - components: - - pos: -1.5,-86.5 - parent: 1 - type: Transform -- uid: 6744 - type: Grille - components: - - pos: 5.5,18.5 - parent: 1 - type: Transform -- uid: 6745 - type: CableApcExtension - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform -- uid: 6746 - type: CableApcExtension - components: - - pos: -9.5,-5.5 - parent: 1 - type: Transform -- uid: 6747 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 7.5,10.5 - parent: 1 - type: Transform -- uid: 6748 - type: TableWood - components: - - pos: -10.5,-3.5 - parent: 1 - type: Transform -- uid: 6749 - type: CableApcExtension - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform -- uid: 6750 - type: TableWood - components: - - pos: -10.5,-4.5 - parent: 1 - type: Transform -- uid: 6751 - type: TableWood - components: - - pos: -10.5,-6.5 - parent: 1 - type: Transform -- uid: 6752 - type: CarpetSBlue - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-35.5 - parent: 1 - type: Transform -- uid: 6753 - type: LampGold - components: - - pos: -10.485052,-3.11381 - parent: 1 - type: Transform -- uid: 6754 - type: CarpetSBlue - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-36.5 - parent: 1 - type: Transform -- uid: 6755 - type: CarpetSBlue - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-36.5 - parent: 1 - type: Transform -- uid: 6756 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-76.5 - parent: 1 - type: Transform -- uid: 6757 - type: CableHV - components: - - pos: 13.5,-101.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6758 - type: ClothingBackpackDuffelSurgeryFilled - components: - - pos: -3.4849787,-66.40156 - parent: 1 - type: Transform -- uid: 6759 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6760 - type: GasPipeTJunction - components: - - pos: 5.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6761 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 5.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6762 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-43.5 - parent: 1 - type: Transform -- uid: 6763 - type: CableApcExtension - components: - - pos: -4.5,-39.5 - parent: 1 - type: Transform -- uid: 6764 - type: CableApcExtension - components: - - pos: 0.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6765 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 37.5,-35.5 - parent: 1 - type: Transform -- uid: 6766 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 16.5,-38.5 - parent: 1 - type: Transform -- uid: 6767 - type: Firelock - components: - - pos: -1.5,-44.5 - parent: 1 - type: Transform -- uid: 6768 - type: GasPipeStraight - components: - - pos: -3.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6769 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 48.5,-27.5 - parent: 1 - type: Transform -- uid: 6770 - type: WallReinforced - components: - - pos: 28.5,-11.5 - parent: 1 - type: Transform -- uid: 6771 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 60.5,12.5 - parent: 1 - type: Transform -- uid: 6772 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 21.5,-4.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6773 - type: Firelock - components: - - pos: 28.5,-26.5 - parent: 1 - type: Transform -- uid: 6774 - type: ChairFolding - components: - - rot: -1.5707963267948966 rad - pos: 18.5,26.5 - parent: 1 - type: Transform -- uid: 6775 - type: WallSolid - components: - - pos: 20.5,-3.5 - parent: 1 - type: Transform -- uid: 6776 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 36.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6777 - type: WallReinforced - components: - - pos: 13.5,-22.5 - parent: 1 - type: Transform -- uid: 6778 - type: WallReinforced - components: - - pos: 12.5,-18.5 - parent: 1 - type: Transform -- uid: 6779 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6780 - type: CarpetSBlue - components: - - pos: 28.5,-23.5 - parent: 1 - type: Transform -- uid: 6781 - type: CableApcExtension - components: - - pos: 21.5,-32.5 - parent: 1 - type: Transform -- uid: 6782 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6783 - type: GasPipeStraight - components: - - pos: 20.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6784 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6785 - type: GasPipeFourway - components: - - pos: 30.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6786 - type: GasPipeStraight - components: - - pos: 20.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6787 - type: Window - components: - - pos: -13.5,-56.5 - parent: 1 - type: Transform -- uid: 6788 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6789 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6790 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6791 - type: Grille - components: - - pos: 4.5,-72.5 - parent: 1 - type: Transform -- uid: 6792 - type: CableApcExtension - components: - - pos: 0.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6793 - type: WallReinforced - components: - - pos: 2.5,-72.5 - parent: 1 - type: Transform -- uid: 6794 - type: WallReinforced - components: - - pos: 12.5,-69.5 - parent: 1 - type: Transform -- uid: 6795 - type: WallSolid - components: - - pos: 11.5,-68.5 - parent: 1 - type: Transform -- uid: 6796 - type: Firelock - components: - - pos: -1.5,-72.5 - parent: 1 - type: Transform -- uid: 6797 - type: Gauze1 - components: - - pos: -6.3074856,-49.39305 - parent: 1 - type: Transform -- uid: 6798 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-85.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6799 - type: MagazineMagnumSubMachineGunHighVelocity - components: - - pos: 29.952528,32.56383 - parent: 1 - type: Transform -- uid: 6800 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-85.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6801 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,-87.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6802 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -24.5,-89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6803 - type: CableMV - components: - - pos: -18.5,-69.5 - parent: 1 - type: Transform -- uid: 6804 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-73.5 - parent: 1 - type: Transform -- uid: 6805 - type: DisposalPipe - components: - - pos: -23.5,-76.5 - parent: 1 - type: Transform -- uid: 6806 - type: BoxBeaker - components: - - pos: -26.122566,-84.458 - parent: 1 - type: Transform -- uid: 6807 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-88.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6808 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-88.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6809 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-88.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6810 - type: GasPipeStraight - components: - - pos: -24.5,-86.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6811 - type: TableReinforced - components: - - pos: -34.5,23.5 - parent: 1 - type: Transform -- uid: 6812 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6813 - type: WallSolid - components: - - pos: -18.5,-65.5 - parent: 1 - type: Transform -- uid: 6814 - type: DisposalPipe - components: - - pos: -19.5,-64.5 - parent: 1 - type: Transform -- uid: 6815 - type: DisposalPipe - components: - - pos: -19.5,-62.5 - parent: 1 - type: Transform -- uid: 6816 - type: CableApcExtension - components: - - pos: -19.5,-65.5 - parent: 1 - type: Transform -- uid: 6817 - type: DisposalPipe - components: - - pos: -19.5,-66.5 - parent: 1 - type: Transform -- uid: 6818 - type: DisposalPipe - components: - - pos: -19.5,-68.5 - parent: 1 - type: Transform -- uid: 6819 - type: DisposalPipe - components: - - pos: -19.5,-67.5 - parent: 1 - type: Transform -- uid: 6820 - type: CableMV - components: - - pos: -13.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6821 - type: DisposalYJunction - components: - - rot: 3.141592653589793 rad - pos: -19.5,-73.5 - parent: 1 - type: Transform -- uid: 6822 - type: CableApcExtension - components: - - pos: -19.5,-67.5 - parent: 1 - type: Transform -- uid: 6823 - type: GasPipeFourway - components: - - pos: -32.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6824 - type: CableApcExtension - components: - - pos: -19.5,-71.5 - parent: 1 - type: Transform -- uid: 6825 - type: CableApcExtension - components: - - pos: -18.5,-73.5 - parent: 1 - type: Transform -- uid: 6826 - type: CableApcExtension - components: - - pos: -18.5,-75.5 - parent: 1 - type: Transform -- uid: 6827 - type: CableApcExtension - components: - - pos: -16.5,-77.5 - parent: 1 - type: Transform -- uid: 6828 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6829 - type: ClothingHeadHelmetTemplar - components: - - pos: 38.423565,-15.642361 - parent: 1 - type: Transform -- uid: 6830 - type: ClothingHeadHelmetScaf - components: - - pos: -31.458502,-43.474 - parent: 1 - type: Transform -- uid: 6831 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-60.5 - parent: 1 - type: Transform -- uid: 6832 - type: CableHV - components: - - pos: 9.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6833 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 6.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6834 - type: CableApcExtension - components: - - pos: -24.5,-14.5 - parent: 1 - type: Transform -- uid: 6835 - type: BoxLatexGloves - components: - - pos: -22.700918,-76.44757 - parent: 1 - type: Transform -- uid: 6836 - type: Table - components: - - pos: 8.5,12.5 - parent: 1 - type: Transform -- uid: 6837 - type: GasPipeFourway - components: - - pos: 24.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6838 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 6839 - type: CableHV - components: - - pos: -4.5,-20.5 - parent: 1 - type: Transform -- uid: 6840 - type: CableMV - components: - - pos: 26.5,-28.5 - parent: 1 - type: Transform -- uid: 6841 - type: CableMV - components: - - pos: 25.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6842 - type: CableMV - components: - - pos: 23.5,-28.5 - parent: 1 - type: Transform -- uid: 6843 - type: CableMV - components: - - pos: 22.5,-28.5 - parent: 1 - type: Transform -- uid: 6844 - type: CableMV - components: - - pos: 20.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6845 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6846 - type: CableApcExtension - components: - - pos: 23.5,-24.5 - parent: 1 - type: Transform -- uid: 6847 - type: CableApcExtension - components: - - pos: 28.5,-34.5 - parent: 1 - type: Transform -- uid: 6848 - type: WallReinforced - components: - - pos: 23.5,-31.5 - parent: 1 - type: Transform -- uid: 6849 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6850 - type: CrateServiceJanitorialSupplies - components: - - pos: -9.5,-21.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6851 - type: MaterialWoodPlank - components: - - pos: -14.580205,-35.49298 - parent: 1 - type: Transform -- uid: 6852 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-20.5 - parent: 1 - type: Transform -- uid: 6853 - type: ChairWood - components: - - pos: -1.5,-16.5 - parent: 1 - type: Transform -- uid: 6854 - type: SurveillanceCameraCommand - components: - - pos: 31.5,-22.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: bridge - type: SurveillanceCamera -- uid: 6855 - type: BoxPDA - components: - - pos: 29.643738,-34.24831 - parent: 1 - type: Transform -- uid: 6856 - type: WallReinforced - components: - - pos: 27.5,-27.5 - parent: 1 - type: Transform -- uid: 6857 - type: CableApcExtension - components: - - pos: 45.5,-24.5 - parent: 1 - type: Transform -- uid: 6858 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-45.5 - parent: 1 - type: Transform -- uid: 6859 - type: WallReinforced - components: - - pos: -6.5,-44.5 - parent: 1 - type: Transform -- uid: 6860 - type: chem_master - components: - - pos: 2.5,-47.5 - parent: 1 - type: Transform -- uid: 6861 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-47.5 - parent: 1 - type: Transform -- uid: 6862 - type: HospitalCurtainsOpen - components: - - pos: -8.5,-55.5 - parent: 1 - type: Transform -- uid: 6863 - type: WallSolid - components: - - pos: 7.5,-58.5 - parent: 1 - type: Transform -- uid: 6864 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-63.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6865 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-63.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6866 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-64.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 7.458366 - - 28.057667 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6867 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-65.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 7.458366 - - 28.057667 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6868 - type: Morgue - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-66.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 7.458366 - - 28.057667 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 6869 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-53.5 - parent: 1 - type: Transform -- uid: 6870 - type: WallReinforced - components: - - pos: -2.5,-37.5 - parent: 1 - type: Transform -- uid: 6871 - type: WallReinforced - components: - - pos: 13.5,-40.5 - parent: 1 - type: Transform -- uid: 6872 - type: CableApcExtension - components: - - pos: -47.5,36.5 - parent: 1 - type: Transform -- uid: 6873 - type: WallReinforced - components: - - pos: 12.5,-40.5 - parent: 1 - type: Transform -- uid: 6874 - type: WallReinforced - components: - - pos: 10.5,-40.5 - parent: 1 - type: Transform -- uid: 6875 - type: WallReinforced - components: - - pos: 11.5,-40.5 - parent: 1 - type: Transform -- uid: 6876 - type: ReinforcedWindow - components: - - pos: -1.5,-33.5 - parent: 1 - type: Transform -- uid: 6877 - type: WindoorArmoryLocked - components: - - rot: -1.5707963267948966 rad - pos: 28.5,28.5 - parent: 1 - type: Transform -- uid: 6878 - type: CapacitorStockPart - components: - - pos: 38.521324,-35.53218 - parent: 1 - type: Transform -- uid: 6879 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-44.5 - parent: 1 - type: Transform -- uid: 6880 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-44.5 - parent: 1 - type: Transform -- uid: 6881 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 6882 - type: WallSolid - components: - - pos: -2.5,-16.5 - parent: 1 - type: Transform -- uid: 6883 - type: CableApcExtension - components: - - pos: 12.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6884 - type: GasPipeTJunction - components: - - pos: 7.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6885 - type: Handcuffs - components: - - pos: -1.4479281,19.547018 - parent: 1 - type: Transform -- uid: 6886 - type: WallSolid - components: - - pos: -11.5,-28.5 - parent: 1 - type: Transform -- uid: 6887 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-26.5 - parent: 1 - type: Transform -- uid: 6888 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,0.5 - parent: 1 - type: Transform -- uid: 6889 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,-23.5 - parent: 1 - type: Transform -- uid: 6890 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,-24.5 - parent: 1 - type: Transform -- uid: 6891 - type: WallSolid - components: - - pos: -7.5,-35.5 - parent: 1 - type: Transform -- uid: 6892 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 27.5,-38.5 - parent: 1 - type: Transform -- uid: 6893 - type: GasPipeStraight - components: - - pos: 23.5,-36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6894 - type: WallReinforced - components: - - pos: -1.5,-36.5 - parent: 1 - type: Transform -- uid: 6895 - type: Table - components: - - pos: 9.5,-58.5 - parent: 1 - type: Transform -- uid: 6896 - type: MedkitBruteFilled - components: - - pos: 9.774347,-62.35707 - parent: 1 - type: Transform -- uid: 6897 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6898 - type: CableHV - components: - - pos: 16.5,-29.5 - parent: 1 - type: Transform -- uid: 6899 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6900 - type: GasPipeStraight - components: - - pos: -3.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6901 - type: GasPipeStraight - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6902 - type: GasPipeStraight - components: - - pos: -5.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6903 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6904 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6905 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6906 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6907 - type: CableHV - components: - - pos: -4.5,-26.5 - parent: 1 - type: Transform -- uid: 6908 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6909 - type: CableApcExtension - components: - - pos: -14.5,-57.5 - parent: 1 - type: Transform -- uid: 6910 - type: CableApcExtension - components: - - pos: 0.5,-48.5 - parent: 1 - type: Transform -- uid: 6911 - type: CableMV - components: - - pos: 7.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6912 - type: CableHV - components: - - pos: 10.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6913 - type: CableApcExtension - components: - - pos: 13.5,-0.5 - parent: 1 - type: Transform -- uid: 6914 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6915 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,5.5 - parent: 1 - type: Transform -- uid: 6916 - type: DisposalPipe - components: - - pos: 12.5,8.5 - parent: 1 - type: Transform -- uid: 6917 - type: GasPipeTJunction - components: - - pos: -3.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6918 - type: WallReinforced - components: - - pos: 27.5,-13.5 - parent: 1 - type: Transform -- uid: 6919 - type: CableMV - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6920 - type: DisposalJunctionFlipped - components: - - pos: 17.5,1.5 - parent: 1 - type: Transform -- uid: 6921 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 17.5,5.5 - parent: 1 - type: Transform -- uid: 6922 - type: WindowDirectional - components: - - pos: 9.5,2.5 - parent: 1 - type: Transform -- uid: 6923 - type: DisposalPipe - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform -- uid: 6924 - type: DisposalPipe - components: - - pos: 12.5,4.5 - parent: 1 - type: Transform -- uid: 6925 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 8.5,-0.5 - parent: 1 - type: Transform -- uid: 6926 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 19.5,-7.5 - parent: 1 - type: Transform -- uid: 6927 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 7.5,0.5 - parent: 1 - type: Transform -- uid: 6928 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 1 - type: Transform -- uid: 6929 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-0.5 - parent: 1 - type: Transform -- uid: 6930 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 19.5,1.5 - parent: 1 - type: Transform -- uid: 6931 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 12.5,15.5 - parent: 1 - type: Transform -- uid: 6932 - type: VendingMachineSecDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,21.5 - parent: 1 - type: Transform -- uid: 6933 - type: WallSolid - components: - - pos: 29.5,-3.5 - parent: 1 - type: Transform -- uid: 6934 - type: SpawnPointHeadOfSecurity - components: - - pos: 5.5,21.5 - parent: 1 - type: Transform -- uid: 6935 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: 27.5,5.5 - parent: 1 - type: Transform -- uid: 6936 - type: CableApcExtension - components: - - pos: 20.5,2.5 - parent: 1 - type: Transform -- uid: 6937 - type: AirAlarm - components: - - pos: 24.5,5.5 - parent: 1 - type: Transform - - devices: - - 6681 - - 728 - - 5920 - - 3418 - type: DeviceList -- uid: 6938 - type: CableApcExtension - components: - - pos: 20.5,-1.5 - parent: 1 - type: Transform -- uid: 6939 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-3.5 - parent: 1 - type: Transform -- uid: 6940 - type: CarpetGreen - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-12.5 - parent: 1 - type: Transform -- uid: 6941 - type: CableMV - components: - - pos: 20.5,-11.5 - parent: 1 - type: Transform -- uid: 6942 - type: APCHighCapacity - components: - - pos: 21.5,-9.5 - parent: 1 - type: Transform -- uid: 6943 - type: CableApcExtension - components: - - pos: 17.5,-13.5 - parent: 1 - type: Transform -- uid: 6944 - type: CableApcExtension - components: - - pos: 62.5,-11.5 - parent: 1 - type: Transform -- uid: 6945 - type: GasPipeStraight - components: - - pos: -3.5,-41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6946 - type: GasPipeStraight - components: - - pos: -19.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6947 - type: GasPipeStraight - components: - - pos: -19.5,-59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6948 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6949 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: 29.503365,-39.44397 - parent: 1 - type: Transform -- uid: 6950 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6951 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6952 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6953 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6954 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6955 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-78.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 6956 - type: SurveillanceCameraCommand - components: - - rot: 3.141592653589793 rad - pos: 64.5,-51.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: research director - type: SurveillanceCamera -- uid: 6957 - type: CableApcExtension - components: - - pos: -8.5,-25.5 - parent: 1 - type: Transform -- uid: 6958 - type: Table - components: - - pos: 31.5,-12.5 - parent: 1 - type: Transform -- uid: 6959 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 31.5,-9.5 - parent: 1 - type: Transform -- uid: 6960 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-57.5 - parent: 1 - type: Transform -- uid: 6961 - type: WallSolid - components: - - pos: -17.5,-33.5 - parent: 1 - type: Transform -- uid: 6962 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-21.5 - parent: 1 - type: Transform -- uid: 6963 - type: WallSolid - components: - - pos: 35.5,-0.5 - parent: 1 - type: Transform -- uid: 6964 - type: RandomSpawner - components: - - pos: 35.5,-72.5 - parent: 1 - type: Transform -- uid: 6965 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,14.5 - parent: 1 - type: Transform -- uid: 6966 - type: WallSolid - components: - - pos: -3.5,15.5 - parent: 1 - type: Transform -- uid: 6967 - type: Grille - components: - - pos: 33.5,-15.5 - parent: 1 - type: Transform -- uid: 6968 - type: Grille - components: - - pos: -13.5,39.5 - parent: 1 - type: Transform -- uid: 6969 - type: WallReinforced - components: - - pos: 28.5,-15.5 - parent: 1 - type: Transform -- uid: 6970 - type: WallReinforced - components: - - pos: 42.5,52.5 - parent: 1 - type: Transform -- uid: 6971 - type: ComputerBroken - components: - - pos: 51.5,36.5 - parent: 1 - type: Transform -- uid: 6972 - type: GasRecyclerMachineCircuitboard - components: - - pos: 53.993114,35.55658 - parent: 1 - type: Transform -- uid: 6973 - type: RandomPosterLegit - components: - - pos: -21.5,-40.5 - parent: 1 - type: Transform -- uid: 6974 - type: PottedPlantRandomPlastic - components: - - pos: -6.5,-45.5 - parent: 1 - type: Transform -- uid: 6975 - type: FirelockGlass - components: - - pos: -15.5,-55.5 - parent: 1 - type: Transform -- uid: 6976 - type: CableApcExtension - components: - - pos: -36.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6977 - type: VendingMachineHydrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,12.5 - parent: 1 - type: Transform -- uid: 6978 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6979 - type: GasPipeStraight - components: - - pos: -3.5,-39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6980 - type: CableHV - components: - - pos: 16.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 6981 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6982 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6983 - type: Window - components: - - pos: 43.5,-0.5 - parent: 1 - type: Transform -- uid: 6984 - type: CableApcExtension - components: - - pos: 19.5,-32.5 - parent: 1 - type: Transform -- uid: 6985 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 20.5,-19.5 - parent: 1 - type: Transform -- uid: 6986 - type: PillTricordrazine - components: - - pos: -8.519056,-32.256336 - parent: 1 - type: Transform -- uid: 6987 - type: TableCarpet - components: - - pos: -24.5,34.5 - parent: 1 - type: Transform -- uid: 6988 - type: GasPipeTJunction - components: - - pos: -19.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 6989 - type: ChairFolding - components: - - rot: 1.5707963267948966 rad - pos: -25.5,53.5 - parent: 1 - type: Transform -- uid: 6990 - type: ToolboxEmergencyFilled - components: - - pos: 4.5177064,-69.50256 - parent: 1 - type: Transform -- uid: 6991 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-54.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 2598 - Forward: - - port: Left - uid: 2598 - Off: - - port: Middle - uid: 2598 - type: SignalReceiver -- uid: 6992 - type: FirelockGlass - components: - - pos: 25.5,-44.5 - parent: 1 - type: Transform -- uid: 6993 - type: CableHV - components: - - pos: -2.5,-42.5 - parent: 1 - type: Transform -- uid: 6994 - type: CableApcExtension - components: - - pos: 1.5,11.5 - parent: 1 - type: Transform -- uid: 6995 - type: DisposalPipe - components: - - pos: -4.5,-41.5 - parent: 1 - type: Transform -- uid: 6996 - type: DisposalPipe - components: - - pos: -4.5,-39.5 - parent: 1 - type: Transform -- uid: 6997 - type: DisposalPipe - components: - - pos: -4.5,-37.5 - parent: 1 - type: Transform -- uid: 6998 - type: Grille - components: - - pos: -4.5,-57.5 - parent: 1 - type: Transform -- uid: 6999 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-27.5 - parent: 1 - type: Transform -- uid: 7000 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-43.5 - parent: 1 - type: Transform -- uid: 7001 - type: SurveillanceCameraScience - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-36.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: r&d - type: SurveillanceCamera -- uid: 7002 - type: TableGlass - components: - - pos: -25.5,55.5 - parent: 1 - type: Transform -- uid: 7003 - type: CableApcExtension - components: - - pos: 22.5,-17.5 - parent: 1 - type: Transform -- uid: 7004 - type: RandomPosterContraband - components: - - pos: -27.5,-95.5 - parent: 1 - type: Transform -- uid: 7005 - type: ReinforcedWindow - components: - - pos: -22.5,-1.5 - parent: 1 - type: Transform -- uid: 7006 - type: CableApcExtension - components: - - pos: 24.5,-17.5 - parent: 1 - type: Transform -- uid: 7007 - type: CableApcExtension - components: - - pos: 25.5,-17.5 - parent: 1 - type: Transform -- uid: 7008 - type: CableApcExtension - components: - - pos: 26.5,-17.5 - parent: 1 - type: Transform -- uid: 7009 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-43.5 - parent: 1 - type: Transform -- uid: 7010 - type: WallReinforced - components: - - pos: -18.5,-84.5 - parent: 1 - type: Transform -- uid: 7011 - type: Poweredlight - components: - - pos: 27.5,-16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7012 - type: FirelockGlass - components: - - pos: -14.5,-55.5 - parent: 1 - type: Transform -- uid: 7013 - type: AirlockGlass - components: - - pos: 1.5,53.5 - parent: 1 - type: Transform -- uid: 7014 - type: AirlockGlass - components: - - pos: 0.5,53.5 - parent: 1 - type: Transform -- uid: 7015 - type: AirlockGlass - components: - - pos: -0.5,53.5 - parent: 1 - type: Transform -- uid: 7016 - type: WallSolid - components: - - pos: -23.5,36.5 - parent: 1 - type: Transform -- uid: 7017 - type: WallSolid - components: - - pos: -23.5,37.5 - parent: 1 - type: Transform -- uid: 7018 - type: WallSolid - components: - - pos: -23.5,39.5 - parent: 1 - type: Transform -- uid: 7019 - type: CableMV - components: - - pos: -17.5,-69.5 - parent: 1 - type: Transform -- uid: 7020 - type: ReinforcedWindow - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform -- uid: 7021 - type: Grille - components: - - pos: 19.5,3.5 - parent: 1 - type: Transform -- uid: 7022 - type: GasPipeStraight - components: - - pos: 34.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7023 - type: CableHV - components: - - pos: 16.5,-42.5 - parent: 1 - type: Transform -- uid: 7024 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: 12.5,8.5 - parent: 1 - type: Transform -- uid: 7025 - type: WallReinforced - components: - - pos: -20.5,-1.5 - parent: 1 - type: Transform -- uid: 7026 - type: GasPipeStraight - components: - - pos: -18.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7027 - type: GasPipeStraight - components: - - pos: -18.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7028 - type: GasPipeFourway - components: - - pos: -18.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7029 - type: ShuttersNormalOpen - components: - - pos: 61.5,-56.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86520.43 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28681 - Close: - - port: Off - uid: 28681 - Toggle: [] - type: SignalReceiver -- uid: 7030 - type: CableApcExtension - components: - - pos: 17.5,-40.5 - parent: 1 - type: Transform -- uid: 7031 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 8.5,8.5 - parent: 1 - type: Transform -- uid: 7032 - type: ReinforcedWindow - components: - - pos: -17.5,-3.5 - parent: 1 - type: Transform -- uid: 7033 - type: WallSolid - components: - - pos: -5.5,13.5 - parent: 1 - type: Transform -- uid: 7034 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-76.5 - parent: 1 - type: Transform -- uid: 7035 - type: Grille - components: - - pos: 4.5,-82.5 - parent: 1 - type: Transform -- uid: 7036 - type: Table - components: - - pos: -7.5,-15.5 - parent: 1 - type: Transform -- uid: 7037 - type: ClothingShoesBootsLaceup - components: - - pos: 45.797165,49.377663 - parent: 1 - type: Transform -- uid: 7038 - type: DrinkAntifreeze - components: - - pos: -25.524792,55.598667 - parent: 1 - type: Transform -- uid: 7039 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -25.5,54.5 - parent: 1 - type: Transform -- uid: 7040 - type: FirelockGlass - components: - - pos: 19.5,-4.5 - parent: 1 - type: Transform -- uid: 7041 - type: CableApcExtension - components: - - pos: -4.5,-17.5 - parent: 1 - type: Transform -- uid: 7042 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -1.5055174,1.4292434 - parent: 1 - type: Transform -- uid: 7043 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7044 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7045 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7046 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 3.5,13.5 - parent: 1 - type: Transform -- uid: 7047 - type: CableHV - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7048 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7049 - type: WallSolid - components: - - pos: -10.5,-66.5 - parent: 1 - type: Transform -- uid: 7050 - type: PoweredSmallLight - components: - - pos: -15.5,-63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7051 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -13.5,-67.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7052 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-9.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7053 - type: PoweredSmallLight - components: - - pos: -20.5,-66.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7054 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -6.5,-65.5 - parent: 1 - type: Transform -- uid: 7055 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-65.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7056 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-64.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7057 - type: EmergencyRollerBed - components: - - pos: -20.356709,-75.42545 - parent: 1 - type: Transform -- uid: 7058 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-66.5 - parent: 1 - type: Transform -- uid: 7059 - type: ClothingOuterSuitMonkey - components: - - pos: -23.4853,-87.30585 - parent: 1 - type: Transform -- uid: 7060 - type: CableApcExtension - components: - - pos: 20.5,-47.5 - parent: 1 - type: Transform -- uid: 7061 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 21.5,19.5 - parent: 1 - type: Transform -- uid: 7062 - type: WallReinforced - components: - - pos: 18.5,18.5 - parent: 1 - type: Transform -- uid: 7063 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -5.5,-50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7064 - type: WallSolid - components: - - pos: 20.5,-48.5 - parent: 1 - type: Transform -- uid: 7065 - type: FlashlightSeclite - components: - - rot: 3.141592653589793 rad - pos: 7.161119,12.488324 - parent: 1 - type: Transform -- uid: 7066 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7067 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -20.5,58.5 - parent: 1 - type: Transform - - devices: - - 26094 - - 25905 - - 25906 - - 25670 - - 25669 - - 25668 - - 25902 - - 25901 - - invalid - - 13937 - - 25299 - - 25298 - type: DeviceList -- uid: 7068 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -11.5,62.5 - parent: 1 - type: Transform - - devices: - - 25905 - - 25906 - - 25981 - - 25903 - - 25904 - - 25900 - - 23111 - - invalid - - 18114 - type: DeviceList -- uid: 7069 - type: PoweredSmallLight - components: - - pos: -20.5,-63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7070 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7071 - type: DrinkDoctorsDelightGlass - components: - - pos: -18.294592,-56.251144 - parent: 1 - type: Transform -- uid: 7072 - type: PoweredSmallLight - components: - - pos: -15.5,-75.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7073 - type: PoweredSmallLight - components: - - pos: -15.5,-69.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7074 - type: Poweredlight - components: - - pos: -23.5,-69.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7075 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -23.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 7076 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -22.5,-73.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7077 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -15.5,-79.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7078 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-80.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7079 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-78.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7080 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-90.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7081 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -22.5,-90.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7082 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7083 - type: Grille - components: - - pos: 32.5,-38.5 - parent: 1 - type: Transform -- uid: 7084 - type: ReinforcedWindow - components: - - pos: 12.5,-34.5 - parent: 1 - type: Transform -- uid: 7085 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 6.5,-19.5 - parent: 1 - type: Transform -- uid: 7086 - type: Grille - components: - - pos: 23.5,-20.5 - parent: 1 - type: Transform -- uid: 7087 - type: Grille - components: - - pos: 25.5,-20.5 - parent: 1 - type: Transform -- uid: 7088 - type: Grille - components: - - pos: 27.5,-20.5 - parent: 1 - type: Transform -- uid: 7089 - type: Grille - components: - - pos: 19.5,-15.5 - parent: 1 - type: Transform -- uid: 7090 - type: Grille - components: - - pos: 23.5,-11.5 - parent: 1 - type: Transform -- uid: 7091 - type: Grille - components: - - pos: 25.5,-3.5 - parent: 1 - type: Transform -- uid: 7092 - type: Grille - components: - - pos: 27.5,-3.5 - parent: 1 - type: Transform -- uid: 7093 - type: Grille - components: - - pos: 22.5,-3.5 - parent: 1 - type: Transform -- uid: 7094 - type: GasPipeStraight - components: - - pos: -23.5,-74.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7095 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7096 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7097 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-83.5 - parent: 1 - type: Transform -- uid: 7098 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-80.5 - parent: 1 - type: Transform -- uid: 7099 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-76.5 - parent: 1 - type: Transform -- uid: 7100 - type: CableHV - components: - - pos: 12.5,-101.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7101 - type: CableHV - components: - - pos: 10.5,-101.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7102 - type: CableHV - components: - - pos: 8.5,-101.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7103 - type: Catwalk - components: - - pos: 2.5,-89.5 - parent: 1 - type: Transform -- uid: 7104 - type: SolarPanel - components: - - pos: 14.5,-98.5 - parent: 1 - type: Transform -- uid: 7105 - type: Catwalk - components: - - pos: 7.5,-92.5 - parent: 1 - type: Transform -- uid: 7106 - type: CableHV - components: - - pos: 14.5,-101.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7107 - type: Catwalk - components: - - pos: 2.5,-92.5 - parent: 1 - type: Transform -- uid: 7108 - type: Catwalk - components: - - pos: 11.5,-100.5 - parent: 1 - type: Transform -- uid: 7109 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7110 - type: SolarPanel - components: - - pos: 10.5,-98.5 - parent: 1 - type: Transform -- uid: 7111 - type: SolarPanel - components: - - pos: 8.5,-98.5 - parent: 1 - type: Transform -- uid: 7112 - type: SolarTracker - components: - - pos: 11.5,-105.5 - parent: 1 - type: Transform -- uid: 7113 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 8.5,-92.5 - parent: 1 - type: Transform -- uid: 7114 - type: Catwalk - components: - - pos: 6.5,-92.5 - parent: 1 - type: Transform -- uid: 7115 - type: Catwalk - components: - - pos: 5.5,-92.5 - parent: 1 - type: Transform -- uid: 7116 - type: SolarPanel - components: - - pos: 8.5,-95.5 - parent: 1 - type: Transform -- uid: 7117 - type: SolarPanel - components: - - pos: 12.5,-95.5 - parent: 1 - type: Transform -- uid: 7118 - type: SolarPanel - components: - - pos: 12.5,-98.5 - parent: 1 - type: Transform -- uid: 7119 - type: SolarPanel - components: - - pos: 14.5,-101.5 - parent: 1 - type: Transform -- uid: 7120 - type: SolarPanel - components: - - pos: 14.5,-95.5 - parent: 1 - type: Transform -- uid: 7121 - type: SolarPanel - components: - - pos: 6.5,-95.5 - parent: 1 - type: Transform -- uid: 7122 - type: SolarPanel - components: - - pos: 8.5,-101.5 - parent: 1 - type: Transform -- uid: 7123 - type: CableHV - components: - - pos: 9.5,-104.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7124 - type: CableHV - components: - - pos: 13.5,-104.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7125 - type: CableHV - components: - - pos: 9.5,-98.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7126 - type: SolarPanel - components: - - pos: 4.5,-95.5 - parent: 1 - type: Transform -- uid: 7127 - type: CableHV - components: - - pos: -1.5,-83.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7128 - type: CableHV - components: - - pos: -1.5,-81.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7129 - type: CableHV - components: - - pos: -1.5,-79.5 - parent: 1 - type: Transform -- uid: 7130 - type: CableHV - components: - - pos: -2.5,-79.5 - parent: 1 - type: Transform -- uid: 7131 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: -2.5,-79.5 - parent: 1 - type: Transform -- uid: 7132 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-82.5 - parent: 1 - type: Transform -- uid: 7133 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -9.5,-76.5 - parent: 1 - type: Transform -- uid: 7134 - type: ComputerSolarControl - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-77.5 - parent: 1 - type: Transform -- uid: 7135 - type: CableHV - components: - - pos: -2.5,-75.5 - parent: 1 - type: Transform -- uid: 7136 - type: CableHV - components: - - pos: -2.5,-76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7137 - type: CableHV - components: - - pos: -10.5,-75.5 - parent: 1 - type: Transform -- uid: 7138 - type: CableApcExtension - components: - - pos: -3.5,-68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7139 - type: CableApcExtension - components: - - pos: 6.5,-66.5 - parent: 1 - type: Transform -- uid: 7140 - type: CableApcExtension - components: - - pos: 6.5,-67.5 - parent: 1 - type: Transform -- uid: 7141 - type: CableApcExtension - components: - - pos: 5.5,-67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7142 - type: CableApcExtension - components: - - pos: 4.5,-67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7143 - type: Catwalk - components: - - pos: -9.5,-75.5 - parent: 1 - type: Transform -- uid: 7144 - type: Welder - components: - - pos: -11.453522,-74.45183 - parent: 1 - type: Transform -- uid: 7145 - type: Rack - components: - - pos: -6.5,-68.5 - parent: 1 - type: Transform -- uid: 7146 - type: WallSolid - components: - - pos: -3.5,-73.5 - parent: 1 - type: Transform -- uid: 7147 - type: WallSolid - components: - - pos: -2.5,-72.5 - parent: 1 - type: Transform -- uid: 7148 - type: WallReinforced - components: - - pos: 6.5,-72.5 - parent: 1 - type: Transform -- uid: 7149 - type: SubstationBasic - components: - - pos: 69.5,-59.5 - parent: 1 - type: Transform -- uid: 7150 - type: DrinkGlass - components: - - pos: 0.54256004,-5.358738 - parent: 1 - type: Transform -- uid: 7151 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-23.5 - parent: 1 - type: Transform -- uid: 7152 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-25.5 - parent: 1 - type: Transform -- uid: 7153 - type: CarpetSBlue - components: - - pos: 22.5,-23.5 - parent: 1 - type: Transform -- uid: 7154 - type: CarpetSBlue - components: - - pos: 22.5,-22.5 - parent: 1 - type: Transform -- uid: 7155 - type: WallSolid - components: - - pos: 57.5,-64.5 - parent: 1 - type: Transform -- uid: 7156 - type: CarpetSBlue - components: - - pos: 23.5,-22.5 - parent: 1 - type: Transform -- uid: 7157 - type: ReinforcedPlasmaWindow - components: - - rot: 3.141592653589793 rad - pos: 26.5,-20.5 - parent: 1 - type: Transform -- uid: 7158 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 24.5,-20.5 - parent: 1 - type: Transform -- uid: 7159 - type: CarpetSBlue - components: - - pos: 25.5,-23.5 - parent: 1 - type: Transform -- uid: 7160 - type: CarpetSBlue - components: - - pos: 25.5,-22.5 - parent: 1 - type: Transform -- uid: 7161 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7162 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-24.5 - parent: 1 - type: Transform -- uid: 7163 - type: ComputerId - components: - - pos: 25.5,-24.5 - parent: 1 - type: Transform -- uid: 7164 - type: GunpetInstrument - components: - - pos: 18.804333,-20.357145 - parent: 1 - type: Transform -- uid: 7165 - type: FoodBoxDonkpocketHonk - components: - - pos: 32.37506,-20.42581 - parent: 1 - type: Transform -- uid: 7166 - type: KitchenMicrowave - components: - - pos: 31.5,-20.5 - parent: 1 - type: Transform -- uid: 7167 - type: WindowReinforcedDirectional - components: - - pos: 24.5,-23.5 - parent: 1 - type: Transform -- uid: 7168 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 26.517971,-21.50738 - parent: 1 - type: Transform -- uid: 7169 - type: CarpetSBlue - components: - - pos: 26.5,-23.5 - parent: 1 - type: Transform -- uid: 7170 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,-21.5 - parent: 1 - type: Transform -- uid: 7171 - type: RailingCorner - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-19.5 - parent: 1 - type: Transform -- uid: 7172 - type: RailingCorner - components: - - rot: 3.141592653589793 rad - pos: 21.5,-19.5 - parent: 1 - type: Transform -- uid: 7173 - type: ReinforcedPlasmaWindow - components: - - rot: 3.141592653589793 rad - pos: 24.5,-20.5 - parent: 1 - type: Transform -- uid: 7174 - type: WallSolid - components: - - pos: -14.5,-16.5 - parent: 1 - type: Transform -- uid: 7175 - type: WallSolid - components: - - pos: -14.5,-19.5 - parent: 1 - type: Transform -- uid: 7176 - type: AirlockSecurityLocked - components: - - pos: -17.5,-20.5 - parent: 1 - type: Transform -- uid: 7177 - type: AirlockMaintSecLocked - components: - - pos: -15.5,-19.5 - parent: 1 - type: Transform -- uid: 7178 - type: WallSolid - components: - - pos: -17.5,-19.5 - parent: 1 - type: Transform -- uid: 7179 - type: WallSolid - components: - - pos: -17.5,-18.5 - parent: 1 - type: Transform -- uid: 7180 - type: WallSolid - components: - - pos: -17.5,-36.5 - parent: 1 - type: Transform -- uid: 7181 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-39.5 - parent: 1 - type: Transform -- uid: 7182 - type: Window - components: - - pos: -21.5,-22.5 - parent: 1 - type: Transform -- uid: 7183 - type: FirelockGlass - components: - - pos: -0.5,-27.5 - parent: 1 - type: Transform -- uid: 7184 - type: FirelockGlass - components: - - pos: -18.5,-39.5 - parent: 1 - type: Transform -- uid: 7185 - type: FirelockGlass - components: - - pos: -5.5,-22.5 - parent: 1 - type: Transform -- uid: 7186 - type: FirelockGlass - components: - - pos: 0.5,-2.5 - parent: 1 - type: Transform -- uid: 7187 - type: FirelockGlass - components: - - pos: 4.5,11.5 - parent: 1 - type: Transform -- uid: 7188 - type: FirelockGlass - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform -- uid: 7189 - type: FirelockGlass - components: - - pos: -5.5,-39.5 - parent: 1 - type: Transform -- uid: 7190 - type: FirelockGlass - components: - - pos: -4.5,-39.5 - parent: 1 - type: Transform -- uid: 7191 - type: FirelockGlass - components: - - pos: -3.5,-39.5 - parent: 1 - type: Transform -- uid: 7192 - type: AirlockEngineeringGlassLocked - components: - - pos: -69.5,-23.5 - parent: 1 - type: Transform -- uid: 7193 - type: AirlockEngineeringGlassLocked - components: - - pos: -63.5,-24.5 - parent: 1 - type: Transform -- uid: 7194 - type: FirelockGlass - components: - - pos: 0.5,4.5 - parent: 1 - type: Transform -- uid: 7195 - type: FirelockGlass - components: - - pos: 2.5,4.5 - parent: 1 - type: Transform -- uid: 7196 - type: AirlockBrigGlassLocked - components: - - name: brig - type: MetaData - - rot: 1.5707963267948966 rad - pos: 27.5,18.5 - parent: 1 - type: Transform -- uid: 7197 - type: TableCounterWood - components: - - pos: 17.5,15.5 - parent: 1 - type: Transform -- uid: 7198 - type: Firelock - components: - - pos: 14.5,16.5 - parent: 1 - type: Transform -- uid: 7199 - type: AirlockSecurityGlassLocked - components: - - rot: 3.141592653589793 rad - pos: 9.5,16.5 - parent: 1 - type: Transform -- uid: 7200 - type: AirlockSecurityLocked - components: - - name: sec dorm - type: MetaData - - rot: 3.141592653589793 rad - pos: 3.5,16.5 - parent: 1 - type: Transform -- uid: 7201 - type: Firelock - components: - - pos: 28.5,23.5 - parent: 1 - type: Transform -- uid: 7202 - type: CableApcExtension - components: - - pos: 3.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7203 - type: CableApcExtension - components: - - pos: 6.5,-70.5 - parent: 1 - type: Transform -- uid: 7204 - type: CableApcExtension - components: - - pos: -0.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7205 - type: ClosetMaintenanceFilledRandom - components: - - pos: -5.5,-73.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7206 - type: WallSolid - components: - - pos: 13.5,-30.5 - parent: 1 - type: Transform -- uid: 7207 - type: ClosetEmergencyFilledRandom - components: - - pos: 5.5,-69.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 7208 - type: Rack - components: - - pos: 4.5,-69.5 - parent: 1 - type: Transform -- uid: 7209 - type: Rack - components: - - pos: 6.5,-69.5 - parent: 1 - type: Transform -- uid: 7210 - type: WallSolid - components: - - pos: 16.5,-47.5 - parent: 1 - type: Transform -- uid: 7211 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 20.5,-55.5 - parent: 1 - type: Transform -- uid: 7212 - type: Window - components: - - pos: 32.5,-57.5 - parent: 1 - type: Transform -- uid: 7213 - type: WallReinforced - components: - - pos: 15.5,-63.5 - parent: 1 - type: Transform -- uid: 7214 - type: WallReinforced - components: - - pos: 17.5,-64.5 - parent: 1 - type: Transform -- uid: 7215 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 18.5,-52.5 - parent: 1 - type: Transform -- uid: 7216 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 20.5,-53.5 - parent: 1 - type: Transform -- uid: 7217 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 18.5,-54.5 - parent: 1 - type: Transform -- uid: 7218 - type: BlastDoorExterior1 - components: - - pos: 18.5,-56.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -263389.25 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 14363 - Close: - - port: Off - uid: 14363 - Toggle: [] - type: SignalReceiver -- uid: 7219 - type: Recycler - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-55.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 2598 - Forward: - - port: Left - uid: 2598 - Off: - - port: Middle - uid: 2598 - type: SignalReceiver -- uid: 7220 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-54.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 2598 - Forward: - - port: Left - uid: 2598 - Off: - - port: Middle - uid: 2598 - type: SignalReceiver -- uid: 7221 - type: WindowReinforcedDirectional - components: - - pos: 18.5,-53.5 - parent: 1 - type: Transform -- uid: 7222 - type: ReinforcedWindow - components: - - pos: 18.5,-66.5 - parent: 1 - type: Transform -- uid: 7223 - type: Grille - components: - - pos: 16.5,-68.5 - parent: 1 - type: Transform -- uid: 7224 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 17.5,-51.5 - parent: 1 - type: Transform -- uid: 7225 - type: CableApcExtension - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform -- uid: 7226 - type: CableApcExtension - components: - - pos: -3.5,1.5 - parent: 1 - type: Transform -- uid: 7227 - type: ClothingOuterHardsuitEVA - components: - - pos: 31.600206,-11.360956 - parent: 1 - type: Transform -- uid: 7228 - type: ClothingOuterHardsuitEVA - components: - - pos: 33.35021,-13.329706 - parent: 1 - type: Transform -- uid: 7229 - type: CableHV - components: - - pos: 15.5,-58.5 - parent: 1 - type: Transform -- uid: 7230 - type: CableApcExtension - components: - - pos: 15.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7231 - type: CableApcExtension - components: - - pos: 17.5,-46.5 - parent: 1 - type: Transform -- uid: 7232 - type: CableApcExtension - components: - - pos: 19.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7233 - type: CableApcExtension - components: - - pos: 25.5,-53.5 - parent: 1 - type: Transform -- uid: 7234 - type: CableApcExtension - components: - - pos: 18.5,-42.5 - parent: 1 - type: Transform -- uid: 7235 - type: CableApcExtension - components: - - pos: 16.5,-40.5 - parent: 1 - type: Transform -- uid: 7236 - type: CableApcExtension - components: - - pos: -4.5,-26.5 - parent: 1 - type: Transform -- uid: 7237 - type: WallSolid - components: - - pos: -14.5,-17.5 - parent: 1 - type: Transform -- uid: 7238 - type: CableHV - components: - - pos: -5.5,-27.5 - parent: 1 - type: Transform -- uid: 7239 - type: CableHV - components: - - pos: -5.5,-29.5 - parent: 1 - type: Transform -- uid: 7240 - type: DisposalTrunk - components: - - pos: -10.5,-23.5 - parent: 1 - type: Transform -- uid: 7241 - type: DisposalPipe - components: - - pos: -10.5,-24.5 - parent: 1 - type: Transform -- uid: 7242 - type: DisposalPipe - components: - - pos: -10.5,-25.5 - parent: 1 - type: Transform -- uid: 7243 - type: DisposalPipe - components: - - pos: -10.5,-26.5 - parent: 1 - type: Transform -- uid: 7244 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-27.5 - parent: 1 - type: Transform -- uid: 7245 - type: CableApcExtension - components: - - pos: 33.5,-32.5 - parent: 1 - type: Transform -- uid: 7246 - type: CableApcExtension - components: - - pos: 34.5,-32.5 - parent: 1 - type: Transform -- uid: 7247 - type: CableApcExtension - components: - - pos: 15.5,-31.5 - parent: 1 - type: Transform -- uid: 7248 - type: CableApcExtension - components: - - pos: 15.5,-30.5 - parent: 1 - type: Transform -- uid: 7249 - type: CableApcExtension - components: - - pos: 15.5,-29.5 - parent: 1 - type: Transform -- uid: 7250 - type: CableApcExtension - components: - - pos: 15.5,-21.5 - parent: 1 - type: Transform -- uid: 7251 - type: CableApcExtension - components: - - pos: 15.5,-22.5 - parent: 1 - type: Transform -- uid: 7252 - type: CableApcExtension - components: - - pos: 15.5,-23.5 - parent: 1 - type: Transform -- uid: 7253 - type: CableApcExtension - components: - - pos: 15.5,-24.5 - parent: 1 - type: Transform -- uid: 7254 - type: CableApcExtension - components: - - pos: 15.5,-25.5 - parent: 1 - type: Transform -- uid: 7255 - type: CableApcExtension - components: - - pos: 15.5,-26.5 - parent: 1 - type: Transform -- uid: 7256 - type: CableApcExtension - components: - - pos: 34.5,-17.5 - parent: 1 - type: Transform -- uid: 7257 - type: CableApcExtension - components: - - pos: 35.5,-18.5 - parent: 1 - type: Transform -- uid: 7258 - type: CableApcExtension - components: - - pos: 18.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7259 - type: CableApcExtension - components: - - pos: 16.5,-8.5 - parent: 1 - type: Transform -- uid: 7260 - type: CableApcExtension - components: - - pos: 14.5,-8.5 - parent: 1 - type: Transform -- uid: 7261 - type: CableApcExtension - components: - - pos: 14.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7262 - type: CableApcExtension - components: - - pos: 14.5,-1.5 - parent: 1 - type: Transform -- uid: 7263 - type: CableApcExtension - components: - - pos: 15.5,-9.5 - parent: 1 - type: Transform -- uid: 7264 - type: CableApcExtension - components: - - pos: 15.5,-12.5 - parent: 1 - type: Transform -- uid: 7265 - type: Catwalk - components: - - pos: 30.5,-12.5 - parent: 1 - type: Transform -- uid: 7266 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7267 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7268 - type: CableHV - components: - - pos: 21.5,-17.5 - parent: 1 - type: Transform -- uid: 7269 - type: CableHV - components: - - pos: 22.5,-17.5 - parent: 1 - type: Transform -- uid: 7270 - type: CableHV - components: - - pos: 20.5,-17.5 - parent: 1 - type: Transform -- uid: 7271 - type: CableHV - components: - - pos: 19.5,-17.5 - parent: 1 - type: Transform -- uid: 7272 - type: CableHV - components: - - pos: 18.5,-17.5 - parent: 1 - type: Transform -- uid: 7273 - type: CableHV - components: - - pos: 17.5,-17.5 - parent: 1 - type: Transform -- uid: 7274 - type: CableHV - components: - - pos: 16.5,-17.5 - parent: 1 - type: Transform -- uid: 7275 - type: CableHV - components: - - pos: 15.5,-22.5 - parent: 1 - type: Transform -- uid: 7276 - type: CableHV - components: - - pos: 15.5,-17.5 - parent: 1 - type: Transform -- uid: 7277 - type: CableHV - components: - - pos: 15.5,-18.5 - parent: 1 - type: Transform -- uid: 7278 - type: CableHV - components: - - pos: 15.5,-19.5 - parent: 1 - type: Transform -- uid: 7279 - type: CableHV - components: - - pos: 15.5,-20.5 - parent: 1 - type: Transform -- uid: 7280 - type: CableHV - components: - - pos: 15.5,-21.5 - parent: 1 - type: Transform -- uid: 7281 - type: CableHV - components: - - pos: 15.5,-23.5 - parent: 1 - type: Transform -- uid: 7282 - type: CableHV - components: - - pos: 15.5,-24.5 - parent: 1 - type: Transform -- uid: 7283 - type: CableHV - components: - - pos: 15.5,-25.5 - parent: 1 - type: Transform -- uid: 7284 - type: GasPipeBend - components: - - pos: 36.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7285 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7286 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7287 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7288 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7289 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7290 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7291 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7292 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7293 - type: GasPipeBend - components: - - pos: 34.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7294 - type: GasPipeStraight - components: - - pos: 25.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7295 - type: GasVentPump - components: - - pos: 31.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7296 - type: CableHV - components: - - pos: 18.5,-5.5 - parent: 1 - type: Transform -- uid: 7297 - type: CableHV - components: - - pos: 19.5,-5.5 - parent: 1 - type: Transform -- uid: 7298 - type: CableHV - components: - - pos: 20.5,-5.5 - parent: 1 - type: Transform -- uid: 7299 - type: CableHV - components: - - pos: 21.5,-5.5 - parent: 1 - type: Transform -- uid: 7300 - type: CableHV - components: - - pos: 22.5,-5.5 - parent: 1 - type: Transform -- uid: 7301 - type: CableHV - components: - - pos: 23.5,-5.5 - parent: 1 - type: Transform -- uid: 7302 - type: CableHV - components: - - pos: 31.5,-17.5 - parent: 1 - type: Transform -- uid: 7303 - type: CableHV - components: - - pos: 30.5,-17.5 - parent: 1 - type: Transform -- uid: 7304 - type: CableHV - components: - - pos: 29.5,-17.5 - parent: 1 - type: Transform -- uid: 7305 - type: CableHV - components: - - pos: 28.5,-17.5 - parent: 1 - type: Transform -- uid: 7306 - type: CableHV - components: - - pos: 27.5,-17.5 - parent: 1 - type: Transform -- uid: 7307 - type: CableHV - components: - - pos: 26.5,-17.5 - parent: 1 - type: Transform -- uid: 7308 - type: CableHV - components: - - pos: 35.5,-20.5 - parent: 1 - type: Transform -- uid: 7309 - type: CableHV - components: - - pos: 35.5,-19.5 - parent: 1 - type: Transform -- uid: 7310 - type: CableHV - components: - - pos: 35.5,-18.5 - parent: 1 - type: Transform -- uid: 7311 - type: CableHV - components: - - pos: 35.5,-17.5 - parent: 1 - type: Transform -- uid: 7312 - type: CableHV - components: - - pos: 34.5,-17.5 - parent: 1 - type: Transform -- uid: 7313 - type: CableHV - components: - - pos: 33.5,-17.5 - parent: 1 - type: Transform -- uid: 7314 - type: CableHV - components: - - pos: 35.5,-27.5 - parent: 1 - type: Transform -- uid: 7315 - type: CableHV - components: - - pos: 35.5,-26.5 - parent: 1 - type: Transform -- uid: 7316 - type: CableHV - components: - - pos: 35.5,-25.5 - parent: 1 - type: Transform -- uid: 7317 - type: CableHV - components: - - pos: 35.5,-24.5 - parent: 1 - type: Transform -- uid: 7318 - type: CableHV - components: - - pos: 35.5,-23.5 - parent: 1 - type: Transform -- uid: 7319 - type: CableHV - components: - - pos: 35.5,-22.5 - parent: 1 - type: Transform -- uid: 7320 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-43.5 - parent: 1 - type: Transform -- uid: 7321 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7322 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 24.5,-44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7323 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7324 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7325 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 26.5,-43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7326 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-46.5 - parent: 1 - type: Transform -- uid: 7327 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-45.5 - parent: 1 - type: Transform -- uid: 7328 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-44.5 - parent: 1 - type: Transform -- uid: 7329 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-43.5 - parent: 1 - type: Transform -- uid: 7330 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-43.5 - parent: 1 - type: Transform -- uid: 7331 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-43.5 - parent: 1 - type: Transform -- uid: 7332 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-43.5 - parent: 1 - type: Transform -- uid: 7333 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-43.5 - parent: 1 - type: Transform -- uid: 7334 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-43.5 - parent: 1 - type: Transform -- uid: 7335 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-43.5 - parent: 1 - type: Transform -- uid: 7336 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-43.5 - parent: 1 - type: Transform -- uid: 7337 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-43.5 - parent: 1 - type: Transform -- uid: 7338 - type: CableHV - components: - - pos: 30.5,-5.5 - parent: 1 - type: Transform -- uid: 7339 - type: CableHV - components: - - pos: 29.5,-5.5 - parent: 1 - type: Transform -- uid: 7340 - type: CableHV - components: - - pos: 28.5,-5.5 - parent: 1 - type: Transform -- uid: 7341 - type: CableHV - components: - - pos: 27.5,-5.5 - parent: 1 - type: Transform -- uid: 7342 - type: CableHV - components: - - pos: 26.5,-5.5 - parent: 1 - type: Transform -- uid: 7343 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-43.5 - parent: 1 - type: Transform -- uid: 7344 - type: AirAlarm - components: - - pos: -21.5,-25.5 - parent: 1 - type: Transform - - devices: - - 21579 - - 12989 - - 12992 - - 12614 - - 14402 - - 5455 - - 123 - - 7184 - - 21450 - - 21451 - - 21452 - - 12331 - - 16024 - - 16025 - type: DeviceList -- uid: 7345 - type: CableHV - components: - - pos: 33.5,-2.5 - parent: 1 - type: Transform -- uid: 7346 - type: CableHV - components: - - pos: 33.5,-3.5 - parent: 1 - type: Transform -- uid: 7347 - type: CableHV - components: - - pos: 33.5,-4.5 - parent: 1 - type: Transform -- uid: 7348 - type: CableHV - components: - - pos: 33.5,-5.5 - parent: 1 - type: Transform -- uid: 7349 - type: CableHV - components: - - pos: 32.5,-5.5 - parent: 1 - type: Transform -- uid: 7350 - type: DisposalUnit - components: - - name: cargo - type: MetaData - - pos: -12.5,-12.5 - parent: 1 - type: Transform -- uid: 7351 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-9.5 - parent: 1 - type: Transform -- uid: 7352 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 7353 - type: Poweredlight - components: - - pos: 16.5,-16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7354 - type: Catwalk - components: - - pos: 60.5,-58.5 - parent: 1 - type: Transform -- uid: 7355 - type: EmergencyLight - components: - - pos: -5.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 7356 - type: WallSolid - components: - - pos: 9.5,4.5 - parent: 1 - type: Transform -- uid: 7357 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -2.4872613,-24.496803 - parent: 1 - type: Transform -- uid: 7358 - type: SignDirectionalBridge - components: - - pos: 27.5,-7.5 - parent: 1 - type: Transform -- uid: 7359 - type: ChairPilotSeat - components: - - pos: 25.5,20.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 7360 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7361 - type: WindowReinforcedDirectional - components: - - pos: -14.5,-9.5 - parent: 1 - type: Transform -- uid: 7362 - type: CableMV - components: - - pos: 22.5,17.5 - parent: 1 - type: Transform -- uid: 7363 - type: CableMV - components: - - pos: 23.5,17.5 - parent: 1 - type: Transform -- uid: 7364 - type: CableMV - components: - - pos: 23.5,18.5 - parent: 1 - type: Transform -- uid: 7365 - type: CableMV - components: - - pos: 24.5,18.5 - parent: 1 - type: Transform -- uid: 7366 - type: CableMV - components: - - pos: 25.5,18.5 - parent: 1 - type: Transform -- uid: 7367 - type: CableMV - components: - - pos: 26.5,18.5 - parent: 1 - type: Transform -- uid: 7368 - type: GasPipeStraight - components: - - pos: 23.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7369 - type: WallReinforced - components: - - pos: 49.5,-21.5 - parent: 1 - type: Transform -- uid: 7370 - type: WallReinforced - components: - - pos: 45.5,-20.5 - parent: 1 - type: Transform -- uid: 7371 - type: WallReinforced - components: - - pos: 46.5,-20.5 - parent: 1 - type: Transform -- uid: 7372 - type: WallReinforced - components: - - pos: 43.5,-29.5 - parent: 1 - type: Transform -- uid: 7373 - type: WallReinforced - components: - - pos: 43.5,-30.5 - parent: 1 - type: Transform -- uid: 7374 - type: WallReinforced - components: - - pos: 43.5,-31.5 - parent: 1 - type: Transform -- uid: 7375 - type: WallReinforced - components: - - pos: 44.5,-31.5 - parent: 1 - type: Transform -- uid: 7376 - type: WallReinforced - components: - - pos: 49.5,-31.5 - parent: 1 - type: Transform -- uid: 7377 - type: WallReinforced - components: - - pos: 49.5,-30.5 - parent: 1 - type: Transform -- uid: 7378 - type: WallReinforced - components: - - pos: 49.5,-29.5 - parent: 1 - type: Transform -- uid: 7379 - type: WallReinforced - components: - - pos: 49.5,-28.5 - parent: 1 - type: Transform -- uid: 7380 - type: WallReinforced - components: - - pos: 48.5,-20.5 - parent: 1 - type: Transform -- uid: 7381 - type: WallReinforced - components: - - pos: 48.5,-31.5 - parent: 1 - type: Transform -- uid: 7382 - type: WallReinforced - components: - - pos: 47.5,-31.5 - parent: 1 - type: Transform -- uid: 7383 - type: WallReinforced - components: - - pos: 46.5,-31.5 - parent: 1 - type: Transform -- uid: 7384 - type: WallReinforced - components: - - pos: 45.5,-31.5 - parent: 1 - type: Transform -- uid: 7385 - type: WallReinforced - components: - - pos: 49.5,-27.5 - parent: 1 - type: Transform -- uid: 7386 - type: WallReinforced - components: - - pos: 49.5,-20.5 - parent: 1 - type: Transform -- uid: 7387 - type: ReinforcedWindow - components: - - pos: 42.5,-23.5 - parent: 1 - type: Transform -- uid: 7388 - type: ReinforcedWindow - components: - - pos: 41.5,-28.5 - parent: 1 - type: Transform -- uid: 7389 - type: ReinforcedWindow - components: - - pos: 41.5,-23.5 - parent: 1 - type: Transform -- uid: 7390 - type: WallReinforced - components: - - pos: 43.5,-21.5 - parent: 1 - type: Transform -- uid: 7391 - type: WallReinforced - components: - - pos: 49.5,-22.5 - parent: 1 - type: Transform -- uid: 7392 - type: HighSecCaptainLocked - components: - - name: vault - type: MetaData - - pos: 43.5,-24.5 - parent: 1 - type: Transform -- uid: 7393 - type: HighSecCaptainLocked - components: - - name: vault - type: MetaData - - pos: 43.5,-27.5 - parent: 1 - type: Transform -- uid: 7394 - type: WallReinforced - components: - - pos: 48.5,-26.5 - parent: 1 - type: Transform -- uid: 7395 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-26.5 - parent: 1 - type: Transform -- uid: 7396 - type: WallReinforced - components: - - pos: 47.5,-26.5 - parent: 1 - type: Transform -- uid: 7397 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-25.5 - parent: 1 - type: Transform -- uid: 7398 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-25.5 - parent: 1 - type: Transform -- uid: 7399 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-25.5 - parent: 1 - type: Transform -- uid: 7400 - type: CigarGold - components: - - rot: -1.5707963267948966 rad - pos: 45.625916,-26.476032 - parent: 1 - type: Transform -- uid: 7401 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-25.5 - parent: 1 - type: Transform -- uid: 7402 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-26.5 - parent: 1 - type: Transform -- uid: 7403 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-26.5 - parent: 1 - type: Transform -- uid: 7404 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7405 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7406 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7407 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7408 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7409 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7410 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7411 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7412 - type: GasPipeStraight - components: - - pos: 36.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7413 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7414 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7415 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7416 - type: GasPipeTJunction - components: - - pos: 41.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7417 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 41.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7418 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7419 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7420 - type: GasPipeStraight - components: - - pos: 34.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7421 - type: GasPipeStraight - components: - - pos: 36.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7422 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7423 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7424 - type: GasPipeBend - components: - - pos: 46.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7425 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 44.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7426 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7427 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7428 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7429 - type: WallSolid - components: - - pos: 37.5,-29.5 - parent: 1 - type: Transform -- uid: 7430 - type: CableMV - components: - - pos: 35.5,-28.5 - parent: 1 - type: Transform -- uid: 7431 - type: CableMV - components: - - pos: 35.5,-30.5 - parent: 1 - type: Transform -- uid: 7432 - type: CableHV - components: - - pos: 39.5,-30.5 - parent: 1 - type: Transform -- uid: 7433 - type: CableApcExtension - components: - - pos: 39.5,-25.5 - parent: 1 - type: Transform -- uid: 7434 - type: CableApcExtension - components: - - pos: 39.5,-26.5 - parent: 1 - type: Transform -- uid: 7435 - type: CableMV - components: - - pos: 46.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7436 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7437 - type: PillSpaceDrugs - components: - - pos: -8.5,-32.5 - parent: 1 - type: Transform -- uid: 7438 - type: PillKelotane - components: - - pos: -9.034681,-32.24071 - parent: 1 - type: Transform -- uid: 7439 - type: PillTricordrazine - components: - - pos: -8.519056,-32.256336 - parent: 1 - type: Transform -- uid: 7440 - type: PillSpaceDrugs - components: - - pos: -8.5,-32.5 - parent: 1 - type: Transform -- uid: 7441 - type: CableHV - components: - - pos: 35.5,-31.5 - parent: 1 - type: Transform -- uid: 7442 - type: CableHV - components: - - pos: 35.5,-33.5 - parent: 1 - type: Transform -- uid: 7443 - type: CableHV - components: - - pos: 35.5,-35.5 - parent: 1 - type: Transform -- uid: 7444 - type: CableHV - components: - - pos: 35.5,-37.5 - parent: 1 - type: Transform -- uid: 7445 - type: CableHV - components: - - pos: 35.5,-39.5 - parent: 1 - type: Transform -- uid: 7446 - type: CableHV - components: - - pos: 35.5,-41.5 - parent: 1 - type: Transform -- uid: 7447 - type: CableHV - components: - - pos: 17.5,-42.5 - parent: 1 - type: Transform -- uid: 7448 - type: CableHV - components: - - pos: 19.5,-42.5 - parent: 1 - type: Transform -- uid: 7449 - type: WallReinforced - components: - - pos: -27.5,-91.5 - parent: 1 - type: Transform -- uid: 7450 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-79.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7451 - type: GasPipeStraight - components: - - pos: -27.5,-78.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7452 - type: GasPipeTJunction - components: - - pos: -27.5,-77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7453 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -25.5,-77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7454 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7455 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-67.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7456 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-75.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7457 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-70.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7458 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7459 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7460 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-85.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7461 - type: GasPipeStraight - components: - - pos: -20.5,-82.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7462 - type: GasPipeStraight - components: - - pos: -20.5,-81.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7463 - type: GasPipeStraight - components: - - pos: -20.5,-79.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7464 - type: GasPipeStraight - components: - - pos: -20.5,-78.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7465 - type: GasPipeStraight - components: - - pos: -20.5,-77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7466 - type: GasPipeStraight - components: - - pos: -20.5,-76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7467 - type: GasPipeStraight - components: - - pos: -20.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7468 - type: GasPipeStraight - components: - - pos: -25.5,-74.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7469 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7470 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7471 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7472 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7473 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7474 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7475 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-71.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7476 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7477 - type: CableMV - components: - - pos: -15.5,-69.5 - parent: 1 - type: Transform -- uid: 7478 - type: CableMV - components: - - pos: -12.5,-69.5 - parent: 1 - type: Transform -- uid: 7479 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-53.5 - parent: 1 - type: Transform -- uid: 7480 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-53.5 - parent: 1 - type: Transform -- uid: 7481 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-53.5 - parent: 1 - type: Transform -- uid: 7482 - type: DisposalJunctionFlipped - components: - - rot: 3.141592653589793 rad - pos: -23.5,-75.5 - parent: 1 - type: Transform -- uid: 7483 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-73.5 - parent: 1 - type: Transform -- uid: 7484 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-88.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7485 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7486 - type: CableApcExtension - components: - - pos: -25.5,-86.5 - parent: 1 - type: Transform -- uid: 7487 - type: CableApcExtension - components: - - pos: -25.5,-85.5 - parent: 1 - type: Transform -- uid: 7488 - type: FloorDrain - components: - - pos: -20.5,-89.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 7489 - type: FloorDrain - components: - - pos: -25.5,-89.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 7490 - type: TableReinforced - components: - - pos: -22.5,-87.5 - parent: 1 - type: Transform -- uid: 7491 - type: MedkitOxygenFilled - components: - - pos: 18.533411,-22.207966 - parent: 1 - type: Transform -- uid: 7492 - type: ClothingHandsGlovesLatex - components: - - pos: -19.466316,-85.552505 - parent: 1 - type: Transform -- uid: 7493 - type: ClothingHeadHatTophat - components: - - pos: -19.575691,-87.365005 - parent: 1 - type: Transform -- uid: 7494 - type: WaterTankFull - components: - - pos: -19.5,-86.5 - parent: 1 - type: Transform -- uid: 7495 - type: Table - components: - - pos: -19.5,-87.5 - parent: 1 - type: Transform -- uid: 7496 - type: Table - components: - - pos: -19.5,-84.5 - parent: 1 - type: Transform -- uid: 7497 - type: BoxPillCanister - components: - - pos: -25.106941,-84.458755 - parent: 1 - type: Transform -- uid: 7498 - type: LargeBeaker - components: - - pos: -25.591316,-84.223625 - parent: 1 - type: Transform -- uid: 7499 - type: FirelockGlass - components: - - pos: 22.5,-44.5 - parent: 1 - type: Transform -- uid: 7500 - type: BoxSyringe - components: - - pos: -26.571459,-84.31156 - parent: 1 - type: Transform -- uid: 7501 - type: MonkeyCubeBox - components: - - pos: -24.421421,-84.24069 - parent: 1 - type: Transform -- uid: 7502 - type: Table - components: - - pos: -26.5,-86.5 - parent: 1 - type: Transform -- uid: 7503 - type: Table - components: - - pos: -26.5,-84.5 - parent: 1 - type: Transform -- uid: 7504 - type: Table - components: - - pos: -25.5,-84.5 - parent: 1 - type: Transform -- uid: 7505 - type: Table - components: - - pos: -24.5,-84.5 - parent: 1 - type: Transform -- uid: 7506 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -22.5,-88.5 - parent: 1 - type: Transform -- uid: 7507 - type: WindoorMedicalLocked - components: - - rot: 3.141592653589793 rad - pos: -20.5,-88.5 - parent: 1 - type: Transform -- uid: 7508 - type: WindoorMedicalLocked - components: - - rot: 3.141592653589793 rad - pos: -25.5,-88.5 - parent: 1 - type: Transform -- uid: 7509 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -19.5,-88.5 - parent: 1 - type: Transform -- uid: 7510 - type: WallReinforced - components: - - pos: -18.5,-90.5 - parent: 1 - type: Transform -- uid: 7511 - type: WallReinforced - components: - - pos: -18.5,-91.5 - parent: 1 - type: Transform -- uid: 7512 - type: WallReinforced - components: - - pos: -19.5,-91.5 - parent: 1 - type: Transform -- uid: 7513 - type: WallReinforced - components: - - pos: -23.5,-91.5 - parent: 1 - type: Transform -- uid: 7514 - type: WallReinforced - components: - - pos: -26.5,-91.5 - parent: 1 - type: Transform -- uid: 7515 - type: WallReinforced - components: - - pos: -27.5,-87.5 - parent: 1 - type: Transform -- uid: 7516 - type: GasPipeStraight - components: - - pos: -23.5,-84.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7517 - type: GasPipeStraight - components: - - pos: -23.5,-83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7518 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7519 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7520 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-76.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7521 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7522 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7523 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7524 - type: GasPipeStraight - components: - - pos: -20.5,-80.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7525 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-75.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7526 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-70.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7527 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-70.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7528 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7529 - type: WallSolid - components: - - pos: -23.5,-68.5 - parent: 1 - type: Transform -- uid: 7530 - type: CableApcExtension - components: - - pos: 5.5,-53.5 - parent: 1 - type: Transform -- uid: 7531 - type: CableApcExtension - components: - - pos: 6.5,-53.5 - parent: 1 - type: Transform -- uid: 7532 - type: CableApcExtension - components: - - pos: 7.5,-53.5 - parent: 1 - type: Transform -- uid: 7533 - type: CableApcExtension - components: - - pos: 8.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7534 - type: CableApcExtension - components: - - pos: 8.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7535 - type: CableApcExtension - components: - - pos: 8.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7536 - type: CableApcExtension - components: - - pos: 8.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7537 - type: CableApcExtension - components: - - pos: 8.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7538 - type: CableApcExtension - components: - - pos: 8.5,-49.5 - parent: 1 - type: Transform -- uid: 7539 - type: CableApcExtension - components: - - pos: 15.5,-43.5 - parent: 1 - type: Transform -- uid: 7540 - type: CableApcExtension - components: - - pos: -16.5,-61.5 - parent: 1 - type: Transform -- uid: 7541 - type: WallSolid - components: - - pos: 11.5,-56.5 - parent: 1 - type: Transform -- uid: 7542 - type: WeaponCapacitorRecharger - components: - - pos: 6.5,12.5 - parent: 1 - type: Transform -- uid: 7543 - type: FoodDonutChocolate - components: - - pos: 8.49275,13.726382 - parent: 1 - type: Transform -- uid: 7544 - type: RandomDrinkGlass - components: - - pos: 18.5,15.5 - parent: 1 - type: Transform -- uid: 7545 - type: GasPipeStraight - components: - - pos: 9.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7546 - type: GasPipeStraight - components: - - pos: 9.5,-44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7547 - type: GasPipeStraight - components: - - pos: 9.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7548 - type: GasPipeStraight - components: - - pos: 10.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7549 - type: GasPipeStraight - components: - - pos: 10.5,-43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7550 - type: GasPipeStraight - components: - - pos: 10.5,-44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7551 - type: GasPipeStraight - components: - - pos: 10.5,-45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7552 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 10.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7553 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 9.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7554 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-88.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7555 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -30.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7556 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-89.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7557 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-53.5 - parent: 1 - type: Transform -- uid: 7558 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-53.5 - parent: 1 - type: Transform -- uid: 7559 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-69.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7560 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7561 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-68.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7562 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-67.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7563 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-67.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7564 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7565 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-66.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7566 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-65.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7567 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7568 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7569 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7570 - type: GasPipeStraight - components: - - pos: -20.5,-62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7571 - type: GasPipeStraight - components: - - pos: -18.5,-63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7572 - type: GasPipeStraight - components: - - pos: -18.5,-62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 7573 - type: GasPipeStraight - components: - - pos: -18.5,-61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7574 - type: GasPipeTJunction - components: - - pos: -18.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7575 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7576 - type: CableApcExtension - components: - - pos: -19.5,-64.5 - parent: 1 - type: Transform -- uid: 7577 - type: CableApcExtension - components: - - pos: -19.5,-66.5 - parent: 1 - type: Transform -- uid: 7578 - type: CableApcExtension - components: - - pos: -14.5,-67.5 - parent: 1 - type: Transform -- uid: 7579 - type: CableApcExtension - components: - - pos: -28.5,-79.5 - parent: 1 - type: Transform -- uid: 7580 - type: CableApcExtension - components: - - pos: -28.5,-78.5 - parent: 1 - type: Transform -- uid: 7581 - type: CableApcExtension - components: - - pos: -27.5,-78.5 - parent: 1 - type: Transform -- uid: 7582 - type: CableApcExtension - components: - - pos: -26.5,-78.5 - parent: 1 - type: Transform -- uid: 7583 - type: CableApcExtension - components: - - pos: -26.5,-77.5 - parent: 1 - type: Transform -- uid: 7584 - type: CableApcExtension - components: - - pos: -25.5,-77.5 - parent: 1 - type: Transform -- uid: 7585 - type: CableApcExtension - components: - - pos: -22.5,-86.5 - parent: 1 - type: Transform -- uid: 7586 - type: CableApcExtension - components: - - pos: -20.5,-85.5 - parent: 1 - type: Transform -- uid: 7587 - type: CableApcExtension - components: - - pos: -21.5,-85.5 - parent: 1 - type: Transform -- uid: 7588 - type: CableApcExtension - components: - - pos: -24.5,-85.5 - parent: 1 - type: Transform -- uid: 7589 - type: CableApcExtension - components: - - pos: -23.5,-85.5 - parent: 1 - type: Transform -- uid: 7590 - type: CableApcExtension - components: - - pos: -22.5,-85.5 - parent: 1 - type: Transform -- uid: 7591 - type: CableApcExtension - components: - - pos: -22.5,-84.5 - parent: 1 - type: Transform -- uid: 7592 - type: CableApcExtension - components: - - pos: -22.5,-81.5 - parent: 1 - type: Transform -- uid: 7593 - type: CableApcExtension - components: - - pos: -22.5,-83.5 - parent: 1 - type: Transform -- uid: 7594 - type: CableApcExtension - components: - - pos: -22.5,-82.5 - parent: 1 - type: Transform -- uid: 7595 - type: CableApcExtension - components: - - pos: -22.5,-80.5 - parent: 1 - type: Transform -- uid: 7596 - type: CableApcExtension - components: - - pos: -23.5,-80.5 - parent: 1 - type: Transform -- uid: 7597 - type: CableApcExtension - components: - - pos: -23.5,-79.5 - parent: 1 - type: Transform -- uid: 7598 - type: CableApcExtension - components: - - pos: -23.5,-78.5 - parent: 1 - type: Transform -- uid: 7599 - type: CableApcExtension - components: - - pos: -23.5,-77.5 - parent: 1 - type: Transform -- uid: 7600 - type: CableApcExtension - components: - - pos: -24.5,-77.5 - parent: 1 - type: Transform -- uid: 7601 - type: CableApcExtension - components: - - pos: -24.5,-76.5 - parent: 1 - type: Transform -- uid: 7602 - type: CableApcExtension - components: - - pos: -24.5,-75.5 - parent: 1 - type: Transform -- uid: 7603 - type: CableApcExtension - components: - - pos: -24.5,-74.5 - parent: 1 - type: Transform -- uid: 7604 - type: CableApcExtension - components: - - pos: -24.5,-73.5 - parent: 1 - type: Transform -- uid: 7605 - type: CableApcExtension - components: - - pos: -24.5,-72.5 - parent: 1 - type: Transform -- uid: 7606 - type: CableApcExtension - components: - - pos: -23.5,-72.5 - parent: 1 - type: Transform -- uid: 7607 - type: CableApcExtension - components: - - pos: -22.5,-72.5 - parent: 1 - type: Transform -- uid: 7608 - type: CableApcExtension - components: - - pos: -21.5,-72.5 - parent: 1 - type: Transform -- uid: 7609 - type: CableApcExtension - components: - - pos: -21.5,-71.5 - parent: 1 - type: Transform -- uid: 7610 - type: CableApcExtension - components: - - pos: -20.5,-79.5 - parent: 1 - type: Transform -- uid: 7611 - type: CableApcExtension - components: - - pos: -19.5,-79.5 - parent: 1 - type: Transform -- uid: 7612 - type: CableApcExtension - components: - - pos: -19.5,-78.5 - parent: 1 - type: Transform -- uid: 7613 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7614 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7615 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7616 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7617 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7618 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7619 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7620 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7621 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7622 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7623 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7624 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7625 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 36.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7626 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 36.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7627 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7628 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7629 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7630 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7631 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 34.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7632 - type: GasPipeTJunction - components: - - pos: 33.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7633 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7634 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7635 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7636 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7637 - type: AirlockGlass - components: - - pos: 40.5,-41.5 - parent: 1 - type: Transform -- uid: 7638 - type: AirlockGlass - components: - - pos: 40.5,-42.5 - parent: 1 - type: Transform -- uid: 7639 - type: AirlockGlass - components: - - pos: 40.5,-43.5 - parent: 1 - type: Transform -- uid: 7640 - type: CableApcExtension - components: - - pos: 33.5,3.5 - parent: 1 - type: Transform -- uid: 7641 - type: CableApcExtension - components: - - pos: 33.5,4.5 - parent: 1 - type: Transform -- uid: 7642 - type: CableApcExtension - components: - - pos: 33.5,7.5 - parent: 1 - type: Transform -- uid: 7643 - type: CableApcExtension - components: - - pos: 33.5,6.5 - parent: 1 - type: Transform -- uid: 7644 - type: CableApcExtension - components: - - pos: 33.5,5.5 - parent: 1 - type: Transform -- uid: 7645 - type: CableApcExtension - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform -- uid: 7646 - type: CableApcExtension - components: - - pos: 33.5,0.5 - parent: 1 - type: Transform -- uid: 7647 - type: CableApcExtension - components: - - pos: 33.5,-0.5 - parent: 1 - type: Transform -- uid: 7648 - type: CableApcExtension - components: - - pos: 33.5,-1.5 - parent: 1 - type: Transform -- uid: 7649 - type: CableApcExtension - components: - - pos: 33.5,-2.5 - parent: 1 - type: Transform -- uid: 7650 - type: CableApcExtension - components: - - pos: 33.5,-3.5 - parent: 1 - type: Transform -- uid: 7651 - type: CableApcExtension - components: - - pos: 33.5,-4.5 - parent: 1 - type: Transform -- uid: 7652 - type: CableApcExtension - components: - - pos: 33.5,-5.5 - parent: 1 - type: Transform -- uid: 7653 - type: CableApcExtension - components: - - pos: 27.5,7.5 - parent: 1 - type: Transform -- uid: 7654 - type: CableApcExtension - components: - - pos: 28.5,7.5 - parent: 1 - type: Transform -- uid: 7655 - type: CableApcExtension - components: - - pos: 29.5,7.5 - parent: 1 - type: Transform -- uid: 7656 - type: CableApcExtension - components: - - pos: 30.5,7.5 - parent: 1 - type: Transform -- uid: 7657 - type: CableApcExtension - components: - - pos: 31.5,7.5 - parent: 1 - type: Transform -- uid: 7658 - type: CableApcExtension - components: - - pos: 32.5,7.5 - parent: 1 - type: Transform -- uid: 7659 - type: CableApcExtension - components: - - pos: 26.5,8.5 - parent: 1 - type: Transform -- uid: 7660 - type: CableApcExtension - components: - - pos: 26.5,9.5 - parent: 1 - type: Transform -- uid: 7661 - type: CableApcExtension - components: - - pos: 26.5,10.5 - parent: 1 - type: Transform -- uid: 7662 - type: CableApcExtension - components: - - pos: 26.5,11.5 - parent: 1 - type: Transform -- uid: 7663 - type: CableApcExtension - components: - - pos: 26.5,12.5 - parent: 1 - type: Transform -- uid: 7664 - type: CableApcExtension - components: - - pos: 26.5,13.5 - parent: 1 - type: Transform -- uid: 7665 - type: CableApcExtension - components: - - pos: 25.5,7.5 - parent: 1 - type: Transform -- uid: 7666 - type: CableApcExtension - components: - - pos: 24.5,7.5 - parent: 1 - type: Transform -- uid: 7667 - type: CableApcExtension - components: - - pos: 23.5,7.5 - parent: 1 - type: Transform -- uid: 7668 - type: CableApcExtension - components: - - pos: 22.5,7.5 - parent: 1 - type: Transform -- uid: 7669 - type: CableApcExtension - components: - - pos: 21.5,7.5 - parent: 1 - type: Transform -- uid: 7670 - type: CableApcExtension - components: - - pos: 34.5,0.5 - parent: 1 - type: Transform -- uid: 7671 - type: DisposalPipe - components: - - pos: 36.5,-29.5 - parent: 1 - type: Transform -- uid: 7672 - type: DisposalPipe - components: - - pos: 36.5,-30.5 - parent: 1 - type: Transform -- uid: 7673 - type: DisposalPipe - components: - - pos: 36.5,-31.5 - parent: 1 - type: Transform -- uid: 7674 - type: DisposalPipe - components: - - pos: 36.5,-32.5 - parent: 1 - type: Transform -- uid: 7675 - type: DisposalPipe - components: - - pos: 36.5,-33.5 - parent: 1 - type: Transform -- uid: 7676 - type: DisposalPipe - components: - - pos: 36.5,-34.5 - parent: 1 - type: Transform -- uid: 7677 - type: DisposalPipe - components: - - pos: 36.5,-35.5 - parent: 1 - type: Transform -- uid: 7678 - type: DisposalPipe - components: - - pos: 36.5,-36.5 - parent: 1 - type: Transform -- uid: 7679 - type: DisposalPipe - components: - - pos: 36.5,-37.5 - parent: 1 - type: Transform -- uid: 7680 - type: DisposalPipe - components: - - pos: 36.5,-38.5 - parent: 1 - type: Transform -- uid: 7681 - type: DisposalPipe - components: - - pos: 36.5,-39.5 - parent: 1 - type: Transform -- uid: 7682 - type: DisposalPipe - components: - - pos: 36.5,-40.5 - parent: 1 - type: Transform -- uid: 7683 - type: DisposalPipe - components: - - pos: 36.5,-41.5 - parent: 1 - type: Transform -- uid: 7684 - type: DisposalPipe - components: - - pos: 36.5,-42.5 - parent: 1 - type: Transform -- uid: 7685 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-43.5 - parent: 1 - type: Transform -- uid: 7686 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-43.5 - parent: 1 - type: Transform -- uid: 7687 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-43.5 - parent: 1 - type: Transform -- uid: 7688 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-43.5 - parent: 1 - type: Transform -- uid: 7689 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-43.5 - parent: 1 - type: Transform -- uid: 7690 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-43.5 - parent: 1 - type: Transform -- uid: 7691 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-43.5 - parent: 1 - type: Transform -- uid: 7692 - type: CableApcExtension - components: - - pos: 37.5,-25.5 - parent: 1 - type: Transform -- uid: 7693 - type: CableApcExtension - components: - - pos: 36.5,-25.5 - parent: 1 - type: Transform -- uid: 7694 - type: CableApcExtension - components: - - pos: 36.5,-24.5 - parent: 1 - type: Transform -- uid: 7695 - type: CableApcExtension - components: - - pos: 36.5,-23.5 - parent: 1 - type: Transform -- uid: 7696 - type: CableApcExtension - components: - - pos: 36.5,-22.5 - parent: 1 - type: Transform -- uid: 7697 - type: CableApcExtension - components: - - pos: 35.5,-22.5 - parent: 1 - type: Transform -- uid: 7698 - type: CableApcExtension - components: - - pos: 35.5,-21.5 - parent: 1 - type: Transform -- uid: 7699 - type: CableApcExtension - components: - - pos: 35.5,-25.5 - parent: 1 - type: Transform -- uid: 7700 - type: CableApcExtension - components: - - pos: 34.5,-25.5 - parent: 1 - type: Transform -- uid: 7701 - type: CableApcExtension - components: - - pos: 35.5,-26.5 - parent: 1 - type: Transform -- uid: 7702 - type: CableApcExtension - components: - - pos: 35.5,-27.5 - parent: 1 - type: Transform -- uid: 7703 - type: CableApcExtension - components: - - pos: 35.5,-28.5 - parent: 1 - type: Transform -- uid: 7704 - type: CableApcExtension - components: - - pos: 35.5,-29.5 - parent: 1 - type: Transform -- uid: 7705 - type: CableApcExtension - components: - - pos: 35.5,-30.5 - parent: 1 - type: Transform -- uid: 7706 - type: CableApcExtension - components: - - pos: 35.5,-31.5 - parent: 1 - type: Transform -- uid: 7707 - type: CableApcExtension - components: - - pos: 35.5,-32.5 - parent: 1 - type: Transform -- uid: 7708 - type: CableApcExtension - components: - - pos: 35.5,-33.5 - parent: 1 - type: Transform -- uid: 7709 - type: CableApcExtension - components: - - pos: 35.5,-34.5 - parent: 1 - type: Transform -- uid: 7710 - type: CableApcExtension - components: - - pos: 35.5,-35.5 - parent: 1 - type: Transform -- uid: 7711 - type: CableApcExtension - components: - - pos: 35.5,-36.5 - parent: 1 - type: Transform -- uid: 7712 - type: CableApcExtension - components: - - pos: 36.5,-30.5 - parent: 1 - type: Transform -- uid: 7713 - type: CableApcExtension - components: - - pos: 37.5,-30.5 - parent: 1 - type: Transform -- uid: 7714 - type: CableApcExtension - components: - - pos: 38.5,-30.5 - parent: 1 - type: Transform -- uid: 7715 - type: CableApcExtension - components: - - pos: 39.5,-30.5 - parent: 1 - type: Transform -- uid: 7716 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7717 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7718 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7719 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7720 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 7721 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 35.5,1.5 - parent: 1 - type: Transform -- uid: 7722 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 36.5,1.5 - parent: 1 - type: Transform -- uid: 7723 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 37.5,1.5 - parent: 1 - type: Transform -- uid: 7724 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 38.5,1.5 - parent: 1 - type: Transform -- uid: 7725 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 39.5,1.5 - parent: 1 - type: Transform -- uid: 7726 - type: Poweredlight - components: - - pos: 24.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 7727 - type: CableHV - components: - - pos: 33.5,-1.5 - parent: 1 - type: Transform -- uid: 7728 - type: CableHV - components: - - pos: 33.5,-0.5 - parent: 1 - type: Transform -- uid: 7729 - type: CableHV - components: - - pos: 33.5,0.5 - parent: 1 - type: Transform -- uid: 7730 - type: CableHV - components: - - pos: 33.5,1.5 - parent: 1 - type: Transform -- uid: 7731 - type: CableHV - components: - - pos: 33.5,2.5 - parent: 1 - type: Transform -- uid: 7732 - type: CableHV - components: - - pos: 33.5,3.5 - parent: 1 - type: Transform -- uid: 7733 - type: CableHV - components: - - pos: 33.5,4.5 - parent: 1 - type: Transform -- uid: 7734 - type: CableHV - components: - - pos: 33.5,5.5 - parent: 1 - type: Transform -- uid: 7735 - type: CableHV - components: - - pos: 33.5,6.5 - parent: 1 - type: Transform -- uid: 7736 - type: CableHV - components: - - pos: 33.5,7.5 - parent: 1 - type: Transform -- uid: 7737 - type: CableHV - components: - - pos: 32.5,7.5 - parent: 1 - type: Transform -- uid: 7738 - type: CableHV - components: - - pos: 31.5,7.5 - parent: 1 - type: Transform -- uid: 7739 - type: CableApcExtension - components: - - pos: 31.5,-4.5 - parent: 1 - type: Transform -- uid: 7740 - type: CableHV - components: - - pos: 29.5,7.5 - parent: 1 - type: Transform -- uid: 7741 - type: CableHV - components: - - pos: 28.5,7.5 - parent: 1 - type: Transform -- uid: 7742 - type: CableHV - components: - - pos: 27.5,7.5 - parent: 1 - type: Transform -- uid: 7743 - type: CableHV - components: - - pos: 26.5,7.5 - parent: 1 - type: Transform -- uid: 7744 - type: CableHV - components: - - pos: 25.5,7.5 - parent: 1 - type: Transform -- uid: 7745 - type: CableHV - components: - - pos: 24.5,7.5 - parent: 1 - type: Transform -- uid: 7746 - type: CableHV - components: - - pos: 23.5,7.5 - parent: 1 - type: Transform -- uid: 7747 - type: CableHV - components: - - pos: 22.5,7.5 - parent: 1 - type: Transform -- uid: 7748 - type: CableHV - components: - - pos: 21.5,7.5 - parent: 1 - type: Transform -- uid: 7749 - type: CableHV - components: - - pos: 20.5,7.5 - parent: 1 - type: Transform -- uid: 7750 - type: CableHV - components: - - pos: 19.5,7.5 - parent: 1 - type: Transform -- uid: 7751 - type: CableHV - components: - - pos: 18.5,7.5 - parent: 1 - type: Transform -- uid: 7752 - type: CableHV - components: - - pos: 17.5,7.5 - parent: 1 - type: Transform -- uid: 7753 - type: CableHV - components: - - pos: 17.5,6.5 - parent: 1 - type: Transform -- uid: 7754 - type: CableHV - components: - - pos: 17.5,5.5 - parent: 1 - type: Transform -- uid: 7755 - type: CableHV - components: - - pos: 17.5,4.5 - parent: 1 - type: Transform -- uid: 7756 - type: CableHV - components: - - pos: 17.5,3.5 - parent: 1 - type: Transform -- uid: 7757 - type: CableHV - components: - - pos: 17.5,2.5 - parent: 1 - type: Transform -- uid: 7758 - type: CableHV - components: - - pos: 17.5,1.5 - parent: 1 - type: Transform -- uid: 7759 - type: CableHV - components: - - pos: 17.5,0.5 - parent: 1 - type: Transform -- uid: 7760 - type: CableHV - components: - - pos: 17.5,-0.5 - parent: 1 - type: Transform -- uid: 7761 - type: CableHV - components: - - pos: 17.5,-1.5 - parent: 1 - type: Transform -- uid: 7762 - type: CableHV - components: - - pos: 17.5,-2.5 - parent: 1 - type: Transform -- uid: 7763 - type: CableHV - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform -- uid: 7764 - type: CableHV - components: - - pos: 17.5,-4.5 - parent: 1 - type: Transform -- uid: 7765 - type: CableHV - components: - - pos: -4.5,-17.5 - parent: 1 - type: Transform -- uid: 7766 - type: CableHV - components: - - pos: -4.5,-16.5 - parent: 1 - type: Transform -- uid: 7767 - type: CableHV - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform -- uid: 7768 - type: CableHV - components: - - pos: -4.5,-14.5 - parent: 1 - type: Transform -- uid: 7769 - type: CableHV - components: - - pos: -4.5,-13.5 - parent: 1 - type: Transform -- uid: 7770 - type: CableHV - components: - - pos: -4.5,-12.5 - parent: 1 - type: Transform -- uid: 7771 - type: CableHV - components: - - pos: -4.5,-11.5 - parent: 1 - type: Transform -- uid: 7772 - type: CableHV - components: - - pos: -4.5,-10.5 - parent: 1 - type: Transform -- uid: 7773 - type: CableHV - components: - - pos: -4.5,-9.5 - parent: 1 - type: Transform -- uid: 7774 - type: CableHV - components: - - pos: -4.5,-8.5 - parent: 1 - type: Transform -- uid: 7775 - type: CableHV - components: - - pos: -4.5,-7.5 - parent: 1 - type: Transform -- uid: 7776 - type: CableHV - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform -- uid: 7777 - type: CableHV - components: - - pos: -4.5,-5.5 - parent: 1 - type: Transform -- uid: 7778 - type: CableHV - components: - - pos: -4.5,-4.5 - parent: 1 - type: Transform -- uid: 7779 - type: CableHV - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform -- uid: 7780 - type: CableHV - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform -- uid: 7781 - type: CableHV - components: - - pos: -4.5,-1.5 - parent: 1 - type: Transform -- uid: 7782 - type: CableHV - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform -- uid: 7783 - type: CableHV - components: - - pos: -4.5,0.5 - parent: 1 - type: Transform -- uid: 7784 - type: CableHV - components: - - pos: -4.5,1.5 - parent: 1 - type: Transform -- uid: 7785 - type: SpawnVehicleSecway - components: - - pos: 10.5,21.5 - parent: 1 - type: Transform -- uid: 7786 - type: SpawnVehicleSecway - components: - - pos: 10.5,20.5 - parent: 1 - type: Transform -- uid: 7787 - type: Table - components: - - pos: 12.5,20.5 - parent: 1 - type: Transform -- uid: 7788 - type: Table - components: - - pos: 12.5,19.5 - parent: 1 - type: Transform -- uid: 7789 - type: Table - components: - - pos: 12.5,21.5 - parent: 1 - type: Transform -- uid: 7790 - type: WeaponDisabler - components: - - pos: 12.563014,21.38584 - parent: 1 - type: Transform -- uid: 7791 - type: VehicleKeySecway - components: - - pos: 12.469265,19.745214 - parent: 1 - type: Transform -- uid: 7792 - type: VehicleKeySecway - components: - - pos: 12.39114,19.557714 - parent: 1 - type: Transform -- uid: 7793 - type: WeaponDisabler - components: - - pos: 12.453639,21.54209 - parent: 1 - type: Transform -- uid: 7794 - type: VehicleKeySecway - components: - - pos: 12.594265,19.82334 - parent: 1 - type: Transform -- uid: 7795 - type: BoxFlashbang - components: - - pos: 12.406765,20.463964 - parent: 1 - type: Transform -- uid: 7796 - type: BoxHandcuff - components: - - pos: 12.469265,20.745214 - parent: 1 - type: Transform -- uid: 7797 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 17.5,17.5 - parent: 1 - type: Transform -- uid: 7798 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 18.5,17.5 - parent: 1 - type: Transform -- uid: 7799 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 16.5,17.5 - parent: 1 - type: Transform -- uid: 7800 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,17.5 - parent: 1 - type: Transform -- uid: 7801 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,17.5 - parent: 1 - type: Transform -- uid: 7802 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,17.5 - parent: 1 - type: Transform -- uid: 7803 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 1 - type: Transform -- uid: 7804 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 10.5,17.5 - parent: 1 - type: Transform -- uid: 7805 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,17.5 - parent: 1 - type: Transform -- uid: 7806 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 8.5,17.5 - parent: 1 - type: Transform -- uid: 7807 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 7.5,17.5 - parent: 1 - type: Transform -- uid: 7808 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 6.5,17.5 - parent: 1 - type: Transform -- uid: 7809 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 5.5,17.5 - parent: 1 - type: Transform -- uid: 7810 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: 15.5,17.5 - parent: 1 - type: Transform -- uid: 7811 - type: DisposalPipe - components: - - pos: 15.5,18.5 - parent: 1 - type: Transform -- uid: 7812 - type: DisposalBend - components: - - pos: 15.5,19.5 - parent: 1 - type: Transform -- uid: 7813 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 14.5,19.5 - parent: 1 - type: Transform -- uid: 7814 - type: DisposalTrunk - components: - - pos: 5.5,22.5 - parent: 1 - type: Transform -- uid: 7815 - type: DisposalPipe - components: - - pos: 5.5,18.5 - parent: 1 - type: Transform -- uid: 7816 - type: DisposalPipe - components: - - pos: 5.5,19.5 - parent: 1 - type: Transform -- uid: 7817 - type: DisposalPipe - components: - - pos: 5.5,20.5 - parent: 1 - type: Transform -- uid: 7818 - type: DisposalPipe - components: - - pos: 5.5,21.5 - parent: 1 - type: Transform -- uid: 7819 - type: DisposalUnit - components: - - pos: 5.5,22.5 - parent: 1 - type: Transform -- uid: 7820 - type: DisposalUnit - components: - - pos: 14.5,19.5 - parent: 1 - type: Transform -- uid: 7821 - type: CableApcExtension - components: - - pos: -4.5,-10.5 - parent: 1 - type: Transform -- uid: 7822 - type: CableApcExtension - components: - - pos: -4.5,-9.5 - parent: 1 - type: Transform -- uid: 7823 - type: CableApcExtension - components: - - pos: -4.5,-8.5 - parent: 1 - type: Transform -- uid: 7824 - type: CableApcExtension - components: - - pos: -4.5,-7.5 - parent: 1 - type: Transform -- uid: 7825 - type: CableApcExtension - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform -- uid: 7826 - type: CableApcExtension - components: - - pos: -4.5,-5.5 - parent: 1 - type: Transform -- uid: 7827 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,0.5 - parent: 1 - type: Transform -- uid: 7828 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,0.5 - parent: 1 - type: Transform -- uid: 7829 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,0.5 - parent: 1 - type: Transform -- uid: 7830 - type: CableHV - components: - - pos: 25.5,8.5 - parent: 1 - type: Transform -- uid: 7831 - type: CableHV - components: - - pos: 25.5,9.5 - parent: 1 - type: Transform -- uid: 7832 - type: CableHV - components: - - pos: 24.5,9.5 - parent: 1 - type: Transform -- uid: 7833 - type: CableHV - components: - - pos: 24.5,10.5 - parent: 1 - type: Transform -- uid: 7834 - type: CableHV - components: - - pos: 24.5,11.5 - parent: 1 - type: Transform -- uid: 7835 - type: CableHV - components: - - pos: 24.5,12.5 - parent: 1 - type: Transform -- uid: 7836 - type: CableHV - components: - - pos: 24.5,13.5 - parent: 1 - type: Transform -- uid: 7837 - type: CableHV - components: - - pos: 24.5,14.5 - parent: 1 - type: Transform -- uid: 7838 - type: CableHV - components: - - pos: 24.5,15.5 - parent: 1 - type: Transform -- uid: 7839 - type: CableHV - components: - - pos: 24.5,16.5 - parent: 1 - type: Transform -- uid: 7840 - type: CableHV - components: - - pos: 23.5,16.5 - parent: 1 - type: Transform -- uid: 7841 - type: CableHV - components: - - pos: 22.5,16.5 - parent: 1 - type: Transform -- uid: 7842 - type: CableHV - components: - - pos: 24.5,17.5 - parent: 1 - type: Transform -- uid: 7843 - type: CableHV - components: - - pos: 24.5,18.5 - parent: 1 - type: Transform -- uid: 7844 - type: CableHV - components: - - pos: 25.5,18.5 - parent: 1 - type: Transform -- uid: 7845 - type: CableHV - components: - - pos: 26.5,18.5 - parent: 1 - type: Transform -- uid: 7846 - type: CableHV - components: - - pos: 27.5,18.5 - parent: 1 - type: Transform -- uid: 7847 - type: CableHV - components: - - pos: 28.5,18.5 - parent: 1 - type: Transform -- uid: 7848 - type: CableHV - components: - - pos: 29.5,18.5 - parent: 1 - type: Transform -- uid: 7849 - type: CableHV - components: - - pos: 29.5,20.5 - parent: 1 - type: Transform -- uid: 7850 - type: CableHV - components: - - pos: 29.5,19.5 - parent: 1 - type: Transform -- uid: 7851 - type: CableHV - components: - - pos: 29.5,21.5 - parent: 1 - type: Transform -- uid: 7852 - type: CableHV - components: - - pos: 30.5,21.5 - parent: 1 - type: Transform -- uid: 7853 - type: CableHV - components: - - pos: 31.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7854 - type: CableHV - components: - - pos: 32.5,21.5 - parent: 1 - type: Transform -- uid: 7855 - type: CableHV - components: - - pos: 32.5,22.5 - parent: 1 - type: Transform -- uid: 7856 - type: CableHV - components: - - pos: 32.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7857 - type: CableHV - components: - - pos: 32.5,24.5 - parent: 1 - type: Transform -- uid: 7858 - type: CableHV - components: - - pos: 32.5,25.5 - parent: 1 - type: Transform -- uid: 7859 - type: CableMV - components: - - pos: 33.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7860 - type: CableHV - components: - - pos: 22.5,17.5 - parent: 1 - type: Transform -- uid: 7861 - type: CableHV - components: - - pos: 22.5,18.5 - parent: 1 - type: Transform -- uid: 7862 - type: CableHV - components: - - pos: 22.5,19.5 - parent: 1 - type: Transform -- uid: 7863 - type: CableHV - components: - - pos: 22.5,20.5 - parent: 1 - type: Transform -- uid: 7864 - type: CableHV - components: - - pos: 22.5,21.5 - parent: 1 - type: Transform -- uid: 7865 - type: CableHV - components: - - pos: 22.5,22.5 - parent: 1 - type: Transform -- uid: 7866 - type: CableHV - components: - - pos: 21.5,22.5 - parent: 1 - type: Transform -- uid: 7867 - type: CableHV - components: - - pos: 21.5,23.5 - parent: 1 - type: Transform -- uid: 7868 - type: CableHV - components: - - pos: 21.5,24.5 - parent: 1 - type: Transform -- uid: 7869 - type: CableHV - components: - - pos: 21.5,25.5 - parent: 1 - type: Transform -- uid: 7870 - type: CableHV - components: - - pos: 20.5,25.5 - parent: 1 - type: Transform -- uid: 7871 - type: CableHV - components: - - pos: 18.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7872 - type: CableHV - components: - - pos: 19.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7873 - type: CableMV - components: - - pos: 29.5,20.5 - parent: 1 - type: Transform -- uid: 7874 - type: CableMV - components: - - pos: 29.5,21.5 - parent: 1 - type: Transform -- uid: 7875 - type: CableMV - components: - - pos: 28.5,21.5 - parent: 1 - type: Transform -- uid: 7876 - type: CableMV - components: - - pos: 27.5,21.5 - parent: 1 - type: Transform -- uid: 7877 - type: CableMV - components: - - pos: 26.5,21.5 - parent: 1 - type: Transform -- uid: 7878 - type: CableMV - components: - - pos: 25.5,21.5 - parent: 1 - type: Transform -- uid: 7879 - type: CableMV - components: - - pos: 25.5,22.5 - parent: 1 - type: Transform -- uid: 7880 - type: CableMV - components: - - pos: 25.5,23.5 - parent: 1 - type: Transform -- uid: 7881 - type: CableMV - components: - - pos: 25.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7882 - type: CableMV - components: - - pos: 24.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7883 - type: CableMV - components: - - pos: 30.5,21.5 - parent: 1 - type: Transform -- uid: 7884 - type: CableMV - components: - - pos: 31.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7885 - type: CableMV - components: - - pos: 32.5,21.5 - parent: 1 - type: Transform -- uid: 7886 - type: CableMV - components: - - pos: 32.5,22.5 - parent: 1 - type: Transform -- uid: 7887 - type: CableMV - components: - - pos: 32.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7888 - type: CableHV - components: - - pos: 33.5,25.5 - parent: 1 - type: Transform -- uid: 7889 - type: CableMV - components: - - pos: 33.5,24.5 - parent: 1 - type: Transform -- uid: 7890 - type: CableMV - components: - - pos: 33.5,25.5 - parent: 1 - type: Transform -- uid: 7891 - type: SubstationBasic - components: - - pos: 33.5,25.5 - parent: 1 - type: Transform -- uid: 7892 - type: CableApcExtension - components: - - pos: 63.5,-5.5 - parent: 1 - type: Transform -- uid: 7893 - type: CableApcExtension - components: - - pos: 62.5,-5.5 - parent: 1 - type: Transform -- uid: 7894 - type: CableApcExtension - components: - - pos: 21.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7895 - type: CableApcExtension - components: - - pos: 21.5,14.5 - parent: 1 - type: Transform -- uid: 7896 - type: CableApcExtension - components: - - pos: 21.5,13.5 - parent: 1 - type: Transform -- uid: 7897 - type: CableApcExtension - components: - - pos: 21.5,12.5 - parent: 1 - type: Transform -- uid: 7898 - type: CableApcExtension - components: - - pos: 21.5,11.5 - parent: 1 - type: Transform -- uid: 7899 - type: CableApcExtension - components: - - pos: 21.5,10.5 - parent: 1 - type: Transform -- uid: 7900 - type: CableApcExtension - components: - - pos: 20.5,14.5 - parent: 1 - type: Transform -- uid: 7901 - type: CableApcExtension - components: - - pos: 19.5,14.5 - parent: 1 - type: Transform -- uid: 7902 - type: CableApcExtension - components: - - pos: 18.5,14.5 - parent: 1 - type: Transform -- uid: 7903 - type: CableApcExtension - components: - - pos: 17.5,14.5 - parent: 1 - type: Transform -- uid: 7904 - type: CableApcExtension - components: - - pos: 17.5,13.5 - parent: 1 - type: Transform -- uid: 7905 - type: CableApcExtension - components: - - pos: 17.5,12.5 - parent: 1 - type: Transform -- uid: 7906 - type: CableApcExtension - components: - - pos: 17.5,11.5 - parent: 1 - type: Transform -- uid: 7907 - type: CableApcExtension - components: - - pos: 16.5,11.5 - parent: 1 - type: Transform -- uid: 7908 - type: CableApcExtension - components: - - pos: 15.5,11.5 - parent: 1 - type: Transform -- uid: 7909 - type: CableApcExtension - components: - - pos: 14.5,11.5 - parent: 1 - type: Transform -- uid: 7910 - type: CableApcExtension - components: - - pos: 13.5,11.5 - parent: 1 - type: Transform -- uid: 7911 - type: CableApcExtension - components: - - pos: 13.5,12.5 - parent: 1 - type: Transform -- uid: 7912 - type: CableApcExtension - components: - - pos: 13.5,13.5 - parent: 1 - type: Transform -- uid: 7913 - type: CableApcExtension - components: - - pos: 12.5,13.5 - parent: 1 - type: Transform -- uid: 7914 - type: CableApcExtension - components: - - pos: 11.5,13.5 - parent: 1 - type: Transform -- uid: 7915 - type: CableApcExtension - components: - - pos: 11.5,12.5 - parent: 1 - type: Transform -- uid: 7916 - type: CableApcExtension - components: - - pos: 11.5,11.5 - parent: 1 - type: Transform -- uid: 7917 - type: CableApcExtension - components: - - pos: 11.5,10.5 - parent: 1 - type: Transform -- uid: 7918 - type: CableApcExtension - components: - - pos: 11.5,9.5 - parent: 1 - type: Transform -- uid: 7919 - type: CableApcExtension - components: - - pos: 11.5,8.5 - parent: 1 - type: Transform -- uid: 7920 - type: CableApcExtension - components: - - pos: 11.5,7.5 - parent: 1 - type: Transform -- uid: 7921 - type: CableApcExtension - components: - - pos: 11.5,6.5 - parent: 1 - type: Transform -- uid: 7922 - type: CableApcExtension - components: - - pos: 12.5,8.5 - parent: 1 - type: Transform -- uid: 7923 - type: CableApcExtension - components: - - pos: 13.5,8.5 - parent: 1 - type: Transform -- uid: 7924 - type: CableApcExtension - components: - - pos: 13.5,7.5 - parent: 1 - type: Transform -- uid: 7925 - type: CableApcExtension - components: - - pos: 14.5,7.5 - parent: 1 - type: Transform -- uid: 7926 - type: CableApcExtension - components: - - pos: 15.5,7.5 - parent: 1 - type: Transform -- uid: 7927 - type: CableApcExtension - components: - - pos: 16.5,7.5 - parent: 1 - type: Transform -- uid: 7928 - type: CableApcExtension - components: - - pos: 17.5,7.5 - parent: 1 - type: Transform -- uid: 7929 - type: CableApcExtension - components: - - pos: 17.5,6.5 - parent: 1 - type: Transform -- uid: 7930 - type: CableApcExtension - components: - - pos: 17.5,5.5 - parent: 1 - type: Transform -- uid: 7931 - type: CableApcExtension - components: - - pos: 17.5,4.5 - parent: 1 - type: Transform -- uid: 7932 - type: CableApcExtension - components: - - pos: 17.5,3.5 - parent: 1 - type: Transform -- uid: 7933 - type: CableApcExtension - components: - - pos: 17.5,2.5 - parent: 1 - type: Transform -- uid: 7934 - type: CableApcExtension - components: - - pos: 17.5,1.5 - parent: 1 - type: Transform -- uid: 7935 - type: CableApcExtension - components: - - pos: 17.5,0.5 - parent: 1 - type: Transform -- uid: 7936 - type: CableApcExtension - components: - - pos: 17.5,-0.5 - parent: 1 - type: Transform -- uid: 7937 - type: CableApcExtension - components: - - pos: 17.5,-1.5 - parent: 1 - type: Transform -- uid: 7938 - type: CableApcExtension - components: - - pos: 17.5,-2.5 - parent: 1 - type: Transform -- uid: 7939 - type: CableApcExtension - components: - - pos: 17.5,-3.5 - parent: 1 - type: Transform -- uid: 7940 - type: CableApcExtension - components: - - pos: 17.5,-4.5 - parent: 1 - type: Transform -- uid: 7941 - type: CableApcExtension - components: - - pos: 17.5,-5.5 - parent: 1 - type: Transform -- uid: 7942 - type: CableApcExtension - components: - - pos: 18.5,4.5 - parent: 1 - type: Transform -- uid: 7943 - type: CableApcExtension - components: - - pos: 16.5,-2.5 - parent: 1 - type: Transform -- uid: 7944 - type: CableApcExtension - components: - - pos: 10.5,8.5 - parent: 1 - type: Transform -- uid: 7945 - type: CableApcExtension - components: - - pos: 24.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 7946 - type: CableApcExtension - components: - - pos: 24.5,23.5 - parent: 1 - type: Transform -- uid: 7947 - type: CableApcExtension - components: - - pos: 24.5,22.5 - parent: 1 - type: Transform -- uid: 7948 - type: CableApcExtension - components: - - pos: 23.5,22.5 - parent: 1 - type: Transform -- uid: 7949 - type: CableApcExtension - components: - - pos: 22.5,22.5 - parent: 1 - type: Transform -- uid: 7950 - type: CableApcExtension - components: - - pos: 22.5,21.5 - parent: 1 - type: Transform -- uid: 7951 - type: CableApcExtension - components: - - pos: 22.5,20.5 - parent: 1 - type: Transform -- uid: 7952 - type: CableApcExtension - components: - - pos: 22.5,19.5 - parent: 1 - type: Transform -- uid: 7953 - type: CableApcExtension - components: - - pos: 22.5,18.5 - parent: 1 - type: Transform -- uid: 7954 - type: CableApcExtension - components: - - pos: 22.5,17.5 - parent: 1 - type: Transform -- uid: 7955 - type: CableApcExtension - components: - - pos: 21.5,17.5 - parent: 1 - type: Transform -- uid: 7956 - type: CableApcExtension - components: - - pos: 20.5,17.5 - parent: 1 - type: Transform -- uid: 7957 - type: CableApcExtension - components: - - pos: 19.5,17.5 - parent: 1 - type: Transform -- uid: 7958 - type: CableApcExtension - components: - - pos: 18.5,17.5 - parent: 1 - type: Transform -- uid: 7959 - type: CableApcExtension - components: - - pos: 17.5,17.5 - parent: 1 - type: Transform -- uid: 7960 - type: CableApcExtension - components: - - pos: 16.5,17.5 - parent: 1 - type: Transform -- uid: 7961 - type: CableApcExtension - components: - - pos: 15.5,17.5 - parent: 1 - type: Transform -- uid: 7962 - type: CableApcExtension - components: - - pos: 14.5,17.5 - parent: 1 - type: Transform -- uid: 7963 - type: CableApcExtension - components: - - pos: 13.5,17.5 - parent: 1 - type: Transform -- uid: 7964 - type: CableApcExtension - components: - - pos: 12.5,17.5 - parent: 1 - type: Transform -- uid: 7965 - type: CableApcExtension - components: - - pos: 11.5,17.5 - parent: 1 - type: Transform -- uid: 7966 - type: CableApcExtension - components: - - pos: 10.5,17.5 - parent: 1 - type: Transform -- uid: 7967 - type: CableApcExtension - components: - - pos: 9.5,17.5 - parent: 1 - type: Transform -- uid: 7968 - type: CableApcExtension - components: - - pos: 8.5,17.5 - parent: 1 - type: Transform -- uid: 7969 - type: CableApcExtension - components: - - pos: 7.5,17.5 - parent: 1 - type: Transform -- uid: 7970 - type: CableApcExtension - components: - - pos: 11.5,18.5 - parent: 1 - type: Transform -- uid: 7971 - type: CableApcExtension - components: - - pos: 11.5,19.5 - parent: 1 - type: Transform -- uid: 7972 - type: CableApcExtension - components: - - pos: 11.5,20.5 - parent: 1 - type: Transform -- uid: 7973 - type: CableApcExtension - components: - - pos: 11.5,21.5 - parent: 1 - type: Transform -- uid: 7974 - type: CableApcExtension - components: - - pos: 16.5,18.5 - parent: 1 - type: Transform -- uid: 7975 - type: CableApcExtension - components: - - pos: 16.5,19.5 - parent: 1 - type: Transform -- uid: 7976 - type: CableApcExtension - components: - - pos: 16.5,20.5 - parent: 1 - type: Transform -- uid: 7977 - type: CableApcExtension - components: - - pos: 16.5,21.5 - parent: 1 - type: Transform -- uid: 7978 - type: CableApcExtension - components: - - pos: 17.5,21.5 - parent: 1 - type: Transform -- uid: 7979 - type: CableApcExtension - components: - - pos: 15.5,21.5 - parent: 1 - type: Transform -- uid: 7980 - type: CableApcExtension - components: - - pos: 6.5,17.5 - parent: 1 - type: Transform -- uid: 7981 - type: CableApcExtension - components: - - pos: 6.5,18.5 - parent: 1 - type: Transform -- uid: 7982 - type: CableApcExtension - components: - - pos: 6.5,19.5 - parent: 1 - type: Transform -- uid: 7983 - type: CableApcExtension - components: - - pos: 6.5,20.5 - parent: 1 - type: Transform -- uid: 7984 - type: CableApcExtension - components: - - pos: 6.5,21.5 - parent: 1 - type: Transform -- uid: 7985 - type: CableApcExtension - components: - - pos: 7.5,21.5 - parent: 1 - type: Transform -- uid: 7986 - type: CableApcExtension - components: - - pos: 5.5,21.5 - parent: 1 - type: Transform -- uid: 7987 - type: CableApcExtension - components: - - pos: 5.5,17.5 - parent: 1 - type: Transform -- uid: 7988 - type: CableApcExtension - components: - - pos: 4.5,17.5 - parent: 1 - type: Transform -- uid: 7989 - type: CableApcExtension - components: - - pos: 2.5,17.5 - parent: 1 - type: Transform -- uid: 7990 - type: CableApcExtension - components: - - pos: 3.5,17.5 - parent: 1 - type: Transform -- uid: 7991 - type: CableApcExtension - components: - - pos: 1.5,17.5 - parent: 1 - type: Transform -- uid: 7992 - type: CableApcExtension - components: - - pos: 0.5,17.5 - parent: 1 - type: Transform -- uid: 7993 - type: CableApcExtension - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform -- uid: 7994 - type: CableApcExtension - components: - - pos: -0.5,18.5 - parent: 1 - type: Transform -- uid: 7995 - type: CableApcExtension - components: - - pos: -0.5,19.5 - parent: 1 - type: Transform -- uid: 7996 - type: CableApcExtension - components: - - pos: -0.5,20.5 - parent: 1 - type: Transform -- uid: 7997 - type: CableApcExtension - components: - - pos: 0.5,20.5 - parent: 1 - type: Transform -- uid: 7998 - type: CableApcExtension - components: - - pos: 1.5,20.5 - parent: 1 - type: Transform -- uid: 7999 - type: CableApcExtension - components: - - pos: 24.5,21.5 - parent: 1 - type: Transform -- uid: 8000 - type: CableApcExtension - components: - - pos: 25.5,21.5 - parent: 1 - type: Transform -- uid: 8001 - type: CableApcExtension - components: - - pos: 26.5,21.5 - parent: 1 - type: Transform -- uid: 8002 - type: CableApcExtension - components: - - pos: 27.5,21.5 - parent: 1 - type: Transform -- uid: 8003 - type: CableApcExtension - components: - - pos: 28.5,21.5 - parent: 1 - type: Transform -- uid: 8004 - type: CableApcExtension - components: - - pos: 23.5,17.5 - parent: 1 - type: Transform -- uid: 8005 - type: CableApcExtension - components: - - pos: 24.5,17.5 - parent: 1 - type: Transform -- uid: 8006 - type: CableApcExtension - components: - - pos: 25.5,17.5 - parent: 1 - type: Transform -- uid: 8007 - type: CableApcExtension - components: - - pos: 25.5,16.5 - parent: 1 - type: Transform -- uid: 8008 - type: CableApcExtension - components: - - pos: 26.5,17.5 - parent: 1 - type: Transform -- uid: 8009 - type: CableApcExtension - components: - - pos: 27.5,17.5 - parent: 1 - type: Transform -- uid: 8010 - type: CableApcExtension - components: - - pos: 28.5,17.5 - parent: 1 - type: Transform -- uid: 8011 - type: CableApcExtension - components: - - pos: 29.5,17.5 - parent: 1 - type: Transform -- uid: 8012 - type: CableApcExtension - components: - - pos: 40.5,7.5 - parent: 1 - type: Transform -- uid: 8013 - type: CableApcExtension - components: - - pos: 29.5,15.5 - parent: 1 - type: Transform -- uid: 8014 - type: CableApcExtension - components: - - pos: 29.5,21.5 - parent: 1 - type: Transform -- uid: 8015 - type: CableApcExtension - components: - - pos: 30.5,21.5 - parent: 1 - type: Transform -- uid: 8016 - type: CableApcExtension - components: - - pos: 31.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8017 - type: CableApcExtension - components: - - pos: 32.5,21.5 - parent: 1 - type: Transform -- uid: 8018 - type: CableApcExtension - components: - - pos: 32.5,22.5 - parent: 1 - type: Transform -- uid: 8019 - type: CableApcExtension - components: - - pos: 32.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8020 - type: CableApcExtension - components: - - pos: 29.5,22.5 - parent: 1 - type: Transform -- uid: 8021 - type: CableApcExtension - components: - - pos: 29.5,23.5 - parent: 1 - type: Transform -- uid: 8022 - type: CableApcExtension - components: - - pos: 29.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8023 - type: CableApcExtension - components: - - pos: 29.5,25.5 - parent: 1 - type: Transform -- uid: 8024 - type: CableApcExtension - components: - - pos: 29.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8025 - type: CableApcExtension - components: - - pos: 29.5,27.5 - parent: 1 - type: Transform -- uid: 8026 - type: CableApcExtension - components: - - pos: 29.5,28.5 - parent: 1 - type: Transform -- uid: 8027 - type: CableApcExtension - components: - - pos: 29.5,29.5 - parent: 1 - type: Transform -- uid: 8028 - type: CableApcExtension - components: - - pos: 29.5,30.5 - parent: 1 - type: Transform -- uid: 8029 - type: CableApcExtension - components: - - pos: 29.5,31.5 - parent: 1 - type: Transform -- uid: 8030 - type: CableApcExtension - components: - - pos: 30.5,31.5 - parent: 1 - type: Transform -- uid: 8031 - type: CableApcExtension - components: - - pos: 32.5,31.5 - parent: 1 - type: Transform -- uid: 8032 - type: CableApcExtension - components: - - pos: 31.5,31.5 - parent: 1 - type: Transform -- uid: 8033 - type: CableApcExtension - components: - - pos: 28.5,31.5 - parent: 1 - type: Transform -- uid: 8034 - type: CableApcExtension - components: - - pos: 27.5,31.5 - parent: 1 - type: Transform -- uid: 8035 - type: CableApcExtension - components: - - pos: 27.5,30.5 - parent: 1 - type: Transform -- uid: 8036 - type: CableApcExtension - components: - - pos: 27.5,29.5 - parent: 1 - type: Transform -- uid: 8037 - type: CableApcExtension - components: - - pos: 32.5,30.5 - parent: 1 - type: Transform -- uid: 8038 - type: CableApcExtension - components: - - pos: 32.5,29.5 - parent: 1 - type: Transform -- uid: 8039 - type: CableApcExtension - components: - - pos: 27.5,28.5 - parent: 1 - type: Transform -- uid: 8040 - type: CableApcExtension - components: - - pos: 32.5,28.5 - parent: 1 - type: Transform -- uid: 8041 - type: SpawnPointSecurityCadet - components: - - pos: 24.5,17.5 - parent: 1 - type: Transform -- uid: 8042 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 31.5,13.5 - parent: 1 - type: Transform -- uid: 8043 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 34.5,13.5 - parent: 1 - type: Transform -- uid: 8044 - type: SinkWide - components: - - rot: 3.141592653589793 rad - pos: -21.5,41.5 - parent: 1 - type: Transform -- uid: 8045 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8046 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 10.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8047 - type: Poweredlight - components: - - pos: 16.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8048 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8049 - type: ChairWood - components: - - pos: 11.5,12.5 - parent: 1 - type: Transform -- uid: 8050 - type: ChairWood - components: - - pos: 12.5,12.5 - parent: 1 - type: Transform -- uid: 8051 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: 14.5,13.5 - parent: 1 - type: Transform -- uid: 8052 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: 14.5,12.5 - parent: 1 - type: Transform -- uid: 8053 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: 14.5,11.5 - parent: 1 - type: Transform -- uid: 8054 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 1 - type: Transform -- uid: 8055 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: 14.5,10.5 - parent: 1 - type: Transform -- uid: 8056 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 9.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8057 - type: GasPipeStraight - components: - - pos: 11.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8058 - type: GasPipeStraight - components: - - pos: 11.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8059 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 10.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8060 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 11.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8061 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 7.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8062 - type: ClothingHeadHatUshanka - components: - - pos: 20.592352,12.520571 - parent: 1 - type: Transform -- uid: 8063 - type: TableWood - components: - - pos: 22.5,11.5 - parent: 1 - type: Transform -- uid: 8064 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 20.5,11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8065 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8066 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: 10.5,8.5 - parent: 1 - type: Transform -- uid: 8067 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 1 - type: Transform -- uid: 8068 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 8.5,9.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8069 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: 11.5,7.5 - parent: 1 - type: Transform -- uid: 8070 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 11.5,7.5 - parent: 1 - type: Transform -- uid: 8071 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 8.5,8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8072 - type: CarpetOrange - components: - - rot: 1.5707963267948966 rad - pos: 11.5,8.5 - parent: 1 - type: Transform -- uid: 8073 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: 9.5,5.5 - parent: 1 - type: Transform -- uid: 8074 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: 8.5,7.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8075 - type: CarpetBlue - components: - - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 1 - type: Transform -- uid: 8076 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 12.5,11.5 - parent: 1 - type: Transform -- uid: 8077 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 1 - type: Transform -- uid: 8078 - type: CarpetBlue - components: - - rot: 3.141592653589793 rad - pos: 17.5,13.5 - parent: 1 - type: Transform -- uid: 8079 - type: CarpetBlue - components: - - rot: 3.141592653589793 rad - pos: 17.5,12.5 - parent: 1 - type: Transform -- uid: 8080 - type: CarpetBlue - components: - - rot: 3.141592653589793 rad - pos: 17.5,11.5 - parent: 1 - type: Transform -- uid: 8081 - type: SpawnPointBartender - components: - - pos: 17.5,13.5 - parent: 1 - type: Transform -- uid: 8082 - type: PosterContrabandRedRum - components: - - pos: 11.5,15.5 - parent: 1 - type: Transform -- uid: 8083 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 1 - type: Transform -- uid: 8084 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 1 - type: Transform -- uid: 8085 - type: CarpetBlue - components: - - pos: 17.5,9.5 - parent: 1 - type: Transform -- uid: 8086 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 11.5,10.5 - parent: 1 - type: Transform -- uid: 8087 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 11.402888,8.363556 - parent: 1 - type: Transform -- uid: 8088 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 8.5,9.5 - parent: 1 - type: Transform -- uid: 8089 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: 11.5,12.5 - parent: 1 - type: Transform -- uid: 8090 - type: SpawnPointBartender - components: - - pos: 17.5,11.5 - parent: 1 - type: Transform -- uid: 8091 - type: RandomFoodBakedSingle - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform -- uid: 8092 - type: CableHV - components: - - pos: -4.5,2.5 - parent: 1 - type: Transform -- uid: 8093 - type: CableHV - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform -- uid: 8094 - type: CableHV - components: - - pos: -6.5,2.5 - parent: 1 - type: Transform -- uid: 8095 - type: CableHV - components: - - pos: -7.5,2.5 - parent: 1 - type: Transform -- uid: 8096 - type: CableHV - components: - - pos: -8.5,2.5 - parent: 1 - type: Transform -- uid: 8097 - type: CableHV - components: - - pos: -9.5,2.5 - parent: 1 - type: Transform -- uid: 8098 - type: CableHV - components: - - pos: -10.5,2.5 - parent: 1 - type: Transform -- uid: 8099 - type: CableHV - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform -- uid: 8100 - type: CableHV - components: - - pos: -12.5,2.5 - parent: 1 - type: Transform -- uid: 8101 - type: CableHV - components: - - pos: -13.5,2.5 - parent: 1 - type: Transform -- uid: 8102 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-34.5 - parent: 1 - type: Transform -- uid: 8103 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-21.5 - parent: 1 - type: Transform -- uid: 8104 - type: AirlockMaintJanitorLocked - components: - - pos: -14.5,-14.5 - parent: 1 - type: Transform -- uid: 8105 - type: WallSolid - components: - - pos: -7.5,-33.5 - parent: 1 - type: Transform -- uid: 8106 - type: WallSolid - components: - - pos: -12.5,-32.5 - parent: 1 - type: Transform -- uid: 8107 - type: Grille - components: - - pos: -6.5,-37.5 - parent: 1 - type: Transform -- uid: 8108 - type: WallSolid - components: - - pos: -12.5,-31.5 - parent: 1 - type: Transform -- uid: 8109 - type: WallSolid - components: - - pos: -13.5,-34.5 - parent: 1 - type: Transform -- uid: 8110 - type: WallSolid - components: - - pos: -13.5,-35.5 - parent: 1 - type: Transform -- uid: 8111 - type: WallSolid - components: - - pos: -13.5,-36.5 - parent: 1 - type: Transform -- uid: 8112 - type: WallSolid - components: - - pos: -13.5,-37.5 - parent: 1 - type: Transform -- uid: 8113 - type: Grille - components: - - pos: -6.5,-38.5 - parent: 1 - type: Transform -- uid: 8114 - type: WallSolid - components: - - pos: -13.5,-39.5 - parent: 1 - type: Transform -- uid: 8115 - type: WallSolid - components: - - pos: -16.5,-36.5 - parent: 1 - type: Transform -- uid: 8116 - type: WallSolid - components: - - pos: -15.5,-36.5 - parent: 1 - type: Transform -- uid: 8117 - type: WallSolid - components: - - pos: -14.5,-36.5 - parent: 1 - type: Transform -- uid: 8118 - type: ComfyChair - components: - - pos: 20.5,13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8119 - type: Grille - components: - - pos: -9.5,-40.5 - parent: 1 - type: Transform -- uid: 8120 - type: Grille - components: - - pos: -10.5,-40.5 - parent: 1 - type: Transform -- uid: 8121 - type: Grille - components: - - pos: -11.5,-40.5 - parent: 1 - type: Transform -- uid: 8122 - type: FirelockGlass - components: - - pos: -8.5,-40.5 - parent: 1 - type: Transform -- uid: 8123 - type: ComfyChair - components: - - pos: -15.5,-37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8124 - type: Bed - components: - - pos: -15.5,-39.5 - parent: 1 - type: Transform -- uid: 8125 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-37.5 - parent: 1 - type: Transform -- uid: 8126 - type: PaintingMoony - components: - - pos: -15.5,-36.5 - parent: 1 - type: Transform -- uid: 8127 - type: PaintingAmogusTriptych - components: - - pos: -16.5,-36.5 - parent: 1 - type: Transform -- uid: 8128 - type: PaintingTheScream - components: - - pos: -7.5,-35.5 - parent: 1 - type: Transform -- uid: 8129 - type: AirlockMedicalLocked - components: - - pos: -13.5,-38.5 - parent: 1 - type: Transform -- uid: 8130 - type: AirlockMedicalLocked - components: - - pos: -11.5,-34.5 - parent: 1 - type: Transform -- uid: 8131 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8132 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8133 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8134 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: -10.57877,-37.384254 - parent: 1 - type: Transform -- uid: 8135 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: -10.57877,-37.384254 - parent: 1 - type: Transform -- uid: 8136 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -9.5,-35.5 - parent: 1 - type: Transform -- uid: 8137 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -9.5,-36.5 - parent: 1 - type: Transform -- uid: 8138 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -9.5,-37.5 - parent: 1 - type: Transform -- uid: 8139 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -10.5,-37.5 - parent: 1 - type: Transform -- uid: 8140 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -11.5,-37.5 - parent: 1 - type: Transform -- uid: 8141 - type: ChairOfficeLight - components: - - pos: -10.5,-36.5 - parent: 1 - type: Transform -- uid: 8142 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8143 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8144 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8145 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8146 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8147 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8148 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8149 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8150 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8151 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8152 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8153 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8154 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8155 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8156 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -9.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8157 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8158 - type: GasVentScrubber - components: - - pos: -9.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8159 - type: GasVentPump - components: - - pos: -16.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8160 - type: GasVentPump - components: - - pos: -11.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8161 - type: WallSolid - components: - - pos: -7.5,-32.5 - parent: 1 - type: Transform -- uid: 8162 - type: WallSolid - components: - - pos: -7.5,-31.5 - parent: 1 - type: Transform -- uid: 8163 - type: Firelock - components: - - pos: -50.5,-76.5 - parent: 1 - type: Transform -- uid: 8164 - type: WallSolid - components: - - pos: -11.5,-31.5 - parent: 1 - type: Transform -- uid: 8165 - type: WallSolid - components: - - pos: -10.5,-31.5 - parent: 1 - type: Transform -- uid: 8166 - type: WallSolid - components: - - pos: -9.5,-31.5 - parent: 1 - type: Transform -- uid: 8167 - type: WallSolid - components: - - pos: -8.5,-31.5 - parent: 1 - type: Transform -- uid: 8168 - type: TableWood - components: - - pos: -14.5,-39.5 - parent: 1 - type: Transform -- uid: 8169 - type: CableApcExtension - components: - - pos: -8.5,-41.5 - parent: 1 - type: Transform -- uid: 8170 - type: CableApcExtension - components: - - pos: -8.5,-40.5 - parent: 1 - type: Transform -- uid: 8171 - type: CableApcExtension - components: - - pos: -8.5,-39.5 - parent: 1 - type: Transform -- uid: 8172 - type: CableApcExtension - components: - - pos: -8.5,-38.5 - parent: 1 - type: Transform -- uid: 8173 - type: CableApcExtension - components: - - pos: -8.5,-37.5 - parent: 1 - type: Transform -- uid: 8174 - type: CableApcExtension - components: - - pos: -8.5,-36.5 - parent: 1 - type: Transform -- uid: 8175 - type: CableApcExtension - components: - - pos: -9.5,-36.5 - parent: 1 - type: Transform -- uid: 8176 - type: CableApcExtension - components: - - pos: -10.5,-36.5 - parent: 1 - type: Transform -- uid: 8177 - type: CableApcExtension - components: - - pos: -11.5,-36.5 - parent: 1 - type: Transform -- uid: 8178 - type: CableApcExtension - components: - - pos: -12.5,-36.5 - parent: 1 - type: Transform -- uid: 8179 - type: CableApcExtension - components: - - pos: -12.5,-37.5 - parent: 1 - type: Transform -- uid: 8180 - type: CableApcExtension - components: - - pos: -12.5,-38.5 - parent: 1 - type: Transform -- uid: 8181 - type: CableApcExtension - components: - - pos: -13.5,-38.5 - parent: 1 - type: Transform -- uid: 8182 - type: CableApcExtension - components: - - pos: -14.5,-38.5 - parent: 1 - type: Transform -- uid: 8183 - type: CableApcExtension - components: - - pos: -15.5,-38.5 - parent: 1 - type: Transform -- uid: 8184 - type: CableApcExtension - components: - - pos: -11.5,-35.5 - parent: 1 - type: Transform -- uid: 8185 - type: CableApcExtension - components: - - pos: -11.5,-34.5 - parent: 1 - type: Transform -- uid: 8186 - type: CableApcExtension - components: - - pos: -11.5,-33.5 - parent: 1 - type: Transform -- uid: 8187 - type: CableApcExtension - components: - - pos: -10.5,-33.5 - parent: 1 - type: Transform -- uid: 8188 - type: CableApcExtension - components: - - pos: -9.5,-33.5 - parent: 1 - type: Transform -- uid: 8189 - type: CableApcExtension - components: - - pos: -12.5,-39.5 - parent: 1 - type: Transform -- uid: 8190 - type: CableApcExtension - components: - - pos: -11.5,-39.5 - parent: 1 - type: Transform -- uid: 8191 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8192 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: -10.57877,-37.384254 - parent: 1 - type: Transform -- uid: 8193 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: -10.57877,-37.384254 - parent: 1 - type: Transform -- uid: 8194 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: -10.57877,-37.384254 - parent: 1 - type: Transform -- uid: 8195 - type: Pen - components: - - rot: 3.141592653589793 rad - pos: -10.781895,-37.52488 - parent: 1 - type: Transform -- uid: 8196 - type: PillCanister - components: - - pos: -10.04752,-37.290504 - parent: 1 - type: Transform -- uid: 8197 - type: PillKelotane - components: - - pos: -9.034681,-32.24071 - parent: 1 - type: Transform -- uid: 8198 - type: PillKelotane - components: - - pos: -9.034681,-32.24071 - parent: 1 - type: Transform -- uid: 8199 - type: PillIron - components: - - pos: -9.034681,-32.506336 - parent: 1 - type: Transform -- uid: 8200 - type: Lamp - components: - - rot: -1.5707963267948966 rad - pos: -9.565374,-37.00866 - parent: 1 - type: Transform -- uid: 8201 - type: WarpPoint - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-39.5 - parent: 1 - type: Transform - - location: personnel - type: WarpPoint -- uid: 8202 - type: DrinkToxinsSpecialGlass - components: - - pos: -9.4857435,-36.467285 - parent: 1 - type: Transform -- uid: 8203 - type: CarpetBlack - components: - - pos: -7.5,-36.5 - parent: 1 - type: Transform -- uid: 8204 - type: CarpetBlack - components: - - pos: -7.5,-37.5 - parent: 1 - type: Transform -- uid: 8205 - type: CarpetBlack - components: - - pos: -7.5,-38.5 - parent: 1 - type: Transform -- uid: 8206 - type: CarpetBlack - components: - - pos: -11.5,-39.5 - parent: 1 - type: Transform -- uid: 8207 - type: CarpetBlack - components: - - pos: -10.5,-39.5 - parent: 1 - type: Transform -- uid: 8208 - type: CarpetBlack - components: - - pos: -9.5,-39.5 - parent: 1 - type: Transform -- uid: 8209 - type: CarpetOrange - components: - - pos: -12.5,-35.5 - parent: 1 - type: Transform -- uid: 8210 - type: CarpetOrange - components: - - pos: -12.5,-36.5 - parent: 1 - type: Transform -- uid: 8211 - type: CarpetOrange - components: - - pos: -12.5,-37.5 - parent: 1 - type: Transform -- uid: 8212 - type: CarpetOrange - components: - - pos: -11.5,-35.5 - parent: 1 - type: Transform -- uid: 8213 - type: CarpetOrange - components: - - pos: -11.5,-36.5 - parent: 1 - type: Transform -- uid: 8214 - type: CarpetOrange - components: - - pos: -11.5,-37.5 - parent: 1 - type: Transform -- uid: 8215 - type: CarpetOrange - components: - - pos: -10.5,-35.5 - parent: 1 - type: Transform -- uid: 8216 - type: CarpetOrange - components: - - pos: -10.5,-36.5 - parent: 1 - type: Transform -- uid: 8217 - type: CarpetOrange - components: - - pos: -10.5,-37.5 - parent: 1 - type: Transform -- uid: 8218 - type: CarpetOrange - components: - - pos: -9.5,-35.5 - parent: 1 - type: Transform -- uid: 8219 - type: CarpetOrange - components: - - pos: -9.5,-36.5 - parent: 1 - type: Transform -- uid: 8220 - type: CarpetOrange - components: - - pos: -9.5,-37.5 - parent: 1 - type: Transform -- uid: 8221 - type: CarpetPurple - components: - - pos: -16.5,-38.5 - parent: 1 - type: Transform -- uid: 8222 - type: CarpetPurple - components: - - pos: -16.5,-39.5 - parent: 1 - type: Transform -- uid: 8223 - type: CarpetPurple - components: - - pos: -15.5,-38.5 - parent: 1 - type: Transform -- uid: 8224 - type: CarpetPurple - components: - - pos: -15.5,-39.5 - parent: 1 - type: Transform -- uid: 8225 - type: CarpetPurple - components: - - pos: -14.5,-38.5 - parent: 1 - type: Transform -- uid: 8226 - type: CarpetPurple - components: - - pos: -14.5,-39.5 - parent: 1 - type: Transform -- uid: 8227 - type: Table - components: - - pos: -10.5,-32.5 - parent: 1 - type: Transform -- uid: 8228 - type: Table - components: - - pos: -9.5,-32.5 - parent: 1 - type: Transform -- uid: 8229 - type: Table - components: - - pos: -8.5,-32.5 - parent: 1 - type: Transform -- uid: 8230 - type: Table - components: - - pos: -8.5,-33.5 - parent: 1 - type: Transform -- uid: 8231 - type: BoxPillCanister - components: - - pos: -8.487805,-33.36571 - parent: 1 - type: Transform -- uid: 8232 - type: PillIron - components: - - pos: -9.034681,-32.506336 - parent: 1 - type: Transform -- uid: 8233 - type: PillIron - components: - - pos: -9.034681,-32.506336 - parent: 1 - type: Transform -- uid: 8234 - type: PillIron - components: - - pos: -9.034681,-32.506336 - parent: 1 - type: Transform -- uid: 8235 - type: PillHyronalin - components: - - pos: -9.534681,-32.256336 - parent: 1 - type: Transform -- uid: 8236 - type: PillHyronalin - components: - - pos: -9.534681,-32.256336 - parent: 1 - type: Transform -- uid: 8237 - type: PillHyronalin - components: - - pos: -9.534681,-32.256336 - parent: 1 - type: Transform -- uid: 8238 - type: PillDylovene - components: - - pos: -9.519056,-32.52196 - parent: 1 - type: Transform -- uid: 8239 - type: PillDylovene - components: - - pos: -9.519056,-32.52196 - parent: 1 - type: Transform -- uid: 8240 - type: PillHyronalin - components: - - pos: -9.534681,-32.256336 - parent: 1 - type: Transform -- uid: 8241 - type: PillDylovene - components: - - pos: -9.503431,-32.52196 - parent: 1 - type: Transform -- uid: 8242 - type: PillDylovene - components: - - pos: -9.487806,-32.537586 - parent: 1 - type: Transform -- uid: 8243 - type: PillDexalin - components: - - pos: -10.034681,-32.27196 - parent: 1 - type: Transform -- uid: 8244 - type: PillDexalin - components: - - pos: -10.034681,-32.27196 - parent: 1 - type: Transform -- uid: 8245 - type: PillDexalin - components: - - pos: -10.019056,-32.27196 - parent: 1 - type: Transform -- uid: 8246 - type: PillDexalin - components: - - pos: -10.019056,-32.27196 - parent: 1 - type: Transform -- uid: 8247 - type: DrinkBottleWhiskey - components: - - pos: -10.628431,-32.17821 - parent: 1 - type: Transform -- uid: 8248 - type: BoxSyringe - components: - - pos: -8.384587,-32.982723 - parent: 1 - type: Transform -- uid: 8249 - type: TableWood - components: - - pos: -12.5,-35.5 - parent: 1 - type: Transform -- uid: 8250 - type: PosterLegitHelpOthers - components: - - pos: -7.5,-40.5 - parent: 1 - type: Transform -- uid: 8251 - type: PosterLegitCleanliness - components: - - pos: -10.5,-24.5 - parent: 1 - type: Transform -- uid: 8252 - type: PosterContrabandBeachStarYamamoto - components: - - pos: -9.5,-31.5 - parent: 1 - type: Transform -- uid: 8253 - type: PosterContrabandAmbrosiaVulgaris - components: - - pos: -10.5,-34.5 - parent: 1 - type: Transform -- uid: 8254 - type: PosterContrabandSmoke - components: - - pos: -6.5,-51.5 - parent: 1 - type: Transform -- uid: 8255 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8256 - type: Poweredlight - components: - - pos: -8.5,-35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8257 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8258 - type: PoweredSmallLight - components: - - pos: -11.5,-32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8259 - type: WaterCooler - components: - - pos: -8.5,-35.5 - parent: 1 - type: Transform -- uid: 8260 - type: CarpetGreen - components: - - pos: -5.5,-49.5 - parent: 1 - type: Transform -- uid: 8261 - type: CarpetGreen - components: - - pos: -4.5,-49.5 - parent: 1 - type: Transform -- uid: 8262 - type: CarpetGreen - components: - - pos: -3.5,-49.5 - parent: 1 - type: Transform -- uid: 8263 - type: CarpetGreen - components: - - pos: -3.5,-50.5 - parent: 1 - type: Transform -- uid: 8264 - type: CarpetGreen - components: - - pos: -4.5,-50.5 - parent: 1 - type: Transform -- uid: 8265 - type: CarpetGreen - components: - - pos: -5.5,-50.5 - parent: 1 - type: Transform -- uid: 8266 - type: PaintingSkeletonCigarette - components: - - pos: -14.5,-36.5 - parent: 1 - type: Transform -- uid: 8267 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-4.5 - parent: 1 - type: Transform -- uid: 8268 - type: WallReinforced - components: - - pos: 7.5,-37.5 - parent: 1 - type: Transform -- uid: 8269 - type: WallSolid - components: - - pos: 10.5,-28.5 - parent: 1 - type: Transform -- uid: 8270 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 20.5,12.5 - parent: 1 - type: Transform -- uid: 8271 - type: CarpetGreen - components: - - pos: 21.5,13.5 - parent: 1 - type: Transform -- uid: 8272 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 17.5,8.5 - parent: 1 - type: Transform -- uid: 8273 - type: BoxBeanbag - components: - - pos: 22.537981,13.588842 - parent: 1 - type: Transform -- uid: 8274 - type: TableWood - components: - - pos: 22.5,13.5 - parent: 1 - type: Transform -- uid: 8275 - type: CarpetGreen - components: - - pos: 21.5,10.5 - parent: 1 - type: Transform -- uid: 8276 - type: CarpetGreen - components: - - pos: 20.5,10.5 - parent: 1 - type: Transform -- uid: 8277 - type: CarpetGreen - components: - - pos: 20.5,12.5 - parent: 1 - type: Transform -- uid: 8278 - type: CarpetGreen - components: - - pos: 20.5,11.5 - parent: 1 - type: Transform -- uid: 8279 - type: CarpetGreen - components: - - pos: 21.5,11.5 - parent: 1 - type: Transform -- uid: 8280 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 15.5,28.5 - parent: 1 - type: Transform -- uid: 8281 - type: CarpetGreen - components: - - pos: 21.5,12.5 - parent: 1 - type: Transform -- uid: 8282 - type: WallReinforced - components: - - pos: 5.5,30.5 - parent: 1 - type: Transform -- uid: 8283 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8284 - type: Poweredlight - components: - - pos: 6.5,22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8285 - type: Catwalk - components: - - pos: -4.5,-69.5 - parent: 1 - type: Transform -- uid: 8286 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 0.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8287 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 1 - type: Transform -- uid: 8288 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-25.5 - parent: 1 - type: Transform -- uid: 8289 - type: Catwalk - components: - - pos: -13.5,-31.5 - parent: 1 - type: Transform -- uid: 8290 - type: Catwalk - components: - - pos: -3.5,-69.5 - parent: 1 - type: Transform -- uid: 8291 - type: SpawnPointWarden - components: - - pos: 23.5,21.5 - parent: 1 - type: Transform -- uid: 8292 - type: LockerWardenFilled - components: - - pos: 20.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8293 - type: WallSolid - components: - - pos: 23.5,-47.5 - parent: 1 - type: Transform -- uid: 8294 - type: TableReinforced - components: - - pos: 24.5,23.5 - parent: 1 - type: Transform -- uid: 8295 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-10.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27282 - - port: Left - uid: 27282 - Forward: [] - Off: - - port: Middle - uid: 27282 - type: SignalReceiver -- uid: 8296 - type: AirlockGlass - components: - - pos: 7.5,-43.5 - parent: 1 - type: Transform -- uid: 8297 - type: DisposalBend - components: - - pos: -3.5,-12.5 - parent: 1 - type: Transform -- uid: 8298 - type: ComputerStationRecords - components: - - rot: -1.5707963267948966 rad - pos: 26.5,20.5 - parent: 1 - type: Transform -- uid: 8299 - type: TableReinforced - components: - - pos: 22.5,23.5 - parent: 1 - type: Transform -- uid: 8300 - type: TableReinforced - components: - - pos: 25.5,23.5 - parent: 1 - type: Transform -- uid: 8301 - type: TableReinforced - components: - - pos: 23.5,23.5 - parent: 1 - type: Transform -- uid: 8302 - type: RandomFoodSingle - components: - - pos: 4.5,15.5 - parent: 1 - type: Transform -- uid: 8303 - type: Paper - components: - - pos: 24.486351,19.53259 - parent: 1 - type: Transform -- uid: 8304 - type: Paper - components: - - pos: 24.486351,19.53259 - parent: 1 - type: Transform -- uid: 8305 - type: Paper - components: - - pos: 24.486351,19.53259 - parent: 1 - type: Transform -- uid: 8306 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: 24.5,20.5 - parent: 1 - type: Transform -- uid: 8307 - type: Grille - components: - - pos: -12.5,-11.5 - parent: 1 - type: Transform -- uid: 8308 - type: AirlockGlass - components: - - pos: -4.5,-22.5 - parent: 1 - type: Transform -- uid: 8309 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-10.5 - parent: 1 - type: Transform -- uid: 8310 - type: AirlockGlass - components: - - pos: 7.5,-42.5 - parent: 1 - type: Transform -- uid: 8311 - type: AirlockGlass - components: - - pos: 7.5,-41.5 - parent: 1 - type: Transform -- uid: 8312 - type: AirlockGlass - components: - - pos: -0.5,-26.5 - parent: 1 - type: Transform -- uid: 8313 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-8.5 - parent: 1 - type: Transform -- uid: 8314 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 4.5,22.5 - parent: 1 - type: Transform -- uid: 8315 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 1 - type: Transform -- uid: 8316 - type: Catwalk - components: - - pos: -9.5,-13.5 - parent: 1 - type: Transform -- uid: 8317 - type: Grille - components: - - pos: -9.5,-11.5 - parent: 1 - type: Transform -- uid: 8318 - type: Catwalk - components: - - pos: -12.5,-13.5 - parent: 1 - type: Transform -- uid: 8319 - type: Catwalk - components: - - pos: -10.5,-13.5 - parent: 1 - type: Transform -- uid: 8320 - type: Catwalk - components: - - pos: -10.5,-14.5 - parent: 1 - type: Transform -- uid: 8321 - type: Catwalk - components: - - pos: -10.5,-15.5 - parent: 1 - type: Transform -- uid: 8322 - type: Grille - components: - - pos: -8.5,-11.5 - parent: 1 - type: Transform -- uid: 8323 - type: Catwalk - components: - - pos: -13.5,-14.5 - parent: 1 - type: Transform -- uid: 8324 - type: Grille - components: - - pos: -10.5,-16.5 - parent: 1 - type: Transform -- uid: 8325 - type: Catwalk - components: - - pos: -7.5,-13.5 - parent: 1 - type: Transform -- uid: 8326 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 4.5,21.5 - parent: 1 - type: Transform -- uid: 8327 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 4.5,20.5 - parent: 1 - type: Transform -- uid: 8328 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 5.5,22.5 - parent: 1 - type: Transform -- uid: 8329 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 5.5,21.5 - parent: 1 - type: Transform -- uid: 8330 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 5.5,20.5 - parent: 1 - type: Transform -- uid: 8331 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 6.5,22.5 - parent: 1 - type: Transform -- uid: 8332 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 6.5,21.5 - parent: 1 - type: Transform -- uid: 8333 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 6.5,20.5 - parent: 1 - type: Transform -- uid: 8334 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 7.5,22.5 - parent: 1 - type: Transform -- uid: 8335 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 7.5,21.5 - parent: 1 - type: Transform -- uid: 8336 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 7.5,20.5 - parent: 1 - type: Transform -- uid: 8337 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 8.5,22.5 - parent: 1 - type: Transform -- uid: 8338 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 8.5,21.5 - parent: 1 - type: Transform -- uid: 8339 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 8.5,20.5 - parent: 1 - type: Transform -- uid: 8340 - type: Dresser - components: - - pos: 7.5,22.5 - parent: 1 - type: Transform -- uid: 8341 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 28.5,13.5 - parent: 1 - type: Transform -- uid: 8342 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 39.5,8.5 - parent: 1 - type: Transform -- uid: 8343 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 39.5,5.5 - parent: 1 - type: Transform -- uid: 8344 - type: BannerSecurity - components: - - pos: 21.5,18.5 - parent: 1 - type: Transform -- uid: 8345 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 17.5,22.5 - parent: 1 - type: Transform -- uid: 8346 - type: Table - components: - - pos: 17.5,21.5 - parent: 1 - type: Transform -- uid: 8347 - type: Table - components: - - pos: 16.5,21.5 - parent: 1 - type: Transform -- uid: 8348 - type: Table - components: - - pos: 15.5,21.5 - parent: 1 - type: Transform -- uid: 8349 - type: Paper - components: - - pos: 24.486351,19.53259 - parent: 1 - type: Transform -- uid: 8350 - type: Paper - components: - - pos: 24.486351,19.53259 - parent: 1 - type: Transform -- uid: 8351 - type: DeskBell - components: - - pos: 26.493649,19.578499 - parent: 1 - type: Transform - - nextAttack: 83.4624909 - type: MeleeWeapon -- uid: 8352 - type: Paper - components: - - pos: 24.486351,19.53259 - parent: 1 - type: Transform -- uid: 8353 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 15.5,22.5 - parent: 1 - type: Transform -- uid: 8354 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 16.5,22.5 - parent: 1 - type: Transform -- uid: 8355 - type: Chair - components: - - pos: 17.5,23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8356 - type: Chair - components: - - pos: 15.5,23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8357 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 16.5,20.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8358 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 17.5,20.5 - parent: 1 - type: Transform -- uid: 8359 - type: BoxZiptie - components: - - pos: 15.609102,22.64932 - parent: 1 - type: Transform -- uid: 8360 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: 16.421602,22.571196 - parent: 1 - type: Transform -- uid: 8361 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: 16.515352,22.55557 - parent: 1 - type: Transform -- uid: 8362 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: 16.499727,22.571196 - parent: 1 - type: Transform -- uid: 8363 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: 16.499727,22.571196 - parent: 1 - type: Transform -- uid: 8364 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: 16.499727,22.571196 - parent: 1 - type: Transform -- uid: 8365 - type: Pen - components: - - rot: 3.141592653589793 rad - pos: 16.218477,22.61807 - parent: 1 - type: Transform -- uid: 8366 - type: Pen - components: - - pos: 16.327852,21.55557 - parent: 1 - type: Transform -- uid: 8367 - type: LockerEvidence - components: - - pos: 18.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8368 - type: WallReinforced - components: - - pos: 18.5,24.5 - parent: 1 - type: Transform -- uid: 8369 - type: WallReinforced - components: - - pos: 17.5,24.5 - parent: 1 - type: Transform -- uid: 8370 - type: WallReinforced - components: - - pos: 16.5,24.5 - parent: 1 - type: Transform -- uid: 8371 - type: WallReinforced - components: - - pos: 15.5,24.5 - parent: 1 - type: Transform -- uid: 8372 - type: AirlockMaintSecLocked - components: - - name: interrogation room - type: MetaData - - pos: 14.5,24.5 - parent: 1 - type: Transform -- uid: 8373 - type: WallReinforced - components: - - pos: 13.5,24.5 - parent: 1 - type: Transform -- uid: 8374 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 15.5,29.5 - parent: 1 - type: Transform -- uid: 8375 - type: ComputerTelevision - components: - - pos: 23.5,23.5 - parent: 1 - type: Transform -- uid: 8376 - type: GasPipeStraight - components: - - pos: 11.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8377 - type: PottedPlantRandom - components: - - pos: 20.5,18.5 - parent: 1 - type: Transform -- uid: 8378 - type: RandomSpawner - components: - - pos: 22.5,17.5 - parent: 1 - type: Transform -- uid: 8379 - type: RandomSpawner - components: - - pos: 5.5,13.5 - parent: 1 - type: Transform -- uid: 8380 - type: RandomSpawner - components: - - pos: 6.5,15.5 - parent: 1 - type: Transform -- uid: 8381 - type: RandomSpawner - components: - - pos: 17.5,0.5 - parent: 1 - type: Transform -- uid: 8382 - type: RandomSpawner - components: - - pos: 33.5,0.5 - parent: 1 - type: Transform -- uid: 8383 - type: RandomSpawner - components: - - pos: 32.5,-2.5 - parent: 1 - type: Transform -- uid: 8384 - type: RandomSpawner - components: - - pos: 26.5,-11.5 - parent: 1 - type: Transform -- uid: 8385 - type: RandomSpawner - components: - - pos: -5.5,-32.5 - parent: 1 - type: Transform -- uid: 8386 - type: RandomSpawner - components: - - pos: -2.5,-46.5 - parent: 1 - type: Transform -- uid: 8387 - type: RandomSpawner - components: - - pos: 35.5,-17.5 - parent: 1 - type: Transform -- uid: 8388 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 1 - type: Transform -- uid: 8389 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 1 - type: Transform -- uid: 8390 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 1 - type: Transform -- uid: 8391 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-9.5 - parent: 1 - type: Transform -- uid: 8392 - type: CigarCase - components: - - pos: -12.420865,-35.409706 - parent: 1 - type: Transform -- uid: 8393 - type: DrinkWaterBottleFull - components: - - pos: -14.530239,-37.26908 - parent: 1 - type: Transform -- uid: 8394 - type: SinkWide - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-32.5 - parent: 1 - type: Transform -- uid: 8395 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-36.5 - parent: 1 - type: Transform -- uid: 8396 - type: WallReinforced - components: - - pos: 44.5,-32.5 - parent: 1 - type: Transform -- uid: 8397 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-34.5 - parent: 1 - type: Transform -- uid: 8398 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-9.5 - parent: 1 - type: Transform -- uid: 8399 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-10.5 - parent: 1 - type: Transform -- uid: 8400 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-11.5 - parent: 1 - type: Transform -- uid: 8401 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1 - type: Transform -- uid: 8402 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-7.5 - parent: 1 - type: Transform -- uid: 8403 - type: DisposalPipe - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform -- uid: 8404 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -4.5,1.5 - parent: 1 - type: Transform -- uid: 8405 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -8.5,0.5 - parent: 1 - type: Transform -- uid: 8406 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -8.5,1.5 - parent: 1 - type: Transform -- uid: 8407 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -9.5,0.5 - parent: 1 - type: Transform -- uid: 8408 - type: AirlockMaintLocked - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-20.5 - parent: 1 - type: Transform -- uid: 8409 - type: AirlockMaintLocked - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 1 - type: Transform -- uid: 8410 - type: TableWood - components: - - pos: -1.5,19.5 - parent: 1 - type: Transform -- uid: 8411 - type: CableApcExtension - components: - - pos: 21.5,-47.5 - parent: 1 - type: Transform -- uid: 8412 - type: SpawnPointCargoTechnician - components: - - pos: -46.5,16.5 - parent: 1 - type: Transform -- uid: 8413 - type: SpawnPointSecurityOfficer - components: - - pos: 1.5,19.5 - parent: 1 - type: Transform -- uid: 8414 - type: WallSolid - components: - - pos: -6.5,-8.5 - parent: 1 - type: Transform -- uid: 8415 - type: WallSolidRust - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-7.5 - parent: 1 - type: Transform -- uid: 8416 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-32.5 - parent: 1 - type: Transform -- uid: 8417 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-11.5 - parent: 1 - type: Transform -- uid: 8418 - type: AirlockMaintLocked - components: - - pos: -6.5,-9.5 - parent: 1 - type: Transform -- uid: 8419 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-29.5 - parent: 1 - type: Transform -- uid: 8420 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-36.5 - parent: 1 - type: Transform -- uid: 8421 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-35.5 - parent: 1 - type: Transform -- uid: 8422 - type: WallSolid - components: - - pos: -6.5,-10.5 - parent: 1 - type: Transform -- uid: 8423 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-27.5 - parent: 1 - type: Transform -- uid: 8424 - type: WallSolid - components: - - pos: -17.5,-11.5 - parent: 1 - type: Transform -- uid: 8425 - type: WallSolid - components: - - pos: -17.5,-12.5 - parent: 1 - type: Transform -- uid: 8426 - type: Catwalk - components: - - pos: -14.5,-31.5 - parent: 1 - type: Transform -- uid: 8427 - type: Catwalk - components: - - pos: -15.5,-31.5 - parent: 1 - type: Transform -- uid: 8428 - type: Catwalk - components: - - pos: -2.5,-69.5 - parent: 1 - type: Transform -- uid: 8429 - type: Catwalk - components: - - pos: -16.5,-31.5 - parent: 1 - type: Transform -- uid: 8430 - type: Catwalk - components: - - pos: -16.5,-32.5 - parent: 1 - type: Transform -- uid: 8431 - type: Catwalk - components: - - pos: -16.5,-33.5 - parent: 1 - type: Transform -- uid: 8432 - type: Catwalk - components: - - pos: -6.5,-69.5 - parent: 1 - type: Transform -- uid: 8433 - type: Flash - components: - - pos: 2.5760884,21.156208 - parent: 1 - type: Transform -- uid: 8434 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 2.5,19.5 - parent: 1 - type: Transform -- uid: 8435 - type: WallSolid - components: - - pos: -11.5,0.5 - parent: 1 - type: Transform -- uid: 8436 - type: Window - components: - - pos: -12.5,14.5 - parent: 1 - type: Transform -- uid: 8437 - type: Catwalk - components: - - pos: -12.5,15.5 - parent: 1 - type: Transform -- uid: 8438 - type: WallSolid - components: - - pos: -13.5,14.5 - parent: 1 - type: Transform -- uid: 8439 - type: Catwalk - components: - - pos: -13.5,15.5 - parent: 1 - type: Transform -- uid: 8440 - type: Catwalk - components: - - pos: -14.5,15.5 - parent: 1 - type: Transform -- uid: 8441 - type: RandomPosterContraband - components: - - pos: -15.5,14.5 - parent: 1 - type: Transform -- uid: 8442 - type: Grille - components: - - pos: -12.5,14.5 - parent: 1 - type: Transform -- uid: 8443 - type: WallSolid - components: - - pos: -17.5,11.5 - parent: 1 - type: Transform -- uid: 8444 - type: WallSolid - components: - - pos: -15.5,14.5 - parent: 1 - type: Transform -- uid: 8445 - type: WallReinforced - components: - - pos: 49.5,44.5 - parent: 1 - type: Transform -- uid: 8446 - type: RandomPosterContraband - components: - - pos: -9.5,14.5 - parent: 1 - type: Transform -- uid: 8447 - type: Window - components: - - pos: -23.5,9.5 - parent: 1 - type: Transform -- uid: 8448 - type: Window - components: - - pos: -22.5,9.5 - parent: 1 - type: Transform -- uid: 8449 - type: WallSolid - components: - - pos: -21.5,13.5 - parent: 1 - type: Transform -- uid: 8450 - type: WallSolid - components: - - pos: -21.5,10.5 - parent: 1 - type: Transform -- uid: 8451 - type: WallSolid - components: - - pos: -17.5,13.5 - parent: 1 - type: Transform -- uid: 8452 - type: WallSolid - components: - - pos: -17.5,12.5 - parent: 1 - type: Transform -- uid: 8453 - type: WallSolid - components: - - pos: -17.5,14.5 - parent: 1 - type: Transform -- uid: 8454 - type: WallSolid - components: - - pos: -16.5,14.5 - parent: 1 - type: Transform -- uid: 8455 - type: WallSolid - components: - - pos: -15.5,-32.5 - parent: 1 - type: Transform -- uid: 8456 - type: WallSolid - components: - - pos: -15.5,-33.5 - parent: 1 - type: Transform -- uid: 8457 - type: AirlockGlass - components: - - name: Psychologist office - type: MetaData - - pos: -8.5,-40.5 - parent: 1 - type: Transform -- uid: 8458 - type: WallSolid - components: - - pos: -9.5,-30.5 - parent: 1 - type: Transform -- uid: 8459 - type: WallSolid - components: - - pos: -15.5,-30.5 - parent: 1 - type: Transform -- uid: 8460 - type: WallSolid - components: - - pos: -14.5,-30.5 - parent: 1 - type: Transform -- uid: 8461 - type: WallSolid - components: - - pos: -14.5,-29.5 - parent: 1 - type: Transform -- uid: 8462 - type: SignCanisters - components: - - pos: -36.5,-39.5 - parent: 1 - type: Transform -- uid: 8463 - type: SignAtmos - components: - - pos: -21.5,-31.5 - parent: 1 - type: Transform -- uid: 8464 - type: CableApcExtension - components: - - pos: -55.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8465 - type: CableApcExtension - components: - - pos: -54.5,-27.5 - parent: 1 - type: Transform -- uid: 8466 - type: CableApcExtension - components: - - pos: -53.5,-27.5 - parent: 1 - type: Transform -- uid: 8467 - type: AirlockJanitorLocked - components: - - name: janitorial closet - type: MetaData - - pos: -11.5,-24.5 - parent: 1 - type: Transform -- uid: 8468 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: 14.5,-3.5 - parent: 1 - type: Transform -- uid: 8469 - type: Firelock - components: - - pos: 19.5,-8.5 - parent: 1 - type: Transform -- uid: 8470 - type: Catwalk - components: - - pos: -6.5,-71.5 - parent: 1 - type: Transform -- uid: 8471 - type: Catwalk - components: - - pos: -7.5,-71.5 - parent: 1 - type: Transform -- uid: 8472 - type: Catwalk - components: - - pos: -8.5,-71.5 - parent: 1 - type: Transform -- uid: 8473 - type: Catwalk - components: - - pos: -9.5,-71.5 - parent: 1 - type: Transform -- uid: 8474 - type: Catwalk - components: - - pos: -10.5,-71.5 - parent: 1 - type: Transform -- uid: 8475 - type: Catwalk - components: - - pos: -11.5,-71.5 - parent: 1 - type: Transform -- uid: 8476 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-25.5 - parent: 1 - type: Transform -- uid: 8477 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-10.5 - parent: 1 - type: Transform -- uid: 8478 - type: Table - components: - - pos: -9.5,-15.5 - parent: 1 - type: Transform -- uid: 8479 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -15.5,16.5 - parent: 1 - type: Transform -- uid: 8480 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -14.5,16.5 - parent: 1 - type: Transform -- uid: 8481 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,16.5 - parent: 1 - type: Transform -- uid: 8482 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -12.5,16.5 - parent: 1 - type: Transform -- uid: 8483 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,16.5 - parent: 1 - type: Transform -- uid: 8484 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,17.5 - parent: 1 - type: Transform -- uid: 8485 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -10.5,17.5 - parent: 1 - type: Transform -- uid: 8486 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -9.5,17.5 - parent: 1 - type: Transform -- uid: 8487 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -8.5,17.5 - parent: 1 - type: Transform -- uid: 8488 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -7.5,17.5 - parent: 1 - type: Transform -- uid: 8489 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -6.5,17.5 - parent: 1 - type: Transform -- uid: 8490 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -5.5,17.5 - parent: 1 - type: Transform -- uid: 8491 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -3.5,17.5 - parent: 1 - type: Transform -- uid: 8492 - type: ClosetEmergencyFilledRandom - components: - - pos: -11.5,-30.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8493 - type: ClosetFireFilled - components: - - pos: -12.5,-30.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8494 - type: Firelock - components: - - pos: -9.5,-29.5 - parent: 1 - type: Transform -- uid: 8495 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-30.5 - parent: 1 - type: Transform -- uid: 8496 - type: WallSolid - components: - - pos: -15.5,-11.5 - parent: 1 - type: Transform -- uid: 8497 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 1 - type: Transform -- uid: 8498 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 1 - type: Transform -- uid: 8499 - type: DisposalBend - components: - - pos: 15.5,-25.5 - parent: 1 - type: Transform -- uid: 8500 - type: WallReinforced - components: - - pos: 19.5,30.5 - parent: 1 - type: Transform -- uid: 8501 - type: WallReinforced - components: - - pos: 19.5,29.5 - parent: 1 - type: Transform -- uid: 8502 - type: WallReinforced - components: - - pos: 19.5,28.5 - parent: 1 - type: Transform -- uid: 8503 - type: WallReinforced - components: - - pos: 19.5,27.5 - parent: 1 - type: Transform -- uid: 8504 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 20.5,26.5 - parent: 1 - type: Transform -- uid: 8505 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 19.5,26.5 - parent: 1 - type: Transform -- uid: 8506 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 21.5,26.5 - parent: 1 - type: Transform -- uid: 8507 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 22.5,26.5 - parent: 1 - type: Transform -- uid: 8508 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8509 - type: GasVentScrubber - components: - - pos: -0.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8510 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8511 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8512 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8513 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 8514 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8515 - type: SignalSwitch - components: - - rot: 3.141592653589793 rad - pos: -13.5,-16.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 29684 - Off: - - port: Close - uid: 29684 - type: SignalTransmitter - - type: ItemCooldown -- uid: 8516 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-14.5 - parent: 1 - type: Transform -- uid: 8517 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-17.5 - parent: 1 - type: Transform -- uid: 8518 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-15.5 - parent: 1 - type: Transform -- uid: 8519 - type: WallSolid - components: - - pos: -8.5,-16.5 - parent: 1 - type: Transform -- uid: 8520 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8521 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8522 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8523 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8524 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8525 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8526 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8527 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8528 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8529 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8530 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8531 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8532 - type: CableMV - components: - - pos: 46.5,-64.5 - parent: 1 - type: Transform -- uid: 8533 - type: CableApcExtension - components: - - pos: 17.5,-49.5 - parent: 1 - type: Transform -- uid: 8534 - type: CableHV - components: - - pos: -2.5,-62.5 - parent: 1 - type: Transform -- uid: 8535 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8536 - type: WallSolid - components: - - pos: 23.5,-45.5 - parent: 1 - type: Transform -- uid: 8537 - type: WallSolid - components: - - pos: 23.5,-44.5 - parent: 1 - type: Transform -- uid: 8538 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-44.5 - parent: 1 - type: Transform -- uid: 8539 - type: CableApcExtension - components: - - pos: 18.5,-51.5 - parent: 1 - type: Transform -- uid: 8540 - type: DisposalPipe - components: - - pos: 17.5,-47.5 - parent: 1 - type: Transform -- uid: 8541 - type: WallSolid - components: - - pos: 23.5,-48.5 - parent: 1 - type: Transform -- uid: 8542 - type: AirlockMaintSecLocked - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-48.5 - parent: 1 - type: Transform -- uid: 8543 - type: WallSolid - components: - - pos: 15.5,-46.5 - parent: 1 - type: Transform -- uid: 8544 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 17.5,-49.5 - parent: 1 - type: Transform -- uid: 8545 - type: WallSolid - components: - - pos: 18.5,-45.5 - parent: 1 - type: Transform -- uid: 8546 - type: WallSolid - components: - - pos: 18.5,-46.5 - parent: 1 - type: Transform -- uid: 8547 - type: WallSolid - components: - - pos: 18.5,-47.5 - parent: 1 - type: Transform -- uid: 8548 - type: FirelockGlass - components: - - pos: 21.5,-44.5 - parent: 1 - type: Transform -- uid: 8549 - type: CableApcExtension - components: - - pos: 21.5,-48.5 - parent: 1 - type: Transform -- uid: 8550 - type: CableApcExtension - components: - - pos: 21.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8551 - type: CableApcExtension - components: - - pos: 20.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8552 - type: WindoorSecurityLocked - components: - - pos: 21.5,-44.5 - parent: 1 - type: Transform -- uid: 8553 - type: Poweredlight - components: - - pos: 13.5,17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8554 - type: FirelockGlass - components: - - pos: 27.5,21.5 - parent: 1 - type: Transform -- uid: 8555 - type: CableApcExtension - components: - - pos: 27.5,3.5 - parent: 1 - type: Transform -- uid: 8556 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 31.5,0.5 - parent: 1 - type: Transform -- uid: 8557 - type: ReinforcedWindow - components: - - pos: -2.5,42.5 - parent: 1 - type: Transform -- uid: 8558 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 8559 - type: WallReinforced - components: - - pos: 3.5,31.5 - parent: 1 - type: Transform -- uid: 8560 - type: WallReinforced - components: - - pos: 4.5,30.5 - parent: 1 - type: Transform -- uid: 8561 - type: WallReinforced - components: - - pos: 3.5,33.5 - parent: 1 - type: Transform -- uid: 8562 - type: WallReinforced - components: - - pos: 11.5,29.5 - parent: 1 - type: Transform -- uid: 8563 - type: WallReinforced - components: - - pos: 11.5,35.5 - parent: 1 - type: Transform -- uid: 8564 - type: WallReinforced - components: - - pos: 9.5,29.5 - parent: 1 - type: Transform -- uid: 8565 - type: WallReinforced - components: - - pos: 4.5,31.5 - parent: 1 - type: Transform -- uid: 8566 - type: WallReinforced - components: - - pos: 11.5,33.5 - parent: 1 - type: Transform -- uid: 8567 - type: WallReinforced - components: - - pos: 6.5,35.5 - parent: 1 - type: Transform -- uid: 8568 - type: RailingCorner - components: - - pos: 32.5,-40.5 - parent: 1 - type: Transform -- uid: 8569 - type: GasPipeStraight - components: - - pos: 21.5,-43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8570 - type: GasPipeTJunction - components: - - pos: 21.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8571 - type: CableApcExtension - components: - - pos: 18.5,-50.5 - parent: 1 - type: Transform -- uid: 8572 - type: GasPipeStraight - components: - - pos: 21.5,-45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8573 - type: CableApcExtension - components: - - pos: 17.5,-50.5 - parent: 1 - type: Transform -- uid: 8574 - type: GasPipeStraight - components: - - pos: 20.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8575 - type: GasPipeStraight - components: - - pos: 20.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8576 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 21.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8577 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 20.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 8578 - type: CableHV - components: - - pos: 34.5,1.5 - parent: 1 - type: Transform -- uid: 8579 - type: CableHV - components: - - pos: 35.5,1.5 - parent: 1 - type: Transform -- uid: 8580 - type: CableHV - components: - - pos: 36.5,1.5 - parent: 1 - type: Transform -- uid: 8581 - type: CableHV - components: - - pos: 36.5,2.5 - parent: 1 - type: Transform -- uid: 8582 - type: CableHV - components: - - pos: 37.5,2.5 - parent: 1 - type: Transform -- uid: 8583 - type: CableHV - components: - - pos: 38.5,2.5 - parent: 1 - type: Transform -- uid: 8584 - type: CableHV - components: - - pos: 39.5,2.5 - parent: 1 - type: Transform -- uid: 8585 - type: CableHV - components: - - pos: 40.5,2.5 - parent: 1 - type: Transform -- uid: 8586 - type: CableHV - components: - - pos: 41.5,2.5 - parent: 1 - type: Transform -- uid: 8587 - type: CableHV - components: - - pos: 42.5,2.5 - parent: 1 - type: Transform -- uid: 8588 - type: CableHV - components: - - pos: 44.5,2.5 - parent: 1 - type: Transform -- uid: 8589 - type: CableHV - components: - - pos: 43.5,2.5 - parent: 1 - type: Transform -- uid: 8590 - type: WallSolid - components: - - pos: 61.5,7.5 - parent: 1 - type: Transform -- uid: 8591 - type: WallReinforced - components: - - pos: 66.5,4.5 - parent: 1 - type: Transform -- uid: 8592 - type: WallReinforced - components: - - pos: 66.5,5.5 - parent: 1 - type: Transform -- uid: 8593 - type: AirlockSecurityGlassLocked - components: - - name: substation - type: MetaData - - pos: 61.5,4.5 - parent: 1 - type: Transform -- uid: 8594 - type: WallSolid - components: - - pos: 61.5,5.5 - parent: 1 - type: Transform -- uid: 8595 - type: WallReinforced - components: - - pos: 66.5,3.5 - parent: 1 - type: Transform -- uid: 8596 - type: WallReinforced - components: - - pos: 66.5,2.5 - parent: 1 - type: Transform -- uid: 8597 - type: WallReinforced - components: - - pos: 66.5,1.5 - parent: 1 - type: Transform -- uid: 8598 - type: AirlockExternalGlass - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-5.5 - parent: 1 - type: Transform -- uid: 8599 - type: WallSolid - components: - - pos: 64.5,1.5 - parent: 1 - type: Transform -- uid: 8600 - type: WallSolid - components: - - pos: 65.5,0.5 - parent: 1 - type: Transform -- uid: 8601 - type: WallSolid - components: - - pos: 60.5,0.5 - parent: 1 - type: Transform -- uid: 8602 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,26.5 - parent: 1 - type: Transform -- uid: 8603 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 15.5,26.5 - parent: 1 - type: Transform -- uid: 8604 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 15.5,27.5 - parent: 1 - type: Transform -- uid: 8605 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 13.5,26.5 - parent: 1 - type: Transform -- uid: 8606 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 12.5,26.5 - parent: 1 - type: Transform -- uid: 8607 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 11.5,26.5 - parent: 1 - type: Transform -- uid: 8608 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 10.5,26.5 - parent: 1 - type: Transform -- uid: 8609 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 10.5,25.5 - parent: 1 - type: Transform -- uid: 8610 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 9.5,25.5 - parent: 1 - type: Transform -- uid: 8611 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 8.5,25.5 - parent: 1 - type: Transform -- uid: 8612 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 7.5,25.5 - parent: 1 - type: Transform -- uid: 8613 - type: ReinforcedWindow - components: - - pos: 6.5,25.5 - parent: 1 - type: Transform -- uid: 8614 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 5.5,25.5 - parent: 1 - type: Transform -- uid: 8615 - type: ReinforcedWindow - components: - - pos: 2.5,25.5 - parent: 1 - type: Transform -- uid: 8616 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 3.5,25.5 - parent: 1 - type: Transform -- uid: 8617 - type: WallSolid - components: - - pos: 17.5,30.5 - parent: 1 - type: Transform -- uid: 8618 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 18.5,30.5 - parent: 1 - type: Transform -- uid: 8619 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 15.5,30.5 - parent: 1 - type: Transform -- uid: 8620 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,30.5 - parent: 1 - type: Transform -- uid: 8621 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,31.5 - parent: 1 - type: Transform -- uid: 8622 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 13.5,31.5 - parent: 1 - type: Transform -- uid: 8623 - type: WallReinforced - components: - - pos: 49.5,50.5 - parent: 1 - type: Transform -- uid: 8624 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 55.5,54.5 - parent: 1 - type: Transform -- uid: 8625 - type: ReinforcedWindow - components: - - pos: 54.5,61.5 - parent: 1 - type: Transform -- uid: 8626 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,33.5 - parent: 1 - type: Transform -- uid: 8627 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 13.5,33.5 - parent: 1 - type: Transform -- uid: 8628 - type: WallReinforced - components: - - pos: -1.5,26.5 - parent: 1 - type: Transform -- uid: 8629 - type: WallReinforced - components: - - pos: 59.5,41.5 - parent: 1 - type: Transform -- uid: 8630 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 56.5,54.5 - parent: 1 - type: Transform -- uid: 8631 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 14.5,34.5 - parent: 1 - type: Transform -- uid: 8632 - type: RandomSpawner - components: - - pos: 49.5,32.5 - parent: 1 - type: Transform -- uid: 8633 - type: CableHV - components: - - pos: -10.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8634 - type: ReinforcedWindow - components: - - pos: 18.5,32.5 - parent: 1 - type: Transform -- uid: 8635 - type: ReinforcedWindow - components: - - pos: 18.5,33.5 - parent: 1 - type: Transform -- uid: 8636 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 18.5,31.5 - parent: 1 - type: Transform -- uid: 8637 - type: AirlockMaintGlassLocked - components: - - pos: 51.5,31.5 - parent: 1 - type: Transform -- uid: 8638 - type: FoodFrozenPopsicleTrash - components: - - rot: -1.5707963267948966 rad - pos: 50.420345,33.45428 - parent: 1 - type: Transform -- uid: 8639 - type: RandomSpawner - components: - - pos: 49.5,33.5 - parent: 1 - type: Transform -- uid: 8640 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: -13.5,45.5 - parent: 1 - type: Transform -- uid: 8641 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: -13.5,46.5 - parent: 1 - type: Transform -- uid: 8642 - type: CableHV - components: - - pos: -14.5,35.5 - parent: 1 - type: Transform -- uid: 8643 - type: Window - components: - - pos: -8.5,43.5 - parent: 1 - type: Transform -- uid: 8644 - type: TrashBananaPeel - components: - - pos: 48.49847,33.344906 - parent: 1 - type: Transform -- uid: 8645 - type: CableHV - components: - - pos: -9.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8646 - type: DoorElectronics - components: - - pos: -9.437697,39.446274 - parent: 1 - type: Transform -- uid: 8647 - type: FirelockElectronics - components: - - pos: -8.422072,39.102524 - parent: 1 - type: Transform -- uid: 8648 - type: DoorElectronics - components: - - pos: -9.640822,39.74315 - parent: 1 - type: Transform -- uid: 8649 - type: AirAlarmElectronics - components: - - pos: -8.750197,39.61815 - parent: 1 - type: Transform -- uid: 8650 - type: TableReinforced - components: - - pos: -11.5,43.5 - parent: 1 - type: Transform -- uid: 8651 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,47.5 - parent: 1 - type: Transform -- uid: 8652 - type: CableHV - components: - - pos: -20.5,29.5 - parent: 1 - type: Transform -- uid: 8653 - type: CableHV - components: - - pos: -18.5,29.5 - parent: 1 - type: Transform -- uid: 8654 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -9.5,43.5 - parent: 1 - type: Transform -- uid: 8655 - type: CableHV - components: - - pos: -20.5,28.5 - parent: 1 - type: Transform -- uid: 8656 - type: TrashBananaPeel - components: - - pos: 50.451595,31.673027 - parent: 1 - type: Transform -- uid: 8657 - type: CableHV - components: - - pos: -14.5,31.5 - parent: 1 - type: Transform -- uid: 8658 - type: RandomSpawner - components: - - pos: 50.5,32.5 - parent: 1 - type: Transform -- uid: 8659 - type: FireAlarm - components: - - pos: -29.5,-15.5 - parent: 1 - type: Transform - - devices: - - invalid - - 21554 - - 12335 - - 13592 - - 13593 - - 16028 - - 16027 - - 21438 - - 16035 - - 16036 - type: DeviceList -- uid: 8660 - type: FoodCornTrash - components: - - rot: -1.5707963267948966 rad - pos: 48.732845,33.42303 - parent: 1 - type: Transform -- uid: 8661 - type: RandomSpawner - components: - - pos: 48.5,32.5 - parent: 1 - type: Transform -- uid: 8662 - type: ComputerFrame - components: - - pos: 51.5,35.5 - parent: 1 - type: Transform -- uid: 8663 - type: CableHV - components: - - pos: -19.5,29.5 - parent: 1 - type: Transform -- uid: 8664 - type: CableHV - components: - - pos: -14.5,33.5 - parent: 1 - type: Transform -- uid: 8665 - type: WallReinforced - components: - - pos: 10.5,29.5 - parent: 1 - type: Transform -- uid: 8666 - type: WallReinforced - components: - - pos: 11.5,34.5 - parent: 1 - type: Transform -- uid: 8667 - type: WallReinforced - components: - - pos: 5.5,35.5 - parent: 1 - type: Transform -- uid: 8668 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,48.5 - parent: 1 - type: Transform -- uid: 8669 - type: Table - components: - - pos: 53.5,35.5 - parent: 1 - type: Transform -- uid: 8670 - type: WallSolid - components: - - pos: 47.5,34.5 - parent: 1 - type: Transform -- uid: 8671 - type: WallSolid - components: - - pos: 47.5,33.5 - parent: 1 - type: Transform -- uid: 8672 - type: WallSolid - components: - - pos: 47.5,31.5 - parent: 1 - type: Transform -- uid: 8673 - type: RandomSpawner - components: - - pos: 50.5,33.5 - parent: 1 - type: Transform -- uid: 8674 - type: WallReinforced - components: - - pos: 18.5,34.5 - parent: 1 - type: Transform -- uid: 8675 - type: CableHV - components: - - pos: -20.5,26.5 - parent: 1 - type: Transform -- uid: 8676 - type: CableHV - components: - - pos: -20.5,27.5 - parent: 1 - type: Transform -- uid: 8677 - type: CableHV - components: - - pos: -14.5,39.5 - parent: 1 - type: Transform -- uid: 8678 - type: TableWood - components: - - pos: -17.5,41.5 - parent: 1 - type: Transform -- uid: 8679 - type: CableMV - components: - - pos: -13.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8680 - type: CableMV - components: - - pos: -14.5,42.5 - parent: 1 - type: Transform -- uid: 8681 - type: APCBasic - components: - - rot: -1.5707963267948966 rad - pos: -13.5,42.5 - parent: 1 - type: Transform -- uid: 8682 - type: WallSolid - components: - - pos: -9.5,47.5 - parent: 1 - type: Transform -- uid: 8683 - type: WallSolid - components: - - pos: -10.5,47.5 - parent: 1 - type: Transform -- uid: 8684 - type: Table - components: - - pos: 54.5,35.5 - parent: 1 - type: Transform -- uid: 8685 - type: FoodPlateTrash - components: - - pos: 49.46722,33.501156 - parent: 1 - type: Transform -- uid: 8686 - type: CableApcExtension - components: - - pos: -13.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8687 - type: CableHV - components: - - pos: -14.5,40.5 - parent: 1 - type: Transform -- uid: 8688 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -10.5,48.5 - parent: 1 - type: Transform -- uid: 8689 - type: CableHV - components: - - pos: -9.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8690 - type: CableHV - components: - - pos: -9.5,29.5 - parent: 1 - type: Transform -- uid: 8691 - type: CableHV - components: - - pos: -8.5,29.5 - parent: 1 - type: Transform -- uid: 8692 - type: CableHV - components: - - pos: -8.5,30.5 - parent: 1 - type: Transform -- uid: 8693 - type: CableHV - components: - - pos: -8.5,31.5 - parent: 1 - type: Transform -- uid: 8694 - type: CableHV - components: - - pos: 16.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8695 - type: CableHV - components: - - pos: 16.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8696 - type: CableHV - components: - - pos: 16.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8697 - type: CableHV - components: - - pos: 17.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8698 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 7.5,35.5 - parent: 1 - type: Transform -- uid: 8699 - type: WallReinforced - components: - - pos: 10.5,35.5 - parent: 1 - type: Transform -- uid: 8700 - type: WallReinforced - components: - - pos: 11.5,30.5 - parent: 1 - type: Transform -- uid: 8701 - type: Grille - components: - - pos: 37.5,-36.5 - parent: 1 - type: Transform -- uid: 8702 - type: AirSensor - components: - - pos: 36.5,-27.5 - parent: 1 - type: Transform -- uid: 8703 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8704 - type: CarpetPink - components: - - pos: 23.5,-29.5 - parent: 1 - type: Transform -- uid: 8705 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8706 - type: CarpetPink - components: - - pos: 22.5,-29.5 - parent: 1 - type: Transform -- uid: 8707 - type: Dresser - components: - - pos: 23.5,-34.5 - parent: 1 - type: Transform -- uid: 8708 - type: ReinforcedWindow - components: - - pos: 4.5,25.5 - parent: 1 - type: Transform -- uid: 8709 - type: WallReinforced - components: - - pos: 1.5,25.5 - parent: 1 - type: Transform -- uid: 8710 - type: WallReinforced - components: - - pos: 0.5,25.5 - parent: 1 - type: Transform -- uid: 8711 - type: WallReinforced - components: - - pos: -0.5,25.5 - parent: 1 - type: Transform -- uid: 8712 - type: WallReinforced - components: - - pos: -1.5,25.5 - parent: 1 - type: Transform -- uid: 8713 - type: WallReinforced - components: - - pos: -1.5,28.5 - parent: 1 - type: Transform -- uid: 8714 - type: WallReinforced - components: - - pos: -3.5,25.5 - parent: 1 - type: Transform -- uid: 8715 - type: WallReinforced - components: - - pos: -3.5,24.5 - parent: 1 - type: Transform -- uid: 8716 - type: WallSolid - components: - - pos: -3.5,20.5 - parent: 1 - type: Transform -- uid: 8717 - type: WallSolid - components: - - pos: -4.5,20.5 - parent: 1 - type: Transform -- uid: 8718 - type: WallSolid - components: - - pos: -5.5,20.5 - parent: 1 - type: Transform -- uid: 8719 - type: WallSolid - components: - - pos: -6.5,20.5 - parent: 1 - type: Transform -- uid: 8720 - type: WallSolid - components: - - pos: -7.5,20.5 - parent: 1 - type: Transform -- uid: 8721 - type: WallSolid - components: - - pos: -7.5,19.5 - parent: 1 - type: Transform -- uid: 8722 - type: WallSolid - components: - - pos: -8.5,19.5 - parent: 1 - type: Transform -- uid: 8723 - type: WallSolid - components: - - pos: -9.5,19.5 - parent: 1 - type: Transform -- uid: 8724 - type: WallSolid - components: - - pos: -9.5,20.5 - parent: 1 - type: Transform -- uid: 8725 - type: AirlockMaintGlass - components: - - rot: 3.141592653589793 rad - pos: -8.5,25.5 - parent: 1 - type: Transform -- uid: 8726 - type: CableApcExtension - components: - - pos: -7.5,-8.5 - parent: 1 - type: Transform -- uid: 8727 - type: WindowReinforcedDirectional - components: - - pos: -10.5,29.5 - parent: 1 - type: Transform -- uid: 8728 - type: WindowReinforcedDirectional - components: - - pos: -9.5,29.5 - parent: 1 - type: Transform -- uid: 8729 - type: WallSolid - components: - - pos: -11.5,20.5 - parent: 1 - type: Transform -- uid: 8730 - type: WallReinforced - components: - - pos: 59.5,48.5 - parent: 1 - type: Transform -- uid: 8731 - type: WallSolid - components: - - pos: -11.5,19.5 - parent: 1 - type: Transform -- uid: 8732 - type: Grille - components: - - pos: 33.5,37.5 - parent: 1 - type: Transform -- uid: 8733 - type: Grille - components: - - pos: 32.5,37.5 - parent: 1 - type: Transform -- uid: 8734 - type: Grille - components: - - pos: 31.5,37.5 - parent: 1 - type: Transform -- uid: 8735 - type: Grille - components: - - pos: 30.5,37.5 - parent: 1 - type: Transform -- uid: 8736 - type: Grille - components: - - pos: 29.5,37.5 - parent: 1 - type: Transform -- uid: 8737 - type: Grille - components: - - pos: 28.5,37.5 - parent: 1 - type: Transform -- uid: 8738 - type: Grille - components: - - pos: 27.5,37.5 - parent: 1 - type: Transform -- uid: 8739 - type: Grille - components: - - pos: 26.5,37.5 - parent: 1 - type: Transform -- uid: 8740 - type: Grille - components: - - pos: 25.5,37.5 - parent: 1 - type: Transform -- uid: 8741 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 23.5,37.5 - parent: 1 - type: Transform -- uid: 8742 - type: AirSensor - components: - - pos: -20.5,-67.5 - parent: 1 - type: Transform -- uid: 8743 - type: AirSensor - components: - - pos: -18.5,-71.5 - parent: 1 - type: Transform -- uid: 8744 - type: AirSensor - components: - - pos: -25.5,-80.5 - parent: 1 - type: Transform -- uid: 8745 - type: AirSensor - components: - - pos: -19.5,-79.5 - parent: 1 - type: Transform -- uid: 8746 - type: AirSensor - components: - - pos: -20.5,-86.5 - parent: 1 - type: Transform -- uid: 8747 - type: AirSensor - components: - - pos: -6.5,-64.5 - parent: 1 - type: Transform -- uid: 8748 - type: AirSensor - components: - - pos: -3.5,-63.5 - parent: 1 - type: Transform -- uid: 8749 - type: AirSensor - components: - - pos: 4.5,-65.5 - parent: 1 - type: Transform -- uid: 8750 - type: AirSensor - components: - - pos: 8.5,-60.5 - parent: 1 - type: Transform -- uid: 8751 - type: AirSensor - components: - - pos: 6.5,-49.5 - parent: 1 - type: Transform -- uid: 8752 - type: AirSensor - components: - - pos: -10.5,-38.5 - parent: 1 - type: Transform -- uid: 8753 - type: AirSensor - components: - - pos: -9.5,-33.5 - parent: 1 - type: Transform -- uid: 8754 - type: AirSensor - components: - - pos: -9.5,-23.5 - parent: 1 - type: Transform -- uid: 8755 - type: AirSensor - components: - - pos: 14.5,-27.5 - parent: 1 - type: Transform -- uid: 8756 - type: AirSensor - components: - - pos: 6.5,-27.5 - parent: 1 - type: Transform -- uid: 8757 - type: AirSensor - components: - - pos: -5.5,-28.5 - parent: 1 - type: Transform -- uid: 8758 - type: AirSensor - components: - - pos: -3.5,-7.5 - parent: 1 - type: Transform -- uid: 8759 - type: AirSensor - components: - - pos: -5.5,2.5 - parent: 1 - type: Transform -- uid: 8760 - type: AirSensor - components: - - pos: 6.5,-0.5 - parent: 1 - type: Transform -- uid: 8761 - type: AirSensor - components: - - pos: 11.5,11.5 - parent: 1 - type: Transform -- uid: 8762 - type: AirSensor - components: - - pos: 4.5,13.5 - parent: 1 - type: Transform -- uid: 8763 - type: AirSensor - components: - - pos: 6.5,7.5 - parent: 1 - type: Transform -- uid: 8764 - type: VendingMachineChefDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 0.5,14.5 - parent: 1 - type: Transform -- uid: 8765 - type: AirSensor - components: - - pos: -2.5,10.5 - parent: 1 - type: Transform -- uid: 8766 - type: AirSensor - components: - - pos: -10.5,6.5 - parent: 1 - type: Transform -- uid: 8767 - type: IntercomSecurity - components: - - rot: 1.5707963267948966 rad - pos: -2.5,18.5 - parent: 1 - type: Transform -- uid: 8768 - type: AirSensor - components: - - pos: 7.5,19.5 - parent: 1 - type: Transform -- uid: 8769 - type: AirSensor - components: - - pos: 18.5,20.5 - parent: 1 - type: Transform -- uid: 8770 - type: AirSensor - components: - - pos: 11.5,22.5 - parent: 1 - type: Transform -- uid: 8771 - type: AirSensor - components: - - pos: 20.5,20.5 - parent: 1 - type: Transform -- uid: 8772 - type: BoxHandcuff - components: - - pos: 24.25829,23.575323 - parent: 1 - type: Transform -- uid: 8773 - type: MedkitFilled - components: - - pos: 24.82079,23.494219 - parent: 1 - type: Transform -- uid: 8774 - type: Stunbaton - components: - - pos: 8.262076,12.8623 - parent: 1 - type: Transform - - nextAttack: 360.2704274 - type: MeleeWeapon -- uid: 8775 - type: AirlockMaintSecLocked - components: - - name: brig - type: MetaData - - pos: 31.5,21.5 - parent: 1 - type: Transform -- uid: 8776 - type: WallSolid - components: - - pos: 33.5,23.5 - parent: 1 - type: Transform -- uid: 8777 - type: WallReinforced - components: - - pos: 34.5,26.5 - parent: 1 - type: Transform -- uid: 8778 - type: WallReinforced - components: - - pos: 34.5,25.5 - parent: 1 - type: Transform -- uid: 8779 - type: WallReinforced - components: - - pos: 34.5,24.5 - parent: 1 - type: Transform -- uid: 8780 - type: WallSolid - components: - - pos: 34.5,23.5 - parent: 1 - type: Transform -- uid: 8781 - type: AirlockEngineeringLocked - components: - - name: substation - type: MetaData - - pos: 32.5,23.5 - parent: 1 - type: Transform -- uid: 8782 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 37.5,21.5 - parent: 1 - type: Transform -- uid: 8783 - type: WallReinforced - components: - - pos: 36.5,21.5 - parent: 1 - type: Transform -- uid: 8784 - type: WallReinforced - components: - - pos: 33.5,21.5 - parent: 1 - type: Transform -- uid: 8785 - type: WallReinforced - components: - - pos: 33.5,20.5 - parent: 1 - type: Transform -- uid: 8786 - type: WallSolid - components: - - pos: 33.5,17.5 - parent: 1 - type: Transform -- uid: 8787 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 37.5,22.5 - parent: 1 - type: Transform -- uid: 8788 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 38.5,22.5 - parent: 1 - type: Transform -- uid: 8789 - type: WallReinforced - components: - - pos: 35.5,21.5 - parent: 1 - type: Transform -- uid: 8790 - type: CableApcExtension - components: - - pos: 34.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8791 - type: CableApcExtension - components: - - pos: 35.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 8792 - type: Chair - components: - - pos: 35.5,19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8793 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 35.5,17.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8794 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 37.5,19.5 - parent: 1 - type: Transform -- uid: 8795 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 39.5,22.5 - parent: 1 - type: Transform -- uid: 8796 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 40.5,22.5 - parent: 1 - type: Transform -- uid: 8797 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 37.5,18.5 - parent: 1 - type: Transform -- uid: 8798 - type: AirlockGlass - components: - - name: visitor meeting - type: MetaData - - rot: 3.141592653589793 rad - pos: 37.5,20.5 - parent: 1 - type: Transform -- uid: 8799 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 35.5,24.5 - parent: 1 - type: Transform -- uid: 8800 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 36.5,24.5 - parent: 1 - type: Transform -- uid: 8801 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 37.5,24.5 - parent: 1 - type: Transform -- uid: 8802 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 38.5,24.5 - parent: 1 - type: Transform -- uid: 8803 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 39.5,24.5 - parent: 1 - type: Transform -- uid: 8804 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 40.5,24.5 - parent: 1 - type: Transform -- uid: 8805 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 51.5,14.5 - parent: 1 - type: Transform -- uid: 8806 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 55.5,14.5 - parent: 1 - type: Transform -- uid: 8807 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 55.5,10.5 - parent: 1 - type: Transform -- uid: 8808 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 51.5,10.5 - parent: 1 - type: Transform -- uid: 8809 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 52.5,14.5 - parent: 1 - type: Transform -- uid: 8810 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 53.5,14.5 - parent: 1 - type: Transform -- uid: 8811 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 54.5,14.5 - parent: 1 - type: Transform -- uid: 8812 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 51.5,13.5 - parent: 1 - type: Transform -- uid: 8813 - type: AirlockBrigGlassLocked - components: - - name: open prison - type: MetaData - - rot: -1.5707963267948966 rad - pos: 46.5,15.5 - parent: 1 - type: Transform -- uid: 8814 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 51.5,11.5 - parent: 1 - type: Transform -- uid: 8815 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 52.5,10.5 - parent: 1 - type: Transform -- uid: 8816 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 54.5,10.5 - parent: 1 - type: Transform -- uid: 8817 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 55.5,11.5 - parent: 1 - type: Transform -- uid: 8818 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 55.5,12.5 - parent: 1 - type: Transform -- uid: 8819 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 55.5,13.5 - parent: 1 - type: Transform -- uid: 8820 - type: ComputerSurveillanceCameraMonitor - components: - - pos: 53.5,13.5 - parent: 1 - type: Transform -- uid: 8821 - type: ComputerCrewMonitoring - components: - - pos: 54.5,13.5 - parent: 1 - type: Transform -- uid: 8822 - type: ChairOfficeLight - components: - - rot: 3.141592653589793 rad - pos: 53.5,12.5 - parent: 1 - type: Transform -- uid: 8823 - type: SpawnMobMouse - components: - - pos: 49.5,-33.5 - parent: 1 - type: Transform -- uid: 8824 - type: RailingCorner - components: - - rot: 3.141592653589793 rad - pos: 51.5,19.5 - parent: 1 - type: Transform -- uid: 8825 - type: RailingCorner - components: - - rot: 1.5707963267948966 rad - pos: 55.5,19.5 - parent: 1 - type: Transform -- uid: 8826 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 54.5,19.5 - parent: 1 - type: Transform -- uid: 8827 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 53.5,19.5 - parent: 1 - type: Transform -- uid: 8828 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 52.5,19.5 - parent: 1 - type: Transform -- uid: 8829 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 51.5,18.5 - parent: 1 - type: Transform -- uid: 8830 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 51.5,17.5 - parent: 1 - type: Transform -- uid: 8831 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 51.5,15.5 - parent: 1 - type: Transform -- uid: 8832 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 55.5,18.5 - parent: 1 - type: Transform -- uid: 8833 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 55.5,17.5 - parent: 1 - type: Transform -- uid: 8834 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 55.5,15.5 - parent: 1 - type: Transform -- uid: 8835 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 54.5,18.5 - parent: 1 - type: Transform -- uid: 8836 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 53.5,18.5 - parent: 1 - type: Transform -- uid: 8837 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 52.5,18.5 - parent: 1 - type: Transform -- uid: 8838 - type: KitchenMicrowave - components: - - pos: 52.5,18.5 - parent: 1 - type: Transform -- uid: 8839 - type: KitchenReagentGrinder - components: - - pos: 53.5,18.5 - parent: 1 - type: Transform -- uid: 8840 - type: ReagentContainerFlour - components: - - pos: 54.086075,18.83411 - parent: 1 - type: Transform -- uid: 8841 - type: ReagentContainerFlour - components: - - pos: 53.9767,18.568485 - parent: 1 - type: Transform -- uid: 8842 - type: ReagentContainerFlour - components: - - pos: 54.2892,18.568485 - parent: 1 - type: Transform -- uid: 8843 - type: WaterCooler - components: - - pos: 55.398575,18.5843 - parent: 1 - type: Transform -- uid: 8844 - type: Bucket - components: - - pos: 55.336075,17.733736 - parent: 1 - type: Transform -- uid: 8845 - type: ReinforcedWindow - components: - - pos: 48.5,3.5 - parent: 1 - type: Transform -- uid: 8846 - type: WallReinforced - components: - - pos: 45.5,3.5 - parent: 1 - type: Transform -- uid: 8847 - type: WallSolid - components: - - pos: 61.5,6.5 - parent: 1 - type: Transform -- uid: 8848 - type: AirlockGlass - components: - - name: open library - type: MetaData - - pos: 43.5,19.5 - parent: 1 - type: Transform -- uid: 8849 - type: AirlockGlass - components: - - name: open library - type: MetaData - - pos: 43.5,20.5 - parent: 1 - type: Transform -- uid: 8850 - type: WallSolid - components: - - pos: 43.5,18.5 - parent: 1 - type: Transform -- uid: 8851 - type: WallSolid - components: - - pos: 43.5,21.5 - parent: 1 - type: Transform -- uid: 8852 - type: LockerSecurity - components: - - pos: 52.5,13.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8853 - type: CableMV - components: - - pos: -19.5,23.5 - parent: 1 - type: Transform -- uid: 8854 - type: CableMV - components: - - pos: -19.5,22.5 - parent: 1 - type: Transform -- uid: 8855 - type: Window - components: - - pos: 35.5,-4.5 - parent: 1 - type: Transform -- uid: 8856 - type: WallSolid - components: - - pos: 44.5,-0.5 - parent: 1 - type: Transform -- uid: 8857 - type: AirlockEngineeringLocked - components: - - pos: 46.5,-0.5 - parent: 1 - type: Transform -- uid: 8858 - type: WallSolid - components: - - pos: 47.5,-0.5 - parent: 1 - type: Transform -- uid: 8859 - type: WallSolid - components: - - pos: 48.5,24.5 - parent: 1 - type: Transform -- uid: 8860 - type: WallSolid - components: - - pos: 48.5,23.5 - parent: 1 - type: Transform -- uid: 8861 - type: WallSolid - components: - - pos: 48.5,22.5 - parent: 1 - type: Transform -- uid: 8862 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 46.5,25.5 - parent: 1 - type: Transform -- uid: 8863 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 61.5,25.5 - parent: 1 - type: Transform -- uid: 8864 - type: WallSolid - components: - - pos: 51.5,24.5 - parent: 1 - type: Transform -- uid: 8865 - type: WallSolid - components: - - pos: 51.5,23.5 - parent: 1 - type: Transform -- uid: 8866 - type: WallSolid - components: - - pos: 51.5,22.5 - parent: 1 - type: Transform -- uid: 8867 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 59.5,25.5 - parent: 1 - type: Transform -- uid: 8868 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 58.5,25.5 - parent: 1 - type: Transform -- uid: 8869 - type: WallSolid - components: - - pos: 54.5,24.5 - parent: 1 - type: Transform -- uid: 8870 - type: WallSolid - components: - - pos: 54.5,23.5 - parent: 1 - type: Transform -- uid: 8871 - type: WallSolid - components: - - pos: 54.5,22.5 - parent: 1 - type: Transform -- uid: 8872 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 47.5,25.5 - parent: 1 - type: Transform -- uid: 8873 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 60.5,25.5 - parent: 1 - type: Transform -- uid: 8874 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 57.5,25.5 - parent: 1 - type: Transform -- uid: 8875 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 54.5,25.5 - parent: 1 - type: Transform -- uid: 8876 - type: WallSolid - components: - - pos: 57.5,24.5 - parent: 1 - type: Transform -- uid: 8877 - type: WallSolid - components: - - pos: 57.5,23.5 - parent: 1 - type: Transform -- uid: 8878 - type: WallSolid - components: - - pos: 57.5,22.5 - parent: 1 - type: Transform -- uid: 8879 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 50.5,25.5 - parent: 1 - type: Transform -- uid: 8880 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 45.5,25.5 - parent: 1 - type: Transform -- uid: 8881 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 45.5,24.5 - parent: 1 - type: Transform -- uid: 8882 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 45.5,23.5 - parent: 1 - type: Transform -- uid: 8883 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 56.5,25.5 - parent: 1 - type: Transform -- uid: 8884 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 55.5,25.5 - parent: 1 - type: Transform -- uid: 8885 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 49.5,25.5 - parent: 1 - type: Transform -- uid: 8886 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 48.5,25.5 - parent: 1 - type: Transform -- uid: 8887 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 53.5,25.5 - parent: 1 - type: Transform -- uid: 8888 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 62.5,25.5 - parent: 1 - type: Transform -- uid: 8889 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 52.5,25.5 - parent: 1 - type: Transform -- uid: 8890 - type: WallSolid - components: - - pos: 60.5,24.5 - parent: 1 - type: Transform -- uid: 8891 - type: WallSolid - components: - - pos: 60.5,23.5 - parent: 1 - type: Transform -- uid: 8892 - type: WallSolid - components: - - pos: 60.5,22.5 - parent: 1 - type: Transform -- uid: 8893 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 51.5,25.5 - parent: 1 - type: Transform -- uid: 8894 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,25.5 - parent: 1 - type: Transform -- uid: 8895 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 63.5,25.5 - parent: 1 - type: Transform -- uid: 8896 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,24.5 - parent: 1 - type: Transform -- uid: 8897 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,23.5 - parent: 1 - type: Transform -- uid: 8898 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,22.5 - parent: 1 - type: Transform -- uid: 8899 - type: WallReinforced - components: - - pos: 64.5,21.5 - parent: 1 - type: Transform -- uid: 8900 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,20.5 - parent: 1 - type: Transform -- uid: 8901 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 63.5,20.5 - parent: 1 - type: Transform -- uid: 8902 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 63.5,19.5 - parent: 1 - type: Transform -- uid: 8903 - type: WallSolid - components: - - pos: 62.5,20.5 - parent: 1 - type: Transform -- uid: 8904 - type: WallSolid - components: - - pos: 61.5,20.5 - parent: 1 - type: Transform -- uid: 8905 - type: WallSolid - components: - - pos: 60.5,20.5 - parent: 1 - type: Transform -- uid: 8906 - type: DeployableBarrier - components: - - anchored: False - pos: 32.5,19.5 - parent: 1 - type: Transform -- uid: 8907 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 45.5,22.5 - parent: 1 - type: Transform -- uid: 8908 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 44.5,22.5 - parent: 1 - type: Transform -- uid: 8909 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 43.5,22.5 - parent: 1 - type: Transform -- uid: 8910 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 31.5,5.5 - parent: 1 - type: Transform - - devices: - - 4916 - - 4231 - - 21536 - - 3418 - - 4256 - - 5609 - - 21118 - - 3412 - - 2649 - - 5066 - - 1094 - - 2934 - - 5037 - - 6615 - type: DeviceList -- uid: 8911 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 41.5,22.5 - parent: 1 - type: Transform -- uid: 8912 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 31.5,33.5 - parent: 1 - type: Transform -- uid: 8913 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 42.5,24.5 - parent: 1 - type: Transform -- uid: 8914 - type: WallReinforced - components: - - pos: 43.5,24.5 - parent: 1 - type: Transform -- uid: 8915 - type: WallReinforced - components: - - pos: 43.5,25.5 - parent: 1 - type: Transform -- uid: 8916 - type: WallReinforced - components: - - pos: 43.5,26.5 - parent: 1 - type: Transform -- uid: 8917 - type: WallReinforced - components: - - pos: 43.5,27.5 - parent: 1 - type: Transform -- uid: 8918 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 46.5,27.5 - parent: 1 - type: Transform -- uid: 8919 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 45.5,27.5 - parent: 1 - type: Transform -- uid: 8920 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 44.5,27.5 - parent: 1 - type: Transform -- uid: 8921 - type: WallReinforced - components: - - pos: 51.5,59.5 - parent: 1 - type: Transform -- uid: 8922 - type: WallReinforced - components: - - pos: 50.5,59.5 - parent: 1 - type: Transform -- uid: 8923 - type: WallReinforced - components: - - pos: 50.5,55.5 - parent: 1 - type: Transform -- uid: 8924 - type: WallReinforced - components: - - pos: 51.5,55.5 - parent: 1 - type: Transform -- uid: 8925 - type: WallReinforced - components: - - pos: 51.5,54.5 - parent: 1 - type: Transform -- uid: 8926 - type: WallReinforced - components: - - pos: 57.5,54.5 - parent: 1 - type: Transform -- uid: 8927 - type: WallReinforced - components: - - pos: 57.5,55.5 - parent: 1 - type: Transform -- uid: 8928 - type: WallReinforced - components: - - pos: 57.5,59.5 - parent: 1 - type: Transform -- uid: 8929 - type: WallReinforced - components: - - pos: 58.5,59.5 - parent: 1 - type: Transform -- uid: 8930 - type: WallReinforced - components: - - pos: 58.5,55.5 - parent: 1 - type: Transform -- uid: 8931 - type: WallReinforced - components: - - pos: 51.5,60.5 - parent: 1 - type: Transform -- uid: 8932 - type: WallReinforced - components: - - pos: 52.5,60.5 - parent: 1 - type: Transform -- uid: 8933 - type: WallReinforced - components: - - pos: 52.5,61.5 - parent: 1 - type: Transform -- uid: 8934 - type: WallReinforced - components: - - pos: 56.5,61.5 - parent: 1 - type: Transform -- uid: 8935 - type: WallReinforced - components: - - pos: 56.5,60.5 - parent: 1 - type: Transform -- uid: 8936 - type: OxygenCanister - components: - - pos: 59.5,29.5 - parent: 1 - type: Transform -- uid: 8937 - type: AirlockEngineeringLocked - components: - - pos: 63.5,27.5 - parent: 1 - type: Transform -- uid: 8938 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 53.5,54.5 - parent: 1 - type: Transform -- uid: 8939 - type: WallReinforced - components: - - pos: 65.5,27.5 - parent: 1 - type: Transform -- uid: 8940 - type: WindowReinforcedDirectional - components: - - pos: 46.5,22.5 - parent: 1 - type: Transform -- uid: 8941 - type: HospitalCurtains - components: - - pos: 60.5,21.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -465908.4 - state: Opening - type: Door -- uid: 8942 - type: WindoorSecure - components: - - pos: 59.5,22.5 - parent: 1 - type: Transform -- uid: 8943 - type: WindoorSecure - components: - - pos: 56.5,22.5 - parent: 1 - type: Transform -- uid: 8944 - type: WindoorSecure - components: - - pos: 53.5,22.5 - parent: 1 - type: Transform -- uid: 8945 - type: WindoorSecure - components: - - pos: 50.5,22.5 - parent: 1 - type: Transform -- uid: 8946 - type: WindoorSecure - components: - - pos: 47.5,22.5 - parent: 1 - type: Transform -- uid: 8947 - type: Bed - components: - - pos: 55.5,24.5 - parent: 1 - type: Transform -- uid: 8948 - type: WardrobePrisonFilled - components: - - pos: 55.5,22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8949 - type: Bed - components: - - pos: 52.5,24.5 - parent: 1 - type: Transform -- uid: 8950 - type: Table - components: - - pos: 62.5,18.5 - parent: 1 - type: Transform -- uid: 8951 - type: Bed - components: - - pos: 49.5,24.5 - parent: 1 - type: Transform -- uid: 8952 - type: Table - components: - - pos: 62.5,15.5 - parent: 1 - type: Transform -- uid: 8953 - type: Bed - components: - - pos: 46.5,24.5 - parent: 1 - type: Transform -- uid: 8954 - type: Table - components: - - pos: 59.5,24.5 - parent: 1 - type: Transform -- uid: 8955 - type: Bed - components: - - pos: 58.5,24.5 - parent: 1 - type: Transform -- uid: 8956 - type: ClothingOuterCoatJensen - components: - - pos: 62.5886,15.642659 - parent: 1 - type: Transform - - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 8957 - type: ContainerContainer -- uid: 8957 - type: CheapLighter - components: - - flags: InContainer - type: MetaData - - parent: 8956 - type: Transform - - canCollide: False - type: Physics -- uid: 8958 - type: BedsheetOrange - components: - - pos: 58.5,24.5 - parent: 1 - type: Transform -- uid: 8959 - type: MaterialWoodPlank1 - components: - - pos: 50.46261,24.730665 - parent: 1 - type: Transform -- uid: 8960 - type: BedsheetOrange - components: - - pos: 55.5,24.5 - parent: 1 - type: Transform -- uid: 8961 - type: ClothingOuterCoatGentle - components: - - pos: 59.512882,24.492107 - parent: 1 - type: Transform -- uid: 8962 - type: BedsheetOrange - components: - - pos: 52.5,24.5 - parent: 1 - type: Transform -- uid: 8963 - type: WardrobePrisonFilled - components: - - pos: 52.5,22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8964 - type: BedsheetOrange - components: - - pos: 49.5,24.5 - parent: 1 - type: Transform -- uid: 8965 - type: WardrobePrisonFilled - components: - - pos: 49.5,22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8966 - type: BedsheetOrange - components: - - pos: 46.5,24.5 - parent: 1 - type: Transform -- uid: 8967 - type: WardrobePrisonFilled - components: - - pos: 46.5,22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 8968 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 59.5,21.5 - parent: 1 - type: Transform -- uid: 8969 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 56.5,21.5 - parent: 1 - type: Transform -- uid: 8970 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 53.5,21.5 - parent: 1 - type: Transform -- uid: 8971 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 50.5,21.5 - parent: 1 - type: Transform -- uid: 8972 - type: FirelockEdge - components: - - rot: 3.141592653589793 rad - pos: 47.5,21.5 - parent: 1 - type: Transform -- uid: 8973 - type: ToiletEmpty - components: - - pos: 61.5,24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 8974 - type: ToiletEmpty - components: - - pos: 63.5,24.5 - parent: 1 - type: Transform - - defaultTarget: start - type: Construction - - bodyType: Static - type: Physics -- uid: 8975 - type: WallSolid - components: - - pos: 62.5,24.5 - parent: 1 - type: Transform -- uid: 8976 - type: WallSolid - components: - - pos: 62.5,23.5 - parent: 1 - type: Transform -- uid: 8977 - type: SinkWide - components: - - rot: 3.141592653589793 rad - pos: 62.5,21.5 - parent: 1 - type: Transform -- uid: 8978 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 48.5,11.5 - parent: 1 - type: Transform -- uid: 8979 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 48.5,17.5 - parent: 1 - type: Transform -- uid: 8980 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 58.5,17.5 - parent: 1 - type: Transform -- uid: 8981 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 58.5,11.5 - parent: 1 - type: Transform -- uid: 8982 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 61.5,12.5 - parent: 1 - type: Transform -- uid: 8983 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 61.5,11.5 - parent: 1 - type: Transform -- uid: 8984 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 61.5,10.5 - parent: 1 - type: Transform -- uid: 8985 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 61.5,9.5 - parent: 1 - type: Transform -- uid: 8986 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 61.5,8.5 - parent: 1 - type: Transform -- uid: 8987 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 62.5,8.5 - parent: 1 - type: Transform -- uid: 8988 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 63.5,8.5 - parent: 1 - type: Transform -- uid: 8989 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,13.5 - parent: 1 - type: Transform -- uid: 8990 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,12.5 - parent: 1 - type: Transform -- uid: 8991 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,11.5 - parent: 1 - type: Transform -- uid: 8992 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,10.5 - parent: 1 - type: Transform -- uid: 8993 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,8.5 - parent: 1 - type: Transform -- uid: 8994 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,9.5 - parent: 1 - type: Transform -- uid: 8995 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,7.5 - parent: 1 - type: Transform -- uid: 8996 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,6.5 - parent: 1 - type: Transform -- uid: 8997 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 63.5,12.5 - parent: 1 - type: Transform -- uid: 8998 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 63.5,10.5 - parent: 1 - type: Transform -- uid: 8999 - type: HospitalCurtains - components: - - rot: 3.141592653589793 rad - pos: 60.5,13.5 - parent: 1 - type: Transform -- uid: 9000 - type: SinkWide - components: - - pos: 63.5,13.5 - parent: 1 - type: Transform -- uid: 9001 - type: SinkWide - components: - - pos: 63.5,11.5 - parent: 1 - type: Transform -- uid: 9002 - type: SinkWide - components: - - pos: 63.5,9.5 - parent: 1 - type: Transform -- uid: 9003 - type: BedsheetOrange - components: - - pos: 62.5,19.5 - parent: 1 - type: Transform -- uid: 9004 - type: Table - components: - - pos: 47.5,24.5 - parent: 1 - type: Transform -- uid: 9005 - type: BedsheetOrange - components: - - pos: 62.5,16.5 - parent: 1 - type: Transform -- uid: 9006 - type: Table - components: - - pos: 53.5,24.5 - parent: 1 - type: Transform -- uid: 9007 - type: Bed - components: - - pos: 62.5,19.5 - parent: 1 - type: Transform -- uid: 9008 - type: Table - components: - - pos: 50.5,24.5 - parent: 1 - type: Transform -- uid: 9009 - type: Bed - components: - - pos: 62.5,16.5 - parent: 1 - type: Transform -- uid: 9010 - type: Table - components: - - pos: 56.5,24.5 - parent: 1 - type: Transform -- uid: 9011 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 60.5,19.5 - parent: 1 - type: Transform -- uid: 9012 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 60.5,16.5 - parent: 1 - type: Transform -- uid: 9013 - type: WindoorSecure - components: - - rot: -1.5707963267948966 rad - pos: 60.5,18.5 - parent: 1 - type: Transform -- uid: 9014 - type: WindoorSecure - components: - - rot: -1.5707963267948966 rad - pos: 60.5,15.5 - parent: 1 - type: Transform -- uid: 9015 - type: Bookshelf - components: - - pos: 41.5,21.5 - parent: 1 - type: Transform -- uid: 9016 - type: Bookshelf - components: - - pos: 39.5,21.5 - parent: 1 - type: Transform -- uid: 9017 - type: Bookshelf - components: - - pos: 41.5,18.5 - parent: 1 - type: Transform -- uid: 9018 - type: Bookshelf - components: - - pos: 39.5,18.5 - parent: 1 - type: Transform -- uid: 9019 - type: TableWood - components: - - pos: 40.5,21.5 - parent: 1 - type: Transform -- uid: 9020 - type: TableWood - components: - - pos: 38.5,21.5 - parent: 1 - type: Transform -- uid: 9021 - type: TableWood - components: - - pos: 38.5,18.5 - parent: 1 - type: Transform -- uid: 9022 - type: TableWood - components: - - pos: 40.5,18.5 - parent: 1 - type: Transform -- uid: 9023 - type: WallReinforced - components: - - pos: 66.5,27.5 - parent: 1 - type: Transform -- uid: 9024 - type: WallReinforced - components: - - pos: 66.5,27.5 - parent: 1 - type: Transform -- uid: 9025 - type: WallReinforced - components: - - pos: 66.5,26.5 - parent: 1 - type: Transform -- uid: 9026 - type: AirCanister - components: - - pos: 60.5,29.5 - parent: 1 - type: Transform -- uid: 9027 - type: WallReinforced - components: - - pos: 66.5,24.5 - parent: 1 - type: Transform -- uid: 9028 - type: SignPrison - components: - - pos: 39.5,24.5 - parent: 1 - type: Transform -- uid: 9029 - type: WallReinforced - components: - - pos: 66.5,22.5 - parent: 1 - type: Transform -- uid: 9030 - type: WallReinforced - components: - - pos: 66.5,21.5 - parent: 1 - type: Transform -- uid: 9031 - type: WallReinforced - components: - - pos: 66.5,20.5 - parent: 1 - type: Transform -- uid: 9032 - type: WallReinforced - components: - - pos: 66.5,19.5 - parent: 1 - type: Transform -- uid: 9033 - type: WallReinforced - components: - - pos: 66.5,18.5 - parent: 1 - type: Transform -- uid: 9034 - type: WallReinforced - components: - - pos: 65.5,18.5 - parent: 1 - type: Transform -- uid: 9035 - type: WallReinforced - components: - - pos: 65.5,17.5 - parent: 1 - type: Transform -- uid: 9036 - type: WallReinforced - components: - - pos: 65.5,16.5 - parent: 1 - type: Transform -- uid: 9037 - type: WallReinforced - components: - - pos: 66.5,16.5 - parent: 1 - type: Transform -- uid: 9038 - type: WallReinforced - components: - - pos: 66.5,15.5 - parent: 1 - type: Transform -- uid: 9039 - type: WallReinforced - components: - - pos: 66.5,14.5 - parent: 1 - type: Transform -- uid: 9040 - type: WallReinforced - components: - - pos: 66.5,13.5 - parent: 1 - type: Transform -- uid: 9041 - type: WallReinforced - components: - - pos: 67.5,5.5 - parent: 1 - type: Transform -- uid: 9042 - type: WallReinforced - components: - - pos: 68.5,9.5 - parent: 1 - type: Transform -- uid: 9043 - type: WallReinforced - components: - - pos: 67.5,13.5 - parent: 1 - type: Transform -- uid: 9044 - type: WallReinforced - components: - - pos: 67.5,12.5 - parent: 1 - type: Transform -- uid: 9045 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 18.5,29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9046 - type: WallReinforced - components: - - pos: 67.5,6.5 - parent: 1 - type: Transform -- uid: 9047 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 18.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9048 - type: Grille - components: - - pos: 43.5,11.5 - parent: 1 - type: Transform -- uid: 9049 - type: Grille - components: - - pos: 43.5,8.5 - parent: 1 - type: Transform -- uid: 9050 - type: Grille - components: - - pos: 43.5,7.5 - parent: 1 - type: Transform -- uid: 9051 - type: Grille - components: - - pos: 43.5,10.5 - parent: 1 - type: Transform -- uid: 9052 - type: Grille - components: - - pos: 53.5,14.5 - parent: 1 - type: Transform -- uid: 9053 - type: Grille - components: - - pos: 52.5,14.5 - parent: 1 - type: Transform -- uid: 9054 - type: Grille - components: - - pos: 54.5,14.5 - parent: 1 - type: Transform -- uid: 9055 - type: Grille - components: - - pos: 51.5,13.5 - parent: 1 - type: Transform -- uid: 9056 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 51.5,12.5 - parent: 1 - type: Transform -- uid: 9057 - type: Grille - components: - - pos: 51.5,11.5 - parent: 1 - type: Transform -- uid: 9058 - type: Grille - components: - - pos: 55.5,13.5 - parent: 1 - type: Transform -- uid: 9059 - type: Grille - components: - - pos: 55.5,12.5 - parent: 1 - type: Transform -- uid: 9060 - type: Grille - components: - - pos: 55.5,11.5 - parent: 1 - type: Transform -- uid: 9061 - type: Grille - components: - - pos: 52.5,10.5 - parent: 1 - type: Transform -- uid: 9062 - type: Grille - components: - - pos: 54.5,10.5 - parent: 1 - type: Transform -- uid: 9063 - type: RailingCorner - components: - - rot: -1.5707963267948966 rad - pos: 45.5,6.5 - parent: 1 - type: Transform -- uid: 9064 - type: RailingCorner - components: - - rot: 3.141592653589793 rad - pos: 45.5,10.5 - parent: 1 - type: Transform -- uid: 9065 - type: RailingCorner - components: - - rot: 1.5707963267948966 rad - pos: 49.5,10.5 - parent: 1 - type: Transform -- uid: 9066 - type: RailingCorner - components: - - pos: 49.5,6.5 - parent: 1 - type: Transform -- uid: 9067 - type: Railing - components: - - pos: 46.5,6.5 - parent: 1 - type: Transform -- uid: 9068 - type: Railing - components: - - pos: 48.5,6.5 - parent: 1 - type: Transform -- uid: 9069 - type: Railing - components: - - pos: 47.5,6.5 - parent: 1 - type: Transform -- uid: 9070 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 45.5,9.5 - parent: 1 - type: Transform -- uid: 9071 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 45.5,8.5 - parent: 1 - type: Transform -- uid: 9072 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 45.5,7.5 - parent: 1 - type: Transform -- uid: 9073 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 49.5,9.5 - parent: 1 - type: Transform -- uid: 9074 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 49.5,7.5 - parent: 1 - type: Transform -- uid: 9075 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 46.5,10.5 - parent: 1 - type: Transform -- uid: 9076 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 48.5,10.5 - parent: 1 - type: Transform -- uid: 9077 - type: Windoor - components: - - rot: 1.5707963267948966 rad - pos: 49.5,8.5 - parent: 1 - type: Transform -- uid: 9078 - type: ClothingHandsGlovesBoxingBlue - components: - - pos: 45.746887,10.344142 - parent: 1 - type: Transform -- uid: 9079 - type: ClothingHandsGlovesBoxingRed - components: - - pos: 49.26161,6.727405 - parent: 1 - type: Transform -- uid: 9080 - type: RailingCorner - components: - - pos: 59.5,5.5 - parent: 1 - type: Transform -- uid: 9081 - type: RailingCorner - components: - - rot: -1.5707963267948966 rad - pos: 55.5,5.5 - parent: 1 - type: Transform -- uid: 9082 - type: RailingCorner - components: - - rot: 3.141592653589793 rad - pos: 55.5,8.5 - parent: 1 - type: Transform -- uid: 9083 - type: RailingCorner - components: - - rot: 1.5707963267948966 rad - pos: 59.5,8.5 - parent: 1 - type: Transform -- uid: 9084 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 58.5,8.5 - parent: 1 - type: Transform -- uid: 9085 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 56.5,8.5 - parent: 1 - type: Transform -- uid: 9086 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 55.5,6.5 - parent: 1 - type: Transform -- uid: 9087 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 59.5,7.5 - parent: 1 - type: Transform -- uid: 9088 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 59.5,6.5 - parent: 1 - type: Transform -- uid: 9089 - type: Railing - components: - - pos: 58.5,5.5 - parent: 1 - type: Transform -- uid: 9090 - type: Railing - components: - - pos: 56.5,5.5 - parent: 1 - type: Transform -- uid: 9091 - type: hydroponicsTray - components: - - pos: 58.5,8.5 - parent: 1 - type: Transform -- uid: 9092 - type: hydroponicsTray - components: - - pos: 58.5,7.5 - parent: 1 - type: Transform -- uid: 9093 - type: hydroponicsTray - components: - - pos: 58.5,6.5 - parent: 1 - type: Transform -- uid: 9094 - type: hydroponicsTray - components: - - pos: 56.5,8.5 - parent: 1 - type: Transform -- uid: 9095 - type: hydroponicsTray - components: - - pos: 56.5,7.5 - parent: 1 - type: Transform -- uid: 9096 - type: hydroponicsTray - components: - - pos: 56.5,6.5 - parent: 1 - type: Transform -- uid: 9097 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 57.5,8.5 - parent: 1 - type: Transform -- uid: 9098 - type: HydroponicsToolSpade - components: - - pos: 57.622448,6.583844 - parent: 1 - type: Transform -- uid: 9099 - type: HydroponicsToolMiniHoe - components: - - pos: 57.497448,6.490094 - parent: 1 - type: Transform -- uid: 9100 - type: SeedExtractor - components: - - pos: 57.5,8.5 - parent: 1 - type: Transform -- uid: 9101 - type: VendingMachineSeedsUnlocked - components: - - flags: SessionSpecific - type: MetaData - - pos: 58.5,10.5 - parent: 1 - type: Transform -- uid: 9102 - type: ClothingHeadHatUshanka - components: - - pos: 63.56368,11.408342 - parent: 1 - type: Transform -- uid: 9103 - type: ScalpelShiv - components: - - pos: 54.135303,18.76531 - parent: 1 - type: Transform -- uid: 9104 - type: BookFishing - components: - - pos: 40.53901,21.517956 - parent: 1 - type: Transform -- uid: 9105 - type: BookDetective - components: - - pos: 40.304634,21.43983 - parent: 1 - type: Transform -- uid: 9106 - type: BookRandom - components: - - pos: 40.523384,18.611706 - parent: 1 - type: Transform -- uid: 9107 - type: BookRandom - components: - - pos: 38.492134,18.674206 - parent: 1 - type: Transform -- uid: 9108 - type: BookRandom - components: - - pos: 38.429634,21.580456 - parent: 1 - type: Transform -- uid: 9109 - type: WallReinforced - components: - - pos: 47.5,3.5 - parent: 1 - type: Transform -- uid: 9110 - type: ReinforcedWindow - components: - - pos: 46.5,3.5 - parent: 1 - type: Transform -- uid: 9111 - type: WallReinforced - components: - - pos: 49.5,3.5 - parent: 1 - type: Transform -- uid: 9112 - type: WallReinforced - components: - - pos: 50.5,3.5 - parent: 1 - type: Transform -- uid: 9113 - type: WallReinforced - components: - - pos: 50.5,4.5 - parent: 1 - type: Transform -- uid: 9114 - type: WallReinforced - components: - - pos: 51.5,4.5 - parent: 1 - type: Transform -- uid: 9115 - type: WallReinforced - components: - - pos: 52.5,4.5 - parent: 1 - type: Transform -- uid: 9116 - type: WallReinforced - components: - - pos: 53.5,4.5 - parent: 1 - type: Transform -- uid: 9117 - type: WallReinforced - components: - - pos: 54.5,4.5 - parent: 1 - type: Transform -- uid: 9118 - type: WallReinforced - components: - - pos: 54.5,3.5 - parent: 1 - type: Transform -- uid: 9119 - type: WallReinforced - components: - - pos: 55.5,3.5 - parent: 1 - type: Transform -- uid: 9120 - type: WallReinforced - components: - - pos: 56.5,3.5 - parent: 1 - type: Transform -- uid: 9121 - type: WallReinforced - components: - - pos: 57.5,3.5 - parent: 1 - type: Transform -- uid: 9122 - type: WallReinforced - components: - - pos: 58.5,3.5 - parent: 1 - type: Transform -- uid: 9123 - type: PhoneInstrument - components: - - pos: 60.321476,-1.3655583 - parent: 1 - type: Transform -- uid: 9124 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9125 - type: WallSolid - components: - - pos: 58.5,-0.5 - parent: 1 - type: Transform -- uid: 9126 - type: WallReinforced - components: - - pos: 64.5,5.5 - parent: 1 - type: Transform -- uid: 9127 - type: WallReinforced - components: - - pos: 64.5,4.5 - parent: 1 - type: Transform -- uid: 9128 - type: WallReinforced - components: - - pos: 64.5,3.5 - parent: 1 - type: Transform -- uid: 9129 - type: WallReinforced - components: - - pos: 63.5,3.5 - parent: 1 - type: Transform -- uid: 9130 - type: WallReinforced - components: - - pos: 62.5,3.5 - parent: 1 - type: Transform -- uid: 9131 - type: WallReinforced - components: - - pos: 61.5,3.5 - parent: 1 - type: Transform -- uid: 9132 - type: WallReinforced - components: - - pos: 60.5,3.5 - parent: 1 - type: Transform -- uid: 9133 - type: WallReinforced - components: - - pos: 59.5,3.5 - parent: 1 - type: Transform -- uid: 9134 - type: LockerEvidence - components: - - pos: 41.5,16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9135 - type: LockerEvidence - components: - - pos: 40.5,16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9136 - type: LockerEvidence - components: - - pos: 39.5,16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9137 - type: LockerEvidence - components: - - pos: 38.5,16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9138 - type: LockerEvidence - components: - - pos: 42.5,16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9139 - type: LockerEvidence - components: - - pos: 37.5,16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9140 - type: Table - components: - - pos: 48.5,18.5 - parent: 1 - type: Transform -- uid: 9141 - type: Table - components: - - pos: 57.5,20.5 - parent: 1 - type: Transform -- uid: 9142 - type: Table - components: - - pos: 57.5,19.5 - parent: 1 - type: Transform -- uid: 9143 - type: Table - components: - - pos: 58.5,19.5 - parent: 1 - type: Transform -- uid: 9144 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 56.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9145 - type: Table - components: - - pos: 51.5,7.5 - parent: 1 - type: Transform -- uid: 9146 - type: Table - components: - - pos: 52.5,7.5 - parent: 1 - type: Transform -- uid: 9147 - type: Table - components: - - pos: 52.5,6.5 - parent: 1 - type: Transform -- uid: 9148 - type: Table - components: - - pos: 51.5,6.5 - parent: 1 - type: Transform -- uid: 9149 - type: Chair - components: - - pos: 48.5,19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9150 - type: Chair - components: - - pos: 52.5,8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9151 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 52.5,5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9152 - type: Chair - components: - - pos: 51.5,8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9153 - type: FloorDrain - components: - - pos: 53.5,17.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 9154 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 51.5,5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9155 - type: Chair - components: - - pos: 58.5,21.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9156 - type: Chair - components: - - pos: 57.5,21.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9157 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 58.5,18.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9158 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 57.5,18.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9159 - type: CableMV - components: - - pos: 32.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9160 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 52.5,11.5 - parent: 1 - type: Transform -- uid: 9161 - type: WardrobePrisonFilled - components: - - pos: 58.5,22.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9162 - type: WardrobePrisonFilled - components: - - pos: 60.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9163 - type: WardrobePrisonFilled - components: - - pos: 60.5,16.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9164 - type: FoodBoxDonut - components: - - pos: 52.62345,11.736868 - parent: 1 - type: Transform -- uid: 9165 - type: GrenadeFlashBang - components: - - pos: 52.279568,11.553763 - parent: 1 - type: Transform -- uid: 9166 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 45.5,17.5 - parent: 1 - type: Transform -- uid: 9167 - type: VendingMachineSnack - components: - - flags: SessionSpecific - type: MetaData - - pos: 44.5,17.5 - parent: 1 - type: Transform -- uid: 9168 - type: WallSolid - components: - - pos: 61.5,0.5 - parent: 1 - type: Transform -- uid: 9169 - type: WallSolid - components: - - pos: 62.5,0.5 - parent: 1 - type: Transform -- uid: 9170 - type: AirlockMaintCommandLocked - components: - - rot: 1.5707963267948966 rad - pos: 63.5,0.5 - parent: 1 - type: Transform -- uid: 9171 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 59.5,46.5 - parent: 1 - type: Transform -- uid: 9172 - type: WallReinforced - components: - - pos: 68.5,6.5 - parent: 1 - type: Transform -- uid: 9173 - type: WallReinforced - components: - - pos: 47.5,-17.5 - parent: 1 - type: Transform -- uid: 9174 - type: WallReinforced - components: - - pos: 44.5,13.5 - parent: 1 - type: Transform -- uid: 9175 - type: SecurityTechFab - components: - - pos: 20.5,22.5 - parent: 1 - type: Transform - - materialWhiteList: - - Glass - - Plastic - - Steel - type: MaterialStorage -- uid: 9176 - type: CableHV - components: - - pos: 45.5,2.5 - parent: 1 - type: Transform -- uid: 9177 - type: CableHV - components: - - pos: 46.5,2.5 - parent: 1 - type: Transform -- uid: 9178 - type: CableHV - components: - - pos: 47.5,2.5 - parent: 1 - type: Transform -- uid: 9179 - type: CableHV - components: - - pos: 48.5,2.5 - parent: 1 - type: Transform -- uid: 9180 - type: CableHV - components: - - pos: 49.5,2.5 - parent: 1 - type: Transform -- uid: 9181 - type: CableHV - components: - - pos: 50.5,2.5 - parent: 1 - type: Transform -- uid: 9182 - type: CableHV - components: - - pos: 51.5,2.5 - parent: 1 - type: Transform -- uid: 9183 - type: CableHV - components: - - pos: 52.5,2.5 - parent: 1 - type: Transform -- uid: 9184 - type: CableHV - components: - - pos: 52.5,1.5 - parent: 1 - type: Transform -- uid: 9185 - type: CableHV - components: - - pos: 52.5,0.5 - parent: 1 - type: Transform -- uid: 9186 - type: CableHV - components: - - pos: 52.5,-0.5 - parent: 1 - type: Transform -- uid: 9187 - type: CableHV - components: - - pos: 53.5,1.5 - parent: 1 - type: Transform -- uid: 9188 - type: CableHV - components: - - pos: 54.5,1.5 - parent: 1 - type: Transform -- uid: 9189 - type: CableHV - components: - - pos: 55.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9190 - type: CableHV - components: - - pos: 56.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9191 - type: CableHV - components: - - pos: 57.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9192 - type: CableHV - components: - - pos: 58.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9193 - type: CableHV - components: - - pos: 59.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9194 - type: CableHV - components: - - pos: 60.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9195 - type: CableHV - components: - - pos: 61.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9196 - type: CableHV - components: - - pos: 62.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9197 - type: CableHV - components: - - pos: 62.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9198 - type: CableHV - components: - - pos: 62.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9199 - type: CableHV - components: - - pos: 62.5,4.5 - parent: 1 - type: Transform -- uid: 9200 - type: CableHV - components: - - pos: 62.5,5.5 - parent: 1 - type: Transform -- uid: 9201 - type: CableHV - components: - - pos: 62.5,6.5 - parent: 1 - type: Transform -- uid: 9202 - type: CableHV - components: - - pos: 62.5,7.5 - parent: 1 - type: Transform -- uid: 9203 - type: CableHV - components: - - pos: 63.5,7.5 - parent: 1 - type: Transform -- uid: 9204 - type: CableApcExtension - components: - - pos: 59.5,-5.5 - parent: 1 - type: Transform -- uid: 9205 - type: CableApcExtension - components: - - pos: 61.5,-5.5 - parent: 1 - type: Transform -- uid: 9206 - type: SubstationBasic - components: - - pos: 63.5,7.5 - parent: 1 - type: Transform -- uid: 9207 - type: CableMV - components: - - pos: 63.5,7.5 - parent: 1 - type: Transform -- uid: 9208 - type: CableMV - components: - - pos: 63.5,6.5 - parent: 1 - type: Transform -- uid: 9209 - type: CableMV - components: - - pos: 63.5,5.5 - parent: 1 - type: Transform -- uid: 9210 - type: CableMV - components: - - pos: 63.5,4.5 - parent: 1 - type: Transform -- uid: 9211 - type: CableMV - components: - - pos: 62.5,4.5 - parent: 1 - type: Transform -- uid: 9212 - type: CableMV - components: - - pos: 61.5,4.5 - parent: 1 - type: Transform -- uid: 9213 - type: CableMV - components: - - pos: 60.5,4.5 - parent: 1 - type: Transform -- uid: 9214 - type: CableMV - components: - - pos: 60.5,5.5 - parent: 1 - type: Transform -- uid: 9215 - type: CableMV - components: - - pos: 60.5,6.5 - parent: 1 - type: Transform -- uid: 9216 - type: CableMV - components: - - pos: 60.5,7.5 - parent: 1 - type: Transform -- uid: 9217 - type: CableMV - components: - - pos: 60.5,8.5 - parent: 1 - type: Transform -- uid: 9218 - type: CableMV - components: - - pos: 60.5,9.5 - parent: 1 - type: Transform -- uid: 9219 - type: CableMV - components: - - pos: 59.5,9.5 - parent: 1 - type: Transform -- uid: 9220 - type: CableMV - components: - - pos: 58.5,9.5 - parent: 1 - type: Transform -- uid: 9221 - type: CableMV - components: - - pos: 58.5,10.5 - parent: 1 - type: Transform -- uid: 9222 - type: CableMV - components: - - pos: 58.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9223 - type: APCHighCapacity - components: - - pos: 58.5,11.5 - parent: 1 - type: Transform -- uid: 9224 - type: CableApcExtension - components: - - pos: 58.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9225 - type: CableApcExtension - components: - - pos: 58.5,12.5 - parent: 1 - type: Transform -- uid: 9226 - type: CableApcExtension - components: - - pos: 58.5,13.5 - parent: 1 - type: Transform -- uid: 9227 - type: CableApcExtension - components: - - pos: 58.5,14.5 - parent: 1 - type: Transform -- uid: 9228 - type: CableApcExtension - components: - - pos: 58.5,15.5 - parent: 1 - type: Transform -- uid: 9229 - type: CableApcExtension - components: - - pos: 58.5,16.5 - parent: 1 - type: Transform -- uid: 9230 - type: CableApcExtension - components: - - pos: 57.5,16.5 - parent: 1 - type: Transform -- uid: 9231 - type: CableApcExtension - components: - - pos: 57.5,17.5 - parent: 1 - type: Transform -- uid: 9232 - type: CableApcExtension - components: - - pos: 57.5,18.5 - parent: 1 - type: Transform -- uid: 9233 - type: CableApcExtension - components: - - pos: 56.5,18.5 - parent: 1 - type: Transform -- uid: 9234 - type: CableApcExtension - components: - - pos: 56.5,19.5 - parent: 1 - type: Transform -- uid: 9235 - type: CableApcExtension - components: - - pos: 56.5,20.5 - parent: 1 - type: Transform -- uid: 9236 - type: CableApcExtension - components: - - pos: 55.5,20.5 - parent: 1 - type: Transform -- uid: 9237 - type: CableApcExtension - components: - - pos: 54.5,20.5 - parent: 1 - type: Transform -- uid: 9238 - type: CableApcExtension - components: - - pos: 56.5,21.5 - parent: 1 - type: Transform -- uid: 9239 - type: CableApcExtension - components: - - pos: 58.5,21.5 - parent: 1 - type: Transform -- uid: 9240 - type: CableApcExtension - components: - - pos: 57.5,21.5 - parent: 1 - type: Transform -- uid: 9241 - type: CableApcExtension - components: - - pos: 58.5,21.5 - parent: 1 - type: Transform -- uid: 9242 - type: CableApcExtension - components: - - pos: 53.5,20.5 - parent: 1 - type: Transform -- uid: 9243 - type: CableApcExtension - components: - - pos: 52.5,20.5 - parent: 1 - type: Transform -- uid: 9244 - type: CableApcExtension - components: - - pos: 51.5,20.5 - parent: 1 - type: Transform -- uid: 9245 - type: CableApcExtension - components: - - pos: 50.5,20.5 - parent: 1 - type: Transform -- uid: 9246 - type: CableApcExtension - components: - - pos: 49.5,20.5 - parent: 1 - type: Transform -- uid: 9247 - type: CableApcExtension - components: - - pos: 48.5,20.5 - parent: 1 - type: Transform -- uid: 9248 - type: CableApcExtension - components: - - pos: 47.5,20.5 - parent: 1 - type: Transform -- uid: 9249 - type: CableApcExtension - components: - - pos: 46.5,20.5 - parent: 1 - type: Transform -- uid: 9250 - type: CableApcExtension - components: - - pos: 46.5,21.5 - parent: 1 - type: Transform -- uid: 9251 - type: CableApcExtension - components: - - pos: 49.5,21.5 - parent: 1 - type: Transform -- uid: 9252 - type: CableApcExtension - components: - - pos: 52.5,21.5 - parent: 1 - type: Transform -- uid: 9253 - type: CableApcExtension - components: - - pos: 54.5,21.5 - parent: 1 - type: Transform -- uid: 9254 - type: CableApcExtension - components: - - pos: 59.5,18.5 - parent: 1 - type: Transform -- uid: 9255 - type: CableApcExtension - components: - - pos: 58.5,18.5 - parent: 1 - type: Transform -- uid: 9256 - type: CableApcExtension - components: - - pos: 59.5,15.5 - parent: 1 - type: Transform -- uid: 9257 - type: CableApcExtension - components: - - pos: 60.5,13.5 - parent: 1 - type: Transform -- uid: 9258 - type: CableApcExtension - components: - - pos: 59.5,13.5 - parent: 1 - type: Transform -- uid: 9259 - type: CableApcExtension - components: - - pos: 61.5,13.5 - parent: 1 - type: Transform -- uid: 9260 - type: CableApcExtension - components: - - pos: 57.5,11.5 - parent: 1 - type: Transform -- uid: 9261 - type: CableApcExtension - components: - - pos: 56.5,11.5 - parent: 1 - type: Transform -- uid: 9262 - type: CableApcExtension - components: - - pos: 56.5,10.5 - parent: 1 - type: Transform -- uid: 9263 - type: CableApcExtension - components: - - pos: 56.5,9.5 - parent: 1 - type: Transform -- uid: 9264 - type: CableApcExtension - components: - - pos: 56.5,8.5 - parent: 1 - type: Transform -- uid: 9265 - type: CableApcExtension - components: - - pos: 56.5,7.5 - parent: 1 - type: Transform -- uid: 9266 - type: CableApcExtension - components: - - pos: 56.5,6.5 - parent: 1 - type: Transform -- uid: 9267 - type: CableApcExtension - components: - - pos: 55.5,6.5 - parent: 1 - type: Transform -- uid: 9268 - type: CableApcExtension - components: - - pos: 54.5,6.5 - parent: 1 - type: Transform -- uid: 9269 - type: CableApcExtension - components: - - pos: 53.5,6.5 - parent: 1 - type: Transform -- uid: 9270 - type: CableApcExtension - components: - - pos: 52.5,6.5 - parent: 1 - type: Transform -- uid: 9271 - type: CableApcExtension - components: - - pos: 51.5,6.5 - parent: 1 - type: Transform -- uid: 9272 - type: CableApcExtension - components: - - pos: 50.5,6.5 - parent: 1 - type: Transform -- uid: 9273 - type: CableApcExtension - components: - - pos: 49.5,6.5 - parent: 1 - type: Transform -- uid: 9274 - type: CableApcExtension - components: - - pos: 48.5,6.5 - parent: 1 - type: Transform -- uid: 9275 - type: CableApcExtension - components: - - pos: 47.5,6.5 - parent: 1 - type: Transform -- uid: 9276 - type: CableApcExtension - components: - - pos: 47.5,7.5 - parent: 1 - type: Transform -- uid: 9277 - type: CableApcExtension - components: - - pos: 47.5,8.5 - parent: 1 - type: Transform -- uid: 9278 - type: CableApcExtension - components: - - pos: 47.5,9.5 - parent: 1 - type: Transform -- uid: 9279 - type: CableApcExtension - components: - - pos: 47.5,10.5 - parent: 1 - type: Transform -- uid: 9280 - type: CableApcExtension - components: - - pos: 47.5,11.5 - parent: 1 - type: Transform -- uid: 9281 - type: CableApcExtension - components: - - pos: 47.5,12.5 - parent: 1 - type: Transform -- uid: 9282 - type: CableApcExtension - components: - - pos: 47.5,13.5 - parent: 1 - type: Transform -- uid: 9283 - type: CableApcExtension - components: - - pos: 47.5,14.5 - parent: 1 - type: Transform -- uid: 9284 - type: CableApcExtension - components: - - pos: 47.5,15.5 - parent: 1 - type: Transform -- uid: 9285 - type: CableApcExtension - components: - - pos: 48.5,13.5 - parent: 1 - type: Transform -- uid: 9286 - type: CableApcExtension - components: - - pos: 49.5,13.5 - parent: 1 - type: Transform -- uid: 9287 - type: CableApcExtension - components: - - pos: 49.5,14.5 - parent: 1 - type: Transform -- uid: 9288 - type: CableApcExtension - components: - - pos: 49.5,15.5 - parent: 1 - type: Transform -- uid: 9289 - type: CableApcExtension - components: - - pos: 49.5,16.5 - parent: 1 - type: Transform -- uid: 9290 - type: CableApcExtension - components: - - pos: 50.5,16.5 - parent: 1 - type: Transform -- uid: 9291 - type: CableApcExtension - components: - - pos: 51.5,16.5 - parent: 1 - type: Transform -- uid: 9292 - type: CableApcExtension - components: - - pos: 52.5,16.5 - parent: 1 - type: Transform -- uid: 9293 - type: CableApcExtension - components: - - pos: 53.5,16.5 - parent: 1 - type: Transform -- uid: 9294 - type: CableApcExtension - components: - - pos: 54.5,16.5 - parent: 1 - type: Transform -- uid: 9295 - type: CableApcExtension - components: - - pos: 55.5,16.5 - parent: 1 - type: Transform -- uid: 9296 - type: CableApcExtension - components: - - pos: 50.5,17.5 - parent: 1 - type: Transform -- uid: 9297 - type: CableApcExtension - components: - - pos: 50.5,18.5 - parent: 1 - type: Transform -- uid: 9298 - type: CableApcExtension - components: - - pos: 49.5,12.5 - parent: 1 - type: Transform -- uid: 9299 - type: CableApcExtension - components: - - pos: 50.5,12.5 - parent: 1 - type: Transform -- uid: 9300 - type: CableApcExtension - components: - - pos: 50.5,11.5 - parent: 1 - type: Transform -- uid: 9301 - type: CableApcExtension - components: - - pos: 50.5,10.5 - parent: 1 - type: Transform -- uid: 9302 - type: CableApcExtension - components: - - pos: 50.5,9.5 - parent: 1 - type: Transform -- uid: 9303 - type: CableApcExtension - components: - - pos: 51.5,9.5 - parent: 1 - type: Transform -- uid: 9304 - type: CableApcExtension - components: - - pos: 52.5,9.5 - parent: 1 - type: Transform -- uid: 9305 - type: CableApcExtension - components: - - pos: 53.5,9.5 - parent: 1 - type: Transform -- uid: 9306 - type: CableApcExtension - components: - - pos: 53.5,10.5 - parent: 1 - type: Transform -- uid: 9307 - type: CableApcExtension - components: - - pos: 53.5,11.5 - parent: 1 - type: Transform -- uid: 9308 - type: CableApcExtension - components: - - pos: 53.5,12.5 - parent: 1 - type: Transform -- uid: 9309 - type: CableApcExtension - components: - - pos: 59.5,11.5 - parent: 1 - type: Transform -- uid: 9310 - type: CableApcExtension - components: - - pos: 59.5,10.5 - parent: 1 - type: Transform -- uid: 9311 - type: CableApcExtension - components: - - pos: 59.5,9.5 - parent: 1 - type: Transform -- uid: 9312 - type: CableApcExtension - components: - - pos: 60.5,9.5 - parent: 1 - type: Transform -- uid: 9313 - type: CableApcExtension - components: - - pos: 60.5,8.5 - parent: 1 - type: Transform -- uid: 9314 - type: CableApcExtension - components: - - pos: 60.5,7.5 - parent: 1 - type: Transform -- uid: 9315 - type: CableApcExtension - components: - - pos: 60.5,6.5 - parent: 1 - type: Transform -- uid: 9316 - type: CableApcExtension - components: - - pos: 60.5,5.5 - parent: 1 - type: Transform -- uid: 9317 - type: CableApcExtension - components: - - pos: 60.5,4.5 - parent: 1 - type: Transform -- uid: 9318 - type: CableApcExtension - components: - - pos: 61.5,4.5 - parent: 1 - type: Transform -- uid: 9319 - type: CableApcExtension - components: - - pos: 62.5,4.5 - parent: 1 - type: Transform -- uid: 9320 - type: CableApcExtension - components: - - pos: 62.5,5.5 - parent: 1 - type: Transform -- uid: 9321 - type: CableApcExtension - components: - - pos: 60.5,-5.5 - parent: 1 - type: Transform -- uid: 9322 - type: CableApcExtension - components: - - pos: 45.5,20.5 - parent: 1 - type: Transform -- uid: 9323 - type: CableApcExtension - components: - - pos: 44.5,20.5 - parent: 1 - type: Transform -- uid: 9324 - type: CableApcExtension - components: - - pos: 43.5,20.5 - parent: 1 - type: Transform -- uid: 9325 - type: CableApcExtension - components: - - pos: 42.5,20.5 - parent: 1 - type: Transform -- uid: 9326 - type: CableApcExtension - components: - - pos: 41.5,20.5 - parent: 1 - type: Transform -- uid: 9327 - type: CableApcExtension - components: - - pos: 40.5,20.5 - parent: 1 - type: Transform -- uid: 9328 - type: CableApcExtension - components: - - pos: 39.5,20.5 - parent: 1 - type: Transform -- uid: 9329 - type: CableApcExtension - components: - - pos: 38.5,20.5 - parent: 1 - type: Transform -- uid: 9330 - type: CableApcExtension - components: - - pos: 37.5,20.5 - parent: 1 - type: Transform -- uid: 9331 - type: CableApcExtension - components: - - pos: 36.5,20.5 - parent: 1 - type: Transform -- uid: 9332 - type: CableApcExtension - components: - - pos: 35.5,20.5 - parent: 1 - type: Transform -- uid: 9333 - type: CableApcExtension - components: - - pos: 35.5,19.5 - parent: 1 - type: Transform -- uid: 9334 - type: CableApcExtension - components: - - pos: 46.5,11.5 - parent: 1 - type: Transform -- uid: 9335 - type: CableApcExtension - components: - - pos: 45.5,11.5 - parent: 1 - type: Transform -- uid: 9336 - type: CableMV - components: - - pos: 38.5,15.5 - parent: 1 - type: Transform -- uid: 9337 - type: CableApcExtension - components: - - pos: 43.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9338 - type: CableApcExtension - components: - - pos: 42.5,11.5 - parent: 1 - type: Transform -- uid: 9339 - type: CableApcExtension - components: - - pos: 41.5,11.5 - parent: 1 - type: Transform -- uid: 9340 - type: CableApcExtension - components: - - pos: 40.5,11.5 - parent: 1 - type: Transform -- uid: 9341 - type: CableApcExtension - components: - - pos: 41.5,10.5 - parent: 1 - type: Transform -- uid: 9342 - type: CableApcExtension - components: - - pos: 41.5,9.5 - parent: 1 - type: Transform -- uid: 9343 - type: CableApcExtension - components: - - pos: 41.5,8.5 - parent: 1 - type: Transform -- uid: 9344 - type: CableApcExtension - components: - - pos: 41.5,7.5 - parent: 1 - type: Transform -- uid: 9345 - type: CableApcExtension - components: - - pos: 41.5,6.5 - parent: 1 - type: Transform -- uid: 9346 - type: CableApcExtension - components: - - pos: 41.5,5.5 - parent: 1 - type: Transform -- uid: 9347 - type: CableApcExtension - components: - - pos: 41.5,4.5 - parent: 1 - type: Transform -- uid: 9348 - type: CableApcExtension - components: - - pos: 40.5,12.5 - parent: 1 - type: Transform -- uid: 9349 - type: CableApcExtension - components: - - pos: 40.5,13.5 - parent: 1 - type: Transform -- uid: 9350 - type: CableApcExtension - components: - - pos: 40.5,14.5 - parent: 1 - type: Transform -- uid: 9351 - type: CableApcExtension - components: - - pos: 39.5,14.5 - parent: 1 - type: Transform -- uid: 9352 - type: CableApcExtension - components: - - pos: 38.5,14.5 - parent: 1 - type: Transform -- uid: 9353 - type: CableApcExtension - components: - - pos: 37.5,14.5 - parent: 1 - type: Transform -- uid: 9354 - type: CableApcExtension - components: - - pos: 36.5,14.5 - parent: 1 - type: Transform -- uid: 9355 - type: CableApcExtension - components: - - pos: 35.5,14.5 - parent: 1 - type: Transform -- uid: 9356 - type: CableApcExtension - components: - - pos: 34.5,14.5 - parent: 1 - type: Transform -- uid: 9357 - type: CableApcExtension - components: - - pos: 33.5,14.5 - parent: 1 - type: Transform -- uid: 9358 - type: CableApcExtension - components: - - pos: 32.5,14.5 - parent: 1 - type: Transform -- uid: 9359 - type: CableApcExtension - components: - - pos: 31.5,14.5 - parent: 1 - type: Transform -- uid: 9360 - type: CableApcExtension - components: - - pos: 35.5,15.5 - parent: 1 - type: Transform -- uid: 9361 - type: CableApcExtension - components: - - pos: 35.5,16.5 - parent: 1 - type: Transform -- uid: 9362 - type: WallReinforced - components: - - pos: 44.5,4.5 - parent: 1 - type: Transform -- uid: 9363 - type: WallReinforced - components: - - pos: 44.5,3.5 - parent: 1 - type: Transform -- uid: 9364 - type: Grille - components: - - pos: 48.5,3.5 - parent: 1 - type: Transform -- uid: 9365 - type: Grille - components: - - pos: 46.5,3.5 - parent: 1 - type: Transform -- uid: 9366 - type: SignPrison - components: - - name: open prison sign - type: MetaData - - pos: 43.5,13.5 - parent: 1 - type: Transform -- uid: 9367 - type: MedkitBruteFilled - components: - - pos: 51.394184,7.4673457 - parent: 1 - type: Transform -- uid: 9368 - type: CableApcExtension - components: - - pos: 32.5,13.5 - parent: 1 - type: Transform -- uid: 9369 - type: CableApcExtension - components: - - pos: 32.5,12.5 - parent: 1 - type: Transform -- uid: 9370 - type: CableApcExtension - components: - - pos: 32.5,11.5 - parent: 1 - type: Transform -- uid: 9371 - type: CableApcExtension - components: - - pos: 30.5,14.5 - parent: 1 - type: Transform -- uid: 9372 - type: CableApcExtension - components: - - pos: 29.5,14.5 - parent: 1 - type: Transform -- uid: 9373 - type: CableApcExtension - components: - - pos: 29.5,13.5 - parent: 1 - type: Transform -- uid: 9374 - type: CableApcExtension - components: - - pos: 29.5,12.5 - parent: 1 - type: Transform -- uid: 9375 - type: CableApcExtension - components: - - pos: 29.5,11.5 - parent: 1 - type: Transform -- uid: 9376 - type: CableApcExtension - components: - - pos: 35.5,13.5 - parent: 1 - type: Transform -- uid: 9377 - type: CableApcExtension - components: - - pos: 35.5,12.5 - parent: 1 - type: Transform -- uid: 9378 - type: CableApcExtension - components: - - pos: 35.5,11.5 - parent: 1 - type: Transform -- uid: 9379 - type: CableApcExtension - components: - - pos: 39.5,7.5 - parent: 1 - type: Transform -- uid: 9380 - type: CableApcExtension - components: - - pos: 38.5,7.5 - parent: 1 - type: Transform -- uid: 9381 - type: CableApcExtension - components: - - pos: 37.5,7.5 - parent: 1 - type: Transform -- uid: 9382 - type: CableApcExtension - components: - - pos: 40.5,4.5 - parent: 1 - type: Transform -- uid: 9383 - type: CableApcExtension - components: - - pos: 39.5,4.5 - parent: 1 - type: Transform -- uid: 9384 - type: CableApcExtension - components: - - pos: 37.5,4.5 - parent: 1 - type: Transform -- uid: 9385 - type: CableApcExtension - components: - - pos: 38.5,4.5 - parent: 1 - type: Transform -- uid: 9386 - type: ClosetEmergencyFilledRandom - components: - - pos: 63.5,5.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9387 - type: ClosetEmergencyFilledRandom - components: - - pos: 63.5,4.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9388 - type: Cigarette - components: - - pos: 63.44384,24.664883 - parent: 1 - type: Transform -- uid: 9389 - type: Beaker - components: - - pos: 54.768433,18.769468 - parent: 1 - type: Transform -- uid: 9390 - type: Beaker - components: - - pos: 54.659058,18.535093 - parent: 1 - type: Transform -- uid: 9391 - type: LockerEvidence - components: - - pos: 42.5,12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9392 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 30.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9393 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9394 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9395 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 28.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9396 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9397 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9398 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9399 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9400 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9401 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9402 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9403 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9404 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9405 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9406 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9407 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9408 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 30.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9409 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9410 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9411 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9412 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9413 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 28.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9414 - type: GasVentScrubber - components: - - pos: 28.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9415 - type: GasVentPump - components: - - pos: 30.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9416 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9417 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9418 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9419 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9420 - type: GasPipeTJunction - components: - - pos: 40.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9421 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9422 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9423 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9424 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9425 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9426 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9427 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9428 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9429 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9430 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9431 - type: GasPipeTJunction - components: - - pos: 44.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9432 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 45.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9433 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9434 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9435 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9436 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9437 - type: GasPipeTJunction - components: - - pos: 47.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9438 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9439 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 47.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9440 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9441 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 44.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9442 - type: GasVentPump - components: - - pos: 45.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9443 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 49.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9444 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 50.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9445 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9446 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 49.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9447 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 49.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9448 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 49.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9449 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 49.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9450 - type: GasPipeFourway - components: - - pos: 49.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9451 - type: GasPipeFourway - components: - - pos: 50.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9452 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9453 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9454 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 50.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9455 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9456 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9457 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9458 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9459 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9460 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9461 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 46.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9462 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9463 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9464 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 47.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9465 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 49.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9466 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 49.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9467 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 50.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9468 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 46.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9469 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 46.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9470 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9471 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9472 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9473 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 53.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9474 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 53.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9475 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9476 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9477 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9478 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9479 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9480 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 56.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9481 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9482 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 58.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9483 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 55.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9484 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 52.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9485 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9486 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9487 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 58.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9488 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 58.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9489 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9490 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9491 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9492 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9493 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 59.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9494 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 56.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9495 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9496 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9497 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 59.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9498 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9499 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9500 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9501 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9502 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9503 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9504 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 50.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9505 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 49.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9506 - type: GasPipeStraight - components: - - pos: 49.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9507 - type: GasPipeStraight - components: - - pos: 49.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9508 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9509 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9510 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9511 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 59.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9512 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 59.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9513 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 58.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9514 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 58.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9515 - type: GasPipeStraight - components: - - pos: 58.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9516 - type: GasPipeStraight - components: - - pos: 58.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9517 - type: GasPipeStraight - components: - - pos: 59.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9518 - type: GasPipeStraight - components: - - pos: 59.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9519 - type: GasPipeStraight - components: - - pos: 58.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9520 - type: GasPipeStraight - components: - - pos: 58.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9521 - type: GasPipeStraight - components: - - pos: 58.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9522 - type: GasPipeStraight - components: - - pos: 59.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9523 - type: GasPipeStraight - components: - - pos: 59.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9524 - type: GasPipeStraight - components: - - pos: 59.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9525 - type: GasVentScrubber - components: - - pos: 47.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9526 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 52.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9527 - type: GasVentScrubber - components: - - pos: 46.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9528 - type: GasVentScrubber - components: - - pos: 49.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9529 - type: GasVentScrubber - components: - - pos: 52.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9530 - type: GasVentScrubber - components: - - pos: 55.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9531 - type: GasVentScrubber - components: - - pos: 58.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9532 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 61.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9533 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 61.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9534 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 61.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9535 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 52.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9536 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 61.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9537 - type: GasVentPump - components: - - pos: 59.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9538 - type: GasVentPump - components: - - pos: 56.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9539 - type: GasVentPump - components: - - pos: 53.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9540 - type: GasVentPump - components: - - pos: 50.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9541 - type: GasVentPump - components: - - pos: 47.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9542 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 47.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9543 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 59.5,18.5 - parent: 1 - type: Transform -- uid: 9544 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 59.5,15.5 - parent: 1 - type: Transform -- uid: 9545 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 59.5,13.5 - parent: 1 - type: Transform -- uid: 9546 - type: FirelockEdge - components: - - rot: -1.5707963267948966 rad - pos: 61.5,21.5 - parent: 1 - type: Transform -- uid: 9547 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: 43.5,19.5 - parent: 1 - type: Transform -- uid: 9548 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: 43.5,20.5 - parent: 1 - type: Transform -- uid: 9549 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 37.5,20.5 - parent: 1 - type: Transform -- uid: 9550 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: 43.5,15.5 - parent: 1 - type: Transform -- uid: 9551 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 51.5,12.5 - parent: 1 - type: Transform - - devices: - - invalid - - 13734 - - 8972 - - 8971 - - 8970 - - 8969 - - 8968 - - 9543 - - 9544 - - 9545 - - 9548 - - 9547 - - 10348 - - 20833 - - 9554 - type: DeviceList -- uid: 9552 - type: CableApcExtension - components: - - pos: -12.5,42.5 - parent: 1 - type: Transform -- uid: 9553 - type: BulletFoam - components: - - rot: -1.5707963267948966 rad - pos: -11.707516,41.19452 - parent: 1 - type: Transform -- uid: 9554 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: 61.5,4.5 - parent: 1 - type: Transform -- uid: 9555 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 58.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9556 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 59.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9557 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 60.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9558 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 57.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9559 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9560 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9561 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9562 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9563 - type: GasPipeTJunction - components: - - pos: 40.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9564 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9565 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9566 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9567 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9568 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9569 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9570 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9571 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9572 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9573 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9574 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 45.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9575 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9576 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9577 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9578 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9579 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9580 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9581 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9582 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9583 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 39.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9584 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 40.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9585 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 34.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9586 - type: GasVentPump - components: - - pos: 39.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9587 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 34.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9588 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 55.5,2.5 - parent: 1 - type: Transform -- uid: 9589 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 55.5,1.5 - parent: 1 - type: Transform -- uid: 9590 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 55.5,0.5 - parent: 1 - type: Transform -- uid: 9591 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-1.5 - parent: 1 - type: Transform -- uid: 9592 - type: AirlockMaintLocked - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-0.5 - parent: 1 - type: Transform -- uid: 9593 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-0.5 - parent: 1 - type: Transform -- uid: 9594 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-2.5 - parent: 1 - type: Transform -- uid: 9595 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-1.5 - parent: 1 - type: Transform -- uid: 9596 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-2.5 - parent: 1 - type: Transform -- uid: 9597 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-3.5 - parent: 1 - type: Transform -- uid: 9598 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-2.5 - parent: 1 - type: Transform -- uid: 9599 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-2.5 - parent: 1 - type: Transform -- uid: 9600 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-3.5 - parent: 1 - type: Transform -- uid: 9601 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-4.5 - parent: 1 - type: Transform -- uid: 9602 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-4.5 - parent: 1 - type: Transform -- uid: 9603 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-4.5 - parent: 1 - type: Transform -- uid: 9604 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-4.5 - parent: 1 - type: Transform -- uid: 9605 - type: AirlockBrigGlassLocked - components: - - pos: 40.5,-4.5 - parent: 1 - type: Transform -- uid: 9606 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 1 - type: Transform -- uid: 9607 - type: AirlockBrigLocked - components: - - name: lawyers office - type: MetaData - - pos: 38.5,-6.5 - parent: 1 - type: Transform -- uid: 9608 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-2.5 - parent: 1 - type: Transform -- uid: 9609 - type: WallSolid - components: - - pos: 49.5,-5.5 - parent: 1 - type: Transform -- uid: 9610 - type: WallSolid - components: - - pos: 49.5,-6.5 - parent: 1 - type: Transform -- uid: 9611 - type: WallSolid - components: - - pos: 49.5,-10.5 - parent: 1 - type: Transform -- uid: 9612 - type: WallSolid - components: - - pos: 48.5,-10.5 - parent: 1 - type: Transform -- uid: 9613 - type: AirlockMaintLocked - components: - - name: evac - type: MetaData - - pos: 48.5,-8.5 - parent: 1 - type: Transform -- uid: 9614 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-4.5 - parent: 1 - type: Transform -- uid: 9615 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-4.5 - parent: 1 - type: Transform -- uid: 9616 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-4.5 - parent: 1 - type: Transform -- uid: 9617 - type: AirlockMaintLocked - components: - - pos: 57.5,-4.5 - parent: 1 - type: Transform -- uid: 9618 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-4.5 - parent: 1 - type: Transform -- uid: 9619 - type: DisposalTrunk - components: - - pos: 34.5,17.5 - parent: 1 - type: Transform -- uid: 9620 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 34.5,16.5 - parent: 1 - type: Transform -- uid: 9621 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,16.5 - parent: 1 - type: Transform -- uid: 9622 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,16.5 - parent: 1 - type: Transform -- uid: 9623 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,16.5 - parent: 1 - type: Transform -- uid: 9624 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,16.5 - parent: 1 - type: Transform -- uid: 9625 - type: DisposalBend - components: - - pos: 29.5,17.5 - parent: 1 - type: Transform -- uid: 9626 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 29.5,16.5 - parent: 1 - type: Transform -- uid: 9627 - type: DisposalBend - components: - - pos: 41.5,6.5 - parent: 1 - type: Transform -- uid: 9628 - type: WallReinforced - components: - - pos: 43.5,6.5 - parent: 1 - type: Transform -- uid: 9629 - type: AirlockBrigGlassLocked - components: - - pos: 53.5,10.5 - parent: 1 - type: Transform -- uid: 9630 - type: Crowbar - components: - - pos: 73.47424,-38.51016 - parent: 1 - type: Transform -- uid: 9631 - type: CableMV - components: - - pos: 22.5,-8.5 - parent: 1 - type: Transform -- uid: 9632 - type: CableMV - components: - - pos: 23.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9633 - type: CableMV - components: - - pos: 24.5,-8.5 - parent: 1 - type: Transform -- uid: 9634 - type: CableMV - components: - - pos: 25.5,-8.5 - parent: 1 - type: Transform -- uid: 9635 - type: CableMV - components: - - pos: 26.5,-8.5 - parent: 1 - type: Transform -- uid: 9636 - type: CableMV - components: - - pos: 27.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9637 - type: CableMV - components: - - pos: 29.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9638 - type: CableMV - components: - - pos: 28.5,-8.5 - parent: 1 - type: Transform -- uid: 9639 - type: CableMV - components: - - pos: 30.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9640 - type: CableMV - components: - - pos: 31.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9641 - type: CableMV - components: - - pos: 32.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9642 - type: SpawnMobMouse - components: - - pos: -7.5,-81.5 - parent: 1 - type: Transform -- uid: 9643 - type: MouseTimedSpawner - components: - - pos: -56.5,-48.5 - parent: 1 - type: Transform -- uid: 9644 - type: MouseTimedSpawner - components: - - pos: 43.5,-10.5 - parent: 1 - type: Transform -- uid: 9645 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 41.5,5.5 - parent: 1 - type: Transform -- uid: 9646 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 41.5,4.5 - parent: 1 - type: Transform -- uid: 9647 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 41.5,3.5 - parent: 1 - type: Transform -- uid: 9648 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 41.5,2.5 - parent: 1 - type: Transform -- uid: 9649 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 41.5,1.5 - parent: 1 - type: Transform -- uid: 9650 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 40.5,1.5 - parent: 1 - type: Transform -- uid: 9651 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 42.5,1.5 - parent: 1 - type: Transform -- uid: 9652 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 43.5,1.5 - parent: 1 - type: Transform -- uid: 9653 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 44.5,1.5 - parent: 1 - type: Transform -- uid: 9654 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 45.5,1.5 - parent: 1 - type: Transform -- uid: 9655 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 46.5,1.5 - parent: 1 - type: Transform -- uid: 9656 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 47.5,1.5 - parent: 1 - type: Transform -- uid: 9657 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 48.5,1.5 - parent: 1 - type: Transform -- uid: 9658 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 49.5,1.5 - parent: 1 - type: Transform -- uid: 9659 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 50.5,1.5 - parent: 1 - type: Transform -- uid: 9660 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 51.5,1.5 - parent: 1 - type: Transform -- uid: 9661 - type: CrateFunBoardGames - components: - - pos: 63.5,6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 9662 - type: Table - components: - - pos: 58.5,20.5 - parent: 1 - type: Transform -- uid: 9663 - type: DisposalUnit - components: - - pos: 34.5,17.5 - parent: 1 - type: Transform -- uid: 9664 - type: CableApcExtension - components: - - pos: 51.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9665 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,17.5 - parent: 1 - type: Transform -- uid: 9666 - type: CableApcExtension - components: - - pos: 55.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9667 - type: CableApcExtension - components: - - pos: 55.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9668 - type: CableApcExtension - components: - - pos: 54.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9669 - type: CableApcExtension - components: - - pos: 53.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9670 - type: CableApcExtension - components: - - pos: 52.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9671 - type: CableApcExtension - components: - - pos: 51.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9672 - type: CableApcExtension - components: - - pos: 51.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9673 - type: SpawnMobMouse - components: - - pos: 6.5,32.5 - parent: 1 - type: Transform -- uid: 9674 - type: WindoorSecurityLocked - components: - - pos: 22.5,-44.5 - parent: 1 - type: Transform -- uid: 9675 - type: PoweredSmallLight - components: - - pos: 49.5,-33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9676 - type: CableApcExtension - components: - - pos: 51.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 9677 - type: HarmonicaInstrument - components: - - pos: 53.479427,24.562923 - parent: 1 - type: Transform -- uid: 9678 - type: WaterTankFull - components: - - pos: 45.5,21.5 - parent: 1 - type: Transform -- uid: 9679 - type: ChessBoard - components: - - pos: 52.446415,7.1683345 - parent: 1 - type: Transform -- uid: 9680 - type: MopItem - components: - - pos: 51.744904,15.651144 - parent: 1 - type: Transform -- uid: 9681 - type: MopBucket - components: - - pos: 52.057404,15.557394 - parent: 1 - type: Transform -- uid: 9682 - type: CrowbarRed - components: - - pos: 52.637024,11.413784 - parent: 1 - type: Transform -- uid: 9683 - type: FloorDrain - components: - - pos: 57.5,5.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 9684 - type: FloorDrain - components: - - pos: 47.5,8.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 9685 - type: FloorDrain - components: - - pos: 62.5,12.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 9686 - type: FloorDrain - components: - - pos: 62.5,22.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 9687 - type: AirlockMaintLocked - components: - - pos: 64.5,2.5 - parent: 1 - type: Transform -- uid: 9688 - type: DisposalUnit - components: - - pos: 52.5,3.5 - parent: 1 - type: Transform -- uid: 9689 - type: DisposalYJunction - components: - - rot: -1.5707963267948966 rad - pos: 52.5,1.5 - parent: 1 - type: Transform -- uid: 9690 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,2.5 - parent: 1 - type: Transform -- uid: 9691 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,0.5 - parent: 1 - type: Transform -- uid: 9692 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,-0.5 - parent: 1 - type: Transform -- uid: 9693 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,-1.5 - parent: 1 - type: Transform -- uid: 9694 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,-2.5 - parent: 1 - type: Transform -- uid: 9695 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,-3.5 - parent: 1 - type: Transform -- uid: 9696 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,-4.5 - parent: 1 - type: Transform -- uid: 9697 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,-5.5 - parent: 1 - type: Transform -- uid: 9698 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,-6.5 - parent: 1 - type: Transform -- uid: 9699 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,-7.5 - parent: 1 - type: Transform -- uid: 9700 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 52.5,-8.5 - parent: 1 - type: Transform -- uid: 9701 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: 53.5,3.5 - parent: 1 - type: Transform -- uid: 9702 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 51.5,3.5 - parent: 1 - type: Transform -- uid: 9703 - type: DeployableBarrier - components: - - anchored: False - pos: 31.5,19.5 - parent: 1 - type: Transform -- uid: 9704 - type: WallReinforced - components: - - pos: 33.5,19.5 - parent: 1 - type: Transform -- uid: 9705 - type: Grille - components: - - pos: 27.5,22.5 - parent: 1 - type: Transform -- uid: 9706 - type: BannerSecurity - components: - - pos: 27.5,8.5 - parent: 1 - type: Transform -- uid: 9707 - type: BannerSecurity - components: - - pos: 23.5,8.5 - parent: 1 - type: Transform -- uid: 9708 - type: BannerMedical - components: - - pos: 1.5,-43.5 - parent: 1 - type: Transform -- uid: 9709 - type: BannerMedical - components: - - pos: -10.5,-43.5 - parent: 1 - type: Transform -- uid: 9710 - type: BannerRevolution - components: - - pos: 0.5,-73.5 - parent: 1 - type: Transform -- uid: 9711 - type: BannerNanotrasen - components: - - pos: 28.5,-16.5 - parent: 1 - type: Transform -- uid: 9712 - type: BannerNanotrasen - components: - - pos: 22.5,-16.5 - parent: 1 - type: Transform -- uid: 9713 - type: PosterLegitDickGumshue - components: - - pos: 17.5,-15.5 - parent: 1 - type: Transform -- uid: 9714 - type: PosterContrabandEAT - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform -- uid: 9715 - type: PosterContrabandLustyExomorph - components: - - pos: -9.5,-73.5 - parent: 1 - type: Transform -- uid: 9716 - type: WallSolid - components: - - pos: 19.5,-48.5 - parent: 1 - type: Transform -- uid: 9717 - type: WallSolid - components: - - pos: 18.5,-48.5 - parent: 1 - type: Transform -- uid: 9718 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-22.5 - parent: 1 - type: Transform -- uid: 9719 - type: TableReinforced - components: - - pos: -17.5,-22.5 - parent: 1 - type: Transform -- uid: 9720 - type: TableReinforced - components: - - pos: -17.5,-23.5 - parent: 1 - type: Transform -- uid: 9721 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-23.5 - parent: 1 - type: Transform -- uid: 9722 - type: AirlockMaintLocked - components: - - pos: -17.5,-14.5 - parent: 1 - type: Transform -- uid: 9723 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9724 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9725 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9726 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9727 - type: GasPipeTJunction - components: - - pos: 42.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9728 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9729 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9730 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9731 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9732 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9733 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9734 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9735 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9736 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9737 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9738 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9739 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9740 - type: GasPipeTJunction - components: - - pos: 44.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9741 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 45.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9742 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9743 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9744 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9745 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9746 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9747 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9748 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9749 - type: GasPipeTJunction - components: - - pos: 53.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9750 - type: GasPipeTJunction - components: - - pos: 52.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9751 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9752 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9753 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9754 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9755 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9756 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 55.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9757 - type: GasPipeStraight - components: - - pos: 52.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9758 - type: GasPipeStraight - components: - - pos: 52.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9759 - type: GasPipeStraight - components: - - pos: 52.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9760 - type: GasPipeStraight - components: - - pos: 52.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9761 - type: GasPipeStraight - components: - - pos: 52.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9762 - type: GasPipeStraight - components: - - pos: 52.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9763 - type: GasPipeStraight - components: - - pos: 52.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9764 - type: GasPipeStraight - components: - - pos: 52.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9765 - type: GasPipeStraight - components: - - pos: 52.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9766 - type: GasPipeStraight - components: - - pos: 53.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9767 - type: GasPipeStraight - components: - - pos: 53.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9768 - type: GasPipeStraight - components: - - pos: 53.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9769 - type: GasPipeStraight - components: - - pos: 53.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9770 - type: GasPipeStraight - components: - - pos: 53.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9771 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9772 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9773 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9774 - type: GasVentPump - components: - - pos: 45.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9775 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 57.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9776 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 56.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9777 - type: FirelockGlass - components: - - pos: 51.5,-3.5 - parent: 1 - type: Transform -- uid: 9778 - type: FirelockGlass - components: - - pos: 52.5,-3.5 - parent: 1 - type: Transform -- uid: 9779 - type: FirelockGlass - components: - - pos: 53.5,-3.5 - parent: 1 - type: Transform -- uid: 9780 - type: TableCounterWood - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-4.5 - parent: 1 - type: Transform -- uid: 9781 - type: TableCounterWood - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-3.5 - parent: 1 - type: Transform -- uid: 9782 - type: TableCounterWood - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-2.5 - parent: 1 - type: Transform -- uid: 9783 - type: TableCounterWood - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-2.5 - parent: 1 - type: Transform -- uid: 9784 - type: TableCounterWood - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-2.5 - parent: 1 - type: Transform -- uid: 9785 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-4.5 - parent: 1 - type: Transform -- uid: 9786 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-2.5 - parent: 1 - type: Transform -- uid: 9787 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-3.5 - parent: 1 - type: Transform -- uid: 9788 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-1.5 - parent: 1 - type: Transform -- uid: 9789 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-5.5 - parent: 1 - type: Transform -- uid: 9790 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-5.5 - parent: 1 - type: Transform -- uid: 9791 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-6.5 - parent: 1 - type: Transform -- uid: 9792 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-5.5 - parent: 1 - type: Transform -- uid: 9793 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-6.5 - parent: 1 - type: Transform -- uid: 9794 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-7.5 - parent: 1 - type: Transform -- uid: 9795 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-3.5 - parent: 1 - type: Transform -- uid: 9796 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-5.5 - parent: 1 - type: Transform -- uid: 9797 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-5.5 - parent: 1 - type: Transform -- uid: 9798 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-5.5 - parent: 1 - type: Transform -- uid: 9799 - type: AirlockBrigGlassLocked - components: - - pos: 40.5,-1.5 - parent: 1 - type: Transform -- uid: 9800 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-3.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9801 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-4.5 - parent: 1 - type: Transform -- uid: 9802 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-3.5 - parent: 1 - type: Transform -- uid: 9803 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-2.5 - parent: 1 - type: Transform -- uid: 9804 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-5.5 - parent: 1 - type: Transform -- uid: 9805 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-3.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 9806 - type: LampGold - components: - - rot: 1.5707963267948966 rad - pos: 43.557644,-4.1465535 - parent: 1 - type: Transform -- uid: 9807 - type: BriefcaseBrownFilled - components: - - pos: 43.51077,-2.4121785 - parent: 1 - type: Transform -- uid: 9808 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-3.5 - parent: 1 - type: Transform -- uid: 9809 - type: filingCabinetRandom - components: - - pos: 41.5,-2.5 - parent: 1 - type: Transform -- uid: 9810 - type: VendingMachineLawDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 41.5,-3.5 - parent: 1 - type: Transform -- uid: 9811 - type: WallmountTelevision - components: - - pos: 44.5,3.5 - parent: 1 - type: Transform -- uid: 9812 - type: Table - components: - - pos: 47.5,4.5 - parent: 1 - type: Transform -- uid: 9813 - type: ComputerTelevision - components: - - pos: 47.5,4.5 - parent: 1 - type: Transform -- uid: 9814 - type: GasPipeStraight - components: - - pos: 42.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9815 - type: GasPipeStraight - components: - - pos: 42.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9816 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9817 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9818 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9819 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9820 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 42.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9821 - type: GasPipeFourway - components: - - pos: 44.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9822 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9823 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9824 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9825 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9826 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9827 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9828 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9829 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9830 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9831 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9832 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9833 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9834 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9835 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9836 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9837 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9838 - type: GasPipeStraight - components: - - pos: 40.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9839 - type: GasPipeStraight - components: - - pos: 40.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9840 - type: GasPipeStraight - components: - - pos: 40.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9841 - type: GasPipeStraight - components: - - pos: 41.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9842 - type: GasPipeStraight - components: - - pos: 41.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9843 - type: GasPipeStraight - components: - - pos: 41.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9844 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 41.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9845 - type: GasPipeStraight - components: - - pos: 41.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9846 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 29.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9847 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 40.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9848 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 41.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9849 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 29.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9850 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9851 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 9852 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 38.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9853 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 36.5,-38.5 - parent: 1 - type: Transform -- uid: 9854 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 35.5,-38.5 - parent: 1 - type: Transform -- uid: 9855 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 34.5,-38.5 - parent: 1 - type: Transform -- uid: 9856 - type: WallSolid - components: - - pos: -14.5,-18.5 - parent: 1 - type: Transform -- uid: 9857 - type: MaintenanceFluffSpawner - components: - - pos: -15.5,-29.5 - parent: 1 - type: Transform -- uid: 9858 - type: GasPipeStraight - components: - - pos: 24.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9859 - type: GasPipeStraight - components: - - pos: 24.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9860 - type: GasPipeStraight - components: - - pos: 24.5,-48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9861 - type: GasPipeStraight - components: - - pos: 24.5,-49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9862 - type: GasPipeStraight - components: - - pos: 24.5,-50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9863 - type: GasPipeStraight - components: - - pos: 24.5,-51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9864 - type: WallSolid - components: - - pos: 24.5,-54.5 - parent: 1 - type: Transform -- uid: 9865 - type: ReinforcedWindow - components: - - pos: 24.5,-58.5 - parent: 1 - type: Transform -- uid: 9866 - type: ReinforcedWindow - components: - - pos: 24.5,-59.5 - parent: 1 - type: Transform -- uid: 9867 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 25.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9868 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9869 - type: FireAlarm - components: - - pos: 28.5,-57.5 - parent: 1 - type: Transform - - devices: - - invalid - - 12719 - - 12641 - - 12640 - - 12642 - - 2394 - - 2449 - - 6992 - - 21555 - - 21629 - type: DeviceList -- uid: 9870 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9871 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9872 - type: GasPipeStraight - components: - - pos: 26.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9873 - type: GasPipeStraight - components: - - pos: 26.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9874 - type: GasPipeStraight - components: - - pos: 26.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9875 - type: GasPipeStraight - components: - - pos: 26.5,-49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9876 - type: GasPipeStraight - components: - - pos: 26.5,-50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9877 - type: GasPipeStraight - components: - - pos: 26.5,-51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9878 - type: GasPipeStraight - components: - - pos: 26.5,-52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9879 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9880 - type: GasPipeStraight - components: - - pos: 26.5,-54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9881 - type: GasPipeStraight - components: - - pos: 26.5,-55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9882 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9883 - type: GasPipeStraight - components: - - pos: 26.5,-57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 9884 - type: CableHV - components: - - pos: 25.5,-52.5 - parent: 1 - type: Transform -- uid: 9885 - type: CableHV - components: - - pos: 25.5,-53.5 - parent: 1 - type: Transform -- uid: 9886 - type: CableHV - components: - - pos: 25.5,-54.5 - parent: 1 - type: Transform -- uid: 9887 - type: CableHV - components: - - pos: 25.5,-55.5 - parent: 1 - type: Transform -- uid: 9888 - type: CableHV - components: - - pos: 25.5,-56.5 - parent: 1 - type: Transform -- uid: 9889 - type: CableHV - components: - - pos: 25.5,-57.5 - parent: 1 - type: Transform -- uid: 9890 - type: CableHV - components: - - pos: 25.5,-58.5 - parent: 1 - type: Transform -- uid: 9891 - type: CableHV - components: - - pos: 25.5,-59.5 - parent: 1 - type: Transform -- uid: 9892 - type: CableHV - components: - - pos: 26.5,-59.5 - parent: 1 - type: Transform -- uid: 9893 - type: CableHV - components: - - pos: 27.5,-59.5 - parent: 1 - type: Transform -- uid: 9894 - type: CableHV - components: - - pos: 28.5,-59.5 - parent: 1 - type: Transform -- uid: 9895 - type: CableHV - components: - - pos: 29.5,-59.5 - parent: 1 - type: Transform -- uid: 9896 - type: CableHV - components: - - pos: 30.5,-59.5 - parent: 1 - type: Transform -- uid: 9897 - type: CableHV - components: - - pos: 31.5,-59.5 - parent: 1 - type: Transform -- uid: 9898 - type: CableHV - components: - - pos: 32.5,-59.5 - parent: 1 - type: Transform -- uid: 9899 - type: CableHV - components: - - pos: 33.5,-59.5 - parent: 1 - type: Transform -- uid: 9900 - type: CableHV - components: - - pos: 34.5,-59.5 - parent: 1 - type: Transform -- uid: 9901 - type: DisposalPipe - components: - - pos: 25.5,-47.5 - parent: 1 - type: Transform -- uid: 9902 - type: DisposalPipe - components: - - pos: 25.5,-48.5 - parent: 1 - type: Transform -- uid: 9903 - type: DisposalPipe - components: - - pos: 25.5,-49.5 - parent: 1 - type: Transform -- uid: 9904 - type: DisposalPipe - components: - - pos: 25.5,-50.5 - parent: 1 - type: Transform -- uid: 9905 - type: DisposalPipe - components: - - pos: 25.5,-51.5 - parent: 1 - type: Transform -- uid: 9906 - type: DisposalPipe - components: - - pos: 25.5,-52.5 - parent: 1 - type: Transform -- uid: 9907 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-37.5 - parent: 1 - type: Transform -- uid: 9908 - type: DisposalPipe - components: - - pos: 25.5,-54.5 - parent: 1 - type: Transform -- uid: 9909 - type: DisposalPipe - components: - - pos: 25.5,-55.5 - parent: 1 - type: Transform -- uid: 9910 - type: DisposalPipe - components: - - pos: 25.5,-56.5 - parent: 1 - type: Transform -- uid: 9911 - type: DisposalPipe - components: - - pos: 25.5,-57.5 - parent: 1 - type: Transform -- uid: 9912 - type: DisposalPipe - components: - - pos: 25.5,-58.5 - parent: 1 - type: Transform -- uid: 9913 - type: PoweredSmallLight - components: - - pos: -8.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9914 - type: PoweredSmallLight - components: - - pos: -16.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9915 - type: Window - components: - - pos: -12.5,-16.5 - parent: 1 - type: Transform -- uid: 9916 - type: WallSolid - components: - - pos: -17.5,-21.5 - parent: 1 - type: Transform -- uid: 9917 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -14.5,-10.5 - parent: 1 - type: Transform -- uid: 9918 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-16.5 - parent: 1 - type: Transform -- uid: 9919 - type: Poweredlight - components: - - pos: -4.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9920 - type: Poweredlight - components: - - pos: 11.5,22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9921 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9922 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -2.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9923 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 15.5,14.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -57047.77 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 3189 - Close: - - port: Off - uid: 3189 - Toggle: [] - type: SignalReceiver -- uid: 9924 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9925 - type: Poweredlight - components: - - pos: -9.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9926 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 9927 - type: SprayBottleSpaceCleaner - components: - - pos: -13.62392,-22.29671 - parent: 1 - type: Transform -- uid: 9928 - type: SprayBottleSpaceCleaner - components: - - pos: -13.389545,-22.218584 - parent: 1 - type: Transform -- uid: 9929 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.500859,-4.4425125 - parent: 1 - type: Transform -- uid: 9930 - type: SpawnPointSecurityOfficer - components: - - pos: 7.5,16.5 - parent: 1 - type: Transform -- uid: 9931 - type: SpawnPointSecurityOfficer - components: - - pos: 5.5,16.5 - parent: 1 - type: Transform -- uid: 9932 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-43.5 - parent: 1 - type: Transform -- uid: 9933 - type: MouseTimedSpawner - components: - - pos: 62.5,13.5 - parent: 1 - type: Transform -- uid: 9934 - type: SpawnMobMouse - components: - - pos: 35.5,22.5 - parent: 1 - type: Transform -- uid: 9935 - type: SpawnMobMouse - components: - - pos: -15.5,13.5 - parent: 1 - type: Transform -- uid: 9936 - type: Grille - components: - - pos: -15.5,2.5 - parent: 1 - type: Transform -- uid: 9937 - type: CableHV - components: - - pos: -13.5,1.5 - parent: 1 - type: Transform -- uid: 9938 - type: CableHV - components: - - pos: -13.5,0.5 - parent: 1 - type: Transform -- uid: 9939 - type: CableHV - components: - - pos: -13.5,-0.5 - parent: 1 - type: Transform -- uid: 9940 - type: CableHV - components: - - pos: -13.5,-1.5 - parent: 1 - type: Transform -- uid: 9941 - type: CableHV - components: - - pos: -13.5,-2.5 - parent: 1 - type: Transform -- uid: 9942 - type: CableHV - components: - - pos: -13.5,-3.5 - parent: 1 - type: Transform -- uid: 9943 - type: CableHV - components: - - pos: -13.5,-4.5 - parent: 1 - type: Transform -- uid: 9944 - type: CableHV - components: - - pos: -13.5,-5.5 - parent: 1 - type: Transform -- uid: 9945 - type: CableHV - components: - - pos: -14.5,-5.5 - parent: 1 - type: Transform -- uid: 9946 - type: CableHV - components: - - pos: -15.5,-5.5 - parent: 1 - type: Transform -- uid: 9947 - type: CableHV - components: - - pos: -16.5,-5.5 - parent: 1 - type: Transform -- uid: 9948 - type: CableHV - components: - - pos: -17.5,-5.5 - parent: 1 - type: Transform -- uid: 9949 - type: CableHV - components: - - pos: -18.5,-5.5 - parent: 1 - type: Transform -- uid: 9950 - type: CableHV - components: - - pos: -19.5,-5.5 - parent: 1 - type: Transform -- uid: 9951 - type: CableHV - components: - - pos: -19.5,-6.5 - parent: 1 - type: Transform -- uid: 9952 - type: CableHV - components: - - pos: -19.5,-7.5 - parent: 1 - type: Transform -- uid: 9953 - type: CableHV - components: - - pos: -19.5,-8.5 - parent: 1 - type: Transform -- uid: 9954 - type: CableHV - components: - - pos: -19.5,-9.5 - parent: 1 - type: Transform -- uid: 9955 - type: CableHV - components: - - pos: -19.5,-10.5 - parent: 1 - type: Transform -- uid: 9956 - type: CableHV - components: - - pos: -19.5,-11.5 - parent: 1 - type: Transform -- uid: 9957 - type: CableHV - components: - - pos: -19.5,-12.5 - parent: 1 - type: Transform -- uid: 9958 - type: CableHV - components: - - pos: -19.5,-13.5 - parent: 1 - type: Transform -- uid: 9959 - type: CableHV - components: - - pos: -19.5,-14.5 - parent: 1 - type: Transform -- uid: 9960 - type: CableHV - components: - - pos: -19.5,-15.5 - parent: 1 - type: Transform -- uid: 9961 - type: CableHV - components: - - pos: -19.5,-16.5 - parent: 1 - type: Transform -- uid: 9962 - type: CableHV - components: - - pos: -19.5,-17.5 - parent: 1 - type: Transform -- uid: 9963 - type: CableHV - components: - - pos: -19.5,-18.5 - parent: 1 - type: Transform -- uid: 9964 - type: CableHV - components: - - pos: -19.5,-19.5 - parent: 1 - type: Transform -- uid: 9965 - type: CableHV - components: - - pos: -19.5,-20.5 - parent: 1 - type: Transform -- uid: 9966 - type: CableHV - components: - - pos: -19.5,-21.5 - parent: 1 - type: Transform -- uid: 9967 - type: CableHV - components: - - pos: -19.5,-22.5 - parent: 1 - type: Transform -- uid: 9968 - type: CableHV - components: - - pos: -19.5,-23.5 - parent: 1 - type: Transform -- uid: 9969 - type: CableHV - components: - - pos: -19.5,-24.5 - parent: 1 - type: Transform -- uid: 9970 - type: CableHV - components: - - pos: -19.5,-25.5 - parent: 1 - type: Transform -- uid: 9971 - type: CableHV - components: - - pos: -19.5,-26.5 - parent: 1 - type: Transform -- uid: 9972 - type: CableHV - components: - - pos: -19.5,-27.5 - parent: 1 - type: Transform -- uid: 9973 - type: CableHV - components: - - pos: -18.5,-26.5 - parent: 1 - type: Transform -- uid: 9974 - type: CableHV - components: - - pos: 4.5,-15.5 - parent: 1 - type: Transform -- uid: 9975 - type: Catwalk - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform -- uid: 9976 - type: Catwalk - components: - - pos: 2.5,-16.5 - parent: 1 - type: Transform -- uid: 9977 - type: Catwalk - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform -- uid: 9978 - type: Catwalk - components: - - pos: 1.5,-17.5 - parent: 1 - type: Transform -- uid: 9979 - type: Catwalk - components: - - pos: 0.5,-17.5 - parent: 1 - type: Transform -- uid: 9980 - type: Catwalk - components: - - pos: -0.5,-17.5 - parent: 1 - type: Transform -- uid: 9981 - type: Catwalk - components: - - pos: -0.5,-17.5 - parent: 1 - type: Transform -- uid: 9982 - type: Catwalk - components: - - pos: -1.5,-17.5 - parent: 1 - type: Transform -- uid: 9983 - type: Catwalk - components: - - pos: -1.5,-18.5 - parent: 1 - type: Transform -- uid: 9984 - type: Catwalk - components: - - pos: -1.5,-19.5 - parent: 1 - type: Transform -- uid: 9985 - type: Catwalk - components: - - pos: -1.5,-20.5 - parent: 1 - type: Transform -- uid: 9986 - type: Catwalk - components: - - pos: 14.5,-14.5 - parent: 1 - type: Transform -- uid: 9987 - type: Catwalk - components: - - pos: 13.5,-14.5 - parent: 1 - type: Transform -- uid: 9988 - type: Catwalk - components: - - pos: 12.5,-14.5 - parent: 1 - type: Transform -- uid: 9989 - type: Catwalk - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform -- uid: 9990 - type: Catwalk - components: - - pos: 10.5,-14.5 - parent: 1 - type: Transform -- uid: 9991 - type: Catwalk - components: - - pos: 9.5,-14.5 - parent: 1 - type: Transform -- uid: 9992 - type: Catwalk - components: - - pos: 8.5,-14.5 - parent: 1 - type: Transform -- uid: 9993 - type: Catwalk - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform -- uid: 9994 - type: Catwalk - components: - - pos: 14.5,-5.5 - parent: 1 - type: Transform -- uid: 9995 - type: Catwalk - components: - - pos: 14.5,-6.5 - parent: 1 - type: Transform -- uid: 9996 - type: Catwalk - components: - - pos: 14.5,-4.5 - parent: 1 - type: Transform -- uid: 9997 - type: Catwalk - components: - - pos: 56.5,1.5 - parent: 1 - type: Transform -- uid: 9998 - type: Catwalk - components: - - pos: 57.5,2.5 - parent: 1 - type: Transform -- uid: 9999 - type: Catwalk - components: - - pos: 56.5,2.5 - parent: 1 - type: Transform -- uid: 10000 - type: Catwalk - components: - - pos: 57.5,1.5 - parent: 1 - type: Transform -- uid: 10001 - type: Catwalk - components: - - pos: 58.5,1.5 - parent: 1 - type: Transform -- uid: 10002 - type: Catwalk - components: - - pos: 59.5,1.5 - parent: 1 - type: Transform -- uid: 10003 - type: Catwalk - components: - - pos: 60.5,1.5 - parent: 1 - type: Transform -- uid: 10004 - type: Catwalk - components: - - pos: 61.5,1.5 - parent: 1 - type: Transform -- uid: 10005 - type: Catwalk - components: - - pos: 62.5,1.5 - parent: 1 - type: Transform -- uid: 10006 - type: Catwalk - components: - - pos: 62.5,2.5 - parent: 1 - type: Transform -- uid: 10007 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 38.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10008 - type: WindowReinforcedDirectional - components: - - pos: -10.5,-82.5 - parent: 1 - type: Transform -- uid: 10009 - type: AirSensor - components: - - pos: 51.5,1.5 - parent: 1 - type: Transform -- uid: 10010 - type: CableHV - components: - - pos: 52.5,-1.5 - parent: 1 - type: Transform -- uid: 10011 - type: CableHV - components: - - pos: 52.5,-2.5 - parent: 1 - type: Transform -- uid: 10012 - type: CableHV - components: - - pos: 52.5,-3.5 - parent: 1 - type: Transform -- uid: 10013 - type: CableHV - components: - - pos: 52.5,-4.5 - parent: 1 - type: Transform -- uid: 10014 - type: CableHV - components: - - pos: 52.5,-5.5 - parent: 1 - type: Transform -- uid: 10015 - type: CableHV - components: - - pos: 52.5,-6.5 - parent: 1 - type: Transform -- uid: 10016 - type: CableHV - components: - - pos: 52.5,-7.5 - parent: 1 - type: Transform -- uid: 10017 - type: WallSolid - components: - - pos: 55.5,-7.5 - parent: 1 - type: Transform -- uid: 10018 - type: CableHV - components: - - pos: 51.5,-7.5 - parent: 1 - type: Transform -- uid: 10019 - type: CableHV - components: - - pos: 50.5,-7.5 - parent: 1 - type: Transform -- uid: 10020 - type: CableHV - components: - - pos: 51.5,-1.5 - parent: 1 - type: Transform -- uid: 10021 - type: CableHV - components: - - pos: 50.5,-1.5 - parent: 1 - type: Transform -- uid: 10022 - type: CableHV - components: - - pos: 49.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10023 - type: CableHV - components: - - pos: 48.5,-1.5 - parent: 1 - type: Transform -- uid: 10024 - type: CableHV - components: - - pos: 48.5,-2.5 - parent: 1 - type: Transform -- uid: 10025 - type: CableHV - components: - - pos: 48.5,-3.5 - parent: 1 - type: Transform -- uid: 10026 - type: CableHV - components: - - pos: 47.5,-3.5 - parent: 1 - type: Transform -- uid: 10027 - type: SMESBasic - components: - - pos: 48.5,-3.5 - parent: 1 - type: Transform -- uid: 10028 - type: CableTerminal - components: - - pos: 48.5,-2.5 - parent: 1 - type: Transform -- uid: 10029 - type: SubstationBasic - components: - - pos: 47.5,-3.5 - parent: 1 - type: Transform -- uid: 10030 - type: WallSolid - components: - - pos: 49.5,-3.5 - parent: 1 - type: Transform -- uid: 10031 - type: Grille - components: - - pos: 48.5,-0.5 - parent: 1 - type: Transform -- uid: 10032 - type: Grille - components: - - pos: 43.5,-0.5 - parent: 1 - type: Transform -- uid: 10033 - type: Grille - components: - - pos: 42.5,-0.5 - parent: 1 - type: Transform -- uid: 10034 - type: Grille - components: - - pos: 41.5,-0.5 - parent: 1 - type: Transform -- uid: 10035 - type: Grille - components: - - pos: 39.5,-0.5 - parent: 1 - type: Transform -- uid: 10036 - type: Grille - components: - - pos: 37.5,-0.5 - parent: 1 - type: Transform -- uid: 10037 - type: Grille - components: - - pos: 35.5,-1.5 - parent: 1 - type: Transform -- uid: 10038 - type: Grille - components: - - pos: 35.5,-2.5 - parent: 1 - type: Transform -- uid: 10039 - type: Grille - components: - - pos: 35.5,-4.5 - parent: 1 - type: Transform -- uid: 10040 - type: Grille - components: - - pos: 35.5,-5.5 - parent: 1 - type: Transform -- uid: 10041 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10042 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10043 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10044 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10045 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10046 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10047 - type: LockerElectricalSuppliesFilled - components: - - pos: 46.5,-3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10048 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 36.5,24.5 - parent: 1 - type: Transform -- uid: 10049 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 38.5,24.5 - parent: 1 - type: Transform -- uid: 10050 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 41.5,24.5 - parent: 1 - type: Transform -- uid: 10051 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 33.5,27.5 - parent: 1 - type: Transform -- uid: 10052 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 40.5,24.5 - parent: 1 - type: Transform -- uid: 10053 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 42.5,24.5 - parent: 1 - type: Transform -- uid: 10054 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 22.5,27.5 - parent: 1 - type: Transform -- uid: 10055 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 25.5,29.5 - parent: 1 - type: Transform -- uid: 10056 - type: WallReinforced - components: - - pos: 42.5,22.5 - parent: 1 - type: Transform -- uid: 10057 - type: CableApcExtension - components: - - pos: 42.5,21.5 - parent: 1 - type: Transform -- uid: 10058 - type: CableApcExtension - components: - - pos: 42.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10059 - type: SignPrison - components: - - name: open prison sign - type: MetaData - - pos: 47.5,3.5 - parent: 1 - type: Transform -- uid: 10060 - type: ReinforcedWindow - components: - - pos: 66.5,25.5 - parent: 1 - type: Transform -- uid: 10061 - type: ReinforcedWindow - components: - - pos: 66.5,23.5 - parent: 1 - type: Transform -- uid: 10062 - type: ReinforcedWindow - components: - - pos: 64.5,27.5 - parent: 1 - type: Transform -- uid: 10063 - type: ReinforcedWindow - components: - - pos: 62.5,27.5 - parent: 1 - type: Transform -- uid: 10064 - type: Grille - components: - - pos: 66.5,25.5 - parent: 1 - type: Transform -- uid: 10065 - type: Grille - components: - - pos: 66.5,23.5 - parent: 1 - type: Transform -- uid: 10066 - type: Grille - components: - - pos: 64.5,27.5 - parent: 1 - type: Transform -- uid: 10067 - type: Grille - components: - - pos: 62.5,27.5 - parent: 1 - type: Transform -- uid: 10068 - type: WallSolid - components: - - pos: 58.5,0.5 - parent: 1 - type: Transform -- uid: 10069 - type: WallSolid - components: - - pos: 58.5,-1.5 - parent: 1 - type: Transform -- uid: 10070 - type: WallSolid - components: - - pos: 58.5,-2.5 - parent: 1 - type: Transform -- uid: 10071 - type: WallSolid - components: - - pos: 57.5,-2.5 - parent: 1 - type: Transform -- uid: 10072 - type: WallSolid - components: - - pos: 59.5,-4.5 - parent: 1 - type: Transform -- uid: 10073 - type: WallSolid - components: - - pos: 48.5,-9.5 - parent: 1 - type: Transform -- uid: 10074 - type: WallSolid - components: - - pos: 48.5,-6.5 - parent: 1 - type: Transform -- uid: 10075 - type: WallSolid - components: - - pos: 48.5,-7.5 - parent: 1 - type: Transform -- uid: 10076 - type: CableMV - components: - - pos: 47.5,-3.5 - parent: 1 - type: Transform -- uid: 10077 - type: CableMV - components: - - pos: 47.5,-2.5 - parent: 1 - type: Transform -- uid: 10078 - type: CableMV - components: - - pos: 47.5,-1.5 - parent: 1 - type: Transform -- uid: 10079 - type: CableMV - components: - - pos: 46.5,-1.5 - parent: 1 - type: Transform -- uid: 10080 - type: CableMV - components: - - pos: 46.5,-0.5 - parent: 1 - type: Transform -- uid: 10081 - type: CableMV - components: - - pos: 46.5,0.5 - parent: 1 - type: Transform -- uid: 10082 - type: CableMV - components: - - pos: 47.5,0.5 - parent: 1 - type: Transform -- uid: 10083 - type: CableMV - components: - - pos: 48.5,0.5 - parent: 1 - type: Transform -- uid: 10084 - type: CableMV - components: - - pos: 49.5,0.5 - parent: 1 - type: Transform -- uid: 10085 - type: CableMV - components: - - pos: 49.5,1.5 - parent: 1 - type: Transform -- uid: 10086 - type: CableMV - components: - - pos: 49.5,2.5 - parent: 1 - type: Transform -- uid: 10087 - type: CableMV - components: - - pos: 49.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10088 - type: APCBasic - components: - - pos: 49.5,3.5 - parent: 1 - type: Transform -- uid: 10089 - type: CableApcExtension - components: - - pos: 49.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10090 - type: CableApcExtension - components: - - pos: 49.5,2.5 - parent: 1 - type: Transform -- uid: 10091 - type: CableApcExtension - components: - - pos: 48.5,2.5 - parent: 1 - type: Transform -- uid: 10092 - type: CableApcExtension - components: - - pos: 48.5,1.5 - parent: 1 - type: Transform -- uid: 10093 - type: CableApcExtension - components: - - pos: 47.5,1.5 - parent: 1 - type: Transform -- uid: 10094 - type: CableApcExtension - components: - - pos: 46.5,1.5 - parent: 1 - type: Transform -- uid: 10095 - type: CableApcExtension - components: - - pos: 45.5,1.5 - parent: 1 - type: Transform -- uid: 10096 - type: CableApcExtension - components: - - pos: 44.5,1.5 - parent: 1 - type: Transform -- uid: 10097 - type: CableApcExtension - components: - - pos: 43.5,1.5 - parent: 1 - type: Transform -- uid: 10098 - type: CableApcExtension - components: - - pos: 42.5,1.5 - parent: 1 - type: Transform -- uid: 10099 - type: CableApcExtension - components: - - pos: 42.5,0.5 - parent: 1 - type: Transform -- uid: 10100 - type: CableApcExtension - components: - - pos: 42.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10101 - type: CableApcExtension - components: - - pos: 42.5,-1.5 - parent: 1 - type: Transform -- uid: 10102 - type: CableApcExtension - components: - - pos: 42.5,-2.5 - parent: 1 - type: Transform -- uid: 10103 - type: CableApcExtension - components: - - pos: 42.5,-3.5 - parent: 1 - type: Transform -- uid: 10104 - type: CableApcExtension - components: - - pos: 41.5,-1.5 - parent: 1 - type: Transform -- uid: 10105 - type: CableApcExtension - components: - - pos: 40.5,-1.5 - parent: 1 - type: Transform -- uid: 10106 - type: CableApcExtension - components: - - pos: 39.5,-1.5 - parent: 1 - type: Transform -- uid: 10107 - type: CableApcExtension - components: - - pos: 38.5,-1.5 - parent: 1 - type: Transform -- uid: 10108 - type: CableApcExtension - components: - - pos: 37.5,-1.5 - parent: 1 - type: Transform -- uid: 10109 - type: CableApcExtension - components: - - pos: 37.5,-2.5 - parent: 1 - type: Transform -- uid: 10110 - type: CableApcExtension - components: - - pos: 37.5,-3.5 - parent: 1 - type: Transform -- uid: 10111 - type: CableApcExtension - components: - - pos: 43.5,-1.5 - parent: 1 - type: Transform -- uid: 10112 - type: CableApcExtension - components: - - pos: 44.5,-1.5 - parent: 1 - type: Transform -- uid: 10113 - type: CableApcExtension - components: - - pos: 44.5,-2.5 - parent: 1 - type: Transform -- uid: 10114 - type: CableApcExtension - components: - - pos: 38.5,-3.5 - parent: 1 - type: Transform -- uid: 10115 - type: CableApcExtension - components: - - pos: 38.5,-4.5 - parent: 1 - type: Transform -- uid: 10116 - type: CableApcExtension - components: - - pos: 38.5,-5.5 - parent: 1 - type: Transform -- uid: 10117 - type: CableApcExtension - components: - - pos: 38.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10118 - type: CableApcExtension - components: - - pos: 38.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10119 - type: CableApcExtension - components: - - pos: 38.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10120 - type: CableApcExtension - components: - - pos: 39.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10121 - type: CableApcExtension - components: - - pos: 46.5,0.5 - parent: 1 - type: Transform -- uid: 10122 - type: CableApcExtension - components: - - pos: 46.5,-0.5 - parent: 1 - type: Transform -- uid: 10123 - type: CableApcExtension - components: - - pos: 46.5,-1.5 - parent: 1 - type: Transform -- uid: 10124 - type: CableApcExtension - components: - - pos: 47.5,-1.5 - parent: 1 - type: Transform -- uid: 10125 - type: CableApcExtension - components: - - pos: 47.5,-2.5 - parent: 1 - type: Transform -- uid: 10126 - type: CableApcExtension - components: - - pos: 41.5,1.5 - parent: 1 - type: Transform -- uid: 10127 - type: CableApcExtension - components: - - pos: 40.5,1.5 - parent: 1 - type: Transform -- uid: 10128 - type: CableApcExtension - components: - - pos: 39.5,1.5 - parent: 1 - type: Transform -- uid: 10129 - type: CableApcExtension - components: - - pos: 38.5,1.5 - parent: 1 - type: Transform -- uid: 10130 - type: CableApcExtension - components: - - pos: 37.5,1.5 - parent: 1 - type: Transform -- uid: 10131 - type: CableApcExtension - components: - - pos: 41.5,2.5 - parent: 1 - type: Transform -- uid: 10132 - type: CableApcExtension - components: - - pos: 48.5,0.5 - parent: 1 - type: Transform -- uid: 10133 - type: CableApcExtension - components: - - pos: 49.5,0.5 - parent: 1 - type: Transform -- uid: 10134 - type: CableApcExtension - components: - - pos: 50.5,0.5 - parent: 1 - type: Transform -- uid: 10135 - type: CableApcExtension - components: - - pos: 51.5,0.5 - parent: 1 - type: Transform -- uid: 10136 - type: CableApcExtension - components: - - pos: 52.5,0.5 - parent: 1 - type: Transform -- uid: 10137 - type: CableApcExtension - components: - - pos: 52.5,1.5 - parent: 1 - type: Transform -- uid: 10138 - type: CableApcExtension - components: - - pos: 52.5,2.5 - parent: 1 - type: Transform -- uid: 10139 - type: CableApcExtension - components: - - pos: 53.5,0.5 - parent: 1 - type: Transform -- uid: 10140 - type: CableApcExtension - components: - - pos: 53.5,-0.5 - parent: 1 - type: Transform -- uid: 10141 - type: CableApcExtension - components: - - pos: 54.5,-0.5 - parent: 1 - type: Transform -- uid: 10142 - type: CableApcExtension - components: - - pos: 55.5,-0.5 - parent: 1 - type: Transform -- uid: 10143 - type: CableApcExtension - components: - - pos: 56.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10144 - type: CableApcExtension - components: - - pos: 57.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10145 - type: CableApcExtension - components: - - pos: 57.5,0.5 - parent: 1 - type: Transform -- uid: 10146 - type: CableApcExtension - components: - - pos: 57.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10147 - type: CableApcExtension - components: - - pos: 58.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10148 - type: CableApcExtension - components: - - pos: 59.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10149 - type: CableApcExtension - components: - - pos: 60.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10150 - type: CableApcExtension - components: - - pos: 61.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10151 - type: CableApcExtension - components: - - pos: 62.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10152 - type: CableApcExtension - components: - - pos: 56.5,-1.5 - parent: 1 - type: Transform -- uid: 10153 - type: CableApcExtension - components: - - pos: 56.5,-2.5 - parent: 1 - type: Transform -- uid: 10154 - type: CableApcExtension - components: - - pos: 56.5,-3.5 - parent: 1 - type: Transform -- uid: 10155 - type: CableApcExtension - components: - - pos: 51.5,-0.5 - parent: 1 - type: Transform -- uid: 10156 - type: CableApcExtension - components: - - pos: 51.5,-1.5 - parent: 1 - type: Transform -- uid: 10157 - type: CableApcExtension - components: - - pos: 51.5,-2.5 - parent: 1 - type: Transform -- uid: 10158 - type: CableApcExtension - components: - - pos: 52.5,-2.5 - parent: 1 - type: Transform -- uid: 10159 - type: CableApcExtension - components: - - pos: 52.5,-3.5 - parent: 1 - type: Transform -- uid: 10160 - type: CableApcExtension - components: - - pos: 52.5,-5.5 - parent: 1 - type: Transform -- uid: 10161 - type: WallReinforced - components: - - pos: 47.5,-16.5 - parent: 1 - type: Transform -- uid: 10162 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: 23.453842,-7.240517 - parent: 1 - type: Transform -- uid: 10163 - type: SignDirectionalFood - components: - - rot: -1.5707963267948966 rad - pos: 23.455772,-7.472424 - parent: 1 - type: Transform -- uid: 10164 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 23.45433,-7.7213244 - parent: 1 - type: Transform -- uid: 10165 - type: SignDirectionalMed - components: - - rot: -1.5707963267948966 rad - pos: 13.494197,-24.31582 - parent: 1 - type: Transform -- uid: 10166 - type: SignDirectionalMed - components: - - rot: -1.5707963267948966 rad - pos: 23.456676,-44.23134 - parent: 1 - type: Transform -- uid: 10167 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: 23.456676,-44.465714 - parent: 1 - type: Transform -- uid: 10168 - type: SignDirectionalMed - components: - - rot: -1.5707963267948966 rad - pos: 13.481093,-40.279392 - parent: 1 - type: Transform -- uid: 10169 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: 13.481093,-40.52887 - parent: 1 - type: Transform -- uid: 10170 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 13.494197,-24.550196 - parent: 1 - type: Transform -- uid: 10171 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: -2.4872613,-24.231178 - parent: 1 - type: Transform -- uid: 10172 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 17.50633,-38.506306 - parent: 1 - type: Transform -- uid: 10173 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 27.469652,-44.466072 - parent: 1 - type: Transform -- uid: 10174 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: 27.465042,-44.22285 - parent: 1 - type: Transform -- uid: 10175 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 27.468637,-44.695934 - parent: 1 - type: Transform -- uid: 10176 - type: SignDirectionalSupply - components: - - rot: -1.5707963267948966 rad - pos: 23.453947,-44.6932 - parent: 1 - type: Transform -- uid: 10177 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 33.56561,-38.47694 - parent: 1 - type: Transform -- uid: 10178 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 33.55467,-38.221992 - parent: 1 - type: Transform -- uid: 10179 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 17.50898,-38.26922 - parent: 1 - type: Transform -- uid: 10180 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: -1.5094987,0.23005629 - parent: 1 - type: Transform -- uid: 10181 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 15.5581455,4.7444477 - parent: 1 - type: Transform -- uid: 10182 - type: SignDirectionalMed - components: - - rot: -1.5707963267948966 rad - pos: 15.518682,0.809778 - parent: 1 - type: Transform -- uid: 10183 - type: SignDirectionalSupply - components: - - rot: -1.5707963267948966 rad - pos: 15.5186825,0.5754031 - parent: 1 - type: Transform -- uid: 10184 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: 15.5186825,0.3410281 - parent: 1 - type: Transform -- uid: 10185 - type: SignDirectionalSupply - components: - - rot: -1.5707963267948966 rad - pos: -1.5094988,0.4800564 - parent: 1 - type: Transform -- uid: 10186 - type: SignDirectionalMed - components: - - pos: -1.509499,0.7144314 - parent: 1 - type: Transform -- uid: 10187 - type: SignDirectionalBridge - components: - - pos: 15.5507345,4.4965997 - parent: 1 - type: Transform -- uid: 10188 - type: SignDirectionalSci - components: - - pos: 15.550735,4.2699327 - parent: 1 - type: Transform -- uid: 10189 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: 15.500585,1.4258997 - parent: 1 - type: Transform -- uid: 10190 - type: SignDirectionalSec - components: - - rot: 3.141592653589793 rad - pos: 13.4980955,-24.785376 - parent: 1 - type: Transform -- uid: 10191 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -2.4941144,-24.735882 - parent: 1 - type: Transform -- uid: 10192 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: -6.4826374,-24.301481 - parent: 1 - type: Transform -- uid: 10193 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: -6.468719,-24.535433 - parent: 1 - type: Transform -- uid: 10194 - type: SignDirectionalMed - components: - - pos: -6.468719,-24.785433 - parent: 1 - type: Transform -- uid: 10195 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -1.5055175,1.6636184 - parent: 1 - type: Transform -- uid: 10196 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: -1.4980723,1.197365 - parent: 1 - type: Transform -- uid: 10197 - type: SignDirectionalSci - components: - - pos: 13.494197,-28.22207 - parent: 1 - type: Transform -- uid: 10198 - type: SignDirectionalSupply - components: - - rot: -1.5707963267948966 rad - pos: 13.494197,-28.47207 - parent: 1 - type: Transform -- uid: 10199 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: 13.494198,-28.706446 - parent: 1 - type: Transform -- uid: 10200 - type: SignDirectionalFood - components: - - rot: 3.141592653589793 rad - pos: -6.442209,-23.658274 - parent: 1 - type: Transform -- uid: 10201 - type: SignDirectionalFood - components: - - rot: -1.5707963267948966 rad - pos: 13.515763,-23.596605 - parent: 1 - type: Transform -- uid: 10202 - type: SignDirectionalSci - components: - - pos: 27.506117,-7.7341094 - parent: 1 - type: Transform -- uid: 10203 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: 27.506605,-7.2696166 - parent: 1 - type: Transform -- uid: 10204 - type: SignDirectionalEng - components: - - pos: -11.54485,0.20892155 - parent: 1 - type: Transform -- uid: 10205 - type: SignDirectionalMed - components: - - pos: -11.538088,0.45501685 - parent: 1 - type: Transform -- uid: 10206 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: -11.522463,0.70501685 - parent: 1 - type: Transform -- uid: 10207 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -11.506838,1.7987667 - parent: 1 - type: Transform -- uid: 10208 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: -11.506838,1.5487667 - parent: 1 - type: Transform -- uid: 10209 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -11.506838,1.2987667 - parent: 1 - type: Transform -- uid: 10210 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: -11.517976,1.041115 - parent: 1 - type: Transform -- uid: 10211 - type: SignDirectionalFood - components: - - rot: 3.141592653589793 rad - pos: 13.482204,-40.04481 - parent: 1 - type: Transform -- uid: 10212 - type: VendingMachineViroDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -27.5,-75.5 - parent: 1 - type: Transform -- uid: 10213 - type: LockerWallMedicalFilled - components: - - pos: -26.5,-56.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10214 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: -27.5,-70.5 - parent: 1 - type: Transform -- uid: 10215 - type: FoodPizzaPineapple - components: - - pos: -25.559431,-79.20157 - parent: 1 - type: Transform -- uid: 10216 - type: Carpet - components: - - pos: 42.5,-2.5 - parent: 1 - type: Transform -- uid: 10217 - type: Carpet - components: - - pos: 42.5,-3.5 - parent: 1 - type: Transform -- uid: 10218 - type: Carpet - components: - - pos: 42.5,-4.5 - parent: 1 - type: Transform -- uid: 10219 - type: Carpet - components: - - pos: 43.5,-2.5 - parent: 1 - type: Transform -- uid: 10220 - type: Carpet - components: - - pos: 43.5,-3.5 - parent: 1 - type: Transform -- uid: 10221 - type: Carpet - components: - - pos: 43.5,-4.5 - parent: 1 - type: Transform -- uid: 10222 - type: Carpet - components: - - pos: 44.5,-2.5 - parent: 1 - type: Transform -- uid: 10223 - type: Carpet - components: - - pos: 44.5,-3.5 - parent: 1 - type: Transform -- uid: 10224 - type: Carpet - components: - - pos: 44.5,-4.5 - parent: 1 - type: Transform -- uid: 10225 - type: WaterCooler - components: - - pos: 36.5,-6.5 - parent: 1 - type: Transform -- uid: 10226 - type: DrinkVodkaTonicGlass - components: - - pos: 43.581966,-2.7850537 - parent: 1 - type: Transform -- uid: 10227 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10228 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10229 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10230 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10231 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10232 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10233 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10234 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10235 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10236 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10237 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10238 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10239 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10240 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10241 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10242 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10243 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10244 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 43.519466,-3.4569287 - parent: 1 - type: Transform -- uid: 10245 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 37.488216,-3.5194297 - parent: 1 - type: Transform -- uid: 10246 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 37.488216,-3.5194297 - parent: 1 - type: Transform -- uid: 10247 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 37.488216,-3.5194297 - parent: 1 - type: Transform -- uid: 10248 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 37.488216,-3.5194297 - parent: 1 - type: Transform -- uid: 10249 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 37.59759,-3.6288047 - parent: 1 - type: Transform -- uid: 10250 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 37.59759,-3.6288047 - parent: 1 - type: Transform -- uid: 10251 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 37.550716,-3.6131797 - parent: 1 - type: Transform -- uid: 10252 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 37.550716,-3.6131797 - parent: 1 - type: Transform -- uid: 10253 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 37.56634,-3.6131797 - parent: 1 - type: Transform -- uid: 10254 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 37.59759,-3.6288047 - parent: 1 - type: Transform -- uid: 10255 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 37.59759,-3.6288047 - parent: 1 - type: Transform -- uid: 10256 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 37.59759,-3.6288047 - parent: 1 - type: Transform -- uid: 10257 - type: Pen - components: - - pos: 43.66009,-3.5506787 - parent: 1 - type: Transform -- uid: 10258 - type: Pen - components: - - pos: 37.66009,-3.7069297 - parent: 1 - type: Transform -- uid: 10259 - type: SpawnMobSlothPaperwork - components: - - pos: 12.5,-7.5 - parent: 1 - type: Transform -- uid: 10260 - type: ClothingNeckLawyerbadge - components: - - pos: 43.39902,-3.8456278 - parent: 1 - type: Transform -- uid: 10261 - type: filingCabinetDrawerRandom - components: - - pos: 44.5,-4.5 - parent: 1 - type: Transform -- uid: 10262 - type: LampGold - components: - - pos: 37.53909,-2.5487528 - parent: 1 - type: Transform -- uid: 10263 - type: Paper - components: - - pos: 38.47659,-2.4393778 - parent: 1 - type: Transform -- uid: 10264 - type: Paper - components: - - pos: 38.47659,-2.4393778 - parent: 1 - type: Transform -- uid: 10265 - type: Paper - components: - - pos: 38.47659,-2.4393778 - parent: 1 - type: Transform -- uid: 10266 - type: Paper - components: - - pos: 38.47659,-2.4393778 - parent: 1 - type: Transform -- uid: 10267 - type: Paper - components: - - pos: 38.47659,-2.4393778 - parent: 1 - type: Transform -- uid: 10268 - type: Paper - components: - - pos: 38.47659,-2.4393778 - parent: 1 - type: Transform -- uid: 10269 - type: Paper - components: - - pos: 38.47659,-2.4393778 - parent: 1 - type: Transform -- uid: 10270 - type: BoxFolderBlue - components: - - pos: 38.992214,-2.4237523 - parent: 1 - type: Transform -- uid: 10271 - type: BoxFolderRed - components: - - pos: 39.22659,-2.4550023 - parent: 1 - type: Transform -- uid: 10272 - type: BoxFolderYellow - components: - - rot: 1.5707963267948966 rad - pos: 37.554714,-4.439378 - parent: 1 - type: Transform -- uid: 10273 - type: BoxFolderBlack - components: - - rot: 1.5707963267948966 rad - pos: 37.617214,-4.673753 - parent: 1 - type: Transform -- uid: 10274 - type: BoxFolderBase - components: - - rot: 1.5707963267948966 rad - pos: 37.60159,-5.001878 - parent: 1 - type: Transform -- uid: 10275 - type: DrinkGlass - components: - - pos: 37.335964,-5.423753 - parent: 1 - type: Transform -- uid: 10276 - type: Carpet - components: - - pos: 37.5,-2.5 - parent: 1 - type: Transform -- uid: 10277 - type: Carpet - components: - - pos: 38.5,-2.5 - parent: 1 - type: Transform -- uid: 10278 - type: Carpet - components: - - pos: 39.5,-2.5 - parent: 1 - type: Transform -- uid: 10279 - type: Carpet - components: - - pos: 37.5,-3.5 - parent: 1 - type: Transform -- uid: 10280 - type: Carpet - components: - - pos: 37.5,-4.5 - parent: 1 - type: Transform -- uid: 10281 - type: Carpet - components: - - pos: 38.5,-3.5 - parent: 1 - type: Transform -- uid: 10282 - type: Carpet - components: - - pos: 38.5,-4.5 - parent: 1 - type: Transform -- uid: 10283 - type: Carpet - components: - - pos: 39.5,-3.5 - parent: 1 - type: Transform -- uid: 10284 - type: Carpet - components: - - pos: 39.5,-4.5 - parent: 1 - type: Transform -- uid: 10285 - type: Carpet - components: - - pos: 38.5,-5.5 - parent: 1 - type: Transform -- uid: 10286 - type: Carpet - components: - - pos: 37.5,-5.5 - parent: 1 - type: Transform -- uid: 10287 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-4.5 - parent: 1 - type: Transform -- uid: 10288 - type: SpawnPointLawyer - components: - - pos: 42.5,-2.5 - parent: 1 - type: Transform -- uid: 10289 - type: SpawnPointLawyer - components: - - pos: 39.5,-4.5 - parent: 1 - type: Transform -- uid: 10290 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10291 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10292 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-16.5 - parent: 1 - type: Transform -- uid: 10293 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-16.5 - parent: 1 - type: Transform -- uid: 10294 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-15.5 - parent: 1 - type: Transform -- uid: 10295 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-15.5 - parent: 1 - type: Transform -- uid: 10296 - type: RailingCorner - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-10.5 - parent: 1 - type: Transform -- uid: 10297 - type: WallReinforced - components: - - pos: 48.5,-15.5 - parent: 1 - type: Transform -- uid: 10298 - type: WallReinforced - components: - - pos: 44.5,-17.5 - parent: 1 - type: Transform -- uid: 10299 - type: WallReinforced - components: - - pos: 44.5,-16.5 - parent: 1 - type: Transform -- uid: 10300 - type: Catwalk - components: - - pos: 12.5,-17.5 - parent: 1 - type: Transform -- uid: 10301 - type: WallReinforced - components: - - pos: 11.5,-18.5 - parent: 1 - type: Transform -- uid: 10302 - type: Catwalk - components: - - pos: 10.5,-17.5 - parent: 1 - type: Transform -- uid: 10303 - type: Catwalk - components: - - pos: 9.5,-17.5 - parent: 1 - type: Transform -- uid: 10304 - type: Catwalk - components: - - pos: 8.5,-17.5 - parent: 1 - type: Transform -- uid: 10305 - type: Catwalk - components: - - pos: 7.5,-17.5 - parent: 1 - type: Transform -- uid: 10306 - type: WallSolid - components: - - pos: 6.5,-17.5 - parent: 1 - type: Transform -- uid: 10307 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10308 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-44.5 - parent: 1 - type: Transform -- uid: 10309 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10310 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 29.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10311 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10312 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10313 - type: Poweredlight - components: - - pos: 33.5,16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10314 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -19.5,32.5 - parent: 1 - type: Transform -- uid: 10315 - type: Poweredlight - components: - - pos: 39.5,16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10316 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10317 - type: VendingMachineDonut - components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,31.5 - parent: 1 - type: Transform -- uid: 10318 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10319 - type: PoweredSmallLight - components: - - pos: 37.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10320 - type: PoweredSmallLight - components: - - pos: 37.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10321 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10322 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10323 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10324 - type: PoweredSmallLight - components: - - pos: 38.5,12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10325 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 45.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10326 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10327 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10328 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10329 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10330 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10331 - type: PoweredSmallLight - components: - - pos: 61.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10332 - type: PoweredSmallLight - components: - - pos: 61.5,16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10333 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10334 - type: PoweredSmallLight - components: - - pos: 62.5,22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10335 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10336 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10337 - type: PoweredSmallLight - components: - - pos: 60.5,2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10338 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10339 - type: Poweredlight - components: - - pos: 55.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10340 - type: Poweredlight - components: - - pos: 51.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10341 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 55.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10342 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 51.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10343 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 48.5,12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10344 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 58.5,12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10345 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -17.5,20.5 - parent: 1 - type: Transform - - devices: - - 21652 - - 18728 - - 18020 - - 19080 - - 19081 - - 19082 - - 10346 - - 23650 - - 23651 - - 19119 - type: DeviceList -- uid: 10346 - type: FirelockGlass - components: - - pos: -21.5,30.5 - parent: 1 - type: Transform -- uid: 10347 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10348 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: 46.5,15.5 - parent: 1 - type: Transform -- uid: 10349 - type: PoweredSmallLight - components: - - pos: 35.5,20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10350 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10351 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10352 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10353 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 47.5,10.5 - parent: 1 - type: Transform -- uid: 10354 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 59.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10355 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 48.5,18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10356 - type: CableApcExtension - components: - - pos: 59.5,21.5 - parent: 1 - type: Transform -- uid: 10357 - type: CableApcExtension - components: - - pos: 60.5,21.5 - parent: 1 - type: Transform -- uid: 10358 - type: CableApcExtension - components: - - pos: 61.5,21.5 - parent: 1 - type: Transform -- uid: 10359 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10360 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 24.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10361 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 29.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10362 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10363 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10364 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10365 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: 32.664257,29.5584 - parent: 1 - type: Transform -- uid: 10366 - type: WeaponPistolMk58 - components: - - pos: 31.657001,32.450115 - parent: 1 - type: Transform -- uid: 10367 - type: WeaponPistolMk58 - components: - - pos: 31.637281,32.558495 - parent: 1 - type: Transform -- uid: 10368 - type: WeaponPistolMk58 - components: - - pos: 31.586092,32.47933 - parent: 1 - type: Transform -- uid: 10369 - type: MagazinePistolHighVelocity - components: - - pos: 32.32131,32.48245 - parent: 1 - type: Transform -- uid: 10370 - type: MagazinePistolHighVelocity - components: - - pos: 32.32131,32.48245 - parent: 1 - type: Transform -- uid: 10371 - type: MagazinePistolHighVelocity - components: - - pos: 32.305683,32.48245 - parent: 1 - type: Transform -- uid: 10372 - type: SurveillanceCameraCommand - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: EVA closet - type: SurveillanceCamera -- uid: 10373 - type: AirSensor - components: - - pos: 35.5,15.5 - parent: 1 - type: Transform -- uid: 10374 - type: FoodBoxDonut - components: - - pos: 25.290524,19.578499 - parent: 1 - type: Transform -- uid: 10375 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-6.5 - parent: 1 - type: Transform -- uid: 10376 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-12.5 - parent: 1 - type: Transform -- uid: 10377 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-7.5 - parent: 1 - type: Transform -- uid: 10378 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-10.5 - parent: 1 - type: Transform -- uid: 10379 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-12.5 - parent: 1 - type: Transform -- uid: 10380 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-10.5 - parent: 1 - type: Transform -- uid: 10381 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-14.5 - parent: 1 - type: Transform -- uid: 10382 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-14.5 - parent: 1 - type: Transform -- uid: 10383 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-0.5 - parent: 1 - type: Transform -- uid: 10384 - type: CableHV - components: - - pos: 71.5,-46.5 - parent: 1 - type: Transform -- uid: 10385 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-6.5 - parent: 1 - type: Transform -- uid: 10386 - type: FoodTartGapple - components: - - pos: 44.89154,-26.413532 - parent: 1 - type: Transform -- uid: 10387 - type: WallSolid - components: - - pos: 65.5,-4.5 - parent: 1 - type: Transform -- uid: 10388 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-1.5 - parent: 1 - type: Transform -- uid: 10389 - type: WallSolid - components: - - pos: 63.5,-4.5 - parent: 1 - type: Transform -- uid: 10390 - type: WallSolid - components: - - pos: 61.5,-4.5 - parent: 1 - type: Transform -- uid: 10391 - type: ReinforcedWindow - components: - - pos: 60.5,-4.5 - parent: 1 - type: Transform -- uid: 10392 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-4.5 - parent: 1 - type: Transform -- uid: 10393 - type: Grille - components: - - pos: 60.5,-4.5 - parent: 1 - type: Transform -- uid: 10394 - type: AirlockCommandGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-4.5 - parent: 1 - type: Transform -- uid: 10395 - type: WallReinforced - components: - - pos: 48.5,-14.5 - parent: 1 - type: Transform -- uid: 10396 - type: WallReinforced - components: - - pos: 48.5,-16.5 - parent: 1 - type: Transform -- uid: 10397 - type: WallReinforced - components: - - pos: 43.5,-16.5 - parent: 1 - type: Transform -- uid: 10398 - type: WallReinforced - components: - - pos: 49.5,-14.5 - parent: 1 - type: Transform -- uid: 10399 - type: WallReinforced - components: - - pos: 50.5,-14.5 - parent: 1 - type: Transform -- uid: 10400 - type: WallReinforced - components: - - pos: 51.5,-14.5 - parent: 1 - type: Transform -- uid: 10401 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 54.5,-15.5 - parent: 1 - type: Transform -- uid: 10402 - type: WallSolid - components: - - pos: 53.5,-14.5 - parent: 1 - type: Transform -- uid: 10403 - type: DisposalPipe - components: - - pos: 52.5,-9.5 - parent: 1 - type: Transform -- uid: 10404 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 60.5,-15.5 - parent: 1 - type: Transform -- uid: 10405 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 57.5,-15.5 - parent: 1 - type: Transform -- uid: 10406 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 53.5,-15.5 - parent: 1 - type: Transform -- uid: 10407 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 53.5,-16.5 - parent: 1 - type: Transform -- uid: 10408 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 51.5,-15.5 - parent: 1 - type: Transform -- uid: 10409 - type: WallSolid - components: - - pos: 61.5,-14.5 - parent: 1 - type: Transform -- uid: 10410 - type: WallSolid - components: - - pos: 60.5,-14.5 - parent: 1 - type: Transform -- uid: 10411 - type: AirlockMaintLocked - components: - - name: evac - type: MetaData - - pos: 62.5,-14.5 - parent: 1 - type: Transform -- uid: 10412 - type: WallReinforced - components: - - pos: 63.5,-14.5 - parent: 1 - type: Transform -- uid: 10413 - type: WallReinforced - components: - - pos: 64.5,-14.5 - parent: 1 - type: Transform -- uid: 10414 - type: WallReinforced - components: - - pos: 65.5,-14.5 - parent: 1 - type: Transform -- uid: 10415 - type: WallSolid - components: - - pos: 59.5,-7.5 - parent: 1 - type: Transform -- uid: 10416 - type: WallSolid - components: - - pos: 58.5,-7.5 - parent: 1 - type: Transform -- uid: 10417 - type: WallSolid - components: - - pos: 57.5,-7.5 - parent: 1 - type: Transform -- uid: 10418 - type: WallSolid - components: - - pos: 56.5,-7.5 - parent: 1 - type: Transform -- uid: 10419 - type: CableHV - components: - - pos: 49.5,-7.5 - parent: 1 - type: Transform -- uid: 10420 - type: WallSolid - components: - - pos: 59.5,-9.5 - parent: 1 - type: Transform -- uid: 10421 - type: WallSolid - components: - - pos: 58.5,-9.5 - parent: 1 - type: Transform -- uid: 10422 - type: WallSolid - components: - - pos: 57.5,-9.5 - parent: 1 - type: Transform -- uid: 10423 - type: WallSolid - components: - - pos: 56.5,-9.5 - parent: 1 - type: Transform -- uid: 10424 - type: WallSolid - components: - - pos: 55.5,-9.5 - parent: 1 - type: Transform -- uid: 10425 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 61.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10426 - type: WallSolid - components: - - pos: 55.5,-8.5 - parent: 1 - type: Transform -- uid: 10427 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-12.5 - parent: 1 - type: Transform -- uid: 10428 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-10.5 - parent: 1 - type: Transform -- uid: 10429 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-4.5 - parent: 1 - type: Transform -- uid: 10430 - type: BriefcaseBrown - components: - - pos: 62.36704,-10.4423 - parent: 1 - type: Transform -- uid: 10431 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-8.5 - parent: 1 - type: Transform -- uid: 10432 - type: Chair - components: - - pos: 59.5,-10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10433 - type: Chair - components: - - pos: 58.5,-10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10434 - type: Chair - components: - - pos: 57.5,-10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10435 - type: Chair - components: - - pos: 56.5,-10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10436 - type: Chair - components: - - pos: 55.5,-10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10437 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 55.5,-6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10438 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 56.5,-6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10439 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 57.5,-6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10440 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 58.5,-6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10441 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 59.5,-6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10442 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 58.5,-3.5 - parent: 1 - type: Transform -- uid: 10443 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 66.5,-2.5 - parent: 1 - type: Transform -- uid: 10444 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-8.5 - parent: 1 - type: Transform -- uid: 10445 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-9.5 - parent: 1 - type: Transform -- uid: 10446 - type: WallReinforced - components: - - pos: 68.5,-14.5 - parent: 1 - type: Transform -- uid: 10447 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-4.5 - parent: 1 - type: Transform -- uid: 10448 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-2.5 - parent: 1 - type: Transform -- uid: 10449 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-2.5 - parent: 1 - type: Transform -- uid: 10450 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-10.5 - parent: 1 - type: Transform -- uid: 10451 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-12.5 - parent: 1 - type: Transform -- uid: 10452 - type: ClothingShoesBling - components: - - pos: 47.782166,-25.351032 - parent: 1 - type: Transform -- uid: 10453 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-6.5 - parent: 1 - type: Transform -- uid: 10454 - type: CableApcExtension - components: - - pos: 67.5,-11.5 - parent: 1 - type: Transform -- uid: 10455 - type: CableApcExtension - components: - - pos: 68.5,-11.5 - parent: 1 - type: Transform -- uid: 10456 - type: CableApcExtension - components: - - pos: 66.5,-13.5 - parent: 1 - type: Transform -- uid: 10457 - type: WallReinforced - components: - - pos: 63.5,-15.5 - parent: 1 - type: Transform -- uid: 10458 - type: Chair - components: - - pos: 55.5,-14.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10459 - type: Chair - components: - - pos: 56.5,-14.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10460 - type: Chair - components: - - pos: 59.5,-14.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10461 - type: Chair - components: - - pos: 58.5,-14.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10462 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 51.5,-16.5 - parent: 1 - type: Transform -- uid: 10463 - type: AirlockExternalGlass - components: - - pos: 52.5,-14.5 - parent: 1 - type: Transform -- uid: 10464 - type: AirlockExternalGlassLocked - components: - - pos: 52.5,-16.5 - parent: 1 - type: Transform -- uid: 10465 - type: ReinforcedWindow - components: - - pos: 59.5,-15.5 - parent: 1 - type: Transform -- uid: 10466 - type: ReinforcedWindow - components: - - pos: 58.5,-15.5 - parent: 1 - type: Transform -- uid: 10467 - type: ReinforcedWindow - components: - - pos: 56.5,-15.5 - parent: 1 - type: Transform -- uid: 10468 - type: ReinforcedWindow - components: - - pos: 55.5,-15.5 - parent: 1 - type: Transform -- uid: 10469 - type: WallReinforced - components: - - pos: 63.5,-16.5 - parent: 1 - type: Transform -- uid: 10470 - type: WallReinforced - components: - - pos: 63.5,-17.5 - parent: 1 - type: Transform -- uid: 10471 - type: ReinforcedWindow - components: - - pos: 63.5,-26.5 - parent: 1 - type: Transform -- uid: 10472 - type: WallReinforced - components: - - pos: 63.5,-19.5 - parent: 1 - type: Transform -- uid: 10473 - type: ReinforcedWindow - components: - - pos: 63.5,-24.5 - parent: 1 - type: Transform -- uid: 10474 - type: WallReinforced - components: - - pos: 63.5,-21.5 - parent: 1 - type: Transform -- uid: 10475 - type: ReinforcedWindow - components: - - pos: 61.5,-22.5 - parent: 1 - type: Transform -- uid: 10476 - type: WallReinforced - components: - - pos: 63.5,-23.5 - parent: 1 - type: Transform -- uid: 10477 - type: ReinforcedWindow - components: - - pos: 61.5,-20.5 - parent: 1 - type: Transform -- uid: 10478 - type: WallReinforced - components: - - pos: 63.5,-25.5 - parent: 1 - type: Transform -- uid: 10479 - type: ReinforcedWindow - components: - - pos: 63.5,-18.5 - parent: 1 - type: Transform -- uid: 10480 - type: WallReinforced - components: - - pos: 63.5,-27.5 - parent: 1 - type: Transform -- uid: 10481 - type: ReinforcedWindow - components: - - pos: 64.5,-29.5 - parent: 1 - type: Transform -- uid: 10482 - type: WallReinforced - components: - - pos: 64.5,-27.5 - parent: 1 - type: Transform -- uid: 10483 - type: WallReinforced - components: - - pos: 69.5,-31.5 - parent: 1 - type: Transform -- uid: 10484 - type: Grille - components: - - pos: 61.5,-18.5 - parent: 1 - type: Transform -- uid: 10485 - type: WallReinforced - components: - - pos: 61.5,-16.5 - parent: 1 - type: Transform -- uid: 10486 - type: WallReinforced - components: - - pos: 61.5,-17.5 - parent: 1 - type: Transform -- uid: 10487 - type: WallReinforced - components: - - pos: 61.5,-19.5 - parent: 1 - type: Transform -- uid: 10488 - type: ReinforcedWindow - components: - - pos: 61.5,-24.5 - parent: 1 - type: Transform -- uid: 10489 - type: WallReinforced - components: - - pos: 61.5,-21.5 - parent: 1 - type: Transform -- uid: 10490 - type: ReinforcedWindow - components: - - pos: 63.5,-22.5 - parent: 1 - type: Transform -- uid: 10491 - type: WallReinforced - components: - - pos: 61.5,-23.5 - parent: 1 - type: Transform -- uid: 10492 - type: ReinforcedWindow - components: - - pos: 63.5,-20.5 - parent: 1 - type: Transform -- uid: 10493 - type: WallReinforced - components: - - pos: 61.5,-25.5 - parent: 1 - type: Transform -- uid: 10494 - type: ReinforcedWindow - components: - - pos: 61.5,-18.5 - parent: 1 - type: Transform -- uid: 10495 - type: WallSolid - components: - - pos: 60.5,-29.5 - parent: 1 - type: Transform -- uid: 10496 - type: WallSolid - components: - - pos: 60.5,-30.5 - parent: 1 - type: Transform -- uid: 10497 - type: WallReinforced - components: - - pos: 69.5,-32.5 - parent: 1 - type: Transform -- uid: 10498 - type: WallReinforced - components: - - pos: 60.5,-16.5 - parent: 1 - type: Transform -- uid: 10499 - type: Grille - components: - - pos: 63.5,-18.5 - parent: 1 - type: Transform -- uid: 10500 - type: Grille - components: - - pos: 61.5,-20.5 - parent: 1 - type: Transform -- uid: 10501 - type: Grille - components: - - pos: 63.5,-20.5 - parent: 1 - type: Transform -- uid: 10502 - type: Grille - components: - - pos: 61.5,-22.5 - parent: 1 - type: Transform -- uid: 10503 - type: Grille - components: - - pos: 63.5,-22.5 - parent: 1 - type: Transform -- uid: 10504 - type: Grille - components: - - pos: 61.5,-24.5 - parent: 1 - type: Transform -- uid: 10505 - type: Grille - components: - - pos: 63.5,-24.5 - parent: 1 - type: Transform -- uid: 10506 - type: Grille - components: - - pos: 63.5,-26.5 - parent: 1 - type: Transform -- uid: 10507 - type: WallSolid - components: - - pos: 49.5,-11.5 - parent: 1 - type: Transform -- uid: 10508 - type: RailingCorner - components: - - pos: 50.5,-6.5 - parent: 1 - type: Transform -- uid: 10509 - type: WallSolid - components: - - pos: 49.5,-12.5 - parent: 1 - type: Transform -- uid: 10510 - type: WallSolid - components: - - pos: 50.5,-12.5 - parent: 1 - type: Transform -- uid: 10511 - type: AirlockMaintLocked - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-13.5 - parent: 1 - type: Transform -- uid: 10512 - type: RailingCorner - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-9.5 - parent: 1 - type: Transform -- uid: 10513 - type: RailingCorner - components: - - rot: 3.141592653589793 rad - pos: 53.5,-7.5 - parent: 1 - type: Transform -- uid: 10514 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 60.5,-13.5 - parent: 1 - type: Transform -- uid: 10515 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 61.5,-13.5 - parent: 1 - type: Transform -- uid: 10516 - type: DisposalPipe - components: - - pos: 52.5,-10.5 - parent: 1 - type: Transform -- uid: 10517 - type: DisposalPipe - components: - - pos: 52.5,-11.5 - parent: 1 - type: Transform -- uid: 10518 - type: DisposalPipe - components: - - pos: 52.5,-12.5 - parent: 1 - type: Transform -- uid: 10519 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 54.5,-14.5 - parent: 1 - type: Transform -- uid: 10520 - type: DisposalUnit - components: - - pos: 54.5,-14.5 - parent: 1 - type: Transform -- uid: 10521 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 52.5,-13.5 - parent: 1 - type: Transform -- uid: 10522 - type: DisposalBend - components: - - pos: 54.5,-13.5 - parent: 1 - type: Transform -- uid: 10523 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-13.5 - parent: 1 - type: Transform -- uid: 10524 - type: PosterLegitBlessThisSpess - components: - - pos: 61.5,-4.5 - parent: 1 - type: Transform -- uid: 10525 - type: PosterLegitCohibaRobustoAd - components: - - pos: 57.5,-9.5 - parent: 1 - type: Transform -- uid: 10526 - type: PosterLegitEnlist - components: - - pos: 59.5,-9.5 - parent: 1 - type: Transform -- uid: 10527 - type: PosterContrabandGreyTide - components: - - pos: 55.5,-9.5 - parent: 1 - type: Transform -- uid: 10528 - type: PosterContrabandNuclearDeviceInformational - components: - - pos: 39.5,-24.5 - parent: 1 - type: Transform -- uid: 10529 - type: GasPipeStraight - components: - - pos: 52.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10530 - type: GasPipeStraight - components: - - pos: 52.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10531 - type: GasPipeStraight - components: - - pos: 52.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10532 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 52.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10533 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10534 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10535 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10536 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 55.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10537 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10538 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10539 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10540 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10541 - type: AirSensor - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-8.5 - parent: 1 - type: Transform -- uid: 10542 - type: AirlockCargoGlassLocked - components: - - pos: -26.5,18.5 - parent: 1 - type: Transform -- uid: 10543 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-61.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: medbay corridor - type: SurveillanceCamera -- uid: 10544 - type: WallReinforced - components: - - pos: -2.5,-36.5 - parent: 1 - type: Transform -- uid: 10545 - type: CableHV - components: - - pos: 49.5,-6.5 - parent: 1 - type: Transform -- uid: 10546 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10547 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 57.5,-6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10548 - type: Poweredlight - components: - - pos: 57.5,-10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10549 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10550 - type: CableApcExtension - components: - - pos: 68.5,-13.5 - parent: 1 - type: Transform -- uid: 10551 - type: CableApcExtension - components: - - pos: 66.5,-11.5 - parent: 1 - type: Transform -- uid: 10552 - type: ComputerBroken - components: - - rot: -1.5707963267948966 rad - pos: 51.5,37.5 - parent: 1 - type: Transform -- uid: 10553 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10554 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 57.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10555 - type: Chair - components: - - pos: 61.5,-10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10556 - type: Chair - components: - - pos: 60.5,-10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 10557 - type: PoweredSmallLight - components: - - pos: 49.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10558 - type: ClosetEmergencyFilledRandom - components: - - pos: 57.5,-14.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 10559 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-6.5 - parent: 1 - type: Transform -- uid: 10560 - type: WallSolid - components: - - pos: 35.5,-11.5 - parent: 1 - type: Transform -- uid: 10561 - type: WallSolid - components: - - pos: 37.5,-9.5 - parent: 1 - type: Transform -- uid: 10562 - type: WallSolid - components: - - pos: 38.5,-9.5 - parent: 1 - type: Transform -- uid: 10563 - type: WallSolid - components: - - pos: 39.5,-9.5 - parent: 1 - type: Transform -- uid: 10564 - type: WallSolid - components: - - pos: 39.5,-8.5 - parent: 1 - type: Transform -- uid: 10565 - type: WallSolid - components: - - pos: 41.5,-6.5 - parent: 1 - type: Transform -- uid: 10566 - type: WallSolid - components: - - pos: 41.5,-7.5 - parent: 1 - type: Transform -- uid: 10567 - type: WallSolid - components: - - pos: 41.5,-8.5 - parent: 1 - type: Transform -- uid: 10568 - type: WallSolid - components: - - pos: 41.5,-9.5 - parent: 1 - type: Transform -- uid: 10569 - type: WallSolid - components: - - pos: 41.5,-10.5 - parent: 1 - type: Transform -- uid: 10570 - type: WallSolid - components: - - pos: 39.5,-10.5 - parent: 1 - type: Transform -- uid: 10571 - type: WallSolid - components: - - pos: 39.5,-11.5 - parent: 1 - type: Transform -- uid: 10572 - type: WallSolid - components: - - pos: 37.5,-11.5 - parent: 1 - type: Transform -- uid: 10573 - type: WallSolid - components: - - pos: 37.5,-12.5 - parent: 1 - type: Transform -- uid: 10574 - type: WallSolid - components: - - pos: 37.5,-14.5 - parent: 1 - type: Transform -- uid: 10575 - type: WallSolid - components: - - pos: 45.5,-6.5 - parent: 1 - type: Transform -- uid: 10576 - type: WallSolid - components: - - pos: 45.5,-7.5 - parent: 1 - type: Transform -- uid: 10577 - type: WallSolid - components: - - pos: 45.5,-8.5 - parent: 1 - type: Transform -- uid: 10578 - type: WallSolid - components: - - pos: 45.5,-9.5 - parent: 1 - type: Transform -- uid: 10579 - type: WallSolid - components: - - pos: 43.5,-9.5 - parent: 1 - type: Transform -- uid: 10580 - type: WallSolid - components: - - pos: 45.5,-10.5 - parent: 1 - type: Transform -- uid: 10581 - type: WallSolid - components: - - pos: 45.5,-12.5 - parent: 1 - type: Transform -- uid: 10582 - type: WallSolid - components: - - pos: 44.5,-12.5 - parent: 1 - type: Transform -- uid: 10583 - type: Window - components: - - pos: 43.5,-12.5 - parent: 1 - type: Transform -- uid: 10584 - type: WallSolid - components: - - pos: 42.5,-12.5 - parent: 1 - type: Transform -- uid: 10585 - type: WallSolid - components: - - pos: 41.5,-12.5 - parent: 1 - type: Transform -- uid: 10586 - type: WallSolid - components: - - pos: 41.5,-13.5 - parent: 1 - type: Transform -- uid: 10587 - type: WallSolid - components: - - pos: 40.5,-13.5 - parent: 1 - type: Transform -- uid: 10588 - type: WallSolid - components: - - pos: 39.5,-13.5 - parent: 1 - type: Transform -- uid: 10589 - type: WallSolid - components: - - pos: 46.5,-12.5 - parent: 1 - type: Transform -- uid: 10590 - type: WallSolid - components: - - pos: 47.5,-12.5 - parent: 1 - type: Transform -- uid: 10591 - type: WallSolid - components: - - pos: 47.5,-11.5 - parent: 1 - type: Transform -- uid: 10592 - type: WallSolid - components: - - pos: 47.5,-10.5 - parent: 1 - type: Transform -- uid: 10593 - type: WallSolid - components: - - pos: 46.5,-6.5 - parent: 1 - type: Transform -- uid: 10594 - type: Barricade - components: - - pos: 42.5,-9.5 - parent: 1 - type: Transform -- uid: 10595 - type: Barricade - components: - - pos: 44.5,-9.5 - parent: 1 - type: Transform -- uid: 10596 - type: Barricade - components: - - pos: 48.5,-12.5 - parent: 1 - type: Transform -- uid: 10597 - type: Railing - components: - - pos: 54.5,-9.5 - parent: 1 - type: Transform -- uid: 10598 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 54.5,-7.5 - parent: 1 - type: Transform -- uid: 10599 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-5.5 - parent: 1 - type: Transform -- uid: 10600 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-11.5 - parent: 1 - type: Transform -- uid: 10601 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-8.5 - parent: 1 - type: Transform -- uid: 10602 - type: FloraTree05 - components: - - pos: 54.09217,-7.7980886 - parent: 1 - type: Transform -- uid: 10603 - type: WallReinforced - components: - - pos: 43.5,-15.5 - parent: 1 - type: Transform -- uid: 10604 - type: WallReinforced - components: - - pos: 42.5,-15.5 - parent: 1 - type: Transform -- uid: 10605 - type: WallReinforced - components: - - pos: 68.5,-15.5 - parent: 1 - type: Transform -- uid: 10606 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-6.5 - parent: 1 - type: Transform -- uid: 10607 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-2.5 - parent: 1 - type: Transform -- uid: 10608 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: 61.5,-15.5 - parent: 1 - type: Transform -- uid: 10609 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 6.5,22.5 - parent: 1 - type: Transform -- uid: 10610 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-19.5 - parent: 1 - type: Transform -- uid: 10611 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-20.5 - parent: 1 - type: Transform -- uid: 10612 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-21.5 - parent: 1 - type: Transform -- uid: 10613 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 57.5,37.5 - parent: 1 - type: Transform -- uid: 10614 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-19.5 - parent: 1 - type: Transform -- uid: 10615 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-19.5 - parent: 1 - type: Transform -- uid: 10616 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-18.5 - parent: 1 - type: Transform -- uid: 10617 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-17.5 - parent: 1 - type: Transform -- uid: 10618 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-17.5 - parent: 1 - type: Transform -- uid: 10619 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-17.5 - parent: 1 - type: Transform -- uid: 10620 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-17.5 - parent: 1 - type: Transform -- uid: 10621 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-17.5 - parent: 1 - type: Transform -- uid: 10622 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-17.5 - parent: 1 - type: Transform -- uid: 10623 - type: CableHV - components: - - pos: 49.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10624 - type: CableHV - components: - - pos: 48.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10625 - type: CableMV - components: - - pos: 48.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10626 - type: CableMV - components: - - pos: 47.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10627 - type: CableMV - components: - - pos: 47.5,-6.5 - parent: 1 - type: Transform -- uid: 10628 - type: CableMV - components: - - pos: 47.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10629 - type: CableMV - components: - - pos: 47.5,-8.5 - parent: 1 - type: Transform -- uid: 10630 - type: CableMV - components: - - pos: 48.5,-8.5 - parent: 1 - type: Transform -- uid: 10631 - type: CableMV - components: - - pos: 49.5,-8.5 - parent: 1 - type: Transform -- uid: 10632 - type: CableMV - components: - - pos: 50.5,-8.5 - parent: 1 - type: Transform -- uid: 10633 - type: CableMV - components: - - pos: 51.5,-8.5 - parent: 1 - type: Transform -- uid: 10634 - type: CableMV - components: - - pos: 52.5,-8.5 - parent: 1 - type: Transform -- uid: 10635 - type: CableMV - components: - - pos: 52.5,-7.5 - parent: 1 - type: Transform -- uid: 10636 - type: CableMV - components: - - pos: 52.5,-6.5 - parent: 1 - type: Transform -- uid: 10637 - type: CableMV - components: - - pos: 53.5,-6.5 - parent: 1 - type: Transform -- uid: 10638 - type: CableMV - components: - - pos: 53.5,-5.5 - parent: 1 - type: Transform -- uid: 10639 - type: CableMV - components: - - pos: 54.5,-5.5 - parent: 1 - type: Transform -- uid: 10640 - type: CableMV - components: - - pos: 55.5,-5.5 - parent: 1 - type: Transform -- uid: 10641 - type: CableMV - components: - - pos: 56.5,-5.5 - parent: 1 - type: Transform -- uid: 10642 - type: CableMV - components: - - pos: 57.5,-5.5 - parent: 1 - type: Transform -- uid: 10643 - type: CableMV - components: - - pos: 58.5,-5.5 - parent: 1 - type: Transform -- uid: 10644 - type: CableMV - components: - - pos: 59.5,-5.5 - parent: 1 - type: Transform -- uid: 10645 - type: CableMV - components: - - pos: 59.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10646 - type: APCBasic - components: - - pos: 59.5,-4.5 - parent: 1 - type: Transform -- uid: 10647 - type: SubstationBasic - components: - - pos: 48.5,-5.5 - parent: 1 - type: Transform -- uid: 10648 - type: ToolboxElectrical - components: - - pos: 46.470684,-5.411702 - parent: 1 - type: Transform -- uid: 10649 - type: AirlockEngineeringLocked - components: - - pos: 47.5,-6.5 - parent: 1 - type: Transform -- uid: 10650 - type: WallReinforced - components: - - pos: 70.5,-30.5 - parent: 1 - type: Transform -- uid: 10651 - type: ReinforcedWindow - components: - - pos: 64.5,-37.5 - parent: 1 - type: Transform -- uid: 10652 - type: ReinforcedWindow - components: - - pos: 78.5,-38.5 - parent: 1 - type: Transform -- uid: 10653 - type: WallReinforced - components: - - pos: 72.5,-39.5 - parent: 1 - type: Transform -- uid: 10654 - type: ReinforcedWindow - components: - - pos: 77.5,-32.5 - parent: 1 - type: Transform -- uid: 10655 - type: ReinforcedWindow - components: - - pos: 78.5,-32.5 - parent: 1 - type: Transform -- uid: 10656 - type: Grille - components: - - pos: 49.5,-62.5 - parent: 1 - type: Transform -- uid: 10657 - type: WallSolid - components: - - pos: 69.5,-35.5 - parent: 1 - type: Transform -- uid: 10658 - type: WallSolid - components: - - pos: 66.5,-36.5 - parent: 1 - type: Transform -- uid: 10659 - type: WallReinforced - components: - - pos: 76.5,-32.5 - parent: 1 - type: Transform -- uid: 10660 - type: GasPipeFourway - components: - - pos: 64.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10661 - type: WallSolid - components: - - pos: 58.5,-40.5 - parent: 1 - type: Transform -- uid: 10662 - type: WallSolid - components: - - pos: 58.5,-41.5 - parent: 1 - type: Transform -- uid: 10663 - type: WallSolid - components: - - pos: 58.5,-42.5 - parent: 1 - type: Transform -- uid: 10664 - type: WallSolid - components: - - pos: 65.5,-36.5 - parent: 1 - type: Transform -- uid: 10665 - type: WallReinforced - components: - - pos: 65.5,-37.5 - parent: 1 - type: Transform -- uid: 10666 - type: GasPipeStraight - components: - - pos: 62.5,-38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10667 - type: ReinforcedWindow - components: - - pos: 77.5,-38.5 - parent: 1 - type: Transform -- uid: 10668 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-38.5 - parent: 1 - type: Transform -- uid: 10669 - type: CableApcExtension - components: - - pos: 58.5,-34.5 - parent: 1 - type: Transform -- uid: 10670 - type: AirlockScienceGlassLocked - components: - - name: anomaly lab - type: MetaData - - rot: 1.5707963267948966 rad - pos: 61.5,-41.5 - parent: 1 - type: Transform -- uid: 10671 - type: GasPipeStraight - components: - - pos: 62.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10672 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10673 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-39.5 - parent: 1 - type: Transform -- uid: 10674 - type: WallReinforced - components: - - pos: 63.5,-40.5 - parent: 1 - type: Transform -- uid: 10675 - type: WallReinforced - components: - - pos: 63.5,-38.5 - parent: 1 - type: Transform -- uid: 10676 - type: WallSolid - components: - - pos: 60.5,-41.5 - parent: 1 - type: Transform -- uid: 10677 - type: WallReinforced - components: - - pos: 76.5,-31.5 - parent: 1 - type: Transform -- uid: 10678 - type: CableApcExtension - components: - - pos: 63.5,-43.5 - parent: 1 - type: Transform -- uid: 10679 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-25.5 - parent: 1 - type: Transform -- uid: 10680 - type: WallSolid - components: - - pos: 41.5,-40.5 - parent: 1 - type: Transform -- uid: 10681 - type: CableApcExtension - components: - - pos: 45.5,-39.5 - parent: 1 - type: Transform -- uid: 10682 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-34.5 - parent: 1 - type: Transform -- uid: 10683 - type: GasPipeStraight - components: - - pos: 73.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10684 - type: GasPassiveVent - components: - - pos: 73.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10685 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-34.5 - parent: 1 - type: Transform -- uid: 10686 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-34.5 - parent: 1 - type: Transform -- uid: 10687 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-36.5 - parent: 1 - type: Transform -- uid: 10688 - type: TableReinforced - components: - - pos: 42.5,-40.5 - parent: 1 - type: Transform -- uid: 10689 - type: TableReinforced - components: - - pos: 43.5,-40.5 - parent: 1 - type: Transform -- uid: 10690 - type: CableApcExtension - components: - - pos: 44.5,-39.5 - parent: 1 - type: Transform -- uid: 10691 - type: WindoorScienceLocked - components: - - rot: 3.141592653589793 rad - pos: 42.5,-40.5 - parent: 1 - type: Transform -- uid: 10692 - type: WindoorScienceLocked - components: - - rot: 3.141592653589793 rad - pos: 43.5,-40.5 - parent: 1 - type: Transform -- uid: 10693 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 44.5,-40.5 - parent: 1 - type: Transform -- uid: 10694 - type: AirlockScienceLocked - components: - - name: r&d - type: MetaData - - pos: 45.5,-40.5 - parent: 1 - type: Transform -- uid: 10695 - type: Table - components: - - pos: 41.5,-39.5 - parent: 1 - type: Transform -- uid: 10696 - type: Table - components: - - pos: 40.5,-39.5 - parent: 1 - type: Transform -- uid: 10697 - type: Table - components: - - pos: 39.5,-39.5 - parent: 1 - type: Transform -- uid: 10698 - type: Table - components: - - pos: 38.5,-39.5 - parent: 1 - type: Transform -- uid: 10699 - type: Table - components: - - pos: 38.5,-38.5 - parent: 1 - type: Transform -- uid: 10700 - type: Table - components: - - pos: 38.5,-37.5 - parent: 1 - type: Transform -- uid: 10701 - type: FirelockGlass - components: - - pos: 15.5,-38.5 - parent: 1 - type: Transform -- uid: 10702 - type: WallSolid - components: - - pos: 47.5,-40.5 - parent: 1 - type: Transform -- uid: 10703 - type: SignScience1 - components: - - pos: 38.5,-40.5 - parent: 1 - type: Transform -- uid: 10704 - type: WallSolid - components: - - pos: 47.5,-44.5 - parent: 1 - type: Transform -- uid: 10705 - type: WallSolid - components: - - pos: 46.5,-44.5 - parent: 1 - type: Transform -- uid: 10706 - type: WallSolid - components: - - pos: 45.5,-44.5 - parent: 1 - type: Transform -- uid: 10707 - type: Window - components: - - pos: 42.5,-44.5 - parent: 1 - type: Transform -- uid: 10708 - type: Window - components: - - pos: 43.5,-44.5 - parent: 1 - type: Transform -- uid: 10709 - type: Window - components: - - pos: 44.5,-44.5 - parent: 1 - type: Transform -- uid: 10710 - type: WallSolid - components: - - pos: 41.5,-44.5 - parent: 1 - type: Transform -- uid: 10711 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-34.5 - parent: 1 - type: Transform -- uid: 10712 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-36.5 - parent: 1 - type: Transform -- uid: 10713 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 73.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10714 - type: WallSolid - components: - - pos: 53.5,-38.5 - parent: 1 - type: Transform -- uid: 10715 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-34.5 - parent: 1 - type: Transform -- uid: 10716 - type: WallSolid - components: - - pos: 47.5,-39.5 - parent: 1 - type: Transform -- uid: 10717 - type: WallSolid - components: - - pos: 47.5,-38.5 - parent: 1 - type: Transform -- uid: 10718 - type: WallSolid - components: - - pos: 54.5,-39.5 - parent: 1 - type: Transform -- uid: 10719 - type: WallSolid - components: - - pos: 52.5,-38.5 - parent: 1 - type: Transform -- uid: 10720 - type: WallSolid - components: - - pos: 54.5,-38.5 - parent: 1 - type: Transform -- uid: 10721 - type: WallSolid - components: - - pos: 56.5,-33.5 - parent: 1 - type: Transform -- uid: 10722 - type: WallSolid - components: - - pos: 59.5,-37.5 - parent: 1 - type: Transform -- uid: 10723 - type: WallSolid - components: - - pos: 59.5,-36.5 - parent: 1 - type: Transform -- uid: 10724 - type: WallSolid - components: - - pos: 58.5,-36.5 - parent: 1 - type: Transform -- uid: 10725 - type: AirlockScienceGlassLocked - components: - - pos: 54.5,-44.5 - parent: 1 - type: Transform -- uid: 10726 - type: AirlockScienceGlassLocked - components: - - pos: 54.5,-45.5 - parent: 1 - type: Transform -- uid: 10727 - type: WallSolid - components: - - pos: 47.5,-47.5 - parent: 1 - type: Transform -- uid: 10728 - type: Table - components: - - pos: 53.5,-40.5 - parent: 1 - type: Transform -- uid: 10729 - type: Table - components: - - pos: 52.5,-40.5 - parent: 1 - type: Transform -- uid: 10730 - type: Table - components: - - pos: 51.5,-40.5 - parent: 1 - type: Transform -- uid: 10731 - type: Table - components: - - pos: 51.5,-41.5 - parent: 1 - type: Transform -- uid: 10732 - type: Table - components: - - pos: 51.5,-42.5 - parent: 1 - type: Transform -- uid: 10733 - type: Table - components: - - pos: 51.5,-43.5 - parent: 1 - type: Transform -- uid: 10734 - type: WallSolid - components: - - pos: 54.5,-40.5 - parent: 1 - type: Transform -- uid: 10735 - type: Table - components: - - pos: 53.5,-43.5 - parent: 1 - type: Transform -- uid: 10736 - type: WallSolid - components: - - pos: 55.5,-40.5 - parent: 1 - type: Transform -- uid: 10737 - type: AirlockResearchDirectorLocked - components: - - pos: 62.5,-50.5 - parent: 1 - type: Transform -- uid: 10738 - type: WallSolid - components: - - pos: 54.5,-42.5 - parent: 1 - type: Transform -- uid: 10739 - type: WallSolid - components: - - pos: 54.5,-43.5 - parent: 1 - type: Transform -- uid: 10740 - type: WallReinforced - components: - - pos: 52.5,-48.5 - parent: 1 - type: Transform -- uid: 10741 - type: WallReinforced - components: - - pos: 52.5,-47.5 - parent: 1 - type: Transform -- uid: 10742 - type: WallReinforced - components: - - pos: 52.5,-46.5 - parent: 1 - type: Transform -- uid: 10743 - type: WallReinforced - components: - - pos: 53.5,-46.5 - parent: 1 - type: Transform -- uid: 10744 - type: WallReinforced - components: - - pos: 54.5,-46.5 - parent: 1 - type: Transform -- uid: 10745 - type: WallSolid - components: - - pos: 51.5,-48.5 - parent: 1 - type: Transform -- uid: 10746 - type: GasPipeStraight - components: - - pos: 49.5,-56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10747 - type: WallSolid - components: - - pos: 48.5,-48.5 - parent: 1 - type: Transform -- uid: 10748 - type: WallSolid - components: - - pos: 47.5,-48.5 - parent: 1 - type: Transform -- uid: 10749 - type: WallSolid - components: - - pos: 56.5,-40.5 - parent: 1 - type: Transform -- uid: 10750 - type: WallSolid - components: - - pos: 57.5,-40.5 - parent: 1 - type: Transform -- uid: 10751 - type: WallReinforced - components: - - pos: 71.5,-66.5 - parent: 1 - type: Transform -- uid: 10752 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-31.5 - parent: 1 - type: Transform -- uid: 10753 - type: AirlockMaintRnDLocked - components: - - name: robotics - type: MetaData - - rot: -1.5707963267948966 rad - pos: 75.5,-50.5 - parent: 1 - type: Transform -- uid: 10754 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-36.5 - parent: 1 - type: Transform -- uid: 10755 - type: WallSolid - components: - - pos: 58.5,-43.5 - parent: 1 - type: Transform -- uid: 10756 - type: WallSolid - components: - - pos: 55.5,-43.5 - parent: 1 - type: Transform -- uid: 10757 - type: WallSolid - components: - - pos: 56.5,-43.5 - parent: 1 - type: Transform -- uid: 10758 - type: AirlockScienceGlassLocked - components: - - pos: 57.5,-43.5 - parent: 1 - type: Transform -- uid: 10759 - type: AirlockScienceGlassLocked - components: - - pos: 54.5,-41.5 - parent: 1 - type: Transform -- uid: 10760 - type: AirlockScienceLocked - components: - - name: robotics - type: MetaData - - pos: 66.5,-48.5 - parent: 1 - type: Transform -- uid: 10761 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 42.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10762 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 43.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10763 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10764 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10765 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 45.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10766 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10767 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10768 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10769 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10770 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10771 - type: GasPipeTJunction - components: - - pos: 44.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10772 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10773 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10774 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10775 - type: GasPipeStraight - components: - - pos: 43.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10776 - type: GasPipeStraight - components: - - pos: 43.5,-40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10777 - type: GasPipeStraight - components: - - pos: 43.5,-41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10778 - type: GasPipeStraight - components: - - pos: 43.5,-39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10779 - type: GasPipeStraight - components: - - pos: 43.5,-38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10780 - type: GasPipeStraight - components: - - pos: 42.5,-39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10781 - type: GasPipeStraight - components: - - pos: 42.5,-40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10782 - type: GasPipeStraight - components: - - pos: 42.5,-38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10783 - type: GasPipeTJunction - components: - - pos: 49.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10784 - type: GasPipeTJunction - components: - - pos: 49.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10785 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 49.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10786 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 49.5,-44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10787 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 49.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10788 - type: GasVentPump - components: - - pos: 42.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10789 - type: GasVentScrubber - components: - - pos: 43.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10790 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10791 - type: GasPipeTJunction - components: - - pos: 50.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10792 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10793 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10794 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10795 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10796 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10797 - type: GasPipeTJunction - components: - - pos: 56.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10798 - type: GasPipeBend - components: - - pos: 57.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10799 - type: GasPipeStraight - components: - - pos: 57.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10800 - type: GasPipeStraight - components: - - pos: 57.5,-43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10801 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 56.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10802 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 56.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10803 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10804 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10805 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10806 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10807 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10808 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 55.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10809 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,-44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10810 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 10811 - type: GasVentScrubber - components: - - pos: 55.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10812 - type: GasPipeStraight - components: - - pos: 50.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10813 - type: GasPipeStraight - components: - - pos: 50.5,-43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10814 - type: GasPipeStraight - components: - - pos: 50.5,-44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10815 - type: GasPipeStraight - components: - - pos: 50.5,-45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10816 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10817 - type: GasPipeStraight - components: - - pos: 50.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10818 - type: GasPipeStraight - components: - - pos: 50.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10819 - type: GasPipeBend - components: - - pos: 49.5,-52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10820 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10821 - type: GasPipeStraight - components: - - pos: 49.5,-53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10822 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10823 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10824 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10825 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10826 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10827 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10828 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10829 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10830 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10831 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 44.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10832 - type: GasVentScrubber - components: - - pos: 45.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10833 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-43.5 - parent: 1 - type: Transform -- uid: 10834 - type: WallSolid - components: - - pos: 47.5,-49.5 - parent: 1 - type: Transform -- uid: 10835 - type: WallSolid - components: - - pos: 47.5,-50.5 - parent: 1 - type: Transform -- uid: 10836 - type: WallSolid - components: - - pos: 46.5,-50.5 - parent: 1 - type: Transform -- uid: 10837 - type: WallSolid - components: - - pos: 45.5,-50.5 - parent: 1 - type: Transform -- uid: 10838 - type: WallSolid - components: - - pos: 44.5,-50.5 - parent: 1 - type: Transform -- uid: 10839 - type: WallSolid - components: - - pos: 43.5,-50.5 - parent: 1 - type: Transform -- uid: 10840 - type: WallSolid - components: - - pos: 42.5,-50.5 - parent: 1 - type: Transform -- uid: 10841 - type: WallSolid - components: - - pos: 41.5,-50.5 - parent: 1 - type: Transform -- uid: 10842 - type: WallSolid - components: - - pos: 57.5,-31.5 - parent: 1 - type: Transform -- uid: 10843 - type: CableApcExtension - components: - - pos: 54.5,-33.5 - parent: 1 - type: Transform -- uid: 10844 - type: WallReinforced - components: - - pos: 75.5,-31.5 - parent: 1 - type: Transform -- uid: 10845 - type: WallReinforced - components: - - pos: 75.5,-30.5 - parent: 1 - type: Transform -- uid: 10846 - type: WallReinforced - components: - - pos: 74.5,-30.5 - parent: 1 - type: Transform -- uid: 10847 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-29.5 - parent: 1 - type: Transform -- uid: 10848 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10849 - type: CableApcExtension - components: - - pos: 65.5,-45.5 - parent: 1 - type: Transform -- uid: 10850 - type: Grille - components: - - pos: 64.5,-28.5 - parent: 1 - type: Transform -- uid: 10851 - type: CableApcExtension - components: - - pos: 65.5,-44.5 - parent: 1 - type: Transform -- uid: 10852 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 73.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10853 - type: WallSolid - components: - - pos: 47.5,-35.5 - parent: 1 - type: Transform -- uid: 10854 - type: AirlockMaintRnDLocked - components: - - name: r&d - type: MetaData - - pos: 45.5,-34.5 - parent: 1 - type: Transform -- uid: 10855 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-34.5 - parent: 1 - type: Transform -- uid: 10856 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 33.5,-60.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 10857 - type: FirelockGlass - components: - - pos: 47.5,-37.5 - parent: 1 - type: Transform -- uid: 10858 - type: FirelockGlass - components: - - pos: 47.5,-43.5 - parent: 1 - type: Transform -- uid: 10859 - type: AirAlarm - components: - - pos: 64.5,-42.5 - parent: 1 - type: Transform - - devices: - - 21684 - - 10928 - - 10930 - - 11512 - - 11517 - - 11516 - - 11258 - - 11514 - - 22571 - - 22572 - type: DeviceList -- uid: 10860 - type: WindoorSecure - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-34.5 - parent: 1 - type: Transform -- uid: 10861 - type: WallReinforced - components: - - pos: 64.5,-42.5 - parent: 1 - type: Transform -- uid: 10862 - type: FireAlarm - components: - - pos: 65.5,-42.5 - parent: 1 - type: Transform - - devices: - - 21684 - - 11512 - - 11517 - - 11516 - - 11258 - - 11514 - - 22571 - - 22572 - type: DeviceList -- uid: 10863 - type: WallSolid - components: - - pos: 66.5,-49.5 - parent: 1 - type: Transform -- uid: 10864 - type: WallReinforced - components: - - pos: 55.5,-46.5 - parent: 1 - type: Transform -- uid: 10865 - type: ReinforcedWindow - components: - - pos: 56.5,-46.5 - parent: 1 - type: Transform -- uid: 10866 - type: WallReinforced - components: - - pos: 57.5,-46.5 - parent: 1 - type: Transform -- uid: 10867 - type: WallReinforced - components: - - pos: 58.5,-46.5 - parent: 1 - type: Transform -- uid: 10868 - type: WallReinforced - components: - - pos: 58.5,-47.5 - parent: 1 - type: Transform -- uid: 10869 - type: AirlockResearchDirectorGlassLocked - components: - - pos: 58.5,-48.5 - parent: 1 - type: Transform -- uid: 10870 - type: WallReinforced - components: - - pos: 58.5,-49.5 - parent: 1 - type: Transform -- uid: 10871 - type: ReinforcedWindow - components: - - pos: 61.5,-56.5 - parent: 1 - type: Transform -- uid: 10872 - type: WallReinforced - components: - - pos: 59.5,-50.5 - parent: 1 - type: Transform -- uid: 10873 - type: WallReinforced - components: - - pos: 60.5,-50.5 - parent: 1 - type: Transform -- uid: 10874 - type: FirelockGlass - components: - - pos: 47.5,-45.5 - parent: 1 - type: Transform -- uid: 10875 - type: ReinforcedWindow - components: - - pos: 61.5,-50.5 - parent: 1 - type: Transform -- uid: 10876 - type: ReinforcedWindow - components: - - pos: 63.5,-50.5 - parent: 1 - type: Transform -- uid: 10877 - type: WallReinforced - components: - - pos: 64.5,-50.5 - parent: 1 - type: Transform -- uid: 10878 - type: WallReinforced - components: - - pos: 65.5,-50.5 - parent: 1 - type: Transform -- uid: 10879 - type: ReinforcedWindow - components: - - pos: 62.5,-56.5 - parent: 1 - type: Transform -- uid: 10880 - type: WallSolid - components: - - pos: 66.5,-44.5 - parent: 1 - type: Transform -- uid: 10881 - type: ShuttersNormal - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-45.5 - parent: 1 - type: Transform - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - SecondsUntilStateChange: -75992.69 - state: Closing - type: Door - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 10933 - Close: - - port: Off - uid: 10933 - Toggle: [] - type: SignalReceiver -- uid: 10882 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 77.5,-46.5 - parent: 1 - type: Transform -- uid: 10883 - type: WallSolid - components: - - pos: 66.5,-43.5 - parent: 1 - type: Transform -- uid: 10884 - type: WallSolid - components: - - pos: 37.5,-44.5 - parent: 1 - type: Transform -- uid: 10885 - type: WallSolid - components: - - pos: 40.5,-45.5 - parent: 1 - type: Transform -- uid: 10886 - type: WallSolid - components: - - pos: 40.5,-47.5 - parent: 1 - type: Transform -- uid: 10887 - type: AirlockScienceGlassLocked - components: - - pos: 58.5,-45.5 - parent: 1 - type: Transform -- uid: 10888 - type: AirlockScienceGlassLocked - components: - - pos: 58.5,-44.5 - parent: 1 - type: Transform -- uid: 10889 - type: WallSolid - components: - - pos: 40.5,-44.5 - parent: 1 - type: Transform -- uid: 10890 - type: CableHV - components: - - pos: 38.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 10891 - type: WallSolid - components: - - pos: 40.5,-48.5 - parent: 1 - type: Transform -- uid: 10892 - type: Grille - components: - - pos: 56.5,-46.5 - parent: 1 - type: Transform -- uid: 10893 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10894 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10895 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10896 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10897 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10898 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10899 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10900 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10901 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10902 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10903 - type: GasVentScrubber - components: - - pos: 56.5,-44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10904 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 57.5,-45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10905 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10906 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10907 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10908 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10909 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10910 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10911 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10912 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10913 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10914 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 63.5,-44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10915 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 63.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10916 - type: GasPipeBend - components: - - pos: 63.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10917 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 62.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10918 - type: GasPipeStraight - components: - - pos: 62.5,-41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10919 - type: GasPipeStraight - components: - - pos: 62.5,-40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10920 - type: WallReinforced - components: - - pos: 63.5,-37.5 - parent: 1 - type: Transform -- uid: 10921 - type: GasPipeStraight - components: - - pos: 62.5,-36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10922 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10923 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10924 - type: GasPipeBend - components: - - pos: 61.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10925 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10926 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10927 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10928 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 61.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10929 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10930 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 63.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10931 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 10932 - type: ShuttersNormal - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-46.5 - parent: 1 - type: Transform - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - SecondsUntilStateChange: -75992.69 - state: Closing - type: Door - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 10933 - Close: - - port: Off - uid: 10933 - Toggle: [] - type: SignalReceiver -- uid: 10933 - type: SignalSwitch - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-44.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 10881 - - port: Open - uid: 10932 - Off: - - port: Close - uid: 10881 - - port: Close - uid: 10932 - type: SignalTransmitter - - type: ItemCooldown -- uid: 10934 - type: WallReinforced - components: - - pos: 7.5,-39.5 - parent: 1 - type: Transform -- uid: 10935 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-64.5 - parent: 1 - type: Transform -- uid: 10936 - type: WallReinforced - components: - - pos: 63.5,-39.5 - parent: 1 - type: Transform -- uid: 10937 - type: WallReinforced - components: - - pos: 63.5,-41.5 - parent: 1 - type: Transform -- uid: 10938 - type: SignAnomaly2 - components: - - pos: 63.5,-41.5 - parent: 1 - type: Transform -- uid: 10939 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-35.5 - parent: 1 - type: Transform -- uid: 10940 - type: ChairOfficeLight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-41.5 - parent: 1 - type: Transform -- uid: 10941 - type: BannerScience - components: - - pos: 48.5,-40.5 - parent: 1 - type: Transform -- uid: 10942 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -17.5,23.5 - parent: 1 - type: Transform -- uid: 10943 - type: AirAlarm - components: - - pos: 43.5,-34.5 - parent: 1 - type: Transform - - devices: - - invalid - - 11522 - - 11521 - - 21682 - - 10789 - - 10788 - - 10857 - type: DeviceList -- uid: 10944 - type: Multitool - components: - - pos: 53.354275,-43.443607 - parent: 1 - type: Transform -- uid: 10945 - type: SheetGlass - components: - - pos: 38.525932,-39.04589 - parent: 1 - type: Transform - - count: 28 - type: Stack -- uid: 10946 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-49.5 - parent: 1 - type: Transform -- uid: 10947 - type: SheetSteel - components: - - pos: 38.51507,-38.238213 - parent: 1 - type: Transform -- uid: 10948 - type: SheetSteel - components: - - pos: 38.494682,-37.42171 - parent: 1 - type: Transform -- uid: 10949 - type: SheetPlastic - components: - - pos: 38.479057,-36.60921 - parent: 1 - type: Transform -- uid: 10950 - type: FoodPlatePlastic - components: - - pos: 58.37584,20.738062 - parent: 1 - type: Transform -- uid: 10951 - type: FoodPlatePlastic - components: - - pos: 57.68834,19.831812 - parent: 1 - type: Transform -- uid: 10952 - type: BannerScience - components: - - pos: 48.5,-44.5 - parent: 1 - type: Transform -- uid: 10953 - type: Firelock - components: - - pos: 45.5,-40.5 - parent: 1 - type: Transform -- uid: 10954 - type: ComputerTechnologyDiskTerminal - components: - - pos: 56.5,-47.5 - parent: 1 - type: Transform -- uid: 10955 - type: WallSolid - components: - - pos: 46.5,-40.5 - parent: 1 - type: Transform -- uid: 10956 - type: FirelockGlass - components: - - pos: 47.5,-41.5 - parent: 1 - type: Transform -- uid: 10957 - type: SignRND - components: - - pos: 47.5,-38.5 - parent: 1 - type: Transform -- uid: 10958 - type: Grille - components: - - pos: 63.5,-50.5 - parent: 1 - type: Transform -- uid: 10959 - type: Grille - components: - - pos: 61.5,-50.5 - parent: 1 - type: Transform -- uid: 10960 - type: WallReinforced - components: - - pos: 52.5,-49.5 - parent: 1 - type: Transform -- uid: 10961 - type: WallReinforced - components: - - pos: 53.5,-49.5 - parent: 1 - type: Transform -- uid: 10962 - type: WallReinforced - components: - - pos: 53.5,-50.5 - parent: 1 - type: Transform -- uid: 10963 - type: WallReinforced - components: - - pos: 54.5,-50.5 - parent: 1 - type: Transform -- uid: 10964 - type: WallReinforced - components: - - pos: 55.5,-54.5 - parent: 1 - type: Transform -- uid: 10965 - type: WallSolid - components: - - pos: 52.5,-59.5 - parent: 1 - type: Transform -- uid: 10966 - type: WallSolid - components: - - pos: 52.5,-60.5 - parent: 1 - type: Transform -- uid: 10967 - type: WallReinforced - components: - - pos: 65.5,-53.5 - parent: 1 - type: Transform -- uid: 10968 - type: ReinforcedWindow - components: - - pos: 58.5,-52.5 - parent: 1 - type: Transform -- uid: 10969 - type: ReinforcedWindow - components: - - pos: 58.5,-51.5 - parent: 1 - type: Transform -- uid: 10970 - type: WallReinforced - components: - - pos: 54.5,-54.5 - parent: 1 - type: Transform -- uid: 10971 - type: WallReinforced - components: - - pos: 59.5,-53.5 - parent: 1 - type: Transform -- uid: 10972 - type: WallReinforced - components: - - pos: 56.5,-54.5 - parent: 1 - type: Transform -- uid: 10973 - type: ReinforcedWindow - components: - - pos: 66.5,-52.5 - parent: 1 - type: Transform -- uid: 10974 - type: ReinforcedWindow - components: - - pos: 66.5,-51.5 - parent: 1 - type: Transform -- uid: 10975 - type: WallReinforced - components: - - pos: 64.5,-56.5 - parent: 1 - type: Transform -- uid: 10976 - type: WallReinforced - components: - - pos: 64.5,-55.5 - parent: 1 - type: Transform -- uid: 10977 - type: WallReinforced - components: - - pos: 60.5,-56.5 - parent: 1 - type: Transform -- uid: 10978 - type: WallReinforced - components: - - pos: 60.5,-55.5 - parent: 1 - type: Transform -- uid: 10979 - type: WallReinforced - components: - - pos: 66.5,-50.5 - parent: 1 - type: Transform -- uid: 10980 - type: WallReinforced - components: - - pos: 66.5,-53.5 - parent: 1 - type: Transform -- uid: 10981 - type: WallReinforced - components: - - pos: 65.5,-55.5 - parent: 1 - type: Transform -- uid: 10982 - type: WallReinforced - components: - - pos: 59.5,-55.5 - parent: 1 - type: Transform -- uid: 10983 - type: WallReinforced - components: - - pos: 58.5,-53.5 - parent: 1 - type: Transform -- uid: 10984 - type: WallReinforced - components: - - pos: 58.5,-50.5 - parent: 1 - type: Transform -- uid: 10985 - type: ReinforcedWindow - components: - - pos: 63.5,-56.5 - parent: 1 - type: Transform -- uid: 10986 - type: ReinforcedWindow - components: - - pos: 54.5,-51.5 - parent: 1 - type: Transform -- uid: 10987 - type: ReinforcedWindow - components: - - pos: 54.5,-52.5 - parent: 1 - type: Transform -- uid: 10988 - type: ReinforcedWindow - components: - - pos: 54.5,-53.5 - parent: 1 - type: Transform -- uid: 10989 - type: Grille - components: - - pos: 58.5,-51.5 - parent: 1 - type: Transform -- uid: 10990 - type: Grille - components: - - pos: 58.5,-52.5 - parent: 1 - type: Transform -- uid: 10991 - type: Grille - components: - - pos: 54.5,-51.5 - parent: 1 - type: Transform -- uid: 10992 - type: Grille - components: - - pos: 54.5,-52.5 - parent: 1 - type: Transform -- uid: 10993 - type: Grille - components: - - pos: 54.5,-53.5 - parent: 1 - type: Transform -- uid: 10994 - type: Grille - components: - - pos: 61.5,-56.5 - parent: 1 - type: Transform -- uid: 10995 - type: Grille - components: - - pos: 62.5,-56.5 - parent: 1 - type: Transform -- uid: 10996 - type: Grille - components: - - pos: 63.5,-56.5 - parent: 1 - type: Transform -- uid: 10997 - type: Grille - components: - - pos: 66.5,-51.5 - parent: 1 - type: Transform -- uid: 10998 - type: Grille - components: - - pos: 66.5,-52.5 - parent: 1 - type: Transform -- uid: 10999 - type: TableWood - components: - - pos: 61.5,-53.5 - parent: 1 - type: Transform -- uid: 11000 - type: TableWood - components: - - pos: 62.5,-53.5 - parent: 1 - type: Transform -- uid: 11001 - type: TableWood - components: - - pos: 63.5,-53.5 - parent: 1 - type: Transform -- uid: 11002 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: 62.5,-54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11003 - type: CableApcExtension - components: - - pos: 60.5,-11.5 - parent: 1 - type: Transform -- uid: 11004 - type: CableApcExtension - components: - - pos: 59.5,-11.5 - parent: 1 - type: Transform -- uid: 11005 - type: CableApcExtension - components: - - pos: 58.5,-11.5 - parent: 1 - type: Transform -- uid: 11006 - type: CableApcExtension - components: - - pos: 57.5,-11.5 - parent: 1 - type: Transform -- uid: 11007 - type: CableApcExtension - components: - - pos: 56.5,-11.5 - parent: 1 - type: Transform -- uid: 11008 - type: CableApcExtension - components: - - pos: 55.5,-11.5 - parent: 1 - type: Transform -- uid: 11009 - type: CableApcExtension - components: - - pos: 54.5,-11.5 - parent: 1 - type: Transform -- uid: 11010 - type: CableApcExtension - components: - - pos: 53.5,-11.5 - parent: 1 - type: Transform -- uid: 11011 - type: CableApcExtension - components: - - pos: 52.5,-11.5 - parent: 1 - type: Transform -- uid: 11012 - type: CableApcExtension - components: - - pos: 53.5,-12.5 - parent: 1 - type: Transform -- uid: 11013 - type: CableApcExtension - components: - - pos: 53.5,-13.5 - parent: 1 - type: Transform -- uid: 11014 - type: CableApcExtension - components: - - pos: 51.5,-11.5 - parent: 1 - type: Transform -- uid: 11015 - type: CableApcExtension - components: - - pos: 51.5,-10.5 - parent: 1 - type: Transform -- uid: 11016 - type: CableApcExtension - components: - - pos: 51.5,-9.5 - parent: 1 - type: Transform -- uid: 11017 - type: CableApcExtension - components: - - pos: 51.5,-8.5 - parent: 1 - type: Transform -- uid: 11018 - type: CableApcExtension - components: - - pos: 50.5,-8.5 - parent: 1 - type: Transform -- uid: 11019 - type: CableApcExtension - components: - - pos: 49.5,-8.5 - parent: 1 - type: Transform -- uid: 11020 - type: CableApcExtension - components: - - pos: 48.5,-8.5 - parent: 1 - type: Transform -- uid: 11021 - type: CableApcExtension - components: - - pos: 47.5,-8.5 - parent: 1 - type: Transform -- uid: 11022 - type: CableApcExtension - components: - - pos: 46.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11023 - type: CableApcExtension - components: - - pos: 47.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11024 - type: CableApcExtension - components: - - pos: 46.5,-9.5 - parent: 1 - type: Transform -- uid: 11025 - type: CableApcExtension - components: - - pos: 46.5,-10.5 - parent: 1 - type: Transform -- uid: 11026 - type: CableApcExtension - components: - - pos: 46.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11027 - type: CableApcExtension - components: - - pos: 45.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11028 - type: CableApcExtension - components: - - pos: 44.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11029 - type: CableApcExtension - components: - - pos: 43.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11030 - type: CableApcExtension - components: - - pos: 42.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11031 - type: CableApcExtension - components: - - pos: 41.5,-11.5 - parent: 1 - type: Transform -- uid: 11032 - type: CableApcExtension - components: - - pos: 40.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11033 - type: CableApcExtension - components: - - pos: 40.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11034 - type: CableApcExtension - components: - - pos: 39.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11035 - type: CableApcExtension - components: - - pos: 38.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11036 - type: CableApcExtension - components: - - pos: 38.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11037 - type: CableApcExtension - components: - - pos: 38.5,-14.5 - parent: 1 - type: Transform -- uid: 11038 - type: CableApcExtension - components: - - pos: 38.5,-15.5 - parent: 1 - type: Transform -- uid: 11039 - type: CableApcExtension - components: - - pos: 39.5,-14.5 - parent: 1 - type: Transform -- uid: 11040 - type: CableApcExtension - components: - - pos: 40.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11041 - type: CableApcExtension - components: - - pos: 41.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11042 - type: CableApcExtension - components: - - pos: 42.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11043 - type: CableApcExtension - components: - - pos: 43.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11044 - type: CableApcExtension - components: - - pos: 42.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11045 - type: CableApcExtension - components: - - pos: 38.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11046 - type: CableApcExtension - components: - - pos: 38.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11047 - type: CableApcExtension - components: - - pos: 37.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11048 - type: CableApcExtension - components: - - pos: 36.5,-8.5 - parent: 1 - type: Transform -- uid: 11049 - type: CableApcExtension - components: - - pos: 35.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11050 - type: CableApcExtension - components: - - pos: 33.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11051 - type: CableApcExtension - components: - - pos: 34.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11052 - type: CableApcExtension - components: - - pos: 35.5,-9.5 - parent: 1 - type: Transform -- uid: 11053 - type: CableApcExtension - components: - - pos: 44.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11054 - type: CableApcExtension - components: - - pos: 58.5,-5.5 - parent: 1 - type: Transform -- uid: 11055 - type: CableApcExtension - components: - - pos: 57.5,-5.5 - parent: 1 - type: Transform -- uid: 11056 - type: CableApcExtension - components: - - pos: 56.5,-5.5 - parent: 1 - type: Transform -- uid: 11057 - type: CableApcExtension - components: - - pos: 55.5,-5.5 - parent: 1 - type: Transform -- uid: 11058 - type: CableApcExtension - components: - - pos: 54.5,-6.5 - parent: 1 - type: Transform -- uid: 11059 - type: CableApcExtension - components: - - pos: 54.5,-5.5 - parent: 1 - type: Transform -- uid: 11060 - type: CableApcExtension - components: - - pos: 59.5,-3.5 - parent: 1 - type: Transform -- uid: 11061 - type: CableApcExtension - components: - - pos: 59.5,-2.5 - parent: 1 - type: Transform -- uid: 11062 - type: CableApcExtension - components: - - pos: 60.5,-2.5 - parent: 1 - type: Transform -- uid: 11063 - type: CableApcExtension - components: - - pos: 61.5,-2.5 - parent: 1 - type: Transform -- uid: 11064 - type: CableApcExtension - components: - - pos: 62.5,-2.5 - parent: 1 - type: Transform -- uid: 11065 - type: CableApcExtension - components: - - pos: 63.5,-2.5 - parent: 1 - type: Transform -- uid: 11066 - type: CableApcExtension - components: - - pos: 62.5,-1.5 - parent: 1 - type: Transform -- uid: 11067 - type: CableApcExtension - components: - - pos: 60.5,-1.5 - parent: 1 - type: Transform -- uid: 11068 - type: CableApcExtension - components: - - pos: 63.5,-11.5 - parent: 1 - type: Transform -- uid: 11069 - type: CableApcExtension - components: - - pos: 64.5,-11.5 - parent: 1 - type: Transform -- uid: 11070 - type: CableApcExtension - components: - - pos: 62.5,-13.5 - parent: 1 - type: Transform -- uid: 11071 - type: CableApcExtension - components: - - pos: 63.5,-13.5 - parent: 1 - type: Transform -- uid: 11072 - type: CableApcExtension - components: - - pos: 64.5,-13.5 - parent: 1 - type: Transform -- uid: 11073 - type: CableApcExtension - components: - - pos: 62.5,-14.5 - parent: 1 - type: Transform -- uid: 11074 - type: CableApcExtension - components: - - pos: 62.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11075 - type: CableApcExtension - components: - - pos: 62.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11076 - type: CableApcExtension - components: - - pos: 62.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11077 - type: CableApcExtension - components: - - pos: 62.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11078 - type: CableApcExtension - components: - - pos: 62.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11079 - type: CableApcExtension - components: - - pos: 62.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11080 - type: CableApcExtension - components: - - pos: 62.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11081 - type: CableApcExtension - components: - - pos: 62.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11082 - type: CableApcExtension - components: - - pos: 62.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11083 - type: CableApcExtension - components: - - pos: 62.5,-24.5 - parent: 1 - type: Transform -- uid: 11084 - type: CableApcExtension - components: - - pos: 62.5,-25.5 - parent: 1 - type: Transform -- uid: 11085 - type: CableApcExtension - components: - - pos: 62.5,-26.5 - parent: 1 - type: Transform -- uid: 11086 - type: CableApcExtension - components: - - pos: 62.5,-27.5 - parent: 1 - type: Transform -- uid: 11087 - type: CableApcExtension - components: - - pos: 62.5,-28.5 - parent: 1 - type: Transform -- uid: 11088 - type: CableApcExtension - components: - - pos: 64.5,-5.5 - parent: 1 - type: Transform -- uid: 11089 - type: CableApcExtension - components: - - pos: 63.5,-3.5 - parent: 1 - type: Transform -- uid: 11090 - type: CableApcExtension - components: - - pos: 64.5,-3.5 - parent: 1 - type: Transform -- uid: 11091 - type: CableApcExtension - components: - - pos: 57.5,-12.5 - parent: 1 - type: Transform -- uid: 11092 - type: CableApcExtension - components: - - pos: 57.5,-13.5 - parent: 1 - type: Transform -- uid: 11093 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11094 - type: GasPipeBend - components: - - pos: 64.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11095 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11096 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 60.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11097 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11098 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 63.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11099 - type: GasPipeStraight - components: - - pos: 64.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11100 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11101 - type: GasPipeTJunction - components: - - pos: 60.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11102 - type: GasPipeStraight - components: - - pos: 60.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11103 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 63.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11104 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 63.5,-30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11105 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 63.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11106 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 63.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11107 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 63.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11108 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11109 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11110 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11111 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11112 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11113 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11114 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 61.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11115 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11116 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11117 - type: GasPipeStraight - components: - - pos: 61.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11118 - type: GasPipeStraight - components: - - pos: 61.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11119 - type: GasPipeStraight - components: - - pos: 61.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11120 - type: GasPipeStraight - components: - - pos: 61.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11121 - type: GasPipeStraight - components: - - pos: 61.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11122 - type: GasPipeStraight - components: - - pos: 61.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11123 - type: GasPipeStraight - components: - - pos: 61.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11124 - type: GasPipeStraight - components: - - pos: 61.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11125 - type: GasPipeStraight - components: - - pos: 61.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11126 - type: GasPipeStraight - components: - - pos: 61.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11127 - type: GasPipeStraight - components: - - pos: 61.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11128 - type: GasPipeStraight - components: - - pos: 61.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11129 - type: GasPipeStraight - components: - - pos: 61.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11130 - type: GasPipeStraight - components: - - pos: 62.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11131 - type: GasPipeStraight - components: - - pos: 62.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11132 - type: GasPipeStraight - components: - - pos: 62.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11133 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11134 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11135 - type: GasPipeStraight - components: - - pos: 61.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11136 - type: GasPipeStraight - components: - - pos: 61.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11137 - type: GasPipeStraight - components: - - pos: 61.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11138 - type: GasPipeStraight - components: - - pos: 63.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11139 - type: GasPipeStraight - components: - - pos: 63.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11140 - type: GasPipeStraight - components: - - pos: 63.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11141 - type: GasPipeStraight - components: - - pos: 63.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11142 - type: GasPipeStraight - components: - - pos: 63.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11143 - type: GasPipeStraight - components: - - pos: 63.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11144 - type: GasPipeStraight - components: - - pos: 63.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11145 - type: GasPipeStraight - components: - - pos: 63.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11146 - type: GasPipeStraight - components: - - pos: 63.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11147 - type: GasPipeStraight - components: - - pos: 63.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11148 - type: GasPipeStraight - components: - - pos: 63.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11149 - type: GasPipeStraight - components: - - pos: 63.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11150 - type: GasPipeStraight - components: - - pos: 63.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11151 - type: GasPipeStraight - components: - - pos: 63.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11152 - type: GasPipeTJunction - components: - - pos: 55.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11153 - type: GasPipeStraight - components: - - pos: 63.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11154 - type: GasPipeStraight - components: - - pos: 63.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11155 - type: GasPipeStraight - components: - - pos: 63.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11156 - type: GasPipeStraight - components: - - pos: 63.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11157 - type: GasPipeStraight - components: - - pos: 63.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11158 - type: GasPipeStraight - components: - - pos: 63.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11159 - type: GasPipeStraight - components: - - pos: 63.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11160 - type: GasPipeStraight - components: - - pos: 63.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11161 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11162 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11163 - type: GasVentScrubber - components: - - pos: 63.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11164 - type: GasVentPump - components: - - pos: 61.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11165 - type: GasPipeBend - components: - - pos: 64.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11166 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11167 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11168 - type: GasPipeStraight - components: - - pos: 64.5,-48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11169 - type: GasPipeStraight - components: - - pos: 64.5,-49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11170 - type: GasPipeStraight - components: - - pos: 64.5,-50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11171 - type: GasPipeStraight - components: - - pos: 64.5,-51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11172 - type: GasPipeStraight - components: - - pos: 60.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11173 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11174 - type: GasPipeStraight - components: - - pos: 60.5,-49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11175 - type: GasPipeStraight - components: - - pos: 60.5,-50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11176 - type: GasPipeStraight - components: - - pos: 60.5,-51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11177 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 64.5,-52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11178 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 60.5,-52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11179 - type: LockerResearchDirectorFilled - components: - - pos: 63.5,-55.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11180 - type: ClothingNeckMantleRD - components: - - pos: 63.464256,-53.431217 - parent: 1 - type: Transform -- uid: 11181 - type: WarpPoint - components: - - pos: 12.5,11.5 - parent: 1 - type: Transform - - location: bar - type: WarpPoint -- uid: 11182 - type: Bed - components: - - pos: 62.5,-55.5 - parent: 1 - type: Transform -- uid: 11183 - type: BedsheetRD - components: - - pos: 62.5,-55.5 - parent: 1 - type: Transform -- uid: 11184 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-36.5 - parent: 1 - type: Transform -- uid: 11185 - type: RandomArtifactSpawner - components: - - pos: 67.5,-37.5 - parent: 1 - type: Transform -- uid: 11186 - type: WallSolid - components: - - pos: 66.5,-35.5 - parent: 1 - type: Transform -- uid: 11187 - type: WallSolid - components: - - pos: 67.5,-35.5 - parent: 1 - type: Transform -- uid: 11188 - type: WallSolid - components: - - pos: 68.5,-35.5 - parent: 1 - type: Transform -- uid: 11189 - type: SignalSwitch - components: - - rot: 3.141592653589793 rad - pos: 70.5,-39.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 27683 - Off: - - port: Close - uid: 27683 - type: SignalTransmitter -- uid: 11190 - type: Autolathe - components: - - pos: 40.5,-35.5 - parent: 1 - type: Transform - - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - type: MaterialStorage -- uid: 11191 - type: CircuitImprinter - components: - - pos: 44.5,-35.5 - parent: 1 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Gold - type: MaterialStorage -- uid: 11192 - type: Protolathe - components: - - pos: 43.5,-35.5 - parent: 1 - type: Transform - - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold - type: MaterialStorage -- uid: 11193 - type: PowerDrill - components: - - pos: 62.617344,-53.460384 - parent: 1 - type: Transform -- uid: 11194 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 45.5,-43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11195 - type: ClothingBeltUtilityFilled - components: - - pos: 41.37638,-39.3584 - parent: 1 - type: Transform -- uid: 11196 - type: Poweredlight - components: - - pos: 72.5,-43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11197 - type: WallReinforced - components: - - pos: 76.5,-42.5 - parent: 1 - type: Transform -- uid: 11198 - type: SinkWide - components: - - rot: 1.5707963267948966 rad - pos: -33.5,9.5 - parent: 1 - type: Transform -- uid: 11199 - type: ClothingHeadHatCardborg - components: - - pos: 72.844894,-43.422203 - parent: 1 - type: Transform -- uid: 11200 - type: CableMV - components: - - pos: 43.5,-64.5 - parent: 1 - type: Transform -- uid: 11201 - type: ClosetMaintenanceFilledRandom - components: - - pos: -19.5,58.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11202 - type: CableHV - components: - - pos: -24.5,-16.5 - parent: 1 - type: Transform -- uid: 11203 - type: Table - components: - - pos: 38.5,-36.5 - parent: 1 - type: Transform -- uid: 11204 - type: BoxBeaker - components: - - pos: 42.431667,-35.402893 - parent: 1 - type: Transform -- uid: 11205 - type: HandLabeler - components: - - pos: 39.184,-39.455414 - parent: 1 - type: Transform -- uid: 11206 - type: Table - components: - - pos: 42.5,-35.5 - parent: 1 - type: Transform -- uid: 11207 - type: Table - components: - - pos: 41.5,-35.5 - parent: 1 - type: Transform -- uid: 11208 - type: CableApcExtension - components: - - pos: 45.5,19.5 - parent: 1 - type: Transform -- uid: 11209 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-43.5 - parent: 1 - type: Transform -- uid: 11210 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-43.5 - parent: 1 - type: Transform -- uid: 11211 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-43.5 - parent: 1 - type: Transform -- uid: 11212 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-43.5 - parent: 1 - type: Transform -- uid: 11213 - type: DisposalJunction - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-43.5 - parent: 1 - type: Transform -- uid: 11214 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-43.5 - parent: 1 - type: Transform -- uid: 11215 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-43.5 - parent: 1 - type: Transform -- uid: 11216 - type: DisposalBend - components: - - pos: 49.5,-43.5 - parent: 1 - type: Transform -- uid: 11217 - type: DisposalPipe - components: - - pos: 49.5,-44.5 - parent: 1 - type: Transform -- uid: 11218 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 49.5,-45.5 - parent: 1 - type: Transform -- uid: 11219 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 49.5,-46.5 - parent: 1 - type: Transform -- uid: 11220 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 49.5,-47.5 - parent: 1 - type: Transform -- uid: 11221 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-47.5 - parent: 1 - type: Transform -- uid: 11222 - type: DisposalPipe - components: - - pos: 49.5,-48.5 - parent: 1 - type: Transform -- uid: 11223 - type: DisposalPipe - components: - - pos: 49.5,-49.5 - parent: 1 - type: Transform -- uid: 11224 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-50.5 - parent: 1 - type: Transform -- uid: 11225 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-45.5 - parent: 1 - type: Transform -- uid: 11226 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-45.5 - parent: 1 - type: Transform -- uid: 11227 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-45.5 - parent: 1 - type: Transform -- uid: 11228 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-45.5 - parent: 1 - type: Transform -- uid: 11229 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-45.5 - parent: 1 - type: Transform -- uid: 11230 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-45.5 - parent: 1 - type: Transform -- uid: 11231 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-45.5 - parent: 1 - type: Transform -- uid: 11232 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-45.5 - parent: 1 - type: Transform -- uid: 11233 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-45.5 - parent: 1 - type: Transform -- uid: 11234 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-45.5 - parent: 1 - type: Transform -- uid: 11235 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-45.5 - parent: 1 - type: Transform -- uid: 11236 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-45.5 - parent: 1 - type: Transform -- uid: 11237 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-45.5 - parent: 1 - type: Transform -- uid: 11238 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-45.5 - parent: 1 - type: Transform -- uid: 11239 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-47.5 - parent: 1 - type: Transform -- uid: 11240 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,-42.5 - parent: 1 - type: Transform -- uid: 11241 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,-41.5 - parent: 1 - type: Transform -- uid: 11242 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,-40.5 - parent: 1 - type: Transform -- uid: 11243 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,-39.5 - parent: 1 - type: Transform -- uid: 11244 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,-38.5 - parent: 1 - type: Transform -- uid: 11245 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,-37.5 - parent: 1 - type: Transform -- uid: 11246 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 46.5,-36.5 - parent: 1 - type: Transform -- uid: 11247 - type: DisposalTrunk - components: - - pos: 46.5,-35.5 - parent: 1 - type: Transform -- uid: 11248 - type: DisposalUnit - components: - - pos: 46.5,-35.5 - parent: 1 - type: Transform -- uid: 11249 - type: DisposalUnit - components: - - pos: 51.5,-47.5 - parent: 1 - type: Transform -- uid: 11250 - type: Grille - components: - - pos: 36.5,33.5 - parent: 1 - type: Transform -- uid: 11251 - type: Grille - components: - - pos: 36.5,32.5 - parent: 1 - type: Transform -- uid: 11252 - type: Grille - components: - - pos: 36.5,31.5 - parent: 1 - type: Transform -- uid: 11253 - type: Grille - components: - - pos: 36.5,30.5 - parent: 1 - type: Transform -- uid: 11254 - type: Grille - components: - - pos: 36.5,29.5 - parent: 1 - type: Transform -- uid: 11255 - type: Grille - components: - - pos: 36.5,28.5 - parent: 1 - type: Transform -- uid: 11256 - type: Grille - components: - - pos: 36.5,27.5 - parent: 1 - type: Transform -- uid: 11257 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-47.5 - parent: 1 - type: Transform -- uid: 11258 - type: Firelock - components: - - pos: 66.5,-48.5 - parent: 1 - type: Transform -- uid: 11259 - type: CableHV - components: - - pos: 36.5,-42.5 - parent: 1 - type: Transform -- uid: 11260 - type: CableHV - components: - - pos: 37.5,-42.5 - parent: 1 - type: Transform -- uid: 11261 - type: CableHV - components: - - pos: 38.5,-42.5 - parent: 1 - type: Transform -- uid: 11262 - type: CableHV - components: - - pos: 39.5,-42.5 - parent: 1 - type: Transform -- uid: 11263 - type: CableHV - components: - - pos: 40.5,-42.5 - parent: 1 - type: Transform -- uid: 11264 - type: CableHV - components: - - pos: 41.5,-42.5 - parent: 1 - type: Transform -- uid: 11265 - type: CableHV - components: - - pos: 42.5,-42.5 - parent: 1 - type: Transform -- uid: 11266 - type: CableHV - components: - - pos: 43.5,-42.5 - parent: 1 - type: Transform -- uid: 11267 - type: CableHV - components: - - pos: 44.5,-42.5 - parent: 1 - type: Transform -- uid: 11268 - type: CableHV - components: - - pos: 45.5,-42.5 - parent: 1 - type: Transform -- uid: 11269 - type: CableHV - components: - - pos: 46.5,-42.5 - parent: 1 - type: Transform -- uid: 11270 - type: CableHV - components: - - pos: 47.5,-42.5 - parent: 1 - type: Transform -- uid: 11271 - type: CableHV - components: - - pos: 48.5,-42.5 - parent: 1 - type: Transform -- uid: 11272 - type: CableHV - components: - - pos: 49.5,-42.5 - parent: 1 - type: Transform -- uid: 11273 - type: CableHV - components: - - pos: 49.5,-43.5 - parent: 1 - type: Transform -- uid: 11274 - type: CableHV - components: - - pos: 49.5,-44.5 - parent: 1 - type: Transform -- uid: 11275 - type: CableHV - components: - - pos: 38.5,-45.5 - parent: 1 - type: Transform -- uid: 11276 - type: CableHV - components: - - pos: 38.5,-43.5 - parent: 1 - type: Transform -- uid: 11277 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 40.5,-46.5 - parent: 1 - type: Transform -- uid: 11278 - type: CableHV - components: - - pos: 38.5,-46.5 - parent: 1 - type: Transform -- uid: 11279 - type: GasPipeStraight - components: - - pos: 50.5,-49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11280 - type: GasPipeStraight - components: - - pos: 49.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11281 - type: GasPipeStraight - components: - - pos: 49.5,-58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11282 - type: GasPipeStraight - components: - - pos: 49.5,-59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11283 - type: GasPipeStraight - components: - - pos: 50.5,-50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11284 - type: GasPipeStraight - components: - - pos: 50.5,-51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11285 - type: Table - components: - - pos: 46.5,-49.5 - parent: 1 - type: Transform -- uid: 11286 - type: Table - components: - - pos: 45.5,-49.5 - parent: 1 - type: Transform -- uid: 11287 - type: Table - components: - - pos: 44.5,-49.5 - parent: 1 - type: Transform -- uid: 11288 - type: Table - components: - - pos: 43.5,-49.5 - parent: 1 - type: Transform -- uid: 11289 - type: Table - components: - - pos: 42.5,-49.5 - parent: 1 - type: Transform -- uid: 11290 - type: Table - components: - - pos: 42.5,-48.5 - parent: 1 - type: Transform -- uid: 11291 - type: VendingMachineSciDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 43.5,-45.5 - parent: 1 - type: Transform -- uid: 11292 - type: HandLabeler - components: - - pos: 6.478527,-46.7963 - parent: 1 - type: Transform -- uid: 11293 - type: LockerScienceFilled - components: - - pos: 44.5,-45.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11294 - type: LockerScienceFilled - components: - - pos: 42.5,-45.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11295 - type: SignDirectionalJanitor - components: - - pos: -6.5,-2.5 - parent: 1 - type: Transform -- uid: 11296 - type: SignDirectionalJanitor - components: - - rot: -1.5707963267948966 rad - pos: 13.511264,-23.825424 - parent: 1 - type: Transform -- uid: 11297 - type: SignDirectionalJanitor - components: - - rot: -1.5707963267948966 rad - pos: 13.468106,-40.766113 - parent: 1 - type: Transform -- uid: 11298 - type: SignDirectionalJanitor - components: - - rot: 3.141592653589793 rad - pos: -6.4057527,-39.226246 - parent: 1 - type: Transform -- uid: 11299 - type: SignDirectionalFood - components: - - rot: 3.141592653589793 rad - pos: -6.4057527,-39.46833 - parent: 1 - type: Transform -- uid: 11300 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -1.4898663,-40.13394 - parent: 1 - type: Transform -- uid: 11301 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: -1.4898663,-40.368317 - parent: 1 - type: Transform -- uid: 11302 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: -1.4758278,-40.604027 - parent: 1 - type: Transform -- uid: 11303 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -1.4898663,-40.82144 - parent: 1 - type: Transform -- uid: 11304 - type: SignDirectionalSupply - components: - - rot: -1.5707963267948966 rad - pos: -12.525326,-40.287384 - parent: 1 - type: Transform -- uid: 11305 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: -12.525326,-40.537384 - parent: 1 - type: Transform -- uid: 11306 - type: SignDirectionalMed - components: - - rot: -1.5707963267948966 rad - pos: 37.560596,-40.278557 - parent: 1 - type: Transform -- uid: 11307 - type: SignDirectionalEng - components: - - rot: -1.5707963267948966 rad - pos: 37.56283,-40.519398 - parent: 1 - type: Transform -- uid: 11308 - type: SignDirectionalSupply - components: - - rot: -1.5707963267948966 rad - pos: 37.56283,-40.753773 - parent: 1 - type: Transform -- uid: 11309 - type: SubstationBasic - components: - - pos: 38.5,-46.5 - parent: 1 - type: Transform -- uid: 11310 - type: WallSolid - components: - - pos: 38.5,-47.5 - parent: 1 - type: Transform -- uid: 11311 - type: WallSolid - components: - - pos: 37.5,-47.5 - parent: 1 - type: Transform -- uid: 11312 - type: WallSolid - components: - - pos: 37.5,-46.5 - parent: 1 - type: Transform -- uid: 11313 - type: WallSolid - components: - - pos: 37.5,-45.5 - parent: 1 - type: Transform -- uid: 11314 - type: CableMV - components: - - pos: 38.5,-46.5 - parent: 1 - type: Transform -- uid: 11315 - type: CableMV - components: - - pos: 38.5,-45.5 - parent: 1 - type: Transform -- uid: 11316 - type: CableMV - components: - - pos: 38.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11317 - type: CableMV - components: - - pos: 38.5,-43.5 - parent: 1 - type: Transform -- uid: 11318 - type: CableMV - components: - - pos: 39.5,-43.5 - parent: 1 - type: Transform -- uid: 11319 - type: CableMV - components: - - pos: 40.5,-43.5 - parent: 1 - type: Transform -- uid: 11320 - type: CableMV - components: - - pos: 41.5,-43.5 - parent: 1 - type: Transform -- uid: 11321 - type: CableMV - components: - - pos: 42.5,-43.5 - parent: 1 - type: Transform -- uid: 11322 - type: CableMV - components: - - pos: 43.5,-43.5 - parent: 1 - type: Transform -- uid: 11323 - type: CableMV - components: - - pos: 44.5,-43.5 - parent: 1 - type: Transform -- uid: 11324 - type: CableMV - components: - - pos: 45.5,-43.5 - parent: 1 - type: Transform -- uid: 11325 - type: CableMV - components: - - pos: 46.5,-43.5 - parent: 1 - type: Transform -- uid: 11326 - type: CableMV - components: - - pos: 47.5,-43.5 - parent: 1 - type: Transform -- uid: 11327 - type: CableMV - components: - - pos: 48.5,-43.5 - parent: 1 - type: Transform -- uid: 11328 - type: CableMV - components: - - pos: 49.5,-43.5 - parent: 1 - type: Transform -- uid: 11329 - type: CableMV - components: - - pos: 49.5,-44.5 - parent: 1 - type: Transform -- uid: 11330 - type: CableMV - components: - - pos: 49.5,-45.5 - parent: 1 - type: Transform -- uid: 11331 - type: CableMV - components: - - pos: 50.5,-45.5 - parent: 1 - type: Transform -- uid: 11332 - type: CableMV - components: - - pos: 51.5,-45.5 - parent: 1 - type: Transform -- uid: 11333 - type: CableMV - components: - - pos: 52.5,-45.5 - parent: 1 - type: Transform -- uid: 11334 - type: CableMV - components: - - pos: 53.5,-45.5 - parent: 1 - type: Transform -- uid: 11335 - type: CableMV - components: - - pos: 54.5,-45.5 - parent: 1 - type: Transform -- uid: 11336 - type: CableMV - components: - - pos: 55.5,-45.5 - parent: 1 - type: Transform -- uid: 11337 - type: CableMV - components: - - pos: 55.5,-44.5 - parent: 1 - type: Transform -- uid: 11338 - type: CableMV - components: - - pos: 55.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11339 - type: APCHighCapacity - components: - - pos: 55.5,-43.5 - parent: 1 - type: Transform -- uid: 11340 - type: CableApcExtension - components: - - pos: 55.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11341 - type: CableApcExtension - components: - - pos: 55.5,-42.5 - parent: 1 - type: Transform -- uid: 11342 - type: CableApcExtension - components: - - pos: 55.5,-41.5 - parent: 1 - type: Transform -- uid: 11343 - type: CableApcExtension - components: - - pos: 54.5,-41.5 - parent: 1 - type: Transform -- uid: 11344 - type: CableApcExtension - components: - - pos: 53.5,-41.5 - parent: 1 - type: Transform -- uid: 11345 - type: CableApcExtension - components: - - pos: 53.5,-42.5 - parent: 1 - type: Transform -- uid: 11346 - type: CableApcExtension - components: - - pos: 52.5,-42.5 - parent: 1 - type: Transform -- uid: 11347 - type: CableApcExtension - components: - - pos: 51.5,-42.5 - parent: 1 - type: Transform -- uid: 11348 - type: CableApcExtension - components: - - pos: 50.5,-42.5 - parent: 1 - type: Transform -- uid: 11349 - type: CableApcExtension - components: - - pos: 49.5,-42.5 - parent: 1 - type: Transform -- uid: 11350 - type: CableApcExtension - components: - - pos: 48.5,-42.5 - parent: 1 - type: Transform -- uid: 11351 - type: CableApcExtension - components: - - pos: 47.5,-42.5 - parent: 1 - type: Transform -- uid: 11352 - type: CableApcExtension - components: - - pos: 46.5,-42.5 - parent: 1 - type: Transform -- uid: 11353 - type: CableApcExtension - components: - - pos: 45.5,-42.5 - parent: 1 - type: Transform -- uid: 11354 - type: CableApcExtension - components: - - pos: 44.5,-42.5 - parent: 1 - type: Transform -- uid: 11355 - type: CableApcExtension - components: - - pos: 43.5,-42.5 - parent: 1 - type: Transform -- uid: 11356 - type: CableApcExtension - components: - - pos: 42.5,-42.5 - parent: 1 - type: Transform -- uid: 11357 - type: CableApcExtension - components: - - pos: 46.5,-41.5 - parent: 1 - type: Transform -- uid: 11358 - type: CableApcExtension - components: - - pos: 46.5,-40.5 - parent: 1 - type: Transform -- uid: 11359 - type: CableApcExtension - components: - - pos: 46.5,-39.5 - parent: 1 - type: Transform -- uid: 11360 - type: CableApcExtension - components: - - pos: 46.5,-38.5 - parent: 1 - type: Transform -- uid: 11361 - type: CableApcExtension - components: - - pos: 46.5,-37.5 - parent: 1 - type: Transform -- uid: 11362 - type: CableApcExtension - components: - - pos: 45.5,-37.5 - parent: 1 - type: Transform -- uid: 11363 - type: CableApcExtension - components: - - pos: 44.5,-37.5 - parent: 1 - type: Transform -- uid: 11364 - type: CableApcExtension - components: - - pos: 43.5,-37.5 - parent: 1 - type: Transform -- uid: 11365 - type: CableApcExtension - components: - - pos: 42.5,-37.5 - parent: 1 - type: Transform -- uid: 11366 - type: CableApcExtension - components: - - pos: 41.5,-37.5 - parent: 1 - type: Transform -- uid: 11367 - type: CableApcExtension - components: - - pos: 40.5,-37.5 - parent: 1 - type: Transform -- uid: 11368 - type: CableApcExtension - components: - - pos: 39.5,-37.5 - parent: 1 - type: Transform -- uid: 11369 - type: CableApcExtension - components: - - pos: 40.5,-36.5 - parent: 1 - type: Transform -- uid: 11370 - type: CableApcExtension - components: - - pos: 43.5,-36.5 - parent: 1 - type: Transform -- uid: 11371 - type: CableApcExtension - components: - - pos: 45.5,-36.5 - parent: 1 - type: Transform -- uid: 11372 - type: CableApcExtension - components: - - pos: 43.5,-38.5 - parent: 1 - type: Transform -- uid: 11373 - type: CableApcExtension - components: - - pos: 40.5,-38.5 - parent: 1 - type: Transform -- uid: 11374 - type: CableApcExtension - components: - - pos: 49.5,-41.5 - parent: 1 - type: Transform -- uid: 11375 - type: CableApcExtension - components: - - pos: 49.5,-40.5 - parent: 1 - type: Transform -- uid: 11376 - type: CableApcExtension - components: - - pos: 49.5,-39.5 - parent: 1 - type: Transform -- uid: 11377 - type: CableApcExtension - components: - - pos: 49.5,-38.5 - parent: 1 - type: Transform -- uid: 11378 - type: CableApcExtension - components: - - pos: 50.5,-38.5 - parent: 1 - type: Transform -- uid: 11379 - type: CableApcExtension - components: - - pos: 51.5,-38.5 - parent: 1 - type: Transform -- uid: 11380 - type: CableApcExtension - components: - - pos: 49.5,-37.5 - parent: 1 - type: Transform -- uid: 11381 - type: CableApcExtension - components: - - pos: 55.5,-44.5 - parent: 1 - type: Transform -- uid: 11382 - type: CableApcExtension - components: - - pos: 56.5,-44.5 - parent: 1 - type: Transform -- uid: 11383 - type: CableApcExtension - components: - - pos: 57.5,-44.5 - parent: 1 - type: Transform -- uid: 11384 - type: CableApcExtension - components: - - pos: 58.5,-44.5 - parent: 1 - type: Transform -- uid: 11385 - type: CableApcExtension - components: - - pos: 59.5,-44.5 - parent: 1 - type: Transform -- uid: 11386 - type: CableApcExtension - components: - - pos: 60.5,-44.5 - parent: 1 - type: Transform -- uid: 11387 - type: CableApcExtension - components: - - pos: 61.5,-44.5 - parent: 1 - type: Transform -- uid: 11388 - type: CableApcExtension - components: - - pos: 62.5,-44.5 - parent: 1 - type: Transform -- uid: 11389 - type: CableApcExtension - components: - - pos: 62.5,-43.5 - parent: 1 - type: Transform -- uid: 11390 - type: CableApcExtension - components: - - pos: 62.5,-42.5 - parent: 1 - type: Transform -- uid: 11391 - type: CableApcExtension - components: - - pos: 62.5,-41.5 - parent: 1 - type: Transform -- uid: 11392 - type: CableApcExtension - components: - - pos: 62.5,-40.5 - parent: 1 - type: Transform -- uid: 11393 - type: CableApcExtension - components: - - pos: 62.5,-39.5 - parent: 1 - type: Transform -- uid: 11394 - type: CableMV - components: - - pos: 68.5,-59.5 - parent: 1 - type: Transform -- uid: 11395 - type: CableApcExtension - components: - - pos: 62.5,-37.5 - parent: 1 - type: Transform -- uid: 11396 - type: CableApcExtension - components: - - pos: 62.5,-36.5 - parent: 1 - type: Transform -- uid: 11397 - type: CableApcExtension - components: - - pos: 62.5,-35.5 - parent: 1 - type: Transform -- uid: 11398 - type: CableApcExtension - components: - - pos: 62.5,-34.5 - parent: 1 - type: Transform -- uid: 11399 - type: CableApcExtension - components: - - pos: 63.5,-34.5 - parent: 1 - type: Transform -- uid: 11400 - type: CableApcExtension - components: - - pos: 64.5,-34.5 - parent: 1 - type: Transform -- uid: 11401 - type: CableApcExtension - components: - - pos: 65.5,-34.5 - parent: 1 - type: Transform -- uid: 11402 - type: CableApcExtension - components: - - pos: 62.5,-33.5 - parent: 1 - type: Transform -- uid: 11403 - type: CableApcExtension - components: - - pos: 62.5,-32.5 - parent: 1 - type: Transform -- uid: 11404 - type: CableApcExtension - components: - - pos: 62.5,-31.5 - parent: 1 - type: Transform -- uid: 11405 - type: CableApcExtension - components: - - pos: 61.5,-34.5 - parent: 1 - type: Transform -- uid: 11406 - type: CableApcExtension - components: - - pos: 60.5,-34.5 - parent: 1 - type: Transform -- uid: 11407 - type: CableApcExtension - components: - - pos: 59.5,-34.5 - parent: 1 - type: Transform -- uid: 11408 - type: CableApcExtension - components: - - pos: 64.5,-35.5 - parent: 1 - type: Transform -- uid: 11409 - type: CableApcExtension - components: - - pos: 60.5,-35.5 - parent: 1 - type: Transform -- uid: 11410 - type: CableApcExtension - components: - - pos: 63.5,-33.5 - parent: 1 - type: Transform -- uid: 11411 - type: CableApcExtension - components: - - pos: 62.5,-45.5 - parent: 1 - type: Transform -- uid: 11412 - type: CableApcExtension - components: - - pos: 62.5,-46.5 - parent: 1 - type: Transform -- uid: 11413 - type: CableApcExtension - components: - - pos: 62.5,-47.5 - parent: 1 - type: Transform -- uid: 11414 - type: CableApcExtension - components: - - pos: 62.5,-48.5 - parent: 1 - type: Transform -- uid: 11415 - type: CableApcExtension - components: - - pos: 62.5,-49.5 - parent: 1 - type: Transform -- uid: 11416 - type: CableApcExtension - components: - - pos: 62.5,-50.5 - parent: 1 - type: Transform -- uid: 11417 - type: CableApcExtension - components: - - pos: 62.5,-51.5 - parent: 1 - type: Transform -- uid: 11418 - type: CableApcExtension - components: - - pos: 62.5,-52.5 - parent: 1 - type: Transform -- uid: 11419 - type: CableApcExtension - components: - - pos: 62.5,-53.5 - parent: 1 - type: Transform -- uid: 11420 - type: CableApcExtension - components: - - pos: 62.5,-54.5 - parent: 1 - type: Transform -- uid: 11421 - type: CableApcExtension - components: - - pos: 63.5,-52.5 - parent: 1 - type: Transform -- uid: 11422 - type: CableApcExtension - components: - - pos: 64.5,-52.5 - parent: 1 - type: Transform -- uid: 11423 - type: CableApcExtension - components: - - pos: 61.5,-52.5 - parent: 1 - type: Transform -- uid: 11424 - type: CableApcExtension - components: - - pos: 60.5,-52.5 - parent: 1 - type: Transform -- uid: 11425 - type: CableApcExtension - components: - - pos: 63.5,-46.5 - parent: 1 - type: Transform -- uid: 11426 - type: CableApcExtension - components: - - pos: 64.5,-46.5 - parent: 1 - type: Transform -- uid: 11427 - type: CableApcExtension - components: - - pos: 65.5,-46.5 - parent: 1 - type: Transform -- uid: 11428 - type: CableApcExtension - components: - - pos: 66.5,-46.5 - parent: 1 - type: Transform -- uid: 11429 - type: CableMV - components: - - pos: 69.5,-59.5 - parent: 1 - type: Transform -- uid: 11430 - type: CableApcExtension - components: - - pos: 68.5,-46.5 - parent: 1 - type: Transform -- uid: 11431 - type: CableApcExtension - components: - - pos: 69.5,-46.5 - parent: 1 - type: Transform -- uid: 11432 - type: CableApcExtension - components: - - pos: 70.5,-46.5 - parent: 1 - type: Transform -- uid: 11433 - type: CableApcExtension - components: - - pos: 71.5,-46.5 - parent: 1 - type: Transform -- uid: 11434 - type: CableApcExtension - components: - - pos: 72.5,-46.5 - parent: 1 - type: Transform -- uid: 11435 - type: CableApcExtension - components: - - pos: 69.5,-47.5 - parent: 1 - type: Transform -- uid: 11436 - type: CableApcExtension - components: - - pos: 69.5,-48.5 - parent: 1 - type: Transform -- uid: 11437 - type: CableApcExtension - components: - - pos: 69.5,-49.5 - parent: 1 - type: Transform -- uid: 11438 - type: CableApcExtension - components: - - pos: 69.5,-45.5 - parent: 1 - type: Transform -- uid: 11439 - type: CableApcExtension - components: - - pos: 69.5,-44.5 - parent: 1 - type: Transform -- uid: 11440 - type: CableApcExtension - components: - - pos: 71.5,-45.5 - parent: 1 - type: Transform -- uid: 11441 - type: CableApcExtension - components: - - pos: 71.5,-47.5 - parent: 1 - type: Transform -- uid: 11442 - type: CableApcExtension - components: - - pos: 73.5,-46.5 - parent: 1 - type: Transform -- uid: 11443 - type: CableApcExtension - components: - - pos: 73.5,-47.5 - parent: 1 - type: Transform -- uid: 11444 - type: CableApcExtension - components: - - pos: 73.5,-45.5 - parent: 1 - type: Transform -- uid: 11445 - type: CableApcExtension - components: - - pos: 49.5,-43.5 - parent: 1 - type: Transform -- uid: 11446 - type: CableApcExtension - components: - - pos: 49.5,-44.5 - parent: 1 - type: Transform -- uid: 11447 - type: APCBasic - components: - - pos: 48.5,-48.5 - parent: 1 - type: Transform -- uid: 11448 - type: CableApcExtension - components: - - pos: 49.5,-46.5 - parent: 1 - type: Transform -- uid: 11449 - type: CableApcExtension - components: - - pos: 49.5,-47.5 - parent: 1 - type: Transform -- uid: 11450 - type: GasPipeStraight - components: - - pos: 49.5,-55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11451 - type: CableApcExtension - components: - - pos: 49.5,-49.5 - parent: 1 - type: Transform -- uid: 11452 - type: CableApcExtension - components: - - pos: 49.5,-50.5 - parent: 1 - type: Transform -- uid: 11453 - type: CableApcExtension - components: - - pos: 49.5,-51.5 - parent: 1 - type: Transform -- uid: 11454 - type: CableApcExtension - components: - - pos: 49.5,-52.5 - parent: 1 - type: Transform -- uid: 11455 - type: CableApcExtension - components: - - pos: 49.5,-53.5 - parent: 1 - type: Transform -- uid: 11456 - type: CableApcExtension - components: - - pos: 49.5,-54.5 - parent: 1 - type: Transform -- uid: 11457 - type: CableApcExtension - components: - - pos: 48.5,-45.5 - parent: 1 - type: Transform -- uid: 11458 - type: CableApcExtension - components: - - pos: 47.5,-45.5 - parent: 1 - type: Transform -- uid: 11459 - type: CableApcExtension - components: - - pos: 46.5,-45.5 - parent: 1 - type: Transform -- uid: 11460 - type: CableApcExtension - components: - - pos: 45.5,-45.5 - parent: 1 - type: Transform -- uid: 11461 - type: CableApcExtension - components: - - pos: 45.5,-46.5 - parent: 1 - type: Transform -- uid: 11462 - type: CableApcExtension - components: - - pos: 45.5,-47.5 - parent: 1 - type: Transform -- uid: 11463 - type: CableApcExtension - components: - - pos: 45.5,-48.5 - parent: 1 - type: Transform -- uid: 11464 - type: CableApcExtension - components: - - pos: 44.5,-48.5 - parent: 1 - type: Transform -- uid: 11465 - type: CableApcExtension - components: - - pos: 43.5,-48.5 - parent: 1 - type: Transform -- uid: 11466 - type: CableApcExtension - components: - - pos: 43.5,-47.5 - parent: 1 - type: Transform -- uid: 11467 - type: CableApcExtension - components: - - pos: 43.5,-46.5 - parent: 1 - type: Transform -- uid: 11468 - type: CableApcExtension - components: - - pos: 42.5,-46.5 - parent: 1 - type: Transform -- uid: 11469 - type: CableApcExtension - components: - - pos: 41.5,-46.5 - parent: 1 - type: Transform -- uid: 11470 - type: CableApcExtension - components: - - pos: 40.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11471 - type: CableApcExtension - components: - - pos: 39.5,-46.5 - parent: 1 - type: Transform -- uid: 11472 - type: CableApcExtension - components: - - pos: 41.5,-42.5 - parent: 1 - type: Transform -- uid: 11473 - type: CableApcExtension - components: - - pos: 40.5,-42.5 - parent: 1 - type: Transform -- uid: 11474 - type: CableApcExtension - components: - - pos: 39.5,-42.5 - parent: 1 - type: Transform -- uid: 11475 - type: CableApcExtension - components: - - pos: 38.5,-42.5 - parent: 1 - type: Transform -- uid: 11476 - type: CableApcExtension - components: - - pos: 37.5,-42.5 - parent: 1 - type: Transform -- uid: 11477 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11478 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11479 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11480 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11481 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 42.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11482 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11483 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11484 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11485 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11486 - type: ShuttersNormalOpen - components: - - pos: 62.5,-56.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86520.43 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28681 - Close: - - port: Off - uid: 28681 - Toggle: [] - type: SignalReceiver -- uid: 11487 - type: ShuttersNormalOpen - components: - - pos: 63.5,-56.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86520.43 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28681 - Close: - - port: Off - uid: 28681 - Toggle: [] - type: SignalReceiver -- uid: 11488 - type: MedkitFilled - components: - - pos: 52.41982,-43.535877 - parent: 1 - type: Transform -- uid: 11489 - type: KitchenMicrowave - components: - - pos: 45.5,-49.5 - parent: 1 - type: Transform -- uid: 11490 - type: FoodBoxDonkpocketPizza - components: - - pos: 46.42201,-49.329933 - parent: 1 - type: Transform -- uid: 11491 - type: FoodBoxDonkpocketDink - components: - - pos: 46.42201,-49.40806 - parent: 1 - type: Transform -- uid: 11492 - type: WaterCooler - components: - - pos: 41.5,-47.5 - parent: 1 - type: Transform -- uid: 11493 - type: DrinkGlass - components: - - pos: 42.510113,-48.4107 - parent: 1 - type: Transform -- uid: 11494 - type: DrinkGlass - components: - - pos: 42.510113,-48.4107 - parent: 1 - type: Transform -- uid: 11495 - type: ReinforcedWindow - components: - - pos: 50.5,-31.5 - parent: 1 - type: Transform -- uid: 11496 - type: ReinforcedWindow - components: - - pos: 51.5,-31.5 - parent: 1 - type: Transform -- uid: 11497 - type: Grille - components: - - pos: 51.5,-62.5 - parent: 1 - type: Transform -- uid: 11498 - type: Catwalk - components: - - pos: 61.5,-58.5 - parent: 1 - type: Transform -- uid: 11499 - type: Catwalk - components: - - pos: 62.5,-58.5 - parent: 1 - type: Transform -- uid: 11500 - type: Catwalk - components: - - pos: 63.5,-58.5 - parent: 1 - type: Transform -- uid: 11501 - type: WallReinforced - components: - - pos: 44.5,-65.5 - parent: 1 - type: Transform -- uid: 11502 - type: WallSolid - components: - - pos: 57.5,-63.5 - parent: 1 - type: Transform -- uid: 11503 - type: FoodMealPotatoYaki - components: - - pos: 44.419395,-49.295273 - parent: 1 - type: Transform -- uid: 11504 - type: Screwdriver - components: - - pos: 43.519844,-49.259262 - parent: 1 - type: Transform -- uid: 11505 - type: Wrench - components: - - pos: 43.41047,-49.384262 - parent: 1 - type: Transform -- uid: 11506 - type: CrateArtifactContainer - components: - - pos: 73.5,-36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11507 - type: ClosetFireFilled - components: - - pos: 51.5,-49.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11508 - type: ClosetEmergencyFilledRandom - components: - - pos: 52.5,-50.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 11509 - type: GasAnalyzer - components: - - pos: 53.6123,-53.30506 - parent: 1 - type: Transform -- uid: 11510 - type: WallReinforced - components: - - pos: 70.5,-31.5 - parent: 1 - type: Transform -- uid: 11511 - type: WallSolid - components: - - pos: 57.5,-36.5 - parent: 1 - type: Transform -- uid: 11512 - type: FirelockGlass - components: - - pos: 62.5,-41.5 - parent: 1 - type: Transform -- uid: 11513 - type: AirlockScienceGlassLocked - components: - - name: toxins - type: MetaData - - pos: 49.5,-48.5 - parent: 1 - type: Transform -- uid: 11514 - type: FirelockGlass - components: - - pos: 62.5,-50.5 - parent: 1 - type: Transform -- uid: 11515 - type: FirelockGlass - components: - - pos: 47.5,-46.5 - parent: 1 - type: Transform -- uid: 11516 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-46.5 - parent: 1 - type: Transform -- uid: 11517 - type: FirelockEdge - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-45.5 - parent: 1 - type: Transform -- uid: 11518 - type: AirlockScienceGlassLocked - components: - - rot: 3.141592653589793 rad - pos: 47.5,-41.5 - parent: 1 - type: Transform -- uid: 11519 - type: AirlockScienceGlassLocked - components: - - rot: 3.141592653589793 rad - pos: 47.5,-43.5 - parent: 1 - type: Transform -- uid: 11520 - type: AirlockScienceGlassLocked - components: - - rot: 3.141592653589793 rad - pos: 47.5,-42.5 - parent: 1 - type: Transform -- uid: 11521 - type: Firelock - components: - - pos: 42.5,-40.5 - parent: 1 - type: Transform -- uid: 11522 - type: Firelock - components: - - pos: 43.5,-40.5 - parent: 1 - type: Transform -- uid: 11523 - type: ChairOfficeLight - components: - - pos: 42.5,-39.5 - parent: 1 - type: Transform -- uid: 11524 - type: ComputerResearchAndDevelopment - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-39.5 - parent: 1 - type: Transform -- uid: 11525 - type: FirelockGlass - components: - - pos: 40.5,-43.5 - parent: 1 - type: Transform -- uid: 11526 - type: FirelockGlass - components: - - pos: 40.5,-42.5 - parent: 1 - type: Transform -- uid: 11527 - type: FirelockGlass - components: - - pos: 40.5,-41.5 - parent: 1 - type: Transform -- uid: 11528 - type: AirlockScienceGlassLocked - components: - - name: science canteen - type: MetaData - - pos: 47.5,-45.5 - parent: 1 - type: Transform -- uid: 11529 - type: FirelockGlass - components: - - pos: 49.5,-48.5 - parent: 1 - type: Transform -- uid: 11530 - type: FirelockGlass - components: - - pos: 50.5,-48.5 - parent: 1 - type: Transform -- uid: 11531 - type: AirlockScienceGlassLocked - components: - - name: toxins - type: MetaData - - pos: 50.5,-48.5 - parent: 1 - type: Transform -- uid: 11532 - type: CableApcExtension - components: - - pos: 59.5,-33.5 - parent: 1 - type: Transform -- uid: 11533 - type: WallReinforced - components: - - pos: 64.5,-30.5 - parent: 1 - type: Transform -- uid: 11534 - type: FoodSnackDanDanNoodles - components: - - pos: -17.010939,42.53945 - parent: 1 - type: Transform -- uid: 11535 - type: FoodRicePork - components: - - pos: -14.4963455,47.699337 - parent: 1 - type: Transform -- uid: 11536 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: -14.5,66.5 - parent: 1 - type: Transform -- uid: 11537 - type: AirlockMaintLocked - components: - - pos: -17.5,52.5 - parent: 1 - type: Transform -- uid: 11538 - type: AirlockMaintLocked - components: - - pos: -20.5,55.5 - parent: 1 - type: Transform -- uid: 11539 - type: AirlockMaintGlassLocked - components: - - pos: -17.5,64.5 - parent: 1 - type: Transform -- uid: 11540 - type: AirlockMaintGlassLocked - components: - - pos: -17.5,59.5 - parent: 1 - type: Transform -- uid: 11541 - type: CarpetGreen - components: - - pos: -22.5,45.5 - parent: 1 - type: Transform -- uid: 11542 - type: CarpetGreen - components: - - pos: -22.5,44.5 - parent: 1 - type: Transform -- uid: 11543 - type: CarpetGreen - components: - - pos: -22.5,43.5 - parent: 1 - type: Transform -- uid: 11544 - type: CarpetGreen - components: - - pos: -22.5,42.5 - parent: 1 - type: Transform -- uid: 11545 - type: CarpetGreen - components: - - pos: -21.5,45.5 - parent: 1 - type: Transform -- uid: 11546 - type: CarpetGreen - components: - - pos: -21.5,44.5 - parent: 1 - type: Transform -- uid: 11547 - type: ShowcaseRobotAntique - components: - - pos: 61.5,-46.5 - parent: 1 - type: Transform -- uid: 11548 - type: Table - components: - - pos: 71.5,-43.5 - parent: 1 - type: Transform -- uid: 11549 - type: ReinforcedWindow - components: - - pos: 79.5,-35.5 - parent: 1 - type: Transform -- uid: 11550 - type: WallReinforced - components: - - pos: 73.5,-39.5 - parent: 1 - type: Transform -- uid: 11551 - type: WallReinforced - components: - - pos: 73.5,-42.5 - parent: 1 - type: Transform -- uid: 11552 - type: WallReinforced - components: - - pos: 73.5,-41.5 - parent: 1 - type: Transform -- uid: 11553 - type: Saw - components: - - pos: 73.565475,-49.416637 - parent: 1 - type: Transform -- uid: 11554 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 68.5,-44.5 - parent: 1 - type: Transform -- uid: 11555 - type: WallReinforced - components: - - pos: 74.5,-50.5 - parent: 1 - type: Transform -- uid: 11556 - type: Catwalk - components: - - pos: 79.5,-43.5 - parent: 1 - type: Transform -- uid: 11557 - type: Catwalk - components: - - pos: 79.5,-42.5 - parent: 1 - type: Transform -- uid: 11558 - type: WallReinforced - components: - - pos: 68.5,-50.5 - parent: 1 - type: Transform -- uid: 11559 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 70.5,-49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11560 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-50.5 - parent: 1 - type: Transform -- uid: 11561 - type: WallReinforced - components: - - pos: 67.5,-50.5 - parent: 1 - type: Transform -- uid: 11562 - type: Table - components: - - pos: 73.5,-44.5 - parent: 1 - type: Transform -- uid: 11563 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-47.5 - parent: 1 - type: Transform -- uid: 11564 - type: CableMV - components: - - pos: 40.5,-62.5 - parent: 1 - type: Transform -- uid: 11565 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-47.5 - parent: 1 - type: Transform -- uid: 11566 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-47.5 - parent: 1 - type: Transform -- uid: 11567 - type: Table - components: - - pos: 69.5,-49.5 - parent: 1 - type: Transform -- uid: 11568 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-47.5 - parent: 1 - type: Transform -- uid: 11569 - type: VendingMachineRoboDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: 67.5,-43.5 - parent: 1 - type: Transform -- uid: 11570 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 67.5,-49.5 - parent: 1 - type: Transform -- uid: 11571 - type: DisposalBend - components: - - pos: 67.5,-45.5 - parent: 1 - type: Transform -- uid: 11572 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-45.5 - parent: 1 - type: Transform -- uid: 11573 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-45.5 - parent: 1 - type: Transform -- uid: 11574 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-45.5 - parent: 1 - type: Transform -- uid: 11575 - type: DisposalPipe - components: - - pos: 67.5,-46.5 - parent: 1 - type: Transform -- uid: 11576 - type: DisposalJunction - components: - - rot: 3.141592653589793 rad - pos: 67.5,-47.5 - parent: 1 - type: Transform -- uid: 11577 - type: DisposalPipe - components: - - pos: 67.5,-48.5 - parent: 1 - type: Transform -- uid: 11578 - type: DisposalUnit - components: - - pos: 67.5,-49.5 - parent: 1 - type: Transform -- uid: 11579 - type: CableMV - components: - - pos: 40.5,-60.5 - parent: 1 - type: Transform -- uid: 11580 - type: ClothingHandsGlovesColorYellowBudget - components: - - rot: 12.566370614359172 rad - pos: 71.23901,-43.34667 - parent: 1 - type: Transform -- uid: 11581 - type: FoodBurgerRobot - components: - - rot: 12.566370614359172 rad - pos: 70.44214,-43.360043 - parent: 1 - type: Transform -- uid: 11582 - type: CableApcExtension - components: - - pos: 55.5,-63.5 - parent: 1 - type: Transform -- uid: 11583 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11584 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11585 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11586 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11587 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11588 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11589 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11590 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11591 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11592 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11593 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11594 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11595 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11596 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11597 - type: FloorDrain - components: - - rot: 3.141592653589793 rad - pos: 71.5,-49.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 11598 - type: WeaponSubMachineGunVector - components: - - pos: 27.939907,32.617863 - parent: 1 - type: Transform -- uid: 11599 - type: WeaponSubMachineGunVector - components: - - pos: 28.718153,32.704456 - parent: 1 - type: Transform -- uid: 11600 - type: Table - components: - - pos: 73.5,-43.5 - parent: 1 - type: Transform -- uid: 11601 - type: WeaponSubMachineGunVector - components: - - pos: 29.421278,32.68883 - parent: 1 - type: Transform -- uid: 11602 - type: Grille - components: - - pos: 68.5,-42.5 - parent: 1 - type: Transform -- uid: 11603 - type: Table - components: - - pos: 72.5,-43.5 - parent: 1 - type: Transform -- uid: 11604 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 67.5,-49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11605 - type: CableMV - components: - - pos: 42.5,-64.5 - parent: 1 - type: Transform -- uid: 11606 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 60.5,-49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11607 - type: AirlockScienceLocked - components: - - pos: 62.5,-37.5 - parent: 1 - type: Transform -- uid: 11608 - type: Poweredlight - components: - - pos: 56.5,-44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11609 - type: Poweredlight - components: - - pos: 56.5,-41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11610 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11611 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11612 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11613 - type: FirelockGlass - components: - - pos: 47.5,-42.5 - parent: 1 - type: Transform -- uid: 11614 - type: Poweredlight - components: - - pos: 39.5,-35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11615 - type: Poweredlight - components: - - pos: 44.5,-35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11616 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11617 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 35.5,-43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11618 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11619 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 16.5,-43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11620 - type: Poweredlight - components: - - pos: 33.5,-39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11621 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11622 - type: Poweredlight - components: - - pos: 45.5,-45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11623 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 42.5,-49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11624 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 65.5,-35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11625 - type: AirlockGlassShuttle - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-37.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 11626 - type: Firelock - components: - - pos: 62.5,-37.5 - parent: 1 - type: Transform -- uid: 11627 - type: WallSolid - components: - - pos: 59.5,-30.5 - parent: 1 - type: Transform -- uid: 11628 - type: CableApcExtension - components: - - pos: 64.5,-43.5 - parent: 1 - type: Transform -- uid: 11629 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11630 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11631 - type: SpawnPointResearchDirector - components: - - pos: 63.5,-52.5 - parent: 1 - type: Transform -- uid: 11632 - type: SpawnPointScientist - components: - - pos: 45.5,-46.5 - parent: 1 - type: Transform -- uid: 11633 - type: SpawnPointScientist - components: - - pos: 43.5,-46.5 - parent: 1 - type: Transform -- uid: 11634 - type: SpawnPointScientist - components: - - pos: 41.5,-46.5 - parent: 1 - type: Transform -- uid: 11635 - type: SpawnPointScientist - components: - - pos: 44.5,-47.5 - parent: 1 - type: Transform -- uid: 11636 - type: WallReinforced - components: - - pos: 67.5,-32.5 - parent: 1 - type: Transform -- uid: 11637 - type: WallReinforced - components: - - pos: 68.5,-32.5 - parent: 1 - type: Transform -- uid: 11638 - type: WallSolid - components: - - pos: 56.5,-31.5 - parent: 1 - type: Transform -- uid: 11639 - type: WallSolid - components: - - pos: 58.5,-31.5 - parent: 1 - type: Transform -- uid: 11640 - type: MachineAPE - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-34.5 - parent: 1 - type: Transform -- uid: 11641 - type: ReinforcedWindow - components: - - pos: 58.5,-25.5 - parent: 1 - type: Transform -- uid: 11642 - type: WallReinforced - components: - - pos: 65.5,-30.5 - parent: 1 - type: Transform -- uid: 11643 - type: AirlockGlassShuttle - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-34.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 11644 - type: WallReinforced - components: - - pos: 76.5,-39.5 - parent: 1 - type: Transform -- uid: 11645 - type: WallReinforced - components: - - pos: 76.5,-38.5 - parent: 1 - type: Transform -- uid: 11646 - type: ReinforcedWindow - components: - - pos: 76.5,-35.5 - parent: 1 - type: Transform -- uid: 11647 - type: AtmosDeviceFanTiny - components: - - pos: 79.5,-36.5 - parent: 1 - type: Transform -- uid: 11648 - type: Grille - components: - - pos: 77.5,-38.5 - parent: 1 - type: Transform -- uid: 11649 - type: AirlockExternalGlass - components: - - pos: 76.5,-34.5 - parent: 1 - type: Transform -- uid: 11650 - type: WallReinforced - components: - - pos: 79.5,-32.5 - parent: 1 - type: Transform -- uid: 11651 - type: WallReinforced - components: - - pos: 79.5,-38.5 - parent: 1 - type: Transform -- uid: 11652 - type: ReinforcedWindow - components: - - pos: 77.5,-35.5 - parent: 1 - type: Transform -- uid: 11653 - type: ReinforcedWindow - components: - - pos: 78.5,-35.5 - parent: 1 - type: Transform -- uid: 11654 - type: ReinforcedWindow - components: - - pos: 78.5,-46.5 - parent: 1 - type: Transform -- uid: 11655 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-27.5 - parent: 1 - type: Transform -- uid: 11656 - type: WallReinforced - components: - - pos: 78.5,-43.5 - parent: 1 - type: Transform -- uid: 11657 - type: Grille - components: - - pos: 78.5,-46.5 - parent: 1 - type: Transform -- uid: 11658 - type: WallReinforced - components: - - pos: 76.5,-41.5 - parent: 1 - type: Transform -- uid: 11659 - type: ClothingOuterCardborg - components: - - pos: 73.548645,-43.410946 - parent: 1 - type: Transform -- uid: 11660 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-53.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 11661 - type: ReinforcedWindow - components: - - pos: -45.5,-51.5 - parent: 1 - type: Transform -- uid: 11662 - type: TableWood - components: - - pos: -16.5,-45.5 - parent: 1 - type: Transform -- uid: 11663 - type: TableWood - components: - - pos: -16.5,-47.5 - parent: 1 - type: Transform -- uid: 11664 - type: TableWood - components: - - pos: -16.5,-49.5 - parent: 1 - type: Transform -- uid: 11665 - type: Table - components: - - pos: -11.5,-48.5 - parent: 1 - type: Transform -- uid: 11666 - type: Table - components: - - pos: -11.5,-49.5 - parent: 1 - type: Transform -- uid: 11667 - type: Table - components: - - pos: -11.5,-50.5 - parent: 1 - type: Transform -- uid: 11668 - type: Table - components: - - pos: -12.5,-50.5 - parent: 1 - type: Transform -- uid: 11669 - type: filingCabinetDrawer - components: - - pos: 57.5,-41.5 - parent: 1 - type: Transform -- uid: 11670 - type: Chair - components: - - pos: 44.5,-48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11671 - type: Chair - components: - - pos: 46.5,-48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11672 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: 56.49031,-41.437515 - parent: 1 - type: Transform -- uid: 11673 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-36.5 - parent: 1 - type: Transform -- uid: 11674 - type: SurveillanceCameraScience - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-47.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: science robotics showcase - type: SurveillanceCamera -- uid: 11675 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 3.141592653589793 rad - pos: 52.5,-42.5 - parent: 1 - type: Transform -- uid: 11676 - type: SurveillanceCameraScience - components: - - rot: 3.141592653589793 rad - pos: 37.5,-41.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: science entrance - type: SurveillanceCamera -- uid: 11677 - type: AirlockEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: 38.5,-44.5 - parent: 1 - type: Transform -- uid: 11678 - type: AirlockScienceGlassLocked - components: - - name: science canteen - type: MetaData - - rot: 3.141592653589793 rad - pos: 47.5,-46.5 - parent: 1 - type: Transform -- uid: 11679 - type: WallReinforced - components: - - pos: 76.5,-40.5 - parent: 1 - type: Transform -- uid: 11680 - type: AirlockScienceGlassLocked - components: - - name: anomaly lab - type: MetaData - - pos: 62.5,-41.5 - parent: 1 - type: Transform -- uid: 11681 - type: WeldingFuelTankFull - components: - - pos: -3.5,-71.5 - parent: 1 - type: Transform -- uid: 11682 - type: CableApcExtension - components: - - pos: -15.5,-18.5 - parent: 1 - type: Transform -- uid: 11683 - type: CableApcExtension - components: - - pos: -21.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11684 - type: ComputerResearchAndDevelopment - components: - - pos: 68.5,-43.5 - parent: 1 - type: Transform -- uid: 11685 - type: ShowcaseRobotMarauder - components: - - pos: 63.5,-46.5 - parent: 1 - type: Transform -- uid: 11686 - type: ShowcaseRobot - components: - - pos: 62.5,-45.5 - parent: 1 - type: Transform -- uid: 11687 - type: ShowcaseRobotWhite - components: - - pos: 62.5,-47.5 - parent: 1 - type: Transform -- uid: 11688 - type: WallPlastitanium - components: - - pos: 62.5,-46.5 - parent: 1 - type: Transform -- uid: 11689 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 28.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11690 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 29.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11691 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 30.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11692 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 30.5,-54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11693 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 29.5,-54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11694 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 28.5,-54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11695 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 32.5,-54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11696 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 33.5,-54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11697 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 34.5,-54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11698 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 34.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11699 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 33.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11700 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 32.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11701 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 32.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11702 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 33.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11703 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 34.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11704 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 30.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11705 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 29.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11706 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 28.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11707 - type: WindowReinforcedDirectional - components: - - pos: 30.5,-52.5 - parent: 1 - type: Transform -- uid: 11708 - type: WindowReinforcedDirectional - components: - - pos: 29.5,-52.5 - parent: 1 - type: Transform -- uid: 11709 - type: WindowReinforcedDirectional - components: - - pos: 28.5,-52.5 - parent: 1 - type: Transform -- uid: 11710 - type: WindowReinforcedDirectional - components: - - pos: 32.5,-52.5 - parent: 1 - type: Transform -- uid: 11711 - type: WindowReinforcedDirectional - components: - - pos: 33.5,-52.5 - parent: 1 - type: Transform -- uid: 11712 - type: WindowReinforcedDirectional - components: - - pos: 34.5,-52.5 - parent: 1 - type: Transform -- uid: 11713 - type: WindoorSecurityLocked - components: - - pos: 31.5,-52.5 - parent: 1 - type: Transform -- uid: 11714 - type: AirlockSecurityLocked - components: - - name: courtroom - type: MetaData - - rot: 1.5707963267948966 rad - pos: 31.5,-44.5 - parent: 1 - type: Transform -- uid: 11715 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-47.5 - parent: 1 - type: Transform -- uid: 11716 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-48.5 - parent: 1 - type: Transform -- uid: 11717 - type: WindowReinforcedDirectional - components: - - pos: 33.5,-48.5 - parent: 1 - type: Transform -- uid: 11718 - type: WindowReinforcedDirectional - components: - - pos: 34.5,-48.5 - parent: 1 - type: Transform -- uid: 11719 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-48.5 - parent: 1 - type: Transform -- uid: 11720 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-47.5 - parent: 1 - type: Transform -- uid: 11721 - type: AirlockSecurityGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-46.5 - parent: 1 - type: Transform -- uid: 11722 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-47.5 - parent: 1 - type: Transform -- uid: 11723 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-48.5 - parent: 1 - type: Transform -- uid: 11724 - type: WindowReinforcedDirectional - components: - - pos: 29.5,-48.5 - parent: 1 - type: Transform -- uid: 11725 - type: WindowReinforcedDirectional - components: - - pos: 28.5,-48.5 - parent: 1 - type: Transform -- uid: 11726 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 33.5,-51.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11727 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 29.5,-51.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11728 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 34.5,-50.5 - parent: 1 - type: Transform -- uid: 11729 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 33.5,-50.5 - parent: 1 - type: Transform -- uid: 11730 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 32.5,-50.5 - parent: 1 - type: Transform -- uid: 11731 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 30.5,-50.5 - parent: 1 - type: Transform -- uid: 11732 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 29.5,-50.5 - parent: 1 - type: Transform -- uid: 11733 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 28.5,-50.5 - parent: 1 - type: Transform -- uid: 11734 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 30.5,-48.5 - parent: 1 - type: Transform -- uid: 11735 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 31.5,-48.5 - parent: 1 - type: Transform -- uid: 11736 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 32.5,-48.5 - parent: 1 - type: Transform -- uid: 11737 - type: ChairPilotSeat - components: - - rot: 3.141592653589793 rad - pos: 31.5,-47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11738 - type: ComfyChair - components: - - pos: 32.5,-47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11739 - type: ComfyChair - components: - - pos: 30.5,-47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11740 - type: Chair - components: - - pos: 33.5,-48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11741 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11742 - type: AirlockSecurityGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-46.5 - parent: 1 - type: Transform -- uid: 11743 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-46.5 - parent: 1 - type: Transform -- uid: 11744 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-46.5 - parent: 1 - type: Transform -- uid: 11745 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-46.5 - parent: 1 - type: Transform -- uid: 11746 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-46.5 - parent: 1 - type: Transform -- uid: 11747 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-46.5 - parent: 1 - type: Transform -- uid: 11748 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-45.5 - parent: 1 - type: Transform -- uid: 11749 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-47.5 - parent: 1 - type: Transform -- uid: 11750 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-48.5 - parent: 1 - type: Transform -- uid: 11751 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-49.5 - parent: 1 - type: Transform -- uid: 11752 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-50.5 - parent: 1 - type: Transform -- uid: 11753 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-51.5 - parent: 1 - type: Transform -- uid: 11754 - type: AirlockMaintLocked - components: - - name: courtroom - type: MetaData - - pos: 35.5,-54.5 - parent: 1 - type: Transform -- uid: 11755 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-53.5 - parent: 1 - type: Transform -- uid: 11756 - type: WallSolid - components: - - pos: 35.5,-52.5 - parent: 1 - type: Transform -- uid: 11757 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-55.5 - parent: 1 - type: Transform -- uid: 11758 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-56.5 - parent: 1 - type: Transform -- uid: 11759 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-57.5 - parent: 1 - type: Transform -- uid: 11760 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-57.5 - parent: 1 - type: Transform -- uid: 11761 - type: Window - components: - - pos: 27.5,-51.5 - parent: 1 - type: Transform -- uid: 11762 - type: Window - components: - - pos: 27.5,-47.5 - parent: 1 - type: Transform -- uid: 11763 - type: AirlockHeadOfSecurityGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-46.5 - parent: 1 - type: Transform -- uid: 11764 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-57.5 - parent: 1 - type: Transform -- uid: 11765 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-57.5 - parent: 1 - type: Transform -- uid: 11766 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-57.5 - parent: 1 - type: Transform -- uid: 11767 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-57.5 - parent: 1 - type: Transform -- uid: 11768 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-54.5 - parent: 1 - type: Transform -- uid: 11769 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-55.5 - parent: 1 - type: Transform -- uid: 11770 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-51.5 - parent: 1 - type: Transform -- uid: 11771 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-47.5 - parent: 1 - type: Transform -- uid: 11772 - type: CableApcExtension - components: - - pos: 30.5,-47.5 - parent: 1 - type: Transform -- uid: 11773 - type: CableApcExtension - components: - - pos: 31.5,-47.5 - parent: 1 - type: Transform -- uid: 11774 - type: CableApcExtension - components: - - pos: 32.5,-47.5 - parent: 1 - type: Transform -- uid: 11775 - type: CableApcExtension - components: - - pos: 33.5,-47.5 - parent: 1 - type: Transform -- uid: 11776 - type: CableApcExtension - components: - - pos: 31.5,-46.5 - parent: 1 - type: Transform -- uid: 11777 - type: CableApcExtension - components: - - pos: 31.5,-46.5 - parent: 1 - type: Transform -- uid: 11778 - type: CableApcExtension - components: - - pos: 31.5,-45.5 - parent: 1 - type: Transform -- uid: 11779 - type: CableApcExtension - components: - - pos: 29.5,-48.5 - parent: 1 - type: Transform -- uid: 11780 - type: CableApcExtension - components: - - pos: 29.5,-49.5 - parent: 1 - type: Transform -- uid: 11781 - type: CableApcExtension - components: - - pos: 30.5,-49.5 - parent: 1 - type: Transform -- uid: 11782 - type: CableApcExtension - components: - - pos: 31.5,-49.5 - parent: 1 - type: Transform -- uid: 11783 - type: CableApcExtension - components: - - pos: 31.5,-50.5 - parent: 1 - type: Transform -- uid: 11784 - type: CableApcExtension - components: - - pos: 31.5,-51.5 - parent: 1 - type: Transform -- uid: 11785 - type: CableApcExtension - components: - - pos: 31.5,-52.5 - parent: 1 - type: Transform -- uid: 11786 - type: CableApcExtension - components: - - pos: 30.5,-51.5 - parent: 1 - type: Transform -- uid: 11787 - type: CableApcExtension - components: - - pos: 32.5,-51.5 - parent: 1 - type: Transform -- uid: 11788 - type: CableApcExtension - components: - - pos: 31.5,-53.5 - parent: 1 - type: Transform -- uid: 11789 - type: CableApcExtension - components: - - pos: 31.5,-54.5 - parent: 1 - type: Transform -- uid: 11790 - type: CableApcExtension - components: - - pos: 31.5,-56.5 - parent: 1 - type: Transform -- uid: 11791 - type: CableApcExtension - components: - - pos: 31.5,-55.5 - parent: 1 - type: Transform -- uid: 11792 - type: CableApcExtension - components: - - pos: 30.5,-54.5 - parent: 1 - type: Transform -- uid: 11793 - type: CableApcExtension - components: - - pos: 29.5,-54.5 - parent: 1 - type: Transform -- uid: 11794 - type: CableApcExtension - components: - - pos: 32.5,-54.5 - parent: 1 - type: Transform -- uid: 11795 - type: CableApcExtension - components: - - pos: 33.5,-54.5 - parent: 1 - type: Transform -- uid: 11796 - type: CableApcExtension - components: - - pos: 30.5,-45.5 - parent: 1 - type: Transform -- uid: 11797 - type: CableApcExtension - components: - - pos: 32.5,-45.5 - parent: 1 - type: Transform -- uid: 11798 - type: CableApcExtension - components: - - pos: 29.5,-45.5 - parent: 1 - type: Transform -- uid: 11799 - type: CableApcExtension - components: - - pos: 33.5,-45.5 - parent: 1 - type: Transform -- uid: 11800 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 26.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11801 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11802 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11803 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11804 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11805 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11806 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11807 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11808 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11809 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11810 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11811 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 29.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11812 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 32.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11813 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11814 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11815 - type: GasPipeStraight - components: - - pos: 29.5,-55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11816 - type: GasPipeStraight - components: - - pos: 29.5,-54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11817 - type: GasPipeStraight - components: - - pos: 29.5,-53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11818 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11819 - type: GasPipeStraight - components: - - pos: 29.5,-51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11820 - type: GasPipeStraight - components: - - pos: 29.5,-50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11821 - type: GasPipeStraight - components: - - pos: 29.5,-49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11822 - type: GasPipeStraight - components: - - pos: 29.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11823 - type: GasPipeFourway - components: - - pos: 29.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11824 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11825 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11826 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11827 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11828 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11829 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11830 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11831 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11832 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11833 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11834 - type: GasVentPump - components: - - pos: 29.5,-45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11835 - type: GasPipeStraight - components: - - pos: 32.5,-59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11836 - type: GasPipeStraight - components: - - pos: 32.5,-58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11837 - type: GasPipeStraight - components: - - pos: 32.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11838 - type: GasPipeStraight - components: - - pos: 32.5,-55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11839 - type: GasPipeStraight - components: - - pos: 32.5,-54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11840 - type: GasPipeStraight - components: - - pos: 32.5,-53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11841 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11842 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11843 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11844 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11845 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11846 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11847 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11848 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11849 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11850 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 34.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11851 - type: WallReinforced - components: - - pos: 24.5,-57.5 - parent: 1 - type: Transform -- uid: 11852 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11853 - type: GasPipeTJunction - components: - - pos: 32.5,-52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11854 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11855 - type: GasVentScrubber - components: - - pos: 34.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11856 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11857 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11858 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11859 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11860 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 28.5,-49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11861 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11862 - type: GasVentScrubber - components: - - pos: 28.5,-48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11863 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-80.5 - parent: 1 - type: Transform -- uid: 11864 - type: RandomSpawner - components: - - pos: 54.5,-12.5 - parent: 1 - type: Transform -- uid: 11865 - type: RandomSpawner - components: - - pos: 52.5,-6.5 - parent: 1 - type: Transform -- uid: 11866 - type: RandomSpawner - components: - - pos: 52.5,0.5 - parent: 1 - type: Transform -- uid: 11867 - type: RandomSpawner - components: - - pos: 50.5,-45.5 - parent: 1 - type: Transform -- uid: 11868 - type: RandomSpawner - components: - - pos: 42.5,-49.5 - parent: 1 - type: Transform -- uid: 11869 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: 12.5,12.5 - parent: 1 - type: Transform -- uid: 11870 - type: Catwalk - components: - - pos: -46.5,-55.5 - parent: 1 - type: Transform -- uid: 11871 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 51.483532,-41.966263 - parent: 1 - type: Transform -- uid: 11872 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 51.467907,-41.966263 - parent: 1 - type: Transform -- uid: 11873 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 51.467907,-41.966263 - parent: 1 - type: Transform -- uid: 11874 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 51.467907,-41.966263 - parent: 1 - type: Transform -- uid: 11875 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 51.467907,-41.966263 - parent: 1 - type: Transform -- uid: 11876 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 51.467907,-41.966263 - parent: 1 - type: Transform -- uid: 11877 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 51.467907,-41.966263 - parent: 1 - type: Transform -- uid: 11878 - type: Paper - components: - - rot: 1.5707963267948966 rad - pos: 51.467907,-41.966263 - parent: 1 - type: Transform -- uid: 11879 - type: Lamp - components: - - rot: 1.5707963267948966 rad - pos: 51.608532,-40.935013 - parent: 1 - type: Transform -- uid: 11880 - type: BoxFolderGrey - components: - - rot: 1.5707963267948966 rad - pos: 51.514782,-42.450638 - parent: 1 - type: Transform -- uid: 11881 - type: BoxFolderYellow - components: - - rot: 1.5707963267948966 rad - pos: 51.655407,-42.653763 - parent: 1 - type: Transform -- uid: 11882 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 50.5,14.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: open prison north west - type: SurveillanceCamera -- uid: 11883 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: 56.5,10.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: open prison south - type: SurveillanceCamera -- uid: 11884 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 42.5,9.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: brig south - type: SurveillanceCamera -- uid: 11885 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 33.5,16.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: brig - type: SurveillanceCamera -- uid: 11886 - type: SurveillanceCameraSecurity - components: - - rot: 1.5707963267948966 rad - pos: 32.5,31.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: armory - type: SurveillanceCamera -- uid: 11887 - type: SurveillanceCameraSecurity - components: - - rot: 3.141592653589793 rad - pos: 8.5,17.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: security canteen - type: SurveillanceCamera -- uid: 11888 - type: SurveillanceCameraSecurity - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-11.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: detective agency - type: SurveillanceCamera -- uid: 11889 - type: AirlockCommandGlassLocked - components: - - pos: 17.5,-25.5 - parent: 1 - type: Transform -- uid: 11890 - type: SurveillanceCameraCommand - components: - - pos: 28.5,-43.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: personnel - type: SurveillanceCamera -- uid: 11891 - type: SurveillanceCameraMedical - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-47.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: medbay reception - type: SurveillanceCamera -- uid: 11892 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: food court - type: SurveillanceCamera -- uid: 11893 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 64.5,-37.5 - parent: 1 - type: Transform -- uid: 11894 - type: WallSolid - components: - - pos: 60.5,-37.5 - parent: 1 - type: Transform -- uid: 11895 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 68.5,-39.5 - parent: 1 - type: Transform -- uid: 11896 - type: FoodBurgerBrain - components: - - pos: -12.411479,-50.405228 - parent: 1 - type: Transform -- uid: 11897 - type: FoodSnackBoritos - components: - - rot: -1.5707963267948966 rad - pos: -11.473979,-49.827103 - parent: 1 - type: Transform -- uid: 11898 - type: ClothingBackpackDuffelMedical - components: - - pos: -16.552103,-49.311478 - parent: 1 - type: Transform -- uid: 11899 - type: ClothingBackpackSatchelMedical - components: - - pos: -11.364604,-50.389603 - parent: 1 - type: Transform -- uid: 11900 - type: ClothingShoesColorWhite - components: - - pos: -16.54276,-45.461185 - parent: 1 - type: Transform -- uid: 11901 - type: Grille - components: - - pos: -12.5,-44.5 - parent: 1 - type: Transform -- uid: 11902 - type: Grille - components: - - pos: -13.5,-44.5 - parent: 1 - type: Transform -- uid: 11903 - type: Grille - components: - - pos: -14.5,-44.5 - parent: 1 - type: Transform -- uid: 11904 - type: BlastDoorExterior1 - components: - - pos: 47.5,-51.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -132770.11 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 12023 - Close: - - port: Off - uid: 12023 - Toggle: [] - type: SignalReceiver -- uid: 11905 - type: BlastDoorExterior1 - components: - - pos: 47.5,-52.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -132770.11 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 12023 - Close: - - port: Off - uid: 12023 - Toggle: [] - type: SignalReceiver -- uid: 11906 - type: BlastDoorExterior1 - components: - - pos: 47.5,-53.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -132770.11 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 12023 - Close: - - port: Off - uid: 12023 - Toggle: [] - type: SignalReceiver -- uid: 11907 - type: BlastDoorExterior1 - components: - - pos: 47.5,-54.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -132770.11 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 12023 - Close: - - port: Off - uid: 12023 - Toggle: [] - type: SignalReceiver -- uid: 11908 - type: NitrogenCanister - components: - - pos: 45.5,-51.5 - parent: 1 - type: Transform -- uid: 11909 - type: OxygenCanister - components: - - pos: 45.5,-52.5 - parent: 1 - type: Transform -- uid: 11910 - type: WallReinforced - components: - - pos: -43.5,-38.5 - parent: 1 - type: Transform -- uid: 11911 - type: StorageCanister - components: - - pos: 45.5,-54.5 - parent: 1 - type: Transform -- uid: 11912 - type: WallSolid - components: - - pos: 44.5,-55.5 - parent: 1 - type: Transform -- uid: 11913 - type: WallSolid - components: - - pos: 44.5,-54.5 - parent: 1 - type: Transform -- uid: 11914 - type: WallSolid - components: - - pos: 44.5,-53.5 - parent: 1 - type: Transform -- uid: 11915 - type: WallSolid - components: - - pos: 44.5,-52.5 - parent: 1 - type: Transform -- uid: 11916 - type: WallSolid - components: - - pos: 44.5,-51.5 - parent: 1 - type: Transform -- uid: 11917 - type: WallSolid - components: - - pos: 45.5,-55.5 - parent: 1 - type: Transform -- uid: 11918 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 46.5,-55.5 - parent: 1 - type: Transform -- uid: 11919 - type: WallSolid - components: - - pos: 47.5,-55.5 - parent: 1 - type: Transform -- uid: 11920 - type: StorageCanister - components: - - pos: 45.5,-58.5 - parent: 1 - type: Transform -- uid: 11921 - type: GasPort - components: - - pos: 45.5,-58.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11922 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-59.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11923 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 45.5,-60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11924 - type: GasFilterFlipped - components: - - rot: 3.141592653589793 rad - pos: 45.5,-59.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11925 - type: ReinforcedWindow - components: - - pos: 49.5,-59.5 - parent: 1 - type: Transform -- uid: 11926 - type: AirlockMaintRnDLocked - components: - - name: toxins - type: MetaData - - pos: 44.5,-56.5 - parent: 1 - type: Transform -- uid: 11927 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 44.5,-57.5 - parent: 1 - type: Transform -- uid: 11928 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 44.5,-58.5 - parent: 1 - type: Transform -- uid: 11929 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 44.5,-59.5 - parent: 1 - type: Transform -- uid: 11930 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 44.5,-60.5 - parent: 1 - type: Transform -- uid: 11931 - type: WallSolid - components: - - pos: 41.5,-63.5 - parent: 1 - type: Transform -- uid: 11932 - type: WallSolid - components: - - pos: 41.5,-62.5 - parent: 1 - type: Transform -- uid: 11933 - type: WallSolid - components: - - pos: 46.5,-61.5 - parent: 1 - type: Transform -- uid: 11934 - type: GasThermoMachineFreezer - components: - - pos: 51.5,-57.5 - parent: 1 - type: Transform -- uid: 11935 - type: GasThermoMachineHeater - components: - - pos: 48.5,-57.5 - parent: 1 - type: Transform -- uid: 11936 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11937 - type: WallSolid - components: - - pos: 52.5,-56.5 - parent: 1 - type: Transform -- uid: 11938 - type: WallReinforced - components: - - pos: 53.5,-54.5 - parent: 1 - type: Transform -- uid: 11939 - type: BlastDoorExterior1 - components: - - pos: 52.5,-58.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -132757.78 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 12780 - Close: - - port: Off - uid: 12780 - Toggle: [] - type: SignalReceiver -- uid: 11940 - type: WallReinforced - components: - - pos: 53.5,-55.5 - parent: 1 - type: Transform -- uid: 11941 - type: WallSolid - components: - - pos: 48.5,-59.5 - parent: 1 - type: Transform -- uid: 11942 - type: ReinforcedWindow - components: - - pos: 50.5,-59.5 - parent: 1 - type: Transform -- uid: 11943 - type: AirlockScienceLocked - components: - - pos: 51.5,-59.5 - parent: 1 - type: Transform -- uid: 11944 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 51.5,-60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11945 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 48.5,-60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11946 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 48.5,-59.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11947 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 51.5,-59.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11948 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-58.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11949 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-58.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11950 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 50.5,-58.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11951 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 47.5,-58.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11952 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 50.5,-57.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11953 - type: GasPressurePump - components: - - pos: 47.5,-57.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11954 - type: GasPort - components: - - pos: 47.5,-56.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11955 - type: GasPort - components: - - pos: 50.5,-56.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 11956 - type: WallSolid - components: - - pos: 47.5,-59.5 - parent: 1 - type: Transform -- uid: 11957 - type: WallSolid - components: - - pos: 47.5,-60.5 - parent: 1 - type: Transform -- uid: 11958 - type: WallSolid - components: - - pos: 47.5,-61.5 - parent: 1 - type: Transform -- uid: 11959 - type: WallReinforced - components: - - pos: 53.5,-56.5 - parent: 1 - type: Transform -- uid: 11960 - type: ReinforcedWindow - components: - - pos: 52.5,-61.5 - parent: 1 - type: Transform -- uid: 11961 - type: GasPipeStraight - components: - - pos: 49.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11962 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 11963 - type: GasPipeStraight - components: - - pos: 49.5,-62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 11964 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-50.5 - parent: 1 - type: Transform -- uid: 11965 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-55.5 - parent: 1 - type: Transform -- uid: 11966 - type: DisposalBend - components: - - pos: 49.5,-55.5 - parent: 1 - type: Transform -- uid: 11967 - type: DisposalPipe - components: - - pos: 49.5,-56.5 - parent: 1 - type: Transform -- uid: 11968 - type: DisposalPipe - components: - - pos: 49.5,-57.5 - parent: 1 - type: Transform -- uid: 11969 - type: DisposalPipe - components: - - pos: 49.5,-58.5 - parent: 1 - type: Transform -- uid: 11970 - type: DisposalPipe - components: - - pos: 49.5,-59.5 - parent: 1 - type: Transform -- uid: 11971 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 49.5,-60.5 - parent: 1 - type: Transform -- uid: 11972 - type: DisposalUnit - components: - - pos: 49.5,-60.5 - parent: 1 - type: Transform -- uid: 11973 - type: DisposalUnit - components: - - pos: 48.5,-55.5 - parent: 1 - type: Transform -- uid: 11974 - type: DisposalUnit - components: - - pos: 48.5,-50.5 - parent: 1 - type: Transform -- uid: 11975 - type: CableApcExtension - components: - - pos: 48.5,-54.5 - parent: 1 - type: Transform -- uid: 11976 - type: CableApcExtension - components: - - pos: 47.5,-54.5 - parent: 1 - type: Transform -- uid: 11977 - type: CableApcExtension - components: - - pos: 46.5,-54.5 - parent: 1 - type: Transform -- uid: 11978 - type: CableApcExtension - components: - - pos: 49.5,-55.5 - parent: 1 - type: Transform -- uid: 11979 - type: CableApcExtension - components: - - pos: 49.5,-56.5 - parent: 1 - type: Transform -- uid: 11980 - type: CableApcExtension - components: - - pos: 49.5,-57.5 - parent: 1 - type: Transform -- uid: 11981 - type: CableApcExtension - components: - - pos: 49.5,-58.5 - parent: 1 - type: Transform -- uid: 11982 - type: CableApcExtension - components: - - pos: 49.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 11983 - type: CableApcExtension - components: - - pos: 49.5,-60.5 - parent: 1 - type: Transform -- uid: 11984 - type: CableApcExtension - components: - - pos: 50.5,-60.5 - parent: 1 - type: Transform -- uid: 11985 - type: CableApcExtension - components: - - pos: 50.5,-53.5 - parent: 1 - type: Transform -- uid: 11986 - type: CableApcExtension - components: - - pos: 51.5,-53.5 - parent: 1 - type: Transform -- uid: 11987 - type: CableApcExtension - components: - - pos: 52.5,-53.5 - parent: 1 - type: Transform -- uid: 11988 - type: CableApcExtension - components: - - pos: 52.5,-52.5 - parent: 1 - type: Transform -- uid: 11989 - type: CableApcExtension - components: - - pos: 52.5,-51.5 - parent: 1 - type: Transform -- uid: 11990 - type: CableApcExtension - components: - - pos: 50.5,-50.5 - parent: 1 - type: Transform -- uid: 11991 - type: CableApcExtension - components: - - pos: 48.5,-57.5 - parent: 1 - type: Transform -- uid: 11992 - type: CableApcExtension - components: - - pos: 47.5,-57.5 - parent: 1 - type: Transform -- uid: 11993 - type: CableApcExtension - components: - - pos: 46.5,-57.5 - parent: 1 - type: Transform -- uid: 11994 - type: CableApcExtension - components: - - pos: 45.5,-57.5 - parent: 1 - type: Transform -- uid: 11995 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 30.5,-47.5 - parent: 1 - type: Transform -- uid: 11996 - type: CableApcExtension - components: - - pos: 51.5,-54.5 - parent: 1 - type: Transform -- uid: 11997 - type: CableApcExtension - components: - - pos: 51.5,-55.5 - parent: 1 - type: Transform -- uid: 11998 - type: CableApcExtension - components: - - pos: 51.5,-56.5 - parent: 1 - type: Transform -- uid: 11999 - type: CableApcExtension - components: - - pos: 49.5,-48.5 - parent: 1 - type: Transform -- uid: 12000 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 49.5,-59.5 - parent: 1 - type: Transform -- uid: 12001 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 50.5,-59.5 - parent: 1 - type: Transform -- uid: 12002 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 30.5,-48.5 - parent: 1 - type: Transform -- uid: 12003 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 31.5,-47.5 - parent: 1 - type: Transform -- uid: 12004 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 31.5,-48.5 - parent: 1 - type: Transform -- uid: 12005 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 32.5,-47.5 - parent: 1 - type: Transform -- uid: 12006 - type: CarpetSBlue - components: - - rot: 3.141592653589793 rad - pos: 32.5,-48.5 - parent: 1 - type: Transform -- uid: 12007 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 28.5,-50.5 - parent: 1 - type: Transform -- uid: 12008 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 28.5,-51.5 - parent: 1 - type: Transform -- uid: 12009 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 29.5,-50.5 - parent: 1 - type: Transform -- uid: 12010 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 29.5,-51.5 - parent: 1 - type: Transform -- uid: 12011 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 30.5,-50.5 - parent: 1 - type: Transform -- uid: 12012 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 30.5,-51.5 - parent: 1 - type: Transform -- uid: 12013 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: 32.5,-50.5 - parent: 1 - type: Transform -- uid: 12014 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: 32.5,-51.5 - parent: 1 - type: Transform -- uid: 12015 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: 33.5,-50.5 - parent: 1 - type: Transform -- uid: 12016 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: 33.5,-51.5 - parent: 1 - type: Transform -- uid: 12017 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: 34.5,-50.5 - parent: 1 - type: Transform -- uid: 12018 - type: CarpetGreen - components: - - rot: 3.141592653589793 rad - pos: 34.5,-51.5 - parent: 1 - type: Transform -- uid: 12019 - type: CarpetBlack - components: - - rot: 3.141592653589793 rad - pos: 31.5,-53.5 - parent: 1 - type: Transform -- uid: 12020 - type: CarpetBlack - components: - - rot: 3.141592653589793 rad - pos: 31.5,-54.5 - parent: 1 - type: Transform -- uid: 12021 - type: CarpetBlack - components: - - rot: 3.141592653589793 rad - pos: 31.5,-55.5 - parent: 1 - type: Transform -- uid: 12022 - type: CarpetBlack - components: - - rot: 3.141592653589793 rad - pos: 31.5,-56.5 - parent: 1 - type: Transform -- uid: 12023 - type: SignalSwitch - components: - - pos: 47.5,-55.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 11907 - - port: Open - uid: 11906 - - port: Open - uid: 11905 - - port: Open - uid: 11904 - Off: - - port: Close - uid: 11907 - - port: Close - uid: 11906 - - port: Close - uid: 11905 - - port: Close - uid: 11904 - type: SignalTransmitter -- uid: 12024 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 49.5,-63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12025 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 52.5,-62.5 - parent: 1 - type: Transform -- uid: 12026 - type: ReinforcedWindow - components: - - pos: 49.5,-62.5 - parent: 1 - type: Transform -- uid: 12027 - type: ReinforcedWindow - components: - - pos: 51.5,-62.5 - parent: 1 - type: Transform -- uid: 12028 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 48.5,-62.5 - parent: 1 - type: Transform -- uid: 12029 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 47.5,-62.5 - parent: 1 - type: Transform -- uid: 12030 - type: BlastDoorExterior1 - components: - - pos: 50.5,-62.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -132760.31 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 27376 - Close: - - port: Off - uid: 27376 - Toggle: [] - type: SignalReceiver -- uid: 12031 - type: Firelock - components: - - pos: -38.5,-22.5 - parent: 1 - type: Transform -- uid: 12032 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 51.5,-3.5 - parent: 1 - type: Transform -- uid: 12033 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 52.5,-3.5 - parent: 1 - type: Transform -- uid: 12034 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 53.5,-3.5 - parent: 1 - type: Transform -- uid: 12035 - type: FirelockGlass - components: - - pos: 46.5,-10.5 - parent: 1 - type: Transform -- uid: 12036 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-16.5 - parent: 1 - type: Transform -- uid: 12037 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-4.5 - parent: 1 - type: Transform -- uid: 12038 - type: WallReinforced - components: - - pos: 34.5,-61.5 - parent: 1 - type: Transform -- uid: 12039 - type: WallReinforced - components: - - pos: 35.5,-61.5 - parent: 1 - type: Transform -- uid: 12040 - type: WallReinforced - components: - - pos: 36.5,-61.5 - parent: 1 - type: Transform -- uid: 12041 - type: WallReinforced - components: - - pos: 37.5,-61.5 - parent: 1 - type: Transform -- uid: 12042 - type: WallReinforced - components: - - pos: 37.5,-62.5 - parent: 1 - type: Transform -- uid: 12043 - type: WallReinforced - components: - - pos: 37.5,-63.5 - parent: 1 - type: Transform -- uid: 12044 - type: ReinforcedWindow - components: - - pos: 43.5,-69.5 - parent: 1 - type: Transform -- uid: 12045 - type: WallReinforced - components: - - pos: 37.5,-65.5 - parent: 1 - type: Transform -- uid: 12046 - type: ReinforcedWindow - components: - - pos: 42.5,-69.5 - parent: 1 - type: Transform -- uid: 12047 - type: WallReinforced - components: - - pos: 37.5,-67.5 - parent: 1 - type: Transform -- uid: 12048 - type: WallReinforced - components: - - pos: 37.5,-68.5 - parent: 1 - type: Transform -- uid: 12049 - type: WallSolid - components: - - pos: 45.5,-61.5 - parent: 1 - type: Transform -- uid: 12050 - type: WallSolid - components: - - pos: 44.5,-61.5 - parent: 1 - type: Transform -- uid: 12051 - type: WallSolid - components: - - pos: 43.5,-61.5 - parent: 1 - type: Transform -- uid: 12052 - type: WallSolid - components: - - pos: 42.5,-61.5 - parent: 1 - type: Transform -- uid: 12053 - type: WallSolid - components: - - pos: 41.5,-61.5 - parent: 1 - type: Transform -- uid: 12054 - type: ReinforcedWindow - components: - - pos: 35.5,-69.5 - parent: 1 - type: Transform -- uid: 12055 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-66.5 - parent: 1 - type: Transform -- uid: 12056 - type: ReinforcedWindow - components: - - pos: 44.5,-69.5 - parent: 1 - type: Transform -- uid: 12057 - type: WallReinforced - components: - - pos: 41.5,-67.5 - parent: 1 - type: Transform -- uid: 12058 - type: WallReinforced - components: - - pos: 41.5,-68.5 - parent: 1 - type: Transform -- uid: 12059 - type: SpawnPointSecurityOfficer - components: - - pos: 0.5,18.5 - parent: 1 - type: Transform -- uid: 12060 - type: SpawnPointSecurityOfficer - components: - - pos: 1.5,17.5 - parent: 1 - type: Transform -- uid: 12061 - type: CableApcExtension - components: - - pos: 32.5,15.5 - parent: 1 - type: Transform -- uid: 12062 - type: LampGold - components: - - pos: 32.892563,-50.10114 - parent: 1 - type: Transform -- uid: 12063 - type: LampGold - components: - - pos: 28.845686,-50.06989 - parent: 1 - type: Transform -- uid: 12064 - type: SubstationBasic - components: - - pos: -16.5,-0.5 - parent: 1 - type: Transform -- uid: 12065 - type: WallSolid - components: - - pos: -18.5,0.5 - parent: 1 - type: Transform -- uid: 12066 - type: WallSolid - components: - - pos: -20.5,0.5 - parent: 1 - type: Transform -- uid: 12067 - type: APCBasic - components: - - pos: -20.5,0.5 - parent: 1 - type: Transform -- uid: 12068 - type: Window - components: - - pos: -19.5,0.5 - parent: 1 - type: Transform -- uid: 12069 - type: Window - components: - - pos: -17.5,0.5 - parent: 1 - type: Transform -- uid: 12070 - type: Window - components: - - pos: -16.5,0.5 - parent: 1 - type: Transform -- uid: 12071 - type: CableHV - components: - - pos: -19.5,-4.5 - parent: 1 - type: Transform -- uid: 12072 - type: CableHV - components: - - pos: -19.5,-3.5 - parent: 1 - type: Transform -- uid: 12073 - type: CableHV - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform -- uid: 12074 - type: CableHV - components: - - pos: -19.5,-1.5 - parent: 1 - type: Transform -- uid: 12075 - type: CableHV - components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12076 - type: CableHV - components: - - pos: -18.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12077 - type: CableHV - components: - - pos: -17.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12078 - type: CableHV - components: - - pos: -16.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12079 - type: CableMV - components: - - pos: -16.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12080 - type: CableMV - components: - - pos: -17.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12081 - type: CableMV - components: - - pos: -18.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12082 - type: CableMV - components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12083 - type: CableMV - components: - - pos: -20.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12084 - type: CableMV - components: - - pos: -20.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12085 - type: CableApcExtension - components: - - pos: -20.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12086 - type: CableApcExtension - components: - - pos: -21.5,0.5 - parent: 1 - type: Transform -- uid: 12087 - type: CableApcExtension - components: - - pos: -21.5,1.5 - parent: 1 - type: Transform -- uid: 12088 - type: CableApcExtension - components: - - pos: -20.5,1.5 - parent: 1 - type: Transform -- uid: 12089 - type: CableApcExtension - components: - - pos: -19.5,1.5 - parent: 1 - type: Transform -- uid: 12090 - type: CableApcExtension - components: - - pos: -19.5,2.5 - parent: 1 - type: Transform -- uid: 12091 - type: CableApcExtension - components: - - pos: -18.5,2.5 - parent: 1 - type: Transform -- uid: 12092 - type: CableApcExtension - components: - - pos: -17.5,2.5 - parent: 1 - type: Transform -- uid: 12093 - type: CableApcExtension - components: - - pos: -17.5,3.5 - parent: 1 - type: Transform -- uid: 12094 - type: CableApcExtension - components: - - pos: -19.5,-1.5 - parent: 1 - type: Transform -- uid: 12095 - type: CableApcExtension - components: - - pos: -19.5,-2.5 - parent: 1 - type: Transform -- uid: 12096 - type: CableApcExtension - components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12097 - type: CableApcExtension - components: - - pos: -20.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12098 - type: CableApcExtension - components: - - pos: -21.5,2.5 - parent: 1 - type: Transform -- uid: 12099 - type: CableApcExtension - components: - - pos: -21.5,3.5 - parent: 1 - type: Transform -- uid: 12100 - type: CableApcExtension - components: - - pos: -18.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12101 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12102 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12103 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12104 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12105 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12106 - type: GasPipeTJunction - components: - - pos: -19.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12107 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -13.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12108 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -14.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12109 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12110 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12111 - type: GasPipeStraight - components: - - pos: -19.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12112 - type: GasPipeStraight - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12113 - type: GasVentPump - components: - - pos: -13.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12114 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -17.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12115 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -13.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12116 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -19.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12117 - type: GasPipeTJunction - components: - - pos: -13.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12118 - type: Grille - components: - - pos: -19.5,5.5 - parent: 1 - type: Transform -- uid: 12119 - type: Grille - components: - - pos: -23.5,2.5 - parent: 1 - type: Transform -- uid: 12120 - type: RandomSpawner - components: - - pos: -4.5,-0.5 - parent: 1 - type: Transform -- uid: 12121 - type: RandomSpawner - components: - - pos: 7.5,2.5 - parent: 1 - type: Transform -- uid: 12122 - type: RandomSpawner - components: - - pos: 17.5,-41.5 - parent: 1 - type: Transform -- uid: 12123 - type: RandomSpawner - components: - - pos: -7.5,-53.5 - parent: 1 - type: Transform -- uid: 12124 - type: BannerScience - components: - - pos: 59.5,-49.5 - parent: 1 - type: Transform -- uid: 12125 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 62.5,-48.5 - parent: 1 - type: Transform -- uid: 12126 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-47.5 - parent: 1 - type: Transform -- uid: 12127 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-47.5 - parent: 1 - type: Transform -- uid: 12128 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 63.5,-47.5 - parent: 1 - type: Transform -- uid: 12129 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-46.5 - parent: 1 - type: Transform -- uid: 12130 - type: WindowReinforcedDirectional - components: - - pos: 63.5,-45.5 - parent: 1 - type: Transform -- uid: 12131 - type: WindowReinforcedDirectional - components: - - pos: 62.5,-44.5 - parent: 1 - type: Transform -- uid: 12132 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-45.5 - parent: 1 - type: Transform -- uid: 12133 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-45.5 - parent: 1 - type: Transform -- uid: 12134 - type: WindowReinforcedDirectional - components: - - pos: 61.5,-45.5 - parent: 1 - type: Transform -- uid: 12135 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-46.5 - parent: 1 - type: Transform -- uid: 12136 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 61.5,-47.5 - parent: 1 - type: Transform -- uid: 12137 - type: SpawnPointObserver - components: - - pos: -4.5,-41.5 - parent: 1 - type: Transform -- uid: 12138 - type: WarpPoint - components: - - name: 'Warp: medical' - type: MetaData - - pos: -4.5,-47.5 - parent: 1 - type: Transform - - location: medbay - type: WarpPoint -- uid: 12139 - type: WarpPoint - components: - - name: 'warp: science' - type: MetaData - - pos: 49.5,-42.5 - parent: 1 - type: Transform - - location: science reception - type: WarpPoint -- uid: 12140 - type: WarpPoint - components: - - name: 'warp: bridge' - type: MetaData - - pos: 25.5,-19.5 - parent: 1 - type: Transform - - location: bridge - type: WarpPoint -- uid: 12141 - type: WarpPoint - components: - - name: 'warp: prison' - type: MetaData - - pos: 53.5,16.5 - parent: 1 - type: Transform - - location: open prison - type: WarpPoint -- uid: 12142 - type: WarpPoint - components: - - name: 'warp: security' - type: MetaData - - pos: 23.5,17.5 - parent: 1 - type: Transform - - location: security - type: WarpPoint -- uid: 12143 - type: WarpPoint - components: - - pos: 61.5,-8.5 - parent: 1 - type: Transform - - location: evac - type: WarpPoint -- uid: 12144 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: 14.5,9.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12145 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 1 - type: Transform -- uid: 12146 - type: WarpPoint - components: - - name: 'warp: waste' - type: MetaData - - pos: 17.5,-53.5 - parent: 1 - type: Transform -- uid: 12147 - type: Poweredlight - components: - - pos: 32.5,-47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12148 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12149 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12150 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12151 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12152 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-44.5 - parent: 1 - type: Transform -- uid: 12153 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12154 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12155 - type: PottedPlantRandom - components: - - pos: 1.5,-40.5 - parent: 1 - type: Transform -- uid: 12156 - type: Poweredlight - components: - - pos: 28.5,-58.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12157 - type: Poweredlight - components: - - pos: -15.5,-41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12158 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 37.5,-60.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12159 - type: SpawnPointSecurityCadet - components: - - pos: 23.5,18.5 - parent: 1 - type: Transform -- uid: 12160 - type: Catwalk - components: - - pos: -16.5,-0.5 - parent: 1 - type: Transform -- uid: 12161 - type: Catwalk - components: - - pos: -17.5,-0.5 - parent: 1 - type: Transform -- uid: 12162 - type: Catwalk - components: - - pos: -18.5,-0.5 - parent: 1 - type: Transform -- uid: 12163 - type: Catwalk - components: - - pos: -19.5,-0.5 - parent: 1 - type: Transform -- uid: 12164 - type: Catwalk - components: - - pos: -20.5,-0.5 - parent: 1 - type: Transform -- uid: 12165 - type: Catwalk - components: - - pos: -21.5,-0.5 - parent: 1 - type: Transform -- uid: 12166 - type: Catwalk - components: - - pos: -22.5,-0.5 - parent: 1 - type: Transform -- uid: 12167 - type: Grille - components: - - pos: -2.5,42.5 - parent: 1 - type: Transform -- uid: 12168 - type: PoweredlightSodium - components: - - pos: -18.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12169 - type: PoweredSmallLight - components: - - pos: -18.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12170 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-16.5 - parent: 1 - type: Transform -- uid: 12171 - type: AirlockEngineeringGlassLocked - components: - - rot: 3.141592653589793 rad - pos: -26.5,-17.5 - parent: 1 - type: Transform -- uid: 12172 - type: AirlockEngineeringGlassLocked - components: - - rot: 3.141592653589793 rad - pos: -26.5,-16.5 - parent: 1 - type: Transform -- uid: 12173 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-18.5 - parent: 1 - type: Transform -- uid: 12174 - type: TableReinforced - components: - - pos: -27.5,-9.5 - parent: 1 - type: Transform -- uid: 12175 - type: WallSolid - components: - - pos: -30.5,-9.5 - parent: 1 - type: Transform -- uid: 12176 - type: CableMV - components: - - pos: -29.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12177 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-11.5 - parent: 1 - type: Transform - - devices: - - 21551 - - 21437 - - 21438 - - 28877 - type: DeviceList -- uid: 12178 - type: WallSolid - components: - - pos: -27.5,-15.5 - parent: 1 - type: Transform -- uid: 12179 - type: WallSolid - components: - - pos: -28.5,-15.5 - parent: 1 - type: Transform -- uid: 12180 - type: WallSolid - components: - - pos: -29.5,-15.5 - parent: 1 - type: Transform -- uid: 12181 - type: WallSolid - components: - - pos: -30.5,-15.5 - parent: 1 - type: Transform -- uid: 12182 - type: WallSolid - components: - - pos: -30.5,-11.5 - parent: 1 - type: Transform -- uid: 12183 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-9.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12184 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-12.5 - parent: 1 - type: Transform -- uid: 12185 - type: WallSolid - components: - - pos: -30.5,-14.5 - parent: 1 - type: Transform -- uid: 12186 - type: ReinforcedWindow - components: - - pos: -40.5,-12.5 - parent: 1 - type: Transform -- uid: 12187 - type: FirelockGlass - components: - - pos: -34.5,-33.5 - parent: 1 - type: Transform -- uid: 12188 - type: FirelockGlass - components: - - pos: -34.5,-34.5 - parent: 1 - type: Transform -- uid: 12189 - type: ReinforcedWindow - components: - - pos: -40.5,-9.5 - parent: 1 - type: Transform -- uid: 12190 - type: WallSolid - components: - - pos: -33.5,-13.5 - parent: 1 - type: Transform -- uid: 12191 - type: WallReinforced - components: - - pos: -33.5,-14.5 - parent: 1 - type: Transform -- uid: 12192 - type: ReinforcedWindow - components: - - pos: -33.5,-17.5 - parent: 1 - type: Transform -- uid: 12193 - type: WallSolid - components: - - pos: -27.5,-19.5 - parent: 1 - type: Transform -- uid: 12194 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-18.5 - parent: 1 - type: Transform -- uid: 12195 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12196 - type: WallSolid - components: - - pos: -30.5,-19.5 - parent: 1 - type: Transform -- uid: 12197 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-6.5 - parent: 1 - type: Transform -- uid: 12198 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -13.5,35.5 - parent: 1 - type: Transform -- uid: 12199 - type: WallReinforced - components: - - pos: -33.5,-18.5 - parent: 1 - type: Transform -- uid: 12200 - type: WallReinforced - components: - - pos: -33.5,-19.5 - parent: 1 - type: Transform -- uid: 12201 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12202 - type: ReinforcedWindow - components: - - pos: -33.5,-15.5 - parent: 1 - type: Transform -- uid: 12203 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12204 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-14.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12205 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-5.5 - parent: 1 - type: Transform -- uid: 12206 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-4.5 - parent: 1 - type: Transform -- uid: 12207 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-3.5 - parent: 1 - type: Transform -- uid: 12208 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-2.5 - parent: 1 - type: Transform -- uid: 12209 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-1.5 - parent: 1 - type: Transform -- uid: 12210 - type: WallSolid - components: - - pos: -28.5,2.5 - parent: 1 - type: Transform -- uid: 12211 - type: WallSolid - components: - - pos: -28.5,-1.5 - parent: 1 - type: Transform -- uid: 12212 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -27.5,-7.5 - parent: 1 - type: Transform -- uid: 12213 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -27.5,2.5 - parent: 1 - type: Transform -- uid: 12214 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -27.5,3.5 - parent: 1 - type: Transform -- uid: 12215 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -27.5,4.5 - parent: 1 - type: Transform -- uid: 12216 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -27.5,5.5 - parent: 1 - type: Transform -- uid: 12217 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -27.5,6.5 - parent: 1 - type: Transform -- uid: 12218 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -27.5,7.5 - parent: 1 - type: Transform -- uid: 12219 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -27.5,8.5 - parent: 1 - type: Transform -- uid: 12220 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -27.5,9.5 - parent: 1 - type: Transform -- uid: 12221 - type: AtmosFixBlockerMarker - components: - - pos: 51.5,-60.5 - parent: 1 - type: Transform -- uid: 12222 - type: AtmosFixBlockerMarker - components: - - pos: 50.5,-60.5 - parent: 1 - type: Transform -- uid: 12223 - type: AtmosFixBlockerMarker - components: - - pos: 49.5,-60.5 - parent: 1 - type: Transform -- uid: 12224 - type: AtmosFixBlockerMarker - components: - - pos: 48.5,-60.5 - parent: 1 - type: Transform -- uid: 12225 - type: AtmosFixBlockerMarker - components: - - pos: 48.5,-61.5 - parent: 1 - type: Transform -- uid: 12226 - type: AtmosFixBlockerMarker - components: - - pos: 49.5,-61.5 - parent: 1 - type: Transform -- uid: 12227 - type: AtmosFixBlockerMarker - components: - - pos: 50.5,-61.5 - parent: 1 - type: Transform -- uid: 12228 - type: AtmosFixBlockerMarker - components: - - pos: 51.5,-61.5 - parent: 1 - type: Transform -- uid: 12229 - type: Table - components: - - pos: 53.5,-51.5 - parent: 1 - type: Transform -- uid: 12230 - type: Table - components: - - pos: 53.5,-52.5 - parent: 1 - type: Transform -- uid: 12231 - type: Table - components: - - pos: 53.5,-53.5 - parent: 1 - type: Transform -- uid: 12232 - type: SprayBottle - components: - - pos: 53.44381,-51.454926 - parent: 1 - type: Transform -- uid: 12233 - type: Basketball - components: - - pos: 59.373314,-2.3464775 - parent: 1 - type: Transform -- uid: 12234 - type: CigarGoldCase - components: - - pos: 61.545517,-1.3427625 - parent: 1 - type: Transform -- uid: 12235 - type: ChairPilotSeat - components: - - pos: 62.5,-0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12236 - type: ChairPilotSeat - components: - - pos: 59.5,-0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12237 - type: TableWood - components: - - pos: 60.5,-1.5 - parent: 1 - type: Transform -- uid: 12238 - type: TableWood - components: - - pos: 62.5,-1.5 - parent: 1 - type: Transform -- uid: 12239 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -48.5,10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12240 - type: TableWood - components: - - pos: 61.5,-1.5 - parent: 1 - type: Transform -- uid: 12241 - type: WallSolid - components: - - pos: -28.5,12.5 - parent: 1 - type: Transform -- uid: 12242 - type: DisposalMachineFrame - components: - - pos: -57.5,-41.5 - parent: 1 - type: Transform -- uid: 12243 - type: ChairPilotSeat - components: - - pos: 61.5,-0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12244 - type: HandLabeler - components: - - pos: -33.328754,17.574179 - parent: 1 - type: Transform -- uid: 12245 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-13.5 - parent: 1 - type: Transform -- uid: 12246 - type: SpawnPointJanitor - components: - - pos: -12.5,-22.5 - parent: 1 - type: Transform -- uid: 12247 - type: SpawnPointMedicalIntern - components: - - pos: -1.5,-47.5 - parent: 1 - type: Transform -- uid: 12248 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 10.5,8.5 - parent: 1 - type: Transform -- uid: 12249 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -24.5,-19.5 - parent: 1 - type: Transform -- uid: 12250 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -25.5,-19.5 - parent: 1 - type: Transform -- uid: 12251 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-18.5 - parent: 1 - type: Transform -- uid: 12252 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-22.5 - parent: 1 - type: Transform -- uid: 12253 - type: Grille - components: - - pos: -21.5,-13.5 - parent: 1 - type: Transform -- uid: 12254 - type: Grille - components: - - pos: -21.5,-14.5 - parent: 1 - type: Transform -- uid: 12255 - type: Grille - components: - - pos: -21.5,-9.5 - parent: 1 - type: Transform -- uid: 12256 - type: Grille - components: - - pos: -21.5,-10.5 - parent: 1 - type: Transform -- uid: 12257 - type: Grille - components: - - pos: -26.5,-10.5 - parent: 1 - type: Transform -- uid: 12258 - type: Grille - components: - - pos: -26.5,-11.5 - parent: 1 - type: Transform -- uid: 12259 - type: Grille - components: - - pos: -30.5,-12.5 - parent: 1 - type: Transform -- uid: 12260 - type: Grille - components: - - pos: -30.5,-13.5 - parent: 1 - type: Transform -- uid: 12261 - type: Grille - components: - - pos: -22.5,-3.5 - parent: 1 - type: Transform -- uid: 12262 - type: Grille - components: - - pos: -21.5,-3.5 - parent: 1 - type: Transform -- uid: 12263 - type: Grille - components: - - pos: -22.5,-1.5 - parent: 1 - type: Transform -- uid: 12264 - type: Grille - components: - - pos: -21.5,-1.5 - parent: 1 - type: Transform -- uid: 12265 - type: Grille - components: - - pos: -17.5,-1.5 - parent: 1 - type: Transform -- uid: 12266 - type: Grille - components: - - pos: -16.5,-1.5 - parent: 1 - type: Transform -- uid: 12267 - type: Grille - components: - - pos: -19.5,0.5 - parent: 1 - type: Transform -- uid: 12268 - type: Grille - components: - - pos: -17.5,0.5 - parent: 1 - type: Transform -- uid: 12269 - type: Grille - components: - - pos: -16.5,0.5 - parent: 1 - type: Transform -- uid: 12270 - type: Grille - components: - - pos: -17.5,-3.5 - parent: 1 - type: Transform -- uid: 12271 - type: Grille - components: - - pos: -16.5,-3.5 - parent: 1 - type: Transform -- uid: 12272 - type: CableApcExtension - components: - - pos: 57.5,6.5 - parent: 1 - type: Transform -- uid: 12273 - type: Table - components: - - pos: -22.5,-20.5 - parent: 1 - type: Transform -- uid: 12274 - type: FirelockGlass - components: - - pos: -21.5,-21.5 - parent: 1 - type: Transform -- uid: 12275 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-18.5 - parent: 1 - type: Transform -- uid: 12276 - type: ToolboxElectricalFilled - components: - - pos: -24.509478,-19.362955 - parent: 1 - type: Transform -- uid: 12277 - type: ClothingHandsGlovesColorYellow - components: - - pos: -25.384478,-19.487955 - parent: 1 - type: Transform -- uid: 12278 - type: CableApcStack - components: - - pos: -22.574043,-20.541626 - parent: 1 - type: Transform -- uid: 12279 - type: ToolboxEmergencyFilled - components: - - pos: -22.596659,-20.233759 - parent: 1 - type: Transform -- uid: 12280 - type: DisposalUnit - components: - - pos: -22.5,-15.5 - parent: 1 - type: Transform -- uid: 12281 - type: AirlockEngineeringLocked - components: - - name: substation - type: MetaData - - pos: -27.5,-22.5 - parent: 1 - type: Transform -- uid: 12282 - type: WallSolid - components: - - pos: -22.5,-25.5 - parent: 1 - type: Transform -- uid: 12283 - type: WallSolid - components: - - pos: -23.5,-25.5 - parent: 1 - type: Transform -- uid: 12284 - type: WallSolid - components: - - pos: -24.5,-25.5 - parent: 1 - type: Transform -- uid: 12285 - type: WallSolid - components: - - pos: -25.5,-25.5 - parent: 1 - type: Transform -- uid: 12286 - type: WallSolid - components: - - pos: -26.5,-25.5 - parent: 1 - type: Transform -- uid: 12287 - type: WallSolid - components: - - pos: -27.5,-25.5 - parent: 1 - type: Transform -- uid: 12288 - type: WallSolid - components: - - pos: -27.5,-23.5 - parent: 1 - type: Transform -- uid: 12289 - type: WallSolid - components: - - pos: -27.5,-24.5 - parent: 1 - type: Transform -- uid: 12290 - type: WallSolid - components: - - pos: -27.5,-21.5 - parent: 1 - type: Transform -- uid: 12291 - type: WallSolid - components: - - pos: -27.5,-20.5 - parent: 1 - type: Transform -- uid: 12292 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12293 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12294 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12295 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12296 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12297 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12298 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12299 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12300 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12301 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12302 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12303 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12304 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12305 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12306 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12307 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 1 - type: Transform -- uid: 12308 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-24.5 - parent: 1 - type: Transform -- uid: 12309 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-24.5 - parent: 1 - type: Transform -- uid: 12310 - type: Screwdriver - components: - - pos: -25.458826,-24.443584 - parent: 1 - type: Transform -- uid: 12311 - type: Multitool - components: - - pos: -24.521326,-24.45921 - parent: 1 - type: Transform -- uid: 12312 - type: Rack - components: - - rot: 3.141592653589793 rad - pos: -28.5,-19.5 - parent: 1 - type: Transform -- uid: 12313 - type: ClothingBeltUtilityFilled - components: - - pos: -23.834581,-24.4156 - parent: 1 - type: Transform -- uid: 12314 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-23.5 - parent: 1 - type: Transform -- uid: 12315 - type: BlockGameArcadeComputerCircuitboard - components: - - pos: -25.444056,-24.257809 - parent: 1 - type: Transform -- uid: 12316 - type: UnfinishedMachineFrame - components: - - pos: -26.5,-24.5 - parent: 1 - type: Transform -- uid: 12317 - type: DisposalMachineFrame - components: - - pos: -22.5,-24.5 - parent: 1 - type: Transform -- uid: 12318 - type: CableHV - components: - - pos: -20.5,-12.5 - parent: 1 - type: Transform -- uid: 12319 - type: CableHV - components: - - pos: -21.5,-12.5 - parent: 1 - type: Transform -- uid: 12320 - type: CableHV - components: - - pos: -23.5,-12.5 - parent: 1 - type: Transform -- uid: 12321 - type: CableHV - components: - - pos: -22.5,-12.5 - parent: 1 - type: Transform -- uid: 12322 - type: CableHV - components: - - pos: -24.5,-17.5 - parent: 1 - type: Transform -- uid: 12323 - type: CableHV - components: - - pos: -25.5,-17.5 - parent: 1 - type: Transform -- uid: 12324 - type: CableHV - components: - - pos: -26.5,-17.5 - parent: 1 - type: Transform -- uid: 12325 - type: CableHV - components: - - pos: -27.5,-17.5 - parent: 1 - type: Transform -- uid: 12326 - type: CableHV - components: - - pos: -28.5,-17.5 - parent: 1 - type: Transform -- uid: 12327 - type: CableHV - components: - - pos: -29.5,-17.5 - parent: 1 - type: Transform -- uid: 12328 - type: CableHV - components: - - pos: -30.5,-17.5 - parent: 1 - type: Transform -- uid: 12329 - type: CableHV - components: - - pos: -31.5,-17.5 - parent: 1 - type: Transform -- uid: 12330 - type: FirelockGlass - components: - - pos: -27.5,0.5 - parent: 1 - type: Transform -- uid: 12331 - type: FirelockGlass - components: - - pos: -19.5,-24.5 - parent: 1 - type: Transform -- uid: 12332 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12333 - type: Firelock - components: - - pos: -3.5,13.5 - parent: 1 - type: Transform -- uid: 12334 - type: KitchenSpike - components: - - pos: -0.5,11.5 - parent: 1 - type: Transform -- uid: 12335 - type: FirelockGlass - components: - - pos: -33.5,-16.5 - parent: 1 - type: Transform -- uid: 12336 - type: AirlockGlass - components: - - pos: -13.5,-27.5 - parent: 1 - type: Transform -- uid: 12337 - type: AirlockGlass - components: - - pos: -13.5,-26.5 - parent: 1 - type: Transform -- uid: 12338 - type: AirlockGlass - components: - - pos: -13.5,-25.5 - parent: 1 - type: Transform -- uid: 12339 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12340 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12341 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12342 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12343 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12344 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12345 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12346 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12347 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12348 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12349 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12350 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12351 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12352 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12353 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12354 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12355 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12356 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12357 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12358 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12359 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12360 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12361 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12362 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12363 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12364 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12365 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12366 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12367 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12368 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-18.5 - parent: 1 - type: Transform -- uid: 12369 - type: GasPipeStraight - components: - - pos: -23.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12370 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12371 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12372 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12373 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12374 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12375 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12376 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12377 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12378 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12379 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12380 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12381 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12382 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12383 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12384 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12385 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12386 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12387 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12388 - type: GasPipeTJunction - components: - - pos: -23.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12389 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -24.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12390 - type: GasPipeTJunction - components: - - pos: -24.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12391 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12392 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12393 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12394 - type: GasPipeTJunction - components: - - pos: -28.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12395 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -28.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12396 - type: GasPipeTJunction - components: - - pos: -25.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12397 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12398 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12399 - type: GasPipeStraight - components: - - pos: -20.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12400 - type: GasPipeStraight - components: - - pos: -20.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12401 - type: GasPipeStraight - components: - - pos: -20.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12402 - type: GasPipeStraight - components: - - pos: -20.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12403 - type: GasPipeStraight - components: - - pos: -20.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12404 - type: GasPipeStraight - components: - - pos: -20.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12405 - type: GasPipeStraight - components: - - pos: -20.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12406 - type: GasPipeStraight - components: - - pos: -18.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12407 - type: GasPipeStraight - components: - - pos: -18.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12408 - type: GasPipeStraight - components: - - pos: -18.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12409 - type: GasPipeStraight - components: - - pos: -18.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12410 - type: GasPipeStraight - components: - - pos: -18.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12411 - type: GasVentScrubber - components: - - pos: -24.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12412 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -28.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12413 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -24.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12414 - type: GasVentPump - components: - - pos: -28.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12415 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12416 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12417 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12418 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12419 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12420 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12421 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12422 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12423 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12424 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-66.5 - parent: 1 - type: Transform -- uid: 12425 - type: GasAnalyzer - components: - - pos: -35.42214,-48.770245 - parent: 1 - type: Transform -- uid: 12426 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-81.5 - parent: 1 - type: Transform -- uid: 12427 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: 29.5,-72.5 - parent: 1 - type: Transform -- uid: 12428 - type: CableApcExtension - components: - - pos: 18.5,-81.5 - parent: 1 - type: Transform -- uid: 12429 - type: GasPipeStraight - components: - - pos: -25.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12430 - type: GasPipeStraight - components: - - pos: -25.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12431 - type: GasPipeStraight - components: - - pos: -25.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12432 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12433 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12434 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12435 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12436 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -28.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12437 - type: GasPipeStraight - components: - - pos: -23.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12438 - type: GasPipeStraight - components: - - pos: -23.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12439 - type: GasPipeStraight - components: - - pos: -23.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12440 - type: GasPipeStraight - components: - - pos: -23.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12441 - type: GasPipeStraight - components: - - pos: -18.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12442 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12443 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12444 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12445 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12446 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12447 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12448 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12449 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-12.5 - parent: 1 - type: Transform -- uid: 12450 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-13.5 - parent: 1 - type: Transform -- uid: 12451 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-24.5 - parent: 1 - type: Transform -- uid: 12452 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-24.5 - parent: 1 - type: Transform -- uid: 12453 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-24.5 - parent: 1 - type: Transform -- uid: 12454 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-20.5 - parent: 1 - type: Transform -- uid: 12455 - type: AirlockEngineeringLocked - components: - - pos: -30.5,-23.5 - parent: 1 - type: Transform -- uid: 12456 - type: WallSolid - components: - - pos: -30.5,-21.5 - parent: 1 - type: Transform -- uid: 12457 - type: WallSolid - components: - - pos: -30.5,-22.5 - parent: 1 - type: Transform -- uid: 12458 - type: SubstationBasic - components: - - pos: -28.5,-23.5 - parent: 1 - type: Transform -- uid: 12459 - type: CableHV - components: - - pos: -20.5,-22.5 - parent: 1 - type: Transform -- uid: 12460 - type: CableHV - components: - - pos: -21.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12461 - type: CableHV - components: - - pos: -22.5,-22.5 - parent: 1 - type: Transform -- uid: 12462 - type: CableHV - components: - - pos: -23.5,-22.5 - parent: 1 - type: Transform -- uid: 12463 - type: CableHV - components: - - pos: -24.5,-22.5 - parent: 1 - type: Transform -- uid: 12464 - type: CableHV - components: - - pos: -25.5,-22.5 - parent: 1 - type: Transform -- uid: 12465 - type: CableHV - components: - - pos: -26.5,-22.5 - parent: 1 - type: Transform -- uid: 12466 - type: CableHV - components: - - pos: -27.5,-22.5 - parent: 1 - type: Transform -- uid: 12467 - type: CableHV - components: - - pos: -28.5,-22.5 - parent: 1 - type: Transform -- uid: 12468 - type: CableHV - components: - - pos: -28.5,-23.5 - parent: 1 - type: Transform -- uid: 12469 - type: CableMV - components: - - pos: -28.5,-23.5 - parent: 1 - type: Transform -- uid: 12470 - type: CableMV - components: - - pos: -28.5,-22.5 - parent: 1 - type: Transform -- uid: 12471 - type: CableMV - components: - - pos: -28.5,-21.5 - parent: 1 - type: Transform -- uid: 12472 - type: CableMV - components: - - pos: -29.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12473 - type: CableMV - components: - - pos: -30.5,-21.5 - parent: 1 - type: Transform -- uid: 12474 - type: CableMV - components: - - pos: -31.5,-21.5 - parent: 1 - type: Transform -- uid: 12475 - type: CableMV - components: - - pos: -31.5,-20.5 - parent: 1 - type: Transform -- uid: 12476 - type: CableMV - components: - - pos: -31.5,-19.5 - parent: 1 - type: Transform -- uid: 12477 - type: CableMV - components: - - pos: -31.5,-18.5 - parent: 1 - type: Transform -- uid: 12478 - type: CableMV - components: - - pos: -31.5,-17.5 - parent: 1 - type: Transform -- uid: 12479 - type: CableMV - components: - - pos: -31.5,-16.5 - parent: 1 - type: Transform -- uid: 12480 - type: CableMV - components: - - pos: -31.5,-15.5 - parent: 1 - type: Transform -- uid: 12481 - type: CableMV - components: - - pos: -31.5,-14.5 - parent: 1 - type: Transform -- uid: 12482 - type: CableMV - components: - - pos: -31.5,-13.5 - parent: 1 - type: Transform -- uid: 12483 - type: CableMV - components: - - pos: -31.5,-12.5 - parent: 1 - type: Transform -- uid: 12484 - type: CableMV - components: - - pos: -31.5,-11.5 - parent: 1 - type: Transform -- uid: 12485 - type: CableMV - components: - - pos: -31.5,-10.5 - parent: 1 - type: Transform -- uid: 12486 - type: CableMV - components: - - pos: -30.5,-10.5 - parent: 1 - type: Transform -- uid: 12487 - type: CableMV - components: - - pos: -29.5,-10.5 - parent: 1 - type: Transform -- uid: 12488 - type: CableMV - components: - - pos: -29.5,-9.5 - parent: 1 - type: Transform -- uid: 12489 - type: ReinforcedWindow - components: - - pos: -26.5,-9.5 - parent: 1 - type: Transform -- uid: 12490 - type: CableApcExtension - components: - - pos: -29.5,-9.5 - parent: 1 - type: Transform -- uid: 12491 - type: CableApcExtension - components: - - pos: -29.5,-10.5 - parent: 1 - type: Transform -- uid: 12492 - type: CableApcExtension - components: - - pos: -29.5,-11.5 - parent: 1 - type: Transform -- uid: 12493 - type: CableApcExtension - components: - - pos: -29.5,-12.5 - parent: 1 - type: Transform -- uid: 12494 - type: CableApcExtension - components: - - pos: -28.5,-12.5 - parent: 1 - type: Transform -- uid: 12495 - type: CableApcExtension - components: - - pos: -27.5,-12.5 - parent: 1 - type: Transform -- uid: 12496 - type: CableApcExtension - components: - - pos: -26.5,-12.5 - parent: 1 - type: Transform -- uid: 12497 - type: CableApcExtension - components: - - pos: -25.5,-12.5 - parent: 1 - type: Transform -- uid: 12498 - type: CableApcExtension - components: - - pos: -24.5,-12.5 - parent: 1 - type: Transform -- uid: 12499 - type: CableApcExtension - components: - - pos: -23.5,-12.5 - parent: 1 - type: Transform -- uid: 12500 - type: CableApcExtension - components: - - pos: -22.5,-12.5 - parent: 1 - type: Transform -- uid: 12501 - type: CableApcExtension - components: - - pos: -21.5,-12.5 - parent: 1 - type: Transform -- uid: 12502 - type: CableApcExtension - components: - - pos: -20.5,-12.5 - parent: 1 - type: Transform -- uid: 12503 - type: CableApcExtension - components: - - pos: -19.5,-12.5 - parent: 1 - type: Transform -- uid: 12504 - type: CableApcExtension - components: - - pos: -24.5,-11.5 - parent: 1 - type: Transform -- uid: 12505 - type: CableApcExtension - components: - - pos: -24.5,-10.5 - parent: 1 - type: Transform -- uid: 12506 - type: CableApcExtension - components: - - pos: -24.5,-9.5 - parent: 1 - type: Transform -- uid: 12507 - type: CableApcExtension - components: - - pos: -19.5,-13.5 - parent: 1 - type: Transform -- uid: 12508 - type: CableApcExtension - components: - - pos: -19.5,-14.5 - parent: 1 - type: Transform -- uid: 12509 - type: CableApcExtension - components: - - pos: -19.5,-15.5 - parent: 1 - type: Transform -- uid: 12510 - type: CableApcExtension - components: - - pos: -19.5,-16.5 - parent: 1 - type: Transform -- uid: 12511 - type: CableApcExtension - components: - - pos: -19.5,-17.5 - parent: 1 - type: Transform -- uid: 12512 - type: CableApcExtension - components: - - pos: -19.5,-18.5 - parent: 1 - type: Transform -- uid: 12513 - type: CableApcExtension - components: - - pos: -19.5,-19.5 - parent: 1 - type: Transform -- uid: 12514 - type: CableApcExtension - components: - - pos: -19.5,-20.5 - parent: 1 - type: Transform -- uid: 12515 - type: CableApcExtension - components: - - pos: -19.5,-21.5 - parent: 1 - type: Transform -- uid: 12516 - type: CableApcExtension - components: - - pos: -19.5,-22.5 - parent: 1 - type: Transform -- uid: 12517 - type: CableApcExtension - components: - - pos: -20.5,-17.5 - parent: 1 - type: Transform -- uid: 12518 - type: CableApcExtension - components: - - pos: -21.5,-17.5 - parent: 1 - type: Transform -- uid: 12519 - type: CableHV - components: - - pos: -24.5,-12.5 - parent: 1 - type: Transform -- uid: 12520 - type: CableApcExtension - components: - - pos: -23.5,-17.5 - parent: 1 - type: Transform -- uid: 12521 - type: CableApcExtension - components: - - pos: -24.5,-17.5 - parent: 1 - type: Transform -- uid: 12522 - type: CableApcExtension - components: - - pos: -25.5,-17.5 - parent: 1 - type: Transform -- uid: 12523 - type: CableApcExtension - components: - - pos: -26.5,-17.5 - parent: 1 - type: Transform -- uid: 12524 - type: CableApcExtension - components: - - pos: -27.5,-17.5 - parent: 1 - type: Transform -- uid: 12525 - type: CableApcExtension - components: - - pos: -28.5,-17.5 - parent: 1 - type: Transform -- uid: 12526 - type: CableApcExtension - components: - - pos: -29.5,-17.5 - parent: 1 - type: Transform -- uid: 12527 - type: CableApcExtension - components: - - pos: -20.5,-22.5 - parent: 1 - type: Transform -- uid: 12528 - type: CableApcExtension - components: - - pos: -21.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12529 - type: CableApcExtension - components: - - pos: -22.5,-22.5 - parent: 1 - type: Transform -- uid: 12530 - type: CableApcExtension - components: - - pos: -23.5,-22.5 - parent: 1 - type: Transform -- uid: 12531 - type: CableApcExtension - components: - - pos: -24.5,-22.5 - parent: 1 - type: Transform -- uid: 12532 - type: CableApcExtension - components: - - pos: -25.5,-22.5 - parent: 1 - type: Transform -- uid: 12533 - type: CableApcExtension - components: - - pos: -26.5,-22.5 - parent: 1 - type: Transform -- uid: 12534 - type: CableApcExtension - components: - - pos: -27.5,-22.5 - parent: 1 - type: Transform -- uid: 12535 - type: CableApcExtension - components: - - pos: -28.5,-22.5 - parent: 1 - type: Transform -- uid: 12536 - type: CableApcExtension - components: - - pos: -29.5,-22.5 - parent: 1 - type: Transform -- uid: 12537 - type: CableApcExtension - components: - - pos: -19.5,-23.5 - parent: 1 - type: Transform -- uid: 12538 - type: CableApcExtension - components: - - pos: -19.5,-11.5 - parent: 1 - type: Transform -- uid: 12539 - type: CableApcExtension - components: - - pos: -19.5,-10.5 - parent: 1 - type: Transform -- uid: 12540 - type: CableApcExtension - components: - - pos: -19.5,-9.5 - parent: 1 - type: Transform -- uid: 12541 - type: CableApcExtension - components: - - pos: -19.5,-8.5 - parent: 1 - type: Transform -- uid: 12542 - type: CableApcExtension - components: - - pos: -19.5,-6.5 - parent: 1 - type: Transform -- uid: 12543 - type: CableApcExtension - components: - - pos: -19.5,-5.5 - parent: 1 - type: Transform -- uid: 12544 - type: CableApcExtension - components: - - pos: -18.5,-5.5 - parent: 1 - type: Transform -- uid: 12545 - type: CableApcExtension - components: - - pos: -17.5,-5.5 - parent: 1 - type: Transform -- uid: 12546 - type: CableApcExtension - components: - - pos: -16.5,-5.5 - parent: 1 - type: Transform -- uid: 12547 - type: CableApcExtension - components: - - pos: -15.5,-5.5 - parent: 1 - type: Transform -- uid: 12548 - type: CableApcExtension - components: - - pos: -14.5,-5.5 - parent: 1 - type: Transform -- uid: 12549 - type: CableApcExtension - components: - - pos: -13.5,-5.5 - parent: 1 - type: Transform -- uid: 12550 - type: CableApcExtension - components: - - pos: -13.5,-4.5 - parent: 1 - type: Transform -- uid: 12551 - type: CableApcExtension - components: - - pos: -13.5,3.5 - parent: 1 - type: Transform -- uid: 12552 - type: CableApcExtension - components: - - pos: -19.5,7.5 - parent: 1 - type: Transform -- uid: 12553 - type: CableApcExtension - components: - - pos: -20.5,7.5 - parent: 1 - type: Transform -- uid: 12554 - type: CableApcExtension - components: - - pos: -21.5,7.5 - parent: 1 - type: Transform -- uid: 12555 - type: CableApcExtension - components: - - pos: -22.5,7.5 - parent: 1 - type: Transform -- uid: 12556 - type: CableApcExtension - components: - - pos: -20.5,-5.5 - parent: 1 - type: Transform -- uid: 12557 - type: CableApcExtension - components: - - pos: -21.5,-5.5 - parent: 1 - type: Transform -- uid: 12558 - type: CableApcExtension - components: - - pos: -22.5,-5.5 - parent: 1 - type: Transform -- uid: 12559 - type: CableApcExtension - components: - - pos: -23.5,-5.5 - parent: 1 - type: Transform -- uid: 12560 - type: CableApcExtension - components: - - pos: -24.5,-5.5 - parent: 1 - type: Transform -- uid: 12561 - type: CableApcExtension - components: - - pos: -25.5,-5.5 - parent: 1 - type: Transform -- uid: 12562 - type: CableApcExtension - components: - - pos: -25.5,-4.5 - parent: 1 - type: Transform -- uid: 12563 - type: CableApcExtension - components: - - pos: -25.5,-3.5 - parent: 1 - type: Transform -- uid: 12564 - type: CableApcExtension - components: - - pos: -25.5,-2.5 - parent: 1 - type: Transform -- uid: 12565 - type: CableApcExtension - components: - - pos: -25.5,-1.5 - parent: 1 - type: Transform -- uid: 12566 - type: CableApcExtension - components: - - pos: -25.5,-0.5 - parent: 1 - type: Transform -- uid: 12567 - type: CableApcExtension - components: - - pos: -25.5,0.5 - parent: 1 - type: Transform -- uid: 12568 - type: CableApcExtension - components: - - pos: -24.5,-9.5 - parent: 1 - type: Transform -- uid: 12569 - type: CableApcExtension - components: - - pos: -23.5,-9.5 - parent: 1 - type: Transform -- uid: 12570 - type: CableApcExtension - components: - - pos: -29.5,-13.5 - parent: 1 - type: Transform -- uid: 12571 - type: CableApcExtension - components: - - pos: -29.5,-14.5 - parent: 1 - type: Transform -- uid: 12572 - type: CableApcExtension - components: - - pos: -29.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12573 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -23.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12574 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -24.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12575 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12576 - type: FirelockGlass - components: - - pos: -27.5,-0.5 - parent: 1 - type: Transform -- uid: 12577 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12578 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12579 - type: Table - components: - - pos: -26.5,-19.5 - parent: 1 - type: Transform -- uid: 12580 - type: Poweredlight - components: - - pos: -30.5,-16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12581 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -28.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12582 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 1 - type: Transform -- uid: 12583 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -23.5,-15.5 - parent: 1 - type: Transform -- uid: 12584 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12585 - type: CableApcExtension - components: - - pos: 45.5,18.5 - parent: 1 - type: Transform -- uid: 12586 - type: Crowbar - components: - - pos: -29.495306,-23.60064 - parent: 1 - type: Transform -- uid: 12587 - type: PosterContrabandTools - components: - - pos: -22.5,-19.5 - parent: 1 - type: Transform -- uid: 12588 - type: BannerEngineering - components: - - pos: -25.5,-8.5 - parent: 1 - type: Transform -- uid: 12589 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-18.5 - parent: 1 - type: Transform -- uid: 12590 - type: TableReinforced - components: - - pos: -22.5,-8.5 - parent: 1 - type: Transform -- uid: 12591 - type: TableReinforced - components: - - pos: -23.5,-8.5 - parent: 1 - type: Transform -- uid: 12592 - type: IntercomCommand - components: - - pos: -34.5,-14.5 - parent: 1 - type: Transform -- uid: 12593 - type: FaxMachineBase - components: - - pos: -28.5,-9.5 - parent: 1 - type: Transform - - name: engineering fax - type: FaxMachine -- uid: 12594 - type: TableReinforced - components: - - pos: -27.5,-10.5 - parent: 1 - type: Transform -- uid: 12595 - type: TableReinforced - components: - - pos: -27.5,-11.5 - parent: 1 - type: Transform -- uid: 12596 - type: FoodSaladValid - components: - - pos: -7.4460807,4.484113 - parent: 1 - type: Transform -- uid: 12597 - type: ToolboxMechanical - components: - - pos: -22.637089,-8.36341 - parent: 1 - type: Transform -- uid: 12598 - type: ClothingHandsGlovesColorYellow - components: - - pos: -27.461733,-11.246322 - parent: 1 - type: Transform -- uid: 12599 - type: AtmosDeviceFanTiny - components: - - pos: 69.5,-3.5 - parent: 1 - type: Transform -- uid: 12600 - type: SheetSteel - components: - - pos: -27.53877,-10.535285 - parent: 1 - type: Transform -- uid: 12601 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 57.5,41.5 - parent: 1 - type: Transform -- uid: 12602 - type: ClothingOuterWizard - components: - - pos: -41.58894,41.559685 - parent: 1 - type: Transform -- uid: 12603 - type: WallSolid - components: - - pos: 50.5,41.5 - parent: 1 - type: Transform -- uid: 12604 - type: PowerCellRecharger - components: - - pos: -23.5,-8.5 - parent: 1 - type: Transform -- uid: 12605 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12606 - type: ClothingHandsGlovesColorYellow - components: - - pos: -28.54305,-20.538445 - parent: 1 - type: Transform -- uid: 12607 - type: WallSolid - components: - - pos: -21.5,-25.5 - parent: 1 - type: Transform -- uid: 12608 - type: AirlockMaintLocked - components: - - pos: -21.5,-26.5 - parent: 1 - type: Transform -- uid: 12609 - type: WallSolid - components: - - pos: -21.5,-27.5 - parent: 1 - type: Transform -- uid: 12610 - type: WallSolid - components: - - pos: -21.5,-28.5 - parent: 1 - type: Transform -- uid: 12611 - type: WallSolid - components: - - pos: -21.5,-29.5 - parent: 1 - type: Transform -- uid: 12612 - type: WallSolid - components: - - pos: -21.5,-30.5 - parent: 1 - type: Transform -- uid: 12613 - type: WallSolid - components: - - pos: -21.5,-31.5 - parent: 1 - type: Transform -- uid: 12614 - type: FirelockGlass - components: - - pos: -21.5,-32.5 - parent: 1 - type: Transform -- uid: 12615 - type: WallSolid - components: - - pos: -21.5,-33.5 - parent: 1 - type: Transform -- uid: 12616 - type: TableCounterMetal - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-34.5 - parent: 1 - type: Transform -- uid: 12617 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-35.5 - parent: 1 - type: Transform -- uid: 12618 - type: WallSolid - components: - - pos: -21.5,-36.5 - parent: 1 - type: Transform -- uid: 12619 - type: WallSolid - components: - - pos: -21.5,-37.5 - parent: 1 - type: Transform -- uid: 12620 - type: WallSolid - components: - - pos: -21.5,-38.5 - parent: 1 - type: Transform -- uid: 12621 - type: WallSolid - components: - - pos: -21.5,-39.5 - parent: 1 - type: Transform -- uid: 12622 - type: WallSolid - components: - - pos: -21.5,-40.5 - parent: 1 - type: Transform -- uid: 12623 - type: WallSolid - components: - - pos: -21.5,-41.5 - parent: 1 - type: Transform -- uid: 12624 - type: AirlockMaintLocked - components: - - pos: -21.5,-42.5 - parent: 1 - type: Transform -- uid: 12625 - type: WallSolid - components: - - pos: -21.5,-43.5 - parent: 1 - type: Transform -- uid: 12626 - type: WallReinforced - components: - - pos: -17.5,-47.5 - parent: 1 - type: Transform -- uid: 12627 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12628 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12629 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12630 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -8.5,47.5 - parent: 1 - type: Transform -- uid: 12631 - type: WallReinforced - components: - - pos: -22.5,-44.5 - parent: 1 - type: Transform -- uid: 12632 - type: WallSolid - components: - - pos: 37.5,-49.5 - parent: 1 - type: Transform -- uid: 12633 - type: WallSolid - components: - - pos: 38.5,-49.5 - parent: 1 - type: Transform -- uid: 12634 - type: WallSolid - components: - - pos: 39.5,-50.5 - parent: 1 - type: Transform -- uid: 12635 - type: Window - components: - - pos: 38.5,-57.5 - parent: 1 - type: Transform -- uid: 12636 - type: Window - components: - - pos: 40.5,-57.5 - parent: 1 - type: Transform -- uid: 12637 - type: FirelockGlass - components: - - pos: 39.5,-57.5 - parent: 1 - type: Transform -- uid: 12638 - type: AirlockMaintLocked - components: - - pos: 36.5,-57.5 - parent: 1 - type: Transform -- uid: 12639 - type: WallSolid - components: - - pos: 38.5,-50.5 - parent: 1 - type: Transform -- uid: 12640 - type: FirelockGlass - components: - - pos: 35.5,-59.5 - parent: 1 - type: Transform -- uid: 12641 - type: FirelockGlass - components: - - pos: 35.5,-58.5 - parent: 1 - type: Transform -- uid: 12642 - type: FirelockGlass - components: - - pos: 35.5,-60.5 - parent: 1 - type: Transform -- uid: 12643 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12644 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12645 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12646 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12647 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12648 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12649 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12650 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12651 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12652 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12653 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12654 - type: CableApcExtension - components: - - pos: 30.5,-59.5 - parent: 1 - type: Transform -- uid: 12655 - type: CableApcExtension - components: - - pos: 31.5,-59.5 - parent: 1 - type: Transform -- uid: 12656 - type: CableApcExtension - components: - - pos: 32.5,-59.5 - parent: 1 - type: Transform -- uid: 12657 - type: CableApcExtension - components: - - pos: 33.5,-59.5 - parent: 1 - type: Transform -- uid: 12658 - type: CableApcExtension - components: - - pos: 34.5,-59.5 - parent: 1 - type: Transform -- uid: 12659 - type: CableHV - components: - - pos: 35.5,-59.5 - parent: 1 - type: Transform -- uid: 12660 - type: CableHV - components: - - pos: 36.5,-59.5 - parent: 1 - type: Transform -- uid: 12661 - type: CableHV - components: - - pos: 37.5,-59.5 - parent: 1 - type: Transform -- uid: 12662 - type: DisposalPipe - components: - - pos: 29.5,-61.5 - parent: 1 - type: Transform -- uid: 12663 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 29.5,-62.5 - parent: 1 - type: Transform -- uid: 12664 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-60.5 - parent: 1 - type: Transform -- uid: 12665 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: 25.5,-60.5 - parent: 1 - type: Transform -- uid: 12666 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-59.5 - parent: 1 - type: Transform -- uid: 12667 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-60.5 - parent: 1 - type: Transform -- uid: 12668 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-60.5 - parent: 1 - type: Transform -- uid: 12669 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-60.5 - parent: 1 - type: Transform -- uid: 12670 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-60.5 - parent: 1 - type: Transform -- uid: 12671 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-60.5 - parent: 1 - type: Transform -- uid: 12672 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-60.5 - parent: 1 - type: Transform -- uid: 12673 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-60.5 - parent: 1 - type: Transform -- uid: 12674 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-60.5 - parent: 1 - type: Transform -- uid: 12675 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-60.5 - parent: 1 - type: Transform -- uid: 12676 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-60.5 - parent: 1 - type: Transform -- uid: 12677 - type: DisposalUnit - components: - - pos: 29.5,-62.5 - parent: 1 - type: Transform -- uid: 12678 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -23.5,-14.5 - parent: 1 - type: Transform -- uid: 12679 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-13.5 - parent: 1 - type: Transform -- uid: 12680 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-13.5 - parent: 1 - type: Transform -- uid: 12681 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-13.5 - parent: 1 - type: Transform -- uid: 12682 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-13.5 - parent: 1 - type: Transform -- uid: 12683 - type: DisposalJunction - components: - - pos: -19.5,-13.5 - parent: 1 - type: Transform -- uid: 12684 - type: DisposalPipe - components: - - pos: -19.5,-14.5 - parent: 1 - type: Transform -- uid: 12685 - type: DisposalPipe - components: - - pos: -19.5,-15.5 - parent: 1 - type: Transform -- uid: 12686 - type: DisposalPipe - components: - - pos: -19.5,-16.5 - parent: 1 - type: Transform -- uid: 12687 - type: DisposalPipe - components: - - pos: -19.5,-17.5 - parent: 1 - type: Transform -- uid: 12688 - type: DisposalPipe - components: - - pos: -19.5,-18.5 - parent: 1 - type: Transform -- uid: 12689 - type: DisposalPipe - components: - - pos: -19.5,-19.5 - parent: 1 - type: Transform -- uid: 12690 - type: DisposalPipe - components: - - pos: -19.5,-20.5 - parent: 1 - type: Transform -- uid: 12691 - type: DisposalPipe - components: - - pos: -19.5,-21.5 - parent: 1 - type: Transform -- uid: 12692 - type: DisposalPipe - components: - - pos: -19.5,-22.5 - parent: 1 - type: Transform -- uid: 12693 - type: DisposalPipe - components: - - pos: -19.5,-23.5 - parent: 1 - type: Transform -- uid: 12694 - type: DisposalPipe - components: - - pos: -19.5,-24.5 - parent: 1 - type: Transform -- uid: 12695 - type: DisposalPipe - components: - - pos: -19.5,-25.5 - parent: 1 - type: Transform -- uid: 12696 - type: DisposalPipe - components: - - pos: -19.5,-26.5 - parent: 1 - type: Transform -- uid: 12697 - type: DisposalYJunction - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-27.5 - parent: 1 - type: Transform -- uid: 12698 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-27.5 - parent: 1 - type: Transform -- uid: 12699 - type: DisposalPipe - components: - - pos: -19.5,-28.5 - parent: 1 - type: Transform -- uid: 12700 - type: DisposalPipe - components: - - pos: -19.5,-29.5 - parent: 1 - type: Transform -- uid: 12701 - type: DisposalPipe - components: - - pos: -19.5,-30.5 - parent: 1 - type: Transform -- uid: 12702 - type: DisposalPipe - components: - - pos: -19.5,-31.5 - parent: 1 - type: Transform -- uid: 12703 - type: DisposalPipe - components: - - pos: -19.5,-32.5 - parent: 1 - type: Transform -- uid: 12704 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-13.5 - parent: 1 - type: Transform -- uid: 12705 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-13.5 - parent: 1 - type: Transform -- uid: 12706 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 1 - type: Transform -- uid: 12707 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-13.5 - parent: 1 - type: Transform -- uid: 12708 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-13.5 - parent: 1 - type: Transform -- uid: 12709 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-13.5 - parent: 1 - type: Transform -- uid: 12710 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-13.5 - parent: 1 - type: Transform -- uid: 12711 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-13.5 - parent: 1 - type: Transform -- uid: 12712 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-15.5 - parent: 1 - type: Transform -- uid: 12713 - type: SpawnPointTechnicalAssistant - components: - - pos: -23.5,-10.5 - parent: 1 - type: Transform -- uid: 12714 - type: SpawnPointTechnicalAssistant - components: - - pos: -24.5,-12.5 - parent: 1 - type: Transform -- uid: 12715 - type: SpawnPointAssistant - components: - - pos: -25.5,-22.5 - parent: 1 - type: Transform -- uid: 12716 - type: SpawnPointAssistant - components: - - pos: -23.5,-22.5 - parent: 1 - type: Transform -- uid: 12717 - type: Table - components: - - pos: 30.5,-61.5 - parent: 1 - type: Transform -- uid: 12718 - type: Table - components: - - pos: 31.5,-61.5 - parent: 1 - type: Transform -- uid: 12719 - type: AirSensor - components: - - pos: 26.5,-59.5 - parent: 1 - type: Transform -- uid: 12720 - type: CableApcExtension - components: - - pos: 38.5,-36.5 - parent: 1 - type: Transform -- uid: 12721 - type: CableApcExtension - components: - - pos: 38.5,-37.5 - parent: 1 - type: Transform -- uid: 12722 - type: PowerCellRecharger - components: - - pos: -35.5,-13.5 - parent: 1 - type: Transform -- uid: 12723 - type: AirlockGlass - components: - - name: courtroom - type: MetaData - - rot: -1.5707963267948966 rad - pos: 31.5,-57.5 - parent: 1 - type: Transform -- uid: 12724 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-18.5 - parent: 1 - type: Transform -- uid: 12725 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,26.5 - parent: 1 - type: Transform -- uid: 12726 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-39.5 - parent: 1 - type: Transform -- uid: 12727 - type: BannerEngineering - components: - - pos: -23.5,-17.5 - parent: 1 - type: Transform -- uid: 12728 - type: MonkeyCubeWrapped - components: - - pos: 2.4904222,-5.293855 - parent: 1 - type: Transform -- uid: 12729 - type: WallSolid - components: - - pos: -1.5,-12.5 - parent: 1 - type: Transform -- uid: 12730 - type: WallSolid - components: - - pos: -1.5,-13.5 - parent: 1 - type: Transform -- uid: 12731 - type: ClosetFireFilled - components: - - pos: -2.5,-12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12732 - type: ClosetEmergencyFilledRandom - components: - - pos: -2.5,-11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12733 - type: PosterContrabandFreeTonto - components: - - pos: -6.5,-14.5 - parent: 1 - type: Transform -- uid: 12734 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: 39.5,-53.5 - parent: 1 - type: Transform -- uid: 12735 - type: Table - components: - - pos: 40.5,-53.5 - parent: 1 - type: Transform -- uid: 12736 - type: Table - components: - - pos: 41.5,-53.5 - parent: 1 - type: Transform -- uid: 12737 - type: Table - components: - - pos: 41.5,-54.5 - parent: 1 - type: Transform -- uid: 12738 - type: Table - components: - - pos: 41.5,-55.5 - parent: 1 - type: Transform -- uid: 12739 - type: InflatableDoorStack1 - components: - - pos: 41.577766,-55.382984 - parent: 1 - type: Transform -- uid: 12740 - type: ToolboxMechanicalFilled - components: - - pos: 41.46839,-54.726734 - parent: 1 - type: Transform -- uid: 12741 - type: MicrowaveMachineCircuitboard - components: - - pos: 41.53089,-54.195484 - parent: 1 - type: Transform -- uid: 12742 - type: ComputerTelevisionCircuitboard - components: - - pos: 41.546516,-53.695484 - parent: 1 - type: Transform -- uid: 12743 - type: Crowbar - components: - - pos: 40.56214,-53.476734 - parent: 1 - type: Transform -- uid: 12744 - type: Wrench - components: - - pos: 40.515266,-53.36736 - parent: 1 - type: Transform -- uid: 12745 - type: LockerWeldingSuppliesFilled - components: - - pos: 38.5,-53.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 12746 - type: BlastDoorExterior1 - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-56.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -132708.6 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 12994 - Close: - - port: Off - uid: 12994 - Toggle: [] - type: SignalReceiver -- uid: 12747 - type: BlastDoorExterior1 - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-56.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -132708.6 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 12994 - Close: - - port: Off - uid: 12994 - Toggle: [] - type: SignalReceiver -- uid: 12748 - type: WallReinforced - components: - - pos: 56.5,-56.5 - parent: 1 - type: Transform -- uid: 12749 - type: WallReinforced - components: - - pos: 56.5,-57.5 - parent: 1 - type: Transform -- uid: 12750 - type: WallReinforced - components: - - pos: 57.5,-57.5 - parent: 1 - type: Transform -- uid: 12751 - type: WallReinforced - components: - - pos: 57.5,-58.5 - parent: 1 - type: Transform -- uid: 12752 - type: WallReinforced - components: - - pos: 58.5,-58.5 - parent: 1 - type: Transform -- uid: 12753 - type: WallReinforced - components: - - pos: 58.5,-61.5 - parent: 1 - type: Transform -- uid: 12754 - type: WallSolid - components: - - pos: 57.5,-61.5 - parent: 1 - type: Transform -- uid: 12755 - type: WallReinforced - components: - - pos: 53.5,-62.5 - parent: 1 - type: Transform -- uid: 12756 - type: ReinforcedWindow - components: - - pos: 58.5,-59.5 - parent: 1 - type: Transform -- uid: 12757 - type: ReinforcedWindow - components: - - pos: 58.5,-60.5 - parent: 1 - type: Transform -- uid: 12758 - type: ReinforcedWindow - components: - - pos: 54.5,-25.5 - parent: 1 - type: Transform -- uid: 12759 - type: WallReinforced - components: - - pos: 53.5,-25.5 - parent: 1 - type: Transform -- uid: 12760 - type: WallReinforced - components: - - pos: 52.5,-26.5 - parent: 1 - type: Transform -- uid: 12761 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 55.5,-60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12762 - type: GasValve - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-59.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 12763 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-59.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12764 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 55.5,-61.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12765 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-59.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12766 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-59.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12767 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-54.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12768 - type: GasMixer - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-59.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12769 - type: AirCanister - components: - - pos: 45.5,-53.5 - parent: 1 - type: Transform -- uid: 12770 - type: CableApcExtension - components: - - pos: 51.5,-57.5 - parent: 1 - type: Transform -- uid: 12771 - type: CableApcExtension - components: - - pos: 51.5,-58.5 - parent: 1 - type: Transform -- uid: 12772 - type: CableApcExtension - components: - - pos: 52.5,-58.5 - parent: 1 - type: Transform -- uid: 12773 - type: CableApcExtension - components: - - pos: 53.5,-58.5 - parent: 1 - type: Transform -- uid: 12774 - type: CableApcExtension - components: - - pos: 54.5,-58.5 - parent: 1 - type: Transform -- uid: 12775 - type: CableApcExtension - components: - - pos: 55.5,-58.5 - parent: 1 - type: Transform -- uid: 12776 - type: CableApcExtension - components: - - pos: 55.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12777 - type: CableApcExtension - components: - - pos: 55.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 12778 - type: CableApcExtension - components: - - pos: 56.5,-60.5 - parent: 1 - type: Transform -- uid: 12779 - type: HolofanProjector - components: - - pos: -51.61548,-16.423727 - parent: 1 - type: Transform -- uid: 12780 - type: SignalSwitch - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-56.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 11939 - Off: - - port: Close - uid: 11939 - type: SignalTransmitter -- uid: 12781 - type: AirlockMaintGlass - components: - - pos: 47.5,-33.5 - parent: 1 - type: Transform -- uid: 12782 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12783 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12784 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12785 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12786 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12787 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12788 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12789 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12790 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12791 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12792 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12793 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12794 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12795 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12796 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12797 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12798 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12799 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12800 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12801 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12802 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12803 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12804 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12805 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12806 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12807 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12808 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12809 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-65.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12810 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-66.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12811 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-67.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12812 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 38.5,-68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12813 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12814 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-67.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12815 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 40.5,-68.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12816 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-60.5 - parent: 1 - type: Transform -- uid: 12817 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-60.5 - parent: 1 - type: Transform -- uid: 12818 - type: DisposalBend - components: - - pos: 39.5,-60.5 - parent: 1 - type: Transform -- uid: 12819 - type: DisposalPipe - components: - - pos: 39.5,-61.5 - parent: 1 - type: Transform -- uid: 12820 - type: DisposalPipe - components: - - pos: 39.5,-62.5 - parent: 1 - type: Transform -- uid: 12821 - type: DisposalPipe - components: - - pos: 39.5,-63.5 - parent: 1 - type: Transform -- uid: 12822 - type: DisposalPipe - components: - - pos: 39.5,-64.5 - parent: 1 - type: Transform -- uid: 12823 - type: DisposalPipe - components: - - pos: 39.5,-65.5 - parent: 1 - type: Transform -- uid: 12824 - type: DisposalPipe - components: - - pos: 39.5,-66.5 - parent: 1 - type: Transform -- uid: 12825 - type: DisposalPipe - components: - - pos: 39.5,-67.5 - parent: 1 - type: Transform -- uid: 12826 - type: DisposalPipe - components: - - pos: 39.5,-68.5 - parent: 1 - type: Transform -- uid: 12827 - type: WaterTankFull - components: - - pos: 8.5,-64.5 - parent: 1 - type: Transform -- uid: 12828 - type: GasPipeStraight - components: - - pos: 50.5,-53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12829 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 50.5,-54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12830 - type: GasPipeBend - components: - - pos: 52.5,-54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12831 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,-56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12832 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 52.5,-57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12833 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,-55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12834 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12835 - type: Grille - components: - - pos: 52.5,-57.5 - parent: 1 - type: Transform -- uid: 12836 - type: FirelockGlass - components: - - pos: -14.5,-58.5 - parent: 1 - type: Transform -- uid: 12837 - type: FirelockGlass - components: - - pos: -11.5,-58.5 - parent: 1 - type: Transform -- uid: 12838 - type: BedsheetMedical - components: - - rot: 3.141592653589793 rad - pos: 6.5,-56.5 - parent: 1 - type: Transform -- uid: 12839 - type: MedicalBed - components: - - pos: 6.5,-56.5 - parent: 1 - type: Transform -- uid: 12840 - type: Window - components: - - pos: 5.5,-58.5 - parent: 1 - type: Transform -- uid: 12841 - type: WallSolid - components: - - pos: 6.5,-58.5 - parent: 1 - type: Transform -- uid: 12842 - type: WallReinforced - components: - - pos: -17.5,-49.5 - parent: 1 - type: Transform -- uid: 12843 - type: AirlockSecurityLocked - components: - - rot: 3.141592653589793 rad - pos: -19.5,-44.5 - parent: 1 - type: Transform -- uid: 12844 - type: WallReinforced - components: - - pos: -17.5,-48.5 - parent: 1 - type: Transform -- uid: 12845 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,-33.5 - parent: 1 - type: Transform -- uid: 12846 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,-34.5 - parent: 1 - type: Transform -- uid: 12847 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,-35.5 - parent: 1 - type: Transform -- uid: 12848 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,-36.5 - parent: 1 - type: Transform -- uid: 12849 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,-37.5 - parent: 1 - type: Transform -- uid: 12850 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,-38.5 - parent: 1 - type: Transform -- uid: 12851 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,-39.5 - parent: 1 - type: Transform -- uid: 12852 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,-40.5 - parent: 1 - type: Transform -- uid: 12853 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,-41.5 - parent: 1 - type: Transform -- uid: 12854 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,-42.5 - parent: 1 - type: Transform -- uid: 12855 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -19.5,-43.5 - parent: 1 - type: Transform -- uid: 12856 - type: CableHV - components: - - pos: -18.5,-41.5 - parent: 1 - type: Transform -- uid: 12857 - type: CableHV - components: - - pos: -18.5,-40.5 - parent: 1 - type: Transform -- uid: 12858 - type: CableHV - components: - - pos: -18.5,-39.5 - parent: 1 - type: Transform -- uid: 12859 - type: CableHV - components: - - pos: -18.5,-38.5 - parent: 1 - type: Transform -- uid: 12860 - type: CableHV - components: - - pos: -18.5,-37.5 - parent: 1 - type: Transform -- uid: 12861 - type: CableHV - components: - - pos: -18.5,-36.5 - parent: 1 - type: Transform -- uid: 12862 - type: CableHV - components: - - pos: -18.5,-35.5 - parent: 1 - type: Transform -- uid: 12863 - type: CableHV - components: - - pos: -18.5,-34.5 - parent: 1 - type: Transform -- uid: 12864 - type: CableHV - components: - - pos: -18.5,-33.5 - parent: 1 - type: Transform -- uid: 12865 - type: CableHV - components: - - pos: -18.5,-32.5 - parent: 1 - type: Transform -- uid: 12866 - type: CableHV - components: - - pos: -18.5,-31.5 - parent: 1 - type: Transform -- uid: 12867 - type: CableHV - components: - - pos: -18.5,-30.5 - parent: 1 - type: Transform -- uid: 12868 - type: CableHV - components: - - pos: -19.5,-30.5 - parent: 1 - type: Transform -- uid: 12869 - type: CableHV - components: - - pos: -19.5,-29.5 - parent: 1 - type: Transform -- uid: 12870 - type: CableHV - components: - - pos: -19.5,-28.5 - parent: 1 - type: Transform -- uid: 12871 - type: PosterLegitSecWatch - components: - - rot: 3.141592653589793 rad - pos: -18.5,-44.5 - parent: 1 - type: Transform -- uid: 12872 - type: CableApcExtension - components: - - pos: -35.5,-39.5 - parent: 1 - type: Transform -- uid: 12873 - type: WallReinforced - components: - - pos: -22.5,-45.5 - parent: 1 - type: Transform -- uid: 12874 - type: WallReinforced - components: - - pos: -22.5,-46.5 - parent: 1 - type: Transform -- uid: 12875 - type: WallReinforced - components: - - pos: -22.5,-47.5 - parent: 1 - type: Transform -- uid: 12876 - type: WallSolid - components: - - pos: -22.5,-27.5 - parent: 1 - type: Transform -- uid: 12877 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12878 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12879 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12880 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -14.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12881 - type: GasPipeBend - components: - - pos: -14.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12882 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12883 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12884 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12885 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -18.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12886 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -20.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12887 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12888 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12889 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12890 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12891 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12892 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12893 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12894 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12895 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12896 - type: AirlockMaintLocked - components: - - rot: 3.141592653589793 rad - pos: -17.5,10.5 - parent: 1 - type: Transform -- uid: 12897 - type: GasPipeBend - components: - - pos: -18.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12898 - type: GasPipeBend - components: - - pos: -20.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12899 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12900 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12901 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12902 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12903 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12904 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12905 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12906 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12907 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12908 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12909 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12910 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12911 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12912 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12913 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12914 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12915 - type: PlasmaCanister - components: - - pos: -40.5,-39.5 - parent: 1 - type: Transform -- uid: 12916 - type: AirlockEngineeringGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-10.5 - parent: 1 - type: Transform -- uid: 12917 - type: SignalSwitch - components: - - pos: -51.5,32.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 18781 - Off: - - port: Close - uid: 18781 - type: SignalTransmitter - - type: ItemCooldown -- uid: 12918 - type: IntercomEngineering - components: - - pos: -24.5,-7.5 - parent: 1 - type: Transform -- uid: 12919 - type: ComputerPowerMonitoring - components: - - rot: 3.141592653589793 rad - pos: -27.5,-13.5 - parent: 1 - type: Transform -- uid: 12920 - type: Wrench - components: - - pos: 53.570477,-52.25876 - parent: 1 - type: Transform -- uid: 12921 - type: BoxLatexGloves - components: - - pos: 69.515594,-49.409985 - parent: 1 - type: Transform -- uid: 12922 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12923 - type: GasValve - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-60.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 12924 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12925 - type: GasPort - components: - - name: scrubber to connector port - type: MetaData - - rot: -1.5707963267948966 rad - pos: 54.5,-60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12926 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 12927 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 50.5,-53.5 - parent: 1 - type: Transform -- uid: 12928 - type: Poweredlight - components: - - pos: 56.5,-58.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12929 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12930 - type: Poweredlight - components: - - pos: 45.5,-56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12931 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12932 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-61.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12933 - type: PoweredSmallLight - components: - - pos: 46.5,-51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 12934 - type: GasVentPump - components: - - pos: 38.5,-55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12935 - type: GasVentScrubber - components: - - pos: 40.5,-55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12936 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12937 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12938 - type: CableHV - components: - - pos: 38.5,-59.5 - parent: 1 - type: Transform -- uid: 12939 - type: CableHV - components: - - pos: 39.5,-59.5 - parent: 1 - type: Transform -- uid: 12940 - type: CableHV - components: - - pos: 40.5,-59.5 - parent: 1 - type: Transform -- uid: 12941 - type: CableHV - components: - - pos: 40.5,-60.5 - parent: 1 - type: Transform -- uid: 12942 - type: CableHV - components: - - pos: 40.5,-61.5 - parent: 1 - type: Transform -- uid: 12943 - type: CableHV - components: - - pos: 40.5,-62.5 - parent: 1 - type: Transform -- uid: 12944 - type: CableHV - components: - - pos: 40.5,-63.5 - parent: 1 - type: Transform -- uid: 12945 - type: CableHV - components: - - pos: 40.5,-64.5 - parent: 1 - type: Transform -- uid: 12946 - type: CableHV - components: - - pos: 40.5,-65.5 - parent: 1 - type: Transform -- uid: 12947 - type: CableHV - components: - - pos: 40.5,-66.5 - parent: 1 - type: Transform -- uid: 12948 - type: CableHV - components: - - pos: 40.5,-67.5 - parent: 1 - type: Transform -- uid: 12949 - type: CableHV - components: - - pos: 40.5,-68.5 - parent: 1 - type: Transform -- uid: 12950 - type: SurveillanceCameraRouterGeneral - components: - - pos: -18.5,-45.5 - parent: 1 - type: Transform -- uid: 12951 - type: SurveillanceCameraRouterMedical - components: - - pos: -18.5,-46.5 - parent: 1 - type: Transform -- uid: 12952 - type: SurveillanceCameraRouterService - components: - - pos: -18.5,-47.5 - parent: 1 - type: Transform -- uid: 12953 - type: SurveillanceCameraRouterCommand - components: - - pos: -18.5,-48.5 - parent: 1 - type: Transform -- uid: 12954 - type: SurveillanceCameraRouterSecurity - components: - - pos: -21.5,-48.5 - parent: 1 - type: Transform -- uid: 12955 - type: SurveillanceCameraRouterEngineering - components: - - pos: -21.5,-47.5 - parent: 1 - type: Transform -- uid: 12956 - type: SurveillanceCameraRouterSupply - components: - - pos: -21.5,-46.5 - parent: 1 - type: Transform -- uid: 12957 - type: SurveillanceCameraRouterScience - components: - - pos: -21.5,-45.5 - parent: 1 - type: Transform -- uid: 12958 - type: GasPipeStraight - components: - - pos: -18.5,-41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12959 - type: GasPipeStraight - components: - - pos: -18.5,-40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12960 - type: GasPipeStraight - components: - - pos: -18.5,-39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12961 - type: GasPipeStraight - components: - - pos: -18.5,-38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12962 - type: GasPipeStraight - components: - - pos: -18.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12963 - type: GasPipeStraight - components: - - pos: -18.5,-36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12964 - type: GasPipeStraight - components: - - pos: -18.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12965 - type: GasPipeStraight - components: - - pos: -18.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12966 - type: GasPipeStraight - components: - - pos: -18.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12967 - type: GasPipeStraight - components: - - pos: -18.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12968 - type: WallSolid - components: - - pos: -17.5,-30.5 - parent: 1 - type: Transform -- uid: 12969 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12970 - type: GasPipeStraight - components: - - pos: -20.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12971 - type: GasPipeStraight - components: - - pos: -20.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12972 - type: GasPipeStraight - components: - - pos: -20.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12973 - type: GasPipeStraight - components: - - pos: -20.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12974 - type: GasPipeStraight - components: - - pos: -20.5,-38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12975 - type: GasPipeStraight - components: - - pos: -20.5,-39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12976 - type: GasPipeStraight - components: - - pos: -20.5,-40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12977 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12978 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12979 - type: GasPipeStraight - components: - - pos: -18.5,-44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12980 - type: GasPipeStraight - components: - - pos: -18.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12981 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12982 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -20.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12983 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12984 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12985 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 12986 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12987 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12988 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12989 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12990 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12991 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12992 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12993 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 12994 - type: SignalSwitch - components: - - rot: 3.141592653589793 rad - pos: 60.5,-55.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 12746 - - port: Open - uid: 12747 - Off: - - port: Close - uid: 12746 - - port: Close - uid: 12747 - type: SignalTransmitter -- uid: 12995 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 56.5,-55.5 - parent: 1 - type: Transform -- uid: 12996 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 59.5,-54.5 - parent: 1 - type: Transform -- uid: 12997 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 65.5,-54.5 - parent: 1 - type: Transform -- uid: 12998 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 56.5,-55.5 - parent: 1 - type: Transform -- uid: 12999 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 59.5,-54.5 - parent: 1 - type: Transform -- uid: 13000 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 65.5,-54.5 - parent: 1 - type: Transform -- uid: 13001 - type: CableApcExtension - components: - - pos: 29.5,-72.5 - parent: 1 - type: Transform -- uid: 13002 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-85.5 - parent: 1 - type: Transform -- uid: 13003 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-88.5 - parent: 1 - type: Transform -- uid: 13004 - type: Grille - components: - - pos: 41.5,-74.5 - parent: 1 - type: Transform -- uid: 13005 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-74.5 - parent: 1 - type: Transform -- uid: 13006 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-75.5 - parent: 1 - type: Transform -- uid: 13007 - type: ClosetEmergencyFilledRandom - components: - - pos: 43.5,-74.5 - parent: 1 - type: Transform -- uid: 13008 - type: ReinforcedWindow - components: - - pos: 41.5,-74.5 - parent: 1 - type: Transform -- uid: 13009 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-74.5 - parent: 1 - type: Transform -- uid: 13010 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13011 - type: DisposalPipe - components: - - pos: 30.5,-80.5 - parent: 1 - type: Transform -- uid: 13012 - type: WallReinforced - components: - - pos: 42.5,-74.5 - parent: 1 - type: Transform -- uid: 13013 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 45.5,-74.5 - parent: 1 - type: Transform -- uid: 13014 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 46.5,-74.5 - parent: 1 - type: Transform -- uid: 13015 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-90.5 - parent: 1 - type: Transform -- uid: 13016 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-90.5 - parent: 1 - type: Transform -- uid: 13017 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-86.5 - parent: 1 - type: Transform -- uid: 13018 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 46.5,-70.5 - parent: 1 - type: Transform -- uid: 13019 - type: WallReinforced - components: - - pos: 33.5,-70.5 - parent: 1 - type: Transform -- uid: 13020 - type: CableApcExtension - components: - - pos: 47.5,-82.5 - parent: 1 - type: Transform -- uid: 13021 - type: WallReinforced - components: - - pos: 32.5,-70.5 - parent: 1 - type: Transform -- uid: 13022 - type: WallReinforced - components: - - pos: 12.5,-70.5 - parent: 1 - type: Transform -- uid: 13023 - type: DisposalPipe - components: - - pos: 30.5,-78.5 - parent: 1 - type: Transform -- uid: 13024 - type: DisposalPipe - components: - - pos: 30.5,-79.5 - parent: 1 - type: Transform -- uid: 13025 - type: WallReinforced - components: - - pos: 45.5,-70.5 - parent: 1 - type: Transform -- uid: 13026 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 42.5,-58.5 - parent: 1 - type: Transform -- uid: 13027 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 42.5,-60.5 - parent: 1 - type: Transform -- uid: 13028 - type: SubstationBasic - components: - - pos: 43.5,-58.5 - parent: 1 - type: Transform -- uid: 13029 - type: CableHV - components: - - pos: 41.5,-59.5 - parent: 1 - type: Transform -- uid: 13030 - type: CableHV - components: - - pos: 42.5,-59.5 - parent: 1 - type: Transform -- uid: 13031 - type: CableHV - components: - - pos: 43.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13032 - type: CableHV - components: - - pos: 43.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13033 - type: CableMV - components: - - pos: 43.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13034 - type: CableMV - components: - - pos: 43.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13035 - type: CableMV - components: - - pos: 42.5,-59.5 - parent: 1 - type: Transform -- uid: 13036 - type: CableMV - components: - - pos: 41.5,-59.5 - parent: 1 - type: Transform -- uid: 13037 - type: CableMV - components: - - pos: 40.5,-59.5 - parent: 1 - type: Transform -- uid: 13038 - type: CableMV - components: - - pos: 39.5,-59.5 - parent: 1 - type: Transform -- uid: 13039 - type: CableMV - components: - - pos: 38.5,-59.5 - parent: 1 - type: Transform -- uid: 13040 - type: CableMV - components: - - pos: 37.5,-59.5 - parent: 1 - type: Transform -- uid: 13041 - type: CableMV - components: - - pos: 37.5,-58.5 - parent: 1 - type: Transform -- uid: 13042 - type: CableMV - components: - - pos: 37.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13043 - type: APCBasic - components: - - pos: 37.5,-57.5 - parent: 1 - type: Transform -- uid: 13044 - type: CableApcExtension - components: - - pos: 37.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13045 - type: CableApcExtension - components: - - pos: 37.5,-58.5 - parent: 1 - type: Transform -- uid: 13046 - type: CableApcExtension - components: - - pos: 37.5,-59.5 - parent: 1 - type: Transform -- uid: 13047 - type: CableApcExtension - components: - - pos: 38.5,-59.5 - parent: 1 - type: Transform -- uid: 13048 - type: CableApcExtension - components: - - pos: 39.5,-59.5 - parent: 1 - type: Transform -- uid: 13049 - type: CableApcExtension - components: - - pos: 40.5,-59.5 - parent: 1 - type: Transform -- uid: 13050 - type: CableApcExtension - components: - - pos: 40.5,-59.5 - parent: 1 - type: Transform -- uid: 13051 - type: CableApcExtension - components: - - pos: 40.5,-60.5 - parent: 1 - type: Transform -- uid: 13052 - type: CableApcExtension - components: - - pos: 40.5,-61.5 - parent: 1 - type: Transform -- uid: 13053 - type: CableApcExtension - components: - - pos: 40.5,-62.5 - parent: 1 - type: Transform -- uid: 13054 - type: CableApcExtension - components: - - pos: 40.5,-63.5 - parent: 1 - type: Transform -- uid: 13055 - type: CableApcExtension - components: - - pos: 40.5,-64.5 - parent: 1 - type: Transform -- uid: 13056 - type: CableApcExtension - components: - - pos: 40.5,-65.5 - parent: 1 - type: Transform -- uid: 13057 - type: CableApcExtension - components: - - pos: 40.5,-66.5 - parent: 1 - type: Transform -- uid: 13058 - type: CableApcExtension - components: - - pos: 40.5,-67.5 - parent: 1 - type: Transform -- uid: 13059 - type: CableApcExtension - components: - - pos: 40.5,-68.5 - parent: 1 - type: Transform -- uid: 13060 - type: CableApcExtension - components: - - pos: 40.5,-69.5 - parent: 1 - type: Transform -- uid: 13061 - type: CableApcExtension - components: - - pos: 40.5,-70.5 - parent: 1 - type: Transform -- uid: 13062 - type: CableApcExtension - components: - - pos: 40.5,-71.5 - parent: 1 - type: Transform -- uid: 13063 - type: CableApcExtension - components: - - pos: 40.5,-72.5 - parent: 1 - type: Transform -- uid: 13064 - type: CableApcExtension - components: - - pos: 41.5,-72.5 - parent: 1 - type: Transform -- uid: 13065 - type: CableApcExtension - components: - - pos: 42.5,-72.5 - parent: 1 - type: Transform -- uid: 13066 - type: CableApcExtension - components: - - pos: 43.5,-72.5 - parent: 1 - type: Transform -- uid: 13067 - type: CableApcExtension - components: - - pos: 44.5,-72.5 - parent: 1 - type: Transform -- uid: 13068 - type: CableApcExtension - components: - - pos: 44.5,-73.5 - parent: 1 - type: Transform -- uid: 13069 - type: CableApcExtension - components: - - pos: 44.5,-74.5 - parent: 1 - type: Transform -- uid: 13070 - type: CableApcExtension - components: - - pos: 42.5,-73.5 - parent: 1 - type: Transform -- uid: 13071 - type: CableApcExtension - components: - - pos: 42.5,-74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13072 - type: CableApcExtension - components: - - pos: 39.5,-72.5 - parent: 1 - type: Transform -- uid: 13073 - type: CableApcExtension - components: - - pos: 38.5,-72.5 - parent: 1 - type: Transform -- uid: 13074 - type: CableApcExtension - components: - - pos: 37.5,-72.5 - parent: 1 - type: Transform -- uid: 13075 - type: CableApcExtension - components: - - pos: 36.5,-72.5 - parent: 1 - type: Transform -- uid: 13076 - type: CableApcExtension - components: - - pos: 35.5,-72.5 - parent: 1 - type: Transform -- uid: 13077 - type: CableApcExtension - components: - - pos: 34.5,-72.5 - parent: 1 - type: Transform -- uid: 13078 - type: CableApcExtension - components: - - pos: 34.5,-73.5 - parent: 1 - type: Transform -- uid: 13079 - type: CableApcExtension - components: - - pos: 34.5,-74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13080 - type: CableApcExtension - components: - - pos: 36.5,-73.5 - parent: 1 - type: Transform -- uid: 13081 - type: CableApcExtension - components: - - pos: 36.5,-74.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13082 - type: CableApcExtension - components: - - pos: 44.5,-71.5 - parent: 1 - type: Transform -- uid: 13083 - type: CableApcExtension - components: - - pos: 44.5,-70.5 - parent: 1 - type: Transform -- uid: 13084 - type: CableApcExtension - components: - - pos: 34.5,-71.5 - parent: 1 - type: Transform -- uid: 13085 - type: CableApcExtension - components: - - pos: 34.5,-70.5 - parent: 1 - type: Transform -- uid: 13086 - type: CableApcExtension - components: - - pos: 41.5,-59.5 - parent: 1 - type: Transform -- uid: 13087 - type: CableApcExtension - components: - - pos: 42.5,-59.5 - parent: 1 - type: Transform -- uid: 13088 - type: CableApcExtension - components: - - pos: 43.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13089 - type: CableApcExtension - components: - - pos: 39.5,-58.5 - parent: 1 - type: Transform -- uid: 13090 - type: CableApcExtension - components: - - pos: 39.5,-57.5 - parent: 1 - type: Transform -- uid: 13091 - type: CableApcExtension - components: - - pos: 39.5,-56.5 - parent: 1 - type: Transform -- uid: 13092 - type: CableApcExtension - components: - - pos: 39.5,-55.5 - parent: 1 - type: Transform -- uid: 13093 - type: CableApcExtension - components: - - pos: 39.5,-54.5 - parent: 1 - type: Transform -- uid: 13094 - type: CableApcExtension - components: - - pos: 40.5,-55.5 - parent: 1 - type: Transform -- uid: 13095 - type: CableApcExtension - components: - - pos: 36.5,-58.5 - parent: 1 - type: Transform -- uid: 13096 - type: CableApcExtension - components: - - pos: 36.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13097 - type: CableApcExtension - components: - - pos: 36.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13098 - type: CableApcExtension - components: - - pos: 36.5,-57.5 - parent: 1 - type: Transform -- uid: 13099 - type: CableApcExtension - components: - - pos: 36.5,-55.5 - parent: 1 - type: Transform -- uid: 13100 - type: CableApcExtension - components: - - pos: 36.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13101 - type: CableApcExtension - components: - - pos: 36.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13102 - type: CableApcExtension - components: - - pos: 36.5,-51.5 - parent: 1 - type: Transform -- uid: 13103 - type: CableApcExtension - components: - - pos: 37.5,-51.5 - parent: 1 - type: Transform -- uid: 13104 - type: CableApcExtension - components: - - pos: 38.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13105 - type: CableApcExtension - components: - - pos: 39.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13106 - type: CableApcExtension - components: - - pos: 40.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13107 - type: CableApcExtension - components: - - pos: 40.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13108 - type: CableApcExtension - components: - - pos: 40.5,-49.5 - parent: 1 - type: Transform -- uid: 13109 - type: CableApcExtension - components: - - pos: 39.5,-49.5 - parent: 1 - type: Transform -- uid: 13110 - type: CableApcExtension - components: - - pos: 39.5,-48.5 - parent: 1 - type: Transform -- uid: 13111 - type: CableApcExtension - components: - - pos: 38.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13112 - type: CableApcExtension - components: - - pos: 41.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13113 - type: CableApcExtension - components: - - pos: 42.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13114 - type: CableApcExtension - components: - - pos: 43.5,-51.5 - parent: 1 - type: Transform -- uid: 13115 - type: CableApcExtension - components: - - pos: 43.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13116 - type: CableApcExtension - components: - - pos: 43.5,-53.5 - parent: 1 - type: Transform -- uid: 13117 - type: CableApcExtension - components: - - pos: 43.5,-54.5 - parent: 1 - type: Transform -- uid: 13118 - type: WallReinforced - components: - - pos: 41.5,-69.5 - parent: 1 - type: Transform -- uid: 13119 - type: ReinforcedWindow - components: - - pos: 37.5,-66.5 - parent: 1 - type: Transform -- uid: 13120 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-65.5 - parent: 1 - type: Transform -- uid: 13121 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-65.5 - parent: 1 - type: Transform -- uid: 13122 - type: WallReinforced - components: - - pos: 45.5,-69.5 - parent: 1 - type: Transform -- uid: 13123 - type: WallReinforced - components: - - pos: 37.5,-69.5 - parent: 1 - type: Transform -- uid: 13124 - type: ReinforcedWindow - components: - - pos: 36.5,-69.5 - parent: 1 - type: Transform -- uid: 13125 - type: ReinforcedWindow - components: - - pos: 34.5,-69.5 - parent: 1 - type: Transform -- uid: 13126 - type: ReinforcedWindow - components: - - pos: 37.5,-64.5 - parent: 1 - type: Transform -- uid: 13127 - type: WallReinforced - components: - - pos: 33.5,-69.5 - parent: 1 - type: Transform -- uid: 13128 - type: ComfyChair - components: - - pos: 25.5,-81.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13129 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 48.5,-95.5 - parent: 1 - type: Transform -- uid: 13130 - type: CableApcExtension - components: - - pos: 31.5,-72.5 - parent: 1 - type: Transform -- uid: 13131 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-75.5 - parent: 1 - type: Transform -- uid: 13132 - type: CableApcExtension - components: - - pos: 27.5,-72.5 - parent: 1 - type: Transform -- uid: 13133 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-94.5 - parent: 1 - type: Transform -- uid: 13134 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-75.5 - parent: 1 - type: Transform -- uid: 13135 - type: CableApcExtension - components: - - pos: 28.5,-72.5 - parent: 1 - type: Transform -- uid: 13136 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-86.5 - parent: 1 - type: Transform -- uid: 13137 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-87.5 - parent: 1 - type: Transform -- uid: 13138 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-82.5 - parent: 1 - type: Transform -- uid: 13139 - type: CableApcExtension - components: - - pos: 22.5,-83.5 - parent: 1 - type: Transform -- uid: 13140 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 20.5,-84.5 - parent: 1 - type: Transform -- uid: 13141 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-93.5 - parent: 1 - type: Transform -- uid: 13142 - type: CableApcExtension - components: - - pos: 23.5,-72.5 - parent: 1 - type: Transform -- uid: 13143 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 10.5,-86.5 - parent: 1 - type: Transform -- uid: 13144 - type: CableApcExtension - components: - - pos: 25.5,-70.5 - parent: 1 - type: Transform -- uid: 13145 - type: CableApcExtension - components: - - pos: 25.5,-69.5 - parent: 1 - type: Transform -- uid: 13146 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 11.5,-87.5 - parent: 1 - type: Transform -- uid: 13147 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 12.5,-87.5 - parent: 1 - type: Transform -- uid: 13148 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-85.5 - parent: 1 - type: Transform -- uid: 13149 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-84.5 - parent: 1 - type: Transform -- uid: 13150 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-85.5 - parent: 1 - type: Transform -- uid: 13151 - type: CableApcExtension - components: - - pos: 13.5,-83.5 - parent: 1 - type: Transform -- uid: 13152 - type: CableApcExtension - components: - - pos: 26.5,-72.5 - parent: 1 - type: Transform -- uid: 13153 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-78.5 - parent: 1 - type: Transform -- uid: 13154 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 21.5,-82.5 - parent: 1 - type: Transform -- uid: 13155 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-76.5 - parent: 1 - type: Transform -- uid: 13156 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 20.5,-82.5 - parent: 1 - type: Transform -- uid: 13157 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-83.5 - parent: 1 - type: Transform -- uid: 13158 - type: CableApcExtension - components: - - pos: 25.5,-72.5 - parent: 1 - type: Transform -- uid: 13159 - type: CableApcExtension - components: - - pos: 25.5,-71.5 - parent: 1 - type: Transform -- uid: 13160 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-87.5 - parent: 1 - type: Transform -- uid: 13161 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-86.5 - parent: 1 - type: Transform -- uid: 13162 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-88.5 - parent: 1 - type: Transform -- uid: 13163 - type: AirlockEngineeringLocked - components: - - name: substation - type: MetaData - - pos: 42.5,-59.5 - parent: 1 - type: Transform -- uid: 13164 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 15.5,-78.5 - parent: 1 - type: Transform -- uid: 13165 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 12.5,-88.5 - parent: 1 - type: Transform -- uid: 13166 - type: CableApcExtension - components: - - pos: 20.5,-83.5 - parent: 1 - type: Transform -- uid: 13167 - type: CableApcExtension - components: - - pos: 18.5,-83.5 - parent: 1 - type: Transform -- uid: 13168 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-78.5 - parent: 1 - type: Transform -- uid: 13169 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 18.5,-87.5 - parent: 1 - type: Transform -- uid: 13170 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 19.5,-87.5 - parent: 1 - type: Transform -- uid: 13171 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-87.5 - parent: 1 - type: Transform -- uid: 13172 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 19.5,-86.5 - parent: 1 - type: Transform -- uid: 13173 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 20.5,-86.5 - parent: 1 - type: Transform -- uid: 13174 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 20.5,-85.5 - parent: 1 - type: Transform -- uid: 13175 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 22.5,-84.5 - parent: 1 - type: Transform -- uid: 13176 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13177 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-84.5 - parent: 1 - type: Transform -- uid: 13178 - type: CableApcExtension - components: - - pos: 24.5,-72.5 - parent: 1 - type: Transform -- uid: 13179 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-75.5 - parent: 1 - type: Transform -- uid: 13180 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 20.5,-81.5 - parent: 1 - type: Transform -- uid: 13181 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 19.5,-80.5 - parent: 1 - type: Transform -- uid: 13182 - type: CableApcExtension - components: - - pos: 13.5,-86.5 - parent: 1 - type: Transform -- uid: 13183 - type: CableApcExtension - components: - - pos: 21.5,-83.5 - parent: 1 - type: Transform -- uid: 13184 - type: CableApcExtension - components: - - pos: 14.5,-81.5 - parent: 1 - type: Transform -- uid: 13185 - type: CableApcExtension - components: - - pos: 12.5,-81.5 - parent: 1 - type: Transform -- uid: 13186 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 18.5,-78.5 - parent: 1 - type: Transform -- uid: 13187 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-81.5 - parent: 1 - type: Transform -- uid: 13188 - type: CableApcExtension - components: - - pos: 17.5,-81.5 - parent: 1 - type: Transform -- uid: 13189 - type: CableApcExtension - components: - - pos: 14.5,-86.5 - parent: 1 - type: Transform -- uid: 13190 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 50.5,-81.5 - parent: 1 - type: Transform -- uid: 13191 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 50.5,-83.5 - parent: 1 - type: Transform -- uid: 13192 - type: Grille - components: - - pos: 32.5,-77.5 - parent: 1 - type: Transform -- uid: 13193 - type: Grille - components: - - pos: 32.5,-78.5 - parent: 1 - type: Transform -- uid: 13194 - type: Grille - components: - - pos: 32.5,-79.5 - parent: 1 - type: Transform -- uid: 13195 - type: AirlockGlass - components: - - pos: 30.5,-76.5 - parent: 1 - type: Transform -- uid: 13196 - type: SignEscapePods - components: - - pos: 29.5,-93.5 - parent: 1 - type: Transform -- uid: 13197 - type: AirlockGlass - components: - - pos: 31.5,-76.5 - parent: 1 - type: Transform -- uid: 13198 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-93.5 - parent: 1 - type: Transform -- uid: 13199 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-95.5 - parent: 1 - type: Transform -- uid: 13200 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-95.5 - parent: 1 - type: Transform -- uid: 13201 - type: AirlockGlass - components: - - pos: 29.5,-76.5 - parent: 1 - type: Transform -- uid: 13202 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-94.5 - parent: 1 - type: Transform -- uid: 13203 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-80.5 - parent: 1 - type: Transform -- uid: 13204 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 25.5,-80.5 - parent: 1 - type: Transform -- uid: 13205 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 51.5,-73.5 - parent: 1 - type: Transform -- uid: 13206 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-88.5 - parent: 1 - type: Transform -- uid: 13207 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 10.5,-83.5 - parent: 1 - type: Transform -- uid: 13208 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 19.5,-79.5 - parent: 1 - type: Transform -- uid: 13209 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 18.5,-79.5 - parent: 1 - type: Transform -- uid: 13210 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-79.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13211 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-88.5 - parent: 1 - type: Transform -- uid: 13212 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-74.5 - parent: 1 - type: Transform -- uid: 13213 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-78.5 - parent: 1 - type: Transform -- uid: 13214 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-84.5 - parent: 1 - type: Transform -- uid: 13215 - type: CableApcExtension - components: - - pos: 10.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13216 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 18.5,-88.5 - parent: 1 - type: Transform -- uid: 13217 - type: AirlockExternalGlass - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-89.5 - parent: 1 - type: Transform -- uid: 13218 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13219 - type: ReinforcedWindow - components: - - pos: 38.5,-74.5 - parent: 1 - type: Transform -- uid: 13220 - type: ReinforcedWindow - components: - - pos: 39.5,-74.5 - parent: 1 - type: Transform -- uid: 13221 - type: ReinforcedWindow - components: - - pos: 40.5,-74.5 - parent: 1 - type: Transform -- uid: 13222 - type: WallReinforced - components: - - pos: 12.5,-71.5 - parent: 1 - type: Transform -- uid: 13223 - type: PoweredSmallLight - components: - - pos: 12.5,-72.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13224 - type: WallReinforced - components: - - pos: 9.5,-72.5 - parent: 1 - type: Transform -- uid: 13225 - type: WallReinforced - components: - - pos: 9.5,-73.5 - parent: 1 - type: Transform -- uid: 13226 - type: WallReinforced - components: - - pos: 9.5,-74.5 - parent: 1 - type: Transform -- uid: 13227 - type: WallReinforced - components: - - pos: 10.5,-74.5 - parent: 1 - type: Transform -- uid: 13228 - type: WallReinforced - components: - - pos: 11.5,-74.5 - parent: 1 - type: Transform -- uid: 13229 - type: WallReinforced - components: - - pos: 12.5,-74.5 - parent: 1 - type: Transform -- uid: 13230 - type: WallReinforced - components: - - pos: 13.5,-74.5 - parent: 1 - type: Transform -- uid: 13231 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-85.5 - parent: 1 - type: Transform -- uid: 13232 - type: ReinforcedWindow - components: - - pos: 17.5,-74.5 - parent: 1 - type: Transform -- uid: 13233 - type: WallReinforced - components: - - pos: 16.5,-74.5 - parent: 1 - type: Transform -- uid: 13234 - type: ReinforcedWindow - components: - - pos: 18.5,-74.5 - parent: 1 - type: Transform -- uid: 13235 - type: ReinforcedWindow - components: - - pos: 14.5,-74.5 - parent: 1 - type: Transform -- uid: 13236 - type: WallReinforced - components: - - pos: 19.5,-74.5 - parent: 1 - type: Transform -- uid: 13237 - type: WallReinforced - components: - - pos: 21.5,-74.5 - parent: 1 - type: Transform -- uid: 13238 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-84.5 - parent: 1 - type: Transform -- uid: 13239 - type: CableApcExtension - components: - - pos: 32.5,-72.5 - parent: 1 - type: Transform -- uid: 13240 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-86.5 - parent: 1 - type: Transform -- uid: 13241 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-87.5 - parent: 1 - type: Transform -- uid: 13242 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-88.5 - parent: 1 - type: Transform -- uid: 13243 - type: CableApcExtension - components: - - pos: 30.5,-75.5 - parent: 1 - type: Transform -- uid: 13244 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-85.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13245 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-89.5 - parent: 1 - type: Transform -- uid: 13246 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-90.5 - parent: 1 - type: Transform -- uid: 13247 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 48.5,-79.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13248 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 48.5,-75.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13249 - type: CableApcExtension - components: - - pos: 30.5,-73.5 - parent: 1 - type: Transform -- uid: 13250 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13251 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-86.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13252 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13253 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-84.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13254 - type: GasPipeTJunction - components: - - pos: 48.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13255 - type: CableApcExtension - components: - - pos: 30.5,-76.5 - parent: 1 - type: Transform -- uid: 13256 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 26.5,-68.5 - parent: 1 - type: Transform -- uid: 13257 - type: CableApcExtension - components: - - pos: 30.5,-74.5 - parent: 1 - type: Transform -- uid: 13258 - type: CableApcExtension - components: - - pos: 33.5,-72.5 - parent: 1 - type: Transform -- uid: 13259 - type: ReinforcedWindow - components: - - pos: 17.5,-71.5 - parent: 1 - type: Transform -- uid: 13260 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13261 - type: WallReinforced - components: - - pos: 21.5,-72.5 - parent: 1 - type: Transform -- uid: 13262 - type: WallReinforced - components: - - pos: 20.5,-72.5 - parent: 1 - type: Transform -- uid: 13263 - type: WallReinforced - components: - - pos: 19.5,-72.5 - parent: 1 - type: Transform -- uid: 13264 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-92.5 - parent: 1 - type: Transform -- uid: 13265 - type: AirlockExternalGlass - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-93.5 - parent: 1 - type: Transform -- uid: 13266 - type: Grille - components: - - pos: 17.5,-71.5 - parent: 1 - type: Transform -- uid: 13267 - type: WallReinforced - components: - - pos: 31.5,-70.5 - parent: 1 - type: Transform -- uid: 13268 - type: Grille - components: - - pos: 18.5,-71.5 - parent: 1 - type: Transform -- uid: 13269 - type: WallSolid - components: - - pos: 9.5,-69.5 - parent: 1 - type: Transform -- uid: 13270 - type: AirlockMaintLocked - components: - - pos: 9.5,-70.5 - parent: 1 - type: Transform -- uid: 13271 - type: GasPipeStraight - components: - - pos: 38.5,-70.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13272 - type: GasPipeStraight - components: - - pos: 38.5,-69.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13273 - type: GasPipeStraight - components: - - pos: 40.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13274 - type: GasPipeStraight - components: - - pos: 40.5,-70.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13275 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-71.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13276 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13277 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-71.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13278 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13279 - type: DisposalPipe - components: - - pos: 39.5,-69.5 - parent: 1 - type: Transform -- uid: 13280 - type: DisposalPipe - components: - - pos: 39.5,-70.5 - parent: 1 - type: Transform -- uid: 13281 - type: DisposalPipe - components: - - pos: 39.5,-71.5 - parent: 1 - type: Transform -- uid: 13282 - type: DisposalPipe - components: - - pos: 39.5,-72.5 - parent: 1 - type: Transform -- uid: 13283 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13284 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13285 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13286 - type: DisposalUnit - components: - - pos: 24.5,-74.5 - parent: 1 - type: Transform -- uid: 13287 - type: WallReinforced - components: - - pos: 42.5,-75.5 - parent: 1 - type: Transform -- uid: 13288 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-73.5 - parent: 1 - type: Transform -- uid: 13289 - type: CableApcExtension - components: - - pos: 48.5,-73.5 - parent: 1 - type: Transform -- uid: 13290 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 24.5,-74.5 - parent: 1 - type: Transform -- uid: 13291 - type: WallReinforced - components: - - pos: 44.5,-75.5 - parent: 1 - type: Transform -- uid: 13292 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-82.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 13293 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-81.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13294 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-80.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13295 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-77.5 - parent: 1 - type: Transform -- uid: 13296 - type: CableApcExtension - components: - - pos: 42.5,-75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13297 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-86.5 - parent: 1 - type: Transform -- uid: 13298 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 14.5,-89.5 - parent: 1 - type: Transform -- uid: 13299 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-78.5 - parent: 1 - type: Transform -- uid: 13300 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 15.5,-89.5 - parent: 1 - type: Transform -- uid: 13301 - type: DisposalPipe - components: - - pos: 30.5,-83.5 - parent: 1 - type: Transform -- uid: 13302 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-85.5 - parent: 1 - type: Transform -- uid: 13303 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-87.5 - parent: 1 - type: Transform -- uid: 13304 - type: CableApcExtension - components: - - pos: 36.5,-75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13305 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-83.5 - parent: 1 - type: Transform -- uid: 13306 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-81.5 - parent: 1 - type: Transform -- uid: 13307 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-89.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 13308 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-86.5 - parent: 1 - type: Transform -- uid: 13309 - type: DisposalPipe - components: - - pos: 30.5,-84.5 - parent: 1 - type: Transform -- uid: 13310 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-86.5 - parent: 1 - type: Transform -- uid: 13311 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-87.5 - parent: 1 - type: Transform -- uid: 13312 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-75.5 - parent: 1 - type: Transform -- uid: 13313 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-83.5 - parent: 1 - type: Transform -- uid: 13314 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 26.5,-89.5 - parent: 1 - type: Transform -- uid: 13315 - type: CableApcExtension - components: - - pos: 30.5,-78.5 - parent: 1 - type: Transform -- uid: 13316 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 24.5,-89.5 - parent: 1 - type: Transform -- uid: 13317 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 25.5,-89.5 - parent: 1 - type: Transform -- uid: 13318 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-87.5 - parent: 1 - type: Transform -- uid: 13319 - type: Chair - components: - - pos: 44.5,-70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13320 - type: Chair - components: - - pos: 43.5,-70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13321 - type: Chair - components: - - pos: 42.5,-70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13322 - type: Chair - components: - - pos: 41.5,-70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13323 - type: Chair - components: - - pos: 37.5,-70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13324 - type: Chair - components: - - pos: 36.5,-70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13325 - type: Chair - components: - - pos: 35.5,-70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13326 - type: Chair - components: - - pos: 34.5,-70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13327 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13328 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-84.5 - parent: 1 - type: Transform -- uid: 13329 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 27.5,-79.5 - parent: 1 - type: Transform -- uid: 13330 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-94.5 - parent: 1 - type: Transform -- uid: 13331 - type: ReinforcedWindow - components: - - pos: 15.5,-71.5 - parent: 1 - type: Transform -- uid: 13332 - type: Grille - components: - - pos: 15.5,-71.5 - parent: 1 - type: Transform -- uid: 13333 - type: WallReinforced - components: - - pos: 16.5,-71.5 - parent: 1 - type: Transform -- uid: 13334 - type: ReinforcedWindow - components: - - pos: 15.5,-74.5 - parent: 1 - type: Transform -- uid: 13335 - type: WallReinforced - components: - - pos: 29.5,-69.5 - parent: 1 - type: Transform -- uid: 13336 - type: WallReinforced - components: - - pos: 29.5,-70.5 - parent: 1 - type: Transform -- uid: 13337 - type: WallReinforced - components: - - pos: 28.5,-68.5 - parent: 1 - type: Transform -- uid: 13338 - type: WallReinforced - components: - - pos: 30.5,-70.5 - parent: 1 - type: Transform -- uid: 13339 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-79.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13340 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 26.5,-67.5 - parent: 1 - type: Transform -- uid: 13341 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13342 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 28.5,-90.5 - parent: 1 - type: Transform -- uid: 13343 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 24.5,-80.5 - parent: 1 - type: Transform -- uid: 13344 - type: WallReinforced - components: - - pos: 20.5,-74.5 - parent: 1 - type: Transform -- uid: 13345 - type: Grille - components: - - pos: 18.5,-74.5 - parent: 1 - type: Transform -- uid: 13346 - type: Grille - components: - - pos: 17.5,-74.5 - parent: 1 - type: Transform -- uid: 13347 - type: Grille - components: - - pos: 14.5,-71.5 - parent: 1 - type: Transform -- uid: 13348 - type: WallReinforced - components: - - pos: 19.5,-71.5 - parent: 1 - type: Transform -- uid: 13349 - type: ReinforcedWindow - components: - - pos: 14.5,-71.5 - parent: 1 - type: Transform -- uid: 13350 - type: ReinforcedWindow - components: - - pos: 18.5,-71.5 - parent: 1 - type: Transform -- uid: 13351 - type: Grille - components: - - pos: 14.5,-74.5 - parent: 1 - type: Transform -- uid: 13352 - type: Grille - components: - - pos: 15.5,-74.5 - parent: 1 - type: Transform -- uid: 13353 - type: CableApcExtension - components: - - pos: 46.5,-82.5 - parent: 1 - type: Transform -- uid: 13354 - type: WallReinforced - components: - - pos: 22.5,-70.5 - parent: 1 - type: Transform -- uid: 13355 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-86.5 - parent: 1 - type: Transform -- uid: 13356 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-87.5 - parent: 1 - type: Transform -- uid: 13357 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-93.5 - parent: 1 - type: Transform -- uid: 13358 - type: WallReinforced - components: - - pos: 23.5,-82.5 - parent: 1 - type: Transform -- uid: 13359 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 22.5,-82.5 - parent: 1 - type: Transform -- uid: 13360 - type: WallReinforced - components: - - pos: 23.5,-84.5 - parent: 1 - type: Transform -- uid: 13361 - type: WallReinforced - components: - - pos: 21.5,-70.5 - parent: 1 - type: Transform -- uid: 13362 - type: CableApcExtension - components: - - pos: 48.5,-91.5 - parent: 1 - type: Transform -- uid: 13363 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-87.5 - parent: 1 - type: Transform -- uid: 13364 - type: WallReinforced - components: - - pos: 22.5,-74.5 - parent: 1 - type: Transform -- uid: 13365 - type: WallReinforced - components: - - pos: 23.5,-74.5 - parent: 1 - type: Transform -- uid: 13366 - type: WallReinforced - components: - - pos: 23.5,-75.5 - parent: 1 - type: Transform -- uid: 13367 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-84.5 - parent: 1 - type: Transform -- uid: 13368 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-78.5 - parent: 1 - type: Transform -- uid: 13369 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-86.5 - parent: 1 - type: Transform -- uid: 13370 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 25.5,-80.5 - parent: 1 - type: Transform -- uid: 13371 - type: CableApcExtension - components: - - pos: 21.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13372 - type: CableApcExtension - components: - - pos: 20.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13373 - type: CableApcExtension - components: - - pos: 19.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13374 - type: CableApcExtension - components: - - pos: 18.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13375 - type: CableApcExtension - components: - - pos: 17.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13376 - type: CableApcExtension - components: - - pos: 16.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13377 - type: CableApcExtension - components: - - pos: 15.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13378 - type: CableApcExtension - components: - - pos: 14.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13379 - type: CableApcExtension - components: - - pos: 13.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13380 - type: CableApcExtension - components: - - pos: 12.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13381 - type: CableApcExtension - components: - - pos: 11.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13382 - type: CableApcExtension - components: - - pos: 11.5,-72.5 - parent: 1 - type: Transform -- uid: 13383 - type: CableApcExtension - components: - - pos: 11.5,-71.5 - parent: 1 - type: Transform -- uid: 13384 - type: CableApcExtension - components: - - pos: 11.5,-70.5 - parent: 1 - type: Transform -- uid: 13385 - type: CableApcExtension - components: - - pos: 19.5,-83.5 - parent: 1 - type: Transform -- uid: 13386 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-73.5 - parent: 1 - type: Transform -- uid: 13387 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-79.5 - parent: 1 - type: Transform -- uid: 13388 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 16.5,-89.5 - parent: 1 - type: Transform -- uid: 13389 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 17.5,-89.5 - parent: 1 - type: Transform -- uid: 13390 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 18.5,-89.5 - parent: 1 - type: Transform -- uid: 13391 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 19.5,-89.5 - parent: 1 - type: Transform -- uid: 13392 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 20.5,-89.5 - parent: 1 - type: Transform -- uid: 13393 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 21.5,-89.5 - parent: 1 - type: Transform -- uid: 13394 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 22.5,-89.5 - parent: 1 - type: Transform -- uid: 13395 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 27.5,-89.5 - parent: 1 - type: Transform -- uid: 13396 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-85.5 - parent: 1 - type: Transform -- uid: 13397 - type: DisposalPipe - components: - - pos: 30.5,-85.5 - parent: 1 - type: Transform -- uid: 13398 - type: CableApcExtension - components: - - pos: 48.5,-89.5 - parent: 1 - type: Transform -- uid: 13399 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-83.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13400 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 57.5,-74.5 - parent: 1 - type: Transform -- uid: 13401 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 27.5,-93.5 - parent: 1 - type: Transform -- uid: 13402 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 27.5,-94.5 - parent: 1 - type: Transform -- uid: 13403 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 27.5,-91.5 - parent: 1 - type: Transform -- uid: 13404 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 27.5,-92.5 - parent: 1 - type: Transform -- uid: 13405 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-91.5 - parent: 1 - type: Transform -- uid: 13406 - type: CableApcExtension - components: - - pos: 23.5,-83.5 - parent: 1 - type: Transform -- uid: 13407 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13408 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-79.5 - parent: 1 - type: Transform -- uid: 13409 - type: PoweredSmallLight - components: - - pos: 45.5,-89.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13410 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-75.5 - parent: 1 - type: Transform -- uid: 13411 - type: PoweredSmallLight - components: - - pos: 45.5,-82.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13412 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-91.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13413 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-88.5 - parent: 1 - type: Transform -- uid: 13414 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-94.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13415 - type: CableApcExtension - components: - - pos: 9.5,-70.5 - parent: 1 - type: Transform -- uid: 13416 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-78.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13417 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-86.5 - parent: 1 - type: Transform -- uid: 13418 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13419 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 11.5,-80.5 - parent: 1 - type: Transform -- uid: 13420 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-88.5 - parent: 1 - type: Transform -- uid: 13421 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-88.5 - parent: 1 - type: Transform -- uid: 13422 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 11.5,-86.5 - parent: 1 - type: Transform -- uid: 13423 - type: AirlockGlass - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-72.5 - parent: 1 - type: Transform -- uid: 13424 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-77.5 - parent: 1 - type: Transform -- uid: 13425 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-84.5 - parent: 1 - type: Transform -- uid: 13426 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 12.5,-78.5 - parent: 1 - type: Transform -- uid: 13427 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 10.5,-85.5 - parent: 1 - type: Transform -- uid: 13428 - type: CableApcExtension - components: - - pos: 16.5,-86.5 - parent: 1 - type: Transform -- uid: 13429 - type: CableApcExtension - components: - - pos: 15.5,-86.5 - parent: 1 - type: Transform -- uid: 13430 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 21.5,-84.5 - parent: 1 - type: Transform -- uid: 13431 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-78.5 - parent: 1 - type: Transform -- uid: 13432 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 15.5,-88.5 - parent: 1 - type: Transform -- uid: 13433 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-78.5 - parent: 1 - type: Transform -- uid: 13434 - type: AirlockGlass - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-71.5 - parent: 1 - type: Transform -- uid: 13435 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 20.5,-80.5 - parent: 1 - type: Transform -- uid: 13436 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-76.5 - parent: 1 - type: Transform -- uid: 13437 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 25.5,-67.5 - parent: 1 - type: Transform -- uid: 13438 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-81.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13439 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-69.5 - parent: 1 - type: Transform -- uid: 13440 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-69.5 - parent: 1 - type: Transform -- uid: 13441 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-69.5 - parent: 1 - type: Transform -- uid: 13442 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-90.5 - parent: 1 - type: Transform -- uid: 13443 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-88.5 - parent: 1 - type: Transform -- uid: 13444 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-89.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 13445 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-69.5 - parent: 1 - type: Transform -- uid: 13446 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-69.5 - parent: 1 - type: Transform -- uid: 13447 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-69.5 - parent: 1 - type: Transform -- uid: 13448 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-66.5 - parent: 1 - type: Transform -- uid: 13449 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-66.5 - parent: 1 - type: Transform -- uid: 13450 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-74.5 - parent: 1 - type: Transform -- uid: 13451 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-74.5 - parent: 1 - type: Transform -- uid: 13452 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-74.5 - parent: 1 - type: Transform -- uid: 13453 - type: GasPipeTJunction - components: - - pos: 47.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13454 - type: PottedPlantRandom - components: - - pos: 24.5,-81.5 - parent: 1 - type: Transform -- uid: 13455 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-90.5 - parent: 1 - type: Transform -- uid: 13456 - type: Poweredlight - components: - - pos: 41.5,-70.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13457 - type: Poweredlight - components: - - pos: 37.5,-70.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13458 - type: AirlockMaintLocked - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-64.5 - parent: 1 - type: Transform -- uid: 13459 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-61.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13460 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-81.5 - parent: 1 - type: Transform -- uid: 13461 - type: PoweredSmallLight - components: - - pos: 20.5,-73.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13462 - type: WallReinforced - components: - - pos: 21.5,-71.5 - parent: 1 - type: Transform -- uid: 13463 - type: ClosetMaintenanceFilledRandom - components: - - pos: 16.5,-72.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13464 - type: SignDirectionalEng - components: - - pos: -19.479143,47.185772 - parent: 1 - type: Transform -- uid: 13465 - type: AirlockGlass - components: - - pos: 40.5,-69.5 - parent: 1 - type: Transform -- uid: 13466 - type: AirlockGlass - components: - - pos: 39.5,-69.5 - parent: 1 - type: Transform -- uid: 13467 - type: AirlockGlass - components: - - pos: 38.5,-69.5 - parent: 1 - type: Transform -- uid: 13468 - type: PosterContrabandGreyTide - components: - - pos: 41.5,-57.5 - parent: 1 - type: Transform -- uid: 13469 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-63.5 - parent: 1 - type: Transform -- uid: 13470 - type: TableReinforced - components: - - pos: 57.5,-47.5 - parent: 1 - type: Transform -- uid: 13471 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-64.5 - parent: 1 - type: Transform -- uid: 13472 - type: ComputerResearchAndDevelopment - components: - - pos: 50.5,-52.5 - parent: 1 - type: Transform -- uid: 13473 - type: CableApcExtension - components: - - pos: 12.5,-86.5 - parent: 1 - type: Transform -- uid: 13474 - type: CableApcExtension - components: - - pos: 17.5,-86.5 - parent: 1 - type: Transform -- uid: 13475 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-70.5 - parent: 1 - type: Transform -- uid: 13476 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-85.5 - parent: 1 - type: Transform -- uid: 13477 - type: AirlockMaintLocked - components: - - pos: 21.5,-73.5 - parent: 1 - type: Transform -- uid: 13478 - type: Catwalk - components: - - pos: 20.5,-73.5 - parent: 1 - type: Transform -- uid: 13479 - type: Catwalk - components: - - pos: 19.5,-73.5 - parent: 1 - type: Transform -- uid: 13480 - type: Catwalk - components: - - pos: 18.5,-73.5 - parent: 1 - type: Transform -- uid: 13481 - type: Catwalk - components: - - pos: 17.5,-73.5 - parent: 1 - type: Transform -- uid: 13482 - type: Catwalk - components: - - pos: 16.5,-73.5 - parent: 1 - type: Transform -- uid: 13483 - type: Catwalk - components: - - pos: 15.5,-73.5 - parent: 1 - type: Transform -- uid: 13484 - type: Catwalk - components: - - pos: 14.5,-73.5 - parent: 1 - type: Transform -- uid: 13485 - type: Catwalk - components: - - pos: 13.5,-73.5 - parent: 1 - type: Transform -- uid: 13486 - type: Catwalk - components: - - pos: 12.5,-73.5 - parent: 1 - type: Transform -- uid: 13487 - type: Catwalk - components: - - pos: 11.5,-73.5 - parent: 1 - type: Transform -- uid: 13488 - type: Catwalk - components: - - pos: 43.5,-59.5 - parent: 1 - type: Transform -- uid: 13489 - type: SignElectricalMed - components: - - pos: 42.5,-60.5 - parent: 1 - type: Transform -- uid: 13490 - type: SignElectricalMed - components: - - pos: 8.5,-44.5 - parent: 1 - type: Transform -- uid: 13491 - type: SignElectricalMed - components: - - pos: 37.5,-44.5 - parent: 1 - type: Transform -- uid: 13492 - type: SignElectricalMed - components: - - pos: 37.5,-29.5 - parent: 1 - type: Transform -- uid: 13493 - type: SignElectricalMed - components: - - pos: 46.5,-6.5 - parent: 1 - type: Transform -- uid: 13494 - type: SignElectricalMed - components: - - pos: 47.5,-0.5 - parent: 1 - type: Transform -- uid: 13495 - type: SignElectricalMed - components: - - pos: 33.5,23.5 - parent: 1 - type: Transform -- uid: 13496 - type: FirelockGlass - components: - - pos: 39.5,-69.5 - parent: 1 - type: Transform -- uid: 13497 - type: FirelockGlass - components: - - pos: 40.5,-69.5 - parent: 1 - type: Transform -- uid: 13498 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 35.5,-58.5 - parent: 1 - type: Transform -- uid: 13499 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 35.5,-59.5 - parent: 1 - type: Transform -- uid: 13500 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 35.5,-60.5 - parent: 1 - type: Transform -- uid: 13501 - type: AirlockGlass - components: - - name: youtool - type: MetaData - - rot: 1.5707963267948966 rad - pos: 39.5,-57.5 - parent: 1 - type: Transform -- uid: 13502 - type: FirelockGlass - components: - - pos: -0.5,-51.5 - parent: 1 - type: Transform -- uid: 13503 - type: FirelockGlass - components: - - pos: -1.5,-51.5 - parent: 1 - type: Transform -- uid: 13504 - type: FirelockGlass - components: - - pos: 0.5,-51.5 - parent: 1 - type: Transform -- uid: 13505 - type: AirlockGlass - components: - - pos: -7.5,-50.5 - parent: 1 - type: Transform -- uid: 13506 - type: AirlockGlass - components: - - pos: -8.5,-50.5 - parent: 1 - type: Transform -- uid: 13507 - type: AirlockGlass - components: - - pos: -9.5,-50.5 - parent: 1 - type: Transform -- uid: 13508 - type: AirlockMedicalGlassLocked - components: - - name: cloning - type: MetaData - - rot: 3.141592653589793 rad - pos: -6.5,-62.5 - parent: 1 - type: Transform -- uid: 13509 - type: AirlockMedicalGlassLocked - components: - - name: surgery - type: MetaData - - rot: 3.141592653589793 rad - pos: -2.5,-62.5 - parent: 1 - type: Transform -- uid: 13510 - type: EmergencyLight - components: - - pos: -10.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 13511 - type: AirlockMedicalGlassLocked - components: - - pos: -14.5,-58.5 - parent: 1 - type: Transform -- uid: 13512 - type: AirlockChiefMedicalOfficerLocked - components: - - name: cmo office - type: MetaData - - rot: -1.5707963267948966 rad - pos: -16.5,-56.5 - parent: 1 - type: Transform -- uid: 13513 - type: AirlockMedicalGlassLocked - components: - - pos: -14.5,-55.5 - parent: 1 - type: Transform -- uid: 13514 - type: FirelockGlass - components: - - pos: -8.5,-58.5 - parent: 1 - type: Transform -- uid: 13515 - type: AirlockMedicalGlassLocked - components: - - rot: 3.141592653589793 rad - pos: -11.5,-58.5 - parent: 1 - type: Transform -- uid: 13516 - type: AirlockMedicalGlassLocked - components: - - rot: 3.141592653589793 rad - pos: -5.5,-58.5 - parent: 1 - type: Transform -- uid: 13517 - type: AirlockMedicalGlassLocked - components: - - rot: 3.141592653589793 rad - pos: 0.5,-58.5 - parent: 1 - type: Transform -- uid: 13518 - type: AirlockMedicalGlassLocked - components: - - pos: -15.5,-58.5 - parent: 1 - type: Transform -- uid: 13519 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13520 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13521 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13522 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13523 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13524 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,-57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13525 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13526 - type: GasVentScrubber - components: - - pos: 3.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13527 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13528 - type: CableApcExtension - components: - - pos: -13.5,-26.5 - parent: 1 - type: Transform -- uid: 13529 - type: CableApcExtension - components: - - pos: -14.5,-26.5 - parent: 1 - type: Transform -- uid: 13530 - type: CableApcExtension - components: - - pos: -15.5,-26.5 - parent: 1 - type: Transform -- uid: 13531 - type: CableApcExtension - components: - - pos: -16.5,-26.5 - parent: 1 - type: Transform -- uid: 13532 - type: CableApcExtension - components: - - pos: -17.5,-26.5 - parent: 1 - type: Transform -- uid: 13533 - type: CableApcExtension - components: - - pos: -18.5,-26.5 - parent: 1 - type: Transform -- uid: 13534 - type: CableApcExtension - components: - - pos: -19.5,-26.5 - parent: 1 - type: Transform -- uid: 13535 - type: CableApcExtension - components: - - pos: -19.5,-27.5 - parent: 1 - type: Transform -- uid: 13536 - type: CableApcExtension - components: - - pos: -19.5,-28.5 - parent: 1 - type: Transform -- uid: 13537 - type: CableApcExtension - components: - - pos: -19.5,-29.5 - parent: 1 - type: Transform -- uid: 13538 - type: CableApcExtension - components: - - pos: -19.5,-30.5 - parent: 1 - type: Transform -- uid: 13539 - type: CableApcExtension - components: - - pos: -19.5,-31.5 - parent: 1 - type: Transform -- uid: 13540 - type: CableApcExtension - components: - - pos: -19.5,-32.5 - parent: 1 - type: Transform -- uid: 13541 - type: CableApcExtension - components: - - pos: -19.5,-33.5 - parent: 1 - type: Transform -- uid: 13542 - type: CableApcExtension - components: - - pos: -19.5,-34.5 - parent: 1 - type: Transform -- uid: 13543 - type: CableApcExtension - components: - - pos: -19.5,-35.5 - parent: 1 - type: Transform -- uid: 13544 - type: CableApcExtension - components: - - pos: -19.5,-36.5 - parent: 1 - type: Transform -- uid: 13545 - type: CableApcExtension - components: - - pos: -19.5,-37.5 - parent: 1 - type: Transform -- uid: 13546 - type: CableApcExtension - components: - - pos: -20.5,-26.5 - parent: 1 - type: Transform -- uid: 13547 - type: CableApcExtension - components: - - pos: -18.5,-29.5 - parent: 1 - type: Transform -- uid: 13548 - type: CableApcExtension - components: - - pos: -13.5,-42.5 - parent: 1 - type: Transform -- uid: 13549 - type: CableApcExtension - components: - - pos: -14.5,-42.5 - parent: 1 - type: Transform -- uid: 13550 - type: CableApcExtension - components: - - pos: -15.5,-42.5 - parent: 1 - type: Transform -- uid: 13551 - type: CableApcExtension - components: - - pos: -16.5,-42.5 - parent: 1 - type: Transform -- uid: 13552 - type: CableApcExtension - components: - - pos: -17.5,-42.5 - parent: 1 - type: Transform -- uid: 13553 - type: CableApcExtension - components: - - pos: -18.5,-42.5 - parent: 1 - type: Transform -- uid: 13554 - type: CableApcExtension - components: - - pos: -19.5,-42.5 - parent: 1 - type: Transform -- uid: 13555 - type: CableApcExtension - components: - - pos: -19.5,-43.5 - parent: 1 - type: Transform -- uid: 13556 - type: CableApcExtension - components: - - pos: -19.5,-44.5 - parent: 1 - type: Transform -- uid: 13557 - type: CableApcExtension - components: - - pos: -19.5,-45.5 - parent: 1 - type: Transform -- uid: 13558 - type: CableApcExtension - components: - - pos: -19.5,-46.5 - parent: 1 - type: Transform -- uid: 13559 - type: CableApcExtension - components: - - pos: -19.5,-47.5 - parent: 1 - type: Transform -- uid: 13560 - type: CableApcExtension - components: - - pos: -20.5,-46.5 - parent: 1 - type: Transform -- uid: 13561 - type: CableApcExtension - components: - - pos: -19.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13562 - type: CableApcExtension - components: - - pos: -20.5,-42.5 - parent: 1 - type: Transform -- uid: 13563 - type: CableApcExtension - components: - - pos: -19.5,-41.5 - parent: 1 - type: Transform -- uid: 13564 - type: CrateEngineeringElectricalSupplies - components: - - pos: 22.5,-49.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13565 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-44.5 - parent: 1 - type: Transform -- uid: 13566 - type: CableApcExtension - components: - - pos: 30.5,-89.5 - parent: 1 - type: Transform -- uid: 13567 - type: CableApcExtension - components: - - pos: 48.5,-72.5 - parent: 1 - type: Transform -- uid: 13568 - type: CableApcExtension - components: - - pos: 30.5,-90.5 - parent: 1 - type: Transform -- uid: 13569 - type: ClosetEmergencyFilledRandom - components: - - pos: 11.5,-69.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13570 - type: WallReinforced - components: - - pos: 23.5,-68.5 - parent: 1 - type: Transform -- uid: 13571 - type: WallReinforced - components: - - pos: -34.5,-14.5 - parent: 1 - type: Transform -- uid: 13572 - type: WallReinforced - components: - - pos: -35.5,-14.5 - parent: 1 - type: Transform -- uid: 13573 - type: CableApcExtension - components: - - pos: -37.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13574 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-14.5 - parent: 1 - type: Transform -- uid: 13575 - type: WallReinforced - components: - - pos: -38.5,-14.5 - parent: 1 - type: Transform -- uid: 13576 - type: WallReinforced - components: - - pos: -39.5,-14.5 - parent: 1 - type: Transform -- uid: 13577 - type: WallReinforced - components: - - pos: -40.5,-14.5 - parent: 1 - type: Transform -- uid: 13578 - type: WallSolid - components: - - pos: -40.5,-13.5 - parent: 1 - type: Transform -- uid: 13579 - type: ReinforcedWindow - components: - - pos: -33.5,-9.5 - parent: 1 - type: Transform -- uid: 13580 - type: ReinforcedWindow - components: - - pos: -33.5,-12.5 - parent: 1 - type: Transform -- uid: 13581 - type: WallSolid - components: - - pos: -40.5,-8.5 - parent: 1 - type: Transform -- uid: 13582 - type: WallSolid - components: - - pos: -40.5,-7.5 - parent: 1 - type: Transform -- uid: 13583 - type: WallSolid - components: - - pos: -33.5,-8.5 - parent: 1 - type: Transform -- uid: 13584 - type: Catwalk - components: - - pos: -46.5,-48.5 - parent: 1 - type: Transform -- uid: 13585 - type: IntercomEngineering - components: - - pos: -35.5,-4.5 - parent: 1 - type: Transform -- uid: 13586 - type: Catwalk - components: - - pos: -46.5,-45.5 - parent: 1 - type: Transform -- uid: 13587 - type: Catwalk - components: - - pos: -46.5,-46.5 - parent: 1 - type: Transform -- uid: 13588 - type: Catwalk - components: - - pos: -46.5,-52.5 - parent: 1 - type: Transform -- uid: 13589 - type: WallSolid - components: - - pos: -30.5,-8.5 - parent: 1 - type: Transform -- uid: 13590 - type: ToiletDirtyWater - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13591 - type: WallSolid - components: - - pos: -33.5,-20.5 - parent: 1 - type: Transform -- uid: 13592 - type: FirelockGlass - components: - - pos: -32.5,-19.5 - parent: 1 - type: Transform -- uid: 13593 - type: FirelockGlass - components: - - pos: -31.5,-19.5 - parent: 1 - type: Transform -- uid: 13594 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13595 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13596 - type: MaintenanceFluffSpawner - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-16.5 - parent: 1 - type: Transform -- uid: 13597 - type: MaintenanceFluffSpawner - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-10.5 - parent: 1 - type: Transform -- uid: 13598 - type: Rack - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform -- uid: 13599 - type: GasPipeStraight - components: - - pos: -31.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13600 - type: MachineFrameDestroyed - components: - - pos: -16.5,-8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13601 - type: MaintenanceFluffSpawner - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-8.5 - parent: 1 - type: Transform -- uid: 13602 - type: Screwdriver - components: - - pos: -9.599733,-10.450774 - parent: 1 - type: Transform - - nextAttack: 989.4976064 - type: MeleeWeapon -- uid: 13603 - type: ClosetMaintenanceFilledRandom - components: - - pos: -15.5,-12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13604 - type: GasPipeTJunction - components: - - pos: -29.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13605 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13606 - type: GasVentPump - components: - - pos: -28.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13607 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -29.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13608 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13609 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13610 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13611 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13612 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13613 - type: GasPipeStraight - components: - - pos: -31.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13614 - type: GasPipeStraight - components: - - pos: -31.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13615 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13616 - type: GasPipeStraight - components: - - pos: -31.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13617 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13618 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13619 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13620 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13621 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13622 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13623 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13624 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13625 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13626 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13627 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13628 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13629 - type: GasPipeStraight - components: - - pos: -32.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13630 - type: GasPipeStraight - components: - - pos: -32.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13631 - type: GasPipeStraight - components: - - pos: -32.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13632 - type: GasPipeStraight - components: - - pos: -31.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13633 - type: GasPipeStraight - components: - - pos: -31.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13634 - type: GasPipeStraight - components: - - pos: -31.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13635 - type: CableHV - components: - - pos: -31.5,-16.5 - parent: 1 - type: Transform -- uid: 13636 - type: CableHV - components: - - pos: -31.5,-15.5 - parent: 1 - type: Transform -- uid: 13637 - type: CableHV - components: - - pos: -31.5,-14.5 - parent: 1 - type: Transform -- uid: 13638 - type: CableHV - components: - - pos: -31.5,-13.5 - parent: 1 - type: Transform -- uid: 13639 - type: CableHV - components: - - pos: -31.5,-12.5 - parent: 1 - type: Transform -- uid: 13640 - type: CableHV - components: - - pos: -31.5,-11.5 - parent: 1 - type: Transform -- uid: 13641 - type: CableHV - components: - - pos: -32.5,-11.5 - parent: 1 - type: Transform -- uid: 13642 - type: CableHV - components: - - pos: -33.5,-11.5 - parent: 1 - type: Transform -- uid: 13643 - type: CableHV - components: - - pos: -34.5,-11.5 - parent: 1 - type: Transform -- uid: 13644 - type: CableHV - components: - - pos: -35.5,-11.5 - parent: 1 - type: Transform -- uid: 13645 - type: CableHV - components: - - pos: -36.5,-11.5 - parent: 1 - type: Transform -- uid: 13646 - type: CableHV - components: - - pos: -37.5,-11.5 - parent: 1 - type: Transform -- uid: 13647 - type: CableHV - components: - - pos: -38.5,-11.5 - parent: 1 - type: Transform -- uid: 13648 - type: CableApcExtension - components: - - pos: -29.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13649 - type: CableApcExtension - components: - - pos: -30.5,-21.5 - parent: 1 - type: Transform -- uid: 13650 - type: CableApcExtension - components: - - pos: -31.5,-21.5 - parent: 1 - type: Transform -- uid: 13651 - type: CableApcExtension - components: - - pos: -32.5,-21.5 - parent: 1 - type: Transform -- uid: 13652 - type: CableApcExtension - components: - - pos: -32.5,-20.5 - parent: 1 - type: Transform -- uid: 13653 - type: CableApcExtension - components: - - pos: -32.5,-19.5 - parent: 1 - type: Transform -- uid: 13654 - type: CableApcExtension - components: - - pos: -32.5,-18.5 - parent: 1 - type: Transform -- uid: 13655 - type: CableApcExtension - components: - - pos: -32.5,-17.5 - parent: 1 - type: Transform -- uid: 13656 - type: CableApcExtension - components: - - pos: -32.5,-16.5 - parent: 1 - type: Transform -- uid: 13657 - type: CableApcExtension - components: - - pos: -32.5,-15.5 - parent: 1 - type: Transform -- uid: 13658 - type: CableApcExtension - components: - - pos: -32.5,-14.5 - parent: 1 - type: Transform -- uid: 13659 - type: CableApcExtension - components: - - pos: -32.5,-13.5 - parent: 1 - type: Transform -- uid: 13660 - type: CableApcExtension - components: - - pos: -32.5,-12.5 - parent: 1 - type: Transform -- uid: 13661 - type: CableApcExtension - components: - - pos: -32.5,-11.5 - parent: 1 - type: Transform -- uid: 13662 - type: CableApcExtension - components: - - pos: -32.5,-10.5 - parent: 1 - type: Transform -- uid: 13663 - type: CableApcExtension - components: - - pos: -38.5,-7.5 - parent: 1 - type: Transform -- uid: 13664 - type: CableApcExtension - components: - - pos: -31.5,-17.5 - parent: 1 - type: Transform -- uid: 13665 - type: CableApcExtension - components: - - pos: -33.5,-10.5 - parent: 1 - type: Transform -- uid: 13666 - type: CableApcExtension - components: - - pos: -34.5,-10.5 - parent: 1 - type: Transform -- uid: 13667 - type: CableApcExtension - components: - - pos: -35.5,-10.5 - parent: 1 - type: Transform -- uid: 13668 - type: CableApcExtension - components: - - pos: -36.5,-10.5 - parent: 1 - type: Transform -- uid: 13669 - type: CableApcExtension - components: - - pos: -37.5,-10.5 - parent: 1 - type: Transform -- uid: 13670 - type: CableApcExtension - components: - - pos: -38.5,-10.5 - parent: 1 - type: Transform -- uid: 13671 - type: CableApcExtension - components: - - pos: -39.5,-10.5 - parent: 1 - type: Transform -- uid: 13672 - type: CableApcExtension - components: - - pos: -37.5,-11.5 - parent: 1 - type: Transform -- uid: 13673 - type: CableApcExtension - components: - - pos: -37.5,-12.5 - parent: 1 - type: Transform -- uid: 13674 - type: CableApcExtension - components: - - pos: -37.5,-13.5 - parent: 1 - type: Transform -- uid: 13675 - type: CableApcExtension - components: - - pos: -38.5,-9.5 - parent: 1 - type: Transform -- uid: 13676 - type: CableApcExtension - components: - - pos: -35.5,-9.5 - parent: 1 - type: Transform -- uid: 13677 - type: WallSolid - components: - - pos: -30.5,-25.5 - parent: 1 - type: Transform -- uid: 13678 - type: WallSolid - components: - - pos: -33.5,-25.5 - parent: 1 - type: Transform -- uid: 13679 - type: Barricade - components: - - rot: 3.141592653589793 rad - pos: -35.5,-23.5 - parent: 1 - type: Transform -- uid: 13680 - type: MaintenanceFluffSpawner - components: - - pos: -35.5,-22.5 - parent: 1 - type: Transform -- uid: 13681 - type: RandomArcade - components: - - pos: 45.5,12.5 - parent: 1 - type: Transform -- uid: 13682 - type: WallSolid - components: - - pos: -33.5,-21.5 - parent: 1 - type: Transform -- uid: 13683 - type: AirlockMaintLocked - components: - - name: engineering - type: MetaData - - pos: -30.5,-26.5 - parent: 1 - type: Transform -- uid: 13684 - type: AirlockMaintLocked - components: - - name: engineering - type: MetaData - - pos: -33.5,-26.5 - parent: 1 - type: Transform -- uid: 13685 - type: WallSolid - components: - - pos: -23.5,-27.5 - parent: 1 - type: Transform -- uid: 13686 - type: WallSolid - components: - - pos: -24.5,-27.5 - parent: 1 - type: Transform -- uid: 13687 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-28.5 - parent: 1 - type: Transform -- uid: 13688 - type: WallSolid - components: - - pos: -26.5,-27.5 - parent: 1 - type: Transform -- uid: 13689 - type: WallSolid - components: - - pos: -27.5,-27.5 - parent: 1 - type: Transform -- uid: 13690 - type: WallSolid - components: - - pos: -28.5,-27.5 - parent: 1 - type: Transform -- uid: 13691 - type: WallSolid - components: - - pos: -29.5,-27.5 - parent: 1 - type: Transform -- uid: 13692 - type: WallSolid - components: - - pos: -30.5,-27.5 - parent: 1 - type: Transform -- uid: 13693 - type: WallSolid - components: - - pos: -33.5,-27.5 - parent: 1 - type: Transform -- uid: 13694 - type: WallSolid - components: - - pos: -34.5,-27.5 - parent: 1 - type: Transform -- uid: 13695 - type: WallSolid - components: - - pos: -35.5,-27.5 - parent: 1 - type: Transform -- uid: 13696 - type: WallSolid - components: - - pos: -36.5,-27.5 - parent: 1 - type: Transform -- uid: 13697 - type: WallSolid - components: - - pos: -33.5,-28.5 - parent: 1 - type: Transform -- uid: 13698 - type: WallSolid - components: - - pos: -33.5,-29.5 - parent: 1 - type: Transform -- uid: 13699 - type: WallSolid - components: - - pos: -33.5,-30.5 - parent: 1 - type: Transform -- uid: 13700 - type: WallSolid - components: - - pos: -30.5,-28.5 - parent: 1 - type: Transform -- uid: 13701 - type: WallSolid - components: - - pos: -30.5,-29.5 - parent: 1 - type: Transform -- uid: 13702 - type: WallSolid - components: - - pos: -30.5,-30.5 - parent: 1 - type: Transform -- uid: 13703 - type: Firelock - components: - - pos: -31.5,-30.5 - parent: 1 - type: Transform -- uid: 13704 - type: Firelock - components: - - pos: -32.5,-30.5 - parent: 1 - type: Transform -- uid: 13705 - type: SignEngineering - components: - - pos: -21.5,-8.5 - parent: 1 - type: Transform -- uid: 13706 - type: SignEngineering - components: - - pos: -21.5,-15.5 - parent: 1 - type: Transform -- uid: 13707 - type: WallReinforced - components: - - pos: -17.5,-46.5 - parent: 1 - type: Transform -- uid: 13708 - type: WallReinforced - components: - - pos: -17.5,-45.5 - parent: 1 - type: Transform -- uid: 13709 - type: WallReinforced - components: - - pos: -17.5,-44.5 - parent: 1 - type: Transform -- uid: 13710 - type: WallReinforced - components: - - pos: -18.5,-44.5 - parent: 1 - type: Transform -- uid: 13711 - type: WallReinforced - components: - - pos: -20.5,-44.5 - parent: 1 - type: Transform -- uid: 13712 - type: WallReinforced - components: - - pos: -21.5,-44.5 - parent: 1 - type: Transform -- uid: 13713 - type: GasPipeStraight - components: - - pos: -32.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13714 - type: GasPipeStraight - components: - - pos: -32.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13715 - type: GasPipeStraight - components: - - pos: -32.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13716 - type: GasPipeStraight - components: - - pos: -32.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13717 - type: GasPipeStraight - components: - - pos: -31.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13718 - type: GasPipeStraight - components: - - pos: -31.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13719 - type: GasPipeStraight - components: - - pos: -31.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13720 - type: GasPipeStraight - components: - - pos: -31.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13721 - type: GasPipeStraight - components: - - pos: -31.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13722 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13723 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13724 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13725 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13726 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13727 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13728 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13729 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13730 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13731 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13732 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13733 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13734 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: 48.5,14.5 - parent: 1 - type: Transform -- uid: 13735 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-73.5 - parent: 1 - type: Transform -- uid: 13736 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-59.5 - parent: 1 - type: Transform -- uid: 13737 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: 49.5,-54.5 - parent: 1 - type: Transform -- uid: 13738 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-39.5 - parent: 1 - type: Transform -- uid: 13739 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-45.5 - parent: 1 - type: Transform -- uid: 13740 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-46.5 - parent: 1 - type: Transform -- uid: 13741 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-47.5 - parent: 1 - type: Transform -- uid: 13742 - type: WallReinforced - components: - - pos: -35.5,-19.5 - parent: 1 - type: Transform -- uid: 13743 - type: PoweredSmallLight - components: - - pos: -20.5,-45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13744 - type: WallReinforced - components: - - pos: -34.5,-19.5 - parent: 1 - type: Transform -- uid: 13745 - type: Grille - components: - - pos: -33.5,-17.5 - parent: 1 - type: Transform -- uid: 13746 - type: Grille - components: - - pos: -33.5,-15.5 - parent: 1 - type: Transform -- uid: 13747 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-19.5 - parent: 1 - type: Transform -- uid: 13748 - type: WallReinforced - components: - - pos: -37.5,-19.5 - parent: 1 - type: Transform -- uid: 13749 - type: WallReinforced - components: - - pos: -38.5,-19.5 - parent: 1 - type: Transform -- uid: 13750 - type: WallReinforced - components: - - pos: -38.5,-18.5 - parent: 1 - type: Transform -- uid: 13751 - type: WallReinforced - components: - - pos: -38.5,-17.5 - parent: 1 - type: Transform -- uid: 13752 - type: WallReinforced - components: - - pos: -38.5,-16.5 - parent: 1 - type: Transform -- uid: 13753 - type: WallReinforced - components: - - pos: -38.5,-15.5 - parent: 1 - type: Transform -- uid: 13754 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13755 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 13756 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13757 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13758 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13759 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-17.5 - parent: 1 - type: Transform -- uid: 13760 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-16.5 - parent: 1 - type: Transform -- uid: 13761 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-15.5 - parent: 1 - type: Transform -- uid: 13762 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-16.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13763 - type: ClothingNeckMantleCE - components: - - pos: -35.467106,-17.222797 - parent: 1 - type: Transform -- uid: 13764 - type: LockerChiefEngineerFilled - components: - - pos: -37.5,-15.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13765 - type: Bed - components: - - pos: -37.5,-18.5 - parent: 1 - type: Transform -- uid: 13766 - type: BedsheetCE - components: - - pos: -37.5,-18.5 - parent: 1 - type: Transform -- uid: 13767 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: -35.51461,-16.473585 - parent: 1 - type: Transform -- uid: 13768 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: -35.51461,-16.473585 - parent: 1 - type: Transform -- uid: 13769 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: -35.51461,-16.473585 - parent: 1 - type: Transform -- uid: 13770 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: -35.51461,-16.473585 - parent: 1 - type: Transform -- uid: 13771 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: -35.51461,-16.473585 - parent: 1 - type: Transform -- uid: 13772 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: -35.51461,-16.473585 - parent: 1 - type: Transform -- uid: 13773 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: -35.51461,-16.473585 - parent: 1 - type: Transform -- uid: 13774 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: -35.51461,-16.473585 - parent: 1 - type: Transform -- uid: 13775 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: -35.51461,-16.473585 - parent: 1 - type: Transform -- uid: 13776 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: -35.467735,-16.567335 - parent: 1 - type: Transform -- uid: 13777 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: -35.467735,-16.567335 - parent: 1 - type: Transform -- uid: 13778 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: -35.467735,-16.567335 - parent: 1 - type: Transform -- uid: 13779 - type: Paper - components: - - rot: -1.5707963267948966 rad - pos: -35.467735,-16.567335 - parent: 1 - type: Transform -- uid: 13780 - type: Pen - components: - - rot: -1.5707963267948966 rad - pos: -35.775307,-16.265104 - parent: 1 - type: Transform -- uid: 13781 - type: CableApcExtension - components: - - pos: -43.5,-84.5 - parent: 1 - type: Transform -- uid: 13782 - type: ResearchAndDevelopmentServer - components: - - pos: 55.5,-49.5 - parent: 1 - type: Transform -- uid: 13783 - type: CableApcExtension - components: - - pos: -33.5,-16.5 - parent: 1 - type: Transform -- uid: 13784 - type: CableApcExtension - components: - - pos: -34.5,-16.5 - parent: 1 - type: Transform -- uid: 13785 - type: CableApcExtension - components: - - pos: -35.5,-16.5 - parent: 1 - type: Transform -- uid: 13786 - type: CableApcExtension - components: - - pos: -36.5,-16.5 - parent: 1 - type: Transform -- uid: 13787 - type: CableApcExtension - components: - - pos: -36.5,-17.5 - parent: 1 - type: Transform -- uid: 13788 - type: CableApcExtension - components: - - pos: -35.5,-11.5 - parent: 1 - type: Transform -- uid: 13789 - type: CableApcExtension - components: - - pos: -35.5,-12.5 - parent: 1 - type: Transform -- uid: 13790 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-16.5 - parent: 1 - type: Transform -- uid: 13791 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-17.5 - parent: 1 - type: Transform -- uid: 13792 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -35.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13793 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -37.5,-15.5 - parent: 1 - type: Transform -- uid: 13794 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -37.5,-16.5 - parent: 1 - type: Transform -- uid: 13795 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -37.5,-17.5 - parent: 1 - type: Transform -- uid: 13796 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -37.5,-18.5 - parent: 1 - type: Transform -- uid: 13797 - type: ReinforcedWindow - components: - - pos: -45.5,-47.5 - parent: 1 - type: Transform -- uid: 13798 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -36.5,-16.5 - parent: 1 - type: Transform -- uid: 13799 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -36.5,-17.5 - parent: 1 - type: Transform -- uid: 13800 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -36.5,-18.5 - parent: 1 - type: Transform -- uid: 13801 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -35.5,-15.5 - parent: 1 - type: Transform -- uid: 13802 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -35.5,-16.5 - parent: 1 - type: Transform -- uid: 13803 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -35.5,-17.5 - parent: 1 - type: Transform -- uid: 13804 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -35.5,-18.5 - parent: 1 - type: Transform -- uid: 13805 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-14.5 - parent: 1 - type: Transform -- uid: 13806 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -33.5,-12.5 - parent: 1 - type: Transform -- uid: 13807 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -33.5,-9.5 - parent: 1 - type: Transform -- uid: 13808 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -40.5,-9.5 - parent: 1 - type: Transform -- uid: 13809 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -40.5,-12.5 - parent: 1 - type: Transform -- uid: 13810 - type: WallSolid - components: - - pos: -45.5,-25.5 - parent: 1 - type: Transform -- uid: 13811 - type: AutolatheMachineCircuitboard - components: - - pos: -37.537506,-16.840515 - parent: 1 - type: Transform -- uid: 13812 - type: WallSolid - components: - - pos: -45.5,-26.5 - parent: 1 - type: Transform -- uid: 13813 - type: Emitter - components: - - pos: -55.5,-8.5 - parent: 1 - type: Transform -- uid: 13814 - type: CableHV - components: - - pos: -39.5,-11.5 - parent: 1 - type: Transform -- uid: 13815 - type: CableHV - components: - - pos: -40.5,-11.5 - parent: 1 - type: Transform -- uid: 13816 - type: CableHV - components: - - pos: -41.5,-11.5 - parent: 1 - type: Transform -- uid: 13817 - type: CableHV - components: - - pos: -42.5,-11.5 - parent: 1 - type: Transform -- uid: 13818 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -35.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13819 - type: GasPipeTJunction - components: - - pos: -36.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13820 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13821 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13822 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13823 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13824 - type: GasPipeFourway - components: - - pos: -41.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13825 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13826 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13827 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13828 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13829 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13830 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13831 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: -38.5,-14.5 - parent: 1 - type: Transform - - devices: - - 21674 - - 13856 - - 13854 - - invalid - - 16036 - - 16035 - - 22548 - - 16047 - - 21448 - type: DeviceList -- uid: 13832 - type: GasVentScrubber - components: - - pos: -35.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13833 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -36.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13834 - type: DisposalUnit - components: - - pos: 27.5,-86.5 - parent: 1 - type: Transform -- uid: 13835 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 27.5,-95.5 - parent: 1 - type: Transform -- uid: 13836 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 28.5,-95.5 - parent: 1 - type: Transform -- uid: 13837 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 56.5,-74.5 - parent: 1 - type: Transform -- uid: 13838 - type: ClosetEmergencyFilledRandom - components: - - pos: 27.5,-80.5 - parent: 1 - type: Transform -- uid: 13839 - type: ChairPilotSeat - components: - - pos: 60.5,-0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 13840 - type: FireAlarm - components: - - pos: 8.5,18.5 - parent: 1 - type: Transform - - devices: - - 22559 - - 22557 - - 22558 - - 7187 - - 7188 - - 5546 - - 7198 - - 5142 - - 8762 - type: DeviceList -- uid: 13841 - type: Catwalk - components: - - pos: -46.5,-47.5 - parent: 1 - type: Transform -- uid: 13842 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -35.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13843 - type: Catwalk - components: - - pos: -46.5,-49.5 - parent: 1 - type: Transform -- uid: 13844 - type: WelderIndustrial - components: - - pos: -34.41553,-12.611145 - parent: 1 - type: Transform -- uid: 13845 - type: Table - components: - - pos: -34.5,-13.5 - parent: 1 - type: Transform -- uid: 13846 - type: SpawnPointStationEngineer - components: - - pos: -37.5,-10.5 - parent: 1 - type: Transform -- uid: 13847 - type: LockerEngineerFilled - components: - - pos: -39.5,-7.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13848 - type: LockerEngineerFilled - components: - - pos: -39.5,-12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13849 - type: ToolboxElectricalFilled - components: - - pos: -34.47803,-9.370416 - parent: 1 - type: Transform -- uid: 13850 - type: RandomSpawner - components: - - pos: -37.5,-6.5 - parent: 1 - type: Transform -- uid: 13851 - type: trayScanner - components: - - pos: -34.421566,-7.383431 - parent: 1 - type: Transform -- uid: 13852 - type: Catwalk - components: - - pos: -46.5,-44.5 - parent: 1 - type: Transform -- uid: 13853 - type: IntercomEngineering - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-9.5 - parent: 1 - type: Transform -- uid: 13854 - type: FirelockGlass - components: - - pos: -40.5,-6.5 - parent: 1 - type: Transform -- uid: 13855 - type: ClothingShoesBootsMag - components: - - pos: -34.59344,-13.376695 - parent: 1 - type: Transform -- uid: 13856 - type: FirelockGlass - components: - - pos: -40.5,-5.5 - parent: 1 - type: Transform -- uid: 13857 - type: SignToolStorage - components: - - pos: -33.5,-13.5 - parent: 1 - type: Transform -- uid: 13858 - type: SheetSteel - components: - - pos: -34.489746,-8.126983 - parent: 1 - type: Transform -- uid: 13859 - type: Table - components: - - pos: -35.5,-13.5 - parent: 1 - type: Transform -- uid: 13860 - type: ToolboxEmergencyFilled - components: - - pos: -34.47803,-9.073541 - parent: 1 - type: Transform -- uid: 13861 - type: ReinforcedWindow - components: - - pos: -45.5,-48.5 - parent: 1 - type: Transform -- uid: 13862 - type: LockerEngineerFilled - components: - - pos: -39.5,-8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13863 - type: LockerEngineerFilled - components: - - pos: -39.5,-9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13864 - type: Poweredlight - components: - - pos: -35.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13865 - type: Table - components: - - pos: -34.5,-8.5 - parent: 1 - type: Transform -- uid: 13866 - type: Catwalk - components: - - pos: -46.5,-51.5 - parent: 1 - type: Transform -- uid: 13867 - type: Table - components: - - pos: -36.5,-8.5 - parent: 1 - type: Transform -- uid: 13868 - type: WeldingFuelTankFull - components: - - pos: -28.5,-25.5 - parent: 1 - type: Transform -- uid: 13869 - type: Table - components: - - pos: -34.5,-9.5 - parent: 1 - type: Transform -- uid: 13870 - type: Poweredlight - components: - - pos: -16.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13871 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13872 - type: FireAlarm - components: - - pos: -4.5,60.5 - parent: 1 - type: Transform - - devices: - - 25903 - - 25904 - - 25982 - - 25667 - - 25666 - - 25665 - - 18117 - type: DeviceList -- uid: 13873 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13874 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 13875 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-10.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27282 - - port: Left - uid: 27282 - Forward: [] - Off: - - port: Middle - uid: 27282 - type: SignalReceiver -- uid: 13876 - type: TableWood - components: - - pos: 65.5,-51.5 - parent: 1 - type: Transform -- uid: 13877 - type: TableWood - components: - - pos: 65.5,-52.5 - parent: 1 - type: Transform -- uid: 13878 - type: TableWood - components: - - pos: 59.5,-51.5 - parent: 1 - type: Transform -- uid: 13879 - type: TableWood - components: - - pos: 59.5,-52.5 - parent: 1 - type: Transform -- uid: 13880 - type: MaterialDiamond1 - components: - - pos: 65.61525,-52.369926 - parent: 1 - type: Transform -- uid: 13881 - type: ReinforcedWindow - components: - - pos: 78.5,-44.5 - parent: 1 - type: Transform -- uid: 13882 - type: WallReinforced - components: - - pos: 77.5,-49.5 - parent: 1 - type: Transform -- uid: 13883 - type: MagazineMagnumSubMachineGunHighVelocity - components: - - pos: 29.936903,32.548206 - parent: 1 - type: Transform -- uid: 13884 - type: Catwalk - components: - - pos: 79.5,-50.5 - parent: 1 - type: Transform -- uid: 13885 - type: Catwalk - components: - - pos: 79.5,-49.5 - parent: 1 - type: Transform -- uid: 13886 - type: Catwalk - components: - - pos: 79.5,-44.5 - parent: 1 - type: Transform -- uid: 13887 - type: Catwalk - components: - - pos: 79.5,-45.5 - parent: 1 - type: Transform -- uid: 13888 - type: Catwalk - components: - - pos: 79.5,-46.5 - parent: 1 - type: Transform -- uid: 13889 - type: Catwalk - components: - - pos: 79.5,-47.5 - parent: 1 - type: Transform -- uid: 13890 - type: Catwalk - components: - - pos: 79.5,-48.5 - parent: 1 - type: Transform -- uid: 13891 - type: WallReinforced - components: - - pos: 73.5,-50.5 - parent: 1 - type: Transform -- uid: 13892 - type: Catwalk - components: - - pos: 79.5,-41.5 - parent: 1 - type: Transform -- uid: 13893 - type: Catwalk - components: - - pos: 68.5,-74.5 - parent: 1 - type: Transform -- uid: 13894 - type: Catwalk - components: - - pos: 68.5,-73.5 - parent: 1 - type: Transform -- uid: 13895 - type: WallReinforced - components: - - pos: 73.5,-52.5 - parent: 1 - type: Transform -- uid: 13896 - type: WallReinforced - components: - - pos: 73.5,-54.5 - parent: 1 - type: Transform -- uid: 13897 - type: WallReinforced - components: - - pos: 72.5,-54.5 - parent: 1 - type: Transform -- uid: 13898 - type: ReinforcedWindow - components: - - pos: 68.5,-56.5 - parent: 1 - type: Transform -- uid: 13899 - type: WallReinforced - components: - - pos: 69.5,-54.5 - parent: 1 - type: Transform -- uid: 13900 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-55.5 - parent: 1 - type: Transform -- uid: 13901 - type: CableMV - components: - - pos: 56.5,-45.5 - parent: 1 - type: Transform -- uid: 13902 - type: CableMV - components: - - pos: 57.5,-45.5 - parent: 1 - type: Transform -- uid: 13903 - type: CableMV - components: - - pos: 58.5,-45.5 - parent: 1 - type: Transform -- uid: 13904 - type: CableMV - components: - - pos: 59.5,-45.5 - parent: 1 - type: Transform -- uid: 13905 - type: CableMV - components: - - pos: 60.5,-45.5 - parent: 1 - type: Transform -- uid: 13906 - type: CableMV - components: - - pos: 61.5,-45.5 - parent: 1 - type: Transform -- uid: 13907 - type: CableMV - components: - - pos: 61.5,-46.5 - parent: 1 - type: Transform -- uid: 13908 - type: CableMV - components: - - pos: 61.5,-47.5 - parent: 1 - type: Transform -- uid: 13909 - type: CableMV - components: - - pos: 61.5,-48.5 - parent: 1 - type: Transform -- uid: 13910 - type: CableMV - components: - - pos: 61.5,-49.5 - parent: 1 - type: Transform -- uid: 13911 - type: CableMV - components: - - pos: 61.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13912 - type: CableMV - components: - - pos: 61.5,-51.5 - parent: 1 - type: Transform -- uid: 13913 - type: CableMV - components: - - pos: 60.5,-51.5 - parent: 1 - type: Transform -- uid: 13914 - type: CableMV - components: - - pos: 59.5,-51.5 - parent: 1 - type: Transform -- uid: 13915 - type: CableMV - components: - - pos: 58.5,-51.5 - parent: 1 - type: Transform -- uid: 13916 - type: CableMV - components: - - pos: 58.5,-52.5 - parent: 1 - type: Transform -- uid: 13917 - type: CableMV - components: - - pos: 58.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13918 - type: CableMV - components: - - pos: 59.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13919 - type: CableMV - components: - - pos: 59.5,-54.5 - parent: 1 - type: Transform -- uid: 13920 - type: CableMV - components: - - pos: 59.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13921 - type: CableMV - components: - - pos: 60.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13922 - type: CableMV - components: - - pos: 60.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13923 - type: CableMV - components: - - pos: 61.5,-56.5 - parent: 1 - type: Transform -- uid: 13924 - type: CableMV - components: - - pos: 62.5,-56.5 - parent: 1 - type: Transform -- uid: 13925 - type: CableMV - components: - - pos: 63.5,-56.5 - parent: 1 - type: Transform -- uid: 13926 - type: CableMV - components: - - pos: 64.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13927 - type: CableMV - components: - - pos: 64.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13928 - type: CableMV - components: - - pos: 65.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13929 - type: CableMV - components: - - pos: 65.5,-54.5 - parent: 1 - type: Transform -- uid: 13930 - type: CableMV - components: - - pos: 65.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13931 - type: CableMV - components: - - pos: 66.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13932 - type: CableMV - components: - - pos: 66.5,-52.5 - parent: 1 - type: Transform -- uid: 13933 - type: CableMV - components: - - pos: 66.5,-51.5 - parent: 1 - type: Transform -- uid: 13934 - type: CableMV - components: - - pos: 66.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13935 - type: CableMV - components: - - pos: 65.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 13936 - type: Table - components: - - pos: -34.5,-7.5 - parent: 1 - type: Transform -- uid: 13937 - type: AirSensor - components: - - pos: -21.5,56.5 - parent: 1 - type: Transform -- uid: 13938 - type: SpawnPointStationEngineer - components: - - pos: -38.5,-12.5 - parent: 1 - type: Transform -- uid: 13939 - type: Table - components: - - pos: -34.5,-12.5 - parent: 1 - type: Transform -- uid: 13940 - type: SpawnPointStationEngineer - components: - - pos: -36.5,-12.5 - parent: 1 - type: Transform -- uid: 13941 - type: SpawnPointStationEngineer - components: - - pos: -35.5,-10.5 - parent: 1 - type: Transform -- uid: 13942 - type: WallSolid - components: - - pos: -36.5,-26.5 - parent: 1 - type: Transform -- uid: 13943 - type: WallSolid - components: - - pos: -36.5,-25.5 - parent: 1 - type: Transform -- uid: 13944 - type: WallSolid - components: - - pos: -37.5,-25.5 - parent: 1 - type: Transform -- uid: 13945 - type: WallSolid - components: - - pos: -38.5,-25.5 - parent: 1 - type: Transform -- uid: 13946 - type: WallSolid - components: - - pos: -34.5,-21.5 - parent: 1 - type: Transform -- uid: 13947 - type: WallSolid - components: - - pos: -35.5,-21.5 - parent: 1 - type: Transform -- uid: 13948 - type: WallSolid - components: - - pos: -36.5,-21.5 - parent: 1 - type: Transform -- uid: 13949 - type: WallSolid - components: - - pos: -38.5,-21.5 - parent: 1 - type: Transform -- uid: 13950 - type: WallSolid - components: - - pos: -36.5,-22.5 - parent: 1 - type: Transform -- uid: 13951 - type: WallSolid - components: - - pos: -36.5,-23.5 - parent: 1 - type: Transform -- uid: 13952 - type: WallSolid - components: - - pos: -38.5,-23.5 - parent: 1 - type: Transform -- uid: 13953 - type: WallSolid - components: - - pos: -38.5,-24.5 - parent: 1 - type: Transform -- uid: 13954 - type: WallSolid - components: - - pos: -39.5,-21.5 - parent: 1 - type: Transform -- uid: 13955 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -40.5,-21.5 - parent: 1 - type: Transform -- uid: 13956 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -40.5,-22.5 - parent: 1 - type: Transform -- uid: 13957 - type: WallReinforced - components: - - pos: -44.5,-24.5 - parent: 1 - type: Transform -- uid: 13958 - type: AirlockEngineeringLocked - components: - - name: storage - type: MetaData - - pos: -41.5,-14.5 - parent: 1 - type: Transform -- uid: 13959 - type: WallReinforced - components: - - pos: -42.5,-14.5 - parent: 1 - type: Transform -- uid: 13960 - type: WallReinforced - components: - - pos: -43.5,-14.5 - parent: 1 - type: Transform -- uid: 13961 - type: WallReinforced - components: - - pos: -43.5,-12.5 - parent: 1 - type: Transform -- uid: 13962 - type: ReinforcedWindow - components: - - pos: -43.5,-13.5 - parent: 1 - type: Transform -- uid: 13963 - type: WallReinforced - components: - - pos: -43.5,-9.5 - parent: 1 - type: Transform -- uid: 13964 - type: WallReinforced - components: - - pos: -43.5,-8.5 - parent: 1 - type: Transform -- uid: 13965 - type: WallReinforced - components: - - pos: -43.5,-7.5 - parent: 1 - type: Transform -- uid: 13966 - type: WallReinforced - components: - - pos: -43.5,-19.5 - parent: 1 - type: Transform -- uid: 13967 - type: WallReinforced - components: - - pos: -42.5,-19.5 - parent: 1 - type: Transform -- uid: 13968 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -41.5,-19.5 - parent: 1 - type: Transform -- uid: 13969 - type: WallReinforced - components: - - pos: -40.5,-19.5 - parent: 1 - type: Transform -- uid: 13970 - type: WallReinforced - components: - - pos: -39.5,-19.5 - parent: 1 - type: Transform -- uid: 13971 - type: WallReinforced - components: - - pos: -43.5,-15.5 - parent: 1 - type: Transform -- uid: 13972 - type: WallReinforced - components: - - pos: -43.5,-16.5 - parent: 1 - type: Transform -- uid: 13973 - type: WallReinforced - components: - - pos: -43.5,-17.5 - parent: 1 - type: Transform -- uid: 13974 - type: WallReinforced - components: - - pos: -43.5,-18.5 - parent: 1 - type: Transform -- uid: 13975 - type: Table - components: - - pos: -39.5,-16.5 - parent: 1 - type: Transform -- uid: 13976 - type: Table - components: - - pos: -39.5,-17.5 - parent: 1 - type: Transform -- uid: 13977 - type: Table - components: - - pos: -39.5,-18.5 - parent: 1 - type: Transform -- uid: 13978 - type: Table - components: - - pos: -40.5,-18.5 - parent: 1 - type: Transform -- uid: 13979 - type: Table - components: - - pos: -41.5,-18.5 - parent: 1 - type: Transform -- uid: 13980 - type: Table - components: - - pos: -42.5,-18.5 - parent: 1 - type: Transform -- uid: 13981 - type: Table - components: - - pos: -42.5,-17.5 - parent: 1 - type: Transform -- uid: 13982 - type: Table - components: - - pos: -42.5,-16.5 - parent: 1 - type: Transform -- uid: 13983 - type: SheetSteel - components: - - pos: -39.513657,-16.565893 - parent: 1 - type: Transform -- uid: 13984 - type: SheetSteel - components: - - pos: -39.544514,-17.164497 - parent: 1 - type: Transform -- uid: 13985 - type: SheetPlasteel - components: - - pos: -42.49803,-16.612768 - parent: 1 - type: Transform -- uid: 13986 - type: SheetGlass - components: - - pos: -41.74803,-18.440893 - parent: 1 - type: Transform -- uid: 13987 - type: SheetRGlass - components: - - pos: -42.558216,-17.530426 - parent: 1 - type: Transform -- uid: 13988 - type: SheetPlastic - components: - - pos: -40.982407,-18.456518 - parent: 1 - type: Transform -- uid: 13989 - type: PartRodMetal - components: - - pos: -40.15428,-18.425268 - parent: 1 - type: Transform -- uid: 13990 - type: CrateEmergencyFire - components: - - pos: -39.5,-15.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13991 - type: CrateEngineeringCableLV - components: - - pos: -42.5,-15.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 13992 - type: CableMVStack - components: - - pos: -39.41842,-18.34842 - parent: 1 - type: Transform -- uid: 13993 - type: CableHVStack - components: - - pos: -39.402794,-17.87967 - parent: 1 - type: Transform -- uid: 13994 - type: PosterContrabandPunchShit - components: - - pos: 48.5,11.5 - parent: 1 - type: Transform -- uid: 13995 - type: PosterContrabandRebelsUnite - components: - - pos: -0.5,-72.5 - parent: 1 - type: Transform -- uid: 13996 - type: GasPipeFourway - components: - - pos: -42.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13997 - type: GasPipeStraight - components: - - pos: -42.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13998 - type: GasPipeStraight - components: - - pos: -42.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 13999 - type: GasPipeStraight - components: - - pos: -42.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14000 - type: GasPipeStraight - components: - - pos: -42.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14001 - type: GasPipeStraight - components: - - pos: -41.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14002 - type: GasPipeStraight - components: - - pos: -41.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14003 - type: GasPipeStraight - components: - - pos: -41.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14004 - type: GasPipeStraight - components: - - pos: -41.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14005 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -42.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14006 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -41.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14007 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14008 - type: Catwalk - components: - - pos: -23.5,-26.5 - parent: 1 - type: Transform -- uid: 14009 - type: Catwalk - components: - - pos: -24.5,-26.5 - parent: 1 - type: Transform -- uid: 14010 - type: Catwalk - components: - - pos: -25.5,-26.5 - parent: 1 - type: Transform -- uid: 14011 - type: Catwalk - components: - - pos: -26.5,-26.5 - parent: 1 - type: Transform -- uid: 14012 - type: Catwalk - components: - - pos: -27.5,-26.5 - parent: 1 - type: Transform -- uid: 14013 - type: Catwalk - components: - - pos: -28.5,-26.5 - parent: 1 - type: Transform -- uid: 14014 - type: CableApcExtension - components: - - pos: -32.5,-22.5 - parent: 1 - type: Transform -- uid: 14015 - type: CableApcExtension - components: - - pos: -32.5,-23.5 - parent: 1 - type: Transform -- uid: 14016 - type: CableApcExtension - components: - - pos: -32.5,-24.5 - parent: 1 - type: Transform -- uid: 14017 - type: CableApcExtension - components: - - pos: -32.5,-25.5 - parent: 1 - type: Transform -- uid: 14018 - type: CableApcExtension - components: - - pos: -32.5,-26.5 - parent: 1 - type: Transform -- uid: 14019 - type: CableApcExtension - components: - - pos: -32.5,-27.5 - parent: 1 - type: Transform -- uid: 14020 - type: CableApcExtension - components: - - pos: -32.5,-28.5 - parent: 1 - type: Transform -- uid: 14021 - type: CableApcExtension - components: - - pos: -40.5,-10.5 - parent: 1 - type: Transform -- uid: 14022 - type: CableApcExtension - components: - - pos: -41.5,-10.5 - parent: 1 - type: Transform -- uid: 14023 - type: CableApcExtension - components: - - pos: -41.5,-11.5 - parent: 1 - type: Transform -- uid: 14024 - type: CableApcExtension - components: - - pos: -41.5,-12.5 - parent: 1 - type: Transform -- uid: 14025 - type: CableApcExtension - components: - - pos: -41.5,-13.5 - parent: 1 - type: Transform -- uid: 14026 - type: CableApcExtension - components: - - pos: -41.5,-14.5 - parent: 1 - type: Transform -- uid: 14027 - type: CableApcExtension - components: - - pos: -41.5,-15.5 - parent: 1 - type: Transform -- uid: 14028 - type: CableApcExtension - components: - - pos: -41.5,-16.5 - parent: 1 - type: Transform -- uid: 14029 - type: CableApcExtension - components: - - pos: -40.5,-16.5 - parent: 1 - type: Transform -- uid: 14030 - type: PoweredSmallLight - components: - - pos: -26.5,-26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14031 - type: CableApcExtension - components: - - pos: -31.5,-26.5 - parent: 1 - type: Transform -- uid: 14032 - type: CableApcExtension - components: - - pos: -30.5,-26.5 - parent: 1 - type: Transform -- uid: 14033 - type: CableApcExtension - components: - - pos: -29.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14034 - type: CableApcExtension - components: - - pos: -28.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14035 - type: CableApcExtension - components: - - pos: -27.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14036 - type: CableApcExtension - components: - - pos: -26.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14037 - type: CableApcExtension - components: - - pos: -25.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14038 - type: DisposalPipe - components: - - pos: -13.5,1.5 - parent: 1 - type: Transform -- uid: 14039 - type: DisposalPipe - components: - - pos: -13.5,-0.5 - parent: 1 - type: Transform -- uid: 14040 - type: DisposalRouterFlipped - components: - - pos: -13.5,0.5 - parent: 1 - type: Transform -- uid: 14041 - type: DisposalPipe - components: - - pos: -13.5,-1.5 - parent: 1 - type: Transform -- uid: 14042 - type: DisposalPipe - components: - - pos: -13.5,-2.5 - parent: 1 - type: Transform -- uid: 14043 - type: DisposalPipe - components: - - pos: -13.5,-3.5 - parent: 1 - type: Transform -- uid: 14044 - type: DisposalPipe - components: - - pos: -13.5,-4.5 - parent: 1 - type: Transform -- uid: 14045 - type: DisposalPipe - components: - - pos: -13.5,-5.5 - parent: 1 - type: Transform -- uid: 14046 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-6.5 - parent: 1 - type: Transform -- uid: 14047 - type: DisposalBend - components: - - pos: -13.5,8.5 - parent: 1 - type: Transform -- uid: 14048 - type: DisposalPipe - components: - - pos: -13.5,2.5 - parent: 1 - type: Transform -- uid: 14049 - type: DisposalPipe - components: - - pos: -13.5,3.5 - parent: 1 - type: Transform -- uid: 14050 - type: DisposalPipe - components: - - pos: -13.5,4.5 - parent: 1 - type: Transform -- uid: 14051 - type: DisposalJunctionFlipped - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform -- uid: 14052 - type: DisposalPipe - components: - - pos: -13.5,6.5 - parent: 1 - type: Transform -- uid: 14053 - type: DisposalPipe - components: - - pos: -13.5,7.5 - parent: 1 - type: Transform -- uid: 14054 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-6.5 - parent: 1 - type: Transform -- uid: 14055 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-6.5 - parent: 1 - type: Transform -- uid: 14056 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-6.5 - parent: 1 - type: Transform -- uid: 14057 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-6.5 - parent: 1 - type: Transform -- uid: 14058 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-6.5 - parent: 1 - type: Transform -- uid: 14059 - type: DisposalYJunction - components: - - pos: -19.5,-6.5 - parent: 1 - type: Transform -- uid: 14060 - type: DisposalPipe - components: - - pos: -19.5,-12.5 - parent: 1 - type: Transform -- uid: 14061 - type: DisposalPipe - components: - - pos: -19.5,-11.5 - parent: 1 - type: Transform -- uid: 14062 - type: DisposalPipe - components: - - pos: -19.5,-10.5 - parent: 1 - type: Transform -- uid: 14063 - type: DisposalPipe - components: - - pos: -19.5,-9.5 - parent: 1 - type: Transform -- uid: 14064 - type: DisposalPipe - components: - - pos: -19.5,-8.5 - parent: 1 - type: Transform -- uid: 14065 - type: DisposalPipe - components: - - pos: -19.5,-7.5 - parent: 1 - type: Transform -- uid: 14066 - type: WallReinforced - components: - - pos: 59.5,-61.5 - parent: 1 - type: Transform -- uid: 14067 - type: WallReinforced - components: - - pos: 67.5,-58.5 - parent: 1 - type: Transform -- uid: 14068 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-60.5 - parent: 1 - type: Transform -- uid: 14069 - type: ReinforcedWindow - components: - - pos: 70.5,-54.5 - parent: 1 - type: Transform -- uid: 14070 - type: WallReinforced - components: - - pos: 68.5,-58.5 - parent: 1 - type: Transform -- uid: 14071 - type: WallReinforced - components: - - pos: 65.5,-61.5 - parent: 1 - type: Transform -- uid: 14072 - type: WallReinforced - components: - - pos: 60.5,-61.5 - parent: 1 - type: Transform -- uid: 14073 - type: WallReinforced - components: - - pos: 65.5,-60.5 - parent: 1 - type: Transform -- uid: 14074 - type: ReinforcedWindow - components: - - pos: 61.5,-61.5 - parent: 1 - type: Transform -- uid: 14075 - type: WallReinforced - components: - - pos: 67.5,-59.5 - parent: 1 - type: Transform -- uid: 14076 - type: ReinforcedWindow - components: - - pos: 62.5,-61.5 - parent: 1 - type: Transform -- uid: 14077 - type: ReinforcedWindow - components: - - pos: 63.5,-61.5 - parent: 1 - type: Transform -- uid: 14078 - type: CableMV - components: - - pos: 47.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14079 - type: WallReinforced - components: - - pos: 52.5,-29.5 - parent: 1 - type: Transform -- uid: 14080 - type: WallReinforced - components: - - pos: 52.5,-28.5 - parent: 1 - type: Transform -- uid: 14081 - type: WallReinforced - components: - - pos: 52.5,-27.5 - parent: 1 - type: Transform -- uid: 14082 - type: WallReinforced - components: - - pos: 52.5,-30.5 - parent: 1 - type: Transform -- uid: 14083 - type: WallReinforced - components: - - pos: 52.5,-31.5 - parent: 1 - type: Transform -- uid: 14084 - type: Grille - components: - - pos: 50.5,-31.5 - parent: 1 - type: Transform -- uid: 14085 - type: Grille - components: - - pos: 51.5,-31.5 - parent: 1 - type: Transform -- uid: 14086 - type: WallReinforced - components: - - pos: 43.5,-32.5 - parent: 1 - type: Transform -- uid: 14087 - type: WallSolid - components: - - pos: 52.5,-35.5 - parent: 1 - type: Transform -- uid: 14088 - type: WallReinforced - components: - - pos: 58.5,-68.5 - parent: 1 - type: Transform -- uid: 14089 - type: WallReinforced - components: - - pos: 49.5,-32.5 - parent: 1 - type: Transform -- uid: 14090 - type: WallReinforced - components: - - pos: 48.5,-32.5 - parent: 1 - type: Transform -- uid: 14091 - type: WallReinforced - components: - - pos: 46.5,-32.5 - parent: 1 - type: Transform -- uid: 14092 - type: WallSolid - components: - - pos: 53.5,-33.5 - parent: 1 - type: Transform -- uid: 14093 - type: WallReinforced - components: - - pos: 57.5,-68.5 - parent: 1 - type: Transform -- uid: 14094 - type: WallReinforced - components: - - pos: 45.5,-32.5 - parent: 1 - type: Transform -- uid: 14095 - type: WallReinforced - components: - - pos: 69.5,-67.5 - parent: 1 - type: Transform -- uid: 14096 - type: WallReinforced - components: - - pos: 70.5,-67.5 - parent: 1 - type: Transform -- uid: 14097 - type: WallReinforced - components: - - pos: 71.5,-67.5 - parent: 1 - type: Transform -- uid: 14098 - type: ReinforcedWindow - components: - - pos: 71.5,-64.5 - parent: 1 - type: Transform -- uid: 14099 - type: WallReinforced - components: - - pos: 71.5,-63.5 - parent: 1 - type: Transform -- uid: 14100 - type: WallReinforced - components: - - pos: 72.5,-63.5 - parent: 1 - type: Transform -- uid: 14101 - type: WallReinforced - components: - - pos: 72.5,-60.5 - parent: 1 - type: Transform -- uid: 14102 - type: WallReinforced - components: - - pos: 73.5,-60.5 - parent: 1 - type: Transform -- uid: 14103 - type: WallReinforced - components: - - pos: 72.5,-61.5 - parent: 1 - type: Transform -- uid: 14104 - type: WallReinforced - components: - - pos: 72.5,-62.5 - parent: 1 - type: Transform -- uid: 14105 - type: WallReinforced - components: - - pos: 73.5,-59.5 - parent: 1 - type: Transform -- uid: 14106 - type: WallReinforced - components: - - pos: 73.5,-58.5 - parent: 1 - type: Transform -- uid: 14107 - type: WallReinforced - components: - - pos: 74.5,-58.5 - parent: 1 - type: Transform -- uid: 14108 - type: WallReinforced - components: - - pos: 75.5,-58.5 - parent: 1 - type: Transform -- uid: 14109 - type: WallSolid - components: - - pos: 54.5,-62.5 - parent: 1 - type: Transform -- uid: 14110 - type: Catwalk - components: - - pos: 68.5,-72.5 - parent: 1 - type: Transform -- uid: 14111 - type: Catwalk - components: - - pos: 68.5,-71.5 - parent: 1 - type: Transform -- uid: 14112 - type: Catwalk - components: - - pos: 36.5,-56.5 - parent: 1 - type: Transform -- uid: 14113 - type: AirAlarm - components: - - pos: 27.5,-57.5 - parent: 1 - type: Transform - - devices: - - 12719 - - 11828 - - invalid - type: DeviceList -- uid: 14114 - type: Catwalk - components: - - pos: 36.5,-54.5 - parent: 1 - type: Transform -- uid: 14115 - type: Catwalk - components: - - pos: 36.5,-53.5 - parent: 1 - type: Transform -- uid: 14116 - type: Catwalk - components: - - pos: 36.5,-52.5 - parent: 1 - type: Transform -- uid: 14117 - type: Catwalk - components: - - pos: 38.5,-51.5 - parent: 1 - type: Transform -- uid: 14118 - type: Catwalk - components: - - pos: 39.5,-51.5 - parent: 1 - type: Transform -- uid: 14119 - type: Catwalk - components: - - pos: 40.5,-51.5 - parent: 1 - type: Transform -- uid: 14120 - type: Catwalk - components: - - pos: 41.5,-51.5 - parent: 1 - type: Transform -- uid: 14121 - type: Rack - components: - - pos: 36.5,-50.5 - parent: 1 - type: Transform -- uid: 14122 - type: Rack - components: - - pos: 37.5,-50.5 - parent: 1 - type: Transform -- uid: 14123 - type: PoweredSmallLight - components: - - pos: 43.5,-51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14124 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14125 - type: ComputerResearchAndDevelopment - components: - - rot: 3.141592653589793 rad - pos: 60.5,-36.5 - parent: 1 - type: Transform -- uid: 14126 - type: RandomSnacks - components: - - rot: -1.5707963267948966 rad - pos: 37.5,-50.5 - parent: 1 - type: Transform -- uid: 14127 - type: MaintenanceToolSpawner - components: - - pos: 36.5,-50.5 - parent: 1 - type: Transform -- uid: 14128 - type: CableHV - components: - - pos: -2.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14129 - type: CableHV - components: - - pos: -1.5,-69.5 - parent: 1 - type: Transform -- uid: 14130 - type: CableHV - components: - - pos: -1.5,-67.5 - parent: 1 - type: Transform -- uid: 14131 - type: CableHV - components: - - pos: -2.5,-60.5 - parent: 1 - type: Transform -- uid: 14132 - type: Catwalk - components: - - pos: 13.5,-47.5 - parent: 1 - type: Transform -- uid: 14133 - type: Catwalk - components: - - pos: 13.5,-45.5 - parent: 1 - type: Transform -- uid: 14134 - type: CableHV - components: - - pos: -2.5,-58.5 - parent: 1 - type: Transform -- uid: 14135 - type: Catwalk - components: - - pos: 15.5,-45.5 - parent: 1 - type: Transform -- uid: 14136 - type: Catwalk - components: - - pos: 16.5,-45.5 - parent: 1 - type: Transform -- uid: 14137 - type: Catwalk - components: - - pos: 17.5,-45.5 - parent: 1 - type: Transform -- uid: 14138 - type: ClothingOuterCoatBomber - components: - - pos: 15.5274105,-50.516087 - parent: 1 - type: Transform -- uid: 14139 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14140 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14141 - type: PoweredSmallLight - components: - - pos: 10.5,-55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14142 - type: PoweredSmallLight - components: - - pos: 15.5,-57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14143 - type: PoweredSmallLight - components: - - pos: 9.5,-64.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14144 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -1.5,-71.5 - parent: 1 - type: Transform -- uid: 14145 - type: PoweredSmallLight - components: - - pos: -5.5,-68.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14146 - type: WallReinforced - components: - - pos: 10.5,-38.5 - parent: 1 - type: Transform -- uid: 14147 - type: EmergencyOxygenTankFilled - components: - - pos: -2.5493312,-73.46234 - parent: 1 - type: Transform -- uid: 14148 - type: Catwalk - components: - - pos: 8.5,-56.5 - parent: 1 - type: Transform -- uid: 14149 - type: Firelock - components: - - pos: 10.5,-49.5 - parent: 1 - type: Transform -- uid: 14150 - type: CrateEngineeringGear - components: - - pos: 44.5,-6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14151 - type: CrateMaterialGlass - components: - - pos: 43.5,-6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14152 - type: MaintenanceWeaponSpawner - components: - - pos: 42.5,-6.5 - parent: 1 - type: Transform -- uid: 14153 - type: MaintenanceFluffSpawner - components: - - pos: 43.5,-8.5 - parent: 1 - type: Transform -- uid: 14154 - type: MaintenanceToolSpawner - components: - - pos: 44.5,-7.5 - parent: 1 - type: Transform -- uid: 14155 - type: Rack - components: - - pos: 44.5,-7.5 - parent: 1 - type: Transform -- uid: 14156 - type: Rack - components: - - pos: 42.5,-6.5 - parent: 1 - type: Transform -- uid: 14157 - type: Firelock - components: - - pos: 41.5,-11.5 - parent: 1 - type: Transform -- uid: 14158 - type: Firelock - components: - - pos: 36.5,-8.5 - parent: 1 - type: Transform -- uid: 14159 - type: DisposalRouterFlipped - components: - - pos: -19.5,8.5 - parent: 1 - type: Transform -- uid: 14160 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,8.5 - parent: 1 - type: Transform -- uid: 14161 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,8.5 - parent: 1 - type: Transform -- uid: 14162 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,8.5 - parent: 1 - type: Transform -- uid: 14163 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,8.5 - parent: 1 - type: Transform -- uid: 14164 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,8.5 - parent: 1 - type: Transform -- uid: 14165 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,7.5 - parent: 1 - type: Transform -- uid: 14166 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -19.5,6.5 - parent: 1 - type: Transform -- uid: 14167 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,6.5 - parent: 1 - type: Transform -- uid: 14168 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,6.5 - parent: 1 - type: Transform -- uid: 14169 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,6.5 - parent: 1 - type: Transform -- uid: 14170 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,6.5 - parent: 1 - type: Transform -- uid: 14171 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,6.5 - parent: 1 - type: Transform -- uid: 14172 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -26.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14173 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-6.5 - parent: 1 - type: Transform -- uid: 14174 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-6.5 - parent: 1 - type: Transform -- uid: 14175 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-6.5 - parent: 1 - type: Transform -- uid: 14176 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-6.5 - parent: 1 - type: Transform -- uid: 14177 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-6.5 - parent: 1 - type: Transform -- uid: 14178 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -25.5,-6.5 - parent: 1 - type: Transform -- uid: 14179 - type: DisposalYJunction - components: - - pos: -25.5,6.5 - parent: 1 - type: Transform -- uid: 14180 - type: DisposalPipe - components: - - pos: -25.5,5.5 - parent: 1 - type: Transform -- uid: 14181 - type: DisposalPipe - components: - - pos: -25.5,4.5 - parent: 1 - type: Transform -- uid: 14182 - type: DisposalPipe - components: - - pos: -25.5,3.5 - parent: 1 - type: Transform -- uid: 14183 - type: DisposalPipe - components: - - pos: -25.5,2.5 - parent: 1 - type: Transform -- uid: 14184 - type: DisposalPipe - components: - - pos: -25.5,1.5 - parent: 1 - type: Transform -- uid: 14185 - type: DisposalPipe - components: - - pos: -25.5,0.5 - parent: 1 - type: Transform -- uid: 14186 - type: DisposalJunction - components: - - pos: -25.5,-0.5 - parent: 1 - type: Transform -- uid: 14187 - type: DisposalPipe - components: - - pos: -25.5,-1.5 - parent: 1 - type: Transform -- uid: 14188 - type: DisposalPipe - components: - - pos: -25.5,-2.5 - parent: 1 - type: Transform -- uid: 14189 - type: DisposalPipe - components: - - pos: -25.5,-3.5 - parent: 1 - type: Transform -- uid: 14190 - type: DisposalPipe - components: - - pos: -25.5,-4.5 - parent: 1 - type: Transform -- uid: 14191 - type: DisposalPipe - components: - - pos: -25.5,-5.5 - parent: 1 - type: Transform -- uid: 14192 - type: GasPipeStraight - components: - - pos: -20.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14193 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14194 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14195 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14196 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14197 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14198 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14199 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14200 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14201 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14202 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14203 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -26.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14204 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14205 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14206 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14207 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14208 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14209 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14210 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -24.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14211 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14212 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14213 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14214 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -26.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14215 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14216 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14217 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14218 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14219 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14220 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14221 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -26.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14222 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14223 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14224 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14225 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -24.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14226 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14227 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -24.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14228 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -18.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14229 - type: AirlockGlass - components: - - pos: -19.5,14.5 - parent: 1 - type: Transform -- uid: 14230 - type: AirlockGlass - components: - - pos: -18.5,14.5 - parent: 1 - type: Transform -- uid: 14231 - type: AirlockGlass - components: - - pos: -20.5,14.5 - parent: 1 - type: Transform -- uid: 14232 - type: DisposalPipe - components: - - pos: -19.5,9.5 - parent: 1 - type: Transform -- uid: 14233 - type: DisposalPipe - components: - - pos: -19.5,10.5 - parent: 1 - type: Transform -- uid: 14234 - type: DisposalPipe - components: - - pos: -19.5,11.5 - parent: 1 - type: Transform -- uid: 14235 - type: DisposalPipe - components: - - pos: -19.5,12.5 - parent: 1 - type: Transform -- uid: 14236 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -26.5,6.5 - parent: 1 - type: Transform -- uid: 14237 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -28.5,7.5 - parent: 1 - type: Transform -- uid: 14238 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -28.5,6.5 - parent: 1 - type: Transform -- uid: 14239 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -28.5,5.5 - parent: 1 - type: Transform -- uid: 14240 - type: DisposalUnit - components: - - pos: -27.5,6.5 - parent: 1 - type: Transform -- uid: 14241 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: 35.5,3.5 - parent: 1 - type: Transform -- uid: 14242 - type: CableApcExtension - components: - - pos: -18.5,14.5 - parent: 1 - type: Transform -- uid: 14243 - type: CableApcExtension - components: - - pos: -18.5,13.5 - parent: 1 - type: Transform -- uid: 14244 - type: CableApcExtension - components: - - pos: -18.5,12.5 - parent: 1 - type: Transform -- uid: 14245 - type: CableApcExtension - components: - - pos: -18.5,11.5 - parent: 1 - type: Transform -- uid: 14246 - type: CableApcExtension - components: - - pos: -18.5,10.5 - parent: 1 - type: Transform -- uid: 14247 - type: CableApcExtension - components: - - pos: -18.5,9.5 - parent: 1 - type: Transform -- uid: 14248 - type: CableApcExtension - components: - - pos: -18.5,8.5 - parent: 1 - type: Transform -- uid: 14249 - type: CableApcExtension - components: - - pos: -18.5,7.5 - parent: 1 - type: Transform -- uid: 14250 - type: CableApcExtension - components: - - pos: -17.5,7.5 - parent: 1 - type: Transform -- uid: 14251 - type: CableApcExtension - components: - - pos: -16.5,7.5 - parent: 1 - type: Transform -- uid: 14252 - type: CableApcExtension - components: - - pos: -15.5,7.5 - parent: 1 - type: Transform -- uid: 14253 - type: CableApcExtension - components: - - pos: -14.5,7.5 - parent: 1 - type: Transform -- uid: 14254 - type: CableApcExtension - components: - - pos: -13.5,7.5 - parent: 1 - type: Transform -- uid: 14255 - type: CableApcExtension - components: - - pos: -12.5,7.5 - parent: 1 - type: Transform -- uid: 14256 - type: CableApcExtension - components: - - pos: -12.5,6.5 - parent: 1 - type: Transform -- uid: 14257 - type: CableApcExtension - components: - - pos: -12.5,5.5 - parent: 1 - type: Transform -- uid: 14258 - type: CableApcExtension - components: - - pos: -12.5,4.5 - parent: 1 - type: Transform -- uid: 14259 - type: CableApcExtension - components: - - pos: -12.5,3.5 - parent: 1 - type: Transform -- uid: 14260 - type: CableApcExtension - components: - - pos: -12.5,2.5 - parent: 1 - type: Transform -- uid: 14261 - type: CableApcExtension - components: - - pos: -12.5,1.5 - parent: 1 - type: Transform -- uid: 14262 - type: CableApcExtension - components: - - pos: -12.5,0.5 - parent: 1 - type: Transform -- uid: 14263 - type: CableApcExtension - components: - - pos: -12.5,-0.5 - parent: 1 - type: Transform -- uid: 14264 - type: CableApcExtension - components: - - pos: -12.5,-1.5 - parent: 1 - type: Transform -- uid: 14265 - type: CableApcExtension - components: - - pos: -12.5,-2.5 - parent: 1 - type: Transform -- uid: 14266 - type: CableApcExtension - components: - - pos: -13.5,-2.5 - parent: 1 - type: Transform -- uid: 14267 - type: CableApcExtension - components: - - pos: -12.5,-4.5 - parent: 1 - type: Transform -- uid: 14268 - type: CableApcExtension - components: - - pos: -23.5,7.5 - parent: 1 - type: Transform -- uid: 14269 - type: CableApcExtension - components: - - pos: -24.5,7.5 - parent: 1 - type: Transform -- uid: 14270 - type: CableApcExtension - components: - - pos: -25.5,7.5 - parent: 1 - type: Transform -- uid: 14271 - type: CableApcExtension - components: - - pos: -25.5,6.5 - parent: 1 - type: Transform -- uid: 14272 - type: CableApcExtension - components: - - pos: -25.5,5.5 - parent: 1 - type: Transform -- uid: 14273 - type: CableApcExtension - components: - - pos: -25.5,4.5 - parent: 1 - type: Transform -- uid: 14274 - type: CableApcExtension - components: - - pos: -25.5,3.5 - parent: 1 - type: Transform -- uid: 14275 - type: CableApcExtension - components: - - pos: -25.5,2.5 - parent: 1 - type: Transform -- uid: 14276 - type: CableApcExtension - components: - - pos: -17.5,10.5 - parent: 1 - type: Transform -- uid: 14277 - type: CableApcExtension - components: - - pos: -16.5,10.5 - parent: 1 - type: Transform -- uid: 14278 - type: CableApcExtension - components: - - pos: -15.5,10.5 - parent: 1 - type: Transform -- uid: 14279 - type: CableApcExtension - components: - - pos: -14.5,10.5 - parent: 1 - type: Transform -- uid: 14280 - type: CableApcExtension - components: - - pos: -14.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14281 - type: CableApcExtension - components: - - pos: -14.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14282 - type: CableApcExtension - components: - - pos: -14.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14283 - type: CableApcExtension - components: - - pos: -14.5,14.5 - parent: 1 - type: Transform -- uid: 14284 - type: CableApcExtension - components: - - pos: -14.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14285 - type: CableApcExtension - components: - - pos: -13.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14286 - type: CableApcExtension - components: - - pos: -12.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14287 - type: CableApcExtension - components: - - pos: -11.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14288 - type: CableApcExtension - components: - - pos: -10.5,15.5 - parent: 1 - type: Transform -- uid: 14289 - type: CableApcExtension - components: - - pos: -9.5,15.5 - parent: 1 - type: Transform -- uid: 14290 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -49.5,10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14291 - type: CableApcExtension - components: - - pos: -8.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14292 - type: CableApcExtension - components: - - pos: -7.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14293 - type: CableApcExtension - components: - - pos: -6.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14294 - type: CableApcExtension - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14295 - type: CableApcExtension - components: - - pos: -4.5,16.5 - parent: 1 - type: Transform -- uid: 14296 - type: WallReinforced - components: - - pos: -43.5,-23.5 - parent: 1 - type: Transform -- uid: 14297 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -59.5,-28.5 - parent: 1 - type: Transform -- uid: 14298 - type: WallSolid - components: - - pos: -49.5,-29.5 - parent: 1 - type: Transform -- uid: 14299 - type: WallSolid - components: - - pos: -51.5,-30.5 - parent: 1 - type: Transform -- uid: 14300 - type: WallSolid - components: - - pos: -50.5,-30.5 - parent: 1 - type: Transform -- uid: 14301 - type: WallSolid - components: - - pos: -43.5,-21.5 - parent: 1 - type: Transform -- uid: 14302 - type: WallReinforced - components: - - pos: -43.5,-24.5 - parent: 1 - type: Transform -- uid: 14303 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -40.5,-20.5 - parent: 1 - type: Transform -- uid: 14304 - type: WallSolid - components: - - pos: -43.5,-20.5 - parent: 1 - type: Transform -- uid: 14305 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-25.5 - parent: 1 - type: Transform -- uid: 14306 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-25.5 - parent: 1 - type: Transform -- uid: 14307 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-25.5 - parent: 1 - type: Transform -- uid: 14308 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-27.5 - parent: 1 - type: Transform -- uid: 14309 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-27.5 - parent: 1 - type: Transform -- uid: 14310 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-27.5 - parent: 1 - type: Transform -- uid: 14311 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-27.5 - parent: 1 - type: Transform -- uid: 14312 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-30.5 - parent: 1 - type: Transform -- uid: 14313 - type: AirlockMaintLocked - components: - - rot: 3.141592653589793 rad - pos: -31.5,-45.5 - parent: 1 - type: Transform -- uid: 14314 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-30.5 - parent: 1 - type: Transform -- uid: 14315 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-30.5 - parent: 1 - type: Transform -- uid: 14316 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-31.5 - parent: 1 - type: Transform -- uid: 14317 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-32.5 - parent: 1 - type: Transform -- uid: 14318 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-32.5 - parent: 1 - type: Transform -- uid: 14319 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-32.5 - parent: 1 - type: Transform -- uid: 14320 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-32.5 - parent: 1 - type: Transform -- uid: 14321 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-31.5 - parent: 1 - type: Transform -- uid: 14322 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-31.5 - parent: 1 - type: Transform -- uid: 14323 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-35.5 - parent: 1 - type: Transform -- uid: 14324 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-36.5 - parent: 1 - type: Transform -- uid: 14325 - type: AirlockAtmosphericsLocked - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-34.5 - parent: 1 - type: Transform -- uid: 14326 - type: AirlockAtmosphericsLocked - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-33.5 - parent: 1 - type: Transform -- uid: 14327 - type: Firelock - components: - - pos: -29.5,-34.5 - parent: 1 - type: Transform -- uid: 14328 - type: Firelock - components: - - pos: -29.5,-33.5 - parent: 1 - type: Transform -- uid: 14329 - type: WallSolid - components: - - pos: -29.5,-37.5 - parent: 1 - type: Transform -- uid: 14330 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-35.5 - parent: 1 - type: Transform -- uid: 14331 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-36.5 - parent: 1 - type: Transform -- uid: 14332 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-36.5 - parent: 1 - type: Transform -- uid: 14333 - type: ReinforcedWindow - components: - - pos: -38.5,-37.5 - parent: 1 - type: Transform -- uid: 14334 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-38.5 - parent: 1 - type: Transform -- uid: 14335 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-36.5 - parent: 1 - type: Transform -- uid: 14336 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-36.5 - parent: 1 - type: Transform -- uid: 14337 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-31.5 - parent: 1 - type: Transform -- uid: 14338 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-32.5 - parent: 1 - type: Transform -- uid: 14339 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-37.5 - parent: 1 - type: Transform -- uid: 14340 - type: WallSolid - components: - - pos: -34.5,-37.5 - parent: 1 - type: Transform -- uid: 14341 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-35.5 - parent: 1 - type: Transform -- uid: 14342 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-31.5 - parent: 1 - type: Transform -- uid: 14343 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-35.5 - parent: 1 - type: Transform -- uid: 14344 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-30.5 - parent: 1 - type: Transform -- uid: 14345 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-28.5 - parent: 1 - type: Transform -- uid: 14346 - type: PoweredlightSodium - components: - - pos: -40.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 14347 - type: Catwalk - components: - - pos: 62.5,-15.5 - parent: 1 - type: Transform -- uid: 14348 - type: Catwalk - components: - - pos: 62.5,-16.5 - parent: 1 - type: Transform -- uid: 14349 - type: Catwalk - components: - - pos: 62.5,-17.5 - parent: 1 - type: Transform -- uid: 14350 - type: Catwalk - components: - - pos: 62.5,-18.5 - parent: 1 - type: Transform -- uid: 14351 - type: Catwalk - components: - - pos: 62.5,-19.5 - parent: 1 - type: Transform -- uid: 14352 - type: Catwalk - components: - - pos: 62.5,-20.5 - parent: 1 - type: Transform -- uid: 14353 - type: Catwalk - components: - - pos: 62.5,-21.5 - parent: 1 - type: Transform -- uid: 14354 - type: Catwalk - components: - - pos: 62.5,-22.5 - parent: 1 - type: Transform -- uid: 14355 - type: Catwalk - components: - - pos: 62.5,-23.5 - parent: 1 - type: Transform -- uid: 14356 - type: WindoorSecure - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-33.5 - parent: 1 - type: Transform -- uid: 14357 - type: MachineAnomalyVessel - components: - - pos: 58.5,-32.5 - parent: 1 - type: Transform -- uid: 14358 - type: FirelockGlass - components: - - pos: 3.5,-55.5 - parent: 1 - type: Transform -- uid: 14359 - type: WallReinforced - components: - - pos: 28.5,-69.5 - parent: 1 - type: Transform -- uid: 14360 - type: WallReinforced - components: - - pos: 22.5,-69.5 - parent: 1 - type: Transform -- uid: 14361 - type: WallReinforced - components: - - pos: 23.5,-69.5 - parent: 1 - type: Transform -- uid: 14362 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-5.5 - parent: 1 - type: Transform -- uid: 14363 - type: SignalSwitch - components: - - pos: 16.5,-51.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 7218 - Off: - - port: Close - uid: 7218 - type: SignalTransmitter -- uid: 14364 - type: WindoorEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-34.5 - parent: 1 - type: Transform -- uid: 14365 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-35.5 - parent: 1 - type: Transform -- uid: 14366 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -28.5,-6.5 - parent: 1 - type: Transform -- uid: 14367 - type: WallSolid - components: - - pos: -31.5,-4.5 - parent: 1 - type: Transform -- uid: 14368 - type: WallSolid - components: - - pos: -32.5,-4.5 - parent: 1 - type: Transform -- uid: 14369 - type: WallSolid - components: - - pos: -33.5,-4.5 - parent: 1 - type: Transform -- uid: 14370 - type: WallSolid - components: - - pos: -34.5,-4.5 - parent: 1 - type: Transform -- uid: 14371 - type: WallSolid - components: - - pos: -35.5,-4.5 - parent: 1 - type: Transform -- uid: 14372 - type: WallSolid - components: - - pos: -38.5,-3.5 - parent: 1 - type: Transform -- uid: 14373 - type: WallSolid - components: - - pos: -39.5,-3.5 - parent: 1 - type: Transform -- uid: 14374 - type: WallSolid - components: - - pos: -35.5,-3.5 - parent: 1 - type: Transform -- uid: 14375 - type: WallSolid - components: - - pos: -39.5,-4.5 - parent: 1 - type: Transform -- uid: 14376 - type: WallSolid - components: - - pos: -40.5,-4.5 - parent: 1 - type: Transform -- uid: 14377 - type: WallSolid - components: - - pos: -42.5,-4.5 - parent: 1 - type: Transform -- uid: 14378 - type: AirlockMaintEngiLocked - components: - - name: engineering - type: MetaData - - pos: -41.5,-4.5 - parent: 1 - type: Transform -- uid: 14379 - type: WallSolid - components: - - pos: -43.5,-4.5 - parent: 1 - type: Transform -- uid: 14380 - type: WallSolid - components: - - pos: -22.5,-40.5 - parent: 1 - type: Transform -- uid: 14381 - type: WallSolid - components: - - pos: -23.5,-40.5 - parent: 1 - type: Transform -- uid: 14382 - type: WallSolid - components: - - pos: -24.5,-40.5 - parent: 1 - type: Transform -- uid: 14383 - type: WallSolid - components: - - pos: -24.5,-41.5 - parent: 1 - type: Transform -- uid: 14384 - type: WallSolid - components: - - pos: -24.5,-42.5 - parent: 1 - type: Transform -- uid: 14385 - type: WallSolid - components: - - pos: -24.5,-43.5 - parent: 1 - type: Transform -- uid: 14386 - type: WallSolid - components: - - pos: -24.5,-44.5 - parent: 1 - type: Transform -- uid: 14387 - type: WallSolid - components: - - pos: -24.5,-45.5 - parent: 1 - type: Transform -- uid: 14388 - type: WallSolid - components: - - pos: -24.5,-46.5 - parent: 1 - type: Transform -- uid: 14389 - type: WallSolid - components: - - pos: -24.5,-47.5 - parent: 1 - type: Transform -- uid: 14390 - type: WallSolid - components: - - pos: -22.5,-37.5 - parent: 1 - type: Transform -- uid: 14391 - type: WallSolid - components: - - pos: -23.5,-37.5 - parent: 1 - type: Transform -- uid: 14392 - type: WallSolid - components: - - pos: -24.5,-37.5 - parent: 1 - type: Transform -- uid: 14393 - type: WallSolid - components: - - pos: -25.5,-37.5 - parent: 1 - type: Transform -- uid: 14394 - type: WallSolid - components: - - pos: -26.5,-37.5 - parent: 1 - type: Transform -- uid: 14395 - type: AirlockMaintAtmoLocked - components: - - name: atmospherics - type: MetaData - - rot: 3.141592653589793 rad - pos: -24.5,-30.5 - parent: 1 - type: Transform -- uid: 14396 - type: OxygenCanister - components: - - pos: -25.5,-31.5 - parent: 1 - type: Transform -- uid: 14397 - type: ClosetEmergencyFilledRandom - components: - - pos: -23.5,-31.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14398 - type: TableReinforced - components: - - pos: -25.5,-35.5 - parent: 1 - type: Transform -- uid: 14399 - type: TableReinforced - components: - - pos: -25.5,-36.5 - parent: 1 - type: Transform -- uid: 14400 - type: TableReinforced - components: - - pos: -24.5,-36.5 - parent: 1 - type: Transform -- uid: 14401 - type: TableReinforced - components: - - pos: -23.5,-36.5 - parent: 1 - type: Transform -- uid: 14402 - type: FirelockGlass - components: - - pos: -21.5,-34.5 - parent: 1 - type: Transform -- uid: 14403 - type: BookAtmosDistro - components: - - pos: -24.608501,-36.51357 - parent: 1 - type: Transform -- uid: 14404 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -11.5,-10.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27282 - - port: Left - uid: 27282 - Forward: [] - Off: - - port: Middle - uid: 27282 - type: SignalReceiver -- uid: 14405 - type: BookAtmosAirAlarms - components: - - pos: -24.358501,-36.435444 - parent: 1 - type: Transform -- uid: 14406 - type: MedkitOxygenFilled - components: - - pos: -23.768847,-36.553474 - parent: 1 - type: Transform -- uid: 14407 - type: ClosetToolFilled - components: - - pos: -22.5,-31.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.25,-0.48 - - 0.25,0.48 - - -0.25,0.48 - - -0.25,-0.48 - mask: - - Impassable - - MidImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - type: Fixtures - - open: True - removedMasks: 20 - type: EntityStorage -- uid: 14408 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -22.5,-36.5 - parent: 1 - type: Transform -- uid: 14409 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-34.5 - parent: 1 - type: Transform -- uid: 14410 - type: SignAtmosMinsky - components: - - pos: -21.5,-33.5 - parent: 1 - type: Transform -- uid: 14411 - type: ClothingBeltUtilityFilled - components: - - pos: -30.494818,-37.432365 - parent: 1 - type: Transform -- uid: 14412 - type: LockerAtmosphericsFilled - components: - - pos: -33.5,-32.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14413 - type: ReinforcedWindow - components: - - pos: -37.5,-37.5 - parent: 1 - type: Transform -- uid: 14414 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-39.5 - parent: 1 - type: Transform -- uid: 14415 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-38.5 - parent: 1 - type: Transform -- uid: 14416 - type: WallSolid - components: - - pos: -35.5,-31.5 - parent: 1 - type: Transform -- uid: 14417 - type: WallSolid - components: - - pos: -36.5,-31.5 - parent: 1 - type: Transform -- uid: 14418 - type: WallSolid - components: - - pos: -37.5,-31.5 - parent: 1 - type: Transform -- uid: 14419 - type: WallSolid - components: - - pos: -38.5,-31.5 - parent: 1 - type: Transform -- uid: 14420 - type: WallSolid - components: - - pos: -39.5,-31.5 - parent: 1 - type: Transform -- uid: 14421 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 23.5,16.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14422 - type: WallReinforced - components: - - pos: -41.5,-31.5 - parent: 1 - type: Transform -- uid: 14423 - type: WallReinforced - components: - - pos: -41.5,-32.5 - parent: 1 - type: Transform -- uid: 14424 - type: WallReinforced - components: - - pos: -41.5,-36.5 - parent: 1 - type: Transform -- uid: 14425 - type: ReinforcedPlasmaWindow - components: - - pos: -41.5,-33.5 - parent: 1 - type: Transform -- uid: 14426 - type: ReinforcedPlasmaWindow - components: - - pos: -41.5,-35.5 - parent: 1 - type: Transform -- uid: 14427 - type: ReinforcedPlasmaWindow - components: - - pos: -41.5,-34.5 - parent: 1 - type: Transform -- uid: 14428 - type: WallReinforced - components: - - pos: -41.5,-37.5 - parent: 1 - type: Transform -- uid: 14429 - type: Table - components: - - pos: -30.5,-37.5 - parent: 1 - type: Transform -- uid: 14430 - type: WallSolid - components: - - pos: -30.5,-38.5 - parent: 1 - type: Transform -- uid: 14431 - type: WallSolid - components: - - pos: -30.5,-39.5 - parent: 1 - type: Transform -- uid: 14432 - type: AirlockMaintAtmoLocked - components: - - name: atmos - type: MetaData - - pos: -30.5,-40.5 - parent: 1 - type: Transform -- uid: 14433 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-37.5 - parent: 1 - type: Transform -- uid: 14434 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-37.5 - parent: 1 - type: Transform -- uid: 14435 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-37.5 - parent: 1 - type: Transform -- uid: 14436 - type: WallSolid - components: - - pos: -30.5,-41.5 - parent: 1 - type: Transform -- uid: 14437 - type: WallSolid - components: - - pos: -30.5,-42.5 - parent: 1 - type: Transform -- uid: 14438 - type: WallSolid - components: - - pos: -31.5,-42.5 - parent: 1 - type: Transform -- uid: 14439 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-42.5 - parent: 1 - type: Transform -- uid: 14440 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-42.5 - parent: 1 - type: Transform -- uid: 14441 - type: VendingMachineTankDispenserEngineering - components: - - flags: SessionSpecific - type: MetaData - - pos: -33.5,-37.5 - parent: 1 - type: Transform -- uid: 14442 - type: AirlockAtmosphericsLocked - components: - - pos: -31.5,-36.5 - parent: 1 - type: Transform -- uid: 14443 - type: AirlockAtmosphericsLocked - components: - - pos: -32.5,-36.5 - parent: 1 - type: Transform -- uid: 14444 - type: FirelockGlass - components: - - pos: -33.5,-40.5 - parent: 1 - type: Transform -- uid: 14445 - type: FirelockGlass - components: - - pos: -33.5,-41.5 - parent: 1 - type: Transform -- uid: 14446 - type: Grille - components: - - pos: -38.5,-37.5 - parent: 1 - type: Transform -- uid: 14447 - type: Grille - components: - - pos: -37.5,-37.5 - parent: 1 - type: Transform -- uid: 14448 - type: WallReinforced - components: - - pos: -44.5,-7.5 - parent: 1 - type: Transform -- uid: 14449 - type: WallReinforced - components: - - pos: -45.5,-7.5 - parent: 1 - type: Transform -- uid: 14450 - type: ReinforcedWindow - components: - - pos: -46.5,-7.5 - parent: 1 - type: Transform -- uid: 14451 - type: WallReinforced - components: - - pos: -47.5,-7.5 - parent: 1 - type: Transform -- uid: 14452 - type: WallReinforced - components: - - pos: -48.5,-7.5 - parent: 1 - type: Transform -- uid: 14453 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14454 - type: ReinforcedWindow - components: - - pos: -45.5,-18.5 - parent: 1 - type: Transform -- uid: 14455 - type: WallReinforced - components: - - pos: -49.5,-16.5 - parent: 1 - type: Transform -- uid: 14456 - type: WallReinforced - components: - - pos: -49.5,-10.5 - parent: 1 - type: Transform -- uid: 14457 - type: WallReinforced - components: - - pos: -49.5,-9.5 - parent: 1 - type: Transform -- uid: 14458 - type: WallReinforced - components: - - pos: -49.5,-8.5 - parent: 1 - type: Transform -- uid: 14459 - type: WallReinforced - components: - - pos: -49.5,-7.5 - parent: 1 - type: Transform -- uid: 14460 - type: WallReinforced - components: - - pos: -49.5,-17.5 - parent: 1 - type: Transform -- uid: 14461 - type: WallReinforced - components: - - pos: -49.5,-18.5 - parent: 1 - type: Transform -- uid: 14462 - type: WallReinforced - components: - - pos: -48.5,-18.5 - parent: 1 - type: Transform -- uid: 14463 - type: WallReinforced - components: - - pos: -47.5,-18.5 - parent: 1 - type: Transform -- uid: 14464 - type: WallReinforced - components: - - pos: -46.5,-18.5 - parent: 1 - type: Transform -- uid: 14465 - type: WallReinforced - components: - - pos: -49.5,-11.5 - parent: 1 - type: Transform -- uid: 14466 - type: WallReinforced - components: - - pos: -50.5,-11.5 - parent: 1 - type: Transform -- uid: 14467 - type: WallReinforced - components: - - pos: -51.5,-11.5 - parent: 1 - type: Transform -- uid: 14468 - type: WallReinforced - components: - - pos: -51.5,-12.5 - parent: 1 - type: Transform -- uid: 14469 - type: WallReinforced - components: - - pos: -51.5,-13.5 - parent: 1 - type: Transform -- uid: 14470 - type: WallReinforced - components: - - pos: -51.5,-14.5 - parent: 1 - type: Transform -- uid: 14471 - type: WallReinforced - components: - - pos: -51.5,-15.5 - parent: 1 - type: Transform -- uid: 14472 - type: WallReinforced - components: - - pos: -50.5,-15.5 - parent: 1 - type: Transform -- uid: 14473 - type: WallReinforced - components: - - pos: -49.5,-15.5 - parent: 1 - type: Transform -- uid: 14474 - type: WallSolid - components: - - pos: -48.5,-4.5 - parent: 1 - type: Transform -- uid: 14475 - type: WallSolid - components: - - pos: -47.5,-4.5 - parent: 1 - type: Transform -- uid: 14476 - type: WallSolid - components: - - pos: -46.5,-4.5 - parent: 1 - type: Transform -- uid: 14477 - type: WallSolid - components: - - pos: -45.5,-4.5 - parent: 1 - type: Transform -- uid: 14478 - type: WallSolid - components: - - pos: -44.5,-4.5 - parent: 1 - type: Transform -- uid: 14479 - type: WallReinforced - components: - - pos: -49.5,-4.5 - parent: 1 - type: Transform -- uid: 14480 - type: WallReinforced - components: - - pos: -50.5,-4.5 - parent: 1 - type: Transform -- uid: 14481 - type: WallReinforced - components: - - pos: -51.5,-4.5 - parent: 1 - type: Transform -- uid: 14482 - type: WallReinforced - components: - - pos: -52.5,-4.5 - parent: 1 - type: Transform -- uid: 14483 - type: WallReinforced - components: - - pos: -53.5,-4.5 - parent: 1 - type: Transform -- uid: 14484 - type: WallReinforced - components: - - pos: -54.5,-4.5 - parent: 1 - type: Transform -- uid: 14485 - type: WallReinforced - components: - - pos: -55.5,-4.5 - parent: 1 - type: Transform -- uid: 14486 - type: WallReinforced - components: - - pos: -55.5,-5.5 - parent: 1 - type: Transform -- uid: 14487 - type: WallReinforced - components: - - pos: -56.5,-5.5 - parent: 1 - type: Transform -- uid: 14488 - type: WallReinforced - components: - - pos: -56.5,-6.5 - parent: 1 - type: Transform -- uid: 14489 - type: WallReinforced - components: - - pos: -56.5,-7.5 - parent: 1 - type: Transform -- uid: 14490 - type: WallReinforced - components: - - pos: -56.5,-8.5 - parent: 1 - type: Transform -- uid: 14491 - type: WallReinforced - components: - - pos: -56.5,-9.5 - parent: 1 - type: Transform -- uid: 14492 - type: WallReinforced - components: - - pos: -56.5,-10.5 - parent: 1 - type: Transform -- uid: 14493 - type: ClosetEmergencyFilledRandom - components: - - pos: 47.5,-92.5 - parent: 1 - type: Transform -- uid: 14494 - type: ReinforcedPlasmaWindow - components: - - pos: -56.5,-11.5 - parent: 1 - type: Transform -- uid: 14495 - type: ReinforcedPlasmaWindow - components: - - pos: -56.5,-12.5 - parent: 1 - type: Transform -- uid: 14496 - type: ReinforcedPlasmaWindow - components: - - pos: -56.5,-13.5 - parent: 1 - type: Transform -- uid: 14497 - type: ReinforcedPlasmaWindow - components: - - pos: -56.5,-14.5 - parent: 1 - type: Transform -- uid: 14498 - type: WallReinforced - components: - - pos: -56.5,-16.5 - parent: 1 - type: Transform -- uid: 14499 - type: WallReinforced - components: - - pos: -56.5,-17.5 - parent: 1 - type: Transform -- uid: 14500 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-17.5 - parent: 1 - type: Transform -- uid: 14501 - type: WallReinforced - components: - - pos: -56.5,-19.5 - parent: 1 - type: Transform -- uid: 14502 - type: WallReinforced - components: - - pos: -56.5,-19.5 - parent: 1 - type: Transform -- uid: 14503 - type: CableMV - components: - - pos: -59.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14504 - type: WallSolid - components: - - pos: -55.5,-19.5 - parent: 1 - type: Transform -- uid: 14505 - type: WallSolid - components: - - pos: -55.5,-20.5 - parent: 1 - type: Transform -- uid: 14506 - type: FirelockGlass - components: - - pos: -54.5,-21.5 - parent: 1 - type: Transform -- uid: 14507 - type: PosterContrabandHighEffectEngineering - components: - - pos: -48.5,-7.5 - parent: 1 - type: Transform -- uid: 14508 - type: WallReinforced - components: - - pos: -52.5,-21.5 - parent: 1 - type: Transform -- uid: 14509 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -49.5,-19.5 - parent: 1 - type: Transform -- uid: 14510 - type: WallReinforced - components: - - pos: -50.5,-21.5 - parent: 1 - type: Transform -- uid: 14511 - type: WallReinforced - components: - - pos: -49.5,-21.5 - parent: 1 - type: Transform -- uid: 14512 - type: RCD - components: - - pos: -35.581818,-15.369191 - parent: 1 - type: Transform -- uid: 14513 - type: RCDAmmo - components: - - pos: -35.753693,-15.681691 - parent: 1 - type: Transform -- uid: 14514 - type: GasVentScrubber - components: - - pos: -44.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14515 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14516 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14517 - type: CableHV - components: - - pos: -42.5,-6.5 - parent: 1 - type: Transform -- uid: 14518 - type: CableHV - components: - - pos: -42.5,-10.5 - parent: 1 - type: Transform -- uid: 14519 - type: CableHV - components: - - pos: -42.5,-7.5 - parent: 1 - type: Transform -- uid: 14520 - type: CableHV - components: - - pos: -42.5,-8.5 - parent: 1 - type: Transform -- uid: 14521 - type: CableHV - components: - - pos: -46.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14522 - type: CableHV - components: - - pos: -46.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14523 - type: CableHV - components: - - pos: -46.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14524 - type: CableHV - components: - - pos: -46.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14525 - type: CableHV - components: - - pos: -46.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14526 - type: WallReinforced - components: - - pos: -44.5,-18.5 - parent: 1 - type: Transform -- uid: 14527 - type: WallReinforced - components: - - pos: -44.5,-18.5 - parent: 1 - type: Transform -- uid: 14528 - type: CableHV - components: - - pos: -46.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14529 - type: Catwalk - components: - - pos: -46.5,-9.5 - parent: 1 - type: Transform -- uid: 14530 - type: CableHV - components: - - pos: -46.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14531 - type: CableHV - components: - - pos: -46.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14532 - type: Catwalk - components: - - pos: -46.5,-10.5 - parent: 1 - type: Transform -- uid: 14533 - type: Catwalk - components: - - pos: -46.5,-11.5 - parent: 1 - type: Transform -- uid: 14534 - type: Catwalk - components: - - pos: -46.5,-12.5 - parent: 1 - type: Transform -- uid: 14535 - type: Catwalk - components: - - pos: -46.5,-13.5 - parent: 1 - type: Transform -- uid: 14536 - type: Catwalk - components: - - pos: -46.5,-14.5 - parent: 1 - type: Transform -- uid: 14537 - type: Catwalk - components: - - pos: -46.5,-15.5 - parent: 1 - type: Transform -- uid: 14538 - type: Catwalk - components: - - pos: -46.5,-16.5 - parent: 1 - type: Transform -- uid: 14539 - type: ShuttersNormalOpen - components: - - pos: 22.5,-40.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -81611.836 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 20965 - Close: - - port: Off - uid: 20965 - Toggle: [] - type: SignalReceiver -- uid: 14540 - type: CrateEngineeringAMEJar - components: - - pos: -50.5,-13.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14541 - type: CrateEngineeringAMEShielding - components: - - pos: -50.5,-14.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14542 - type: CrateEngineeringAMEShielding - components: - - pos: -50.5,-12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 14543 - type: GasPipeFourway - components: - - pos: -20.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14544 - type: AirlockEngineeringLocked - components: - - name: ame - type: MetaData - - pos: -43.5,-10.5 - parent: 1 - type: Transform -- uid: 14545 - type: CableHV - components: - - pos: -42.5,-9.5 - parent: 1 - type: Transform -- uid: 14546 - type: CableHV - components: - - pos: -46.5,-17.5 - parent: 1 - type: Transform -- uid: 14547 - type: CableHV - components: - - pos: -46.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14548 - type: CableHV - components: - - pos: -46.5,-19.5 - parent: 1 - type: Transform -- uid: 14549 - type: CableHV - components: - - pos: -47.5,-19.5 - parent: 1 - type: Transform -- uid: 14550 - type: CableHV - components: - - pos: -48.5,-19.5 - parent: 1 - type: Transform -- uid: 14551 - type: CableHV - components: - - pos: -48.5,-20.5 - parent: 1 - type: Transform -- uid: 14552 - type: CableHV - components: - - pos: -46.5,-20.5 - parent: 1 - type: Transform -- uid: 14553 - type: CableHV - components: - - pos: -45.5,-19.5 - parent: 1 - type: Transform -- uid: 14554 - type: CableHV - components: - - pos: -44.5,-19.5 - parent: 1 - type: Transform -- uid: 14555 - type: CableHV - components: - - pos: -44.5,-20.5 - parent: 1 - type: Transform -- uid: 14556 - type: CableTerminal - components: - - pos: -48.5,-20.5 - parent: 1 - type: Transform -- uid: 14557 - type: CableTerminal - components: - - pos: -46.5,-20.5 - parent: 1 - type: Transform -- uid: 14558 - type: CableTerminal - components: - - pos: -44.5,-20.5 - parent: 1 - type: Transform -- uid: 14559 - type: SMESBasic - components: - - pos: -48.5,-21.5 - parent: 1 - type: Transform -- uid: 14560 - type: SMESBasic - components: - - pos: -46.5,-21.5 - parent: 1 - type: Transform -- uid: 14561 - type: SMESBasic - components: - - pos: -44.5,-21.5 - parent: 1 - type: Transform -- uid: 14562 - type: CableHV - components: - - pos: -46.5,-21.5 - parent: 1 - type: Transform -- uid: 14563 - type: CableHV - components: - - pos: -48.5,-21.5 - parent: 1 - type: Transform -- uid: 14564 - type: CableHV - components: - - pos: -44.5,-21.5 - parent: 1 - type: Transform -- uid: 14565 - type: CableHV - components: - - pos: -46.5,-22.5 - parent: 1 - type: Transform -- uid: 14566 - type: CableHV - components: - - pos: -48.5,-22.5 - parent: 1 - type: Transform -- uid: 14567 - type: CableHV - components: - - pos: -44.5,-22.5 - parent: 1 - type: Transform -- uid: 14568 - type: CableHV - components: - - pos: -48.5,-23.5 - parent: 1 - type: Transform -- uid: 14569 - type: CableHV - components: - - pos: -47.5,-23.5 - parent: 1 - type: Transform -- uid: 14570 - type: CableHV - components: - - pos: -46.5,-23.5 - parent: 1 - type: Transform -- uid: 14571 - type: CableHV - components: - - pos: -44.5,-23.5 - parent: 1 - type: Transform -- uid: 14572 - type: CableHV - components: - - pos: -45.5,-23.5 - parent: 1 - type: Transform -- uid: 14573 - type: CableHV - components: - - pos: -46.5,-24.5 - parent: 1 - type: Transform -- uid: 14574 - type: CableHV - components: - - pos: -46.5,-25.5 - parent: 1 - type: Transform -- uid: 14575 - type: CableHV - components: - - pos: -47.5,-25.5 - parent: 1 - type: Transform -- uid: 14576 - type: CableHV - components: - - pos: -48.5,-25.5 - parent: 1 - type: Transform -- uid: 14577 - type: CableHV - components: - - pos: -49.5,-25.5 - parent: 1 - type: Transform -- uid: 14578 - type: CableHV - components: - - pos: -50.5,-25.5 - parent: 1 - type: Transform -- uid: 14579 - type: WallReinforced - components: - - pos: 55.5,-50.5 - parent: 1 - type: Transform -- uid: 14580 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14581 - type: CableHV - components: - - pos: -43.5,-22.5 - parent: 1 - type: Transform -- uid: 14582 - type: CableHV - components: - - pos: -42.5,-22.5 - parent: 1 - type: Transform -- uid: 14583 - type: CableHV - components: - - pos: -51.5,-21.5 - parent: 1 - type: Transform -- uid: 14584 - type: CableHV - components: - - pos: -41.5,-22.5 - parent: 1 - type: Transform -- uid: 14585 - type: CableHV - components: - - pos: -41.5,-21.5 - parent: 1 - type: Transform -- uid: 14586 - type: CableHV - components: - - pos: -41.5,-20.5 - parent: 1 - type: Transform -- uid: 14587 - type: WallReinforced - components: - - pos: -45.5,-24.5 - parent: 1 - type: Transform -- uid: 14588 - type: WallReinforced - components: - - pos: -49.5,-23.5 - parent: 1 - type: Transform -- uid: 14589 - type: WallReinforced - components: - - pos: -49.5,-22.5 - parent: 1 - type: Transform -- uid: 14590 - type: WallReinforced - components: - - pos: -49.5,-24.5 - parent: 1 - type: Transform -- uid: 14591 - type: WallReinforced - components: - - pos: -48.5,-24.5 - parent: 1 - type: Transform -- uid: 14592 - type: WallReinforced - components: - - pos: -47.5,-24.5 - parent: 1 - type: Transform -- uid: 14593 - type: WallReinforced - components: - - pos: 56.5,-50.5 - parent: 1 - type: Transform -- uid: 14594 - type: WallSolid - components: - - pos: -47.5,-26.5 - parent: 1 - type: Transform -- uid: 14595 - type: AirlockMaintEngiLocked - components: - - name: engineering - type: MetaData - - pos: -46.5,-26.5 - parent: 1 - type: Transform -- uid: 14596 - type: WallSolid - components: - - pos: -48.5,-26.5 - parent: 1 - type: Transform -- uid: 14597 - type: WallSolid - components: - - pos: -49.5,-26.5 - parent: 1 - type: Transform -- uid: 14598 - type: WallSolid - components: - - pos: -50.5,-26.5 - parent: 1 - type: Transform -- uid: 14599 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -41.5,15.5 - parent: 1 - type: Transform -- uid: 14600 - type: WallReinforced - components: - - pos: -52.5,-26.5 - parent: 1 - type: Transform -- uid: 14601 - type: WallReinforced - components: - - pos: -52.5,-25.5 - parent: 1 - type: Transform -- uid: 14602 - type: WallReinforced - components: - - pos: -52.5,-24.5 - parent: 1 - type: Transform -- uid: 14603 - type: WallReinforced - components: - - pos: -52.5,-23.5 - parent: 1 - type: Transform -- uid: 14604 - type: WallReinforced - components: - - pos: -52.5,-22.5 - parent: 1 - type: Transform -- uid: 14605 - type: WallReinforced - components: - - pos: -49.5,-20.5 - parent: 1 - type: Transform -- uid: 14606 - type: Grille - components: - - pos: -45.5,-18.5 - parent: 1 - type: Transform -- uid: 14607 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14608 - type: SurveillanceCameraMedical - components: - - pos: -10.5,-61.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: medical doctors corridor - type: SurveillanceCamera -- uid: 14609 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -44.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14610 - type: SurveillanceCameraMedical - components: - - rot: 3.141592653589793 rad - pos: -6.5,-52.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: medical beds - type: SurveillanceCamera -- uid: 14611 - type: CableHV - components: - - pos: -43.5,-6.5 - parent: 1 - type: Transform -- uid: 14612 - type: CableHV - components: - - pos: -44.5,-6.5 - parent: 1 - type: Transform -- uid: 14613 - type: CableHV - components: - - pos: -45.5,-6.5 - parent: 1 - type: Transform -- uid: 14614 - type: CableHV - components: - - pos: -46.5,-6.5 - parent: 1 - type: Transform -- uid: 14615 - type: CableHV - components: - - pos: -47.5,-6.5 - parent: 1 - type: Transform -- uid: 14616 - type: CableHV - components: - - pos: -48.5,-6.5 - parent: 1 - type: Transform -- uid: 14617 - type: CableHV - components: - - pos: -49.5,-6.5 - parent: 1 - type: Transform -- uid: 14618 - type: CableHV - components: - - pos: -50.5,-6.5 - parent: 1 - type: Transform -- uid: 14619 - type: CableHV - components: - - pos: -51.5,-6.5 - parent: 1 - type: Transform -- uid: 14620 - type: CableHV - components: - - pos: -52.5,-6.5 - parent: 1 - type: Transform -- uid: 14621 - type: CableHV - components: - - pos: -52.5,-7.5 - parent: 1 - type: Transform -- uid: 14622 - type: CableHV - components: - - pos: -52.5,-8.5 - parent: 1 - type: Transform -- uid: 14623 - type: CableHV - components: - - pos: -52.5,-9.5 - parent: 1 - type: Transform -- uid: 14624 - type: CableHV - components: - - pos: -41.5,-12.5 - parent: 1 - type: Transform -- uid: 14625 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -52.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14626 - type: CableHV - components: - - pos: -41.5,-13.5 - parent: 1 - type: Transform -- uid: 14627 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -52.5,-13.5 - parent: 1 - type: Transform -- uid: 14628 - type: CableHV - components: - - pos: -41.5,-14.5 - parent: 1 - type: Transform -- uid: 14629 - type: CableHV - components: - - pos: -41.5,-15.5 - parent: 1 - type: Transform -- uid: 14630 - type: CableHV - components: - - pos: -41.5,-18.5 - parent: 1 - type: Transform -- uid: 14631 - type: CableHV - components: - - pos: -41.5,-17.5 - parent: 1 - type: Transform -- uid: 14632 - type: CableHV - components: - - pos: -41.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14633 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -44.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14634 - type: AirlockEngineeringLocked - components: - - name: ame - type: MetaData - - rot: 1.5707963267948966 rad - pos: -43.5,-11.5 - parent: 1 - type: Transform -- uid: 14635 - type: ClothingHeadHatCone - components: - - pos: -40.213425,-17.545645 - parent: 1 - type: Transform -- uid: 14636 - type: Multitool - components: - - pos: -23.347115,-36.422188 - parent: 1 - type: Transform -- uid: 14637 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-13.5 - parent: 1 - type: Transform -- uid: 14638 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -46.5,-8.5 - parent: 1 - type: Transform -- uid: 14639 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -43.5,-13.5 - parent: 1 - type: Transform -- uid: 14640 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -46.5,-7.5 - parent: 1 - type: Transform -- uid: 14641 - type: CableApcExtension - components: - - pos: -42.5,-10.5 - parent: 1 - type: Transform -- uid: 14642 - type: CableApcExtension - components: - - pos: -43.5,-10.5 - parent: 1 - type: Transform -- uid: 14643 - type: CableApcExtension - components: - - pos: -44.5,-10.5 - parent: 1 - type: Transform -- uid: 14644 - type: CableApcExtension - components: - - pos: -45.5,-10.5 - parent: 1 - type: Transform -- uid: 14645 - type: CableApcExtension - components: - - pos: -46.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14646 - type: CableApcExtension - components: - - pos: -46.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14647 - type: CableApcExtension - components: - - pos: -46.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14648 - type: CableApcExtension - components: - - pos: -46.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14649 - type: CableApcExtension - components: - - pos: -46.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14650 - type: CableApcExtension - components: - - pos: -46.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14651 - type: CableApcExtension - components: - - pos: -46.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14652 - type: CableApcExtension - components: - - pos: -46.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14653 - type: CableApcExtension - components: - - pos: -47.5,-13.5 - parent: 1 - type: Transform -- uid: 14654 - type: CableApcExtension - components: - - pos: -48.5,-13.5 - parent: 1 - type: Transform -- uid: 14655 - type: CableApcExtension - components: - - pos: -49.5,-13.5 - parent: 1 - type: Transform -- uid: 14656 - type: CableApcExtension - components: - - pos: -45.5,-16.5 - parent: 1 - type: Transform -- uid: 14657 - type: CableApcExtension - components: - - pos: -45.5,-17.5 - parent: 1 - type: Transform -- uid: 14658 - type: CableApcExtension - components: - - pos: -45.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14659 - type: CableApcExtension - components: - - pos: -45.5,-19.5 - parent: 1 - type: Transform -- uid: 14660 - type: CableApcExtension - components: - - pos: -45.5,-20.5 - parent: 1 - type: Transform -- uid: 14661 - type: CableApcExtension - components: - - pos: -45.5,-21.5 - parent: 1 - type: Transform -- uid: 14662 - type: CableApcExtension - components: - - pos: -46.5,-20.5 - parent: 1 - type: Transform -- uid: 14663 - type: CableApcExtension - components: - - pos: -47.5,-20.5 - parent: 1 - type: Transform -- uid: 14664 - type: CableApcExtension - components: - - pos: -47.5,-21.5 - parent: 1 - type: Transform -- uid: 14665 - type: CableApcExtension - components: - - pos: -45.5,-22.5 - parent: 1 - type: Transform -- uid: 14666 - type: CableApcExtension - components: - - pos: -48.5,-22.5 - parent: 1 - type: Transform -- uid: 14667 - type: CableApcExtension - components: - - pos: -47.5,-22.5 - parent: 1 - type: Transform -- uid: 14668 - type: AirlockEngineeringGlassLocked - components: - - name: smes - type: MetaData - - rot: 3.141592653589793 rad - pos: -46.5,-24.5 - parent: 1 - type: Transform -- uid: 14669 - type: AirlockEngineeringGlassLocked - components: - - rot: 3.141592653589793 rad - pos: -51.5,-21.5 - parent: 1 - type: Transform -- uid: 14670 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -49.5,-19.5 - parent: 1 - type: Transform -- uid: 14671 - type: Rack - components: - - pos: -8.5,-10.5 - parent: 1 - type: Transform -- uid: 14672 - type: Rack - components: - - pos: -16.5,-16.5 - parent: 1 - type: Transform -- uid: 14673 - type: Rack - components: - - pos: -9.5,-10.5 - parent: 1 - type: Transform -- uid: 14674 - type: Rack - components: - - pos: -11.5,-8.5 - parent: 1 - type: Transform -- uid: 14675 - type: StorageCanister - components: - - pos: -16.5,-10.5 - parent: 1 - type: Transform -- uid: 14676 - type: AirCanister - components: - - pos: -15.5,-10.5 - parent: 1 - type: Transform -- uid: 14677 - type: AirlockEngineeringGlassLocked - components: - - pos: -40.5,-6.5 - parent: 1 - type: Transform -- uid: 14678 - type: AirlockEngineeringGlassLocked - components: - - pos: -40.5,-5.5 - parent: 1 - type: Transform -- uid: 14679 - type: WoodDoor - components: - - pos: -31.5,-5.5 - parent: 1 - type: Transform -- uid: 14680 - type: WallSolid - components: - - pos: -31.5,-6.5 - parent: 1 - type: Transform -- uid: 14681 - type: GasPipeBend - components: - - pos: -42.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14682 - type: GasPipeBend - components: - - pos: -41.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14683 - type: GasPipeTJunction - components: - - pos: -32.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14684 - type: GasPipeBend - components: - - pos: -31.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14685 - type: WallSolid - components: - - pos: -32.5,-6.5 - parent: 1 - type: Transform -- uid: 14686 - type: WallSolid - components: - - pos: -32.5,-8.5 - parent: 1 - type: Transform -- uid: 14687 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14688 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -42.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14689 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14690 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14691 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14692 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14693 - type: GasPipeTJunction - components: - - pos: -46.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14694 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -47.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14695 - type: WallSolid - components: - - pos: -31.5,-8.5 - parent: 1 - type: Transform -- uid: 14696 - type: WallSolid - components: - - pos: -33.5,-6.5 - parent: 1 - type: Transform -- uid: 14697 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14698 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -42.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14699 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -42.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14700 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14701 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14702 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14703 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14704 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14705 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14706 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14707 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14708 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14709 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14710 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14711 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14712 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14713 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14714 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14715 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14716 - type: GasPipeStraight - components: - - pos: -53.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14717 - type: GasPipeStraight - components: - - pos: -53.5,-7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14718 - type: GasPipeStraight - components: - - pos: -53.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14719 - type: GasPipeStraight - components: - - pos: -53.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14720 - type: GasPipeStraight - components: - - pos: -53.5,-10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14721 - type: GasPipeStraight - components: - - pos: -53.5,-11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14722 - type: GasPipeStraight - components: - - pos: -53.5,-12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14723 - type: GasPipeStraight - components: - - pos: -52.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14724 - type: GasPipeStraight - components: - - pos: -52.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14725 - type: GasPipeStraight - components: - - pos: -52.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14726 - type: GasPipeStraight - components: - - pos: -52.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14727 - type: GasPipeStraight - components: - - pos: -52.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14728 - type: GasPipeStraight - components: - - pos: -52.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14729 - type: GasPipeStraight - components: - - pos: -52.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14730 - type: GasPipeStraight - components: - - pos: -52.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14731 - type: GasPipeStraight - components: - - pos: -52.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14732 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14733 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14734 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14735 - type: CableHV - components: - - pos: -41.5,-16.5 - parent: 1 - type: Transform -- uid: 14736 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -53.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14737 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -53.5,-15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14738 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -53.5,-16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14739 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -53.5,-17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14740 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -53.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14741 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14742 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14743 - type: GasPipeBend - components: - - pos: -50.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14744 - type: GasPipeBend - components: - - pos: -51.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14745 - type: GasPipeStraight - components: - - pos: -50.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14746 - type: GasPipeStraight - components: - - pos: -50.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14747 - type: GasPipeStraight - components: - - pos: -50.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14748 - type: GasPipeStraight - components: - - pos: -50.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14749 - type: GasPipeStraight - components: - - pos: -50.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14750 - type: GasPipeStraight - components: - - pos: -51.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14751 - type: GasPipeStraight - components: - - pos: -51.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14752 - type: GasPipeStraight - components: - - pos: -51.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14753 - type: GasPipeStraight - components: - - pos: -51.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14754 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14755 - type: Table - components: - - pos: -57.5,-30.5 - parent: 1 - type: Transform -- uid: 14756 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -51.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14757 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -50.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14758 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14759 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14760 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14761 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14762 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14763 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14764 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14765 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14766 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14767 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -47.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14768 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 14769 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14770 - type: WallSolid - components: - - pos: -33.5,-5.5 - parent: 1 - type: Transform -- uid: 14771 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -46.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14772 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14773 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14774 - type: GasVentPump - components: - - pos: -45.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14775 - type: GasVentScrubber - components: - - pos: -47.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14776 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14777 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14778 - type: GasVentScrubber - components: - - pos: -47.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14779 - type: WoodDoor - components: - - pos: -31.5,-7.5 - parent: 1 - type: Transform -- uid: 14780 - type: AirlockEngineeringGlassLocked - components: - - pos: -43.5,-5.5 - parent: 1 - type: Transform -- uid: 14781 - type: AirlockEngineeringLocked - components: - - name: singularity - type: MetaData - - pos: -49.5,-6.5 - parent: 1 - type: Transform -- uid: 14782 - type: AirlockEngineeringLocked - components: - - name: singularity - type: MetaData - - pos: -49.5,-5.5 - parent: 1 - type: Transform -- uid: 14783 - type: WallSolid - components: - - pos: -37.5,-3.5 - parent: 1 - type: Transform -- uid: 14784 - type: WallSolid - components: - - pos: -36.5,-3.5 - parent: 1 - type: Transform -- uid: 14785 - type: DisposalTrunk - components: - - pos: -38.5,-4.5 - parent: 1 - type: Transform -- uid: 14786 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -32.5,-13.5 - parent: 1 - type: Transform -- uid: 14787 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -32.5,-12.5 - parent: 1 - type: Transform -- uid: 14788 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -32.5,-11.5 - parent: 1 - type: Transform -- uid: 14789 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-10.5 - parent: 1 - type: Transform -- uid: 14790 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-10.5 - parent: 1 - type: Transform -- uid: 14791 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-10.5 - parent: 1 - type: Transform -- uid: 14792 - type: DisposalPipe - components: - - pos: -36.5,-9.5 - parent: 1 - type: Transform -- uid: 14793 - type: DisposalBend - components: - - pos: -32.5,-10.5 - parent: 1 - type: Transform -- uid: 14794 - type: DisposalPipe - components: - - pos: -36.5,-8.5 - parent: 1 - type: Transform -- uid: 14795 - type: DisposalPipe - components: - - pos: -36.5,-7.5 - parent: 1 - type: Transform -- uid: 14796 - type: DisposalPipe - components: - - pos: -36.5,-6.5 - parent: 1 - type: Transform -- uid: 14797 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -36.5,-10.5 - parent: 1 - type: Transform -- uid: 14798 - type: DisposalBend - components: - - pos: -36.5,-5.5 - parent: 1 - type: Transform -- uid: 14799 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-5.5 - parent: 1 - type: Transform -- uid: 14800 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -38.5,-5.5 - parent: 1 - type: Transform -- uid: 14801 - type: DisposalUnit - components: - - pos: -38.5,-4.5 - parent: 1 - type: Transform -- uid: 14802 - type: CableApcExtension - components: - - pos: -38.5,-8.5 - parent: 1 - type: Transform -- uid: 14803 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14804 - type: CableApcExtension - components: - - pos: -35.5,-7.5 - parent: 1 - type: Transform -- uid: 14805 - type: CableApcExtension - components: - - pos: -35.5,-8.5 - parent: 1 - type: Transform -- uid: 14806 - type: CableApcExtension - components: - - pos: -34.5,-6.5 - parent: 1 - type: Transform -- uid: 14807 - type: CableApcExtension - components: - - pos: -35.5,-6.5 - parent: 1 - type: Transform -- uid: 14808 - type: CableApcExtension - components: - - pos: -36.5,-6.5 - parent: 1 - type: Transform -- uid: 14809 - type: CableApcExtension - components: - - pos: -37.5,-6.5 - parent: 1 - type: Transform -- uid: 14810 - type: CableApcExtension - components: - - pos: -38.5,-6.5 - parent: 1 - type: Transform -- uid: 14811 - type: CableApcExtension - components: - - pos: -39.5,-6.5 - parent: 1 - type: Transform -- uid: 14812 - type: CableApcExtension - components: - - pos: -40.5,-6.5 - parent: 1 - type: Transform -- uid: 14813 - type: CableApcExtension - components: - - pos: -41.5,-6.5 - parent: 1 - type: Transform -- uid: 14814 - type: CableApcExtension - components: - - pos: -38.5,-5.5 - parent: 1 - type: Transform -- uid: 14815 - type: CableHV - components: - - pos: -51.5,-9.5 - parent: 1 - type: Transform -- uid: 14816 - type: CableHV - components: - - pos: -50.5,-9.5 - parent: 1 - type: Transform -- uid: 14817 - type: CableHV - components: - - pos: -50.5,-8.5 - parent: 1 - type: Transform -- uid: 14818 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-9.5 - parent: 1 - type: Transform -- uid: 14819 - type: SMESBasic - components: - - pos: -50.5,-9.5 - parent: 1 - type: Transform -- uid: 14820 - type: SubstationBasic - components: - - pos: -50.5,-8.5 - parent: 1 - type: Transform -- uid: 14821 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-0.5 - parent: 1 - type: Transform -- uid: 14822 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 1 - type: Transform -- uid: 14823 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-0.5 - parent: 1 - type: Transform -- uid: 14824 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-0.5 - parent: 1 - type: Transform -- uid: 14825 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-0.5 - parent: 1 - type: Transform -- uid: 14826 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-12.5 - parent: 1 - type: Transform -- uid: 14827 - type: SingularityGenerator - components: - - pos: -66.5,-13.5 - parent: 1 - type: Transform -- uid: 14828 - type: ContainmentFieldGenerator - components: - - pos: -70.5,-9.5 - parent: 1 - type: Transform -- uid: 14829 - type: ContainmentFieldGenerator - components: - - pos: -62.5,-9.5 - parent: 1 - type: Transform -- uid: 14830 - type: ContainmentFieldGenerator - components: - - pos: -62.5,-17.5 - parent: 1 - type: Transform -- uid: 14831 - type: ContainmentFieldGenerator - components: - - pos: -70.5,-17.5 - parent: 1 - type: Transform -- uid: 14832 - type: Emitter - components: - - pos: -62.5,-6.5 - parent: 1 - type: Transform -- uid: 14833 - type: Emitter - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-9.5 - parent: 1 - type: Transform -- uid: 14834 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -73.5,-9.5 - parent: 1 - type: Transform -- uid: 14835 - type: Emitter - components: - - pos: -70.5,-6.5 - parent: 1 - type: Transform -- uid: 14836 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -73.5,-17.5 - parent: 1 - type: Transform -- uid: 14837 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: -70.5,-20.5 - parent: 1 - type: Transform -- uid: 14838 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: -62.5,-20.5 - parent: 1 - type: Transform -- uid: 14839 - type: Emitter - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-17.5 - parent: 1 - type: Transform -- uid: 14840 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-13.5 - parent: 1 - type: Transform -- uid: 14841 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-14.5 - parent: 1 - type: Transform -- uid: 14842 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-15.5 - parent: 1 - type: Transform -- uid: 14843 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-16.5 - parent: 1 - type: Transform -- uid: 14844 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-17.5 - parent: 1 - type: Transform -- uid: 14845 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-18.5 - parent: 1 - type: Transform -- uid: 14846 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-19.5 - parent: 1 - type: Transform -- uid: 14847 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-20.5 - parent: 1 - type: Transform -- uid: 14848 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-20.5 - parent: 1 - type: Transform -- uid: 14849 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-20.5 - parent: 1 - type: Transform -- uid: 14850 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-20.5 - parent: 1 - type: Transform -- uid: 14851 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-20.5 - parent: 1 - type: Transform -- uid: 14852 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-20.5 - parent: 1 - type: Transform -- uid: 14853 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-20.5 - parent: 1 - type: Transform -- uid: 14854 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-20.5 - parent: 1 - type: Transform -- uid: 14855 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-20.5 - parent: 1 - type: Transform -- uid: 14856 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -68.5,-20.5 - parent: 1 - type: Transform -- uid: 14857 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -69.5,-20.5 - parent: 1 - type: Transform -- uid: 14858 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-20.5 - parent: 1 - type: Transform -- uid: 14859 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -71.5,-20.5 - parent: 1 - type: Transform -- uid: 14860 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -72.5,-20.5 - parent: 1 - type: Transform -- uid: 14861 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-20.5 - parent: 1 - type: Transform -- uid: 14862 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-19.5 - parent: 1 - type: Transform -- uid: 14863 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-18.5 - parent: 1 - type: Transform -- uid: 14864 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-17.5 - parent: 1 - type: Transform -- uid: 14865 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-16.5 - parent: 1 - type: Transform -- uid: 14866 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-15.5 - parent: 1 - type: Transform -- uid: 14867 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-14.5 - parent: 1 - type: Transform -- uid: 14868 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-13.5 - parent: 1 - type: Transform -- uid: 14869 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-12.5 - parent: 1 - type: Transform -- uid: 14870 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-11.5 - parent: 1 - type: Transform -- uid: 14871 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-10.5 - parent: 1 - type: Transform -- uid: 14872 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-9.5 - parent: 1 - type: Transform -- uid: 14873 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-8.5 - parent: 1 - type: Transform -- uid: 14874 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-7.5 - parent: 1 - type: Transform -- uid: 14875 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-6.5 - parent: 1 - type: Transform -- uid: 14876 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -72.5,-6.5 - parent: 1 - type: Transform -- uid: 14877 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -71.5,-6.5 - parent: 1 - type: Transform -- uid: 14878 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-6.5 - parent: 1 - type: Transform -- uid: 14879 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -69.5,-6.5 - parent: 1 - type: Transform -- uid: 14880 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -68.5,-6.5 - parent: 1 - type: Transform -- uid: 14881 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-6.5 - parent: 1 - type: Transform -- uid: 14882 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-6.5 - parent: 1 - type: Transform -- uid: 14883 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-6.5 - parent: 1 - type: Transform -- uid: 14884 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-6.5 - parent: 1 - type: Transform -- uid: 14885 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-6.5 - parent: 1 - type: Transform -- uid: 14886 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-6.5 - parent: 1 - type: Transform -- uid: 14887 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-6.5 - parent: 1 - type: Transform -- uid: 14888 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-6.5 - parent: 1 - type: Transform -- uid: 14889 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-6.5 - parent: 1 - type: Transform -- uid: 14890 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-7.5 - parent: 1 - type: Transform -- uid: 14891 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-8.5 - parent: 1 - type: Transform -- uid: 14892 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-9.5 - parent: 1 - type: Transform -- uid: 14893 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-10.5 - parent: 1 - type: Transform -- uid: 14894 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-11.5 - parent: 1 - type: Transform -- uid: 14895 - type: ParticleAcceleratorEmitterLeftUnfinished - components: - - rot: 3.141592653589793 rad - pos: -65.5,-24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14896 - type: ParticleAcceleratorEmitterCenterUnfinished - components: - - rot: 3.141592653589793 rad - pos: -66.5,-24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14897 - type: ParticleAcceleratorEmitterRightUnfinished - components: - - rot: 3.141592653589793 rad - pos: -67.5,-24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14898 - type: ParticleAcceleratorPowerBoxUnfinished - components: - - rot: 3.141592653589793 rad - pos: -66.5,-25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14899 - type: ParticleAcceleratorFuelChamberUnfinished - components: - - rot: 3.141592653589793 rad - pos: -65.5,-26.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14900 - type: ParticleAcceleratorEndCapUnfinished - components: - - rot: 3.141592653589793 rad - pos: -66.5,-27.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14901 - type: ReinforcedPlasmaWindow - components: - - pos: -68.5,-22.5 - parent: 1 - type: Transform -- uid: 14902 - type: ReinforcedPlasmaWindow - components: - - pos: -67.5,-22.5 - parent: 1 - type: Transform -- uid: 14903 - type: ReinforcedPlasmaWindow - components: - - pos: -66.5,-22.5 - parent: 1 - type: Transform -- uid: 14904 - type: ReinforcedPlasmaWindow - components: - - pos: -65.5,-22.5 - parent: 1 - type: Transform -- uid: 14905 - type: ReinforcedPlasmaWindow - components: - - pos: -64.5,-22.5 - parent: 1 - type: Transform -- uid: 14906 - type: CableMV - components: - - pos: -57.5,-20.5 - parent: 1 - type: Transform -- uid: 14907 - type: CableMV - components: - - pos: -58.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14908 - type: CableHV - components: - - pos: -57.5,-20.5 - parent: 1 - type: Transform -- uid: 14909 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -58.5,-22.5 - parent: 1 - type: Transform -- uid: 14910 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -59.5,-22.5 - parent: 1 - type: Transform -- uid: 14911 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -60.5,-22.5 - parent: 1 - type: Transform -- uid: 14912 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -61.5,-22.5 - parent: 1 - type: Transform -- uid: 14913 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -62.5,-22.5 - parent: 1 - type: Transform -- uid: 14914 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -63.5,-22.5 - parent: 1 - type: Transform -- uid: 14915 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -69.5,-22.5 - parent: 1 - type: Transform -- uid: 14916 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -70.5,-22.5 - parent: 1 - type: Transform -- uid: 14917 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,-26.5 - parent: 1 - type: Transform -- uid: 14918 - type: ExtinguisherCabinetFilled - components: - - pos: -33.5,-39.5 - parent: 1 - type: Transform -- uid: 14919 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -55.5,-26.5 - parent: 1 - type: Transform -- uid: 14920 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-26.5 - parent: 1 - type: Transform -- uid: 14921 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -57.5,-26.5 - parent: 1 - type: Transform -- uid: 14922 - type: CableApcExtension - components: - - pos: -52.5,-31.5 - parent: 1 - type: Transform -- uid: 14923 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -59.5,-26.5 - parent: 1 - type: Transform -- uid: 14924 - type: WallReinforced - components: - - pos: -61.5,-26.5 - parent: 1 - type: Transform -- uid: 14925 - type: CableHV - components: - - pos: -14.5,45.5 - parent: 1 - type: Transform -- uid: 14926 - type: CableHV - components: - - pos: -14.5,44.5 - parent: 1 - type: Transform -- uid: 14927 - type: CableHV - components: - - pos: -56.5,-24.5 - parent: 1 - type: Transform -- uid: 14928 - type: WallReinforced - components: - - pos: -59.5,-29.5 - parent: 1 - type: Transform -- uid: 14929 - type: ReinforcedWindow - components: - - pos: -61.5,-31.5 - parent: 1 - type: Transform -- uid: 14930 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -63.5,-29.5 - parent: 1 - type: Transform -- uid: 14931 - type: WallSolid - components: - - pos: -65.5,-29.5 - parent: 1 - type: Transform -- uid: 14932 - type: AirlockEngineeringGlassLocked - components: - - pos: -69.5,-24.5 - parent: 1 - type: Transform -- uid: 14933 - type: ParticleAcceleratorControlBoxUnfinished - components: - - pos: -66.5,-30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 14934 - type: WallSolid - components: - - pos: -70.5,-27.5 - parent: 1 - type: Transform -- uid: 14935 - type: WallSolid - components: - - pos: -74.5,-27.5 - parent: 1 - type: Transform -- uid: 14936 - type: WallSolid - components: - - pos: -69.5,-28.5 - parent: 1 - type: Transform -- uid: 14937 - type: WallSolid - components: - - pos: -69.5,-29.5 - parent: 1 - type: Transform -- uid: 14938 - type: WallSolid - components: - - pos: -69.5,-30.5 - parent: 1 - type: Transform -- uid: 14939 - type: CableHV - components: - - pos: -65.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14940 - type: FirelockGlass - components: - - pos: -53.5,-21.5 - parent: 1 - type: Transform -- uid: 14941 - type: Firelock - components: - - pos: -60.5,-26.5 - parent: 1 - type: Transform -- uid: 14942 - type: AirlockEngineeringLocked - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-26.5 - parent: 1 - type: Transform -- uid: 14943 - type: RadiationCollector - components: - - pos: -63.5,-20.5 - parent: 1 - type: Transform -- uid: 14944 - type: RadiationCollector - components: - - pos: -64.5,-20.5 - parent: 1 - type: Transform -- uid: 14945 - type: RadiationCollector - components: - - pos: -65.5,-20.5 - parent: 1 - type: Transform -- uid: 14946 - type: RadiationCollector - components: - - pos: -67.5,-20.5 - parent: 1 - type: Transform -- uid: 14947 - type: RadiationCollector - components: - - pos: -68.5,-20.5 - parent: 1 - type: Transform -- uid: 14948 - type: RadiationCollector - components: - - pos: -69.5,-20.5 - parent: 1 - type: Transform -- uid: 14949 - type: RadiationCollector - components: - - pos: -63.5,-6.5 - parent: 1 - type: Transform -- uid: 14950 - type: RadiationCollector - components: - - pos: -64.5,-6.5 - parent: 1 - type: Transform -- uid: 14951 - type: RadiationCollector - components: - - pos: -65.5,-6.5 - parent: 1 - type: Transform -- uid: 14952 - type: RadiationCollector - components: - - pos: -69.5,-6.5 - parent: 1 - type: Transform -- uid: 14953 - type: RadiationCollector - components: - - pos: -68.5,-6.5 - parent: 1 - type: Transform -- uid: 14954 - type: RadiationCollector - components: - - pos: -67.5,-6.5 - parent: 1 - type: Transform -- uid: 14955 - type: SuperMatterBinStockPart - components: - - pos: -50.47893,-29.292162 - parent: 1 - type: Transform -- uid: 14956 - type: CableHV - components: - - pos: -53.5,-19.5 - parent: 1 - type: Transform -- uid: 14957 - type: CableHV - components: - - pos: -66.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14958 - type: CableHV - components: - - pos: -53.5,-21.5 - parent: 1 - type: Transform -- uid: 14959 - type: WallSolid - components: - - pos: -57.5,-29.5 - parent: 1 - type: Transform -- uid: 14960 - type: CableHV - components: - - pos: -57.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14961 - type: CableApcExtension - components: - - pos: -55.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14962 - type: CableApcExtension - components: - - pos: -55.5,-30.5 - parent: 1 - type: Transform -- uid: 14963 - type: WallSolid - components: - - pos: -53.5,-29.5 - parent: 1 - type: Transform -- uid: 14964 - type: CableApcExtension - components: - - pos: -57.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14965 - type: WallSolid - components: - - pos: -53.5,-30.5 - parent: 1 - type: Transform -- uid: 14966 - type: WallSolid - components: - - pos: -49.5,-27.5 - parent: 1 - type: Transform -- uid: 14967 - type: WallSolid - components: - - pos: -49.5,-28.5 - parent: 1 - type: Transform -- uid: 14968 - type: WallReinforced - components: - - pos: -62.5,-26.5 - parent: 1 - type: Transform -- uid: 14969 - type: Rack - components: - - pos: -50.5,-29.5 - parent: 1 - type: Transform -- uid: 14970 - type: AirlockMaintLocked - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-30.5 - parent: 1 - type: Transform -- uid: 14971 - type: WallReinforced - components: - - pos: -63.5,-27.5 - parent: 1 - type: Transform -- uid: 14972 - type: WallReinforced - components: - - pos: -63.5,-28.5 - parent: 1 - type: Transform -- uid: 14973 - type: WallReinforced - components: - - pos: -63.5,-26.5 - parent: 1 - type: Transform -- uid: 14974 - type: CableHV - components: - - pos: -64.5,-28.5 - parent: 1 - type: Transform -- uid: 14975 - type: CableHV - components: - - pos: -65.5,-28.5 - parent: 1 - type: Transform -- uid: 14976 - type: CableHV - components: - - pos: -66.5,-28.5 - parent: 1 - type: Transform -- uid: 14977 - type: CableHV - components: - - pos: -66.5,-27.5 - parent: 1 - type: Transform -- uid: 14978 - type: CableHV - components: - - pos: -66.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14979 - type: CableHV - components: - - pos: -64.5,-25.5 - parent: 1 - type: Transform -- uid: 14980 - type: WallSolid - components: - - pos: -56.5,-30.5 - parent: 1 - type: Transform -- uid: 14981 - type: WallSolid - components: - - pos: -56.5,-31.5 - parent: 1 - type: Transform -- uid: 14982 - type: WallSolid - components: - - pos: -57.5,-31.5 - parent: 1 - type: Transform -- uid: 14983 - type: FirelockGlass - components: - - pos: -69.5,-24.5 - parent: 1 - type: Transform -- uid: 14984 - type: CableHV - components: - - pos: -14.5,36.5 - parent: 1 - type: Transform -- uid: 14985 - type: CableApcExtension - components: - - pos: -39.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14986 - type: CableApcExtension - components: - - pos: -39.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14987 - type: CableHV - components: - - pos: -59.5,-23.5 - parent: 1 - type: Transform -- uid: 14988 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14989 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 14990 - type: CableMV - components: - - pos: -60.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 14991 - type: WallReinforced - components: - - pos: -59.5,-31.5 - parent: 1 - type: Transform -- uid: 14992 - type: Rack - components: - - pos: -50.5,-28.5 - parent: 1 - type: Transform -- uid: 14993 - type: WallReinforced - components: - - pos: -60.5,-31.5 - parent: 1 - type: Transform -- uid: 14994 - type: WallSolid - components: - - pos: -63.5,-25.5 - parent: 1 - type: Transform -- uid: 14995 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: -66.5,-29.5 - parent: 1 - type: Transform -- uid: 14996 - type: Grille - components: - - pos: -68.5,-22.5 - parent: 1 - type: Transform -- uid: 14997 - type: Grille - components: - - pos: -67.5,-22.5 - parent: 1 - type: Transform -- uid: 14998 - type: Grille - components: - - pos: -66.5,-22.5 - parent: 1 - type: Transform -- uid: 14999 - type: Grille - components: - - pos: -65.5,-22.5 - parent: 1 - type: Transform -- uid: 15000 - type: Grille - components: - - pos: -64.5,-22.5 - parent: 1 - type: Transform -- uid: 15001 - type: Grille - components: - - pos: -66.5,-29.5 - parent: 1 - type: Transform -- uid: 15002 - type: CableHV - components: - - pos: -56.5,-23.5 - parent: 1 - type: Transform -- uid: 15003 - type: CableHV - components: - - pos: -56.5,-22.5 - parent: 1 - type: Transform -- uid: 15004 - type: CableHV - components: - - pos: -56.5,-21.5 - parent: 1 - type: Transform -- uid: 15005 - type: CableHV - components: - - pos: -56.5,-20.5 - parent: 1 - type: Transform -- uid: 15006 - type: CableMV - components: - - pos: -61.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15007 - type: CableMV - components: - - pos: -62.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15008 - type: CableMV - components: - - pos: -63.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15009 - type: CableMV - components: - - pos: -64.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15010 - type: CableMV - components: - - pos: -65.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15011 - type: CableMV - components: - - pos: -66.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15012 - type: CableMV - components: - - pos: -67.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15013 - type: CableMV - components: - - pos: -68.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15014 - type: CableMV - components: - - pos: -69.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15015 - type: CableMV - components: - - pos: -70.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15016 - type: CableMV - components: - - pos: -71.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15017 - type: CableMV - components: - - pos: -72.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15018 - type: CableMV - components: - - pos: -73.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15019 - type: CableMV - components: - - pos: -73.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15020 - type: CableMV - components: - - pos: -73.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15021 - type: CableMV - components: - - pos: -73.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15022 - type: CableMV - components: - - pos: -73.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15023 - type: CableMV - components: - - pos: -73.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15024 - type: CableMV - components: - - pos: -73.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15025 - type: CableMV - components: - - pos: -73.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15026 - type: CableMV - components: - - pos: -73.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15027 - type: CableMV - components: - - pos: -73.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15028 - type: CableMV - components: - - pos: -73.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15029 - type: CableMV - components: - - pos: -73.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15030 - type: CableMV - components: - - pos: -73.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15031 - type: CableMV - components: - - pos: -73.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15032 - type: CableMV - components: - - pos: -73.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15033 - type: CableMV - components: - - pos: -72.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15034 - type: CableMV - components: - - pos: -71.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15035 - type: CableMV - components: - - pos: -70.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15036 - type: CableMV - components: - - pos: -69.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15037 - type: CableMV - components: - - pos: -68.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15038 - type: CableMV - components: - - pos: -67.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15039 - type: CableMV - components: - - pos: -66.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15040 - type: CableMV - components: - - pos: -65.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15041 - type: CableMV - components: - - pos: -64.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15042 - type: CableMV - components: - - pos: -63.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15043 - type: CableMV - components: - - pos: -62.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15044 - type: CableMV - components: - - pos: -61.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15045 - type: CableMV - components: - - pos: -60.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15046 - type: CableMV - components: - - pos: -59.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15047 - type: CableMV - components: - - pos: -59.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15048 - type: CableMV - components: - - pos: -59.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15049 - type: CableMV - components: - - pos: -59.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15050 - type: CableMV - components: - - pos: -59.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15051 - type: CableMV - components: - - pos: -59.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15052 - type: CableMV - components: - - pos: -59.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15053 - type: CableMV - components: - - pos: -59.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15054 - type: CableMV - components: - - pos: -59.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15055 - type: CableMV - components: - - pos: -59.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15056 - type: CableMV - components: - - pos: -59.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15057 - type: CableMV - components: - - pos: -59.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15058 - type: CableMV - components: - - pos: -59.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15059 - type: CableMV - components: - - pos: -59.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15060 - type: SMESBasic - components: - - pos: -56.5,-20.5 - parent: 1 - type: Transform -- uid: 15061 - type: SubstationBasic - components: - - pos: -57.5,-20.5 - parent: 1 - type: Transform -- uid: 15062 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: -56.5,-21.5 - parent: 1 - type: Transform -- uid: 15063 - type: CableMV - components: - - pos: -50.5,-8.5 - parent: 1 - type: Transform -- uid: 15064 - type: CableMV - components: - - pos: -51.5,-8.5 - parent: 1 - type: Transform -- uid: 15065 - type: CableMV - components: - - pos: -52.5,-8.5 - parent: 1 - type: Transform -- uid: 15066 - type: CableMV - components: - - pos: -53.5,-8.5 - parent: 1 - type: Transform -- uid: 15067 - type: CableMV - components: - - pos: -53.5,-9.5 - parent: 1 - type: Transform -- uid: 15068 - type: CableMV - components: - - pos: -53.5,-10.5 - parent: 1 - type: Transform -- uid: 15069 - type: CableMV - components: - - pos: -53.5,-11.5 - parent: 1 - type: Transform -- uid: 15070 - type: CableMV - components: - - pos: -53.5,-12.5 - parent: 1 - type: Transform -- uid: 15071 - type: CableMV - components: - - pos: -53.5,-13.5 - parent: 1 - type: Transform -- uid: 15072 - type: CableMV - components: - - pos: -53.5,-14.5 - parent: 1 - type: Transform -- uid: 15073 - type: CableMV - components: - - pos: -53.5,-15.5 - parent: 1 - type: Transform -- uid: 15074 - type: CableMV - components: - - pos: -53.5,-16.5 - parent: 1 - type: Transform -- uid: 15075 - type: CableMV - components: - - pos: -51.5,-16.5 - parent: 1 - type: Transform -- uid: 15076 - type: CableMV - components: - - pos: -52.5,-16.5 - parent: 1 - type: Transform -- uid: 15077 - type: CableMV - components: - - pos: -50.5,-16.5 - parent: 1 - type: Transform -- uid: 15078 - type: CableMV - components: - - pos: -50.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15079 - type: APCHighCapacity - components: - - pos: -50.5,-15.5 - parent: 1 - type: Transform -- uid: 15080 - type: CableApcExtension - components: - - pos: -50.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15081 - type: CableApcExtension - components: - - pos: -50.5,-16.5 - parent: 1 - type: Transform -- uid: 15082 - type: CableApcExtension - components: - - pos: -51.5,-16.5 - parent: 1 - type: Transform -- uid: 15083 - type: CableApcExtension - components: - - pos: -51.5,-17.5 - parent: 1 - type: Transform -- uid: 15084 - type: CableApcExtension - components: - - pos: -51.5,-18.5 - parent: 1 - type: Transform -- uid: 15085 - type: CableApcExtension - components: - - pos: -51.5,-19.5 - parent: 1 - type: Transform -- uid: 15086 - type: CableApcExtension - components: - - pos: -51.5,-20.5 - parent: 1 - type: Transform -- uid: 15087 - type: CableApcExtension - components: - - pos: -51.5,-21.5 - parent: 1 - type: Transform -- uid: 15088 - type: CableApcExtension - components: - - pos: -51.5,-22.5 - parent: 1 - type: Transform -- uid: 15089 - type: CableApcExtension - components: - - pos: -51.5,-23.5 - parent: 1 - type: Transform -- uid: 15090 - type: CableApcExtension - components: - - pos: -51.5,-24.5 - parent: 1 - type: Transform -- uid: 15091 - type: CableApcExtension - components: - - pos: -51.5,-25.5 - parent: 1 - type: Transform -- uid: 15092 - type: CableApcExtension - components: - - pos: -50.5,-25.5 - parent: 1 - type: Transform -- uid: 15093 - type: CableApcExtension - components: - - pos: -49.5,-25.5 - parent: 1 - type: Transform -- uid: 15094 - type: CableApcExtension - components: - - pos: -48.5,-25.5 - parent: 1 - type: Transform -- uid: 15095 - type: CableApcExtension - components: - - pos: -52.5,-19.5 - parent: 1 - type: Transform -- uid: 15096 - type: CableApcExtension - components: - - pos: -53.5,-19.5 - parent: 1 - type: Transform -- uid: 15097 - type: CableApcExtension - components: - - pos: -54.5,-19.5 - parent: 1 - type: Transform -- uid: 15098 - type: CableApcExtension - components: - - pos: -54.5,-20.5 - parent: 1 - type: Transform -- uid: 15099 - type: CableApcExtension - components: - - pos: -54.5,-21.5 - parent: 1 - type: Transform -- uid: 15100 - type: CableApcExtension - components: - - pos: -54.5,-22.5 - parent: 1 - type: Transform -- uid: 15101 - type: CableApcExtension - components: - - pos: -54.5,-23.5 - parent: 1 - type: Transform -- uid: 15102 - type: CableApcExtension - components: - - pos: -54.5,-24.5 - parent: 1 - type: Transform -- uid: 15103 - type: CableApcExtension - components: - - pos: -55.5,-24.5 - parent: 1 - type: Transform -- uid: 15104 - type: CableApcExtension - components: - - pos: -56.5,-24.5 - parent: 1 - type: Transform -- uid: 15105 - type: CableApcExtension - components: - - pos: -57.5,-24.5 - parent: 1 - type: Transform -- uid: 15106 - type: CableApcExtension - components: - - pos: -58.5,-24.5 - parent: 1 - type: Transform -- uid: 15107 - type: CableApcExtension - components: - - pos: -59.5,-24.5 - parent: 1 - type: Transform -- uid: 15108 - type: CableApcExtension - components: - - pos: -60.5,-24.5 - parent: 1 - type: Transform -- uid: 15109 - type: CableApcExtension - components: - - pos: -61.5,-24.5 - parent: 1 - type: Transform -- uid: 15110 - type: CableApcExtension - components: - - pos: -62.5,-24.5 - parent: 1 - type: Transform -- uid: 15111 - type: CableApcExtension - components: - - pos: -63.5,-24.5 - parent: 1 - type: Transform -- uid: 15112 - type: CableApcExtension - components: - - pos: -64.5,-24.5 - parent: 1 - type: Transform -- uid: 15113 - type: CableApcExtension - components: - - pos: -64.5,-25.5 - parent: 1 - type: Transform -- uid: 15114 - type: CableApcExtension - components: - - pos: -64.5,-26.5 - parent: 1 - type: Transform -- uid: 15115 - type: CableApcExtension - components: - - pos: -64.5,-27.5 - parent: 1 - type: Transform -- uid: 15116 - type: CableApcExtension - components: - - pos: -64.5,-28.5 - parent: 1 - type: Transform -- uid: 15117 - type: CableApcExtension - components: - - pos: -64.5,-29.5 - parent: 1 - type: Transform -- uid: 15118 - type: CableApcExtension - components: - - pos: -64.5,-30.5 - parent: 1 - type: Transform -- uid: 15119 - type: CableApcExtension - components: - - pos: -65.5,-30.5 - parent: 1 - type: Transform -- uid: 15120 - type: CableApcExtension - components: - - pos: -66.5,-30.5 - parent: 1 - type: Transform -- uid: 15121 - type: CableApcExtension - components: - - pos: -67.5,-30.5 - parent: 1 - type: Transform -- uid: 15122 - type: CableApcExtension - components: - - pos: -68.5,-30.5 - parent: 1 - type: Transform -- uid: 15123 - type: CableApcExtension - components: - - pos: -65.5,-30.5 - parent: 1 - type: Transform -- uid: 15124 - type: CableApcExtension - components: - - pos: -65.5,-31.5 - parent: 1 - type: Transform -- uid: 15125 - type: CableApcExtension - components: - - pos: -65.5,-32.5 - parent: 1 - type: Transform -- uid: 15126 - type: CableApcExtension - components: - - pos: -68.5,-31.5 - parent: 1 - type: Transform -- uid: 15127 - type: CableApcExtension - components: - - pos: -68.5,-28.5 - parent: 1 - type: Transform -- uid: 15128 - type: CableApcExtension - components: - - pos: -68.5,-27.5 - parent: 1 - type: Transform -- uid: 15129 - type: CableApcExtension - components: - - pos: -68.5,-26.5 - parent: 1 - type: Transform -- uid: 15130 - type: CableApcExtension - components: - - pos: -68.5,-29.5 - parent: 1 - type: Transform -- uid: 15131 - type: CableApcExtension - components: - - pos: -54.5,-18.5 - parent: 1 - type: Transform -- uid: 15132 - type: CableApcExtension - components: - - pos: -54.5,-17.5 - parent: 1 - type: Transform -- uid: 15133 - type: CableApcExtension - components: - - pos: -54.5,-16.5 - parent: 1 - type: Transform -- uid: 15134 - type: CableApcExtension - components: - - pos: -54.5,-15.5 - parent: 1 - type: Transform -- uid: 15135 - type: CableApcExtension - components: - - pos: -54.5,-14.5 - parent: 1 - type: Transform -- uid: 15136 - type: CableApcExtension - components: - - pos: -54.5,-13.5 - parent: 1 - type: Transform -- uid: 15137 - type: CableApcExtension - components: - - pos: -54.5,-12.5 - parent: 1 - type: Transform -- uid: 15138 - type: CableApcExtension - components: - - pos: -54.5,-11.5 - parent: 1 - type: Transform -- uid: 15139 - type: CableApcExtension - components: - - pos: -54.5,-10.5 - parent: 1 - type: Transform -- uid: 15140 - type: CableApcExtension - components: - - pos: -54.5,-9.5 - parent: 1 - type: Transform -- uid: 15141 - type: CableApcExtension - components: - - pos: -54.5,-8.5 - parent: 1 - type: Transform -- uid: 15142 - type: CableApcExtension - components: - - pos: -54.5,-7.5 - parent: 1 - type: Transform -- uid: 15143 - type: CableApcExtension - components: - - pos: -54.5,-6.5 - parent: 1 - type: Transform -- uid: 15144 - type: CableApcExtension - components: - - pos: -53.5,-7.5 - parent: 1 - type: Transform -- uid: 15145 - type: CableApcExtension - components: - - pos: -52.5,-7.5 - parent: 1 - type: Transform -- uid: 15146 - type: CableApcExtension - components: - - pos: -51.5,-7.5 - parent: 1 - type: Transform -- uid: 15147 - type: CableApcExtension - components: - - pos: -52.5,-6.5 - parent: 1 - type: Transform -- uid: 15148 - type: WallSolid - components: - - pos: -57.5,-22.5 - parent: 1 - type: Transform -- uid: 15149 - type: WallReinforced - components: - - pos: -57.5,-19.5 - parent: 1 - type: Transform -- uid: 15150 - type: WallReinforced - components: - - pos: -58.5,-19.5 - parent: 1 - type: Transform -- uid: 15151 - type: WallReinforced - components: - - pos: -58.5,-20.5 - parent: 1 - type: Transform -- uid: 15152 - type: WallReinforced - components: - - pos: -58.5,-21.5 - parent: 1 - type: Transform -- uid: 15153 - type: WallSolid - components: - - pos: -55.5,-21.5 - parent: 1 - type: Transform -- uid: 15154 - type: WallSolid - components: - - pos: -55.5,-22.5 - parent: 1 - type: Transform -- uid: 15155 - type: AirlockEngineering - components: - - name: substation - type: MetaData - - pos: -56.5,-22.5 - parent: 1 - type: Transform -- uid: 15156 - type: WallReinforced - components: - - pos: -62.5,-31.5 - parent: 1 - type: Transform -- uid: 15157 - type: WallReinforced - components: - - pos: -63.5,-31.5 - parent: 1 - type: Transform -- uid: 15158 - type: WallReinforced - components: - - pos: -68.5,-33.5 - parent: 1 - type: Transform -- uid: 15159 - type: ReinforcedWindow - components: - - pos: -65.5,-33.5 - parent: 1 - type: Transform -- uid: 15160 - type: ReinforcedWindow - components: - - pos: -66.5,-33.5 - parent: 1 - type: Transform -- uid: 15161 - type: ReinforcedWindow - components: - - pos: -67.5,-33.5 - parent: 1 - type: Transform -- uid: 15162 - type: WallSolid - components: - - pos: -49.5,-30.5 - parent: 1 - type: Transform -- uid: 15163 - type: WallReinforced - components: - - pos: -64.5,-33.5 - parent: 1 - type: Transform -- uid: 15164 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -69.5,-31.5 - parent: 1 - type: Transform -- uid: 15165 - type: WallReinforced - components: - - pos: -63.5,-32.5 - parent: 1 - type: Transform -- uid: 15166 - type: WallSolid - components: - - pos: -71.5,-27.5 - parent: 1 - type: Transform -- uid: 15167 - type: ClosetRadiationSuitFilled - components: - - pos: -59.5,-23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15168 - type: ClosetRadiationSuitFilled - components: - - pos: -60.5,-23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15169 - type: SignRadiationMed - components: - - pos: -63.5,-25.5 - parent: 1 - type: Transform -- uid: 15170 - type: Table - components: - - pos: -62.5,-27.5 - parent: 1 - type: Transform -- uid: 15171 - type: MedkitRadiationFilled - components: - - pos: -62.43085,-27.543978 - parent: 1 - type: Transform -- uid: 15172 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: -61.5,-30.5 - parent: 1 - type: Transform -- uid: 15173 - type: SignLaserMed - components: - - rot: 3.141592653589793 rad - pos: -63.5,-29.5 - parent: 1 - type: Transform -- uid: 15174 - type: AirlockEngineeringLocked - components: - - name: PA control - type: MetaData - - pos: -63.5,-30.5 - parent: 1 - type: Transform -- uid: 15175 - type: WallSolid - components: - - pos: -67.5,-29.5 - parent: 1 - type: Transform -- uid: 15176 - type: WallReinforced - components: - - pos: -64.5,-32.5 - parent: 1 - type: Transform -- uid: 15177 - type: WallReinforced - components: - - pos: -71.5,-34.5 - parent: 1 - type: Transform -- uid: 15178 - type: WallSolid - components: - - pos: -54.5,-29.5 - parent: 1 - type: Transform -- uid: 15179 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-26.5 - parent: 1 - type: Transform -- uid: 15180 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-26.5 - parent: 1 - type: Transform -- uid: 15181 - type: Grille - components: - - pos: -56.5,-11.5 - parent: 1 - type: Transform -- uid: 15182 - type: Grille - components: - - pos: -56.5,-12.5 - parent: 1 - type: Transform -- uid: 15183 - type: Grille - components: - - pos: -56.5,-13.5 - parent: 1 - type: Transform -- uid: 15184 - type: Grille - components: - - pos: -56.5,-14.5 - parent: 1 - type: Transform -- uid: 15185 - type: Grille - components: - - pos: -56.5,-15.5 - parent: 1 - type: Transform -- uid: 15186 - type: BlastDoorOpen - components: - - pos: -56.5,-11.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -304517.88 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 15197 - Close: - - port: Off - uid: 15197 - Toggle: [] - type: SignalReceiver -- uid: 15187 - type: BlastDoorOpen - components: - - pos: -56.5,-12.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -304517.88 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 15197 - Close: - - port: Off - uid: 15197 - Toggle: [] - type: SignalReceiver -- uid: 15188 - type: BlastDoorOpen - components: - - pos: -56.5,-13.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -304517.88 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 15197 - Close: - - port: Off - uid: 15197 - Toggle: [] - type: SignalReceiver -- uid: 15189 - type: BlastDoorOpen - components: - - pos: -56.5,-14.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -304517.88 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 15197 - Close: - - port: Off - uid: 15197 - Toggle: [] - type: SignalReceiver -- uid: 15190 - type: BlastDoorOpen - components: - - pos: -56.5,-15.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -304517.88 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 15197 - Close: - - port: Off - uid: 15197 - Toggle: [] - type: SignalReceiver -- uid: 15191 - type: BlastDoorOpen - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-22.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -73715.53 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 15196 - Close: - - port: Off - uid: 15196 - Toggle: [] - type: SignalReceiver -- uid: 15192 - type: BlastDoorOpen - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-22.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -73715.53 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 15196 - Close: - - port: Off - uid: 15196 - Toggle: [] - type: SignalReceiver -- uid: 15193 - type: BlastDoorOpen - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-22.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -73715.53 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 15196 - Close: - - port: Off - uid: 15196 - Toggle: [] - type: SignalReceiver -- uid: 15194 - type: BlastDoorOpen - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-22.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -73715.53 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 15196 - Close: - - port: Off - uid: 15196 - Toggle: [] - type: SignalReceiver -- uid: 15195 - type: BlastDoorOpen - components: - - rot: -1.5707963267948966 rad - pos: -68.5,-22.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -73715.53 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 15196 - Close: - - port: Off - uid: 15196 - Toggle: [] - type: SignalReceiver -- uid: 15196 - type: SignalSwitch - components: - - pos: -62.5,-26.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 15195 - - port: Open - uid: 15194 - - port: Open - uid: 15193 - - port: Open - uid: 15192 - - port: Open - uid: 15191 - Off: - - port: Close - uid: 15195 - - port: Close - uid: 15194 - - port: Close - uid: 15193 - - port: Close - uid: 15192 - - port: Close - uid: 15191 - type: SignalTransmitter - - type: ItemCooldown -- uid: 15197 - type: SignalSwitch - components: - - pos: -52.5,-11.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 15186 - - port: Open - uid: 15187 - - port: Open - uid: 15188 - - port: Open - uid: 15189 - - port: Open - uid: 15190 - Off: - - port: Close - uid: 15186 - - port: Close - uid: 15187 - - port: Close - uid: 15188 - - port: Close - uid: 15189 - - port: Close - uid: 15190 - type: SignalTransmitter -- uid: 15198 - type: WallSolid - components: - - pos: -53.5,-31.5 - parent: 1 - type: Transform -- uid: 15199 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 15200 - type: CableApcExtension - components: - - pos: -56.5,-28.5 - parent: 1 - type: Transform -- uid: 15201 - type: CableApcExtension - components: - - pos: -55.5,-29.5 - parent: 1 - type: Transform -- uid: 15202 - type: Table - components: - - pos: -67.5,-32.5 - parent: 1 - type: Transform -- uid: 15203 - type: Table - components: - - pos: -66.5,-32.5 - parent: 1 - type: Transform -- uid: 15204 - type: Table - components: - - pos: -65.5,-32.5 - parent: 1 - type: Transform -- uid: 15205 - type: Grille - components: - - pos: -65.5,-33.5 - parent: 1 - type: Transform -- uid: 15206 - type: Grille - components: - - pos: -66.5,-33.5 - parent: 1 - type: Transform -- uid: 15207 - type: Grille - components: - - pos: -67.5,-33.5 - parent: 1 - type: Transform -- uid: 15208 - type: CableHV - components: - - pos: -64.5,-29.5 - parent: 1 - type: Transform -- uid: 15209 - type: CableHV - components: - - pos: -64.5,-30.5 - parent: 1 - type: Transform -- uid: 15210 - type: CableHV - components: - - pos: -63.5,-30.5 - parent: 1 - type: Transform -- uid: 15211 - type: CableHV - components: - - pos: -62.5,-30.5 - parent: 1 - type: Transform -- uid: 15212 - type: CableHV - components: - - pos: -61.5,-30.5 - parent: 1 - type: Transform -- uid: 15213 - type: CableHV - components: - - pos: -60.5,-30.5 - parent: 1 - type: Transform -- uid: 15214 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -40.5,-23.5 - parent: 1 - type: Transform -- uid: 15215 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -41.5,-23.5 - parent: 1 - type: Transform -- uid: 15216 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -41.5,-19.5 - parent: 1 - type: Transform -- uid: 15217 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -42.5,-23.5 - parent: 1 - type: Transform -- uid: 15218 - type: CableHV - components: - - pos: -64.5,-31.5 - parent: 1 - type: Transform -- uid: 15219 - type: CableHV - components: - - pos: -64.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15220 - type: CableHV - components: - - pos: -64.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15221 - type: CableHV - components: - - pos: -65.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15222 - type: CableHV - components: - - pos: -66.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15223 - type: CableHV - components: - - pos: -67.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15224 - type: CableHV - components: - - pos: -68.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15225 - type: EmergencyLight - components: - - pos: -61.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 15226 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 15227 - type: ComputerAlert - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-12.5 - parent: 1 - type: Transform -- uid: 15228 - type: Rack - components: - - pos: -50.5,-27.5 - parent: 1 - type: Transform -- uid: 15229 - type: Grille - components: - - pos: -61.5,-31.5 - parent: 1 - type: Transform -- uid: 15230 - type: WallReinforced - components: - - pos: -59.5,-27.5 - parent: 1 - type: Transform -- uid: 15231 - type: GasPipeStraight - components: - - pos: -53.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15232 - type: GasPipeStraight - components: - - pos: -53.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15233 - type: GasPipeStraight - components: - - pos: -53.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15234 - type: GasPipeStraight - components: - - pos: -53.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15235 - type: GasPipeStraight - components: - - pos: -53.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15236 - type: GasPipeStraight - components: - - pos: -54.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15237 - type: GasPipeStraight - components: - - pos: -54.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15238 - type: GasPipeStraight - components: - - pos: -54.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15239 - type: GasPipeStraight - components: - - pos: -54.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15240 - type: GasPipeStraight - components: - - pos: -54.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15241 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15242 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15243 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15244 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15245 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15246 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15247 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15248 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15249 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15250 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15251 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15252 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15253 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -59.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15254 - type: GasPipeTJunction - components: - - pos: -56.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15255 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15256 - type: CableApcExtension - components: - - pos: -39.5,-70.5 - parent: 1 - type: Transform -- uid: 15257 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15258 - type: CableHV - components: - - pos: -14.5,42.5 - parent: 1 - type: Transform -- uid: 15259 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15260 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15261 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15262 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15263 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15264 - type: GasPipeTJunction - components: - - pos: -68.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15265 - type: GasPipeStraight - components: - - pos: -68.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15266 - type: GasPipeStraight - components: - - pos: -68.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15267 - type: GasPipeStraight - components: - - pos: -68.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15268 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15269 - type: GasPipeStraight - components: - - pos: -68.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15270 - type: GasPipeStraight - components: - - pos: -68.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15271 - type: GasPipeStraight - components: - - pos: -68.5,-30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15272 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15273 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15274 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15275 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15276 - type: GasPipeTJunction - components: - - pos: -64.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15277 - type: GasPipeStraight - components: - - pos: -64.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15278 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15279 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15280 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,-29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15281 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -64.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15282 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -56.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15283 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15284 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -68.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15285 - type: GasVentPump - components: - - pos: -59.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15286 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -65.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15287 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -64.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15288 - type: Wrench - components: - - pos: -65.459496,-32.443497 - parent: 1 - type: Transform -- uid: 15289 - type: WallSolid - components: - - pos: -56.5,-29.5 - parent: 1 - type: Transform -- uid: 15290 - type: Screwdriver - components: - - pos: -62.449627,-28.095568 - parent: 1 - type: Transform -- uid: 15291 - type: WallReinforced - components: - - pos: -50.5,-55.5 - parent: 1 - type: Transform -- uid: 15292 - type: WallReinforced - components: - - pos: -50.5,-53.5 - parent: 1 - type: Transform -- uid: 15293 - type: WallReinforced - components: - - pos: -50.5,-51.5 - parent: 1 - type: Transform -- uid: 15294 - type: WallReinforced - components: - - pos: -50.5,-49.5 - parent: 1 - type: Transform -- uid: 15295 - type: WallReinforced - components: - - pos: -50.5,-47.5 - parent: 1 - type: Transform -- uid: 15296 - type: WallReinforced - components: - - pos: -50.5,-45.5 - parent: 1 - type: Transform -- uid: 15297 - type: WallReinforced - components: - - pos: -50.5,-43.5 - parent: 1 - type: Transform -- uid: 15298 - type: WallReinforced - components: - - pos: -50.5,-41.5 - parent: 1 - type: Transform -- uid: 15299 - type: WallReinforced - components: - - pos: -49.5,-41.5 - parent: 1 - type: Transform -- uid: 15300 - type: WallReinforced - components: - - pos: -48.5,-41.5 - parent: 1 - type: Transform -- uid: 15301 - type: WallReinforced - components: - - pos: -47.5,-41.5 - parent: 1 - type: Transform -- uid: 15302 - type: WallReinforced - components: - - pos: -49.5,-43.5 - parent: 1 - type: Transform -- uid: 15303 - type: WallReinforced - components: - - pos: -48.5,-43.5 - parent: 1 - type: Transform -- uid: 15304 - type: WallReinforced - components: - - pos: -47.5,-43.5 - parent: 1 - type: Transform -- uid: 15305 - type: WallReinforced - components: - - pos: -49.5,-45.5 - parent: 1 - type: Transform -- uid: 15306 - type: WallReinforced - components: - - pos: -48.5,-45.5 - parent: 1 - type: Transform -- uid: 15307 - type: WallReinforced - components: - - pos: -47.5,-45.5 - parent: 1 - type: Transform -- uid: 15308 - type: WallReinforced - components: - - pos: -49.5,-47.5 - parent: 1 - type: Transform -- uid: 15309 - type: WallReinforced - components: - - pos: -48.5,-47.5 - parent: 1 - type: Transform -- uid: 15310 - type: WallReinforced - components: - - pos: -47.5,-47.5 - parent: 1 - type: Transform -- uid: 15311 - type: WallReinforced - components: - - pos: -49.5,-49.5 - parent: 1 - type: Transform -- uid: 15312 - type: WallReinforced - components: - - pos: -48.5,-49.5 - parent: 1 - type: Transform -- uid: 15313 - type: WallReinforced - components: - - pos: -47.5,-49.5 - parent: 1 - type: Transform -- uid: 15314 - type: WallReinforced - components: - - pos: -49.5,-51.5 - parent: 1 - type: Transform -- uid: 15315 - type: WallReinforced - components: - - pos: -48.5,-51.5 - parent: 1 - type: Transform -- uid: 15316 - type: WallReinforced - components: - - pos: -47.5,-51.5 - parent: 1 - type: Transform -- uid: 15317 - type: WallReinforced - components: - - pos: -49.5,-53.5 - parent: 1 - type: Transform -- uid: 15318 - type: WallReinforced - components: - - pos: -48.5,-53.5 - parent: 1 - type: Transform -- uid: 15319 - type: WallReinforced - components: - - pos: -47.5,-53.5 - parent: 1 - type: Transform -- uid: 15320 - type: WallReinforced - components: - - pos: -49.5,-55.5 - parent: 1 - type: Transform -- uid: 15321 - type: WallReinforced - components: - - pos: -48.5,-55.5 - parent: 1 - type: Transform -- uid: 15322 - type: WallReinforced - components: - - pos: -47.5,-55.5 - parent: 1 - type: Transform -- uid: 15323 - type: WallReinforced - components: - - pos: -51.5,-55.5 - parent: 1 - type: Transform -- uid: 15324 - type: WallReinforced - components: - - pos: -51.5,-54.5 - parent: 1 - type: Transform -- uid: 15325 - type: WallReinforced - components: - - pos: -51.5,-53.5 - parent: 1 - type: Transform -- uid: 15326 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -50.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15327 - type: WallReinforced - components: - - pos: -51.5,-51.5 - parent: 1 - type: Transform -- uid: 15328 - type: WallReinforced - components: - - pos: -51.5,-50.5 - parent: 1 - type: Transform -- uid: 15329 - type: WallReinforced - components: - - pos: -51.5,-49.5 - parent: 1 - type: Transform -- uid: 15330 - type: WallReinforced - components: - - pos: -51.5,-48.5 - parent: 1 - type: Transform -- uid: 15331 - type: WallReinforced - components: - - pos: -51.5,-47.5 - parent: 1 - type: Transform -- uid: 15332 - type: WallReinforced - components: - - pos: -51.5,-46.5 - parent: 1 - type: Transform -- uid: 15333 - type: WallReinforced - components: - - pos: -51.5,-45.5 - parent: 1 - type: Transform -- uid: 15334 - type: WallReinforced - components: - - pos: -51.5,-44.5 - parent: 1 - type: Transform -- uid: 15335 - type: WallReinforced - components: - - pos: -51.5,-43.5 - parent: 1 - type: Transform -- uid: 15336 - type: WallReinforced - components: - - pos: -51.5,-42.5 - parent: 1 - type: Transform -- uid: 15337 - type: WallReinforced - components: - - pos: -51.5,-41.5 - parent: 1 - type: Transform -- uid: 15338 - type: ReinforcedPlasmaWindow - components: - - pos: -47.5,-54.5 - parent: 1 - type: Transform -- uid: 15339 - type: ReinforcedPlasmaWindow - components: - - pos: -47.5,-50.5 - parent: 1 - type: Transform -- uid: 15340 - type: ReinforcedPlasmaWindow - components: - - pos: -47.5,-52.5 - parent: 1 - type: Transform -- uid: 15341 - type: ReinforcedPlasmaWindow - components: - - pos: -47.5,-48.5 - parent: 1 - type: Transform -- uid: 15342 - type: ReinforcedPlasmaWindow - components: - - pos: -47.5,-46.5 - parent: 1 - type: Transform -- uid: 15343 - type: ReinforcedPlasmaWindow - components: - - pos: -47.5,-44.5 - parent: 1 - type: Transform -- uid: 15344 - type: ReinforcedPlasmaWindow - components: - - pos: -47.5,-42.5 - parent: 1 - type: Transform -- uid: 15345 - type: Grille - components: - - pos: -47.5,-54.5 - parent: 1 - type: Transform -- uid: 15346 - type: Grille - components: - - pos: -47.5,-52.5 - parent: 1 - type: Transform -- uid: 15347 - type: Grille - components: - - pos: -47.5,-50.5 - parent: 1 - type: Transform -- uid: 15348 - type: Grille - components: - - pos: -47.5,-48.5 - parent: 1 - type: Transform -- uid: 15349 - type: Grille - components: - - pos: -47.5,-46.5 - parent: 1 - type: Transform -- uid: 15350 - type: Grille - components: - - pos: -47.5,-44.5 - parent: 1 - type: Transform -- uid: 15351 - type: Grille - components: - - pos: -47.5,-42.5 - parent: 1 - type: Transform -- uid: 15352 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15353 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15354 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-50.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15355 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15356 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-46.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15357 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15358 - type: GasOutletInjector - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15359 - type: GasPassiveVent - components: - - pos: -50.5,-54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15360 - type: GasPassiveVent - components: - - pos: -50.5,-50.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15361 - type: GasPassiveVent - components: - - pos: -50.5,-48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15362 - type: GasPassiveVent - components: - - pos: -50.5,-46.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15363 - type: GasPassiveVent - components: - - pos: -50.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15364 - type: GasPassiveVent - components: - - pos: -50.5,-42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15365 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -50.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15366 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -50.5,-51.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15367 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -50.5,-49.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15368 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -50.5,-47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15369 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -50.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15370 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -50.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15371 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15372 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15373 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-46.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15374 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15375 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-50.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15376 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15377 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15378 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15379 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15380 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15381 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15382 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15383 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15384 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-51.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15385 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-51.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15386 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-51.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15387 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-49.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15388 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-49.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15389 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-49.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15390 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15391 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15392 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15393 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15394 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15395 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15396 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15397 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15398 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15399 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15400 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15401 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15402 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15403 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-50.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15404 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-50.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15405 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15406 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15407 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-46.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15408 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-46.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15409 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15410 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15411 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15412 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15413 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15414 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15415 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15416 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -43.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15417 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15418 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15419 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15420 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15421 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-51.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15422 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-51.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15423 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-51.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15424 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-51.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15425 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-49.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15426 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-49.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15427 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-49.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15428 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-49.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15429 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15430 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15431 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15432 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15433 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15434 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15435 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15436 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15437 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15438 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15439 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15440 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15441 - type: GasMixerFlipped - components: - - pos: -42.5,-51.5 - parent: 1 - type: Transform - - inletTwoConcentration: 0 - inletOneConcentration: 1 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 15442 - type: GasMixerFlipped - components: - - pos: -42.5,-52.5 - parent: 1 - type: Transform - - inletTwoConcentration: 1 - inletOneConcentration: 0 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 15443 - type: GasMixerFlipped - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-55.5 - parent: 1 - type: Transform - - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - type: GasMixer - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15444 - type: GasMixerFlipped - components: - - pos: -42.5,-49.5 - parent: 1 - type: Transform - - inletTwoConcentration: 0 - inletOneConcentration: 1 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 15445 - type: GasMixerFlipped - components: - - pos: -42.5,-47.5 - parent: 1 - type: Transform - - inletTwoConcentration: 0 - inletOneConcentration: 1 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 15446 - type: GasFilterFlipped - components: - - pos: -44.5,-46.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15447 - type: GasMixerFlipped - components: - - pos: -42.5,-45.5 - parent: 1 - type: Transform - - inletTwoConcentration: 0 - inletOneConcentration: 1 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 15448 - type: GasMixerFlipped - components: - - pos: -42.5,-43.5 - parent: 1 - type: Transform - - inletTwoConcentration: 0 - inletOneConcentration: 1 - type: GasMixer - - bodyType: Static - type: Physics -- uid: 15449 - type: GasFilterFlipped - components: - - pos: -44.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15450 - type: GasFilterFlipped - components: - - pos: -44.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15451 - type: GasFilterFlipped - components: - - pos: -44.5,-48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15452 - type: GasFilterFlipped - components: - - pos: -44.5,-50.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15453 - type: GasFilterFlipped - components: - - pos: -44.5,-52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15454 - type: GasFilterFlipped - components: - - pos: -44.5,-54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15455 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15456 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -42.5,-54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15457 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -43.5,-54.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15458 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -43.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15459 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15460 - type: GasPipeStraight - components: - - pos: -42.5,-50.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15461 - type: GasPipeStraight - components: - - pos: -42.5,-48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15462 - type: GasPipeStraight - components: - - pos: -42.5,-46.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15463 - type: GasPipeStraight - components: - - pos: -42.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15464 - type: GasPipeStraight - components: - - pos: -42.5,-42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15465 - type: GasPipeStraight - components: - - pos: -44.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15466 - type: GasPipeStraight - components: - - pos: -44.5,-45.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15467 - type: GasPipeStraight - components: - - pos: -44.5,-47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15468 - type: GasPipeStraight - components: - - pos: -44.5,-49.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15469 - type: GasPipeStraight - components: - - pos: -44.5,-51.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15470 - type: GasPipeStraight - components: - - pos: -44.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15471 - type: GasPipeStraight - components: - - pos: -44.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15472 - type: GasPipeStraight - components: - - pos: -44.5,-56.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15473 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -44.5,-57.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15474 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-57.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15475 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-57.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15476 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-57.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15477 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-57.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15478 - type: GasVolumePump - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15479 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-55.5 - parent: 1 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15480 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -40.5,-55.5 - parent: 1 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15481 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15482 - type: OxygenCanister - components: - - pos: -50.5,-52.5 - parent: 1 - type: Transform -- uid: 15483 - type: NitrogenCanister - components: - - pos: -50.5,-54.5 - parent: 1 - type: Transform -- uid: 15484 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15485 - type: GasValve - components: - - pos: -44.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15486 - type: GasValve - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15487 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15488 - type: GasPassiveVent - components: - - pos: -44.5,-38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15489 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15490 - type: WallReinforced - components: - - pos: -47.5,-38.5 - parent: 1 - type: Transform -- uid: 15491 - type: CableApcExtension - components: - - pos: 55.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15492 - type: ReinforcedWindow - components: - - pos: -45.5,-43.5 - parent: 1 - type: Transform -- uid: 15493 - type: WallReinforced - components: - - pos: -45.5,-39.5 - parent: 1 - type: Transform -- uid: 15494 - type: WallReinforced - components: - - pos: -43.5,-39.5 - parent: 1 - type: Transform -- uid: 15495 - type: WallReinforced - components: - - pos: -41.5,-39.5 - parent: 1 - type: Transform -- uid: 15496 - type: WallReinforced - components: - - pos: -41.5,-38.5 - parent: 1 - type: Transform -- uid: 15497 - type: ReinforcedWindow - components: - - pos: -44.5,-39.5 - parent: 1 - type: Transform -- uid: 15498 - type: Grille - components: - - pos: -44.5,-39.5 - parent: 1 - type: Transform -- uid: 15499 - type: ReinforcedWindow - components: - - pos: -45.5,-45.5 - parent: 1 - type: Transform -- uid: 15500 - type: ReinforcedWindow - components: - - pos: -45.5,-46.5 - parent: 1 - type: Transform -- uid: 15501 - type: ReinforcedWindow - components: - - pos: -45.5,-44.5 - parent: 1 - type: Transform -- uid: 15502 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-30.5 - parent: 1 - type: Transform -- uid: 15503 - type: SignSpace - components: - - pos: -58.5,-53.5 - parent: 1 - type: Transform -- uid: 15504 - type: WallSolid - components: - - pos: -51.5,-26.5 - parent: 1 - type: Transform -- uid: 15505 - type: CableHV - components: - - pos: -60.5,-29.5 - parent: 1 - type: Transform -- uid: 15506 - type: CableHV - components: - - pos: -60.5,-26.5 - parent: 1 - type: Transform -- uid: 15507 - type: CableHV - components: - - pos: -60.5,-25.5 - parent: 1 - type: Transform -- uid: 15508 - type: CableHV - components: - - pos: -59.5,-25.5 - parent: 1 - type: Transform -- uid: 15509 - type: CableHV - components: - - pos: -58.5,-25.5 - parent: 1 - type: Transform -- uid: 15510 - type: CableHV - components: - - pos: -56.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15511 - type: CableHV - components: - - pos: -58.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15512 - type: CableHV - components: - - pos: -52.5,-19.5 - parent: 1 - type: Transform -- uid: 15513 - type: CableHV - components: - - pos: -51.5,-19.5 - parent: 1 - type: Transform -- uid: 15514 - type: CableHV - components: - - pos: -50.5,-19.5 - parent: 1 - type: Transform -- uid: 15515 - type: CableHV - components: - - pos: -49.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15516 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -58.5,-31.5 - parent: 1 - type: Transform -- uid: 15517 - type: ScanningModuleStockPart - components: - - pos: -50.47893,-28.448412 - parent: 1 - type: Transform -- uid: 15518 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -57.5,-5.5 - parent: 1 - type: Transform -- uid: 15519 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -57.5,-4.5 - parent: 1 - type: Transform -- uid: 15520 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -58.5,-4.5 - parent: 1 - type: Transform -- uid: 15521 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -59.5,-4.5 - parent: 1 - type: Transform -- uid: 15522 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -60.5,-4.5 - parent: 1 - type: Transform -- uid: 15523 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -61.5,-4.5 - parent: 1 - type: Transform -- uid: 15524 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -62.5,-4.5 - parent: 1 - type: Transform -- uid: 15525 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -63.5,-4.5 - parent: 1 - type: Transform -- uid: 15526 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -64.5,-4.5 - parent: 1 - type: Transform -- uid: 15527 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -65.5,-4.5 - parent: 1 - type: Transform -- uid: 15528 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -66.5,-4.5 - parent: 1 - type: Transform -- uid: 15529 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -67.5,-4.5 - parent: 1 - type: Transform -- uid: 15530 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -68.5,-4.5 - parent: 1 - type: Transform -- uid: 15531 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -69.5,-4.5 - parent: 1 - type: Transform -- uid: 15532 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -70.5,-4.5 - parent: 1 - type: Transform -- uid: 15533 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -71.5,-4.5 - parent: 1 - type: Transform -- uid: 15534 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -72.5,-4.5 - parent: 1 - type: Transform -- uid: 15535 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -73.5,-4.5 - parent: 1 - type: Transform -- uid: 15536 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -74.5,-4.5 - parent: 1 - type: Transform -- uid: 15537 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-4.5 - parent: 1 - type: Transform -- uid: 15538 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-5.5 - parent: 1 - type: Transform -- uid: 15539 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-6.5 - parent: 1 - type: Transform -- uid: 15540 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-7.5 - parent: 1 - type: Transform -- uid: 15541 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-8.5 - parent: 1 - type: Transform -- uid: 15542 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-9.5 - parent: 1 - type: Transform -- uid: 15543 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-10.5 - parent: 1 - type: Transform -- uid: 15544 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-11.5 - parent: 1 - type: Transform -- uid: 15545 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-13.5 - parent: 1 - type: Transform -- uid: 15546 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-14.5 - parent: 1 - type: Transform -- uid: 15547 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-15.5 - parent: 1 - type: Transform -- uid: 15548 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-16.5 - parent: 1 - type: Transform -- uid: 15549 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-17.5 - parent: 1 - type: Transform -- uid: 15550 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-18.5 - parent: 1 - type: Transform -- uid: 15551 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-19.5 - parent: 1 - type: Transform -- uid: 15552 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-20.5 - parent: 1 - type: Transform -- uid: 15553 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-21.5 - parent: 1 - type: Transform -- uid: 15554 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -75.5,-22.5 - parent: 1 - type: Transform -- uid: 15555 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -74.5,-22.5 - parent: 1 - type: Transform -- uid: 15556 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -73.5,-22.5 - parent: 1 - type: Transform -- uid: 15557 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -72.5,-22.5 - parent: 1 - type: Transform -- uid: 15558 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -71.5,-22.5 - parent: 1 - type: Transform -- uid: 15559 - type: GasPressurePump - components: - - pos: -40.5,-54.5 - parent: 1 - type: Transform - - color: '#03FCD3FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15560 - type: GasValve - components: - - pos: -40.5,-53.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15561 - type: GasValve - components: - - rot: 3.141592653589793 rad - pos: -38.5,-58.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15562 - type: ReinforcedWindow - components: - - pos: -45.5,-42.5 - parent: 1 - type: Transform -- uid: 15563 - type: WallReinforced - components: - - pos: -45.5,-57.5 - parent: 1 - type: Transform -- uid: 15564 - type: WallReinforced - components: - - pos: -45.5,-56.5 - parent: 1 - type: Transform -- uid: 15565 - type: WallReinforced - components: - - pos: -45.5,-58.5 - parent: 1 - type: Transform -- uid: 15566 - type: ReinforcedWindow - components: - - pos: -35.5,-58.5 - parent: 1 - type: Transform -- uid: 15567 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -39.5,-59.5 - parent: 1 - type: Transform -- uid: 15568 - type: WallReinforced - components: - - pos: -43.5,-58.5 - parent: 1 - type: Transform -- uid: 15569 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -38.5,-59.5 - parent: 1 - type: Transform -- uid: 15570 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -36.5,-58.5 - parent: 1 - type: Transform -- uid: 15571 - type: WallReinforced - components: - - pos: -40.5,-58.5 - parent: 1 - type: Transform -- uid: 15572 - type: ReinforcedWindow - components: - - pos: -44.5,-58.5 - parent: 1 - type: Transform -- uid: 15573 - type: ReinforcedWindow - components: - - pos: -42.5,-58.5 - parent: 1 - type: Transform -- uid: 15574 - type: AirlockAtmosphericsGlassLocked - components: - - pos: -45.5,-40.5 - parent: 1 - type: Transform -- uid: 15575 - type: ReinforcedWindow - components: - - pos: -41.5,-58.5 - parent: 1 - type: Transform -- uid: 15576 - type: WallSolid - components: - - pos: -41.5,-49.5 - parent: 1 - type: Transform -- uid: 15577 - type: WallSolid - components: - - pos: -41.5,-48.5 - parent: 1 - type: Transform -- uid: 15578 - type: WallSolid - components: - - pos: -41.5,-47.5 - parent: 1 - type: Transform -- uid: 15579 - type: WallSolid - components: - - pos: -40.5,-47.5 - parent: 1 - type: Transform -- uid: 15580 - type: WallSolid - components: - - pos: -36.5,-49.5 - parent: 1 - type: Transform -- uid: 15581 - type: WallSolid - components: - - pos: -36.5,-50.5 - parent: 1 - type: Transform -- uid: 15582 - type: WallSolid - components: - - pos: -36.5,-51.5 - parent: 1 - type: Transform -- uid: 15583 - type: WallSolid - components: - - pos: -36.5,-52.5 - parent: 1 - type: Transform -- uid: 15584 - type: WallSolid - components: - - pos: -36.5,-48.5 - parent: 1 - type: Transform -- uid: 15585 - type: WallSolid - components: - - pos: -41.5,-50.5 - parent: 1 - type: Transform -- uid: 15586 - type: WallSolid - components: - - pos: -41.5,-51.5 - parent: 1 - type: Transform -- uid: 15587 - type: WallSolid - components: - - pos: -41.5,-52.5 - parent: 1 - type: Transform -- uid: 15588 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -37.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15589 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15590 - type: WallSolid - components: - - pos: -36.5,-47.5 - parent: 1 - type: Transform -- uid: 15591 - type: WallSolid - components: - - pos: 69.5,-60.5 - parent: 1 - type: Transform -- uid: 15592 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: -42.5,-40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15593 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -42.5,-39.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15594 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -42.5,-38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15595 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -42.5,-37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15596 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -42.5,-36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15597 - type: GasOutletInjector - components: - - pos: -42.5,-35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15598 - type: WallReinforced - components: - - pos: -42.5,-31.5 - parent: 1 - type: Transform -- uid: 15599 - type: WallReinforced - components: - - pos: -43.5,-31.5 - parent: 1 - type: Transform -- uid: 15600 - type: WallReinforced - components: - - pos: -43.5,-32.5 - parent: 1 - type: Transform -- uid: 15601 - type: WallReinforced - components: - - pos: -44.5,-32.5 - parent: 1 - type: Transform -- uid: 15602 - type: WallReinforced - components: - - pos: -45.5,-32.5 - parent: 1 - type: Transform -- uid: 15603 - type: WallReinforced - components: - - pos: -45.5,-36.5 - parent: 1 - type: Transform -- uid: 15604 - type: Firelock - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-63.5 - parent: 1 - type: Transform -- uid: 15605 - type: WallReinforced - components: - - pos: -43.5,-37.5 - parent: 1 - type: Transform -- uid: 15606 - type: AirlockAtmosphericsGlassLocked - components: - - pos: -42.5,-37.5 - parent: 1 - type: Transform -- uid: 15607 - type: Grille - components: - - pos: -41.5,-33.5 - parent: 1 - type: Transform -- uid: 15608 - type: Grille - components: - - pos: -41.5,-34.5 - parent: 1 - type: Transform -- uid: 15609 - type: Grille - components: - - pos: -41.5,-35.5 - parent: 1 - type: Transform -- uid: 15610 - type: ReinforcedPlasmaWindow - components: - - pos: -45.5,-33.5 - parent: 1 - type: Transform -- uid: 15611 - type: ReinforcedPlasmaWindow - components: - - pos: -45.5,-35.5 - parent: 1 - type: Transform -- uid: 15612 - type: Grille - components: - - pos: -45.5,-33.5 - parent: 1 - type: Transform -- uid: 15613 - type: Grille - components: - - pos: -45.5,-35.5 - parent: 1 - type: Transform -- uid: 15614 - type: BlastDoorExterior1 - components: - - pos: -45.5,-34.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -388237.7 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 15615 - Close: - - port: Off - uid: 15615 - Toggle: [] - type: SignalReceiver -- uid: 15615 - type: SignalSwitch - components: - - pos: -43.5,-39.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 15614 - Off: - - port: Close - uid: 15614 - type: SignalTransmitter -- uid: 15616 - type: PosterLegitJustAWeekAway - components: - - pos: -37.5,-31.5 - parent: 1 - type: Transform -- uid: 15617 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-18.5 - parent: 1 - type: Transform -- uid: 15618 - type: PosterContrabandMissingGloves - components: - - pos: 41.5,-52.5 - parent: 1 - type: Transform -- uid: 15619 - type: TableReinforced - components: - - pos: -36.5,-33.5 - parent: 1 - type: Transform -- uid: 15620 - type: TableReinforced - components: - - pos: -36.5,-32.5 - parent: 1 - type: Transform -- uid: 15621 - type: TableReinforced - components: - - pos: -37.5,-32.5 - parent: 1 - type: Transform -- uid: 15622 - type: TableReinforced - components: - - pos: -38.5,-32.5 - parent: 1 - type: Transform -- uid: 15623 - type: TableReinforced - components: - - pos: -39.5,-32.5 - parent: 1 - type: Transform -- uid: 15624 - type: TableReinforced - components: - - pos: -58.5,-25.5 - parent: 1 - type: Transform -- uid: 15625 - type: TableReinforced - components: - - pos: -57.5,-25.5 - parent: 1 - type: Transform -- uid: 15626 - type: TableReinforced - components: - - pos: -56.5,-25.5 - parent: 1 - type: Transform -- uid: 15627 - type: TableReinforced - components: - - pos: -55.5,-25.5 - parent: 1 - type: Transform -- uid: 15628 - type: TableReinforced - components: - - pos: -54.5,-25.5 - parent: 1 - type: Transform -- uid: 15629 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -38.5,-60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 15630 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,-59.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15631 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -40.5,-59.5 - parent: 1 - type: Transform -- uid: 15632 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -40.5,-52.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15633 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,-52.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15634 - type: GasValve - components: - - pos: -37.5,-53.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15635 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-51.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15636 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-51.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15637 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-50.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15638 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-49.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15639 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-49.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15640 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-50.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15641 - type: GasPressurePump - components: - - pos: -37.5,-54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15642 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-49.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15643 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-50.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15644 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-51.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15645 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-49.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15646 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-50.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15647 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-51.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15648 - type: StorageCanister - components: - - pos: -38.5,-51.5 - parent: 1 - type: Transform -- uid: 15649 - type: StorageCanister - components: - - pos: -38.5,-50.5 - parent: 1 - type: Transform -- uid: 15650 - type: StorageCanister - components: - - pos: -38.5,-49.5 - parent: 1 - type: Transform -- uid: 15651 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15652 - type: GasPipeTJunction - components: - - pos: -38.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15653 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15654 - type: GasPipeBend - components: - - pos: -37.5,-48.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15655 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-48.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15656 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-48.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15657 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -38.5,-48.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15658 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,-47.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15659 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,-46.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15660 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15661 - type: GasPipeStraight - components: - - pos: -31.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15662 - type: GasPipeStraight - components: - - pos: -32.5,-31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15663 - type: GasPipeStraight - components: - - pos: -32.5,-32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15664 - type: GasPipeStraight - components: - - pos: -31.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15665 - type: GasPipeTJunction - components: - - pos: -33.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15666 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -30.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15667 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -31.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15668 - type: GasPipeFourway - components: - - pos: -31.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15669 - type: GasPipeFourway - components: - - pos: -32.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15670 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -32.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15671 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15672 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15673 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15674 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15675 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15676 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15677 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15678 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15679 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15680 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15681 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15682 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15683 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15684 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15685 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15686 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15687 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15688 - type: GasPipeStraight - components: - - pos: -32.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15689 - type: GasPipeStraight - components: - - pos: -32.5,-36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15690 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15691 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15692 - type: GasPipeStraight - components: - - pos: -32.5,-39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15693 - type: GasPipeStraight - components: - - pos: -31.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15694 - type: GasPipeStraight - components: - - pos: -31.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15695 - type: GasPipeStraight - components: - - pos: -31.5,-38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15696 - type: GasPipeStraight - components: - - pos: -31.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15697 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15698 - type: GasPipeStraight - components: - - pos: -31.5,-40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15699 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -33.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15700 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15701 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15702 - type: GasVentPump - components: - - pos: -30.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15703 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15704 - type: GasPipeStraight - components: - - pos: -32.5,-38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15705 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15706 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15707 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15708 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15709 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15710 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15711 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15712 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15713 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-43.5 - parent: 1 - type: Transform -- uid: 15714 - type: GasPipeStraight - components: - - pos: -37.5,-55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15715 - type: GasPipeStraight - components: - - pos: -37.5,-56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15716 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15717 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -35.5,-55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15718 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15719 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15720 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -35.5,-54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15721 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -35.5,-52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15722 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -35.5,-51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15723 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -35.5,-50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15724 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -35.5,-49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15725 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -35.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15726 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -35.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15727 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -35.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15728 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -35.5,-45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15729 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15730 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -35.5,-43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15731 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -35.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15732 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15733 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15734 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15735 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15736 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15737 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15738 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15739 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15740 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15741 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15742 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15743 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15744 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15745 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15746 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15747 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15748 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15749 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15750 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15751 - type: GasPipeStraight - components: - - pos: -34.5,-41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15752 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15753 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15754 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15755 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15756 - type: AirlockAtmosphericsGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-40.5 - parent: 1 - type: Transform -- uid: 15757 - type: AirlockAtmosphericsGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-41.5 - parent: 1 - type: Transform -- uid: 15758 - type: GasPressurePump - components: - - pos: -38.5,-45.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15759 - type: GasPipeStraight - components: - - pos: -38.5,-44.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15760 - type: GasPipeStraight - components: - - pos: -38.5,-43.5 - parent: 1 - type: Transform - - color: '#947507FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15761 - type: GasValve - components: - - pos: -38.5,-42.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15762 - type: GasPipeStraight - components: - - pos: -38.5,-41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15763 - type: GasPipeStraight - components: - - pos: -38.5,-40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15764 - type: GasPipeStraight - components: - - pos: -38.5,-39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15765 - type: GasPipeStraight - components: - - pos: -38.5,-38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15766 - type: GasPipeStraight - components: - - pos: -38.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15767 - type: GasPipeStraight - components: - - pos: -38.5,-36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15768 - type: GasPipeBend - components: - - pos: -38.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15769 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -40.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15770 - type: GasPipeBend - components: - - pos: -40.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15771 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15772 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 15773 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15774 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 15775 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-38.5 - parent: 1 - type: Transform -- uid: 15776 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-39.5 - parent: 1 - type: Transform -- uid: 15777 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-40.5 - parent: 1 - type: Transform -- uid: 15778 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-40.5 - parent: 1 - type: Transform -- uid: 15779 - type: BlastDoorExterior1 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-40.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -386588.03 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 15806 - Close: - - port: Off - uid: 15806 - Toggle: [] - type: SignalReceiver -- uid: 15780 - type: BlastDoorExterior1 - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-40.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -386588.03 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 15806 - Close: - - port: Off - uid: 15806 - Toggle: [] - type: SignalReceiver -- uid: 15781 - type: BlastDoorExterior1 - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-40.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -386588.03 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 15806 - Close: - - port: Off - uid: 15806 - Toggle: [] - type: SignalReceiver -- uid: 15782 - type: BlastDoorExterior1 - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-40.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -386588.03 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 15806 - Close: - - port: Off - uid: 15806 - Toggle: [] - type: SignalReceiver -- uid: 15783 - type: OxygenCanister - components: - - pos: -37.5,-38.5 - parent: 1 - type: Transform -- uid: 15784 - type: NitrousOxideCanister - components: - - pos: -38.5,-38.5 - parent: 1 - type: Transform -- uid: 15785 - type: NitrogenCanister - components: - - pos: -39.5,-38.5 - parent: 1 - type: Transform -- uid: 15786 - type: CarbonDioxideCanister - components: - - pos: -40.5,-38.5 - parent: 1 - type: Transform -- uid: 15787 - type: WallReinforced - components: - - pos: -32.5,-44.5 - parent: 1 - type: Transform -- uid: 15788 - type: WallReinforced - components: - - pos: -32.5,-45.5 - parent: 1 - type: Transform -- uid: 15789 - type: WallReinforced - components: - - pos: -32.5,-46.5 - parent: 1 - type: Transform -- uid: 15790 - type: WallReinforced - components: - - pos: -32.5,-47.5 - parent: 1 - type: Transform -- uid: 15791 - type: WallReinforced - components: - - pos: -32.5,-48.5 - parent: 1 - type: Transform -- uid: 15792 - type: WallReinforced - components: - - pos: -32.5,-49.5 - parent: 1 - type: Transform -- uid: 15793 - type: AirlockMaintAtmoLocked - components: - - name: atmos - type: MetaData - - rot: 3.141592653589793 rad - pos: -32.5,-50.5 - parent: 1 - type: Transform -- uid: 15794 - type: WallReinforced - components: - - pos: -32.5,-51.5 - parent: 1 - type: Transform -- uid: 15795 - type: WallReinforced - components: - - pos: -32.5,-52.5 - parent: 1 - type: Transform -- uid: 15796 - type: WallReinforced - components: - - pos: -32.5,-53.5 - parent: 1 - type: Transform -- uid: 15797 - type: WallReinforced - components: - - pos: -32.5,-54.5 - parent: 1 - type: Transform -- uid: 15798 - type: WallReinforced - components: - - pos: -32.5,-55.5 - parent: 1 - type: Transform -- uid: 15799 - type: WallReinforced - components: - - pos: -32.5,-56.5 - parent: 1 - type: Transform -- uid: 15800 - type: WallReinforced - components: - - pos: -32.5,-57.5 - parent: 1 - type: Transform -- uid: 15801 - type: WallReinforced - components: - - pos: -33.5,-57.5 - parent: 1 - type: Transform -- uid: 15802 - type: WallReinforced - components: - - pos: -33.5,-58.5 - parent: 1 - type: Transform -- uid: 15803 - type: WallReinforced - components: - - pos: -34.5,-58.5 - parent: 1 - type: Transform -- uid: 15804 - type: KitchenMicrowave - components: - - pos: -38.5,-32.5 - parent: 1 - type: Transform -- uid: 15805 - type: FoodBoxDonkpocketSpicy - components: - - pos: -39.41441,-32.343586 - parent: 1 - type: Transform -- uid: 15806 - type: SignalSwitch - components: - - pos: -36.5,-40.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 15782 - - port: Open - uid: 15781 - - port: Open - uid: 15780 - - port: Open - uid: 15779 - Off: - - port: Close - uid: 15782 - - port: Close - uid: 15781 - - port: Close - uid: 15780 - - port: Close - uid: 15779 - type: SignalTransmitter -- uid: 15807 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: -36.45104,-33.42174 - parent: 1 - type: Transform -- uid: 15808 - type: Multitool - components: - - rot: -1.5707963267948966 rad - pos: -36.559425,-33.012554 - parent: 1 - type: Transform -- uid: 15809 - type: VendingMachineAtmosDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -35.5,-32.5 - parent: 1 - type: Transform -- uid: 15810 - type: LockerAtmosphericsFilled - components: - - pos: -39.5,-36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15811 - type: LockerAtmosphericsFilled - components: - - pos: -37.5,-36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15812 - type: LockerAtmosphericsFilled - components: - - pos: -35.5,-36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 15813 - type: UniformShortsRedWithTop - components: - - pos: 30.57281,4.627015 - parent: 1 - type: Transform -- uid: 15814 - type: SpawnPointAtmos - components: - - pos: -39.5,-34.5 - parent: 1 - type: Transform -- uid: 15815 - type: SpawnPointAtmos - components: - - pos: -37.5,-35.5 - parent: 1 - type: Transform -- uid: 15816 - type: SpawnPointAtmos - components: - - pos: -36.5,-34.5 - parent: 1 - type: Transform -- uid: 15817 - type: ToolboxMechanicalFilled - components: - - pos: -36.497368,-32.593475 - parent: 1 - type: Transform -- uid: 15818 - type: GasAnalyzer - components: - - pos: -37.231743,-32.468967 - parent: 1 - type: Transform -- uid: 15819 - type: StorageCanister - components: - - pos: -34.5,-39.5 - parent: 1 - type: Transform -- uid: 15820 - type: StorageCanister - components: - - pos: -35.5,-39.5 - parent: 1 - type: Transform -- uid: 15821 - type: GasMinerOxygen - components: - - pos: -49.5,-52.5 - parent: 1 - type: Transform -- uid: 15822 - type: GasMinerNitrogen - components: - - pos: -49.5,-54.5 - parent: 1 - type: Transform -- uid: 15823 - type: WaterVaporCanister - components: - - pos: -50.5,-48.5 - parent: 1 - type: Transform -- uid: 15824 - type: GasMinerWaterVapor - components: - - pos: -49.5,-48.5 - parent: 1 - type: Transform -- uid: 15825 - type: GasMinerPlasma - components: - - pos: -49.5,-46.5 - parent: 1 - type: Transform -- uid: 15826 - type: PlasmaCanister - components: - - pos: -50.5,-46.5 - parent: 1 - type: Transform -- uid: 15827 - type: GasMinerCarbonDioxide - components: - - pos: -49.5,-50.5 - parent: 1 - type: Transform -- uid: 15828 - type: CarbonDioxideCanister - components: - - pos: -50.5,-50.5 - parent: 1 - type: Transform -- uid: 15829 - type: StorageCanister - components: - - pos: -50.5,-44.5 - parent: 1 - type: Transform -- uid: 15830 - type: StorageCanister - components: - - pos: -50.5,-42.5 - parent: 1 - type: Transform -- uid: 15831 - type: WarningN2 - components: - - pos: -51.5,-54.5 - parent: 1 - type: Transform -- uid: 15832 - type: WarningO2 - components: - - pos: -51.5,-52.5 - parent: 1 - type: Transform -- uid: 15833 - type: WarningCO2 - components: - - pos: -51.5,-50.5 - parent: 1 - type: Transform -- uid: 15834 - type: WarningWaste - components: - - pos: -51.5,-48.5 - parent: 1 - type: Transform -- uid: 15835 - type: WarningPlasma - components: - - pos: -51.5,-46.5 - parent: 1 - type: Transform -- uid: 15836 - type: WarningTritium - components: - - pos: -51.5,-44.5 - parent: 1 - type: Transform -- uid: 15837 - type: WarningN2O - components: - - pos: -51.5,-42.5 - parent: 1 - type: Transform -- uid: 15838 - type: CableHV - components: - - pos: -31.5,-18.5 - parent: 1 - type: Transform -- uid: 15839 - type: CableHV - components: - - pos: -31.5,-19.5 - parent: 1 - type: Transform -- uid: 15840 - type: CableHV - components: - - pos: -31.5,-20.5 - parent: 1 - type: Transform -- uid: 15841 - type: CableHV - components: - - pos: -31.5,-21.5 - parent: 1 - type: Transform -- uid: 15842 - type: CableHV - components: - - pos: -31.5,-22.5 - parent: 1 - type: Transform -- uid: 15843 - type: CableHV - components: - - pos: -31.5,-23.5 - parent: 1 - type: Transform -- uid: 15844 - type: CableHV - components: - - pos: -31.5,-24.5 - parent: 1 - type: Transform -- uid: 15845 - type: CableHV - components: - - pos: -31.5,-25.5 - parent: 1 - type: Transform -- uid: 15846 - type: CableHV - components: - - pos: -31.5,-26.5 - parent: 1 - type: Transform -- uid: 15847 - type: CableHV - components: - - pos: -31.5,-27.5 - parent: 1 - type: Transform -- uid: 15848 - type: CableHV - components: - - pos: -31.5,-28.5 - parent: 1 - type: Transform -- uid: 15849 - type: CableHV - components: - - pos: -31.5,-29.5 - parent: 1 - type: Transform -- uid: 15850 - type: CableHV - components: - - pos: -31.5,-30.5 - parent: 1 - type: Transform -- uid: 15851 - type: CableHV - components: - - pos: -31.5,-31.5 - parent: 1 - type: Transform -- uid: 15852 - type: CableHV - components: - - pos: -31.5,-32.5 - parent: 1 - type: Transform -- uid: 15853 - type: CableHV - components: - - pos: -31.5,-33.5 - parent: 1 - type: Transform -- uid: 15854 - type: CableHV - components: - - pos: -31.5,-34.5 - parent: 1 - type: Transform -- uid: 15855 - type: CableHV - components: - - pos: -30.5,-34.5 - parent: 1 - type: Transform -- uid: 15856 - type: CableHV - components: - - pos: -29.5,-34.5 - parent: 1 - type: Transform -- uid: 15857 - type: CableHV - components: - - pos: -28.5,-34.5 - parent: 1 - type: Transform -- uid: 15858 - type: CableHV - components: - - pos: -28.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15859 - type: CableHV - components: - - pos: -28.5,-36.5 - parent: 1 - type: Transform -- uid: 15860 - type: CableHV - components: - - pos: -28.5,-37.5 - parent: 1 - type: Transform -- uid: 15861 - type: CableHV - components: - - pos: -27.5,-37.5 - parent: 1 - type: Transform -- uid: 15862 - type: CableTerminal - components: - - pos: -28.5,-36.5 - parent: 1 - type: Transform -- uid: 15863 - type: SMESBasic - components: - - pos: -28.5,-37.5 - parent: 1 - type: Transform -- uid: 15864 - type: SubstationBasic - components: - - pos: -27.5,-37.5 - parent: 1 - type: Transform -- uid: 15865 - type: WallSolid - components: - - pos: -29.5,-38.5 - parent: 1 - type: Transform -- uid: 15866 - type: WallSolid - components: - - pos: -28.5,-38.5 - parent: 1 - type: Transform -- uid: 15867 - type: WallSolid - components: - - pos: -27.5,-38.5 - parent: 1 - type: Transform -- uid: 15868 - type: WallSolid - components: - - pos: -26.5,-38.5 - parent: 1 - type: Transform -- uid: 15869 - type: AirlockEngineeringLocked - components: - - name: substation - type: MetaData - - pos: -27.5,-35.5 - parent: 1 - type: Transform -- uid: 15870 - type: APCHighCapacity - components: - - pos: -35.5,-31.5 - parent: 1 - type: Transform -- uid: 15871 - type: CableMV - components: - - pos: -27.5,-37.5 - parent: 1 - type: Transform -- uid: 15872 - type: CableMV - components: - - pos: -27.5,-36.5 - parent: 1 - type: Transform -- uid: 15873 - type: CableMV - components: - - pos: -27.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15874 - type: CableMV - components: - - pos: -27.5,-34.5 - parent: 1 - type: Transform -- uid: 15875 - type: CableMV - components: - - pos: -28.5,-34.5 - parent: 1 - type: Transform -- uid: 15876 - type: CableMV - components: - - pos: -29.5,-34.5 - parent: 1 - type: Transform -- uid: 15877 - type: CableMV - components: - - pos: -30.5,-34.5 - parent: 1 - type: Transform -- uid: 15878 - type: CableMV - components: - - pos: -31.5,-34.5 - parent: 1 - type: Transform -- uid: 15879 - type: CableMV - components: - - pos: -32.5,-34.5 - parent: 1 - type: Transform -- uid: 15880 - type: CableMV - components: - - pos: -33.5,-34.5 - parent: 1 - type: Transform -- uid: 15881 - type: CableMV - components: - - pos: -34.5,-34.5 - parent: 1 - type: Transform -- uid: 15882 - type: CableMV - components: - - pos: -35.5,-34.5 - parent: 1 - type: Transform -- uid: 15883 - type: CableMV - components: - - pos: -35.5,-33.5 - parent: 1 - type: Transform -- uid: 15884 - type: CableMV - components: - - pos: -35.5,-32.5 - parent: 1 - type: Transform -- uid: 15885 - type: CableMV - components: - - pos: -35.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15886 - type: CableApcExtension - components: - - pos: -35.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15887 - type: CableApcExtension - components: - - pos: -35.5,-32.5 - parent: 1 - type: Transform -- uid: 15888 - type: CableApcExtension - components: - - pos: -35.5,-33.5 - parent: 1 - type: Transform -- uid: 15889 - type: CableApcExtension - components: - - pos: -35.5,-34.5 - parent: 1 - type: Transform -- uid: 15890 - type: CableApcExtension - components: - - pos: -36.5,-34.5 - parent: 1 - type: Transform -- uid: 15891 - type: CableApcExtension - components: - - pos: -37.5,-34.5 - parent: 1 - type: Transform -- uid: 15892 - type: CableApcExtension - components: - - pos: -38.5,-34.5 - parent: 1 - type: Transform -- uid: 15893 - type: CableApcExtension - components: - - pos: -39.5,-34.5 - parent: 1 - type: Transform -- uid: 15894 - type: CableApcExtension - components: - - pos: -40.5,-34.5 - parent: 1 - type: Transform -- uid: 15895 - type: CableApcExtension - components: - - pos: -41.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15896 - type: CableApcExtension - components: - - pos: -42.5,-34.5 - parent: 1 - type: Transform -- uid: 15897 - type: CableApcExtension - components: - - pos: -43.5,-34.5 - parent: 1 - type: Transform -- uid: 15898 - type: CableApcExtension - components: - - pos: -39.5,-33.5 - parent: 1 - type: Transform -- uid: 15899 - type: CableApcExtension - components: - - pos: -41.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15900 - type: CableApcExtension - components: - - pos: -41.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15901 - type: CableApcExtension - components: - - pos: -41.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15902 - type: CableApcExtension - components: - - pos: -41.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15903 - type: CableApcExtension - components: - - pos: -41.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15904 - type: CableApcExtension - components: - - pos: -42.5,-39.5 - parent: 1 - type: Transform -- uid: 15905 - type: CableApcExtension - components: - - pos: -43.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15906 - type: CableApcExtension - components: - - pos: -44.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15907 - type: CableApcExtension - components: - - pos: -45.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15908 - type: CableApcExtension - components: - - pos: -46.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15909 - type: CableApcExtension - components: - - pos: -47.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15910 - type: CableApcExtension - components: - - pos: -47.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15911 - type: CableApcExtension - components: - - pos: -47.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15912 - type: CableApcExtension - components: - - pos: -48.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15913 - type: CableApcExtension - components: - - pos: -49.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15914 - type: CableApcExtension - components: - - pos: -50.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15915 - type: CableApcExtension - components: - - pos: -51.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15916 - type: CableApcExtension - components: - - pos: -51.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15917 - type: CableApcExtension - components: - - pos: -51.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15918 - type: CableApcExtension - components: - - pos: -51.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15919 - type: CableApcExtension - components: - - pos: -51.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15920 - type: CableApcExtension - components: - - pos: -51.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15921 - type: CableApcExtension - components: - - pos: -51.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15922 - type: CableApcExtension - components: - - pos: -51.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15923 - type: CableApcExtension - components: - - pos: -51.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15924 - type: CableApcExtension - components: - - pos: -51.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15925 - type: CableApcExtension - components: - - pos: -51.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15926 - type: CableApcExtension - components: - - pos: -51.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15927 - type: CableApcExtension - components: - - pos: -51.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15928 - type: CableApcExtension - components: - - pos: -51.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15929 - type: CableApcExtension - components: - - pos: -51.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15930 - type: CableApcExtension - components: - - pos: -50.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15931 - type: CableApcExtension - components: - - pos: -49.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15932 - type: CableApcExtension - components: - - pos: -48.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15933 - type: CableApcExtension - components: - - pos: -47.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15934 - type: CableApcExtension - components: - - pos: -50.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15935 - type: CableApcExtension - components: - - pos: -49.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15936 - type: CableApcExtension - components: - - pos: -48.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15937 - type: CableApcExtension - components: - - pos: -47.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15938 - type: CableApcExtension - components: - - pos: -50.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15939 - type: CableApcExtension - components: - - pos: -49.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15940 - type: CableApcExtension - components: - - pos: -48.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15941 - type: CableApcExtension - components: - - pos: -47.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15942 - type: CableApcExtension - components: - - pos: -50.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15943 - type: CableApcExtension - components: - - pos: -49.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15944 - type: CableApcExtension - components: - - pos: -48.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15945 - type: CableApcExtension - components: - - pos: -47.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15946 - type: CableApcExtension - components: - - pos: -50.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15947 - type: CableApcExtension - components: - - pos: -49.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15948 - type: CableApcExtension - components: - - pos: -48.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15949 - type: CableApcExtension - components: - - pos: -47.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15950 - type: CableApcExtension - components: - - pos: -50.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15951 - type: CableApcExtension - components: - - pos: -49.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15952 - type: CableApcExtension - components: - - pos: -48.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15953 - type: CableApcExtension - components: - - pos: -47.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15954 - type: CableApcExtension - components: - - pos: -50.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15955 - type: CableApcExtension - components: - - pos: -49.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15956 - type: CableApcExtension - components: - - pos: -48.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15957 - type: CableApcExtension - components: - - pos: -47.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15958 - type: CableApcExtension - components: - - pos: -38.5,-35.5 - parent: 1 - type: Transform -- uid: 15959 - type: CableApcExtension - components: - - pos: -38.5,-36.5 - parent: 1 - type: Transform -- uid: 15960 - type: CableApcExtension - components: - - pos: -38.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 15961 - type: CableApcExtension - components: - - pos: -38.5,-38.5 - parent: 1 - type: Transform -- uid: 15962 - type: CableApcExtension - components: - - pos: -38.5,-39.5 - parent: 1 - type: Transform -- uid: 15963 - type: CableApcExtension - components: - - pos: -34.5,-34.5 - parent: 1 - type: Transform -- uid: 15964 - type: CableApcExtension - components: - - pos: -33.5,-34.5 - parent: 1 - type: Transform -- uid: 15965 - type: CableApcExtension - components: - - pos: -32.5,-34.5 - parent: 1 - type: Transform -- uid: 15966 - type: CableApcExtension - components: - - pos: -31.5,-34.5 - parent: 1 - type: Transform -- uid: 15967 - type: CableApcExtension - components: - - pos: -30.5,-34.5 - parent: 1 - type: Transform -- uid: 15968 - type: CableApcExtension - components: - - pos: -29.5,-34.5 - parent: 1 - type: Transform -- uid: 15969 - type: CableApcExtension - components: - - pos: -28.5,-34.5 - parent: 1 - type: Transform -- uid: 15970 - type: CableApcExtension - components: - - pos: -27.5,-34.5 - parent: 1 - type: Transform -- uid: 15971 - type: CableApcExtension - components: - - pos: -26.5,-34.5 - parent: 1 - type: Transform -- uid: 15972 - type: CableApcExtension - components: - - pos: -25.5,-34.5 - parent: 1 - type: Transform -- uid: 15973 - type: CableApcExtension - components: - - pos: -24.5,-34.5 - parent: 1 - type: Transform -- uid: 15974 - type: CableApcExtension - components: - - pos: -23.5,-34.5 - parent: 1 - type: Transform -- uid: 15975 - type: CableApcExtension - components: - - pos: -23.5,-33.5 - parent: 1 - type: Transform -- uid: 15976 - type: CableApcExtension - components: - - pos: -32.5,-33.5 - parent: 1 - type: Transform -- uid: 15977 - type: CableApcExtension - components: - - pos: -32.5,-32.5 - parent: 1 - type: Transform -- uid: 15978 - type: CableApcExtension - components: - - pos: -31.5,-35.5 - parent: 1 - type: Transform -- uid: 15979 - type: CableApcExtension - components: - - pos: -31.5,-36.5 - parent: 1 - type: Transform -- uid: 15980 - type: CableApcExtension - components: - - pos: -31.5,-37.5 - parent: 1 - type: Transform -- uid: 15981 - type: CableApcExtension - components: - - pos: -31.5,-38.5 - parent: 1 - type: Transform -- uid: 15982 - type: CableApcExtension - components: - - pos: -31.5,-39.5 - parent: 1 - type: Transform -- uid: 15983 - type: CableApcExtension - components: - - pos: -31.5,-40.5 - parent: 1 - type: Transform -- uid: 15984 - type: CableApcExtension - components: - - pos: -32.5,-40.5 - parent: 1 - type: Transform -- uid: 15985 - type: CableApcExtension - components: - - pos: -33.5,-40.5 - parent: 1 - type: Transform -- uid: 15986 - type: CableApcExtension - components: - - pos: -34.5,-40.5 - parent: 1 - type: Transform -- uid: 15987 - type: CableApcExtension - components: - - pos: -35.5,-40.5 - parent: 1 - type: Transform -- uid: 15988 - type: CableApcExtension - components: - - pos: -35.5,-41.5 - parent: 1 - type: Transform -- uid: 15989 - type: CableApcExtension - components: - - pos: -35.5,-42.5 - parent: 1 - type: Transform -- uid: 15990 - type: CableApcExtension - components: - - pos: -35.5,-43.5 - parent: 1 - type: Transform -- uid: 15991 - type: CableApcExtension - components: - - pos: -35.5,-44.5 - parent: 1 - type: Transform -- uid: 15992 - type: CableApcExtension - components: - - pos: -35.5,-45.5 - parent: 1 - type: Transform -- uid: 15993 - type: CableApcExtension - components: - - pos: -35.5,-46.5 - parent: 1 - type: Transform -- uid: 15994 - type: CableApcExtension - components: - - pos: -35.5,-47.5 - parent: 1 - type: Transform -- uid: 15995 - type: CableApcExtension - components: - - pos: -35.5,-48.5 - parent: 1 - type: Transform -- uid: 15996 - type: CableApcExtension - components: - - pos: -35.5,-49.5 - parent: 1 - type: Transform -- uid: 15997 - type: CableApcExtension - components: - - pos: -35.5,-50.5 - parent: 1 - type: Transform -- uid: 15998 - type: CableApcExtension - components: - - pos: -35.5,-51.5 - parent: 1 - type: Transform -- uid: 15999 - type: CableApcExtension - components: - - pos: -35.5,-52.5 - parent: 1 - type: Transform -- uid: 16000 - type: CableApcExtension - components: - - pos: -35.5,-53.5 - parent: 1 - type: Transform -- uid: 16001 - type: CableApcExtension - components: - - pos: -35.5,-54.5 - parent: 1 - type: Transform -- uid: 16002 - type: CableApcExtension - components: - - pos: -35.5,-55.5 - parent: 1 - type: Transform -- uid: 16003 - type: CableApcExtension - components: - - pos: -36.5,-43.5 - parent: 1 - type: Transform -- uid: 16004 - type: CableApcExtension - components: - - pos: -37.5,-43.5 - parent: 1 - type: Transform -- uid: 16005 - type: CableApcExtension - components: - - pos: -36.5,-46.5 - parent: 1 - type: Transform -- uid: 16006 - type: CableApcExtension - components: - - pos: -37.5,-46.5 - parent: 1 - type: Transform -- uid: 16007 - type: Firelock - components: - - pos: -22.5,-26.5 - parent: 1 - type: Transform -- uid: 16008 - type: Firelock - components: - - pos: -29.5,-26.5 - parent: 1 - type: Transform -- uid: 16009 - type: AirlockAtmosphericsLocked - components: - - name: atmos - type: MetaData - - pos: -31.5,-30.5 - parent: 1 - type: Transform -- uid: 16010 - type: AirlockAtmosphericsLocked - components: - - name: atmos - type: MetaData - - pos: -32.5,-30.5 - parent: 1 - type: Transform -- uid: 16011 - type: AirlockEngineeringGlassLocked - components: - - pos: -32.5,-19.5 - parent: 1 - type: Transform -- uid: 16012 - type: AirlockEngineeringGlassLocked - components: - - pos: -31.5,-19.5 - parent: 1 - type: Transform -- uid: 16013 - type: CableApcExtension - components: - - pos: 55.5,11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16014 - type: WallReinforced - components: - - pos: -47.5,-39.5 - parent: 1 - type: Transform -- uid: 16015 - type: AirlockAtmosphericsGlassLocked - components: - - pos: -34.5,-33.5 - parent: 1 - type: Transform -- uid: 16016 - type: AirlockAtmosphericsGlassLocked - components: - - pos: -34.5,-34.5 - parent: 1 - type: Transform -- uid: 16017 - type: GasThermoMachineHeater - components: - - pos: -40.5,-46.5 - parent: 1 - type: Transform -- uid: 16018 - type: GasThermoMachineFreezer - components: - - pos: -41.5,-46.5 - parent: 1 - type: Transform -- uid: 16019 - type: AirlockAtmosphericsLocked - components: - - pos: -26.5,-33.5 - parent: 1 - type: Transform -- uid: 16020 - type: AirlockAtmosphericsLocked - components: - - pos: -26.5,-34.5 - parent: 1 - type: Transform -- uid: 16021 - type: AirlockGlass - components: - - pos: -19.5,-39.5 - parent: 1 - type: Transform -- uid: 16022 - type: AirlockGlass - components: - - pos: -20.5,-39.5 - parent: 1 - type: Transform -- uid: 16023 - type: AirlockGlass - components: - - pos: -18.5,-39.5 - parent: 1 - type: Transform -- uid: 16024 - type: FirelockGlass - components: - - pos: -20.5,-24.5 - parent: 1 - type: Transform -- uid: 16025 - type: FirelockGlass - components: - - pos: -18.5,-24.5 - parent: 1 - type: Transform -- uid: 16026 - type: AirlockGlass - components: - - pos: -18.5,-24.5 - parent: 1 - type: Transform -- uid: 16027 - type: FirelockGlass - components: - - pos: -26.5,-16.5 - parent: 1 - type: Transform -- uid: 16028 - type: FirelockGlass - components: - - pos: -26.5,-17.5 - parent: 1 - type: Transform -- uid: 16029 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-16.5 - parent: 1 - type: Transform -- uid: 16030 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-7.5 - parent: 1 - type: Transform -- uid: 16031 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-7.5 - parent: 1 - type: Transform -- uid: 16032 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-7.5 - parent: 1 - type: Transform -- uid: 16033 - type: AirlockGlass - components: - - pos: -21.5,-12.5 - parent: 1 - type: Transform -- uid: 16034 - type: AirlockGlass - components: - - pos: -21.5,-11.5 - parent: 1 - type: Transform -- uid: 16035 - type: FirelockGlass - components: - - pos: -33.5,-11.5 - parent: 1 - type: Transform -- uid: 16036 - type: FirelockGlass - components: - - pos: -33.5,-10.5 - parent: 1 - type: Transform -- uid: 16037 - type: WallSolid - components: - - pos: -33.5,-7.5 - parent: 1 - type: Transform -- uid: 16038 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -41.5,-8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16039 - type: FirelockGlass - components: - - pos: -41.5,-8.5 - parent: 1 - type: Transform -- uid: 16040 - type: FirelockGlass - components: - - pos: -42.5,-8.5 - parent: 1 - type: Transform -- uid: 16041 - type: Firelock - components: - - pos: -49.5,-5.5 - parent: 1 - type: Transform -- uid: 16042 - type: Firelock - components: - - pos: -49.5,-6.5 - parent: 1 - type: Transform -- uid: 16043 - type: CableHV - components: - - pos: -60.5,-28.5 - parent: 1 - type: Transform -- uid: 16044 - type: CableApcExtension - components: - - pos: -63.5,-30.5 - parent: 1 - type: Transform -- uid: 16045 - type: AirlockEngineeringGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-21.5 - parent: 1 - type: Transform -- uid: 16046 - type: AirlockEngineeringGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-21.5 - parent: 1 - type: Transform -- uid: 16047 - type: FirelockGlass - components: - - pos: -40.5,-10.5 - parent: 1 - type: Transform -- uid: 16048 - type: AirlockEngineeringGlassLocked - components: - - name: particle accelerator - type: MetaData - - rot: -1.5707963267948966 rad - pos: -63.5,-23.5 - parent: 1 - type: Transform -- uid: 16049 - type: FirelockGlass - components: - - pos: -63.5,-23.5 - parent: 1 - type: Transform -- uid: 16050 - type: ComputerPowerMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-13.5 - parent: 1 - type: Transform -- uid: 16051 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-14.5 - parent: 1 - type: Transform -- uid: 16052 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 16053 - type: SheetSteel - components: - - pos: -67.49896,-32.46533 - parent: 1 - type: Transform -- uid: 16054 - type: Grille - components: - - pos: -59.5,-3.5 - parent: 1 - type: Transform -- uid: 16055 - type: Grille - components: - - pos: -60.5,-3.5 - parent: 1 - type: Transform -- uid: 16056 - type: Grille - components: - - pos: -61.5,-3.5 - parent: 1 - type: Transform -- uid: 16057 - type: Grille - components: - - pos: -62.5,-3.5 - parent: 1 - type: Transform -- uid: 16058 - type: Grille - components: - - pos: -66.5,-3.5 - parent: 1 - type: Transform -- uid: 16059 - type: Grille - components: - - pos: -67.5,-3.5 - parent: 1 - type: Transform -- uid: 16060 - type: Grille - components: - - pos: -68.5,-3.5 - parent: 1 - type: Transform -- uid: 16061 - type: Grille - components: - - pos: -69.5,-3.5 - parent: 1 - type: Transform -- uid: 16062 - type: Grille - components: - - pos: -76.5,-3.5 - parent: 1 - type: Transform -- uid: 16063 - type: Grille - components: - - pos: -73.5,-3.5 - parent: 1 - type: Transform -- uid: 16064 - type: Grille - components: - - pos: -74.5,-3.5 - parent: 1 - type: Transform -- uid: 16065 - type: Grille - components: - - pos: -75.5,-3.5 - parent: 1 - type: Transform -- uid: 16066 - type: Grille - components: - - pos: -76.5,-7.5 - parent: 1 - type: Transform -- uid: 16067 - type: Grille - components: - - pos: -76.5,-8.5 - parent: 1 - type: Transform -- uid: 16068 - type: Grille - components: - - pos: -76.5,-9.5 - parent: 1 - type: Transform -- uid: 16069 - type: Grille - components: - - pos: -76.5,-10.5 - parent: 1 - type: Transform -- uid: 16070 - type: Grille - components: - - pos: -76.5,-14.5 - parent: 1 - type: Transform -- uid: 16071 - type: Grille - components: - - pos: -76.5,-15.5 - parent: 1 - type: Transform -- uid: 16072 - type: Grille - components: - - pos: -76.5,-16.5 - parent: 1 - type: Transform -- uid: 16073 - type: Grille - components: - - pos: -76.5,-17.5 - parent: 1 - type: Transform -- uid: 16074 - type: Grille - components: - - pos: -76.5,-21.5 - parent: 1 - type: Transform -- uid: 16075 - type: Grille - components: - - pos: -76.5,-22.5 - parent: 1 - type: Transform -- uid: 16076 - type: CableApcExtension - components: - - pos: -52.5,-30.5 - parent: 1 - type: Transform -- uid: 16077 - type: CableApcExtension - components: - - pos: -52.5,-29.5 - parent: 1 - type: Transform -- uid: 16078 - type: CableApcExtension - components: - - pos: -52.5,-28.5 - parent: 1 - type: Transform -- uid: 16079 - type: CableHV - components: - - pos: -71.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16080 - type: CableHV - components: - - pos: -72.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16081 - type: CableHV - components: - - pos: -73.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16082 - type: CableHV - components: - - pos: -74.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16083 - type: CableHV - components: - - pos: -75.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16084 - type: CableHV - components: - - pos: -76.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16085 - type: CableHV - components: - - pos: -76.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16086 - type: CableHV - components: - - pos: -76.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16087 - type: CableHV - components: - - pos: -76.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16088 - type: CableHV - components: - - pos: -76.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16089 - type: CableHV - components: - - pos: -76.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16090 - type: CableHV - components: - - pos: -76.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16091 - type: CableHV - components: - - pos: -76.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16092 - type: CableHV - components: - - pos: -76.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16093 - type: CableHV - components: - - pos: -76.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16094 - type: CableHV - components: - - pos: -76.5,-12.5 - parent: 1 - type: Transform -- uid: 16095 - type: CableHV - components: - - pos: -76.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16096 - type: CableHV - components: - - pos: -76.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16097 - type: CableHV - components: - - pos: -76.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16098 - type: CableHV - components: - - pos: -76.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16099 - type: CableHV - components: - - pos: -76.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16100 - type: CableHV - components: - - pos: -76.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16101 - type: CableHV - components: - - pos: -76.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16102 - type: CableHV - components: - - pos: -76.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16103 - type: CableHV - components: - - pos: -76.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16104 - type: CableHV - components: - - pos: -75.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16105 - type: CableHV - components: - - pos: -74.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16106 - type: CableHV - components: - - pos: -73.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16107 - type: CableHV - components: - - pos: -72.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16108 - type: CableHV - components: - - pos: -71.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16109 - type: CableHV - components: - - pos: -70.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16110 - type: CableHV - components: - - pos: -69.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16111 - type: CableHV - components: - - pos: -68.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16112 - type: CableHV - components: - - pos: -67.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16113 - type: CableHV - components: - - pos: -66.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16114 - type: CableHV - components: - - pos: -65.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16115 - type: CableHV - components: - - pos: -64.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16116 - type: CableHV - components: - - pos: -63.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16117 - type: CableHV - components: - - pos: -62.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16118 - type: CableHV - components: - - pos: -61.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16119 - type: CableHV - components: - - pos: -60.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16120 - type: CableHV - components: - - pos: -59.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16121 - type: CableHV - components: - - pos: -58.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16122 - type: CableHV - components: - - pos: -57.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16123 - type: CableHV - components: - - pos: -56.5,-3.5 - parent: 1 - type: Transform -- uid: 16124 - type: CableHV - components: - - pos: -56.5,-4.5 - parent: 1 - type: Transform -- uid: 16125 - type: CableHV - components: - - pos: -56.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16126 - type: CableHV - components: - - pos: -56.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16127 - type: WallReinforced - components: - - pos: 65.5,-31.5 - parent: 1 - type: Transform -- uid: 16128 - type: WallReinforced - components: - - pos: -70.5,-3.5 - parent: 1 - type: Transform -- uid: 16129 - type: WallReinforced - components: - - pos: -71.5,-3.5 - parent: 1 - type: Transform -- uid: 16130 - type: WallReinforced - components: - - pos: -72.5,-3.5 - parent: 1 - type: Transform -- uid: 16131 - type: WallReinforced - components: - - pos: -76.5,-4.5 - parent: 1 - type: Transform -- uid: 16132 - type: WallReinforced - components: - - pos: -76.5,-5.5 - parent: 1 - type: Transform -- uid: 16133 - type: WallReinforced - components: - - pos: -76.5,-6.5 - parent: 1 - type: Transform -- uid: 16134 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-17.5 - parent: 1 - type: Transform -- uid: 16135 - type: WallReinforced - components: - - pos: -76.5,-18.5 - parent: 1 - type: Transform -- uid: 16136 - type: WallReinforced - components: - - pos: -76.5,-19.5 - parent: 1 - type: Transform -- uid: 16137 - type: WallReinforced - components: - - pos: -76.5,-20.5 - parent: 1 - type: Transform -- uid: 16138 - type: CableHV - components: - - pos: -76.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16139 - type: WallReinforced - components: - - pos: -75.5,-23.5 - parent: 1 - type: Transform -- uid: 16140 - type: WallReinforced - components: - - pos: -63.5,-3.5 - parent: 1 - type: Transform -- uid: 16141 - type: WallReinforced - components: - - pos: -64.5,-3.5 - parent: 1 - type: Transform -- uid: 16142 - type: WallReinforced - components: - - pos: -65.5,-3.5 - parent: 1 - type: Transform -- uid: 16143 - type: WallReinforced - components: - - pos: -58.5,-3.5 - parent: 1 - type: Transform -- uid: 16144 - type: WallSolid - components: - - pos: -57.5,-3.5 - parent: 1 - type: Transform -- uid: 16145 - type: AirlockExternalGlassLocked - components: - - pos: -57.5,-1.5 - parent: 1 - type: Transform -- uid: 16146 - type: AirlockExternalGlassLocked - components: - - pos: -55.5,-1.5 - parent: 1 - type: Transform -- uid: 16147 - type: WallReinforced - components: - - pos: -75.5,-24.5 - parent: 1 - type: Transform -- uid: 16148 - type: CableApcExtension - components: - - pos: -57.5,-18.5 - parent: 1 - type: Transform -- uid: 16149 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -76.5,-24.5 - parent: 1 - type: Transform -- uid: 16150 - type: WallReinforced - components: - - pos: -75.5,-27.5 - parent: 1 - type: Transform -- uid: 16151 - type: WallSolid - components: - - pos: -69.5,-25.5 - parent: 1 - type: Transform -- uid: 16152 - type: WallReinforced - components: - - pos: -75.5,-26.5 - parent: 1 - type: Transform -- uid: 16153 - type: WallReinforced - components: - - pos: -76.5,-26.5 - parent: 1 - type: Transform -- uid: 16154 - type: CableApcExtension - components: - - pos: -55.5,-18.5 - parent: 1 - type: Transform -- uid: 16155 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -73.5,-27.5 - parent: 1 - type: Transform -- uid: 16156 - type: AirlockEngineeringLocked - components: - - pos: -72.5,-27.5 - parent: 1 - type: Transform -- uid: 16157 - type: WallSolid - components: - - pos: -69.5,-26.5 - parent: 1 - type: Transform -- uid: 16158 - type: WallSolid - components: - - pos: -69.5,-27.5 - parent: 1 - type: Transform -- uid: 16159 - type: Grille - components: - - pos: -76.5,-23.5 - parent: 1 - type: Transform -- uid: 16160 - type: AirlockExternalGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-18.5 - parent: 1 - type: Transform -- uid: 16161 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-1.5 - parent: 1 - type: Transform -- uid: 16162 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-2.5 - parent: 1 - type: Transform -- uid: 16163 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-3.5 - parent: 1 - type: Transform -- uid: 16164 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-4.5 - parent: 1 - type: Transform -- uid: 16165 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-5.5 - parent: 1 - type: Transform -- uid: 16166 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-6.5 - parent: 1 - type: Transform -- uid: 16167 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-7.5 - parent: 1 - type: Transform -- uid: 16168 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-8.5 - parent: 1 - type: Transform -- uid: 16169 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-9.5 - parent: 1 - type: Transform -- uid: 16170 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-10.5 - parent: 1 - type: Transform -- uid: 16171 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-11.5 - parent: 1 - type: Transform -- uid: 16172 - type: CableHV - components: - - pos: -76.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16173 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-15.5 - parent: 1 - type: Transform -- uid: 16174 - type: CableHV - components: - - pos: -76.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16175 - type: ComputerStationRecords - components: - - rot: 3.141592653589793 rad - pos: 20.5,-47.5 - parent: 1 - type: Transform -- uid: 16176 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-19.5 - parent: 1 - type: Transform -- uid: 16177 - type: PosterContrabandClown - components: - - rot: 1.5707963267948966 rad - pos: -23.5,39.5 - parent: 1 - type: Transform -- uid: 16178 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-22.5 - parent: 1 - type: Transform -- uid: 16179 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-26.5 - parent: 1 - type: Transform -- uid: 16180 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -78.5,-1.5 - parent: 1 - type: Transform -- uid: 16181 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -77.5,-1.5 - parent: 1 - type: Transform -- uid: 16182 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -76.5,-1.5 - parent: 1 - type: Transform -- uid: 16183 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -75.5,-1.5 - parent: 1 - type: Transform -- uid: 16184 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -74.5,-1.5 - parent: 1 - type: Transform -- uid: 16185 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -73.5,-1.5 - parent: 1 - type: Transform -- uid: 16186 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -72.5,-1.5 - parent: 1 - type: Transform -- uid: 16187 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -71.5,-1.5 - parent: 1 - type: Transform -- uid: 16188 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-1.5 - parent: 1 - type: Transform -- uid: 16189 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -69.5,-1.5 - parent: 1 - type: Transform -- uid: 16190 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -68.5,-1.5 - parent: 1 - type: Transform -- uid: 16191 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-1.5 - parent: 1 - type: Transform -- uid: 16192 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-1.5 - parent: 1 - type: Transform -- uid: 16193 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-1.5 - parent: 1 - type: Transform -- uid: 16194 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-1.5 - parent: 1 - type: Transform -- uid: 16195 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -63.5,-1.5 - parent: 1 - type: Transform -- uid: 16196 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -62.5,-1.5 - parent: 1 - type: Transform -- uid: 16197 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,-1.5 - parent: 1 - type: Transform -- uid: 16198 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-1.5 - parent: 1 - type: Transform -- uid: 16199 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-1.5 - parent: 1 - type: Transform -- uid: 16200 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-1.5 - parent: 1 - type: Transform -- uid: 16201 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-25.5 - parent: 1 - type: Transform -- uid: 16202 - type: Rack - components: - - pos: -45.5,-19.5 - parent: 1 - type: Transform -- uid: 16203 - type: Rack - components: - - pos: -47.5,-19.5 - parent: 1 - type: Transform -- uid: 16204 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-29.5 - parent: 1 - type: Transform -- uid: 16205 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-30.5 - parent: 1 - type: Transform -- uid: 16206 - type: WallReinforced - components: - - pos: -45.5,-31.5 - parent: 1 - type: Transform -- uid: 16207 - type: WallSolid - components: - - pos: -46.5,-29.5 - parent: 1 - type: Transform -- uid: 16208 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-29.5 - parent: 1 - type: Transform -- uid: 16209 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-28.5 - parent: 1 - type: Transform -- uid: 16210 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-31.5 - parent: 1 - type: Transform -- uid: 16211 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-31.5 - parent: 1 - type: Transform -- uid: 16212 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-32.5 - parent: 1 - type: Transform -- uid: 16213 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-33.5 - parent: 1 - type: Transform -- uid: 16214 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-33.5 - parent: 1 - type: Transform -- uid: 16215 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-33.5 - parent: 1 - type: Transform -- uid: 16216 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-33.5 - parent: 1 - type: Transform -- uid: 16217 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-33.5 - parent: 1 - type: Transform -- uid: 16218 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-33.5 - parent: 1 - type: Transform -- uid: 16219 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-33.5 - parent: 1 - type: Transform -- uid: 16220 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-34.5 - parent: 1 - type: Transform -- uid: 16221 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-35.5 - parent: 1 - type: Transform -- uid: 16222 - type: ReinforcedWindow - components: - - pos: -53.5,-37.5 - parent: 1 - type: Transform -- uid: 16223 - type: ReinforcedWindow - components: - - pos: -53.5,-36.5 - parent: 1 - type: Transform -- uid: 16224 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-38.5 - parent: 1 - type: Transform -- uid: 16225 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-39.5 - parent: 1 - type: Transform -- uid: 16226 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-40.5 - parent: 1 - type: Transform -- uid: 16227 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-40.5 - parent: 1 - type: Transform -- uid: 16228 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-40.5 - parent: 1 - type: Transform -- uid: 16229 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-41.5 - parent: 1 - type: Transform -- uid: 16230 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-42.5 - parent: 1 - type: Transform -- uid: 16231 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-43.5 - parent: 1 - type: Transform -- uid: 16232 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-44.5 - parent: 1 - type: Transform -- uid: 16233 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-45.5 - parent: 1 - type: Transform -- uid: 16234 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-46.5 - parent: 1 - type: Transform -- uid: 16235 - type: WallReinforced - components: - - pos: -53.5,-46.5 - parent: 1 - type: Transform -- uid: 16236 - type: WallReinforced - components: - - pos: -53.5,-51.5 - parent: 1 - type: Transform -- uid: 16237 - type: WallReinforced - components: - - pos: -54.5,-51.5 - parent: 1 - type: Transform -- uid: 16238 - type: WallReinforced - components: - - pos: -54.5,-46.5 - parent: 1 - type: Transform -- uid: 16239 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-51.5 - parent: 1 - type: Transform -- uid: 16240 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-52.5 - parent: 1 - type: Transform -- uid: 16241 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-53.5 - parent: 1 - type: Transform -- uid: 16242 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-54.5 - parent: 1 - type: Transform -- uid: 16243 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-55.5 - parent: 1 - type: Transform -- uid: 16244 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-56.5 - parent: 1 - type: Transform -- uid: 16245 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-57.5 - parent: 1 - type: Transform -- uid: 16246 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-60.5 - parent: 1 - type: Transform -- uid: 16247 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-60.5 - parent: 1 - type: Transform -- uid: 16248 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-59.5 - parent: 1 - type: Transform -- uid: 16249 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-32.5 - parent: 1 - type: Transform -- uid: 16250 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-33.5 - parent: 1 - type: Transform -- uid: 16251 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-34.5 - parent: 1 - type: Transform -- uid: 16252 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-35.5 - parent: 1 - type: Transform -- uid: 16253 - type: ReinforcedWindow - components: - - pos: -58.5,-37.5 - parent: 1 - type: Transform -- uid: 16254 - type: ReinforcedWindow - components: - - pos: -58.5,-36.5 - parent: 1 - type: Transform -- uid: 16255 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-38.5 - parent: 1 - type: Transform -- uid: 16256 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-39.5 - parent: 1 - type: Transform -- uid: 16257 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-40.5 - parent: 1 - type: Transform -- uid: 16258 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-41.5 - parent: 1 - type: Transform -- uid: 16259 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-42.5 - parent: 1 - type: Transform -- uid: 16260 - type: ReinforcedWindow - components: - - pos: -58.5,-52.5 - parent: 1 - type: Transform -- uid: 16261 - type: ReinforcedWindow - components: - - pos: -58.5,-51.5 - parent: 1 - type: Transform -- uid: 16262 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-45.5 - parent: 1 - type: Transform -- uid: 16263 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-46.5 - parent: 1 - type: Transform -- uid: 16264 - type: ReinforcedWindow - components: - - pos: -58.5,-44.5 - parent: 1 - type: Transform -- uid: 16265 - type: ReinforcedWindow - components: - - pos: -58.5,-43.5 - parent: 1 - type: Transform -- uid: 16266 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-49.5 - parent: 1 - type: Transform -- uid: 16267 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-50.5 - parent: 1 - type: Transform -- uid: 16268 - type: ReinforcedWindow - components: - - pos: -58.5,-48.5 - parent: 1 - type: Transform -- uid: 16269 - type: ReinforcedWindow - components: - - pos: -58.5,-47.5 - parent: 1 - type: Transform -- uid: 16270 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-53.5 - parent: 1 - type: Transform -- uid: 16271 - type: AirlockExternalGlassLocked - components: - - pos: -58.5,-54.5 - parent: 1 - type: Transform -- uid: 16272 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-55.5 - parent: 1 - type: Transform -- uid: 16273 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-56.5 - parent: 1 - type: Transform -- uid: 16274 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-57.5 - parent: 1 - type: Transform -- uid: 16275 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -58.5,-58.5 - parent: 1 - type: Transform -- uid: 16276 - type: SignDirectionalBar - components: - - pos: -19.478512,48.31118 - parent: 1 - type: Transform -- uid: 16277 - type: Poweredlight - components: - - pos: -41.5,-41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16278 - type: Poweredlight - components: - - pos: -36.5,-41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16279 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-64.5 - parent: 1 - type: Transform -- uid: 16280 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-65.5 - parent: 1 - type: Transform -- uid: 16281 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-66.5 - parent: 1 - type: Transform -- uid: 16282 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-34.5 - parent: 1 - type: Transform -- uid: 16283 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-34.5 - parent: 1 - type: Transform -- uid: 16284 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-34.5 - parent: 1 - type: Transform -- uid: 16285 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-40.5 - parent: 1 - type: Transform -- uid: 16286 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-29.5 - parent: 1 - type: Transform -- uid: 16287 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -40.5,-46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16288 - type: Poweredlight - components: - - pos: -36.5,-53.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16289 - type: CableApcExtension - components: - - pos: -41.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16290 - type: CableApcExtension - components: - - pos: -41.5,-41.5 - parent: 1 - type: Transform -- uid: 16291 - type: CableApcExtension - components: - - pos: -41.5,-42.5 - parent: 1 - type: Transform -- uid: 16292 - type: CableApcExtension - components: - - pos: -41.5,-43.5 - parent: 1 - type: Transform -- uid: 16293 - type: CableApcExtension - components: - - pos: -41.5,-44.5 - parent: 1 - type: Transform -- uid: 16294 - type: CableApcExtension - components: - - pos: -41.5,-45.5 - parent: 1 - type: Transform -- uid: 16295 - type: CableApcExtension - components: - - pos: -41.5,-46.5 - parent: 1 - type: Transform -- uid: 16296 - type: CableApcExtension - components: - - pos: -41.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16297 - type: CableApcExtension - components: - - pos: -41.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16298 - type: CableApcExtension - components: - - pos: -41.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16299 - type: CableApcExtension - components: - - pos: -41.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16300 - type: CableApcExtension - components: - - pos: -41.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16301 - type: CableApcExtension - components: - - pos: -41.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16302 - type: Poweredlight - components: - - pos: -41.5,-53.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16303 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16304 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16305 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16306 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16307 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16308 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16309 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-53.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16310 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16311 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16312 - type: Poweredlight - components: - - pos: -27.5,-33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16313 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16314 - type: SignDirectionalEvac - components: - - pos: -19.483376,48.548702 - parent: 1 - type: Transform -- uid: 16315 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -33.5,-35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16316 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -39.5,-36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16317 - type: PoweredSmallLight - components: - - pos: -43.5,-33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16318 - type: Table - components: - - pos: -36.5,-46.5 - parent: 1 - type: Transform -- uid: 16319 - type: Table - components: - - pos: -35.5,-46.5 - parent: 1 - type: Transform -- uid: 16320 - type: Table - components: - - pos: -35.5,-47.5 - parent: 1 - type: Transform -- uid: 16321 - type: Table - components: - - pos: -35.5,-48.5 - parent: 1 - type: Transform -- uid: 16322 - type: Table - components: - - pos: -35.5,-49.5 - parent: 1 - type: Transform -- uid: 16323 - type: Table - components: - - pos: -35.5,-50.5 - parent: 1 - type: Transform -- uid: 16324 - type: Grille - components: - - pos: -35.5,-58.5 - parent: 1 - type: Transform -- uid: 16325 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -38.5,-59.5 - parent: 1 - type: Transform -- uid: 16326 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -36.5,-59.5 - parent: 1 - type: Transform -- uid: 16327 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -37.5,-59.5 - parent: 1 - type: Transform -- uid: 16328 - type: Grille - components: - - pos: -41.5,-58.5 - parent: 1 - type: Transform -- uid: 16329 - type: Grille - components: - - pos: -42.5,-58.5 - parent: 1 - type: Transform -- uid: 16330 - type: Grille - components: - - pos: -44.5,-58.5 - parent: 1 - type: Transform -- uid: 16331 - type: WallReinforced - components: - - pos: -45.5,-41.5 - parent: 1 - type: Transform -- uid: 16332 - type: WallReinforced - components: - - pos: -57.5,-70.5 - parent: 1 - type: Transform -- uid: 16333 - type: WallReinforced - components: - - pos: -57.5,-72.5 - parent: 1 - type: Transform -- uid: 16334 - type: WallReinforced - components: - - pos: -57.5,-74.5 - parent: 1 - type: Transform -- uid: 16335 - type: WallReinforced - components: - - pos: -57.5,-78.5 - parent: 1 - type: Transform -- uid: 16336 - type: WallReinforced - components: - - pos: -57.5,-80.5 - parent: 1 - type: Transform -- uid: 16337 - type: WallReinforced - components: - - pos: -57.5,-82.5 - parent: 1 - type: Transform -- uid: 16338 - type: WallReinforced - components: - - pos: -56.5,-67.5 - parent: 1 - type: Transform -- uid: 16339 - type: WallReinforced - components: - - pos: -57.5,-67.5 - parent: 1 - type: Transform -- uid: 16340 - type: WallReinforced - components: - - pos: -57.5,-68.5 - parent: 1 - type: Transform -- uid: 16341 - type: WallReinforced - components: - - pos: -57.5,-69.5 - parent: 1 - type: Transform -- uid: 16342 - type: WallSolid - components: - - pos: -55.5,-65.5 - parent: 1 - type: Transform -- uid: 16343 - type: WallSolid - components: - - pos: -54.5,-65.5 - parent: 1 - type: Transform -- uid: 16344 - type: WallSolid - components: - - pos: -53.5,-65.5 - parent: 1 - type: Transform -- uid: 16345 - type: WallSolid - components: - - pos: -52.5,-65.5 - parent: 1 - type: Transform -- uid: 16346 - type: WallSolid - components: - - pos: -51.5,-65.5 - parent: 1 - type: Transform -- uid: 16347 - type: WallSolid - components: - - pos: -51.5,-64.5 - parent: 1 - type: Transform -- uid: 16348 - type: WallSolid - components: - - pos: -51.5,-62.5 - parent: 1 - type: Transform -- uid: 16349 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-61.5 - parent: 1 - type: Transform -- uid: 16350 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -24.5,-62.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 16351 - type: WallSolid - components: - - pos: -56.5,-69.5 - parent: 1 - type: Transform -- uid: 16352 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16353 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16354 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: -24.5,-61.5 - parent: 1 - type: Transform - - color: '#97C3FCCC' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16355 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-60.5 - parent: 1 - type: Transform - - color: '#97C3FCCC' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16356 - type: GasVentPump - components: - - pos: -23.5,-57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16357 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -24.5,-58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16358 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -22.5,-50.5 - parent: 1 - type: Transform -- uid: 16359 - type: WallSolid - components: - - pos: -23.5,-50.5 - parent: 1 - type: Transform -- uid: 16360 - type: WallSolid - components: - - pos: -24.5,-50.5 - parent: 1 - type: Transform -- uid: 16361 - type: WallSolid - components: - - pos: -25.5,-50.5 - parent: 1 - type: Transform -- uid: 16362 - type: WallSolid - components: - - pos: -24.5,-48.5 - parent: 1 - type: Transform -- uid: 16363 - type: WallSolid - components: - - pos: -26.5,-48.5 - parent: 1 - type: Transform -- uid: 16364 - type: WallSolid - components: - - pos: -25.5,-48.5 - parent: 1 - type: Transform -- uid: 16365 - type: WallSolid - components: - - pos: -26.5,-50.5 - parent: 1 - type: Transform -- uid: 16366 - type: WallSolid - components: - - pos: -27.5,-50.5 - parent: 1 - type: Transform -- uid: 16367 - type: WallSolid - components: - - pos: -28.5,-50.5 - parent: 1 - type: Transform -- uid: 16368 - type: WallSolid - components: - - pos: -28.5,-49.5 - parent: 1 - type: Transform -- uid: 16369 - type: WallSolid - components: - - pos: -28.5,-48.5 - parent: 1 - type: Transform -- uid: 16370 - type: Window - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-47.5 - parent: 1 - type: Transform -- uid: 16371 - type: WallSolid - components: - - pos: -28.5,-46.5 - parent: 1 - type: Transform -- uid: 16372 - type: WallSolid - components: - - pos: -28.5,-45.5 - parent: 1 - type: Transform -- uid: 16373 - type: WallSolid - components: - - pos: -29.5,-45.5 - parent: 1 - type: Transform -- uid: 16374 - type: WallSolid - components: - - pos: -29.5,-42.5 - parent: 1 - type: Transform -- uid: 16375 - type: WallSolid - components: - - pos: -28.5,-42.5 - parent: 1 - type: Transform -- uid: 16376 - type: WallSolid - components: - - pos: -27.5,-42.5 - parent: 1 - type: Transform -- uid: 16377 - type: WallSolid - components: - - pos: -26.5,-42.5 - parent: 1 - type: Transform -- uid: 16378 - type: WallSolid - components: - - pos: -26.5,-43.5 - parent: 1 - type: Transform -- uid: 16379 - type: WallSolid - components: - - pos: -26.5,-44.5 - parent: 1 - type: Transform -- uid: 16380 - type: WallSolid - components: - - pos: -26.5,-45.5 - parent: 1 - type: Transform -- uid: 16381 - type: WallSolid - components: - - pos: -30.5,-45.5 - parent: 1 - type: Transform -- uid: 16382 - type: WallSolid - components: - - pos: -29.5,-49.5 - parent: 1 - type: Transform -- uid: 16383 - type: WallSolid - components: - - pos: -31.5,-49.5 - parent: 1 - type: Transform -- uid: 16384 - type: WallSolid - components: - - pos: -27.5,-39.5 - parent: 1 - type: Transform -- uid: 16385 - type: WallSolid - components: - - pos: -27.5,-40.5 - parent: 1 - type: Transform -- uid: 16386 - type: WallSolid - components: - - pos: -23.5,-52.5 - parent: 1 - type: Transform -- uid: 16387 - type: WallSolid - components: - - pos: -23.5,-53.5 - parent: 1 - type: Transform -- uid: 16388 - type: WallSolid - components: - - pos: -22.5,-56.5 - parent: 1 - type: Transform -- uid: 16389 - type: WallSolid - components: - - pos: -23.5,-55.5 - parent: 1 - type: Transform -- uid: 16390 - type: WallSolid - components: - - pos: -23.5,-56.5 - parent: 1 - type: Transform -- uid: 16391 - type: WallSolid - components: - - pos: -24.5,-56.5 - parent: 1 - type: Transform -- uid: 16392 - type: WallSolid - components: - - pos: -25.5,-56.5 - parent: 1 - type: Transform -- uid: 16393 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16394 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 16395 - type: WallSolid - components: - - pos: -26.5,-56.5 - parent: 1 - type: Transform -- uid: 16396 - type: WallSolid - components: - - pos: -27.5,-56.5 - parent: 1 - type: Transform -- uid: 16397 - type: WallSolid - components: - - pos: -29.5,-56.5 - parent: 1 - type: Transform -- uid: 16398 - type: WallSolid - components: - - pos: -30.5,-56.5 - parent: 1 - type: Transform -- uid: 16399 - type: WallReinforced - components: - - pos: -31.5,-57.5 - parent: 1 - type: Transform -- uid: 16400 - type: WallSolid - components: - - pos: -30.5,-57.5 - parent: 1 - type: Transform -- uid: 16401 - type: WallReinforced - components: - - pos: -31.5,-58.5 - parent: 1 - type: Transform -- uid: 16402 - type: WallReinforced - components: - - pos: -30.5,-58.5 - parent: 1 - type: Transform -- uid: 16403 - type: WallReinforced - components: - - pos: -30.5,-59.5 - parent: 1 - type: Transform -- uid: 16404 - type: WallReinforced - components: - - pos: -30.5,-60.5 - parent: 1 - type: Transform -- uid: 16405 - type: WallReinforced - components: - - pos: -31.5,-60.5 - parent: 1 - type: Transform -- uid: 16406 - type: WallReinforced - components: - - pos: -31.5,-61.5 - parent: 1 - type: Transform -- uid: 16407 - type: WallReinforced - components: - - pos: -32.5,-61.5 - parent: 1 - type: Transform -- uid: 16408 - type: WallReinforced - components: - - pos: -33.5,-61.5 - parent: 1 - type: Transform -- uid: 16409 - type: WallReinforced - components: - - pos: -33.5,-62.5 - parent: 1 - type: Transform -- uid: 16410 - type: WallReinforced - components: - - pos: -34.5,-62.5 - parent: 1 - type: Transform -- uid: 16411 - type: WallReinforced - components: - - pos: -35.5,-62.5 - parent: 1 - type: Transform -- uid: 16412 - type: WallReinforced - components: - - pos: -36.5,-62.5 - parent: 1 - type: Transform -- uid: 16413 - type: WallReinforced - components: - - pos: -37.5,-62.5 - parent: 1 - type: Transform -- uid: 16414 - type: WallReinforced - components: - - pos: -38.5,-62.5 - parent: 1 - type: Transform -- uid: 16415 - type: WallReinforced - components: - - pos: -39.5,-62.5 - parent: 1 - type: Transform -- uid: 16416 - type: ReinforcedWindow - components: - - pos: -41.5,-62.5 - parent: 1 - type: Transform -- uid: 16417 - type: ReinforcedWindow - components: - - pos: -40.5,-62.5 - parent: 1 - type: Transform -- uid: 16418 - type: WallReinforced - components: - - pos: -42.5,-62.5 - parent: 1 - type: Transform -- uid: 16419 - type: WallReinforced - components: - - pos: -43.5,-62.5 - parent: 1 - type: Transform -- uid: 16420 - type: WallReinforced - components: - - pos: -44.5,-62.5 - parent: 1 - type: Transform -- uid: 16421 - type: WallReinforced - components: - - pos: -45.5,-62.5 - parent: 1 - type: Transform -- uid: 16422 - type: WallReinforced - components: - - pos: -46.5,-62.5 - parent: 1 - type: Transform -- uid: 16423 - type: WallReinforced - components: - - pos: -47.5,-62.5 - parent: 1 - type: Transform -- uid: 16424 - type: WallReinforced - components: - - pos: -48.5,-62.5 - parent: 1 - type: Transform -- uid: 16425 - type: WallReinforced - components: - - pos: -49.5,-62.5 - parent: 1 - type: Transform -- uid: 16426 - type: WallReinforced - components: - - pos: -50.5,-61.5 - parent: 1 - type: Transform -- uid: 16427 - type: WallReinforced - components: - - pos: -49.5,-61.5 - parent: 1 - type: Transform -- uid: 16428 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -76.5,-25.5 - parent: 1 - type: Transform -- uid: 16429 - type: CableHV - components: - - pos: -53.5,-25.5 - parent: 1 - type: Transform -- uid: 16430 - type: CableHV - components: - - pos: -51.5,-25.5 - parent: 1 - type: Transform -- uid: 16431 - type: Table - components: - - pos: -51.5,-16.5 - parent: 1 - type: Transform -- uid: 16432 - type: Table - components: - - pos: -50.5,-16.5 - parent: 1 - type: Transform -- uid: 16433 - type: Table - components: - - pos: -50.5,-17.5 - parent: 1 - type: Transform -- uid: 16434 - type: WallSolid - components: - - pos: -52.5,-11.5 - parent: 1 - type: Transform -- uid: 16435 - type: WallSolid - components: - - pos: -52.5,-10.5 - parent: 1 - type: Transform -- uid: 16436 - type: WallSolid - components: - - pos: -52.5,-9.5 - parent: 1 - type: Transform -- uid: 16437 - type: WallSolid - components: - - pos: -52.5,-7.5 - parent: 1 - type: Transform -- uid: 16438 - type: WallSolid - components: - - pos: -51.5,-7.5 - parent: 1 - type: Transform -- uid: 16439 - type: WallSolid - components: - - pos: -50.5,-7.5 - parent: 1 - type: Transform -- uid: 16440 - type: AirlockEngineeringLocked - components: - - name: substation - type: MetaData - - pos: -52.5,-8.5 - parent: 1 - type: Transform -- uid: 16441 - type: Table - components: - - pos: -52.5,-16.5 - parent: 1 - type: Transform -- uid: 16442 - type: Table - components: - - pos: -52.5,-15.5 - parent: 1 - type: Transform -- uid: 16443 - type: Table - components: - - pos: -52.5,-14.5 - parent: 1 - type: Transform -- uid: 16444 - type: CableMV - components: - - pos: -54.5,-13.5 - parent: 1 - type: Transform -- uid: 16445 - type: Table - components: - - pos: -52.5,-12.5 - parent: 1 - type: Transform -- uid: 16446 - type: LockerEngineerFilled - components: - - pos: -50.5,-20.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16447 - type: Rack - components: - - pos: -55.5,-6.5 - parent: 1 - type: Transform -- uid: 16448 - type: SheetGlass - components: - - pos: -55.463116,-25.47082 - parent: 1 - type: Transform -- uid: 16449 - type: ClosetEmergencyFilledRandom - components: - - pos: -54.5,-5.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 16450 - type: ClothingEyesGlassesMeson - components: - - pos: -52.538578,-12.210998 - parent: 1 - type: Transform -- uid: 16451 - type: ClothingEyesGlassesMeson - components: - - pos: -56.32557,-25.518402 - parent: 1 - type: Transform -- uid: 16452 - type: WelderMini - components: - - pos: -52.426445,-12.844277 - parent: 1 - type: Transform -- uid: 16453 - type: Emitter - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-7.5 - parent: 1 - type: Transform -- uid: 16454 - type: MaintenanceToolSpawner - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-6.5 - parent: 1 - type: Transform -- uid: 16455 - type: Wrench - components: - - pos: -52.48202,-14.116064 - parent: 1 - type: Transform -- uid: 16456 - type: MaintenanceToolSpawner - components: - - pos: -52.5,-15.5 - parent: 1 - type: Transform -- uid: 16457 - type: MaintenanceToolSpawner - components: - - pos: -50.5,-16.5 - parent: 1 - type: Transform -- uid: 16458 - type: DrinkLean - components: - - pos: -52.43649,-16.426428 - parent: 1 - type: Transform -- uid: 16459 - type: Table - components: - - pos: -70.5,-25.5 - parent: 1 - type: Transform -- uid: 16460 - type: Table - components: - - pos: -70.5,-26.5 - parent: 1 - type: Transform -- uid: 16461 - type: Table - components: - - pos: -71.5,-26.5 - parent: 1 - type: Transform -- uid: 16462 - type: ContainmentFieldGenerator - components: - - pos: -74.5,-26.5 - parent: 1 - type: Transform -- uid: 16463 - type: ContainmentFieldGenerator - components: - - pos: -73.5,-26.5 - parent: 1 - type: Transform -- uid: 16464 - type: CableHV - components: - - pos: -71.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16465 - type: WallSolid - components: - - pos: -27.5,-62.5 - parent: 1 - type: Transform -- uid: 16466 - type: WallSolid - components: - - pos: -29.5,-60.5 - parent: 1 - type: Transform -- uid: 16467 - type: WallSolid - components: - - pos: -29.5,-61.5 - parent: 1 - type: Transform -- uid: 16468 - type: WallSolid - components: - - pos: -27.5,-61.5 - parent: 1 - type: Transform -- uid: 16469 - type: Grille - components: - - pos: -21.5,-61.5 - parent: 1 - type: Transform -- uid: 16470 - type: WallSolid - components: - - pos: -29.5,-62.5 - parent: 1 - type: Transform -- uid: 16471 - type: WallSolid - components: - - pos: -29.5,-63.5 - parent: 1 - type: Transform -- uid: 16472 - type: WallSolid - components: - - pos: -29.5,-64.5 - parent: 1 - type: Transform -- uid: 16473 - type: WallSolid - components: - - pos: -28.5,-64.5 - parent: 1 - type: Transform -- uid: 16474 - type: WallSolid - components: - - pos: -28.5,-65.5 - parent: 1 - type: Transform -- uid: 16475 - type: WallSolid - components: - - pos: -27.5,-65.5 - parent: 1 - type: Transform -- uid: 16476 - type: WallSolid - components: - - pos: -26.5,-65.5 - parent: 1 - type: Transform -- uid: 16477 - type: WallSolid - components: - - pos: -25.5,-63.5 - parent: 1 - type: Transform -- uid: 16478 - type: WallSolid - components: - - pos: -24.5,-63.5 - parent: 1 - type: Transform -- uid: 16479 - type: WallSolid - components: - - pos: -24.5,-65.5 - parent: 1 - type: Transform -- uid: 16480 - type: WallSolid - components: - - pos: -25.5,-65.5 - parent: 1 - type: Transform -- uid: 16481 - type: WallSolid - components: - - pos: -27.5,-68.5 - parent: 1 - type: Transform -- uid: 16482 - type: WallSolid - components: - - pos: -28.5,-68.5 - parent: 1 - type: Transform -- uid: 16483 - type: WallSolid - components: - - pos: -29.5,-68.5 - parent: 1 - type: Transform -- uid: 16484 - type: WallSolid - components: - - pos: -29.5,-67.5 - parent: 1 - type: Transform -- uid: 16485 - type: WallSolid - components: - - pos: -31.5,-67.5 - parent: 1 - type: Transform -- uid: 16486 - type: CableApcExtension - components: - - pos: -25.5,-73.5 - parent: 1 - type: Transform -- uid: 16487 - type: WallSolid - components: - - pos: -30.5,-64.5 - parent: 1 - type: Transform -- uid: 16488 - type: WallSolid - components: - - pos: -30.5,-65.5 - parent: 1 - type: Transform -- uid: 16489 - type: WallSolid - components: - - pos: -31.5,-65.5 - parent: 1 - type: Transform -- uid: 16490 - type: WallSolid - components: - - pos: -32.5,-65.5 - parent: 1 - type: Transform -- uid: 16491 - type: WallSolid - components: - - pos: -32.5,-64.5 - parent: 1 - type: Transform -- uid: 16492 - type: WallSolid - components: - - pos: -33.5,-64.5 - parent: 1 - type: Transform -- uid: 16493 - type: WallSolid - components: - - pos: -55.5,-69.5 - parent: 1 - type: Transform -- uid: 16494 - type: WallSolid - components: - - pos: -54.5,-69.5 - parent: 1 - type: Transform -- uid: 16495 - type: WallSolid - components: - - pos: -53.5,-69.5 - parent: 1 - type: Transform -- uid: 16496 - type: WallSolid - components: - - pos: -52.5,-69.5 - parent: 1 - type: Transform -- uid: 16497 - type: WallSolid - components: - - pos: -52.5,-70.5 - parent: 1 - type: Transform -- uid: 16498 - type: WallSolid - components: - - pos: -52.5,-71.5 - parent: 1 - type: Transform -- uid: 16499 - type: WallSolid - components: - - pos: -51.5,-71.5 - parent: 1 - type: Transform -- uid: 16500 - type: WallSolid - components: - - pos: -51.5,-72.5 - parent: 1 - type: Transform -- uid: 16501 - type: WallSolid - components: - - pos: -50.5,-72.5 - parent: 1 - type: Transform -- uid: 16502 - type: WallSolid - components: - - pos: -50.5,-73.5 - parent: 1 - type: Transform -- uid: 16503 - type: WallSolid - components: - - pos: -50.5,-74.5 - parent: 1 - type: Transform -- uid: 16504 - type: WallSolid - components: - - pos: -50.5,-75.5 - parent: 1 - type: Transform -- uid: 16505 - type: WallReinforced - components: - - pos: -59.5,-78.5 - parent: 1 - type: Transform -- uid: 16506 - type: WallReinforced - components: - - pos: -50.5,-77.5 - parent: 1 - type: Transform -- uid: 16507 - type: WallReinforced - components: - - pos: -50.5,-78.5 - parent: 1 - type: Transform -- uid: 16508 - type: WallReinforced - components: - - pos: -57.5,-83.5 - parent: 1 - type: Transform -- uid: 16509 - type: WallReinforced - components: - - pos: -56.5,-83.5 - parent: 1 - type: Transform -- uid: 16510 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-83.5 - parent: 1 - type: Transform -- uid: 16511 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-83.5 - parent: 1 - type: Transform -- uid: 16512 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-83.5 - parent: 1 - type: Transform -- uid: 16513 - type: WallReinforced - components: - - pos: -52.5,-83.5 - parent: 1 - type: Transform -- uid: 16514 - type: WallReinforced - components: - - pos: -52.5,-82.5 - parent: 1 - type: Transform -- uid: 16515 - type: WallReinforced - components: - - pos: -52.5,-81.5 - parent: 1 - type: Transform -- uid: 16516 - type: WallReinforced - components: - - pos: -51.5,-81.5 - parent: 1 - type: Transform -- uid: 16517 - type: WallReinforced - components: - - pos: -51.5,-80.5 - parent: 1 - type: Transform -- uid: 16518 - type: WallReinforced - components: - - pos: -50.5,-80.5 - parent: 1 - type: Transform -- uid: 16519 - type: WallReinforced - components: - - pos: -50.5,-79.5 - parent: 1 - type: Transform -- uid: 16520 - type: WallReinforced - components: - - pos: -59.5,-80.5 - parent: 1 - type: Transform -- uid: 16521 - type: WallReinforced - components: - - pos: -59.5,-82.5 - parent: 1 - type: Transform -- uid: 16522 - type: WallReinforced - components: - - pos: -58.5,-82.5 - parent: 1 - type: Transform -- uid: 16523 - type: WallSolid - components: - - pos: -58.5,-80.5 - parent: 1 - type: Transform -- uid: 16524 - type: WallReinforced - components: - - pos: -58.5,-78.5 - parent: 1 - type: Transform -- uid: 16525 - type: WallReinforced - components: - - pos: -58.5,-74.5 - parent: 1 - type: Transform -- uid: 16526 - type: WallReinforced - components: - - pos: -59.5,-74.5 - parent: 1 - type: Transform -- uid: 16527 - type: WallSolid - components: - - pos: -58.5,-72.5 - parent: 1 - type: Transform -- uid: 16528 - type: WallReinforced - components: - - pos: -59.5,-72.5 - parent: 1 - type: Transform -- uid: 16529 - type: WallReinforced - components: - - pos: -58.5,-70.5 - parent: 1 - type: Transform -- uid: 16530 - type: WallReinforced - components: - - pos: -59.5,-70.5 - parent: 1 - type: Transform -- uid: 16531 - type: ReinforcedWindow - components: - - pos: -57.5,-75.5 - parent: 1 - type: Transform -- uid: 16532 - type: ReinforcedWindow - components: - - pos: -57.5,-76.5 - parent: 1 - type: Transform -- uid: 16533 - type: ReinforcedWindow - components: - - pos: -57.5,-77.5 - parent: 1 - type: Transform -- uid: 16534 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-73.5 - parent: 1 - type: Transform -- uid: 16535 - type: WallSolid - components: - - pos: -49.5,-75.5 - parent: 1 - type: Transform -- uid: 16536 - type: ReinforcedWindow - components: - - pos: -48.5,-83.5 - parent: 1 - type: Transform -- uid: 16537 - type: WallSolid - components: - - pos: -48.5,-75.5 - parent: 1 - type: Transform -- uid: 16538 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-74.5 - parent: 1 - type: Transform -- uid: 16539 - type: WallSolid - components: - - pos: -48.5,-73.5 - parent: 1 - type: Transform -- uid: 16540 - type: WallSolid - components: - - pos: -48.5,-72.5 - parent: 1 - type: Transform -- uid: 16541 - type: WallSolid - components: - - pos: -48.5,-71.5 - parent: 1 - type: Transform -- uid: 16542 - type: WallSolid - components: - - pos: -47.5,-71.5 - parent: 1 - type: Transform -- uid: 16543 - type: WallSolid - components: - - pos: -46.5,-71.5 - parent: 1 - type: Transform -- uid: 16544 - type: WallSolid - components: - - pos: -46.5,-70.5 - parent: 1 - type: Transform -- uid: 16545 - type: WallSolid - components: - - pos: -45.5,-70.5 - parent: 1 - type: Transform -- uid: 16546 - type: WallSolid - components: - - pos: -45.5,-69.5 - parent: 1 - type: Transform -- uid: 16547 - type: WallSolid - components: - - pos: -44.5,-69.5 - parent: 1 - type: Transform -- uid: 16548 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-80.5 - parent: 1 - type: Transform -- uid: 16549 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-79.5 - parent: 1 - type: Transform -- uid: 16550 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-77.5 - parent: 1 - type: Transform -- uid: 16551 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-85.5 - parent: 1 - type: Transform -- uid: 16552 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-84.5 - parent: 1 - type: Transform -- uid: 16553 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-86.5 - parent: 1 - type: Transform -- uid: 16554 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-86.5 - parent: 1 - type: Transform -- uid: 16555 - type: WallSolid - components: - - pos: -43.5,-69.5 - parent: 1 - type: Transform -- uid: 16556 - type: WallSolid - components: - - pos: -40.5,-68.5 - parent: 1 - type: Transform -- uid: 16557 - type: WallSolid - components: - - pos: -40.5,-67.5 - parent: 1 - type: Transform -- uid: 16558 - type: WallSolid - components: - - pos: -40.5,-69.5 - parent: 1 - type: Transform -- uid: 16559 - type: WallSolid - components: - - pos: -39.5,-69.5 - parent: 1 - type: Transform -- uid: 16560 - type: WallSolid - components: - - pos: -38.5,-69.5 - parent: 1 - type: Transform -- uid: 16561 - type: WallSolid - components: - - pos: -38.5,-70.5 - parent: 1 - type: Transform -- uid: 16562 - type: WallSolid - components: - - pos: -37.5,-70.5 - parent: 1 - type: Transform -- uid: 16563 - type: WallSolid - components: - - pos: -37.5,-71.5 - parent: 1 - type: Transform -- uid: 16564 - type: WallSolid - components: - - pos: -36.5,-71.5 - parent: 1 - type: Transform -- uid: 16565 - type: WallSolid - components: - - pos: -35.5,-71.5 - parent: 1 - type: Transform -- uid: 16566 - type: WallSolid - components: - - pos: -35.5,-72.5 - parent: 1 - type: Transform -- uid: 16567 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-73.5 - parent: 1 - type: Transform -- uid: 16568 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-77.5 - parent: 1 - type: Transform -- uid: 16569 - type: ReinforcedWindow - components: - - pos: -35.5,-82.5 - parent: 1 - type: Transform -- uid: 16570 - type: ReinforcedWindow - components: - - pos: -35.5,-81.5 - parent: 1 - type: Transform -- uid: 16571 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-80.5 - parent: 1 - type: Transform -- uid: 16572 - type: ReinforcedWindow - components: - - pos: -35.5,-77.5 - parent: 1 - type: Transform -- uid: 16573 - type: ReinforcedWindow - components: - - pos: -35.5,-83.5 - parent: 1 - type: Transform -- uid: 16574 - type: ReinforcedWindow - components: - - pos: -35.5,-76.5 - parent: 1 - type: Transform -- uid: 16575 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-75.5 - parent: 1 - type: Transform -- uid: 16576 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-74.5 - parent: 1 - type: Transform -- uid: 16577 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-78.5 - parent: 1 - type: Transform -- uid: 16578 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-85.5 - parent: 1 - type: Transform -- uid: 16579 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-86.5 - parent: 1 - type: Transform -- uid: 16580 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-85.5 - parent: 1 - type: Transform -- uid: 16581 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-86.5 - parent: 1 - type: Transform -- uid: 16582 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-84.5 - parent: 1 - type: Transform -- uid: 16583 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-79.5 - parent: 1 - type: Transform -- uid: 16584 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-84.5 - parent: 1 - type: Transform -- uid: 16585 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-84.5 - parent: 1 - type: Transform -- uid: 16586 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-85.5 - parent: 1 - type: Transform -- uid: 16587 - type: WallSolid - components: - - pos: -40.5,-66.5 - parent: 1 - type: Transform -- uid: 16588 - type: WallSolid - components: - - pos: -43.5,-68.5 - parent: 1 - type: Transform -- uid: 16589 - type: WallSolid - components: - - pos: -40.5,-65.5 - parent: 1 - type: Transform -- uid: 16590 - type: WallSolid - components: - - pos: -41.5,-65.5 - parent: 1 - type: Transform -- uid: 16591 - type: WallSolid - components: - - pos: -42.5,-65.5 - parent: 1 - type: Transform -- uid: 16592 - type: WallSolid - components: - - pos: -43.5,-65.5 - parent: 1 - type: Transform -- uid: 16593 - type: WallSolid - components: - - pos: -44.5,-65.5 - parent: 1 - type: Transform -- uid: 16594 - type: WallSolid - components: - - pos: -45.5,-65.5 - parent: 1 - type: Transform -- uid: 16595 - type: WallSolid - components: - - pos: -46.5,-65.5 - parent: 1 - type: Transform -- uid: 16596 - type: WallSolid - components: - - pos: -47.5,-65.5 - parent: 1 - type: Transform -- uid: 16597 - type: WallSolid - components: - - pos: -48.5,-67.5 - parent: 1 - type: Transform -- uid: 16598 - type: WallSolid - components: - - pos: -48.5,-68.5 - parent: 1 - type: Transform -- uid: 16599 - type: WallSolid - components: - - pos: -48.5,-69.5 - parent: 1 - type: Transform -- uid: 16600 - type: WallSolid - components: - - pos: -48.5,-70.5 - parent: 1 - type: Transform -- uid: 16601 - type: WallSolid - components: - - pos: -48.5,-65.5 - parent: 1 - type: Transform -- uid: 16602 - type: CableApcExtension - components: - - pos: -21.5,-42.5 - parent: 1 - type: Transform -- uid: 16603 - type: CableApcExtension - components: - - pos: -22.5,-42.5 - parent: 1 - type: Transform -- uid: 16604 - type: WallSolid - components: - - pos: -53.5,-66.5 - parent: 1 - type: Transform -- uid: 16605 - type: WallSolid - components: - - pos: -51.5,-69.5 - parent: 1 - type: Transform -- uid: 16606 - type: WallSolid - components: - - pos: -51.5,-68.5 - parent: 1 - type: Transform -- uid: 16607 - type: WallSolid - components: - - pos: -35.5,-63.5 - parent: 1 - type: Transform -- uid: 16608 - type: WallSolid - components: - - pos: -35.5,-64.5 - parent: 1 - type: Transform -- uid: 16609 - type: WallSolid - components: - - pos: -36.5,-66.5 - parent: 1 - type: Transform -- uid: 16610 - type: WallSolid - components: - - pos: -36.5,-67.5 - parent: 1 - type: Transform -- uid: 16611 - type: WallSolid - components: - - pos: -35.5,-67.5 - parent: 1 - type: Transform -- uid: 16612 - type: WallSolid - components: - - pos: -35.5,-68.5 - parent: 1 - type: Transform -- uid: 16613 - type: WallSolid - components: - - pos: -34.5,-68.5 - parent: 1 - type: Transform -- uid: 16614 - type: WallSolid - components: - - pos: -37.5,-66.5 - parent: 1 - type: Transform -- uid: 16615 - type: WallSolid - components: - - pos: -38.5,-66.5 - parent: 1 - type: Transform -- uid: 16616 - type: WallSolid - components: - - pos: -35.5,-69.5 - parent: 1 - type: Transform -- uid: 16617 - type: WallSolid - components: - - pos: -33.5,-68.5 - parent: 1 - type: Transform -- uid: 16618 - type: WallSolid - components: - - pos: -32.5,-68.5 - parent: 1 - type: Transform -- uid: 16619 - type: WallSolid - components: - - pos: -31.5,-68.5 - parent: 1 - type: Transform -- uid: 16620 - type: WallSolid - components: - - pos: -42.5,-63.5 - parent: 1 - type: Transform -- uid: 16621 - type: WallSolid - components: - - pos: -46.5,-64.5 - parent: 1 - type: Transform -- uid: 16622 - type: ReinforcedWindow - components: - - pos: -35.5,-78.5 - parent: 1 - type: Transform -- uid: 16623 - type: TableWood - components: - - pos: -39.5,-76.5 - parent: 1 - type: Transform -- uid: 16624 - type: TableWood - components: - - pos: -39.5,-77.5 - parent: 1 - type: Transform -- uid: 16625 - type: TableWood - components: - - pos: -40.5,-77.5 - parent: 1 - type: Transform -- uid: 16626 - type: TableWood - components: - - pos: -40.5,-78.5 - parent: 1 - type: Transform -- uid: 16627 - type: TableWood - components: - - pos: -41.5,-78.5 - parent: 1 - type: Transform -- uid: 16628 - type: TableWood - components: - - pos: -42.5,-78.5 - parent: 1 - type: Transform -- uid: 16629 - type: TableWood - components: - - pos: -43.5,-78.5 - parent: 1 - type: Transform -- uid: 16630 - type: TableWood - components: - - pos: -43.5,-77.5 - parent: 1 - type: Transform -- uid: 16631 - type: TableWood - components: - - pos: -44.5,-77.5 - parent: 1 - type: Transform -- uid: 16632 - type: TableWood - components: - - pos: -44.5,-76.5 - parent: 1 - type: Transform -- uid: 16633 - type: WallSolid - components: - - pos: -40.5,-73.5 - parent: 1 - type: Transform -- uid: 16634 - type: WallSolid - components: - - pos: -44.5,-73.5 - parent: 1 - type: Transform -- uid: 16635 - type: WallSolid - components: - - pos: -39.5,-74.5 - parent: 1 - type: Transform -- uid: 16636 - type: WallSolid - components: - - pos: -42.5,-73.5 - parent: 1 - type: Transform -- uid: 16637 - type: WallSolid - components: - - pos: -41.5,-73.5 - parent: 1 - type: Transform -- uid: 16638 - type: WallSolid - components: - - pos: -43.5,-73.5 - parent: 1 - type: Transform -- uid: 16639 - type: WallSolid - components: - - pos: -44.5,-74.5 - parent: 1 - type: Transform -- uid: 16640 - type: WallSolid - components: - - pos: -39.5,-73.5 - parent: 1 - type: Transform -- uid: 16641 - type: RailingCorner - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-84.5 - parent: 1 - type: Transform -- uid: 16642 - type: RailingCorner - components: - - rot: 3.141592653589793 rad - pos: -44.5,-80.5 - parent: 1 - type: Transform -- uid: 16643 - type: RailingCorner - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-80.5 - parent: 1 - type: Transform -- uid: 16644 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -40.5,-80.5 - parent: 1 - type: Transform -- uid: 16645 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -41.5,-80.5 - parent: 1 - type: Transform -- uid: 16646 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -42.5,-80.5 - parent: 1 - type: Transform -- uid: 16647 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -43.5,-80.5 - parent: 1 - type: Transform -- uid: 16648 - type: Railing - components: - - pos: -40.5,-84.5 - parent: 1 - type: Transform -- uid: 16649 - type: Railing - components: - - pos: -41.5,-84.5 - parent: 1 - type: Transform -- uid: 16650 - type: Railing - components: - - pos: -42.5,-84.5 - parent: 1 - type: Transform -- uid: 16651 - type: Railing - components: - - pos: -43.5,-84.5 - parent: 1 - type: Transform -- uid: 16652 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-81.5 - parent: 1 - type: Transform -- uid: 16653 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-82.5 - parent: 1 - type: Transform -- uid: 16654 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-81.5 - parent: 1 - type: Transform -- uid: 16655 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-82.5 - parent: 1 - type: Transform -- uid: 16656 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-83.5 - parent: 1 - type: Transform -- uid: 16657 - type: WindoorSecure - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-83.5 - parent: 1 - type: Transform -- uid: 16658 - type: WindoorBarLocked - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-75.5 - parent: 1 - type: Transform -- uid: 16659 - type: WindoorBarLocked - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-75.5 - parent: 1 - type: Transform -- uid: 16660 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-74.5 - parent: 1 - type: Transform -- uid: 16661 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-74.5 - parent: 1 - type: Transform -- uid: 16662 - type: soda_dispenser - components: - - pos: -40.5,-74.5 - parent: 1 - type: Transform -- uid: 16663 - type: BoozeDispenser - components: - - pos: -43.5,-74.5 - parent: 1 - type: Transform -- uid: 16664 - type: DiceBag - components: - - pos: 23.269382,-29.34838 - parent: 1 - type: Transform -- uid: 16665 - type: PosterLegitHighClassMartini - components: - - pos: -39.5,-74.5 - parent: 1 - type: Transform -- uid: 16666 - type: ClothingHandsGlovesBoxingRed - components: - - pos: -44.121326,-80.72781 - parent: 1 - type: Transform -- uid: 16667 - type: ClothingHandsGlovesBoxingBlue - components: - - pos: -39.808826,-84.16531 - parent: 1 - type: Transform -- uid: 16668 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -40.5,-79.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 16669 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -41.5,-79.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 16670 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -42.5,-79.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 16671 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: -43.5,-79.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 16672 - type: StoolBar - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-78.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 16673 - type: StoolBar - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-78.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 16674 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-73.5 - parent: 1 - type: Transform -- uid: 16675 - type: PoweredSmallLight - components: - - pos: -33.5,-69.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16676 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-74.5 - parent: 1 - type: Transform -- uid: 16677 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-75.5 - parent: 1 - type: Transform -- uid: 16678 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-75.5 - parent: 1 - type: Transform -- uid: 16679 - type: NitrousOxideTank - components: - - pos: -3.498691,-65.92361 - parent: 1 - type: Transform -- uid: 16680 - type: WallSolid - components: - - pos: -23.5,-63.5 - parent: 1 - type: Transform -- uid: 16681 - type: Barricade - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-66.5 - parent: 1 - type: Transform -- uid: 16682 - type: Barricade - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-66.5 - parent: 1 - type: Transform -- uid: 16683 - type: Barricade - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-67.5 - parent: 1 - type: Transform -- uid: 16684 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 20.5,-45.5 - parent: 1 - type: Transform -- uid: 16685 - type: WeaponCapacitorRecharger - components: - - pos: 20.5,-45.5 - parent: 1 - type: Transform -- uid: 16686 - type: CableHV - components: - - pos: -19.5,-42.5 - parent: 1 - type: Transform -- uid: 16687 - type: CableHV - components: - - pos: -20.5,-42.5 - parent: 1 - type: Transform -- uid: 16688 - type: CableHV - components: - - pos: -21.5,-42.5 - parent: 1 - type: Transform -- uid: 16689 - type: CableHV - components: - - pos: -22.5,-42.5 - parent: 1 - type: Transform -- uid: 16690 - type: CableHV - components: - - pos: -23.5,-42.5 - parent: 1 - type: Transform -- uid: 16691 - type: CableHV - components: - - pos: -23.5,-43.5 - parent: 1 - type: Transform -- uid: 16692 - type: CableHV - components: - - pos: -23.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16693 - type: CableHV - components: - - pos: -23.5,-45.5 - parent: 1 - type: Transform -- uid: 16694 - type: CableHV - components: - - pos: -23.5,-46.5 - parent: 1 - type: Transform -- uid: 16695 - type: CableHV - components: - - pos: -23.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16696 - type: CableHV - components: - - pos: -23.5,-48.5 - parent: 1 - type: Transform -- uid: 16697 - type: CableHV - components: - - pos: -23.5,-49.5 - parent: 1 - type: Transform -- uid: 16698 - type: CableHV - components: - - pos: -24.5,-49.5 - parent: 1 - type: Transform -- uid: 16699 - type: CableHV - components: - - pos: -25.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16700 - type: CableHV - components: - - pos: -26.5,-49.5 - parent: 1 - type: Transform -- uid: 16701 - type: CableHV - components: - - pos: -27.5,-49.5 - parent: 1 - type: Transform -- uid: 16702 - type: CableHV - components: - - pos: -27.5,-48.5 - parent: 1 - type: Transform -- uid: 16703 - type: CableHV - components: - - pos: -27.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16704 - type: CableHV - components: - - pos: -27.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16705 - type: CableHV - components: - - pos: -27.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16706 - type: CableHV - components: - - pos: -27.5,-44.5 - parent: 1 - type: Transform -- uid: 16707 - type: CableHV - components: - - pos: -28.5,-44.5 - parent: 1 - type: Transform -- uid: 16708 - type: CableHV - components: - - pos: -29.5,-44.5 - parent: 1 - type: Transform -- uid: 16709 - type: CableHV - components: - - pos: -30.5,-44.5 - parent: 1 - type: Transform -- uid: 16710 - type: CableHV - components: - - pos: -31.5,-44.5 - parent: 1 - type: Transform -- uid: 16711 - type: CableHV - components: - - pos: -31.5,-45.5 - parent: 1 - type: Transform -- uid: 16712 - type: CableHV - components: - - pos: -31.5,-46.5 - parent: 1 - type: Transform -- uid: 16713 - type: CableHV - components: - - pos: -31.5,-47.5 - parent: 1 - type: Transform -- uid: 16714 - type: CableHV - components: - - pos: -30.5,-47.5 - parent: 1 - type: Transform -- uid: 16715 - type: CableHV - components: - - pos: -30.5,-48.5 - parent: 1 - type: Transform -- uid: 16716 - type: CableHV - components: - - pos: -30.5,-49.5 - parent: 1 - type: Transform -- uid: 16717 - type: CableHV - components: - - pos: -30.5,-50.5 - parent: 1 - type: Transform -- uid: 16718 - type: CableHV - components: - - pos: -30.5,-51.5 - parent: 1 - type: Transform -- uid: 16719 - type: CableHV - components: - - pos: -30.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16720 - type: PowerCellRecharger - components: - - pos: -32.5,17.5 - parent: 1 - type: Transform -- uid: 16721 - type: CableHV - components: - - pos: -30.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16722 - type: CableHV - components: - - pos: -31.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16723 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -30.5,-53.5 - parent: 1 - type: Transform -- uid: 16724 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-52.5 - parent: 1 - type: Transform -- uid: 16725 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-53.5 - parent: 1 - type: Transform -- uid: 16726 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-54.5 - parent: 1 - type: Transform -- uid: 16727 - type: CableHV - components: - - pos: -31.5,-54.5 - parent: 1 - type: Transform -- uid: 16728 - type: UprightPianoInstrument - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-75.5 - parent: 1 - type: Transform -- uid: 16729 - type: SubstationBasic - components: - - pos: -31.5,-54.5 - parent: 1 - type: Transform -- uid: 16730 - type: Rack - components: - - pos: -31.5,-56.5 - parent: 1 - type: Transform -- uid: 16731 - type: ClothingBackpackVirology - components: - - pos: -31.439095,-73.39239 - parent: 1 - type: Transform -- uid: 16732 - type: EmergencyLight - components: - - pos: 15.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 16733 - type: TableReinforced - components: - - pos: -15.5,12.5 - parent: 1 - type: Transform -- uid: 16734 - type: FirelockGlass - components: - - pos: -21.5,-60.5 - parent: 1 - type: Transform -- uid: 16735 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -27.5,-70.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16736 - type: CableApcExtension - components: - - pos: -29.5,-73.5 - parent: 1 - type: Transform -- uid: 16737 - type: Grille - components: - - pos: -28.5,-72.5 - parent: 1 - type: Transform -- uid: 16738 - type: AirlockVirologyGlassLocked - components: - - pos: -26.5,-73.5 - parent: 1 - type: Transform -- uid: 16739 - type: CableApcExtension - components: - - pos: -39.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16740 - type: APCHighCapacity - components: - - pos: -29.5,-64.5 - parent: 1 - type: Transform -- uid: 16741 - type: CableMV - components: - - pos: -31.5,-54.5 - parent: 1 - type: Transform -- uid: 16742 - type: CableMV - components: - - pos: -31.5,-55.5 - parent: 1 - type: Transform -- uid: 16743 - type: CableMV - components: - - pos: -30.5,-55.5 - parent: 1 - type: Transform -- uid: 16744 - type: CableMV - components: - - pos: -29.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16745 - type: CableMV - components: - - pos: -28.5,-55.5 - parent: 1 - type: Transform -- uid: 16746 - type: CableMV - components: - - pos: -28.5,-56.5 - parent: 1 - type: Transform -- uid: 16747 - type: CableMV - components: - - pos: -28.5,-57.5 - parent: 1 - type: Transform -- uid: 16748 - type: CableMV - components: - - pos: -28.5,-58.5 - parent: 1 - type: Transform -- uid: 16749 - type: CableMV - components: - - pos: -28.5,-59.5 - parent: 1 - type: Transform -- uid: 16750 - type: CableMV - components: - - pos: -28.5,-60.5 - parent: 1 - type: Transform -- uid: 16751 - type: CableMV - components: - - pos: -28.5,-61.5 - parent: 1 - type: Transform -- uid: 16752 - type: CableMV - components: - - pos: -28.5,-62.5 - parent: 1 - type: Transform -- uid: 16753 - type: CableMV - components: - - pos: -28.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16754 - type: CableMV - components: - - pos: -29.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16755 - type: CableMV - components: - - pos: -29.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16756 - type: CableApcExtension - components: - - pos: -29.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16757 - type: CableApcExtension - components: - - pos: -29.5,-65.5 - parent: 1 - type: Transform -- uid: 16758 - type: CableApcExtension - components: - - pos: -29.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16759 - type: CableApcExtension - components: - - pos: -30.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16760 - type: CableApcExtension - components: - - pos: -31.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16761 - type: CableApcExtension - components: - - pos: -32.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16762 - type: CableApcExtension - components: - - pos: -33.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16763 - type: CableApcExtension - components: - - pos: -34.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16764 - type: CableApcExtension - components: - - pos: -35.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16765 - type: CableApcExtension - components: - - pos: -35.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16766 - type: CableApcExtension - components: - - pos: -36.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16767 - type: CableApcExtension - components: - - pos: -37.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16768 - type: CableApcExtension - components: - - pos: -38.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16769 - type: CableApcExtension - components: - - pos: -39.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16770 - type: CableApcExtension - components: - - pos: -39.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16771 - type: CableApcExtension - components: - - pos: -40.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16772 - type: CableApcExtension - components: - - pos: -41.5,-64.5 - parent: 1 - type: Transform -- uid: 16773 - type: CableApcExtension - components: - - pos: -42.5,-64.5 - parent: 1 - type: Transform -- uid: 16774 - type: CableApcExtension - components: - - pos: -43.5,-64.5 - parent: 1 - type: Transform -- uid: 16775 - type: CableApcExtension - components: - - pos: -44.5,-64.5 - parent: 1 - type: Transform -- uid: 16776 - type: CableApcExtension - components: - - pos: -45.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16777 - type: CableApcExtension - components: - - pos: -45.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16778 - type: CableApcExtension - components: - - pos: -46.5,-63.5 - parent: 1 - type: Transform -- uid: 16779 - type: CableApcExtension - components: - - pos: -47.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16780 - type: CableApcExtension - components: - - pos: -47.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16781 - type: CableApcExtension - components: - - pos: -48.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16782 - type: CableApcExtension - components: - - pos: -49.5,-64.5 - parent: 1 - type: Transform -- uid: 16783 - type: CableApcExtension - components: - - pos: -49.5,-65.5 - parent: 1 - type: Transform -- uid: 16784 - type: CableApcExtension - components: - - pos: -49.5,-66.5 - parent: 1 - type: Transform -- uid: 16785 - type: CableApcExtension - components: - - pos: -48.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16786 - type: CableApcExtension - components: - - pos: -47.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16787 - type: CableApcExtension - components: - - pos: -46.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16788 - type: CableApcExtension - components: - - pos: -45.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16789 - type: CableApcExtension - components: - - pos: -44.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16790 - type: CableApcExtension - components: - - pos: -43.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16791 - type: CableApcExtension - components: - - pos: -42.5,-66.5 - parent: 1 - type: Transform -- uid: 16792 - type: CableMV - components: - - pos: -30.5,-63.5 - parent: 1 - type: Transform -- uid: 16793 - type: CableApcExtension - components: - - pos: -42.5,-68.5 - parent: 1 - type: Transform -- uid: 16794 - type: CableApcExtension - components: - - pos: -42.5,-69.5 - parent: 1 - type: Transform -- uid: 16795 - type: CableApcExtension - components: - - pos: -42.5,-70.5 - parent: 1 - type: Transform -- uid: 16796 - type: CableApcExtension - components: - - pos: -42.5,-71.5 - parent: 1 - type: Transform -- uid: 16797 - type: CableApcExtension - components: - - pos: -43.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16798 - type: CableApcExtension - components: - - pos: -44.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16799 - type: CableApcExtension - components: - - pos: -45.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16800 - type: CableApcExtension - components: - - pos: -45.5,-72.5 - parent: 1 - type: Transform -- uid: 16801 - type: CableApcExtension - components: - - pos: -45.5,-73.5 - parent: 1 - type: Transform -- uid: 16802 - type: CableApcExtension - components: - - pos: -45.5,-74.5 - parent: 1 - type: Transform -- uid: 16803 - type: CableApcExtension - components: - - pos: -45.5,-75.5 - parent: 1 - type: Transform -- uid: 16804 - type: CableApcExtension - components: - - pos: -44.5,-75.5 - parent: 1 - type: Transform -- uid: 16805 - type: CableApcExtension - components: - - pos: -43.5,-75.5 - parent: 1 - type: Transform -- uid: 16806 - type: CableApcExtension - components: - - pos: -42.5,-76.5 - parent: 1 - type: Transform -- uid: 16807 - type: CableApcExtension - components: - - pos: -42.5,-75.5 - parent: 1 - type: Transform -- uid: 16808 - type: CableApcExtension - components: - - pos: -41.5,-76.5 - parent: 1 - type: Transform -- uid: 16809 - type: CableApcExtension - components: - - pos: -40.5,-76.5 - parent: 1 - type: Transform -- uid: 16810 - type: CableApcExtension - components: - - pos: -40.5,-75.5 - parent: 1 - type: Transform -- uid: 16811 - type: CableApcExtension - components: - - pos: -39.5,-75.5 - parent: 1 - type: Transform -- uid: 16812 - type: CableApcExtension - components: - - pos: -38.5,-75.5 - parent: 1 - type: Transform -- uid: 16813 - type: CableApcExtension - components: - - pos: -37.5,-75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16814 - type: CableApcExtension - components: - - pos: -37.5,-76.5 - parent: 1 - type: Transform -- uid: 16815 - type: CableApcExtension - components: - - pos: -37.5,-77.5 - parent: 1 - type: Transform -- uid: 16816 - type: CableApcExtension - components: - - pos: -37.5,-78.5 - parent: 1 - type: Transform -- uid: 16817 - type: CableApcExtension - components: - - pos: -37.5,-79.5 - parent: 1 - type: Transform -- uid: 16818 - type: CableApcExtension - components: - - pos: -37.5,-80.5 - parent: 1 - type: Transform -- uid: 16819 - type: CableApcExtension - components: - - pos: -37.5,-81.5 - parent: 1 - type: Transform -- uid: 16820 - type: CableApcExtension - components: - - pos: -37.5,-82.5 - parent: 1 - type: Transform -- uid: 16821 - type: CableApcExtension - components: - - pos: -38.5,-82.5 - parent: 1 - type: Transform -- uid: 16822 - type: CableApcExtension - components: - - pos: -39.5,-82.5 - parent: 1 - type: Transform -- uid: 16823 - type: CableApcExtension - components: - - pos: -40.5,-82.5 - parent: 1 - type: Transform -- uid: 16824 - type: CableApcExtension - components: - - pos: -41.5,-82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16825 - type: CableApcExtension - components: - - pos: -42.5,-82.5 - parent: 1 - type: Transform -- uid: 16826 - type: CableApcExtension - components: - - pos: -43.5,-82.5 - parent: 1 - type: Transform -- uid: 16827 - type: CableApcExtension - components: - - pos: -44.5,-82.5 - parent: 1 - type: Transform -- uid: 16828 - type: CableApcExtension - components: - - pos: -45.5,-82.5 - parent: 1 - type: Transform -- uid: 16829 - type: CableApcExtension - components: - - pos: -46.5,-82.5 - parent: 1 - type: Transform -- uid: 16830 - type: CableApcExtension - components: - - pos: -46.5,-83.5 - parent: 1 - type: Transform -- uid: 16831 - type: CableApcExtension - components: - - pos: -42.5,-83.5 - parent: 1 - type: Transform -- uid: 16832 - type: CableApcExtension - components: - - pos: -42.5,-84.5 - parent: 1 - type: Transform -- uid: 16833 - type: CableApcExtension - components: - - pos: -37.5,-83.5 - parent: 1 - type: Transform -- uid: 16834 - type: CableApcExtension - components: - - pos: -37.5,-84.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16835 - type: CableApcExtension - components: - - pos: -46.5,-81.5 - parent: 1 - type: Transform -- uid: 16836 - type: CableApcExtension - components: - - pos: -46.5,-80.5 - parent: 1 - type: Transform -- uid: 16837 - type: CableApcExtension - components: - - pos: -46.5,-79.5 - parent: 1 - type: Transform -- uid: 16838 - type: CableApcExtension - components: - - pos: -46.5,-78.5 - parent: 1 - type: Transform -- uid: 16839 - type: CableApcExtension - components: - - pos: -46.5,-77.5 - parent: 1 - type: Transform -- uid: 16840 - type: CableApcExtension - components: - - pos: -46.5,-76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16841 - type: CableApcExtension - components: - - pos: -47.5,-76.5 - parent: 1 - type: Transform -- uid: 16842 - type: CableApcExtension - components: - - pos: -48.5,-76.5 - parent: 1 - type: Transform -- uid: 16843 - type: CableApcExtension - components: - - pos: -49.5,-76.5 - parent: 1 - type: Transform -- uid: 16844 - type: CableApcExtension - components: - - pos: -50.5,-76.5 - parent: 1 - type: Transform -- uid: 16845 - type: CableApcExtension - components: - - pos: -51.5,-76.5 - parent: 1 - type: Transform -- uid: 16846 - type: CableApcExtension - components: - - pos: -52.5,-76.5 - parent: 1 - type: Transform -- uid: 16847 - type: CableApcExtension - components: - - pos: -53.5,-76.5 - parent: 1 - type: Transform -- uid: 16848 - type: CableApcExtension - components: - - pos: -54.5,-76.5 - parent: 1 - type: Transform -- uid: 16849 - type: CableApcExtension - components: - - pos: -55.5,-76.5 - parent: 1 - type: Transform -- uid: 16850 - type: CableApcExtension - components: - - pos: -55.5,-77.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16851 - type: CableApcExtension - components: - - pos: -55.5,-78.5 - parent: 1 - type: Transform -- uid: 16852 - type: CableApcExtension - components: - - pos: -55.5,-79.5 - parent: 1 - type: Transform -- uid: 16853 - type: CableApcExtension - components: - - pos: -55.5,-80.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16854 - type: CableApcExtension - components: - - pos: -55.5,-81.5 - parent: 1 - type: Transform -- uid: 16855 - type: CableApcExtension - components: - - pos: -55.5,-75.5 - parent: 1 - type: Transform -- uid: 16856 - type: CableApcExtension - components: - - pos: -55.5,-74.5 - parent: 1 - type: Transform -- uid: 16857 - type: CableApcExtension - components: - - pos: -55.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16858 - type: CableApcExtension - components: - - pos: -55.5,-72.5 - parent: 1 - type: Transform -- uid: 16859 - type: CableApcExtension - components: - - pos: -55.5,-71.5 - parent: 1 - type: Transform -- uid: 16860 - type: CableApcExtension - components: - - pos: -54.5,-73.5 - parent: 1 - type: Transform -- uid: 16861 - type: CableApcExtension - components: - - pos: -53.5,-73.5 - parent: 1 - type: Transform -- uid: 16862 - type: CableApcExtension - components: - - pos: -54.5,-79.5 - parent: 1 - type: Transform -- uid: 16863 - type: CableApcExtension - components: - - pos: -53.5,-79.5 - parent: 1 - type: Transform -- uid: 16864 - type: CableApcExtension - components: - - pos: -56.5,-71.5 - parent: 1 - type: Transform -- uid: 16865 - type: CableApcExtension - components: - - pos: -57.5,-71.5 - parent: 1 - type: Transform -- uid: 16866 - type: CableApcExtension - components: - - pos: -56.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16867 - type: CableApcExtension - components: - - pos: -57.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16868 - type: CableApcExtension - components: - - pos: -56.5,-79.5 - parent: 1 - type: Transform -- uid: 16869 - type: CableApcExtension - components: - - pos: -57.5,-79.5 - parent: 1 - type: Transform -- uid: 16870 - type: CableApcExtension - components: - - pos: -56.5,-81.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16871 - type: CableApcExtension - components: - - pos: -57.5,-81.5 - parent: 1 - type: Transform -- uid: 16872 - type: CableApcExtension - components: - - pos: -55.5,-82.5 - parent: 1 - type: Transform -- uid: 16873 - type: Grille - components: - - pos: -35.5,-76.5 - parent: 1 - type: Transform -- uid: 16874 - type: Grille - components: - - pos: -35.5,-77.5 - parent: 1 - type: Transform -- uid: 16875 - type: Grille - components: - - pos: -35.5,-78.5 - parent: 1 - type: Transform -- uid: 16876 - type: Grille - components: - - pos: -35.5,-81.5 - parent: 1 - type: Transform -- uid: 16877 - type: Grille - components: - - pos: -35.5,-82.5 - parent: 1 - type: Transform -- uid: 16878 - type: Grille - components: - - pos: -35.5,-83.5 - parent: 1 - type: Transform -- uid: 16879 - type: Grille - components: - - pos: -40.5,-86.5 - parent: 1 - type: Transform -- uid: 16880 - type: AirlockMaintGlass - components: - - pos: -41.5,-86.5 - parent: 1 - type: Transform -- uid: 16881 - type: AirlockMaintGlass - components: - - pos: -42.5,-86.5 - parent: 1 - type: Transform -- uid: 16882 - type: Grille - components: - - pos: -43.5,-86.5 - parent: 1 - type: Transform -- uid: 16883 - type: WallReinforced - components: - - pos: -44.5,-86.5 - parent: 1 - type: Transform -- uid: 16884 - type: ReinforcedWindow - components: - - pos: -40.5,-86.5 - parent: 1 - type: Transform -- uid: 16885 - type: ReinforcedWindow - components: - - pos: -43.5,-86.5 - parent: 1 - type: Transform -- uid: 16886 - type: WallReinforced - components: - - pos: -39.5,-86.5 - parent: 1 - type: Transform -- uid: 16887 - type: PoweredSmallLightEmpty - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-79.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16888 - type: PoweredSmallLightEmpty - components: - - rot: 3.141592653589793 rad - pos: -37.5,-84.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16889 - type: PoweredSmallLightEmpty - components: - - rot: 3.141592653589793 rad - pos: -46.5,-84.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16890 - type: PoweredSmallLightEmpty - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-79.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16891 - type: PoweredSmallLightEmpty - components: - - pos: -42.5,-74.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16892 - type: PoweredSmallLightEmpty - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-72.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16893 - type: PoweredSmallLightEmpty - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-72.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16894 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-78.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16895 - type: PoweredSmallLightEmpty - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-80.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16896 - type: PoweredSmallLightEmpty - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-74.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16897 - type: PoweredSmallLightEmpty - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-72.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16898 - type: SolarPanel - components: - - pos: 12.5,-104.5 - parent: 1 - type: Transform -- uid: 16899 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -51.5,-79.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16900 - type: PoweredSmallLight - components: - - pos: -26.5,-66.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16901 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-61.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 16902 - type: CableApcExtension - components: - - pos: -29.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16903 - type: CableApcExtension - components: - - pos: -28.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16904 - type: CableApcExtension - components: - - pos: -28.5,-62.5 - parent: 1 - type: Transform -- uid: 16905 - type: CableApcExtension - components: - - pos: -28.5,-61.5 - parent: 1 - type: Transform -- uid: 16906 - type: CableApcExtension - components: - - pos: -28.5,-60.5 - parent: 1 - type: Transform -- uid: 16907 - type: CableApcExtension - components: - - pos: -28.5,-59.5 - parent: 1 - type: Transform -- uid: 16908 - type: CableApcExtension - components: - - pos: -28.5,-58.5 - parent: 1 - type: Transform -- uid: 16909 - type: CableApcExtension - components: - - pos: -28.5,-57.5 - parent: 1 - type: Transform -- uid: 16910 - type: CableApcExtension - components: - - pos: -28.5,-56.5 - parent: 1 - type: Transform -- uid: 16911 - type: CableApcExtension - components: - - pos: -28.5,-55.5 - parent: 1 - type: Transform -- uid: 16912 - type: CableApcExtension - components: - - pos: -28.5,-54.5 - parent: 1 - type: Transform -- uid: 16913 - type: CableApcExtension - components: - - pos: -27.5,-54.5 - parent: 1 - type: Transform -- uid: 16914 - type: CableApcExtension - components: - - pos: -26.5,-54.5 - parent: 1 - type: Transform -- uid: 16915 - type: CableApcExtension - components: - - pos: -25.5,-54.5 - parent: 1 - type: Transform -- uid: 16916 - type: CableApcExtension - components: - - pos: -25.5,-53.5 - parent: 1 - type: Transform -- uid: 16917 - type: CableApcExtension - components: - - pos: -25.5,-52.5 - parent: 1 - type: Transform -- uid: 16918 - type: CableApcExtension - components: - - pos: -25.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16919 - type: CableApcExtension - components: - - pos: -24.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16920 - type: Grille - components: - - pos: -21.5,-59.5 - parent: 1 - type: Transform -- uid: 16921 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16922 - type: Catwalk - components: - - pos: -25.5,-58.5 - parent: 1 - type: Transform -- uid: 16923 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: -25.5,-59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16924 - type: GasPressurePump - components: - - pos: -23.5,-59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16925 - type: CableApcExtension - components: - - pos: -27.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16926 - type: CableApcExtension - components: - - pos: -27.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16927 - type: CableApcExtension - components: - - pos: -23.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16928 - type: CableApcExtension - components: - - pos: -24.5,-64.5 - parent: 1 - type: Transform -- uid: 16929 - type: CableApcExtension - components: - - pos: -25.5,-64.5 - parent: 1 - type: Transform -- uid: 16930 - type: CableApcExtension - components: - - pos: -26.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16931 - type: CableApcExtension - components: - - pos: -23.5,-66.5 - parent: 1 - type: Transform -- uid: 16932 - type: CableApcExtension - components: - - pos: -23.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16933 - type: AirlockExternalGlass - components: - - pos: -57.5,-81.5 - parent: 1 - type: Transform -- uid: 16934 - type: AirlockExternalGlass - components: - - pos: -57.5,-79.5 - parent: 1 - type: Transform -- uid: 16935 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-70.5 - parent: 1 - type: Transform -- uid: 16936 - type: AirlockExternalGlass - components: - - pos: -57.5,-73.5 - parent: 1 - type: Transform -- uid: 16937 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-71.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 16938 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-73.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 16939 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-79.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 16940 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -59.5,-81.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 16941 - type: CableApcExtension - components: - - pos: -42.5,-72.5 - parent: 1 - type: Transform -- uid: 16942 - type: CableApcExtension - components: - - pos: -41.5,-72.5 - parent: 1 - type: Transform -- uid: 16943 - type: CableApcExtension - components: - - pos: -40.5,-72.5 - parent: 1 - type: Transform -- uid: 16944 - type: CableApcExtension - components: - - pos: -39.5,-72.5 - parent: 1 - type: Transform -- uid: 16945 - type: CableApcExtension - components: - - pos: -38.5,-72.5 - parent: 1 - type: Transform -- uid: 16946 - type: CableApcExtension - components: - - pos: -23.5,-42.5 - parent: 1 - type: Transform -- uid: 16947 - type: CableApcExtension - components: - - pos: -23.5,-43.5 - parent: 1 - type: Transform -- uid: 16948 - type: CableApcExtension - components: - - pos: -23.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16949 - type: CableApcExtension - components: - - pos: -23.5,-45.5 - parent: 1 - type: Transform -- uid: 16950 - type: CableApcExtension - components: - - pos: -23.5,-46.5 - parent: 1 - type: Transform -- uid: 16951 - type: CableApcExtension - components: - - pos: -23.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16952 - type: CableApcExtension - components: - - pos: -23.5,-48.5 - parent: 1 - type: Transform -- uid: 16953 - type: CableApcExtension - components: - - pos: -23.5,-49.5 - parent: 1 - type: Transform -- uid: 16954 - type: CableApcExtension - components: - - pos: -24.5,-49.5 - parent: 1 - type: Transform -- uid: 16955 - type: CableApcExtension - components: - - pos: -25.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16956 - type: CableApcExtension - components: - - pos: -26.5,-49.5 - parent: 1 - type: Transform -- uid: 16957 - type: CableApcExtension - components: - - pos: -27.5,-49.5 - parent: 1 - type: Transform -- uid: 16958 - type: CableApcExtension - components: - - pos: -27.5,-48.5 - parent: 1 - type: Transform -- uid: 16959 - type: CableApcExtension - components: - - pos: -27.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16960 - type: CableApcExtension - components: - - pos: -27.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16961 - type: CableApcExtension - components: - - pos: -26.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16962 - type: CableApcExtension - components: - - pos: -25.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16963 - type: CableApcExtension - components: - - pos: -25.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16964 - type: CableApcExtension - components: - - pos: -25.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16965 - type: CableApcExtension - components: - - pos: -25.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16966 - type: CableApcExtension - components: - - pos: -25.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16967 - type: CableApcExtension - components: - - pos: -25.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16968 - type: CableApcExtension - components: - - pos: -25.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16969 - type: CableApcExtension - components: - - pos: -25.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16970 - type: CableApcExtension - components: - - pos: -26.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16971 - type: CableApcExtension - components: - - pos: -27.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16972 - type: CableApcExtension - components: - - pos: -28.5,-41.5 - parent: 1 - type: Transform -- uid: 16973 - type: CableApcExtension - components: - - pos: -27.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16974 - type: CableApcExtension - components: - - pos: -27.5,-44.5 - parent: 1 - type: Transform -- uid: 16975 - type: CableApcExtension - components: - - pos: -28.5,-44.5 - parent: 1 - type: Transform -- uid: 16976 - type: CableApcExtension - components: - - pos: -29.5,-44.5 - parent: 1 - type: Transform -- uid: 16977 - type: CableApcExtension - components: - - pos: -30.5,-44.5 - parent: 1 - type: Transform -- uid: 16978 - type: CableApcExtension - components: - - pos: -31.5,-44.5 - parent: 1 - type: Transform -- uid: 16979 - type: CableApcExtension - components: - - pos: -31.5,-45.5 - parent: 1 - type: Transform -- uid: 16980 - type: CableApcExtension - components: - - pos: -31.5,-46.5 - parent: 1 - type: Transform -- uid: 16981 - type: CableApcExtension - components: - - pos: -31.5,-47.5 - parent: 1 - type: Transform -- uid: 16982 - type: CableApcExtension - components: - - pos: -23.5,-51.5 - parent: 1 - type: Transform -- uid: 16983 - type: CableApcExtension - components: - - pos: -30.5,-47.5 - parent: 1 - type: Transform -- uid: 16984 - type: CableApcExtension - components: - - pos: -30.5,-48.5 - parent: 1 - type: Transform -- uid: 16985 - type: CableApcExtension - components: - - pos: -30.5,-49.5 - parent: 1 - type: Transform -- uid: 16986 - type: CableApcExtension - components: - - pos: -22.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16987 - type: CableApcExtension - components: - - pos: -19.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16988 - type: CableApcExtension - components: - - pos: -20.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16989 - type: WallReinforced - components: - - pos: -17.5,-50.5 - parent: 1 - type: Transform -- uid: 16990 - type: CableApcExtension - components: - - pos: -22.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16991 - type: CableApcExtension - components: - - pos: -22.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 16992 - type: CableApcExtension - components: - - pos: -22.5,-54.5 - parent: 1 - type: Transform -- uid: 16993 - type: CableApcExtension - components: - - pos: -22.5,-55.5 - parent: 1 - type: Transform -- uid: 16994 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16995 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -20.5,-60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 16996 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-83.5 - parent: 1 - type: Transform -- uid: 16997 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-83.5 - parent: 1 - type: Transform -- uid: 16998 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-83.5 - parent: 1 - type: Transform -- uid: 16999 - type: ShardGlassReinforced - components: - - rot: 1.5707963267948966 rad - pos: -54.638016,-82.45104 - parent: 1 - type: Transform -- uid: 17000 - type: ShardGlass - components: - - pos: -54.711452,-83.287796 - parent: 1 - type: Transform -- uid: 17001 - type: AirlockMaintGlassLocked - components: - - name: forgotten dock - type: MetaData - - pos: -48.5,-76.5 - parent: 1 - type: Transform -- uid: 17002 - type: Firelock - components: - - pos: -41.5,-69.5 - parent: 1 - type: Transform -- uid: 17003 - type: Firelock - components: - - pos: -42.5,-69.5 - parent: 1 - type: Transform -- uid: 17004 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-75.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17005 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-76.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17006 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-77.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17007 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -53.5,-82.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17008 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -55.5,-82.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17009 - type: Chair - components: - - pos: -53.5,-70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17010 - type: Chair - components: - - pos: -54.5,-70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17011 - type: Chair - components: - - pos: -55.5,-70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17012 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-81.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17013 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-82.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17014 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-83.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17015 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-81.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17016 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-82.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17017 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-83.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17018 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: -37.5,-72.5 - parent: 1 - type: Transform -- uid: 17019 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17020 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17021 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17022 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17023 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17024 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17025 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17026 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17027 - type: GasPipeTJunction - components: - - pos: -27.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17028 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,-71.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17029 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17030 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,-70.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17031 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17032 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17033 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17034 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17035 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17036 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17037 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17038 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17039 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17040 - type: GasPipeTJunction - components: - - pos: -40.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17041 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17042 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17043 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17044 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17045 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17046 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17047 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -29.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17048 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17049 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17050 - type: GasPipeTJunction - components: - - pos: -30.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17051 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17052 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17053 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17054 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17055 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17056 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17057 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17058 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17059 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17060 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17061 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17062 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17063 - type: GasPipeStraight - components: - - pos: -42.5,-70.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17064 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-71.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17065 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -42.5,-72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17066 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17067 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-75.5 - parent: 1 - type: Transform -- uid: 17068 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-75.5 - parent: 1 - type: Transform -- uid: 17069 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-75.5 - parent: 1 - type: Transform -- uid: 17070 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-75.5 - parent: 1 - type: Transform -- uid: 17071 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-75.5 - parent: 1 - type: Transform -- uid: 17072 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-75.5 - parent: 1 - type: Transform -- uid: 17073 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-75.5 - parent: 1 - type: Transform -- uid: 17074 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-75.5 - parent: 1 - type: Transform -- uid: 17075 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-75.5 - parent: 1 - type: Transform -- uid: 17076 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-75.5 - parent: 1 - type: Transform -- uid: 17077 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-75.5 - parent: 1 - type: Transform -- uid: 17078 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-75.5 - parent: 1 - type: Transform -- uid: 17079 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-75.5 - parent: 1 - type: Transform -- uid: 17080 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-75.5 - parent: 1 - type: Transform -- uid: 17081 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-75.5 - parent: 1 - type: Transform -- uid: 17082 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-75.5 - parent: 1 - type: Transform -- uid: 17083 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-75.5 - parent: 1 - type: Transform -- uid: 17084 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-75.5 - parent: 1 - type: Transform -- uid: 17085 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-75.5 - parent: 1 - type: Transform -- uid: 17086 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-75.5 - parent: 1 - type: Transform -- uid: 17087 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-75.5 - parent: 1 - type: Transform -- uid: 17088 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-77.5 - parent: 1 - type: Transform -- uid: 17089 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,-76.5 - parent: 1 - type: Transform -- uid: 17090 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-77.5 - parent: 1 - type: Transform -- uid: 17091 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-77.5 - parent: 1 - type: Transform -- uid: 17092 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-77.5 - parent: 1 - type: Transform -- uid: 17093 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-77.5 - parent: 1 - type: Transform -- uid: 17094 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-77.5 - parent: 1 - type: Transform -- uid: 17095 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-77.5 - parent: 1 - type: Transform -- uid: 17096 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-77.5 - parent: 1 - type: Transform -- uid: 17097 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-77.5 - parent: 1 - type: Transform -- uid: 17098 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-77.5 - parent: 1 - type: Transform -- uid: 17099 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-77.5 - parent: 1 - type: Transform -- uid: 17100 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-77.5 - parent: 1 - type: Transform -- uid: 17101 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-77.5 - parent: 1 - type: Transform -- uid: 17102 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-77.5 - parent: 1 - type: Transform -- uid: 17103 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-77.5 - parent: 1 - type: Transform -- uid: 17104 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-77.5 - parent: 1 - type: Transform -- uid: 17105 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-77.5 - parent: 1 - type: Transform -- uid: 17106 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-77.5 - parent: 1 - type: Transform -- uid: 17107 - type: DisposalPipe - components: - - pos: -36.5,-78.5 - parent: 1 - type: Transform -- uid: 17108 - type: DisposalPipe - components: - - pos: -36.5,-79.5 - parent: 1 - type: Transform -- uid: 17109 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -36.5,-80.5 - parent: 1 - type: Transform -- uid: 17110 - type: NitrousOxideCanister - components: - - pos: 54.5,-55.5 - parent: 1 - type: Transform -- uid: 17111 - type: BoxLightbulb - components: - - pos: -39.570137,-77.31351 - parent: 1 - type: Transform -- uid: 17112 - type: DisposalUnit - components: - - name: suspicious disposal unit - type: MetaData - - pos: 0.5,-75.5 - parent: 1 - type: Transform -- uid: 17113 - type: PosterContrabandRebelsUnite - components: - - pos: -42.5,-73.5 - parent: 1 - type: Transform -- uid: 17114 - type: Grille - components: - - pos: -57.5,-75.5 - parent: 1 - type: Transform -- uid: 17115 - type: BannerRevolution - components: - - pos: -47.5,-72.5 - parent: 1 - type: Transform -- uid: 17116 - type: BannerRevolution - components: - - pos: -36.5,-72.5 - parent: 1 - type: Transform -- uid: 17117 - type: BannerRevolution - components: - - pos: -46.5,-84.5 - parent: 1 - type: Transform -- uid: 17118 - type: BannerRevolution - components: - - pos: -37.5,-84.5 - parent: 1 - type: Transform -- uid: 17119 - type: Grille - components: - - pos: -57.5,-76.5 - parent: 1 - type: Transform -- uid: 17120 - type: Grille - components: - - pos: -57.5,-77.5 - parent: 1 - type: Transform -- uid: 17121 - type: AirlockMaintLocked - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-63.5 - parent: 1 - type: Transform -- uid: 17122 - type: Firelock - components: - - pos: -51.5,-63.5 - parent: 1 - type: Transform -- uid: 17123 - type: Firelock - components: - - pos: -56.5,-57.5 - parent: 1 - type: Transform -- uid: 17124 - type: GasPipeBend - components: - - pos: -20.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17125 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17126 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17127 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17128 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17129 - type: WallSolid - components: - - pos: -26.5,-62.5 - parent: 1 - type: Transform -- uid: 17130 - type: Catwalk - components: - - pos: -28.5,-66.5 - parent: 1 - type: Transform -- uid: 17131 - type: Catwalk - components: - - pos: -29.5,-66.5 - parent: 1 - type: Transform -- uid: 17132 - type: Catwalk - components: - - pos: -30.5,-66.5 - parent: 1 - type: Transform -- uid: 17133 - type: Catwalk - components: - - pos: -31.5,-66.5 - parent: 1 - type: Transform -- uid: 17134 - type: Catwalk - components: - - pos: -32.5,-66.5 - parent: 1 - type: Transform -- uid: 17135 - type: Catwalk - components: - - pos: -33.5,-66.5 - parent: 1 - type: Transform -- uid: 17136 - type: Catwalk - components: - - pos: -34.5,-66.5 - parent: 1 - type: Transform -- uid: 17137 - type: Catwalk - components: - - pos: -35.5,-66.5 - parent: 1 - type: Transform -- uid: 17138 - type: CableApcExtension - components: - - pos: -21.5,-52.5 - parent: 1 - type: Transform -- uid: 17139 - type: Firelock - components: - - pos: -23.5,-51.5 - parent: 1 - type: Transform -- uid: 17140 - type: Catwalk - components: - - pos: -24.5,-51.5 - parent: 1 - type: Transform -- uid: 17141 - type: Catwalk - components: - - pos: -25.5,-51.5 - parent: 1 - type: Transform -- uid: 17142 - type: Catwalk - components: - - pos: -26.5,-51.5 - parent: 1 - type: Transform -- uid: 17143 - type: Catwalk - components: - - pos: -27.5,-51.5 - parent: 1 - type: Transform -- uid: 17144 - type: Catwalk - components: - - pos: -28.5,-51.5 - parent: 1 - type: Transform -- uid: 17145 - type: Catwalk - components: - - pos: -29.5,-51.5 - parent: 1 - type: Transform -- uid: 17146 - type: Catwalk - components: - - pos: -25.5,-41.5 - parent: 1 - type: Transform -- uid: 17147 - type: Catwalk - components: - - pos: -25.5,-42.5 - parent: 1 - type: Transform -- uid: 17148 - type: Catwalk - components: - - pos: -25.5,-43.5 - parent: 1 - type: Transform -- uid: 17149 - type: Catwalk - components: - - pos: -25.5,-44.5 - parent: 1 - type: Transform -- uid: 17150 - type: Catwalk - components: - - pos: -25.5,-45.5 - parent: 1 - type: Transform -- uid: 17151 - type: Catwalk - components: - - pos: -25.5,-46.5 - parent: 1 - type: Transform -- uid: 17152 - type: Catwalk - components: - - pos: -26.5,-46.5 - parent: 1 - type: Transform -- uid: 17153 - type: Catwalk - components: - - pos: -25.5,-47.5 - parent: 1 - type: Transform -- uid: 17154 - type: Catwalk - components: - - pos: -25.5,-47.5 - parent: 1 - type: Transform -- uid: 17155 - type: Catwalk - components: - - pos: -26.5,-47.5 - parent: 1 - type: Transform -- uid: 17156 - type: Catwalk - components: - - pos: -26.5,-39.5 - parent: 1 - type: Transform -- uid: 17157 - type: Catwalk - components: - - pos: -26.5,-40.5 - parent: 1 - type: Transform -- uid: 17158 - type: Catwalk - components: - - pos: -25.5,-40.5 - parent: 1 - type: Transform -- uid: 17159 - type: Catwalk - components: - - pos: -25.5,-39.5 - parent: 1 - type: Transform -- uid: 17160 - type: Catwalk - components: - - pos: -56.5,-68.5 - parent: 1 - type: Transform -- uid: 17161 - type: Catwalk - components: - - pos: -55.5,-68.5 - parent: 1 - type: Transform -- uid: 17162 - type: Catwalk - components: - - pos: -54.5,-68.5 - parent: 1 - type: Transform -- uid: 17163 - type: Catwalk - components: - - pos: -53.5,-68.5 - parent: 1 - type: Transform -- uid: 17164 - type: Catwalk - components: - - pos: -52.5,-68.5 - parent: 1 - type: Transform -- uid: 17165 - type: Catwalk - components: - - pos: -52.5,-67.5 - parent: 1 - type: Transform -- uid: 17166 - type: Catwalk - components: - - pos: -53.5,-67.5 - parent: 1 - type: Transform -- uid: 17167 - type: CableApcExtension - components: - - pos: -55.5,-60.5 - parent: 1 - type: Transform -- uid: 17168 - type: Chair - components: - - pos: -54.5,-58.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17169 - type: PottedPlantRandomPlastic - components: - - pos: -55.5,-58.5 - parent: 1 - type: Transform -- uid: 17170 - type: Firelock - components: - - pos: -42.5,-64.5 - parent: 1 - type: Transform -- uid: 17171 - type: Firelock - components: - - pos: -24.5,-64.5 - parent: 1 - type: Transform -- uid: 17172 - type: Firelock - components: - - pos: -30.5,-49.5 - parent: 1 - type: Transform -- uid: 17173 - type: AirlockEngineeringLocked - components: - - name: substation - type: MetaData - - pos: -29.5,-55.5 - parent: 1 - type: Transform -- uid: 17174 - type: ClothingEyesGlassesBeer - components: - - pos: -41.966873,-78.417305 - parent: 1 - type: Transform -- uid: 17175 - type: DrinkGrogGlass - components: - - pos: -42.795,-78.417305 - parent: 1 - type: Transform -- uid: 17176 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-26.5 - parent: 1 - type: Transform -- uid: 17177 - type: StorageCanister - components: - - pos: 53.5,-37.5 - parent: 1 - type: Transform -- uid: 17178 - type: DrinkGrogGlass - components: - - pos: -40.300255,-77.37566 - parent: 1 - type: Transform -- uid: 17179 - type: DrinkGrogGlass - components: - - pos: -41.117695,-78.40168 - parent: 1 - type: Transform -- uid: 17180 - type: BarSign - components: - - desc: A very controversial bar known for its wide variety of constantly-changing drinks. - name: The Coderbus - type: MetaData - - pos: -44.5,-69.5 - parent: 1 - type: Transform - - current: TheCoderbus - type: BarSign -- uid: 17181 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 21.5,-45.5 - parent: 1 - type: Transform -- uid: 17182 - type: WallSolid - components: - - pos: -45.5,-68.5 - parent: 1 - type: Transform -- uid: 17183 - type: Wrench - components: - - pos: -43.931065,-77.41935 - parent: 1 - type: Transform - - nextAttack: 1860.1092288 - type: MeleeWeapon -- uid: 17184 - type: Catwalk - components: - - pos: -47.5,-67.5 - parent: 1 - type: Transform -- uid: 17185 - type: Catwalk - components: - - pos: -47.5,-66.5 - parent: 1 - type: Transform -- uid: 17186 - type: PosterContrabandSyndicatePistol - components: - - pos: -46.5,-71.5 - parent: 1 - type: Transform -- uid: 17187 - type: PosterContrabandSyndicateRecruitment - components: - - pos: -44.5,-74.5 - parent: 1 - type: Transform -- uid: 17188 - type: WallSolid - components: - - pos: -27.5,-59.5 - parent: 1 - type: Transform -- uid: 17189 - type: ClosetFireFilled - components: - - pos: -52.5,-72.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17190 - type: ClosetFireFilled - components: - - pos: -55.5,-66.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17191 - type: ClosetMaintenanceFilledRandom - components: - - pos: -54.5,-66.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17192 - type: ClosetMaintenanceFilledRandom - components: - - pos: -37.5,-67.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17193 - type: ClosetMaintenanceFilledRandom - components: - - pos: -29.5,-57.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17194 - type: ClosetMaintenanceFilledRandom - components: - - pos: -29.5,-39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17195 - type: Catwalk - components: - - pos: -47.5,-68.5 - parent: 1 - type: Transform -- uid: 17196 - type: Catwalk - components: - - pos: -46.5,-66.5 - parent: 1 - type: Transform -- uid: 17197 - type: Catwalk - components: - - pos: -46.5,-67.5 - parent: 1 - type: Transform -- uid: 17198 - type: Catwalk - components: - - pos: -46.5,-68.5 - parent: 1 - type: Transform -- uid: 17199 - type: InflatableWall - components: - - pos: -51.5,-66.5 - parent: 1 - type: Transform -- uid: 17200 - type: InflatableWall - components: - - pos: -51.5,-67.5 - parent: 1 - type: Transform -- uid: 17201 - type: InflatableWall - components: - - pos: -49.5,-72.5 - parent: 1 - type: Transform -- uid: 17202 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-62.5 - parent: 1 - type: Transform -- uid: 17203 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-61.5 - parent: 1 - type: Transform -- uid: 17204 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-62.5 - parent: 1 - type: Transform -- uid: 17205 - type: Crowbar - components: - - pos: -56.61051,-70.40599 - parent: 1 - type: Transform -- uid: 17206 - type: StorageCanister - components: - - pos: -24.5,-55.5 - parent: 1 - type: Transform -- uid: 17207 - type: StorageCanister - components: - - pos: -26.5,-55.5 - parent: 1 - type: Transform -- uid: 17208 - type: OxygenCanister - components: - - pos: -25.5,-55.5 - parent: 1 - type: Transform -- uid: 17209 - type: Table - components: - - pos: -28.5,-52.5 - parent: 1 - type: Transform -- uid: 17210 - type: Table - components: - - pos: -27.5,-52.5 - parent: 1 - type: Transform -- uid: 17211 - type: Table - components: - - pos: -26.5,-52.5 - parent: 1 - type: Transform -- uid: 17212 - type: Table - components: - - pos: -25.5,-52.5 - parent: 1 - type: Transform -- uid: 17213 - type: Table - components: - - pos: -24.5,-52.5 - parent: 1 - type: Transform -- uid: 17214 - type: Catwalk - components: - - pos: 46.5,-11.5 - parent: 1 - type: Transform -- uid: 17215 - type: Catwalk - components: - - pos: 45.5,-11.5 - parent: 1 - type: Transform -- uid: 17216 - type: Catwalk - components: - - pos: 44.5,-11.5 - parent: 1 - type: Transform -- uid: 17217 - type: Catwalk - components: - - pos: 43.5,-11.5 - parent: 1 - type: Transform -- uid: 17218 - type: Catwalk - components: - - pos: 42.5,-11.5 - parent: 1 - type: Transform -- uid: 17219 - type: Catwalk - components: - - pos: 40.5,-7.5 - parent: 1 - type: Transform -- uid: 17220 - type: Catwalk - components: - - pos: 40.5,-8.5 - parent: 1 - type: Transform -- uid: 17221 - type: Catwalk - components: - - pos: 40.5,-9.5 - parent: 1 - type: Transform -- uid: 17222 - type: Catwalk - components: - - pos: 40.5,-10.5 - parent: 1 - type: Transform -- uid: 17223 - type: Catwalk - components: - - pos: 40.5,-11.5 - parent: 1 - type: Transform -- uid: 17224 - type: Catwalk - components: - - pos: 30.5,-8.5 - parent: 1 - type: Transform -- uid: 17225 - type: Catwalk - components: - - pos: 31.5,-8.5 - parent: 1 - type: Transform -- uid: 17226 - type: CableApcExtension - components: - - pos: 30.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17227 - type: Catwalk - components: - - pos: 33.5,-8.5 - parent: 1 - type: Transform -- uid: 17228 - type: Catwalk - components: - - pos: 34.5,-8.5 - parent: 1 - type: Transform -- uid: 17229 - type: Catwalk - components: - - pos: 35.5,-8.5 - parent: 1 - type: Transform -- uid: 17230 - type: Catwalk - components: - - pos: 30.5,-13.5 - parent: 1 - type: Transform -- uid: 17231 - type: Catwalk - components: - - pos: 37.5,-8.5 - parent: 1 - type: Transform -- uid: 17232 - type: ClothingShoesBootsMag - components: - - pos: 29.658726,-12.639229 - parent: 1 - type: Transform -- uid: 17233 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: 29.42435,-10.404854 - parent: 1 - type: Transform -- uid: 17234 - type: DoubleEmergencyOxygenTankFilled - components: - - pos: 29.4556,-12.420479 - parent: 1 - type: Transform -- uid: 17235 - type: CableApcExtension - components: - - pos: 29.5,-14.5 - parent: 1 - type: Transform -- uid: 17236 - type: CableApcExtension - components: - - pos: 30.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17237 - type: CableApcExtension - components: - - pos: 30.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17238 - type: MaintenanceFluffSpawner - components: - - pos: -50.5,-62.5 - parent: 1 - type: Transform -- uid: 17239 - type: MaintenanceFluffSpawner - components: - - pos: -36.5,-69.5 - parent: 1 - type: Transform -- uid: 17240 - type: MaintenanceWeaponSpawner - components: - - pos: -49.5,-74.5 - parent: 1 - type: Transform -- uid: 17241 - type: MaintenanceToolSpawner - components: - - pos: -24.5,-52.5 - parent: 1 - type: Transform -- uid: 17242 - type: CableApcExtension - components: - - pos: -1.5,-79.5 - parent: 1 - type: Transform -- uid: 17243 - type: FoodTinPeachesMaint - components: - - pos: -27.385347,-52.20374 - parent: 1 - type: Transform -- uid: 17244 - type: WallReinforced - components: - - pos: -19.5,-50.5 - parent: 1 - type: Transform -- uid: 17245 - type: ToolboxEmergencyFilled - components: - - pos: -28.343418,-52.353195 - parent: 1 - type: Transform -- uid: 17246 - type: ToolboxEmergencyFilled - components: - - pos: -38.44295,-67.482124 - parent: 1 - type: Transform -- uid: 17247 - type: ToolboxEmergencyFilled - components: - - pos: -35.451088,-50.209225 - parent: 1 - type: Transform -- uid: 17248 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17249 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -35.5,-51.5 - parent: 1 - type: Transform -- uid: 17250 - type: ClothingMaskGas - components: - - pos: -35.537254,-49.709976 - parent: 1 - type: Transform -- uid: 17251 - type: ClosetEmergencyFilledRandom - components: - - pos: 31.5,-92.5 - parent: 1 - type: Transform -- uid: 17252 - type: WallSolid - components: - - pos: -37.5,-47.5 - parent: 1 - type: Transform -- uid: 17253 - type: PosterContrabandAtmosiaDeclarationIndependence - components: - - pos: -36.5,-52.5 - parent: 1 - type: Transform -- uid: 17254 - type: WallSolid - components: - - pos: -17.5,31.5 - parent: 1 - type: Transform -- uid: 17255 - type: Catwalk - components: - - pos: -46.5,-42.5 - parent: 1 - type: Transform -- uid: 17256 - type: SpawnMobMedibot - components: - - pos: -8.5,-46.5 - parent: 1 - type: Transform -- uid: 17257 - type: ClothingHeadHatTrucker - components: - - pos: -35.471638,-48.0912 - parent: 1 - type: Transform -- uid: 17258 - type: ClothingHeadHatWelding - components: - - pos: -35.502888,-47.3412 - parent: 1 - type: Transform -- uid: 17259 - type: WelderIndustrial - components: - - pos: -35.502888,-46.513077 - parent: 1 - type: Transform -- uid: 17260 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-68.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17261 - type: SignDirectionalSci - components: - - pos: -19.479143,47.623272 - parent: 1 - type: Transform -- uid: 17262 - type: PoweredSmallLight - components: - - pos: -37.5,-63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17263 - type: PoweredSmallLight - components: - - pos: -44.5,-63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17264 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17265 - type: Catwalk - components: - - pos: -20.5,-52.5 - parent: 1 - type: Transform -- uid: 17266 - type: PoweredSmallLight - components: - - pos: -29.5,-43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17267 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-53.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17268 - type: PoweredSmallLight - components: - - pos: -22.5,-41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17269 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17270 - type: WeldingFuelTankFull - components: - - pos: -43.5,-63.5 - parent: 1 - type: Transform -- uid: 17271 - type: WaterTankFull - components: - - pos: -29.5,-65.5 - parent: 1 - type: Transform -- uid: 17272 - type: RandomSpawner - components: - - pos: -25.5,-67.5 - parent: 1 - type: Transform -- uid: 17273 - type: RandomSpawner - components: - - pos: -27.5,-58.5 - parent: 1 - type: Transform -- uid: 17274 - type: RandomSpawner - components: - - pos: -24.5,-53.5 - parent: 1 - type: Transform -- uid: 17275 - type: RandomSpawner - components: - - pos: -26.5,-46.5 - parent: 1 - type: Transform -- uid: 17276 - type: RandomSpawner - components: - - pos: -20.5,-29.5 - parent: 1 - type: Transform -- uid: 17277 - type: RandomSpawner - components: - - pos: -32.5,-23.5 - parent: 1 - type: Transform -- uid: 17278 - type: RandomSpawner - components: - - pos: -23.5,-13.5 - parent: 1 - type: Transform -- uid: 17279 - type: RandomSpawner - components: - - pos: -53.5,-18.5 - parent: 1 - type: Transform -- uid: 17280 - type: RandomSpawner - components: - - pos: -32.5,-34.5 - parent: 1 - type: Transform -- uid: 17281 - type: RandomSpawner - components: - - pos: -33.5,-46.5 - parent: 1 - type: Transform -- uid: 17282 - type: RandomSpawner - components: - - pos: -37.5,-76.5 - parent: 1 - type: Transform -- uid: 17283 - type: RandomSpawner - components: - - pos: -46.5,-78.5 - parent: 1 - type: Transform -- uid: 17284 - type: RandomSpawner - components: - - pos: -45.5,-73.5 - parent: 1 - type: Transform -- uid: 17285 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-56.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17286 - type: RandomSpawner - components: - - pos: -52.5,-74.5 - parent: 1 - type: Transform -- uid: 17287 - type: CrateEngineeringElectricalSupplies - components: - - pos: -36.5,-63.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17288 - type: CrateHydroponicsSeedsExotic - components: - - pos: -47.5,-70.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17289 - type: CrateFoodCooking - components: - - pos: -47.5,-80.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17290 - type: NitrogenCanister - components: - - pos: -51.5,-70.5 - parent: 1 - type: Transform -- uid: 17291 - type: Rack - components: - - pos: -56.5,-70.5 - parent: 1 - type: Transform -- uid: 17292 - type: Rack - components: - - pos: -38.5,-67.5 - parent: 1 - type: Transform -- uid: 17293 - type: WallSolid - components: - - pos: -26.5,-63.5 - parent: 1 - type: Transform -- uid: 17294 - type: Rack - components: - - pos: -32.5,-62.5 - parent: 1 - type: Transform -- uid: 17295 - type: Rack - components: - - pos: -31.5,-62.5 - parent: 1 - type: Transform -- uid: 17296 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-67.5 - parent: 1 - type: Transform -- uid: 17297 - type: PlushieRatvar - components: - - pos: 22.555937,-28.535349 - parent: 1 - type: Transform -- uid: 17298 - type: PlushieSpaceLizard - components: - - pos: 22.5411,-29.161282 - parent: 1 - type: Transform -- uid: 17299 - type: CarpetPink - components: - - pos: 22.5,-28.5 - parent: 1 - type: Transform -- uid: 17300 - type: CarpetPink - components: - - pos: 21.5,-28.5 - parent: 1 - type: Transform -- uid: 17301 - type: CarpetPink - components: - - pos: 22.5,-29.5 - parent: 1 - type: Transform -- uid: 17302 - type: TableWood - components: - - pos: 23.5,-28.5 - parent: 1 - type: Transform -- uid: 17303 - type: CarpetPink - components: - - pos: 23.5,-29.5 - parent: 1 - type: Transform -- uid: 17304 - type: GasVentPump - components: - - pos: 21.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17305 - type: CarpetPink - components: - - pos: 24.5,-29.5 - parent: 1 - type: Transform -- uid: 17306 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 21.5,-28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17307 - type: CarpetSBlue - components: - - pos: 30.5,-28.5 - parent: 1 - type: Transform -- uid: 17308 - type: CarpetSBlue - components: - - pos: 30.5,-29.5 - parent: 1 - type: Transform -- uid: 17309 - type: CarpetSBlue - components: - - pos: 31.5,-27.5 - parent: 1 - type: Transform -- uid: 17310 - type: CableMV - components: - - pos: 21.5,-8.5 - parent: 1 - type: Transform -- uid: 17311 - type: CarpetSBlue - components: - - pos: 31.5,-28.5 - parent: 1 - type: Transform -- uid: 17312 - type: CarpetSBlue - components: - - pos: 31.5,-29.5 - parent: 1 - type: Transform -- uid: 17313 - type: CarpetSBlue - components: - - pos: 32.5,-27.5 - parent: 1 - type: Transform -- uid: 17314 - type: PosterLegitCleanliness - components: - - pos: -1.5,-58.5 - parent: 1 - type: Transform -- uid: 17315 - type: CarpetSBlue - components: - - pos: 32.5,-28.5 - parent: 1 - type: Transform -- uid: 17316 - type: CarpetSBlue - components: - - pos: 32.5,-29.5 - parent: 1 - type: Transform -- uid: 17317 - type: CarpetSBlue - components: - - pos: 30.5,-27.5 - parent: 1 - type: Transform -- uid: 17318 - type: APCHighCapacity - components: - - pos: 29.5,-26.5 - parent: 1 - type: Transform -- uid: 17319 - type: GasThermoMachineFreezer - components: - - pos: 2.5,14.5 - parent: 1 - type: Transform -- uid: 17320 - type: PottedPlant8 - components: - - pos: -22.5,8.5 - parent: 1 - type: Transform -- uid: 17321 - type: PottedPlant5 - components: - - pos: -26.5,8.5 - parent: 1 - type: Transform -- uid: 17322 - type: ClosetMaintenanceFilledRandom - components: - - pos: -28.5,-67.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17323 - type: CarpetPink - components: - - pos: 23.5,-28.5 - parent: 1 - type: Transform -- uid: 17324 - type: PosterLegit12Gauge - components: - - pos: 31.5,23.5 - parent: 1 - type: Transform -- uid: 17325 - type: TableWood - components: - - pos: 30.5,-28.5 - parent: 1 - type: Transform -- uid: 17326 - type: TableWood - components: - - pos: 30.5,-29.5 - parent: 1 - type: Transform -- uid: 17327 - type: CableMV - components: - - pos: 29.5,-28.5 - parent: 1 - type: Transform -- uid: 17328 - type: ChairPilotSeat - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17329 - type: CaptainIDCard - components: - - pos: 30.440884,-27.198164 - parent: 1 - type: Transform -- uid: 17330 - type: ClothingBackpackDuffelCaptain - components: - - pos: 30.440884,-27.760664 - parent: 1 - type: Transform -- uid: 17331 - type: LockerCaptainFilled - components: - - pos: 29.5,-27.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17332 - type: AirlockExternalGlassLocked - components: - - pos: -46.5,-41.5 - parent: 1 - type: Transform -- uid: 17333 - type: DogBed - components: - - name: fox bed - type: MetaData - - pos: 32.5,-28.5 - parent: 1 - type: Transform -- uid: 17334 - type: PoweredSmallLight - components: - - pos: 24.5,-32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17335 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 19.5,-33.5 - parent: 1 - type: Transform -- uid: 17336 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 34.5,-36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17337 - type: WallReinforced - components: - - pos: 25.5,-30.5 - parent: 1 - type: Transform -- uid: 17338 - type: CableApcExtension - components: - - pos: 28.5,-25.5 - parent: 1 - type: Transform -- uid: 17339 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17340 - type: CarpetPink - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-28.5 - parent: 1 - type: Transform -- uid: 17341 - type: WallReinforced - components: - - pos: 27.5,-30.5 - parent: 1 - type: Transform -- uid: 17342 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-31.5 - parent: 1 - type: Transform -- uid: 17343 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-31.5 - parent: 1 - type: Transform -- uid: 17344 - type: GasPipeStraight - components: - - pos: 23.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17345 - type: WallReinforced - components: - - pos: 27.5,-31.5 - parent: 1 - type: Transform -- uid: 17346 - type: WallReinforced - components: - - pos: 28.5,-31.5 - parent: 1 - type: Transform -- uid: 17347 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-31.5 - parent: 1 - type: Transform -- uid: 17348 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-31.5 - parent: 1 - type: Transform -- uid: 17349 - type: CarpetSBlue - components: - - pos: 31.5,-30.5 - parent: 1 - type: Transform -- uid: 17350 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17351 - type: CarpetSBlue - components: - - pos: 30.5,-30.5 - parent: 1 - type: Transform -- uid: 17352 - type: BedsheetCaptain - components: - - pos: 32.5,-29.5 - parent: 1 - type: Transform -- uid: 17353 - type: WallReinforced - components: - - pos: -21.5,-50.5 - parent: 1 - type: Transform -- uid: 17354 - type: AirlockMaintLocked - components: - - pos: -16.5,-52.5 - parent: 1 - type: Transform -- uid: 17355 - type: Window - components: - - pos: -38.5,-63.5 - parent: 1 - type: Transform -- uid: 17356 - type: Window - components: - - pos: -38.5,-65.5 - parent: 1 - type: Transform -- uid: 17357 - type: ClothingHeadHatCone - components: - - pos: -28.525217,-54.052208 - parent: 1 - type: Transform -- uid: 17358 - type: SignElectricalMed - components: - - pos: -29.5,-54.5 - parent: 1 - type: Transform -- uid: 17359 - type: SignFlammableMed - components: - - pos: -42.5,-63.5 - parent: 1 - type: Transform -- uid: 17360 - type: Basketball - components: - - pos: -49.590145,-63.44321 - parent: 1 - type: Transform -- uid: 17361 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 17362 - type: Girder - components: - - pos: -22.5,-64.5 - parent: 1 - type: Transform -- uid: 17363 - type: Chair - components: - - pos: 70.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17364 - type: WallSolid - components: - - pos: -22.5,-63.5 - parent: 1 - type: Transform -- uid: 17365 - type: Catwalk - components: - - pos: -37.5,-20.5 - parent: 1 - type: Transform -- uid: 17366 - type: Catwalk - components: - - pos: -37.5,-21.5 - parent: 1 - type: Transform -- uid: 17367 - type: Catwalk - components: - - pos: -37.5,-22.5 - parent: 1 - type: Transform -- uid: 17368 - type: Catwalk - components: - - pos: -37.5,-23.5 - parent: 1 - type: Transform -- uid: 17369 - type: Catwalk - components: - - pos: -37.5,-24.5 - parent: 1 - type: Transform -- uid: 17370 - type: Catwalk - components: - - pos: -43.5,-26.5 - parent: 1 - type: Transform -- uid: 17371 - type: Catwalk - components: - - pos: -42.5,-26.5 - parent: 1 - type: Transform -- uid: 17372 - type: Catwalk - components: - - pos: -41.5,-26.5 - parent: 1 - type: Transform -- uid: 17373 - type: Catwalk - components: - - pos: -40.5,-26.5 - parent: 1 - type: Transform -- uid: 17374 - type: Catwalk - components: - - pos: -39.5,-26.5 - parent: 1 - type: Transform -- uid: 17375 - type: Catwalk - components: - - pos: -38.5,-26.5 - parent: 1 - type: Transform -- uid: 17376 - type: WallReinforced - components: - - pos: -53.5,-50.5 - parent: 1 - type: Transform -- uid: 17377 - type: WallReinforced - components: - - pos: -53.5,-47.5 - parent: 1 - type: Transform -- uid: 17378 - type: WallReinforced - components: - - pos: -53.5,-48.5 - parent: 1 - type: Transform -- uid: 17379 - type: WallReinforced - components: - - pos: -53.5,-49.5 - parent: 1 - type: Transform -- uid: 17380 - type: WallReinforced - components: - - pos: -59.5,-53.5 - parent: 1 - type: Transform -- uid: 17381 - type: WallReinforced - components: - - pos: -60.5,-53.5 - parent: 1 - type: Transform -- uid: 17382 - type: WallReinforced - components: - - pos: -59.5,-55.5 - parent: 1 - type: Transform -- uid: 17383 - type: WallReinforced - components: - - pos: -60.5,-55.5 - parent: 1 - type: Transform -- uid: 17384 - type: ComputerPowerMonitoring - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-23.5 - parent: 1 - type: Transform -- uid: 17385 - type: Catwalk - components: - - pos: -48.5,-27.5 - parent: 1 - type: Transform -- uid: 17386 - type: Catwalk - components: - - pos: -48.5,-28.5 - parent: 1 - type: Transform -- uid: 17387 - type: Catwalk - components: - - pos: -48.5,-29.5 - parent: 1 - type: Transform -- uid: 17388 - type: Catwalk - components: - - pos: -48.5,-30.5 - parent: 1 - type: Transform -- uid: 17389 - type: Catwalk - components: - - pos: -48.5,-31.5 - parent: 1 - type: Transform -- uid: 17390 - type: Catwalk - components: - - pos: -48.5,-32.5 - parent: 1 - type: Transform -- uid: 17391 - type: Grille - components: - - pos: -58.5,-52.5 - parent: 1 - type: Transform -- uid: 17392 - type: Grille - components: - - pos: -58.5,-51.5 - parent: 1 - type: Transform -- uid: 17393 - type: Grille - components: - - pos: -58.5,-48.5 - parent: 1 - type: Transform -- uid: 17394 - type: Grille - components: - - pos: -58.5,-47.5 - parent: 1 - type: Transform -- uid: 17395 - type: Grille - components: - - pos: -58.5,-43.5 - parent: 1 - type: Transform -- uid: 17396 - type: Grille - components: - - pos: -58.5,-44.5 - parent: 1 - type: Transform -- uid: 17397 - type: CableApcExtension - components: - - pos: -34.5,-55.5 - parent: 1 - type: Transform -- uid: 17398 - type: CableApcExtension - components: - - pos: -33.5,-26.5 - parent: 1 - type: Transform -- uid: 17399 - type: CableApcExtension - components: - - pos: -34.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17400 - type: CableApcExtension - components: - - pos: -35.5,-26.5 - parent: 1 - type: Transform -- uid: 17401 - type: CableApcExtension - components: - - pos: -35.5,-25.5 - parent: 1 - type: Transform -- uid: 17402 - type: CableApcExtension - components: - - pos: -35.5,-24.5 - parent: 1 - type: Transform -- uid: 17403 - type: CableApcExtension - components: - - pos: -36.5,-24.5 - parent: 1 - type: Transform -- uid: 17404 - type: CableApcExtension - components: - - pos: -37.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17405 - type: CableApcExtension - components: - - pos: -37.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17406 - type: CableApcExtension - components: - - pos: -37.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17407 - type: CableApcExtension - components: - - pos: -37.5,-21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17408 - type: CableApcExtension - components: - - pos: -37.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17409 - type: CableApcExtension - components: - - pos: -38.5,-22.5 - parent: 1 - type: Transform -- uid: 17410 - type: CableApcExtension - components: - - pos: -39.5,-22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17411 - type: CableApcExtension - components: - - pos: -39.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17412 - type: CableApcExtension - components: - - pos: -39.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17413 - type: CableApcExtension - components: - - pos: -40.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17414 - type: CableApcExtension - components: - - pos: -41.5,-24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17415 - type: CableApcExtension - components: - - pos: -41.5,-25.5 - parent: 1 - type: Transform -- uid: 17416 - type: CableApcExtension - components: - - pos: -41.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17417 - type: CableApcExtension - components: - - pos: -43.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17418 - type: CableApcExtension - components: - - pos: -42.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17419 - type: CableApcExtension - components: - - pos: -40.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17420 - type: CableApcExtension - components: - - pos: -39.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17421 - type: CableApcExtension - components: - - pos: -38.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17422 - type: CableApcExtension - components: - - pos: -37.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17423 - type: CableApcExtension - components: - - pos: -37.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17424 - type: CableApcExtension - components: - - pos: -37.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17425 - type: CableApcExtension - components: - - pos: -36.5,-28.5 - parent: 1 - type: Transform -- uid: 17426 - type: CableApcExtension - components: - - pos: -35.5,-28.5 - parent: 1 - type: Transform -- uid: 17427 - type: CableApcExtension - components: - - pos: -35.5,-29.5 - parent: 1 - type: Transform -- uid: 17428 - type: CableApcExtension - components: - - pos: -35.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17429 - type: CableApcExtension - components: - - pos: -44.5,-26.5 - parent: 1 - type: Transform -- uid: 17430 - type: CableApcExtension - components: - - pos: -44.5,-27.5 - parent: 1 - type: Transform -- uid: 17431 - type: CableApcExtension - components: - - pos: -45.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17432 - type: CableApcExtension - components: - - pos: -46.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17433 - type: CableApcExtension - components: - - pos: -47.5,-27.5 - parent: 1 - type: Transform -- uid: 17434 - type: CableApcExtension - components: - - pos: -48.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17435 - type: CableApcExtension - components: - - pos: -48.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17436 - type: CableApcExtension - components: - - pos: -48.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17437 - type: CableApcExtension - components: - - pos: -48.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17438 - type: CableApcExtension - components: - - pos: -48.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17439 - type: CableApcExtension - components: - - pos: -48.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17440 - type: CableApcExtension - components: - - pos: -49.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17441 - type: CableApcExtension - components: - - pos: -50.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17442 - type: CableApcExtension - components: - - pos: -51.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17443 - type: CableApcExtension - components: - - pos: -52.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17444 - type: CableApcExtension - components: - - pos: -53.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17445 - type: CableApcExtension - components: - - pos: -54.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17446 - type: CableApcExtension - components: - - pos: -55.5,-32.5 - parent: 1 - type: Transform -- uid: 17447 - type: CableApcExtension - components: - - pos: -55.5,-33.5 - parent: 1 - type: Transform -- uid: 17448 - type: CableApcExtension - components: - - pos: -55.5,-34.5 - parent: 1 - type: Transform -- uid: 17449 - type: CableApcExtension - components: - - pos: -55.5,-35.5 - parent: 1 - type: Transform -- uid: 17450 - type: CableApcExtension - components: - - pos: -55.5,-36.5 - parent: 1 - type: Transform -- uid: 17451 - type: CableApcExtension - components: - - pos: -55.5,-37.5 - parent: 1 - type: Transform -- uid: 17452 - type: CableApcExtension - components: - - pos: -55.5,-38.5 - parent: 1 - type: Transform -- uid: 17453 - type: CableApcExtension - components: - - pos: -55.5,-39.5 - parent: 1 - type: Transform -- uid: 17454 - type: CableApcExtension - components: - - pos: -56.5,-39.5 - parent: 1 - type: Transform -- uid: 17455 - type: CableApcExtension - components: - - pos: -56.5,-40.5 - parent: 1 - type: Transform -- uid: 17456 - type: CableApcExtension - components: - - pos: -56.5,-41.5 - parent: 1 - type: Transform -- uid: 17457 - type: CableApcExtension - components: - - pos: -56.5,-42.5 - parent: 1 - type: Transform -- uid: 17458 - type: CableApcExtension - components: - - pos: -56.5,-43.5 - parent: 1 - type: Transform -- uid: 17459 - type: CableApcExtension - components: - - pos: -56.5,-44.5 - parent: 1 - type: Transform -- uid: 17460 - type: CableApcExtension - components: - - pos: -56.5,-45.5 - parent: 1 - type: Transform -- uid: 17461 - type: CableApcExtension - components: - - pos: -56.5,-46.5 - parent: 1 - type: Transform -- uid: 17462 - type: CableApcExtension - components: - - pos: -56.5,-47.5 - parent: 1 - type: Transform -- uid: 17463 - type: CableApcExtension - components: - - pos: -56.5,-48.5 - parent: 1 - type: Transform -- uid: 17464 - type: CableApcExtension - components: - - pos: -56.5,-49.5 - parent: 1 - type: Transform -- uid: 17465 - type: CableApcExtension - components: - - pos: -56.5,-50.5 - parent: 1 - type: Transform -- uid: 17466 - type: CableApcExtension - components: - - pos: -56.5,-51.5 - parent: 1 - type: Transform -- uid: 17467 - type: CableApcExtension - components: - - pos: -56.5,-52.5 - parent: 1 - type: Transform -- uid: 17468 - type: CableApcExtension - components: - - pos: -56.5,-53.5 - parent: 1 - type: Transform -- uid: 17469 - type: CableApcExtension - components: - - pos: -56.5,-54.5 - parent: 1 - type: Transform -- uid: 17470 - type: CableApcExtension - components: - - pos: -56.5,-55.5 - parent: 1 - type: Transform -- uid: 17471 - type: CableApcExtension - components: - - pos: -56.5,-56.5 - parent: 1 - type: Transform -- uid: 17472 - type: CableApcExtension - components: - - pos: -56.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17473 - type: CableApcExtension - components: - - pos: -56.5,-58.5 - parent: 1 - type: Transform -- uid: 17474 - type: CableApcExtension - components: - - pos: -57.5,-58.5 - parent: 1 - type: Transform -- uid: 17475 - type: CableApcExtension - components: - - pos: -57.5,-59.5 - parent: 1 - type: Transform -- uid: 17476 - type: CableApcExtension - components: - - pos: -50.5,-64.5 - parent: 1 - type: Transform -- uid: 17477 - type: CableApcExtension - components: - - pos: -50.5,-63.5 - parent: 1 - type: Transform -- uid: 17478 - type: CableApcExtension - components: - - pos: -51.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17479 - type: CableApcExtension - components: - - pos: -55.5,-58.5 - parent: 1 - type: Transform -- uid: 17480 - type: CableApcExtension - components: - - pos: -55.5,-59.5 - parent: 1 - type: Transform -- uid: 17481 - type: CableApcExtension - components: - - pos: -55.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17482 - type: CableApcExtension - components: - - pos: -36.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17483 - type: CableApcExtension - components: - - pos: -37.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17484 - type: CableApcExtension - components: - - pos: -38.5,-30.5 - parent: 1 - type: Transform -- uid: 17485 - type: CableApcExtension - components: - - pos: -39.5,-30.5 - parent: 1 - type: Transform -- uid: 17486 - type: CableApcExtension - components: - - pos: -40.5,-30.5 - parent: 1 - type: Transform -- uid: 17487 - type: CableApcExtension - components: - - pos: -41.5,-30.5 - parent: 1 - type: Transform -- uid: 17488 - type: CableApcExtension - components: - - pos: -42.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17489 - type: WaterVaporCanister - components: - - pos: -34.5,-28.5 - parent: 1 - type: Transform -- uid: 17490 - type: OxygenCanister - components: - - pos: -34.5,-30.5 - parent: 1 - type: Transform -- uid: 17491 - type: MachineFrameDestroyed - components: - - pos: -36.5,-29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17492 - type: ClosetMaintenance - components: - - pos: -44.5,-31.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17493 - type: ClosetMaintenanceFilledRandom - components: - - pos: -56.5,-32.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17494 - type: ClosetEmergencyFilledRandom - components: - - pos: -57.5,-32.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17495 - type: Rack - components: - - pos: -46.5,-30.5 - parent: 1 - type: Transform -- uid: 17496 - type: Rack - components: - - pos: -44.5,-25.5 - parent: 1 - type: Transform -- uid: 17497 - type: Rack - components: - - pos: -42.5,-24.5 - parent: 1 - type: Transform -- uid: 17498 - type: Barricade - components: - - pos: -36.5,-20.5 - parent: 1 - type: Transform -- uid: 17499 - type: Table - components: - - pos: -38.5,-27.5 - parent: 1 - type: Transform -- uid: 17500 - type: Table - components: - - pos: -43.5,-27.5 - parent: 1 - type: Transform -- uid: 17501 - type: Screwdriver - components: - - pos: -38.450848,-27.350416 - parent: 1 - type: Transform -- uid: 17502 - type: DoorElectronics - components: - - pos: -43.560223,-27.412916 - parent: 1 - type: Transform -- uid: 17503 - type: Welder - components: - - pos: -44.4577,-25.484493 - parent: 1 - type: Transform -- uid: 17504 - type: AirlockMaintLocked - components: - - pos: -55.5,-34.5 - parent: 1 - type: Transform -- uid: 17505 - type: AirlockMaintLocked - components: - - pos: -56.5,-40.5 - parent: 1 - type: Transform -- uid: 17506 - type: Grille - components: - - pos: -53.5,-36.5 - parent: 1 - type: Transform -- uid: 17507 - type: Grille - components: - - pos: -53.5,-37.5 - parent: 1 - type: Transform -- uid: 17508 - type: Grille - components: - - pos: -58.5,-36.5 - parent: 1 - type: Transform -- uid: 17509 - type: Grille - components: - - pos: -58.5,-37.5 - parent: 1 - type: Transform -- uid: 17510 - type: DrinkBeer - components: - - pos: -56.96358,-25.301325 - parent: 1 - type: Transform -- uid: 17511 - type: ClosetWall - components: - - pos: 53.5,-33.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17512 - type: FlashlightLantern - components: - - pos: -31.518282,-62.54614 - parent: 1 - type: Transform -- uid: 17513 - type: ComputerCriminalRecords - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-45.5 - parent: 1 - type: Transform -- uid: 17514 - type: WallPlastitanium - components: - - pos: -53.5,-84.5 - parent: 1 - type: Transform -- uid: 17515 - type: WallPlastitanium - components: - - pos: -55.5,-84.5 - parent: 1 - type: Transform -- uid: 17516 - type: WallPlastitanium - components: - - pos: -53.5,-85.5 - parent: 1 - type: Transform -- uid: 17517 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-85.5 - parent: 1 - type: Transform -- uid: 17518 - type: WallPlastitanium - components: - - pos: -51.5,-85.5 - parent: 1 - type: Transform -- uid: 17519 - type: WallPlastitanium - components: - - pos: -51.5,-86.5 - parent: 1 - type: Transform -- uid: 17520 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-88.5 - parent: 1 - type: Transform -- uid: 17521 - type: WallPlastitanium - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-86.5 - parent: 1 - type: Transform -- uid: 17522 - type: WallPlastitanium - components: - - pos: -51.5,-88.5 - parent: 1 - type: Transform -- uid: 17523 - type: WallPlastitanium - components: - - pos: -51.5,-89.5 - parent: 1 - type: Transform -- uid: 17524 - type: WallPlastitanium - components: - - pos: -56.5,-89.5 - parent: 1 - type: Transform -- uid: 17525 - type: WallPlastitanium - components: - - pos: -57.5,-89.5 - parent: 1 - type: Transform -- uid: 17526 - type: WallPlastitanium - components: - - pos: -55.5,-90.5 - parent: 1 - type: Transform -- uid: 17527 - type: WallPlastitanium - components: - - pos: -57.5,-87.5 - parent: 1 - type: Transform -- uid: 17528 - type: WallPlastitanium - components: - - pos: -53.5,-90.5 - parent: 1 - type: Transform -- uid: 17529 - type: WallPlastitanium - components: - - pos: -53.5,-89.5 - parent: 1 - type: Transform -- uid: 17530 - type: ReinforcedPlasmaWindow - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-89.5 - parent: 1 - type: Transform -- uid: 17531 - type: ReinforcedPlasmaWindow - components: - - pos: -49.5,-87.5 - parent: 1 - type: Transform -- uid: 17532 - type: ReinforcedPlasmaWindow - components: - - pos: -50.5,-87.5 - parent: 1 - type: Transform -- uid: 17533 - type: ComputerBroken - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-87.5 - parent: 1 - type: Transform -- uid: 17534 - type: ChairPilotSeat - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-87.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17535 - type: AirlockExternalGlassShuttleLocked - components: - - pos: -54.5,-90.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 17536 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 3.141592653589793 rad - pos: -54.5,-84.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 17537 - type: WallPlastitanium - components: - - pos: -57.5,-86.5 - parent: 1 - type: Transform -- uid: 17538 - type: WallPlastitanium - components: - - pos: -57.5,-88.5 - parent: 1 - type: Transform -- uid: 17539 - type: Thruster - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-87.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17540 - type: PosterContrabandFreeSyndicateEncryptionKey - components: - - pos: -53.5,-85.5 - parent: 1 - type: Transform -- uid: 17541 - type: WallPlastitanium - components: - - pos: -57.5,-85.5 - parent: 1 - type: Transform -- uid: 17542 - type: WallPlastitanium - components: - - pos: -56.5,-85.5 - parent: 1 - type: Transform -- uid: 17543 - type: Thruster - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-84.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17544 - type: Thruster - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-90.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17545 - type: GeneratorBasic - components: - - pos: -58.5,-88.5 - parent: 1 - type: Transform -- uid: 17546 - type: GeneratorBasic - components: - - pos: -58.5,-86.5 - parent: 1 - type: Transform -- uid: 17547 - type: CableHV - components: - - pos: -58.5,-88.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17548 - type: CableHV - components: - - pos: -57.5,-88.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17549 - type: CableHV - components: - - pos: -58.5,-86.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17550 - type: CableHV - components: - - pos: -57.5,-86.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17551 - type: CableHV - components: - - pos: -56.5,-88.5 - parent: 1 - type: Transform -- uid: 17552 - type: CableHV - components: - - pos: -57.5,-87.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17553 - type: CableHV - components: - - pos: -55.5,-88.5 - parent: 1 - type: Transform -- uid: 17554 - type: CableHV - components: - - pos: -55.5,-89.5 - parent: 1 - type: Transform -- uid: 17555 - type: CableTerminal - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-88.5 - parent: 1 - type: Transform -- uid: 17556 - type: SMESBasic - components: - - pos: -55.5,-88.5 - parent: 1 - type: Transform -- uid: 17557 - type: SubstationBasic - components: - - pos: -55.5,-89.5 - parent: 1 - type: Transform -- uid: 17558 - type: CableMV - components: - - pos: -55.5,-89.5 - parent: 1 - type: Transform -- uid: 17559 - type: CableMV - components: - - pos: -54.5,-89.5 - parent: 1 - type: Transform -- uid: 17560 - type: CableMV - components: - - pos: -54.5,-88.5 - parent: 1 - type: Transform -- uid: 17561 - type: CableMV - components: - - pos: -54.5,-87.5 - parent: 1 - type: Transform -- uid: 17562 - type: CableMV - components: - - pos: -55.5,-87.5 - parent: 1 - type: Transform -- uid: 17563 - type: CableMV - components: - - pos: -55.5,-86.5 - parent: 1 - type: Transform -- uid: 17564 - type: CableMV - components: - - pos: -56.5,-86.5 - parent: 1 - type: Transform -- uid: 17565 - type: CableMV - components: - - pos: -56.5,-85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17566 - type: APCBasic - components: - - pos: -56.5,-85.5 - parent: 1 - type: Transform -- uid: 17567 - type: CableApcExtension - components: - - pos: -56.5,-85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17568 - type: CableApcExtension - components: - - pos: -56.5,-86.5 - parent: 1 - type: Transform -- uid: 17569 - type: CableApcExtension - components: - - pos: -56.5,-87.5 - parent: 1 - type: Transform -- uid: 17570 - type: CableApcExtension - components: - - pos: -55.5,-87.5 - parent: 1 - type: Transform -- uid: 17571 - type: CableApcExtension - components: - - pos: -54.5,-87.5 - parent: 1 - type: Transform -- uid: 17572 - type: CableApcExtension - components: - - pos: -53.5,-87.5 - parent: 1 - type: Transform -- uid: 17573 - type: CableApcExtension - components: - - pos: -52.5,-87.5 - parent: 1 - type: Transform -- uid: 17574 - type: CableApcExtension - components: - - pos: -54.5,-86.5 - parent: 1 - type: Transform -- uid: 17575 - type: CableApcExtension - components: - - pos: -54.5,-85.5 - parent: 1 - type: Transform -- uid: 17576 - type: CableApcExtension - components: - - pos: -54.5,-88.5 - parent: 1 - type: Transform -- uid: 17577 - type: CableApcExtension - components: - - pos: -54.5,-89.5 - parent: 1 - type: Transform -- uid: 17578 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-88.5 - parent: 1 - type: Transform -- uid: 17579 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-86.5 - parent: 1 - type: Transform -- uid: 17580 - type: Matchbox - components: - - pos: 61.092392,-1.3427626 - parent: 1 - type: Transform -- uid: 17581 - type: Bed - components: - - pos: -56.5,-86.5 - parent: 1 - type: Transform -- uid: 17582 - type: WallSolid - components: - - pos: 58.5,2.5 - parent: 1 - type: Transform -- uid: 17583 - type: MaintenanceWeaponSpawner - components: - - pos: -52.5,-86.5 - parent: 1 - type: Transform -- uid: 17584 - type: MaintenanceWeaponSpawner - components: - - pos: -52.5,-88.5 - parent: 1 - type: Transform -- uid: 17585 - type: BedsheetSyndie - components: - - pos: -56.5,-86.5 - parent: 1 - type: Transform -- uid: 17586 - type: WaterTankFull - components: - - pos: 35.5,-10.5 - parent: 1 - type: Transform -- uid: 17587 - type: PoweredlightExterior - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-85.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17588 - type: PoweredlightExterior - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-89.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17589 - type: Rack - components: - - pos: 35.5,-12.5 - parent: 1 - type: Transform -- uid: 17590 - type: ClosetMaintenanceFilledRandom - components: - - pos: 36.5,-12.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17591 - type: MaintenanceWeaponSpawner - components: - - pos: 35.5,-12.5 - parent: 1 - type: Transform -- uid: 17592 - type: PoweredSmallLight - components: - - pos: 44.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17593 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17594 - type: PoweredSmallLight - components: - - pos: 39.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17595 - type: PoweredSmallLight - components: - - pos: 31.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17596 - type: Table - components: - - pos: 29.5,-10.5 - parent: 1 - type: Transform -- uid: 17597 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17598 - type: UnfinishedMachineFrame - components: - - pos: -39.5,-20.5 - parent: 1 - type: Transform -- uid: 17599 - type: RandomSpawner - components: - - pos: -35.5,-20.5 - parent: 1 - type: Transform -- uid: 17600 - type: RandomSpawner - components: - - pos: -45.5,-28.5 - parent: 1 - type: Transform -- uid: 17601 - type: RandomSpawner - components: - - pos: -57.5,-33.5 - parent: 1 - type: Transform -- uid: 17602 - type: Table - components: - - pos: -54.5,-37.5 - parent: 1 - type: Transform -- uid: 17603 - type: Table - components: - - pos: -54.5,-38.5 - parent: 1 - type: Transform -- uid: 17604 - type: Table - components: - - pos: -54.5,-39.5 - parent: 1 - type: Transform -- uid: 17605 - type: Table - components: - - pos: -55.5,-39.5 - parent: 1 - type: Transform -- uid: 17606 - type: Table - components: - - pos: -57.5,-35.5 - parent: 1 - type: Transform -- uid: 17607 - type: Table - components: - - pos: -56.5,-35.5 - parent: 1 - type: Transform -- uid: 17608 - type: Multitool - components: - - pos: -56.47646,-35.42343 - parent: 1 - type: Transform -- uid: 17609 - type: ClothingHandsGlovesColorYellow - components: - - pos: -56.97646,-35.48593 - parent: 1 - type: Transform -- uid: 17610 - type: trayScanner - components: - - pos: -54.607018,-37.48977 - parent: 1 - type: Transform -- uid: 17611 - type: Wirecutter - components: - - rot: -1.5707963267948966 rad - pos: -54.537155,-38.29817 - parent: 1 - type: Transform -- uid: 17612 - type: FoodSnackRaisins - components: - - rot: -1.5707963267948966 rad - pos: -54.526974,-39.17369 - parent: 1 - type: Transform -- uid: 17613 - type: SpaceMedipen - components: - - rot: -1.5707963267948966 rad - pos: -55.678448,-39.42407 - parent: 1 - type: Transform -- uid: 17614 - type: Stunbaton - components: - - pos: -16.522211,23.632349 - parent: 1 - type: Transform -- uid: 17615 - type: Grille - components: - - pos: -55.5,-85.5 - parent: 1 - type: Transform -- uid: 17616 - type: CableApcExtension - components: - - pos: -55.5,-85.5 - parent: 1 - type: Transform -- uid: 17617 - type: ToyHonk - components: - - pos: 62.0246,-1.3985255 - parent: 1 - type: Transform -- uid: 17618 - type: Lamp - components: - - pos: 59.696476,-1.1797758 - parent: 1 - type: Transform -- uid: 17619 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -46.5,-39.5 - parent: 1 - type: Transform -- uid: 17620 - type: WallReinforced - components: - - pos: 25.5,-27.5 - parent: 1 - type: Transform -- uid: 17621 - type: CarpetSBlue - components: - - pos: 59.5,-0.5 - parent: 1 - type: Transform -- uid: 17622 - type: CarpetSBlue - components: - - pos: 59.5,-1.5 - parent: 1 - type: Transform -- uid: 17623 - type: CarpetSBlue - components: - - pos: 60.5,-0.5 - parent: 1 - type: Transform -- uid: 17624 - type: CarpetSBlue - components: - - pos: 60.5,-1.5 - parent: 1 - type: Transform -- uid: 17625 - type: CarpetSBlue - components: - - pos: 61.5,-0.5 - parent: 1 - type: Transform -- uid: 17626 - type: CarpetSBlue - components: - - pos: 61.5,-1.5 - parent: 1 - type: Transform -- uid: 17627 - type: CarpetSBlue - components: - - pos: 62.5,-0.5 - parent: 1 - type: Transform -- uid: 17628 - type: CarpetSBlue - components: - - pos: 62.5,-1.5 - parent: 1 - type: Transform -- uid: 17629 - type: TableWood - components: - - pos: 59.5,-3.5 - parent: 1 - type: Transform -- uid: 17630 - type: MedkitOxygenFilled - components: - - pos: 59.446957,-3.3832169 - parent: 1 - type: Transform -- uid: 17631 - type: AirAlarm - components: - - pos: 7.5,-31.5 - parent: 1 - type: Transform -- uid: 17632 - type: MaintenanceFluffSpawner - components: - - pos: 57.5,-3.5 - parent: 1 - type: Transform -- uid: 17633 - type: CableApcExtension - components: - - pos: 33.5,22.5 - parent: 1 - type: Transform -- uid: 17634 - type: CableApcExtension - components: - - pos: 34.5,22.5 - parent: 1 - type: Transform -- uid: 17635 - type: CableApcExtension - components: - - pos: 35.5,22.5 - parent: 1 - type: Transform -- uid: 17636 - type: CableApcExtension - components: - - pos: 36.5,22.5 - parent: 1 - type: Transform -- uid: 17637 - type: CableApcExtension - components: - - pos: 36.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17638 - type: CableApcExtension - components: - - pos: 37.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17639 - type: CableApcExtension - components: - - pos: 38.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17640 - type: CableApcExtension - components: - - pos: 39.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17641 - type: CableApcExtension - components: - - pos: 40.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17642 - type: CableApcExtension - components: - - pos: 42.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17643 - type: CableApcExtension - components: - - pos: 44.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17644 - type: CableApcExtension - components: - - pos: 43.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17645 - type: CableApcExtension - components: - - pos: 44.5,24.5 - parent: 1 - type: Transform -- uid: 17646 - type: CableApcExtension - components: - - pos: 44.5,25.5 - parent: 1 - type: Transform -- uid: 17647 - type: CableApcExtension - components: - - pos: 44.5,26.5 - parent: 1 - type: Transform -- uid: 17648 - type: CableApcExtension - components: - - pos: 47.5,26.5 - parent: 1 - type: Transform -- uid: 17649 - type: CableApcExtension - components: - - pos: 48.5,26.5 - parent: 1 - type: Transform -- uid: 17650 - type: CableApcExtension - components: - - pos: 49.5,26.5 - parent: 1 - type: Transform -- uid: 17651 - type: CableApcExtension - components: - - pos: 50.5,26.5 - parent: 1 - type: Transform -- uid: 17652 - type: CableApcExtension - components: - - pos: 51.5,26.5 - parent: 1 - type: Transform -- uid: 17653 - type: CableApcExtension - components: - - pos: 52.5,26.5 - parent: 1 - type: Transform -- uid: 17654 - type: CableApcExtension - components: - - pos: 53.5,26.5 - parent: 1 - type: Transform -- uid: 17655 - type: CableApcExtension - components: - - pos: 54.5,26.5 - parent: 1 - type: Transform -- uid: 17656 - type: CableApcExtension - components: - - pos: 55.5,26.5 - parent: 1 - type: Transform -- uid: 17657 - type: CableApcExtension - components: - - pos: 56.5,26.5 - parent: 1 - type: Transform -- uid: 17658 - type: CableApcExtension - components: - - pos: 57.5,26.5 - parent: 1 - type: Transform -- uid: 17659 - type: CableApcExtension - components: - - pos: 58.5,26.5 - parent: 1 - type: Transform -- uid: 17660 - type: CableApcExtension - components: - - pos: 59.5,26.5 - parent: 1 - type: Transform -- uid: 17661 - type: CableApcExtension - components: - - pos: 60.5,26.5 - parent: 1 - type: Transform -- uid: 17662 - type: CableApcExtension - components: - - pos: 63.5,5.5 - parent: 1 - type: Transform -- uid: 17663 - type: CableApcExtension - components: - - pos: 64.5,5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17664 - type: CableApcExtension - components: - - pos: 65.5,5.5 - parent: 1 - type: Transform -- uid: 17665 - type: CableApcExtension - components: - - pos: 65.5,4.5 - parent: 1 - type: Transform -- uid: 17666 - type: CableApcExtension - components: - - pos: 65.5,6.5 - parent: 1 - type: Transform -- uid: 17667 - type: CableApcExtension - components: - - pos: 65.5,7.5 - parent: 1 - type: Transform -- uid: 17668 - type: CableApcExtension - components: - - pos: 65.5,8.5 - parent: 1 - type: Transform -- uid: 17669 - type: CableApcExtension - components: - - pos: 65.5,9.5 - parent: 1 - type: Transform -- uid: 17670 - type: CableApcExtension - components: - - pos: 65.5,10.5 - parent: 1 - type: Transform -- uid: 17671 - type: CableApcExtension - components: - - pos: 65.5,11.5 - parent: 1 - type: Transform -- uid: 17672 - type: CableApcExtension - components: - - pos: 65.5,12.5 - parent: 1 - type: Transform -- uid: 17673 - type: CableApcExtension - components: - - pos: 65.5,13.5 - parent: 1 - type: Transform -- uid: 17674 - type: CableApcExtension - components: - - pos: 65.5,14.5 - parent: 1 - type: Transform -- uid: 17675 - type: CableApcExtension - components: - - pos: 65.5,15.5 - parent: 1 - type: Transform -- uid: 17676 - type: WallReinforced - components: - - pos: 68.5,12.5 - parent: 1 - type: Transform -- uid: 17677 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17678 - type: PoweredSmallLight - components: - - pos: 57.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17679 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 49.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17680 - type: CableApcExtension - components: - - pos: 53.5,27.5 - parent: 1 - type: Transform -- uid: 17681 - type: Table - components: - - pos: -22.5,-33.5 - parent: 1 - type: Transform -- uid: 17682 - type: PowerCellRecharger - components: - - pos: -22.5,-33.5 - parent: 1 - type: Transform -- uid: 17683 - type: Table - components: - - pos: 38.5,-55.5 - parent: 1 - type: Transform -- uid: 17684 - type: Table - components: - - pos: 38.5,-56.5 - parent: 1 - type: Transform -- uid: 17685 - type: PowerCellRecharger - components: - - pos: 38.5,-55.5 - parent: 1 - type: Transform -- uid: 17686 - type: WarpPoint - components: - - name: 'warp: engineering' - type: MetaData - - pos: -25.5,-11.5 - parent: 1 - type: Transform - - location: engineering reception - type: WarpPoint -- uid: 17687 - type: WarpPoint - components: - - name: 'warp: atmospherics' - type: MetaData - - pos: -32.5,-33.5 - parent: 1 - type: Transform - - location: atmospherics - type: WarpPoint -- uid: 17688 - type: WarpPoint - components: - - name: 'warp: singularity' - type: MetaData - - pos: -66.5,-18.5 - parent: 1 - type: Transform - - location: singularity - type: WarpPoint -- uid: 17689 - type: WarpPoint - components: - - name: 'warp: forgotten dock' - type: MetaData - - pos: -55.5,-75.5 - parent: 1 - type: Transform - - location: forgotten ship dock - type: WarpPoint -- uid: 17690 - type: WarpPoint - components: - - name: 'warp: jani closet' - type: MetaData - - pos: -8.5,-23.5 - parent: 1 - type: Transform - - location: janitorial closet - type: WarpPoint -- uid: 17691 - type: Grille - components: - - pos: 25.5,-38.5 - parent: 1 - type: Transform -- uid: 17692 - type: WarpPoint - components: - - name: 'warp: courthouse' - type: MetaData - - pos: 31.5,-51.5 - parent: 1 - type: Transform - - location: courtroom - type: WarpPoint -- uid: 17693 - type: WarpPoint - components: - - name: 'Warp: psychology' - type: MetaData - - pos: -10.5,-35.5 - parent: 1 - type: Transform - - location: psychology - type: WarpPoint -- uid: 17694 - type: WarpPoint - components: - - name: 'warp: virology' - type: MetaData - - pos: -21.5,-71.5 - parent: 1 - type: Transform - - location: virology reception - type: WarpPoint -- uid: 17695 - type: ClosetFireFilled - components: - - pos: -57.5,-45.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17696 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-51.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17697 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-52.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 17698 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17699 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17700 - type: trayScanner - components: - - pos: -47.457436,-19.479069 - parent: 1 - type: Transform -- uid: 17701 - type: WeldingFuelTank - components: - - pos: -28.5,-43.5 - parent: 1 - type: Transform -- uid: 17702 - type: WaterTankFull - components: - - pos: -27.5,-43.5 - parent: 1 - type: Transform -- uid: 17703 - type: Rack - components: - - pos: -31.5,-43.5 - parent: 1 - type: Transform -- uid: 17704 - type: Rack - components: - - pos: -29.5,-46.5 - parent: 1 - type: Transform -- uid: 17705 - type: CrateFilledSpawner - components: - - pos: -31.5,-48.5 - parent: 1 - type: Transform -- uid: 17706 - type: ClosetFireFilled - components: - - pos: -23.5,-41.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17707 - type: DrinkGlass - components: - - pos: 0.54256004,-5.358738 - parent: 1 - type: Transform -- uid: 17708 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 1 - type: Transform -- uid: 17709 - type: Girder - components: - - pos: -23.5,-42.5 - parent: 1 - type: Transform -- uid: 17710 - type: Girder - components: - - pos: -28.5,-39.5 - parent: 1 - type: Transform -- uid: 17711 - type: RandomSpawner - components: - - pos: -31.5,-51.5 - parent: 1 - type: Transform -- uid: 17712 - type: WallSolid - components: - - pos: -27.5,-57.5 - parent: 1 - type: Transform -- uid: 17713 - type: Firelock - components: - - pos: -28.5,-56.5 - parent: 1 - type: Transform -- uid: 17714 - type: Catwalk - components: - - pos: -49.5,-32.5 - parent: 1 - type: Transform -- uid: 17715 - type: Catwalk - components: - - pos: -50.5,-32.5 - parent: 1 - type: Transform -- uid: 17716 - type: Catwalk - components: - - pos: -51.5,-32.5 - parent: 1 - type: Transform -- uid: 17717 - type: Catwalk - components: - - pos: -52.5,-32.5 - parent: 1 - type: Transform -- uid: 17718 - type: WallSolid - components: - - pos: -53.5,-32.5 - parent: 1 - type: Transform -- uid: 17719 - type: WallSolid - components: - - pos: -33.5,-24.5 - parent: 1 - type: Transform -- uid: 17720 - type: PoweredSmallLight - components: - - pos: -41.5,-24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17721 - type: PoweredSmallLight - components: - - pos: -39.5,-28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17722 - type: PoweredSmallLight - components: - - pos: -45.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17723 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17724 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17725 - type: PoweredSmallLight - components: - - pos: -49.5,-32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17726 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17727 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17728 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-59.5 - parent: 1 - type: Transform -- uid: 17729 - type: ClothingHeadHatCake - components: - - pos: -23.42545,-67.41026 - parent: 1 - type: Transform -- uid: 17730 - type: Grille - components: - - pos: -48.5,-81.5 - parent: 1 - type: Transform -- uid: 17731 - type: Rack - components: - - pos: -28.5,-28.5 - parent: 1 - type: Transform -- uid: 17732 - type: Rack - components: - - pos: -23.5,-28.5 - parent: 1 - type: Transform -- uid: 17733 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -5.5,-65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17734 - type: Crowbar - components: - - pos: -23.432364,-28.473803 - parent: 1 - type: Transform -- uid: 17735 - type: Welder - components: - - pos: -28.416739,-28.473803 - parent: 1 - type: Transform -- uid: 17736 - type: CableApcExtension - components: - - pos: -25.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17737 - type: CableApcExtension - components: - - pos: -25.5,-28.5 - parent: 1 - type: Transform -- uid: 17738 - type: CableApcExtension - components: - - pos: -25.5,-29.5 - parent: 1 - type: Transform -- uid: 17739 - type: CableApcExtension - components: - - pos: -26.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17740 - type: CableApcExtension - components: - - pos: -28.5,-29.5 - parent: 1 - type: Transform -- uid: 17741 - type: CableApcExtension - components: - - pos: -27.5,-29.5 - parent: 1 - type: Transform -- uid: 17742 - type: CableApcExtension - components: - - pos: -24.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17743 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17744 - type: PoweredSmallLight - components: - - pos: -29.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17745 - type: ClosetMaintenanceFilledRandom - components: - - pos: -22.5,-28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17746 - type: MaintenanceWeaponSpawner - components: - - pos: -29.5,-28.5 - parent: 1 - type: Transform -- uid: 17747 - type: WallSolid - components: - - pos: -34.5,-24.5 - parent: 1 - type: Transform -- uid: 17748 - type: WallSolid - components: - - pos: -34.5,-22.5 - parent: 1 - type: Transform -- uid: 17749 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -35.5,-26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17750 - type: Rack - components: - - pos: -34.5,-25.5 - parent: 1 - type: Transform -- uid: 17751 - type: WallSolid - components: - - pos: -34.5,-23.5 - parent: 1 - type: Transform -- uid: 17752 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -33.5,-22.5 - parent: 1 - type: Transform -- uid: 17753 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: -33.5,-23.5 - parent: 1 - type: Transform -- uid: 17754 - type: PartRodMetal1 - components: - - pos: -34.56476,-25.498856 - parent: 1 - type: Transform -- uid: 17755 - type: Rack - components: - - pos: -42.5,-20.5 - parent: 1 - type: Transform -- uid: 17756 - type: Rack - components: - - pos: -42.5,-21.5 - parent: 1 - type: Transform -- uid: 17757 - type: trayScanner - components: - - pos: -42.463882,-20.49279 - parent: 1 - type: Transform -- uid: 17758 - type: WelderIndustrial - components: - - pos: -42.417007,-21.43029 - parent: 1 - type: Transform -- uid: 17759 - type: ClothingHeadHelmetEVA - components: - - pos: -71.04211,-26.39878 - parent: 1 - type: Transform -- uid: 17760 - type: ClothingOuterHardsuitEVA - components: - - pos: -71.62023,-26.30503 - parent: 1 - type: Transform -- uid: 17761 - type: WaterTankFull - components: - - pos: -1.5,-14.5 - parent: 1 - type: Transform -- uid: 17762 - type: Rack - components: - - pos: 4.5,-17.5 - parent: 1 - type: Transform -- uid: 17763 - type: Rack - components: - - pos: 3.5,-17.5 - parent: 1 - type: Transform -- uid: 17764 - type: CableApcExtension - components: - - pos: 8.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17765 - type: CableApcExtension - components: - - pos: 7.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17766 - type: CableApcExtension - components: - - pos: 6.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17767 - type: CableApcExtension - components: - - pos: 5.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17768 - type: CableApcExtension - components: - - pos: 4.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17769 - type: CableApcExtension - components: - - pos: 4.5,-15.5 - parent: 1 - type: Transform -- uid: 17770 - type: CableApcExtension - components: - - pos: 4.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17771 - type: CableApcExtension - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17772 - type: CableApcExtension - components: - - pos: 2.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17773 - type: CableApcExtension - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17774 - type: CableApcExtension - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17775 - type: CableApcExtension - components: - - pos: 2.5,-14.5 - parent: 1 - type: Transform -- uid: 17776 - type: CableApcExtension - components: - - pos: 2.5,-14.5 - parent: 1 - type: Transform -- uid: 17777 - type: CableApcExtension - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17778 - type: CableApcExtension - components: - - pos: 1.5,-14.5 - parent: 1 - type: Transform -- uid: 17779 - type: CableApcExtension - components: - - pos: 0.5,-14.5 - parent: 1 - type: Transform -- uid: 17780 - type: CableApcExtension - components: - - pos: -0.5,-14.5 - parent: 1 - type: Transform -- uid: 17781 - type: CableApcExtension - components: - - pos: -0.5,-13.5 - parent: 1 - type: Transform -- uid: 17782 - type: CableApcExtension - components: - - pos: -0.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17783 - type: CableApcExtension - components: - - pos: -0.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17784 - type: CableApcExtension - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform -- uid: 17785 - type: CableApcExtension - components: - - pos: -0.5,-10.5 - parent: 1 - type: Transform -- uid: 17786 - type: ClosetFireFilled - components: - - pos: 22.5,-8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 17787 - type: PoweredSmallLight - components: - - pos: 15.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17788 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17789 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 14.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17790 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 1 - type: Transform -- uid: 17791 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17792 - type: PoweredSmallLight - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17793 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 17794 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17795 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 16.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17796 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17797 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17798 - type: Poweredlight - components: - - pos: -18.5,-4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17799 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17800 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -25.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17801 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -14.5,-6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17802 - type: Poweredlight - components: - - pos: -15.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17803 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -19.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17804 - type: Catwalk - components: - - pos: 69.5,3.5 - parent: 1 - type: Transform -- uid: 17805 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17806 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 17807 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 17808 - type: Barricade - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-53.5 - parent: 1 - type: Transform -- uid: 17809 - type: AirlockMaintMedLocked - components: - - name: cryogenics - type: MetaData - - rot: 1.5707963267948966 rad - pos: -27.5,-58.5 - parent: 1 - type: Transform -- uid: 17810 - type: d10Dice - components: - - pos: -29.44911,-46.43667 - parent: 1 - type: Transform -- uid: 17811 - type: CableHV - components: - - pos: -9.5,28.5 - parent: 1 - type: Transform -- uid: 17812 - type: CableHV - components: - - pos: 14.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17813 - type: CableHV - components: - - pos: 13.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17814 - type: WallReinforced - components: - - pos: 5.5,34.5 - parent: 1 - type: Transform -- uid: 17815 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 8.5,35.5 - parent: 1 - type: Transform -- uid: 17816 - type: WallReinforced - components: - - pos: 9.5,35.5 - parent: 1 - type: Transform -- uid: 17817 - type: WallReinforced - components: - - pos: 11.5,31.5 - parent: 1 - type: Transform -- uid: 17818 - type: WallReinforced - components: - - pos: -3.5,26.5 - parent: 1 - type: Transform -- uid: 17819 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 52.5,54.5 - parent: 1 - type: Transform -- uid: 17820 - type: ReinforcedWindow - components: - - pos: 53.5,61.5 - parent: 1 - type: Transform -- uid: 17821 - type: ReinforcedWindow - components: - - pos: 50.5,56.5 - parent: 1 - type: Transform -- uid: 17822 - type: PosterContrabandRevolt - components: - - pos: 57.5,55.5 - parent: 1 - type: Transform -- uid: 17823 - type: Grille - components: - - pos: 50.5,58.5 - parent: 1 - type: Transform -- uid: 17824 - type: CableHV - components: - - pos: 2.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17825 - type: CableHV - components: - - pos: 1.5,32.5 - parent: 1 - type: Transform -- uid: 17826 - type: CableHV - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform -- uid: 17827 - type: CableHV - components: - - pos: -0.5,32.5 - parent: 1 - type: Transform -- uid: 17828 - type: CableHV - components: - - pos: -1.5,32.5 - parent: 1 - type: Transform -- uid: 17829 - type: CableHV - components: - - pos: -2.5,32.5 - parent: 1 - type: Transform -- uid: 17830 - type: CableHV - components: - - pos: -3.5,32.5 - parent: 1 - type: Transform -- uid: 17831 - type: CableHV - components: - - pos: -4.5,32.5 - parent: 1 - type: Transform -- uid: 17832 - type: CableHV - components: - - pos: -5.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17833 - type: CableHV - components: - - pos: -6.5,32.5 - parent: 1 - type: Transform -- uid: 17834 - type: CableHV - components: - - pos: -7.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17835 - type: CableHV - components: - - pos: -8.5,32.5 - parent: 1 - type: Transform -- uid: 17836 - type: CableMV - components: - - pos: -8.5,35.5 - parent: 1 - type: Transform -- uid: 17837 - type: SubstationBasic - components: - - pos: -8.5,35.5 - parent: 1 - type: Transform -- uid: 17838 - type: WallReinforced - components: - - pos: -7.5,33.5 - parent: 1 - type: Transform -- uid: 17839 - type: WallReinforced - components: - - pos: -6.5,33.5 - parent: 1 - type: Transform -- uid: 17840 - type: WallReinforced - components: - - pos: -5.5,33.5 - parent: 1 - type: Transform -- uid: 17841 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -9.5,33.5 - parent: 1 - type: Transform -- uid: 17842 - type: WallReinforced - components: - - pos: -16.5,53.5 - parent: 1 - type: Transform -- uid: 17843 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -10.5,33.5 - parent: 1 - type: Transform -- uid: 17844 - type: WallReinforced - components: - - pos: -23.5,72.5 - parent: 1 - type: Transform -- uid: 17845 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -9.5,30.5 - parent: 1 - type: Transform -- uid: 17846 - type: Firelock - components: - - pos: 44.5,-64.5 - parent: 1 - type: Transform -- uid: 17847 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -10.5,30.5 - parent: 1 - type: Transform -- uid: 17848 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,30.5 - parent: 1 - type: Transform -- uid: 17849 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -12.5,30.5 - parent: 1 - type: Transform -- uid: 17850 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 17851 - type: TableReinforced - components: - - rot: -1.5707963267948966 rad - pos: -17.5,25.5 - parent: 1 - type: Transform -- uid: 17852 - type: WallSolid - components: - - pos: -11.5,25.5 - parent: 1 - type: Transform -- uid: 17853 - type: WallSolid - components: - - pos: -12.5,25.5 - parent: 1 - type: Transform -- uid: 17854 - type: WallReinforced - components: - - pos: -7.5,30.5 - parent: 1 - type: Transform -- uid: 17855 - type: WallReinforced - components: - - pos: -7.5,29.5 - parent: 1 - type: Transform -- uid: 17856 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -7.5,28.5 - parent: 1 - type: Transform -- uid: 17857 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -7.5,27.5 - parent: 1 - type: Transform -- uid: 17858 - type: WallReinforced - components: - - pos: -7.5,26.5 - parent: 1 - type: Transform -- uid: 17859 - type: WallReinforced - components: - - pos: -7.5,31.5 - parent: 1 - type: Transform -- uid: 17860 - type: WallReinforced - components: - - pos: -6.5,31.5 - parent: 1 - type: Transform -- uid: 17861 - type: WallReinforced - components: - - pos: -5.5,31.5 - parent: 1 - type: Transform -- uid: 17862 - type: WallReinforced - components: - - pos: -4.5,31.5 - parent: 1 - type: Transform -- uid: 17863 - type: WallReinforced - components: - - pos: -4.5,30.5 - parent: 1 - type: Transform -- uid: 17864 - type: WallReinforced - components: - - pos: -4.5,29.5 - parent: 1 - type: Transform -- uid: 17865 - type: WallReinforced - components: - - pos: -3.5,29.5 - parent: 1 - type: Transform -- uid: 17866 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -3.5,27.5 - parent: 1 - type: Transform -- uid: 17867 - type: WallReinforced - components: - - pos: -1.5,29.5 - parent: 1 - type: Transform -- uid: 17868 - type: WallReinforced - components: - - pos: -0.5,29.5 - parent: 1 - type: Transform -- uid: 17869 - type: WallReinforced - components: - - pos: 0.5,29.5 - parent: 1 - type: Transform -- uid: 17870 - type: WallReinforced - components: - - pos: 1.5,29.5 - parent: 1 - type: Transform -- uid: 17871 - type: WallReinforced - components: - - pos: 1.5,30.5 - parent: 1 - type: Transform -- uid: 17872 - type: WallReinforced - components: - - pos: 1.5,31.5 - parent: 1 - type: Transform -- uid: 17873 - type: WallReinforced - components: - - pos: 2.5,31.5 - parent: 1 - type: Transform -- uid: 17874 - type: Grille - components: - - pos: 50.5,57.5 - parent: 1 - type: Transform -- uid: 17875 - type: PosterContrabandRevolt - components: - - pos: 51.5,55.5 - parent: 1 - type: Transform -- uid: 17876 - type: PosterContrabandRevolt - components: - - pos: 56.5,60.5 - parent: 1 - type: Transform -- uid: 17877 - type: ReinforcedWindow - components: - - pos: 55.5,61.5 - parent: 1 - type: Transform -- uid: 17878 - type: PosterContrabandRevolt - components: - - pos: 52.5,60.5 - parent: 1 - type: Transform -- uid: 17879 - type: Grille - components: - - pos: 58.5,58.5 - parent: 1 - type: Transform -- uid: 17880 - type: WallReinforced - components: - - pos: 2.5,33.5 - parent: 1 - type: Transform -- uid: 17881 - type: WallReinforced - components: - - pos: 1.5,33.5 - parent: 1 - type: Transform -- uid: 17882 - type: WallReinforced - components: - - pos: 1.5,34.5 - parent: 1 - type: Transform -- uid: 17883 - type: WallReinforced - components: - - pos: 1.5,35.5 - parent: 1 - type: Transform -- uid: 17884 - type: WallReinforced - components: - - pos: 0.5,35.5 - parent: 1 - type: Transform -- uid: 17885 - type: Grille - components: - - pos: -2.5,35.5 - parent: 1 - type: Transform -- uid: 17886 - type: Grille - components: - - pos: -1.5,35.5 - parent: 1 - type: Transform -- uid: 17887 - type: Grille - components: - - pos: -0.5,35.5 - parent: 1 - type: Transform -- uid: 17888 - type: WallReinforced - components: - - pos: -3.5,35.5 - parent: 1 - type: Transform -- uid: 17889 - type: WallReinforced - components: - - pos: -4.5,35.5 - parent: 1 - type: Transform -- uid: 17890 - type: WallReinforced - components: - - pos: -4.5,34.5 - parent: 1 - type: Transform -- uid: 17891 - type: WallReinforced - components: - - pos: -4.5,33.5 - parent: 1 - type: Transform -- uid: 17892 - type: Grille - components: - - pos: 6.5,25.5 - parent: 1 - type: Transform -- uid: 17893 - type: Grille - components: - - pos: 4.5,25.5 - parent: 1 - type: Transform -- uid: 17894 - type: Grille - components: - - pos: 2.5,25.5 - parent: 1 - type: Transform -- uid: 17895 - type: ReinforcedWindow - components: - - pos: -0.5,35.5 - parent: 1 - type: Transform -- uid: 17896 - type: ReinforcedWindow - components: - - pos: -1.5,35.5 - parent: 1 - type: Transform -- uid: 17897 - type: CableHV - components: - - pos: -8.5,33.5 - parent: 1 - type: Transform -- uid: 17898 - type: ReinforcedWindow - components: - - pos: -2.5,35.5 - parent: 1 - type: Transform -- uid: 17899 - type: CableHV - components: - - pos: -8.5,34.5 - parent: 1 - type: Transform -- uid: 17900 - type: CableMV - components: - - pos: -8.5,33.5 - parent: 1 - type: Transform -- uid: 17901 - type: WallReinforced - components: - - pos: -23.5,58.5 - parent: 1 - type: Transform -- uid: 17902 - type: WallReinforced - components: - - pos: -20.5,72.5 - parent: 1 - type: Transform -- uid: 17903 - type: WallReinforced - components: - - pos: -23.5,57.5 - parent: 1 - type: Transform -- uid: 17904 - type: CableMV - components: - - pos: -8.5,34.5 - parent: 1 - type: Transform -- uid: 17905 - type: CableHV - components: - - pos: -8.5,35.5 - parent: 1 - type: Transform -- uid: 17906 - type: CableMV - components: - - pos: -8.5,31.5 - parent: 1 - type: Transform -- uid: 17907 - type: CableMV - components: - - pos: -8.5,32.5 - parent: 1 - type: Transform -- uid: 17908 - type: CableMV - components: - - pos: -7.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17909 - type: CableMV - components: - - pos: -6.5,32.5 - parent: 1 - type: Transform -- uid: 17910 - type: CableMV - components: - - pos: -5.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17911 - type: CableMV - components: - - pos: -4.5,32.5 - parent: 1 - type: Transform -- uid: 17912 - type: CableMV - components: - - pos: -3.5,32.5 - parent: 1 - type: Transform -- uid: 17913 - type: CableMV - components: - - pos: -2.5,32.5 - parent: 1 - type: Transform -- uid: 17914 - type: CableMV - components: - - pos: -1.5,32.5 - parent: 1 - type: Transform -- uid: 17915 - type: CableMV - components: - - pos: -0.5,32.5 - parent: 1 - type: Transform -- uid: 17916 - type: CableMV - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform -- uid: 17917 - type: CableMV - components: - - pos: 0.5,33.5 - parent: 1 - type: Transform -- uid: 17918 - type: CableMV - components: - - pos: 0.5,34.5 - parent: 1 - type: Transform -- uid: 17919 - type: CableMV - components: - - pos: 0.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17920 - type: APCBasic - components: - - pos: 0.5,35.5 - parent: 1 - type: Transform -- uid: 17921 - type: CableApcExtension - components: - - pos: 0.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17922 - type: CableApcExtension - components: - - pos: 0.5,34.5 - parent: 1 - type: Transform -- uid: 17923 - type: CableApcExtension - components: - - pos: 0.5,33.5 - parent: 1 - type: Transform -- uid: 17924 - type: CableApcExtension - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform -- uid: 17925 - type: CableApcExtension - components: - - pos: 1.5,32.5 - parent: 1 - type: Transform -- uid: 17926 - type: CableApcExtension - components: - - pos: 2.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17927 - type: Grille - components: - - pos: 58.5,56.5 - parent: 1 - type: Transform -- uid: 17928 - type: PosterContrabandRevolt - components: - - pos: 51.5,59.5 - parent: 1 - type: Transform -- uid: 17929 - type: ReinforcedWindow - components: - - pos: 50.5,57.5 - parent: 1 - type: Transform -- uid: 17930 - type: ReinforcedWindow - components: - - pos: 58.5,56.5 - parent: 1 - type: Transform -- uid: 17931 - type: WallReinforced - components: - - pos: 49.5,41.5 - parent: 1 - type: Transform -- uid: 17932 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -1.5,27.5 - parent: 1 - type: Transform -- uid: 17933 - type: WallReinforced - components: - - pos: 12.5,31.5 - parent: 1 - type: Transform -- uid: 17934 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 7.5,29.5 - parent: 1 - type: Transform -- uid: 17935 - type: WallReinforced - components: - - pos: 6.5,29.5 - parent: 1 - type: Transform -- uid: 17936 - type: WallReinforced - components: - - pos: 4.5,33.5 - parent: 1 - type: Transform -- uid: 17937 - type: CableApcExtension - components: - - pos: 13.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17938 - type: CableApcExtension - components: - - pos: 14.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17939 - type: CableApcExtension - components: - - pos: 15.5,32.5 - parent: 1 - type: Transform -- uid: 17940 - type: CableApcExtension - components: - - pos: 16.5,32.5 - parent: 1 - type: Transform -- uid: 17941 - type: CableApcExtension - components: - - pos: 16.5,33.5 - parent: 1 - type: Transform -- uid: 17942 - type: CableApcExtension - components: - - pos: 16.5,34.5 - parent: 1 - type: Transform -- uid: 17943 - type: CableHV - components: - - pos: -14.5,32.5 - parent: 1 - type: Transform -- uid: 17944 - type: CableHV - components: - - pos: -14.5,30.5 - parent: 1 - type: Transform -- uid: 17945 - type: CableHV - components: - - pos: -14.5,29.5 - parent: 1 - type: Transform -- uid: 17946 - type: CableHV - components: - - pos: -16.5,29.5 - parent: 1 - type: Transform -- uid: 17947 - type: CableApcExtension - components: - - pos: 16.5,31.5 - parent: 1 - type: Transform -- uid: 17948 - type: CableApcExtension - components: - - pos: 16.5,30.5 - parent: 1 - type: Transform -- uid: 17949 - type: CableApcExtension - components: - - pos: 16.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17950 - type: CableApcExtension - components: - - pos: 16.5,28.5 - parent: 1 - type: Transform -- uid: 17951 - type: CableApcExtension - components: - - pos: 16.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17952 - type: CableApcExtension - components: - - pos: 16.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17953 - type: CableApcExtension - components: - - pos: 16.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17954 - type: CableApcExtension - components: - - pos: 15.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17955 - type: CableApcExtension - components: - - pos: 14.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17956 - type: CableApcExtension - components: - - pos: 13.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17957 - type: CableApcExtension - components: - - pos: 12.5,25.5 - parent: 1 - type: Transform -- uid: 17958 - type: CableApcExtension - components: - - pos: 11.5,25.5 - parent: 1 - type: Transform -- uid: 17959 - type: CableApcExtension - components: - - pos: 11.5,24.5 - parent: 1 - type: Transform -- uid: 17960 - type: CableApcExtension - components: - - pos: 10.5,24.5 - parent: 1 - type: Transform -- uid: 17961 - type: CableApcExtension - components: - - pos: 9.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17962 - type: CableApcExtension - components: - - pos: 8.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17963 - type: CableApcExtension - components: - - pos: 7.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17964 - type: CableApcExtension - components: - - pos: 6.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17965 - type: CableApcExtension - components: - - pos: 5.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17966 - type: CableApcExtension - components: - - pos: 4.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17967 - type: CableApcExtension - components: - - pos: 3.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17968 - type: CableApcExtension - components: - - pos: 2.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17969 - type: CableApcExtension - components: - - pos: 1.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17970 - type: CableApcExtension - components: - - pos: 0.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17971 - type: CableApcExtension - components: - - pos: -0.5,24.5 - parent: 1 - type: Transform -- uid: 17972 - type: CableApcExtension - components: - - pos: -1.5,24.5 - parent: 1 - type: Transform -- uid: 17973 - type: CableApcExtension - components: - - pos: -0.5,32.5 - parent: 1 - type: Transform -- uid: 17974 - type: CableApcExtension - components: - - pos: -1.5,32.5 - parent: 1 - type: Transform -- uid: 17975 - type: CableApcExtension - components: - - pos: -2.5,32.5 - parent: 1 - type: Transform -- uid: 17976 - type: CableApcExtension - components: - - pos: -3.5,32.5 - parent: 1 - type: Transform -- uid: 17977 - type: CableApcExtension - components: - - pos: -4.5,32.5 - parent: 1 - type: Transform -- uid: 17978 - type: CableApcExtension - components: - - pos: -5.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17979 - type: CableApcExtension - components: - - pos: -6.5,32.5 - parent: 1 - type: Transform -- uid: 17980 - type: CableApcExtension - components: - - pos: -7.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17981 - type: CableApcExtension - components: - - pos: -8.5,32.5 - parent: 1 - type: Transform -- uid: 17982 - type: CableApcExtension - components: - - pos: -8.5,31.5 - parent: 1 - type: Transform -- uid: 17983 - type: CableApcExtension - components: - - pos: -8.5,30.5 - parent: 1 - type: Transform -- uid: 17984 - type: CableApcExtension - components: - - pos: -8.5,29.5 - parent: 1 - type: Transform -- uid: 17985 - type: CableApcExtension - components: - - pos: -8.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17986 - type: CableApcExtension - components: - - pos: -8.5,27.5 - parent: 1 - type: Transform -- uid: 17987 - type: CableApcExtension - components: - - pos: -8.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17988 - type: CableApcExtension - components: - - pos: -12.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 17989 - type: PottedPlant27 - components: - - pos: 46.5,31.5 - parent: 1 - type: Transform -- uid: 17990 - type: CableApcExtension - components: - - pos: -8.5,23.5 - parent: 1 - type: Transform -- uid: 17991 - type: CableApcExtension - components: - - pos: -1.5,33.5 - parent: 1 - type: Transform -- uid: 17992 - type: CableApcExtension - components: - - pos: -1.5,34.5 - parent: 1 - type: Transform -- uid: 17993 - type: CableApcExtension - components: - - pos: -1.5,31.5 - parent: 1 - type: Transform -- uid: 17994 - type: WallReinforced - components: - - pos: -4.5,24.5 - parent: 1 - type: Transform -- uid: 17995 - type: WallReinforced - components: - - pos: -5.5,24.5 - parent: 1 - type: Transform -- uid: 17996 - type: WallReinforced - components: - - pos: -6.5,24.5 - parent: 1 - type: Transform -- uid: 17997 - type: WallReinforced - components: - - pos: -7.5,24.5 - parent: 1 - type: Transform -- uid: 17998 - type: WallReinforced - components: - - pos: -7.5,25.5 - parent: 1 - type: Transform -- uid: 17999 - type: AirlockMaintGlass - components: - - pos: -7.5,21.5 - parent: 1 - type: Transform -- uid: 18000 - type: CableApcExtension - components: - - pos: -15.5,26.5 - parent: 1 - type: Transform -- uid: 18001 - type: CableApcExtension - components: - - pos: -11.5,28.5 - parent: 1 - type: Transform -- uid: 18002 - type: CableApcExtension - components: - - pos: -11.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18003 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -16.5,25.5 - parent: 1 - type: Transform -- uid: 18004 - type: Catwalk - components: - - pos: -2.5,29.5 - parent: 1 - type: Transform -- uid: 18005 - type: AirlockMaintGlass - components: - - pos: -8.5,30.5 - parent: 1 - type: Transform -- uid: 18006 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -10.5,34.5 - parent: 1 - type: Transform -- uid: 18007 - type: CableHV - components: - - pos: -22.5,17.5 - parent: 1 - type: Transform -- uid: 18008 - type: WallSolid - components: - - pos: -21.5,16.5 - parent: 1 - type: Transform -- uid: 18009 - type: WallSolid - components: - - pos: -21.5,17.5 - parent: 1 - type: Transform -- uid: 18010 - type: WallSolid - components: - - pos: -21.5,18.5 - parent: 1 - type: Transform -- uid: 18011 - type: WallSolid - components: - - pos: -21.5,19.5 - parent: 1 - type: Transform -- uid: 18012 - type: WallSolid - components: - - pos: -17.5,15.5 - parent: 1 - type: Transform -- uid: 18013 - type: WallSolid - components: - - pos: -17.5,16.5 - parent: 1 - type: Transform -- uid: 18014 - type: WallSolid - components: - - pos: -17.5,17.5 - parent: 1 - type: Transform -- uid: 18015 - type: WallSolid - components: - - pos: -17.5,18.5 - parent: 1 - type: Transform -- uid: 18016 - type: AirlockMaintLocked - components: - - rot: -1.5707963267948966 rad - pos: -17.5,19.5 - parent: 1 - type: Transform -- uid: 18017 - type: WallSolid - components: - - pos: -21.5,22.5 - parent: 1 - type: Transform -- uid: 18018 - type: SignCargo - components: - - pos: -21.5,22.5 - parent: 1 - type: Transform -- uid: 18019 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18020 - type: FirelockGlass - components: - - pos: -21.5,20.5 - parent: 1 - type: Transform -- uid: 18021 - type: Window - components: - - pos: -21.5,24.5 - parent: 1 - type: Transform -- uid: 18022 - type: Window - components: - - pos: -21.5,23.5 - parent: 1 - type: Transform -- uid: 18023 - type: Grille - components: - - pos: -21.5,24.5 - parent: 1 - type: Transform -- uid: 18024 - type: Grille - components: - - pos: -21.5,23.5 - parent: 1 - type: Transform -- uid: 18025 - type: WallSolid - components: - - pos: -21.5,25.5 - parent: 1 - type: Transform -- uid: 18026 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,22.5 - parent: 1 - type: Transform -- uid: 18027 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -17.5,27.5 - parent: 1 - type: Transform -- uid: 18028 - type: WallSolid - components: - - pos: -17.5,22.5 - parent: 1 - type: Transform -- uid: 18029 - type: WallSolid - components: - - pos: -17.5,21.5 - parent: 1 - type: Transform -- uid: 18030 - type: WallSolid - components: - - pos: -17.5,20.5 - parent: 1 - type: Transform -- uid: 18031 - type: WallSolid - components: - - pos: -23.5,16.5 - parent: 1 - type: Transform -- uid: 18032 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -26.5,22.5 - parent: 1 - type: Transform -- uid: 18033 - type: AirlockCargoGlassLocked - components: - - pos: -29.5,22.5 - parent: 1 - type: Transform -- uid: 18034 - type: WallSolid - components: - - pos: -26.5,17.5 - parent: 1 - type: Transform -- uid: 18035 - type: WallSolid - components: - - pos: -26.5,26.5 - parent: 1 - type: Transform -- uid: 18036 - type: WallSolid - components: - - pos: -25.5,26.5 - parent: 1 - type: Transform -- uid: 18037 - type: WallSolid - components: - - pos: -26.5,20.5 - parent: 1 - type: Transform -- uid: 18038 - type: PlasticFlapsClear - components: - - pos: -26.5,25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18039 - type: WallSolid - components: - - pos: -27.5,26.5 - parent: 1 - type: Transform -- uid: 18040 - type: WallSolid - components: - - pos: -28.5,26.5 - parent: 1 - type: Transform -- uid: 18041 - type: ComputerCargoOrders - components: - - pos: -27.5,23.5 - parent: 1 - type: Transform -- uid: 18042 - type: Grille - components: - - pos: -26.5,21.5 - parent: 1 - type: Transform -- uid: 18043 - type: WindoorSecureCargoLocked - components: - - rot: -1.5707963267948966 rad - pos: -26.5,22.5 - parent: 1 - type: Transform -- uid: 18044 - type: AirlockCargoGlassLocked - components: - - name: cargo access - type: MetaData - - rot: -1.5707963267948966 rad - pos: -26.5,19.5 - parent: 1 - type: Transform -- uid: 18045 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -26.5,23.5 - parent: 1 - type: Transform -- uid: 18046 - type: WallSolid - components: - - pos: -26.5,24.5 - parent: 1 - type: Transform -- uid: 18047 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -26.5,23.5 - parent: 1 - type: Transform -- uid: 18048 - type: PlasticFlapsClear - components: - - pos: -29.5,25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18049 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -25.5,25.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18180 - Forward: - - port: Left - uid: 18180 - Off: - - port: Middle - uid: 18180 - type: SignalReceiver -- uid: 18050 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -26.5,25.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18180 - Forward: - - port: Left - uid: 18180 - Off: - - port: Middle - uid: 18180 - type: SignalReceiver -- uid: 18051 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -27.5,25.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18180 - Forward: - - port: Left - uid: 18180 - Off: - - port: Middle - uid: 18180 - type: SignalReceiver -- uid: 18052 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -28.5,25.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18180 - Forward: - - port: Left - uid: 18180 - Off: - - port: Middle - uid: 18180 - type: SignalReceiver -- uid: 18053 - type: Table - components: - - pos: -34.5,17.5 - parent: 1 - type: Transform -- uid: 18054 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -22.5,24.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18055 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -22.5,23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18056 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -22.5,22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18057 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,13.5 - parent: 1 - type: Transform -- uid: 18058 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,14.5 - parent: 1 - type: Transform -- uid: 18059 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,15.5 - parent: 1 - type: Transform -- uid: 18060 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,16.5 - parent: 1 - type: Transform -- uid: 18061 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,17.5 - parent: 1 - type: Transform -- uid: 18062 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,18.5 - parent: 1 - type: Transform -- uid: 18063 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,19.5 - parent: 1 - type: Transform -- uid: 18064 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,20.5 - parent: 1 - type: Transform -- uid: 18065 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,21.5 - parent: 1 - type: Transform -- uid: 18066 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -19.5,22.5 - parent: 1 - type: Transform -- uid: 18067 - type: DisposalJunction - components: - - pos: -19.5,23.5 - parent: 1 - type: Transform -- uid: 18068 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,23.5 - parent: 1 - type: Transform -- uid: 18069 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,23.5 - parent: 1 - type: Transform -- uid: 18070 - type: DisposalJunctionFlipped - components: - - rot: 1.5707963267948966 rad - pos: -22.5,23.5 - parent: 1 - type: Transform -- uid: 18071 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -22.5,24.5 - parent: 1 - type: Transform -- uid: 18072 - type: DisposalTrunk - components: - - pos: -22.5,25.5 - parent: 1 - type: Transform -- uid: 18073 - type: DisposalUnit - components: - - pos: -22.5,25.5 - parent: 1 - type: Transform -- uid: 18074 - type: CableApcExtension - components: - - pos: -68.5,-25.5 - parent: 1 - type: Transform -- uid: 18075 - type: CableApcExtension - components: - - pos: -68.5,-24.5 - parent: 1 - type: Transform -- uid: 18076 - type: CableApcExtension - components: - - pos: -68.5,-23.5 - parent: 1 - type: Transform -- uid: 18077 - type: CableApcExtension - components: - - pos: -69.5,-23.5 - parent: 1 - type: Transform -- uid: 18078 - type: CableApcExtension - components: - - pos: -70.5,-23.5 - parent: 1 - type: Transform -- uid: 18079 - type: CableApcExtension - components: - - pos: -71.5,-23.5 - parent: 1 - type: Transform -- uid: 18080 - type: CableApcExtension - components: - - pos: -72.5,-23.5 - parent: 1 - type: Transform -- uid: 18081 - type: CableApcExtension - components: - - pos: -73.5,-23.5 - parent: 1 - type: Transform -- uid: 18082 - type: CableApcExtension - components: - - pos: -72.5,-24.5 - parent: 1 - type: Transform -- uid: 18083 - type: CableApcExtension - components: - - pos: -72.5,-25.5 - parent: 1 - type: Transform -- uid: 18084 - type: CableApcExtension - components: - - pos: -74.5,-23.5 - parent: 1 - type: Transform -- uid: 18085 - type: CableApcExtension - components: - - pos: -74.5,-24.5 - parent: 1 - type: Transform -- uid: 18086 - type: Poweredlight - components: - - pos: -72.5,-23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18087 - type: AirlockMaintGlass - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-28.5 - parent: 1 - type: Transform -- uid: 18088 - type: Poweredlight - components: - - pos: -66.5,-30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18089 - type: PoweredSmallLight - components: - - pos: -51.5,-27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18090 - type: ChairFolding - components: - - pos: -27.5,-28.5 - parent: 1 - type: Transform -- uid: 18091 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18092 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -68.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18093 - type: WeldingFuelTankFull - components: - - pos: -38.5,-30.5 - parent: 1 - type: Transform -- uid: 18094 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18095 - type: WaterTankFull - components: - - pos: -39.5,-30.5 - parent: 1 - type: Transform -- uid: 18096 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18097 - type: Poweredlight - components: - - pos: -51.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18098 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18099 - type: Poweredlight - components: - - pos: -46.5,-19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18100 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18101 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18102 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18103 - type: Poweredlight - components: - - pos: -45.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18104 - type: CableApcExtension - components: - - pos: -42.5,-6.5 - parent: 1 - type: Transform -- uid: 18105 - type: CableApcExtension - components: - - pos: -43.5,-6.5 - parent: 1 - type: Transform -- uid: 18106 - type: CableApcExtension - components: - - pos: -44.5,-6.5 - parent: 1 - type: Transform -- uid: 18107 - type: CableApcExtension - components: - - pos: -45.5,-6.5 - parent: 1 - type: Transform -- uid: 18108 - type: CableApcExtension - components: - - pos: -46.5,-6.5 - parent: 1 - type: Transform -- uid: 18109 - type: CableApcExtension - components: - - pos: -47.5,-6.5 - parent: 1 - type: Transform -- uid: 18110 - type: CableApcExtension - components: - - pos: -48.5,-6.5 - parent: 1 - type: Transform -- uid: 18111 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18112 - type: Poweredlight - components: - - pos: -40.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18113 - type: AirAlarm - components: - - pos: -20.5,52.5 - parent: 1 - type: Transform - - devices: - - 13937 - - 25832 - - 25841 - - 25906 - - 25905 - - 25670 - - 25669 - - 25668 - - 25299 - - 25298 - - 25902 - - 25901 - type: DeviceList -- uid: 18114 - type: AirSensor - components: - - pos: -13.5,63.5 - parent: 1 - type: Transform -- uid: 18115 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18116 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18117 - type: AirSensor - components: - - pos: -2.5,59.5 - parent: 1 - type: Transform -- uid: 18118 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: -37.5,-4.5 - parent: 1 - type: Transform -- uid: 18119 - type: VendingMachineEngivend - components: - - flags: SessionSpecific - type: MetaData - - pos: -36.5,-4.5 - parent: 1 - type: Transform -- uid: 18120 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18121 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18122 - type: Poweredlight - components: - - pos: -4.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18123 - type: Grille - components: - - pos: -1.5,42.5 - parent: 1 - type: Transform -- uid: 18124 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 3.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18125 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18126 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18127 - type: ReinforcedWindow - components: - - pos: -3.5,42.5 - parent: 1 - type: Transform -- uid: 18128 - type: Poweredlight - components: - - pos: 1.5,21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18129 - type: Poweredlight - components: - - pos: -42.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18130 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18131 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 23.5,16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18132 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18133 - type: Poweredlight - components: - - pos: 25.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18134 - type: Poweredlight - components: - - pos: 38.5,2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18135 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 62.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18136 - type: Poweredlight - components: - - pos: 45.5,2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18137 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 49.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18138 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18139 - type: PoweredSmallLight - components: - - pos: -49.5,-42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18140 - type: PoweredSmallLight - components: - - pos: -49.5,-44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18141 - type: PoweredSmallLight - components: - - pos: -49.5,-46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18142 - type: PoweredSmallLight - components: - - pos: -49.5,-48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18143 - type: PoweredSmallLight - components: - - pos: -49.5,-50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18144 - type: PoweredSmallLight - components: - - pos: -49.5,-52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18145 - type: PoweredSmallLight - components: - - pos: -49.5,-54.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18146 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18147 - type: GasPipeStraight - components: - - pos: -20.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18148 - type: GasPipeStraight - components: - - pos: -20.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18149 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -20.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18150 - type: GasPipeStraight - components: - - pos: -20.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18151 - type: GasPipeStraight - components: - - pos: -20.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18152 - type: GasPipeStraight - components: - - pos: -20.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18153 - type: GasPipeStraight - components: - - pos: -18.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18154 - type: GasPipeStraight - components: - - pos: -18.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18155 - type: GasPipeStraight - components: - - pos: -18.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18156 - type: GasPipeStraight - components: - - pos: -18.5,16.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18157 - type: GasPipeStraight - components: - - pos: -18.5,17.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18158 - type: GasPipeStraight - components: - - pos: -18.5,18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18159 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -18.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18160 - type: GasPipeStraight - components: - - pos: -18.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18161 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18162 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18163 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18164 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18165 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18166 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -18.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18167 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18168 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18169 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18170 - type: GasPipeTJunction - components: - - pos: -24.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18171 - type: GasPipeTJunction - components: - - pos: -23.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18172 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -19.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18173 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18174 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -19.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18175 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -23.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18176 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -22.5,19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18177 - type: PowerCellRecharger - components: - - pos: -22.5,17.5 - parent: 1 - type: Transform -- uid: 18178 - type: BannerCargo - components: - - pos: -25.5,24.5 - parent: 1 - type: Transform -- uid: 18179 - type: BannerCargo - components: - - pos: -25.5,17.5 - parent: 1 - type: Transform -- uid: 18180 - type: TwoWayLever - components: - - pos: -28.5,24.5 - parent: 1 - type: Transform - - outputs: - Left: - - port: Forward - uid: 18188 - - port: Forward - uid: 18189 - - port: Forward - uid: 18052 - - port: Forward - uid: 18051 - - port: Forward - uid: 18050 - - port: Forward - uid: 18049 - Right: - - port: Reverse - uid: 18188 - - port: Reverse - uid: 18189 - - port: Reverse - uid: 18052 - - port: Reverse - uid: 18051 - - port: Reverse - uid: 18050 - - port: Reverse - uid: 18049 - Middle: - - port: Off - uid: 18188 - - port: Off - uid: 18189 - - port: Off - uid: 18052 - - port: Off - uid: 18051 - - port: Off - uid: 18050 - - port: Off - uid: 18049 - type: SignalTransmitter - - type: ItemCooldown -- uid: 18181 - type: Table - components: - - pos: -27.5,24.5 - parent: 1 - type: Transform -- uid: 18182 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -27.5,20.5 - parent: 1 - type: Transform -- uid: 18183 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -28.5,20.5 - parent: 1 - type: Transform -- uid: 18184 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -29.5,20.5 - parent: 1 - type: Transform -- uid: 18185 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -29.5,24.5 - parent: 1 - type: Transform -- uid: 18186 - type: ReinforcedWindow - components: - - pos: -29.5,21.5 - parent: 1 - type: Transform -- uid: 18187 - type: ReinforcedWindow - components: - - pos: -29.5,23.5 - parent: 1 - type: Transform -- uid: 18188 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -30.5,25.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18180 - Forward: - - port: Left - uid: 18180 - Off: - - port: Middle - uid: 18180 - type: SignalReceiver -- uid: 18189 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -29.5,25.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18180 - Forward: - - port: Left - uid: 18180 - Off: - - port: Middle - uid: 18180 - type: SignalReceiver -- uid: 18190 - type: ShuttersNormalOpen - components: - - pos: -30.5,27.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86606.164 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 22032 - Close: - - port: Off - uid: 22032 - Toggle: [] - type: SignalReceiver -- uid: 18191 - type: WallSolid - components: - - pos: -26.5,16.5 - parent: 1 - type: Transform -- uid: 18192 - type: WallSolid - components: - - pos: -27.5,16.5 - parent: 1 - type: Transform -- uid: 18193 - type: WallSolid - components: - - pos: -28.5,16.5 - parent: 1 - type: Transform -- uid: 18194 - type: WallSolid - components: - - pos: -29.5,16.5 - parent: 1 - type: Transform -- uid: 18195 - type: WallSolid - components: - - pos: -22.5,14.5 - parent: 1 - type: Transform -- uid: 18196 - type: ShuttersNormalOpen - components: - - pos: 29.5,9.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -56135.043 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28070 - Close: - - port: Off - uid: 28070 - Toggle: [] - type: SignalReceiver -- uid: 18197 - type: ReinforcedWindow - components: - - pos: -26.5,21.5 - parent: 1 - type: Transform -- uid: 18198 - type: Grille - components: - - pos: -29.5,23.5 - parent: 1 - type: Transform -- uid: 18199 - type: Grille - components: - - pos: -29.5,21.5 - parent: 1 - type: Transform -- uid: 18200 - type: ComputerCargoShuttle - components: - - rot: 3.141592653589793 rad - pos: -27.5,21.5 - parent: 1 - type: Transform -- uid: 18201 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -27.5,22.5 - parent: 1 - type: Transform -- uid: 18202 - type: BrbSign - components: - - pos: -28.403494,21.398111 - parent: 1 - type: Transform -- uid: 18203 - type: HandLabeler - components: - - pos: -28.559744,21.679361 - parent: 1 - type: Transform -- uid: 18204 - type: WallSolid - components: - - pos: -23.5,14.5 - parent: 1 - type: Transform -- uid: 18205 - type: WallSolid - components: - - pos: -24.5,16.5 - parent: 1 - type: Transform -- uid: 18206 - type: ReinforcedWindow - components: - - pos: -31.5,27.5 - parent: 1 - type: Transform -- uid: 18207 - type: AirlockQuartermasterGlassLocked - components: - - name: quartermasters office - type: MetaData - - pos: -32.5,27.5 - parent: 1 - type: Transform -- uid: 18208 - type: ReinforcedWindow - components: - - pos: -33.5,27.5 - parent: 1 - type: Transform -- uid: 18209 - type: ReinforcedWindow - components: - - pos: -30.5,27.5 - parent: 1 - type: Transform -- uid: 18210 - type: WallSolid - components: - - pos: -23.5,26.5 - parent: 1 - type: Transform -- uid: 18211 - type: WallReinforced - components: - - pos: -34.5,27.5 - parent: 1 - type: Transform -- uid: 18212 - type: WallReinforced - components: - - pos: -35.5,27.5 - parent: 1 - type: Transform -- uid: 18213 - type: WallReinforced - components: - - pos: -35.5,28.5 - parent: 1 - type: Transform -- uid: 18214 - type: WallSolid - components: - - pos: -36.5,34.5 - parent: 1 - type: Transform -- uid: 18215 - type: WallSolid - components: - - pos: -24.5,15.5 - parent: 1 - type: Transform -- uid: 18216 - type: WallSolid - components: - - pos: -34.5,16.5 - parent: 1 - type: Transform -- uid: 18217 - type: WallSolid - components: - - pos: -35.5,16.5 - parent: 1 - type: Transform -- uid: 18218 - type: AirlockCargoGlassLocked - components: - - name: cargo dock - type: MetaData - - pos: -35.5,22.5 - parent: 1 - type: Transform -- uid: 18219 - type: AirlockMaintLocked - components: - - pos: -24.5,26.5 - parent: 1 - type: Transform -- uid: 18220 - type: WallSolid - components: - - pos: -35.5,17.5 - parent: 1 - type: Transform -- uid: 18221 - type: ShuttersNormalOpen - components: - - pos: 34.5,9.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -56135.043 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28070 - Close: - - port: Off - uid: 28070 - Toggle: [] - type: SignalReceiver -- uid: 18222 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -39.5,18.5 - parent: 1 - type: Transform -- uid: 18223 - type: WallSolid - components: - - pos: -35.5,23.5 - parent: 1 - type: Transform -- uid: 18224 - type: WallSolid - components: - - pos: -35.5,24.5 - parent: 1 - type: Transform -- uid: 18225 - type: WallSolid - components: - - pos: -33.5,16.5 - parent: 1 - type: Transform -- uid: 18226 - type: WallSolid - components: - - pos: -32.5,16.5 - parent: 1 - type: Transform -- uid: 18227 - type: WallSolid - components: - - pos: -31.5,16.5 - parent: 1 - type: Transform -- uid: 18228 - type: WallSolid - components: - - pos: -30.5,16.5 - parent: 1 - type: Transform -- uid: 18229 - type: AirlockCargoGlassLocked - components: - - name: cargo dock - type: MetaData - - pos: -35.5,21.5 - parent: 1 - type: Transform -- uid: 18230 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -35.5,25.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18309 - Forward: - - port: Left - uid: 18309 - Off: - - port: Middle - uid: 18309 - type: SignalReceiver -- uid: 18231 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -34.5,25.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18309 - Forward: - - port: Left - uid: 18309 - Off: - - port: Middle - uid: 18309 - type: SignalReceiver -- uid: 18232 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -36.5,25.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18309 - Forward: - - port: Left - uid: 18309 - Off: - - port: Middle - uid: 18309 - type: SignalReceiver -- uid: 18233 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -37.5,25.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18309 - Forward: - - port: Left - uid: 18309 - Off: - - port: Middle - uid: 18309 - type: SignalReceiver -- uid: 18234 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -38.5,25.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18309 - Forward: - - port: Left - uid: 18309 - Off: - - port: Middle - uid: 18309 - type: SignalReceiver -- uid: 18235 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -23.5,17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18236 - type: Table - components: - - pos: -22.5,17.5 - parent: 1 - type: Transform -- uid: 18237 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -36.5,17.5 - parent: 1 - type: Transform -- uid: 18238 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -37.5,17.5 - parent: 1 - type: Transform -- uid: 18239 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -38.5,17.5 - parent: 1 - type: Transform -- uid: 18240 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -39.5,17.5 - parent: 1 - type: Transform -- uid: 18241 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -40.5,17.5 - parent: 1 - type: Transform -- uid: 18242 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -41.5,19.5 - parent: 1 - type: Transform -- uid: 18243 - type: TwoWayLever - components: - - pos: -41.5,17.5 - parent: 1 - type: Transform - - outputs: - Left: - - port: Forward - uid: 19486 - - port: Forward - uid: 29402 - - port: Forward - uid: 19310 - - port: Forward - uid: 18755 - - port: Forward - uid: 20011 - Right: - - port: Reverse - uid: 19486 - - port: Reverse - uid: 29402 - - port: Reverse - uid: 19310 - - port: Reverse - uid: 18755 - - port: Reverse - uid: 20011 - Middle: - - port: Off - uid: 19486 - - port: Off - uid: 29402 - - port: Off - uid: 19310 - - port: Off - uid: 18755 - - port: Off - uid: 20011 - type: SignalTransmitter -- uid: 18244 - type: AirlockCargoLocked - components: - - pos: -45.5,17.5 - parent: 1 - type: Transform -- uid: 18245 - type: Rack - components: - - pos: -44.5,16.5 - parent: 1 - type: Transform -- uid: 18246 - type: WallSolid - components: - - pos: -38.5,34.5 - parent: 1 - type: Transform -- uid: 18247 - type: WallSolid - components: - - pos: -39.5,32.5 - parent: 1 - type: Transform -- uid: 18248 - type: WallSolid - components: - - pos: -39.5,33.5 - parent: 1 - type: Transform -- uid: 18249 - type: WallReinforced - components: - - pos: -35.5,26.5 - parent: 1 - type: Transform -- uid: 18250 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -40.5,26.5 - parent: 1 - type: Transform -- uid: 18251 - type: Table - components: - - pos: -39.5,25.5 - parent: 1 - type: Transform -- uid: 18252 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -42.5,26.5 - parent: 1 - type: Transform -- uid: 18253 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -43.5,17.5 - parent: 1 - type: Transform -- uid: 18254 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -43.5,16.5 - parent: 1 - type: Transform -- uid: 18255 - type: WallReinforced - components: - - pos: -49.5,27.5 - parent: 1 - type: Transform -- uid: 18256 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -49.5,21.5 - parent: 1 - type: Transform -- uid: 18257 - type: WallReinforced - components: - - pos: -49.5,24.5 - parent: 1 - type: Transform -- uid: 18258 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -49.5,16.5 - parent: 1 - type: Transform -- uid: 18259 - type: WallReinforced - components: - - pos: -49.5,25.5 - parent: 1 - type: Transform -- uid: 18260 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -50.5,21.5 - parent: 1 - type: Transform -- uid: 18261 - type: AirAlarm - components: - - pos: -47.5,17.5 - parent: 1 - type: Transform - - devices: - - 20527 - - 18262 - - 20503 - - 20340 - - 20232 - type: DeviceList -- uid: 18262 - type: AirSensor - components: - - pos: -47.5,15.5 - parent: 1 - type: Transform -- uid: 18263 - type: PlushieSpaceLizard - components: - - pos: -44.46209,15.43692 - parent: 1 - type: Transform -- uid: 18264 - type: AirlockExternalGlassLocked - components: - - pos: -49.5,20.5 - parent: 1 - type: Transform -- uid: 18265 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -49.5,21.5 - parent: 1 - type: Transform -- uid: 18266 - type: WallSolid - components: - - pos: -51.5,21.5 - parent: 1 - type: Transform -- uid: 18267 - type: SignalSwitch - components: - - pos: -51.5,21.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 18825 - - port: Open - uid: 18826 - Off: - - port: Close - uid: 18825 - - port: Close - uid: 18826 - type: SignalTransmitter - - type: ItemCooldown -- uid: 18268 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -50.5,21.5 - parent: 1 - type: Transform -- uid: 18269 - type: AirlockSalvageGlassLocked - components: - - name: salvage magnet - type: MetaData - - pos: -46.5,27.5 - parent: 1 - type: Transform -- uid: 18270 - type: AirlockSalvageGlassLocked - components: - - name: salvage magnet - type: MetaData - - pos: -45.5,27.5 - parent: 1 - type: Transform -- uid: 18271 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -47.5,27.5 - parent: 1 - type: Transform -- uid: 18272 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -48.5,27.5 - parent: 1 - type: Transform -- uid: 18273 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -44.5,27.5 - parent: 1 - type: Transform -- uid: 18274 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -43.5,27.5 - parent: 1 - type: Transform -- uid: 18275 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -43.5,26.5 - parent: 1 - type: Transform -- uid: 18276 - type: WallReinforced - components: - - pos: -49.5,26.5 - parent: 1 - type: Transform -- uid: 18277 - type: WallReinforced - components: - - pos: -49.5,17.5 - parent: 1 - type: Transform -- uid: 18278 - type: WallReinforced - components: - - pos: -49.5,18.5 - parent: 1 - type: Transform -- uid: 18279 - type: AirlockExternalGlassLocked - components: - - pos: -49.5,22.5 - parent: 1 - type: Transform -- uid: 18280 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -53.5,20.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 18281 - type: AirlockExternalGlassShuttleLocked - components: - - rot: -1.5707963267948966 rad - pos: -53.5,22.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 1 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 18282 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -50.5,18.5 - parent: 1 - type: Transform -- uid: 18283 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -50.5,24.5 - parent: 1 - type: Transform -- uid: 18284 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -50.5,18.5 - parent: 1 - type: Transform -- uid: 18285 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -50.5,24.5 - parent: 1 - type: Transform -- uid: 18286 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -48.5,19.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18304 - Forward: - - port: Left - uid: 18304 - Off: - - port: Middle - uid: 18304 - type: SignalReceiver -- uid: 18287 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -49.5,19.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18304 - Forward: - - port: Left - uid: 18304 - Off: - - port: Middle - uid: 18304 - type: SignalReceiver -- uid: 18288 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -50.5,19.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18304 - Forward: - - port: Left - uid: 18304 - Off: - - port: Middle - uid: 18304 - type: SignalReceiver -- uid: 18289 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -51.5,19.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18304 - Forward: - - port: Left - uid: 18304 - Off: - - port: Middle - uid: 18304 - type: SignalReceiver -- uid: 18290 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -48.5,23.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18303 - Forward: - - port: Left - uid: 18303 - Off: - - port: Middle - uid: 18303 - type: SignalReceiver -- uid: 18291 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -49.5,23.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18303 - Forward: - - port: Left - uid: 18303 - Off: - - port: Middle - uid: 18303 - type: SignalReceiver -- uid: 18292 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -50.5,23.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18303 - Forward: - - port: Left - uid: 18303 - Off: - - port: Middle - uid: 18303 - type: SignalReceiver -- uid: 18293 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -51.5,23.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18303 - Forward: - - port: Left - uid: 18303 - Off: - - port: Middle - uid: 18303 - type: SignalReceiver -- uid: 18294 - type: BlastDoorExterior1 - components: - - pos: -49.5,19.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -266552.4 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 18300 - Close: - - port: Off - uid: 18300 - Toggle: [] - type: SignalReceiver -- uid: 18295 - type: BlastDoorExterior1 - components: - - pos: -49.5,23.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -266552.4 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 18300 - Close: - - port: Off - uid: 18300 - Toggle: [] - type: SignalReceiver -- uid: 18296 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -52.5,19.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18304 - Forward: - - port: Left - uid: 18304 - Off: - - port: Middle - uid: 18304 - type: SignalReceiver -- uid: 18297 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -53.5,19.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18304 - Forward: - - port: Left - uid: 18304 - Off: - - port: Middle - uid: 18304 - type: SignalReceiver -- uid: 18298 - type: WallReinforced - components: - - pos: -51.5,18.5 - parent: 1 - type: Transform -- uid: 18299 - type: WallReinforced - components: - - pos: -51.5,24.5 - parent: 1 - type: Transform -- uid: 18300 - type: SignalSwitch - components: - - pos: -49.5,24.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 18295 - - port: Open - uid: 18294 - Off: - - port: Close - uid: 18295 - - port: Close - uid: 18294 - type: SignalTransmitter -- uid: 18301 - type: Multitool - components: - - pos: -40.522213,25.653383 - parent: 1 - type: Transform -- uid: 18302 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -50.5,29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18303 - type: TwoWayLever - components: - - pos: -48.5,24.5 - parent: 1 - type: Transform - - outputs: - Left: - - port: Forward - uid: 18293 - - port: Forward - uid: 18292 - - port: Forward - uid: 18291 - - port: Forward - uid: 18290 - - port: Forward - uid: 18307 - - port: Forward - uid: 18308 - - port: Forward - uid: 18311 - - port: Forward - uid: 18312 - Right: - - port: Reverse - uid: 18293 - - port: Reverse - uid: 18292 - - port: Reverse - uid: 18291 - - port: Reverse - uid: 18290 - - port: Reverse - uid: 18307 - - port: Reverse - uid: 18308 - - port: Reverse - uid: 18311 - - port: Reverse - uid: 18312 - Middle: - - port: Off - uid: 18293 - - port: Off - uid: 18292 - - port: Off - uid: 18291 - - port: Off - uid: 18290 - - port: Off - uid: 18307 - - port: Off - uid: 18308 - - port: Off - uid: 18311 - - port: Off - uid: 18312 - type: SignalTransmitter -- uid: 18304 - type: TwoWayLever - components: - - pos: -48.5,18.5 - parent: 1 - type: Transform - - nextSignalLeft: True - type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 18289 - - port: Forward - uid: 18288 - - port: Forward - uid: 18287 - - port: Forward - uid: 18286 - - port: Forward - uid: 18305 - - port: Forward - uid: 18306 - - port: Forward - uid: 18297 - - port: Forward - uid: 18296 - Right: - - port: Reverse - uid: 18289 - - port: Reverse - uid: 18288 - - port: Reverse - uid: 18287 - - port: Reverse - uid: 18286 - - port: Reverse - uid: 18305 - - port: Reverse - uid: 18306 - - port: Reverse - uid: 18297 - - port: Reverse - uid: 18296 - Middle: - - port: Off - uid: 18289 - - port: Off - uid: 18288 - - port: Off - uid: 18287 - - port: Off - uid: 18286 - - port: Off - uid: 18305 - - port: Off - uid: 18306 - - port: Off - uid: 18297 - - port: Off - uid: 18296 - type: SignalTransmitter -- uid: 18305 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -47.5,19.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18304 - Forward: - - port: Left - uid: 18304 - Off: - - port: Middle - uid: 18304 - type: SignalReceiver -- uid: 18306 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -46.5,19.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18304 - Forward: - - port: Left - uid: 18304 - Off: - - port: Middle - uid: 18304 - type: SignalReceiver -- uid: 18307 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -47.5,23.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18303 - Forward: - - port: Left - uid: 18303 - Off: - - port: Middle - uid: 18303 - type: SignalReceiver -- uid: 18308 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -46.5,23.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18303 - Forward: - - port: Left - uid: 18303 - Off: - - port: Middle - uid: 18303 - type: SignalReceiver -- uid: 18309 - type: TwoWayLever - components: - - pos: -36.5,24.5 - parent: 1 - type: Transform - - nextSignalLeft: True - type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 18234 - - port: Forward - uid: 18233 - - port: Forward - uid: 18232 - - port: Forward - uid: 18230 - - port: Forward - uid: 18231 - Right: - - port: Reverse - uid: 18234 - - port: Reverse - uid: 18233 - - port: Reverse - uid: 18232 - - port: Reverse - uid: 18230 - - port: Reverse - uid: 18231 - Middle: - - port: Off - uid: 18234 - - port: Off - uid: 18233 - - port: Off - uid: 18232 - - port: Off - uid: 18230 - - port: Off - uid: 18231 - type: SignalTransmitter -- uid: 18310 - type: ComputerShuttleCargo - components: - - rot: 1.5707963267948966 rad - pos: -48.5,21.5 - parent: 1 - type: Transform -- uid: 18311 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -53.5,23.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18303 - Forward: - - port: Left - uid: 18303 - Off: - - port: Middle - uid: 18303 - type: SignalReceiver -- uid: 18312 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -52.5,23.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18303 - Forward: - - port: Left - uid: 18303 - Off: - - port: Middle - uid: 18303 - type: SignalReceiver -- uid: 18313 - type: PlasticFlapsAirtightClear - components: - - pos: -49.5,19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18314 - type: PlasticFlapsAirtightClear - components: - - pos: -49.5,23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18315 - type: PlasticFlapsAirtightOpaque - components: - - pos: -35.5,25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18316 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -22.5,18.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18317 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -35.5,19.5 - parent: 1 - type: Transform -- uid: 18318 - type: CableApcExtension - components: - - pos: -42.5,16.5 - parent: 1 - type: Transform -- uid: 18319 - type: Stool - components: - - rot: -1.5707963267948966 rad - pos: -33.5,13.5 - parent: 1 - type: Transform -- uid: 18320 - type: Table - components: - - pos: -40.5,25.5 - parent: 1 - type: Transform -- uid: 18321 - type: Table - components: - - pos: -43.5,25.5 - parent: 1 - type: Transform -- uid: 18322 - type: Table - components: - - pos: -42.5,25.5 - parent: 1 - type: Transform -- uid: 18323 - type: AirlockGlass - components: - - pos: -21.5,20.5 - parent: 1 - type: Transform -- uid: 18324 - type: ClothingMaskGas - components: - - pos: -70.49962,-26.436932 - parent: 1 - type: Transform -- uid: 18325 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: -70.53087,-25.890057 - parent: 1 - type: Transform -- uid: 18326 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-14.5 - parent: 1 - type: Transform -- uid: 18327 - type: PoweredlightEmpty - components: - - rot: 3.141592653589793 rad - pos: -39.5,-85.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18328 - type: LightTube - components: - - pos: -39.78844,-85.422134 - parent: 1 - type: Transform -- uid: 18329 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 14.5,32.5 - parent: 1 - type: Transform -- uid: 18330 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 13.5,32.5 - parent: 1 - type: Transform -- uid: 18331 - type: WallReinforced - components: - - pos: 4.5,34.5 - parent: 1 - type: Transform -- uid: 18332 - type: WallReinforced - components: - - pos: 5.5,29.5 - parent: 1 - type: Transform -- uid: 18333 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 8.5,29.5 - parent: 1 - type: Transform -- uid: 18334 - type: WallReinforced - components: - - pos: 12.5,33.5 - parent: 1 - type: Transform -- uid: 18335 - type: WallReinforced - components: - - pos: -3.5,28.5 - parent: 1 - type: Transform -- uid: 18336 - type: WallReinforced - components: - - pos: 58.5,41.5 - parent: 1 - type: Transform -- uid: 18337 - type: ReinforcedWindow - components: - - pos: 58.5,57.5 - parent: 1 - type: Transform -- uid: 18338 - type: ReinforcedWindow - components: - - pos: 50.5,58.5 - parent: 1 - type: Transform -- uid: 18339 - type: PosterContrabandRevolt - components: - - pos: 57.5,59.5 - parent: 1 - type: Transform -- uid: 18340 - type: Grille - components: - - pos: 58.5,57.5 - parent: 1 - type: Transform -- uid: 18341 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 2.5,32.5 - parent: 1 - type: Transform -- uid: 18342 - type: CableApcExtension - components: - - pos: -9.5,24.5 - parent: 1 - type: Transform -- uid: 18343 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 19.5,25.5 - parent: 1 - type: Transform -- uid: 18344 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 18.5,25.5 - parent: 1 - type: Transform -- uid: 18345 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 17.5,25.5 - parent: 1 - type: Transform -- uid: 18346 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 16.5,25.5 - parent: 1 - type: Transform -- uid: 18347 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 15.5,25.5 - parent: 1 - type: Transform -- uid: 18348 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 14.5,25.5 - parent: 1 - type: Transform -- uid: 18349 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 13.5,25.5 - parent: 1 - type: Transform -- uid: 18350 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 16.5,27.5 - parent: 1 - type: Transform -- uid: 18351 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 16.5,26.5 - parent: 1 - type: Transform -- uid: 18352 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: 10.5,24.5 - parent: 1 - type: Transform -- uid: 18353 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 9.5,24.5 - parent: 1 - type: Transform -- uid: 18354 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 8.5,24.5 - parent: 1 - type: Transform -- uid: 18355 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 7.5,24.5 - parent: 1 - type: Transform -- uid: 18356 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,24.5 - parent: 1 - type: Transform -- uid: 18357 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 5.5,24.5 - parent: 1 - type: Transform -- uid: 18358 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 4.5,24.5 - parent: 1 - type: Transform -- uid: 18359 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 3.5,24.5 - parent: 1 - type: Transform -- uid: 18360 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 2.5,24.5 - parent: 1 - type: Transform -- uid: 18361 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 1.5,24.5 - parent: 1 - type: Transform -- uid: 18362 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 0.5,24.5 - parent: 1 - type: Transform -- uid: 18363 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -3.5,23.5 - parent: 1 - type: Transform -- uid: 18364 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -4.5,23.5 - parent: 1 - type: Transform -- uid: 18365 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -5.5,23.5 - parent: 1 - type: Transform -- uid: 18366 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -6.5,23.5 - parent: 1 - type: Transform -- uid: 18367 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: -7.5,23.5 - parent: 1 - type: Transform -- uid: 18368 - type: CableApcExtension - components: - - pos: -10.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18369 - type: CableApcExtension - components: - - pos: -9.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18370 - type: CableApcExtension - components: - - pos: -9.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18371 - type: CableApcExtension - components: - - pos: -9.5,23.5 - parent: 1 - type: Transform -- uid: 18372 - type: CableApcExtension - components: - - pos: -14.5,26.5 - parent: 1 - type: Transform -- uid: 18373 - type: CableApcExtension - components: - - pos: -11.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18374 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -0.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18375 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -1.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18376 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -2.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18377 - type: TableCarpet - components: - - rot: 3.141592653589793 rad - pos: -1.5,31.5 - parent: 1 - type: Transform -- uid: 18378 - type: TableCarpet - components: - - rot: 3.141592653589793 rad - pos: -0.5,31.5 - parent: 1 - type: Transform -- uid: 18379 - type: TableCarpet - components: - - rot: 3.141592653589793 rad - pos: -0.5,30.5 - parent: 1 - type: Transform -- uid: 18380 - type: TableCarpet - components: - - rot: 3.141592653589793 rad - pos: -1.5,30.5 - parent: 1 - type: Transform -- uid: 18381 - type: DiceBag - components: - - pos: -0.45645034,30.694569 - parent: 1 - type: Transform -- uid: 18382 - type: d6Dice - components: - - pos: -1.2845753,31.100819 - parent: 1 - type: Transform -- uid: 18383 - type: FigureSpawner - components: - - pos: -0.5,31.5 - parent: 1 - type: Transform -- uid: 18384 - type: FigureSpawner - components: - - pos: -1.5,30.5 - parent: 1 - type: Transform -- uid: 18385 - type: Table - components: - - pos: -3.5,31.5 - parent: 1 - type: Transform -- uid: 18386 - type: Table - components: - - pos: -3.5,30.5 - parent: 1 - type: Transform -- uid: 18387 - type: Grille - components: - - pos: 50.5,56.5 - parent: 1 - type: Transform -- uid: 18388 - type: ClosetEmergencyFilledRandom - components: - - pos: 17.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18389 - type: Table - components: - - pos: 2.5,23.5 - parent: 1 - type: Transform -- uid: 18390 - type: Table - components: - - pos: 1.5,23.5 - parent: 1 - type: Transform -- uid: 18391 - type: Table - components: - - pos: -8.5,20.5 - parent: 1 - type: Transform -- uid: 18392 - type: Rack - components: - - pos: -3.5,21.5 - parent: 1 - type: Transform -- uid: 18393 - type: Rack - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform -- uid: 18394 - type: Rack - components: - - pos: -3.5,34.5 - parent: 1 - type: Transform -- uid: 18395 - type: Rack - components: - - pos: 15.5,34.5 - parent: 1 - type: Transform -- uid: 18396 - type: ClosetMaintenanceFilledRandom - components: - - pos: 11.5,25.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18397 - type: ClosetMaintenanceFilledRandom - components: - - pos: 0.5,34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18398 - type: TwoWayLever - components: - - pos: -11.5,28.5 - parent: 1 - type: Transform - - outputs: - Left: - - port: Forward - uid: 25624 - - port: Forward - uid: 25625 - - port: Forward - uid: 25626 - - port: Forward - uid: 25627 - - port: Forward - uid: 25628 - - port: Forward - uid: 24667 - - port: Forward - uid: 22294 - - port: Forward - uid: 22295 - - port: Forward - uid: 22296 - - port: Forward - uid: 25638 - - port: Forward - uid: 25637 - - port: Reverse - uid: 19148 - - port: Reverse - uid: 19147 - - port: Reverse - uid: 25640 - - port: Reverse - uid: 25641 - - port: Reverse - uid: 19146 - Right: - - port: Reverse - uid: 25624 - - port: Reverse - uid: 25625 - - port: Reverse - uid: 25626 - - port: Reverse - uid: 25627 - - port: Reverse - uid: 25628 - - port: Reverse - uid: 24667 - - port: Reverse - uid: 22294 - - port: Reverse - uid: 22295 - - port: Reverse - uid: 22296 - - port: Reverse - uid: 25638 - - port: Reverse - uid: 25637 - - port: Forward - uid: 19148 - - port: Forward - uid: 19147 - - port: Forward - uid: 25640 - - port: Forward - uid: 25641 - - port: Forward - uid: 19146 - Middle: - - port: Off - uid: 25624 - - port: Off - uid: 25625 - - port: Off - uid: 25626 - - port: Off - uid: 25627 - - port: Off - uid: 25628 - - port: Off - uid: 24667 - - port: Off - uid: 22294 - - port: Off - uid: 22295 - - port: Off - uid: 22296 - - port: Off - uid: 25638 - - port: Off - uid: 25637 - - port: Off - uid: 19148 - - port: Off - uid: 19147 - - port: Off - uid: 25640 - - port: Off - uid: 25641 - - port: Off - uid: 19146 - type: SignalTransmitter -- uid: 18399 - type: PlasticFlapsOpaque - components: - - rot: -1.5707963267948966 rad - pos: -9.5,25.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18400 - type: AirlockMaintGlass - components: - - rot: 3.141592653589793 rad - pos: -10.5,25.5 - parent: 1 - type: Transform -- uid: 18401 - type: AirlockMaintLocked - components: - - pos: -4.5,32.5 - parent: 1 - type: Transform -- uid: 18402 - type: AirlockMaintLocked - components: - - pos: 1.5,32.5 - parent: 1 - type: Transform -- uid: 18403 - type: FlashlightLantern - components: - - pos: 2.6315942,23.576332 - parent: 1 - type: Transform -- uid: 18404 - type: Cigarette - components: - - rot: -1.5707963267948966 rad - pos: 2.361197,23.616985 - parent: 1 - type: Transform -- uid: 18405 - type: CheapLighter - components: - - pos: 1.9080955,23.554485 - parent: 1 - type: Transform -- uid: 18406 - type: Paper - components: - - pos: 1.3868889,23.62748 - parent: 1 - type: Transform -- uid: 18407 - type: Paper - components: - - pos: 1.3868889,23.643105 - parent: 1 - type: Transform -- uid: 18408 - type: MaintenanceToolSpawner - components: - - pos: 0.5,23.5 - parent: 1 - type: Transform -- uid: 18409 - type: MaintenanceToolSpawner - components: - - pos: -3.5,34.5 - parent: 1 - type: Transform -- uid: 18410 - type: TableReinforced - components: - - pos: 17.5,32.5 - parent: 1 - type: Transform -- uid: 18411 - type: TableReinforced - components: - - pos: 17.5,31.5 - parent: 1 - type: Transform -- uid: 18412 - type: MaintenanceFluffSpawner - components: - - pos: -3.5,30.5 - parent: 1 - type: Transform -- uid: 18413 - type: ClothingShoesFlippers - components: - - pos: -3.5418344,21.579527 - parent: 1 - type: Transform -- uid: 18414 - type: ClothingShoeSlippersDuck - components: - - pos: 15.423054,34.567764 - parent: 1 - type: Transform -- uid: 18415 - type: Wrench - components: - - pos: -3.6165767,31.44955 - parent: 1 - type: Transform -- uid: 18416 - type: Screwdriver - components: - - pos: -8.398262,20.58135 - parent: 1 - type: Transform -- uid: 18417 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 15.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18418 - type: PoweredSmallLight - components: - - pos: 21.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18419 - type: CableApcExtension - components: - - pos: 21.5,22.5 - parent: 1 - type: Transform -- uid: 18420 - type: CableApcExtension - components: - - pos: 21.5,23.5 - parent: 1 - type: Transform -- uid: 18421 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 11.5,24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18422 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-36.5 - parent: 1 - type: Transform - - devices: - - 21682 - - 10953 - - 10857 - - invalid - - 11522 - - 11521 - type: DeviceList -- uid: 18423 - type: SignAi - components: - - pos: -3.5,60.5 - parent: 1 - type: Transform -- uid: 18424 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -8.5,27.5 - parent: 1 - type: Transform -- uid: 18425 - type: PoweredSmallLight - components: - - pos: -6.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18426 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18427 - type: ReinforcedWindow - components: - - pos: 58.5,58.5 - parent: 1 - type: Transform -- uid: 18428 - type: FoodTinPeachesTrash - components: - - rot: -1.5707963267948966 rad - pos: 50.40472,33.469906 - parent: 1 - type: Transform -- uid: 18429 - type: WallSolid - components: - - pos: -17.5,35.5 - parent: 1 - type: Transform -- uid: 18430 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,36.5 - parent: 1 - type: Transform -- uid: 18431 - type: WallSolid - components: - - pos: -17.5,33.5 - parent: 1 - type: Transform -- uid: 18432 - type: WallSolid - components: - - pos: -13.5,30.5 - parent: 1 - type: Transform -- uid: 18433 - type: WallSolid - components: - - pos: -13.5,29.5 - parent: 1 - type: Transform -- uid: 18434 - type: WallSolid - components: - - pos: -13.5,28.5 - parent: 1 - type: Transform -- uid: 18435 - type: WallSolid - components: - - pos: -14.5,28.5 - parent: 1 - type: Transform -- uid: 18436 - type: WallSolid - components: - - pos: -16.5,28.5 - parent: 1 - type: Transform -- uid: 18437 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-13.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 18438 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-11.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 18439 - type: SignalSwitch - components: - - pos: 50.5,48.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 20578 - - port: Close - uid: 20586 - Off: - - port: Close - uid: 20578 - - port: Open - uid: 20586 - type: SignalTransmitter -- uid: 18440 - type: SignalSwitch - components: - - pos: 52.5,48.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 20588 - - port: Close - uid: 20291 - Off: - - port: Close - uid: 20588 - - port: Open - uid: 20291 - type: SignalTransmitter -- uid: 18441 - type: BlastDoorExterior1 - components: - - pos: 51.5,44.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -228710.77 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: Off - uid: 20584 - - port: Off - uid: 20582 - - port: Off - uid: 20639 - Close: - - port: On - uid: 20584 - - port: On - uid: 20582 - - port: On - uid: 20639 - Toggle: [] - type: SignalReceiver -- uid: 18442 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 55.5,41.5 - parent: 1 - type: Transform -- uid: 18443 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-8.5 - parent: 1 - type: Transform -- uid: 18444 - type: BlastDoorExterior1 - components: - - pos: 54.5,45.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -228710.77 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 20582 - - port: Off - uid: 20299 - Close: - - port: Off - uid: 20582 - - port: On - uid: 20299 - Toggle: [] - type: SignalReceiver -- uid: 18445 - type: WallReinforced - components: - - pos: 54.5,51.5 - parent: 1 - type: Transform -- uid: 18446 - type: WallReinforced - components: - - pos: 57.5,60.5 - parent: 1 - type: Transform -- uid: 18447 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 61.5,43.5 - parent: 1 - type: Transform -- uid: 18448 - type: WallSolid - components: - - pos: 51.5,41.5 - parent: 1 - type: Transform -- uid: 18449 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 56.5,41.5 - parent: 1 - type: Transform -- uid: 18450 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 42.5,38.5 - parent: 1 - type: Transform -- uid: 18451 - type: Table - components: - - pos: -33.5,17.5 - parent: 1 - type: Transform -- uid: 18452 - type: Table - components: - - pos: -32.5,17.5 - parent: 1 - type: Transform -- uid: 18453 - type: Table - components: - - pos: -34.5,26.5 - parent: 1 - type: Transform -- uid: 18454 - type: TableReinforced - components: - - pos: -34.5,24.5 - parent: 1 - type: Transform -- uid: 18455 - type: Table - components: - - pos: -33.5,29.5 - parent: 1 - type: Transform -- uid: 18456 - type: WallReinforced - components: - - pos: -29.5,27.5 - parent: 1 - type: Transform -- uid: 18457 - type: WallReinforced - components: - - pos: -35.5,29.5 - parent: 1 - type: Transform -- uid: 18458 - type: WallSolid - components: - - pos: -22.5,26.5 - parent: 1 - type: Transform -- uid: 18459 - type: AtmosDeviceFanTiny - components: - - rot: -1.5707963267948966 rad - pos: -53.5,20.5 - parent: 1 - type: Transform -- uid: 18460 - type: AtmosDeviceFanTiny - components: - - rot: -1.5707963267948966 rad - pos: -53.5,22.5 - parent: 1 - type: Transform -- uid: 18461 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -38.5,18.5 - parent: 1 - type: Transform -- uid: 18462 - type: AirlockQuartermasterLocked - components: - - name: quartermasters office - type: MetaData - - pos: -29.5,28.5 - parent: 1 - type: Transform -- uid: 18463 - type: WallReinforced - components: - - pos: -29.5,29.5 - parent: 1 - type: Transform -- uid: 18464 - type: WallReinforced - components: - - pos: -29.5,30.5 - parent: 1 - type: Transform -- uid: 18465 - type: WallReinforced - components: - - pos: -29.5,31.5 - parent: 1 - type: Transform -- uid: 18466 - type: WallReinforced - components: - - pos: -29.5,32.5 - parent: 1 - type: Transform -- uid: 18467 - type: WallReinforced - components: - - pos: -35.5,30.5 - parent: 1 - type: Transform -- uid: 18468 - type: WallReinforced - components: - - pos: -35.5,31.5 - parent: 1 - type: Transform -- uid: 18469 - type: WallReinforced - components: - - pos: -35.5,32.5 - parent: 1 - type: Transform -- uid: 18470 - type: WallReinforced - components: - - pos: -34.5,32.5 - parent: 1 - type: Transform -- uid: 18471 - type: ReinforcedWindow - components: - - pos: -33.5,32.5 - parent: 1 - type: Transform -- uid: 18472 - type: ReinforcedWindow - components: - - pos: -32.5,32.5 - parent: 1 - type: Transform -- uid: 18473 - type: ReinforcedWindow - components: - - pos: -31.5,32.5 - parent: 1 - type: Transform -- uid: 18474 - type: WallReinforced - components: - - pos: -30.5,32.5 - parent: 1 - type: Transform -- uid: 18475 - type: WallSolid - components: - - pos: -24.5,14.5 - parent: 1 - type: Transform -- uid: 18476 - type: CableHV - components: - - pos: -21.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18477 - type: CableHV - components: - - pos: -20.5,17.5 - parent: 1 - type: Transform -- uid: 18478 - type: CableHV - components: - - pos: -22.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18479 - type: CableHV - components: - - pos: -23.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18480 - type: CableHV - components: - - pos: -23.5,15.5 - parent: 1 - type: Transform -- uid: 18481 - type: WallSolid - components: - - pos: -27.5,11.5 - parent: 1 - type: Transform -- uid: 18482 - type: WallSolid - components: - - pos: -28.5,11.5 - parent: 1 - type: Transform -- uid: 18483 - type: SubstationBasic - components: - - pos: -23.5,15.5 - parent: 1 - type: Transform -- uid: 18484 - type: AirlockEngineeringLocked - components: - - name: substation - type: MetaData - - pos: -21.5,15.5 - parent: 1 - type: Transform -- uid: 18485 - type: CableMV - components: - - pos: -23.5,15.5 - parent: 1 - type: Transform -- uid: 18486 - type: CableMV - components: - - pos: -22.5,15.5 - parent: 1 - type: Transform -- uid: 18487 - type: CableMV - components: - - pos: -21.5,15.5 - parent: 1 - type: Transform -- uid: 18488 - type: CableMV - components: - - pos: -20.5,15.5 - parent: 1 - type: Transform -- uid: 18489 - type: CableMV - components: - - pos: -19.5,15.5 - parent: 1 - type: Transform -- uid: 18490 - type: CableMV - components: - - pos: -19.5,16.5 - parent: 1 - type: Transform -- uid: 18491 - type: CableMV - components: - - pos: -19.5,17.5 - parent: 1 - type: Transform -- uid: 18492 - type: CableMV - components: - - pos: -19.5,18.5 - parent: 1 - type: Transform -- uid: 18493 - type: CableMV - components: - - pos: -19.5,19.5 - parent: 1 - type: Transform -- uid: 18494 - type: CableMV - components: - - pos: -19.5,20.5 - parent: 1 - type: Transform -- uid: 18495 - type: CableMV - components: - - pos: -19.5,21.5 - parent: 1 - type: Transform -- uid: 18496 - type: CableMV - components: - - pos: -20.5,21.5 - parent: 1 - type: Transform -- uid: 18497 - type: CableMV - components: - - pos: -21.5,21.5 - parent: 1 - type: Transform -- uid: 18498 - type: CableMV - components: - - pos: -22.5,21.5 - parent: 1 - type: Transform -- uid: 18499 - type: CableMV - components: - - pos: -23.5,21.5 - parent: 1 - type: Transform -- uid: 18500 - type: CableMV - components: - - pos: -23.5,22.5 - parent: 1 - type: Transform -- uid: 18501 - type: CableMV - components: - - pos: -23.5,23.5 - parent: 1 - type: Transform -- uid: 18502 - type: CableMV - components: - - pos: -23.5,24.5 - parent: 1 - type: Transform -- uid: 18503 - type: CableMV - components: - - pos: -23.5,25.5 - parent: 1 - type: Transform -- uid: 18504 - type: CableMV - components: - - pos: -23.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18505 - type: APCHighCapacity - components: - - pos: -23.5,26.5 - parent: 1 - type: Transform -- uid: 18506 - type: CableApcExtension - components: - - pos: -18.5,15.5 - parent: 1 - type: Transform -- uid: 18507 - type: CableApcExtension - components: - - pos: -18.5,16.5 - parent: 1 - type: Transform -- uid: 18508 - type: CableApcExtension - components: - - pos: -18.5,17.5 - parent: 1 - type: Transform -- uid: 18509 - type: CableApcExtension - components: - - pos: -18.5,18.5 - parent: 1 - type: Transform -- uid: 18510 - type: CableApcExtension - components: - - pos: -18.5,19.5 - parent: 1 - type: Transform -- uid: 18511 - type: CableApcExtension - components: - - pos: -18.5,20.5 - parent: 1 - type: Transform -- uid: 18512 - type: CableApcExtension - components: - - pos: -18.5,21.5 - parent: 1 - type: Transform -- uid: 18513 - type: CableApcExtension - components: - - pos: -19.5,21.5 - parent: 1 - type: Transform -- uid: 18514 - type: CableApcExtension - components: - - pos: -20.5,21.5 - parent: 1 - type: Transform -- uid: 18515 - type: CableApcExtension - components: - - pos: -21.5,21.5 - parent: 1 - type: Transform -- uid: 18516 - type: CableApcExtension - components: - - pos: -22.5,21.5 - parent: 1 - type: Transform -- uid: 18517 - type: CableApcExtension - components: - - pos: -23.5,21.5 - parent: 1 - type: Transform -- uid: 18518 - type: CableApcExtension - components: - - pos: -23.5,22.5 - parent: 1 - type: Transform -- uid: 18519 - type: CableApcExtension - components: - - pos: -23.5,23.5 - parent: 1 - type: Transform -- uid: 18520 - type: CableApcExtension - components: - - pos: -23.5,24.5 - parent: 1 - type: Transform -- uid: 18521 - type: CableApcExtension - components: - - pos: -23.5,25.5 - parent: 1 - type: Transform -- uid: 18522 - type: CableApcExtension - components: - - pos: -23.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18523 - type: CableHV - components: - - pos: -13.5,3.5 - parent: 1 - type: Transform -- uid: 18524 - type: CableHV - components: - - pos: -13.5,4.5 - parent: 1 - type: Transform -- uid: 18525 - type: CableHV - components: - - pos: -13.5,5.5 - parent: 1 - type: Transform -- uid: 18526 - type: CableHV - components: - - pos: -13.5,6.5 - parent: 1 - type: Transform -- uid: 18527 - type: CableHV - components: - - pos: -13.5,7.5 - parent: 1 - type: Transform -- uid: 18528 - type: CableHV - components: - - pos: -14.5,7.5 - parent: 1 - type: Transform -- uid: 18529 - type: CableHV - components: - - pos: -15.5,7.5 - parent: 1 - type: Transform -- uid: 18530 - type: CableHV - components: - - pos: -16.5,7.5 - parent: 1 - type: Transform -- uid: 18531 - type: CableHV - components: - - pos: -17.5,7.5 - parent: 1 - type: Transform -- uid: 18532 - type: CableHV - components: - - pos: -18.5,7.5 - parent: 1 - type: Transform -- uid: 18533 - type: CableHV - components: - - pos: -19.5,7.5 - parent: 1 - type: Transform -- uid: 18534 - type: CableHV - components: - - pos: -20.5,7.5 - parent: 1 - type: Transform -- uid: 18535 - type: CableHV - components: - - pos: -20.5,8.5 - parent: 1 - type: Transform -- uid: 18536 - type: CableHV - components: - - pos: -20.5,9.5 - parent: 1 - type: Transform -- uid: 18537 - type: CableHV - components: - - pos: -20.5,10.5 - parent: 1 - type: Transform -- uid: 18538 - type: CableHV - components: - - pos: -20.5,11.5 - parent: 1 - type: Transform -- uid: 18539 - type: CableHV - components: - - pos: -20.5,12.5 - parent: 1 - type: Transform -- uid: 18540 - type: CableHV - components: - - pos: -20.5,13.5 - parent: 1 - type: Transform -- uid: 18541 - type: CableHV - components: - - pos: -20.5,14.5 - parent: 1 - type: Transform -- uid: 18542 - type: CableHV - components: - - pos: -20.5,15.5 - parent: 1 - type: Transform -- uid: 18543 - type: CableHV - components: - - pos: -20.5,16.5 - parent: 1 - type: Transform -- uid: 18544 - type: Table - components: - - pos: -32.5,29.5 - parent: 1 - type: Transform -- uid: 18545 - type: Table - components: - - pos: -31.5,29.5 - parent: 1 - type: Transform -- uid: 18546 - type: ChairOfficeDark - components: - - pos: -32.5,30.5 - parent: 1 - type: Transform -- uid: 18547 - type: SpawnPointQuartermaster - components: - - pos: -31.5,30.5 - parent: 1 - type: Transform -- uid: 18548 - type: LockerQuarterMasterFilled - components: - - pos: -34.5,31.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18549 - type: SpaceQuartz1 - components: - - pos: -31.635456,29.591772 - parent: 1 - type: Transform -- uid: 18550 - type: ComputerCargoOrders - components: - - rot: 3.141592653589793 rad - pos: -30.5,29.5 - parent: 1 - type: Transform -- uid: 18551 - type: Bed - components: - - pos: -30.5,31.5 - parent: 1 - type: Transform -- uid: 18552 - type: BedsheetQM - components: - - rot: 3.141592653589793 rad - pos: -30.5,31.5 - parent: 1 - type: Transform -- uid: 18553 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -34.5,31.5 - parent: 1 - type: Transform -- uid: 18554 - type: CarpetOrange - components: - - pos: -34.5,30.5 - parent: 1 - type: Transform -- uid: 18555 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -34.5,29.5 - parent: 1 - type: Transform -- uid: 18556 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -33.5,31.5 - parent: 1 - type: Transform -- uid: 18557 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -33.5,30.5 - parent: 1 - type: Transform -- uid: 18558 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -33.5,29.5 - parent: 1 - type: Transform -- uid: 18559 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -32.5,31.5 - parent: 1 - type: Transform -- uid: 18560 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -32.5,30.5 - parent: 1 - type: Transform -- uid: 18561 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -32.5,29.5 - parent: 1 - type: Transform -- uid: 18562 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -31.5,31.5 - parent: 1 - type: Transform -- uid: 18563 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -31.5,30.5 - parent: 1 - type: Transform -- uid: 18564 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -31.5,29.5 - parent: 1 - type: Transform -- uid: 18565 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -30.5,31.5 - parent: 1 - type: Transform -- uid: 18566 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -30.5,30.5 - parent: 1 - type: Transform -- uid: 18567 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: -30.5,29.5 - parent: 1 - type: Transform -- uid: 18568 - type: HandLabeler - components: - - rot: 3.141592653589793 rad - pos: -32.198154,29.656374 - parent: 1 - type: Transform -- uid: 18569 - type: Multitool - components: - - rot: 3.141592653589793 rad - pos: -32.80296,29.595348 - parent: 1 - type: Transform -- uid: 18570 - type: Lamp - components: - - rot: 1.5707963267948966 rad - pos: -33.336697,29.910027 - parent: 1 - type: Transform -- uid: 18571 - type: DrinkMugOne - components: - - pos: -31.248182,29.795187 - parent: 1 - type: Transform -- uid: 18572 - type: DogBed - components: - - name: racoon bed - type: MetaData - - pos: -33.5,31.5 - parent: 1 - type: Transform -- uid: 18573 - type: SpawnMobRaccoonMorticia - components: - - pos: -33.5,31.5 - parent: 1 - type: Transform -- uid: 18574 - type: Grille - components: - - pos: -33.5,27.5 - parent: 1 - type: Transform -- uid: 18575 - type: Grille - components: - - pos: -33.5,32.5 - parent: 1 - type: Transform -- uid: 18576 - type: Grille - components: - - pos: -32.5,32.5 - parent: 1 - type: Transform -- uid: 18577 - type: Grille - components: - - pos: -31.5,32.5 - parent: 1 - type: Transform -- uid: 18578 - type: Grille - components: - - pos: -31.5,27.5 - parent: 1 - type: Transform -- uid: 18579 - type: Grille - components: - - pos: -30.5,27.5 - parent: 1 - type: Transform -- uid: 18580 - type: CableApcExtension - components: - - pos: -24.5,21.5 - parent: 1 - type: Transform -- uid: 18581 - type: CableApcExtension - components: - - pos: -25.5,21.5 - parent: 1 - type: Transform -- uid: 18582 - type: CableApcExtension - components: - - pos: -26.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18583 - type: CableApcExtension - components: - - pos: -27.5,21.5 - parent: 1 - type: Transform -- uid: 18584 - type: CableApcExtension - components: - - pos: -28.5,21.5 - parent: 1 - type: Transform -- uid: 18585 - type: CableApcExtension - components: - - pos: -28.5,22.5 - parent: 1 - type: Transform -- uid: 18586 - type: CableApcExtension - components: - - pos: -29.5,22.5 - parent: 1 - type: Transform -- uid: 18587 - type: CableApcExtension - components: - - pos: -30.5,22.5 - parent: 1 - type: Transform -- uid: 18588 - type: CableApcExtension - components: - - pos: -31.5,22.5 - parent: 1 - type: Transform -- uid: 18589 - type: CableApcExtension - components: - - pos: -32.5,22.5 - parent: 1 - type: Transform -- uid: 18590 - type: CableApcExtension - components: - - pos: -32.5,23.5 - parent: 1 - type: Transform -- uid: 18591 - type: CableApcExtension - components: - - pos: -32.5,24.5 - parent: 1 - type: Transform -- uid: 18592 - type: CableApcExtension - components: - - pos: -32.5,25.5 - parent: 1 - type: Transform -- uid: 18593 - type: CableApcExtension - components: - - pos: -32.5,26.5 - parent: 1 - type: Transform -- uid: 18594 - type: CableApcExtension - components: - - pos: -32.5,27.5 - parent: 1 - type: Transform -- uid: 18595 - type: CableApcExtension - components: - - pos: -31.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18596 - type: CableApcExtension - components: - - pos: -30.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18597 - type: CableApcExtension - components: - - pos: -33.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18598 - type: CableApcExtension - components: - - pos: -32.5,28.5 - parent: 1 - type: Transform -- uid: 18599 - type: CableApcExtension - components: - - pos: -32.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18600 - type: CableApcExtension - components: - - pos: -32.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18601 - type: CableApcExtension - components: - - pos: -33.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18602 - type: CableApcExtension - components: - - pos: -33.5,25.5 - parent: 1 - type: Transform -- uid: 18603 - type: CableApcExtension - components: - - pos: -34.5,25.5 - parent: 1 - type: Transform -- uid: 18604 - type: CableApcExtension - components: - - pos: -35.5,25.5 - parent: 1 - type: Transform -- uid: 18605 - type: CableApcExtension - components: - - pos: -36.5,25.5 - parent: 1 - type: Transform -- uid: 18606 - type: CableApcExtension - components: - - pos: -37.5,25.5 - parent: 1 - type: Transform -- uid: 18607 - type: CableApcExtension - components: - - pos: -38.5,25.5 - parent: 1 - type: Transform -- uid: 18608 - type: CableApcExtension - components: - - pos: -38.5,24.5 - parent: 1 - type: Transform -- uid: 18609 - type: CableApcExtension - components: - - pos: -38.5,23.5 - parent: 1 - type: Transform -- uid: 18610 - type: CableApcExtension - components: - - pos: -38.5,22.5 - parent: 1 - type: Transform -- uid: 18611 - type: CableApcExtension - components: - - pos: -39.5,22.5 - parent: 1 - type: Transform -- uid: 18612 - type: CableApcExtension - components: - - pos: -40.5,22.5 - parent: 1 - type: Transform -- uid: 18613 - type: CableApcExtension - components: - - pos: -41.5,22.5 - parent: 1 - type: Transform -- uid: 18614 - type: CableApcExtension - components: - - pos: -42.5,22.5 - parent: 1 - type: Transform -- uid: 18615 - type: CableApcExtension - components: - - pos: -43.5,22.5 - parent: 1 - type: Transform -- uid: 18616 - type: CableApcExtension - components: - - pos: -44.5,22.5 - parent: 1 - type: Transform -- uid: 18617 - type: CableApcExtension - components: - - pos: -45.5,22.5 - parent: 1 - type: Transform -- uid: 18618 - type: CableApcExtension - components: - - pos: -46.5,22.5 - parent: 1 - type: Transform -- uid: 18619 - type: CableApcExtension - components: - - pos: -47.5,22.5 - parent: 1 - type: Transform -- uid: 18620 - type: CableApcExtension - components: - - pos: -48.5,22.5 - parent: 1 - type: Transform -- uid: 18621 - type: CableApcExtension - components: - - pos: -49.5,22.5 - parent: 1 - type: Transform -- uid: 18622 - type: CableApcExtension - components: - - pos: -50.5,22.5 - parent: 1 - type: Transform -- uid: 18623 - type: CableApcExtension - components: - - pos: -32.5,21.5 - parent: 1 - type: Transform -- uid: 18624 - type: CableApcExtension - components: - - pos: -32.5,20.5 - parent: 1 - type: Transform -- uid: 18625 - type: CableApcExtension - components: - - pos: -32.5,19.5 - parent: 1 - type: Transform -- uid: 18626 - type: CableApcExtension - components: - - pos: -32.5,18.5 - parent: 1 - type: Transform -- uid: 18627 - type: CableApcExtension - components: - - pos: -33.5,18.5 - parent: 1 - type: Transform -- uid: 18628 - type: CableApcExtension - components: - - pos: -34.5,18.5 - parent: 1 - type: Transform -- uid: 18629 - type: CableApcExtension - components: - - pos: -35.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18630 - type: CableApcExtension - components: - - pos: -36.5,18.5 - parent: 1 - type: Transform -- uid: 18631 - type: CableApcExtension - components: - - pos: -37.5,18.5 - parent: 1 - type: Transform -- uid: 18632 - type: CableApcExtension - components: - - pos: -38.5,18.5 - parent: 1 - type: Transform -- uid: 18633 - type: CableApcExtension - components: - - pos: -39.5,18.5 - parent: 1 - type: Transform -- uid: 18634 - type: CableApcExtension - components: - - pos: -40.5,18.5 - parent: 1 - type: Transform -- uid: 18635 - type: CableApcExtension - components: - - pos: -41.5,18.5 - parent: 1 - type: Transform -- uid: 18636 - type: CableApcExtension - components: - - pos: -42.5,18.5 - parent: 1 - type: Transform -- uid: 18637 - type: CableApcExtension - components: - - pos: -43.5,18.5 - parent: 1 - type: Transform -- uid: 18638 - type: CableApcExtension - components: - - pos: -44.5,18.5 - parent: 1 - type: Transform -- uid: 18639 - type: CableApcExtension - components: - - pos: -45.5,18.5 - parent: 1 - type: Transform -- uid: 18640 - type: CableApcExtension - components: - - pos: -46.5,18.5 - parent: 1 - type: Transform -- uid: 18641 - type: CableApcExtension - components: - - pos: -47.5,18.5 - parent: 1 - type: Transform -- uid: 18642 - type: CableApcExtension - components: - - pos: -37.5,19.5 - parent: 1 - type: Transform -- uid: 18643 - type: CableApcExtension - components: - - pos: -37.5,20.5 - parent: 1 - type: Transform -- uid: 18644 - type: CableApcExtension - components: - - pos: -37.5,21.5 - parent: 1 - type: Transform -- uid: 18645 - type: CableApcExtension - components: - - pos: -36.5,21.5 - parent: 1 - type: Transform -- uid: 18646 - type: CableApcExtension - components: - - pos: -36.5,22.5 - parent: 1 - type: Transform -- uid: 18647 - type: CableApcExtension - components: - - pos: -47.5,19.5 - parent: 1 - type: Transform -- uid: 18648 - type: CableApcExtension - components: - - pos: -48.5,19.5 - parent: 1 - type: Transform -- uid: 18649 - type: CableApcExtension - components: - - pos: -49.5,19.5 - parent: 1 - type: Transform -- uid: 18650 - type: CableApcExtension - components: - - pos: -50.5,19.5 - parent: 1 - type: Transform -- uid: 18651 - type: CableApcExtension - components: - - pos: -46.5,23.5 - parent: 1 - type: Transform -- uid: 18652 - type: CableApcExtension - components: - - pos: -46.5,24.5 - parent: 1 - type: Transform -- uid: 18653 - type: CableApcExtension - components: - - pos: -46.5,25.5 - parent: 1 - type: Transform -- uid: 18654 - type: CableApcExtension - components: - - pos: -46.5,26.5 - parent: 1 - type: Transform -- uid: 18655 - type: ShuttersNormalOpen - components: - - pos: -31.5,27.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86606.164 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 22032 - Close: - - port: Off - uid: 22032 - Toggle: [] - type: SignalReceiver -- uid: 18656 - type: CableApcExtension - components: - - pos: -43.5,19.5 - parent: 1 - type: Transform -- uid: 18657 - type: CableApcExtension - components: - - pos: -41.5,19.5 - parent: 1 - type: Transform -- uid: 18658 - type: CableApcExtension - components: - - pos: -31.5,25.5 - parent: 1 - type: Transform -- uid: 18659 - type: CableApcExtension - components: - - pos: -30.5,25.5 - parent: 1 - type: Transform -- uid: 18660 - type: CableApcExtension - components: - - pos: -29.5,25.5 - parent: 1 - type: Transform -- uid: 18661 - type: CableApcExtension - components: - - pos: -28.5,25.5 - parent: 1 - type: Transform -- uid: 18662 - type: CableApcExtension - components: - - pos: -27.5,25.5 - parent: 1 - type: Transform -- uid: 18663 - type: CableApcExtension - components: - - pos: -25.5,20.5 - parent: 1 - type: Transform -- uid: 18664 - type: CableApcExtension - components: - - pos: -25.5,19.5 - parent: 1 - type: Transform -- uid: 18665 - type: CableApcExtension - components: - - pos: -25.5,18.5 - parent: 1 - type: Transform -- uid: 18666 - type: CableApcExtension - components: - - pos: -26.5,18.5 - parent: 1 - type: Transform -- uid: 18667 - type: CableApcExtension - components: - - pos: -27.5,18.5 - parent: 1 - type: Transform -- uid: 18668 - type: CableApcExtension - components: - - pos: -29.5,18.5 - parent: 1 - type: Transform -- uid: 18669 - type: CableApcExtension - components: - - pos: -28.5,18.5 - parent: 1 - type: Transform -- uid: 18670 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18671 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18672 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18673 - type: GasPipeTJunction - components: - - pos: -28.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18674 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -28.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18675 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18676 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18677 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18678 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18679 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18680 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18681 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18682 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18683 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18684 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18685 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18686 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18687 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18688 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18689 - type: GasPipeStraight - components: - - pos: -32.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18690 - type: GasPipeStraight - components: - - pos: -32.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18691 - type: GasPipeStraight - components: - - pos: -32.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18692 - type: GasPipeStraight - components: - - pos: -32.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18693 - type: GasPipeStraight - components: - - pos: -33.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18694 - type: GasPipeStraight - components: - - pos: -33.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18695 - type: GasPipeStraight - components: - - pos: -33.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18696 - type: GasPipeStraight - components: - - pos: -33.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18697 - type: GasPipeStraight - components: - - pos: -33.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18698 - type: GasPipeStraight - components: - - pos: -33.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18699 - type: GasPipeStraight - components: - - pos: -33.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18700 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -40.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18701 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -41.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18702 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18703 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18704 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18705 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18706 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18707 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -39.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18708 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18709 - type: GasPipeStraight - components: - - pos: -40.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18710 - type: GasPipeStraight - components: - - pos: -40.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18711 - type: GasPipeStraight - components: - - pos: -40.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18712 - type: GasPipeStraight - components: - - pos: -40.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18713 - type: GasPipeStraight - components: - - pos: -41.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18714 - type: GasPipeStraight - components: - - pos: -41.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18715 - type: GasPipeStraight - components: - - pos: -41.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18716 - type: GasPipeStraight - components: - - pos: -41.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18717 - type: GasPipeStraight - components: - - pos: -41.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18718 - type: GasPipeStraight - components: - - pos: -41.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18719 - type: GasPipeStraight - components: - - pos: -41.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18720 - type: GasVentScrubber - components: - - pos: -28.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18721 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -33.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18722 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -42.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18723 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -28.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18724 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -32.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18725 - type: GasVentPump - components: - - pos: -32.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18726 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -41.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18727 - type: GasVentScrubber - components: - - pos: -33.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18728 - type: FirelockGlass - components: - - pos: -21.5,21.5 - parent: 1 - type: Transform -- uid: 18729 - type: WallSolid - components: - - pos: -29.5,26.5 - parent: 1 - type: Transform -- uid: 18730 - type: CableApcExtension - components: - - pos: -18.5,22.5 - parent: 1 - type: Transform -- uid: 18731 - type: CableApcExtension - components: - - pos: -18.5,23.5 - parent: 1 - type: Transform -- uid: 18732 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -24.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18733 - type: Poweredlight - components: - - pos: -22.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18734 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18735 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18736 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,22.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18737 - type: CableApcExtension - components: - - pos: -24.5,18.5 - parent: 1 - type: Transform -- uid: 18738 - type: Poweredlight - components: - - pos: -27.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18739 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18740 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 35.5,7.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -56135.043 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28070 - Close: - - port: Off - uid: 28070 - Toggle: [] - type: SignalReceiver -- uid: 18741 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -29.5,17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18742 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18743 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -39.5,18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18744 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: -17.5,29.5 - parent: 1 - type: Transform -- uid: 18745 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18746 - type: Poweredlight - components: - - pos: -43.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18747 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: -17.5,30.5 - parent: 1 - type: Transform -- uid: 18748 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18749 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 18750 - type: CrateEmergencyFire - components: - - pos: -38.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18751 - type: SignSpace - components: - - pos: -49.5,18.5 - parent: 1 - type: Transform -- uid: 18752 - type: PartRodMetal - components: - - pos: -39.68701,25.670773 - parent: 1 - type: Transform -- uid: 18753 - type: CableApcExtension - components: - - pos: -41.5,27.5 - parent: 1 - type: Transform -- uid: 18754 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -41.5,13.5 - parent: 1 - type: Transform -- uid: 18755 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -42.5,14.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18243 - Forward: - - port: Left - uid: 18243 - Off: - - port: Middle - uid: 18243 - type: SignalReceiver -- uid: 18756 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -37.5,18.5 - parent: 1 - type: Transform -- uid: 18757 - type: ToolboxEmergencyFilled - components: - - pos: 54.54983,-30.496807 - parent: 1 - type: Transform -- uid: 18758 - type: OreProcessor - components: - - pos: -41.5,26.5 - parent: 1 - type: Transform -- uid: 18759 - type: CrateEmptySpawner - components: - - pos: -43.5,23.5 - parent: 1 - type: Transform -- uid: 18760 - type: CrateEmptySpawner - components: - - pos: -44.5,22.5 - parent: 1 - type: Transform -- uid: 18761 - type: CrateEmptySpawner - components: - - pos: -40.5,20.5 - parent: 1 - type: Transform -- uid: 18762 - type: CrateEmptySpawner - components: - - pos: -38.5,19.5 - parent: 1 - type: Transform -- uid: 18763 - type: WallSolid - components: - - pos: -28.5,14.5 - parent: 1 - type: Transform -- uid: 18764 - type: WallSolid - components: - - pos: -28.5,13.5 - parent: 1 - type: Transform -- uid: 18765 - type: WallSolid - components: - - pos: -28.5,15.5 - parent: 1 - type: Transform -- uid: 18766 - type: ReinforcedWindow - components: - - pos: -49.5,29.5 - parent: 1 - type: Transform -- uid: 18767 - type: PlasticFlapsAirtightClear - components: - - pos: -49.5,30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18768 - type: PlasticFlapsAirtightClear - components: - - pos: -49.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18769 - type: ReinforcedWindow - components: - - pos: -49.5,35.5 - parent: 1 - type: Transform -- uid: 18770 - type: WallReinforced - components: - - pos: -49.5,32.5 - parent: 1 - type: Transform -- uid: 18771 - type: AirlockExternalGlassLocked - components: - - pos: -49.5,33.5 - parent: 1 - type: Transform -- uid: 18772 - type: AirlockExternalGlassLocked - components: - - pos: -49.5,31.5 - parent: 1 - type: Transform -- uid: 18773 - type: ReinforcedWindow - components: - - pos: -52.5,35.5 - parent: 1 - type: Transform -- uid: 18774 - type: ReinforcedWindow - components: - - pos: -52.5,29.5 - parent: 1 - type: Transform -- uid: 18775 - type: WallReinforced - components: - - pos: -50.5,32.5 - parent: 1 - type: Transform -- uid: 18776 - type: WallReinforced - components: - - pos: -51.5,32.5 - parent: 1 - type: Transform -- uid: 18777 - type: WallReinforced - components: - - pos: -52.5,32.5 - parent: 1 - type: Transform -- uid: 18778 - type: AirlockExternalGlassLocked - components: - - pos: -52.5,33.5 - parent: 1 - type: Transform -- uid: 18779 - type: AirlockExternalGlassLocked - components: - - pos: -52.5,31.5 - parent: 1 - type: Transform -- uid: 18780 - type: BlastDoorExterior1 - components: - - pos: -52.5,34.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -60679.543 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 28881 - Close: - - port: Off - uid: 28881 - Toggle: [] - type: SignalReceiver -- uid: 18781 - type: BlastDoorExterior1 - components: - - pos: -52.5,30.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -60651.83 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 12917 - Close: - - port: Off - uid: 12917 - Toggle: [] - type: SignalReceiver -- uid: 18782 - type: WallReinforced - components: - - pos: -49.5,28.5 - parent: 1 - type: Transform -- uid: 18783 - type: WallReinforced - components: - - pos: -50.5,28.5 - parent: 1 - type: Transform -- uid: 18784 - type: WallReinforced - components: - - pos: -51.5,28.5 - parent: 1 - type: Transform -- uid: 18785 - type: WallReinforced - components: - - pos: -52.5,28.5 - parent: 1 - type: Transform -- uid: 18786 - type: WallReinforced - components: - - pos: -49.5,36.5 - parent: 1 - type: Transform -- uid: 18787 - type: WallReinforced - components: - - pos: -50.5,36.5 - parent: 1 - type: Transform -- uid: 18788 - type: WallReinforced - components: - - pos: -51.5,36.5 - parent: 1 - type: Transform -- uid: 18789 - type: WallReinforced - components: - - pos: -52.5,36.5 - parent: 1 - type: Transform -- uid: 18790 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -51.5,30.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18808 - Forward: - - port: Left - uid: 18808 - Off: - - port: Middle - uid: 18808 - type: SignalReceiver -- uid: 18791 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -52.5,30.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18808 - Forward: - - port: Left - uid: 18808 - Off: - - port: Middle - uid: 18808 - type: SignalReceiver -- uid: 18792 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -50.5,30.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18808 - Forward: - - port: Left - uid: 18808 - Off: - - port: Middle - uid: 18808 - type: SignalReceiver -- uid: 18793 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -49.5,30.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18808 - Forward: - - port: Left - uid: 18808 - Off: - - port: Middle - uid: 18808 - type: SignalReceiver -- uid: 18794 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -48.5,30.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18808 - Forward: - - port: Left - uid: 18808 - Off: - - port: Middle - uid: 18808 - type: SignalReceiver -- uid: 18795 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -52.5,34.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18809 - Forward: - - port: Left - uid: 18809 - Off: - - port: Middle - uid: 18809 - type: SignalReceiver -- uid: 18796 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -51.5,34.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18809 - Forward: - - port: Left - uid: 18809 - Off: - - port: Middle - uid: 18809 - type: SignalReceiver -- uid: 18797 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -50.5,34.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18809 - Forward: - - port: Left - uid: 18809 - Off: - - port: Middle - uid: 18809 - type: SignalReceiver -- uid: 18798 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -49.5,34.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18809 - Forward: - - port: Left - uid: 18809 - Off: - - port: Middle - uid: 18809 - type: SignalReceiver -- uid: 18799 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -48.5,34.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18809 - Forward: - - port: Left - uid: 18809 - Off: - - port: Middle - uid: 18809 - type: SignalReceiver -- uid: 18800 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -53.5,34.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18809 - Forward: - - port: Left - uid: 18809 - Off: - - port: Middle - uid: 18809 - type: SignalReceiver -- uid: 18801 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -53.5,30.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18808 - Forward: - - port: Left - uid: 18808 - Off: - - port: Middle - uid: 18808 - type: SignalReceiver -- uid: 18802 - type: PlasticFlapsAirtightClear - components: - - pos: -52.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18803 - type: PlasticFlapsAirtightClear - components: - - pos: -52.5,30.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18804 - type: Multitool - components: - - pos: -27.507483,24.649845 - parent: 1 - type: Transform -- uid: 18805 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -47.5,34.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18809 - Forward: - - port: Left - uid: 18809 - Off: - - port: Middle - uid: 18809 - type: SignalReceiver -- uid: 18806 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -47.5,30.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18808 - Forward: - - port: Left - uid: 18808 - Off: - - port: Middle - uid: 18808 - type: SignalReceiver -- uid: 18807 - type: SalvageMagnet - components: - - rot: -1.5707963267948966 rad - pos: -46.5,32.5 - parent: 1 - type: Transform -- uid: 18808 - type: TwoWayLever - components: - - pos: -48.5,29.5 - parent: 1 - type: Transform - - nextSignalLeft: True - type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 18801 - - port: Forward - uid: 18791 - - port: Forward - uid: 18790 - - port: Forward - uid: 18792 - - port: Forward - uid: 18793 - - port: Forward - uid: 18794 - - port: Forward - uid: 18806 - Right: - - port: Reverse - uid: 18801 - - port: Reverse - uid: 18791 - - port: Reverse - uid: 18790 - - port: Reverse - uid: 18792 - - port: Reverse - uid: 18793 - - port: Reverse - uid: 18794 - - port: Reverse - uid: 18806 - Middle: - - port: Off - uid: 18801 - - port: Off - uid: 18791 - - port: Off - uid: 18790 - - port: Off - uid: 18792 - - port: Off - uid: 18793 - - port: Off - uid: 18794 - - port: Off - uid: 18806 - type: SignalTransmitter -- uid: 18809 - type: TwoWayLever - components: - - pos: -48.5,35.5 - parent: 1 - type: Transform - - nextSignalLeft: True - type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 18800 - - port: Forward - uid: 18795 - - port: Forward - uid: 18796 - - port: Forward - uid: 18797 - - port: Forward - uid: 18798 - - port: Forward - uid: 18799 - - port: Forward - uid: 18805 - Right: - - port: Reverse - uid: 18800 - - port: Reverse - uid: 18795 - - port: Reverse - uid: 18796 - - port: Reverse - uid: 18797 - - port: Reverse - uid: 18798 - - port: Reverse - uid: 18799 - - port: Reverse - uid: 18805 - Middle: - - port: Off - uid: 18800 - - port: Off - uid: 18795 - - port: Off - uid: 18796 - - port: Off - uid: 18797 - - port: Off - uid: 18798 - - port: Off - uid: 18799 - - port: Off - uid: 18805 - type: SignalTransmitter -- uid: 18810 - type: ComputerRadar - components: - - rot: 1.5707963267948966 rad - pos: -48.5,32.5 - parent: 1 - type: Transform -- uid: 18811 - type: ReinforcedWindow - components: - - pos: -52.5,18.5 - parent: 1 - type: Transform -- uid: 18812 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -53.5,24.5 - parent: 1 - type: Transform -- uid: 18813 - type: ReinforcedWindow - components: - - pos: -52.5,24.5 - parent: 1 - type: Transform -- uid: 18814 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -53.5,18.5 - parent: 1 - type: Transform -- uid: 18815 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -52.5,21.5 - parent: 1 - type: Transform -- uid: 18816 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -53.5,21.5 - parent: 1 - type: Transform -- uid: 18817 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -52.5,21.5 - parent: 1 - type: Transform -- uid: 18818 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -53.5,21.5 - parent: 1 - type: Transform -- uid: 18819 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -49.5,29.5 - parent: 1 - type: Transform -- uid: 18820 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -52.5,29.5 - parent: 1 - type: Transform -- uid: 18821 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -52.5,35.5 - parent: 1 - type: Transform -- uid: 18822 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -49.5,35.5 - parent: 1 - type: Transform -- uid: 18823 - type: PlasticFlapsAirtightClear - components: - - pos: -53.5,23.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18824 - type: PlasticFlapsAirtightClear - components: - - pos: -53.5,19.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 18825 - type: BlastDoorExterior1 - components: - - pos: -53.5,23.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -60720.477 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 18267 - Close: - - port: Off - uid: 18267 - Toggle: [] - type: SignalReceiver -- uid: 18826 - type: BlastDoorExterior1 - components: - - pos: -53.5,19.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -60720.477 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 18267 - Close: - - port: Off - uid: 18267 - Toggle: [] - type: SignalReceiver -- uid: 18827 - type: CableApcExtension - components: - - pos: -51.5,22.5 - parent: 1 - type: Transform -- uid: 18828 - type: CableApcExtension - components: - - pos: -52.5,22.5 - parent: 1 - type: Transform -- uid: 18829 - type: CableApcExtension - components: - - pos: -52.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18830 - type: Grille - components: - - pos: -52.5,24.5 - parent: 1 - type: Transform -- uid: 18831 - type: Grille - components: - - pos: -52.5,18.5 - parent: 1 - type: Transform -- uid: 18832 - type: WallReinforced - components: - - pos: -49.5,37.5 - parent: 1 - type: Transform -- uid: 18833 - type: WallReinforced - components: - - pos: -48.5,37.5 - parent: 1 - type: Transform -- uid: 18834 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -40.5,36.5 - parent: 1 - type: Transform -- uid: 18835 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -41.5,36.5 - parent: 1 - type: Transform -- uid: 18836 - type: AirlockMaintSalvageLocked - components: - - pos: -45.5,37.5 - parent: 1 - type: Transform -- uid: 18837 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -42.5,36.5 - parent: 1 - type: Transform -- uid: 18838 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -43.5,36.5 - parent: 1 - type: Transform -- uid: 18839 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -44.5,36.5 - parent: 1 - type: Transform -- uid: 18840 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -44.5,37.5 - parent: 1 - type: Transform -- uid: 18841 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -46.5,37.5 - parent: 1 - type: Transform -- uid: 18842 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -47.5,37.5 - parent: 1 - type: Transform -- uid: 18843 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -39.5,35.5 - parent: 1 - type: Transform -- uid: 18844 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -39.5,36.5 - parent: 1 - type: Transform -- uid: 18845 - type: WallSolid - components: - - pos: -37.5,26.5 - parent: 1 - type: Transform -- uid: 18846 - type: WallSolid - components: - - pos: -36.5,26.5 - parent: 1 - type: Transform -- uid: 18847 - type: WallSolid - components: - - pos: -25.5,38.5 - parent: 1 - type: Transform -- uid: 18848 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -31.5,35.5 - parent: 1 - type: Transform -- uid: 18849 - type: WallReinforced - components: - - pos: -35.5,34.5 - parent: 1 - type: Transform -- uid: 18850 - type: WallReinforced - components: - - pos: -35.5,33.5 - parent: 1 - type: Transform -- uid: 18851 - type: WallSolid - components: - - pos: -38.5,26.5 - parent: 1 - type: Transform -- uid: 18852 - type: WallSolid - components: - - pos: -39.5,26.5 - parent: 1 - type: Transform -- uid: 18853 - type: ReinforcedWindow - components: - - pos: -39.5,31.5 - parent: 1 - type: Transform -- uid: 18854 - type: WallSolid - components: - - pos: -39.5,27.5 - parent: 1 - type: Transform -- uid: 18855 - type: WallSolid - components: - - pos: -39.5,28.5 - parent: 1 - type: Transform -- uid: 18856 - type: WallSolid - components: - - pos: -39.5,30.5 - parent: 1 - type: Transform -- uid: 18857 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -48.5,36.5 - parent: 1 - type: Transform -- uid: 18858 - type: SpawnPointCargoTechnician - components: - - pos: -31.5,24.5 - parent: 1 - type: Transform -- uid: 18859 - type: SpawnPointCargoTechnician - components: - - pos: -33.5,22.5 - parent: 1 - type: Transform -- uid: 18860 - type: SpawnPointCargoTechnician - components: - - pos: -31.5,19.5 - parent: 1 - type: Transform -- uid: 18861 - type: Table - components: - - pos: -42.5,35.5 - parent: 1 - type: Transform -- uid: 18862 - type: Table - components: - - pos: -41.5,35.5 - parent: 1 - type: Transform -- uid: 18863 - type: Table - components: - - pos: -40.5,35.5 - parent: 1 - type: Transform -- uid: 18864 - type: Table - components: - - pos: -40.5,34.5 - parent: 1 - type: Transform -- uid: 18865 - type: Table - components: - - pos: -40.5,33.5 - parent: 1 - type: Transform -- uid: 18866 - type: Table - components: - - pos: -40.5,32.5 - parent: 1 - type: Transform -- uid: 18867 - type: ClothingMaskGasExplorer - components: - - pos: -43.401073,35.593018 - parent: 1 - type: Transform -- uid: 18868 - type: Shovel - components: - - pos: -40.5417,35.280518 - parent: 1 - type: Transform -- uid: 18869 - type: Shovel - components: - - pos: -40.51045,34.905518 - parent: 1 - type: Transform -- uid: 18870 - type: OreBag - components: - - pos: -41.057323,35.546143 - parent: 1 - type: Transform -- uid: 18871 - type: FireExtinguisher - components: - - pos: -40.44795,34.218018 - parent: 1 - type: Transform -- uid: 18872 - type: FireExtinguisher - components: - - pos: -40.7292,33.999268 - parent: 1 - type: Transform -- uid: 18873 - type: ClothingShoesBootsMag - components: - - pos: -41.919106,35.62894 - parent: 1 - type: Transform -- uid: 18874 - type: PartRodMetal - components: - - pos: -40.541622,33.38082 - parent: 1 - type: Transform -- uid: 18875 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: -40.389053,32.87297 - parent: 1 - type: Transform -- uid: 18876 - type: ClosetEmergencyFilledRandom - components: - - pos: -46.5,36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18877 - type: Firelock - components: - - pos: 58.5,27.5 - parent: 1 - type: Transform -- uid: 18878 - type: LockerSalvageSpecialistFilled - components: - - pos: -36.5,32.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18879 - type: LockerSalvageSpecialistFilled - components: - - pos: -36.5,30.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18880 - type: LockerSalvageSpecialistFilled - components: - - pos: -36.5,28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18881 - type: VendingMachineSalvage - components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,33.5 - parent: 1 - type: Transform -- uid: 18882 - type: WardrobeSalvage - components: - - pos: -36.5,31.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 18883 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -32.5,35.5 - parent: 1 - type: Transform -- uid: 18884 - type: Table - components: - - pos: -38.5,28.5 - parent: 1 - type: Transform -- uid: 18885 - type: Table - components: - - pos: -38.5,27.5 - parent: 1 - type: Transform -- uid: 18886 - type: Table - components: - - pos: -37.5,27.5 - parent: 1 - type: Transform -- uid: 18887 - type: Table - components: - - pos: -36.5,27.5 - parent: 1 - type: Transform -- uid: 18888 - type: WeaponProtoKineticAccelerator - components: - - pos: -36.73277,27.512495 - parent: 1 - type: Transform -- uid: 18889 - type: Pickaxe - components: - - pos: -38.26402,27.606245 - parent: 1 - type: Transform -- uid: 18890 - type: Pickaxe - components: - - pos: -38.54527,27.71562 - parent: 1 - type: Transform -- uid: 18891 - type: ShuttersNormalOpen - components: - - pos: -33.5,27.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86606.164 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 22032 - Close: - - port: Off - uid: 22032 - Toggle: [] - type: SignalReceiver -- uid: 18892 - type: ComputerCargoOrders - components: - - pos: -44.5,35.5 - parent: 1 - type: Transform -- uid: 18893 - type: GasPipeBend - components: - - pos: -41.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18894 - type: GasPipeBend - components: - - pos: -40.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18895 - type: GasPipeStraight - components: - - pos: -40.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18896 - type: GasPipeStraight - components: - - pos: -40.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18897 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -40.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18898 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -41.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18899 - type: GasPipeStraight - components: - - pos: -41.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18900 - type: GasPipeStraight - components: - - pos: -40.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18901 - type: GasPipeStraight - components: - - pos: -40.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18902 - type: GasPipeStraight - components: - - pos: -41.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18903 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18904 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18905 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18906 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18907 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18908 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18909 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -44.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18910 - type: GasPipeTJunction - components: - - pos: -49.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18911 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18912 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18913 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18914 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18915 - type: GasPipeStraight - components: - - pos: -49.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 18916 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -49.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18917 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18918 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18919 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18920 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -45.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18921 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -50.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18922 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -50.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18923 - type: GasVentPump - components: - - pos: -44.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18924 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -37.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18925 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -44.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18926 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -37.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 18927 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: -40.5,27.5 - parent: 1 - type: Transform -- uid: 18928 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,23.5 - parent: 1 - type: Transform -- uid: 18929 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,23.5 - parent: 1 - type: Transform -- uid: 18930 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,23.5 - parent: 1 - type: Transform -- uid: 18931 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -26.5,23.5 - parent: 1 - type: Transform -- uid: 18932 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,23.5 - parent: 1 - type: Transform -- uid: 18933 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,23.5 - parent: 1 - type: Transform -- uid: 18934 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,23.5 - parent: 1 - type: Transform -- uid: 18935 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,23.5 - parent: 1 - type: Transform -- uid: 18936 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -31.5,23.5 - parent: 1 - type: Transform -- uid: 18937 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -32.5,23.5 - parent: 1 - type: Transform -- uid: 18938 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -33.5,23.5 - parent: 1 - type: Transform -- uid: 18939 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -34.5,23.5 - parent: 1 - type: Transform -- uid: 18940 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -35.5,23.5 - parent: 1 - type: Transform -- uid: 18941 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -36.5,23.5 - parent: 1 - type: Transform -- uid: 18942 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -37.5,23.5 - parent: 1 - type: Transform -- uid: 18943 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -38.5,23.5 - parent: 1 - type: Transform -- uid: 18944 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -46.5,10.5 - parent: 1 - type: Transform -- uid: 18945 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -40.5,23.5 - parent: 1 - type: Transform -- uid: 18946 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -41.5,23.5 - parent: 1 - type: Transform -- uid: 18947 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -42.5,23.5 - parent: 1 - type: Transform -- uid: 18948 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -42.5,24.5 - parent: 1 - type: Transform -- uid: 18949 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -42.5,25.5 - parent: 1 - type: Transform -- uid: 18950 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -42.5,26.5 - parent: 1 - type: Transform -- uid: 18951 - type: DisposalTrunk - components: - - pos: -42.5,27.5 - parent: 1 - type: Transform -- uid: 18952 - type: DisposalUnit - components: - - pos: -42.5,27.5 - parent: 1 - type: Transform -- uid: 18953 - type: AirlockSalvageGlassLocked - components: - - name: salvage - type: MetaData - - pos: -39.5,29.5 - parent: 1 - type: Transform -- uid: 18954 - type: Grille - components: - - pos: -39.5,31.5 - parent: 1 - type: Transform -- uid: 18955 - type: PlushieCarp - components: - - pos: -38.3623,28.544445 - parent: 1 - type: Transform -- uid: 18956 - type: CableApcExtension - components: - - pos: -52.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18957 - type: CableHV - components: - - pos: -71.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18958 - type: CableHV - components: - - pos: -72.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18959 - type: CableHV - components: - - pos: -73.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18960 - type: CableHV - components: - - pos: -73.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18961 - type: CableHV - components: - - pos: -73.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18962 - type: CableHV - components: - - pos: -73.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18963 - type: CableHV - components: - - pos: -73.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18964 - type: CableHV - components: - - pos: -73.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18965 - type: CableHV - components: - - pos: -73.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18966 - type: CableHV - components: - - pos: -73.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18967 - type: CableHV - components: - - pos: -73.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18968 - type: CableHV - components: - - pos: -73.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18969 - type: CableHV - components: - - pos: -73.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18970 - type: CableHV - components: - - pos: -73.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18971 - type: CableHV - components: - - pos: -73.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18972 - type: CableHV - components: - - pos: -73.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18973 - type: CableHV - components: - - pos: -73.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18974 - type: CableHV - components: - - pos: -72.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18975 - type: CableHV - components: - - pos: -71.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18976 - type: CableHV - components: - - pos: -70.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18977 - type: CableHV - components: - - pos: -69.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18978 - type: CableHV - components: - - pos: -68.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18979 - type: CableHV - components: - - pos: -67.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18980 - type: CableHV - components: - - pos: -66.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18981 - type: CableHV - components: - - pos: -65.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18982 - type: CableHV - components: - - pos: -64.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18983 - type: CableHV - components: - - pos: -63.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18984 - type: CableHV - components: - - pos: -62.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18985 - type: CableHV - components: - - pos: -61.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18986 - type: CableHV - components: - - pos: -60.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18987 - type: CableHV - components: - - pos: -59.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18988 - type: CableHV - components: - - pos: -59.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18989 - type: CableHV - components: - - pos: -59.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18990 - type: CableHV - components: - - pos: -59.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18991 - type: CableHV - components: - - pos: -59.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18992 - type: CableHV - components: - - pos: -59.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18993 - type: CableHV - components: - - pos: -59.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18994 - type: CableHV - components: - - pos: -59.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18995 - type: CableHV - components: - - pos: -59.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18996 - type: CableHV - components: - - pos: -59.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18997 - type: CableHV - components: - - pos: -59.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18998 - type: CableHV - components: - - pos: -59.5,-17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 18999 - type: CableHV - components: - - pos: -59.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19000 - type: CableHV - components: - - pos: -59.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19001 - type: CableHV - components: - - pos: -59.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19002 - type: CableHV - components: - - pos: -60.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19003 - type: CableHV - components: - - pos: -61.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19004 - type: CableHV - components: - - pos: -62.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19005 - type: CableHV - components: - - pos: -63.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19006 - type: CableHV - components: - - pos: -64.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19007 - type: CableHV - components: - - pos: -65.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19008 - type: CableHV - components: - - pos: -66.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19009 - type: CableHV - components: - - pos: -67.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19010 - type: CableHV - components: - - pos: -68.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19011 - type: CableHV - components: - - pos: -69.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19012 - type: CableHV - components: - - pos: -70.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19013 - type: CableApcExtension - components: - - pos: -46.5,27.5 - parent: 1 - type: Transform -- uid: 19014 - type: CableApcExtension - components: - - pos: -46.5,28.5 - parent: 1 - type: Transform -- uid: 19015 - type: CableApcExtension - components: - - pos: -46.5,29.5 - parent: 1 - type: Transform -- uid: 19016 - type: CableApcExtension - components: - - pos: -46.5,30.5 - parent: 1 - type: Transform -- uid: 19017 - type: CableApcExtension - components: - - pos: -46.5,31.5 - parent: 1 - type: Transform -- uid: 19018 - type: CableApcExtension - components: - - pos: -46.5,32.5 - parent: 1 - type: Transform -- uid: 19019 - type: CableApcExtension - components: - - pos: -46.5,33.5 - parent: 1 - type: Transform -- uid: 19020 - type: CableApcExtension - components: - - pos: -47.5,33.5 - parent: 1 - type: Transform -- uid: 19021 - type: CableApcExtension - components: - - pos: -48.5,33.5 - parent: 1 - type: Transform -- uid: 19022 - type: CableApcExtension - components: - - pos: -49.5,33.5 - parent: 1 - type: Transform -- uid: 19023 - type: CableApcExtension - components: - - pos: -50.5,33.5 - parent: 1 - type: Transform -- uid: 19024 - type: CableApcExtension - components: - - pos: -51.5,33.5 - parent: 1 - type: Transform -- uid: 19025 - type: CableApcExtension - components: - - pos: -47.5,31.5 - parent: 1 - type: Transform -- uid: 19026 - type: CableApcExtension - components: - - pos: -48.5,31.5 - parent: 1 - type: Transform -- uid: 19027 - type: CableApcExtension - components: - - pos: -49.5,31.5 - parent: 1 - type: Transform -- uid: 19028 - type: CableApcExtension - components: - - pos: -50.5,31.5 - parent: 1 - type: Transform -- uid: 19029 - type: CableApcExtension - components: - - pos: -51.5,31.5 - parent: 1 - type: Transform -- uid: 19030 - type: CableApcExtension - components: - - pos: -45.5,30.5 - parent: 1 - type: Transform -- uid: 19031 - type: CableApcExtension - components: - - pos: -44.5,30.5 - parent: 1 - type: Transform -- uid: 19032 - type: CableApcExtension - components: - - pos: -43.5,30.5 - parent: 1 - type: Transform -- uid: 19033 - type: CableApcExtension - components: - - pos: -42.5,30.5 - parent: 1 - type: Transform -- uid: 19034 - type: CableApcExtension - components: - - pos: -41.5,30.5 - parent: 1 - type: Transform -- uid: 19035 - type: CableApcExtension - components: - - pos: -40.5,30.5 - parent: 1 - type: Transform -- uid: 19036 - type: CableApcExtension - components: - - pos: -40.5,31.5 - parent: 1 - type: Transform -- uid: 19037 - type: CableApcExtension - components: - - pos: -39.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19038 - type: CableApcExtension - components: - - pos: -38.5,31.5 - parent: 1 - type: Transform -- uid: 19039 - type: CableApcExtension - components: - - pos: -37.5,31.5 - parent: 1 - type: Transform -- uid: 19040 - type: CableApcExtension - components: - - pos: -36.5,31.5 - parent: 1 - type: Transform -- uid: 19041 - type: CableApcExtension - components: - - pos: -37.5,30.5 - parent: 1 - type: Transform -- uid: 19042 - type: CableApcExtension - components: - - pos: -37.5,29.5 - parent: 1 - type: Transform -- uid: 19043 - type: CableApcExtension - components: - - pos: -44.5,31.5 - parent: 1 - type: Transform -- uid: 19044 - type: CableApcExtension - components: - - pos: -44.5,32.5 - parent: 1 - type: Transform -- uid: 19045 - type: CableApcExtension - components: - - pos: -44.5,33.5 - parent: 1 - type: Transform -- uid: 19046 - type: CableApcExtension - components: - - pos: -44.5,34.5 - parent: 1 - type: Transform -- uid: 19047 - type: CableApcExtension - components: - - pos: -42.5,29.5 - parent: 1 - type: Transform -- uid: 19048 - type: CableApcExtension - components: - - pos: -42.5,28.5 - parent: 1 - type: Transform -- uid: 19049 - type: CableApcExtension - components: - - pos: -43.5,33.5 - parent: 1 - type: Transform -- uid: 19050 - type: CableApcExtension - components: - - pos: -44.5,35.5 - parent: 1 - type: Transform -- uid: 19051 - type: CableApcExtension - components: - - pos: -45.5,35.5 - parent: 1 - type: Transform -- uid: 19052 - type: CableApcExtension - components: - - pos: -46.5,35.5 - parent: 1 - type: Transform -- uid: 19053 - type: CableApcExtension - components: - - pos: -47.5,35.5 - parent: 1 - type: Transform -- uid: 19054 - type: WallSolid - components: - - pos: -39.5,34.5 - parent: 1 - type: Transform -- uid: 19055 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19056 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -47.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19057 - type: Poweredlight - components: - - pos: -47.5,36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19058 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19059 - type: AtmosDeviceFanTiny - components: - - pos: -52.5,30.5 - parent: 1 - type: Transform -- uid: 19060 - type: AtmosDeviceFanTiny - components: - - pos: -52.5,34.5 - parent: 1 - type: Transform -- uid: 19061 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -38.5,19.5 - parent: 1 - type: Transform -- uid: 19062 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -51.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19063 - type: SpawnPointSalvageSpecialist - components: - - pos: -37.5,32.5 - parent: 1 - type: Transform -- uid: 19064 - type: SpawnPointSalvageSpecialist - components: - - pos: -37.5,30.5 - parent: 1 - type: Transform -- uid: 19065 - type: SpawnPointSalvageSpecialist - components: - - pos: -37.5,28.5 - parent: 1 - type: Transform -- uid: 19066 - type: OxygenCanister - components: - - pos: -48.5,28.5 - parent: 1 - type: Transform -- uid: 19067 - type: SignMinerDock - components: - - pos: -44.5,27.5 - parent: 1 - type: Transform -- uid: 19068 - type: FaxMachineBase - components: - - pos: -34.5,23.5 - parent: 1 - type: Transform - - name: cargo fax - type: FaxMachine -- uid: 19069 - type: WallSolid - components: - - pos: -30.5,-1.5 - parent: 1 - type: Transform -- uid: 19070 - type: WallSolid - components: - - pos: -31.5,-1.5 - parent: 1 - type: Transform -- uid: 19071 - type: WallSolid - components: - - pos: -32.5,-1.5 - parent: 1 - type: Transform -- uid: 19072 - type: WallSolid - components: - - pos: -32.5,-2.5 - parent: 1 - type: Transform -- uid: 19073 - type: WallSolid - components: - - pos: -29.5,2.5 - parent: 1 - type: Transform -- uid: 19074 - type: WallSolid - components: - - pos: -30.5,2.5 - parent: 1 - type: Transform -- uid: 19075 - type: WallSolid - components: - - pos: -31.5,2.5 - parent: 1 - type: Transform -- uid: 19076 - type: WallSolid - components: - - pos: -32.5,2.5 - parent: 1 - type: Transform -- uid: 19077 - type: WallSolid - components: - - pos: -33.5,2.5 - parent: 1 - type: Transform -- uid: 19078 - type: Window - components: - - pos: -34.5,2.5 - parent: 1 - type: Transform -- uid: 19079 - type: WallSolid - components: - - pos: -34.5,-1.5 - parent: 1 - type: Transform -- uid: 19080 - type: FirelockGlass - components: - - pos: -20.5,14.5 - parent: 1 - type: Transform -- uid: 19081 - type: FirelockGlass - components: - - pos: -19.5,14.5 - parent: 1 - type: Transform -- uid: 19082 - type: FirelockGlass - components: - - pos: -18.5,14.5 - parent: 1 - type: Transform -- uid: 19083 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -22.5,11.5 - parent: 1 - type: Transform -- uid: 19084 - type: SurveillanceWirelessCameraAnchoredConstructed - components: - - rot: 3.141592653589793 rad - pos: -26.5,13.5 - parent: 1 - type: Transform - - nameSet: True - id: news camera 2 - type: SurveillanceCamera - - bodyType: Static - type: Physics -- uid: 19085 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -27.5,14.5 - parent: 1 - type: Transform -- uid: 19086 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -26.5,14.5 - parent: 1 - type: Transform -- uid: 19087 - type: ChairOfficeLight - components: - - pos: -26.5,15.5 - parent: 1 - type: Transform -- uid: 19088 - type: AirlockServiceLocked - components: - - name: reporters office - type: MetaData - - pos: -24.5,9.5 - parent: 1 - type: Transform -- uid: 19089 - type: DrinkHotCoffee - components: - - pos: -26.93719,14.6217785 - parent: 1 - type: Transform -- uid: 19090 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: -26.49969,14.6061535 - parent: 1 - type: Transform -- uid: 19091 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: -26.49969,14.6061535 - parent: 1 - type: Transform -- uid: 19092 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: -26.49969,14.6061535 - parent: 1 - type: Transform -- uid: 19093 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: -26.49969,14.6061535 - parent: 1 - type: Transform -- uid: 19094 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: -26.49969,14.6061535 - parent: 1 - type: Transform -- uid: 19095 - type: Paper - components: - - rot: 3.141592653589793 rad - pos: -26.49969,14.6061535 - parent: 1 - type: Transform -- uid: 19096 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -25.5,16.5 - parent: 1 - type: Transform -- uid: 19097 - type: PaintingTheSonOfMan - components: - - pos: -25.5,16.5 - parent: 1 - type: Transform -- uid: 19098 - type: SurveillanceCameraWirelessRouterEntertainment - components: - - pos: -27.5,12.5 - parent: 1 - type: Transform -- uid: 19099 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -23.5,11.5 - parent: 1 - type: Transform -- uid: 19100 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -24.5,11.5 - parent: 1 - type: Transform -- uid: 19101 - type: ChairOfficeLight - components: - - pos: -23.5,12.5 - parent: 1 - type: Transform -- uid: 19102 - type: SurveillanceWirelessCameraMovableEntertainment - components: - - pos: -24.5,13.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: news camera - type: SurveillanceCamera -- uid: 19103 - type: ComputerSurveillanceCameraMonitor - components: - - rot: -1.5707963267948966 rad - pos: -22.5,12.5 - parent: 1 - type: Transform -- uid: 19104 - type: filingCabinetDrawerRandom - components: - - pos: -22.5,13.5 - parent: 1 - type: Transform -- uid: 19105 - type: filingCabinetRandom - components: - - pos: -23.5,13.5 - parent: 1 - type: Transform -- uid: 19106 - type: BoxFolderGrey - components: - - rot: 3.141592653589793 rad - pos: -23.516235,11.607702 - parent: 1 - type: Transform -- uid: 19107 - type: BoxFolderYellow - components: - - rot: 3.141592653589793 rad - pos: -23.71936,11.498327 - parent: 1 - type: Transform -- uid: 19108 - type: ClothingHeadHatFedoraGrey - components: - - pos: -22.922485,11.607702 - parent: 1 - type: Transform -- uid: 19109 - type: Lamp - components: - - pos: -24.34436,11.920202 - parent: 1 - type: Transform -- uid: 19110 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -13.5,9.5 - parent: 1 - type: Transform -- uid: 19111 - type: WallSolid - components: - - pos: -22.5,16.5 - parent: 1 - type: Transform -- uid: 19112 - type: CableApcExtension - components: - - pos: -23.5,17.5 - parent: 1 - type: Transform -- uid: 19113 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19114 - type: ClothingBeltUtility - components: - - pos: -34.379585,-20.389349 - parent: 1 - type: Transform -- uid: 19115 - type: ClothingBeltUtility - components: - - pos: -46.524574,-30.537275 - parent: 1 - type: Transform -- uid: 19116 - type: WallSolid - components: - - pos: -16.5,22.5 - parent: 1 - type: Transform -- uid: 19117 - type: WallSolid - components: - - pos: -15.5,22.5 - parent: 1 - type: Transform -- uid: 19118 - type: WallSolid - components: - - pos: -14.5,22.5 - parent: 1 - type: Transform -- uid: 19119 - type: FirelockGlass - components: - - rot: -1.5707963267948966 rad - pos: -17.5,25.5 - parent: 1 - type: Transform -- uid: 19120 - type: Table - components: - - pos: -15.5,23.5 - parent: 1 - type: Transform -- uid: 19121 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -11.5,28.5 - parent: 1 - type: Transform -- uid: 19122 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -8.5,28.5 - parent: 1 - type: Transform -- uid: 19123 - type: WallReinforced - components: - - pos: 49.5,43.5 - parent: 1 - type: Transform -- uid: 19124 - type: WallReinforced - components: - - pos: 49.5,48.5 - parent: 1 - type: Transform -- uid: 19125 - type: WallReinforced - components: - - pos: 59.5,49.5 - parent: 1 - type: Transform -- uid: 19126 - type: WallReinforced - components: - - pos: 49.5,49.5 - parent: 1 - type: Transform -- uid: 19127 - type: Catwalk - components: - - pos: -6.5,18.5 - parent: 1 - type: Transform -- uid: 19128 - type: Catwalk - components: - - pos: -7.5,18.5 - parent: 1 - type: Transform -- uid: 19129 - type: Catwalk - components: - - pos: -8.5,18.5 - parent: 1 - type: Transform -- uid: 19130 - type: Catwalk - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform -- uid: 19131 - type: Catwalk - components: - - pos: -10.5,18.5 - parent: 1 - type: Transform -- uid: 19132 - type: Catwalk - components: - - pos: -11.5,18.5 - parent: 1 - type: Transform -- uid: 19133 - type: TableReinforced - components: - - pos: -14.5,12.5 - parent: 1 - type: Transform -- uid: 19134 - type: TableReinforced - components: - - pos: -13.5,12.5 - parent: 1 - type: Transform -- uid: 19135 - type: Catwalk - components: - - pos: -11.5,15.5 - parent: 1 - type: Transform -- uid: 19136 - type: Firelock - components: - - pos: -14.5,14.5 - parent: 1 - type: Transform -- uid: 19137 - type: AirlockMaintGlass - components: - - pos: -11.5,13.5 - parent: 1 - type: Transform -- uid: 19138 - type: Catwalk - components: - - pos: -6.5,14.5 - parent: 1 - type: Transform -- uid: 19139 - type: Catwalk - components: - - pos: -5.5,14.5 - parent: 1 - type: Transform -- uid: 19140 - type: Catwalk - components: - - pos: -4.5,14.5 - parent: 1 - type: Transform -- uid: 19141 - type: Catwalk - components: - - pos: -3.5,14.5 - parent: 1 - type: Transform -- uid: 19142 - type: AtmosFixFreezerMarker - components: - - pos: 2.5,14.5 - parent: 1 - type: Transform -- uid: 19143 - type: Catwalk - components: - - pos: -6.5,13.5 - parent: 1 - type: Transform -- uid: 19144 - type: Catwalk - components: - - pos: -7.5,13.5 - parent: 1 - type: Transform -- uid: 19145 - type: Catwalk - components: - - pos: -12.5,24.5 - parent: 1 - type: Transform -- uid: 19146 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -12.5,27.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Left - uid: 18398 - Forward: - - port: Right - uid: 18398 - Off: - - port: Middle - uid: 18398 - type: SignalReceiver -- uid: 19147 - type: ConveyorBelt - components: - - pos: -10.5,28.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Left - uid: 18398 - Forward: - - port: Right - uid: 18398 - Off: - - port: Middle - uid: 18398 - type: SignalReceiver -- uid: 19148 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -9.5,28.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Left - uid: 18398 - Forward: - - port: Right - uid: 18398 - Off: - - port: Middle - uid: 18398 - type: SignalReceiver -- uid: 19149 - type: Rack - components: - - pos: -10.5,16.5 - parent: 1 - type: Transform -- uid: 19150 - type: Rack - components: - - pos: -12.5,17.5 - parent: 1 - type: Transform -- uid: 19151 - type: ClosetMaintenanceFilledRandom - components: - - pos: -3.5,19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19152 - type: Table - components: - - pos: -4.5,19.5 - parent: 1 - type: Transform -- uid: 19153 - type: Table - components: - - pos: -5.5,19.5 - parent: 1 - type: Transform -- uid: 19154 - type: WallReinforced - components: - - pos: 59.5,44.5 - parent: 1 - type: Transform -- uid: 19155 - type: Table - components: - - pos: -16.5,21.5 - parent: 1 - type: Transform -- uid: 19156 - type: Table - components: - - pos: -16.5,20.5 - parent: 1 - type: Transform -- uid: 19157 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,24.5 - parent: 1 - type: Transform -- uid: 19158 - type: Table - components: - - pos: -15.5,21.5 - parent: 1 - type: Transform -- uid: 19159 - type: CableMV - components: - - pos: -9.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19160 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -17.5,24.5 - parent: 1 - type: Transform -- uid: 19161 - type: WallSolid - components: - - pos: -13.5,25.5 - parent: 1 - type: Transform -- uid: 19162 - type: PosterContrabandEnergySwords - components: - - pos: -8.5,19.5 - parent: 1 - type: Transform -- uid: 19163 - type: ClothingBeltUtility - components: - - pos: -3.42201,34.480587 - parent: 1 - type: Transform -- uid: 19164 - type: ClothingBeltUtility - components: - - pos: -4.6075964,19.605381 - parent: 1 - type: Transform -- uid: 19165 - type: PowerCellMediumPrinted - components: - - pos: -5.4825964,19.558506 - parent: 1 - type: Transform -- uid: 19166 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,24.5 - parent: 1 - type: Transform -- uid: 19167 - type: MaintenanceFluffSpawner - components: - - pos: -15.5,21.5 - parent: 1 - type: Transform -- uid: 19168 - type: MaintenanceWeaponSpawner - components: - - pos: -12.5,17.5 - parent: 1 - type: Transform -- uid: 19169 - type: ClothingHeadHatWeldingMaskFlameBlue - components: - - pos: 0.64530456,23.439005 - parent: 1 - type: Transform -- uid: 19170 - type: ClothingHeadHatWelding - components: - - pos: -12.456746,17.595669 - parent: 1 - type: Transform -- uid: 19171 - type: BoxMousetrap - components: - - pos: -10.496968,16.58234 - parent: 1 - type: Transform -- uid: 19172 - type: AirlockMaintSecLocked - components: - - rot: -1.5707963267948966 rad - pos: -13.5,26.5 - parent: 1 - type: Transform -- uid: 19173 - type: PlasticFlapsOpaque - components: - - pos: -7.5,22.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 19174 - type: WeldingFuelTankFull - components: - - pos: -0.5,23.5 - parent: 1 - type: Transform -- uid: 19175 - type: TrashBananaPeel - components: - - pos: 5.4959826,24.50416 - parent: 1 - type: Transform -- uid: 19176 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 61.5,42.5 - parent: 1 - type: Transform -- uid: 19177 - type: SignDirectionalSec - components: - - pos: -19.471409,47.857254 - parent: 1 - type: Transform -- uid: 19178 - type: ClothingHeadHatRichard - components: - - pos: -16.484713,20.572138 - parent: 1 - type: Transform -- uid: 19179 - type: WallReinforced - components: - - pos: 49.5,42.5 - parent: 1 - type: Transform -- uid: 19180 - type: PosterLegitBuild - components: - - pos: -34.5,-4.5 - parent: 1 - type: Transform -- uid: 19181 - type: Table - components: - - pos: -48.5,26.5 - parent: 1 - type: Transform -- uid: 19182 - type: Table - components: - - pos: -47.5,26.5 - parent: 1 - type: Transform -- uid: 19183 - type: MaintenanceToolSpawner - components: - - pos: -49.5,14.5 - parent: 1 - type: Transform -- uid: 19184 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -48.5,17.5 - parent: 1 - type: Transform -- uid: 19185 - type: FoodSoupVegetable - components: - - pos: -16.443905,21.40528 - parent: 1 - type: Transform -- uid: 19186 - type: WallReinforced - components: - - pos: 59.5,42.5 - parent: 1 - type: Transform -- uid: 19187 - type: PaperBin5 - components: - - pos: -34.544167,24.426237 - parent: 1 - type: Transform -- uid: 19188 - type: FireExtinguisher - components: - - pos: -47.435944,26.604792 - parent: 1 - type: Transform -- uid: 19189 - type: Pickaxe - components: - - pos: -47.972298,26.558094 - parent: 1 - type: Transform -- uid: 19190 - type: Shovel - components: - - pos: -48.500484,26.545332 - parent: 1 - type: Transform -- uid: 19191 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -47.5,17.5 - parent: 1 - type: Transform -- uid: 19192 - type: OxygenCanister - components: - - pos: -31.5,17.5 - parent: 1 - type: Transform -- uid: 19193 - type: Poweredlight - components: - - pos: -7.5,-41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19194 - type: Poweredlight - components: - - pos: -1.5,-41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19195 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -17.5,26.5 - parent: 1 - type: Transform -- uid: 19196 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 19197 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19198 - type: Poweredlight - components: - - pos: 5.5,-52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19199 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 1.5,-54.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19200 - type: Poweredlight - components: - - pos: -3.5,-52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19201 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -7.5,-54.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19202 - type: Poweredlight - components: - - pos: -11.5,-52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19203 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-53.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19204 - type: Poweredlight - components: - - pos: -17.5,-54.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19205 - type: Poweredlight - components: - - pos: -17.5,-59.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19206 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -29.5,-4.5 - parent: 1 - type: Transform -- uid: 19207 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -29.5,-6.5 - parent: 1 - type: Transform -- uid: 19208 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -29.5,-8.5 - parent: 1 - type: Transform -- uid: 19209 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -28.5,-8.5 - parent: 1 - type: Transform -- uid: 19210 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -27.5,-8.5 - parent: 1 - type: Transform -- uid: 19211 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -28.5,-4.5 - parent: 1 - type: Transform -- uid: 19212 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19213 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19214 - type: PosterContrabandShamblersJuice - components: - - name: changs - type: MetaData - - rot: 3.141592653589793 rad - pos: -19.5,46.5 - parent: 1 - type: Transform -- uid: 19215 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-1.5 - parent: 1 - type: Transform -- uid: 19216 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-1.5 - parent: 1 - type: Transform -- uid: 19217 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-1.5 - parent: 1 - type: Transform -- uid: 19218 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-1.5 - parent: 1 - type: Transform -- uid: 19219 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-1.5 - parent: 1 - type: Transform -- uid: 19220 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-1.5 - parent: 1 - type: Transform -- uid: 19221 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-1.5 - parent: 1 - type: Transform -- uid: 19222 - type: AirlockMaint - components: - - name: toilets - type: MetaData - - pos: -29.5,-1.5 - parent: 1 - type: Transform -- uid: 19223 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19224 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19225 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19226 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19227 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19228 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19229 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19230 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19231 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19232 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19233 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19234 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -26.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19235 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -25.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19236 - type: CableApcExtension - components: - - pos: -24.5,8.5 - parent: 1 - type: Transform -- uid: 19237 - type: CableApcExtension - components: - - pos: -24.5,9.5 - parent: 1 - type: Transform -- uid: 19238 - type: CableApcExtension - components: - - pos: -24.5,10.5 - parent: 1 - type: Transform -- uid: 19239 - type: CableApcExtension - components: - - pos: -25.5,10.5 - parent: 1 - type: Transform -- uid: 19240 - type: CableApcExtension - components: - - pos: -25.5,11.5 - parent: 1 - type: Transform -- uid: 19241 - type: CableApcExtension - components: - - pos: -25.5,12.5 - parent: 1 - type: Transform -- uid: 19242 - type: CableApcExtension - components: - - pos: -25.5,13.5 - parent: 1 - type: Transform -- uid: 19243 - type: CableApcExtension - components: - - pos: -25.5,14.5 - parent: 1 - type: Transform -- uid: 19244 - type: CableApcExtension - components: - - pos: -24.5,13.5 - parent: 1 - type: Transform -- uid: 19245 - type: CableApcExtension - components: - - pos: -23.5,13.5 - parent: 1 - type: Transform -- uid: 19246 - type: CableApcExtension - components: - - pos: -26.5,12.5 - parent: 1 - type: Transform -- uid: 19247 - type: CableApcExtension - components: - - pos: -27.5,12.5 - parent: 1 - type: Transform -- uid: 19248 - type: Window - components: - - pos: -26.5,9.5 - parent: 1 - type: Transform -- uid: 19249 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -21.5,12.5 - parent: 1 - type: Transform -- uid: 19250 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -22.5,9.5 - parent: 1 - type: Transform -- uid: 19251 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -23.5,9.5 - parent: 1 - type: Transform -- uid: 19252 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -25.5,9.5 - parent: 1 - type: Transform -- uid: 19253 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -26.5,9.5 - parent: 1 - type: Transform -- uid: 19254 - type: BriefcaseBrown - components: - - rot: 1.5707963267948966 rad - pos: -22.463455,11.6035385 - parent: 1 - type: Transform -- uid: 19255 - type: FirelockGlass - components: - - pos: -38.5,2.5 - parent: 1 - type: Transform -- uid: 19256 - type: FirelockGlass - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform -- uid: 19257 - type: Bed - components: - - pos: 32.5,-29.5 - parent: 1 - type: Transform -- uid: 19258 - type: SpawnMobFoxRenault - components: - - pos: 32.5,-28.5 - parent: 1 - type: Transform -- uid: 19259 - type: SpawnMobPossumMorty - components: - - pos: -15.5,-63.5 - parent: 1 - type: Transform -- uid: 19260 - type: Window - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform -- uid: 19261 - type: Window - components: - - pos: -36.5,7.5 - parent: 1 - type: Transform -- uid: 19262 - type: Window - components: - - pos: -39.5,2.5 - parent: 1 - type: Transform -- uid: 19263 - type: Window - components: - - pos: -35.5,2.5 - parent: 1 - type: Transform -- uid: 19264 - type: Window - components: - - pos: -39.5,7.5 - parent: 1 - type: Transform -- uid: 19265 - type: WallSolid - components: - - pos: -42.5,2.5 - parent: 1 - type: Transform -- uid: 19266 - type: WallSolid - components: - - pos: -43.5,2.5 - parent: 1 - type: Transform -- uid: 19267 - type: WallSolid - components: - - pos: -42.5,3.5 - parent: 1 - type: Transform -- uid: 19268 - type: WallSolid - components: - - pos: -42.5,4.5 - parent: 1 - type: Transform -- uid: 19269 - type: WallSolid - components: - - pos: -42.5,5.5 - parent: 1 - type: Transform -- uid: 19270 - type: WallSolid - components: - - pos: -42.5,6.5 - parent: 1 - type: Transform -- uid: 19271 - type: WallSolid - components: - - pos: -42.5,7.5 - parent: 1 - type: Transform -- uid: 19272 - type: WallSolid - components: - - pos: -41.5,11.5 - parent: 1 - type: Transform -- uid: 19273 - type: WallSolid - components: - - pos: -41.5,10.5 - parent: 1 - type: Transform -- uid: 19274 - type: WallSolid - components: - - pos: -41.5,9.5 - parent: 1 - type: Transform -- uid: 19275 - type: WallSolid - components: - - pos: -41.5,8.5 - parent: 1 - type: Transform -- uid: 19276 - type: WallSolid - components: - - pos: -34.5,12.5 - parent: 1 - type: Transform -- uid: 19277 - type: WallSolid - components: - - pos: -34.5,11.5 - parent: 1 - type: Transform -- uid: 19278 - type: WallSolid - components: - - pos: -34.5,10.5 - parent: 1 - type: Transform -- uid: 19279 - type: WallSolid - components: - - pos: -33.5,3.5 - parent: 1 - type: Transform -- uid: 19280 - type: WallSolid - components: - - pos: -33.5,4.5 - parent: 1 - type: Transform -- uid: 19281 - type: WallSolid - components: - - pos: -33.5,5.5 - parent: 1 - type: Transform -- uid: 19282 - type: WallSolid - components: - - pos: -33.5,6.5 - parent: 1 - type: Transform -- uid: 19283 - type: WallSolid - components: - - pos: -33.5,7.5 - parent: 1 - type: Transform -- uid: 19284 - type: Grille - components: - - pos: -36.5,7.5 - parent: 1 - type: Transform -- uid: 19285 - type: WallSolid - components: - - pos: -43.5,15.5 - parent: 1 - type: Transform -- uid: 19286 - type: WallSolid - components: - - pos: -33.5,12.5 - parent: 1 - type: Transform -- uid: 19287 - type: WallSolid - components: - - pos: -42.5,12.5 - parent: 1 - type: Transform -- uid: 19288 - type: WallSolid - components: - - pos: -32.5,12.5 - parent: 1 - type: Transform -- uid: 19289 - type: WallSolid - components: - - pos: -41.5,7.5 - parent: 1 - type: Transform -- uid: 19290 - type: WallSolid - components: - - pos: -40.5,7.5 - parent: 1 - type: Transform -- uid: 19291 - type: Window - components: - - pos: -41.5,2.5 - parent: 1 - type: Transform -- uid: 19292 - type: Window - components: - - pos: -40.5,2.5 - parent: 1 - type: Transform -- uid: 19293 - type: WallSolid - components: - - pos: -35.5,7.5 - parent: 1 - type: Transform -- uid: 19294 - type: WallSolid - components: - - pos: -34.5,7.5 - parent: 1 - type: Transform -- uid: 19295 - type: WoodDoor - components: - - pos: -38.5,7.5 - parent: 1 - type: Transform -- uid: 19296 - type: WoodDoor - components: - - pos: -37.5,7.5 - parent: 1 - type: Transform -- uid: 19297 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -36.5,9.5 - parent: 1 - type: Transform -- uid: 19298 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -35.5,9.5 - parent: 1 - type: Transform -- uid: 19299 - type: Multitool - components: - - pos: 73.29074,-44.41717 - parent: 1 - type: Transform -- uid: 19300 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -36.5,10.5 - parent: 1 - type: Transform -- uid: 19301 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -35.5,10.5 - parent: 1 - type: Transform -- uid: 19302 - type: AirlockScienceLocked - components: - - pos: 66.5,-33.5 - parent: 1 - type: Transform -- uid: 19303 - type: AirlockScienceLocked - components: - - pos: 66.5,-34.5 - parent: 1 - type: Transform -- uid: 19304 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -35.5,11.5 - parent: 1 - type: Transform -- uid: 19305 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -36.5,11.5 - parent: 1 - type: Transform -- uid: 19306 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -36.5,12.5 - parent: 1 - type: Transform -- uid: 19307 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -35.5,12.5 - parent: 1 - type: Transform -- uid: 19308 - type: GasPipeStraight - components: - - pos: 71.5,-30.5 - parent: 1 - type: Transform - - color: '#9755CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19309 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -39.5,12.5 - parent: 1 - type: Transform -- uid: 19310 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -42.5,15.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18243 - Forward: - - port: Left - uid: 18243 - Off: - - port: Middle - uid: 18243 - type: SignalReceiver -- uid: 19311 - type: ClothingHeadHatHoodNunHood - components: - - pos: -38.629223,16.497232 - parent: 1 - type: Transform -- uid: 19312 - type: Grille - components: - - pos: -41.5,2.5 - parent: 1 - type: Transform -- uid: 19313 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -40.5,11.5 - parent: 1 - type: Transform -- uid: 19314 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -39.5,11.5 - parent: 1 - type: Transform -- uid: 19315 - type: Grille - components: - - pos: -35.5,2.5 - parent: 1 - type: Transform -- uid: 19316 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -40.5,10.5 - parent: 1 - type: Transform -- uid: 19317 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -39.5,10.5 - parent: 1 - type: Transform -- uid: 19318 - type: Grille - components: - - pos: -34.5,2.5 - parent: 1 - type: Transform -- uid: 19319 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -40.5,9.5 - parent: 1 - type: Transform -- uid: 19320 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -39.5,9.5 - parent: 1 - type: Transform -- uid: 19321 - type: AltarConvertRed - components: - - pos: -37.5,14.5 - parent: 1 - type: Transform -- uid: 19322 - type: AltarConvertRed - components: - - pos: -38.5,14.5 - parent: 1 - type: Transform -- uid: 19323 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -41.5,14.5 - parent: 1 - type: Transform -- uid: 19324 - type: DisposalPipe - components: - - pos: -42.5,18.5 - parent: 1 - type: Transform -- uid: 19325 - type: DisposalPipe - components: - - pos: -42.5,17.5 - parent: 1 - type: Transform -- uid: 19326 - type: WallSolid - components: - - pos: -43.5,12.5 - parent: 1 - type: Transform -- uid: 19327 - type: WallSolid - components: - - pos: -43.5,13.5 - parent: 1 - type: Transform -- uid: 19328 - type: WallSolid - components: - - pos: -32.5,15.5 - parent: 1 - type: Transform -- uid: 19329 - type: WallSolid - components: - - pos: -41.5,12.5 - parent: 1 - type: Transform -- uid: 19330 - type: WallSolid - components: - - pos: -29.5,11.5 - parent: 1 - type: Transform -- uid: 19331 - type: WallSolid - components: - - pos: -34.5,8.5 - parent: 1 - type: Transform -- uid: 19332 - type: DisposalPipe - components: - - pos: -42.5,15.5 - parent: 1 - type: Transform -- uid: 19333 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -36.5,16.5 - parent: 1 - type: Transform -- uid: 19334 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -37.5,16.5 - parent: 1 - type: Transform -- uid: 19335 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -38.5,16.5 - parent: 1 - type: Transform -- uid: 19336 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -39.5,16.5 - parent: 1 - type: Transform -- uid: 19337 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19338 - type: GasPipeTJunction - components: - - pos: -28.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19339 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19340 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19341 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19342 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19343 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19344 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19345 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19346 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19347 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -25.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19348 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -26.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19349 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -27.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19350 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19351 - type: GasPipeTJunction - components: - - pos: -29.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19352 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19353 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19354 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19355 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19356 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19357 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19358 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19359 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19360 - type: GasPipeStraight - components: - - pos: -28.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19361 - type: GasPipeStraight - components: - - pos: -28.5,-0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19362 - type: GasPipeStraight - components: - - pos: -28.5,-1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19363 - type: GasPipeStraight - components: - - pos: -28.5,-2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19364 - type: GasPipeStraight - components: - - pos: -29.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19365 - type: GasPipeStraight - components: - - pos: -29.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19366 - type: GasPipeStraight - components: - - pos: -29.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19367 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -28.5,-3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19368 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -37.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19369 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -38.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19370 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19371 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19372 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19373 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -38.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19374 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19375 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19376 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19377 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19378 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -37.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19379 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19380 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19381 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19382 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19383 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -37.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19384 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -38.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19385 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19386 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19387 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19388 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -37.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19389 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19390 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19391 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19392 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -38.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19393 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -37.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19394 - type: GasPipeStraight - components: - - pos: -38.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19395 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -38.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19396 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -37.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19397 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19398 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19399 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19400 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19401 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19402 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19403 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -36.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19404 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19405 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -34.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19406 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19407 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -32.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 19408 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19409 - type: CableHV - components: - - pos: -20.5,-5.5 - parent: 1 - type: Transform -- uid: 19410 - type: CableHV - components: - - pos: -21.5,-5.5 - parent: 1 - type: Transform -- uid: 19411 - type: CableHV - components: - - pos: -22.5,-5.5 - parent: 1 - type: Transform -- uid: 19412 - type: CableHV - components: - - pos: -23.5,-5.5 - parent: 1 - type: Transform -- uid: 19413 - type: CableHV - components: - - pos: -24.5,-5.5 - parent: 1 - type: Transform -- uid: 19414 - type: CableHV - components: - - pos: -25.5,-5.5 - parent: 1 - type: Transform -- uid: 19415 - type: CableHV - components: - - pos: -25.5,-4.5 - parent: 1 - type: Transform -- uid: 19416 - type: CableHV - components: - - pos: -25.5,-3.5 - parent: 1 - type: Transform -- uid: 19417 - type: CableHV - components: - - pos: -25.5,-2.5 - parent: 1 - type: Transform -- uid: 19418 - type: CableHV - components: - - pos: -25.5,-1.5 - parent: 1 - type: Transform -- uid: 19419 - type: CableHV - components: - - pos: -25.5,-0.5 - parent: 1 - type: Transform -- uid: 19420 - type: CableHV - components: - - pos: -26.5,-0.5 - parent: 1 - type: Transform -- uid: 19421 - type: CableHV - components: - - pos: -27.5,-0.5 - parent: 1 - type: Transform -- uid: 19422 - type: CableHV - components: - - pos: -28.5,-0.5 - parent: 1 - type: Transform -- uid: 19423 - type: CableHV - components: - - pos: -29.5,-0.5 - parent: 1 - type: Transform -- uid: 19424 - type: CableHV - components: - - pos: -30.5,-0.5 - parent: 1 - type: Transform -- uid: 19425 - type: CableHV - components: - - pos: -31.5,-0.5 - parent: 1 - type: Transform -- uid: 19426 - type: CableHV - components: - - pos: -32.5,-0.5 - parent: 1 - type: Transform -- uid: 19427 - type: CableHV - components: - - pos: -33.5,-0.5 - parent: 1 - type: Transform -- uid: 19428 - type: CableHV - components: - - pos: -34.5,-0.5 - parent: 1 - type: Transform -- uid: 19429 - type: CableHV - components: - - pos: -35.5,-0.5 - parent: 1 - type: Transform -- uid: 19430 - type: CableHV - components: - - pos: -36.5,-0.5 - parent: 1 - type: Transform -- uid: 19431 - type: CableHV - components: - - pos: -37.5,-0.5 - parent: 1 - type: Transform -- uid: 19432 - type: CableHV - components: - - pos: -37.5,-1.5 - parent: 1 - type: Transform -- uid: 19433 - type: CableHV - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19434 - type: CableHV - components: - - pos: -36.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19435 - type: CableHV - components: - - pos: -35.5,-2.5 - parent: 1 - type: Transform -- uid: 19436 - type: CableHV - components: - - pos: -34.5,-2.5 - parent: 1 - type: Transform -- uid: 19437 - type: CableMV - components: - - pos: -34.5,-3.5 - parent: 1 - type: Transform -- uid: 19438 - type: WallSolid - components: - - pos: -33.5,-1.5 - parent: 1 - type: Transform -- uid: 19439 - type: SinkStemlessWater - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-3.5 - parent: 1 - type: Transform -- uid: 19440 - type: CableHV - components: - - pos: -34.5,-3.5 - parent: 1 - type: Transform -- uid: 19441 - type: CableMV - components: - - pos: -34.5,-2.5 - parent: 1 - type: Transform -- uid: 19442 - type: CableMV - components: - - pos: -35.5,-2.5 - parent: 1 - type: Transform -- uid: 19443 - type: CableMV - components: - - pos: -36.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19444 - type: CableMV - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19445 - type: CableMV - components: - - pos: -37.5,-1.5 - parent: 1 - type: Transform -- uid: 19446 - type: CableMV - components: - - pos: -37.5,-0.5 - parent: 1 - type: Transform -- uid: 19447 - type: CableMV - components: - - pos: -37.5,0.5 - parent: 1 - type: Transform -- uid: 19448 - type: CableMV - components: - - pos: -38.5,0.5 - parent: 1 - type: Transform -- uid: 19449 - type: CableMV - components: - - pos: -39.5,0.5 - parent: 1 - type: Transform -- uid: 19450 - type: CableMV - components: - - pos: -40.5,0.5 - parent: 1 - type: Transform -- uid: 19451 - type: CableMV - components: - - pos: -41.5,0.5 - parent: 1 - type: Transform -- uid: 19452 - type: CableMV - components: - - pos: -42.5,0.5 - parent: 1 - type: Transform -- uid: 19453 - type: CableMV - components: - - pos: -42.5,1.5 - parent: 1 - type: Transform -- uid: 19454 - type: CableMV - components: - - pos: -42.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19455 - type: APCHighCapacity - components: - - pos: -42.5,2.5 - parent: 1 - type: Transform -- uid: 19456 - type: GasPipeTJunction - components: - - pos: -39.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19457 - type: GasPipeTJunction - components: - - pos: -41.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19458 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -38.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19459 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -39.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19460 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19461 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19462 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19463 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19464 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19465 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19466 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 19467 - type: AirlockMaintLocked - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-1.5 - parent: 1 - type: Transform -- uid: 19468 - type: WallSolid - components: - - pos: -34.5,9.5 - parent: 1 - type: Transform -- uid: 19469 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -36.5,10.5 - parent: 1 - type: Transform -- uid: 19470 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -35.5,10.5 - parent: 1 - type: Transform -- uid: 19471 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -35.5,9.5 - parent: 1 - type: Transform -- uid: 19472 - type: CarpetChapel - components: - - pos: -36.5,9.5 - parent: 1 - type: Transform -- uid: 19473 - type: CarpetChapel - components: - - pos: -36.5,11.5 - parent: 1 - type: Transform -- uid: 19474 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -35.5,11.5 - parent: 1 - type: Transform -- uid: 19475 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -36.5,12.5 - parent: 1 - type: Transform -- uid: 19476 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -35.5,12.5 - parent: 1 - type: Transform -- uid: 19477 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -39.5,12.5 - parent: 1 - type: Transform -- uid: 19478 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -39.5,11.5 - parent: 1 - type: Transform -- uid: 19479 - type: ClothingOuterHoodieChaplain - components: - - pos: -39.238598,16.669107 - parent: 1 - type: Transform -- uid: 19480 - type: CarpetChapel - components: - - pos: -40.5,11.5 - parent: 1 - type: Transform -- uid: 19481 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -40.5,10.5 - parent: 1 - type: Transform -- uid: 19482 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: -39.5,10.5 - parent: 1 - type: Transform -- uid: 19483 - type: CarpetChapel - components: - - pos: -40.5,9.5 - parent: 1 - type: Transform -- uid: 19484 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: -39.5,9.5 - parent: 1 - type: Transform -- uid: 19485 - type: CableApcExtension - components: - - pos: -42.5,15.5 - parent: 1 - type: Transform -- uid: 19486 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -42.5,17.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18243 - Forward: - - port: Left - uid: 18243 - Off: - - port: Middle - uid: 18243 - type: SignalReceiver -- uid: 19487 - type: WallReinforced - components: - - pos: 66.5,-31.5 - parent: 1 - type: Transform -- uid: 19488 - type: WallReinforced - components: - - pos: 66.5,-32.5 - parent: 1 - type: Transform -- uid: 19489 - type: Poweredlight - components: - - pos: 63.5,-28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 19490 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-25.5 - parent: 1 - type: Transform -- uid: 19491 - type: Matchbox - components: - - pos: -38.035473,16.606607 - parent: 1 - type: Transform -- uid: 19492 - type: DisposalPipe - components: - - pos: -42.5,16.5 - parent: 1 - type: Transform -- uid: 19493 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: -40.5,12.5 - parent: 1 - type: Transform -- uid: 19494 - type: Grille - components: - - pos: -40.5,2.5 - parent: 1 - type: Transform -- uid: 19495 - type: Grille - components: - - pos: -39.5,2.5 - parent: 1 - type: Transform -- uid: 19496 - type: Grille - components: - - pos: -36.5,2.5 - parent: 1 - type: Transform -- uid: 19497 - type: Grille - components: - - pos: -39.5,7.5 - parent: 1 - type: Transform -- uid: 19498 - type: FoodBreadBanana - components: - - pos: -36.588596,16.602194 - parent: 1 - type: Transform -- uid: 19499 - type: DrinkBottleWine - components: - - pos: -37.38547,16.742819 - parent: 1 - type: Transform -- uid: 19500 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-24.5 - parent: 1 - type: Transform -- uid: 19501 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-23.5 - parent: 1 - type: Transform -- uid: 19502 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-22.5 - parent: 1 - type: Transform -- uid: 19503 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-21.5 - parent: 1 - type: Transform -- uid: 19504 - type: Barricade - components: - - rot: 3.141592653589793 rad - pos: 20.5,-49.5 - parent: 1 - type: Transform -- uid: 19505 - type: Barricade - components: - - rot: 3.141592653589793 rad - pos: 67.5,-61.5 - parent: 1 - type: Transform -- uid: 19506 - type: AirlockMaintGlass - components: - - pos: 57.5,-27.5 - parent: 1 - type: Transform -- uid: 19507 - type: Catwalk - components: - - pos: 67.5,-18.5 - parent: 1 - type: Transform -- uid: 19508 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -38.5,15.5 - parent: 1 - type: Transform -- uid: 19509 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -38.5,14.5 - parent: 1 - type: Transform -- uid: 19510 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -38.5,13.5 - parent: 1 - type: Transform -- uid: 19511 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -38.5,12.5 - parent: 1 - type: Transform -- uid: 19512 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -38.5,11.5 - parent: 1 - type: Transform -- uid: 19513 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -38.5,10.5 - parent: 1 - type: Transform -- uid: 19514 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -38.5,9.5 - parent: 1 - type: Transform -- uid: 19515 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -38.5,8.5 - parent: 1 - type: Transform -- uid: 19516 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -37.5,15.5 - parent: 1 - type: Transform -- uid: 19517 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -37.5,14.5 - parent: 1 - type: Transform -- uid: 19518 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -37.5,13.5 - parent: 1 - type: Transform -- uid: 19519 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -37.5,12.5 - parent: 1 - type: Transform -- uid: 19520 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -37.5,11.5 - parent: 1 - type: Transform -- uid: 19521 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -37.5,10.5 - parent: 1 - type: Transform -- uid: 19522 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -37.5,9.5 - parent: 1 - type: Transform -- uid: 19523 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -37.5,8.5 - parent: 1 - type: Transform -- uid: 19524 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -40.5,12.5 - parent: 1 - type: Transform -- uid: 19525 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -32.5,13.5 - parent: 1 - type: Transform -- uid: 19526 - type: CableApcExtension - components: - - pos: -42.5,2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19527 - type: CableApcExtension - components: - - pos: -42.5,1.5 - parent: 1 - type: Transform -- uid: 19528 - type: CableApcExtension - components: - - pos: -41.5,1.5 - parent: 1 - type: Transform -- uid: 19529 - type: CableApcExtension - components: - - pos: -40.5,1.5 - parent: 1 - type: Transform -- uid: 19530 - type: CableApcExtension - components: - - pos: -39.5,1.5 - parent: 1 - type: Transform -- uid: 19531 - type: CableApcExtension - components: - - pos: -38.5,1.5 - parent: 1 - type: Transform -- uid: 19532 - type: CableApcExtension - components: - - pos: -37.5,1.5 - parent: 1 - type: Transform -- uid: 19533 - type: CableApcExtension - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform -- uid: 19534 - type: CableApcExtension - components: - - pos: -37.5,3.5 - parent: 1 - type: Transform -- uid: 19535 - type: CableApcExtension - components: - - pos: -37.5,4.5 - parent: 1 - type: Transform -- uid: 19536 - type: CableApcExtension - components: - - pos: -37.5,5.5 - parent: 1 - type: Transform -- uid: 19537 - type: CableApcExtension - components: - - pos: -37.5,6.5 - parent: 1 - type: Transform -- uid: 19538 - type: CableApcExtension - components: - - pos: -37.5,7.5 - parent: 1 - type: Transform -- uid: 19539 - type: CableApcExtension - components: - - pos: -37.5,8.5 - parent: 1 - type: Transform -- uid: 19540 - type: CableApcExtension - components: - - pos: -37.5,9.5 - parent: 1 - type: Transform -- uid: 19541 - type: CableApcExtension - components: - - pos: -37.5,10.5 - parent: 1 - type: Transform -- uid: 19542 - type: CableApcExtension - components: - - pos: -37.5,11.5 - parent: 1 - type: Transform -- uid: 19543 - type: CableApcExtension - components: - - pos: -37.5,12.5 - parent: 1 - type: Transform -- uid: 19544 - type: CableApcExtension - components: - - pos: -37.5,13.5 - parent: 1 - type: Transform -- uid: 19545 - type: CableApcExtension - components: - - pos: -38.5,13.5 - parent: 1 - type: Transform -- uid: 19546 - type: CableApcExtension - components: - - pos: -39.5,13.5 - parent: 1 - type: Transform -- uid: 19547 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -41.5,13.5 - parent: 1 - type: Transform -- uid: 19548 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -41.5,16.5 - parent: 1 - type: Transform -- uid: 19549 - type: CableApcExtension - components: - - pos: -42.5,13.5 - parent: 1 - type: Transform -- uid: 19550 - type: CableApcExtension - components: - - pos: -42.5,14.5 - parent: 1 - type: Transform -- uid: 19551 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -41.5,14.5 - parent: 1 - type: Transform -- uid: 19552 - type: CableApcExtension - components: - - pos: -39.5,14.5 - parent: 1 - type: Transform -- uid: 19553 - type: CableApcExtension - components: - - pos: -39.5,15.5 - parent: 1 - type: Transform -- uid: 19554 - type: CableApcExtension - components: - - pos: -36.5,13.5 - parent: 1 - type: Transform -- uid: 19555 - type: CableApcExtension - components: - - pos: -35.5,13.5 - parent: 1 - type: Transform -- uid: 19556 - type: CableApcExtension - components: - - pos: -34.5,13.5 - parent: 1 - type: Transform -- uid: 19557 - type: CableApcExtension - components: - - pos: -33.5,13.5 - parent: 1 - type: Transform -- uid: 19558 - type: CableApcExtension - components: - - pos: -35.5,14.5 - parent: 1 - type: Transform -- uid: 19559 - type: CableApcExtension - components: - - pos: -35.5,15.5 - parent: 1 - type: Transform -- uid: 19560 - type: CableApcExtension - components: - - pos: -33.5,14.5 - parent: 1 - type: Transform -- uid: 19561 - type: CableApcExtension - components: - - pos: -32.5,14.5 - parent: 1 - type: Transform -- uid: 19562 - type: CableApcExtension - components: - - pos: -31.5,14.5 - parent: 1 - type: Transform -- uid: 19563 - type: CableApcExtension - components: - - pos: -30.5,14.5 - parent: 1 - type: Transform -- uid: 19564 - type: CableApcExtension - components: - - pos: -30.5,13.5 - parent: 1 - type: Transform -- uid: 19565 - type: CableApcExtension - components: - - pos: -30.5,12.5 - parent: 1 - type: Transform -- uid: 19566 - type: CableApcExtension - components: - - pos: -30.5,11.5 - parent: 1 - type: Transform -- uid: 19567 - type: CableApcExtension - components: - - pos: -30.5,10.5 - parent: 1 - type: Transform -- uid: 19568 - type: CableApcExtension - components: - - pos: -30.5,9.5 - parent: 1 - type: Transform -- uid: 19569 - type: CableApcExtension - components: - - pos: -30.5,8.5 - parent: 1 - type: Transform -- uid: 19570 - type: CableApcExtension - components: - - pos: -31.5,10.5 - parent: 1 - type: Transform -- uid: 19571 - type: CableApcExtension - components: - - pos: -32.5,10.5 - parent: 1 - type: Transform -- uid: 19572 - type: CableApcExtension - components: - - pos: -33.5,10.5 - parent: 1 - type: Transform -- uid: 19573 - type: CableApcExtension - components: - - pos: -29.5,9.5 - parent: 1 - type: Transform -- uid: 19574 - type: CableApcExtension - components: - - pos: -28.5,9.5 - parent: 1 - type: Transform -- uid: 19575 - type: CableApcExtension - components: - - pos: -30.5,7.5 - parent: 1 - type: Transform -- uid: 19576 - type: hydroponicsSoil - components: - - name: grave - type: MetaData - - pos: -31.5,6.5 - parent: 1 - type: Transform -- uid: 19577 - type: hydroponicsSoil - components: - - name: grave - type: MetaData - - pos: -31.5,4.5 - parent: 1 - type: Transform -- uid: 19578 - type: hydroponicsSoil - components: - - name: grave - type: MetaData - - pos: -29.5,6.5 - parent: 1 - type: Transform -- uid: 19579 - type: HydroponicsToolMiniHoe - components: - - pos: -28.501194,4.4131045 - parent: 1 - type: Transform -- uid: 19580 - type: HydroponicsToolSpade - components: - - pos: -28.61099,3.5269613 - parent: 1 - type: Transform -- uid: 19581 - type: AirlockGlass - components: - - pos: -30.5,7.5 - parent: 1 - type: Transform -- uid: 19582 - type: hydroponicsSoil - components: - - name: grave - type: MetaData - - pos: -29.5,4.5 - parent: 1 - type: Transform -- uid: 19583 - type: CableApcExtension - components: - - pos: -37.5,0.5 - parent: 1 - type: Transform -- uid: 19584 - type: CableApcExtension - components: - - pos: -37.5,-0.5 - parent: 1 - type: Transform -- uid: 19585 - type: CableApcExtension - components: - - pos: -37.5,-1.5 - parent: 1 - type: Transform -- uid: 19586 - type: CableApcExtension - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19587 - type: CableApcExtension - components: - - pos: -38.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19588 - type: CableApcExtension - components: - - pos: -39.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19589 - type: CableApcExtension - components: - - pos: -40.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19590 - type: CableApcExtension - components: - - pos: -41.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19591 - type: CableApcExtension - components: - - pos: -42.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19592 - type: CableApcExtension - components: - - pos: -42.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19593 - type: CableApcExtension - components: - - pos: -43.5,-3.5 - parent: 1 - type: Transform -- uid: 19594 - type: CableApcExtension - components: - - pos: -44.5,-3.5 - parent: 1 - type: Transform -- uid: 19595 - type: CableApcExtension - components: - - pos: -45.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 19596 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,61.5 - parent: 1 - type: Transform -- uid: 19597 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,60.5 - parent: 1 - type: Transform -- uid: 19598 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,59.5 - parent: 1 - type: Transform -- uid: 19599 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,58.5 - parent: 1 - type: Transform -- uid: 19600 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -45.5,61.5 - parent: 1 - type: Transform -- uid: 19601 - type: AsteroidRock - components: - - pos: -59.5,67.5 - parent: 1 - type: Transform -- uid: 19602 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -45.5,59.5 - parent: 1 - type: Transform -- uid: 19603 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -45.5,58.5 - parent: 1 - type: Transform -- uid: 19604 - type: AsteroidRock - components: - - pos: -58.5,70.5 - parent: 1 - type: Transform -- uid: 19605 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -44.5,60.5 - parent: 1 - type: Transform -- uid: 19606 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -44.5,59.5 - parent: 1 - type: Transform -- uid: 19607 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -44.5,58.5 - parent: 1 - type: Transform -- uid: 19608 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -43.5,61.5 - parent: 1 - type: Transform -- uid: 19609 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -43.5,60.5 - parent: 1 - type: Transform -- uid: 19610 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -43.5,59.5 - parent: 1 - type: Transform -- uid: 19611 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -43.5,58.5 - parent: 1 - type: Transform -- uid: 19612 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,61.5 - parent: 1 - type: Transform -- uid: 19613 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,60.5 - parent: 1 - type: Transform -- uid: 19614 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,59.5 - parent: 1 - type: Transform -- uid: 19615 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,58.5 - parent: 1 - type: Transform -- uid: 19616 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -52.5,63.5 - parent: 1 - type: Transform -- uid: 19617 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -52.5,62.5 - parent: 1 - type: Transform -- uid: 19618 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -52.5,61.5 - parent: 1 - type: Transform -- uid: 19619 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -52.5,60.5 - parent: 1 - type: Transform -- uid: 19620 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -52.5,59.5 - parent: 1 - type: Transform -- uid: 19621 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -52.5,58.5 - parent: 1 - type: Transform -- uid: 19622 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -52.5,57.5 - parent: 1 - type: Transform -- uid: 19623 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -51.5,63.5 - parent: 1 - type: Transform -- uid: 19624 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -51.5,62.5 - parent: 1 - type: Transform -- uid: 19625 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -51.5,61.5 - parent: 1 - type: Transform -- uid: 19626 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -51.5,60.5 - parent: 1 - type: Transform -- uid: 19627 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -51.5,59.5 - parent: 1 - type: Transform -- uid: 19628 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -51.5,58.5 - parent: 1 - type: Transform -- uid: 19629 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -51.5,57.5 - parent: 1 - type: Transform -- uid: 19630 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -50.5,63.5 - parent: 1 - type: Transform -- uid: 19631 - type: AsteroidRock - components: - - pos: -37.5,68.5 - parent: 1 - type: Transform -- uid: 19632 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -50.5,61.5 - parent: 1 - type: Transform -- uid: 19633 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -50.5,60.5 - parent: 1 - type: Transform -- uid: 19634 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -50.5,59.5 - parent: 1 - type: Transform -- uid: 19635 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -50.5,58.5 - parent: 1 - type: Transform -- uid: 19636 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -50.5,57.5 - parent: 1 - type: Transform -- uid: 19637 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -49.5,63.5 - parent: 1 - type: Transform -- uid: 19638 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -49.5,62.5 - parent: 1 - type: Transform -- uid: 19639 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -49.5,61.5 - parent: 1 - type: Transform -- uid: 19640 - type: AsteroidRock - components: - - pos: -38.5,69.5 - parent: 1 - type: Transform -- uid: 19641 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -49.5,59.5 - parent: 1 - type: Transform -- uid: 19642 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -49.5,58.5 - parent: 1 - type: Transform -- uid: 19643 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -49.5,57.5 - parent: 1 - type: Transform -- uid: 19644 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,63.5 - parent: 1 - type: Transform -- uid: 19645 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,62.5 - parent: 1 - type: Transform -- uid: 19646 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,61.5 - parent: 1 - type: Transform -- uid: 19647 - type: AsteroidRock - components: - - pos: -56.5,61.5 - parent: 1 - type: Transform -- uid: 19648 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,59.5 - parent: 1 - type: Transform -- uid: 19649 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,58.5 - parent: 1 - type: Transform -- uid: 19650 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,57.5 - parent: 1 - type: Transform -- uid: 19651 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,63.5 - parent: 1 - type: Transform -- uid: 19652 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,62.5 - parent: 1 - type: Transform -- uid: 19653 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,61.5 - parent: 1 - type: Transform -- uid: 19654 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,60.5 - parent: 1 - type: Transform -- uid: 19655 - type: AsteroidRock - components: - - pos: -59.5,69.5 - parent: 1 - type: Transform -- uid: 19656 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,58.5 - parent: 1 - type: Transform -- uid: 19657 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,57.5 - parent: 1 - type: Transform -- uid: 19658 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,63.5 - parent: 1 - type: Transform -- uid: 19659 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,62.5 - parent: 1 - type: Transform -- uid: 19660 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,61.5 - parent: 1 - type: Transform -- uid: 19661 - type: AsteroidRock - components: - - pos: -59.5,66.5 - parent: 1 - type: Transform -- uid: 19662 - type: AsteroidRock - components: - - pos: -59.5,68.5 - parent: 1 - type: Transform -- uid: 19663 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,58.5 - parent: 1 - type: Transform -- uid: 19664 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,57.5 - parent: 1 - type: Transform -- uid: 19665 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -53.5,62.5 - parent: 1 - type: Transform -- uid: 19666 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -53.5,61.5 - parent: 1 - type: Transform -- uid: 19667 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -53.5,60.5 - parent: 1 - type: Transform -- uid: 19668 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -54.5,61.5 - parent: 1 - type: Transform -- uid: 19669 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -53.5,59.5 - parent: 1 - type: Transform -- uid: 19670 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -54.5,58.5 - parent: 1 - type: Transform -- uid: 19671 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -54.5,60.5 - parent: 1 - type: Transform -- uid: 19672 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -53.5,58.5 - parent: 1 - type: Transform -- uid: 19673 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -54.5,59.5 - parent: 1 - type: Transform -- uid: 19674 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -53.5,57.5 - parent: 1 - type: Transform -- uid: 19675 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -52.5,57.5 - parent: 1 - type: Transform -- uid: 19676 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -52.5,56.5 - parent: 1 - type: Transform -- uid: 19677 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -51.5,57.5 - parent: 1 - type: Transform -- uid: 19678 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -51.5,56.5 - parent: 1 - type: Transform -- uid: 19679 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -50.5,57.5 - parent: 1 - type: Transform -- uid: 19680 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -50.5,56.5 - parent: 1 - type: Transform -- uid: 19681 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -49.5,57.5 - parent: 1 - type: Transform -- uid: 19682 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -49.5,56.5 - parent: 1 - type: Transform -- uid: 19683 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,57.5 - parent: 1 - type: Transform -- uid: 19684 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,56.5 - parent: 1 - type: Transform -- uid: 19685 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,57.5 - parent: 1 - type: Transform -- uid: 19686 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,56.5 - parent: 1 - type: Transform -- uid: 19687 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,57.5 - parent: 1 - type: Transform -- uid: 19688 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,56.5 - parent: 1 - type: Transform -- uid: 19689 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,57.5 - parent: 1 - type: Transform -- uid: 19690 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,56.5 - parent: 1 - type: Transform -- uid: 19691 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,55.5 - parent: 1 - type: Transform -- uid: 19692 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,57.5 - parent: 1 - type: Transform -- uid: 19693 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,56.5 - parent: 1 - type: Transform -- uid: 19694 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,55.5 - parent: 1 - type: Transform -- uid: 19695 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,57.5 - parent: 1 - type: Transform -- uid: 19696 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,56.5 - parent: 1 - type: Transform -- uid: 19697 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,55.5 - parent: 1 - type: Transform -- uid: 19698 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -45.5,57.5 - parent: 1 - type: Transform -- uid: 19699 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -45.5,56.5 - parent: 1 - type: Transform -- uid: 19700 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -45.5,55.5 - parent: 1 - type: Transform -- uid: 19701 - type: AsteroidRock - components: - - pos: -36.5,59.5 - parent: 1 - type: Transform -- uid: 19702 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -44.5,56.5 - parent: 1 - type: Transform -- uid: 19703 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -44.5,55.5 - parent: 1 - type: Transform -- uid: 19704 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -43.5,57.5 - parent: 1 - type: Transform -- uid: 19705 - type: AsteroidRock - components: - - pos: -37.5,58.5 - parent: 1 - type: Transform -- uid: 19706 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -43.5,55.5 - parent: 1 - type: Transform -- uid: 19707 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,57.5 - parent: 1 - type: Transform -- uid: 19708 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,56.5 - parent: 1 - type: Transform -- uid: 19709 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,55.5 - parent: 1 - type: Transform -- uid: 19710 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -49.5,69.5 - parent: 1 - type: Transform -- uid: 19711 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -49.5,68.5 - parent: 1 - type: Transform -- uid: 19712 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -49.5,67.5 - parent: 1 - type: Transform -- uid: 19713 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -49.5,66.5 - parent: 1 - type: Transform -- uid: 19714 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -49.5,65.5 - parent: 1 - type: Transform -- uid: 19715 - type: AsteroidRock - components: - - pos: -37.5,69.5 - parent: 1 - type: Transform -- uid: 19716 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -49.5,63.5 - parent: 1 - type: Transform -- uid: 19717 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,69.5 - parent: 1 - type: Transform -- uid: 19718 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -53.5,69.5 - parent: 1 - type: Transform -- uid: 19719 - type: AsteroidRock - components: - - pos: -39.5,55.5 - parent: 1 - type: Transform -- uid: 19720 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -53.5,67.5 - parent: 1 - type: Transform -- uid: 19721 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -53.5,66.5 - parent: 1 - type: Transform -- uid: 19722 - type: AsteroidRock - components: - - pos: -46.5,54.5 - parent: 1 - type: Transform -- uid: 19723 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -53.5,64.5 - parent: 1 - type: Transform -- uid: 19724 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -53.5,63.5 - parent: 1 - type: Transform -- uid: 19725 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -52.5,69.5 - parent: 1 - type: Transform -- uid: 19726 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -52.5,68.5 - parent: 1 - type: Transform -- uid: 19727 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -52.5,67.5 - parent: 1 - type: Transform -- uid: 19728 - type: AsteroidRock - components: - - pos: -44.5,54.5 - parent: 1 - type: Transform -- uid: 19729 - type: AsteroidRock - components: - - pos: -45.5,54.5 - parent: 1 - type: Transform -- uid: 19730 - type: AsteroidRock - components: - - pos: -43.5,54.5 - parent: 1 - type: Transform -- uid: 19731 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -52.5,63.5 - parent: 1 - type: Transform -- uid: 19732 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -51.5,69.5 - parent: 1 - type: Transform -- uid: 19733 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -51.5,68.5 - parent: 1 - type: Transform -- uid: 19734 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -51.5,67.5 - parent: 1 - type: Transform -- uid: 19735 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -51.5,66.5 - parent: 1 - type: Transform -- uid: 19736 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -51.5,65.5 - parent: 1 - type: Transform -- uid: 19737 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -51.5,64.5 - parent: 1 - type: Transform -- uid: 19738 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -51.5,63.5 - parent: 1 - type: Transform -- uid: 19739 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -50.5,69.5 - parent: 1 - type: Transform -- uid: 19740 - type: AsteroidRock - components: - - pos: -49.5,54.5 - parent: 1 - type: Transform -- uid: 19741 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -50.5,67.5 - parent: 1 - type: Transform -- uid: 19742 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -50.5,66.5 - parent: 1 - type: Transform -- uid: 19743 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -50.5,65.5 - parent: 1 - type: Transform -- uid: 19744 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -50.5,64.5 - parent: 1 - type: Transform -- uid: 19745 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -50.5,63.5 - parent: 1 - type: Transform -- uid: 19746 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -57.5,69.5 - parent: 1 - type: Transform -- uid: 19747 - type: AsteroidRock - components: - - pos: -47.5,54.5 - parent: 1 - type: Transform -- uid: 19748 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -57.5,67.5 - parent: 1 - type: Transform -- uid: 19749 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -57.5,66.5 - parent: 1 - type: Transform -- uid: 19750 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -57.5,65.5 - parent: 1 - type: Transform -- uid: 19751 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -57.5,64.5 - parent: 1 - type: Transform -- uid: 19752 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -57.5,63.5 - parent: 1 - type: Transform -- uid: 19753 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -56.5,69.5 - parent: 1 - type: Transform -- uid: 19754 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -56.5,68.5 - parent: 1 - type: Transform -- uid: 19755 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -56.5,67.5 - parent: 1 - type: Transform -- uid: 19756 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -56.5,66.5 - parent: 1 - type: Transform -- uid: 19757 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -56.5,65.5 - parent: 1 - type: Transform -- uid: 19758 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -56.5,64.5 - parent: 1 - type: Transform -- uid: 19759 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -56.5,63.5 - parent: 1 - type: Transform -- uid: 19760 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -55.5,69.5 - parent: 1 - type: Transform -- uid: 19761 - type: AsteroidRock - components: - - pos: -38.5,55.5 - parent: 1 - type: Transform -- uid: 19762 - type: AsteroidRock - components: - - pos: -37.5,57.5 - parent: 1 - type: Transform -- uid: 19763 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -55.5,66.5 - parent: 1 - type: Transform -- uid: 19764 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -55.5,65.5 - parent: 1 - type: Transform -- uid: 19765 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -55.5,64.5 - parent: 1 - type: Transform -- uid: 19766 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -55.5,63.5 - parent: 1 - type: Transform -- uid: 19767 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -54.5,69.5 - parent: 1 - type: Transform -- uid: 19768 - type: AsteroidRock - components: - - pos: -37.5,56.5 - parent: 1 - type: Transform -- uid: 19769 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -54.5,67.5 - parent: 1 - type: Transform -- uid: 19770 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -54.5,66.5 - parent: 1 - type: Transform -- uid: 19771 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -54.5,65.5 - parent: 1 - type: Transform -- uid: 19772 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -54.5,64.5 - parent: 1 - type: Transform -- uid: 19773 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -54.5,63.5 - parent: 1 - type: Transform -- uid: 19774 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,68.5 - parent: 1 - type: Transform -- uid: 19775 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,67.5 - parent: 1 - type: Transform -- uid: 19776 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,66.5 - parent: 1 - type: Transform -- uid: 19777 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,65.5 - parent: 1 - type: Transform -- uid: 19778 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,64.5 - parent: 1 - type: Transform -- uid: 19779 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -48.5,63.5 - parent: 1 - type: Transform -- uid: 19780 - type: AsteroidRock - components: - - pos: -48.5,54.5 - parent: 1 - type: Transform -- uid: 19781 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -54.5,69.5 - parent: 1 - type: Transform -- uid: 19782 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -54.5,70.5 - parent: 1 - type: Transform -- uid: 19783 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -53.5,70.5 - parent: 1 - type: Transform -- uid: 19784 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -52.5,70.5 - parent: 1 - type: Transform -- uid: 19785 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -56.5,70.5 - parent: 1 - type: Transform -- uid: 19786 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -58.5,68.5 - parent: 1 - type: Transform -- uid: 19787 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -58.5,66.5 - parent: 1 - type: Transform -- uid: 19788 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -58.5,67.5 - parent: 1 - type: Transform -- uid: 19789 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -40.5,67.5 - parent: 1 - type: Transform -- uid: 19790 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -40.5,66.5 - parent: 1 - type: Transform -- uid: 19791 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -40.5,65.5 - parent: 1 - type: Transform -- uid: 19792 - type: AsteroidRock - components: - - pos: -36.5,67.5 - parent: 1 - type: Transform -- uid: 19793 - type: AsteroidRock - components: - - pos: -35.5,67.5 - parent: 1 - type: Transform -- uid: 19794 - type: AsteroidRock - components: - - pos: -35.5,64.5 - parent: 1 - type: Transform -- uid: 19795 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -40.5,61.5 - parent: 1 - type: Transform -- uid: 19796 - type: AsteroidRock - components: - - pos: -36.5,61.5 - parent: 1 - type: Transform -- uid: 19797 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,67.5 - parent: 1 - type: Transform -- uid: 19798 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,66.5 - parent: 1 - type: Transform -- uid: 19799 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,65.5 - parent: 1 - type: Transform -- uid: 19800 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,64.5 - parent: 1 - type: Transform -- uid: 19801 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,63.5 - parent: 1 - type: Transform -- uid: 19802 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,62.5 - parent: 1 - type: Transform -- uid: 19803 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,61.5 - parent: 1 - type: Transform -- uid: 19804 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -47.5,60.5 - parent: 1 - type: Transform -- uid: 19805 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,67.5 - parent: 1 - type: Transform -- uid: 19806 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,66.5 - parent: 1 - type: Transform -- uid: 19807 - type: AsteroidRock - components: - - pos: -36.5,68.5 - parent: 1 - type: Transform -- uid: 19808 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,64.5 - parent: 1 - type: Transform -- uid: 19809 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,63.5 - parent: 1 - type: Transform -- uid: 19810 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,62.5 - parent: 1 - type: Transform -- uid: 19811 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,61.5 - parent: 1 - type: Transform -- uid: 19812 - type: AsteroidRock - components: - - pos: -55.5,71.5 - parent: 1 - type: Transform -- uid: 19813 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -45.5,67.5 - parent: 1 - type: Transform -- uid: 19814 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -45.5,66.5 - parent: 1 - type: Transform -- uid: 19815 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -45.5,65.5 - parent: 1 - type: Transform -- uid: 19816 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -45.5,64.5 - parent: 1 - type: Transform -- uid: 19817 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -45.5,63.5 - parent: 1 - type: Transform -- uid: 19818 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -45.5,62.5 - parent: 1 - type: Transform -- uid: 19819 - type: AsteroidRock - components: - - pos: -58.5,64.5 - parent: 1 - type: Transform -- uid: 19820 - type: AsteroidRock - components: - - pos: -56.5,71.5 - parent: 1 - type: Transform -- uid: 19821 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -44.5,67.5 - parent: 1 - type: Transform -- uid: 19822 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -44.5,66.5 - parent: 1 - type: Transform -- uid: 19823 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -44.5,65.5 - parent: 1 - type: Transform -- uid: 19824 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -44.5,64.5 - parent: 1 - type: Transform -- uid: 19825 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -44.5,63.5 - parent: 1 - type: Transform -- uid: 19826 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -44.5,62.5 - parent: 1 - type: Transform -- uid: 19827 - type: AsteroidRock - components: - - pos: -57.5,70.5 - parent: 1 - type: Transform -- uid: 19828 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -44.5,60.5 - parent: 1 - type: Transform -- uid: 19829 - type: AsteroidRock - components: - - pos: -40.5,54.5 - parent: 1 - type: Transform -- uid: 19830 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -43.5,66.5 - parent: 1 - type: Transform -- uid: 19831 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -43.5,65.5 - parent: 1 - type: Transform -- uid: 19832 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -43.5,64.5 - parent: 1 - type: Transform -- uid: 19833 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -43.5,63.5 - parent: 1 - type: Transform -- uid: 19834 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -43.5,62.5 - parent: 1 - type: Transform -- uid: 19835 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -43.5,61.5 - parent: 1 - type: Transform -- uid: 19836 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -43.5,60.5 - parent: 1 - type: Transform -- uid: 19837 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,67.5 - parent: 1 - type: Transform -- uid: 19838 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,66.5 - parent: 1 - type: Transform -- uid: 19839 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,65.5 - parent: 1 - type: Transform -- uid: 19840 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,64.5 - parent: 1 - type: Transform -- uid: 19841 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,63.5 - parent: 1 - type: Transform -- uid: 19842 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,62.5 - parent: 1 - type: Transform -- uid: 19843 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,61.5 - parent: 1 - type: Transform -- uid: 19844 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,60.5 - parent: 1 - type: Transform -- uid: 19845 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -41.5,67.5 - parent: 1 - type: Transform -- uid: 19846 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -41.5,66.5 - parent: 1 - type: Transform -- uid: 19847 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -41.5,65.5 - parent: 1 - type: Transform -- uid: 19848 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -41.5,64.5 - parent: 1 - type: Transform -- uid: 19849 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -41.5,63.5 - parent: 1 - type: Transform -- uid: 19850 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -41.5,62.5 - parent: 1 - type: Transform -- uid: 19851 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -41.5,61.5 - parent: 1 - type: Transform -- uid: 19852 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -41.5,60.5 - parent: 1 - type: Transform -- uid: 19853 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -39.5,67.5 - parent: 1 - type: Transform -- uid: 19854 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -39.5,66.5 - parent: 1 - type: Transform -- uid: 19855 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -39.5,65.5 - parent: 1 - type: Transform -- uid: 19856 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -39.5,64.5 - parent: 1 - type: Transform -- uid: 19857 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -39.5,63.5 - parent: 1 - type: Transform -- uid: 19858 - type: AsteroidRock - components: - - pos: -35.5,61.5 - parent: 1 - type: Transform -- uid: 19859 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -39.5,61.5 - parent: 1 - type: Transform -- uid: 19860 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -39.5,60.5 - parent: 1 - type: Transform -- uid: 19861 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -38.5,67.5 - parent: 1 - type: Transform -- uid: 19862 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -38.5,66.5 - parent: 1 - type: Transform -- uid: 19863 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -38.5,65.5 - parent: 1 - type: Transform -- uid: 19864 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -38.5,64.5 - parent: 1 - type: Transform -- uid: 19865 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -38.5,63.5 - parent: 1 - type: Transform -- uid: 19866 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -38.5,62.5 - parent: 1 - type: Transform -- uid: 19867 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -38.5,61.5 - parent: 1 - type: Transform -- uid: 19868 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -38.5,60.5 - parent: 1 - type: Transform -- uid: 19869 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -37.5,67.5 - parent: 1 - type: Transform -- uid: 19870 - type: FloraRockSolid03 - components: - - pos: -36.12132,66.345604 - parent: 1 - type: Transform -- uid: 19871 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -37.5,65.5 - parent: 1 - type: Transform -- uid: 19872 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -37.5,64.5 - parent: 1 - type: Transform -- uid: 19873 - type: Grille - components: - - pos: -1.5,50.5 - parent: 1 - type: Transform -- uid: 19874 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -37.5,62.5 - parent: 1 - type: Transform -- uid: 19875 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -37.5,61.5 - parent: 1 - type: Transform -- uid: 19876 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -37.5,60.5 - parent: 1 - type: Transform -- uid: 19877 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -45.5,68.5 - parent: 1 - type: Transform -- uid: 19878 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -44.5,68.5 - parent: 1 - type: Transform -- uid: 19879 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -43.5,68.5 - parent: 1 - type: Transform -- uid: 19880 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,68.5 - parent: 1 - type: Transform -- uid: 19881 - type: AsteroidRock - components: - - pos: -41.5,54.5 - parent: 1 - type: Transform -- uid: 19882 - type: AsteroidRock - components: - - pos: -42.5,54.5 - parent: 1 - type: Transform -- uid: 19883 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -39.5,68.5 - parent: 1 - type: Transform -- uid: 19884 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -38.5,68.5 - parent: 1 - type: Transform -- uid: 19885 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -43.5,69.5 - parent: 1 - type: Transform -- uid: 19886 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,69.5 - parent: 1 - type: Transform -- uid: 19887 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -41.5,69.5 - parent: 1 - type: Transform -- uid: 19888 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -40.5,69.5 - parent: 1 - type: Transform -- uid: 19889 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -40.5,69.5 - parent: 1 - type: Transform -- uid: 19890 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -39.5,69.5 - parent: 1 - type: Transform -- uid: 19891 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -46.5,68.5 - parent: 1 - type: Transform -- uid: 19892 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -38.5,59.5 - parent: 1 - type: Transform -- uid: 19893 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -38.5,58.5 - parent: 1 - type: Transform -- uid: 19894 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -38.5,57.5 - parent: 1 - type: Transform -- uid: 19895 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -39.5,59.5 - parent: 1 - type: Transform -- uid: 19896 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -39.5,58.5 - parent: 1 - type: Transform -- uid: 19897 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -39.5,57.5 - parent: 1 - type: Transform -- uid: 19898 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -40.5,59.5 - parent: 1 - type: Transform -- uid: 19899 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -40.5,58.5 - parent: 1 - type: Transform -- uid: 19900 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -40.5,57.5 - parent: 1 - type: Transform -- uid: 19901 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -41.5,59.5 - parent: 1 - type: Transform -- uid: 19902 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -41.5,58.5 - parent: 1 - type: Transform -- uid: 19903 - type: AsteroidRock - components: - - pos: -37.5,59.5 - parent: 1 - type: Transform -- uid: 19904 - type: AsteroidRock - components: - - pos: -36.5,60.5 - parent: 1 - type: Transform -- uid: 19905 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,58.5 - parent: 1 - type: Transform -- uid: 19906 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -42.5,57.5 - parent: 1 - type: Transform -- uid: 19907 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -40.5,57.5 - parent: 1 - type: Transform -- uid: 19908 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -41.5,56.5 - parent: 1 - type: Transform -- uid: 19909 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -39.5,56.5 - parent: 1 - type: Transform -- uid: 19910 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -40.5,56.5 - parent: 1 - type: Transform -- uid: 19911 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: -56.5,62.5 - parent: 1 - type: Transform -- uid: 19912 - type: AsteroidRock - components: - - pos: -54.5,71.5 - parent: 1 - type: Transform -- uid: 19913 - type: AsteroidRock - components: - - pos: -53.5,71.5 - parent: 1 - type: Transform -- uid: 19914 - type: AsteroidRock - components: - - pos: -52.5,71.5 - parent: 1 - type: Transform -- uid: 19915 - type: AsteroidRock - components: - - pos: -50.5,70.5 - parent: 1 - type: Transform -- uid: 19916 - type: AsteroidRock - components: - - pos: -49.5,70.5 - parent: 1 - type: Transform -- uid: 19917 - type: AsteroidRock - components: - - pos: -46.5,69.5 - parent: 1 - type: Transform -- uid: 19918 - type: AsteroidRock - components: - - pos: -45.5,69.5 - parent: 1 - type: Transform -- uid: 19919 - type: AsteroidRock - components: - - pos: -44.5,69.5 - parent: 1 - type: Transform -- uid: 19920 - type: AsteroidRock - components: - - pos: -43.5,70.5 - parent: 1 - type: Transform -- uid: 19921 - type: AsteroidRock - components: - - pos: -42.5,70.5 - parent: 1 - type: Transform -- uid: 19922 - type: AsteroidRock - components: - - pos: -41.5,70.5 - parent: 1 - type: Transform -- uid: 19923 - type: AsteroidRock - components: - - pos: -40.5,70.5 - parent: 1 - type: Transform -- uid: 19924 - type: AsteroidRock - components: - - pos: -36.5,64.5 - parent: 1 - type: Transform -- uid: 19925 - type: RandomArtifactSpawner - components: - - pos: -46.5,65.5 - parent: 1 - type: Transform -- uid: 19926 - type: RandomSoap - components: - - pos: -50.5,62.5 - parent: 1 - type: Transform -- uid: 19927 - type: ClothingOuterSuitChicken - components: - - pos: -41.535904,57.643673 - parent: 1 - type: Transform -- uid: 19928 - type: ClothingOuterSuitShrineMaiden - components: - - pos: -40.48903,63.987423 - parent: 1 - type: Transform -- uid: 19929 - type: PowerDrill - components: - - pos: -52.61403,65.565544 - parent: 1 - type: Transform -- uid: 19930 - type: ClothingHeadHatChickenhead - components: - - pos: -38.364468,56.565044 - parent: 1 - type: Transform -- uid: 19931 - type: ClothingHeadHatAnimalHeadslime - components: - - pos: -48.252262,60.451523 - parent: 1 - type: Transform -- uid: 19932 - type: AMEJar - components: - - pos: -49.455143,64.63223 - parent: 1 - type: Transform -- uid: 19933 - type: SpawnMobBear - components: - - pos: -37.5,63.5 - parent: 1 - type: Transform -- uid: 19934 - type: PlushieSharkGrey - components: - - pos: -56.49192,-87.62071 - parent: 1 - type: Transform -- uid: 19935 - type: FoodCakeSpacemanSlice - components: - - pos: -34.24552,17.570845 - parent: 1 - type: Transform -- uid: 19936 - type: Catwalk - components: - - pos: -52.5,41.5 - parent: 1 - type: Transform -- uid: 19937 - type: Catwalk - components: - - pos: -51.5,41.5 - parent: 1 - type: Transform -- uid: 19938 - type: Catwalk - components: - - pos: -50.5,41.5 - parent: 1 - type: Transform -- uid: 19939 - type: Catwalk - components: - - pos: -49.5,41.5 - parent: 1 - type: Transform -- uid: 19940 - type: Catwalk - components: - - pos: -48.5,41.5 - parent: 1 - type: Transform -- uid: 19941 - type: Catwalk - components: - - pos: -47.5,41.5 - parent: 1 - type: Transform -- uid: 19942 - type: Catwalk - components: - - pos: -46.5,41.5 - parent: 1 - type: Transform -- uid: 19943 - type: Catwalk - components: - - pos: -45.5,41.5 - parent: 1 - type: Transform -- uid: 19944 - type: Catwalk - components: - - pos: -44.5,41.5 - parent: 1 - type: Transform -- uid: 19945 - type: Catwalk - components: - - pos: -43.5,41.5 - parent: 1 - type: Transform -- uid: 19946 - type: Catwalk - components: - - pos: -42.5,41.5 - parent: 1 - type: Transform -- uid: 19947 - type: Catwalk - components: - - pos: -45.5,42.5 - parent: 1 - type: Transform -- uid: 19948 - type: Catwalk - components: - - pos: -45.5,43.5 - parent: 1 - type: Transform -- uid: 19949 - type: Catwalk - components: - - pos: -45.5,44.5 - parent: 1 - type: Transform -- uid: 19950 - type: Catwalk - components: - - pos: -45.5,45.5 - parent: 1 - type: Transform -- uid: 19951 - type: Catwalk - components: - - pos: -45.5,46.5 - parent: 1 - type: Transform -- uid: 19952 - type: Catwalk - components: - - pos: -45.5,47.5 - parent: 1 - type: Transform -- uid: 19953 - type: Catwalk - components: - - pos: -45.5,48.5 - parent: 1 - type: Transform -- uid: 19954 - type: Catwalk - components: - - pos: -45.5,49.5 - parent: 1 - type: Transform -- uid: 19955 - type: Catwalk - components: - - pos: -44.5,45.5 - parent: 1 - type: Transform -- uid: 19956 - type: Catwalk - components: - - pos: -43.5,45.5 - parent: 1 - type: Transform -- uid: 19957 - type: Catwalk - components: - - pos: -42.5,45.5 - parent: 1 - type: Transform -- uid: 19958 - type: Catwalk - components: - - pos: -41.5,45.5 - parent: 1 - type: Transform -- uid: 19959 - type: Catwalk - components: - - pos: -40.5,45.5 - parent: 1 - type: Transform -- uid: 19960 - type: Catwalk - components: - - pos: -39.5,45.5 - parent: 1 - type: Transform -- uid: 19961 - type: Catwalk - components: - - pos: -38.5,45.5 - parent: 1 - type: Transform -- uid: 19962 - type: Catwalk - components: - - pos: -40.5,46.5 - parent: 1 - type: Transform -- uid: 19963 - type: Catwalk - components: - - pos: -40.5,47.5 - parent: 1 - type: Transform -- uid: 19964 - type: Catwalk - components: - - pos: -40.5,48.5 - parent: 1 - type: Transform -- uid: 19965 - type: Catwalk - components: - - pos: -40.5,49.5 - parent: 1 - type: Transform -- uid: 19966 - type: Catwalk - components: - - pos: -40.5,50.5 - parent: 1 - type: Transform -- uid: 19967 - type: Catwalk - components: - - pos: -40.5,51.5 - parent: 1 - type: Transform -- uid: 19968 - type: Catwalk - components: - - pos: -40.5,52.5 - parent: 1 - type: Transform -- uid: 19969 - type: Catwalk - components: - - pos: -40.5,53.5 - parent: 1 - type: Transform -- uid: 19970 - type: Catwalk - components: - - pos: -48.5,53.5 - parent: 1 - type: Transform -- uid: 19971 - type: Catwalk - components: - - pos: -47.5,53.5 - parent: 1 - type: Transform -- uid: 19972 - type: Catwalk - components: - - pos: -46.5,53.5 - parent: 1 - type: Transform -- uid: 19973 - type: Catwalk - components: - - pos: -45.5,53.5 - parent: 1 - type: Transform -- uid: 19974 - type: Catwalk - components: - - pos: -44.5,53.5 - parent: 1 - type: Transform -- uid: 19975 - type: Catwalk - components: - - pos: -43.5,53.5 - parent: 1 - type: Transform -- uid: 19976 - type: Catwalk - components: - - pos: -42.5,53.5 - parent: 1 - type: Transform -- uid: 19977 - type: Catwalk - components: - - pos: -41.5,53.5 - parent: 1 - type: Transform -- uid: 19978 - type: Catwalk - components: - - pos: -40.5,53.5 - parent: 1 - type: Transform -- uid: 19979 - type: Catwalk - components: - - pos: -39.5,53.5 - parent: 1 - type: Transform -- uid: 19980 - type: Firelock - components: - - pos: 46.5,33.5 - parent: 1 - type: Transform -- uid: 19981 - type: Firelock - components: - - pos: 48.5,30.5 - parent: 1 - type: Transform -- uid: 19982 - type: WallSolid - components: - - pos: -43.5,-1.5 - parent: 1 - type: Transform -- uid: 19983 - type: WallSolid - components: - - pos: -44.5,2.5 - parent: 1 - type: Transform -- uid: 19984 - type: WallSolid - components: - - pos: -44.5,-1.5 - parent: 1 - type: Transform -- uid: 19985 - type: FirelockGlass - components: - - pos: -44.5,1.5 - parent: 1 - type: Transform -- uid: 19986 - type: FirelockGlass - components: - - pos: -44.5,0.5 - parent: 1 - type: Transform -- uid: 19987 - type: AirlockGlass - components: - - pos: -44.5,-0.5 - parent: 1 - type: Transform -- uid: 19988 - type: WallSolid - components: - - pos: -32.5,11.5 - parent: 1 - type: Transform -- uid: 19989 - type: WallSolid - components: - - pos: -31.5,11.5 - parent: 1 - type: Transform -- uid: 19990 - type: Crematorium - components: - - pos: -33.5,11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19991 - type: ClothingUniformJumpsuitMonasticRobeDark - components: - - pos: -32.383476,8.575315 - parent: 1 - type: Transform -- uid: 19992 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -28.5,10.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19993 - type: Morgue - components: - - rot: -1.5707963267948966 rad - pos: -28.5,9.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 19994 - type: AirlockChapelLocked - components: - - rot: -1.5707963267948966 rad - pos: -32.5,14.5 - parent: 1 - type: Transform -- uid: 19995 - type: AirlockChapelLocked - components: - - rot: -1.5707963267948966 rad - pos: -30.5,11.5 - parent: 1 - type: Transform -- uid: 19996 - type: SignDirectionalChapel - components: - - rot: -1.5707963267948966 rad - pos: -27.5,2.5 - parent: 1 - type: Transform -- uid: 19997 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -34.5,13.5 - parent: 1 - type: Transform -- uid: 19998 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -34.5,15.5 - parent: 1 - type: Transform -- uid: 19999 - type: WindoorSecure - components: - - rot: -1.5707963267948966 rad - pos: -34.5,14.5 - parent: 1 - type: Transform -- uid: 20000 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -34.5,15.5 - parent: 1 - type: Transform -- uid: 20001 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -34.5,14.5 - parent: 1 - type: Transform -- uid: 20002 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -34.5,13.5 - parent: 1 - type: Transform -- uid: 20003 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -33.5,15.5 - parent: 1 - type: Transform -- uid: 20004 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -33.5,14.5 - parent: 1 - type: Transform -- uid: 20005 - type: Carpet - components: - - rot: -1.5707963267948966 rad - pos: -33.5,13.5 - parent: 1 - type: Transform -- uid: 20006 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -40.5,16.5 - parent: 1 - type: Transform -- uid: 20007 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -40.5,16.5 - parent: 1 - type: Transform -- uid: 20008 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -41.5,16.5 - parent: 1 - type: Transform -- uid: 20009 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -42.5,19.5 - parent: 1 - type: Transform -- uid: 20010 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -40.5,17.5 - parent: 1 - type: Transform -- uid: 20011 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -42.5,13.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18243 - Forward: - - port: Left - uid: 18243 - Off: - - port: Middle - uid: 18243 - type: SignalReceiver -- uid: 20012 - type: Bed - components: - - pos: -29.5,14.5 - parent: 1 - type: Transform -- uid: 20013 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -30.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20014 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -29.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20015 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -30.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20016 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20017 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20018 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20019 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20020 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -29.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20021 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -29.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20022 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -29.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20023 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -29.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20024 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -31.5,15.5 - parent: 1 - type: Transform -- uid: 20025 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -30.5,15.5 - parent: 1 - type: Transform -- uid: 20026 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -29.5,15.5 - parent: 1 - type: Transform -- uid: 20027 - type: VendingMachineChapel - components: - - flags: SessionSpecific - type: MetaData - - pos: -29.5,12.5 - parent: 1 - type: Transform -- uid: 20028 - type: Bible - components: - - pos: -30.453314,15.631503 - parent: 1 - type: Transform -- uid: 20029 - type: Grille - components: - - pos: 29.5,24.5 - parent: 1 - type: Transform -- uid: 20030 - type: BedsheetCult - components: - - pos: -29.5,14.5 - parent: 1 - type: Transform -- uid: 20031 - type: AirlockBarLocked - components: - - name: bartender quarters - type: MetaData - - rot: 1.5707963267948966 rad - pos: 21.5,9.5 - parent: 1 - type: Transform -- uid: 20032 - type: DrinkWhiskeyGlass - components: - - pos: -29.929981,15.531138 - parent: 1 - type: Transform -- uid: 20033 - type: CableApcExtension - components: - - pos: 55.5,12.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20034 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -49.5,13.5 - parent: 1 - type: Transform -- uid: 20035 - type: Table - components: - - pos: -28.5,8.5 - parent: 1 - type: Transform -- uid: 20036 - type: AirlockGlass - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform -- uid: 20037 - type: AirlockGlass - components: - - pos: -3.5,-2.5 - parent: 1 - type: Transform -- uid: 20038 - type: WallSolid - components: - - pos: -9.5,-19.5 - parent: 1 - type: Transform -- uid: 20039 - type: FirelockGlass - components: - - pos: 1.5,-46.5 - parent: 1 - type: Transform -- uid: 20040 - type: FirelockGlass - components: - - pos: 1.5,-48.5 - parent: 1 - type: Transform -- uid: 20041 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 1 - type: Transform -- uid: 20042 - type: AirlockChemistryLocked - components: - - name: chemistry - type: MetaData - - pos: 3.5,-51.5 - parent: 1 - type: Transform -- uid: 20043 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-14.5 - parent: 1 - type: Transform -- uid: 20044 - type: AirlockMedicalGlassLocked - components: - - name: surgery - type: MetaData - - rot: 3.141592653589793 rad - pos: -3.5,-62.5 - parent: 1 - type: Transform -- uid: 20045 - type: FirelockGlass - components: - - pos: -3.5,-62.5 - parent: 1 - type: Transform -- uid: 20046 - type: Firelock - components: - - pos: 2.5,-13.5 - parent: 1 - type: Transform -- uid: 20047 - type: AirlockVirologyLocked - components: - - name: virology - type: MetaData - - rot: 3.141592653589793 rad - pos: -19.5,-62.5 - parent: 1 - type: Transform -- uid: 20048 - type: FirelockGlass - components: - - pos: -5.5,-62.5 - parent: 1 - type: Transform -- uid: 20049 - type: AtmosFixFreezerMarker - components: - - pos: -0.5,12.5 - parent: 1 - type: Transform -- uid: 20050 - type: AtmosFixFreezerMarker - components: - - pos: -0.5,11.5 - parent: 1 - type: Transform -- uid: 20051 - type: RandomArtifactSpawner - components: - - pos: 71.5,-28.5 - parent: 1 - type: Transform -- uid: 20052 - type: AtmosFixFreezerMarker - components: - - pos: 0.5,12.5 - parent: 1 - type: Transform -- uid: 20053 - type: AtmosFixFreezerMarker - components: - - pos: 0.5,11.5 - parent: 1 - type: Transform -- uid: 20054 - type: AirlockFreezerKitchenHydroLocked - components: - - pos: 0.5,10.5 - parent: 1 - type: Transform -- uid: 20055 - type: AtmosFixFreezerMarker - components: - - pos: 1.5,12.5 - parent: 1 - type: Transform -- uid: 20056 - type: AtmosFixFreezerMarker - components: - - pos: 1.5,11.5 - parent: 1 - type: Transform -- uid: 20057 - type: AtmosFixFreezerMarker - components: - - pos: 2.5,12.5 - parent: 1 - type: Transform -- uid: 20058 - type: AtmosFixFreezerMarker - components: - - pos: 2.5,11.5 - parent: 1 - type: Transform -- uid: 20059 - type: WallSolid - components: - - pos: -32.5,7.5 - parent: 1 - type: Transform -- uid: 20060 - type: WallSolid - components: - - pos: -31.5,7.5 - parent: 1 - type: Transform -- uid: 20061 - type: WallSolid - components: - - pos: -29.5,7.5 - parent: 1 - type: Transform -- uid: 20062 - type: OnionSeeds - components: - - pos: -32.52041,6.4317174 - parent: 1 - type: Transform -- uid: 20063 - type: TomatoSeeds - components: - - pos: -32.45791,6.4317174 - parent: 1 - type: Transform -- uid: 20064 - type: TobaccoSeeds - components: - - pos: -32.36416,6.3223424 - parent: 1 - type: Transform -- uid: 20065 - type: Table - components: - - pos: -29.5,8.5 - parent: 1 - type: Transform -- uid: 20066 - type: NitrogenTankFilled - components: - - pos: -22.469156,-57.61924 - parent: 1 - type: Transform -- uid: 20067 - type: FloraTree04 - components: - - pos: 31.9344,-39.9966 - parent: 1 - type: Transform -- uid: 20068 - type: Bucket - components: - - pos: -29.554869,3.5549593 - parent: 1 - type: Transform -- uid: 20069 - type: CrayonBox - components: - - pos: -29.428709,8.545935 - parent: 1 - type: Transform -- uid: 20070 - type: ClothingMaskPlague - components: - - pos: -31.093393,5.386326 - parent: 1 - type: Transform -- uid: 20071 - type: ClothingOuterPlagueSuit - components: - - pos: -31.046518,5.058201 - parent: 1 - type: Transform -- uid: 20072 - type: ClothingHeadHatPlaguedoctor - components: - - pos: -31.265268,5.276951 - parent: 1 - type: Transform -- uid: 20073 - type: Paper - components: - - pos: -31.206972,15.691786 - parent: 1 - type: Transform -- uid: 20074 - type: Paper - components: - - pos: -31.206972,15.691786 - parent: 1 - type: Transform -- uid: 20075 - type: Paper - components: - - pos: -31.363222,15.551161 - parent: 1 - type: Transform -- uid: 20076 - type: Paper - components: - - pos: -31.363222,15.551161 - parent: 1 - type: Transform -- uid: 20077 - type: Carpet - components: - - pos: -30.5,14.5 - parent: 1 - type: Transform -- uid: 20078 - type: Carpet - components: - - pos: -30.5,13.5 - parent: 1 - type: Transform -- uid: 20079 - type: Carpet - components: - - pos: -30.5,12.5 - parent: 1 - type: Transform -- uid: 20080 - type: SpawnPointChaplain - components: - - pos: -30.5,13.5 - parent: 1 - type: Transform -- uid: 20081 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -29.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20082 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -39.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20083 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -37.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20084 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -39.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20085 - type: GasVentScrubber - components: - - pos: -30.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20086 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -30.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20087 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -29.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20088 - type: GasVentPump - components: - - pos: -29.5,15.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20089 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -36.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20090 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -38.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20091 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -41.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20092 - type: CableApcExtension - components: - - pos: -36.5,-0.5 - parent: 1 - type: Transform -- uid: 20093 - type: CableApcExtension - components: - - pos: -35.5,-0.5 - parent: 1 - type: Transform -- uid: 20094 - type: CableApcExtension - components: - - pos: -34.5,-0.5 - parent: 1 - type: Transform -- uid: 20095 - type: CableApcExtension - components: - - pos: -33.5,-0.5 - parent: 1 - type: Transform -- uid: 20096 - type: CableApcExtension - components: - - pos: -32.5,-0.5 - parent: 1 - type: Transform -- uid: 20097 - type: CableApcExtension - components: - - pos: -31.5,-0.5 - parent: 1 - type: Transform -- uid: 20098 - type: CableApcExtension - components: - - pos: -30.5,-0.5 - parent: 1 - type: Transform -- uid: 20099 - type: CableApcExtension - components: - - pos: -29.5,-0.5 - parent: 1 - type: Transform -- uid: 20100 - type: CableApcExtension - components: - - pos: -29.5,-1.5 - parent: 1 - type: Transform -- uid: 20101 - type: CableApcExtension - components: - - pos: -29.5,-2.5 - parent: 1 - type: Transform -- uid: 20102 - type: CableApcExtension - components: - - pos: -29.5,-3.5 - parent: 1 - type: Transform -- uid: 20103 - type: CableApcExtension - components: - - pos: -28.5,-3.5 - parent: 1 - type: Transform -- uid: 20104 - type: CableApcExtension - components: - - pos: -28.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20105 - type: CableApcExtension - components: - - pos: -28.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20106 - type: CableApcExtension - components: - - pos: -28.5,-5.5 - parent: 1 - type: Transform -- uid: 20107 - type: CableApcExtension - components: - - pos: -30.5,0.5 - parent: 1 - type: Transform -- uid: 20108 - type: CableApcExtension - components: - - pos: -30.5,1.5 - parent: 1 - type: Transform -- uid: 20109 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -41.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20110 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -30.5,3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20111 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -33.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20112 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20113 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -29.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20114 - type: PoweredSmallLight - components: - - pos: -35.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20115 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -41.5,15.5 - parent: 1 - type: Transform -- uid: 20116 - type: SolarPanelBroken - components: - - rot: 3.141592653589793 rad - pos: 62.5,29.5 - parent: 1 - type: Transform -- uid: 20117 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20118 - type: ClosetMaintenance - components: - - pos: -41.5,-30.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20119 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20120 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -39.5,-29.5 - parent: 1 - type: Transform -- uid: 20121 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -38.5,-29.5 - parent: 1 - type: Transform -- uid: 20122 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -22.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20123 - type: Poweredlight - components: - - pos: -26.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20124 - type: CableApcExtension - components: - - pos: -23.5,18.5 - parent: 1 - type: Transform -- uid: 20125 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -48.5,2.5 - parent: 1 - type: Transform -- uid: 20126 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -48.5,1.5 - parent: 1 - type: Transform -- uid: 20127 - type: AirlockMaintLocked - components: - - pos: -48.5,0.5 - parent: 1 - type: Transform -- uid: 20128 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-0.5 - parent: 1 - type: Transform -- uid: 20129 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-1.5 - parent: 1 - type: Transform -- uid: 20130 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-1.5 - parent: 1 - type: Transform -- uid: 20131 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-1.5 - parent: 1 - type: Transform -- uid: 20132 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-1.5 - parent: 1 - type: Transform -- uid: 20133 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -49.5,2.5 - parent: 1 - type: Transform -- uid: 20134 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -50.5,2.5 - parent: 1 - type: Transform -- uid: 20135 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -50.5,3.5 - parent: 1 - type: Transform -- uid: 20136 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -50.5,4.5 - parent: 1 - type: Transform -- uid: 20137 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -50.5,5.5 - parent: 1 - type: Transform -- uid: 20138 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -50.5,6.5 - parent: 1 - type: Transform -- uid: 20139 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -50.5,7.5 - parent: 1 - type: Transform -- uid: 20140 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -50.5,8.5 - parent: 1 - type: Transform -- uid: 20141 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -50.5,9.5 - parent: 1 - type: Transform -- uid: 20142 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -49.5,9.5 - parent: 1 - type: Transform -- uid: 20143 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -48.5,9.5 - parent: 1 - type: Transform -- uid: 20144 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -47.5,9.5 - parent: 1 - type: Transform -- uid: 20145 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -44.5,9.5 - parent: 1 - type: Transform -- uid: 20146 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -43.5,9.5 - parent: 1 - type: Transform -- uid: 20147 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -43.5,8.5 - parent: 1 - type: Transform -- uid: 20148 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -43.5,7.5 - parent: 1 - type: Transform -- uid: 20149 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -44.5,10.5 - parent: 1 - type: Transform -- uid: 20150 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -44.5,12.5 - parent: 1 - type: Transform -- uid: 20151 - type: SpawnPointServiceWorker - components: - - pos: -10.5,42.5 - parent: 1 - type: Transform -- uid: 20152 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,-19.5 - parent: 1 - type: Transform -- uid: 20153 - type: MaintenanceFluffSpawner - components: - - pos: -49.5,15.5 - parent: 1 - type: Transform -- uid: 20154 - type: SignalSwitch - components: - - pos: -46.5,17.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 20155 - - port: Open - uid: 20341 - - port: Open - uid: 23491 - - port: Open - uid: 23493 - Off: - - port: Close - uid: 20155 - - port: Close - uid: 20341 - - port: Close - uid: 23491 - - port: Close - uid: 23493 - type: SignalTransmitter - - type: ItemCooldown -- uid: 20155 - type: ShuttersNormalOpen - components: - - pos: -49.5,13.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -46784.98 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 20154 - Close: - - port: Off - uid: 20154 - Toggle: [] - type: SignalReceiver -- uid: 20156 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,-17.5 - parent: 1 - type: Transform -- uid: 20157 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: -48.5,6.5 - parent: 1 - type: Transform -- uid: 20158 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: -48.5,5.5 - parent: 1 - type: Transform -- uid: 20159 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: -47.5,5.5 - parent: 1 - type: Transform -- uid: 20160 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: -47.5,6.5 - parent: 1 - type: Transform -- uid: 20161 - type: ComfyChair - components: - - pos: -48.5,7.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 20162 - type: ComfyChair - components: - - pos: -47.5,7.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 20163 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -49.5,6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 20164 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -49.5,5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 20165 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -48.5,4.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 20166 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -47.5,4.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 20167 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -46.5,6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 20168 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -46.5,5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 20169 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -49.5,7.5 - parent: 1 - type: Transform -- uid: 20170 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -49.5,6.5 - parent: 1 - type: Transform -- uid: 20171 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -49.5,5.5 - parent: 1 - type: Transform -- uid: 20172 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -49.5,4.5 - parent: 1 - type: Transform -- uid: 20173 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -48.5,7.5 - parent: 1 - type: Transform -- uid: 20174 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -48.5,6.5 - parent: 1 - type: Transform -- uid: 20175 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -48.5,5.5 - parent: 1 - type: Transform -- uid: 20176 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -48.5,4.5 - parent: 1 - type: Transform -- uid: 20177 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -47.5,7.5 - parent: 1 - type: Transform -- uid: 20178 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -47.5,6.5 - parent: 1 - type: Transform -- uid: 20179 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -47.5,5.5 - parent: 1 - type: Transform -- uid: 20180 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -47.5,4.5 - parent: 1 - type: Transform -- uid: 20181 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -46.5,7.5 - parent: 1 - type: Transform -- uid: 20182 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -46.5,6.5 - parent: 1 - type: Transform -- uid: 20183 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -46.5,5.5 - parent: 1 - type: Transform -- uid: 20184 - type: CarpetPurple - components: - - rot: -1.5707963267948966 rad - pos: -46.5,4.5 - parent: 1 - type: Transform -- uid: 20185 - type: MagicDiceBag - components: - - pos: -47.440662,5.801874 - parent: 1 - type: Transform -- uid: 20186 - type: ClothingBackpackSatchel - components: - - pos: -48.296333,5.808547 - parent: 1 - type: Transform -- uid: 20187 - type: ClothingHandsGlovesColorBlack - components: - - pos: -47.515083,6.5429225 - parent: 1 - type: Transform -- uid: 20188 - type: CableApcExtension - components: - - pos: -41.5,26.5 - parent: 1 - type: Transform -- uid: 20189 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: -43.5,6.5 - parent: 1 - type: Transform -- uid: 20190 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -43.5,4.5 - parent: 1 - type: Transform -- uid: 20191 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: -43.5,3.5 - parent: 1 - type: Transform -- uid: 20192 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -43.5,5.5 - parent: 1 - type: Transform -- uid: 20193 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -44.5,5.5 - parent: 1 - type: Transform -- uid: 20194 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -45.5,5.5 - parent: 1 - type: Transform -- uid: 20195 - type: DisposalPipe - components: - - pos: -45.5,4.5 - parent: 1 - type: Transform -- uid: 20196 - type: DisposalPipe - components: - - pos: -45.5,3.5 - parent: 1 - type: Transform -- uid: 20197 - type: DisposalPipe - components: - - pos: -45.5,2.5 - parent: 1 - type: Transform -- uid: 20198 - type: DisposalPipe - components: - - pos: -45.5,1.5 - parent: 1 - type: Transform -- uid: 20199 - type: DisposalPipe - components: - - pos: -45.5,0.5 - parent: 1 - type: Transform -- uid: 20200 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-0.5 - parent: 1 - type: Transform -- uid: 20201 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-0.5 - parent: 1 - type: Transform -- uid: 20202 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-0.5 - parent: 1 - type: Transform -- uid: 20203 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-0.5 - parent: 1 - type: Transform -- uid: 20204 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-0.5 - parent: 1 - type: Transform -- uid: 20205 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-0.5 - parent: 1 - type: Transform -- uid: 20206 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-0.5 - parent: 1 - type: Transform -- uid: 20207 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -38.5,-0.5 - parent: 1 - type: Transform -- uid: 20208 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-0.5 - parent: 1 - type: Transform -- uid: 20209 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-0.5 - parent: 1 - type: Transform -- uid: 20210 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-0.5 - parent: 1 - type: Transform -- uid: 20211 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-0.5 - parent: 1 - type: Transform -- uid: 20212 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-0.5 - parent: 1 - type: Transform -- uid: 20213 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-0.5 - parent: 1 - type: Transform -- uid: 20214 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -45.5,-0.5 - parent: 1 - type: Transform -- uid: 20215 - type: DisposalUnit - components: - - pos: -43.5,5.5 - parent: 1 - type: Transform -- uid: 20216 - type: PottedPlantRandom - components: - - pos: -44.5,8.5 - parent: 1 - type: Transform -- uid: 20217 - type: PottedPlantRandom - components: - - pos: -49.5,8.5 - parent: 1 - type: Transform -- uid: 20218 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20219 - type: WallSolid - components: - - pos: -50.5,1.5 - parent: 1 - type: Transform -- uid: 20220 - type: WallSolid - components: - - pos: -50.5,0.5 - parent: 1 - type: Transform -- uid: 20221 - type: WallSolid - components: - - pos: -50.5,-0.5 - parent: 1 - type: Transform -- uid: 20222 - type: WallSolid - components: - - pos: -50.5,-1.5 - parent: 1 - type: Transform -- uid: 20223 - type: WallSolid - components: - - pos: -46.5,-3.5 - parent: 1 - type: Transform -- uid: 20224 - type: WallSolid - components: - - pos: -43.5,-2.5 - parent: 1 - type: Transform -- uid: 20225 - type: WallSolid - components: - - pos: -50.5,-2.5 - parent: 1 - type: Transform -- uid: 20226 - type: WallSolid - components: - - pos: -52.5,-1.5 - parent: 1 - type: Transform -- uid: 20227 - type: Window - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-0.5 - parent: 1 - type: Transform -- uid: 20228 - type: WallSolid - components: - - pos: -52.5,0.5 - parent: 1 - type: Transform -- uid: 20229 - type: WallSolid - components: - - pos: -52.5,-2.5 - parent: 1 - type: Transform -- uid: 20230 - type: WallSolid - components: - - pos: -54.5,-2.5 - parent: 1 - type: Transform -- uid: 20231 - type: FirelockGlass - components: - - pos: -45.5,9.5 - parent: 1 - type: Transform -- uid: 20232 - type: Firelock - components: - - pos: -45.5,13.5 - parent: 1 - type: Transform -- uid: 20233 - type: FirelockGlass - components: - - pos: -44.5,-0.5 - parent: 1 - type: Transform -- uid: 20234 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 10.5,-80.5 - parent: 1 - type: Transform -- uid: 20235 - type: SpawnPointAssistant - components: - - pos: 41.5,-72.5 - parent: 1 - type: Transform -- uid: 20236 - type: SpawnPointAssistant - components: - - pos: 38.5,-72.5 - parent: 1 - type: Transform -- uid: 20237 - type: SpawnPointAssistant - components: - - pos: 40.5,-55.5 - parent: 1 - type: Transform -- uid: 20238 - type: AirlockGlass - components: - - pos: -44.5,1.5 - parent: 1 - type: Transform -- uid: 20239 - type: AirlockGlass - components: - - pos: -44.5,0.5 - parent: 1 - type: Transform -- uid: 20240 - type: AirlockGlass - components: - - pos: -38.5,2.5 - parent: 1 - type: Transform -- uid: 20241 - type: AirlockGlass - components: - - pos: -37.5,2.5 - parent: 1 - type: Transform -- uid: 20242 - type: AirlockGlass - components: - - pos: -27.5,1.5 - parent: 1 - type: Transform -- uid: 20243 - type: AirlockGlass - components: - - pos: -27.5,0.5 - parent: 1 - type: Transform -- uid: 20244 - type: AirlockGlass - components: - - pos: -27.5,-0.5 - parent: 1 - type: Transform -- uid: 20245 - type: AirlockGlass - components: - - pos: -5.5,-2.5 - parent: 1 - type: Transform -- uid: 20246 - type: AirlockGlass - components: - - pos: -21.5,21.5 - parent: 1 - type: Transform -- uid: 20247 - type: Firelock - components: - - pos: -26.5,22.5 - parent: 1 - type: Transform -- uid: 20248 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -3.5,4.5 - parent: 1 - type: Transform -- uid: 20249 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -4.5,4.5 - parent: 1 - type: Transform -- uid: 20250 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -3.5,4.5 - parent: 1 - type: Transform -- uid: 20251 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -4.5,4.5 - parent: 1 - type: Transform -- uid: 20252 - type: ClothingShoesBootsMag - components: - - pos: 31.614025,-12.652107 - parent: 1 - type: Transform -- uid: 20253 - type: ClothingShoesBootsMag - components: - - pos: 31.5984,-10.667732 - parent: 1 - type: Transform -- uid: 20254 - type: ClothingShoesBootsMag - components: - - pos: 33.6609,-10.620857 - parent: 1 - type: Transform -- uid: 20255 - type: PoweredSmallLight - components: - - pos: -13.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20256 - type: AirlockSecurityLocked - components: - - rot: -1.5707963267948966 rad - pos: -15.5,28.5 - parent: 1 - type: Transform -- uid: 20257 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20258 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20259 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20260 - type: PoweredSmallLight - components: - - pos: -9.5,16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20261 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -9.5,21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20262 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -4.5,16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20263 - type: CableApcExtension - components: - - pos: -2.5,24.5 - parent: 1 - type: Transform -- uid: 20264 - type: CableApcExtension - components: - - pos: -2.5,23.5 - parent: 1 - type: Transform -- uid: 20265 - type: CableApcExtension - components: - - pos: -3.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20266 - type: CableApcExtension - components: - - pos: -3.5,22.5 - parent: 1 - type: Transform -- uid: 20267 - type: CableApcExtension - components: - - pos: -4.5,22.5 - parent: 1 - type: Transform -- uid: 20268 - type: CableApcExtension - components: - - pos: -5.5,22.5 - parent: 1 - type: Transform -- uid: 20269 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -11.5,22.5 - parent: 1 - type: Transform -- uid: 20270 - type: Firelock - components: - - pos: -1.5,14.5 - parent: 1 - type: Transform -- uid: 20271 - type: CableMV - components: - - pos: -9.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20272 - type: PoweredSmallLight - components: - - pos: -0.5,24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20273 - type: WallReinforced - components: - - pos: -57.5,-0.5 - parent: 1 - type: Transform -- uid: 20274 - type: WallReinforced - components: - - pos: -56.5,-0.5 - parent: 1 - type: Transform -- uid: 20275 - type: WallReinforced - components: - - pos: -55.5,-0.5 - parent: 1 - type: Transform -- uid: 20276 - type: WallReinforced - components: - - pos: -57.5,-2.5 - parent: 1 - type: Transform -- uid: 20277 - type: WallSolid - components: - - pos: -56.5,-2.5 - parent: 1 - type: Transform -- uid: 20278 - type: WallSolid - components: - - pos: -55.5,-2.5 - parent: 1 - type: Transform -- uid: 20279 - type: WallSolid - components: - - pos: -52.5,1.5 - parent: 1 - type: Transform -- uid: 20280 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,1.5 - parent: 1 - type: Transform -- uid: 20281 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -54.5,1.5 - parent: 1 - type: Transform -- uid: 20282 - type: WallReinforced - components: - - pos: -55.5,1.5 - parent: 1 - type: Transform -- uid: 20283 - type: WallReinforced - components: - - pos: -55.5,0.5 - parent: 1 - type: Transform -- uid: 20284 - type: WallSolid - components: - - pos: -50.5,12.5 - parent: 1 - type: Transform -- uid: 20285 - type: WallSolid - components: - - pos: -50.5,13.5 - parent: 1 - type: Transform -- uid: 20286 - type: WallSolid - components: - - pos: -50.5,14.5 - parent: 1 - type: Transform -- uid: 20287 - type: WallSolid - components: - - pos: -50.5,15.5 - parent: 1 - type: Transform -- uid: 20288 - type: WallReinforced - components: - - pos: -50.5,16.5 - parent: 1 - type: Transform -- uid: 20289 - type: WallReinforced - components: - - pos: 58.5,48.5 - parent: 1 - type: Transform -- uid: 20290 - type: SignalSwitch - components: - - pos: 58.5,48.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 20300 - - port: Close - uid: 20770 - Off: - - port: Close - uid: 20300 - - port: Open - uid: 20770 - type: SignalTransmitter -- uid: 20291 - type: BlastDoorExterior1 - components: - - pos: 53.5,46.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -226968.64 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 20615 - - port: Off - uid: 18440 - - port: On - uid: 22965 - Close: - - port: Off - uid: 20615 - - port: On - uid: 18440 - - port: Off - uid: 22965 - Toggle: [] - type: SignalReceiver -- uid: 20292 - type: BlastDoorExterior1 - components: - - pos: 55.5,46.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -228971.03 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 20299 - - port: Off - uid: 20583 - Close: - - port: Off - uid: 20299 - - port: On - uid: 20583 - Toggle: [] - type: SignalReceiver -- uid: 20293 - type: CableApcExtension - components: - - pos: 65.5,-8.5 - parent: 1 - type: Transform -- uid: 20294 - type: ClosetFireFilled - components: - - pos: 62.5,-5.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20295 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-1.5 - parent: 1 - type: Transform -- uid: 20296 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-8.5 - parent: 1 - type: Transform -- uid: 20297 - type: WallReinforced - components: - - pos: 56.5,44.5 - parent: 1 - type: Transform -- uid: 20298 - type: SignalSwitch - components: - - pos: 54.5,46.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 20608 - - port: Close - uid: 20632 - Off: - - port: Close - uid: 20608 - - port: Open - uid: 20632 - type: SignalTransmitter -- uid: 20299 - type: SignalSwitch - components: - - pos: 52.5,46.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 20292 - - port: Close - uid: 18444 - Off: - - port: Close - uid: 20292 - - port: Open - uid: 18444 - type: SignalTransmitter -- uid: 20300 - type: BlastDoorExterior1 - components: - - pos: 50.5,47.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -228710.77 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 20290 - Close: - - port: Off - uid: 20290 - Toggle: [] - type: SignalReceiver -- uid: 20301 - type: FloraTree04 - components: - - pos: 60.920433,-8.196068 - parent: 1 - type: Transform -- uid: 20302 - type: WallReinforced - components: - - pos: 50.5,48.5 - parent: 1 - type: Transform -- uid: 20303 - type: WallReinforced - components: - - pos: 54.5,46.5 - parent: 1 - type: Transform -- uid: 20304 - type: WallReinforced - components: - - pos: 54.5,48.5 - parent: 1 - type: Transform -- uid: 20305 - type: CableApcExtension - components: - - pos: 65.5,-0.5 - parent: 1 - type: Transform -- uid: 20306 - type: CableApcExtension - components: - - pos: 65.5,-1.5 - parent: 1 - type: Transform -- uid: 20307 - type: CableApcExtension - components: - - pos: 68.5,-3.5 - parent: 1 - type: Transform -- uid: 20308 - type: CableApcExtension - components: - - pos: 65.5,-12.5 - parent: 1 - type: Transform -- uid: 20309 - type: CableApcExtension - components: - - pos: 65.5,-10.5 - parent: 1 - type: Transform -- uid: 20310 - type: ToolboxEmergencyFilled - components: - - pos: 65.53578,-10.518121 - parent: 1 - type: Transform -- uid: 20311 - type: Airlock - components: - - rot: 3.141592653589793 rad - pos: -44.5,11.5 - parent: 1 - type: Transform -- uid: 20312 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,-20.5 - parent: 1 - type: Transform -- uid: 20313 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,-18.5 - parent: 1 - type: Transform -- uid: 20314 - type: Airlock - components: - - pos: -51.5,12.5 - parent: 1 - type: Transform -- uid: 20315 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -52.5,12.5 - parent: 1 - type: Transform -- uid: 20316 - type: ReinforcedWindow - components: - - pos: -53.5,11.5 - parent: 1 - type: Transform -- uid: 20317 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,2.5 - parent: 1 - type: Transform -- uid: 20318 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,3.5 - parent: 1 - type: Transform -- uid: 20319 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,4.5 - parent: 1 - type: Transform -- uid: 20320 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,5.5 - parent: 1 - type: Transform -- uid: 20321 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,6.5 - parent: 1 - type: Transform -- uid: 20322 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,7.5 - parent: 1 - type: Transform -- uid: 20323 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -52.5,5.5 - parent: 1 - type: Transform -- uid: 20324 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,8.5 - parent: 1 - type: Transform -- uid: 20325 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -51.5,9.5 - parent: 1 - type: Transform -- uid: 20326 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -51.5,5.5 - parent: 1 - type: Transform -- uid: 20327 - type: Airlock - components: - - rot: 3.141592653589793 rad - pos: -52.5,9.5 - parent: 1 - type: Transform -- uid: 20328 - type: ReinforcedWindow - components: - - pos: -53.5,10.5 - parent: 1 - type: Transform -- uid: 20329 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,9.5 - parent: 1 - type: Transform -- uid: 20330 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,12.5 - parent: 1 - type: Transform -- uid: 20331 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,13.5 - parent: 1 - type: Transform -- uid: 20332 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,15.5 - parent: 1 - type: Transform -- uid: 20333 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,14.5 - parent: 1 - type: Transform -- uid: 20334 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -53.5,16.5 - parent: 1 - type: Transform -- uid: 20335 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -52.5,16.5 - parent: 1 - type: Transform -- uid: 20336 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -51.5,16.5 - parent: 1 - type: Transform -- uid: 20337 - type: Bed - components: - - pos: -42.5,9.5 - parent: 1 - type: Transform -- uid: 20338 - type: Bed - components: - - pos: -51.5,6.5 - parent: 1 - type: Transform -- uid: 20339 - type: Bed - components: - - pos: -52.5,15.5 - parent: 1 - type: Transform -- uid: 20340 - type: Firelock - components: - - pos: -45.5,17.5 - parent: 1 - type: Transform -- uid: 20341 - type: ShuttersNormalOpen - components: - - pos: -48.5,13.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -46784.98 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 20154 - Close: - - port: Off - uid: 20154 - Toggle: [] - type: SignalReceiver -- uid: 20342 - type: BedsheetBlack - components: - - pos: -42.5,9.5 - parent: 1 - type: Transform -- uid: 20343 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20344 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -49.5,13.5 - parent: 1 - type: Transform -- uid: 20345 - type: BedsheetGrey - components: - - pos: -52.5,15.5 - parent: 1 - type: Transform -- uid: 20346 - type: BedsheetGreen - components: - - pos: -51.5,6.5 - parent: 1 - type: Transform -- uid: 20347 - type: Dresser - components: - - pos: -42.5,11.5 - parent: 1 - type: Transform -- uid: 20348 - type: ConveyorBelt - components: - - pos: -47.5,13.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 20493 - Forward: - - port: Left - uid: 20493 - Off: - - port: Middle - uid: 20493 - type: SignalReceiver -- uid: 20349 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -42.5,18.5 - parent: 1 - type: Transform -- uid: 20350 - type: Dresser - components: - - pos: -51.5,15.5 - parent: 1 - type: Transform -- uid: 20351 - type: Dresser - components: - - pos: -52.5,6.5 - parent: 1 - type: Transform -- uid: 20352 - type: Rack - components: - - pos: -49.5,15.5 - parent: 1 - type: Transform -- uid: 20353 - type: AirlockCargoGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -43.5,14.5 - parent: 1 - type: Transform -- uid: 20354 - type: Grille - components: - - pos: -46.5,13.5 - parent: 1 - type: Transform -- uid: 20355 - type: TableWood - components: - - pos: -52.5,13.5 - parent: 1 - type: Transform -- uid: 20356 - type: TableWood - components: - - pos: -42.5,8.5 - parent: 1 - type: Transform -- uid: 20357 - type: TableWood - components: - - pos: -51.5,8.5 - parent: 1 - type: Transform -- uid: 20358 - type: CableApcExtension - components: - - pos: -42.5,0.5 - parent: 1 - type: Transform -- uid: 20359 - type: CableApcExtension - components: - - pos: -43.5,0.5 - parent: 1 - type: Transform -- uid: 20360 - type: CableApcExtension - components: - - pos: -44.5,0.5 - parent: 1 - type: Transform -- uid: 20361 - type: CableApcExtension - components: - - pos: -45.5,0.5 - parent: 1 - type: Transform -- uid: 20362 - type: CableApcExtension - components: - - pos: -46.5,0.5 - parent: 1 - type: Transform -- uid: 20363 - type: CableApcExtension - components: - - pos: -46.5,1.5 - parent: 1 - type: Transform -- uid: 20364 - type: CableApcExtension - components: - - pos: -46.5,2.5 - parent: 1 - type: Transform -- uid: 20365 - type: CableApcExtension - components: - - pos: -46.5,3.5 - parent: 1 - type: Transform -- uid: 20366 - type: CableApcExtension - components: - - pos: -46.5,4.5 - parent: 1 - type: Transform -- uid: 20367 - type: CableApcExtension - components: - - pos: -46.5,5.5 - parent: 1 - type: Transform -- uid: 20368 - type: CableApcExtension - components: - - pos: -46.5,6.5 - parent: 1 - type: Transform -- uid: 20369 - type: CableApcExtension - components: - - pos: -46.5,7.5 - parent: 1 - type: Transform -- uid: 20370 - type: CableApcExtension - components: - - pos: -46.5,8.5 - parent: 1 - type: Transform -- uid: 20371 - type: CableApcExtension - components: - - pos: -45.5,5.5 - parent: 1 - type: Transform -- uid: 20372 - type: CableApcExtension - components: - - pos: -44.5,5.5 - parent: 1 - type: Transform -- uid: 20373 - type: CableApcExtension - components: - - pos: -45.5,3.5 - parent: 1 - type: Transform -- uid: 20374 - type: CableApcExtension - components: - - pos: -44.5,3.5 - parent: 1 - type: Transform -- uid: 20375 - type: CableApcExtension - components: - - pos: -47.5,7.5 - parent: 1 - type: Transform -- uid: 20376 - type: CableApcExtension - components: - - pos: -48.5,7.5 - parent: 1 - type: Transform -- uid: 20377 - type: CableApcExtension - components: - - pos: -46.5,9.5 - parent: 1 - type: Transform -- uid: 20378 - type: CableApcExtension - components: - - pos: -46.5,10.5 - parent: 1 - type: Transform -- uid: 20379 - type: CableApcExtension - components: - - pos: -46.5,11.5 - parent: 1 - type: Transform -- uid: 20380 - type: CableApcExtension - components: - - pos: -47.5,11.5 - parent: 1 - type: Transform -- uid: 20381 - type: CableApcExtension - components: - - pos: -48.5,11.5 - parent: 1 - type: Transform -- uid: 20382 - type: CableApcExtension - components: - - pos: -49.5,11.5 - parent: 1 - type: Transform -- uid: 20383 - type: CableApcExtension - components: - - pos: -50.5,11.5 - parent: 1 - type: Transform -- uid: 20384 - type: CableApcExtension - components: - - pos: -51.5,11.5 - parent: 1 - type: Transform -- uid: 20385 - type: CableApcExtension - components: - - pos: -51.5,10.5 - parent: 1 - type: Transform -- uid: 20386 - type: CableApcExtension - components: - - pos: -52.5,10.5 - parent: 1 - type: Transform -- uid: 20387 - type: CableApcExtension - components: - - pos: -52.5,9.5 - parent: 1 - type: Transform -- uid: 20388 - type: CableApcExtension - components: - - pos: -52.5,8.5 - parent: 1 - type: Transform -- uid: 20389 - type: CableApcExtension - components: - - pos: -52.5,7.5 - parent: 1 - type: Transform -- uid: 20390 - type: CableApcExtension - components: - - pos: -51.5,12.5 - parent: 1 - type: Transform -- uid: 20391 - type: CableApcExtension - components: - - pos: -51.5,13.5 - parent: 1 - type: Transform -- uid: 20392 - type: CableApcExtension - components: - - pos: -51.5,14.5 - parent: 1 - type: Transform -- uid: 20393 - type: CableApcExtension - components: - - pos: -48.5,12.5 - parent: 1 - type: Transform -- uid: 20394 - type: CableApcExtension - components: - - pos: -48.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20395 - type: CableApcExtension - components: - - pos: -48.5,14.5 - parent: 1 - type: Transform -- uid: 20396 - type: CableApcExtension - components: - - pos: -46.5,12.5 - parent: 1 - type: Transform -- uid: 20397 - type: CableApcExtension - components: - - pos: -46.5,13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20398 - type: CableApcExtension - components: - - pos: -46.5,14.5 - parent: 1 - type: Transform -- uid: 20399 - type: CableApcExtension - components: - - pos: -45.5,11.5 - parent: 1 - type: Transform -- uid: 20400 - type: CableApcExtension - components: - - pos: -44.5,11.5 - parent: 1 - type: Transform -- uid: 20401 - type: CableApcExtension - components: - - pos: -43.5,11.5 - parent: 1 - type: Transform -- uid: 20402 - type: CableApcExtension - components: - - pos: -42.5,11.5 - parent: 1 - type: Transform -- uid: 20403 - type: CableApcExtension - components: - - pos: -42.5,10.5 - parent: 1 - type: Transform -- uid: 20404 - type: CableApcExtension - components: - - pos: -47.5,7.5 - parent: 1 - type: Transform -- uid: 20405 - type: CableApcExtension - components: - - pos: -47.5,0.5 - parent: 1 - type: Transform -- uid: 20406 - type: CableApcExtension - components: - - pos: -48.5,0.5 - parent: 1 - type: Transform -- uid: 20407 - type: CableApcExtension - components: - - pos: -49.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20408 - type: CableApcExtension - components: - - pos: -49.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20409 - type: CableApcExtension - components: - - pos: -49.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20410 - type: CableApcExtension - components: - - pos: -49.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20411 - type: CableApcExtension - components: - - pos: -49.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20412 - type: CableApcExtension - components: - - pos: -50.5,-3.5 - parent: 1 - type: Transform -- uid: 20413 - type: CableApcExtension - components: - - pos: -51.5,-3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20414 - type: CableApcExtension - components: - - pos: -52.5,-3.5 - parent: 1 - type: Transform -- uid: 20415 - type: CableApcExtension - components: - - pos: -53.5,-3.5 - parent: 1 - type: Transform -- uid: 20416 - type: CableApcExtension - components: - - pos: -54.5,-3.5 - parent: 1 - type: Transform -- uid: 20417 - type: CableApcExtension - components: - - pos: -53.5,-2.5 - parent: 1 - type: Transform -- uid: 20418 - type: CableApcExtension - components: - - pos: -53.5,-1.5 - parent: 1 - type: Transform -- uid: 20419 - type: CableApcExtension - components: - - pos: -54.5,-1.5 - parent: 1 - type: Transform -- uid: 20420 - type: CableApcExtension - components: - - pos: -55.5,-1.5 - parent: 1 - type: Transform -- uid: 20421 - type: CableApcExtension - components: - - pos: -56.5,-1.5 - parent: 1 - type: Transform -- uid: 20422 - type: CableApcExtension - components: - - pos: -51.5,-2.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20423 - type: CableApcExtension - components: - - pos: -51.5,-1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20424 - type: CableApcExtension - components: - - pos: -51.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20425 - type: CableApcExtension - components: - - pos: -51.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20426 - type: CableApcExtension - components: - - pos: -51.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20427 - type: CableApcExtension - components: - - pos: -51.5,2.5 - parent: 1 - type: Transform -- uid: 20428 - type: CableApcExtension - components: - - pos: -51.5,3.5 - parent: 1 - type: Transform -- uid: 20429 - type: CableApcExtension - components: - - pos: -45.5,-2.5 - parent: 1 - type: Transform -- uid: 20430 - type: CableApcExtension - components: - - pos: -46.5,-2.5 - parent: 1 - type: Transform -- uid: 20431 - type: CableApcExtension - components: - - pos: -47.5,-2.5 - parent: 1 - type: Transform -- uid: 20432 - type: Grille - components: - - pos: -53.5,11.5 - parent: 1 - type: Transform -- uid: 20433 - type: Grille - components: - - pos: -53.5,10.5 - parent: 1 - type: Transform -- uid: 20434 - type: Dresser - components: - - pos: -31.5,12.5 - parent: 1 - type: Transform -- uid: 20435 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20436 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20437 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20438 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20439 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -47.5,0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20440 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -45.5,1.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20441 - type: GasPipeStraight - components: - - pos: -45.5,2.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20442 - type: GasPipeStraight - components: - - pos: -45.5,3.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20443 - type: GasPipeStraight - components: - - pos: -45.5,4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20444 - type: GasPipeStraight - components: - - pos: -45.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20445 - type: GasPipeStraight - components: - - pos: -47.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20446 - type: GasPipeStraight - components: - - pos: -47.5,2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20447 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -47.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20448 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -47.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20449 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -47.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20450 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -47.5,6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20451 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -47.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20452 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -47.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20453 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -47.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20454 - type: GasPipeTJunction - components: - - pos: -47.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20455 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20456 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -46.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20457 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -48.5,13.5 - parent: 1 - type: Transform -- uid: 20458 - type: ConveyorBelt - components: - - pos: -47.5,14.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 20493 - Forward: - - port: Left - uid: 20493 - Off: - - port: Middle - uid: 20493 - type: SignalReceiver -- uid: 20459 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -48.5,13.5 - parent: 1 - type: Transform -- uid: 20460 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20461 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20462 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20463 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20464 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20465 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -51.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20466 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -52.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20467 - type: GasPipeStraight - components: - - pos: -52.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20468 - type: GasPipeStraight - components: - - pos: -52.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20469 - type: GasPipeStraight - components: - - pos: -52.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20470 - type: GasPipeStraight - components: - - pos: -52.5,9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20471 - type: GasPipeStraight - components: - - pos: -52.5,8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20472 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20473 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20474 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20475 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -45.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20476 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -45.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20477 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20478 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20479 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20480 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20481 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 20482 - type: GasPipeStraight - components: - - pos: -45.5,8.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20483 - type: GasPipeStraight - components: - - pos: -45.5,9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20484 - type: GasPipeStraight - components: - - pos: -45.5,10.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20485 - type: GasPipeFourway - components: - - pos: -45.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20486 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20487 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -45.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20488 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -44.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20489 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20490 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20491 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20492 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20493 - type: TwoWayLever - components: - - pos: -46.5,14.5 - parent: 1 - type: Transform - - nextSignalLeft: True - type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 20458 - - port: Forward - uid: 20348 - - port: Forward - uid: 20555 - Right: - - port: Reverse - uid: 20458 - - port: Reverse - uid: 20348 - - port: Reverse - uid: 20555 - Middle: - - port: Off - uid: 20458 - - port: Off - uid: 20348 - - port: Off - uid: 20555 - type: SignalTransmitter - - type: ItemCooldown -- uid: 20494 - type: Rack - components: - - pos: -49.5,14.5 - parent: 1 - type: Transform -- uid: 20495 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20496 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -51.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20497 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -51.5,12.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20498 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -51.5,13.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20499 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -45.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20500 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -44.5,6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20501 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -51.5,7.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20502 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -43.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20503 - type: GasVentPump - components: - - pos: -45.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20504 - type: Rack - components: - - pos: -44.5,15.5 - parent: 1 - type: Transform -- uid: 20505 - type: GasVentPump - components: - - pos: -51.5,14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20506 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -52.5,11.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20507 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -52.5,7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20508 - type: GasVentScrubber - components: - - pos: -51.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20509 - type: GasVentScrubber - components: - - pos: -52.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20510 - type: GasPipeStraight - components: - - pos: -46.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20511 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -42.5,10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20512 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -48.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20513 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -47.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20514 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -20.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20515 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -18.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20516 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20517 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20518 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20519 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20520 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -18.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20521 - type: AirlockMaintLocked - components: - - name: singularity catwalk - type: MetaData - - rot: 3.141592653589793 rad - pos: -53.5,-2.5 - parent: 1 - type: Transform -- uid: 20522 - type: ReinforcedWindow - components: - - pos: 56.5,-25.5 - parent: 1 - type: Transform -- uid: 20523 - type: Poweredlight - components: - - pos: -47.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20524 - type: AirlockMaintGlass - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-68.5 - parent: 1 - type: Transform -- uid: 20525 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -46.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20526 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20527 - type: GasVentScrubber - components: - - pos: -46.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 20528 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -46.5,17.5 - parent: 1 - type: Transform -- uid: 20529 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20530 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20531 - type: AirlockMaintGlass - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-68.5 - parent: 1 - type: Transform -- uid: 20532 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-0.5 - parent: 1 - type: Transform -- uid: 20533 - type: PoweredSmallLight - components: - - pos: -44.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20534 - type: PoweredSmallLight - components: - - pos: -40.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20535 - type: SinkStemlessWater - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 1 - type: Transform -- uid: 20536 - type: PoweredSmallLight - components: - - pos: -49.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20537 - type: Catwalk - components: - - pos: -49.5,0.5 - parent: 1 - type: Transform -- uid: 20538 - type: Catwalk - components: - - pos: -49.5,-0.5 - parent: 1 - type: Transform -- uid: 20539 - type: Catwalk - components: - - pos: -49.5,-1.5 - parent: 1 - type: Transform -- uid: 20540 - type: Catwalk - components: - - pos: -49.5,-2.5 - parent: 1 - type: Transform -- uid: 20541 - type: Catwalk - components: - - pos: -49.5,-3.5 - parent: 1 - type: Transform -- uid: 20542 - type: Catwalk - components: - - pos: -50.5,-3.5 - parent: 1 - type: Transform -- uid: 20543 - type: Catwalk - components: - - pos: -51.5,-3.5 - parent: 1 - type: Transform -- uid: 20544 - type: Catwalk - components: - - pos: -51.5,-2.5 - parent: 1 - type: Transform -- uid: 20545 - type: Catwalk - components: - - pos: -51.5,-1.5 - parent: 1 - type: Transform -- uid: 20546 - type: Catwalk - components: - - pos: -51.5,-0.5 - parent: 1 - type: Transform -- uid: 20547 - type: Catwalk - components: - - pos: -51.5,0.5 - parent: 1 - type: Transform -- uid: 20548 - type: Catwalk - components: - - pos: -51.5,1.5 - parent: 1 - type: Transform -- uid: 20549 - type: Catwalk - components: - - pos: -41.5,-2.5 - parent: 1 - type: Transform -- uid: 20550 - type: Catwalk - components: - - pos: -40.5,-2.5 - parent: 1 - type: Transform -- uid: 20551 - type: Catwalk - components: - - pos: -39.5,-2.5 - parent: 1 - type: Transform -- uid: 20552 - type: Catwalk - components: - - pos: -38.5,-2.5 - parent: 1 - type: Transform -- uid: 20553 - type: Catwalk - components: - - pos: -37.5,-2.5 - parent: 1 - type: Transform -- uid: 20554 - type: Catwalk - components: - - pos: -36.5,-2.5 - parent: 1 - type: Transform -- uid: 20555 - type: ConveyorBelt - components: - - pos: -47.5,12.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 20493 - Forward: - - port: Left - uid: 20493 - Off: - - port: Middle - uid: 20493 - type: SignalReceiver -- uid: 20556 - type: Wrench - components: - - pos: -52.52865,13.566981 - parent: 1 - type: Transform -- uid: 20557 - type: ClothingHeadHatAnimalCatBlack - components: - - pos: -51.4974,8.551356 - parent: 1 - type: Transform -- uid: 20558 - type: ClothingHeadHatFedoraBrown - components: - - pos: -42.4974,8.520106 - parent: 1 - type: Transform -- uid: 20559 - type: Rack - components: - - pos: -47.5,-3.5 - parent: 1 - type: Transform -- uid: 20560 - type: WallSolid - components: - - pos: -32.5,-3.5 - parent: 1 - type: Transform -- uid: 20561 - type: Rack - components: - - pos: -52.5,2.5 - parent: 1 - type: Transform -- uid: 20562 - type: Rack - components: - - pos: -56.5,-4.5 - parent: 1 - type: Transform -- uid: 20563 - type: Wrench - components: - - pos: -56.484455,-4.5012527 - parent: 1 - type: Transform -- uid: 20564 - type: Welder - components: - - pos: -52.43758,2.566814 - parent: 1 - type: Transform -- uid: 20565 - type: HydroponicsToolClippers - components: - - pos: -47.467487,-3.558907 - parent: 1 - type: Transform -- uid: 20566 - type: WeldingFuelTankFull - components: - - pos: -51.5,4.5 - parent: 1 - type: Transform -- uid: 20567 - type: WaterTankFull - components: - - pos: -45.5,-3.5 - parent: 1 - type: Transform -- uid: 20568 - type: LockerElectricalSuppliesFilled - components: - - pos: -53.5,0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20569 - type: Table - components: - - pos: -54.5,0.5 - parent: 1 - type: Transform -- uid: 20570 - type: OxygenTankFilled - components: - - pos: -54.60223,0.49364984 - parent: 1 - type: Transform -- uid: 20571 - type: NitrogenTankFilled - components: - - pos: -54.344475,0.46202505 - parent: 1 - type: Transform -- uid: 20572 - type: NitrogenTankFilled - components: - - pos: -49.491314,1.5773844 - parent: 1 - type: Transform -- uid: 20573 - type: ShuttersNormalOpen - components: - - pos: -31.5,32.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86606.164 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 22032 - Close: - - port: Off - uid: 22032 - Toggle: [] - type: SignalReceiver -- uid: 20574 - type: CableApcExtension - components: - - pos: 3.5,-64.5 - parent: 1 - type: Transform -- uid: 20575 - type: WarpPoint - components: - - name: 'warp: cargo' - type: MetaData - - rot: 1.5707963267948966 rad - pos: -32.5,21.5 - parent: 1 - type: Transform - - location: cargo - type: WarpPoint -- uid: 20576 - type: BlastDoorExterior1 - components: - - pos: 57.5,44.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -228710.77 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 20584 - Close: - - port: Off - uid: 20584 - Toggle: [] - type: SignalReceiver -- uid: 20577 - type: SignalSwitch - components: - - pos: 54.5,48.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 20632 - - port: Close - uid: 20662 - Off: - - port: Close - uid: 20632 - - port: Open - uid: 20662 - type: SignalTransmitter -- uid: 20578 - type: BlastDoorExterior1 - components: - - pos: 56.5,47.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -228710.77 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 18439 - Close: - - port: Off - uid: 18439 - Toggle: [] - type: SignalReceiver -- uid: 20579 - type: CableApcExtension - components: - - pos: 68.5,-5.5 - parent: 1 - type: Transform -- uid: 20580 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-7.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 20581 - type: WallReinforced - components: - - pos: 56.5,46.5 - parent: 1 - type: Transform -- uid: 20582 - type: SignalSwitch - components: - - pos: 56.5,44.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 18444 - - port: Close - uid: 18441 - Off: - - port: Close - uid: 18444 - - port: Open - uid: 18441 - type: SignalTransmitter -- uid: 20583 - type: SignalSwitch - components: - - pos: 50.5,44.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 20634 - - port: Close - uid: 20292 - Off: - - port: Close - uid: 20634 - - port: Open - uid: 20292 - type: SignalTransmitter -- uid: 20584 - type: SignalSwitch - components: - - pos: 52.5,44.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Close - uid: 18441 - - port: Open - uid: 20576 - Off: - - port: Open - uid: 18441 - - port: Close - uid: 20576 - type: SignalTransmitter -- uid: 20585 - type: BlastDoorExterior1 - components: - - pos: 51.5,48.5 - parent: 1 - type: Transform -- uid: 20586 - type: BlastDoorExterior1 - components: - - pos: 53.5,48.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -226968.64 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: Off - uid: 18439 - - port: On - uid: 20660 - - port: On - uid: 22965 - Close: - - port: On - uid: 18439 - - port: Off - uid: 20660 - - port: Off - uid: 22965 - Toggle: [] - type: SignalReceiver -- uid: 20587 - type: BlastDoorExterior1 - components: - - pos: 55.5,48.5 - parent: 1 - type: Transform - - inputs: - Open: - - port: On - uid: 20660 - Close: - - port: Off - uid: 20660 - Toggle: [] - type: SignalReceiver -- uid: 20588 - type: BlastDoorExterior1 - components: - - pos: 58.5,47.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -228710.77 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 18440 - Close: - - port: Off - uid: 18440 - Toggle: [] - type: SignalReceiver -- uid: 20589 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 61.5,-6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 20590 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 60.5,-6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 20591 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-7.5 - parent: 1 - type: Transform -- uid: 20592 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 55.5,40.5 - parent: 1 - type: Transform -- uid: 20593 - type: WallSolid - components: - - pos: 53.5,41.5 - parent: 1 - type: Transform -- uid: 20594 - type: Chair - components: - - pos: 31.5,-60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 20595 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 30.5,-62.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 20596 - type: Chair - components: - - pos: 30.5,-60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 20597 - type: CableApcExtension - components: - - pos: -19.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20598 - type: CableApcExtension - components: - - pos: -20.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20599 - type: WallReinforced - components: - - pos: -20.5,-50.5 - parent: 1 - type: Transform -- uid: 20600 - type: CableHV - components: - - pos: -20.5,18.5 - parent: 1 - type: Transform -- uid: 20601 - type: CableHV - components: - - pos: -20.5,19.5 - parent: 1 - type: Transform -- uid: 20602 - type: CableHV - components: - - pos: -20.5,20.5 - parent: 1 - type: Transform -- uid: 20603 - type: CableHV - components: - - pos: -20.5,21.5 - parent: 1 - type: Transform -- uid: 20604 - type: CableHV - components: - - pos: -20.5,22.5 - parent: 1 - type: Transform -- uid: 20605 - type: CableHV - components: - - pos: -20.5,23.5 - parent: 1 - type: Transform -- uid: 20606 - type: CableHV - components: - - pos: -20.5,24.5 - parent: 1 - type: Transform -- uid: 20607 - type: CableHV - components: - - pos: -20.5,25.5 - parent: 1 - type: Transform -- uid: 20608 - type: BlastDoorExterior1 - components: - - pos: 52.5,45.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -229206.42 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 20298 - - port: Off - uid: 20638 - Close: - - port: Off - uid: 20298 - - port: On - uid: 20638 - Toggle: [] - type: SignalReceiver -- uid: 20609 - type: BlastDoorExterior1 - components: - - pos: 53.5,44.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -226968.64 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: Off - uid: 20636 - - port: On - uid: 22965 - Close: - - port: On - uid: 20636 - - port: Off - uid: 22965 - Toggle: [] - type: SignalReceiver -- uid: 20610 - type: BlastDoorExterior1 - components: - - pos: 55.5,44.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -228710.77 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 20636 - - port: On - uid: 20639 - Close: - - port: Off - uid: 20636 - - port: Off - uid: 20639 - Toggle: [] - type: SignalReceiver -- uid: 20611 - type: WallReinforced - components: - - pos: 58.5,44.5 - parent: 1 - type: Transform -- uid: 20612 - type: WallReinforced - components: - - pos: 58.5,46.5 - parent: 1 - type: Transform -- uid: 20613 - type: WallReinforced - components: - - pos: 50.5,44.5 - parent: 1 - type: Transform -- uid: 20614 - type: WallReinforced - components: - - pos: 52.5,44.5 - parent: 1 - type: Transform -- uid: 20615 - type: SignalSwitch - components: - - pos: 58.5,46.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 20291 - - port: Close - uid: 20635 - Off: - - port: Close - uid: 20291 - - port: Open - uid: 20635 - type: SignalTransmitter -- uid: 20616 - type: BlastDoorExterior1 - components: - - pos: 58.5,45.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -228710.77 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: Off - uid: 20637 - Close: - - port: On - uid: 20637 - Toggle: [] - type: SignalReceiver -- uid: 20617 - type: CableApcExtension - components: - - pos: 67.5,-5.5 - parent: 1 - type: Transform -- uid: 20618 - type: AirlockExternalGlassShuttleEmergencyLocked - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-5.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 20619 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-9.5 - parent: 1 - type: Transform -- uid: 20620 - type: CableApcExtension - components: - - pos: 66.5,-5.5 - parent: 1 - type: Transform -- uid: 20621 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20622 - type: CableApcExtension - components: - - pos: 65.5,-6.5 - parent: 1 - type: Transform -- uid: 20623 - type: CableApcExtension - components: - - pos: 65.5,-7.5 - parent: 1 - type: Transform -- uid: 20624 - type: CableApcExtension - components: - - pos: 65.5,-9.5 - parent: 1 - type: Transform -- uid: 20625 - type: CableApcExtension - components: - - pos: 66.5,-3.5 - parent: 1 - type: Transform -- uid: 20626 - type: CableApcExtension - components: - - pos: 65.5,-2.5 - parent: 1 - type: Transform -- uid: 20627 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-7.5 - parent: 1 - type: Transform -- uid: 20628 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-9.5 - parent: 1 - type: Transform -- uid: 20629 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-0.5 - parent: 1 - type: Transform -- uid: 20630 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 66.5,0.5 - parent: 1 - type: Transform -- uid: 20631 - type: WallSolid - components: - - pos: 64.5,0.5 - parent: 1 - type: Transform -- uid: 20632 - type: BlastDoorExterior1 - components: - - pos: 57.5,46.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -228710.77 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: Off - uid: 20298 - - port: On - uid: 20577 - - port: Off - uid: 20660 - Close: - - port: On - uid: 20298 - - port: Off - uid: 20577 - - port: On - uid: 20660 - Toggle: [] - type: SignalReceiver -- uid: 20633 - type: BlastDoorExterior1 - components: - - pos: 57.5,48.5 - parent: 1 - type: Transform -- uid: 20634 - type: BlastDoorExterior1 - components: - - pos: 54.5,47.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -228710.77 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 20583 - Close: - - port: Off - uid: 20583 - Toggle: [] - type: SignalReceiver -- uid: 20635 - type: BlastDoorExterior1 - components: - - pos: 52.5,47.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -228710.77 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: Off - uid: 20615 - Close: - - port: On - uid: 20615 - Toggle: [] - type: SignalReceiver -- uid: 20636 - type: SignalSwitch - components: - - pos: 54.5,44.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 20610 - - port: Close - uid: 20609 - Off: - - port: Close - uid: 20610 - - port: Open - uid: 20609 - type: SignalTransmitter -- uid: 20637 - type: SignalSwitch - components: - - pos: 50.5,46.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Close - uid: 20616 - - port: Open - uid: 20662 - Off: - - port: Open - uid: 20616 - - port: Close - uid: 20662 - type: SignalTransmitter -- uid: 20638 - type: SignalSwitch - components: - - pos: 56.5,46.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 20770 - - port: Close - uid: 20608 - Off: - - port: Close - uid: 20770 - - port: Open - uid: 20608 - type: SignalTransmitter -- uid: 20639 - type: SignalSwitch - components: - - pos: 58.5,44.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 20610 - - port: Open - uid: 20658 - - port: Close - uid: 18441 - Off: - - port: Close - uid: 20610 - - port: Close - uid: 20658 - - port: Open - uid: 18441 - type: SignalTransmitter -- uid: 20640 - type: ClosetEmergencyFilledRandom - components: - - pos: 63.5,-5.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 20641 - type: MedkitOxygenFilled - components: - - pos: 65.55114,-6.3846307 - parent: 1 - type: Transform -- uid: 20642 - type: WallReinforced - components: - - pos: 52.5,46.5 - parent: 1 - type: Transform -- uid: 20643 - type: WallReinforced - components: - - pos: 50.5,46.5 - parent: 1 - type: Transform -- uid: 20644 - type: WallReinforced - components: - - pos: 56.5,48.5 - parent: 1 - type: Transform -- uid: 20645 - type: WallReinforced - components: - - pos: 54.5,44.5 - parent: 1 - type: Transform -- uid: 20646 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 20647 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-10.5 - parent: 1 - type: Transform -- uid: 20648 - type: WallSolid - components: - - pos: 67.5,-12.5 - parent: 1 - type: Transform -- uid: 20649 - type: WallReinforced - components: - - pos: 68.5,-16.5 - parent: 1 - type: Transform -- uid: 20650 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-6.5 - parent: 1 - type: Transform -- uid: 20651 - type: WallSolid - components: - - pos: 67.5,-4.5 - parent: 1 - type: Transform -- uid: 20652 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-2.5 - parent: 1 - type: Transform -- uid: 20653 - type: WallSolid - components: - - pos: 53.5,40.5 - parent: 1 - type: Transform -- uid: 20654 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: -47.5,11.5 - parent: 1 - type: Transform -- uid: 20655 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: -45.5,6.5 - parent: 1 - type: Transform -- uid: 20656 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: -46.5,3.5 - parent: 1 - type: Transform -- uid: 20657 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: -34.5,0.5 - parent: 1 - type: Transform -- uid: 20658 - type: BlastDoorExterior1 - components: - - pos: 51.5,46.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -228710.77 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 20639 - - port: Off - uid: 20660 - Close: - - port: Off - uid: 20639 - - port: On - uid: 20660 - Toggle: [] - type: SignalReceiver -- uid: 20659 - type: AirlockExternalGlass - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-3.5 - parent: 1 - type: Transform -- uid: 20660 - type: SignalSwitch - components: - - pos: 56.5,48.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 20587 - - port: Open - uid: 20586 - - port: Close - uid: 20632 - - port: Close - uid: 20658 - Off: - - port: Close - uid: 20587 - - port: Close - uid: 20586 - - port: Open - uid: 20632 - - port: Open - uid: 20658 - type: SignalTransmitter -- uid: 20661 - type: DeployableBarrier - components: - - anchored: False - pos: -16.5,27.5 - parent: 1 - type: Transform -- uid: 20662 - type: BlastDoorExterior1 - components: - - pos: 56.5,45.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -229065.12 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: Off - uid: 20577 - - port: On - uid: 20637 - Close: - - port: On - uid: 20577 - - port: Off - uid: 20637 - Toggle: [] - type: SignalReceiver -- uid: 20663 - type: CableApcExtension - components: - - pos: 67.5,-3.5 - parent: 1 - type: Transform -- uid: 20664 - type: WallReinforced - components: - - pos: 52.5,48.5 - parent: 1 - type: Transform -- uid: 20665 - type: WallSolid - components: - - pos: -17.5,36.5 - parent: 1 - type: Transform -- uid: 20666 - type: AirlockMaintGlass - components: - - pos: -11.5,18.5 - parent: 1 - type: Transform -- uid: 20667 - type: AirlockMaintGlass - components: - - pos: -16.5,16.5 - parent: 1 - type: Transform -- uid: 20668 - type: AirlockExternalGlass - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-11.5 - parent: 1 - type: Transform -- uid: 20669 - type: Grille - components: - - pos: -44.5,-37.5 - parent: 1 - type: Transform -- uid: 20670 - type: PoweredSmallLightEmpty - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20671 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20672 - type: PoweredSmallLight - components: - - pos: -35.5,-38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20673 - type: PoweredSmallLightEmpty - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20674 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -38.5,53.5 - parent: 1 - type: Transform -- uid: 20675 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -37.5,53.5 - parent: 1 - type: Transform -- uid: 20676 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -36.5,53.5 - parent: 1 - type: Transform -- uid: 20677 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -35.5,53.5 - parent: 1 - type: Transform -- uid: 20678 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -34.5,53.5 - parent: 1 - type: Transform -- uid: 20679 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,53.5 - parent: 1 - type: Transform -- uid: 20680 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,54.5 - parent: 1 - type: Transform -- uid: 20681 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,55.5 - parent: 1 - type: Transform -- uid: 20682 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,56.5 - parent: 1 - type: Transform -- uid: 20683 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,57.5 - parent: 1 - type: Transform -- uid: 20684 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,58.5 - parent: 1 - type: Transform -- uid: 20685 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,59.5 - parent: 1 - type: Transform -- uid: 20686 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,60.5 - parent: 1 - type: Transform -- uid: 20687 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,61.5 - parent: 1 - type: Transform -- uid: 20688 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,62.5 - parent: 1 - type: Transform -- uid: 20689 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,63.5 - parent: 1 - type: Transform -- uid: 20690 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,64.5 - parent: 1 - type: Transform -- uid: 20691 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,65.5 - parent: 1 - type: Transform -- uid: 20692 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,66.5 - parent: 1 - type: Transform -- uid: 20693 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,67.5 - parent: 1 - type: Transform -- uid: 20694 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,68.5 - parent: 1 - type: Transform -- uid: 20695 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,69.5 - parent: 1 - type: Transform -- uid: 20696 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,70.5 - parent: 1 - type: Transform -- uid: 20697 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,71.5 - parent: 1 - type: Transform -- uid: 20698 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -33.5,72.5 - parent: 1 - type: Transform -- uid: 20699 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -34.5,72.5 - parent: 1 - type: Transform -- uid: 20700 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -35.5,72.5 - parent: 1 - type: Transform -- uid: 20701 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -36.5,72.5 - parent: 1 - type: Transform -- uid: 20702 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -37.5,72.5 - parent: 1 - type: Transform -- uid: 20703 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -38.5,72.5 - parent: 1 - type: Transform -- uid: 20704 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -39.5,72.5 - parent: 1 - type: Transform -- uid: 20705 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -40.5,72.5 - parent: 1 - type: Transform -- uid: 20706 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -41.5,72.5 - parent: 1 - type: Transform -- uid: 20707 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -42.5,72.5 - parent: 1 - type: Transform -- uid: 20708 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -43.5,72.5 - parent: 1 - type: Transform -- uid: 20709 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -44.5,72.5 - parent: 1 - type: Transform -- uid: 20710 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -45.5,72.5 - parent: 1 - type: Transform -- uid: 20711 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -46.5,72.5 - parent: 1 - type: Transform -- uid: 20712 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -47.5,72.5 - parent: 1 - type: Transform -- uid: 20713 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -48.5,72.5 - parent: 1 - type: Transform -- uid: 20714 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -49.5,72.5 - parent: 1 - type: Transform -- uid: 20715 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -50.5,72.5 - parent: 1 - type: Transform -- uid: 20716 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -51.5,72.5 - parent: 1 - type: Transform -- uid: 20717 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -52.5,72.5 - parent: 1 - type: Transform -- uid: 20718 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -53.5,72.5 - parent: 1 - type: Transform -- uid: 20719 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -54.5,72.5 - parent: 1 - type: Transform -- uid: 20720 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -55.5,72.5 - parent: 1 - type: Transform -- uid: 20721 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -56.5,72.5 - parent: 1 - type: Transform -- uid: 20722 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -57.5,72.5 - parent: 1 - type: Transform -- uid: 20723 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -58.5,72.5 - parent: 1 - type: Transform -- uid: 20724 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,72.5 - parent: 1 - type: Transform -- uid: 20725 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -60.5,72.5 - parent: 1 - type: Transform -- uid: 20726 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,72.5 - parent: 1 - type: Transform -- uid: 20727 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,71.5 - parent: 1 - type: Transform -- uid: 20728 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,70.5 - parent: 1 - type: Transform -- uid: 20729 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,69.5 - parent: 1 - type: Transform -- uid: 20730 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,68.5 - parent: 1 - type: Transform -- uid: 20731 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,67.5 - parent: 1 - type: Transform -- uid: 20732 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,66.5 - parent: 1 - type: Transform -- uid: 20733 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,65.5 - parent: 1 - type: Transform -- uid: 20734 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,64.5 - parent: 1 - type: Transform -- uid: 20735 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,63.5 - parent: 1 - type: Transform -- uid: 20736 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,62.5 - parent: 1 - type: Transform -- uid: 20737 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,61.5 - parent: 1 - type: Transform -- uid: 20738 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,60.5 - parent: 1 - type: Transform -- uid: 20739 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,59.5 - parent: 1 - type: Transform -- uid: 20740 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,58.5 - parent: 1 - type: Transform -- uid: 20741 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,57.5 - parent: 1 - type: Transform -- uid: 20742 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,56.5 - parent: 1 - type: Transform -- uid: 20743 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,55.5 - parent: 1 - type: Transform -- uid: 20744 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,54.5 - parent: 1 - type: Transform -- uid: 20745 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -61.5,53.5 - parent: 1 - type: Transform -- uid: 20746 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -60.5,53.5 - parent: 1 - type: Transform -- uid: 20747 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -59.5,53.5 - parent: 1 - type: Transform -- uid: 20748 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -58.5,53.5 - parent: 1 - type: Transform -- uid: 20749 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -57.5,53.5 - parent: 1 - type: Transform -- uid: 20750 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -56.5,53.5 - parent: 1 - type: Transform -- uid: 20751 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -55.5,53.5 - parent: 1 - type: Transform -- uid: 20752 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -54.5,53.5 - parent: 1 - type: Transform -- uid: 20753 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -53.5,53.5 - parent: 1 - type: Transform -- uid: 20754 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -52.5,53.5 - parent: 1 - type: Transform -- uid: 20755 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -51.5,53.5 - parent: 1 - type: Transform -- uid: 20756 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -50.5,53.5 - parent: 1 - type: Transform -- uid: 20757 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -49.5,53.5 - parent: 1 - type: Transform -- uid: 20758 - type: WallSolid - components: - - pos: -20.5,32.5 - parent: 1 - type: Transform -- uid: 20759 - type: WallSolid - components: - - pos: -21.5,32.5 - parent: 1 - type: Transform -- uid: 20760 - type: WallSolid - components: - - pos: -21.5,31.5 - parent: 1 - type: Transform -- uid: 20761 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -22.5,32.5 - parent: 1 - type: Transform -- uid: 20762 - type: WallSolid - components: - - pos: -21.5,29.5 - parent: 1 - type: Transform -- uid: 20763 - type: WallSolid - components: - - pos: -21.5,28.5 - parent: 1 - type: Transform -- uid: 20764 - type: AirlockMaintLocked - components: - - rot: 1.5707963267948966 rad - pos: -21.5,27.5 - parent: 1 - type: Transform -- uid: 20765 - type: WallSolid - components: - - pos: -21.5,26.5 - parent: 1 - type: Transform -- uid: 20766 - type: WallSolid - components: - - pos: -17.5,28.5 - parent: 1 - type: Transform -- uid: 20767 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,27.5 - parent: 1 - type: Transform -- uid: 20768 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,23.5 - parent: 1 - type: Transform -- uid: 20769 - type: Multitool - components: - - pos: 58.474205,51.52541 - parent: 1 - type: Transform -- uid: 20770 - type: BlastDoorExterior1 - components: - - pos: 50.5,45.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -228710.77 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 20638 - - port: Off - uid: 20290 - Close: - - port: Off - uid: 20638 - - port: On - uid: 20290 - Toggle: [] - type: SignalReceiver -- uid: 20771 - type: AirlockExternalGlass - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-13.5 - parent: 1 - type: Transform -- uid: 20772 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -7.5,37.5 - parent: 1 - type: Transform -- uid: 20773 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -7.5,39.5 - parent: 1 - type: Transform -- uid: 20774 - type: CarpetGreen - components: - - pos: -21.5,42.5 - parent: 1 - type: Transform -- uid: 20775 - type: CarpetGreen - components: - - pos: -21.5,43.5 - parent: 1 - type: Transform -- uid: 20776 - type: Grille - components: - - pos: 2.5,-94.5 - parent: 1 - type: Transform -- uid: 20777 - type: Grille - components: - - pos: 2.5,-95.5 - parent: 1 - type: Transform -- uid: 20778 - type: Grille - components: - - pos: 2.5,-96.5 - parent: 1 - type: Transform -- uid: 20779 - type: Grille - components: - - pos: 2.5,-97.5 - parent: 1 - type: Transform -- uid: 20780 - type: Grille - components: - - pos: 2.5,-98.5 - parent: 1 - type: Transform -- uid: 20781 - type: Grille - components: - - pos: 2.5,-99.5 - parent: 1 - type: Transform -- uid: 20782 - type: Grille - components: - - pos: 2.5,-100.5 - parent: 1 - type: Transform -- uid: 20783 - type: Grille - components: - - pos: 2.5,-101.5 - parent: 1 - type: Transform -- uid: 20784 - type: Grille - components: - - pos: 2.5,-102.5 - parent: 1 - type: Transform -- uid: 20785 - type: Grille - components: - - pos: 2.5,-103.5 - parent: 1 - type: Transform -- uid: 20786 - type: Grille - components: - - pos: 2.5,-104.5 - parent: 1 - type: Transform -- uid: 20787 - type: Grille - components: - - pos: 4.5,-107.5 - parent: 1 - type: Transform -- uid: 20788 - type: Grille - components: - - pos: 5.5,-107.5 - parent: 1 - type: Transform -- uid: 20789 - type: Grille - components: - - pos: 6.5,-107.5 - parent: 1 - type: Transform -- uid: 20790 - type: Grille - components: - - pos: 7.5,-107.5 - parent: 1 - type: Transform -- uid: 20791 - type: Grille - components: - - pos: 8.5,-107.5 - parent: 1 - type: Transform -- uid: 20792 - type: Grille - components: - - pos: 9.5,-107.5 - parent: 1 - type: Transform -- uid: 20793 - type: Grille - components: - - pos: 10.5,-107.5 - parent: 1 - type: Transform -- uid: 20794 - type: Grille - components: - - pos: 11.5,-107.5 - parent: 1 - type: Transform -- uid: 20795 - type: Grille - components: - - pos: 12.5,-107.5 - parent: 1 - type: Transform -- uid: 20796 - type: Grille - components: - - pos: 13.5,-107.5 - parent: 1 - type: Transform -- uid: 20797 - type: Grille - components: - - pos: 14.5,-107.5 - parent: 1 - type: Transform -- uid: 20798 - type: Grille - components: - - pos: 15.5,-107.5 - parent: 1 - type: Transform -- uid: 20799 - type: Grille - components: - - pos: 16.5,-107.5 - parent: 1 - type: Transform -- uid: 20800 - type: Grille - components: - - pos: 17.5,-107.5 - parent: 1 - type: Transform -- uid: 20801 - type: Grille - components: - - pos: 20.5,-105.5 - parent: 1 - type: Transform -- uid: 20802 - type: Grille - components: - - pos: 20.5,-104.5 - parent: 1 - type: Transform -- uid: 20803 - type: Grille - components: - - pos: 20.5,-103.5 - parent: 1 - type: Transform -- uid: 20804 - type: Grille - components: - - pos: 20.5,-102.5 - parent: 1 - type: Transform -- uid: 20805 - type: Grille - components: - - pos: 20.5,-101.5 - parent: 1 - type: Transform -- uid: 20806 - type: Grille - components: - - pos: 20.5,-100.5 - parent: 1 - type: Transform -- uid: 20807 - type: Grille - components: - - pos: 20.5,-99.5 - parent: 1 - type: Transform -- uid: 20808 - type: Grille - components: - - pos: 20.5,-98.5 - parent: 1 - type: Transform -- uid: 20809 - type: Grille - components: - - pos: 20.5,-97.5 - parent: 1 - type: Transform -- uid: 20810 - type: Grille - components: - - pos: 20.5,-96.5 - parent: 1 - type: Transform -- uid: 20811 - type: Grille - components: - - pos: 20.5,-95.5 - parent: 1 - type: Transform -- uid: 20812 - type: Grille - components: - - pos: 20.5,-94.5 - parent: 1 - type: Transform -- uid: 20813 - type: Catwalk - components: - - pos: 12.5,-92.5 - parent: 1 - type: Transform -- uid: 20814 - type: Grille - components: - - pos: 13.5,-92.5 - parent: 1 - type: Transform -- uid: 20815 - type: Grille - components: - - pos: 14.5,-92.5 - parent: 1 - type: Transform -- uid: 20816 - type: Grille - components: - - pos: 15.5,-92.5 - parent: 1 - type: Transform -- uid: 20817 - type: Grille - components: - - pos: 16.5,-92.5 - parent: 1 - type: Transform -- uid: 20818 - type: Grille - components: - - pos: 17.5,-92.5 - parent: 1 - type: Transform -- uid: 20819 - type: Grille - components: - - pos: 18.5,-92.5 - parent: 1 - type: Transform -- uid: 20820 - type: SolarPanel - components: - - pos: 16.5,-101.5 - parent: 1 - type: Transform -- uid: 20821 - type: SolarPanel - components: - - pos: 18.5,-101.5 - parent: 1 - type: Transform -- uid: 20822 - type: SolarPanel - components: - - pos: 18.5,-98.5 - parent: 1 - type: Transform -- uid: 20823 - type: SolarPanel - components: - - pos: 16.5,-98.5 - parent: 1 - type: Transform -- uid: 20824 - type: SolarPanel - components: - - pos: 18.5,-104.5 - parent: 1 - type: Transform -- uid: 20825 - type: SolarPanel - components: - - pos: 16.5,-104.5 - parent: 1 - type: Transform -- uid: 20826 - type: Catwalk - components: - - pos: 11.5,-99.5 - parent: 1 - type: Transform -- uid: 20827 - type: SolarPanel - components: - - pos: 4.5,-104.5 - parent: 1 - type: Transform -- uid: 20828 - type: SolarPanel - components: - - pos: 4.5,-101.5 - parent: 1 - type: Transform -- uid: 20829 - type: SolarPanel - components: - - pos: 6.5,-101.5 - parent: 1 - type: Transform -- uid: 20830 - type: SolarPanel - components: - - pos: 4.5,-98.5 - parent: 1 - type: Transform -- uid: 20831 - type: SolarPanel - components: - - pos: 6.5,-98.5 - parent: 1 - type: Transform -- uid: 20832 - type: SolarPanel - components: - - pos: 14.5,-104.5 - parent: 1 - type: Transform -- uid: 20833 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: 46.5,14.5 - parent: 1 - type: Transform -- uid: 20834 - type: CableHV - components: - - pos: 8.5,-104.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20835 - type: CableHV - components: - - pos: 7.5,-104.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20836 - type: CableHV - components: - - pos: 6.5,-104.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20837 - type: CableHV - components: - - pos: 5.5,-104.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20838 - type: CableHV - components: - - pos: 4.5,-104.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20839 - type: CableHV - components: - - pos: 14.5,-104.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20840 - type: CableHV - components: - - pos: 15.5,-104.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20841 - type: CableHV - components: - - pos: 16.5,-104.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20842 - type: CableHV - components: - - pos: 17.5,-104.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20843 - type: CableHV - components: - - pos: 18.5,-104.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20844 - type: CableHV - components: - - pos: 15.5,-101.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20845 - type: CableHV - components: - - pos: 16.5,-101.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20846 - type: CableHV - components: - - pos: 17.5,-101.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20847 - type: CableHV - components: - - pos: 18.5,-101.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20848 - type: CableHV - components: - - pos: 7.5,-101.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20849 - type: CableHV - components: - - pos: 6.5,-101.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20850 - type: CableHV - components: - - pos: 5.5,-101.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20851 - type: CableHV - components: - - pos: 4.5,-101.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20852 - type: CableHV - components: - - pos: 4.5,-98.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20853 - type: CableHV - components: - - pos: 5.5,-98.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20854 - type: CableHV - components: - - pos: 6.5,-98.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20855 - type: CableHV - components: - - pos: 7.5,-98.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20856 - type: CableHV - components: - - pos: 18.5,-98.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20857 - type: CableHV - components: - - pos: 17.5,-98.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20858 - type: CableHV - components: - - pos: 16.5,-98.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20859 - type: CableHV - components: - - pos: 15.5,-98.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20860 - type: FirelockGlass - components: - - pos: -5.5,-58.5 - parent: 1 - type: Transform -- uid: 20861 - type: Poweredlight - components: - - pos: 8.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20862 - type: Rack - components: - - pos: 18.5,39.5 - parent: 1 - type: Transform -- uid: 20863 - type: Poweredlight - components: - - pos: 1.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20864 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -3.5,51.5 - parent: 1 - type: Transform -- uid: 20865 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 21.5,-40.5 - parent: 1 - type: Transform -- uid: 20866 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20867 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20868 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20869 - type: ChairWood - components: - - pos: -3.5,53.5 - parent: 1 - type: Transform -- uid: 20870 - type: EmergencyLight - components: - - pos: -2.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20871 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 20872 - type: Poweredlight - components: - - pos: 21.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20873 - type: Poweredlight - components: - - pos: 29.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20874 - type: WallReinforced - components: - - pos: 13.5,-71.5 - parent: 1 - type: Transform -- uid: 20875 - type: AirlockMaintCaptainLocked - components: - - name: captains quarters - type: MetaData - - pos: 29.5,-31.5 - parent: 1 - type: Transform -- uid: 20876 - type: CarpetSBlue - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-36.5 - parent: 1 - type: Transform -- uid: 20877 - type: CableApcExtension - components: - - pos: -28.5,1.5 - parent: 1 - type: Transform -- uid: 20878 - type: CableApcExtension - components: - - pos: -27.5,1.5 - parent: 1 - type: Transform -- uid: 20879 - type: CableApcExtension - components: - - pos: -27.5,0.5 - parent: 1 - type: Transform -- uid: 20880 - type: Poweredlight - components: - - pos: -29.5,1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20881 - type: SpawnMobMouse - components: - - pos: 52.5,36.5 - parent: 1 - type: Transform -- uid: 20882 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -38.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20883 - type: FirelockGlass - components: - - pos: -46.5,9.5 - parent: 1 - type: Transform -- uid: 20884 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -51.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20885 - type: CableHV - components: - - pos: -2.5,-57.5 - parent: 1 - type: Transform -- uid: 20886 - type: CableHV - components: - - pos: -2.5,-56.5 - parent: 1 - type: Transform -- uid: 20887 - type: CableHV - components: - - pos: -2.5,-55.5 - parent: 1 - type: Transform -- uid: 20888 - type: CableHV - components: - - pos: -2.5,-54.5 - parent: 1 - type: Transform -- uid: 20889 - type: CableHV - components: - - pos: -2.5,-53.5 - parent: 1 - type: Transform -- uid: 20890 - type: CableHV - components: - - pos: -1.5,-53.5 - parent: 1 - type: Transform -- uid: 20891 - type: CableHV - components: - - pos: -0.5,-53.5 - parent: 1 - type: Transform -- uid: 20892 - type: CableHV - components: - - pos: -0.5,-52.5 - parent: 1 - type: Transform -- uid: 20893 - type: CableHV - components: - - pos: -0.5,-51.5 - parent: 1 - type: Transform -- uid: 20894 - type: CableHV - components: - - pos: -0.5,-50.5 - parent: 1 - type: Transform -- uid: 20895 - type: CableHV - components: - - pos: -0.5,-49.5 - parent: 1 - type: Transform -- uid: 20896 - type: CableHV - components: - - pos: -0.5,-48.5 - parent: 1 - type: Transform -- uid: 20897 - type: CableHV - components: - - pos: -0.5,-47.5 - parent: 1 - type: Transform -- uid: 20898 - type: CableHV - components: - - pos: -0.5,-46.5 - parent: 1 - type: Transform -- uid: 20899 - type: CableHV - components: - - pos: -0.5,-45.5 - parent: 1 - type: Transform -- uid: 20900 - type: CableHV - components: - - pos: -0.5,-44.5 - parent: 1 - type: Transform -- uid: 20901 - type: CableHV - components: - - pos: -0.5,-43.5 - parent: 1 - type: Transform -- uid: 20902 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 1.5,-71.5 - parent: 1 - type: Transform -- uid: 20903 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 2.5,-67.5 - parent: 1 - type: Transform -- uid: 20904 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 3.5,-71.5 - parent: 1 - type: Transform -- uid: 20905 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 4.5,-71.5 - parent: 1 - type: Transform -- uid: 20906 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 2.5,-68.5 - parent: 1 - type: Transform -- uid: 20907 - type: AirlockEngineeringLocked - components: - - name: substation - type: MetaData - - rot: 3.141592653589793 rad - pos: 14.5,-59.5 - parent: 1 - type: Transform -- uid: 20908 - type: CableApcExtension - components: - - pos: 22.5,-46.5 - parent: 1 - type: Transform -- uid: 20909 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20910 - type: CableApcStack - components: - - pos: -66.19752,-32.620537 - parent: 1 - type: Transform -- uid: 20911 - type: Grille - components: - - pos: 38.5,-57.5 - parent: 1 - type: Transform -- uid: 20912 - type: Grille - components: - - pos: 40.5,-57.5 - parent: 1 - type: Transform -- uid: 20913 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-69.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20914 - type: Welder - components: - - pos: -44.442474,-76.91975 - parent: 1 - type: Transform -- uid: 20915 - type: Grille - components: - - pos: 37.5,-21.5 - parent: 1 - type: Transform -- uid: 20916 - type: Grille - components: - - pos: 37.5,-22.5 - parent: 1 - type: Transform -- uid: 20917 - type: WallReinforced - components: - - pos: 24.5,-26.5 - parent: 1 - type: Transform -- uid: 20918 - type: WallReinforced - components: - - pos: 22.5,-26.5 - parent: 1 - type: Transform -- uid: 20919 - type: CableMV - components: - - pos: -6.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20920 - type: CableMV - components: - - pos: -6.5,16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20921 - type: CableMV - components: - - pos: -6.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20922 - type: CableMV - components: - - pos: -7.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20923 - type: CableMV - components: - - pos: -8.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20924 - type: CableMV - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20925 - type: CableMV - components: - - pos: -10.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20926 - type: CableMV - components: - - pos: -11.5,18.5 - parent: 1 - type: Transform -- uid: 20927 - type: CableMV - components: - - pos: -12.5,18.5 - parent: 1 - type: Transform -- uid: 20928 - type: CableMV - components: - - pos: -12.5,19.5 - parent: 1 - type: Transform -- uid: 20929 - type: CableMV - components: - - pos: -12.5,20.5 - parent: 1 - type: Transform -- uid: 20930 - type: CableMV - components: - - pos: -12.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20931 - type: CableMV - components: - - pos: -12.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20932 - type: CableMV - components: - - pos: -12.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20933 - type: CableMV - components: - - pos: -12.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20934 - type: CableMV - components: - - pos: -11.5,24.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20935 - type: CableMV - components: - - pos: -10.5,24.5 - parent: 1 - type: Transform -- uid: 20936 - type: CableMV - components: - - pos: -9.5,24.5 - parent: 1 - type: Transform -- uid: 20937 - type: CableApcExtension - components: - - pos: -11.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20938 - type: CableApcExtension - components: - - pos: -13.5,26.5 - parent: 1 - type: Transform -- uid: 20939 - type: CableMV - components: - - pos: -8.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20940 - type: CableMV - components: - - pos: -8.5,27.5 - parent: 1 - type: Transform -- uid: 20941 - type: CableMV - components: - - pos: -8.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20942 - type: CableMV - components: - - pos: -8.5,29.5 - parent: 1 - type: Transform -- uid: 20943 - type: CableMV - components: - - pos: -8.5,30.5 - parent: 1 - type: Transform -- uid: 20944 - type: CableApcExtension - components: - - pos: -26.5,0.5 - parent: 1 - type: Transform -- uid: 20945 - type: CableApcExtension - components: - - pos: -8.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20946 - type: CableApcExtension - components: - - pos: -8.5,15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20947 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -50.5,10.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 20948 - type: CableApcExtension - components: - - pos: -1.5,-80.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20949 - type: CableApcExtension - components: - - pos: -1.5,-81.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20950 - type: CableApcExtension - components: - - pos: -1.5,-82.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20951 - type: CableApcExtension - components: - - pos: -74.5,-25.5 - parent: 1 - type: Transform -- uid: 20952 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -75.5,-25.5 - parent: 1 - type: Transform -- uid: 20953 - type: CableApcExtension - components: - - pos: -56.5,-18.5 - parent: 1 - type: Transform -- uid: 20954 - type: CableApcExtension - components: - - pos: -23.5,10.5 - parent: 1 - type: Transform -- uid: 20955 - type: CableApcExtension - components: - - pos: -22.5,10.5 - parent: 1 - type: Transform -- uid: 20956 - type: CableApcExtension - components: - - pos: -22.5,11.5 - parent: 1 - type: Transform -- uid: 20957 - type: SurveillanceCameraEngineering - components: - - rot: 3.141592653589793 rad - pos: -29.5,-16.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: engineering main corridor - type: SurveillanceCamera -- uid: 20958 - type: SurveillanceCameraEngineering - components: - - pos: -38.5,-13.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: engineer canteen - type: SurveillanceCamera -- uid: 20959 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-9.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'AME ' - type: SurveillanceCamera -- uid: 20960 - type: SurveillanceCameraEngineering - components: - - pos: -52.5,-20.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: engineering console room - type: SurveillanceCamera -- uid: 20961 - type: SurveillanceCameraEngineering - components: - - pos: -67.5,-28.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: particle accelerator - type: SurveillanceCamera -- uid: 20962 - type: SurveillanceCameraEngineering - components: - - rot: -1.5707963267948966 rad - pos: -22.5,4.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: gravity generator - type: SurveillanceCamera -- uid: 20963 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,27.5 - parent: 1 - type: Transform -- uid: 20964 - type: AtmosFixNitrogenMarker - components: - - pos: -48.5,-54.5 - parent: 1 - type: Transform -- uid: 20965 - type: SignalSwitch - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-35.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 14539 - - port: Open - uid: 28747 - - port: Open - uid: 28749 - - port: Open - uid: 28750 - - port: Open - uid: 28751 - - port: Open - uid: 28752 - - port: Open - uid: 28748 - Off: - - port: Close - uid: 14539 - - port: Close - uid: 28747 - - port: Close - uid: 28749 - - port: Close - uid: 28750 - - port: Close - uid: 28751 - - port: Close - uid: 28752 - - port: Close - uid: 28748 - type: SignalTransmitter - - type: ItemCooldown -- uid: 20966 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-25.5 - parent: 1 - type: Transform -- uid: 20967 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-24.5 - parent: 1 - type: Transform -- uid: 20968 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-23.5 - parent: 1 - type: Transform -- uid: 20969 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-21.5 - parent: 1 - type: Transform -- uid: 20970 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-20.5 - parent: 1 - type: Transform -- uid: 20971 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-18.5 - parent: 1 - type: Transform -- uid: 20972 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-17.5 - parent: 1 - type: Transform -- uid: 20973 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-16.5 - parent: 1 - type: Transform -- uid: 20974 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -76.5,-12.5 - parent: 1 - type: Transform -- uid: 20975 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -76.5,-11.5 - parent: 1 - type: Transform -- uid: 20976 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-14.5 - parent: 1 - type: Transform -- uid: 20977 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-12.5 - parent: 1 - type: Transform -- uid: 20978 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: -79.5,-13.5 - parent: 1 - type: Transform -- uid: 20979 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -76.5,-13.5 - parent: 1 - type: Transform -- uid: 20980 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -63.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20981 - type: CableApcExtension - components: - - pos: 41.5,14.5 - parent: 1 - type: Transform -- uid: 20982 - type: CableApcExtension - components: - - pos: 42.5,14.5 - parent: 1 - type: Transform -- uid: 20983 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -69.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20984 - type: Multitool - components: - - pos: -57.653404,-25.398897 - parent: 1 - type: Transform - - devices: - 'UID: 31532': 16051 - type: NetworkConfigurator -- uid: 20985 - type: CableHV - components: - - pos: -53.5,-18.5 - parent: 1 - type: Transform -- uid: 20986 - type: CableHV - components: - - pos: -53.5,-17.5 - parent: 1 - type: Transform -- uid: 20987 - type: CableHV - components: - - pos: -53.5,-16.5 - parent: 1 - type: Transform -- uid: 20988 - type: CableHV - components: - - pos: -53.5,-15.5 - parent: 1 - type: Transform -- uid: 20989 - type: CableHV - components: - - pos: -53.5,-14.5 - parent: 1 - type: Transform -- uid: 20990 - type: CableHV - components: - - pos: -53.5,-13.5 - parent: 1 - type: Transform -- uid: 20991 - type: CableHV - components: - - pos: -54.5,-13.5 - parent: 1 - type: Transform -- uid: 20992 - type: CableHV - components: - - pos: -55.5,-13.5 - parent: 1 - type: Transform -- uid: 20993 - type: CableMV - components: - - pos: -55.5,-13.5 - parent: 1 - type: Transform -- uid: 20994 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -73.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20995 - type: PoweredSmallLight - components: - - pos: -68.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20996 - type: PoweredSmallLight - components: - - pos: -64.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 20997 - type: CableApcExtension - components: - - pos: -75.5,-11.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20998 - type: CableApcExtension - components: - - pos: -75.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 20999 - type: CableApcExtension - components: - - pos: -75.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21000 - type: CableApcExtension - components: - - pos: -75.5,-8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21001 - type: CableApcExtension - components: - - pos: -75.5,-7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21002 - type: CableApcExtension - components: - - pos: -75.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21003 - type: CableApcExtension - components: - - pos: -75.5,-5.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21004 - type: CableApcExtension - components: - - pos: -75.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21005 - type: CableApcExtension - components: - - pos: -74.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21006 - type: CableApcExtension - components: - - pos: -73.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21007 - type: CableApcExtension - components: - - pos: -72.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21008 - type: CableApcExtension - components: - - pos: -71.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21009 - type: CableApcExtension - components: - - pos: -70.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21010 - type: CableApcExtension - components: - - pos: -69.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21011 - type: CableApcExtension - components: - - pos: -68.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21012 - type: CableApcExtension - components: - - pos: -67.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21013 - type: CableApcExtension - components: - - pos: -66.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21014 - type: CableApcExtension - components: - - pos: -65.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21015 - type: CableApcExtension - components: - - pos: -64.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21016 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21017 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -57.5,-16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21018 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-70.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: virology reception - type: SurveillanceCamera -- uid: 21019 - type: SurveillanceCameraMedical - components: - - pos: -26.5,-80.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: virology treatment - type: SurveillanceCamera -- uid: 21020 - type: SurveillanceCameraMedical - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-83.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: virology testing - type: SurveillanceCamera -- uid: 21021 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-6.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: library - type: SurveillanceCamera -- uid: 21022 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: ice cream parlor - type: SurveillanceCamera -- uid: 21023 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: 6.5,6.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Kitchen - type: SurveillanceCamera -- uid: 21024 - type: SurveillanceCameraService - components: - - rot: 1.5707963267948966 rad - pos: 14.5,8.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: bar - type: SurveillanceCamera -- uid: 21025 - type: SurveillanceCameraSupply - components: - - pos: -43.5,18.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: cargo dock - type: SurveillanceCamera -- uid: 21026 - type: SurveillanceCameraSupply - components: - - rot: 1.5707963267948966 rad - pos: -30.5,22.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: cargo - type: SurveillanceCamera -- uid: 21027 - type: SurveillanceCameraSupply - components: - - pos: -43.5,28.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: salvage magnet - type: SurveillanceCamera -- uid: 21028 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 25.5,-4.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 21029 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21030 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21031 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21032 - type: PortableScrubber - components: - - pos: -33.5,-43.5 - parent: 1 - type: Transform -- uid: 21033 - type: PortableScrubber - components: - - pos: -33.5,-44.5 - parent: 1 - type: Transform -- uid: 21034 - type: PortableScrubber - components: - - pos: -33.5,-45.5 - parent: 1 - type: Transform -- uid: 21035 - type: GasThermoMachineFreezer - components: - - pos: -33.5,-52.5 - parent: 1 - type: Transform -- uid: 21036 - type: GasValve - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-53.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21037 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-53.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 21038 - type: GasValve - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-55.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21039 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 21040 - type: GasThermoMachineHeater - components: - - pos: -33.5,-54.5 - parent: 1 - type: Transform -- uid: 21041 - type: WallSolid - components: - - pos: -35.5,20.5 - parent: 1 - type: Transform -- uid: 21042 - type: ShuttersNormalOpen - components: - - pos: 32.5,9.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -56135.043 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28070 - Close: - - port: Off - uid: 28070 - Toggle: [] - type: SignalReceiver -- uid: 21043 - type: SignCargoDock - components: - - pos: -35.532974,23.594805 - parent: 1 - type: Transform -- uid: 21044 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21045 - type: Poweredlight - components: - - pos: 32.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21046 - type: Table - components: - - pos: 54.5,12.5 - parent: 1 - type: Transform -- uid: 21047 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: -55.5,-29.5 - parent: 1 - type: Transform -- uid: 21048 - type: Firelock - components: - - pos: -24.5,-49.5 - parent: 1 - type: Transform -- uid: 21049 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 61.5,24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21050 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,24.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21051 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 63.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21052 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 63.5,11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21053 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 63.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21054 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-22.5 - parent: 1 - type: Transform -- uid: 21055 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-23.5 - parent: 1 - type: Transform -- uid: 21056 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21057 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21058 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21059 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 23.5,-53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21060 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21061 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21062 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,-53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21063 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21064 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 21.5,-54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21065 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 19.5,-54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21066 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 19.5,-54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21067 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-71.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21068 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-71.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21069 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -45.5,-71.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21070 - type: GasPipeStraight - components: - - pos: -45.5,-72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21071 - type: GasPipeStraight - components: - - pos: -45.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21072 - type: GasPipeStraight - components: - - pos: -45.5,-74.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21073 - type: GasPipeStraight - components: - - pos: -45.5,-75.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21074 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21075 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21076 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21077 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21078 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -49.5,-76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21079 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -50.5,-76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21080 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -51.5,-76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21081 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21082 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21083 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21084 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -46.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21085 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21086 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -41.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21087 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -42.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21088 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21089 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21090 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21091 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,-73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21092 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -46.5,-74.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21093 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -47.5,-75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21094 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21095 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21096 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21097 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21098 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21099 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21100 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -54.5,-75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21101 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21102 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -54.5,-77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21103 - type: GasVentPump - components: - - pos: -54.5,-74.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21104 - type: Catwalk - components: - - pos: -13.5,-8.5 - parent: 1 - type: Transform -- uid: 21105 - type: SpawnPointChiefEngineer - components: - - pos: -36.5,-17.5 - parent: 1 - type: Transform -- uid: 21106 - type: WoodDoor - components: - - rot: 3.141592653589793 rad - pos: -29.5,-5.5 - parent: 1 - type: Transform -- uid: 21107 - type: WindowReinforcedDirectional - components: - - pos: -12.5,-9.5 - parent: 1 - type: Transform -- uid: 21108 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-9.5 - parent: 1 - type: Transform -- uid: 21109 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: -46.5,-2.5 - parent: 1 - type: Transform -- uid: 21110 - type: AirlockGlass - components: - - pos: -46.5,2.5 - parent: 1 - type: Transform -- uid: 21111 - type: AirlockGlass - components: - - pos: -47.5,2.5 - parent: 1 - type: Transform -- uid: 21112 - type: AirlockGlass - components: - - pos: -45.5,2.5 - parent: 1 - type: Transform -- uid: 21113 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: -45.5,9.5 - parent: 1 - type: Transform -- uid: 21114 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: -46.5,9.5 - parent: 1 - type: Transform -- uid: 21115 - type: FirelockGlass - components: - - pos: -19.5,-7.5 - parent: 1 - type: Transform -- uid: 21116 - type: FirelockGlass - components: - - pos: -18.5,-7.5 - parent: 1 - type: Transform -- uid: 21117 - type: FirelockGlass - components: - - pos: -20.5,-7.5 - parent: 1 - type: Transform -- uid: 21118 - type: FirelockGlass - components: - - pos: 35.5,0.5 - parent: 1 - type: Transform -- uid: 21119 - type: Firelock - components: - - pos: 21.5,9.5 - parent: 1 - type: Transform -- uid: 21120 - type: FirelockGlass - components: - - pos: -32.5,27.5 - parent: 1 - type: Transform -- uid: 21121 - type: WarpPoint - components: - - name: 'warp: salvage' - type: MetaData - - rot: 1.5707963267948966 rad - pos: -43.5,30.5 - parent: 1 - type: Transform - - location: salvage - type: WarpPoint -- uid: 21122 - type: WarpPoint - components: - - name: 'warp: arrivals' - type: MetaData - - rot: 1.5707963267948966 rad - pos: 39.5,-71.5 - parent: 1 - type: Transform - - location: arrivals - type: WarpPoint -- uid: 21123 - type: WarpPoint - components: - - name: 'Warp: kitchen' - type: MetaData - - rot: 1.5707963267948966 rad - pos: 2.5,8.5 - parent: 1 - type: Transform - - location: kitchen - type: WarpPoint -- uid: 21124 - type: WarpPoint - components: - - name: 'Warp: botany' - type: MetaData - - rot: 1.5707963267948966 rad - pos: -7.5,6.5 - parent: 1 - type: Transform - - location: hydrophonics - type: WarpPoint -- uid: 21125 - type: WarpPoint - components: - - name: 'warp: theatre' - type: MetaData - - rot: 1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 1 - type: Transform - - location: theatre - type: WarpPoint -- uid: 21126 - type: WarpPoint - components: - - name: 'warp: library' - type: MetaData - - rot: 1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 1 - type: Transform - - location: library - type: WarpPoint -- uid: 21127 - type: WarpPoint - components: - - name: 'Warp: armory' - type: MetaData - - rot: 1.5707963267948966 rad - pos: 29.5,30.5 - parent: 1 - type: Transform - - location: armory - type: WarpPoint -- uid: 21128 - type: WarpPoint - components: - - name: 'warp: revolution bar' - type: MetaData - - rot: 1.5707963267948966 rad - pos: -41.5,-76.5 - parent: 1 - type: Transform - - location: rebelion bar - type: WarpPoint -- uid: 21129 - type: WallReinforced - components: - - pos: 64.5,-61.5 - parent: 1 - type: Transform -- uid: 21130 - type: AtmosFixNitrogenMarker - components: - - pos: -49.5,-54.5 - parent: 1 - type: Transform -- uid: 21131 - type: AtmosFixNitrogenMarker - components: - - pos: -50.5,-54.5 - parent: 1 - type: Transform -- uid: 21132 - type: AtmosFixOxygenMarker - components: - - pos: -48.5,-52.5 - parent: 1 - type: Transform -- uid: 21133 - type: AtmosFixOxygenMarker - components: - - pos: -49.5,-52.5 - parent: 1 - type: Transform -- uid: 21134 - type: AtmosFixOxygenMarker - components: - - pos: -50.5,-52.5 - parent: 1 - type: Transform -- uid: 21135 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,-33.5 - parent: 1 - type: Transform -- uid: 21136 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,-34.5 - parent: 1 - type: Transform -- uid: 21137 - type: AtmosFixBlockerMarker - components: - - pos: -44.5,-35.5 - parent: 1 - type: Transform -- uid: 21138 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,-33.5 - parent: 1 - type: Transform -- uid: 21139 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,-34.5 - parent: 1 - type: Transform -- uid: 21140 - type: AtmosFixBlockerMarker - components: - - pos: -43.5,-35.5 - parent: 1 - type: Transform -- uid: 21141 - type: AtmosFixBlockerMarker - components: - - pos: -42.5,-33.5 - parent: 1 - type: Transform -- uid: 21142 - type: AtmosFixBlockerMarker - components: - - pos: -42.5,-34.5 - parent: 1 - type: Transform -- uid: 21143 - type: AtmosFixBlockerMarker - components: - - pos: -42.5,-35.5 - parent: 1 - type: Transform -- uid: 21144 - type: AtmosFixBlockerMarker - components: - - pos: -42.5,-36.5 - parent: 1 - type: Transform -- uid: 21145 - type: AtmosFixBlockerMarker - components: - - pos: -42.5,-32.5 - parent: 1 - type: Transform -- uid: 21146 - type: AtmosFixBlockerMarker - components: - - pos: -45.5,-34.5 - parent: 1 - type: Transform -- uid: 21147 - type: AtmosFixBlockerMarker - components: - - pos: -48.5,-50.5 - parent: 1 - type: Transform -- uid: 21148 - type: AtmosFixBlockerMarker - components: - - pos: -49.5,-50.5 - parent: 1 - type: Transform -- uid: 21149 - type: AtmosFixBlockerMarker - components: - - pos: -50.5,-50.5 - parent: 1 - type: Transform -- uid: 21150 - type: AtmosFixBlockerMarker - components: - - pos: -48.5,-48.5 - parent: 1 - type: Transform -- uid: 21151 - type: AtmosFixBlockerMarker - components: - - pos: -49.5,-48.5 - parent: 1 - type: Transform -- uid: 21152 - type: AtmosFixBlockerMarker - components: - - pos: -50.5,-48.5 - parent: 1 - type: Transform -- uid: 21153 - type: AtmosFixBlockerMarker - components: - - pos: -48.5,-44.5 - parent: 1 - type: Transform -- uid: 21154 - type: AtmosFixBlockerMarker - components: - - pos: -49.5,-44.5 - parent: 1 - type: Transform -- uid: 21155 - type: AtmosFixBlockerMarker - components: - - pos: -50.5,-44.5 - parent: 1 - type: Transform -- uid: 21156 - type: AtmosFixBlockerMarker - components: - - pos: -48.5,-42.5 - parent: 1 - type: Transform -- uid: 21157 - type: AtmosFixBlockerMarker - components: - - pos: -49.5,-42.5 - parent: 1 - type: Transform -- uid: 21158 - type: AtmosFixBlockerMarker - components: - - pos: -50.5,-42.5 - parent: 1 - type: Transform -- uid: 21159 - type: AtmosFixPlasmaMarker - components: - - pos: -48.5,-46.5 - parent: 1 - type: Transform -- uid: 21160 - type: AtmosFixPlasmaMarker - components: - - pos: -49.5,-46.5 - parent: 1 - type: Transform -- uid: 21161 - type: AtmosFixPlasmaMarker - components: - - pos: -50.5,-46.5 - parent: 1 - type: Transform -- uid: 21162 - type: CarpetPink - components: - - rot: -1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 1 - type: Transform -- uid: 21163 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21164 - type: SpawnMobCat - components: - - pos: -12.5,-38.5 - parent: 1 - type: Transform -- uid: 21165 - type: SpawnMobCat - components: - - pos: 57.5,16.5 - parent: 1 - type: Transform -- uid: 21166 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: -15.5,28.5 - parent: 1 - type: Transform -- uid: 21167 - type: SpawnMobMouse - components: - - pos: -51.5,-0.5 - parent: 1 - type: Transform -- uid: 21168 - type: SpawnMobMouse - components: - - pos: -38.5,-64.5 - parent: 1 - type: Transform -- uid: 21169 - type: SpawnMobMouse - components: - - pos: -40.5,-81.5 - parent: 1 - type: Transform -- uid: 21170 - type: SpawnMobMouse - components: - - pos: -45.5,-77.5 - parent: 1 - type: Transform -- uid: 21171 - type: MouseTimedSpawner - components: - - pos: 5.5,-70.5 - parent: 1 - type: Transform -- uid: 21172 - type: StoolBar - components: - - pos: 4.5,12.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 21173 - type: ClosetJanitorFilled - components: - - pos: -10.5,-18.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21174 - type: WallReinforced - components: - - pos: 27.5,-33.5 - parent: 1 - type: Transform -- uid: 21175 - type: CableApcExtension - components: - - pos: -47.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21176 - type: CableApcExtension - components: - - pos: -47.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21177 - type: CableApcExtension - components: - - pos: -47.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21178 - type: CableApcExtension - components: - - pos: -46.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21179 - type: CableApcExtension - components: - - pos: -45.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21180 - type: CableApcExtension - components: - - pos: -45.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21181 - type: CableApcExtension - components: - - pos: -45.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21182 - type: CableApcExtension - components: - - pos: -45.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21183 - type: CableApcExtension - components: - - pos: -45.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21184 - type: CableApcExtension - components: - - pos: -45.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21185 - type: CableApcExtension - components: - - pos: -45.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21186 - type: CableApcExtension - components: - - pos: -45.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21187 - type: CableApcExtension - components: - - pos: -45.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21188 - type: CableApcExtension - components: - - pos: -46.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21189 - type: CableApcExtension - components: - - pos: -46.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21190 - type: CableApcExtension - components: - - pos: -46.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21191 - type: CableApcExtension - components: - - pos: -46.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21192 - type: CableApcExtension - components: - - pos: -46.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21193 - type: CableApcExtension - components: - - pos: -45.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21194 - type: CableApcExtension - components: - - pos: -44.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21195 - type: CableApcExtension - components: - - pos: -43.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21196 - type: CableApcExtension - components: - - pos: -42.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21197 - type: CableApcExtension - components: - - pos: -41.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21198 - type: CableApcExtension - components: - - pos: -40.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21199 - type: CableApcExtension - components: - - pos: -39.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21200 - type: CableApcExtension - components: - - pos: -38.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21201 - type: CableApcExtension - components: - - pos: -37.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21202 - type: CableApcExtension - components: - - pos: -47.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21203 - type: CableApcExtension - components: - - pos: -48.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21204 - type: CableApcExtension - components: - - pos: -49.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21205 - type: CableApcExtension - components: - - pos: -50.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21206 - type: CableApcExtension - components: - - pos: -51.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21207 - type: CableApcExtension - components: - - pos: -52.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21208 - type: CableApcExtension - components: - - pos: -53.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21209 - type: CableApcExtension - components: - - pos: -54.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21210 - type: CableApcExtension - components: - - pos: -55.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21211 - type: CableApcExtension - components: - - pos: -56.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21212 - type: WallReinforced - components: - - pos: -47.5,52.5 - parent: 1 - type: Transform -- uid: 21213 - type: WallReinforced - components: - - pos: -41.5,52.5 - parent: 1 - type: Transform -- uid: 21214 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -47.5,53.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21215 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -41.5,53.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21216 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -40.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21217 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -46.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21218 - type: WarpPoint - components: - - rot: 3.141592653589793 rad - pos: -44.5,53.5 - parent: 1 - type: Transform - - location: asteroid - type: WarpPoint -- uid: 21219 - type: Grille - components: - - pos: 55.5,-15.5 - parent: 1 - type: Transform -- uid: 21220 - type: Grille - components: - - pos: 56.5,-15.5 - parent: 1 - type: Transform -- uid: 21221 - type: Grille - components: - - pos: 58.5,-15.5 - parent: 1 - type: Transform -- uid: 21222 - type: Grille - components: - - pos: 59.5,-15.5 - parent: 1 - type: Transform -- uid: 21223 - type: Grille - components: - - pos: 58.5,-59.5 - parent: 1 - type: Transform -- uid: 21224 - type: Grille - components: - - pos: 58.5,-60.5 - parent: 1 - type: Transform -- uid: 21225 - type: WallReinforced - components: - - pos: 52.5,-25.5 - parent: 1 - type: Transform -- uid: 21226 - type: WallReinforced - components: - - pos: 55.5,-25.5 - parent: 1 - type: Transform -- uid: 21227 - type: Grille - components: - - pos: 42.5,-31.5 - parent: 1 - type: Transform -- uid: 21228 - type: Grille - components: - - pos: 37.5,-64.5 - parent: 1 - type: Transform -- uid: 21229 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-63.5 - parent: 1 - type: Transform -- uid: 21230 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 23.5,-74.5 - parent: 1 - type: Transform -- uid: 21231 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-77.5 - parent: 1 - type: Transform -- uid: 21232 - type: RandomPosterLegit - components: - - pos: 50.5,-80.5 - parent: 1 - type: Transform -- uid: 21233 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: 25.5,-71.5 - parent: 1 - type: Transform -- uid: 21234 - type: RandomPosterLegit - components: - - pos: 49.5,-70.5 - parent: 1 - type: Transform -- uid: 21235 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: 17.5,-84.5 - parent: 1 - type: Transform -- uid: 21236 - type: AirlockMaintGlass - components: - - pos: 52.5,-32.5 - parent: 1 - type: Transform -- uid: 21237 - type: Screwdriver - components: - - rot: 12.566370614359172 rad - pos: 72.048706,-43.392498 - parent: 1 - type: Transform - - nextAttack: 849.4632714 - type: MeleeWeapon -- uid: 21238 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-49.5 - parent: 1 - type: Transform -- uid: 21239 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-86.5 - parent: 1 - type: Transform -- uid: 21240 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-86.5 - parent: 1 - type: Transform -- uid: 21241 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-83.5 - parent: 1 - type: Transform -- uid: 21242 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21243 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 3.5,-65.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21244 - type: PoweredSmallLight - components: - - pos: -48.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21245 - type: CableApcExtension - components: - - pos: 10.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21246 - type: CableApcExtension - components: - - pos: 11.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21247 - type: CableApcExtension - components: - - pos: 12.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21248 - type: CableApcExtension - components: - - pos: 13.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21249 - type: CableApcExtension - components: - - pos: 14.5,-65.5 - parent: 1 - type: Transform -- uid: 21250 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 23.5,-89.5 - parent: 1 - type: Transform -- uid: 21251 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,28.5 - parent: 1 - type: Transform -- uid: 21252 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,29.5 - parent: 1 - type: Transform -- uid: 21253 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,30.5 - parent: 1 - type: Transform -- uid: 21254 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,31.5 - parent: 1 - type: Transform -- uid: 21255 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,32.5 - parent: 1 - type: Transform -- uid: 21256 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,33.5 - parent: 1 - type: Transform -- uid: 21257 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,34.5 - parent: 1 - type: Transform -- uid: 21258 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 25.5,34.5 - parent: 1 - type: Transform -- uid: 21259 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 26.5,34.5 - parent: 1 - type: Transform -- uid: 21260 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 27.5,34.5 - parent: 1 - type: Transform -- uid: 21261 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 28.5,34.5 - parent: 1 - type: Transform -- uid: 21262 - type: PosterLegitIonRifle - components: - - pos: 27.5,33.5 - parent: 1 - type: Transform -- uid: 21263 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 30.5,34.5 - parent: 1 - type: Transform -- uid: 21264 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 31.5,34.5 - parent: 1 - type: Transform -- uid: 21265 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 32.5,34.5 - parent: 1 - type: Transform -- uid: 21266 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 33.5,34.5 - parent: 1 - type: Transform -- uid: 21267 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,34.5 - parent: 1 - type: Transform -- uid: 21268 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,33.5 - parent: 1 - type: Transform -- uid: 21269 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,32.5 - parent: 1 - type: Transform -- uid: 21270 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,31.5 - parent: 1 - type: Transform -- uid: 21271 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,30.5 - parent: 1 - type: Transform -- uid: 21272 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,29.5 - parent: 1 - type: Transform -- uid: 21273 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,28.5 - parent: 1 - type: Transform -- uid: 21274 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 34.5,27.5 - parent: 1 - type: Transform -- uid: 21275 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 24.5,37.5 - parent: 1 - type: Transform -- uid: 21276 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 21.5,37.5 - parent: 1 - type: Transform -- uid: 21277 - type: CableMV - components: - - pos: 33.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21278 - type: CableMV - components: - - pos: 33.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21279 - type: CableMV - components: - - pos: 33.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21280 - type: CableMV - components: - - pos: 34.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21281 - type: CableMV - components: - - pos: 35.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21282 - type: CableMV - components: - - pos: 36.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21283 - type: CableMV - components: - - pos: 36.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21284 - type: CableMV - components: - - pos: 36.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21285 - type: CableMV - components: - - pos: 36.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21286 - type: CableMV - components: - - pos: 36.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21287 - type: CableMV - components: - - pos: 35.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21288 - type: CableMV - components: - - pos: 34.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21289 - type: CableMV - components: - - pos: 36.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21290 - type: CableMV - components: - - pos: 34.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21291 - type: CableMV - components: - - pos: 34.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21292 - type: CableMV - components: - - pos: 33.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21293 - type: CableMV - components: - - pos: 32.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21294 - type: CableMV - components: - - pos: 32.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21295 - type: CableMV - components: - - pos: 32.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21296 - type: CableMV - components: - - pos: 32.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21297 - type: CableMV - components: - - pos: 33.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21298 - type: CableMV - components: - - pos: 31.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21299 - type: CableMV - components: - - pos: 30.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21300 - type: CableMV - components: - - pos: 29.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21301 - type: CableMV - components: - - pos: 28.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21302 - type: CableMV - components: - - pos: 27.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21303 - type: CableMV - components: - - pos: 26.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21304 - type: CableMV - components: - - pos: 25.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21305 - type: CableMV - components: - - pos: 24.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21306 - type: CableMV - components: - - pos: 23.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21307 - type: CableMV - components: - - pos: 22.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21308 - type: CableMV - components: - - pos: 21.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21309 - type: CableMV - components: - - pos: 26.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21310 - type: CableMV - components: - - pos: 26.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21311 - type: CableMV - components: - - pos: 26.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21312 - type: CableMV - components: - - pos: 25.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21313 - type: CableMV - components: - - pos: 24.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21314 - type: CableMV - components: - - pos: 23.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21315 - type: CableMV - components: - - pos: 22.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21316 - type: CableMV - components: - - pos: 22.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21317 - type: CableMV - components: - - pos: 22.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21318 - type: CableMV - components: - - pos: 22.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21319 - type: CableMV - components: - - pos: 22.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21320 - type: CableMV - components: - - pos: 22.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21321 - type: CableMV - components: - - pos: 22.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21322 - type: CableMV - components: - - pos: 22.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21323 - type: CableMV - components: - - pos: 22.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21324 - type: LockerElectricalSuppliesFilled - components: - - pos: 32.5,25.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21325 - type: Rack - components: - - pos: -24.5,-67.5 - parent: 1 - type: Transform -- uid: 21326 - type: Rack - components: - - pos: -23.5,-67.5 - parent: 1 - type: Transform -- uid: 21327 - type: Table - components: - - pos: -25.5,-67.5 - parent: 1 - type: Transform -- uid: 21328 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,19.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21329 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -7.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21330 - type: GasVentPump - components: - - pos: -8.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21331 - type: ReinforcedWindow - components: - - pos: 25.5,24.5 - parent: 1 - type: Transform -- uid: 21332 - type: Grille - components: - - pos: 32.5,35.5 - parent: 1 - type: Transform -- uid: 21333 - type: Grille - components: - - pos: 26.5,35.5 - parent: 1 - type: Transform -- uid: 21334 - type: Grille - components: - - pos: 34.5,37.5 - parent: 1 - type: Transform -- uid: 21335 - type: Grille - components: - - pos: 35.5,37.5 - parent: 1 - type: Transform -- uid: 21336 - type: Grille - components: - - pos: 36.5,37.5 - parent: 1 - type: Transform -- uid: 21337 - type: Grille - components: - - pos: 36.5,36.5 - parent: 1 - type: Transform -- uid: 21338 - type: Grille - components: - - pos: 36.5,35.5 - parent: 1 - type: Transform -- uid: 21339 - type: Grille - components: - - pos: 36.5,34.5 - parent: 1 - type: Transform -- uid: 21340 - type: CableMV - components: - - pos: 34.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21341 - type: CableMV - components: - - pos: 35.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21342 - type: CableMV - components: - - pos: 36.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21343 - type: CableMV - components: - - pos: 36.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21344 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -4.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21345 - type: GasPipeTJunction - components: - - pos: -4.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21346 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 33.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21347 - type: GasVentScrubber - components: - - pos: 17.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21348 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21349 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-4.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21350 - type: SurveillanceCameraService - components: - - rot: 3.141592653589793 rad - pos: -7.5,11.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: hydrophonics - type: SurveillanceCamera -- uid: 21351 - type: ClothingHeadHatUshanka - components: - - pos: -39.523006,-76.44785 - parent: 1 - type: Transform -- uid: 21352 - type: ClothingHeadHatUshanka - components: - - pos: -43.43965,-78.05615 - parent: 1 - type: Transform -- uid: 21353 - type: Chair - components: - - pos: 71.5,-55.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 21354 - type: ClothingHeadHelmetCosmonaut - components: - - pos: -37.48917,27.661566 - parent: 1 - type: Transform -- uid: 21355 - type: DrinkLongIslandIcedTeaGlass - components: - - pos: 23.326912,-28.451742 - parent: 1 - type: Transform -- uid: 21356 - type: WeaponCapacitorRecharger - components: - - pos: 5.5,20.5 - parent: 1 - type: Transform -- uid: 21357 - type: WeaponCapacitorRecharger - components: - - pos: 17.5,22.5 - parent: 1 - type: Transform -- uid: 21358 - type: WeaponCapacitorRecharger - components: - - pos: 25.5,23.5 - parent: 1 - type: Transform -- uid: 21359 - type: Dropper - components: - - pos: 6.566624,-45.31356 - parent: 1 - type: Transform -- uid: 21360 - type: Dropper - components: - - pos: 6.597874,-45.454185 - parent: 1 - type: Transform -- uid: 21361 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-30.5 - parent: 1 - type: Transform -- uid: 21362 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: -21.4735,9.533642 - parent: 1 - type: Transform -- uid: 21363 - type: SignDirectionalMed - components: - - pos: -17.51201,-24.680704 - parent: 1 - type: Transform -- uid: 21364 - type: SignDirectionalChapel - components: - - rot: 3.141592653589793 rad - pos: -17.448181,-40.311073 - parent: 1 - type: Transform -- uid: 21365 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -17.48425,-7.298242 - parent: 1 - type: Transform -- uid: 21366 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -17.5155,-24.43221 - parent: 1 - type: Transform -- uid: 21367 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -17.453,-40.550083 - parent: 1 - type: Transform -- uid: 21368 - type: CableApcExtension - components: - - pos: 26.5,31.5 - parent: 1 - type: Transform -- uid: 21369 - type: CableApcExtension - components: - - pos: 25.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21370 - type: CableApcExtension - components: - - pos: 24.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21371 - type: CableApcExtension - components: - - pos: 24.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21372 - type: CableApcExtension - components: - - pos: 24.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21373 - type: CableApcExtension - components: - - pos: 24.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21374 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21375 - type: TableReinforced - components: - - pos: -16.5,12.5 - parent: 1 - type: Transform -- uid: 21376 - type: PoweredSmallLight - components: - - pos: -6.5,14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21377 - type: SmallLight - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-48.5 - parent: 1 - type: Transform -- uid: 21378 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21379 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-6.5 - parent: 1 - type: Transform -- uid: 21380 - type: ClothingHeadHatPumpkin - components: - - pos: -6.603641,4.509495 - parent: 1 - type: Transform -- uid: 21381 - type: Catwalk - components: - - pos: 36.5,23.5 - parent: 1 - type: Transform -- uid: 21382 - type: Catwalk - components: - - pos: 37.5,23.5 - parent: 1 - type: Transform -- uid: 21383 - type: Catwalk - components: - - pos: 38.5,23.5 - parent: 1 - type: Transform -- uid: 21384 - type: Catwalk - components: - - pos: 39.5,23.5 - parent: 1 - type: Transform -- uid: 21385 - type: Catwalk - components: - - pos: 40.5,23.5 - parent: 1 - type: Transform -- uid: 21386 - type: Catwalk - components: - - pos: 41.5,23.5 - parent: 1 - type: Transform -- uid: 21387 - type: Catwalk - components: - - pos: 42.5,23.5 - parent: 1 - type: Transform -- uid: 21388 - type: Catwalk - components: - - pos: 35.5,23.5 - parent: 1 - type: Transform -- uid: 21389 - type: Catwalk - components: - - pos: 43.5,23.5 - parent: 1 - type: Transform -- uid: 21390 - type: CableApcExtension - components: - - pos: 54.5,28.5 - parent: 1 - type: Transform -- uid: 21391 - type: CableApcExtension - components: - - pos: 53.5,28.5 - parent: 1 - type: Transform -- uid: 21392 - type: Catwalk - components: - - pos: 46.5,26.5 - parent: 1 - type: Transform -- uid: 21393 - type: Catwalk - components: - - pos: 47.5,26.5 - parent: 1 - type: Transform -- uid: 21394 - type: ClosetMaintenanceFilledRandom - components: - - pos: 55.5,-3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21395 - type: SpawnPointAssistant - components: - - pos: -51.5,14.5 - parent: 1 - type: Transform -- uid: 21396 - type: PlushieSharkPink - components: - - pos: -44.508965,16.421295 - parent: 1 - type: Transform -- uid: 21397 - type: SpawnPointAssistant - components: - - pos: -45.5,5.5 - parent: 1 - type: Transform -- uid: 21398 - type: SpawnPointAssistant - components: - - pos: -52.5,7.5 - parent: 1 - type: Transform -- uid: 21399 - type: SpawnPointAssistant - components: - - pos: 39.5,-54.5 - parent: 1 - type: Transform -- uid: 21400 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21401 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21402 - type: GasPipeBend - components: - - pos: -15.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21403 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -15.5,-43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21404 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21405 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21406 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21407 - type: GasPipeStraight - components: - - pos: -15.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21408 - type: GasPipeStraight - components: - - pos: -19.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21409 - type: NitrogenTankFilled - components: - - pos: -70.575325,-25.445038 - parent: 1 - type: Transform -- uid: 21410 - type: PottedPlantRandom - components: - - pos: 23.5,-43.5 - parent: 1 - type: Transform -- uid: 21411 - type: PottedPlantRandom - components: - - pos: 27.5,-43.5 - parent: 1 - type: Transform -- uid: 21412 - type: Autolathe - components: - - pos: -34.5,19.5 - parent: 1 - type: Transform -- uid: 21413 - type: PottedPlantBioluminscent - components: - - pos: -27.5,17.5 - parent: 1 - type: Transform -- uid: 21414 - type: Table - components: - - pos: -34.5,20.5 - parent: 1 - type: Transform -- uid: 21415 - type: MedkitOxygenFilled - components: - - pos: -34.54821,20.589455 - parent: 1 - type: Transform -- uid: 21416 - type: VendingMachineCargoDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -34.5,18.5 - parent: 1 - type: Transform -- uid: 21417 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-65.5 - parent: 1 - type: Transform -- uid: 21418 - type: LockerFreezer - components: - - pos: 1.5,14.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 234.99965 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 21419 - type: WallSolid - components: - - pos: -0.5,10.5 - parent: 1 - type: Transform -- uid: 21420 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 2.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21421 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 1.5,11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21422 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21423 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21424 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21425 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21426 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21427 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,17.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21428 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21429 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21430 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21431 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21432 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21433 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21434 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21435 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21436 - type: GasPassiveVent - components: - - pos: 1.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21437 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-14.5 - parent: 1 - type: Transform -- uid: 21438 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: -30.5,-10.5 - parent: 1 - type: Transform -- uid: 21439 - type: CableApcExtension - components: - - pos: -62.5,-30.5 - parent: 1 - type: Transform -- uid: 21440 - type: CableApcExtension - components: - - pos: -61.5,-30.5 - parent: 1 - type: Transform -- uid: 21441 - type: CableApcExtension - components: - - pos: -60.5,-30.5 - parent: 1 - type: Transform -- uid: 21442 - type: CableHV - components: - - pos: -55.5,-25.5 - parent: 1 - type: Transform -- uid: 21443 - type: CableHV - components: - - pos: -56.5,-25.5 - parent: 1 - type: Transform -- uid: 21444 - type: CableHV - components: - - pos: -57.5,-25.5 - parent: 1 - type: Transform -- uid: 21445 - type: CableHV - components: - - pos: -60.5,-27.5 - parent: 1 - type: Transform -- uid: 21446 - type: AirlockEngineeringGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-11.5 - parent: 1 - type: Transform -- uid: 21447 - type: AirlockEngineeringGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-10.5 - parent: 1 - type: Transform -- uid: 21448 - type: Firelock - components: - - pos: -36.5,-14.5 - parent: 1 - type: Transform -- uid: 21449 - type: AirlockChiefEngineerLocked - components: - - name: ce room - type: MetaData - - rot: -1.5707963267948966 rad - pos: -33.5,-16.5 - parent: 1 - type: Transform -- uid: 21450 - type: FirelockGlass - components: - - pos: -13.5,-25.5 - parent: 1 - type: Transform -- uid: 21451 - type: FirelockGlass - components: - - pos: -13.5,-26.5 - parent: 1 - type: Transform -- uid: 21452 - type: FirelockGlass - components: - - pos: -13.5,-27.5 - parent: 1 - type: Transform -- uid: 21453 - type: FirelockGlass - components: - - pos: -63.5,-24.5 - parent: 1 - type: Transform -- uid: 21454 - type: AirlockEngineeringGlassLocked - components: - - pos: -33.5,-11.5 - parent: 1 - type: Transform -- uid: 21455 - type: AirlockEngineeringGlassLocked - components: - - pos: -33.5,-10.5 - parent: 1 - type: Transform -- uid: 21456 - type: FirelockGlass - components: - - pos: -11.5,-0.5 - parent: 1 - type: Transform -- uid: 21457 - type: FirelockGlass - components: - - pos: -11.5,-1.5 - parent: 1 - type: Transform -- uid: 21458 - type: FirelockGlass - components: - - pos: -11.5,3.5 - parent: 1 - type: Transform -- uid: 21459 - type: FirelockGlass - components: - - pos: -11.5,2.5 - parent: 1 - type: Transform -- uid: 21460 - type: ReinforcedWindow - components: - - pos: -45.5,-52.5 - parent: 1 - type: Transform -- uid: 21461 - type: ReinforcedWindow - components: - - pos: -45.5,-53.5 - parent: 1 - type: Transform -- uid: 21462 - type: ReinforcedWindow - components: - - pos: -45.5,-54.5 - parent: 1 - type: Transform -- uid: 21463 - type: ReinforcedWindow - components: - - pos: -45.5,-55.5 - parent: 1 - type: Transform -- uid: 21464 - type: Grille - components: - - pos: -45.5,-42.5 - parent: 1 - type: Transform -- uid: 21465 - type: Grille - components: - - pos: -45.5,-43.5 - parent: 1 - type: Transform -- uid: 21466 - type: Grille - components: - - pos: -45.5,-44.5 - parent: 1 - type: Transform -- uid: 21467 - type: Grille - components: - - pos: -45.5,-45.5 - parent: 1 - type: Transform -- uid: 21468 - type: Grille - components: - - pos: -45.5,-46.5 - parent: 1 - type: Transform -- uid: 21469 - type: Grille - components: - - pos: -45.5,-47.5 - parent: 1 - type: Transform -- uid: 21470 - type: Grille - components: - - pos: -45.5,-48.5 - parent: 1 - type: Transform -- uid: 21471 - type: Grille - components: - - pos: -45.5,-49.5 - parent: 1 - type: Transform -- uid: 21472 - type: Grille - components: - - pos: -45.5,-50.5 - parent: 1 - type: Transform -- uid: 21473 - type: Grille - components: - - pos: -45.5,-51.5 - parent: 1 - type: Transform -- uid: 21474 - type: Grille - components: - - pos: -45.5,-52.5 - parent: 1 - type: Transform -- uid: 21475 - type: Grille - components: - - pos: -45.5,-53.5 - parent: 1 - type: Transform -- uid: 21476 - type: Grille - components: - - pos: -45.5,-54.5 - parent: 1 - type: Transform -- uid: 21477 - type: Grille - components: - - pos: -45.5,-55.5 - parent: 1 - type: Transform -- uid: 21478 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 1.5,20.5 - parent: 1 - type: Transform -- uid: 21479 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 25.5,-85.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 21480 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 12.5,-79.5 - parent: 1 - type: Transform -- uid: 21481 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 11.5,-79.5 - parent: 1 - type: Transform -- uid: 21482 - type: FirelockGlass - components: - - pos: -24.5,9.5 - parent: 1 - type: Transform -- uid: 21483 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: -8.5,13.5 - parent: 1 - type: Transform -- uid: 21484 - type: AirlockHydroponicsLocked - components: - - name: hydrophonics - type: MetaData - - pos: -10.5,4.5 - parent: 1 - type: Transform -- uid: 21485 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-11.5 - parent: 1 - type: Transform -- uid: 21486 - type: CableApcExtension - components: - - pos: -40.5,-41.5 - parent: 1 - type: Transform -- uid: 21487 - type: Catwalk - components: - - pos: 48.5,26.5 - parent: 1 - type: Transform -- uid: 21488 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 64.5,16.5 - parent: 1 - type: Transform -- uid: 21489 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 65.5,3.5 - parent: 1 - type: Transform -- uid: 21490 - type: CableMV - components: - - pos: 49.5,-46.5 - parent: 1 - type: Transform -- uid: 21491 - type: CableMV - components: - - pos: 49.5,-47.5 - parent: 1 - type: Transform -- uid: 21492 - type: CableMV - components: - - pos: 49.5,-48.5 - parent: 1 - type: Transform -- uid: 21493 - type: CableMV - components: - - pos: 48.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21494 - type: CableApcExtension - components: - - pos: 48.5,-46.5 - parent: 1 - type: Transform -- uid: 21495 - type: CableApcExtension - components: - - pos: 48.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21496 - type: AirlockScienceGlassLocked - components: - - name: r&d - type: MetaData - - rot: 1.5707963267948966 rad - pos: 47.5,-37.5 - parent: 1 - type: Transform -- uid: 21497 - type: Firelock - components: - - pos: 43.5,-55.5 - parent: 1 - type: Transform -- uid: 21498 - type: CableApcExtension - components: - - pos: 48.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21499 - type: CableApcExtension - components: - - pos: 47.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21500 - type: CableApcExtension - components: - - pos: 46.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21501 - type: FirelockGlass - components: - - pos: 26.5,19.5 - parent: 1 - type: Transform -- uid: 21502 - type: FirelockGlass - components: - - pos: 25.5,19.5 - parent: 1 - type: Transform -- uid: 21503 - type: FirelockGlass - components: - - pos: 24.5,19.5 - parent: 1 - type: Transform -- uid: 21504 - type: AirlockArmoryGlassLocked - components: - - name: wardens office - type: MetaData - - rot: 1.5707963267948966 rad - pos: 22.5,19.5 - parent: 1 - type: Transform -- uid: 21505 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: 4.5,-15.5 - parent: 1 - type: Transform -- uid: 21506 - type: Firelock - components: - - rot: 3.141592653589793 rad - pos: -23.5,-45.5 - parent: 1 - type: Transform -- uid: 21507 - type: CableHV - components: - - pos: -54.5,-25.5 - parent: 1 - type: Transform -- uid: 21508 - type: CableHV - components: - - pos: -52.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21509 - type: Table - components: - - pos: -58.5,-27.5 - parent: 1 - type: Transform -- uid: 21510 - type: Table - components: - - pos: -57.5,-27.5 - parent: 1 - type: Transform -- uid: 21511 - type: Table - components: - - pos: -56.5,-27.5 - parent: 1 - type: Transform -- uid: 21512 - type: ClothingHandsGlovesColorOrange - components: - - pos: -57.515278,-30.528444 - parent: 1 - type: Transform -- uid: 21513 - type: ClothingBackpack - components: - - pos: -56.640278,-27.45032 - parent: 1 - type: Transform -- uid: 21514 - type: ClothingEyesGlasses - components: - - pos: -57.484028,-27.38782 - parent: 1 - type: Transform -- uid: 21515 - type: FoodPizzaMoldySlice - components: - - pos: -58.327778,-27.35657 - parent: 1 - type: Transform -- uid: 21516 - type: AirAlarm - components: - - pos: 11.5,-40.5 - parent: 1 - type: Transform - - devices: - - 21347 - - 846 - - 6424 - - invalid - - 21346 - - 1211 - - 2813 - - 6302 - - 2449 - - 6992 - - 21555 - - 2447 - - 6076 - - 6100 - - 5489 - - 11527 - - 11526 - - 11525 - - 6484 - - 10701 - - 5239 - - 6370 - - 1290 - - 3040 - - 8548 - - 7499 - - 28069 - type: DeviceList -- uid: 21517 - type: AirAlarm - components: - - pos: 3.5,4.5 - parent: 1 - type: Transform - - devices: - - 4381 - - 5912 - - 8760 - - 2097 - - 4529 - - 5963 - - 4387 - - 7186 - - 2118 - - invalid - - 7194 - - 5499 - - 7195 - - 5828 - - 3015 - - 706 - - 689 - - 2635 - - 2098 - - 1111 - - 707 - - 5178 - - 1095 - type: DeviceList -- uid: 21518 - type: FireAlarm - components: - - pos: 6.5,4.5 - parent: 1 - type: Transform - - devices: - - 7194 - - 5499 - - 7195 - - 5828 - - 2097 - - 4529 - - 5963 - - 4387 - - invalid - - 7186 - - 2118 - - 1095 - - 5178 - - 707 - - 706 - - 3015 - - 689 - - 2635 - - 2098 - - 1111 - - 8468 - - 8760 - type: DeviceList -- uid: 21519 - type: EmergencyLight - components: - - pos: -5.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21520 - type: EmergencyLight - components: - - pos: 8.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21521 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21522 - type: EmergencyLight - components: - - pos: 14.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21523 - type: FireAlarm - components: - - pos: -9.5,4.5 - parent: 1 - type: Transform - - devices: - - 21558 - - 21458 - - 21459 - - 21456 - - 21457 - - 8497 - - 3065 - - 5953 - - 3066 - - 4387 - - 5963 - - 4529 - - 2097 - - 1109 - - 4386 - - 2096 - - 8759 - type: DeviceList -- uid: 21524 - type: FireAlarm - components: - - pos: -15.5,-3.5 - parent: 1 - type: Transform - - devices: - - 21525 - - 21116 - - 21115 - - 21117 - - 12576 - - 12330 - - 6067 - - 21482 - - 21458 - - 21459 - - 21456 - - 21457 - - 6442 - type: DeviceList -- uid: 21525 - type: AirSensor - components: - - pos: -17.5,-4.5 - parent: 1 - type: Transform -- uid: 21526 - type: AirAlarm - components: - - pos: -20.5,-3.5 - parent: 1 - type: Transform - - devices: - - 14223 - - invalid - - 21525 - - 12113 - - 12115 - - 19080 - - 19081 - - 19082 - - 21458 - - 21459 - - 21456 - - 21457 - - 21117 - - 21115 - - 21116 - - 12576 - - 12330 - - 6067 - - 21482 - - 6442 - type: DeviceList -- uid: 21527 - type: EmergencyLight - components: - - pos: -20.5,-4.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21528 - type: EmergencyLight - components: - - pos: -16.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21529 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21530 - type: CableApcExtension - components: - - pos: 28.5,-5.5 - parent: 1 - type: Transform -- uid: 21531 - type: PosterLegitObey - components: - - pos: 31.5,-3.5 - parent: 1 - type: Transform -- uid: 21532 - type: AirAlarm - components: - - pos: 28.5,-3.5 - parent: 1 - type: Transform - - devices: - - 21533 - - 314 - - 316 - - 1094 - - 2934 - - 5037 - - 7040 - - 6018 - - 2107 - - 671 - - 6472 - - 1993 - type: DeviceList -- uid: 21533 - type: AirSensor - components: - - pos: 23.5,-5.5 - parent: 1 - type: Transform -- uid: 21534 - type: AirSensor - components: - - pos: 16.5,3.5 - parent: 1 - type: Transform -- uid: 21535 - type: AirSensor - components: - - pos: 24.5,6.5 - parent: 1 - type: Transform -- uid: 21536 - type: AirSensor - components: - - pos: 32.5,-0.5 - parent: 1 - type: Transform -- uid: 21537 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21538 - type: AirlockGlass - components: - - rot: 1.5707963267948966 rad - pos: 19.5,7.5 - parent: 1 - type: Transform -- uid: 21539 - type: EmergencyLight - components: - - pos: 30.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21540 - type: AirAlarm - components: - - pos: 21.5,19.5 - parent: 1 - type: Transform - - devices: - - 21541 - - 5936 - - 4833 - - 22554 - - 21503 - - 21502 - - 21501 - - 1088 - - 4376 - - 2172 - - 2617 - - 4260 - - 5546 - - 7198 - - 1087 - type: DeviceList -- uid: 21541 - type: AirSensor - components: - - pos: 25.5,17.5 - parent: 1 - type: Transform -- uid: 21542 - type: FireAlarm - components: - - pos: 22.5,24.5 - parent: 1 - type: Transform - - devices: - - 22554 - - 21503 - - 21502 - - 21501 - - 8554 - - invalid - - 8771 - type: DeviceList -- uid: 21543 - type: AirSensor - components: - - pos: 17.5,17.5 - parent: 1 - type: Transform -- uid: 21544 - type: EmergencyLight - components: - - pos: 23.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21545 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21546 - type: FireAlarm - components: - - pos: 6.5,11.5 - parent: 1 - type: Transform - - devices: - - 7187 - - 7188 - - 4384 - - 5561 - - 1108 - - invalid - - 7194 - - 5499 - - 7195 - - 8763 - - 5954 - - 5828 - type: DeviceList -- uid: 21547 - type: AtmosFixFreezerMarker - components: - - pos: -0.5,13.5 - parent: 1 - type: Transform -- uid: 21548 - type: APCHighCapacity - components: - - pos: -29.5,-8.5 - parent: 1 - type: Transform -- uid: 21549 - type: CableApcExtension - components: - - pos: -24.5,-13.5 - parent: 1 - type: Transform -- uid: 21550 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: -24.5,-11.5 - parent: 1 - type: Transform -- uid: 21551 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -26.5,-12.5 - parent: 1 - type: Transform -- uid: 21552 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: -19.5,-17.5 - parent: 1 - type: Transform -- uid: 21553 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-15.5 - parent: 1 - type: Transform - - devices: - - 21550 - - 21551 - - 3022 - - 3085 - - 16027 - - 16028 - - 21437 - type: DeviceList -- uid: 21554 - type: AirSensor - components: - - pos: -32.5,-14.5 - parent: 1 - type: Transform -- uid: 21555 - type: FirelockGlass - components: - - pos: 26.5,-44.5 - parent: 1 - type: Transform -- uid: 21556 - type: EmergencyLight - components: - - pos: 10.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21557 - type: EmergencyLight - components: - - pos: 38.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21558 - type: FirelockGlass - components: - - pos: -10.5,4.5 - parent: 1 - type: Transform -- uid: 21559 - type: AirSensor - components: - - pos: 18.5,-53.5 - parent: 1 - type: Transform -- uid: 21560 - type: FireAlarm - components: - - pos: -13.5,-40.5 - parent: 1 - type: Transform - - devices: - - 1776 - - 1775 - - 1774 - - 8122 - - 3241 - - 3242 - - 3243 - - 6767 - - 3245 - - 3246 - - 6100 - - 6076 - - 2447 - - 3908 - - 7189 - - 7190 - - 7191 - type: DeviceList -- uid: 21561 - type: EmergencyLight - components: - - pos: -14.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21562 - type: AirAlarm - components: - - pos: -3.5,-51.5 - parent: 1 - type: Transform - - devices: - - 6137 - - 3780 - - 3779 - - 6232 - - 6496 - - 7012 - - 6975 - - 22552 - - 3236 - - 3237 - - 6086 - - 13503 - - 13502 - - 13504 - - 6227 - - invalid - - 14358 - - 6502 - - 5812 - - 1143 - type: DeviceList -- uid: 21563 - type: FireAlarm - components: - - pos: 4.5,-51.5 - parent: 1 - type: Transform - - devices: - - 6137 - - 3236 - - 3237 - - 6086 - - 13503 - - 13502 - - 13504 - - invalid - - 5812 - - 1143 - - 6232 - - 6496 - - 6227 - - 14358 - - 6502 - - 22552 - - 6975 - - 7012 - type: DeviceList -- uid: 21564 - type: Firelock - components: - - pos: 8.5,-54.5 - parent: 1 - type: Transform -- uid: 21565 - type: AirlockMedicalGlassLocked - components: - - name: changing room - type: MetaData - - pos: -13.5,-51.5 - parent: 1 - type: Transform -- uid: 21566 - type: Firelock - components: - - pos: 36.5,-47.5 - parent: 1 - type: Transform -- uid: 21567 - type: Firelock - components: - - pos: 14.5,-46.5 - parent: 1 - type: Transform -- uid: 21568 - type: AirAlarm - components: - - pos: -33.5,-42.5 - parent: 1 - type: Transform - - devices: - - 21569 - - 21570 - - 21571 - - 14444 - - 14445 - type: DeviceList -- uid: 21569 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21570 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21571 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-42.5 - parent: 1 - type: Transform -- uid: 21572 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -34.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21573 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21574 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: -36.5,-35.5 - parent: 1 - type: Transform -- uid: 21575 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: -30.5,-35.5 - parent: 1 - type: Transform -- uid: 21576 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: -24.5,-32.5 - parent: 1 - type: Transform -- uid: 21577 - type: AirAlarm - components: - - pos: -30.5,-31.5 - parent: 1 - type: Transform - - devices: - - 21575 - - 15699 - - 15702 - - 13703 - - 13704 - - 12187 - - 12188 - - 14328 - - 14327 - - 14444 - - 14445 - type: DeviceList -- uid: 21578 - type: FireAlarm - components: - - pos: -16.5,-24.5 - parent: 1 - type: Transform - - devices: - - invalid - - 14402 - - 21579 - - 16007 - - 8495 - - 12614 - - 5455 - - 123 - - 7184 - - 16025 - - 12331 - - 16024 - - 21450 - - 21451 - - 21452 - type: DeviceList -- uid: 21579 - type: AirSensor - components: - - pos: -20.5,-28.5 - parent: 1 - type: Transform -- uid: 21580 - type: AirAlarm - components: - - pos: -17.5,-58.5 - parent: 1 - type: Transform - - devices: - - 3778 - - 228 - - 6142 - - 3300 - - 6124 - - 5470 - - 12836 - - 12837 - - 3436 - - 3316 - - 20048 - - 20860 - - 13514 - - 21593 - - 3318 - - 20045 - - 21594 - - 21591 - - invalid - - 22546 - type: DeviceList -- uid: 21581 - type: FireAlarm - components: - - pos: -16.5,-58.5 - parent: 1 - type: Transform - - devices: - - 3318 - - 20045 - - 20048 - - 3316 - - 3300 - - 5470 - - 12836 - - 12837 - - 13514 - - 20860 - - 21593 - - 21594 - - 21591 - - invalid - - 22546 - - 6142 - - 3436 - - 6124 - type: DeviceList -- uid: 21582 - type: GasPipeStraight - components: - - pos: -20.5,-59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21583 - type: AirSensor - components: - - pos: 21.5,-25.5 - parent: 1 - type: Transform -- uid: 21584 - type: AirAlarm - components: - - pos: 21.5,-20.5 - parent: 1 - type: Transform - - devices: - - 913 - - 1668 - - 1669 - - 1362 - - 6773 - - 6410 - - 6782 - - 6784 - - 21583 - type: DeviceList -- uid: 21585 - type: IntercomAll - components: - - pos: 20.5,-20.5 - parent: 1 - type: Transform -- uid: 21586 - type: DisposalTrunk - components: - - pos: 20.5,-23.5 - parent: 1 - type: Transform -- uid: 21587 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-61.5 - parent: 1 - type: Transform - - devices: - - invalid - - 13736 - - 12641 - - 12640 - - 12642 - - 12637 - - 789 - - 13496 - - 13497 - type: DeviceList -- uid: 21588 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 36.5,-55.5 - parent: 1 - type: Transform -- uid: 21589 - type: AirAlarm - components: - - pos: 41.5,-69.5 - parent: 1 - type: Transform - - devices: - - 13735 - - 13278 - - 13277 - - 30302 - - 30303 - - 30304 - - 30299 - - 30300 - - 30301 - type: DeviceList -- uid: 21590 - type: AirAlarm - components: - - pos: 58.5,-4.5 - parent: 1 - type: Transform - - devices: - - 12037 - - 9779 - - 9778 - - 9777 - - 10541 - - 10540 - - 10539 - type: DeviceList -- uid: 21591 - type: FirelockGlass - components: - - pos: 3.5,-58.5 - parent: 1 - type: Transform -- uid: 21592 - type: WallSolid - components: - - pos: 5.5,-55.5 - parent: 1 - type: Transform -- uid: 21593 - type: FirelockGlass - components: - - pos: -2.5,-58.5 - parent: 1 - type: Transform -- uid: 21594 - type: FirelockGlass - components: - - pos: 0.5,-58.5 - parent: 1 - type: Transform -- uid: 21595 - type: AirlockEngineeringGlassLocked - components: - - pos: -43.5,-6.5 - parent: 1 - type: Transform -- uid: 21596 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21597 - type: FireAlarm - components: - - pos: -7.5,-24.5 - parent: 1 - type: Transform - - devices: - - invalid - - 8757 - - 21450 - - 21451 - - 21452 - - 5380 - - 7185 - - 5560 - - 5381 - - 3131 - - 5382 - - 7183 - - 7189 - - 7190 - - 7191 - type: DeviceList -- uid: 21598 - type: AirAlarm - components: - - pos: -12.5,-24.5 - parent: 1 - type: Transform - - devices: - - 21329 - - 21330 - - 8757 - - 21450 - - 21451 - - 21452 - - 3131 - - 5382 - - 7183 - - 5381 - - 5560 - - 7185 - - 7189 - - 7190 - - 7191 - - 5380 - type: DeviceList -- uid: 21599 - type: EmergencyLight - components: - - pos: -12.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21600 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21601 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -45.5,-6.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21602 - type: AirlockMedicalLocked - components: - - name: changing room - type: MetaData - - pos: -10.5,-46.5 - parent: 1 - type: Transform -- uid: 21603 - type: Firelock - components: - - pos: -10.5,-46.5 - parent: 1 - type: Transform -- uid: 21604 - type: EmergencyLight - components: - - pos: -17.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21605 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21606 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 20.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21607 - type: AirAlarm - components: - - pos: 23.5,-15.5 - parent: 1 - type: Transform - - devices: - - 671 - - 6472 - - 1993 - - 6498 - - 4383 - - 3184 - - 5891 - - 4496 - - 2332 - - 2333 - - 3578 - - 21609 - - 6270 - type: DeviceList -- uid: 21608 - type: FireAlarm - components: - - pos: 27.5,-15.5 - parent: 1 - type: Transform - - devices: - - 4383 - - 3184 - - 5891 - - 6498 - - 671 - - 6472 - - 1993 - - 4496 - - 2332 - - 2333 - - 21609 - type: DeviceList -- uid: 21609 - type: AirSensor - components: - - pos: 32.5,-17.5 - parent: 1 - type: Transform -- uid: 21610 - type: AirSensor - components: - - pos: 21.5,-14.5 - parent: 1 - type: Transform -- uid: 21611 - type: Chair - components: - - pos: 23.5,6.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 21612 - type: FireAlarm - components: - - pos: 24.5,-3.5 - parent: 1 - type: Transform - - devices: - - invalid - - 21533 - - 7040 - - 6018 - - 2107 - - 1094 - - 2934 - - 5037 - - 671 - - 6472 - - 1993 - type: DeviceList -- uid: 21613 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 1 - type: Transform - - devices: - - 21534 - - 689 - - 2635 - - 2098 - - 1111 - - invalid - - 1071 - - 5077 - - 5109 - - 5918 - - 7040 - - 6018 - - 2107 - type: DeviceList -- uid: 21614 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 19.5,4.5 - parent: 1 - type: Transform - - devices: - - 21534 - - 2946 - - 4221 - - 689 - - 2635 - - 2098 - - 1111 - - 1071 - - 5077 - - 5109 - - 5918 - - 7040 - - 6018 - - 2107 - type: DeviceList -- uid: 21615 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,4.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21616 - type: AirAlarm - components: - - pos: 11.5,-24.5 - parent: 1 - type: Transform - - devices: - - 8755 - - 4917 - - 6133 - type: DeviceList -- uid: 21617 - type: AirAlarm - components: - - pos: 13.5,-36.5 - parent: 1 - type: Transform - - devices: - - 8755 - - 4917 - - 6133 - type: DeviceList -- uid: 21618 - type: FireAlarm - components: - - pos: 12.5,-24.5 - parent: 1 - type: Transform - - devices: - - 8755 - - invalid - - 1668 - - 5639 - - 222 - - 5456 - - 4383 - - 3184 - - 5891 - - 5239 - - 10701 - - 6484 - - 913 - type: DeviceList -- uid: 21619 - type: FireAlarm - components: - - pos: 37.5,-24.5 - parent: 1 - type: Transform - - devices: - - 1362 - - invalid - - 387 - - 386 - - 8702 - - 1669 - - 4496 - - 2332 - - 2333 - - 6370 - - 1290 - - 3040 - type: DeviceList -- uid: 21620 - type: AirAlarm - components: - - pos: 40.5,-24.5 - parent: 1 - type: Transform - - devices: - - 7427 - - 7428 - - 21623 - - 5555 - - 5840 - - 1809 - - 5363 - type: DeviceList -- uid: 21621 - type: AirAlarm - components: - - pos: 33.5,-21.5 - parent: 1 - type: Transform - - devices: - - 7635 - - 8702 - - 7636 - - 1669 - - 1362 - - 4496 - - 2332 - - 2333 - - 387 - - 386 - - invalid - - 6370 - - 1290 - - 3040 - type: DeviceList -- uid: 21622 - type: AirAlarm - components: - - pos: 33.5,-37.5 - parent: 1 - type: Transform - - devices: - - 7635 - - 8702 - - 7636 - type: DeviceList -- uid: 21623 - type: AirSensor - components: - - pos: 41.5,-24.5 - parent: 1 - type: Transform -- uid: 21624 - type: AirAlarm - components: - - pos: -5.5,9.5 - parent: 1 - type: Transform - - devices: - - 1713 - - 8766 - - 5982 - - 5954 - - 12333 - - 21558 - - 2096 - - 4386 - - 1109 - type: DeviceList -- uid: 21625 - type: Firelock - components: - - pos: 0.5,10.5 - parent: 1 - type: Transform -- uid: 21626 - type: ComputerTelevision - components: - - pos: 15.5,9.5 - parent: 1 - type: Transform -- uid: 21627 - type: EmergencyLight - components: - - pos: 37.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21628 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21629 - type: FirelockGlass - components: - - pos: 31.5,-57.5 - parent: 1 - type: Transform -- uid: 21630 - type: FireAlarm - components: - - pos: 33.5,9.5 - parent: 1 - type: Transform - - devices: - - invalid - - 21536 - - 6615 - - 1094 - - 2934 - - 5037 - - 3412 - - 2649 - - 5066 - - 4256 - - 5609 - - 21118 - - 3418 - type: DeviceList -- uid: 21631 - type: FireAlarm - components: - - pos: 56.5,-4.5 - parent: 1 - type: Transform - - devices: - - invalid - - 12036 - - 10541 - - 12037 - - 9779 - - 9778 - - 9777 - - 22315 - - 12035 - type: DeviceList -- uid: 21632 - type: FireAlarm - components: - - pos: 40.5,3.5 - parent: 1 - type: Transform - - devices: - - invalid - - 10009 - - 20040 - - 20039 - - 6227 - - 8751 - - 4256 - - 5609 - - 21118 - - 6372 - - 9777 - - 9778 - - 9779 - - 26147 - - 26144 - type: DeviceList -- uid: 21633 - type: AirAlarm - components: - - pos: 50.5,3.5 - parent: 1 - type: Transform - - devices: - - 10009 - - 9774 - - 10007 - - 5609 - - 4256 - - 21118 - - 6372 - - 9777 - - 9778 - - 9779 - - 26144 - - 26147 - type: DeviceList -- uid: 21634 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 40.5,0.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21635 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 54.5,1.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21636 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 1 - type: Transform - - devices: - - 8758 - - invalid - - 7185 - - 5560 - - 5381 - - 3066 - - 5953 - - 3065 - type: DeviceList -- uid: 21637 - type: FireAlarm - components: - - pos: -31.5,2.5 - parent: 1 - type: Transform - - devices: - - invalid - - 21639 - - 6067 - - 12330 - - 12576 - - 6407 - - 19256 - - 19255 - - 19985 - - 19986 - - 20233 - type: DeviceList -- uid: 21638 - type: AirAlarm - components: - - pos: -33.5,2.5 - parent: 1 - type: Transform - - devices: - - 19256 - - 19255 - - 19985 - - 19986 - - 20233 - - 6067 - - 12330 - - 12576 - - 21639 - - 20091 - - 20082 - type: DeviceList -- uid: 21639 - type: AirSensor - components: - - pos: -36.5,0.5 - parent: 1 - type: Transform -- uid: 21640 - type: AirSensor - components: - - pos: -45.5,7.5 - parent: 1 - type: Transform -- uid: 21641 - type: AirAlarm - components: - - pos: -44.5,9.5 - parent: 1 - type: Transform - - devices: - - 21640 - - 20500 - - 20512 - - 20883 - - 20231 - - 19985 - - 19986 - - 20233 - type: DeviceList -- uid: 21642 - type: AirAlarm - components: - - pos: -50.5,12.5 - parent: 1 - type: Transform - - devices: - - 20508 - - 20506 - - 21644 - type: DeviceList -- uid: 21643 - type: FireAlarm - components: - - pos: -48.5,9.5 - parent: 1 - type: Transform - - devices: - - invalid - - 20883 - - 20231 - - 21640 - - 19985 - - 19986 - - 20233 - type: DeviceList -- uid: 21644 - type: AirSensor - components: - - pos: -48.5,11.5 - parent: 1 - type: Transform -- uid: 21645 - type: AirAlarm - components: - - pos: -39.5,26.5 - parent: 1 - type: Transform - - devices: - - 18726 - - 18722 - - 21646 - - 28112 - - 28516 - - 4035 - type: DeviceList -- uid: 21646 - type: AirSensor - components: - - pos: -43.5,24.5 - parent: 1 - type: Transform -- uid: 21647 - type: AirSensor - components: - - pos: -43.5,30.5 - parent: 1 - type: Transform -- uid: 21648 - type: AirAlarm - components: - - pos: -39.5,30.5 - parent: 1 - type: Transform - - devices: - - 18923 - - 21647 - - 18925 - - 28112 - - 28516 - - 4035 - type: DeviceList -- uid: 21649 - type: AirAlarm - components: - - pos: -29.5,20.5 - parent: 1 - type: Transform - - devices: - - 18724 - - 21650 - - 18721 - type: DeviceList -- uid: 21650 - type: AirSensor - components: - - pos: -31.5,23.5 - parent: 1 - type: Transform -- uid: 21651 - type: AirSensor - components: - - pos: -24.5,20.5 - parent: 1 - type: Transform -- uid: 21652 - type: AirSensor - components: - - pos: -19.5,21.5 - parent: 1 - type: Transform -- uid: 21653 - type: AirAlarm - components: - - pos: -17.5,18.5 - parent: 1 - type: Transform - - devices: - - 18172 - - 18174 - - 21652 - - 18728 - - 18020 - - 10346 - - 23650 - - 23651 - - 19080 - - 19081 - - 19082 - - 19119 - type: DeviceList -- uid: 21654 - type: AirAlarm - components: - - pos: -30.5,-15.5 - parent: 1 - type: Transform - - devices: - - 21554 - - invalid - - 13607 - - 16027 - - 16028 - - 13593 - - 13592 - - 16036 - - 16035 - - 21438 - - 12335 - type: DeviceList -- uid: 21655 - type: AirAlarm - components: - - pos: -39.5,-4.5 - parent: 1 - type: Transform - - devices: - - invalid - - 21674 - - 13856 - - 13854 - - 13833 - - 21448 - - 13832 - - 16047 - - 22548 - type: DeviceList -- uid: 21656 - type: AirAlarm - components: - - pos: -53.5,-4.5 - parent: 1 - type: Transform - - devices: - - 21673 - - 14777 - - 14772 - - 16041 - - 16042 - - 22547 - - 14940 - - 14506 - type: DeviceList -- uid: 21657 - type: AirAlarm - components: - - pos: -55.5,-22.5 - parent: 1 - type: Transform - - devices: - - 15282 - - 21672 - - 15285 - - 14506 - - 14940 - - 16049 - - 21453 - - 14941 - type: DeviceList -- uid: 21658 - type: AirAlarm - components: - - pos: -71.5,-22.5 - parent: 1 - type: Transform - - devices: - - 21671 - - 21670 - - 21663 - - 27255 - - 14983 - - 121 - type: DeviceList -- uid: 21659 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21660 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21661 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -71.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21662 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -72.5,-23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21663 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -72.5,-24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21664 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -65.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21665 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -66.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21666 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21667 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -68.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21668 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 21669 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21670 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21671 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: -73.5,-25.5 - parent: 1 - type: Transform -- uid: 21672 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-24.5 - parent: 1 - type: Transform -- uid: 21673 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-10.5 - parent: 1 - type: Transform -- uid: 21674 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-6.5 - parent: 1 - type: Transform -- uid: 21675 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-10.5 - parent: 1 - type: Transform - - devices: - - 21673 - - invalid - - 14940 - - 14506 - - 22547 - - 16041 - - 16042 - type: DeviceList -- uid: 21676 - type: FireAlarm - components: - - pos: -58.5,-22.5 - parent: 1 - type: Transform - - devices: - - 21672 - - invalid - - 16049 - - 21453 - - 14941 - - 14506 - - 14940 - type: DeviceList -- uid: 21677 - type: AirAlarm - components: - - pos: 7.5,-50.5 - parent: 1 - type: Transform - - devices: - - 8751 - - 3782 - - 3781 - type: DeviceList -- uid: 21678 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-48.5 - parent: 1 - type: Transform - - devices: - - 20040 - - 20039 - - 14149 - - 21564 - - invalid - - 8751 - - 6227 - type: DeviceList -- uid: 21679 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -29.5,-35.5 - parent: 1 - type: Transform - - devices: - - invalid - - 21575 - - 14444 - - 14445 - - 12187 - - 12188 - - 13704 - - 13703 - - 14328 - - 14327 - type: DeviceList -- uid: 21680 - type: AirAlarm - components: - - pos: -30.5,-24.5 - parent: 1 - type: Transform - - devices: - - 21681 - - 13732 - - 13733 - type: DeviceList -- uid: 21681 - type: AirSensor - components: - - pos: -32.5,-23.5 - parent: 1 - type: Transform -- uid: 21682 - type: AirSensor - components: - - pos: 44.5,-37.5 - parent: 1 - type: Transform -- uid: 21683 - type: AirSensor - components: - - pos: 42.5,-43.5 - parent: 1 - type: Transform -- uid: 21684 - type: AirSensor - components: - - pos: 59.5,-47.5 - parent: 1 - type: Transform -- uid: 21685 - type: AirSensor - components: - - pos: 63.5,-51.5 - parent: 1 - type: Transform -- uid: 21686 - type: Grille - components: - - pos: 41.5,-31.5 - parent: 1 - type: Transform -- uid: 21687 - type: AirAlarm - components: - - pos: 48.5,-36.5 - parent: 1 - type: Transform - - devices: - - 13738 - - 10790 - - 10787 - - 10857 - - 10956 - - 11613 - - 10858 - - 10874 - - 11515 - - 11529 - - 11530 - - 22569 - - 22570 - type: DeviceList -- uid: 21688 - type: CableApcExtension - components: - - pos: 65.5,-43.5 - parent: 1 - type: Transform -- uid: 21689 - type: AirSensor - components: - - pos: 59.5,-35.5 - parent: 1 - type: Transform -- uid: 21690 - type: AirAlarm - components: - - pos: 52.5,-49.5 - parent: 1 - type: Transform - - devices: - - 11484 - - 11482 - - 11485 - - 13737 - - 11529 - - 11530 - type: DeviceList -- uid: 21691 - type: AirAlarm - components: - - pos: 60.5,0.5 - parent: 1 - type: Transform - - devices: - - 12037 - - 11163 - - 11164 - - 25651 - type: DeviceList -- uid: 21692 - type: FireAlarm - components: - - pos: 52.5,-38.5 - parent: 1 - type: Transform - - devices: - - invalid - - 13738 - - 10857 - - 10956 - - 11613 - - 10858 - - 10874 - - 11515 - - 11529 - - 11530 - - 22569 - - 22570 - type: DeviceList -- uid: 21693 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-25.5 - parent: 1 - type: Transform -- uid: 21694 - type: Table - components: - - pos: 70.5,-43.5 - parent: 1 - type: Transform -- uid: 21695 - type: AirAlarm - components: - - pos: 65.5,-53.5 - parent: 1 - type: Transform - - devices: - - 21685 - - 11177 - - 11178 - - 11514 - type: DeviceList -- uid: 21696 - type: AirSensor - components: - - pos: 70.5,-47.5 - parent: 1 - type: Transform -- uid: 21697 - type: Poweredlight - components: - - pos: 64.5,-43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21698 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21699 - type: EmergencyLight - components: - - pos: 60.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21700 - type: EmergencyLight - components: - - pos: 53.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21701 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21702 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21703 - type: Lighter - components: - - pos: 13.70992,-34.538578 - parent: 1 - type: Transform -- uid: 21704 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21705 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 16.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21706 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21707 - type: EmergencyLight - components: - - pos: 4.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21708 - type: EmergencyLight - components: - - pos: -2.5,-25.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21709 - type: EmergencyLight - components: - - pos: 5.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21710 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21711 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -30.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21712 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -55.5,-10.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21713 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -64.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21714 - type: EmergencyLight - components: - - pos: -71.5,-23.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21715 - type: AirlockEngineeringLocked - components: - - name: substation - type: MetaData - - rot: 3.141592653589793 rad - pos: -35.5,-2.5 - parent: 1 - type: Transform -- uid: 21716 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -35.5,-0.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21717 - type: AirAlarm - components: - - pos: -39.5,-73.5 - parent: 1 - type: Transform - - devices: - - 21720 - - 17066 - - 17065 - - 17002 - - 17003 - - invalid - - 26936 - - 26937 - type: DeviceList -- uid: 21718 - type: AirAlarm - components: - - pos: -51.5,-72.5 - parent: 1 - type: Transform - - devices: - - 21102 - - 21103 - - 21719 - - invalid - type: DeviceList -- uid: 21719 - type: AirSensor - components: - - pos: -55.5,-75.5 - parent: 1 - type: Transform -- uid: 21720 - type: AirSensor - components: - - pos: -38.5,-80.5 - parent: 1 - type: Transform -- uid: 21721 - type: AirAlarm - components: - - pos: 31.5,20.5 - parent: 1 - type: Transform - - devices: - - 9846 - - 9849 - - 1592 - - 9847 - - 9848 - - 10373 - - 7201 - - 6102 - - 2767 - - 8554 - - 1088 - - 4376 - - 9550 - - 2733 - - invalid - - 26147 - - 26144 - type: DeviceList -- uid: 21722 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21723 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 30.5,14.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21724 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 40.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21725 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 20.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21726 - type: AirAlarm - components: - - pos: 23.5,24.5 - parent: 1 - type: Transform - - devices: - - 4778 - - 8771 - - 3006 - - 22554 - - 21503 - - 21502 - - 21501 - - 8554 - - invalid - type: DeviceList -- uid: 21727 - type: AirAlarm - components: - - pos: 39.5,9.5 - parent: 1 - type: Transform - - devices: - - 9848 - - 9847 - - 10373 - - 1592 - - 9849 - - 9846 - type: DeviceList -- uid: 21728 - type: CableApcExtension - components: - - pos: -52.5,-73.5 - parent: 1 - type: Transform -- uid: 21729 - type: CableApcExtension - components: - - pos: -51.5,-73.5 - parent: 1 - type: Transform -- uid: 21730 - type: CableApcExtension - components: - - pos: -51.5,-74.5 - parent: 1 - type: Transform -- uid: 21731 - type: CableApcExtension - components: - - pos: -46.5,-75.5 - parent: 1 - type: Transform -- uid: 21732 - type: APCBasic - components: - - pos: -39.5,-69.5 - parent: 1 - type: Transform -- uid: 21733 - type: CableMV - components: - - pos: -31.5,-63.5 - parent: 1 - type: Transform -- uid: 21734 - type: CableMV - components: - - pos: -32.5,-63.5 - parent: 1 - type: Transform -- uid: 21735 - type: CableMV - components: - - pos: -33.5,-63.5 - parent: 1 - type: Transform -- uid: 21736 - type: CableMV - components: - - pos: -34.5,-63.5 - parent: 1 - type: Transform -- uid: 21737 - type: CableMV - components: - - pos: -34.5,-64.5 - parent: 1 - type: Transform -- uid: 21738 - type: CableMV - components: - - pos: -34.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21739 - type: CableMV - components: - - pos: -35.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21740 - type: CableMV - components: - - pos: -36.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21741 - type: CableMV - components: - - pos: -37.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21742 - type: CableMV - components: - - pos: -37.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21743 - type: CableMV - components: - - pos: -37.5,-67.5 - parent: 1 - type: Transform -- uid: 21744 - type: CableMV - components: - - pos: -37.5,-68.5 - parent: 1 - type: Transform -- uid: 21745 - type: CableMV - components: - - pos: -38.5,-68.5 - parent: 1 - type: Transform -- uid: 21746 - type: CableMV - components: - - pos: -39.5,-68.5 - parent: 1 - type: Transform -- uid: 21747 - type: CableMV - components: - - pos: -39.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21748 - type: ReinforcedWindow - components: - - pos: 64.5,-28.5 - parent: 1 - type: Transform -- uid: 21749 - type: WallSolid - components: - - pos: 59.5,-31.5 - parent: 1 - type: Transform -- uid: 21750 - type: MachineAPE - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-35.5 - parent: 1 - type: Transform -- uid: 21751 - type: CableApcExtension - components: - - pos: 59.5,-32.5 - parent: 1 - type: Transform -- uid: 21752 - type: CableApcExtension - components: - - pos: 52.5,-13.5 - parent: 1 - type: Transform -- uid: 21753 - type: CableApcExtension - components: - - pos: 52.5,-14.5 - parent: 1 - type: Transform -- uid: 21754 - type: CableApcExtension - components: - - pos: 52.5,-15.5 - parent: 1 - type: Transform -- uid: 21755 - type: CableApcExtension - components: - - pos: 65.5,-11.5 - parent: 1 - type: Transform -- uid: 21756 - type: CableApcExtension - components: - - pos: 65.5,-13.5 - parent: 1 - type: Transform -- uid: 21757 - type: CableApcExtension - components: - - pos: 65.5,-5.5 - parent: 1 - type: Transform -- uid: 21758 - type: CableApcExtension - components: - - pos: 65.5,-3.5 - parent: 1 - type: Transform -- uid: 21759 - type: AirAlarm - components: - - pos: 27.5,9.5 - parent: 1 - type: Transform - - devices: - - 21535 - - 2857 - - 1006 - - 4260 - - 2617 - - 2172 - - 3412 - - 2649 - - 5066 - - invalid - - 5109 - - 5918 - - 21119 - type: DeviceList -- uid: 21760 - type: FireAlarm - components: - - pos: 22.5,9.5 - parent: 1 - type: Transform - - devices: - - invalid - - 21535 - - 4260 - - 2617 - - 2172 - - 21119 - - 5109 - - 5918 - - 3412 - - 2649 - - 5066 - type: DeviceList -- uid: 21761 - type: CableHV - components: - - pos: -0.5,-79.5 - parent: 1 - type: Transform -- uid: 21762 - type: TableWood - components: - - pos: -17.5,42.5 - parent: 1 - type: Transform -- uid: 21763 - type: CableHV - components: - - pos: -14.5,38.5 - parent: 1 - type: Transform -- uid: 21764 - type: CableHV - components: - - pos: -14.5,43.5 - parent: 1 - type: Transform -- uid: 21765 - type: CableHV - components: - - pos: -14.5,41.5 - parent: 1 - type: Transform -- uid: 21766 - type: RandomSpawner - components: - - pos: 48.5,33.5 - parent: 1 - type: Transform -- uid: 21767 - type: CableHV - components: - - pos: -17.5,29.5 - parent: 1 - type: Transform -- uid: 21768 - type: CableHV - components: - - pos: -14.5,37.5 - parent: 1 - type: Transform -- uid: 21769 - type: CableHV - components: - - pos: -15.5,29.5 - parent: 1 - type: Transform -- uid: 21770 - type: TableWood - components: - - pos: -14.5,47.5 - parent: 1 - type: Transform -- uid: 21771 - type: TableWood - components: - - pos: -16.5,42.5 - parent: 1 - type: Transform -- uid: 21772 - type: TableWood - components: - - pos: -16.5,41.5 - parent: 1 - type: Transform -- uid: 21773 - type: CableHV - components: - - pos: -0.5,-78.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21774 - type: CableHV - components: - - pos: -0.5,-77.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21775 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-76.5 - parent: 1 - type: Transform -- uid: 21776 - type: CableApcExtension - components: - - pos: 11.5,-5.5 - parent: 1 - type: Transform -- uid: 21777 - type: CableApcExtension - components: - - pos: 10.5,-0.5 - parent: 1 - type: Transform -- uid: 21778 - type: CableApcExtension - components: - - pos: 9.5,-0.5 - parent: 1 - type: Transform -- uid: 21779 - type: CableApcExtension - components: - - pos: 9.5,-1.5 - parent: 1 - type: Transform -- uid: 21780 - type: CableApcExtension - components: - - pos: 10.5,-5.5 - parent: 1 - type: Transform -- uid: 21781 - type: CableApcExtension - components: - - pos: 9.5,-5.5 - parent: 1 - type: Transform -- uid: 21782 - type: WallSolid - components: - - pos: 19.5,-51.5 - parent: 1 - type: Transform -- uid: 21783 - type: CableApcExtension - components: - - pos: 17.5,-43.5 - parent: 1 - type: Transform -- uid: 21784 - type: CableApcExtension - components: - - pos: 18.5,-43.5 - parent: 1 - type: Transform -- uid: 21785 - type: CableApcExtension - components: - - pos: 16.5,-43.5 - parent: 1 - type: Transform -- uid: 21786 - type: CableApcExtension - components: - - pos: 11.5,-41.5 - parent: 1 - type: Transform -- uid: 21787 - type: RubberStampDenied - components: - - pos: 25.421656,-37.713814 - parent: 1 - type: Transform -- uid: 21788 - type: CableApcExtension - components: - - pos: 33.5,-42.5 - parent: 1 - type: Transform -- uid: 21789 - type: AirSensor - components: - - pos: 25.5,-36.5 - parent: 1 - type: Transform -- uid: 21790 - type: PaperBin5 - components: - - pos: 27.161951,-37.425274 - parent: 1 - type: Transform -- uid: 21791 - type: CableApcExtension - components: - - pos: 34.5,-21.5 - parent: 1 - type: Transform -- uid: 21792 - type: CableApcExtension - components: - - pos: 32.5,-42.5 - parent: 1 - type: Transform -- uid: 21793 - type: CableApcExtension - components: - - pos: 34.5,-24.5 - parent: 1 - type: Transform -- uid: 21794 - type: CableApcExtension - components: - - pos: 34.5,-23.5 - parent: 1 - type: Transform -- uid: 21795 - type: CableApcExtension - components: - - pos: 34.5,-22.5 - parent: 1 - type: Transform -- uid: 21796 - type: CableApcExtension - components: - - pos: -7.5,5.5 - parent: 1 - type: Transform -- uid: 21797 - type: CableApcExtension - components: - - pos: 1.5,5.5 - parent: 1 - type: Transform -- uid: 21798 - type: CableApcExtension - components: - - pos: 11.5,-25.5 - parent: 1 - type: Transform -- uid: 21799 - type: CableApcExtension - components: - - pos: 2.5,5.5 - parent: 1 - type: Transform -- uid: 21800 - type: CableApcExtension - components: - - pos: -6.5,5.5 - parent: 1 - type: Transform -- uid: 21801 - type: CableApcExtension - components: - - pos: 3.5,5.5 - parent: 1 - type: Transform -- uid: 21802 - type: CableApcExtension - components: - - pos: -4.5,5.5 - parent: 1 - type: Transform -- uid: 21803 - type: CableApcExtension - components: - - pos: -3.5,3.5 - parent: 1 - type: Transform -- uid: 21804 - type: CableApcExtension - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform -- uid: 21805 - type: CableApcExtension - components: - - pos: -4.5,3.5 - parent: 1 - type: Transform -- uid: 21806 - type: CableApcExtension - components: - - pos: -18.5,4.5 - parent: 1 - type: Transform -- uid: 21807 - type: CableApcExtension - components: - - pos: -5.5,3.5 - parent: 1 - type: Transform -- uid: 21808 - type: CableApcExtension - components: - - pos: -20.5,4.5 - parent: 1 - type: Transform -- uid: 21809 - type: CableApcExtension - components: - - pos: -17.5,4.5 - parent: 1 - type: Transform -- uid: 21810 - type: CableApcExtension - components: - - pos: -19.5,4.5 - parent: 1 - type: Transform -- uid: 21811 - type: CableApcExtension - components: - - pos: -21.5,4.5 - parent: 1 - type: Transform -- uid: 21812 - type: CableApcExtension - components: - - pos: -44.5,8.5 - parent: 1 - type: Transform -- uid: 21813 - type: CableApcExtension - components: - - pos: -44.5,4.5 - parent: 1 - type: Transform -- uid: 21814 - type: CableApcExtension - components: - - pos: -45.5,8.5 - parent: 1 - type: Transform -- uid: 21815 - type: CableApcExtension - components: - - pos: -44.5,6.5 - parent: 1 - type: Transform -- uid: 21816 - type: CableApcExtension - components: - - pos: -44.5,7.5 - parent: 1 - type: Transform -- uid: 21817 - type: CableApcExtension - components: - - pos: -22.5,-9.5 - parent: 1 - type: Transform -- uid: 21818 - type: CableApcExtension - components: - - pos: -48.5,10.5 - parent: 1 - type: Transform -- uid: 21819 - type: CableApcExtension - components: - - pos: -22.5,-10.5 - parent: 1 - type: Transform -- uid: 21820 - type: CableApcExtension - components: - - pos: -50.5,10.5 - parent: 1 - type: Transform -- uid: 21821 - type: CableApcExtension - components: - - pos: -49.5,10.5 - parent: 1 - type: Transform -- uid: 21822 - type: CableApcExtension - components: - - pos: -22.5,-11.5 - parent: 1 - type: Transform -- uid: 21823 - type: CableApcExtension - components: - - pos: -2.5,-47.5 - parent: 1 - type: Transform -- uid: 21824 - type: CableApcExtension - components: - - pos: -37.5,-41.5 - parent: 1 - type: Transform -- uid: 21825 - type: CableApcExtension - components: - - pos: -3.5,-47.5 - parent: 1 - type: Transform -- uid: 21826 - type: CableApcExtension - components: - - pos: -37.5,-42.5 - parent: 1 - type: Transform -- uid: 21827 - type: Catwalk - components: - - pos: 11.5,-97.5 - parent: 1 - type: Transform -- uid: 21828 - type: CableApcExtension - components: - - pos: -38.5,-41.5 - parent: 1 - type: Transform -- uid: 21829 - type: CableApcExtension - components: - - pos: -39.5,-41.5 - parent: 1 - type: Transform -- uid: 21830 - type: PoweredSmallLight - components: - - pos: -51.5,-73.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21831 - type: CableHV - components: - - pos: 12.5,-104.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21832 - type: Catwalk - components: - - pos: 11.5,-93.5 - parent: 1 - type: Transform -- uid: 21833 - type: Catwalk - components: - - pos: 11.5,-94.5 - parent: 1 - type: Transform -- uid: 21834 - type: Catwalk - components: - - pos: 11.5,-95.5 - parent: 1 - type: Transform -- uid: 21835 - type: Catwalk - components: - - pos: 11.5,-98.5 - parent: 1 - type: Transform -- uid: 21836 - type: Catwalk - components: - - pos: 11.5,-96.5 - parent: 1 - type: Transform -- uid: 21837 - type: CableHV - components: - - pos: 10.5,-104.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21838 - type: SolarPanel - components: - - pos: 10.5,-104.5 - parent: 1 - type: Transform -- uid: 21839 - type: Catwalk - components: - - pos: 11.5,-104.5 - parent: 1 - type: Transform -- uid: 21840 - type: Catwalk - components: - - pos: 11.5,-103.5 - parent: 1 - type: Transform -- uid: 21841 - type: Catwalk - components: - - pos: 11.5,-102.5 - parent: 1 - type: Transform -- uid: 21842 - type: Catwalk - components: - - pos: 11.5,-101.5 - parent: 1 - type: Transform -- uid: 21843 - type: CableApcExtension - components: - - pos: 52.5,-40.5 - parent: 1 - type: Transform -- uid: 21844 - type: CableApcExtension - components: - - pos: 63.5,-48.5 - parent: 1 - type: Transform -- uid: 21845 - type: CableApcExtension - components: - - pos: 52.5,-39.5 - parent: 1 - type: Transform -- uid: 21846 - type: CableApcExtension - components: - - pos: 51.5,-39.5 - parent: 1 - type: Transform -- uid: 21847 - type: APCHighCapacity - components: - - pos: 71.5,-42.5 - parent: 1 - type: Transform -- uid: 21848 - type: CableApcExtension - components: - - pos: 68.5,-48.5 - parent: 1 - type: Transform -- uid: 21849 - type: CableApcExtension - components: - - pos: 66.5,-48.5 - parent: 1 - type: Transform -- uid: 21850 - type: CableApcExtension - components: - - pos: 52.5,-41.5 - parent: 1 - type: Transform -- uid: 21851 - type: CableApcExtension - components: - - pos: 65.5,-48.5 - parent: 1 - type: Transform -- uid: 21852 - type: CableApcExtension - components: - - pos: 64.5,-48.5 - parent: 1 - type: Transform -- uid: 21853 - type: CableApcExtension - components: - - pos: -14.5,-73.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21854 - type: CableApcExtension - components: - - pos: -14.5,-71.5 - parent: 1 - type: Transform -- uid: 21855 - type: CableApcExtension - components: - - pos: -15.5,-73.5 - parent: 1 - type: Transform -- uid: 21856 - type: PoweredSmallLight - components: - - pos: -8.5,-71.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 21857 - type: CableApcExtension - components: - - pos: -15.5,-72.5 - parent: 1 - type: Transform -- uid: 21858 - type: CableApcExtension - components: - - pos: -37.5,22.5 - parent: 1 - type: Transform -- uid: 21859 - type: CableApcExtension - components: - - pos: -15.5,-71.5 - parent: 1 - type: Transform -- uid: 21860 - type: CableApcExtension - components: - - pos: -11.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21861 - type: CableApcExtension - components: - - pos: -12.5,-71.5 - parent: 1 - type: Transform -- uid: 21862 - type: CableApcExtension - components: - - pos: -13.5,-71.5 - parent: 1 - type: Transform -- uid: 21863 - type: CableApcExtension - components: - - pos: -45.5,33.5 - parent: 1 - type: Transform -- uid: 21864 - type: CableApcExtension - components: - - pos: -44.5,28.5 - parent: 1 - type: Transform -- uid: 21865 - type: CableApcExtension - components: - - pos: -10.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21866 - type: CableApcExtension - components: - - pos: -45.5,28.5 - parent: 1 - type: Transform -- uid: 21867 - type: CableApcExtension - components: - - pos: -43.5,28.5 - parent: 1 - type: Transform -- uid: 21868 - type: CableApcExtension - components: - - pos: -41.5,31.5 - parent: 1 - type: Transform -- uid: 21869 - type: CableApcExtension - components: - - pos: -42.5,33.5 - parent: 1 - type: Transform -- uid: 21870 - type: CableApcExtension - components: - - pos: -41.5,32.5 - parent: 1 - type: Transform -- uid: 21871 - type: CableApcExtension - components: - - pos: -41.5,33.5 - parent: 1 - type: Transform -- uid: 21872 - type: CableApcExtension - components: - - pos: -20.5,18.5 - parent: 1 - type: Transform -- uid: 21873 - type: CableApcExtension - components: - - pos: -20.5,20.5 - parent: 1 - type: Transform -- uid: 21874 - type: CableApcExtension - components: - - pos: -20.5,16.5 - parent: 1 - type: Transform -- uid: 21875 - type: CableApcExtension - components: - - pos: -20.5,19.5 - parent: 1 - type: Transform -- uid: 21876 - type: CableApcExtension - components: - - pos: -20.5,17.5 - parent: 1 - type: Transform -- uid: 21877 - type: CableApcExtension - components: - - pos: -19.5,16.5 - parent: 1 - type: Transform -- uid: 21878 - type: AirlockEngineeringGlassLocked - components: - - pos: -64.5,-29.5 - parent: 1 - type: Transform -- uid: 21879 - type: WallSolid - components: - - pos: 22.5,-48.5 - parent: 1 - type: Transform -- uid: 21880 - type: AirlockEngineeringGlassLocked - components: - - pos: -68.5,-29.5 - parent: 1 - type: Transform -- uid: 21881 - type: CableApcExtension - components: - - pos: 53.5,-6.5 - parent: 1 - type: Transform -- uid: 21882 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 21883 - type: FireAlarm - components: - - pos: -26.5,-76.5 - parent: 1 - type: Transform - - devices: - - invalid - - 8744 - - 22531 - - 6665 - - 4285 - type: DeviceList -- uid: 21884 - type: AirAlarm - components: - - pos: -21.5,-83.5 - parent: 1 - type: Transform - - devices: - - 8746 - - 4149 - - 712 - - 4285 - - 6665 - - 22565 - type: DeviceList -- uid: 21885 - type: AirAlarm - components: - - pos: -27.5,-76.5 - parent: 1 - type: Transform - - devices: - - 4194 - - 4785 - - 8744 - - 22531 - - 6665 - - 4285 - type: DeviceList -- uid: 21886 - type: CableApcExtension - components: - - pos: 52.5,-6.5 - parent: 1 - type: Transform -- uid: 21887 - type: CableApcExtension - components: - - pos: 51.5,-6.5 - parent: 1 - type: Transform -- uid: 21888 - type: AirAlarm - components: - - pos: 37.5,-63.5 - parent: 1 - type: Transform - - devices: - - 13736 - - 12937 - - 12936 - type: DeviceList -- uid: 21889 - type: CableApcExtension - components: - - pos: 51.5,-7.5 - parent: 1 - type: Transform -- uid: 21890 - type: ClothingMaskGas - components: - - pos: 32.445633,27.516567 - parent: 1 - type: Transform -- uid: 21891 - type: ClothingMaskGas - components: - - pos: 32.558216,29.474682 - parent: 1 - type: Transform -- uid: 21892 - type: ClothingMaskGas - components: - - pos: 26.389654,29.532312 - parent: 1 - type: Transform -- uid: 21893 - type: ClothingMaskGas - components: - - pos: 26.443174,27.48838 - parent: 1 - type: Transform -- uid: 21894 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: 32.31784,27.519594 - parent: 1 - type: Transform -- uid: 21895 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: 26.3963,29.476315 - parent: 1 - type: Transform -- uid: 21896 - type: ExtendedEmergencyOxygenTankFilled - components: - - pos: 26.411924,27.535255 - parent: 1 - type: Transform -- uid: 21897 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 30.5,30.5 - parent: 1 - type: Transform -- uid: 21898 - type: ClothingHeadNurseHat - components: - - pos: 2.5095897,-65.392746 - parent: 1 - type: Transform -- uid: 21899 - type: AirlockMaintChemLocked - components: - - name: psychologist storeroom - type: MetaData - - pos: -12.5,-33.5 - parent: 1 - type: Transform -- uid: 21900 - type: Rack - components: - - pos: 9.5,-16.5 - parent: 1 - type: Transform -- uid: 21901 - type: AirlockBrigGlassLocked - components: - - name: suspect treatment - type: MetaData - - pos: 3.5,-55.5 - parent: 1 - type: Transform -- uid: 21902 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21903 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -27.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21904 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -34.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21905 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 4.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21906 - type: CableApcExtension - components: - - pos: 5.5,21.5 - parent: 1 - type: Transform -- uid: 21907 - type: CableApcExtension - components: - - pos: 6.5,21.5 - parent: 1 - type: Transform -- uid: 21908 - type: CableApcExtension - components: - - pos: 7.5,15.5 - parent: 1 - type: Transform -- uid: 21909 - type: CableApcExtension - components: - - pos: 8.5,15.5 - parent: 1 - type: Transform -- uid: 21910 - type: CableApcExtension - components: - - pos: 2.5,20.5 - parent: 1 - type: Transform -- uid: 21911 - type: CableApcExtension - components: - - pos: 2.5,19.5 - parent: 1 - type: Transform -- uid: 21912 - type: CableApcExtension - components: - - pos: 2.5,18.5 - parent: 1 - type: Transform -- uid: 21913 - type: CableApcExtension - components: - - pos: 42.5,15.5 - parent: 1 - type: Transform -- uid: 21914 - type: CableApcExtension - components: - - pos: 42.5,16.5 - parent: 1 - type: Transform -- uid: 21915 - type: CableApcExtension - components: - - pos: 41.5,16.5 - parent: 1 - type: Transform -- uid: 21916 - type: CableApcExtension - components: - - pos: 40.5,16.5 - parent: 1 - type: Transform -- uid: 21917 - type: CableApcExtension - components: - - pos: 39.5,16.5 - parent: 1 - type: Transform -- uid: 21918 - type: CableApcExtension - components: - - pos: 38.5,16.5 - parent: 1 - type: Transform -- uid: 21919 - type: CableApcExtension - components: - - pos: 37.5,16.5 - parent: 1 - type: Transform -- uid: 21920 - type: CableApcExtension - components: - - pos: 36.5,16.5 - parent: 1 - type: Transform -- uid: 21921 - type: CableApcExtension - components: - - pos: 34.5,16.5 - parent: 1 - type: Transform -- uid: 21922 - type: CableApcExtension - components: - - pos: 33.5,16.5 - parent: 1 - type: Transform -- uid: 21923 - type: CableApcExtension - components: - - pos: 42.5,13.5 - parent: 1 - type: Transform -- uid: 21924 - type: CableApcExtension - components: - - pos: 42.5,12.5 - parent: 1 - type: Transform -- uid: 21925 - type: CableApcExtension - components: - - pos: 28.5,28.5 - parent: 1 - type: Transform -- uid: 21926 - type: CableApcExtension - components: - - pos: 31.5,28.5 - parent: 1 - type: Transform -- uid: 21927 - type: CableApcExtension - components: - - pos: 30.5,28.5 - parent: 1 - type: Transform -- uid: 21928 - type: PersonalAI - components: - - flags: SessionSpecific - type: MetaData - - pos: -48.458683,6.4665513 - parent: 1 - type: Transform -- uid: 21929 - type: EmergencyLight - components: - - pos: 45.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21930 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21931 - type: EmergencyLight - components: - - pos: 27.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21932 - type: Cigar - components: - - pos: 13.444295,-34.351078 - parent: 1 - type: Transform -- uid: 21933 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21934 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -36.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21935 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -44.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21936 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: -38.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21937 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: -34.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 21938 - type: CableApcExtension - components: - - pos: -12.5,-59.5 - parent: 1 - type: Transform -- uid: 21939 - type: CableApcExtension - components: - - pos: -11.5,-59.5 - parent: 1 - type: Transform -- uid: 21940 - type: CableApcExtension - components: - - pos: -10.5,-59.5 - parent: 1 - type: Transform -- uid: 21941 - type: CableApcExtension - components: - - pos: -10.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21942 - type: CableApcExtension - components: - - pos: -9.5,-59.5 - parent: 1 - type: Transform -- uid: 21943 - type: CableApcExtension - components: - - pos: -8.5,-59.5 - parent: 1 - type: Transform -- uid: 21944 - type: CableApcExtension - components: - - pos: -7.5,-59.5 - parent: 1 - type: Transform -- uid: 21945 - type: CableApcExtension - components: - - pos: -6.5,-59.5 - parent: 1 - type: Transform -- uid: 21946 - type: CableMV - components: - - pos: -10.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21947 - type: CableMV - components: - - pos: -9.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21948 - type: CableMV - components: - - pos: -8.5,-58.5 - parent: 1 - type: Transform -- uid: 21949 - type: CableMV - components: - - pos: -8.5,-57.5 - parent: 1 - type: Transform -- uid: 21950 - type: CableMV - components: - - pos: -8.5,-56.5 - parent: 1 - type: Transform -- uid: 21951 - type: CableMV - components: - - pos: -7.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21952 - type: CableMV - components: - - pos: -6.5,-56.5 - parent: 1 - type: Transform -- uid: 21953 - type: CableMV - components: - - pos: -5.5,-56.5 - parent: 1 - type: Transform -- uid: 21954 - type: CableMV - components: - - pos: -4.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21955 - type: CableMV - components: - - pos: -3.5,-56.5 - parent: 1 - type: Transform -- uid: 21956 - type: CableMV - components: - - pos: -2.5,-56.5 - parent: 1 - type: Transform -- uid: 21957 - type: CableMV - components: - - pos: -1.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21958 - type: CableMV - components: - - pos: -0.5,-56.5 - parent: 1 - type: Transform -- uid: 21959 - type: CableMV - components: - - pos: 0.5,-56.5 - parent: 1 - type: Transform -- uid: 21960 - type: CableMV - components: - - pos: 1.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21961 - type: CableMV - components: - - pos: 2.5,-56.5 - parent: 1 - type: Transform -- uid: 21962 - type: CableMV - components: - - pos: 3.5,-56.5 - parent: 1 - type: Transform -- uid: 21963 - type: CableMV - components: - - pos: 4.5,-56.5 - parent: 1 - type: Transform -- uid: 21964 - type: CableMV - components: - - pos: 5.5,-56.5 - parent: 1 - type: Transform -- uid: 21965 - type: CableMV - components: - - pos: 6.5,-56.5 - parent: 1 - type: Transform -- uid: 21966 - type: CableMV - components: - - pos: 6.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21967 - type: CableMV - components: - - pos: 6.5,-54.5 - parent: 1 - type: Transform -- uid: 21968 - type: CableMV - components: - - pos: 6.5,-53.5 - parent: 1 - type: Transform -- uid: 21969 - type: CableMV - components: - - pos: 6.5,-52.5 - parent: 1 - type: Transform -- uid: 21970 - type: CableMV - components: - - pos: 6.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21971 - type: CableMV - components: - - pos: 7.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21972 - type: Grille - components: - - pos: -48.5,-82.5 - parent: 1 - type: Transform -- uid: 21973 - type: Grille - components: - - pos: -48.5,-83.5 - parent: 1 - type: Transform -- uid: 21974 - type: CableApcExtension - components: - - pos: -51.5,-75.5 - parent: 1 - type: Transform -- uid: 21975 - type: CableApcExtension - components: - - pos: -51.5,-77.5 - parent: 1 - type: Transform -- uid: 21976 - type: CableApcExtension - components: - - pos: -51.5,-78.5 - parent: 1 - type: Transform -- uid: 21977 - type: CableApcExtension - components: - - pos: -51.5,-79.5 - parent: 1 - type: Transform -- uid: 21978 - type: CableApcExtension - components: - - pos: -52.5,-79.5 - parent: 1 - type: Transform -- uid: 21979 - type: CableMV - components: - - pos: 34.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21980 - type: CableMV - components: - - pos: 35.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21981 - type: CableMV - components: - - pos: 35.5,22.5 - parent: 1 - type: Transform -- uid: 21982 - type: CableMV - components: - - pos: 36.5,22.5 - parent: 1 - type: Transform -- uid: 21983 - type: CableMV - components: - - pos: 37.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21984 - type: WallReinforced - components: - - pos: 34.5,21.5 - parent: 1 - type: Transform -- uid: 21985 - type: CableMV - components: - - pos: 37.5,20.5 - parent: 1 - type: Transform -- uid: 21986 - type: CableMV - components: - - pos: 37.5,19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21987 - type: CableMV - components: - - pos: 37.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21988 - type: CableMV - components: - - pos: 38.5,18.5 - parent: 1 - type: Transform -- uid: 21989 - type: CableMV - components: - - pos: 38.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21990 - type: CableApcExtension - components: - - pos: 38.5,17.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 21991 - type: PlasticFlapsAirtightClear - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-56.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 21992 - type: ExtinguisherCabinetFilled - components: - - pos: -15.5,-2.5 - parent: 1 - type: Transform -- uid: 21993 - type: ExtinguisherCabinetFilled - components: - - pos: -17.5,-17.5 - parent: 1 - type: Transform -- uid: 21994 - type: ExtinguisherCabinetFilled - components: - - pos: -21.5,-30.5 - parent: 1 - type: Transform -- uid: 21995 - type: ExtinguisherCabinetFilled - components: - - pos: -2.5,-29.5 - parent: 1 - type: Transform -- uid: 21996 - type: DisposalUnit - components: - - pos: 21.5,-37.5 - parent: 1 - type: Transform -- uid: 21997 - type: ExtinguisherCabinetFilled - components: - - pos: 52.5,-46.5 - parent: 1 - type: Transform -- uid: 21998 - type: SignRobo - components: - - pos: 66.5,-47.5 - parent: 1 - type: Transform -- uid: 21999 - type: ExtinguisherCabinetFilled - components: - - pos: -10.5,-47.5 - parent: 1 - type: Transform -- uid: 22000 - type: ExtinguisherCabinetFilled - components: - - pos: 19.5,18.5 - parent: 1 - type: Transform -- uid: 22001 - type: ExtinguisherCabinetFilled - components: - - pos: 3.5,13.5 - parent: 1 - type: Transform -- uid: 22002 - type: FireExtinguisher - components: - - pos: 22.516739,-54.502064 - parent: 1 - type: Transform -- uid: 22003 - type: SurveillanceCameraGeneral - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-56.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: south youtool - type: SurveillanceCamera -- uid: 22004 - type: SurveillanceCameraGeneral - components: - - pos: 37.5,-73.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: arrivals - type: SurveillanceCamera -- uid: 22005 - type: RailingCorner - components: - - pos: 61.5,-9.5 - parent: 1 - type: Transform -- uid: 22006 - type: FireAxeCabinetFilled - components: - - pos: 30.5,-20.5 - parent: 1 - type: Transform -- uid: 22007 - type: ExtinguisherCabinetFilled - components: - - pos: -6.5,-17.5 - parent: 1 - type: Transform -- uid: 22008 - type: Grille - components: - - pos: 1.5,-18.5 - parent: 1 - type: Transform -- uid: 22009 - type: Grille - components: - - pos: 2.5,-18.5 - parent: 1 - type: Transform -- uid: 22010 - type: SubstationBasic - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform -- uid: 22011 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22012 - type: TelecomServer - components: - - pos: 11.5,-20.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22013 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 22013 - type: EncryptionKeyEngineering - components: - - flags: InContainer - type: MetaData - - parent: 22012 - type: Transform - - canCollide: False - type: Physics -- uid: 22014 - type: MaintenanceToolSpawner - components: - - pos: 3.5,-17.5 - parent: 1 - type: Transform -- uid: 22015 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22016 - type: CableApcExtension - components: - - pos: 19.5,-29.5 - parent: 1 - type: Transform -- uid: 22017 - type: WallReinforced - components: - - pos: 67.5,-67.5 - parent: 1 - type: Transform -- uid: 22018 - type: WallReinforced - components: - - pos: 69.5,-69.5 - parent: 1 - type: Transform -- uid: 22019 - type: PosterMapOrigin - components: - - pos: 12.5,-40.5 - parent: 1 - type: Transform -- uid: 22020 - type: PosterMapOrigin - components: - - pos: 5.5,-24.5 - parent: 1 - type: Transform -- uid: 22021 - type: PosterMapOrigin - components: - - pos: -32.5,2.5 - parent: 1 - type: Transform -- uid: 22022 - type: PosterMapOrigin - components: - - pos: -0.5,4.5 - parent: 1 - type: Transform -- uid: 22023 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 19.5,-53.5 - parent: 1 - type: Transform -- uid: 22024 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 18.5,-53.5 - parent: 1 - type: Transform -- uid: 22025 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 25.5,-53.5 - parent: 1 - type: Transform -- uid: 22026 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 18.5,-53.5 - parent: 1 - type: Transform -- uid: 22027 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-40.5 - parent: 1 - type: Transform -- uid: 22028 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-38.5 - parent: 1 - type: Transform -- uid: 22029 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 22.5,-53.5 - parent: 1 - type: Transform -- uid: 22030 - type: AppraisalTool - components: - - pos: -38.189224,18.730852 - parent: 1 - type: Transform -- uid: 22031 - type: Crowbar - components: - - pos: -36.564224,18.558977 - parent: 1 - type: Transform -- uid: 22032 - type: SignalSwitch - components: - - rot: 1.5707963267948966 rad - pos: -35.5,29.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 18891 - - port: Open - uid: 18655 - - port: Open - uid: 18190 - - port: Open - uid: 22091 - - port: Open - uid: 1291 - - port: Open - uid: 20573 - Off: - - port: Close - uid: 18891 - - port: Close - uid: 18655 - - port: Close - uid: 18190 - - port: Close - uid: 22091 - - port: Close - uid: 1291 - - port: Close - uid: 20573 - type: SignalTransmitter - - type: ItemCooldown -- uid: 22033 - type: ClosetWallMaintenanceFilledRandom - components: - - pos: -15.5,-33.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22034 - type: ClosetWallMaintenanceFilledRandom - components: - - pos: -52.5,-26.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22035 - type: WallReinforced - components: - - pos: -78.5,-19.5 - parent: 1 - type: Transform -- uid: 22036 - type: WallReinforced - components: - - pos: -78.5,-5.5 - parent: 1 - type: Transform -- uid: 22037 - type: SignElectrical - components: - - pos: -78.5,-5.5 - parent: 1 - type: Transform -- uid: 22038 - type: SignElectrical - components: - - pos: -78.5,-19.5 - parent: 1 - type: Transform -- uid: 22039 - type: WallReinforced - components: - - pos: -71.5,-2.5 - parent: 1 - type: Transform -- uid: 22040 - type: WallReinforced - components: - - pos: -64.5,-2.5 - parent: 1 - type: Transform -- uid: 22041 - type: SignElectrical - components: - - pos: -71.5,-2.5 - parent: 1 - type: Transform -- uid: 22042 - type: SignElectrical - components: - - pos: -64.5,-2.5 - parent: 1 - type: Transform -- uid: 22043 - type: Catwalk - components: - - pos: -79.5,-27.5 - parent: 1 - type: Transform -- uid: 22044 - type: Catwalk - components: - - pos: -79.5,-28.5 - parent: 1 - type: Transform -- uid: 22045 - type: Catwalk - components: - - pos: -79.5,-29.5 - parent: 1 - type: Transform -- uid: 22046 - type: Catwalk - components: - - pos: -79.5,-30.5 - parent: 1 - type: Transform -- uid: 22047 - type: Catwalk - components: - - pos: -79.5,-31.5 - parent: 1 - type: Transform -- uid: 22048 - type: Catwalk - components: - - pos: -78.5,-31.5 - parent: 1 - type: Transform -- uid: 22049 - type: Catwalk - components: - - pos: -78.5,-32.5 - parent: 1 - type: Transform -- uid: 22050 - type: Catwalk - components: - - pos: -78.5,-33.5 - parent: 1 - type: Transform -- uid: 22051 - type: Catwalk - components: - - pos: -77.5,-33.5 - parent: 1 - type: Transform -- uid: 22052 - type: Catwalk - components: - - pos: -76.5,-33.5 - parent: 1 - type: Transform -- uid: 22053 - type: Catwalk - components: - - pos: -76.5,-34.5 - parent: 1 - type: Transform -- uid: 22054 - type: Catwalk - components: - - pos: -76.5,-35.5 - parent: 1 - type: Transform -- uid: 22055 - type: CableHV - components: - - pos: -47.5,-27.5 - parent: 1 - type: Transform -- uid: 22056 - type: CableHV - components: - - pos: -48.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22057 - type: CableHV - components: - - pos: -48.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22058 - type: CableHV - components: - - pos: -48.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22059 - type: CableHV - components: - - pos: -48.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22060 - type: CableHV - components: - - pos: -46.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22061 - type: CableHV - components: - - pos: -46.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22062 - type: CableHV - components: - - pos: -72.5,-35.5 - parent: 1 - type: Transform -- uid: 22063 - type: CableHV - components: - - pos: -72.5,-34.5 - parent: 1 - type: Transform -- uid: 22064 - type: CableHV - components: - - pos: -72.5,-33.5 - parent: 1 - type: Transform -- uid: 22065 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -72.5,-34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22066 - type: AirlockExternalGlassLocked - components: - - pos: -72.5,-35.5 - parent: 1 - type: Transform -- uid: 22067 - type: WallReinforced - components: - - pos: -73.5,-35.5 - parent: 1 - type: Transform -- uid: 22068 - type: WallReinforced - components: - - pos: -73.5,-34.5 - parent: 1 - type: Transform -- uid: 22069 - type: WallReinforced - components: - - pos: -71.5,-35.5 - parent: 1 - type: Transform -- uid: 22070 - type: Catwalk - components: - - pos: -61.5,-36.5 - parent: 1 - type: Transform -- uid: 22071 - type: Catwalk - components: - - pos: -61.5,-37.5 - parent: 1 - type: Transform -- uid: 22072 - type: Catwalk - components: - - pos: -61.5,-38.5 - parent: 1 - type: Transform -- uid: 22073 - type: Catwalk - components: - - pos: -61.5,-39.5 - parent: 1 - type: Transform -- uid: 22074 - type: Catwalk - components: - - pos: -61.5,-40.5 - parent: 1 - type: Transform -- uid: 22075 - type: Catwalk - components: - - pos: -61.5,-41.5 - parent: 1 - type: Transform -- uid: 22076 - type: Catwalk - components: - - pos: -61.5,-42.5 - parent: 1 - type: Transform -- uid: 22077 - type: Catwalk - components: - - pos: -61.5,-43.5 - parent: 1 - type: Transform -- uid: 22078 - type: Catwalk - components: - - pos: -61.5,-44.5 - parent: 1 - type: Transform -- uid: 22079 - type: Catwalk - components: - - pos: -61.5,-45.5 - parent: 1 - type: Transform -- uid: 22080 - type: Catwalk - components: - - pos: -61.5,-46.5 - parent: 1 - type: Transform -- uid: 22081 - type: Catwalk - components: - - pos: -61.5,-47.5 - parent: 1 - type: Transform -- uid: 22082 - type: Catwalk - components: - - pos: -61.5,-48.5 - parent: 1 - type: Transform -- uid: 22083 - type: Catwalk - components: - - pos: -61.5,-49.5 - parent: 1 - type: Transform -- uid: 22084 - type: Catwalk - components: - - pos: -61.5,-50.5 - parent: 1 - type: Transform -- uid: 22085 - type: Catwalk - components: - - pos: -61.5,-51.5 - parent: 1 - type: Transform -- uid: 22086 - type: Catwalk - components: - - pos: -61.5,-52.5 - parent: 1 - type: Transform -- uid: 22087 - type: Catwalk - components: - - pos: -61.5,-53.5 - parent: 1 - type: Transform -- uid: 22088 - type: Catwalk - components: - - pos: -61.5,-54.5 - parent: 1 - type: Transform -- uid: 22089 - type: Catwalk - components: - - pos: -61.5,-55.5 - parent: 1 - type: Transform -- uid: 22090 - type: FirelockElectronics - components: - - pos: -8.656447,38.727524 - parent: 1 - type: Transform -- uid: 22091 - type: ShuttersNormalOpen - components: - - pos: -33.5,32.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86606.164 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 22032 - Close: - - port: Off - uid: 22032 - Toggle: [] - type: SignalReceiver -- uid: 22092 - type: ComputerTelevisionCircuitboard - components: - - pos: -8.937697,37.5244 - parent: 1 - type: Transform -- uid: 22093 - type: ComputerTelevisionCircuitboard - components: - - pos: -9.312697,37.696274 - parent: 1 - type: Transform -- uid: 22094 - type: ChairWood - components: - - pos: -17.5,43.5 - parent: 1 - type: Transform -- uid: 22095 - type: ChairWood - components: - - pos: -16.5,43.5 - parent: 1 - type: Transform -- uid: 22096 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -17.5,40.5 - parent: 1 - type: Transform -- uid: 22097 - type: Grille - components: - - pos: 54.5,61.5 - parent: 1 - type: Transform -- uid: 22098 - type: Grille - components: - - pos: 55.5,61.5 - parent: 1 - type: Transform -- uid: 22099 - type: Grille - components: - - pos: 53.5,61.5 - parent: 1 - type: Transform -- uid: 22100 - type: WallReinforced - components: - - pos: 38.5,31.5 - parent: 1 - type: Transform -- uid: 22101 - type: WallReinforced - components: - - pos: 32.5,39.5 - parent: 1 - type: Transform -- uid: 22102 - type: WallReinforced - components: - - pos: 24.5,39.5 - parent: 1 - type: Transform -- uid: 22103 - type: SignElectrical - components: - - pos: 24.5,39.5 - parent: 1 - type: Transform -- uid: 22104 - type: SignElectrical - components: - - pos: 32.5,39.5 - parent: 1 - type: Transform -- uid: 22105 - type: SignElectrical - components: - - pos: 38.5,31.5 - parent: 1 - type: Transform -- uid: 22106 - type: GasPipeFourway - components: - - pos: -5.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22107 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -5.5,-16.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22108 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -5.5,-15.5 - parent: 1 - type: Transform -- uid: 22109 - type: ChessBoard - components: - - rot: 3.141592653589793 rad - pos: -5.5158696,-15.414865 - parent: 1 - type: Transform -- uid: 22110 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -7.5,1.5 - parent: 1 - type: Transform -- uid: 22111 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -7.5,0.5 - parent: 1 - type: Transform -- uid: 22112 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -5.5,1.5 - parent: 1 - type: Transform -- uid: 22113 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -5.5,0.5 - parent: 1 - type: Transform -- uid: 22114 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -3.5,1.5 - parent: 1 - type: Transform -- uid: 22115 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1 - type: Transform -- uid: 22116 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 21.5,-38.5 - parent: 1 - type: Transform -- uid: 22117 - type: CableHV - components: - - pos: 19.5,-27.5 - parent: 1 - type: Transform -- uid: 22118 - type: CableHV - components: - - pos: 19.5,-28.5 - parent: 1 - type: Transform -- uid: 22119 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 30.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22120 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 29.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22121 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 28.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22122 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 18.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22123 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 17.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22124 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 16.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22125 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 44.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22126 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 43.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22127 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 42.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22128 - type: ClosetEmergencyFilledRandom - components: - - pos: 18.5,-39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22129 - type: LockerElectricalSuppliesFilled - components: - - pos: 39.5,-28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22130 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 39.5,-30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22131 - type: Rack - components: - - pos: 39.5,-30.5 - parent: 1 - type: Transform -- uid: 22132 - type: trayScanner - components: - - pos: 39.581177,-30.49341 - parent: 1 - type: Transform -- uid: 22133 - type: ClosetFireFilled - components: - - pos: 19.5,-39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22134 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 34.5,-35.5 - parent: 1 - type: Transform -- uid: 22135 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22136 - type: FoodPizzaVegetableSlice - components: - - pos: 34.483707,-35.33738 - parent: 1 - type: Transform -- uid: 22137 - type: Chair - components: - - pos: 34.5,-34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22138 - type: ClosetEmergencyFilledRandom - components: - - pos: 3.5,-25.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22139 - type: Chair - components: - - pos: 3.5,-40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22140 - type: VendingMachineGames - components: - - flags: SessionSpecific - type: MetaData - - pos: 5.5,-34.5 - parent: 1 - type: Transform -- uid: 22141 - type: Table - components: - - pos: 41.5,-58.5 - parent: 1 - type: Transform -- uid: 22142 - type: Chair - components: - - pos: -14.5,8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22143 - type: Chair - components: - - pos: -15.5,8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22144 - type: Chair - components: - - pos: -16.5,8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22145 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -40.5,-0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22146 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -39.5,-0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22147 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -38.5,-0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22148 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -36.5,-0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22149 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -35.5,-0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22150 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -34.5,-0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22151 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -31.5,-53.5 - parent: 1 - type: Transform -- uid: 22152 - type: Wrench - components: - - pos: -31.403458,-56.573048 - parent: 1 - type: Transform -- uid: 22153 - type: ClothingHandsGlovesColorYellow - components: - - pos: -25.966612,-52.421177 - parent: 1 - type: Transform -- uid: 22154 - type: PoweredSmallLight - components: - - pos: -30.5,-54.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22155 - type: PosterContrabandRIPBadger - components: - - pos: -41.5,-27.5 - parent: 1 - type: Transform -- uid: 22156 - type: PosterContrabandRevolver - components: - - pos: -30.5,-42.5 - parent: 1 - type: Transform -- uid: 22157 - type: Catwalk - components: - - pos: -18.5,-52.5 - parent: 1 - type: Transform -- uid: 22158 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -23.5,-61.5 - parent: 1 - type: Transform - - color: '#97C3FCCC' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22159 - type: PosterContrabandVoteWeh - components: - - pos: -46.5,-65.5 - parent: 1 - type: Transform -- uid: 22160 - type: RandomPosterContraband - components: - - pos: 11.5,-54.5 - parent: 1 - type: Transform -- uid: 22161 - type: RandomPosterContraband - components: - - pos: 15.5,-46.5 - parent: 1 - type: Transform -- uid: 22162 - type: RandomPosterContraband - components: - - pos: 11.5,-48.5 - parent: 1 - type: Transform -- uid: 22163 - type: WeldingFuelTank - components: - - pos: 7.5,-64.5 - parent: 1 - type: Transform -- uid: 22164 - type: WallReinforced - components: - - pos: 73.5,-40.5 - parent: 1 - type: Transform -- uid: 22165 - type: WallReinforced - components: - - pos: 77.5,-42.5 - parent: 1 - type: Transform -- uid: 22166 - type: WallReinforced - components: - - pos: 77.5,-48.5 - parent: 1 - type: Transform -- uid: 22167 - type: WallReinforced - components: - - pos: 78.5,-48.5 - parent: 1 - type: Transform -- uid: 22168 - type: WallReinforced - components: - - pos: 78.5,-42.5 - parent: 1 - type: Transform -- uid: 22169 - type: WallReinforced - components: - - pos: 78.5,-47.5 - parent: 1 - type: Transform -- uid: 22170 - type: Table - components: - - pos: 77.5,-47.5 - parent: 1 - type: Transform -- uid: 22171 - type: ClothingOuterWinterRobo - components: - - pos: 77.51138,-47.408936 - parent: 1 - type: Transform -- uid: 22172 - type: DisposalPipe - components: - - pos: -5.5,-55.5 - parent: 1 - type: Transform -- uid: 22173 - type: DisposalPipe - components: - - pos: -5.5,-56.5 - parent: 1 - type: Transform -- uid: 22174 - type: DisposalPipe - components: - - pos: -5.5,-57.5 - parent: 1 - type: Transform -- uid: 22175 - type: DisposalPipe - components: - - pos: -5.5,-58.5 - parent: 1 - type: Transform -- uid: 22176 - type: DisposalPipe - components: - - pos: -5.5,-59.5 - parent: 1 - type: Transform -- uid: 22177 - type: DisposalPipe - components: - - pos: -5.5,-60.5 - parent: 1 - type: Transform -- uid: 22178 - type: DisposalYJunction - components: - - rot: 3.141592653589793 rad - pos: -5.5,-61.5 - parent: 1 - type: Transform -- uid: 22179 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-61.5 - parent: 1 - type: Transform -- uid: 22180 - type: DisposalPipe - components: - - pos: -6.5,-62.5 - parent: 1 - type: Transform -- uid: 22181 - type: DisposalPipe - components: - - pos: -6.5,-63.5 - parent: 1 - type: Transform -- uid: 22182 - type: DisposalPipe - components: - - pos: -6.5,-64.5 - parent: 1 - type: Transform -- uid: 22183 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-66.5 - parent: 1 - type: Transform -- uid: 22184 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-66.5 - parent: 1 - type: Transform -- uid: 22185 - type: DisposalUnit - components: - - pos: -9.5,-66.5 - parent: 1 - type: Transform -- uid: 22186 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-65.5 - parent: 1 - type: Transform -- uid: 22187 - type: Multitool - components: - - pos: -9.540877,-65.36475 - parent: 1 - type: Transform -- uid: 22188 - type: CableApcExtension - components: - - pos: 52.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22189 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -3.5,-67.5 - parent: 1 - type: Transform -- uid: 22190 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-66.5 - parent: 1 - type: Transform -- uid: 22191 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-65.5 - parent: 1 - type: Transform -- uid: 22192 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-64.5 - parent: 1 - type: Transform -- uid: 22193 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-63.5 - parent: 1 - type: Transform -- uid: 22194 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-62.5 - parent: 1 - type: Transform -- uid: 22195 - type: DisposalJunctionFlipped - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-61.5 - parent: 1 - type: Transform -- uid: 22196 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-61.5 - parent: 1 - type: Transform -- uid: 22197 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-61.5 - parent: 1 - type: Transform -- uid: 22198 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-61.5 - parent: 1 - type: Transform -- uid: 22199 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-61.5 - parent: 1 - type: Transform -- uid: 22200 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-61.5 - parent: 1 - type: Transform -- uid: 22201 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-61.5 - parent: 1 - type: Transform -- uid: 22202 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: 2.5,-63.5 - parent: 1 - type: Transform -- uid: 22203 - type: DisposalBend - components: - - pos: 2.5,-61.5 - parent: 1 - type: Transform -- uid: 22204 - type: DisposalPipe - components: - - pos: 2.5,-62.5 - parent: 1 - type: Transform -- uid: 22205 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-61.5 - parent: 1 - type: Transform -- uid: 22206 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-61.5 - parent: 1 - type: Transform -- uid: 22207 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-61.5 - parent: 1 - type: Transform -- uid: 22208 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-61.5 - parent: 1 - type: Transform -- uid: 22209 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-61.5 - parent: 1 - type: Transform -- uid: 22210 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-61.5 - parent: 1 - type: Transform -- uid: 22211 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-61.5 - parent: 1 - type: Transform -- uid: 22212 - type: DisposalPipe - components: - - pos: -13.5,-62.5 - parent: 1 - type: Transform -- uid: 22213 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-67.5 - parent: 1 - type: Transform -- uid: 22214 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -13.5,-63.5 - parent: 1 - type: Transform -- uid: 22215 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -13.5,-64.5 - parent: 1 - type: Transform -- uid: 22216 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -13.5,-65.5 - parent: 1 - type: Transform -- uid: 22217 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -13.5,-66.5 - parent: 1 - type: Transform -- uid: 22218 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-67.5 - parent: 1 - type: Transform -- uid: 22219 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-67.5 - parent: 1 - type: Transform -- uid: 22220 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-67.5 - parent: 1 - type: Transform -- uid: 22221 - type: DisposalUnit - components: - - pos: -16.5,-67.5 - parent: 1 - type: Transform -- uid: 22222 - type: DisposalUnit - components: - - pos: -3.5,-67.5 - parent: 1 - type: Transform -- uid: 22223 - type: DisposalUnit - components: - - pos: 2.5,-63.5 - parent: 1 - type: Transform -- uid: 22224 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-70.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22225 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-71.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22226 - type: FoodMealEggplantParm - components: - - pos: -23.359459,-71.33451 - parent: 1 - type: Transform -- uid: 22227 - type: PottedPlantRandom - components: - - pos: -21.5,-69.5 - parent: 1 - type: Transform -- uid: 22228 - type: PottedPlantRandom - components: - - pos: -23.5,-73.5 - parent: 1 - type: Transform -- uid: 22229 - type: filingCabinetDrawer - components: - - pos: -24.5,-69.5 - parent: 1 - type: Transform -- uid: 22230 - type: ComputerSurveillanceCameraMonitor - components: - - pos: -23.5,-69.5 - parent: 1 - type: Transform -- uid: 22231 - type: Firelock - components: - - pos: -16.5,-69.5 - parent: 1 - type: Transform -- uid: 22232 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 31.5,-62.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22233 - type: ClothingHeadHatGreensoft - components: - - pos: 31.51696,-61.276703 - parent: 1 - type: Transform -- uid: 22234 - type: DrinkIrishCoffeeGlass - components: - - pos: 31.04821,-61.292328 - parent: 1 - type: Transform -- uid: 22235 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,-31.5 - parent: 1 - type: Transform -- uid: 22236 - type: FoodBakedCookieRaisin - components: - - pos: -2.526709,-33.523388 - parent: 1 - type: Transform -- uid: 22237 - type: Table - components: - - pos: -2.5,-33.5 - parent: 1 - type: Transform -- uid: 22238 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22239 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22240 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22241 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-60.5 - parent: 1 - type: Transform -- uid: 22242 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-61.5 - parent: 1 - type: Transform -- uid: 22243 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-62.5 - parent: 1 - type: Transform -- uid: 22244 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-63.5 - parent: 1 - type: Transform -- uid: 22245 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-64.5 - parent: 1 - type: Transform -- uid: 22246 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-67.5 - parent: 1 - type: Transform -- uid: 22247 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-67.5 - parent: 1 - type: Transform -- uid: 22248 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-67.5 - parent: 1 - type: Transform -- uid: 22249 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-67.5 - parent: 1 - type: Transform -- uid: 22250 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-67.5 - parent: 1 - type: Transform -- uid: 22251 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-67.5 - parent: 1 - type: Transform -- uid: 22252 - type: Catwalk - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-67.5 - parent: 1 - type: Transform -- uid: 22253 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22254 - type: RandomFoodBakedSingle - components: - - pos: -4.5,1.5 - parent: 1 - type: Transform -- uid: 22255 - type: RandomFoodBakedSingle - components: - - pos: -8.5,0.5 - parent: 1 - type: Transform -- uid: 22256 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -3.5,-26.5 - parent: 1 - type: Transform -- uid: 22257 - type: RandomDrinkGlass - components: - - pos: -8.5,1.5 - parent: 1 - type: Transform -- uid: 22258 - type: TableReinforced - components: - - pos: -10.5,-61.5 - parent: 1 - type: Transform -- uid: 22259 - type: TableReinforced - components: - - pos: 0.5,-61.5 - parent: 1 - type: Transform -- uid: 22260 - type: TableReinforced - components: - - pos: -0.5,-61.5 - parent: 1 - type: Transform -- uid: 22261 - type: TableReinforced - components: - - pos: -11.5,-61.5 - parent: 1 - type: Transform -- uid: 22262 - type: TableReinforced - components: - - pos: -16.5,-61.5 - parent: 1 - type: Transform -- uid: 22263 - type: TableReinforced - components: - - pos: -17.5,-61.5 - parent: 1 - type: Transform -- uid: 22264 - type: Window - components: - - pos: 26.5,-40.5 - parent: 1 - type: Transform -- uid: 22265 - type: TableWood - components: - - pos: 27.5,-34.5 - parent: 1 - type: Transform -- uid: 22266 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22267 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22268 - type: ExtinguisherCabinetFilled - components: - - pos: 23.5,-51.5 - parent: 1 - type: Transform -- uid: 22269 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-80.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22270 - type: CableApcExtension - components: - - pos: 45.5,-72.5 - parent: 1 - type: Transform -- uid: 22271 - type: IntercomMedical - components: - - pos: -24.5,-56.5 - parent: 1 - type: Transform -- uid: 22272 - type: PosterLegitNanomichiAd - components: - - pos: -21.5,-27.5 - parent: 1 - type: Transform -- uid: 22273 - type: ClosetEmergencyFilledRandom - components: - - pos: -22.5,-6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22274 - type: ClosetFireFilled - components: - - pos: -23.5,-6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22275 - type: ToolboxEmergencyFilled - components: - - pos: -12.486199,-5.5686293 - parent: 1 - type: Transform -- uid: 22276 - type: ClothingBackpackMedical - components: - - pos: 0.5470823,-61.419598 - parent: 1 - type: Transform -- uid: 22277 - type: ClothingBackpackDuffelMedical - components: - - pos: -10.603486,-61.357098 - parent: 1 - type: Transform -- uid: 22278 - type: ClothingBackpackSatchelMedical - components: - - pos: -11.466913,-61.435223 - parent: 1 - type: Transform -- uid: 22279 - type: BoxLatexGloves - components: - - pos: -0.28067696,-61.388348 - parent: 1 - type: Transform -- uid: 22280 - type: Table - components: - - pos: 11.5,-66.5 - parent: 1 - type: Transform -- uid: 22281 - type: Table - components: - - pos: 12.5,-66.5 - parent: 1 - type: Transform -- uid: 22282 - type: Bucket - components: - - pos: 13.468333,-66.41357 - parent: 1 - type: Transform -- uid: 22283 - type: FloodlightBroken - components: - - pos: 11.494867,-70.44923 - parent: 1 - type: Transform -- uid: 22284 - type: FoodPlateSmallTrash - components: - - pos: 12.393527,-66.326096 - parent: 1 - type: Transform -- uid: 22285 - type: BrokenBottle - components: - - rot: -1.5707963267948966 rad - pos: -6.571364,-73.41078 - parent: 1 - type: Transform -- uid: 22286 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-45.5 - parent: 1 - type: Transform -- uid: 22287 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-46.5 - parent: 1 - type: Transform -- uid: 22288 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-47.5 - parent: 1 - type: Transform -- uid: 22289 - type: ToolboxElectricalFilled - components: - - pos: 11.52045,-45.467823 - parent: 1 - type: Transform - - nextAttack: 4984.8300646 - type: MeleeWeapon -- uid: 22290 - type: ToolboxEmergencyFilled - components: - - pos: 11.52045,-46.155323 - parent: 1 - type: Transform - - nextAttack: 3265.4536088 - type: MeleeWeapon -- uid: 22291 - type: GasPipeBend - components: - - pos: -5.5,-64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22292 - type: GasAnalyzer - components: - - pos: 11.464186,-46.97584 - parent: 1 - type: Transform -- uid: 22293 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 10.5,-47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22294 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -8.5,22.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18398 - Forward: - - port: Left - uid: 18398 - Off: - - port: Middle - uid: 18398 - type: SignalReceiver -- uid: 22295 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -7.5,22.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18398 - Forward: - - port: Left - uid: 18398 - Off: - - port: Middle - uid: 18398 - type: SignalReceiver -- uid: 22296 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -6.5,22.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18398 - Forward: - - port: Left - uid: 18398 - Off: - - port: Middle - uid: 18398 - type: SignalReceiver -- uid: 22297 - type: ConveyorBeltAssembly - components: - - pos: -27.603226,-31.351301 - parent: 1 - type: Transform -- uid: 22298 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-67.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22299 - type: TableWood - components: - - pos: -33.5,-67.5 - parent: 1 - type: Transform -- uid: 22300 - type: WoodblockInstrument - components: - - pos: -47.491924,-64.51194 - parent: 1 - type: Transform -- uid: 22301 - type: CounterWoodFrame - components: - - pos: -47.5,-64.5 - parent: 1 - type: Transform -- uid: 22302 - type: WallSolid - components: - - pos: -27.5,-55.5 - parent: 1 - type: Transform -- uid: 22303 - type: PaperBin5 - components: - - pos: -16.935398,-61.437172 - parent: 1 - type: Transform -- uid: 22304 - type: ClosetMaintenanceFilledRandom - components: - - pos: -27.5,-67.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22305 - type: ClosetMaintenanceFilledRandom - components: - - pos: 39.5,-15.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22306 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: 44.5,-15.5 - parent: 1 - type: Transform -- uid: 22307 - type: ClosetEmergencyFilledRandom - components: - - pos: 47.5,-15.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22308 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-13.5 - parent: 1 - type: Transform -- uid: 22309 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-13.5 - parent: 1 - type: Transform -- uid: 22310 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-13.5 - parent: 1 - type: Transform -- uid: 22311 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-13.5 - parent: 1 - type: Transform -- uid: 22312 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-13.5 - parent: 1 - type: Transform -- uid: 22313 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-13.5 - parent: 1 - type: Transform -- uid: 22314 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: 48.5,-13.5 - parent: 1 - type: Transform -- uid: 22315 - type: FirelockGlass - components: - - pos: 49.5,-13.5 - parent: 1 - type: Transform -- uid: 22316 - type: Rack - components: - - pos: 59.5,2.5 - parent: 1 - type: Transform -- uid: 22317 - type: MaintenanceToolSpawner - components: - - pos: 59.5,2.5 - parent: 1 - type: Transform -- uid: 22318 - type: MopBucket - components: - - pos: 15.4907,31.562498 - parent: 1 - type: Transform -- uid: 22319 - type: AirlockMaintAtmoLocked - components: - - name: atmospherics - type: MetaData - - pos: -40.5,-31.5 - parent: 1 - type: Transform -- uid: 22320 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 22.5,16.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22321 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 21.5,16.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22322 - type: ClosetEmergencyFilledRandom - components: - - pos: 16.5,-5.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22323 - type: ClosetFireFilled - components: - - pos: 16.5,-6.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22324 - type: WardrobeYellowFilled - components: - - pos: -49.5,3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22325 - type: WardrobeGreenFilled - components: - - pos: -48.5,3.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22326 - type: ClosetFireFilled - components: - - pos: -32.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22327 - type: ClosetEmergencyFilledRandom - components: - - pos: -31.5,-0.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22328 - type: DisposalTrunk - components: - - pos: -12.5,8.5 - parent: 1 - type: Transform -- uid: 22329 - type: Table - components: - - pos: 7.5,-16.5 - parent: 1 - type: Transform -- uid: 22330 - type: CableHV - components: - - pos: 5.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22331 - type: InflatableWallStack - components: - - pos: 7.4753633,-16.474928 - parent: 1 - type: Transform -- uid: 22332 - type: CableHV - components: - - pos: 8.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22333 - type: AirlockCommandGlassLocked - components: - - pos: 33.5,-25.5 - parent: 1 - type: Transform -- uid: 22334 - type: AirlockCommandGlassLocked - components: - - pos: 31.5,-25.5 - parent: 1 - type: Transform -- uid: 22335 - type: CarpetSBlue - components: - - pos: 32.5,-30.5 - parent: 1 - type: Transform -- uid: 22336 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-27.5 - parent: 1 - type: Transform -- uid: 22337 - type: CableMV - components: - - pos: 29.5,-27.5 - parent: 1 - type: Transform -- uid: 22338 - type: CableApcExtension - components: - - pos: 29.5,-27.5 - parent: 1 - type: Transform -- uid: 22339 - type: CableApcExtension - components: - - pos: 29.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22340 - type: CableApcExtension - components: - - pos: 29.5,-25.5 - parent: 1 - type: Transform -- uid: 22341 - type: WallReinforced - components: - - pos: 27.5,-26.5 - parent: 1 - type: Transform -- uid: 22342 - type: AirlockMaintCommandLocked - components: - - name: bridge - type: MetaData - - pos: 26.5,-26.5 - parent: 1 - type: Transform -- uid: 22343 - type: AirlockCaptainLocked - components: - - name: captains quarters - type: MetaData - - pos: 28.5,-26.5 - parent: 1 - type: Transform -- uid: 22344 - type: TableReinforced - components: - - pos: -9.5,16.5 - parent: 1 - type: Transform -- uid: 22345 - type: NitrogenTankFilled - components: - - pos: -9.511479,16.495153 - parent: 1 - type: Transform -- uid: 22346 - type: Firelock - components: - - pos: -29.5,-72.5 - parent: 1 - type: Transform -- uid: 22347 - type: TableReinforced - components: - - pos: -16.5,-35.5 - parent: 1 - type: Transform -- uid: 22348 - type: TableReinforced - components: - - pos: -15.5,-35.5 - parent: 1 - type: Transform -- uid: 22349 - type: TableReinforced - components: - - pos: -14.5,-35.5 - parent: 1 - type: Transform -- uid: 22350 - type: Table - components: - - pos: -7.5,-30.5 - parent: 1 - type: Transform -- uid: 22351 - type: PottedPlant3 - components: - - pos: 54.5,-1.5 - parent: 1 - type: Transform -- uid: 22352 - type: PottedPlant5 - components: - - pos: 50.5,-1.5 - parent: 1 - type: Transform -- uid: 22353 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 32.5,-18.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22354 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 31.5,-18.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22355 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 30.5,-18.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22356 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 20.5,-18.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22357 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 19.5,-18.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22358 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 18.5,-18.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22359 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22360 - type: ReinforcedWindow - components: - - pos: 24.5,-60.5 - parent: 1 - type: Transform -- uid: 22361 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: -13.5,8.5 - parent: 1 - type: Transform -- uid: 22362 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -17.5,8.5 - parent: 1 - type: Transform -- uid: 22363 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -12.5,5.5 - parent: 1 - type: Transform -- uid: 22364 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -12.5,6.5 - parent: 1 - type: Transform -- uid: 22365 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -12.5,7.5 - parent: 1 - type: Transform -- uid: 22366 - type: DisposalUnit - components: - - pos: -12.5,8.5 - parent: 1 - type: Transform -- uid: 22367 - type: WallSolid - components: - - pos: -21.5,-6.5 - parent: 1 - type: Transform -- uid: 22368 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -24.5,-6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22369 - type: Table - components: - - pos: -24.5,-6.5 - parent: 1 - type: Transform -- uid: 22370 - type: ClothingMaskGas - components: - - pos: -24.43692,-6.4687095 - parent: 1 - type: Transform -- uid: 22371 - type: EmergencyLight - components: - - pos: -17.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 22372 - type: ToiletDirtyWater - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-7.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22373 - type: ClothingUniformJumpsuitJesterAlt - components: - - pos: 62.426746,53.491627 - parent: 1 - type: Transform -- uid: 22374 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 18.5,1.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22375 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 18.5,0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22376 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -45.5,11.5 - parent: 1 - type: Transform -- uid: 22377 - type: DisposalPipe - components: - - pos: -45.5,12.5 - parent: 1 - type: Transform -- uid: 22378 - type: DisposalPipe - components: - - pos: -45.5,13.5 - parent: 1 - type: Transform -- uid: 22379 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -44.5,18.5 - parent: 1 - type: Transform -- uid: 22380 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -45.5,18.5 - parent: 1 - type: Transform -- uid: 22381 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -39.5,23.5 - parent: 1 - type: Transform -- uid: 22382 - type: DisposalPipe - components: - - pos: -45.5,14.5 - parent: 1 - type: Transform -- uid: 22383 - type: DisposalPipe - components: - - pos: -45.5,15.5 - parent: 1 - type: Transform -- uid: 22384 - type: DisposalPipe - components: - - pos: -45.5,16.5 - parent: 1 - type: Transform -- uid: 22385 - type: DisposalPipe - components: - - pos: -45.5,17.5 - parent: 1 - type: Transform -- uid: 22386 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -44.5,17.5 - parent: 1 - type: Transform -- uid: 22387 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -43.5,18.5 - parent: 1 - type: Transform -- uid: 22388 - type: WindoorCommandLocked - components: - - rot: 3.141592653589793 rad - pos: 28.5,-38.5 - parent: 1 - type: Transform -- uid: 22389 - type: CableApcExtension - components: - - pos: 31.5,-42.5 - parent: 1 - type: Transform -- uid: 22390 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: 28.5,-38.5 - parent: 1 - type: Transform -- uid: 22391 - type: ClosetFireFilled - components: - - pos: 2.5,-25.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22392 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 29.5,-38.5 - parent: 1 - type: Transform -- uid: 22393 - type: StoolBar - components: - - name: stool - type: MetaData - - rot: 3.141592653589793 rad - pos: -7.5,3.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22394 - type: Grille - components: - - pos: 26.5,-38.5 - parent: 1 - type: Transform -- uid: 22395 - type: StoolBar - components: - - name: stool - type: MetaData - - rot: 3.141592653589793 rad - pos: -8.5,3.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22396 - type: CableApcExtension - components: - - pos: 23.5,-39.5 - parent: 1 - type: Transform -- uid: 22397 - type: CableApcExtension - components: - - pos: 28.5,-40.5 - parent: 1 - type: Transform -- uid: 22398 - type: CableApcExtension - components: - - pos: 30.5,-42.5 - parent: 1 - type: Transform -- uid: 22399 - type: CableApcExtension - components: - - pos: 28.5,-41.5 - parent: 1 - type: Transform -- uid: 22400 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22401 - type: DrinkWaterCup - components: - - pos: -9.380106,-35.52635 - parent: 1 - type: Transform -- uid: 22402 - type: DrinkWaterCup - components: - - pos: -9.380106,-35.52635 - parent: 1 - type: Transform -- uid: 22403 - type: DrinkWaterCup - components: - - pos: -9.380106,-35.52635 - parent: 1 - type: Transform -- uid: 22404 - type: DrinkWaterCup - components: - - pos: -9.380106,-35.52635 - parent: 1 - type: Transform -- uid: 22405 - type: DrinkWaterCup - components: - - pos: -9.380106,-35.52635 - parent: 1 - type: Transform -- uid: 22406 - type: PosterLegitCarbonDioxide - components: - - pos: 46.5,-55.5 - parent: 1 - type: Transform -- uid: 22407 - type: PosterLegit50thAnniversaryVintageReprint - components: - - pos: 44.5,-34.5 - parent: 1 - type: Transform -- uid: 22408 - type: PosterLegitNanotrasenLogo - components: - - pos: 28.5,-31.5 - parent: 1 - type: Transform -- uid: 22409 - type: PosterLegitNanotrasenLogo - components: - - pos: 25.5,-33.5 - parent: 1 - type: Transform -- uid: 22410 - type: Rack - components: - - pos: 18.5,-27.5 - parent: 1 - type: Transform -- uid: 22411 - type: Table - components: - - pos: 18.5,-30.5 - parent: 1 - type: Transform -- uid: 22412 - type: MaintenanceToolSpawner - components: - - pos: 18.5,-30.5 - parent: 1 - type: Transform -- uid: 22413 - type: MaintenanceWeaponSpawner - components: - - pos: 18.5,-27.5 - parent: 1 - type: Transform -- uid: 22414 - type: RandomPosterContraband - components: - - pos: -24.5,-43.5 - parent: 1 - type: Transform -- uid: 22415 - type: RandomPosterContraband - components: - - pos: -25.5,-37.5 - parent: 1 - type: Transform -- uid: 22416 - type: RandomPosterContraband - components: - - pos: -13.5,-32.5 - parent: 1 - type: Transform -- uid: 22417 - type: RandomPosterContraband - components: - - pos: -15.5,-30.5 - parent: 1 - type: Transform -- uid: 22418 - type: RandomPosterContraband - components: - - pos: 16.5,-49.5 - parent: 1 - type: Transform -- uid: 22419 - type: RandomPosterContraband - components: - - pos: 11.5,-48.5 - parent: 1 - type: Transform -- uid: 22420 - type: RandomPosterContraband - components: - - pos: 12.5,-54.5 - parent: 1 - type: Transform -- uid: 22421 - type: RandomPosterContraband - components: - - pos: 13.5,-63.5 - parent: 1 - type: Transform -- uid: 22422 - type: RandomPosterContraband - components: - - pos: 41.5,-50.5 - parent: 1 - type: Transform -- uid: 22423 - type: RandomPosterContraband - components: - - pos: 37.5,-47.5 - parent: 1 - type: Transform -- uid: 22424 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-32.5 - parent: 1 - type: Transform -- uid: 22425 - type: RandomPosterContraband - components: - - pos: 61.5,-16.5 - parent: 1 - type: Transform -- uid: 22426 - type: RandomPosterContraband - components: - - pos: 55.5,1.5 - parent: 1 - type: Transform -- uid: 22427 - type: PosterContrabandWehWatches - components: - - pos: 55.5,-4.5 - parent: 1 - type: Transform -- uid: 22428 - type: SpawnPointServiceWorker - components: - - pos: -25.5,11.5 - parent: 1 - type: Transform -- uid: 22429 - type: PosterContrabandDDayPromo - components: - - pos: 14.5,33.5 - parent: 1 - type: Transform -- uid: 22430 - type: WallReinforced - components: - - pos: 59.5,50.5 - parent: 1 - type: Transform -- uid: 22431 - type: PosterContrabandKosmicheskayaStantsiya - components: - - pos: -25.5,-63.5 - parent: 1 - type: Transform -- uid: 22432 - type: PosterContrabandPwrGame - components: - - pos: -41.5,-40.5 - parent: 1 - type: Transform -- uid: 22433 - type: PosterContrabandPower - components: - - pos: -61.5,-22.5 - parent: 1 - type: Transform -- uid: 22434 - type: Fireplace - components: - - pos: 12.5,14.5 - parent: 1 - type: Transform -- uid: 22435 - type: PosterContrabandRobustSoftdrinks - components: - - pos: -6.5,-31.5 - parent: 1 - type: Transform -- uid: 22436 - type: PaintingTheGreatWave - components: - - pos: 30.5,-26.5 - parent: 1 - type: Transform -- uid: 22437 - type: Grille - components: - - pos: 20.5,-35.5 - parent: 1 - type: Transform -- uid: 22438 - type: Grille - components: - - pos: 20.5,-36.5 - parent: 1 - type: Transform -- uid: 22439 - type: RandomSpawner - components: - - pos: 22.5,7.5 - parent: 1 - type: Transform -- uid: 22440 - type: RandomSpawner - components: - - pos: 26.5,-18.5 - parent: 1 - type: Transform -- uid: 22441 - type: RandomSpawner - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-27.5 - parent: 1 - type: Transform -- uid: 22442 - type: DisposalTrunk - components: - - pos: 20.5,-39.5 - parent: 1 - type: Transform -- uid: 22443 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-40.5 - parent: 1 - type: Transform -- uid: 22444 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-40.5 - parent: 1 - type: Transform -- uid: 22445 - type: DisposalUnit - components: - - pos: 20.5,-39.5 - parent: 1 - type: Transform -- uid: 22446 - type: PosterLegitSafetyInternals - components: - - pos: 24.5,-54.5 - parent: 1 - type: Transform -- uid: 22447 - type: PosterLegitReportCrimes - components: - - pos: 30.5,-46.5 - parent: 1 - type: Transform -- uid: 22448 - type: SignRedThree - components: - - pos: 39.5,17.5 - parent: 1 - type: Transform -- uid: 22449 - type: PosterLegitStateLaws - components: - - pos: 37.5,-32.5 - parent: 1 - type: Transform -- uid: 22450 - type: PosterContrabandClown - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform -- uid: 22451 - type: PosterContrabandClown - components: - - pos: 3.5,-13.5 - parent: 1 - type: Transform -- uid: 22452 - type: PosterContrabandCommunistState - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform -- uid: 22453 - type: PaintingSkeletonBoof - components: - - pos: 9.5,-3.5 - parent: 1 - type: Transform -- uid: 22454 - type: PaintingMonkey - components: - - pos: 13.5,-9.5 - parent: 1 - type: Transform -- uid: 22455 - type: ToolboxMechanicalFilled - components: - - pos: -26.431704,-19.50094 - parent: 1 - type: Transform -- uid: 22456 - type: SignCanisters - components: - - pos: 47.5,-50.5 - parent: 1 - type: Transform -- uid: 22457 - type: SignConference - components: - - pos: 22.5,-26.5 - parent: 1 - type: Transform -- uid: 22458 - type: SignEngine - components: - - pos: -43.5,-9.5 - parent: 1 - type: Transform -- uid: 22459 - type: SignLaserMed - components: - - pos: -62.5,-22.5 - parent: 1 - type: Transform -- uid: 22460 - type: SignLaserMed - components: - - pos: -70.5,-22.5 - parent: 1 - type: Transform -- uid: 22461 - type: Emitter - components: - - rot: 3.141592653589793 rad - pos: -60.5,-30.5 - parent: 1 - type: Transform -- uid: 22462 - type: SignMagneticsMed - components: - - pos: -47.5,27.5 - parent: 1 - type: Transform -- uid: 22463 - type: SignSomethingOld2 - components: - - pos: -42.5,26.5 - parent: 1 - type: Transform -- uid: 22464 - type: SignSomethingOld - components: - - pos: -29.5,2.5 - parent: 1 - type: Transform -- uid: 22465 - type: CableApcExtension - components: - - pos: 38.5,-60.5 - parent: 1 - type: Transform -- uid: 22466 - type: CableApcExtension - components: - - pos: 38.5,-61.5 - parent: 1 - type: Transform -- uid: 22467 - type: CableApcExtension - components: - - pos: 38.5,-62.5 - parent: 1 - type: Transform -- uid: 22468 - type: CableApcExtension - components: - - pos: 38.5,-63.5 - parent: 1 - type: Transform -- uid: 22469 - type: CableApcExtension - components: - - pos: 38.5,-64.5 - parent: 1 - type: Transform -- uid: 22470 - type: CableApcExtension - components: - - pos: 38.5,-65.5 - parent: 1 - type: Transform -- uid: 22471 - type: CableApcExtension - components: - - pos: 38.5,-66.5 - parent: 1 - type: Transform -- uid: 22472 - type: CableApcExtension - components: - - pos: 38.5,-67.5 - parent: 1 - type: Transform -- uid: 22473 - type: CableApcExtension - components: - - pos: 38.5,-68.5 - parent: 1 - type: Transform -- uid: 22474 - type: CableApcExtension - components: - - pos: 38.5,-69.5 - parent: 1 - type: Transform -- uid: 22475 - type: CableApcExtension - components: - - pos: 38.5,-70.5 - parent: 1 - type: Transform -- uid: 22476 - type: CableApcExtension - components: - - pos: 38.5,-71.5 - parent: 1 - type: Transform -- uid: 22477 - type: CableApcExtension - components: - - pos: 14.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22478 - type: CableApcExtension - components: - - pos: 14.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22479 - type: CableApcExtension - components: - - pos: 14.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22480 - type: CableApcExtension - components: - - pos: 14.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22481 - type: CableApcExtension - components: - - pos: 14.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22482 - type: CableApcExtension - components: - - pos: 14.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22483 - type: CableApcExtension - components: - - pos: 14.5,-58.5 - parent: 1 - type: Transform -- uid: 22484 - type: CableApcExtension - components: - - pos: 10.5,-64.5 - parent: 1 - type: Transform -- uid: 22485 - type: CableApcExtension - components: - - pos: 11.5,-64.5 - parent: 1 - type: Transform -- uid: 22486 - type: CableApcExtension - components: - - pos: 12.5,-64.5 - parent: 1 - type: Transform -- uid: 22487 - type: CableApcExtension - components: - - pos: 12.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22488 - type: CableApcExtension - components: - - pos: 12.5,-62.5 - parent: 1 - type: Transform -- uid: 22489 - type: CableApcExtension - components: - - pos: 12.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22490 - type: CableApcExtension - components: - - pos: 12.5,-60.5 - parent: 1 - type: Transform -- uid: 22491 - type: CableApcExtension - components: - - pos: 12.5,-59.5 - parent: 1 - type: Transform -- uid: 22492 - type: CableApcExtension - components: - - pos: 12.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22493 - type: CableApcExtension - components: - - pos: 12.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22494 - type: CableApcExtension - components: - - pos: 12.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22495 - type: CableApcExtension - components: - - pos: 14.5,-57.5 - parent: 1 - type: Transform -- uid: 22496 - type: CableApcExtension - components: - - pos: 13.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22497 - type: CableApcExtension - components: - - pos: -33.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22498 - type: CableApcExtension - components: - - pos: -33.5,-72.5 - parent: 1 - type: Transform -- uid: 22499 - type: WallReinforced - components: - - pos: -32.5,-73.5 - parent: 1 - type: Transform -- uid: 22500 - type: ChairOfficeDark - components: - - pos: -33.5,-69.5 - parent: 1 - type: Transform -- uid: 22501 - type: ChairFolding - components: - - pos: -34.5,-69.5 - parent: 1 - type: Transform -- uid: 22502 - type: Rack - components: - - pos: -34.5,-72.5 - parent: 1 - type: Transform -- uid: 22503 - type: Rack - components: - - pos: -33.5,-72.5 - parent: 1 - type: Transform -- uid: 22504 - type: DrinkGlass - components: - - pos: -29.533712,-69.34898 - parent: 1 - type: Transform -- uid: 22505 - type: AirAlarm - components: - - pos: -25.5,-56.5 - parent: 1 - type: Transform - - devices: - - 16357 - - 16356 - - 22534 - - 16734 - type: DeviceList -- uid: 22506 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -31.5,-72.5 - parent: 1 - type: Transform -- uid: 22507 - type: AirSensor - components: - - pos: -31.5,-71.5 - parent: 1 - type: Transform -- uid: 22508 - type: TableWood - components: - - pos: -31.5,-73.5 - parent: 1 - type: Transform -- uid: 22509 - type: WallSolid - components: - - pos: -30.5,-68.5 - parent: 1 - type: Transform -- uid: 22510 - type: CableApcExtension - components: - - pos: -26.5,-73.5 - parent: 1 - type: Transform -- uid: 22511 - type: CableApcExtension - components: - - pos: -28.5,-73.5 - parent: 1 - type: Transform -- uid: 22512 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -29.5,-69.5 - parent: 1 - type: Transform -- uid: 22513 - type: CableApcExtension - components: - - pos: -29.5,-72.5 - parent: 1 - type: Transform -- uid: 22514 - type: CableApcExtension - components: - - pos: -29.5,-75.5 - parent: 1 - type: Transform -- uid: 22515 - type: CableApcExtension - components: - - pos: -30.5,-71.5 - parent: 1 - type: Transform -- uid: 22516 - type: CableApcExtension - components: - - pos: -30.5,-70.5 - parent: 1 - type: Transform -- uid: 22517 - type: CableApcExtension - components: - - pos: -30.5,-69.5 - parent: 1 - type: Transform -- uid: 22518 - type: CableApcExtension - components: - - pos: -29.5,-69.5 - parent: 1 - type: Transform -- uid: 22519 - type: CableApcExtension - components: - - pos: -28.5,-69.5 - parent: 1 - type: Transform -- uid: 22520 - type: CableApcExtension - components: - - pos: -27.5,-69.5 - parent: 1 - type: Transform -- uid: 22521 - type: CableApcExtension - components: - - pos: -27.5,-70.5 - parent: 1 - type: Transform -- uid: 22522 - type: CableApcExtension - components: - - pos: -27.5,-71.5 - parent: 1 - type: Transform -- uid: 22523 - type: CableApcExtension - components: - - pos: -27.5,-73.5 - parent: 1 - type: Transform -- uid: 22524 - type: CableApcExtension - components: - - pos: -27.5,-74.5 - parent: 1 - type: Transform -- uid: 22525 - type: CableApcExtension - components: - - pos: -27.5,-75.5 - parent: 1 - type: Transform -- uid: 22526 - type: CableApcExtension - components: - - pos: -28.5,-75.5 - parent: 1 - type: Transform -- uid: 22527 - type: ClothingOuterWinterViro - components: - - pos: -31.470345,-74.22051 - parent: 1 - type: Transform -- uid: 22528 - type: CableApcExtension - components: - - pos: -30.5,-75.5 - parent: 1 - type: Transform -- uid: 22529 - type: CableApcExtension - components: - - pos: -30.5,-74.5 - parent: 1 - type: Transform -- uid: 22530 - type: CableApcExtension - components: - - pos: -30.5,-73.5 - parent: 1 - type: Transform -- uid: 22531 - type: FirelockGlass - components: - - pos: -24.5,-74.5 - parent: 1 - type: Transform -- uid: 22532 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-60.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22533 - type: Poweredlight - components: - - pos: -23.5,-57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22534 - type: AirSensor - components: - - pos: -23.5,-61.5 - parent: 1 - type: Transform -- uid: 22535 - type: VendingMachineCola - components: - - flags: SessionSpecific - type: MetaData - - pos: -27.5,-69.5 - parent: 1 - type: Transform -- uid: 22536 - type: CableApcExtension - components: - - pos: -28.5,-71.5 - parent: 1 - type: Transform -- uid: 22537 - type: WallSolid - components: - - pos: -26.5,-72.5 - parent: 1 - type: Transform -- uid: 22538 - type: WallSolid - components: - - pos: -26.5,-71.5 - parent: 1 - type: Transform -- uid: 22539 - type: Firelock - components: - - pos: -35.5,-70.5 - parent: 1 - type: Transform -- uid: 22540 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 22541 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-73.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22542 - type: CableApcExtension - components: - - pos: -29.5,-72.5 - parent: 1 - type: Transform -- uid: 22543 - type: CableApcExtension - components: - - pos: -29.5,-71.5 - parent: 1 - type: Transform -- uid: 22544 - type: Window - components: - - pos: -30.5,-72.5 - parent: 1 - type: Transform -- uid: 22545 - type: Grille - components: - - pos: -30.5,-72.5 - parent: 1 - type: Transform -- uid: 22546 - type: FirelockGlass - components: - - pos: 3.5,-62.5 - parent: 1 - type: Transform -- uid: 22547 - type: FirelockGlass - components: - - pos: -51.5,-21.5 - parent: 1 - type: Transform -- uid: 22548 - type: FirelockGlass - components: - - pos: -40.5,-11.5 - parent: 1 - type: Transform -- uid: 22549 - type: FirelockGlass - components: - - pos: -43.5,-10.5 - parent: 1 - type: Transform -- uid: 22550 - type: FirelockGlass - components: - - pos: -43.5,-11.5 - parent: 1 - type: Transform -- uid: 22551 - type: AirlockChiefEngineerLocked - components: - - pos: -36.5,-14.5 - parent: 1 - type: Transform -- uid: 22552 - type: FirelockGlass - components: - - pos: -13.5,-51.5 - parent: 1 - type: Transform -- uid: 22553 - type: WallSolid - components: - - pos: 6.5,-55.5 - parent: 1 - type: Transform -- uid: 22554 - type: FirelockGlass - components: - - pos: 22.5,19.5 - parent: 1 - type: Transform -- uid: 22555 - type: Grille - components: - - pos: 10.5,18.5 - parent: 1 - type: Transform -- uid: 22556 - type: Grille - components: - - pos: 12.5,18.5 - parent: 1 - type: Transform -- uid: 22557 - type: Firelock - components: - - pos: 3.5,17.5 - parent: 1 - type: Transform -- uid: 22558 - type: Firelock - components: - - pos: 3.5,16.5 - parent: 1 - type: Transform -- uid: 22559 - type: FirelockGlass - components: - - pos: 6.5,18.5 - parent: 1 - type: Transform -- uid: 22560 - type: FireAlarm - components: - - rot: 1.5707963267948966 rad - pos: 27.5,15.5 - parent: 1 - type: Transform - - devices: - - 9550 - - 2733 - - 4376 - - 1088 - - 8554 - - 7201 - - 6102 - - 2767 - - 10373 - - invalid - - 26147 - - 26144 - type: DeviceList -- uid: 22561 - type: AirlockBrigGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: 43.5,14.5 - parent: 1 - type: Transform -- uid: 22562 - type: AirlockBrigGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: 43.5,15.5 - parent: 1 - type: Transform -- uid: 22563 - type: AirAlarm - components: - - pos: -29.5,-68.5 - parent: 1 - type: Transform -- uid: 22564 - type: FirelockGlass - components: - - pos: -18.5,-74.5 - parent: 1 - type: Transform -- uid: 22565 - type: FirelockGlass - components: - - pos: -20.5,-83.5 - parent: 1 - type: Transform -- uid: 22566 - type: FireAlarm - components: - - pos: -17.5,-68.5 - parent: 1 - type: Transform - - devices: - - 8743 - - 22564 - - 22531 - - invalid - - 164 - - 22231 - type: DeviceList -- uid: 22567 - type: AirSensor - components: - - pos: 42.5,-42.5 - parent: 1 - type: Transform -- uid: 22568 - type: FireAlarm - components: - - pos: 46.5,-40.5 - parent: 1 - type: Transform - - devices: - - 10953 - - 10956 - - 11613 - - 10858 - - 11527 - - 11526 - - 11525 - - 11521 - - 11522 - - invalid - - 22567 - type: DeviceList -- uid: 22569 - type: FirelockGlass - components: - - pos: 54.5,-44.5 - parent: 1 - type: Transform -- uid: 22570 - type: FirelockGlass - components: - - pos: 54.5,-45.5 - parent: 1 - type: Transform -- uid: 22571 - type: FirelockGlass - components: - - pos: 58.5,-44.5 - parent: 1 - type: Transform -- uid: 22572 - type: FirelockGlass - components: - - pos: 58.5,-45.5 - parent: 1 - type: Transform -- uid: 22573 - type: AirlockMaintLocked - components: - - pos: 11.5,32.5 - parent: 1 - type: Transform -- uid: 22574 - type: WallSolid - components: - - pos: -17.5,32.5 - parent: 1 - type: Transform -- uid: 22575 - type: WallSolid - components: - - pos: -18.5,32.5 - parent: 1 - type: Transform -- uid: 22576 - type: WallSolid - components: - - pos: -19.5,32.5 - parent: 1 - type: Transform -- uid: 22577 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 39.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22578 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 39.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22579 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 46.5,50.5 - parent: 1 - type: Transform -- uid: 22580 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 45.5,50.5 - parent: 1 - type: Transform -- uid: 22581 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 44.5,50.5 - parent: 1 - type: Transform -- uid: 22582 - type: WallSolid - components: - - pos: 44.5,47.5 - parent: 1 - type: Transform -- uid: 22583 - type: WallSolid - components: - - pos: 44.5,48.5 - parent: 1 - type: Transform -- uid: 22584 - type: WallReinforced - components: - - pos: 48.5,44.5 - parent: 1 - type: Transform -- uid: 22585 - type: WallReinforced - components: - - pos: 47.5,44.5 - parent: 1 - type: Transform -- uid: 22586 - type: WallReinforced - components: - - pos: 47.5,43.5 - parent: 1 - type: Transform -- uid: 22587 - type: ReinforcedWindow - components: - - pos: 46.5,43.5 - parent: 1 - type: Transform -- uid: 22588 - type: WallReinforced - components: - - pos: 45.5,43.5 - parent: 1 - type: Transform -- uid: 22589 - type: WallReinforced - components: - - pos: 44.5,43.5 - parent: 1 - type: Transform -- uid: 22590 - type: WallReinforced - components: - - pos: 59.5,51.5 - parent: 1 - type: Transform -- uid: 22591 - type: WallReinforced - components: - - pos: 59.5,52.5 - parent: 1 - type: Transform -- uid: 22592 - type: WallReinforced - components: - - pos: 59.5,53.5 - parent: 1 - type: Transform -- uid: 22593 - type: WallReinforced - components: - - pos: 58.5,53.5 - parent: 1 - type: Transform -- uid: 22594 - type: WallReinforced - components: - - pos: 57.5,53.5 - parent: 1 - type: Transform -- uid: 22595 - type: WallReinforced - components: - - pos: 51.5,53.5 - parent: 1 - type: Transform -- uid: 22596 - type: WallReinforced - components: - - pos: 50.5,53.5 - parent: 1 - type: Transform -- uid: 22597 - type: WallReinforced - components: - - pos: 49.5,53.5 - parent: 1 - type: Transform -- uid: 22598 - type: WallReinforced - components: - - pos: 49.5,52.5 - parent: 1 - type: Transform -- uid: 22599 - type: WallReinforced - components: - - pos: 49.5,51.5 - parent: 1 - type: Transform -- uid: 22600 - type: AirlockMaintGlass - components: - - pos: 54.5,40.5 - parent: 1 - type: Transform -- uid: 22601 - type: AirlockMaintGlass - components: - - pos: 54.5,54.5 - parent: 1 - type: Transform -- uid: 22602 - type: Table - components: - - pos: 53.5,60.5 - parent: 1 - type: Transform -- uid: 22603 - type: Table - components: - - pos: 54.5,60.5 - parent: 1 - type: Transform -- uid: 22604 - type: Table - components: - - pos: 55.5,60.5 - parent: 1 - type: Transform -- uid: 22605 - type: ClothingHandsGlovesColorYellow - components: - - pos: 54.45896,60.637554 - parent: 1 - type: Transform -- uid: 22606 - type: AirSensor - components: - - pos: 30.5,-83.5 - parent: 1 - type: Transform -- uid: 22607 - type: Crowbar - components: - - rot: 6.283185307179586 rad - pos: 57.539654,47.47334 - parent: 1 - type: Transform -- uid: 22608 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 55.5,39.5 - parent: 1 - type: Transform -- uid: 22609 - type: WallSolid - components: - - pos: 53.5,39.5 - parent: 1 - type: Transform -- uid: 22610 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 55.5,38.5 - parent: 1 - type: Transform -- uid: 22611 - type: WallSolid - components: - - pos: 53.5,38.5 - parent: 1 - type: Transform -- uid: 22612 - type: WallSolid - components: - - pos: 52.5,38.5 - parent: 1 - type: Transform -- uid: 22613 - type: WallSolid - components: - - pos: 51.5,38.5 - parent: 1 - type: Transform -- uid: 22614 - type: WallSolid - components: - - pos: 50.5,38.5 - parent: 1 - type: Transform -- uid: 22615 - type: BannerRevolution - components: - - pos: 55.5,58.5 - parent: 1 - type: Transform -- uid: 22616 - type: WallSolid - components: - - pos: 55.5,36.5 - parent: 1 - type: Transform -- uid: 22617 - type: WallSolid - components: - - pos: 55.5,35.5 - parent: 1 - type: Transform -- uid: 22618 - type: WallSolid - components: - - pos: 55.5,34.5 - parent: 1 - type: Transform -- uid: 22619 - type: WallSolid - components: - - pos: 54.5,34.5 - parent: 1 - type: Transform -- uid: 22620 - type: WallSolid - components: - - pos: 53.5,34.5 - parent: 1 - type: Transform -- uid: 22621 - type: WallSolid - components: - - pos: 51.5,34.5 - parent: 1 - type: Transform -- uid: 22622 - type: WallSolid - components: - - pos: 50.5,34.5 - parent: 1 - type: Transform -- uid: 22623 - type: WallSolid - components: - - pos: 50.5,35.5 - parent: 1 - type: Transform -- uid: 22624 - type: WallSolid - components: - - pos: 50.5,36.5 - parent: 1 - type: Transform -- uid: 22625 - type: WallSolid - components: - - pos: 50.5,37.5 - parent: 1 - type: Transform -- uid: 22626 - type: WallSolid - components: - - pos: 51.5,33.5 - parent: 1 - type: Transform -- uid: 22627 - type: WallSolid - components: - - pos: 51.5,32.5 - parent: 1 - type: Transform -- uid: 22628 - type: WallSolid - components: - - pos: 53.5,33.5 - parent: 1 - type: Transform -- uid: 22629 - type: WallSolid - components: - - pos: 53.5,32.5 - parent: 1 - type: Transform -- uid: 22630 - type: WallSolid - components: - - pos: 53.5,31.5 - parent: 1 - type: Transform -- uid: 22631 - type: WallSolid - components: - - pos: 53.5,30.5 - parent: 1 - type: Transform -- uid: 22632 - type: WallSolid - components: - - pos: 52.5,30.5 - parent: 1 - type: Transform -- uid: 22633 - type: WallSolid - components: - - pos: 51.5,30.5 - parent: 1 - type: Transform -- uid: 22634 - type: WallSolid - components: - - pos: 49.5,30.5 - parent: 1 - type: Transform -- uid: 22635 - type: WallSolid - components: - - pos: 50.5,30.5 - parent: 1 - type: Transform -- uid: 22636 - type: WallSolid - components: - - pos: 49.5,34.5 - parent: 1 - type: Transform -- uid: 22637 - type: WallSolid - components: - - pos: 48.5,34.5 - parent: 1 - type: Transform -- uid: 22638 - type: WallSolid - components: - - pos: 47.5,30.5 - parent: 1 - type: Transform -- uid: 22639 - type: WallSolid - components: - - pos: 47.5,29.5 - parent: 1 - type: Transform -- uid: 22640 - type: WallSolid - components: - - pos: 47.5,28.5 - parent: 1 - type: Transform -- uid: 22641 - type: WallSolid - components: - - pos: 47.5,27.5 - parent: 1 - type: Transform -- uid: 22642 - type: WallSolid - components: - - pos: 49.5,27.5 - parent: 1 - type: Transform -- uid: 22643 - type: WallSolid - components: - - pos: 50.5,27.5 - parent: 1 - type: Transform -- uid: 22644 - type: WallSolid - components: - - pos: 51.5,27.5 - parent: 1 - type: Transform -- uid: 22645 - type: WallSolid - components: - - pos: 51.5,28.5 - parent: 1 - type: Transform -- uid: 22646 - type: WallSolid - components: - - pos: 51.5,29.5 - parent: 1 - type: Transform -- uid: 22647 - type: WallReinforced - components: - - pos: 61.5,30.5 - parent: 1 - type: Transform -- uid: 22648 - type: WallSolid - components: - - pos: 60.5,27.5 - parent: 1 - type: Transform -- uid: 22649 - type: WallSolid - components: - - pos: 59.5,27.5 - parent: 1 - type: Transform -- uid: 22650 - type: WallSolid - components: - - pos: 57.5,27.5 - parent: 1 - type: Transform -- uid: 22651 - type: WallSolid - components: - - pos: 56.5,27.5 - parent: 1 - type: Transform -- uid: 22652 - type: WallSolid - components: - - pos: 61.5,29.5 - parent: 1 - type: Transform -- uid: 22653 - type: WallSolid - components: - - pos: 61.5,28.5 - parent: 1 - type: Transform -- uid: 22654 - type: WallSolid - components: - - pos: 61.5,27.5 - parent: 1 - type: Transform -- uid: 22655 - type: AirlockMaintGlassLocked - components: - - pos: 57.5,30.5 - parent: 1 - type: Transform -- uid: 22656 - type: WallSolid - components: - - pos: 59.5,30.5 - parent: 1 - type: Transform -- uid: 22657 - type: WallSolid - components: - - pos: 58.5,30.5 - parent: 1 - type: Transform -- uid: 22658 - type: WallSolid - components: - - pos: 56.5,30.5 - parent: 1 - type: Transform -- uid: 22659 - type: WallSolid - components: - - pos: 56.5,29.5 - parent: 1 - type: Transform -- uid: 22660 - type: WallSolid - components: - - pos: 56.5,28.5 - parent: 1 - type: Transform -- uid: 22661 - type: WallSolid - components: - - pos: 54.5,30.5 - parent: 1 - type: Transform -- uid: 22662 - type: WallSolid - components: - - pos: 55.5,30.5 - parent: 1 - type: Transform -- uid: 22663 - type: WallReinforced - components: - - pos: 59.5,31.5 - parent: 1 - type: Transform -- uid: 22664 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 59.5,33.5 - parent: 1 - type: Transform -- uid: 22665 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 59.5,32.5 - parent: 1 - type: Transform -- uid: 22666 - type: WallReinforced - components: - - pos: 59.5,34.5 - parent: 1 - type: Transform -- uid: 22667 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 58.5,35.5 - parent: 1 - type: Transform -- uid: 22668 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 57.5,35.5 - parent: 1 - type: Transform -- uid: 22669 - type: BannerRevolution - components: - - pos: 53.5,58.5 - parent: 1 - type: Transform -- uid: 22670 - type: ChairPilotSeat - components: - - pos: 54.5,58.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22671 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 44.5,19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22672 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22673 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22674 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,23.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22675 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,24.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22676 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22677 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 45.5,26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22678 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22679 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22680 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22681 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22682 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22683 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 44.5,20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22684 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 45.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22685 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 44.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22686 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22687 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22688 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22689 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22690 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22691 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22692 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22693 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22694 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22695 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 52.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22696 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22697 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 48.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22698 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 49.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22699 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 50.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22700 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 51.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22701 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 52.5,27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22702 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 54.5,26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22703 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22704 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22705 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22706 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22707 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22708 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22709 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22710 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22711 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22712 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22713 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22714 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22715 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22716 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22717 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22718 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22719 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,28.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22720 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22721 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22722 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22723 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22724 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22725 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22726 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22727 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22728 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22729 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22730 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22731 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22732 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22733 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22734 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 54.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22735 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 52.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22736 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22737 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22738 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22739 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22740 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22741 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22742 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 54.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22743 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22744 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22745 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22746 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22747 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 54.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22748 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22749 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22750 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22751 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22752 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22753 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 52.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22754 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22755 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22756 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22757 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22758 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 22759 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 52.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22760 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 51.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22761 - type: GasVentScrubber - components: - - pos: 52.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22762 - type: GasVentPump - components: - - pos: 54.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22763 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 55.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 22764 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 49.5,29.5 - parent: 1 - type: Transform -- uid: 22765 - type: AirlockEngineeringLocked - components: - - rot: -1.5707963267948966 rad - pos: 49.5,28.5 - parent: 1 - type: Transform -- uid: 22766 - type: SubstationBasic - components: - - pos: 50.5,29.5 - parent: 1 - type: Transform -- uid: 22767 - type: CableHV - components: - - pos: 33.5,22.5 - parent: 1 - type: Transform -- uid: 22768 - type: CableHV - components: - - pos: 34.5,22.5 - parent: 1 - type: Transform -- uid: 22769 - type: CableHV - components: - - pos: 35.5,22.5 - parent: 1 - type: Transform -- uid: 22770 - type: CableHV - components: - - pos: 36.5,22.5 - parent: 1 - type: Transform -- uid: 22771 - type: CableHV - components: - - pos: 36.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22772 - type: CableHV - components: - - pos: 37.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22773 - type: CableHV - components: - - pos: 38.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22774 - type: CableHV - components: - - pos: 39.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22775 - type: CableHV - components: - - pos: 40.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22776 - type: CableHV - components: - - pos: 41.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22777 - type: CableHV - components: - - pos: 42.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22778 - type: CableHV - components: - - pos: 43.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22779 - type: CableHV - components: - - pos: 44.5,23.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22780 - type: CableHV - components: - - pos: 44.5,24.5 - parent: 1 - type: Transform -- uid: 22781 - type: CableHV - components: - - pos: 44.5,25.5 - parent: 1 - type: Transform -- uid: 22782 - type: CableHV - components: - - pos: 44.5,26.5 - parent: 1 - type: Transform -- uid: 22783 - type: CableHV - components: - - pos: 45.5,26.5 - parent: 1 - type: Transform -- uid: 22784 - type: CableHV - components: - - pos: 46.5,26.5 - parent: 1 - type: Transform -- uid: 22785 - type: CableHV - components: - - pos: 47.5,26.5 - parent: 1 - type: Transform -- uid: 22786 - type: CableHV - components: - - pos: 48.5,26.5 - parent: 1 - type: Transform -- uid: 22787 - type: CableHV - components: - - pos: 48.5,27.5 - parent: 1 - type: Transform -- uid: 22788 - type: CableHV - components: - - pos: 48.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22789 - type: CableHV - components: - - pos: 49.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22790 - type: CableHV - components: - - pos: 50.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22791 - type: CableHV - components: - - pos: 50.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22792 - type: CableMV - components: - - pos: 50.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22793 - type: CableMV - components: - - pos: 50.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22794 - type: CableMV - components: - - pos: 49.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22795 - type: CableMV - components: - - pos: 48.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22796 - type: CableMV - components: - - pos: 48.5,29.5 - parent: 1 - type: Transform -- uid: 22797 - type: CableMV - components: - - pos: 48.5,30.5 - parent: 1 - type: Transform -- uid: 22798 - type: CableMV - components: - - pos: 48.5,31.5 - parent: 1 - type: Transform -- uid: 22799 - type: CableMV - components: - - pos: 49.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22800 - type: CableMV - components: - - pos: 50.5,31.5 - parent: 1 - type: Transform -- uid: 22801 - type: CableMV - components: - - pos: 51.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22802 - type: CableMV - components: - - pos: 52.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22803 - type: CableMV - components: - - pos: 52.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22804 - type: CableMV - components: - - pos: 52.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22805 - type: CableMV - components: - - pos: 52.5,34.5 - parent: 1 - type: Transform -- uid: 22806 - type: CableMV - components: - - pos: 52.5,35.5 - parent: 1 - type: Transform -- uid: 22807 - type: CableMV - components: - - pos: 52.5,36.5 - parent: 1 - type: Transform -- uid: 22808 - type: CableMV - components: - - pos: 52.5,37.5 - parent: 1 - type: Transform -- uid: 22809 - type: CableMV - components: - - pos: 52.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22810 - type: APCBasic - components: - - pos: 52.5,38.5 - parent: 1 - type: Transform -- uid: 22811 - type: CableApcExtension - components: - - pos: 52.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22812 - type: CableApcExtension - components: - - pos: 52.5,37.5 - parent: 1 - type: Transform -- uid: 22813 - type: CableApcExtension - components: - - pos: 52.5,36.5 - parent: 1 - type: Transform -- uid: 22814 - type: CableApcExtension - components: - - pos: 52.5,35.5 - parent: 1 - type: Transform -- uid: 22815 - type: CableApcExtension - components: - - pos: 52.5,34.5 - parent: 1 - type: Transform -- uid: 22816 - type: CableApcExtension - components: - - pos: 52.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22817 - type: CableApcExtension - components: - - pos: 52.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22818 - type: CableApcExtension - components: - - pos: 52.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22819 - type: CableApcExtension - components: - - pos: 51.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22820 - type: CableApcExtension - components: - - pos: 50.5,31.5 - parent: 1 - type: Transform -- uid: 22821 - type: CableApcExtension - components: - - pos: 49.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22822 - type: CableApcExtension - components: - - pos: 48.5,31.5 - parent: 1 - type: Transform -- uid: 22823 - type: CableApcExtension - components: - - pos: 48.5,30.5 - parent: 1 - type: Transform -- uid: 22824 - type: CableApcExtension - components: - - pos: 48.5,29.5 - parent: 1 - type: Transform -- uid: 22825 - type: CableApcExtension - components: - - pos: 48.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22826 - type: CableApcExtension - components: - - pos: 53.5,37.5 - parent: 1 - type: Transform -- uid: 22827 - type: CableApcExtension - components: - - pos: 54.5,37.5 - parent: 1 - type: Transform -- uid: 22828 - type: CableApcExtension - components: - - pos: 55.5,37.5 - parent: 1 - type: Transform -- uid: 22829 - type: CableApcExtension - components: - - pos: 56.5,37.5 - parent: 1 - type: Transform -- uid: 22830 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-65.5 - parent: 1 - type: Transform -- uid: 22831 - type: CableApcExtension - components: - - pos: 56.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22832 - type: WallReinforced - components: - - pos: 10.5,-36.5 - parent: 1 - type: Transform -- uid: 22833 - type: CableApcExtension - components: - - pos: 56.5,33.5 - parent: 1 - type: Transform -- uid: 22834 - type: CableApcExtension - components: - - pos: 56.5,32.5 - parent: 1 - type: Transform -- uid: 22835 - type: CableApcExtension - components: - - pos: 56.5,31.5 - parent: 1 - type: Transform -- uid: 22836 - type: CableApcExtension - components: - - pos: 57.5,31.5 - parent: 1 - type: Transform -- uid: 22837 - type: CableApcExtension - components: - - pos: 57.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22838 - type: CableApcExtension - components: - - pos: 57.5,29.5 - parent: 1 - type: Transform -- uid: 22839 - type: CableApcExtension - components: - - pos: 57.5,28.5 - parent: 1 - type: Transform -- uid: 22840 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 57.5,38.5 - parent: 1 - type: Transform -- uid: 22841 - type: CableApcExtension - components: - - pos: 54.5,38.5 - parent: 1 - type: Transform -- uid: 22842 - type: CableApcExtension - components: - - pos: 54.5,39.5 - parent: 1 - type: Transform -- uid: 22843 - type: CableApcExtension - components: - - pos: 54.5,40.5 - parent: 1 - type: Transform -- uid: 22844 - type: CableApcExtension - components: - - pos: 54.5,41.5 - parent: 1 - type: Transform -- uid: 22845 - type: CableApcExtension - components: - - pos: 54.5,42.5 - parent: 1 - type: Transform -- uid: 22846 - type: CableApcExtension - components: - - pos: 54.5,43.5 - parent: 1 - type: Transform -- uid: 22847 - type: CableApcExtension - components: - - pos: 54.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22848 - type: CableApcExtension - components: - - pos: 54.5,45.5 - parent: 1 - type: Transform -- uid: 22849 - type: CableApcExtension - components: - - pos: 54.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22850 - type: CableApcExtension - components: - - pos: 54.5,47.5 - parent: 1 - type: Transform -- uid: 22851 - type: CableApcExtension - components: - - pos: 54.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22852 - type: CableApcExtension - components: - - pos: 54.5,49.5 - parent: 1 - type: Transform -- uid: 22853 - type: CableApcExtension - components: - - pos: 54.5,50.5 - parent: 1 - type: Transform -- uid: 22854 - type: CableApcExtension - components: - - pos: 53.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22855 - type: CableApcExtension - components: - - pos: 52.5,42.5 - parent: 1 - type: Transform -- uid: 22856 - type: CableApcExtension - components: - - pos: 51.5,42.5 - parent: 1 - type: Transform -- uid: 22857 - type: CableApcExtension - components: - - pos: 51.5,43.5 - parent: 1 - type: Transform -- uid: 22858 - type: CableApcExtension - components: - - pos: 51.5,44.5 - parent: 1 - type: Transform -- uid: 22859 - type: CableApcExtension - components: - - pos: 51.5,45.5 - parent: 1 - type: Transform -- uid: 22860 - type: CableApcExtension - components: - - pos: 51.5,46.5 - parent: 1 - type: Transform -- uid: 22861 - type: CableApcExtension - components: - - pos: 51.5,47.5 - parent: 1 - type: Transform -- uid: 22862 - type: CableApcExtension - components: - - pos: 51.5,48.5 - parent: 1 - type: Transform -- uid: 22863 - type: CableApcExtension - components: - - pos: 51.5,49.5 - parent: 1 - type: Transform -- uid: 22864 - type: CableApcExtension - components: - - pos: 51.5,50.5 - parent: 1 - type: Transform -- uid: 22865 - type: CableApcExtension - components: - - pos: 55.5,42.5 - parent: 1 - type: Transform -- uid: 22866 - type: CableApcExtension - components: - - pos: 56.5,42.5 - parent: 1 - type: Transform -- uid: 22867 - type: CableApcExtension - components: - - pos: 57.5,42.5 - parent: 1 - type: Transform -- uid: 22868 - type: CableApcExtension - components: - - pos: 57.5,43.5 - parent: 1 - type: Transform -- uid: 22869 - type: CableApcExtension - components: - - pos: 57.5,44.5 - parent: 1 - type: Transform -- uid: 22870 - type: CableApcExtension - components: - - pos: 57.5,45.5 - parent: 1 - type: Transform -- uid: 22871 - type: CableApcExtension - components: - - pos: 57.5,46.5 - parent: 1 - type: Transform -- uid: 22872 - type: CableApcExtension - components: - - pos: 57.5,47.5 - parent: 1 - type: Transform -- uid: 22873 - type: CableApcExtension - components: - - pos: 57.5,48.5 - parent: 1 - type: Transform -- uid: 22874 - type: CableApcExtension - components: - - pos: 57.5,49.5 - parent: 1 - type: Transform -- uid: 22875 - type: CableApcExtension - components: - - pos: 57.5,50.5 - parent: 1 - type: Transform -- uid: 22876 - type: CableApcExtension - components: - - pos: 56.5,50.5 - parent: 1 - type: Transform -- uid: 22877 - type: CableApcExtension - components: - - pos: 55.5,50.5 - parent: 1 - type: Transform -- uid: 22878 - type: CableApcExtension - components: - - pos: 53.5,50.5 - parent: 1 - type: Transform -- uid: 22879 - type: CableApcExtension - components: - - pos: 52.5,50.5 - parent: 1 - type: Transform -- uid: 22880 - type: CableApcExtension - components: - - pos: 56.5,51.5 - parent: 1 - type: Transform -- uid: 22881 - type: CableApcExtension - components: - - pos: 56.5,52.5 - parent: 1 - type: Transform -- uid: 22882 - type: CableApcExtension - components: - - pos: 52.5,51.5 - parent: 1 - type: Transform -- uid: 22883 - type: CableApcExtension - components: - - pos: 52.5,52.5 - parent: 1 - type: Transform -- uid: 22884 - type: CableApcExtension - components: - - pos: 56.5,53.5 - parent: 1 - type: Transform -- uid: 22885 - type: CableApcExtension - components: - - pos: 55.5,53.5 - parent: 1 - type: Transform -- uid: 22886 - type: CableApcExtension - components: - - pos: 54.5,53.5 - parent: 1 - type: Transform -- uid: 22887 - type: CableApcExtension - components: - - pos: 52.5,53.5 - parent: 1 - type: Transform -- uid: 22888 - type: CableApcExtension - components: - - pos: 53.5,53.5 - parent: 1 - type: Transform -- uid: 22889 - type: CableApcExtension - components: - - pos: 54.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22890 - type: CableApcExtension - components: - - pos: 54.5,55.5 - parent: 1 - type: Transform -- uid: 22891 - type: CableApcExtension - components: - - pos: 54.5,57.5 - parent: 1 - type: Transform -- uid: 22892 - type: CableApcExtension - components: - - pos: 54.5,56.5 - parent: 1 - type: Transform -- uid: 22893 - type: CableApcExtension - components: - - pos: 54.5,58.5 - parent: 1 - type: Transform -- uid: 22894 - type: CableApcExtension - components: - - pos: 54.5,59.5 - parent: 1 - type: Transform -- uid: 22895 - type: CableApcExtension - components: - - pos: 53.5,57.5 - parent: 1 - type: Transform -- uid: 22896 - type: CableApcExtension - components: - - pos: 52.5,57.5 - parent: 1 - type: Transform -- uid: 22897 - type: CableApcExtension - components: - - pos: 51.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22898 - type: CableApcExtension - components: - - pos: 55.5,57.5 - parent: 1 - type: Transform -- uid: 22899 - type: CableApcExtension - components: - - pos: 56.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22900 - type: CableApcExtension - components: - - pos: 57.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22901 - type: CableApcExtension - components: - - pos: 58.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22902 - type: CableApcExtension - components: - - pos: 58.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22903 - type: CableApcExtension - components: - - pos: 58.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22904 - type: CableApcExtension - components: - - pos: 50.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22905 - type: CableApcExtension - components: - - pos: 50.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22906 - type: CableApcExtension - components: - - pos: 50.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22907 - type: CableApcExtension - components: - - pos: 54.5,60.5 - parent: 1 - type: Transform -- uid: 22908 - type: CableApcExtension - components: - - pos: 54.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22909 - type: CableApcExtension - components: - - pos: 53.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22910 - type: CableApcExtension - components: - - pos: 55.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22911 - type: CableApcExtension - components: - - pos: 50.5,45.5 - parent: 1 - type: Transform -- uid: 22912 - type: CableApcExtension - components: - - pos: 49.5,45.5 - parent: 1 - type: Transform -- uid: 22913 - type: CableApcExtension - components: - - pos: 48.5,45.5 - parent: 1 - type: Transform -- uid: 22914 - type: CableApcExtension - components: - - pos: 47.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22915 - type: CableApcExtension - components: - - pos: 46.5,45.5 - parent: 1 - type: Transform -- uid: 22916 - type: CableApcExtension - components: - - pos: 45.5,45.5 - parent: 1 - type: Transform -- uid: 22917 - type: CableApcExtension - components: - - pos: 44.5,45.5 - parent: 1 - type: Transform -- uid: 22918 - type: CableApcExtension - components: - - pos: 58.5,45.5 - parent: 1 - type: Transform -- uid: 22919 - type: CableApcExtension - components: - - pos: 59.5,45.5 - parent: 1 - type: Transform -- uid: 22920 - type: CableApcExtension - components: - - pos: 60.5,45.5 - parent: 1 - type: Transform -- uid: 22921 - type: CableApcExtension - components: - - pos: 60.5,46.5 - parent: 1 - type: Transform -- uid: 22922 - type: CableApcExtension - components: - - pos: 60.5,47.5 - parent: 1 - type: Transform -- uid: 22923 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 57.5,58.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22924 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 57.5,57.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22925 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 57.5,56.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22926 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 51.5,58.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22927 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 51.5,57.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22928 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 51.5,56.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22929 - type: hydroponicsTray - components: - - pos: 52.5,55.5 - parent: 1 - type: Transform -- uid: 22930 - type: hydroponicsTray - components: - - pos: 56.5,55.5 - parent: 1 - type: Transform -- uid: 22931 - type: CrateServiceSmokeables - components: - - pos: 56.5,59.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22932 - type: HydroponicsToolMiniHoe - components: - - pos: 55.4544,56.501 - parent: 1 - type: Transform -- uid: 22933 - type: HydroponicsToolSpade - components: - - pos: 55.54815,56.53225 - parent: 1 - type: Transform -- uid: 22934 - type: ClothingMaskClown - components: - - pos: 52.5169,59.485374 - parent: 1 - type: Transform -- uid: 22935 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22936 - type: CableMV - components: - - pos: 48.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22937 - type: PoweredSmallLight - components: - - pos: 56.5,59.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22938 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 52.5,55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22939 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 58.5,42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22940 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 61.5,41.5 - parent: 1 - type: Transform -- uid: 22941 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 60.5,41.5 - parent: 1 - type: Transform -- uid: 22942 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 59.5,43.5 - parent: 1 - type: Transform -- uid: 22943 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 59.5,43.5 - parent: 1 - type: Transform -- uid: 22944 - type: CableMV - components: - - pos: 52.5,39.5 - parent: 1 - type: Transform -- uid: 22945 - type: CableMV - components: - - pos: 52.5,40.5 - parent: 1 - type: Transform -- uid: 22946 - type: CableMV - components: - - pos: 52.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22947 - type: CableMV - components: - - pos: 52.5,42.5 - parent: 1 - type: Transform -- uid: 22948 - type: CableMV - components: - - pos: 53.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22949 - type: CableMV - components: - - pos: 54.5,42.5 - parent: 1 - type: Transform -- uid: 22950 - type: CableMV - components: - - pos: 55.5,42.5 - parent: 1 - type: Transform -- uid: 22951 - type: CableMV - components: - - pos: 56.5,42.5 - parent: 1 - type: Transform -- uid: 22952 - type: CableMV - components: - - pos: 57.5,42.5 - parent: 1 - type: Transform -- uid: 22953 - type: CableMV - components: - - pos: 58.5,42.5 - parent: 1 - type: Transform -- uid: 22954 - type: CableMV - components: - - pos: 58.5,43.5 - parent: 1 - type: Transform -- uid: 22955 - type: CableMV - components: - - pos: 59.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 22956 - type: DogBed - components: - - name: bear bed - type: MetaData - - pos: 65.5,49.5 - parent: 1 - type: Transform -- uid: 22957 - type: FoodMeat - components: - - pos: 64.3404,48.319218 - parent: 1 - type: Transform -- uid: 22958 - type: CrateMousetrapBoxes - components: - - pos: 60.5,42.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22959 - type: PaperRolling - components: - - pos: 51.67759,57.788548 - parent: 1 - type: Transform -- uid: 22960 - type: Table - components: - - pos: 57.5,42.5 - parent: 1 - type: Transform -- uid: 22961 - type: Table - components: - - pos: 56.5,42.5 - parent: 1 - type: Transform -- uid: 22962 - type: Table - components: - - pos: 55.5,42.5 - parent: 1 - type: Transform -- uid: 22963 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -11.5,23.5 - parent: 1 - type: Transform -- uid: 22964 - type: Table - components: - - pos: 50.5,42.5 - parent: 1 - type: Transform -- uid: 22965 - type: SignalSwitch - components: - - pos: 54.5,51.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 20586 - - port: Open - uid: 20291 - - port: Open - uid: 20609 - Off: - - port: Close - uid: 20586 - - port: Close - uid: 20291 - - port: Close - uid: 20609 - type: SignalTransmitter -- uid: 22966 - type: Table - components: - - pos: 58.5,52.5 - parent: 1 - type: Transform -- uid: 22967 - type: Table - components: - - pos: 58.5,51.5 - parent: 1 - type: Transform -- uid: 22968 - type: MedkitBruteFilled - components: - - pos: 55.59084,42.504738 - parent: 1 - type: Transform -- uid: 22969 - type: Wrench - components: - - pos: 56.276398,42.55694 - parent: 1 - type: Transform -- uid: 22970 - type: SheetSteel - components: - - pos: 58.50727,52.410095 - parent: 1 - type: Transform -- uid: 22971 - type: PosterContrabandRise - components: - - pos: 57.5,53.5 - parent: 1 - type: Transform -- uid: 22972 - type: TableCarpet - components: - - pos: 53.5,29.5 - parent: 1 - type: Transform -- uid: 22973 - type: TableCarpet - components: - - pos: 53.5,28.5 - parent: 1 - type: Transform -- uid: 22974 - type: TableCarpet - components: - - pos: 54.5,29.5 - parent: 1 - type: Transform -- uid: 22975 - type: TableCarpet - components: - - pos: 54.5,28.5 - parent: 1 - type: Transform -- uid: 22976 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 55.5,29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22977 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 55.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22978 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 52.5,29.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22979 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 52.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 22980 - type: d6Dice - components: - - rot: 1.5707963267948966 rad - pos: 54.383816,29.301033 - parent: 1 - type: Transform -- uid: 22981 - type: d6Dice - components: - - rot: 1.5707963267948966 rad - pos: 54.165066,28.926033 - parent: 1 - type: Transform -- uid: 22982 - type: SpaceCash - components: - - rot: 1.5707963267948966 rad - pos: 53.352566,29.426033 - parent: 1 - type: Transform -- uid: 22983 - type: SpaceCash - components: - - pos: 53.49319,28.910408 - parent: 1 - type: Transform -- uid: 22984 - type: SpaceCash - components: - - pos: 53.58694,28.691658 - parent: 1 - type: Transform -- uid: 22985 - type: Bucket - components: - - pos: 55.53834,27.595942 - parent: 1 - type: Transform -- uid: 22986 - type: Catwalk - components: - - pos: 49.5,26.5 - parent: 1 - type: Transform -- uid: 22987 - type: Catwalk - components: - - pos: 50.5,26.5 - parent: 1 - type: Transform -- uid: 22988 - type: Catwalk - components: - - pos: 51.5,26.5 - parent: 1 - type: Transform -- uid: 22989 - type: Catwalk - components: - - pos: 52.5,26.5 - parent: 1 - type: Transform -- uid: 22990 - type: Catwalk - components: - - pos: 53.5,26.5 - parent: 1 - type: Transform -- uid: 22991 - type: RandomPosterContraband - components: - - pos: 54.5,30.5 - parent: 1 - type: Transform -- uid: 22992 - type: RandomPosterContraband - components: - - pos: 52.5,30.5 - parent: 1 - type: Transform -- uid: 22993 - type: RandomPosterContraband - components: - - pos: 59.5,30.5 - parent: 1 - type: Transform -- uid: 22994 - type: RandomPosterContraband - components: - - pos: 60.5,27.5 - parent: 1 - type: Transform -- uid: 22995 - type: ClosetMaintenanceFilledRandom - components: - - pos: 58.5,29.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 22996 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 51.5,42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 22997 - type: MaintenanceToolSpawner - components: - - pos: 53.5,47.5 - parent: 1 - type: Transform -- uid: 22998 - type: MaintenanceWeaponSpawner - components: - - pos: 51.5,45.5 - parent: 1 - type: Transform -- uid: 22999 - type: PoweredSmallLight - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23000 - type: FoodTinPeachesMaintOpen - components: - - pos: 50.52597,42.757114 - parent: 1 - type: Transform -- uid: 23001 - type: RandomPosterContraband - components: - - pos: 12.5,-13.5 - parent: 1 - type: Transform -- uid: 23002 - type: RandomPosterContraband - components: - - pos: 8.5,-13.5 - parent: 1 - type: Transform -- uid: 23003 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 42.5,42.5 - parent: 1 - type: Transform -- uid: 23004 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 43.5,43.5 - parent: 1 - type: Transform -- uid: 23005 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 49.5,46.5 - parent: 1 - type: Transform -- uid: 23006 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -23.5,32.5 - parent: 1 - type: Transform -- uid: 23007 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -24.5,32.5 - parent: 1 - type: Transform -- uid: 23008 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -25.5,32.5 - parent: 1 - type: Transform -- uid: 23009 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -22.5,28.5 - parent: 1 - type: Transform -- uid: 23010 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -23.5,28.5 - parent: 1 - type: Transform -- uid: 23011 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -24.5,28.5 - parent: 1 - type: Transform -- uid: 23012 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -25.5,28.5 - parent: 1 - type: Transform -- uid: 23013 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -25.5,31.5 - parent: 1 - type: Transform -- uid: 23014 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -25.5,30.5 - parent: 1 - type: Transform -- uid: 23015 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -25.5,29.5 - parent: 1 - type: Transform -- uid: 23016 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -20.5,36.5 - parent: 1 - type: Transform -- uid: 23017 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -19.5,36.5 - parent: 1 - type: Transform -- uid: 23018 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -21.5,36.5 - parent: 1 - type: Transform -- uid: 23019 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -22.5,36.5 - parent: 1 - type: Transform -- uid: 23020 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -22.5,35.5 - parent: 1 - type: Transform -- uid: 23021 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -22.5,33.5 - parent: 1 - type: Transform -- uid: 23022 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -26.5,29.5 - parent: 1 - type: Transform -- uid: 23023 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -27.5,29.5 - parent: 1 - type: Transform -- uid: 23024 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -27.5,30.5 - parent: 1 - type: Transform -- uid: 23025 - type: AirlockEngineeringGlassLocked - components: - - name: electrical storage - type: MetaData - - rot: -1.5707963267948966 rad - pos: -13.5,38.5 - parent: 1 - type: Transform -- uid: 23026 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,37.5 - parent: 1 - type: Transform -- uid: 23027 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -17.5,39.5 - parent: 1 - type: Transform -- uid: 23028 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,39.5 - parent: 1 - type: Transform -- uid: 23029 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -19.5,39.5 - parent: 1 - type: Transform -- uid: 23030 - type: Airlock - components: - - rot: -1.5707963267948966 rad - pos: -21.5,30.5 - parent: 1 - type: Transform -- uid: 23031 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -9.5,31.5 - parent: 1 - type: Transform -- uid: 23032 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -9.5,32.5 - parent: 1 - type: Transform -- uid: 23033 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,31.5 - parent: 1 - type: Transform -- uid: 23034 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,32.5 - parent: 1 - type: Transform -- uid: 23035 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -9.5,36.5 - parent: 1 - type: Transform -- uid: 23036 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -8.5,36.5 - parent: 1 - type: Transform -- uid: 23037 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -13.5,39.5 - parent: 1 - type: Transform -- uid: 23038 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,40.5 - parent: 1 - type: Transform -- uid: 23039 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -12.5,40.5 - parent: 1 - type: Transform -- uid: 23040 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,40.5 - parent: 1 - type: Transform -- uid: 23041 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -7.5,41.5 - parent: 1 - type: Transform -- uid: 23042 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -7.5,40.5 - parent: 1 - type: Transform -- uid: 23043 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -7.5,34.5 - parent: 1 - type: Transform -- uid: 23044 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -7.5,35.5 - parent: 1 - type: Transform -- uid: 23045 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -7.5,36.5 - parent: 1 - type: Transform -- uid: 23046 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: -10.5,43.5 - parent: 1 - type: Transform -- uid: 23047 - type: WallReinforced - components: - - pos: 2.5,59.5 - parent: 1 - type: Transform -- uid: 23048 - type: Grille - components: - - pos: 2.5,51.5 - parent: 1 - type: Transform -- uid: 23049 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -7.5,42.5 - parent: 1 - type: Transform -- uid: 23050 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -10.5,35.5 - parent: 1 - type: Transform -- uid: 23051 - type: Grille - components: - - pos: -14.5,65.5 - parent: 1 - type: Transform -- uid: 23052 - type: WallReinforced - components: - - pos: -18.5,68.5 - parent: 1 - type: Transform -- uid: 23053 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -19.5,52.5 - parent: 1 - type: Transform -- uid: 23054 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -10.5,40.5 - parent: 1 - type: Transform -- uid: 23055 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -9.5,40.5 - parent: 1 - type: Transform -- uid: 23056 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -8.5,40.5 - parent: 1 - type: Transform -- uid: 23057 - type: TableReinforced - components: - - pos: -20.5,49.5 - parent: 1 - type: Transform -- uid: 23058 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -10.5,36.5 - parent: 1 - type: Transform -- uid: 23059 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,36.5 - parent: 1 - type: Transform -- uid: 23060 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -12.5,36.5 - parent: 1 - type: Transform -- uid: 23061 - type: ReinforcedWindow - components: - - pos: -14.5,56.5 - parent: 1 - type: Transform -- uid: 23062 - type: WallReinforced - components: - - pos: -16.5,59.5 - parent: 1 - type: Transform -- uid: 23063 - type: WallReinforced - components: - - pos: -16.5,58.5 - parent: 1 - type: Transform -- uid: 23064 - type: WallReinforced - components: - - pos: -23.5,59.5 - parent: 1 - type: Transform -- uid: 23065 - type: WallReinforced - components: - - pos: -23.5,64.5 - parent: 1 - type: Transform -- uid: 23066 - type: WallReinforced - components: - - pos: -23.5,65.5 - parent: 1 - type: Transform -- uid: 23067 - type: WallReinforced - components: - - pos: -16.5,54.5 - parent: 1 - type: Transform -- uid: 23068 - type: WallReinforced - components: - - pos: -14.5,52.5 - parent: 1 - type: Transform -- uid: 23069 - type: WallReinforced - components: - - pos: -14.5,53.5 - parent: 1 - type: Transform -- uid: 23070 - type: WallReinforced - components: - - pos: -16.5,52.5 - parent: 1 - type: Transform -- uid: 23071 - type: WallReinforced - components: - - pos: -15.5,52.5 - parent: 1 - type: Transform -- uid: 23072 - type: ReinforcedWindow - components: - - pos: -11.5,69.5 - parent: 1 - type: Transform -- uid: 23073 - type: WallReinforced - components: - - pos: -23.5,71.5 - parent: 1 - type: Transform -- uid: 23074 - type: WallReinforced - components: - - pos: -23.5,70.5 - parent: 1 - type: Transform -- uid: 23075 - type: WallReinforced - components: - - pos: -23.5,69.5 - parent: 1 - type: Transform -- uid: 23076 - type: WallReinforced - components: - - pos: -20.5,71.5 - parent: 1 - type: Transform -- uid: 23077 - type: WallReinforced - components: - - pos: -20.5,70.5 - parent: 1 - type: Transform -- uid: 23078 - type: WallReinforced - components: - - pos: -16.5,69.5 - parent: 1 - type: Transform -- uid: 23079 - type: WallReinforced - components: - - pos: -23.5,60.5 - parent: 1 - type: Transform -- uid: 23080 - type: ReinforcedWindow - components: - - pos: -14.5,55.5 - parent: 1 - type: Transform -- uid: 23081 - type: ReinforcedWindow - components: - - pos: -16.5,55.5 - parent: 1 - type: Transform -- uid: 23082 - type: WallReinforced - components: - - pos: -23.5,74.5 - parent: 1 - type: Transform -- uid: 23083 - type: WallReinforced - components: - - pos: -23.5,75.5 - parent: 1 - type: Transform -- uid: 23084 - type: WallReinforced - components: - - pos: -20.5,75.5 - parent: 1 - type: Transform -- uid: 23085 - type: ReinforcedWindow - components: - - pos: -16.5,56.5 - parent: 1 - type: Transform -- uid: 23086 - type: WallReinforced - components: - - pos: -20.5,74.5 - parent: 1 - type: Transform -- uid: 23087 - type: WallReinforced - components: - - pos: -15.5,59.5 - parent: 1 - type: Transform -- uid: 23088 - type: WallReinforced - components: - - pos: -14.5,59.5 - parent: 1 - type: Transform -- uid: 23089 - type: WallReinforced - components: - - pos: -11.5,74.5 - parent: 1 - type: Transform -- uid: 23090 - type: WallReinforced - components: - - pos: -11.5,75.5 - parent: 1 - type: Transform -- uid: 23091 - type: WallReinforced - components: - - pos: -14.5,75.5 - parent: 1 - type: Transform -- uid: 23092 - type: WallReinforced - components: - - pos: -14.5,74.5 - parent: 1 - type: Transform -- uid: 23093 - type: WallReinforced - components: - - pos: -14.5,57.5 - parent: 1 - type: Transform -- uid: 23094 - type: WallReinforced - components: - - pos: -16.5,57.5 - parent: 1 - type: Transform -- uid: 23095 - type: WallReinforced - components: - - pos: -14.5,54.5 - parent: 1 - type: Transform -- uid: 23096 - type: Chair - components: - - pos: -18.5,67.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 23097 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 15.5,49.5 - parent: 1 - type: Transform -- uid: 23098 - type: WindowReinforcedDirectional - components: - - pos: -8.5,-81.5 - parent: 1 - type: Transform -- uid: 23099 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -10.5,-84.5 - parent: 1 - type: Transform -- uid: 23100 - type: WallReinforced - components: - - pos: -23.5,67.5 - parent: 1 - type: Transform -- uid: 23101 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -9.5,-84.5 - parent: 1 - type: Transform -- uid: 23102 - type: WallReinforced - components: - - pos: -23.5,68.5 - parent: 1 - type: Transform -- uid: 23103 - type: Chair - components: - - pos: -16.5,67.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 23104 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -14.5,67.5 - parent: 1 - type: Transform -- uid: 23105 - type: WallReinforced - components: - - pos: -16.5,70.5 - parent: 1 - type: Transform -- uid: 23106 - type: FireAlarm - components: - - pos: -18.5,68.5 - parent: 1 - type: Transform - - devices: - - 23107 - - 30309 - - 30308 - type: DeviceList -- uid: 23107 - type: AirSensor - components: - - pos: -17.5,66.5 - parent: 1 - type: Transform -- uid: 23108 - type: Window - components: - - pos: -14.5,65.5 - parent: 1 - type: Transform -- uid: 23109 - type: Window - components: - - pos: -14.5,62.5 - parent: 1 - type: Transform -- uid: 23110 - type: WallReinforced - components: - - pos: -11.5,66.5 - parent: 1 - type: Transform -- uid: 23111 - type: FirelockGlass - components: - - pos: -12.5,68.5 - parent: 1 - type: Transform -- uid: 23112 - type: WallReinforced - components: - - pos: -23.5,66.5 - parent: 1 - type: Transform -- uid: 23113 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -16.5,64.5 - parent: 1 - type: Transform -- uid: 23114 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -15.5,64.5 - parent: 1 - type: Transform -- uid: 23115 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -14.5,64.5 - parent: 1 - type: Transform -- uid: 23116 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,64.5 - parent: 1 - type: Transform -- uid: 23117 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -19.5,64.5 - parent: 1 - type: Transform -- uid: 23118 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -20.5,64.5 - parent: 1 - type: Transform -- uid: 23119 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -14.5,63.5 - parent: 1 - type: Transform -- uid: 23120 - type: ReinforcedWindow - components: - - pos: -23.5,61.5 - parent: 1 - type: Transform -- uid: 23121 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -14.5,61.5 - parent: 1 - type: Transform -- uid: 23122 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -14.5,60.5 - parent: 1 - type: Transform -- uid: 23123 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -20.5,63.5 - parent: 1 - type: Transform -- uid: 23124 - type: ReinforcedWindow - components: - - pos: -23.5,62.5 - parent: 1 - type: Transform -- uid: 23125 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -20.5,61.5 - parent: 1 - type: Transform -- uid: 23126 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -20.5,60.5 - parent: 1 - type: Transform -- uid: 23127 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -15.5,65.5 - parent: 1 - type: Transform -- uid: 23128 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -18.5,65.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23129 - type: ReinforcedWindow - components: - - pos: -11.5,68.5 - parent: 1 - type: Transform -- uid: 23130 - type: ReinforcedWindow - components: - - pos: -11.5,67.5 - parent: 1 - type: Transform -- uid: 23131 - type: ReinforcedWindow - components: - - pos: -14.5,73.5 - parent: 1 - type: Transform -- uid: 23132 - type: WallReinforced - components: - - pos: -18.5,69.5 - parent: 1 - type: Transform -- uid: 23133 - type: WallReinforced - components: - - pos: -11.5,65.5 - parent: 1 - type: Transform -- uid: 23134 - type: WallReinforced - components: - - pos: -11.5,64.5 - parent: 1 - type: Transform -- uid: 23135 - type: WallReinforced - components: - - pos: -10.5,63.5 - parent: 1 - type: Transform -- uid: 23136 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,62.5 - parent: 1 - type: Transform -- uid: 23137 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,61.5 - parent: 1 - type: Transform -- uid: 23138 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,60.5 - parent: 1 - type: Transform -- uid: 23139 - type: WallReinforced - components: - - pos: -14.5,70.5 - parent: 1 - type: Transform -- uid: 23140 - type: WallReinforced - components: - - pos: -14.5,72.5 - parent: 1 - type: Transform -- uid: 23141 - type: WallReinforced - components: - - pos: -11.5,72.5 - parent: 1 - type: Transform -- uid: 23142 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -20.5,59.5 - parent: 1 - type: Transform -- uid: 23143 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 19.5,44.5 - parent: 1 - type: Transform -- uid: 23144 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,59.5 - parent: 1 - type: Transform -- uid: 23145 - type: WallReinforced - components: - - pos: -11.5,71.5 - parent: 1 - type: Transform -- uid: 23146 - type: WallReinforced - components: - - pos: -11.5,70.5 - parent: 1 - type: Transform -- uid: 23147 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,58.5 - parent: 1 - type: Transform -- uid: 23148 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,57.5 - parent: 1 - type: Transform -- uid: 23149 - type: AsteroidRock - components: - - pos: 66.5,54.5 - parent: 1 - type: Transform -- uid: 23150 - type: AsteroidRock - components: - - pos: 68.5,52.5 - parent: 1 - type: Transform -- uid: 23151 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,57.5 - parent: 1 - type: Transform -- uid: 23152 - type: WallReinforced - components: - - pos: -14.5,69.5 - parent: 1 - type: Transform -- uid: 23153 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -14.5,58.5 - parent: 1 - type: Transform -- uid: 23154 - type: WallReinforced - components: - - pos: -14.5,71.5 - parent: 1 - type: Transform -- uid: 23155 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -20.5,58.5 - parent: 1 - type: Transform -- uid: 23156 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -20.5,57.5 - parent: 1 - type: Transform -- uid: 23157 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -16.5,65.5 - parent: 1 - type: Transform -- uid: 23158 - type: AirAlarm - components: - - pos: -15.5,68.5 - parent: 1 - type: Transform - - devices: - - 23107 - - 28373 - - 30192 - - 30309 - - 30308 - type: DeviceList -- uid: 23159 - type: WallReinforced - components: - - pos: -18.5,70.5 - parent: 1 - type: Transform -- uid: 23160 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,56.5 - parent: 1 - type: Transform -- uid: 23161 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -19.5,57.5 - parent: 1 - type: Transform -- uid: 23162 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -20.5,56.5 - parent: 1 - type: Transform -- uid: 23163 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -20.5,54.5 - parent: 1 - type: Transform -- uid: 23164 - type: FirelockGlass - components: - - rot: 1.5707963267948966 rad - pos: -18.5,55.5 - parent: 1 - type: Transform -- uid: 23165 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,54.5 - parent: 1 - type: Transform -- uid: 23166 - type: ReinforcedWindow - components: - - pos: -20.5,73.5 - parent: 1 - type: Transform -- uid: 23167 - type: ReinforcedWindow - components: - - pos: -11.5,73.5 - parent: 1 - type: Transform -- uid: 23168 - type: WallReinforced - components: - - pos: -20.5,69.5 - parent: 1 - type: Transform -- uid: 23169 - type: WallReinforced - components: - - pos: -20.5,68.5 - parent: 1 - type: Transform -- uid: 23170 - type: WallReinforced - components: - - pos: -19.5,68.5 - parent: 1 - type: Transform -- uid: 23171 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,53.5 - parent: 1 - type: Transform -- uid: 23172 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -18.5,52.5 - parent: 1 - type: Transform -- uid: 23173 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -22.5,49.5 - parent: 1 - type: Transform -- uid: 23174 - type: TableReinforced - components: - - pos: -21.5,49.5 - parent: 1 - type: Transform -- uid: 23175 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -23.5,54.5 - parent: 1 - type: Transform -- uid: 23176 - type: AirlockMaintLocked - components: - - pos: -23.5,56.5 - parent: 1 - type: Transform -- uid: 23177 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -23.5,55.5 - parent: 1 - type: Transform -- uid: 23178 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,56.5 - parent: 1 - type: Transform -- uid: 23179 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,55.5 - parent: 1 - type: Transform -- uid: 23180 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,54.5 - parent: 1 - type: Transform -- uid: 23181 - type: Window - components: - - pos: -3.5,47.5 - parent: 1 - type: Transform -- uid: 23182 - type: Window - components: - - pos: -1.5,49.5 - parent: 1 - type: Transform -- uid: 23183 - type: ReinforcedWindow - components: - - pos: -23.5,63.5 - parent: 1 - type: Transform -- uid: 23184 - type: ReinforcedWindow - components: - - pos: -23.5,73.5 - parent: 1 - type: Transform -- uid: 23185 - type: WallReinforced - components: - - pos: -14.5,68.5 - parent: 1 - type: Transform -- uid: 23186 - type: WallReinforced - components: - - pos: -15.5,68.5 - parent: 1 - type: Transform -- uid: 23187 - type: WallReinforced - components: - - pos: -16.5,68.5 - parent: 1 - type: Transform -- uid: 23188 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -20.5,53.5 - parent: 1 - type: Transform -- uid: 23189 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -20.5,52.5 - parent: 1 - type: Transform -- uid: 23190 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -23.5,53.5 - parent: 1 - type: Transform -- uid: 23191 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -23.5,52.5 - parent: 1 - type: Transform -- uid: 23192 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -23.5,49.5 - parent: 1 - type: Transform -- uid: 23193 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -23.5,50.5 - parent: 1 - type: Transform -- uid: 23194 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -23.5,51.5 - parent: 1 - type: Transform -- uid: 23195 - type: Window - components: - - pos: -5.5,47.5 - parent: 1 - type: Transform -- uid: 23196 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,50.5 - parent: 1 - type: Transform -- uid: 23197 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,49.5 - parent: 1 - type: Transform -- uid: 23198 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -14.5,48.5 - parent: 1 - type: Transform -- uid: 23199 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -11.5,48.5 - parent: 1 - type: Transform -- uid: 23200 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -12.5,48.5 - parent: 1 - type: Transform -- uid: 23201 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -15.5,49.5 - parent: 1 - type: Transform -- uid: 23202 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -19.5,49.5 - parent: 1 - type: Transform -- uid: 23203 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -19.5,48.5 - parent: 1 - type: Transform -- uid: 23204 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -19.5,47.5 - parent: 1 - type: Transform -- uid: 23205 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -19.5,46.5 - parent: 1 - type: Transform -- uid: 23206 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -19.5,43.5 - parent: 1 - type: Transform -- uid: 23207 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -19.5,44.5 - parent: 1 - type: Transform -- uid: 23208 - type: FoodRiceEgg - components: - - pos: -19.538637,43.451466 - parent: 1 - type: Transform -- uid: 23209 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -19.5,41.5 - parent: 1 - type: Transform -- uid: 23210 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -19.5,42.5 - parent: 1 - type: Transform -- uid: 23211 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -19.5,40.5 - parent: 1 - type: Transform -- uid: 23212 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -15.5,48.5 - parent: 1 - type: Transform -- uid: 23213 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: -17.5,48.5 - parent: 1 - type: Transform -- uid: 23214 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: -13.5,44.5 - parent: 1 - type: Transform -- uid: 23215 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,43.5 - parent: 1 - type: Transform -- uid: 23216 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -13.5,42.5 - parent: 1 - type: Transform -- uid: 23217 - type: AirlockServiceLocked - components: - - name: donk cafe - type: MetaData - - rot: 1.5707963267948966 rad - pos: -13.5,41.5 - parent: 1 - type: Transform -- uid: 23218 - type: Airlock - components: - - rot: -1.5707963267948966 rad - pos: -17.5,34.5 - parent: 1 - type: Transform -- uid: 23219 - type: Airlock - components: - - rot: -1.5707963267948966 rad - pos: -13.5,34.5 - parent: 1 - type: Transform -- uid: 23220 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 7.5,35.5 - parent: 1 - type: Transform -- uid: 23221 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -17.5,24.5 - parent: 1 - type: Transform -- uid: 23222 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 8.5,35.5 - parent: 1 - type: Transform -- uid: 23223 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 7.5,29.5 - parent: 1 - type: Transform -- uid: 23224 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 8.5,29.5 - parent: 1 - type: Transform -- uid: 23225 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 68.5,11.5 - parent: 1 - type: Transform -- uid: 23226 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 68.5,10.5 - parent: 1 - type: Transform -- uid: 23227 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 68.5,8.5 - parent: 1 - type: Transform -- uid: 23228 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 68.5,7.5 - parent: 1 - type: Transform -- uid: 23229 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 68.5,11.5 - parent: 1 - type: Transform -- uid: 23230 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 68.5,10.5 - parent: 1 - type: Transform -- uid: 23231 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 68.5,8.5 - parent: 1 - type: Transform -- uid: 23232 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 68.5,7.5 - parent: 1 - type: Transform -- uid: 23233 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 59.5,33.5 - parent: 1 - type: Transform -- uid: 23234 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 59.5,32.5 - parent: 1 - type: Transform -- uid: 23235 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -16.5,40.5 - parent: 1 - type: Transform -- uid: 23236 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: -15.5,47.5 - parent: 1 - type: Transform -- uid: 23237 - type: Table - components: - - pos: -8.5,39.5 - parent: 1 - type: Transform -- uid: 23238 - type: Table - components: - - pos: -8.5,38.5 - parent: 1 - type: Transform -- uid: 23239 - type: Table - components: - - pos: -8.5,37.5 - parent: 1 - type: Transform -- uid: 23240 - type: Table - components: - - pos: -9.5,39.5 - parent: 1 - type: Transform -- uid: 23241 - type: Table - components: - - pos: -9.5,37.5 - parent: 1 - type: Transform -- uid: 23242 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -1.5,27.5 - parent: 1 - type: Transform -- uid: 23243 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -3.5,27.5 - parent: 1 - type: Transform -- uid: 23244 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -7.5,28.5 - parent: 1 - type: Transform -- uid: 23245 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -7.5,27.5 - parent: 1 - type: Transform -- uid: 23246 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -33.5,35.5 - parent: 1 - type: Transform -- uid: 23247 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -28.5,33.5 - parent: 1 - type: Transform -- uid: 23248 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -28.5,34.5 - parent: 1 - type: Transform -- uid: 23249 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -29.5,35.5 - parent: 1 - type: Transform -- uid: 23250 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -28.5,35.5 - parent: 1 - type: Transform -- uid: 23251 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -30.5,35.5 - parent: 1 - type: Transform -- uid: 23252 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -34.5,35.5 - parent: 1 - type: Transform -- uid: 23253 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -35.5,35.5 - parent: 1 - type: Transform -- uid: 23254 - type: WallSolid - components: - - pos: -25.5,37.5 - parent: 1 - type: Transform -- uid: 23255 - type: WallSolid - components: - - pos: -25.5,36.5 - parent: 1 - type: Transform -- uid: 23256 - type: WallSolid - components: - - pos: -26.5,36.5 - parent: 1 - type: Transform -- uid: 23257 - type: WallSolid - components: - - pos: -25.5,39.5 - parent: 1 - type: Transform -- uid: 23258 - type: WallSolid - components: - - pos: -25.5,40.5 - parent: 1 - type: Transform -- uid: 23259 - type: WallSolid - components: - - pos: -44.5,38.5 - parent: 1 - type: Transform -- uid: 23260 - type: WallSolid - components: - - pos: -30.5,37.5 - parent: 1 - type: Transform -- uid: 23261 - type: WallSolid - components: - - pos: -31.5,37.5 - parent: 1 - type: Transform -- uid: 23262 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -32.5,37.5 - parent: 1 - type: Transform -- uid: 23263 - type: WallSolid - components: - - pos: -33.5,37.5 - parent: 1 - type: Transform -- uid: 23264 - type: WallSolid - components: - - pos: -33.5,38.5 - parent: 1 - type: Transform -- uid: 23265 - type: WallSolid - components: - - pos: -34.5,38.5 - parent: 1 - type: Transform -- uid: 23266 - type: WallSolid - components: - - pos: -35.5,36.5 - parent: 1 - type: Transform -- uid: 23267 - type: WallSolid - components: - - pos: -37.5,38.5 - parent: 1 - type: Transform -- uid: 23268 - type: WallSolid - components: - - pos: -38.5,38.5 - parent: 1 - type: Transform -- uid: 23269 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -33.5,35.5 - parent: 1 - type: Transform -- uid: 23270 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -32.5,35.5 - parent: 1 - type: Transform -- uid: 23271 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -28.5,32.5 - parent: 1 - type: Transform -- uid: 23272 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -31.5,35.5 - parent: 1 - type: Transform -- uid: 23273 - type: AirlockMaintSalvageLocked - components: - - name: salvage - type: MetaData - - rot: -1.5707963267948966 rad - pos: -37.5,34.5 - parent: 1 - type: Transform -- uid: 23274 - type: GasPipeStraight - components: - - pos: -16.5,31.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23275 - type: GasPipeStraight - components: - - pos: -15.5,30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23276 - type: GasPipeStraight - components: - - pos: -15.5,31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23277 - type: GasPipeStraight - components: - - pos: -15.5,32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23278 - type: GasPipeStraight - components: - - pos: -16.5,32.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23279 - type: GasPipeStraight - components: - - pos: -16.5,33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23280 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -16.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23281 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -15.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23282 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23283 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23284 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23285 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23286 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23287 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -12.5,34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23288 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -12.5,33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23289 - type: CableApcExtension - components: - - pos: -18.5,24.5 - parent: 1 - type: Transform -- uid: 23290 - type: CableApcExtension - components: - - pos: -18.5,25.5 - parent: 1 - type: Transform -- uid: 23291 - type: CableApcExtension - components: - - pos: -18.5,26.5 - parent: 1 - type: Transform -- uid: 23292 - type: CableApcExtension - components: - - pos: -18.5,27.5 - parent: 1 - type: Transform -- uid: 23293 - type: CableApcExtension - components: - - pos: -18.5,28.5 - parent: 1 - type: Transform -- uid: 23294 - type: CableApcExtension - components: - - pos: -18.5,29.5 - parent: 1 - type: Transform -- uid: 23295 - type: CableApcExtension - components: - - pos: -18.5,30.5 - parent: 1 - type: Transform -- uid: 23296 - type: CableApcExtension - components: - - pos: -19.5,30.5 - parent: 1 - type: Transform -- uid: 23297 - type: CableApcExtension - components: - - pos: -20.5,30.5 - parent: 1 - type: Transform -- uid: 23298 - type: CableApcExtension - components: - - pos: -21.5,30.5 - parent: 1 - type: Transform -- uid: 23299 - type: CableApcExtension - components: - - pos: -22.5,30.5 - parent: 1 - type: Transform -- uid: 23300 - type: CableApcExtension - components: - - pos: -23.5,30.5 - parent: 1 - type: Transform -- uid: 23301 - type: CableApcExtension - components: - - pos: -20.5,22.5 - parent: 1 - type: Transform -- uid: 23302 - type: CableApcExtension - components: - - pos: -20.5,23.5 - parent: 1 - type: Transform -- uid: 23303 - type: CableApcExtension - components: - - pos: -20.5,24.5 - parent: 1 - type: Transform -- uid: 23304 - type: CableApcExtension - components: - - pos: -20.5,25.5 - parent: 1 - type: Transform -- uid: 23305 - type: CableApcExtension - components: - - pos: -20.5,26.5 - parent: 1 - type: Transform -- uid: 23306 - type: CableApcExtension - components: - - pos: -20.5,27.5 - parent: 1 - type: Transform -- uid: 23307 - type: CableApcExtension - components: - - pos: -20.5,28.5 - parent: 1 - type: Transform -- uid: 23308 - type: CableApcExtension - components: - - pos: -20.5,29.5 - parent: 1 - type: Transform -- uid: 23309 - type: DisposalPipe - components: - - pos: -19.5,24.5 - parent: 1 - type: Transform -- uid: 23310 - type: DisposalPipe - components: - - pos: -19.5,25.5 - parent: 1 - type: Transform -- uid: 23311 - type: DisposalPipe - components: - - pos: -19.5,26.5 - parent: 1 - type: Transform -- uid: 23312 - type: DisposalPipe - components: - - pos: -19.5,27.5 - parent: 1 - type: Transform -- uid: 23313 - type: DisposalPipe - components: - - pos: -19.5,28.5 - parent: 1 - type: Transform -- uid: 23314 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -19.5,29.5 - parent: 1 - type: Transform -- uid: 23315 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,29.5 - parent: 1 - type: Transform -- uid: 23316 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,29.5 - parent: 1 - type: Transform -- uid: 23317 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,29.5 - parent: 1 - type: Transform -- uid: 23318 - type: CableMV - components: - - pos: -19.5,26.5 - parent: 1 - type: Transform -- uid: 23319 - type: CableMV - components: - - pos: -19.5,27.5 - parent: 1 - type: Transform -- uid: 23320 - type: CableMV - components: - - pos: -19.5,28.5 - parent: 1 - type: Transform -- uid: 23321 - type: CableMV - components: - - pos: -19.5,29.5 - parent: 1 - type: Transform -- uid: 23322 - type: CableMV - components: - - pos: -18.5,29.5 - parent: 1 - type: Transform -- uid: 23323 - type: CableMV - components: - - pos: -17.5,29.5 - parent: 1 - type: Transform -- uid: 23324 - type: CableMV - components: - - pos: -16.5,29.5 - parent: 1 - type: Transform -- uid: 23325 - type: CableMV - components: - - pos: -15.5,29.5 - parent: 1 - type: Transform -- uid: 23326 - type: CableMV - components: - - pos: -15.5,30.5 - parent: 1 - type: Transform -- uid: 23327 - type: CableMV - components: - - pos: -15.5,31.5 - parent: 1 - type: Transform -- uid: 23328 - type: CableMV - components: - - pos: -15.5,32.5 - parent: 1 - type: Transform -- uid: 23329 - type: CableMV - components: - - pos: -15.5,33.5 - parent: 1 - type: Transform -- uid: 23330 - type: CableMV - components: - - pos: -15.5,34.5 - parent: 1 - type: Transform -- uid: 23331 - type: CableMV - components: - - pos: -15.5,35.5 - parent: 1 - type: Transform -- uid: 23332 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-17.5 - parent: 1 - type: Transform -- uid: 23333 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 1 - type: Transform -- uid: 23334 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-17.5 - parent: 1 - type: Transform -- uid: 23335 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 1 - type: Transform -- uid: 23336 - type: CableApcExtension - components: - - pos: 44.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23337 - type: CableApcExtension - components: - - pos: 45.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23338 - type: CableApcExtension - components: - - pos: 46.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23339 - type: CableApcExtension - components: - - pos: 47.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23340 - type: CableApcExtension - components: - - pos: 46.5,-14.5 - parent: 1 - type: Transform -- uid: 23341 - type: CableApcExtension - components: - - pos: 46.5,-15.5 - parent: 1 - type: Transform -- uid: 23342 - type: CableApcExtension - components: - - pos: 46.5,-16.5 - parent: 1 - type: Transform -- uid: 23343 - type: CableApcExtension - components: - - pos: 37.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23344 - type: CableApcExtension - components: - - pos: 36.5,-13.5 - parent: 1 - type: Transform -- uid: 23345 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 63.5,50.5 - parent: 1 - type: Transform -- uid: 23346 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 64.5,51.5 - parent: 1 - type: Transform -- uid: 23347 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 63.5,51.5 - parent: 1 - type: Transform -- uid: 23348 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 62.5,51.5 - parent: 1 - type: Transform -- uid: 23349 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 61.5,51.5 - parent: 1 - type: Transform -- uid: 23350 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 60.5,51.5 - parent: 1 - type: Transform -- uid: 23351 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 60.5,52.5 - parent: 1 - type: Transform -- uid: 23352 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 61.5,52.5 - parent: 1 - type: Transform -- uid: 23353 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 62.5,52.5 - parent: 1 - type: Transform -- uid: 23354 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 63.5,52.5 - parent: 1 - type: Transform -- uid: 23355 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 61.5,53.5 - parent: 1 - type: Transform -- uid: 23356 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 60.5,53.5 - parent: 1 - type: Transform -- uid: 23357 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 63.5,43.5 - parent: 1 - type: Transform -- uid: 23358 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 62.5,54.5 - parent: 1 - type: Transform -- uid: 23359 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 61.5,54.5 - parent: 1 - type: Transform -- uid: 23360 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 61.5,55.5 - parent: 1 - type: Transform -- uid: 23361 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 62.5,55.5 - parent: 1 - type: Transform -- uid: 23362 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 64.5,55.5 - parent: 1 - type: Transform -- uid: 23363 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 65.5,55.5 - parent: 1 - type: Transform -- uid: 23364 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 65.5,54.5 - parent: 1 - type: Transform -- uid: 23365 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 65.5,53.5 - parent: 1 - type: Transform -- uid: 23366 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 65.5,52.5 - parent: 1 - type: Transform -- uid: 23367 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 65.5,51.5 - parent: 1 - type: Transform -- uid: 23368 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 64.5,54.5 - parent: 1 - type: Transform -- uid: 23369 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 64.5,53.5 - parent: 1 - type: Transform -- uid: 23370 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 63.5,55.5 - parent: 1 - type: Transform -- uid: 23371 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 63.5,54.5 - parent: 1 - type: Transform -- uid: 23372 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 63.5,53.5 - parent: 1 - type: Transform -- uid: 23373 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 64.5,53.5 - parent: 1 - type: Transform -- uid: 23374 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 64.5,52.5 - parent: 1 - type: Transform -- uid: 23375 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 66.5,52.5 - parent: 1 - type: Transform -- uid: 23376 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 66.5,51.5 - parent: 1 - type: Transform -- uid: 23377 - type: FloraRockSolid01 - components: - - pos: 64.48079,45.764553 - parent: 1 - type: Transform -- uid: 23378 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 66.5,49.5 - parent: 1 - type: Transform -- uid: 23379 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 66.5,48.5 - parent: 1 - type: Transform -- uid: 23380 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 66.5,47.5 - parent: 1 - type: Transform -- uid: 23381 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 67.5,9.5 - parent: 1 - type: Transform -- uid: 23382 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 66.5,45.5 - parent: 1 - type: Transform -- uid: 23383 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 66.5,44.5 - parent: 1 - type: Transform -- uid: 23384 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 67.5,52.5 - parent: 1 - type: Transform -- uid: 23385 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 67.5,51.5 - parent: 1 - type: Transform -- uid: 23386 - type: TromboneInstrument - components: - - pos: 68.56264,48.54323 - parent: 1 - type: Transform -- uid: 23387 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 67.5,49.5 - parent: 1 - type: Transform -- uid: 23388 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 67.5,48.5 - parent: 1 - type: Transform -- uid: 23389 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 67.5,47.5 - parent: 1 - type: Transform -- uid: 23390 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 67.5,7.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 23391 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 67.5,45.5 - parent: 1 - type: Transform -- uid: 23392 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 67.5,44.5 - parent: 1 - type: Transform -- uid: 23393 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 63.5,42.5 - parent: 1 - type: Transform -- uid: 23394 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 64.5,42.5 - parent: 1 - type: Transform -- uid: 23395 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 65.5,42.5 - parent: 1 - type: Transform -- uid: 23396 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 66.5,42.5 - parent: 1 - type: Transform -- uid: 23397 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 67.5,42.5 - parent: 1 - type: Transform -- uid: 23398 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 67.5,43.5 - parent: 1 - type: Transform -- uid: 23399 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 66.5,43.5 - parent: 1 - type: Transform -- uid: 23400 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 68.5,51.5 - parent: 1 - type: Transform -- uid: 23401 - type: FloraRockSolid03 - components: - - pos: 63.527668,48.936428 - parent: 1 - type: Transform -- uid: 23402 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23403 - type: ComfyChair - components: - - pos: 67.5,11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 23404 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-16.5 - parent: 1 - type: Transform -- uid: 23405 - type: AirlockEngineeringLocked - components: - - name: substation - type: MetaData - - pos: -8.5,33.5 - parent: 1 - type: Transform -- uid: 23406 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 68.5,45.5 - parent: 1 - type: Transform -- uid: 23407 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 68.5,44.5 - parent: 1 - type: Transform -- uid: 23408 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 69.5,51.5 - parent: 1 - type: Transform -- uid: 23409 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 69.5,50.5 - parent: 1 - type: Transform -- uid: 23410 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 69.5,49.5 - parent: 1 - type: Transform -- uid: 23411 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 69.5,48.5 - parent: 1 - type: Transform -- uid: 23412 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 69.5,47.5 - parent: 1 - type: Transform -- uid: 23413 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 69.5,46.5 - parent: 1 - type: Transform -- uid: 23414 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 69.5,45.5 - parent: 1 - type: Transform -- uid: 23415 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 69.5,44.5 - parent: 1 - type: Transform -- uid: 23416 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 70.5,51.5 - parent: 1 - type: Transform -- uid: 23417 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 70.5,50.5 - parent: 1 - type: Transform -- uid: 23418 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 70.5,49.5 - parent: 1 - type: Transform -- uid: 23419 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 70.5,48.5 - parent: 1 - type: Transform -- uid: 23420 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 70.5,47.5 - parent: 1 - type: Transform -- uid: 23421 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 70.5,46.5 - parent: 1 - type: Transform -- uid: 23422 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 70.5,45.5 - parent: 1 - type: Transform -- uid: 23423 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 70.5,44.5 - parent: 1 - type: Transform -- uid: 23424 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 67.5,53.5 - parent: 1 - type: Transform -- uid: 23425 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 66.5,53.5 - parent: 1 - type: Transform -- uid: 23426 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 67.5,10.5 - parent: 1 - type: Transform -- uid: 23427 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 67.5,8.5 - parent: 1 - type: Transform -- uid: 23428 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 65.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23429 - type: MaintenanceToolSpawner - components: - - pos: 67.5,8.5 - parent: 1 - type: Transform -- uid: 23430 - type: WallReinforced - components: - - pos: 60.5,30.5 - parent: 1 - type: Transform -- uid: 23431 - type: CableApcExtension - components: - - pos: 61.5,26.5 - parent: 1 - type: Transform -- uid: 23432 - type: CableApcExtension - components: - - pos: 62.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23433 - type: CableApcExtension - components: - - pos: 63.5,26.5 - parent: 1 - type: Transform -- uid: 23434 - type: CableApcExtension - components: - - pos: 64.5,26.5 - parent: 1 - type: Transform -- uid: 23435 - type: CableApcExtension - components: - - pos: 65.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23436 - type: CableApcExtension - components: - - pos: 65.5,25.5 - parent: 1 - type: Transform -- uid: 23437 - type: CableApcExtension - components: - - pos: 64.5,15.5 - parent: 1 - type: Transform -- uid: 23438 - type: CableApcExtension - components: - - pos: 64.5,16.5 - parent: 1 - type: Transform -- uid: 23439 - type: CableApcExtension - components: - - pos: 64.5,17.5 - parent: 1 - type: Transform -- uid: 23440 - type: CableApcExtension - components: - - pos: 12.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23441 - type: CableApcExtension - components: - - pos: 11.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23442 - type: CableApcExtension - components: - - pos: 10.5,32.5 - parent: 1 - type: Transform -- uid: 23443 - type: CableApcExtension - components: - - pos: 9.5,32.5 - parent: 1 - type: Transform -- uid: 23444 - type: CableApcExtension - components: - - pos: 8.5,32.5 - parent: 1 - type: Transform -- uid: 23445 - type: CableApcExtension - components: - - pos: 7.5,32.5 - parent: 1 - type: Transform -- uid: 23446 - type: CableApcExtension - components: - - pos: 6.5,32.5 - parent: 1 - type: Transform -- uid: 23447 - type: CableApcExtension - components: - - pos: 5.5,32.5 - parent: 1 - type: Transform -- uid: 23448 - type: CableApcExtension - components: - - pos: 4.5,32.5 - parent: 1 - type: Transform -- uid: 23449 - type: CableApcExtension - components: - - pos: 9.5,31.5 - parent: 1 - type: Transform -- uid: 23450 - type: CableApcExtension - components: - - pos: 9.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23451 - type: CableApcExtension - components: - - pos: 8.5,30.5 - parent: 1 - type: Transform -- uid: 23452 - type: CableApcExtension - components: - - pos: 7.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23453 - type: CableApcExtension - components: - - pos: 6.5,30.5 - parent: 1 - type: Transform -- uid: 23454 - type: CableApcExtension - components: - - pos: 6.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23455 - type: CableApcExtension - components: - - pos: 6.5,33.5 - parent: 1 - type: Transform -- uid: 23456 - type: CableApcExtension - components: - - pos: 6.5,34.5 - parent: 1 - type: Transform -- uid: 23457 - type: CableApcExtension - components: - - pos: 7.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23458 - type: CableApcExtension - components: - - pos: 8.5,34.5 - parent: 1 - type: Transform -- uid: 23459 - type: CableApcExtension - components: - - pos: 9.5,34.5 - parent: 1 - type: Transform -- uid: 23460 - type: CableApcExtension - components: - - pos: 9.5,33.5 - parent: 1 - type: Transform -- uid: 23461 - type: RandomArcade - components: - - pos: 9.5,34.5 - parent: 1 - type: Transform -- uid: 23462 - type: RandomArcade - components: - - pos: 7.5,34.5 - parent: 1 - type: Transform -- uid: 23463 - type: RandomArcade - components: - - rot: 3.141592653589793 rad - pos: 9.5,30.5 - parent: 1 - type: Transform -- uid: 23464 - type: RandomArcade - components: - - rot: 3.141592653589793 rad - pos: 7.5,30.5 - parent: 1 - type: Transform -- uid: 23465 - type: Chair - components: - - pos: 6.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 23466 - type: Chair - components: - - pos: 10.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 23467 - type: PoweredSmallLight - components: - - pos: 9.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23468 - type: AirlockMaintLocked - components: - - pos: 4.5,32.5 - parent: 1 - type: Transform -- uid: 23469 - type: TableCarpet - components: - - pos: 8.5,32.5 - parent: 1 - type: Transform -- uid: 23470 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 9.5,32.5 - parent: 1 - type: Transform -- uid: 23471 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 7.5,32.5 - parent: 1 - type: Transform -- uid: 23472 - type: ChessBoard - components: - - rot: 1.5707963267948966 rad - pos: 8.516274,32.607613 - parent: 1 - type: Transform -- uid: 23473 - type: BaseBigBox - components: - - pos: 58.475555,34.501217 - parent: 1 - type: Transform -- uid: 23474 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: -2.5,-23.5 - parent: 1 - type: Transform -- uid: 23475 - type: BoxCardboard - components: - - pos: 57.684505,34.726276 - parent: 1 - type: Transform -- uid: 23476 - type: BoxCardboard - components: - - pos: 57.26263,34.39815 - parent: 1 - type: Transform -- uid: 23477 - type: Bed - components: - - pos: -23.5,31.5 - parent: 1 - type: Transform -- uid: 23478 - type: BedsheetUSA - components: - - pos: -23.5,31.5 - parent: 1 - type: Transform -- uid: 23479 - type: ComputerTelevision - components: - - pos: -22.5,31.5 - parent: 1 - type: Transform -- uid: 23480 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: -22.5,30.5 - parent: 1 - type: Transform -- uid: 23481 - type: TableWood - components: - - pos: -23.5,29.5 - parent: 1 - type: Transform -- uid: 23482 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: -23.5,30.5 - parent: 1 - type: Transform -- uid: 23483 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -24.5,30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23484 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: -24.5,29.5 - parent: 1 - type: Transform -- uid: 23485 - type: CarpetGreen - components: - - pos: -23.5,31.5 - parent: 1 - type: Transform -- uid: 23486 - type: VendingMachineClothing - components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,31.5 - parent: 1 - type: Transform -- uid: 23487 - type: CarpetGreen - components: - - pos: -23.5,29.5 - parent: 1 - type: Transform -- uid: 23488 - type: CarpetGreen - components: - - pos: -22.5,31.5 - parent: 1 - type: Transform -- uid: 23489 - type: MaterialWoodPlank1 - components: - - pos: 17.500986,29.51836 - parent: 1 - type: Transform -- uid: 23490 - type: CarpetGreen - components: - - pos: -22.5,29.5 - parent: 1 - type: Transform -- uid: 23491 - type: ShuttersNormalOpen - components: - - pos: -46.5,13.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -46784.98 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 20154 - Close: - - port: Off - uid: 20154 - Toggle: [] - type: SignalReceiver -- uid: 23492 - type: PottedPlantRandom - components: - - pos: -49.5,12.5 - parent: 1 - type: Transform -- uid: 23493 - type: ShuttersNormalOpen - components: - - pos: -47.5,13.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -46784.98 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 20154 - Close: - - port: Off - uid: 20154 - Toggle: [] - type: SignalReceiver -- uid: 23494 - type: SpawnPointAssistant - components: - - pos: -46.5,7.5 - parent: 1 - type: Transform -- uid: 23495 - type: WallSolid - components: - - pos: -44.5,13.5 - parent: 1 - type: Transform -- uid: 23496 - type: ReinforcedWindow - components: - - pos: -46.5,13.5 - parent: 1 - type: Transform -- uid: 23497 - type: PlasticFlapsClear - components: - - rot: -1.5707963267948966 rad - pos: -47.5,13.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 23498 - type: AirlockCargoLocked - components: - - pos: -45.5,13.5 - parent: 1 - type: Transform -- uid: 23499 - type: Dresser - components: - - pos: -24.5,31.5 - parent: 1 - type: Transform -- uid: 23500 - type: PoweredSmallLight - components: - - pos: -23.5,31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23501 - type: TableCounterWood - components: - - pos: 57.5,32.5 - parent: 1 - type: Transform -- uid: 23502 - type: Dresser - components: - - pos: 54.5,32.5 - parent: 1 - type: Transform -- uid: 23503 - type: filingCabinetDrawer - components: - - pos: 58.5,31.5 - parent: 1 - type: Transform -- uid: 23504 - type: CableApcExtension - components: - - pos: 57.5,33.5 - parent: 1 - type: Transform -- uid: 23505 - type: CableApcExtension - components: - - pos: 58.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23506 - type: CableApcExtension - components: - - pos: 55.5,31.5 - parent: 1 - type: Transform -- uid: 23507 - type: CableApcExtension - components: - - pos: 54.5,31.5 - parent: 1 - type: Transform -- uid: 23508 - type: WallReinforced - components: - - pos: 9.5,-35.5 - parent: 1 - type: Transform -- uid: 23509 - type: PoweredSmallLightEmpty - components: - - pos: 57.5,34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23510 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 57.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23511 - type: FoodRicePork - components: - - pos: -19.554262,42.701466 - parent: 1 - type: Transform -- uid: 23512 - type: FoodRiceBoiled - components: - - pos: -19.538637,41.826466 - parent: 1 - type: Transform -- uid: 23513 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -19.5,44.5 - parent: 1 - type: Transform -- uid: 23514 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -22.5,40.5 - parent: 1 - type: Transform -- uid: 23515 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -21.5,40.5 - parent: 1 - type: Transform -- uid: 23516 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -20.5,40.5 - parent: 1 - type: Transform -- uid: 23517 - type: VendingMachineDinnerware - components: - - flags: SessionSpecific - type: MetaData - - pos: -22.5,42.5 - parent: 1 - type: Transform -- uid: 23518 - type: WallSolid - components: - - pos: -23.5,40.5 - parent: 1 - type: Transform -- uid: 23519 - type: AirlockServiceLocked - components: - - name: changs - type: MetaData - - pos: -23.5,41.5 - parent: 1 - type: Transform -- uid: 23520 - type: WallSolid - components: - - pos: -23.5,42.5 - parent: 1 - type: Transform -- uid: 23521 - type: WallSolid - components: - - pos: -23.5,43.5 - parent: 1 - type: Transform -- uid: 23522 - type: WallSolid - components: - - pos: -23.5,44.5 - parent: 1 - type: Transform -- uid: 23523 - type: WallSolid - components: - - pos: -23.5,45.5 - parent: 1 - type: Transform -- uid: 23524 - type: WallSolid - components: - - pos: -23.5,46.5 - parent: 1 - type: Transform -- uid: 23525 - type: WallSolid - components: - - pos: -22.5,46.5 - parent: 1 - type: Transform -- uid: 23526 - type: WallSolid - components: - - pos: -21.5,46.5 - parent: 1 - type: Transform -- uid: 23527 - type: WallSolid - components: - - pos: -20.5,46.5 - parent: 1 - type: Transform -- uid: 23528 - type: WallReinforced - components: - - pos: 3.5,58.5 - parent: 1 - type: Transform -- uid: 23529 - type: AirlockServiceLocked - components: - - name: changs - type: MetaData - - pos: -19.5,45.5 - parent: 1 - type: Transform -- uid: 23530 - type: Table - components: - - pos: -22.5,45.5 - parent: 1 - type: Transform -- uid: 23531 - type: Table - components: - - pos: -22.5,44.5 - parent: 1 - type: Transform -- uid: 23532 - type: Table - components: - - pos: -22.5,43.5 - parent: 1 - type: Transform -- uid: 23533 - type: KitchenMicrowave - components: - - pos: -22.5,45.5 - parent: 1 - type: Transform -- uid: 23534 - type: ReagentContainerRice - components: - - pos: -22.276304,44.96307 - parent: 1 - type: Transform -- uid: 23535 - type: ReagentContainerRice - components: - - pos: -22.620054,44.759945 - parent: 1 - type: Transform -- uid: 23536 - type: PottedPlantRandomPlastic - components: - - pos: 54.5,31.5 - parent: 1 - type: Transform -- uid: 23537 - type: ClockworkShield - components: - - pos: 57.48767,32.508053 - parent: 1 - type: Transform -- uid: 23538 - type: RandomFoodSingle - components: - - pos: 67.5,10.5 - parent: 1 - type: Transform -- uid: 23539 - type: ComputerTelevision - components: - - pos: -18.5,35.5 - parent: 1 - type: Transform -- uid: 23540 - type: Bed - components: - - pos: -19.5,33.5 - parent: 1 - type: Transform -- uid: 23541 - type: BedsheetSpawner - components: - - pos: -10.5,31.5 - parent: 1 - type: Transform -- uid: 23542 - type: Dresser - components: - - pos: -19.5,35.5 - parent: 1 - type: Transform -- uid: 23543 - type: TableWood - components: - - pos: -18.5,33.5 - parent: 1 - type: Transform -- uid: 23544 - type: TableWood - components: - - pos: -21.5,35.5 - parent: 1 - type: Transform -- uid: 23545 - type: RadioHandheld - components: - - pos: -21.414516,35.539524 - parent: 1 - type: Transform -- uid: 23546 - type: FoodRicePudding - components: - - pos: -18.492641,33.633274 - parent: 1 - type: Transform -- uid: 23547 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: -18.5,48.5 - parent: 1 - type: Transform -- uid: 23548 - type: CableMV - components: - - pos: -15.5,36.5 - parent: 1 - type: Transform -- uid: 23549 - type: CableMV - components: - - pos: -15.5,37.5 - parent: 1 - type: Transform -- uid: 23550 - type: CableMV - components: - - pos: -15.5,38.5 - parent: 1 - type: Transform -- uid: 23551 - type: CableMV - components: - - pos: -15.5,39.5 - parent: 1 - type: Transform -- uid: 23552 - type: CableMV - components: - - pos: -15.5,40.5 - parent: 1 - type: Transform -- uid: 23553 - type: CableMV - components: - - pos: -15.5,41.5 - parent: 1 - type: Transform -- uid: 23554 - type: CableMV - components: - - pos: -15.5,42.5 - parent: 1 - type: Transform -- uid: 23555 - type: Poweredlight - components: - - pos: -21.5,45.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23556 - type: AirlockGlass - components: - - rot: -1.5707963267948966 rad - pos: -16.5,48.5 - parent: 1 - type: Transform -- uid: 23557 - type: CableApcExtension - components: - - pos: -15.5,42.5 - parent: 1 - type: Transform -- uid: 23558 - type: CableApcExtension - components: - - pos: -16.5,42.5 - parent: 1 - type: Transform -- uid: 23559 - type: CableApcExtension - components: - - pos: -16.5,41.5 - parent: 1 - type: Transform -- uid: 23560 - type: CableApcExtension - components: - - pos: -16.5,40.5 - parent: 1 - type: Transform -- uid: 23561 - type: CableApcExtension - components: - - pos: -16.5,39.5 - parent: 1 - type: Transform -- uid: 23562 - type: CableApcExtension - components: - - pos: -16.5,38.5 - parent: 1 - type: Transform -- uid: 23563 - type: CableApcExtension - components: - - pos: -16.5,37.5 - parent: 1 - type: Transform -- uid: 23564 - type: CableApcExtension - components: - - pos: -16.5,36.5 - parent: 1 - type: Transform -- uid: 23565 - type: CableApcExtension - components: - - pos: -16.5,35.5 - parent: 1 - type: Transform -- uid: 23566 - type: CableApcExtension - components: - - pos: -16.5,34.5 - parent: 1 - type: Transform -- uid: 23567 - type: CableApcExtension - components: - - pos: -16.5,33.5 - parent: 1 - type: Transform -- uid: 23568 - type: CableApcExtension - components: - - pos: -16.5,32.5 - parent: 1 - type: Transform -- uid: 23569 - type: CableApcExtension - components: - - pos: -16.5,31.5 - parent: 1 - type: Transform -- uid: 23570 - type: CableApcExtension - components: - - pos: -16.5,30.5 - parent: 1 - type: Transform -- uid: 23571 - type: CableApcExtension - components: - - pos: -16.5,29.5 - parent: 1 - type: Transform -- uid: 23572 - type: CableApcExtension - components: - - pos: -15.5,29.5 - parent: 1 - type: Transform -- uid: 23573 - type: CableApcExtension - components: - - pos: -14.5,29.5 - parent: 1 - type: Transform -- uid: 23574 - type: CableApcExtension - components: - - pos: -14.5,30.5 - parent: 1 - type: Transform -- uid: 23575 - type: CableApcExtension - components: - - pos: -14.5,31.5 - parent: 1 - type: Transform -- uid: 23576 - type: CableApcExtension - components: - - pos: -14.5,32.5 - parent: 1 - type: Transform -- uid: 23577 - type: CableApcExtension - components: - - pos: -14.5,33.5 - parent: 1 - type: Transform -- uid: 23578 - type: CableApcExtension - components: - - pos: -14.5,34.5 - parent: 1 - type: Transform -- uid: 23579 - type: CableApcExtension - components: - - pos: -14.5,35.5 - parent: 1 - type: Transform -- uid: 23580 - type: CableApcExtension - components: - - pos: -14.5,36.5 - parent: 1 - type: Transform -- uid: 23581 - type: CableApcExtension - components: - - pos: -14.5,37.5 - parent: 1 - type: Transform -- uid: 23582 - type: CableApcExtension - components: - - pos: -14.5,38.5 - parent: 1 - type: Transform -- uid: 23583 - type: CableApcExtension - components: - - pos: -14.5,39.5 - parent: 1 - type: Transform -- uid: 23584 - type: CableApcExtension - components: - - pos: -14.5,40.5 - parent: 1 - type: Transform -- uid: 23585 - type: CableApcExtension - components: - - pos: -14.5,41.5 - parent: 1 - type: Transform -- uid: 23586 - type: CableApcExtension - components: - - pos: -14.5,42.5 - parent: 1 - type: Transform -- uid: 23587 - type: CableApcExtension - components: - - pos: -17.5,41.5 - parent: 1 - type: Transform -- uid: 23588 - type: CableApcExtension - components: - - pos: -18.5,41.5 - parent: 1 - type: Transform -- uid: 23589 - type: CableApcExtension - components: - - pos: -18.5,42.5 - parent: 1 - type: Transform -- uid: 23590 - type: CableApcExtension - components: - - pos: -18.5,43.5 - parent: 1 - type: Transform -- uid: 23591 - type: CableApcExtension - components: - - pos: -18.5,44.5 - parent: 1 - type: Transform -- uid: 23592 - type: CableApcExtension - components: - - pos: -18.5,45.5 - parent: 1 - type: Transform -- uid: 23593 - type: CableApcExtension - components: - - pos: -19.5,45.5 - parent: 1 - type: Transform -- uid: 23594 - type: CableApcExtension - components: - - pos: -20.5,45.5 - parent: 1 - type: Transform -- uid: 23595 - type: CableApcExtension - components: - - pos: -21.5,45.5 - parent: 1 - type: Transform -- uid: 23596 - type: CableApcExtension - components: - - pos: -22.5,45.5 - parent: 1 - type: Transform -- uid: 23597 - type: CableApcExtension - components: - - pos: -21.5,44.5 - parent: 1 - type: Transform -- uid: 23598 - type: CableApcExtension - components: - - pos: -21.5,43.5 - parent: 1 - type: Transform -- uid: 23599 - type: CableApcExtension - components: - - pos: -21.5,42.5 - parent: 1 - type: Transform -- uid: 23600 - type: CableApcExtension - components: - - pos: -21.5,41.5 - parent: 1 - type: Transform -- uid: 23601 - type: CableApcExtension - components: - - pos: -21.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 23602 - type: CableApcExtension - components: - - pos: -17.5,44.5 - parent: 1 - type: Transform -- uid: 23603 - type: CableApcExtension - components: - - pos: -16.5,44.5 - parent: 1 - type: Transform -- uid: 23604 - type: CableApcExtension - components: - - pos: -16.5,45.5 - parent: 1 - type: Transform -- uid: 23605 - type: CableApcExtension - components: - - pos: -16.5,46.5 - parent: 1 - type: Transform -- uid: 23606 - type: CableApcExtension - components: - - pos: -16.5,47.5 - parent: 1 - type: Transform -- uid: 23607 - type: CableApcExtension - components: - - pos: -16.5,48.5 - parent: 1 - type: Transform -- uid: 23608 - type: CableApcExtension - components: - - pos: -16.5,49.5 - parent: 1 - type: Transform -- uid: 23609 - type: CableApcExtension - components: - - pos: -16.5,50.5 - parent: 1 - type: Transform -- uid: 23610 - type: CableApcExtension - components: - - pos: -16.5,51.5 - parent: 1 - type: Transform -- uid: 23611 - type: CableApcExtension - components: - - pos: -17.5,51.5 - parent: 1 - type: Transform -- uid: 23612 - type: CableApcExtension - components: - - pos: -18.5,51.5 - parent: 1 - type: Transform -- uid: 23613 - type: CableApcExtension - components: - - pos: -18.5,50.5 - parent: 1 - type: Transform -- uid: 23614 - type: CableApcExtension - components: - - pos: -18.5,49.5 - parent: 1 - type: Transform -- uid: 23615 - type: CableApcExtension - components: - - pos: -18.5,48.5 - parent: 1 - type: Transform -- uid: 23616 - type: CableApcExtension - components: - - pos: -18.5,47.5 - parent: 1 - type: Transform -- uid: 23617 - type: CableApcExtension - components: - - pos: -18.5,46.5 - parent: 1 - type: Transform -- uid: 23618 - type: CableApcExtension - components: - - pos: -13.5,39.5 - parent: 1 - type: Transform -- uid: 23619 - type: CableApcExtension - components: - - pos: -12.5,39.5 - parent: 1 - type: Transform -- uid: 23620 - type: CableApcExtension - components: - - pos: -11.5,39.5 - parent: 1 - type: Transform -- uid: 23621 - type: CableApcExtension - components: - - pos: -10.5,39.5 - parent: 1 - type: Transform -- uid: 23622 - type: CableApcExtension - components: - - pos: -9.5,39.5 - parent: 1 - type: Transform -- uid: 23623 - type: CableApcExtension - components: - - pos: -8.5,39.5 - parent: 1 - type: Transform -- uid: 23624 - type: CableApcExtension - components: - - pos: -8.5,38.5 - parent: 1 - type: Transform -- uid: 23625 - type: CableApcExtension - components: - - pos: -8.5,37.5 - parent: 1 - type: Transform -- uid: 23626 - type: CableApcExtension - components: - - pos: -9.5,37.5 - parent: 1 - type: Transform -- uid: 23627 - type: CableApcExtension - components: - - pos: -10.5,37.5 - parent: 1 - type: Transform -- uid: 23628 - type: CableApcExtension - components: - - pos: -11.5,37.5 - parent: 1 - type: Transform -- uid: 23629 - type: CableApcExtension - components: - - pos: -12.5,37.5 - parent: 1 - type: Transform -- uid: 23630 - type: CableApcExtension - components: - - pos: -13.5,37.5 - parent: 1 - type: Transform -- uid: 23631 - type: CableApcExtension - components: - - pos: -17.5,34.5 - parent: 1 - type: Transform -- uid: 23632 - type: CableApcExtension - components: - - pos: -18.5,34.5 - parent: 1 - type: Transform -- uid: 23633 - type: CableApcExtension - components: - - pos: -19.5,34.5 - parent: 1 - type: Transform -- uid: 23634 - type: CableApcExtension - components: - - pos: -20.5,34.5 - parent: 1 - type: Transform -- uid: 23635 - type: CableApcExtension - components: - - pos: -21.5,34.5 - parent: 1 - type: Transform -- uid: 23636 - type: CableApcExtension - components: - - pos: -13.5,34.5 - parent: 1 - type: Transform -- uid: 23637 - type: CableApcExtension - components: - - pos: -12.5,34.5 - parent: 1 - type: Transform -- uid: 23638 - type: CableApcExtension - components: - - pos: -11.5,34.5 - parent: 1 - type: Transform -- uid: 23639 - type: CableApcExtension - components: - - pos: -11.5,33.5 - parent: 1 - type: Transform -- uid: 23640 - type: CableApcExtension - components: - - pos: -11.5,32.5 - parent: 1 - type: Transform -- uid: 23641 - type: CableApcExtension - components: - - pos: -11.5,31.5 - parent: 1 - type: Transform -- uid: 23642 - type: CableApcExtension - components: - - pos: -15.5,44.5 - parent: 1 - type: Transform -- uid: 23643 - type: FirelockGlass - components: - - pos: -19.5,43.5 - parent: 1 - type: Transform -- uid: 23644 - type: FirelockGlass - components: - - pos: -19.5,42.5 - parent: 1 - type: Transform -- uid: 23645 - type: FirelockGlass - components: - - pos: -19.5,41.5 - parent: 1 - type: Transform -- uid: 23646 - type: Firelock - components: - - pos: -19.5,45.5 - parent: 1 - type: Transform -- uid: 23647 - type: Firelock - components: - - pos: -13.5,38.5 - parent: 1 - type: Transform -- uid: 23648 - type: Firelock - components: - - pos: -17.5,34.5 - parent: 1 - type: Transform -- uid: 23649 - type: Firelock - components: - - pos: -13.5,34.5 - parent: 1 - type: Transform -- uid: 23650 - type: FirelockGlass - components: - - pos: -17.5,30.5 - parent: 1 - type: Transform -- uid: 23651 - type: FirelockGlass - components: - - pos: -17.5,29.5 - parent: 1 - type: Transform -- uid: 23652 - type: AirlockMaintLocked - components: - - pos: -22.5,34.5 - parent: 1 - type: Transform -- uid: 23653 - type: WallSolid - components: - - pos: -8.5,47.5 - parent: 1 - type: Transform -- uid: 23654 - type: WallSolid - components: - - pos: -7.5,47.5 - parent: 1 - type: Transform -- uid: 23655 - type: WallSolid - components: - - pos: -6.5,47.5 - parent: 1 - type: Transform -- uid: 23656 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: -11.5,52.5 - parent: 1 - type: Transform -- uid: 23657 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: -6.5,57.5 - parent: 1 - type: Transform -- uid: 23658 - type: WallSolid - components: - - pos: -2.5,47.5 - parent: 1 - type: Transform -- uid: 23659 - type: WallSolid - components: - - pos: -1.5,47.5 - parent: 1 - type: Transform -- uid: 23660 - type: WallSolid - components: - - pos: -1.5,48.5 - parent: 1 - type: Transform -- uid: 23661 - type: Window - components: - - pos: -7.5,57.5 - parent: 1 - type: Transform -- uid: 23662 - type: Window - components: - - pos: -5.5,57.5 - parent: 1 - type: Transform -- uid: 23663 - type: WallSolid - components: - - pos: -1.5,51.5 - parent: 1 - type: Transform -- uid: 23664 - type: WallSolid - components: - - pos: -1.5,52.5 - parent: 1 - type: Transform -- uid: 23665 - type: WallSolid - components: - - pos: -1.5,53.5 - parent: 1 - type: Transform -- uid: 23666 - type: WallSolid - components: - - pos: -1.5,54.5 - parent: 1 - type: Transform -- uid: 23667 - type: WallReinforced - components: - - pos: 2.5,45.5 - parent: 1 - type: Transform -- uid: 23668 - type: WallReinforced - components: - - pos: 2.5,44.5 - parent: 1 - type: Transform -- uid: 23669 - type: WallReinforced - components: - - pos: 2.5,52.5 - parent: 1 - type: Transform -- uid: 23670 - type: WallReinforced - components: - - pos: 2.5,53.5 - parent: 1 - type: Transform -- uid: 23671 - type: WallReinforced - components: - - pos: 2.5,54.5 - parent: 1 - type: Transform -- uid: 23672 - type: WallReinforced - components: - - pos: 2.5,55.5 - parent: 1 - type: Transform -- uid: 23673 - type: WallReinforced - components: - - pos: 3.5,56.5 - parent: 1 - type: Transform -- uid: 23674 - type: FirelockGlass - components: - - pos: -11.5,43.5 - parent: 1 - type: Transform -- uid: 23675 - type: WallReinforced - components: - - pos: -7.5,43.5 - parent: 1 - type: Transform -- uid: 23676 - type: WallReinforced - components: - - pos: 3.5,59.5 - parent: 1 - type: Transform -- uid: 23677 - type: WallReinforced - components: - - pos: 2.5,56.5 - parent: 1 - type: Transform -- uid: 23678 - type: ReinforcedWindow - components: - - pos: -1.5,42.5 - parent: 1 - type: Transform -- uid: 23679 - type: WallReinforced - components: - - pos: -4.5,42.5 - parent: 1 - type: Transform -- uid: 23680 - type: WallReinforced - components: - - pos: -5.5,42.5 - parent: 1 - type: Transform -- uid: 23681 - type: WallReinforced - components: - - pos: -0.5,42.5 - parent: 1 - type: Transform -- uid: 23682 - type: WallReinforced - components: - - pos: 0.5,42.5 - parent: 1 - type: Transform -- uid: 23683 - type: WallReinforced - components: - - pos: 2.5,60.5 - parent: 1 - type: Transform -- uid: 23684 - type: Grille - components: - - pos: 2.5,50.5 - parent: 1 - type: Transform -- uid: 23685 - type: Grille - components: - - pos: 2.5,47.5 - parent: 1 - type: Transform -- uid: 23686 - type: GrilleBroken - components: - - rot: -1.5707963267948966 rad - pos: 2.5,49.5 - parent: 1 - type: Transform -- uid: 23687 - type: GrilleBroken - components: - - rot: 1.5707963267948966 rad - pos: 2.5,49.5 - parent: 1 - type: Transform -- uid: 23688 - type: GrilleBroken - components: - - rot: 3.141592653589793 rad - pos: 2.5,48.5 - parent: 1 - type: Transform -- uid: 23689 - type: GrilleBroken - components: - - pos: 2.5,48.5 - parent: 1 - type: Transform -- uid: 23690 - type: Window - components: - - pos: 2.5,47.5 - parent: 1 - type: Transform -- uid: 23691 - type: Window - components: - - pos: 2.5,50.5 - parent: 1 - type: Transform -- uid: 23692 - type: Window - components: - - pos: 2.5,51.5 - parent: 1 - type: Transform -- uid: 23693 - type: CableApcExtension - components: - - pos: -41.5,23.5 - parent: 1 - type: Transform -- uid: 23694 - type: ShardGlassReinforced - components: - - rot: 3.141592653589793 rad - pos: 2.3392181,49.47093 - parent: 1 - type: Transform -- uid: 23695 - type: ShardGlassReinforced - components: - - rot: 3.141592653589793 rad - pos: 1.651718,49.767803 - parent: 1 - type: Transform -- uid: 23696 - type: CableApcExtension - components: - - pos: -41.5,24.5 - parent: 1 - type: Transform -- uid: 23697 - type: ShardGlassReinforced - components: - - pos: 3.3860931,48.767803 - parent: 1 - type: Transform -- uid: 23698 - type: ShardGlassReinforced - components: - - rot: -1.5707963267948966 rad - pos: 1.745468,48.361553 - parent: 1 - type: Transform -- uid: 23699 - type: PartRodMetal1 - components: - - rot: -1.5707963267948966 rad - pos: 3.9014397,49.543682 - parent: 1 - type: Transform -- uid: 23700 - type: PartRodMetal1 - components: - - rot: 3.141592653589793 rad - pos: 1.4099668,48.504288 - parent: 1 - type: Transform -- uid: 23701 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 3.5,53.5 - parent: 1 - type: Transform -- uid: 23702 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 4.5,53.5 - parent: 1 - type: Transform -- uid: 23703 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 4.5,54.5 - parent: 1 - type: Transform -- uid: 23704 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 4.5,55.5 - parent: 1 - type: Transform -- uid: 23705 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 5.5,55.5 - parent: 1 - type: Transform -- uid: 23706 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 5.5,56.5 - parent: 1 - type: Transform -- uid: 23707 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 6.5,56.5 - parent: 1 - type: Transform -- uid: 23708 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 7.5,56.5 - parent: 1 - type: Transform -- uid: 23709 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 7.5,57.5 - parent: 1 - type: Transform -- uid: 23710 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 8.5,57.5 - parent: 1 - type: Transform -- uid: 23711 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 9.5,57.5 - parent: 1 - type: Transform -- uid: 23712 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 9.5,58.5 - parent: 1 - type: Transform -- uid: 23713 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 10.5,58.5 - parent: 1 - type: Transform -- uid: 23714 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 11.5,58.5 - parent: 1 - type: Transform -- uid: 23715 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 12.5,58.5 - parent: 1 - type: Transform -- uid: 23716 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 13.5,59.5 - parent: 1 - type: Transform -- uid: 23717 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 13.5,58.5 - parent: 1 - type: Transform -- uid: 23718 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 3.5,52.5 - parent: 1 - type: Transform -- uid: 23719 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 4.5,52.5 - parent: 1 - type: Transform -- uid: 23720 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 5.5,51.5 - parent: 1 - type: Transform -- uid: 23721 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 5.5,52.5 - parent: 1 - type: Transform -- uid: 23722 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 6.5,51.5 - parent: 1 - type: Transform -- uid: 23723 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 7.5,51.5 - parent: 1 - type: Transform -- uid: 23724 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 8.5,50.5 - parent: 1 - type: Transform -- uid: 23725 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 8.5,51.5 - parent: 1 - type: Transform -- uid: 23726 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 9.5,50.5 - parent: 1 - type: Transform -- uid: 23727 - type: WallReinforced - components: - - pos: 5.5,49.5 - parent: 1 - type: Transform -- uid: 23728 - type: BlastDoorBridge - components: - - pos: 10.5,47.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -197959.9 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 23745 - Close: - - port: Off - uid: 23745 - Toggle: [] - type: SignalReceiver -- uid: 23729 - type: BlastDoorBridge - components: - - pos: 10.5,49.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -197959.9 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 23745 - Close: - - port: Off - uid: 23745 - Toggle: [] - type: SignalReceiver -- uid: 23730 - type: BlastDoorBridge - components: - - pos: 10.5,48.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -197959.9 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 23745 - Close: - - port: Off - uid: 23745 - Toggle: [] - type: SignalReceiver -- uid: 23731 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 9.5,46.5 - parent: 1 - type: Transform -- uid: 23732 - type: WallReinforced - components: - - pos: 10.5,50.5 - parent: 1 - type: Transform -- uid: 23733 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 8.5,45.5 - parent: 1 - type: Transform -- uid: 23734 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 7.5,45.5 - parent: 1 - type: Transform -- uid: 23735 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 9.5,45.5 - parent: 1 - type: Transform -- uid: 23736 - type: WallReinforced - components: - - pos: 10.5,46.5 - parent: 1 - type: Transform -- uid: 23737 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 7.5,44.5 - parent: 1 - type: Transform -- uid: 23738 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 6.5,44.5 - parent: 1 - type: Transform -- uid: 23739 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 5.5,44.5 - parent: 1 - type: Transform -- uid: 23740 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 4.5,44.5 - parent: 1 - type: Transform -- uid: 23741 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 4.5,45.5 - parent: 1 - type: Transform -- uid: 23742 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 3.5,46.5 - parent: 1 - type: Transform -- uid: 23743 - type: AsteroidRock - components: - - rot: 3.141592653589793 rad - pos: 4.5,46.5 - parent: 1 - type: Transform -- uid: 23744 - type: Floodlight - components: - - pos: 6.532791,48.672844 - parent: 1 - type: Transform -- uid: 23745 - type: SignalSwitch - components: - - pos: 5.5,49.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 23729 - - port: Open - uid: 23730 - - port: Open - uid: 23728 - Off: - - port: Close - uid: 23729 - - port: Close - uid: 23730 - - port: Close - uid: 23728 - type: SignalTransmitter -- uid: 23746 - type: AsteroidRock - components: - - pos: 10.5,51.5 - parent: 1 - type: Transform -- uid: 23747 - type: AsteroidRock - components: - - pos: 9.5,51.5 - parent: 1 - type: Transform -- uid: 23748 - type: AsteroidRock - components: - - pos: 8.5,52.5 - parent: 1 - type: Transform -- uid: 23749 - type: AsteroidRock - components: - - pos: 7.5,52.5 - parent: 1 - type: Transform -- uid: 23750 - type: AsteroidRock - components: - - pos: 6.5,52.5 - parent: 1 - type: Transform -- uid: 23751 - type: AsteroidRock - components: - - pos: 5.5,54.5 - parent: 1 - type: Transform -- uid: 23752 - type: AsteroidRock - components: - - pos: 4.5,53.5 - parent: 1 - type: Transform -- uid: 23753 - type: AsteroidRock - components: - - pos: 5.5,53.5 - parent: 1 - type: Transform -- uid: 23754 - type: AsteroidRock - components: - - pos: 6.5,55.5 - parent: 1 - type: Transform -- uid: 23755 - type: AsteroidRock - components: - - pos: 8.5,56.5 - parent: 1 - type: Transform -- uid: 23756 - type: AsteroidRock - components: - - pos: 9.5,56.5 - parent: 1 - type: Transform -- uid: 23757 - type: AsteroidRock - components: - - pos: 10.5,57.5 - parent: 1 - type: Transform -- uid: 23758 - type: AsteroidRock - components: - - pos: 10.5,56.5 - parent: 1 - type: Transform -- uid: 23759 - type: AsteroidRock - components: - - pos: 11.5,57.5 - parent: 1 - type: Transform -- uid: 23760 - type: AsteroidRock - components: - - pos: 12.5,57.5 - parent: 1 - type: Transform -- uid: 23761 - type: AsteroidRock - components: - - pos: 13.5,57.5 - parent: 1 - type: Transform -- uid: 23762 - type: AsteroidRock - components: - - pos: 14.5,59.5 - parent: 1 - type: Transform -- uid: 23763 - type: AsteroidRock - components: - - pos: 15.5,59.5 - parent: 1 - type: Transform -- uid: 23764 - type: AsteroidRock - components: - - pos: 17.5,59.5 - parent: 1 - type: Transform -- uid: 23765 - type: AsteroidRock - components: - - pos: 16.5,59.5 - parent: 1 - type: Transform -- uid: 23766 - type: AsteroidRock - components: - - pos: 18.5,59.5 - parent: 1 - type: Transform -- uid: 23767 - type: AsteroidRock - components: - - pos: 11.5,46.5 - parent: 1 - type: Transform -- uid: 23768 - type: AsteroidRock - components: - - pos: 12.5,46.5 - parent: 1 - type: Transform -- uid: 23769 - type: AsteroidRock - components: - - pos: 13.5,45.5 - parent: 1 - type: Transform -- uid: 23770 - type: AsteroidRock - components: - - pos: 13.5,46.5 - parent: 1 - type: Transform -- uid: 23771 - type: AsteroidRock - components: - - pos: 14.5,45.5 - parent: 1 - type: Transform -- uid: 23772 - type: AsteroidRock - components: - - pos: 14.5,44.5 - parent: 1 - type: Transform -- uid: 23773 - type: AsteroidRock - components: - - pos: 15.5,44.5 - parent: 1 - type: Transform -- uid: 23774 - type: AsteroidRock - components: - - pos: 5.5,43.5 - parent: 1 - type: Transform -- uid: 23775 - type: AsteroidRock - components: - - pos: 6.5,43.5 - parent: 1 - type: Transform -- uid: 23776 - type: AsteroidRock - components: - - pos: 6.5,42.5 - parent: 1 - type: Transform -- uid: 23777 - type: AsteroidRock - components: - - pos: 7.5,41.5 - parent: 1 - type: Transform -- uid: 23778 - type: RandomPosterContraband - components: - - pos: -9.5,-94.5 - parent: 1 - type: Transform -- uid: 23779 - type: AsteroidRock - components: - - pos: 9.5,41.5 - parent: 1 - type: Transform -- uid: 23780 - type: AsteroidRock - components: - - pos: 11.5,41.5 - parent: 1 - type: Transform -- uid: 23781 - type: AsteroidRock - components: - - pos: 10.5,41.5 - parent: 1 - type: Transform -- uid: 23782 - type: AsteroidRock - components: - - pos: 12.5,42.5 - parent: 1 - type: Transform -- uid: 23783 - type: AsteroidRock - components: - - pos: 11.5,42.5 - parent: 1 - type: Transform -- uid: 23784 - type: AsteroidRock - components: - - pos: 7.5,42.5 - parent: 1 - type: Transform -- uid: 23785 - type: AsteroidRock - components: - - pos: 18.5,58.5 - parent: 1 - type: Transform -- uid: 23786 - type: AsteroidRock - components: - - pos: 19.5,58.5 - parent: 1 - type: Transform -- uid: 23787 - type: AsteroidRock - components: - - pos: 20.5,58.5 - parent: 1 - type: Transform -- uid: 23788 - type: AsteroidRock - components: - - pos: 21.5,58.5 - parent: 1 - type: Transform -- uid: 23789 - type: AsteroidRock - components: - - pos: 22.5,58.5 - parent: 1 - type: Transform -- uid: 23790 - type: AsteroidRock - components: - - pos: 22.5,57.5 - parent: 1 - type: Transform -- uid: 23791 - type: AsteroidRock - components: - - pos: 23.5,57.5 - parent: 1 - type: Transform -- uid: 23792 - type: AsteroidRock - components: - - pos: 24.5,57.5 - parent: 1 - type: Transform -- uid: 23793 - type: AsteroidRock - components: - - pos: 24.5,56.5 - parent: 1 - type: Transform -- uid: 23794 - type: AsteroidRock - components: - - pos: 24.5,55.5 - parent: 1 - type: Transform -- uid: 23795 - type: AsteroidRock - components: - - pos: 25.5,55.5 - parent: 1 - type: Transform -- uid: 23796 - type: AsteroidRock - components: - - pos: 25.5,54.5 - parent: 1 - type: Transform -- uid: 23797 - type: AsteroidRock - components: - - pos: 25.5,53.5 - parent: 1 - type: Transform -- uid: 23798 - type: WallReinforced - components: - - pos: 34.5,49.5 - parent: 1 - type: Transform -- uid: 23799 - type: WallReinforced - components: - - pos: 35.5,49.5 - parent: 1 - type: Transform -- uid: 23800 - type: BlastDoorExterior1Open - components: - - rot: -1.5707963267948966 rad - pos: 24.5,46.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -192947.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 25915 - Close: - - port: Off - uid: 25915 - Toggle: [] - type: SignalReceiver -- uid: 23801 - type: BlastDoorExterior1Open - components: - - rot: -1.5707963267948966 rad - pos: 23.5,46.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -192947.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 25915 - Close: - - port: Off - uid: 25915 - Toggle: [] - type: SignalReceiver -- uid: 23802 - type: BlastDoorExterior1Open - components: - - rot: -1.5707963267948966 rad - pos: 25.5,46.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -192947.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 25915 - Close: - - port: Off - uid: 25915 - Toggle: [] - type: SignalReceiver -- uid: 23803 - type: BlastDoorExterior1Open - components: - - rot: -1.5707963267948966 rad - pos: 26.5,44.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -192947.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 25915 - Close: - - port: Off - uid: 25915 - Toggle: [] - type: SignalReceiver -- uid: 23804 - type: BlastDoorExterior1Open - components: - - rot: -1.5707963267948966 rad - pos: 24.5,44.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -192947.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 25915 - Close: - - port: Off - uid: 25915 - Toggle: [] - type: SignalReceiver -- uid: 23805 - type: AirlockExternalGlass - components: - - pos: 27.5,45.5 - parent: 1 - type: Transform -- uid: 23806 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: 19.5,43.5 - parent: 1 - type: Transform -- uid: 23807 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: 20.5,43.5 - parent: 1 - type: Transform -- uid: 23808 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: 21.5,48.5 - parent: 1 - type: Transform -- uid: 23809 - type: AsteroidRock - components: - - pos: 13.5,42.5 - parent: 1 - type: Transform -- uid: 23810 - type: AsteroidRock - components: - - pos: 14.5,42.5 - parent: 1 - type: Transform -- uid: 23811 - type: AsteroidRock - components: - - pos: 15.5,44.5 - parent: 1 - type: Transform -- uid: 23812 - type: AsteroidRock - components: - - pos: 14.5,43.5 - parent: 1 - type: Transform -- uid: 23813 - type: AsteroidRock - components: - - pos: 15.5,42.5 - parent: 1 - type: Transform -- uid: 23814 - type: AsteroidRock - components: - - pos: 15.5,43.5 - parent: 1 - type: Transform -- uid: 23815 - type: AsteroidRock - components: - - pos: 11.5,51.5 - parent: 1 - type: Transform -- uid: 23816 - type: AsteroidRock - components: - - pos: 12.5,51.5 - parent: 1 - type: Transform -- uid: 23817 - type: AsteroidRock - components: - - pos: 13.5,51.5 - parent: 1 - type: Transform -- uid: 23818 - type: AsteroidRock - components: - - pos: 14.5,51.5 - parent: 1 - type: Transform -- uid: 23819 - type: AsteroidRock - components: - - pos: 15.5,50.5 - parent: 1 - type: Transform -- uid: 23820 - type: AsteroidRock - components: - - pos: 16.5,50.5 - parent: 1 - type: Transform -- uid: 23821 - type: AsteroidRock - components: - - pos: 16.5,49.5 - parent: 1 - type: Transform -- uid: 23822 - type: AsteroidRock - components: - - pos: 16.5,48.5 - parent: 1 - type: Transform -- uid: 23823 - type: AsteroidRock - components: - - pos: 15.5,47.5 - parent: 1 - type: Transform -- uid: 23824 - type: AsteroidRock - components: - - pos: 16.5,47.5 - parent: 1 - type: Transform -- uid: 23825 - type: AsteroidRock - components: - - pos: 15.5,51.5 - parent: 1 - type: Transform -- uid: 23826 - type: AsteroidRock - components: - - pos: 17.5,48.5 - parent: 1 - type: Transform -- uid: 23827 - type: AsteroidRock - components: - - pos: 18.5,48.5 - parent: 1 - type: Transform -- uid: 23828 - type: AsteroidRock - components: - - pos: 19.5,48.5 - parent: 1 - type: Transform -- uid: 23829 - type: AsteroidRock - components: - - pos: 18.5,49.5 - parent: 1 - type: Transform -- uid: 23830 - type: AsteroidRock - components: - - pos: 17.5,49.5 - parent: 1 - type: Transform -- uid: 23831 - type: AsteroidRock - components: - - pos: 17.5,50.5 - parent: 1 - type: Transform -- uid: 23832 - type: AsteroidRock - components: - - pos: 16.5,51.5 - parent: 1 - type: Transform -- uid: 23833 - type: AsteroidRock - components: - - pos: 12.5,56.5 - parent: 1 - type: Transform -- uid: 23834 - type: AsteroidRock - components: - - pos: 13.5,56.5 - parent: 1 - type: Transform -- uid: 23835 - type: AsteroidRock - components: - - pos: 13.5,55.5 - parent: 1 - type: Transform -- uid: 23836 - type: AsteroidRock - components: - - pos: 14.5,55.5 - parent: 1 - type: Transform -- uid: 23837 - type: AsteroidRock - components: - - pos: 14.5,54.5 - parent: 1 - type: Transform -- uid: 23838 - type: AsteroidRock - components: - - pos: 13.5,52.5 - parent: 1 - type: Transform -- uid: 23839 - type: AsteroidRock - components: - - pos: 17.5,51.5 - parent: 1 - type: Transform -- uid: 23840 - type: AsteroidRock - components: - - pos: 17.5,52.5 - parent: 1 - type: Transform -- uid: 23841 - type: AsteroidRock - components: - - pos: 18.5,51.5 - parent: 1 - type: Transform -- uid: 23842 - type: AsteroidRock - components: - - pos: 18.5,52.5 - parent: 1 - type: Transform -- uid: 23843 - type: AsteroidRock - components: - - pos: 18.5,53.5 - parent: 1 - type: Transform -- uid: 23844 - type: AsteroidRock - components: - - pos: 19.5,53.5 - parent: 1 - type: Transform -- uid: 23845 - type: AsteroidRock - components: - - pos: 20.5,54.5 - parent: 1 - type: Transform -- uid: 23846 - type: AsteroidRock - components: - - pos: 20.5,53.5 - parent: 1 - type: Transform -- uid: 23847 - type: AsteroidRock - components: - - pos: 21.5,54.5 - parent: 1 - type: Transform -- uid: 23848 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 21.5,44.5 - parent: 1 - type: Transform -- uid: 23849 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 21.5,46.5 - parent: 1 - type: Transform -- uid: 23850 - type: BlastDoorExterior1Open - components: - - rot: -1.5707963267948966 rad - pos: 23.5,44.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -192947.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 25915 - Close: - - port: Off - uid: 25915 - Toggle: [] - type: SignalReceiver -- uid: 23851 - type: BlastDoorExterior1Open - components: - - rot: -1.5707963267948966 rad - pos: 25.5,44.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -192947.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 25915 - Close: - - port: Off - uid: 25915 - Toggle: [] - type: SignalReceiver -- uid: 23852 - type: BlastDoorExterior1Open - components: - - rot: -1.5707963267948966 rad - pos: 26.5,46.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -192947.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 25915 - Close: - - port: Off - uid: 25915 - Toggle: [] - type: SignalReceiver -- uid: 23853 - type: BlastDoorExterior1Open - components: - - rot: -1.5707963267948966 rad - pos: 22.5,44.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -192947.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 25915 - Close: - - port: Off - uid: 25915 - Toggle: [] - type: SignalReceiver -- uid: 23854 - type: BlastDoorExterior1Open - components: - - rot: -1.5707963267948966 rad - pos: 22.5,46.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -192947.94 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 25915 - Close: - - port: Off - uid: 25915 - Toggle: [] - type: SignalReceiver -- uid: 23855 - type: AsteroidRock - components: - - pos: 17.5,45.5 - parent: 1 - type: Transform -- uid: 23856 - type: AsteroidRock - components: - - pos: 23.5,50.5 - parent: 1 - type: Transform -- uid: 23857 - type: AsteroidRock - components: - - pos: 22.5,50.5 - parent: 1 - type: Transform -- uid: 23858 - type: AsteroidRock - components: - - pos: 22.5,49.5 - parent: 1 - type: Transform -- uid: 23859 - type: AsteroidRock - components: - - pos: 21.5,49.5 - parent: 1 - type: Transform -- uid: 23860 - type: AsteroidRock - components: - - pos: 21.5,50.5 - parent: 1 - type: Transform -- uid: 23861 - type: AsteroidRock - components: - - pos: 23.5,51.5 - parent: 1 - type: Transform -- uid: 23862 - type: AsteroidRock - components: - - pos: 23.5,52.5 - parent: 1 - type: Transform -- uid: 23863 - type: AsteroidRock - components: - - pos: 23.5,53.5 - parent: 1 - type: Transform -- uid: 23864 - type: AsteroidRock - components: - - pos: 18.5,57.5 - parent: 1 - type: Transform -- uid: 23865 - type: AsteroidRock - components: - - pos: 18.5,56.5 - parent: 1 - type: Transform -- uid: 23866 - type: AsteroidRock - components: - - pos: 18.5,55.5 - parent: 1 - type: Transform -- uid: 23867 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 23868 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: -19.5,33.5 - parent: 1 - type: Transform -- uid: 23869 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: -19.5,34.5 - parent: 1 - type: Transform -- uid: 23870 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: -19.5,35.5 - parent: 1 - type: Transform -- uid: 23871 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: -18.5,33.5 - parent: 1 - type: Transform -- uid: 23872 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: -18.5,34.5 - parent: 1 - type: Transform -- uid: 23873 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: -18.5,35.5 - parent: 1 - type: Transform -- uid: 23874 - type: Bed - components: - - pos: -10.5,31.5 - parent: 1 - type: Transform -- uid: 23875 - type: Dresser - components: - - pos: -10.5,32.5 - parent: 1 - type: Transform -- uid: 23876 - type: TableWood - components: - - pos: -12.5,35.5 - parent: 1 - type: Transform -- uid: 23877 - type: ComputerTelevision - components: - - pos: -11.5,35.5 - parent: 1 - type: Transform -- uid: 23878 - type: TableWood - components: - - pos: -12.5,32.5 - parent: 1 - type: Transform -- uid: 23879 - type: TableWood - components: - - pos: -12.5,31.5 - parent: 1 - type: Transform -- uid: 23880 - type: GasPipeStraight - components: - - pos: -16.5,35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23881 - type: GasPipeStraight - components: - - pos: -16.5,36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23882 - type: GasPipeStraight - components: - - pos: -16.5,37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23883 - type: GasPipeStraight - components: - - pos: -16.5,38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23884 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -16.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23885 - type: GasPipeStraight - components: - - pos: -16.5,40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23886 - type: GasPipeStraight - components: - - pos: -16.5,41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23887 - type: GasPipeStraight - components: - - pos: -16.5,42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23888 - type: GasPipeFourway - components: - - pos: -16.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23889 - type: GasPipeStraight - components: - - pos: -15.5,34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23890 - type: GasPipeStraight - components: - - pos: -15.5,35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23891 - type: GasPipeStraight - components: - - pos: -15.5,36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23892 - type: GasPipeStraight - components: - - pos: -15.5,37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23893 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -15.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23894 - type: GasPipeStraight - components: - - pos: -15.5,39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23895 - type: GasPipeStraight - components: - - pos: -15.5,40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23896 - type: GasPipeStraight - components: - - pos: -15.5,41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23897 - type: GasPipeStraight - components: - - pos: -15.5,42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23898 - type: GasPipeStraight - components: - - pos: -15.5,43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23899 - type: GasPipeFourway - components: - - pos: -15.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23900 - type: GasPipeStraight - components: - - pos: -16.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23901 - type: GasPipeStraight - components: - - pos: -16.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23902 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -16.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23903 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23904 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23905 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23906 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23907 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23908 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23909 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 23910 - type: GasPipeBend - components: - - pos: -15.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23911 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23912 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -17.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23913 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23914 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23915 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23916 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -17.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23917 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23918 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23919 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23920 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -14.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23921 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23922 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -14.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23923 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -20.5,43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23924 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -20.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23925 - type: GasVentPump - components: - - pos: -14.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23926 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23927 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23928 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23929 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23930 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23931 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 23932 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -15.5,29.5 - parent: 1 - type: Transform -- uid: 23933 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,30.5 - parent: 1 - type: Transform -- uid: 23934 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,31.5 - parent: 1 - type: Transform -- uid: 23935 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,32.5 - parent: 1 - type: Transform -- uid: 23936 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,33.5 - parent: 1 - type: Transform -- uid: 23937 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,34.5 - parent: 1 - type: Transform -- uid: 23938 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,35.5 - parent: 1 - type: Transform -- uid: 23939 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -15.5,36.5 - parent: 1 - type: Transform -- uid: 23940 - type: DisposalJunction - components: - - pos: -15.5,37.5 - parent: 1 - type: Transform -- uid: 23941 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,37.5 - parent: 1 - type: Transform -- uid: 23942 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -17.5,37.5 - parent: 1 - type: Transform -- uid: 23943 - type: DisposalUnit - components: - - pos: -17.5,37.5 - parent: 1 - type: Transform -- uid: 23944 - type: DisposalPipe - components: - - pos: -15.5,38.5 - parent: 1 - type: Transform -- uid: 23945 - type: DisposalPipe - components: - - pos: -15.5,39.5 - parent: 1 - type: Transform -- uid: 23946 - type: DisposalPipe - components: - - pos: -15.5,40.5 - parent: 1 - type: Transform -- uid: 23947 - type: DisposalPipe - components: - - pos: -15.5,41.5 - parent: 1 - type: Transform -- uid: 23948 - type: DisposalPipe - components: - - pos: -15.5,42.5 - parent: 1 - type: Transform -- uid: 23949 - type: DisposalPipe - components: - - pos: -15.5,43.5 - parent: 1 - type: Transform -- uid: 23950 - type: DisposalYJunction - components: - - pos: -15.5,44.5 - parent: 1 - type: Transform -- uid: 23951 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,44.5 - parent: 1 - type: Transform -- uid: 23952 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,44.5 - parent: 1 - type: Transform -- uid: 23953 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -12.5,44.5 - parent: 1 - type: Transform -- uid: 23954 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -11.5,44.5 - parent: 1 - type: Transform -- uid: 23955 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,44.5 - parent: 1 - type: Transform -- uid: 23956 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -17.5,44.5 - parent: 1 - type: Transform -- uid: 23957 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,45.5 - parent: 1 - type: Transform -- uid: 23958 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,46.5 - parent: 1 - type: Transform -- uid: 23959 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,47.5 - parent: 1 - type: Transform -- uid: 23960 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,48.5 - parent: 1 - type: Transform -- uid: 23961 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -17.5,49.5 - parent: 1 - type: Transform -- uid: 23962 - type: CableApcExtension - components: - - pos: -14.5,44.5 - parent: 1 - type: Transform -- uid: 23963 - type: CableApcExtension - components: - - pos: -13.5,44.5 - parent: 1 - type: Transform -- uid: 23964 - type: CableApcExtension - components: - - pos: -12.5,44.5 - parent: 1 - type: Transform -- uid: 23965 - type: CableApcExtension - components: - - pos: -11.5,44.5 - parent: 1 - type: Transform -- uid: 23966 - type: CableApcExtension - components: - - pos: -10.5,44.5 - parent: 1 - type: Transform -- uid: 23967 - type: CableApcExtension - components: - - pos: -15.5,46.5 - parent: 1 - type: Transform -- uid: 23968 - type: CableApcExtension - components: - - pos: -14.5,46.5 - parent: 1 - type: Transform -- uid: 23969 - type: CableApcExtension - components: - - pos: -13.5,46.5 - parent: 1 - type: Transform -- uid: 23970 - type: CableApcExtension - components: - - pos: -12.5,46.5 - parent: 1 - type: Transform -- uid: 23971 - type: CableApcExtension - components: - - pos: -11.5,46.5 - parent: 1 - type: Transform -- uid: 23972 - type: CableApcExtension - components: - - pos: -10.5,46.5 - parent: 1 - type: Transform -- uid: 23973 - type: ClosetEmergencyFilledRandom - components: - - pos: -17.5,38.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 23974 - type: UnfinishedMachineFrame - components: - - pos: -10.5,39.5 - parent: 1 - type: Transform -- uid: 23975 - type: ComputerFrame - components: - - pos: -10.5,37.5 - parent: 1 - type: Transform -- uid: 23976 - type: BedsheetSpawner - components: - - pos: -19.5,33.5 - parent: 1 - type: Transform -- uid: 23977 - type: WallReinforced - components: - - pos: 59.5,35.5 - parent: 1 - type: Transform -- uid: 23978 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 42.5,37.5 - parent: 1 - type: Transform -- uid: 23979 - type: WallSolid - components: - - pos: 45.5,34.5 - parent: 1 - type: Transform -- uid: 23980 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 44.5,34.5 - parent: 1 - type: Transform -- uid: 23981 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 44.5,36.5 - parent: 1 - type: Transform -- uid: 23982 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 44.5,35.5 - parent: 1 - type: Transform -- uid: 23983 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 43.5,38.5 - parent: 1 - type: Transform -- uid: 23984 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 44.5,40.5 - parent: 1 - type: Transform -- uid: 23985 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 44.5,39.5 - parent: 1 - type: Transform -- uid: 23986 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 44.5,38.5 - parent: 1 - type: Transform -- uid: 23987 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 42.5,36.5 - parent: 1 - type: Transform -- uid: 23988 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 46.5,40.5 - parent: 1 - type: Transform -- uid: 23989 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 48.5,40.5 - parent: 1 - type: Transform -- uid: 23990 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 48.5,41.5 - parent: 1 - type: Transform -- uid: 23991 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 47.5,40.5 - parent: 1 - type: Transform -- uid: 23992 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 45.5,40.5 - parent: 1 - type: Transform -- uid: 23993 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 43.5,36.5 - parent: 1 - type: Transform -- uid: 23994 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 43.5,37.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 24015 - Forward: - - port: Left - uid: 24015 - Off: - - port: Middle - uid: 24015 - type: SignalReceiver -- uid: 23995 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 44.5,37.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 24015 - Forward: - - port: Left - uid: 24015 - Off: - - port: Middle - uid: 24015 - type: SignalReceiver -- uid: 23996 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 45.5,37.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 24015 - Forward: - - port: Left - uid: 24015 - Off: - - port: Middle - uid: 24015 - type: SignalReceiver -- uid: 23997 - type: ConveyorBelt - components: - - pos: 46.5,37.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 24015 - Forward: - - port: Left - uid: 24015 - Off: - - port: Middle - uid: 24015 - type: SignalReceiver -- uid: 23998 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 46.5,36.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 24015 - Forward: - - port: Left - uid: 24015 - Off: - - port: Middle - uid: 24015 - type: SignalReceiver -- uid: 23999 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: 47.5,36.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 24015 - Forward: - - port: Left - uid: 24015 - Off: - - port: Middle - uid: 24015 - type: SignalReceiver -- uid: 24000 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: 48.5,36.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 24015 - Forward: - - port: Left - uid: 24015 - Off: - - port: Middle - uid: 24015 - type: SignalReceiver -- uid: 24001 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: 48.5,37.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 24015 - Forward: - - port: Left - uid: 24015 - Off: - - port: Middle - uid: 24015 - type: SignalReceiver -- uid: 24002 - type: PlasticFlapsOpaque - components: - - rot: 3.141592653589793 rad - pos: 44.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24003 - type: CableApcExtension - components: - - pos: 52.5,39.5 - parent: 1 - type: Transform -- uid: 24004 - type: CableApcExtension - components: - - pos: 51.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24005 - type: CableApcExtension - components: - - pos: 49.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24006 - type: CableApcExtension - components: - - pos: 48.5,39.5 - parent: 1 - type: Transform -- uid: 24007 - type: CableApcExtension - components: - - pos: 47.5,38.5 - parent: 1 - type: Transform -- uid: 24008 - type: CableApcExtension - components: - - pos: 47.5,39.5 - parent: 1 - type: Transform -- uid: 24009 - type: CableApcExtension - components: - - pos: 47.5,37.5 - parent: 1 - type: Transform -- uid: 24010 - type: CableApcExtension - components: - - pos: 46.5,37.5 - parent: 1 - type: Transform -- uid: 24011 - type: CableApcExtension - components: - - pos: 45.5,37.5 - parent: 1 - type: Transform -- uid: 24012 - type: CableApcExtension - components: - - pos: 45.5,36.5 - parent: 1 - type: Transform -- uid: 24013 - type: CableApcExtension - components: - - pos: 45.5,35.5 - parent: 1 - type: Transform -- uid: 24014 - type: CableApcExtension - components: - - pos: 46.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24015 - type: TwoWayLever - components: - - pos: 47.5,39.5 - parent: 1 - type: Transform - - nextSignalLeft: True - type: TwoWayLever - - outputs: - Left: - - port: Forward - uid: 23994 - - port: Forward - uid: 23995 - - port: Forward - uid: 23996 - - port: Forward - uid: 23997 - - port: Forward - uid: 23998 - - port: Forward - uid: 23999 - - port: Forward - uid: 24000 - - port: Forward - uid: 24001 - - port: Forward - uid: 26155 - Right: - - port: Reverse - uid: 23994 - - port: Reverse - uid: 23995 - - port: Reverse - uid: 23996 - - port: Reverse - uid: 23997 - - port: Reverse - uid: 23998 - - port: Reverse - uid: 23999 - - port: Reverse - uid: 24000 - - port: Reverse - uid: 24001 - - port: Reverse - uid: 26155 - Middle: - - port: Off - uid: 23994 - - port: Off - uid: 23995 - - port: Off - uid: 23996 - - port: Off - uid: 23997 - - port: Off - uid: 23998 - - port: Off - uid: 23999 - - port: Off - uid: 24000 - - port: Off - uid: 24001 - - port: Off - uid: 26155 - type: SignalTransmitter -- uid: 24016 - type: CableApcExtension - components: - - pos: 46.5,33.5 - parent: 1 - type: Transform -- uid: 24017 - type: CableApcExtension - components: - - pos: 46.5,32.5 - parent: 1 - type: Transform -- uid: 24018 - type: CableApcExtension - components: - - pos: 47.5,32.5 - parent: 1 - type: Transform -- uid: 24019 - type: CableApcExtension - components: - - pos: 48.5,32.5 - parent: 1 - type: Transform -- uid: 24020 - type: CableApcExtension - components: - - pos: 49.5,32.5 - parent: 1 - type: Transform -- uid: 24021 - type: CableApcExtension - components: - - pos: 52.5,40.5 - parent: 1 - type: Transform -- uid: 24022 - type: CableApcExtension - components: - - pos: 52.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24023 - type: CableApcExtension - components: - - pos: 49.5,38.5 - parent: 1 - type: Transform -- uid: 24024 - type: CableApcExtension - components: - - pos: 49.5,37.5 - parent: 1 - type: Transform -- uid: 24025 - type: CableApcExtension - components: - - pos: 49.5,36.5 - parent: 1 - type: Transform -- uid: 24026 - type: PlushieNuke - components: - - pos: 54.50363,58.48181 - parent: 1 - type: Transform -- uid: 24027 - type: AirlockMaintGlass - components: - - pos: 52.5,41.5 - parent: 1 - type: Transform -- uid: 24028 - type: PoweredSmallLight - components: - - pos: 46.5,39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24029 - type: WindowReinforcedDirectional - components: - - pos: 45.5,38.5 - parent: 1 - type: Transform -- uid: 24030 - type: WindowReinforcedDirectional - components: - - pos: 46.5,38.5 - parent: 1 - type: Transform -- uid: 24031 - type: WindowReinforcedDirectional - components: - - pos: 47.5,38.5 - parent: 1 - type: Transform -- uid: 24032 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 49.5,37.5 - parent: 1 - type: Transform -- uid: 24033 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 49.5,36.5 - parent: 1 - type: Transform -- uid: 24034 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 48.5,35.5 - parent: 1 - type: Transform -- uid: 24035 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 47.5,35.5 - parent: 1 - type: Transform -- uid: 24036 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 46.5,35.5 - parent: 1 - type: Transform -- uid: 24037 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: 45.5,36.5 - parent: 1 - type: Transform -- uid: 24038 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 45.5,36.5 - parent: 1 - type: Transform -- uid: 24039 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 45.5,33.5 - parent: 1 - type: Transform -- uid: 24040 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 49.5,38.5 - parent: 1 - type: Transform -- uid: 24041 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 49.5,37.5 - parent: 1 - type: Transform -- uid: 24042 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 49.5,36.5 - parent: 1 - type: Transform -- uid: 24043 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 49.5,35.5 - parent: 1 - type: Transform -- uid: 24044 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 48.5,35.5 - parent: 1 - type: Transform -- uid: 24045 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 47.5,35.5 - parent: 1 - type: Transform -- uid: 24046 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,31.5 - parent: 1 - type: Transform -- uid: 24047 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,32.5 - parent: 1 - type: Transform -- uid: 24048 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,33.5 - parent: 1 - type: Transform -- uid: 24049 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 41.5,42.5 - parent: 1 - type: Transform -- uid: 24050 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 42.5,34.5 - parent: 1 - type: Transform -- uid: 24051 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 41.5,34.5 - parent: 1 - type: Transform -- uid: 24052 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 41.5,33.5 - parent: 1 - type: Transform -- uid: 24053 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 41.5,29.5 - parent: 1 - type: Transform -- uid: 24054 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 42.5,28.5 - parent: 1 - type: Transform -- uid: 24055 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 42.5,29.5 - parent: 1 - type: Transform -- uid: 24056 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 43.5,28.5 - parent: 1 - type: Transform -- uid: 24057 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 41.5,32.5 - parent: 1 - type: Transform -- uid: 24058 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 41.5,31.5 - parent: 1 - type: Transform -- uid: 24059 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 41.5,30.5 - parent: 1 - type: Transform -- uid: 24060 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 41.5,32.5 - parent: 1 - type: Transform -- uid: 24061 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 41.5,31.5 - parent: 1 - type: Transform -- uid: 24062 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 41.5,30.5 - parent: 1 - type: Transform -- uid: 24063 - type: CableApcStack1 - components: - - rot: 3.141592653589793 rad - pos: 55.427982,45.52066 - parent: 1 - type: Transform -- uid: 24064 - type: CarpetBlack - components: - - rot: 3.141592653589793 rad - pos: -12.5,32.5 - parent: 1 - type: Transform -- uid: 24065 - type: CarpetBlack - components: - - rot: 3.141592653589793 rad - pos: -12.5,31.5 - parent: 1 - type: Transform -- uid: 24066 - type: CarpetBlack - components: - - rot: 3.141592653589793 rad - pos: -11.5,32.5 - parent: 1 - type: Transform -- uid: 24067 - type: CarpetBlack - components: - - rot: 3.141592653589793 rad - pos: -11.5,31.5 - parent: 1 - type: Transform -- uid: 24068 - type: CarpetBlack - components: - - rot: 3.141592653589793 rad - pos: -10.5,32.5 - parent: 1 - type: Transform -- uid: 24069 - type: CarpetBlack - components: - - rot: 3.141592653589793 rad - pos: -10.5,31.5 - parent: 1 - type: Transform -- uid: 24070 - type: CrateEmptySpawner - components: - - pos: 6.5,49.5 - parent: 1 - type: Transform -- uid: 24071 - type: CableApcExtension - components: - - pos: 6.5,48.5 - parent: 1 - type: Transform -- uid: 24072 - type: CableApcExtension - components: - - pos: 5.5,48.5 - parent: 1 - type: Transform -- uid: 24073 - type: CableApcExtension - components: - - pos: 4.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24074 - type: CableApcExtension - components: - - pos: 3.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24075 - type: CableApcExtension - components: - - pos: 3.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24076 - type: CableApcExtension - components: - - pos: 2.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24077 - type: CableApcExtension - components: - - pos: 1.5,49.5 - parent: 1 - type: Transform -- uid: 24078 - type: GasPipeStraight - components: - - pos: 1.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24079 - type: AsteroidRock - components: - - pos: 60.5,54.5 - parent: 1 - type: Transform -- uid: 24080 - type: AsteroidRock - components: - - pos: 68.5,43.5 - parent: 1 - type: Transform -- uid: 24081 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 57.5,36.5 - parent: 1 - type: Transform -- uid: 24082 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 56.5,38.5 - parent: 1 - type: Transform -- uid: 24083 - type: WallReinforced - components: - - pos: 71.5,-65.5 - parent: 1 - type: Transform -- uid: 24084 - type: PoweredSmallLight - components: - - pos: 54.5,50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24085 - type: PoweredSmallLight - components: - - pos: 45.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24086 - type: CableApcExtension - components: - - pos: 58.5,27.5 - parent: 1 - type: Transform -- uid: 24087 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24088 - type: CableApcExtension - components: - - pos: 59.5,28.5 - parent: 1 - type: Transform -- uid: 24089 - type: AirlockMaintGlass - components: - - rot: 1.5707963267948966 rad - pos: 52.5,34.5 - parent: 1 - type: Transform -- uid: 24090 - type: CableApcExtension - components: - - pos: 58.5,28.5 - parent: 1 - type: Transform -- uid: 24091 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 45.5,40.5 - parent: 1 - type: Transform -- uid: 24092 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 47.5,40.5 - parent: 1 - type: Transform -- uid: 24093 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 43.5,34.5 - parent: 1 - type: Transform -- uid: 24094 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 40.5,42.5 - parent: 1 - type: Transform -- uid: 24095 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 39.5,42.5 - parent: 1 - type: Transform -- uid: 24096 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 62.5,30.5 - parent: 1 - type: Transform -- uid: 24097 - type: AirlockExternalGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: 63.5,30.5 - parent: 1 - type: Transform -- uid: 24098 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 64.5,30.5 - parent: 1 - type: Transform -- uid: 24099 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 65.5,30.5 - parent: 1 - type: Transform -- uid: 24100 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 65.5,28.5 - parent: 1 - type: Transform -- uid: 24101 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 65.5,29.5 - parent: 1 - type: Transform -- uid: 24102 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 41.5,42.5 - parent: 1 - type: Transform -- uid: 24103 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 40.5,42.5 - parent: 1 - type: Transform -- uid: 24104 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 39.5,42.5 - parent: 1 - type: Transform -- uid: 24105 - type: WallReinforced - components: - - pos: 30.5,48.5 - parent: 1 - type: Transform -- uid: 24106 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 27.5,47.5 - parent: 1 - type: Transform -- uid: 24107 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 27.5,43.5 - parent: 1 - type: Transform -- uid: 24108 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 28.5,43.5 - parent: 1 - type: Transform -- uid: 24109 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 30.5,43.5 - parent: 1 - type: Transform -- uid: 24110 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 31.5,43.5 - parent: 1 - type: Transform -- uid: 24111 - type: Window - components: - - pos: -1.5,50.5 - parent: 1 - type: Transform -- uid: 24112 - type: Window - components: - - pos: -11.5,51.5 - parent: 1 - type: Transform -- uid: 24113 - type: Window - components: - - pos: -11.5,53.5 - parent: 1 - type: Transform -- uid: 24114 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -4.5,57.5 - parent: 1 - type: Transform -- uid: 24115 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -3.5,57.5 - parent: 1 - type: Transform -- uid: 24116 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -2.5,57.5 - parent: 1 - type: Transform -- uid: 24117 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -1.5,57.5 - parent: 1 - type: Transform -- uid: 24118 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -1.5,56.5 - parent: 1 - type: Transform -- uid: 24119 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -1.5,55.5 - parent: 1 - type: Transform -- uid: 24120 - type: WallReinforced - components: - - pos: 2.5,46.5 - parent: 1 - type: Transform -- uid: 24121 - type: WallReinforced - components: - - pos: -6.5,43.5 - parent: 1 - type: Transform -- uid: 24122 - type: WallReinforced - components: - - pos: -5.5,43.5 - parent: 1 - type: Transform -- uid: 24123 - type: WallReinforced - components: - - pos: 2.5,43.5 - parent: 1 - type: Transform -- uid: 24124 - type: WallReinforced - components: - - pos: 1.5,43.5 - parent: 1 - type: Transform -- uid: 24125 - type: WallReinforced - components: - - pos: 0.5,43.5 - parent: 1 - type: Transform -- uid: 24126 - type: AirlockEngineeringLocked - components: - - name: substation - type: MetaData - - pos: -10.5,60.5 - parent: 1 - type: Transform -- uid: 24127 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -9.5,60.5 - parent: 1 - type: Transform -- uid: 24128 - type: WallReinforced - components: - - pos: -8.5,60.5 - parent: 1 - type: Transform -- uid: 24129 - type: WallReinforced - components: - - pos: -3.5,60.5 - parent: 1 - type: Transform -- uid: 24130 - type: WallReinforced - components: - - pos: -4.5,60.5 - parent: 1 - type: Transform -- uid: 24131 - type: WallReinforced - components: - - pos: -5.5,60.5 - parent: 1 - type: Transform -- uid: 24132 - type: WallReinforced - components: - - pos: -6.5,60.5 - parent: 1 - type: Transform -- uid: 24133 - type: WallReinforced - components: - - pos: -7.5,60.5 - parent: 1 - type: Transform -- uid: 24134 - type: ReinforcedPlasmaWindow - components: - - pos: -0.5,60.5 - parent: 1 - type: Transform -- uid: 24135 - type: HighSecCaptainLocked - components: - - pos: -1.5,64.5 - parent: 1 - type: Transform -- uid: 24136 - type: ReinforcedPlasmaWindow - components: - - pos: -2.5,60.5 - parent: 1 - type: Transform -- uid: 24137 - type: WallReinforced - components: - - pos: 1.5,60.5 - parent: 1 - type: Transform -- uid: 24138 - type: WallReinforced - components: - - pos: 0.5,60.5 - parent: 1 - type: Transform -- uid: 24139 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -7.5,38.5 - parent: 1 - type: Transform -- uid: 24140 - type: FloraRockSolid03 - components: - - pos: 13.129076,49.02767 - parent: 1 - type: Transform -- uid: 24141 - type: hydroponicsSoil - components: - - pos: 9.5,55.5 - parent: 1 - type: Transform -- uid: 24142 - type: FloraRockSolid03 - components: - - pos: 16.257528,57.816456 - parent: 1 - type: Transform -- uid: 24143 - type: MaintenanceWeaponSpawner - components: - - pos: 43.5,37.5 - parent: 1 - type: Transform -- uid: 24144 - type: ComfyChair - components: - - pos: 44.5,33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24145 - type: ComfyChair - components: - - pos: 43.5,33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24146 - type: ComfyChair - components: - - pos: 42.5,33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24147 - type: PlushieSlime - components: - - pos: 44.49185,33.486496 - parent: 1 - type: Transform -- uid: 24148 - type: PlushieNar - components: - - pos: 44.413727,31.423994 - parent: 1 - type: Transform -- uid: 24149 - type: PlushieSnake - components: - - pos: 43.507477,33.486496 - parent: 1 - type: Transform -- uid: 24150 - type: PlushieSpaceLizard - components: - - pos: 42.55435,33.392746 - parent: 1 - type: Transform -- uid: 24151 - type: hydroponicsSoil - components: - - pos: 8.5,55.5 - parent: 1 - type: Transform -- uid: 24152 - type: hydroponicsSoil - components: - - pos: 10.5,55.5 - parent: 1 - type: Transform -- uid: 24153 - type: hydroponicsSoil - components: - - pos: 11.5,55.5 - parent: 1 - type: Transform -- uid: 24154 - type: hydroponicsSoil - components: - - pos: 7.5,55.5 - parent: 1 - type: Transform -- uid: 24155 - type: hydroponicsSoil - components: - - pos: 11.5,52.5 - parent: 1 - type: Transform -- uid: 24156 - type: hydroponicsSoil - components: - - pos: 10.5,52.5 - parent: 1 - type: Transform -- uid: 24157 - type: hydroponicsSoil - components: - - pos: 9.5,52.5 - parent: 1 - type: Transform -- uid: 24158 - type: PlushieBee - components: - - pos: 10.893783,54.42024 - parent: 1 - type: Transform -- uid: 24159 - type: PlushieBee - components: - - pos: 8.284408,54.20149 - parent: 1 - type: Transform -- uid: 24160 - type: EggplantSeeds - components: - - pos: 11.993146,54.637722 - parent: 1 - type: Transform -- uid: 24161 - type: EggplantSeeds - components: - - pos: 11.993146,54.637722 - parent: 1 - type: Transform -- uid: 24162 - type: EggplantSeeds - components: - - pos: 11.993146,54.637722 - parent: 1 - type: Transform -- uid: 24163 - type: EggplantSeeds - components: - - pos: 11.993146,54.637722 - parent: 1 - type: Transform -- uid: 24164 - type: EggplantSeeds - components: - - pos: 11.993146,54.637722 - parent: 1 - type: Transform -- uid: 24165 - type: EggplantSeeds - components: - - pos: 11.993146,54.637722 - parent: 1 - type: Transform -- uid: 24166 - type: HydroponicsToolMiniHoe - components: - - pos: 7.1714664,53.671818 - parent: 1 - type: Transform -- uid: 24167 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: 18.5,42.5 - parent: 1 - type: Transform -- uid: 24168 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: 22.5,48.5 - parent: 1 - type: Transform -- uid: 24169 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: 19.5,42.5 - parent: 1 - type: Transform -- uid: 24170 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: 20.5,47.5 - parent: 1 - type: Transform -- uid: 24171 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: 21.5,47.5 - parent: 1 - type: Transform -- uid: 24172 - type: AsteroidRock - components: - - rot: -1.5707963267948966 rad - pos: 17.5,42.5 - parent: 1 - type: Transform -- uid: 24173 - type: Floodlight - components: - - pos: 9.471183,54.298565 - parent: 1 - type: Transform -- uid: 24174 - type: CableApcExtension - components: - - pos: 5.5,49.5 - parent: 1 - type: Transform -- uid: 24175 - type: CableApcExtension - components: - - pos: 5.5,50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24176 - type: CableApcExtension - components: - - pos: 5.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24177 - type: CableApcExtension - components: - - pos: 6.5,51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24178 - type: CableApcExtension - components: - - pos: 6.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24179 - type: CableApcExtension - components: - - pos: 7.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24180 - type: CableApcExtension - components: - - pos: 8.5,52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24181 - type: FoodBowlBig - components: - - pos: -22.492924,44.20428 - parent: 1 - type: Transform -- uid: 24182 - type: FoodBowlBig - components: - - pos: -22.508549,43.813656 - parent: 1 - type: Transform -- uid: 24183 - type: Pickaxe - components: - - pos: 68.4767,50.00708 - parent: 1 - type: Transform -- uid: 24184 - type: RandomPosterContraband - components: - - pos: -17.5,-95.5 - parent: 1 - type: Transform -- uid: 24185 - type: AsteroidRock - components: - - pos: 7.5,43.5 - parent: 1 - type: Transform -- uid: 24186 - type: AsteroidRock - components: - - pos: 8.5,44.5 - parent: 1 - type: Transform -- uid: 24187 - type: AsteroidRock - components: - - pos: 9.5,44.5 - parent: 1 - type: Transform -- uid: 24188 - type: AsteroidRock - components: - - pos: 11.5,44.5 - parent: 1 - type: Transform -- uid: 24189 - type: AsteroidRock - components: - - pos: 10.5,44.5 - parent: 1 - type: Transform -- uid: 24190 - type: RandomPosterContraband - components: - - pos: -24.5,-94.5 - parent: 1 - type: Transform -- uid: 24191 - type: AsteroidRock - components: - - pos: 8.5,43.5 - parent: 1 - type: Transform -- uid: 24192 - type: AsteroidRock - components: - - pos: 19.5,57.5 - parent: 1 - type: Transform -- uid: 24193 - type: AsteroidRock - components: - - pos: 19.5,56.5 - parent: 1 - type: Transform -- uid: 24194 - type: AsteroidRock - components: - - pos: 20.5,57.5 - parent: 1 - type: Transform -- uid: 24195 - type: AsteroidRock - components: - - pos: 17.5,58.5 - parent: 1 - type: Transform -- uid: 24196 - type: AsteroidRock - components: - - pos: 17.5,57.5 - parent: 1 - type: Transform -- uid: 24197 - type: AsteroidRock - components: - - pos: 16.5,58.5 - parent: 1 - type: Transform -- uid: 24198 - type: WallReinforced - components: - - pos: 18.5,35.5 - parent: 1 - type: Transform -- uid: 24199 - type: WallReinforced - components: - - pos: 19.5,35.5 - parent: 1 - type: Transform -- uid: 24200 - type: WallReinforced - components: - - pos: 19.5,36.5 - parent: 1 - type: Transform -- uid: 24201 - type: WallReinforced - components: - - pos: 19.5,37.5 - parent: 1 - type: Transform -- uid: 24202 - type: WallReinforced - components: - - pos: 19.5,38.5 - parent: 1 - type: Transform -- uid: 24203 - type: WallReinforced - components: - - pos: 19.5,39.5 - parent: 1 - type: Transform -- uid: 24204 - type: WallReinforced - components: - - pos: 19.5,40.5 - parent: 1 - type: Transform -- uid: 24205 - type: WallReinforced - components: - - pos: 18.5,40.5 - parent: 1 - type: Transform -- uid: 24206 - type: WallReinforced - components: - - pos: 17.5,40.5 - parent: 1 - type: Transform -- uid: 24207 - type: WallReinforced - components: - - pos: 17.5,41.5 - parent: 1 - type: Transform -- uid: 24208 - type: WallReinforced - components: - - pos: 15.5,41.5 - parent: 1 - type: Transform -- uid: 24209 - type: WallReinforced - components: - - pos: 15.5,40.5 - parent: 1 - type: Transform -- uid: 24210 - type: WallReinforced - components: - - pos: 14.5,40.5 - parent: 1 - type: Transform -- uid: 24211 - type: WallReinforced - components: - - pos: 13.5,40.5 - parent: 1 - type: Transform -- uid: 24212 - type: WallReinforced - components: - - pos: 13.5,39.5 - parent: 1 - type: Transform -- uid: 24213 - type: WallReinforced - components: - - pos: 13.5,38.5 - parent: 1 - type: Transform -- uid: 24214 - type: WallReinforced - components: - - pos: 13.5,37.5 - parent: 1 - type: Transform -- uid: 24215 - type: WallReinforced - components: - - pos: 13.5,36.5 - parent: 1 - type: Transform -- uid: 24216 - type: WallReinforced - components: - - pos: 13.5,35.5 - parent: 1 - type: Transform -- uid: 24217 - type: WallReinforced - components: - - pos: 14.5,35.5 - parent: 1 - type: Transform -- uid: 24218 - type: WallSolid - components: - - pos: 17.5,35.5 - parent: 1 - type: Transform -- uid: 24219 - type: WallSolid - components: - - pos: 15.5,35.5 - parent: 1 - type: Transform -- uid: 24220 - type: ClosetFireFilled - components: - - pos: -11.5,47.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24221 - type: ClosetEmergencyFilledRandom - components: - - pos: -12.5,47.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24222 - type: Table - components: - - pos: 64.5,29.5 - parent: 1 - type: Transform -- uid: 24223 - type: Table - components: - - pos: 64.5,28.5 - parent: 1 - type: Transform -- uid: 24224 - type: YellowOxygenTankFilled - components: - - pos: 64.41901,29.545698 - parent: 1 - type: Transform -- uid: 24225 - type: NitrogenTankFilled - components: - - pos: 64.52838,29.170698 - parent: 1 - type: Transform -- uid: 24226 - type: MedkitOxygenFilled - components: - - pos: 64.63776,28.514448 - parent: 1 - type: Transform -- uid: 24227 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -20.5,65.5 - parent: 1 - type: Transform -- uid: 24228 - type: WallReinforced - components: - - pos: 0.5,61.5 - parent: 1 - type: Transform -- uid: 24229 - type: WallReinforced - components: - - pos: 0.5,63.5 - parent: 1 - type: Transform -- uid: 24230 - type: WallReinforced - components: - - pos: 0.5,62.5 - parent: 1 - type: Transform -- uid: 24231 - type: WallReinforced - components: - - pos: -3.5,63.5 - parent: 1 - type: Transform -- uid: 24232 - type: WallReinforced - components: - - pos: -3.5,62.5 - parent: 1 - type: Transform -- uid: 24233 - type: WallReinforced - components: - - pos: -3.5,61.5 - parent: 1 - type: Transform -- uid: 24234 - type: WallReinforced - components: - - pos: 0.5,64.5 - parent: 1 - type: Transform -- uid: 24235 - type: WallReinforced - components: - - pos: -0.5,64.5 - parent: 1 - type: Transform -- uid: 24236 - type: WallReinforced - components: - - pos: -2.5,64.5 - parent: 1 - type: Transform -- uid: 24237 - type: WallReinforced - components: - - pos: -3.5,64.5 - parent: 1 - type: Transform -- uid: 24238 - type: WallReinforced - components: - - pos: -4.5,64.5 - parent: 1 - type: Transform -- uid: 24239 - type: WallReinforced - components: - - pos: -5.5,64.5 - parent: 1 - type: Transform -- uid: 24240 - type: WallReinforced - components: - - pos: -5.5,65.5 - parent: 1 - type: Transform -- uid: 24241 - type: WallReinforced - components: - - pos: -5.5,65.5 - parent: 1 - type: Transform -- uid: 24242 - type: WallReinforced - components: - - pos: -6.5,65.5 - parent: 1 - type: Transform -- uid: 24243 - type: WallReinforced - components: - - pos: -7.5,65.5 - parent: 1 - type: Transform -- uid: 24244 - type: WallReinforced - components: - - pos: -7.5,66.5 - parent: 1 - type: Transform -- uid: 24245 - type: WallReinforced - components: - - pos: -8.5,66.5 - parent: 1 - type: Transform -- uid: 24246 - type: WallReinforced - components: - - pos: -8.5,67.5 - parent: 1 - type: Transform -- uid: 24247 - type: WallReinforced - components: - - pos: -8.5,68.5 - parent: 1 - type: Transform -- uid: 24248 - type: ReinforcedPlasmaWindow - components: - - pos: 5.5,69.5 - parent: 1 - type: Transform -- uid: 24249 - type: WallReinforced - components: - - pos: -8.5,70.5 - parent: 1 - type: Transform -- uid: 24250 - type: WallReinforced - components: - - pos: -8.5,71.5 - parent: 1 - type: Transform -- uid: 24251 - type: WallReinforced - components: - - pos: -8.5,72.5 - parent: 1 - type: Transform -- uid: 24252 - type: WallReinforced - components: - - pos: -7.5,72.5 - parent: 1 - type: Transform -- uid: 24253 - type: WallReinforced - components: - - pos: -7.5,73.5 - parent: 1 - type: Transform -- uid: 24254 - type: WallReinforced - components: - - pos: -6.5,73.5 - parent: 1 - type: Transform -- uid: 24255 - type: WallReinforced - components: - - pos: -6.5,74.5 - parent: 1 - type: Transform -- uid: 24256 - type: WallReinforced - components: - - pos: -5.5,74.5 - parent: 1 - type: Transform -- uid: 24257 - type: WallReinforced - components: - - pos: -4.5,74.5 - parent: 1 - type: Transform -- uid: 24258 - type: WallReinforced - components: - - pos: -3.5,74.5 - parent: 1 - type: Transform -- uid: 24259 - type: WallReinforced - components: - - pos: -2.5,74.5 - parent: 1 - type: Transform -- uid: 24260 - type: WallReinforced - components: - - pos: -1.5,74.5 - parent: 1 - type: Transform -- uid: 24261 - type: WallReinforced - components: - - pos: -0.5,74.5 - parent: 1 - type: Transform -- uid: 24262 - type: WallReinforced - components: - - pos: 0.5,74.5 - parent: 1 - type: Transform -- uid: 24263 - type: WallReinforced - components: - - pos: 1.5,74.5 - parent: 1 - type: Transform -- uid: 24264 - type: WallReinforced - components: - - pos: 2.5,74.5 - parent: 1 - type: Transform -- uid: 24265 - type: WallReinforced - components: - - pos: 3.5,74.5 - parent: 1 - type: Transform -- uid: 24266 - type: WallReinforced - components: - - pos: 3.5,73.5 - parent: 1 - type: Transform -- uid: 24267 - type: WallReinforced - components: - - pos: 4.5,73.5 - parent: 1 - type: Transform -- uid: 24268 - type: WallReinforced - components: - - pos: 4.5,72.5 - parent: 1 - type: Transform -- uid: 24269 - type: WallReinforced - components: - - pos: 5.5,72.5 - parent: 1 - type: Transform -- uid: 24270 - type: WallReinforced - components: - - pos: 5.5,71.5 - parent: 1 - type: Transform -- uid: 24271 - type: WallReinforced - components: - - pos: 5.5,70.5 - parent: 1 - type: Transform -- uid: 24272 - type: ReinforcedPlasmaWindow - components: - - pos: -8.5,69.5 - parent: 1 - type: Transform -- uid: 24273 - type: WallReinforced - components: - - pos: 5.5,68.5 - parent: 1 - type: Transform -- uid: 24274 - type: WallReinforced - components: - - pos: 5.5,67.5 - parent: 1 - type: Transform -- uid: 24275 - type: WallReinforced - components: - - pos: 5.5,66.5 - parent: 1 - type: Transform -- uid: 24276 - type: WallReinforced - components: - - pos: 4.5,66.5 - parent: 1 - type: Transform -- uid: 24277 - type: WallReinforced - components: - - pos: 4.5,65.5 - parent: 1 - type: Transform -- uid: 24278 - type: WallReinforced - components: - - pos: 3.5,65.5 - parent: 1 - type: Transform -- uid: 24279 - type: WallReinforced - components: - - pos: 2.5,64.5 - parent: 1 - type: Transform -- uid: 24280 - type: WallReinforced - components: - - pos: 2.5,65.5 - parent: 1 - type: Transform -- uid: 24281 - type: WallReinforced - components: - - pos: 1.5,64.5 - parent: 1 - type: Transform -- uid: 24282 - type: ToyAi - components: - - pos: -1.529743,69.62148 - parent: 1 - type: Transform -- uid: 24283 - type: HighSecCaptainLocked - components: - - name: AI - type: MetaData - - pos: -1.5,60.5 - parent: 1 - type: Transform -- uid: 24284 - type: Grille - components: - - pos: -2.5,60.5 - parent: 1 - type: Transform -- uid: 24285 - type: Grille - components: - - pos: -0.5,60.5 - parent: 1 - type: Transform -- uid: 24286 - type: TableWood - components: - - pos: 65.5,-0.5 - parent: 1 - type: Transform -- uid: 24287 - type: TableWood - components: - - pos: 65.5,-1.5 - parent: 1 - type: Transform -- uid: 24288 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-0.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24289 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 64.5,-1.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24290 - type: CigarGold - components: - - pos: 65.5063,-0.5499393 - parent: 1 - type: Transform -- uid: 24291 - type: DrinkBlackRussianGlass - components: - - pos: 65.5063,-0.9249393 - parent: 1 - type: Transform -- uid: 24292 - type: Carpet - components: - - pos: 64.5,-0.5 - parent: 1 - type: Transform -- uid: 24293 - type: Carpet - components: - - pos: 64.5,-1.5 - parent: 1 - type: Transform -- uid: 24294 - type: Carpet - components: - - pos: 65.5,-0.5 - parent: 1 - type: Transform -- uid: 24295 - type: Carpet - components: - - pos: 65.5,-1.5 - parent: 1 - type: Transform -- uid: 24296 - type: filingCabinetDrawer - components: - - pos: 63.5,-3.5 - parent: 1 - type: Transform -- uid: 24297 - type: filingCabinet - components: - - pos: 62.5,-3.5 - parent: 1 - type: Transform -- uid: 24298 - type: CableApcExtension - components: - - pos: 63.5,27.5 - parent: 1 - type: Transform -- uid: 24299 - type: CableApcExtension - components: - - pos: 63.5,28.5 - parent: 1 - type: Transform -- uid: 24300 - type: CableApcExtension - components: - - pos: 63.5,29.5 - parent: 1 - type: Transform -- uid: 24301 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 44.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24302 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 45.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24303 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 46.5,28.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24304 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: -17.523046,-28.22695 - parent: 1 - type: Transform -- uid: 24305 - type: AsteroidRock - components: - - pos: 20.5,44.5 - parent: 1 - type: Transform -- uid: 24306 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 69.5,39.5 - parent: 1 - type: Transform -- uid: 24307 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 69.5,38.5 - parent: 1 - type: Transform -- uid: 24308 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 69.5,37.5 - parent: 1 - type: Transform -- uid: 24309 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 75.5,39.5 - parent: 1 - type: Transform -- uid: 24310 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 75.5,38.5 - parent: 1 - type: Transform -- uid: 24311 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 75.5,37.5 - parent: 1 - type: Transform -- uid: 24312 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 74.5,39.5 - parent: 1 - type: Transform -- uid: 24313 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 72.5,39.5 - parent: 1 - type: Transform -- uid: 24314 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 70.5,39.5 - parent: 1 - type: Transform -- uid: 24315 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 69.5,35.5 - parent: 1 - type: Transform -- uid: 24316 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 69.5,34.5 - parent: 1 - type: Transform -- uid: 24317 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 69.5,33.5 - parent: 1 - type: Transform -- uid: 24318 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 70.5,33.5 - parent: 1 - type: Transform -- uid: 24319 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 72.5,33.5 - parent: 1 - type: Transform -- uid: 24320 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 74.5,33.5 - parent: 1 - type: Transform -- uid: 24321 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 75.5,33.5 - parent: 1 - type: Transform -- uid: 24322 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 75.5,34.5 - parent: 1 - type: Transform -- uid: 24323 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 75.5,35.5 - parent: 1 - type: Transform -- uid: 24324 - type: CableHV - components: - - pos: 91.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24325 - type: Catwalk - components: - - pos: 81.5,36.5 - parent: 1 - type: Transform -- uid: 24326 - type: Catwalk - components: - - pos: 80.5,36.5 - parent: 1 - type: Transform -- uid: 24327 - type: Catwalk - components: - - pos: 86.5,36.5 - parent: 1 - type: Transform -- uid: 24328 - type: Catwalk - components: - - pos: 87.5,36.5 - parent: 1 - type: Transform -- uid: 24329 - type: Table - components: - - pos: -0.5,-77.5 - parent: 1 - type: Transform -- uid: 24330 - type: CableHVStack - components: - - pos: 71.74222,36.65267 - parent: 1 - type: Transform -- uid: 24331 - type: Catwalk - components: - - pos: 79.5,36.5 - parent: 1 - type: Transform -- uid: 24332 - type: Catwalk - components: - - pos: 78.5,36.5 - parent: 1 - type: Transform -- uid: 24333 - type: CableHV - components: - - pos: 77.5,36.5 - parent: 1 - type: Transform -- uid: 24334 - type: CableHV - components: - - pos: 76.5,36.5 - parent: 1 - type: Transform -- uid: 24335 - type: CableHV - components: - - pos: 75.5,36.5 - parent: 1 - type: Transform -- uid: 24336 - type: CableHV - components: - - pos: 74.5,36.5 - parent: 1 - type: Transform -- uid: 24337 - type: CableHV - components: - - pos: 78.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24338 - type: CableHV - components: - - pos: 78.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24339 - type: CableHV - components: - - pos: 78.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24340 - type: CableHV - components: - - pos: 78.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24341 - type: CableHV - components: - - pos: 78.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24342 - type: CableHV - components: - - pos: 78.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24343 - type: CableHV - components: - - pos: 78.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24344 - type: CableHV - components: - - pos: 78.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24345 - type: CableHV - components: - - pos: 78.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24346 - type: CableHV - components: - - pos: 78.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24347 - type: CableHV - components: - - pos: 78.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24348 - type: CableHV - components: - - pos: 78.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24349 - type: CableHV - components: - - pos: 78.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24350 - type: CableHV - components: - - pos: 78.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24351 - type: CableHV - components: - - pos: 78.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24352 - type: CableHV - components: - - pos: 78.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24353 - type: CableHV - components: - - pos: 81.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24354 - type: CableHV - components: - - pos: 81.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24355 - type: CableHV - components: - - pos: 81.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24356 - type: CableHV - components: - - pos: 81.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24357 - type: CableHV - components: - - pos: 81.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24358 - type: CableHV - components: - - pos: 81.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24359 - type: CableHV - components: - - pos: 81.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24360 - type: CableHV - components: - - pos: 81.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24361 - type: CableHV - components: - - pos: 81.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24362 - type: CableHV - components: - - pos: 81.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24363 - type: CableHV - components: - - pos: 81.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24364 - type: CableHV - components: - - pos: 81.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24365 - type: CableHV - components: - - pos: 81.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24366 - type: CableHV - components: - - pos: 81.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24367 - type: CableHV - components: - - pos: 81.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24368 - type: CableHV - components: - - pos: 81.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24369 - type: CableHV - components: - - pos: 84.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24370 - type: CableHV - components: - - pos: 84.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24371 - type: CableHV - components: - - pos: 84.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24372 - type: CableHV - components: - - pos: 84.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24373 - type: CableHV - components: - - pos: 84.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24374 - type: CableHV - components: - - pos: 84.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24375 - type: CableHV - components: - - pos: 84.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24376 - type: CableHV - components: - - pos: 84.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24377 - type: PottedPlantRandom - components: - - pos: -19.5,-73.5 - parent: 1 - type: Transform -- uid: 24378 - type: CableHV - components: - - pos: 84.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24379 - type: CableHV - components: - - pos: 84.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24380 - type: CableHV - components: - - pos: 84.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24381 - type: CableHV - components: - - pos: 84.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24382 - type: CableHV - components: - - pos: 84.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24383 - type: CableHV - components: - - pos: 84.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24384 - type: CableHV - components: - - pos: 84.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24385 - type: CableHV - components: - - pos: 84.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24386 - type: CableHV - components: - - pos: 87.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24387 - type: CableHV - components: - - pos: 87.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24388 - type: CableHV - components: - - pos: 87.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24389 - type: CableHV - components: - - pos: 87.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24390 - type: CableHV - components: - - pos: 87.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24391 - type: CableHV - components: - - pos: 87.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24392 - type: CableHV - components: - - pos: 87.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24393 - type: CableHV - components: - - pos: 87.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24394 - type: Catwalk - components: - - pos: 88.5,36.5 - parent: 1 - type: Transform -- uid: 24395 - type: CableHV - components: - - pos: 87.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24396 - type: CableHV - components: - - pos: 87.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24397 - type: CableHV - components: - - pos: 87.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24398 - type: CableHV - components: - - pos: 87.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24399 - type: CableHV - components: - - pos: 87.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24400 - type: CableHV - components: - - pos: 87.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24401 - type: CableHV - components: - - pos: 87.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24402 - type: CableHV - components: - - pos: 87.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24403 - type: CableHV - components: - - pos: 90.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24404 - type: CableHV - components: - - pos: 90.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24405 - type: CableHV - components: - - pos: 90.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24406 - type: CableHV - components: - - pos: 90.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24407 - type: CableHV - components: - - pos: 90.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24408 - type: CableHV - components: - - pos: 90.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24409 - type: CableHV - components: - - pos: 90.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24410 - type: CableHV - components: - - pos: 90.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24411 - type: Catwalk - components: - - pos: 82.5,36.5 - parent: 1 - type: Transform -- uid: 24412 - type: CableHV - components: - - pos: 90.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24413 - type: CableHV - components: - - pos: 90.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24414 - type: CableHV - components: - - pos: 90.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24415 - type: CableHV - components: - - pos: 90.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24416 - type: CableHV - components: - - pos: 90.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24417 - type: CableHV - components: - - pos: 90.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24418 - type: CableHV - components: - - pos: 90.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24419 - type: CableHV - components: - - pos: 90.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24420 - type: SolarTracker - components: - - pos: 91.5,36.5 - parent: 1 - type: Transform -- uid: 24421 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 90.5,44.5 - parent: 1 - type: Transform -- uid: 24422 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 90.5,43.5 - parent: 1 - type: Transform -- uid: 24423 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 90.5,41.5 - parent: 1 - type: Transform -- uid: 24424 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 90.5,42.5 - parent: 1 - type: Transform -- uid: 24425 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 90.5,40.5 - parent: 1 - type: Transform -- uid: 24426 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 90.5,39.5 - parent: 1 - type: Transform -- uid: 24427 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 90.5,38.5 - parent: 1 - type: Transform -- uid: 24428 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 90.5,37.5 - parent: 1 - type: Transform -- uid: 24429 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 87.5,44.5 - parent: 1 - type: Transform -- uid: 24430 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 87.5,43.5 - parent: 1 - type: Transform -- uid: 24431 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 87.5,42.5 - parent: 1 - type: Transform -- uid: 24432 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 87.5,41.5 - parent: 1 - type: Transform -- uid: 24433 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 87.5,40.5 - parent: 1 - type: Transform -- uid: 24434 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 87.5,39.5 - parent: 1 - type: Transform -- uid: 24435 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 87.5,38.5 - parent: 1 - type: Transform -- uid: 24436 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 87.5,37.5 - parent: 1 - type: Transform -- uid: 24437 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 84.5,44.5 - parent: 1 - type: Transform -- uid: 24438 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 84.5,43.5 - parent: 1 - type: Transform -- uid: 24439 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 84.5,42.5 - parent: 1 - type: Transform -- uid: 24440 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 84.5,41.5 - parent: 1 - type: Transform -- uid: 24441 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 84.5,40.5 - parent: 1 - type: Transform -- uid: 24442 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 84.5,39.5 - parent: 1 - type: Transform -- uid: 24443 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 84.5,38.5 - parent: 1 - type: Transform -- uid: 24444 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 84.5,37.5 - parent: 1 - type: Transform -- uid: 24445 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 81.5,44.5 - parent: 1 - type: Transform -- uid: 24446 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 81.5,43.5 - parent: 1 - type: Transform -- uid: 24447 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 81.5,42.5 - parent: 1 - type: Transform -- uid: 24448 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 81.5,41.5 - parent: 1 - type: Transform -- uid: 24449 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 81.5,40.5 - parent: 1 - type: Transform -- uid: 24450 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 81.5,39.5 - parent: 1 - type: Transform -- uid: 24451 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 81.5,38.5 - parent: 1 - type: Transform -- uid: 24452 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 81.5,37.5 - parent: 1 - type: Transform -- uid: 24453 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 78.5,44.5 - parent: 1 - type: Transform -- uid: 24454 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 78.5,43.5 - parent: 1 - type: Transform -- uid: 24455 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 78.5,42.5 - parent: 1 - type: Transform -- uid: 24456 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 78.5,41.5 - parent: 1 - type: Transform -- uid: 24457 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 78.5,40.5 - parent: 1 - type: Transform -- uid: 24458 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 78.5,39.5 - parent: 1 - type: Transform -- uid: 24459 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 78.5,38.5 - parent: 1 - type: Transform -- uid: 24460 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 78.5,37.5 - parent: 1 - type: Transform -- uid: 24461 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 78.5,35.5 - parent: 1 - type: Transform -- uid: 24462 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 78.5,34.5 - parent: 1 - type: Transform -- uid: 24463 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 78.5,33.5 - parent: 1 - type: Transform -- uid: 24464 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 78.5,32.5 - parent: 1 - type: Transform -- uid: 24465 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 78.5,31.5 - parent: 1 - type: Transform -- uid: 24466 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 78.5,30.5 - parent: 1 - type: Transform -- uid: 24467 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 78.5,29.5 - parent: 1 - type: Transform -- uid: 24468 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 78.5,28.5 - parent: 1 - type: Transform -- uid: 24469 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 81.5,35.5 - parent: 1 - type: Transform -- uid: 24470 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 81.5,34.5 - parent: 1 - type: Transform -- uid: 24471 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 81.5,33.5 - parent: 1 - type: Transform -- uid: 24472 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 81.5,32.5 - parent: 1 - type: Transform -- uid: 24473 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 81.5,31.5 - parent: 1 - type: Transform -- uid: 24474 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 81.5,30.5 - parent: 1 - type: Transform -- uid: 24475 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 81.5,29.5 - parent: 1 - type: Transform -- uid: 24476 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 81.5,28.5 - parent: 1 - type: Transform -- uid: 24477 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 84.5,35.5 - parent: 1 - type: Transform -- uid: 24478 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 84.5,34.5 - parent: 1 - type: Transform -- uid: 24479 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 84.5,33.5 - parent: 1 - type: Transform -- uid: 24480 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 84.5,32.5 - parent: 1 - type: Transform -- uid: 24481 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 84.5,31.5 - parent: 1 - type: Transform -- uid: 24482 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 84.5,30.5 - parent: 1 - type: Transform -- uid: 24483 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 84.5,29.5 - parent: 1 - type: Transform -- uid: 24484 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 84.5,28.5 - parent: 1 - type: Transform -- uid: 24485 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 87.5,35.5 - parent: 1 - type: Transform -- uid: 24486 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 87.5,34.5 - parent: 1 - type: Transform -- uid: 24487 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 87.5,33.5 - parent: 1 - type: Transform -- uid: 24488 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 87.5,32.5 - parent: 1 - type: Transform -- uid: 24489 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 87.5,31.5 - parent: 1 - type: Transform -- uid: 24490 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 87.5,30.5 - parent: 1 - type: Transform -- uid: 24491 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 87.5,29.5 - parent: 1 - type: Transform -- uid: 24492 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 87.5,28.5 - parent: 1 - type: Transform -- uid: 24493 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 90.5,35.5 - parent: 1 - type: Transform -- uid: 24494 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 90.5,34.5 - parent: 1 - type: Transform -- uid: 24495 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 90.5,33.5 - parent: 1 - type: Transform -- uid: 24496 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 90.5,32.5 - parent: 1 - type: Transform -- uid: 24497 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 90.5,31.5 - parent: 1 - type: Transform -- uid: 24498 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 90.5,30.5 - parent: 1 - type: Transform -- uid: 24499 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 90.5,29.5 - parent: 1 - type: Transform -- uid: 24500 - type: SolarPanel - components: - - rot: 1.5707963267948966 rad - pos: 90.5,28.5 - parent: 1 - type: Transform -- uid: 24501 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 74.5,38.5 - parent: 1 - type: Transform -- uid: 24502 - type: CableTerminal - components: - - rot: -1.5707963267948966 rad - pos: 74.5,34.5 - parent: 1 - type: Transform -- uid: 24503 - type: SMESBasic - components: - - pos: 73.5,38.5 - parent: 1 - type: Transform -- uid: 24504 - type: SMESBasic - components: - - pos: 73.5,34.5 - parent: 1 - type: Transform -- uid: 24505 - type: CableHV - components: - - pos: 74.5,37.5 - parent: 1 - type: Transform -- uid: 24506 - type: CableHV - components: - - pos: 74.5,38.5 - parent: 1 - type: Transform -- uid: 24507 - type: CableHV - components: - - pos: 73.5,38.5 - parent: 1 - type: Transform -- uid: 24508 - type: CableHV - components: - - pos: 72.5,38.5 - parent: 1 - type: Transform -- uid: 24509 - type: CableHV - components: - - pos: 74.5,35.5 - parent: 1 - type: Transform -- uid: 24510 - type: CableHV - components: - - pos: 74.5,34.5 - parent: 1 - type: Transform -- uid: 24511 - type: CableHV - components: - - pos: 73.5,34.5 - parent: 1 - type: Transform -- uid: 24512 - type: CableHV - components: - - pos: 72.5,34.5 - parent: 1 - type: Transform -- uid: 24513 - type: CableHV - components: - - pos: 71.5,34.5 - parent: 1 - type: Transform -- uid: 24514 - type: ComputerSolarControl - components: - - pos: 72.5,38.5 - parent: 1 - type: Transform -- uid: 24515 - type: CableHV - components: - - pos: 70.5,34.5 - parent: 1 - type: Transform -- uid: 24516 - type: CableHV - components: - - pos: 70.5,35.5 - parent: 1 - type: Transform -- uid: 24517 - type: CableHV - components: - - pos: 70.5,36.5 - parent: 1 - type: Transform -- uid: 24518 - type: CableHV - components: - - pos: 69.5,36.5 - parent: 1 - type: Transform -- uid: 24519 - type: CableHV - components: - - pos: 71.5,38.5 - parent: 1 - type: Transform -- uid: 24520 - type: CableHV - components: - - pos: 70.5,38.5 - parent: 1 - type: Transform -- uid: 24521 - type: CableHV - components: - - pos: 70.5,37.5 - parent: 1 - type: Transform -- uid: 24522 - type: CableHV - components: - - pos: 68.5,36.5 - parent: 1 - type: Transform -- uid: 24523 - type: CableHV - components: - - pos: 67.5,36.5 - parent: 1 - type: Transform -- uid: 24524 - type: CableHV - components: - - pos: 66.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24525 - type: CableHV - components: - - pos: 65.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24526 - type: CableHV - components: - - pos: 64.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24527 - type: CableHV - components: - - pos: 63.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24528 - type: CableHV - components: - - pos: 63.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24529 - type: CableHV - components: - - pos: 63.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24530 - type: CableHV - components: - - pos: 63.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24531 - type: CableHV - components: - - pos: 63.5,32.5 - parent: 1 - type: Transform -- uid: 24532 - type: CableHV - components: - - pos: 63.5,31.5 - parent: 1 - type: Transform -- uid: 24533 - type: CableHV - components: - - pos: 63.5,30.5 - parent: 1 - type: Transform -- uid: 24534 - type: CableHV - components: - - pos: 63.5,29.5 - parent: 1 - type: Transform -- uid: 24535 - type: CableHV - components: - - pos: 63.5,28.5 - parent: 1 - type: Transform -- uid: 24536 - type: CableHV - components: - - pos: 63.5,27.5 - parent: 1 - type: Transform -- uid: 24537 - type: CableHV - components: - - pos: 63.5,26.5 - parent: 1 - type: Transform -- uid: 24538 - type: CableHV - components: - - pos: 62.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24539 - type: CableHV - components: - - pos: 61.5,26.5 - parent: 1 - type: Transform -- uid: 24540 - type: CableHV - components: - - pos: 60.5,26.5 - parent: 1 - type: Transform -- uid: 24541 - type: CableHV - components: - - pos: 59.5,26.5 - parent: 1 - type: Transform -- uid: 24542 - type: CableHV - components: - - pos: 58.5,26.5 - parent: 1 - type: Transform -- uid: 24543 - type: CableHV - components: - - pos: 57.5,26.5 - parent: 1 - type: Transform -- uid: 24544 - type: CableHV - components: - - pos: 56.5,26.5 - parent: 1 - type: Transform -- uid: 24545 - type: CableHV - components: - - pos: 55.5,26.5 - parent: 1 - type: Transform -- uid: 24546 - type: CableHV - components: - - pos: 54.5,26.5 - parent: 1 - type: Transform -- uid: 24547 - type: CableHV - components: - - pos: 53.5,26.5 - parent: 1 - type: Transform -- uid: 24548 - type: CableHV - components: - - pos: 52.5,26.5 - parent: 1 - type: Transform -- uid: 24549 - type: CableHV - components: - - pos: 51.5,26.5 - parent: 1 - type: Transform -- uid: 24550 - type: CableHV - components: - - pos: 50.5,26.5 - parent: 1 - type: Transform -- uid: 24551 - type: CableHV - components: - - pos: 49.5,26.5 - parent: 1 - type: Transform -- uid: 24552 - type: AirlockExternalGlassLocked - components: - - pos: 69.5,36.5 - parent: 1 - type: Transform -- uid: 24553 - type: AirlockExternalGlassLocked - components: - - pos: 75.5,36.5 - parent: 1 - type: Transform -- uid: 24554 - type: ReinforcedWindow - components: - - pos: 71.5,39.5 - parent: 1 - type: Transform -- uid: 24555 - type: ReinforcedWindow - components: - - pos: 73.5,39.5 - parent: 1 - type: Transform -- uid: 24556 - type: ReinforcedWindow - components: - - pos: 73.5,33.5 - parent: 1 - type: Transform -- uid: 24557 - type: ReinforcedWindow - components: - - pos: 71.5,33.5 - parent: 1 - type: Transform -- uid: 24558 - type: Grille - components: - - pos: 71.5,39.5 - parent: 1 - type: Transform -- uid: 24559 - type: Grille - components: - - pos: 73.5,39.5 - parent: 1 - type: Transform -- uid: 24560 - type: Grille - components: - - pos: 73.5,33.5 - parent: 1 - type: Transform -- uid: 24561 - type: Grille - components: - - pos: 71.5,33.5 - parent: 1 - type: Transform -- uid: 24562 - type: WallReinforced - components: - - pos: 76.5,37.5 - parent: 1 - type: Transform -- uid: 24563 - type: WallReinforced - components: - - pos: 77.5,37.5 - parent: 1 - type: Transform -- uid: 24564 - type: WallReinforced - components: - - pos: 76.5,35.5 - parent: 1 - type: Transform -- uid: 24565 - type: WallReinforced - components: - - pos: 77.5,35.5 - parent: 1 - type: Transform -- uid: 24566 - type: WallReinforced - components: - - pos: 68.5,37.5 - parent: 1 - type: Transform -- uid: 24567 - type: WallReinforced - components: - - pos: 67.5,37.5 - parent: 1 - type: Transform -- uid: 24568 - type: WallReinforced - components: - - pos: 67.5,35.5 - parent: 1 - type: Transform -- uid: 24569 - type: WallReinforced - components: - - pos: 68.5,35.5 - parent: 1 - type: Transform -- uid: 24570 - type: AirlockExternalGlassLocked - components: - - pos: 77.5,36.5 - parent: 1 - type: Transform -- uid: 24571 - type: AirlockExternalGlassLocked - components: - - pos: 67.5,36.5 - parent: 1 - type: Transform -- uid: 24572 - type: WallReinforced - components: - - pos: 64.5,32.5 - parent: 1 - type: Transform -- uid: 24573 - type: WallReinforced - components: - - pos: 64.5,31.5 - parent: 1 - type: Transform -- uid: 24574 - type: WallReinforced - components: - - pos: 62.5,32.5 - parent: 1 - type: Transform -- uid: 24575 - type: WallReinforced - components: - - pos: 62.5,31.5 - parent: 1 - type: Transform -- uid: 24576 - type: AirlockExternalGlassLocked - components: - - pos: 63.5,32.5 - parent: 1 - type: Transform -- uid: 24577 - type: PottedPlant28 - components: - - pos: 46.5,30.5 - parent: 1 - type: Transform -- uid: 24578 - type: PottedPlant29 - components: - - pos: 46.5,29.5 - parent: 1 - type: Transform -- uid: 24579 - type: AirlockMaintGlassLocked - components: - - pos: 16.5,35.5 - parent: 1 - type: Transform -- uid: 24580 - type: RandomSpawner - components: - - pos: -15.5,36.5 - parent: 1 - type: Transform -- uid: 24581 - type: RandomSpawner - components: - - pos: -19.5,26.5 - parent: 1 - type: Transform -- uid: 24582 - type: RandomSpawner - components: - - pos: -17.5,44.5 - parent: 1 - type: Transform -- uid: 24583 - type: RandomSpawner - components: - - pos: -14.5,45.5 - parent: 1 - type: Transform -- uid: 24584 - type: RandomSpawner - components: - - pos: 0.5,32.5 - parent: 1 - type: Transform -- uid: 24585 - type: RandomSpawner - components: - - pos: 53.5,36.5 - parent: 1 - type: Transform -- uid: 24586 - type: RandomSpawner - components: - - pos: 65.5,22.5 - parent: 1 - type: Transform -- uid: 24587 - type: Table - components: - - pos: 72.5,36.5 - parent: 1 - type: Transform -- uid: 24588 - type: Table - components: - - pos: 73.5,36.5 - parent: 1 - type: Transform -- uid: 24589 - type: Table - components: - - pos: 71.5,36.5 - parent: 1 - type: Transform -- uid: 24590 - type: Multitool - components: - - pos: 72.48785,36.5135 - parent: 1 - type: Transform -- uid: 24591 - type: trayScanner - components: - - pos: 73.06597,36.576 - parent: 1 - type: Transform -- uid: 24592 - type: CableApcExtension - components: - - pos: 16.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24593 - type: CableApcExtension - components: - - pos: 16.5,36.5 - parent: 1 - type: Transform -- uid: 24594 - type: CableApcExtension - components: - - pos: 16.5,37.5 - parent: 1 - type: Transform -- uid: 24595 - type: CableApcExtension - components: - - pos: 16.5,38.5 - parent: 1 - type: Transform -- uid: 24596 - type: CableApcExtension - components: - - pos: 16.5,39.5 - parent: 1 - type: Transform -- uid: 24597 - type: CableApcExtension - components: - - pos: 15.5,39.5 - parent: 1 - type: Transform -- uid: 24598 - type: CableApcExtension - components: - - pos: 14.5,39.5 - parent: 1 - type: Transform -- uid: 24599 - type: CableApcExtension - components: - - pos: 14.5,38.5 - parent: 1 - type: Transform -- uid: 24600 - type: CableApcExtension - components: - - pos: 14.5,37.5 - parent: 1 - type: Transform -- uid: 24601 - type: CableApcExtension - components: - - pos: 14.5,36.5 - parent: 1 - type: Transform -- uid: 24602 - type: CableApcExtension - components: - - pos: 15.5,36.5 - parent: 1 - type: Transform -- uid: 24603 - type: CableApcExtension - components: - - pos: 17.5,39.5 - parent: 1 - type: Transform -- uid: 24604 - type: CableApcExtension - components: - - pos: 18.5,39.5 - parent: 1 - type: Transform -- uid: 24605 - type: CableApcExtension - components: - - pos: 18.5,38.5 - parent: 1 - type: Transform -- uid: 24606 - type: CableApcExtension - components: - - pos: 18.5,37.5 - parent: 1 - type: Transform -- uid: 24607 - type: CableApcExtension - components: - - pos: 18.5,36.5 - parent: 1 - type: Transform -- uid: 24608 - type: CableApcExtension - components: - - pos: 17.5,36.5 - parent: 1 - type: Transform -- uid: 24609 - type: CableApcExtension - components: - - pos: 16.5,40.5 - parent: 1 - type: Transform -- uid: 24610 - type: SignDangerMed - components: - - pos: 15.5,35.5 - parent: 1 - type: Transform -- uid: 24611 - type: AsteroidRock - components: - - pos: 3.5,45.5 - parent: 1 - type: Transform -- uid: 24612 - type: AsteroidRock - components: - - pos: 3.5,44.5 - parent: 1 - type: Transform -- uid: 24613 - type: AsteroidRock - components: - - pos: 3.5,43.5 - parent: 1 - type: Transform -- uid: 24614 - type: AsteroidRock - components: - - pos: 3.5,42.5 - parent: 1 - type: Transform -- uid: 24615 - type: AsteroidRock - components: - - pos: 4.5,43.5 - parent: 1 - type: Transform -- uid: 24616 - type: AsteroidRock - components: - - pos: 4.5,42.5 - parent: 1 - type: Transform -- uid: 24617 - type: AsteroidRock - components: - - pos: 5.5,42.5 - parent: 1 - type: Transform -- uid: 24618 - type: WallReinforced - components: - - pos: -38.5,43.5 - parent: 1 - type: Transform -- uid: 24619 - type: WallReinforced - components: - - pos: -38.5,42.5 - parent: 1 - type: Transform -- uid: 24620 - type: WallReinforced - components: - - pos: -38.5,41.5 - parent: 1 - type: Transform -- uid: 24621 - type: WallReinforced - components: - - pos: -36.5,43.5 - parent: 1 - type: Transform -- uid: 24622 - type: WallReinforced - components: - - pos: -36.5,42.5 - parent: 1 - type: Transform -- uid: 24623 - type: WallReinforced - components: - - pos: -36.5,41.5 - parent: 1 - type: Transform -- uid: 24624 - type: AirlockExternalGlassLocked - components: - - pos: -37.5,43.5 - parent: 1 - type: Transform -- uid: 24625 - type: AirlockExternalGlassLocked - components: - - pos: -37.5,41.5 - parent: 1 - type: Transform -- uid: 24626 - type: WallReinforced - components: - - pos: -38.5,40.5 - parent: 1 - type: Transform -- uid: 24627 - type: WallReinforced - components: - - pos: -39.5,40.5 - parent: 1 - type: Transform -- uid: 24628 - type: WallReinforced - components: - - pos: -40.5,40.5 - parent: 1 - type: Transform -- uid: 24629 - type: WallReinforced - components: - - pos: -41.5,40.5 - parent: 1 - type: Transform -- uid: 24630 - type: WallReinforced - components: - - pos: -42.5,40.5 - parent: 1 - type: Transform -- uid: 24631 - type: ReinforcedWindow - components: - - pos: -44.5,40.5 - parent: 1 - type: Transform -- uid: 24632 - type: ReinforcedWindow - components: - - pos: -43.5,40.5 - parent: 1 - type: Transform -- uid: 24633 - type: WallReinforced - components: - - pos: -45.5,40.5 - parent: 1 - type: Transform -- uid: 24634 - type: WallReinforced - components: - - pos: -46.5,40.5 - parent: 1 - type: Transform -- uid: 24635 - type: WallReinforced - components: - - pos: -47.5,40.5 - parent: 1 - type: Transform -- uid: 24636 - type: WallReinforced - components: - - pos: -48.5,40.5 - parent: 1 - type: Transform -- uid: 24637 - type: WallReinforced - components: - - pos: -48.5,39.5 - parent: 1 - type: Transform -- uid: 24638 - type: WallReinforced - components: - - pos: -48.5,38.5 - parent: 1 - type: Transform -- uid: 24639 - type: WallReinforced - components: - - pos: -36.5,40.5 - parent: 1 - type: Transform -- uid: 24640 - type: WallReinforced - components: - - pos: -35.5,40.5 - parent: 1 - type: Transform -- uid: 24641 - type: WallReinforced - components: - - pos: -34.5,40.5 - parent: 1 - type: Transform -- uid: 24642 - type: ReinforcedWindow - components: - - pos: -33.5,40.5 - parent: 1 - type: Transform -- uid: 24643 - type: ReinforcedWindow - components: - - pos: -32.5,40.5 - parent: 1 - type: Transform -- uid: 24644 - type: WallReinforced - components: - - pos: -31.5,40.5 - parent: 1 - type: Transform -- uid: 24645 - type: WallReinforced - components: - - pos: -30.5,40.5 - parent: 1 - type: Transform -- uid: 24646 - type: WallReinforced - components: - - pos: -30.5,41.5 - parent: 1 - type: Transform -- uid: 24647 - type: WallReinforced - components: - - pos: -30.5,42.5 - parent: 1 - type: Transform -- uid: 24648 - type: WallReinforced - components: - - pos: -29.5,42.5 - parent: 1 - type: Transform -- uid: 24649 - type: WallSolid - components: - - pos: -28.5,42.5 - parent: 1 - type: Transform -- uid: 24650 - type: WallSolid - components: - - pos: -27.5,42.5 - parent: 1 - type: Transform -- uid: 24651 - type: SpawnPointAssistant - components: - - pos: -19.5,34.5 - parent: 1 - type: Transform -- uid: 24652 - type: WallReinforced - components: - - pos: -26.5,47.5 - parent: 1 - type: Transform -- uid: 24653 - type: WallReinforced - components: - - pos: -27.5,47.5 - parent: 1 - type: Transform -- uid: 24654 - type: WallReinforced - components: - - pos: -28.5,47.5 - parent: 1 - type: Transform -- uid: 24655 - type: WallReinforced - components: - - pos: -29.5,47.5 - parent: 1 - type: Transform -- uid: 24656 - type: WallReinforced - components: - - pos: -29.5,46.5 - parent: 1 - type: Transform -- uid: 24657 - type: WallReinforced - components: - - pos: -25.5,47.5 - parent: 1 - type: Transform -- uid: 24658 - type: WallReinforced - components: - - pos: -25.5,48.5 - parent: 1 - type: Transform -- uid: 24659 - type: WallSolid - components: - - pos: -26.5,42.5 - parent: 1 - type: Transform -- uid: 24660 - type: WallSolid - components: - - pos: -39.5,37.5 - parent: 1 - type: Transform -- uid: 24661 - type: WallSolid - components: - - pos: -39.5,38.5 - parent: 1 - type: Transform -- uid: 24662 - type: WallSolid - components: - - pos: -36.5,38.5 - parent: 1 - type: Transform -- uid: 24663 - type: WallSolid - components: - - pos: -35.5,38.5 - parent: 1 - type: Transform -- uid: 24664 - type: SpawnPointAssistant - components: - - pos: -11.5,32.5 - parent: 1 - type: Transform -- uid: 24665 - type: SpawnPointAssistant - components: - - pos: -23.5,30.5 - parent: 1 - type: Transform -- uid: 24666 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: -11.5,34.5 - parent: 1 - type: Transform -- uid: 24667 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -9.5,22.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18398 - Forward: - - port: Left - uid: 18398 - Off: - - port: Middle - uid: 18398 - type: SignalReceiver -- uid: 24668 - type: ClosetEmergencyFilledRandom - components: - - pos: 50.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24669 - type: ClosetFireFilled - components: - - pos: 49.5,40.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24670 - type: ClosetEmergencyFilledRandom - components: - - pos: 65.5,1.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 24671 - type: CableApcExtension - components: - - pos: 63.5,30.5 - parent: 1 - type: Transform -- uid: 24672 - type: CableApcExtension - components: - - pos: 63.5,31.5 - parent: 1 - type: Transform -- uid: 24673 - type: CableApcExtension - components: - - pos: 63.5,32.5 - parent: 1 - type: Transform -- uid: 24674 - type: CableApcExtension - components: - - pos: 63.5,33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24675 - type: CableApcExtension - components: - - pos: 63.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24676 - type: CableApcExtension - components: - - pos: 63.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24677 - type: CableApcExtension - components: - - pos: 63.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24678 - type: CableApcExtension - components: - - pos: 64.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24679 - type: CableApcExtension - components: - - pos: 65.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24680 - type: CableApcExtension - components: - - pos: 66.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24681 - type: CableApcExtension - components: - - pos: 67.5,36.5 - parent: 1 - type: Transform -- uid: 24682 - type: CableApcExtension - components: - - pos: 68.5,36.5 - parent: 1 - type: Transform -- uid: 24683 - type: CableApcExtension - components: - - pos: 69.5,36.5 - parent: 1 - type: Transform -- uid: 24684 - type: CableApcExtension - components: - - pos: 70.5,36.5 - parent: 1 - type: Transform -- uid: 24685 - type: CableApcExtension - components: - - pos: 71.5,36.5 - parent: 1 - type: Transform -- uid: 24686 - type: CableApcExtension - components: - - pos: 72.5,36.5 - parent: 1 - type: Transform -- uid: 24687 - type: CableApcExtension - components: - - pos: 73.5,36.5 - parent: 1 - type: Transform -- uid: 24688 - type: CableApcExtension - components: - - pos: 74.5,36.5 - parent: 1 - type: Transform -- uid: 24689 - type: CableApcExtension - components: - - pos: 75.5,36.5 - parent: 1 - type: Transform -- uid: 24690 - type: CableApcExtension - components: - - pos: 76.5,36.5 - parent: 1 - type: Transform -- uid: 24691 - type: CableApcExtension - components: - - pos: 73.5,35.5 - parent: 1 - type: Transform -- uid: 24692 - type: CableApcExtension - components: - - pos: 73.5,34.5 - parent: 1 - type: Transform -- uid: 24693 - type: CableApcExtension - components: - - pos: 71.5,35.5 - parent: 1 - type: Transform -- uid: 24694 - type: CableApcExtension - components: - - pos: 71.5,34.5 - parent: 1 - type: Transform -- uid: 24695 - type: CableApcExtension - components: - - pos: 71.5,37.5 - parent: 1 - type: Transform -- uid: 24696 - type: CableApcExtension - components: - - pos: 71.5,38.5 - parent: 1 - type: Transform -- uid: 24697 - type: CableApcExtension - components: - - pos: 73.5,38.5 - parent: 1 - type: Transform -- uid: 24698 - type: CableApcExtension - components: - - pos: 73.5,37.5 - parent: 1 - type: Transform -- uid: 24699 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 70.5,35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24700 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 70.5,34.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24701 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 70.5,33.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24702 - type: GasVentScrubber - components: - - pos: 70.5,36.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24703 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 70.5,32.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24704 - type: GasPort - components: - - pos: 70.5,38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24705 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 70.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24706 - type: AirCanister - components: - - pos: 71.5,38.5 - parent: 1 - type: Transform -- uid: 24707 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: 72.5,37.5 - parent: 1 - type: Transform -- uid: 24708 - type: CableHV - components: - - pos: -11.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24709 - type: CableHV - components: - - pos: -12.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24710 - type: CableHV - components: - - pos: -13.5,26.5 - parent: 1 - type: Transform -- uid: 24711 - type: CableHV - components: - - pos: -14.5,26.5 - parent: 1 - type: Transform -- uid: 24712 - type: CableHV - components: - - pos: -15.5,26.5 - parent: 1 - type: Transform -- uid: 24713 - type: CableHV - components: - - pos: -15.5,27.5 - parent: 1 - type: Transform -- uid: 24714 - type: CableHV - components: - - pos: -15.5,28.5 - parent: 1 - type: Transform -- uid: 24715 - type: FoodMeatHawaiianKebab - components: - - pos: -12.469789,31.726183 - parent: 1 - type: Transform -- uid: 24716 - type: FoodSnackSus - components: - - pos: -12.469789,32.52306 - parent: 1 - type: Transform -- uid: 24717 - type: SpaceVillainArcadeComputerCircuitboard - components: - - pos: -12.610414,35.61681 - parent: 1 - type: Transform -- uid: 24718 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24719 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24720 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24721 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24722 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24723 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24724 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24725 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24726 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -11.5,39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24727 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -11.5,38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24728 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -11.5,37.5 - parent: 1 - type: Transform -- uid: 24729 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -12.5,37.5 - parent: 1 - type: Transform -- uid: 24730 - type: PoweredSmallLight - components: - - pos: -11.5,39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24731 - type: WallSolid - components: - - pos: 40.5,49.5 - parent: 1 - type: Transform -- uid: 24732 - type: WoodDoor - components: - - pos: 41.5,49.5 - parent: 1 - type: Transform -- uid: 24733 - type: WallSolid - components: - - pos: 40.5,50.5 - parent: 1 - type: Transform -- uid: 24734 - type: WoodDoor - components: - - pos: 40.5,51.5 - parent: 1 - type: Transform -- uid: 24735 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 39.5,48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24736 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 38.5,48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24737 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 37.5,48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24738 - type: StoolBar - components: - - rot: 3.141592653589793 rad - pos: 36.5,48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 24739 - type: VendingMachineBooze - components: - - flags: SessionSpecific - type: MetaData - - pos: 36.5,51.5 - parent: 1 - type: Transform -- uid: 24740 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 37.5,51.5 - parent: 1 - type: Transform -- uid: 24741 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 38.5,51.5 - parent: 1 - type: Transform -- uid: 24742 - type: soda_dispenser - components: - - pos: 37.5,51.5 - parent: 1 - type: Transform -- uid: 24743 - type: BoozeDispenser - components: - - pos: 38.5,51.5 - parent: 1 - type: Transform -- uid: 24744 - type: BarSign - components: - - pos: 33.5,48.5 - parent: 1 - type: Transform -- uid: 24745 - type: WallReinforced - components: - - pos: 32.5,48.5 - parent: 1 - type: Transform -- uid: 24746 - type: WallReinforced - components: - - pos: 31.5,48.5 - parent: 1 - type: Transform -- uid: 24747 - type: WallReinforced - components: - - pos: 31.5,47.5 - parent: 1 - type: Transform -- uid: 24748 - type: WallReinforced - components: - - pos: 31.5,46.5 - parent: 1 - type: Transform -- uid: 24749 - type: WallReinforced - components: - - pos: 31.5,44.5 - parent: 1 - type: Transform -- uid: 24750 - type: WallSolid - components: - - pos: 44.5,46.5 - parent: 1 - type: Transform -- uid: 24751 - type: WallSolid - components: - - pos: 44.5,44.5 - parent: 1 - type: Transform -- uid: 24752 - type: AirlockMaintGlass - components: - - pos: 44.5,45.5 - parent: 1 - type: Transform -- uid: 24753 - type: AirlockExternalGlass - components: - - pos: 21.5,45.5 - parent: 1 - type: Transform -- uid: 24754 - type: AirlockMaintGlass - components: - - pos: 31.5,45.5 - parent: 1 - type: Transform -- uid: 24755 - type: WallReinforced - components: - - pos: 27.5,46.5 - parent: 1 - type: Transform -- uid: 24756 - type: WallReinforced - components: - - pos: 27.5,44.5 - parent: 1 - type: Transform -- uid: 24757 - type: WallReinforced - components: - - pos: 28.5,48.5 - parent: 1 - type: Transform -- uid: 24758 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 53.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24759 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 52.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24760 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24761 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24762 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24763 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24764 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 51.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24765 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 50.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24766 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24767 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 48.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24768 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 47.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24769 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24770 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 47.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24771 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 45.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24772 - type: GasPipeStraight - components: - - pos: 47.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24773 - type: GasPipeStraight - components: - - pos: 47.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24774 - type: GasPipeStraight - components: - - pos: 47.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24775 - type: GasPipeStraight - components: - - pos: 45.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24776 - type: GasPipeStraight - components: - - pos: 45.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24777 - type: GasPipeStraight - components: - - pos: 45.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24778 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 47.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24779 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 45.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24780 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 46.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24781 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 45.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24782 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24783 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24784 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24785 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24786 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 40.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24787 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 44.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24788 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24789 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 42.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24790 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 41.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24791 - type: GasPipeTJunction - components: - - pos: 40.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24792 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 37.5,46.5 - parent: 1 - type: Transform -- uid: 24793 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 37.5,45.5 - parent: 1 - type: Transform -- uid: 24794 - type: CableApcExtension - components: - - pos: 39.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24795 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 38.5,45.5 - parent: 1 - type: Transform -- uid: 24796 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 42.5,48.5 - parent: 1 - type: Transform -- uid: 24797 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 43.5,48.5 - parent: 1 - type: Transform -- uid: 24798 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 33.5,44.5 - parent: 1 - type: Transform -- uid: 24799 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 41.5,43.5 - parent: 1 - type: Transform -- uid: 24800 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 32.5,47.5 - parent: 1 - type: Transform -- uid: 24801 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 32.5,46.5 - parent: 1 - type: Transform -- uid: 24802 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 39.5,46.5 - parent: 1 - type: Transform -- uid: 24803 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 39.5,45.5 - parent: 1 - type: Transform -- uid: 24804 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 36.5,46.5 - parent: 1 - type: Transform -- uid: 24805 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 36.5,45.5 - parent: 1 - type: Transform -- uid: 24806 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 42.5,47.5 - parent: 1 - type: Transform -- uid: 24807 - type: ChairWood - components: - - rot: 3.141592653589793 rad - pos: 43.5,47.5 - parent: 1 - type: Transform -- uid: 24808 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 33.5,47.5 - parent: 1 - type: Transform -- uid: 24809 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 33.5,46.5 - parent: 1 - type: Transform -- uid: 24810 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 32.5,44.5 - parent: 1 - type: Transform -- uid: 24811 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 34.5,44.5 - parent: 1 - type: Transform -- uid: 24812 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 39.5,43.5 - parent: 1 - type: Transform -- uid: 24813 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: 40.5,43.5 - parent: 1 - type: Transform -- uid: 24814 - type: CableApcExtension - components: - - pos: 43.5,45.5 - parent: 1 - type: Transform -- uid: 24815 - type: CableApcExtension - components: - - pos: 42.5,45.5 - parent: 1 - type: Transform -- uid: 24816 - type: CableApcExtension - components: - - pos: 41.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24817 - type: CableApcExtension - components: - - pos: 40.5,45.5 - parent: 1 - type: Transform -- uid: 24818 - type: CableApcExtension - components: - - pos: 39.5,45.5 - parent: 1 - type: Transform -- uid: 24819 - type: CableApcExtension - components: - - pos: 38.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24820 - type: CableApcExtension - components: - - pos: 37.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24821 - type: CableApcExtension - components: - - pos: 36.5,45.5 - parent: 1 - type: Transform -- uid: 24822 - type: CableApcExtension - components: - - pos: 35.5,45.5 - parent: 1 - type: Transform -- uid: 24823 - type: CableApcExtension - components: - - pos: 34.5,45.5 - parent: 1 - type: Transform -- uid: 24824 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 38.5,46.5 - parent: 1 - type: Transform -- uid: 24825 - type: CableApcExtension - components: - - pos: 39.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24826 - type: CableApcExtension - components: - - pos: 38.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24827 - type: CableApcExtension - components: - - pos: 38.5,43.5 - parent: 1 - type: Transform -- uid: 24828 - type: CableApcExtension - components: - - pos: 38.5,48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24829 - type: CableApcExtension - components: - - pos: 38.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24830 - type: CableApcExtension - components: - - pos: 38.5,50.5 - parent: 1 - type: Transform -- uid: 24831 - type: CableApcExtension - components: - - pos: 39.5,50.5 - parent: 1 - type: Transform -- uid: 24832 - type: CableApcExtension - components: - - pos: 39.5,51.5 - parent: 1 - type: Transform -- uid: 24833 - type: CableApcExtension - components: - - pos: 40.5,51.5 - parent: 1 - type: Transform -- uid: 24834 - type: CableApcExtension - components: - - pos: 41.5,51.5 - parent: 1 - type: Transform -- uid: 24835 - type: CableApcExtension - components: - - pos: 41.5,44.5 - parent: 1 - type: Transform -- uid: 24836 - type: CableApcExtension - components: - - pos: 41.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24837 - type: CableApcExtension - components: - - pos: 41.5,47.5 - parent: 1 - type: Transform -- uid: 24838 - type: CableApcExtension - components: - - pos: 34.5,46.5 - parent: 1 - type: Transform -- uid: 24839 - type: CableApcExtension - components: - - pos: 34.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24840 - type: CableApcExtension - components: - - pos: 35.5,44.5 - parent: 1 - type: Transform -- uid: 24841 - type: CableApcExtension - components: - - pos: 35.5,43.5 - parent: 1 - type: Transform -- uid: 24842 - type: CableApcExtension - components: - - pos: 45.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24843 - type: CableApcExtension - components: - - pos: 45.5,31.5 - parent: 1 - type: Transform -- uid: 24844 - type: CableApcExtension - components: - - pos: 45.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24845 - type: CableApcExtension - components: - - pos: 45.5,29.5 - parent: 1 - type: Transform -- uid: 24846 - type: CableApcExtension - components: - - pos: 44.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 24847 - type: CableApcExtension - components: - - pos: 43.5,29.5 - parent: 1 - type: Transform -- uid: 24848 - type: BoxLightMixed - components: - - pos: 39.546867,49.67635 - parent: 1 - type: Transform -- uid: 24849 - type: PoweredSmallLightEmpty - components: - - rot: -1.5707963267948966 rad - pos: 43.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24850 - type: PoweredSmallLightEmpty - components: - - rot: 1.5707963267948966 rad - pos: 36.5,50.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24851 - type: PoweredSmallLightEmpty - components: - - rot: 3.141592653589793 rad - pos: 37.5,43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24852 - type: PoweredSmallLightEmpty - components: - - pos: 34.5,47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24853 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 43.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 24854 - type: CableApcExtension - components: - - pos: 37.5,50.5 - parent: 1 - type: Transform -- uid: 24855 - type: CableApcStack1 - components: - - rot: 3.141592653589793 rad - pos: 38.439327,47.51809 - parent: 1 - type: Transform -- uid: 24856 - type: MaterialWoodPlank - components: - - rot: 3.141592653589793 rad - pos: 38.425755,46.464603 - parent: 1 - type: Transform -- uid: 24857 - type: WindowReinforcedDirectional - components: - - pos: -2.5,71.5 - parent: 1 - type: Transform -- uid: 24858 - type: WindowReinforcedDirectional - components: - - pos: -1.5,71.5 - parent: 1 - type: Transform -- uid: 24859 - type: WindowReinforcedDirectional - components: - - pos: -0.5,71.5 - parent: 1 - type: Transform -- uid: 24860 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -3.5,70.5 - parent: 1 - type: Transform -- uid: 24861 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -3.5,69.5 - parent: 1 - type: Transform -- uid: 24862 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -3.5,68.5 - parent: 1 - type: Transform -- uid: 24863 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -2.5,67.5 - parent: 1 - type: Transform -- uid: 24864 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -1.5,67.5 - parent: 1 - type: Transform -- uid: 24865 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -0.5,67.5 - parent: 1 - type: Transform -- uid: 24866 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 0.5,68.5 - parent: 1 - type: Transform -- uid: 24867 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 0.5,69.5 - parent: 1 - type: Transform -- uid: 24868 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: 0.5,70.5 - parent: 1 - type: Transform -- uid: 24869 - type: GasThermoMachineFreezer - components: - - pos: 2.5,68.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 24870 - type: GasThermoMachineFreezer - components: - - pos: 2.5,70.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 24871 - type: GasThermoMachineFreezer - components: - - pos: -5.5,68.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 24872 - type: GasThermoMachineFreezer - components: - - pos: -5.5,70.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- uid: 24873 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 2.5,69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24874 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -5.5,69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24875 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,67.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24876 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24877 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24878 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 2.5,64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24879 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,67.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24880 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24881 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24882 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -5.5,64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24883 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,68.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24884 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,67.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24885 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24886 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24887 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,68.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24888 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,67.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24889 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24890 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 3.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24891 - type: GasPipeBend - components: - - pos: 3.5,69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24892 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -6.5,69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24893 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 3.5,64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24894 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 2.5,63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24895 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -5.5,63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24896 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -6.5,64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24897 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 1.5,69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24898 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -4.5,69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24899 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 0.5,69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24900 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24901 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: -0.5,69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24902 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -2.5,69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24903 - type: GasVentPump - components: - - pos: -1.5,66.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24904 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -1.5,67.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24905 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -2.5,67.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24906 - type: GasPipeStraight - components: - - pos: -2.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24907 - type: GasPipeStraight - components: - - pos: -2.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24908 - type: GasPipeStraight - components: - - pos: -2.5,64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24909 - type: GasPipeStraight - components: - - pos: -2.5,63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24910 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -1.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24911 - type: GasPipeStraight - components: - - pos: -2.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24912 - type: GasPipeStraight - components: - - pos: -2.5,60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 24913 - type: GasPipeStraight - components: - - pos: -2.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24914 - type: GasPipeStraight - components: - - pos: -1.5,65.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24915 - type: GasPipeStraight - components: - - pos: -1.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24916 - type: GasPipeStraight - components: - - pos: -1.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24917 - type: GasPipeStraight - components: - - pos: -1.5,62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24918 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -2.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24919 - type: GasPipeStraight - components: - - pos: -1.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24920 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -1.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24921 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -0.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24922 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -1.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24923 - type: GasVentScrubber - components: - - pos: -1.5,68.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24924 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24925 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24926 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24927 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24928 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24929 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24930 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24931 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24932 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24933 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24934 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24935 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24936 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24937 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24938 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24939 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24940 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24941 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24942 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24943 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -3.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24944 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24945 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -1.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24946 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -0.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24947 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 24948 - type: ComputerBroken - components: - - rot: 1.5707963267948966 rad - pos: -0.5,73.5 - parent: 1 - type: Transform -- uid: 24949 - type: ComputerBroken - components: - - rot: -1.5707963267948966 rad - pos: -2.5,73.5 - parent: 1 - type: Transform -- uid: 24950 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -1.5,73.5 - parent: 1 - type: Transform -- uid: 24951 - type: ComputerBroken - components: - - rot: 1.5707963267948966 rad - pos: 2.5,69.5 - parent: 1 - type: Transform -- uid: 24952 - type: ComputerBroken - components: - - rot: -1.5707963267948966 rad - pos: -5.5,69.5 - parent: 1 - type: Transform -- uid: 24953 - type: ShowcaseRobot - components: - - pos: -0.5,63.5 - parent: 1 - type: Transform -- uid: 24954 - type: ShowcaseRobot - components: - - pos: -2.5,63.5 - parent: 1 - type: Transform -- uid: 24955 - type: WallReinforced - components: - - pos: 46.5,51.5 - parent: 1 - type: Transform -- uid: 24956 - type: WallReinforced - components: - - pos: 47.5,51.5 - parent: 1 - type: Transform -- uid: 24957 - type: WallReinforced - components: - - pos: 48.5,51.5 - parent: 1 - type: Transform -- uid: 24958 - type: Grille - components: - - pos: 5.5,69.5 - parent: 1 - type: Transform -- uid: 24959 - type: Grille - components: - - pos: -8.5,69.5 - parent: 1 - type: Transform -- uid: 24960 - type: AtmosFixFreezerMarker - components: - - pos: -5.5,73.5 - parent: 1 - type: Transform -- uid: 24961 - type: AtmosFixFreezerMarker - components: - - pos: -5.5,72.5 - parent: 1 - type: Transform -- uid: 24962 - type: AtmosFixFreezerMarker - components: - - pos: -5.5,71.5 - parent: 1 - type: Transform -- uid: 24963 - type: AtmosFixFreezerMarker - components: - - pos: -5.5,70.5 - parent: 1 - type: Transform -- uid: 24964 - type: AtmosFixFreezerMarker - components: - - pos: -5.5,69.5 - parent: 1 - type: Transform -- uid: 24965 - type: AtmosFixFreezerMarker - components: - - pos: -5.5,68.5 - parent: 1 - type: Transform -- uid: 24966 - type: AtmosFixFreezerMarker - components: - - pos: -5.5,67.5 - parent: 1 - type: Transform -- uid: 24967 - type: AtmosFixFreezerMarker - components: - - pos: -5.5,66.5 - parent: 1 - type: Transform -- uid: 24968 - type: AtmosFixFreezerMarker - components: - - pos: -4.5,73.5 - parent: 1 - type: Transform -- uid: 24969 - type: AtmosFixFreezerMarker - components: - - pos: -4.5,72.5 - parent: 1 - type: Transform -- uid: 24970 - type: AtmosFixFreezerMarker - components: - - pos: -4.5,71.5 - parent: 1 - type: Transform -- uid: 24971 - type: AtmosFixFreezerMarker - components: - - pos: -4.5,70.5 - parent: 1 - type: Transform -- uid: 24972 - type: AtmosFixFreezerMarker - components: - - pos: -4.5,69.5 - parent: 1 - type: Transform -- uid: 24973 - type: AtmosFixFreezerMarker - components: - - pos: -4.5,68.5 - parent: 1 - type: Transform -- uid: 24974 - type: AtmosFixFreezerMarker - components: - - pos: -4.5,67.5 - parent: 1 - type: Transform -- uid: 24975 - type: AtmosFixFreezerMarker - components: - - pos: -4.5,66.5 - parent: 1 - type: Transform -- uid: 24976 - type: AtmosFixFreezerMarker - components: - - pos: -3.5,73.5 - parent: 1 - type: Transform -- uid: 24977 - type: AtmosFixFreezerMarker - components: - - pos: -3.5,72.5 - parent: 1 - type: Transform -- uid: 24978 - type: AtmosFixFreezerMarker - components: - - pos: -3.5,71.5 - parent: 1 - type: Transform -- uid: 24979 - type: AtmosFixFreezerMarker - components: - - pos: -3.5,70.5 - parent: 1 - type: Transform -- uid: 24980 - type: AtmosFixFreezerMarker - components: - - pos: -3.5,69.5 - parent: 1 - type: Transform -- uid: 24981 - type: AtmosFixFreezerMarker - components: - - pos: -3.5,68.5 - parent: 1 - type: Transform -- uid: 24982 - type: AtmosFixFreezerMarker - components: - - pos: -3.5,67.5 - parent: 1 - type: Transform -- uid: 24983 - type: AtmosFixFreezerMarker - components: - - pos: -3.5,66.5 - parent: 1 - type: Transform -- uid: 24984 - type: AtmosFixFreezerMarker - components: - - pos: -2.5,73.5 - parent: 1 - type: Transform -- uid: 24985 - type: AtmosFixFreezerMarker - components: - - pos: -2.5,72.5 - parent: 1 - type: Transform -- uid: 24986 - type: AtmosFixFreezerMarker - components: - - pos: -2.5,71.5 - parent: 1 - type: Transform -- uid: 24987 - type: AtmosFixFreezerMarker - components: - - pos: -2.5,70.5 - parent: 1 - type: Transform -- uid: 24988 - type: AtmosFixFreezerMarker - components: - - pos: -2.5,69.5 - parent: 1 - type: Transform -- uid: 24989 - type: AtmosFixFreezerMarker - components: - - pos: -2.5,68.5 - parent: 1 - type: Transform -- uid: 24990 - type: AtmosFixFreezerMarker - components: - - pos: -2.5,67.5 - parent: 1 - type: Transform -- uid: 24991 - type: AtmosFixFreezerMarker - components: - - pos: -2.5,66.5 - parent: 1 - type: Transform -- uid: 24992 - type: AtmosFixFreezerMarker - components: - - pos: -6.5,72.5 - parent: 1 - type: Transform -- uid: 24993 - type: AtmosFixFreezerMarker - components: - - pos: -6.5,71.5 - parent: 1 - type: Transform -- uid: 24994 - type: AtmosFixFreezerMarker - components: - - pos: -6.5,70.5 - parent: 1 - type: Transform -- uid: 24995 - type: AtmosFixFreezerMarker - components: - - pos: -6.5,69.5 - parent: 1 - type: Transform -- uid: 24996 - type: AtmosFixFreezerMarker - components: - - pos: -6.5,68.5 - parent: 1 - type: Transform -- uid: 24997 - type: AtmosFixFreezerMarker - components: - - pos: -6.5,67.5 - parent: 1 - type: Transform -- uid: 24998 - type: AtmosFixFreezerMarker - components: - - pos: -6.5,66.5 - parent: 1 - type: Transform -- uid: 24999 - type: AtmosFixFreezerMarker - components: - - pos: -7.5,71.5 - parent: 1 - type: Transform -- uid: 25000 - type: AtmosFixFreezerMarker - components: - - pos: -7.5,70.5 - parent: 1 - type: Transform -- uid: 25001 - type: AtmosFixFreezerMarker - components: - - pos: -7.5,69.5 - parent: 1 - type: Transform -- uid: 25002 - type: AtmosFixFreezerMarker - components: - - pos: -7.5,68.5 - parent: 1 - type: Transform -- uid: 25003 - type: AtmosFixFreezerMarker - components: - - pos: -7.5,67.5 - parent: 1 - type: Transform -- uid: 25004 - type: AtmosFixFreezerMarker - components: - - pos: -1.5,72.5 - parent: 1 - type: Transform -- uid: 25005 - type: AtmosFixFreezerMarker - components: - - pos: -1.5,71.5 - parent: 1 - type: Transform -- uid: 25006 - type: AtmosFixFreezerMarker - components: - - pos: -0.5,72.5 - parent: 1 - type: Transform -- uid: 25007 - type: AtmosFixFreezerMarker - components: - - pos: -0.5,71.5 - parent: 1 - type: Transform -- uid: 25008 - type: AtmosFixFreezerMarker - components: - - pos: 0.5,72.5 - parent: 1 - type: Transform -- uid: 25009 - type: AtmosFixFreezerMarker - components: - - pos: 0.5,71.5 - parent: 1 - type: Transform -- uid: 25010 - type: AtmosFixFreezerMarker - components: - - pos: 1.5,72.5 - parent: 1 - type: Transform -- uid: 25011 - type: AtmosFixFreezerMarker - components: - - pos: 1.5,71.5 - parent: 1 - type: Transform -- uid: 25012 - type: AtmosFixFreezerMarker - components: - - pos: 2.5,72.5 - parent: 1 - type: Transform -- uid: 25013 - type: AtmosFixFreezerMarker - components: - - pos: 2.5,71.5 - parent: 1 - type: Transform -- uid: 25014 - type: AtmosFixFreezerMarker - components: - - pos: 3.5,72.5 - parent: 1 - type: Transform -- uid: 25015 - type: AtmosFixFreezerMarker - components: - - pos: 3.5,71.5 - parent: 1 - type: Transform -- uid: 25016 - type: AtmosFixFreezerMarker - components: - - pos: -0.5,73.5 - parent: 1 - type: Transform -- uid: 25017 - type: AtmosFixFreezerMarker - components: - - pos: 0.5,73.5 - parent: 1 - type: Transform -- uid: 25018 - type: AtmosFixFreezerMarker - components: - - pos: 1.5,73.5 - parent: 1 - type: Transform -- uid: 25019 - type: AtmosFixFreezerMarker - components: - - pos: 2.5,73.5 - parent: 1 - type: Transform -- uid: 25020 - type: AtmosFixFreezerMarker - components: - - pos: 4.5,71.5 - parent: 1 - type: Transform -- uid: 25021 - type: AtmosFixFreezerMarker - components: - - pos: 4.5,70.5 - parent: 1 - type: Transform -- uid: 25022 - type: AtmosFixFreezerMarker - components: - - pos: 4.5,69.5 - parent: 1 - type: Transform -- uid: 25023 - type: AtmosFixFreezerMarker - components: - - pos: 4.5,68.5 - parent: 1 - type: Transform -- uid: 25024 - type: AtmosFixFreezerMarker - components: - - pos: 4.5,67.5 - parent: 1 - type: Transform -- uid: 25025 - type: AtmosFixFreezerMarker - components: - - pos: 2.5,70.5 - parent: 1 - type: Transform -- uid: 25026 - type: AtmosFixFreezerMarker - components: - - pos: 2.5,69.5 - parent: 1 - type: Transform -- uid: 25027 - type: AtmosFixFreezerMarker - components: - - pos: 2.5,68.5 - parent: 1 - type: Transform -- uid: 25028 - type: AtmosFixFreezerMarker - components: - - pos: 2.5,67.5 - parent: 1 - type: Transform -- uid: 25029 - type: AtmosFixFreezerMarker - components: - - pos: 2.5,66.5 - parent: 1 - type: Transform -- uid: 25030 - type: AtmosFixFreezerMarker - components: - - pos: 3.5,70.5 - parent: 1 - type: Transform -- uid: 25031 - type: AtmosFixFreezerMarker - components: - - pos: 3.5,69.5 - parent: 1 - type: Transform -- uid: 25032 - type: AtmosFixFreezerMarker - components: - - pos: 3.5,68.5 - parent: 1 - type: Transform -- uid: 25033 - type: AtmosFixFreezerMarker - components: - - pos: 3.5,67.5 - parent: 1 - type: Transform -- uid: 25034 - type: AtmosFixFreezerMarker - components: - - pos: 3.5,66.5 - parent: 1 - type: Transform -- uid: 25035 - type: AtmosFixFreezerMarker - components: - - pos: 0.5,70.5 - parent: 1 - type: Transform -- uid: 25036 - type: AtmosFixFreezerMarker - components: - - pos: 0.5,69.5 - parent: 1 - type: Transform -- uid: 25037 - type: AtmosFixFreezerMarker - components: - - pos: 0.5,68.5 - parent: 1 - type: Transform -- uid: 25038 - type: AtmosFixFreezerMarker - components: - - pos: 0.5,67.5 - parent: 1 - type: Transform -- uid: 25039 - type: AtmosFixFreezerMarker - components: - - pos: 0.5,66.5 - parent: 1 - type: Transform -- uid: 25040 - type: AtmosFixFreezerMarker - components: - - pos: 0.5,65.5 - parent: 1 - type: Transform -- uid: 25041 - type: AtmosFixFreezerMarker - components: - - pos: 1.5,70.5 - parent: 1 - type: Transform -- uid: 25042 - type: AtmosFixFreezerMarker - components: - - pos: 1.5,69.5 - parent: 1 - type: Transform -- uid: 25043 - type: AtmosFixFreezerMarker - components: - - pos: 1.5,68.5 - parent: 1 - type: Transform -- uid: 25044 - type: AtmosFixFreezerMarker - components: - - pos: 1.5,67.5 - parent: 1 - type: Transform -- uid: 25045 - type: AtmosFixFreezerMarker - components: - - pos: 1.5,66.5 - parent: 1 - type: Transform -- uid: 25046 - type: AtmosFixFreezerMarker - components: - - pos: 1.5,65.5 - parent: 1 - type: Transform -- uid: 25047 - type: AtmosFixFreezerMarker - components: - - pos: -1.5,70.5 - parent: 1 - type: Transform -- uid: 25048 - type: AtmosFixFreezerMarker - components: - - pos: -1.5,69.5 - parent: 1 - type: Transform -- uid: 25049 - type: AtmosFixFreezerMarker - components: - - pos: -1.5,68.5 - parent: 1 - type: Transform -- uid: 25050 - type: AtmosFixFreezerMarker - components: - - pos: -1.5,67.5 - parent: 1 - type: Transform -- uid: 25051 - type: AtmosFixFreezerMarker - components: - - pos: -1.5,66.5 - parent: 1 - type: Transform -- uid: 25052 - type: AtmosFixFreezerMarker - components: - - pos: -1.5,65.5 - parent: 1 - type: Transform -- uid: 25053 - type: AtmosFixFreezerMarker - components: - - pos: -0.5,70.5 - parent: 1 - type: Transform -- uid: 25054 - type: AtmosFixFreezerMarker - components: - - pos: -0.5,69.5 - parent: 1 - type: Transform -- uid: 25055 - type: AtmosFixFreezerMarker - components: - - pos: -0.5,68.5 - parent: 1 - type: Transform -- uid: 25056 - type: AtmosFixFreezerMarker - components: - - pos: -0.5,67.5 - parent: 1 - type: Transform -- uid: 25057 - type: AtmosFixFreezerMarker - components: - - pos: -0.5,66.5 - parent: 1 - type: Transform -- uid: 25058 - type: AtmosFixFreezerMarker - components: - - pos: -0.5,65.5 - parent: 1 - type: Transform -- uid: 25059 - type: AtmosFixFreezerMarker - components: - - pos: -2.5,65.5 - parent: 1 - type: Transform -- uid: 25060 - type: AtmosFixFreezerMarker - components: - - pos: -3.5,65.5 - parent: 1 - type: Transform -- uid: 25061 - type: AtmosFixFreezerMarker - components: - - pos: -4.5,65.5 - parent: 1 - type: Transform -- uid: 25062 - type: CableHV - components: - - pos: -1.5,69.5 - parent: 1 - type: Transform -- uid: 25063 - type: CableHV - components: - - pos: -1.5,68.5 - parent: 1 - type: Transform -- uid: 25064 - type: CableHV - components: - - pos: -1.5,67.5 - parent: 1 - type: Transform -- uid: 25065 - type: CableHV - components: - - pos: -1.5,66.5 - parent: 1 - type: Transform -- uid: 25066 - type: CableHV - components: - - pos: -1.5,65.5 - parent: 1 - type: Transform -- uid: 25067 - type: CableHV - components: - - pos: -1.5,64.5 - parent: 1 - type: Transform -- uid: 25068 - type: CableHV - components: - - pos: -1.5,63.5 - parent: 1 - type: Transform -- uid: 25069 - type: CableHV - components: - - pos: -1.5,62.5 - parent: 1 - type: Transform -- uid: 25070 - type: CableHV - components: - - pos: -1.5,61.5 - parent: 1 - type: Transform -- uid: 25071 - type: CableHV - components: - - pos: -1.5,60.5 - parent: 1 - type: Transform -- uid: 25072 - type: CableHV - components: - - pos: -1.5,59.5 - parent: 1 - type: Transform -- uid: 25073 - type: CableHV - components: - - pos: -1.5,58.5 - parent: 1 - type: Transform -- uid: 25074 - type: Grille - components: - - pos: -3.5,42.5 - parent: 1 - type: Transform -- uid: 25075 - type: Chair - components: - - pos: -1.5,43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 25076 - type: Chair - components: - - pos: -3.5,43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 25077 - type: Table - components: - - pos: -2.5,43.5 - parent: 1 - type: Transform -- uid: 25078 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -4.5,43.5 - parent: 1 - type: Transform -- uid: 25079 - type: DisposalBend - components: - - pos: -4.5,44.5 - parent: 1 - type: Transform -- uid: 25080 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -5.5,44.5 - parent: 1 - type: Transform -- uid: 25081 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,44.5 - parent: 1 - type: Transform -- uid: 25082 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,44.5 - parent: 1 - type: Transform -- uid: 25083 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,44.5 - parent: 1 - type: Transform -- uid: 25084 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,44.5 - parent: 1 - type: Transform -- uid: 25085 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -10.5,44.5 - parent: 1 - type: Transform -- uid: 25086 - type: DisposalUnit - components: - - pos: -4.5,43.5 - parent: 1 - type: Transform -- uid: 25087 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,43.5 - parent: 1 - type: Transform -- uid: 25088 - type: CableApcExtension - components: - - pos: -9.5,46.5 - parent: 1 - type: Transform -- uid: 25089 - type: CableApcExtension - components: - - pos: -8.5,46.5 - parent: 1 - type: Transform -- uid: 25090 - type: CableApcExtension - components: - - pos: -7.5,46.5 - parent: 1 - type: Transform -- uid: 25091 - type: CableApcExtension - components: - - pos: -6.5,46.5 - parent: 1 - type: Transform -- uid: 25092 - type: CableApcExtension - components: - - pos: -5.5,46.5 - parent: 1 - type: Transform -- uid: 25093 - type: CableApcExtension - components: - - pos: -4.5,46.5 - parent: 1 - type: Transform -- uid: 25094 - type: CableApcExtension - components: - - pos: -3.5,46.5 - parent: 1 - type: Transform -- uid: 25095 - type: CableApcExtension - components: - - pos: -2.5,46.5 - parent: 1 - type: Transform -- uid: 25096 - type: CableApcExtension - components: - - pos: -1.5,46.5 - parent: 1 - type: Transform -- uid: 25097 - type: CableApcExtension - components: - - pos: -0.5,46.5 - parent: 1 - type: Transform -- uid: 25098 - type: CableApcExtension - components: - - pos: -0.5,45.5 - parent: 1 - type: Transform -- uid: 25099 - type: CableApcExtension - components: - - pos: -0.5,44.5 - parent: 1 - type: Transform -- uid: 25100 - type: CableApcExtension - components: - - pos: -1.5,44.5 - parent: 1 - type: Transform -- uid: 25101 - type: CableApcExtension - components: - - pos: -2.5,44.5 - parent: 1 - type: Transform -- uid: 25102 - type: CableApcExtension - components: - - pos: -3.5,44.5 - parent: 1 - type: Transform -- uid: 25103 - type: CableApcExtension - components: - - pos: -4.5,44.5 - parent: 1 - type: Transform -- uid: 25104 - type: CableApcExtension - components: - - pos: -5.5,44.5 - parent: 1 - type: Transform -- uid: 25105 - type: CableApcExtension - components: - - pos: -6.5,44.5 - parent: 1 - type: Transform -- uid: 25106 - type: CableApcExtension - components: - - pos: -7.5,44.5 - parent: 1 - type: Transform -- uid: 25107 - type: CableApcExtension - components: - - pos: -8.5,44.5 - parent: 1 - type: Transform -- uid: 25108 - type: CableApcExtension - components: - - pos: -9.5,44.5 - parent: 1 - type: Transform -- uid: 25109 - type: CableApcExtension - components: - - pos: 0.5,46.5 - parent: 1 - type: Transform -- uid: 25110 - type: CableApcExtension - components: - - pos: 0.5,47.5 - parent: 1 - type: Transform -- uid: 25111 - type: CableApcExtension - components: - - pos: -0.5,48.5 - parent: 1 - type: Transform -- uid: 25112 - type: CableApcExtension - components: - - pos: -0.5,49.5 - parent: 1 - type: Transform -- uid: 25113 - type: CableApcExtension - components: - - pos: -0.5,50.5 - parent: 1 - type: Transform -- uid: 25114 - type: CableApcExtension - components: - - pos: -0.5,51.5 - parent: 1 - type: Transform -- uid: 25115 - type: CableApcExtension - components: - - pos: -0.5,52.5 - parent: 1 - type: Transform -- uid: 25116 - type: CableApcExtension - components: - - pos: -0.5,53.5 - parent: 1 - type: Transform -- uid: 25117 - type: CableApcExtension - components: - - pos: -0.5,54.5 - parent: 1 - type: Transform -- uid: 25118 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 1.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25119 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 1.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25120 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25121 - type: CableApcExtension - components: - - pos: 0.5,48.5 - parent: 1 - type: Transform -- uid: 25122 - type: CableApcExtension - components: - - pos: 1.5,48.5 - parent: 1 - type: Transform -- uid: 25123 - type: CableApcExtension - components: - - pos: 1.5,50.5 - parent: 1 - type: Transform -- uid: 25124 - type: CableApcExtension - components: - - pos: 1.5,51.5 - parent: 1 - type: Transform -- uid: 25125 - type: CableApcExtension - components: - - pos: 1.5,52.5 - parent: 1 - type: Transform -- uid: 25126 - type: CableApcExtension - components: - - pos: 1.5,53.5 - parent: 1 - type: Transform -- uid: 25127 - type: CableApcExtension - components: - - pos: 1.5,54.5 - parent: 1 - type: Transform -- uid: 25128 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -0.5,46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25129 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 1.5,44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25130 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -0.5,47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25131 - type: GasPipeStraight - components: - - pos: 1.5,48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25132 - type: GasPipeStraight - components: - - pos: 1.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25133 - type: GasPipeStraight - components: - - pos: 1.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25134 - type: GasPipeStraight - components: - - pos: 1.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25135 - type: GasPipeStraight - components: - - pos: 1.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25136 - type: GasPipeStraight - components: - - pos: 1.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25137 - type: GasPipeStraight - components: - - pos: 1.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25138 - type: GasPipeStraight - components: - - pos: -0.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25139 - type: GasPipeStraight - components: - - pos: -0.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25140 - type: GasPipeStraight - components: - - pos: -0.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25141 - type: GasPipeStraight - components: - - pos: -0.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25142 - type: GasPipeStraight - components: - - pos: -0.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25143 - type: GasPipeStraight - components: - - pos: -0.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25144 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 0.5,48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25145 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 0.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25146 - type: CableApcExtension - components: - - pos: -10.5,23.5 - parent: 1 - type: Transform -- uid: 25147 - type: CableApcExtension - components: - - pos: -10.5,22.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25148 - type: CableApcExtension - components: - - pos: -10.5,21.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25149 - type: CableApcExtension - components: - - pos: -10.5,20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25150 - type: CableApcExtension - components: - - pos: -10.5,19.5 - parent: 1 - type: Transform -- uid: 25151 - type: CableApcExtension - components: - - pos: -10.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25152 - type: CableApcExtension - components: - - pos: -11.5,18.5 - parent: 1 - type: Transform -- uid: 25153 - type: CableApcExtension - components: - - pos: -12.5,18.5 - parent: 1 - type: Transform -- uid: 25154 - type: CableApcExtension - components: - - pos: -13.5,18.5 - parent: 1 - type: Transform -- uid: 25155 - type: CableApcExtension - components: - - pos: -13.5,19.5 - parent: 1 - type: Transform -- uid: 25156 - type: CableApcExtension - components: - - pos: -13.5,20.5 - parent: 1 - type: Transform -- uid: 25157 - type: CableApcExtension - components: - - pos: -13.5,21.5 - parent: 1 - type: Transform -- uid: 25158 - type: CableApcExtension - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25159 - type: CableApcExtension - components: - - pos: -8.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25160 - type: CableApcExtension - components: - - pos: -7.5,18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25161 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -9.5,41.5 - parent: 1 - type: Transform -- uid: 25162 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -8.5,41.5 - parent: 1 - type: Transform -- uid: 25163 - type: KitchenMicrowave - components: - - pos: -8.5,41.5 - parent: 1 - type: Transform -- uid: 25164 - type: DonkpocketBoxSpawner - components: - - pos: -9.5,41.5 - parent: 1 - type: Transform -- uid: 25165 - type: FoodDonkpocketBerry - components: - - pos: -9.518124,43.595463 - parent: 1 - type: Transform -- uid: 25166 - type: FirelockGlass - components: - - pos: -10.5,43.5 - parent: 1 - type: Transform -- uid: 25167 - type: FirelockGlass - components: - - pos: -9.5,43.5 - parent: 1 - type: Transform -- uid: 25168 - type: Firelock - components: - - pos: -13.5,41.5 - parent: 1 - type: Transform -- uid: 25169 - type: Table - components: - - pos: -10.5,41.5 - parent: 1 - type: Transform -- uid: 25170 - type: DonkpocketBoxSpawner - components: - - pos: -10.5,41.5 - parent: 1 - type: Transform -- uid: 25171 - type: CableApcExtension - components: - - pos: -11.5,42.5 - parent: 1 - type: Transform -- uid: 25172 - type: CableApcExtension - components: - - pos: -10.5,42.5 - parent: 1 - type: Transform -- uid: 25173 - type: CableApcExtension - components: - - pos: -9.5,42.5 - parent: 1 - type: Transform -- uid: 25174 - type: CableApcExtension - components: - - pos: -9.5,43.5 - parent: 1 - type: Transform -- uid: 25175 - type: FoodDonkpocketDink - components: - - pos: -10.231451,43.574326 - parent: 1 - type: Transform -- uid: 25176 - type: StoolBar - components: - - name: donk stool - type: MetaData - - pos: -9.5,44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 25177 - type: StoolBar - components: - - name: donk stool - type: MetaData - - pos: -10.5,44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 25178 - type: PottedPlantRandom - components: - - pos: -2.5,46.5 - parent: 1 - type: Transform -- uid: 25179 - type: PottedPlantRandom - components: - - pos: -14.5,42.5 - parent: 1 - type: Transform -- uid: 25180 - type: WallReinforced - components: - - pos: 30.5,42.5 - parent: 1 - type: Transform -- uid: 25181 - type: WallReinforced - components: - - pos: 30.5,41.5 - parent: 1 - type: Transform -- uid: 25182 - type: WallReinforced - components: - - pos: 28.5,42.5 - parent: 1 - type: Transform -- uid: 25183 - type: WallReinforced - components: - - pos: 28.5,41.5 - parent: 1 - type: Transform -- uid: 25184 - type: WallReinforced - components: - - pos: 27.5,48.5 - parent: 1 - type: Transform -- uid: 25185 - type: AirlockExternalGlassLocked - components: - - pos: 29.5,41.5 - parent: 1 - type: Transform -- uid: 25186 - type: AirlockExternalGlassLocked - components: - - pos: 29.5,43.5 - parent: 1 - type: Transform -- uid: 25187 - type: CableApcExtension - components: - - pos: 33.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25188 - type: CableApcExtension - components: - - pos: 32.5,45.5 - parent: 1 - type: Transform -- uid: 25189 - type: CableApcExtension - components: - - pos: 31.5,45.5 - parent: 1 - type: Transform -- uid: 25190 - type: CableApcExtension - components: - - pos: 30.5,45.5 - parent: 1 - type: Transform -- uid: 25191 - type: CableApcExtension - components: - - pos: 29.5,45.5 - parent: 1 - type: Transform -- uid: 25192 - type: CableApcExtension - components: - - pos: 29.5,44.5 - parent: 1 - type: Transform -- uid: 25193 - type: CableApcExtension - components: - - pos: 29.5,43.5 - parent: 1 - type: Transform -- uid: 25194 - type: CableApcExtension - components: - - pos: 29.5,42.5 - parent: 1 - type: Transform -- uid: 25195 - type: CableApcExtension - components: - - pos: 29.5,46.5 - parent: 1 - type: Transform -- uid: 25196 - type: CableApcExtension - components: - - pos: 29.5,47.5 - parent: 1 - type: Transform -- uid: 25197 - type: AsteroidRock - components: - - pos: 14.5,53.5 - parent: 1 - type: Transform -- uid: 25198 - type: AsteroidRock - components: - - pos: 15.5,55.5 - parent: 1 - type: Transform -- uid: 25199 - type: AsteroidRock - components: - - pos: 15.5,54.5 - parent: 1 - type: Transform -- uid: 25200 - type: AsteroidRock - components: - - pos: 15.5,53.5 - parent: 1 - type: Transform -- uid: 25201 - type: AsteroidRock - components: - - pos: 16.5,55.5 - parent: 1 - type: Transform -- uid: 25202 - type: AsteroidRock - components: - - pos: 16.5,54.5 - parent: 1 - type: Transform -- uid: 25203 - type: AsteroidRock - components: - - pos: 16.5,53.5 - parent: 1 - type: Transform -- uid: 25204 - type: AsteroidRock - components: - - pos: 17.5,55.5 - parent: 1 - type: Transform -- uid: 25205 - type: AsteroidRock - components: - - pos: 17.5,54.5 - parent: 1 - type: Transform -- uid: 25206 - type: AsteroidRock - components: - - pos: 17.5,53.5 - parent: 1 - type: Transform -- uid: 25207 - type: AsteroidRock - components: - - pos: 14.5,52.5 - parent: 1 - type: Transform -- uid: 25208 - type: AsteroidRock - components: - - pos: 16.5,52.5 - parent: 1 - type: Transform -- uid: 25209 - type: AsteroidRock - components: - - pos: 15.5,52.5 - parent: 1 - type: Transform -- uid: 25210 - type: AsteroidRock - components: - - pos: 19.5,47.5 - parent: 1 - type: Transform -- uid: 25211 - type: AsteroidRock - components: - - pos: 21.5,51.5 - parent: 1 - type: Transform -- uid: 25212 - type: AsteroidRock - components: - - pos: 21.5,52.5 - parent: 1 - type: Transform -- uid: 25213 - type: AsteroidRock - components: - - pos: 20.5,51.5 - parent: 1 - type: Transform -- uid: 25214 - type: AsteroidRock - components: - - pos: 20.5,52.5 - parent: 1 - type: Transform -- uid: 25215 - type: AsteroidRock - components: - - pos: 19.5,51.5 - parent: 1 - type: Transform -- uid: 25216 - type: AsteroidRock - components: - - pos: 19.5,52.5 - parent: 1 - type: Transform -- uid: 25217 - type: AsteroidRock - components: - - pos: 19.5,50.5 - parent: 1 - type: Transform -- uid: 25218 - type: AsteroidRock - components: - - pos: 20.5,50.5 - parent: 1 - type: Transform -- uid: 25219 - type: AsteroidRock - components: - - pos: 24.5,53.5 - parent: 1 - type: Transform -- uid: 25220 - type: AsteroidRock - components: - - pos: 24.5,52.5 - parent: 1 - type: Transform -- uid: 25221 - type: AsteroidRock - components: - - pos: 24.5,51.5 - parent: 1 - type: Transform -- uid: 25222 - type: AsteroidRock - components: - - pos: 22.5,53.5 - parent: 1 - type: Transform -- uid: 25223 - type: AsteroidRock - components: - - pos: 22.5,52.5 - parent: 1 - type: Transform -- uid: 25224 - type: AsteroidRock - components: - - pos: 22.5,54.5 - parent: 1 - type: Transform -- uid: 25225 - type: AsteroidRock - components: - - pos: 21.5,55.5 - parent: 1 - type: Transform -- uid: 25226 - type: CableApcExtension - components: - - pos: -2.5,31.5 - parent: 1 - type: Transform -- uid: 25227 - type: CableApcExtension - components: - - pos: -2.5,30.5 - parent: 1 - type: Transform -- uid: 25228 - type: CableApcExtension - components: - - pos: -2.5,29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25229 - type: CableApcExtension - components: - - pos: -2.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25230 - type: CableApcExtension - components: - - pos: -2.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25231 - type: CableApcExtension - components: - - pos: -2.5,26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25232 - type: CableApcExtension - components: - - pos: -2.5,25.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25233 - type: CableApcExtension - components: - - pos: 3.5,32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25234 - type: ClothingHandsGlovesColorYellow - components: - - pos: 22.516106,51.47508 - parent: 1 - type: Transform -- uid: 25235 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 28.5,47.5 - parent: 1 - type: Transform -- uid: 25236 - type: CableApcExtension - components: - - pos: -22.5,34.5 - parent: 1 - type: Transform -- uid: 25237 - type: CableApcExtension - components: - - pos: -23.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25238 - type: CableApcExtension - components: - - pos: -24.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25239 - type: CableApcExtension - components: - - pos: -24.5,35.5 - parent: 1 - type: Transform -- uid: 25240 - type: CableApcExtension - components: - - pos: -24.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25241 - type: CableApcExtension - components: - - pos: -24.5,37.5 - parent: 1 - type: Transform -- uid: 25242 - type: CableApcExtension - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25243 - type: CableApcExtension - components: - - pos: -23.5,38.5 - parent: 1 - type: Transform -- uid: 25244 - type: CableApcExtension - components: - - pos: -22.5,38.5 - parent: 1 - type: Transform -- uid: 25245 - type: CableApcExtension - components: - - pos: -21.5,38.5 - parent: 1 - type: Transform -- uid: 25246 - type: CableApcExtension - components: - - pos: -20.5,38.5 - parent: 1 - type: Transform -- uid: 25247 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -20.5,37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25248 - type: Bed - components: - - pos: -19.5,38.5 - parent: 1 - type: Transform -- uid: 25249 - type: BedsheetClown - components: - - rot: 3.141592653589793 rad - pos: -19.5,38.5 - parent: 1 - type: Transform -- uid: 25250 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -21.5,37.5 - parent: 1 - type: Transform -- uid: 25251 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -22.5,37.5 - parent: 1 - type: Transform -- uid: 25252 - type: FoodPieBananaCream - components: - - pos: -21.504532,37.662663 - parent: 1 - type: Transform -- uid: 25253 - type: BikeHorn - components: - - pos: -22.127623,37.564125 - parent: 1 - type: Transform -- uid: 25254 - type: LampBanana - components: - - pos: -22.53235,37.89803 - parent: 1 - type: Transform -- uid: 25255 - type: AirlockTheatreLocked - components: - - name: clown room - type: MetaData - - pos: -23.5,38.5 - parent: 1 - type: Transform -- uid: 25256 - type: Dresser - components: - - pos: -20.5,39.5 - parent: 1 - type: Transform -- uid: 25257 - type: ComputerTelevision - components: - - pos: -21.5,39.5 - parent: 1 - type: Transform -- uid: 25258 - type: TableWood - components: - - pos: -19.5,37.5 - parent: 1 - type: Transform -- uid: 25259 - type: CableApcStack - components: - - pos: -11.530048,37.577045 - parent: 1 - type: Transform -- uid: 25260 - type: MaintenanceToolSpawner - components: - - pos: 18.5,39.5 - parent: 1 - type: Transform -- uid: 25261 - type: ClosetMaintenance - components: - - pos: 14.5,39.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25262 - type: Lamp - components: - - rot: 1.5707963267948966 rad - pos: -28.600471,45.10426 - parent: 1 - type: Transform -- uid: 25263 - type: CableApcExtension - components: - - pos: -24.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25264 - type: CableApcExtension - components: - - pos: -24.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25265 - type: CableApcExtension - components: - - pos: -24.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25266 - type: CableApcExtension - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25267 - type: CableApcExtension - components: - - pos: -24.5,43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25268 - type: CableApcExtension - components: - - pos: -24.5,44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25269 - type: CableApcExtension - components: - - pos: -24.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25270 - type: CableApcExtension - components: - - pos: -25.5,45.5 - parent: 1 - type: Transform -- uid: 25271 - type: CableApcExtension - components: - - pos: -26.5,45.5 - parent: 1 - type: Transform -- uid: 25272 - type: CableApcExtension - components: - - pos: -27.5,45.5 - parent: 1 - type: Transform -- uid: 25273 - type: CableApcExtension - components: - - pos: -27.5,44.5 - parent: 1 - type: Transform -- uid: 25274 - type: PoweredSmallLight - components: - - pos: -27.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25275 - type: AirlockMaintGlass - components: - - pos: -26.5,35.5 - parent: 1 - type: Transform -- uid: 25276 - type: AirlockMaintGlass - components: - - pos: -26.5,33.5 - parent: 1 - type: Transform -- uid: 25277 - type: WallReinforced - components: - - pos: -8.5,63.5 - parent: 1 - type: Transform -- uid: 25278 - type: WallReinforced - components: - - pos: -9.5,63.5 - parent: 1 - type: Transform -- uid: 25279 - type: WallReinforced - components: - - pos: -11.5,63.5 - parent: 1 - type: Transform -- uid: 25280 - type: WallReinforced - components: - - pos: -8.5,62.5 - parent: 1 - type: Transform -- uid: 25281 - type: WallReinforced - components: - - pos: -8.5,61.5 - parent: 1 - type: Transform -- uid: 25282 - type: CableHV - components: - - pos: -2.5,58.5 - parent: 1 - type: Transform -- uid: 25283 - type: CableHV - components: - - pos: -3.5,58.5 - parent: 1 - type: Transform -- uid: 25284 - type: CableHV - components: - - pos: -4.5,58.5 - parent: 1 - type: Transform -- uid: 25285 - type: CableHV - components: - - pos: -5.5,58.5 - parent: 1 - type: Transform -- uid: 25286 - type: CableHV - components: - - pos: -6.5,58.5 - parent: 1 - type: Transform -- uid: 25287 - type: CableHV - components: - - pos: -7.5,58.5 - parent: 1 - type: Transform -- uid: 25288 - type: CableHV - components: - - pos: -8.5,58.5 - parent: 1 - type: Transform -- uid: 25289 - type: CableHV - components: - - pos: -9.5,58.5 - parent: 1 - type: Transform -- uid: 25290 - type: CableHV - components: - - pos: -10.5,58.5 - parent: 1 - type: Transform -- uid: 25291 - type: CableHV - components: - - pos: -10.5,59.5 - parent: 1 - type: Transform -- uid: 25292 - type: CableHV - components: - - pos: -10.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25293 - type: CableHV - components: - - pos: -10.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25294 - type: CableHV - components: - - pos: -10.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25295 - type: SubstationBasic - components: - - pos: -10.5,62.5 - parent: 1 - type: Transform -- uid: 25296 - type: WallSolid - components: - - pos: -23.5,48.5 - parent: 1 - type: Transform -- uid: 25297 - type: AirlockServiceLocked - components: - - pos: -23.5,47.5 - parent: 1 - type: Transform -- uid: 25298 - type: FirelockGlass - components: - - pos: -20.5,49.5 - parent: 1 - type: Transform -- uid: 25299 - type: FirelockGlass - components: - - pos: -21.5,49.5 - parent: 1 - type: Transform -- uid: 25300 - type: Table - components: - - pos: -20.5,47.5 - parent: 1 - type: Transform -- uid: 25301 - type: Table - components: - - pos: -21.5,47.5 - parent: 1 - type: Transform -- uid: 25302 - type: PosterLegitFruitBowl - components: - - pos: -22.5,49.5 - parent: 1 - type: Transform -- uid: 25303 - type: soda_dispenser - components: - - rot: 3.141592653589793 rad - pos: -20.5,47.5 - parent: 1 - type: Transform -- uid: 25304 - type: SpawnPointServiceWorker - components: - - pos: -21.5,48.5 - parent: 1 - type: Transform -- uid: 25305 - type: DrinkCarrotJuice - components: - - pos: -20.541529,49.622677 - parent: 1 - type: Transform -- uid: 25306 - type: DrinkGrapeJuice - components: - - pos: -21.385279,49.66955 - parent: 1 - type: Transform -- uid: 25307 - type: CableApcExtension - components: - - pos: -24.5,46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25308 - type: CableApcExtension - components: - - pos: -24.5,47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25309 - type: CableApcExtension - components: - - pos: -23.5,47.5 - parent: 1 - type: Transform -- uid: 25310 - type: CableApcExtension - components: - - pos: -22.5,47.5 - parent: 1 - type: Transform -- uid: 25311 - type: CableApcExtension - components: - - pos: -22.5,48.5 - parent: 1 - type: Transform -- uid: 25312 - type: CableApcExtension - components: - - pos: -21.5,48.5 - parent: 1 - type: Transform -- uid: 25313 - type: CableApcExtension - components: - - pos: -20.5,48.5 - parent: 1 - type: Transform -- uid: 25314 - type: CableApcExtension - components: - - pos: -20.5,50.5 - parent: 1 - type: Transform -- uid: 25315 - type: CableApcExtension - components: - - pos: -19.5,50.5 - parent: 1 - type: Transform -- uid: 25316 - type: CableApcExtension - components: - - pos: -20.5,49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25317 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25318 - type: APCBasic - components: - - pos: -8.5,60.5 - parent: 1 - type: Transform -- uid: 25319 - type: CableMV - components: - - pos: -10.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25320 - type: CableMV - components: - - pos: -10.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25321 - type: CableMV - components: - - pos: -10.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25322 - type: CableMV - components: - - pos: -10.5,59.5 - parent: 1 - type: Transform -- uid: 25323 - type: CableMV - components: - - pos: -9.5,59.5 - parent: 1 - type: Transform -- uid: 25324 - type: CableMV - components: - - pos: -8.5,59.5 - parent: 1 - type: Transform -- uid: 25325 - type: CableMV - components: - - pos: -8.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25326 - type: CableApcExtension - components: - - pos: -8.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25327 - type: CableApcExtension - components: - - pos: -8.5,59.5 - parent: 1 - type: Transform -- uid: 25328 - type: CableApcExtension - components: - - pos: -7.5,58.5 - parent: 1 - type: Transform -- uid: 25329 - type: CableApcExtension - components: - - pos: -6.5,58.5 - parent: 1 - type: Transform -- uid: 25330 - type: CableApcExtension - components: - - pos: -5.5,58.5 - parent: 1 - type: Transform -- uid: 25331 - type: CableApcExtension - components: - - pos: -4.5,58.5 - parent: 1 - type: Transform -- uid: 25332 - type: CableApcExtension - components: - - pos: -3.5,58.5 - parent: 1 - type: Transform -- uid: 25333 - type: CableApcExtension - components: - - pos: -2.5,58.5 - parent: 1 - type: Transform -- uid: 25334 - type: CableApcExtension - components: - - pos: -1.5,58.5 - parent: 1 - type: Transform -- uid: 25335 - type: CableApcExtension - components: - - pos: -0.5,58.5 - parent: 1 - type: Transform -- uid: 25336 - type: CableApcExtension - components: - - pos: 0.5,58.5 - parent: 1 - type: Transform -- uid: 25337 - type: CableApcExtension - components: - - pos: 0.5,57.5 - parent: 1 - type: Transform -- uid: 25338 - type: CableApcExtension - components: - - pos: 0.5,56.5 - parent: 1 - type: Transform -- uid: 25339 - type: CableApcExtension - components: - - pos: 0.5,55.5 - parent: 1 - type: Transform -- uid: 25340 - type: CableApcExtension - components: - - pos: -2.5,59.5 - parent: 1 - type: Transform -- uid: 25341 - type: CableApcExtension - components: - - pos: -2.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25342 - type: CableApcExtension - components: - - pos: -2.5,61.5 - parent: 1 - type: Transform -- uid: 25343 - type: CableApcExtension - components: - - pos: -2.5,62.5 - parent: 1 - type: Transform -- uid: 25344 - type: CableApcExtension - components: - - pos: -1.5,62.5 - parent: 1 - type: Transform -- uid: 25345 - type: CableApcExtension - components: - - pos: -1.5,63.5 - parent: 1 - type: Transform -- uid: 25346 - type: CableApcExtension - components: - - pos: -1.5,65.5 - parent: 1 - type: Transform -- uid: 25347 - type: CableApcExtension - components: - - pos: -1.5,64.5 - parent: 1 - type: Transform -- uid: 25348 - type: CableApcExtension - components: - - pos: -0.5,59.5 - parent: 1 - type: Transform -- uid: 25349 - type: CableApcExtension - components: - - pos: -0.5,60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25350 - type: CableApcExtension - components: - - pos: -0.5,61.5 - parent: 1 - type: Transform -- uid: 25351 - type: CableApcExtension - components: - - pos: -0.5,62.5 - parent: 1 - type: Transform -- uid: 25352 - type: CableApcExtension - components: - - pos: -1.5,66.5 - parent: 1 - type: Transform -- uid: 25353 - type: CableApcExtension - components: - - pos: -2.5,66.5 - parent: 1 - type: Transform -- uid: 25354 - type: CableApcExtension - components: - - pos: -3.5,66.5 - parent: 1 - type: Transform -- uid: 25355 - type: CableApcExtension - components: - - pos: -4.5,66.5 - parent: 1 - type: Transform -- uid: 25356 - type: CableApcExtension - components: - - pos: -5.5,66.5 - parent: 1 - type: Transform -- uid: 25357 - type: CableApcExtension - components: - - pos: -5.5,67.5 - parent: 1 - type: Transform -- uid: 25358 - type: CableApcExtension - components: - - pos: -5.5,68.5 - parent: 1 - type: Transform -- uid: 25359 - type: CableApcExtension - components: - - pos: -5.5,69.5 - parent: 1 - type: Transform -- uid: 25360 - type: CableApcExtension - components: - - pos: -5.5,70.5 - parent: 1 - type: Transform -- uid: 25361 - type: CableApcExtension - components: - - pos: -5.5,71.5 - parent: 1 - type: Transform -- uid: 25362 - type: CableApcExtension - components: - - pos: -5.5,72.5 - parent: 1 - type: Transform -- uid: 25363 - type: CableApcExtension - components: - - pos: -4.5,72.5 - parent: 1 - type: Transform -- uid: 25364 - type: CableApcExtension - components: - - pos: -3.5,72.5 - parent: 1 - type: Transform -- uid: 25365 - type: CableApcExtension - components: - - pos: -2.5,72.5 - parent: 1 - type: Transform -- uid: 25366 - type: CableApcExtension - components: - - pos: -1.5,72.5 - parent: 1 - type: Transform -- uid: 25367 - type: CableApcExtension - components: - - pos: -0.5,72.5 - parent: 1 - type: Transform -- uid: 25368 - type: CableApcExtension - components: - - pos: 0.5,72.5 - parent: 1 - type: Transform -- uid: 25369 - type: CableApcExtension - components: - - pos: 1.5,72.5 - parent: 1 - type: Transform -- uid: 25370 - type: CableApcExtension - components: - - pos: 2.5,72.5 - parent: 1 - type: Transform -- uid: 25371 - type: CableApcExtension - components: - - pos: 2.5,71.5 - parent: 1 - type: Transform -- uid: 25372 - type: CableApcExtension - components: - - pos: 2.5,70.5 - parent: 1 - type: Transform -- uid: 25373 - type: CableApcExtension - components: - - pos: 2.5,69.5 - parent: 1 - type: Transform -- uid: 25374 - type: CableApcExtension - components: - - pos: 2.5,68.5 - parent: 1 - type: Transform -- uid: 25375 - type: CableApcExtension - components: - - pos: 2.5,67.5 - parent: 1 - type: Transform -- uid: 25376 - type: CableApcExtension - components: - - pos: 2.5,66.5 - parent: 1 - type: Transform -- uid: 25377 - type: CableApcExtension - components: - - pos: 1.5,66.5 - parent: 1 - type: Transform -- uid: 25378 - type: CableApcExtension - components: - - pos: 0.5,66.5 - parent: 1 - type: Transform -- uid: 25379 - type: CableApcExtension - components: - - pos: -0.5,66.5 - parent: 1 - type: Transform -- uid: 25380 - type: CableApcExtension - components: - - pos: -1.5,67.5 - parent: 1 - type: Transform -- uid: 25381 - type: CableApcExtension - components: - - pos: -1.5,68.5 - parent: 1 - type: Transform -- uid: 25382 - type: CableApcExtension - components: - - pos: -1.5,69.5 - parent: 1 - type: Transform -- uid: 25383 - type: CableApcExtension - components: - - pos: -7.5,59.5 - parent: 1 - type: Transform -- uid: 25384 - type: CableApcExtension - components: - - pos: -9.5,59.5 - parent: 1 - type: Transform -- uid: 25385 - type: CableApcExtension - components: - - pos: -10.5,59.5 - parent: 1 - type: Transform -- uid: 25386 - type: CableApcExtension - components: - - pos: -11.5,59.5 - parent: 1 - type: Transform -- uid: 25387 - type: CableApcExtension - components: - - pos: -12.5,59.5 - parent: 1 - type: Transform -- uid: 25388 - type: CableApcExtension - components: - - pos: -12.5,58.5 - parent: 1 - type: Transform -- uid: 25389 - type: CableApcExtension - components: - - pos: -12.5,57.5 - parent: 1 - type: Transform -- uid: 25390 - type: CableApcExtension - components: - - pos: -12.5,56.5 - parent: 1 - type: Transform -- uid: 25391 - type: CableApcExtension - components: - - pos: -12.5,55.5 - parent: 1 - type: Transform -- uid: 25392 - type: CableApcExtension - components: - - pos: -12.5,54.5 - parent: 1 - type: Transform -- uid: 25393 - type: CableApcExtension - components: - - pos: -12.5,53.5 - parent: 1 - type: Transform -- uid: 25394 - type: CableApcExtension - components: - - pos: -12.5,52.5 - parent: 1 - type: Transform -- uid: 25395 - type: CableApcExtension - components: - - pos: -12.5,51.5 - parent: 1 - type: Transform -- uid: 25396 - type: CableApcExtension - components: - - pos: -12.5,50.5 - parent: 1 - type: Transform -- uid: 25397 - type: CableApcExtension - components: - - pos: -12.5,49.5 - parent: 1 - type: Transform -- uid: 25398 - type: CableApcExtension - components: - - pos: -13.5,49.5 - parent: 1 - type: Transform -- uid: 25399 - type: CableApcExtension - components: - - pos: -14.5,49.5 - parent: 1 - type: Transform -- uid: 25400 - type: CableApcExtension - components: - - pos: -14.5,50.5 - parent: 1 - type: Transform -- uid: 25401 - type: CableApcExtension - components: - - pos: -14.5,51.5 - parent: 1 - type: Transform -- uid: 25402 - type: CableApcExtension - components: - - pos: -13.5,51.5 - parent: 1 - type: Transform -- uid: 25403 - type: CableApcExtension - components: - - pos: -12.5,60.5 - parent: 1 - type: Transform -- uid: 25404 - type: CableApcExtension - components: - - pos: -12.5,61.5 - parent: 1 - type: Transform -- uid: 25405 - type: CableApcExtension - components: - - pos: -12.5,62.5 - parent: 1 - type: Transform -- uid: 25406 - type: CableApcExtension - components: - - pos: -12.5,63.5 - parent: 1 - type: Transform -- uid: 25407 - type: CableApcExtension - components: - - pos: -12.5,64.5 - parent: 1 - type: Transform -- uid: 25408 - type: CableApcExtension - components: - - pos: -12.5,65.5 - parent: 1 - type: Transform -- uid: 25409 - type: CableApcExtension - components: - - pos: -12.5,66.5 - parent: 1 - type: Transform -- uid: 25410 - type: CableApcExtension - components: - - pos: -12.5,67.5 - parent: 1 - type: Transform -- uid: 25411 - type: CableApcExtension - components: - - pos: -12.5,68.5 - parent: 1 - type: Transform -- uid: 25412 - type: CableApcExtension - components: - - pos: -12.5,69.5 - parent: 1 - type: Transform -- uid: 25413 - type: CableApcExtension - components: - - pos: -12.5,70.5 - parent: 1 - type: Transform -- uid: 25414 - type: CableApcExtension - components: - - pos: -12.5,71.5 - parent: 1 - type: Transform -- uid: 25415 - type: CableApcExtension - components: - - pos: -12.5,72.5 - parent: 1 - type: Transform -- uid: 25416 - type: CableApcExtension - components: - - pos: -12.5,73.5 - parent: 1 - type: Transform -- uid: 25417 - type: CableApcExtension - components: - - pos: -12.5,74.5 - parent: 1 - type: Transform -- uid: 25418 - type: CableApcExtension - components: - - pos: -13.5,67.5 - parent: 1 - type: Transform -- uid: 25419 - type: CableApcExtension - components: - - pos: -14.5,67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25420 - type: CableApcExtension - components: - - pos: -15.5,67.5 - parent: 1 - type: Transform -- uid: 25421 - type: CableApcExtension - components: - - pos: -16.5,67.5 - parent: 1 - type: Transform -- uid: 25422 - type: CableApcExtension - components: - - pos: -17.5,67.5 - parent: 1 - type: Transform -- uid: 25423 - type: CableApcExtension - components: - - pos: -17.5,66.5 - parent: 1 - type: Transform -- uid: 25424 - type: CableApcExtension - components: - - pos: -17.5,65.5 - parent: 1 - type: Transform -- uid: 25425 - type: CableApcExtension - components: - - pos: -17.5,64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25426 - type: CableApcExtension - components: - - pos: -17.5,63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25427 - type: CableApcExtension - components: - - pos: -17.5,62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25428 - type: CableApcExtension - components: - - pos: -17.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25429 - type: CableApcExtension - components: - - pos: -17.5,60.5 - parent: 1 - type: Transform -- uid: 25430 - type: CableApcExtension - components: - - pos: -17.5,59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25431 - type: CableApcExtension - components: - - pos: -17.5,58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25432 - type: CableApcExtension - components: - - pos: -17.5,57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25433 - type: CableApcExtension - components: - - pos: -17.5,56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25434 - type: CableApcExtension - components: - - pos: -17.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25435 - type: CableApcExtension - components: - - pos: -18.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25436 - type: CableApcExtension - components: - - pos: -19.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25437 - type: CableApcExtension - components: - - pos: -20.5,55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25438 - type: CableApcExtension - components: - - pos: -21.5,55.5 - parent: 1 - type: Transform -- uid: 25439 - type: CableApcExtension - components: - - pos: -22.5,55.5 - parent: 1 - type: Transform -- uid: 25440 - type: CableApcExtension - components: - - pos: -22.5,54.5 - parent: 1 - type: Transform -- uid: 25441 - type: CableApcExtension - components: - - pos: -22.5,53.5 - parent: 1 - type: Transform -- uid: 25442 - type: CableApcExtension - components: - - pos: -22.5,52.5 - parent: 1 - type: Transform -- uid: 25443 - type: CableApcExtension - components: - - pos: -22.5,51.5 - parent: 1 - type: Transform -- uid: 25444 - type: CableApcExtension - components: - - pos: -21.5,53.5 - parent: 1 - type: Transform -- uid: 25445 - type: CableApcExtension - components: - - pos: -21.5,56.5 - parent: 1 - type: Transform -- uid: 25446 - type: CableApcExtension - components: - - pos: -21.5,57.5 - parent: 1 - type: Transform -- uid: 25447 - type: CableApcExtension - components: - - pos: -21.5,58.5 - parent: 1 - type: Transform -- uid: 25448 - type: CableApcExtension - components: - - pos: -21.5,59.5 - parent: 1 - type: Transform -- uid: 25449 - type: CableApcExtension - components: - - pos: -21.5,60.5 - parent: 1 - type: Transform -- uid: 25450 - type: CableApcExtension - components: - - pos: -21.5,61.5 - parent: 1 - type: Transform -- uid: 25451 - type: CableApcExtension - components: - - pos: -21.5,62.5 - parent: 1 - type: Transform -- uid: 25452 - type: CableApcExtension - components: - - pos: -21.5,63.5 - parent: 1 - type: Transform -- uid: 25453 - type: CableApcExtension - components: - - pos: -21.5,64.5 - parent: 1 - type: Transform -- uid: 25454 - type: CableApcExtension - components: - - pos: -21.5,65.5 - parent: 1 - type: Transform -- uid: 25455 - type: CableApcExtension - components: - - pos: -21.5,66.5 - parent: 1 - type: Transform -- uid: 25456 - type: CableApcExtension - components: - - pos: -21.5,67.5 - parent: 1 - type: Transform -- uid: 25457 - type: CableApcExtension - components: - - pos: -21.5,68.5 - parent: 1 - type: Transform -- uid: 25458 - type: CableApcExtension - components: - - pos: -21.5,69.5 - parent: 1 - type: Transform -- uid: 25459 - type: CableApcExtension - components: - - pos: -21.5,70.5 - parent: 1 - type: Transform -- uid: 25460 - type: CableApcExtension - components: - - pos: -21.5,71.5 - parent: 1 - type: Transform -- uid: 25461 - type: CableApcExtension - components: - - pos: -21.5,72.5 - parent: 1 - type: Transform -- uid: 25462 - type: CableApcExtension - components: - - pos: -21.5,73.5 - parent: 1 - type: Transform -- uid: 25463 - type: CableApcExtension - components: - - pos: -21.5,74.5 - parent: 1 - type: Transform -- uid: 25464 - type: CableApcExtension - components: - - pos: -17.5,68.5 - parent: 1 - type: Transform -- uid: 25465 - type: CableApcExtension - components: - - pos: -17.5,69.5 - parent: 1 - type: Transform -- uid: 25466 - type: CableApcExtension - components: - - pos: -17.5,70.5 - parent: 1 - type: Transform -- uid: 25467 - type: SignEscapePods - components: - - pos: -16.5,68.5 - parent: 1 - type: Transform -- uid: 25468 - type: ReinforcedPlasmaWindow - components: - - pos: -56.5,-15.5 - parent: 1 - type: Transform -- uid: 25469 - type: CableApcExtension - components: - - pos: -17.5,54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25470 - type: CableApcExtension - components: - - pos: -17.5,53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25471 - type: CableApcExtension - components: - - pos: -25.5,41.5 - parent: 1 - type: Transform -- uid: 25472 - type: CableApcExtension - components: - - pos: -25.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25473 - type: CableApcExtension - components: - - pos: -26.5,41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25474 - type: CableApcExtension - components: - - pos: -28.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25475 - type: CableApcExtension - components: - - pos: -27.5,41.5 - parent: 1 - type: Transform -- uid: 25476 - type: CableApcExtension - components: - - pos: -28.5,40.5 - parent: 1 - type: Transform -- uid: 25477 - type: CableApcExtension - components: - - pos: -28.5,41.5 - parent: 1 - type: Transform -- uid: 25478 - type: CableApcExtension - components: - - pos: -28.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25479 - type: CableApcExtension - components: - - pos: -29.5,38.5 - parent: 1 - type: Transform -- uid: 25480 - type: CableApcExtension - components: - - pos: -30.5,38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25481 - type: CableApcExtension - components: - - pos: -31.5,38.5 - parent: 1 - type: Transform -- uid: 25482 - type: CableApcExtension - components: - - pos: -32.5,38.5 - parent: 1 - type: Transform -- uid: 25483 - type: CableApcExtension - components: - - pos: -32.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25484 - type: CableApcExtension - components: - - pos: -33.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25485 - type: CableApcExtension - components: - - pos: -34.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25486 - type: CableApcExtension - components: - - pos: -35.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25487 - type: CableApcExtension - components: - - pos: -36.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25488 - type: CableApcExtension - components: - - pos: -37.5,39.5 - parent: 1 - type: Transform -- uid: 25489 - type: CableApcExtension - components: - - pos: -37.5,40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25490 - type: CableApcExtension - components: - - pos: -37.5,41.5 - parent: 1 - type: Transform -- uid: 25491 - type: CableApcExtension - components: - - pos: -37.5,42.5 - parent: 1 - type: Transform -- uid: 25492 - type: CableApcExtension - components: - - pos: -38.5,39.5 - parent: 1 - type: Transform -- uid: 25493 - type: CableApcExtension - components: - - pos: -39.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25494 - type: CableApcExtension - components: - - pos: -40.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25495 - type: CableApcExtension - components: - - pos: -41.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25496 - type: CableApcExtension - components: - - pos: -42.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25497 - type: CableApcExtension - components: - - pos: -43.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25498 - type: CableApcExtension - components: - - pos: -44.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25499 - type: CableApcExtension - components: - - pos: -45.5,39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25500 - type: CableApcExtension - components: - - pos: -46.5,39.5 - parent: 1 - type: Transform -- uid: 25501 - type: CableApcExtension - components: - - pos: -41.5,38.5 - parent: 1 - type: Transform -- uid: 25502 - type: CableApcExtension - components: - - pos: -29.5,37.5 - parent: 1 - type: Transform -- uid: 25503 - type: CableApcExtension - components: - - pos: -29.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25504 - type: CableApcExtension - components: - - pos: -30.5,36.5 - parent: 1 - type: Transform -- uid: 25505 - type: CableApcExtension - components: - - pos: -31.5,36.5 - parent: 1 - type: Transform -- uid: 25506 - type: CableApcExtension - components: - - pos: -32.5,36.5 - parent: 1 - type: Transform -- uid: 25507 - type: CableApcExtension - components: - - pos: -33.5,36.5 - parent: 1 - type: Transform -- uid: 25508 - type: CableApcExtension - components: - - pos: -34.5,36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25509 - type: CableApcExtension - components: - - pos: -34.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25510 - type: CableApcExtension - components: - - pos: -35.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25511 - type: CableApcExtension - components: - - pos: -36.5,37.5 - parent: 1 - type: Transform -- uid: 25512 - type: CableApcExtension - components: - - pos: -37.5,37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25513 - type: CableApcExtension - components: - - pos: -37.5,36.5 - parent: 1 - type: Transform -- uid: 25514 - type: CableApcExtension - components: - - pos: -21.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25515 - type: CableApcExtension - components: - - pos: -22.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25516 - type: CableApcExtension - components: - - pos: -23.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25517 - type: CableApcExtension - components: - - pos: -24.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25518 - type: CableApcExtension - components: - - pos: -25.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25519 - type: CableApcExtension - components: - - pos: -26.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25520 - type: CableApcExtension - components: - - pos: -27.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25521 - type: CableApcExtension - components: - - pos: -28.5,27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25522 - type: CableApcExtension - components: - - pos: -28.5,28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25523 - type: CableApcExtension - components: - - pos: -28.5,29.5 - parent: 1 - type: Transform -- uid: 25524 - type: CableApcExtension - components: - - pos: -28.5,30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25525 - type: CableApcExtension - components: - - pos: -28.5,31.5 - parent: 1 - type: Transform -- uid: 25526 - type: CableApcExtension - components: - - pos: -27.5,31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25527 - type: CableApcExtension - components: - - pos: -27.5,33.5 - parent: 1 - type: Transform -- uid: 25528 - type: CableApcExtension - components: - - pos: -27.5,34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25529 - type: CableApcExtension - components: - - pos: -27.5,35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25530 - type: CableApcExtension - components: - - pos: -27.5,32.5 - parent: 1 - type: Transform -- uid: 25531 - type: CableApcExtension - components: - - pos: -16.5,62.5 - parent: 1 - type: Transform -- uid: 25532 - type: CableApcExtension - components: - - pos: -16.5,61.5 - parent: 1 - type: Transform -- uid: 25533 - type: CableApcExtension - components: - - pos: -18.5,62.5 - parent: 1 - type: Transform -- uid: 25534 - type: CableApcExtension - components: - - pos: -18.5,61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25535 - type: Grille - components: - - pos: 78.5,46.5 - parent: 1 - type: Transform -- uid: 25536 - type: Grille - components: - - pos: 79.5,46.5 - parent: 1 - type: Transform -- uid: 25537 - type: Grille - components: - - pos: 80.5,46.5 - parent: 1 - type: Transform -- uid: 25538 - type: Grille - components: - - pos: 81.5,46.5 - parent: 1 - type: Transform -- uid: 25539 - type: Grille - components: - - pos: 82.5,46.5 - parent: 1 - type: Transform -- uid: 25540 - type: Grille - components: - - pos: 86.5,46.5 - parent: 1 - type: Transform -- uid: 25541 - type: Grille - components: - - pos: 87.5,46.5 - parent: 1 - type: Transform -- uid: 25542 - type: Grille - components: - - pos: 88.5,46.5 - parent: 1 - type: Transform -- uid: 25543 - type: Grille - components: - - pos: 89.5,46.5 - parent: 1 - type: Transform -- uid: 25544 - type: Grille - components: - - pos: 90.5,46.5 - parent: 1 - type: Transform -- uid: 25545 - type: Grille - components: - - pos: 93.5,41.5 - parent: 1 - type: Transform -- uid: 25546 - type: Grille - components: - - pos: 93.5,40.5 - parent: 1 - type: Transform -- uid: 25547 - type: Grille - components: - - pos: 93.5,39.5 - parent: 1 - type: Transform -- uid: 25548 - type: Grille - components: - - pos: 93.5,38.5 - parent: 1 - type: Transform -- uid: 25549 - type: Grille - components: - - pos: 93.5,37.5 - parent: 1 - type: Transform -- uid: 25550 - type: Grille - components: - - pos: 93.5,36.5 - parent: 1 - type: Transform -- uid: 25551 - type: Grille - components: - - pos: 93.5,35.5 - parent: 1 - type: Transform -- uid: 25552 - type: Grille - components: - - pos: 93.5,34.5 - parent: 1 - type: Transform -- uid: 25553 - type: Grille - components: - - pos: 93.5,33.5 - parent: 1 - type: Transform -- uid: 25554 - type: Grille - components: - - pos: 93.5,32.5 - parent: 1 - type: Transform -- uid: 25555 - type: Grille - components: - - pos: 93.5,31.5 - parent: 1 - type: Transform -- uid: 25556 - type: Grille - components: - - pos: 93.5,30.5 - parent: 1 - type: Transform -- uid: 25557 - type: Grille - components: - - pos: 90.5,26.5 - parent: 1 - type: Transform -- uid: 25558 - type: Grille - components: - - pos: 89.5,26.5 - parent: 1 - type: Transform -- uid: 25559 - type: Grille - components: - - pos: 88.5,26.5 - parent: 1 - type: Transform -- uid: 25560 - type: Grille - components: - - pos: 87.5,26.5 - parent: 1 - type: Transform -- uid: 25561 - type: Grille - components: - - pos: 86.5,26.5 - parent: 1 - type: Transform -- uid: 25562 - type: Grille - components: - - pos: 85.5,26.5 - parent: 1 - type: Transform -- uid: 25563 - type: Grille - components: - - pos: 81.5,26.5 - parent: 1 - type: Transform -- uid: 25564 - type: Grille - components: - - pos: 80.5,26.5 - parent: 1 - type: Transform -- uid: 25565 - type: Grille - components: - - pos: 79.5,26.5 - parent: 1 - type: Transform -- uid: 25566 - type: Grille - components: - - pos: 78.5,26.5 - parent: 1 - type: Transform -- uid: 25567 - type: Grille - components: - - pos: 77.5,26.5 - parent: 1 - type: Transform -- uid: 25568 - type: Grille - components: - - pos: 70.5,29.5 - parent: 1 - type: Transform -- uid: 25569 - type: Grille - components: - - pos: 71.5,29.5 - parent: 1 - type: Transform -- uid: 25570 - type: Grille - components: - - pos: 72.5,29.5 - parent: 1 - type: Transform -- uid: 25571 - type: Grille - components: - - pos: 73.5,29.5 - parent: 1 - type: Transform -- uid: 25572 - type: Grille - components: - - pos: 74.5,29.5 - parent: 1 - type: Transform -- uid: 25573 - type: WallReinforced - components: - - pos: 10.5,-35.5 - parent: 1 - type: Transform -- uid: 25574 - type: WallReinforced - components: - - pos: 9.5,-30.5 - parent: 1 - type: Transform -- uid: 25575 - type: WallSolid - components: - - pos: 7.5,-31.5 - parent: 1 - type: Transform -- uid: 25576 - type: CableApcExtension - components: - - pos: 56.5,36.5 - parent: 1 - type: Transform -- uid: 25577 - type: WallSolid - components: - - pos: 7.5,-29.5 - parent: 1 - type: Transform -- uid: 25578 - type: WallSolid - components: - - pos: 7.5,-30.5 - parent: 1 - type: Transform -- uid: 25579 - type: WallReinforced - components: - - pos: 10.5,-37.5 - parent: 1 - type: Transform -- uid: 25580 - type: FirelockGlass - components: - - pos: 8.5,-38.5 - parent: 1 - type: Transform -- uid: 25581 - type: ClothingHeadFishCap - components: - - pos: -24.484636,34.673782 - parent: 1 - type: Transform -- uid: 25582 - type: WaterTankFull - components: - - pos: -27.5,37.5 - parent: 1 - type: Transform -- uid: 25583 - type: NitrogenCanister - components: - - pos: -26.5,37.5 - parent: 1 - type: Transform -- uid: 25584 - type: OxygenCanister - components: - - pos: -29.5,41.5 - parent: 1 - type: Transform -- uid: 25585 - type: NitrogenCanister - components: - - pos: -28.5,41.5 - parent: 1 - type: Transform -- uid: 25586 - type: Catwalk - components: - - pos: -24.5,47.5 - parent: 1 - type: Transform -- uid: 25587 - type: Catwalk - components: - - pos: -24.5,46.5 - parent: 1 - type: Transform -- uid: 25588 - type: Catwalk - components: - - pos: -24.5,45.5 - parent: 1 - type: Transform -- uid: 25589 - type: Catwalk - components: - - pos: -24.5,44.5 - parent: 1 - type: Transform -- uid: 25590 - type: Catwalk - components: - - pos: -24.5,43.5 - parent: 1 - type: Transform -- uid: 25591 - type: Catwalk - components: - - pos: -24.5,42.5 - parent: 1 - type: Transform -- uid: 25592 - type: Catwalk - components: - - pos: -24.5,41.5 - parent: 1 - type: Transform -- uid: 25593 - type: Catwalk - components: - - pos: -24.5,40.5 - parent: 1 - type: Transform -- uid: 25594 - type: Catwalk - components: - - pos: -24.5,39.5 - parent: 1 - type: Transform -- uid: 25595 - type: Catwalk - components: - - pos: -24.5,38.5 - parent: 1 - type: Transform -- uid: 25596 - type: ClosetMaintenanceFilledRandom - components: - - pos: -31.5,38.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25597 - type: Catwalk - components: - - pos: -31.5,39.5 - parent: 1 - type: Transform -- uid: 25598 - type: Catwalk - components: - - pos: -32.5,39.5 - parent: 1 - type: Transform -- uid: 25599 - type: Catwalk - components: - - pos: -33.5,39.5 - parent: 1 - type: Transform -- uid: 25600 - type: Catwalk - components: - - pos: -34.5,39.5 - parent: 1 - type: Transform -- uid: 25601 - type: Catwalk - components: - - pos: -35.5,39.5 - parent: 1 - type: Transform -- uid: 25602 - type: Catwalk - components: - - pos: -36.5,39.5 - parent: 1 - type: Transform -- uid: 25603 - type: Catwalk - components: - - pos: -39.5,39.5 - parent: 1 - type: Transform -- uid: 25604 - type: Catwalk - components: - - pos: -40.5,39.5 - parent: 1 - type: Transform -- uid: 25605 - type: Catwalk - components: - - pos: -41.5,39.5 - parent: 1 - type: Transform -- uid: 25606 - type: Catwalk - components: - - pos: -42.5,39.5 - parent: 1 - type: Transform -- uid: 25607 - type: Catwalk - components: - - pos: -43.5,39.5 - parent: 1 - type: Transform -- uid: 25608 - type: Catwalk - components: - - pos: -44.5,39.5 - parent: 1 - type: Transform -- uid: 25609 - type: Firelock - components: - - pos: -38.5,39.5 - parent: 1 - type: Transform -- uid: 25610 - type: Firelock - components: - - pos: -25.5,41.5 - parent: 1 - type: Transform -- uid: 25611 - type: ClosetFireFilled - components: - - pos: -43.5,37.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25612 - type: AirCanister - components: - - pos: -42.5,37.5 - parent: 1 - type: Transform -- uid: 25613 - type: Rack - components: - - pos: -41.5,37.5 - parent: 1 - type: Transform -- uid: 25614 - type: Rack - components: - - pos: -36.5,35.5 - parent: 1 - type: Transform -- uid: 25615 - type: Rack - components: - - pos: -26.5,39.5 - parent: 1 - type: Transform -- uid: 25616 - type: WindoorSecurityLocked - components: - - rot: 1.5707963267948966 rad - pos: -17.5,25.5 - parent: 1 - type: Transform -- uid: 25617 - type: Rack - components: - - pos: -26.5,30.5 - parent: 1 - type: Transform -- uid: 25618 - type: SpawnPointAssistant - components: - - pos: -42.5,10.5 - parent: 1 - type: Transform -- uid: 25619 - type: WindowReinforcedDirectional - components: - - pos: -10.5,24.5 - parent: 1 - type: Transform -- uid: 25620 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -10.5,21.5 - parent: 1 - type: Transform -- uid: 25621 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -9.5,21.5 - parent: 1 - type: Transform -- uid: 25622 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,24.5 - parent: 1 - type: Transform -- uid: 25623 - type: WeaponCapacitorRecharger - components: - - pos: -16.5,24.5 - parent: 1 - type: Transform -- uid: 25624 - type: ConveyorBelt - components: - - pos: -9.5,27.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18398 - Forward: - - port: Left - uid: 18398 - Off: - - port: Middle - uid: 18398 - type: SignalReceiver -- uid: 25625 - type: ConveyorBelt - components: - - pos: -9.5,26.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18398 - Forward: - - port: Left - uid: 18398 - Off: - - port: Middle - uid: 18398 - type: SignalReceiver -- uid: 25626 - type: ConveyorBelt - components: - - pos: -9.5,25.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18398 - Forward: - - port: Left - uid: 18398 - Off: - - port: Middle - uid: 18398 - type: SignalReceiver -- uid: 25627 - type: ConveyorBelt - components: - - pos: -9.5,24.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18398 - Forward: - - port: Left - uid: 18398 - Off: - - port: Middle - uid: 18398 - type: SignalReceiver -- uid: 25628 - type: ConveyorBelt - components: - - pos: -9.5,23.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18398 - Forward: - - port: Left - uid: 18398 - Off: - - port: Middle - uid: 18398 - type: SignalReceiver - - type: ActiveConveyor -- uid: 25629 - type: Catwalk - components: - - pos: -2.5,28.5 - parent: 1 - type: Transform -- uid: 25630 - type: Catwalk - components: - - pos: -2.5,27.5 - parent: 1 - type: Transform -- uid: 25631 - type: Catwalk - components: - - pos: -2.5,26.5 - parent: 1 - type: Transform -- uid: 25632 - type: Catwalk - components: - - pos: -2.5,25.5 - parent: 1 - type: Transform -- uid: 25633 - type: Catwalk - components: - - pos: -12.5,26.5 - parent: 1 - type: Transform -- uid: 25634 - type: Catwalk - components: - - pos: -11.5,26.5 - parent: 1 - type: Transform -- uid: 25635 - type: Catwalk - components: - - pos: -10.5,26.5 - parent: 1 - type: Transform -- uid: 25636 - type: Catwalk - components: - - pos: -10.5,24.5 - parent: 1 - type: Transform -- uid: 25637 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -10.5,22.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18398 - Forward: - - port: Left - uid: 18398 - Off: - - port: Middle - uid: 18398 - type: SignalReceiver -- uid: 25638 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -10.5,23.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18398 - Forward: - - port: Left - uid: 18398 - Off: - - port: Middle - uid: 18398 - type: SignalReceiver -- uid: 25639 - type: ClosetMaintenanceFilledRandom - components: - - pos: -12.5,29.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25640 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -10.5,27.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Left - uid: 18398 - Forward: - - port: Right - uid: 18398 - Off: - - port: Middle - uid: 18398 - type: SignalReceiver -- uid: 25641 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -11.5,27.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Left - uid: 18398 - Forward: - - port: Right - uid: 18398 - Off: - - port: Middle - uid: 18398 - type: SignalReceiver -- uid: 25642 - type: WindowReinforcedDirectional - components: - - pos: -11.5,28.5 - parent: 1 - type: Transform -- uid: 25643 - type: LockerSecurity - components: - - pos: -14.5,23.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 25644 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -8.5,26.5 - parent: 1 - type: Transform -- uid: 25645 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -8.5,24.5 - parent: 1 - type: Transform -- uid: 25646 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -8.5,23.5 - parent: 1 - type: Transform -- uid: 25647 - type: WindowReinforcedDirectional - components: - - pos: -8.5,23.5 - parent: 1 - type: Transform -- uid: 25648 - type: Table - components: - - pos: -16.5,24.5 - parent: 1 - type: Transform -- uid: 25649 - type: Table - components: - - pos: -16.5,23.5 - parent: 1 - type: Transform -- uid: 25650 - type: PoweredSmallLight - components: - - pos: -10.5,29.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25651 - type: AirSensor - components: - - pos: 64.5,-2.5 - parent: 1 - type: Transform -- uid: 25652 - type: ComputerCriminalRecords - components: - - pos: -16.5,26.5 - parent: 1 - type: Transform -- uid: 25653 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: -16.5,45.5 - parent: 1 - type: Transform -- uid: 25654 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: -3.5,45.5 - parent: 1 - type: Transform -- uid: 25655 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: 40.5,47.5 - parent: 1 - type: Transform -- uid: 25656 - type: AirAlarm - components: - - pos: 43.5,49.5 - parent: 1 - type: Transform -- uid: 25657 - type: AirAlarm - components: - - pos: -17.5,39.5 - parent: 1 - type: Transform - - devices: - - 23922 - - 25653 - - 23925 - - 25168 - - 23647 - - 23649 - - 23648 - - 23650 - - 23651 - - 25662 - - 25663 - - 25664 - - 25670 - - 25669 - - 25668 - - 23646 - - 23643 - - 23644 - - 23645 - - 21166 - type: DeviceList -- uid: 25658 - type: AirAlarm - components: - - pos: -10.5,47.5 - parent: 1 - type: Transform - - devices: - - 25654 - - 25145 - - 25144 - - 25662 - - 25663 - - 25664 - - 25166 - - 25167 - - 25980 - - 25666 - - 25667 - - 25665 - type: DeviceList -- uid: 25659 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -13.5,40.5 - parent: 1 - type: Transform - - devices: - - 25653 - - 25662 - - 25663 - - 25664 - - 25168 - - 23647 - - 23649 - - 23648 - - 23651 - - 23650 - - 23643 - - 23644 - - 23645 - - 25668 - - 25669 - - 25670 - - 21166 - type: DeviceList -- uid: 25660 - type: FireAlarm - components: - - pos: -7.5,47.5 - parent: 1 - type: Transform - - devices: - - 25654 - - 25662 - - 25663 - - 25664 - - 25166 - - 25167 - - 25665 - - 25666 - - 25667 - - 25980 - type: DeviceList -- uid: 25661 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 3.141592653589793 rad - pos: -13.5,75.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 25662 - type: FirelockGlass - components: - - pos: -13.5,46.5 - parent: 1 - type: Transform -- uid: 25663 - type: FirelockGlass - components: - - pos: -13.5,45.5 - parent: 1 - type: Transform -- uid: 25664 - type: FirelockGlass - components: - - pos: -13.5,44.5 - parent: 1 - type: Transform -- uid: 25665 - type: FirelockGlass - components: - - pos: 1.5,53.5 - parent: 1 - type: Transform -- uid: 25666 - type: FirelockGlass - components: - - pos: 0.5,53.5 - parent: 1 - type: Transform -- uid: 25667 - type: FirelockGlass - components: - - pos: -0.5,53.5 - parent: 1 - type: Transform -- uid: 25668 - type: FirelockGlass - components: - - pos: -18.5,48.5 - parent: 1 - type: Transform -- uid: 25669 - type: FirelockGlass - components: - - pos: -17.5,48.5 - parent: 1 - type: Transform -- uid: 25670 - type: FirelockGlass - components: - - pos: -16.5,48.5 - parent: 1 - type: Transform -- uid: 25671 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 3.141592653589793 rad - pos: -12.5,75.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 25672 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 3.141592653589793 rad - pos: -21.5,75.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 25673 - type: AirlockExternalGlassShuttleLocked - components: - - rot: 3.141592653589793 rad - pos: -22.5,75.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 25674 - type: AirlockExternalGlassLocked - components: - - pos: -12.5,71.5 - parent: 1 - type: Transform -- uid: 25675 - type: AirlockExternalGlassLocked - components: - - pos: -13.5,71.5 - parent: 1 - type: Transform -- uid: 25676 - type: AirlockExternalGlassLocked - components: - - pos: -21.5,71.5 - parent: 1 - type: Transform -- uid: 25677 - type: AirlockExternalGlassLocked - components: - - pos: -22.5,71.5 - parent: 1 - type: Transform -- uid: 25678 - type: AirlockExternalGlass - components: - - rot: 3.141592653589793 rad - pos: -17.5,68.5 - parent: 1 - type: Transform -- uid: 25679 - type: ClosetEmergencyFilledRandom - components: - - pos: -15.5,67.5 - parent: 1 - type: Transform -- uid: 25680 - type: AirlockGlass - components: - - pos: -11.5,59.5 - parent: 1 - type: Transform -- uid: 25681 - type: AirlockGlass - components: - - pos: -11.5,58.5 - parent: 1 - type: Transform -- uid: 25682 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -13.5,49.5 - parent: 1 - type: Transform -- uid: 25683 - type: DisposalUnit - components: - - pos: -13.5,49.5 - parent: 1 - type: Transform -- uid: 25684 - type: AirlockGlass - components: - - pos: -15.5,51.5 - parent: 1 - type: Transform -- uid: 25685 - type: AirlockGlass - components: - - pos: -15.5,50.5 - parent: 1 - type: Transform -- uid: 25686 - type: DisposalBend - components: - - pos: -13.5,50.5 - parent: 1 - type: Transform -- uid: 25687 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,50.5 - parent: 1 - type: Transform -- uid: 25688 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,50.5 - parent: 1 - type: Transform -- uid: 25689 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,50.5 - parent: 1 - type: Transform -- uid: 25690 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -17.5,50.5 - parent: 1 - type: Transform -- uid: 25691 - type: GasPipeTJunction - components: - - pos: -17.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25692 - type: GasPipeTJunction - components: - - pos: -16.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25693 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25694 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25695 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25696 - type: GasPipeTJunction - components: - - pos: -21.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25697 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25698 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25699 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25700 - type: GasPipeTJunction - components: - - pos: -20.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25701 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -21.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25702 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -22.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25703 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25704 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -20.5,49.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25705 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -21.5,49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25706 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -16.5,50.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25707 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25708 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25709 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25710 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25711 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25712 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25713 - type: GasPipeStraight - components: - - pos: -21.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25714 - type: GasPipeStraight - components: - - pos: -21.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25715 - type: GasPipeStraight - components: - - pos: -21.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25716 - type: GasPipeStraight - components: - - pos: -21.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25717 - type: GasPipeStraight - components: - - pos: -21.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25718 - type: GasPipeStraight - components: - - pos: -21.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25719 - type: GasPipeStraight - components: - - pos: -22.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25720 - type: GasPipeStraight - components: - - pos: -22.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25721 - type: GasPipeStraight - components: - - pos: -22.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25722 - type: GasPipeStraight - components: - - pos: -22.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25723 - type: GasPipeStraight - components: - - pos: -22.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25724 - type: GasPipeStraight - components: - - pos: -22.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25725 - type: GasPipeStraight - components: - - pos: -22.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25726 - type: GasPipeStraight - components: - - pos: -22.5,58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25727 - type: GasPipeStraight - components: - - pos: -22.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25728 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -21.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25729 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -22.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25730 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -22.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25731 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -21.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25732 - type: GasPipeStraight - components: - - pos: -21.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25733 - type: GasPipeStraight - components: - - pos: -21.5,60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25734 - type: GasPipeStraight - components: - - pos: -21.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25735 - type: GasPipeStraight - components: - - pos: -22.5,62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25736 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25737 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25738 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25739 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -21.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25740 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -20.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25741 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -19.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25742 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -18.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25743 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -17.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25744 - type: GasPipeTJunction - components: - - pos: -17.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25745 - type: GasPipeStraight - components: - - pos: -22.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25746 - type: GasPipeStraight - components: - - pos: -22.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25747 - type: GasPipeStraight - components: - - pos: -22.5,65.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25748 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -22.5,66.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25749 - type: GasPipeStraight - components: - - pos: -22.5,67.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25750 - type: GasPipeStraight - components: - - pos: -22.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25751 - type: GasPipeStraight - components: - - pos: -22.5,69.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25752 - type: GasPipeStraight - components: - - pos: -22.5,70.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25753 - type: GasPipeStraight - components: - - pos: -22.5,71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25754 - type: GasPipeStraight - components: - - pos: -22.5,72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25755 - type: GasPipeStraight - components: - - pos: -21.5,63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25756 - type: GasPipeStraight - components: - - pos: -21.5,64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25757 - type: GasPipeStraight - components: - - pos: -21.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25758 - type: GasPipeStraight - components: - - pos: -21.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25759 - type: GasPipeStraight - components: - - pos: -21.5,67.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25760 - type: GasPipeStraight - components: - - pos: -21.5,68.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25761 - type: GasPipeStraight - components: - - pos: -21.5,69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25762 - type: GasPipeStraight - components: - - pos: -21.5,70.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25763 - type: GasPipeStraight - components: - - pos: -21.5,71.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25764 - type: GasPipeStraight - components: - - pos: -21.5,72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25765 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25766 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25767 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25768 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -16.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25769 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25770 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25771 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -13.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25772 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -13.5,62.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25773 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -12.5,61.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25774 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -12.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25775 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -13.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25776 - type: GasPipeStraight - components: - - pos: -13.5,61.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25777 - type: GasPipeStraight - components: - - pos: -13.5,60.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25778 - type: GasPipeStraight - components: - - pos: -13.5,59.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25779 - type: GasPipeStraight - components: - - pos: -12.5,62.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25780 - type: GasPipeStraight - components: - - pos: -12.5,63.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25781 - type: GasPipeStraight - components: - - pos: -12.5,64.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25782 - type: GasPipeStraight - components: - - pos: -12.5,65.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25783 - type: GasPipeStraight - components: - - pos: -12.5,66.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25784 - type: GasPipeStraight - components: - - pos: -12.5,67.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25785 - type: GasPipeStraight - components: - - pos: -12.5,68.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25786 - type: GasPipeStraight - components: - - pos: -12.5,69.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25787 - type: GasPipeStraight - components: - - pos: -12.5,70.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25788 - type: GasPipeStraight - components: - - pos: -12.5,71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25789 - type: GasPipeStraight - components: - - pos: -12.5,72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25790 - type: GasPipeStraight - components: - - pos: -13.5,63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25791 - type: GasPipeStraight - components: - - pos: -13.5,64.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25792 - type: GasPipeStraight - components: - - pos: -13.5,65.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25793 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -13.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25794 - type: GasPipeStraight - components: - - pos: -13.5,67.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25795 - type: GasPipeStraight - components: - - pos: -13.5,68.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25796 - type: GasPipeStraight - components: - - pos: -13.5,69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25797 - type: GasPipeStraight - components: - - pos: -13.5,70.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25798 - type: GasPipeStraight - components: - - pos: -13.5,71.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25799 - type: GasPipeStraight - components: - - pos: -13.5,72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25800 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -12.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25801 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -13.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25802 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25803 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25804 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25805 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25806 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25807 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25808 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25809 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25810 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25811 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25812 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25813 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25814 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25815 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -7.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25816 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -6.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25817 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -5.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25818 - type: GasPipeStraight - components: - - pos: -12.5,58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25819 - type: GasPipeStraight - components: - - pos: -12.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25820 - type: GasPipeStraight - components: - - pos: -12.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25821 - type: GasPipeStraight - components: - - pos: -12.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25822 - type: GasPipeStraight - components: - - pos: -12.5,54.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25823 - type: GasPipeStraight - components: - - pos: -12.5,53.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25824 - type: GasPipeStraight - components: - - pos: -12.5,52.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25825 - type: GasPipeStraight - components: - - pos: -12.5,51.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25826 - type: GasPipeStraight - components: - - pos: -13.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25827 - type: GasPipeStraight - components: - - pos: -13.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25828 - type: GasPipeStraight - components: - - pos: -13.5,54.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25829 - type: GasPipeStraight - components: - - pos: -13.5,53.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25830 - type: GasPipeStraight - components: - - pos: -13.5,52.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25831 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -13.5,51.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25832 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -22.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25833 - type: GasVentScrubber - components: - - pos: -17.5,63.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25834 - type: GasVentScrubber - components: - - pos: -21.5,73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25835 - type: GasVentScrubber - components: - - pos: -13.5,73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25836 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -12.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25837 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -13.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25838 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -17.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25839 - type: GasVentPump - components: - - pos: -12.5,73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25840 - type: GasVentPump - components: - - pos: -22.5,73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25841 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -21.5,60.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25842 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -12.5,50.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25843 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -2.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25844 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25845 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -2.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25846 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -4.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25847 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -3.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25848 - type: GasPipeBend - components: - - pos: 1.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25849 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25850 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -0.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25851 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -1.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25852 - type: GasPipeBend - components: - - pos: -0.5,58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25853 - type: GasPipeStraight - components: - - pos: -0.5,57.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25854 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,59.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25855 - type: GasPipeStraight - components: - - pos: -0.5,55.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25856 - type: GasPipeStraight - components: - - pos: 1.5,58.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25857 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 1.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25858 - type: GasPipeStraight - components: - - pos: 1.5,56.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25859 - type: GasPipeStraight - components: - - pos: 1.5,55.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25860 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 0.5,57.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25861 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 0.5,56.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25862 - type: WallReinforced - components: - - pos: -25.5,49.5 - parent: 1 - type: Transform -- uid: 25863 - type: WallReinforced - components: - - pos: -25.5,50.5 - parent: 1 - type: Transform -- uid: 25864 - type: WallReinforced - components: - - pos: -26.5,50.5 - parent: 1 - type: Transform -- uid: 25865 - type: WallReinforced - components: - - pos: -26.5,51.5 - parent: 1 - type: Transform -- uid: 25866 - type: WallReinforced - components: - - pos: -26.5,52.5 - parent: 1 - type: Transform -- uid: 25867 - type: ReinforcedWindow - components: - - pos: -26.5,54.5 - parent: 1 - type: Transform -- uid: 25868 - type: ReinforcedWindow - components: - - pos: -26.5,53.5 - parent: 1 - type: Transform -- uid: 25869 - type: WallReinforced - components: - - pos: -26.5,55.5 - parent: 1 - type: Transform -- uid: 25870 - type: WallReinforced - components: - - pos: -26.5,56.5 - parent: 1 - type: Transform -- uid: 25871 - type: WallReinforced - components: - - pos: -25.5,56.5 - parent: 1 - type: Transform -- uid: 25872 - type: WallReinforced - components: - - pos: -25.5,57.5 - parent: 1 - type: Transform -- uid: 25873 - type: WallReinforced - components: - - pos: -24.5,57.5 - parent: 1 - type: Transform -- uid: 25874 - type: Catwalk - components: - - pos: -37.5,45.5 - parent: 1 - type: Transform -- uid: 25875 - type: Catwalk - components: - - pos: -37.5,44.5 - parent: 1 - type: Transform -- uid: 25876 - type: Grille - components: - - pos: -43.5,40.5 - parent: 1 - type: Transform -- uid: 25877 - type: Grille - components: - - pos: -44.5,40.5 - parent: 1 - type: Transform -- uid: 25878 - type: Grille - components: - - pos: -33.5,40.5 - parent: 1 - type: Transform -- uid: 25879 - type: Grille - components: - - pos: -32.5,40.5 - parent: 1 - type: Transform -- uid: 25880 - type: Grille - components: - - pos: -32.5,37.5 - parent: 1 - type: Transform -- uid: 25881 - type: Grille - components: - - pos: -16.5,55.5 - parent: 1 - type: Transform -- uid: 25882 - type: Grille - components: - - pos: -16.5,56.5 - parent: 1 - type: Transform -- uid: 25883 - type: Grille - components: - - pos: -14.5,56.5 - parent: 1 - type: Transform -- uid: 25884 - type: Grille - components: - - pos: -14.5,55.5 - parent: 1 - type: Transform -- uid: 25885 - type: Grille - components: - - pos: -20.5,62.5 - parent: 1 - type: Transform -- uid: 25886 - type: Grille - components: - - pos: -14.5,62.5 - parent: 1 - type: Transform -- uid: 25887 - type: Grille - components: - - pos: -11.5,69.5 - parent: 1 - type: Transform -- uid: 25888 - type: Grille - components: - - pos: -11.5,68.5 - parent: 1 - type: Transform -- uid: 25889 - type: Grille - components: - - pos: -11.5,67.5 - parent: 1 - type: Transform -- uid: 25890 - type: Grille - components: - - pos: -11.5,73.5 - parent: 1 - type: Transform -- uid: 25891 - type: Grille - components: - - pos: -14.5,73.5 - parent: 1 - type: Transform -- uid: 25892 - type: Grille - components: - - pos: -20.5,73.5 - parent: 1 - type: Transform -- uid: 25893 - type: Grille - components: - - pos: -23.5,73.5 - parent: 1 - type: Transform -- uid: 25894 - type: Grille - components: - - pos: -23.5,63.5 - parent: 1 - type: Transform -- uid: 25895 - type: Grille - components: - - pos: -23.5,62.5 - parent: 1 - type: Transform -- uid: 25896 - type: Grille - components: - - pos: -23.5,61.5 - parent: 1 - type: Transform -- uid: 25897 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 14.5,50.5 - parent: 1 - type: Transform -- uid: 25898 - type: Window - components: - - pos: -20.5,62.5 - parent: 1 - type: Transform -- uid: 25899 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 39.5,52.5 - parent: 1 - type: Transform -- uid: 25900 - type: FirelockGlass - components: - - pos: -13.5,68.5 - parent: 1 - type: Transform -- uid: 25901 - type: FirelockGlass - components: - - pos: -21.5,68.5 - parent: 1 - type: Transform -- uid: 25902 - type: FirelockGlass - components: - - pos: -22.5,68.5 - parent: 1 - type: Transform -- uid: 25903 - type: FirelockGlass - components: - - pos: -11.5,59.5 - parent: 1 - type: Transform -- uid: 25904 - type: FirelockGlass - components: - - pos: -11.5,58.5 - parent: 1 - type: Transform -- uid: 25905 - type: FirelockGlass - components: - - pos: -15.5,51.5 - parent: 1 - type: Transform -- uid: 25906 - type: FirelockGlass - components: - - pos: -15.5,50.5 - parent: 1 - type: Transform -- uid: 25907 - type: CableApcExtension - components: - - pos: 28.5,45.5 - parent: 1 - type: Transform -- uid: 25908 - type: CableApcExtension - components: - - pos: 27.5,45.5 - parent: 1 - type: Transform -- uid: 25909 - type: CableApcExtension - components: - - pos: 26.5,45.5 - parent: 1 - type: Transform -- uid: 25910 - type: CableApcExtension - components: - - pos: 25.5,45.5 - parent: 1 - type: Transform -- uid: 25911 - type: CableApcExtension - components: - - pos: 24.5,45.5 - parent: 1 - type: Transform -- uid: 25912 - type: CableApcExtension - components: - - pos: 23.5,45.5 - parent: 1 - type: Transform -- uid: 25913 - type: CableApcExtension - components: - - pos: 22.5,45.5 - parent: 1 - type: Transform -- uid: 25914 - type: CableApcExtension - components: - - pos: 21.5,45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 25915 - type: SignalSwitch - components: - - pos: 27.5,44.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 23803 - - port: Open - uid: 23851 - - port: Open - uid: 23852 - - port: Open - uid: 23802 - - port: Open - uid: 23800 - - port: Open - uid: 23801 - - port: Open - uid: 23854 - - port: Open - uid: 23853 - - port: Open - uid: 23850 - - port: Open - uid: 23804 - Off: - - port: Close - uid: 23803 - - port: Close - uid: 23851 - - port: Close - uid: 23852 - - port: Close - uid: 23802 - - port: Close - uid: 23800 - - port: Close - uid: 23801 - - port: Close - uid: 23854 - - port: Close - uid: 23853 - - port: Close - uid: 23850 - - port: Close - uid: 23804 - type: SignalTransmitter -- uid: 25916 - type: AirlockExternalGlass - components: - - pos: 16.5,41.5 - parent: 1 - type: Transform -- uid: 25917 - type: GasPipeBend - components: - - pos: 40.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25918 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 40.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25919 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 39.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25920 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 38.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25921 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 37.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25922 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 36.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25923 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 35.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25924 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 34.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25925 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 33.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25926 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25927 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25928 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25929 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 29.5,47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25930 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 29.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25931 - type: GasPipeTJunction - components: - - pos: 29.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25932 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25933 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25934 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25935 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25936 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 28.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25937 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 27.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25938 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 26.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25939 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25940 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 24.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25941 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 23.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25942 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 29.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25943 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25944 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25945 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 32.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25946 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25947 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25948 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25949 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25950 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25951 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 25952 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25953 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 30.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25954 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 24.5,45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25955 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 30.5,46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25956 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 23.5,45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 25957 - type: PlasmaOre1 - components: - - rot: 3.141592653589793 rad - pos: 13.8918705,48.240677 - parent: 1 - type: Transform -- uid: 25958 - type: GoldOre1 - components: - - rot: 3.141592653589793 rad - pos: 19.789879,45.273663 - parent: 1 - type: Transform -- uid: 25959 - type: SteelOre1 - components: - - rot: 3.141592653589793 rad - pos: 20.04077,49.432205 - parent: 1 - type: Transform -- uid: 25960 - type: FloraTree05 - components: - - pos: -8.496121,50.8569 - parent: 1 - type: Transform -- uid: 25961 - type: FloraTree04 - components: - - pos: -9.341627,55.436527 - parent: 1 - type: Transform -- uid: 25962 - type: FloraTree02 - components: - - pos: -3.160706,55.605114 - parent: 1 - type: Transform -- uid: 25963 - type: ChessBoard - components: - - rot: 3.141592653589793 rad - pos: -3.4812293,52.59116 - parent: 1 - type: Transform -- uid: 25964 - type: hydroponicsSoil - components: - - pos: -6.5,49.5 - parent: 1 - type: Transform -- uid: 25965 - type: hydroponicsSoil - components: - - pos: -4.5,55.5 - parent: 1 - type: Transform -- uid: 25966 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25967 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25968 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25969 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -40.5,32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25970 - type: Poweredlight - components: - - pos: -1.5,46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25971 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25972 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25973 - type: Poweredlight - components: - - pos: -6.5,59.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25974 - type: Poweredlight - components: - - pos: -19.5,51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25975 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25976 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,66.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25977 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,66.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25978 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,60.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25979 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,54.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25980 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -4.5,47.5 - parent: 1 - type: Transform -- uid: 25981 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -11.5,52.5 - parent: 1 - type: Transform -- uid: 25982 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -6.5,57.5 - parent: 1 - type: Transform -- uid: 25983 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: -4.5,47.5 - parent: 1 - type: Transform -- uid: 25984 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -11.5,51.5 - parent: 1 - type: Transform -- uid: 25985 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -11.5,53.5 - parent: 1 - type: Transform -- uid: 25986 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -5.5,47.5 - parent: 1 - type: Transform -- uid: 25987 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -3.5,47.5 - parent: 1 - type: Transform -- uid: 25988 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -5.5,57.5 - parent: 1 - type: Transform -- uid: 25989 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -7.5,57.5 - parent: 1 - type: Transform -- uid: 25990 - type: SignShipDock - components: - - name: docking arm - type: MetaData - - pos: -14.5,70.5 - parent: 1 - type: Transform -- uid: 25991 - type: SignShipDock - components: - - name: docking arm - type: MetaData - - pos: -20.5,70.5 - parent: 1 - type: Transform -- uid: 25992 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -17.5,69.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 25993 - type: ClosetEmergencyFilledRandom - components: - - pos: -19.5,67.5 - parent: 1 - type: Transform -- uid: 25994 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -8.5,-84.5 - parent: 1 - type: Transform -- uid: 25995 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-83.5 - parent: 1 - type: Transform -- uid: 25996 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -20.5,67.5 - parent: 1 - type: Transform -- uid: 25997 - type: AirlockExternalGlassShuttleEscape - components: - - rot: 3.141592653589793 rad - pos: -17.5,70.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 25998 - type: Catwalk - components: - - pos: -17.5,58.5 - parent: 1 - type: Transform -- uid: 25999 - type: Catwalk - components: - - pos: -17.5,57.5 - parent: 1 - type: Transform -- uid: 26000 - type: Catwalk - components: - - pos: -17.5,56.5 - parent: 1 - type: Transform -- uid: 26001 - type: Catwalk - components: - - pos: -17.5,55.5 - parent: 1 - type: Transform -- uid: 26002 - type: Catwalk - components: - - pos: -17.5,54.5 - parent: 1 - type: Transform -- uid: 26003 - type: Catwalk - components: - - pos: -17.5,53.5 - parent: 1 - type: Transform -- uid: 26004 - type: Table - components: - - pos: 30.5,47.5 - parent: 1 - type: Transform -- uid: 26005 - type: Table - components: - - pos: 30.5,46.5 - parent: 1 - type: Transform -- uid: 26006 - type: ClothingHandsGlovesColorYellowBudget - components: - - pos: 30.46846,46.718662 - parent: 1 - type: Transform -- uid: 26007 - type: Wrench - components: - - pos: 30.53096,47.374912 - parent: 1 - type: Transform -- uid: 26008 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 28.5,44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26009 - type: MaintenanceFluffSpawner - components: - - pos: 15.5,57.5 - parent: 1 - type: Transform -- uid: 26010 - type: MaintenanceToolSpawner - components: - - pos: 16.5,56.5 - parent: 1 - type: Transform -- uid: 26011 - type: AsteroidRock - components: - - pos: 16.5,46.5 - parent: 1 - type: Transform -- uid: 26012 - type: AsteroidRock - components: - - pos: 18.5,44.5 - parent: 1 - type: Transform -- uid: 26013 - type: AsteroidRock - components: - - pos: 18.5,43.5 - parent: 1 - type: Transform -- uid: 26014 - type: AsteroidRock - components: - - pos: 18.5,45.5 - parent: 1 - type: Transform -- uid: 26015 - type: AsteroidRock - components: - - pos: 17.5,46.5 - parent: 1 - type: Transform -- uid: 26016 - type: Pickaxe - components: - - pos: 20.350138,46.202785 - parent: 1 - type: Transform -- uid: 26017 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: -14.5,49.5 - parent: 1 - type: Transform -- uid: 26018 - type: ClosetEmergencyFilledRandom - components: - - pos: -12.5,49.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26019 - type: ClosetMaintenance - components: - - pos: -47.5,38.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26020 - type: LockerElectricalSuppliesFilled - components: - - pos: -46.5,38.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26021 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -40.5,38.5 - parent: 1 - type: Transform -- uid: 26022 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: -43.5,38.5 - parent: 1 - type: Transform -- uid: 26023 - type: TableCarpet - components: - - rot: 3.141592653589793 rad - pos: -18.5,62.5 - parent: 1 - type: Transform -- uid: 26024 - type: TableCarpet - components: - - rot: 3.141592653589793 rad - pos: -18.5,61.5 - parent: 1 - type: Transform -- uid: 26025 - type: TableCarpet - components: - - rot: 3.141592653589793 rad - pos: -17.5,62.5 - parent: 1 - type: Transform -- uid: 26026 - type: TableCarpet - components: - - rot: 3.141592653589793 rad - pos: -17.5,61.5 - parent: 1 - type: Transform -- uid: 26027 - type: TableCarpet - components: - - rot: 3.141592653589793 rad - pos: -16.5,62.5 - parent: 1 - type: Transform -- uid: 26028 - type: TableCarpet - components: - - rot: 3.141592653589793 rad - pos: -16.5,61.5 - parent: 1 - type: Transform -- uid: 26029 - type: Chair - components: - - pos: -16.5,63.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26030 - type: Chair - components: - - pos: -17.5,63.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26031 - type: Chair - components: - - pos: -18.5,63.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26032 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -15.5,62.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26033 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -15.5,61.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26034 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -19.5,62.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26035 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -19.5,61.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26036 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -18.5,60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26037 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -17.5,60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26038 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: -16.5,60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26039 - type: DiceBag - components: - - pos: -16.724815,61.696495 - parent: 1 - type: Transform -- uid: 26040 - type: DiceBag - components: - - pos: -18.55294,62.55587 - parent: 1 - type: Transform -- uid: 26041 - type: ToyHonk - components: - - pos: -17.287315,62.508995 - parent: 1 - type: Transform -- uid: 26042 - type: ToyDurand - components: - - pos: -18.14669,61.77462 - parent: 1 - type: Transform -- uid: 26043 - type: ToyGygax - components: - - pos: -17.318565,61.89962 - parent: 1 - type: Transform -- uid: 26044 - type: ToyAssistant - components: - - pos: -17.943565,62.415245 - parent: 1 - type: Transform -- uid: 26045 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -12.5,74.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26046 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,74.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26047 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 15.5,48.5 - parent: 1 - type: Transform -- uid: 26048 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -15.5,60.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26049 - type: PoweredSmallLight - components: - - pos: -18.5,55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26050 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -24.5,42.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26051 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -25.5,33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26052 - type: PoweredSmallLight - components: - - pos: -30.5,39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26053 - type: PoweredSmallLight - components: - - pos: -42.5,39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26054 - type: AirlockMaintGlass - components: - - rot: 3.141592653589793 rad - pos: -11.5,21.5 - parent: 1 - type: Transform -- uid: 26055 - type: ClothingNeckCloakTrans - components: - - pos: -9.4988165,23.574131 - parent: 1 - type: Transform -- uid: 26056 - type: RandomPosterContraband - components: - - pos: -68.5,-40.5 - parent: 1 - type: Transform -- uid: 26057 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -11.5,24.5 - parent: 1 - type: Transform -- uid: 26058 - type: SignDirectionalSolar - components: - - rot: 3.141592653589793 rad - pos: 65.5,27.5 - parent: 1 - type: Transform -- uid: 26059 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 66.5,36.5 - parent: 1 - type: Transform -- uid: 26060 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 65.5,36.5 - parent: 1 - type: Transform -- uid: 26061 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 64.5,36.5 - parent: 1 - type: Transform -- uid: 26062 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 63.5,36.5 - parent: 1 - type: Transform -- uid: 26063 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 63.5,35.5 - parent: 1 - type: Transform -- uid: 26064 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 63.5,34.5 - parent: 1 - type: Transform -- uid: 26065 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 63.5,33.5 - parent: 1 - type: Transform -- uid: 26066 - type: Catwalk - components: - - pos: 83.5,36.5 - parent: 1 - type: Transform -- uid: 26067 - type: Catwalk - components: - - pos: 84.5,36.5 - parent: 1 - type: Transform -- uid: 26068 - type: Catwalk - components: - - pos: 85.5,36.5 - parent: 1 - type: Transform -- uid: 26069 - type: Catwalk - components: - - pos: 89.5,36.5 - parent: 1 - type: Transform -- uid: 26070 - type: Catwalk - components: - - pos: 90.5,36.5 - parent: 1 - type: Transform -- uid: 26071 - type: CableHVStack - components: - - pos: -0.5088408,-77.44958 - parent: 1 - type: Transform -- uid: 26072 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26073 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-49.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26074 - type: ComfyChair - components: - - pos: -55.5,-47.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26075 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: -55.5,-50.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26076 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -55.5,-48.5 - parent: 1 - type: Transform -- uid: 26077 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -55.5,-49.5 - parent: 1 - type: Transform -- uid: 26078 - type: PottedPlant28 - components: - - pos: -54.5,-47.5 - parent: 1 - type: Transform -- uid: 26079 - type: PottedPlant29 - components: - - pos: -54.5,-50.5 - parent: 1 - type: Transform -- uid: 26080 - type: PlushieSnake - components: - - pos: -55.49481,-49.261024 - parent: 1 - type: Transform -- uid: 26081 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -54.5,-48.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26082 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -26.5,54.5 - parent: 1 - type: Transform -- uid: 26083 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -26.5,53.5 - parent: 1 - type: Transform -- uid: 26084 - type: ClothingHeadHatWizard - components: - - pos: -27.578125,55.49253 - parent: 1 - type: Transform -- uid: 26085 - type: ClothingHeadHatVioletwizard - components: - - pos: 18.520521,50.50226 - parent: 1 - type: Transform -- uid: 26086 - type: ClothingOuterWizardViolet - components: - - pos: 19.504896,49.611633 - parent: 1 - type: Transform -- uid: 26087 - type: TableReinforced - components: - - pos: 48.5,50.5 - parent: 1 - type: Transform -- uid: 26088 - type: TableReinforced - components: - - pos: 47.5,50.5 - parent: 1 - type: Transform -- uid: 26089 - type: Grille - components: - - pos: 46.5,43.5 - parent: 1 - type: Transform -- uid: 26090 - type: TableReinforced - components: - - pos: 46.5,49.5 - parent: 1 - type: Transform -- uid: 26091 - type: TableReinforced - components: - - pos: 45.5,49.5 - parent: 1 - type: Transform -- uid: 26092 - type: AirAlarm - components: - - pos: -11.5,56.5 - parent: 1 - type: Transform - - devices: - - 25836 - - 25837 - - 18114 - - 25900 - - 23111 - - 25981 - - 25905 - - 25906 - - 25903 - - 25904 - type: DeviceList -- uid: 26093 - type: AirAlarm - components: - - pos: 0.5,60.5 - parent: 1 - type: Transform - - devices: - - 18117 - - 25860 - - 25861 - - 25667 - - 25666 - - 25665 - - 25982 - - 25903 - - 25904 - type: DeviceList -- uid: 26094 - type: FirelockGlass - components: - - pos: -24.5,48.5 - parent: 1 - type: Transform -- uid: 26095 - type: AsteroidRock - components: - - rot: 1.5707963267948966 rad - pos: 17.5,44.5 - parent: 1 - type: Transform -- uid: 26096 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-82.5 - parent: 1 - type: Transform -- uid: 26097 - type: PottedPlantRandom - components: - - pos: -6.5,46.5 - parent: 1 - type: Transform -- uid: 26098 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -1.5,55.5 - parent: 1 - type: Transform -- uid: 26099 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -7.5,60.5 - parent: 1 - type: Transform -- uid: 26100 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -5.5,60.5 - parent: 1 - type: Transform -- uid: 26101 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -14.5,58.5 - parent: 1 - type: Transform -- uid: 26102 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -20.5,57.5 - parent: 1 - type: Transform -- uid: 26103 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -23.5,60.5 - parent: 1 - type: Transform -- uid: 26104 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -23.5,67.5 - parent: 1 - type: Transform -- uid: 26105 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: -11.5,65.5 - parent: 1 - type: Transform -- uid: 26106 - type: PosterLegitGetYourLEGS - components: - - pos: -16.5,64.5 - parent: 1 - type: Transform -- uid: 26107 - type: PosterContrabandGreyTide - components: - - pos: -19.5,64.5 - parent: 1 - type: Transform -- uid: 26108 - type: PosterContrabandHackingGuide - components: - - pos: 15.5,40.5 - parent: 1 - type: Transform -- uid: 26109 - type: PosterContrabandLamarr - components: - - pos: 10.5,35.5 - parent: 1 - type: Transform -- uid: 26110 - type: PosterContrabandLustyExomorph - components: - - pos: 45.5,50.5 - parent: 1 - type: Transform -- uid: 26111 - type: PosterContrabandMaskedMen - components: - - pos: 47.5,51.5 - parent: 1 - type: Transform -- uid: 26112 - type: PosterLegitNoERP - components: - - pos: 40.5,49.5 - parent: 1 - type: Transform -- uid: 26113 - type: PosterContrabandRedRum - components: - - pos: 35.5,49.5 - parent: 1 - type: Transform -- uid: 26114 - type: PosterContrabandRevolver - components: - - pos: 42.5,49.5 - parent: 1 - type: Transform -- uid: 26115 - type: WallReinforced - components: - - pos: 3.5,57.5 - parent: 1 - type: Transform -- uid: 26116 - type: PosterLegitTheOwl - components: - - pos: 30.5,48.5 - parent: 1 - type: Transform -- uid: 26117 - type: PosterContrabandVoteWeh - components: - - pos: 59.5,41.5 - parent: 1 - type: Transform -- uid: 26118 - type: PosterMapOrigin - components: - - pos: -19.5,52.5 - parent: 1 - type: Transform -- uid: 26119 - type: RandomPosterContraband - components: - - pos: -11.5,63.5 - parent: 1 - type: Transform -- uid: 26120 - type: PosterContrabandDonutCorp - components: - - pos: 49.5,34.5 - parent: 1 - type: Transform -- uid: 26121 - type: AltarSpawner - components: - - pos: 45.5,47.5 - parent: 1 - type: Transform -- uid: 26122 - type: RandomPainting - components: - - pos: 49.5,48.5 - parent: 1 - type: Transform -- uid: 26123 - type: Catwalk - components: - - pos: -22.5,27.5 - parent: 1 - type: Transform -- uid: 26124 - type: Catwalk - components: - - pos: -23.5,27.5 - parent: 1 - type: Transform -- uid: 26125 - type: Catwalk - components: - - pos: -24.5,27.5 - parent: 1 - type: Transform -- uid: 26126 - type: Catwalk - components: - - pos: -25.5,27.5 - parent: 1 - type: Transform -- uid: 26127 - type: Catwalk - components: - - pos: -26.5,27.5 - parent: 1 - type: Transform -- uid: 26128 - type: Catwalk - components: - - pos: -27.5,27.5 - parent: 1 - type: Transform -- uid: 26129 - type: Catwalk - components: - - pos: -28.5,27.5 - parent: 1 - type: Transform -- uid: 26130 - type: Firelock - components: - - pos: -27.5,32.5 - parent: 1 - type: Transform -- uid: 26131 - type: AMEJar - components: - - pos: 20.471298,55.773235 - parent: 1 - type: Transform -- uid: 26132 - type: AMEPart - components: - - pos: 19.423536,55.353977 - parent: 1 - type: Transform -- uid: 26133 - type: AMEPart - components: - - pos: 19.173536,54.619602 - parent: 1 - type: Transform -- uid: 26134 - type: AMEPart - components: - - pos: 18.376661,54.494602 - parent: 1 - type: Transform -- uid: 26135 - type: ClosetEmergencyFilledRandom - components: - - pos: -26.5,28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26136 - type: ClosetFireFilled - components: - - pos: -31.5,-41.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26137 - type: ClosetFireFilled - components: - - pos: -27.5,28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26138 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -28.5,27.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26139 - type: Bucket - components: - - pos: -4.262462,56.45376 - parent: 1 - type: Transform -- uid: 26140 - type: SinkWide - components: - - pos: -3.5,56.5 - parent: 1 - type: Transform -- uid: 26141 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 54.5,52.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26142 - type: AirlockCommandLocked - components: - - name: conference room - type: MetaData - - rot: 3.141592653589793 rad - pos: 23.5,-26.5 - parent: 1 - type: Transform -- uid: 26143 - type: WallReinforced - components: - - pos: 10.5,-30.5 - parent: 1 - type: Transform -- uid: 26144 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 42.5,3.5 - parent: 1 - type: Transform -- uid: 26145 - type: PosterContrabandMissingGloves - components: - - pos: -26.5,-18.5 - parent: 1 - type: Transform -- uid: 26146 - type: WallSolid - components: - - pos: -22.5,-17.5 - parent: 1 - type: Transform -- uid: 26147 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 41.5,3.5 - parent: 1 - type: Transform -- uid: 26148 - type: IngotGold1 - components: - - pos: 14.545005,56.593597 - parent: 1 - type: Transform -- uid: 26149 - type: RandomArtifactSpawner20 - components: - - pos: 50.5,51.5 - parent: 1 - type: Transform -- uid: 26150 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -10.5,26.5 - parent: 1 - type: Transform -- uid: 26151 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,26.5 - parent: 1 - type: Transform -- uid: 26152 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -11.5,26.5 - parent: 1 - type: Transform -- uid: 26153 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -12.5,26.5 - parent: 1 - type: Transform -- uid: 26154 - type: PlasticFlapsOpaque - components: - - rot: 1.5707963267948966 rad - pos: 48.5,37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26155 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: 48.5,38.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 24015 - Forward: - - port: Left - uid: 24015 - Off: - - port: Middle - uid: 24015 - type: SignalReceiver -- uid: 26156 - type: WallReinforced - components: - - pos: 9.5,-33.5 - parent: 1 - type: Transform -- uid: 26157 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -17.465254,8.332064 - parent: 1 - type: Transform -- uid: 26158 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: -17.476206,8.574429 - parent: 1 - type: Transform -- uid: 26159 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: -17.465254,8.816439 - parent: 1 - type: Transform -- uid: 26160 - type: SignDirectionalEvac - components: - - rot: 1.5707963267948966 rad - pos: -17.465254,9.066439 - parent: 1 - type: Transform -- uid: 26161 - type: SignDirectionalChapel - components: - - rot: -1.5707963267948966 rad - pos: -21.478504,9.770466 - parent: 1 - type: Transform -- uid: 26162 - type: SignDirectionalMed - components: - - pos: -21.471863,9.993778 - parent: 1 - type: Transform -- uid: 26163 - type: SignDirectionalEng - components: - - pos: -21.4735,10.205865 - parent: 1 - type: Transform -- uid: 26164 - type: SignDirectionalBar - components: - - rot: 1.5707963267948966 rad - pos: -17.472397,9.2931385 - parent: 1 - type: Transform -- uid: 26165 - type: WindowReinforcedDirectional - components: - - pos: -11.5,-81.5 - parent: 1 - type: Transform -- uid: 26166 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-82.5 - parent: 1 - type: Transform -- uid: 26167 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -11.5,-84.5 - parent: 1 - type: Transform -- uid: 26168 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-83.5 - parent: 1 - type: Transform -- uid: 26169 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-82.5 - parent: 1 - type: Transform -- uid: 26170 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -12.5,-84.5 - parent: 1 - type: Transform -- uid: 26171 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -12.5,-81.5 - parent: 1 - type: Transform -- uid: 26172 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-81.5 - parent: 1 - type: Transform -- uid: 26173 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-81.5 - parent: 1 - type: Transform -- uid: 26174 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-80.5 - parent: 1 - type: Transform -- uid: 26175 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -10.5,-79.5 - parent: 1 - type: Transform -- uid: 26176 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -11.5,-79.5 - parent: 1 - type: Transform -- uid: 26177 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-80.5 - parent: 1 - type: Transform -- uid: 26178 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-79.5 - parent: 1 - type: Transform -- uid: 26179 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-81.5 - parent: 1 - type: Transform -- uid: 26180 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-80.5 - parent: 1 - type: Transform -- uid: 26181 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -9.5,-79.5 - parent: 1 - type: Transform -- uid: 26182 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-79.5 - parent: 1 - type: Transform -- uid: 26183 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-80.5 - parent: 1 - type: Transform -- uid: 26184 - type: WindowReinforcedDirectional - components: - - pos: -8.5,-80.5 - parent: 1 - type: Transform -- uid: 26185 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-80.5 - parent: 1 - type: Transform -- uid: 26186 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-79.5 - parent: 1 - type: Transform -- uid: 26187 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-79.5 - parent: 1 - type: Transform -- uid: 26188 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-80.5 - parent: 1 - type: Transform -- uid: 26189 - type: WindowReinforcedDirectional - components: - - pos: -7.5,-81.5 - parent: 1 - type: Transform -- uid: 26190 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-81.5 - parent: 1 - type: Transform -- uid: 26191 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -6.5,-81.5 - parent: 1 - type: Transform -- uid: 26192 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-82.5 - parent: 1 - type: Transform -- uid: 26193 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -6.5,-83.5 - parent: 1 - type: Transform -- uid: 26194 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-83.5 - parent: 1 - type: Transform -- uid: 26195 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-84.5 - parent: 1 - type: Transform -- uid: 26196 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -7.5,-85.5 - parent: 1 - type: Transform -- uid: 26197 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-84.5 - parent: 1 - type: Transform -- uid: 26198 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-85.5 - parent: 1 - type: Transform -- uid: 26199 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-85.5 - parent: 1 - type: Transform -- uid: 26200 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-77.5 - parent: 1 - type: Transform -- uid: 26201 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -8.5,-78.5 - parent: 1 - type: Transform -- uid: 26202 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -7.5,-78.5 - parent: 1 - type: Transform -- uid: 26203 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-78.5 - parent: 1 - type: Transform -- uid: 26204 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-77.5 - parent: 1 - type: Transform -- uid: 26205 - type: WindowReinforcedDirectional - components: - - pos: -6.5,-79.5 - parent: 1 - type: Transform -- uid: 26206 - type: WindowReinforcedDirectional - components: - - pos: -5.5,-79.5 - parent: 1 - type: Transform -- uid: 26207 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-80.5 - parent: 1 - type: Transform -- uid: 26208 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -4.5,-82.5 - parent: 1 - type: Transform -- uid: 26209 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-82.5 - parent: 1 - type: Transform -- uid: 26210 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-83.5 - parent: 1 - type: Transform -- uid: 26211 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-83.5 - parent: 1 - type: Transform -- uid: 26212 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-84.5 - parent: 1 - type: Transform -- uid: 26213 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -5.5,-85.5 - parent: 1 - type: Transform -- uid: 26214 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-83.5 - parent: 1 - type: Transform -- uid: 26215 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-82.5 - parent: 1 - type: Transform -- uid: 26216 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-91.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26217 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -5.5,-87.5 - parent: 1 - type: Transform -- uid: 26218 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -6.5,-87.5 - parent: 1 - type: Transform -- uid: 26219 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -7.5,-87.5 - parent: 1 - type: Transform -- uid: 26220 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -8.5,-87.5 - parent: 1 - type: Transform -- uid: 26221 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -9.5,-87.5 - parent: 1 - type: Transform -- uid: 26222 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -10.5,-88.5 - parent: 1 - type: Transform -- uid: 26223 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-86.5 - parent: 1 - type: Transform -- uid: 26224 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-85.5 - parent: 1 - type: Transform -- uid: 26225 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -9.5,-86.5 - parent: 1 - type: Transform -- uid: 26226 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-85.5 - parent: 1 - type: Transform -- uid: 26227 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -11.5,-85.5 - parent: 1 - type: Transform -- uid: 26228 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -12.5,-85.5 - parent: 1 - type: Transform -- uid: 26229 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -7.5,-86.5 - parent: 1 - type: Transform -- uid: 26230 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -6.5,-86.5 - parent: 1 - type: Transform -- uid: 26231 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-85.5 - parent: 1 - type: Transform -- uid: 26232 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-85.5 - parent: 1 - type: Transform -- uid: 26233 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-85.5 - parent: 1 - type: Transform -- uid: 26234 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-84.5 - parent: 1 - type: Transform -- uid: 26235 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-83.5 - parent: 1 - type: Transform -- uid: 26236 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -13.5,-87.5 - parent: 1 - type: Transform -- uid: 26237 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-86.5 - parent: 1 - type: Transform -- uid: 26238 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -12.5,-86.5 - parent: 1 - type: Transform -- uid: 26239 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-82.5 - parent: 1 - type: Transform -- uid: 26240 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -14.5,-82.5 - parent: 1 - type: Transform -- uid: 26241 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-82.5 - parent: 1 - type: Transform -- uid: 26242 - type: WindowReinforcedDirectional - components: - - pos: -15.5,-83.5 - parent: 1 - type: Transform -- uid: 26243 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -14.5,-85.5 - parent: 1 - type: Transform -- uid: 26244 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-87.5 - parent: 1 - type: Transform -- uid: 26245 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -11.5,-88.5 - parent: 1 - type: Transform -- uid: 26246 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-87.5 - parent: 1 - type: Transform -- uid: 26247 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-87.5 - parent: 1 - type: Transform -- uid: 26248 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -8.5,-88.5 - parent: 1 - type: Transform -- uid: 26249 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-88.5 - parent: 1 - type: Transform -- uid: 26250 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-88.5 - parent: 1 - type: Transform -- uid: 26251 - type: WindowReinforcedDirectional - components: - - pos: -6.5,-87.5 - parent: 1 - type: Transform -- uid: 26252 - type: WindowReinforcedDirectional - components: - - pos: -5.5,-87.5 - parent: 1 - type: Transform -- uid: 26253 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-87.5 - parent: 1 - type: Transform -- uid: 26254 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-87.5 - parent: 1 - type: Transform -- uid: 26255 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -13.5,-88.5 - parent: 1 - type: Transform -- uid: 26256 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -14.5,-88.5 - parent: 1 - type: Transform -- uid: 26257 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-87.5 - parent: 1 - type: Transform -- uid: 26258 - type: WindowReinforcedDirectional - components: - - pos: -15.5,-85.5 - parent: 1 - type: Transform -- uid: 26259 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-86.5 - parent: 1 - type: Transform -- uid: 26260 - type: WindowReinforcedDirectional - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-86.5 - parent: 1 - type: Transform -- uid: 26261 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -16.5,-81.5 - parent: 1 - type: Transform -- uid: 26262 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -16.5,-82.5 - parent: 1 - type: Transform -- uid: 26263 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -16.5,-83.5 - parent: 1 - type: Transform -- uid: 26264 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -16.5,-84.5 - parent: 1 - type: Transform -- uid: 26265 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -16.5,-85.5 - parent: 1 - type: Transform -- uid: 26266 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -16.5,-86.5 - parent: 1 - type: Transform -- uid: 26267 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -16.5,-87.5 - parent: 1 - type: Transform -- uid: 26268 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-88.5 - parent: 1 - type: Transform -- uid: 26269 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -16.5,-89.5 - parent: 1 - type: Transform -- uid: 26270 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -15.5,-89.5 - parent: 1 - type: Transform -- uid: 26271 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -14.5,-89.5 - parent: 1 - type: Transform -- uid: 26272 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -13.5,-89.5 - parent: 1 - type: Transform -- uid: 26273 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -12.5,-89.5 - parent: 1 - type: Transform -- uid: 26274 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -11.5,-89.5 - parent: 1 - type: Transform -- uid: 26275 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -10.5,-89.5 - parent: 1 - type: Transform -- uid: 26276 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -9.5,-89.5 - parent: 1 - type: Transform -- uid: 26277 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -8.5,-89.5 - parent: 1 - type: Transform -- uid: 26278 - type: BlastDoorExterior1Open - components: - - pos: -8.5,-91.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -176842.02 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 26669 - - port: On - uid: 26672 - Close: - - port: Off - uid: 26669 - - port: Off - uid: 26672 - Toggle: [] - type: SignalReceiver -- uid: 26279 - type: BlastDoorExterior1Open - components: - - pos: -8.5,-92.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -176842.02 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 26672 - - port: On - uid: 26669 - Close: - - port: Off - uid: 26672 - - port: Off - uid: 26669 - Toggle: [] - type: SignalReceiver -- uid: 26280 - type: BlastDoorExterior1Open - components: - - pos: -8.5,-93.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -176842.02 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 26672 - - port: On - uid: 26669 - Close: - - port: Off - uid: 26672 - - port: Off - uid: 26669 - Toggle: [] - type: SignalReceiver -- uid: 26281 - type: GasPipeStraight - components: - - pos: -22.5,-90.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26282 - type: GasPipeStraight - components: - - pos: -22.5,-91.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26283 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -9.5,-94.5 - parent: 1 - type: Transform -- uid: 26284 - type: BlastDoorExterior1Open - components: - - pos: -6.5,-91.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -176842.02 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 26669 - - port: On - uid: 26672 - Close: - - port: Off - uid: 26669 - - port: Off - uid: 26672 - Toggle: [] - type: SignalReceiver -- uid: 26285 - type: BlastDoorExterior1Open - components: - - pos: -6.5,-90.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -176842.02 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 26669 - - port: On - uid: 26672 - Close: - - port: Off - uid: 26669 - - port: Off - uid: 26672 - Toggle: [] - type: SignalReceiver -- uid: 26286 - type: WallReinforced - components: - - pos: -5.5,-94.5 - parent: 1 - type: Transform -- uid: 26287 - type: BlastDoorExterior1Open - components: - - pos: -6.5,-92.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -176842.02 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 26669 - - port: On - uid: 26672 - Close: - - port: Off - uid: 26669 - - port: Off - uid: 26672 - Toggle: [] - type: SignalReceiver -- uid: 26288 - type: BlastDoorExterior1Open - components: - - pos: -6.5,-93.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -176842.02 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 26669 - - port: On - uid: 26672 - Close: - - port: Off - uid: 26669 - - port: Off - uid: 26672 - Toggle: [] - type: SignalReceiver -- uid: 26289 - type: BlastDoorExterior1Open - components: - - pos: -8.5,-90.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -176842.02 - state: Opening - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 26669 - - port: On - uid: 26672 - Close: - - port: Off - uid: 26669 - - port: Off - uid: 26672 - Toggle: [] - type: SignalReceiver -- uid: 26290 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -6.5,-89.5 - parent: 1 - type: Transform -- uid: 26291 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -5.5,-89.5 - parent: 1 - type: Transform -- uid: 26292 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -4.5,-89.5 - parent: 1 - type: Transform -- uid: 26293 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -3.5,-89.5 - parent: 1 - type: Transform -- uid: 26294 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -3.5,-85.5 - parent: 1 - type: Transform -- uid: 26295 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -3.5,-86.5 - parent: 1 - type: Transform -- uid: 26296 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -3.5,-87.5 - parent: 1 - type: Transform -- uid: 26297 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -3.5,-88.5 - parent: 1 - type: Transform -- uid: 26298 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: -3.5,-84.5 - parent: 1 - type: Transform -- uid: 26299 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-77.5 - parent: 1 - type: Transform -- uid: 26300 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-78.5 - parent: 1 - type: Transform -- uid: 26301 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-79.5 - parent: 1 - type: Transform -- uid: 26302 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-78.5 - parent: 1 - type: Transform -- uid: 26303 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-78.5 - parent: 1 - type: Transform -- uid: 26304 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -11.5,-78.5 - parent: 1 - type: Transform -- uid: 26305 - type: AirlockMaintGlass - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-76.5 - parent: 1 - type: Transform -- uid: 26306 - type: CableApcExtension - components: - - pos: -8.5,-76.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26307 - type: CableApcExtension - components: - - pos: -8.5,-77.5 - parent: 1 - type: Transform -- uid: 26308 - type: CableApcExtension - components: - - pos: -8.5,-78.5 - parent: 1 - type: Transform -- uid: 26309 - type: CableApcExtension - components: - - pos: -8.5,-79.5 - parent: 1 - type: Transform -- uid: 26310 - type: CableApcExtension - components: - - pos: -8.5,-80.5 - parent: 1 - type: Transform -- uid: 26311 - type: CableApcExtension - components: - - pos: -8.5,-81.5 - parent: 1 - type: Transform -- uid: 26312 - type: CableApcExtension - components: - - pos: -8.5,-82.5 - parent: 1 - type: Transform -- uid: 26313 - type: CableApcExtension - components: - - pos: -8.5,-83.5 - parent: 1 - type: Transform -- uid: 26314 - type: CableApcExtension - components: - - pos: -8.5,-84.5 - parent: 1 - type: Transform -- uid: 26315 - type: CableApcExtension - components: - - pos: -8.5,-85.5 - parent: 1 - type: Transform -- uid: 26316 - type: CableApcExtension - components: - - pos: -8.5,-86.5 - parent: 1 - type: Transform -- uid: 26317 - type: CableApcExtension - components: - - pos: -7.5,-86.5 - parent: 1 - type: Transform -- uid: 26318 - type: CableApcExtension - components: - - pos: -7.5,-87.5 - parent: 1 - type: Transform -- uid: 26319 - type: CableApcExtension - components: - - pos: -7.5,-88.5 - parent: 1 - type: Transform -- uid: 26320 - type: CableApcExtension - components: - - pos: -7.5,-89.5 - parent: 1 - type: Transform -- uid: 26321 - type: CableApcExtension - components: - - pos: -7.5,-90.5 - parent: 1 - type: Transform -- uid: 26322 - type: CableApcExtension - components: - - pos: -7.5,-91.5 - parent: 1 - type: Transform -- uid: 26323 - type: CableApcExtension - components: - - pos: -7.5,-92.5 - parent: 1 - type: Transform -- uid: 26324 - type: CableApcExtension - components: - - pos: -7.5,-93.5 - parent: 1 - type: Transform -- uid: 26325 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-88.5 - parent: 1 - type: Transform -- uid: 26326 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-82.5 - parent: 1 - type: Transform -- uid: 26327 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-82.5 - parent: 1 - type: Transform -- uid: 26328 - type: Rack - components: - - pos: -8.5,-82.5 - parent: 1 - type: Transform -- uid: 26329 - type: Rack - components: - - pos: -14.5,-82.5 - parent: 1 - type: Transform -- uid: 26330 - type: Rack - components: - - pos: -4.5,-82.5 - parent: 1 - type: Transform -- uid: 26331 - type: Rack - components: - - pos: -6.5,-88.5 - parent: 1 - type: Transform -- uid: 26332 - type: MaintenanceFluffSpawner - components: - - pos: -14.5,-82.5 - parent: 1 - type: Transform -- uid: 26333 - type: MaintenanceToolSpawner - components: - - pos: -4.5,-82.5 - parent: 1 - type: Transform -- uid: 26334 - type: MaintenanceToolSpawner - components: - - pos: -8.5,-82.5 - parent: 1 - type: Transform -- uid: 26335 - type: MaintenanceWeaponSpawner - components: - - pos: -6.5,-88.5 - parent: 1 - type: Transform -- uid: 26336 - type: AirlockExternalGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-18.5 - parent: 1 - type: Transform -- uid: 26337 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 29.5,48.5 - parent: 1 - type: Transform -- uid: 26338 - type: Catwalk - components: - - pos: 29.5,55.5 - parent: 1 - type: Transform -- uid: 26339 - type: Catwalk - components: - - pos: 29.5,56.5 - parent: 1 - type: Transform -- uid: 26340 - type: Catwalk - components: - - pos: 29.5,57.5 - parent: 1 - type: Transform -- uid: 26341 - type: Catwalk - components: - - pos: 29.5,58.5 - parent: 1 - type: Transform -- uid: 26342 - type: Catwalk - components: - - pos: 29.5,59.5 - parent: 1 - type: Transform -- uid: 26343 - type: Catwalk - components: - - pos: 29.5,60.5 - parent: 1 - type: Transform -- uid: 26344 - type: Catwalk - components: - - pos: 29.5,61.5 - parent: 1 - type: Transform -- uid: 26345 - type: Catwalk - components: - - pos: 29.5,62.5 - parent: 1 - type: Transform -- uid: 26346 - type: Catwalk - components: - - pos: 28.5,62.5 - parent: 1 - type: Transform -- uid: 26347 - type: Catwalk - components: - - pos: 27.5,62.5 - parent: 1 - type: Transform -- uid: 26348 - type: Catwalk - components: - - pos: 26.5,62.5 - parent: 1 - type: Transform -- uid: 26349 - type: Catwalk - components: - - pos: 25.5,62.5 - parent: 1 - type: Transform -- uid: 26350 - type: Catwalk - components: - - pos: 24.5,62.5 - parent: 1 - type: Transform -- uid: 26351 - type: Catwalk - components: - - pos: 23.5,62.5 - parent: 1 - type: Transform -- uid: 26352 - type: Catwalk - components: - - pos: 22.5,62.5 - parent: 1 - type: Transform -- uid: 26353 - type: Catwalk - components: - - pos: 21.5,62.5 - parent: 1 - type: Transform -- uid: 26354 - type: Catwalk - components: - - pos: 20.5,62.5 - parent: 1 - type: Transform -- uid: 26355 - type: Catwalk - components: - - pos: 19.5,62.5 - parent: 1 - type: Transform -- uid: 26356 - type: Catwalk - components: - - pos: 18.5,62.5 - parent: 1 - type: Transform -- uid: 26357 - type: Catwalk - components: - - pos: 17.5,62.5 - parent: 1 - type: Transform -- uid: 26358 - type: Catwalk - components: - - pos: 16.5,62.5 - parent: 1 - type: Transform -- uid: 26359 - type: Catwalk - components: - - pos: 15.5,62.5 - parent: 1 - type: Transform -- uid: 26360 - type: Catwalk - components: - - pos: 14.5,62.5 - parent: 1 - type: Transform -- uid: 26361 - type: Catwalk - components: - - pos: 13.5,62.5 - parent: 1 - type: Transform -- uid: 26362 - type: Catwalk - components: - - pos: 12.5,62.5 - parent: 1 - type: Transform -- uid: 26363 - type: Catwalk - components: - - pos: 11.5,62.5 - parent: 1 - type: Transform -- uid: 26364 - type: Catwalk - components: - - pos: 10.5,62.5 - parent: 1 - type: Transform -- uid: 26365 - type: Catwalk - components: - - pos: 9.5,62.5 - parent: 1 - type: Transform -- uid: 26366 - type: Catwalk - components: - - pos: 8.5,62.5 - parent: 1 - type: Transform -- uid: 26367 - type: Catwalk - components: - - pos: 7.5,62.5 - parent: 1 - type: Transform -- uid: 26368 - type: Catwalk - components: - - pos: 7.5,63.5 - parent: 1 - type: Transform -- uid: 26369 - type: Catwalk - components: - - pos: 7.5,64.5 - parent: 1 - type: Transform -- uid: 26370 - type: Catwalk - components: - - pos: 7.5,65.5 - parent: 1 - type: Transform -- uid: 26371 - type: Catwalk - components: - - pos: 7.5,66.5 - parent: 1 - type: Transform -- uid: 26372 - type: Catwalk - components: - - pos: 7.5,67.5 - parent: 1 - type: Transform -- uid: 26373 - type: Catwalk - components: - - pos: 7.5,68.5 - parent: 1 - type: Transform -- uid: 26374 - type: Catwalk - components: - - pos: 7.5,69.5 - parent: 1 - type: Transform -- uid: 26375 - type: Catwalk - components: - - pos: 7.5,70.5 - parent: 1 - type: Transform -- uid: 26376 - type: Catwalk - components: - - pos: 7.5,71.5 - parent: 1 - type: Transform -- uid: 26377 - type: Catwalk - components: - - pos: 7.5,72.5 - parent: 1 - type: Transform -- uid: 26378 - type: Catwalk - components: - - pos: 7.5,73.5 - parent: 1 - type: Transform -- uid: 26379 - type: Catwalk - components: - - pos: 7.5,74.5 - parent: 1 - type: Transform -- uid: 26380 - type: Catwalk - components: - - pos: 7.5,75.5 - parent: 1 - type: Transform -- uid: 26381 - type: Catwalk - components: - - pos: 6.5,75.5 - parent: 1 - type: Transform -- uid: 26382 - type: Catwalk - components: - - pos: 5.5,75.5 - parent: 1 - type: Transform -- uid: 26383 - type: Catwalk - components: - - pos: 4.5,75.5 - parent: 1 - type: Transform -- uid: 26384 - type: Catwalk - components: - - pos: 3.5,75.5 - parent: 1 - type: Transform -- uid: 26385 - type: Catwalk - components: - - pos: 2.5,75.5 - parent: 1 - type: Transform -- uid: 26386 - type: Catwalk - components: - - pos: 1.5,75.5 - parent: 1 - type: Transform -- uid: 26387 - type: Catwalk - components: - - pos: 0.5,75.5 - parent: 1 - type: Transform -- uid: 26388 - type: Catwalk - components: - - pos: -0.5,75.5 - parent: 1 - type: Transform -- uid: 26389 - type: Catwalk - components: - - pos: -1.5,75.5 - parent: 1 - type: Transform -- uid: 26390 - type: Catwalk - components: - - pos: -2.5,75.5 - parent: 1 - type: Transform -- uid: 26391 - type: Catwalk - components: - - pos: -3.5,75.5 - parent: 1 - type: Transform -- uid: 26392 - type: Catwalk - components: - - pos: -4.5,75.5 - parent: 1 - type: Transform -- uid: 26393 - type: Catwalk - components: - - pos: -5.5,75.5 - parent: 1 - type: Transform -- uid: 26394 - type: Catwalk - components: - - pos: -6.5,75.5 - parent: 1 - type: Transform -- uid: 26395 - type: Catwalk - components: - - pos: -7.5,75.5 - parent: 1 - type: Transform -- uid: 26396 - type: Catwalk - components: - - pos: -8.5,75.5 - parent: 1 - type: Transform -- uid: 26397 - type: Catwalk - components: - - pos: -9.5,75.5 - parent: 1 - type: Transform -- uid: 26398 - type: Catwalk - components: - - pos: -10.5,75.5 - parent: 1 - type: Transform -- uid: 26399 - type: ReinforcedWindow - components: - - pos: -18.5,-97.5 - parent: 1 - type: Transform -- uid: 26400 - type: ReinforcedWindow - components: - - pos: -26.5,-97.5 - parent: 1 - type: Transform -- uid: 26401 - type: BlastDoorExterior1 - components: - - pos: -18.5,-96.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -175085.03 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 26445 - Close: - - port: Off - uid: 26445 - Toggle: [] - type: SignalReceiver -- uid: 26402 - type: BlastDoorExterior1 - components: - - pos: -18.5,-98.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -175085.03 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 26445 - Close: - - port: Off - uid: 26445 - Toggle: [] - type: SignalReceiver -- uid: 26403 - type: BlastDoorExterior1 - components: - - pos: -26.5,-96.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -175093.36 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 26446 - Close: - - port: Off - uid: 26446 - Toggle: [] - type: SignalReceiver -- uid: 26404 - type: BlastDoorExterior1 - components: - - pos: -26.5,-98.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -175093.36 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 26446 - Close: - - port: Off - uid: 26446 - Toggle: [] - type: SignalReceiver -- uid: 26405 - type: WallReinforced - components: - - pos: -18.5,-95.5 - parent: 1 - type: Transform -- uid: 26406 - type: WallReinforced - components: - - pos: -18.5,-99.5 - parent: 1 - type: Transform -- uid: 26407 - type: WallReinforced - components: - - pos: -26.5,-95.5 - parent: 1 - type: Transform -- uid: 26408 - type: WallReinforced - components: - - pos: -26.5,-99.5 - parent: 1 - type: Transform -- uid: 26409 - type: WallReinforced - components: - - pos: -18.5,-94.5 - parent: 1 - type: Transform -- uid: 26410 - type: WallReinforced - components: - - pos: -19.5,-94.5 - parent: 1 - type: Transform -- uid: 26411 - type: WallReinforced - components: - - pos: -20.5,-94.5 - parent: 1 - type: Transform -- uid: 26412 - type: WallReinforced - components: - - pos: -24.5,-94.5 - parent: 1 - type: Transform -- uid: 26413 - type: WallReinforced - components: - - pos: -25.5,-94.5 - parent: 1 - type: Transform -- uid: 26414 - type: WallReinforced - components: - - pos: -26.5,-94.5 - parent: 1 - type: Transform -- uid: 26415 - type: WallReinforced - components: - - pos: -18.5,-100.5 - parent: 1 - type: Transform -- uid: 26416 - type: WallReinforced - components: - - pos: -19.5,-100.5 - parent: 1 - type: Transform -- uid: 26417 - type: WallReinforced - components: - - pos: -20.5,-100.5 - parent: 1 - type: Transform -- uid: 26418 - type: WallReinforced - components: - - pos: -26.5,-100.5 - parent: 1 - type: Transform -- uid: 26419 - type: WallReinforced - components: - - pos: -25.5,-100.5 - parent: 1 - type: Transform -- uid: 26420 - type: WallReinforced - components: - - pos: -24.5,-100.5 - parent: 1 - type: Transform -- uid: 26421 - type: WallReinforced - components: - - pos: -17.5,-95.5 - parent: 1 - type: Transform -- uid: 26422 - type: WallReinforced - components: - - pos: -16.5,-95.5 - parent: 1 - type: Transform -- uid: 26423 - type: WallReinforced - components: - - pos: -15.5,-95.5 - parent: 1 - type: Transform -- uid: 26424 - type: WallReinforced - components: - - pos: -14.5,-95.5 - parent: 1 - type: Transform -- uid: 26425 - type: WallReinforced - components: - - pos: -17.5,-99.5 - parent: 1 - type: Transform -- uid: 26426 - type: WallReinforced - components: - - pos: -16.5,-99.5 - parent: 1 - type: Transform -- uid: 26427 - type: WallReinforced - components: - - pos: -15.5,-99.5 - parent: 1 - type: Transform -- uid: 26428 - type: WallReinforced - components: - - pos: -14.5,-99.5 - parent: 1 - type: Transform -- uid: 26429 - type: WallReinforced - components: - - pos: -27.5,-95.5 - parent: 1 - type: Transform -- uid: 26430 - type: WallReinforced - components: - - pos: -28.5,-95.5 - parent: 1 - type: Transform -- uid: 26431 - type: WallReinforced - components: - - pos: -29.5,-95.5 - parent: 1 - type: Transform -- uid: 26432 - type: WallReinforced - components: - - pos: -30.5,-95.5 - parent: 1 - type: Transform -- uid: 26433 - type: WallReinforced - components: - - pos: -27.5,-99.5 - parent: 1 - type: Transform -- uid: 26434 - type: WallReinforced - components: - - pos: -28.5,-99.5 - parent: 1 - type: Transform -- uid: 26435 - type: WallReinforced - components: - - pos: -29.5,-99.5 - parent: 1 - type: Transform -- uid: 26436 - type: WallReinforced - components: - - pos: -30.5,-99.5 - parent: 1 - type: Transform -- uid: 26437 - type: ReinforcedWindow - components: - - pos: -23.5,-94.5 - parent: 1 - type: Transform -- uid: 26438 - type: ReinforcedWindow - components: - - pos: -22.5,-94.5 - parent: 1 - type: Transform -- uid: 26439 - type: ReinforcedWindow - components: - - pos: -21.5,-94.5 - parent: 1 - type: Transform -- uid: 26440 - type: ClothingUniformJumpsuitMonasticRobeLight - components: - - pos: -22.894775,-100.24527 - parent: 1 - type: Transform -- uid: 26441 - type: DrinkHippiesDelightGlass - components: - - pos: -22.44165,-100.292145 - parent: 1 - type: Transform -- uid: 26442 - type: Table - components: - - pos: -22.5,-100.5 - parent: 1 - type: Transform -- uid: 26443 - type: WallSolid - components: - - pos: -16.5,-96.5 - parent: 1 - type: Transform -- uid: 26444 - type: WallSolid - components: - - pos: -28.5,-96.5 - parent: 1 - type: Transform -- uid: 26445 - type: SignalSwitch - components: - - pos: -28.5,-96.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 26401 - - port: Open - uid: 26402 - Off: - - port: Close - uid: 26401 - - port: Close - uid: 26402 - type: SignalTransmitter -- uid: 26446 - type: SignalSwitch - components: - - pos: -16.5,-96.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 26403 - - port: Open - uid: 26404 - Off: - - port: Close - uid: 26403 - - port: Close - uid: 26404 - type: SignalTransmitter -- uid: 26447 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -44.5,-85.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26448 - type: WallReinforced - components: - - pos: -13.5,-95.5 - parent: 1 - type: Transform -- uid: 26449 - type: WallSolid - components: - - pos: -13.5,-98.5 - parent: 1 - type: Transform -- uid: 26450 - type: WallSolid - components: - - pos: -13.5,-96.5 - parent: 1 - type: Transform -- uid: 26451 - type: WallReinforced - components: - - pos: -13.5,-99.5 - parent: 1 - type: Transform -- uid: 26452 - type: WallReinforced - components: - - pos: -31.5,-95.5 - parent: 1 - type: Transform -- uid: 26453 - type: WallSolid - components: - - pos: -31.5,-98.5 - parent: 1 - type: Transform -- uid: 26454 - type: WallSolid - components: - - pos: -31.5,-96.5 - parent: 1 - type: Transform -- uid: 26455 - type: WallReinforced - components: - - pos: -31.5,-99.5 - parent: 1 - type: Transform -- uid: 26456 - type: AirlockMaintGlass - components: - - pos: -13.5,-97.5 - parent: 1 - type: Transform -- uid: 26457 - type: AirlockMaintGlass - components: - - pos: -31.5,-97.5 - parent: 1 - type: Transform -- uid: 26458 - type: Grille - components: - - pos: -26.5,-97.5 - parent: 1 - type: Transform -- uid: 26459 - type: Grille - components: - - pos: -18.5,-97.5 - parent: 1 - type: Transform -- uid: 26460 - type: Table - components: - - pos: -14.5,-96.5 - parent: 1 - type: Transform -- uid: 26461 - type: Table - components: - - pos: -15.5,-96.5 - parent: 1 - type: Transform -- uid: 26462 - type: Table - components: - - pos: -30.5,-98.5 - parent: 1 - type: Transform -- uid: 26463 - type: Table - components: - - pos: -29.5,-98.5 - parent: 1 - type: Transform -- uid: 26464 - type: Grille - components: - - pos: -21.5,-94.5 - parent: 1 - type: Transform -- uid: 26465 - type: Grille - components: - - pos: -22.5,-94.5 - parent: 1 - type: Transform -- uid: 26466 - type: Grille - components: - - pos: -23.5,-94.5 - parent: 1 - type: Transform -- uid: 26467 - type: Table - components: - - pos: -21.5,-100.5 - parent: 1 - type: Transform -- uid: 26468 - type: Table - components: - - pos: -23.5,-100.5 - parent: 1 - type: Transform -- uid: 26469 - type: ClothingBeltUtilityFilled - components: - - pos: -21.644775,-100.24527 - parent: 1 - type: Transform -- uid: 26470 - type: WallReinforced - components: - - pos: -10.5,-94.5 - parent: 1 - type: Transform -- uid: 26471 - type: WallReinforced - components: - - pos: -11.5,-94.5 - parent: 1 - type: Transform -- uid: 26472 - type: WallReinforced - components: - - pos: -11.5,-95.5 - parent: 1 - type: Transform -- uid: 26473 - type: WallReinforced - components: - - pos: -12.5,-95.5 - parent: 1 - type: Transform -- uid: 26474 - type: WallReinforced - components: - - pos: -4.5,-94.5 - parent: 1 - type: Transform -- uid: 26475 - type: WallReinforced - components: - - pos: -4.5,-95.5 - parent: 1 - type: Transform -- uid: 26476 - type: WallReinforced - components: - - pos: -3.5,-95.5 - parent: 1 - type: Transform -- uid: 26477 - type: WallReinforced - components: - - pos: -7.5,-101.5 - parent: 1 - type: Transform -- uid: 26478 - type: WallReinforced - components: - - pos: -4.5,-101.5 - parent: 1 - type: Transform -- uid: 26479 - type: WallReinforced - components: - - pos: -4.5,-100.5 - parent: 1 - type: Transform -- uid: 26480 - type: WallReinforced - components: - - pos: -3.5,-100.5 - parent: 1 - type: Transform -- uid: 26481 - type: WallReinforced - components: - - pos: -10.5,-101.5 - parent: 1 - type: Transform -- uid: 26482 - type: WallReinforced - components: - - pos: -10.5,-100.5 - parent: 1 - type: Transform -- uid: 26483 - type: WallReinforced - components: - - pos: -11.5,-100.5 - parent: 1 - type: Transform -- uid: 26484 - type: WallReinforced - components: - - pos: -11.5,-99.5 - parent: 1 - type: Transform -- uid: 26485 - type: WallReinforced - components: - - pos: -12.5,-99.5 - parent: 1 - type: Transform -- uid: 26486 - type: WallReinforced - components: - - pos: -3.5,-96.5 - parent: 1 - type: Transform -- uid: 26487 - type: WallReinforced - components: - - pos: -3.5,-99.5 - parent: 1 - type: Transform -- uid: 26488 - type: ReinforcedWindow - components: - - pos: -9.5,-101.5 - parent: 1 - type: Transform -- uid: 26489 - type: ReinforcedWindow - components: - - pos: -8.5,-101.5 - parent: 1 - type: Transform -- uid: 26490 - type: ReinforcedWindow - components: - - pos: -6.5,-101.5 - parent: 1 - type: Transform -- uid: 26491 - type: ReinforcedWindow - components: - - pos: -5.5,-101.5 - parent: 1 - type: Transform -- uid: 26492 - type: ReinforcedWindow - components: - - pos: -3.5,-97.5 - parent: 1 - type: Transform -- uid: 26493 - type: ReinforcedWindow - components: - - pos: -3.5,-98.5 - parent: 1 - type: Transform -- uid: 26494 - type: Grille - components: - - pos: -3.5,-97.5 - parent: 1 - type: Transform -- uid: 26495 - type: Grille - components: - - pos: -3.5,-98.5 - parent: 1 - type: Transform -- uid: 26496 - type: Grille - components: - - pos: -5.5,-101.5 - parent: 1 - type: Transform -- uid: 26497 - type: Grille - components: - - pos: -6.5,-101.5 - parent: 1 - type: Transform -- uid: 26498 - type: Grille - components: - - pos: -8.5,-101.5 - parent: 1 - type: Transform -- uid: 26499 - type: Grille - components: - - pos: -9.5,-101.5 - parent: 1 - type: Transform -- uid: 26500 - type: CableApcExtension - components: - - pos: -7.5,-94.5 - parent: 1 - type: Transform -- uid: 26501 - type: CableApcExtension - components: - - pos: -7.5,-95.5 - parent: 1 - type: Transform -- uid: 26502 - type: CableApcExtension - components: - - pos: -7.5,-96.5 - parent: 1 - type: Transform -- uid: 26503 - type: CableApcExtension - components: - - pos: -7.5,-97.5 - parent: 1 - type: Transform -- uid: 26504 - type: CableApcExtension - components: - - pos: -8.5,-97.5 - parent: 1 - type: Transform -- uid: 26505 - type: CableApcExtension - components: - - pos: -9.5,-97.5 - parent: 1 - type: Transform -- uid: 26506 - type: CableApcExtension - components: - - pos: -10.5,-97.5 - parent: 1 - type: Transform -- uid: 26507 - type: CableApcExtension - components: - - pos: -11.5,-97.5 - parent: 1 - type: Transform -- uid: 26508 - type: CableApcExtension - components: - - pos: -12.5,-97.5 - parent: 1 - type: Transform -- uid: 26509 - type: CableApcExtension - components: - - pos: -13.5,-97.5 - parent: 1 - type: Transform -- uid: 26510 - type: CableApcExtension - components: - - pos: -14.5,-97.5 - parent: 1 - type: Transform -- uid: 26511 - type: CableApcExtension - components: - - pos: -15.5,-97.5 - parent: 1 - type: Transform -- uid: 26512 - type: CableApcExtension - components: - - pos: -16.5,-97.5 - parent: 1 - type: Transform -- uid: 26513 - type: CableApcExtension - components: - - pos: -17.5,-97.5 - parent: 1 - type: Transform -- uid: 26514 - type: CableApcExtension - components: - - pos: -18.5,-97.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26515 - type: CableApcExtension - components: - - pos: -19.5,-97.5 - parent: 1 - type: Transform -- uid: 26516 - type: CableApcExtension - components: - - pos: -20.5,-97.5 - parent: 1 - type: Transform -- uid: 26517 - type: CableApcExtension - components: - - pos: -20.5,-96.5 - parent: 1 - type: Transform -- uid: 26518 - type: CableApcExtension - components: - - pos: -20.5,-95.5 - parent: 1 - type: Transform -- uid: 26519 - type: CableApcExtension - components: - - pos: -21.5,-95.5 - parent: 1 - type: Transform -- uid: 26520 - type: CableApcExtension - components: - - pos: -22.5,-95.5 - parent: 1 - type: Transform -- uid: 26521 - type: CableApcExtension - components: - - pos: -23.5,-95.5 - parent: 1 - type: Transform -- uid: 26522 - type: CableApcExtension - components: - - pos: -24.5,-95.5 - parent: 1 - type: Transform -- uid: 26523 - type: CableApcExtension - components: - - pos: -24.5,-96.5 - parent: 1 - type: Transform -- uid: 26524 - type: CableApcExtension - components: - - pos: -24.5,-97.5 - parent: 1 - type: Transform -- uid: 26525 - type: CableApcExtension - components: - - pos: -24.5,-98.5 - parent: 1 - type: Transform -- uid: 26526 - type: CableApcExtension - components: - - pos: -24.5,-99.5 - parent: 1 - type: Transform -- uid: 26527 - type: CableApcExtension - components: - - pos: -23.5,-99.5 - parent: 1 - type: Transform -- uid: 26528 - type: CableApcExtension - components: - - pos: -22.5,-99.5 - parent: 1 - type: Transform -- uid: 26529 - type: CableApcExtension - components: - - pos: -21.5,-99.5 - parent: 1 - type: Transform -- uid: 26530 - type: CableApcExtension - components: - - pos: -20.5,-99.5 - parent: 1 - type: Transform -- uid: 26531 - type: CableApcExtension - components: - - pos: -20.5,-98.5 - parent: 1 - type: Transform -- uid: 26532 - type: CableApcExtension - components: - - pos: -15.5,-98.5 - parent: 1 - type: Transform -- uid: 26533 - type: CableApcExtension - components: - - pos: -6.5,-97.5 - parent: 1 - type: Transform -- uid: 26534 - type: CableApcExtension - components: - - pos: -5.5,-97.5 - parent: 1 - type: Transform -- uid: 26535 - type: CableApcExtension - components: - - pos: -4.5,-97.5 - parent: 1 - type: Transform -- uid: 26536 - type: CableApcExtension - components: - - pos: -7.5,-98.5 - parent: 1 - type: Transform -- uid: 26537 - type: CableApcExtension - components: - - pos: -7.5,-99.5 - parent: 1 - type: Transform -- uid: 26538 - type: CableApcExtension - components: - - pos: -7.5,-100.5 - parent: 1 - type: Transform -- uid: 26539 - type: CableApcExtension - components: - - pos: -8.5,-95.5 - parent: 1 - type: Transform -- uid: 26540 - type: WallReinforced - components: - - pos: -39.5,-87.5 - parent: 1 - type: Transform -- uid: 26541 - type: WallReinforced - components: - - pos: -39.5,-88.5 - parent: 1 - type: Transform -- uid: 26542 - type: WallReinforced - components: - - pos: -44.5,-87.5 - parent: 1 - type: Transform -- uid: 26543 - type: WallReinforced - components: - - pos: -44.5,-88.5 - parent: 1 - type: Transform -- uid: 26544 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -44.5,-90.5 - parent: 1 - type: Transform -- uid: 26545 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: -44.5,-89.5 - parent: 1 - type: Transform -- uid: 26546 - type: ReinforcedWindow - components: - - pos: -39.5,-90.5 - parent: 1 - type: Transform -- uid: 26547 - type: ReinforcedWindow - components: - - pos: -39.5,-89.5 - parent: 1 - type: Transform -- uid: 26548 - type: CableApcExtension - components: - - pos: -43.5,-85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26549 - type: CableApcExtension - components: - - pos: -43.5,-86.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26550 - type: CableApcExtension - components: - - pos: -43.5,-87.5 - parent: 1 - type: Transform -- uid: 26551 - type: CableApcExtension - components: - - pos: -43.5,-88.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26552 - type: CableApcExtension - components: - - pos: -43.5,-89.5 - parent: 1 - type: Transform -- uid: 26553 - type: CableApcExtension - components: - - pos: -41.5,-84.5 - parent: 1 - type: Transform -- uid: 26554 - type: CableApcExtension - components: - - pos: -40.5,-84.5 - parent: 1 - type: Transform -- uid: 26555 - type: CableApcExtension - components: - - pos: -40.5,-85.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26556 - type: CableApcExtension - components: - - pos: -40.5,-86.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26557 - type: CableApcExtension - components: - - pos: -40.5,-87.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26558 - type: CableApcExtension - components: - - pos: -40.5,-88.5 - parent: 1 - type: Transform -- uid: 26559 - type: CableApcExtension - components: - - pos: -40.5,-89.5 - parent: 1 - type: Transform -- uid: 26560 - type: CableApcExtension - components: - - pos: -40.5,-90.5 - parent: 1 - type: Transform -- uid: 26561 - type: WallReinforced - components: - - pos: -32.5,-99.5 - parent: 1 - type: Transform -- uid: 26562 - type: WallReinforced - components: - - pos: -33.5,-99.5 - parent: 1 - type: Transform -- uid: 26563 - type: WallReinforced - components: - - pos: -34.5,-99.5 - parent: 1 - type: Transform -- uid: 26564 - type: WallReinforced - components: - - pos: -36.5,-99.5 - parent: 1 - type: Transform -- uid: 26565 - type: WallReinforced - components: - - pos: -38.5,-99.5 - parent: 1 - type: Transform -- uid: 26566 - type: WallReinforced - components: - - pos: -39.5,-99.5 - parent: 1 - type: Transform -- uid: 26567 - type: WallReinforced - components: - - pos: -34.5,-101.5 - parent: 1 - type: Transform -- uid: 26568 - type: WallReinforced - components: - - pos: -36.5,-101.5 - parent: 1 - type: Transform -- uid: 26569 - type: ReinforcedWindow - components: - - pos: -34.5,-100.5 - parent: 1 - type: Transform -- uid: 26570 - type: ReinforcedWindow - components: - - pos: -36.5,-100.5 - parent: 1 - type: Transform -- uid: 26571 - type: AirlockExternalGlassLocked - components: - - pos: -35.5,-99.5 - parent: 1 - type: Transform -- uid: 26572 - type: AirlockExternalGlassLocked - components: - - pos: -35.5,-101.5 - parent: 1 - type: Transform -- uid: 26573 - type: WallReinforced - components: - - pos: -6.5,-94.5 - parent: 1 - type: Transform -- uid: 26574 - type: WallReinforced - components: - - pos: -8.5,-94.5 - parent: 1 - type: Transform -- uid: 26575 - type: GasPipeStraight - components: - - pos: -22.5,-92.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26576 - type: GasPipeStraight - components: - - pos: -22.5,-93.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26577 - type: GasPipeStraight - components: - - pos: -22.5,-94.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26578 - type: GasPipeStraight - components: - - pos: -22.5,-95.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26579 - type: GasPipeStraight - components: - - pos: -20.5,-89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26580 - type: GasPipeStraight - components: - - pos: -20.5,-90.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26581 - type: GasPipeStraight - components: - - pos: -20.5,-91.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26582 - type: GasPipeStraight - components: - - pos: -20.5,-92.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26583 - type: GasPipeStraight - components: - - pos: -20.5,-93.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26584 - type: GasPipeStraight - components: - - pos: -20.5,-94.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26585 - type: GasPipeStraight - components: - - pos: -20.5,-95.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26586 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-96.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26587 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-96.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26588 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -20.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26589 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -22.5,-98.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26590 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -22.5,-97.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26591 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -21.5,-98.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26592 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26593 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26594 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26595 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26596 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26597 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26598 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26599 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26600 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26601 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26602 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-96.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26603 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-96.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26604 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-96.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26605 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-96.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26606 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-96.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26607 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-96.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26608 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-96.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26609 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-96.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26610 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-98.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26611 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-98.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26612 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-98.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26613 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-98.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26614 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-98.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26615 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26616 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26617 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26618 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26619 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26620 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26621 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26622 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26623 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26624 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26625 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-98.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26626 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-98.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26627 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-98.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26628 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-98.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26629 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-98.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26630 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-98.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26631 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-98.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26632 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-98.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26633 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -8.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26634 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: -7.5,-98.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26635 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26636 - type: GasPipeStraight - components: - - pos: -8.5,-96.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26637 - type: GasPipeStraight - components: - - pos: -8.5,-95.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26638 - type: GasPipeStraight - components: - - pos: -8.5,-94.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26639 - type: GasPipeStraight - components: - - pos: -8.5,-93.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26640 - type: GasPipeStraight - components: - - pos: -8.5,-92.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26641 - type: GasPipeStraight - components: - - pos: -7.5,-97.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26642 - type: GasPipeStraight - components: - - pos: -7.5,-96.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26643 - type: GasPipeStraight - components: - - pos: -7.5,-95.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26644 - type: GasPipeStraight - components: - - pos: -7.5,-94.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26645 - type: GasVentScrubber - components: - - pos: -7.5,-92.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26646 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-91.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26647 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-91.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26648 - type: GasPipeStraight - components: - - pos: -8.5,-90.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26649 - type: GasPipeStraight - components: - - pos: -8.5,-89.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26650 - type: GasPipeStraight - components: - - pos: -8.5,-88.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26651 - type: GasPipeStraight - components: - - pos: -8.5,-87.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26652 - type: GasPipeStraight - components: - - pos: -8.5,-86.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26653 - type: GasPipeStraight - components: - - pos: -8.5,-85.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26654 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-89.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26655 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-90.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26656 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-92.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26657 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-93.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26658 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-93.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26659 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-96.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26660 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26661 - type: GasVentScrubber - components: - - pos: -21.5,-97.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26662 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-98.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26663 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-88.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26664 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-87.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26665 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-86.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26666 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -6.5,-85.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26667 - type: GasVentScrubber - components: - - pos: -6.5,-84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26668 - type: GasVentPump - components: - - pos: -8.5,-84.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26669 - type: SignalSwitch - components: - - rot: 3.141592653589793 rad - pos: -5.5,-89.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 26289 - - port: Open - uid: 26278 - - port: Open - uid: 26279 - - port: Open - uid: 26285 - - port: Open - uid: 26280 - - port: Open - uid: 26284 - - port: Open - uid: 26287 - - port: Open - uid: 26288 - Off: - - port: Close - uid: 26289 - - port: Close - uid: 26278 - - port: Close - uid: 26279 - - port: Close - uid: 26285 - - port: Close - uid: 26280 - - port: Close - uid: 26284 - - port: Close - uid: 26287 - - port: Close - uid: 26288 - type: SignalTransmitter -- uid: 26670 - type: AirlockExternalGlass - components: - - pos: -7.5,-94.5 - parent: 1 - type: Transform -- uid: 26671 - type: AirlockExternalGlass - components: - - pos: -7.5,-89.5 - parent: 1 - type: Transform -- uid: 26672 - type: SignalSwitch - components: - - pos: -8.5,-94.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 26289 - - port: Open - uid: 26278 - - port: Open - uid: 26279 - - port: Open - uid: 26280 - - port: Open - uid: 26285 - - port: Open - uid: 26284 - - port: Open - uid: 26287 - - port: Open - uid: 26288 - Off: - - port: Close - uid: 26289 - - port: Close - uid: 26278 - - port: Close - uid: 26279 - - port: Close - uid: 26280 - - port: Close - uid: 26285 - - port: Close - uid: 26284 - - port: Close - uid: 26287 - - port: Close - uid: 26288 - type: SignalTransmitter -- uid: 26673 - type: Firelock - components: - - pos: -8.5,-76.5 - parent: 1 - type: Transform -- uid: 26674 - type: Firelock - components: - - pos: -13.5,-97.5 - parent: 1 - type: Transform -- uid: 26675 - type: Catwalk - components: - - pos: 1.5,-92.5 - parent: 1 - type: Transform -- uid: 26676 - type: Catwalk - components: - - pos: 0.5,-92.5 - parent: 1 - type: Transform -- uid: 26677 - type: Catwalk - components: - - pos: -0.5,-92.5 - parent: 1 - type: Transform -- uid: 26678 - type: Catwalk - components: - - pos: -0.5,-93.5 - parent: 1 - type: Transform -- uid: 26679 - type: Catwalk - components: - - pos: -0.5,-94.5 - parent: 1 - type: Transform -- uid: 26680 - type: Catwalk - components: - - pos: -0.5,-95.5 - parent: 1 - type: Transform -- uid: 26681 - type: Catwalk - components: - - pos: -0.5,-96.5 - parent: 1 - type: Transform -- uid: 26682 - type: Catwalk - components: - - pos: -0.5,-97.5 - parent: 1 - type: Transform -- uid: 26683 - type: Catwalk - components: - - pos: -0.5,-98.5 - parent: 1 - type: Transform -- uid: 26684 - type: Catwalk - components: - - pos: -0.5,-99.5 - parent: 1 - type: Transform -- uid: 26685 - type: Catwalk - components: - - pos: -0.5,-100.5 - parent: 1 - type: Transform -- uid: 26686 - type: Catwalk - components: - - pos: -0.5,-101.5 - parent: 1 - type: Transform -- uid: 26687 - type: Catwalk - components: - - pos: -0.5,-102.5 - parent: 1 - type: Transform -- uid: 26688 - type: Catwalk - components: - - pos: -0.5,-103.5 - parent: 1 - type: Transform -- uid: 26689 - type: Catwalk - components: - - pos: -0.5,-104.5 - parent: 1 - type: Transform -- uid: 26690 - type: Catwalk - components: - - pos: -0.5,-105.5 - parent: 1 - type: Transform -- uid: 26691 - type: Catwalk - components: - - pos: -28.5,-105.5 - parent: 1 - type: Transform -- uid: 26692 - type: Catwalk - components: - - pos: -29.5,-105.5 - parent: 1 - type: Transform -- uid: 26693 - type: Catwalk - components: - - pos: -30.5,-105.5 - parent: 1 - type: Transform -- uid: 26694 - type: Catwalk - components: - - pos: -31.5,-105.5 - parent: 1 - type: Transform -- uid: 26695 - type: Catwalk - components: - - pos: -32.5,-105.5 - parent: 1 - type: Transform -- uid: 26696 - type: Catwalk - components: - - pos: -33.5,-105.5 - parent: 1 - type: Transform -- uid: 26697 - type: Catwalk - components: - - pos: -34.5,-105.5 - parent: 1 - type: Transform -- uid: 26698 - type: Catwalk - components: - - pos: -35.5,-105.5 - parent: 1 - type: Transform -- uid: 26699 - type: Catwalk - components: - - pos: -1.5,-105.5 - parent: 1 - type: Transform -- uid: 26700 - type: Catwalk - components: - - pos: -2.5,-105.5 - parent: 1 - type: Transform -- uid: 26701 - type: Catwalk - components: - - pos: -3.5,-105.5 - parent: 1 - type: Transform -- uid: 26702 - type: Catwalk - components: - - pos: -4.5,-105.5 - parent: 1 - type: Transform -- uid: 26703 - type: Catwalk - components: - - pos: -5.5,-105.5 - parent: 1 - type: Transform -- uid: 26704 - type: Catwalk - components: - - pos: -6.5,-105.5 - parent: 1 - type: Transform -- uid: 26705 - type: Catwalk - components: - - pos: -7.5,-105.5 - parent: 1 - type: Transform -- uid: 26706 - type: Catwalk - components: - - pos: -8.5,-105.5 - parent: 1 - type: Transform -- uid: 26707 - type: Catwalk - components: - - pos: -9.5,-105.5 - parent: 1 - type: Transform -- uid: 26708 - type: Catwalk - components: - - pos: -10.5,-105.5 - parent: 1 - type: Transform -- uid: 26709 - type: Catwalk - components: - - pos: -11.5,-105.5 - parent: 1 - type: Transform -- uid: 26710 - type: Catwalk - components: - - pos: -12.5,-105.5 - parent: 1 - type: Transform -- uid: 26711 - type: Catwalk - components: - - pos: -13.5,-105.5 - parent: 1 - type: Transform -- uid: 26712 - type: Catwalk - components: - - pos: -14.5,-105.5 - parent: 1 - type: Transform -- uid: 26713 - type: Catwalk - components: - - pos: -15.5,-105.5 - parent: 1 - type: Transform -- uid: 26714 - type: Catwalk - components: - - pos: -16.5,-105.5 - parent: 1 - type: Transform -- uid: 26715 - type: Catwalk - components: - - pos: -17.5,-105.5 - parent: 1 - type: Transform -- uid: 26716 - type: Catwalk - components: - - pos: -18.5,-105.5 - parent: 1 - type: Transform -- uid: 26717 - type: Catwalk - components: - - pos: -19.5,-105.5 - parent: 1 - type: Transform -- uid: 26718 - type: Catwalk - components: - - pos: -20.5,-105.5 - parent: 1 - type: Transform -- uid: 26719 - type: Catwalk - components: - - pos: -21.5,-105.5 - parent: 1 - type: Transform -- uid: 26720 - type: Catwalk - components: - - pos: -22.5,-105.5 - parent: 1 - type: Transform -- uid: 26721 - type: Catwalk - components: - - pos: -23.5,-105.5 - parent: 1 - type: Transform -- uid: 26722 - type: Catwalk - components: - - pos: -24.5,-105.5 - parent: 1 - type: Transform -- uid: 26723 - type: Catwalk - components: - - pos: -25.5,-105.5 - parent: 1 - type: Transform -- uid: 26724 - type: Catwalk - components: - - pos: -26.5,-105.5 - parent: 1 - type: Transform -- uid: 26725 - type: Catwalk - components: - - pos: -27.5,-105.5 - parent: 1 - type: Transform -- uid: 26726 - type: Catwalk - components: - - pos: -35.5,-104.5 - parent: 1 - type: Transform -- uid: 26727 - type: Catwalk - components: - - pos: -35.5,-103.5 - parent: 1 - type: Transform -- uid: 26728 - type: Catwalk - components: - - pos: -35.5,-102.5 - parent: 1 - type: Transform -- uid: 26729 - type: WallReinforced - components: - - pos: 66.5,-15.5 - parent: 1 - type: Transform -- uid: 26730 - type: WallReinforced - components: - - pos: 66.5,-16.5 - parent: 1 - type: Transform -- uid: 26731 - type: AirlockExternalGlass - components: - - pos: 67.5,-14.5 - parent: 1 - type: Transform -- uid: 26732 - type: AirlockExternalGlassLocked - components: - - pos: 67.5,-16.5 - parent: 1 - type: Transform -- uid: 26733 - type: Catwalk - components: - - pos: 67.5,-17.5 - parent: 1 - type: Transform -- uid: 26734 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -44.5,-89.5 - parent: 1 - type: Transform -- uid: 26735 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -44.5,-90.5 - parent: 1 - type: Transform -- uid: 26736 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-87.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26737 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-90.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26738 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-89.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26739 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: 28.5,30.5 - parent: 1 - type: Transform -- uid: 26740 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-89.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26741 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-90.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26742 - type: ComputerFrame - components: - - pos: -29.5,-96.5 - parent: 1 - type: Transform -- uid: 26743 - type: Multitool - components: - - pos: -29.3818,-98.32888 - parent: 1 - type: Transform - - devices: - 'UID: 39451': 26766 - 'UID: 39450': 26765 - 'UID: 39636': 26940 - type: NetworkConfigurator -- uid: 26744 - type: CableApcStack1 - components: - - pos: -14.8449135,-96.398895 - parent: 1 - type: Transform -- uid: 26745 - type: CableApcExtension - components: - - pos: -25.5,-97.5 - parent: 1 - type: Transform -- uid: 26746 - type: CableApcExtension - components: - - pos: -26.5,-97.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26747 - type: Grille - components: - - pos: -36.5,-100.5 - parent: 1 - type: Transform -- uid: 26748 - type: Grille - components: - - pos: -21.5,-101.5 - parent: 1 - type: Transform -- uid: 26749 - type: TableWood - components: - - pos: -22.5,-97.5 - parent: 1 - type: Transform -- uid: 26750 - type: TableWood - components: - - pos: -22.5,-98.5 - parent: 1 - type: Transform -- uid: 26751 - type: Grille - components: - - pos: -34.5,-100.5 - parent: 1 - type: Transform -- uid: 26752 - type: Table - components: - - pos: -10.5,-83.5 - parent: 1 - type: Transform -- uid: 26753 - type: Table - components: - - pos: -4.5,-85.5 - parent: 1 - type: Transform -- uid: 26754 - type: Table - components: - - pos: -12.5,-84.5 - parent: 1 - type: Transform -- uid: 26755 - type: Table - components: - - pos: -13.5,-88.5 - parent: 1 - type: Transform -- uid: 26756 - type: WallReinforced - components: - - pos: -39.5,-91.5 - parent: 1 - type: Transform -- uid: 26757 - type: WallReinforced - components: - - pos: -44.5,-91.5 - parent: 1 - type: Transform -- uid: 26758 - type: BriefcaseBrown - components: - - pos: -43.482876,-88.91509 - parent: 1 - type: Transform -- uid: 26759 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-96.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 26760 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -31.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26761 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-96.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26762 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26763 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-96.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26764 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26765 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-96.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26766 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-97.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 26767 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -32.5,-95.5 - parent: 1 - type: Transform -- uid: 26768 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -33.5,-95.5 - parent: 1 - type: Transform -- uid: 26769 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-95.5 - parent: 1 - type: Transform -- uid: 26770 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-94.5 - parent: 1 - type: Transform -- uid: 26771 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-93.5 - parent: 1 - type: Transform -- uid: 26772 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -34.5,-92.5 - parent: 1 - type: Transform -- uid: 26773 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -35.5,-92.5 - parent: 1 - type: Transform -- uid: 26774 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -36.5,-92.5 - parent: 1 - type: Transform -- uid: 26775 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -37.5,-92.5 - parent: 1 - type: Transform -- uid: 26776 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-92.5 - parent: 1 - type: Transform -- uid: 26777 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-92.5 - parent: 1 - type: Transform -- uid: 26778 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-98.5 - parent: 1 - type: Transform -- uid: 26779 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-98.5 - parent: 1 - type: Transform -- uid: 26780 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-95.5 - parent: 1 - type: Transform -- uid: 26781 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-96.5 - parent: 1 - type: Transform -- uid: 26782 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-98.5 - parent: 1 - type: Transform -- uid: 26783 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-89.5 - parent: 1 - type: Transform -- uid: 26784 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-98.5 - parent: 1 - type: Transform -- uid: 26785 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-97.5 - parent: 1 - type: Transform -- uid: 26786 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-98.5 - parent: 1 - type: Transform -- uid: 26787 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-94.5 - parent: 1 - type: Transform -- uid: 26788 - type: WallSolid - components: - - pos: -43.5,-93.5 - parent: 1 - type: Transform -- uid: 26789 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-93.5 - parent: 1 - type: Transform -- uid: 26790 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-92.5 - parent: 1 - type: Transform -- uid: 26791 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-93.5 - parent: 1 - type: Transform -- uid: 26792 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-93.5 - parent: 1 - type: Transform -- uid: 26793 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -39.5,-90.5 - parent: 1 - type: Transform -- uid: 26794 - type: PottedPlant29 - components: - - pos: -40.5,-87.5 - parent: 1 - type: Transform -- uid: 26795 - type: PottedPlant27 - components: - - pos: -43.5,-87.5 - parent: 1 - type: Transform -- uid: 26796 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-98.5 - parent: 1 - type: Transform -- uid: 26797 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-95.5 - parent: 1 - type: Transform -- uid: 26798 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -44.5,-96.5 - parent: 1 - type: Transform -- uid: 26799 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-98.5 - parent: 1 - type: Transform -- uid: 26800 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-98.5 - parent: 1 - type: Transform -- uid: 26801 - type: AirlockMaintGlass - components: - - rot: 1.5707963267948966 rad - pos: -42.5,-93.5 - parent: 1 - type: Transform -- uid: 26802 - type: AirlockMaintLocked - components: - - rot: 1.5707963267948966 rad - pos: -41.5,-93.5 - parent: 1 - type: Transform -- uid: 26803 - type: CableApcExtension - components: - - pos: -40.5,-91.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26804 - type: CableApcExtension - components: - - pos: -43.5,-91.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26805 - type: CableApcExtension - components: - - pos: -43.5,-92.5 - parent: 1 - type: Transform -- uid: 26806 - type: CableApcExtension - components: - - pos: -42.5,-92.5 - parent: 1 - type: Transform -- uid: 26807 - type: CableApcExtension - components: - - pos: -40.5,-92.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26808 - type: CableApcExtension - components: - - pos: -41.5,-92.5 - parent: 1 - type: Transform -- uid: 26809 - type: CableApcExtension - components: - - pos: -41.5,-93.5 - parent: 1 - type: Transform -- uid: 26810 - type: CableApcExtension - components: - - pos: -41.5,-94.5 - parent: 1 - type: Transform -- uid: 26811 - type: CableApcExtension - components: - - pos: -41.5,-95.5 - parent: 1 - type: Transform -- uid: 26812 - type: CableApcExtension - components: - - pos: -42.5,-95.5 - parent: 1 - type: Transform -- uid: 26813 - type: CableApcExtension - components: - - pos: -43.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26814 - type: CableApcExtension - components: - - pos: -43.5,-96.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26815 - type: CableApcExtension - components: - - pos: -43.5,-97.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26816 - type: CableApcExtension - components: - - pos: -42.5,-97.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26817 - type: CableApcExtension - components: - - pos: -41.5,-97.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26818 - type: CableApcExtension - components: - - pos: -40.5,-97.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26819 - type: CableApcExtension - components: - - pos: -39.5,-97.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26820 - type: CableApcExtension - components: - - pos: -38.5,-97.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26821 - type: CableApcExtension - components: - - pos: -37.5,-97.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26822 - type: CableApcExtension - components: - - pos: -36.5,-97.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26823 - type: CableApcExtension - components: - - pos: -35.5,-97.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26824 - type: CableApcExtension - components: - - pos: -40.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26825 - type: CableApcExtension - components: - - pos: -39.5,-95.5 - parent: 1 - type: Transform -- uid: 26826 - type: CableApcExtension - components: - - pos: -38.5,-95.5 - parent: 1 - type: Transform -- uid: 26827 - type: CableApcExtension - components: - - pos: -37.5,-95.5 - parent: 1 - type: Transform -- uid: 26828 - type: CableApcExtension - components: - - pos: -36.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26829 - type: CableApcExtension - components: - - pos: -35.5,-95.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26830 - type: CableApcExtension - components: - - pos: -35.5,-96.5 - parent: 1 - type: Transform -- uid: 26831 - type: CableApcExtension - components: - - pos: -34.5,-97.5 - parent: 1 - type: Transform -- uid: 26832 - type: CableApcExtension - components: - - pos: -33.5,-97.5 - parent: 1 - type: Transform -- uid: 26833 - type: CableApcExtension - components: - - pos: -32.5,-97.5 - parent: 1 - type: Transform -- uid: 26834 - type: CableApcExtension - components: - - pos: -31.5,-97.5 - parent: 1 - type: Transform -- uid: 26835 - type: CableApcExtension - components: - - pos: -30.5,-97.5 - parent: 1 - type: Transform -- uid: 26836 - type: CableApcExtension - components: - - pos: -29.5,-97.5 - parent: 1 - type: Transform -- uid: 26837 - type: CableApcExtension - components: - - pos: -28.5,-97.5 - parent: 1 - type: Transform -- uid: 26838 - type: CableApcExtension - components: - - pos: -43.5,-90.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26839 - type: CableApcExtension - components: - - pos: -35.5,-98.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26840 - type: CableApcExtension - components: - - pos: -35.5,-99.5 - parent: 1 - type: Transform -- uid: 26841 - type: CableApcExtension - components: - - pos: -35.5,-100.5 - parent: 1 - type: Transform -- uid: 26842 - type: PoweredlightEmpty - components: - - rot: 3.141592653589793 rad - pos: -40.5,-92.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26843 - type: ClosetMaintenanceFilledRandom - components: - - pos: -43.5,-94.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26844 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -39.5,-94.5 - parent: 1 - type: Transform -- uid: 26845 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -39.5,-97.5 - parent: 1 - type: Transform -- uid: 26846 - type: Chair - components: - - pos: -42.5,-97.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26847 - type: ChairWood - components: - - pos: -41.5,-97.5 - parent: 1 - type: Transform -- uid: 26848 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -35.5,-95.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26849 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -7.5,-100.5 - parent: 1 - type: Transform -- uid: 26850 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: -6.5,-100.5 - parent: 1 - type: Transform -- uid: 26851 - type: TableReinforced - components: - - rot: 3.141592653589793 rad - pos: -9.5,-100.5 - parent: 1 - type: Transform -- uid: 26852 - type: TableCounterWood - components: - - rot: 3.141592653589793 rad - pos: -10.5,-95.5 - parent: 1 - type: Transform -- uid: 26853 - type: TableCounterWood - components: - - rot: 3.141592653589793 rad - pos: -9.5,-95.5 - parent: 1 - type: Transform -- uid: 26854 - type: LockerFreezer - components: - - pos: -5.5,-95.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26855 - type: MonkeyCube - components: - - rot: -1.5707963267948966 rad - pos: -10.530531,-95.43873 - parent: 1 - type: Transform -- uid: 26856 - type: SinkStemlessWater - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-96.5 - parent: 1 - type: Transform -- uid: 26857 - type: FloorTileItemFreezer - components: - - pos: -9.469288,-100.35687 - parent: 1 - type: Transform - - count: 5 - type: Stack -- uid: 26858 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-97.5 - parent: 1 - type: Transform -- uid: 26859 - type: FloorTileItemLaundry - components: - - pos: -9.484913,-95.4242 - parent: 1 - type: Transform - - count: 6 - type: Stack -- uid: 26860 - type: FloorTileItemWhite - components: - - pos: -10.013714,-95.45264 - parent: 1 - type: Transform - - count: 6 - type: Stack -- uid: 26861 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-98.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26862 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-99.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26863 - type: PottedPlantRandomPlastic - components: - - pos: -12.5,-96.5 - parent: 1 - type: Transform -- uid: 26864 - type: TableWood - components: - - pos: -22.5,-96.5 - parent: 1 - type: Transform -- uid: 26865 - type: ClothingHandsGlovesLatex - components: - - pos: -5.563123,-96.94655 - parent: 1 - type: Transform -- uid: 26866 - type: ToolboxElectricalFilled - components: - - pos: -12.493107,-98.55707 - parent: 1 - type: Transform -- uid: 26867 - type: ClosetFireFilled - components: - - pos: -35.5,-93.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26868 - type: DisposalTrunk - components: - - pos: -37.5,-93.5 - parent: 1 - type: Transform -- uid: 26869 - type: DisposalPipe - components: - - pos: -37.5,-94.5 - parent: 1 - type: Transform -- uid: 26870 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -39.5,-95.5 - parent: 1 - type: Transform -- uid: 26871 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-95.5 - parent: 1 - type: Transform -- uid: 26872 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -41.5,-94.5 - parent: 1 - type: Transform -- uid: 26873 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -41.5,-93.5 - parent: 1 - type: Transform -- uid: 26874 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -41.5,-92.5 - parent: 1 - type: Transform -- uid: 26875 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -41.5,-91.5 - parent: 1 - type: Transform -- uid: 26876 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -41.5,-90.5 - parent: 1 - type: Transform -- uid: 26877 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -41.5,-89.5 - parent: 1 - type: Transform -- uid: 26878 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -41.5,-88.5 - parent: 1 - type: Transform -- uid: 26879 - type: StoolBar - components: - - pos: -30.5,-96.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26880 - type: PoweredlightSodium - components: - - pos: -20.5,-95.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26881 - type: PoweredlightSodium - components: - - rot: 3.141592653589793 rad - pos: -7.5,-100.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26882 - type: PoweredlightEmpty - components: - - rot: 3.141592653589793 rad - pos: -40.5,-97.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26883 - type: PoweredlightEmpty - components: - - rot: 3.141592653589793 rad - pos: -28.5,-98.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26884 - type: PoweredlightEmpty - components: - - rot: 3.141592653589793 rad - pos: -16.5,-98.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 26885 - type: ComfyChair - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-97.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26886 - type: Grille - components: - - pos: -23.5,-101.5 - parent: 1 - type: Transform -- uid: 26887 - type: Grille - components: - - pos: -22.5,-101.5 - parent: 1 - type: Transform -- uid: 26888 - type: ClosetEmergencyFilledRandom - components: - - pos: -36.5,-93.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 26889 - type: PlasticFlapsAirtightOpaque - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-99.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26890 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -37.5,-99.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 26908 - - port: Right - uid: 26909 - Forward: - - port: Left - uid: 26908 - - port: Left - uid: 26909 - Off: - - port: Middle - uid: 26908 - - port: Middle - uid: 26909 - type: SignalReceiver -- uid: 26891 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -37.5,-98.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 26908 - - port: Right - uid: 26909 - Forward: - - port: Left - uid: 26908 - - port: Left - uid: 26909 - Off: - - port: Middle - uid: 26908 - - port: Middle - uid: 26909 - type: SignalReceiver -- uid: 26892 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -37.5,-100.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 26908 - - port: Right - uid: 26909 - Forward: - - port: Left - uid: 26908 - - port: Left - uid: 26909 - Off: - - port: Middle - uid: 26908 - - port: Middle - uid: 26909 - type: SignalReceiver -- uid: 26893 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -37.5,-101.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 26908 - - port: Right - uid: 26909 - Forward: - - port: Left - uid: 26908 - - port: Left - uid: 26909 - Off: - - port: Middle - uid: 26908 - - port: Middle - uid: 26909 - type: SignalReceiver -- uid: 26894 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -37.5,-102.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 26908 - - port: Right - uid: 26909 - Forward: - - port: Left - uid: 26908 - - port: Left - uid: 26909 - Off: - - port: Middle - uid: 26908 - - port: Middle - uid: 26909 - type: SignalReceiver -- uid: 26895 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -37.5,-103.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 26908 - - port: Right - uid: 26909 - Forward: - - port: Left - uid: 26908 - - port: Left - uid: 26909 - Off: - - port: Middle - uid: 26908 - - port: Middle - uid: 26909 - type: SignalReceiver -- uid: 26896 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -37.5,-104.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 26908 - - port: Right - uid: 26909 - Forward: - - port: Left - uid: 26908 - - port: Left - uid: 26909 - Off: - - port: Middle - uid: 26908 - - port: Middle - uid: 26909 - type: SignalReceiver -- uid: 26897 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -37.5,-105.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 26908 - - port: Right - uid: 26909 - Forward: - - port: Left - uid: 26908 - - port: Left - uid: 26909 - Off: - - port: Middle - uid: 26908 - - port: Middle - uid: 26909 - type: SignalReceiver -- uid: 26898 - type: ConveyorBelt - components: - - rot: -1.5707963267948966 rad - pos: -36.5,-105.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 26908 - - port: Right - uid: 26909 - Forward: - - port: Left - uid: 26908 - - port: Left - uid: 26909 - Off: - - port: Middle - uid: 26908 - - port: Middle - uid: 26909 - type: SignalReceiver -- uid: 26899 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -38.5,-105.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 26908 - - port: Right - uid: 26909 - Forward: - - port: Left - uid: 26908 - - port: Left - uid: 26909 - Off: - - port: Middle - uid: 26908 - - port: Middle - uid: 26909 - type: SignalReceiver -- uid: 26900 - type: ConveyorBelt - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-104.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 26908 - - port: Right - uid: 26909 - Forward: - - port: Left - uid: 26908 - - port: Left - uid: 26909 - Off: - - port: Middle - uid: 26908 - - port: Middle - uid: 26909 - type: SignalReceiver -- uid: 26901 - type: CableApcExtension - components: - - pos: -35.5,-100.5 - parent: 1 - type: Transform -- uid: 26902 - type: CableApcExtension - components: - - pos: -35.5,-99.5 - parent: 1 - type: Transform -- uid: 26903 - type: CableApcExtension - components: - - pos: -35.5,-102.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26904 - type: CableApcExtension - components: - - pos: -35.5,-103.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26905 - type: CableApcExtension - components: - - pos: -35.5,-104.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26906 - type: CableApcExtension - components: - - pos: -35.5,-105.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26907 - type: CableApcExtension - components: - - pos: -36.5,-104.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26908 - type: TwoWayLever - components: - - pos: -36.5,-98.5 - parent: 1 - type: Transform - - outputs: - Left: - - port: Forward - uid: 26891 - - port: Forward - uid: 26890 - - port: Forward - uid: 26892 - - port: Forward - uid: 26893 - - port: Forward - uid: 26894 - - port: Forward - uid: 26895 - - port: Forward - uid: 26896 - - port: Forward - uid: 26900 - - port: Forward - uid: 26899 - - port: Forward - uid: 26897 - - port: Forward - uid: 26898 - Right: - - port: Reverse - uid: 26891 - - port: Reverse - uid: 26890 - - port: Reverse - uid: 26892 - - port: Reverse - uid: 26893 - - port: Reverse - uid: 26894 - - port: Reverse - uid: 26895 - - port: Reverse - uid: 26896 - - port: Reverse - uid: 26900 - - port: Reverse - uid: 26899 - - port: Reverse - uid: 26897 - - port: Reverse - uid: 26898 - Middle: - - port: Off - uid: 26891 - - port: Off - uid: 26890 - - port: Off - uid: 26892 - - port: Off - uid: 26893 - - port: Off - uid: 26894 - - port: Off - uid: 26895 - - port: Off - uid: 26896 - - port: Off - uid: 26900 - - port: Off - uid: 26899 - - port: Off - uid: 26897 - - port: Off - uid: 26898 - type: SignalTransmitter -- uid: 26909 - type: TwoWayLever - components: - - pos: -36.5,-104.5 - parent: 1 - type: Transform - - outputs: - Left: - - port: Forward - uid: 26898 - - port: Forward - uid: 26897 - - port: Forward - uid: 26899 - - port: Forward - uid: 26900 - - port: Forward - uid: 26896 - - port: Forward - uid: 26895 - - port: Forward - uid: 26894 - - port: Forward - uid: 26893 - - port: Forward - uid: 26892 - - port: Forward - uid: 26890 - - port: Forward - uid: 26891 - Right: - - port: Reverse - uid: 26898 - - port: Reverse - uid: 26897 - - port: Reverse - uid: 26899 - - port: Reverse - uid: 26900 - - port: Reverse - uid: 26896 - - port: Reverse - uid: 26895 - - port: Reverse - uid: 26894 - - port: Reverse - uid: 26893 - - port: Reverse - uid: 26892 - - port: Reverse - uid: 26890 - - port: Reverse - uid: 26891 - Middle: - - port: Off - uid: 26898 - - port: Off - uid: 26897 - - port: Off - uid: 26899 - - port: Off - uid: 26900 - - port: Off - uid: 26896 - - port: Off - uid: 26895 - - port: Off - uid: 26894 - - port: Off - uid: 26893 - - port: Off - uid: 26892 - - port: Off - uid: 26890 - - port: Off - uid: 26891 - type: SignalTransmitter -- uid: 26910 - type: Table - components: - - pos: -38.5,-97.5 - parent: 1 - type: Transform -- uid: 26911 - type: Table - components: - - pos: -38.5,-98.5 - parent: 1 - type: Transform -- uid: 26912 - type: InflatableWallStack1 - components: - - pos: -38.56672,-98.45029 - parent: 1 - type: Transform -- uid: 26913 - type: CrateEmptySpawner - components: - - pos: -35.5,-96.5 - parent: 1 - type: Transform -- uid: 26914 - type: CrateEmptySpawner - components: - - pos: -36.5,-96.5 - parent: 1 - type: Transform -- uid: 26915 - type: RandomSpawner - components: - - pos: -23.5,-98.5 - parent: 1 - type: Transform -- uid: 26916 - type: RandomSpawner - components: - - pos: -33.5,-97.5 - parent: 1 - type: Transform -- uid: 26917 - type: RandomSpawner - components: - - pos: -41.5,-89.5 - parent: 1 - type: Transform -- uid: 26918 - type: RandomSpawner - components: - - pos: -43.5,-91.5 - parent: 1 - type: Transform -- uid: 26919 - type: RandomSpawner - components: - - pos: -10.5,-97.5 - parent: 1 - type: Transform -- uid: 26920 - type: RandomSpawner - components: - - pos: -8.5,-85.5 - parent: 1 - type: Transform -- uid: 26921 - type: ChairFolding - components: - - pos: -24.5,-95.5 - parent: 1 - type: Transform -- uid: 26922 - type: ChairFolding - components: - - pos: -25.5,-95.5 - parent: 1 - type: Transform -- uid: 26923 - type: ChairFolding - components: - - pos: -19.5,-95.5 - parent: 1 - type: Transform -- uid: 26924 - type: DisposalMachineFrame - components: - - pos: -19.5,-99.5 - parent: 1 - type: Transform -- uid: 26925 - type: TableFrame - components: - - pos: -25.5,-99.5 - parent: 1 - type: Transform -- uid: 26926 - type: TableFrame - components: - - pos: -33.5,-98.5 - parent: 1 - type: Transform -- uid: 26927 - type: TableFrame - components: - - pos: -34.5,-98.5 - parent: 1 - type: Transform -- uid: 26928 - type: MaterialWoodPlank - components: - - pos: -32.447933,-98.42257 - parent: 1 - type: Transform -- uid: 26929 - type: WindowReinforcedDirectional - components: - - pos: 16.5,37.5 - parent: 1 - type: Transform -- uid: 26930 - type: CableApcExtension - components: - - pos: 37.5,-48.5 - parent: 1 - type: Transform -- uid: 26931 - type: CableApcExtension - components: - - pos: 36.5,-48.5 - parent: 1 - type: Transform -- uid: 26932 - type: CableApcExtension - components: - - pos: 36.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26933 - type: CableApcExtension - components: - - pos: 36.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26934 - type: WoodDoor - components: - - pos: -39.5,-95.5 - parent: 1 - type: Transform -- uid: 26935 - type: WoodDoor - components: - - pos: -39.5,-96.5 - parent: 1 - type: Transform -- uid: 26936 - type: FirelockGlass - components: - - pos: -42.5,-86.5 - parent: 1 - type: Transform -- uid: 26937 - type: FirelockGlass - components: - - pos: -41.5,-86.5 - parent: 1 - type: Transform -- uid: 26938 - type: FirelockGlass - components: - - pos: -31.5,-97.5 - parent: 1 - type: Transform -- uid: 26939 - type: AirAlarm - components: - - pos: -33.5,-95.5 - parent: 1 - type: Transform - - devices: - - 26766 - - 26765 - - 26940 - type: DeviceList -- uid: 26940 - type: AirSensor - components: - - pos: -33.5,-96.5 - parent: 1 - type: Transform -- uid: 26941 - type: WallReinforced - components: - - pos: -20.5,-101.5 - parent: 1 - type: Transform -- uid: 26942 - type: WallReinforced - components: - - pos: -24.5,-101.5 - parent: 1 - type: Transform -- uid: 26943 - type: ReinforcedWindow - components: - - pos: -23.5,-101.5 - parent: 1 - type: Transform -- uid: 26944 - type: ReinforcedWindow - components: - - pos: -22.5,-101.5 - parent: 1 - type: Transform -- uid: 26945 - type: ReinforcedWindow - components: - - pos: -21.5,-101.5 - parent: 1 - type: Transform -- uid: 26946 - type: BoxLightMixed - components: - - pos: -23.56665,-100.24527 - parent: 1 - type: Transform -- uid: 26947 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-97.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 26948 - type: PaperBin10 - components: - - pos: -22.48288,-97.58025 - parent: 1 - type: Transform -- uid: 26949 - type: LampGold - components: - - rot: 1.5707963267948966 rad - pos: -22.520432,-96.69095 - parent: 1 - type: Transform -- uid: 26950 - type: SMESBasic - components: - - pos: -0.5,-78.5 - parent: 1 - type: Transform -- uid: 26951 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: -0.5,-79.5 - parent: 1 - type: Transform -- uid: 26952 - type: CableApcExtension - components: - - pos: -71.5,-31.5 - parent: 1 - type: Transform -- uid: 26953 - type: SMESBasic - components: - - pos: -70.5,-30.5 - parent: 1 - type: Transform -- uid: 26954 - type: SMESBasic - components: - - pos: -74.5,-30.5 - parent: 1 - type: Transform -- uid: 26955 - type: WallReinforced - components: - - pos: -75.5,-28.5 - parent: 1 - type: Transform -- uid: 26956 - type: WallReinforced - components: - - pos: -75.5,-29.5 - parent: 1 - type: Transform -- uid: 26957 - type: WallReinforced - components: - - pos: -75.5,-30.5 - parent: 1 - type: Transform -- uid: 26958 - type: WallReinforced - components: - - pos: -75.5,-31.5 - parent: 1 - type: Transform -- uid: 26959 - type: WallReinforced - components: - - pos: -75.5,-32.5 - parent: 1 - type: Transform -- uid: 26960 - type: CableHV - components: - - pos: -71.5,-23.5 - parent: 1 - type: Transform -- uid: 26961 - type: CableHV - components: - - pos: -71.5,-24.5 - parent: 1 - type: Transform -- uid: 26962 - type: CableHV - components: - - pos: -71.5,-25.5 - parent: 1 - type: Transform -- uid: 26963 - type: CableHV - components: - - pos: -72.5,-25.5 - parent: 1 - type: Transform -- uid: 26964 - type: CableHV - components: - - pos: -72.5,-26.5 - parent: 1 - type: Transform -- uid: 26965 - type: CableHV - components: - - pos: -72.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26966 - type: CableHV - components: - - pos: -72.5,-28.5 - parent: 1 - type: Transform -- uid: 26967 - type: CableHV - components: - - pos: -71.5,-28.5 - parent: 1 - type: Transform -- uid: 26968 - type: CableHV - components: - - pos: -70.5,-28.5 - parent: 1 - type: Transform -- uid: 26969 - type: CableHV - components: - - pos: -70.5,-29.5 - parent: 1 - type: Transform -- uid: 26970 - type: CableHV - components: - - pos: -72.5,-29.5 - parent: 1 - type: Transform -- uid: 26971 - type: CableHV - components: - - pos: -73.5,-28.5 - parent: 1 - type: Transform -- uid: 26972 - type: CableHV - components: - - pos: -74.5,-28.5 - parent: 1 - type: Transform -- uid: 26973 - type: CableHV - components: - - pos: -74.5,-29.5 - parent: 1 - type: Transform -- uid: 26974 - type: CableHV - components: - - pos: -74.5,-30.5 - parent: 1 - type: Transform -- uid: 26975 - type: CableHV - components: - - pos: -72.5,-30.5 - parent: 1 - type: Transform -- uid: 26976 - type: CableHV - components: - - pos: -70.5,-30.5 - parent: 1 - type: Transform -- uid: 26977 - type: CableHV - components: - - pos: -70.5,-31.5 - parent: 1 - type: Transform -- uid: 26978 - type: CableHV - components: - - pos: -70.5,-32.5 - parent: 1 - type: Transform -- uid: 26979 - type: CableHV - components: - - pos: -71.5,-32.5 - parent: 1 - type: Transform -- uid: 26980 - type: CableHV - components: - - pos: -72.5,-32.5 - parent: 1 - type: Transform -- uid: 26981 - type: CableHV - components: - - pos: -74.5,-31.5 - parent: 1 - type: Transform -- uid: 26982 - type: CableHV - components: - - pos: -74.5,-32.5 - parent: 1 - type: Transform -- uid: 26983 - type: CableHV - components: - - pos: -73.5,-32.5 - parent: 1 - type: Transform -- uid: 26984 - type: CableHV - components: - - pos: -72.5,-31.5 - parent: 1 - type: Transform -- uid: 26985 - type: CableTerminal - components: - - pos: -74.5,-29.5 - parent: 1 - type: Transform -- uid: 26986 - type: CableTerminal - components: - - pos: -72.5,-29.5 - parent: 1 - type: Transform -- uid: 26987 - type: CableTerminal - components: - - pos: -70.5,-29.5 - parent: 1 - type: Transform -- uid: 26988 - type: WallReinforced - components: - - pos: -69.5,-33.5 - parent: 1 - type: Transform -- uid: 26989 - type: WallReinforced - components: - - pos: -70.5,-33.5 - parent: 1 - type: Transform -- uid: 26990 - type: WallReinforced - components: - - pos: -71.5,-33.5 - parent: 1 - type: Transform -- uid: 26991 - type: WallReinforced - components: - - pos: -73.5,-33.5 - parent: 1 - type: Transform -- uid: 26992 - type: WallReinforced - components: - - pos: -74.5,-33.5 - parent: 1 - type: Transform -- uid: 26993 - type: WallReinforced - components: - - pos: -75.5,-33.5 - parent: 1 - type: Transform -- uid: 26994 - type: AirlockExternalGlassLocked - components: - - pos: -72.5,-33.5 - parent: 1 - type: Transform -- uid: 26995 - type: CableHV - components: - - pos: -48.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 26996 - type: CableHV - components: - - pos: -49.5,-31.5 - parent: 1 - type: Transform -- uid: 26997 - type: CableHV - components: - - pos: -50.5,-31.5 - parent: 1 - type: Transform -- uid: 26998 - type: CableHV - components: - - pos: -51.5,-31.5 - parent: 1 - type: Transform -- uid: 26999 - type: CableHV - components: - - pos: -52.5,-31.5 - parent: 1 - type: Transform -- uid: 27000 - type: CableHV - components: - - pos: -52.5,-30.5 - parent: 1 - type: Transform -- uid: 27001 - type: CableHV - components: - - pos: -52.5,-29.5 - parent: 1 - type: Transform -- uid: 27002 - type: CableHV - components: - - pos: -52.5,-28.5 - parent: 1 - type: Transform -- uid: 27003 - type: CableHV - components: - - pos: -52.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27004 - type: CableHV - components: - - pos: -53.5,-27.5 - parent: 1 - type: Transform -- uid: 27005 - type: CableHV - components: - - pos: -54.5,-27.5 - parent: 1 - type: Transform -- uid: 27006 - type: CableHV - components: - - pos: -55.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27007 - type: CableHV - components: - - pos: -55.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27008 - type: CableHV - components: - - pos: -55.5,-29.5 - parent: 1 - type: Transform -- uid: 27009 - type: CableHV - components: - - pos: -55.5,-30.5 - parent: 1 - type: Transform -- uid: 27010 - type: CableHV - components: - - pos: -55.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27011 - type: CableHV - components: - - pos: -55.5,-32.5 - parent: 1 - type: Transform -- uid: 27012 - type: CableHV - components: - - pos: -55.5,-33.5 - parent: 1 - type: Transform -- uid: 27013 - type: CableHV - components: - - pos: -55.5,-34.5 - parent: 1 - type: Transform -- uid: 27014 - type: CableHV - components: - - pos: -55.5,-35.5 - parent: 1 - type: Transform -- uid: 27015 - type: CableHV - components: - - pos: -55.5,-36.5 - parent: 1 - type: Transform -- uid: 27016 - type: CableHV - components: - - pos: -55.5,-37.5 - parent: 1 - type: Transform -- uid: 27017 - type: CableHV - components: - - pos: -56.5,-37.5 - parent: 1 - type: Transform -- uid: 27018 - type: CableHV - components: - - pos: -56.5,-38.5 - parent: 1 - type: Transform -- uid: 27019 - type: CableHV - components: - - pos: -56.5,-39.5 - parent: 1 - type: Transform -- uid: 27020 - type: CableHV - components: - - pos: -56.5,-40.5 - parent: 1 - type: Transform -- uid: 27021 - type: CableHV - components: - - pos: -56.5,-41.5 - parent: 1 - type: Transform -- uid: 27022 - type: CableHV - components: - - pos: -56.5,-42.5 - parent: 1 - type: Transform -- uid: 27023 - type: CableHV - components: - - pos: -56.5,-43.5 - parent: 1 - type: Transform -- uid: 27024 - type: CableHV - components: - - pos: -56.5,-44.5 - parent: 1 - type: Transform -- uid: 27025 - type: CableHV - components: - - pos: -56.5,-45.5 - parent: 1 - type: Transform -- uid: 27026 - type: CableHV - components: - - pos: -56.5,-46.5 - parent: 1 - type: Transform -- uid: 27027 - type: CableHV - components: - - pos: -56.5,-47.5 - parent: 1 - type: Transform -- uid: 27028 - type: CableHV - components: - - pos: -56.5,-48.5 - parent: 1 - type: Transform -- uid: 27029 - type: CableHV - components: - - pos: -56.5,-49.5 - parent: 1 - type: Transform -- uid: 27030 - type: CableHV - components: - - pos: -56.5,-50.5 - parent: 1 - type: Transform -- uid: 27031 - type: CableHV - components: - - pos: -56.5,-51.5 - parent: 1 - type: Transform -- uid: 27032 - type: CableHV - components: - - pos: -56.5,-52.5 - parent: 1 - type: Transform -- uid: 27033 - type: CableHV - components: - - pos: -56.5,-53.5 - parent: 1 - type: Transform -- uid: 27034 - type: CableHV - components: - - pos: -56.5,-54.5 - parent: 1 - type: Transform -- uid: 27035 - type: CableHV - components: - - pos: -57.5,-54.5 - parent: 1 - type: Transform -- uid: 27036 - type: CableHV - components: - - pos: -58.5,-54.5 - parent: 1 - type: Transform -- uid: 27037 - type: CableHV - components: - - pos: -59.5,-54.5 - parent: 1 - type: Transform -- uid: 27038 - type: CableHV - components: - - pos: -60.5,-54.5 - parent: 1 - type: Transform -- uid: 27039 - type: CableHV - components: - - pos: -61.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27040 - type: CableHV - components: - - pos: -61.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27041 - type: CableHV - components: - - pos: -61.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27042 - type: CableHV - components: - - pos: -61.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27043 - type: CableHV - components: - - pos: -61.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27044 - type: CableHV - components: - - pos: -61.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27045 - type: CableHV - components: - - pos: -61.5,-48.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27046 - type: CableHV - components: - - pos: -61.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27047 - type: CableHV - components: - - pos: -61.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27048 - type: CableHV - components: - - pos: -61.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27049 - type: CableHV - components: - - pos: -61.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27050 - type: CableHV - components: - - pos: -61.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27051 - type: CableHV - components: - - pos: -61.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27052 - type: CableHV - components: - - pos: -61.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27053 - type: CableHV - components: - - pos: -61.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27054 - type: CableHV - components: - - pos: -61.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27055 - type: CableHV - components: - - pos: -61.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27056 - type: CableHV - components: - - pos: -61.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27057 - type: CableHV - components: - - pos: -61.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27058 - type: CableHV - components: - - pos: -62.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27059 - type: CableHV - components: - - pos: -63.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27060 - type: CableHV - components: - - pos: -64.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27061 - type: CableHV - components: - - pos: -65.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27062 - type: CableHV - components: - - pos: -66.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27063 - type: CableHV - components: - - pos: -67.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27064 - type: CableHV - components: - - pos: -68.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27065 - type: CableHV - components: - - pos: -69.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27066 - type: CableHV - components: - - pos: -70.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27067 - type: CableHV - components: - - pos: -71.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27068 - type: CableHV - components: - - pos: -72.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27069 - type: Catwalk - components: - - pos: -62.5,-36.5 - parent: 1 - type: Transform -- uid: 27070 - type: Catwalk - components: - - pos: -63.5,-36.5 - parent: 1 - type: Transform -- uid: 27071 - type: Catwalk - components: - - pos: -64.5,-36.5 - parent: 1 - type: Transform -- uid: 27072 - type: Catwalk - components: - - pos: -65.5,-36.5 - parent: 1 - type: Transform -- uid: 27073 - type: Catwalk - components: - - pos: -66.5,-36.5 - parent: 1 - type: Transform -- uid: 27074 - type: Catwalk - components: - - pos: -67.5,-36.5 - parent: 1 - type: Transform -- uid: 27075 - type: Catwalk - components: - - pos: -68.5,-36.5 - parent: 1 - type: Transform -- uid: 27076 - type: Catwalk - components: - - pos: -69.5,-36.5 - parent: 1 - type: Transform -- uid: 27077 - type: Catwalk - components: - - pos: -70.5,-36.5 - parent: 1 - type: Transform -- uid: 27078 - type: Catwalk - components: - - pos: -71.5,-36.5 - parent: 1 - type: Transform -- uid: 27079 - type: Catwalk - components: - - pos: -72.5,-36.5 - parent: 1 - type: Transform -- uid: 27080 - type: Catwalk - components: - - pos: -73.5,-36.5 - parent: 1 - type: Transform -- uid: 27081 - type: Catwalk - components: - - pos: -74.5,-36.5 - parent: 1 - type: Transform -- uid: 27082 - type: Catwalk - components: - - pos: -75.5,-36.5 - parent: 1 - type: Transform -- uid: 27083 - type: Catwalk - components: - - pos: -76.5,-36.5 - parent: 1 - type: Transform -- uid: 27084 - type: CableApcExtension - components: - - pos: -72.5,-26.5 - parent: 1 - type: Transform -- uid: 27085 - type: CableApcExtension - components: - - pos: -72.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27086 - type: CableApcExtension - components: - - pos: -72.5,-28.5 - parent: 1 - type: Transform -- uid: 27087 - type: CableApcExtension - components: - - pos: -72.5,-29.5 - parent: 1 - type: Transform -- uid: 27088 - type: CableApcExtension - components: - - pos: -73.5,-31.5 - parent: 1 - type: Transform -- uid: 27089 - type: CableApcExtension - components: - - pos: -72.5,-31.5 - parent: 1 - type: Transform -- uid: 27090 - type: CableApcExtension - components: - - pos: -72.5,-32.5 - parent: 1 - type: Transform -- uid: 27091 - type: CableApcExtension - components: - - pos: -72.5,-33.5 - parent: 1 - type: Transform -- uid: 27092 - type: CableApcExtension - components: - - pos: -72.5,-34.5 - parent: 1 - type: Transform -- uid: 27093 - type: CableApcExtension - components: - - pos: -73.5,-30.5 - parent: 1 - type: Transform -- uid: 27094 - type: CableApcExtension - components: - - pos: -73.5,-29.5 - parent: 1 - type: Transform -- uid: 27095 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -71.5,-32.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27096 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -73.5,-27.5 - parent: 1 - type: Transform -- uid: 27097 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -69.5,-31.5 - parent: 1 - type: Transform -- uid: 27098 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -70.5,-28.5 - parent: 1 - type: Transform -- uid: 27099 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -71.5,-28.5 - parent: 1 - type: Transform -- uid: 27100 - type: LockerElectricalSupplies - components: - - pos: -74.5,-28.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 27101 - type: MedkitOxygenFilled - components: - - pos: -70.47538,-28.482313 - parent: 1 - type: Transform -- uid: 27102 - type: PoweredSmallLight - components: - - pos: -71.5,-36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27103 - type: WallReinforced - components: - - pos: -68.5,-40.5 - parent: 1 - type: Transform -- uid: 27104 - type: WallReinforced - components: - - pos: -67.5,-40.5 - parent: 1 - type: Transform -- uid: 27105 - type: WallReinforced - components: - - pos: -66.5,-40.5 - parent: 1 - type: Transform -- uid: 27106 - type: WallReinforced - components: - - pos: -70.5,-40.5 - parent: 1 - type: Transform -- uid: 27107 - type: WallReinforced - components: - - pos: -71.5,-40.5 - parent: 1 - type: Transform -- uid: 27108 - type: WallReinforced - components: - - pos: -72.5,-40.5 - parent: 1 - type: Transform -- uid: 27109 - type: WallReinforced - components: - - pos: -66.5,-42.5 - parent: 1 - type: Transform -- uid: 27110 - type: WallReinforced - components: - - pos: -66.5,-41.5 - parent: 1 - type: Transform -- uid: 27111 - type: WallReinforced - components: - - pos: -66.5,-44.5 - parent: 1 - type: Transform -- uid: 27112 - type: WallReinforced - components: - - pos: -66.5,-45.5 - parent: 1 - type: Transform -- uid: 27113 - type: WallReinforced - components: - - pos: -66.5,-46.5 - parent: 1 - type: Transform -- uid: 27114 - type: WallReinforced - components: - - pos: -67.5,-46.5 - parent: 1 - type: Transform -- uid: 27115 - type: CableApcExtension - components: - - pos: -69.5,-42.5 - parent: 1 - type: Transform -- uid: 27116 - type: CableApcExtension - components: - - pos: -67.5,-43.5 - parent: 1 - type: Transform -- uid: 27117 - type: CableApcExtension - components: - - pos: -67.5,-44.5 - parent: 1 - type: Transform -- uid: 27118 - type: WallReinforced - components: - - pos: -71.5,-46.5 - parent: 1 - type: Transform -- uid: 27119 - type: WallReinforced - components: - - pos: -72.5,-46.5 - parent: 1 - type: Transform -- uid: 27120 - type: WallReinforced - components: - - pos: -72.5,-41.5 - parent: 1 - type: Transform -- uid: 27121 - type: CableApcExtension - components: - - pos: -64.5,-43.5 - parent: 1 - type: Transform -- uid: 27122 - type: CableApcExtension - components: - - pos: -65.5,-43.5 - parent: 1 - type: Transform -- uid: 27123 - type: CableApcExtension - components: - - pos: -66.5,-43.5 - parent: 1 - type: Transform -- uid: 27124 - type: WallReinforced - components: - - pos: -72.5,-45.5 - parent: 1 - type: Transform -- uid: 27125 - type: Catwalk - components: - - pos: -69.5,-37.5 - parent: 1 - type: Transform -- uid: 27126 - type: AirlockExternalGlassLocked - components: - - pos: -64.5,-43.5 - parent: 1 - type: Transform -- uid: 27127 - type: AirlockExternalGlassLocked - components: - - pos: -69.5,-38.5 - parent: 1 - type: Transform -- uid: 27128 - type: Catwalk - components: - - pos: -62.5,-43.5 - parent: 1 - type: Transform -- uid: 27129 - type: Catwalk - components: - - pos: -63.5,-43.5 - parent: 1 - type: Transform -- uid: 27130 - type: WallReinforced - components: - - pos: -68.5,-39.5 - parent: 1 - type: Transform -- uid: 27131 - type: WallReinforced - components: - - pos: -68.5,-38.5 - parent: 1 - type: Transform -- uid: 27132 - type: CableHV - components: - - pos: -69.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27133 - type: CableHV - components: - - pos: -69.5,-38.5 - parent: 1 - type: Transform -- uid: 27134 - type: CableHV - components: - - pos: -69.5,-39.5 - parent: 1 - type: Transform -- uid: 27135 - type: CableHV - components: - - pos: -69.5,-40.5 - parent: 1 - type: Transform -- uid: 27136 - type: CableHV - components: - - pos: -69.5,-41.5 - parent: 1 - type: Transform -- uid: 27137 - type: CableHV - components: - - pos: -70.5,-41.5 - parent: 1 - type: Transform -- uid: 27138 - type: CableHV - components: - - pos: -71.5,-41.5 - parent: 1 - type: Transform -- uid: 27139 - type: CableApcExtension - components: - - pos: -70.5,-42.5 - parent: 1 - type: Transform -- uid: 27140 - type: CableApcExtension - components: - - pos: -67.5,-42.5 - parent: 1 - type: Transform -- uid: 27141 - type: CableApcExtension - components: - - pos: -72.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27142 - type: CableApcExtension - components: - - pos: -68.5,-42.5 - parent: 1 - type: Transform -- uid: 27143 - type: CableMV - components: - - pos: -71.5,-41.5 - parent: 1 - type: Transform -- uid: 27144 - type: CableApcExtension - components: - - pos: -70.5,-41.5 - parent: 1 - type: Transform -- uid: 27145 - type: CableApcExtension - components: - - pos: -70.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27146 - type: SubstationBasic - components: - - pos: -71.5,-41.5 - parent: 1 - type: Transform -- uid: 27147 - type: CableMV - components: - - pos: -70.5,-41.5 - parent: 1 - type: Transform -- uid: 27148 - type: CableMV - components: - - pos: -70.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27149 - type: APCBasic - components: - - pos: -70.5,-40.5 - parent: 1 - type: Transform -- uid: 27150 - type: AirlockExternalGlassLocked - components: - - pos: -69.5,-40.5 - parent: 1 - type: Transform -- uid: 27151 - type: AirlockExternalGlassLocked - components: - - pos: -66.5,-43.5 - parent: 1 - type: Transform -- uid: 27152 - type: WallReinforced - components: - - pos: -70.5,-38.5 - parent: 1 - type: Transform -- uid: 27153 - type: WallReinforced - components: - - pos: -70.5,-39.5 - parent: 1 - type: Transform -- uid: 27154 - type: WallReinforced - components: - - pos: -65.5,-42.5 - parent: 1 - type: Transform -- uid: 27155 - type: WallReinforced - components: - - pos: -64.5,-42.5 - parent: 1 - type: Transform -- uid: 27156 - type: WallReinforced - components: - - pos: -64.5,-44.5 - parent: 1 - type: Transform -- uid: 27157 - type: WallReinforced - components: - - pos: -65.5,-44.5 - parent: 1 - type: Transform -- uid: 27158 - type: CableApcExtension - components: - - pos: -63.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27159 - type: CableApcExtension - components: - - pos: -62.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27160 - type: CableApcExtension - components: - - pos: -61.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27161 - type: CableApcExtension - components: - - pos: -61.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27162 - type: CableApcExtension - components: - - pos: -61.5,-45.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27163 - type: CableApcExtension - components: - - pos: -61.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27164 - type: CableApcExtension - components: - - pos: -61.5,-47.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27165 - type: CableApcExtension - components: - - pos: -67.5,-45.5 - parent: 1 - type: Transform -- uid: 27166 - type: CableApcExtension - components: - - pos: -68.5,-45.5 - parent: 1 - type: Transform -- uid: 27167 - type: ReinforcedWindow - components: - - pos: -72.5,-43.5 - parent: 1 - type: Transform -- uid: 27168 - type: CableApcExtension - components: - - pos: -70.5,-45.5 - parent: 1 - type: Transform -- uid: 27169 - type: CableApcExtension - components: - - pos: -71.5,-45.5 - parent: 1 - type: Transform -- uid: 27170 - type: CableApcExtension - components: - - pos: -71.5,-44.5 - parent: 1 - type: Transform -- uid: 27171 - type: ReinforcedWindow - components: - - pos: -72.5,-42.5 - parent: 1 - type: Transform -- uid: 27172 - type: CableApcExtension - components: - - pos: -71.5,-42.5 - parent: 1 - type: Transform -- uid: 27173 - type: CableApcExtension - components: - - pos: -72.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27174 - type: CableApcExtension - components: - - pos: -72.5,-44.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27175 - type: CableApcExtension - components: - - pos: -70.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27176 - type: CableApcExtension - components: - - pos: -68.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27177 - type: CableApcExtension - components: - - pos: -69.5,-46.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27178 - type: ReinforcedWindow - components: - - pos: -72.5,-44.5 - parent: 1 - type: Transform -- uid: 27179 - type: ReinforcedWindow - components: - - pos: -70.5,-46.5 - parent: 1 - type: Transform -- uid: 27180 - type: ReinforcedWindow - components: - - pos: -69.5,-46.5 - parent: 1 - type: Transform -- uid: 27181 - type: ReinforcedWindow - components: - - pos: -68.5,-46.5 - parent: 1 - type: Transform -- uid: 27182 - type: Grille - components: - - pos: -70.5,-46.5 - parent: 1 - type: Transform -- uid: 27183 - type: Grille - components: - - pos: -69.5,-46.5 - parent: 1 - type: Transform -- uid: 27184 - type: Grille - components: - - pos: -68.5,-46.5 - parent: 1 - type: Transform -- uid: 27185 - type: Grille - components: - - pos: -72.5,-42.5 - parent: 1 - type: Transform -- uid: 27186 - type: Grille - components: - - pos: -72.5,-43.5 - parent: 1 - type: Transform -- uid: 27187 - type: Grille - components: - - pos: -72.5,-44.5 - parent: 1 - type: Transform -- uid: 27188 - type: Catwalk - components: - - pos: -74.5,-37.5 - parent: 1 - type: Transform -- uid: 27189 - type: Catwalk - components: - - pos: -74.5,-38.5 - parent: 1 - type: Transform -- uid: 27190 - type: Catwalk - components: - - pos: -74.5,-39.5 - parent: 1 - type: Transform -- uid: 27191 - type: Catwalk - components: - - pos: -74.5,-40.5 - parent: 1 - type: Transform -- uid: 27192 - type: Catwalk - components: - - pos: -74.5,-41.5 - parent: 1 - type: Transform -- uid: 27193 - type: Catwalk - components: - - pos: -74.5,-42.5 - parent: 1 - type: Transform -- uid: 27194 - type: Catwalk - components: - - pos: -74.5,-43.5 - parent: 1 - type: Transform -- uid: 27195 - type: Catwalk - components: - - pos: -74.5,-44.5 - parent: 1 - type: Transform -- uid: 27196 - type: Catwalk - components: - - pos: -74.5,-45.5 - parent: 1 - type: Transform -- uid: 27197 - type: Catwalk - components: - - pos: -74.5,-46.5 - parent: 1 - type: Transform -- uid: 27198 - type: Catwalk - components: - - pos: -74.5,-47.5 - parent: 1 - type: Transform -- uid: 27199 - type: Catwalk - components: - - pos: -74.5,-48.5 - parent: 1 - type: Transform -- uid: 27200 - type: Catwalk - components: - - pos: -73.5,-48.5 - parent: 1 - type: Transform -- uid: 27201 - type: Catwalk - components: - - pos: -72.5,-48.5 - parent: 1 - type: Transform -- uid: 27202 - type: Catwalk - components: - - pos: -71.5,-48.5 - parent: 1 - type: Transform -- uid: 27203 - type: Catwalk - components: - - pos: -70.5,-48.5 - parent: 1 - type: Transform -- uid: 27204 - type: Catwalk - components: - - pos: -69.5,-48.5 - parent: 1 - type: Transform -- uid: 27205 - type: Catwalk - components: - - pos: -68.5,-48.5 - parent: 1 - type: Transform -- uid: 27206 - type: Catwalk - components: - - pos: -67.5,-48.5 - parent: 1 - type: Transform -- uid: 27207 - type: Catwalk - components: - - pos: -66.5,-48.5 - parent: 1 - type: Transform -- uid: 27208 - type: Catwalk - components: - - pos: -65.5,-48.5 - parent: 1 - type: Transform -- uid: 27209 - type: Catwalk - components: - - pos: -64.5,-48.5 - parent: 1 - type: Transform -- uid: 27210 - type: Catwalk - components: - - pos: -63.5,-48.5 - parent: 1 - type: Transform -- uid: 27211 - type: Catwalk - components: - - pos: -62.5,-48.5 - parent: 1 - type: Transform -- uid: 27212 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -69.5,-39.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27213 - type: PoweredSmallLight - components: - - pos: -65.5,-43.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27214 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-44.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27215 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -69.5,-43.5 - parent: 1 - type: Transform -- uid: 27216 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -69.5,-44.5 - parent: 1 - type: Transform -- uid: 27217 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -68.5,-43.5 - parent: 1 - type: Transform -- uid: 27218 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -68.5,-44.5 - parent: 1 - type: Transform -- uid: 27219 - type: Chair - components: - - pos: -68.5,-42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27220 - type: Chair - components: - - pos: -69.5,-42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27221 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27222 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: -70.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27223 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: -67.5,-41.5 - parent: 1 - type: Transform -- uid: 27224 - type: CarpetOrange - components: - - pos: -70.5,-42.5 - parent: 1 - type: Transform -- uid: 27225 - type: CarpetOrange - components: - - pos: -70.5,-43.5 - parent: 1 - type: Transform -- uid: 27226 - type: CarpetOrange - components: - - pos: -70.5,-44.5 - parent: 1 - type: Transform -- uid: 27227 - type: CarpetOrange - components: - - pos: -70.5,-45.5 - parent: 1 - type: Transform -- uid: 27228 - type: CarpetOrange - components: - - pos: -69.5,-42.5 - parent: 1 - type: Transform -- uid: 27229 - type: CarpetOrange - components: - - pos: -69.5,-43.5 - parent: 1 - type: Transform -- uid: 27230 - type: CarpetOrange - components: - - pos: -69.5,-44.5 - parent: 1 - type: Transform -- uid: 27231 - type: CarpetOrange - components: - - pos: -69.5,-45.5 - parent: 1 - type: Transform -- uid: 27232 - type: CarpetOrange - components: - - pos: -68.5,-42.5 - parent: 1 - type: Transform -- uid: 27233 - type: CarpetOrange - components: - - pos: -68.5,-43.5 - parent: 1 - type: Transform -- uid: 27234 - type: CarpetOrange - components: - - pos: -68.5,-44.5 - parent: 1 - type: Transform -- uid: 27235 - type: CarpetOrange - components: - - pos: -68.5,-45.5 - parent: 1 - type: Transform -- uid: 27236 - type: CarpetOrange - components: - - pos: -67.5,-42.5 - parent: 1 - type: Transform -- uid: 27237 - type: CarpetOrange - components: - - pos: -67.5,-43.5 - parent: 1 - type: Transform -- uid: 27238 - type: CarpetOrange - components: - - pos: -67.5,-44.5 - parent: 1 - type: Transform -- uid: 27239 - type: CarpetOrange - components: - - pos: -67.5,-45.5 - parent: 1 - type: Transform -- uid: 27240 - type: CrateFilledSpawner - components: - - pos: -71.5,-45.5 - parent: 1 - type: Transform -- uid: 27241 - type: MaintenanceToolSpawner - components: - - pos: -68.5,-44.5 - parent: 1 - type: Transform -- uid: 27242 - type: MaintenanceFluffSpawner - components: - - pos: -69.5,-43.5 - parent: 1 - type: Transform -- uid: 27243 - type: ClothingEyesGlassesMeson - components: - - pos: -68.50666,-43.34528 - parent: 1 - type: Transform -- uid: 27244 - type: PlushieSpaceLizard - components: - - pos: -68.482735,-42.46661 - parent: 1 - type: Transform -- uid: 27245 - type: PlushieLizard - components: - - pos: -69.52961,-42.46661 - parent: 1 - type: Transform -- uid: 27246 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-42.5 - parent: 1 - type: Transform -- uid: 27247 - type: AirCanister - components: - - pos: -71.5,-44.5 - parent: 1 - type: Transform -- uid: 27248 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -71.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27249 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -70.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27250 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -70.5,-42.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27251 - type: GasVentPump - components: - - pos: -70.5,-41.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27252 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -71.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27253 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: -73.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27254 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -72.5,-44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27255 - type: Firelock - components: - - rot: 1.5707963267948966 rad - pos: -72.5,-27.5 - parent: 1 - type: Transform -- uid: 27256 - type: AirAlarm - components: - - pos: -10.5,-48.5 - parent: 1 - type: Transform - - devices: - - 3907 - - 3784 - - 3783 - - 3243 - - 3242 - - 3241 - - 6767 - - 3245 - - 3246 - - 20039 - - 20040 - - 13504 - - 13502 - - 13503 - - 3237 - - 3236 - - 6086 - - 21603 - type: DeviceList -- uid: 27257 - type: FireAlarm - components: - - pos: -7.5,12.5 - parent: 1 - type: Transform - - devices: - - 8766 - - 12333 - - 1109 - - 4386 - - 2096 - - 21558 - - 5954 - type: DeviceList -- uid: 27258 - type: AirAlarm - components: - - pos: -22.5,-68.5 - parent: 1 - type: Transform - - devices: - - 7457 - - 8743 - - 7454 - - 22564 - - 22531 - - invalid - - 164 - - 22231 - type: DeviceList -- uid: 27259 - type: AirAlarm - components: - - pos: 26.5,-33.5 - parent: 1 - type: Transform - - devices: - - 21789 - - 2836 - - 2233 - - 6302 - - 2813 - type: DeviceList -- uid: 27260 - type: AirAlarm - components: - - pos: 19.5,-9.5 - parent: 1 - type: Transform - - devices: - - 6266 - - 21610 - - 6135 - - invalid - - 6498 - - 8469 - type: DeviceList -- uid: 27261 - type: WallSolid - components: - - pos: 16.5,-4.5 - parent: 1 - type: Transform -- uid: 27262 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-2.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27263 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-7.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27264 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27265 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-9.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27266 - type: Railing - components: - - pos: 60.5,-9.5 - parent: 1 - type: Transform -- uid: 27267 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 60.5,-7.5 - parent: 1 - type: Transform -- uid: 27268 - type: GasPipeBend - components: - - pos: 62.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27269 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27270 - type: ClothingHeadHatBunny - components: - - pos: 57.503056,-8.485766 - parent: 1 - type: Transform -- uid: 27271 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-8.5 - parent: 1 - type: Transform -- uid: 27272 - type: SurveillanceCameraGeneral - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-7.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: evac - type: SurveillanceCamera -- uid: 27273 - type: CableApcExtension - components: - - pos: 24.5,0.5 - parent: 1 - type: Transform -- uid: 27274 - type: CableApcExtension - components: - - pos: 27.5,-1.5 - parent: 1 - type: Transform -- uid: 27275 - type: WallSolid - components: - - pos: -13.5,33.5 - parent: 1 - type: Transform -- uid: 27276 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 55.5,-74.5 - parent: 1 - type: Transform -- uid: 27277 - type: AirSensor - components: - - pos: 48.5,-83.5 - parent: 1 - type: Transform -- uid: 27278 - type: AirSensor - components: - - pos: 49.5,-72.5 - parent: 1 - type: Transform -- uid: 27279 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27280 - type: CableApcStack1 - components: - - pos: 57.114487,42.493305 - parent: 1 - type: Transform -- uid: 27281 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-15.5 - parent: 1 - type: Transform -- uid: 27282 - type: TwoWayLever - components: - - pos: -9.5,-12.5 - parent: 1 - type: Transform - - outputs: - Left: - - port: Reverse - uid: 8295 - - port: Reverse - uid: 13875 - - port: Reverse - uid: 3748 - - port: Reverse - uid: 29271 - - port: Reverse - uid: 27290 - - port: Reverse - uid: 14404 - Right: - - port: Reverse - uid: 8295 - - port: Reverse - uid: 13875 - - port: Reverse - uid: 3748 - - port: Reverse - uid: 29271 - - port: Reverse - uid: 27290 - - port: Reverse - uid: 14404 - Middle: - - port: Off - uid: 27290 - - port: Off - uid: 14404 - - port: Off - uid: 3748 - - port: Off - uid: 13875 - - port: Off - uid: 8295 - - port: Off - uid: 29271 - type: SignalTransmitter -- uid: 27283 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-12.5 - parent: 1 - type: Transform -- uid: 27284 - type: ClosetL3JanitorFilled - components: - - pos: -10.5,-17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 27285 - type: ChairOfficeDark - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-18.5 - parent: 1 - type: Transform -- uid: 27286 - type: AirlockJanitorLocked - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-11.5 - parent: 1 - type: Transform -- uid: 27287 - type: CableApcExtension - components: - - pos: -12.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27288 - type: DisposalUnit - components: - - pos: -40.5,18.5 - parent: 1 - type: Transform -- uid: 27289 - type: ComputerSurveillanceCameraMonitor - components: - - pos: -11.5,-14.5 - parent: 1 - type: Transform -- uid: 27290 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -11.5,-11.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27282 - - port: Left - uid: 27282 - Forward: [] - Off: - - port: Middle - uid: 27282 - type: SignalReceiver -- uid: 27291 - type: WallReinforced - components: - - pos: 70.5,-39.5 - parent: 1 - type: Transform -- uid: 27292 - type: WallReinforced - components: - - pos: 71.5,-39.5 - parent: 1 - type: Transform -- uid: 27293 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 66.5,-39.5 - parent: 1 - type: Transform -- uid: 27294 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-39.5 - parent: 1 - type: Transform -- uid: 27295 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 79.5,-27.5 - parent: 1 - type: Transform -- uid: 27296 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 79.5,-28.5 - parent: 1 - type: Transform -- uid: 27297 - type: RandomPosterContraband - components: - - pos: 53.5,-66.5 - parent: 1 - type: Transform -- uid: 27298 - type: Catwalk - components: - - pos: 79.5,-29.5 - parent: 1 - type: Transform -- uid: 27299 - type: Catwalk - components: - - pos: 79.5,-30.5 - parent: 1 - type: Transform -- uid: 27300 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-29.5 - parent: 1 - type: Transform -- uid: 27301 - type: Catwalk - components: - - pos: 79.5,-31.5 - parent: 1 - type: Transform -- uid: 27302 - type: AirlockExternalGlass - components: - - pos: 76.5,-36.5 - parent: 1 - type: Transform -- uid: 27303 - type: AirlockExternalGlass - components: - - pos: 76.5,-37.5 - parent: 1 - type: Transform -- uid: 27304 - type: AirlockExternalGlass - components: - - pos: 76.5,-33.5 - parent: 1 - type: Transform -- uid: 27305 - type: AirlockGlassShuttle - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-36.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 27306 - type: Grille - components: - - pos: 78.5,-38.5 - parent: 1 - type: Transform -- uid: 27307 - type: Grille - components: - - pos: 76.5,-35.5 - parent: 1 - type: Transform -- uid: 27308 - type: Grille - components: - - pos: 77.5,-35.5 - parent: 1 - type: Transform -- uid: 27309 - type: Grille - components: - - pos: 78.5,-35.5 - parent: 1 - type: Transform -- uid: 27310 - type: Grille - components: - - pos: 79.5,-35.5 - parent: 1 - type: Transform -- uid: 27311 - type: Grille - components: - - pos: 77.5,-32.5 - parent: 1 - type: Transform -- uid: 27312 - type: Grille - components: - - pos: 78.5,-32.5 - parent: 1 - type: Transform -- uid: 27313 - type: SMESBasic - components: - - pos: -72.5,-30.5 - parent: 1 - type: Transform -- uid: 27314 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-30.5 - parent: 1 - type: Transform -- uid: 27315 - type: Grille - components: - - pos: 78.5,-44.5 - parent: 1 - type: Transform -- uid: 27316 - type: Grille - components: - - pos: 78.5,-45.5 - parent: 1 - type: Transform -- uid: 27317 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27318 - type: AirAlarm - components: - - pos: 65.5,-31.5 - parent: 1 - type: Transform - - devices: - - 27374 - - 27373 - - 21689 - - 27571 - - 27572 - - invalid - - 27706 - - 11626 - - 27345 - type: DeviceList -- uid: 27319 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-39.5 - parent: 1 - type: Transform -- uid: 27320 - type: MachineAnomalyVessel - components: - - pos: 57.5,-32.5 - parent: 1 - type: Transform -- uid: 27321 - type: AirlockScienceGlassLocked - components: - - pos: 69.5,-33.5 - parent: 1 - type: Transform -- uid: 27322 - type: AirlockScienceGlassLocked - components: - - pos: 69.5,-34.5 - parent: 1 - type: Transform -- uid: 27323 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 62.5,-31.5 - parent: 1 - type: Transform -- uid: 27324 - type: CableApcExtension - components: - - pos: 62.5,-29.5 - parent: 1 - type: Transform -- uid: 27325 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 71.5,-27.5 - parent: 1 - type: Transform -- uid: 27326 - type: ComputerResearchAndDevelopment - components: - - pos: 74.5,-31.5 - parent: 1 - type: Transform -- uid: 27327 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -39.5,3.5 - parent: 1 - type: Transform -- uid: 27328 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-37.5 - parent: 1 - type: Transform - - color: '#9755CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27329 - type: Grille - components: - - pos: 69.5,-42.5 - parent: 1 - type: Transform -- uid: 27330 - type: CableApcStack - components: - - pos: 77.47492,-43.4493 - parent: 1 - type: Transform -- uid: 27331 - type: Table - components: - - pos: 69.5,-48.5 - parent: 1 - type: Transform -- uid: 27332 - type: Table - components: - - pos: 77.5,-44.5 - parent: 1 - type: Transform -- uid: 27333 - type: ClothingUnderSocksBee - components: - - pos: 62.522377,-58.450882 - parent: 1 - type: Transform -- uid: 27334 - type: Table - components: - - pos: 77.5,-43.5 - parent: 1 - type: Transform -- uid: 27335 - type: Table - components: - - pos: 76.5,-43.5 - parent: 1 - type: Transform -- uid: 27336 - type: Grille - components: - - pos: 70.5,-42.5 - parent: 1 - type: Transform -- uid: 27337 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-50.5 - parent: 1 - type: Transform -- uid: 27338 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-50.5 - parent: 1 - type: Transform -- uid: 27339 - type: Wrench - components: - - pos: 63.43439,-33.411366 - parent: 1 - type: Transform -- uid: 27340 - type: GasPipeStraight - components: - - pos: 70.5,-48.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27341 - type: Grille - components: - - pos: 64.5,-29.5 - parent: 1 - type: Transform -- uid: 27342 - type: SheetPlasma - components: - - pos: 62.516293,-33.369144 - parent: 1 - type: Transform -- uid: 27343 - type: FirelockGlass - components: - - pos: 61.5,-41.5 - parent: 1 - type: Transform -- uid: 27344 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 65.5,-36.5 - parent: 1 - type: Transform - - devices: - - 27706 - - 11626 - - 27345 - - 27572 - - 27571 - type: DeviceList -- uid: 27345 - type: Firelock - components: - - pos: 61.5,-37.5 - parent: 1 - type: Transform -- uid: 27346 - type: ChairOfficeDark - components: - - rot: 3.141592653589793 rad - pos: 73.5,-32.5 - parent: 1 - type: Transform -- uid: 27347 - type: WallSolid - components: - - pos: 60.5,-28.5 - parent: 1 - type: Transform -- uid: 27348 - type: Table - components: - - pos: 73.5,-49.5 - parent: 1 - type: Transform -- uid: 27349 - type: WindowDirectional - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-48.5 - parent: 1 - type: Transform -- uid: 27350 - type: WindowDirectional - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-48.5 - parent: 1 - type: Transform -- uid: 27351 - type: Table - components: - - pos: 73.5,-48.5 - parent: 1 - type: Transform -- uid: 27352 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27353 - type: OperatingTable - components: - - pos: 71.5,-48.5 - parent: 1 - type: Transform -- uid: 27354 - type: CableMV - components: - - pos: 40.5,-61.5 - parent: 1 - type: Transform -- uid: 27355 - type: CableMV - components: - - pos: 40.5,-63.5 - parent: 1 - type: Transform -- uid: 27356 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 69.5,-47.5 - parent: 1 - type: Transform -- uid: 27357 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27358 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27359 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27360 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 64.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27361 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 65.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27362 - type: GasPipeTJunction - components: - - pos: 65.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27363 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27364 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27365 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 66.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27366 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 67.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27367 - type: GasPipeTJunction - components: - - pos: 68.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27368 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27369 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27370 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27371 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27372 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27373 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 65.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27374 - type: GasVentPump - components: - - pos: 65.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27375 - type: Welder - components: - - pos: 76.51503,-43.437786 - parent: 1 - type: Transform - - nextAttack: 912.4463542 - type: MeleeWeapon -- uid: 27376 - type: SignalSwitch - components: - - rot: 3.141592653589793 rad - pos: 48.5,-59.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 12030 - Off: - - port: Close - uid: 12030 - type: SignalTransmitter -- uid: 27377 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: 72.5,-31.5 - parent: 1 - type: Transform - - color: '#999000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27378 - type: GasPipeTJunction - components: - - pos: 73.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27379 - type: GasPipeStraight - components: - - pos: 72.5,-32.5 - parent: 1 - type: Transform - - color: '#999000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27380 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27381 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27382 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 73.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27383 - type: GasPressurePump - components: - - pos: 71.5,-31.5 - parent: 1 - type: Transform - - color: '#9755CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27384 - type: GasPipeBend - components: - - pos: 75.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27385 - type: GasPipeBend - components: - - pos: 74.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27386 - type: GasPipeStraight - components: - - pos: 74.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27387 - type: GasPipeStraight - components: - - pos: 74.5,-36.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27388 - type: GasPipeStraight - components: - - pos: 74.5,-37.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27389 - type: GasPipeStraight - components: - - pos: 74.5,-38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27390 - type: GasPipeStraight - components: - - pos: 74.5,-39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27391 - type: GasPipeStraight - components: - - pos: 74.5,-40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27392 - type: GasPipeStraight - components: - - pos: 75.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27393 - type: GasPipeStraight - components: - - pos: 75.5,-35.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27394 - type: GasPipeStraight - components: - - pos: 75.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27395 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 74.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27396 - type: GasPipeStraight - components: - - pos: 75.5,-38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27397 - type: GasPipeStraight - components: - - pos: 75.5,-39.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27398 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27399 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 74.5,-41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27400 - type: GasVentScrubber - components: - - pos: 67.5,-33.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27401 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 73.5,-35.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27402 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 68.5,-34.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27403 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 72.5,-30.5 - parent: 1 - type: Transform - - color: '#999000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27404 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 74.5,-40.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27405 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-41.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27406 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 75.5,-41.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27407 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 75.5,-42.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27408 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 74.5,-42.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27409 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 74.5,-43.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27410 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 74.5,-44.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27411 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 75.5,-43.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27412 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 75.5,-44.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27413 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 75.5,-45.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27414 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27415 - type: GasPipeTJunction - components: - - pos: 72.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27416 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-48.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27417 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27418 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27419 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27420 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 74.5,-46.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27421 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27422 - type: GasPipeTJunction - components: - - pos: 70.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27423 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-47.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27424 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27425 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27426 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27427 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27428 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-45.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27429 - type: CableMV - components: - - pos: 48.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27430 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-47.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27431 - type: AirlockScienceGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-42.5 - parent: 1 - type: Transform -- uid: 27432 - type: AirlockScienceGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-42.5 - parent: 1 - type: Transform -- uid: 27433 - type: AirlockScienceGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: 74.5,-39.5 - parent: 1 - type: Transform -- uid: 27434 - type: AirlockScienceGlassLocked - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-39.5 - parent: 1 - type: Transform -- uid: 27435 - type: ClosetRadiationSuitFilled - components: - - pos: 70.5,-35.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 27436 - type: CableApcExtension - components: - - pos: 74.5,-45.5 - parent: 1 - type: Transform -- uid: 27437 - type: CableApcExtension - components: - - pos: 75.5,-45.5 - parent: 1 - type: Transform -- uid: 27438 - type: CableApcExtension - components: - - pos: 76.5,-45.5 - parent: 1 - type: Transform -- uid: 27439 - type: CableApcExtension - components: - - pos: 74.5,-44.5 - parent: 1 - type: Transform -- uid: 27440 - type: CableApcExtension - components: - - pos: 74.5,-43.5 - parent: 1 - type: Transform -- uid: 27441 - type: CableApcExtension - components: - - pos: 74.5,-42.5 - parent: 1 - type: Transform -- uid: 27442 - type: CableApcExtension - components: - - pos: 74.5,-41.5 - parent: 1 - type: Transform -- uid: 27443 - type: CableApcExtension - components: - - pos: 74.5,-40.5 - parent: 1 - type: Transform -- uid: 27444 - type: CableApcExtension - components: - - pos: 74.5,-39.5 - parent: 1 - type: Transform -- uid: 27445 - type: CableApcExtension - components: - - pos: 74.5,-38.5 - parent: 1 - type: Transform -- uid: 27446 - type: MagazineMagnumSubMachineGunHighVelocity - components: - - pos: 29.968153,32.610706 - parent: 1 - type: Transform -- uid: 27447 - type: WallReinforced - components: - - pos: 29.5,34.5 - parent: 1 - type: Transform -- uid: 27448 - type: Catwalk - components: - - pos: 79.5,-40.5 - parent: 1 - type: Transform -- uid: 27449 - type: ChairWood - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-35.5 - parent: 1 - type: Transform -- uid: 27450 - type: WallSolid - components: - - pos: 7.5,-35.5 - parent: 1 - type: Transform -- uid: 27451 - type: GasPipeStraight - components: - - pos: 5.5,-26.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27452 - type: GasPipeStraight - components: - - pos: 5.5,-27.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27453 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 77.5,-50.5 - parent: 1 - type: Transform -- uid: 27454 - type: Grille - components: - - pos: 63.5,-61.5 - parent: 1 - type: Transform -- uid: 27455 - type: Grille - components: - - pos: 62.5,-61.5 - parent: 1 - type: Transform -- uid: 27456 - type: Grille - components: - - pos: 61.5,-61.5 - parent: 1 - type: Transform -- uid: 27457 - type: Grille - components: - - pos: 52.5,-61.5 - parent: 1 - type: Transform -- uid: 27458 - type: Grille - components: - - pos: 50.5,-64.5 - parent: 1 - type: Transform -- uid: 27459 - type: CableMV - components: - - pos: 51.5,-65.5 - parent: 1 - type: Transform -- uid: 27460 - type: CableMV - components: - - pos: 50.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27461 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-46.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27462 - type: CableMV - components: - - pos: 49.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27463 - type: CableHV - components: - - pos: 68.5,-46.5 - parent: 1 - type: Transform -- uid: 27464 - type: CableHV - components: - - pos: 67.5,-46.5 - parent: 1 - type: Transform -- uid: 27465 - type: CableHV - components: - - pos: 66.5,-46.5 - parent: 1 - type: Transform -- uid: 27466 - type: CableHV - components: - - pos: 65.5,-46.5 - parent: 1 - type: Transform -- uid: 27467 - type: CableHV - components: - - pos: 64.5,-46.5 - parent: 1 - type: Transform -- uid: 27468 - type: CableHV - components: - - pos: 64.5,-45.5 - parent: 1 - type: Transform -- uid: 27469 - type: CableHV - components: - - pos: 64.5,-44.5 - parent: 1 - type: Transform -- uid: 27470 - type: CableHV - components: - - pos: 63.5,-44.5 - parent: 1 - type: Transform -- uid: 27471 - type: CableHV - components: - - pos: 62.5,-44.5 - parent: 1 - type: Transform -- uid: 27472 - type: CableHV - components: - - pos: 61.5,-44.5 - parent: 1 - type: Transform -- uid: 27473 - type: CableHV - components: - - pos: 60.5,-44.5 - parent: 1 - type: Transform -- uid: 27474 - type: CableHV - components: - - pos: 59.5,-44.5 - parent: 1 - type: Transform -- uid: 27475 - type: CableHV - components: - - pos: 58.5,-44.5 - parent: 1 - type: Transform -- uid: 27476 - type: CableHV - components: - - pos: 57.5,-44.5 - parent: 1 - type: Transform -- uid: 27477 - type: CableHV - components: - - pos: 56.5,-44.5 - parent: 1 - type: Transform -- uid: 27478 - type: CableHV - components: - - pos: 55.5,-44.5 - parent: 1 - type: Transform -- uid: 27479 - type: CableHV - components: - - pos: 54.5,-44.5 - parent: 1 - type: Transform -- uid: 27480 - type: CableHV - components: - - pos: 53.5,-44.5 - parent: 1 - type: Transform -- uid: 27481 - type: CableHV - components: - - pos: 52.5,-44.5 - parent: 1 - type: Transform -- uid: 27482 - type: CableHV - components: - - pos: 51.5,-44.5 - parent: 1 - type: Transform -- uid: 27483 - type: CableHV - components: - - pos: 50.5,-44.5 - parent: 1 - type: Transform -- uid: 27484 - type: trayScanner - components: - - pos: 77.48675,-44.195305 - parent: 1 - type: Transform -- uid: 27485 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-50.5 - parent: 1 - type: Transform -- uid: 27486 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-50.5 - parent: 1 - type: Transform -- uid: 27487 - type: ReinforcedWindow - components: - - pos: 51.5,-68.5 - parent: 1 - type: Transform -- uid: 27488 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-68.5 - parent: 1 - type: Transform -- uid: 27489 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 55.5,-68.5 - parent: 1 - type: Transform -- uid: 27490 - type: WallSolid - components: - - pos: 7.5,-32.5 - parent: 1 - type: Transform -- uid: 27491 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-66.5 - parent: 1 - type: Transform -- uid: 27492 - type: RandomArcade - components: - - pos: 4.5,-32.5 - parent: 1 - type: Transform -- uid: 27493 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-64.5 - parent: 1 - type: Transform -- uid: 27494 - type: WallSolid - components: - - pos: 57.5,-62.5 - parent: 1 - type: Transform -- uid: 27495 - type: WallSolid - components: - - pos: 5.5,-35.5 - parent: 1 - type: Transform -- uid: 27496 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 56.5,-68.5 - parent: 1 - type: Transform -- uid: 27497 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 8.5,-37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27498 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-64.5 - parent: 1 - type: Transform -- uid: 27499 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 39.5,-34.5 - parent: 1 - type: Transform -- uid: 27500 - type: WallSolid - components: - - pos: 56.5,-62.5 - parent: 1 - type: Transform -- uid: 27501 - type: WallSolid - components: - - pos: 7.5,-33.5 - parent: 1 - type: Transform -- uid: 27502 - type: WallSolid - components: - - pos: 7.5,-34.5 - parent: 1 - type: Transform -- uid: 27503 - type: Grille - components: - - pos: 3.5,-28.5 - parent: 1 - type: Transform -- uid: 27504 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-64.5 - parent: 1 - type: Transform -- uid: 27505 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 45.5,-66.5 - parent: 1 - type: Transform -- uid: 27506 - type: CableApcExtension - components: - - pos: 76.5,-46.5 - parent: 1 - type: Transform -- uid: 27507 - type: CableApcExtension - components: - - pos: 76.5,-47.5 - parent: 1 - type: Transform -- uid: 27508 - type: CableApcExtension - components: - - pos: 76.5,-48.5 - parent: 1 - type: Transform -- uid: 27509 - type: CableApcExtension - components: - - pos: 76.5,-49.5 - parent: 1 - type: Transform -- uid: 27510 - type: CableApcExtension - components: - - pos: 73.5,-48.5 - parent: 1 - type: Transform -- uid: 27511 - type: CableApcExtension - components: - - pos: 74.5,-48.5 - parent: 1 - type: Transform -- uid: 27512 - type: CableApcExtension - components: - - pos: 74.5,-47.5 - parent: 1 - type: Transform -- uid: 27513 - type: CableApcExtension - components: - - pos: 75.5,-47.5 - parent: 1 - type: Transform -- uid: 27514 - type: CableApcExtension - components: - - pos: 74.5,-37.5 - parent: 1 - type: Transform -- uid: 27515 - type: CableApcExtension - components: - - pos: 75.5,-37.5 - parent: 1 - type: Transform -- uid: 27516 - type: CableApcExtension - components: - - pos: 76.5,-37.5 - parent: 1 - type: Transform -- uid: 27517 - type: CableApcExtension - components: - - pos: 77.5,-37.5 - parent: 1 - type: Transform -- uid: 27518 - type: CableApcExtension - components: - - pos: 78.5,-37.5 - parent: 1 - type: Transform -- uid: 27519 - type: CableApcExtension - components: - - pos: 78.5,-36.5 - parent: 1 - type: Transform -- uid: 27520 - type: CableApcExtension - components: - - pos: 78.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27521 - type: CableApcExtension - components: - - pos: 78.5,-34.5 - parent: 1 - type: Transform -- uid: 27522 - type: CableApcExtension - components: - - pos: 78.5,-33.5 - parent: 1 - type: Transform -- uid: 27523 - type: CableApcExtension - components: - - pos: 77.5,-33.5 - parent: 1 - type: Transform -- uid: 27524 - type: CableApcExtension - components: - - pos: 76.5,-33.5 - parent: 1 - type: Transform -- uid: 27525 - type: CableApcExtension - components: - - pos: 75.5,-33.5 - parent: 1 - type: Transform -- uid: 27526 - type: CableApcExtension - components: - - pos: 74.5,-33.5 - parent: 1 - type: Transform -- uid: 27527 - type: CableApcExtension - components: - - pos: 74.5,-32.5 - parent: 1 - type: Transform -- uid: 27528 - type: CableApcExtension - components: - - pos: 73.5,-32.5 - parent: 1 - type: Transform -- uid: 27529 - type: CableApcExtension - components: - - pos: 72.5,-32.5 - parent: 1 - type: Transform -- uid: 27530 - type: CableApcExtension - components: - - pos: 71.5,-32.5 - parent: 1 - type: Transform -- uid: 27531 - type: CableApcExtension - components: - - pos: 70.5,-32.5 - parent: 1 - type: Transform -- uid: 27532 - type: CableApcExtension - components: - - pos: 70.5,-33.5 - parent: 1 - type: Transform -- uid: 27533 - type: CableApcExtension - components: - - pos: 70.5,-34.5 - parent: 1 - type: Transform -- uid: 27534 - type: CableApcExtension - components: - - pos: 70.5,-35.5 - parent: 1 - type: Transform -- uid: 27535 - type: CableApcExtension - components: - - pos: 70.5,-36.5 - parent: 1 - type: Transform -- uid: 27536 - type: CableApcExtension - components: - - pos: 71.5,-36.5 - parent: 1 - type: Transform -- uid: 27537 - type: BannerScience - components: - - pos: 65.5,-49.5 - parent: 1 - type: Transform -- uid: 27538 - type: CableApcExtension - components: - - pos: 72.5,-37.5 - parent: 1 - type: Transform -- uid: 27539 - type: CableApcExtension - components: - - pos: 73.5,-37.5 - parent: 1 - type: Transform -- uid: 27540 - type: CableApcExtension - components: - - pos: 73.5,-36.5 - parent: 1 - type: Transform -- uid: 27541 - type: CableApcExtension - components: - - pos: 73.5,-35.5 - parent: 1 - type: Transform -- uid: 27542 - type: CableApcExtension - components: - - pos: 69.5,-33.5 - parent: 1 - type: Transform -- uid: 27543 - type: CableApcExtension - components: - - pos: 68.5,-33.5 - parent: 1 - type: Transform -- uid: 27544 - type: CableApcExtension - components: - - pos: 67.5,-33.5 - parent: 1 - type: Transform -- uid: 27545 - type: CableApcExtension - components: - - pos: 66.5,-33.5 - parent: 1 - type: Transform -- uid: 27546 - type: CableApcExtension - components: - - pos: 65.5,-33.5 - parent: 1 - type: Transform -- uid: 27547 - type: CableApcExtension - components: - - pos: 62.5,-30.5 - parent: 1 - type: Transform -- uid: 27548 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-47.5 - parent: 1 - type: Transform -- uid: 27549 - type: MachineAPE - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-35.5 - parent: 1 - type: Transform -- uid: 27550 - type: CableApcExtension - components: - - pos: 65.5,-32.5 - parent: 1 - type: Transform -- uid: 27551 - type: Grille - components: - - pos: 1.5,-30.5 - parent: 1 - type: Transform -- uid: 27552 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -39.5,4.5 - parent: 1 - type: Transform -- uid: 27553 - type: WallSolid - components: - - pos: 52.5,-33.5 - parent: 1 - type: Transform -- uid: 27554 - type: WallReinforced - components: - - pos: 66.5,-67.5 - parent: 1 - type: Transform -- uid: 27555 - type: WallReinforced - components: - - pos: 65.5,-67.5 - parent: 1 - type: Transform -- uid: 27556 - type: WallReinforced - components: - - pos: 65.5,-68.5 - parent: 1 - type: Transform -- uid: 27557 - type: WallReinforced - components: - - pos: 64.5,-68.5 - parent: 1 - type: Transform -- uid: 27558 - type: Grille - components: - - pos: 61.5,-70.5 - parent: 1 - type: Transform -- uid: 27559 - type: AltarToolbox - components: - - pos: 61.5,-69.5 - parent: 1 - type: Transform -- uid: 27560 - type: WallReinforced - components: - - pos: 63.5,-69.5 - parent: 1 - type: Transform -- uid: 27561 - type: ReinforcedWindow - components: - - pos: 61.5,-70.5 - parent: 1 - type: Transform -- uid: 27562 - type: ReinforcedWindow - components: - - pos: 62.5,-70.5 - parent: 1 - type: Transform -- uid: 27563 - type: WallSolid - components: - - pos: 52.5,-34.5 - parent: 1 - type: Transform -- uid: 27564 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: 72.5,-34.5 - parent: 1 - type: Transform -- uid: 27565 - type: AirAlarm - components: - - pos: 70.5,-31.5 - parent: 1 - type: Transform - - devices: - - 27580 - - 27581 - - 27573 - - 27574 - - 27564 - - 27401 - - invalid - type: DeviceList -- uid: 27566 - type: AirAlarm - components: - - pos: 72.5,-42.5 - parent: 1 - type: Transform - - devices: - - invalid - - 27430 - - 21696 - - 11517 - - 11516 - - 11258 - - 27575 - - 27576 - type: DeviceList -- uid: 27567 - type: Catwalk - components: - - pos: 79.5,-39.5 - parent: 1 - type: Transform -- uid: 27568 - type: WallReinforced - components: - - pos: 69.5,-50.5 - parent: 1 - type: Transform -- uid: 27569 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 74.5,-40.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27570 - type: PoweredSmallLight - components: - - pos: 67.5,-33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27571 - type: Firelock - components: - - pos: 66.5,-33.5 - parent: 1 - type: Transform -- uid: 27572 - type: Firelock - components: - - pos: 66.5,-34.5 - parent: 1 - type: Transform -- uid: 27573 - type: FirelockGlass - components: - - pos: 74.5,-39.5 - parent: 1 - type: Transform -- uid: 27574 - type: FirelockGlass - components: - - pos: 75.5,-39.5 - parent: 1 - type: Transform -- uid: 27575 - type: FirelockGlass - components: - - pos: 74.5,-42.5 - parent: 1 - type: Transform -- uid: 27576 - type: FirelockGlass - components: - - pos: 75.5,-42.5 - parent: 1 - type: Transform -- uid: 27577 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27578 - type: FireAlarm - components: - - pos: 73.5,-42.5 - parent: 1 - type: Transform - - devices: - - 27575 - - 27576 - - 11517 - - 11516 - - 11258 - - 21696 - type: DeviceList -- uid: 27579 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-27.5 - parent: 1 - type: Transform -- uid: 27580 - type: Firelock - components: - - pos: 69.5,-33.5 - parent: 1 - type: Transform -- uid: 27581 - type: Firelock - components: - - pos: 69.5,-34.5 - parent: 1 - type: Transform -- uid: 27582 - type: WallSolid - components: - - pos: 55.5,-62.5 - parent: 1 - type: Transform -- uid: 27583 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 52.5,-68.5 - parent: 1 - type: Transform -- uid: 27584 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 54.5,-68.5 - parent: 1 - type: Transform -- uid: 27585 - type: AirlockGlass - components: - - pos: 4.5,-28.5 - parent: 1 - type: Transform -- uid: 27586 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 47.5,-66.5 - parent: 1 - type: Transform -- uid: 27587 - type: Grille - components: - - pos: 5.5,-28.5 - parent: 1 - type: Transform -- uid: 27588 - type: SignAnomaly - components: - - pos: 76.5,-42.5 - parent: 1 - type: Transform -- uid: 27589 - type: SignShipDock - components: - - pos: 76.5,-32.5 - parent: 1 - type: Transform -- uid: 27590 - type: Grille - components: - - pos: 1.5,-31.5 - parent: 1 - type: Transform -- uid: 27591 - type: Grille - components: - - pos: 9.5,-31.5 - parent: 1 - type: Transform -- uid: 27592 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-34.5 - parent: 1 - type: Transform -- uid: 27593 - type: VendingMachineTankDispenserEVA - components: - - flags: SessionSpecific - type: MetaData - - pos: 77.5,-45.5 - parent: 1 - type: Transform -- uid: 27594 - type: AtmosDeviceFanTiny - components: - - pos: 79.5,-37.5 - parent: 1 - type: Transform -- uid: 27595 - type: AtmosDeviceFanTiny - components: - - pos: 79.5,-34.5 - parent: 1 - type: Transform -- uid: 27596 - type: CableApcExtension - components: - - pos: -21.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27597 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27598 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-68.5 - parent: 1 - type: Transform -- uid: 27599 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-47.5 - parent: 1 - type: Transform -- uid: 27600 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-47.5 - parent: 1 - type: Transform -- uid: 27601 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-47.5 - parent: 1 - type: Transform -- uid: 27602 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-47.5 - parent: 1 - type: Transform -- uid: 27603 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-47.5 - parent: 1 - type: Transform -- uid: 27604 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-47.5 - parent: 1 - type: Transform -- uid: 27605 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 74.5,-47.5 - parent: 1 - type: Transform -- uid: 27606 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-47.5 - parent: 1 - type: Transform -- uid: 27607 - type: AirlockMaintRnDLocked - components: - - name: science - type: MetaData - - rot: -1.5707963267948966 rad - pos: 50.5,-36.5 - parent: 1 - type: Transform -- uid: 27608 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-50.5 - parent: 1 - type: Transform -- uid: 27609 - type: WindoorArmoryLocked - components: - - rot: 3.141592653589793 rad - pos: 29.5,30.5 - parent: 1 - type: Transform -- uid: 27610 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-67.5 - parent: 1 - type: Transform -- uid: 27611 - type: ReinforcedWindow - components: - - pos: 50.5,-68.5 - parent: 1 - type: Transform -- uid: 27612 - type: WallSolid - components: - - pos: 9.5,-38.5 - parent: 1 - type: Transform -- uid: 27613 - type: Grille - components: - - pos: 9.5,-34.5 - parent: 1 - type: Transform -- uid: 27614 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-64.5 - parent: 1 - type: Transform -- uid: 27615 - type: DisposalUnit - components: - - pos: 75.5,-32.5 - parent: 1 - type: Transform -- uid: 27616 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 75.5,-46.5 - parent: 1 - type: Transform -- uid: 27617 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 75.5,-45.5 - parent: 1 - type: Transform -- uid: 27618 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 75.5,-44.5 - parent: 1 - type: Transform -- uid: 27619 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 75.5,-43.5 - parent: 1 - type: Transform -- uid: 27620 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 75.5,-42.5 - parent: 1 - type: Transform -- uid: 27621 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 75.5,-41.5 - parent: 1 - type: Transform -- uid: 27622 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 75.5,-40.5 - parent: 1 - type: Transform -- uid: 27623 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 75.5,-39.5 - parent: 1 - type: Transform -- uid: 27624 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 75.5,-38.5 - parent: 1 - type: Transform -- uid: 27625 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 75.5,-37.5 - parent: 1 - type: Transform -- uid: 27626 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 75.5,-36.5 - parent: 1 - type: Transform -- uid: 27627 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 75.5,-35.5 - parent: 1 - type: Transform -- uid: 27628 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 75.5,-34.5 - parent: 1 - type: Transform -- uid: 27629 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 75.5,-33.5 - parent: 1 - type: Transform -- uid: 27630 - type: DisposalTrunk - components: - - pos: 75.5,-32.5 - parent: 1 - type: Transform -- uid: 27631 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-67.5 - parent: 1 - type: Transform -- uid: 27632 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 51.5,-64.5 - parent: 1 - type: Transform -- uid: 27633 - type: PoweredSmallLight - components: - - pos: 67.5,-11.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27634 - type: PoweredSmallLight - components: - - pos: 67.5,-3.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27635 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27636 - type: PoweredSmallLight - components: - - pos: 67.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27637 - type: PoweredSmallLight - components: - - pos: 67.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27638 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-65.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27639 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27640 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27641 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27642 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 6.5,-57.5 - parent: 1 - type: Transform -- uid: 27643 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-56.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27644 - type: ClosetMaintenance - components: - - pos: -19.5,56.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 27645 - type: SurveillanceCameraScience - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-38.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: artifact lab - type: SurveillanceCamera -- uid: 27646 - type: AtmosDeviceFanTiny - components: - - pos: 79.5,-33.5 - parent: 1 - type: Transform -- uid: 27647 - type: Rack - components: - - pos: -19.5,53.5 - parent: 1 - type: Transform -- uid: 27648 - type: AirlockGlassShuttle - components: - - rot: 1.5707963267948966 rad - pos: 79.5,-33.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 27649 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27650 - type: CableMV - components: - - pos: 40.5,-64.5 - parent: 1 - type: Transform -- uid: 27651 - type: CableMV - components: - - pos: 41.5,-64.5 - parent: 1 - type: Transform -- uid: 27652 - type: Table - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-21.5 - parent: 1 - type: Transform -- uid: 27653 - type: ChairOfficeDark - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-22.5 - parent: 1 - type: Transform -- uid: 27654 - type: WeaponCapacitorRecharger - components: - - pos: -16.5,-21.5 - parent: 1 - type: Transform -- uid: 27655 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-23.5 - parent: 1 - type: Transform -- uid: 27656 - type: FirelockGlass - components: - - pos: -17.5,-22.5 - parent: 1 - type: Transform -- uid: 27657 - type: FirelockGlass - components: - - pos: -17.5,-23.5 - parent: 1 - type: Transform -- uid: 27658 - type: Firelock - components: - - pos: -17.5,-20.5 - parent: 1 - type: Transform -- uid: 27659 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27660 - type: Handcuffs - components: - - pos: -15.367192,-23.36869 - parent: 1 - type: Transform -- uid: 27661 - type: Flash - components: - - pos: -15.513895,-23.550434 - parent: 1 - type: Transform -- uid: 27662 - type: PosterLegitDoNotQuestion - components: - - pos: -17.5,-21.5 - parent: 1 - type: Transform -- uid: 27663 - type: ComputerStationRecords - components: - - rot: 3.141592653589793 rad - pos: -16.5,-23.5 - parent: 1 - type: Transform -- uid: 27664 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-3.5 - parent: 1 - type: Transform -- uid: 27665 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -4.5,-4.5 - parent: 1 - type: Transform -- uid: 27666 - type: CableApcExtension - components: - - pos: -16.5,-15.5 - parent: 1 - type: Transform -- uid: 27667 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -16.5,-17.5 - parent: 1 - type: Transform -- uid: 27668 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -16.5,-19.5 - parent: 1 - type: Transform -- uid: 27669 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: -14.5,-22.5 - parent: 1 - type: Transform -- uid: 27670 - type: WeldingFuelTankFull - components: - - pos: -16.5,-18.5 - parent: 1 - type: Transform -- uid: 27671 - type: EmergencyLight - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 27672 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 74.5,-49.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 27673 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-36.5 - parent: 1 - type: Transform -- uid: 27674 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-38.5 - parent: 1 - type: Transform -- uid: 27675 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-36.5 - parent: 1 - type: Transform -- uid: 27676 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-38.5 - parent: 1 - type: Transform -- uid: 27677 - type: GasPipeBend - components: - - pos: 72.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27678 - type: Poweredlight - components: - - pos: 67.5,-36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27679 - type: GasVentScrubber - components: - - pos: 66.5,-38.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27680 - type: GasPipeStraight - components: - - pos: 66.5,-39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27681 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 66.5,-40.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27682 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 68.5,-39.5 - parent: 1 - type: Transform -- uid: 27683 - type: BlastDoorExterior1 - components: - - pos: 67.5,-39.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -130866.914 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 11189 - Close: - - port: Off - uid: 11189 - Toggle: [] - type: SignalReceiver -- uid: 27684 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 66.5,-39.5 - parent: 1 - type: Transform -- uid: 27685 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27686 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27687 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27688 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 72.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27689 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27690 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-37.5 - parent: 1 - type: Transform - - color: '#9755CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27691 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27692 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27693 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 75.5,-37.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27694 - type: RandomArtifactSpawner20 - components: - - pos: -20.5,-99.5 - parent: 1 - type: Transform -- uid: 27695 - type: CableApcExtension - components: - - pos: 70.5,-37.5 - parent: 1 - type: Transform -- uid: 27696 - type: CableApcExtension - components: - - pos: 69.5,-37.5 - parent: 1 - type: Transform -- uid: 27697 - type: CableApcExtension - components: - - pos: 68.5,-37.5 - parent: 1 - type: Transform -- uid: 27698 - type: CableApcExtension - components: - - pos: 67.5,-37.5 - parent: 1 - type: Transform -- uid: 27699 - type: CableApcExtension - components: - - pos: 67.5,-38.5 - parent: 1 - type: Transform -- uid: 27700 - type: GasPipeStraight - components: - - pos: 71.5,-32.5 - parent: 1 - type: Transform - - color: '#9755CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27701 - type: ClothingBeltUtilityFilled - components: - - pos: -34.48208,26.5042 - parent: 1 - type: Transform -- uid: 27702 - type: ComputerAnalysisConsole - components: - - pos: 73.5,-31.5 - parent: 1 - type: Transform - - outputs: - ArtifactAnalyzerSender: - - port: ArtifactAnalyzerReceiver - uid: 27728 - type: SignalTransmitter -- uid: 27703 - type: WallReinforced - components: - - pos: 7.5,-38.5 - parent: 1 - type: Transform -- uid: 27704 - type: MachineAnomalyGenerator - components: - - pos: 62.5,-30.5 - parent: 1 - type: Transform - - enabled: False - type: AmbientSound -- uid: 27705 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27706 - type: AirSensor - components: - - pos: 62.5,-36.5 - parent: 1 - type: Transform -- uid: 27707 - type: GasPort - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-38.5 - parent: 1 - type: Transform - - color: '#999000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27708 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 71.5,-33.5 - parent: 1 - type: Transform - - color: '#9755CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27709 - type: Grille - components: - - pos: -48.5,-74.5 - parent: 1 - type: Transform -- uid: 27710 - type: PoweredSmallLight - components: - - pos: 78.5,-33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27711 - type: PoweredSmallLight - components: - - pos: 78.5,-36.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27712 - type: ExtinguisherCabinetFilled - components: - - pos: 77.5,-48.5 - parent: 1 - type: Transform -- uid: 27713 - type: SinkWide - components: - - rot: 3.141592653589793 rad - pos: 46.5,-39.5 - parent: 1 - type: Transform -- uid: 27714 - type: CrateScience - components: - - pos: 73.5,-34.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 27715 - type: Poweredlight - components: - - pos: -62.5,-23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27716 - type: RandomArtifactSpawner20 - components: - - pos: 11.5,53.5 - parent: 1 - type: Transform -- uid: 27717 - type: CableApcExtension - components: - - pos: 54.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27718 - type: ClothingUniformJumpsuitPsychologist - components: - - pos: -14.569605,-39.387264 - parent: 1 - type: Transform -- uid: 27719 - type: ClothingUniformJumpsuitReporter - components: - - pos: -27.443762,14.534213 - parent: 1 - type: Transform -- uid: 27720 - type: Wrench - components: - - pos: 73.54562,-44.324593 - parent: 1 - type: Transform - - nextAttack: 8686.1319246 - type: MeleeWeapon -- uid: 27721 - type: BlastDoorExterior1 - components: - - rot: 3.141592653589793 rad - pos: 72.5,-27.5 - parent: 1 - type: Transform - - inputs: - Open: - - port: On - uid: 27738 - Close: - - port: Off - uid: 27738 - Toggle: [] - type: SignalReceiver -- uid: 27722 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 74.5,-28.5 - parent: 1 - type: Transform -- uid: 27723 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 70.5,-28.5 - parent: 1 - type: Transform -- uid: 27724 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 73.5,-30.5 - parent: 1 - type: Transform -- uid: 27725 - type: CableApcExtension - components: - - pos: -71.5,-29.5 - parent: 1 - type: Transform -- uid: 27726 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 71.5,-27.5 - parent: 1 - type: Transform -- uid: 27727 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 73.5,-27.5 - parent: 1 - type: Transform -- uid: 27728 - type: MachineArtifactAnalyzer - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-28.5 - parent: 1 - type: Transform - - inputs: - ArtifactAnalyzerReceiver: - - port: ArtifactAnalyzerSender - uid: 27702 - type: SignalReceiver -- uid: 27729 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27730 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27731 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: 72.5,-33.5 - parent: 1 - type: Transform - - color: '#999000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27732 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 74.5,-33.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27733 - type: GasVentPump - components: - - pos: 74.5,-32.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27734 - type: GasPassiveVent - components: - - pos: 72.5,-29.5 - parent: 1 - type: Transform - - color: '#999000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27735 - type: ExtinguisherCabinetFilled - components: - - pos: 76.5,-38.5 - parent: 1 - type: Transform -- uid: 27736 - type: OxygenCanister - components: - - pos: 73.5,-35.5 - parent: 1 - type: Transform -- uid: 27737 - type: NitrogenCanister - components: - - pos: 72.5,-35.5 - parent: 1 - type: Transform -- uid: 27738 - type: SignalSwitch - components: - - pos: 69.5,-32.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 27721 - Off: - - port: Close - uid: 27721 - type: SignalTransmitter -- uid: 27739 - type: WallReinforced - components: - - pos: 5.5,-36.5 - parent: 1 - type: Transform -- uid: 27740 - type: ReinforcedWindow - components: - - pos: 3.5,-36.5 - parent: 1 - type: Transform -- uid: 27741 - type: WallReinforced - components: - - pos: 1.5,-36.5 - parent: 1 - type: Transform -- uid: 27742 - type: WallReinforced - components: - - pos: 5.5,-37.5 - parent: 1 - type: Transform -- uid: 27743 - type: WallReinforced - components: - - pos: 4.5,-36.5 - parent: 1 - type: Transform -- uid: 27744 - type: WallReinforced - components: - - pos: 6.5,-37.5 - parent: 1 - type: Transform -- uid: 27745 - type: WallReinforced - components: - - pos: 63.5,-70.5 - parent: 1 - type: Transform -- uid: 27746 - type: WallReinforced - components: - - pos: 1.5,-35.5 - parent: 1 - type: Transform -- uid: 27747 - type: WallReinforced - components: - - pos: 66.5,-60.5 - parent: 1 - type: Transform -- uid: 27748 - type: WallReinforced - components: - - pos: 76.5,-52.5 - parent: 1 - type: Transform -- uid: 27749 - type: WallSolid - components: - - pos: 73.5,-55.5 - parent: 1 - type: Transform -- uid: 27750 - type: WallReinforced - components: - - pos: 76.5,-51.5 - parent: 1 - type: Transform -- uid: 27751 - type: WallReinforced - components: - - pos: 73.5,-51.5 - parent: 1 - type: Transform -- uid: 27752 - type: WallReinforced - components: - - pos: 73.5,-53.5 - parent: 1 - type: Transform -- uid: 27753 - type: ReinforcedWindow - components: - - pos: 68.5,-57.5 - parent: 1 - type: Transform -- uid: 27754 - type: WallReinforced - components: - - pos: 75.5,-57.5 - parent: 1 - type: Transform -- uid: 27755 - type: WallReinforced - components: - - pos: 76.5,-57.5 - parent: 1 - type: Transform -- uid: 27756 - type: WallReinforced - components: - - pos: 68.5,-55.5 - parent: 1 - type: Transform -- uid: 27757 - type: ReinforcedWindow - components: - - pos: 71.5,-54.5 - parent: 1 - type: Transform -- uid: 27758 - type: WallSolid - components: - - pos: 52.5,-37.5 - parent: 1 - type: Transform -- uid: 27759 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-57.5 - parent: 1 - type: Transform -- uid: 27760 - type: AirlockAtmosphericsGlassLocked - components: - - pos: -52.5,-58.5 - parent: 1 - type: Transform -- uid: 27761 - type: AirlockExternalGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-58.5 - parent: 1 - type: Transform -- uid: 27762 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-57.5 - parent: 1 - type: Transform -- uid: 27763 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-57.5 - parent: 1 - type: Transform -- uid: 27764 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-57.5 - parent: 1 - type: Transform -- uid: 27765 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-59.5 - parent: 1 - type: Transform -- uid: 27766 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -51.5,-59.5 - parent: 1 - type: Transform -- uid: 27767 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-59.5 - parent: 1 - type: Transform -- uid: 27768 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-57.5 - parent: 1 - type: Transform -- uid: 27769 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-61.5 - parent: 1 - type: Transform -- uid: 27770 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-63.5 - parent: 1 - type: Transform -- uid: 27771 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-63.5 - parent: 1 - type: Transform -- uid: 27772 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-57.5 - parent: 1 - type: Transform -- uid: 27773 - type: AirlockMaintLocked - components: - - rot: 1.5707963267948966 rad - pos: -56.5,-57.5 - parent: 1 - type: Transform -- uid: 27774 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -58.5,-60.5 - parent: 1 - type: Transform -- uid: 27775 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -61.5,-56.5 - parent: 1 - type: Transform -- uid: 27776 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -61.5,-57.5 - parent: 1 - type: Transform -- uid: 27777 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -60.5,-57.5 - parent: 1 - type: Transform -- uid: 27778 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-57.5 - parent: 1 - type: Transform -- uid: 27779 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-58.5 - parent: 1 - type: Transform -- uid: 27780 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-59.5 - parent: 1 - type: Transform -- uid: 27781 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-60.5 - parent: 1 - type: Transform -- uid: 27782 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-61.5 - parent: 1 - type: Transform -- uid: 27783 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-62.5 - parent: 1 - type: Transform -- uid: 27784 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-63.5 - parent: 1 - type: Transform -- uid: 27785 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-64.5 - parent: 1 - type: Transform -- uid: 27786 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-65.5 - parent: 1 - type: Transform -- uid: 27787 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-66.5 - parent: 1 - type: Transform -- uid: 27788 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-67.5 - parent: 1 - type: Transform -- uid: 27789 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-68.5 - parent: 1 - type: Transform -- uid: 27790 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -59.5,-69.5 - parent: 1 - type: Transform -- uid: 27791 - type: CableApcExtension - components: - - pos: -55.5,-62.5 - parent: 1 - type: Transform -- uid: 27792 - type: CableApcExtension - components: - - pos: -54.5,-62.5 - parent: 1 - type: Transform -- uid: 27793 - type: CableApcExtension - components: - - pos: -53.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27794 - type: CableApcExtension - components: - - pos: -54.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27795 - type: CableApcExtension - components: - - pos: -53.5,-58.5 - parent: 1 - type: Transform -- uid: 27796 - type: CableApcExtension - components: - - pos: -52.5,-58.5 - parent: 1 - type: Transform -- uid: 27797 - type: CableApcExtension - components: - - pos: -51.5,-58.5 - parent: 1 - type: Transform -- uid: 27798 - type: CableApcExtension - components: - - pos: -56.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27799 - type: CableApcExtension - components: - - pos: -54.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27800 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-57.5 - parent: 1 - type: Transform -- uid: 27801 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-60.5 - parent: 1 - type: Transform -- uid: 27802 - type: ClothingOuterCoatDetective - components: - - pos: -32.515205,-59.44035 - parent: 1 - type: Transform -- uid: 27803 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27804 - type: CableApcExtension - components: - - pos: 72.5,-31.5 - parent: 1 - type: Transform -- uid: 27805 - type: CableApcExtension - components: - - pos: 72.5,-30.5 - parent: 1 - type: Transform -- uid: 27806 - type: CableApcExtension - components: - - pos: 72.5,-29.5 - parent: 1 - type: Transform -- uid: 27807 - type: CableApcExtension - components: - - pos: 72.5,-28.5 - parent: 1 - type: Transform -- uid: 27808 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 31.5,-33.5 - parent: 1 - type: Transform -- uid: 27809 - type: Paper - components: - - pos: -36.348137,-46.59669 - parent: 1 - type: Transform - - content: > - Atmosia will rise again! - type: Paper -- uid: 27810 - type: PlushieBee - components: - - pos: -7.8529105,54.918877 - parent: 1 - type: Transform -- uid: 27811 - type: PlushieBee - components: - - pos: -6.6029105,50.731377 - parent: 1 - type: Transform -- uid: 27812 - type: ClothingHeadSafari - components: - - pos: -3.5832248,52.757553 - parent: 1 - type: Transform -- uid: 27813 - type: ClothingUniformJumpsuitSafari - components: - - pos: -3.4738498,52.42943 - parent: 1 - type: Transform -- uid: 27814 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: 15.5,-31.5 - parent: 1 - type: Transform -- uid: 27815 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 19.5,-33.5 - parent: 1 - type: Transform -- uid: 27816 - type: WallReinforced - components: - - pos: 13.5,-37.5 - parent: 1 - type: Transform -- uid: 27817 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27818 - type: WallReinforced - components: - - pos: 59.5,-69.5 - parent: 1 - type: Transform -- uid: 27819 - type: Grille - components: - - pos: 60.5,-70.5 - parent: 1 - type: Transform -- uid: 27820 - type: ReinforcedWindow - components: - - rot: -1.5707963267948966 rad - pos: 41.5,-31.5 - parent: 1 - type: Transform -- uid: 27821 - type: ReinforcedWindow - components: - - pos: 60.5,-70.5 - parent: 1 - type: Transform -- uid: 27822 - type: FloorDrain - components: - - pos: -9.5,-69.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 27823 - type: EmitterCircuitboard - components: - - pos: -37.508507,-17.430883 - parent: 1 - type: Transform -- uid: 27824 - type: ComputerFrame - components: - - rot: -1.5707963267948966 rad - pos: -67.5,-45.5 - parent: 1 - type: Transform -- uid: 27825 - type: Bookshelf - components: - - pos: 8.5,-10.5 - parent: 1 - type: Transform -- uid: 27826 - type: PottedPlantRandomPlastic - components: - - pos: -57.5,-60.5 - parent: 1 - type: Transform -- uid: 27827 - type: LockerWeldingSuppliesFilled - components: - - pos: 13.5,-47.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 27828 - type: LockerWeldingSuppliesFilled - components: - - pos: -53.5,-61.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 27829 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -55.5,-63.5 - parent: 1 - type: Transform -- uid: 27830 - type: WindowReinforcedDirectional - components: - - rot: 3.141592653589793 rad - pos: -54.5,-63.5 - parent: 1 - type: Transform -- uid: 27831 - type: CultAltarSpawner - components: - - pos: -56.5,-62.5 - parent: 1 - type: Transform -- uid: 27832 - type: RandomSoap - components: - - pos: -56.5,-62.5 - parent: 1 - type: Transform -- uid: 27833 - type: RandomPosterAny - components: - - pos: -52.5,-61.5 - parent: 1 - type: Transform -- uid: 27834 - type: RandomPosterAny - components: - - pos: -55.5,-57.5 - parent: 1 - type: Transform -- uid: 27835 - type: RandomPosterAny - components: - - pos: -57.5,-57.5 - parent: 1 - type: Transform -- uid: 27836 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: -56.5,-60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27837 - type: GasPipeBend - components: - - pos: -56.5,-58.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27838 - type: GasThermoMachineHeater - components: - - pos: -57.5,-59.5 - parent: 1 - type: Transform -- uid: 27839 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -57.5,-60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27840 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -56.5,-61.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27841 - type: GasPressurePump - components: - - pos: -56.5,-59.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27842 - type: GasPort - components: - - rot: 1.5707963267948966 rad - pos: -57.5,-58.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27843 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-63.5 - parent: 1 - type: Transform -- uid: 27844 - type: WindowReinforcedDirectional - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-64.5 - parent: 1 - type: Transform -- uid: 27845 - type: GasPipeBend - components: - - pos: -55.5,-61.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27846 - type: GasPipeStraight - components: - - pos: -55.5,-62.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27847 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: -55.5,-63.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27848 - type: CableApcExtension - components: - - pos: -53.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27849 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -53.5,-59.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27850 - type: ReinforcedWindow - components: - - pos: 9.5,-31.5 - parent: 1 - type: Transform -- uid: 27851 - type: WallReinforced - components: - - pos: 9.5,-32.5 - parent: 1 - type: Transform -- uid: 27852 - type: CableApcExtension - components: - - pos: 56.5,34.5 - parent: 1 - type: Transform -- uid: 27853 - type: ReinforcedWindow - components: - - pos: 9.5,-34.5 - parent: 1 - type: Transform -- uid: 27854 - type: SpawnMobCatGeneric - components: - - pos: -55.5,-64.5 - parent: 1 - type: Transform -- uid: 27855 - type: GasPassiveVent - components: - - pos: 71.5,-29.5 - parent: 1 - type: Transform - - color: '#9755CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27856 - type: SpawnPointResearchAssistant - components: - - pos: 49.5,-40.5 - parent: 1 - type: Transform -- uid: 27857 - type: RandomInstruments - components: - - pos: 54.5,-28.5 - parent: 1 - type: Transform -- uid: 27858 - type: LockerSyndicatePersonal - components: - - pos: -53.5,-86.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 27859 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 71.5,-31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27860 - type: CableApcExtension - components: - - pos: -71.5,-30.5 - parent: 1 - type: Transform -- uid: 27861 - type: TableWood - components: - - pos: -33.5,8.5 - parent: 1 - type: Transform -- uid: 27862 - type: TableWood - components: - - pos: -32.5,8.5 - parent: 1 - type: Transform -- uid: 27863 - type: ClothingUniformJumpsuitMonasticRobeDark - components: - - pos: -32.383476,8.575315 - parent: 1 - type: Transform -- uid: 27864 - type: ClothingUniformJumpsuitMonasticRobeDark - components: - - pos: -32.383476,8.575315 - parent: 1 - type: Transform -- uid: 27865 - type: ClothingUniformJumpsuitMonasticRobeDark - components: - - pos: -32.383476,8.575315 - parent: 1 - type: Transform -- uid: 27866 - type: ClothingUniformJumpsuitMonasticRobeDark - components: - - pos: -32.383476,8.575315 - parent: 1 - type: Transform -- uid: 27867 - type: ClothingUniformJumpsuitMonasticRobeLight - components: - - pos: -33.11785,8.55969 - parent: 1 - type: Transform -- uid: 27868 - type: ClothingUniformJumpsuitMonasticRobeLight - components: - - pos: -33.11785,8.55969 - parent: 1 - type: Transform -- uid: 27869 - type: ClothingUniformJumpsuitMonasticRobeLight - components: - - pos: -33.11785,8.55969 - parent: 1 - type: Transform -- uid: 27870 - type: ClothingUniformJumpsuitMonasticRobeLight - components: - - pos: -33.11785,8.55969 - parent: 1 - type: Transform -- uid: 27871 - type: ClothingUniformJumpsuitMonasticRobeLight - components: - - pos: -33.11785,8.55969 - parent: 1 - type: Transform -- uid: 27872 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-38.5 - parent: 1 - type: Transform - - color: '#999000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27873 - type: GasPressurePump - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-38.5 - parent: 1 - type: Transform - - color: '#999000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27874 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 69.5,-38.5 - parent: 1 - type: Transform - - color: '#999000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27875 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-38.5 - parent: 1 - type: Transform - - color: '#999000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27876 - type: AirlockMaintRnDLocked - components: - - name: science - type: MetaData - - pos: 59.5,-42.5 - parent: 1 - type: Transform -- uid: 27877 - type: WallSolid - components: - - pos: 60.5,-42.5 - parent: 1 - type: Transform -- uid: 27878 - type: GasPipeTJunction - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27879 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-42.5 - parent: 1 - type: Transform -- uid: 27880 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-40.5 - parent: 1 - type: Transform -- uid: 27881 - type: WallReinforced - components: - - pos: 10.5,-39.5 - parent: 1 - type: Transform -- uid: 27882 - type: SheetPlasma1 - components: - - pos: 39.28695,-35.266556 - parent: 1 - type: Transform -- uid: 27883 - type: SheetPlasma1 - components: - - pos: 39.583824,-35.40718 - parent: 1 - type: Transform -- uid: 27884 - type: BedsheetIan - components: - - pos: 48.5,-11.5 - parent: 1 - type: Transform -- uid: 27885 - type: Bed - components: - - pos: 48.5,-11.5 - parent: 1 - type: Transform -- uid: 27886 - type: BiomassReclaimerMachineCircuitboard - components: - - pos: -11.687319,37.80377 - parent: 1 - type: Transform -- uid: 27887 - type: RandomPosterContraband - components: - - pos: 6.5,-28.5 - parent: 1 - type: Transform -- uid: 27888 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-40.5 - parent: 1 - type: Transform -- uid: 27889 - type: ReinforcedWindow - components: - - pos: 2.5,-36.5 - parent: 1 - type: Transform -- uid: 27890 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 41.5,-33.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 27891 - type: ClothingHeadHatWelding - components: - - pos: 42.55075,-32.360874 - parent: 1 - type: Transform -- uid: 27892 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 43.5,-33.5 - parent: 1 - type: Transform -- uid: 27893 - type: Catwalk - components: - - pos: 8.5,-35.5 - parent: 1 - type: Transform -- uid: 27894 - type: Catwalk - components: - - pos: 8.5,-34.5 - parent: 1 - type: Transform -- uid: 27895 - type: Catwalk - components: - - pos: 8.5,-32.5 - parent: 1 - type: Transform -- uid: 27896 - type: Catwalk - components: - - pos: 8.5,-33.5 - parent: 1 - type: Transform -- uid: 27897 - type: Rack - components: - - pos: 42.5,-32.5 - parent: 1 - type: Transform -- uid: 27898 - type: WeldingFuelTankFull - components: - - pos: 39.5,-32.5 - parent: 1 - type: Transform -- uid: 27899 - type: WallReinforced - components: - - pos: 47.5,-32.5 - parent: 1 - type: Transform -- uid: 27900 - type: Catwalk - components: - - pos: 46.5,-33.5 - parent: 1 - type: Transform -- uid: 27901 - type: Catwalk - components: - - pos: 45.5,-33.5 - parent: 1 - type: Transform -- uid: 27902 - type: Catwalk - components: - - pos: 44.5,-33.5 - parent: 1 - type: Transform -- uid: 27903 - type: WallSolid - components: - - pos: 55.5,-33.5 - parent: 1 - type: Transform -- uid: 27904 - type: WallSolid - components: - - pos: 56.5,-36.5 - parent: 1 - type: Transform -- uid: 27905 - type: WallSolid - components: - - pos: 56.5,-34.5 - parent: 1 - type: Transform -- uid: 27906 - type: WallSolid - components: - - pos: 60.5,-27.5 - parent: 1 - type: Transform -- uid: 27907 - type: WallSolid - components: - - pos: 59.5,-27.5 - parent: 1 - type: Transform -- uid: 27908 - type: WallSolid - components: - - pos: 58.5,-27.5 - parent: 1 - type: Transform -- uid: 27909 - type: WallSolid - components: - - pos: 56.5,-29.5 - parent: 1 - type: Transform -- uid: 27910 - type: WallSolid - components: - - pos: 56.5,-30.5 - parent: 1 - type: Transform -- uid: 27911 - type: WallSolid - components: - - pos: 56.5,-28.5 - parent: 1 - type: Transform -- uid: 27912 - type: WallSolid - components: - - pos: 61.5,-27.5 - parent: 1 - type: Transform -- uid: 27913 - type: WallSolid - components: - - pos: 56.5,-27.5 - parent: 1 - type: Transform -- uid: 27914 - type: WallSolid - components: - - pos: 53.5,-29.5 - parent: 1 - type: Transform -- uid: 27915 - type: WallSolid - components: - - pos: 54.5,-29.5 - parent: 1 - type: Transform -- uid: 27916 - type: WallSolid - components: - - pos: 44.5,-62.5 - parent: 1 - type: Transform -- uid: 27917 - type: WallSolid - components: - - pos: 44.5,-63.5 - parent: 1 - type: Transform -- uid: 27918 - type: Table - components: - - pos: 53.5,-67.5 - parent: 1 - type: Transform -- uid: 27919 - type: WallSolid - components: - - pos: 53.5,-66.5 - parent: 1 - type: Transform -- uid: 27920 - type: FirelockGlass - components: - - pos: 4.5,-28.5 - parent: 1 - type: Transform -- uid: 27921 - type: Grille - components: - - pos: 2.5,-36.5 - parent: 1 - type: Transform -- uid: 27922 - type: RandomArcade - components: - - pos: 4.5,-30.5 - parent: 1 - type: Transform -- uid: 27923 - type: AirlockMaintLocked - components: - - pos: 6.5,-35.5 - parent: 1 - type: Transform -- uid: 27924 - type: RandomArcade - components: - - pos: 2.5,-30.5 - parent: 1 - type: Transform -- uid: 27925 - type: RandomArcade - components: - - pos: 2.5,-32.5 - parent: 1 - type: Transform -- uid: 27926 - type: RandomArcade - components: - - pos: 6.5,-30.5 - parent: 1 - type: Transform -- uid: 27927 - type: RandomArcade - components: - - pos: 6.5,-32.5 - parent: 1 - type: Transform -- uid: 27928 - type: Catwalk - components: - - pos: 8.5,-31.5 - parent: 1 - type: Transform -- uid: 27929 - type: Catwalk - components: - - pos: 8.5,-30.5 - parent: 1 - type: Transform -- uid: 27930 - type: EmergencyLight - components: - - pos: 60.5,-43.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 27931 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 73.5,-31.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27932 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 73.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 27933 - type: GasVentPump - components: - - pos: 73.5,-29.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 27934 - type: ClosetEmergencyFilledRandom - components: - - pos: 9.5,-36.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 27935 - type: ClosetFireFilled - components: - - pos: 9.5,-37.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 27936 - type: Chair - components: - - pos: 2.5,-40.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 27937 - type: CableApcExtension - components: - - pos: 6.5,-42.5 - parent: 1 - type: Transform -- uid: 27938 - type: CableApcExtension - components: - - pos: 7.5,-42.5 - parent: 1 - type: Transform -- uid: 27939 - type: CableApcExtension - components: - - pos: 9.5,-40.5 - parent: 1 - type: Transform -- uid: 27940 - type: CableApcExtension - components: - - pos: 9.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27941 - type: CableApcExtension - components: - - pos: 8.5,-39.5 - parent: 1 - type: Transform -- uid: 27942 - type: CableApcExtension - components: - - pos: 8.5,-38.5 - parent: 1 - type: Transform -- uid: 27943 - type: CableApcExtension - components: - - pos: 8.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27944 - type: CableApcExtension - components: - - pos: 8.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27945 - type: CableApcExtension - components: - - pos: 8.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27946 - type: CableApcExtension - components: - - pos: 8.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27947 - type: CableApcExtension - components: - - pos: 8.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27948 - type: CableApcExtension - components: - - pos: 8.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27949 - type: CableApcExtension - components: - - pos: 8.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27950 - type: CableApcExtension - components: - - pos: 8.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27951 - type: CableApcExtension - components: - - pos: 8.5,-29.5 - parent: 1 - type: Transform -- uid: 27952 - type: CableApcExtension - components: - - pos: 9.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27953 - type: CableApcExtension - components: - - pos: 10.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27954 - type: CableApcExtension - components: - - pos: 11.5,-29.5 - parent: 1 - type: Transform -- uid: 27955 - type: CableApcExtension - components: - - pos: 7.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27956 - type: CableApcExtension - components: - - pos: 6.5,-36.5 - parent: 1 - type: Transform -- uid: 27957 - type: CableApcExtension - components: - - pos: 6.5,-35.5 - parent: 1 - type: Transform -- uid: 27958 - type: CableApcExtension - components: - - pos: 6.5,-34.5 - parent: 1 - type: Transform -- uid: 27959 - type: CableApcExtension - components: - - pos: 6.5,-33.5 - parent: 1 - type: Transform -- uid: 27960 - type: CableApcExtension - components: - - pos: 6.5,-32.5 - parent: 1 - type: Transform -- uid: 27961 - type: CableApcExtension - components: - - pos: 6.5,-31.5 - parent: 1 - type: Transform -- uid: 27962 - type: CableApcExtension - components: - - pos: 5.5,-31.5 - parent: 1 - type: Transform -- uid: 27963 - type: CableApcExtension - components: - - pos: 4.5,-31.5 - parent: 1 - type: Transform -- uid: 27964 - type: CableApcExtension - components: - - pos: 3.5,-31.5 - parent: 1 - type: Transform -- uid: 27965 - type: CableApcExtension - components: - - pos: 2.5,-31.5 - parent: 1 - type: Transform -- uid: 27966 - type: CableApcExtension - components: - - pos: 4.5,-32.5 - parent: 1 - type: Transform -- uid: 27967 - type: CableApcExtension - components: - - pos: 4.5,-33.5 - parent: 1 - type: Transform -- uid: 27968 - type: CableApcExtension - components: - - pos: 55.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27969 - type: EmergencyLight - components: - - pos: 6.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 27970 - type: CableApcExtension - components: - - pos: 6.5,-30.5 - parent: 1 - type: Transform -- uid: 27971 - type: Grille - components: - - pos: 51.5,-68.5 - parent: 1 - type: Transform -- uid: 27972 - type: Grille - components: - - pos: 50.5,-68.5 - parent: 1 - type: Transform -- uid: 27973 - type: CableMV - components: - - pos: 52.5,-65.5 - parent: 1 - type: Transform -- uid: 27974 - type: CableMV - components: - - pos: 53.5,-65.5 - parent: 1 - type: Transform -- uid: 27975 - type: CableMV - components: - - pos: 54.5,-65.5 - parent: 1 - type: Transform -- uid: 27976 - type: CableMV - components: - - pos: 55.5,-65.5 - parent: 1 - type: Transform -- uid: 27977 - type: CableMV - components: - - pos: 55.5,-64.5 - parent: 1 - type: Transform -- uid: 27978 - type: CableMV - components: - - pos: 55.5,-63.5 - parent: 1 - type: Transform -- uid: 27979 - type: CableMV - components: - - pos: 55.5,-62.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27980 - type: APCBasic - components: - - pos: 55.5,-62.5 - parent: 1 - type: Transform -- uid: 27981 - type: CrateSecurityNonlethal - components: - - pos: 29.5,29.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 27982 - type: TableReinforced - components: - - pos: 31.5,27.5 - parent: 1 - type: Transform -- uid: 27983 - type: TableReinforced - components: - - pos: 32.5,27.5 - parent: 1 - type: Transform -- uid: 27984 - type: TableReinforced - components: - - pos: 26.5,27.5 - parent: 1 - type: Transform -- uid: 27985 - type: TableReinforced - components: - - pos: 27.5,27.5 - parent: 1 - type: Transform -- uid: 27986 - type: TableReinforced - components: - - pos: 26.5,29.5 - parent: 1 - type: Transform -- uid: 27987 - type: TableReinforced - components: - - pos: 27.5,29.5 - parent: 1 - type: Transform -- uid: 27988 - type: CableApcExtension - components: - - pos: 54.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27989 - type: CableApcExtension - components: - - pos: 53.5,-32.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27990 - type: CableApcExtension - components: - - pos: 52.5,-32.5 - parent: 1 - type: Transform -- uid: 27991 - type: CableApcExtension - components: - - pos: 55.5,-31.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27992 - type: CableApcExtension - components: - - pos: 55.5,-30.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27993 - type: CableApcExtension - components: - - pos: 55.5,-29.5 - parent: 1 - type: Transform -- uid: 27994 - type: CableApcExtension - components: - - pos: 55.5,-28.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27995 - type: CableApcExtension - components: - - pos: 55.5,-27.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27996 - type: CableApcExtension - components: - - pos: 55.5,-26.5 - parent: 1 - type: Transform -- uid: 27997 - type: CableApcExtension - components: - - pos: 61.5,-26.5 - parent: 1 - type: Transform -- uid: 27998 - type: CableApcExtension - components: - - pos: 60.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 27999 - type: CableApcExtension - components: - - pos: 59.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28000 - type: CableApcExtension - components: - - pos: 58.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28001 - type: CableApcExtension - components: - - pos: 57.5,-26.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28002 - type: CableApcExtension - components: - - pos: 57.5,-27.5 - parent: 1 - type: Transform -- uid: 28003 - type: CableApcExtension - components: - - pos: 57.5,-28.5 - parent: 1 - type: Transform -- uid: 28004 - type: CableApcExtension - components: - - pos: 58.5,-28.5 - parent: 1 - type: Transform -- uid: 28005 - type: CableApcExtension - components: - - pos: 58.5,-29.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28006 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 63.5,-36.5 - parent: 1 - type: Transform -- uid: 28007 - type: AnomalyScanner - components: - - pos: 63.468235,-36.25785 - parent: 1 - type: Transform -- uid: 28008 - type: WallSolid - components: - - pos: 56.5,-35.5 - parent: 1 - type: Transform -- uid: 28009 - type: CableApcExtension - components: - - pos: 55.5,-35.5 - parent: 1 - type: Transform -- uid: 28010 - type: CableApcExtension - components: - - pos: 54.5,-35.5 - parent: 1 - type: Transform -- uid: 28011 - type: CableApcExtension - components: - - pos: 54.5,-36.5 - parent: 1 - type: Transform -- uid: 28012 - type: CableApcExtension - components: - - pos: 54.5,-37.5 - parent: 1 - type: Transform -- uid: 28013 - type: CableApcExtension - components: - - pos: 55.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28014 - type: CableApcExtension - components: - - pos: 55.5,-38.5 - parent: 1 - type: Transform -- uid: 28015 - type: CableApcExtension - components: - - pos: 55.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28016 - type: CableApcExtension - components: - - pos: 57.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28017 - type: CableApcExtension - components: - - pos: 58.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28018 - type: CableApcExtension - components: - - pos: 59.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28019 - type: CableApcExtension - components: - - pos: 59.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28020 - type: CableApcExtension - components: - - pos: 59.5,-40.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28021 - type: CableApcExtension - components: - - pos: 59.5,-41.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28022 - type: CableApcExtension - components: - - pos: 59.5,-42.5 - parent: 1 - type: Transform -- uid: 28023 - type: CableApcExtension - components: - - pos: 59.5,-43.5 - parent: 1 - type: Transform -- uid: 28024 - type: CableApcExtension - components: - - pos: 36.5,-33.5 - parent: 1 - type: Transform -- uid: 28025 - type: CableApcExtension - components: - - pos: 37.5,-33.5 - parent: 1 - type: Transform -- uid: 28026 - type: CableApcExtension - components: - - pos: 38.5,-33.5 - parent: 1 - type: Transform -- uid: 28027 - type: CableApcExtension - components: - - pos: 39.5,-33.5 - parent: 1 - type: Transform -- uid: 28028 - type: CableApcExtension - components: - - pos: 40.5,-33.5 - parent: 1 - type: Transform -- uid: 28029 - type: CableApcExtension - components: - - pos: 41.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28030 - type: CableApcExtension - components: - - pos: 42.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28031 - type: CableApcExtension - components: - - pos: 43.5,-33.5 - parent: 1 - type: Transform -- uid: 28032 - type: CableApcExtension - components: - - pos: 44.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28033 - type: CableApcExtension - components: - - pos: 45.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28034 - type: CableApcExtension - components: - - pos: 46.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28035 - type: CableApcExtension - components: - - pos: 47.5,-33.5 - parent: 1 - type: Transform -- uid: 28036 - type: CableApcExtension - components: - - pos: 48.5,-33.5 - parent: 1 - type: Transform -- uid: 28037 - type: CableApcExtension - components: - - pos: 49.5,-33.5 - parent: 1 - type: Transform -- uid: 28038 - type: CableApcExtension - components: - - pos: 49.5,-34.5 - parent: 1 - type: Transform -- uid: 28039 - type: CableApcExtension - components: - - pos: 50.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28040 - type: CableApcExtension - components: - - pos: 51.5,-34.5 - parent: 1 - type: Transform -- uid: 28041 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 4.5,-35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28042 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28043 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-44.5 - parent: 1 - type: Transform -- uid: 28044 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 44.5,-44.5 - parent: 1 - type: Transform -- uid: 28045 - type: CableApcExtension - components: - - pos: 55.5,-64.5 - parent: 1 - type: Transform -- uid: 28046 - type: CableApcExtension - components: - - pos: 55.5,-65.5 - parent: 1 - type: Transform -- uid: 28047 - type: CableApcExtension - components: - - pos: 54.5,-65.5 - parent: 1 - type: Transform -- uid: 28048 - type: CableApcExtension - components: - - pos: 53.5,-65.5 - parent: 1 - type: Transform -- uid: 28049 - type: CableApcExtension - components: - - pos: 52.5,-65.5 - parent: 1 - type: Transform -- uid: 28050 - type: CableApcExtension - components: - - pos: 51.5,-65.5 - parent: 1 - type: Transform -- uid: 28051 - type: CableApcExtension - components: - - pos: 50.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28052 - type: CableApcExtension - components: - - pos: 49.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28053 - type: CableApcExtension - components: - - pos: 48.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28054 - type: CableApcExtension - components: - - pos: 47.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28055 - type: CableApcExtension - components: - - pos: 46.5,-65.5 - parent: 1 - type: Transform -- uid: 28056 - type: CableApcExtension - components: - - pos: 45.5,-65.5 - parent: 1 - type: Transform -- uid: 28057 - type: CableApcExtension - components: - - pos: 45.5,-64.5 - parent: 1 - type: Transform -- uid: 28058 - type: CableApcExtension - components: - - pos: 44.5,-64.5 - parent: 1 - type: Transform -- uid: 28059 - type: CableApcExtension - components: - - pos: 43.5,-64.5 - parent: 1 - type: Transform -- uid: 28060 - type: CableApcExtension - components: - - pos: 45.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28061 - type: CableApcExtension - components: - - pos: 43.5,-63.5 - parent: 1 - type: Transform -- uid: 28062 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 16.5,38.5 - parent: 1 - type: Transform -- uid: 28063 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 18.5,37.5 - parent: 1 - type: Transform -- uid: 28064 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 14.5,37.5 - parent: 1 - type: Transform -- uid: 28065 - type: RandomArcade - components: - - pos: 46.5,12.5 - parent: 1 - type: Transform -- uid: 28066 - type: IntercomSupply - components: - - rot: 1.5707963267948966 rad - pos: -26.5,20.5 - parent: 1 - type: Transform -- uid: 28067 - type: ReinforcedWindow - components: - - pos: 36.5,18.5 - parent: 1 - type: Transform -- uid: 28068 - type: ReinforcedWindow - components: - - pos: 34.5,18.5 - parent: 1 - type: Transform -- uid: 28069 - type: Firelock - components: - - pos: 19.5,-44.5 - parent: 1 - type: Transform -- uid: 28070 - type: SignalSwitch - components: - - pos: 33.483017,17.346874 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 18196 - - port: Open - uid: 21042 - - port: Open - uid: 18221 - - port: Open - uid: 18740 - - port: Open - uid: 6695 - Off: - - port: Close - uid: 18196 - - port: Close - uid: 21042 - - port: Close - uid: 18221 - - port: Close - uid: 18740 - - port: Close - uid: 6695 - type: SignalTransmitter - - type: ItemCooldown -- uid: 28071 - type: WallReinforced - components: - - pos: 69.5,-68.5 - parent: 1 - type: Transform -- uid: 28072 - type: RandomPosterContraband - components: - - pos: 1.5,-29.5 - parent: 1 - type: Transform -- uid: 28073 - type: RandomPosterLegit - components: - - pos: 2.5,-28.5 - parent: 1 - type: Transform -- uid: 28074 - type: ChairWood - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-35.5 - parent: 1 - type: Transform -- uid: 28075 - type: CounterWoodFrame - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-35.5 - parent: 1 - type: Transform -- uid: 28076 - type: FloorDrain - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 28077 - type: GasPipeStraight - components: - - pos: 5.5,-28.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28078 - type: GasPipeStraight - components: - - pos: 5.5,-29.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28079 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 5.5,-30.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28080 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 3.5,-30.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28081 - type: AirSensor - components: - - rot: 3.141592653589793 rad - pos: 4.5,-33.5 - parent: 1 - type: Transform -- uid: 28082 - type: GasPipeTJunction - components: - - pos: 3.5,-27.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28083 - type: CarpetSBlue - components: - - pos: 27.5,-23.5 - parent: 1 - type: Transform -- uid: 28084 - type: WallSolid - components: - - pos: 57.5,-66.5 - parent: 1 - type: Transform -- uid: 28085 - type: WallSolid - components: - - pos: 57.5,-67.5 - parent: 1 - type: Transform -- uid: 28086 - type: WallSolid - components: - - pos: 65.5,-66.5 - parent: 1 - type: Transform -- uid: 28087 - type: Chair - components: - - pos: 60.5,-64.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28088 - type: Grille - components: - - pos: 62.5,-70.5 - parent: 1 - type: Transform -- uid: 28089 - type: AirlockMaintGlass - components: - - pos: 65.5,-65.5 - parent: 1 - type: Transform -- uid: 28090 - type: AirlockMaintGlass - components: - - pos: 57.5,-65.5 - parent: 1 - type: Transform -- uid: 28091 - type: WallReinforced - components: - - pos: 64.5,-69.5 - parent: 1 - type: Transform -- uid: 28092 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-65.5 - parent: 1 - type: Transform -- uid: 28093 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 60.5,-65.5 - parent: 1 - type: Transform -- uid: 28094 - type: Chair - components: - - pos: 64.5,-66.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28095 - type: Chair - components: - - pos: 64.5,-64.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28096 - type: CarpetChapel - components: - - pos: 59.5,-66.5 - parent: 1 - type: Transform -- uid: 28097 - type: Chair - components: - - pos: 62.5,-66.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28098 - type: Chair - components: - - pos: 63.5,-66.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28099 - type: Chair - components: - - pos: 59.5,-66.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28100 - type: Chair - components: - - pos: 58.5,-66.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28101 - type: Chair - components: - - pos: 62.5,-62.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28102 - type: Chair - components: - - pos: 63.5,-62.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28103 - type: Chair - components: - - pos: 59.5,-62.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28104 - type: Chair - components: - - pos: 58.5,-62.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28105 - type: Chair - components: - - pos: 58.5,-64.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28106 - type: Chair - components: - - pos: 59.5,-64.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28107 - type: WallReinforced - components: - - pos: 59.5,-70.5 - parent: 1 - type: Transform -- uid: 28108 - type: WallReinforced - components: - - pos: 58.5,-69.5 - parent: 1 - type: Transform -- uid: 28109 - type: Chair - components: - - pos: 62.5,-64.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28110 - type: Chair - components: - - pos: 63.5,-64.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28111 - type: Chair - components: - - pos: 64.5,-62.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28112 - type: FirelockGlass - components: - - pos: -45.5,27.5 - parent: 1 - type: Transform -- uid: 28113 - type: Chair - components: - - pos: 60.5,-62.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28114 - type: WallSolid - components: - - pos: 65.5,-62.5 - parent: 1 - type: Transform -- uid: 28115 - type: WallSolid - components: - - pos: 65.5,-64.5 - parent: 1 - type: Transform -- uid: 28116 - type: WallSolid - components: - - pos: 65.5,-63.5 - parent: 1 - type: Transform -- uid: 28117 - type: Table - components: - - pos: 59.5,-29.5 - parent: 1 - type: Transform -- uid: 28118 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-65.5 - parent: 1 - type: Transform -- uid: 28119 - type: CarpetChapel - components: - - pos: 62.5,-66.5 - parent: 1 - type: Transform -- uid: 28120 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 63.5,-65.5 - parent: 1 - type: Transform -- uid: 28121 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-66.5 - parent: 1 - type: Transform -- uid: 28122 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-63.5 - parent: 1 - type: Transform -- uid: 28123 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 63.5,-63.5 - parent: 1 - type: Transform -- uid: 28124 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-64.5 - parent: 1 - type: Transform -- uid: 28125 - type: CarpetChapel - components: - - pos: 62.5,-64.5 - parent: 1 - type: Transform -- uid: 28126 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 60.5,-63.5 - parent: 1 - type: Transform -- uid: 28127 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-63.5 - parent: 1 - type: Transform -- uid: 28128 - type: CarpetChapel - components: - - pos: 59.5,-64.5 - parent: 1 - type: Transform -- uid: 28129 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-64.5 - parent: 1 - type: Transform -- uid: 28130 - type: CarpetChapel - components: - - pos: 60.5,-68.5 - parent: 1 - type: Transform -- uid: 28131 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-68.5 - parent: 1 - type: Transform -- uid: 28132 - type: CarpetChapel - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-67.5 - parent: 1 - type: Transform -- uid: 28133 - type: CarpetChapel - components: - - rot: 3.141592653589793 rad - pos: 62.5,-67.5 - parent: 1 - type: Transform -- uid: 28134 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 61.5,-63.5 - parent: 1 - type: Transform -- uid: 28135 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 61.5,-64.5 - parent: 1 - type: Transform -- uid: 28136 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 61.5,-65.5 - parent: 1 - type: Transform -- uid: 28137 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 61.5,-66.5 - parent: 1 - type: Transform -- uid: 28138 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 61.5,-67.5 - parent: 1 - type: Transform -- uid: 28139 - type: Carpet - components: - - rot: 3.141592653589793 rad - pos: 61.5,-68.5 - parent: 1 - type: Transform -- uid: 28140 - type: PlushieLizard - components: - - pos: 61.496056,-69.34596 - parent: 1 - type: Transform -- uid: 28141 - type: BannerRevolution - components: - - pos: 62.5,-69.5 - parent: 1 - type: Transform -- uid: 28142 - type: BannerRevolution - components: - - pos: 60.5,-69.5 - parent: 1 - type: Transform -- uid: 28143 - type: CableApcExtension - components: - - pos: 56.5,-65.5 - parent: 1 - type: Transform -- uid: 28144 - type: CableApcExtension - components: - - pos: 57.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28145 - type: CableApcExtension - components: - - pos: 58.5,-65.5 - parent: 1 - type: Transform -- uid: 28146 - type: CableApcExtension - components: - - pos: 59.5,-65.5 - parent: 1 - type: Transform -- uid: 28147 - type: CableApcExtension - components: - - pos: 60.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28148 - type: CableApcExtension - components: - - pos: 61.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28149 - type: CableApcExtension - components: - - pos: 61.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28150 - type: CableApcExtension - components: - - pos: 61.5,-67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28151 - type: CableApcExtension - components: - - pos: 61.5,-68.5 - parent: 1 - type: Transform -- uid: 28152 - type: CableApcExtension - components: - - pos: 62.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28153 - type: CableApcExtension - components: - - pos: 63.5,-65.5 - parent: 1 - type: Transform -- uid: 28154 - type: CableApcExtension - components: - - pos: 64.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28155 - type: CableApcExtension - components: - - pos: 65.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28156 - type: CableApcExtension - components: - - pos: 66.5,-65.5 - parent: 1 - type: Transform -- uid: 28157 - type: CableApcExtension - components: - - pos: 61.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28158 - type: CableApcExtension - components: - - pos: 61.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28159 - type: CableApcExtension - components: - - pos: 61.5,-62.5 - parent: 1 - type: Transform -- uid: 28160 - type: CableApcExtension - components: - - pos: 62.5,-62.5 - parent: 1 - type: Transform -- uid: 28161 - type: CableApcExtension - components: - - pos: 60.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28162 - type: CableApcExtension - components: - - pos: 59.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28163 - type: ClosetEmergencyFilledRandom - components: - - pos: 74.5,-51.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 28164 - type: WallSolid - components: - - pos: 73.5,-56.5 - parent: 1 - type: Transform -- uid: 28165 - type: WallSolid - components: - - pos: 74.5,-53.5 - parent: 1 - type: Transform -- uid: 28166 - type: ClosetFireFilled - components: - - pos: 74.5,-52.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 28167 - type: WallReinforced - components: - - pos: 67.5,-68.5 - parent: 1 - type: Transform -- uid: 28168 - type: WallReinforced - components: - - pos: 67.5,-69.5 - parent: 1 - type: Transform -- uid: 28169 - type: AirlockExternalGlassLocked - components: - - pos: 68.5,-67.5 - parent: 1 - type: Transform -- uid: 28170 - type: AirlockExternalGlassLocked - components: - - pos: 68.5,-69.5 - parent: 1 - type: Transform -- uid: 28171 - type: Catwalk - components: - - pos: 68.5,-70.5 - parent: 1 - type: Transform -- uid: 28172 - type: Catwalk - components: - - pos: 69.5,-71.5 - parent: 1 - type: Transform -- uid: 28173 - type: Catwalk - components: - - pos: 70.5,-71.5 - parent: 1 - type: Transform -- uid: 28174 - type: Catwalk - components: - - pos: 71.5,-71.5 - parent: 1 - type: Transform -- uid: 28175 - type: Catwalk - components: - - pos: 71.5,-71.5 - parent: 1 - type: Transform -- uid: 28176 - type: Catwalk - components: - - pos: 71.5,-70.5 - parent: 1 - type: Transform -- uid: 28177 - type: Catwalk - components: - - pos: 72.5,-70.5 - parent: 1 - type: Transform -- uid: 28178 - type: Catwalk - components: - - pos: 72.5,-69.5 - parent: 1 - type: Transform -- uid: 28179 - type: Catwalk - components: - - pos: 73.5,-69.5 - parent: 1 - type: Transform -- uid: 28180 - type: Catwalk - components: - - pos: 74.5,-69.5 - parent: 1 - type: Transform -- uid: 28181 - type: AsteroidRock - components: - - pos: 69.5,-73.5 - parent: 1 - type: Transform -- uid: 28182 - type: Catwalk - components: - - pos: 74.5,-68.5 - parent: 1 - type: Transform -- uid: 28183 - type: Catwalk - components: - - pos: 74.5,-67.5 - parent: 1 - type: Transform -- uid: 28184 - type: Catwalk - components: - - pos: 74.5,-66.5 - parent: 1 - type: Transform -- uid: 28185 - type: Catwalk - components: - - pos: 74.5,-65.5 - parent: 1 - type: Transform -- uid: 28186 - type: Catwalk - components: - - pos: 74.5,-64.5 - parent: 1 - type: Transform -- uid: 28187 - type: Catwalk - components: - - pos: 74.5,-63.5 - parent: 1 - type: Transform -- uid: 28188 - type: Catwalk - components: - - pos: 75.5,-63.5 - parent: 1 - type: Transform -- uid: 28189 - type: Catwalk - components: - - pos: 76.5,-63.5 - parent: 1 - type: Transform -- uid: 28190 - type: Catwalk - components: - - pos: 77.5,-63.5 - parent: 1 - type: Transform -- uid: 28191 - type: Catwalk - components: - - pos: 78.5,-63.5 - parent: 1 - type: Transform -- uid: 28192 - type: Catwalk - components: - - pos: 79.5,-63.5 - parent: 1 - type: Transform -- uid: 28193 - type: Catwalk - components: - - pos: 79.5,-51.5 - parent: 1 - type: Transform -- uid: 28194 - type: Catwalk - components: - - pos: 79.5,-52.5 - parent: 1 - type: Transform -- uid: 28195 - type: Catwalk - components: - - pos: 79.5,-53.5 - parent: 1 - type: Transform -- uid: 28196 - type: Catwalk - components: - - pos: 79.5,-54.5 - parent: 1 - type: Transform -- uid: 28197 - type: Catwalk - components: - - pos: 79.5,-55.5 - parent: 1 - type: Transform -- uid: 28198 - type: Catwalk - components: - - pos: 79.5,-56.5 - parent: 1 - type: Transform -- uid: 28199 - type: Catwalk - components: - - pos: 79.5,-57.5 - parent: 1 - type: Transform -- uid: 28200 - type: Catwalk - components: - - pos: 79.5,-58.5 - parent: 1 - type: Transform -- uid: 28201 - type: Catwalk - components: - - pos: 79.5,-59.5 - parent: 1 - type: Transform -- uid: 28202 - type: Catwalk - components: - - pos: 79.5,-60.5 - parent: 1 - type: Transform -- uid: 28203 - type: Catwalk - components: - - pos: 79.5,-61.5 - parent: 1 - type: Transform -- uid: 28204 - type: Catwalk - components: - - pos: 79.5,-62.5 - parent: 1 - type: Transform -- uid: 28205 - type: Catwalk - components: - - pos: 72.5,-71.5 - parent: 1 - type: Transform -- uid: 28206 - type: Catwalk - components: - - pos: 71.5,-69.5 - parent: 1 - type: Transform -- uid: 28207 - type: AsteroidRock - components: - - pos: 69.5,-70.5 - parent: 1 - type: Transform -- uid: 28208 - type: AsteroidRock - components: - - pos: 70.5,-70.5 - parent: 1 - type: Transform -- uid: 28209 - type: AsteroidRock - components: - - pos: 70.5,-69.5 - parent: 1 - type: Transform -- uid: 28210 - type: AsteroidRock - components: - - pos: 70.5,-68.5 - parent: 1 - type: Transform -- uid: 28211 - type: AsteroidRock - components: - - pos: 71.5,-68.5 - parent: 1 - type: Transform -- uid: 28212 - type: AsteroidRock - components: - - pos: 72.5,-65.5 - parent: 1 - type: Transform -- uid: 28213 - type: AsteroidRock - components: - - pos: 72.5,-66.5 - parent: 1 - type: Transform -- uid: 28214 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 77.5,-57.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28215 - type: AsteroidRock - components: - - pos: 77.5,-56.5 - parent: 1 - type: Transform -- uid: 28216 - type: AsteroidRock - components: - - pos: 77.5,-55.5 - parent: 1 - type: Transform -- uid: 28217 - type: AsteroidRock - components: - - pos: 77.5,-54.5 - parent: 1 - type: Transform -- uid: 28218 - type: AsteroidRock - components: - - pos: 77.5,-53.5 - parent: 1 - type: Transform -- uid: 28219 - type: AsteroidRock - components: - - pos: 77.5,-52.5 - parent: 1 - type: Transform -- uid: 28220 - type: AsteroidRock - components: - - pos: 77.5,-51.5 - parent: 1 - type: Transform -- uid: 28221 - type: AsteroidRock - components: - - pos: 78.5,-51.5 - parent: 1 - type: Transform -- uid: 28222 - type: AsteroidRock - components: - - pos: 80.5,-51.5 - parent: 1 - type: Transform -- uid: 28223 - type: AsteroidRock - components: - - pos: 80.5,-52.5 - parent: 1 - type: Transform -- uid: 28224 - type: AsteroidRock - components: - - pos: 80.5,-53.5 - parent: 1 - type: Transform -- uid: 28225 - type: AsteroidRock - components: - - pos: 80.5,-54.5 - parent: 1 - type: Transform -- uid: 28226 - type: AsteroidRock - components: - - pos: 80.5,-55.5 - parent: 1 - type: Transform -- uid: 28227 - type: AsteroidRock - components: - - pos: 80.5,-56.5 - parent: 1 - type: Transform -- uid: 28228 - type: AsteroidRock - components: - - pos: 80.5,-57.5 - parent: 1 - type: Transform -- uid: 28229 - type: AsteroidRock - components: - - pos: 81.5,-58.5 - parent: 1 - type: Transform -- uid: 28230 - type: AsteroidRock - components: - - pos: 81.5,-59.5 - parent: 1 - type: Transform -- uid: 28231 - type: AsteroidRock - components: - - pos: 80.5,-60.5 - parent: 1 - type: Transform -- uid: 28232 - type: AsteroidRock - components: - - pos: 80.5,-61.5 - parent: 1 - type: Transform -- uid: 28233 - type: AsteroidRock - components: - - pos: 80.5,-62.5 - parent: 1 - type: Transform -- uid: 28234 - type: AsteroidRock - components: - - pos: 81.5,-60.5 - parent: 1 - type: Transform -- uid: 28235 - type: AsteroidRock - components: - - pos: 81.5,-61.5 - parent: 1 - type: Transform -- uid: 28236 - type: AsteroidRock - components: - - pos: 81.5,-62.5 - parent: 1 - type: Transform -- uid: 28237 - type: AsteroidRock - components: - - pos: 81.5,-63.5 - parent: 1 - type: Transform -- uid: 28238 - type: AsteroidRock - components: - - pos: 80.5,-63.5 - parent: 1 - type: Transform -- uid: 28239 - type: AsteroidRock - components: - - pos: 80.5,-64.5 - parent: 1 - type: Transform -- uid: 28240 - type: AsteroidRock - components: - - pos: 81.5,-55.5 - parent: 1 - type: Transform -- uid: 28241 - type: AsteroidRock - components: - - pos: 81.5,-56.5 - parent: 1 - type: Transform -- uid: 28242 - type: AsteroidRock - components: - - pos: 81.5,-57.5 - parent: 1 - type: Transform -- uid: 28243 - type: AsteroidRock - components: - - pos: 78.5,-53.5 - parent: 1 - type: Transform -- uid: 28244 - type: AsteroidRock - components: - - pos: 78.5,-54.5 - parent: 1 - type: Transform -- uid: 28245 - type: AsteroidRock - components: - - pos: 74.5,-61.5 - parent: 1 - type: Transform -- uid: 28246 - type: AsteroidRock - components: - - pos: 75.5,-61.5 - parent: 1 - type: Transform -- uid: 28247 - type: AsteroidRock - components: - - pos: 76.5,-61.5 - parent: 1 - type: Transform -- uid: 28248 - type: AsteroidRock - components: - - pos: 77.5,-61.5 - parent: 1 - type: Transform -- uid: 28249 - type: AsteroidRock - components: - - pos: 77.5,-59.5 - parent: 1 - type: Transform -- uid: 28250 - type: AsteroidRock - components: - - pos: 77.5,-60.5 - parent: 1 - type: Transform -- uid: 28251 - type: AsteroidRock - components: - - pos: 76.5,-60.5 - parent: 1 - type: Transform -- uid: 28252 - type: AsteroidRock - components: - - pos: 76.5,-59.5 - parent: 1 - type: Transform -- uid: 28253 - type: AsteroidRock - components: - - pos: 75.5,-60.5 - parent: 1 - type: Transform -- uid: 28254 - type: AsteroidRock - components: - - pos: 74.5,-60.5 - parent: 1 - type: Transform -- uid: 28255 - type: AsteroidRock - components: - - pos: 74.5,-59.5 - parent: 1 - type: Transform -- uid: 28256 - type: AsteroidRock - components: - - pos: 75.5,-59.5 - parent: 1 - type: Transform -- uid: 28257 - type: AsteroidRock - components: - - pos: 76.5,-58.5 - parent: 1 - type: Transform -- uid: 28258 - type: AsteroidRock - components: - - pos: 77.5,-58.5 - parent: 1 - type: Transform -- uid: 28259 - type: AsteroidRock - components: - - pos: 73.5,-61.5 - parent: 1 - type: Transform -- uid: 28260 - type: AsteroidRock - components: - - pos: 73.5,-62.5 - parent: 1 - type: Transform -- uid: 28261 - type: AsteroidRock - components: - - pos: 74.5,-62.5 - parent: 1 - type: Transform -- uid: 28262 - type: AsteroidRock - components: - - pos: 76.5,-62.5 - parent: 1 - type: Transform -- uid: 28263 - type: AsteroidRock - components: - - pos: 78.5,-60.5 - parent: 1 - type: Transform -- uid: 28264 - type: AsteroidRock - components: - - pos: 78.5,-61.5 - parent: 1 - type: Transform -- uid: 28265 - type: AsteroidRock - components: - - pos: 78.5,-62.5 - parent: 1 - type: Transform -- uid: 28266 - type: AsteroidRock - components: - - pos: 77.5,-62.5 - parent: 1 - type: Transform -- uid: 28267 - type: AsteroidRock - components: - - pos: 75.5,-64.5 - parent: 1 - type: Transform -- uid: 28268 - type: AsteroidRock - components: - - pos: 75.5,-65.5 - parent: 1 - type: Transform -- uid: 28269 - type: AsteroidRock - components: - - pos: 75.5,-66.5 - parent: 1 - type: Transform -- uid: 28270 - type: AsteroidRock - components: - - pos: 76.5,-64.5 - parent: 1 - type: Transform -- uid: 28271 - type: AsteroidRock - components: - - pos: 76.5,-65.5 - parent: 1 - type: Transform -- uid: 28272 - type: AsteroidRock - components: - - pos: 76.5,-66.5 - parent: 1 - type: Transform -- uid: 28273 - type: AsteroidRock - components: - - pos: 77.5,-64.5 - parent: 1 - type: Transform -- uid: 28274 - type: AsteroidRock - components: - - pos: 77.5,-65.5 - parent: 1 - type: Transform -- uid: 28275 - type: AsteroidRock - components: - - pos: 77.5,-66.5 - parent: 1 - type: Transform -- uid: 28276 - type: AsteroidRock - components: - - pos: 78.5,-65.5 - parent: 1 - type: Transform -- uid: 28277 - type: AsteroidRock - components: - - pos: 79.5,-65.5 - parent: 1 - type: Transform -- uid: 28278 - type: AsteroidRock - components: - - pos: 78.5,-66.5 - parent: 1 - type: Transform -- uid: 28279 - type: AsteroidRock - components: - - pos: 80.5,-65.5 - parent: 1 - type: Transform -- uid: 28280 - type: AsteroidRock - components: - - pos: 79.5,-66.5 - parent: 1 - type: Transform -- uid: 28281 - type: WallReinforced - components: - - pos: 76.5,-56.5 - parent: 1 - type: Transform -- uid: 28282 - type: WallReinforced - components: - - pos: 76.5,-55.5 - parent: 1 - type: Transform -- uid: 28283 - type: WallReinforced - components: - - pos: 76.5,-54.5 - parent: 1 - type: Transform -- uid: 28284 - type: WallReinforced - components: - - pos: 76.5,-53.5 - parent: 1 - type: Transform -- uid: 28285 - type: AsteroidRock - components: - - pos: 67.5,-70.5 - parent: 1 - type: Transform -- uid: 28286 - type: AsteroidRock - components: - - pos: 66.5,-69.5 - parent: 1 - type: Transform -- uid: 28287 - type: AsteroidRock - components: - - pos: 66.5,-68.5 - parent: 1 - type: Transform -- uid: 28288 - type: AsteroidRock - components: - - pos: 65.5,-69.5 - parent: 1 - type: Transform -- uid: 28289 - type: AsteroidRock - components: - - pos: 64.5,-70.5 - parent: 1 - type: Transform -- uid: 28290 - type: AsteroidRock - components: - - pos: 66.5,-70.5 - parent: 1 - type: Transform -- uid: 28291 - type: AsteroidRock - components: - - pos: 65.5,-70.5 - parent: 1 - type: Transform -- uid: 28292 - type: AsteroidRock - components: - - pos: 65.5,-71.5 - parent: 1 - type: Transform -- uid: 28293 - type: AsteroidRock - components: - - pos: 66.5,-72.5 - parent: 1 - type: Transform -- uid: 28294 - type: AsteroidRock - components: - - pos: 67.5,-73.5 - parent: 1 - type: Transform -- uid: 28295 - type: AsteroidRock - components: - - pos: 67.5,-72.5 - parent: 1 - type: Transform -- uid: 28296 - type: AsteroidRock - components: - - pos: 70.5,-73.5 - parent: 1 - type: Transform -- uid: 28297 - type: AsteroidRock - components: - - pos: 71.5,-73.5 - parent: 1 - type: Transform -- uid: 28298 - type: AsteroidRock - components: - - pos: 72.5,-73.5 - parent: 1 - type: Transform -- uid: 28299 - type: AsteroidRock - components: - - pos: 72.5,-72.5 - parent: 1 - type: Transform -- uid: 28300 - type: AsteroidRock - components: - - pos: 70.5,-72.5 - parent: 1 - type: Transform -- uid: 28301 - type: AsteroidRock - components: - - pos: 71.5,-72.5 - parent: 1 - type: Transform -- uid: 28302 - type: AsteroidRock - components: - - pos: 73.5,-72.5 - parent: 1 - type: Transform -- uid: 28303 - type: AsteroidRock - components: - - pos: 74.5,-72.5 - parent: 1 - type: Transform -- uid: 28304 - type: AsteroidRock - components: - - pos: 75.5,-72.5 - parent: 1 - type: Transform -- uid: 28305 - type: AsteroidRock - components: - - pos: 73.5,-70.5 - parent: 1 - type: Transform -- uid: 28306 - type: AsteroidRock - components: - - pos: 73.5,-71.5 - parent: 1 - type: Transform -- uid: 28307 - type: AsteroidRock - components: - - pos: 74.5,-70.5 - parent: 1 - type: Transform -- uid: 28308 - type: AsteroidRock - components: - - pos: 74.5,-71.5 - parent: 1 - type: Transform -- uid: 28309 - type: AsteroidRock - components: - - pos: 75.5,-70.5 - parent: 1 - type: Transform -- uid: 28310 - type: AsteroidRock - components: - - pos: 75.5,-71.5 - parent: 1 - type: Transform -- uid: 28311 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28312 - type: AsteroidRock - components: - - pos: 75.5,-67.5 - parent: 1 - type: Transform -- uid: 28313 - type: AsteroidRock - components: - - pos: 76.5,-67.5 - parent: 1 - type: Transform -- uid: 28314 - type: AsteroidRock - components: - - pos: 76.5,-68.5 - parent: 1 - type: Transform -- uid: 28315 - type: AsteroidRock - components: - - pos: 76.5,-69.5 - parent: 1 - type: Transform -- uid: 28316 - type: AsteroidRock - components: - - pos: 76.5,-70.5 - parent: 1 - type: Transform -- uid: 28317 - type: AsteroidRock - components: - - pos: 76.5,-71.5 - parent: 1 - type: Transform -- uid: 28318 - type: AsteroidRock - components: - - pos: 78.5,-67.5 - parent: 1 - type: Transform -- uid: 28319 - type: AsteroidRock - components: - - pos: 78.5,-68.5 - parent: 1 - type: Transform -- uid: 28320 - type: AsteroidRock - components: - - pos: 78.5,-69.5 - parent: 1 - type: Transform -- uid: 28321 - type: AsteroidRock - components: - - pos: 77.5,-67.5 - parent: 1 - type: Transform -- uid: 28322 - type: AsteroidRock - components: - - pos: 77.5,-68.5 - parent: 1 - type: Transform -- uid: 28323 - type: AsteroidRock - components: - - pos: 77.5,-69.5 - parent: 1 - type: Transform -- uid: 28324 - type: AsteroidRock - components: - - pos: 77.5,-70.5 - parent: 1 - type: Transform -- uid: 28325 - type: AsteroidRock - components: - - pos: 79.5,-67.5 - parent: 1 - type: Transform -- uid: 28326 - type: AsteroidRock - components: - - pos: 79.5,-68.5 - parent: 1 - type: Transform -- uid: 28327 - type: AsteroidRock - components: - - pos: 80.5,-67.5 - parent: 1 - type: Transform -- uid: 28328 - type: AsteroidRock - components: - - pos: 80.5,-66.5 - parent: 1 - type: Transform -- uid: 28329 - type: AsteroidRock - components: - - pos: 78.5,-49.5 - parent: 1 - type: Transform -- uid: 28330 - type: AsteroidRock - components: - - pos: 78.5,-50.5 - parent: 1 - type: Transform -- uid: 28331 - type: Grille - components: - - pos: 71.5,-64.5 - parent: 1 - type: Transform -- uid: 28332 - type: WallSolid - components: - - pos: 66.5,-62.5 - parent: 1 - type: Transform -- uid: 28333 - type: WallSolid - components: - - pos: 67.5,-62.5 - parent: 1 - type: Transform -- uid: 28334 - type: WallSolid - components: - - pos: 70.5,-63.5 - parent: 1 - type: Transform -- uid: 28335 - type: WallSolid - components: - - pos: 70.5,-62.5 - parent: 1 - type: Transform -- uid: 28336 - type: WallSolid - components: - - pos: 69.5,-62.5 - parent: 1 - type: Transform -- uid: 28337 - type: WallSolid - components: - - pos: 69.5,-58.5 - parent: 1 - type: Transform -- uid: 28338 - type: WallSolid - components: - - pos: 70.5,-58.5 - parent: 1 - type: Transform -- uid: 28339 - type: WallSolid - components: - - pos: 70.5,-59.5 - parent: 1 - type: Transform -- uid: 28340 - type: WallSolid - components: - - pos: 70.5,-60.5 - parent: 1 - type: Transform -- uid: 28341 - type: WallSolid - components: - - pos: 72.5,-58.5 - parent: 1 - type: Transform -- uid: 28342 - type: Table - components: - - pos: 53.5,-65.5 - parent: 1 - type: Transform -- uid: 28343 - type: AsteroidRock - components: - - pos: 66.5,-71.5 - parent: 1 - type: Transform -- uid: 28344 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: 63.5,-33.5 - parent: 1 - type: Transform -- uid: 28345 - type: AnomalyScanner - components: - - pos: 63.686985,-36.460976 - parent: 1 - type: Transform -- uid: 28346 - type: AnomalyVesselCircuitboard - components: - - pos: 64.46823,-36.460976 - parent: 1 - type: Transform -- uid: 28347 - type: ClosetFireFilled - components: - - pos: 64.5,-31.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 28348 - type: TableGlass - components: - - rot: 1.5707963267948966 rad - pos: 62.5,-33.5 - parent: 1 - type: Transform -- uid: 28349 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28350 - type: Catwalk - components: - - pos: 55.5,-32.5 - parent: 1 - type: Transform -- uid: 28351 - type: Catwalk - components: - - pos: 54.5,-32.5 - parent: 1 - type: Transform -- uid: 28352 - type: Catwalk - components: - - pos: 53.5,-32.5 - parent: 1 - type: Transform -- uid: 28353 - type: AirCanister - components: - - pos: 51.5,-34.5 - parent: 1 - type: Transform -- uid: 28354 - type: StorageCanister - components: - - pos: 51.5,-35.5 - parent: 1 - type: Transform -- uid: 28355 - type: ClosetMaintenanceFilledRandom - components: - - pos: 48.5,-35.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 28356 - type: CableApcExtension - components: - - pos: 57.5,-34.5 - parent: 1 - type: Transform -- uid: 28357 - type: Catwalk - components: - - pos: 67.5,-74.5 - parent: 1 - type: Transform -- uid: 28358 - type: Catwalk - components: - - pos: 66.5,-74.5 - parent: 1 - type: Transform -- uid: 28359 - type: Catwalk - components: - - pos: 65.5,-74.5 - parent: 1 - type: Transform -- uid: 28360 - type: Catwalk - components: - - pos: 64.5,-74.5 - parent: 1 - type: Transform -- uid: 28361 - type: Catwalk - components: - - pos: 63.5,-74.5 - parent: 1 - type: Transform -- uid: 28362 - type: Catwalk - components: - - pos: 62.5,-74.5 - parent: 1 - type: Transform -- uid: 28363 - type: Catwalk - components: - - pos: 61.5,-74.5 - parent: 1 - type: Transform -- uid: 28364 - type: Catwalk - components: - - pos: 60.5,-74.5 - parent: 1 - type: Transform -- uid: 28365 - type: Catwalk - components: - - pos: 59.5,-74.5 - parent: 1 - type: Transform -- uid: 28366 - type: Catwalk - components: - - pos: 58.5,-74.5 - parent: 1 - type: Transform -- uid: 28367 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-81.5 - parent: 1 - type: Transform -- uid: 28368 - type: RandomPosterLegit - components: - - pos: 32.5,-91.5 - parent: 1 - type: Transform -- uid: 28369 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 34.5,-89.5 - parent: 1 - type: Transform -- uid: 28370 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 44.5,-89.5 - parent: 1 - type: Transform -- uid: 28371 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 44.5,-82.5 - parent: 1 - type: Transform -- uid: 28372 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 34.5,-82.5 - parent: 1 - type: Transform -- uid: 28373 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -18.5,66.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28374 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: 29.5,-81.5 - parent: 1 - type: Transform -- uid: 28375 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: 30.5,-84.5 - parent: 1 - type: Transform -- uid: 28376 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: 49.5,-88.5 - parent: 1 - type: Transform -- uid: 28377 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: 48.5,-80.5 - parent: 1 - type: Transform -- uid: 28378 - type: CableApcExtension - components: - - pos: 67.5,-65.5 - parent: 1 - type: Transform -- uid: 28379 - type: CableApcExtension - components: - - pos: 68.5,-65.5 - parent: 1 - type: Transform -- uid: 28380 - type: CableApcExtension - components: - - pos: 68.5,-66.5 - parent: 1 - type: Transform -- uid: 28381 - type: CableApcExtension - components: - - pos: 68.5,-67.5 - parent: 1 - type: Transform -- uid: 28382 - type: CableApcExtension - components: - - pos: 68.5,-68.5 - parent: 1 - type: Transform -- uid: 28383 - type: CableApcExtension - components: - - pos: 68.5,-69.5 - parent: 1 - type: Transform -- uid: 28384 - type: CableApcExtension - components: - - pos: 68.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28385 - type: CableApcExtension - components: - - pos: 68.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28386 - type: CableApcExtension - components: - - pos: 69.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28387 - type: CableApcExtension - components: - - pos: 70.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28388 - type: CableApcExtension - components: - - pos: 71.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28389 - type: CableApcExtension - components: - - pos: 72.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28390 - type: CableApcExtension - components: - - pos: 72.5,-70.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28391 - type: CableApcExtension - components: - - pos: 72.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28392 - type: CableApcExtension - components: - - pos: 73.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28393 - type: CableApcExtension - components: - - pos: 74.5,-69.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28394 - type: CableApcExtension - components: - - pos: 74.5,-68.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28395 - type: CableApcExtension - components: - - pos: 74.5,-67.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28396 - type: CableApcExtension - components: - - pos: 74.5,-66.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28397 - type: CableApcExtension - components: - - pos: 74.5,-65.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28398 - type: CableApcExtension - components: - - pos: 74.5,-64.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28399 - type: CableApcExtension - components: - - pos: 74.5,-63.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28400 - type: CableApcExtension - components: - - pos: 68.5,-64.5 - parent: 1 - type: Transform -- uid: 28401 - type: CableApcExtension - components: - - pos: 68.5,-63.5 - parent: 1 - type: Transform -- uid: 28402 - type: CableApcExtension - components: - - pos: 68.5,-62.5 - parent: 1 - type: Transform -- uid: 28403 - type: CableApcExtension - components: - - pos: 68.5,-61.5 - parent: 1 - type: Transform -- uid: 28404 - type: CableApcExtension - components: - - pos: 69.5,-61.5 - parent: 1 - type: Transform -- uid: 28405 - type: CableApcExtension - components: - - pos: 70.5,-61.5 - parent: 1 - type: Transform -- uid: 28406 - type: CableApcExtension - components: - - pos: 71.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28407 - type: CableApcExtension - components: - - pos: 71.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28408 - type: CableApcExtension - components: - - pos: 71.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28409 - type: CableApcExtension - components: - - pos: 71.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28410 - type: CableApcExtension - components: - - pos: 71.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28411 - type: CableApcExtension - components: - - pos: 72.5,-57.5 - parent: 1 - type: Transform -- uid: 28412 - type: CableApcExtension - components: - - pos: 73.5,-57.5 - parent: 1 - type: Transform -- uid: 28413 - type: CableApcExtension - components: - - pos: 74.5,-57.5 - parent: 1 - type: Transform -- uid: 28414 - type: CableApcExtension - components: - - pos: 74.5,-56.5 - parent: 1 - type: Transform -- uid: 28415 - type: CableApcExtension - components: - - pos: 74.5,-55.5 - parent: 1 - type: Transform -- uid: 28416 - type: CableApcExtension - components: - - pos: 75.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28417 - type: CableApcExtension - components: - - pos: 75.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28418 - type: CableApcExtension - components: - - pos: 75.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28419 - type: CableApcExtension - components: - - pos: 75.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28420 - type: Chair - components: - - pos: 50.5,-32.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28421 - type: ClosetBombFilled - components: - - pos: 26.5,31.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 28422 - type: PaintingAmogusTriptych - components: - - pos: 45.5,-12.5 - parent: 1 - type: Transform -- uid: 28423 - type: ToyAmongPequeno - components: - - pos: 64.471924,-66.472046 - parent: 1 - type: Transform -- uid: 28424 - type: CarpetChapel - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-66.5 - parent: 1 - type: Transform -- uid: 28425 - type: Chair - components: - - pos: 60.5,-66.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28426 - type: ToySpawner - components: - - pos: 53.5,-65.5 - parent: 1 - type: Transform -- uid: 28427 - type: ToySpawner - components: - - pos: 54.5,-35.5 - parent: 1 - type: Transform -- uid: 28428 - type: TableWood - components: - - pos: 54.5,-35.5 - parent: 1 - type: Transform -- uid: 28429 - type: WallSolid - components: - - pos: 56.5,-37.5 - parent: 1 - type: Transform -- uid: 28430 - type: CableApcExtension - components: - - pos: 56.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28431 - type: CableApcExtension - components: - - pos: 57.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28432 - type: WallSolid - components: - - pos: 56.5,-38.5 - parent: 1 - type: Transform -- uid: 28433 - type: FirelockGlass - components: - - pos: 55.5,-29.5 - parent: 1 - type: Transform -- uid: 28434 - type: Catwalk - components: - - pos: 55.5,-30.5 - parent: 1 - type: Transform -- uid: 28435 - type: Catwalk - components: - - pos: 55.5,-31.5 - parent: 1 - type: Transform -- uid: 28436 - type: UnfinishedMachineFrame - components: - - pos: 53.5,-30.5 - parent: 1 - type: Transform -- uid: 28437 - type: AirlockMaintLocked - components: - - pos: 61.5,-26.5 - parent: 1 - type: Transform -- uid: 28438 - type: VendingMachineSovietSoda - components: - - flags: SessionSpecific - type: MetaData - - pos: 56.5,-63.5 - parent: 1 - type: Transform -- uid: 28439 - type: Rack - components: - - pos: 54.5,-63.5 - parent: 1 - type: Transform -- uid: 28440 - type: Rack - components: - - pos: 54.5,-64.5 - parent: 1 - type: Transform -- uid: 28441 - type: Rack - components: - - pos: 54.5,-30.5 - parent: 1 - type: Transform -- uid: 28442 - type: ClosetEmergencyFilledRandom - components: - - pos: 42.5,-62.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 28443 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-66.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28444 - type: Catwalk - components: - - pos: 59.5,-22.5 - parent: 1 - type: Transform -- uid: 28445 - type: CableApcExtension - components: - - pos: 55.5,-66.5 - parent: 1 - type: Transform -- uid: 28446 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 54.5,-68.5 - parent: 1 - type: Transform -- uid: 28447 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 55.5,-68.5 - parent: 1 - type: Transform -- uid: 28448 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-68.5 - parent: 1 - type: Transform -- uid: 28449 - type: DrinkMugBlack - components: - - pos: 53.58285,-67.465065 - parent: 1 - type: Transform -- uid: 28450 - type: CrayonBox - components: - - rot: 3.141592653589793 rad - pos: 54.561592,-64.4996 - parent: 1 - type: Transform -- uid: 28451 - type: ClosetWall - components: - - pos: 47.5,-64.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 28452 - type: SpawnMobCleanBot - components: - - pos: 15.5,-42.5 - parent: 1 - type: Transform -- uid: 28453 - type: ClosetWall - components: - - pos: 45.5,-32.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 28454 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-34.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28455 - type: Catwalk - components: - - pos: 59.5,-41.5 - parent: 1 - type: Transform -- uid: 28456 - type: Catwalk - components: - - pos: 59.5,-40.5 - parent: 1 - type: Transform -- uid: 28457 - type: Catwalk - components: - - pos: 59.5,-39.5 - parent: 1 - type: Transform -- uid: 28458 - type: Catwalk - components: - - pos: 58.5,-39.5 - parent: 1 - type: Transform -- uid: 28459 - type: Catwalk - components: - - pos: 57.5,-39.5 - parent: 1 - type: Transform -- uid: 28460 - type: Catwalk - components: - - pos: 56.5,-39.5 - parent: 1 - type: Transform -- uid: 28461 - type: Grille - components: - - pos: 54.5,-25.5 - parent: 1 - type: Transform -- uid: 28462 - type: Grille - components: - - pos: 56.5,-25.5 - parent: 1 - type: Transform -- uid: 28463 - type: Grille - components: - - pos: 58.5,-25.5 - parent: 1 - type: Transform -- uid: 28464 - type: Catwalk - components: - - pos: 59.5,-23.5 - parent: 1 - type: Transform -- uid: 28465 - type: Catwalk - components: - - pos: 59.5,-24.5 - parent: 1 - type: Transform -- uid: 28466 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 65.5,-20.5 - parent: 1 - type: Transform -- uid: 28467 - type: WallSolid - components: - - pos: 62.5,-27.5 - parent: 1 - type: Transform -- uid: 28468 - type: SignDirectionalEvac - components: - - rot: 3.141592653589793 rad - pos: 60.5,-42.5 - parent: 1 - type: Transform -- uid: 28469 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 65.5,-19.5 - parent: 1 - type: Transform -- uid: 28470 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 65.5,-18.5 - parent: 1 - type: Transform -- uid: 28471 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 66.5,-18.5 - parent: 1 - type: Transform -- uid: 28472 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 58.5,-37.5 - parent: 1 - type: Transform -- uid: 28473 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 57.5,-37.5 - parent: 1 - type: Transform -- uid: 28474 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 53.5,-28.5 - parent: 1 - type: Transform -- uid: 28475 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 54.5,-28.5 - parent: 1 - type: Transform -- uid: 28476 - type: TableWood - components: - - pos: 58.5,-30.5 - parent: 1 - type: Transform -- uid: 28477 - type: MaintenanceToolSpawner - components: - - pos: 58.5,-30.5 - parent: 1 - type: Transform -- uid: 28478 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 70.5,-65.5 - parent: 1 - type: Transform -- uid: 28479 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 70.5,-66.5 - parent: 1 - type: Transform -- uid: 28480 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 69.5,-66.5 - parent: 1 - type: Transform -- uid: 28481 - type: TableWood - components: - - rot: 3.141592653589793 rad - pos: 49.5,-66.5 - parent: 1 - type: Transform -- uid: 28482 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 43.5,-62.5 - parent: 1 - type: Transform -- uid: 28483 - type: MaintenanceFluffSpawner - components: - - rot: 3.141592653589793 rad - pos: 43.5,-62.5 - parent: 1 - type: Transform -- uid: 28484 - type: MaintenanceWeaponSpawner - components: - - rot: 3.141592653589793 rad - pos: 49.5,-66.5 - parent: 1 - type: Transform -- uid: 28485 - type: MaintenanceWeaponSpawner - components: - - rot: 3.141592653589793 rad - pos: 66.5,-61.5 - parent: 1 - type: Transform -- uid: 28486 - type: MaintenanceToolSpawner - components: - - pos: 53.5,-28.5 - parent: 1 - type: Transform -- uid: 28487 - type: TableWood - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-30.5 - parent: 1 - type: Transform -- uid: 28488 - type: Rack - components: - - pos: 37.5,-10.5 - parent: 1 - type: Transform -- uid: 28489 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 54.5,-37.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28490 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 53.5,-26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28491 - type: PoweredSmallLight - components: - - pos: 59.5,-26.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28492 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 68.5,-62.5 - parent: 1 - type: Transform -- uid: 28493 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 65.5,-65.5 - parent: 1 - type: Transform -- uid: 28494 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-65.5 - parent: 1 - type: Transform -- uid: 28495 - type: Firelock - components: - - rot: -1.5707963267948966 rad - pos: 73.5,-57.5 - parent: 1 - type: Transform -- uid: 28496 - type: AirlockMaintGlass - components: - - pos: 54.5,-33.5 - parent: 1 - type: Transform -- uid: 28497 - type: RandomPosterContraband - components: - - pos: 52.5,-34.5 - parent: 1 - type: Transform -- uid: 28498 - type: RandomPosterContraband - components: - - pos: 59.5,-27.5 - parent: 1 - type: Transform -- uid: 28499 - type: RandomPosterContraband - components: - - pos: 44.5,-32.5 - parent: 1 - type: Transform -- uid: 28500 - type: RandomPosterContraband - components: - - pos: 69.5,-62.5 - parent: 1 - type: Transform -- uid: 28501 - type: RandomPosterContraband - components: - - pos: 58.5,-61.5 - parent: 1 - type: Transform -- uid: 28502 - type: RandomPosterContraband - components: - - pos: 57.5,-67.5 - parent: 1 - type: Transform -- uid: 28503 - type: RandomPosterContraband - components: - - pos: 48.5,-64.5 - parent: 1 - type: Transform -- uid: 28504 - type: Catwalk - components: - - pos: 75.5,-51.5 - parent: 1 - type: Transform -- uid: 28505 - type: RandomPosterLegit - components: - - pos: 66.5,-62.5 - parent: 1 - type: Transform -- uid: 28506 - type: Catwalk - components: - - pos: 75.5,-52.5 - parent: 1 - type: Transform -- uid: 28507 - type: Catwalk - components: - - pos: 75.5,-53.5 - parent: 1 - type: Transform -- uid: 28508 - type: Catwalk - components: - - pos: 75.5,-54.5 - parent: 1 - type: Transform -- uid: 28509 - type: Catwalk - components: - - pos: 75.5,-55.5 - parent: 1 - type: Transform -- uid: 28510 - type: Catwalk - components: - - pos: 75.5,-56.5 - parent: 1 - type: Transform -- uid: 28511 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 63.5,-68.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28512 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-66.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28513 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 67.5,-66.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28514 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 72.5,-67.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28515 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 75.5,-53.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28516 - type: FirelockGlass - components: - - pos: -41.5,26.5 - parent: 1 - type: Transform -- uid: 28517 - type: SpaceCash1000 - components: - - pos: 59.59177,-29.360462 - parent: 1 - type: Transform -- uid: 28518 - type: CableMV - components: - - pos: 47.5,3.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28519 - type: Poweredlight - components: - - pos: 58.5,-28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28520 - type: Catwalk - components: - - pos: 60.5,-26.5 - parent: 1 - type: Transform -- uid: 28521 - type: Catwalk - components: - - pos: 59.5,-26.5 - parent: 1 - type: Transform -- uid: 28522 - type: Catwalk - components: - - pos: 58.5,-26.5 - parent: 1 - type: Transform -- uid: 28523 - type: Catwalk - components: - - pos: 57.5,-26.5 - parent: 1 - type: Transform -- uid: 28524 - type: Catwalk - components: - - pos: 56.5,-26.5 - parent: 1 - type: Transform -- uid: 28525 - type: FlashlightLantern - components: - - pos: 58.39165,-37.43153 - parent: 1 - type: Transform -- uid: 28526 - type: FirelockGlass - components: - - pos: 55.5,-38.5 - parent: 1 - type: Transform -- uid: 28527 - type: Catwalk - components: - - pos: 64.5,-58.5 - parent: 1 - type: Transform -- uid: 28528 - type: Poweredlight - components: - - pos: 34.5,-16.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28529 - type: WallSolid - components: - - pos: -69.5,-32.5 - parent: 1 - type: Transform -- uid: 28530 - type: DisposalPipe - components: - - pos: -42.5,14.5 - parent: 1 - type: Transform -- uid: 28531 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 73.5,-63.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28532 - type: Grille - components: - - pos: 68.5,-57.5 - parent: 1 - type: Transform -- uid: 28533 - type: ClothingHeadHatSquid - components: - - pos: 9.466757,-12.457433 - parent: 1 - type: Transform -- uid: 28534 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 1 - type: Transform -- uid: 28535 - type: CableHV - components: - - pos: 69.5,-46.5 - parent: 1 - type: Transform -- uid: 28536 - type: CableHV - components: - - pos: 72.5,-46.5 - parent: 1 - type: Transform -- uid: 28537 - type: CableHV - components: - - pos: 73.5,-46.5 - parent: 1 - type: Transform -- uid: 28538 - type: CableHV - components: - - pos: 74.5,-46.5 - parent: 1 - type: Transform -- uid: 28539 - type: CableHV - components: - - pos: 75.5,-46.5 - parent: 1 - type: Transform -- uid: 28540 - type: CableHV - components: - - pos: 75.5,-47.5 - parent: 1 - type: Transform -- uid: 28541 - type: CableHV - components: - - pos: 75.5,-48.5 - parent: 1 - type: Transform -- uid: 28542 - type: CableHV - components: - - pos: 75.5,-49.5 - parent: 1 - type: Transform -- uid: 28543 - type: CableHV - components: - - pos: 75.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28544 - type: CableHV - components: - - pos: 75.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28545 - type: CableHV - components: - - pos: 75.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28546 - type: CableHV - components: - - pos: 75.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28547 - type: CableHV - components: - - pos: 75.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28548 - type: CableHV - components: - - pos: 75.5,-55.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28549 - type: CableHV - components: - - pos: 75.5,-56.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28550 - type: CableHV - components: - - pos: 74.5,-56.5 - parent: 1 - type: Transform -- uid: 28551 - type: CableHV - components: - - pos: 74.5,-57.5 - parent: 1 - type: Transform -- uid: 28552 - type: CableHV - components: - - pos: 73.5,-57.5 - parent: 1 - type: Transform -- uid: 28553 - type: CableHV - components: - - pos: 72.5,-57.5 - parent: 1 - type: Transform -- uid: 28554 - type: CableHV - components: - - pos: 71.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28555 - type: CableHV - components: - - pos: 71.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28556 - type: CableHV - components: - - pos: 71.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28557 - type: CableHV - components: - - pos: 71.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28558 - type: CableHV - components: - - pos: 71.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28559 - type: CableHV - components: - - pos: 70.5,-61.5 - parent: 1 - type: Transform -- uid: 28560 - type: CableHV - components: - - pos: 69.5,-61.5 - parent: 1 - type: Transform -- uid: 28561 - type: CableHV - components: - - pos: 68.5,-61.5 - parent: 1 - type: Transform -- uid: 28562 - type: CableHV - components: - - pos: 68.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28563 - type: CableHV - components: - - pos: 68.5,-59.5 - parent: 1 - type: Transform -- uid: 28564 - type: CableHV - components: - - pos: 69.5,-59.5 - parent: 1 - type: Transform -- uid: 28565 - type: CableMV - components: - - pos: 68.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28566 - type: CableMV - components: - - pos: 68.5,-61.5 - parent: 1 - type: Transform -- uid: 28567 - type: CableMV - components: - - pos: 69.5,-61.5 - parent: 1 - type: Transform -- uid: 28568 - type: CableMV - components: - - pos: 70.5,-61.5 - parent: 1 - type: Transform -- uid: 28569 - type: CableMV - components: - - pos: 71.5,-61.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28570 - type: CableMV - components: - - pos: 71.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28571 - type: CableMV - components: - - pos: 71.5,-59.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28572 - type: CableMV - components: - - pos: 71.5,-58.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28573 - type: CableMV - components: - - pos: 71.5,-57.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28574 - type: CableMV - components: - - pos: 72.5,-57.5 - parent: 1 - type: Transform -- uid: 28575 - type: CableMV - components: - - pos: 73.5,-57.5 - parent: 1 - type: Transform -- uid: 28576 - type: CableMV - components: - - pos: 74.5,-57.5 - parent: 1 - type: Transform -- uid: 28577 - type: CableMV - components: - - pos: 74.5,-56.5 - parent: 1 - type: Transform -- uid: 28578 - type: CableMV - components: - - pos: 74.5,-55.5 - parent: 1 - type: Transform -- uid: 28579 - type: CableMV - components: - - pos: 74.5,-54.5 - parent: 1 - type: Transform -- uid: 28580 - type: CableMV - components: - - pos: 75.5,-54.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28581 - type: CableMV - components: - - pos: 75.5,-53.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28582 - type: CableMV - components: - - pos: 75.5,-52.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28583 - type: CableMV - components: - - pos: 75.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28584 - type: CableMV - components: - - pos: 75.5,-50.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28585 - type: CableMV - components: - - pos: 75.5,-49.5 - parent: 1 - type: Transform -- uid: 28586 - type: CableMV - components: - - pos: 75.5,-48.5 - parent: 1 - type: Transform -- uid: 28587 - type: CableMV - components: - - pos: 75.5,-47.5 - parent: 1 - type: Transform -- uid: 28588 - type: CableMV - components: - - pos: 75.5,-46.5 - parent: 1 - type: Transform -- uid: 28589 - type: CableMV - components: - - pos: 75.5,-45.5 - parent: 1 - type: Transform -- uid: 28590 - type: CableMV - components: - - pos: 74.5,-45.5 - parent: 1 - type: Transform -- uid: 28591 - type: CableMV - components: - - pos: 73.5,-45.5 - parent: 1 - type: Transform -- uid: 28592 - type: CableMV - components: - - pos: 72.5,-45.5 - parent: 1 - type: Transform -- uid: 28593 - type: CableMV - components: - - pos: 71.5,-45.5 - parent: 1 - type: Transform -- uid: 28594 - type: CableMV - components: - - pos: 71.5,-44.5 - parent: 1 - type: Transform -- uid: 28595 - type: CableMV - components: - - pos: 71.5,-43.5 - parent: 1 - type: Transform -- uid: 28596 - type: CableMV - components: - - pos: 71.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28597 - type: CableApcExtension - components: - - pos: 71.5,-44.5 - parent: 1 - type: Transform -- uid: 28598 - type: CableApcExtension - components: - - pos: 71.5,-43.5 - parent: 1 - type: Transform -- uid: 28599 - type: CableApcExtension - components: - - pos: 71.5,-42.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28600 - type: ClothingEyesGlassesSecurity - components: - - pos: 22.490807,-47.25673 - parent: 1 - type: Transform -- uid: 28601 - type: Zipties - components: - - pos: 22.565756,-47.432816 - parent: 1 - type: Transform -- uid: 28602 - type: Grille - components: - - pos: 71.5,-54.5 - parent: 1 - type: Transform -- uid: 28603 - type: Grille - components: - - pos: 70.5,-54.5 - parent: 1 - type: Transform -- uid: 28604 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-57.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28605 - type: PosterContrabandCommunistState - components: - - pos: 53.5,-64.5 - parent: 1 - type: Transform -- uid: 28606 - type: AirlockEngineeringLocked - components: - - pos: 68.5,-60.5 - parent: 1 - type: Transform -- uid: 28607 - type: Catwalk - components: - - pos: 71.5,-57.5 - parent: 1 - type: Transform -- uid: 28608 - type: Catwalk - components: - - pos: 71.5,-58.5 - parent: 1 - type: Transform -- uid: 28609 - type: Catwalk - components: - - pos: 71.5,-59.5 - parent: 1 - type: Transform -- uid: 28610 - type: Catwalk - components: - - pos: 71.5,-60.5 - parent: 1 - type: Transform -- uid: 28611 - type: Catwalk - components: - - pos: 71.5,-61.5 - parent: 1 - type: Transform -- uid: 28612 - type: Catwalk - components: - - pos: 47.5,-65.5 - parent: 1 - type: Transform -- uid: 28613 - type: Catwalk - components: - - pos: 48.5,-65.5 - parent: 1 - type: Transform -- uid: 28614 - type: Catwalk - components: - - pos: 49.5,-65.5 - parent: 1 - type: Transform -- uid: 28615 - type: Catwalk - components: - - pos: 50.5,-65.5 - parent: 1 - type: Transform -- uid: 28616 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 72.5,-55.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28617 - type: WeldingFuelTankFull - components: - - pos: 72.5,-59.5 - parent: 1 - type: Transform -- uid: 28618 - type: WaterTank - components: - - pos: 74.5,-54.5 - parent: 1 - type: Transform -- uid: 28619 - type: RandomPosterLegit - components: - - pos: 34.5,-57.5 - parent: 1 - type: Transform -- uid: 28620 - type: RandomPosterLegit - components: - - pos: 41.5,-65.5 - parent: 1 - type: Transform -- uid: 28621 - type: Table - components: - - pos: 67.5,-64.5 - parent: 1 - type: Transform -- uid: 28622 - type: Table - components: - - pos: 67.5,-65.5 - parent: 1 - type: Transform -- uid: 28623 - type: YellowOxygenTankFilled - components: - - pos: 67.49378,-65.34203 - parent: 1 - type: Transform -- uid: 28624 - type: ClothingHeadHatChickenhead - components: - - pos: 69.487785,-66.37648 - parent: 1 - type: Transform -- uid: 28625 - type: ClothingHeadHatSantahat - components: - - pos: 70.456535,-65.50148 - parent: 1 - type: Transform -- uid: 28626 - type: ToolboxElectricalFilled - components: - - pos: 67.55947,-64.54127 - parent: 1 - type: Transform -- uid: 28627 - type: Barricade - components: - - pos: 67.5,-63.5 - parent: 1 - type: Transform -- uid: 28628 - type: Chair - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-67.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28629 - type: Chair - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-67.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28630 - type: TableReinforced - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-67.5 - parent: 1 - type: Transform -- uid: 28631 - type: FoodLemon - components: - - pos: 55.628414,-67.334946 - parent: 1 - type: Transform -- uid: 28632 - type: ClosetMaintenanceFilledRandom - components: - - pos: 72.5,-55.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 28633 - type: ClothingShoesBootsMag - components: - - pos: 29.67435,-10.561104 - parent: 1 - type: Transform -- uid: 28634 - type: Catwalk - components: - - pos: 52.5,-66.5 - parent: 1 - type: Transform -- uid: 28635 - type: Catwalk - components: - - pos: 69.5,-63.5 - parent: 1 - type: Transform -- uid: 28636 - type: Catwalk - components: - - pos: 67.5,-66.5 - parent: 1 - type: Transform -- uid: 28637 - type: WeaponRevolverDeckard - components: - - pos: 30.600538,32.59448 - parent: 1 - type: Transform -- uid: 28638 - type: DeployableBarrier - components: - - anchored: False - pos: 62.5,7.5 - parent: 1 - type: Transform -- uid: 28639 - type: FloraRockSolid03 - components: - - pos: 78.52854,-58.425747 - parent: 1 - type: Transform -- uid: 28640 - type: Table - components: - - pos: 45.5,-63.5 - parent: 1 - type: Transform -- uid: 28641 - type: Table - components: - - pos: 46.5,-63.5 - parent: 1 - type: Transform -- uid: 28642 - type: ClothingHandsGlovesColorYellowBudget - components: - - pos: 70.37232,-66.37016 - parent: 1 - type: Transform -- uid: 28643 - type: MaintenanceToolSpawner - components: - - pos: 46.5,-63.5 - parent: 1 - type: Transform -- uid: 28644 - type: CrateFilledSpawner - components: - - pos: 72.5,-56.5 - parent: 1 - type: Transform -- uid: 28645 - type: CrateFilledSpawner - components: - - pos: 71.5,-62.5 - parent: 1 - type: Transform -- uid: 28646 - type: SolarPanelBroken - components: - - pos: 46.5,-62.5 - parent: 1 - type: Transform -- uid: 28647 - type: ClothingOuterSuitShrineMaiden - components: - - pos: 73.55755,-64.51582 - parent: 1 - type: Transform -- uid: 28648 - type: ClothingHeadHatShrineMaidenWig - components: - - pos: 73.5263,-65.23457 - parent: 1 - type: Transform -- uid: 28649 - type: SilverOre1 - components: - - pos: 73.48065,-67.68085 - parent: 1 - type: Transform -- uid: 28650 - type: GoldOre1 - components: - - pos: 79.30878,-64.25522 - parent: 1 - type: Transform -- uid: 28651 - type: HydroponicsTrayMachineCircuitboard - components: - - pos: 38.518326,-56.124916 - parent: 1 - type: Transform -- uid: 28652 - type: AsteroidRock - components: - - pos: 3.5,55.5 - parent: 1 - type: Transform -- uid: 28653 - type: AsteroidRock - components: - - pos: 3.5,54.5 - parent: 1 - type: Transform -- uid: 28654 - type: AirAlarm - components: - - pos: 4.5,-24.5 - parent: 1 - type: Transform - - devices: - - 27920 - - 3131 - - 5382 - - 7183 - - 5639 - - 222 - - 5456 - - 765 - - 764 - - 8756 - type: DeviceList -- uid: 28655 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-30.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28656 - type: MicroLaserStockPart - components: - - pos: 57.42882,-47.52101 - parent: 1 - type: Transform -- uid: 28657 - type: GasThermoMachineFreezer - components: - - pos: 53.5,-47.5 - parent: 1 - type: Transform -- uid: 28658 - type: GasPassiveVent - components: - - rot: 3.141592653589793 rad - pos: 55.5,-51.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28659 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,-50.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28660 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 55.5,-49.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28661 - type: GasPipeBend - components: - - pos: 55.5,-48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28662 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 53.5,-48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28663 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-48.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28664 - type: CableApcExtension - components: - - pos: 61.5,-48.5 - parent: 1 - type: Transform -- uid: 28665 - type: CableApcExtension - components: - - pos: 60.5,-48.5 - parent: 1 - type: Transform -- uid: 28666 - type: CableApcExtension - components: - - pos: 59.5,-48.5 - parent: 1 - type: Transform -- uid: 28667 - type: CableApcExtension - components: - - pos: 58.5,-48.5 - parent: 1 - type: Transform -- uid: 28668 - type: CableApcExtension - components: - - pos: 57.5,-48.5 - parent: 1 - type: Transform -- uid: 28669 - type: CableApcExtension - components: - - pos: 56.5,-48.5 - parent: 1 - type: Transform -- uid: 28670 - type: CableApcExtension - components: - - pos: 55.5,-48.5 - parent: 1 - type: Transform -- uid: 28671 - type: CableApcExtension - components: - - pos: 54.5,-48.5 - parent: 1 - type: Transform -- uid: 28672 - type: Poweredlight - components: - - pos: 55.5,-47.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28673 - type: ShuttersNormalOpen - components: - - pos: 59.5,-54.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86520.43 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28681 - Close: - - port: Off - uid: 28681 - Toggle: [] - type: SignalReceiver -- uid: 28674 - type: ShuttersNormalOpen - components: - - pos: 65.5,-54.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86520.43 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28681 - Close: - - port: Off - uid: 28681 - Toggle: [] - type: SignalReceiver -- uid: 28675 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-51.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86520.43 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28681 - Close: - - port: Off - uid: 28681 - Toggle: [] - type: SignalReceiver -- uid: 28676 - type: ShuttersNormalOpen - components: - - rot: 1.5707963267948966 rad - pos: 66.5,-52.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86520.43 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28681 - Close: - - port: Off - uid: 28681 - Toggle: [] - type: SignalReceiver -- uid: 28677 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-51.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86520.43 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28681 - Close: - - port: Off - uid: 28681 - Toggle: [] - type: SignalReceiver -- uid: 28678 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-52.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86520.43 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28681 - Close: - - port: Off - uid: 28681 - Toggle: [] - type: SignalReceiver -- uid: 28679 - type: ShuttersNormalOpen - components: - - pos: 61.5,-50.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86520.43 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28681 - Close: - - port: Off - uid: 28681 - Toggle: [] - type: SignalReceiver -- uid: 28680 - type: ShuttersNormalOpen - components: - - pos: 63.5,-50.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86520.43 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28681 - Close: - - port: Off - uid: 28681 - Toggle: [] - type: SignalReceiver -- uid: 28681 - type: SignalSwitch - components: - - rot: 3.141592653589793 rad - pos: 64.5,-55.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 11487 - - port: Open - uid: 11486 - - port: Open - uid: 7029 - - port: Open - uid: 28674 - - port: Open - uid: 28673 - - port: Open - uid: 28676 - - port: Open - uid: 28675 - - port: Open - uid: 28677 - - port: Open - uid: 28678 - - port: Open - uid: 28679 - - port: Open - uid: 28680 - Off: - - port: Close - uid: 11487 - - port: Close - uid: 11486 - - port: Close - uid: 7029 - - port: Close - uid: 28674 - - port: Close - uid: 28673 - - port: Close - uid: 28676 - - port: Close - uid: 28675 - - port: Close - uid: 28677 - - port: Close - uid: 28678 - - port: Close - uid: 28679 - - port: Close - uid: 28680 - type: SignalTransmitter - - type: ItemCooldown -- uid: 28682 - type: Multitool - components: - - pos: 65.54721,-51.514313 - parent: 1 - type: Transform -- uid: 28683 - type: AtmosFixFreezerMarker - components: - - pos: 53.5,-47.5 - parent: 1 - type: Transform -- uid: 28684 - type: AtmosFixFreezerMarker - components: - - pos: 53.5,-48.5 - parent: 1 - type: Transform -- uid: 28685 - type: AtmosFixFreezerMarker - components: - - pos: 54.5,-47.5 - parent: 1 - type: Transform -- uid: 28686 - type: AtmosFixFreezerMarker - components: - - pos: 54.5,-48.5 - parent: 1 - type: Transform -- uid: 28687 - type: AtmosFixFreezerMarker - components: - - pos: 55.5,-47.5 - parent: 1 - type: Transform -- uid: 28688 - type: AtmosFixFreezerMarker - components: - - pos: 55.5,-48.5 - parent: 1 - type: Transform -- uid: 28689 - type: AtmosFixFreezerMarker - components: - - pos: 56.5,-47.5 - parent: 1 - type: Transform -- uid: 28690 - type: AtmosFixFreezerMarker - components: - - pos: 56.5,-48.5 - parent: 1 - type: Transform -- uid: 28691 - type: AtmosFixFreezerMarker - components: - - pos: 57.5,-47.5 - parent: 1 - type: Transform -- uid: 28692 - type: AtmosFixFreezerMarker - components: - - pos: 57.5,-48.5 - parent: 1 - type: Transform -- uid: 28693 - type: AtmosFixFreezerMarker - components: - - pos: 54.5,-49.5 - parent: 1 - type: Transform -- uid: 28694 - type: AtmosFixFreezerMarker - components: - - pos: 55.5,-49.5 - parent: 1 - type: Transform -- uid: 28695 - type: AtmosFixFreezerMarker - components: - - pos: 56.5,-49.5 - parent: 1 - type: Transform -- uid: 28696 - type: AtmosFixFreezerMarker - components: - - pos: 57.5,-49.5 - parent: 1 - type: Transform -- uid: 28697 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 51.5,-37.5 - parent: 1 - type: Transform -- uid: 28698 - type: MedicalTechFab - components: - - pos: -16.5,-48.5 - parent: 1 - type: Transform -- uid: 28699 - type: SignalSwitch - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-55.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 28701 - - port: Open - uid: 28700 - Off: - - port: Close - uid: 28701 - - port: Close - uid: 28700 - type: SignalTransmitter - - type: ItemCooldown -- uid: 28700 - type: ShuttersNormalOpen - components: - - pos: -20.5,-58.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86461.234 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28699 - Close: - - port: Off - uid: 28699 - Toggle: [] - type: SignalReceiver -- uid: 28701 - type: ShuttersNormalOpen - components: - - pos: -18.5,-58.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -86461.234 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28699 - Close: - - port: Off - uid: 28699 - Toggle: [] - type: SignalReceiver -- uid: 28702 - type: SignalSwitch - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-18.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 28705 - - port: Open - uid: 28704 - - port: Open - uid: 28703 - Off: - - port: Close - uid: 28705 - - port: Close - uid: 28704 - - port: Close - uid: 28703 - type: SignalTransmitter - - type: ItemCooldown -- uid: 28703 - type: ShuttersNormalOpen - components: - - pos: -37.5,-14.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -36674.082 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28702 - Close: - - port: Off - uid: 28702 - Toggle: [] - type: SignalReceiver -- uid: 28704 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-15.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -36674.082 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28702 - Close: - - port: Off - uid: 28702 - Toggle: [] - type: SignalReceiver -- uid: 28705 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -33.5,-17.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -36674.082 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28702 - Close: - - port: Off - uid: 28702 - Toggle: [] - type: SignalReceiver -- uid: 28706 - type: ShuttersNormalOpen - components: - - pos: 0.5,-2.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -36716.934 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 29230 - Close: - - port: Off - uid: 29230 - Toggle: [] - type: SignalReceiver -- uid: 28707 - type: ShuttersNormalOpen - components: - - pos: 1.5,-2.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -36716.934 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 29230 - Close: - - port: Off - uid: 29230 - Toggle: [] - type: SignalReceiver -- uid: 28708 - type: PaperBin5 - components: - - rot: 3.141592653589793 rad - pos: -25.63709,-36.050198 - parent: 1 - type: Transform -- uid: 28709 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 7.5,9.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -25870.01 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28919 - Close: - - port: Off - uid: 28919 - Toggle: [] - type: SignalReceiver -- uid: 28710 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 7.5,8.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -25870.01 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28919 - Close: - - port: Off - uid: 28919 - Toggle: [] - type: SignalReceiver -- uid: 28711 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: 7.5,7.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -25870.01 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28919 - Close: - - port: Off - uid: 28919 - Toggle: [] - type: SignalReceiver -- uid: 28712 - type: ShuttersNormalOpen - components: - - pos: 2.5,4.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -25870.01 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28919 - Close: - - port: Off - uid: 28919 - Toggle: [] - type: SignalReceiver -- uid: 28713 - type: ShuttersNormalOpen - components: - - pos: 1.5,4.5 - parent: 1 - type: Transform - - inputs: - Open: - - port: On - uid: 28919 - Close: - - port: Off - uid: 28919 - Toggle: [] - type: SignalReceiver -- uid: 28714 - type: ShuttersNormalOpen - components: - - pos: 0.5,4.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -25870.01 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28919 - Close: - - port: Off - uid: 28919 - Toggle: [] - type: SignalReceiver -- uid: 28715 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 1 - type: Transform -- uid: 28716 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -43.5,4.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28717 - type: ShuttersNormalOpen - components: - - pos: 5.5,11.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -25870.01 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28919 - Close: - - port: Off - uid: 28919 - Toggle: [] - type: SignalReceiver -- uid: 28718 - type: ShuttersNormalOpen - components: - - pos: 4.5,11.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -25870.01 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 28919 - Close: - - port: Off - uid: 28919 - Toggle: [] - type: SignalReceiver -- uid: 28719 - type: CableApcExtension - components: - - pos: 43.5,-39.5 - parent: 1 - type: Transform -- uid: 28720 - type: CableApcExtension - components: - - pos: 43.5,-40.5 - parent: 1 - type: Transform -- uid: 28721 - type: CableApcExtension - components: - - pos: 43.5,-41.5 - parent: 1 - type: Transform -- uid: 28722 - type: PowerCellRecharger - components: - - pos: 43.5,-40.5 - parent: 1 - type: Transform -- uid: 28723 - type: SignDirectionalEng - components: - - rot: 3.141592653589793 rad - pos: -17.5,-33.5 - parent: 1 - type: Transform -- uid: 28724 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: -17.496458,-33.756527 - parent: 1 - type: Transform -- uid: 28725 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: -17.5,-12.5 - parent: 1 - type: Transform -- uid: 28726 - type: SignDirectionalMed - components: - - pos: -17.494442,-12.803106 - parent: 1 - type: Transform -- uid: 28727 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: -17.478817,-7.5615916 - parent: 1 - type: Transform -- uid: 28728 - type: SignDirectionalBar - components: - - rot: 3.141592653589793 rad - pos: 23.49888,-45.152493 - parent: 1 - type: Transform -- uid: 28729 - type: SignDirectionalFood - components: - - rot: 3.141592653589793 rad - pos: 23.49562,-45.402493 - parent: 1 - type: Transform -- uid: 28730 - type: SignDirectionalSci - components: - - rot: 1.5707963267948966 rad - pos: -17.460167,-40.790154 - parent: 1 - type: Transform -- uid: 28731 - type: SignDirectionalSci - components: - - pos: -17.507042,-24.18393 - parent: 1 - type: Transform -- uid: 28732 - type: SignDirectionalSci - components: - - pos: -27.491566,-1.2344544 - parent: 1 - type: Transform -- uid: 28733 - type: SignDirectionalEng - components: - - pos: -27.491566,-1.4688294 - parent: 1 - type: Transform -- uid: 28734 - type: SignDirectionalMed - components: - - pos: -27.491566,-1.7032045 - parent: 1 - type: Transform -- uid: 28735 - type: SignDirectionalFood - components: - - rot: 1.5707963267948966 rad - pos: -27.50719,2.7655454 - parent: 1 - type: Transform -- uid: 28736 - type: SignDirectionalSec - components: - - rot: 1.5707963267948966 rad - pos: -27.522816,2.2499206 - parent: 1 - type: Transform -- uid: 28737 - type: SignDirectionalSupply - components: - - rot: 3.141592653589793 rad - pos: -27.491566,3.7030454 - parent: 1 - type: Transform -- uid: 28738 - type: SignDirectionalBar - components: - - rot: 1.5707963267948966 rad - pos: -27.50719,3.4686704 - parent: 1 - type: Transform -- uid: 28739 - type: SignDirectionalBridge - components: - - rot: 1.5707963267948966 rad - pos: -27.50719,3.2186704 - parent: 1 - type: Transform -- uid: 28740 - type: SignDirectionalSupply - components: - - pos: -19.471409,48.794754 - parent: 1 - type: Transform -- uid: 28741 - type: SignDirectionalEvac - components: - - pos: -17.5,22.5 - parent: 1 - type: Transform -- uid: 28742 - type: SignDirectionalEvac - components: - - pos: -17.5,33.5 - parent: 1 - type: Transform -- uid: 28743 - type: WallSolid - components: - - pos: 18.5,-15.5 - parent: 1 - type: Transform -- uid: 28744 - type: CableApcExtension - components: - - pos: 19.5,-51.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28745 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28746 - type: AMEController - components: - - pos: -46.5,-16.5 - parent: 1 - type: Transform -- uid: 28747 - type: ShuttersNormalOpen - components: - - pos: 23.5,-40.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -81611.836 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 20965 - Close: - - port: Off - uid: 20965 - Toggle: [] - type: SignalReceiver -- uid: 28748 - type: ShuttersNormalOpen - components: - - pos: 24.5,-40.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -81611.836 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 20965 - Close: - - port: Off - uid: 20965 - Toggle: [] - type: SignalReceiver -- uid: 28749 - type: ShuttersNormalOpen - components: - - pos: 25.5,-40.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -81611.836 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 20965 - Close: - - port: Off - uid: 20965 - Toggle: [] - type: SignalReceiver -- uid: 28750 - type: ShuttersNormalOpen - components: - - pos: 26.5,-40.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -81611.836 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 20965 - Close: - - port: Off - uid: 20965 - Toggle: [] - type: SignalReceiver -- uid: 28751 - type: ShuttersNormalOpen - components: - - pos: 27.5,-40.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -81611.836 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 20965 - Close: - - port: Off - uid: 20965 - Toggle: [] - type: SignalReceiver -- uid: 28752 - type: ShuttersNormalOpen - components: - - pos: 28.5,-40.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -81611.836 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 20965 - Close: - - port: Off - uid: 20965 - Toggle: [] - type: SignalReceiver -- uid: 28753 - type: WallSolid - components: - - pos: -12.5,-34.5 - parent: 1 - type: Transform -- uid: 28754 - type: LockerScienceFilled - components: - - pos: 41.5,-45.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 28755 - type: Grille - components: - - pos: -12.5,43.5 - parent: 1 - type: Transform -- uid: 28756 - type: Grille - components: - - pos: -8.5,43.5 - parent: 1 - type: Transform -- uid: 28757 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -11.5,41.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28758 - type: FoamCrossbow - components: - - pos: -11.410641,41.56952 - parent: 1 - type: Transform -- uid: 28759 - type: BulletFoam - components: - - rot: 3.141592653589793 rad - pos: -11.879391,41.47577 - parent: 1 - type: Transform -- uid: 28760 - type: UprightPianoInstrument - components: - - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 1 - type: Transform -- uid: 28761 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 8.5,7.5 - parent: 1 - type: Transform -- uid: 28762 - type: Grille - components: - - pos: 73.5,46.5 - parent: 1 - type: Transform -- uid: 28763 - type: PaperBin5 - components: - - pos: -27.800707,-9.411719 - parent: 1 - type: Transform -- uid: 28764 - type: WallSolid - components: - - pos: -22.5,0.5 - parent: 1 - type: Transform -- uid: 28765 - type: AirlockEngineeringLocked - components: - - pos: -21.5,0.5 - parent: 1 - type: Transform -- uid: 28766 - type: Catwalk - components: - - pos: 11.5,-89.5 - parent: 1 - type: Transform -- uid: 28767 - type: Catwalk - components: - - pos: 12.5,-89.5 - parent: 1 - type: Transform -- uid: 28768 - type: Catwalk - components: - - pos: 12.5,-90.5 - parent: 1 - type: Transform -- uid: 28769 - type: Catwalk - components: - - pos: 12.5,-91.5 - parent: 1 - type: Transform -- uid: 28770 - type: CableHV - components: - - pos: 12.5,-92.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28771 - type: CableHV - components: - - pos: 12.5,-91.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28772 - type: CableHV - components: - - pos: 12.5,-90.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28773 - type: CableHV - components: - - pos: 12.5,-89.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28774 - type: CableHV - components: - - pos: 11.5,-89.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28775 - type: CableHV - components: - - pos: 10.5,-89.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28776 - type: CableHV - components: - - pos: 9.5,-89.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28777 - type: CableHV - components: - - pos: 8.5,-89.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28778 - type: CableHV - components: - - pos: 7.5,-89.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28779 - type: CableHV - components: - - pos: 6.5,-89.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28780 - type: CableHV - components: - - pos: 5.5,-89.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28781 - type: CableHV - components: - - pos: 4.5,-89.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28782 - type: CableHV - components: - - pos: 3.5,-89.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28783 - type: Catwalk - components: - - pos: 5.5,-89.5 - parent: 1 - type: Transform -- uid: 28784 - type: Catwalk - components: - - pos: 6.5,-89.5 - parent: 1 - type: Transform -- uid: 28785 - type: Catwalk - components: - - pos: 7.5,-89.5 - parent: 1 - type: Transform -- uid: 28786 - type: Catwalk - components: - - pos: 8.5,-89.5 - parent: 1 - type: Transform -- uid: 28787 - type: Catwalk - components: - - pos: 9.5,-89.5 - parent: 1 - type: Transform -- uid: 28788 - type: Catwalk - components: - - pos: 10.5,-89.5 - parent: 1 - type: Transform -- uid: 28789 - type: Catwalk - components: - - pos: 3.5,-89.5 - parent: 1 - type: Transform -- uid: 28790 - type: Grille - components: - - pos: 72.5,46.5 - parent: 1 - type: Transform -- uid: 28791 - type: FaxMachineBase - components: - - pos: 40.5,-39.5 - parent: 1 - type: Transform - - name: science fax - type: FaxMachine -- uid: 28792 - type: ToolboxMechanicalFilled - components: - - pos: -34.47803,-8.761041 - parent: 1 - type: Transform -- uid: 28793 - type: Catwalk - components: - - pos: 65.5,-26.5 - parent: 1 - type: Transform -- uid: 28794 - type: Catwalk - components: - - pos: 66.5,-26.5 - parent: 1 - type: Transform -- uid: 28795 - type: Catwalk - components: - - pos: 67.5,-26.5 - parent: 1 - type: Transform -- uid: 28796 - type: Catwalk - components: - - pos: 68.5,-26.5 - parent: 1 - type: Transform -- uid: 28797 - type: Catwalk - components: - - pos: 69.5,-26.5 - parent: 1 - type: Transform -- uid: 28798 - type: Catwalk - components: - - pos: 70.5,-26.5 - parent: 1 - type: Transform -- uid: 28799 - type: Catwalk - components: - - pos: 71.5,-26.5 - parent: 1 - type: Transform -- uid: 28800 - type: Catwalk - components: - - pos: 72.5,-26.5 - parent: 1 - type: Transform -- uid: 28801 - type: Catwalk - components: - - pos: 73.5,-26.5 - parent: 1 - type: Transform -- uid: 28802 - type: Catwalk - components: - - pos: 74.5,-26.5 - parent: 1 - type: Transform -- uid: 28803 - type: Catwalk - components: - - pos: 75.5,-26.5 - parent: 1 - type: Transform -- uid: 28804 - type: Catwalk - components: - - pos: 76.5,-26.5 - parent: 1 - type: Transform -- uid: 28805 - type: Catwalk - components: - - pos: 77.5,-26.5 - parent: 1 - type: Transform -- uid: 28806 - type: Catwalk - components: - - pos: 78.5,-26.5 - parent: 1 - type: Transform -- uid: 28807 - type: Catwalk - components: - - pos: -46.5,-53.5 - parent: 1 - type: Transform -- uid: 28808 - type: DisposalUnit - components: - - pos: -54.5,-64.5 - parent: 1 - type: Transform -- uid: 28809 - type: GasPipeStraight - components: - - pos: -54.5,-62.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28810 - type: GasPipeStraight - components: - - pos: -54.5,-61.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 28811 - type: GasPressurePump - components: - - rot: 3.141592653589793 rad - pos: -54.5,-60.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28812 - type: GasPort - components: - - pos: -54.5,-59.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28813 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -54.5,-63.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28814 - type: DisposalTrunk - components: - - rot: 1.5707963267948966 rad - pos: -54.5,-64.5 - parent: 1 - type: Transform -- uid: 28815 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -52.5,-64.5 - parent: 1 - type: Transform -- uid: 28816 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -53.5,-64.5 - parent: 1 - type: Transform -- uid: 28817 - type: CarbonDioxideCanister - components: - - pos: -52.5,-62.5 - parent: 1 - type: Transform -- uid: 28818 - type: DisposalUnit - components: - - pos: -52.5,-64.5 - parent: 1 - type: Transform -- uid: 28819 - type: ExosuitFabricator - components: - - pos: 69.5,-43.5 - parent: 1 - type: Transform -- uid: 28820 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 70.5,-47.5 - parent: 1 - type: Transform -- uid: 28821 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 73.5,-47.5 - parent: 1 - type: Transform -- uid: 28822 - type: WindowDirectional - components: - - rot: 3.141592653589793 rad - pos: 72.5,-47.5 - parent: 1 - type: Transform -- uid: 28823 - type: WindoorSecure - components: - - rot: 3.141592653589793 rad - pos: 71.5,-47.5 - parent: 1 - type: Transform -- uid: 28824 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: 70.5,-50.5 - parent: 1 - type: Transform -- uid: 28825 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 72.5,-49.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28826 - type: Retractor - components: - - pos: 73.5331,-48.86455 - parent: 1 - type: Transform -- uid: 28827 - type: Hemostat - components: - - pos: 73.5331,-48.317677 - parent: 1 - type: Transform -- uid: 28828 - type: Cautery - components: - - pos: 73.52661,-47.78304 - parent: 1 - type: Transform -- uid: 28829 - type: SheetGlass1 - components: - - rot: 12.566370614359172 rad - pos: 77.45773,-46.509197 - parent: 1 - type: Transform - - count: 10 - type: Stack -- uid: 28830 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 61.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28831 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 60.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28832 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 59.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28833 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 58.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28834 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 57.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28835 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 56.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28836 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 53.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28837 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 54.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28838 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 55.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28839 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 56.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28840 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 57.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28841 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 58.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28842 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 59.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28843 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 60.5,-6.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28844 - type: NitrogenCanister - components: - - pos: 46.5,-51.5 - parent: 1 - type: Transform -- uid: 28845 - type: OxygenCanister - components: - - pos: 46.5,-52.5 - parent: 1 - type: Transform -- uid: 28846 - type: CarbonDioxideCanister - components: - - pos: 55.5,-55.5 - parent: 1 - type: Transform -- uid: 28847 - type: AirCanister - components: - - pos: 46.5,-53.5 - parent: 1 - type: Transform -- uid: 28848 - type: VendingMachineEngiDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -39.5,-13.5 - parent: 1 - type: Transform -- uid: 28849 - type: Table - components: - - pos: 39.5,-35.5 - parent: 1 - type: Transform -- uid: 28850 - type: Table - components: - - pos: 38.5,-35.5 - parent: 1 - type: Transform -- uid: 28851 - type: ContainmentFieldGenerator - components: - - pos: -74.5,-23.5 - parent: 1 - type: Transform -- uid: 28852 - type: ContainmentFieldGenerator - components: - - pos: -73.5,-23.5 - parent: 1 - type: Transform -- uid: 28853 - type: SpawnPointMime - components: - - pos: -27.5,45.5 - parent: 1 - type: Transform -- uid: 28854 - type: ReinforcedPlasmaWindow - components: - - pos: -44.5,-37.5 - parent: 1 - type: Transform -- uid: 28855 - type: WallReinforced - components: - - pos: -45.5,-37.5 - parent: 1 - type: Transform -- uid: 28856 - type: AirlockAtmosphericsGlassLocked - components: - - pos: -42.5,-39.5 - parent: 1 - type: Transform -- uid: 28857 - type: ShuttersNormalOpen - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -36716.934 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 29230 - Close: - - port: Off - uid: 29230 - Toggle: [] - type: SignalReceiver -- uid: 28858 - type: Catwalk - components: - - pos: -46.5,-54.5 - parent: 1 - type: Transform -- uid: 28859 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -60.5,-28.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28860 - type: ChairFolding - components: - - pos: -29.5,-28.5 - parent: 1 - type: Transform -- uid: 28861 - type: CarpetBlue - components: - - pos: 17.5,14.5 - parent: 1 - type: Transform -- uid: 28862 - type: CarpetBlue - components: - - pos: 17.5,10.5 - parent: 1 - type: Transform -- uid: 28863 - type: AirAlarm - components: - - pos: -22.5,-7.5 - parent: 1 - type: Transform - - devices: - - 12411 - - 21550 - - 12413 - - 21551 - - 3022 - - 3085 - - 16027 - - 16028 - - 21437 - type: DeviceList -- uid: 28864 - type: TableReinforced - components: - - pos: 29.5,32.5 - parent: 1 - type: Transform -- uid: 28865 - type: FaxMachineBase - components: - - pos: -16.5,-61.5 - parent: 1 - type: Transform - - name: medbay fax - type: FaxMachine -- uid: 28866 - type: FaxMachineCaptain - components: - - pos: 30.5,-29.5 - parent: 1 - type: Transform -- uid: 28867 - type: FaxMachineBase - components: - - pos: -25.5,-35.5 - parent: 1 - type: Transform - - name: atmos fax - type: FaxMachine -- uid: 28868 - type: SpawnMobHamsterHamlet - components: - - pos: 30.5,-23.5 - parent: 1 - type: Transform -- uid: 28869 - type: PowerCellRecharger - components: - - pos: -17.5,-61.5 - parent: 1 - type: Transform -- uid: 28870 - type: WallSolid - components: - - rot: 3.141592653589793 rad - pos: 19.5,8.5 - parent: 1 - type: Transform -- uid: 28871 - type: TableWood - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform -- uid: 28872 - type: TableWood - components: - - pos: 23.5,-37.5 - parent: 1 - type: Transform -- uid: 28873 - type: FaxMachineBase - components: - - pos: 23.5,-37.5 - parent: 1 - type: Transform - - name: head of personel fax - type: FaxMachine -- uid: 28874 - type: BoxLighttube - components: - - pos: -42.518154,25.56429 - parent: 1 - type: Transform -- uid: 28875 - type: SheetPlasteel - components: - - pos: -43.304523,25.592714 - parent: 1 - type: Transform -- uid: 28876 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 45.5,-43.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28877 - type: AirSensor - components: - - pos: -28.5,-13.5 - parent: 1 - type: Transform -- uid: 28878 - type: Poweredlight - components: - - pos: -50.5,35.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28879 - type: AtmosDeviceFanTiny - components: - - pos: 69.5,-5.5 - parent: 1 - type: Transform -- uid: 28880 - type: AtmosDeviceFanTiny - components: - - pos: 69.5,-11.5 - parent: 1 - type: Transform -- uid: 28881 - type: SignalSwitch - components: - - pos: -51.5,36.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 18780 - Off: - - port: Close - uid: 18780 - type: SignalTransmitter - - type: ItemCooldown -- uid: 28882 - type: DrinkBloodyMaryGlass - components: - - pos: 61.61879,-53.35289 - parent: 1 - type: Transform -- uid: 28883 - type: PottedPlantRandom - components: - - pos: -1.5,21.5 - parent: 1 - type: Transform -- uid: 28884 - type: AsteroidRock - components: - - pos: 65.5,43.5 - parent: 1 - type: Transform -- uid: 28885 - type: TableWood - components: - - pos: 18.5,-14.5 - parent: 1 - type: Transform -- uid: 28886 - type: FaxMachineBase - components: - - pos: 18.5,-14.5 - parent: 1 - type: Transform - - name: detective fax - type: FaxMachine -- uid: 28887 - type: WallSolid - components: - - pos: 16.5,8.5 - parent: 1 - type: Transform -- uid: 28888 - type: CableApcExtension - components: - - pos: -0.5,-4.5 - parent: 1 - type: Transform -- uid: 28889 - type: CableApcExtension - components: - - pos: 16.5,10.5 - parent: 1 - type: Transform -- uid: 28890 - type: CableApcExtension - components: - - pos: 16.5,9.5 - parent: 1 - type: Transform -- uid: 28891 - type: DrinkGlass - components: - - pos: 0.54256004,-5.358738 - parent: 1 - type: Transform -- uid: 28892 - type: DrinkGlass - components: - - pos: 0.54256004,-5.358738 - parent: 1 - type: Transform -- uid: 28893 - type: DrinkGlass - components: - - pos: 0.54256004,-5.358738 - parent: 1 - type: Transform -- uid: 28894 - type: DrinkGlass - components: - - pos: 0.54256004,-5.358738 - parent: 1 - type: Transform -- uid: 28895 - type: DrinkGlass - components: - - pos: 0.54256004,-5.358738 - parent: 1 - type: Transform -- uid: 28896 - type: DrinkGlass - components: - - pos: 0.54256004,-5.358738 - parent: 1 - type: Transform -- uid: 28897 - type: SheetGlass - components: - - pos: -24.799974,-52.361668 - parent: 1 - type: Transform -- uid: 28898 - type: FaxMachineBase - components: - - pos: 22.5,23.5 - parent: 1 - type: Transform - - name: security fax - type: FaxMachine -- uid: 28899 - type: FaxMachineBase - components: - - pos: 12.5,-5.5 - parent: 1 - type: Transform - - name: library fax - type: FaxMachine -- uid: 28900 - type: Paper - components: - - pos: 10.165828,-6.3936543 - parent: 1 - type: Transform -- uid: 28901 - type: Paper - components: - - pos: 10.165828,-6.3936543 - parent: 1 - type: Transform -- uid: 28902 - type: Paper - components: - - pos: 10.165828,-6.3936543 - parent: 1 - type: Transform -- uid: 28903 - type: BriefcaseBrownFilled - components: - - pos: 32.38076,-48.30607 - parent: 1 - type: Transform -- uid: 28904 - type: IntercomScience - components: - - pos: 42.5,-34.5 - parent: 1 - type: Transform -- uid: 28905 - type: IntercomScience - components: - - pos: 44.5,-40.5 - parent: 1 - type: Transform -- uid: 28906 - type: IntercomScience - components: - - rot: 1.5707963267948966 rad - pos: 40.5,-45.5 - parent: 1 - type: Transform -- uid: 28907 - type: IntercomCommand - components: - - pos: 64.5,0.5 - parent: 1 - type: Transform -- uid: 28908 - type: IntercomScience - components: - - rot: -1.5707963267948966 rad - pos: 53.5,-55.5 - parent: 1 - type: Transform -- uid: 28909 - type: IntercomCommand - components: - - pos: 64.5,-50.5 - parent: 1 - type: Transform -- uid: 28910 - type: IntercomScience - components: - - pos: 67.5,-42.5 - parent: 1 - type: Transform -- uid: 28911 - type: IntercomScience - components: - - rot: -1.5707963267948966 rad - pos: 76.5,-40.5 - parent: 1 - type: Transform -- uid: 28912 - type: IntercomScience - components: - - pos: 60.5,-30.5 - parent: 1 - type: Transform -- uid: 28913 - type: IntercomSecurity - components: - - pos: 26.5,24.5 - parent: 1 - type: Transform -- uid: 28914 - type: IntercomSecurity - components: - - pos: 16.5,24.5 - parent: 1 - type: Transform -- uid: 28915 - type: IntercomCommand - components: - - rot: -1.5707963267948966 rad - pos: 9.5,21.5 - parent: 1 - type: Transform -- uid: 28916 - type: VendingMachineSec - components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,21.5 - parent: 1 - type: Transform -- uid: 28917 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 32.5,20.5 - parent: 1 - type: Transform -- uid: 28918 - type: IntercomSecurity - components: - - rot: 1.5707963267948966 rad - pos: 39.5,10.5 - parent: 1 - type: Transform -- uid: 28919 - type: SignalSwitch - components: - - rot: 1.5707963267948966 rad - pos: 3.5,10.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 28709 - - port: Open - uid: 28710 - - port: Open - uid: 28711 - - port: Open - uid: 28718 - - port: Open - uid: 28717 - - port: Open - uid: 28714 - - port: Open - uid: 28713 - - port: Open - uid: 28712 - Off: - - port: Close - uid: 28709 - - port: Close - uid: 28710 - - port: Close - uid: 28711 - - port: Close - uid: 28718 - - port: Close - uid: 28717 - - port: Close - uid: 28714 - - port: Close - uid: 28713 - - port: Close - uid: 28712 - type: SignalTransmitter - - type: ItemCooldown -- uid: 28920 - type: Autolathe - components: - - pos: -37.5,-9.5 - parent: 1 - type: Transform -- uid: 28921 - type: IntercomService - components: - - pos: 20.5,15.5 - parent: 1 - type: Transform -- uid: 28922 - type: IntercomSupply - components: - - rot: 1.5707963267948966 rad - pos: -35.5,30.5 - parent: 1 - type: Transform -- uid: 28923 - type: IntercomSupply - components: - - pos: -43.5,26.5 - parent: 1 - type: Transform -- uid: 28924 - type: IntercomSupply - components: - - rot: -1.5707963267948966 rad - pos: -39.5,28.5 - parent: 1 - type: Transform -- uid: 28925 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 1 - type: Transform -- uid: 28926 - type: Intercom - components: - - pos: 14.5,4.5 - parent: 1 - type: Transform -- uid: 28927 - type: Intercom - components: - - pos: 9.5,11.5 - parent: 1 - type: Transform -- uid: 28928 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 - parent: 1 - type: Transform -- uid: 28929 - type: IntercomService - components: - - pos: -26.5,16.5 - parent: 1 - type: Transform -- uid: 28930 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -42.5,13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28931 - type: Intercom - components: - - pos: -31.5,11.5 - parent: 1 - type: Transform -- uid: 28932 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -50.5,7.5 - parent: 1 - type: Transform -- uid: 28933 - type: Intercom - components: - - pos: -30.5,2.5 - parent: 1 - type: Transform -- uid: 28934 - type: PosterContrabandPower - components: - - pos: -23.5,-7.5 - parent: 1 - type: Transform -- uid: 28935 - type: IntercomEngineering - components: - - pos: -61.5,-26.5 - parent: 1 - type: Transform -- uid: 28936 - type: IntercomCommand - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-35.5 - parent: 1 - type: Transform -- uid: 28937 - type: IntercomSecurity - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-45.5 - parent: 1 - type: Transform -- uid: 28938 - type: WallSolid - components: - - pos: 1.5,-51.5 - parent: 1 - type: Transform -- uid: 28939 - type: IntercomMedical - components: - - pos: 2.5,-51.5 - parent: 1 - type: Transform -- uid: 28940 - type: IntercomMedical - components: - - pos: -25.5,-68.5 - parent: 1 - type: Transform -- uid: 28941 - type: Intercom - components: - - pos: -14.5,9.5 - parent: 1 - type: Transform -- uid: 28942 - type: Intercom - components: - - pos: -15.5,-24.5 - parent: 1 - type: Transform -- uid: 28943 - type: Intercom - components: - - pos: 4.5,-39.5 - parent: 1 - type: Transform -- uid: 28944 - type: Intercom - components: - - pos: 39.5,-40.5 - parent: 1 - type: Transform -- uid: 28945 - type: Intercom - components: - - pos: 29.5,-15.5 - parent: 1 - type: Transform -- uid: 28946 - type: Intercom - components: - - pos: 39.5,3.5 - parent: 1 - type: Transform -- uid: 28947 - type: Intercom - components: - - pos: 54.5,-4.5 - parent: 1 - type: Transform -- uid: 28948 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-8.5 - parent: 1 - type: Transform -- uid: 28949 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: -20.5,31.5 - parent: 1 - type: Transform -- uid: 28950 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -1.5,48.5 - parent: 1 - type: Transform -- uid: 28951 - type: IntercomEngineering - components: - - pos: -28.5,-32.5 - parent: 1 - type: Transform -- uid: 28952 - type: IntercomEngineering - components: - - rot: -1.5707963267948966 rad - pos: -32.5,-49.5 - parent: 1 - type: Transform -- uid: 28953 - type: IntercomCommand - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-57.5 - parent: 1 - type: Transform -- uid: 28954 - type: IntercomSecurity - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-13.5 - parent: 1 - type: Transform -- uid: 28955 - type: IntercomScience - components: - - pos: 53.5,-38.5 - parent: 1 - type: Transform -- uid: 28956 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -19.5,40.5 - parent: 1 - type: Transform -- uid: 28957 - type: RandomPosterLegit - components: - - pos: -47.5,9.5 - parent: 1 - type: Transform -- uid: 28958 - type: AirlockEngineeringGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: -43.5,-22.5 - parent: 1 - type: Transform -- uid: 28959 - type: CableApcExtension - components: - - pos: 43.5,10.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 28960 - type: IntercomMedical - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-64.5 - parent: 1 - type: Transform -- uid: 28961 - type: IntercomMedical - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-36.5 - parent: 1 - type: Transform -- uid: 28962 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-18.5 - parent: 1 - type: Transform -- uid: 28963 - type: Intercom - components: - - pos: -14.5,-40.5 - parent: 1 - type: Transform -- uid: 28964 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-28.5 - parent: 1 - type: Transform -- uid: 28965 - type: FloraTree06 - components: - - pos: -35.026413,5.9935036 - parent: 1 - type: Transform -- uid: 28966 - type: FloraTree04 - components: - - pos: -35.771816,4.543429 - parent: 1 - type: Transform -- uid: 28967 - type: StoolBar - components: - - name: donk stool - type: MetaData - - pos: -11.5,44.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 28968 - type: Railing - components: - - pos: 31.5,-40.5 - parent: 1 - type: Transform -- uid: 28969 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-39.5 - parent: 1 - type: Transform -- uid: 28970 - type: ClothingNeckBling - components: - - pos: 48.258717,-21.370115 - parent: 1 - type: Transform -- uid: 28971 - type: Intercom - components: - - pos: 17.5,-51.5 - parent: 1 - type: Transform -- uid: 28972 - type: AtmosDeviceFanTiny - components: - - pos: 69.5,-13.5 - parent: 1 - type: Transform -- uid: 28973 - type: CableApcExtension - components: - - pos: 47.5,5.5 - parent: 1 - type: Transform -- uid: 28974 - type: VendingMachineDiscount - components: - - flags: SessionSpecific - type: MetaData - - pos: -21.5,-17.5 - parent: 1 - type: Transform -- uid: 28975 - type: Grille - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-18.5 - parent: 1 - type: Transform -- uid: 28976 - type: VendingMachineChang - components: - - flags: SessionSpecific - type: MetaData - - pos: -21.5,-18.5 - parent: 1 - type: Transform -- uid: 28977 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: -23.5,-19.5 - parent: 1 - type: Transform -- uid: 28978 - type: CableApcExtension - components: - - pos: 58.5,6.5 - parent: 1 - type: Transform -- uid: 28979 - type: CableApcExtension - components: - - pos: 59.5,6.5 - parent: 1 - type: Transform -- uid: 28980 - type: CableApcExtension - components: - - pos: 12.5,-84.5 - parent: 1 - type: Transform -- uid: 28981 - type: VendingMachineTheater - components: - - flags: SessionSpecific - type: MetaData - - pos: 18.5,-86.5 - parent: 1 - type: Transform -- uid: 28982 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28983 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28984 - type: CableApcExtension - components: - - pos: 12.5,-82.5 - parent: 1 - type: Transform -- uid: 28985 - type: AirlockExternalGlassShuttleArrivals - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-82.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 28986 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-88.5 - parent: 1 - type: Transform -- uid: 28987 - type: AirlockExternalGlass - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-82.5 - parent: 1 - type: Transform -- uid: 28988 - type: WallReinforced - components: - - pos: 35.5,-75.5 - parent: 1 - type: Transform -- uid: 28989 - type: Grille - components: - - pos: -66.5,-50.5 - parent: 1 - type: Transform -- uid: 28990 - type: IntercomService - components: - - rot: 1.5707963267948966 rad - pos: -11.5,5.5 - parent: 1 - type: Transform -- uid: 28991 - type: Table - components: - - pos: -37.5,-8.5 - parent: 1 - type: Transform -- uid: 28992 - type: FloorDrain - components: - - pos: 3.5,-46.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 28993 - type: Handcuffs - components: - - pos: -16.022211,23.522974 - parent: 1 - type: Transform -- uid: 28994 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -14.5,25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 28995 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28996 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -18.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28997 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28998 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 28999 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -17.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29000 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29001 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -15.5,25.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29002 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: -15.5,24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29003 - type: SignalSwitch - components: - - pos: 33.487907,17.698355 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 29005 - - port: Open - uid: 29006 - - port: Open - uid: 29007 - Off: - - port: Close - uid: 29005 - - port: Close - uid: 29006 - - port: Close - uid: 29007 - type: SignalTransmitter - - type: ItemCooldown -- uid: 29004 - type: CableApcExtension - components: - - pos: -15.5,24.5 - parent: 1 - type: Transform -- uid: 29005 - type: ShuttersNormalOpen - components: - - pos: 34.5,18.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -54630.633 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 29003 - Close: - - port: Off - uid: 29003 - Toggle: [] - type: SignalReceiver -- uid: 29006 - type: ShuttersNormalOpen - components: - - pos: 35.5,18.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -54630.633 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 29003 - Close: - - port: Off - uid: 29003 - Toggle: [] - type: SignalReceiver -- uid: 29007 - type: ShuttersNormalOpen - components: - - pos: 36.5,18.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -54630.633 - state: Opening - type: Door - - canCollide: True - type: Physics - - enabled: True - type: Occluder - - airBlocked: True - type: Airtight - - inputs: - Open: - - port: On - uid: 29003 - Close: - - port: Off - uid: 29003 - Toggle: [] - type: SignalReceiver -- uid: 29008 - type: IntercomMedical - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-85.5 - parent: 1 - type: Transform -- uid: 29009 - type: IntercomMedical - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-80.5 - parent: 1 - type: Transform -- uid: 29010 - type: IntercomMedical - components: - - pos: -19.5,-74.5 - parent: 1 - type: Transform -- uid: 29011 - type: FaxMachineBase - components: - - pos: -22.5,-98.5 - parent: 1 - type: Transform - - name: maint fax - type: FaxMachine -- uid: 29012 - type: Grille - components: - - pos: -66.5,-51.5 - parent: 1 - type: Transform -- uid: 29013 - type: Grille - components: - - pos: -66.5,-52.5 - parent: 1 - type: Transform -- uid: 29014 - type: Grille - components: - - pos: -66.5,-53.5 - parent: 1 - type: Transform -- uid: 29015 - type: Grille - components: - - pos: -66.5,-54.5 - parent: 1 - type: Transform -- uid: 29016 - type: Grille - components: - - pos: -66.5,-55.5 - parent: 1 - type: Transform -- uid: 29017 - type: Grille - components: - - pos: -66.5,-56.5 - parent: 1 - type: Transform -- uid: 29018 - type: Grille - components: - - pos: -66.5,-57.5 - parent: 1 - type: Transform -- uid: 29019 - type: Catwalk - components: - - pos: 6.5,-88.5 - parent: 1 - type: Transform -- uid: 29020 - type: Catwalk - components: - - pos: 6.5,-87.5 - parent: 1 - type: Transform -- uid: 29021 - type: Catwalk - components: - - pos: 6.5,-86.5 - parent: 1 - type: Transform -- uid: 29022 - type: Catwalk - components: - - pos: 6.5,-85.5 - parent: 1 - type: Transform -- uid: 29023 - type: Catwalk - components: - - pos: 6.5,-84.5 - parent: 1 - type: Transform -- uid: 29024 - type: Catwalk - components: - - pos: 6.5,-83.5 - parent: 1 - type: Transform -- uid: 29025 - type: Catwalk - components: - - pos: 6.5,-82.5 - parent: 1 - type: Transform -- uid: 29026 - type: Catwalk - components: - - pos: 6.5,-81.5 - parent: 1 - type: Transform -- uid: 29027 - type: Catwalk - components: - - pos: 6.5,-80.5 - parent: 1 - type: Transform -- uid: 29028 - type: Catwalk - components: - - pos: 6.5,-79.5 - parent: 1 - type: Transform -- uid: 29029 - type: Catwalk - components: - - pos: 6.5,-78.5 - parent: 1 - type: Transform -- uid: 29030 - type: Catwalk - components: - - pos: 6.5,-77.5 - parent: 1 - type: Transform -- uid: 29031 - type: Catwalk - components: - - pos: 6.5,-76.5 - parent: 1 - type: Transform -- uid: 29032 - type: Catwalk - components: - - pos: 6.5,-75.5 - parent: 1 - type: Transform -- uid: 29033 - type: Catwalk - components: - - pos: 7.5,-75.5 - parent: 1 - type: Transform -- uid: 29034 - type: Catwalk - components: - - pos: 8.5,-75.5 - parent: 1 - type: Transform -- uid: 29035 - type: Catwalk - components: - - pos: 9.5,-75.5 - parent: 1 - type: Transform -- uid: 29036 - type: Catwalk - components: - - pos: 10.5,-75.5 - parent: 1 - type: Transform -- uid: 29037 - type: Catwalk - components: - - pos: 11.5,-75.5 - parent: 1 - type: Transform -- uid: 29038 - type: Catwalk - components: - - pos: 12.5,-75.5 - parent: 1 - type: Transform -- uid: 29039 - type: Catwalk - components: - - pos: 13.5,-75.5 - parent: 1 - type: Transform -- uid: 29040 - type: Catwalk - components: - - pos: 14.5,-75.5 - parent: 1 - type: Transform -- uid: 29041 - type: Catwalk - components: - - pos: 15.5,-75.5 - parent: 1 - type: Transform -- uid: 29042 - type: Catwalk - components: - - pos: 16.5,-75.5 - parent: 1 - type: Transform -- uid: 29043 - type: Catwalk - components: - - pos: 17.5,-75.5 - parent: 1 - type: Transform -- uid: 29044 - type: Catwalk - components: - - pos: 18.5,-75.5 - parent: 1 - type: Transform -- uid: 29045 - type: Catwalk - components: - - pos: 19.5,-75.5 - parent: 1 - type: Transform -- uid: 29046 - type: Catwalk - components: - - pos: 20.5,-75.5 - parent: 1 - type: Transform -- uid: 29047 - type: Catwalk - components: - - pos: 21.5,-75.5 - parent: 1 - type: Transform -- uid: 29048 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-70.5 - parent: 1 - type: Transform -- uid: 29049 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-77.5 - parent: 1 - type: Transform -- uid: 29050 - type: WallReinforced - components: - - pos: 27.5,-75.5 - parent: 1 - type: Transform -- uid: 29051 - type: CableApcExtension - components: - - pos: 48.5,-92.5 - parent: 1 - type: Transform -- uid: 29052 - type: CableApcExtension - components: - - pos: 48.5,-93.5 - parent: 1 - type: Transform -- uid: 29053 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 43.5,-75.5 - parent: 1 - type: Transform -- uid: 29054 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-94.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29055 - type: CableApcExtension - components: - - pos: 48.5,-76.5 - parent: 1 - type: Transform -- uid: 29056 - type: CableApcExtension - components: - - pos: 46.5,-89.5 - parent: 1 - type: Transform -- uid: 29057 - type: CableApcExtension - components: - - pos: 47.5,-89.5 - parent: 1 - type: Transform -- uid: 29058 - type: DisposalPipe - components: - - pos: 30.5,-81.5 - parent: 1 - type: Transform -- uid: 29059 - type: IntercomSecurity - components: - - pos: 4.5,-55.5 - parent: 1 - type: Transform -- uid: 29060 - type: CableMVStack - components: - - pos: -36.572292,-8.416974 - parent: 1 - type: Transform -- uid: 29061 - type: HolofanProjector - components: - - pos: -37.369167,-8.432599 - parent: 1 - type: Transform -- uid: 29062 - type: PosterLegitStateLaws - components: - - pos: -17.5,27.5 - parent: 1 - type: Transform -- uid: 29063 - type: PosterLegitEnlist - components: - - pos: -13.5,27.5 - parent: 1 - type: Transform -- uid: 29064 - type: Grille - components: - - pos: 36.5,18.5 - parent: 1 - type: Transform -- uid: 29065 - type: Grille - components: - - pos: 35.5,18.5 - parent: 1 - type: Transform -- uid: 29066 - type: Grille - components: - - pos: 34.5,18.5 - parent: 1 - type: Transform -- uid: 29067 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29068 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 67.5,-36.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29069 - type: GasPassiveVent - components: - - rot: 1.5707963267948966 rad - pos: 68.5,-37.5 - parent: 1 - type: Transform - - color: '#9755CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29070 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 71.5,-37.5 - parent: 1 - type: Transform - - color: '#9755CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29071 - type: GasPressurePump - components: - - rot: 1.5707963267948966 rad - pos: 70.5,-37.5 - parent: 1 - type: Transform - - color: '#9755CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29072 - type: AirlockScienceGlassLocked - components: - - rot: 1.5707963267948966 rad - pos: 69.5,-37.5 - parent: 1 - type: Transform -- uid: 29073 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 71.5,-30.5 - parent: 1 - type: Transform -- uid: 29074 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 71.5,-30.5 - parent: 1 - type: Transform -- uid: 29075 - type: AirlockScienceGlassLocked - components: - - rot: 3.141592653589793 rad - pos: 72.5,-30.5 - parent: 1 - type: Transform -- uid: 29076 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -39.5,5.5 - parent: 1 - type: Transform -- uid: 29077 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: -39.5,6.5 - parent: 1 - type: Transform -- uid: 29078 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -36.5,6.5 - parent: 1 - type: Transform -- uid: 29079 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -36.5,5.5 - parent: 1 - type: Transform -- uid: 29080 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -36.5,4.5 - parent: 1 - type: Transform -- uid: 29081 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: -36.5,3.5 - parent: 1 - type: Transform -- uid: 29082 - type: Catwalk - components: - - pos: 69.5,4.5 - parent: 1 - type: Transform -- uid: 29083 - type: Firelock - components: - - pos: 16.5,30.5 - parent: 1 - type: Transform -- uid: 29084 - type: CarpetOrange - components: - - rot: 3.141592653589793 rad - pos: 11.5,10.5 - parent: 1 - type: Transform -- uid: 29085 - type: AtmosDeviceFanTiny - components: - - pos: -1.5,14.5 - parent: 1 - type: Transform -- uid: 29086 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,6.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29087 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 25.5,-25.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29088 - type: Intercom - components: - - pos: -25.5,-94.5 - parent: 1 - type: Transform -- uid: 29089 - type: Poweredlight - components: - - pos: -21.5,8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29090 - type: Catwalk - components: - - pos: 69.5,2.5 - parent: 1 - type: Transform -- uid: 29091 - type: Catwalk - components: - - pos: 69.5,1.5 - parent: 1 - type: Transform -- uid: 29092 - type: Catwalk - components: - - pos: 69.5,0.5 - parent: 1 - type: Transform -- uid: 29093 - type: Catwalk - components: - - pos: 69.5,-0.5 - parent: 1 - type: Transform -- uid: 29094 - type: Catwalk - components: - - pos: 69.5,-1.5 - parent: 1 - type: Transform -- uid: 29095 - type: Catwalk - components: - - pos: 69.5,31.5 - parent: 1 - type: Transform -- uid: 29096 - type: Catwalk - components: - - pos: 69.5,30.5 - parent: 1 - type: Transform -- uid: 29097 - type: Catwalk - components: - - pos: 69.5,29.5 - parent: 1 - type: Transform -- uid: 29098 - type: Catwalk - components: - - pos: 69.5,28.5 - parent: 1 - type: Transform -- uid: 29099 - type: Catwalk - components: - - pos: 69.5,27.5 - parent: 1 - type: Transform -- uid: 29100 - type: Catwalk - components: - - pos: 69.5,26.5 - parent: 1 - type: Transform -- uid: 29101 - type: Catwalk - components: - - pos: 69.5,25.5 - parent: 1 - type: Transform -- uid: 29102 - type: Catwalk - components: - - pos: 69.5,24.5 - parent: 1 - type: Transform -- uid: 29103 - type: Catwalk - components: - - pos: 69.5,23.5 - parent: 1 - type: Transform -- uid: 29104 - type: Catwalk - components: - - pos: 69.5,22.5 - parent: 1 - type: Transform -- uid: 29105 - type: Catwalk - components: - - pos: 69.5,21.5 - parent: 1 - type: Transform -- uid: 29106 - type: Catwalk - components: - - pos: 69.5,20.5 - parent: 1 - type: Transform -- uid: 29107 - type: Catwalk - components: - - pos: 69.5,19.5 - parent: 1 - type: Transform -- uid: 29108 - type: Catwalk - components: - - pos: 69.5,18.5 - parent: 1 - type: Transform -- uid: 29109 - type: Catwalk - components: - - pos: 69.5,17.5 - parent: 1 - type: Transform -- uid: 29110 - type: Catwalk - components: - - pos: 69.5,16.5 - parent: 1 - type: Transform -- uid: 29111 - type: Catwalk - components: - - pos: 69.5,15.5 - parent: 1 - type: Transform -- uid: 29112 - type: Catwalk - components: - - pos: 69.5,14.5 - parent: 1 - type: Transform -- uid: 29113 - type: Catwalk - components: - - pos: 69.5,13.5 - parent: 1 - type: Transform -- uid: 29114 - type: Catwalk - components: - - pos: 69.5,12.5 - parent: 1 - type: Transform -- uid: 29115 - type: Catwalk - components: - - pos: 69.5,11.5 - parent: 1 - type: Transform -- uid: 29116 - type: Catwalk - components: - - pos: 69.5,10.5 - parent: 1 - type: Transform -- uid: 29117 - type: Catwalk - components: - - pos: 69.5,9.5 - parent: 1 - type: Transform -- uid: 29118 - type: Catwalk - components: - - pos: 69.5,8.5 - parent: 1 - type: Transform -- uid: 29119 - type: Catwalk - components: - - pos: 69.5,7.5 - parent: 1 - type: Transform -- uid: 29120 - type: Catwalk - components: - - pos: 69.5,6.5 - parent: 1 - type: Transform -- uid: 29121 - type: Catwalk - components: - - pos: 69.5,5.5 - parent: 1 - type: Transform -- uid: 29122 - type: Catwalk - components: - - pos: 75.5,43.5 - parent: 1 - type: Transform -- uid: 29123 - type: Catwalk - components: - - pos: 63.5,37.5 - parent: 1 - type: Transform -- uid: 29124 - type: Catwalk - components: - - pos: 63.5,38.5 - parent: 1 - type: Transform -- uid: 29125 - type: Catwalk - components: - - pos: 63.5,39.5 - parent: 1 - type: Transform -- uid: 29126 - type: Catwalk - components: - - pos: 64.5,39.5 - parent: 1 - type: Transform -- uid: 29127 - type: Catwalk - components: - - pos: 65.5,39.5 - parent: 1 - type: Transform -- uid: 29128 - type: Catwalk - components: - - pos: 66.5,39.5 - parent: 1 - type: Transform -- uid: 29129 - type: Catwalk - components: - - pos: 67.5,39.5 - parent: 1 - type: Transform -- uid: 29130 - type: Catwalk - components: - - pos: 67.5,40.5 - parent: 1 - type: Transform -- uid: 29131 - type: Catwalk - components: - - pos: 67.5,41.5 - parent: 1 - type: Transform -- uid: 29132 - type: Catwalk - components: - - pos: 68.5,41.5 - parent: 1 - type: Transform -- uid: 29133 - type: Catwalk - components: - - pos: 69.5,41.5 - parent: 1 - type: Transform -- uid: 29134 - type: Catwalk - components: - - pos: 70.5,41.5 - parent: 1 - type: Transform -- uid: 29135 - type: Catwalk - components: - - pos: 71.5,41.5 - parent: 1 - type: Transform -- uid: 29136 - type: Catwalk - components: - - pos: 72.5,41.5 - parent: 1 - type: Transform -- uid: 29137 - type: Catwalk - components: - - pos: 72.5,42.5 - parent: 1 - type: Transform -- uid: 29138 - type: Catwalk - components: - - pos: 73.5,42.5 - parent: 1 - type: Transform -- uid: 29139 - type: Catwalk - components: - - pos: 74.5,42.5 - parent: 1 - type: Transform -- uid: 29140 - type: Catwalk - components: - - pos: 75.5,42.5 - parent: 1 - type: Transform -- uid: 29141 - type: Catwalk - components: - - pos: 75.5,44.5 - parent: 1 - type: Transform -- uid: 29142 - type: Catwalk - components: - - pos: 75.5,45.5 - parent: 1 - type: Transform -- uid: 29143 - type: Catwalk - components: - - pos: 75.5,46.5 - parent: 1 - type: Transform -- uid: 29144 - type: Catwalk - components: - - pos: 74.5,46.5 - parent: 1 - type: Transform -- uid: 29145 - type: Catwalk - components: - - pos: 74.5,47.5 - parent: 1 - type: Transform -- uid: 29146 - type: Catwalk - components: - - pos: 74.5,48.5 - parent: 1 - type: Transform -- uid: 29147 - type: Catwalk - components: - - pos: 74.5,49.5 - parent: 1 - type: Transform -- uid: 29148 - type: Catwalk - components: - - pos: 74.5,50.5 - parent: 1 - type: Transform -- uid: 29149 - type: Catwalk - components: - - pos: 74.5,51.5 - parent: 1 - type: Transform -- uid: 29150 - type: Catwalk - components: - - pos: 74.5,52.5 - parent: 1 - type: Transform -- uid: 29151 - type: Catwalk - components: - - pos: 74.5,53.5 - parent: 1 - type: Transform -- uid: 29152 - type: Catwalk - components: - - pos: 74.5,54.5 - parent: 1 - type: Transform -- uid: 29153 - type: Catwalk - components: - - pos: 74.5,55.5 - parent: 1 - type: Transform -- uid: 29154 - type: Catwalk - components: - - pos: 74.5,56.5 - parent: 1 - type: Transform -- uid: 29155 - type: Catwalk - components: - - pos: 74.5,57.5 - parent: 1 - type: Transform -- uid: 29156 - type: Catwalk - components: - - pos: 60.5,58.5 - parent: 1 - type: Transform -- uid: 29157 - type: Catwalk - components: - - pos: 73.5,57.5 - parent: 1 - type: Transform -- uid: 29158 - type: Catwalk - components: - - pos: 72.5,57.5 - parent: 1 - type: Transform -- uid: 29159 - type: Catwalk - components: - - pos: 71.5,57.5 - parent: 1 - type: Transform -- uid: 29160 - type: Catwalk - components: - - pos: 70.5,57.5 - parent: 1 - type: Transform -- uid: 29161 - type: Catwalk - components: - - pos: 69.5,57.5 - parent: 1 - type: Transform -- uid: 29162 - type: Catwalk - components: - - pos: 68.5,57.5 - parent: 1 - type: Transform -- uid: 29163 - type: Catwalk - components: - - pos: 67.5,57.5 - parent: 1 - type: Transform -- uid: 29164 - type: Catwalk - components: - - pos: 66.5,57.5 - parent: 1 - type: Transform -- uid: 29165 - type: Catwalk - components: - - pos: 65.5,57.5 - parent: 1 - type: Transform -- uid: 29166 - type: Catwalk - components: - - pos: 64.5,57.5 - parent: 1 - type: Transform -- uid: 29167 - type: Catwalk - components: - - pos: 63.5,57.5 - parent: 1 - type: Transform -- uid: 29168 - type: Catwalk - components: - - pos: 62.5,57.5 - parent: 1 - type: Transform -- uid: 29169 - type: Catwalk - components: - - pos: 61.5,57.5 - parent: 1 - type: Transform -- uid: 29170 - type: Catwalk - components: - - pos: 60.5,57.5 - parent: 1 - type: Transform -- uid: 29171 - type: Catwalk - components: - - pos: 60.5,59.5 - parent: 1 - type: Transform -- uid: 29172 - type: Catwalk - components: - - pos: 60.5,60.5 - parent: 1 - type: Transform -- uid: 29173 - type: Catwalk - components: - - pos: 60.5,61.5 - parent: 1 - type: Transform -- uid: 29174 - type: Catwalk - components: - - pos: 60.5,62.5 - parent: 1 - type: Transform -- uid: 29175 - type: Catwalk - components: - - pos: 60.5,63.5 - parent: 1 - type: Transform -- uid: 29176 - type: Catwalk - components: - - pos: 47.5,55.5 - parent: 1 - type: Transform -- uid: 29177 - type: Catwalk - components: - - pos: 59.5,63.5 - parent: 1 - type: Transform -- uid: 29178 - type: Catwalk - components: - - pos: 58.5,63.5 - parent: 1 - type: Transform -- uid: 29179 - type: Catwalk - components: - - pos: 57.5,63.5 - parent: 1 - type: Transform -- uid: 29180 - type: Catwalk - components: - - pos: 56.5,63.5 - parent: 1 - type: Transform -- uid: 29181 - type: Catwalk - components: - - pos: 55.5,63.5 - parent: 1 - type: Transform -- uid: 29182 - type: Catwalk - components: - - pos: 54.5,63.5 - parent: 1 - type: Transform -- uid: 29183 - type: Catwalk - components: - - pos: 53.5,63.5 - parent: 1 - type: Transform -- uid: 29184 - type: Catwalk - components: - - pos: 52.5,63.5 - parent: 1 - type: Transform -- uid: 29185 - type: Catwalk - components: - - pos: 51.5,63.5 - parent: 1 - type: Transform -- uid: 29186 - type: Catwalk - components: - - pos: 50.5,63.5 - parent: 1 - type: Transform -- uid: 29187 - type: Catwalk - components: - - pos: 49.5,63.5 - parent: 1 - type: Transform -- uid: 29188 - type: Catwalk - components: - - pos: 48.5,63.5 - parent: 1 - type: Transform -- uid: 29189 - type: Catwalk - components: - - pos: 48.5,62.5 - parent: 1 - type: Transform -- uid: 29190 - type: Catwalk - components: - - pos: 48.5,61.5 - parent: 1 - type: Transform -- uid: 29191 - type: Catwalk - components: - - pos: 48.5,60.5 - parent: 1 - type: Transform -- uid: 29192 - type: Catwalk - components: - - pos: 48.5,59.5 - parent: 1 - type: Transform -- uid: 29193 - type: Catwalk - components: - - pos: 48.5,58.5 - parent: 1 - type: Transform -- uid: 29194 - type: Catwalk - components: - - pos: 48.5,57.5 - parent: 1 - type: Transform -- uid: 29195 - type: Catwalk - components: - - pos: 48.5,56.5 - parent: 1 - type: Transform -- uid: 29196 - type: Catwalk - components: - - pos: 48.5,55.5 - parent: 1 - type: Transform -- uid: 29197 - type: Catwalk - components: - - pos: 46.5,55.5 - parent: 1 - type: Transform -- uid: 29198 - type: Catwalk - components: - - pos: 45.5,55.5 - parent: 1 - type: Transform -- uid: 29199 - type: Catwalk - components: - - pos: 44.5,55.5 - parent: 1 - type: Transform -- uid: 29200 - type: Catwalk - components: - - pos: 43.5,55.5 - parent: 1 - type: Transform -- uid: 29201 - type: Catwalk - components: - - pos: 42.5,55.5 - parent: 1 - type: Transform -- uid: 29202 - type: Catwalk - components: - - pos: 41.5,55.5 - parent: 1 - type: Transform -- uid: 29203 - type: Catwalk - components: - - pos: 40.5,55.5 - parent: 1 - type: Transform -- uid: 29204 - type: Catwalk - components: - - pos: 39.5,55.5 - parent: 1 - type: Transform -- uid: 29205 - type: Catwalk - components: - - pos: 38.5,55.5 - parent: 1 - type: Transform -- uid: 29206 - type: Catwalk - components: - - pos: 37.5,55.5 - parent: 1 - type: Transform -- uid: 29207 - type: Catwalk - components: - - pos: 36.5,55.5 - parent: 1 - type: Transform -- uid: 29208 - type: Catwalk - components: - - pos: 35.5,55.5 - parent: 1 - type: Transform -- uid: 29209 - type: Catwalk - components: - - pos: 34.5,55.5 - parent: 1 - type: Transform -- uid: 29210 - type: Catwalk - components: - - pos: 33.5,55.5 - parent: 1 - type: Transform -- uid: 29211 - type: Catwalk - components: - - pos: 32.5,55.5 - parent: 1 - type: Transform -- uid: 29212 - type: Catwalk - components: - - pos: 31.5,55.5 - parent: 1 - type: Transform -- uid: 29213 - type: Catwalk - components: - - pos: 30.5,55.5 - parent: 1 - type: Transform -- uid: 29214 - type: Catwalk - components: - - pos: 66.5,35.5 - parent: 1 - type: Transform -- uid: 29215 - type: Catwalk - components: - - pos: 66.5,34.5 - parent: 1 - type: Transform -- uid: 29216 - type: Catwalk - components: - - pos: 66.5,33.5 - parent: 1 - type: Transform -- uid: 29217 - type: Catwalk - components: - - pos: 66.5,32.5 - parent: 1 - type: Transform -- uid: 29218 - type: Catwalk - components: - - pos: 66.5,31.5 - parent: 1 - type: Transform -- uid: 29219 - type: Catwalk - components: - - pos: 67.5,31.5 - parent: 1 - type: Transform -- uid: 29220 - type: Catwalk - components: - - pos: 68.5,31.5 - parent: 1 - type: Transform -- uid: 29221 - type: WoodDoor - components: - - pos: 61.5,23.5 - parent: 1 - type: Transform -- uid: 29222 - type: WoodDoor - components: - - pos: 63.5,23.5 - parent: 1 - type: Transform -- uid: 29223 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 1.5,21.5 - parent: 1 - type: Transform -- uid: 29224 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 1.5,20.5 - parent: 1 - type: Transform -- uid: 29225 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 1.5,19.5 - parent: 1 - type: Transform -- uid: 29226 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 2.5,21.5 - parent: 1 - type: Transform -- uid: 29227 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 2.5,20.5 - parent: 1 - type: Transform -- uid: 29228 - type: Carpet - components: - - rot: 1.5707963267948966 rad - pos: 2.5,19.5 - parent: 1 - type: Transform -- uid: 29229 - type: AirSensor - components: - - rot: 1.5707963267948966 rad - pos: -0.5,18.5 - parent: 1 - type: Transform -- uid: 29230 - type: SignalSwitch - components: - - rot: 3.141592653589793 rad - pos: 0.5,-8.5 - parent: 1 - type: Transform - - state: True - type: SignalSwitch - - outputs: - On: - - port: Open - uid: 4031 - - port: Open - uid: 28706 - - port: Open - uid: 28707 - - port: Open - uid: 28857 - - port: Open - uid: 3737 - Off: - - port: Close - uid: 4031 - - port: Close - uid: 28706 - - port: Close - uid: 28707 - - port: Close - uid: 28857 - - port: Close - uid: 3737 - type: SignalTransmitter - - type: ItemCooldown -- uid: 29231 - type: SignalSwitch - components: - - rot: -1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1 - type: Transform - - outputs: - On: - - port: Open - uid: 2319 - - port: Open - uid: 29232 - - port: Open - uid: 5941 - Off: - - port: Close - uid: 2319 - - port: Close - uid: 29232 - - port: Close - uid: 5941 - type: SignalTransmitter -- uid: 29232 - type: ShuttersNormalOpen - components: - - pos: -7.5,4.5 - parent: 1 - type: Transform - - inputs: - Open: - - port: On - uid: 29231 - Close: - - port: Off - uid: 29231 - Toggle: [] - type: SignalReceiver -- uid: 29233 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: -33.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29234 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-13.5 - parent: 1 - type: Transform - - devices: - - 21117 - - 21115 - - 21116 - - 3022 - - 3085 - - 16024 - - 12331 - - 16025 - - 27658 - - 21552 - - 12274 - - 27656 - - 27657 - type: DeviceList -- uid: 29235 - type: Table - components: - - rot: 3.141592653589793 rad - pos: -25.5,-6.5 - parent: 1 - type: Transform -- uid: 29236 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 21.5,-26.5 - parent: 1 - type: Transform - - devices: - - 21583 - - 1669 - - 1362 - - 913 - - 1668 - - 6410 - - 5532 - - 6773 - type: DeviceList -- uid: 29237 - type: CableApcExtension - components: - - pos: 43.5,9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29238 - type: CableApcExtension - components: - - pos: 43.5,8.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29239 - type: CableApcExtension - components: - - pos: 43.5,7.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29240 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 27.5,-90.5 - parent: 1 - type: Transform -- uid: 29241 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 13.5,-89.5 - parent: 1 - type: Transform -- uid: 29242 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-85.5 - parent: 1 - type: Transform -- uid: 29243 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -52.5,-89.5 - parent: 1 - type: Transform -- uid: 29244 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -49.5,-87.5 - parent: 1 - type: Transform -- uid: 29245 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-87.5 - parent: 1 - type: Transform -- uid: 29246 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,-16.5 - parent: 1 - type: Transform -- uid: 29247 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,-15.5 - parent: 1 - type: Transform -- uid: 29248 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -5.5,-14.5 - parent: 1 - type: Transform -- uid: 29249 - type: DisposalBend - components: - - pos: -5.5,-13.5 - parent: 1 - type: Transform -- uid: 29250 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 1 - type: Transform -- uid: 29251 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 1 - type: Transform -- uid: 29252 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-13.5 - parent: 1 - type: Transform -- uid: 29253 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 1 - type: Transform -- uid: 29254 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -10.5,-13.5 - parent: 1 - type: Transform -- uid: 29255 - type: DisposalTrunk - components: - - pos: -10.5,-12.5 - parent: 1 - type: Transform -- uid: 29256 - type: Catwalk - components: - - pos: -7.5,-9.5 - parent: 1 - type: Transform -- uid: 29257 - type: Catwalk - components: - - pos: -8.5,-9.5 - parent: 1 - type: Transform -- uid: 29258 - type: Catwalk - components: - - pos: -9.5,-9.5 - parent: 1 - type: Transform -- uid: 29259 - type: Catwalk - components: - - pos: -10.5,-9.5 - parent: 1 - type: Transform -- uid: 29260 - type: Catwalk - components: - - pos: -11.5,-9.5 - parent: 1 - type: Transform -- uid: 29261 - type: Catwalk - components: - - pos: -12.5,-9.5 - parent: 1 - type: Transform -- uid: 29262 - type: Catwalk - components: - - pos: -13.5,-9.5 - parent: 1 - type: Transform -- uid: 29263 - type: Poweredlight - components: - - pos: -51.5,23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29264 - type: CableApcExtension - components: - - pos: -11.5,-18.5 - parent: 1 - type: Transform -- uid: 29265 - type: CableApcExtension - components: - - pos: -11.5,-17.5 - parent: 1 - type: Transform -- uid: 29266 - type: CableApcExtension - components: - - pos: -11.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29267 - type: CableApcExtension - components: - - pos: -11.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29268 - type: CableApcExtension - components: - - pos: -11.5,-14.5 - parent: 1 - type: Transform -- uid: 29269 - type: CableApcExtension - components: - - pos: -11.5,-13.5 - parent: 1 - type: Transform -- uid: 29270 - type: CableApcExtension - components: - - pos: -11.5,-12.5 - parent: 1 - type: Transform -- uid: 29271 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -11.5,-12.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 27282 - - port: Left - uid: 27282 - Forward: [] - Off: - - port: Middle - uid: 27282 - type: SignalReceiver -- uid: 29272 - type: CableApcExtension - components: - - pos: -11.5,-11.5 - parent: 1 - type: Transform -- uid: 29273 - type: CableApcExtension - components: - - pos: -11.5,-10.5 - parent: 1 - type: Transform -- uid: 29274 - type: CableApcExtension - components: - - pos: -12.5,-10.5 - parent: 1 - type: Transform -- uid: 29275 - type: CableApcExtension - components: - - pos: -13.5,-10.5 - parent: 1 - type: Transform -- uid: 29276 - type: CableApcExtension - components: - - pos: -14.5,-10.5 - parent: 1 - type: Transform -- uid: 29277 - type: CableApcExtension - components: - - pos: -13.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29278 - type: CableApcExtension - components: - - pos: -14.5,-14.5 - parent: 1 - type: Transform -- uid: 29279 - type: CableApcExtension - components: - - pos: -15.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29280 - type: CableApcExtension - components: - - pos: -16.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29281 - type: CableApcExtension - components: - - pos: -10.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29282 - type: CableApcExtension - components: - - pos: -9.5,-14.5 - parent: 1 - type: Transform -- uid: 29283 - type: CableApcExtension - components: - - pos: -8.5,-14.5 - parent: 1 - type: Transform -- uid: 29284 - type: CableApcExtension - components: - - pos: -8.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29285 - type: CableApcExtension - components: - - pos: -7.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29286 - type: CableApcExtension - components: - - pos: -7.5,-12.5 - parent: 1 - type: Transform -- uid: 29287 - type: CableApcExtension - components: - - pos: -7.5,-11.5 - parent: 1 - type: Transform -- uid: 29288 - type: CableApcExtension - components: - - pos: -7.5,-10.5 - parent: 1 - type: Transform -- uid: 29289 - type: CableApcExtension - components: - - pos: -8.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29290 - type: CableApcExtension - components: - - pos: -7.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29291 - type: CableApcExtension - components: - - pos: -9.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29292 - type: CableApcExtension - components: - - pos: -10.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29293 - type: CableApcExtension - components: - - pos: -11.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29294 - type: CableApcExtension - components: - - pos: -12.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29295 - type: CableApcExtension - components: - - pos: -13.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29296 - type: CableApcExtension - components: - - pos: -14.5,-9.5 - parent: 1 - type: Transform -- uid: 29297 - type: CableApcExtension - components: - - pos: -15.5,-9.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29298 - type: GasPipeStraight - components: - - pos: -5.5,-9.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29299 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29300 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29301 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29302 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29303 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29304 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29305 - type: GasVentPump - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29306 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29307 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29308 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-21.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29309 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-20.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29310 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -11.5,-19.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29311 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-19.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29312 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -10.5,-20.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29313 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -10.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29314 - type: GasPipeBend - components: - - pos: -8.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29315 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-21.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29316 - type: GasVentScrubber - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29317 - type: GasVentScrubber - components: - - pos: -10.5,-18.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29318 - type: GasVentPump - components: - - pos: -11.5,-18.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29319 - type: AirSensor - components: - - pos: -11.5,-19.5 - parent: 1 - type: Transform -- uid: 29320 - type: AirSensor - components: - - pos: -9.5,-14.5 - parent: 1 - type: Transform -- uid: 29321 - type: DisposalTrunk - components: - - pos: -12.5,-12.5 - parent: 1 - type: Transform -- uid: 29322 - type: DisposalPipe - components: - - pos: -12.5,-13.5 - parent: 1 - type: Transform -- uid: 29323 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-14.5 - parent: 1 - type: Transform -- uid: 29324 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 1 - type: Transform -- uid: 29325 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-14.5 - parent: 1 - type: Transform -- uid: 29326 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -16.5,-14.5 - parent: 1 - type: Transform -- uid: 29327 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -17.5,-14.5 - parent: 1 - type: Transform -- uid: 29328 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -18.5,-14.5 - parent: 1 - type: Transform -- uid: 29329 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -12.5,-14.5 - parent: 1 - type: Transform -- uid: 29330 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -18.5,-13.5 - parent: 1 - type: Transform -- uid: 29331 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -18.5,-12.5 - parent: 1 - type: Transform -- uid: 29332 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -18.5,-11.5 - parent: 1 - type: Transform -- uid: 29333 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -18.5,-10.5 - parent: 1 - type: Transform -- uid: 29334 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -18.5,-9.5 - parent: 1 - type: Transform -- uid: 29335 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -18.5,-8.5 - parent: 1 - type: Transform -- uid: 29336 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -18.5,-7.5 - parent: 1 - type: Transform -- uid: 29337 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -18.5,-6.5 - parent: 1 - type: Transform -- uid: 29338 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -18.5,-5.5 - parent: 1 - type: Transform -- uid: 29339 - type: DisposalBend - components: - - pos: -18.5,-4.5 - parent: 1 - type: Transform -- uid: 29340 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -19.5,-4.5 - parent: 1 - type: Transform -- uid: 29341 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-4.5 - parent: 1 - type: Transform -- uid: 29342 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,-4.5 - parent: 1 - type: Transform -- uid: 29343 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-4.5 - parent: 1 - type: Transform -- uid: 29344 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,-4.5 - parent: 1 - type: Transform -- uid: 29345 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 1 - type: Transform -- uid: 29346 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,-3.5 - parent: 1 - type: Transform -- uid: 29347 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,-2.5 - parent: 1 - type: Transform -- uid: 29348 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,-1.5 - parent: 1 - type: Transform -- uid: 29349 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,-0.5 - parent: 1 - type: Transform -- uid: 29350 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,0.5 - parent: 1 - type: Transform -- uid: 29351 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,1.5 - parent: 1 - type: Transform -- uid: 29352 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,2.5 - parent: 1 - type: Transform -- uid: 29353 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,3.5 - parent: 1 - type: Transform -- uid: 29354 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,4.5 - parent: 1 - type: Transform -- uid: 29355 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,5.5 - parent: 1 - type: Transform -- uid: 29356 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,6.5 - parent: 1 - type: Transform -- uid: 29357 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -24.5,7.5 - parent: 1 - type: Transform -- uid: 29358 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -24.5,8.5 - parent: 1 - type: Transform -- uid: 29359 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,8.5 - parent: 1 - type: Transform -- uid: 29360 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,8.5 - parent: 1 - type: Transform -- uid: 29361 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,8.5 - parent: 1 - type: Transform -- uid: 29362 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -20.5,8.5 - parent: 1 - type: Transform -- uid: 29363 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,9.5 - parent: 1 - type: Transform -- uid: 29364 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,10.5 - parent: 1 - type: Transform -- uid: 29365 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,11.5 - parent: 1 - type: Transform -- uid: 29366 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,12.5 - parent: 1 - type: Transform -- uid: 29367 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,13.5 - parent: 1 - type: Transform -- uid: 29368 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,14.5 - parent: 1 - type: Transform -- uid: 29369 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,15.5 - parent: 1 - type: Transform -- uid: 29370 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,16.5 - parent: 1 - type: Transform -- uid: 29371 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,17.5 - parent: 1 - type: Transform -- uid: 29372 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,18.5 - parent: 1 - type: Transform -- uid: 29373 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -20.5,19.5 - parent: 1 - type: Transform -- uid: 29374 - type: DisposalBend - components: - - pos: -20.5,20.5 - parent: 1 - type: Transform -- uid: 29375 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -21.5,20.5 - parent: 1 - type: Transform -- uid: 29376 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -22.5,20.5 - parent: 1 - type: Transform -- uid: 29377 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -23.5,20.5 - parent: 1 - type: Transform -- uid: 29378 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -24.5,20.5 - parent: 1 - type: Transform -- uid: 29379 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -25.5,20.5 - parent: 1 - type: Transform -- uid: 29380 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: -25.5,19.5 - parent: 1 - type: Transform -- uid: 29381 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -26.5,19.5 - parent: 1 - type: Transform -- uid: 29382 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -27.5,19.5 - parent: 1 - type: Transform -- uid: 29383 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -28.5,19.5 - parent: 1 - type: Transform -- uid: 29384 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -29.5,19.5 - parent: 1 - type: Transform -- uid: 29385 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -30.5,19.5 - parent: 1 - type: Transform -- uid: 29386 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -31.5,19.5 - parent: 1 - type: Transform -- uid: 29387 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -32.5,19.5 - parent: 1 - type: Transform -- uid: 29388 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -35.5,18.5 - parent: 1 - type: Transform -- uid: 29389 - type: WallSolid - components: - - rot: -1.5707963267948966 rad - pos: -35.5,19.5 - parent: 1 - type: Transform -- uid: 29390 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -33.5,19.5 - parent: 1 - type: Transform -- uid: 29391 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -36.5,18.5 - parent: 1 - type: Transform -- uid: 29392 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -34.5,19.5 - parent: 1 - type: Transform -- uid: 29393 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -36.5,19.5 - parent: 1 - type: Transform -- uid: 29394 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -39.5,19.5 - parent: 1 - type: Transform -- uid: 29395 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -40.5,19.5 - parent: 1 - type: Transform -- uid: 29396 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -37.5,19.5 - parent: 1 - type: Transform -- uid: 29397 - type: ChurchOrganInstrument - components: - - rot: -1.5707963267948966 rad - pos: -34.5,13.5 - parent: 1 - type: Transform -- uid: 29398 - type: AppraisalTool - components: - - pos: -38.01735,18.465227 - parent: 1 - type: Transform -- uid: 29399 - type: Wrench - components: - - rot: 1.5707963267948966 rad - pos: -37.345474,18.574602 - parent: 1 - type: Transform -- uid: 29400 - type: CableApcExtension - components: - - pos: -42.5,17.5 - parent: 1 - type: Transform -- uid: 29401 - type: DisposalTrunk - components: - - rot: 3.141592653589793 rad - pos: -42.5,13.5 - parent: 1 - type: Transform -- uid: 29402 - type: ConveyorBelt - components: - - rot: 3.141592653589793 rad - pos: -42.5,16.5 - parent: 1 - type: Transform - - inputs: - Reverse: - - port: Right - uid: 18243 - Forward: - - port: Left - uid: 18243 - Off: - - port: Middle - uid: 18243 - type: SignalReceiver -- uid: 29403 - type: PlasticFlapsClear - components: - - rot: 1.5707963267948966 rad - pos: -42.5,16.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 29404 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -44.5,15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29405 - type: SurveillanceCameraSupply - components: - - rot: 3.141592653589793 rad - pos: -44.5,16.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: swap shop - type: SurveillanceCamera -- uid: 29406 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -46.5,9.5 - parent: 1 - type: Transform -- uid: 29407 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -46.5,8.5 - parent: 1 - type: Transform -- uid: 29408 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -46.5,7.5 - parent: 1 - type: Transform -- uid: 29409 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -46.5,6.5 - parent: 1 - type: Transform -- uid: 29410 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -46.5,5.5 - parent: 1 - type: Transform -- uid: 29411 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -46.5,4.5 - parent: 1 - type: Transform -- uid: 29412 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -46.5,3.5 - parent: 1 - type: Transform -- uid: 29413 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -46.5,2.5 - parent: 1 - type: Transform -- uid: 29414 - type: DisposalPipe - components: - - rot: 3.141592653589793 rad - pos: -46.5,1.5 - parent: 1 - type: Transform -- uid: 29415 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: -46.5,11.5 - parent: 1 - type: Transform -- uid: 29416 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -46.5,0.5 - parent: 1 - type: Transform -- uid: 29417 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -45.5,0.5 - parent: 1 - type: Transform -- uid: 29418 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -44.5,0.5 - parent: 1 - type: Transform -- uid: 29419 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -43.5,0.5 - parent: 1 - type: Transform -- uid: 29420 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -42.5,0.5 - parent: 1 - type: Transform -- uid: 29421 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -41.5,0.5 - parent: 1 - type: Transform -- uid: 29422 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -40.5,0.5 - parent: 1 - type: Transform -- uid: 29423 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -39.5,0.5 - parent: 1 - type: Transform -- uid: 29424 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -38.5,0.5 - parent: 1 - type: Transform -- uid: 29425 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -37.5,0.5 - parent: 1 - type: Transform -- uid: 29426 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -36.5,0.5 - parent: 1 - type: Transform -- uid: 29427 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -35.5,0.5 - parent: 1 - type: Transform -- uid: 29428 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -34.5,0.5 - parent: 1 - type: Transform -- uid: 29429 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -33.5,0.5 - parent: 1 - type: Transform -- uid: 29430 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -32.5,0.5 - parent: 1 - type: Transform -- uid: 29431 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -31.5,0.5 - parent: 1 - type: Transform -- uid: 29432 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -30.5,0.5 - parent: 1 - type: Transform -- uid: 29433 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -29.5,0.5 - parent: 1 - type: Transform -- uid: 29434 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -28.5,0.5 - parent: 1 - type: Transform -- uid: 29435 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -27.5,0.5 - parent: 1 - type: Transform -- uid: 29436 - type: DisposalBend - components: - - pos: -26.5,0.5 - parent: 1 - type: Transform -- uid: 29437 - type: DisposalPipe - components: - - pos: -26.5,-0.5 - parent: 1 - type: Transform -- uid: 29438 - type: DisposalPipe - components: - - pos: -26.5,-1.5 - parent: 1 - type: Transform -- uid: 29439 - type: DisposalPipe - components: - - pos: -26.5,-2.5 - parent: 1 - type: Transform -- uid: 29440 - type: DisposalPipe - components: - - pos: -26.5,-3.5 - parent: 1 - type: Transform -- uid: 29441 - type: DisposalPipe - components: - - pos: -26.5,-4.5 - parent: 1 - type: Transform -- uid: 29442 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -26.5,-5.5 - parent: 1 - type: Transform -- uid: 29443 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-5.5 - parent: 1 - type: Transform -- uid: 29444 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-5.5 - parent: 1 - type: Transform -- uid: 29445 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-5.5 - parent: 1 - type: Transform -- uid: 29446 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -22.5,-5.5 - parent: 1 - type: Transform -- uid: 29447 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-5.5 - parent: 1 - type: Transform -- uid: 29448 - type: DisposalBend - components: - - pos: -20.5,-5.5 - parent: 1 - type: Transform -- uid: 29449 - type: DisposalPipe - components: - - pos: -20.5,-6.5 - parent: 1 - type: Transform -- uid: 29450 - type: DisposalPipe - components: - - pos: -20.5,-7.5 - parent: 1 - type: Transform -- uid: 29451 - type: DisposalPipe - components: - - pos: -20.5,-8.5 - parent: 1 - type: Transform -- uid: 29452 - type: DisposalPipe - components: - - pos: -20.5,-9.5 - parent: 1 - type: Transform -- uid: 29453 - type: DisposalPipe - components: - - pos: -20.5,-10.5 - parent: 1 - type: Transform -- uid: 29454 - type: DisposalPipe - components: - - pos: -20.5,-11.5 - parent: 1 - type: Transform -- uid: 29455 - type: DisposalPipe - components: - - pos: -20.5,-12.5 - parent: 1 - type: Transform -- uid: 29456 - type: DisposalPipe - components: - - pos: -20.5,-13.5 - parent: 1 - type: Transform -- uid: 29457 - type: DisposalPipe - components: - - pos: -20.5,-14.5 - parent: 1 - type: Transform -- uid: 29458 - type: DisposalPipe - components: - - pos: -20.5,-15.5 - parent: 1 - type: Transform -- uid: 29459 - type: DisposalPipe - components: - - pos: -20.5,-16.5 - parent: 1 - type: Transform -- uid: 29460 - type: DisposalPipe - components: - - pos: -20.5,-17.5 - parent: 1 - type: Transform -- uid: 29461 - type: DisposalPipe - components: - - pos: -20.5,-18.5 - parent: 1 - type: Transform -- uid: 29462 - type: DisposalPipe - components: - - pos: -20.5,-19.5 - parent: 1 - type: Transform -- uid: 29463 - type: DisposalPipe - components: - - pos: -20.5,-20.5 - parent: 1 - type: Transform -- uid: 29464 - type: DisposalPipe - components: - - pos: -20.5,-21.5 - parent: 1 - type: Transform -- uid: 29465 - type: DisposalPipe - components: - - pos: -20.5,-22.5 - parent: 1 - type: Transform -- uid: 29466 - type: DisposalPipe - components: - - pos: -20.5,-23.5 - parent: 1 - type: Transform -- uid: 29467 - type: DisposalPipe - components: - - pos: -20.5,-24.5 - parent: 1 - type: Transform -- uid: 29468 - type: DisposalBend - components: - - rot: 3.141592653589793 rad - pos: -20.5,-25.5 - parent: 1 - type: Transform -- uid: 29469 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-25.5 - parent: 1 - type: Transform -- uid: 29470 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -18.5,-25.5 - parent: 1 - type: Transform -- uid: 29471 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -17.5,-25.5 - parent: 1 - type: Transform -- uid: 29472 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-25.5 - parent: 1 - type: Transform -- uid: 29473 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -15.5,-25.5 - parent: 1 - type: Transform -- uid: 29474 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 1 - type: Transform -- uid: 29475 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 1 - type: Transform -- uid: 29476 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -12.5,-25.5 - parent: 1 - type: Transform -- uid: 29477 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -11.5,-25.5 - parent: 1 - type: Transform -- uid: 29478 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -10.5,-25.5 - parent: 1 - type: Transform -- uid: 29479 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-25.5 - parent: 1 - type: Transform -- uid: 29480 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-25.5 - parent: 1 - type: Transform -- uid: 29481 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-25.5 - parent: 1 - type: Transform -- uid: 29482 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-25.5 - parent: 1 - type: Transform -- uid: 29483 - type: AirlockMaint - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-44.5 - parent: 1 - type: Transform -- uid: 29484 - type: Crowbar - components: - - pos: -9.421157,-15.518739 - parent: 1 - type: Transform -- uid: 29485 - type: ClosetMaintenanceFilledRandom - components: - - pos: -9.5,-8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29486 - type: ClosetEmergencyFilledRandom - components: - - pos: -10.5,-8.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29487 - type: Firelock - components: - - pos: -6.5,-13.5 - parent: 1 - type: Transform -- uid: 29488 - type: Firelock - components: - - pos: -6.5,-9.5 - parent: 1 - type: Transform -- uid: 29489 - type: Firelock - components: - - pos: -13.5,-7.5 - parent: 1 - type: Transform -- uid: 29490 - type: Firelock - components: - - pos: -14.5,-14.5 - parent: 1 - type: Transform -- uid: 29491 - type: Firelock - components: - - pos: -15.5,-17.5 - parent: 1 - type: Transform -- uid: 29492 - type: WallSolid - components: - - pos: -16.5,-11.5 - parent: 1 - type: Transform -- uid: 29493 - type: DisposalTrunk - components: - - rot: -1.5707963267948966 rad - pos: -40.5,18.5 - parent: 1 - type: Transform -- uid: 29494 - type: DisposalPipe - components: - - rot: -1.5707963267948966 rad - pos: -41.5,18.5 - parent: 1 - type: Transform -- uid: 29495 - type: ClothingMaskGas - components: - - pos: -8.705846,-15.426237 - parent: 1 - type: Transform -- uid: 29496 - type: Wrench - components: - - pos: -8.112096,-15.394987 - parent: 1 - type: Transform -- uid: 29497 - type: BoxMousetrap - components: - - pos: -7.3951936,-15.377466 - parent: 1 - type: Transform -- uid: 29498 - type: WallSolid - components: - - pos: -13.5,-16.5 - parent: 1 - type: Transform -- uid: 29499 - type: VendingMachineJaniDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -10.5,-19.5 - parent: 1 - type: Transform -- uid: 29500 - type: Table - components: - - pos: -12.5,-18.5 - parent: 1 - type: Transform -- uid: 29501 - type: FaxMachineBase - components: - - pos: -12.5,-19.5 - parent: 1 - type: Transform - - name: janitorial fax - type: FaxMachine -- uid: 29502 - type: Lamp - components: - - pos: -12.458234,-18.122696 - parent: 1 - type: Transform -- uid: 29503 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29504 - type: Rack - components: - - pos: -8.5,-17.5 - parent: 1 - type: Transform -- uid: 29505 - type: LockerElectricalSupplies - components: - - pos: -7.5,-17.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29506 - type: CableApcExtension - components: - - pos: -5.5,-19.5 - parent: 1 - type: Transform -- uid: 29507 - type: CableApcExtension - components: - - pos: -6.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29508 - type: CableApcExtension - components: - - pos: -7.5,-19.5 - parent: 1 - type: Transform -- uid: 29509 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29510 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29511 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -13.5,-13.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29512 - type: PoweredSmallLight - components: - - pos: -8.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29513 - type: PoweredSmallLight - components: - - pos: -12.5,-8.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29514 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: -16.5,-9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29515 - type: PoweredSmallLight - components: - - pos: -15.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29516 - type: Catwalk - components: - - pos: -15.5,-14.5 - parent: 1 - type: Transform -- uid: 29517 - type: Catwalk - components: - - pos: -16.5,-14.5 - parent: 1 - type: Transform -- uid: 29518 - type: RandomPosterLegit - components: - - pos: -44.5,12.5 - parent: 1 - type: Transform -- uid: 29519 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29520 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-7.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29521 - type: WoodDoor - components: - - rot: 3.141592653589793 rad - pos: -29.5,-7.5 - parent: 1 - type: Transform -- uid: 29522 - type: ToiletDirtyWater - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-5.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 29523 - type: ToiletDirtyWater - components: - - rot: -1.5707963267948966 rad - pos: -28.5,-7.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 29524 - type: Table - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-6.5 - parent: 1 - type: Transform -- uid: 29525 - type: WallSolid - components: - - pos: -8.5,-7.5 - parent: 1 - type: Transform -- uid: 29526 - type: PlasticFlapsClear - components: - - rot: -1.5707963267948966 rad - pos: -11.5,-11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 29527 - type: SurveillanceCameraGeneral - components: - - rot: 3.141592653589793 rad - pos: -12.5,-8.5 - parent: 1 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: waste sorting - type: SurveillanceCamera -- uid: 29528 - type: CableApcExtension - components: - - pos: 18.5,-82.5 - parent: 1 - type: Transform -- uid: 29529 - type: CableApcExtension - components: - - pos: 18.5,-84.5 - parent: 1 - type: Transform -- uid: 29530 - type: CableApcExtension - components: - - pos: 18.5,-85.5 - parent: 1 - type: Transform -- uid: 29531 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 38.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29532 - type: GasPipeTJunction - components: - - rot: 3.141592653589793 rad - pos: 40.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29533 - type: Multitool - components: - - pos: -28.40416,-19.522995 - parent: 1 - type: Transform -- uid: 29534 - type: AirAlarm - components: - - pos: -21.5,-16.5 - parent: 1 - type: Transform - - devices: - - 21552 - - 12447 - - 12448 - - 3085 - - 3022 - - 21117 - - 21115 - - 21116 - - 12274 - - 16024 - - 12331 - - 16025 - - 27656 - - 27657 - - 27658 - type: DeviceList -- uid: 29535 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-15.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29536 - type: Rack - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-20.5 - parent: 1 - type: Transform -- uid: 29537 - type: TableWood - components: - - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 1 - type: Transform -- uid: 29538 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29539 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,10.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29540 - type: Rack - components: - - pos: -48.5,16.5 - parent: 1 - type: Transform -- uid: 29541 - type: MaintenanceWeaponSpawner - components: - - pos: -48.5,16.5 - parent: 1 - type: Transform -- uid: 29542 - type: Catwalk - components: - - pos: -46.5,52.5 - parent: 1 - type: Transform -- uid: 29543 - type: Catwalk - components: - - pos: -46.5,51.5 - parent: 1 - type: Transform -- uid: 29544 - type: CableApcExtension - components: - - pos: 12.5,-83.5 - parent: 1 - type: Transform -- uid: 29545 - type: Catwalk - components: - - pos: -46.5,50.5 - parent: 1 - type: Transform -- uid: 29546 - type: Catwalk - components: - - pos: -46.5,49.5 - parent: 1 - type: Transform -- uid: 29547 - type: Grille - components: - - pos: -31.5,72.5 - parent: 1 - type: Transform -- uid: 29548 - type: Grille - components: - - pos: -30.5,72.5 - parent: 1 - type: Transform -- uid: 29549 - type: Grille - components: - - pos: -29.5,72.5 - parent: 1 - type: Transform -- uid: 29550 - type: Grille - components: - - pos: -28.5,72.5 - parent: 1 - type: Transform -- uid: 29551 - type: Grille - components: - - pos: -27.5,72.5 - parent: 1 - type: Transform -- uid: 29552 - type: Grille - components: - - pos: -26.5,72.5 - parent: 1 - type: Transform -- uid: 29553 - type: Catwalk - components: - - pos: -46.5,-56.5 - parent: 1 - type: Transform -- uid: 29554 - type: Catwalk - components: - - pos: -46.5,-57.5 - parent: 1 - type: Transform -- uid: 29555 - type: Catwalk - components: - - pos: -46.5,-58.5 - parent: 1 - type: Transform -- uid: 29556 - type: Catwalk - components: - - pos: -47.5,-58.5 - parent: 1 - type: Transform -- uid: 29557 - type: Catwalk - components: - - pos: -48.5,-58.5 - parent: 1 - type: Transform -- uid: 29558 - type: Catwalk - components: - - pos: -49.5,-58.5 - parent: 1 - type: Transform -- uid: 29559 - type: Grille - components: - - pos: -40.5,-62.5 - parent: 1 - type: Transform -- uid: 29560 - type: Grille - components: - - pos: -41.5,-62.5 - parent: 1 - type: Transform -- uid: 29561 - type: Catwalk - components: - - pos: -29.5,-19.5 - parent: 1 - type: Transform -- uid: 29562 - type: Catwalk - components: - - pos: -29.5,-20.5 - parent: 1 - type: Transform -- uid: 29563 - type: Catwalk - components: - - pos: -29.5,-21.5 - parent: 1 - type: Transform -- uid: 29564 - type: GasCanisterBrokenBase - components: - - pos: -28.5,-21.5 - parent: 1 - type: Transform -- uid: 29565 - type: Paper - components: - - pos: -11.489469,-13.479897 - parent: 1 - type: Transform - - content: > - To the head of waste management. please place any useful waste in the cargo disposal (brown boarder), this will send it straight to cargo. Anything that is considered trash send it into the waste disposal (yellow boarder). - - Anything suspicious, please inform security. - type: Paper -- uid: 29566 - type: Paper - components: - - pos: -42.540462,17.447073 - parent: 1 - type: Transform - - content: > - Janitorial will sort out the waste and send anything useful to this conveyor. - type: Paper -- uid: 29567 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 72.5,-39.5 - parent: 1 - type: Transform - - devices: - - 27564 - - 27581 - - 27580 - - 27574 - - 27573 - type: DeviceList -- uid: 29568 - type: PoweredSmallLight - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-68.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29569 - type: DisposalPipe - components: - - pos: 5.5,-49.5 - parent: 1 - type: Transform -- uid: 29570 - type: DisposalUnit - components: - - pos: 5.5,-50.5 - parent: 1 - type: Transform -- uid: 29571 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-47.5 - parent: 1 - type: Transform -- uid: 29572 - type: ChemistryHotplate - components: - - pos: 6.5,-47.5 - parent: 1 - type: Transform -- uid: 29573 - type: CableApcExtension - components: - - pos: -8.5,-67.5 - parent: 1 - type: Transform -- uid: 29574 - type: CableApcExtension - components: - - pos: -8.5,-68.5 - parent: 1 - type: Transform -- uid: 29575 - type: CableApcExtension - components: - - pos: -8.5,-69.5 - parent: 1 - type: Transform -- uid: 29576 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29577 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-46.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29578 - type: OxygenTankFilled - components: - - pos: -22.609781,-57.353615 - parent: 1 - type: Transform -- uid: 29579 - type: Window - components: - - rot: 3.141592653589793 rad - pos: -28.5,-72.5 - parent: 1 - type: Transform -- uid: 29580 - type: TableWood - components: - - pos: -31.5,-74.5 - parent: 1 - type: Transform -- uid: 29581 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -25.5,-60.5 - parent: 1 - type: Transform - - color: '#97C3FCCC' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29582 - type: GasPipeBend - components: - - rot: -1.5707963267948966 rad - pos: -22.5,-62.5 - parent: 1 - type: Transform - - color: '#97C3FCCC' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29583 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: -23.5,-62.5 - parent: 1 - type: Transform - - color: '#97C3FCCC' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29584 - type: GasThermoMachineFreezer - components: - - pos: -22.5,-61.5 - parent: 1 - type: Transform - - color: '#97C3FCCC' - type: AtmosPipeColor -- uid: 29585 - type: WallSolid - components: - - rot: 1.5707963267948966 rad - pos: -27.5,-60.5 - parent: 1 - type: Transform -- uid: 29586 - type: Table - components: - - pos: -26.5,-61.5 - parent: 1 - type: Transform -- uid: 29587 - type: computerBodyScanner - components: - - rot: 1.5707963267948966 rad - pos: -26.5,-60.5 - parent: 1 - type: Transform -- uid: 29588 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -25.5,-60.5 - parent: 1 - type: Transform -- uid: 29589 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -24.5,-60.5 - parent: 1 - type: Transform -- uid: 29590 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-60.5 - parent: 1 - type: Transform -- uid: 29591 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-58.5 - parent: 1 - type: Transform -- uid: 29592 - type: GasPipeStraight - components: - - pos: -25.5,-58.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29593 - type: Table - components: - - pos: -22.5,-57.5 - parent: 1 - type: Transform -- uid: 29594 - type: Table - components: - - pos: -22.5,-58.5 - parent: 1 - type: Transform -- uid: 29595 - type: Table - components: - - pos: -26.5,-59.5 - parent: 1 - type: Transform -- uid: 29596 - type: Multitool - components: - - pos: -26.512882,-61.421627 - parent: 1 - type: Transform -- uid: 29597 - type: trayScanner - components: - - pos: -26.403507,-59.437252 - parent: 1 - type: Transform -- uid: 29598 - type: CableApcExtension - components: - - pos: -19.5,-60.5 - parent: 1 - type: Transform -- uid: 29599 - type: CableApcExtension - components: - - pos: -20.5,-60.5 - parent: 1 - type: Transform -- uid: 29600 - type: CableApcExtension - components: - - pos: -21.5,-60.5 - parent: 1 - type: Transform -- uid: 29601 - type: CableApcExtension - components: - - pos: -22.5,-60.5 - parent: 1 - type: Transform -- uid: 29602 - type: CableApcExtension - components: - - pos: -23.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29603 - type: CableApcExtension - components: - - pos: -24.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29604 - type: CableApcExtension - components: - - pos: -25.5,-60.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29605 - type: CableApcExtension - components: - - pos: -24.5,-59.5 - parent: 1 - type: Transform -- uid: 29606 - type: CableApcExtension - components: - - pos: -24.5,-58.5 - parent: 1 - type: Transform -- uid: 29607 - type: CableApcExtension - components: - - pos: -24.5,-57.5 - parent: 1 - type: Transform -- uid: 29608 - type: CableApcExtension - components: - - pos: -24.5,-61.5 - parent: 1 - type: Transform -- uid: 29609 - type: CableApcExtension - components: - - pos: -24.5,-62.5 - parent: 1 - type: Transform -- uid: 29610 - type: NitrogenCanister - components: - - pos: -22.5,-62.5 - parent: 1 - type: Transform -- uid: 29611 - type: OxygenCanister - components: - - pos: -25.5,-62.5 - parent: 1 - type: Transform -- uid: 29612 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,-72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29613 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -28.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29614 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29615 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: -30.5,-73.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29616 - type: GasPipeTJunction - components: - - pos: -30.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29617 - type: GasPipeTJunction - components: - - pos: -28.5,-69.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29618 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -30.5,-70.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29619 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: -28.5,-74.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29620 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: -30.5,-74.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29621 - type: RandomPosterContraband - components: - - pos: -29.5,-62.5 - parent: 1 - type: Transform -- uid: 29622 - type: AirSensor - components: - - pos: -29.5,-74.5 - parent: 1 - type: Transform -- uid: 29623 - type: SpawnMobMouse - components: - - pos: 48.5,-65.5 - parent: 1 - type: Transform -- uid: 29624 - type: Ointment - components: - - pos: -12.245195,-56.394966 - parent: 1 - type: Transform -- uid: 29625 - type: Ointment - components: - - pos: -9.307695,-56.332466 - parent: 1 - type: Transform -- uid: 29626 - type: Ointment - components: - - pos: -6.2759557,-56.37934 - parent: 1 - type: Transform -- uid: 29627 - type: Ointment - components: - - pos: -3.256374,-56.363716 - parent: 1 - type: Transform -- uid: 29628 - type: Ointment - components: - - pos: -0.2810341,-56.37934 - parent: 1 - type: Transform -- uid: 29629 - type: Catwalk - components: - - pos: 63.5,2.5 - parent: 1 - type: Transform -- uid: 29630 - type: Chair - components: - - pos: -5.5,-14.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 29631 - type: Intercom - components: - - rot: 1.5707963267948966 rad - pos: -21.5,29.5 - parent: 1 - type: Transform -- uid: 29632 - type: RandomSpawner - components: - - pos: 13.5,7.5 - parent: 1 - type: Transform -- uid: 29633 - type: PoweredSmallLight - components: - - pos: 13.5,-31.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29634 - type: SpawnMobAlexander - components: - - pos: 3.5,5.5 - parent: 1 - type: Transform -- uid: 29635 - type: TableWood - components: - - pos: 12.5,-6.5 - parent: 1 - type: Transform -- uid: 29636 - type: VendingMachineGeneDrobe - components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,-45.5 - parent: 1 - type: Transform -- uid: 29637 - type: BookRandom - components: - - pos: -33.495968,-67.45002 - parent: 1 - type: Transform -- uid: 29638 - type: Rack - components: - - pos: -13.5,-13.5 - parent: 1 - type: Transform -- uid: 29639 - type: Rack - components: - - pos: -13.5,-12.5 - parent: 1 - type: Transform -- uid: 29640 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: 37.5,-10.5 - parent: 1 - type: Transform -- uid: 29641 - type: SpawnVendingMachineRestockFoodDrink - components: - - pos: -13.5,-12.5 - parent: 1 - type: Transform -- uid: 29642 - type: BookEscalationSecurity - components: - - pos: 15.607252,21.663286 - parent: 1 - type: Transform -- uid: 29643 - type: BookEscalation - components: - - pos: 9.419705,-6.507422 - parent: 1 - type: Transform -- uid: 29644 - type: BookAtmosVentsMore - components: - - pos: -25.155376,-36.48232 - parent: 1 - type: Transform -- uid: 29645 - type: BookAtmosWaste - components: - - pos: -25.389751,-36.57607 - parent: 1 - type: Transform -- uid: 29646 - type: VendingMachineRestockSmokes - components: - - pos: -26.439571,39.52594 - parent: 1 - type: Transform -- uid: 29647 - type: AirlockScienceLocked - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-37.5 - parent: 1 - type: Transform -- uid: 29648 - type: Catwalk - components: - - pos: -2.5,14.5 - parent: 1 - type: Transform -- uid: 29649 - type: WallReinforced - components: - - pos: 64.5,-41.5 - parent: 1 - type: Transform -- uid: 29650 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 61.5,-39.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29651 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 62.5,-38.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29652 - type: PaperCaptainsThoughts - components: - - rot: 1.5707963267948966 rad - pos: 30.690884,-28.507551 - parent: 1 - type: Transform -- uid: 29653 - type: BananaPhoneInstrument - components: - - pos: -19.559175,37.640453 - parent: 1 - type: Transform -- uid: 29654 - type: ClothingNeckAromanticPin - components: - - pos: -16.507944,41.79273 - parent: 1 - type: Transform -- uid: 29655 - type: ClothingNeckAsexualPin - components: - - pos: -16.289194,41.51148 - parent: 1 - type: Transform -- uid: 29656 - type: ClothingNeckIntersexPin - components: - - pos: -12.691556,31.94308 - parent: 1 - type: Transform -- uid: 29657 - type: ClothingNeckNonBinaryPin - components: - - pos: -21.722902,35.752502 - parent: 1 - type: Transform -- uid: 29658 - type: ClothingNeckBisexualPin - components: - - pos: -42.7372,8.687558 - parent: 1 - type: Transform -- uid: 29659 - type: ClothingNeckLesbianPin - components: - - pos: -51.700592,8.465523 - parent: 1 - type: Transform -- uid: 29660 - type: ClothingNeckNonBinaryPin - components: - - pos: -47.78141,6.181047 - parent: 1 - type: Transform -- uid: 29661 - type: ClothingNeckPansexualPin - components: - - pos: -1.5377516,30.493696 - parent: 1 - type: Transform -- uid: 29662 - type: ClothingNeckTransPin - components: - - pos: 65.36391,-1.4805084 - parent: 1 - type: Transform -- uid: 29663 - type: ClothingNeckLGBTPin - components: - - pos: -10.776614,43.48699 - parent: 1 - type: Transform -- uid: 29664 - type: CableHV - components: - - pos: 16.5,-24.5 - parent: 1 - type: Transform -- uid: 29665 - type: CableHV - components: - - pos: 17.5,-24.5 - parent: 1 - type: Transform -- uid: 29666 - type: CableHV - components: - - pos: 18.5,-24.5 - parent: 1 - type: Transform -- uid: 29667 - type: CableHV - components: - - pos: 19.5,-24.5 - parent: 1 - type: Transform -- uid: 29668 - type: CableHV - components: - - pos: 20.5,-24.5 - parent: 1 - type: Transform -- uid: 29669 - type: CableHV - components: - - pos: 21.5,-24.5 - parent: 1 - type: Transform -- uid: 29670 - type: CableHV - components: - - pos: 21.5,-23.5 - parent: 1 - type: Transform -- uid: 29671 - type: CableHV - components: - - pos: 21.5,-22.5 - parent: 1 - type: Transform -- uid: 29672 - type: CableHV - components: - - pos: 21.5,-21.5 - parent: 1 - type: Transform -- uid: 29673 - type: CableApcExtension - components: - - pos: 30.5,-22.5 - parent: 1 - type: Transform -- uid: 29674 - type: CableApcExtension - components: - - pos: 31.5,-22.5 - parent: 1 - type: Transform -- uid: 29675 - type: CableApcExtension - components: - - pos: 31.5,-21.5 - parent: 1 - type: Transform -- uid: 29676 - type: CableApcExtension - components: - - pos: 19.5,-22.5 - parent: 1 - type: Transform -- uid: 29677 - type: CableApcExtension - components: - - pos: 19.5,-21.5 - parent: 1 - type: Transform -- uid: 29678 - type: CableHV - components: - - pos: -30.5,-13.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29679 - type: CableHV - components: - - pos: -29.5,-13.5 - parent: 1 - type: Transform -- uid: 29680 - type: CableHV - components: - - pos: -28.5,-13.5 - parent: 1 - type: Transform -- uid: 29681 - type: CableHV - components: - - pos: -27.5,-13.5 - parent: 1 - type: Transform -- uid: 29682 - type: VendingMachineCondiments - components: - - flags: SessionSpecific - type: MetaData - - pos: 8.5,10.5 - parent: 1 - type: Transform -- uid: 29683 - type: VendingMachineCondiments - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,3.5 - parent: 1 - type: Transform -- uid: 29684 - type: BlastDoorExterior2 - components: - - pos: -11.5,-11.5 - parent: 1 - type: Transform - - SecondsUntilStateChange: -21792.436 - state: Closing - type: Door - - enabled: False - type: Occluder - - canCollide: False - type: Physics - - airBlocked: False - type: Airtight - - inputs: - Open: - - port: On - uid: 8515 - Close: - - port: Off - uid: 8515 - Toggle: [] - type: SignalReceiver -- uid: 29685 - type: VendingMachineHappyHonk - components: - - flags: SessionSpecific - type: MetaData - - pos: 3.5,9.5 - parent: 1 - type: Transform -- uid: 29686 - type: VendingMachineChefvend - components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,9.5 - parent: 1 - type: Transform -- uid: 29687 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29688 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-21.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29689 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -0.5,9.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29690 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 6.5,5.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29691 - type: WallSolid - components: - - pos: -21.5,-51.5 - parent: 1 - type: Transform -- uid: 29692 - type: PoweredSmallLight - components: - - pos: -19.5,-51.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29693 - type: CrewMonitoringServer - components: - - pos: -18.5,-49.5 - parent: 1 - type: Transform -- uid: 29694 - type: Rack - components: - - pos: -20.5,-51.5 - parent: 1 - type: Transform -- uid: 29695 - type: ClothingHeadHatWeldingMaskFlameBlue - components: - - pos: -20.443554,-51.52769 - parent: 1 - type: Transform -- uid: 29696 - type: ComputerSurveillanceCameraMonitor - components: - - rot: 1.5707963267948966 rad - pos: -21.5,-49.5 - parent: 1 - type: Transform -- uid: 29697 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: -19.5,-49.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29698 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 9.5,-1.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29699 - type: SpawnPointResearchAssistant - components: - - pos: 50.5,-43.5 - parent: 1 - type: Transform -- uid: 29700 - type: PaperBin5 - components: - - pos: 39.827625,-39.412262 - parent: 1 - type: Transform -- uid: 29701 - type: SpawnPointChef - components: - - pos: 5.5,9.5 - parent: 1 - type: Transform -- uid: 29702 - type: SpawnPointMusician - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform -- uid: 29703 - type: SpawnPointSecurityOfficer - components: - - pos: 6.5,13.5 - parent: 1 - type: Transform -- uid: 29704 - type: SpawnPointMedicalDoctor - components: - - pos: -28.5,-74.5 - parent: 1 - type: Transform -- uid: 29705 - type: SpawnPointStationEngineer - components: - - pos: -35.5,-7.5 - parent: 1 - type: Transform -- uid: 29706 - type: SpawnPointScientist - components: - - pos: 74.5,-34.5 - parent: 1 - type: Transform -- uid: 29707 - type: SpawnPointAssistant - components: - - pos: -24.5,-20.5 - parent: 1 - type: Transform -- uid: 29708 - type: SpawnPointAssistant - components: - - pos: -44.5,3.5 - parent: 1 - type: Transform -- uid: 29709 - type: SpawnPointCargoTechnician - components: - - pos: -31.5,21.5 - parent: 1 - type: Transform -- uid: 29710 - type: SpawnPointBartender - components: - - pos: -42.5,-75.5 - parent: 1 - type: Transform -- uid: 29711 - type: SpawnPointLibrarian - components: - - pos: 9.5,-9.5 - parent: 1 - type: Transform -- uid: 29712 - type: SpawnPointSecurityCadet - components: - - pos: 25.5,18.5 - parent: 1 - type: Transform -- uid: 29713 - type: ClothingUniformJumpsuitDameDane - components: - - pos: -15.484091,-96.41976 - parent: 1 - type: Transform -- uid: 29714 - type: ClothingShoesDameDane - components: - - pos: -22.591383,-96.25594 - parent: 1 - type: Transform -- uid: 29715 - type: ClothingOuterDameDane - components: - - pos: -30.207304,-98.49032 - parent: 1 - type: Transform -- uid: 29716 - type: ClosetEmergencyFilledRandom - components: - - pos: 41.5,-27.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 8.402782 - - 31.610466 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29717 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29718 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29719 - type: SpawnPointAssistant - components: - - pos: 43.5,-72.5 - parent: 1 - type: Transform -- uid: 29720 - type: SpawnPointAssistant - components: - - pos: 36.5,-72.5 - parent: 1 - type: Transform -- uid: 29721 - type: ClothingOuterHardsuitEVA - components: - - pos: 29.61185,-11.389229 - parent: 1 - type: Transform -- uid: 29722 - type: ClothingOuterHardsuitEVA - components: - - pos: 29.61185,-13.467354 - parent: 1 - type: Transform -- uid: 29723 - type: ClothingHeadHelmetEVA - components: - - pos: 29.3306,-11.357979 - parent: 1 - type: Transform -- uid: 29724 - type: ClothingHeadHelmetEVA - components: - - pos: 29.314976,-13.373604 - parent: 1 - type: Transform -- uid: 29725 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-14.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29726 - type: PoweredSmallLight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-12.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29727 - type: JetpackBlueFilled - components: - - rot: 3.141592653589793 rad - pos: 33.468403,-14.391748 - parent: 1 - type: Transform -- uid: 29728 - type: JetpackBlueFilled - components: - - rot: 3.141592653589793 rad - pos: 33.499653,-14.469873 - parent: 1 - type: Transform -- uid: 29729 - type: JetpackBlueFilled - components: - - rot: 3.141592653589793 rad - pos: 33.640278,-14.579248 - parent: 1 - type: Transform -- uid: 29730 - type: MagazineMagnumSubMachineGunHighVelocity - components: - - rot: 3.141592653589793 rad - pos: 29.992437,32.514297 - parent: 1 - type: Transform -- uid: 29731 - type: MagazineMagnumSubMachineGunHighVelocity - components: - - rot: 3.141592653589793 rad - pos: 29.976812,32.483047 - parent: 1 - type: Transform -- uid: 29732 - type: LockerEngineerFilled - components: - - pos: -34.5,-5.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 8.359144 - - 31.446304 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29733 - type: NodeScanner - components: - - pos: 73.66279,-38.523205 - parent: 1 - type: Transform -- uid: 29734 - type: HappyHonk - components: - - pos: 0.93736494,-5.096624 - parent: 1 - type: Transform -- uid: 29735 - type: SpawnPointChaplain - components: - - pos: -30.5,14.5 - parent: 1 - type: Transform -- uid: 29736 - type: VendingMachineYouTool - components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,-9.5 - parent: 1 - type: Transform -- uid: 29737 - type: CableApcExtension - components: - - pos: -31.5,-10.5 - parent: 1 - type: Transform -- uid: 29738 - type: DisposalUnit - components: - - pos: -36.5,-80.5 - parent: 1 - type: Transform -- uid: 29739 - type: ReinforcedWindow - components: - - pos: 52.5,-57.5 - parent: 1 - type: Transform -- uid: 29740 - type: VendingMachineVendomat - components: - - flags: SessionSpecific - type: MetaData - - pos: 51.5,-38.5 - parent: 1 - type: Transform -- uid: 29741 - type: SinkWide - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-48.5 - parent: 1 - type: Transform -- uid: 29742 - type: IngotGold1 - components: - - pos: 59.385517,-51.41954 - parent: 1 - type: Transform -- uid: 29743 - type: IngotGold1 - components: - - pos: 59.432392,-51.591415 - parent: 1 - type: Transform -- uid: 29744 - type: ComfyChair - components: - - pos: -0.5,-73.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 29745 - type: MaintenanceWeaponSpawner - components: - - pos: -28.5,-5.5 - parent: 1 - type: Transform -- uid: 29746 - type: MaintenanceFluffSpawner - components: - - pos: -32.5,-7.5 - parent: 1 - type: Transform -- uid: 29747 - type: RandomArtifactSpawner20 - components: - - pos: -51.5,22.5 - parent: 1 - type: Transform -- uid: 29748 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: -50.5,-38.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29749 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: -46.5,-39.5 - parent: 1 - type: Transform -- uid: 29750 - type: AirlockAtmosphericsGlassLocked - components: - - pos: -47.5,-40.5 - parent: 1 - type: Transform -- uid: 29751 - type: WallReinforced - components: - - pos: -47.5,-37.5 - parent: 1 - type: Transform -- uid: 29752 - type: WallReinforced - components: - - pos: -47.5,-36.5 - parent: 1 - type: Transform -- uid: 29753 - type: ReinforcedWindow - components: - - pos: -51.5,-37.5 - parent: 1 - type: Transform -- uid: 29754 - type: ReinforcedWindow - components: - - pos: -51.5,-36.5 - parent: 1 - type: Transform -- uid: 29755 - type: ReinforcedWindow - components: - - pos: -47.5,-34.5 - parent: 1 - type: Transform -- uid: 29756 - type: ReinforcedWindow - components: - - pos: -47.5,-35.5 - parent: 1 - type: Transform -- uid: 29757 - type: WallReinforced - components: - - pos: -51.5,-34.5 - parent: 1 - type: Transform -- uid: 29758 - type: WallReinforced - components: - - pos: -51.5,-35.5 - parent: 1 - type: Transform -- uid: 29759 - type: WallReinforced - components: - - pos: -51.5,-38.5 - parent: 1 - type: Transform -- uid: 29760 - type: WallReinforced - components: - - pos: -51.5,-39.5 - parent: 1 - type: Transform -- uid: 29761 - type: WallReinforced - components: - - pos: -51.5,-40.5 - parent: 1 - type: Transform -- uid: 29762 - type: Grille - components: - - pos: -47.5,-34.5 - parent: 1 - type: Transform -- uid: 29763 - type: Grille - components: - - pos: -47.5,-35.5 - parent: 1 - type: Transform -- uid: 29764 - type: Grille - components: - - pos: -51.5,-36.5 - parent: 1 - type: Transform -- uid: 29765 - type: Grille - components: - - pos: -51.5,-37.5 - parent: 1 - type: Transform -- uid: 29766 - type: GasPassiveVent - components: - - rot: -1.5707963267948966 rad - pos: -44.5,-35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 29767 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -45.5,-35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29768 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -46.5,-35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29769 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: -47.5,-35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29770 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: -48.5,-35.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29771 - type: GasValve - components: - - pos: -48.5,-36.5 - parent: 1 - type: Transform - - open: False - type: GasValve - - bodyType: Static - type: Physics -- uid: 29772 - type: GasPressurePump - components: - - pos: -48.5,-37.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 29773 - type: GasPort - components: - - rot: 3.141592653589793 rad - pos: -48.5,-38.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 29774 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: -75.5,-12.5 - parent: 1 - type: Transform -- uid: 29775 - type: CableApcExtension - components: - - pos: -49.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29776 - type: CableApcExtension - components: - - pos: -47.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29777 - type: CableApcExtension - components: - - pos: -48.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29778 - type: CableApcExtension - components: - - pos: -47.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29779 - type: CableApcExtension - components: - - pos: -47.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29780 - type: CableApcExtension - components: - - pos: -47.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29781 - type: CableApcExtension - components: - - pos: -47.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29782 - type: CableApcExtension - components: - - pos: -47.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29783 - type: Poweredlight - components: - - pos: -49.5,-34.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29784 - type: CableApcExtension - components: - - pos: -50.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29785 - type: CableApcExtension - components: - - pos: -51.5,-33.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29786 - type: CableApcExtension - components: - - pos: -51.5,-34.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29787 - type: CableApcExtension - components: - - pos: -51.5,-35.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29788 - type: CableApcExtension - components: - - pos: -51.5,-36.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29789 - type: CableApcExtension - components: - - pos: -51.5,-37.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29790 - type: CableApcExtension - components: - - pos: -51.5,-38.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29791 - type: CableApcExtension - components: - - pos: -51.5,-39.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 29792 - type: StorageCanister - components: - - pos: -50.5,-35.5 - parent: 1 - type: Transform -- uid: 29793 - type: StorageCanister - components: - - pos: -50.5,-34.5 - parent: 1 - type: Transform -- uid: 29794 - type: CableApcExtension - components: - - pos: 54.5,-34.5 - parent: 1 - type: Transform -- uid: 29795 - type: GasPipeTJunction - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-82.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29796 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-80.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29797 - type: CableApcExtension - components: - - pos: 30.5,-88.5 - parent: 1 - type: Transform -- uid: 29798 - type: CableApcExtension - components: - - pos: 30.5,-77.5 - parent: 1 - type: Transform -- uid: 29799 - type: CableApcExtension - components: - - pos: 30.5,-80.5 - parent: 1 - type: Transform -- uid: 29800 - type: CableApcExtension - components: - - pos: 30.5,-81.5 - parent: 1 - type: Transform -- uid: 29801 - type: CableApcExtension - components: - - pos: 30.5,-84.5 - parent: 1 - type: Transform -- uid: 29802 - type: CableApcExtension - components: - - pos: 30.5,-85.5 - parent: 1 - type: Transform -- uid: 29803 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 30.5,-84.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29804 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-86.5 - parent: 1 - type: Transform -- uid: 29805 - type: Poweredlight - components: - - pos: 28.5,-80.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29806 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-76.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29807 - type: CableApcExtension - components: - - pos: 48.5,-90.5 - parent: 1 - type: Transform -- uid: 29808 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-77.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29809 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-93.5 - parent: 1 - type: Transform -- uid: 29810 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-91.5 - parent: 1 - type: Transform -- uid: 29811 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-92.5 - parent: 1 - type: Transform -- uid: 29812 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-91.5 - parent: 1 - type: Transform -- uid: 29813 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29814 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-93.5 - parent: 1 - type: Transform -- uid: 29815 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 51.5,-72.5 - parent: 1 - type: Transform -- uid: 29816 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-70.5 - parent: 1 - type: Transform -- uid: 29817 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 51.5,-71.5 - parent: 1 - type: Transform -- uid: 29818 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-80.5 - parent: 1 - type: Transform -- uid: 29819 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-82.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29820 - type: CableApcExtension - components: - - pos: 31.5,-82.5 - parent: 1 - type: Transform -- uid: 29821 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-88.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29822 - type: DisposalBend - components: - - rot: -1.5707963267948966 rad - pos: 30.5,-86.5 - parent: 1 - type: Transform -- uid: 29823 - type: CableApcExtension - components: - - pos: 48.5,-74.5 - parent: 1 - type: Transform -- uid: 29824 - type: CableApcExtension - components: - - pos: 48.5,-75.5 - parent: 1 - type: Transform -- uid: 29825 - type: CableApcExtension - components: - - pos: 30.5,-91.5 - parent: 1 - type: Transform -- uid: 29826 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-80.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29827 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-81.5 - parent: 1 - type: Transform -- uid: 29828 - type: PoweredSmallLight - components: - - pos: 33.5,-82.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29829 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 47.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29830 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 48.5,-80.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29831 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 43.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29832 - type: CableApcExtension - components: - - pos: 27.5,-81.5 - parent: 1 - type: Transform -- uid: 29833 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29834 - type: CableApcExtension - components: - - pos: 32.5,-82.5 - parent: 1 - type: Transform -- uid: 29835 - type: CableApcExtension - components: - - pos: 30.5,-79.5 - parent: 1 - type: Transform -- uid: 29836 - type: CableApcExtension - components: - - pos: 30.5,-92.5 - parent: 1 - type: Transform -- uid: 29837 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 46.5,-75.5 - parent: 1 - type: Transform -- uid: 29838 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-75.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29839 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29840 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29841 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29842 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29843 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 39.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29844 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29845 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29846 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29847 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29848 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29849 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29850 - type: DisposalPipe - components: - - pos: 30.5,-74.5 - parent: 1 - type: Transform -- uid: 29851 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29852 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29853 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-74.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29854 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29855 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29856 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29857 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-75.5 - parent: 1 - type: Transform -- uid: 29858 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 25.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29859 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-76.5 - parent: 1 - type: Transform -- uid: 29860 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 24.5,-86.5 - parent: 1 - type: Transform -- uid: 29861 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-78.5 - parent: 1 - type: Transform -- uid: 29862 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-79.5 - parent: 1 - type: Transform -- uid: 29863 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 25.5,-86.5 - parent: 1 - type: Transform -- uid: 29864 - type: Grille - components: - - pos: 46.5,-78.5 - parent: 1 - type: Transform -- uid: 29865 - type: AirlockGlass - components: - - pos: 47.5,-76.5 - parent: 1 - type: Transform -- uid: 29866 - type: Grille - components: - - pos: 46.5,-77.5 - parent: 1 - type: Transform -- uid: 29867 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-82.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29868 - type: Grille - components: - - pos: 46.5,-79.5 - parent: 1 - type: Transform -- uid: 29869 - type: AirlockExternalGlass - components: - - pos: 48.5,-93.5 - parent: 1 - type: Transform -- uid: 29870 - type: WallReinforced - components: - - pos: 49.5,-94.5 - parent: 1 - type: Transform -- uid: 29871 - type: FloraTree03 - components: - - pos: 33.02714,-87.53036 - parent: 1 - type: Transform -- uid: 29872 - type: WallReinforced - components: - - pos: 46.5,-91.5 - parent: 1 - type: Transform -- uid: 29873 - type: WallReinforced - components: - - pos: 47.5,-93.5 - parent: 1 - type: Transform -- uid: 29874 - type: WallReinforced - components: - - pos: 46.5,-93.5 - parent: 1 - type: Transform -- uid: 29875 - type: WallReinforced - components: - - pos: 50.5,-91.5 - parent: 1 - type: Transform -- uid: 29876 - type: AirlockExternalGlassShuttleEscape - components: - - pos: 48.5,-95.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 29877 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-80.5 - parent: 1 - type: Transform -- uid: 29878 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-77.5 - parent: 1 - type: Transform -- uid: 29879 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-84.5 - parent: 1 - type: Transform -- uid: 29880 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 50.5,-82.5 - parent: 1 - type: Transform -- uid: 29881 - type: WallReinforced - components: - - pos: 49.5,-95.5 - parent: 1 - type: Transform -- uid: 29882 - type: WallReinforced - components: - - pos: 47.5,-95.5 - parent: 1 - type: Transform -- uid: 29883 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29884 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 29.5,-77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29885 - type: WallReinforced - components: - - pos: 46.5,-92.5 - parent: 1 - type: Transform -- uid: 29886 - type: SignEscapePods - components: - - pos: 49.5,-93.5 - parent: 1 - type: Transform -- uid: 29887 - type: WallReinforced - components: - - pos: 50.5,-93.5 - parent: 1 - type: Transform -- uid: 29888 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-76.5 - parent: 1 - type: Transform -- uid: 29889 - type: FloraTree01 - components: - - pos: 45.883274,-86.48348 - parent: 1 - type: Transform -- uid: 29890 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-82.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29891 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-82.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29892 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-83.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29893 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-83.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29894 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-83.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29895 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-83.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29896 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 24.5,-80.5 - parent: 1 - type: Transform -- uid: 29897 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-83.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29898 - type: WallReinforced - components: - - pos: 49.5,-93.5 - parent: 1 - type: Transform -- uid: 29899 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-82.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29900 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-82.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29901 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-82.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29902 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-82.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 29903 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-82.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29904 - type: GasPipeBend - components: - - rot: 1.5707963267948966 rad - pos: 18.5,-82.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29905 - type: FloraTreeLarge03 - components: - - pos: 15.442133,-83.60979 - parent: 1 - type: Transform -- uid: 29906 - type: RailingCornerSmall - components: - - pos: 17.5,-85.5 - parent: 1 - type: Transform -- uid: 29907 - type: RailingCornerSmall - components: - - rot: 3.141592653589793 rad - pos: 13.5,-81.5 - parent: 1 - type: Transform -- uid: 29908 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 23.5,-83.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29909 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 22.5,-83.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29910 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 21.5,-83.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29911 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-83.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29912 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 19.5,-83.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29913 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 51.5,-95.5 - parent: 1 - type: Transform -- uid: 29914 - type: CableApcExtension - components: - - pos: 16.5,-81.5 - parent: 1 - type: Transform -- uid: 29915 - type: CableApcExtension - components: - - pos: 15.5,-81.5 - parent: 1 - type: Transform -- uid: 29916 - type: CableApcExtension - components: - - pos: 18.5,-86.5 - parent: 1 - type: Transform -- uid: 29917 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 25.5,-75.5 - parent: 1 - type: Transform -- uid: 29918 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 29.5,-82.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29919 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 50.5,-88.5 - parent: 1 - type: Transform -- uid: 29920 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 50.5,-89.5 - parent: 1 - type: Transform -- uid: 29921 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 50.5,-90.5 - parent: 1 - type: Transform -- uid: 29922 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 25.5,-82.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29923 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 25.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29924 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-82.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29925 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 23.5,-83.5 - parent: 1 - type: Transform -- uid: 29926 - type: AirlockGlass - components: - - rot: 3.141592653589793 rad - pos: 20.5,-83.5 - parent: 1 - type: Transform -- uid: 29927 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-80.5 - parent: 1 - type: Transform -- uid: 29928 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-74.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29929 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-78.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29930 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-77.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29931 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 50.5,-89.5 - parent: 1 - type: Transform -- uid: 29932 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 50.5,-90.5 - parent: 1 - type: Transform -- uid: 29933 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 50.5,-88.5 - parent: 1 - type: Transform -- uid: 29934 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 28.5,-89.5 - parent: 1 - type: Transform -- uid: 29935 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 25.5,-75.5 - parent: 1 - type: Transform -- uid: 29936 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 26.5,-75.5 - parent: 1 - type: Transform -- uid: 29937 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 26.5,-79.5 - parent: 1 - type: Transform -- uid: 29938 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29939 - type: GasPipeTJunction - components: - - pos: 30.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29940 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 24.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29941 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-74.5 - parent: 1 - type: Transform -- uid: 29942 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 51.5,-70.5 - parent: 1 - type: Transform -- uid: 29943 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-85.5 - parent: 1 - type: Transform -- uid: 29944 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 28.5,-90.5 - parent: 1 - type: Transform -- uid: 29945 - type: DisposalBend - components: - - rot: 1.5707963267948966 rad - pos: 24.5,-73.5 - parent: 1 - type: Transform -- uid: 29946 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 26.5,-73.5 - parent: 1 - type: Transform -- uid: 29947 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 27.5,-73.5 - parent: 1 - type: Transform -- uid: 29948 - type: CableApcExtension - components: - - pos: 13.5,-81.5 - parent: 1 - type: Transform -- uid: 29949 - type: GasVentPump - components: - - pos: 25.5,-71.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29950 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-81.5 - parent: 1 - type: Transform -- uid: 29951 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-73.5 - parent: 1 - type: Transform -- uid: 29952 - type: FloraTree02 - components: - - pos: 33.292767,-85.71786 - parent: 1 - type: Transform -- uid: 29953 - type: GasVentScrubber - components: - - pos: 24.5,-72.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29954 - type: WallReinforced - components: - - pos: 47.5,-94.5 - parent: 1 - type: Transform -- uid: 29955 - type: RailingCornerSmall - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-81.5 - parent: 1 - type: Transform -- uid: 29956 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 29.5,-73.5 - parent: 1 - type: Transform -- uid: 29957 - type: AirlockExternalGlass - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-82.5 - parent: 1 - type: Transform -- uid: 29958 - type: Poweredlight - components: - - pos: 48.5,-71.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 29959 - type: CableApcExtension - components: - - pos: 30.5,-86.5 - parent: 1 - type: Transform -- uid: 29960 - type: CableApcExtension - components: - - pos: 30.5,-87.5 - parent: 1 - type: Transform -- uid: 29961 - type: CableApcExtension - components: - - pos: 30.5,-82.5 - parent: 1 - type: Transform -- uid: 29962 - type: CableApcExtension - components: - - pos: 30.5,-83.5 - parent: 1 - type: Transform -- uid: 29963 - type: CableApcExtension - components: - - pos: 27.5,-82.5 - parent: 1 - type: Transform -- uid: 29964 - type: CableApcExtension - components: - - pos: 30.5,-93.5 - parent: 1 - type: Transform -- uid: 29965 - type: CableApcExtension - components: - - pos: 31.5,-89.5 - parent: 1 - type: Transform -- uid: 29966 - type: CableApcExtension - components: - - pos: 32.5,-89.5 - parent: 1 - type: Transform -- uid: 29967 - type: CableApcExtension - components: - - pos: 26.5,-83.5 - parent: 1 - type: Transform -- uid: 29968 - type: CableApcExtension - components: - - pos: 25.5,-83.5 - parent: 1 - type: Transform -- uid: 29969 - type: CableApcExtension - components: - - pos: 24.5,-83.5 - parent: 1 - type: Transform -- uid: 29970 - type: CableApcExtension - components: - - pos: 29.5,-83.5 - parent: 1 - type: Transform -- uid: 29971 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 28.5,-89.5 - parent: 1 - type: Transform -- uid: 29972 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-92.5 - parent: 1 - type: Transform -- uid: 29973 - type: CableApcExtension - components: - - pos: 12.5,-85.5 - parent: 1 - type: Transform -- uid: 29974 - type: RailingCornerSmall - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-85.5 - parent: 1 - type: Transform -- uid: 29975 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-84.5 - parent: 1 - type: Transform -- uid: 29976 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-83.5 - parent: 1 - type: Transform -- uid: 29977 - type: Railing - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-82.5 - parent: 1 - type: Transform -- uid: 29978 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-82.5 - parent: 1 - type: Transform -- uid: 29979 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-83.5 - parent: 1 - type: Transform -- uid: 29980 - type: Railing - components: - - rot: -1.5707963267948966 rad - pos: 17.5,-84.5 - parent: 1 - type: Transform -- uid: 29981 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 16.5,-85.5 - parent: 1 - type: Transform -- uid: 29982 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 15.5,-85.5 - parent: 1 - type: Transform -- uid: 29983 - type: Railing - components: - - rot: 3.141592653589793 rad - pos: 14.5,-85.5 - parent: 1 - type: Transform -- uid: 29984 - type: Railing - components: - - pos: 14.5,-81.5 - parent: 1 - type: Transform -- uid: 29985 - type: Railing - components: - - pos: 15.5,-81.5 - parent: 1 - type: Transform -- uid: 29986 - type: Railing - components: - - pos: 16.5,-81.5 - parent: 1 - type: Transform -- uid: 29987 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-95.5 - parent: 1 - type: Transform -- uid: 29988 - type: GasVentPump - components: - - rot: 3.141592653589793 rad - pos: 18.5,-83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 29989 - type: ComfyChair - components: - - pos: 16.5,-79.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 29990 - type: ComfyChair - components: - - pos: 14.5,-79.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 29991 - type: ComfyChair - components: - - pos: 13.5,-79.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 29992 - type: ComfyChair - components: - - pos: 17.5,-79.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 29993 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-81.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 29994 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-82.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 29995 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-84.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 29996 - type: ComfyChair - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-85.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 29997 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-74.5 - parent: 1 - type: Transform -- uid: 29998 - type: ClosetFireFilled - components: - - pos: 35.5,-74.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 6.8442817 - - 25.747536 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- uid: 29999 - type: CableApcExtension - components: - - pos: 28.5,-83.5 - parent: 1 - type: Transform -- uid: 30000 - type: CableApcExtension - components: - - pos: 27.5,-83.5 - parent: 1 - type: Transform -- uid: 30001 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-79.5 - parent: 1 - type: Transform -- uid: 30002 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-84.5 - parent: 1 - type: Transform -- uid: 30003 - type: AirlockExternalGlass - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-89.5 - parent: 1 - type: Transform -- uid: 30004 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-81.5 - parent: 1 - type: Transform -- uid: 30005 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-85.5 - parent: 1 - type: Transform -- uid: 30006 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-90.5 - parent: 1 - type: Transform -- uid: 30007 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-88.5 - parent: 1 - type: Transform -- uid: 30008 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-90.5 - parent: 1 - type: Transform -- uid: 30009 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 50.5,-83.5 - parent: 1 - type: Transform -- uid: 30010 - type: VendingMachineCigs - components: - - flags: SessionSpecific - type: MetaData - - pos: 18.5,-80.5 - parent: 1 - type: Transform -- uid: 30011 - type: TableGlass - components: - - pos: 15.5,-79.5 - parent: 1 - type: Transform -- uid: 30012 - type: TableGlass - components: - - pos: 11.5,-83.5 - parent: 1 - type: Transform -- uid: 30013 - type: CigarCase - components: - - rot: -1.5707963267948966 rad - pos: 11.595914,-83.404686 - parent: 1 - type: Transform -- uid: 30014 - type: VendingMachineCoffee - components: - - flags: SessionSpecific - type: MetaData - - pos: 12.5,-80.5 - parent: 1 - type: Transform -- uid: 30015 - type: TableGlass - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-87.5 - parent: 1 - type: Transform -- uid: 30016 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 14.5,-87.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 30017 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 13.5,-87.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 30018 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 17.5,-87.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 30019 - type: FoodDonutCaramel - components: - - pos: 15.499002,-87.424286 - parent: 1 - type: Transform -- uid: 30020 - type: ComfyChair - components: - - rot: 3.141592653589793 rad - pos: 16.5,-87.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 30021 - type: DisposalPipe - components: - - pos: 30.5,-76.5 - parent: 1 - type: Transform -- uid: 30022 - type: DisposalPipe - components: - - pos: 30.5,-75.5 - parent: 1 - type: Transform -- uid: 30023 - type: CableApcExtension - components: - - pos: 49.5,-72.5 - parent: 1 - type: Transform -- uid: 30024 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 50.5,-81.5 - parent: 1 - type: Transform -- uid: 30025 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 50.5,-82.5 - parent: 1 - type: Transform -- uid: 30026 - type: WallReinforced - components: - - pos: 50.5,-92.5 - parent: 1 - type: Transform -- uid: 30027 - type: FirelockGlass - components: - - pos: 23.5,-83.5 - parent: 1 - type: Transform -- uid: 30028 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-76.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30029 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 30.5,-79.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30030 - type: GasPipeTJunction - components: - - pos: 29.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30031 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 41.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30032 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 14.5,-78.5 - parent: 1 - type: Transform -- uid: 30033 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 13.5,-78.5 - parent: 1 - type: Transform -- uid: 30034 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 27.5,-67.5 - parent: 1 - type: Transform -- uid: 30035 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,-67.5 - parent: 1 - type: Transform -- uid: 30036 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 24.5,-68.5 - parent: 1 - type: Transform -- uid: 30037 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 27.5,-68.5 - parent: 1 - type: Transform -- uid: 30038 - type: SpawnPointLatejoin - components: - - pos: 39.5,-72.5 - parent: 1 - type: Transform -- uid: 30039 - type: SpawnPointLatejoin - components: - - pos: 40.5,-72.5 - parent: 1 - type: Transform -- uid: 30040 - type: SpawnPointLatejoin - components: - - pos: 42.5,-72.5 - parent: 1 - type: Transform -- uid: 30041 - type: SpawnPointLatejoin - components: - - pos: 37.5,-72.5 - parent: 1 - type: Transform -- uid: 30042 - type: AirlockGlass - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-72.5 - parent: 1 - type: Transform -- uid: 30043 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 25.5,-86.5 - parent: 1 - type: Transform -- uid: 30044 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 26.5,-75.5 - parent: 1 - type: Transform -- uid: 30045 - type: AirlockGlass - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-73.5 - parent: 1 - type: Transform -- uid: 30046 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-82.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30047 - type: Poweredlight - components: - - rot: 3.141592653589793 rad - pos: 12.5,-86.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30048 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-74.5 - parent: 1 - type: Transform -- uid: 30049 - type: AirlockGlass - components: - - pos: 49.5,-76.5 - parent: 1 - type: Transform -- uid: 30050 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 28.5,-79.5 - parent: 1 - type: Transform -- uid: 30051 - type: Poweredlight - components: - - rot: 1.5707963267948966 rad - pos: 22.5,-72.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30052 - type: Poweredlight - components: - - pos: 29.5,-71.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30053 - type: AirlockGlass - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-71.5 - parent: 1 - type: Transform -- uid: 30054 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 48.5,-74.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30055 - type: DisposalPipe - components: - - pos: 30.5,-82.5 - parent: 1 - type: Transform -- uid: 30056 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 48.5,-76.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30057 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 48.5,-83.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30058 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 48.5,-84.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30059 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 48.5,-77.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30060 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 48.5,-78.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30061 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 48.5,-81.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30062 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 48.5,-82.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30063 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30064 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 42.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30065 - type: AirlockGlass - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-73.5 - parent: 1 - type: Transform -- uid: 30066 - type: AirSensor - components: - - pos: 25.5,-72.5 - parent: 1 - type: Transform -- uid: 30067 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 25.5,-67.5 - parent: 1 - type: Transform -- uid: 30068 - type: AirSensor - components: - - pos: 15.5,-86.5 - parent: 1 - type: Transform -- uid: 30069 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 31.5,-73.5 - parent: 1 - type: Transform -- uid: 30070 - type: AirAlarm - components: - - pos: 22.5,-70.5 - parent: 1 - type: Transform - - devices: - - invalid - - 29953 - - 30066 - - 29949 - - 30299 - - 30300 - - 30301 - - 30298 - - 30297 - - 30296 - type: DeviceList -- uid: 30071 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-74.5 - parent: 1 - type: Transform -- uid: 30072 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-84.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30073 - type: AirAlarm - components: - - pos: 19.5,-80.5 - parent: 1 - type: Transform - - devices: - - 30159 - - 29988 - - 29912 - - 30068 - type: DeviceList -- uid: 30074 - type: FireAlarm - components: - - pos: 30.5,-70.5 - parent: 1 - type: Transform - - devices: - - invalid - - 30066 - - 30299 - - 30300 - - 30301 - - 30298 - - 30297 - - 30296 - type: DeviceList -- uid: 30075 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-74.5 - parent: 1 - type: Transform -- uid: 30076 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-85.5 - parent: 1 - type: Transform - - devices: - - 30159 - - 30068 - type: DeviceList -- uid: 30077 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-74.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30078 - type: EmergencyLight - components: - - pos: 30.5,-71.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 30079 - type: AirlockGlass - components: - - pos: 48.5,-76.5 - parent: 1 - type: Transform -- uid: 30080 - type: EmergencyLight - components: - - rot: 3.141592653589793 rad - pos: 18.5,-86.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 30081 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-75.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30082 - type: CableApcExtension - components: - - pos: 46.5,-72.5 - parent: 1 - type: Transform -- uid: 30083 - type: CableApcExtension - components: - - pos: 47.5,-72.5 - parent: 1 - type: Transform -- uid: 30084 - type: Intercom - components: - - pos: 23.5,-69.5 - parent: 1 - type: Transform -- uid: 30085 - type: Grille - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-74.5 - parent: 1 - type: Transform -- uid: 30086 - type: Intercom - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-84.5 - parent: 1 - type: Transform -- uid: 30087 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-88.5 - parent: 1 - type: Transform -- uid: 30088 - type: Lighter - components: - - pos: 15.667978,-79.47625 - parent: 1 - type: Transform -- uid: 30089 - type: DrinkWhiskeyGlass - components: - - pos: 15.324228,-79.460625 - parent: 1 - type: Transform -- uid: 30090 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 25.5,-68.5 - parent: 1 - type: Transform -- uid: 30091 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 25.5,-69.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 30092 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 26.5,-69.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 30093 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 26.5,-67.5 - parent: 1 - type: Transform -- uid: 30094 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 17.5,-78.5 - parent: 1 - type: Transform -- uid: 30095 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 16.5,-78.5 - parent: 1 - type: Transform -- uid: 30096 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 10.5,-81.5 - parent: 1 - type: Transform -- uid: 30097 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 10.5,-82.5 - parent: 1 - type: Transform -- uid: 30098 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 10.5,-84.5 - parent: 1 - type: Transform -- uid: 30099 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 10.5,-85.5 - parent: 1 - type: Transform -- uid: 30100 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 14.5,-88.5 - parent: 1 - type: Transform -- uid: 30101 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 13.5,-88.5 - parent: 1 - type: Transform -- uid: 30102 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 17.5,-88.5 - parent: 1 - type: Transform -- uid: 30103 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 16.5,-88.5 - parent: 1 - type: Transform -- uid: 30104 - type: DisposalJunction - components: - - rot: 1.5707963267948966 rad - pos: 30.5,-73.5 - parent: 1 - type: Transform -- uid: 30105 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-73.5 - parent: 1 - type: Transform -- uid: 30106 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 33.5,-73.5 - parent: 1 - type: Transform -- uid: 30107 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 34.5,-73.5 - parent: 1 - type: Transform -- uid: 30108 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 35.5,-73.5 - parent: 1 - type: Transform -- uid: 30109 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 36.5,-73.5 - parent: 1 - type: Transform -- uid: 30110 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-73.5 - parent: 1 - type: Transform -- uid: 30111 - type: DisposalPipe - components: - - rot: 1.5707963267948966 rad - pos: 38.5,-73.5 - parent: 1 - type: Transform -- uid: 30112 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 45.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30113 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30114 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 29.5,-85.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30115 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-81.5 - parent: 1 - type: Transform -- uid: 30116 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-82.5 - parent: 1 - type: Transform -- uid: 30117 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-83.5 - parent: 1 - type: Transform -- uid: 30118 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-84.5 - parent: 1 - type: Transform -- uid: 30119 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 11.5,-85.5 - parent: 1 - type: Transform -- uid: 30120 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-79.5 - parent: 1 - type: Transform -- uid: 30121 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-79.5 - parent: 1 - type: Transform -- uid: 30122 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-79.5 - parent: 1 - type: Transform -- uid: 30123 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-79.5 - parent: 1 - type: Transform -- uid: 30124 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-79.5 - parent: 1 - type: Transform -- uid: 30125 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 13.5,-87.5 - parent: 1 - type: Transform -- uid: 30126 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 14.5,-87.5 - parent: 1 - type: Transform -- uid: 30127 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-87.5 - parent: 1 - type: Transform -- uid: 30128 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 16.5,-87.5 - parent: 1 - type: Transform -- uid: 30129 - type: CarpetGreen - components: - - rot: 1.5707963267948966 rad - pos: 17.5,-87.5 - parent: 1 - type: Transform -- uid: 30130 - type: AtmosDeviceFanTiny - components: - - rot: 3.141592653589793 rad - pos: 30.5,-95.5 - parent: 1 - type: Transform -- uid: 30131 - type: PottedPlantRandom - components: - - pos: 24.5,-85.5 - parent: 1 - type: Transform -- uid: 30132 - type: PottedPlantRandom - components: - - pos: 25.5,-74.5 - parent: 1 - type: Transform -- uid: 30133 - type: RandomPosterLegit - components: - - pos: 28.5,-79.5 - parent: 1 - type: Transform -- uid: 30134 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 31.5,-70.5 - parent: 1 - type: Transform -- uid: 30135 - type: RandomPosterLegit - components: - - rot: 3.141592653589793 rad - pos: 42.5,-74.5 - parent: 1 - type: Transform -- uid: 30136 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: 15.5,-78.5 - parent: 1 - type: Transform -- uid: 30137 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: 10.5,-83.5 - parent: 1 - type: Transform -- uid: 30138 - type: RandomPosterContraband - components: - - rot: 3.141592653589793 rad - pos: 15.5,-88.5 - parent: 1 - type: Transform -- uid: 30139 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 51.5,-73.5 - parent: 1 - type: Transform -- uid: 30140 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 50.5,-95.5 - parent: 1 - type: Transform -- uid: 30141 - type: AirlockExternalGlassShuttleEscape - components: - - pos: 30.5,-95.5 - parent: 1 - type: Transform - - fixtures: - - shape: !type:PolygonShape - radius: 0.01 - vertices: - - 0.49,-0.49 - - 0.49,0.49 - - -0.49,0.49 - - -0.49,-0.49 - mask: - - Impassable - - MidImpassable - - HighImpassable - - LowImpassable - - InteractImpassable - layer: - - MidImpassable - - HighImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 100 - hard: True - restitution: 0 - friction: 0.4 - id: null - - shape: !type:PhysShapeCircle - radius: 0.2 - position: 0,-0.5 - mask: [] - layer: [] - density: 1 - hard: False - restitution: 0 - friction: 0.4 - id: docking - type: Fixtures -- uid: 30142 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-75.5 - parent: 1 - type: Transform -- uid: 30143 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-74.5 - parent: 1 - type: Transform -- uid: 30144 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 54.5,-74.5 - parent: 1 - type: Transform -- uid: 30145 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 53.5,-74.5 - parent: 1 - type: Transform -- uid: 30146 - type: CableApcExtension - components: - - pos: 48.5,-88.5 - parent: 1 - type: Transform -- uid: 30147 - type: CableApcExtension - components: - - pos: 48.5,-87.5 - parent: 1 - type: Transform -- uid: 30148 - type: CableApcExtension - components: - - pos: 48.5,-86.5 - parent: 1 - type: Transform -- uid: 30149 - type: CableApcExtension - components: - - pos: 48.5,-85.5 - parent: 1 - type: Transform -- uid: 30150 - type: CableApcExtension - components: - - pos: 48.5,-84.5 - parent: 1 - type: Transform -- uid: 30151 - type: CableApcExtension - components: - - pos: 48.5,-83.5 - parent: 1 - type: Transform -- uid: 30152 - type: CableApcExtension - components: - - pos: 48.5,-82.5 - parent: 1 - type: Transform -- uid: 30153 - type: CableApcExtension - components: - - pos: 48.5,-81.5 - parent: 1 - type: Transform -- uid: 30154 - type: CableApcExtension - components: - - pos: 48.5,-80.5 - parent: 1 - type: Transform -- uid: 30155 - type: CableApcExtension - components: - - pos: 48.5,-79.5 - parent: 1 - type: Transform -- uid: 30156 - type: CableApcExtension - components: - - pos: 48.5,-78.5 - parent: 1 - type: Transform -- uid: 30157 - type: CableApcExtension - components: - - pos: 48.5,-77.5 - parent: 1 - type: Transform -- uid: 30158 - type: RandomFoodMeal - components: - - pos: 25.5,-68.5 - parent: 1 - type: Transform -- uid: 30159 - type: FirelockGlass - components: - - pos: 20.5,-83.5 - parent: 1 - type: Transform -- uid: 30160 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-87.5 - parent: 1 - type: Transform -- uid: 30161 - type: WallReinforced - components: - - rot: 1.5707963267948966 rad - pos: 50.5,-80.5 - parent: 1 - type: Transform -- uid: 30162 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-82.5 - parent: 1 - type: Transform -- uid: 30163 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 24.5,-86.5 - parent: 1 - type: Transform -- uid: 30164 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-85.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30165 - type: GasVentScrubber - components: - - rot: 3.141592653589793 rad - pos: 48.5,-85.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30166 - type: GasVentPump - components: - - rot: -1.5707963267948966 rad - pos: 48.5,-86.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30167 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 51.5,-72.5 - parent: 1 - type: Transform -- uid: 30168 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 32.5,-78.5 - parent: 1 - type: Transform -- uid: 30169 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-81.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30170 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-82.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30171 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-81.5 - parent: 1 - type: Transform -- uid: 30172 - type: CableApcExtension - components: - - pos: 43.5,-74.5 - parent: 1 - type: Transform -- uid: 30173 - type: CableApcExtension - components: - - pos: 43.5,-75.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30174 - type: ReinforcedWindow - components: - - rot: 1.5707963267948966 rad - pos: 44.5,-87.5 - parent: 1 - type: Transform -- uid: 30175 - type: CableApcExtension - components: - - pos: 26.5,-84.5 - parent: 1 - type: Transform -- uid: 30176 - type: CableApcExtension - components: - - pos: 26.5,-85.5 - parent: 1 - type: Transform -- uid: 30177 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 51.5,-71.5 - parent: 1 - type: Transform -- uid: 30178 - type: PoweredSmallLight - components: - - pos: 22.5,-83.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30179 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 52.5,-83.5 - parent: 1 - type: Transform -- uid: 30180 - type: GasPipeBend - components: - - rot: 3.141592653589793 rad - pos: 47.5,-86.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30181 - type: GasPipeStraight - components: - - rot: 3.141592653589793 rad - pos: 47.5,-83.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30182 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-76.5 - parent: 1 - type: Transform -- uid: 30183 - type: WallReinforced - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-83.5 - parent: 1 - type: Transform -- uid: 30184 - type: Poweredlight - components: - - rot: -1.5707963267948966 rad - pos: 40.5,-66.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30185 - type: Poweredlight - components: - - pos: 24.5,-69.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30186 - type: Poweredlight - components: - - pos: 15.5,-79.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30187 - type: RandomSpawner - components: - - rot: 3.141592653589793 rad - pos: 49.5,-73.5 - parent: 1 - type: Transform -- uid: 30188 - type: Chair - components: - - pos: 50.5,-71.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 30189 - type: Chair - components: - - rot: 3.141592653589793 rad - pos: 50.5,-73.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- uid: 30190 - type: Table - components: - - rot: 3.141592653589793 rad - pos: 50.5,-72.5 - parent: 1 - type: Transform -- uid: 30191 - type: ChessBoard - components: - - rot: 3.141592653589793 rad - pos: 50.48214,-72.40164 - parent: 1 - type: Transform -- uid: 30192 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: -16.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30193 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -21.5,66.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30194 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -20.5,66.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30195 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -19.5,66.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30196 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -15.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30197 - type: GasPipeStraight - components: - - rot: 1.5707963267948966 rad - pos: -14.5,66.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30198 - type: CrowbarRed - components: - - pos: -16.370653,65.49348 - parent: 1 - type: Transform -- uid: 30199 - type: FloorDrain - components: - - pos: 1.5,12.5 - parent: 1 - type: Transform - - fixtures: [] - type: Fixtures -- uid: 30200 - type: ClosetFireFilled - components: - - pos: 29.5,-92.5 - parent: 1 - type: Transform -- uid: 30201 - type: ClosetFireFilled - components: - - pos: 49.5,-92.5 - parent: 1 - type: Transform -- uid: 30202 - type: ClosetFireFilled - components: - - pos: 28.5,-80.5 - parent: 1 - type: Transform -- uid: 30203 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-72.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30204 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-73.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30205 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-48.5 - parent: 1 - type: Transform -- uid: 30206 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -19.5,-49.5 - parent: 1 - type: Transform -- uid: 30207 - type: CableHV - components: - - pos: 4.5,-21.5 - parent: 1 - type: Transform -- uid: 30208 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 3.5,-20.5 - parent: 1 - type: Transform -- uid: 30209 - type: APCBasic - components: - - pos: 11.5,-18.5 - parent: 1 - type: Transform -- uid: 30210 - type: CableMV - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30211 - type: CableHV - components: - - pos: 4.5,-22.5 - parent: 1 - type: Transform -- uid: 30212 - type: ReinforcedPlasmaWindow - components: - - rot: 3.141592653589793 rad - pos: 6.5,-22.5 - parent: 1 - type: Transform -- uid: 30213 - type: ReinforcedPlasmaWindow - components: - - rot: 3.141592653589793 rad - pos: 6.5,-23.5 - parent: 1 - type: Transform -- uid: 30214 - type: AirlockEngineeringLocked - components: - - rot: 3.141592653589793 rad - pos: 6.5,-21.5 - parent: 1 - type: Transform -- uid: 30215 - type: CableMV - components: - - pos: 7.5,-19.5 - parent: 1 - type: Transform -- uid: 30216 - type: CableMV - components: - - pos: 5.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30217 - type: CableMV - components: - - pos: 7.5,-20.5 - parent: 1 - type: Transform -- uid: 30218 - type: CableMV - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform -- uid: 30219 - type: CableMV - components: - - pos: 9.5,-20.5 - parent: 1 - type: Transform -- uid: 30220 - type: CableMV - components: - - pos: 10.5,-20.5 - parent: 1 - type: Transform -- uid: 30221 - type: CableMV - components: - - pos: 11.5,-20.5 - parent: 1 - type: Transform -- uid: 30222 - type: CableMV - components: - - pos: 11.5,-19.5 - parent: 1 - type: Transform -- uid: 30223 - type: CableMV - components: - - pos: 11.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30224 - type: CableApcExtension - components: - - pos: 11.5,-18.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30225 - type: CableApcExtension - components: - - pos: 11.5,-19.5 - parent: 1 - type: Transform -- uid: 30226 - type: CableApcExtension - components: - - pos: 11.5,-20.5 - parent: 1 - type: Transform -- uid: 30227 - type: CableApcExtension - components: - - pos: 11.5,-21.5 - parent: 1 - type: Transform -- uid: 30228 - type: CableApcExtension - components: - - pos: 10.5,-21.5 - parent: 1 - type: Transform -- uid: 30229 - type: CableApcExtension - components: - - pos: 9.5,-21.5 - parent: 1 - type: Transform -- uid: 30230 - type: CableApcExtension - components: - - pos: 8.5,-21.5 - parent: 1 - type: Transform -- uid: 30231 - type: CableApcExtension - components: - - pos: 7.5,-21.5 - parent: 1 - type: Transform -- uid: 30232 - type: CableApcExtension - components: - - pos: 7.5,-22.5 - parent: 1 - type: Transform -- uid: 30233 - type: CableApcExtension - components: - - pos: 7.5,-23.5 - parent: 1 - type: Transform -- uid: 30234 - type: CableApcExtension - components: - - pos: 8.5,-23.5 - parent: 1 - type: Transform -- uid: 30235 - type: CableApcExtension - components: - - pos: 9.5,-23.5 - parent: 1 - type: Transform -- uid: 30236 - type: CableApcExtension - components: - - pos: 10.5,-23.5 - parent: 1 - type: Transform -- uid: 30237 - type: CableApcExtension - components: - - pos: 11.5,-23.5 - parent: 1 - type: Transform -- uid: 30238 - type: CableApcExtension - components: - - pos: 11.5,-22.5 - parent: 1 - type: Transform -- uid: 30239 - type: CableApcExtension - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform -- uid: 30240 - type: CableApcExtension - components: - - pos: 9.5,-20.5 - parent: 1 - type: Transform -- uid: 30241 - type: SignTelecomms - components: - - pos: 13.5,-22.5 - parent: 1 - type: Transform -- uid: 30242 - type: TelecomServer - components: - - pos: 8.5,-20.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 30243 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 30243 - type: EncryptionKeyCargo - components: - - flags: InContainer - type: MetaData - - parent: 30242 - type: Transform - - canCollide: False - type: Physics -- uid: 30244 - type: TelecomServer - components: - - pos: 11.5,-22.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 30245 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 30245 - type: EncryptionKeyService - components: - - flags: InContainer - type: MetaData - - parent: 30244 - type: Transform - - canCollide: False - type: Physics -- uid: 30246 - type: AtmosDeviceFanTiny - components: - - pos: -17.5,70.5 - parent: 1 - type: Transform -- uid: 30247 - type: TelecomServer - components: - - pos: 9.5,-22.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 30248 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 30248 - type: EncryptionKeyMedical - components: - - flags: InContainer - type: MetaData - - parent: 30247 - type: Transform - - canCollide: False - type: Physics -- uid: 30249 - type: AtmosDeviceFanTiny - components: - - pos: -12.5,75.5 - parent: 1 - type: Transform -- uid: 30250 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 14.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30251 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 13.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 30252 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30253 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 11.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30254 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 10.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30255 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 9.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30256 - type: GasPipeStraight - components: - - rot: -1.5707963267948966 rad - pos: 8.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30257 - type: GasVentScrubber - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-22.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30258 - type: GasPipeStraight - components: - - pos: 12.5,-25.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30259 - type: GasPipeStraight - components: - - pos: 12.5,-26.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30260 - type: Grille - components: - - pos: 9.5,-18.5 - parent: 1 - type: Transform -- uid: 30261 - type: ReinforcedPlasmaWindow - components: - - pos: 9.5,-18.5 - parent: 1 - type: Transform -- uid: 30262 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 3.5,-22.5 - parent: 1 - type: Transform -- uid: 30263 - type: GasVentPump - components: - - pos: 12.5,-22.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30264 - type: CableTerminal - components: - - rot: 3.141592653589793 rad - pos: 4.5,-21.5 - parent: 1 - type: Transform -- uid: 30265 - type: GeneratorPlasma - components: - - pos: 4.5,-22.5 - parent: 1 - type: Transform -- uid: 30266 - type: GasPipeStraight - components: - - pos: 12.5,-23.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics -- uid: 30267 - type: GasPipeStraight - components: - - pos: 12.5,-24.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - bodyType: Static - type: Physics - - enabled: True - type: AmbientSound -- uid: 30268 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 3.5,-23.5 - parent: 1 - type: Transform -- uid: 30269 - type: ReinforcedPlasmaWindow - components: - - rot: 3.141592653589793 rad - pos: 6.5,-19.5 - parent: 1 - type: Transform -- uid: 30270 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 3.5,-21.5 - parent: 1 - type: Transform -- uid: 30271 - type: WallReinforced - components: - - rot: 3.141592653589793 rad - pos: 3.5,-19.5 - parent: 1 - type: Transform -- uid: 30272 - type: CableHV - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30273 - type: CableHV - components: - - pos: 4.5,-20.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30274 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 6.5,-22.5 - parent: 1 - type: Transform -- uid: 30275 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 6.5,-23.5 - parent: 1 - type: Transform -- uid: 30276 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 5.5,-19.5 - parent: 1 - type: Transform -- uid: 30277 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 5.5,-20.5 - parent: 1 - type: Transform -- uid: 30278 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 5.5,-21.5 - parent: 1 - type: Transform -- uid: 30279 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 5.5,-22.5 - parent: 1 - type: Transform -- uid: 30280 - type: CableHV - components: - - pos: 10.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30281 - type: PoweredlightSodium - components: - - rot: -1.5707963267948966 rad - pos: 12.5,-20.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30282 - type: PoweredSmallLight - components: - - rot: 3.141592653589793 rad - pos: 5.5,-23.5 - parent: 1 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- uid: 30283 - type: CableHV - components: - - pos: 11.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30284 - type: CableHV - components: - - pos: 12.5,-14.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30285 - type: CableHV - components: - - pos: 12.5,-15.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30286 - type: CableHV - components: - - pos: 12.5,-16.5 - parent: 1 - type: Transform - - enabled: True - type: AmbientSound -- uid: 30287 - type: CableHV - components: - - pos: 11.5,-16.5 - parent: 1 - type: Transform -- uid: 30288 - type: CableHV - components: - - pos: 10.5,-16.5 - parent: 1 - type: Transform -- uid: 30289 - type: CableHV - components: - - pos: 9.5,-16.5 - parent: 1 - type: Transform -- uid: 30290 - type: SubstationBasic - components: - - pos: 8.5,-16.5 - parent: 1 - type: Transform -- uid: 30291 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 4.5,-16.5 - parent: 1 - type: Transform -- uid: 30292 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 6.5,-14.5 - parent: 1 - type: Transform -- uid: 30293 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 5.5,-14.5 - parent: 1 - type: Transform -- uid: 30294 - type: Catwalk - components: - - rot: 3.141592653589793 rad - pos: 4.5,-14.5 - parent: 1 - type: Transform -- uid: 30295 - type: TableGlass - components: - - rot: 3.141592653589793 rad - pos: 26.5,-81.5 - parent: 1 - type: Transform -- uid: 30296 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 29.5,-76.5 - parent: 1 - type: Transform -- uid: 30297 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 30.5,-76.5 - parent: 1 - type: Transform -- uid: 30298 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 31.5,-76.5 - parent: 1 - type: Transform -- uid: 30299 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 32.5,-71.5 - parent: 1 - type: Transform -- uid: 30300 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 32.5,-72.5 - parent: 1 - type: Transform -- uid: 30301 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 32.5,-73.5 - parent: 1 - type: Transform -- uid: 30302 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 46.5,-71.5 - parent: 1 - type: Transform -- uid: 30303 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 46.5,-72.5 - parent: 1 - type: Transform -- uid: 30304 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 46.5,-73.5 - parent: 1 - type: Transform -- uid: 30305 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 47.5,-76.5 - parent: 1 - type: Transform -- uid: 30306 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 48.5,-76.5 - parent: 1 - type: Transform -- uid: 30307 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: 49.5,-76.5 - parent: 1 - type: Transform -- uid: 30308 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -14.5,66.5 - parent: 1 - type: Transform -- uid: 30309 - type: FirelockGlass - components: - - rot: 3.141592653589793 rad - pos: -20.5,66.5 - parent: 1 - type: Transform -- uid: 30310 - type: AirAlarm - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-83.5 - parent: 1 - type: Transform - - devices: - - 29803 - - 22606 - - 13244 - - 30027 - - 30296 - - 30297 - - 30298 - type: DeviceList -- uid: 30311 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 32.5,-81.5 - parent: 1 - type: Transform - - devices: - - 22606 - - 30027 - - 30296 - - 30297 - - 30298 - type: DeviceList -- uid: 30312 - type: FireAlarm - components: - - rot: 3.141592653589793 rad - pos: 42.5,-74.5 - parent: 1 - type: Transform - - devices: - - 30302 - - 30303 - - 30304 - - 30299 - - 30300 - - 30301 - - 13735 - type: DeviceList -- uid: 30313 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-75.5 - parent: 1 - type: Transform - - devices: - - 27278 - - 30302 - - 30303 - - 30304 - - 30307 - - 30306 - - 30305 - type: DeviceList -- uid: 30314 - type: FireAlarm - components: - - rot: -1.5707963267948966 rad - pos: 50.5,-85.5 - parent: 1 - type: Transform - - devices: - - 27277 - - 30305 - - 30306 - - 30307 - type: DeviceList -- uid: 30315 - type: AirAlarm - components: - - rot: 1.5707963267948966 rad - pos: 46.5,-80.5 - parent: 1 - type: Transform - - devices: - - 27277 - - 30165 - - 30166 - - 30305 - - 30306 - - 30307 - type: DeviceList -- uid: 30316 - type: Catwalk - components: - - rot: 1.5707963267948966 rad - pos: -20.5,-49.5 - parent: 1 - type: Transform -- uid: 30317 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 31.5,-83.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 30318 - type: EmergencyLight - components: - - rot: -1.5707963267948966 rad - pos: 49.5,-84.5 - parent: 1 - type: Transform - - enabled: True - type: PointLight - - enabled: True - type: AmbientSound - - type: ActiveEmergencyLight -- uid: 30319 - type: PlushieAtmosian - components: - - pos: -22.54358,-34.49993 - parent: 1 - type: Transform -- uid: 30320 - type: TelecomServer - components: - - pos: 10.5,-22.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 30321 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 30321 - type: EncryptionKeySecurity - components: - - flags: InContainer - type: MetaData - - parent: 30320 - type: Transform - - canCollide: False - type: Physics -- uid: 30322 - type: TelecomServer - components: - - pos: 9.5,-20.5 - parent: 1 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 30323 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer -- uid: 30323 - type: EncryptionKeyCommand - components: - - flags: InContainer - type: MetaData - - parent: 30322 - type: Transform - - canCollide: False - type: Physics -- uid: 30324 - type: AtmosDeviceFanTiny - components: - - pos: -13.5,75.5 - parent: 1 - type: Transform -- uid: 30325 - type: AtmosDeviceFanTiny - components: - - pos: -21.5,75.5 - parent: 1 - type: Transform -- uid: 30326 - type: AtmosDeviceFanTiny - components: - - pos: -22.5,75.5 - parent: 1 - type: Transform -- uid: 30327 - type: DeskBell - components: - - pos: -26.393543,22.737104 - parent: 1 - type: Transform -- uid: 30328 - type: DeskBell - components: - - pos: 2.482698,4.566377 - parent: 1 - type: Transform -- uid: 30329 - type: DeskBell - components: - - pos: 7.4455647,7.463886 - parent: 1 - type: Transform -- uid: 30330 - type: DeskBell - components: - - pos: 15.491525,13.615058 - parent: 1 - type: Transform -- uid: 30331 - type: DeskBell - components: - - pos: -2.9507003,-48.39704 - parent: 1 - type: Transform -- uid: 30332 - type: ClothingNeckCloakMoth - components: - - pos: -8.662971,-82.55483 - parent: 1 - type: Transform -- uid: 30333 - type: ClothingHeadHatHoodMoth - components: - - pos: -14.455677,-96.43048 - parent: 1 - type: Transform -- uid: 30334 - type: DeskBell - components: - - pos: 42.281975,-40.51448 - parent: 1 - type: Transform -- uid: 30335 - type: DeskBell - components: - - pos: 29.278196,-39.552807 - parent: 1 - type: Transform -... diff --git a/Resources/Prototypes/CM-SS14/Actions/Xeno.yml b/Resources/Prototypes/CM-SS14/Actions/Xeno.yml new file mode 100644 index 0000000000..248ba420f3 --- /dev/null +++ b/Resources/Prototypes/CM-SS14/Actions/Xeno.yml @@ -0,0 +1,7 @@ +- type: instantAction + id: XenoRestAction + icon: Interface/Actions/web.png + name: xeno-action-rest-name + description: xeno-action-rest-description + serverEvent: !type:XenoRestActionEvent + useDelay: 10 diff --git a/Resources/Prototypes/CM-SS14/Actions/misc.yml b/Resources/Prototypes/CM-SS14/Actions/misc.yml new file mode 100644 index 0000000000..04799ef77c --- /dev/null +++ b/Resources/Prototypes/CM-SS14/Actions/misc.yml @@ -0,0 +1,9 @@ +- type: instantAction + id: NightvisionToggleAction + icon: Interface/Actions/web.png + name: misc-action-nightvision-name + description: misc-action-nightvision-description + serverEvent: !type:NightvisionToggleActionEvent + useDelay: 20 + clientExclusive: true + diff --git a/Resources/Prototypes/CM-SS14/Entities/Mobs/NPCs/xenos.yml b/Resources/Prototypes/CM-SS14/Entities/Mobs/NPCs/xenos.yml new file mode 100644 index 0000000000..07f089ee9c --- /dev/null +++ b/Resources/Prototypes/CM-SS14/Entities/Mobs/NPCs/xenos.yml @@ -0,0 +1,121 @@ +- type: entity + name: facehugger + parent: SimpleSpaceMobBase + id: MobFacehugger + description: clingy + components: + - type: Speech + speechSounds: Facehugger + - type: Sprite + drawdepth: SmallMobs + sprite: Mobs/Animals/mouse.rsi + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: mouse-0 + - type: Item + size: 8 + - type: Clothing + quickEquip: false + sprite: Mobs/Animals/mouse.rsi + equippedPrefix: 0 + slots: + - MASK + - type: Physics + - type: Fixtures + fixtures: + - shape: + !type:PhysShapeCircle + radius: 0.35 + density: 200 + mask: + - MobMask + layer: + - MobLayer + - type: Faction + factions: + - Xeno + - type: Facehugger + - type: EmitSoundOnThrow + sound: /Audio/CM-SS14/Mobs/Xenos/Facehuggers/attack.ogg + - type: MobState + - type: MobThresholds + thresholds: + 0: Alive + 30: Critical + 35: Dead + - type: MovementSpeedModifier + baseWalkSpeed : 4 + baseSprintSpeed : 4 + - type: HTN + rootTask: XenoNewCompound + + - type: Appearance + - type: DamageStateVisuals + states: + Alive: + Base: mouse-0 + Critical: + Base: dead-0 + Dead: + Base: splat-0 + # - type: Food + # - type: Hunger + # baseDecayRate: 0.5 # I'm very hungry! Give me. The cheese. + # - type: Extractable + # grindableSolutionName: food + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Nutriment + Quantity: 5 + - ReagentId: Blood + Quantity: 50 + # - type: Butcherable + # spawned: + # - id: FoodMeatRat + # amount: 1 + # - type: ReplacementAccent + # accent: mouse + # - type: Tag + # tags: + # - Trash + # - CannotSuicide + # - type: Recyclable + # - type: Respirator + # damage: + # types: + # Asphyxiation: 0.25 + # damageRecovery: + # types: + # Asphyxiation: -0.25 + - type: Barotrauma + damage: + types: + Blunt: 0.1 + # - type: Vocal + # sounds: + # Male: Mouse + # Female: Mouse + # Unsexed: Mouse + # wilhelmProbability: 0.001 + # TODO: Remove CombatMode when Prototype Composition is added + - type: CombatMode + combatToggleAction: + enabled: false + autoPopulate: false + name: action-name-combat + disarmAction: + enabled: false + autoPopulate: false + name: action-name-disarm + - type: Bloodstream + bloodMaxVolume: 50 + - type: DiseaseCarrier #The other class lab animal and disease vector + naturalImmunities: + - AMIV + - type: CanEscapeInventory + - type: MobPrice + price: 50 + - type: Puller + needsHands: true diff --git a/Resources/Prototypes/CM-SS14/Entities/Structures/Obstacles/fences.yml b/Resources/Prototypes/CM-SS14/Entities/Structures/Obstacles/fences.yml new file mode 100644 index 0000000000..a3f4351a52 --- /dev/null +++ b/Resources/Prototypes/CM-SS14/Entities/Structures/Obstacles/fences.yml @@ -0,0 +1,57 @@ +- type: entity + parent: BaseStructure + id: FenceBase + name: fence + description: A fence. + components: + - type: RangedDamageSound + soundGroups: + Brute: + collection: + MetalBulletImpact + soundTypes: + Heat: + collection: + MetalLaserImpact + - type: Sprite + sprite: CM-SS14/Structures/Obstacles/fence_marine.rsi + netsync: false + drawdepth: Walls + - type: Icon + sprite: CM-SS14/Structures/Obstacles/fence_marine.rsi + state: full + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + - shape: + !type:PhysShapeAabb + bounds: "-0.3,-0.3,0.3,0.3" + mask: + - FullTileMask + layer: + - WallLayer + density: 1000 + - type: Repairable + - type: Damageable + damageContainer: Inorganic + damageModifierSet: FlimsyMetallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 35 + behaviors: + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metalbreak.ogg + - !type:SpawnEntitiesBehavior + spawn: + PartRodMetal1: + min: 0 + max: 2 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: IconSmooth + key: walls + base: fence diff --git a/Resources/Prototypes/CM-SS14/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/CM-SS14/Entities/Structures/Walls/walls.yml new file mode 100644 index 0000000000..d310d466a6 --- /dev/null +++ b/Resources/Prototypes/CM-SS14/Entities/Structures/Walls/walls.yml @@ -0,0 +1,81 @@ +- type: entity + parent: BaseWall + id: WallAlmayer + name: wall-cm-almayer + components: + - type: Tag + tags: + - Wall + - RCDDeconstructWhitelist + - type: Sprite + sprite: CM-SS14/Structures/Walls/almayer.rsi + - type: Construction + graph: Girder + node: wall + - type: Icon + sprite: CM-SS14/Structures/Walls/almayer.rsi + # - type: Destructible + # thresholds: + # - trigger: + # !type:DamageTrigger + # damage: 600 # #excess damage (nuke?). avoid computational cost of spawning entities. + # behaviors: + # - !type:DoActsBehavior + # acts: ["Destruction"] + # - trigger: + # !type:DamageTrigger + # damage: 300 + # behaviors: + # - !type:PlaySoundBehavior + # sound: + # path: /Audio/Effects/metalbreak.ogg + # - !type:ChangeConstructionNodeBehavior + # node: girder + # - !type:DoActsBehavior + # acts: ["Destruction"] + # destroySound: + # path: /Audio/Effects/metalbreak.ogg + - type: IconSmooth + key: walls + base: testwall + +- type: entity + parent: BaseWall + id: WallAlmayerWhite + name: wall-cm-almayer + components: + - type: Tag + tags: + - Wall + - RCDDeconstructWhitelist + - type: Sprite + sprite: CM-SS14/Structures/Walls/almayer_white.rsi + - type: Construction + graph: Girder + node: wall + - type: Icon + sprite: CM-SS14/Structures/Walls/almayer_white.rsi + # - type: Destructible + # thresholds: + # - trigger: + # !type:DamageTrigger + # damage: 600 # #excess damage (nuke?). avoid computational cost of spawning entities. + # behaviors: + # - !type:DoActsBehavior + # acts: ["Destruction"] + # - trigger: + # !type:DamageTrigger + # damage: 300 + # behaviors: + # - !type:PlaySoundBehavior + # sound: + # path: /Audio/Effects/metalbreak.ogg + # - !type:ChangeConstructionNodeBehavior + # node: girder + # - !type:DoActsBehavior + # acts: ["Destruction"] + # destroySound: + # path: /Audio/Effects/metalbreak.ogg + - type: IconSmooth + key: walls + base: testwall diff --git a/Resources/Prototypes/CM-SS14/Entities/Structures/Windows/window.yml b/Resources/Prototypes/CM-SS14/Entities/Structures/Windows/window.yml new file mode 100644 index 0000000000..159dd546fe --- /dev/null +++ b/Resources/Prototypes/CM-SS14/Entities/Structures/Windows/window.yml @@ -0,0 +1,111 @@ +- type: entity + id: WindowAlmayer + parent: Window + name: window-cm-almayer + description: Don't smudge up the glass down there. + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Tag + tags: + - RCDDeconstructWhitelist + - ForceFixRotations + - Window + - type: Sprite + netsync: false + drawdepth: WallTops + sprite: CM-SS14/Structures/Windows/alm_window.rsi + - type: Icon + sprite: CM-SS14/Structures/Windows/alm_window.rsi + state: full + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Glass + - type: ExaminableDamage + messages: WindowMessages + # - type: Destructible + # thresholds: + # - trigger: + # !type:DamageTrigger + # damage: 150 #excess damage (nuke?). avoid computational cost of spawning entities. + # behaviors: + # - !type:DoActsBehavior + # acts: [ "Destruction" ] + # - trigger: + # !type:DamageTrigger + # damage: 50 + # behaviors: + # - !type:PlaySoundBehavior + # sound: + # collection: GlassBreak + # - !type:SpawnEntitiesBehavior + # spawn: + # ShardGlass: + # min: 1 + # max: 2 + # - !type:DoActsBehavior + # acts: [ "Destruction" ] + - type: IconSmooth + key: walls + base: alm_window + - type: Construction + graph: Window + node: window + +- type: entity + id: WindowAlmayerWhite + parent: Window + name: window-cm-almayer-white + description: Don't smudge up the glass down there. + placement: + mode: SnapgridCenter + snap: + - Window + components: + - type: Tag + tags: + - RCDDeconstructWhitelist + - ForceFixRotations + - Window + - type: Sprite + netsync: false + drawdepth: WallTops + sprite: CM-SS14/Structures/Windows/alm_window_white.rsi + - type: Icon + sprite: CM-SS14/Structures/Windows/alm_window_white.rsi + state: full + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Glass + - type: ExaminableDamage + messages: WindowMessages + # - type: Destructible + # thresholds: + # - trigger: + # !type:DamageTrigger + # damage: 150 #excess damage (nuke?). avoid computational cost of spawning entities. + # behaviors: + # - !type:DoActsBehavior + # acts: [ "Destruction" ] + # - trigger: + # !type:DamageTrigger + # damage: 50 + # behaviors: + # - !type:PlaySoundBehavior + # sound: + # collection: GlassBreak + # - !type:SpawnEntitiesBehavior + # spawn: + # ShardGlass: + # min: 1 + # max: 2 + # - !type:DoActsBehavior + # acts: [ "Destruction" ] + - type: IconSmooth + key: walls + base: alm_window + - type: Construction + graph: Window + node: window diff --git a/Resources/Prototypes/CM-SS14/NPCs/Xenos/xenos.yml b/Resources/Prototypes/CM-SS14/NPCs/Xenos/xenos.yml new file mode 100644 index 0000000000..5cc984c208 --- /dev/null +++ b/Resources/Prototypes/CM-SS14/NPCs/Xenos/xenos.yml @@ -0,0 +1,94 @@ +- type: htnCompound + id: XenoNewCompound + branches: + - tasks: + - id: PickRangedTargetPrimitive + - id: FacehuggerMoveToTargetPrimitive + - id: FaceHuggerPrepareCompound + - tasks: + - id: IdleCompound + +- type: htnCompound + id: FaceHuggerPrepareCompound + branches: + - tasks: + - id: FaceHuggerPrepareSoundPrimitive + - id: XenoWaitJumpTimePrimitive + - id: XenoFaceHuggerLeapCompound + - tasks: + - id: XenoNewCompound + preconditions: + - !type:KeyExistsPrecondition + key: CombatTarget + - !type:TargetInRangePrecondition + targetKey: CombatTarget + rangeKey: RangedRange + - !type:TargetInLOSPrecondition + targetKey: CombatTarget + rangeKey: RangedRange + +- type: htnCompound + id: XenoFaceHuggerLeapCompound + branches: + - tasks: + - id: FaceHuggerAttackSoundPrimitive + - id: FaceHuggerLeapSoundPrimitive + - id: LeapPrimitive + - id: XenoWaitLandTimePrimitive + preconditions: + - !type:KeyExistsPrecondition + key: CombatTarget + - !type:TargetInRangePrecondition + targetKey: CombatTarget + rangeKey: RangedRange + - !type:TargetInLOSPrecondition + targetKey: CombatTarget + rangeKey: RangedRange + +- type: htnPrimitive + id: LeapPrimitive + operator: !type:XenoJumpOperator + targetKey: CombatTarget + preconditions: + - !type:KeyExistsPrecondition + key: CombatTarget + - !type:TargetInRangePrecondition + targetKey: CombatTarget + rangeKey: RangedRange + - !type:TargetInLOSPrecondition + targetKey: CombatTarget + rangeKey: RangedRange + +- type: htnPrimitive + id: FacehuggerMoveToTargetPrimitive + operator: !type:MoveToOperator + pathfindInPlanning: false + removeKeyOnFinish: false + targetKey: CombatTargetCoordinates + pathfindKey: CombatTargetPathfind + rangeKey: RangedRange + +- type: htnPrimitive + id: XenoWaitJumpTimePrimitive + operator: !type:WaitOperator + key: WaitTime + +- type: htnPrimitive + id: FaceHuggerPrepareSoundPrimitive + operator: !type:SoundOperator + sound: /Audio/CM-SS14/Mobs/Xenos/Facehuggers/pain.ogg + +- type: htnPrimitive + id: FaceHuggerLeapSoundPrimitive + operator: !type:SoundOperator + sound: /Audio/CM-SS14/Mobs/Xenos/Facehuggers/leap.ogg + +- type: htnPrimitive + id: FaceHuggerAttackSoundPrimitive + operator: !type:SoundOperator + sound: /Audio/CM-SS14/Mobs/Xenos/Facehuggers/attack.ogg + +- type: htnPrimitive + id: XenoWaitLandTimePrimitive + operator: !type:WaitOperator + key: StunTime diff --git a/Resources/Prototypes/CM-SS14/SoundCollections/ambience.yml b/Resources/Prototypes/CM-SS14/SoundCollections/ambience.yml new file mode 100644 index 0000000000..28c5e1a2f3 --- /dev/null +++ b/Resources/Prototypes/CM-SS14/SoundCollections/ambience.yml @@ -0,0 +1,19 @@ +- type: soundCollection + id: TileJungleAmbience + files: + - /Audio/CM-SS14/Ambience/Terrains/jungle_1.ogg + +- type: soundCollection + id: TileDesertAmbience + files: + - /Audio/CM-SS14/Ambience/Terrains/desert_1.ogg + +- type: soundCollection + id: TileForestAmbience + files: + - /Audio/CM-SS14/Ambience/Terrains/forest_1.ogg + +- type: soundCollection + id: TileCaveAmbience + files: + - /Audio/CM-SS14/Ambience/Terrains/caveinterior_1.ogg diff --git a/Resources/Prototypes/CM-SS14/Tiles/floors.yml b/Resources/Prototypes/CM-SS14/Tiles/floors.yml new file mode 100644 index 0000000000..32d8feb017 --- /dev/null +++ b/Resources/Prototypes/CM-SS14/Tiles/floors.yml @@ -0,0 +1,149 @@ +- type: tile + id: AlmayerSteel + name: tile-cm-almayer-steel + sprite: /Textures/CM-SS14/Tiles/almayer_steel.png + baseTurfs: + - Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepFloor + friction: 0.30 + itemDrop: FloorTileItemSteel + thermalConductivity: 0.04 + heatCapacity: 10000 + +- type: tile + id: AlmayerSteelDark + name: tile-cm-almayer-plate-darker + sprite: /Textures/CM-SS14/Tiles/almayer_plate_darker.png + baseTurfs: + - Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepFloor + friction: 0.30 + itemDrop: FloorTileItemSteel + thermalConductivity: 0.04 + heatCapacity: 10000 + +- type: tile + id: AlmayerSteelSterileGreen + name: tile-cm-almayer-sterile-green + sprite: /Textures/CM-SS14/Tiles/almayer_sterile_green.png + baseTurfs: + - Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepFloor + friction: 0.30 + itemDrop: FloorTileItemSteel + thermalConductivity: 0.04 + heatCapacity: 10000 + +- type: tile + id: AlmayerSteelSterileWhite + name: tile-cm-almayer-white-sterile + sprite: /Textures/CM-SS14/Tiles/almayer_white_sterile.png + baseTurfs: + - Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepFloor + friction: 0.30 + itemDrop: FloorTileItemSteel + thermalConductivity: 0.04 + heatCapacity: 10000 + +- type: tile + id: AlmayerWood + name: tile-cm-almayer-wood + sprite: /Textures/CM-SS14/Tiles/almayer_wood.png + baseTurfs: + - Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepFloor + friction: 0.30 + itemDrop: FloorTileItemSteel + thermalConductivity: 0.04 + heatCapacity: 10000 + +- type: tile + id: AlmayerAI + name: tile-cm-almayer-ai-floors + sprite: /Textures/CM-SS14/Tiles/almayer_ai_floors.png + baseTurfs: + - Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepFloor + friction: 0.30 + itemDrop: FloorTileItemSteel + thermalConductivity: 0.04 + heatCapacity: 10000 + +- type: tile + id: AlmayerOuterHull + name: tile-cm-almayer-outerhull + sprite: /Textures/CM-SS14/Tiles/almayer_outerhull.png + baseTurfs: + - Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepFloor + friction: 0.30 + itemDrop: FloorTileItemSteel + thermalConductivity: 0.04 + heatCapacity: 10000 + +- type: tile + id: AlmayerPlating + name: tile-cm-almayer-plating + sprite: /Textures/CM-SS14/Tiles/almayer_plating.png + baseTurfs: + - Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepFloor + friction: 0.30 + itemDrop: FloorTileItemSteel + thermalConductivity: 0.04 + heatCapacity: 10000 + +- type: tile + id: AlmayerPlate + name: tile-cm-almayer-plate + sprite: /Textures/CM-SS14/Tiles/almayer_plate.png + baseTurfs: + - Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepFloor + friction: 0.30 + itemDrop: FloorTileItemSteel + thermalConductivity: 0.04 + heatCapacity: 10000 + +- type: tile + id: AlmayerSteelSterile + name: tile-cm-almayer-sterile + sprite: /Textures/CM-SS14/Tiles/almayer_sterile.png + baseTurfs: + - Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepFloor + friction: 0.30 + itemDrop: FloorTileItemSteel + thermalConductivity: 0.04 + heatCapacity: 10000 diff --git a/Resources/Prototypes/CM-SS14/Voice/speech_sounds.yml b/Resources/Prototypes/CM-SS14/Voice/speech_sounds.yml new file mode 100644 index 0000000000..15d0534f04 --- /dev/null +++ b/Resources/Prototypes/CM-SS14/Voice/speech_sounds.yml @@ -0,0 +1,8 @@ +- type: speechSounds + id: Facehugger + saySound: + path: /Audio/CM-SS14/Mobs/Xenos/Facehuggers/idle.ogg + askSound: + path: /Audio/CM-SS14/Mobs/Xenos/Facehuggers/idle.ogg + exclaimSound: + path: /Audio/CM-SS14/Mobs/Xenos/Facehuggers/idle.ogg diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml index 783d286e17..96a9edaaf2 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml @@ -111,6 +111,20 @@ - type: NoSlip - type: Perishable #Ummmm the acid kills a lot of the bacteria or something molsPerSecondPerUnitMass: 0.0005 + - type: Xeno + - type: Nightvision + enabled: true + tint: 1, 0.90, 0.95 + strength: 16 + noise: 0 + toggle: true + toggleSound: /Audio/CM-SS14/Effects/Items/nightvision.ogg + icon: + sprite: Actions/Implants/implants.rsi + state: explosive + iconOn: + sprite: Actions/Implants/implants.rsi + state: freedom - type: entity name: Praetorian @@ -147,6 +161,7 @@ - MobMask layer: - MobLayer + - type: Xeno - type: entity name: Drone @@ -187,6 +202,7 @@ - MobMask layer: - MobLayer + - type: Xeno - type: entity name: Queen @@ -231,6 +247,7 @@ - MobMask layer: - MobLayer + - type: Xeno - type: entity name: Ravager @@ -275,6 +292,7 @@ - MobMask layer: - MobLayer + - type: Xeno - type: entity name: Runner @@ -316,6 +334,7 @@ - MobMask layer: - MobLayer + - type: Xeno - type: entity name: Rouny @@ -326,6 +345,7 @@ drawdepth: Mobs sprite: Mobs/Aliens/Xenos/rouny.rsi offset: 0,0.6 + - type: Xeno - type: entity name: Spitter @@ -362,6 +382,7 @@ - MobMask layer: - MobLayer + - type: Xeno - type: entity name: space adder @@ -420,6 +441,7 @@ - MobMask layer: - MobLayer + - type: Xeno - type: entity name: space adder @@ -445,3 +467,53 @@ Base: dead_small_purple_snake - type: SolutionTransfer maxTransferAmount: 1 + - type: Xeno + +- type: entity + id: XenoWeeds + parent: BaseStructure + name: "weeds" + description: "Fancy walking surface." + components: + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Physics + canCollide: true + - type: Clickable + - type: Sprite + drawdepth: FloorTiles + netsync: false + sprite: Objects/Misc/kudzu.rsi + state: kudzu_11 + - type: Icon + sprite: Structures/Furniture/Carpets/green_carpet.rsi + - type: XenoWeedss + damage: + groups: + Brute: -5 ## 0.1 per + Burn: -5 + types: + Poison: -2 + - type: Fixtures + fixtures: + - shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.3,0.4,0.3" + id: "slips" + hard: false + layer: + - SlipLayer + - shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.3,0.4,0.3" + density: 10 + mask: + - ItemMask diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index fc0418c4e0..8be5783145 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -107,3 +107,20 @@ stripTimeReduction: 9999 stealthy: true - type: Stripping + - type: Sprite + overrideContainerOcclusion: true # Ghosts always show up regardless of where they're contained. + netsync: false + noRot: true + drawdepth: Ghosts + sprite: SimpleStation14/Mobs/Ghosts/ghost_admin.rsi + state: animated + color: "#888888" + layers: + - state: animated + shader: unshaded + # - type: PointLight + # radius: 4.5 + # energy: 1.25 + - type: BibleUser + - type: Inventory + templateId: aghost diff --git a/Resources/Prototypes/Entities/Mobs/Player/human.yml b/Resources/Prototypes/Entities/Mobs/Player/human.yml index 60f86a10b8..625fabc7a7 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/human.yml @@ -33,6 +33,10 @@ - type: Faction factions: - NanoTrasen + # - type: Nightvision + # tint: 0.3, 0.8, 0.35 + # strength: 7.5 + # noise: 0.35 #Syndie - type: entity diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index 1d40637431..90cebc9e74 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -57,3 +57,4 @@ baseSprintSpeed: 8 baseWalkSpeed: 5 - type: MovementIgnoreGravity + - type: Pullable diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index d49205a2a3..a5f54f8372 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -114,6 +114,9 @@ sprite: Mobs/Customization/masking_helpers.rsi state: female_full visible: false + - map: [ "underpants" ] + - map: [ "undershirt" ] + - map: [ "socks" ] - map: [ "jumpsuit" ] - map: [ "enum.HumanoidVisualLayers.LHand" ] - map: [ "enum.HumanoidVisualLayers.RHand" ] @@ -337,6 +340,9 @@ sprite: Mobs/Customization/masking_helpers.rsi state: female_full visible: false + - map: [ "underpants" ] + - map: [ "undershirt" ] + - map: [ "socks" ] - map: [ "jumpsuit" ] - map: [ "enum.HumanoidVisualLayers.LHand" ] - map: [ "enum.HumanoidVisualLayers.RHand" ] diff --git a/Resources/Prototypes/Entities/Mobs/Species/vox.yml b/Resources/Prototypes/Entities/Mobs/Species/vox.yml index 151a4111de..8b60dc1c43 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/vox.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/vox.yml @@ -41,6 +41,9 @@ # sprite: Mobs/Customization/masking_helpers.rsi # state: female_full # visible: false + - map: [ "underpants" ] + - map: [ "undershirt" ] + - map: [ "socks" ] #- map: [ "jumpsuit" ] # shader: StencilDraw - map: [ "enum.HumanoidVisualLayers.LHand" ] diff --git a/Resources/Prototypes/Entities/Objects/Power/lights.yml b/Resources/Prototypes/Entities/Objects/Power/lights.yml index a0aa6b4330..a1afea7974 100644 --- a/Resources/Prototypes/Entities/Objects/Power/lights.yml +++ b/Resources/Prototypes/Entities/Objects/Power/lights.yml @@ -85,9 +85,9 @@ - type: LightBulb bulb: Bulb color: "#FFD1A3" # 4000K color temp - lightEnergy: 1.0 - lightRadius: 6 - lightSoftness: 1.1 + lightEnergy: 1.2 + lightRadius: 8 + lightSoftness: 0.9 - type: entity parent: BaseLightTube @@ -102,33 +102,33 @@ lightSoftness: 1 PowerUse: 25 -- type: entity - parent: BaseLightTube - name: led light tube - description: A high power high energy bulb. - id: LedLightTube - components: - - type: LightBulb - color: "#EEEEFF" - lightEnergy: 1 - lightRadius: 15 - lightSoftness: 0.9 - BurningTemperature: 350 - PowerUse: 12 +# - type: entity +# parent: BaseLightTube +# name: led light tube +# description: A high power high energy bulb. +# id: LedLightTube +# components: +# - type: LightBulb +# color: "#EEEEFF" +# lightEnergy: 1 +# lightRadius: 15 +# lightSoftness: 0.9 +# BurningTemperature: 350 +# PowerUse: 12 -- type: entity - parent: BaseLightTube - name: exterior light tube - description: A high power high energy bulb for the depths of space. May contain mercury. - id: ExteriorLightTube - components: - - type: LightBulb - color: "#B4FCF0" - lightEnergy: 4.5 - lightRadius: 12 - lightSoftness: 0.5 - BurningTemperature: 350 - PowerUse: 100 +# - type: entity +# parent: BaseLightTube +# name: exterior light tube +# description: A high power high energy bulb for the depths of space. May contain mercury. +# id: ExteriorLightTube +# components: +# - type: LightBulb +# color: "#B4FCF0" +# lightEnergy: 4.5 +# lightRadius: 12 +# lightSoftness: 0.5 +# BurningTemperature: 350 +# PowerUse: 100 - type: entity parent: BaseLightTube @@ -139,7 +139,7 @@ - type: LightBulb color: "#FFAF38" lightEnergy: 4 - lightRadius: 10 - lightSoftness: 0.5 + lightRadius: 12 + lightSoftness: 1 BurningTemperature: 350 - PowerUse: 100 + PowerUse: 140 diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index 044e5b66fc..9b2dd7bd05 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -1,799 +1,757 @@ -# Airlocks -- type: entity - parent: Airlock - id: AirlockServiceLocked - suffix: Service, Locked - components: - - type: AccessReader - access: [["Service"]] - -- type: entity - parent: Airlock - id: AirlockTheatreLocked - suffix: Theatre, Locked - components: - - type: AccessReader - access: [["Theatre"]] - -- type: entity - parent: Airlock - id: AirlockChapelLocked - suffix: Chapel, Locked - components: - - type: AccessReader - access: [["Chapel"]] - -- type: entity - parent: Airlock - id: AirlockJanitorLocked - suffix: Janitor, Locked - components: - - type: AccessReader - access: [["Janitor"]] - -- type: entity - parent: Airlock - id: AirlockKitchenLocked - suffix: Kitchen, Locked - components: - - type: AccessReader - access: [["Kitchen"]] - -- type: entity - parent: Airlock - id: AirlockBarLocked - suffix: Bar, Locked - components: - - type: AccessReader - access: [["Bar"]] - -- type: entity - parent: Airlock - id: AirlockHydroponicsLocked - suffix: Hydroponics, Locked - components: - - type: AccessReader - access: [["Hydroponics"]] - -- type: entity - parent: Airlock - id: AirlockServiceCaptainLocked - suffix: Captain, Locked - components: - - type: AccessReader - access: [["Captain"]] - -- type: entity - parent: AirlockExternal - id: AirlockExternalLocked - suffix: External, Locked - components: - - type: AccessReader - access: [["External"]] - -- type: entity - parent: AirlockExternal - id: AirlockExternalCargoLocked - suffix: External, Cargo, Locked - components: - - type: AccessReader - access: [["Cargo"]] - -- type: entity - parent: AirlockExternal - id: AirlockExternalEngineeringLocked - suffix: External, Engineering, Locked - components: - - type: AccessReader - access: [["Engineering"]] - -- type: entity - parent: AirlockExternal - id: AirlockExternalAtmosphericsLocked - suffix: External, Atmospherics, Locked - components: - - type: AccessReader - access: [["Atmospherics"]] - -- type: entity - parent: AirlockFreezer - id: AirlockFreezerLocked - suffix: Service, Locked - components: - - type: AccessReader - access: [["Kitchen"]] - -- type: entity - parent: AirlockFreezer - id: AirlockFreezerKitchenHydroLocked - suffix: Kitchen/Hydroponics, Locked - components: - - type: AccessReader - access: [["Kitchen"], ["Hydroponics"]] - -- type: entity - parent: AirlockEngineering - id: AirlockEngineeringLocked - suffix: Engineering, Locked - components: - - type: AccessReader - access: [["Engineering"]] - -- type: entity - parent: AirlockAtmospherics - id: AirlockAtmosphericsLocked - suffix: Atmospherics, Locked - components: - - type: AccessReader - access: [["Atmospherics"]] - -- type: entity - parent: AirlockCargo - id: AirlockCargoLocked - suffix: Cargo, Locked - components: - - type: AccessReader - access: [["Cargo"]] - -- type: entity - parent: AirlockCargo - id: AirlockSalvageLocked - suffix: Salvage, Locked - components: - - type: AccessReader - access: [["Salvage"]] - -- type: entity - parent: AirlockCargo - id: AirlockQuartermasterLocked - suffix: Quartermaster, Locked - components: - - type: AccessReader - access: [["Quartermaster"]] - -- type: entity - parent: AirlockMedical - id: AirlockMedicalLocked - suffix: Medical, Locked - components: - - type: AccessReader - access: [["Medical"]] - -- type: entity - parent: AirlockVirology - id: AirlockVirologyLocked - suffix: Virology, Locked - components: - - type: AccessReader - access: [["Medical"]] - -- type: entity - parent: AirlockChemistry - id: AirlockChemistryLocked - suffix: Chemistry, Locked - components: - - type: AccessReader - access: [["Chemistry"]] - -- type: entity - parent: AirlockScience - id: AirlockScienceLocked - suffix: Science, Locked - components: - - type: AccessReader - access: [["Research"]] - -- type: entity - parent: AirlockScience - id: AirlockMedicalScienceLocked - suffix: Medical/Science, Locked - components: - - type: AccessReader - access: [["Research"], ["Medical"]] - -- type: entity - parent: AirlockCommand - id: AirlockCommandLocked - suffix: Command, Locked - components: - - type: AccessReader - access: [["Command"]] - - type: Wires - LayoutId: AirlockCommand - -- type: entity - parent: AirlockCommand - id: AirlockCaptainLocked - suffix: Captain, Locked - components: - - type: AccessReader - access: [["Captain"]] - -- type: entity - parent: AirlockCommand - id: AirlockChiefMedicalOfficerLocked - suffix: ChiefMedicalOfficer, Locked - components: - - type: AccessReader - access: [["ChiefMedicalOfficer"]] - -- type: entity - parent: AirlockCommand - id: AirlockChiefEngineerLocked - suffix: ChiefEngineer, Locked - components: - - type: AccessReader - access: [["ChiefEngineer"]] - -- type: entity - parent: AirlockCommand - id: AirlockHeadOfSecurityLocked - suffix: HeadOfSecurity, Locked - components: - - type: AccessReader - access: [["HeadOfSecurity"]] - -- type: entity - parent: AirlockCommand - id: AirlockResearchDirectorLocked - suffix: ResearchDirector, Locked - components: - - type: AccessReader - access: [["ResearchDirector"]] - -- type: entity - parent: AirlockCommand - id: AirlockHeadOfPersonnelLocked - suffix: HeadOfPersonnel, Locked - components: - - type: AccessReader - access: [["HeadOfPersonnel"]] - -- type: entity - parent: AirlockSecurity - id: AirlockSecurityLocked - suffix: Security, Locked - components: - - type: AccessReader - access: [["Security"]] - - type: Wires - LayoutId: AirlockSecurity - -- type: entity - parent: AirlockSecurity - id: AirlockDetectiveLocked - suffix: Detective, Locked - components: - - type: AccessReader - access: [["Detective"]] - - type: Wires - LayoutId: AirlockSecurity - -- type: entity - parent: AirlockSecurity - id: AirlockBrigLocked - suffix: Brig, Locked - components: - - type: AccessReader - access: [["Brig"]] - - type: Wires - LayoutId: AirlockSecurity - -- type: entity - parent: AirlockSecurity - id: AirlockArmoryLocked - suffix: Armory, Locked - components: - - type: AccessReader - access: [["Armory"]] - - type: Wires - LayoutId: AirlockArmory - -- type: entity - parent: AirlockSecurity - id: AirlockVaultLocked - suffix: Vault, Locked - components: - - type: AccessReader - access: [["Security", "Command"]] - -- type: entity - parent: AirlockCommand - id: AirlockEVALocked - suffix: EVA, Locked - components: - - type: AccessReader - access: [["External"]] - -# Glass Airlocks -- type: entity - parent: AirlockGlass - id: AirlockServiceGlassLocked - suffix: Service, Locked - components: - - type: AccessReader - access: [["Service"]] - -- type: entity - parent: AirlockGlass - id: AirlockBarGlassLocked - suffix: Bar, Locked - components: - - type: AccessReader - access: [["Bar"]] - -- type: entity - parent: AirlockExternalGlass - id: AirlockExternalGlassLocked - suffix: External, Glass, Locked - components: - - type: AccessReader - access: [["External"]] - -- type: entity - parent: AirlockExternalGlass - id: AirlockExternalGlassCargoLocked - suffix: External, Glass, Cargo, Locked - components: - - type: AccessReader - access: [["Cargo"]] - -- type: entity - parent: AirlockExternalGlass - id: AirlockExternalGlassEngineeringLocked - suffix: External, Glass, Engineering, Locked - components: - - type: AccessReader - access: [["Engineering"]] - -- type: entity - parent: AirlockExternalGlass - id: AirlockExternalGlassAtmosphericsLocked - suffix: External, Glass, Atmospherics, Locked - components: - - type: AccessReader - access: [["Atmospherics"]] - -- type: entity - parent: AirlockGlass - id: AirlockKitchenGlassLocked - suffix: Kitchen, Locked - components: - - type: AccessReader - access: [["Kitchen"]] - -- type: entity - parent: AirlockGlass - id: AirlockHydroGlassLocked - suffix: Hydroponics, Locked - components: - - type: AccessReader - access: [["Hydroponics"]] - -- type: entity - parent: AirlockGlass - id: AirlockChapelGlassLocked - suffix: Chapel, Locked - components: - - type: AccessReader - access: [["Chapel"]] - -- type: entity - parent: AirlockEngineeringGlass - id: AirlockEngineeringGlassLocked - suffix: Engineering, Locked - components: - - type: AccessReader - access: [["Engineering"]] - -- type: entity - parent: AirlockAtmosphericsGlass - id: AirlockAtmosphericsGlassLocked - suffix: Atmospherics, Locked - components: - - type: AccessReader - access: [["Atmospherics"]] - -- type: entity - parent: AirlockCargoGlass - id: AirlockCargoGlassLocked - suffix: Cargo, Locked - components: - - type: AccessReader - access: [["Cargo"]] - -- type: entity - parent: AirlockCargoGlass - id: AirlockSalvageGlassLocked - suffix: Salvage, Locked - components: - - type: AccessReader - access: [["Salvage"]] - -- type: entity - parent: AirlockCargoGlass - id: AirlockQuartermasterGlassLocked - suffix: Quartermaster, Locked - components: - - type: AccessReader - access: [["Quartermaster"]] - -- type: entity - parent: AirlockMedicalGlass - id: AirlockMedicalGlassLocked - suffix: Medical, Locked - components: - - type: AccessReader - access: [["Medical"]] - -- type: entity - parent: AirlockVirologyGlass - id: AirlockVirologyGlassLocked - suffix: Virology, Locked - components: - - type: AccessReader - access: [["Medical"]] - -- type: entity - parent: AirlockScienceGlass - id: AirlockScienceGlassLocked - suffix: Science, Locked - components: - - type: AccessReader - access: [["Research"]] - -- type: entity - parent: AirlockScienceGlass - id: AirlockMedicalScienceGlassLocked - suffix: Medical/Science, Locked - components: - - type: AccessReader - access: [["Research"], ["Medical"]] - -- type: entity - parent: AirlockCommandGlass - id: AirlockCommandGlassLocked - suffix: Command, Locked - components: - - type: AccessReader - access: [["Command"]] - -- type: entity - parent: AirlockCommandGlass - id: AirlockCaptainGlassLocked - suffix: Captain, Locked - components: - - type: AccessReader - access: [["Captain"]] - -- type: entity - parent: AirlockCommandGlass - id: AirlockChiefMedicalOfficerGlassLocked - suffix: ChiefMedicalOfficer, Locked - components: - - type: AccessReader - access: [["ChiefMedicalOfficer"]] - -- type: entity - parent: AirlockCommandGlass - id: AirlockChiefEngineerGlassLocked - suffix: ChiefEngineer, Locked - components: - - type: AccessReader - access: [["ChiefEngineer"]] - -- type: entity - parent: AirlockCommandGlass - id: AirlockHeadOfSecurityGlassLocked - suffix: HeadOfSecurity, Locked - components: - - type: AccessReader - access: [["HeadOfSecurity"]] - -- type: entity - parent: AirlockCommandGlass - id: AirlockResearchDirectorGlassLocked - suffix: ResearchDirector, Locked - components: - - type: AccessReader - access: [["ResearchDirector"]] - -- type: entity - parent: AirlockCommandGlass - id: AirlockHeadOfPersonnelGlassLocked - suffix: HeadOfPersonnel, Locked - components: - - type: AccessReader - access: [["HeadOfPersonnel"]] - -- type: entity - parent: AirlockSecurityGlass - id: AirlockSecurityGlassLocked - suffix: Security, Locked - components: - - type: AccessReader - access: [["Security"]] - -- type: entity - parent: AirlockSecurityGlass - id: AirlockDetectiveGlassLocked - suffix: Detective, Locked - components: - - type: AccessReader - access: [["Detective"]] - -- type: entity - parent: AirlockSecurityGlass - id: AirlockBrigGlassLocked - suffix: Brig, Locked - components: - - type: AccessReader - access: [["Brig"]] - -- type: entity - parent: AirlockSecurityGlass - id: AirlockArmoryGlassLocked - suffix: Armory, Locked - components: - - type: AccessReader - access: [["Armory"]] - -- type: entity - parent: AirlockCommandGlassLocked - id: AirlockEVAGlassLocked - suffix: EVA, Locked - components: - - type: AccessReader - access: [["External"]] - -# Maintenance Hatches -- type: entity - parent: AirlockMaint - id: AirlockMaintLocked - suffix: Locked - components: - - type: AccessReader - access: [["Maintenance"]] - -- type: entity - parent: AirlockMaintGlass - id: AirlockMaintGlassLocked - suffix: Locked - components: - - type: AccessReader - access: [["Maintenance"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintSalvageLocked - suffix: Salvage, Locked - components: - - type: AccessReader - access: [["Salvage"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintCargoLocked - suffix: Cargo, Locked - components: - - type: AccessReader - access: [["Cargo"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintCommandLocked - suffix: Command, Locked - components: - - type: AccessReader - access: [["Command"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintCommonLocked - suffix: Common, Locked - components: - - type: AccessReader - access: [["Maintenance"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintEngiLocked - suffix: Engineering, Locked - components: - - type: AccessReader - access: [["Engineering"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintAtmoLocked - suffix: Atmospherics, Locked - components: - - type: AccessReader - access: [["Atmospherics"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintBarLocked - suffix: Bar, Locked - components: - - type: AccessReader - access: [["Bar"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintChapelLocked - suffix: Chapel, Locked - components: - - type: AccessReader - access: [["Chapel"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintHydroLocked - suffix: Hydroponics, Locked - components: - - type: AccessReader - access: [["Hydroponics"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintJanitorLocked - suffix: Janitor, Locked - components: - - type: AccessReader - access: [["Janitor"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintTheatreLocked - suffix: Theatre, Locked - components: - - type: AccessReader - access: [["Theatre"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintKitchenLocked - suffix: Kitchen, Locked - components: - - type: AccessReader - access: [["Kitchen"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintIntLocked - suffix: Interior, Locked - components: - - type: AccessReader - access: [["Maintenance"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintMedLocked - suffix: Medical, Locked - components: - - type: AccessReader - access: [["Medical"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintChemLocked - suffix: Chemistry, Locked - components: - - type: AccessReader - access: [["Chemistry"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintRnDLocked - suffix: Science, Locked - components: - - type: AccessReader - access: [["Research"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintRnDMedLocked - suffix: Medical/Science, Locked - components: - - type: AccessReader - access: [["Research"], ["Medical"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintSecLocked - suffix: Security, Locked - components: - - type: AccessReader - access: [["Security"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintDetectiveLocked - suffix: Detective, Locked - components: - - type: AccessReader - access: [["Detective"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintHOPLocked - suffix: HeadOfPersonnel, Locked - components: - - type: AccessReader - access: [["HeadOfPersonnel"]] - -- type: entity - parent: AirlockMaint - id: AirlockMaintCaptainLocked - suffix: Captain, Locked - components: - - type: AccessReader - access: [["Captain"]] - -# Shuttle airlocks -- type: entity - parent: AirlockShuttle - id: AirlockExternalShuttleLocked - suffix: External, Docking, Locked - components: - - type: AccessReader - access: [["External"]] - -- type: entity - parent: AirlockGlassShuttle - id: AirlockExternalGlassShuttleLocked - suffix: External, Glass, Docking, Locked - components: - - type: AccessReader - access: [["External"]] - -- type: entity - parent: AirlockGlassShuttle - id: AirlockExternalGlassShuttleEmergencyLocked - suffix: External, Emergency, Glass, Docking, Locked - components: - - type: PriorityDock - tag: DockEmergency - - type: AccessReader - access: [["External"]] - -- type: entity - parent: AirlockGlassShuttle - id: AirlockExternalGlassShuttleArrivals - suffix: External, Arrivals, Glass, Docking - components: - - type: PriorityDock - tag: DockArrivals - -- type: entity - parent: AirlockGlassShuttle - id: AirlockExternalGlassShuttleEscape - suffix: External, Escape 3x4, Glass, Docking - components: - - type: GridFill - -#HighSecDoors -- type: entity - parent: HighSecDoor - id: HighSecCommandLocked - suffix: Command, Locked - components: - - type: AccessReader - access: [["Command"]] - -- type: entity - parent: HighSecDoor - id: HighSecCaptainLocked - suffix: Captain, Locked - components: - - type: AccessReader - access: [["Captain"]] - -- type: entity - parent: HighSecDoor - id: HighSecArmoryLocked - suffix: Armory, Locked - components: - - type: AccessReader - access: [["Armory"]] +# # Airlocks +# - type: entity +# parent: Airlock +# id: AirlockServiceLocked +# suffix: Service, Locked +# components: +# - type: AccessReader +# access: [["Service"]] + +# - type: entity +# parent: Airlock +# id: AirlockTheatreLocked +# suffix: Theatre, Locked +# components: +# - type: AccessReader +# access: [["Theatre"]] + +# - type: entity +# parent: Airlock +# id: AirlockChapelLocked +# suffix: Chapel, Locked +# components: +# - type: AccessReader +# access: [["Chapel"]] + +# - type: entity +# parent: Airlock +# id: AirlockJanitorLocked +# suffix: Janitor, Locked +# components: +# - type: AccessReader +# access: [["Janitor"]] + +# - type: entity +# parent: Airlock +# id: AirlockKitchenLocked +# suffix: Kitchen, Locked +# components: +# - type: AccessReader +# access: [["Kitchen"]] + +# - type: entity +# parent: Airlock +# id: AirlockBarLocked +# suffix: Bar, Locked +# components: +# - type: AccessReader +# access: [["Bar"]] + +# - type: entity +# parent: Airlock +# id: AirlockHydroponicsLocked +# suffix: Hydroponics, Locked +# components: +# - type: AccessReader +# access: [["Hydroponics"]] + +# - type: entity +# parent: Airlock +# id: AirlockServiceCaptainLocked +# suffix: Captain, Locked +# components: +# - type: AccessReader +# access: [["Captain"]] + +# - type: entity +# parent: AirlockExternal +# id: AirlockExternalLocked +# suffix: External, Locked +# components: +# - type: AccessReader +# access: [["External"]] + +# - type: entity +# parent: AirlockExternal +# id: AirlockExternalCargoLocked +# suffix: External, Cargo, Locked +# components: +# - type: AccessReader +# access: [["Cargo"]] + +# - type: entity +# parent: AirlockExternal +# id: AirlockExternalEngineeringLocked +# suffix: External, Engineering, Locked +# components: +# - type: AccessReader +# access: [["Engineering"]] + +# - type: entity +# parent: AirlockExternal +# id: AirlockExternalAtmosphericsLocked +# suffix: External, Atmospherics, Locked +# components: +# - type: AccessReader +# access: [["Atmospherics"]] + +# - type: entity +# parent: AirlockFreezer +# id: AirlockFreezerLocked +# suffix: Service, Locked +# components: +# - type: AccessReader +# access: [["Kitchen"]] + +# - type: entity +# parent: AirlockFreezer +# id: AirlockFreezerKitchenHydroLocked +# suffix: Kitchen/Hydroponics, Locked +# components: +# - type: AccessReader +# access: [["Kitchen"], ["Hydroponics"]] + +# - type: entity +# parent: AirlockEngineering +# id: AirlockEngineeringLocked +# suffix: Engineering, Locked +# components: +# - type: AccessReader +# access: [["Engineering"]] + +# - type: entity +# parent: AirlockAtmospherics +# id: AirlockAtmosphericsLocked +# suffix: Atmospherics, Locked +# components: +# - type: AccessReader +# access: [["Atmospherics"]] + +# - type: entity +# parent: AirlockCargo +# id: AirlockCargoLocked +# suffix: Cargo, Locked +# components: +# - type: AccessReader +# access: [["Cargo"]] + +# - type: entity +# parent: AirlockCargo +# id: AirlockSalvageLocked +# suffix: Salvage, Locked +# components: +# - type: AccessReader +# access: [["Salvage"]] + +# - type: entity +# parent: AirlockCargo +# id: AirlockQuartermasterLocked +# suffix: Quartermaster, Locked +# components: +# - type: AccessReader +# access: [["Quartermaster"]] + +# - type: entity +# parent: AirlockMedical +# id: AirlockMedicalLocked +# suffix: Medical, Locked +# components: +# - type: AccessReader +# access: [["Medical"]] + +# - type: entity +# parent: AirlockVirology +# id: AirlockVirologyLocked +# suffix: Virology, Locked +# components: +# - type: AccessReader +# access: [["Medical"]] + +# - type: entity +# parent: AirlockChemistry +# id: AirlockChemistryLocked +# suffix: Chemistry, Locked +# components: +# - type: AccessReader +# access: [["Chemistry"]] + +# - type: entity +# parent: AirlockScience +# id: AirlockScienceLocked +# suffix: Science, Locked +# components: +# - type: AccessReader +# access: [["Research"]] + +# - type: entity +# parent: AirlockScience +# id: AirlockMedicalScienceLocked +# suffix: Medical/Science, Locked +# components: +# - type: AccessReader +# access: [["Research"], ["Medical"]] + +# - type: entity +# parent: AirlockCommand +# id: AirlockCommandLocked +# suffix: Command, Locked +# components: +# - type: AccessReader +# access: [["Command"]] +# - type: Wires +# LayoutId: AirlockCommand + +# - type: entity +# parent: AirlockCommand +# id: AirlockCaptainLocked +# suffix: Captain, Locked +# components: +# - type: AccessReader +# access: [["Captain"]] + +# - type: entity +# parent: AirlockCommand +# id: AirlockChiefMedicalOfficerLocked +# suffix: ChiefMedicalOfficer, Locked +# components: +# - type: AccessReader +# access: [["ChiefMedicalOfficer"]] + +# - type: entity +# parent: AirlockCommand +# id: AirlockChiefEngineerLocked +# suffix: ChiefEngineer, Locked +# components: +# - type: AccessReader +# access: [["ChiefEngineer"]] + +# - type: entity +# parent: AirlockCommand +# id: AirlockHeadOfSecurityLocked +# suffix: HeadOfSecurity, Locked +# components: +# - type: AccessReader +# access: [["HeadOfSecurity"]] + +# - type: entity +# parent: AirlockCommand +# id: AirlockResearchDirectorLocked +# suffix: ResearchDirector, Locked +# components: +# - type: AccessReader +# access: [["ResearchDirector"]] + +# - type: entity +# parent: AirlockCommand +# id: AirlockHeadOfPersonnelLocked +# suffix: HeadOfPersonnel, Locked +# components: +# - type: AccessReader +# access: [["HeadOfPersonnel"]] + +# - type: entity +# parent: AirlockSecurity +# id: AirlockSecurityLocked +# suffix: Security, Locked +# components: +# - type: AccessReader +# access: [["Security"]] +# - type: Wires +# LayoutId: AirlockSecurity + +# - type: entity +# parent: AirlockSecurity +# id: AirlockBrigLocked +# suffix: Brig, Locked +# components: +# - type: AccessReader +# access: [["Brig"]] +# - type: Wires +# LayoutId: AirlockSecurity + +# - type: entity +# parent: AirlockSecurity +# id: AirlockArmoryLocked +# suffix: Armory, Locked +# components: +# - type: AccessReader +# access: [["Armory"]] +# - type: Wires +# LayoutId: AirlockArmory + +# - type: entity +# parent: AirlockSecurity +# id: AirlockVaultLocked +# suffix: Vault, Locked +# components: +# - type: AccessReader +# access: [["Security", "Command"]] + +# - type: entity +# parent: AirlockCommand +# id: AirlockEVALocked +# suffix: EVA, Locked +# components: +# - type: AccessReader +# access: [["External"]] + +# # Glass Airlocks +# - type: entity +# parent: AirlockGlass +# id: AirlockServiceGlassLocked +# suffix: Service, Locked +# components: +# - type: AccessReader +# access: [["Service"]] + +# - type: entity +# parent: AirlockGlass +# id: AirlockBarGlassLocked +# suffix: Bar, Locked +# components: +# - type: AccessReader +# access: [["Bar"]] + +# - type: entity +# parent: AirlockExternalGlass +# id: AirlockExternalGlassLocked +# suffix: External, Glass, Locked +# components: +# - type: AccessReader +# access: [["External"]] + +# - type: entity +# parent: AirlockExternalGlass +# id: AirlockExternalGlassCargoLocked +# suffix: External, Glass, Cargo, Locked +# components: +# - type: AccessReader +# access: [["Cargo"]] + +# - type: entity +# parent: AirlockExternalGlass +# id: AirlockExternalGlassEngineeringLocked +# suffix: External, Glass, Engineering, Locked +# components: +# - type: AccessReader +# access: [["Engineering"]] + +# - type: entity +# parent: AirlockExternalGlass +# id: AirlockExternalGlassAtmosphericsLocked +# suffix: External, Glass, Atmospherics, Locked +# components: +# - type: AccessReader +# access: [["Atmospherics"]] + +# - type: entity +# parent: AirlockGlass +# id: AirlockKitchenGlassLocked +# suffix: Kitchen, Locked +# components: +# - type: AccessReader +# access: [["Kitchen"]] + +# - type: entity +# parent: AirlockGlass +# id: AirlockHydroGlassLocked +# suffix: Hydroponics, Locked +# components: +# - type: AccessReader +# access: [["Hydroponics"]] + +# - type: entity +# parent: AirlockGlass +# id: AirlockChapelGlassLocked +# suffix: Chapel, Locked +# components: +# - type: AccessReader +# access: [["Chapel"]] + +# - type: entity +# parent: AirlockEngineeringGlass +# id: AirlockEngineeringGlassLocked +# suffix: Engineering, Locked +# components: +# - type: AccessReader +# access: [["Engineering"]] + +# - type: entity +# parent: AirlockAtmosphericsGlass +# id: AirlockAtmosphericsGlassLocked +# suffix: Atmospherics, Locked +# components: +# - type: AccessReader +# access: [["Atmospherics"]] + +# - type: entity +# parent: AirlockCargoGlass +# id: AirlockCargoGlassLocked +# suffix: Cargo, Locked +# components: +# - type: AccessReader +# access: [["Cargo"]] + +# - type: entity +# parent: AirlockCargoGlass +# id: AirlockSalvageGlassLocked +# suffix: Salvage, Locked +# components: +# - type: AccessReader +# access: [["Salvage"]] + +# - type: entity +# parent: AirlockCargoGlass +# id: AirlockQuartermasterGlassLocked +# suffix: Quartermaster, Locked +# components: +# - type: AccessReader +# access: [["Quartermaster"]] + +# - type: entity +# parent: AirlockMedicalGlass +# id: AirlockMedicalGlassLocked +# suffix: Medical, Locked +# components: +# - type: AccessReader +# access: [["Medical"]] + +# - type: entity +# parent: AirlockVirologyGlass +# id: AirlockVirologyGlassLocked +# suffix: Virology, Locked +# components: +# - type: AccessReader +# access: [["Medical"]] + +# - type: entity +# parent: AirlockScienceGlass +# id: AirlockScienceGlassLocked +# suffix: Science, Locked +# components: +# - type: AccessReader +# access: [["Research"]] + +# - type: entity +# parent: AirlockScienceGlass +# id: AirlockMedicalScienceGlassLocked +# suffix: Medical/Science, Locked +# components: +# - type: AccessReader +# access: [["Research"], ["Medical"]] + +# - type: entity +# parent: AirlockCommandGlass +# id: AirlockCommandGlassLocked +# suffix: Command, Locked +# components: +# - type: AccessReader +# access: [["Command"]] + +# - type: entity +# parent: AirlockCommandGlass +# id: AirlockCaptainGlassLocked +# suffix: Captain, Locked +# components: +# - type: AccessReader +# access: [["Captain"]] + +# - type: entity +# parent: AirlockCommandGlass +# id: AirlockChiefMedicalOfficerGlassLocked +# suffix: ChiefMedicalOfficer, Locked +# components: +# - type: AccessReader +# access: [["ChiefMedicalOfficer"]] + +# - type: entity +# parent: AirlockCommandGlass +# id: AirlockChiefEngineerGlassLocked +# suffix: ChiefEngineer, Locked +# components: +# - type: AccessReader +# access: [["ChiefEngineer"]] + +# - type: entity +# parent: AirlockCommandGlass +# id: AirlockHeadOfSecurityGlassLocked +# suffix: HeadOfSecurity, Locked +# components: +# - type: AccessReader +# access: [["HeadOfSecurity"]] + +# - type: entity +# parent: AirlockCommandGlass +# id: AirlockResearchDirectorGlassLocked +# suffix: ResearchDirector, Locked +# components: +# - type: AccessReader +# access: [["ResearchDirector"]] + +# - type: entity +# parent: AirlockCommandGlass +# id: AirlockHeadOfPersonnelGlassLocked +# suffix: HeadOfPersonnel, Locked +# components: +# - type: AccessReader +# access: [["HeadOfPersonnel"]] + +# - type: entity +# parent: AirlockSecurityGlass +# id: AirlockSecurityGlassLocked +# suffix: Security, Locked +# components: +# - type: AccessReader +# access: [["Security"]] + +# - type: entity +# parent: AirlockSecurityGlass +# id: AirlockBrigGlassLocked +# suffix: Brig, Locked +# components: +# - type: AccessReader +# access: [["Brig"]] + +# - type: entity +# parent: AirlockSecurityGlass +# id: AirlockArmoryGlassLocked +# suffix: Armory, Locked +# components: +# - type: AccessReader +# access: [["Armory"]] + +# - type: entity +# parent: AirlockCommandGlassLocked +# id: AirlockEVAGlassLocked +# suffix: EVA, Locked +# components: +# - type: AccessReader +# access: [["External"]] + +# # Maintenance Hatches +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintLocked +# suffix: Locked +# components: +# - type: AccessReader +# access: [["Maintenance"]] + +# - type: entity +# parent: AirlockMaintGlass +# id: AirlockMaintGlassLocked +# suffix: Locked +# components: +# - type: AccessReader +# access: [["Maintenance"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintSalvageLocked +# suffix: Salvage, Locked +# components: +# - type: AccessReader +# access: [["Salvage"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintCargoLocked +# suffix: Cargo, Locked +# components: +# - type: AccessReader +# access: [["Cargo"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintCommandLocked +# suffix: Command, Locked +# components: +# - type: AccessReader +# access: [["Command"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintCommonLocked +# suffix: Common, Locked +# components: +# - type: AccessReader +# access: [["Maintenance"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintEngiLocked +# suffix: Engineering, Locked +# components: +# - type: AccessReader +# access: [["Engineering"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintAtmoLocked +# suffix: Atmospherics, Locked +# components: +# - type: AccessReader +# access: [["Atmospherics"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintBarLocked +# suffix: Bar, Locked +# components: +# - type: AccessReader +# access: [["Bar"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintChapelLocked +# suffix: Chapel, Locked +# components: +# - type: AccessReader +# access: [["Chapel"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintHydroLocked +# suffix: Hydroponics, Locked +# components: +# - type: AccessReader +# access: [["Hydroponics"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintJanitorLocked +# suffix: Janitor, Locked +# components: +# - type: AccessReader +# access: [["Janitor"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintTheatreLocked +# suffix: Theatre, Locked +# components: +# - type: AccessReader +# access: [["Theatre"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintKitchenLocked +# suffix: Kitchen, Locked +# components: +# - type: AccessReader +# access: [["Kitchen"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintIntLocked +# suffix: Interior, Locked +# components: +# - type: AccessReader +# access: [["Maintenance"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintMedLocked +# suffix: Medical, Locked +# components: +# - type: AccessReader +# access: [["Medical"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintChemLocked +# suffix: Chemistry, Locked +# components: +# - type: AccessReader +# access: [["Chemistry"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintRnDLocked +# suffix: Science, Locked +# components: +# - type: AccessReader +# access: [["Research"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintRnDMedLocked +# suffix: Medical/Science, Locked +# components: +# - type: AccessReader +# access: [["Research"], ["Medical"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintSecLocked +# suffix: Security, Locked +# components: +# - type: AccessReader +# access: [["Security"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintHOPLocked +# suffix: HeadOfPersonnel, Locked +# components: +# - type: AccessReader +# access: [["HeadOfPersonnel"]] + +# - type: entity +# parent: AirlockMaint +# id: AirlockMaintCaptainLocked +# suffix: Captain, Locked +# components: +# - type: AccessReader +# access: [["Captain"]] + +# # Shuttle airlocks +# - type: entity +# parent: AirlockShuttle +# id: AirlockExternalShuttleLocked +# suffix: External, Docking, Locked +# components: +# - type: AccessReader +# access: [["External"]] + +# - type: entity +# parent: AirlockGlassShuttle +# id: AirlockExternalGlassShuttleLocked +# suffix: External, Glass, Docking, Locked +# components: +# - type: AccessReader +# access: [["External"]] + +# - type: entity +# parent: AirlockGlassShuttle +# id: AirlockExternalGlassShuttleEmergencyLocked +# suffix: External, Emergency, Glass, Docking, Locked +# components: +# - type: EmergencyDock +# - type: AccessReader +# access: [["External"]] + +# #HighSecDoors +# - type: entity +# parent: HighSecDoor +# id: HighSecCommandLocked +# suffix: Command, Locked +# components: +# - type: AccessReader +# access: [["Command"]] + +# - type: entity +# parent: HighSecDoor +# id: HighSecCaptainLocked +# suffix: Captain, Locked +# components: +# - type: AccessReader +# access: [["Captain"]] + +# - type: entity +# parent: HighSecDoor +# id: HighSecArmoryLocked +# suffix: Armory, Locked +# components: +# - type: AccessReader +# access: [["Armory"]] diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml index 6d7324edf7..d96eef618d 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml @@ -1,34 +1,18 @@ - type: entity parent: Airlock - id: AirlockFreezer - suffix: Freezer - components: - - type: Sprite - sprite: Structures/Doors/Airlocks/Standard/freezer.rsi - -- type: entity - parent: Airlock - id: AirlockEngineering - suffix: Engineering - components: - - type: Sprite - sprite: Structures/Doors/Airlocks/Standard/engineering.rsi - -- type: entity - parent: Airlock - id: AirlockAtmospherics - suffix: Atmospherics + id: AirlockCommand + suffix: Command components: - type: Sprite - sprite: Structures/Doors/Airlocks/Standard/atmospherics.rsi + sprite: Structures/Doors/Airlocks/Standard/command.rsi - type: entity parent: Airlock - id: AirlockCargo - suffix: Cargo + id: AirlockPersonal + suffix: Personal components: - type: Sprite - sprite: Structures/Doors/Airlocks/Standard/cargo.rsi + sprite: Structures/Doors/Airlocks/Standard/personal.rsi - type: entity parent: Airlock @@ -40,51 +24,43 @@ - type: entity parent: Airlock - id: AirlockVirology - suffix: Virology + id: AirlockPod + suffix: Pod components: - type: Sprite - sprite: Structures/Doors/Airlocks/Standard/virology.rsi + sprite: Structures/Doors/Airlocks/Standard/pod_door.rsi - type: entity parent: Airlock - id: AirlockChemistry - suffix: Chemistry - components: - - type: Sprite - sprite: Structures/Doors/Airlocks/Standard/medical.rsi - -- type: entity - parent: Airlock - id: AirlockScience - suffix: Science + id: AirlockMaintenance + suffix: Maintenance components: - type: Sprite - sprite: Structures/Doors/Airlocks/Standard/science.rsi + sprite: Structures/Doors/Airlocks/Standard/maint.rsi - type: entity parent: Airlock - id: AirlockCommand - suffix: Command + id: AirlockSecurity + suffix: Security components: - type: Sprite - sprite: Structures/Doors/Airlocks/Standard/command.rsi + sprite: Structures/Doors/Airlocks/Standard/security.rsi - type: entity parent: Airlock - id: AirlockSecurity - suffix: Security + id: AirlockEngineering + suffix: Engineering components: - type: Sprite - sprite: Structures/Doors/Airlocks/Standard/security.rsi + sprite: Structures/Doors/Airlocks/Standard/engineering.rsi - type: entity parent: Airlock - id: AirlockMaint - name: maintenance hatch + id: AirlockCell + suffix: Cell components: - type: Sprite - sprite: Structures/Doors/Airlocks/Standard/maint.rsi + sprite: Structures/Doors/Airlocks/Standard/celldoor.rsi # Glass @@ -92,6 +68,7 @@ id: AirlockGlass parent: Airlock name: glass airlock + abstract: true components: - type: MeleeSound soundGroups: @@ -103,7 +80,7 @@ - type: Occluder enabled: false - type: Sprite - sprite: Structures/Doors/Airlocks/Glass/glass.rsi + sprite: Structures/Doors/Airlocks/Glass/alpha_prep.rsi - type: Fixtures fixtures: - shape: @@ -127,90 +104,81 @@ - type: entity parent: AirlockGlass - id: AirlockEngineeringGlass - suffix: Engineering + id: AirlockGlassAlpha + suffix: AlphaTeam components: - type: Sprite - sprite: Structures/Doors/Airlocks/Glass/engineering.rsi + sprite: Structures/Doors/Airlocks/Glass/alpha_prep.rsi - type: PaintableAirlock group: Glass - type: entity parent: AirlockGlass - id: AirlockMaintGlass - suffix: Maintenance + id: AirlockGlassBravo + suffix: BravoTeam components: - type: Sprite - sprite: Structures/Doors/Airlocks/Glass/maint.rsi + sprite: Structures/Doors/Airlocks/Glass/charlie_prep.rsi - type: PaintableAirlock group: Glass - type: entity parent: AirlockGlass - id: AirlockAtmosphericsGlass - suffix: Atmospherics + id: AirlockGlassCharlie + suffix: CharlieTeam components: - type: Sprite - sprite: Structures/Doors/Airlocks/Glass/atmospherics.rsi + sprite: Structures/Doors/Airlocks/Glass/bravo_prep.rsi - type: PaintableAirlock group: Glass - type: entity parent: AirlockGlass - id: AirlockCargoGlass - suffix: Cargo + id: AirlockGlassDelta + suffix: DeltaTeam components: - type: Sprite - sprite: Structures/Doors/Airlocks/Glass/cargo.rsi + sprite: Structures/Doors/Airlocks/Glass/delta_prep.rsi - type: PaintableAirlock group: Glass - type: entity parent: AirlockGlass - id: AirlockMedicalGlass - suffix: Medical + id: AirlockGlassEngineering + suffix: Engineering components: - type: Sprite - sprite: Structures/Doors/Airlocks/Glass/medical.rsi + sprite: Structures/Doors/Airlocks/Glass/engi_glass.rsi - type: PaintableAirlock group: Glass - type: entity parent: AirlockGlass - id: AirlockVirologyGlass - suffix: Virology + id: AirlockGlassSecurity + suffix: Security components: - type: Sprite - sprite: Structures/Doors/Airlocks/Glass/virology.rsi + sprite: Structures/Doors/Airlocks/Glass/security_glass.rsi - type: PaintableAirlock group: Glass - type: entity parent: AirlockGlass - id: AirlockScienceGlass - suffix: Science + id: AirlockGlassPersonal + suffix: Personal components: - type: Sprite - sprite: Structures/Doors/Airlocks/Glass/science.rsi + sprite: Structures/Doors/Airlocks/Glass/personal_glass.rsi - type: PaintableAirlock group: Glass - type: entity parent: AirlockGlass - id: AirlockCommandGlass - suffix: Command + id: AirlockGlassMedical + suffix: Medical components: - type: Sprite - sprite: Structures/Doors/Airlocks/Glass/command.rsi + sprite: Structures/Doors/Airlocks/Glass/medical_glass.rsi - type: PaintableAirlock group: Glass -- type: entity - parent: AirlockGlass - id: AirlockSecurityGlass - suffix: Security - components: - - type: Sprite - sprite: Structures/Doors/Airlocks/Glass/security.rsi - - type: PaintableAirlock - group: Glass diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml index 3faee4b4be..667a7f3071 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/assembly.yml @@ -7,7 +7,7 @@ - type: InteractionOutline - type: Sprite netsync: false - sprite: Structures/Doors/Airlocks/Standard/basic.rsi + sprite: Structures/Doors/Airlocks/Standard/celldoor.rsi state: "assembly" - type: Physics - type: Fixtures diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml index 97a4023a01..db3061875a 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml @@ -4,6 +4,9 @@ name: airlock description: It opens, it closes, and maybe crushes you. components: + - type: Tag + tags: + - ForceNoFixRotations - type: MeleeSound soundGroups: Brute: @@ -12,8 +15,7 @@ - type: InteractionOutline - type: Sprite netsync: false - sprite: Structures/Doors/Airlocks/Standard/basic.rsi - snapCardinals: true + sprite: Structures/Doors/Airlocks/Standard/celldoor.rsi layers: - state: closed map: ["enum.DoorVisualLayers.Base"] diff --git a/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml b/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml index 4b6b5cf46a..a512d5c1ef 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/airlock_groups.yml @@ -1,58 +1,58 @@ -- type: AirlockGroup - id: Standard - iconPriority: 100 - stylePaths: - basic: Structures/Doors/Airlocks/Standard/basic.rsi - cargo: Structures/Doors/Airlocks/Standard/cargo.rsi - command: Structures/Doors/Airlocks/Standard/command.rsi - engineering: Structures/Doors/Airlocks/Standard/engineering.rsi - freezer: Structures/Doors/Airlocks/Standard/freezer.rsi - maintenance: Structures/Doors/Airlocks/Standard/maint.rsi - medical: Structures/Doors/Airlocks/Standard/medical.rsi - science: Structures/Doors/Airlocks/Standard/science.rsi - security: Structures/Doors/Airlocks/Standard/security.rsi - virology: Structures/Doors/Airlocks/Standard/virology.rsi +# - type: AirlockGroup +# id: Standard +# iconPriority: 100 +# stylePaths: +# basic: Structures/Doors/Airlocks/Standard/basic.rsi +# cargo: Structures/Doors/Airlocks/Standard/cargo.rsi +# command: Structures/Doors/Airlocks/Standard/command.rsi +# engineering: Structures/Doors/Airlocks/Standard/engineering.rsi +# freezer: Structures/Doors/Airlocks/Standard/freezer.rsi +# maintenance: Structures/Doors/Airlocks/Standard/maint.rsi +# medical: Structures/Doors/Airlocks/Standard/medical.rsi +# science: Structures/Doors/Airlocks/Standard/science.rsi +# security: Structures/Doors/Airlocks/Standard/security.rsi +# virology: Structures/Doors/Airlocks/Standard/virology.rsi -- type: AirlockGroup - id: Glass - iconPriority: 90 - stylePaths: - basic: Structures/Doors/Airlocks/Glass/basic.rsi - command: Structures/Doors/Airlocks/Glass/command.rsi - science: Structures/Doors/Airlocks/Glass/science.rsi - cargo: Structures/Doors/Airlocks/Glass/cargo.rsi - engineering: Structures/Doors/Airlocks/Glass/engineering.rsi - maintenance: Structures/Doors/Airlocks/Glass/maint.rsi - medical: Structures/Doors/Airlocks/Glass/medical.rsi - security: Structures/Doors/Airlocks/Glass/security.rsi - virology: Structures/Doors/Airlocks/Glass/virology.rsi +# - type: AirlockGroup +# id: Glass +# iconPriority: 90 +# stylePaths: +# basic: Structures/Doors/Airlocks/Glass/basic.rsi +# command: Structures/Doors/Airlocks/Glass/command.rsi +# science: Structures/Doors/Airlocks/Glass/science.rsi +# cargo: Structures/Doors/Airlocks/Glass/cargo.rsi +# engineering: Structures/Doors/Airlocks/Glass/engineering.rsi +# maintenance: Structures/Doors/Airlocks/Glass/maint.rsi +# medical: Structures/Doors/Airlocks/Glass/medical.rsi +# security: Structures/Doors/Airlocks/Glass/security.rsi +# virology: Structures/Doors/Airlocks/Glass/virology.rsi -- type: AirlockGroup - id: Windoor - iconPriority: 80 - stylePaths: - basic: Structures/Doors/Airlocks/Glass/glass.rsi +# - type: AirlockGroup +# id: Windoor +# iconPriority: 80 +# stylePaths: +# basic: Structures/Doors/Airlocks/Glass/glass.rsi -- type: AirlockGroup - id: External - iconPriority: 70 - stylePaths: - external: Structures/Doors/Airlocks/Standard/external.rsi +# - type: AirlockGroup +# id: External +# iconPriority: 70 +# stylePaths: +# external: Structures/Doors/Airlocks/Standard/external.rsi -- type: AirlockGroup - id: ExternalGlass - iconPriority: 60 - stylePaths: - external: Structures/Doors/Airlocks/Glass/external.rsi +# - type: AirlockGroup +# id: ExternalGlass +# iconPriority: 60 +# stylePaths: +# external: Structures/Doors/Airlocks/Glass/external.rsi -- type: AirlockGroup - id: Shuttle - iconPriority: 50 - stylePaths: - shuttle: Structures/Doors/Airlocks/Standard/shuttle.rsi +# - type: AirlockGroup +# id: Shuttle +# iconPriority: 50 +# stylePaths: +# shuttle: Structures/Doors/Airlocks/Standard/shuttle.rsi -- type: AirlockGroup - id: ShuttleGlass - iconPriority: 40 - stylePaths: - shuttle: Structures/Doors/Airlocks/Glass/shuttle.rsi +# - type: AirlockGroup +# id: ShuttleGlass +# iconPriority: 40 +# stylePaths: +# shuttle: Structures/Doors/Airlocks/Glass/shuttle.rsi diff --git a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml index 6d5c038811..68ed3c65f9 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml @@ -5,6 +5,7 @@ #Basic lights - type: entity + abstract: true id: AlwaysPoweredWallLight name: light description: "An always powered light." @@ -64,6 +65,7 @@ - Wallmount - type: entity + abstract: true name: light description: "A light fixture. Draws power and produces light when equipped with a light tube." id: PoweredlightEmpty @@ -100,6 +102,7 @@ Toggle: [] - type: entity + abstract: true id: Poweredlight description: "A light fixture. Draws power and produces light when equipped with a light tube." suffix: "" @@ -113,53 +116,53 @@ types: Heat: 5 -#LED lights -- type: entity - id: PoweredlightLED - description: "A light fixture. Draws power and produces light when equipped with a light tube." - suffix: LED - parent: Poweredlight - components: - - type: PoweredLight - hasLampOnSpawn: LedLightTube - damage: - types: - Heat: 5 +# #LED lights +# - type: entity +# id: PoweredlightLED +# description: "A light fixture. Draws power and produces light when equipped with a light tube." +# suffix: LED +# parent: Poweredlight +# components: +# - type: PoweredLight +# hasLampOnSpawn: LedLightTube +# damage: +# types: +# Heat: 5 -- type: entity - parent: AlwaysPoweredWallLight - id: AlwaysPoweredLightLED - suffix: Always Powered, LED - components: - - type: PointLight - radius: 10 - energy: 2.5 - softness: 0.9 - color: "#EEEEFF" +# - type: entity +# parent: AlwaysPoweredWallLight +# id: AlwaysPoweredLightLED +# suffix: Always Powered, LED +# components: +# - type: PointLight +# radius: 10 +# energy: 2.5 +# softness: 0.9 +# color: "#EEEEFF" -#Exterior lights -- type: entity - id: PoweredlightExterior - description: "A light fixture. Draws power and produces light when equipped with a light tube." - suffix: Blue - parent: Poweredlight - components: - - type: PoweredLight - hasLampOnSpawn: ExteriorLightTube - damage: - types: - Heat: 5 +# #Exterior lights +# - type: entity +# id: PoweredlightExterior +# description: "A light fixture. Draws power and produces light when equipped with a light tube." +# suffix: Blue +# parent: Poweredlight +# components: +# - type: PoweredLight +# hasLampOnSpawn: ExteriorLightTube +# damage: +# types: +# Heat: 5 -- type: entity - parent: AlwaysPoweredWallLight - id: AlwaysPoweredLightExterior - suffix: Always Powered, Blue - components: - - type: PointLight - radius: 12 - energy: 4.5 - softness: 0.5 - color: "#B4FCF0" +# - type: entity +# parent: AlwaysPoweredWallLight +# id: AlwaysPoweredLightExterior +# suffix: Always Powered, Blue +# components: +# - type: PointLight +# radius: 12 +# energy: 4.5 +# softness: 0.5 +# color: "#B4FCF0" #Sodium lights - type: entity @@ -173,6 +176,11 @@ damage: types: Heat: 5 + - type: AmbientSound + volume: -6 + range: 5 + sound: + path: /Audio/Ambience/Objects/light_hum.ogg - type: entity parent: AlwaysPoweredWallLight @@ -180,9 +188,9 @@ suffix: Always Powered, Sodium components: - type: PointLight - radius: 10 + radius: 12 energy: 4 - softness: 0.5 + softness: 1 color: "#FFAF38" #Small lights @@ -194,18 +202,19 @@ parent: AlwaysPoweredWallLight components: - type: AmbientSound - volume: -15 - range: 2 + volume: -8 + range: 3 sound: path: /Audio/Ambience/Objects/light_hum.ogg - type: Sprite sprite: Structures/Wallmounts/Lighting/light_small.rsi state: on - type: PointLight - energy: 1.0 - radius: 6 - softness: 1.1 + energy: 1.2 + radius: 8 + softness: 0.9 enabled: true + color: "#FFE4CE" - type: Damageable damageContainer: Inorganic - type: Destructible diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index d2ae397482..c9acbccf90 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -73,6 +73,9 @@ price: 200 - type: Appearance - type: WiresVisuals + # Remove once there are machines for it. + - type: VendingMachine + equipOnEject: true - type: entity parent: VendingMachine diff --git a/Resources/Prototypes/Entities/Structures/catwalk.yml b/Resources/Prototypes/Entities/Structures/catwalk.yml index 3fbe08dd64..842a3914b1 100644 --- a/Resources/Prototypes/Entities/Structures/catwalk.yml +++ b/Resources/Prototypes/Entities/Structures/catwalk.yml @@ -9,16 +9,17 @@ - type: Clickable - type: Sprite netsync: false - sprite: Structures/catwalk.rsi + sprite: Structures/almayer_catwalk.rsi drawdepth: FloorTiles + state: almayer_catwalk - type: Icon - sprite: Structures/catwalk.rsi - state: catwalk_preview + sprite: Structures/almayer_catwalk.rsi + state: almayer_catwalk - type: Transform anchored: true - - type: IconSmooth - key: catwalk - base: catwalk_ + # - type: IconSmooth + # key: catwalk + # base: catwalk_ - type: FootstepModifier footstepSoundCollection: collection: FootstepCatwalk diff --git a/Resources/Prototypes/InventoryTemplates/diona_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/diona_inventory_template.yml index e7ce6ccfa1..911b389367 100644 --- a/Resources/Prototypes/InventoryTemplates/diona_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/diona_inventory_template.yml @@ -108,3 +108,24 @@ uiWindowPos: 3,0 strippingWindowPos: 0,5 displayName: Back + - name: underpants + slotTexture: underpants + slotFlags: UNDERPANTS + stripTime: 8 + uiWindowPos: 4,0 + strippingWindowPos: 4,0 + displayName: Underpants + - name: undershirt + slotTexture: undershirt + slotFlags: UNDERSHIRT + stripTime: 8 + uiWindowPos: 4,1 + strippingWindowPos: 4,1 + displayName: Undershirt + - name: socks + slotTexture: socks + slotFlags: SOCKS + stripTime: 8 + uiWindowPos: 4,2 + strippingWindowPos: 4,2 + displayName: Socks diff --git a/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml index 3c7df3cc57..88ff680e87 100644 --- a/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml @@ -114,3 +114,24 @@ uiWindowPos: 3,0 strippingWindowPos: 0,5 displayName: Back + - name: underpants + slotTexture: underpants + slotFlags: UNDERPANTS + stripTime: 8 + uiWindowPos: 4,0 + strippingWindowPos: 4,0 + displayName: Underpants + - name: undershirt + slotTexture: undershirt + slotFlags: UNDERSHIRT + stripTime: 8 + uiWindowPos: 4,1 + strippingWindowPos: 4,1 + displayName: Undershirt + - name: socks + slotTexture: socks + slotFlags: SOCKS + stripTime: 8 + uiWindowPos: 4,2 + strippingWindowPos: 4,2 + displayName: Socks diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml index a7a447674a..5c596bb864 100644 --- a/Resources/Prototypes/Maps/Pools/default.yml +++ b/Resources/Prototypes/Maps/Pools/default.yml @@ -1,16 +1,4 @@ - type: gameMapPool id: DefaultMapPool maps: - - Aspid - - Bagel - - Barratry - - Box - - Cluster - - Fland - - Kettle - - Marathon - - Meta - - Moose - - Omega - - Origin - + - CM_Flatgrass diff --git a/Resources/Prototypes/Maps/Pools/mapping.yml b/Resources/Prototypes/Maps/Pools/mapping.yml new file mode 100644 index 0000000000..d977f00214 --- /dev/null +++ b/Resources/Prototypes/Maps/Pools/mapping.yml @@ -0,0 +1,4 @@ +- type: gameMapPool + id: MappingMapPool + maps: + - Empty diff --git a/Resources/Prototypes/Maps/aspid.yml b/Resources/Prototypes/Maps/aspid.yml deleted file mode 100644 index cc9b540301..0000000000 --- a/Resources/Prototypes/Maps/aspid.yml +++ /dev/null @@ -1,49 +0,0 @@ -- type: gameMap - id: Aspid - mapName: 'NCS Aspid' - mapPath: /Maps/aspid.yml - minPlayers: 0 - maxPlayers: 70 - stations: - Aspid: - mapNameTemplate: '{0} NCS Aspid {1}' - emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - overflowJobs: - - Passenger - availableJobs: - CargoTechnician: [ 2, 3 ] - Passenger: [ -1, -1 ] - Bartender: [ 1, 2 ] - Botanist: [ 2, 3 ] - Chef: [ 1, 3 ] - Clown: [ 1, 1 ] - Janitor: [ 2, 3 ] - Mime: [ 1, 1 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - ChiefEngineer: [ 1, 1 ] - StationEngineer: [ 2, 3 ] - ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 3, 3 ] - Chemist: [ 1, 2 ] - ResearchDirector: [ 1, 1 ] - ResearchAssistant: [ 2, 2 ] - Scientist: [ 3, 4 ] - HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 3, 4 ] - Chaplain: [ 1, 1 ] - Warden: [ 1, 1 ] - Librarian: [ 1, 1 ] - Lawyer: [ 2, 2 ] - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 4 ] - Musician: [ 1, 1 ] - AtmosphericTechnician: [ 2, 2 ] - TechnicalAssistant: [ 2, 2 ] - MedicalIntern: [ 2, 2 ] - ServiceWorker: [ 1, 1 ] - SecurityCadet: [ 2, 2 ] - Detective: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/atlas.yml b/Resources/Prototypes/Maps/atlas.yml new file mode 100644 index 0000000000..bd6c120bf1 --- /dev/null +++ b/Resources/Prototypes/Maps/atlas.yml @@ -0,0 +1,48 @@ +- type: gameMap + id: atlas + mapName: 'Atlas' + mapPath: /Maps/atlas.yml + minPlayers: 0 + maxPlayers: 35 + votable: False + stations: + Atlas: + mapNameTemplate: '{0} Atlas {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'R4' # R4407/Goon. GS isn't as cool sounding. + overflowJobs: + - Passenger + availableJobs: + CargoTechnician: [ 2, 2 ] + Passenger: [ -1, -1 ] + Bartender: [ 1, 1 ] + Botanist: [ 2, 2] + Chef: [ 1, 1 ] + Clown: [ 1, 1 ] + Janitor: [ 1, 1 ] + Mime: [ 1, 1 ] + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + ChiefEngineer: [ 1, 1 ] + StationEngineer: [ 3, 3 ] + ChiefMedicalOfficer: [ 1, 1 ] + MedicalDoctor: [ 2, 2 ] + Chemist: [ 2, 2 ] + ResearchDirector: [ 1, 1 ] + Scientist: [ 3, 3 ] + HeadOfSecurity: [ 1, 1 ] + SecurityOfficer: [ 2, 2 ] + Warden: [ 1, 1 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + Lawyer: [ 1, 1 ] + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 2, 2 ] + Musician: [ 1, 1 ] + AtmosphericTechnician: [ 2, 2 ] + TechnicalAssistant: [ 1, 1 ] + MedicalIntern: [ 1, 1 ] + ServiceWorker: [ 1, 1 ] + SecurityCadet: [ 1, 1 ] + Detective: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/bagel.yml b/Resources/Prototypes/Maps/bagel.yml deleted file mode 100644 index e06a5651e6..0000000000 --- a/Resources/Prototypes/Maps/bagel.yml +++ /dev/null @@ -1,50 +0,0 @@ -- type: gameMap - id: Bagel - mapName: 'Bagel Station' - mapPath: /Maps/bagel.yml - minPlayers: 35 - maxPlayers: 70 - stations: - Bagel: - mapNameTemplate: '{0} Bagel Station {1}' - emergencyShuttlePath: /Maps/Shuttles/emergency_lox.yml - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - overflowJobs: - - Passenger - availableJobs: - CargoTechnician: [ 3, 3 ] - Passenger: [ -1, -1 ] - Bartender: [ 2, 2 ] - Botanist: [ 3, 3 ] - Chef: [ 2, 2 ] - Clown: [ 1, 1 ] - Janitor: [ 3, 3 ] - Mime: [ 1, 1 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - ChiefEngineer: [ 1, 1 ] - StationEngineer: [ 4, 4 ] - ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 3, 3 ] - Chemist: [ 2, 3 ] - ResearchDirector: [ 1, 1 ] - Scientist: [ 4, 4 ] - HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 4, 4 ] - Chaplain: [ 1, 1 ] - Warden: [ 1, 1 ] - Librarian: [ 1, 1 ] - Lawyer: [ 2, 2 ] - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - Musician: [ 1, 1 ] - AtmosphericTechnician: [ 3, 3 ] - TechnicalAssistant: [ 2, 2 ] - MedicalIntern: [ 2, 2 ] - ServiceWorker: [ 2, 2 ] - SecurityCadet: [ 2, 2 ] - Reporter: [ 2, 2 ] - Detective: [ 1, 1 ] - ResearchAssistant: [ 2, 2 ] diff --git a/Resources/Prototypes/Maps/barratry.yml b/Resources/Prototypes/Maps/barratry.yml deleted file mode 100644 index 2d9d3e2b57..0000000000 --- a/Resources/Prototypes/Maps/barratry.yml +++ /dev/null @@ -1,49 +0,0 @@ -- type: gameMap - id: Barratry - mapName: 'Barratry' - mapPath: /Maps/barratry.yml - minPlayers: 35 - maxPlayers: 70 - stations: - Barratry: - mapNameTemplate: '{0} Barratry {1}' - emergencyShuttlePath: /Maps/Shuttles/emergency_raven.yml - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - overflowJobs: - - Passenger - availableJobs: - CargoTechnician: [ 3, 3 ] - Passenger: [ -1, -1 ] - Bartender: [ 2, 2 ] - Botanist: [ 3, 4] - Chef: [ 2, 2 ] - Clown: [ 1, 1 ] - Janitor: [ 2, 3 ] - Mime: [ 1, 1 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - ChiefEngineer: [ 1, 1 ] - StationEngineer: [ 4, 5 ] - ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 4, 4 ] - Chemist: [ 2, 3 ] - ResearchDirector: [ 1, 1 ] - Scientist: [ 4, 4 ] - HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 5, 5 ] - Chaplain: [ 1, 1 ] - Warden: [ 1, 1 ] - Librarian: [ 1, 1 ] - Lawyer: [ 2, 2 ] - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - Musician: [ 1, 1 ] - AtmosphericTechnician: [ 2, 3 ] - TechnicalAssistant: [ 1, 2 ] - MedicalIntern: [ 1, 2 ] - ServiceWorker: [ 1, 2 ] - SecurityCadet: [ 1, 2 ] - Detective: [ 1, 1 ] - ResearchAssistant: [1, 2] diff --git a/Resources/Prototypes/Maps/box.yml b/Resources/Prototypes/Maps/box.yml deleted file mode 100644 index 2304923d24..0000000000 --- a/Resources/Prototypes/Maps/box.yml +++ /dev/null @@ -1,48 +0,0 @@ -- type: gameMap - id: Box - mapName: 'Box Station' - mapPath: /Maps/box.yml - minPlayers: 50 - stations: - Boxstation: - mapNameTemplate: '{0} Box Station {1}' - emergencyShuttlePath: /Maps/Shuttles/emergency_box.yml - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'TG' - overflowJobs: - - Passenger - availableJobs: - CargoTechnician: [ 3, 3 ] - Passenger: [ -1, -1 ] - Bartender: [ 2, 2 ] - Botanist: [ 3, 3 ] - Chef: [ 2, 2 ] - Clown: [ 1, 1 ] - Janitor: [ 3, 3 ] - Mime: [ 1, 1 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - ChiefEngineer: [ 1, 1 ] - StationEngineer: [ 4, 4 ] - ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 4, 4 ] - Chemist: [ 3, 3 ] - ResearchDirector: [ 1, 1 ] - Scientist: [ 5, 5 ] - HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 6, 6 ] - Chaplain: [ 2, 2 ] - Warden: [ 1, 1 ] - Librarian: [ 2, 2 ] - Lawyer: [ 2, 2 ] - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - Musician: [ 2, 2 ] - AtmosphericTechnician: [ 3, 3 ] - TechnicalAssistant: [ 4, 4 ] - MedicalIntern: [ 4, 4 ] - ServiceWorker: [ 4, 4 ] - SecurityCadet: [ 4, 4 ] - Detective: [ 1, 1 ] - ResearchAssistant: [ 4, 4 ] diff --git a/Resources/Prototypes/Maps/centcomm.yml b/Resources/Prototypes/Maps/centcomm.yml deleted file mode 100644 index ebdb10f3e4..0000000000 --- a/Resources/Prototypes/Maps/centcomm.yml +++ /dev/null @@ -1,15 +0,0 @@ -- type: gameMap - id: CentComm - mapName: 'Central Command' - mapPath: /Maps/centcomm.yml - minPlayers: 10 - stations: - centcomm: - mapNameTemplate: '{0} Central Command {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'TG' - overflowJobs: - - Passenger - availableJobs: - Passenger: [ 0, 1 ] diff --git a/Resources/Prototypes/Maps/cluster.yml b/Resources/Prototypes/Maps/cluster.yml deleted file mode 100644 index 80072ddb13..0000000000 --- a/Resources/Prototypes/Maps/cluster.yml +++ /dev/null @@ -1,48 +0,0 @@ -- type: gameMap - id: Cluster - mapName: 'Cluster' - mapPath: /Maps/cluster.yml - minPlayers: 0 - maxPlayers: 35 - stations: - Cluster: - mapNameTemplate: '{0} Cluster Station {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - overflowJobs: - - Passenger - availableJobs: - CargoTechnician: [ 1, 1 ] - Passenger: [ -1, -1 ] - Bartender: [ 1, 1 ] - Botanist: [ 2, 2 ] - Chef: [ 1, 1 ] - Clown: [ 1, 1 ] - Janitor: [ 1, 1 ] - Mime: [ 1, 1 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - ChiefEngineer: [ 1, 1 ] - StationEngineer: [ 2, 2 ] - ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 1, 1 ] - Chemist: [ 1, 1 ] - ResearchDirector: [ 1, 1 ] - Scientist: [ 2, 2 ] - ResearchAssistant: [ 1, 1 ] - HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 2, 2 ] - Chaplain: [ 1, 1 ] - Warden: [ 1, 1 ] - Librarian: [ 1, 1 ] - Lawyer: [ 1, 1 ] - Musician: [ 1, 1 ] - AtmosphericTechnician: [ 2, 2 ] - Detective: [ 1, 1 ] - TechnicalAssistant: [ 1, 1 ] - MedicalIntern: [ 1, 1 ] - ServiceWorker: [ 1, 1 ] - SecurityCadet: [ 1, 1 ] - SalvageSpecialist: [ 2, 2 ] - Quartermaster: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/cm_flatgrass.yml b/Resources/Prototypes/Maps/cm_flatgrass.yml new file mode 100644 index 0000000000..fa23f7bf1b --- /dev/null +++ b/Resources/Prototypes/Maps/cm_flatgrass.yml @@ -0,0 +1,28 @@ +- type: gameMap + id: CM_Flatgrass + mapName: 'CM Flatgrass' + mapPath: /Maps/cm_flatgrass.yml + minPlayers: 0 + maxPlayers: 100 + fallback: true + stations: + CM_Flatgrass: + mapNameTemplate: '{0} Jungle {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + overflowJobs: + - Passenger + availableJobs: + Passenger: [ -1, -1 ] + Chef: [ 1, 1 ] + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + ChiefEngineer: [ 1, 1 ] + ChiefMedicalOfficer: [ 1, 1 ] + ResearchDirector: [ 1, 1 ] + HeadOfSecurity: [ 1, 1 ] + StationEngineer: [ 2, 4 ] + # MedicalDoctor: [ 2, 2 ] + SecurityOfficer: [ 4, 4 ] + SecurityCadet: [ 12, 24 ] diff --git a/Resources/Prototypes/Maps/debug.yml b/Resources/Prototypes/Maps/debug.yml deleted file mode 100644 index f3907791ba..0000000000 --- a/Resources/Prototypes/Maps/debug.yml +++ /dev/null @@ -1,25 +0,0 @@ -- type: gameMap - id: Empty - mapName: Empty - mapPath: /Maps/Test/empty.yml - minPlayers: 0 - stations: - Empty: - mapNameTemplate: "Empty" - overflowJobs: - - Passenger - availableJobs: - Passenger: [ -1, -1 ] - -- type: gameMap - id: Dev - mapName: Dev - mapPath: /Maps/Test/dev_map.yml - minPlayers: 0 - stations: - Dev: - mapNameTemplate: "Dev" - overflowJobs: - - Captain - availableJobs: - Captain: [ -1, -1 ] diff --git a/Resources/Prototypes/Maps/fland.yml b/Resources/Prototypes/Maps/fland.yml deleted file mode 100644 index 2166c31c95..0000000000 --- a/Resources/Prototypes/Maps/fland.yml +++ /dev/null @@ -1,48 +0,0 @@ -- type: gameMap - id: Fland - mapName: 'Fland Installation' - mapPath: /Maps/fland.yml - minPlayers: 60 - stations: - Fland: - mapNameTemplate: '{0} Fland Installation {1}' - emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'B' - overflowJobs: - - Passenger - availableJobs: - CargoTechnician: [ 4, 4 ] - Passenger: [ -1, -1 ] - Bartender: [ 2, 2 ] - Botanist: [ 4, 4 ] - Chef: [ 2, 2 ] - Clown: [ 1, 1 ] - Janitor: [ 3, 3 ] - Mime: [ 1, 1 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - ChiefEngineer: [ 1, 1 ] - StationEngineer: [ 6, 6 ] - ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 6, 6 ] - Chemist: [ 3, 3 ] - ResearchDirector: [ 1, 1 ] - Scientist: [ 4, 4 ] - HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 7, 7 ] - Chaplain: [ 1, 1 ] - Warden: [ 1, 1 ] - Librarian: [ 1, 1 ] - Lawyer: [ 2, 2 ] - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - Musician: [ 1, 1 ] - AtmosphericTechnician: [ 3, 3 ] - TechnicalAssistant: [ 2, 2 ] - MedicalIntern: [ 2, 2 ] - ServiceWorker: [ 2, 2 ] - SecurityCadet: [ 2, 2 ] - Detective: [ 1, 1 ] - ResearchAssistant: [ 3, 3 ] diff --git a/Resources/Prototypes/Maps/infiltrator.yml b/Resources/Prototypes/Maps/infiltrator.yml deleted file mode 100644 index d0c45ddf69..0000000000 --- a/Resources/Prototypes/Maps/infiltrator.yml +++ /dev/null @@ -1,14 +0,0 @@ -- type: gameMap - id: Infiltrator - mapName: 'Syndicate Infiltrator' - mapPath: /Maps/infiltrator.yml - minPlayers: 0 - stations: - Station: #TODO: Mapper, add a BecomesStation component to the primary grid of the map. - mapNameTemplate: '{0} Infiltrator {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - overflowJobs: [] - availableJobs: - Captain: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/kettle.yml b/Resources/Prototypes/Maps/kettle.yml deleted file mode 100644 index 01f3b0bbc2..0000000000 --- a/Resources/Prototypes/Maps/kettle.yml +++ /dev/null @@ -1,49 +0,0 @@ -- type: gameMap - id: Kettle - mapName: 'Kettle' - mapPath: /Maps/kettle.yml - minPlayers: 35 - stations: - Kettle: - mapNameTemplate: '{0} Kettle {1}' - emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - overflowJobs: - - Passenger - availableJobs: - CargoTechnician: [ 3, 3 ] - Passenger: [ -1, -1 ] - Bartender: [ 1, 2 ] - Botanist: [ 3, 4 ] - Chef: [ 2, 3 ] - Clown: [ 1, 2 ] - Janitor: [ 4, 4 ] - Mime: [ 1, 2 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - ChiefEngineer: [ 1, 1 ] - StationEngineer: [ 4, 6 ] - ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 3, 5 ] - Chemist: [ 2, 3 ] - ResearchDirector: [ 1, 1 ] - Scientist: [ 4, 6 ] - ResearchAssistant: [ 4, 4 ] - HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 4, 6 ] - Chaplain: [ 1, 2 ] - Warden: [ 1, 1 ] - Librarian: [ 1, 2 ] - Lawyer: [ 2, 3 ] - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 4 ] - Musician: [ 1, 2 ] - AtmosphericTechnician: [ 3, 3 ] - TechnicalAssistant: [ 4, 4 ] - MedicalIntern: [ 4, 4 ] - ServiceWorker: [ 4, 4 ] - SecurityCadet: [ 4, 4 ] - Detective: [ 1, 1 ] - Zookeeper: [1, 1] diff --git a/Resources/Prototypes/Maps/marathon.yml b/Resources/Prototypes/Maps/marathon.yml deleted file mode 100644 index 1a14167697..0000000000 --- a/Resources/Prototypes/Maps/marathon.yml +++ /dev/null @@ -1,50 +0,0 @@ -- type: gameMap - id: Marathon - mapName: 'Marathon Station' - mapPath: /Maps/marathon.yml - minPlayers: 35 - maxPlayers: 70 - stations: - Marathon: - mapNameTemplate: '{0} Marathon Station {1}' - emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - overflowJobs: - - Passenger - availableJobs: - CargoTechnician: [ 2, 3 ] - Passenger: [ -1, -1 ] - Bartender: [ 2, 2 ] - Botanist: [ 3, 3] - Chef: [ 2, 2 ] - Clown: [ 1, 1 ] - Janitor: [ 1, 2 ] - Mime: [ 1, 1 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - ChiefEngineer: [ 1, 1 ] - StationEngineer: [ 4, 6 ] - ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 3, 4 ] - Chemist: [ 2, 3 ] - ResearchDirector: [ 1, 1 ] - Scientist: [ 3, 4 ] - HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 4, 4 ] - Chaplain: [ 1, 1 ] - Warden: [ 1, 1 ] - Librarian: [ 1, 1 ] - Lawyer: [ 2, 2 ] - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - Musician: [ 1, 1 ] - AtmosphericTechnician: [ 3, 3 ] - TechnicalAssistant: [ 2, 2 ] - MedicalIntern: [ 2, 2 ] - ServiceWorker: [ 2, 2 ] - SecurityCadet: [ 2, 2 ] - Psychologist: [ 1, 1 ] - Detective: [ 1, 1 ] - ResearchAssistant: [ 2, 2 ] diff --git a/Resources/Prototypes/Maps/meta.yml b/Resources/Prototypes/Maps/meta.yml deleted file mode 100644 index c9bd53789f..0000000000 --- a/Resources/Prototypes/Maps/meta.yml +++ /dev/null @@ -1,48 +0,0 @@ -- type: gameMap - id: Meta - mapName: 'Meta Station' - mapPath: /Maps/meta.yml - minPlayers: 50 - stations: - Meta: - mapNameTemplate: '{0} Meta Station {1}' - emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'TG' - overflowJobs: - - Passenger - availableJobs: - CargoTechnician: [ 3, 3 ] - Passenger: [ -1, -1 ] - Bartender: [ 2, 2 ] - Botanist: [ 3, 3 ] - Chef: [ 2, 2 ] - Clown: [ 1, 1 ] - Janitor: [ 3, 3 ] - Mime: [ 1, 1 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - ChiefEngineer: [ 1, 1 ] - StationEngineer: [ 4, 4 ] - ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 4, 4 ] - Chemist: [ 3, 3 ] - ResearchDirector: [ 1, 1 ] - Scientist: [ 6, 6 ] - HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 6, 6 ] - Chaplain: [ 2, 2 ] - Warden: [ 1, 1 ] - Librarian: [ 2, 2 ] - Lawyer: [ 2, 2 ] - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - Musician: [ 2, 2 ] - AtmosphericTechnician: [ 3, 3 ] - TechnicalAssistant: [ 4, 4 ] - MedicalIntern: [ 4, 4 ] - ServiceWorker: [ 4, 4 ] - SecurityCadet: [ 4, 4 ] - Detective: [ 1, 1 ] - ResearchAssistant: [ 4, 4 ] diff --git a/Resources/Prototypes/Maps/omega.yml b/Resources/Prototypes/Maps/omega.yml deleted file mode 100644 index c96a0f798f..0000000000 --- a/Resources/Prototypes/Maps/omega.yml +++ /dev/null @@ -1,48 +0,0 @@ -- type: gameMap - id: Omega - mapName: 'Omega' - mapPath: /Maps/omega.yml - minPlayers: 0 - maxPlayers: 35 - stations: - Omega: - mapNameTemplate: '{0} Omega Station {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'TG' - overflowJobs: - - Passenger - availableJobs: - CargoTechnician: [ 2, 2 ] - Passenger: [ -1, -1 ] - Bartender: [ 1, 1 ] - Botanist: [ 2, 2 ] - Chef: [ 1, 1 ] - Clown: [ 1, 1 ] - Janitor: [ 1, 1 ] - Mime: [ 1, 1 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - ChiefEngineer: [ 1, 1 ] - StationEngineer: [ 3, 3 ] - ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 3, 3 ] - Chemist: [ 2, 2 ] - ResearchDirector: [ 1, 1 ] - Scientist: [ 3, 3 ] - ResearchAssistant: [ 1, 1 ] - HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 3, 3 ] - Chaplain: [ 1, 1 ] - Warden: [ 1, 1 ] - Librarian: [ 1, 1 ] - Lawyer: [ 1, 1 ] - Musician: [ 1, 1 ] - AtmosphericTechnician: [ 2, 2 ] - Detective: [ 1, 1 ] - TechnicalAssistant: [ 1, 1 ] - MedicalIntern: [ 1, 1 ] - ServiceWorker: [ 1, 1 ] - SecurityCadet: [ 1, 1 ] - SalvageSpecialist: [ 2, 2 ] - Quartermaster: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/origin.yml b/Resources/Prototypes/Maps/origin.yml deleted file mode 100644 index 1c0e8f2d6f..0000000000 --- a/Resources/Prototypes/Maps/origin.yml +++ /dev/null @@ -1,48 +0,0 @@ -- type: gameMap - id: Origin - mapName: 'Origin' - mapPath: /Maps/origin.yml - minPlayers: 50 - stations: - Origin: - mapNameTemplate: '{0} Origin {1}' - emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - overflowJobs: - - Passenger - availableJobs: - CargoTechnician: [ 5, 5 ] - Passenger: [ -1, -1 ] - Bartender: [ 3, 3 ] - Botanist: [ 3, 3 ] - Chef: [ 3, 3 ] - Clown: [ 1, 1 ] - Janitor: [ 3, 3 ] - Mime: [ 1, 1 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - ChiefEngineer: [ 1, 1 ] - StationEngineer: [ 5, 5 ] - ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 5, 5 ] - Chemist: [ 2, 3 ] - ResearchDirector: [ 1, 1 ] - Scientist: [ 5, 5 ] - HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 6, 6 ] - Chaplain: [ 2, 2 ] - Warden: [ 1, 1 ] - Librarian: [ 2, 2 ] - Lawyer: [ 2, 2 ] - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - Musician: [ 2, 2 ] - AtmosphericTechnician: [ 3, 3 ] - TechnicalAssistant: [ 2, 2 ] - MedicalIntern: [ 2, 2 ] - ServiceWorker: [ 4, 4 ] - SecurityCadet: [ 3, 3 ] - Detective: [ 1, 1 ] - ResearchAssistant: [ 2, 2] diff --git a/Resources/Prototypes/Maps/salvage.yml b/Resources/Prototypes/Maps/salvage.yml deleted file mode 100644 index a78a944e98..0000000000 --- a/Resources/Prototypes/Maps/salvage.yml +++ /dev/null @@ -1,145 +0,0 @@ -# So the way things are done as of now is that Salvages are measured by world AABBs in their maps. -# Remember, first two coordinates should be the minimum X/Y, second two should be maximum. -# You can also use the salvageruler command to get these, once you're sure the transform's been reset. -# Ultimately, you should still be keeping the maps centred. - -# "Small"-class maps - Max size square: 7x7, indicated size: 3.5 - -- type: salvageMap - id: Small1 - name: "Small / Engineering Storage 1" - mapPath: /Maps/Salvage/small-1.yml - bounds: "-3,-4,3,3" - -- type: salvageMap - id: Small2 - name: "Small / Gaming Nook 1" - mapPath: /Maps/Salvage/small-2.yml - bounds: "-4,-4,3,3" - -- type: salvageMap - id: Small-ship-1 - name: "Small / Ship 1 (Pill)" - mapPath: /Maps/Salvage/small-ship-1.yml - bounds: "-2,-1,2,1" - -- type: salvageMap - id: Small3 - name: "Small / Laundromat 1" - mapPath: /Maps/Salvage/small-3.yml - bounds: "-4,-4,2,3" - -- type: salvageMap - id: SmallAISurveyDrone - name: "Small / AI Survey Drone" - mapPath: /Maps/Salvage/small-ai-survey-drone.yml - bounds: "-4,-4,3,3" - -- type: salvageMap - id: Small4 - name: "Small / Bar Salvage" - mapPath: /Maps/Salvage/small-4.yml - bounds: "-4,-4,3,3" - -# Small - Asteroids - -- type: salvageMap - id: SmallA1 - name: "Small / Asteroid 1 Plasmafire" - mapPath: /Maps/Salvage/small-a-1.yml - bounds: "-4,-4,3,3" - -# "Medium"-class maps - Max size square: 15x15, indicated size: 7.5 - -- type: salvageMap - id: Medium1 - name: "Medium / Plasma-Trapped Cache 1" - mapPath: /Maps/Salvage/medium-1.yml - bounds: "-8,-8,7,7" - -- type: salvageMap - id: MediumVault1 - name: "Medium / Vault 1" - mapPath: /Maps/Salvage/medium-vault-1.yml - bounds: "-8,-8,7,7" - -- type: salvageMap - id: MediumOrchestra - name: "Medium / Silent Orchestra" - mapPath: /Maps/Salvage/medium-silent-orchestra.yml - bounds: "-8,-8,7,7" - -- type: salvageMap - id: MediumLibraryWreck - name: "Medium / Abandoned Library" - mapPath: /Maps/Salvage/medium-library.yml - bounds: "-9,-9,6,7" - -- type: salvageMap - id: MediumCargoWreck - name: "Medium / Cargo Department Wreck" - mapPath: /Maps/Salvage/cargo-1.yml - bounds: "-6,-6,5,9" - -- type: salvageMap - id: MediumPirateWreck - name: "Medium / Pirate Barge Fragment" - mapPath: /Maps/Salvage/medium-pirate.yml - bounds: "-4,-10,6,7" - -- type: salvageMap - id: TickColony - name: "Space Tick colony" - mapPath: /Maps/Salvage/tick-colony.yml - bounds: "-6,-7,5,7" - -- type: salvageMap - id: CargoDock - name: "Asteroid Cargo Dock" - mapPath: /Maps/Salvage/medium-dock.yml - bounds: "-7,-6,4,8" - -- type: salvageMap - id: SpaceWaffleHome - name: "Waffle Home" - mapPath: /Maps/Salvage/wh-salvage.yml - bounds: "-13,-12,14,11" - -- type: salvageMap - id: MediumShuttleWreck - name: "Medium / Ruined Emergency Shuttle" - mapPath: /Maps/Salvage/medium-ruined-emergency-shuttle.yml - bounds: "-6,-9,5,8" - -- type: salvageMap - id: mediumPetHospital - name: "Medium / Pet and Bear Hospital" - mapPath: /Maps/Salvage/medium-pet-hospital.yml - bounds: "-2,-14,16,2" - -- type: salvageMap - id: MediumCrashedShuttle - name: "Crashed Shuttle" - mapPath: /Maps/Salvage/medium-crashed-shuttle.yml - bounds: "-7,-8,5,9" - -# """Large""" maps - -- type: salvageMap - id: StationStation - name: "StationStation" - mapPath: /Maps/Salvage/stationstation.yml - bounds: "-17,-15,35,29" - -- type: salvageMap - id: AsteroidBase - name: "Asteroid Base" - mapPath: /Maps/Salvage/asteroid-base.yml - bounds: "-12,-13,15,11" - -- type: salvageMap - id: RuinCargoBase - name: "Ruined Cargo Storage" - mapPath: /Maps/Salvage/ruin-cargo-salvage.yml - bounds: "-15,-13,22,14" - diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 165d978420..ca252de4fd 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -512,7 +512,7 @@ category: construction-category-structures description: It opens, it closes, and maybe crushes you. icon: - sprite: Structures/Doors/Airlocks/Standard/basic.rsi + sprite: Structures/Doors/Airlocks/Standard/celldoor.rsi state: assembly objectType: Structure placementMode: SnapgridCenter @@ -529,7 +529,7 @@ category: construction-category-structures description: It opens, it closes, and maybe crushes you. icon: - sprite: Structures/Doors/Airlocks/Glass/glass.rsi + sprite: Structures/Doors/Airlocks/Glass/celldoor.rsi state: assembly objectType: Structure placementMode: SnapgridCenter diff --git a/Resources/Prototypes/SimpleStation14/Clothing/Under/pants.yml b/Resources/Prototypes/SimpleStation14/Clothing/Under/pants.yml new file mode 100644 index 0000000000..66d482dbd7 --- /dev/null +++ b/Resources/Prototypes/SimpleStation14/Clothing/Under/pants.yml @@ -0,0 +1,403 @@ +- type: entity + abstract: true + parent: Clothing + id: ClothingUnderPantsBase + components: + - type: Clothing + slots: + - UNDERPANTS + - type: Sprite + state: icon + +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderbee_shorts + name: bee_shorts + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: bee_shorts + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: bee_shorts +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderboxer_briefs + name: boxer_briefs + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: boxer_briefs + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: boxer_briefs +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderboxers_assblastusa + name: boxers_assblastusa + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: boxers_assblastusa + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: boxers_assblastusa +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderboxers_commie + name: boxers_commie + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: boxers_commie + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: boxers_commie +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderboxers_heart + name: boxers_heart + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: boxers_heart + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: boxers_heart +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderboxers_striped + name: boxers_striped + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: boxers_striped + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: boxers_striped +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderboxers_uk + name: boxers_uk + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: boxers_uk + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: boxers_uk +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderboxers + name: boxers + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: boxers + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: boxers +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderbriefs + name: briefs + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: briefs + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: briefs +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderfishnet_lower + name: fishnet_lower + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: fishnet_lower + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: fishnet_lower +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderjockstrap + name: jockstrap + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: jockstrap + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: jockstrap +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderljonb + name: ljonb + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: ljonb + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: ljonb +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderpanties_alt + name: panties_alt + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: panties_alt + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: panties_alt +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderpanties_assblastusa + name: panties_assblastusa + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: panties_assblastusa + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: panties_assblastusa +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderpanties_bee-kini + name: panties_bee-kini + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: panties_bee-kini + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: panties_bee-kini +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderpanties_commie + name: panties_commie + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: panties_commie + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: panties_commie +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderpanties_kinky + name: panties_kinky + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: panties_kinky + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: panties_kinky +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderpanties_neko + name: panties_neko + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: panties_neko + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: panties_neko +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderpanties_slim + name: panties_slim + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: panties_slim + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: panties_slim +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderpanties_swimming + name: panties_swimming + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: panties_swimming + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: panties_swimming +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderpanties_thin + name: panties_thin + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: panties_thin + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: panties_thin +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderpanties_uk + name: panties_uk + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: panties_uk + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: panties_uk +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderpanties + name: panties + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: panties + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: panties +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderpantyhose_ripped + name: pantyhose_ripped + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: pantyhose_ripped + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: pantyhose_ripped +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderpantyhose + name: pantyhose + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: pantyhose + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: pantyhose +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderstriped_panties + name: striped_panties + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: striped_panties + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: striped_panties +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderthong_babydoll + name: thong_babydoll + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: thong_babydoll + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: thong_babydoll +- type: entity + parent: ClothingUnderPantsBase + id: ClothingUnderthong + name: thong + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/underpants.rsi + state: thong + - type: Clothing + sprite: SimpleStation14/Clothing/Under/underpants.rsi + clothingVisuals: + underpants: + - state: thong diff --git a/Resources/Prototypes/SimpleStation14/Clothing/Under/shirts.yml b/Resources/Prototypes/SimpleStation14/Clothing/Under/shirts.yml new file mode 100644 index 0000000000..8890e35a3e --- /dev/null +++ b/Resources/Prototypes/SimpleStation14/Clothing/Under/shirts.yml @@ -0,0 +1,1131 @@ +- type: entity + abstract: true + parent: Clothing + id: ClothingUnderShirtBase + components: + - type: Clothing + slots: + - UNDERSHIRT + - type: Sprite + state: icon + +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbabydoll + name: babydoll + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: babydoll + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: babydoll +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderband + name: band + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: band + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: band +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbee_shirt + name: bee_shirt + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bee_shirt + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bee_shirt +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderblueshirtsport + name: blueshirtsport + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: blueshirtsport + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: blueshirtsport +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbowling + name: bowling + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bowling + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bowling +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbowlinga + name: bowlinga + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bowlinga + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bowlinga +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbowlingp + name: bowlingp + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bowlingp + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bowlingp +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbowlingw + name: bowlingw + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bowlingw + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bowlingw +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbra_alt + name: bra_alt + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bra_alt + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bra_alt +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbra_assblastusa + name: bra_assblastusa + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bra_assblastusa + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bra_assblastusa +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbra_bee-kini + name: bra_bee-kini + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bra_bee-kini + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bra_bee-kini +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbra_binder_strapless + name: bra_binder_strapless + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bra_binder_strapless + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bra_binder_strapless +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbra_binder + name: bra_binder + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bra_binder + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bra_binder +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbra_commie + name: bra_commie + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bra_commie + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bra_commie +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbra_kinky + name: bra_kinky + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bra_kinky + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bra_kinky +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbra_neko + name: bra_neko + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bra_neko + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bra_neko +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbra_strapless_alt + name: bra_strapless_alt + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bra_strapless_alt + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bra_strapless_alt +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbra_strapless + name: bra_strapless + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bra_strapless + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bra_strapless +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbra_swimming_alt + name: bra_swimming_alt + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bra_swimming_alt + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bra_swimming_alt +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbra_swimming + name: bra_swimming + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bra_swimming + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bra_swimming +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbra_thin + name: bra_thin + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bra_thin + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bra_thin +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbra_uk + name: bra_uk + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bra_uk + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bra_uk +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderbra + name: bra + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: bra + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: bra +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndercowboyshirt_navy + name: cowboyshirt_navy + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: cowboyshirt_navy + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: cowboyshirt_navy +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndercowboyshirt_navys + name: cowboyshirt_navys + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: cowboyshirt_navys + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: cowboyshirt_navys +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndercowboyshirt_red + name: cowboyshirt_red + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: cowboyshirt_red + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: cowboyshirt_red +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndercowboyshirt_reds + name: cowboyshirt_reds + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: cowboyshirt_reds + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: cowboyshirt_reds +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndercowboyshirt_s + name: cowboyshirt_s + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: cowboyshirt_s + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: cowboyshirt_s +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndercowboyshirt_white + name: cowboyshirt_white + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: cowboyshirt_white + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: cowboyshirt_white +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndercowboyshirt_whites + name: cowboyshirt_whites + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: cowboyshirt_whites + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: cowboyshirt_whites +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndercowboyshirt + name: cowboyshirt + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: cowboyshirt + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: cowboyshirt +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderfishnet_body + name: fishnet_body + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: fishnet_body + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: fishnet_body +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderfishnet_gloves + name: fishnet_gloves + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: fishnet_gloves + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: fishnet_gloves +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderfishnet_sleeves + name: fishnet_sleeves + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: fishnet_sleeves + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: fishnet_sleeves +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndergreenshirtsport + name: greenshirtsport + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: greenshirtsport + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: greenshirtsport +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderhalterneck_bra + name: halterneck_bra + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: halterneck_bra + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: halterneck_bra +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderian + name: ian + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: ian + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: ian +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderilovent + name: ilovent + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: ilovent + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: ilovent +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderljont + name: ljont + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: ljont + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: ljont +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderlongstripe_blue + name: longstripe_blue + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: longstripe_blue + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: longstripe_blue +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderlongstripe + name: longstripe + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: longstripe + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: longstripe +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderlover + name: lover + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: lover + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: lover +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndermatroska + name: matroska + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: matroska + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: matroska +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderpeace + name: peace + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: peace + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: peace +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderpogoman + name: pogoman + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: pogoman + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: pogoman +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderpolo + name: polo + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: polo + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: polo +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderredshirtsport + name: redshirtsport + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: redshirtsport + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: redshirtsport +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndershibari_sleeves + name: shibari_sleeves + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: shibari_sleeves + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: shibari_sleeves +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndershibari + name: shibari + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: shibari + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: shibari +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndershirt_alien + name: shirt_alien + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: shirt_alien + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: shirt_alien +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndershirt_assblastusa + name: shirt_assblastusa + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: shirt_assblastusa + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: shirt_assblastusa +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndershirt_bluejersey + name: shirt_bluejersey + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: shirt_bluejersey + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: shirt_bluejersey +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndershirt_clown + name: shirt_clown + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: shirt_clown + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: shirt_clown +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndershirt_commie + name: shirt_commie + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: shirt_commie + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: shirt_commie +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndershirt_meat + name: shirt_meat + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: shirt_meat + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: shirt_meat +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndershirt_nano + name: shirt_nano + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: shirt_nano + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: shirt_nano +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndershirt_question + name: shirt_question + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: shirt_question + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: shirt_question +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndershirt_redjersey + name: shirt_redjersey + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: shirt_redjersey + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: shirt_redjersey +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndershirt_skull + name: shirt_skull + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: shirt_skull + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: shirt_skull +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndershirt_ss13 + name: shirt_ss13 + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: shirt_ss13 + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: shirt_ss13 +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndershirt_stripes + name: shirt_stripes + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: shirt_stripes + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: shirt_stripes +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndershirt_tiedye + name: shirt_tiedye + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: shirt_tiedye + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: shirt_tiedye +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndershortsleeve + name: shortsleeve + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: shortsleeve + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: shortsleeve +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndersports_bra_alt + name: sports_bra_alt + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: sports_bra_alt + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: sports_bra_alt +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndersports_bra + name: sports_bra + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: sports_bra + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: sports_bra +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderstriped_bra + name: striped_bra + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: striped_bra + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: striped_bra +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderswimming_black + name: swimming_black + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: swimming_black + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: swimming_black +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderswimming_blue + name: swimming_blue + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: swimming_blue + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: swimming_blue +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderswimming_red + name: swimming_red + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: swimming_red + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: swimming_red +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndertank_fire + name: tank_fire + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: tank_fire + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: tank_fire +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndertank_midriff_alt + name: tank_midriff_alt + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: tank_midriff_alt + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: tank_midriff_alt +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndertank_midriff + name: tank_midriff + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: tank_midriff + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: tank_midriff +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndertank_rainbow + name: tank_rainbow + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: tank_rainbow + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: tank_rainbow +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndertank_stripes + name: tank_stripes + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: tank_stripes + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: tank_stripes +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndertank_sun + name: tank_sun + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: tank_sun + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: tank_sun +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndertanktop_alt + name: tanktop_alt + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: tanktop_alt + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: tanktop_alt +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndertanktop + name: tanktop + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: tanktop + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: tanktop +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUndertubetop + name: tubetop + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: tubetop + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: tubetop +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderuk + name: uk + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: uk + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: uk +- type: entity + parent: ClothingUnderShirtBase + id: ClothingUnderundershirt + name: undershirt + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + state: undershirt + - type: Clothing + sprite: SimpleStation14/Clothing/Under/undershirts.rsi + clothingVisuals: + undershirt: + - state: undershirt diff --git a/Resources/Prototypes/SimpleStation14/Clothing/Under/socks.yml b/Resources/Prototypes/SimpleStation14/Clothing/Under/socks.yml new file mode 100644 index 0000000000..f689cb48c2 --- /dev/null +++ b/Resources/Prototypes/SimpleStation14/Clothing/Under/socks.yml @@ -0,0 +1,541 @@ +- type: entity + abstract: true + parent: Clothing + id: ClothingUnderSocksBase + components: + - type: Clothing + slots: + - SOCKS + +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderassblastusa_knee + name: assblastusa_knee + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: assblastusa_knee + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: assblastusa_knee +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderassblastusa_thigh + name: assblastusa_thigh + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: assblastusa_thigh + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: assblastusa_thigh +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderbee_knee + name: bee_knee + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: bee_knee + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: bee_knee +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderbee_norm + name: bee_norm + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: bee_norm + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: bee_norm +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderbee_thigh + name: bee_thigh + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: bee_thigh + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: bee_thigh +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUndercandycaneg_knee + name: candycaneg_knee + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: candycaneg_knee + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: candycaneg_knee +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUndercandycaneg_norm + name: candycaneg_norm + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: candycaneg_norm + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: candycaneg_norm +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUndercandycaneg_thigh + name: candycaneg_thigh + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: candycaneg_thigh + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: candycaneg_thigh +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUndercandycaner_knee + name: candycaner_knee + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: candycaner_knee + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: candycaner_knee +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUndercandycaner_norm + name: candycaner_norm + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: candycaner_norm + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: candycaner_norm +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUndercandycaner_thigh + name: candycaner_thigh + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: candycaner_thigh + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: candycaner_thigh +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderchristmas_knee + name: christmas_knee + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: christmas_knee + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: christmas_knee +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderchristmas_norm + name: christmas_norm + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: christmas_norm + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: christmas_norm +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderchristmas_thigh + name: christmas_thigh + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: christmas_thigh + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: christmas_thigh +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUndercommie_knee + name: commie_knee + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: commie_knee + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: commie_knee +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUndercommie_thigh + name: commie_thigh + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: commie_thigh + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: commie_thigh +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderfishnet + name: fishnet + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: fishnet + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: fishnet +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUndergarter + name: garter + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: garter + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: garter +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderrainbow_knee + name: rainbow_knee + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: rainbow_knee + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: rainbow_knee +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderrainbow_thigh + name: rainbow_thigh + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: rainbow_thigh + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: rainbow_thigh +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUndersocks_knee + name: socks_knee + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: socks_knee + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: socks_knee +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUndersocks_norm + name: socks_norm + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: socks_norm + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: socks_norm +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUndersocks_short + name: socks_short + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: socks_short + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: socks_short +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUndersocks_thigh + name: socks_thigh + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: socks_thigh + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: socks_thigh +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderstockings_blue + name: stockings_blue + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: stockings_blue + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: stockings_blue +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderstockings_cyan + name: stockings_cyan + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: stockings_cyan + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: stockings_cyan +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderstockings_dpink + name: stockings_dpink + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: stockings_dpink + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: stockings_dpink +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderstockings_green + name: stockings_green + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: stockings_green + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: stockings_green +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderstockings_lpink + name: stockings_lpink + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: stockings_lpink + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: stockings_lpink +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderstockings_orange + name: stockings_orange + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: stockings_orange + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: stockings_orange +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderstockings_purple + name: stockings_purple + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: stockings_purple + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: stockings_purple +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderstockings_yellow + name: stockings_yellow + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: stockings_yellow + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: stockings_yellow +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderstriped_knee + name: striped_knee + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: striped_knee + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: striped_knee +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderstriped_thigh + name: striped_thigh + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: striped_thigh + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: striped_thigh +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderthin_knee + name: thin_knee + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: thin_knee + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: thin_knee +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderthin_thigh + name: thin_thigh + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: thin_thigh + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: thin_thigh +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderuk_knee + name: uk_knee + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: uk_knee + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: uk_knee +- type: entity + parent: ClothingUnderSocksBase + id: ClothingUnderuk_thigh + name: uk_thigh + description: DESCRIPTION + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/socks.rsi + state: uk_thigh + - type: Clothing + sprite: SimpleStation14/Clothing/Under/socks.rsi + clothingVisuals: + socks: + - state: uk_thigh diff --git a/Resources/Prototypes/SimpleStation14/Clothing/Under/what.yml b/Resources/Prototypes/SimpleStation14/Clothing/Under/what.yml new file mode 100644 index 0000000000..d52e83053a --- /dev/null +++ b/Resources/Prototypes/SimpleStation14/Clothing/Under/what.yml @@ -0,0 +1,31 @@ +- type: entity + abstract: true + parent: Clothing + id: ClothingUnderWhatBase + components: + - type: Clothing + slots: + - SOCKS + - UNDERPANTS + - UNDERSHIRT + - type: Sprite + state: icon + +- type: entity + parent: ClothingUnderWhatBase + id: ClothingUnderWhatmankini + name: mankini + description: Who thought this was a good idea? + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Under/what.rsi + state: mankini + - type: Clothing + sprite: SimpleStation14/Clothing/Under/what.rsi + clothingVisuals: + underpants: + - state: mankini + undershirt: + - state: mankini + socks: + - state: mankini diff --git a/Resources/Prototypes/SimpleStation14/InventoryTemplates/aghost_inventory_template.yml b/Resources/Prototypes/SimpleStation14/InventoryTemplates/aghost_inventory_template.yml new file mode 100644 index 0000000000..8f187a5804 --- /dev/null +++ b/Resources/Prototypes/SimpleStation14/InventoryTemplates/aghost_inventory_template.yml @@ -0,0 +1,46 @@ +- type: inventoryTemplate + id: aghost + slots: + - name: head + slotTexture: head + slotFlags: HEAD + slotGroup: MainHotbar + uiWindowPos: 1,0 + strippingWindowPos: 1,0 + displayName: Head + - name: mask + slotTexture: mask + slotFlags: MASK + slotGroup: MainHotbar + uiWindowPos: 1,1 + strippingWindowPos: 1,1 + displayName: Mask + - name: undershirt + slotTexture: undershirt + slotFlags: UNDERSHIRT + slotGroup: MainHotbar + stripTime: 8 + uiWindowPos: 4,1 + strippingWindowPos: 3,1 + displayName: Undershirt + - name: pocket1 + slotTexture: pocket + slotFlags: POCKET + slotGroup: MainHotbar + uiWindowPos: 0,3 + strippingWindowPos: 0,4 + displayName: Pocket 1 + - name: pocket2 + slotTexture: pocket + slotFlags: POCKET + slotGroup: MainHotbar + uiWindowPos: 2,3 + strippingWindowPos: 1,4 + displayName: Pocket 2 + - name: pocket3 + slotTexture: pocket + slotFlags: POCKET + slotGroup: MainHotbar + uiWindowPos: 4,3 + strippingWindowPos: 2,4 + displayName: Pocket 3 diff --git a/Resources/Prototypes/SimpleStation14/Shaders/shaders.yml b/Resources/Prototypes/SimpleStation14/Shaders/shaders.yml new file mode 100644 index 0000000000..3193efdf40 --- /dev/null +++ b/Resources/Prototypes/SimpleStation14/Shaders/shaders.yml @@ -0,0 +1,9 @@ +- type: shader + id: ColorTint + kind: source + path: "/Textures/SimpleStation14/Shaders/color_tint.swsl" + +- type: shader + id: Nightvision + kind: source + path: "/Textures/SimpleStation14/Shaders/nightvision.swsl" diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml index 0da280c0b2..9a74cf3d28 100644 --- a/Resources/Prototypes/Tiles/floors.yml +++ b/Resources/Prototypes/Tiles/floors.yml @@ -1042,6 +1042,7 @@ collection: FootstepGrass heatCapacity: 10000 weather: true + tileAmbientSound: TileJungleAmbience - type: tile id: FloorDirt @@ -1191,6 +1192,7 @@ footstepSounds: collection: FootstepAsteroid heatCapacity: 10000 + tileAmbientSound: TileCaveAmbience - type: tile id: FloorCaveDrought @@ -1205,6 +1207,7 @@ footstepSounds: collection: FootstepAsteroid heatCapacity: 10000 + tileAmbientSound: TileDesertAmbience - type: tile id: FloorFlesh diff --git a/Resources/Prototypes/Tiles/planet.yml b/Resources/Prototypes/Tiles/planet.yml index c40b7964ef..3d0ffd21b5 100644 --- a/Resources/Prototypes/Tiles/planet.yml +++ b/Resources/Prototypes/Tiles/planet.yml @@ -61,6 +61,7 @@ itemDrop: FloorTileItemGrass heatCapacity: 10000 weather: true + tileAmbientSound: TileForestAmbience # Lava - type: tile diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/closed.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/closed.png new file mode 100644 index 0000000000..c0029db80a Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/closed.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/closing.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/closing.png new file mode 100644 index 0000000000..0b53d22a6a Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/closing.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/construction.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/construction.png new file mode 100644 index 0000000000..3e6893ba8c Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/construction.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/lights_bolts.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/lights_bolts.png new file mode 100644 index 0000000000..9640d3b0d5 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/lights_bolts.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/lights_closing.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/lights_closing.png new file mode 100644 index 0000000000..b1f47753cc Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/lights_closing.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/lights_denied.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/lights_denied.png new file mode 100644 index 0000000000..26cb47f545 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/lights_denied.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/lights_emergency.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/lights_emergency.png new file mode 100644 index 0000000000..61322daae8 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/lights_emergency.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/lights_opening.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/lights_opening.png new file mode 100644 index 0000000000..a2b4d0a47d Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/lights_opening.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/meta.json b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/meta.json new file mode 100644 index 0000000000..3997c53b29 --- /dev/null +++ b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/meta.json @@ -0,0 +1,178 @@ +{ + "version": 1, + "size": { + "x": 64, + "y": 32 + }, + "states": [ + { + "name": "lights_opening", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "lights_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "lights_bolts" + }, + { + "name": "lights_denied", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "lights_emergency", + "delays": [ + [ + 1.2, + 1.2 + ] + ] + }, + { + "name": "panel_closed" + }, + { + "name": "panel_closed_protected" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_opening_protected", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_closing_protected", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_c1" + }, + { + "name": "panel_c2" + }, + { + "name": "panel_c3" + }, + { + "name": "welded" + }, + { + "name": "sealed" + }, + { + "name": "closed" + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "construction" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/open.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/open.png new file mode 100644 index 0000000000..99e35a2605 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/open.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/opening.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/opening.png new file mode 100644 index 0000000000..5853da47ba Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/opening.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_c1.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_c1.png new file mode 100644 index 0000000000..596d6aabd7 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_c1.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_c2.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_c2.png new file mode 100644 index 0000000000..5d6e6eec1d Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_c2.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_c3.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_c3.png new file mode 100644 index 0000000000..a441df6444 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_c3.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_closed.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_closed.png new file mode 100644 index 0000000000..c1cc86db4e Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_closed.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_closed_protected.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_closed_protected.png new file mode 100644 index 0000000000..513aed537a Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_closed_protected.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_closing.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_closing.png new file mode 100644 index 0000000000..73a1df766a Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_closing.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_closing_protected.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_closing_protected.png new file mode 100644 index 0000000000..032c927e6d Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_closing_protected.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_opening.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_opening.png new file mode 100644 index 0000000000..9960d48195 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_opening.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_opening_protected.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_opening_protected.png new file mode 100644 index 0000000000..7e6f330fcc Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/panel_opening_protected.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/sealed.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/sealed.png new file mode 100644 index 0000000000..befe24f256 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/sealed.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/sparks.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/sparks.png new file mode 100644 index 0000000000..4e1fab6403 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/sparks.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/welded.png b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/welded.png new file mode 100644 index 0000000000..918c4a957f Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Doors/glass_large.rsi/welded.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence0.png b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence0.png new file mode 100644 index 0000000000..806e39fb10 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence0.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence1.png b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence1.png new file mode 100644 index 0000000000..d1e29660c4 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence1.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence2.png b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence2.png new file mode 100644 index 0000000000..8cf67c8c4b Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence2.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence3.png b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence3.png new file mode 100644 index 0000000000..8cb6d8584e Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence3.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence4.png b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence4.png new file mode 100644 index 0000000000..1362bb5177 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence4.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence5.png b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence5.png new file mode 100644 index 0000000000..15df27c96e Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence5.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence6.png b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence6.png new file mode 100644 index 0000000000..9dcaf23fc9 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence6.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence7.png b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence7.png new file mode 100644 index 0000000000..b0bea7373d Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/fence7.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/full.png b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/full.png new file mode 100644 index 0000000000..a700a01181 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/full.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/meta.json b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/meta.json new file mode 100644 index 0000000000..83c963a87c --- /dev/null +++ b/Resources/Textures/CM-SS14/Structures/Obstacles/fence_marine.rsi/meta.json @@ -0,0 +1,46 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://gitlab.com/cmdevs/ColonialMarines", + "states": [ + { + "name": "fence0", + "directions": 4 + }, + { + "name": "fence1", + "directions": 4 + }, + { + "name": "fence2", + "directions": 4 + }, + { + "name": "fence3", + "directions": 4 + }, + { + "name": "fence4", + "directions": 4 + }, + { + "name": "fence5", + "directions": 4 + }, + { + "name": "fence6", + "directions": 4 + }, + { + "name": "fence7", + "directions": 4 + }, + { + "name": "full" + } + ] +} diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/full.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/full.png new file mode 100644 index 0000000000..ff8f03bc41 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/full.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/meta.json b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/meta.json new file mode 100644 index 0000000000..b192697aae --- /dev/null +++ b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/meta.json @@ -0,0 +1,47 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://gitlab.com/cmdevs/ColonialMarines", + "states": [ + { + "name": "full", + "directions": 1 + }, + { + "name": "testwall0", + "directions": 4 + }, + { + "name": "testwall1", + "directions": 4 + }, + { + "name": "testwall2", + "directions": 4 + }, + { + "name": "testwall3", + "directions": 4 + }, + { + "name": "testwall4", + "directions": 4 + }, + { + "name": "testwall5", + "directions": 4 + }, + { + "name": "testwall6", + "directions": 4 + }, + { + "name": "testwall7", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall0.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall0.png new file mode 100644 index 0000000000..1545c650fc Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall0.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall1.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall1.png new file mode 100644 index 0000000000..49dd73a0ee Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall1.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall2.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall2.png new file mode 100644 index 0000000000..1545c650fc Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall2.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall3.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall3.png new file mode 100644 index 0000000000..49dd73a0ee Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall3.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall4.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall4.png new file mode 100644 index 0000000000..0720ed43cb Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall4.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall5.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall5.png new file mode 100644 index 0000000000..4f32592036 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall5.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall6.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall6.png new file mode 100644 index 0000000000..0720ed43cb Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall6.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall7.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall7.png new file mode 100644 index 0000000000..7d782209f7 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer.rsi/testwall7.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/full.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/full.png new file mode 100644 index 0000000000..a55a30498e Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/full.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/meta.json b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/meta.json new file mode 100644 index 0000000000..b192697aae --- /dev/null +++ b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/meta.json @@ -0,0 +1,47 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://gitlab.com/cmdevs/ColonialMarines", + "states": [ + { + "name": "full", + "directions": 1 + }, + { + "name": "testwall0", + "directions": 4 + }, + { + "name": "testwall1", + "directions": 4 + }, + { + "name": "testwall2", + "directions": 4 + }, + { + "name": "testwall3", + "directions": 4 + }, + { + "name": "testwall4", + "directions": 4 + }, + { + "name": "testwall5", + "directions": 4 + }, + { + "name": "testwall6", + "directions": 4 + }, + { + "name": "testwall7", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall0.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall0.png new file mode 100644 index 0000000000..7010e6e1e6 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall0.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall1.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall1.png new file mode 100644 index 0000000000..c3dbf22de4 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall1.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall2.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall2.png new file mode 100644 index 0000000000..1d45b1b9a9 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall2.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall3.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall3.png new file mode 100644 index 0000000000..38721bc0c5 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall3.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall4.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall4.png new file mode 100644 index 0000000000..5f3ed727bc Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall4.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall5.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall5.png new file mode 100644 index 0000000000..7c82d80c5b Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall5.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall6.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall6.png new file mode 100644 index 0000000000..b0a93c7f55 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall6.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall7.png b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall7.png new file mode 100644 index 0000000000..4ac3311b04 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Walls/almayer_white.rsi/testwall7.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window0.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window0.png new file mode 100644 index 0000000000..15f9ab5f7c Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window0.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window1.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window1.png new file mode 100644 index 0000000000..b79fa9a012 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window1.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window2.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window2.png new file mode 100644 index 0000000000..1648a4cf80 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window2.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window3.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window3.png new file mode 100644 index 0000000000..123ceb59f0 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window3.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window4.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window4.png new file mode 100644 index 0000000000..c4bc782a85 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window4.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window5.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window5.png new file mode 100644 index 0000000000..109dbf44d6 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window5.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window6.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window6.png new file mode 100644 index 0000000000..fcd7bd6dc5 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window6.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window7.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window7.png new file mode 100644 index 0000000000..d7e3b8cb27 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/alm_window7.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/full.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/full.png new file mode 100644 index 0000000000..1349e89560 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/full.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/meta.json b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/meta.json new file mode 100644 index 0000000000..0858b2eb47 --- /dev/null +++ b/Resources/Textures/CM-SS14/Structures/Windows/alm_window.rsi/meta.json @@ -0,0 +1,47 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://gitlab.com/cmdevs/ColonialMarines", + "states": [ + { + "name": "full", + "directions": 1 + }, + { + "name": "alm_window0", + "directions": 4 + }, + { + "name": "alm_window1", + "directions": 4 + }, + { + "name": "alm_window2", + "directions": 4 + }, + { + "name": "alm_window3", + "directions": 4 + }, + { + "name": "alm_window4", + "directions": 4 + }, + { + "name": "alm_window5", + "directions": 4 + }, + { + "name": "alm_window6", + "directions": 4 + }, + { + "name": "alm_window7", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window0.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window0.png new file mode 100644 index 0000000000..a2c04245de Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window0.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window1.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window1.png new file mode 100644 index 0000000000..6148c3be02 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window1.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window2.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window2.png new file mode 100644 index 0000000000..96517f6071 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window2.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window3.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window3.png new file mode 100644 index 0000000000..04d8b333ae Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window3.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window4.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window4.png new file mode 100644 index 0000000000..94900d53fd Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window4.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window5.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window5.png new file mode 100644 index 0000000000..109dbf44d6 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window5.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window6.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window6.png new file mode 100644 index 0000000000..3fc72bccdd Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window6.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window7.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window7.png new file mode 100644 index 0000000000..d7e3b8cb27 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/alm_window7.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/full.png b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/full.png new file mode 100644 index 0000000000..87628c4fe4 Binary files /dev/null and b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/full.png differ diff --git a/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/meta.json b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/meta.json new file mode 100644 index 0000000000..0858b2eb47 --- /dev/null +++ b/Resources/Textures/CM-SS14/Structures/Windows/alm_window_white.rsi/meta.json @@ -0,0 +1,47 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://gitlab.com/cmdevs/ColonialMarines", + "states": [ + { + "name": "full", + "directions": 1 + }, + { + "name": "alm_window0", + "directions": 4 + }, + { + "name": "alm_window1", + "directions": 4 + }, + { + "name": "alm_window2", + "directions": 4 + }, + { + "name": "alm_window3", + "directions": 4 + }, + { + "name": "alm_window4", + "directions": 4 + }, + { + "name": "alm_window5", + "directions": 4 + }, + { + "name": "alm_window6", + "directions": 4 + }, + { + "name": "alm_window7", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/CM-SS14/Tiles/almayer_ai_floors.png b/Resources/Textures/CM-SS14/Tiles/almayer_ai_floors.png new file mode 100644 index 0000000000..20a6c508bd Binary files /dev/null and b/Resources/Textures/CM-SS14/Tiles/almayer_ai_floors.png differ diff --git a/Resources/Textures/CM-SS14/Tiles/almayer_catwalk.png b/Resources/Textures/CM-SS14/Tiles/almayer_catwalk.png new file mode 100644 index 0000000000..542f863d0b Binary files /dev/null and b/Resources/Textures/CM-SS14/Tiles/almayer_catwalk.png differ diff --git a/Resources/Textures/CM-SS14/Tiles/almayer_outerhull.png b/Resources/Textures/CM-SS14/Tiles/almayer_outerhull.png new file mode 100644 index 0000000000..1782ff21fc Binary files /dev/null and b/Resources/Textures/CM-SS14/Tiles/almayer_outerhull.png differ diff --git a/Resources/Textures/CM-SS14/Tiles/almayer_plate.png b/Resources/Textures/CM-SS14/Tiles/almayer_plate.png new file mode 100644 index 0000000000..d8408b4ffb Binary files /dev/null and b/Resources/Textures/CM-SS14/Tiles/almayer_plate.png differ diff --git a/Resources/Textures/CM-SS14/Tiles/almayer_plate_darker.png b/Resources/Textures/CM-SS14/Tiles/almayer_plate_darker.png new file mode 100644 index 0000000000..abfb74979f Binary files /dev/null and b/Resources/Textures/CM-SS14/Tiles/almayer_plate_darker.png differ diff --git a/Resources/Textures/CM-SS14/Tiles/almayer_plating.png b/Resources/Textures/CM-SS14/Tiles/almayer_plating.png new file mode 100644 index 0000000000..f8605f12b9 Binary files /dev/null and b/Resources/Textures/CM-SS14/Tiles/almayer_plating.png differ diff --git a/Resources/Textures/CM-SS14/Tiles/almayer_steel.png b/Resources/Textures/CM-SS14/Tiles/almayer_steel.png new file mode 100644 index 0000000000..c66018949a Binary files /dev/null and b/Resources/Textures/CM-SS14/Tiles/almayer_steel.png differ diff --git a/Resources/Textures/CM-SS14/Tiles/almayer_sterile.png b/Resources/Textures/CM-SS14/Tiles/almayer_sterile.png new file mode 100644 index 0000000000..b939401630 Binary files /dev/null and b/Resources/Textures/CM-SS14/Tiles/almayer_sterile.png differ diff --git a/Resources/Textures/CM-SS14/Tiles/almayer_sterile_green.png b/Resources/Textures/CM-SS14/Tiles/almayer_sterile_green.png new file mode 100644 index 0000000000..89fcf798a4 Binary files /dev/null and b/Resources/Textures/CM-SS14/Tiles/almayer_sterile_green.png differ diff --git a/Resources/Textures/CM-SS14/Tiles/almayer_white_sterile.png b/Resources/Textures/CM-SS14/Tiles/almayer_white_sterile.png new file mode 100644 index 0000000000..416f588cb5 Binary files /dev/null and b/Resources/Textures/CM-SS14/Tiles/almayer_white_sterile.png differ diff --git a/Resources/Textures/CM-SS14/Tiles/almayer_wood.png b/Resources/Textures/CM-SS14/Tiles/almayer_wood.png new file mode 100644 index 0000000000..1b0dba34a2 Binary files /dev/null and b/Resources/Textures/CM-SS14/Tiles/almayer_wood.png differ diff --git a/Resources/Textures/Interface/Default/Slots/socks.png b/Resources/Textures/Interface/Default/Slots/socks.png new file mode 100644 index 0000000000..8845a8e9ed Binary files /dev/null and b/Resources/Textures/Interface/Default/Slots/socks.png differ diff --git a/Resources/Textures/Interface/Default/Slots/underpants.png b/Resources/Textures/Interface/Default/Slots/underpants.png new file mode 100644 index 0000000000..abbed00acb Binary files /dev/null and b/Resources/Textures/Interface/Default/Slots/underpants.png differ diff --git a/Resources/Textures/Interface/Default/Slots/undershirt.png b/Resources/Textures/Interface/Default/Slots/undershirt.png new file mode 100644 index 0000000000..26f56e2cfb Binary files /dev/null and b/Resources/Textures/Interface/Default/Slots/undershirt.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/meta.json b/Resources/Textures/SimpleStation14/Clothing/Under/meta.json new file mode 100644 index 0000000000..00420859a9 --- /dev/null +++ b/Resources/Textures/SimpleStation14/Clothing/Under/meta.json @@ -0,0 +1,736 @@ +{ + "version": 1, + "size": { "x": 32, "y": 32 }, + "states": [ + { + "name": "assblastusa_knee", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "assblastusa_thigh", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "babydoll", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "band", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bee_knee", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bee_norm", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bee_shirt", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bee_shorts", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bee_thigh", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "blueshirtsport", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bowling", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bowlinga", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bowlingp", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bowlingw", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "boxer_briefs", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "boxers", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "boxers_assblastusa", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "boxers_commie", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "boxers_heart", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "boxers_striped", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "boxers_uk", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bra", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bra_alt", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bra_assblastusa", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bra_bee-kini", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bra_binder", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bra_binder_strapless", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bra_commie", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bra_kinky", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bra_neko", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bra_strapless", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bra_strapless_alt", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bra_swimming", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bra_swimming_alt", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bra_thin", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "bra_uk", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "briefs", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "candycaneg_knee", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "candycaneg_norm", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "candycaneg_thigh", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "candycaner_knee", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "candycaner_norm", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "candycaner_thigh", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "christmas_knee", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "christmas_norm", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "christmas_thigh", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "commie_knee", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "commie_thigh", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "cowboyshirt", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "cowboyshirt_navy", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "cowboyshirt_navys", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "cowboyshirt_red", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "cowboyshirt_reds", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "cowboyshirt_s", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "cowboyshirt_white", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "cowboyshirt_whites", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "fishnet", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "fishnet_body", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "fishnet_gloves", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "fishnet_lower", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "fishnet_sleeves", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "garter", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "greenshirtsport", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "halterneck_bra", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "ian", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "ilovent", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "jockstrap", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "ljonb", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "ljont", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "longstripe", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "longstripe_blue", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "lover", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "mankini", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "matroska", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "panties", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "panties_alt", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "panties_assblastusa", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "panties_bee-kini", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "panties_commie", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "panties_kinky", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "panties_neko", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "panties_slim", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "panties_swimming", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "panties_thin", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "panties_uk", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "pantyhose", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "pantyhose_ripped", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "peace", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "pogoman", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "polo", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "rainbow_knee", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "rainbow_thigh", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "redshirtsport", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "shibari", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "shibari_sleeves", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "shirt_alien", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "shirt_assblastusa", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "shirt_bluejersey", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "shirt_clown", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "shirt_commie", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "shirt_meat", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "shirt_nano", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "shirt_question", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "shirt_redjersey", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "shirt_skull", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "shirt_ss13", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "shirt_stripes", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "shirt_tiedye", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "shortsleeve", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "socks_knee", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "socks_norm", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "socks_short", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "socks_thigh", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "sports_bra", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "sports_bra_alt", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "stockings_blue", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "stockings_cyan", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "stockings_green", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "stockings_lpink", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "stockings_orange", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "stockings_purple", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "stockings_yellow", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "striped_bra", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "striped_knee", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "striped_panties", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "striped_thigh", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "swimming_black", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "swimming_blue", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "swimming_red", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "tank_fire", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "tank_midriff", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "tank_midriff_alt", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "tank_rainbow", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "tank_stripes", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "tank_sun", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "tanktop", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "tanktop_alt", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "thin_knee", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "thin_thigh", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "thong", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "thong_babydoll", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "tubetop", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "uk", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "uk_knee", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "uk_thigh", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + }, + { + "name": "undershirt", + "directions": 4, + "delays": [[1.0], [1.0], [1.0], [1.0]] + } + ] +} diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/assblastusa_knee.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/assblastusa_knee.png new file mode 100644 index 0000000000..a9e5d8a320 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/assblastusa_knee.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/assblastusa_thigh.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/assblastusa_thigh.png new file mode 100644 index 0000000000..9171c89640 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/assblastusa_thigh.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/bee_knee.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/bee_knee.png new file mode 100644 index 0000000000..c36438f066 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/bee_knee.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/bee_norm.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/bee_norm.png new file mode 100644 index 0000000000..b60eadb943 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/bee_norm.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/bee_thigh.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/bee_thigh.png new file mode 100644 index 0000000000..bd34f04ed8 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/bee_thigh.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaneg_knee.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaneg_knee.png new file mode 100644 index 0000000000..41bcca9e3a Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaneg_knee.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaneg_norm.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaneg_norm.png new file mode 100644 index 0000000000..9529f1dabf Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaneg_norm.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaneg_thigh.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaneg_thigh.png new file mode 100644 index 0000000000..ff97dd80fb Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaneg_thigh.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaner_knee.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaner_knee.png new file mode 100644 index 0000000000..8946028049 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaner_knee.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaner_norm.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaner_norm.png new file mode 100644 index 0000000000..c2ab51177f Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaner_norm.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaner_thigh.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaner_thigh.png new file mode 100644 index 0000000000..36f0643506 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/candycaner_thigh.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/christmas_knee.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/christmas_knee.png new file mode 100644 index 0000000000..1af126d5dc Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/christmas_knee.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/christmas_norm.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/christmas_norm.png new file mode 100644 index 0000000000..decd8b6503 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/christmas_norm.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/christmas_thigh.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/christmas_thigh.png new file mode 100644 index 0000000000..522131197b Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/christmas_thigh.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/commie_knee.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/commie_knee.png new file mode 100644 index 0000000000..e98b923140 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/commie_knee.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/commie_thigh.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/commie_thigh.png new file mode 100644 index 0000000000..c2e6fed9a2 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/commie_thigh.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/fishnet.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/fishnet.png new file mode 100644 index 0000000000..7cbd922b04 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/fishnet.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/garter.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/garter.png new file mode 100644 index 0000000000..ec04a7a8ba Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/garter.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/meta.json b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/meta.json new file mode 100644 index 0000000000..837043b20b --- /dev/null +++ b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/meta.json @@ -0,0 +1,158 @@ +{ + "version": 1, + "size": { "x": 32, "y": 32 }, + "states": [ + { + "name": "assblastusa_knee", + "directions": 4 + }, + { + "name": "assblastusa_thigh", + "directions": 4 + }, + { + "name": "bee_knee", + "directions": 4 + }, + { + "name": "bee_norm", + "directions": 4 + }, + { + "name": "bee_thigh", + "directions": 4 + }, + { + "name": "candycaneg_knee", + "directions": 4 + }, + { + "name": "candycaneg_norm", + "directions": 4 + }, + { + "name": "candycaneg_thigh", + "directions": 4 + }, + { + "name": "candycaner_knee", + "directions": 4 + }, + { + "name": "candycaner_norm", + "directions": 4 + }, + { + "name": "candycaner_thigh", + "directions": 4 + }, + { + "name": "christmas_knee", + "directions": 4 + }, + { + "name": "christmas_norm", + "directions": 4 + }, + { + "name": "christmas_thigh", + "directions": 4 + }, + { + "name": "commie_knee", + "directions": 4 + }, + { + "name": "commie_thigh", + "directions": 4 + }, + { + "name": "fishnet", + "directions": 4 + }, + { + "name": "garter", + "directions": 4 + }, + { + "name": "rainbow_knee", + "directions": 4 + }, + { + "name": "rainbow_thigh", + "directions": 4 + }, + { + "name": "socks_knee", + "directions": 4 + }, + { + "name": "socks_norm", + "directions": 4 + }, + { + "name": "socks_short", + "directions": 4 + }, + { + "name": "socks_thigh", + "directions": 4 + }, + { + "name": "stockings_blue", + "directions": 4 + }, + { + "name": "stockings_cyan", + "directions": 4 + }, + { + "name": "stockings_dpink", + "directions": 4 + }, + { + "name": "stockings_green", + "directions": 4 + }, + { + "name": "stockings_lpink", + "directions": 4 + }, + { + "name": "stockings_orange", + "directions": 4 + }, + { + "name": "stockings_purple", + "directions": 4 + }, + { + "name": "stockings_yellow", + "directions": 4 + }, + { + "name": "striped_knee", + "directions": 4 + }, + { + "name": "striped_thigh", + "directions": 4 + }, + { + "name": "thin_knee", + "directions": 4 + }, + { + "name": "thin_thigh", + "directions": 4 + }, + { + "name": "uk_knee", + "directions": 4 + }, + { + "name": "uk_thigh", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/rainbow_knee.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/rainbow_knee.png new file mode 100644 index 0000000000..76c918d261 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/rainbow_knee.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/rainbow_thigh.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/rainbow_thigh.png new file mode 100644 index 0000000000..c233dad89c Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/rainbow_thigh.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/socks_knee.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/socks_knee.png new file mode 100644 index 0000000000..6fe8c4bb7d Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/socks_knee.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/socks_norm.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/socks_norm.png new file mode 100644 index 0000000000..e601c9bd5b Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/socks_norm.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/socks_short.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/socks_short.png new file mode 100644 index 0000000000..ec3630d940 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/socks_short.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/socks_thigh.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/socks_thigh.png new file mode 100644 index 0000000000..5523646f61 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/socks_thigh.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_blue.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_blue.png new file mode 100644 index 0000000000..f425d42dd0 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_blue.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_cyan.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_cyan.png new file mode 100644 index 0000000000..3cc893554a Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_cyan.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_dpink.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_dpink.png new file mode 100644 index 0000000000..3f92ffbab1 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_dpink.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_green.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_green.png new file mode 100644 index 0000000000..8fc2aada7e Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_green.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_lpink.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_lpink.png new file mode 100644 index 0000000000..ebefb23bea Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_lpink.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_orange.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_orange.png new file mode 100644 index 0000000000..ba03958882 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_orange.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_purple.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_purple.png new file mode 100644 index 0000000000..56fd50b7f3 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_purple.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_yellow.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_yellow.png new file mode 100644 index 0000000000..4fd8e4862b Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/stockings_yellow.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/striped_knee.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/striped_knee.png new file mode 100644 index 0000000000..2533f59017 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/striped_knee.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/striped_thigh.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/striped_thigh.png new file mode 100644 index 0000000000..f801d7b030 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/striped_thigh.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/thin_knee.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/thin_knee.png new file mode 100644 index 0000000000..72b66666fa Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/thin_knee.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/thin_thigh.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/thin_thigh.png new file mode 100644 index 0000000000..a2666bedd5 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/thin_thigh.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/uk_knee.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/uk_knee.png new file mode 100644 index 0000000000..bbe5561c95 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/uk_knee.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/uk_thigh.png b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/uk_thigh.png new file mode 100644 index 0000000000..7f16fa0bff Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/socks.rsi/uk_thigh.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/bee_shorts.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/bee_shorts.png new file mode 100644 index 0000000000..e03b677538 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/bee_shorts.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxer_briefs.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxer_briefs.png new file mode 100644 index 0000000000..5064849a75 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxer_briefs.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers.png new file mode 100644 index 0000000000..f0a7a49b83 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers_assblastusa.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers_assblastusa.png new file mode 100644 index 0000000000..8ccbf0bdb4 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers_assblastusa.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers_commie.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers_commie.png new file mode 100644 index 0000000000..35294c1213 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers_commie.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers_heart.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers_heart.png new file mode 100644 index 0000000000..8108fe7a50 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers_heart.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers_striped.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers_striped.png new file mode 100644 index 0000000000..7aaddc05d9 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers_striped.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers_uk.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers_uk.png new file mode 100644 index 0000000000..c926dbf4b0 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/boxers_uk.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/briefs.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/briefs.png new file mode 100644 index 0000000000..6793ca049d Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/briefs.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/fishnet_lower.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/fishnet_lower.png new file mode 100644 index 0000000000..d06b8707c0 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/fishnet_lower.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/jockstrap.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/jockstrap.png new file mode 100644 index 0000000000..e13def2edc Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/jockstrap.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/ljonb.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/ljonb.png new file mode 100644 index 0000000000..19eeb8cb78 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/ljonb.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/meta.json b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/meta.json new file mode 100644 index 0000000000..64b0f2cc08 --- /dev/null +++ b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/meta.json @@ -0,0 +1,118 @@ +{ + "version": 1, + "size": { "x": 32, "y": 32 }, + "states": [ + { + "name": "bee_shorts", + "directions": 4 + }, + { + "name": "boxer_briefs", + "directions": 4 + }, + { + "name": "boxers_assblastusa", + "directions": 4 + }, + { + "name": "boxers_commie", + "directions": 4 + }, + { + "name": "boxers_heart", + "directions": 4 + }, + { + "name": "boxers_striped", + "directions": 4 + }, + { + "name": "boxers_uk", + "directions": 4 + }, + { + "name": "boxers", + "directions": 4 + }, + { + "name": "briefs", + "directions": 4 + }, + { + "name": "fishnet_lower", + "directions": 4 + }, + { + "name": "jockstrap", + "directions": 4 + }, + { + "name": "ljonb", + "directions": 4 + }, + { + "name": "panties_alt", + "directions": 4 + }, + { + "name": "panties_assblastusa", + "directions": 4 + }, + { + "name": "panties_bee-kini", + "directions": 4 + }, + { + "name": "panties_commie", + "directions": 4 + }, + { + "name": "panties_kinky", + "directions": 4 + }, + { + "name": "panties_neko", + "directions": 4 + }, + { + "name": "panties_slim", + "directions": 4 + }, + { + "name": "panties_swimming", + "directions": 4 + }, + { + "name": "panties_thin", + "directions": 4 + }, + { + "name": "panties_uk", + "directions": 4 + }, + { + "name": "panties", + "directions": 4 + }, + { + "name": "pantyhose_ripped", + "directions": 4 + }, + { + "name": "pantyhose", + "directions": 4 + }, + { + "name": "striped_panties", + "directions": 4 + }, + { + "name": "thong_babydoll", + "directions": 4 + }, + { + "name": "thong", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties.png new file mode 100644 index 0000000000..52c8ab0132 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_alt.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_alt.png new file mode 100644 index 0000000000..f5d7dd92b3 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_alt.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_assblastusa.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_assblastusa.png new file mode 100644 index 0000000000..d0302ae619 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_assblastusa.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_bee-kini.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_bee-kini.png new file mode 100644 index 0000000000..cdb7ab606d Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_bee-kini.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_commie.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_commie.png new file mode 100644 index 0000000000..1a85ab1b06 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_commie.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_kinky.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_kinky.png new file mode 100644 index 0000000000..cbb43cb0aa Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_kinky.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_neko.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_neko.png new file mode 100644 index 0000000000..65383a00ca Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_neko.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_slim.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_slim.png new file mode 100644 index 0000000000..e0c9c18908 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_slim.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_swimming.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_swimming.png new file mode 100644 index 0000000000..e7c54001e7 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_swimming.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_thin.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_thin.png new file mode 100644 index 0000000000..8eb33b3847 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_thin.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_uk.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_uk.png new file mode 100644 index 0000000000..49f0f7d65d Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/panties_uk.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/pantyhose.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/pantyhose.png new file mode 100644 index 0000000000..e3bd32ef30 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/pantyhose.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/pantyhose_ripped.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/pantyhose_ripped.png new file mode 100644 index 0000000000..e72ec5e28d Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/pantyhose_ripped.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/striped_panties.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/striped_panties.png new file mode 100644 index 0000000000..52b6af6075 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/striped_panties.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/thong.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/thong.png new file mode 100644 index 0000000000..293a05e2da Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/thong.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/thong_babydoll.png b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/thong_babydoll.png new file mode 100644 index 0000000000..d4ee1d5b7c Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/underpants.rsi/thong_babydoll.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/babydoll.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/babydoll.png new file mode 100644 index 0000000000..425b3cdec9 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/babydoll.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/band.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/band.png new file mode 100644 index 0000000000..ddeed881b3 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/band.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bee_shirt.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bee_shirt.png new file mode 100644 index 0000000000..38aeade2fa Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bee_shirt.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/blueshirtsport.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/blueshirtsport.png new file mode 100644 index 0000000000..36301d5d12 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/blueshirtsport.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bowling.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bowling.png new file mode 100644 index 0000000000..fea32eaa29 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bowling.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bowlinga.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bowlinga.png new file mode 100644 index 0000000000..2a920de815 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bowlinga.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bowlingp.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bowlingp.png new file mode 100644 index 0000000000..cbc592e503 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bowlingp.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bowlingw.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bowlingw.png new file mode 100644 index 0000000000..9b8ecfc802 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bowlingw.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra.png new file mode 100644 index 0000000000..baa2264c2f Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_alt.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_alt.png new file mode 100644 index 0000000000..191f9f65a3 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_alt.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_assblastusa.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_assblastusa.png new file mode 100644 index 0000000000..5e07c88215 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_assblastusa.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_bee-kini.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_bee-kini.png new file mode 100644 index 0000000000..d7d746d5f5 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_bee-kini.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_binder.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_binder.png new file mode 100644 index 0000000000..507e534869 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_binder.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_binder_strapless.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_binder_strapless.png new file mode 100644 index 0000000000..0d6adae984 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_binder_strapless.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_commie.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_commie.png new file mode 100644 index 0000000000..e4d8b9e874 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_commie.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_kinky.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_kinky.png new file mode 100644 index 0000000000..760ae1288e Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_kinky.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_neko.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_neko.png new file mode 100644 index 0000000000..18c1506295 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_neko.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_strapless.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_strapless.png new file mode 100644 index 0000000000..ad1fd420ee Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_strapless.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_strapless_alt.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_strapless_alt.png new file mode 100644 index 0000000000..b609f303b7 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_strapless_alt.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_swimming.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_swimming.png new file mode 100644 index 0000000000..5079b7c616 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_swimming.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_swimming_alt.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_swimming_alt.png new file mode 100644 index 0000000000..1b84cc7205 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_swimming_alt.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_thin.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_thin.png new file mode 100644 index 0000000000..9a4995e10d Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_thin.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_uk.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_uk.png new file mode 100644 index 0000000000..05f253c8f6 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/bra_uk.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt.png new file mode 100644 index 0000000000..2c3410132d Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_navy.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_navy.png new file mode 100644 index 0000000000..587699398e Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_navy.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_navys.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_navys.png new file mode 100644 index 0000000000..0e4fc88dab Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_navys.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_red.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_red.png new file mode 100644 index 0000000000..12a24acddb Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_red.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_reds.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_reds.png new file mode 100644 index 0000000000..c07c3d634f Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_reds.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_s.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_s.png new file mode 100644 index 0000000000..b7b64478d6 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_s.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_white.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_white.png new file mode 100644 index 0000000000..82307affee Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_white.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_whites.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_whites.png new file mode 100644 index 0000000000..872aba3459 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/cowboyshirt_whites.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/fishnet_body.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/fishnet_body.png new file mode 100644 index 0000000000..17bf171b4b Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/fishnet_body.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/fishnet_gloves.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/fishnet_gloves.png new file mode 100644 index 0000000000..58c7b57780 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/fishnet_gloves.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/fishnet_sleeves.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/fishnet_sleeves.png new file mode 100644 index 0000000000..b87755dcf7 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/fishnet_sleeves.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/greenshirtsport.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/greenshirtsport.png new file mode 100644 index 0000000000..3eca48a4e0 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/greenshirtsport.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/halterneck_bra.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/halterneck_bra.png new file mode 100644 index 0000000000..08cee6e16b Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/halterneck_bra.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/ian.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/ian.png new file mode 100644 index 0000000000..676846840a Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/ian.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/ilovent.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/ilovent.png new file mode 100644 index 0000000000..2bb11cd978 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/ilovent.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/ljont.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/ljont.png new file mode 100644 index 0000000000..49720f53a6 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/ljont.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/longstripe.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/longstripe.png new file mode 100644 index 0000000000..660a1ab2c6 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/longstripe.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/longstripe_blue.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/longstripe_blue.png new file mode 100644 index 0000000000..ebf5f00036 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/longstripe_blue.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/lover.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/lover.png new file mode 100644 index 0000000000..3c965c2eb5 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/lover.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/matroska.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/matroska.png new file mode 100644 index 0000000000..c19440220b Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/matroska.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/meta.json b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/meta.json new file mode 100644 index 0000000000..06796859e7 --- /dev/null +++ b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/meta.json @@ -0,0 +1,326 @@ +{ + "version": 1, + "size": { "x": 32, "y": 32 }, + "states": [ + { + "name": "babydoll", + "directions": 4 + }, + { + "name": "band", + "directions": 4 + }, + { + "name": "bee_shirt", + "directions": 4 + }, + { + "name": "blueshirtsport", + "directions": 4 + }, + { + "name": "bowling", + "directions": 4 + }, + { + "name": "bowlinga", + "directions": 4 + }, + { + "name": "bowlingp", + "directions": 4 + }, + { + "name": "bowlingw", + "directions": 4 + }, + { + "name": "bra_alt", + "directions": 4 + }, + { + "name": "bra_assblastusa", + "directions": 4 + }, + { + "name": "bra_bee-kini", + "directions": 4 + }, + { + "name": "bra_binder_strapless", + "directions": 4 + }, + { + "name": "bra_binder", + "directions": 4 + }, + { + "name": "bra_commie", + "directions": 4 + }, + { + "name": "bra_kinky", + "directions": 4 + }, + { + "name": "bra_neko", + "directions": 4 + }, + { + "name": "bra_strapless_alt", + "directions": 4 + }, + { + "name": "bra_strapless", + "directions": 4 + }, + { + "name": "bra_swimming_alt", + "directions": 4 + }, + { + "name": "bra_swimming", + "directions": 4 + }, + { + "name": "bra_thin", + "directions": 4 + }, + { + "name": "bra_uk", + "directions": 4 + }, + { + "name": "bra", + "directions": 4 + }, + { + "name": "cowboyshirt_navy", + "directions": 4 + }, + { + "name": "cowboyshirt_navys", + "directions": 4 + }, + { + "name": "cowboyshirt_red", + "directions": 4 + }, + { + "name": "cowboyshirt_reds", + "directions": 4 + }, + { + "name": "cowboyshirt_s", + "directions": 4 + }, + { + "name": "cowboyshirt_white", + "directions": 4 + }, + { + "name": "cowboyshirt_whites", + "directions": 4 + }, + { + "name": "cowboyshirt", + "directions": 4 + }, + { + "name": "fishnet_body", + "directions": 4 + }, + { + "name": "fishnet_gloves", + "directions": 4 + }, + { + "name": "fishnet_sleeves", + "directions": 4 + }, + { + "name": "greenshirtsport", + "directions": 4 + }, + { + "name": "halterneck_bra", + "directions": 4 + }, + { + "name": "ian", + "directions": 4 + }, + { + "name": "ilovent", + "directions": 4 + }, + { + "name": "ljont", + "directions": 4 + }, + { + "name": "longstripe_blue", + "directions": 4 + }, + { + "name": "longstripe", + "directions": 4 + }, + { + "name": "lover", + "directions": 4 + }, + { + "name": "matroska", + "directions": 4 + }, + { + "name": "peace", + "directions": 4 + }, + { + "name": "pogoman", + "directions": 4 + }, + { + "name": "polo", + "directions": 4 + }, + { + "name": "redshirtsport", + "directions": 4 + }, + { + "name": "shibari_sleeves", + "directions": 4 + }, + { + "name": "shibari", + "directions": 4 + }, + { + "name": "shirt_alien", + "directions": 4 + }, + { + "name": "shirt_assblastusa", + "directions": 4 + }, + { + "name": "shirt_bluejersey", + "directions": 4 + }, + { + "name": "shirt_clown", + "directions": 4 + }, + { + "name": "shirt_commie", + "directions": 4 + }, + { + "name": "shirt_meat", + "directions": 4 + }, + { + "name": "shirt_nano", + "directions": 4 + }, + { + "name": "shirt_question", + "directions": 4 + }, + { + "name": "shirt_redjersey", + "directions": 4 + }, + { + "name": "shirt_skull", + "directions": 4 + }, + { + "name": "shirt_ss13", + "directions": 4 + }, + { + "name": "shirt_stripes", + "directions": 4 + }, + { + "name": "shirt_tiedye", + "directions": 4 + }, + { + "name": "shortsleeve", + "directions": 4 + }, + { + "name": "sports_bra_alt", + "directions": 4 + }, + { + "name": "sports_bra", + "directions": 4 + }, + { + "name": "striped_bra", + "directions": 4 + }, + { + "name": "swimming_black", + "directions": 4 + }, + { + "name": "swimming_blue", + "directions": 4 + }, + { + "name": "swimming_red", + "directions": 4 + }, + { + "name": "tank_fire", + "directions": 4 + }, + { + "name": "tank_midriff_alt", + "directions": 4 + }, + { + "name": "tank_midriff", + "directions": 4 + }, + { + "name": "tank_rainbow", + "directions": 4 + }, + { + "name": "tank_stripes", + "directions": 4 + }, + { + "name": "tank_sun", + "directions": 4 + }, + { + "name": "tanktop_alt", + "directions": 4 + }, + { + "name": "tanktop", + "directions": 4 + }, + { + "name": "tubetop", + "directions": 4 + }, + { + "name": "uk", + "directions": 4 + }, + { + "name": "undershirt", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/peace.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/peace.png new file mode 100644 index 0000000000..481f151597 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/peace.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/pogoman.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/pogoman.png new file mode 100644 index 0000000000..ffce157f44 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/pogoman.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/polo.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/polo.png new file mode 100644 index 0000000000..9c6230407d Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/polo.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/redshirtsport.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/redshirtsport.png new file mode 100644 index 0000000000..7c97939287 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/redshirtsport.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shibari.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shibari.png new file mode 100644 index 0000000000..931b3dae09 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shibari.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shibari_sleeves.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shibari_sleeves.png new file mode 100644 index 0000000000..36b10235f0 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shibari_sleeves.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_alien.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_alien.png new file mode 100644 index 0000000000..454a342c07 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_alien.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_assblastusa.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_assblastusa.png new file mode 100644 index 0000000000..b240c04477 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_assblastusa.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_bluejersey.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_bluejersey.png new file mode 100644 index 0000000000..83cf7dced5 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_bluejersey.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_clown.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_clown.png new file mode 100644 index 0000000000..1106cec938 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_clown.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_commie.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_commie.png new file mode 100644 index 0000000000..35b2684cef Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_commie.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_meat.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_meat.png new file mode 100644 index 0000000000..851cd3dba5 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_meat.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_nano.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_nano.png new file mode 100644 index 0000000000..9195e58a78 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_nano.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_question.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_question.png new file mode 100644 index 0000000000..b5dcf8c36d Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_question.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_redjersey.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_redjersey.png new file mode 100644 index 0000000000..013d8d241d Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_redjersey.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_skull.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_skull.png new file mode 100644 index 0000000000..cd74daf4ee Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_skull.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_ss13.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_ss13.png new file mode 100644 index 0000000000..1d4a75c10c Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_ss13.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_stripes.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_stripes.png new file mode 100644 index 0000000000..8da6dbfc83 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_stripes.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_tiedye.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_tiedye.png new file mode 100644 index 0000000000..0e7b13c768 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shirt_tiedye.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shortsleeve.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shortsleeve.png new file mode 100644 index 0000000000..c880911e94 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/shortsleeve.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/sports_bra.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/sports_bra.png new file mode 100644 index 0000000000..8189173ad5 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/sports_bra.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/sports_bra_alt.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/sports_bra_alt.png new file mode 100644 index 0000000000..2e8aa0cdb8 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/sports_bra_alt.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/striped_bra.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/striped_bra.png new file mode 100644 index 0000000000..9e60af2ba0 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/striped_bra.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/swimming_black.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/swimming_black.png new file mode 100644 index 0000000000..0d1a0ca890 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/swimming_black.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/swimming_blue.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/swimming_blue.png new file mode 100644 index 0000000000..b5fa1b7c7c Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/swimming_blue.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/swimming_red.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/swimming_red.png new file mode 100644 index 0000000000..2806af9eab Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/swimming_red.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_fire.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_fire.png new file mode 100644 index 0000000000..bf0d499048 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_fire.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_midriff.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_midriff.png new file mode 100644 index 0000000000..58c3e91855 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_midriff.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_midriff_alt.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_midriff_alt.png new file mode 100644 index 0000000000..98dabd0d3b Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_midriff_alt.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_rainbow.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_rainbow.png new file mode 100644 index 0000000000..8289c7721d Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_rainbow.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_stripes.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_stripes.png new file mode 100644 index 0000000000..6e73f96c98 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_stripes.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_sun.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_sun.png new file mode 100644 index 0000000000..fad178bb82 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tank_sun.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tanktop.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tanktop.png new file mode 100644 index 0000000000..e20da0ee7b Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tanktop.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tanktop_alt.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tanktop_alt.png new file mode 100644 index 0000000000..b88e98096d Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tanktop_alt.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tubetop.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tubetop.png new file mode 100644 index 0000000000..419512b3b8 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/tubetop.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/uk.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/uk.png new file mode 100644 index 0000000000..4a5fd98d29 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/uk.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/undershirt.png b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/undershirt.png new file mode 100644 index 0000000000..d0a33e11bf Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/undershirts.rsi/undershirt.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/what.rsi/mankini.png b/Resources/Textures/SimpleStation14/Clothing/Under/what.rsi/mankini.png new file mode 100644 index 0000000000..36fedf40ba Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Under/what.rsi/mankini.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Under/what.rsi/meta.json b/Resources/Textures/SimpleStation14/Clothing/Under/what.rsi/meta.json new file mode 100644 index 0000000000..04ee7e76fc --- /dev/null +++ b/Resources/Textures/SimpleStation14/Clothing/Under/what.rsi/meta.json @@ -0,0 +1,10 @@ +{ + "version": 1, + "size": { "x": 32, "y": 32 }, + "states": [ + { + "name": "mankini", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/SimpleStation14/Mobs/Ghosts/ghost_admin.rsi/animated.png b/Resources/Textures/SimpleStation14/Mobs/Ghosts/ghost_admin.rsi/animated.png new file mode 100644 index 0000000000..4475f6af71 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Mobs/Ghosts/ghost_admin.rsi/animated.png differ diff --git a/Resources/Textures/SimpleStation14/Mobs/Ghosts/ghost_admin.rsi/icon.png b/Resources/Textures/SimpleStation14/Mobs/Ghosts/ghost_admin.rsi/icon.png new file mode 100644 index 0000000000..3c944c11e9 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Mobs/Ghosts/ghost_admin.rsi/icon.png differ diff --git a/Resources/Textures/SimpleStation14/Mobs/Ghosts/ghost_admin.rsi/meta.json b/Resources/Textures/SimpleStation14/Mobs/Ghosts/ghost_admin.rsi/meta.json new file mode 100644 index 0000000000..0633aa5787 --- /dev/null +++ b/Resources/Textures/SimpleStation14/Mobs/Ghosts/ghost_admin.rsi/meta.json @@ -0,0 +1,8 @@ +{ + "version": 1, + "size": { "x": 32, "y": 32 }, + "states": [ + { "name": "animated", "directions": 4, "delays": [[], [], [], []] }, + { "name": "icon", "directions": 4, "delays": [[], [], [], []] } + ] +} diff --git a/Resources/Textures/SimpleStation14/Shaders/color_tint.swsl b/Resources/Textures/SimpleStation14/Shaders/color_tint.swsl new file mode 100644 index 0000000000..6ec79cd1f0 --- /dev/null +++ b/Resources/Textures/SimpleStation14/Shaders/color_tint.swsl @@ -0,0 +1,47 @@ +light_mode unshaded; + +uniform sampler2D SCREEN_TEXTURE; +uniform lowp vec3 tint_color; // RGB color between 0 and 1 +uniform lowp float tint_amount; // number between 0 and 1 + +// function to convert RGB to HSV +highp vec3 rgb2hsv(highp vec3 c) +{ + highp vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); + highp vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); + highp vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); + + highp float d = q.x - min(q.w, q.y); + /* float e = 1.0e-10; */ + highp float e = 0.0000000001; + return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); +} + +// function to convert HSV to RGB +highp vec3 hsv2rgb(highp vec3 c) +{ + highp vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); + highp vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); + return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); +} + +void fragment() { + lowp vec3 tint_color = vec3(0.7, 0.1, 0.7); + lowp float tint_amount = 0.8; + + highp vec4 color = zTextureSpec(SCREEN_TEXTURE, FRAGCOORD.xy * SCREEN_PIXEL_SIZE); + + // convert color to HSV + highp vec3 hsv = rgb2hsv(color.rgb); + + // apply tint color hue + hsv.x = mix(hsv.x, tint_color.x ,tint_amount); + + // modify saturation based on tint color value + hsv.y = mix(hsv.y, 1.0 - tint_color.z ,tint_amount); + + // convert back to RGB + color.rgb = hsv2rgb(hsv); + + COLOR = color; +} diff --git a/Resources/Textures/SimpleStation14/Shaders/nightvision.swsl b/Resources/Textures/SimpleStation14/Shaders/nightvision.swsl new file mode 100644 index 0000000000..54ab8619ad --- /dev/null +++ b/Resources/Textures/SimpleStation14/Shaders/nightvision.swsl @@ -0,0 +1,38 @@ +light_mode unshaded; + +uniform sampler2D SCREEN_TEXTURE; +uniform highp vec3 tint; // Colour of the tint +uniform highp float luminance_threshold; // number between 0 and 1 +uniform highp float noise_amount; // number between 0 and 1 + +lowp float rand (lowp vec2 n) { + return 0.5 + 0.5 * fract (sin (dot (n.xy, vec2 (12.9898, 78.233)))* 43758.5453); +} + +void fragment() { + + highp vec4 color = zTextureSpec(SCREEN_TEXTURE, FRAGCOORD.xy * SCREEN_PIXEL_SIZE); + + // convert color to grayscale using luminance + highp float grey = dot(color.rgb, vec3(0.298, 0.5882, 0.1137)); + + // calculate local threshold + highp float threshold = grey * luminance_threshold; + + // amplify low luminance parts + if (grey < threshold) { + grey += (threshold - grey) * 0.5; + if (grey > 1.0) { + grey = 1.0; + } + } + + // apply night vision color tint + color.rgb = mix(color.rgb, tint, grey); + + // add some noise for realism + lowp float noise = rand(FRAGCOORD.xy + TIME) * noise_amount / 10; + color.rgb += noise; + + COLOR = color; +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/assembly.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/assembly.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/assembly.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/bolted_unlit.png new file mode 100644 index 0000000000..8af19f73cb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/closed.png new file mode 100644 index 0000000000..28f916ffd6 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/closed_unlit.png new file mode 100644 index 0000000000..e5045bba13 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/closing.png new file mode 100644 index 0000000000..a59b64a38c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/closing_unlit.png new file mode 100644 index 0000000000..b7082208a8 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/deny_unlit.png new file mode 100644 index 0000000000..65d28a1dc9 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/emergency_unlit.png new file mode 100644 index 0000000000..3960117b30 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/meta.json new file mode 100644 index 0000000000..9fca9d7ab8 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/meta.json @@ -0,0 +1,345 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit", + "directions": 4 + }, + { + "name": "closed", + "directions": 4 + }, + { + "name": "closed_unlit", + "directions": 4 + }, + { + "name": "closing", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "closing_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "directions": 4 + }, + { + "name": "opening", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "opening_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded", + "directions": 4 + }, + { + "name": "emergency_unlit", + "directions": 4, + "delays": [ + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/open.png new file mode 100644 index 0000000000..26b466288e Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/opening.png new file mode 100644 index 0000000000..09e08529f6 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/opening_unlit.png new file mode 100644 index 0000000000..14b0ff0341 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/panel_closing.png new file mode 100644 index 0000000000..7bbbb6dc82 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/panel_open.png new file mode 100644 index 0000000000..174a46ebcb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/panel_opening.png new file mode 100644 index 0000000000..6ced3ec8df Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/sparks.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/sparks.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks_broken.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/sparks_broken.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks_damaged.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/sparks_damaged.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/sparks_open.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/sparks_open.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/welded.png new file mode 100644 index 0000000000..d770fa9ffe Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/alpha_prep.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/assembly.png deleted file mode 100644 index c24585647e..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closed.png deleted file mode 100644 index 959b58471a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closed_unlit.png deleted file mode 100644 index c78d01c42d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closing.png deleted file mode 100644 index a2b6ac7e3a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/meta.json deleted file mode 100644 index b935f1e5e3..0000000000 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/meta.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/open.png deleted file mode 100644 index 61f9bb5c08..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/opening.png deleted file mode 100644 index d0f17a5e61..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/atmospherics.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/assembly.png deleted file mode 100644 index e00bac61a5..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/closed.png deleted file mode 100644 index 904395ea40..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/closed_unlit.png deleted file mode 100644 index c78d01c42d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/closing.png deleted file mode 100644 index 95c4cf190b..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/meta.json deleted file mode 100644 index 588d48b46e..0000000000 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/meta.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/open.png deleted file mode 100644 index 862c9940fc..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/opening.png deleted file mode 100644 index 753e1e8a9e..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/assembly.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/closed.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/assembly.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/bolted_unlit.png new file mode 100644 index 0000000000..8af19f73cb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/closed.png new file mode 100644 index 0000000000..0d7e5ee906 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/closed_unlit.png new file mode 100644 index 0000000000..e5045bba13 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/closing.png new file mode 100644 index 0000000000..ef19d534f2 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/closing_unlit.png new file mode 100644 index 0000000000..b7082208a8 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/deny_unlit.png new file mode 100644 index 0000000000..65d28a1dc9 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/emergency_unlit.png new file mode 100644 index 0000000000..3960117b30 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/meta.json new file mode 100644 index 0000000000..9fca9d7ab8 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/meta.json @@ -0,0 +1,345 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit", + "directions": 4 + }, + { + "name": "closed", + "directions": 4 + }, + { + "name": "closed_unlit", + "directions": 4 + }, + { + "name": "closing", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "closing_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "directions": 4 + }, + { + "name": "opening", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "opening_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded", + "directions": 4 + }, + { + "name": "emergency_unlit", + "directions": 4, + "delays": [ + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/open.png new file mode 100644 index 0000000000..13974f7c37 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/opening.png new file mode 100644 index 0000000000..7faf3716ee Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/opening_unlit.png new file mode 100644 index 0000000000..14b0ff0341 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/panel_closing.png new file mode 100644 index 0000000000..7bbbb6dc82 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/panel_open.png new file mode 100644 index 0000000000..174a46ebcb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/panel_opening.png new file mode 100644 index 0000000000..6ced3ec8df Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/sparks.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/sparks.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/sparks.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/sparks_broken.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/sparks_broken.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/sparks_damaged.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/sparks_damaged.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/basic.rsi/sparks_open.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/sparks_open.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/welded.png new file mode 100644 index 0000000000..d770fa9ffe Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/bravo_prep.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/assembly.png deleted file mode 100644 index e00bac61a5..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/closed.png deleted file mode 100644 index 9aaf1f688f..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/closed_unlit.png deleted file mode 100644 index c78d01c42d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/closing.png deleted file mode 100644 index e171ad6aea..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/meta.json deleted file mode 100644 index 588d48b46e..0000000000 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/meta.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/open.png deleted file mode 100644 index 5dff6a5e50..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/opening.png deleted file mode 100644 index bdd0150cf1..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/assembly.png new file mode 100644 index 0000000000..d61b8f17f0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/bolted_unlit.png new file mode 100644 index 0000000000..8af19f73cb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/closed.png new file mode 100644 index 0000000000..f16479b5f0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/closed_unlit.png new file mode 100644 index 0000000000..e5045bba13 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/closing.png new file mode 100644 index 0000000000..b84662bc34 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/closing_unlit.png new file mode 100644 index 0000000000..b7082208a8 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/deny_unlit.png new file mode 100644 index 0000000000..65d28a1dc9 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/emergency_unlit.png new file mode 100644 index 0000000000..3960117b30 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/meta.json new file mode 100644 index 0000000000..9fca9d7ab8 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/meta.json @@ -0,0 +1,345 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit", + "directions": 4 + }, + { + "name": "closed", + "directions": 4 + }, + { + "name": "closed_unlit", + "directions": 4 + }, + { + "name": "closing", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "closing_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "directions": 4 + }, + { + "name": "opening", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "opening_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded", + "directions": 4 + }, + { + "name": "emergency_unlit", + "directions": 4, + "delays": [ + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/open.png new file mode 100644 index 0000000000..ce4c4542a2 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/opening.png new file mode 100644 index 0000000000..d8c2bb54be Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/opening_unlit.png new file mode 100644 index 0000000000..14b0ff0341 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/panel_closing.png new file mode 100644 index 0000000000..7bbbb6dc82 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/panel_open.png new file mode 100644 index 0000000000..174a46ebcb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/panel_opening.png new file mode 100644 index 0000000000..6ced3ec8df Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/sparks.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/sparks.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks_broken.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/sparks_broken.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks_damaged.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/sparks_damaged.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/cargo.rsi/sparks_open.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/sparks_open.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/welded.png new file mode 100644 index 0000000000..d770fa9ffe Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/charlie_prep.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/assembly.png deleted file mode 100644 index f3dc26e53f..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/closed.png deleted file mode 100644 index 36df88f44c..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/closed_unlit.png deleted file mode 100644 index c78d01c42d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/closing.png deleted file mode 100644 index 5ec7f63312..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/meta.json deleted file mode 100644 index 588d48b46e..0000000000 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/meta.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/open.png deleted file mode 100644 index c771279653..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/opening.png deleted file mode 100644 index f8dfecba63..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/assembly.png new file mode 100644 index 0000000000..d61b8f17f0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/bolted_unlit.png new file mode 100644 index 0000000000..8af19f73cb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/closed.png new file mode 100644 index 0000000000..3ebdae9a58 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/closed_unlit.png new file mode 100644 index 0000000000..e5045bba13 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/closing.png new file mode 100644 index 0000000000..6aabd9f640 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/closing_unlit.png new file mode 100644 index 0000000000..b7082208a8 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/deny_unlit.png new file mode 100644 index 0000000000..65d28a1dc9 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/emergency_unlit.png new file mode 100644 index 0000000000..3960117b30 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/meta.json new file mode 100644 index 0000000000..9fca9d7ab8 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/meta.json @@ -0,0 +1,345 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit", + "directions": 4 + }, + { + "name": "closed", + "directions": 4 + }, + { + "name": "closed_unlit", + "directions": 4 + }, + { + "name": "closing", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "closing_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "directions": 4 + }, + { + "name": "opening", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "opening_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded", + "directions": 4 + }, + { + "name": "emergency_unlit", + "directions": 4, + "delays": [ + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/open.png new file mode 100644 index 0000000000..10d289d6e8 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/opening.png new file mode 100644 index 0000000000..b1bb89f700 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/opening_unlit.png new file mode 100644 index 0000000000..14b0ff0341 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/panel_closing.png new file mode 100644 index 0000000000..7bbbb6dc82 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/panel_open.png new file mode 100644 index 0000000000..174a46ebcb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/panel_opening.png new file mode 100644 index 0000000000..6ced3ec8df Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/sparks.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/sparks.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/sparks.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/sparks_broken.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/sparks_broken.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/sparks_damaged.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/sparks_damaged.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/command.rsi/sparks_open.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/sparks_open.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/welded.png new file mode 100644 index 0000000000..d770fa9ffe Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/delta_prep.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/assembly.png new file mode 100644 index 0000000000..d61b8f17f0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/bolted_unlit.png new file mode 100644 index 0000000000..8af19f73cb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/closed.png new file mode 100644 index 0000000000..da4db2f1a8 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/closed_unlit.png new file mode 100644 index 0000000000..e5045bba13 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/closing.png new file mode 100644 index 0000000000..e3a502e0ca Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/closing_unlit.png new file mode 100644 index 0000000000..b7082208a8 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/deny_unlit.png new file mode 100644 index 0000000000..65d28a1dc9 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/emergency_unlit.png new file mode 100644 index 0000000000..3960117b30 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/meta.json new file mode 100644 index 0000000000..9fca9d7ab8 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/meta.json @@ -0,0 +1,345 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit", + "directions": 4 + }, + { + "name": "closed", + "directions": 4 + }, + { + "name": "closed_unlit", + "directions": 4 + }, + { + "name": "closing", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "closing_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "directions": 4 + }, + { + "name": "opening", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "opening_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded", + "directions": 4 + }, + { + "name": "emergency_unlit", + "directions": 4, + "delays": [ + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/open.png new file mode 100644 index 0000000000..a9ccf6ba57 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/opening.png new file mode 100644 index 0000000000..35cf061c25 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/opening_unlit.png new file mode 100644 index 0000000000..14b0ff0341 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/panel_closing.png new file mode 100644 index 0000000000..7bbbb6dc82 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/panel_open.png new file mode 100644 index 0000000000..174a46ebcb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/panel_opening.png new file mode 100644 index 0000000000..6ced3ec8df Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/sparks.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/sparks.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks_broken.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/sparks_broken.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks_damaged.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/sparks_damaged.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/sparks_open.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/sparks_open.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/welded.png new file mode 100644 index 0000000000..d770fa9ffe Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/engi_glass.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/assembly.png deleted file mode 100644 index c24585647e..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/closed.png deleted file mode 100644 index efddf7ff2e..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/closed_unlit.png deleted file mode 100644 index c78d01c42d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/closing.png deleted file mode 100644 index fe9268a1de..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/meta.json deleted file mode 100644 index 588d48b46e..0000000000 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/meta.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/open.png deleted file mode 100644 index 09fec38bfa..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/opening.png deleted file mode 100644 index d5db1fa7de..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/engineering.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/assembly-fill.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/assembly-fill.png deleted file mode 100644 index 622e0de7a5..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/assembly-fill.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/assembly-glass.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/assembly-glass.png deleted file mode 100644 index 9ff21ca1b7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/assembly-glass.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/assembly.png deleted file mode 100644 index 5e2dae4c26..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closed-fill.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closed-fill.png deleted file mode 100644 index f5764f5f33..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closed-fill.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closed-glass.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closed-glass.png deleted file mode 100644 index 0d743b2d68..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closed-glass.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closed.png deleted file mode 100644 index d5243ea857..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closed_unlit.png deleted file mode 100644 index c78d01c42d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closing-fill.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closing-fill.png deleted file mode 100644 index c27c80657d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closing-fill.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closing-glass.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closing-glass.png deleted file mode 100644 index 64bcb035c6..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closing-glass.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closing-panel.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closing-panel.png deleted file mode 100644 index 64d41f1dba..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closing-panel.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closing.png deleted file mode 100644 index f48efb153a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closing_unlit.png deleted file mode 100644 index b835f51158..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/deny_unlit.png deleted file mode 100644 index a3a6eb30a5..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/meta.json deleted file mode 100644 index 9bb7e9bb72..0000000000 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/meta.json +++ /dev/null @@ -1,249 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "assembly-fill" - }, - { - "name": "assembly-glass" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closed-fill" - }, - { - "name": "closed-glass" - }, - { - "name": "panel_closed" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing-fill", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing-glass", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing-panel", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open" - }, - { - "name": "panel_open" - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening-fill", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening-glass", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening-panel", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/open.png deleted file mode 100644 index de9c757173..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/opening-fill.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/opening-fill.png deleted file mode 100644 index e176980142..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/opening-fill.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/opening-glass.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/opening-glass.png deleted file mode 100644 index a48b154c95..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/opening-glass.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/opening-panel.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/opening-panel.png deleted file mode 100644 index 6d3267c174..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/opening-panel.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/opening.png deleted file mode 100644 index 594f26a450..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/opening_unlit.png deleted file mode 100644 index b4ca46e425..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/panel_closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/panel_closed.png deleted file mode 100644 index 7fe48cc120..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/panel_closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/panel_open.png deleted file mode 100644 index 2603c4a720..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/sparks.png deleted file mode 100644 index e76a54328a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/welded.png deleted file mode 100644 index 3f3f14b078..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/assembly.png deleted file mode 100644 index a4dd56307c..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/closed.png deleted file mode 100644 index b4468aef4e..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/closed_unlit.png deleted file mode 100644 index c78d01c42d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/closing.png deleted file mode 100644 index 1ae0abf4c6..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/meta.json deleted file mode 100644 index 588d48b46e..0000000000 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/meta.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/open.png deleted file mode 100644 index 086bedbc60..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/opening.png deleted file mode 100644 index 296144e387..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/assembly.png deleted file mode 100644 index 4257c9f03e..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/closed.png deleted file mode 100644 index 821f747fb2..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/closed_unlit.png deleted file mode 100644 index c78d01c42d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/closing.png deleted file mode 100644 index 64683f81db..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/meta.json deleted file mode 100644 index 588d48b46e..0000000000 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/meta.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/open.png deleted file mode 100644 index acb4476002..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/opening.png deleted file mode 100644 index 1c15ed06bc..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/assembly.png new file mode 100644 index 0000000000..d61b8f17f0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/bolted_unlit.png new file mode 100644 index 0000000000..8af19f73cb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/closed.png new file mode 100644 index 0000000000..436719d21c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/closed_unlit.png new file mode 100644 index 0000000000..e5045bba13 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/closing.png new file mode 100644 index 0000000000..44ab02fecb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/closing_unlit.png new file mode 100644 index 0000000000..b7082208a8 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/deny_unlit.png new file mode 100644 index 0000000000..65d28a1dc9 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/emergency_unlit.png new file mode 100644 index 0000000000..3960117b30 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/meta.json new file mode 100644 index 0000000000..9fca9d7ab8 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/meta.json @@ -0,0 +1,345 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit", + "directions": 4 + }, + { + "name": "closed", + "directions": 4 + }, + { + "name": "closed_unlit", + "directions": 4 + }, + { + "name": "closing", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "closing_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "directions": 4 + }, + { + "name": "opening", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "opening_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded", + "directions": 4 + }, + { + "name": "emergency_unlit", + "directions": 4, + "delays": [ + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/open.png new file mode 100644 index 0000000000..e73c3ed074 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/opening.png new file mode 100644 index 0000000000..e030b6b70e Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/opening_unlit.png new file mode 100644 index 0000000000..14b0ff0341 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/panel_closing.png new file mode 100644 index 0000000000..7bbbb6dc82 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/panel_open.png new file mode 100644 index 0000000000..174a46ebcb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/panel_opening.png new file mode 100644 index 0000000000..6ced3ec8df Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/sparks.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/sparks.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/sparks.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/sparks_broken.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/sparks_broken.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/sparks_damaged.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/sparks_damaged.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/glass.rsi/sparks_open.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/sparks_open.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/welded.png new file mode 100644 index 0000000000..d770fa9ffe Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/medical_glass.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/assembly.png new file mode 100644 index 0000000000..d61b8f17f0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/bolted_unlit.png new file mode 100644 index 0000000000..8af19f73cb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/closed.png new file mode 100644 index 0000000000..67c59e1066 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/closed_unlit.png new file mode 100644 index 0000000000..e5045bba13 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/closing.png new file mode 100644 index 0000000000..88cb1c269d Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/closing_unlit.png new file mode 100644 index 0000000000..b7082208a8 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/deny_unlit.png new file mode 100644 index 0000000000..65d28a1dc9 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/emergency_unlit.png new file mode 100644 index 0000000000..3960117b30 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/meta.json new file mode 100644 index 0000000000..9fca9d7ab8 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/meta.json @@ -0,0 +1,345 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit", + "directions": 4 + }, + { + "name": "closed", + "directions": 4 + }, + { + "name": "closed_unlit", + "directions": 4 + }, + { + "name": "closing", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "closing_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "directions": 4 + }, + { + "name": "opening", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "opening_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded", + "directions": 4 + }, + { + "name": "emergency_unlit", + "directions": 4, + "delays": [ + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/open.png new file mode 100644 index 0000000000..71def2214f Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/opening.png new file mode 100644 index 0000000000..b29e0d2b78 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/opening_unlit.png new file mode 100644 index 0000000000..14b0ff0341 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/panel_closing.png new file mode 100644 index 0000000000..7bbbb6dc82 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/panel_open.png new file mode 100644 index 0000000000..174a46ebcb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/panel_opening.png new file mode 100644 index 0000000000..6ced3ec8df Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/sparks.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/sparks.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/sparks.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/sparks_broken.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/sparks_broken.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/sparks_damaged.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/sparks_damaged.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/maint.rsi/sparks_open.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/sparks_open.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/welded.png new file mode 100644 index 0000000000..d770fa9ffe Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/personal_glass.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/assembly.png deleted file mode 100644 index c91e70204e..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/closed.png deleted file mode 100644 index 82a36b65b9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/closed_unlit.png deleted file mode 100644 index c78d01c42d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/closing.png deleted file mode 100644 index ff5532f584..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/meta.json deleted file mode 100644 index 588d48b46e..0000000000 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/meta.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/open.png deleted file mode 100644 index 8940b5a510..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/opening.png deleted file mode 100644 index 3254710d81..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/assembly.png deleted file mode 100644 index da1739bb27..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/closed.png deleted file mode 100644 index 789b3537c0..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/closed_unlit.png deleted file mode 100644 index c78d01c42d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/closing.png deleted file mode 100644 index 90e3917603..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/meta.json deleted file mode 100644 index 588d48b46e..0000000000 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/meta.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/open.png deleted file mode 100644 index 93c4460f1b..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/opening.png deleted file mode 100644 index 0a6a79329e..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/assembly.png new file mode 100644 index 0000000000..d61b8f17f0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/bolted_unlit.png new file mode 100644 index 0000000000..8af19f73cb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/closed.png new file mode 100644 index 0000000000..3b47bb1cfa Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/closed_unlit.png new file mode 100644 index 0000000000..e5045bba13 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/closing.png new file mode 100644 index 0000000000..147089e38c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/closing_unlit.png new file mode 100644 index 0000000000..b7082208a8 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/deny_unlit.png new file mode 100644 index 0000000000..65d28a1dc9 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/emergency_unlit.png new file mode 100644 index 0000000000..3960117b30 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/meta.json new file mode 100644 index 0000000000..9fca9d7ab8 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/meta.json @@ -0,0 +1,345 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit", + "directions": 4 + }, + { + "name": "closed", + "directions": 4 + }, + { + "name": "closed_unlit", + "directions": 4 + }, + { + "name": "closing", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "closing_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "directions": 4 + }, + { + "name": "opening", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "opening_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded", + "directions": 4 + }, + { + "name": "emergency_unlit", + "directions": 4, + "delays": [ + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/open.png new file mode 100644 index 0000000000..e8ad0bee29 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/opening.png new file mode 100644 index 0000000000..73622fef19 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/opening_unlit.png new file mode 100644 index 0000000000..14b0ff0341 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/panel_closing.png new file mode 100644 index 0000000000..7bbbb6dc82 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/panel_open.png new file mode 100644 index 0000000000..174a46ebcb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/panel_opening.png new file mode 100644 index 0000000000..6ced3ec8df Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/sparks.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/sparks.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/sparks.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/sparks_broken.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/sparks_broken.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/sparks_damaged.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/sparks_damaged.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/medical.rsi/sparks_open.png rename to Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/sparks_open.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/welded.png new file mode 100644 index 0000000000..d770fa9ffe Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Glass/security_glass.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/assembly.png deleted file mode 100644 index c91e70204e..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/closed.png deleted file mode 100644 index 35b896703c..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/closed_unlit.png deleted file mode 100644 index c78d01c42d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/closing.png deleted file mode 100644 index 1a98e1e5d6..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/meta.json deleted file mode 100644 index 588d48b46e..0000000000 --- a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/meta.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/open.png deleted file mode 100644 index f334c224c9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/opening.png deleted file mode 100644 index 8707d23a76..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/assembly.png deleted file mode 100644 index c24585647e..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closed.png deleted file mode 100644 index 97e3a30040..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closed_unlit.png deleted file mode 100644 index c78d01c42d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closing.png deleted file mode 100644 index 0a679afb71..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/meta.json deleted file mode 100644 index b935f1e5e3..0000000000 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/meta.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from paradise station at commit https://github.com/ParadiseSS13/Paradise/commit/9312f1fb7dcdf1c195e255a528f31092613fb60d", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/open.png deleted file mode 100644 index 61f9bb5c08..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/opening.png deleted file mode 100644 index bd7937096e..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/closed_unlit.png deleted file mode 100644 index c78d01c42d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/closing.png deleted file mode 100644 index 247612bd7e..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/meta.json deleted file mode 100644 index 588d48b46e..0000000000 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/meta.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/open.png deleted file mode 100644 index 862c9940fc..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/opening.png deleted file mode 100644 index cded9299eb..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/basic.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/assembly.png deleted file mode 100644 index 8f1a614ca3..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closed.png deleted file mode 100644 index 01ddc9fef0..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closed_unlit.png deleted file mode 100644 index c78d01c42d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closing.png deleted file mode 100644 index 9e9e14d1bd..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/meta.json deleted file mode 100644 index 588d48b46e..0000000000 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/meta.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/open.png deleted file mode 100644 index 5dff6a5e50..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/opening.png deleted file mode 100644 index 94b0291a5b..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/cargo.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/assembly.png new file mode 100644 index 0000000000..d61b8f17f0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/bolted_unlit.png new file mode 100644 index 0000000000..8af19f73cb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/closed.png new file mode 100644 index 0000000000..8e7d42ee63 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/closed_unlit.png new file mode 100644 index 0000000000..e5045bba13 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/closing.png new file mode 100644 index 0000000000..b9828d9c9c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/closing_unlit.png new file mode 100644 index 0000000000..b7082208a8 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/deny_unlit.png new file mode 100644 index 0000000000..65d28a1dc9 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/emergency_unlit.png new file mode 100644 index 0000000000..3960117b30 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/meta.json new file mode 100644 index 0000000000..9fca9d7ab8 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/meta.json @@ -0,0 +1,345 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit", + "directions": 4 + }, + { + "name": "closed", + "directions": 4 + }, + { + "name": "closed_unlit", + "directions": 4 + }, + { + "name": "closing", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "closing_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "directions": 4 + }, + { + "name": "opening", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "opening_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded", + "directions": 4 + }, + { + "name": "emergency_unlit", + "directions": 4, + "delays": [ + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/open.png new file mode 100644 index 0000000000..0b719dbca0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/opening.png new file mode 100644 index 0000000000..2dd2ab1116 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/opening_unlit.png new file mode 100644 index 0000000000..14b0ff0341 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/panel_closing.png new file mode 100644 index 0000000000..7bbbb6dc82 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/panel_open.png new file mode 100644 index 0000000000..174a46ebcb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/panel_opening.png new file mode 100644 index 0000000000..6ced3ec8df Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/sparks.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/sparks.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/sparks.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/sparks_broken.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/sparks_broken.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/sparks_damaged.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/sparks_damaged.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/science.rsi/sparks_open.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/sparks_open.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/welded.png new file mode 100644 index 0000000000..d770fa9ffe Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/celldoor.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/assembly.png index 7ac258fede..d61b8f17f0 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/assembly.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/bolted_unlit.png index 6857f2a241..8af19f73cb 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/bolted_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closed.png index 96349c2a29..d4888f95e7 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closed_unlit.png index c78d01c42d..e5045bba13 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closing.png index 2a861fa8a4..1a1d9af128 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closing_unlit.png index 2a71f76d5d..b7082208a8 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closing_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/deny_unlit.png index 7c56263f83..65d28a1dc9 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/deny_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/emergency_unlit.png index 817f2fb3f9..3960117b30 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/emergency_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/meta.json index 588d48b46e..9fca9d7ab8 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/meta.json @@ -1,195 +1,345 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit", + "directions": 4 + }, + { + "name": "closed", + "directions": 4 + }, + { + "name": "closed_unlit", + "directions": 4 + }, + { + "name": "closing", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "closing_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "directions": 4 + }, + { + "name": "opening", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "opening_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded", + "directions": 4 + }, + { + "name": "emergency_unlit", + "directions": 4, + "delays": [ + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ] + ] + } + ] } diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/open.png index c771279653..673f5a9bb2 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/open.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/opening.png index edcf9d92cc..4bb5298c32 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/opening_unlit.png index 84933bd5ed..14b0ff0341 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/opening_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/panel_closing.png index db7be0bc4a..7bbbb6dc82 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/panel_closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/panel_open.png index 24eb2aedc2..174a46ebcb 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/panel_open.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/panel_opening.png index fc90acd637..6ced3ec8df 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/panel_opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/welded.png index a0040dfdc7..d770fa9ffe 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/welded.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/command.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/assembly.png index 02c9ca5455..d61b8f17f0 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/assembly.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/bolted_unlit.png index 6857f2a241..8af19f73cb 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/bolted_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closed.png index b409f80c52..f8efda8a3c 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closed_unlit.png index c78d01c42d..e5045bba13 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closing.png index c27f6aad6f..9fc7da6bea 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closing_unlit.png index 2a71f76d5d..b7082208a8 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closing_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/deny_unlit.png index 7c56263f83..65d28a1dc9 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/deny_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/emergency_unlit.png index 817f2fb3f9..3960117b30 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/emergency_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/meta.json index 588d48b46e..9fca9d7ab8 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/meta.json @@ -1,195 +1,345 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit", + "directions": 4 + }, + { + "name": "closed", + "directions": 4 + }, + { + "name": "closed_unlit", + "directions": 4 + }, + { + "name": "closing", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "closing_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "directions": 4 + }, + { + "name": "opening", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "opening_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded", + "directions": 4 + }, + { + "name": "emergency_unlit", + "directions": 4, + "delays": [ + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ] + ] + } + ] } diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/open.png index 09fec38bfa..8cb80199b4 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/open.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/opening.png index 47dee90e59..7116e49f5c 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/opening_unlit.png index 84933bd5ed..14b0ff0341 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/opening_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_closing.png index db7be0bc4a..7bbbb6dc82 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_open.png index 24eb2aedc2..174a46ebcb 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_open.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_opening.png index fc90acd637..6ced3ec8df 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/welded.png index a0040dfdc7..d770fa9ffe 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/welded.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/engineering.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/assembly.png deleted file mode 100644 index da6d507c5b..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/closed.png deleted file mode 100644 index 10168bf762..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/closed_unlit.png deleted file mode 100644 index c78d01c42d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/closing.png deleted file mode 100644 index 8c1c28521d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/meta.json deleted file mode 100644 index 588d48b46e..0000000000 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/meta.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/open.png deleted file mode 100644 index 2523b36382..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/opening.png deleted file mode 100644 index 00f2c629b9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/freezer.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/assembly.png index a4dd56307c..d61b8f17f0 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/assembly.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/bolted_unlit.png index 6857f2a241..8af19f73cb 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/bolted_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closed.png index 9035162d43..bfcc33e304 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closed_unlit.png index c78d01c42d..e5045bba13 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closing.png index d207ec7d21..12ca4f4135 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closing_unlit.png index 2a71f76d5d..b7082208a8 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closing_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/deny_unlit.png index 7c56263f83..65d28a1dc9 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/deny_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/emergency_unlit.png index 817f2fb3f9..3960117b30 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/emergency_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/meta.json index 588d48b46e..9fca9d7ab8 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/meta.json @@ -1,195 +1,345 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit", + "directions": 4 + }, + { + "name": "closed", + "directions": 4 + }, + { + "name": "closed_unlit", + "directions": 4 + }, + { + "name": "closing", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "closing_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "directions": 4 + }, + { + "name": "opening", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "opening_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded", + "directions": 4 + }, + { + "name": "emergency_unlit", + "directions": 4, + "delays": [ + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ] + ] + } + ] } diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/open.png index 086bedbc60..93340f8cdf 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/open.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/opening.png index d6d578a3be..144b2bb53c 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/opening_unlit.png index 84933bd5ed..14b0ff0341 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/opening_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/panel_closing.png index db7be0bc4a..7bbbb6dc82 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/panel_closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/panel_open.png index 24eb2aedc2..174a46ebcb 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/panel_open.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/panel_opening.png index fc90acd637..6ced3ec8df 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/panel_opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/welded.png index a0040dfdc7..d770fa9ffe 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/welded.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/maint.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/assembly.png index c91e70204e..d61b8f17f0 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/assembly.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/bolted_unlit.png index 6857f2a241..8af19f73cb 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/bolted_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closed.png index b228a1487c..9e2047649c 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closed_unlit.png index c78d01c42d..e5045bba13 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closing.png index a124e930d2..8f4fc064d6 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closing_unlit.png index 2a71f76d5d..b7082208a8 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closing_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/deny_unlit.png index 7c56263f83..65d28a1dc9 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/deny_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/emergency_unlit.png index 817f2fb3f9..3960117b30 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/emergency_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/meta.json index 588d48b46e..9fca9d7ab8 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/meta.json @@ -1,195 +1,345 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit", + "directions": 4 + }, + { + "name": "closed", + "directions": 4 + }, + { + "name": "closed_unlit", + "directions": 4 + }, + { + "name": "closing", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "closing_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "directions": 4 + }, + { + "name": "opening", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "opening_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded", + "directions": 4 + }, + { + "name": "emergency_unlit", + "directions": 4, + "delays": [ + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ] + ] + } + ] } diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/open.png index acb4476002..3710709ba6 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/open.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/opening.png index 2f25dfe043..c56532f5a9 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/opening_unlit.png index 84933bd5ed..14b0ff0341 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/opening_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/panel_closing.png index db7be0bc4a..7bbbb6dc82 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/panel_closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/panel_open.png index 24eb2aedc2..174a46ebcb 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/panel_open.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/panel_opening.png index fc90acd637..6ced3ec8df 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/panel_opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/welded.png index a0040dfdc7..d770fa9ffe 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/welded.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/medical.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/assembly.png new file mode 100644 index 0000000000..d61b8f17f0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/bolted_unlit.png new file mode 100644 index 0000000000..8af19f73cb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/closed.png new file mode 100644 index 0000000000..fb9268e701 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/closed_unlit.png new file mode 100644 index 0000000000..e5045bba13 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/closing.png new file mode 100644 index 0000000000..de32c2b762 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/closing_unlit.png new file mode 100644 index 0000000000..b7082208a8 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/deny_unlit.png new file mode 100644 index 0000000000..65d28a1dc9 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/emergency_unlit.png new file mode 100644 index 0000000000..3960117b30 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/meta.json new file mode 100644 index 0000000000..9fca9d7ab8 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/meta.json @@ -0,0 +1,345 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit", + "directions": 4 + }, + { + "name": "closed", + "directions": 4 + }, + { + "name": "closed_unlit", + "directions": 4 + }, + { + "name": "closing", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "closing_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "directions": 4 + }, + { + "name": "opening", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "opening_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded", + "directions": 4 + }, + { + "name": "emergency_unlit", + "directions": 4, + "delays": [ + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/open.png new file mode 100644 index 0000000000..d2826cab3f Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/opening.png new file mode 100644 index 0000000000..59fa1e1d89 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/opening_unlit.png new file mode 100644 index 0000000000..14b0ff0341 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/panel_closing.png new file mode 100644 index 0000000000..7bbbb6dc82 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/panel_open.png new file mode 100644 index 0000000000..174a46ebcb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/panel_opening.png new file mode 100644 index 0000000000..6ced3ec8df Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/sparks.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/sparks.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/sparks.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/sparks_broken.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/sparks_broken.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/sparks_damaged.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/sparks_damaged.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/security.rsi/sparks_open.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/sparks_open.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/welded.png new file mode 100644 index 0000000000..d770fa9ffe Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/personal.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/assembly.png new file mode 100644 index 0000000000..d61b8f17f0 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/assembly.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/bolted_unlit.png new file mode 100644 index 0000000000..8af19f73cb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/closed.png new file mode 100644 index 0000000000..40312d40fb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/closed_unlit.png new file mode 100644 index 0000000000..e5045bba13 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/closing.png new file mode 100644 index 0000000000..e4e1c3875c Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/closing_unlit.png new file mode 100644 index 0000000000..b7082208a8 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/deny_unlit.png new file mode 100644 index 0000000000..65d28a1dc9 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/emergency_unlit.png new file mode 100644 index 0000000000..3960117b30 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/meta.json new file mode 100644 index 0000000000..9fca9d7ab8 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/meta.json @@ -0,0 +1,345 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit", + "directions": 4 + }, + { + "name": "closed", + "directions": 4 + }, + { + "name": "closed_unlit", + "directions": 4 + }, + { + "name": "closing", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "closing_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "directions": 4 + }, + { + "name": "opening", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "opening_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded", + "directions": 4 + }, + { + "name": "emergency_unlit", + "directions": 4, + "delays": [ + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/open.png new file mode 100644 index 0000000000..52b0c8a81d Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/opening.png new file mode 100644 index 0000000000..7314ac48e9 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/opening_unlit.png new file mode 100644 index 0000000000..14b0ff0341 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/panel_closing.png new file mode 100644 index 0000000000..7bbbb6dc82 Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/panel_open.png new file mode 100644 index 0000000000..174a46ebcb Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/panel_opening.png new file mode 100644 index 0000000000..6ced3ec8df Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/sparks.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Standard/atmospherics.rsi/sparks.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/sparks.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/sparks_broken.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/sparks_broken.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/sparks_damaged.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/sparks_damaged.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Structures/Doors/Airlocks/Glass/virology.rsi/sparks_open.png rename to Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/sparks_open.png diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/welded.png new file mode 100644 index 0000000000..d770fa9ffe Binary files /dev/null and b/Resources/Textures/Structures/Doors/Airlocks/Standard/pod_door.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/assembly.png deleted file mode 100644 index c91e70204e..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closed.png deleted file mode 100644 index 814fba3422..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closed_unlit.png deleted file mode 100644 index c78d01c42d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closing.png deleted file mode 100644 index 891dda16ce..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/meta.json deleted file mode 100644 index 588d48b46e..0000000000 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/meta.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/open.png deleted file mode 100644 index 8940b5a510..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/opening.png deleted file mode 100644 index eeab16dca7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/science.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/bolted_unlit.png index 6857f2a241..8af19f73cb 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/bolted_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closed.png index 4cfd894f74..e7423b14a1 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closed.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closed_unlit.png index c78d01c42d..e5045bba13 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closed_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closing.png index 56ac2b4ead..803e15d625 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closing_unlit.png index 2a71f76d5d..b7082208a8 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closing_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/deny_unlit.png index 7c56263f83..65d28a1dc9 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/deny_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/emergency_unlit.png index 817f2fb3f9..3960117b30 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/emergency_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/emergency_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/meta.json index 588d48b46e..9fca9d7ab8 100644 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/meta.json +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/meta.json @@ -1,195 +1,345 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "size": { + "x": 32, + "y": 32 }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit", + "directions": 4 + }, + { + "name": "closed", + "directions": 4 + }, + { + "name": "closed_unlit", + "directions": 4 + }, + { + "name": "closing", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "closing_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "directions": 4 + }, + { + "name": "opening", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.3 + ] + ] + }, + { + "name": "opening_unlit", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded", + "directions": 4 + }, + { + "name": "emergency_unlit", + "directions": 4, + "delays": [ + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ], + [ + 0.9, + 0.9 + ] + ] + } + ] } diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/open.png index 93c4460f1b..574393dc2a 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/open.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/opening.png index a9f90c4553..2d085c84b8 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/opening_unlit.png index 84933bd5ed..14b0ff0341 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/opening_unlit.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/panel_closing.png index db7be0bc4a..7bbbb6dc82 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/panel_closing.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/panel_closing.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/panel_open.png index 24eb2aedc2..174a46ebcb 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/panel_open.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/panel_open.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/panel_opening.png index fc90acd637..6ced3ec8df 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/panel_opening.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/panel_opening.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/welded.png index a0040dfdc7..d770fa9ffe 100644 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/welded.png and b/Resources/Textures/Structures/Doors/Airlocks/Standard/security.rsi/welded.png differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/assembly.png deleted file mode 100644 index c91e70204e..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/assembly.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/bolted_unlit.png deleted file mode 100644 index 6857f2a241..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/bolted_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closed.png deleted file mode 100644 index 9c33e5217d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closed.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closed_unlit.png deleted file mode 100644 index c78d01c42d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closed_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closing.png deleted file mode 100644 index 42838cc43d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closing_unlit.png deleted file mode 100644 index 2a71f76d5d..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/closing_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/deny_unlit.png deleted file mode 100644 index 7c56263f83..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/deny_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/emergency_unlit.png deleted file mode 100644 index 817f2fb3f9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/emergency_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/meta.json deleted file mode 100644 index 588d48b46e..0000000000 --- a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/meta.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "assembly" - }, - { - "name": "bolted_unlit" - }, - { - "name": "closed" - }, - { - "name": "closed_unlit" - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "sparks", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded" - }, - { - "name": "emergency_unlit", - "delays": [ - [ - 0.4, - 0.4 - ] - ] - } - ] -} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/open.png deleted file mode 100644 index f334c224c9..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/opening.png deleted file mode 100644 index c68f20d436..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/opening_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/opening_unlit.png deleted file mode 100644 index 84933bd5ed..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/opening_unlit.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/panel_closing.png deleted file mode 100644 index db7be0bc4a..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/panel_closing.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/panel_open.png deleted file mode 100644 index 24eb2aedc2..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/panel_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/panel_opening.png deleted file mode 100644 index fc90acd637..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/panel_opening.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/sparks.png deleted file mode 100644 index dd67e88a31..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/sparks.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_broken.png deleted file mode 100644 index fb5d774588..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_broken.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_damaged.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_damaged.png deleted file mode 100644 index f16a028dee..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_damaged.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_open.png deleted file mode 100644 index 630eabb976..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/sparks_open.png and /dev/null differ diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/welded.png deleted file mode 100644 index a0040dfdc7..0000000000 Binary files a/Resources/Textures/Structures/Doors/Airlocks/Standard/virology.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Structures/almayer_catwalk.rsi/almayer_catwalk.png b/Resources/Textures/Structures/almayer_catwalk.rsi/almayer_catwalk.png new file mode 100644 index 0000000000..542f863d0b Binary files /dev/null and b/Resources/Textures/Structures/almayer_catwalk.rsi/almayer_catwalk.png differ diff --git a/Resources/Textures/Structures/almayer_catwalk.rsi/meta.json b/Resources/Textures/Structures/almayer_catwalk.rsi/meta.json new file mode 100644 index 0000000000..390fe30af2 --- /dev/null +++ b/Resources/Textures/Structures/almayer_catwalk.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Copyright (c) 2013-2014, The Open Source Game Clones Authors (WHAT CAN I SAY EXCEPT DELETE THIS)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "almayer_catwalk" + } + ] +} diff --git a/Resources/Textures/Structures/catwalk.rsi/catwalk_0.png b/Resources/Textures/Structures/catwalk.rsi/catwalk_0.png index a2295320bb..34274c5b7f 100644 Binary files a/Resources/Textures/Structures/catwalk.rsi/catwalk_0.png and b/Resources/Textures/Structures/catwalk.rsi/catwalk_0.png differ diff --git a/Resources/Textures/Structures/catwalk.rsi/catwalk_preview.png b/Resources/Textures/Structures/catwalk.rsi/catwalk_preview.png index 9d3ff80e70..4d81007fdd 100644 Binary files a/Resources/Textures/Structures/catwalk.rsi/catwalk_preview.png and b/Resources/Textures/Structures/catwalk.rsi/catwalk_preview.png differ diff --git a/Scripts/bat/readme.txt b/Scripts/bat/readme.txt new file mode 100644 index 0000000000..bf401fe951 --- /dev/null +++ b/Scripts/bat/readme.txt @@ -0,0 +1,10 @@ +The files here will will, in order, build the game, copy the correct config file, launch the server, and launch the client. +There are some variations of files, explained here + +The debug vs release build is simply what people dev in vs the actual server. The release build contains various +optimizations, while the debug build contains debugging tools. +If you're mapping, use the release build as it will run smoother. + +The Server config file simply matches the actual server config, while the other two have some cvar tweaks that come in +handy for their specific tasks. +Essentially only saves you some commands when you load in, but very convenient none the less. \ No newline at end of file diff --git a/Scripts/bat/run1buildDebug.bat b/Scripts/bat/run1buildDebug.bat new file mode 100644 index 0000000000..8f11639d0d --- /dev/null +++ b/Scripts/bat/run1buildDebug.bat @@ -0,0 +1,8 @@ +@echo off +cd ../../ +if exist sloth.txt ( + call dotnet build -c Debug +) else ( + exit +) +pause diff --git a/Scripts/bat/run1buildRelease.bat b/Scripts/bat/run1buildRelease.bat new file mode 100644 index 0000000000..b556df54f8 --- /dev/null +++ b/Scripts/bat/run1buildRelease.bat @@ -0,0 +1,8 @@ +@echo off +cd ../../ +if exist sloth.txt ( + call dotnet build -c Release +) else ( + exit +) +pause diff --git a/Scripts/bat/run2configDev.bat b/Scripts/bat/run2configDev.bat new file mode 100644 index 0000000000..995286891e --- /dev/null +++ b/Scripts/bat/run2configDev.bat @@ -0,0 +1,3 @@ +@echo off +copy runconfigdev.toml server_config.toml +move server_config.toml ../../bin/Content.Server/ diff --git a/Scripts/bat/run2configMap.bat b/Scripts/bat/run2configMap.bat new file mode 100644 index 0000000000..274561114c --- /dev/null +++ b/Scripts/bat/run2configMap.bat @@ -0,0 +1,3 @@ +@echo off +copy runconfigmap.toml server_config.toml +move server_config.toml ../../bin/Content.Server/ diff --git a/Scripts/bat/run2configServer.bat b/Scripts/bat/run2configServer.bat new file mode 100644 index 0000000000..452eaaae33 --- /dev/null +++ b/Scripts/bat/run2configServer.bat @@ -0,0 +1,3 @@ +@echo off +copy runconfigserver.toml server_config.toml +move server_config.toml ../../bin/Content.Server/ diff --git a/Scripts/bat/run3server.bat b/Scripts/bat/run3server.bat new file mode 100644 index 0000000000..4de19ebb83 --- /dev/null +++ b/Scripts/bat/run3server.bat @@ -0,0 +1,4 @@ +@echo off +cd ../../Bin/Content.Server +call Content.Server.exe %* +pause diff --git a/Scripts/bat/run4client.bat b/Scripts/bat/run4client.bat new file mode 100644 index 0000000000..3b3277d5d7 --- /dev/null +++ b/Scripts/bat/run4client.bat @@ -0,0 +1,4 @@ +@echo off +cd ../../Bin/Content.Client +call Content.Client.exe %* +pause diff --git a/Scripts/bat/runconfigdev.toml b/Scripts/bat/runconfigdev.toml new file mode 100644 index 0000000000..d6bcbf135d --- /dev/null +++ b/Scripts/bat/runconfigdev.toml @@ -0,0 +1,136 @@ +[game] +hostname = "[NA East][MRP] CM-SS14" +desc = "A Colonial Marines inspired Space Station 14 server." +maxplayers = 32 +soft_max_players = 16 +type = 1 +lobbyenabled = false +lobbyduration = 180 +role_timers = false +fallbackpreset = "extended" +map_pool = "DefaultMapPool" +npc_enabled = true + +[server] +rules_file = "CM_Rules.txt" +id = "parkstation" + +[whitelist] +min_players = 32 + +[rules] +rules_time = 60 +rules_exempt_local = false + +[events] +ramping_average_end_time = 120.0 +ramping_average_chaos = 7.0 + +[traitor] +min_players = 2 +players_per_traitor = 8 +starting_balance = 16 + +[zombie] +min_players = 10 +players_per_infected = 5 + + +[mapping] +autosave_interval = 180.0 + +[atmos] +space_wind = true +space_wind_max_velocity = 22.0 + +[shuttle] +emergency_early_launch_allowed = true +emergency_dock_time = 260.0 +emergency_transit_time = 180.0 +recall_turning_point = 0.75 +auto_call_time = 0 + +[biomass] +easy_mode = false + +[ambience] +restart_sounds_enabled = false + +[explosion] +tiles_per_tick = 75 +incremental_tile = true + +[ic] +restricted_names = false +flavor_text = true + +[ooc] +enable_during_round = true + +[vote] +map_enabled = true +restart_enabled = true +restart_required_ratio = 0.75 +restart_not_allowed_when_admin_online = true +timermap = 45 + + +[console] +loginlocal = true + +[hub] +advertise = false + +[auth] +# 0 = Optional, 1 = Required, 2 = Disabled +mode = 1 +allowlocal = true + +[log] +path = "logs" +format = "log_%(date)s-%(time)s.txt" +level = 1 +enabled = true + +[net] +tickrate = 30 +port = 1212 +bindto = "::,0.0.0.0" +pvs = true + +[status] +enabled = true + + +[infolinks] +discord = "https://discord.gg/49KeKwXc8g" +github = "https://github.com/Park-Station/Parkstation" +website = "https://nyanotrasen.moe" +wiki = "https://wiki.nyanotrasen.moe" + +[discord] +#DO NOT PUT WEBHOOK URL IN THIS FILE, unless you don't intend to push it. This file can be viewed by anyone on GitHub, only put the URL on the actual server. +ahelp_webhook = "" +ahelp_avatar = "https://imgur.com/a/xyjaogg.png" + +[netres] +limit = 0.0 + + +[build] +fork_id = "ParkStation14" + +[database] +# Database type to use. Can be "sqlite" or "postgres" currently. +engine = "sqlite" + +# Path to store the database at when using SQLite. Note that is NOT a disk path. +# This is relative to the server data directory, which is specified by --data-dir when starting the server from the command (or automatically set by SS14.Watchdog) +sqlite_dbpath = "preferences.db" + +# PostgreSQL database configuration, should be self explanatory. +# pg_host = "localhost" +# pg_port = 5432 +# pg_database = "ss14" +# pg_username = "ss14" +# pg_password = "ss14" diff --git a/Scripts/bat/runconfigmap.toml b/Scripts/bat/runconfigmap.toml new file mode 100644 index 0000000000..25c1ff073a --- /dev/null +++ b/Scripts/bat/runconfigmap.toml @@ -0,0 +1,135 @@ +[game] +hostname = "[NA East][MRP] CM-SS14" +desc = "A Colonial Marines inspired Space Station 14 server." +maxplayers = 32 +soft_max_players = 16 +type = 1 +lobbyenabled = false +lobbyduration = 180 +role_timers = false +fallbackpreset = "extended" +map_pool = "MappingMapPool" + +[server] +rules_file = "CM_Rules.txt" +id = "parkstation" + +[whitelist] +min_players = 32 + +[rules] +rules_time = 60 +rules_exempt_local = false + +[events] +ramping_average_end_time = 120.0 +ramping_average_chaos = 7.0 + +[traitor] +min_players = 2 +players_per_traitor = 8 +starting_balance = 16 + +[zombie] +min_players = 10 +players_per_infected = 5 + + +[mapping] +autosave_interval = 180.0 + +[atmos] +space_wind = true +space_wind_max_velocity = 22.0 + +[shuttle] +emergency_early_launch_allowed = true +emergency_dock_time = 260.0 +emergency_transit_time = 180.0 +recall_turning_point = 0.75 +auto_call_time = 0 + +[biomass] +easy_mode = false + +[ambience] +restart_sounds_enabled = false + +[explosion] +tiles_per_tick = 75 +incremental_tile = true + +[ic] +restricted_names = false +flavor_text = true + +[ooc] +enable_during_round = true + +[vote] +map_enabled = true +restart_enabled = true +restart_required_ratio = 0.75 +restart_not_allowed_when_admin_online = true +timermap = 45 + + +[console] +loginlocal = true + +[hub] +advertise = false + +[auth] +# 0 = Optional, 1 = Required, 2 = Disabled +mode = 1 +allowlocal = true + +[log] +path = "logs" +format = "log_%(date)s-%(time)s.txt" +level = 1 +enabled = true + +[net] +tickrate = 30 +port = 1212 +bindto = "::,0.0.0.0" +pvs = false + +[status] +enabled = true + + +[infolinks] +discord = "https://discord.gg/49KeKwXc8g" +github = "https://github.com/Park-Station/Parkstation" +website = "https://nyanotrasen.moe" +wiki = "https://wiki.nyanotrasen.moe" + +[discord] +#DO NOT PUT WEBHOOK URL IN THIS FILE, unless you don't intend to push it. This file can be viewed by anyone on GitHub, only put the URL on the actual server. +ahelp_webhook = "" +ahelp_avatar = "https://imgur.com/a/xyjaogg.png" + +[netres] +limit = 0.0 + + +[build] +fork_id = "ParkStation14" + +[database] +# Database type to use. Can be "sqlite" or "postgres" currently. +engine = "sqlite" + +# Path to store the database at when using SQLite. Note that is NOT a disk path. +# This is relative to the server data directory, which is specified by --data-dir when starting the server from the command (or automatically set by SS14.Watchdog) +sqlite_dbpath = "preferences.db" + +# PostgreSQL database configuration, should be self explanatory. +# pg_host = "localhost" +# pg_port = 5432 +# pg_database = "ss14" +# pg_username = "ss14" +# pg_password = "ss14" diff --git a/Scripts/bat/runconfigserver.toml b/Scripts/bat/runconfigserver.toml new file mode 100644 index 0000000000..cfcd884c0c --- /dev/null +++ b/Scripts/bat/runconfigserver.toml @@ -0,0 +1,134 @@ +[game] +hostname = "[NA East][MRP] CM-SS14" +desc = "A Colonial Marines inspired Space Station 14 server." +maxplayers = 32 +soft_max_players = 16 +type = 1 +lobbyenabled = true +lobbyduration = 180 +role_timers = false +fallbackpreset = "extended" +map_pool = "DefaultMapPool" + +[server] +rules_file = "CM_Rules.txt" +id = "parkstation" + +[whitelist] +min_players = 32 + +[rules] +rules_time = 60 +rules_exempt_local = false + +[events] +ramping_average_end_time = 120.0 +ramping_average_chaos = 7.0 + +[traitor] +min_players = 2 +players_per_traitor = 8 +starting_balance = 16 + +[zombie] +min_players = 10 +players_per_infected = 5 + + +[mapping] +autosave_interval = 180.0 + +[atmos] +space_wind = true +space_wind_max_velocity = 22.0 + +[shuttle] +emergency_early_launch_allowed = true +emergency_dock_time = 260.0 +emergency_transit_time = 180.0 +recall_turning_point = 0.75 +auto_call_time = 150 + +[biomass] +easy_mode = false + +[ambience] +restart_sounds_enabled = true + +[explosion] +tiles_per_tick = 75 +incremental_tile = true + +[ic] +restricted_names = false +flavor_text = true + +[ooc] +enable_during_round = true + +[vote] +map_enabled = true +restart_enabled = true +restart_required_ratio = 0.75 +restart_not_allowed_when_admin_online = true +timermap = 45 + + +[console] +loginlocal = true + +[hub] +advertise = false + +[auth] +# 0 = Optional, 1 = Required, 2 = Disabled +mode = 1 +allowlocal = true + +[log] +path = "logs" +format = "log_%(date)s-%(time)s.txt" +level = 1 +enabled = true + +[net] +tickrate = 30 +port = 1212 +bindto = "::,0.0.0.0" + +[status] +enabled = true + + +[infolinks] +discord = "https://discord.gg/49KeKwXc8g" +github = "https://github.com/Park-Station/Parkstation" +website = "https://nyanotrasen.moe" +wiki = "https://wiki.nyanotrasen.moe" + +[discord] +#DO NOT PUT WEBHOOK URL IN THIS FILE, unless you don't intend to push it. This file can be viewed by anyone on GitHub, only put the URL on the actual server. +ahelp_webhook = "" +ahelp_avatar = "https://imgur.com/a/xyjaogg.png" + +[netres] +limit = 0.0 + + +[build] +fork_id = "ParkStation14" + +[database] +# Database type to use. Can be "sqlite" or "postgres" currently. +engine = "sqlite" + +# Path to store the database at when using SQLite. Note that is NOT a disk path. +# This is relative to the server data directory, which is specified by --data-dir when starting the server from the command (or automatically set by SS14.Watchdog) +sqlite_dbpath = "preferences.db" + +# PostgreSQL database configuration, should be self explanatory. +# pg_host = "localhost" +# pg_port = 5432 +# pg_database = "ss14" +# pg_username = "ss14" +# pg_password = "ss14" diff --git a/Scripts/sh/readme.txt b/Scripts/sh/readme.txt new file mode 100644 index 0000000000..bf401fe951 --- /dev/null +++ b/Scripts/sh/readme.txt @@ -0,0 +1,10 @@ +The files here will will, in order, build the game, copy the correct config file, launch the server, and launch the client. +There are some variations of files, explained here + +The debug vs release build is simply what people dev in vs the actual server. The release build contains various +optimizations, while the debug build contains debugging tools. +If you're mapping, use the release build as it will run smoother. + +The Server config file simply matches the actual server config, while the other two have some cvar tweaks that come in +handy for their specific tasks. +Essentially only saves you some commands when you load in, but very convenient none the less. \ No newline at end of file diff --git a/Scripts/sh/run1buildDebug.sh b/Scripts/sh/run1buildDebug.sh new file mode 100755 index 0000000000..5e64e63644 --- /dev/null +++ b/Scripts/sh/run1buildDebug.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env sh + +# make sure to start from script dir +if [ "$(dirname $0)" != "." ]; then + cd "$(dirname $0)" +fi + +cd ../../ + +dotnet build -c Debug diff --git a/Scripts/sh/run1buildRelease.sh b/Scripts/sh/run1buildRelease.sh new file mode 100755 index 0000000000..c60614f481 --- /dev/null +++ b/Scripts/sh/run1buildRelease.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env sh + +# make sure to start from script dir +if [ "$(dirname $0)" != "." ]; then + cd "$(dirname $0)" +fi + +cd ../../ + +dotnet build -c Release diff --git a/Scripts/sh/run2configDev.sh b/Scripts/sh/run2configDev.sh new file mode 100755 index 0000000000..eed1c1d39f --- /dev/null +++ b/Scripts/sh/run2configDev.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env sh + +# make sure to start from script dir +if [ "$(dirname $0)" != "." ]; then + cd "$(dirname $0)" +fi + +cp runconfigdev.toml ../../bin/Content.Server/server_config.toml diff --git a/Scripts/sh/run2configMap.sh b/Scripts/sh/run2configMap.sh new file mode 100755 index 0000000000..80fdc3e1b3 --- /dev/null +++ b/Scripts/sh/run2configMap.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env sh + +# make sure to start from script dir +if [ "$(dirname $0)" != "." ]; then + cd "$(dirname $0)" +fi + +cp runconfigmap.toml ../../bin/Content.Server/server_config.toml diff --git a/Scripts/sh/run2configServer.sh b/Scripts/sh/run2configServer.sh new file mode 100755 index 0000000000..2a526a5030 --- /dev/null +++ b/Scripts/sh/run2configServer.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env sh + +# make sure to start from script dir +if [ "$(dirname $0)" != "." ]; then + cd "$(dirname $0)" +fi + +cp runconfigserver.toml ../../bin/Content.Server/server_config.toml diff --git a/Scripts/sh/run3server.sh b/Scripts/sh/run3server.sh new file mode 100755 index 0000000000..45f0a5753e --- /dev/null +++ b/Scripts/sh/run3server.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env sh + +# make sure to start from script dir +if [ "$(dirname $0)" != "." ]; then + cd "$(dirname $0)" +fi + +cd ../../bin/Content.Server +./Content.Server diff --git a/Scripts/sh/run4client.sh b/Scripts/sh/run4client.sh new file mode 100755 index 0000000000..e43560b55f --- /dev/null +++ b/Scripts/sh/run4client.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env sh + +# make sure to start from script dir +if [ "$(dirname $0)" != "." ]; then + cd "$(dirname $0)" +fi + +cd ../../bin/Content.Client +./Content.Client diff --git a/Scripts/sh/runconfigdev.toml b/Scripts/sh/runconfigdev.toml new file mode 100644 index 0000000000..86a04941ef --- /dev/null +++ b/Scripts/sh/runconfigdev.toml @@ -0,0 +1,135 @@ +[game] +hostname = "[NA East][MRP] CM-SS14" +desc = "A Colonial Marines inspired Space Station 14 server." +maxplayers = 32 +soft_max_players = 16 +type = 1 +lobbyenabled = false +lobbyduration = 180 +role_timers = false +fallbackpreset = "extended" +map_pool = "DefaultMapPool" + +[server] +rules_file = "CM_Rules.txt" +id = "parkstation" + +[whitelist] +min_players = 32 + +[rules] +rules_time = 60 +rules_exempt_local = false + +[events] +ramping_average_end_time = 120.0 +ramping_average_chaos = 7.0 + +[traitor] +min_players = 2 +players_per_traitor = 8 +starting_balance = 16 + +[zombie] +min_players = 10 +players_per_infected = 5 + + +[mapping] +autosave_interval = 180.0 + +[atmos] +space_wind = true +space_wind_max_velocity = 22.0 + +[shuttle] +emergency_early_launch_allowed = true +emergency_dock_time = 260.0 +emergency_transit_time = 180.0 +recall_turning_point = 0.75 +auto_call_time = 0 + +[biomass] +easy_mode = false + +[ambience] +restart_sounds_enabled = false + +[explosion] +tiles_per_tick = 75 +incremental_tile = true + +[ic] +restricted_names = false +flavor_text = true + +[ooc] +enable_during_round = true + +[vote] +map_enabled = true +restart_enabled = true +restart_required_ratio = 0.75 +restart_not_allowed_when_admin_online = true +timermap = 45 + + +[console] +loginlocal = true + +[hub] +advertise = false + +[auth] +# 0 = Optional, 1 = Required, 2 = Disabled +mode = 1 +allowlocal = true + +[log] +path = "logs" +format = "log_%(date)s-%(time)s.txt" +level = 1 +enabled = true + +[net] +tickrate = 30 +port = 1212 +bindto = "::,0.0.0.0" +pvs = true + +[status] +enabled = true + + +[infolinks] +discord = "https://discord.gg/49KeKwXc8g" +github = "https://github.com/Park-Station/Parkstation" +website = "https://nyanotrasen.moe" +wiki = "https://wiki.nyanotrasen.moe" + +[discord] +#DO NOT PUT WEBHOOK URL IN THIS FILE, unless you don't intend to push it. This file can be viewed by anyone on GitHub, only put the URL on the actual server. +ahelp_webhook = "" +ahelp_avatar = "https://imgur.com/a/xyjaogg.png" + +[netres] +limit = 0.0 + + +[build] +fork_id = "ParkStation14" + +[database] +# Database type to use. Can be "sqlite" or "postgres" currently. +engine = "sqlite" + +# Path to store the database at when using SQLite. Note that is NOT a disk path. +# This is relative to the server data directory, which is specified by --data-dir when starting the server from the command (or automatically set by SS14.Watchdog) +sqlite_dbpath = "preferences.db" + +# PostgreSQL database configuration, should be self explanatory. +# pg_host = "localhost" +# pg_port = 5432 +# pg_database = "ss14" +# pg_username = "ss14" +# pg_password = "ss14" diff --git a/Scripts/sh/runconfigmap.toml b/Scripts/sh/runconfigmap.toml new file mode 100644 index 0000000000..25c1ff073a --- /dev/null +++ b/Scripts/sh/runconfigmap.toml @@ -0,0 +1,135 @@ +[game] +hostname = "[NA East][MRP] CM-SS14" +desc = "A Colonial Marines inspired Space Station 14 server." +maxplayers = 32 +soft_max_players = 16 +type = 1 +lobbyenabled = false +lobbyduration = 180 +role_timers = false +fallbackpreset = "extended" +map_pool = "MappingMapPool" + +[server] +rules_file = "CM_Rules.txt" +id = "parkstation" + +[whitelist] +min_players = 32 + +[rules] +rules_time = 60 +rules_exempt_local = false + +[events] +ramping_average_end_time = 120.0 +ramping_average_chaos = 7.0 + +[traitor] +min_players = 2 +players_per_traitor = 8 +starting_balance = 16 + +[zombie] +min_players = 10 +players_per_infected = 5 + + +[mapping] +autosave_interval = 180.0 + +[atmos] +space_wind = true +space_wind_max_velocity = 22.0 + +[shuttle] +emergency_early_launch_allowed = true +emergency_dock_time = 260.0 +emergency_transit_time = 180.0 +recall_turning_point = 0.75 +auto_call_time = 0 + +[biomass] +easy_mode = false + +[ambience] +restart_sounds_enabled = false + +[explosion] +tiles_per_tick = 75 +incremental_tile = true + +[ic] +restricted_names = false +flavor_text = true + +[ooc] +enable_during_round = true + +[vote] +map_enabled = true +restart_enabled = true +restart_required_ratio = 0.75 +restart_not_allowed_when_admin_online = true +timermap = 45 + + +[console] +loginlocal = true + +[hub] +advertise = false + +[auth] +# 0 = Optional, 1 = Required, 2 = Disabled +mode = 1 +allowlocal = true + +[log] +path = "logs" +format = "log_%(date)s-%(time)s.txt" +level = 1 +enabled = true + +[net] +tickrate = 30 +port = 1212 +bindto = "::,0.0.0.0" +pvs = false + +[status] +enabled = true + + +[infolinks] +discord = "https://discord.gg/49KeKwXc8g" +github = "https://github.com/Park-Station/Parkstation" +website = "https://nyanotrasen.moe" +wiki = "https://wiki.nyanotrasen.moe" + +[discord] +#DO NOT PUT WEBHOOK URL IN THIS FILE, unless you don't intend to push it. This file can be viewed by anyone on GitHub, only put the URL on the actual server. +ahelp_webhook = "" +ahelp_avatar = "https://imgur.com/a/xyjaogg.png" + +[netres] +limit = 0.0 + + +[build] +fork_id = "ParkStation14" + +[database] +# Database type to use. Can be "sqlite" or "postgres" currently. +engine = "sqlite" + +# Path to store the database at when using SQLite. Note that is NOT a disk path. +# This is relative to the server data directory, which is specified by --data-dir when starting the server from the command (or automatically set by SS14.Watchdog) +sqlite_dbpath = "preferences.db" + +# PostgreSQL database configuration, should be self explanatory. +# pg_host = "localhost" +# pg_port = 5432 +# pg_database = "ss14" +# pg_username = "ss14" +# pg_password = "ss14" diff --git a/Scripts/sh/runconfigserver.toml b/Scripts/sh/runconfigserver.toml new file mode 100644 index 0000000000..cfcd884c0c --- /dev/null +++ b/Scripts/sh/runconfigserver.toml @@ -0,0 +1,134 @@ +[game] +hostname = "[NA East][MRP] CM-SS14" +desc = "A Colonial Marines inspired Space Station 14 server." +maxplayers = 32 +soft_max_players = 16 +type = 1 +lobbyenabled = true +lobbyduration = 180 +role_timers = false +fallbackpreset = "extended" +map_pool = "DefaultMapPool" + +[server] +rules_file = "CM_Rules.txt" +id = "parkstation" + +[whitelist] +min_players = 32 + +[rules] +rules_time = 60 +rules_exempt_local = false + +[events] +ramping_average_end_time = 120.0 +ramping_average_chaos = 7.0 + +[traitor] +min_players = 2 +players_per_traitor = 8 +starting_balance = 16 + +[zombie] +min_players = 10 +players_per_infected = 5 + + +[mapping] +autosave_interval = 180.0 + +[atmos] +space_wind = true +space_wind_max_velocity = 22.0 + +[shuttle] +emergency_early_launch_allowed = true +emergency_dock_time = 260.0 +emergency_transit_time = 180.0 +recall_turning_point = 0.75 +auto_call_time = 150 + +[biomass] +easy_mode = false + +[ambience] +restart_sounds_enabled = true + +[explosion] +tiles_per_tick = 75 +incremental_tile = true + +[ic] +restricted_names = false +flavor_text = true + +[ooc] +enable_during_round = true + +[vote] +map_enabled = true +restart_enabled = true +restart_required_ratio = 0.75 +restart_not_allowed_when_admin_online = true +timermap = 45 + + +[console] +loginlocal = true + +[hub] +advertise = false + +[auth] +# 0 = Optional, 1 = Required, 2 = Disabled +mode = 1 +allowlocal = true + +[log] +path = "logs" +format = "log_%(date)s-%(time)s.txt" +level = 1 +enabled = true + +[net] +tickrate = 30 +port = 1212 +bindto = "::,0.0.0.0" + +[status] +enabled = true + + +[infolinks] +discord = "https://discord.gg/49KeKwXc8g" +github = "https://github.com/Park-Station/Parkstation" +website = "https://nyanotrasen.moe" +wiki = "https://wiki.nyanotrasen.moe" + +[discord] +#DO NOT PUT WEBHOOK URL IN THIS FILE, unless you don't intend to push it. This file can be viewed by anyone on GitHub, only put the URL on the actual server. +ahelp_webhook = "" +ahelp_avatar = "https://imgur.com/a/xyjaogg.png" + +[netres] +limit = 0.0 + + +[build] +fork_id = "ParkStation14" + +[database] +# Database type to use. Can be "sqlite" or "postgres" currently. +engine = "sqlite" + +# Path to store the database at when using SQLite. Note that is NOT a disk path. +# This is relative to the server data directory, which is specified by --data-dir when starting the server from the command (or automatically set by SS14.Watchdog) +sqlite_dbpath = "preferences.db" + +# PostgreSQL database configuration, should be self explanatory. +# pg_host = "localhost" +# pg_port = 5432 +# pg_database = "ss14" +# pg_username = "ss14" +# pg_password = "ss14" diff --git a/runclient.bat b/runclient.bat deleted file mode 100644 index f580d41e9d..0000000000 --- a/runclient.bat +++ /dev/null @@ -1,6 +0,0 @@ -@echo off -set PDIR=%~dp0 -cd %PDIR%Bin\Content.Client -start Content.Client.exe %* -cd %PDIR% -set PDIR= diff --git a/runserver.bat b/runserver.bat deleted file mode 100644 index 573de0a15d..0000000000 --- a/runserver.bat +++ /dev/null @@ -1,7 +0,0 @@ -@echo off -set PDIR=%~dp0 -cd %PDIR%Bin\Content.Server -call Content.Server.exe %* -cd %PDIR% -set PDIR= -pause diff --git a/sloth.txt b/sloth.txt new file mode 100644 index 0000000000..b098e22675 --- /dev/null +++ b/sloth.txt @@ -0,0 +1,8 @@ + 88 88 + 88 ,d 88 + 88 88 88 +,adPPYba, 88 ,adPPYba, MM88MMM 88,dPPYba, +I8[ "" 88 a8" "8a 88 88P' "8a + `"Y8ba, 88 8b d8 88 88 88 +aa ]8I 88 "8a, ,a8" 88, 88 88 +`"YbbdP"' 88 `"YbbdP"' "Y888 88 88